diff --git a/.gitattributes b/.gitattributes
index e72b50c0ed8c5d8e889815026c76cde77f533d03..22d43eccc054154fdd49daa00f949a70d8c4c2fe 100644
--- a/.gitattributes
+++ b/.gitattributes
@@ -678,3 +678,4 @@ runs/l2r50-i2-fulle-lm/checkpoint-6912/tokenizer.json filter=lfs diff=lfs merge=
runs/l2r50-i2-fulle-lm/checkpoint-72/tokenizer.json filter=lfs diff=lfs merge=lfs -text
runs/l2r50-i2-fulle-lm/checkpoint-7200/tokenizer.json filter=lfs diff=lfs merge=lfs -text
runs/l2r50-i2-fulle-lm/checkpoint-864/tokenizer.json filter=lfs diff=lfs merge=lfs -text
+runs/mask15-l2r50-fulle-lm/checkpoint-7200/tokenizer.json filter=lfs diff=lfs merge=lfs -text
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-1152/chat_template.jinja b/runs/mask15-l2r50-fulle-lm/checkpoint-1152/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/mask15-l2r50-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/mask15-l2r50-fulle-lm/checkpoint-1152/config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-1152/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..1b4ac3c550d6003148026765eba4cb1512b216c9
--- /dev/null
+++ b/runs/mask15-l2r50-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": 151672
+}
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-1152/generation_config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-1152/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..5cd15fe1269fd505cfdefe9b3e9989dacd9f68f4
--- /dev/null
+++ b/runs/mask15-l2r50-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/mask15-l2r50-fulle-lm/checkpoint-1152/model.safetensors b/runs/mask15-l2r50-fulle-lm/checkpoint-1152/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..09b2069e6c9603cec69cfab9fb7365bfe287a4ba
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-1152/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:5b76293d42974f0e50b6481bf6eff94f0d0fc2b48cbf17b4bd443f6521ce643b
+size 583358280
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-1152/optimizer.pt b/runs/mask15-l2r50-fulle-lm/checkpoint-1152/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..07b8505518a9e5cf1ad5a5734d6ec3a537360739
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-1152/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:00c8aba6623ead69551d55306b2b9af564f66e8c62cacc874224d50565fb58c1
+size 1166829434
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-1152/rng_state_0.pth b/runs/mask15-l2r50-fulle-lm/checkpoint-1152/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..5e6f64b6803be72898b731eb755c5eb1959da0f7
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-1152/rng_state_0.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:4b589a5c822740a79de4ffd247576f1bc115455441197a4a7d2bf7fbc2437ba2
+size 14512
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-1152/rng_state_1.pth b/runs/mask15-l2r50-fulle-lm/checkpoint-1152/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..5daf5b159fe13a68212797a4b826870936712160
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-1152/rng_state_1.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:df1473f0291d2e7bd3c33e759b5ca397d6b06f221e973dc7f78f947357d90e22
+size 14512
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-1152/scheduler.pt b/runs/mask15-l2r50-fulle-lm/checkpoint-1152/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..630fbc73d70608487940c0c34e65caee42415237
--- /dev/null
+++ b/runs/mask15-l2r50-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/mask15-l2r50-fulle-lm/checkpoint-1152/tokenizer.json b/runs/mask15-l2r50-fulle-lm/checkpoint-1152/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..6226bf25372d1a86dbd704ec75d2129960f1ba88
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-1152/tokenizer.json
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:9245fe3cb2d40f9ed8d5d8ddd1d58701ba2a236beec08f656162281673f30560
+size 11424264
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-1152/tokenizer_config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-1152/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..01bc9676576e8cf62a08a9db166d6c5bab1d6727
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-1152/tokenizer_config.json
@@ -0,0 +1,20 @@
+{
+ "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|>",
+ "<|mask|>"
+ ],
+ "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/mask15-l2r50-fulle-lm/checkpoint-1152/trainer_state.json b/runs/mask15-l2r50-fulle-lm/checkpoint-1152/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..970d6fd3a802c77b6bf210aa4d6e2d122630e945
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-1152/trainer_state.json
@@ -0,0 +1,8218 @@
+{
+ "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": 9.807971954345703,
+ "learning_rate": 0.0,
+ "loss": 11.989814758300781,
+ "step": 1
+ },
+ {
+ "epoch": 0.027959807776321538,
+ "grad_norm": 9.834383010864258,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 11.993022918701172,
+ "step": 2
+ },
+ {
+ "epoch": 0.04193971166448231,
+ "grad_norm": 9.482470512390137,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 11.854345321655273,
+ "step": 3
+ },
+ {
+ "epoch": 0.055919615552643076,
+ "grad_norm": 7.678808689117432,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 11.618255615234375,
+ "step": 4
+ },
+ {
+ "epoch": 0.06989951944080385,
+ "grad_norm": 6.011275291442871,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 11.351423263549805,
+ "step": 5
+ },
+ {
+ "epoch": 0.08387942332896461,
+ "grad_norm": 5.244393825531006,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 11.128631591796875,
+ "step": 6
+ },
+ {
+ "epoch": 0.09785932721712538,
+ "grad_norm": 4.577618598937988,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 10.921937942504883,
+ "step": 7
+ },
+ {
+ "epoch": 0.11183923110528615,
+ "grad_norm": 4.03810453414917,
+ "learning_rate": 4.2e-05,
+ "loss": 10.742650985717773,
+ "step": 8
+ },
+ {
+ "epoch": 0.1258191349934469,
+ "grad_norm": 3.657679796218872,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 10.600778579711914,
+ "step": 9
+ },
+ {
+ "epoch": 0.1397990388816077,
+ "grad_norm": 3.352902889251709,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 10.489639282226562,
+ "step": 10
+ },
+ {
+ "epoch": 0.15377894276976845,
+ "grad_norm": 3.1162633895874023,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 10.417770385742188,
+ "step": 11
+ },
+ {
+ "epoch": 0.16775884665792923,
+ "grad_norm": 3.0402638912200928,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 10.35334587097168,
+ "step": 12
+ },
+ {
+ "epoch": 0.18173875054608998,
+ "grad_norm": 3.030630111694336,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 10.306867599487305,
+ "step": 13
+ },
+ {
+ "epoch": 0.19571865443425077,
+ "grad_norm": 3.035292148590088,
+ "learning_rate": 7.8e-05,
+ "loss": 10.26003646850586,
+ "step": 14
+ },
+ {
+ "epoch": 0.20969855832241152,
+ "grad_norm": 3.0125675201416016,
+ "learning_rate": 8.4e-05,
+ "loss": 10.219265937805176,
+ "step": 15
+ },
+ {
+ "epoch": 0.2236784622105723,
+ "grad_norm": 2.9998886585235596,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 10.161077499389648,
+ "step": 16
+ },
+ {
+ "epoch": 0.23765836609873306,
+ "grad_norm": 2.9411966800689697,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 10.107423782348633,
+ "step": 17
+ },
+ {
+ "epoch": 0.2516382699868938,
+ "grad_norm": 2.88081955909729,
+ "learning_rate": 0.000102,
+ "loss": 10.04700756072998,
+ "step": 18
+ },
+ {
+ "epoch": 0.2656181738750546,
+ "grad_norm": 2.8219687938690186,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 9.981185913085938,
+ "step": 19
+ },
+ {
+ "epoch": 0.2795980777632154,
+ "grad_norm": 2.79306960105896,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 9.89747142791748,
+ "step": 20
+ },
+ {
+ "epoch": 0.29357798165137616,
+ "grad_norm": 2.7314443588256836,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 9.829219818115234,
+ "step": 21
+ },
+ {
+ "epoch": 0.3075578855395369,
+ "grad_norm": 2.6923747062683105,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 9.747566223144531,
+ "step": 22
+ },
+ {
+ "epoch": 0.3215377894276977,
+ "grad_norm": 2.650602340698242,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 9.66455078125,
+ "step": 23
+ },
+ {
+ "epoch": 0.33551769331585846,
+ "grad_norm": 2.606977701187134,
+ "learning_rate": 0.000138,
+ "loss": 9.582326889038086,
+ "step": 24
+ },
+ {
+ "epoch": 0.34949759720401924,
+ "grad_norm": 2.567256212234497,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 9.492591857910156,
+ "step": 25
+ },
+ {
+ "epoch": 0.36347750109217997,
+ "grad_norm": 2.520740509033203,
+ "learning_rate": 0.00015,
+ "loss": 9.396563529968262,
+ "step": 26
+ },
+ {
+ "epoch": 0.37745740498034075,
+ "grad_norm": 2.471588611602783,
+ "learning_rate": 0.000156,
+ "loss": 9.303571701049805,
+ "step": 27
+ },
+ {
+ "epoch": 0.39143730886850153,
+ "grad_norm": 2.4341530799865723,
+ "learning_rate": 0.000162,
+ "loss": 9.191819190979004,
+ "step": 28
+ },
+ {
+ "epoch": 0.4054172127566623,
+ "grad_norm": 2.369244337081909,
+ "learning_rate": 0.000168,
+ "loss": 9.092012405395508,
+ "step": 29
+ },
+ {
+ "epoch": 0.41939711664482304,
+ "grad_norm": 2.28625226020813,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 8.984567642211914,
+ "step": 30
+ },
+ {
+ "epoch": 0.4333770205329838,
+ "grad_norm": 2.2082231044769287,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 8.889009475708008,
+ "step": 31
+ },
+ {
+ "epoch": 0.4473569244211446,
+ "grad_norm": 2.1429483890533447,
+ "learning_rate": 0.000186,
+ "loss": 8.778556823730469,
+ "step": 32
+ },
+ {
+ "epoch": 0.4613368283093054,
+ "grad_norm": 2.0937352180480957,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 8.661166191101074,
+ "step": 33
+ },
+ {
+ "epoch": 0.4753167321974661,
+ "grad_norm": 2.040790557861328,
+ "learning_rate": 0.000198,
+ "loss": 8.550382614135742,
+ "step": 34
+ },
+ {
+ "epoch": 0.4892966360856269,
+ "grad_norm": 1.93914794921875,
+ "learning_rate": 0.000204,
+ "loss": 8.463907241821289,
+ "step": 35
+ },
+ {
+ "epoch": 0.5032765399737876,
+ "grad_norm": 1.8624178171157837,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 8.3438720703125,
+ "step": 36
+ },
+ {
+ "epoch": 0.5172564438619485,
+ "grad_norm": 1.8107167482376099,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 8.21871566772461,
+ "step": 37
+ },
+ {
+ "epoch": 0.5312363477501092,
+ "grad_norm": 1.717979073524475,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 8.113494873046875,
+ "step": 38
+ },
+ {
+ "epoch": 0.54521625163827,
+ "grad_norm": 1.668742060661316,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 8.006099700927734,
+ "step": 39
+ },
+ {
+ "epoch": 0.5591961555264308,
+ "grad_norm": 1.6147786378860474,
+ "learning_rate": 0.000234,
+ "loss": 7.911509037017822,
+ "step": 40
+ },
+ {
+ "epoch": 0.5731760594145915,
+ "grad_norm": 1.535750150680542,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 7.822839736938477,
+ "step": 41
+ },
+ {
+ "epoch": 0.5871559633027523,
+ "grad_norm": 1.4700065851211548,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 7.713842868804932,
+ "step": 42
+ },
+ {
+ "epoch": 0.601135867190913,
+ "grad_norm": 1.39020574092865,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 7.6040191650390625,
+ "step": 43
+ },
+ {
+ "epoch": 0.6151157710790738,
+ "grad_norm": 1.2875399589538574,
+ "learning_rate": 0.000258,
+ "loss": 7.550642013549805,
+ "step": 44
+ },
+ {
+ "epoch": 0.6290956749672346,
+ "grad_norm": 1.2094247341156006,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 7.460824012756348,
+ "step": 45
+ },
+ {
+ "epoch": 0.6430755788553953,
+ "grad_norm": 1.126452088356018,
+ "learning_rate": 0.00027,
+ "loss": 7.380537986755371,
+ "step": 46
+ },
+ {
+ "epoch": 0.6570554827435562,
+ "grad_norm": 1.0313163995742798,
+ "learning_rate": 0.000276,
+ "loss": 7.286153793334961,
+ "step": 47
+ },
+ {
+ "epoch": 0.6710353866317169,
+ "grad_norm": 0.9172859787940979,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 7.2064714431762695,
+ "step": 48
+ },
+ {
+ "epoch": 0.6850152905198776,
+ "grad_norm": 0.8148201107978821,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 7.158207416534424,
+ "step": 49
+ },
+ {
+ "epoch": 0.6989951944080385,
+ "grad_norm": 0.650123119354248,
+ "learning_rate": 0.000294,
+ "loss": 7.108791828155518,
+ "step": 50
+ },
+ {
+ "epoch": 0.7129750982961992,
+ "grad_norm": 0.5437585711479187,
+ "learning_rate": 0.0003,
+ "loss": 7.083050727844238,
+ "step": 51
+ },
+ {
+ "epoch": 0.7269550021843599,
+ "grad_norm": 0.46762895584106445,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 7.058027267456055,
+ "step": 52
+ },
+ {
+ "epoch": 0.7409349060725208,
+ "grad_norm": 0.47947561740875244,
+ "learning_rate": 0.000312,
+ "loss": 7.015172958374023,
+ "step": 53
+ },
+ {
+ "epoch": 0.7549148099606815,
+ "grad_norm": 0.7546492218971252,
+ "learning_rate": 0.000318,
+ "loss": 7.024629592895508,
+ "step": 54
+ },
+ {
+ "epoch": 0.7688947138488423,
+ "grad_norm": 0.6153718829154968,
+ "learning_rate": 0.000324,
+ "loss": 7.026667594909668,
+ "step": 55
+ },
+ {
+ "epoch": 0.7828746177370031,
+ "grad_norm": 0.3359069228172302,
+ "learning_rate": 0.00033,
+ "loss": 7.008166313171387,
+ "step": 56
+ },
+ {
+ "epoch": 0.7968545216251638,
+ "grad_norm": 0.48906823992729187,
+ "learning_rate": 0.000336,
+ "loss": 7.019716262817383,
+ "step": 57
+ },
+ {
+ "epoch": 0.8108344255133246,
+ "grad_norm": 0.5525421500205994,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 7.02108097076416,
+ "step": 58
+ },
+ {
+ "epoch": 0.8248143294014854,
+ "grad_norm": 0.3103712201118469,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 7.003164768218994,
+ "step": 59
+ },
+ {
+ "epoch": 0.8387942332896461,
+ "grad_norm": 0.4431874752044678,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 7.003463268280029,
+ "step": 60
+ },
+ {
+ "epoch": 0.8527741371778069,
+ "grad_norm": 0.4291120767593384,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 6.96931791305542,
+ "step": 61
+ },
+ {
+ "epoch": 0.8667540410659677,
+ "grad_norm": 0.6566054224967957,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 6.989445686340332,
+ "step": 62
+ },
+ {
+ "epoch": 0.8807339449541285,
+ "grad_norm": 0.20663189888000488,
+ "learning_rate": 0.000372,
+ "loss": 6.9669342041015625,
+ "step": 63
+ },
+ {
+ "epoch": 0.8947138488422892,
+ "grad_norm": 0.6242535710334778,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 6.949883460998535,
+ "step": 64
+ },
+ {
+ "epoch": 0.9086937527304499,
+ "grad_norm": 0.6984224915504456,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 6.955153465270996,
+ "step": 65
+ },
+ {
+ "epoch": 0.9226736566186108,
+ "grad_norm": 0.6328083872795105,
+ "learning_rate": 0.00039,
+ "loss": 6.965421676635742,
+ "step": 66
+ },
+ {
+ "epoch": 0.9366535605067715,
+ "grad_norm": 1.213352918624878,
+ "learning_rate": 0.000396,
+ "loss": 6.9454345703125,
+ "step": 67
+ },
+ {
+ "epoch": 0.9506334643949322,
+ "grad_norm": 0.9221940636634827,
+ "learning_rate": 0.000402,
+ "loss": 6.923908233642578,
+ "step": 68
+ },
+ {
+ "epoch": 0.9646133682830931,
+ "grad_norm": 0.6825450658798218,
+ "learning_rate": 0.000408,
+ "loss": 6.910131454467773,
+ "step": 69
+ },
+ {
+ "epoch": 0.9785932721712538,
+ "grad_norm": 0.5690162181854248,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 6.89891242980957,
+ "step": 70
+ },
+ {
+ "epoch": 0.9925731760594146,
+ "grad_norm": 0.4320870041847229,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 6.896081924438477,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.31632405519485474,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 6.897444725036621,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 7.757839679718018,
+ "eval_runtime": 43.8338,
+ "eval_samples_per_second": 55.71,
+ "eval_steps_per_second": 3.49,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139799038881607,
+ "grad_norm": 0.3789916932582855,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 6.877245903015137,
+ "step": 73
+ },
+ {
+ "epoch": 1.0279598077763215,
+ "grad_norm": 0.9167932868003845,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 6.921600341796875,
+ "step": 74
+ },
+ {
+ "epoch": 1.0419397116644824,
+ "grad_norm": 0.581188440322876,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 6.861001968383789,
+ "step": 75
+ },
+ {
+ "epoch": 1.0559196155526431,
+ "grad_norm": 0.4179714024066925,
+ "learning_rate": 0.00045,
+ "loss": 6.875657081604004,
+ "step": 76
+ },
+ {
+ "epoch": 1.0698995194408039,
+ "grad_norm": 1.0669957399368286,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 6.857122421264648,
+ "step": 77
+ },
+ {
+ "epoch": 1.0838794233289646,
+ "grad_norm": 0.27855145931243896,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 6.828852653503418,
+ "step": 78
+ },
+ {
+ "epoch": 1.0978593272171253,
+ "grad_norm": 0.7192047834396362,
+ "learning_rate": 0.000468,
+ "loss": 6.870839595794678,
+ "step": 79
+ },
+ {
+ "epoch": 1.1118392311052863,
+ "grad_norm": 0.5583325624465942,
+ "learning_rate": 0.000474,
+ "loss": 6.8497514724731445,
+ "step": 80
+ },
+ {
+ "epoch": 1.125819134993447,
+ "grad_norm": 0.3001925051212311,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 6.858528137207031,
+ "step": 81
+ },
+ {
+ "epoch": 1.1397990388816077,
+ "grad_norm": 0.2408239096403122,
+ "learning_rate": 0.000486,
+ "loss": 6.83231258392334,
+ "step": 82
+ },
+ {
+ "epoch": 1.1537789427697684,
+ "grad_norm": 0.28230324387550354,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 6.815476894378662,
+ "step": 83
+ },
+ {
+ "epoch": 1.1677588466579292,
+ "grad_norm": 0.3247123658657074,
+ "learning_rate": 0.000498,
+ "loss": 6.780126094818115,
+ "step": 84
+ },
+ {
+ "epoch": 1.18173875054609,
+ "grad_norm": 0.25713011622428894,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 6.7798309326171875,
+ "step": 85
+ },
+ {
+ "epoch": 1.1957186544342508,
+ "grad_norm": 0.5386835932731628,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 6.791745185852051,
+ "step": 86
+ },
+ {
+ "epoch": 1.2096985583224116,
+ "grad_norm": 0.2226393222808838,
+ "learning_rate": 0.000516,
+ "loss": 6.7826972007751465,
+ "step": 87
+ },
+ {
+ "epoch": 1.2236784622105723,
+ "grad_norm": 0.4338362216949463,
+ "learning_rate": 0.000522,
+ "loss": 6.805043697357178,
+ "step": 88
+ },
+ {
+ "epoch": 1.237658366098733,
+ "grad_norm": 0.2953208386898041,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 6.768434524536133,
+ "step": 89
+ },
+ {
+ "epoch": 1.2516382699868938,
+ "grad_norm": 0.13453717529773712,
+ "learning_rate": 0.000534,
+ "loss": 6.773697376251221,
+ "step": 90
+ },
+ {
+ "epoch": 1.2656181738750547,
+ "grad_norm": 0.35774412751197815,
+ "learning_rate": 0.00054,
+ "loss": 6.766414642333984,
+ "step": 91
+ },
+ {
+ "epoch": 1.2795980777632154,
+ "grad_norm": 0.4669720530509949,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 6.754847526550293,
+ "step": 92
+ },
+ {
+ "epoch": 1.2935779816513762,
+ "grad_norm": 0.13806621730327606,
+ "learning_rate": 0.000552,
+ "loss": 6.746858596801758,
+ "step": 93
+ },
+ {
+ "epoch": 1.307557885539537,
+ "grad_norm": 0.3280332386493683,
+ "learning_rate": 0.000558,
+ "loss": 6.715662956237793,
+ "step": 94
+ },
+ {
+ "epoch": 1.3215377894276976,
+ "grad_norm": 0.4689937233924866,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 6.734938144683838,
+ "step": 95
+ },
+ {
+ "epoch": 1.3355176933158583,
+ "grad_norm": 0.35371264815330505,
+ "learning_rate": 0.00057,
+ "loss": 6.748386383056641,
+ "step": 96
+ },
+ {
+ "epoch": 1.3494975972040193,
+ "grad_norm": 0.15232303738594055,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 6.705557823181152,
+ "step": 97
+ },
+ {
+ "epoch": 1.36347750109218,
+ "grad_norm": 0.30132821202278137,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 6.7199859619140625,
+ "step": 98
+ },
+ {
+ "epoch": 1.3774574049803407,
+ "grad_norm": 0.42174842953681946,
+ "learning_rate": 0.000588,
+ "loss": 6.715370178222656,
+ "step": 99
+ },
+ {
+ "epoch": 1.3914373088685015,
+ "grad_norm": 0.6257228851318359,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 6.707026958465576,
+ "step": 100
+ },
+ {
+ "epoch": 1.4054172127566624,
+ "grad_norm": 0.4551195800304413,
+ "learning_rate": 0.0006,
+ "loss": 6.7078423500061035,
+ "step": 101
+ },
+ {
+ "epoch": 1.4193971166448232,
+ "grad_norm": 0.41940346360206604,
+ "learning_rate": 0.0006,
+ "loss": 6.6959357261657715,
+ "step": 102
+ },
+ {
+ "epoch": 1.4333770205329839,
+ "grad_norm": 0.32251718640327454,
+ "learning_rate": 0.0006,
+ "loss": 6.689168930053711,
+ "step": 103
+ },
+ {
+ "epoch": 1.4473569244211446,
+ "grad_norm": 0.2992720305919647,
+ "learning_rate": 0.0006,
+ "loss": 6.680738925933838,
+ "step": 104
+ },
+ {
+ "epoch": 1.4613368283093053,
+ "grad_norm": 0.3228456974029541,
+ "learning_rate": 0.0006,
+ "loss": 6.672350883483887,
+ "step": 105
+ },
+ {
+ "epoch": 1.475316732197466,
+ "grad_norm": 0.24954743683338165,
+ "learning_rate": 0.0006,
+ "loss": 6.653716087341309,
+ "step": 106
+ },
+ {
+ "epoch": 1.4892966360856268,
+ "grad_norm": 0.30740687251091003,
+ "learning_rate": 0.0006,
+ "loss": 6.676583290100098,
+ "step": 107
+ },
+ {
+ "epoch": 1.5032765399737875,
+ "grad_norm": 0.24950599670410156,
+ "learning_rate": 0.0006,
+ "loss": 6.656691551208496,
+ "step": 108
+ },
+ {
+ "epoch": 1.5172564438619485,
+ "grad_norm": 0.24293005466461182,
+ "learning_rate": 0.0006,
+ "loss": 6.640995979309082,
+ "step": 109
+ },
+ {
+ "epoch": 1.5312363477501092,
+ "grad_norm": 0.30167272686958313,
+ "learning_rate": 0.0006,
+ "loss": 6.647380352020264,
+ "step": 110
+ },
+ {
+ "epoch": 1.5452162516382701,
+ "grad_norm": 0.4424632787704468,
+ "learning_rate": 0.0006,
+ "loss": 6.6548261642456055,
+ "step": 111
+ },
+ {
+ "epoch": 1.5591961555264309,
+ "grad_norm": 0.5295748114585876,
+ "learning_rate": 0.0006,
+ "loss": 6.64370059967041,
+ "step": 112
+ },
+ {
+ "epoch": 1.5731760594145916,
+ "grad_norm": 0.6829339265823364,
+ "learning_rate": 0.0006,
+ "loss": 6.654196739196777,
+ "step": 113
+ },
+ {
+ "epoch": 1.5871559633027523,
+ "grad_norm": 0.6534460186958313,
+ "learning_rate": 0.0006,
+ "loss": 6.675765037536621,
+ "step": 114
+ },
+ {
+ "epoch": 1.601135867190913,
+ "grad_norm": 0.6172244548797607,
+ "learning_rate": 0.0006,
+ "loss": 6.631234169006348,
+ "step": 115
+ },
+ {
+ "epoch": 1.6151157710790738,
+ "grad_norm": 0.5650008320808411,
+ "learning_rate": 0.0006,
+ "loss": 6.654262542724609,
+ "step": 116
+ },
+ {
+ "epoch": 1.6290956749672345,
+ "grad_norm": 0.3890475928783417,
+ "learning_rate": 0.0006,
+ "loss": 6.627526760101318,
+ "step": 117
+ },
+ {
+ "epoch": 1.6430755788553952,
+ "grad_norm": 0.6409873366355896,
+ "learning_rate": 0.0006,
+ "loss": 6.619794845581055,
+ "step": 118
+ },
+ {
+ "epoch": 1.6570554827435562,
+ "grad_norm": 0.5052326321601868,
+ "learning_rate": 0.0006,
+ "loss": 6.612556457519531,
+ "step": 119
+ },
+ {
+ "epoch": 1.671035386631717,
+ "grad_norm": 0.5001237988471985,
+ "learning_rate": 0.0006,
+ "loss": 6.577266693115234,
+ "step": 120
+ },
+ {
+ "epoch": 1.6850152905198776,
+ "grad_norm": 0.5328938364982605,
+ "learning_rate": 0.0006,
+ "loss": 6.59553337097168,
+ "step": 121
+ },
+ {
+ "epoch": 1.6989951944080386,
+ "grad_norm": 0.3568951189517975,
+ "learning_rate": 0.0006,
+ "loss": 6.602717399597168,
+ "step": 122
+ },
+ {
+ "epoch": 1.7129750982961993,
+ "grad_norm": 0.4017309546470642,
+ "learning_rate": 0.0006,
+ "loss": 6.589657783508301,
+ "step": 123
+ },
+ {
+ "epoch": 1.72695500218436,
+ "grad_norm": 0.21432629227638245,
+ "learning_rate": 0.0006,
+ "loss": 6.586555480957031,
+ "step": 124
+ },
+ {
+ "epoch": 1.7409349060725208,
+ "grad_norm": 0.21038052439689636,
+ "learning_rate": 0.0006,
+ "loss": 6.576569557189941,
+ "step": 125
+ },
+ {
+ "epoch": 1.7549148099606815,
+ "grad_norm": 0.23074904084205627,
+ "learning_rate": 0.0006,
+ "loss": 6.5880632400512695,
+ "step": 126
+ },
+ {
+ "epoch": 1.7688947138488422,
+ "grad_norm": 0.42963048815727234,
+ "learning_rate": 0.0006,
+ "loss": 6.603862762451172,
+ "step": 127
+ },
+ {
+ "epoch": 1.782874617737003,
+ "grad_norm": 0.361331045627594,
+ "learning_rate": 0.0006,
+ "loss": 6.579834938049316,
+ "step": 128
+ },
+ {
+ "epoch": 1.7968545216251637,
+ "grad_norm": 0.4951060712337494,
+ "learning_rate": 0.0006,
+ "loss": 6.570443630218506,
+ "step": 129
+ },
+ {
+ "epoch": 1.8108344255133246,
+ "grad_norm": 0.2258434295654297,
+ "learning_rate": 0.0006,
+ "loss": 6.5664777755737305,
+ "step": 130
+ },
+ {
+ "epoch": 1.8248143294014854,
+ "grad_norm": 0.2922155559062958,
+ "learning_rate": 0.0006,
+ "loss": 6.561326503753662,
+ "step": 131
+ },
+ {
+ "epoch": 1.838794233289646,
+ "grad_norm": 0.19068220257759094,
+ "learning_rate": 0.0006,
+ "loss": 6.528727054595947,
+ "step": 132
+ },
+ {
+ "epoch": 1.852774137177807,
+ "grad_norm": 0.2122010439634323,
+ "learning_rate": 0.0006,
+ "loss": 6.535636901855469,
+ "step": 133
+ },
+ {
+ "epoch": 1.8667540410659678,
+ "grad_norm": 0.25760164856910706,
+ "learning_rate": 0.0006,
+ "loss": 6.530498504638672,
+ "step": 134
+ },
+ {
+ "epoch": 1.8807339449541285,
+ "grad_norm": 0.1761016845703125,
+ "learning_rate": 0.0006,
+ "loss": 6.514466285705566,
+ "step": 135
+ },
+ {
+ "epoch": 1.8947138488422892,
+ "grad_norm": 0.2250051498413086,
+ "learning_rate": 0.0006,
+ "loss": 6.521268844604492,
+ "step": 136
+ },
+ {
+ "epoch": 1.90869375273045,
+ "grad_norm": 0.34458497166633606,
+ "learning_rate": 0.0006,
+ "loss": 6.512831687927246,
+ "step": 137
+ },
+ {
+ "epoch": 1.9226736566186107,
+ "grad_norm": 0.3468617796897888,
+ "learning_rate": 0.0006,
+ "loss": 6.515641689300537,
+ "step": 138
+ },
+ {
+ "epoch": 1.9366535605067714,
+ "grad_norm": 0.5051495432853699,
+ "learning_rate": 0.0006,
+ "loss": 6.5147905349731445,
+ "step": 139
+ },
+ {
+ "epoch": 1.9506334643949321,
+ "grad_norm": 0.7106727361679077,
+ "learning_rate": 0.0006,
+ "loss": 6.519277572631836,
+ "step": 140
+ },
+ {
+ "epoch": 1.964613368283093,
+ "grad_norm": 0.8881394267082214,
+ "learning_rate": 0.0006,
+ "loss": 6.526865482330322,
+ "step": 141
+ },
+ {
+ "epoch": 1.9785932721712538,
+ "grad_norm": 0.5552834272384644,
+ "learning_rate": 0.0006,
+ "loss": 6.469970226287842,
+ "step": 142
+ },
+ {
+ "epoch": 1.9925731760594148,
+ "grad_norm": 0.6903126835823059,
+ "learning_rate": 0.0006,
+ "loss": 6.476300239562988,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.47679027915000916,
+ "learning_rate": 0.0006,
+ "loss": 6.463827133178711,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 7.388528823852539,
+ "eval_runtime": 44.2519,
+ "eval_samples_per_second": 55.184,
+ "eval_steps_per_second": 3.457,
+ "step": 144
+ },
+ {
+ "epoch": 2.0139799038881607,
+ "grad_norm": 0.4719221293926239,
+ "learning_rate": 0.0006,
+ "loss": 6.480956077575684,
+ "step": 145
+ },
+ {
+ "epoch": 2.0279598077763215,
+ "grad_norm": 0.41137924790382385,
+ "learning_rate": 0.0006,
+ "loss": 6.449707984924316,
+ "step": 146
+ },
+ {
+ "epoch": 2.041939711664482,
+ "grad_norm": 0.4237765371799469,
+ "learning_rate": 0.0006,
+ "loss": 6.467435836791992,
+ "step": 147
+ },
+ {
+ "epoch": 2.055919615552643,
+ "grad_norm": 0.44081810116767883,
+ "learning_rate": 0.0006,
+ "loss": 6.436868667602539,
+ "step": 148
+ },
+ {
+ "epoch": 2.0698995194408036,
+ "grad_norm": 0.4163798391819,
+ "learning_rate": 0.0006,
+ "loss": 6.4642014503479,
+ "step": 149
+ },
+ {
+ "epoch": 2.083879423328965,
+ "grad_norm": 0.3831583261489868,
+ "learning_rate": 0.0006,
+ "loss": 6.454092025756836,
+ "step": 150
+ },
+ {
+ "epoch": 2.0978593272171255,
+ "grad_norm": 0.37721413373947144,
+ "learning_rate": 0.0006,
+ "loss": 6.426377296447754,
+ "step": 151
+ },
+ {
+ "epoch": 2.1118392311052863,
+ "grad_norm": 0.3323550224304199,
+ "learning_rate": 0.0006,
+ "loss": 6.421375274658203,
+ "step": 152
+ },
+ {
+ "epoch": 2.125819134993447,
+ "grad_norm": 0.47739624977111816,
+ "learning_rate": 0.0006,
+ "loss": 6.412004470825195,
+ "step": 153
+ },
+ {
+ "epoch": 2.1397990388816077,
+ "grad_norm": 0.8530274629592896,
+ "learning_rate": 0.0006,
+ "loss": 6.410468578338623,
+ "step": 154
+ },
+ {
+ "epoch": 2.1537789427697684,
+ "grad_norm": 0.6420364379882812,
+ "learning_rate": 0.0006,
+ "loss": 6.413525581359863,
+ "step": 155
+ },
+ {
+ "epoch": 2.167758846657929,
+ "grad_norm": 0.5005049109458923,
+ "learning_rate": 0.0006,
+ "loss": 6.401463508605957,
+ "step": 156
+ },
+ {
+ "epoch": 2.18173875054609,
+ "grad_norm": 0.3614683449268341,
+ "learning_rate": 0.0006,
+ "loss": 6.390063285827637,
+ "step": 157
+ },
+ {
+ "epoch": 2.1957186544342506,
+ "grad_norm": 0.595215380191803,
+ "learning_rate": 0.0006,
+ "loss": 6.369806289672852,
+ "step": 158
+ },
+ {
+ "epoch": 2.2096985583224114,
+ "grad_norm": 0.5700321793556213,
+ "learning_rate": 0.0006,
+ "loss": 6.368378639221191,
+ "step": 159
+ },
+ {
+ "epoch": 2.2236784622105725,
+ "grad_norm": 0.36273983120918274,
+ "learning_rate": 0.0006,
+ "loss": 6.366860389709473,
+ "step": 160
+ },
+ {
+ "epoch": 2.2376583660987333,
+ "grad_norm": 0.2850998342037201,
+ "learning_rate": 0.0006,
+ "loss": 6.352144718170166,
+ "step": 161
+ },
+ {
+ "epoch": 2.251638269986894,
+ "grad_norm": 0.38558584451675415,
+ "learning_rate": 0.0006,
+ "loss": 6.375765800476074,
+ "step": 162
+ },
+ {
+ "epoch": 2.2656181738750547,
+ "grad_norm": 0.34809231758117676,
+ "learning_rate": 0.0006,
+ "loss": 6.350445747375488,
+ "step": 163
+ },
+ {
+ "epoch": 2.2795980777632154,
+ "grad_norm": 0.5211818814277649,
+ "learning_rate": 0.0006,
+ "loss": 6.354585647583008,
+ "step": 164
+ },
+ {
+ "epoch": 2.293577981651376,
+ "grad_norm": 1.0809133052825928,
+ "learning_rate": 0.0006,
+ "loss": 6.3752007484436035,
+ "step": 165
+ },
+ {
+ "epoch": 2.307557885539537,
+ "grad_norm": 0.8293641209602356,
+ "learning_rate": 0.0006,
+ "loss": 6.35113525390625,
+ "step": 166
+ },
+ {
+ "epoch": 2.3215377894276976,
+ "grad_norm": 0.3428577780723572,
+ "learning_rate": 0.0006,
+ "loss": 6.334470748901367,
+ "step": 167
+ },
+ {
+ "epoch": 2.3355176933158583,
+ "grad_norm": 0.7587600946426392,
+ "learning_rate": 0.0006,
+ "loss": 6.353979587554932,
+ "step": 168
+ },
+ {
+ "epoch": 2.349497597204019,
+ "grad_norm": 0.4227249026298523,
+ "learning_rate": 0.0006,
+ "loss": 6.34018611907959,
+ "step": 169
+ },
+ {
+ "epoch": 2.36347750109218,
+ "grad_norm": 0.4226846694946289,
+ "learning_rate": 0.0006,
+ "loss": 6.290019989013672,
+ "step": 170
+ },
+ {
+ "epoch": 2.3774574049803405,
+ "grad_norm": 0.38412365317344666,
+ "learning_rate": 0.0006,
+ "loss": 6.309510231018066,
+ "step": 171
+ },
+ {
+ "epoch": 2.3914373088685017,
+ "grad_norm": 0.45698508620262146,
+ "learning_rate": 0.0006,
+ "loss": 6.283290863037109,
+ "step": 172
+ },
+ {
+ "epoch": 2.4054172127566624,
+ "grad_norm": 0.7575915455818176,
+ "learning_rate": 0.0006,
+ "loss": 6.306073188781738,
+ "step": 173
+ },
+ {
+ "epoch": 2.419397116644823,
+ "grad_norm": 0.695123553276062,
+ "learning_rate": 0.0006,
+ "loss": 6.308144569396973,
+ "step": 174
+ },
+ {
+ "epoch": 2.433377020532984,
+ "grad_norm": 0.5035743117332458,
+ "learning_rate": 0.0006,
+ "loss": 6.282073974609375,
+ "step": 175
+ },
+ {
+ "epoch": 2.4473569244211446,
+ "grad_norm": 0.3158020079135895,
+ "learning_rate": 0.0006,
+ "loss": 6.282169342041016,
+ "step": 176
+ },
+ {
+ "epoch": 2.4613368283093053,
+ "grad_norm": 0.4829689860343933,
+ "learning_rate": 0.0006,
+ "loss": 6.264578819274902,
+ "step": 177
+ },
+ {
+ "epoch": 2.475316732197466,
+ "grad_norm": 0.3992770314216614,
+ "learning_rate": 0.0006,
+ "loss": 6.228628158569336,
+ "step": 178
+ },
+ {
+ "epoch": 2.489296636085627,
+ "grad_norm": 0.40887606143951416,
+ "learning_rate": 0.0006,
+ "loss": 6.230792045593262,
+ "step": 179
+ },
+ {
+ "epoch": 2.5032765399737875,
+ "grad_norm": 0.3540310263633728,
+ "learning_rate": 0.0006,
+ "loss": 6.222573280334473,
+ "step": 180
+ },
+ {
+ "epoch": 2.5172564438619487,
+ "grad_norm": 0.496219664812088,
+ "learning_rate": 0.0006,
+ "loss": 6.212109565734863,
+ "step": 181
+ },
+ {
+ "epoch": 2.5312363477501094,
+ "grad_norm": 0.435173898935318,
+ "learning_rate": 0.0006,
+ "loss": 6.221210479736328,
+ "step": 182
+ },
+ {
+ "epoch": 2.54521625163827,
+ "grad_norm": 0.5364007949829102,
+ "learning_rate": 0.0006,
+ "loss": 6.217929840087891,
+ "step": 183
+ },
+ {
+ "epoch": 2.559196155526431,
+ "grad_norm": 0.5946390628814697,
+ "learning_rate": 0.0006,
+ "loss": 6.189267158508301,
+ "step": 184
+ },
+ {
+ "epoch": 2.5731760594145916,
+ "grad_norm": 0.41621312499046326,
+ "learning_rate": 0.0006,
+ "loss": 6.182415008544922,
+ "step": 185
+ },
+ {
+ "epoch": 2.5871559633027523,
+ "grad_norm": 0.5442072749137878,
+ "learning_rate": 0.0006,
+ "loss": 6.150757789611816,
+ "step": 186
+ },
+ {
+ "epoch": 2.601135867190913,
+ "grad_norm": 0.727843165397644,
+ "learning_rate": 0.0006,
+ "loss": 6.146082878112793,
+ "step": 187
+ },
+ {
+ "epoch": 2.615115771079074,
+ "grad_norm": 0.8898891806602478,
+ "learning_rate": 0.0006,
+ "loss": 6.190483093261719,
+ "step": 188
+ },
+ {
+ "epoch": 2.6290956749672345,
+ "grad_norm": 0.5173947215080261,
+ "learning_rate": 0.0006,
+ "loss": 6.151251792907715,
+ "step": 189
+ },
+ {
+ "epoch": 2.6430755788553952,
+ "grad_norm": 0.6476729512214661,
+ "learning_rate": 0.0006,
+ "loss": 6.154841423034668,
+ "step": 190
+ },
+ {
+ "epoch": 2.657055482743556,
+ "grad_norm": 0.3538810908794403,
+ "learning_rate": 0.0006,
+ "loss": 6.103879928588867,
+ "step": 191
+ },
+ {
+ "epoch": 2.6710353866317167,
+ "grad_norm": 0.4773508310317993,
+ "learning_rate": 0.0006,
+ "loss": 6.118101119995117,
+ "step": 192
+ },
+ {
+ "epoch": 2.6850152905198774,
+ "grad_norm": 0.29213786125183105,
+ "learning_rate": 0.0006,
+ "loss": 6.108916282653809,
+ "step": 193
+ },
+ {
+ "epoch": 2.6989951944080386,
+ "grad_norm": 0.40800607204437256,
+ "learning_rate": 0.0006,
+ "loss": 6.113438606262207,
+ "step": 194
+ },
+ {
+ "epoch": 2.7129750982961993,
+ "grad_norm": 0.31157299876213074,
+ "learning_rate": 0.0006,
+ "loss": 6.101809501647949,
+ "step": 195
+ },
+ {
+ "epoch": 2.72695500218436,
+ "grad_norm": 0.28660309314727783,
+ "learning_rate": 0.0006,
+ "loss": 6.075886249542236,
+ "step": 196
+ },
+ {
+ "epoch": 2.7409349060725208,
+ "grad_norm": 0.3810449540615082,
+ "learning_rate": 0.0006,
+ "loss": 6.053257942199707,
+ "step": 197
+ },
+ {
+ "epoch": 2.7549148099606815,
+ "grad_norm": 0.21741755306720734,
+ "learning_rate": 0.0006,
+ "loss": 6.013825416564941,
+ "step": 198
+ },
+ {
+ "epoch": 2.7688947138488422,
+ "grad_norm": 0.2777678966522217,
+ "learning_rate": 0.0006,
+ "loss": 6.054204940795898,
+ "step": 199
+ },
+ {
+ "epoch": 2.782874617737003,
+ "grad_norm": 0.28503066301345825,
+ "learning_rate": 0.0006,
+ "loss": 6.035628318786621,
+ "step": 200
+ },
+ {
+ "epoch": 2.7968545216251637,
+ "grad_norm": 0.41954755783081055,
+ "learning_rate": 0.0006,
+ "loss": 6.028354644775391,
+ "step": 201
+ },
+ {
+ "epoch": 2.810834425513325,
+ "grad_norm": 0.8785563111305237,
+ "learning_rate": 0.0006,
+ "loss": 6.055761337280273,
+ "step": 202
+ },
+ {
+ "epoch": 2.8248143294014856,
+ "grad_norm": 1.7459558248519897,
+ "learning_rate": 0.0006,
+ "loss": 6.11599588394165,
+ "step": 203
+ },
+ {
+ "epoch": 2.8387942332896463,
+ "grad_norm": 0.5725523233413696,
+ "learning_rate": 0.0006,
+ "loss": 6.024280548095703,
+ "step": 204
+ },
+ {
+ "epoch": 2.852774137177807,
+ "grad_norm": 0.5913150906562805,
+ "learning_rate": 0.0006,
+ "loss": 6.050281524658203,
+ "step": 205
+ },
+ {
+ "epoch": 2.8667540410659678,
+ "grad_norm": 0.5929384827613831,
+ "learning_rate": 0.0006,
+ "loss": 6.041121482849121,
+ "step": 206
+ },
+ {
+ "epoch": 2.8807339449541285,
+ "grad_norm": 0.5650724768638611,
+ "learning_rate": 0.0006,
+ "loss": 6.004258155822754,
+ "step": 207
+ },
+ {
+ "epoch": 2.894713848842289,
+ "grad_norm": 0.3420545756816864,
+ "learning_rate": 0.0006,
+ "loss": 5.983296871185303,
+ "step": 208
+ },
+ {
+ "epoch": 2.90869375273045,
+ "grad_norm": 0.2960914075374603,
+ "learning_rate": 0.0006,
+ "loss": 5.988578796386719,
+ "step": 209
+ },
+ {
+ "epoch": 2.9226736566186107,
+ "grad_norm": 0.3252662718296051,
+ "learning_rate": 0.0006,
+ "loss": 5.99103307723999,
+ "step": 210
+ },
+ {
+ "epoch": 2.9366535605067714,
+ "grad_norm": 0.4851132929325104,
+ "learning_rate": 0.0006,
+ "loss": 6.0028977394104,
+ "step": 211
+ },
+ {
+ "epoch": 2.950633464394932,
+ "grad_norm": 0.5639995336532593,
+ "learning_rate": 0.0006,
+ "loss": 5.965080738067627,
+ "step": 212
+ },
+ {
+ "epoch": 2.964613368283093,
+ "grad_norm": 0.4514601230621338,
+ "learning_rate": 0.0006,
+ "loss": 5.961450576782227,
+ "step": 213
+ },
+ {
+ "epoch": 2.9785932721712536,
+ "grad_norm": 0.5397921800613403,
+ "learning_rate": 0.0006,
+ "loss": 5.965290546417236,
+ "step": 214
+ },
+ {
+ "epoch": 2.9925731760594148,
+ "grad_norm": 0.4735587239265442,
+ "learning_rate": 0.0006,
+ "loss": 5.952754497528076,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.32061058282852173,
+ "learning_rate": 0.0006,
+ "loss": 5.961667060852051,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 6.8517303466796875,
+ "eval_runtime": 44.03,
+ "eval_samples_per_second": 55.462,
+ "eval_steps_per_second": 3.475,
+ "step": 216
+ },
+ {
+ "epoch": 3.0139799038881607,
+ "grad_norm": 0.3537784814834595,
+ "learning_rate": 0.0006,
+ "loss": 5.928008079528809,
+ "step": 217
+ },
+ {
+ "epoch": 3.0279598077763215,
+ "grad_norm": 0.40713080763816833,
+ "learning_rate": 0.0006,
+ "loss": 5.9150800704956055,
+ "step": 218
+ },
+ {
+ "epoch": 3.041939711664482,
+ "grad_norm": 0.2548826336860657,
+ "learning_rate": 0.0006,
+ "loss": 5.919757843017578,
+ "step": 219
+ },
+ {
+ "epoch": 3.055919615552643,
+ "grad_norm": 0.2818543016910553,
+ "learning_rate": 0.0006,
+ "loss": 5.913688659667969,
+ "step": 220
+ },
+ {
+ "epoch": 3.0698995194408036,
+ "grad_norm": 0.4196692705154419,
+ "learning_rate": 0.0006,
+ "loss": 5.8675336837768555,
+ "step": 221
+ },
+ {
+ "epoch": 3.083879423328965,
+ "grad_norm": 0.35272282361984253,
+ "learning_rate": 0.0006,
+ "loss": 5.878874778747559,
+ "step": 222
+ },
+ {
+ "epoch": 3.0978593272171255,
+ "grad_norm": 0.3254282772541046,
+ "learning_rate": 0.0006,
+ "loss": 5.8823041915893555,
+ "step": 223
+ },
+ {
+ "epoch": 3.1118392311052863,
+ "grad_norm": 0.4052561819553375,
+ "learning_rate": 0.0006,
+ "loss": 5.867744445800781,
+ "step": 224
+ },
+ {
+ "epoch": 3.125819134993447,
+ "grad_norm": 0.31246256828308105,
+ "learning_rate": 0.0006,
+ "loss": 5.886094093322754,
+ "step": 225
+ },
+ {
+ "epoch": 3.1397990388816077,
+ "grad_norm": 0.3479118347167969,
+ "learning_rate": 0.0006,
+ "loss": 5.850762367248535,
+ "step": 226
+ },
+ {
+ "epoch": 3.1537789427697684,
+ "grad_norm": 0.5037238597869873,
+ "learning_rate": 0.0006,
+ "loss": 5.844175815582275,
+ "step": 227
+ },
+ {
+ "epoch": 3.167758846657929,
+ "grad_norm": 0.6271815896034241,
+ "learning_rate": 0.0006,
+ "loss": 5.871790885925293,
+ "step": 228
+ },
+ {
+ "epoch": 3.18173875054609,
+ "grad_norm": 0.43838298320770264,
+ "learning_rate": 0.0006,
+ "loss": 5.844024658203125,
+ "step": 229
+ },
+ {
+ "epoch": 3.1957186544342506,
+ "grad_norm": 0.4755159616470337,
+ "learning_rate": 0.0006,
+ "loss": 5.846892356872559,
+ "step": 230
+ },
+ {
+ "epoch": 3.2096985583224114,
+ "grad_norm": 0.5229779481887817,
+ "learning_rate": 0.0006,
+ "loss": 5.827000617980957,
+ "step": 231
+ },
+ {
+ "epoch": 3.2236784622105725,
+ "grad_norm": 0.8264499306678772,
+ "learning_rate": 0.0006,
+ "loss": 5.867050647735596,
+ "step": 232
+ },
+ {
+ "epoch": 3.2376583660987333,
+ "grad_norm": 1.0607538223266602,
+ "learning_rate": 0.0006,
+ "loss": 5.877876281738281,
+ "step": 233
+ },
+ {
+ "epoch": 3.251638269986894,
+ "grad_norm": 0.7656505703926086,
+ "learning_rate": 0.0006,
+ "loss": 5.86760139465332,
+ "step": 234
+ },
+ {
+ "epoch": 3.2656181738750547,
+ "grad_norm": 0.7940183281898499,
+ "learning_rate": 0.0006,
+ "loss": 5.861355781555176,
+ "step": 235
+ },
+ {
+ "epoch": 3.2795980777632154,
+ "grad_norm": 0.45171424746513367,
+ "learning_rate": 0.0006,
+ "loss": 5.799808502197266,
+ "step": 236
+ },
+ {
+ "epoch": 3.293577981651376,
+ "grad_norm": 0.6174989342689514,
+ "learning_rate": 0.0006,
+ "loss": 5.8585920333862305,
+ "step": 237
+ },
+ {
+ "epoch": 3.307557885539537,
+ "grad_norm": 0.5341290831565857,
+ "learning_rate": 0.0006,
+ "loss": 5.8116044998168945,
+ "step": 238
+ },
+ {
+ "epoch": 3.3215377894276976,
+ "grad_norm": 0.3938343822956085,
+ "learning_rate": 0.0006,
+ "loss": 5.83797550201416,
+ "step": 239
+ },
+ {
+ "epoch": 3.3355176933158583,
+ "grad_norm": 0.5106972455978394,
+ "learning_rate": 0.0006,
+ "loss": 5.832303047180176,
+ "step": 240
+ },
+ {
+ "epoch": 3.349497597204019,
+ "grad_norm": 0.3791428506374359,
+ "learning_rate": 0.0006,
+ "loss": 5.794981956481934,
+ "step": 241
+ },
+ {
+ "epoch": 3.36347750109218,
+ "grad_norm": 0.42287978529930115,
+ "learning_rate": 0.0006,
+ "loss": 5.788144111633301,
+ "step": 242
+ },
+ {
+ "epoch": 3.3774574049803405,
+ "grad_norm": 0.27334436774253845,
+ "learning_rate": 0.0006,
+ "loss": 5.771070957183838,
+ "step": 243
+ },
+ {
+ "epoch": 3.3914373088685017,
+ "grad_norm": 0.2470470368862152,
+ "learning_rate": 0.0006,
+ "loss": 5.755998611450195,
+ "step": 244
+ },
+ {
+ "epoch": 3.4054172127566624,
+ "grad_norm": 0.3043915033340454,
+ "learning_rate": 0.0006,
+ "loss": 5.779492378234863,
+ "step": 245
+ },
+ {
+ "epoch": 3.419397116644823,
+ "grad_norm": 0.2960112988948822,
+ "learning_rate": 0.0006,
+ "loss": 5.750328063964844,
+ "step": 246
+ },
+ {
+ "epoch": 3.433377020532984,
+ "grad_norm": 0.3046723008155823,
+ "learning_rate": 0.0006,
+ "loss": 5.776517868041992,
+ "step": 247
+ },
+ {
+ "epoch": 3.4473569244211446,
+ "grad_norm": 0.22461780905723572,
+ "learning_rate": 0.0006,
+ "loss": 5.760989665985107,
+ "step": 248
+ },
+ {
+ "epoch": 3.4613368283093053,
+ "grad_norm": 0.24625757336616516,
+ "learning_rate": 0.0006,
+ "loss": 5.759706497192383,
+ "step": 249
+ },
+ {
+ "epoch": 3.475316732197466,
+ "grad_norm": 0.18207131326198578,
+ "learning_rate": 0.0006,
+ "loss": 5.747040748596191,
+ "step": 250
+ },
+ {
+ "epoch": 3.489296636085627,
+ "grad_norm": 0.16473834216594696,
+ "learning_rate": 0.0006,
+ "loss": 5.761577606201172,
+ "step": 251
+ },
+ {
+ "epoch": 3.5032765399737875,
+ "grad_norm": 0.25155773758888245,
+ "learning_rate": 0.0006,
+ "loss": 5.696502208709717,
+ "step": 252
+ },
+ {
+ "epoch": 3.5172564438619487,
+ "grad_norm": 0.24115674197673798,
+ "learning_rate": 0.0006,
+ "loss": 5.676957130432129,
+ "step": 253
+ },
+ {
+ "epoch": 3.5312363477501094,
+ "grad_norm": 0.40912172198295593,
+ "learning_rate": 0.0006,
+ "loss": 5.695090293884277,
+ "step": 254
+ },
+ {
+ "epoch": 3.54521625163827,
+ "grad_norm": 0.6727662682533264,
+ "learning_rate": 0.0006,
+ "loss": 5.722194671630859,
+ "step": 255
+ },
+ {
+ "epoch": 3.559196155526431,
+ "grad_norm": 0.8450719118118286,
+ "learning_rate": 0.0006,
+ "loss": 5.764680862426758,
+ "step": 256
+ },
+ {
+ "epoch": 3.5731760594145916,
+ "grad_norm": 0.9916183352470398,
+ "learning_rate": 0.0006,
+ "loss": 5.754530429840088,
+ "step": 257
+ },
+ {
+ "epoch": 3.5871559633027523,
+ "grad_norm": 1.041922688484192,
+ "learning_rate": 0.0006,
+ "loss": 5.781468391418457,
+ "step": 258
+ },
+ {
+ "epoch": 3.601135867190913,
+ "grad_norm": 0.972039520740509,
+ "learning_rate": 0.0006,
+ "loss": 5.760323524475098,
+ "step": 259
+ },
+ {
+ "epoch": 3.615115771079074,
+ "grad_norm": 0.6802462935447693,
+ "learning_rate": 0.0006,
+ "loss": 5.750064849853516,
+ "step": 260
+ },
+ {
+ "epoch": 3.6290956749672345,
+ "grad_norm": 0.48553529381752014,
+ "learning_rate": 0.0006,
+ "loss": 5.7464094161987305,
+ "step": 261
+ },
+ {
+ "epoch": 3.6430755788553952,
+ "grad_norm": 0.4066704213619232,
+ "learning_rate": 0.0006,
+ "loss": 5.719789505004883,
+ "step": 262
+ },
+ {
+ "epoch": 3.657055482743556,
+ "grad_norm": 0.3300860822200775,
+ "learning_rate": 0.0006,
+ "loss": 5.719920635223389,
+ "step": 263
+ },
+ {
+ "epoch": 3.6710353866317167,
+ "grad_norm": 0.3286679983139038,
+ "learning_rate": 0.0006,
+ "loss": 5.723465919494629,
+ "step": 264
+ },
+ {
+ "epoch": 3.6850152905198774,
+ "grad_norm": 0.27653390169143677,
+ "learning_rate": 0.0006,
+ "loss": 5.713820457458496,
+ "step": 265
+ },
+ {
+ "epoch": 3.6989951944080386,
+ "grad_norm": 0.26138055324554443,
+ "learning_rate": 0.0006,
+ "loss": 5.683221817016602,
+ "step": 266
+ },
+ {
+ "epoch": 3.7129750982961993,
+ "grad_norm": 0.23706290125846863,
+ "learning_rate": 0.0006,
+ "loss": 5.6896867752075195,
+ "step": 267
+ },
+ {
+ "epoch": 3.72695500218436,
+ "grad_norm": 0.2751729190349579,
+ "learning_rate": 0.0006,
+ "loss": 5.710301876068115,
+ "step": 268
+ },
+ {
+ "epoch": 3.7409349060725208,
+ "grad_norm": 0.255393385887146,
+ "learning_rate": 0.0006,
+ "loss": 5.687932968139648,
+ "step": 269
+ },
+ {
+ "epoch": 3.7549148099606815,
+ "grad_norm": 0.21453925967216492,
+ "learning_rate": 0.0006,
+ "loss": 5.68234395980835,
+ "step": 270
+ },
+ {
+ "epoch": 3.7688947138488422,
+ "grad_norm": 0.21771012246608734,
+ "learning_rate": 0.0006,
+ "loss": 5.683980464935303,
+ "step": 271
+ },
+ {
+ "epoch": 3.782874617737003,
+ "grad_norm": 0.1884593963623047,
+ "learning_rate": 0.0006,
+ "loss": 5.662779808044434,
+ "step": 272
+ },
+ {
+ "epoch": 3.7968545216251637,
+ "grad_norm": 0.20429612696170807,
+ "learning_rate": 0.0006,
+ "loss": 5.650941848754883,
+ "step": 273
+ },
+ {
+ "epoch": 3.810834425513325,
+ "grad_norm": 0.22586797177791595,
+ "learning_rate": 0.0006,
+ "loss": 5.639376640319824,
+ "step": 274
+ },
+ {
+ "epoch": 3.8248143294014856,
+ "grad_norm": 0.19651705026626587,
+ "learning_rate": 0.0006,
+ "loss": 5.612030029296875,
+ "step": 275
+ },
+ {
+ "epoch": 3.8387942332896463,
+ "grad_norm": 0.2125253826379776,
+ "learning_rate": 0.0006,
+ "loss": 5.622836589813232,
+ "step": 276
+ },
+ {
+ "epoch": 3.852774137177807,
+ "grad_norm": 0.2905234694480896,
+ "learning_rate": 0.0006,
+ "loss": 5.624594688415527,
+ "step": 277
+ },
+ {
+ "epoch": 3.8667540410659678,
+ "grad_norm": 0.2718426585197449,
+ "learning_rate": 0.0006,
+ "loss": 5.619892120361328,
+ "step": 278
+ },
+ {
+ "epoch": 3.8807339449541285,
+ "grad_norm": 0.26481127738952637,
+ "learning_rate": 0.0006,
+ "loss": 5.612496852874756,
+ "step": 279
+ },
+ {
+ "epoch": 3.894713848842289,
+ "grad_norm": 0.2876453399658203,
+ "learning_rate": 0.0006,
+ "loss": 5.59157133102417,
+ "step": 280
+ },
+ {
+ "epoch": 3.90869375273045,
+ "grad_norm": 0.22829554975032806,
+ "learning_rate": 0.0006,
+ "loss": 5.5884199142456055,
+ "step": 281
+ },
+ {
+ "epoch": 3.9226736566186107,
+ "grad_norm": 0.22852344810962677,
+ "learning_rate": 0.0006,
+ "loss": 5.618719100952148,
+ "step": 282
+ },
+ {
+ "epoch": 3.9366535605067714,
+ "grad_norm": 0.37366563081741333,
+ "learning_rate": 0.0006,
+ "loss": 5.611738204956055,
+ "step": 283
+ },
+ {
+ "epoch": 3.950633464394932,
+ "grad_norm": 0.5650382041931152,
+ "learning_rate": 0.0006,
+ "loss": 5.606371879577637,
+ "step": 284
+ },
+ {
+ "epoch": 3.964613368283093,
+ "grad_norm": 0.5960066914558411,
+ "learning_rate": 0.0006,
+ "loss": 5.595022201538086,
+ "step": 285
+ },
+ {
+ "epoch": 3.9785932721712536,
+ "grad_norm": 0.3561663031578064,
+ "learning_rate": 0.0006,
+ "loss": 5.581035614013672,
+ "step": 286
+ },
+ {
+ "epoch": 3.9925731760594148,
+ "grad_norm": 0.44699913263320923,
+ "learning_rate": 0.0006,
+ "loss": 5.568033218383789,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.42783990502357483,
+ "learning_rate": 0.0006,
+ "loss": 5.571993827819824,
+ "step": 288
+ },
+ {
+ "epoch": 4.0,
+ "eval_loss": 6.349016189575195,
+ "eval_runtime": 44.3326,
+ "eval_samples_per_second": 55.084,
+ "eval_steps_per_second": 3.451,
+ "step": 288
+ },
+ {
+ "epoch": 4.013979903888161,
+ "grad_norm": 0.41305896639823914,
+ "learning_rate": 0.0006,
+ "loss": 5.562954902648926,
+ "step": 289
+ },
+ {
+ "epoch": 4.0279598077763215,
+ "grad_norm": 0.3966459035873413,
+ "learning_rate": 0.0006,
+ "loss": 5.5671916007995605,
+ "step": 290
+ },
+ {
+ "epoch": 4.041939711664482,
+ "grad_norm": 0.4846104085445404,
+ "learning_rate": 0.0006,
+ "loss": 5.548027038574219,
+ "step": 291
+ },
+ {
+ "epoch": 4.055919615552643,
+ "grad_norm": 0.5916333794593811,
+ "learning_rate": 0.0006,
+ "loss": 5.5900068283081055,
+ "step": 292
+ },
+ {
+ "epoch": 4.069899519440804,
+ "grad_norm": 0.5973889231681824,
+ "learning_rate": 0.0006,
+ "loss": 5.537594795227051,
+ "step": 293
+ },
+ {
+ "epoch": 4.083879423328964,
+ "grad_norm": 0.4190494418144226,
+ "learning_rate": 0.0006,
+ "loss": 5.534749984741211,
+ "step": 294
+ },
+ {
+ "epoch": 4.097859327217125,
+ "grad_norm": 0.5956901907920837,
+ "learning_rate": 0.0006,
+ "loss": 5.554540634155273,
+ "step": 295
+ },
+ {
+ "epoch": 4.111839231105286,
+ "grad_norm": 0.8257920742034912,
+ "learning_rate": 0.0006,
+ "loss": 5.5728068351745605,
+ "step": 296
+ },
+ {
+ "epoch": 4.1258191349934465,
+ "grad_norm": 0.7241750955581665,
+ "learning_rate": 0.0006,
+ "loss": 5.5643815994262695,
+ "step": 297
+ },
+ {
+ "epoch": 4.139799038881607,
+ "grad_norm": 0.45730507373809814,
+ "learning_rate": 0.0006,
+ "loss": 5.554225921630859,
+ "step": 298
+ },
+ {
+ "epoch": 4.153778942769769,
+ "grad_norm": 0.5166977643966675,
+ "learning_rate": 0.0006,
+ "loss": 5.540790557861328,
+ "step": 299
+ },
+ {
+ "epoch": 4.16775884665793,
+ "grad_norm": 0.433237761259079,
+ "learning_rate": 0.0006,
+ "loss": 5.536884784698486,
+ "step": 300
+ },
+ {
+ "epoch": 4.18173875054609,
+ "grad_norm": 0.3369830250740051,
+ "learning_rate": 0.0006,
+ "loss": 5.532837867736816,
+ "step": 301
+ },
+ {
+ "epoch": 4.195718654434251,
+ "grad_norm": 0.33091458678245544,
+ "learning_rate": 0.0006,
+ "loss": 5.547643661499023,
+ "step": 302
+ },
+ {
+ "epoch": 4.209698558322412,
+ "grad_norm": 0.36462724208831787,
+ "learning_rate": 0.0006,
+ "loss": 5.525021076202393,
+ "step": 303
+ },
+ {
+ "epoch": 4.2236784622105725,
+ "grad_norm": 0.3342771530151367,
+ "learning_rate": 0.0006,
+ "loss": 5.512082099914551,
+ "step": 304
+ },
+ {
+ "epoch": 4.237658366098733,
+ "grad_norm": 0.26784762740135193,
+ "learning_rate": 0.0006,
+ "loss": 5.488072395324707,
+ "step": 305
+ },
+ {
+ "epoch": 4.251638269986894,
+ "grad_norm": 0.25986987352371216,
+ "learning_rate": 0.0006,
+ "loss": 5.4960455894470215,
+ "step": 306
+ },
+ {
+ "epoch": 4.265618173875055,
+ "grad_norm": 0.24595795571804047,
+ "learning_rate": 0.0006,
+ "loss": 5.513367176055908,
+ "step": 307
+ },
+ {
+ "epoch": 4.279598077763215,
+ "grad_norm": 0.2224857211112976,
+ "learning_rate": 0.0006,
+ "loss": 5.465205192565918,
+ "step": 308
+ },
+ {
+ "epoch": 4.293577981651376,
+ "grad_norm": 0.26799243688583374,
+ "learning_rate": 0.0006,
+ "loss": 5.476632118225098,
+ "step": 309
+ },
+ {
+ "epoch": 4.307557885539537,
+ "grad_norm": 0.20443417131900787,
+ "learning_rate": 0.0006,
+ "loss": 5.442601203918457,
+ "step": 310
+ },
+ {
+ "epoch": 4.321537789427698,
+ "grad_norm": 0.2275059074163437,
+ "learning_rate": 0.0006,
+ "loss": 5.453519344329834,
+ "step": 311
+ },
+ {
+ "epoch": 4.335517693315858,
+ "grad_norm": 0.2860901951789856,
+ "learning_rate": 0.0006,
+ "loss": 5.439424514770508,
+ "step": 312
+ },
+ {
+ "epoch": 4.349497597204019,
+ "grad_norm": 0.3378142714500427,
+ "learning_rate": 0.0006,
+ "loss": 5.476953983306885,
+ "step": 313
+ },
+ {
+ "epoch": 4.36347750109218,
+ "grad_norm": 0.3487110733985901,
+ "learning_rate": 0.0006,
+ "loss": 5.47003698348999,
+ "step": 314
+ },
+ {
+ "epoch": 4.3774574049803405,
+ "grad_norm": 0.3655227720737457,
+ "learning_rate": 0.0006,
+ "loss": 5.454250812530518,
+ "step": 315
+ },
+ {
+ "epoch": 4.391437308868501,
+ "grad_norm": 0.3754786252975464,
+ "learning_rate": 0.0006,
+ "loss": 5.475249290466309,
+ "step": 316
+ },
+ {
+ "epoch": 4.405417212756662,
+ "grad_norm": 0.42494088411331177,
+ "learning_rate": 0.0006,
+ "loss": 5.4552459716796875,
+ "step": 317
+ },
+ {
+ "epoch": 4.419397116644823,
+ "grad_norm": 0.4914703667163849,
+ "learning_rate": 0.0006,
+ "loss": 5.431845188140869,
+ "step": 318
+ },
+ {
+ "epoch": 4.433377020532983,
+ "grad_norm": 0.42470860481262207,
+ "learning_rate": 0.0006,
+ "loss": 5.454581260681152,
+ "step": 319
+ },
+ {
+ "epoch": 4.447356924421145,
+ "grad_norm": 0.3828011155128479,
+ "learning_rate": 0.0006,
+ "loss": 5.435178756713867,
+ "step": 320
+ },
+ {
+ "epoch": 4.461336828309306,
+ "grad_norm": 0.47256892919540405,
+ "learning_rate": 0.0006,
+ "loss": 5.428861618041992,
+ "step": 321
+ },
+ {
+ "epoch": 4.4753167321974665,
+ "grad_norm": 0.5665146708488464,
+ "learning_rate": 0.0006,
+ "loss": 5.424633026123047,
+ "step": 322
+ },
+ {
+ "epoch": 4.489296636085627,
+ "grad_norm": 0.48146721720695496,
+ "learning_rate": 0.0006,
+ "loss": 5.4577860832214355,
+ "step": 323
+ },
+ {
+ "epoch": 4.503276539973788,
+ "grad_norm": 0.3378535509109497,
+ "learning_rate": 0.0006,
+ "loss": 5.422727108001709,
+ "step": 324
+ },
+ {
+ "epoch": 4.517256443861949,
+ "grad_norm": 0.41981473565101624,
+ "learning_rate": 0.0006,
+ "loss": 5.418993949890137,
+ "step": 325
+ },
+ {
+ "epoch": 4.531236347750109,
+ "grad_norm": 0.39389684796333313,
+ "learning_rate": 0.0006,
+ "loss": 5.41835880279541,
+ "step": 326
+ },
+ {
+ "epoch": 4.54521625163827,
+ "grad_norm": 0.5912176370620728,
+ "learning_rate": 0.0006,
+ "loss": 5.40073299407959,
+ "step": 327
+ },
+ {
+ "epoch": 4.559196155526431,
+ "grad_norm": 0.6877487897872925,
+ "learning_rate": 0.0006,
+ "loss": 5.445301055908203,
+ "step": 328
+ },
+ {
+ "epoch": 4.573176059414592,
+ "grad_norm": 0.580555260181427,
+ "learning_rate": 0.0006,
+ "loss": 5.431069374084473,
+ "step": 329
+ },
+ {
+ "epoch": 4.587155963302752,
+ "grad_norm": 0.5974457859992981,
+ "learning_rate": 0.0006,
+ "loss": 5.422694206237793,
+ "step": 330
+ },
+ {
+ "epoch": 4.601135867190913,
+ "grad_norm": 0.722481906414032,
+ "learning_rate": 0.0006,
+ "loss": 5.447752952575684,
+ "step": 331
+ },
+ {
+ "epoch": 4.615115771079074,
+ "grad_norm": 0.7687886953353882,
+ "learning_rate": 0.0006,
+ "loss": 5.437956809997559,
+ "step": 332
+ },
+ {
+ "epoch": 4.6290956749672345,
+ "grad_norm": 0.7368173003196716,
+ "learning_rate": 0.0006,
+ "loss": 5.4367241859436035,
+ "step": 333
+ },
+ {
+ "epoch": 4.643075578855395,
+ "grad_norm": 0.6650524139404297,
+ "learning_rate": 0.0006,
+ "loss": 5.4288434982299805,
+ "step": 334
+ },
+ {
+ "epoch": 4.657055482743556,
+ "grad_norm": 0.4997614920139313,
+ "learning_rate": 0.0006,
+ "loss": 5.412769317626953,
+ "step": 335
+ },
+ {
+ "epoch": 4.671035386631717,
+ "grad_norm": 0.44208982586860657,
+ "learning_rate": 0.0006,
+ "loss": 5.42405366897583,
+ "step": 336
+ },
+ {
+ "epoch": 4.685015290519877,
+ "grad_norm": 0.39510273933410645,
+ "learning_rate": 0.0006,
+ "loss": 5.402547836303711,
+ "step": 337
+ },
+ {
+ "epoch": 4.698995194408038,
+ "grad_norm": 0.44970476627349854,
+ "learning_rate": 0.0006,
+ "loss": 5.377168655395508,
+ "step": 338
+ },
+ {
+ "epoch": 4.712975098296199,
+ "grad_norm": 0.3902331590652466,
+ "learning_rate": 0.0006,
+ "loss": 5.401622772216797,
+ "step": 339
+ },
+ {
+ "epoch": 4.72695500218436,
+ "grad_norm": 0.33485135436058044,
+ "learning_rate": 0.0006,
+ "loss": 5.397945880889893,
+ "step": 340
+ },
+ {
+ "epoch": 4.740934906072521,
+ "grad_norm": 0.29062309861183167,
+ "learning_rate": 0.0006,
+ "loss": 5.356175422668457,
+ "step": 341
+ },
+ {
+ "epoch": 4.754914809960681,
+ "grad_norm": 0.23617377877235413,
+ "learning_rate": 0.0006,
+ "loss": 5.388517379760742,
+ "step": 342
+ },
+ {
+ "epoch": 4.768894713848843,
+ "grad_norm": 0.2704737186431885,
+ "learning_rate": 0.0006,
+ "loss": 5.3746137619018555,
+ "step": 343
+ },
+ {
+ "epoch": 4.782874617737003,
+ "grad_norm": 0.20488551259040833,
+ "learning_rate": 0.0006,
+ "loss": 5.3754472732543945,
+ "step": 344
+ },
+ {
+ "epoch": 4.796854521625164,
+ "grad_norm": 0.2007082849740982,
+ "learning_rate": 0.0006,
+ "loss": 5.3538618087768555,
+ "step": 345
+ },
+ {
+ "epoch": 4.810834425513325,
+ "grad_norm": 0.21732935309410095,
+ "learning_rate": 0.0006,
+ "loss": 5.351774215698242,
+ "step": 346
+ },
+ {
+ "epoch": 4.824814329401486,
+ "grad_norm": 0.1944841742515564,
+ "learning_rate": 0.0006,
+ "loss": 5.357545852661133,
+ "step": 347
+ },
+ {
+ "epoch": 4.838794233289646,
+ "grad_norm": 0.1953933835029602,
+ "learning_rate": 0.0006,
+ "loss": 5.321681022644043,
+ "step": 348
+ },
+ {
+ "epoch": 4.852774137177807,
+ "grad_norm": 0.1743433028459549,
+ "learning_rate": 0.0006,
+ "loss": 5.340302467346191,
+ "step": 349
+ },
+ {
+ "epoch": 4.866754041065968,
+ "grad_norm": 0.19655466079711914,
+ "learning_rate": 0.0006,
+ "loss": 5.325471878051758,
+ "step": 350
+ },
+ {
+ "epoch": 4.8807339449541285,
+ "grad_norm": 0.15761791169643402,
+ "learning_rate": 0.0006,
+ "loss": 5.3453240394592285,
+ "step": 351
+ },
+ {
+ "epoch": 4.894713848842289,
+ "grad_norm": 0.19164425134658813,
+ "learning_rate": 0.0006,
+ "loss": 5.315583229064941,
+ "step": 352
+ },
+ {
+ "epoch": 4.90869375273045,
+ "grad_norm": 0.28084540367126465,
+ "learning_rate": 0.0006,
+ "loss": 5.309171676635742,
+ "step": 353
+ },
+ {
+ "epoch": 4.922673656618611,
+ "grad_norm": 0.4681853652000427,
+ "learning_rate": 0.0006,
+ "loss": 5.318211078643799,
+ "step": 354
+ },
+ {
+ "epoch": 4.936653560506771,
+ "grad_norm": 0.6417295932769775,
+ "learning_rate": 0.0006,
+ "loss": 5.309263706207275,
+ "step": 355
+ },
+ {
+ "epoch": 4.950633464394932,
+ "grad_norm": 0.501312792301178,
+ "learning_rate": 0.0006,
+ "loss": 5.321534156799316,
+ "step": 356
+ },
+ {
+ "epoch": 4.964613368283093,
+ "grad_norm": 0.47502145171165466,
+ "learning_rate": 0.0006,
+ "loss": 5.323659896850586,
+ "step": 357
+ },
+ {
+ "epoch": 4.978593272171254,
+ "grad_norm": 0.5366594791412354,
+ "learning_rate": 0.0006,
+ "loss": 5.327367782592773,
+ "step": 358
+ },
+ {
+ "epoch": 4.992573176059414,
+ "grad_norm": 0.6986395120620728,
+ "learning_rate": 0.0006,
+ "loss": 5.311097145080566,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.6626625657081604,
+ "learning_rate": 0.0006,
+ "loss": 5.337558269500732,
+ "step": 360
+ },
+ {
+ "epoch": 5.0,
+ "eval_loss": 5.929230690002441,
+ "eval_runtime": 44.5268,
+ "eval_samples_per_second": 54.843,
+ "eval_steps_per_second": 3.436,
+ "step": 360
+ },
+ {
+ "epoch": 5.013979903888161,
+ "grad_norm": 0.7383704781532288,
+ "learning_rate": 0.0006,
+ "loss": 5.315563678741455,
+ "step": 361
+ },
+ {
+ "epoch": 5.0279598077763215,
+ "grad_norm": 0.7730138301849365,
+ "learning_rate": 0.0006,
+ "loss": 5.324905872344971,
+ "step": 362
+ },
+ {
+ "epoch": 5.041939711664482,
+ "grad_norm": 0.8170825839042664,
+ "learning_rate": 0.0006,
+ "loss": 5.350251197814941,
+ "step": 363
+ },
+ {
+ "epoch": 5.055919615552643,
+ "grad_norm": 0.6950958371162415,
+ "learning_rate": 0.0006,
+ "loss": 5.338744163513184,
+ "step": 364
+ },
+ {
+ "epoch": 5.069899519440804,
+ "grad_norm": 0.5582894086837769,
+ "learning_rate": 0.0006,
+ "loss": 5.340539932250977,
+ "step": 365
+ },
+ {
+ "epoch": 5.083879423328964,
+ "grad_norm": 0.4772159159183502,
+ "learning_rate": 0.0006,
+ "loss": 5.344161033630371,
+ "step": 366
+ },
+ {
+ "epoch": 5.097859327217125,
+ "grad_norm": 0.5432839393615723,
+ "learning_rate": 0.0006,
+ "loss": 5.312403678894043,
+ "step": 367
+ },
+ {
+ "epoch": 5.111839231105286,
+ "grad_norm": 0.4944784641265869,
+ "learning_rate": 0.0006,
+ "loss": 5.30281925201416,
+ "step": 368
+ },
+ {
+ "epoch": 5.1258191349934465,
+ "grad_norm": 0.4298315942287445,
+ "learning_rate": 0.0006,
+ "loss": 5.29564094543457,
+ "step": 369
+ },
+ {
+ "epoch": 5.139799038881607,
+ "grad_norm": 0.349889874458313,
+ "learning_rate": 0.0006,
+ "loss": 5.287062644958496,
+ "step": 370
+ },
+ {
+ "epoch": 5.153778942769769,
+ "grad_norm": 0.2823719084262848,
+ "learning_rate": 0.0006,
+ "loss": 5.28826904296875,
+ "step": 371
+ },
+ {
+ "epoch": 5.16775884665793,
+ "grad_norm": 0.32975050806999207,
+ "learning_rate": 0.0006,
+ "loss": 5.256399631500244,
+ "step": 372
+ },
+ {
+ "epoch": 5.18173875054609,
+ "grad_norm": 0.2963952124118805,
+ "learning_rate": 0.0006,
+ "loss": 5.273757457733154,
+ "step": 373
+ },
+ {
+ "epoch": 5.195718654434251,
+ "grad_norm": 0.21345984935760498,
+ "learning_rate": 0.0006,
+ "loss": 5.274978160858154,
+ "step": 374
+ },
+ {
+ "epoch": 5.209698558322412,
+ "grad_norm": 0.2363101840019226,
+ "learning_rate": 0.0006,
+ "loss": 5.261585235595703,
+ "step": 375
+ },
+ {
+ "epoch": 5.2236784622105725,
+ "grad_norm": 0.19626963138580322,
+ "learning_rate": 0.0006,
+ "loss": 5.259700298309326,
+ "step": 376
+ },
+ {
+ "epoch": 5.237658366098733,
+ "grad_norm": 0.21083571016788483,
+ "learning_rate": 0.0006,
+ "loss": 5.233585357666016,
+ "step": 377
+ },
+ {
+ "epoch": 5.251638269986894,
+ "grad_norm": 0.2273513823747635,
+ "learning_rate": 0.0006,
+ "loss": 5.231740474700928,
+ "step": 378
+ },
+ {
+ "epoch": 5.265618173875055,
+ "grad_norm": 0.18299247324466705,
+ "learning_rate": 0.0006,
+ "loss": 5.251256465911865,
+ "step": 379
+ },
+ {
+ "epoch": 5.279598077763215,
+ "grad_norm": 0.19578224420547485,
+ "learning_rate": 0.0006,
+ "loss": 5.230329513549805,
+ "step": 380
+ },
+ {
+ "epoch": 5.293577981651376,
+ "grad_norm": 0.20308879017829895,
+ "learning_rate": 0.0006,
+ "loss": 5.243951797485352,
+ "step": 381
+ },
+ {
+ "epoch": 5.307557885539537,
+ "grad_norm": 0.21053212881088257,
+ "learning_rate": 0.0006,
+ "loss": 5.210272789001465,
+ "step": 382
+ },
+ {
+ "epoch": 5.321537789427698,
+ "grad_norm": 0.21852520108222961,
+ "learning_rate": 0.0006,
+ "loss": 5.215418815612793,
+ "step": 383
+ },
+ {
+ "epoch": 5.335517693315858,
+ "grad_norm": 0.24872010946273804,
+ "learning_rate": 0.0006,
+ "loss": 5.225139617919922,
+ "step": 384
+ },
+ {
+ "epoch": 5.349497597204019,
+ "grad_norm": 0.27780187129974365,
+ "learning_rate": 0.0006,
+ "loss": 5.241010665893555,
+ "step": 385
+ },
+ {
+ "epoch": 5.36347750109218,
+ "grad_norm": 0.261767715215683,
+ "learning_rate": 0.0006,
+ "loss": 5.230723857879639,
+ "step": 386
+ },
+ {
+ "epoch": 5.3774574049803405,
+ "grad_norm": 0.2111261785030365,
+ "learning_rate": 0.0006,
+ "loss": 5.1848602294921875,
+ "step": 387
+ },
+ {
+ "epoch": 5.391437308868501,
+ "grad_norm": 0.24325387179851532,
+ "learning_rate": 0.0006,
+ "loss": 5.180911064147949,
+ "step": 388
+ },
+ {
+ "epoch": 5.405417212756662,
+ "grad_norm": 0.19542962312698364,
+ "learning_rate": 0.0006,
+ "loss": 5.189907073974609,
+ "step": 389
+ },
+ {
+ "epoch": 5.419397116644823,
+ "grad_norm": 0.20489346981048584,
+ "learning_rate": 0.0006,
+ "loss": 5.184634208679199,
+ "step": 390
+ },
+ {
+ "epoch": 5.433377020532983,
+ "grad_norm": 0.2753409147262573,
+ "learning_rate": 0.0006,
+ "loss": 5.190083026885986,
+ "step": 391
+ },
+ {
+ "epoch": 5.447356924421145,
+ "grad_norm": 0.3758019208908081,
+ "learning_rate": 0.0006,
+ "loss": 5.189423561096191,
+ "step": 392
+ },
+ {
+ "epoch": 5.461336828309306,
+ "grad_norm": 0.4425095021724701,
+ "learning_rate": 0.0006,
+ "loss": 5.17152214050293,
+ "step": 393
+ },
+ {
+ "epoch": 5.4753167321974665,
+ "grad_norm": 0.39721858501434326,
+ "learning_rate": 0.0006,
+ "loss": 5.189178466796875,
+ "step": 394
+ },
+ {
+ "epoch": 5.489296636085627,
+ "grad_norm": 0.43441957235336304,
+ "learning_rate": 0.0006,
+ "loss": 5.1823577880859375,
+ "step": 395
+ },
+ {
+ "epoch": 5.503276539973788,
+ "grad_norm": 0.3583861291408539,
+ "learning_rate": 0.0006,
+ "loss": 5.160187721252441,
+ "step": 396
+ },
+ {
+ "epoch": 5.517256443861949,
+ "grad_norm": 0.323290079832077,
+ "learning_rate": 0.0006,
+ "loss": 5.113046646118164,
+ "step": 397
+ },
+ {
+ "epoch": 5.531236347750109,
+ "grad_norm": 0.3049418330192566,
+ "learning_rate": 0.0006,
+ "loss": 5.172209739685059,
+ "step": 398
+ },
+ {
+ "epoch": 5.54521625163827,
+ "grad_norm": 0.3253744840621948,
+ "learning_rate": 0.0006,
+ "loss": 5.1970720291137695,
+ "step": 399
+ },
+ {
+ "epoch": 5.559196155526431,
+ "grad_norm": 0.3232555091381073,
+ "learning_rate": 0.0006,
+ "loss": 5.173195838928223,
+ "step": 400
+ },
+ {
+ "epoch": 5.573176059414592,
+ "grad_norm": 0.33751845359802246,
+ "learning_rate": 0.0006,
+ "loss": 5.137526988983154,
+ "step": 401
+ },
+ {
+ "epoch": 5.587155963302752,
+ "grad_norm": 0.45970913767814636,
+ "learning_rate": 0.0006,
+ "loss": 5.123377799987793,
+ "step": 402
+ },
+ {
+ "epoch": 5.601135867190913,
+ "grad_norm": 0.5383784770965576,
+ "learning_rate": 0.0006,
+ "loss": 5.154180526733398,
+ "step": 403
+ },
+ {
+ "epoch": 5.615115771079074,
+ "grad_norm": 0.45765912532806396,
+ "learning_rate": 0.0006,
+ "loss": 5.1485209465026855,
+ "step": 404
+ },
+ {
+ "epoch": 5.6290956749672345,
+ "grad_norm": 0.5079503059387207,
+ "learning_rate": 0.0006,
+ "loss": 5.158293724060059,
+ "step": 405
+ },
+ {
+ "epoch": 5.643075578855395,
+ "grad_norm": 0.4860183894634247,
+ "learning_rate": 0.0006,
+ "loss": 5.1610212326049805,
+ "step": 406
+ },
+ {
+ "epoch": 5.657055482743556,
+ "grad_norm": 0.4065648913383484,
+ "learning_rate": 0.0006,
+ "loss": 5.1260786056518555,
+ "step": 407
+ },
+ {
+ "epoch": 5.671035386631717,
+ "grad_norm": 0.39606142044067383,
+ "learning_rate": 0.0006,
+ "loss": 5.1598711013793945,
+ "step": 408
+ },
+ {
+ "epoch": 5.685015290519877,
+ "grad_norm": 0.4705151319503784,
+ "learning_rate": 0.0006,
+ "loss": 5.166455268859863,
+ "step": 409
+ },
+ {
+ "epoch": 5.698995194408038,
+ "grad_norm": 0.5040799379348755,
+ "learning_rate": 0.0006,
+ "loss": 5.1408209800720215,
+ "step": 410
+ },
+ {
+ "epoch": 5.712975098296199,
+ "grad_norm": 0.5012556910514832,
+ "learning_rate": 0.0006,
+ "loss": 5.144109725952148,
+ "step": 411
+ },
+ {
+ "epoch": 5.72695500218436,
+ "grad_norm": 0.44301411509513855,
+ "learning_rate": 0.0006,
+ "loss": 5.155509948730469,
+ "step": 412
+ },
+ {
+ "epoch": 5.740934906072521,
+ "grad_norm": 0.36632269620895386,
+ "learning_rate": 0.0006,
+ "loss": 5.123111248016357,
+ "step": 413
+ },
+ {
+ "epoch": 5.754914809960681,
+ "grad_norm": 0.2980524003505707,
+ "learning_rate": 0.0006,
+ "loss": 5.1355719566345215,
+ "step": 414
+ },
+ {
+ "epoch": 5.768894713848843,
+ "grad_norm": 0.3441782295703888,
+ "learning_rate": 0.0006,
+ "loss": 5.132327079772949,
+ "step": 415
+ },
+ {
+ "epoch": 5.782874617737003,
+ "grad_norm": 0.4150780737400055,
+ "learning_rate": 0.0006,
+ "loss": 5.148543357849121,
+ "step": 416
+ },
+ {
+ "epoch": 5.796854521625164,
+ "grad_norm": 0.48417383432388306,
+ "learning_rate": 0.0006,
+ "loss": 5.104989528656006,
+ "step": 417
+ },
+ {
+ "epoch": 5.810834425513325,
+ "grad_norm": 0.3216031491756439,
+ "learning_rate": 0.0006,
+ "loss": 5.0926127433776855,
+ "step": 418
+ },
+ {
+ "epoch": 5.824814329401486,
+ "grad_norm": 0.2821158468723297,
+ "learning_rate": 0.0006,
+ "loss": 5.112299919128418,
+ "step": 419
+ },
+ {
+ "epoch": 5.838794233289646,
+ "grad_norm": 0.29821011424064636,
+ "learning_rate": 0.0006,
+ "loss": 5.091662406921387,
+ "step": 420
+ },
+ {
+ "epoch": 5.852774137177807,
+ "grad_norm": 0.30570563673973083,
+ "learning_rate": 0.0006,
+ "loss": 5.137539863586426,
+ "step": 421
+ },
+ {
+ "epoch": 5.866754041065968,
+ "grad_norm": 0.4029594957828522,
+ "learning_rate": 0.0006,
+ "loss": 5.112751007080078,
+ "step": 422
+ },
+ {
+ "epoch": 5.8807339449541285,
+ "grad_norm": 0.3878514766693115,
+ "learning_rate": 0.0006,
+ "loss": 5.094973564147949,
+ "step": 423
+ },
+ {
+ "epoch": 5.894713848842289,
+ "grad_norm": 0.31936126947402954,
+ "learning_rate": 0.0006,
+ "loss": 5.081070899963379,
+ "step": 424
+ },
+ {
+ "epoch": 5.90869375273045,
+ "grad_norm": 0.3309082090854645,
+ "learning_rate": 0.0006,
+ "loss": 5.06803560256958,
+ "step": 425
+ },
+ {
+ "epoch": 5.922673656618611,
+ "grad_norm": 0.27830439805984497,
+ "learning_rate": 0.0006,
+ "loss": 5.044766426086426,
+ "step": 426
+ },
+ {
+ "epoch": 5.936653560506771,
+ "grad_norm": 0.3301011919975281,
+ "learning_rate": 0.0006,
+ "loss": 5.093942165374756,
+ "step": 427
+ },
+ {
+ "epoch": 5.950633464394932,
+ "grad_norm": 0.40845948457717896,
+ "learning_rate": 0.0006,
+ "loss": 5.0889458656311035,
+ "step": 428
+ },
+ {
+ "epoch": 5.964613368283093,
+ "grad_norm": 0.4412153959274292,
+ "learning_rate": 0.0006,
+ "loss": 5.064834117889404,
+ "step": 429
+ },
+ {
+ "epoch": 5.978593272171254,
+ "grad_norm": 0.3592590093612671,
+ "learning_rate": 0.0006,
+ "loss": 5.066648006439209,
+ "step": 430
+ },
+ {
+ "epoch": 5.992573176059414,
+ "grad_norm": 0.3952840268611908,
+ "learning_rate": 0.0006,
+ "loss": 5.066549301147461,
+ "step": 431
+ },
+ {
+ "epoch": 6.0,
+ "grad_norm": 0.38878682255744934,
+ "learning_rate": 0.0006,
+ "loss": 5.0354323387146,
+ "step": 432
+ },
+ {
+ "epoch": 6.0,
+ "eval_loss": 5.473907947540283,
+ "eval_runtime": 44.5121,
+ "eval_samples_per_second": 54.861,
+ "eval_steps_per_second": 3.437,
+ "step": 432
+ },
+ {
+ "epoch": 6.013979903888161,
+ "grad_norm": 0.42730140686035156,
+ "learning_rate": 0.0006,
+ "loss": 5.048557281494141,
+ "step": 433
+ },
+ {
+ "epoch": 6.0279598077763215,
+ "grad_norm": 0.32713913917541504,
+ "learning_rate": 0.0006,
+ "loss": 5.041255950927734,
+ "step": 434
+ },
+ {
+ "epoch": 6.041939711664482,
+ "grad_norm": 0.32520365715026855,
+ "learning_rate": 0.0006,
+ "loss": 5.043124198913574,
+ "step": 435
+ },
+ {
+ "epoch": 6.055919615552643,
+ "grad_norm": 0.2941839098930359,
+ "learning_rate": 0.0006,
+ "loss": 5.0407304763793945,
+ "step": 436
+ },
+ {
+ "epoch": 6.069899519440804,
+ "grad_norm": 0.3088819682598114,
+ "learning_rate": 0.0006,
+ "loss": 5.020771026611328,
+ "step": 437
+ },
+ {
+ "epoch": 6.083879423328964,
+ "grad_norm": 0.34334254264831543,
+ "learning_rate": 0.0006,
+ "loss": 5.0260009765625,
+ "step": 438
+ },
+ {
+ "epoch": 6.097859327217125,
+ "grad_norm": 0.33016136288642883,
+ "learning_rate": 0.0006,
+ "loss": 4.994412899017334,
+ "step": 439
+ },
+ {
+ "epoch": 6.111839231105286,
+ "grad_norm": 0.2527366280555725,
+ "learning_rate": 0.0006,
+ "loss": 4.997830390930176,
+ "step": 440
+ },
+ {
+ "epoch": 6.1258191349934465,
+ "grad_norm": 0.24742509424686432,
+ "learning_rate": 0.0006,
+ "loss": 5.017087936401367,
+ "step": 441
+ },
+ {
+ "epoch": 6.139799038881607,
+ "grad_norm": 0.22578303515911102,
+ "learning_rate": 0.0006,
+ "loss": 5.000683784484863,
+ "step": 442
+ },
+ {
+ "epoch": 6.153778942769769,
+ "grad_norm": 0.21213896572589874,
+ "learning_rate": 0.0006,
+ "loss": 4.993280410766602,
+ "step": 443
+ },
+ {
+ "epoch": 6.16775884665793,
+ "grad_norm": 0.22559592127799988,
+ "learning_rate": 0.0006,
+ "loss": 5.005735874176025,
+ "step": 444
+ },
+ {
+ "epoch": 6.18173875054609,
+ "grad_norm": 0.18574322760105133,
+ "learning_rate": 0.0006,
+ "loss": 4.996601104736328,
+ "step": 445
+ },
+ {
+ "epoch": 6.195718654434251,
+ "grad_norm": 0.1793852299451828,
+ "learning_rate": 0.0006,
+ "loss": 4.977394104003906,
+ "step": 446
+ },
+ {
+ "epoch": 6.209698558322412,
+ "grad_norm": 0.1851297914981842,
+ "learning_rate": 0.0006,
+ "loss": 4.983541488647461,
+ "step": 447
+ },
+ {
+ "epoch": 6.2236784622105725,
+ "grad_norm": 0.2045268565416336,
+ "learning_rate": 0.0006,
+ "loss": 4.992830276489258,
+ "step": 448
+ },
+ {
+ "epoch": 6.237658366098733,
+ "grad_norm": 0.21707463264465332,
+ "learning_rate": 0.0006,
+ "loss": 4.998589515686035,
+ "step": 449
+ },
+ {
+ "epoch": 6.251638269986894,
+ "grad_norm": 0.2805860638618469,
+ "learning_rate": 0.0006,
+ "loss": 4.973134517669678,
+ "step": 450
+ },
+ {
+ "epoch": 6.265618173875055,
+ "grad_norm": 0.33102089166641235,
+ "learning_rate": 0.0006,
+ "loss": 4.957348823547363,
+ "step": 451
+ },
+ {
+ "epoch": 6.279598077763215,
+ "grad_norm": 0.3763096034526825,
+ "learning_rate": 0.0006,
+ "loss": 5.0133256912231445,
+ "step": 452
+ },
+ {
+ "epoch": 6.293577981651376,
+ "grad_norm": 0.4676196575164795,
+ "learning_rate": 0.0006,
+ "loss": 4.972289562225342,
+ "step": 453
+ },
+ {
+ "epoch": 6.307557885539537,
+ "grad_norm": 0.6158978343009949,
+ "learning_rate": 0.0006,
+ "loss": 4.989326477050781,
+ "step": 454
+ },
+ {
+ "epoch": 6.321537789427698,
+ "grad_norm": 0.537460446357727,
+ "learning_rate": 0.0006,
+ "loss": 5.0210676193237305,
+ "step": 455
+ },
+ {
+ "epoch": 6.335517693315858,
+ "grad_norm": 0.5342532396316528,
+ "learning_rate": 0.0006,
+ "loss": 4.988524436950684,
+ "step": 456
+ },
+ {
+ "epoch": 6.349497597204019,
+ "grad_norm": 0.5736384987831116,
+ "learning_rate": 0.0006,
+ "loss": 4.977508068084717,
+ "step": 457
+ },
+ {
+ "epoch": 6.36347750109218,
+ "grad_norm": 0.6656201481819153,
+ "learning_rate": 0.0006,
+ "loss": 5.047934055328369,
+ "step": 458
+ },
+ {
+ "epoch": 6.3774574049803405,
+ "grad_norm": 0.6388342380523682,
+ "learning_rate": 0.0006,
+ "loss": 5.017617225646973,
+ "step": 459
+ },
+ {
+ "epoch": 6.391437308868501,
+ "grad_norm": 0.6620904207229614,
+ "learning_rate": 0.0006,
+ "loss": 5.032195091247559,
+ "step": 460
+ },
+ {
+ "epoch": 6.405417212756662,
+ "grad_norm": 0.693274974822998,
+ "learning_rate": 0.0006,
+ "loss": 5.02433967590332,
+ "step": 461
+ },
+ {
+ "epoch": 6.419397116644823,
+ "grad_norm": 0.6888924241065979,
+ "learning_rate": 0.0006,
+ "loss": 5.010735511779785,
+ "step": 462
+ },
+ {
+ "epoch": 6.433377020532983,
+ "grad_norm": 0.7181721925735474,
+ "learning_rate": 0.0006,
+ "loss": 5.049690246582031,
+ "step": 463
+ },
+ {
+ "epoch": 6.447356924421145,
+ "grad_norm": 0.7225117087364197,
+ "learning_rate": 0.0006,
+ "loss": 5.031939506530762,
+ "step": 464
+ },
+ {
+ "epoch": 6.461336828309306,
+ "grad_norm": 0.5268304347991943,
+ "learning_rate": 0.0006,
+ "loss": 5.01638126373291,
+ "step": 465
+ },
+ {
+ "epoch": 6.4753167321974665,
+ "grad_norm": 0.38218435645103455,
+ "learning_rate": 0.0006,
+ "loss": 4.997034072875977,
+ "step": 466
+ },
+ {
+ "epoch": 6.489296636085627,
+ "grad_norm": 0.3576396703720093,
+ "learning_rate": 0.0006,
+ "loss": 5.006804943084717,
+ "step": 467
+ },
+ {
+ "epoch": 6.503276539973788,
+ "grad_norm": 0.3305981755256653,
+ "learning_rate": 0.0006,
+ "loss": 4.994671821594238,
+ "step": 468
+ },
+ {
+ "epoch": 6.517256443861949,
+ "grad_norm": 0.3254900574684143,
+ "learning_rate": 0.0006,
+ "loss": 4.9747490882873535,
+ "step": 469
+ },
+ {
+ "epoch": 6.531236347750109,
+ "grad_norm": 0.2655033469200134,
+ "learning_rate": 0.0006,
+ "loss": 5.002863883972168,
+ "step": 470
+ },
+ {
+ "epoch": 6.54521625163827,
+ "grad_norm": 0.2620532810688019,
+ "learning_rate": 0.0006,
+ "loss": 4.9813337326049805,
+ "step": 471
+ },
+ {
+ "epoch": 6.559196155526431,
+ "grad_norm": 0.22128869593143463,
+ "learning_rate": 0.0006,
+ "loss": 4.978368759155273,
+ "step": 472
+ },
+ {
+ "epoch": 6.573176059414592,
+ "grad_norm": 0.22638699412345886,
+ "learning_rate": 0.0006,
+ "loss": 4.944509029388428,
+ "step": 473
+ },
+ {
+ "epoch": 6.587155963302752,
+ "grad_norm": 0.20720207691192627,
+ "learning_rate": 0.0006,
+ "loss": 4.98404598236084,
+ "step": 474
+ },
+ {
+ "epoch": 6.601135867190913,
+ "grad_norm": 0.21577289700508118,
+ "learning_rate": 0.0006,
+ "loss": 4.958878040313721,
+ "step": 475
+ },
+ {
+ "epoch": 6.615115771079074,
+ "grad_norm": 0.22453972697257996,
+ "learning_rate": 0.0006,
+ "loss": 4.935467720031738,
+ "step": 476
+ },
+ {
+ "epoch": 6.6290956749672345,
+ "grad_norm": 0.20757712423801422,
+ "learning_rate": 0.0006,
+ "loss": 4.943334579467773,
+ "step": 477
+ },
+ {
+ "epoch": 6.643075578855395,
+ "grad_norm": 0.22808043658733368,
+ "learning_rate": 0.0006,
+ "loss": 4.936544418334961,
+ "step": 478
+ },
+ {
+ "epoch": 6.657055482743556,
+ "grad_norm": 0.2193756401538849,
+ "learning_rate": 0.0006,
+ "loss": 4.938162326812744,
+ "step": 479
+ },
+ {
+ "epoch": 6.671035386631717,
+ "grad_norm": 0.19677500426769257,
+ "learning_rate": 0.0006,
+ "loss": 4.9026713371276855,
+ "step": 480
+ },
+ {
+ "epoch": 6.685015290519877,
+ "grad_norm": 0.17271658778190613,
+ "learning_rate": 0.0006,
+ "loss": 4.912519454956055,
+ "step": 481
+ },
+ {
+ "epoch": 6.698995194408038,
+ "grad_norm": 0.17551499605178833,
+ "learning_rate": 0.0006,
+ "loss": 4.929941177368164,
+ "step": 482
+ },
+ {
+ "epoch": 6.712975098296199,
+ "grad_norm": 0.1582687348127365,
+ "learning_rate": 0.0006,
+ "loss": 4.908967971801758,
+ "step": 483
+ },
+ {
+ "epoch": 6.72695500218436,
+ "grad_norm": 0.1593410074710846,
+ "learning_rate": 0.0006,
+ "loss": 4.901554107666016,
+ "step": 484
+ },
+ {
+ "epoch": 6.740934906072521,
+ "grad_norm": 0.16746895015239716,
+ "learning_rate": 0.0006,
+ "loss": 4.917915344238281,
+ "step": 485
+ },
+ {
+ "epoch": 6.754914809960681,
+ "grad_norm": 0.17066062986850739,
+ "learning_rate": 0.0006,
+ "loss": 4.912853240966797,
+ "step": 486
+ },
+ {
+ "epoch": 6.768894713848843,
+ "grad_norm": 0.16727769374847412,
+ "learning_rate": 0.0006,
+ "loss": 4.895434856414795,
+ "step": 487
+ },
+ {
+ "epoch": 6.782874617737003,
+ "grad_norm": 0.1784558743238449,
+ "learning_rate": 0.0006,
+ "loss": 4.8805341720581055,
+ "step": 488
+ },
+ {
+ "epoch": 6.796854521625164,
+ "grad_norm": 0.176686093211174,
+ "learning_rate": 0.0006,
+ "loss": 4.855296611785889,
+ "step": 489
+ },
+ {
+ "epoch": 6.810834425513325,
+ "grad_norm": 0.21577849984169006,
+ "learning_rate": 0.0006,
+ "loss": 4.885506629943848,
+ "step": 490
+ },
+ {
+ "epoch": 6.824814329401486,
+ "grad_norm": 0.27615776658058167,
+ "learning_rate": 0.0006,
+ "loss": 4.913756847381592,
+ "step": 491
+ },
+ {
+ "epoch": 6.838794233289646,
+ "grad_norm": 0.3653675615787506,
+ "learning_rate": 0.0006,
+ "loss": 4.880918979644775,
+ "step": 492
+ },
+ {
+ "epoch": 6.852774137177807,
+ "grad_norm": 0.41473883390426636,
+ "learning_rate": 0.0006,
+ "loss": 4.894164562225342,
+ "step": 493
+ },
+ {
+ "epoch": 6.866754041065968,
+ "grad_norm": 0.45850715041160583,
+ "learning_rate": 0.0006,
+ "loss": 4.907922744750977,
+ "step": 494
+ },
+ {
+ "epoch": 6.8807339449541285,
+ "grad_norm": 0.4675290882587433,
+ "learning_rate": 0.0006,
+ "loss": 4.883112907409668,
+ "step": 495
+ },
+ {
+ "epoch": 6.894713848842289,
+ "grad_norm": 0.45795994997024536,
+ "learning_rate": 0.0006,
+ "loss": 4.897843360900879,
+ "step": 496
+ },
+ {
+ "epoch": 6.90869375273045,
+ "grad_norm": 0.46130508184432983,
+ "learning_rate": 0.0006,
+ "loss": 4.890612602233887,
+ "step": 497
+ },
+ {
+ "epoch": 6.922673656618611,
+ "grad_norm": 0.44783803820610046,
+ "learning_rate": 0.0006,
+ "loss": 4.880192756652832,
+ "step": 498
+ },
+ {
+ "epoch": 6.936653560506771,
+ "grad_norm": 0.35361284017562866,
+ "learning_rate": 0.0006,
+ "loss": 4.840778350830078,
+ "step": 499
+ },
+ {
+ "epoch": 6.950633464394932,
+ "grad_norm": 0.34027689695358276,
+ "learning_rate": 0.0006,
+ "loss": 4.871222496032715,
+ "step": 500
+ },
+ {
+ "epoch": 6.964613368283093,
+ "grad_norm": 0.30228909850120544,
+ "learning_rate": 0.0006,
+ "loss": 4.868077278137207,
+ "step": 501
+ },
+ {
+ "epoch": 6.978593272171254,
+ "grad_norm": 0.27706998586654663,
+ "learning_rate": 0.0006,
+ "loss": 4.895936012268066,
+ "step": 502
+ },
+ {
+ "epoch": 6.992573176059414,
+ "grad_norm": 0.3516870439052582,
+ "learning_rate": 0.0006,
+ "loss": 4.824636459350586,
+ "step": 503
+ },
+ {
+ "epoch": 7.0,
+ "grad_norm": 0.36831387877464294,
+ "learning_rate": 0.0006,
+ "loss": 4.874397277832031,
+ "step": 504
+ },
+ {
+ "epoch": 7.0,
+ "eval_loss": 5.176281452178955,
+ "eval_runtime": 44.2386,
+ "eval_samples_per_second": 55.201,
+ "eval_steps_per_second": 3.459,
+ "step": 504
+ },
+ {
+ "epoch": 7.013979903888161,
+ "grad_norm": 0.4265240430831909,
+ "learning_rate": 0.0006,
+ "loss": 4.814333438873291,
+ "step": 505
+ },
+ {
+ "epoch": 7.0279598077763215,
+ "grad_norm": 0.5126975774765015,
+ "learning_rate": 0.0006,
+ "loss": 4.852343559265137,
+ "step": 506
+ },
+ {
+ "epoch": 7.041939711664482,
+ "grad_norm": 0.43080806732177734,
+ "learning_rate": 0.0006,
+ "loss": 4.843439102172852,
+ "step": 507
+ },
+ {
+ "epoch": 7.055919615552643,
+ "grad_norm": 0.43170198798179626,
+ "learning_rate": 0.0006,
+ "loss": 4.845984935760498,
+ "step": 508
+ },
+ {
+ "epoch": 7.069899519440804,
+ "grad_norm": 0.5640552043914795,
+ "learning_rate": 0.0006,
+ "loss": 4.840991973876953,
+ "step": 509
+ },
+ {
+ "epoch": 7.083879423328964,
+ "grad_norm": 0.540381133556366,
+ "learning_rate": 0.0006,
+ "loss": 4.801316738128662,
+ "step": 510
+ },
+ {
+ "epoch": 7.097859327217125,
+ "grad_norm": 0.5412097573280334,
+ "learning_rate": 0.0006,
+ "loss": 4.886598587036133,
+ "step": 511
+ },
+ {
+ "epoch": 7.111839231105286,
+ "grad_norm": 0.630648136138916,
+ "learning_rate": 0.0006,
+ "loss": 4.849774360656738,
+ "step": 512
+ },
+ {
+ "epoch": 7.1258191349934465,
+ "grad_norm": 0.569952130317688,
+ "learning_rate": 0.0006,
+ "loss": 4.870607376098633,
+ "step": 513
+ },
+ {
+ "epoch": 7.139799038881607,
+ "grad_norm": 0.42051541805267334,
+ "learning_rate": 0.0006,
+ "loss": 4.83833122253418,
+ "step": 514
+ },
+ {
+ "epoch": 7.153778942769769,
+ "grad_norm": 0.3930990397930145,
+ "learning_rate": 0.0006,
+ "loss": 4.853984355926514,
+ "step": 515
+ },
+ {
+ "epoch": 7.16775884665793,
+ "grad_norm": 0.512886106967926,
+ "learning_rate": 0.0006,
+ "loss": 4.815458297729492,
+ "step": 516
+ },
+ {
+ "epoch": 7.18173875054609,
+ "grad_norm": 0.42580172419548035,
+ "learning_rate": 0.0006,
+ "loss": 4.825312614440918,
+ "step": 517
+ },
+ {
+ "epoch": 7.195718654434251,
+ "grad_norm": 0.31628182530403137,
+ "learning_rate": 0.0006,
+ "loss": 4.806377410888672,
+ "step": 518
+ },
+ {
+ "epoch": 7.209698558322412,
+ "grad_norm": 0.3109956681728363,
+ "learning_rate": 0.0006,
+ "loss": 4.819339752197266,
+ "step": 519
+ },
+ {
+ "epoch": 7.2236784622105725,
+ "grad_norm": 0.2740071415901184,
+ "learning_rate": 0.0006,
+ "loss": 4.81319522857666,
+ "step": 520
+ },
+ {
+ "epoch": 7.237658366098733,
+ "grad_norm": 0.26441165804862976,
+ "learning_rate": 0.0006,
+ "loss": 4.8107380867004395,
+ "step": 521
+ },
+ {
+ "epoch": 7.251638269986894,
+ "grad_norm": 0.2496110051870346,
+ "learning_rate": 0.0006,
+ "loss": 4.785193920135498,
+ "step": 522
+ },
+ {
+ "epoch": 7.265618173875055,
+ "grad_norm": 0.2565560042858124,
+ "learning_rate": 0.0006,
+ "loss": 4.802750587463379,
+ "step": 523
+ },
+ {
+ "epoch": 7.279598077763215,
+ "grad_norm": 0.2126980572938919,
+ "learning_rate": 0.0006,
+ "loss": 4.763580322265625,
+ "step": 524
+ },
+ {
+ "epoch": 7.293577981651376,
+ "grad_norm": 0.2169921100139618,
+ "learning_rate": 0.0006,
+ "loss": 4.756124973297119,
+ "step": 525
+ },
+ {
+ "epoch": 7.307557885539537,
+ "grad_norm": 0.2372167706489563,
+ "learning_rate": 0.0006,
+ "loss": 4.786888599395752,
+ "step": 526
+ },
+ {
+ "epoch": 7.321537789427698,
+ "grad_norm": 0.2124386429786682,
+ "learning_rate": 0.0006,
+ "loss": 4.777996063232422,
+ "step": 527
+ },
+ {
+ "epoch": 7.335517693315858,
+ "grad_norm": 0.18585442006587982,
+ "learning_rate": 0.0006,
+ "loss": 4.770537853240967,
+ "step": 528
+ },
+ {
+ "epoch": 7.349497597204019,
+ "grad_norm": 0.20515340566635132,
+ "learning_rate": 0.0006,
+ "loss": 4.769230842590332,
+ "step": 529
+ },
+ {
+ "epoch": 7.36347750109218,
+ "grad_norm": 0.19906704127788544,
+ "learning_rate": 0.0006,
+ "loss": 4.752581596374512,
+ "step": 530
+ },
+ {
+ "epoch": 7.3774574049803405,
+ "grad_norm": 0.2030428946018219,
+ "learning_rate": 0.0006,
+ "loss": 4.7353715896606445,
+ "step": 531
+ },
+ {
+ "epoch": 7.391437308868501,
+ "grad_norm": 0.17820630967617035,
+ "learning_rate": 0.0006,
+ "loss": 4.742705345153809,
+ "step": 532
+ },
+ {
+ "epoch": 7.405417212756662,
+ "grad_norm": 0.17642682790756226,
+ "learning_rate": 0.0006,
+ "loss": 4.752669334411621,
+ "step": 533
+ },
+ {
+ "epoch": 7.419397116644823,
+ "grad_norm": 0.18088409304618835,
+ "learning_rate": 0.0006,
+ "loss": 4.734611511230469,
+ "step": 534
+ },
+ {
+ "epoch": 7.433377020532983,
+ "grad_norm": 0.20897020399570465,
+ "learning_rate": 0.0006,
+ "loss": 4.756442070007324,
+ "step": 535
+ },
+ {
+ "epoch": 7.447356924421145,
+ "grad_norm": 0.23166777193546295,
+ "learning_rate": 0.0006,
+ "loss": 4.712922096252441,
+ "step": 536
+ },
+ {
+ "epoch": 7.461336828309306,
+ "grad_norm": 0.2205347716808319,
+ "learning_rate": 0.0006,
+ "loss": 4.75001335144043,
+ "step": 537
+ },
+ {
+ "epoch": 7.4753167321974665,
+ "grad_norm": 0.23868022859096527,
+ "learning_rate": 0.0006,
+ "loss": 4.726134300231934,
+ "step": 538
+ },
+ {
+ "epoch": 7.489296636085627,
+ "grad_norm": 0.2861441373825073,
+ "learning_rate": 0.0006,
+ "loss": 4.754112243652344,
+ "step": 539
+ },
+ {
+ "epoch": 7.503276539973788,
+ "grad_norm": 0.28980305790901184,
+ "learning_rate": 0.0006,
+ "loss": 4.716021537780762,
+ "step": 540
+ },
+ {
+ "epoch": 7.517256443861949,
+ "grad_norm": 0.2784835696220398,
+ "learning_rate": 0.0006,
+ "loss": 4.713929176330566,
+ "step": 541
+ },
+ {
+ "epoch": 7.531236347750109,
+ "grad_norm": 0.2962653934955597,
+ "learning_rate": 0.0006,
+ "loss": 4.711845397949219,
+ "step": 542
+ },
+ {
+ "epoch": 7.54521625163827,
+ "grad_norm": 0.3333161175251007,
+ "learning_rate": 0.0006,
+ "loss": 4.709834575653076,
+ "step": 543
+ },
+ {
+ "epoch": 7.559196155526431,
+ "grad_norm": 0.35304850339889526,
+ "learning_rate": 0.0006,
+ "loss": 4.732914924621582,
+ "step": 544
+ },
+ {
+ "epoch": 7.573176059414592,
+ "grad_norm": 0.4165869355201721,
+ "learning_rate": 0.0006,
+ "loss": 4.716190338134766,
+ "step": 545
+ },
+ {
+ "epoch": 7.587155963302752,
+ "grad_norm": 0.4878059923648834,
+ "learning_rate": 0.0006,
+ "loss": 4.723773002624512,
+ "step": 546
+ },
+ {
+ "epoch": 7.601135867190913,
+ "grad_norm": 0.36643707752227783,
+ "learning_rate": 0.0006,
+ "loss": 4.721458911895752,
+ "step": 547
+ },
+ {
+ "epoch": 7.615115771079074,
+ "grad_norm": 0.4046908915042877,
+ "learning_rate": 0.0006,
+ "loss": 4.715397834777832,
+ "step": 548
+ },
+ {
+ "epoch": 7.6290956749672345,
+ "grad_norm": 0.44426342844963074,
+ "learning_rate": 0.0006,
+ "loss": 4.737357139587402,
+ "step": 549
+ },
+ {
+ "epoch": 7.643075578855395,
+ "grad_norm": 0.4181079864501953,
+ "learning_rate": 0.0006,
+ "loss": 4.731383800506592,
+ "step": 550
+ },
+ {
+ "epoch": 7.657055482743556,
+ "grad_norm": 0.3486088216304779,
+ "learning_rate": 0.0006,
+ "loss": 4.728029727935791,
+ "step": 551
+ },
+ {
+ "epoch": 7.671035386631717,
+ "grad_norm": 0.37150970101356506,
+ "learning_rate": 0.0006,
+ "loss": 4.7083210945129395,
+ "step": 552
+ },
+ {
+ "epoch": 7.685015290519877,
+ "grad_norm": 0.43324410915374756,
+ "learning_rate": 0.0006,
+ "loss": 4.728720664978027,
+ "step": 553
+ },
+ {
+ "epoch": 7.698995194408038,
+ "grad_norm": 0.5026620626449585,
+ "learning_rate": 0.0006,
+ "loss": 4.698156356811523,
+ "step": 554
+ },
+ {
+ "epoch": 7.712975098296199,
+ "grad_norm": 0.4873499274253845,
+ "learning_rate": 0.0006,
+ "loss": 4.7169952392578125,
+ "step": 555
+ },
+ {
+ "epoch": 7.72695500218436,
+ "grad_norm": 0.4285493791103363,
+ "learning_rate": 0.0006,
+ "loss": 4.6877241134643555,
+ "step": 556
+ },
+ {
+ "epoch": 7.740934906072521,
+ "grad_norm": 0.5179854035377502,
+ "learning_rate": 0.0006,
+ "loss": 4.704267501831055,
+ "step": 557
+ },
+ {
+ "epoch": 7.754914809960681,
+ "grad_norm": 0.4642147421836853,
+ "learning_rate": 0.0006,
+ "loss": 4.695004463195801,
+ "step": 558
+ },
+ {
+ "epoch": 7.768894713848843,
+ "grad_norm": 0.47149503231048584,
+ "learning_rate": 0.0006,
+ "loss": 4.694338798522949,
+ "step": 559
+ },
+ {
+ "epoch": 7.782874617737003,
+ "grad_norm": 0.5422149300575256,
+ "learning_rate": 0.0006,
+ "loss": 4.749478340148926,
+ "step": 560
+ },
+ {
+ "epoch": 7.796854521625164,
+ "grad_norm": 0.4360728859901428,
+ "learning_rate": 0.0006,
+ "loss": 4.685191631317139,
+ "step": 561
+ },
+ {
+ "epoch": 7.810834425513325,
+ "grad_norm": 0.4243801534175873,
+ "learning_rate": 0.0006,
+ "loss": 4.69228458404541,
+ "step": 562
+ },
+ {
+ "epoch": 7.824814329401486,
+ "grad_norm": 0.40380290150642395,
+ "learning_rate": 0.0006,
+ "loss": 4.690923690795898,
+ "step": 563
+ },
+ {
+ "epoch": 7.838794233289646,
+ "grad_norm": 0.4352976381778717,
+ "learning_rate": 0.0006,
+ "loss": 4.720489978790283,
+ "step": 564
+ },
+ {
+ "epoch": 7.852774137177807,
+ "grad_norm": 0.44634920358657837,
+ "learning_rate": 0.0006,
+ "loss": 4.683789253234863,
+ "step": 565
+ },
+ {
+ "epoch": 7.866754041065968,
+ "grad_norm": 0.3818186819553375,
+ "learning_rate": 0.0006,
+ "loss": 4.696887016296387,
+ "step": 566
+ },
+ {
+ "epoch": 7.8807339449541285,
+ "grad_norm": 0.35270464420318604,
+ "learning_rate": 0.0006,
+ "loss": 4.715676307678223,
+ "step": 567
+ },
+ {
+ "epoch": 7.894713848842289,
+ "grad_norm": 0.249756321310997,
+ "learning_rate": 0.0006,
+ "loss": 4.672721862792969,
+ "step": 568
+ },
+ {
+ "epoch": 7.90869375273045,
+ "grad_norm": 0.25097888708114624,
+ "learning_rate": 0.0006,
+ "loss": 4.663518905639648,
+ "step": 569
+ },
+ {
+ "epoch": 7.922673656618611,
+ "grad_norm": 0.26563209295272827,
+ "learning_rate": 0.0006,
+ "loss": 4.675405025482178,
+ "step": 570
+ },
+ {
+ "epoch": 7.936653560506771,
+ "grad_norm": 0.26451292634010315,
+ "learning_rate": 0.0006,
+ "loss": 4.651235103607178,
+ "step": 571
+ },
+ {
+ "epoch": 7.950633464394932,
+ "grad_norm": 0.24185842275619507,
+ "learning_rate": 0.0006,
+ "loss": 4.671639919281006,
+ "step": 572
+ },
+ {
+ "epoch": 7.964613368283093,
+ "grad_norm": 0.21506108343601227,
+ "learning_rate": 0.0006,
+ "loss": 4.665352821350098,
+ "step": 573
+ },
+ {
+ "epoch": 7.978593272171254,
+ "grad_norm": 0.24365705251693726,
+ "learning_rate": 0.0006,
+ "loss": 4.663162708282471,
+ "step": 574
+ },
+ {
+ "epoch": 7.992573176059414,
+ "grad_norm": 0.24251042306423187,
+ "learning_rate": 0.0006,
+ "loss": 4.666633605957031,
+ "step": 575
+ },
+ {
+ "epoch": 8.0,
+ "grad_norm": 0.24187657237052917,
+ "learning_rate": 0.0006,
+ "loss": 4.63957405090332,
+ "step": 576
+ },
+ {
+ "epoch": 8.0,
+ "eval_loss": 4.923156261444092,
+ "eval_runtime": 44.1587,
+ "eval_samples_per_second": 55.301,
+ "eval_steps_per_second": 3.465,
+ "step": 576
+ },
+ {
+ "epoch": 8.013979903888162,
+ "grad_norm": 0.21323645114898682,
+ "learning_rate": 0.0006,
+ "loss": 4.636347770690918,
+ "step": 577
+ },
+ {
+ "epoch": 8.027959807776321,
+ "grad_norm": 0.2325759083032608,
+ "learning_rate": 0.0006,
+ "loss": 4.60684871673584,
+ "step": 578
+ },
+ {
+ "epoch": 8.041939711664483,
+ "grad_norm": 0.26741257309913635,
+ "learning_rate": 0.0006,
+ "loss": 4.647780418395996,
+ "step": 579
+ },
+ {
+ "epoch": 8.055919615552643,
+ "grad_norm": 0.285720556974411,
+ "learning_rate": 0.0006,
+ "loss": 4.629637718200684,
+ "step": 580
+ },
+ {
+ "epoch": 8.069899519440805,
+ "grad_norm": 0.2453618347644806,
+ "learning_rate": 0.0006,
+ "loss": 4.62420654296875,
+ "step": 581
+ },
+ {
+ "epoch": 8.083879423328964,
+ "grad_norm": 0.19662636518478394,
+ "learning_rate": 0.0006,
+ "loss": 4.593767166137695,
+ "step": 582
+ },
+ {
+ "epoch": 8.097859327217126,
+ "grad_norm": 0.22731931507587433,
+ "learning_rate": 0.0006,
+ "loss": 4.627089023590088,
+ "step": 583
+ },
+ {
+ "epoch": 8.111839231105286,
+ "grad_norm": 0.24452590942382812,
+ "learning_rate": 0.0006,
+ "loss": 4.613677024841309,
+ "step": 584
+ },
+ {
+ "epoch": 8.125819134993447,
+ "grad_norm": 0.2952791154384613,
+ "learning_rate": 0.0006,
+ "loss": 4.604985237121582,
+ "step": 585
+ },
+ {
+ "epoch": 8.139799038881607,
+ "grad_norm": 0.3184696137905121,
+ "learning_rate": 0.0006,
+ "loss": 4.589205741882324,
+ "step": 586
+ },
+ {
+ "epoch": 8.153778942769769,
+ "grad_norm": 0.2948093116283417,
+ "learning_rate": 0.0006,
+ "loss": 4.605442047119141,
+ "step": 587
+ },
+ {
+ "epoch": 8.167758846657929,
+ "grad_norm": 0.2450508326292038,
+ "learning_rate": 0.0006,
+ "loss": 4.615349292755127,
+ "step": 588
+ },
+ {
+ "epoch": 8.18173875054609,
+ "grad_norm": 0.25664836168289185,
+ "learning_rate": 0.0006,
+ "loss": 4.592251777648926,
+ "step": 589
+ },
+ {
+ "epoch": 8.19571865443425,
+ "grad_norm": 0.24479512870311737,
+ "learning_rate": 0.0006,
+ "loss": 4.6145920753479,
+ "step": 590
+ },
+ {
+ "epoch": 8.209698558322412,
+ "grad_norm": 0.24395205080509186,
+ "learning_rate": 0.0006,
+ "loss": 4.600954055786133,
+ "step": 591
+ },
+ {
+ "epoch": 8.223678462210572,
+ "grad_norm": 0.21804189682006836,
+ "learning_rate": 0.0006,
+ "loss": 4.607785224914551,
+ "step": 592
+ },
+ {
+ "epoch": 8.237658366098733,
+ "grad_norm": 0.20951785147190094,
+ "learning_rate": 0.0006,
+ "loss": 4.58140754699707,
+ "step": 593
+ },
+ {
+ "epoch": 8.251638269986893,
+ "grad_norm": 0.20415149629116058,
+ "learning_rate": 0.0006,
+ "loss": 4.593405723571777,
+ "step": 594
+ },
+ {
+ "epoch": 8.265618173875055,
+ "grad_norm": 0.19210249185562134,
+ "learning_rate": 0.0006,
+ "loss": 4.603294372558594,
+ "step": 595
+ },
+ {
+ "epoch": 8.279598077763215,
+ "grad_norm": 0.20719751715660095,
+ "learning_rate": 0.0006,
+ "loss": 4.55255651473999,
+ "step": 596
+ },
+ {
+ "epoch": 8.293577981651376,
+ "grad_norm": 0.20101022720336914,
+ "learning_rate": 0.0006,
+ "loss": 4.5928192138671875,
+ "step": 597
+ },
+ {
+ "epoch": 8.307557885539538,
+ "grad_norm": 0.19254222512245178,
+ "learning_rate": 0.0006,
+ "loss": 4.590397834777832,
+ "step": 598
+ },
+ {
+ "epoch": 8.321537789427698,
+ "grad_norm": 0.23234105110168457,
+ "learning_rate": 0.0006,
+ "loss": 4.5987677574157715,
+ "step": 599
+ },
+ {
+ "epoch": 8.33551769331586,
+ "grad_norm": 0.2537451982498169,
+ "learning_rate": 0.0006,
+ "loss": 4.543115615844727,
+ "step": 600
+ },
+ {
+ "epoch": 8.349497597204019,
+ "grad_norm": 0.29171040654182434,
+ "learning_rate": 0.0006,
+ "loss": 4.597387313842773,
+ "step": 601
+ },
+ {
+ "epoch": 8.36347750109218,
+ "grad_norm": 0.3035930097103119,
+ "learning_rate": 0.0006,
+ "loss": 4.566247463226318,
+ "step": 602
+ },
+ {
+ "epoch": 8.37745740498034,
+ "grad_norm": 0.2826756238937378,
+ "learning_rate": 0.0006,
+ "loss": 4.57047176361084,
+ "step": 603
+ },
+ {
+ "epoch": 8.391437308868502,
+ "grad_norm": 0.2959657609462738,
+ "learning_rate": 0.0006,
+ "loss": 4.582820892333984,
+ "step": 604
+ },
+ {
+ "epoch": 8.405417212756662,
+ "grad_norm": 0.3180356025695801,
+ "learning_rate": 0.0006,
+ "loss": 4.5573272705078125,
+ "step": 605
+ },
+ {
+ "epoch": 8.419397116644824,
+ "grad_norm": 0.3617221713066101,
+ "learning_rate": 0.0006,
+ "loss": 4.593079090118408,
+ "step": 606
+ },
+ {
+ "epoch": 8.433377020532983,
+ "grad_norm": 0.35198062658309937,
+ "learning_rate": 0.0006,
+ "loss": 4.615298271179199,
+ "step": 607
+ },
+ {
+ "epoch": 8.447356924421145,
+ "grad_norm": 0.3944903314113617,
+ "learning_rate": 0.0006,
+ "loss": 4.561809539794922,
+ "step": 608
+ },
+ {
+ "epoch": 8.461336828309305,
+ "grad_norm": 0.4525868594646454,
+ "learning_rate": 0.0006,
+ "loss": 4.613105773925781,
+ "step": 609
+ },
+ {
+ "epoch": 8.475316732197467,
+ "grad_norm": 0.4915139079093933,
+ "learning_rate": 0.0006,
+ "loss": 4.566202163696289,
+ "step": 610
+ },
+ {
+ "epoch": 8.489296636085626,
+ "grad_norm": 0.49231988191604614,
+ "learning_rate": 0.0006,
+ "loss": 4.556222915649414,
+ "step": 611
+ },
+ {
+ "epoch": 8.503276539973788,
+ "grad_norm": 0.43036946654319763,
+ "learning_rate": 0.0006,
+ "loss": 4.55517578125,
+ "step": 612
+ },
+ {
+ "epoch": 8.517256443861948,
+ "grad_norm": 0.42405328154563904,
+ "learning_rate": 0.0006,
+ "loss": 4.574039936065674,
+ "step": 613
+ },
+ {
+ "epoch": 8.53123634775011,
+ "grad_norm": 0.3955961763858795,
+ "learning_rate": 0.0006,
+ "loss": 4.6082611083984375,
+ "step": 614
+ },
+ {
+ "epoch": 8.54521625163827,
+ "grad_norm": 0.4377101957798004,
+ "learning_rate": 0.0006,
+ "loss": 4.555740833282471,
+ "step": 615
+ },
+ {
+ "epoch": 8.55919615552643,
+ "grad_norm": 0.4601984918117523,
+ "learning_rate": 0.0006,
+ "loss": 4.553995132446289,
+ "step": 616
+ },
+ {
+ "epoch": 8.57317605941459,
+ "grad_norm": 0.42025700211524963,
+ "learning_rate": 0.0006,
+ "loss": 4.567340850830078,
+ "step": 617
+ },
+ {
+ "epoch": 8.587155963302752,
+ "grad_norm": 0.35569432377815247,
+ "learning_rate": 0.0006,
+ "loss": 4.570140361785889,
+ "step": 618
+ },
+ {
+ "epoch": 8.601135867190912,
+ "grad_norm": 0.37940406799316406,
+ "learning_rate": 0.0006,
+ "loss": 4.581291198730469,
+ "step": 619
+ },
+ {
+ "epoch": 8.615115771079074,
+ "grad_norm": 0.3658490777015686,
+ "learning_rate": 0.0006,
+ "loss": 4.55476188659668,
+ "step": 620
+ },
+ {
+ "epoch": 8.629095674967235,
+ "grad_norm": 0.2908247113227844,
+ "learning_rate": 0.0006,
+ "loss": 4.564087867736816,
+ "step": 621
+ },
+ {
+ "epoch": 8.643075578855395,
+ "grad_norm": 0.29961925745010376,
+ "learning_rate": 0.0006,
+ "loss": 4.556543350219727,
+ "step": 622
+ },
+ {
+ "epoch": 8.657055482743557,
+ "grad_norm": 0.3144846558570862,
+ "learning_rate": 0.0006,
+ "loss": 4.553670883178711,
+ "step": 623
+ },
+ {
+ "epoch": 8.671035386631717,
+ "grad_norm": 0.2845900356769562,
+ "learning_rate": 0.0006,
+ "loss": 4.567296981811523,
+ "step": 624
+ },
+ {
+ "epoch": 8.685015290519878,
+ "grad_norm": 0.253591388463974,
+ "learning_rate": 0.0006,
+ "loss": 4.554507255554199,
+ "step": 625
+ },
+ {
+ "epoch": 8.698995194408038,
+ "grad_norm": 0.2563088536262512,
+ "learning_rate": 0.0006,
+ "loss": 4.542218208312988,
+ "step": 626
+ },
+ {
+ "epoch": 8.7129750982962,
+ "grad_norm": 0.26058217883110046,
+ "learning_rate": 0.0006,
+ "loss": 4.535512447357178,
+ "step": 627
+ },
+ {
+ "epoch": 8.72695500218436,
+ "grad_norm": 0.20749829709529877,
+ "learning_rate": 0.0006,
+ "loss": 4.516959190368652,
+ "step": 628
+ },
+ {
+ "epoch": 8.740934906072521,
+ "grad_norm": 0.2034810334444046,
+ "learning_rate": 0.0006,
+ "loss": 4.55794095993042,
+ "step": 629
+ },
+ {
+ "epoch": 8.754914809960681,
+ "grad_norm": 0.18418121337890625,
+ "learning_rate": 0.0006,
+ "loss": 4.5421247482299805,
+ "step": 630
+ },
+ {
+ "epoch": 8.768894713848843,
+ "grad_norm": 0.20551933348178864,
+ "learning_rate": 0.0006,
+ "loss": 4.50805139541626,
+ "step": 631
+ },
+ {
+ "epoch": 8.782874617737003,
+ "grad_norm": 0.21615999937057495,
+ "learning_rate": 0.0006,
+ "loss": 4.520708084106445,
+ "step": 632
+ },
+ {
+ "epoch": 8.796854521625164,
+ "grad_norm": 0.24864810705184937,
+ "learning_rate": 0.0006,
+ "loss": 4.509330749511719,
+ "step": 633
+ },
+ {
+ "epoch": 8.810834425513324,
+ "grad_norm": 0.2573665380477905,
+ "learning_rate": 0.0006,
+ "loss": 4.531505584716797,
+ "step": 634
+ },
+ {
+ "epoch": 8.824814329401486,
+ "grad_norm": 0.22452878952026367,
+ "learning_rate": 0.0006,
+ "loss": 4.529216289520264,
+ "step": 635
+ },
+ {
+ "epoch": 8.838794233289645,
+ "grad_norm": 0.19727355241775513,
+ "learning_rate": 0.0006,
+ "loss": 4.519906520843506,
+ "step": 636
+ },
+ {
+ "epoch": 8.852774137177807,
+ "grad_norm": 0.19937913119792938,
+ "learning_rate": 0.0006,
+ "loss": 4.536892414093018,
+ "step": 637
+ },
+ {
+ "epoch": 8.866754041065967,
+ "grad_norm": 0.2070389986038208,
+ "learning_rate": 0.0006,
+ "loss": 4.51191520690918,
+ "step": 638
+ },
+ {
+ "epoch": 8.880733944954128,
+ "grad_norm": 0.2293873429298401,
+ "learning_rate": 0.0006,
+ "loss": 4.505377769470215,
+ "step": 639
+ },
+ {
+ "epoch": 8.89471384884229,
+ "grad_norm": 0.21285250782966614,
+ "learning_rate": 0.0006,
+ "loss": 4.5138959884643555,
+ "step": 640
+ },
+ {
+ "epoch": 8.90869375273045,
+ "grad_norm": 0.19487562775611877,
+ "learning_rate": 0.0006,
+ "loss": 4.506108283996582,
+ "step": 641
+ },
+ {
+ "epoch": 8.922673656618612,
+ "grad_norm": 0.21986965835094452,
+ "learning_rate": 0.0006,
+ "loss": 4.506397247314453,
+ "step": 642
+ },
+ {
+ "epoch": 8.936653560506771,
+ "grad_norm": 0.20763885974884033,
+ "learning_rate": 0.0006,
+ "loss": 4.508007049560547,
+ "step": 643
+ },
+ {
+ "epoch": 8.950633464394933,
+ "grad_norm": 0.22858479619026184,
+ "learning_rate": 0.0006,
+ "loss": 4.520846366882324,
+ "step": 644
+ },
+ {
+ "epoch": 8.964613368283093,
+ "grad_norm": 0.23923712968826294,
+ "learning_rate": 0.0006,
+ "loss": 4.535306930541992,
+ "step": 645
+ },
+ {
+ "epoch": 8.978593272171254,
+ "grad_norm": 0.23717579245567322,
+ "learning_rate": 0.0006,
+ "loss": 4.485929489135742,
+ "step": 646
+ },
+ {
+ "epoch": 8.992573176059414,
+ "grad_norm": 0.24033977091312408,
+ "learning_rate": 0.0006,
+ "loss": 4.508999824523926,
+ "step": 647
+ },
+ {
+ "epoch": 9.0,
+ "grad_norm": 0.22432062029838562,
+ "learning_rate": 0.0006,
+ "loss": 4.473136901855469,
+ "step": 648
+ },
+ {
+ "epoch": 9.0,
+ "eval_loss": 4.735903263092041,
+ "eval_runtime": 44.2163,
+ "eval_samples_per_second": 55.228,
+ "eval_steps_per_second": 3.46,
+ "step": 648
+ },
+ {
+ "epoch": 9.013979903888162,
+ "grad_norm": 0.22491489350795746,
+ "learning_rate": 0.0006,
+ "loss": 4.468614101409912,
+ "step": 649
+ },
+ {
+ "epoch": 9.027959807776321,
+ "grad_norm": 0.255759060382843,
+ "learning_rate": 0.0006,
+ "loss": 4.516196250915527,
+ "step": 650
+ },
+ {
+ "epoch": 9.041939711664483,
+ "grad_norm": 0.2591100335121155,
+ "learning_rate": 0.0006,
+ "loss": 4.478276252746582,
+ "step": 651
+ },
+ {
+ "epoch": 9.055919615552643,
+ "grad_norm": 0.30472296476364136,
+ "learning_rate": 0.0006,
+ "loss": 4.479726791381836,
+ "step": 652
+ },
+ {
+ "epoch": 9.069899519440805,
+ "grad_norm": 0.2840559780597687,
+ "learning_rate": 0.0006,
+ "loss": 4.4437384605407715,
+ "step": 653
+ },
+ {
+ "epoch": 9.083879423328964,
+ "grad_norm": 0.2695577144622803,
+ "learning_rate": 0.0006,
+ "loss": 4.476065635681152,
+ "step": 654
+ },
+ {
+ "epoch": 9.097859327217126,
+ "grad_norm": 0.27912381291389465,
+ "learning_rate": 0.0006,
+ "loss": 4.484747409820557,
+ "step": 655
+ },
+ {
+ "epoch": 9.111839231105286,
+ "grad_norm": 0.3091907501220703,
+ "learning_rate": 0.0006,
+ "loss": 4.449443817138672,
+ "step": 656
+ },
+ {
+ "epoch": 9.125819134993447,
+ "grad_norm": 0.30756646394729614,
+ "learning_rate": 0.0006,
+ "loss": 4.496490001678467,
+ "step": 657
+ },
+ {
+ "epoch": 9.139799038881607,
+ "grad_norm": 0.305698037147522,
+ "learning_rate": 0.0006,
+ "loss": 4.466765880584717,
+ "step": 658
+ },
+ {
+ "epoch": 9.153778942769769,
+ "grad_norm": 0.3031201660633087,
+ "learning_rate": 0.0006,
+ "loss": 4.462430953979492,
+ "step": 659
+ },
+ {
+ "epoch": 9.167758846657929,
+ "grad_norm": 0.32725608348846436,
+ "learning_rate": 0.0006,
+ "loss": 4.479879379272461,
+ "step": 660
+ },
+ {
+ "epoch": 9.18173875054609,
+ "grad_norm": 0.31773585081100464,
+ "learning_rate": 0.0006,
+ "loss": 4.473912239074707,
+ "step": 661
+ },
+ {
+ "epoch": 9.19571865443425,
+ "grad_norm": 0.30025365948677063,
+ "learning_rate": 0.0006,
+ "loss": 4.476703643798828,
+ "step": 662
+ },
+ {
+ "epoch": 9.209698558322412,
+ "grad_norm": 0.3177371025085449,
+ "learning_rate": 0.0006,
+ "loss": 4.439765930175781,
+ "step": 663
+ },
+ {
+ "epoch": 9.223678462210572,
+ "grad_norm": 0.3060745894908905,
+ "learning_rate": 0.0006,
+ "loss": 4.487849235534668,
+ "step": 664
+ },
+ {
+ "epoch": 9.237658366098733,
+ "grad_norm": 0.33287373185157776,
+ "learning_rate": 0.0006,
+ "loss": 4.443496227264404,
+ "step": 665
+ },
+ {
+ "epoch": 9.251638269986893,
+ "grad_norm": 0.3758000433444977,
+ "learning_rate": 0.0006,
+ "loss": 4.478017330169678,
+ "step": 666
+ },
+ {
+ "epoch": 9.265618173875055,
+ "grad_norm": 0.32124510407447815,
+ "learning_rate": 0.0006,
+ "loss": 4.4092206954956055,
+ "step": 667
+ },
+ {
+ "epoch": 9.279598077763215,
+ "grad_norm": 0.2786794602870941,
+ "learning_rate": 0.0006,
+ "loss": 4.432734489440918,
+ "step": 668
+ },
+ {
+ "epoch": 9.293577981651376,
+ "grad_norm": 0.35042962431907654,
+ "learning_rate": 0.0006,
+ "loss": 4.462737083435059,
+ "step": 669
+ },
+ {
+ "epoch": 9.307557885539538,
+ "grad_norm": 0.4080469310283661,
+ "learning_rate": 0.0006,
+ "loss": 4.429462432861328,
+ "step": 670
+ },
+ {
+ "epoch": 9.321537789427698,
+ "grad_norm": 0.465158075094223,
+ "learning_rate": 0.0006,
+ "loss": 4.465776443481445,
+ "step": 671
+ },
+ {
+ "epoch": 9.33551769331586,
+ "grad_norm": 0.44833582639694214,
+ "learning_rate": 0.0006,
+ "loss": 4.454195976257324,
+ "step": 672
+ },
+ {
+ "epoch": 9.349497597204019,
+ "grad_norm": 0.451052188873291,
+ "learning_rate": 0.0006,
+ "loss": 4.456139087677002,
+ "step": 673
+ },
+ {
+ "epoch": 9.36347750109218,
+ "grad_norm": 0.3759656250476837,
+ "learning_rate": 0.0006,
+ "loss": 4.461119651794434,
+ "step": 674
+ },
+ {
+ "epoch": 9.37745740498034,
+ "grad_norm": 0.514560341835022,
+ "learning_rate": 0.0006,
+ "loss": 4.49595832824707,
+ "step": 675
+ },
+ {
+ "epoch": 9.391437308868502,
+ "grad_norm": 0.5650647282600403,
+ "learning_rate": 0.0006,
+ "loss": 4.461362838745117,
+ "step": 676
+ },
+ {
+ "epoch": 9.405417212756662,
+ "grad_norm": 0.4218835234642029,
+ "learning_rate": 0.0006,
+ "loss": 4.469146728515625,
+ "step": 677
+ },
+ {
+ "epoch": 9.419397116644824,
+ "grad_norm": 0.4169512689113617,
+ "learning_rate": 0.0006,
+ "loss": 4.470132827758789,
+ "step": 678
+ },
+ {
+ "epoch": 9.433377020532983,
+ "grad_norm": 0.3772219717502594,
+ "learning_rate": 0.0006,
+ "loss": 4.4742608070373535,
+ "step": 679
+ },
+ {
+ "epoch": 9.447356924421145,
+ "grad_norm": 0.35755908489227295,
+ "learning_rate": 0.0006,
+ "loss": 4.461928367614746,
+ "step": 680
+ },
+ {
+ "epoch": 9.461336828309305,
+ "grad_norm": 0.3141227662563324,
+ "learning_rate": 0.0006,
+ "loss": 4.491983413696289,
+ "step": 681
+ },
+ {
+ "epoch": 9.475316732197467,
+ "grad_norm": 0.282461017370224,
+ "learning_rate": 0.0006,
+ "loss": 4.460200309753418,
+ "step": 682
+ },
+ {
+ "epoch": 9.489296636085626,
+ "grad_norm": 0.27174389362335205,
+ "learning_rate": 0.0006,
+ "loss": 4.416125297546387,
+ "step": 683
+ },
+ {
+ "epoch": 9.503276539973788,
+ "grad_norm": 0.24570637941360474,
+ "learning_rate": 0.0006,
+ "loss": 4.4451093673706055,
+ "step": 684
+ },
+ {
+ "epoch": 9.517256443861948,
+ "grad_norm": 0.2741486132144928,
+ "learning_rate": 0.0006,
+ "loss": 4.453263282775879,
+ "step": 685
+ },
+ {
+ "epoch": 9.53123634775011,
+ "grad_norm": 0.24753718078136444,
+ "learning_rate": 0.0006,
+ "loss": 4.483033180236816,
+ "step": 686
+ },
+ {
+ "epoch": 9.54521625163827,
+ "grad_norm": 0.24288412928581238,
+ "learning_rate": 0.0006,
+ "loss": 4.452961444854736,
+ "step": 687
+ },
+ {
+ "epoch": 9.55919615552643,
+ "grad_norm": 0.21554753184318542,
+ "learning_rate": 0.0006,
+ "loss": 4.476005554199219,
+ "step": 688
+ },
+ {
+ "epoch": 9.57317605941459,
+ "grad_norm": 0.22775942087173462,
+ "learning_rate": 0.0006,
+ "loss": 4.4479193687438965,
+ "step": 689
+ },
+ {
+ "epoch": 9.587155963302752,
+ "grad_norm": 0.2610701024532318,
+ "learning_rate": 0.0006,
+ "loss": 4.474987506866455,
+ "step": 690
+ },
+ {
+ "epoch": 9.601135867190912,
+ "grad_norm": 0.2394690215587616,
+ "learning_rate": 0.0006,
+ "loss": 4.444857597351074,
+ "step": 691
+ },
+ {
+ "epoch": 9.615115771079074,
+ "grad_norm": 0.20868559181690216,
+ "learning_rate": 0.0006,
+ "loss": 4.4220709800720215,
+ "step": 692
+ },
+ {
+ "epoch": 9.629095674967235,
+ "grad_norm": 0.21869882941246033,
+ "learning_rate": 0.0006,
+ "loss": 4.451737403869629,
+ "step": 693
+ },
+ {
+ "epoch": 9.643075578855395,
+ "grad_norm": 0.1802823394536972,
+ "learning_rate": 0.0006,
+ "loss": 4.409085273742676,
+ "step": 694
+ },
+ {
+ "epoch": 9.657055482743557,
+ "grad_norm": 0.17046281695365906,
+ "learning_rate": 0.0006,
+ "loss": 4.424643516540527,
+ "step": 695
+ },
+ {
+ "epoch": 9.671035386631717,
+ "grad_norm": 0.19561922550201416,
+ "learning_rate": 0.0006,
+ "loss": 4.412302017211914,
+ "step": 696
+ },
+ {
+ "epoch": 9.685015290519878,
+ "grad_norm": 0.21928799152374268,
+ "learning_rate": 0.0006,
+ "loss": 4.427582263946533,
+ "step": 697
+ },
+ {
+ "epoch": 9.698995194408038,
+ "grad_norm": 0.244873046875,
+ "learning_rate": 0.0006,
+ "loss": 4.431827545166016,
+ "step": 698
+ },
+ {
+ "epoch": 9.7129750982962,
+ "grad_norm": 0.2799488604068756,
+ "learning_rate": 0.0006,
+ "loss": 4.407991409301758,
+ "step": 699
+ },
+ {
+ "epoch": 9.72695500218436,
+ "grad_norm": 0.2699538767337799,
+ "learning_rate": 0.0006,
+ "loss": 4.412313461303711,
+ "step": 700
+ },
+ {
+ "epoch": 9.740934906072521,
+ "grad_norm": 0.22293835878372192,
+ "learning_rate": 0.0006,
+ "loss": 4.423369884490967,
+ "step": 701
+ },
+ {
+ "epoch": 9.754914809960681,
+ "grad_norm": 0.21554361283779144,
+ "learning_rate": 0.0006,
+ "loss": 4.42026948928833,
+ "step": 702
+ },
+ {
+ "epoch": 9.768894713848843,
+ "grad_norm": 0.22135840356349945,
+ "learning_rate": 0.0006,
+ "loss": 4.400010108947754,
+ "step": 703
+ },
+ {
+ "epoch": 9.782874617737003,
+ "grad_norm": 0.2169952541589737,
+ "learning_rate": 0.0006,
+ "loss": 4.394582271575928,
+ "step": 704
+ },
+ {
+ "epoch": 9.796854521625164,
+ "grad_norm": 0.18913042545318604,
+ "learning_rate": 0.0006,
+ "loss": 4.395880699157715,
+ "step": 705
+ },
+ {
+ "epoch": 9.810834425513324,
+ "grad_norm": 0.191524475812912,
+ "learning_rate": 0.0006,
+ "loss": 4.378962516784668,
+ "step": 706
+ },
+ {
+ "epoch": 9.824814329401486,
+ "grad_norm": 0.20057640969753265,
+ "learning_rate": 0.0006,
+ "loss": 4.431066513061523,
+ "step": 707
+ },
+ {
+ "epoch": 9.838794233289645,
+ "grad_norm": 0.21670377254486084,
+ "learning_rate": 0.0006,
+ "loss": 4.364682197570801,
+ "step": 708
+ },
+ {
+ "epoch": 9.852774137177807,
+ "grad_norm": 0.21653099358081818,
+ "learning_rate": 0.0006,
+ "loss": 4.4050445556640625,
+ "step": 709
+ },
+ {
+ "epoch": 9.866754041065967,
+ "grad_norm": 0.2217673808336258,
+ "learning_rate": 0.0006,
+ "loss": 4.423664093017578,
+ "step": 710
+ },
+ {
+ "epoch": 9.880733944954128,
+ "grad_norm": 0.251078337430954,
+ "learning_rate": 0.0006,
+ "loss": 4.405768394470215,
+ "step": 711
+ },
+ {
+ "epoch": 9.89471384884229,
+ "grad_norm": 0.28962627053260803,
+ "learning_rate": 0.0006,
+ "loss": 4.421207427978516,
+ "step": 712
+ },
+ {
+ "epoch": 9.90869375273045,
+ "grad_norm": 0.3478074371814728,
+ "learning_rate": 0.0006,
+ "loss": 4.414942741394043,
+ "step": 713
+ },
+ {
+ "epoch": 9.922673656618612,
+ "grad_norm": 0.40396368503570557,
+ "learning_rate": 0.0006,
+ "loss": 4.415163993835449,
+ "step": 714
+ },
+ {
+ "epoch": 9.936653560506771,
+ "grad_norm": 0.3689858019351959,
+ "learning_rate": 0.0006,
+ "loss": 4.381345272064209,
+ "step": 715
+ },
+ {
+ "epoch": 9.950633464394933,
+ "grad_norm": 0.344868004322052,
+ "learning_rate": 0.0006,
+ "loss": 4.433088302612305,
+ "step": 716
+ },
+ {
+ "epoch": 9.964613368283093,
+ "grad_norm": 0.37976378202438354,
+ "learning_rate": 0.0006,
+ "loss": 4.431371212005615,
+ "step": 717
+ },
+ {
+ "epoch": 9.978593272171254,
+ "grad_norm": 0.4354130029678345,
+ "learning_rate": 0.0006,
+ "loss": 4.434148788452148,
+ "step": 718
+ },
+ {
+ "epoch": 9.992573176059414,
+ "grad_norm": 0.35859373211860657,
+ "learning_rate": 0.0006,
+ "loss": 4.428055763244629,
+ "step": 719
+ },
+ {
+ "epoch": 10.0,
+ "grad_norm": 0.3365023732185364,
+ "learning_rate": 0.0006,
+ "loss": 4.3888654708862305,
+ "step": 720
+ },
+ {
+ "epoch": 10.0,
+ "eval_loss": 4.638620853424072,
+ "eval_runtime": 44.3054,
+ "eval_samples_per_second": 55.117,
+ "eval_steps_per_second": 3.453,
+ "step": 720
+ },
+ {
+ "epoch": 10.013979903888162,
+ "grad_norm": 0.3267960250377655,
+ "learning_rate": 0.0006,
+ "loss": 4.386068344116211,
+ "step": 721
+ },
+ {
+ "epoch": 10.027959807776321,
+ "grad_norm": 0.33440953493118286,
+ "learning_rate": 0.0006,
+ "loss": 4.397515296936035,
+ "step": 722
+ },
+ {
+ "epoch": 10.041939711664483,
+ "grad_norm": 0.30047518014907837,
+ "learning_rate": 0.0006,
+ "loss": 4.398358345031738,
+ "step": 723
+ },
+ {
+ "epoch": 10.055919615552643,
+ "grad_norm": 0.2912217378616333,
+ "learning_rate": 0.0006,
+ "loss": 4.341166973114014,
+ "step": 724
+ },
+ {
+ "epoch": 10.069899519440805,
+ "grad_norm": 0.3199564218521118,
+ "learning_rate": 0.0006,
+ "loss": 4.388717174530029,
+ "step": 725
+ },
+ {
+ "epoch": 10.083879423328964,
+ "grad_norm": 0.2765582799911499,
+ "learning_rate": 0.0006,
+ "loss": 4.392992973327637,
+ "step": 726
+ },
+ {
+ "epoch": 10.097859327217126,
+ "grad_norm": 0.27138450741767883,
+ "learning_rate": 0.0006,
+ "loss": 4.382307529449463,
+ "step": 727
+ },
+ {
+ "epoch": 10.111839231105286,
+ "grad_norm": 0.29230645298957825,
+ "learning_rate": 0.0006,
+ "loss": 4.357486724853516,
+ "step": 728
+ },
+ {
+ "epoch": 10.125819134993447,
+ "grad_norm": 0.3127598464488983,
+ "learning_rate": 0.0006,
+ "loss": 4.39072322845459,
+ "step": 729
+ },
+ {
+ "epoch": 10.139799038881607,
+ "grad_norm": 0.3230913281440735,
+ "learning_rate": 0.0006,
+ "loss": 4.35037899017334,
+ "step": 730
+ },
+ {
+ "epoch": 10.153778942769769,
+ "grad_norm": 0.333675354719162,
+ "learning_rate": 0.0006,
+ "loss": 4.378030776977539,
+ "step": 731
+ },
+ {
+ "epoch": 10.167758846657929,
+ "grad_norm": 0.30325770378112793,
+ "learning_rate": 0.0006,
+ "loss": 4.372736930847168,
+ "step": 732
+ },
+ {
+ "epoch": 10.18173875054609,
+ "grad_norm": 0.2888163924217224,
+ "learning_rate": 0.0006,
+ "loss": 4.397604942321777,
+ "step": 733
+ },
+ {
+ "epoch": 10.19571865443425,
+ "grad_norm": 0.3378832936286926,
+ "learning_rate": 0.0006,
+ "loss": 4.395705223083496,
+ "step": 734
+ },
+ {
+ "epoch": 10.209698558322412,
+ "grad_norm": 0.30980268120765686,
+ "learning_rate": 0.0006,
+ "loss": 4.3861212730407715,
+ "step": 735
+ },
+ {
+ "epoch": 10.223678462210572,
+ "grad_norm": 0.2965783178806305,
+ "learning_rate": 0.0006,
+ "loss": 4.394898414611816,
+ "step": 736
+ },
+ {
+ "epoch": 10.237658366098733,
+ "grad_norm": 0.2818217873573303,
+ "learning_rate": 0.0006,
+ "loss": 4.36171817779541,
+ "step": 737
+ },
+ {
+ "epoch": 10.251638269986893,
+ "grad_norm": 0.2418123185634613,
+ "learning_rate": 0.0006,
+ "loss": 4.370945930480957,
+ "step": 738
+ },
+ {
+ "epoch": 10.265618173875055,
+ "grad_norm": 0.22372810542583466,
+ "learning_rate": 0.0006,
+ "loss": 4.354825973510742,
+ "step": 739
+ },
+ {
+ "epoch": 10.279598077763215,
+ "grad_norm": 0.238066166639328,
+ "learning_rate": 0.0006,
+ "loss": 4.376237392425537,
+ "step": 740
+ },
+ {
+ "epoch": 10.293577981651376,
+ "grad_norm": 0.22352449595928192,
+ "learning_rate": 0.0006,
+ "loss": 4.317084312438965,
+ "step": 741
+ },
+ {
+ "epoch": 10.307557885539538,
+ "grad_norm": 0.21685205399990082,
+ "learning_rate": 0.0006,
+ "loss": 4.335271835327148,
+ "step": 742
+ },
+ {
+ "epoch": 10.321537789427698,
+ "grad_norm": 0.19584694504737854,
+ "learning_rate": 0.0006,
+ "loss": 4.357963562011719,
+ "step": 743
+ },
+ {
+ "epoch": 10.33551769331586,
+ "grad_norm": 0.20373336970806122,
+ "learning_rate": 0.0006,
+ "loss": 4.401963233947754,
+ "step": 744
+ },
+ {
+ "epoch": 10.349497597204019,
+ "grad_norm": 0.2247837632894516,
+ "learning_rate": 0.0006,
+ "loss": 4.357202529907227,
+ "step": 745
+ },
+ {
+ "epoch": 10.36347750109218,
+ "grad_norm": 0.2416863739490509,
+ "learning_rate": 0.0006,
+ "loss": 4.364739418029785,
+ "step": 746
+ },
+ {
+ "epoch": 10.37745740498034,
+ "grad_norm": 0.22281162440776825,
+ "learning_rate": 0.0006,
+ "loss": 4.351607799530029,
+ "step": 747
+ },
+ {
+ "epoch": 10.391437308868502,
+ "grad_norm": 0.20751096308231354,
+ "learning_rate": 0.0006,
+ "loss": 4.370017051696777,
+ "step": 748
+ },
+ {
+ "epoch": 10.405417212756662,
+ "grad_norm": 0.19178363680839539,
+ "learning_rate": 0.0006,
+ "loss": 4.360328674316406,
+ "step": 749
+ },
+ {
+ "epoch": 10.419397116644824,
+ "grad_norm": 0.20534078776836395,
+ "learning_rate": 0.0006,
+ "loss": 4.3735432624816895,
+ "step": 750
+ },
+ {
+ "epoch": 10.433377020532983,
+ "grad_norm": 0.20533937215805054,
+ "learning_rate": 0.0006,
+ "loss": 4.326902389526367,
+ "step": 751
+ },
+ {
+ "epoch": 10.447356924421145,
+ "grad_norm": 0.22057875990867615,
+ "learning_rate": 0.0006,
+ "loss": 4.360934257507324,
+ "step": 752
+ },
+ {
+ "epoch": 10.461336828309305,
+ "grad_norm": 0.25568997859954834,
+ "learning_rate": 0.0006,
+ "loss": 4.345063209533691,
+ "step": 753
+ },
+ {
+ "epoch": 10.475316732197467,
+ "grad_norm": 0.31471487879753113,
+ "learning_rate": 0.0006,
+ "loss": 4.324014186859131,
+ "step": 754
+ },
+ {
+ "epoch": 10.489296636085626,
+ "grad_norm": 0.2716822624206543,
+ "learning_rate": 0.0006,
+ "loss": 4.318459510803223,
+ "step": 755
+ },
+ {
+ "epoch": 10.503276539973788,
+ "grad_norm": 0.19552019238471985,
+ "learning_rate": 0.0006,
+ "loss": 4.3367509841918945,
+ "step": 756
+ },
+ {
+ "epoch": 10.517256443861948,
+ "grad_norm": 0.22822986543178558,
+ "learning_rate": 0.0006,
+ "loss": 4.328935623168945,
+ "step": 757
+ },
+ {
+ "epoch": 10.53123634775011,
+ "grad_norm": 0.22282928228378296,
+ "learning_rate": 0.0006,
+ "loss": 4.358272552490234,
+ "step": 758
+ },
+ {
+ "epoch": 10.54521625163827,
+ "grad_norm": 0.23303352296352386,
+ "learning_rate": 0.0006,
+ "loss": 4.336641311645508,
+ "step": 759
+ },
+ {
+ "epoch": 10.55919615552643,
+ "grad_norm": 0.29474690556526184,
+ "learning_rate": 0.0006,
+ "loss": 4.343188285827637,
+ "step": 760
+ },
+ {
+ "epoch": 10.57317605941459,
+ "grad_norm": 0.36269059777259827,
+ "learning_rate": 0.0006,
+ "loss": 4.313019752502441,
+ "step": 761
+ },
+ {
+ "epoch": 10.587155963302752,
+ "grad_norm": 0.3742978870868683,
+ "learning_rate": 0.0006,
+ "loss": 4.361410140991211,
+ "step": 762
+ },
+ {
+ "epoch": 10.601135867190912,
+ "grad_norm": 0.34412163496017456,
+ "learning_rate": 0.0006,
+ "loss": 4.321324825286865,
+ "step": 763
+ },
+ {
+ "epoch": 10.615115771079074,
+ "grad_norm": 0.3464587926864624,
+ "learning_rate": 0.0006,
+ "loss": 4.341907501220703,
+ "step": 764
+ },
+ {
+ "epoch": 10.629095674967235,
+ "grad_norm": 0.3318136930465698,
+ "learning_rate": 0.0006,
+ "loss": 4.329099655151367,
+ "step": 765
+ },
+ {
+ "epoch": 10.643075578855395,
+ "grad_norm": 0.31292903423309326,
+ "learning_rate": 0.0006,
+ "loss": 4.332015037536621,
+ "step": 766
+ },
+ {
+ "epoch": 10.657055482743557,
+ "grad_norm": 0.2904847264289856,
+ "learning_rate": 0.0006,
+ "loss": 4.341764450073242,
+ "step": 767
+ },
+ {
+ "epoch": 10.671035386631717,
+ "grad_norm": 0.3287692666053772,
+ "learning_rate": 0.0006,
+ "loss": 4.342329025268555,
+ "step": 768
+ },
+ {
+ "epoch": 10.685015290519878,
+ "grad_norm": 0.3115365207195282,
+ "learning_rate": 0.0006,
+ "loss": 4.3530073165893555,
+ "step": 769
+ },
+ {
+ "epoch": 10.698995194408038,
+ "grad_norm": 0.24133864045143127,
+ "learning_rate": 0.0006,
+ "loss": 4.321497917175293,
+ "step": 770
+ },
+ {
+ "epoch": 10.7129750982962,
+ "grad_norm": 0.24658630788326263,
+ "learning_rate": 0.0006,
+ "loss": 4.32669734954834,
+ "step": 771
+ },
+ {
+ "epoch": 10.72695500218436,
+ "grad_norm": 0.2342129647731781,
+ "learning_rate": 0.0006,
+ "loss": 4.345459461212158,
+ "step": 772
+ },
+ {
+ "epoch": 10.740934906072521,
+ "grad_norm": 0.23360829055309296,
+ "learning_rate": 0.0006,
+ "loss": 4.33249568939209,
+ "step": 773
+ },
+ {
+ "epoch": 10.754914809960681,
+ "grad_norm": 0.24314677715301514,
+ "learning_rate": 0.0006,
+ "loss": 4.30499792098999,
+ "step": 774
+ },
+ {
+ "epoch": 10.768894713848843,
+ "grad_norm": 0.22105181217193604,
+ "learning_rate": 0.0006,
+ "loss": 4.33706521987915,
+ "step": 775
+ },
+ {
+ "epoch": 10.782874617737003,
+ "grad_norm": 0.23307174444198608,
+ "learning_rate": 0.0006,
+ "loss": 4.320387840270996,
+ "step": 776
+ },
+ {
+ "epoch": 10.796854521625164,
+ "grad_norm": 0.24946169555187225,
+ "learning_rate": 0.0006,
+ "loss": 4.316012382507324,
+ "step": 777
+ },
+ {
+ "epoch": 10.810834425513324,
+ "grad_norm": 0.26023536920547485,
+ "learning_rate": 0.0006,
+ "loss": 4.315193176269531,
+ "step": 778
+ },
+ {
+ "epoch": 10.824814329401486,
+ "grad_norm": 0.2688547968864441,
+ "learning_rate": 0.0006,
+ "loss": 4.3243255615234375,
+ "step": 779
+ },
+ {
+ "epoch": 10.838794233289645,
+ "grad_norm": 0.28188297152519226,
+ "learning_rate": 0.0006,
+ "loss": 4.3202972412109375,
+ "step": 780
+ },
+ {
+ "epoch": 10.852774137177807,
+ "grad_norm": 0.2890053689479828,
+ "learning_rate": 0.0006,
+ "loss": 4.318799018859863,
+ "step": 781
+ },
+ {
+ "epoch": 10.866754041065967,
+ "grad_norm": 0.2914353013038635,
+ "learning_rate": 0.0006,
+ "loss": 4.314262390136719,
+ "step": 782
+ },
+ {
+ "epoch": 10.880733944954128,
+ "grad_norm": 0.3145572543144226,
+ "learning_rate": 0.0006,
+ "loss": 4.339262008666992,
+ "step": 783
+ },
+ {
+ "epoch": 10.89471384884229,
+ "grad_norm": 0.323062002658844,
+ "learning_rate": 0.0006,
+ "loss": 4.354856491088867,
+ "step": 784
+ },
+ {
+ "epoch": 10.90869375273045,
+ "grad_norm": 0.32741227746009827,
+ "learning_rate": 0.0006,
+ "loss": 4.325577735900879,
+ "step": 785
+ },
+ {
+ "epoch": 10.922673656618612,
+ "grad_norm": 0.2855733036994934,
+ "learning_rate": 0.0006,
+ "loss": 4.324419021606445,
+ "step": 786
+ },
+ {
+ "epoch": 10.936653560506771,
+ "grad_norm": 0.2969444990158081,
+ "learning_rate": 0.0006,
+ "loss": 4.320681095123291,
+ "step": 787
+ },
+ {
+ "epoch": 10.950633464394933,
+ "grad_norm": 0.28108111023902893,
+ "learning_rate": 0.0006,
+ "loss": 4.32673454284668,
+ "step": 788
+ },
+ {
+ "epoch": 10.964613368283093,
+ "grad_norm": 0.2537972629070282,
+ "learning_rate": 0.0006,
+ "loss": 4.3197021484375,
+ "step": 789
+ },
+ {
+ "epoch": 10.978593272171254,
+ "grad_norm": 0.2354544699192047,
+ "learning_rate": 0.0006,
+ "loss": 4.3354973793029785,
+ "step": 790
+ },
+ {
+ "epoch": 10.992573176059414,
+ "grad_norm": 0.26195117831230164,
+ "learning_rate": 0.0006,
+ "loss": 4.3172526359558105,
+ "step": 791
+ },
+ {
+ "epoch": 11.0,
+ "grad_norm": 0.27089616656303406,
+ "learning_rate": 0.0006,
+ "loss": 4.324293613433838,
+ "step": 792
+ },
+ {
+ "epoch": 11.0,
+ "eval_loss": 4.531813621520996,
+ "eval_runtime": 44.1656,
+ "eval_samples_per_second": 55.292,
+ "eval_steps_per_second": 3.464,
+ "step": 792
+ },
+ {
+ "epoch": 11.013979903888162,
+ "grad_norm": 0.2526339590549469,
+ "learning_rate": 0.0006,
+ "loss": 4.287600517272949,
+ "step": 793
+ },
+ {
+ "epoch": 11.027959807776321,
+ "grad_norm": 0.24318458139896393,
+ "learning_rate": 0.0006,
+ "loss": 4.268078327178955,
+ "step": 794
+ },
+ {
+ "epoch": 11.041939711664483,
+ "grad_norm": 0.2450830638408661,
+ "learning_rate": 0.0006,
+ "loss": 4.265467643737793,
+ "step": 795
+ },
+ {
+ "epoch": 11.055919615552643,
+ "grad_norm": 0.23963099718093872,
+ "learning_rate": 0.0006,
+ "loss": 4.267931938171387,
+ "step": 796
+ },
+ {
+ "epoch": 11.069899519440805,
+ "grad_norm": 0.2488657534122467,
+ "learning_rate": 0.0006,
+ "loss": 4.30262565612793,
+ "step": 797
+ },
+ {
+ "epoch": 11.083879423328964,
+ "grad_norm": 0.2319781631231308,
+ "learning_rate": 0.0006,
+ "loss": 4.28665828704834,
+ "step": 798
+ },
+ {
+ "epoch": 11.097859327217126,
+ "grad_norm": 0.2425263375043869,
+ "learning_rate": 0.0006,
+ "loss": 4.284830570220947,
+ "step": 799
+ },
+ {
+ "epoch": 11.111839231105286,
+ "grad_norm": 0.23096567392349243,
+ "learning_rate": 0.0006,
+ "loss": 4.2817206382751465,
+ "step": 800
+ },
+ {
+ "epoch": 11.125819134993447,
+ "grad_norm": 0.2846364676952362,
+ "learning_rate": 0.0006,
+ "loss": 4.276104927062988,
+ "step": 801
+ },
+ {
+ "epoch": 11.139799038881607,
+ "grad_norm": 0.2984965741634369,
+ "learning_rate": 0.0006,
+ "loss": 4.2909650802612305,
+ "step": 802
+ },
+ {
+ "epoch": 11.153778942769769,
+ "grad_norm": 0.2841213643550873,
+ "learning_rate": 0.0006,
+ "loss": 4.283358097076416,
+ "step": 803
+ },
+ {
+ "epoch": 11.167758846657929,
+ "grad_norm": 0.29192933440208435,
+ "learning_rate": 0.0006,
+ "loss": 4.267040729522705,
+ "step": 804
+ },
+ {
+ "epoch": 11.18173875054609,
+ "grad_norm": 0.3254184126853943,
+ "learning_rate": 0.0006,
+ "loss": 4.301564693450928,
+ "step": 805
+ },
+ {
+ "epoch": 11.19571865443425,
+ "grad_norm": 0.3347095847129822,
+ "learning_rate": 0.0006,
+ "loss": 4.271395683288574,
+ "step": 806
+ },
+ {
+ "epoch": 11.209698558322412,
+ "grad_norm": 0.25609350204467773,
+ "learning_rate": 0.0006,
+ "loss": 4.2963056564331055,
+ "step": 807
+ },
+ {
+ "epoch": 11.223678462210572,
+ "grad_norm": 0.29272061586380005,
+ "learning_rate": 0.0006,
+ "loss": 4.298416614532471,
+ "step": 808
+ },
+ {
+ "epoch": 11.237658366098733,
+ "grad_norm": 0.32179465889930725,
+ "learning_rate": 0.0006,
+ "loss": 4.294036865234375,
+ "step": 809
+ },
+ {
+ "epoch": 11.251638269986893,
+ "grad_norm": 0.3336549401283264,
+ "learning_rate": 0.0006,
+ "loss": 4.291993141174316,
+ "step": 810
+ },
+ {
+ "epoch": 11.265618173875055,
+ "grad_norm": 0.32273536920547485,
+ "learning_rate": 0.0006,
+ "loss": 4.311004638671875,
+ "step": 811
+ },
+ {
+ "epoch": 11.279598077763215,
+ "grad_norm": 0.3575087785720825,
+ "learning_rate": 0.0006,
+ "loss": 4.300217628479004,
+ "step": 812
+ },
+ {
+ "epoch": 11.293577981651376,
+ "grad_norm": 0.3332885205745697,
+ "learning_rate": 0.0006,
+ "loss": 4.278337478637695,
+ "step": 813
+ },
+ {
+ "epoch": 11.307557885539538,
+ "grad_norm": 0.31440407037734985,
+ "learning_rate": 0.0006,
+ "loss": 4.273826599121094,
+ "step": 814
+ },
+ {
+ "epoch": 11.321537789427698,
+ "grad_norm": 0.29822009801864624,
+ "learning_rate": 0.0006,
+ "loss": 4.284292221069336,
+ "step": 815
+ },
+ {
+ "epoch": 11.33551769331586,
+ "grad_norm": 0.30695512890815735,
+ "learning_rate": 0.0006,
+ "loss": 4.2831926345825195,
+ "step": 816
+ },
+ {
+ "epoch": 11.349497597204019,
+ "grad_norm": 0.30576950311660767,
+ "learning_rate": 0.0006,
+ "loss": 4.277133464813232,
+ "step": 817
+ },
+ {
+ "epoch": 11.36347750109218,
+ "grad_norm": 0.2859647870063782,
+ "learning_rate": 0.0006,
+ "loss": 4.3130106925964355,
+ "step": 818
+ },
+ {
+ "epoch": 11.37745740498034,
+ "grad_norm": 0.32417574524879456,
+ "learning_rate": 0.0006,
+ "loss": 4.310303211212158,
+ "step": 819
+ },
+ {
+ "epoch": 11.391437308868502,
+ "grad_norm": 0.3512463867664337,
+ "learning_rate": 0.0006,
+ "loss": 4.287015438079834,
+ "step": 820
+ },
+ {
+ "epoch": 11.405417212756662,
+ "grad_norm": 0.32578620314598083,
+ "learning_rate": 0.0006,
+ "loss": 4.2957940101623535,
+ "step": 821
+ },
+ {
+ "epoch": 11.419397116644824,
+ "grad_norm": 0.287949800491333,
+ "learning_rate": 0.0006,
+ "loss": 4.2881879806518555,
+ "step": 822
+ },
+ {
+ "epoch": 11.433377020532983,
+ "grad_norm": 0.28048595786094666,
+ "learning_rate": 0.0006,
+ "loss": 4.274960517883301,
+ "step": 823
+ },
+ {
+ "epoch": 11.447356924421145,
+ "grad_norm": 0.2541540563106537,
+ "learning_rate": 0.0006,
+ "loss": 4.261083602905273,
+ "step": 824
+ },
+ {
+ "epoch": 11.461336828309305,
+ "grad_norm": 0.2348361313343048,
+ "learning_rate": 0.0006,
+ "loss": 4.271036148071289,
+ "step": 825
+ },
+ {
+ "epoch": 11.475316732197467,
+ "grad_norm": 0.20913535356521606,
+ "learning_rate": 0.0006,
+ "loss": 4.307661056518555,
+ "step": 826
+ },
+ {
+ "epoch": 11.489296636085626,
+ "grad_norm": 0.22298868000507355,
+ "learning_rate": 0.0006,
+ "loss": 4.26902961730957,
+ "step": 827
+ },
+ {
+ "epoch": 11.503276539973788,
+ "grad_norm": 0.22752761840820312,
+ "learning_rate": 0.0006,
+ "loss": 4.305529594421387,
+ "step": 828
+ },
+ {
+ "epoch": 11.517256443861948,
+ "grad_norm": 0.2149917483329773,
+ "learning_rate": 0.0006,
+ "loss": 4.25134801864624,
+ "step": 829
+ },
+ {
+ "epoch": 11.53123634775011,
+ "grad_norm": 0.21085695922374725,
+ "learning_rate": 0.0006,
+ "loss": 4.266982078552246,
+ "step": 830
+ },
+ {
+ "epoch": 11.54521625163827,
+ "grad_norm": 0.21586747467517853,
+ "learning_rate": 0.0006,
+ "loss": 4.235255718231201,
+ "step": 831
+ },
+ {
+ "epoch": 11.55919615552643,
+ "grad_norm": 0.2520856559276581,
+ "learning_rate": 0.0006,
+ "loss": 4.283442497253418,
+ "step": 832
+ },
+ {
+ "epoch": 11.57317605941459,
+ "grad_norm": 0.2825471758842468,
+ "learning_rate": 0.0006,
+ "loss": 4.234672546386719,
+ "step": 833
+ },
+ {
+ "epoch": 11.587155963302752,
+ "grad_norm": 0.27437824010849,
+ "learning_rate": 0.0006,
+ "loss": 4.246068000793457,
+ "step": 834
+ },
+ {
+ "epoch": 11.601135867190912,
+ "grad_norm": 0.2596757411956787,
+ "learning_rate": 0.0006,
+ "loss": 4.278448104858398,
+ "step": 835
+ },
+ {
+ "epoch": 11.615115771079074,
+ "grad_norm": 0.25663474202156067,
+ "learning_rate": 0.0006,
+ "loss": 4.308779716491699,
+ "step": 836
+ },
+ {
+ "epoch": 11.629095674967235,
+ "grad_norm": 0.2546203136444092,
+ "learning_rate": 0.0006,
+ "loss": 4.261247634887695,
+ "step": 837
+ },
+ {
+ "epoch": 11.643075578855395,
+ "grad_norm": 0.24722838401794434,
+ "learning_rate": 0.0006,
+ "loss": 4.275888442993164,
+ "step": 838
+ },
+ {
+ "epoch": 11.657055482743557,
+ "grad_norm": 0.3022806644439697,
+ "learning_rate": 0.0006,
+ "loss": 4.2572407722473145,
+ "step": 839
+ },
+ {
+ "epoch": 11.671035386631717,
+ "grad_norm": 0.31170839071273804,
+ "learning_rate": 0.0006,
+ "loss": 4.26992654800415,
+ "step": 840
+ },
+ {
+ "epoch": 11.685015290519878,
+ "grad_norm": 0.31362825632095337,
+ "learning_rate": 0.0006,
+ "loss": 4.2354655265808105,
+ "step": 841
+ },
+ {
+ "epoch": 11.698995194408038,
+ "grad_norm": 0.28741633892059326,
+ "learning_rate": 0.0006,
+ "loss": 4.263496398925781,
+ "step": 842
+ },
+ {
+ "epoch": 11.7129750982962,
+ "grad_norm": 0.2492494285106659,
+ "learning_rate": 0.0006,
+ "loss": 4.26463508605957,
+ "step": 843
+ },
+ {
+ "epoch": 11.72695500218436,
+ "grad_norm": 0.24324660003185272,
+ "learning_rate": 0.0006,
+ "loss": 4.245428085327148,
+ "step": 844
+ },
+ {
+ "epoch": 11.740934906072521,
+ "grad_norm": 0.23591114580631256,
+ "learning_rate": 0.0006,
+ "loss": 4.249845504760742,
+ "step": 845
+ },
+ {
+ "epoch": 11.754914809960681,
+ "grad_norm": 0.2202281504869461,
+ "learning_rate": 0.0006,
+ "loss": 4.245006084442139,
+ "step": 846
+ },
+ {
+ "epoch": 11.768894713848843,
+ "grad_norm": 0.22117942571640015,
+ "learning_rate": 0.0006,
+ "loss": 4.27812385559082,
+ "step": 847
+ },
+ {
+ "epoch": 11.782874617737003,
+ "grad_norm": 0.26361414790153503,
+ "learning_rate": 0.0006,
+ "loss": 4.250475883483887,
+ "step": 848
+ },
+ {
+ "epoch": 11.796854521625164,
+ "grad_norm": 0.2820321321487427,
+ "learning_rate": 0.0006,
+ "loss": 4.265835762023926,
+ "step": 849
+ },
+ {
+ "epoch": 11.810834425513324,
+ "grad_norm": 0.2078961282968521,
+ "learning_rate": 0.0006,
+ "loss": 4.251298904418945,
+ "step": 850
+ },
+ {
+ "epoch": 11.824814329401486,
+ "grad_norm": 0.21548646688461304,
+ "learning_rate": 0.0006,
+ "loss": 4.288539886474609,
+ "step": 851
+ },
+ {
+ "epoch": 11.838794233289645,
+ "grad_norm": 0.22719401121139526,
+ "learning_rate": 0.0006,
+ "loss": 4.252035140991211,
+ "step": 852
+ },
+ {
+ "epoch": 11.852774137177807,
+ "grad_norm": 0.21628320217132568,
+ "learning_rate": 0.0006,
+ "loss": 4.268622398376465,
+ "step": 853
+ },
+ {
+ "epoch": 11.866754041065967,
+ "grad_norm": 0.20855145156383514,
+ "learning_rate": 0.0006,
+ "loss": 4.253366470336914,
+ "step": 854
+ },
+ {
+ "epoch": 11.880733944954128,
+ "grad_norm": 0.2091914266347885,
+ "learning_rate": 0.0006,
+ "loss": 4.237805366516113,
+ "step": 855
+ },
+ {
+ "epoch": 11.89471384884229,
+ "grad_norm": 0.2000127136707306,
+ "learning_rate": 0.0006,
+ "loss": 4.268559455871582,
+ "step": 856
+ },
+ {
+ "epoch": 11.90869375273045,
+ "grad_norm": 0.21080894768238068,
+ "learning_rate": 0.0006,
+ "loss": 4.208702087402344,
+ "step": 857
+ },
+ {
+ "epoch": 11.922673656618612,
+ "grad_norm": 0.22125796973705292,
+ "learning_rate": 0.0006,
+ "loss": 4.250210762023926,
+ "step": 858
+ },
+ {
+ "epoch": 11.936653560506771,
+ "grad_norm": 0.25905469059944153,
+ "learning_rate": 0.0006,
+ "loss": 4.2263593673706055,
+ "step": 859
+ },
+ {
+ "epoch": 11.950633464394933,
+ "grad_norm": 0.29970306158065796,
+ "learning_rate": 0.0006,
+ "loss": 4.250848770141602,
+ "step": 860
+ },
+ {
+ "epoch": 11.964613368283093,
+ "grad_norm": 0.28155168890953064,
+ "learning_rate": 0.0006,
+ "loss": 4.272709369659424,
+ "step": 861
+ },
+ {
+ "epoch": 11.978593272171254,
+ "grad_norm": 0.23396113514900208,
+ "learning_rate": 0.0006,
+ "loss": 4.2674970626831055,
+ "step": 862
+ },
+ {
+ "epoch": 11.992573176059414,
+ "grad_norm": 0.23619577288627625,
+ "learning_rate": 0.0006,
+ "loss": 4.240267753601074,
+ "step": 863
+ },
+ {
+ "epoch": 12.0,
+ "grad_norm": 0.2779577076435089,
+ "learning_rate": 0.0006,
+ "loss": 4.267625331878662,
+ "step": 864
+ },
+ {
+ "epoch": 12.0,
+ "eval_loss": 4.437657356262207,
+ "eval_runtime": 44.4959,
+ "eval_samples_per_second": 54.881,
+ "eval_steps_per_second": 3.439,
+ "step": 864
+ },
+ {
+ "epoch": 12.013979903888162,
+ "grad_norm": 0.2948288321495056,
+ "learning_rate": 0.0006,
+ "loss": 4.232182502746582,
+ "step": 865
+ },
+ {
+ "epoch": 12.027959807776321,
+ "grad_norm": 0.3715663254261017,
+ "learning_rate": 0.0006,
+ "loss": 4.233771324157715,
+ "step": 866
+ },
+ {
+ "epoch": 12.041939711664483,
+ "grad_norm": 0.38358673453330994,
+ "learning_rate": 0.0006,
+ "loss": 4.208967685699463,
+ "step": 867
+ },
+ {
+ "epoch": 12.055919615552643,
+ "grad_norm": 0.3314538896083832,
+ "learning_rate": 0.0006,
+ "loss": 4.230685234069824,
+ "step": 868
+ },
+ {
+ "epoch": 12.069899519440805,
+ "grad_norm": 0.34171539545059204,
+ "learning_rate": 0.0006,
+ "loss": 4.231358528137207,
+ "step": 869
+ },
+ {
+ "epoch": 12.083879423328964,
+ "grad_norm": 0.3253359794616699,
+ "learning_rate": 0.0006,
+ "loss": 4.276405334472656,
+ "step": 870
+ },
+ {
+ "epoch": 12.097859327217126,
+ "grad_norm": 0.29008302092552185,
+ "learning_rate": 0.0006,
+ "loss": 4.232935905456543,
+ "step": 871
+ },
+ {
+ "epoch": 12.111839231105286,
+ "grad_norm": 0.28490355610847473,
+ "learning_rate": 0.0006,
+ "loss": 4.238036632537842,
+ "step": 872
+ },
+ {
+ "epoch": 12.125819134993447,
+ "grad_norm": 0.28446322679519653,
+ "learning_rate": 0.0006,
+ "loss": 4.210229873657227,
+ "step": 873
+ },
+ {
+ "epoch": 12.139799038881607,
+ "grad_norm": 0.29664531350135803,
+ "learning_rate": 0.0006,
+ "loss": 4.221309185028076,
+ "step": 874
+ },
+ {
+ "epoch": 12.153778942769769,
+ "grad_norm": 0.3083505928516388,
+ "learning_rate": 0.0006,
+ "loss": 4.221837997436523,
+ "step": 875
+ },
+ {
+ "epoch": 12.167758846657929,
+ "grad_norm": 0.3282921314239502,
+ "learning_rate": 0.0006,
+ "loss": 4.236713409423828,
+ "step": 876
+ },
+ {
+ "epoch": 12.18173875054609,
+ "grad_norm": 0.3603622615337372,
+ "learning_rate": 0.0006,
+ "loss": 4.245080947875977,
+ "step": 877
+ },
+ {
+ "epoch": 12.19571865443425,
+ "grad_norm": 0.38070905208587646,
+ "learning_rate": 0.0006,
+ "loss": 4.240756988525391,
+ "step": 878
+ },
+ {
+ "epoch": 12.209698558322412,
+ "grad_norm": 0.34479081630706787,
+ "learning_rate": 0.0006,
+ "loss": 4.200998306274414,
+ "step": 879
+ },
+ {
+ "epoch": 12.223678462210572,
+ "grad_norm": 0.3006879389286041,
+ "learning_rate": 0.0006,
+ "loss": 4.23531436920166,
+ "step": 880
+ },
+ {
+ "epoch": 12.237658366098733,
+ "grad_norm": 0.36835649609565735,
+ "learning_rate": 0.0006,
+ "loss": 4.229718208312988,
+ "step": 881
+ },
+ {
+ "epoch": 12.251638269986893,
+ "grad_norm": 0.4386984407901764,
+ "learning_rate": 0.0006,
+ "loss": 4.241188049316406,
+ "step": 882
+ },
+ {
+ "epoch": 12.265618173875055,
+ "grad_norm": 0.4442787170410156,
+ "learning_rate": 0.0006,
+ "loss": 4.239102840423584,
+ "step": 883
+ },
+ {
+ "epoch": 12.279598077763215,
+ "grad_norm": 0.324411541223526,
+ "learning_rate": 0.0006,
+ "loss": 4.198982238769531,
+ "step": 884
+ },
+ {
+ "epoch": 12.293577981651376,
+ "grad_norm": 0.2824151813983917,
+ "learning_rate": 0.0006,
+ "loss": 4.248816967010498,
+ "step": 885
+ },
+ {
+ "epoch": 12.307557885539538,
+ "grad_norm": 0.31407129764556885,
+ "learning_rate": 0.0006,
+ "loss": 4.2371320724487305,
+ "step": 886
+ },
+ {
+ "epoch": 12.321537789427698,
+ "grad_norm": 0.32920050621032715,
+ "learning_rate": 0.0006,
+ "loss": 4.210432052612305,
+ "step": 887
+ },
+ {
+ "epoch": 12.33551769331586,
+ "grad_norm": 0.315231055021286,
+ "learning_rate": 0.0006,
+ "loss": 4.219416618347168,
+ "step": 888
+ },
+ {
+ "epoch": 12.349497597204019,
+ "grad_norm": 0.30932050943374634,
+ "learning_rate": 0.0006,
+ "loss": 4.225022315979004,
+ "step": 889
+ },
+ {
+ "epoch": 12.36347750109218,
+ "grad_norm": 0.30242064595222473,
+ "learning_rate": 0.0006,
+ "loss": 4.2738518714904785,
+ "step": 890
+ },
+ {
+ "epoch": 12.37745740498034,
+ "grad_norm": 0.2926250994205475,
+ "learning_rate": 0.0006,
+ "loss": 4.231094837188721,
+ "step": 891
+ },
+ {
+ "epoch": 12.391437308868502,
+ "grad_norm": 0.2541215717792511,
+ "learning_rate": 0.0006,
+ "loss": 4.211821556091309,
+ "step": 892
+ },
+ {
+ "epoch": 12.405417212756662,
+ "grad_norm": 0.23693418502807617,
+ "learning_rate": 0.0006,
+ "loss": 4.208099365234375,
+ "step": 893
+ },
+ {
+ "epoch": 12.419397116644824,
+ "grad_norm": 0.22063226997852325,
+ "learning_rate": 0.0006,
+ "loss": 4.211234092712402,
+ "step": 894
+ },
+ {
+ "epoch": 12.433377020532983,
+ "grad_norm": 0.21536271274089813,
+ "learning_rate": 0.0006,
+ "loss": 4.199228286743164,
+ "step": 895
+ },
+ {
+ "epoch": 12.447356924421145,
+ "grad_norm": 0.243179589509964,
+ "learning_rate": 0.0006,
+ "loss": 4.204344749450684,
+ "step": 896
+ },
+ {
+ "epoch": 12.461336828309305,
+ "grad_norm": 0.2299746423959732,
+ "learning_rate": 0.0006,
+ "loss": 4.1565752029418945,
+ "step": 897
+ },
+ {
+ "epoch": 12.475316732197467,
+ "grad_norm": 0.2286847084760666,
+ "learning_rate": 0.0006,
+ "loss": 4.242953777313232,
+ "step": 898
+ },
+ {
+ "epoch": 12.489296636085626,
+ "grad_norm": 0.19463586807250977,
+ "learning_rate": 0.0006,
+ "loss": 4.214809417724609,
+ "step": 899
+ },
+ {
+ "epoch": 12.503276539973788,
+ "grad_norm": 0.1978398710489273,
+ "learning_rate": 0.0006,
+ "loss": 4.159815311431885,
+ "step": 900
+ },
+ {
+ "epoch": 12.517256443861948,
+ "grad_norm": 0.23177850246429443,
+ "learning_rate": 0.0006,
+ "loss": 4.2069902420043945,
+ "step": 901
+ },
+ {
+ "epoch": 12.53123634775011,
+ "grad_norm": 0.2408912032842636,
+ "learning_rate": 0.0006,
+ "loss": 4.206778526306152,
+ "step": 902
+ },
+ {
+ "epoch": 12.54521625163827,
+ "grad_norm": 0.21839919686317444,
+ "learning_rate": 0.0006,
+ "loss": 4.197076320648193,
+ "step": 903
+ },
+ {
+ "epoch": 12.55919615552643,
+ "grad_norm": 0.2053343504667282,
+ "learning_rate": 0.0006,
+ "loss": 4.21247673034668,
+ "step": 904
+ },
+ {
+ "epoch": 12.57317605941459,
+ "grad_norm": 0.19943439960479736,
+ "learning_rate": 0.0006,
+ "loss": 4.176966667175293,
+ "step": 905
+ },
+ {
+ "epoch": 12.587155963302752,
+ "grad_norm": 0.2012074887752533,
+ "learning_rate": 0.0006,
+ "loss": 4.210303783416748,
+ "step": 906
+ },
+ {
+ "epoch": 12.601135867190912,
+ "grad_norm": 0.22240376472473145,
+ "learning_rate": 0.0006,
+ "loss": 4.200625896453857,
+ "step": 907
+ },
+ {
+ "epoch": 12.615115771079074,
+ "grad_norm": 0.21729710698127747,
+ "learning_rate": 0.0006,
+ "loss": 4.2001953125,
+ "step": 908
+ },
+ {
+ "epoch": 12.629095674967235,
+ "grad_norm": 0.22470413148403168,
+ "learning_rate": 0.0006,
+ "loss": 4.197505950927734,
+ "step": 909
+ },
+ {
+ "epoch": 12.643075578855395,
+ "grad_norm": 0.23776157200336456,
+ "learning_rate": 0.0006,
+ "loss": 4.235603332519531,
+ "step": 910
+ },
+ {
+ "epoch": 12.657055482743557,
+ "grad_norm": 0.20616604387760162,
+ "learning_rate": 0.0006,
+ "loss": 4.193584442138672,
+ "step": 911
+ },
+ {
+ "epoch": 12.671035386631717,
+ "grad_norm": 0.1913922131061554,
+ "learning_rate": 0.0006,
+ "loss": 4.209191799163818,
+ "step": 912
+ },
+ {
+ "epoch": 12.685015290519878,
+ "grad_norm": 0.19427193701267242,
+ "learning_rate": 0.0006,
+ "loss": 4.219709396362305,
+ "step": 913
+ },
+ {
+ "epoch": 12.698995194408038,
+ "grad_norm": 0.20976558327674866,
+ "learning_rate": 0.0006,
+ "loss": 4.210859298706055,
+ "step": 914
+ },
+ {
+ "epoch": 12.7129750982962,
+ "grad_norm": 0.21571609377861023,
+ "learning_rate": 0.0006,
+ "loss": 4.189394950866699,
+ "step": 915
+ },
+ {
+ "epoch": 12.72695500218436,
+ "grad_norm": 0.2152620255947113,
+ "learning_rate": 0.0006,
+ "loss": 4.223589897155762,
+ "step": 916
+ },
+ {
+ "epoch": 12.740934906072521,
+ "grad_norm": 0.21867749094963074,
+ "learning_rate": 0.0006,
+ "loss": 4.198590278625488,
+ "step": 917
+ },
+ {
+ "epoch": 12.754914809960681,
+ "grad_norm": 0.22300855815410614,
+ "learning_rate": 0.0006,
+ "loss": 4.188891410827637,
+ "step": 918
+ },
+ {
+ "epoch": 12.768894713848843,
+ "grad_norm": 0.22197802364826202,
+ "learning_rate": 0.0006,
+ "loss": 4.190221309661865,
+ "step": 919
+ },
+ {
+ "epoch": 12.782874617737003,
+ "grad_norm": 0.20003341138362885,
+ "learning_rate": 0.0006,
+ "loss": 4.215453147888184,
+ "step": 920
+ },
+ {
+ "epoch": 12.796854521625164,
+ "grad_norm": 0.19887958467006683,
+ "learning_rate": 0.0006,
+ "loss": 4.18174934387207,
+ "step": 921
+ },
+ {
+ "epoch": 12.810834425513324,
+ "grad_norm": 0.20945803821086884,
+ "learning_rate": 0.0006,
+ "loss": 4.234947204589844,
+ "step": 922
+ },
+ {
+ "epoch": 12.824814329401486,
+ "grad_norm": 0.2253490388393402,
+ "learning_rate": 0.0006,
+ "loss": 4.2177228927612305,
+ "step": 923
+ },
+ {
+ "epoch": 12.838794233289645,
+ "grad_norm": 0.247610405087471,
+ "learning_rate": 0.0006,
+ "loss": 4.2013139724731445,
+ "step": 924
+ },
+ {
+ "epoch": 12.852774137177807,
+ "grad_norm": 0.2792088985443115,
+ "learning_rate": 0.0006,
+ "loss": 4.204774379730225,
+ "step": 925
+ },
+ {
+ "epoch": 12.866754041065967,
+ "grad_norm": 0.2839066982269287,
+ "learning_rate": 0.0006,
+ "loss": 4.186254978179932,
+ "step": 926
+ },
+ {
+ "epoch": 12.880733944954128,
+ "grad_norm": 0.2793181836605072,
+ "learning_rate": 0.0006,
+ "loss": 4.172411918640137,
+ "step": 927
+ },
+ {
+ "epoch": 12.89471384884229,
+ "grad_norm": 0.29506033658981323,
+ "learning_rate": 0.0006,
+ "loss": 4.202878475189209,
+ "step": 928
+ },
+ {
+ "epoch": 12.90869375273045,
+ "grad_norm": 0.2799845039844513,
+ "learning_rate": 0.0006,
+ "loss": 4.1563310623168945,
+ "step": 929
+ },
+ {
+ "epoch": 12.922673656618612,
+ "grad_norm": 0.23972125351428986,
+ "learning_rate": 0.0006,
+ "loss": 4.224601745605469,
+ "step": 930
+ },
+ {
+ "epoch": 12.936653560506771,
+ "grad_norm": 0.21558353304862976,
+ "learning_rate": 0.0006,
+ "loss": 4.167957305908203,
+ "step": 931
+ },
+ {
+ "epoch": 12.950633464394933,
+ "grad_norm": 0.21800188720226288,
+ "learning_rate": 0.0006,
+ "loss": 4.1746039390563965,
+ "step": 932
+ },
+ {
+ "epoch": 12.964613368283093,
+ "grad_norm": 0.2086547315120697,
+ "learning_rate": 0.0006,
+ "loss": 4.188137054443359,
+ "step": 933
+ },
+ {
+ "epoch": 12.978593272171254,
+ "grad_norm": 0.2174186110496521,
+ "learning_rate": 0.0006,
+ "loss": 4.184014320373535,
+ "step": 934
+ },
+ {
+ "epoch": 12.992573176059414,
+ "grad_norm": 0.22755110263824463,
+ "learning_rate": 0.0006,
+ "loss": 4.180912017822266,
+ "step": 935
+ },
+ {
+ "epoch": 13.0,
+ "grad_norm": 0.2735324203968048,
+ "learning_rate": 0.0006,
+ "loss": 4.201578617095947,
+ "step": 936
+ },
+ {
+ "epoch": 13.0,
+ "eval_loss": 4.396903038024902,
+ "eval_runtime": 44.5664,
+ "eval_samples_per_second": 54.795,
+ "eval_steps_per_second": 3.433,
+ "step": 936
+ },
+ {
+ "epoch": 13.013979903888162,
+ "grad_norm": 0.27577832341194153,
+ "learning_rate": 0.0006,
+ "loss": 4.149985313415527,
+ "step": 937
+ },
+ {
+ "epoch": 13.027959807776321,
+ "grad_norm": 0.25817009806632996,
+ "learning_rate": 0.0006,
+ "loss": 4.1526103019714355,
+ "step": 938
+ },
+ {
+ "epoch": 13.041939711664483,
+ "grad_norm": 0.24564379453659058,
+ "learning_rate": 0.0006,
+ "loss": 4.1661152839660645,
+ "step": 939
+ },
+ {
+ "epoch": 13.055919615552643,
+ "grad_norm": 0.2465466856956482,
+ "learning_rate": 0.0006,
+ "loss": 4.152953624725342,
+ "step": 940
+ },
+ {
+ "epoch": 13.069899519440805,
+ "grad_norm": 0.22702018916606903,
+ "learning_rate": 0.0006,
+ "loss": 4.145125389099121,
+ "step": 941
+ },
+ {
+ "epoch": 13.083879423328964,
+ "grad_norm": 0.24350613355636597,
+ "learning_rate": 0.0006,
+ "loss": 4.163095474243164,
+ "step": 942
+ },
+ {
+ "epoch": 13.097859327217126,
+ "grad_norm": 0.2504431903362274,
+ "learning_rate": 0.0006,
+ "loss": 4.136016845703125,
+ "step": 943
+ },
+ {
+ "epoch": 13.111839231105286,
+ "grad_norm": 0.24968865513801575,
+ "learning_rate": 0.0006,
+ "loss": 4.163487911224365,
+ "step": 944
+ },
+ {
+ "epoch": 13.125819134993447,
+ "grad_norm": 0.27164196968078613,
+ "learning_rate": 0.0006,
+ "loss": 4.1194353103637695,
+ "step": 945
+ },
+ {
+ "epoch": 13.139799038881607,
+ "grad_norm": 0.28127020597457886,
+ "learning_rate": 0.0006,
+ "loss": 4.184807300567627,
+ "step": 946
+ },
+ {
+ "epoch": 13.153778942769769,
+ "grad_norm": 0.24574966728687286,
+ "learning_rate": 0.0006,
+ "loss": 4.154998779296875,
+ "step": 947
+ },
+ {
+ "epoch": 13.167758846657929,
+ "grad_norm": 0.22310060262680054,
+ "learning_rate": 0.0006,
+ "loss": 4.182928085327148,
+ "step": 948
+ },
+ {
+ "epoch": 13.18173875054609,
+ "grad_norm": 0.2539508640766144,
+ "learning_rate": 0.0006,
+ "loss": 4.176900386810303,
+ "step": 949
+ },
+ {
+ "epoch": 13.19571865443425,
+ "grad_norm": 0.30925488471984863,
+ "learning_rate": 0.0006,
+ "loss": 4.1760711669921875,
+ "step": 950
+ },
+ {
+ "epoch": 13.209698558322412,
+ "grad_norm": 0.3842967450618744,
+ "learning_rate": 0.0006,
+ "loss": 4.1830949783325195,
+ "step": 951
+ },
+ {
+ "epoch": 13.223678462210572,
+ "grad_norm": 0.35950011014938354,
+ "learning_rate": 0.0006,
+ "loss": 4.131983757019043,
+ "step": 952
+ },
+ {
+ "epoch": 13.237658366098733,
+ "grad_norm": 0.29913705587387085,
+ "learning_rate": 0.0006,
+ "loss": 4.166984558105469,
+ "step": 953
+ },
+ {
+ "epoch": 13.251638269986893,
+ "grad_norm": 0.32008400559425354,
+ "learning_rate": 0.0006,
+ "loss": 4.156482696533203,
+ "step": 954
+ },
+ {
+ "epoch": 13.265618173875055,
+ "grad_norm": 0.3186642825603485,
+ "learning_rate": 0.0006,
+ "loss": 4.1661057472229,
+ "step": 955
+ },
+ {
+ "epoch": 13.279598077763215,
+ "grad_norm": 0.3194582462310791,
+ "learning_rate": 0.0006,
+ "loss": 4.169328689575195,
+ "step": 956
+ },
+ {
+ "epoch": 13.293577981651376,
+ "grad_norm": 0.3133867084980011,
+ "learning_rate": 0.0006,
+ "loss": 4.165459632873535,
+ "step": 957
+ },
+ {
+ "epoch": 13.307557885539538,
+ "grad_norm": 0.3232237696647644,
+ "learning_rate": 0.0006,
+ "loss": 4.2107439041137695,
+ "step": 958
+ },
+ {
+ "epoch": 13.321537789427698,
+ "grad_norm": 0.3133196234703064,
+ "learning_rate": 0.0006,
+ "loss": 4.184182167053223,
+ "step": 959
+ },
+ {
+ "epoch": 13.33551769331586,
+ "grad_norm": 0.296129435300827,
+ "learning_rate": 0.0006,
+ "loss": 4.168312072753906,
+ "step": 960
+ },
+ {
+ "epoch": 13.349497597204019,
+ "grad_norm": 0.2685348391532898,
+ "learning_rate": 0.0006,
+ "loss": 4.159984588623047,
+ "step": 961
+ },
+ {
+ "epoch": 13.36347750109218,
+ "grad_norm": 0.2644975781440735,
+ "learning_rate": 0.0006,
+ "loss": 4.164909362792969,
+ "step": 962
+ },
+ {
+ "epoch": 13.37745740498034,
+ "grad_norm": 0.2712913155555725,
+ "learning_rate": 0.0006,
+ "loss": 4.158056259155273,
+ "step": 963
+ },
+ {
+ "epoch": 13.391437308868502,
+ "grad_norm": 0.2687259316444397,
+ "learning_rate": 0.0006,
+ "loss": 4.182924270629883,
+ "step": 964
+ },
+ {
+ "epoch": 13.405417212756662,
+ "grad_norm": 0.25640392303466797,
+ "learning_rate": 0.0006,
+ "loss": 4.153351783752441,
+ "step": 965
+ },
+ {
+ "epoch": 13.419397116644824,
+ "grad_norm": 0.2646305561065674,
+ "learning_rate": 0.0006,
+ "loss": 4.18464469909668,
+ "step": 966
+ },
+ {
+ "epoch": 13.433377020532983,
+ "grad_norm": 0.24206851422786713,
+ "learning_rate": 0.0006,
+ "loss": 4.127564430236816,
+ "step": 967
+ },
+ {
+ "epoch": 13.447356924421145,
+ "grad_norm": 0.23800471425056458,
+ "learning_rate": 0.0006,
+ "loss": 4.163488388061523,
+ "step": 968
+ },
+ {
+ "epoch": 13.461336828309305,
+ "grad_norm": 0.22957314550876617,
+ "learning_rate": 0.0006,
+ "loss": 4.178133964538574,
+ "step": 969
+ },
+ {
+ "epoch": 13.475316732197467,
+ "grad_norm": 0.22867488861083984,
+ "learning_rate": 0.0006,
+ "loss": 4.159056186676025,
+ "step": 970
+ },
+ {
+ "epoch": 13.489296636085626,
+ "grad_norm": 0.21737419068813324,
+ "learning_rate": 0.0006,
+ "loss": 4.138628005981445,
+ "step": 971
+ },
+ {
+ "epoch": 13.503276539973788,
+ "grad_norm": 0.2319175899028778,
+ "learning_rate": 0.0006,
+ "loss": 4.14644718170166,
+ "step": 972
+ },
+ {
+ "epoch": 13.517256443861948,
+ "grad_norm": 0.2572193443775177,
+ "learning_rate": 0.0006,
+ "loss": 4.175213813781738,
+ "step": 973
+ },
+ {
+ "epoch": 13.53123634775011,
+ "grad_norm": 0.23483099043369293,
+ "learning_rate": 0.0006,
+ "loss": 4.133171558380127,
+ "step": 974
+ },
+ {
+ "epoch": 13.54521625163827,
+ "grad_norm": 0.2071552872657776,
+ "learning_rate": 0.0006,
+ "loss": 4.13730525970459,
+ "step": 975
+ },
+ {
+ "epoch": 13.55919615552643,
+ "grad_norm": 0.23074553906917572,
+ "learning_rate": 0.0006,
+ "loss": 4.175051689147949,
+ "step": 976
+ },
+ {
+ "epoch": 13.57317605941459,
+ "grad_norm": 0.2480078786611557,
+ "learning_rate": 0.0006,
+ "loss": 4.167630672454834,
+ "step": 977
+ },
+ {
+ "epoch": 13.587155963302752,
+ "grad_norm": 0.23444348573684692,
+ "learning_rate": 0.0006,
+ "loss": 4.141780853271484,
+ "step": 978
+ },
+ {
+ "epoch": 13.601135867190912,
+ "grad_norm": 0.2227829396724701,
+ "learning_rate": 0.0006,
+ "loss": 4.157566547393799,
+ "step": 979
+ },
+ {
+ "epoch": 13.615115771079074,
+ "grad_norm": 0.21478354930877686,
+ "learning_rate": 0.0006,
+ "loss": 4.131053447723389,
+ "step": 980
+ },
+ {
+ "epoch": 13.629095674967235,
+ "grad_norm": 0.1978664994239807,
+ "learning_rate": 0.0006,
+ "loss": 4.123660564422607,
+ "step": 981
+ },
+ {
+ "epoch": 13.643075578855395,
+ "grad_norm": 0.19980201125144958,
+ "learning_rate": 0.0006,
+ "loss": 4.174160480499268,
+ "step": 982
+ },
+ {
+ "epoch": 13.657055482743557,
+ "grad_norm": 0.19815555214881897,
+ "learning_rate": 0.0006,
+ "loss": 4.181703090667725,
+ "step": 983
+ },
+ {
+ "epoch": 13.671035386631717,
+ "grad_norm": 0.19524012506008148,
+ "learning_rate": 0.0006,
+ "loss": 4.163766860961914,
+ "step": 984
+ },
+ {
+ "epoch": 13.685015290519878,
+ "grad_norm": 0.2286096215248108,
+ "learning_rate": 0.0006,
+ "loss": 4.172213554382324,
+ "step": 985
+ },
+ {
+ "epoch": 13.698995194408038,
+ "grad_norm": 0.2210782766342163,
+ "learning_rate": 0.0006,
+ "loss": 4.187033653259277,
+ "step": 986
+ },
+ {
+ "epoch": 13.7129750982962,
+ "grad_norm": 0.21874216198921204,
+ "learning_rate": 0.0006,
+ "loss": 4.125125885009766,
+ "step": 987
+ },
+ {
+ "epoch": 13.72695500218436,
+ "grad_norm": 0.22848057746887207,
+ "learning_rate": 0.0006,
+ "loss": 4.153496742248535,
+ "step": 988
+ },
+ {
+ "epoch": 13.740934906072521,
+ "grad_norm": 0.2250450700521469,
+ "learning_rate": 0.0006,
+ "loss": 4.149165630340576,
+ "step": 989
+ },
+ {
+ "epoch": 13.754914809960681,
+ "grad_norm": 0.21443772315979004,
+ "learning_rate": 0.0006,
+ "loss": 4.1528825759887695,
+ "step": 990
+ },
+ {
+ "epoch": 13.768894713848843,
+ "grad_norm": 0.21927927434444427,
+ "learning_rate": 0.0006,
+ "loss": 4.146831512451172,
+ "step": 991
+ },
+ {
+ "epoch": 13.782874617737003,
+ "grad_norm": 0.2413124144077301,
+ "learning_rate": 0.0006,
+ "loss": 4.136909008026123,
+ "step": 992
+ },
+ {
+ "epoch": 13.796854521625164,
+ "grad_norm": 0.2603479325771332,
+ "learning_rate": 0.0006,
+ "loss": 4.12525749206543,
+ "step": 993
+ },
+ {
+ "epoch": 13.810834425513324,
+ "grad_norm": 0.26246970891952515,
+ "learning_rate": 0.0006,
+ "loss": 4.114049434661865,
+ "step": 994
+ },
+ {
+ "epoch": 13.824814329401486,
+ "grad_norm": 0.27031877636909485,
+ "learning_rate": 0.0006,
+ "loss": 4.1646552085876465,
+ "step": 995
+ },
+ {
+ "epoch": 13.838794233289645,
+ "grad_norm": 0.2499857395887375,
+ "learning_rate": 0.0006,
+ "loss": 4.139284133911133,
+ "step": 996
+ },
+ {
+ "epoch": 13.852774137177807,
+ "grad_norm": 0.22026537358760834,
+ "learning_rate": 0.0006,
+ "loss": 4.142191410064697,
+ "step": 997
+ },
+ {
+ "epoch": 13.866754041065967,
+ "grad_norm": 0.23738551139831543,
+ "learning_rate": 0.0006,
+ "loss": 4.1422882080078125,
+ "step": 998
+ },
+ {
+ "epoch": 13.880733944954128,
+ "grad_norm": 0.2416357398033142,
+ "learning_rate": 0.0006,
+ "loss": 4.14063835144043,
+ "step": 999
+ },
+ {
+ "epoch": 13.89471384884229,
+ "grad_norm": 0.33822184801101685,
+ "learning_rate": 0.0006,
+ "loss": 4.12839412689209,
+ "step": 1000
+ },
+ {
+ "epoch": 13.90869375273045,
+ "grad_norm": 0.3409678339958191,
+ "learning_rate": 0.0006,
+ "loss": 4.145351886749268,
+ "step": 1001
+ },
+ {
+ "epoch": 13.922673656618612,
+ "grad_norm": 0.2467597872018814,
+ "learning_rate": 0.0006,
+ "loss": 4.155339241027832,
+ "step": 1002
+ },
+ {
+ "epoch": 13.936653560506771,
+ "grad_norm": 0.2314649075269699,
+ "learning_rate": 0.0006,
+ "loss": 4.130176067352295,
+ "step": 1003
+ },
+ {
+ "epoch": 13.950633464394933,
+ "grad_norm": 0.23701290786266327,
+ "learning_rate": 0.0006,
+ "loss": 4.19205379486084,
+ "step": 1004
+ },
+ {
+ "epoch": 13.964613368283093,
+ "grad_norm": 0.2466491460800171,
+ "learning_rate": 0.0006,
+ "loss": 4.118908882141113,
+ "step": 1005
+ },
+ {
+ "epoch": 13.978593272171254,
+ "grad_norm": 0.23746836185455322,
+ "learning_rate": 0.0006,
+ "loss": 4.16111946105957,
+ "step": 1006
+ },
+ {
+ "epoch": 13.992573176059414,
+ "grad_norm": 0.24497751891613007,
+ "learning_rate": 0.0006,
+ "loss": 4.148624420166016,
+ "step": 1007
+ },
+ {
+ "epoch": 14.0,
+ "grad_norm": 0.25735899806022644,
+ "learning_rate": 0.0006,
+ "loss": 4.12002420425415,
+ "step": 1008
+ },
+ {
+ "epoch": 14.0,
+ "eval_loss": 4.335351467132568,
+ "eval_runtime": 44.0523,
+ "eval_samples_per_second": 55.434,
+ "eval_steps_per_second": 3.473,
+ "step": 1008
+ },
+ {
+ "epoch": 14.013979903888162,
+ "grad_norm": 0.24570082128047943,
+ "learning_rate": 0.0006,
+ "loss": 4.1036176681518555,
+ "step": 1009
+ },
+ {
+ "epoch": 14.027959807776321,
+ "grad_norm": 0.2525855302810669,
+ "learning_rate": 0.0006,
+ "loss": 4.142077445983887,
+ "step": 1010
+ },
+ {
+ "epoch": 14.041939711664483,
+ "grad_norm": 0.2701111435890198,
+ "learning_rate": 0.0006,
+ "loss": 4.096988677978516,
+ "step": 1011
+ },
+ {
+ "epoch": 14.055919615552643,
+ "grad_norm": 0.28173309564590454,
+ "learning_rate": 0.0006,
+ "loss": 4.148448944091797,
+ "step": 1012
+ },
+ {
+ "epoch": 14.069899519440805,
+ "grad_norm": 0.2651294469833374,
+ "learning_rate": 0.0006,
+ "loss": 4.121731281280518,
+ "step": 1013
+ },
+ {
+ "epoch": 14.083879423328964,
+ "grad_norm": 0.21160121262073517,
+ "learning_rate": 0.0006,
+ "loss": 4.108980178833008,
+ "step": 1014
+ },
+ {
+ "epoch": 14.097859327217126,
+ "grad_norm": 0.24786953628063202,
+ "learning_rate": 0.0006,
+ "loss": 4.133942604064941,
+ "step": 1015
+ },
+ {
+ "epoch": 14.111839231105286,
+ "grad_norm": 0.2722747027873993,
+ "learning_rate": 0.0006,
+ "loss": 4.115242958068848,
+ "step": 1016
+ },
+ {
+ "epoch": 14.125819134993447,
+ "grad_norm": 0.273360013961792,
+ "learning_rate": 0.0006,
+ "loss": 4.059296607971191,
+ "step": 1017
+ },
+ {
+ "epoch": 14.139799038881607,
+ "grad_norm": 0.2541784942150116,
+ "learning_rate": 0.0006,
+ "loss": 4.118365287780762,
+ "step": 1018
+ },
+ {
+ "epoch": 14.153778942769769,
+ "grad_norm": 0.23806381225585938,
+ "learning_rate": 0.0006,
+ "loss": 4.102812767028809,
+ "step": 1019
+ },
+ {
+ "epoch": 14.167758846657929,
+ "grad_norm": 0.2541005313396454,
+ "learning_rate": 0.0006,
+ "loss": 4.093264579772949,
+ "step": 1020
+ },
+ {
+ "epoch": 14.18173875054609,
+ "grad_norm": 0.2619539499282837,
+ "learning_rate": 0.0006,
+ "loss": 4.114917278289795,
+ "step": 1021
+ },
+ {
+ "epoch": 14.19571865443425,
+ "grad_norm": 0.2466963529586792,
+ "learning_rate": 0.0006,
+ "loss": 4.098258972167969,
+ "step": 1022
+ },
+ {
+ "epoch": 14.209698558322412,
+ "grad_norm": 0.24341611564159393,
+ "learning_rate": 0.0006,
+ "loss": 4.109346389770508,
+ "step": 1023
+ },
+ {
+ "epoch": 14.223678462210572,
+ "grad_norm": 0.23977765440940857,
+ "learning_rate": 0.0006,
+ "loss": 4.106716156005859,
+ "step": 1024
+ },
+ {
+ "epoch": 14.237658366098733,
+ "grad_norm": 0.253528356552124,
+ "learning_rate": 0.0006,
+ "loss": 4.102226257324219,
+ "step": 1025
+ },
+ {
+ "epoch": 14.251638269986893,
+ "grad_norm": 0.26954543590545654,
+ "learning_rate": 0.0006,
+ "loss": 4.107413291931152,
+ "step": 1026
+ },
+ {
+ "epoch": 14.265618173875055,
+ "grad_norm": 0.2610514760017395,
+ "learning_rate": 0.0006,
+ "loss": 4.110824108123779,
+ "step": 1027
+ },
+ {
+ "epoch": 14.279598077763215,
+ "grad_norm": 0.2579168677330017,
+ "learning_rate": 0.0006,
+ "loss": 4.082438945770264,
+ "step": 1028
+ },
+ {
+ "epoch": 14.293577981651376,
+ "grad_norm": 0.26916536688804626,
+ "learning_rate": 0.0006,
+ "loss": 4.075734615325928,
+ "step": 1029
+ },
+ {
+ "epoch": 14.307557885539538,
+ "grad_norm": 0.2998618185520172,
+ "learning_rate": 0.0006,
+ "loss": 4.088419437408447,
+ "step": 1030
+ },
+ {
+ "epoch": 14.321537789427698,
+ "grad_norm": 0.3162737190723419,
+ "learning_rate": 0.0006,
+ "loss": 4.125833034515381,
+ "step": 1031
+ },
+ {
+ "epoch": 14.33551769331586,
+ "grad_norm": 0.318601131439209,
+ "learning_rate": 0.0006,
+ "loss": 4.077424049377441,
+ "step": 1032
+ },
+ {
+ "epoch": 14.349497597204019,
+ "grad_norm": 0.32113415002822876,
+ "learning_rate": 0.0006,
+ "loss": 4.113360404968262,
+ "step": 1033
+ },
+ {
+ "epoch": 14.36347750109218,
+ "grad_norm": 0.3150886297225952,
+ "learning_rate": 0.0006,
+ "loss": 4.100013732910156,
+ "step": 1034
+ },
+ {
+ "epoch": 14.37745740498034,
+ "grad_norm": 0.29279956221580505,
+ "learning_rate": 0.0006,
+ "loss": 4.136394500732422,
+ "step": 1035
+ },
+ {
+ "epoch": 14.391437308868502,
+ "grad_norm": 0.28532543778419495,
+ "learning_rate": 0.0006,
+ "loss": 4.138948440551758,
+ "step": 1036
+ },
+ {
+ "epoch": 14.405417212756662,
+ "grad_norm": 0.2825978398323059,
+ "learning_rate": 0.0006,
+ "loss": 4.112217903137207,
+ "step": 1037
+ },
+ {
+ "epoch": 14.419397116644824,
+ "grad_norm": 0.2891198694705963,
+ "learning_rate": 0.0006,
+ "loss": 4.102682113647461,
+ "step": 1038
+ },
+ {
+ "epoch": 14.433377020532983,
+ "grad_norm": 0.2917391061782837,
+ "learning_rate": 0.0006,
+ "loss": 4.120752811431885,
+ "step": 1039
+ },
+ {
+ "epoch": 14.447356924421145,
+ "grad_norm": 0.2589806914329529,
+ "learning_rate": 0.0006,
+ "loss": 4.130519390106201,
+ "step": 1040
+ },
+ {
+ "epoch": 14.461336828309305,
+ "grad_norm": 0.2674788534641266,
+ "learning_rate": 0.0006,
+ "loss": 4.130382537841797,
+ "step": 1041
+ },
+ {
+ "epoch": 14.475316732197467,
+ "grad_norm": 0.2820362150669098,
+ "learning_rate": 0.0006,
+ "loss": 4.13947868347168,
+ "step": 1042
+ },
+ {
+ "epoch": 14.489296636085626,
+ "grad_norm": 0.2650109529495239,
+ "learning_rate": 0.0006,
+ "loss": 4.130346775054932,
+ "step": 1043
+ },
+ {
+ "epoch": 14.503276539973788,
+ "grad_norm": 0.29137638211250305,
+ "learning_rate": 0.0006,
+ "loss": 4.055751800537109,
+ "step": 1044
+ },
+ {
+ "epoch": 14.517256443861948,
+ "grad_norm": 0.3232433497905731,
+ "learning_rate": 0.0006,
+ "loss": 4.114810943603516,
+ "step": 1045
+ },
+ {
+ "epoch": 14.53123634775011,
+ "grad_norm": 0.2724473476409912,
+ "learning_rate": 0.0006,
+ "loss": 4.088351249694824,
+ "step": 1046
+ },
+ {
+ "epoch": 14.54521625163827,
+ "grad_norm": 0.23994430899620056,
+ "learning_rate": 0.0006,
+ "loss": 4.110936164855957,
+ "step": 1047
+ },
+ {
+ "epoch": 14.55919615552643,
+ "grad_norm": 0.2422720044851303,
+ "learning_rate": 0.0006,
+ "loss": 4.132844924926758,
+ "step": 1048
+ },
+ {
+ "epoch": 14.57317605941459,
+ "grad_norm": 0.21148815751075745,
+ "learning_rate": 0.0006,
+ "loss": 4.102499961853027,
+ "step": 1049
+ },
+ {
+ "epoch": 14.587155963302752,
+ "grad_norm": 0.22221639752388,
+ "learning_rate": 0.0006,
+ "loss": 4.126241683959961,
+ "step": 1050
+ },
+ {
+ "epoch": 14.601135867190912,
+ "grad_norm": 0.2538735866546631,
+ "learning_rate": 0.0006,
+ "loss": 4.116817951202393,
+ "step": 1051
+ },
+ {
+ "epoch": 14.615115771079074,
+ "grad_norm": 0.2555900514125824,
+ "learning_rate": 0.0006,
+ "loss": 4.106309413909912,
+ "step": 1052
+ },
+ {
+ "epoch": 14.629095674967235,
+ "grad_norm": 0.24753783643245697,
+ "learning_rate": 0.0006,
+ "loss": 4.1015119552612305,
+ "step": 1053
+ },
+ {
+ "epoch": 14.643075578855395,
+ "grad_norm": 0.238885298371315,
+ "learning_rate": 0.0006,
+ "loss": 4.120419502258301,
+ "step": 1054
+ },
+ {
+ "epoch": 14.657055482743557,
+ "grad_norm": 0.22693610191345215,
+ "learning_rate": 0.0006,
+ "loss": 4.084968566894531,
+ "step": 1055
+ },
+ {
+ "epoch": 14.671035386631717,
+ "grad_norm": 0.2100025862455368,
+ "learning_rate": 0.0006,
+ "loss": 4.108001708984375,
+ "step": 1056
+ },
+ {
+ "epoch": 14.685015290519878,
+ "grad_norm": 0.20437054336071014,
+ "learning_rate": 0.0006,
+ "loss": 4.151417255401611,
+ "step": 1057
+ },
+ {
+ "epoch": 14.698995194408038,
+ "grad_norm": 0.1926720291376114,
+ "learning_rate": 0.0006,
+ "loss": 4.091334342956543,
+ "step": 1058
+ },
+ {
+ "epoch": 14.7129750982962,
+ "grad_norm": 0.2120140641927719,
+ "learning_rate": 0.0006,
+ "loss": 4.111706256866455,
+ "step": 1059
+ },
+ {
+ "epoch": 14.72695500218436,
+ "grad_norm": 0.22877076268196106,
+ "learning_rate": 0.0006,
+ "loss": 4.123166084289551,
+ "step": 1060
+ },
+ {
+ "epoch": 14.740934906072521,
+ "grad_norm": 0.22149473428726196,
+ "learning_rate": 0.0006,
+ "loss": 4.099740028381348,
+ "step": 1061
+ },
+ {
+ "epoch": 14.754914809960681,
+ "grad_norm": 0.2351604402065277,
+ "learning_rate": 0.0006,
+ "loss": 4.066174507141113,
+ "step": 1062
+ },
+ {
+ "epoch": 14.768894713848843,
+ "grad_norm": 0.22895802557468414,
+ "learning_rate": 0.0006,
+ "loss": 4.101897239685059,
+ "step": 1063
+ },
+ {
+ "epoch": 14.782874617737003,
+ "grad_norm": 0.22050750255584717,
+ "learning_rate": 0.0006,
+ "loss": 4.122953414916992,
+ "step": 1064
+ },
+ {
+ "epoch": 14.796854521625164,
+ "grad_norm": 0.23255324363708496,
+ "learning_rate": 0.0006,
+ "loss": 4.11297607421875,
+ "step": 1065
+ },
+ {
+ "epoch": 14.810834425513324,
+ "grad_norm": 0.24522703886032104,
+ "learning_rate": 0.0006,
+ "loss": 4.131030082702637,
+ "step": 1066
+ },
+ {
+ "epoch": 14.824814329401486,
+ "grad_norm": 0.2492702752351761,
+ "learning_rate": 0.0006,
+ "loss": 4.076324939727783,
+ "step": 1067
+ },
+ {
+ "epoch": 14.838794233289645,
+ "grad_norm": 0.24410948157310486,
+ "learning_rate": 0.0006,
+ "loss": 4.109020709991455,
+ "step": 1068
+ },
+ {
+ "epoch": 14.852774137177807,
+ "grad_norm": 0.2463168203830719,
+ "learning_rate": 0.0006,
+ "loss": 4.135679244995117,
+ "step": 1069
+ },
+ {
+ "epoch": 14.866754041065967,
+ "grad_norm": 0.2563146650791168,
+ "learning_rate": 0.0006,
+ "loss": 4.0958027839660645,
+ "step": 1070
+ },
+ {
+ "epoch": 14.880733944954128,
+ "grad_norm": 0.261167049407959,
+ "learning_rate": 0.0006,
+ "loss": 4.114803314208984,
+ "step": 1071
+ },
+ {
+ "epoch": 14.89471384884229,
+ "grad_norm": 0.2593795955181122,
+ "learning_rate": 0.0006,
+ "loss": 4.1210618019104,
+ "step": 1072
+ },
+ {
+ "epoch": 14.90869375273045,
+ "grad_norm": 0.27184173464775085,
+ "learning_rate": 0.0006,
+ "loss": 4.095145225524902,
+ "step": 1073
+ },
+ {
+ "epoch": 14.922673656618612,
+ "grad_norm": 0.25289732217788696,
+ "learning_rate": 0.0006,
+ "loss": 4.107388973236084,
+ "step": 1074
+ },
+ {
+ "epoch": 14.936653560506771,
+ "grad_norm": 0.2176840454339981,
+ "learning_rate": 0.0006,
+ "loss": 4.105966567993164,
+ "step": 1075
+ },
+ {
+ "epoch": 14.950633464394933,
+ "grad_norm": 0.20930173993110657,
+ "learning_rate": 0.0006,
+ "loss": 4.126853942871094,
+ "step": 1076
+ },
+ {
+ "epoch": 14.964613368283093,
+ "grad_norm": 0.20850051939487457,
+ "learning_rate": 0.0006,
+ "loss": 4.074934959411621,
+ "step": 1077
+ },
+ {
+ "epoch": 14.978593272171254,
+ "grad_norm": 0.21987544000148773,
+ "learning_rate": 0.0006,
+ "loss": 4.123321533203125,
+ "step": 1078
+ },
+ {
+ "epoch": 14.992573176059414,
+ "grad_norm": 0.23821689188480377,
+ "learning_rate": 0.0006,
+ "loss": 4.082647323608398,
+ "step": 1079
+ },
+ {
+ "epoch": 15.0,
+ "grad_norm": 0.2590881288051605,
+ "learning_rate": 0.0006,
+ "loss": 4.113482475280762,
+ "step": 1080
+ },
+ {
+ "epoch": 15.0,
+ "eval_loss": 4.286936283111572,
+ "eval_runtime": 44.2665,
+ "eval_samples_per_second": 55.166,
+ "eval_steps_per_second": 3.456,
+ "step": 1080
+ },
+ {
+ "epoch": 15.013979903888162,
+ "grad_norm": 0.27885961532592773,
+ "learning_rate": 0.0006,
+ "loss": 4.0825958251953125,
+ "step": 1081
+ },
+ {
+ "epoch": 15.027959807776321,
+ "grad_norm": 0.2751246690750122,
+ "learning_rate": 0.0006,
+ "loss": 4.049782752990723,
+ "step": 1082
+ },
+ {
+ "epoch": 15.041939711664483,
+ "grad_norm": 0.25238561630249023,
+ "learning_rate": 0.0006,
+ "loss": 4.067366600036621,
+ "step": 1083
+ },
+ {
+ "epoch": 15.055919615552643,
+ "grad_norm": 0.27481040358543396,
+ "learning_rate": 0.0006,
+ "loss": 4.089946746826172,
+ "step": 1084
+ },
+ {
+ "epoch": 15.069899519440805,
+ "grad_norm": 0.2666703164577484,
+ "learning_rate": 0.0006,
+ "loss": 4.071957588195801,
+ "step": 1085
+ },
+ {
+ "epoch": 15.083879423328964,
+ "grad_norm": 0.2532065212726593,
+ "learning_rate": 0.0006,
+ "loss": 4.091561794281006,
+ "step": 1086
+ },
+ {
+ "epoch": 15.097859327217126,
+ "grad_norm": 0.23562374711036682,
+ "learning_rate": 0.0006,
+ "loss": 4.074953079223633,
+ "step": 1087
+ },
+ {
+ "epoch": 15.111839231105286,
+ "grad_norm": 0.2498065084218979,
+ "learning_rate": 0.0006,
+ "loss": 4.056004047393799,
+ "step": 1088
+ },
+ {
+ "epoch": 15.125819134993447,
+ "grad_norm": 0.257046639919281,
+ "learning_rate": 0.0006,
+ "loss": 4.044149875640869,
+ "step": 1089
+ },
+ {
+ "epoch": 15.139799038881607,
+ "grad_norm": 0.2417808622121811,
+ "learning_rate": 0.0006,
+ "loss": 4.071811676025391,
+ "step": 1090
+ },
+ {
+ "epoch": 15.153778942769769,
+ "grad_norm": 0.24742013216018677,
+ "learning_rate": 0.0006,
+ "loss": 4.081482887268066,
+ "step": 1091
+ },
+ {
+ "epoch": 15.167758846657929,
+ "grad_norm": 0.2610231637954712,
+ "learning_rate": 0.0006,
+ "loss": 4.06953763961792,
+ "step": 1092
+ },
+ {
+ "epoch": 15.18173875054609,
+ "grad_norm": 0.24688200652599335,
+ "learning_rate": 0.0006,
+ "loss": 4.079700469970703,
+ "step": 1093
+ },
+ {
+ "epoch": 15.19571865443425,
+ "grad_norm": 0.2650167942047119,
+ "learning_rate": 0.0006,
+ "loss": 4.082088947296143,
+ "step": 1094
+ },
+ {
+ "epoch": 15.209698558322412,
+ "grad_norm": 0.25913330912590027,
+ "learning_rate": 0.0006,
+ "loss": 4.081713676452637,
+ "step": 1095
+ },
+ {
+ "epoch": 15.223678462210572,
+ "grad_norm": 0.2547631561756134,
+ "learning_rate": 0.0006,
+ "loss": 4.073573112487793,
+ "step": 1096
+ },
+ {
+ "epoch": 15.237658366098733,
+ "grad_norm": 0.2732609510421753,
+ "learning_rate": 0.0006,
+ "loss": 4.10186767578125,
+ "step": 1097
+ },
+ {
+ "epoch": 15.251638269986893,
+ "grad_norm": 0.2990017533302307,
+ "learning_rate": 0.0006,
+ "loss": 4.085466384887695,
+ "step": 1098
+ },
+ {
+ "epoch": 15.265618173875055,
+ "grad_norm": 0.30252209305763245,
+ "learning_rate": 0.0006,
+ "loss": 4.077337265014648,
+ "step": 1099
+ },
+ {
+ "epoch": 15.279598077763215,
+ "grad_norm": 0.30046045780181885,
+ "learning_rate": 0.0006,
+ "loss": 4.0895891189575195,
+ "step": 1100
+ },
+ {
+ "epoch": 15.293577981651376,
+ "grad_norm": 0.2779843211174011,
+ "learning_rate": 0.0006,
+ "loss": 4.060354709625244,
+ "step": 1101
+ },
+ {
+ "epoch": 15.307557885539538,
+ "grad_norm": 0.26914986968040466,
+ "learning_rate": 0.0006,
+ "loss": 4.07314395904541,
+ "step": 1102
+ },
+ {
+ "epoch": 15.321537789427698,
+ "grad_norm": 0.24605873227119446,
+ "learning_rate": 0.0006,
+ "loss": 4.051377296447754,
+ "step": 1103
+ },
+ {
+ "epoch": 15.33551769331586,
+ "grad_norm": 0.25634095072746277,
+ "learning_rate": 0.0006,
+ "loss": 4.082427024841309,
+ "step": 1104
+ },
+ {
+ "epoch": 15.349497597204019,
+ "grad_norm": 0.2888158857822418,
+ "learning_rate": 0.0006,
+ "loss": 4.074253082275391,
+ "step": 1105
+ },
+ {
+ "epoch": 15.36347750109218,
+ "grad_norm": 0.2758261561393738,
+ "learning_rate": 0.0006,
+ "loss": 4.08344841003418,
+ "step": 1106
+ },
+ {
+ "epoch": 15.37745740498034,
+ "grad_norm": 0.26937270164489746,
+ "learning_rate": 0.0006,
+ "loss": 4.063424587249756,
+ "step": 1107
+ },
+ {
+ "epoch": 15.391437308868502,
+ "grad_norm": 0.2739955484867096,
+ "learning_rate": 0.0006,
+ "loss": 4.08005952835083,
+ "step": 1108
+ },
+ {
+ "epoch": 15.405417212756662,
+ "grad_norm": 0.2635386288166046,
+ "learning_rate": 0.0006,
+ "loss": 4.087360382080078,
+ "step": 1109
+ },
+ {
+ "epoch": 15.419397116644824,
+ "grad_norm": 0.2619768977165222,
+ "learning_rate": 0.0006,
+ "loss": 4.072653770446777,
+ "step": 1110
+ },
+ {
+ "epoch": 15.433377020532983,
+ "grad_norm": 0.24154804646968842,
+ "learning_rate": 0.0006,
+ "loss": 4.084464073181152,
+ "step": 1111
+ },
+ {
+ "epoch": 15.447356924421145,
+ "grad_norm": 0.24236027896404266,
+ "learning_rate": 0.0006,
+ "loss": 4.078777313232422,
+ "step": 1112
+ },
+ {
+ "epoch": 15.461336828309305,
+ "grad_norm": 0.24653038382530212,
+ "learning_rate": 0.0006,
+ "loss": 4.075024604797363,
+ "step": 1113
+ },
+ {
+ "epoch": 15.475316732197467,
+ "grad_norm": 0.27106523513793945,
+ "learning_rate": 0.0006,
+ "loss": 4.060937881469727,
+ "step": 1114
+ },
+ {
+ "epoch": 15.489296636085626,
+ "grad_norm": 0.25109633803367615,
+ "learning_rate": 0.0006,
+ "loss": 4.081971168518066,
+ "step": 1115
+ },
+ {
+ "epoch": 15.503276539973788,
+ "grad_norm": 0.23452287912368774,
+ "learning_rate": 0.0006,
+ "loss": 4.0762834548950195,
+ "step": 1116
+ },
+ {
+ "epoch": 15.517256443861948,
+ "grad_norm": 0.25415024161338806,
+ "learning_rate": 0.0006,
+ "loss": 4.069386959075928,
+ "step": 1117
+ },
+ {
+ "epoch": 15.53123634775011,
+ "grad_norm": 0.25448229908943176,
+ "learning_rate": 0.0006,
+ "loss": 4.075098514556885,
+ "step": 1118
+ },
+ {
+ "epoch": 15.54521625163827,
+ "grad_norm": 0.25679755210876465,
+ "learning_rate": 0.0006,
+ "loss": 4.097431182861328,
+ "step": 1119
+ },
+ {
+ "epoch": 15.55919615552643,
+ "grad_norm": 0.25973212718963623,
+ "learning_rate": 0.0006,
+ "loss": 4.058948516845703,
+ "step": 1120
+ },
+ {
+ "epoch": 15.57317605941459,
+ "grad_norm": 0.24511456489562988,
+ "learning_rate": 0.0006,
+ "loss": 4.092263698577881,
+ "step": 1121
+ },
+ {
+ "epoch": 15.587155963302752,
+ "grad_norm": 0.22949442267417908,
+ "learning_rate": 0.0006,
+ "loss": 4.0526604652404785,
+ "step": 1122
+ },
+ {
+ "epoch": 15.601135867190912,
+ "grad_norm": 0.22486285865306854,
+ "learning_rate": 0.0006,
+ "loss": 4.051939010620117,
+ "step": 1123
+ },
+ {
+ "epoch": 15.615115771079074,
+ "grad_norm": 0.22183601558208466,
+ "learning_rate": 0.0006,
+ "loss": 4.065430641174316,
+ "step": 1124
+ },
+ {
+ "epoch": 15.629095674967235,
+ "grad_norm": 0.2531328797340393,
+ "learning_rate": 0.0006,
+ "loss": 4.069165229797363,
+ "step": 1125
+ },
+ {
+ "epoch": 15.643075578855395,
+ "grad_norm": 0.24403320252895355,
+ "learning_rate": 0.0006,
+ "loss": 4.055041790008545,
+ "step": 1126
+ },
+ {
+ "epoch": 15.657055482743557,
+ "grad_norm": 0.24504756927490234,
+ "learning_rate": 0.0006,
+ "loss": 4.035850524902344,
+ "step": 1127
+ },
+ {
+ "epoch": 15.671035386631717,
+ "grad_norm": 0.23812057077884674,
+ "learning_rate": 0.0006,
+ "loss": 4.049278259277344,
+ "step": 1128
+ },
+ {
+ "epoch": 15.685015290519878,
+ "grad_norm": 0.23694153130054474,
+ "learning_rate": 0.0006,
+ "loss": 4.065816402435303,
+ "step": 1129
+ },
+ {
+ "epoch": 15.698995194408038,
+ "grad_norm": 0.23252786695957184,
+ "learning_rate": 0.0006,
+ "loss": 4.05952262878418,
+ "step": 1130
+ },
+ {
+ "epoch": 15.7129750982962,
+ "grad_norm": 0.2243805080652237,
+ "learning_rate": 0.0006,
+ "loss": 4.058291435241699,
+ "step": 1131
+ },
+ {
+ "epoch": 15.72695500218436,
+ "grad_norm": 0.2200988084077835,
+ "learning_rate": 0.0006,
+ "loss": 4.040788650512695,
+ "step": 1132
+ },
+ {
+ "epoch": 15.740934906072521,
+ "grad_norm": 0.21460631489753723,
+ "learning_rate": 0.0006,
+ "loss": 4.072552680969238,
+ "step": 1133
+ },
+ {
+ "epoch": 15.754914809960681,
+ "grad_norm": 0.2056441456079483,
+ "learning_rate": 0.0006,
+ "loss": 4.059467315673828,
+ "step": 1134
+ },
+ {
+ "epoch": 15.768894713848843,
+ "grad_norm": 0.2068045437335968,
+ "learning_rate": 0.0006,
+ "loss": 4.063803195953369,
+ "step": 1135
+ },
+ {
+ "epoch": 15.782874617737003,
+ "grad_norm": 0.21307601034641266,
+ "learning_rate": 0.0006,
+ "loss": 4.093092918395996,
+ "step": 1136
+ },
+ {
+ "epoch": 15.796854521625164,
+ "grad_norm": 0.20729634165763855,
+ "learning_rate": 0.0006,
+ "loss": 4.066030502319336,
+ "step": 1137
+ },
+ {
+ "epoch": 15.810834425513324,
+ "grad_norm": 0.2097514122724533,
+ "learning_rate": 0.0006,
+ "loss": 4.077326774597168,
+ "step": 1138
+ },
+ {
+ "epoch": 15.824814329401486,
+ "grad_norm": 0.21884000301361084,
+ "learning_rate": 0.0006,
+ "loss": 4.0595598220825195,
+ "step": 1139
+ },
+ {
+ "epoch": 15.838794233289645,
+ "grad_norm": 0.22220250964164734,
+ "learning_rate": 0.0006,
+ "loss": 4.061574459075928,
+ "step": 1140
+ },
+ {
+ "epoch": 15.852774137177807,
+ "grad_norm": 0.23189949989318848,
+ "learning_rate": 0.0006,
+ "loss": 4.0504045486450195,
+ "step": 1141
+ },
+ {
+ "epoch": 15.866754041065967,
+ "grad_norm": 0.226649671792984,
+ "learning_rate": 0.0006,
+ "loss": 4.060986518859863,
+ "step": 1142
+ },
+ {
+ "epoch": 15.880733944954128,
+ "grad_norm": 0.2456834763288498,
+ "learning_rate": 0.0006,
+ "loss": 4.038525581359863,
+ "step": 1143
+ },
+ {
+ "epoch": 15.89471384884229,
+ "grad_norm": 0.2818352282047272,
+ "learning_rate": 0.0006,
+ "loss": 4.062709331512451,
+ "step": 1144
+ },
+ {
+ "epoch": 15.90869375273045,
+ "grad_norm": 0.2850170135498047,
+ "learning_rate": 0.0006,
+ "loss": 4.0683274269104,
+ "step": 1145
+ },
+ {
+ "epoch": 15.922673656618612,
+ "grad_norm": 0.27691730856895447,
+ "learning_rate": 0.0006,
+ "loss": 4.076540470123291,
+ "step": 1146
+ },
+ {
+ "epoch": 15.936653560506771,
+ "grad_norm": 0.2685548961162567,
+ "learning_rate": 0.0006,
+ "loss": 4.048116683959961,
+ "step": 1147
+ },
+ {
+ "epoch": 15.950633464394933,
+ "grad_norm": 0.2452288419008255,
+ "learning_rate": 0.0006,
+ "loss": 4.06640625,
+ "step": 1148
+ },
+ {
+ "epoch": 15.964613368283093,
+ "grad_norm": 0.2601441740989685,
+ "learning_rate": 0.0006,
+ "loss": 4.073277473449707,
+ "step": 1149
+ },
+ {
+ "epoch": 15.978593272171254,
+ "grad_norm": 0.2748197913169861,
+ "learning_rate": 0.0006,
+ "loss": 4.0332536697387695,
+ "step": 1150
+ },
+ {
+ "epoch": 15.992573176059414,
+ "grad_norm": 0.27249959111213684,
+ "learning_rate": 0.0006,
+ "loss": 3.9952516555786133,
+ "step": 1151
+ },
+ {
+ "epoch": 16.0,
+ "grad_norm": 0.3475601375102997,
+ "learning_rate": 0.0006,
+ "loss": 4.040761947631836,
+ "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/mask15-l2r50-fulle-lm/checkpoint-1152/training_args.bin b/runs/mask15-l2r50-fulle-lm/checkpoint-1152/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..43721c50815fe94f90cb043bf545b8f7bd9afc38
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-1152/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:a0b8d7bb9ac952b1abed3bd1e5c8f6ebd20daa957b3a85688954f8df03be6eb9
+size 4856
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-1440/chat_template.jinja b/runs/mask15-l2r50-fulle-lm/checkpoint-1440/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/mask15-l2r50-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/mask15-l2r50-fulle-lm/checkpoint-1440/config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-1440/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..1b4ac3c550d6003148026765eba4cb1512b216c9
--- /dev/null
+++ b/runs/mask15-l2r50-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": 151672
+}
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-1440/generation_config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-1440/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..5cd15fe1269fd505cfdefe9b3e9989dacd9f68f4
--- /dev/null
+++ b/runs/mask15-l2r50-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/mask15-l2r50-fulle-lm/checkpoint-1440/model.safetensors b/runs/mask15-l2r50-fulle-lm/checkpoint-1440/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..35994e7074f1e27a48bbb1356c3a8f32c8642863
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-1440/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:ede5a6a73f1ef02336e3976dcde58c9ed09320bb0ea5b702300ce9a549c1d277
+size 583358280
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-1440/optimizer.pt b/runs/mask15-l2r50-fulle-lm/checkpoint-1440/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..36b497d5c3e8dcfcd997a22e72fe739eee7c3cb1
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-1440/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:125f20737f9d5ea7df403bda5541096e1cdb79c5ae7e1410671843379f90ac5d
+size 1166829434
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-1440/rng_state_0.pth b/runs/mask15-l2r50-fulle-lm/checkpoint-1440/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..891355b44b7f58f9f28b17ace60286400f86c9a0
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-1440/rng_state_0.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:59896f67c2f6db37039605e7d0332009cc053c099b9f3c3ffcfb76bdcae0c117
+size 14512
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-1440/rng_state_1.pth b/runs/mask15-l2r50-fulle-lm/checkpoint-1440/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..0e86a75e1b20ce8070d22628e450af5c67c9a71f
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-1440/rng_state_1.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:3a6bfee160669cd93c9a9d87b93a6a594a232c257c47afd4600d8c9a66605a1b
+size 14512
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-1440/scheduler.pt b/runs/mask15-l2r50-fulle-lm/checkpoint-1440/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..0d34fe10b069b50b5fecbd4a0affbd8f653b7b9b
--- /dev/null
+++ b/runs/mask15-l2r50-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/mask15-l2r50-fulle-lm/checkpoint-1440/tokenizer.json b/runs/mask15-l2r50-fulle-lm/checkpoint-1440/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..6226bf25372d1a86dbd704ec75d2129960f1ba88
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-1440/tokenizer.json
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:9245fe3cb2d40f9ed8d5d8ddd1d58701ba2a236beec08f656162281673f30560
+size 11424264
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-1440/tokenizer_config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-1440/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..01bc9676576e8cf62a08a9db166d6c5bab1d6727
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-1440/tokenizer_config.json
@@ -0,0 +1,20 @@
+{
+ "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|>",
+ "<|mask|>"
+ ],
+ "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/mask15-l2r50-fulle-lm/checkpoint-1440/trainer_state.json b/runs/mask15-l2r50-fulle-lm/checkpoint-1440/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..fdbe3bbf9c53e335f5d91238bc96dbbc29626f26
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-1440/trainer_state.json
@@ -0,0 +1,10266 @@
+{
+ "best_global_step": null,
+ "best_metric": null,
+ "best_model_checkpoint": null,
+ "epoch": 20.0,
+ "eval_steps": 500,
+ "global_step": 1440,
+ "is_hyper_param_search": false,
+ "is_local_process_zero": true,
+ "is_world_process_zero": true,
+ "log_history": [
+ {
+ "epoch": 0.013979903888160769,
+ "grad_norm": 9.807971954345703,
+ "learning_rate": 0.0,
+ "loss": 11.989814758300781,
+ "step": 1
+ },
+ {
+ "epoch": 0.027959807776321538,
+ "grad_norm": 9.834383010864258,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 11.993022918701172,
+ "step": 2
+ },
+ {
+ "epoch": 0.04193971166448231,
+ "grad_norm": 9.482470512390137,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 11.854345321655273,
+ "step": 3
+ },
+ {
+ "epoch": 0.055919615552643076,
+ "grad_norm": 7.678808689117432,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 11.618255615234375,
+ "step": 4
+ },
+ {
+ "epoch": 0.06989951944080385,
+ "grad_norm": 6.011275291442871,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 11.351423263549805,
+ "step": 5
+ },
+ {
+ "epoch": 0.08387942332896461,
+ "grad_norm": 5.244393825531006,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 11.128631591796875,
+ "step": 6
+ },
+ {
+ "epoch": 0.09785932721712538,
+ "grad_norm": 4.577618598937988,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 10.921937942504883,
+ "step": 7
+ },
+ {
+ "epoch": 0.11183923110528615,
+ "grad_norm": 4.03810453414917,
+ "learning_rate": 4.2e-05,
+ "loss": 10.742650985717773,
+ "step": 8
+ },
+ {
+ "epoch": 0.1258191349934469,
+ "grad_norm": 3.657679796218872,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 10.600778579711914,
+ "step": 9
+ },
+ {
+ "epoch": 0.1397990388816077,
+ "grad_norm": 3.352902889251709,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 10.489639282226562,
+ "step": 10
+ },
+ {
+ "epoch": 0.15377894276976845,
+ "grad_norm": 3.1162633895874023,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 10.417770385742188,
+ "step": 11
+ },
+ {
+ "epoch": 0.16775884665792923,
+ "grad_norm": 3.0402638912200928,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 10.35334587097168,
+ "step": 12
+ },
+ {
+ "epoch": 0.18173875054608998,
+ "grad_norm": 3.030630111694336,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 10.306867599487305,
+ "step": 13
+ },
+ {
+ "epoch": 0.19571865443425077,
+ "grad_norm": 3.035292148590088,
+ "learning_rate": 7.8e-05,
+ "loss": 10.26003646850586,
+ "step": 14
+ },
+ {
+ "epoch": 0.20969855832241152,
+ "grad_norm": 3.0125675201416016,
+ "learning_rate": 8.4e-05,
+ "loss": 10.219265937805176,
+ "step": 15
+ },
+ {
+ "epoch": 0.2236784622105723,
+ "grad_norm": 2.9998886585235596,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 10.161077499389648,
+ "step": 16
+ },
+ {
+ "epoch": 0.23765836609873306,
+ "grad_norm": 2.9411966800689697,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 10.107423782348633,
+ "step": 17
+ },
+ {
+ "epoch": 0.2516382699868938,
+ "grad_norm": 2.88081955909729,
+ "learning_rate": 0.000102,
+ "loss": 10.04700756072998,
+ "step": 18
+ },
+ {
+ "epoch": 0.2656181738750546,
+ "grad_norm": 2.8219687938690186,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 9.981185913085938,
+ "step": 19
+ },
+ {
+ "epoch": 0.2795980777632154,
+ "grad_norm": 2.79306960105896,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 9.89747142791748,
+ "step": 20
+ },
+ {
+ "epoch": 0.29357798165137616,
+ "grad_norm": 2.7314443588256836,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 9.829219818115234,
+ "step": 21
+ },
+ {
+ "epoch": 0.3075578855395369,
+ "grad_norm": 2.6923747062683105,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 9.747566223144531,
+ "step": 22
+ },
+ {
+ "epoch": 0.3215377894276977,
+ "grad_norm": 2.650602340698242,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 9.66455078125,
+ "step": 23
+ },
+ {
+ "epoch": 0.33551769331585846,
+ "grad_norm": 2.606977701187134,
+ "learning_rate": 0.000138,
+ "loss": 9.582326889038086,
+ "step": 24
+ },
+ {
+ "epoch": 0.34949759720401924,
+ "grad_norm": 2.567256212234497,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 9.492591857910156,
+ "step": 25
+ },
+ {
+ "epoch": 0.36347750109217997,
+ "grad_norm": 2.520740509033203,
+ "learning_rate": 0.00015,
+ "loss": 9.396563529968262,
+ "step": 26
+ },
+ {
+ "epoch": 0.37745740498034075,
+ "grad_norm": 2.471588611602783,
+ "learning_rate": 0.000156,
+ "loss": 9.303571701049805,
+ "step": 27
+ },
+ {
+ "epoch": 0.39143730886850153,
+ "grad_norm": 2.4341530799865723,
+ "learning_rate": 0.000162,
+ "loss": 9.191819190979004,
+ "step": 28
+ },
+ {
+ "epoch": 0.4054172127566623,
+ "grad_norm": 2.369244337081909,
+ "learning_rate": 0.000168,
+ "loss": 9.092012405395508,
+ "step": 29
+ },
+ {
+ "epoch": 0.41939711664482304,
+ "grad_norm": 2.28625226020813,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 8.984567642211914,
+ "step": 30
+ },
+ {
+ "epoch": 0.4333770205329838,
+ "grad_norm": 2.2082231044769287,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 8.889009475708008,
+ "step": 31
+ },
+ {
+ "epoch": 0.4473569244211446,
+ "grad_norm": 2.1429483890533447,
+ "learning_rate": 0.000186,
+ "loss": 8.778556823730469,
+ "step": 32
+ },
+ {
+ "epoch": 0.4613368283093054,
+ "grad_norm": 2.0937352180480957,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 8.661166191101074,
+ "step": 33
+ },
+ {
+ "epoch": 0.4753167321974661,
+ "grad_norm": 2.040790557861328,
+ "learning_rate": 0.000198,
+ "loss": 8.550382614135742,
+ "step": 34
+ },
+ {
+ "epoch": 0.4892966360856269,
+ "grad_norm": 1.93914794921875,
+ "learning_rate": 0.000204,
+ "loss": 8.463907241821289,
+ "step": 35
+ },
+ {
+ "epoch": 0.5032765399737876,
+ "grad_norm": 1.8624178171157837,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 8.3438720703125,
+ "step": 36
+ },
+ {
+ "epoch": 0.5172564438619485,
+ "grad_norm": 1.8107167482376099,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 8.21871566772461,
+ "step": 37
+ },
+ {
+ "epoch": 0.5312363477501092,
+ "grad_norm": 1.717979073524475,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 8.113494873046875,
+ "step": 38
+ },
+ {
+ "epoch": 0.54521625163827,
+ "grad_norm": 1.668742060661316,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 8.006099700927734,
+ "step": 39
+ },
+ {
+ "epoch": 0.5591961555264308,
+ "grad_norm": 1.6147786378860474,
+ "learning_rate": 0.000234,
+ "loss": 7.911509037017822,
+ "step": 40
+ },
+ {
+ "epoch": 0.5731760594145915,
+ "grad_norm": 1.535750150680542,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 7.822839736938477,
+ "step": 41
+ },
+ {
+ "epoch": 0.5871559633027523,
+ "grad_norm": 1.4700065851211548,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 7.713842868804932,
+ "step": 42
+ },
+ {
+ "epoch": 0.601135867190913,
+ "grad_norm": 1.39020574092865,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 7.6040191650390625,
+ "step": 43
+ },
+ {
+ "epoch": 0.6151157710790738,
+ "grad_norm": 1.2875399589538574,
+ "learning_rate": 0.000258,
+ "loss": 7.550642013549805,
+ "step": 44
+ },
+ {
+ "epoch": 0.6290956749672346,
+ "grad_norm": 1.2094247341156006,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 7.460824012756348,
+ "step": 45
+ },
+ {
+ "epoch": 0.6430755788553953,
+ "grad_norm": 1.126452088356018,
+ "learning_rate": 0.00027,
+ "loss": 7.380537986755371,
+ "step": 46
+ },
+ {
+ "epoch": 0.6570554827435562,
+ "grad_norm": 1.0313163995742798,
+ "learning_rate": 0.000276,
+ "loss": 7.286153793334961,
+ "step": 47
+ },
+ {
+ "epoch": 0.6710353866317169,
+ "grad_norm": 0.9172859787940979,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 7.2064714431762695,
+ "step": 48
+ },
+ {
+ "epoch": 0.6850152905198776,
+ "grad_norm": 0.8148201107978821,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 7.158207416534424,
+ "step": 49
+ },
+ {
+ "epoch": 0.6989951944080385,
+ "grad_norm": 0.650123119354248,
+ "learning_rate": 0.000294,
+ "loss": 7.108791828155518,
+ "step": 50
+ },
+ {
+ "epoch": 0.7129750982961992,
+ "grad_norm": 0.5437585711479187,
+ "learning_rate": 0.0003,
+ "loss": 7.083050727844238,
+ "step": 51
+ },
+ {
+ "epoch": 0.7269550021843599,
+ "grad_norm": 0.46762895584106445,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 7.058027267456055,
+ "step": 52
+ },
+ {
+ "epoch": 0.7409349060725208,
+ "grad_norm": 0.47947561740875244,
+ "learning_rate": 0.000312,
+ "loss": 7.015172958374023,
+ "step": 53
+ },
+ {
+ "epoch": 0.7549148099606815,
+ "grad_norm": 0.7546492218971252,
+ "learning_rate": 0.000318,
+ "loss": 7.024629592895508,
+ "step": 54
+ },
+ {
+ "epoch": 0.7688947138488423,
+ "grad_norm": 0.6153718829154968,
+ "learning_rate": 0.000324,
+ "loss": 7.026667594909668,
+ "step": 55
+ },
+ {
+ "epoch": 0.7828746177370031,
+ "grad_norm": 0.3359069228172302,
+ "learning_rate": 0.00033,
+ "loss": 7.008166313171387,
+ "step": 56
+ },
+ {
+ "epoch": 0.7968545216251638,
+ "grad_norm": 0.48906823992729187,
+ "learning_rate": 0.000336,
+ "loss": 7.019716262817383,
+ "step": 57
+ },
+ {
+ "epoch": 0.8108344255133246,
+ "grad_norm": 0.5525421500205994,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 7.02108097076416,
+ "step": 58
+ },
+ {
+ "epoch": 0.8248143294014854,
+ "grad_norm": 0.3103712201118469,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 7.003164768218994,
+ "step": 59
+ },
+ {
+ "epoch": 0.8387942332896461,
+ "grad_norm": 0.4431874752044678,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 7.003463268280029,
+ "step": 60
+ },
+ {
+ "epoch": 0.8527741371778069,
+ "grad_norm": 0.4291120767593384,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 6.96931791305542,
+ "step": 61
+ },
+ {
+ "epoch": 0.8667540410659677,
+ "grad_norm": 0.6566054224967957,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 6.989445686340332,
+ "step": 62
+ },
+ {
+ "epoch": 0.8807339449541285,
+ "grad_norm": 0.20663189888000488,
+ "learning_rate": 0.000372,
+ "loss": 6.9669342041015625,
+ "step": 63
+ },
+ {
+ "epoch": 0.8947138488422892,
+ "grad_norm": 0.6242535710334778,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 6.949883460998535,
+ "step": 64
+ },
+ {
+ "epoch": 0.9086937527304499,
+ "grad_norm": 0.6984224915504456,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 6.955153465270996,
+ "step": 65
+ },
+ {
+ "epoch": 0.9226736566186108,
+ "grad_norm": 0.6328083872795105,
+ "learning_rate": 0.00039,
+ "loss": 6.965421676635742,
+ "step": 66
+ },
+ {
+ "epoch": 0.9366535605067715,
+ "grad_norm": 1.213352918624878,
+ "learning_rate": 0.000396,
+ "loss": 6.9454345703125,
+ "step": 67
+ },
+ {
+ "epoch": 0.9506334643949322,
+ "grad_norm": 0.9221940636634827,
+ "learning_rate": 0.000402,
+ "loss": 6.923908233642578,
+ "step": 68
+ },
+ {
+ "epoch": 0.9646133682830931,
+ "grad_norm": 0.6825450658798218,
+ "learning_rate": 0.000408,
+ "loss": 6.910131454467773,
+ "step": 69
+ },
+ {
+ "epoch": 0.9785932721712538,
+ "grad_norm": 0.5690162181854248,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 6.89891242980957,
+ "step": 70
+ },
+ {
+ "epoch": 0.9925731760594146,
+ "grad_norm": 0.4320870041847229,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 6.896081924438477,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.31632405519485474,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 6.897444725036621,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 7.757839679718018,
+ "eval_runtime": 43.8338,
+ "eval_samples_per_second": 55.71,
+ "eval_steps_per_second": 3.49,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139799038881607,
+ "grad_norm": 0.3789916932582855,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 6.877245903015137,
+ "step": 73
+ },
+ {
+ "epoch": 1.0279598077763215,
+ "grad_norm": 0.9167932868003845,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 6.921600341796875,
+ "step": 74
+ },
+ {
+ "epoch": 1.0419397116644824,
+ "grad_norm": 0.581188440322876,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 6.861001968383789,
+ "step": 75
+ },
+ {
+ "epoch": 1.0559196155526431,
+ "grad_norm": 0.4179714024066925,
+ "learning_rate": 0.00045,
+ "loss": 6.875657081604004,
+ "step": 76
+ },
+ {
+ "epoch": 1.0698995194408039,
+ "grad_norm": 1.0669957399368286,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 6.857122421264648,
+ "step": 77
+ },
+ {
+ "epoch": 1.0838794233289646,
+ "grad_norm": 0.27855145931243896,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 6.828852653503418,
+ "step": 78
+ },
+ {
+ "epoch": 1.0978593272171253,
+ "grad_norm": 0.7192047834396362,
+ "learning_rate": 0.000468,
+ "loss": 6.870839595794678,
+ "step": 79
+ },
+ {
+ "epoch": 1.1118392311052863,
+ "grad_norm": 0.5583325624465942,
+ "learning_rate": 0.000474,
+ "loss": 6.8497514724731445,
+ "step": 80
+ },
+ {
+ "epoch": 1.125819134993447,
+ "grad_norm": 0.3001925051212311,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 6.858528137207031,
+ "step": 81
+ },
+ {
+ "epoch": 1.1397990388816077,
+ "grad_norm": 0.2408239096403122,
+ "learning_rate": 0.000486,
+ "loss": 6.83231258392334,
+ "step": 82
+ },
+ {
+ "epoch": 1.1537789427697684,
+ "grad_norm": 0.28230324387550354,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 6.815476894378662,
+ "step": 83
+ },
+ {
+ "epoch": 1.1677588466579292,
+ "grad_norm": 0.3247123658657074,
+ "learning_rate": 0.000498,
+ "loss": 6.780126094818115,
+ "step": 84
+ },
+ {
+ "epoch": 1.18173875054609,
+ "grad_norm": 0.25713011622428894,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 6.7798309326171875,
+ "step": 85
+ },
+ {
+ "epoch": 1.1957186544342508,
+ "grad_norm": 0.5386835932731628,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 6.791745185852051,
+ "step": 86
+ },
+ {
+ "epoch": 1.2096985583224116,
+ "grad_norm": 0.2226393222808838,
+ "learning_rate": 0.000516,
+ "loss": 6.7826972007751465,
+ "step": 87
+ },
+ {
+ "epoch": 1.2236784622105723,
+ "grad_norm": 0.4338362216949463,
+ "learning_rate": 0.000522,
+ "loss": 6.805043697357178,
+ "step": 88
+ },
+ {
+ "epoch": 1.237658366098733,
+ "grad_norm": 0.2953208386898041,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 6.768434524536133,
+ "step": 89
+ },
+ {
+ "epoch": 1.2516382699868938,
+ "grad_norm": 0.13453717529773712,
+ "learning_rate": 0.000534,
+ "loss": 6.773697376251221,
+ "step": 90
+ },
+ {
+ "epoch": 1.2656181738750547,
+ "grad_norm": 0.35774412751197815,
+ "learning_rate": 0.00054,
+ "loss": 6.766414642333984,
+ "step": 91
+ },
+ {
+ "epoch": 1.2795980777632154,
+ "grad_norm": 0.4669720530509949,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 6.754847526550293,
+ "step": 92
+ },
+ {
+ "epoch": 1.2935779816513762,
+ "grad_norm": 0.13806621730327606,
+ "learning_rate": 0.000552,
+ "loss": 6.746858596801758,
+ "step": 93
+ },
+ {
+ "epoch": 1.307557885539537,
+ "grad_norm": 0.3280332386493683,
+ "learning_rate": 0.000558,
+ "loss": 6.715662956237793,
+ "step": 94
+ },
+ {
+ "epoch": 1.3215377894276976,
+ "grad_norm": 0.4689937233924866,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 6.734938144683838,
+ "step": 95
+ },
+ {
+ "epoch": 1.3355176933158583,
+ "grad_norm": 0.35371264815330505,
+ "learning_rate": 0.00057,
+ "loss": 6.748386383056641,
+ "step": 96
+ },
+ {
+ "epoch": 1.3494975972040193,
+ "grad_norm": 0.15232303738594055,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 6.705557823181152,
+ "step": 97
+ },
+ {
+ "epoch": 1.36347750109218,
+ "grad_norm": 0.30132821202278137,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 6.7199859619140625,
+ "step": 98
+ },
+ {
+ "epoch": 1.3774574049803407,
+ "grad_norm": 0.42174842953681946,
+ "learning_rate": 0.000588,
+ "loss": 6.715370178222656,
+ "step": 99
+ },
+ {
+ "epoch": 1.3914373088685015,
+ "grad_norm": 0.6257228851318359,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 6.707026958465576,
+ "step": 100
+ },
+ {
+ "epoch": 1.4054172127566624,
+ "grad_norm": 0.4551195800304413,
+ "learning_rate": 0.0006,
+ "loss": 6.7078423500061035,
+ "step": 101
+ },
+ {
+ "epoch": 1.4193971166448232,
+ "grad_norm": 0.41940346360206604,
+ "learning_rate": 0.0006,
+ "loss": 6.6959357261657715,
+ "step": 102
+ },
+ {
+ "epoch": 1.4333770205329839,
+ "grad_norm": 0.32251718640327454,
+ "learning_rate": 0.0006,
+ "loss": 6.689168930053711,
+ "step": 103
+ },
+ {
+ "epoch": 1.4473569244211446,
+ "grad_norm": 0.2992720305919647,
+ "learning_rate": 0.0006,
+ "loss": 6.680738925933838,
+ "step": 104
+ },
+ {
+ "epoch": 1.4613368283093053,
+ "grad_norm": 0.3228456974029541,
+ "learning_rate": 0.0006,
+ "loss": 6.672350883483887,
+ "step": 105
+ },
+ {
+ "epoch": 1.475316732197466,
+ "grad_norm": 0.24954743683338165,
+ "learning_rate": 0.0006,
+ "loss": 6.653716087341309,
+ "step": 106
+ },
+ {
+ "epoch": 1.4892966360856268,
+ "grad_norm": 0.30740687251091003,
+ "learning_rate": 0.0006,
+ "loss": 6.676583290100098,
+ "step": 107
+ },
+ {
+ "epoch": 1.5032765399737875,
+ "grad_norm": 0.24950599670410156,
+ "learning_rate": 0.0006,
+ "loss": 6.656691551208496,
+ "step": 108
+ },
+ {
+ "epoch": 1.5172564438619485,
+ "grad_norm": 0.24293005466461182,
+ "learning_rate": 0.0006,
+ "loss": 6.640995979309082,
+ "step": 109
+ },
+ {
+ "epoch": 1.5312363477501092,
+ "grad_norm": 0.30167272686958313,
+ "learning_rate": 0.0006,
+ "loss": 6.647380352020264,
+ "step": 110
+ },
+ {
+ "epoch": 1.5452162516382701,
+ "grad_norm": 0.4424632787704468,
+ "learning_rate": 0.0006,
+ "loss": 6.6548261642456055,
+ "step": 111
+ },
+ {
+ "epoch": 1.5591961555264309,
+ "grad_norm": 0.5295748114585876,
+ "learning_rate": 0.0006,
+ "loss": 6.64370059967041,
+ "step": 112
+ },
+ {
+ "epoch": 1.5731760594145916,
+ "grad_norm": 0.6829339265823364,
+ "learning_rate": 0.0006,
+ "loss": 6.654196739196777,
+ "step": 113
+ },
+ {
+ "epoch": 1.5871559633027523,
+ "grad_norm": 0.6534460186958313,
+ "learning_rate": 0.0006,
+ "loss": 6.675765037536621,
+ "step": 114
+ },
+ {
+ "epoch": 1.601135867190913,
+ "grad_norm": 0.6172244548797607,
+ "learning_rate": 0.0006,
+ "loss": 6.631234169006348,
+ "step": 115
+ },
+ {
+ "epoch": 1.6151157710790738,
+ "grad_norm": 0.5650008320808411,
+ "learning_rate": 0.0006,
+ "loss": 6.654262542724609,
+ "step": 116
+ },
+ {
+ "epoch": 1.6290956749672345,
+ "grad_norm": 0.3890475928783417,
+ "learning_rate": 0.0006,
+ "loss": 6.627526760101318,
+ "step": 117
+ },
+ {
+ "epoch": 1.6430755788553952,
+ "grad_norm": 0.6409873366355896,
+ "learning_rate": 0.0006,
+ "loss": 6.619794845581055,
+ "step": 118
+ },
+ {
+ "epoch": 1.6570554827435562,
+ "grad_norm": 0.5052326321601868,
+ "learning_rate": 0.0006,
+ "loss": 6.612556457519531,
+ "step": 119
+ },
+ {
+ "epoch": 1.671035386631717,
+ "grad_norm": 0.5001237988471985,
+ "learning_rate": 0.0006,
+ "loss": 6.577266693115234,
+ "step": 120
+ },
+ {
+ "epoch": 1.6850152905198776,
+ "grad_norm": 0.5328938364982605,
+ "learning_rate": 0.0006,
+ "loss": 6.59553337097168,
+ "step": 121
+ },
+ {
+ "epoch": 1.6989951944080386,
+ "grad_norm": 0.3568951189517975,
+ "learning_rate": 0.0006,
+ "loss": 6.602717399597168,
+ "step": 122
+ },
+ {
+ "epoch": 1.7129750982961993,
+ "grad_norm": 0.4017309546470642,
+ "learning_rate": 0.0006,
+ "loss": 6.589657783508301,
+ "step": 123
+ },
+ {
+ "epoch": 1.72695500218436,
+ "grad_norm": 0.21432629227638245,
+ "learning_rate": 0.0006,
+ "loss": 6.586555480957031,
+ "step": 124
+ },
+ {
+ "epoch": 1.7409349060725208,
+ "grad_norm": 0.21038052439689636,
+ "learning_rate": 0.0006,
+ "loss": 6.576569557189941,
+ "step": 125
+ },
+ {
+ "epoch": 1.7549148099606815,
+ "grad_norm": 0.23074904084205627,
+ "learning_rate": 0.0006,
+ "loss": 6.5880632400512695,
+ "step": 126
+ },
+ {
+ "epoch": 1.7688947138488422,
+ "grad_norm": 0.42963048815727234,
+ "learning_rate": 0.0006,
+ "loss": 6.603862762451172,
+ "step": 127
+ },
+ {
+ "epoch": 1.782874617737003,
+ "grad_norm": 0.361331045627594,
+ "learning_rate": 0.0006,
+ "loss": 6.579834938049316,
+ "step": 128
+ },
+ {
+ "epoch": 1.7968545216251637,
+ "grad_norm": 0.4951060712337494,
+ "learning_rate": 0.0006,
+ "loss": 6.570443630218506,
+ "step": 129
+ },
+ {
+ "epoch": 1.8108344255133246,
+ "grad_norm": 0.2258434295654297,
+ "learning_rate": 0.0006,
+ "loss": 6.5664777755737305,
+ "step": 130
+ },
+ {
+ "epoch": 1.8248143294014854,
+ "grad_norm": 0.2922155559062958,
+ "learning_rate": 0.0006,
+ "loss": 6.561326503753662,
+ "step": 131
+ },
+ {
+ "epoch": 1.838794233289646,
+ "grad_norm": 0.19068220257759094,
+ "learning_rate": 0.0006,
+ "loss": 6.528727054595947,
+ "step": 132
+ },
+ {
+ "epoch": 1.852774137177807,
+ "grad_norm": 0.2122010439634323,
+ "learning_rate": 0.0006,
+ "loss": 6.535636901855469,
+ "step": 133
+ },
+ {
+ "epoch": 1.8667540410659678,
+ "grad_norm": 0.25760164856910706,
+ "learning_rate": 0.0006,
+ "loss": 6.530498504638672,
+ "step": 134
+ },
+ {
+ "epoch": 1.8807339449541285,
+ "grad_norm": 0.1761016845703125,
+ "learning_rate": 0.0006,
+ "loss": 6.514466285705566,
+ "step": 135
+ },
+ {
+ "epoch": 1.8947138488422892,
+ "grad_norm": 0.2250051498413086,
+ "learning_rate": 0.0006,
+ "loss": 6.521268844604492,
+ "step": 136
+ },
+ {
+ "epoch": 1.90869375273045,
+ "grad_norm": 0.34458497166633606,
+ "learning_rate": 0.0006,
+ "loss": 6.512831687927246,
+ "step": 137
+ },
+ {
+ "epoch": 1.9226736566186107,
+ "grad_norm": 0.3468617796897888,
+ "learning_rate": 0.0006,
+ "loss": 6.515641689300537,
+ "step": 138
+ },
+ {
+ "epoch": 1.9366535605067714,
+ "grad_norm": 0.5051495432853699,
+ "learning_rate": 0.0006,
+ "loss": 6.5147905349731445,
+ "step": 139
+ },
+ {
+ "epoch": 1.9506334643949321,
+ "grad_norm": 0.7106727361679077,
+ "learning_rate": 0.0006,
+ "loss": 6.519277572631836,
+ "step": 140
+ },
+ {
+ "epoch": 1.964613368283093,
+ "grad_norm": 0.8881394267082214,
+ "learning_rate": 0.0006,
+ "loss": 6.526865482330322,
+ "step": 141
+ },
+ {
+ "epoch": 1.9785932721712538,
+ "grad_norm": 0.5552834272384644,
+ "learning_rate": 0.0006,
+ "loss": 6.469970226287842,
+ "step": 142
+ },
+ {
+ "epoch": 1.9925731760594148,
+ "grad_norm": 0.6903126835823059,
+ "learning_rate": 0.0006,
+ "loss": 6.476300239562988,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.47679027915000916,
+ "learning_rate": 0.0006,
+ "loss": 6.463827133178711,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 7.388528823852539,
+ "eval_runtime": 44.2519,
+ "eval_samples_per_second": 55.184,
+ "eval_steps_per_second": 3.457,
+ "step": 144
+ },
+ {
+ "epoch": 2.0139799038881607,
+ "grad_norm": 0.4719221293926239,
+ "learning_rate": 0.0006,
+ "loss": 6.480956077575684,
+ "step": 145
+ },
+ {
+ "epoch": 2.0279598077763215,
+ "grad_norm": 0.41137924790382385,
+ "learning_rate": 0.0006,
+ "loss": 6.449707984924316,
+ "step": 146
+ },
+ {
+ "epoch": 2.041939711664482,
+ "grad_norm": 0.4237765371799469,
+ "learning_rate": 0.0006,
+ "loss": 6.467435836791992,
+ "step": 147
+ },
+ {
+ "epoch": 2.055919615552643,
+ "grad_norm": 0.44081810116767883,
+ "learning_rate": 0.0006,
+ "loss": 6.436868667602539,
+ "step": 148
+ },
+ {
+ "epoch": 2.0698995194408036,
+ "grad_norm": 0.4163798391819,
+ "learning_rate": 0.0006,
+ "loss": 6.4642014503479,
+ "step": 149
+ },
+ {
+ "epoch": 2.083879423328965,
+ "grad_norm": 0.3831583261489868,
+ "learning_rate": 0.0006,
+ "loss": 6.454092025756836,
+ "step": 150
+ },
+ {
+ "epoch": 2.0978593272171255,
+ "grad_norm": 0.37721413373947144,
+ "learning_rate": 0.0006,
+ "loss": 6.426377296447754,
+ "step": 151
+ },
+ {
+ "epoch": 2.1118392311052863,
+ "grad_norm": 0.3323550224304199,
+ "learning_rate": 0.0006,
+ "loss": 6.421375274658203,
+ "step": 152
+ },
+ {
+ "epoch": 2.125819134993447,
+ "grad_norm": 0.47739624977111816,
+ "learning_rate": 0.0006,
+ "loss": 6.412004470825195,
+ "step": 153
+ },
+ {
+ "epoch": 2.1397990388816077,
+ "grad_norm": 0.8530274629592896,
+ "learning_rate": 0.0006,
+ "loss": 6.410468578338623,
+ "step": 154
+ },
+ {
+ "epoch": 2.1537789427697684,
+ "grad_norm": 0.6420364379882812,
+ "learning_rate": 0.0006,
+ "loss": 6.413525581359863,
+ "step": 155
+ },
+ {
+ "epoch": 2.167758846657929,
+ "grad_norm": 0.5005049109458923,
+ "learning_rate": 0.0006,
+ "loss": 6.401463508605957,
+ "step": 156
+ },
+ {
+ "epoch": 2.18173875054609,
+ "grad_norm": 0.3614683449268341,
+ "learning_rate": 0.0006,
+ "loss": 6.390063285827637,
+ "step": 157
+ },
+ {
+ "epoch": 2.1957186544342506,
+ "grad_norm": 0.595215380191803,
+ "learning_rate": 0.0006,
+ "loss": 6.369806289672852,
+ "step": 158
+ },
+ {
+ "epoch": 2.2096985583224114,
+ "grad_norm": 0.5700321793556213,
+ "learning_rate": 0.0006,
+ "loss": 6.368378639221191,
+ "step": 159
+ },
+ {
+ "epoch": 2.2236784622105725,
+ "grad_norm": 0.36273983120918274,
+ "learning_rate": 0.0006,
+ "loss": 6.366860389709473,
+ "step": 160
+ },
+ {
+ "epoch": 2.2376583660987333,
+ "grad_norm": 0.2850998342037201,
+ "learning_rate": 0.0006,
+ "loss": 6.352144718170166,
+ "step": 161
+ },
+ {
+ "epoch": 2.251638269986894,
+ "grad_norm": 0.38558584451675415,
+ "learning_rate": 0.0006,
+ "loss": 6.375765800476074,
+ "step": 162
+ },
+ {
+ "epoch": 2.2656181738750547,
+ "grad_norm": 0.34809231758117676,
+ "learning_rate": 0.0006,
+ "loss": 6.350445747375488,
+ "step": 163
+ },
+ {
+ "epoch": 2.2795980777632154,
+ "grad_norm": 0.5211818814277649,
+ "learning_rate": 0.0006,
+ "loss": 6.354585647583008,
+ "step": 164
+ },
+ {
+ "epoch": 2.293577981651376,
+ "grad_norm": 1.0809133052825928,
+ "learning_rate": 0.0006,
+ "loss": 6.3752007484436035,
+ "step": 165
+ },
+ {
+ "epoch": 2.307557885539537,
+ "grad_norm": 0.8293641209602356,
+ "learning_rate": 0.0006,
+ "loss": 6.35113525390625,
+ "step": 166
+ },
+ {
+ "epoch": 2.3215377894276976,
+ "grad_norm": 0.3428577780723572,
+ "learning_rate": 0.0006,
+ "loss": 6.334470748901367,
+ "step": 167
+ },
+ {
+ "epoch": 2.3355176933158583,
+ "grad_norm": 0.7587600946426392,
+ "learning_rate": 0.0006,
+ "loss": 6.353979587554932,
+ "step": 168
+ },
+ {
+ "epoch": 2.349497597204019,
+ "grad_norm": 0.4227249026298523,
+ "learning_rate": 0.0006,
+ "loss": 6.34018611907959,
+ "step": 169
+ },
+ {
+ "epoch": 2.36347750109218,
+ "grad_norm": 0.4226846694946289,
+ "learning_rate": 0.0006,
+ "loss": 6.290019989013672,
+ "step": 170
+ },
+ {
+ "epoch": 2.3774574049803405,
+ "grad_norm": 0.38412365317344666,
+ "learning_rate": 0.0006,
+ "loss": 6.309510231018066,
+ "step": 171
+ },
+ {
+ "epoch": 2.3914373088685017,
+ "grad_norm": 0.45698508620262146,
+ "learning_rate": 0.0006,
+ "loss": 6.283290863037109,
+ "step": 172
+ },
+ {
+ "epoch": 2.4054172127566624,
+ "grad_norm": 0.7575915455818176,
+ "learning_rate": 0.0006,
+ "loss": 6.306073188781738,
+ "step": 173
+ },
+ {
+ "epoch": 2.419397116644823,
+ "grad_norm": 0.695123553276062,
+ "learning_rate": 0.0006,
+ "loss": 6.308144569396973,
+ "step": 174
+ },
+ {
+ "epoch": 2.433377020532984,
+ "grad_norm": 0.5035743117332458,
+ "learning_rate": 0.0006,
+ "loss": 6.282073974609375,
+ "step": 175
+ },
+ {
+ "epoch": 2.4473569244211446,
+ "grad_norm": 0.3158020079135895,
+ "learning_rate": 0.0006,
+ "loss": 6.282169342041016,
+ "step": 176
+ },
+ {
+ "epoch": 2.4613368283093053,
+ "grad_norm": 0.4829689860343933,
+ "learning_rate": 0.0006,
+ "loss": 6.264578819274902,
+ "step": 177
+ },
+ {
+ "epoch": 2.475316732197466,
+ "grad_norm": 0.3992770314216614,
+ "learning_rate": 0.0006,
+ "loss": 6.228628158569336,
+ "step": 178
+ },
+ {
+ "epoch": 2.489296636085627,
+ "grad_norm": 0.40887606143951416,
+ "learning_rate": 0.0006,
+ "loss": 6.230792045593262,
+ "step": 179
+ },
+ {
+ "epoch": 2.5032765399737875,
+ "grad_norm": 0.3540310263633728,
+ "learning_rate": 0.0006,
+ "loss": 6.222573280334473,
+ "step": 180
+ },
+ {
+ "epoch": 2.5172564438619487,
+ "grad_norm": 0.496219664812088,
+ "learning_rate": 0.0006,
+ "loss": 6.212109565734863,
+ "step": 181
+ },
+ {
+ "epoch": 2.5312363477501094,
+ "grad_norm": 0.435173898935318,
+ "learning_rate": 0.0006,
+ "loss": 6.221210479736328,
+ "step": 182
+ },
+ {
+ "epoch": 2.54521625163827,
+ "grad_norm": 0.5364007949829102,
+ "learning_rate": 0.0006,
+ "loss": 6.217929840087891,
+ "step": 183
+ },
+ {
+ "epoch": 2.559196155526431,
+ "grad_norm": 0.5946390628814697,
+ "learning_rate": 0.0006,
+ "loss": 6.189267158508301,
+ "step": 184
+ },
+ {
+ "epoch": 2.5731760594145916,
+ "grad_norm": 0.41621312499046326,
+ "learning_rate": 0.0006,
+ "loss": 6.182415008544922,
+ "step": 185
+ },
+ {
+ "epoch": 2.5871559633027523,
+ "grad_norm": 0.5442072749137878,
+ "learning_rate": 0.0006,
+ "loss": 6.150757789611816,
+ "step": 186
+ },
+ {
+ "epoch": 2.601135867190913,
+ "grad_norm": 0.727843165397644,
+ "learning_rate": 0.0006,
+ "loss": 6.146082878112793,
+ "step": 187
+ },
+ {
+ "epoch": 2.615115771079074,
+ "grad_norm": 0.8898891806602478,
+ "learning_rate": 0.0006,
+ "loss": 6.190483093261719,
+ "step": 188
+ },
+ {
+ "epoch": 2.6290956749672345,
+ "grad_norm": 0.5173947215080261,
+ "learning_rate": 0.0006,
+ "loss": 6.151251792907715,
+ "step": 189
+ },
+ {
+ "epoch": 2.6430755788553952,
+ "grad_norm": 0.6476729512214661,
+ "learning_rate": 0.0006,
+ "loss": 6.154841423034668,
+ "step": 190
+ },
+ {
+ "epoch": 2.657055482743556,
+ "grad_norm": 0.3538810908794403,
+ "learning_rate": 0.0006,
+ "loss": 6.103879928588867,
+ "step": 191
+ },
+ {
+ "epoch": 2.6710353866317167,
+ "grad_norm": 0.4773508310317993,
+ "learning_rate": 0.0006,
+ "loss": 6.118101119995117,
+ "step": 192
+ },
+ {
+ "epoch": 2.6850152905198774,
+ "grad_norm": 0.29213786125183105,
+ "learning_rate": 0.0006,
+ "loss": 6.108916282653809,
+ "step": 193
+ },
+ {
+ "epoch": 2.6989951944080386,
+ "grad_norm": 0.40800607204437256,
+ "learning_rate": 0.0006,
+ "loss": 6.113438606262207,
+ "step": 194
+ },
+ {
+ "epoch": 2.7129750982961993,
+ "grad_norm": 0.31157299876213074,
+ "learning_rate": 0.0006,
+ "loss": 6.101809501647949,
+ "step": 195
+ },
+ {
+ "epoch": 2.72695500218436,
+ "grad_norm": 0.28660309314727783,
+ "learning_rate": 0.0006,
+ "loss": 6.075886249542236,
+ "step": 196
+ },
+ {
+ "epoch": 2.7409349060725208,
+ "grad_norm": 0.3810449540615082,
+ "learning_rate": 0.0006,
+ "loss": 6.053257942199707,
+ "step": 197
+ },
+ {
+ "epoch": 2.7549148099606815,
+ "grad_norm": 0.21741755306720734,
+ "learning_rate": 0.0006,
+ "loss": 6.013825416564941,
+ "step": 198
+ },
+ {
+ "epoch": 2.7688947138488422,
+ "grad_norm": 0.2777678966522217,
+ "learning_rate": 0.0006,
+ "loss": 6.054204940795898,
+ "step": 199
+ },
+ {
+ "epoch": 2.782874617737003,
+ "grad_norm": 0.28503066301345825,
+ "learning_rate": 0.0006,
+ "loss": 6.035628318786621,
+ "step": 200
+ },
+ {
+ "epoch": 2.7968545216251637,
+ "grad_norm": 0.41954755783081055,
+ "learning_rate": 0.0006,
+ "loss": 6.028354644775391,
+ "step": 201
+ },
+ {
+ "epoch": 2.810834425513325,
+ "grad_norm": 0.8785563111305237,
+ "learning_rate": 0.0006,
+ "loss": 6.055761337280273,
+ "step": 202
+ },
+ {
+ "epoch": 2.8248143294014856,
+ "grad_norm": 1.7459558248519897,
+ "learning_rate": 0.0006,
+ "loss": 6.11599588394165,
+ "step": 203
+ },
+ {
+ "epoch": 2.8387942332896463,
+ "grad_norm": 0.5725523233413696,
+ "learning_rate": 0.0006,
+ "loss": 6.024280548095703,
+ "step": 204
+ },
+ {
+ "epoch": 2.852774137177807,
+ "grad_norm": 0.5913150906562805,
+ "learning_rate": 0.0006,
+ "loss": 6.050281524658203,
+ "step": 205
+ },
+ {
+ "epoch": 2.8667540410659678,
+ "grad_norm": 0.5929384827613831,
+ "learning_rate": 0.0006,
+ "loss": 6.041121482849121,
+ "step": 206
+ },
+ {
+ "epoch": 2.8807339449541285,
+ "grad_norm": 0.5650724768638611,
+ "learning_rate": 0.0006,
+ "loss": 6.004258155822754,
+ "step": 207
+ },
+ {
+ "epoch": 2.894713848842289,
+ "grad_norm": 0.3420545756816864,
+ "learning_rate": 0.0006,
+ "loss": 5.983296871185303,
+ "step": 208
+ },
+ {
+ "epoch": 2.90869375273045,
+ "grad_norm": 0.2960914075374603,
+ "learning_rate": 0.0006,
+ "loss": 5.988578796386719,
+ "step": 209
+ },
+ {
+ "epoch": 2.9226736566186107,
+ "grad_norm": 0.3252662718296051,
+ "learning_rate": 0.0006,
+ "loss": 5.99103307723999,
+ "step": 210
+ },
+ {
+ "epoch": 2.9366535605067714,
+ "grad_norm": 0.4851132929325104,
+ "learning_rate": 0.0006,
+ "loss": 6.0028977394104,
+ "step": 211
+ },
+ {
+ "epoch": 2.950633464394932,
+ "grad_norm": 0.5639995336532593,
+ "learning_rate": 0.0006,
+ "loss": 5.965080738067627,
+ "step": 212
+ },
+ {
+ "epoch": 2.964613368283093,
+ "grad_norm": 0.4514601230621338,
+ "learning_rate": 0.0006,
+ "loss": 5.961450576782227,
+ "step": 213
+ },
+ {
+ "epoch": 2.9785932721712536,
+ "grad_norm": 0.5397921800613403,
+ "learning_rate": 0.0006,
+ "loss": 5.965290546417236,
+ "step": 214
+ },
+ {
+ "epoch": 2.9925731760594148,
+ "grad_norm": 0.4735587239265442,
+ "learning_rate": 0.0006,
+ "loss": 5.952754497528076,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.32061058282852173,
+ "learning_rate": 0.0006,
+ "loss": 5.961667060852051,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 6.8517303466796875,
+ "eval_runtime": 44.03,
+ "eval_samples_per_second": 55.462,
+ "eval_steps_per_second": 3.475,
+ "step": 216
+ },
+ {
+ "epoch": 3.0139799038881607,
+ "grad_norm": 0.3537784814834595,
+ "learning_rate": 0.0006,
+ "loss": 5.928008079528809,
+ "step": 217
+ },
+ {
+ "epoch": 3.0279598077763215,
+ "grad_norm": 0.40713080763816833,
+ "learning_rate": 0.0006,
+ "loss": 5.9150800704956055,
+ "step": 218
+ },
+ {
+ "epoch": 3.041939711664482,
+ "grad_norm": 0.2548826336860657,
+ "learning_rate": 0.0006,
+ "loss": 5.919757843017578,
+ "step": 219
+ },
+ {
+ "epoch": 3.055919615552643,
+ "grad_norm": 0.2818543016910553,
+ "learning_rate": 0.0006,
+ "loss": 5.913688659667969,
+ "step": 220
+ },
+ {
+ "epoch": 3.0698995194408036,
+ "grad_norm": 0.4196692705154419,
+ "learning_rate": 0.0006,
+ "loss": 5.8675336837768555,
+ "step": 221
+ },
+ {
+ "epoch": 3.083879423328965,
+ "grad_norm": 0.35272282361984253,
+ "learning_rate": 0.0006,
+ "loss": 5.878874778747559,
+ "step": 222
+ },
+ {
+ "epoch": 3.0978593272171255,
+ "grad_norm": 0.3254282772541046,
+ "learning_rate": 0.0006,
+ "loss": 5.8823041915893555,
+ "step": 223
+ },
+ {
+ "epoch": 3.1118392311052863,
+ "grad_norm": 0.4052561819553375,
+ "learning_rate": 0.0006,
+ "loss": 5.867744445800781,
+ "step": 224
+ },
+ {
+ "epoch": 3.125819134993447,
+ "grad_norm": 0.31246256828308105,
+ "learning_rate": 0.0006,
+ "loss": 5.886094093322754,
+ "step": 225
+ },
+ {
+ "epoch": 3.1397990388816077,
+ "grad_norm": 0.3479118347167969,
+ "learning_rate": 0.0006,
+ "loss": 5.850762367248535,
+ "step": 226
+ },
+ {
+ "epoch": 3.1537789427697684,
+ "grad_norm": 0.5037238597869873,
+ "learning_rate": 0.0006,
+ "loss": 5.844175815582275,
+ "step": 227
+ },
+ {
+ "epoch": 3.167758846657929,
+ "grad_norm": 0.6271815896034241,
+ "learning_rate": 0.0006,
+ "loss": 5.871790885925293,
+ "step": 228
+ },
+ {
+ "epoch": 3.18173875054609,
+ "grad_norm": 0.43838298320770264,
+ "learning_rate": 0.0006,
+ "loss": 5.844024658203125,
+ "step": 229
+ },
+ {
+ "epoch": 3.1957186544342506,
+ "grad_norm": 0.4755159616470337,
+ "learning_rate": 0.0006,
+ "loss": 5.846892356872559,
+ "step": 230
+ },
+ {
+ "epoch": 3.2096985583224114,
+ "grad_norm": 0.5229779481887817,
+ "learning_rate": 0.0006,
+ "loss": 5.827000617980957,
+ "step": 231
+ },
+ {
+ "epoch": 3.2236784622105725,
+ "grad_norm": 0.8264499306678772,
+ "learning_rate": 0.0006,
+ "loss": 5.867050647735596,
+ "step": 232
+ },
+ {
+ "epoch": 3.2376583660987333,
+ "grad_norm": 1.0607538223266602,
+ "learning_rate": 0.0006,
+ "loss": 5.877876281738281,
+ "step": 233
+ },
+ {
+ "epoch": 3.251638269986894,
+ "grad_norm": 0.7656505703926086,
+ "learning_rate": 0.0006,
+ "loss": 5.86760139465332,
+ "step": 234
+ },
+ {
+ "epoch": 3.2656181738750547,
+ "grad_norm": 0.7940183281898499,
+ "learning_rate": 0.0006,
+ "loss": 5.861355781555176,
+ "step": 235
+ },
+ {
+ "epoch": 3.2795980777632154,
+ "grad_norm": 0.45171424746513367,
+ "learning_rate": 0.0006,
+ "loss": 5.799808502197266,
+ "step": 236
+ },
+ {
+ "epoch": 3.293577981651376,
+ "grad_norm": 0.6174989342689514,
+ "learning_rate": 0.0006,
+ "loss": 5.8585920333862305,
+ "step": 237
+ },
+ {
+ "epoch": 3.307557885539537,
+ "grad_norm": 0.5341290831565857,
+ "learning_rate": 0.0006,
+ "loss": 5.8116044998168945,
+ "step": 238
+ },
+ {
+ "epoch": 3.3215377894276976,
+ "grad_norm": 0.3938343822956085,
+ "learning_rate": 0.0006,
+ "loss": 5.83797550201416,
+ "step": 239
+ },
+ {
+ "epoch": 3.3355176933158583,
+ "grad_norm": 0.5106972455978394,
+ "learning_rate": 0.0006,
+ "loss": 5.832303047180176,
+ "step": 240
+ },
+ {
+ "epoch": 3.349497597204019,
+ "grad_norm": 0.3791428506374359,
+ "learning_rate": 0.0006,
+ "loss": 5.794981956481934,
+ "step": 241
+ },
+ {
+ "epoch": 3.36347750109218,
+ "grad_norm": 0.42287978529930115,
+ "learning_rate": 0.0006,
+ "loss": 5.788144111633301,
+ "step": 242
+ },
+ {
+ "epoch": 3.3774574049803405,
+ "grad_norm": 0.27334436774253845,
+ "learning_rate": 0.0006,
+ "loss": 5.771070957183838,
+ "step": 243
+ },
+ {
+ "epoch": 3.3914373088685017,
+ "grad_norm": 0.2470470368862152,
+ "learning_rate": 0.0006,
+ "loss": 5.755998611450195,
+ "step": 244
+ },
+ {
+ "epoch": 3.4054172127566624,
+ "grad_norm": 0.3043915033340454,
+ "learning_rate": 0.0006,
+ "loss": 5.779492378234863,
+ "step": 245
+ },
+ {
+ "epoch": 3.419397116644823,
+ "grad_norm": 0.2960112988948822,
+ "learning_rate": 0.0006,
+ "loss": 5.750328063964844,
+ "step": 246
+ },
+ {
+ "epoch": 3.433377020532984,
+ "grad_norm": 0.3046723008155823,
+ "learning_rate": 0.0006,
+ "loss": 5.776517868041992,
+ "step": 247
+ },
+ {
+ "epoch": 3.4473569244211446,
+ "grad_norm": 0.22461780905723572,
+ "learning_rate": 0.0006,
+ "loss": 5.760989665985107,
+ "step": 248
+ },
+ {
+ "epoch": 3.4613368283093053,
+ "grad_norm": 0.24625757336616516,
+ "learning_rate": 0.0006,
+ "loss": 5.759706497192383,
+ "step": 249
+ },
+ {
+ "epoch": 3.475316732197466,
+ "grad_norm": 0.18207131326198578,
+ "learning_rate": 0.0006,
+ "loss": 5.747040748596191,
+ "step": 250
+ },
+ {
+ "epoch": 3.489296636085627,
+ "grad_norm": 0.16473834216594696,
+ "learning_rate": 0.0006,
+ "loss": 5.761577606201172,
+ "step": 251
+ },
+ {
+ "epoch": 3.5032765399737875,
+ "grad_norm": 0.25155773758888245,
+ "learning_rate": 0.0006,
+ "loss": 5.696502208709717,
+ "step": 252
+ },
+ {
+ "epoch": 3.5172564438619487,
+ "grad_norm": 0.24115674197673798,
+ "learning_rate": 0.0006,
+ "loss": 5.676957130432129,
+ "step": 253
+ },
+ {
+ "epoch": 3.5312363477501094,
+ "grad_norm": 0.40912172198295593,
+ "learning_rate": 0.0006,
+ "loss": 5.695090293884277,
+ "step": 254
+ },
+ {
+ "epoch": 3.54521625163827,
+ "grad_norm": 0.6727662682533264,
+ "learning_rate": 0.0006,
+ "loss": 5.722194671630859,
+ "step": 255
+ },
+ {
+ "epoch": 3.559196155526431,
+ "grad_norm": 0.8450719118118286,
+ "learning_rate": 0.0006,
+ "loss": 5.764680862426758,
+ "step": 256
+ },
+ {
+ "epoch": 3.5731760594145916,
+ "grad_norm": 0.9916183352470398,
+ "learning_rate": 0.0006,
+ "loss": 5.754530429840088,
+ "step": 257
+ },
+ {
+ "epoch": 3.5871559633027523,
+ "grad_norm": 1.041922688484192,
+ "learning_rate": 0.0006,
+ "loss": 5.781468391418457,
+ "step": 258
+ },
+ {
+ "epoch": 3.601135867190913,
+ "grad_norm": 0.972039520740509,
+ "learning_rate": 0.0006,
+ "loss": 5.760323524475098,
+ "step": 259
+ },
+ {
+ "epoch": 3.615115771079074,
+ "grad_norm": 0.6802462935447693,
+ "learning_rate": 0.0006,
+ "loss": 5.750064849853516,
+ "step": 260
+ },
+ {
+ "epoch": 3.6290956749672345,
+ "grad_norm": 0.48553529381752014,
+ "learning_rate": 0.0006,
+ "loss": 5.7464094161987305,
+ "step": 261
+ },
+ {
+ "epoch": 3.6430755788553952,
+ "grad_norm": 0.4066704213619232,
+ "learning_rate": 0.0006,
+ "loss": 5.719789505004883,
+ "step": 262
+ },
+ {
+ "epoch": 3.657055482743556,
+ "grad_norm": 0.3300860822200775,
+ "learning_rate": 0.0006,
+ "loss": 5.719920635223389,
+ "step": 263
+ },
+ {
+ "epoch": 3.6710353866317167,
+ "grad_norm": 0.3286679983139038,
+ "learning_rate": 0.0006,
+ "loss": 5.723465919494629,
+ "step": 264
+ },
+ {
+ "epoch": 3.6850152905198774,
+ "grad_norm": 0.27653390169143677,
+ "learning_rate": 0.0006,
+ "loss": 5.713820457458496,
+ "step": 265
+ },
+ {
+ "epoch": 3.6989951944080386,
+ "grad_norm": 0.26138055324554443,
+ "learning_rate": 0.0006,
+ "loss": 5.683221817016602,
+ "step": 266
+ },
+ {
+ "epoch": 3.7129750982961993,
+ "grad_norm": 0.23706290125846863,
+ "learning_rate": 0.0006,
+ "loss": 5.6896867752075195,
+ "step": 267
+ },
+ {
+ "epoch": 3.72695500218436,
+ "grad_norm": 0.2751729190349579,
+ "learning_rate": 0.0006,
+ "loss": 5.710301876068115,
+ "step": 268
+ },
+ {
+ "epoch": 3.7409349060725208,
+ "grad_norm": 0.255393385887146,
+ "learning_rate": 0.0006,
+ "loss": 5.687932968139648,
+ "step": 269
+ },
+ {
+ "epoch": 3.7549148099606815,
+ "grad_norm": 0.21453925967216492,
+ "learning_rate": 0.0006,
+ "loss": 5.68234395980835,
+ "step": 270
+ },
+ {
+ "epoch": 3.7688947138488422,
+ "grad_norm": 0.21771012246608734,
+ "learning_rate": 0.0006,
+ "loss": 5.683980464935303,
+ "step": 271
+ },
+ {
+ "epoch": 3.782874617737003,
+ "grad_norm": 0.1884593963623047,
+ "learning_rate": 0.0006,
+ "loss": 5.662779808044434,
+ "step": 272
+ },
+ {
+ "epoch": 3.7968545216251637,
+ "grad_norm": 0.20429612696170807,
+ "learning_rate": 0.0006,
+ "loss": 5.650941848754883,
+ "step": 273
+ },
+ {
+ "epoch": 3.810834425513325,
+ "grad_norm": 0.22586797177791595,
+ "learning_rate": 0.0006,
+ "loss": 5.639376640319824,
+ "step": 274
+ },
+ {
+ "epoch": 3.8248143294014856,
+ "grad_norm": 0.19651705026626587,
+ "learning_rate": 0.0006,
+ "loss": 5.612030029296875,
+ "step": 275
+ },
+ {
+ "epoch": 3.8387942332896463,
+ "grad_norm": 0.2125253826379776,
+ "learning_rate": 0.0006,
+ "loss": 5.622836589813232,
+ "step": 276
+ },
+ {
+ "epoch": 3.852774137177807,
+ "grad_norm": 0.2905234694480896,
+ "learning_rate": 0.0006,
+ "loss": 5.624594688415527,
+ "step": 277
+ },
+ {
+ "epoch": 3.8667540410659678,
+ "grad_norm": 0.2718426585197449,
+ "learning_rate": 0.0006,
+ "loss": 5.619892120361328,
+ "step": 278
+ },
+ {
+ "epoch": 3.8807339449541285,
+ "grad_norm": 0.26481127738952637,
+ "learning_rate": 0.0006,
+ "loss": 5.612496852874756,
+ "step": 279
+ },
+ {
+ "epoch": 3.894713848842289,
+ "grad_norm": 0.2876453399658203,
+ "learning_rate": 0.0006,
+ "loss": 5.59157133102417,
+ "step": 280
+ },
+ {
+ "epoch": 3.90869375273045,
+ "grad_norm": 0.22829554975032806,
+ "learning_rate": 0.0006,
+ "loss": 5.5884199142456055,
+ "step": 281
+ },
+ {
+ "epoch": 3.9226736566186107,
+ "grad_norm": 0.22852344810962677,
+ "learning_rate": 0.0006,
+ "loss": 5.618719100952148,
+ "step": 282
+ },
+ {
+ "epoch": 3.9366535605067714,
+ "grad_norm": 0.37366563081741333,
+ "learning_rate": 0.0006,
+ "loss": 5.611738204956055,
+ "step": 283
+ },
+ {
+ "epoch": 3.950633464394932,
+ "grad_norm": 0.5650382041931152,
+ "learning_rate": 0.0006,
+ "loss": 5.606371879577637,
+ "step": 284
+ },
+ {
+ "epoch": 3.964613368283093,
+ "grad_norm": 0.5960066914558411,
+ "learning_rate": 0.0006,
+ "loss": 5.595022201538086,
+ "step": 285
+ },
+ {
+ "epoch": 3.9785932721712536,
+ "grad_norm": 0.3561663031578064,
+ "learning_rate": 0.0006,
+ "loss": 5.581035614013672,
+ "step": 286
+ },
+ {
+ "epoch": 3.9925731760594148,
+ "grad_norm": 0.44699913263320923,
+ "learning_rate": 0.0006,
+ "loss": 5.568033218383789,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.42783990502357483,
+ "learning_rate": 0.0006,
+ "loss": 5.571993827819824,
+ "step": 288
+ },
+ {
+ "epoch": 4.0,
+ "eval_loss": 6.349016189575195,
+ "eval_runtime": 44.3326,
+ "eval_samples_per_second": 55.084,
+ "eval_steps_per_second": 3.451,
+ "step": 288
+ },
+ {
+ "epoch": 4.013979903888161,
+ "grad_norm": 0.41305896639823914,
+ "learning_rate": 0.0006,
+ "loss": 5.562954902648926,
+ "step": 289
+ },
+ {
+ "epoch": 4.0279598077763215,
+ "grad_norm": 0.3966459035873413,
+ "learning_rate": 0.0006,
+ "loss": 5.5671916007995605,
+ "step": 290
+ },
+ {
+ "epoch": 4.041939711664482,
+ "grad_norm": 0.4846104085445404,
+ "learning_rate": 0.0006,
+ "loss": 5.548027038574219,
+ "step": 291
+ },
+ {
+ "epoch": 4.055919615552643,
+ "grad_norm": 0.5916333794593811,
+ "learning_rate": 0.0006,
+ "loss": 5.5900068283081055,
+ "step": 292
+ },
+ {
+ "epoch": 4.069899519440804,
+ "grad_norm": 0.5973889231681824,
+ "learning_rate": 0.0006,
+ "loss": 5.537594795227051,
+ "step": 293
+ },
+ {
+ "epoch": 4.083879423328964,
+ "grad_norm": 0.4190494418144226,
+ "learning_rate": 0.0006,
+ "loss": 5.534749984741211,
+ "step": 294
+ },
+ {
+ "epoch": 4.097859327217125,
+ "grad_norm": 0.5956901907920837,
+ "learning_rate": 0.0006,
+ "loss": 5.554540634155273,
+ "step": 295
+ },
+ {
+ "epoch": 4.111839231105286,
+ "grad_norm": 0.8257920742034912,
+ "learning_rate": 0.0006,
+ "loss": 5.5728068351745605,
+ "step": 296
+ },
+ {
+ "epoch": 4.1258191349934465,
+ "grad_norm": 0.7241750955581665,
+ "learning_rate": 0.0006,
+ "loss": 5.5643815994262695,
+ "step": 297
+ },
+ {
+ "epoch": 4.139799038881607,
+ "grad_norm": 0.45730507373809814,
+ "learning_rate": 0.0006,
+ "loss": 5.554225921630859,
+ "step": 298
+ },
+ {
+ "epoch": 4.153778942769769,
+ "grad_norm": 0.5166977643966675,
+ "learning_rate": 0.0006,
+ "loss": 5.540790557861328,
+ "step": 299
+ },
+ {
+ "epoch": 4.16775884665793,
+ "grad_norm": 0.433237761259079,
+ "learning_rate": 0.0006,
+ "loss": 5.536884784698486,
+ "step": 300
+ },
+ {
+ "epoch": 4.18173875054609,
+ "grad_norm": 0.3369830250740051,
+ "learning_rate": 0.0006,
+ "loss": 5.532837867736816,
+ "step": 301
+ },
+ {
+ "epoch": 4.195718654434251,
+ "grad_norm": 0.33091458678245544,
+ "learning_rate": 0.0006,
+ "loss": 5.547643661499023,
+ "step": 302
+ },
+ {
+ "epoch": 4.209698558322412,
+ "grad_norm": 0.36462724208831787,
+ "learning_rate": 0.0006,
+ "loss": 5.525021076202393,
+ "step": 303
+ },
+ {
+ "epoch": 4.2236784622105725,
+ "grad_norm": 0.3342771530151367,
+ "learning_rate": 0.0006,
+ "loss": 5.512082099914551,
+ "step": 304
+ },
+ {
+ "epoch": 4.237658366098733,
+ "grad_norm": 0.26784762740135193,
+ "learning_rate": 0.0006,
+ "loss": 5.488072395324707,
+ "step": 305
+ },
+ {
+ "epoch": 4.251638269986894,
+ "grad_norm": 0.25986987352371216,
+ "learning_rate": 0.0006,
+ "loss": 5.4960455894470215,
+ "step": 306
+ },
+ {
+ "epoch": 4.265618173875055,
+ "grad_norm": 0.24595795571804047,
+ "learning_rate": 0.0006,
+ "loss": 5.513367176055908,
+ "step": 307
+ },
+ {
+ "epoch": 4.279598077763215,
+ "grad_norm": 0.2224857211112976,
+ "learning_rate": 0.0006,
+ "loss": 5.465205192565918,
+ "step": 308
+ },
+ {
+ "epoch": 4.293577981651376,
+ "grad_norm": 0.26799243688583374,
+ "learning_rate": 0.0006,
+ "loss": 5.476632118225098,
+ "step": 309
+ },
+ {
+ "epoch": 4.307557885539537,
+ "grad_norm": 0.20443417131900787,
+ "learning_rate": 0.0006,
+ "loss": 5.442601203918457,
+ "step": 310
+ },
+ {
+ "epoch": 4.321537789427698,
+ "grad_norm": 0.2275059074163437,
+ "learning_rate": 0.0006,
+ "loss": 5.453519344329834,
+ "step": 311
+ },
+ {
+ "epoch": 4.335517693315858,
+ "grad_norm": 0.2860901951789856,
+ "learning_rate": 0.0006,
+ "loss": 5.439424514770508,
+ "step": 312
+ },
+ {
+ "epoch": 4.349497597204019,
+ "grad_norm": 0.3378142714500427,
+ "learning_rate": 0.0006,
+ "loss": 5.476953983306885,
+ "step": 313
+ },
+ {
+ "epoch": 4.36347750109218,
+ "grad_norm": 0.3487110733985901,
+ "learning_rate": 0.0006,
+ "loss": 5.47003698348999,
+ "step": 314
+ },
+ {
+ "epoch": 4.3774574049803405,
+ "grad_norm": 0.3655227720737457,
+ "learning_rate": 0.0006,
+ "loss": 5.454250812530518,
+ "step": 315
+ },
+ {
+ "epoch": 4.391437308868501,
+ "grad_norm": 0.3754786252975464,
+ "learning_rate": 0.0006,
+ "loss": 5.475249290466309,
+ "step": 316
+ },
+ {
+ "epoch": 4.405417212756662,
+ "grad_norm": 0.42494088411331177,
+ "learning_rate": 0.0006,
+ "loss": 5.4552459716796875,
+ "step": 317
+ },
+ {
+ "epoch": 4.419397116644823,
+ "grad_norm": 0.4914703667163849,
+ "learning_rate": 0.0006,
+ "loss": 5.431845188140869,
+ "step": 318
+ },
+ {
+ "epoch": 4.433377020532983,
+ "grad_norm": 0.42470860481262207,
+ "learning_rate": 0.0006,
+ "loss": 5.454581260681152,
+ "step": 319
+ },
+ {
+ "epoch": 4.447356924421145,
+ "grad_norm": 0.3828011155128479,
+ "learning_rate": 0.0006,
+ "loss": 5.435178756713867,
+ "step": 320
+ },
+ {
+ "epoch": 4.461336828309306,
+ "grad_norm": 0.47256892919540405,
+ "learning_rate": 0.0006,
+ "loss": 5.428861618041992,
+ "step": 321
+ },
+ {
+ "epoch": 4.4753167321974665,
+ "grad_norm": 0.5665146708488464,
+ "learning_rate": 0.0006,
+ "loss": 5.424633026123047,
+ "step": 322
+ },
+ {
+ "epoch": 4.489296636085627,
+ "grad_norm": 0.48146721720695496,
+ "learning_rate": 0.0006,
+ "loss": 5.4577860832214355,
+ "step": 323
+ },
+ {
+ "epoch": 4.503276539973788,
+ "grad_norm": 0.3378535509109497,
+ "learning_rate": 0.0006,
+ "loss": 5.422727108001709,
+ "step": 324
+ },
+ {
+ "epoch": 4.517256443861949,
+ "grad_norm": 0.41981473565101624,
+ "learning_rate": 0.0006,
+ "loss": 5.418993949890137,
+ "step": 325
+ },
+ {
+ "epoch": 4.531236347750109,
+ "grad_norm": 0.39389684796333313,
+ "learning_rate": 0.0006,
+ "loss": 5.41835880279541,
+ "step": 326
+ },
+ {
+ "epoch": 4.54521625163827,
+ "grad_norm": 0.5912176370620728,
+ "learning_rate": 0.0006,
+ "loss": 5.40073299407959,
+ "step": 327
+ },
+ {
+ "epoch": 4.559196155526431,
+ "grad_norm": 0.6877487897872925,
+ "learning_rate": 0.0006,
+ "loss": 5.445301055908203,
+ "step": 328
+ },
+ {
+ "epoch": 4.573176059414592,
+ "grad_norm": 0.580555260181427,
+ "learning_rate": 0.0006,
+ "loss": 5.431069374084473,
+ "step": 329
+ },
+ {
+ "epoch": 4.587155963302752,
+ "grad_norm": 0.5974457859992981,
+ "learning_rate": 0.0006,
+ "loss": 5.422694206237793,
+ "step": 330
+ },
+ {
+ "epoch": 4.601135867190913,
+ "grad_norm": 0.722481906414032,
+ "learning_rate": 0.0006,
+ "loss": 5.447752952575684,
+ "step": 331
+ },
+ {
+ "epoch": 4.615115771079074,
+ "grad_norm": 0.7687886953353882,
+ "learning_rate": 0.0006,
+ "loss": 5.437956809997559,
+ "step": 332
+ },
+ {
+ "epoch": 4.6290956749672345,
+ "grad_norm": 0.7368173003196716,
+ "learning_rate": 0.0006,
+ "loss": 5.4367241859436035,
+ "step": 333
+ },
+ {
+ "epoch": 4.643075578855395,
+ "grad_norm": 0.6650524139404297,
+ "learning_rate": 0.0006,
+ "loss": 5.4288434982299805,
+ "step": 334
+ },
+ {
+ "epoch": 4.657055482743556,
+ "grad_norm": 0.4997614920139313,
+ "learning_rate": 0.0006,
+ "loss": 5.412769317626953,
+ "step": 335
+ },
+ {
+ "epoch": 4.671035386631717,
+ "grad_norm": 0.44208982586860657,
+ "learning_rate": 0.0006,
+ "loss": 5.42405366897583,
+ "step": 336
+ },
+ {
+ "epoch": 4.685015290519877,
+ "grad_norm": 0.39510273933410645,
+ "learning_rate": 0.0006,
+ "loss": 5.402547836303711,
+ "step": 337
+ },
+ {
+ "epoch": 4.698995194408038,
+ "grad_norm": 0.44970476627349854,
+ "learning_rate": 0.0006,
+ "loss": 5.377168655395508,
+ "step": 338
+ },
+ {
+ "epoch": 4.712975098296199,
+ "grad_norm": 0.3902331590652466,
+ "learning_rate": 0.0006,
+ "loss": 5.401622772216797,
+ "step": 339
+ },
+ {
+ "epoch": 4.72695500218436,
+ "grad_norm": 0.33485135436058044,
+ "learning_rate": 0.0006,
+ "loss": 5.397945880889893,
+ "step": 340
+ },
+ {
+ "epoch": 4.740934906072521,
+ "grad_norm": 0.29062309861183167,
+ "learning_rate": 0.0006,
+ "loss": 5.356175422668457,
+ "step": 341
+ },
+ {
+ "epoch": 4.754914809960681,
+ "grad_norm": 0.23617377877235413,
+ "learning_rate": 0.0006,
+ "loss": 5.388517379760742,
+ "step": 342
+ },
+ {
+ "epoch": 4.768894713848843,
+ "grad_norm": 0.2704737186431885,
+ "learning_rate": 0.0006,
+ "loss": 5.3746137619018555,
+ "step": 343
+ },
+ {
+ "epoch": 4.782874617737003,
+ "grad_norm": 0.20488551259040833,
+ "learning_rate": 0.0006,
+ "loss": 5.3754472732543945,
+ "step": 344
+ },
+ {
+ "epoch": 4.796854521625164,
+ "grad_norm": 0.2007082849740982,
+ "learning_rate": 0.0006,
+ "loss": 5.3538618087768555,
+ "step": 345
+ },
+ {
+ "epoch": 4.810834425513325,
+ "grad_norm": 0.21732935309410095,
+ "learning_rate": 0.0006,
+ "loss": 5.351774215698242,
+ "step": 346
+ },
+ {
+ "epoch": 4.824814329401486,
+ "grad_norm": 0.1944841742515564,
+ "learning_rate": 0.0006,
+ "loss": 5.357545852661133,
+ "step": 347
+ },
+ {
+ "epoch": 4.838794233289646,
+ "grad_norm": 0.1953933835029602,
+ "learning_rate": 0.0006,
+ "loss": 5.321681022644043,
+ "step": 348
+ },
+ {
+ "epoch": 4.852774137177807,
+ "grad_norm": 0.1743433028459549,
+ "learning_rate": 0.0006,
+ "loss": 5.340302467346191,
+ "step": 349
+ },
+ {
+ "epoch": 4.866754041065968,
+ "grad_norm": 0.19655466079711914,
+ "learning_rate": 0.0006,
+ "loss": 5.325471878051758,
+ "step": 350
+ },
+ {
+ "epoch": 4.8807339449541285,
+ "grad_norm": 0.15761791169643402,
+ "learning_rate": 0.0006,
+ "loss": 5.3453240394592285,
+ "step": 351
+ },
+ {
+ "epoch": 4.894713848842289,
+ "grad_norm": 0.19164425134658813,
+ "learning_rate": 0.0006,
+ "loss": 5.315583229064941,
+ "step": 352
+ },
+ {
+ "epoch": 4.90869375273045,
+ "grad_norm": 0.28084540367126465,
+ "learning_rate": 0.0006,
+ "loss": 5.309171676635742,
+ "step": 353
+ },
+ {
+ "epoch": 4.922673656618611,
+ "grad_norm": 0.4681853652000427,
+ "learning_rate": 0.0006,
+ "loss": 5.318211078643799,
+ "step": 354
+ },
+ {
+ "epoch": 4.936653560506771,
+ "grad_norm": 0.6417295932769775,
+ "learning_rate": 0.0006,
+ "loss": 5.309263706207275,
+ "step": 355
+ },
+ {
+ "epoch": 4.950633464394932,
+ "grad_norm": 0.501312792301178,
+ "learning_rate": 0.0006,
+ "loss": 5.321534156799316,
+ "step": 356
+ },
+ {
+ "epoch": 4.964613368283093,
+ "grad_norm": 0.47502145171165466,
+ "learning_rate": 0.0006,
+ "loss": 5.323659896850586,
+ "step": 357
+ },
+ {
+ "epoch": 4.978593272171254,
+ "grad_norm": 0.5366594791412354,
+ "learning_rate": 0.0006,
+ "loss": 5.327367782592773,
+ "step": 358
+ },
+ {
+ "epoch": 4.992573176059414,
+ "grad_norm": 0.6986395120620728,
+ "learning_rate": 0.0006,
+ "loss": 5.311097145080566,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.6626625657081604,
+ "learning_rate": 0.0006,
+ "loss": 5.337558269500732,
+ "step": 360
+ },
+ {
+ "epoch": 5.0,
+ "eval_loss": 5.929230690002441,
+ "eval_runtime": 44.5268,
+ "eval_samples_per_second": 54.843,
+ "eval_steps_per_second": 3.436,
+ "step": 360
+ },
+ {
+ "epoch": 5.013979903888161,
+ "grad_norm": 0.7383704781532288,
+ "learning_rate": 0.0006,
+ "loss": 5.315563678741455,
+ "step": 361
+ },
+ {
+ "epoch": 5.0279598077763215,
+ "grad_norm": 0.7730138301849365,
+ "learning_rate": 0.0006,
+ "loss": 5.324905872344971,
+ "step": 362
+ },
+ {
+ "epoch": 5.041939711664482,
+ "grad_norm": 0.8170825839042664,
+ "learning_rate": 0.0006,
+ "loss": 5.350251197814941,
+ "step": 363
+ },
+ {
+ "epoch": 5.055919615552643,
+ "grad_norm": 0.6950958371162415,
+ "learning_rate": 0.0006,
+ "loss": 5.338744163513184,
+ "step": 364
+ },
+ {
+ "epoch": 5.069899519440804,
+ "grad_norm": 0.5582894086837769,
+ "learning_rate": 0.0006,
+ "loss": 5.340539932250977,
+ "step": 365
+ },
+ {
+ "epoch": 5.083879423328964,
+ "grad_norm": 0.4772159159183502,
+ "learning_rate": 0.0006,
+ "loss": 5.344161033630371,
+ "step": 366
+ },
+ {
+ "epoch": 5.097859327217125,
+ "grad_norm": 0.5432839393615723,
+ "learning_rate": 0.0006,
+ "loss": 5.312403678894043,
+ "step": 367
+ },
+ {
+ "epoch": 5.111839231105286,
+ "grad_norm": 0.4944784641265869,
+ "learning_rate": 0.0006,
+ "loss": 5.30281925201416,
+ "step": 368
+ },
+ {
+ "epoch": 5.1258191349934465,
+ "grad_norm": 0.4298315942287445,
+ "learning_rate": 0.0006,
+ "loss": 5.29564094543457,
+ "step": 369
+ },
+ {
+ "epoch": 5.139799038881607,
+ "grad_norm": 0.349889874458313,
+ "learning_rate": 0.0006,
+ "loss": 5.287062644958496,
+ "step": 370
+ },
+ {
+ "epoch": 5.153778942769769,
+ "grad_norm": 0.2823719084262848,
+ "learning_rate": 0.0006,
+ "loss": 5.28826904296875,
+ "step": 371
+ },
+ {
+ "epoch": 5.16775884665793,
+ "grad_norm": 0.32975050806999207,
+ "learning_rate": 0.0006,
+ "loss": 5.256399631500244,
+ "step": 372
+ },
+ {
+ "epoch": 5.18173875054609,
+ "grad_norm": 0.2963952124118805,
+ "learning_rate": 0.0006,
+ "loss": 5.273757457733154,
+ "step": 373
+ },
+ {
+ "epoch": 5.195718654434251,
+ "grad_norm": 0.21345984935760498,
+ "learning_rate": 0.0006,
+ "loss": 5.274978160858154,
+ "step": 374
+ },
+ {
+ "epoch": 5.209698558322412,
+ "grad_norm": 0.2363101840019226,
+ "learning_rate": 0.0006,
+ "loss": 5.261585235595703,
+ "step": 375
+ },
+ {
+ "epoch": 5.2236784622105725,
+ "grad_norm": 0.19626963138580322,
+ "learning_rate": 0.0006,
+ "loss": 5.259700298309326,
+ "step": 376
+ },
+ {
+ "epoch": 5.237658366098733,
+ "grad_norm": 0.21083571016788483,
+ "learning_rate": 0.0006,
+ "loss": 5.233585357666016,
+ "step": 377
+ },
+ {
+ "epoch": 5.251638269986894,
+ "grad_norm": 0.2273513823747635,
+ "learning_rate": 0.0006,
+ "loss": 5.231740474700928,
+ "step": 378
+ },
+ {
+ "epoch": 5.265618173875055,
+ "grad_norm": 0.18299247324466705,
+ "learning_rate": 0.0006,
+ "loss": 5.251256465911865,
+ "step": 379
+ },
+ {
+ "epoch": 5.279598077763215,
+ "grad_norm": 0.19578224420547485,
+ "learning_rate": 0.0006,
+ "loss": 5.230329513549805,
+ "step": 380
+ },
+ {
+ "epoch": 5.293577981651376,
+ "grad_norm": 0.20308879017829895,
+ "learning_rate": 0.0006,
+ "loss": 5.243951797485352,
+ "step": 381
+ },
+ {
+ "epoch": 5.307557885539537,
+ "grad_norm": 0.21053212881088257,
+ "learning_rate": 0.0006,
+ "loss": 5.210272789001465,
+ "step": 382
+ },
+ {
+ "epoch": 5.321537789427698,
+ "grad_norm": 0.21852520108222961,
+ "learning_rate": 0.0006,
+ "loss": 5.215418815612793,
+ "step": 383
+ },
+ {
+ "epoch": 5.335517693315858,
+ "grad_norm": 0.24872010946273804,
+ "learning_rate": 0.0006,
+ "loss": 5.225139617919922,
+ "step": 384
+ },
+ {
+ "epoch": 5.349497597204019,
+ "grad_norm": 0.27780187129974365,
+ "learning_rate": 0.0006,
+ "loss": 5.241010665893555,
+ "step": 385
+ },
+ {
+ "epoch": 5.36347750109218,
+ "grad_norm": 0.261767715215683,
+ "learning_rate": 0.0006,
+ "loss": 5.230723857879639,
+ "step": 386
+ },
+ {
+ "epoch": 5.3774574049803405,
+ "grad_norm": 0.2111261785030365,
+ "learning_rate": 0.0006,
+ "loss": 5.1848602294921875,
+ "step": 387
+ },
+ {
+ "epoch": 5.391437308868501,
+ "grad_norm": 0.24325387179851532,
+ "learning_rate": 0.0006,
+ "loss": 5.180911064147949,
+ "step": 388
+ },
+ {
+ "epoch": 5.405417212756662,
+ "grad_norm": 0.19542962312698364,
+ "learning_rate": 0.0006,
+ "loss": 5.189907073974609,
+ "step": 389
+ },
+ {
+ "epoch": 5.419397116644823,
+ "grad_norm": 0.20489346981048584,
+ "learning_rate": 0.0006,
+ "loss": 5.184634208679199,
+ "step": 390
+ },
+ {
+ "epoch": 5.433377020532983,
+ "grad_norm": 0.2753409147262573,
+ "learning_rate": 0.0006,
+ "loss": 5.190083026885986,
+ "step": 391
+ },
+ {
+ "epoch": 5.447356924421145,
+ "grad_norm": 0.3758019208908081,
+ "learning_rate": 0.0006,
+ "loss": 5.189423561096191,
+ "step": 392
+ },
+ {
+ "epoch": 5.461336828309306,
+ "grad_norm": 0.4425095021724701,
+ "learning_rate": 0.0006,
+ "loss": 5.17152214050293,
+ "step": 393
+ },
+ {
+ "epoch": 5.4753167321974665,
+ "grad_norm": 0.39721858501434326,
+ "learning_rate": 0.0006,
+ "loss": 5.189178466796875,
+ "step": 394
+ },
+ {
+ "epoch": 5.489296636085627,
+ "grad_norm": 0.43441957235336304,
+ "learning_rate": 0.0006,
+ "loss": 5.1823577880859375,
+ "step": 395
+ },
+ {
+ "epoch": 5.503276539973788,
+ "grad_norm": 0.3583861291408539,
+ "learning_rate": 0.0006,
+ "loss": 5.160187721252441,
+ "step": 396
+ },
+ {
+ "epoch": 5.517256443861949,
+ "grad_norm": 0.323290079832077,
+ "learning_rate": 0.0006,
+ "loss": 5.113046646118164,
+ "step": 397
+ },
+ {
+ "epoch": 5.531236347750109,
+ "grad_norm": 0.3049418330192566,
+ "learning_rate": 0.0006,
+ "loss": 5.172209739685059,
+ "step": 398
+ },
+ {
+ "epoch": 5.54521625163827,
+ "grad_norm": 0.3253744840621948,
+ "learning_rate": 0.0006,
+ "loss": 5.1970720291137695,
+ "step": 399
+ },
+ {
+ "epoch": 5.559196155526431,
+ "grad_norm": 0.3232555091381073,
+ "learning_rate": 0.0006,
+ "loss": 5.173195838928223,
+ "step": 400
+ },
+ {
+ "epoch": 5.573176059414592,
+ "grad_norm": 0.33751845359802246,
+ "learning_rate": 0.0006,
+ "loss": 5.137526988983154,
+ "step": 401
+ },
+ {
+ "epoch": 5.587155963302752,
+ "grad_norm": 0.45970913767814636,
+ "learning_rate": 0.0006,
+ "loss": 5.123377799987793,
+ "step": 402
+ },
+ {
+ "epoch": 5.601135867190913,
+ "grad_norm": 0.5383784770965576,
+ "learning_rate": 0.0006,
+ "loss": 5.154180526733398,
+ "step": 403
+ },
+ {
+ "epoch": 5.615115771079074,
+ "grad_norm": 0.45765912532806396,
+ "learning_rate": 0.0006,
+ "loss": 5.1485209465026855,
+ "step": 404
+ },
+ {
+ "epoch": 5.6290956749672345,
+ "grad_norm": 0.5079503059387207,
+ "learning_rate": 0.0006,
+ "loss": 5.158293724060059,
+ "step": 405
+ },
+ {
+ "epoch": 5.643075578855395,
+ "grad_norm": 0.4860183894634247,
+ "learning_rate": 0.0006,
+ "loss": 5.1610212326049805,
+ "step": 406
+ },
+ {
+ "epoch": 5.657055482743556,
+ "grad_norm": 0.4065648913383484,
+ "learning_rate": 0.0006,
+ "loss": 5.1260786056518555,
+ "step": 407
+ },
+ {
+ "epoch": 5.671035386631717,
+ "grad_norm": 0.39606142044067383,
+ "learning_rate": 0.0006,
+ "loss": 5.1598711013793945,
+ "step": 408
+ },
+ {
+ "epoch": 5.685015290519877,
+ "grad_norm": 0.4705151319503784,
+ "learning_rate": 0.0006,
+ "loss": 5.166455268859863,
+ "step": 409
+ },
+ {
+ "epoch": 5.698995194408038,
+ "grad_norm": 0.5040799379348755,
+ "learning_rate": 0.0006,
+ "loss": 5.1408209800720215,
+ "step": 410
+ },
+ {
+ "epoch": 5.712975098296199,
+ "grad_norm": 0.5012556910514832,
+ "learning_rate": 0.0006,
+ "loss": 5.144109725952148,
+ "step": 411
+ },
+ {
+ "epoch": 5.72695500218436,
+ "grad_norm": 0.44301411509513855,
+ "learning_rate": 0.0006,
+ "loss": 5.155509948730469,
+ "step": 412
+ },
+ {
+ "epoch": 5.740934906072521,
+ "grad_norm": 0.36632269620895386,
+ "learning_rate": 0.0006,
+ "loss": 5.123111248016357,
+ "step": 413
+ },
+ {
+ "epoch": 5.754914809960681,
+ "grad_norm": 0.2980524003505707,
+ "learning_rate": 0.0006,
+ "loss": 5.1355719566345215,
+ "step": 414
+ },
+ {
+ "epoch": 5.768894713848843,
+ "grad_norm": 0.3441782295703888,
+ "learning_rate": 0.0006,
+ "loss": 5.132327079772949,
+ "step": 415
+ },
+ {
+ "epoch": 5.782874617737003,
+ "grad_norm": 0.4150780737400055,
+ "learning_rate": 0.0006,
+ "loss": 5.148543357849121,
+ "step": 416
+ },
+ {
+ "epoch": 5.796854521625164,
+ "grad_norm": 0.48417383432388306,
+ "learning_rate": 0.0006,
+ "loss": 5.104989528656006,
+ "step": 417
+ },
+ {
+ "epoch": 5.810834425513325,
+ "grad_norm": 0.3216031491756439,
+ "learning_rate": 0.0006,
+ "loss": 5.0926127433776855,
+ "step": 418
+ },
+ {
+ "epoch": 5.824814329401486,
+ "grad_norm": 0.2821158468723297,
+ "learning_rate": 0.0006,
+ "loss": 5.112299919128418,
+ "step": 419
+ },
+ {
+ "epoch": 5.838794233289646,
+ "grad_norm": 0.29821011424064636,
+ "learning_rate": 0.0006,
+ "loss": 5.091662406921387,
+ "step": 420
+ },
+ {
+ "epoch": 5.852774137177807,
+ "grad_norm": 0.30570563673973083,
+ "learning_rate": 0.0006,
+ "loss": 5.137539863586426,
+ "step": 421
+ },
+ {
+ "epoch": 5.866754041065968,
+ "grad_norm": 0.4029594957828522,
+ "learning_rate": 0.0006,
+ "loss": 5.112751007080078,
+ "step": 422
+ },
+ {
+ "epoch": 5.8807339449541285,
+ "grad_norm": 0.3878514766693115,
+ "learning_rate": 0.0006,
+ "loss": 5.094973564147949,
+ "step": 423
+ },
+ {
+ "epoch": 5.894713848842289,
+ "grad_norm": 0.31936126947402954,
+ "learning_rate": 0.0006,
+ "loss": 5.081070899963379,
+ "step": 424
+ },
+ {
+ "epoch": 5.90869375273045,
+ "grad_norm": 0.3309082090854645,
+ "learning_rate": 0.0006,
+ "loss": 5.06803560256958,
+ "step": 425
+ },
+ {
+ "epoch": 5.922673656618611,
+ "grad_norm": 0.27830439805984497,
+ "learning_rate": 0.0006,
+ "loss": 5.044766426086426,
+ "step": 426
+ },
+ {
+ "epoch": 5.936653560506771,
+ "grad_norm": 0.3301011919975281,
+ "learning_rate": 0.0006,
+ "loss": 5.093942165374756,
+ "step": 427
+ },
+ {
+ "epoch": 5.950633464394932,
+ "grad_norm": 0.40845948457717896,
+ "learning_rate": 0.0006,
+ "loss": 5.0889458656311035,
+ "step": 428
+ },
+ {
+ "epoch": 5.964613368283093,
+ "grad_norm": 0.4412153959274292,
+ "learning_rate": 0.0006,
+ "loss": 5.064834117889404,
+ "step": 429
+ },
+ {
+ "epoch": 5.978593272171254,
+ "grad_norm": 0.3592590093612671,
+ "learning_rate": 0.0006,
+ "loss": 5.066648006439209,
+ "step": 430
+ },
+ {
+ "epoch": 5.992573176059414,
+ "grad_norm": 0.3952840268611908,
+ "learning_rate": 0.0006,
+ "loss": 5.066549301147461,
+ "step": 431
+ },
+ {
+ "epoch": 6.0,
+ "grad_norm": 0.38878682255744934,
+ "learning_rate": 0.0006,
+ "loss": 5.0354323387146,
+ "step": 432
+ },
+ {
+ "epoch": 6.0,
+ "eval_loss": 5.473907947540283,
+ "eval_runtime": 44.5121,
+ "eval_samples_per_second": 54.861,
+ "eval_steps_per_second": 3.437,
+ "step": 432
+ },
+ {
+ "epoch": 6.013979903888161,
+ "grad_norm": 0.42730140686035156,
+ "learning_rate": 0.0006,
+ "loss": 5.048557281494141,
+ "step": 433
+ },
+ {
+ "epoch": 6.0279598077763215,
+ "grad_norm": 0.32713913917541504,
+ "learning_rate": 0.0006,
+ "loss": 5.041255950927734,
+ "step": 434
+ },
+ {
+ "epoch": 6.041939711664482,
+ "grad_norm": 0.32520365715026855,
+ "learning_rate": 0.0006,
+ "loss": 5.043124198913574,
+ "step": 435
+ },
+ {
+ "epoch": 6.055919615552643,
+ "grad_norm": 0.2941839098930359,
+ "learning_rate": 0.0006,
+ "loss": 5.0407304763793945,
+ "step": 436
+ },
+ {
+ "epoch": 6.069899519440804,
+ "grad_norm": 0.3088819682598114,
+ "learning_rate": 0.0006,
+ "loss": 5.020771026611328,
+ "step": 437
+ },
+ {
+ "epoch": 6.083879423328964,
+ "grad_norm": 0.34334254264831543,
+ "learning_rate": 0.0006,
+ "loss": 5.0260009765625,
+ "step": 438
+ },
+ {
+ "epoch": 6.097859327217125,
+ "grad_norm": 0.33016136288642883,
+ "learning_rate": 0.0006,
+ "loss": 4.994412899017334,
+ "step": 439
+ },
+ {
+ "epoch": 6.111839231105286,
+ "grad_norm": 0.2527366280555725,
+ "learning_rate": 0.0006,
+ "loss": 4.997830390930176,
+ "step": 440
+ },
+ {
+ "epoch": 6.1258191349934465,
+ "grad_norm": 0.24742509424686432,
+ "learning_rate": 0.0006,
+ "loss": 5.017087936401367,
+ "step": 441
+ },
+ {
+ "epoch": 6.139799038881607,
+ "grad_norm": 0.22578303515911102,
+ "learning_rate": 0.0006,
+ "loss": 5.000683784484863,
+ "step": 442
+ },
+ {
+ "epoch": 6.153778942769769,
+ "grad_norm": 0.21213896572589874,
+ "learning_rate": 0.0006,
+ "loss": 4.993280410766602,
+ "step": 443
+ },
+ {
+ "epoch": 6.16775884665793,
+ "grad_norm": 0.22559592127799988,
+ "learning_rate": 0.0006,
+ "loss": 5.005735874176025,
+ "step": 444
+ },
+ {
+ "epoch": 6.18173875054609,
+ "grad_norm": 0.18574322760105133,
+ "learning_rate": 0.0006,
+ "loss": 4.996601104736328,
+ "step": 445
+ },
+ {
+ "epoch": 6.195718654434251,
+ "grad_norm": 0.1793852299451828,
+ "learning_rate": 0.0006,
+ "loss": 4.977394104003906,
+ "step": 446
+ },
+ {
+ "epoch": 6.209698558322412,
+ "grad_norm": 0.1851297914981842,
+ "learning_rate": 0.0006,
+ "loss": 4.983541488647461,
+ "step": 447
+ },
+ {
+ "epoch": 6.2236784622105725,
+ "grad_norm": 0.2045268565416336,
+ "learning_rate": 0.0006,
+ "loss": 4.992830276489258,
+ "step": 448
+ },
+ {
+ "epoch": 6.237658366098733,
+ "grad_norm": 0.21707463264465332,
+ "learning_rate": 0.0006,
+ "loss": 4.998589515686035,
+ "step": 449
+ },
+ {
+ "epoch": 6.251638269986894,
+ "grad_norm": 0.2805860638618469,
+ "learning_rate": 0.0006,
+ "loss": 4.973134517669678,
+ "step": 450
+ },
+ {
+ "epoch": 6.265618173875055,
+ "grad_norm": 0.33102089166641235,
+ "learning_rate": 0.0006,
+ "loss": 4.957348823547363,
+ "step": 451
+ },
+ {
+ "epoch": 6.279598077763215,
+ "grad_norm": 0.3763096034526825,
+ "learning_rate": 0.0006,
+ "loss": 5.0133256912231445,
+ "step": 452
+ },
+ {
+ "epoch": 6.293577981651376,
+ "grad_norm": 0.4676196575164795,
+ "learning_rate": 0.0006,
+ "loss": 4.972289562225342,
+ "step": 453
+ },
+ {
+ "epoch": 6.307557885539537,
+ "grad_norm": 0.6158978343009949,
+ "learning_rate": 0.0006,
+ "loss": 4.989326477050781,
+ "step": 454
+ },
+ {
+ "epoch": 6.321537789427698,
+ "grad_norm": 0.537460446357727,
+ "learning_rate": 0.0006,
+ "loss": 5.0210676193237305,
+ "step": 455
+ },
+ {
+ "epoch": 6.335517693315858,
+ "grad_norm": 0.5342532396316528,
+ "learning_rate": 0.0006,
+ "loss": 4.988524436950684,
+ "step": 456
+ },
+ {
+ "epoch": 6.349497597204019,
+ "grad_norm": 0.5736384987831116,
+ "learning_rate": 0.0006,
+ "loss": 4.977508068084717,
+ "step": 457
+ },
+ {
+ "epoch": 6.36347750109218,
+ "grad_norm": 0.6656201481819153,
+ "learning_rate": 0.0006,
+ "loss": 5.047934055328369,
+ "step": 458
+ },
+ {
+ "epoch": 6.3774574049803405,
+ "grad_norm": 0.6388342380523682,
+ "learning_rate": 0.0006,
+ "loss": 5.017617225646973,
+ "step": 459
+ },
+ {
+ "epoch": 6.391437308868501,
+ "grad_norm": 0.6620904207229614,
+ "learning_rate": 0.0006,
+ "loss": 5.032195091247559,
+ "step": 460
+ },
+ {
+ "epoch": 6.405417212756662,
+ "grad_norm": 0.693274974822998,
+ "learning_rate": 0.0006,
+ "loss": 5.02433967590332,
+ "step": 461
+ },
+ {
+ "epoch": 6.419397116644823,
+ "grad_norm": 0.6888924241065979,
+ "learning_rate": 0.0006,
+ "loss": 5.010735511779785,
+ "step": 462
+ },
+ {
+ "epoch": 6.433377020532983,
+ "grad_norm": 0.7181721925735474,
+ "learning_rate": 0.0006,
+ "loss": 5.049690246582031,
+ "step": 463
+ },
+ {
+ "epoch": 6.447356924421145,
+ "grad_norm": 0.7225117087364197,
+ "learning_rate": 0.0006,
+ "loss": 5.031939506530762,
+ "step": 464
+ },
+ {
+ "epoch": 6.461336828309306,
+ "grad_norm": 0.5268304347991943,
+ "learning_rate": 0.0006,
+ "loss": 5.01638126373291,
+ "step": 465
+ },
+ {
+ "epoch": 6.4753167321974665,
+ "grad_norm": 0.38218435645103455,
+ "learning_rate": 0.0006,
+ "loss": 4.997034072875977,
+ "step": 466
+ },
+ {
+ "epoch": 6.489296636085627,
+ "grad_norm": 0.3576396703720093,
+ "learning_rate": 0.0006,
+ "loss": 5.006804943084717,
+ "step": 467
+ },
+ {
+ "epoch": 6.503276539973788,
+ "grad_norm": 0.3305981755256653,
+ "learning_rate": 0.0006,
+ "loss": 4.994671821594238,
+ "step": 468
+ },
+ {
+ "epoch": 6.517256443861949,
+ "grad_norm": 0.3254900574684143,
+ "learning_rate": 0.0006,
+ "loss": 4.9747490882873535,
+ "step": 469
+ },
+ {
+ "epoch": 6.531236347750109,
+ "grad_norm": 0.2655033469200134,
+ "learning_rate": 0.0006,
+ "loss": 5.002863883972168,
+ "step": 470
+ },
+ {
+ "epoch": 6.54521625163827,
+ "grad_norm": 0.2620532810688019,
+ "learning_rate": 0.0006,
+ "loss": 4.9813337326049805,
+ "step": 471
+ },
+ {
+ "epoch": 6.559196155526431,
+ "grad_norm": 0.22128869593143463,
+ "learning_rate": 0.0006,
+ "loss": 4.978368759155273,
+ "step": 472
+ },
+ {
+ "epoch": 6.573176059414592,
+ "grad_norm": 0.22638699412345886,
+ "learning_rate": 0.0006,
+ "loss": 4.944509029388428,
+ "step": 473
+ },
+ {
+ "epoch": 6.587155963302752,
+ "grad_norm": 0.20720207691192627,
+ "learning_rate": 0.0006,
+ "loss": 4.98404598236084,
+ "step": 474
+ },
+ {
+ "epoch": 6.601135867190913,
+ "grad_norm": 0.21577289700508118,
+ "learning_rate": 0.0006,
+ "loss": 4.958878040313721,
+ "step": 475
+ },
+ {
+ "epoch": 6.615115771079074,
+ "grad_norm": 0.22453972697257996,
+ "learning_rate": 0.0006,
+ "loss": 4.935467720031738,
+ "step": 476
+ },
+ {
+ "epoch": 6.6290956749672345,
+ "grad_norm": 0.20757712423801422,
+ "learning_rate": 0.0006,
+ "loss": 4.943334579467773,
+ "step": 477
+ },
+ {
+ "epoch": 6.643075578855395,
+ "grad_norm": 0.22808043658733368,
+ "learning_rate": 0.0006,
+ "loss": 4.936544418334961,
+ "step": 478
+ },
+ {
+ "epoch": 6.657055482743556,
+ "grad_norm": 0.2193756401538849,
+ "learning_rate": 0.0006,
+ "loss": 4.938162326812744,
+ "step": 479
+ },
+ {
+ "epoch": 6.671035386631717,
+ "grad_norm": 0.19677500426769257,
+ "learning_rate": 0.0006,
+ "loss": 4.9026713371276855,
+ "step": 480
+ },
+ {
+ "epoch": 6.685015290519877,
+ "grad_norm": 0.17271658778190613,
+ "learning_rate": 0.0006,
+ "loss": 4.912519454956055,
+ "step": 481
+ },
+ {
+ "epoch": 6.698995194408038,
+ "grad_norm": 0.17551499605178833,
+ "learning_rate": 0.0006,
+ "loss": 4.929941177368164,
+ "step": 482
+ },
+ {
+ "epoch": 6.712975098296199,
+ "grad_norm": 0.1582687348127365,
+ "learning_rate": 0.0006,
+ "loss": 4.908967971801758,
+ "step": 483
+ },
+ {
+ "epoch": 6.72695500218436,
+ "grad_norm": 0.1593410074710846,
+ "learning_rate": 0.0006,
+ "loss": 4.901554107666016,
+ "step": 484
+ },
+ {
+ "epoch": 6.740934906072521,
+ "grad_norm": 0.16746895015239716,
+ "learning_rate": 0.0006,
+ "loss": 4.917915344238281,
+ "step": 485
+ },
+ {
+ "epoch": 6.754914809960681,
+ "grad_norm": 0.17066062986850739,
+ "learning_rate": 0.0006,
+ "loss": 4.912853240966797,
+ "step": 486
+ },
+ {
+ "epoch": 6.768894713848843,
+ "grad_norm": 0.16727769374847412,
+ "learning_rate": 0.0006,
+ "loss": 4.895434856414795,
+ "step": 487
+ },
+ {
+ "epoch": 6.782874617737003,
+ "grad_norm": 0.1784558743238449,
+ "learning_rate": 0.0006,
+ "loss": 4.8805341720581055,
+ "step": 488
+ },
+ {
+ "epoch": 6.796854521625164,
+ "grad_norm": 0.176686093211174,
+ "learning_rate": 0.0006,
+ "loss": 4.855296611785889,
+ "step": 489
+ },
+ {
+ "epoch": 6.810834425513325,
+ "grad_norm": 0.21577849984169006,
+ "learning_rate": 0.0006,
+ "loss": 4.885506629943848,
+ "step": 490
+ },
+ {
+ "epoch": 6.824814329401486,
+ "grad_norm": 0.27615776658058167,
+ "learning_rate": 0.0006,
+ "loss": 4.913756847381592,
+ "step": 491
+ },
+ {
+ "epoch": 6.838794233289646,
+ "grad_norm": 0.3653675615787506,
+ "learning_rate": 0.0006,
+ "loss": 4.880918979644775,
+ "step": 492
+ },
+ {
+ "epoch": 6.852774137177807,
+ "grad_norm": 0.41473883390426636,
+ "learning_rate": 0.0006,
+ "loss": 4.894164562225342,
+ "step": 493
+ },
+ {
+ "epoch": 6.866754041065968,
+ "grad_norm": 0.45850715041160583,
+ "learning_rate": 0.0006,
+ "loss": 4.907922744750977,
+ "step": 494
+ },
+ {
+ "epoch": 6.8807339449541285,
+ "grad_norm": 0.4675290882587433,
+ "learning_rate": 0.0006,
+ "loss": 4.883112907409668,
+ "step": 495
+ },
+ {
+ "epoch": 6.894713848842289,
+ "grad_norm": 0.45795994997024536,
+ "learning_rate": 0.0006,
+ "loss": 4.897843360900879,
+ "step": 496
+ },
+ {
+ "epoch": 6.90869375273045,
+ "grad_norm": 0.46130508184432983,
+ "learning_rate": 0.0006,
+ "loss": 4.890612602233887,
+ "step": 497
+ },
+ {
+ "epoch": 6.922673656618611,
+ "grad_norm": 0.44783803820610046,
+ "learning_rate": 0.0006,
+ "loss": 4.880192756652832,
+ "step": 498
+ },
+ {
+ "epoch": 6.936653560506771,
+ "grad_norm": 0.35361284017562866,
+ "learning_rate": 0.0006,
+ "loss": 4.840778350830078,
+ "step": 499
+ },
+ {
+ "epoch": 6.950633464394932,
+ "grad_norm": 0.34027689695358276,
+ "learning_rate": 0.0006,
+ "loss": 4.871222496032715,
+ "step": 500
+ },
+ {
+ "epoch": 6.964613368283093,
+ "grad_norm": 0.30228909850120544,
+ "learning_rate": 0.0006,
+ "loss": 4.868077278137207,
+ "step": 501
+ },
+ {
+ "epoch": 6.978593272171254,
+ "grad_norm": 0.27706998586654663,
+ "learning_rate": 0.0006,
+ "loss": 4.895936012268066,
+ "step": 502
+ },
+ {
+ "epoch": 6.992573176059414,
+ "grad_norm": 0.3516870439052582,
+ "learning_rate": 0.0006,
+ "loss": 4.824636459350586,
+ "step": 503
+ },
+ {
+ "epoch": 7.0,
+ "grad_norm": 0.36831387877464294,
+ "learning_rate": 0.0006,
+ "loss": 4.874397277832031,
+ "step": 504
+ },
+ {
+ "epoch": 7.0,
+ "eval_loss": 5.176281452178955,
+ "eval_runtime": 44.2386,
+ "eval_samples_per_second": 55.201,
+ "eval_steps_per_second": 3.459,
+ "step": 504
+ },
+ {
+ "epoch": 7.013979903888161,
+ "grad_norm": 0.4265240430831909,
+ "learning_rate": 0.0006,
+ "loss": 4.814333438873291,
+ "step": 505
+ },
+ {
+ "epoch": 7.0279598077763215,
+ "grad_norm": 0.5126975774765015,
+ "learning_rate": 0.0006,
+ "loss": 4.852343559265137,
+ "step": 506
+ },
+ {
+ "epoch": 7.041939711664482,
+ "grad_norm": 0.43080806732177734,
+ "learning_rate": 0.0006,
+ "loss": 4.843439102172852,
+ "step": 507
+ },
+ {
+ "epoch": 7.055919615552643,
+ "grad_norm": 0.43170198798179626,
+ "learning_rate": 0.0006,
+ "loss": 4.845984935760498,
+ "step": 508
+ },
+ {
+ "epoch": 7.069899519440804,
+ "grad_norm": 0.5640552043914795,
+ "learning_rate": 0.0006,
+ "loss": 4.840991973876953,
+ "step": 509
+ },
+ {
+ "epoch": 7.083879423328964,
+ "grad_norm": 0.540381133556366,
+ "learning_rate": 0.0006,
+ "loss": 4.801316738128662,
+ "step": 510
+ },
+ {
+ "epoch": 7.097859327217125,
+ "grad_norm": 0.5412097573280334,
+ "learning_rate": 0.0006,
+ "loss": 4.886598587036133,
+ "step": 511
+ },
+ {
+ "epoch": 7.111839231105286,
+ "grad_norm": 0.630648136138916,
+ "learning_rate": 0.0006,
+ "loss": 4.849774360656738,
+ "step": 512
+ },
+ {
+ "epoch": 7.1258191349934465,
+ "grad_norm": 0.569952130317688,
+ "learning_rate": 0.0006,
+ "loss": 4.870607376098633,
+ "step": 513
+ },
+ {
+ "epoch": 7.139799038881607,
+ "grad_norm": 0.42051541805267334,
+ "learning_rate": 0.0006,
+ "loss": 4.83833122253418,
+ "step": 514
+ },
+ {
+ "epoch": 7.153778942769769,
+ "grad_norm": 0.3930990397930145,
+ "learning_rate": 0.0006,
+ "loss": 4.853984355926514,
+ "step": 515
+ },
+ {
+ "epoch": 7.16775884665793,
+ "grad_norm": 0.512886106967926,
+ "learning_rate": 0.0006,
+ "loss": 4.815458297729492,
+ "step": 516
+ },
+ {
+ "epoch": 7.18173875054609,
+ "grad_norm": 0.42580172419548035,
+ "learning_rate": 0.0006,
+ "loss": 4.825312614440918,
+ "step": 517
+ },
+ {
+ "epoch": 7.195718654434251,
+ "grad_norm": 0.31628182530403137,
+ "learning_rate": 0.0006,
+ "loss": 4.806377410888672,
+ "step": 518
+ },
+ {
+ "epoch": 7.209698558322412,
+ "grad_norm": 0.3109956681728363,
+ "learning_rate": 0.0006,
+ "loss": 4.819339752197266,
+ "step": 519
+ },
+ {
+ "epoch": 7.2236784622105725,
+ "grad_norm": 0.2740071415901184,
+ "learning_rate": 0.0006,
+ "loss": 4.81319522857666,
+ "step": 520
+ },
+ {
+ "epoch": 7.237658366098733,
+ "grad_norm": 0.26441165804862976,
+ "learning_rate": 0.0006,
+ "loss": 4.8107380867004395,
+ "step": 521
+ },
+ {
+ "epoch": 7.251638269986894,
+ "grad_norm": 0.2496110051870346,
+ "learning_rate": 0.0006,
+ "loss": 4.785193920135498,
+ "step": 522
+ },
+ {
+ "epoch": 7.265618173875055,
+ "grad_norm": 0.2565560042858124,
+ "learning_rate": 0.0006,
+ "loss": 4.802750587463379,
+ "step": 523
+ },
+ {
+ "epoch": 7.279598077763215,
+ "grad_norm": 0.2126980572938919,
+ "learning_rate": 0.0006,
+ "loss": 4.763580322265625,
+ "step": 524
+ },
+ {
+ "epoch": 7.293577981651376,
+ "grad_norm": 0.2169921100139618,
+ "learning_rate": 0.0006,
+ "loss": 4.756124973297119,
+ "step": 525
+ },
+ {
+ "epoch": 7.307557885539537,
+ "grad_norm": 0.2372167706489563,
+ "learning_rate": 0.0006,
+ "loss": 4.786888599395752,
+ "step": 526
+ },
+ {
+ "epoch": 7.321537789427698,
+ "grad_norm": 0.2124386429786682,
+ "learning_rate": 0.0006,
+ "loss": 4.777996063232422,
+ "step": 527
+ },
+ {
+ "epoch": 7.335517693315858,
+ "grad_norm": 0.18585442006587982,
+ "learning_rate": 0.0006,
+ "loss": 4.770537853240967,
+ "step": 528
+ },
+ {
+ "epoch": 7.349497597204019,
+ "grad_norm": 0.20515340566635132,
+ "learning_rate": 0.0006,
+ "loss": 4.769230842590332,
+ "step": 529
+ },
+ {
+ "epoch": 7.36347750109218,
+ "grad_norm": 0.19906704127788544,
+ "learning_rate": 0.0006,
+ "loss": 4.752581596374512,
+ "step": 530
+ },
+ {
+ "epoch": 7.3774574049803405,
+ "grad_norm": 0.2030428946018219,
+ "learning_rate": 0.0006,
+ "loss": 4.7353715896606445,
+ "step": 531
+ },
+ {
+ "epoch": 7.391437308868501,
+ "grad_norm": 0.17820630967617035,
+ "learning_rate": 0.0006,
+ "loss": 4.742705345153809,
+ "step": 532
+ },
+ {
+ "epoch": 7.405417212756662,
+ "grad_norm": 0.17642682790756226,
+ "learning_rate": 0.0006,
+ "loss": 4.752669334411621,
+ "step": 533
+ },
+ {
+ "epoch": 7.419397116644823,
+ "grad_norm": 0.18088409304618835,
+ "learning_rate": 0.0006,
+ "loss": 4.734611511230469,
+ "step": 534
+ },
+ {
+ "epoch": 7.433377020532983,
+ "grad_norm": 0.20897020399570465,
+ "learning_rate": 0.0006,
+ "loss": 4.756442070007324,
+ "step": 535
+ },
+ {
+ "epoch": 7.447356924421145,
+ "grad_norm": 0.23166777193546295,
+ "learning_rate": 0.0006,
+ "loss": 4.712922096252441,
+ "step": 536
+ },
+ {
+ "epoch": 7.461336828309306,
+ "grad_norm": 0.2205347716808319,
+ "learning_rate": 0.0006,
+ "loss": 4.75001335144043,
+ "step": 537
+ },
+ {
+ "epoch": 7.4753167321974665,
+ "grad_norm": 0.23868022859096527,
+ "learning_rate": 0.0006,
+ "loss": 4.726134300231934,
+ "step": 538
+ },
+ {
+ "epoch": 7.489296636085627,
+ "grad_norm": 0.2861441373825073,
+ "learning_rate": 0.0006,
+ "loss": 4.754112243652344,
+ "step": 539
+ },
+ {
+ "epoch": 7.503276539973788,
+ "grad_norm": 0.28980305790901184,
+ "learning_rate": 0.0006,
+ "loss": 4.716021537780762,
+ "step": 540
+ },
+ {
+ "epoch": 7.517256443861949,
+ "grad_norm": 0.2784835696220398,
+ "learning_rate": 0.0006,
+ "loss": 4.713929176330566,
+ "step": 541
+ },
+ {
+ "epoch": 7.531236347750109,
+ "grad_norm": 0.2962653934955597,
+ "learning_rate": 0.0006,
+ "loss": 4.711845397949219,
+ "step": 542
+ },
+ {
+ "epoch": 7.54521625163827,
+ "grad_norm": 0.3333161175251007,
+ "learning_rate": 0.0006,
+ "loss": 4.709834575653076,
+ "step": 543
+ },
+ {
+ "epoch": 7.559196155526431,
+ "grad_norm": 0.35304850339889526,
+ "learning_rate": 0.0006,
+ "loss": 4.732914924621582,
+ "step": 544
+ },
+ {
+ "epoch": 7.573176059414592,
+ "grad_norm": 0.4165869355201721,
+ "learning_rate": 0.0006,
+ "loss": 4.716190338134766,
+ "step": 545
+ },
+ {
+ "epoch": 7.587155963302752,
+ "grad_norm": 0.4878059923648834,
+ "learning_rate": 0.0006,
+ "loss": 4.723773002624512,
+ "step": 546
+ },
+ {
+ "epoch": 7.601135867190913,
+ "grad_norm": 0.36643707752227783,
+ "learning_rate": 0.0006,
+ "loss": 4.721458911895752,
+ "step": 547
+ },
+ {
+ "epoch": 7.615115771079074,
+ "grad_norm": 0.4046908915042877,
+ "learning_rate": 0.0006,
+ "loss": 4.715397834777832,
+ "step": 548
+ },
+ {
+ "epoch": 7.6290956749672345,
+ "grad_norm": 0.44426342844963074,
+ "learning_rate": 0.0006,
+ "loss": 4.737357139587402,
+ "step": 549
+ },
+ {
+ "epoch": 7.643075578855395,
+ "grad_norm": 0.4181079864501953,
+ "learning_rate": 0.0006,
+ "loss": 4.731383800506592,
+ "step": 550
+ },
+ {
+ "epoch": 7.657055482743556,
+ "grad_norm": 0.3486088216304779,
+ "learning_rate": 0.0006,
+ "loss": 4.728029727935791,
+ "step": 551
+ },
+ {
+ "epoch": 7.671035386631717,
+ "grad_norm": 0.37150970101356506,
+ "learning_rate": 0.0006,
+ "loss": 4.7083210945129395,
+ "step": 552
+ },
+ {
+ "epoch": 7.685015290519877,
+ "grad_norm": 0.43324410915374756,
+ "learning_rate": 0.0006,
+ "loss": 4.728720664978027,
+ "step": 553
+ },
+ {
+ "epoch": 7.698995194408038,
+ "grad_norm": 0.5026620626449585,
+ "learning_rate": 0.0006,
+ "loss": 4.698156356811523,
+ "step": 554
+ },
+ {
+ "epoch": 7.712975098296199,
+ "grad_norm": 0.4873499274253845,
+ "learning_rate": 0.0006,
+ "loss": 4.7169952392578125,
+ "step": 555
+ },
+ {
+ "epoch": 7.72695500218436,
+ "grad_norm": 0.4285493791103363,
+ "learning_rate": 0.0006,
+ "loss": 4.6877241134643555,
+ "step": 556
+ },
+ {
+ "epoch": 7.740934906072521,
+ "grad_norm": 0.5179854035377502,
+ "learning_rate": 0.0006,
+ "loss": 4.704267501831055,
+ "step": 557
+ },
+ {
+ "epoch": 7.754914809960681,
+ "grad_norm": 0.4642147421836853,
+ "learning_rate": 0.0006,
+ "loss": 4.695004463195801,
+ "step": 558
+ },
+ {
+ "epoch": 7.768894713848843,
+ "grad_norm": 0.47149503231048584,
+ "learning_rate": 0.0006,
+ "loss": 4.694338798522949,
+ "step": 559
+ },
+ {
+ "epoch": 7.782874617737003,
+ "grad_norm": 0.5422149300575256,
+ "learning_rate": 0.0006,
+ "loss": 4.749478340148926,
+ "step": 560
+ },
+ {
+ "epoch": 7.796854521625164,
+ "grad_norm": 0.4360728859901428,
+ "learning_rate": 0.0006,
+ "loss": 4.685191631317139,
+ "step": 561
+ },
+ {
+ "epoch": 7.810834425513325,
+ "grad_norm": 0.4243801534175873,
+ "learning_rate": 0.0006,
+ "loss": 4.69228458404541,
+ "step": 562
+ },
+ {
+ "epoch": 7.824814329401486,
+ "grad_norm": 0.40380290150642395,
+ "learning_rate": 0.0006,
+ "loss": 4.690923690795898,
+ "step": 563
+ },
+ {
+ "epoch": 7.838794233289646,
+ "grad_norm": 0.4352976381778717,
+ "learning_rate": 0.0006,
+ "loss": 4.720489978790283,
+ "step": 564
+ },
+ {
+ "epoch": 7.852774137177807,
+ "grad_norm": 0.44634920358657837,
+ "learning_rate": 0.0006,
+ "loss": 4.683789253234863,
+ "step": 565
+ },
+ {
+ "epoch": 7.866754041065968,
+ "grad_norm": 0.3818186819553375,
+ "learning_rate": 0.0006,
+ "loss": 4.696887016296387,
+ "step": 566
+ },
+ {
+ "epoch": 7.8807339449541285,
+ "grad_norm": 0.35270464420318604,
+ "learning_rate": 0.0006,
+ "loss": 4.715676307678223,
+ "step": 567
+ },
+ {
+ "epoch": 7.894713848842289,
+ "grad_norm": 0.249756321310997,
+ "learning_rate": 0.0006,
+ "loss": 4.672721862792969,
+ "step": 568
+ },
+ {
+ "epoch": 7.90869375273045,
+ "grad_norm": 0.25097888708114624,
+ "learning_rate": 0.0006,
+ "loss": 4.663518905639648,
+ "step": 569
+ },
+ {
+ "epoch": 7.922673656618611,
+ "grad_norm": 0.26563209295272827,
+ "learning_rate": 0.0006,
+ "loss": 4.675405025482178,
+ "step": 570
+ },
+ {
+ "epoch": 7.936653560506771,
+ "grad_norm": 0.26451292634010315,
+ "learning_rate": 0.0006,
+ "loss": 4.651235103607178,
+ "step": 571
+ },
+ {
+ "epoch": 7.950633464394932,
+ "grad_norm": 0.24185842275619507,
+ "learning_rate": 0.0006,
+ "loss": 4.671639919281006,
+ "step": 572
+ },
+ {
+ "epoch": 7.964613368283093,
+ "grad_norm": 0.21506108343601227,
+ "learning_rate": 0.0006,
+ "loss": 4.665352821350098,
+ "step": 573
+ },
+ {
+ "epoch": 7.978593272171254,
+ "grad_norm": 0.24365705251693726,
+ "learning_rate": 0.0006,
+ "loss": 4.663162708282471,
+ "step": 574
+ },
+ {
+ "epoch": 7.992573176059414,
+ "grad_norm": 0.24251042306423187,
+ "learning_rate": 0.0006,
+ "loss": 4.666633605957031,
+ "step": 575
+ },
+ {
+ "epoch": 8.0,
+ "grad_norm": 0.24187657237052917,
+ "learning_rate": 0.0006,
+ "loss": 4.63957405090332,
+ "step": 576
+ },
+ {
+ "epoch": 8.0,
+ "eval_loss": 4.923156261444092,
+ "eval_runtime": 44.1587,
+ "eval_samples_per_second": 55.301,
+ "eval_steps_per_second": 3.465,
+ "step": 576
+ },
+ {
+ "epoch": 8.013979903888162,
+ "grad_norm": 0.21323645114898682,
+ "learning_rate": 0.0006,
+ "loss": 4.636347770690918,
+ "step": 577
+ },
+ {
+ "epoch": 8.027959807776321,
+ "grad_norm": 0.2325759083032608,
+ "learning_rate": 0.0006,
+ "loss": 4.60684871673584,
+ "step": 578
+ },
+ {
+ "epoch": 8.041939711664483,
+ "grad_norm": 0.26741257309913635,
+ "learning_rate": 0.0006,
+ "loss": 4.647780418395996,
+ "step": 579
+ },
+ {
+ "epoch": 8.055919615552643,
+ "grad_norm": 0.285720556974411,
+ "learning_rate": 0.0006,
+ "loss": 4.629637718200684,
+ "step": 580
+ },
+ {
+ "epoch": 8.069899519440805,
+ "grad_norm": 0.2453618347644806,
+ "learning_rate": 0.0006,
+ "loss": 4.62420654296875,
+ "step": 581
+ },
+ {
+ "epoch": 8.083879423328964,
+ "grad_norm": 0.19662636518478394,
+ "learning_rate": 0.0006,
+ "loss": 4.593767166137695,
+ "step": 582
+ },
+ {
+ "epoch": 8.097859327217126,
+ "grad_norm": 0.22731931507587433,
+ "learning_rate": 0.0006,
+ "loss": 4.627089023590088,
+ "step": 583
+ },
+ {
+ "epoch": 8.111839231105286,
+ "grad_norm": 0.24452590942382812,
+ "learning_rate": 0.0006,
+ "loss": 4.613677024841309,
+ "step": 584
+ },
+ {
+ "epoch": 8.125819134993447,
+ "grad_norm": 0.2952791154384613,
+ "learning_rate": 0.0006,
+ "loss": 4.604985237121582,
+ "step": 585
+ },
+ {
+ "epoch": 8.139799038881607,
+ "grad_norm": 0.3184696137905121,
+ "learning_rate": 0.0006,
+ "loss": 4.589205741882324,
+ "step": 586
+ },
+ {
+ "epoch": 8.153778942769769,
+ "grad_norm": 0.2948093116283417,
+ "learning_rate": 0.0006,
+ "loss": 4.605442047119141,
+ "step": 587
+ },
+ {
+ "epoch": 8.167758846657929,
+ "grad_norm": 0.2450508326292038,
+ "learning_rate": 0.0006,
+ "loss": 4.615349292755127,
+ "step": 588
+ },
+ {
+ "epoch": 8.18173875054609,
+ "grad_norm": 0.25664836168289185,
+ "learning_rate": 0.0006,
+ "loss": 4.592251777648926,
+ "step": 589
+ },
+ {
+ "epoch": 8.19571865443425,
+ "grad_norm": 0.24479512870311737,
+ "learning_rate": 0.0006,
+ "loss": 4.6145920753479,
+ "step": 590
+ },
+ {
+ "epoch": 8.209698558322412,
+ "grad_norm": 0.24395205080509186,
+ "learning_rate": 0.0006,
+ "loss": 4.600954055786133,
+ "step": 591
+ },
+ {
+ "epoch": 8.223678462210572,
+ "grad_norm": 0.21804189682006836,
+ "learning_rate": 0.0006,
+ "loss": 4.607785224914551,
+ "step": 592
+ },
+ {
+ "epoch": 8.237658366098733,
+ "grad_norm": 0.20951785147190094,
+ "learning_rate": 0.0006,
+ "loss": 4.58140754699707,
+ "step": 593
+ },
+ {
+ "epoch": 8.251638269986893,
+ "grad_norm": 0.20415149629116058,
+ "learning_rate": 0.0006,
+ "loss": 4.593405723571777,
+ "step": 594
+ },
+ {
+ "epoch": 8.265618173875055,
+ "grad_norm": 0.19210249185562134,
+ "learning_rate": 0.0006,
+ "loss": 4.603294372558594,
+ "step": 595
+ },
+ {
+ "epoch": 8.279598077763215,
+ "grad_norm": 0.20719751715660095,
+ "learning_rate": 0.0006,
+ "loss": 4.55255651473999,
+ "step": 596
+ },
+ {
+ "epoch": 8.293577981651376,
+ "grad_norm": 0.20101022720336914,
+ "learning_rate": 0.0006,
+ "loss": 4.5928192138671875,
+ "step": 597
+ },
+ {
+ "epoch": 8.307557885539538,
+ "grad_norm": 0.19254222512245178,
+ "learning_rate": 0.0006,
+ "loss": 4.590397834777832,
+ "step": 598
+ },
+ {
+ "epoch": 8.321537789427698,
+ "grad_norm": 0.23234105110168457,
+ "learning_rate": 0.0006,
+ "loss": 4.5987677574157715,
+ "step": 599
+ },
+ {
+ "epoch": 8.33551769331586,
+ "grad_norm": 0.2537451982498169,
+ "learning_rate": 0.0006,
+ "loss": 4.543115615844727,
+ "step": 600
+ },
+ {
+ "epoch": 8.349497597204019,
+ "grad_norm": 0.29171040654182434,
+ "learning_rate": 0.0006,
+ "loss": 4.597387313842773,
+ "step": 601
+ },
+ {
+ "epoch": 8.36347750109218,
+ "grad_norm": 0.3035930097103119,
+ "learning_rate": 0.0006,
+ "loss": 4.566247463226318,
+ "step": 602
+ },
+ {
+ "epoch": 8.37745740498034,
+ "grad_norm": 0.2826756238937378,
+ "learning_rate": 0.0006,
+ "loss": 4.57047176361084,
+ "step": 603
+ },
+ {
+ "epoch": 8.391437308868502,
+ "grad_norm": 0.2959657609462738,
+ "learning_rate": 0.0006,
+ "loss": 4.582820892333984,
+ "step": 604
+ },
+ {
+ "epoch": 8.405417212756662,
+ "grad_norm": 0.3180356025695801,
+ "learning_rate": 0.0006,
+ "loss": 4.5573272705078125,
+ "step": 605
+ },
+ {
+ "epoch": 8.419397116644824,
+ "grad_norm": 0.3617221713066101,
+ "learning_rate": 0.0006,
+ "loss": 4.593079090118408,
+ "step": 606
+ },
+ {
+ "epoch": 8.433377020532983,
+ "grad_norm": 0.35198062658309937,
+ "learning_rate": 0.0006,
+ "loss": 4.615298271179199,
+ "step": 607
+ },
+ {
+ "epoch": 8.447356924421145,
+ "grad_norm": 0.3944903314113617,
+ "learning_rate": 0.0006,
+ "loss": 4.561809539794922,
+ "step": 608
+ },
+ {
+ "epoch": 8.461336828309305,
+ "grad_norm": 0.4525868594646454,
+ "learning_rate": 0.0006,
+ "loss": 4.613105773925781,
+ "step": 609
+ },
+ {
+ "epoch": 8.475316732197467,
+ "grad_norm": 0.4915139079093933,
+ "learning_rate": 0.0006,
+ "loss": 4.566202163696289,
+ "step": 610
+ },
+ {
+ "epoch": 8.489296636085626,
+ "grad_norm": 0.49231988191604614,
+ "learning_rate": 0.0006,
+ "loss": 4.556222915649414,
+ "step": 611
+ },
+ {
+ "epoch": 8.503276539973788,
+ "grad_norm": 0.43036946654319763,
+ "learning_rate": 0.0006,
+ "loss": 4.55517578125,
+ "step": 612
+ },
+ {
+ "epoch": 8.517256443861948,
+ "grad_norm": 0.42405328154563904,
+ "learning_rate": 0.0006,
+ "loss": 4.574039936065674,
+ "step": 613
+ },
+ {
+ "epoch": 8.53123634775011,
+ "grad_norm": 0.3955961763858795,
+ "learning_rate": 0.0006,
+ "loss": 4.6082611083984375,
+ "step": 614
+ },
+ {
+ "epoch": 8.54521625163827,
+ "grad_norm": 0.4377101957798004,
+ "learning_rate": 0.0006,
+ "loss": 4.555740833282471,
+ "step": 615
+ },
+ {
+ "epoch": 8.55919615552643,
+ "grad_norm": 0.4601984918117523,
+ "learning_rate": 0.0006,
+ "loss": 4.553995132446289,
+ "step": 616
+ },
+ {
+ "epoch": 8.57317605941459,
+ "grad_norm": 0.42025700211524963,
+ "learning_rate": 0.0006,
+ "loss": 4.567340850830078,
+ "step": 617
+ },
+ {
+ "epoch": 8.587155963302752,
+ "grad_norm": 0.35569432377815247,
+ "learning_rate": 0.0006,
+ "loss": 4.570140361785889,
+ "step": 618
+ },
+ {
+ "epoch": 8.601135867190912,
+ "grad_norm": 0.37940406799316406,
+ "learning_rate": 0.0006,
+ "loss": 4.581291198730469,
+ "step": 619
+ },
+ {
+ "epoch": 8.615115771079074,
+ "grad_norm": 0.3658490777015686,
+ "learning_rate": 0.0006,
+ "loss": 4.55476188659668,
+ "step": 620
+ },
+ {
+ "epoch": 8.629095674967235,
+ "grad_norm": 0.2908247113227844,
+ "learning_rate": 0.0006,
+ "loss": 4.564087867736816,
+ "step": 621
+ },
+ {
+ "epoch": 8.643075578855395,
+ "grad_norm": 0.29961925745010376,
+ "learning_rate": 0.0006,
+ "loss": 4.556543350219727,
+ "step": 622
+ },
+ {
+ "epoch": 8.657055482743557,
+ "grad_norm": 0.3144846558570862,
+ "learning_rate": 0.0006,
+ "loss": 4.553670883178711,
+ "step": 623
+ },
+ {
+ "epoch": 8.671035386631717,
+ "grad_norm": 0.2845900356769562,
+ "learning_rate": 0.0006,
+ "loss": 4.567296981811523,
+ "step": 624
+ },
+ {
+ "epoch": 8.685015290519878,
+ "grad_norm": 0.253591388463974,
+ "learning_rate": 0.0006,
+ "loss": 4.554507255554199,
+ "step": 625
+ },
+ {
+ "epoch": 8.698995194408038,
+ "grad_norm": 0.2563088536262512,
+ "learning_rate": 0.0006,
+ "loss": 4.542218208312988,
+ "step": 626
+ },
+ {
+ "epoch": 8.7129750982962,
+ "grad_norm": 0.26058217883110046,
+ "learning_rate": 0.0006,
+ "loss": 4.535512447357178,
+ "step": 627
+ },
+ {
+ "epoch": 8.72695500218436,
+ "grad_norm": 0.20749829709529877,
+ "learning_rate": 0.0006,
+ "loss": 4.516959190368652,
+ "step": 628
+ },
+ {
+ "epoch": 8.740934906072521,
+ "grad_norm": 0.2034810334444046,
+ "learning_rate": 0.0006,
+ "loss": 4.55794095993042,
+ "step": 629
+ },
+ {
+ "epoch": 8.754914809960681,
+ "grad_norm": 0.18418121337890625,
+ "learning_rate": 0.0006,
+ "loss": 4.5421247482299805,
+ "step": 630
+ },
+ {
+ "epoch": 8.768894713848843,
+ "grad_norm": 0.20551933348178864,
+ "learning_rate": 0.0006,
+ "loss": 4.50805139541626,
+ "step": 631
+ },
+ {
+ "epoch": 8.782874617737003,
+ "grad_norm": 0.21615999937057495,
+ "learning_rate": 0.0006,
+ "loss": 4.520708084106445,
+ "step": 632
+ },
+ {
+ "epoch": 8.796854521625164,
+ "grad_norm": 0.24864810705184937,
+ "learning_rate": 0.0006,
+ "loss": 4.509330749511719,
+ "step": 633
+ },
+ {
+ "epoch": 8.810834425513324,
+ "grad_norm": 0.2573665380477905,
+ "learning_rate": 0.0006,
+ "loss": 4.531505584716797,
+ "step": 634
+ },
+ {
+ "epoch": 8.824814329401486,
+ "grad_norm": 0.22452878952026367,
+ "learning_rate": 0.0006,
+ "loss": 4.529216289520264,
+ "step": 635
+ },
+ {
+ "epoch": 8.838794233289645,
+ "grad_norm": 0.19727355241775513,
+ "learning_rate": 0.0006,
+ "loss": 4.519906520843506,
+ "step": 636
+ },
+ {
+ "epoch": 8.852774137177807,
+ "grad_norm": 0.19937913119792938,
+ "learning_rate": 0.0006,
+ "loss": 4.536892414093018,
+ "step": 637
+ },
+ {
+ "epoch": 8.866754041065967,
+ "grad_norm": 0.2070389986038208,
+ "learning_rate": 0.0006,
+ "loss": 4.51191520690918,
+ "step": 638
+ },
+ {
+ "epoch": 8.880733944954128,
+ "grad_norm": 0.2293873429298401,
+ "learning_rate": 0.0006,
+ "loss": 4.505377769470215,
+ "step": 639
+ },
+ {
+ "epoch": 8.89471384884229,
+ "grad_norm": 0.21285250782966614,
+ "learning_rate": 0.0006,
+ "loss": 4.5138959884643555,
+ "step": 640
+ },
+ {
+ "epoch": 8.90869375273045,
+ "grad_norm": 0.19487562775611877,
+ "learning_rate": 0.0006,
+ "loss": 4.506108283996582,
+ "step": 641
+ },
+ {
+ "epoch": 8.922673656618612,
+ "grad_norm": 0.21986965835094452,
+ "learning_rate": 0.0006,
+ "loss": 4.506397247314453,
+ "step": 642
+ },
+ {
+ "epoch": 8.936653560506771,
+ "grad_norm": 0.20763885974884033,
+ "learning_rate": 0.0006,
+ "loss": 4.508007049560547,
+ "step": 643
+ },
+ {
+ "epoch": 8.950633464394933,
+ "grad_norm": 0.22858479619026184,
+ "learning_rate": 0.0006,
+ "loss": 4.520846366882324,
+ "step": 644
+ },
+ {
+ "epoch": 8.964613368283093,
+ "grad_norm": 0.23923712968826294,
+ "learning_rate": 0.0006,
+ "loss": 4.535306930541992,
+ "step": 645
+ },
+ {
+ "epoch": 8.978593272171254,
+ "grad_norm": 0.23717579245567322,
+ "learning_rate": 0.0006,
+ "loss": 4.485929489135742,
+ "step": 646
+ },
+ {
+ "epoch": 8.992573176059414,
+ "grad_norm": 0.24033977091312408,
+ "learning_rate": 0.0006,
+ "loss": 4.508999824523926,
+ "step": 647
+ },
+ {
+ "epoch": 9.0,
+ "grad_norm": 0.22432062029838562,
+ "learning_rate": 0.0006,
+ "loss": 4.473136901855469,
+ "step": 648
+ },
+ {
+ "epoch": 9.0,
+ "eval_loss": 4.735903263092041,
+ "eval_runtime": 44.2163,
+ "eval_samples_per_second": 55.228,
+ "eval_steps_per_second": 3.46,
+ "step": 648
+ },
+ {
+ "epoch": 9.013979903888162,
+ "grad_norm": 0.22491489350795746,
+ "learning_rate": 0.0006,
+ "loss": 4.468614101409912,
+ "step": 649
+ },
+ {
+ "epoch": 9.027959807776321,
+ "grad_norm": 0.255759060382843,
+ "learning_rate": 0.0006,
+ "loss": 4.516196250915527,
+ "step": 650
+ },
+ {
+ "epoch": 9.041939711664483,
+ "grad_norm": 0.2591100335121155,
+ "learning_rate": 0.0006,
+ "loss": 4.478276252746582,
+ "step": 651
+ },
+ {
+ "epoch": 9.055919615552643,
+ "grad_norm": 0.30472296476364136,
+ "learning_rate": 0.0006,
+ "loss": 4.479726791381836,
+ "step": 652
+ },
+ {
+ "epoch": 9.069899519440805,
+ "grad_norm": 0.2840559780597687,
+ "learning_rate": 0.0006,
+ "loss": 4.4437384605407715,
+ "step": 653
+ },
+ {
+ "epoch": 9.083879423328964,
+ "grad_norm": 0.2695577144622803,
+ "learning_rate": 0.0006,
+ "loss": 4.476065635681152,
+ "step": 654
+ },
+ {
+ "epoch": 9.097859327217126,
+ "grad_norm": 0.27912381291389465,
+ "learning_rate": 0.0006,
+ "loss": 4.484747409820557,
+ "step": 655
+ },
+ {
+ "epoch": 9.111839231105286,
+ "grad_norm": 0.3091907501220703,
+ "learning_rate": 0.0006,
+ "loss": 4.449443817138672,
+ "step": 656
+ },
+ {
+ "epoch": 9.125819134993447,
+ "grad_norm": 0.30756646394729614,
+ "learning_rate": 0.0006,
+ "loss": 4.496490001678467,
+ "step": 657
+ },
+ {
+ "epoch": 9.139799038881607,
+ "grad_norm": 0.305698037147522,
+ "learning_rate": 0.0006,
+ "loss": 4.466765880584717,
+ "step": 658
+ },
+ {
+ "epoch": 9.153778942769769,
+ "grad_norm": 0.3031201660633087,
+ "learning_rate": 0.0006,
+ "loss": 4.462430953979492,
+ "step": 659
+ },
+ {
+ "epoch": 9.167758846657929,
+ "grad_norm": 0.32725608348846436,
+ "learning_rate": 0.0006,
+ "loss": 4.479879379272461,
+ "step": 660
+ },
+ {
+ "epoch": 9.18173875054609,
+ "grad_norm": 0.31773585081100464,
+ "learning_rate": 0.0006,
+ "loss": 4.473912239074707,
+ "step": 661
+ },
+ {
+ "epoch": 9.19571865443425,
+ "grad_norm": 0.30025365948677063,
+ "learning_rate": 0.0006,
+ "loss": 4.476703643798828,
+ "step": 662
+ },
+ {
+ "epoch": 9.209698558322412,
+ "grad_norm": 0.3177371025085449,
+ "learning_rate": 0.0006,
+ "loss": 4.439765930175781,
+ "step": 663
+ },
+ {
+ "epoch": 9.223678462210572,
+ "grad_norm": 0.3060745894908905,
+ "learning_rate": 0.0006,
+ "loss": 4.487849235534668,
+ "step": 664
+ },
+ {
+ "epoch": 9.237658366098733,
+ "grad_norm": 0.33287373185157776,
+ "learning_rate": 0.0006,
+ "loss": 4.443496227264404,
+ "step": 665
+ },
+ {
+ "epoch": 9.251638269986893,
+ "grad_norm": 0.3758000433444977,
+ "learning_rate": 0.0006,
+ "loss": 4.478017330169678,
+ "step": 666
+ },
+ {
+ "epoch": 9.265618173875055,
+ "grad_norm": 0.32124510407447815,
+ "learning_rate": 0.0006,
+ "loss": 4.4092206954956055,
+ "step": 667
+ },
+ {
+ "epoch": 9.279598077763215,
+ "grad_norm": 0.2786794602870941,
+ "learning_rate": 0.0006,
+ "loss": 4.432734489440918,
+ "step": 668
+ },
+ {
+ "epoch": 9.293577981651376,
+ "grad_norm": 0.35042962431907654,
+ "learning_rate": 0.0006,
+ "loss": 4.462737083435059,
+ "step": 669
+ },
+ {
+ "epoch": 9.307557885539538,
+ "grad_norm": 0.4080469310283661,
+ "learning_rate": 0.0006,
+ "loss": 4.429462432861328,
+ "step": 670
+ },
+ {
+ "epoch": 9.321537789427698,
+ "grad_norm": 0.465158075094223,
+ "learning_rate": 0.0006,
+ "loss": 4.465776443481445,
+ "step": 671
+ },
+ {
+ "epoch": 9.33551769331586,
+ "grad_norm": 0.44833582639694214,
+ "learning_rate": 0.0006,
+ "loss": 4.454195976257324,
+ "step": 672
+ },
+ {
+ "epoch": 9.349497597204019,
+ "grad_norm": 0.451052188873291,
+ "learning_rate": 0.0006,
+ "loss": 4.456139087677002,
+ "step": 673
+ },
+ {
+ "epoch": 9.36347750109218,
+ "grad_norm": 0.3759656250476837,
+ "learning_rate": 0.0006,
+ "loss": 4.461119651794434,
+ "step": 674
+ },
+ {
+ "epoch": 9.37745740498034,
+ "grad_norm": 0.514560341835022,
+ "learning_rate": 0.0006,
+ "loss": 4.49595832824707,
+ "step": 675
+ },
+ {
+ "epoch": 9.391437308868502,
+ "grad_norm": 0.5650647282600403,
+ "learning_rate": 0.0006,
+ "loss": 4.461362838745117,
+ "step": 676
+ },
+ {
+ "epoch": 9.405417212756662,
+ "grad_norm": 0.4218835234642029,
+ "learning_rate": 0.0006,
+ "loss": 4.469146728515625,
+ "step": 677
+ },
+ {
+ "epoch": 9.419397116644824,
+ "grad_norm": 0.4169512689113617,
+ "learning_rate": 0.0006,
+ "loss": 4.470132827758789,
+ "step": 678
+ },
+ {
+ "epoch": 9.433377020532983,
+ "grad_norm": 0.3772219717502594,
+ "learning_rate": 0.0006,
+ "loss": 4.4742608070373535,
+ "step": 679
+ },
+ {
+ "epoch": 9.447356924421145,
+ "grad_norm": 0.35755908489227295,
+ "learning_rate": 0.0006,
+ "loss": 4.461928367614746,
+ "step": 680
+ },
+ {
+ "epoch": 9.461336828309305,
+ "grad_norm": 0.3141227662563324,
+ "learning_rate": 0.0006,
+ "loss": 4.491983413696289,
+ "step": 681
+ },
+ {
+ "epoch": 9.475316732197467,
+ "grad_norm": 0.282461017370224,
+ "learning_rate": 0.0006,
+ "loss": 4.460200309753418,
+ "step": 682
+ },
+ {
+ "epoch": 9.489296636085626,
+ "grad_norm": 0.27174389362335205,
+ "learning_rate": 0.0006,
+ "loss": 4.416125297546387,
+ "step": 683
+ },
+ {
+ "epoch": 9.503276539973788,
+ "grad_norm": 0.24570637941360474,
+ "learning_rate": 0.0006,
+ "loss": 4.4451093673706055,
+ "step": 684
+ },
+ {
+ "epoch": 9.517256443861948,
+ "grad_norm": 0.2741486132144928,
+ "learning_rate": 0.0006,
+ "loss": 4.453263282775879,
+ "step": 685
+ },
+ {
+ "epoch": 9.53123634775011,
+ "grad_norm": 0.24753718078136444,
+ "learning_rate": 0.0006,
+ "loss": 4.483033180236816,
+ "step": 686
+ },
+ {
+ "epoch": 9.54521625163827,
+ "grad_norm": 0.24288412928581238,
+ "learning_rate": 0.0006,
+ "loss": 4.452961444854736,
+ "step": 687
+ },
+ {
+ "epoch": 9.55919615552643,
+ "grad_norm": 0.21554753184318542,
+ "learning_rate": 0.0006,
+ "loss": 4.476005554199219,
+ "step": 688
+ },
+ {
+ "epoch": 9.57317605941459,
+ "grad_norm": 0.22775942087173462,
+ "learning_rate": 0.0006,
+ "loss": 4.4479193687438965,
+ "step": 689
+ },
+ {
+ "epoch": 9.587155963302752,
+ "grad_norm": 0.2610701024532318,
+ "learning_rate": 0.0006,
+ "loss": 4.474987506866455,
+ "step": 690
+ },
+ {
+ "epoch": 9.601135867190912,
+ "grad_norm": 0.2394690215587616,
+ "learning_rate": 0.0006,
+ "loss": 4.444857597351074,
+ "step": 691
+ },
+ {
+ "epoch": 9.615115771079074,
+ "grad_norm": 0.20868559181690216,
+ "learning_rate": 0.0006,
+ "loss": 4.4220709800720215,
+ "step": 692
+ },
+ {
+ "epoch": 9.629095674967235,
+ "grad_norm": 0.21869882941246033,
+ "learning_rate": 0.0006,
+ "loss": 4.451737403869629,
+ "step": 693
+ },
+ {
+ "epoch": 9.643075578855395,
+ "grad_norm": 0.1802823394536972,
+ "learning_rate": 0.0006,
+ "loss": 4.409085273742676,
+ "step": 694
+ },
+ {
+ "epoch": 9.657055482743557,
+ "grad_norm": 0.17046281695365906,
+ "learning_rate": 0.0006,
+ "loss": 4.424643516540527,
+ "step": 695
+ },
+ {
+ "epoch": 9.671035386631717,
+ "grad_norm": 0.19561922550201416,
+ "learning_rate": 0.0006,
+ "loss": 4.412302017211914,
+ "step": 696
+ },
+ {
+ "epoch": 9.685015290519878,
+ "grad_norm": 0.21928799152374268,
+ "learning_rate": 0.0006,
+ "loss": 4.427582263946533,
+ "step": 697
+ },
+ {
+ "epoch": 9.698995194408038,
+ "grad_norm": 0.244873046875,
+ "learning_rate": 0.0006,
+ "loss": 4.431827545166016,
+ "step": 698
+ },
+ {
+ "epoch": 9.7129750982962,
+ "grad_norm": 0.2799488604068756,
+ "learning_rate": 0.0006,
+ "loss": 4.407991409301758,
+ "step": 699
+ },
+ {
+ "epoch": 9.72695500218436,
+ "grad_norm": 0.2699538767337799,
+ "learning_rate": 0.0006,
+ "loss": 4.412313461303711,
+ "step": 700
+ },
+ {
+ "epoch": 9.740934906072521,
+ "grad_norm": 0.22293835878372192,
+ "learning_rate": 0.0006,
+ "loss": 4.423369884490967,
+ "step": 701
+ },
+ {
+ "epoch": 9.754914809960681,
+ "grad_norm": 0.21554361283779144,
+ "learning_rate": 0.0006,
+ "loss": 4.42026948928833,
+ "step": 702
+ },
+ {
+ "epoch": 9.768894713848843,
+ "grad_norm": 0.22135840356349945,
+ "learning_rate": 0.0006,
+ "loss": 4.400010108947754,
+ "step": 703
+ },
+ {
+ "epoch": 9.782874617737003,
+ "grad_norm": 0.2169952541589737,
+ "learning_rate": 0.0006,
+ "loss": 4.394582271575928,
+ "step": 704
+ },
+ {
+ "epoch": 9.796854521625164,
+ "grad_norm": 0.18913042545318604,
+ "learning_rate": 0.0006,
+ "loss": 4.395880699157715,
+ "step": 705
+ },
+ {
+ "epoch": 9.810834425513324,
+ "grad_norm": 0.191524475812912,
+ "learning_rate": 0.0006,
+ "loss": 4.378962516784668,
+ "step": 706
+ },
+ {
+ "epoch": 9.824814329401486,
+ "grad_norm": 0.20057640969753265,
+ "learning_rate": 0.0006,
+ "loss": 4.431066513061523,
+ "step": 707
+ },
+ {
+ "epoch": 9.838794233289645,
+ "grad_norm": 0.21670377254486084,
+ "learning_rate": 0.0006,
+ "loss": 4.364682197570801,
+ "step": 708
+ },
+ {
+ "epoch": 9.852774137177807,
+ "grad_norm": 0.21653099358081818,
+ "learning_rate": 0.0006,
+ "loss": 4.4050445556640625,
+ "step": 709
+ },
+ {
+ "epoch": 9.866754041065967,
+ "grad_norm": 0.2217673808336258,
+ "learning_rate": 0.0006,
+ "loss": 4.423664093017578,
+ "step": 710
+ },
+ {
+ "epoch": 9.880733944954128,
+ "grad_norm": 0.251078337430954,
+ "learning_rate": 0.0006,
+ "loss": 4.405768394470215,
+ "step": 711
+ },
+ {
+ "epoch": 9.89471384884229,
+ "grad_norm": 0.28962627053260803,
+ "learning_rate": 0.0006,
+ "loss": 4.421207427978516,
+ "step": 712
+ },
+ {
+ "epoch": 9.90869375273045,
+ "grad_norm": 0.3478074371814728,
+ "learning_rate": 0.0006,
+ "loss": 4.414942741394043,
+ "step": 713
+ },
+ {
+ "epoch": 9.922673656618612,
+ "grad_norm": 0.40396368503570557,
+ "learning_rate": 0.0006,
+ "loss": 4.415163993835449,
+ "step": 714
+ },
+ {
+ "epoch": 9.936653560506771,
+ "grad_norm": 0.3689858019351959,
+ "learning_rate": 0.0006,
+ "loss": 4.381345272064209,
+ "step": 715
+ },
+ {
+ "epoch": 9.950633464394933,
+ "grad_norm": 0.344868004322052,
+ "learning_rate": 0.0006,
+ "loss": 4.433088302612305,
+ "step": 716
+ },
+ {
+ "epoch": 9.964613368283093,
+ "grad_norm": 0.37976378202438354,
+ "learning_rate": 0.0006,
+ "loss": 4.431371212005615,
+ "step": 717
+ },
+ {
+ "epoch": 9.978593272171254,
+ "grad_norm": 0.4354130029678345,
+ "learning_rate": 0.0006,
+ "loss": 4.434148788452148,
+ "step": 718
+ },
+ {
+ "epoch": 9.992573176059414,
+ "grad_norm": 0.35859373211860657,
+ "learning_rate": 0.0006,
+ "loss": 4.428055763244629,
+ "step": 719
+ },
+ {
+ "epoch": 10.0,
+ "grad_norm": 0.3365023732185364,
+ "learning_rate": 0.0006,
+ "loss": 4.3888654708862305,
+ "step": 720
+ },
+ {
+ "epoch": 10.0,
+ "eval_loss": 4.638620853424072,
+ "eval_runtime": 44.3054,
+ "eval_samples_per_second": 55.117,
+ "eval_steps_per_second": 3.453,
+ "step": 720
+ },
+ {
+ "epoch": 10.013979903888162,
+ "grad_norm": 0.3267960250377655,
+ "learning_rate": 0.0006,
+ "loss": 4.386068344116211,
+ "step": 721
+ },
+ {
+ "epoch": 10.027959807776321,
+ "grad_norm": 0.33440953493118286,
+ "learning_rate": 0.0006,
+ "loss": 4.397515296936035,
+ "step": 722
+ },
+ {
+ "epoch": 10.041939711664483,
+ "grad_norm": 0.30047518014907837,
+ "learning_rate": 0.0006,
+ "loss": 4.398358345031738,
+ "step": 723
+ },
+ {
+ "epoch": 10.055919615552643,
+ "grad_norm": 0.2912217378616333,
+ "learning_rate": 0.0006,
+ "loss": 4.341166973114014,
+ "step": 724
+ },
+ {
+ "epoch": 10.069899519440805,
+ "grad_norm": 0.3199564218521118,
+ "learning_rate": 0.0006,
+ "loss": 4.388717174530029,
+ "step": 725
+ },
+ {
+ "epoch": 10.083879423328964,
+ "grad_norm": 0.2765582799911499,
+ "learning_rate": 0.0006,
+ "loss": 4.392992973327637,
+ "step": 726
+ },
+ {
+ "epoch": 10.097859327217126,
+ "grad_norm": 0.27138450741767883,
+ "learning_rate": 0.0006,
+ "loss": 4.382307529449463,
+ "step": 727
+ },
+ {
+ "epoch": 10.111839231105286,
+ "grad_norm": 0.29230645298957825,
+ "learning_rate": 0.0006,
+ "loss": 4.357486724853516,
+ "step": 728
+ },
+ {
+ "epoch": 10.125819134993447,
+ "grad_norm": 0.3127598464488983,
+ "learning_rate": 0.0006,
+ "loss": 4.39072322845459,
+ "step": 729
+ },
+ {
+ "epoch": 10.139799038881607,
+ "grad_norm": 0.3230913281440735,
+ "learning_rate": 0.0006,
+ "loss": 4.35037899017334,
+ "step": 730
+ },
+ {
+ "epoch": 10.153778942769769,
+ "grad_norm": 0.333675354719162,
+ "learning_rate": 0.0006,
+ "loss": 4.378030776977539,
+ "step": 731
+ },
+ {
+ "epoch": 10.167758846657929,
+ "grad_norm": 0.30325770378112793,
+ "learning_rate": 0.0006,
+ "loss": 4.372736930847168,
+ "step": 732
+ },
+ {
+ "epoch": 10.18173875054609,
+ "grad_norm": 0.2888163924217224,
+ "learning_rate": 0.0006,
+ "loss": 4.397604942321777,
+ "step": 733
+ },
+ {
+ "epoch": 10.19571865443425,
+ "grad_norm": 0.3378832936286926,
+ "learning_rate": 0.0006,
+ "loss": 4.395705223083496,
+ "step": 734
+ },
+ {
+ "epoch": 10.209698558322412,
+ "grad_norm": 0.30980268120765686,
+ "learning_rate": 0.0006,
+ "loss": 4.3861212730407715,
+ "step": 735
+ },
+ {
+ "epoch": 10.223678462210572,
+ "grad_norm": 0.2965783178806305,
+ "learning_rate": 0.0006,
+ "loss": 4.394898414611816,
+ "step": 736
+ },
+ {
+ "epoch": 10.237658366098733,
+ "grad_norm": 0.2818217873573303,
+ "learning_rate": 0.0006,
+ "loss": 4.36171817779541,
+ "step": 737
+ },
+ {
+ "epoch": 10.251638269986893,
+ "grad_norm": 0.2418123185634613,
+ "learning_rate": 0.0006,
+ "loss": 4.370945930480957,
+ "step": 738
+ },
+ {
+ "epoch": 10.265618173875055,
+ "grad_norm": 0.22372810542583466,
+ "learning_rate": 0.0006,
+ "loss": 4.354825973510742,
+ "step": 739
+ },
+ {
+ "epoch": 10.279598077763215,
+ "grad_norm": 0.238066166639328,
+ "learning_rate": 0.0006,
+ "loss": 4.376237392425537,
+ "step": 740
+ },
+ {
+ "epoch": 10.293577981651376,
+ "grad_norm": 0.22352449595928192,
+ "learning_rate": 0.0006,
+ "loss": 4.317084312438965,
+ "step": 741
+ },
+ {
+ "epoch": 10.307557885539538,
+ "grad_norm": 0.21685205399990082,
+ "learning_rate": 0.0006,
+ "loss": 4.335271835327148,
+ "step": 742
+ },
+ {
+ "epoch": 10.321537789427698,
+ "grad_norm": 0.19584694504737854,
+ "learning_rate": 0.0006,
+ "loss": 4.357963562011719,
+ "step": 743
+ },
+ {
+ "epoch": 10.33551769331586,
+ "grad_norm": 0.20373336970806122,
+ "learning_rate": 0.0006,
+ "loss": 4.401963233947754,
+ "step": 744
+ },
+ {
+ "epoch": 10.349497597204019,
+ "grad_norm": 0.2247837632894516,
+ "learning_rate": 0.0006,
+ "loss": 4.357202529907227,
+ "step": 745
+ },
+ {
+ "epoch": 10.36347750109218,
+ "grad_norm": 0.2416863739490509,
+ "learning_rate": 0.0006,
+ "loss": 4.364739418029785,
+ "step": 746
+ },
+ {
+ "epoch": 10.37745740498034,
+ "grad_norm": 0.22281162440776825,
+ "learning_rate": 0.0006,
+ "loss": 4.351607799530029,
+ "step": 747
+ },
+ {
+ "epoch": 10.391437308868502,
+ "grad_norm": 0.20751096308231354,
+ "learning_rate": 0.0006,
+ "loss": 4.370017051696777,
+ "step": 748
+ },
+ {
+ "epoch": 10.405417212756662,
+ "grad_norm": 0.19178363680839539,
+ "learning_rate": 0.0006,
+ "loss": 4.360328674316406,
+ "step": 749
+ },
+ {
+ "epoch": 10.419397116644824,
+ "grad_norm": 0.20534078776836395,
+ "learning_rate": 0.0006,
+ "loss": 4.3735432624816895,
+ "step": 750
+ },
+ {
+ "epoch": 10.433377020532983,
+ "grad_norm": 0.20533937215805054,
+ "learning_rate": 0.0006,
+ "loss": 4.326902389526367,
+ "step": 751
+ },
+ {
+ "epoch": 10.447356924421145,
+ "grad_norm": 0.22057875990867615,
+ "learning_rate": 0.0006,
+ "loss": 4.360934257507324,
+ "step": 752
+ },
+ {
+ "epoch": 10.461336828309305,
+ "grad_norm": 0.25568997859954834,
+ "learning_rate": 0.0006,
+ "loss": 4.345063209533691,
+ "step": 753
+ },
+ {
+ "epoch": 10.475316732197467,
+ "grad_norm": 0.31471487879753113,
+ "learning_rate": 0.0006,
+ "loss": 4.324014186859131,
+ "step": 754
+ },
+ {
+ "epoch": 10.489296636085626,
+ "grad_norm": 0.2716822624206543,
+ "learning_rate": 0.0006,
+ "loss": 4.318459510803223,
+ "step": 755
+ },
+ {
+ "epoch": 10.503276539973788,
+ "grad_norm": 0.19552019238471985,
+ "learning_rate": 0.0006,
+ "loss": 4.3367509841918945,
+ "step": 756
+ },
+ {
+ "epoch": 10.517256443861948,
+ "grad_norm": 0.22822986543178558,
+ "learning_rate": 0.0006,
+ "loss": 4.328935623168945,
+ "step": 757
+ },
+ {
+ "epoch": 10.53123634775011,
+ "grad_norm": 0.22282928228378296,
+ "learning_rate": 0.0006,
+ "loss": 4.358272552490234,
+ "step": 758
+ },
+ {
+ "epoch": 10.54521625163827,
+ "grad_norm": 0.23303352296352386,
+ "learning_rate": 0.0006,
+ "loss": 4.336641311645508,
+ "step": 759
+ },
+ {
+ "epoch": 10.55919615552643,
+ "grad_norm": 0.29474690556526184,
+ "learning_rate": 0.0006,
+ "loss": 4.343188285827637,
+ "step": 760
+ },
+ {
+ "epoch": 10.57317605941459,
+ "grad_norm": 0.36269059777259827,
+ "learning_rate": 0.0006,
+ "loss": 4.313019752502441,
+ "step": 761
+ },
+ {
+ "epoch": 10.587155963302752,
+ "grad_norm": 0.3742978870868683,
+ "learning_rate": 0.0006,
+ "loss": 4.361410140991211,
+ "step": 762
+ },
+ {
+ "epoch": 10.601135867190912,
+ "grad_norm": 0.34412163496017456,
+ "learning_rate": 0.0006,
+ "loss": 4.321324825286865,
+ "step": 763
+ },
+ {
+ "epoch": 10.615115771079074,
+ "grad_norm": 0.3464587926864624,
+ "learning_rate": 0.0006,
+ "loss": 4.341907501220703,
+ "step": 764
+ },
+ {
+ "epoch": 10.629095674967235,
+ "grad_norm": 0.3318136930465698,
+ "learning_rate": 0.0006,
+ "loss": 4.329099655151367,
+ "step": 765
+ },
+ {
+ "epoch": 10.643075578855395,
+ "grad_norm": 0.31292903423309326,
+ "learning_rate": 0.0006,
+ "loss": 4.332015037536621,
+ "step": 766
+ },
+ {
+ "epoch": 10.657055482743557,
+ "grad_norm": 0.2904847264289856,
+ "learning_rate": 0.0006,
+ "loss": 4.341764450073242,
+ "step": 767
+ },
+ {
+ "epoch": 10.671035386631717,
+ "grad_norm": 0.3287692666053772,
+ "learning_rate": 0.0006,
+ "loss": 4.342329025268555,
+ "step": 768
+ },
+ {
+ "epoch": 10.685015290519878,
+ "grad_norm": 0.3115365207195282,
+ "learning_rate": 0.0006,
+ "loss": 4.3530073165893555,
+ "step": 769
+ },
+ {
+ "epoch": 10.698995194408038,
+ "grad_norm": 0.24133864045143127,
+ "learning_rate": 0.0006,
+ "loss": 4.321497917175293,
+ "step": 770
+ },
+ {
+ "epoch": 10.7129750982962,
+ "grad_norm": 0.24658630788326263,
+ "learning_rate": 0.0006,
+ "loss": 4.32669734954834,
+ "step": 771
+ },
+ {
+ "epoch": 10.72695500218436,
+ "grad_norm": 0.2342129647731781,
+ "learning_rate": 0.0006,
+ "loss": 4.345459461212158,
+ "step": 772
+ },
+ {
+ "epoch": 10.740934906072521,
+ "grad_norm": 0.23360829055309296,
+ "learning_rate": 0.0006,
+ "loss": 4.33249568939209,
+ "step": 773
+ },
+ {
+ "epoch": 10.754914809960681,
+ "grad_norm": 0.24314677715301514,
+ "learning_rate": 0.0006,
+ "loss": 4.30499792098999,
+ "step": 774
+ },
+ {
+ "epoch": 10.768894713848843,
+ "grad_norm": 0.22105181217193604,
+ "learning_rate": 0.0006,
+ "loss": 4.33706521987915,
+ "step": 775
+ },
+ {
+ "epoch": 10.782874617737003,
+ "grad_norm": 0.23307174444198608,
+ "learning_rate": 0.0006,
+ "loss": 4.320387840270996,
+ "step": 776
+ },
+ {
+ "epoch": 10.796854521625164,
+ "grad_norm": 0.24946169555187225,
+ "learning_rate": 0.0006,
+ "loss": 4.316012382507324,
+ "step": 777
+ },
+ {
+ "epoch": 10.810834425513324,
+ "grad_norm": 0.26023536920547485,
+ "learning_rate": 0.0006,
+ "loss": 4.315193176269531,
+ "step": 778
+ },
+ {
+ "epoch": 10.824814329401486,
+ "grad_norm": 0.2688547968864441,
+ "learning_rate": 0.0006,
+ "loss": 4.3243255615234375,
+ "step": 779
+ },
+ {
+ "epoch": 10.838794233289645,
+ "grad_norm": 0.28188297152519226,
+ "learning_rate": 0.0006,
+ "loss": 4.3202972412109375,
+ "step": 780
+ },
+ {
+ "epoch": 10.852774137177807,
+ "grad_norm": 0.2890053689479828,
+ "learning_rate": 0.0006,
+ "loss": 4.318799018859863,
+ "step": 781
+ },
+ {
+ "epoch": 10.866754041065967,
+ "grad_norm": 0.2914353013038635,
+ "learning_rate": 0.0006,
+ "loss": 4.314262390136719,
+ "step": 782
+ },
+ {
+ "epoch": 10.880733944954128,
+ "grad_norm": 0.3145572543144226,
+ "learning_rate": 0.0006,
+ "loss": 4.339262008666992,
+ "step": 783
+ },
+ {
+ "epoch": 10.89471384884229,
+ "grad_norm": 0.323062002658844,
+ "learning_rate": 0.0006,
+ "loss": 4.354856491088867,
+ "step": 784
+ },
+ {
+ "epoch": 10.90869375273045,
+ "grad_norm": 0.32741227746009827,
+ "learning_rate": 0.0006,
+ "loss": 4.325577735900879,
+ "step": 785
+ },
+ {
+ "epoch": 10.922673656618612,
+ "grad_norm": 0.2855733036994934,
+ "learning_rate": 0.0006,
+ "loss": 4.324419021606445,
+ "step": 786
+ },
+ {
+ "epoch": 10.936653560506771,
+ "grad_norm": 0.2969444990158081,
+ "learning_rate": 0.0006,
+ "loss": 4.320681095123291,
+ "step": 787
+ },
+ {
+ "epoch": 10.950633464394933,
+ "grad_norm": 0.28108111023902893,
+ "learning_rate": 0.0006,
+ "loss": 4.32673454284668,
+ "step": 788
+ },
+ {
+ "epoch": 10.964613368283093,
+ "grad_norm": 0.2537972629070282,
+ "learning_rate": 0.0006,
+ "loss": 4.3197021484375,
+ "step": 789
+ },
+ {
+ "epoch": 10.978593272171254,
+ "grad_norm": 0.2354544699192047,
+ "learning_rate": 0.0006,
+ "loss": 4.3354973793029785,
+ "step": 790
+ },
+ {
+ "epoch": 10.992573176059414,
+ "grad_norm": 0.26195117831230164,
+ "learning_rate": 0.0006,
+ "loss": 4.3172526359558105,
+ "step": 791
+ },
+ {
+ "epoch": 11.0,
+ "grad_norm": 0.27089616656303406,
+ "learning_rate": 0.0006,
+ "loss": 4.324293613433838,
+ "step": 792
+ },
+ {
+ "epoch": 11.0,
+ "eval_loss": 4.531813621520996,
+ "eval_runtime": 44.1656,
+ "eval_samples_per_second": 55.292,
+ "eval_steps_per_second": 3.464,
+ "step": 792
+ },
+ {
+ "epoch": 11.013979903888162,
+ "grad_norm": 0.2526339590549469,
+ "learning_rate": 0.0006,
+ "loss": 4.287600517272949,
+ "step": 793
+ },
+ {
+ "epoch": 11.027959807776321,
+ "grad_norm": 0.24318458139896393,
+ "learning_rate": 0.0006,
+ "loss": 4.268078327178955,
+ "step": 794
+ },
+ {
+ "epoch": 11.041939711664483,
+ "grad_norm": 0.2450830638408661,
+ "learning_rate": 0.0006,
+ "loss": 4.265467643737793,
+ "step": 795
+ },
+ {
+ "epoch": 11.055919615552643,
+ "grad_norm": 0.23963099718093872,
+ "learning_rate": 0.0006,
+ "loss": 4.267931938171387,
+ "step": 796
+ },
+ {
+ "epoch": 11.069899519440805,
+ "grad_norm": 0.2488657534122467,
+ "learning_rate": 0.0006,
+ "loss": 4.30262565612793,
+ "step": 797
+ },
+ {
+ "epoch": 11.083879423328964,
+ "grad_norm": 0.2319781631231308,
+ "learning_rate": 0.0006,
+ "loss": 4.28665828704834,
+ "step": 798
+ },
+ {
+ "epoch": 11.097859327217126,
+ "grad_norm": 0.2425263375043869,
+ "learning_rate": 0.0006,
+ "loss": 4.284830570220947,
+ "step": 799
+ },
+ {
+ "epoch": 11.111839231105286,
+ "grad_norm": 0.23096567392349243,
+ "learning_rate": 0.0006,
+ "loss": 4.2817206382751465,
+ "step": 800
+ },
+ {
+ "epoch": 11.125819134993447,
+ "grad_norm": 0.2846364676952362,
+ "learning_rate": 0.0006,
+ "loss": 4.276104927062988,
+ "step": 801
+ },
+ {
+ "epoch": 11.139799038881607,
+ "grad_norm": 0.2984965741634369,
+ "learning_rate": 0.0006,
+ "loss": 4.2909650802612305,
+ "step": 802
+ },
+ {
+ "epoch": 11.153778942769769,
+ "grad_norm": 0.2841213643550873,
+ "learning_rate": 0.0006,
+ "loss": 4.283358097076416,
+ "step": 803
+ },
+ {
+ "epoch": 11.167758846657929,
+ "grad_norm": 0.29192933440208435,
+ "learning_rate": 0.0006,
+ "loss": 4.267040729522705,
+ "step": 804
+ },
+ {
+ "epoch": 11.18173875054609,
+ "grad_norm": 0.3254184126853943,
+ "learning_rate": 0.0006,
+ "loss": 4.301564693450928,
+ "step": 805
+ },
+ {
+ "epoch": 11.19571865443425,
+ "grad_norm": 0.3347095847129822,
+ "learning_rate": 0.0006,
+ "loss": 4.271395683288574,
+ "step": 806
+ },
+ {
+ "epoch": 11.209698558322412,
+ "grad_norm": 0.25609350204467773,
+ "learning_rate": 0.0006,
+ "loss": 4.2963056564331055,
+ "step": 807
+ },
+ {
+ "epoch": 11.223678462210572,
+ "grad_norm": 0.29272061586380005,
+ "learning_rate": 0.0006,
+ "loss": 4.298416614532471,
+ "step": 808
+ },
+ {
+ "epoch": 11.237658366098733,
+ "grad_norm": 0.32179465889930725,
+ "learning_rate": 0.0006,
+ "loss": 4.294036865234375,
+ "step": 809
+ },
+ {
+ "epoch": 11.251638269986893,
+ "grad_norm": 0.3336549401283264,
+ "learning_rate": 0.0006,
+ "loss": 4.291993141174316,
+ "step": 810
+ },
+ {
+ "epoch": 11.265618173875055,
+ "grad_norm": 0.32273536920547485,
+ "learning_rate": 0.0006,
+ "loss": 4.311004638671875,
+ "step": 811
+ },
+ {
+ "epoch": 11.279598077763215,
+ "grad_norm": 0.3575087785720825,
+ "learning_rate": 0.0006,
+ "loss": 4.300217628479004,
+ "step": 812
+ },
+ {
+ "epoch": 11.293577981651376,
+ "grad_norm": 0.3332885205745697,
+ "learning_rate": 0.0006,
+ "loss": 4.278337478637695,
+ "step": 813
+ },
+ {
+ "epoch": 11.307557885539538,
+ "grad_norm": 0.31440407037734985,
+ "learning_rate": 0.0006,
+ "loss": 4.273826599121094,
+ "step": 814
+ },
+ {
+ "epoch": 11.321537789427698,
+ "grad_norm": 0.29822009801864624,
+ "learning_rate": 0.0006,
+ "loss": 4.284292221069336,
+ "step": 815
+ },
+ {
+ "epoch": 11.33551769331586,
+ "grad_norm": 0.30695512890815735,
+ "learning_rate": 0.0006,
+ "loss": 4.2831926345825195,
+ "step": 816
+ },
+ {
+ "epoch": 11.349497597204019,
+ "grad_norm": 0.30576950311660767,
+ "learning_rate": 0.0006,
+ "loss": 4.277133464813232,
+ "step": 817
+ },
+ {
+ "epoch": 11.36347750109218,
+ "grad_norm": 0.2859647870063782,
+ "learning_rate": 0.0006,
+ "loss": 4.3130106925964355,
+ "step": 818
+ },
+ {
+ "epoch": 11.37745740498034,
+ "grad_norm": 0.32417574524879456,
+ "learning_rate": 0.0006,
+ "loss": 4.310303211212158,
+ "step": 819
+ },
+ {
+ "epoch": 11.391437308868502,
+ "grad_norm": 0.3512463867664337,
+ "learning_rate": 0.0006,
+ "loss": 4.287015438079834,
+ "step": 820
+ },
+ {
+ "epoch": 11.405417212756662,
+ "grad_norm": 0.32578620314598083,
+ "learning_rate": 0.0006,
+ "loss": 4.2957940101623535,
+ "step": 821
+ },
+ {
+ "epoch": 11.419397116644824,
+ "grad_norm": 0.287949800491333,
+ "learning_rate": 0.0006,
+ "loss": 4.2881879806518555,
+ "step": 822
+ },
+ {
+ "epoch": 11.433377020532983,
+ "grad_norm": 0.28048595786094666,
+ "learning_rate": 0.0006,
+ "loss": 4.274960517883301,
+ "step": 823
+ },
+ {
+ "epoch": 11.447356924421145,
+ "grad_norm": 0.2541540563106537,
+ "learning_rate": 0.0006,
+ "loss": 4.261083602905273,
+ "step": 824
+ },
+ {
+ "epoch": 11.461336828309305,
+ "grad_norm": 0.2348361313343048,
+ "learning_rate": 0.0006,
+ "loss": 4.271036148071289,
+ "step": 825
+ },
+ {
+ "epoch": 11.475316732197467,
+ "grad_norm": 0.20913535356521606,
+ "learning_rate": 0.0006,
+ "loss": 4.307661056518555,
+ "step": 826
+ },
+ {
+ "epoch": 11.489296636085626,
+ "grad_norm": 0.22298868000507355,
+ "learning_rate": 0.0006,
+ "loss": 4.26902961730957,
+ "step": 827
+ },
+ {
+ "epoch": 11.503276539973788,
+ "grad_norm": 0.22752761840820312,
+ "learning_rate": 0.0006,
+ "loss": 4.305529594421387,
+ "step": 828
+ },
+ {
+ "epoch": 11.517256443861948,
+ "grad_norm": 0.2149917483329773,
+ "learning_rate": 0.0006,
+ "loss": 4.25134801864624,
+ "step": 829
+ },
+ {
+ "epoch": 11.53123634775011,
+ "grad_norm": 0.21085695922374725,
+ "learning_rate": 0.0006,
+ "loss": 4.266982078552246,
+ "step": 830
+ },
+ {
+ "epoch": 11.54521625163827,
+ "grad_norm": 0.21586747467517853,
+ "learning_rate": 0.0006,
+ "loss": 4.235255718231201,
+ "step": 831
+ },
+ {
+ "epoch": 11.55919615552643,
+ "grad_norm": 0.2520856559276581,
+ "learning_rate": 0.0006,
+ "loss": 4.283442497253418,
+ "step": 832
+ },
+ {
+ "epoch": 11.57317605941459,
+ "grad_norm": 0.2825471758842468,
+ "learning_rate": 0.0006,
+ "loss": 4.234672546386719,
+ "step": 833
+ },
+ {
+ "epoch": 11.587155963302752,
+ "grad_norm": 0.27437824010849,
+ "learning_rate": 0.0006,
+ "loss": 4.246068000793457,
+ "step": 834
+ },
+ {
+ "epoch": 11.601135867190912,
+ "grad_norm": 0.2596757411956787,
+ "learning_rate": 0.0006,
+ "loss": 4.278448104858398,
+ "step": 835
+ },
+ {
+ "epoch": 11.615115771079074,
+ "grad_norm": 0.25663474202156067,
+ "learning_rate": 0.0006,
+ "loss": 4.308779716491699,
+ "step": 836
+ },
+ {
+ "epoch": 11.629095674967235,
+ "grad_norm": 0.2546203136444092,
+ "learning_rate": 0.0006,
+ "loss": 4.261247634887695,
+ "step": 837
+ },
+ {
+ "epoch": 11.643075578855395,
+ "grad_norm": 0.24722838401794434,
+ "learning_rate": 0.0006,
+ "loss": 4.275888442993164,
+ "step": 838
+ },
+ {
+ "epoch": 11.657055482743557,
+ "grad_norm": 0.3022806644439697,
+ "learning_rate": 0.0006,
+ "loss": 4.2572407722473145,
+ "step": 839
+ },
+ {
+ "epoch": 11.671035386631717,
+ "grad_norm": 0.31170839071273804,
+ "learning_rate": 0.0006,
+ "loss": 4.26992654800415,
+ "step": 840
+ },
+ {
+ "epoch": 11.685015290519878,
+ "grad_norm": 0.31362825632095337,
+ "learning_rate": 0.0006,
+ "loss": 4.2354655265808105,
+ "step": 841
+ },
+ {
+ "epoch": 11.698995194408038,
+ "grad_norm": 0.28741633892059326,
+ "learning_rate": 0.0006,
+ "loss": 4.263496398925781,
+ "step": 842
+ },
+ {
+ "epoch": 11.7129750982962,
+ "grad_norm": 0.2492494285106659,
+ "learning_rate": 0.0006,
+ "loss": 4.26463508605957,
+ "step": 843
+ },
+ {
+ "epoch": 11.72695500218436,
+ "grad_norm": 0.24324660003185272,
+ "learning_rate": 0.0006,
+ "loss": 4.245428085327148,
+ "step": 844
+ },
+ {
+ "epoch": 11.740934906072521,
+ "grad_norm": 0.23591114580631256,
+ "learning_rate": 0.0006,
+ "loss": 4.249845504760742,
+ "step": 845
+ },
+ {
+ "epoch": 11.754914809960681,
+ "grad_norm": 0.2202281504869461,
+ "learning_rate": 0.0006,
+ "loss": 4.245006084442139,
+ "step": 846
+ },
+ {
+ "epoch": 11.768894713848843,
+ "grad_norm": 0.22117942571640015,
+ "learning_rate": 0.0006,
+ "loss": 4.27812385559082,
+ "step": 847
+ },
+ {
+ "epoch": 11.782874617737003,
+ "grad_norm": 0.26361414790153503,
+ "learning_rate": 0.0006,
+ "loss": 4.250475883483887,
+ "step": 848
+ },
+ {
+ "epoch": 11.796854521625164,
+ "grad_norm": 0.2820321321487427,
+ "learning_rate": 0.0006,
+ "loss": 4.265835762023926,
+ "step": 849
+ },
+ {
+ "epoch": 11.810834425513324,
+ "grad_norm": 0.2078961282968521,
+ "learning_rate": 0.0006,
+ "loss": 4.251298904418945,
+ "step": 850
+ },
+ {
+ "epoch": 11.824814329401486,
+ "grad_norm": 0.21548646688461304,
+ "learning_rate": 0.0006,
+ "loss": 4.288539886474609,
+ "step": 851
+ },
+ {
+ "epoch": 11.838794233289645,
+ "grad_norm": 0.22719401121139526,
+ "learning_rate": 0.0006,
+ "loss": 4.252035140991211,
+ "step": 852
+ },
+ {
+ "epoch": 11.852774137177807,
+ "grad_norm": 0.21628320217132568,
+ "learning_rate": 0.0006,
+ "loss": 4.268622398376465,
+ "step": 853
+ },
+ {
+ "epoch": 11.866754041065967,
+ "grad_norm": 0.20855145156383514,
+ "learning_rate": 0.0006,
+ "loss": 4.253366470336914,
+ "step": 854
+ },
+ {
+ "epoch": 11.880733944954128,
+ "grad_norm": 0.2091914266347885,
+ "learning_rate": 0.0006,
+ "loss": 4.237805366516113,
+ "step": 855
+ },
+ {
+ "epoch": 11.89471384884229,
+ "grad_norm": 0.2000127136707306,
+ "learning_rate": 0.0006,
+ "loss": 4.268559455871582,
+ "step": 856
+ },
+ {
+ "epoch": 11.90869375273045,
+ "grad_norm": 0.21080894768238068,
+ "learning_rate": 0.0006,
+ "loss": 4.208702087402344,
+ "step": 857
+ },
+ {
+ "epoch": 11.922673656618612,
+ "grad_norm": 0.22125796973705292,
+ "learning_rate": 0.0006,
+ "loss": 4.250210762023926,
+ "step": 858
+ },
+ {
+ "epoch": 11.936653560506771,
+ "grad_norm": 0.25905469059944153,
+ "learning_rate": 0.0006,
+ "loss": 4.2263593673706055,
+ "step": 859
+ },
+ {
+ "epoch": 11.950633464394933,
+ "grad_norm": 0.29970306158065796,
+ "learning_rate": 0.0006,
+ "loss": 4.250848770141602,
+ "step": 860
+ },
+ {
+ "epoch": 11.964613368283093,
+ "grad_norm": 0.28155168890953064,
+ "learning_rate": 0.0006,
+ "loss": 4.272709369659424,
+ "step": 861
+ },
+ {
+ "epoch": 11.978593272171254,
+ "grad_norm": 0.23396113514900208,
+ "learning_rate": 0.0006,
+ "loss": 4.2674970626831055,
+ "step": 862
+ },
+ {
+ "epoch": 11.992573176059414,
+ "grad_norm": 0.23619577288627625,
+ "learning_rate": 0.0006,
+ "loss": 4.240267753601074,
+ "step": 863
+ },
+ {
+ "epoch": 12.0,
+ "grad_norm": 0.2779577076435089,
+ "learning_rate": 0.0006,
+ "loss": 4.267625331878662,
+ "step": 864
+ },
+ {
+ "epoch": 12.0,
+ "eval_loss": 4.437657356262207,
+ "eval_runtime": 44.4959,
+ "eval_samples_per_second": 54.881,
+ "eval_steps_per_second": 3.439,
+ "step": 864
+ },
+ {
+ "epoch": 12.013979903888162,
+ "grad_norm": 0.2948288321495056,
+ "learning_rate": 0.0006,
+ "loss": 4.232182502746582,
+ "step": 865
+ },
+ {
+ "epoch": 12.027959807776321,
+ "grad_norm": 0.3715663254261017,
+ "learning_rate": 0.0006,
+ "loss": 4.233771324157715,
+ "step": 866
+ },
+ {
+ "epoch": 12.041939711664483,
+ "grad_norm": 0.38358673453330994,
+ "learning_rate": 0.0006,
+ "loss": 4.208967685699463,
+ "step": 867
+ },
+ {
+ "epoch": 12.055919615552643,
+ "grad_norm": 0.3314538896083832,
+ "learning_rate": 0.0006,
+ "loss": 4.230685234069824,
+ "step": 868
+ },
+ {
+ "epoch": 12.069899519440805,
+ "grad_norm": 0.34171539545059204,
+ "learning_rate": 0.0006,
+ "loss": 4.231358528137207,
+ "step": 869
+ },
+ {
+ "epoch": 12.083879423328964,
+ "grad_norm": 0.3253359794616699,
+ "learning_rate": 0.0006,
+ "loss": 4.276405334472656,
+ "step": 870
+ },
+ {
+ "epoch": 12.097859327217126,
+ "grad_norm": 0.29008302092552185,
+ "learning_rate": 0.0006,
+ "loss": 4.232935905456543,
+ "step": 871
+ },
+ {
+ "epoch": 12.111839231105286,
+ "grad_norm": 0.28490355610847473,
+ "learning_rate": 0.0006,
+ "loss": 4.238036632537842,
+ "step": 872
+ },
+ {
+ "epoch": 12.125819134993447,
+ "grad_norm": 0.28446322679519653,
+ "learning_rate": 0.0006,
+ "loss": 4.210229873657227,
+ "step": 873
+ },
+ {
+ "epoch": 12.139799038881607,
+ "grad_norm": 0.29664531350135803,
+ "learning_rate": 0.0006,
+ "loss": 4.221309185028076,
+ "step": 874
+ },
+ {
+ "epoch": 12.153778942769769,
+ "grad_norm": 0.3083505928516388,
+ "learning_rate": 0.0006,
+ "loss": 4.221837997436523,
+ "step": 875
+ },
+ {
+ "epoch": 12.167758846657929,
+ "grad_norm": 0.3282921314239502,
+ "learning_rate": 0.0006,
+ "loss": 4.236713409423828,
+ "step": 876
+ },
+ {
+ "epoch": 12.18173875054609,
+ "grad_norm": 0.3603622615337372,
+ "learning_rate": 0.0006,
+ "loss": 4.245080947875977,
+ "step": 877
+ },
+ {
+ "epoch": 12.19571865443425,
+ "grad_norm": 0.38070905208587646,
+ "learning_rate": 0.0006,
+ "loss": 4.240756988525391,
+ "step": 878
+ },
+ {
+ "epoch": 12.209698558322412,
+ "grad_norm": 0.34479081630706787,
+ "learning_rate": 0.0006,
+ "loss": 4.200998306274414,
+ "step": 879
+ },
+ {
+ "epoch": 12.223678462210572,
+ "grad_norm": 0.3006879389286041,
+ "learning_rate": 0.0006,
+ "loss": 4.23531436920166,
+ "step": 880
+ },
+ {
+ "epoch": 12.237658366098733,
+ "grad_norm": 0.36835649609565735,
+ "learning_rate": 0.0006,
+ "loss": 4.229718208312988,
+ "step": 881
+ },
+ {
+ "epoch": 12.251638269986893,
+ "grad_norm": 0.4386984407901764,
+ "learning_rate": 0.0006,
+ "loss": 4.241188049316406,
+ "step": 882
+ },
+ {
+ "epoch": 12.265618173875055,
+ "grad_norm": 0.4442787170410156,
+ "learning_rate": 0.0006,
+ "loss": 4.239102840423584,
+ "step": 883
+ },
+ {
+ "epoch": 12.279598077763215,
+ "grad_norm": 0.324411541223526,
+ "learning_rate": 0.0006,
+ "loss": 4.198982238769531,
+ "step": 884
+ },
+ {
+ "epoch": 12.293577981651376,
+ "grad_norm": 0.2824151813983917,
+ "learning_rate": 0.0006,
+ "loss": 4.248816967010498,
+ "step": 885
+ },
+ {
+ "epoch": 12.307557885539538,
+ "grad_norm": 0.31407129764556885,
+ "learning_rate": 0.0006,
+ "loss": 4.2371320724487305,
+ "step": 886
+ },
+ {
+ "epoch": 12.321537789427698,
+ "grad_norm": 0.32920050621032715,
+ "learning_rate": 0.0006,
+ "loss": 4.210432052612305,
+ "step": 887
+ },
+ {
+ "epoch": 12.33551769331586,
+ "grad_norm": 0.315231055021286,
+ "learning_rate": 0.0006,
+ "loss": 4.219416618347168,
+ "step": 888
+ },
+ {
+ "epoch": 12.349497597204019,
+ "grad_norm": 0.30932050943374634,
+ "learning_rate": 0.0006,
+ "loss": 4.225022315979004,
+ "step": 889
+ },
+ {
+ "epoch": 12.36347750109218,
+ "grad_norm": 0.30242064595222473,
+ "learning_rate": 0.0006,
+ "loss": 4.2738518714904785,
+ "step": 890
+ },
+ {
+ "epoch": 12.37745740498034,
+ "grad_norm": 0.2926250994205475,
+ "learning_rate": 0.0006,
+ "loss": 4.231094837188721,
+ "step": 891
+ },
+ {
+ "epoch": 12.391437308868502,
+ "grad_norm": 0.2541215717792511,
+ "learning_rate": 0.0006,
+ "loss": 4.211821556091309,
+ "step": 892
+ },
+ {
+ "epoch": 12.405417212756662,
+ "grad_norm": 0.23693418502807617,
+ "learning_rate": 0.0006,
+ "loss": 4.208099365234375,
+ "step": 893
+ },
+ {
+ "epoch": 12.419397116644824,
+ "grad_norm": 0.22063226997852325,
+ "learning_rate": 0.0006,
+ "loss": 4.211234092712402,
+ "step": 894
+ },
+ {
+ "epoch": 12.433377020532983,
+ "grad_norm": 0.21536271274089813,
+ "learning_rate": 0.0006,
+ "loss": 4.199228286743164,
+ "step": 895
+ },
+ {
+ "epoch": 12.447356924421145,
+ "grad_norm": 0.243179589509964,
+ "learning_rate": 0.0006,
+ "loss": 4.204344749450684,
+ "step": 896
+ },
+ {
+ "epoch": 12.461336828309305,
+ "grad_norm": 0.2299746423959732,
+ "learning_rate": 0.0006,
+ "loss": 4.1565752029418945,
+ "step": 897
+ },
+ {
+ "epoch": 12.475316732197467,
+ "grad_norm": 0.2286847084760666,
+ "learning_rate": 0.0006,
+ "loss": 4.242953777313232,
+ "step": 898
+ },
+ {
+ "epoch": 12.489296636085626,
+ "grad_norm": 0.19463586807250977,
+ "learning_rate": 0.0006,
+ "loss": 4.214809417724609,
+ "step": 899
+ },
+ {
+ "epoch": 12.503276539973788,
+ "grad_norm": 0.1978398710489273,
+ "learning_rate": 0.0006,
+ "loss": 4.159815311431885,
+ "step": 900
+ },
+ {
+ "epoch": 12.517256443861948,
+ "grad_norm": 0.23177850246429443,
+ "learning_rate": 0.0006,
+ "loss": 4.2069902420043945,
+ "step": 901
+ },
+ {
+ "epoch": 12.53123634775011,
+ "grad_norm": 0.2408912032842636,
+ "learning_rate": 0.0006,
+ "loss": 4.206778526306152,
+ "step": 902
+ },
+ {
+ "epoch": 12.54521625163827,
+ "grad_norm": 0.21839919686317444,
+ "learning_rate": 0.0006,
+ "loss": 4.197076320648193,
+ "step": 903
+ },
+ {
+ "epoch": 12.55919615552643,
+ "grad_norm": 0.2053343504667282,
+ "learning_rate": 0.0006,
+ "loss": 4.21247673034668,
+ "step": 904
+ },
+ {
+ "epoch": 12.57317605941459,
+ "grad_norm": 0.19943439960479736,
+ "learning_rate": 0.0006,
+ "loss": 4.176966667175293,
+ "step": 905
+ },
+ {
+ "epoch": 12.587155963302752,
+ "grad_norm": 0.2012074887752533,
+ "learning_rate": 0.0006,
+ "loss": 4.210303783416748,
+ "step": 906
+ },
+ {
+ "epoch": 12.601135867190912,
+ "grad_norm": 0.22240376472473145,
+ "learning_rate": 0.0006,
+ "loss": 4.200625896453857,
+ "step": 907
+ },
+ {
+ "epoch": 12.615115771079074,
+ "grad_norm": 0.21729710698127747,
+ "learning_rate": 0.0006,
+ "loss": 4.2001953125,
+ "step": 908
+ },
+ {
+ "epoch": 12.629095674967235,
+ "grad_norm": 0.22470413148403168,
+ "learning_rate": 0.0006,
+ "loss": 4.197505950927734,
+ "step": 909
+ },
+ {
+ "epoch": 12.643075578855395,
+ "grad_norm": 0.23776157200336456,
+ "learning_rate": 0.0006,
+ "loss": 4.235603332519531,
+ "step": 910
+ },
+ {
+ "epoch": 12.657055482743557,
+ "grad_norm": 0.20616604387760162,
+ "learning_rate": 0.0006,
+ "loss": 4.193584442138672,
+ "step": 911
+ },
+ {
+ "epoch": 12.671035386631717,
+ "grad_norm": 0.1913922131061554,
+ "learning_rate": 0.0006,
+ "loss": 4.209191799163818,
+ "step": 912
+ },
+ {
+ "epoch": 12.685015290519878,
+ "grad_norm": 0.19427193701267242,
+ "learning_rate": 0.0006,
+ "loss": 4.219709396362305,
+ "step": 913
+ },
+ {
+ "epoch": 12.698995194408038,
+ "grad_norm": 0.20976558327674866,
+ "learning_rate": 0.0006,
+ "loss": 4.210859298706055,
+ "step": 914
+ },
+ {
+ "epoch": 12.7129750982962,
+ "grad_norm": 0.21571609377861023,
+ "learning_rate": 0.0006,
+ "loss": 4.189394950866699,
+ "step": 915
+ },
+ {
+ "epoch": 12.72695500218436,
+ "grad_norm": 0.2152620255947113,
+ "learning_rate": 0.0006,
+ "loss": 4.223589897155762,
+ "step": 916
+ },
+ {
+ "epoch": 12.740934906072521,
+ "grad_norm": 0.21867749094963074,
+ "learning_rate": 0.0006,
+ "loss": 4.198590278625488,
+ "step": 917
+ },
+ {
+ "epoch": 12.754914809960681,
+ "grad_norm": 0.22300855815410614,
+ "learning_rate": 0.0006,
+ "loss": 4.188891410827637,
+ "step": 918
+ },
+ {
+ "epoch": 12.768894713848843,
+ "grad_norm": 0.22197802364826202,
+ "learning_rate": 0.0006,
+ "loss": 4.190221309661865,
+ "step": 919
+ },
+ {
+ "epoch": 12.782874617737003,
+ "grad_norm": 0.20003341138362885,
+ "learning_rate": 0.0006,
+ "loss": 4.215453147888184,
+ "step": 920
+ },
+ {
+ "epoch": 12.796854521625164,
+ "grad_norm": 0.19887958467006683,
+ "learning_rate": 0.0006,
+ "loss": 4.18174934387207,
+ "step": 921
+ },
+ {
+ "epoch": 12.810834425513324,
+ "grad_norm": 0.20945803821086884,
+ "learning_rate": 0.0006,
+ "loss": 4.234947204589844,
+ "step": 922
+ },
+ {
+ "epoch": 12.824814329401486,
+ "grad_norm": 0.2253490388393402,
+ "learning_rate": 0.0006,
+ "loss": 4.2177228927612305,
+ "step": 923
+ },
+ {
+ "epoch": 12.838794233289645,
+ "grad_norm": 0.247610405087471,
+ "learning_rate": 0.0006,
+ "loss": 4.2013139724731445,
+ "step": 924
+ },
+ {
+ "epoch": 12.852774137177807,
+ "grad_norm": 0.2792088985443115,
+ "learning_rate": 0.0006,
+ "loss": 4.204774379730225,
+ "step": 925
+ },
+ {
+ "epoch": 12.866754041065967,
+ "grad_norm": 0.2839066982269287,
+ "learning_rate": 0.0006,
+ "loss": 4.186254978179932,
+ "step": 926
+ },
+ {
+ "epoch": 12.880733944954128,
+ "grad_norm": 0.2793181836605072,
+ "learning_rate": 0.0006,
+ "loss": 4.172411918640137,
+ "step": 927
+ },
+ {
+ "epoch": 12.89471384884229,
+ "grad_norm": 0.29506033658981323,
+ "learning_rate": 0.0006,
+ "loss": 4.202878475189209,
+ "step": 928
+ },
+ {
+ "epoch": 12.90869375273045,
+ "grad_norm": 0.2799845039844513,
+ "learning_rate": 0.0006,
+ "loss": 4.1563310623168945,
+ "step": 929
+ },
+ {
+ "epoch": 12.922673656618612,
+ "grad_norm": 0.23972125351428986,
+ "learning_rate": 0.0006,
+ "loss": 4.224601745605469,
+ "step": 930
+ },
+ {
+ "epoch": 12.936653560506771,
+ "grad_norm": 0.21558353304862976,
+ "learning_rate": 0.0006,
+ "loss": 4.167957305908203,
+ "step": 931
+ },
+ {
+ "epoch": 12.950633464394933,
+ "grad_norm": 0.21800188720226288,
+ "learning_rate": 0.0006,
+ "loss": 4.1746039390563965,
+ "step": 932
+ },
+ {
+ "epoch": 12.964613368283093,
+ "grad_norm": 0.2086547315120697,
+ "learning_rate": 0.0006,
+ "loss": 4.188137054443359,
+ "step": 933
+ },
+ {
+ "epoch": 12.978593272171254,
+ "grad_norm": 0.2174186110496521,
+ "learning_rate": 0.0006,
+ "loss": 4.184014320373535,
+ "step": 934
+ },
+ {
+ "epoch": 12.992573176059414,
+ "grad_norm": 0.22755110263824463,
+ "learning_rate": 0.0006,
+ "loss": 4.180912017822266,
+ "step": 935
+ },
+ {
+ "epoch": 13.0,
+ "grad_norm": 0.2735324203968048,
+ "learning_rate": 0.0006,
+ "loss": 4.201578617095947,
+ "step": 936
+ },
+ {
+ "epoch": 13.0,
+ "eval_loss": 4.396903038024902,
+ "eval_runtime": 44.5664,
+ "eval_samples_per_second": 54.795,
+ "eval_steps_per_second": 3.433,
+ "step": 936
+ },
+ {
+ "epoch": 13.013979903888162,
+ "grad_norm": 0.27577832341194153,
+ "learning_rate": 0.0006,
+ "loss": 4.149985313415527,
+ "step": 937
+ },
+ {
+ "epoch": 13.027959807776321,
+ "grad_norm": 0.25817009806632996,
+ "learning_rate": 0.0006,
+ "loss": 4.1526103019714355,
+ "step": 938
+ },
+ {
+ "epoch": 13.041939711664483,
+ "grad_norm": 0.24564379453659058,
+ "learning_rate": 0.0006,
+ "loss": 4.1661152839660645,
+ "step": 939
+ },
+ {
+ "epoch": 13.055919615552643,
+ "grad_norm": 0.2465466856956482,
+ "learning_rate": 0.0006,
+ "loss": 4.152953624725342,
+ "step": 940
+ },
+ {
+ "epoch": 13.069899519440805,
+ "grad_norm": 0.22702018916606903,
+ "learning_rate": 0.0006,
+ "loss": 4.145125389099121,
+ "step": 941
+ },
+ {
+ "epoch": 13.083879423328964,
+ "grad_norm": 0.24350613355636597,
+ "learning_rate": 0.0006,
+ "loss": 4.163095474243164,
+ "step": 942
+ },
+ {
+ "epoch": 13.097859327217126,
+ "grad_norm": 0.2504431903362274,
+ "learning_rate": 0.0006,
+ "loss": 4.136016845703125,
+ "step": 943
+ },
+ {
+ "epoch": 13.111839231105286,
+ "grad_norm": 0.24968865513801575,
+ "learning_rate": 0.0006,
+ "loss": 4.163487911224365,
+ "step": 944
+ },
+ {
+ "epoch": 13.125819134993447,
+ "grad_norm": 0.27164196968078613,
+ "learning_rate": 0.0006,
+ "loss": 4.1194353103637695,
+ "step": 945
+ },
+ {
+ "epoch": 13.139799038881607,
+ "grad_norm": 0.28127020597457886,
+ "learning_rate": 0.0006,
+ "loss": 4.184807300567627,
+ "step": 946
+ },
+ {
+ "epoch": 13.153778942769769,
+ "grad_norm": 0.24574966728687286,
+ "learning_rate": 0.0006,
+ "loss": 4.154998779296875,
+ "step": 947
+ },
+ {
+ "epoch": 13.167758846657929,
+ "grad_norm": 0.22310060262680054,
+ "learning_rate": 0.0006,
+ "loss": 4.182928085327148,
+ "step": 948
+ },
+ {
+ "epoch": 13.18173875054609,
+ "grad_norm": 0.2539508640766144,
+ "learning_rate": 0.0006,
+ "loss": 4.176900386810303,
+ "step": 949
+ },
+ {
+ "epoch": 13.19571865443425,
+ "grad_norm": 0.30925488471984863,
+ "learning_rate": 0.0006,
+ "loss": 4.1760711669921875,
+ "step": 950
+ },
+ {
+ "epoch": 13.209698558322412,
+ "grad_norm": 0.3842967450618744,
+ "learning_rate": 0.0006,
+ "loss": 4.1830949783325195,
+ "step": 951
+ },
+ {
+ "epoch": 13.223678462210572,
+ "grad_norm": 0.35950011014938354,
+ "learning_rate": 0.0006,
+ "loss": 4.131983757019043,
+ "step": 952
+ },
+ {
+ "epoch": 13.237658366098733,
+ "grad_norm": 0.29913705587387085,
+ "learning_rate": 0.0006,
+ "loss": 4.166984558105469,
+ "step": 953
+ },
+ {
+ "epoch": 13.251638269986893,
+ "grad_norm": 0.32008400559425354,
+ "learning_rate": 0.0006,
+ "loss": 4.156482696533203,
+ "step": 954
+ },
+ {
+ "epoch": 13.265618173875055,
+ "grad_norm": 0.3186642825603485,
+ "learning_rate": 0.0006,
+ "loss": 4.1661057472229,
+ "step": 955
+ },
+ {
+ "epoch": 13.279598077763215,
+ "grad_norm": 0.3194582462310791,
+ "learning_rate": 0.0006,
+ "loss": 4.169328689575195,
+ "step": 956
+ },
+ {
+ "epoch": 13.293577981651376,
+ "grad_norm": 0.3133867084980011,
+ "learning_rate": 0.0006,
+ "loss": 4.165459632873535,
+ "step": 957
+ },
+ {
+ "epoch": 13.307557885539538,
+ "grad_norm": 0.3232237696647644,
+ "learning_rate": 0.0006,
+ "loss": 4.2107439041137695,
+ "step": 958
+ },
+ {
+ "epoch": 13.321537789427698,
+ "grad_norm": 0.3133196234703064,
+ "learning_rate": 0.0006,
+ "loss": 4.184182167053223,
+ "step": 959
+ },
+ {
+ "epoch": 13.33551769331586,
+ "grad_norm": 0.296129435300827,
+ "learning_rate": 0.0006,
+ "loss": 4.168312072753906,
+ "step": 960
+ },
+ {
+ "epoch": 13.349497597204019,
+ "grad_norm": 0.2685348391532898,
+ "learning_rate": 0.0006,
+ "loss": 4.159984588623047,
+ "step": 961
+ },
+ {
+ "epoch": 13.36347750109218,
+ "grad_norm": 0.2644975781440735,
+ "learning_rate": 0.0006,
+ "loss": 4.164909362792969,
+ "step": 962
+ },
+ {
+ "epoch": 13.37745740498034,
+ "grad_norm": 0.2712913155555725,
+ "learning_rate": 0.0006,
+ "loss": 4.158056259155273,
+ "step": 963
+ },
+ {
+ "epoch": 13.391437308868502,
+ "grad_norm": 0.2687259316444397,
+ "learning_rate": 0.0006,
+ "loss": 4.182924270629883,
+ "step": 964
+ },
+ {
+ "epoch": 13.405417212756662,
+ "grad_norm": 0.25640392303466797,
+ "learning_rate": 0.0006,
+ "loss": 4.153351783752441,
+ "step": 965
+ },
+ {
+ "epoch": 13.419397116644824,
+ "grad_norm": 0.2646305561065674,
+ "learning_rate": 0.0006,
+ "loss": 4.18464469909668,
+ "step": 966
+ },
+ {
+ "epoch": 13.433377020532983,
+ "grad_norm": 0.24206851422786713,
+ "learning_rate": 0.0006,
+ "loss": 4.127564430236816,
+ "step": 967
+ },
+ {
+ "epoch": 13.447356924421145,
+ "grad_norm": 0.23800471425056458,
+ "learning_rate": 0.0006,
+ "loss": 4.163488388061523,
+ "step": 968
+ },
+ {
+ "epoch": 13.461336828309305,
+ "grad_norm": 0.22957314550876617,
+ "learning_rate": 0.0006,
+ "loss": 4.178133964538574,
+ "step": 969
+ },
+ {
+ "epoch": 13.475316732197467,
+ "grad_norm": 0.22867488861083984,
+ "learning_rate": 0.0006,
+ "loss": 4.159056186676025,
+ "step": 970
+ },
+ {
+ "epoch": 13.489296636085626,
+ "grad_norm": 0.21737419068813324,
+ "learning_rate": 0.0006,
+ "loss": 4.138628005981445,
+ "step": 971
+ },
+ {
+ "epoch": 13.503276539973788,
+ "grad_norm": 0.2319175899028778,
+ "learning_rate": 0.0006,
+ "loss": 4.14644718170166,
+ "step": 972
+ },
+ {
+ "epoch": 13.517256443861948,
+ "grad_norm": 0.2572193443775177,
+ "learning_rate": 0.0006,
+ "loss": 4.175213813781738,
+ "step": 973
+ },
+ {
+ "epoch": 13.53123634775011,
+ "grad_norm": 0.23483099043369293,
+ "learning_rate": 0.0006,
+ "loss": 4.133171558380127,
+ "step": 974
+ },
+ {
+ "epoch": 13.54521625163827,
+ "grad_norm": 0.2071552872657776,
+ "learning_rate": 0.0006,
+ "loss": 4.13730525970459,
+ "step": 975
+ },
+ {
+ "epoch": 13.55919615552643,
+ "grad_norm": 0.23074553906917572,
+ "learning_rate": 0.0006,
+ "loss": 4.175051689147949,
+ "step": 976
+ },
+ {
+ "epoch": 13.57317605941459,
+ "grad_norm": 0.2480078786611557,
+ "learning_rate": 0.0006,
+ "loss": 4.167630672454834,
+ "step": 977
+ },
+ {
+ "epoch": 13.587155963302752,
+ "grad_norm": 0.23444348573684692,
+ "learning_rate": 0.0006,
+ "loss": 4.141780853271484,
+ "step": 978
+ },
+ {
+ "epoch": 13.601135867190912,
+ "grad_norm": 0.2227829396724701,
+ "learning_rate": 0.0006,
+ "loss": 4.157566547393799,
+ "step": 979
+ },
+ {
+ "epoch": 13.615115771079074,
+ "grad_norm": 0.21478354930877686,
+ "learning_rate": 0.0006,
+ "loss": 4.131053447723389,
+ "step": 980
+ },
+ {
+ "epoch": 13.629095674967235,
+ "grad_norm": 0.1978664994239807,
+ "learning_rate": 0.0006,
+ "loss": 4.123660564422607,
+ "step": 981
+ },
+ {
+ "epoch": 13.643075578855395,
+ "grad_norm": 0.19980201125144958,
+ "learning_rate": 0.0006,
+ "loss": 4.174160480499268,
+ "step": 982
+ },
+ {
+ "epoch": 13.657055482743557,
+ "grad_norm": 0.19815555214881897,
+ "learning_rate": 0.0006,
+ "loss": 4.181703090667725,
+ "step": 983
+ },
+ {
+ "epoch": 13.671035386631717,
+ "grad_norm": 0.19524012506008148,
+ "learning_rate": 0.0006,
+ "loss": 4.163766860961914,
+ "step": 984
+ },
+ {
+ "epoch": 13.685015290519878,
+ "grad_norm": 0.2286096215248108,
+ "learning_rate": 0.0006,
+ "loss": 4.172213554382324,
+ "step": 985
+ },
+ {
+ "epoch": 13.698995194408038,
+ "grad_norm": 0.2210782766342163,
+ "learning_rate": 0.0006,
+ "loss": 4.187033653259277,
+ "step": 986
+ },
+ {
+ "epoch": 13.7129750982962,
+ "grad_norm": 0.21874216198921204,
+ "learning_rate": 0.0006,
+ "loss": 4.125125885009766,
+ "step": 987
+ },
+ {
+ "epoch": 13.72695500218436,
+ "grad_norm": 0.22848057746887207,
+ "learning_rate": 0.0006,
+ "loss": 4.153496742248535,
+ "step": 988
+ },
+ {
+ "epoch": 13.740934906072521,
+ "grad_norm": 0.2250450700521469,
+ "learning_rate": 0.0006,
+ "loss": 4.149165630340576,
+ "step": 989
+ },
+ {
+ "epoch": 13.754914809960681,
+ "grad_norm": 0.21443772315979004,
+ "learning_rate": 0.0006,
+ "loss": 4.1528825759887695,
+ "step": 990
+ },
+ {
+ "epoch": 13.768894713848843,
+ "grad_norm": 0.21927927434444427,
+ "learning_rate": 0.0006,
+ "loss": 4.146831512451172,
+ "step": 991
+ },
+ {
+ "epoch": 13.782874617737003,
+ "grad_norm": 0.2413124144077301,
+ "learning_rate": 0.0006,
+ "loss": 4.136909008026123,
+ "step": 992
+ },
+ {
+ "epoch": 13.796854521625164,
+ "grad_norm": 0.2603479325771332,
+ "learning_rate": 0.0006,
+ "loss": 4.12525749206543,
+ "step": 993
+ },
+ {
+ "epoch": 13.810834425513324,
+ "grad_norm": 0.26246970891952515,
+ "learning_rate": 0.0006,
+ "loss": 4.114049434661865,
+ "step": 994
+ },
+ {
+ "epoch": 13.824814329401486,
+ "grad_norm": 0.27031877636909485,
+ "learning_rate": 0.0006,
+ "loss": 4.1646552085876465,
+ "step": 995
+ },
+ {
+ "epoch": 13.838794233289645,
+ "grad_norm": 0.2499857395887375,
+ "learning_rate": 0.0006,
+ "loss": 4.139284133911133,
+ "step": 996
+ },
+ {
+ "epoch": 13.852774137177807,
+ "grad_norm": 0.22026537358760834,
+ "learning_rate": 0.0006,
+ "loss": 4.142191410064697,
+ "step": 997
+ },
+ {
+ "epoch": 13.866754041065967,
+ "grad_norm": 0.23738551139831543,
+ "learning_rate": 0.0006,
+ "loss": 4.1422882080078125,
+ "step": 998
+ },
+ {
+ "epoch": 13.880733944954128,
+ "grad_norm": 0.2416357398033142,
+ "learning_rate": 0.0006,
+ "loss": 4.14063835144043,
+ "step": 999
+ },
+ {
+ "epoch": 13.89471384884229,
+ "grad_norm": 0.33822184801101685,
+ "learning_rate": 0.0006,
+ "loss": 4.12839412689209,
+ "step": 1000
+ },
+ {
+ "epoch": 13.90869375273045,
+ "grad_norm": 0.3409678339958191,
+ "learning_rate": 0.0006,
+ "loss": 4.145351886749268,
+ "step": 1001
+ },
+ {
+ "epoch": 13.922673656618612,
+ "grad_norm": 0.2467597872018814,
+ "learning_rate": 0.0006,
+ "loss": 4.155339241027832,
+ "step": 1002
+ },
+ {
+ "epoch": 13.936653560506771,
+ "grad_norm": 0.2314649075269699,
+ "learning_rate": 0.0006,
+ "loss": 4.130176067352295,
+ "step": 1003
+ },
+ {
+ "epoch": 13.950633464394933,
+ "grad_norm": 0.23701290786266327,
+ "learning_rate": 0.0006,
+ "loss": 4.19205379486084,
+ "step": 1004
+ },
+ {
+ "epoch": 13.964613368283093,
+ "grad_norm": 0.2466491460800171,
+ "learning_rate": 0.0006,
+ "loss": 4.118908882141113,
+ "step": 1005
+ },
+ {
+ "epoch": 13.978593272171254,
+ "grad_norm": 0.23746836185455322,
+ "learning_rate": 0.0006,
+ "loss": 4.16111946105957,
+ "step": 1006
+ },
+ {
+ "epoch": 13.992573176059414,
+ "grad_norm": 0.24497751891613007,
+ "learning_rate": 0.0006,
+ "loss": 4.148624420166016,
+ "step": 1007
+ },
+ {
+ "epoch": 14.0,
+ "grad_norm": 0.25735899806022644,
+ "learning_rate": 0.0006,
+ "loss": 4.12002420425415,
+ "step": 1008
+ },
+ {
+ "epoch": 14.0,
+ "eval_loss": 4.335351467132568,
+ "eval_runtime": 44.0523,
+ "eval_samples_per_second": 55.434,
+ "eval_steps_per_second": 3.473,
+ "step": 1008
+ },
+ {
+ "epoch": 14.013979903888162,
+ "grad_norm": 0.24570082128047943,
+ "learning_rate": 0.0006,
+ "loss": 4.1036176681518555,
+ "step": 1009
+ },
+ {
+ "epoch": 14.027959807776321,
+ "grad_norm": 0.2525855302810669,
+ "learning_rate": 0.0006,
+ "loss": 4.142077445983887,
+ "step": 1010
+ },
+ {
+ "epoch": 14.041939711664483,
+ "grad_norm": 0.2701111435890198,
+ "learning_rate": 0.0006,
+ "loss": 4.096988677978516,
+ "step": 1011
+ },
+ {
+ "epoch": 14.055919615552643,
+ "grad_norm": 0.28173309564590454,
+ "learning_rate": 0.0006,
+ "loss": 4.148448944091797,
+ "step": 1012
+ },
+ {
+ "epoch": 14.069899519440805,
+ "grad_norm": 0.2651294469833374,
+ "learning_rate": 0.0006,
+ "loss": 4.121731281280518,
+ "step": 1013
+ },
+ {
+ "epoch": 14.083879423328964,
+ "grad_norm": 0.21160121262073517,
+ "learning_rate": 0.0006,
+ "loss": 4.108980178833008,
+ "step": 1014
+ },
+ {
+ "epoch": 14.097859327217126,
+ "grad_norm": 0.24786953628063202,
+ "learning_rate": 0.0006,
+ "loss": 4.133942604064941,
+ "step": 1015
+ },
+ {
+ "epoch": 14.111839231105286,
+ "grad_norm": 0.2722747027873993,
+ "learning_rate": 0.0006,
+ "loss": 4.115242958068848,
+ "step": 1016
+ },
+ {
+ "epoch": 14.125819134993447,
+ "grad_norm": 0.273360013961792,
+ "learning_rate": 0.0006,
+ "loss": 4.059296607971191,
+ "step": 1017
+ },
+ {
+ "epoch": 14.139799038881607,
+ "grad_norm": 0.2541784942150116,
+ "learning_rate": 0.0006,
+ "loss": 4.118365287780762,
+ "step": 1018
+ },
+ {
+ "epoch": 14.153778942769769,
+ "grad_norm": 0.23806381225585938,
+ "learning_rate": 0.0006,
+ "loss": 4.102812767028809,
+ "step": 1019
+ },
+ {
+ "epoch": 14.167758846657929,
+ "grad_norm": 0.2541005313396454,
+ "learning_rate": 0.0006,
+ "loss": 4.093264579772949,
+ "step": 1020
+ },
+ {
+ "epoch": 14.18173875054609,
+ "grad_norm": 0.2619539499282837,
+ "learning_rate": 0.0006,
+ "loss": 4.114917278289795,
+ "step": 1021
+ },
+ {
+ "epoch": 14.19571865443425,
+ "grad_norm": 0.2466963529586792,
+ "learning_rate": 0.0006,
+ "loss": 4.098258972167969,
+ "step": 1022
+ },
+ {
+ "epoch": 14.209698558322412,
+ "grad_norm": 0.24341611564159393,
+ "learning_rate": 0.0006,
+ "loss": 4.109346389770508,
+ "step": 1023
+ },
+ {
+ "epoch": 14.223678462210572,
+ "grad_norm": 0.23977765440940857,
+ "learning_rate": 0.0006,
+ "loss": 4.106716156005859,
+ "step": 1024
+ },
+ {
+ "epoch": 14.237658366098733,
+ "grad_norm": 0.253528356552124,
+ "learning_rate": 0.0006,
+ "loss": 4.102226257324219,
+ "step": 1025
+ },
+ {
+ "epoch": 14.251638269986893,
+ "grad_norm": 0.26954543590545654,
+ "learning_rate": 0.0006,
+ "loss": 4.107413291931152,
+ "step": 1026
+ },
+ {
+ "epoch": 14.265618173875055,
+ "grad_norm": 0.2610514760017395,
+ "learning_rate": 0.0006,
+ "loss": 4.110824108123779,
+ "step": 1027
+ },
+ {
+ "epoch": 14.279598077763215,
+ "grad_norm": 0.2579168677330017,
+ "learning_rate": 0.0006,
+ "loss": 4.082438945770264,
+ "step": 1028
+ },
+ {
+ "epoch": 14.293577981651376,
+ "grad_norm": 0.26916536688804626,
+ "learning_rate": 0.0006,
+ "loss": 4.075734615325928,
+ "step": 1029
+ },
+ {
+ "epoch": 14.307557885539538,
+ "grad_norm": 0.2998618185520172,
+ "learning_rate": 0.0006,
+ "loss": 4.088419437408447,
+ "step": 1030
+ },
+ {
+ "epoch": 14.321537789427698,
+ "grad_norm": 0.3162737190723419,
+ "learning_rate": 0.0006,
+ "loss": 4.125833034515381,
+ "step": 1031
+ },
+ {
+ "epoch": 14.33551769331586,
+ "grad_norm": 0.318601131439209,
+ "learning_rate": 0.0006,
+ "loss": 4.077424049377441,
+ "step": 1032
+ },
+ {
+ "epoch": 14.349497597204019,
+ "grad_norm": 0.32113415002822876,
+ "learning_rate": 0.0006,
+ "loss": 4.113360404968262,
+ "step": 1033
+ },
+ {
+ "epoch": 14.36347750109218,
+ "grad_norm": 0.3150886297225952,
+ "learning_rate": 0.0006,
+ "loss": 4.100013732910156,
+ "step": 1034
+ },
+ {
+ "epoch": 14.37745740498034,
+ "grad_norm": 0.29279956221580505,
+ "learning_rate": 0.0006,
+ "loss": 4.136394500732422,
+ "step": 1035
+ },
+ {
+ "epoch": 14.391437308868502,
+ "grad_norm": 0.28532543778419495,
+ "learning_rate": 0.0006,
+ "loss": 4.138948440551758,
+ "step": 1036
+ },
+ {
+ "epoch": 14.405417212756662,
+ "grad_norm": 0.2825978398323059,
+ "learning_rate": 0.0006,
+ "loss": 4.112217903137207,
+ "step": 1037
+ },
+ {
+ "epoch": 14.419397116644824,
+ "grad_norm": 0.2891198694705963,
+ "learning_rate": 0.0006,
+ "loss": 4.102682113647461,
+ "step": 1038
+ },
+ {
+ "epoch": 14.433377020532983,
+ "grad_norm": 0.2917391061782837,
+ "learning_rate": 0.0006,
+ "loss": 4.120752811431885,
+ "step": 1039
+ },
+ {
+ "epoch": 14.447356924421145,
+ "grad_norm": 0.2589806914329529,
+ "learning_rate": 0.0006,
+ "loss": 4.130519390106201,
+ "step": 1040
+ },
+ {
+ "epoch": 14.461336828309305,
+ "grad_norm": 0.2674788534641266,
+ "learning_rate": 0.0006,
+ "loss": 4.130382537841797,
+ "step": 1041
+ },
+ {
+ "epoch": 14.475316732197467,
+ "grad_norm": 0.2820362150669098,
+ "learning_rate": 0.0006,
+ "loss": 4.13947868347168,
+ "step": 1042
+ },
+ {
+ "epoch": 14.489296636085626,
+ "grad_norm": 0.2650109529495239,
+ "learning_rate": 0.0006,
+ "loss": 4.130346775054932,
+ "step": 1043
+ },
+ {
+ "epoch": 14.503276539973788,
+ "grad_norm": 0.29137638211250305,
+ "learning_rate": 0.0006,
+ "loss": 4.055751800537109,
+ "step": 1044
+ },
+ {
+ "epoch": 14.517256443861948,
+ "grad_norm": 0.3232433497905731,
+ "learning_rate": 0.0006,
+ "loss": 4.114810943603516,
+ "step": 1045
+ },
+ {
+ "epoch": 14.53123634775011,
+ "grad_norm": 0.2724473476409912,
+ "learning_rate": 0.0006,
+ "loss": 4.088351249694824,
+ "step": 1046
+ },
+ {
+ "epoch": 14.54521625163827,
+ "grad_norm": 0.23994430899620056,
+ "learning_rate": 0.0006,
+ "loss": 4.110936164855957,
+ "step": 1047
+ },
+ {
+ "epoch": 14.55919615552643,
+ "grad_norm": 0.2422720044851303,
+ "learning_rate": 0.0006,
+ "loss": 4.132844924926758,
+ "step": 1048
+ },
+ {
+ "epoch": 14.57317605941459,
+ "grad_norm": 0.21148815751075745,
+ "learning_rate": 0.0006,
+ "loss": 4.102499961853027,
+ "step": 1049
+ },
+ {
+ "epoch": 14.587155963302752,
+ "grad_norm": 0.22221639752388,
+ "learning_rate": 0.0006,
+ "loss": 4.126241683959961,
+ "step": 1050
+ },
+ {
+ "epoch": 14.601135867190912,
+ "grad_norm": 0.2538735866546631,
+ "learning_rate": 0.0006,
+ "loss": 4.116817951202393,
+ "step": 1051
+ },
+ {
+ "epoch": 14.615115771079074,
+ "grad_norm": 0.2555900514125824,
+ "learning_rate": 0.0006,
+ "loss": 4.106309413909912,
+ "step": 1052
+ },
+ {
+ "epoch": 14.629095674967235,
+ "grad_norm": 0.24753783643245697,
+ "learning_rate": 0.0006,
+ "loss": 4.1015119552612305,
+ "step": 1053
+ },
+ {
+ "epoch": 14.643075578855395,
+ "grad_norm": 0.238885298371315,
+ "learning_rate": 0.0006,
+ "loss": 4.120419502258301,
+ "step": 1054
+ },
+ {
+ "epoch": 14.657055482743557,
+ "grad_norm": 0.22693610191345215,
+ "learning_rate": 0.0006,
+ "loss": 4.084968566894531,
+ "step": 1055
+ },
+ {
+ "epoch": 14.671035386631717,
+ "grad_norm": 0.2100025862455368,
+ "learning_rate": 0.0006,
+ "loss": 4.108001708984375,
+ "step": 1056
+ },
+ {
+ "epoch": 14.685015290519878,
+ "grad_norm": 0.20437054336071014,
+ "learning_rate": 0.0006,
+ "loss": 4.151417255401611,
+ "step": 1057
+ },
+ {
+ "epoch": 14.698995194408038,
+ "grad_norm": 0.1926720291376114,
+ "learning_rate": 0.0006,
+ "loss": 4.091334342956543,
+ "step": 1058
+ },
+ {
+ "epoch": 14.7129750982962,
+ "grad_norm": 0.2120140641927719,
+ "learning_rate": 0.0006,
+ "loss": 4.111706256866455,
+ "step": 1059
+ },
+ {
+ "epoch": 14.72695500218436,
+ "grad_norm": 0.22877076268196106,
+ "learning_rate": 0.0006,
+ "loss": 4.123166084289551,
+ "step": 1060
+ },
+ {
+ "epoch": 14.740934906072521,
+ "grad_norm": 0.22149473428726196,
+ "learning_rate": 0.0006,
+ "loss": 4.099740028381348,
+ "step": 1061
+ },
+ {
+ "epoch": 14.754914809960681,
+ "grad_norm": 0.2351604402065277,
+ "learning_rate": 0.0006,
+ "loss": 4.066174507141113,
+ "step": 1062
+ },
+ {
+ "epoch": 14.768894713848843,
+ "grad_norm": 0.22895802557468414,
+ "learning_rate": 0.0006,
+ "loss": 4.101897239685059,
+ "step": 1063
+ },
+ {
+ "epoch": 14.782874617737003,
+ "grad_norm": 0.22050750255584717,
+ "learning_rate": 0.0006,
+ "loss": 4.122953414916992,
+ "step": 1064
+ },
+ {
+ "epoch": 14.796854521625164,
+ "grad_norm": 0.23255324363708496,
+ "learning_rate": 0.0006,
+ "loss": 4.11297607421875,
+ "step": 1065
+ },
+ {
+ "epoch": 14.810834425513324,
+ "grad_norm": 0.24522703886032104,
+ "learning_rate": 0.0006,
+ "loss": 4.131030082702637,
+ "step": 1066
+ },
+ {
+ "epoch": 14.824814329401486,
+ "grad_norm": 0.2492702752351761,
+ "learning_rate": 0.0006,
+ "loss": 4.076324939727783,
+ "step": 1067
+ },
+ {
+ "epoch": 14.838794233289645,
+ "grad_norm": 0.24410948157310486,
+ "learning_rate": 0.0006,
+ "loss": 4.109020709991455,
+ "step": 1068
+ },
+ {
+ "epoch": 14.852774137177807,
+ "grad_norm": 0.2463168203830719,
+ "learning_rate": 0.0006,
+ "loss": 4.135679244995117,
+ "step": 1069
+ },
+ {
+ "epoch": 14.866754041065967,
+ "grad_norm": 0.2563146650791168,
+ "learning_rate": 0.0006,
+ "loss": 4.0958027839660645,
+ "step": 1070
+ },
+ {
+ "epoch": 14.880733944954128,
+ "grad_norm": 0.261167049407959,
+ "learning_rate": 0.0006,
+ "loss": 4.114803314208984,
+ "step": 1071
+ },
+ {
+ "epoch": 14.89471384884229,
+ "grad_norm": 0.2593795955181122,
+ "learning_rate": 0.0006,
+ "loss": 4.1210618019104,
+ "step": 1072
+ },
+ {
+ "epoch": 14.90869375273045,
+ "grad_norm": 0.27184173464775085,
+ "learning_rate": 0.0006,
+ "loss": 4.095145225524902,
+ "step": 1073
+ },
+ {
+ "epoch": 14.922673656618612,
+ "grad_norm": 0.25289732217788696,
+ "learning_rate": 0.0006,
+ "loss": 4.107388973236084,
+ "step": 1074
+ },
+ {
+ "epoch": 14.936653560506771,
+ "grad_norm": 0.2176840454339981,
+ "learning_rate": 0.0006,
+ "loss": 4.105966567993164,
+ "step": 1075
+ },
+ {
+ "epoch": 14.950633464394933,
+ "grad_norm": 0.20930173993110657,
+ "learning_rate": 0.0006,
+ "loss": 4.126853942871094,
+ "step": 1076
+ },
+ {
+ "epoch": 14.964613368283093,
+ "grad_norm": 0.20850051939487457,
+ "learning_rate": 0.0006,
+ "loss": 4.074934959411621,
+ "step": 1077
+ },
+ {
+ "epoch": 14.978593272171254,
+ "grad_norm": 0.21987544000148773,
+ "learning_rate": 0.0006,
+ "loss": 4.123321533203125,
+ "step": 1078
+ },
+ {
+ "epoch": 14.992573176059414,
+ "grad_norm": 0.23821689188480377,
+ "learning_rate": 0.0006,
+ "loss": 4.082647323608398,
+ "step": 1079
+ },
+ {
+ "epoch": 15.0,
+ "grad_norm": 0.2590881288051605,
+ "learning_rate": 0.0006,
+ "loss": 4.113482475280762,
+ "step": 1080
+ },
+ {
+ "epoch": 15.0,
+ "eval_loss": 4.286936283111572,
+ "eval_runtime": 44.2665,
+ "eval_samples_per_second": 55.166,
+ "eval_steps_per_second": 3.456,
+ "step": 1080
+ },
+ {
+ "epoch": 15.013979903888162,
+ "grad_norm": 0.27885961532592773,
+ "learning_rate": 0.0006,
+ "loss": 4.0825958251953125,
+ "step": 1081
+ },
+ {
+ "epoch": 15.027959807776321,
+ "grad_norm": 0.2751246690750122,
+ "learning_rate": 0.0006,
+ "loss": 4.049782752990723,
+ "step": 1082
+ },
+ {
+ "epoch": 15.041939711664483,
+ "grad_norm": 0.25238561630249023,
+ "learning_rate": 0.0006,
+ "loss": 4.067366600036621,
+ "step": 1083
+ },
+ {
+ "epoch": 15.055919615552643,
+ "grad_norm": 0.27481040358543396,
+ "learning_rate": 0.0006,
+ "loss": 4.089946746826172,
+ "step": 1084
+ },
+ {
+ "epoch": 15.069899519440805,
+ "grad_norm": 0.2666703164577484,
+ "learning_rate": 0.0006,
+ "loss": 4.071957588195801,
+ "step": 1085
+ },
+ {
+ "epoch": 15.083879423328964,
+ "grad_norm": 0.2532065212726593,
+ "learning_rate": 0.0006,
+ "loss": 4.091561794281006,
+ "step": 1086
+ },
+ {
+ "epoch": 15.097859327217126,
+ "grad_norm": 0.23562374711036682,
+ "learning_rate": 0.0006,
+ "loss": 4.074953079223633,
+ "step": 1087
+ },
+ {
+ "epoch": 15.111839231105286,
+ "grad_norm": 0.2498065084218979,
+ "learning_rate": 0.0006,
+ "loss": 4.056004047393799,
+ "step": 1088
+ },
+ {
+ "epoch": 15.125819134993447,
+ "grad_norm": 0.257046639919281,
+ "learning_rate": 0.0006,
+ "loss": 4.044149875640869,
+ "step": 1089
+ },
+ {
+ "epoch": 15.139799038881607,
+ "grad_norm": 0.2417808622121811,
+ "learning_rate": 0.0006,
+ "loss": 4.071811676025391,
+ "step": 1090
+ },
+ {
+ "epoch": 15.153778942769769,
+ "grad_norm": 0.24742013216018677,
+ "learning_rate": 0.0006,
+ "loss": 4.081482887268066,
+ "step": 1091
+ },
+ {
+ "epoch": 15.167758846657929,
+ "grad_norm": 0.2610231637954712,
+ "learning_rate": 0.0006,
+ "loss": 4.06953763961792,
+ "step": 1092
+ },
+ {
+ "epoch": 15.18173875054609,
+ "grad_norm": 0.24688200652599335,
+ "learning_rate": 0.0006,
+ "loss": 4.079700469970703,
+ "step": 1093
+ },
+ {
+ "epoch": 15.19571865443425,
+ "grad_norm": 0.2650167942047119,
+ "learning_rate": 0.0006,
+ "loss": 4.082088947296143,
+ "step": 1094
+ },
+ {
+ "epoch": 15.209698558322412,
+ "grad_norm": 0.25913330912590027,
+ "learning_rate": 0.0006,
+ "loss": 4.081713676452637,
+ "step": 1095
+ },
+ {
+ "epoch": 15.223678462210572,
+ "grad_norm": 0.2547631561756134,
+ "learning_rate": 0.0006,
+ "loss": 4.073573112487793,
+ "step": 1096
+ },
+ {
+ "epoch": 15.237658366098733,
+ "grad_norm": 0.2732609510421753,
+ "learning_rate": 0.0006,
+ "loss": 4.10186767578125,
+ "step": 1097
+ },
+ {
+ "epoch": 15.251638269986893,
+ "grad_norm": 0.2990017533302307,
+ "learning_rate": 0.0006,
+ "loss": 4.085466384887695,
+ "step": 1098
+ },
+ {
+ "epoch": 15.265618173875055,
+ "grad_norm": 0.30252209305763245,
+ "learning_rate": 0.0006,
+ "loss": 4.077337265014648,
+ "step": 1099
+ },
+ {
+ "epoch": 15.279598077763215,
+ "grad_norm": 0.30046045780181885,
+ "learning_rate": 0.0006,
+ "loss": 4.0895891189575195,
+ "step": 1100
+ },
+ {
+ "epoch": 15.293577981651376,
+ "grad_norm": 0.2779843211174011,
+ "learning_rate": 0.0006,
+ "loss": 4.060354709625244,
+ "step": 1101
+ },
+ {
+ "epoch": 15.307557885539538,
+ "grad_norm": 0.26914986968040466,
+ "learning_rate": 0.0006,
+ "loss": 4.07314395904541,
+ "step": 1102
+ },
+ {
+ "epoch": 15.321537789427698,
+ "grad_norm": 0.24605873227119446,
+ "learning_rate": 0.0006,
+ "loss": 4.051377296447754,
+ "step": 1103
+ },
+ {
+ "epoch": 15.33551769331586,
+ "grad_norm": 0.25634095072746277,
+ "learning_rate": 0.0006,
+ "loss": 4.082427024841309,
+ "step": 1104
+ },
+ {
+ "epoch": 15.349497597204019,
+ "grad_norm": 0.2888158857822418,
+ "learning_rate": 0.0006,
+ "loss": 4.074253082275391,
+ "step": 1105
+ },
+ {
+ "epoch": 15.36347750109218,
+ "grad_norm": 0.2758261561393738,
+ "learning_rate": 0.0006,
+ "loss": 4.08344841003418,
+ "step": 1106
+ },
+ {
+ "epoch": 15.37745740498034,
+ "grad_norm": 0.26937270164489746,
+ "learning_rate": 0.0006,
+ "loss": 4.063424587249756,
+ "step": 1107
+ },
+ {
+ "epoch": 15.391437308868502,
+ "grad_norm": 0.2739955484867096,
+ "learning_rate": 0.0006,
+ "loss": 4.08005952835083,
+ "step": 1108
+ },
+ {
+ "epoch": 15.405417212756662,
+ "grad_norm": 0.2635386288166046,
+ "learning_rate": 0.0006,
+ "loss": 4.087360382080078,
+ "step": 1109
+ },
+ {
+ "epoch": 15.419397116644824,
+ "grad_norm": 0.2619768977165222,
+ "learning_rate": 0.0006,
+ "loss": 4.072653770446777,
+ "step": 1110
+ },
+ {
+ "epoch": 15.433377020532983,
+ "grad_norm": 0.24154804646968842,
+ "learning_rate": 0.0006,
+ "loss": 4.084464073181152,
+ "step": 1111
+ },
+ {
+ "epoch": 15.447356924421145,
+ "grad_norm": 0.24236027896404266,
+ "learning_rate": 0.0006,
+ "loss": 4.078777313232422,
+ "step": 1112
+ },
+ {
+ "epoch": 15.461336828309305,
+ "grad_norm": 0.24653038382530212,
+ "learning_rate": 0.0006,
+ "loss": 4.075024604797363,
+ "step": 1113
+ },
+ {
+ "epoch": 15.475316732197467,
+ "grad_norm": 0.27106523513793945,
+ "learning_rate": 0.0006,
+ "loss": 4.060937881469727,
+ "step": 1114
+ },
+ {
+ "epoch": 15.489296636085626,
+ "grad_norm": 0.25109633803367615,
+ "learning_rate": 0.0006,
+ "loss": 4.081971168518066,
+ "step": 1115
+ },
+ {
+ "epoch": 15.503276539973788,
+ "grad_norm": 0.23452287912368774,
+ "learning_rate": 0.0006,
+ "loss": 4.0762834548950195,
+ "step": 1116
+ },
+ {
+ "epoch": 15.517256443861948,
+ "grad_norm": 0.25415024161338806,
+ "learning_rate": 0.0006,
+ "loss": 4.069386959075928,
+ "step": 1117
+ },
+ {
+ "epoch": 15.53123634775011,
+ "grad_norm": 0.25448229908943176,
+ "learning_rate": 0.0006,
+ "loss": 4.075098514556885,
+ "step": 1118
+ },
+ {
+ "epoch": 15.54521625163827,
+ "grad_norm": 0.25679755210876465,
+ "learning_rate": 0.0006,
+ "loss": 4.097431182861328,
+ "step": 1119
+ },
+ {
+ "epoch": 15.55919615552643,
+ "grad_norm": 0.25973212718963623,
+ "learning_rate": 0.0006,
+ "loss": 4.058948516845703,
+ "step": 1120
+ },
+ {
+ "epoch": 15.57317605941459,
+ "grad_norm": 0.24511456489562988,
+ "learning_rate": 0.0006,
+ "loss": 4.092263698577881,
+ "step": 1121
+ },
+ {
+ "epoch": 15.587155963302752,
+ "grad_norm": 0.22949442267417908,
+ "learning_rate": 0.0006,
+ "loss": 4.0526604652404785,
+ "step": 1122
+ },
+ {
+ "epoch": 15.601135867190912,
+ "grad_norm": 0.22486285865306854,
+ "learning_rate": 0.0006,
+ "loss": 4.051939010620117,
+ "step": 1123
+ },
+ {
+ "epoch": 15.615115771079074,
+ "grad_norm": 0.22183601558208466,
+ "learning_rate": 0.0006,
+ "loss": 4.065430641174316,
+ "step": 1124
+ },
+ {
+ "epoch": 15.629095674967235,
+ "grad_norm": 0.2531328797340393,
+ "learning_rate": 0.0006,
+ "loss": 4.069165229797363,
+ "step": 1125
+ },
+ {
+ "epoch": 15.643075578855395,
+ "grad_norm": 0.24403320252895355,
+ "learning_rate": 0.0006,
+ "loss": 4.055041790008545,
+ "step": 1126
+ },
+ {
+ "epoch": 15.657055482743557,
+ "grad_norm": 0.24504756927490234,
+ "learning_rate": 0.0006,
+ "loss": 4.035850524902344,
+ "step": 1127
+ },
+ {
+ "epoch": 15.671035386631717,
+ "grad_norm": 0.23812057077884674,
+ "learning_rate": 0.0006,
+ "loss": 4.049278259277344,
+ "step": 1128
+ },
+ {
+ "epoch": 15.685015290519878,
+ "grad_norm": 0.23694153130054474,
+ "learning_rate": 0.0006,
+ "loss": 4.065816402435303,
+ "step": 1129
+ },
+ {
+ "epoch": 15.698995194408038,
+ "grad_norm": 0.23252786695957184,
+ "learning_rate": 0.0006,
+ "loss": 4.05952262878418,
+ "step": 1130
+ },
+ {
+ "epoch": 15.7129750982962,
+ "grad_norm": 0.2243805080652237,
+ "learning_rate": 0.0006,
+ "loss": 4.058291435241699,
+ "step": 1131
+ },
+ {
+ "epoch": 15.72695500218436,
+ "grad_norm": 0.2200988084077835,
+ "learning_rate": 0.0006,
+ "loss": 4.040788650512695,
+ "step": 1132
+ },
+ {
+ "epoch": 15.740934906072521,
+ "grad_norm": 0.21460631489753723,
+ "learning_rate": 0.0006,
+ "loss": 4.072552680969238,
+ "step": 1133
+ },
+ {
+ "epoch": 15.754914809960681,
+ "grad_norm": 0.2056441456079483,
+ "learning_rate": 0.0006,
+ "loss": 4.059467315673828,
+ "step": 1134
+ },
+ {
+ "epoch": 15.768894713848843,
+ "grad_norm": 0.2068045437335968,
+ "learning_rate": 0.0006,
+ "loss": 4.063803195953369,
+ "step": 1135
+ },
+ {
+ "epoch": 15.782874617737003,
+ "grad_norm": 0.21307601034641266,
+ "learning_rate": 0.0006,
+ "loss": 4.093092918395996,
+ "step": 1136
+ },
+ {
+ "epoch": 15.796854521625164,
+ "grad_norm": 0.20729634165763855,
+ "learning_rate": 0.0006,
+ "loss": 4.066030502319336,
+ "step": 1137
+ },
+ {
+ "epoch": 15.810834425513324,
+ "grad_norm": 0.2097514122724533,
+ "learning_rate": 0.0006,
+ "loss": 4.077326774597168,
+ "step": 1138
+ },
+ {
+ "epoch": 15.824814329401486,
+ "grad_norm": 0.21884000301361084,
+ "learning_rate": 0.0006,
+ "loss": 4.0595598220825195,
+ "step": 1139
+ },
+ {
+ "epoch": 15.838794233289645,
+ "grad_norm": 0.22220250964164734,
+ "learning_rate": 0.0006,
+ "loss": 4.061574459075928,
+ "step": 1140
+ },
+ {
+ "epoch": 15.852774137177807,
+ "grad_norm": 0.23189949989318848,
+ "learning_rate": 0.0006,
+ "loss": 4.0504045486450195,
+ "step": 1141
+ },
+ {
+ "epoch": 15.866754041065967,
+ "grad_norm": 0.226649671792984,
+ "learning_rate": 0.0006,
+ "loss": 4.060986518859863,
+ "step": 1142
+ },
+ {
+ "epoch": 15.880733944954128,
+ "grad_norm": 0.2456834763288498,
+ "learning_rate": 0.0006,
+ "loss": 4.038525581359863,
+ "step": 1143
+ },
+ {
+ "epoch": 15.89471384884229,
+ "grad_norm": 0.2818352282047272,
+ "learning_rate": 0.0006,
+ "loss": 4.062709331512451,
+ "step": 1144
+ },
+ {
+ "epoch": 15.90869375273045,
+ "grad_norm": 0.2850170135498047,
+ "learning_rate": 0.0006,
+ "loss": 4.0683274269104,
+ "step": 1145
+ },
+ {
+ "epoch": 15.922673656618612,
+ "grad_norm": 0.27691730856895447,
+ "learning_rate": 0.0006,
+ "loss": 4.076540470123291,
+ "step": 1146
+ },
+ {
+ "epoch": 15.936653560506771,
+ "grad_norm": 0.2685548961162567,
+ "learning_rate": 0.0006,
+ "loss": 4.048116683959961,
+ "step": 1147
+ },
+ {
+ "epoch": 15.950633464394933,
+ "grad_norm": 0.2452288419008255,
+ "learning_rate": 0.0006,
+ "loss": 4.06640625,
+ "step": 1148
+ },
+ {
+ "epoch": 15.964613368283093,
+ "grad_norm": 0.2601441740989685,
+ "learning_rate": 0.0006,
+ "loss": 4.073277473449707,
+ "step": 1149
+ },
+ {
+ "epoch": 15.978593272171254,
+ "grad_norm": 0.2748197913169861,
+ "learning_rate": 0.0006,
+ "loss": 4.0332536697387695,
+ "step": 1150
+ },
+ {
+ "epoch": 15.992573176059414,
+ "grad_norm": 0.27249959111213684,
+ "learning_rate": 0.0006,
+ "loss": 3.9952516555786133,
+ "step": 1151
+ },
+ {
+ "epoch": 16.0,
+ "grad_norm": 0.3475601375102997,
+ "learning_rate": 0.0006,
+ "loss": 4.040761947631836,
+ "step": 1152
+ },
+ {
+ "epoch": 16.0,
+ "eval_loss": 4.237997531890869,
+ "eval_runtime": 43.8692,
+ "eval_samples_per_second": 55.665,
+ "eval_steps_per_second": 3.488,
+ "step": 1152
+ },
+ {
+ "epoch": 16.01397990388816,
+ "grad_norm": 0.3365611433982849,
+ "learning_rate": 0.0006,
+ "loss": 4.031302452087402,
+ "step": 1153
+ },
+ {
+ "epoch": 16.027959807776323,
+ "grad_norm": 0.3020530641078949,
+ "learning_rate": 0.0006,
+ "loss": 4.036273956298828,
+ "step": 1154
+ },
+ {
+ "epoch": 16.041939711664483,
+ "grad_norm": 0.25277993083000183,
+ "learning_rate": 0.0006,
+ "loss": 4.007067680358887,
+ "step": 1155
+ },
+ {
+ "epoch": 16.055919615552643,
+ "grad_norm": 0.24762840569019318,
+ "learning_rate": 0.0006,
+ "loss": 4.046561241149902,
+ "step": 1156
+ },
+ {
+ "epoch": 16.069899519440803,
+ "grad_norm": 0.25236397981643677,
+ "learning_rate": 0.0006,
+ "loss": 4.061616897583008,
+ "step": 1157
+ },
+ {
+ "epoch": 16.083879423328966,
+ "grad_norm": 0.22789105772972107,
+ "learning_rate": 0.0006,
+ "loss": 4.010061740875244,
+ "step": 1158
+ },
+ {
+ "epoch": 16.097859327217126,
+ "grad_norm": 0.21866244077682495,
+ "learning_rate": 0.0006,
+ "loss": 4.0181097984313965,
+ "step": 1159
+ },
+ {
+ "epoch": 16.111839231105286,
+ "grad_norm": 0.21889029443264008,
+ "learning_rate": 0.0006,
+ "loss": 4.012239456176758,
+ "step": 1160
+ },
+ {
+ "epoch": 16.125819134993446,
+ "grad_norm": 0.23002485930919647,
+ "learning_rate": 0.0006,
+ "loss": 4.034092426300049,
+ "step": 1161
+ },
+ {
+ "epoch": 16.13979903888161,
+ "grad_norm": 0.2271798551082611,
+ "learning_rate": 0.0006,
+ "loss": 4.026222229003906,
+ "step": 1162
+ },
+ {
+ "epoch": 16.15377894276977,
+ "grad_norm": 0.238200843334198,
+ "learning_rate": 0.0006,
+ "loss": 4.044692039489746,
+ "step": 1163
+ },
+ {
+ "epoch": 16.16775884665793,
+ "grad_norm": 0.2281467169523239,
+ "learning_rate": 0.0006,
+ "loss": 4.032305717468262,
+ "step": 1164
+ },
+ {
+ "epoch": 16.18173875054609,
+ "grad_norm": 0.2213946431875229,
+ "learning_rate": 0.0006,
+ "loss": 4.048737525939941,
+ "step": 1165
+ },
+ {
+ "epoch": 16.195718654434252,
+ "grad_norm": 0.26638558506965637,
+ "learning_rate": 0.0006,
+ "loss": 4.006335258483887,
+ "step": 1166
+ },
+ {
+ "epoch": 16.209698558322412,
+ "grad_norm": 0.2780219316482544,
+ "learning_rate": 0.0006,
+ "loss": 4.049234390258789,
+ "step": 1167
+ },
+ {
+ "epoch": 16.22367846221057,
+ "grad_norm": 0.27425870299339294,
+ "learning_rate": 0.0006,
+ "loss": 4.017177104949951,
+ "step": 1168
+ },
+ {
+ "epoch": 16.23765836609873,
+ "grad_norm": 0.2596667408943176,
+ "learning_rate": 0.0006,
+ "loss": 4.022942543029785,
+ "step": 1169
+ },
+ {
+ "epoch": 16.251638269986895,
+ "grad_norm": 0.26972314715385437,
+ "learning_rate": 0.0006,
+ "loss": 4.035310745239258,
+ "step": 1170
+ },
+ {
+ "epoch": 16.265618173875055,
+ "grad_norm": 0.2677772045135498,
+ "learning_rate": 0.0006,
+ "loss": 4.0280561447143555,
+ "step": 1171
+ },
+ {
+ "epoch": 16.279598077763215,
+ "grad_norm": 0.25433358550071716,
+ "learning_rate": 0.0006,
+ "loss": 4.03616189956665,
+ "step": 1172
+ },
+ {
+ "epoch": 16.293577981651374,
+ "grad_norm": 0.2583644688129425,
+ "learning_rate": 0.0006,
+ "loss": 4.073624134063721,
+ "step": 1173
+ },
+ {
+ "epoch": 16.307557885539538,
+ "grad_norm": 0.25437524914741516,
+ "learning_rate": 0.0006,
+ "loss": 4.057926654815674,
+ "step": 1174
+ },
+ {
+ "epoch": 16.321537789427698,
+ "grad_norm": 0.2819201350212097,
+ "learning_rate": 0.0006,
+ "loss": 4.020838737487793,
+ "step": 1175
+ },
+ {
+ "epoch": 16.335517693315857,
+ "grad_norm": 0.32689282298088074,
+ "learning_rate": 0.0006,
+ "loss": 4.062448501586914,
+ "step": 1176
+ },
+ {
+ "epoch": 16.34949759720402,
+ "grad_norm": 0.33002278208732605,
+ "learning_rate": 0.0006,
+ "loss": 4.052059173583984,
+ "step": 1177
+ },
+ {
+ "epoch": 16.36347750109218,
+ "grad_norm": 0.32472696900367737,
+ "learning_rate": 0.0006,
+ "loss": 4.042375564575195,
+ "step": 1178
+ },
+ {
+ "epoch": 16.37745740498034,
+ "grad_norm": 0.35279813408851624,
+ "learning_rate": 0.0006,
+ "loss": 4.028722763061523,
+ "step": 1179
+ },
+ {
+ "epoch": 16.3914373088685,
+ "grad_norm": 0.3243204951286316,
+ "learning_rate": 0.0006,
+ "loss": 4.045693874359131,
+ "step": 1180
+ },
+ {
+ "epoch": 16.405417212756664,
+ "grad_norm": 0.32171115279197693,
+ "learning_rate": 0.0006,
+ "loss": 4.018350124359131,
+ "step": 1181
+ },
+ {
+ "epoch": 16.419397116644824,
+ "grad_norm": 0.31459906697273254,
+ "learning_rate": 0.0006,
+ "loss": 4.039547443389893,
+ "step": 1182
+ },
+ {
+ "epoch": 16.433377020532983,
+ "grad_norm": 0.35038673877716064,
+ "learning_rate": 0.0006,
+ "loss": 4.005928039550781,
+ "step": 1183
+ },
+ {
+ "epoch": 16.447356924421143,
+ "grad_norm": 0.34110963344573975,
+ "learning_rate": 0.0006,
+ "loss": 4.042272090911865,
+ "step": 1184
+ },
+ {
+ "epoch": 16.461336828309307,
+ "grad_norm": 0.33760902285575867,
+ "learning_rate": 0.0006,
+ "loss": 4.02886962890625,
+ "step": 1185
+ },
+ {
+ "epoch": 16.475316732197467,
+ "grad_norm": 0.3162464499473572,
+ "learning_rate": 0.0006,
+ "loss": 4.059924125671387,
+ "step": 1186
+ },
+ {
+ "epoch": 16.489296636085626,
+ "grad_norm": 0.2667233645915985,
+ "learning_rate": 0.0006,
+ "loss": 4.069073677062988,
+ "step": 1187
+ },
+ {
+ "epoch": 16.503276539973786,
+ "grad_norm": 0.22626568377017975,
+ "learning_rate": 0.0006,
+ "loss": 4.044912338256836,
+ "step": 1188
+ },
+ {
+ "epoch": 16.51725644386195,
+ "grad_norm": 0.203303262591362,
+ "learning_rate": 0.0006,
+ "loss": 4.025210380554199,
+ "step": 1189
+ },
+ {
+ "epoch": 16.53123634775011,
+ "grad_norm": 0.2108820080757141,
+ "learning_rate": 0.0006,
+ "loss": 4.035998821258545,
+ "step": 1190
+ },
+ {
+ "epoch": 16.54521625163827,
+ "grad_norm": 0.20451335608959198,
+ "learning_rate": 0.0006,
+ "loss": 4.043377876281738,
+ "step": 1191
+ },
+ {
+ "epoch": 16.55919615552643,
+ "grad_norm": 0.23348836600780487,
+ "learning_rate": 0.0006,
+ "loss": 4.033735275268555,
+ "step": 1192
+ },
+ {
+ "epoch": 16.573176059414592,
+ "grad_norm": 0.24438607692718506,
+ "learning_rate": 0.0006,
+ "loss": 4.071747779846191,
+ "step": 1193
+ },
+ {
+ "epoch": 16.587155963302752,
+ "grad_norm": 0.24233631789684296,
+ "learning_rate": 0.0006,
+ "loss": 4.0138702392578125,
+ "step": 1194
+ },
+ {
+ "epoch": 16.601135867190912,
+ "grad_norm": 0.21625740826129913,
+ "learning_rate": 0.0006,
+ "loss": 4.013422012329102,
+ "step": 1195
+ },
+ {
+ "epoch": 16.615115771079076,
+ "grad_norm": 0.22447720170021057,
+ "learning_rate": 0.0006,
+ "loss": 4.056326866149902,
+ "step": 1196
+ },
+ {
+ "epoch": 16.629095674967235,
+ "grad_norm": 0.21899616718292236,
+ "learning_rate": 0.0006,
+ "loss": 4.006134033203125,
+ "step": 1197
+ },
+ {
+ "epoch": 16.643075578855395,
+ "grad_norm": 0.191362664103508,
+ "learning_rate": 0.0006,
+ "loss": 4.036748886108398,
+ "step": 1198
+ },
+ {
+ "epoch": 16.657055482743555,
+ "grad_norm": 0.20203463733196259,
+ "learning_rate": 0.0006,
+ "loss": 4.006264686584473,
+ "step": 1199
+ },
+ {
+ "epoch": 16.67103538663172,
+ "grad_norm": 0.20209139585494995,
+ "learning_rate": 0.0006,
+ "loss": 4.059018135070801,
+ "step": 1200
+ },
+ {
+ "epoch": 16.68501529051988,
+ "grad_norm": 0.20811820030212402,
+ "learning_rate": 0.0006,
+ "loss": 4.054325103759766,
+ "step": 1201
+ },
+ {
+ "epoch": 16.698995194408038,
+ "grad_norm": 0.22448928654193878,
+ "learning_rate": 0.0006,
+ "loss": 3.996121406555176,
+ "step": 1202
+ },
+ {
+ "epoch": 16.712975098296198,
+ "grad_norm": 0.21692240238189697,
+ "learning_rate": 0.0006,
+ "loss": 4.042046546936035,
+ "step": 1203
+ },
+ {
+ "epoch": 16.72695500218436,
+ "grad_norm": 0.20688563585281372,
+ "learning_rate": 0.0006,
+ "loss": 4.002251625061035,
+ "step": 1204
+ },
+ {
+ "epoch": 16.74093490607252,
+ "grad_norm": 0.1835535764694214,
+ "learning_rate": 0.0006,
+ "loss": 4.02545166015625,
+ "step": 1205
+ },
+ {
+ "epoch": 16.75491480996068,
+ "grad_norm": 0.20532558858394623,
+ "learning_rate": 0.0006,
+ "loss": 4.039333343505859,
+ "step": 1206
+ },
+ {
+ "epoch": 16.76889471384884,
+ "grad_norm": 0.2214215099811554,
+ "learning_rate": 0.0006,
+ "loss": 4.037858486175537,
+ "step": 1207
+ },
+ {
+ "epoch": 16.782874617737004,
+ "grad_norm": 0.24926038086414337,
+ "learning_rate": 0.0006,
+ "loss": 4.024799346923828,
+ "step": 1208
+ },
+ {
+ "epoch": 16.796854521625164,
+ "grad_norm": 0.26057952642440796,
+ "learning_rate": 0.0006,
+ "loss": 4.042788505554199,
+ "step": 1209
+ },
+ {
+ "epoch": 16.810834425513324,
+ "grad_norm": 0.2501208782196045,
+ "learning_rate": 0.0006,
+ "loss": 4.051809310913086,
+ "step": 1210
+ },
+ {
+ "epoch": 16.824814329401484,
+ "grad_norm": 0.21760012209415436,
+ "learning_rate": 0.0006,
+ "loss": 4.063589096069336,
+ "step": 1211
+ },
+ {
+ "epoch": 16.838794233289647,
+ "grad_norm": 0.2243622988462448,
+ "learning_rate": 0.0006,
+ "loss": 4.008829593658447,
+ "step": 1212
+ },
+ {
+ "epoch": 16.852774137177807,
+ "grad_norm": 0.2399163395166397,
+ "learning_rate": 0.0006,
+ "loss": 4.013262748718262,
+ "step": 1213
+ },
+ {
+ "epoch": 16.866754041065967,
+ "grad_norm": 0.23187831044197083,
+ "learning_rate": 0.0006,
+ "loss": 4.023053169250488,
+ "step": 1214
+ },
+ {
+ "epoch": 16.88073394495413,
+ "grad_norm": 0.23723892867565155,
+ "learning_rate": 0.0006,
+ "loss": 3.991321563720703,
+ "step": 1215
+ },
+ {
+ "epoch": 16.89471384884229,
+ "grad_norm": 0.21766342222690582,
+ "learning_rate": 0.0006,
+ "loss": 4.0250773429870605,
+ "step": 1216
+ },
+ {
+ "epoch": 16.90869375273045,
+ "grad_norm": 0.20715023577213287,
+ "learning_rate": 0.0006,
+ "loss": 4.063642978668213,
+ "step": 1217
+ },
+ {
+ "epoch": 16.92267365661861,
+ "grad_norm": 0.20165133476257324,
+ "learning_rate": 0.0006,
+ "loss": 3.9951367378234863,
+ "step": 1218
+ },
+ {
+ "epoch": 16.936653560506773,
+ "grad_norm": 0.19956178963184357,
+ "learning_rate": 0.0006,
+ "loss": 4.025641441345215,
+ "step": 1219
+ },
+ {
+ "epoch": 16.950633464394933,
+ "grad_norm": 0.2175494134426117,
+ "learning_rate": 0.0006,
+ "loss": 4.030346393585205,
+ "step": 1220
+ },
+ {
+ "epoch": 16.964613368283093,
+ "grad_norm": 0.22365593910217285,
+ "learning_rate": 0.0006,
+ "loss": 4.018105506896973,
+ "step": 1221
+ },
+ {
+ "epoch": 16.978593272171253,
+ "grad_norm": 0.21251538395881653,
+ "learning_rate": 0.0006,
+ "loss": 4.023580074310303,
+ "step": 1222
+ },
+ {
+ "epoch": 16.992573176059416,
+ "grad_norm": 0.2230125218629837,
+ "learning_rate": 0.0006,
+ "loss": 4.001980304718018,
+ "step": 1223
+ },
+ {
+ "epoch": 17.0,
+ "grad_norm": 0.24261972308158875,
+ "learning_rate": 0.0006,
+ "loss": 4.081348896026611,
+ "step": 1224
+ },
+ {
+ "epoch": 17.0,
+ "eval_loss": 4.225194931030273,
+ "eval_runtime": 44.247,
+ "eval_samples_per_second": 55.19,
+ "eval_steps_per_second": 3.458,
+ "step": 1224
+ },
+ {
+ "epoch": 17.01397990388816,
+ "grad_norm": 0.2438880205154419,
+ "learning_rate": 0.0006,
+ "loss": 4.0164794921875,
+ "step": 1225
+ },
+ {
+ "epoch": 17.027959807776323,
+ "grad_norm": 0.22459383308887482,
+ "learning_rate": 0.0006,
+ "loss": 3.991623878479004,
+ "step": 1226
+ },
+ {
+ "epoch": 17.041939711664483,
+ "grad_norm": 0.25021040439605713,
+ "learning_rate": 0.0006,
+ "loss": 4.003020286560059,
+ "step": 1227
+ },
+ {
+ "epoch": 17.055919615552643,
+ "grad_norm": 0.30358025431632996,
+ "learning_rate": 0.0006,
+ "loss": 3.980921983718872,
+ "step": 1228
+ },
+ {
+ "epoch": 17.069899519440803,
+ "grad_norm": 0.27313271164894104,
+ "learning_rate": 0.0006,
+ "loss": 3.992398977279663,
+ "step": 1229
+ },
+ {
+ "epoch": 17.083879423328966,
+ "grad_norm": 0.2293211966753006,
+ "learning_rate": 0.0006,
+ "loss": 4.02568244934082,
+ "step": 1230
+ },
+ {
+ "epoch": 17.097859327217126,
+ "grad_norm": 0.2363300621509552,
+ "learning_rate": 0.0006,
+ "loss": 3.977229356765747,
+ "step": 1231
+ },
+ {
+ "epoch": 17.111839231105286,
+ "grad_norm": 0.2809674143791199,
+ "learning_rate": 0.0006,
+ "loss": 3.9720497131347656,
+ "step": 1232
+ },
+ {
+ "epoch": 17.125819134993446,
+ "grad_norm": 0.2913855016231537,
+ "learning_rate": 0.0006,
+ "loss": 3.979529857635498,
+ "step": 1233
+ },
+ {
+ "epoch": 17.13979903888161,
+ "grad_norm": 0.2920287251472473,
+ "learning_rate": 0.0006,
+ "loss": 3.9678473472595215,
+ "step": 1234
+ },
+ {
+ "epoch": 17.15377894276977,
+ "grad_norm": 0.2521543502807617,
+ "learning_rate": 0.0006,
+ "loss": 3.9912607669830322,
+ "step": 1235
+ },
+ {
+ "epoch": 17.16775884665793,
+ "grad_norm": 0.22844268381595612,
+ "learning_rate": 0.0006,
+ "loss": 3.9898228645324707,
+ "step": 1236
+ },
+ {
+ "epoch": 17.18173875054609,
+ "grad_norm": 0.2199884057044983,
+ "learning_rate": 0.0006,
+ "loss": 4.0050740242004395,
+ "step": 1237
+ },
+ {
+ "epoch": 17.195718654434252,
+ "grad_norm": 0.23072892427444458,
+ "learning_rate": 0.0006,
+ "loss": 3.9957475662231445,
+ "step": 1238
+ },
+ {
+ "epoch": 17.209698558322412,
+ "grad_norm": 0.2034899890422821,
+ "learning_rate": 0.0006,
+ "loss": 3.9672317504882812,
+ "step": 1239
+ },
+ {
+ "epoch": 17.22367846221057,
+ "grad_norm": 0.21826180815696716,
+ "learning_rate": 0.0006,
+ "loss": 3.98543119430542,
+ "step": 1240
+ },
+ {
+ "epoch": 17.23765836609873,
+ "grad_norm": 0.21203237771987915,
+ "learning_rate": 0.0006,
+ "loss": 3.9971959590911865,
+ "step": 1241
+ },
+ {
+ "epoch": 17.251638269986895,
+ "grad_norm": 0.22139234840869904,
+ "learning_rate": 0.0006,
+ "loss": 4.017539978027344,
+ "step": 1242
+ },
+ {
+ "epoch": 17.265618173875055,
+ "grad_norm": 0.21553276479244232,
+ "learning_rate": 0.0006,
+ "loss": 3.98740553855896,
+ "step": 1243
+ },
+ {
+ "epoch": 17.279598077763215,
+ "grad_norm": 0.23259080946445465,
+ "learning_rate": 0.0006,
+ "loss": 3.9963035583496094,
+ "step": 1244
+ },
+ {
+ "epoch": 17.293577981651374,
+ "grad_norm": 0.2527932822704315,
+ "learning_rate": 0.0006,
+ "loss": 4.0202956199646,
+ "step": 1245
+ },
+ {
+ "epoch": 17.307557885539538,
+ "grad_norm": 0.28669068217277527,
+ "learning_rate": 0.0006,
+ "loss": 3.9947609901428223,
+ "step": 1246
+ },
+ {
+ "epoch": 17.321537789427698,
+ "grad_norm": 0.341602623462677,
+ "learning_rate": 0.0006,
+ "loss": 3.997032642364502,
+ "step": 1247
+ },
+ {
+ "epoch": 17.335517693315857,
+ "grad_norm": 0.3364104926586151,
+ "learning_rate": 0.0006,
+ "loss": 3.9881834983825684,
+ "step": 1248
+ },
+ {
+ "epoch": 17.34949759720402,
+ "grad_norm": 0.2979278266429901,
+ "learning_rate": 0.0006,
+ "loss": 4.045898914337158,
+ "step": 1249
+ },
+ {
+ "epoch": 17.36347750109218,
+ "grad_norm": 0.2857462465763092,
+ "learning_rate": 0.0006,
+ "loss": 4.0085272789001465,
+ "step": 1250
+ },
+ {
+ "epoch": 17.37745740498034,
+ "grad_norm": 0.2689058780670166,
+ "learning_rate": 0.0006,
+ "loss": 4.021465301513672,
+ "step": 1251
+ },
+ {
+ "epoch": 17.3914373088685,
+ "grad_norm": 0.24943363666534424,
+ "learning_rate": 0.0006,
+ "loss": 4.003451347351074,
+ "step": 1252
+ },
+ {
+ "epoch": 17.405417212756664,
+ "grad_norm": 0.2635347843170166,
+ "learning_rate": 0.0006,
+ "loss": 3.9837827682495117,
+ "step": 1253
+ },
+ {
+ "epoch": 17.419397116644824,
+ "grad_norm": 0.29126450419425964,
+ "learning_rate": 0.0006,
+ "loss": 3.9857311248779297,
+ "step": 1254
+ },
+ {
+ "epoch": 17.433377020532983,
+ "grad_norm": 0.3166918456554413,
+ "learning_rate": 0.0006,
+ "loss": 3.9842967987060547,
+ "step": 1255
+ },
+ {
+ "epoch": 17.447356924421143,
+ "grad_norm": 0.27869969606399536,
+ "learning_rate": 0.0006,
+ "loss": 4.012607574462891,
+ "step": 1256
+ },
+ {
+ "epoch": 17.461336828309307,
+ "grad_norm": 0.23719419538974762,
+ "learning_rate": 0.0006,
+ "loss": 3.981034755706787,
+ "step": 1257
+ },
+ {
+ "epoch": 17.475316732197467,
+ "grad_norm": 0.22687610983848572,
+ "learning_rate": 0.0006,
+ "loss": 4.011059761047363,
+ "step": 1258
+ },
+ {
+ "epoch": 17.489296636085626,
+ "grad_norm": 0.22034095227718353,
+ "learning_rate": 0.0006,
+ "loss": 4.015044689178467,
+ "step": 1259
+ },
+ {
+ "epoch": 17.503276539973786,
+ "grad_norm": 0.21208405494689941,
+ "learning_rate": 0.0006,
+ "loss": 4.003793716430664,
+ "step": 1260
+ },
+ {
+ "epoch": 17.51725644386195,
+ "grad_norm": 0.21759214997291565,
+ "learning_rate": 0.0006,
+ "loss": 3.978652238845825,
+ "step": 1261
+ },
+ {
+ "epoch": 17.53123634775011,
+ "grad_norm": 0.22481068968772888,
+ "learning_rate": 0.0006,
+ "loss": 4.034845352172852,
+ "step": 1262
+ },
+ {
+ "epoch": 17.54521625163827,
+ "grad_norm": 0.20376387238502502,
+ "learning_rate": 0.0006,
+ "loss": 3.990541934967041,
+ "step": 1263
+ },
+ {
+ "epoch": 17.55919615552643,
+ "grad_norm": 0.20459355413913727,
+ "learning_rate": 0.0006,
+ "loss": 4.006990432739258,
+ "step": 1264
+ },
+ {
+ "epoch": 17.573176059414592,
+ "grad_norm": 0.19306913018226624,
+ "learning_rate": 0.0006,
+ "loss": 3.993408679962158,
+ "step": 1265
+ },
+ {
+ "epoch": 17.587155963302752,
+ "grad_norm": 0.20727239549160004,
+ "learning_rate": 0.0006,
+ "loss": 3.988016128540039,
+ "step": 1266
+ },
+ {
+ "epoch": 17.601135867190912,
+ "grad_norm": 0.20213133096694946,
+ "learning_rate": 0.0006,
+ "loss": 4.0120368003845215,
+ "step": 1267
+ },
+ {
+ "epoch": 17.615115771079076,
+ "grad_norm": 0.21074117720127106,
+ "learning_rate": 0.0006,
+ "loss": 4.048871040344238,
+ "step": 1268
+ },
+ {
+ "epoch": 17.629095674967235,
+ "grad_norm": 0.2074330598115921,
+ "learning_rate": 0.0006,
+ "loss": 3.997509002685547,
+ "step": 1269
+ },
+ {
+ "epoch": 17.643075578855395,
+ "grad_norm": 0.20383669435977936,
+ "learning_rate": 0.0006,
+ "loss": 4.0028839111328125,
+ "step": 1270
+ },
+ {
+ "epoch": 17.657055482743555,
+ "grad_norm": 0.2060765027999878,
+ "learning_rate": 0.0006,
+ "loss": 3.998032331466675,
+ "step": 1271
+ },
+ {
+ "epoch": 17.67103538663172,
+ "grad_norm": 0.21851404011249542,
+ "learning_rate": 0.0006,
+ "loss": 3.9928741455078125,
+ "step": 1272
+ },
+ {
+ "epoch": 17.68501529051988,
+ "grad_norm": 0.24324250221252441,
+ "learning_rate": 0.0006,
+ "loss": 3.9896507263183594,
+ "step": 1273
+ },
+ {
+ "epoch": 17.698995194408038,
+ "grad_norm": 0.25584331154823303,
+ "learning_rate": 0.0006,
+ "loss": 4.010485649108887,
+ "step": 1274
+ },
+ {
+ "epoch": 17.712975098296198,
+ "grad_norm": 0.2490610033273697,
+ "learning_rate": 0.0006,
+ "loss": 3.9906954765319824,
+ "step": 1275
+ },
+ {
+ "epoch": 17.72695500218436,
+ "grad_norm": 0.24241414666175842,
+ "learning_rate": 0.0006,
+ "loss": 4.016420364379883,
+ "step": 1276
+ },
+ {
+ "epoch": 17.74093490607252,
+ "grad_norm": 0.2222128063440323,
+ "learning_rate": 0.0006,
+ "loss": 4.009827136993408,
+ "step": 1277
+ },
+ {
+ "epoch": 17.75491480996068,
+ "grad_norm": 0.23119516670703888,
+ "learning_rate": 0.0006,
+ "loss": 4.0034589767456055,
+ "step": 1278
+ },
+ {
+ "epoch": 17.76889471384884,
+ "grad_norm": 0.24596457183361053,
+ "learning_rate": 0.0006,
+ "loss": 4.003161907196045,
+ "step": 1279
+ },
+ {
+ "epoch": 17.782874617737004,
+ "grad_norm": 0.2607562839984894,
+ "learning_rate": 0.0006,
+ "loss": 3.9894633293151855,
+ "step": 1280
+ },
+ {
+ "epoch": 17.796854521625164,
+ "grad_norm": 0.28706878423690796,
+ "learning_rate": 0.0006,
+ "loss": 4.005712985992432,
+ "step": 1281
+ },
+ {
+ "epoch": 17.810834425513324,
+ "grad_norm": 0.27178290486335754,
+ "learning_rate": 0.0006,
+ "loss": 3.9784536361694336,
+ "step": 1282
+ },
+ {
+ "epoch": 17.824814329401484,
+ "grad_norm": 0.27962708473205566,
+ "learning_rate": 0.0006,
+ "loss": 4.012705326080322,
+ "step": 1283
+ },
+ {
+ "epoch": 17.838794233289647,
+ "grad_norm": 0.29147693514823914,
+ "learning_rate": 0.0006,
+ "loss": 4.0159783363342285,
+ "step": 1284
+ },
+ {
+ "epoch": 17.852774137177807,
+ "grad_norm": 0.2841821312904358,
+ "learning_rate": 0.0006,
+ "loss": 4.011552810668945,
+ "step": 1285
+ },
+ {
+ "epoch": 17.866754041065967,
+ "grad_norm": 0.24924969673156738,
+ "learning_rate": 0.0006,
+ "loss": 3.992421865463257,
+ "step": 1286
+ },
+ {
+ "epoch": 17.88073394495413,
+ "grad_norm": 0.24850749969482422,
+ "learning_rate": 0.0006,
+ "loss": 3.974897861480713,
+ "step": 1287
+ },
+ {
+ "epoch": 17.89471384884229,
+ "grad_norm": 0.2409554123878479,
+ "learning_rate": 0.0006,
+ "loss": 4.002941131591797,
+ "step": 1288
+ },
+ {
+ "epoch": 17.90869375273045,
+ "grad_norm": 0.2656126320362091,
+ "learning_rate": 0.0006,
+ "loss": 3.9804210662841797,
+ "step": 1289
+ },
+ {
+ "epoch": 17.92267365661861,
+ "grad_norm": 0.28210243582725525,
+ "learning_rate": 0.0006,
+ "loss": 4.007192134857178,
+ "step": 1290
+ },
+ {
+ "epoch": 17.936653560506773,
+ "grad_norm": 0.28427553176879883,
+ "learning_rate": 0.0006,
+ "loss": 3.9739556312561035,
+ "step": 1291
+ },
+ {
+ "epoch": 17.950633464394933,
+ "grad_norm": 0.28893420100212097,
+ "learning_rate": 0.0006,
+ "loss": 4.004766941070557,
+ "step": 1292
+ },
+ {
+ "epoch": 17.964613368283093,
+ "grad_norm": 0.2831471562385559,
+ "learning_rate": 0.0006,
+ "loss": 3.984936237335205,
+ "step": 1293
+ },
+ {
+ "epoch": 17.978593272171253,
+ "grad_norm": 0.2518300712108612,
+ "learning_rate": 0.0006,
+ "loss": 4.002814292907715,
+ "step": 1294
+ },
+ {
+ "epoch": 17.992573176059416,
+ "grad_norm": 0.24264675378799438,
+ "learning_rate": 0.0006,
+ "loss": 3.998900890350342,
+ "step": 1295
+ },
+ {
+ "epoch": 18.0,
+ "grad_norm": 0.24474996328353882,
+ "learning_rate": 0.0006,
+ "loss": 3.974229335784912,
+ "step": 1296
+ },
+ {
+ "epoch": 18.0,
+ "eval_loss": 4.195685863494873,
+ "eval_runtime": 44.0709,
+ "eval_samples_per_second": 55.411,
+ "eval_steps_per_second": 3.472,
+ "step": 1296
+ },
+ {
+ "epoch": 18.01397990388816,
+ "grad_norm": 0.2553016245365143,
+ "learning_rate": 0.0006,
+ "loss": 3.9522247314453125,
+ "step": 1297
+ },
+ {
+ "epoch": 18.027959807776323,
+ "grad_norm": 0.22350727021694183,
+ "learning_rate": 0.0006,
+ "loss": 3.9850122928619385,
+ "step": 1298
+ },
+ {
+ "epoch": 18.041939711664483,
+ "grad_norm": 0.23935550451278687,
+ "learning_rate": 0.0006,
+ "loss": 3.9758832454681396,
+ "step": 1299
+ },
+ {
+ "epoch": 18.055919615552643,
+ "grad_norm": 0.23868797719478607,
+ "learning_rate": 0.0006,
+ "loss": 3.9567959308624268,
+ "step": 1300
+ },
+ {
+ "epoch": 18.069899519440803,
+ "grad_norm": 0.23102357983589172,
+ "learning_rate": 0.0006,
+ "loss": 3.9399867057800293,
+ "step": 1301
+ },
+ {
+ "epoch": 18.083879423328966,
+ "grad_norm": 0.23706983029842377,
+ "learning_rate": 0.0006,
+ "loss": 3.993434190750122,
+ "step": 1302
+ },
+ {
+ "epoch": 18.097859327217126,
+ "grad_norm": 0.22207573056221008,
+ "learning_rate": 0.0006,
+ "loss": 3.993436574935913,
+ "step": 1303
+ },
+ {
+ "epoch": 18.111839231105286,
+ "grad_norm": 0.23975296318531036,
+ "learning_rate": 0.0006,
+ "loss": 3.981943368911743,
+ "step": 1304
+ },
+ {
+ "epoch": 18.125819134993446,
+ "grad_norm": 0.2520582675933838,
+ "learning_rate": 0.0006,
+ "loss": 3.965493679046631,
+ "step": 1305
+ },
+ {
+ "epoch": 18.13979903888161,
+ "grad_norm": 0.2230956256389618,
+ "learning_rate": 0.0006,
+ "loss": 3.9360928535461426,
+ "step": 1306
+ },
+ {
+ "epoch": 18.15377894276977,
+ "grad_norm": 0.22527500987052917,
+ "learning_rate": 0.0006,
+ "loss": 3.9814581871032715,
+ "step": 1307
+ },
+ {
+ "epoch": 18.16775884665793,
+ "grad_norm": 0.22389626502990723,
+ "learning_rate": 0.0006,
+ "loss": 3.961590051651001,
+ "step": 1308
+ },
+ {
+ "epoch": 18.18173875054609,
+ "grad_norm": 0.22279471158981323,
+ "learning_rate": 0.0006,
+ "loss": 3.952338695526123,
+ "step": 1309
+ },
+ {
+ "epoch": 18.195718654434252,
+ "grad_norm": 0.24635115265846252,
+ "learning_rate": 0.0006,
+ "loss": 3.9693849086761475,
+ "step": 1310
+ },
+ {
+ "epoch": 18.209698558322412,
+ "grad_norm": 0.2757279872894287,
+ "learning_rate": 0.0006,
+ "loss": 3.9956700801849365,
+ "step": 1311
+ },
+ {
+ "epoch": 18.22367846221057,
+ "grad_norm": 0.2619115710258484,
+ "learning_rate": 0.0006,
+ "loss": 3.948878765106201,
+ "step": 1312
+ },
+ {
+ "epoch": 18.23765836609873,
+ "grad_norm": 0.22853828966617584,
+ "learning_rate": 0.0006,
+ "loss": 3.9545674324035645,
+ "step": 1313
+ },
+ {
+ "epoch": 18.251638269986895,
+ "grad_norm": 0.22904761135578156,
+ "learning_rate": 0.0006,
+ "loss": 3.947535991668701,
+ "step": 1314
+ },
+ {
+ "epoch": 18.265618173875055,
+ "grad_norm": 0.23592644929885864,
+ "learning_rate": 0.0006,
+ "loss": 3.971926212310791,
+ "step": 1315
+ },
+ {
+ "epoch": 18.279598077763215,
+ "grad_norm": 0.22120243310928345,
+ "learning_rate": 0.0006,
+ "loss": 3.9471049308776855,
+ "step": 1316
+ },
+ {
+ "epoch": 18.293577981651374,
+ "grad_norm": 0.20308749377727509,
+ "learning_rate": 0.0006,
+ "loss": 3.967449188232422,
+ "step": 1317
+ },
+ {
+ "epoch": 18.307557885539538,
+ "grad_norm": 0.20013529062271118,
+ "learning_rate": 0.0006,
+ "loss": 3.966151237487793,
+ "step": 1318
+ },
+ {
+ "epoch": 18.321537789427698,
+ "grad_norm": 0.20635221898555756,
+ "learning_rate": 0.0006,
+ "loss": 3.9908885955810547,
+ "step": 1319
+ },
+ {
+ "epoch": 18.335517693315857,
+ "grad_norm": 0.2232237160205841,
+ "learning_rate": 0.0006,
+ "loss": 3.9488768577575684,
+ "step": 1320
+ },
+ {
+ "epoch": 18.34949759720402,
+ "grad_norm": 0.21916444599628448,
+ "learning_rate": 0.0006,
+ "loss": 3.973428726196289,
+ "step": 1321
+ },
+ {
+ "epoch": 18.36347750109218,
+ "grad_norm": 0.20427337288856506,
+ "learning_rate": 0.0006,
+ "loss": 3.969332695007324,
+ "step": 1322
+ },
+ {
+ "epoch": 18.37745740498034,
+ "grad_norm": 0.20138131082057953,
+ "learning_rate": 0.0006,
+ "loss": 3.9651856422424316,
+ "step": 1323
+ },
+ {
+ "epoch": 18.3914373088685,
+ "grad_norm": 0.18918880820274353,
+ "learning_rate": 0.0006,
+ "loss": 3.9772281646728516,
+ "step": 1324
+ },
+ {
+ "epoch": 18.405417212756664,
+ "grad_norm": 0.1860039383172989,
+ "learning_rate": 0.0006,
+ "loss": 3.9289052486419678,
+ "step": 1325
+ },
+ {
+ "epoch": 18.419397116644824,
+ "grad_norm": 0.19541646540164948,
+ "learning_rate": 0.0006,
+ "loss": 3.9527673721313477,
+ "step": 1326
+ },
+ {
+ "epoch": 18.433377020532983,
+ "grad_norm": 0.206914022564888,
+ "learning_rate": 0.0006,
+ "loss": 3.99316143989563,
+ "step": 1327
+ },
+ {
+ "epoch": 18.447356924421143,
+ "grad_norm": 0.209097757935524,
+ "learning_rate": 0.0006,
+ "loss": 3.978130340576172,
+ "step": 1328
+ },
+ {
+ "epoch": 18.461336828309307,
+ "grad_norm": 0.22163373231887817,
+ "learning_rate": 0.0006,
+ "loss": 3.951460361480713,
+ "step": 1329
+ },
+ {
+ "epoch": 18.475316732197467,
+ "grad_norm": 0.21446120738983154,
+ "learning_rate": 0.0006,
+ "loss": 3.963571071624756,
+ "step": 1330
+ },
+ {
+ "epoch": 18.489296636085626,
+ "grad_norm": 0.2341388761997223,
+ "learning_rate": 0.0006,
+ "loss": 4.010684013366699,
+ "step": 1331
+ },
+ {
+ "epoch": 18.503276539973786,
+ "grad_norm": 0.2433937042951584,
+ "learning_rate": 0.0006,
+ "loss": 3.987537384033203,
+ "step": 1332
+ },
+ {
+ "epoch": 18.51725644386195,
+ "grad_norm": 0.24916228652000427,
+ "learning_rate": 0.0006,
+ "loss": 3.953075647354126,
+ "step": 1333
+ },
+ {
+ "epoch": 18.53123634775011,
+ "grad_norm": 0.24542421102523804,
+ "learning_rate": 0.0006,
+ "loss": 3.9510841369628906,
+ "step": 1334
+ },
+ {
+ "epoch": 18.54521625163827,
+ "grad_norm": 0.2393690049648285,
+ "learning_rate": 0.0006,
+ "loss": 3.981747627258301,
+ "step": 1335
+ },
+ {
+ "epoch": 18.55919615552643,
+ "grad_norm": 0.22806711494922638,
+ "learning_rate": 0.0006,
+ "loss": 3.9714856147766113,
+ "step": 1336
+ },
+ {
+ "epoch": 18.573176059414592,
+ "grad_norm": 0.21948303282260895,
+ "learning_rate": 0.0006,
+ "loss": 3.9429898262023926,
+ "step": 1337
+ },
+ {
+ "epoch": 18.587155963302752,
+ "grad_norm": 0.21575778722763062,
+ "learning_rate": 0.0006,
+ "loss": 3.9639933109283447,
+ "step": 1338
+ },
+ {
+ "epoch": 18.601135867190912,
+ "grad_norm": 0.23370565474033356,
+ "learning_rate": 0.0006,
+ "loss": 3.9819254875183105,
+ "step": 1339
+ },
+ {
+ "epoch": 18.615115771079076,
+ "grad_norm": 0.2613106369972229,
+ "learning_rate": 0.0006,
+ "loss": 3.9654669761657715,
+ "step": 1340
+ },
+ {
+ "epoch": 18.629095674967235,
+ "grad_norm": 0.26682716608047485,
+ "learning_rate": 0.0006,
+ "loss": 3.9832968711853027,
+ "step": 1341
+ },
+ {
+ "epoch": 18.643075578855395,
+ "grad_norm": 0.24331490695476532,
+ "learning_rate": 0.0006,
+ "loss": 3.9926600456237793,
+ "step": 1342
+ },
+ {
+ "epoch": 18.657055482743555,
+ "grad_norm": 0.2459341287612915,
+ "learning_rate": 0.0006,
+ "loss": 3.9508986473083496,
+ "step": 1343
+ },
+ {
+ "epoch": 18.67103538663172,
+ "grad_norm": 0.26395753026008606,
+ "learning_rate": 0.0006,
+ "loss": 3.961359977722168,
+ "step": 1344
+ },
+ {
+ "epoch": 18.68501529051988,
+ "grad_norm": 0.26049068570137024,
+ "learning_rate": 0.0006,
+ "loss": 3.9763245582580566,
+ "step": 1345
+ },
+ {
+ "epoch": 18.698995194408038,
+ "grad_norm": 0.24018602073192596,
+ "learning_rate": 0.0006,
+ "loss": 3.951780319213867,
+ "step": 1346
+ },
+ {
+ "epoch": 18.712975098296198,
+ "grad_norm": 0.23886290192604065,
+ "learning_rate": 0.0006,
+ "loss": 3.9883017539978027,
+ "step": 1347
+ },
+ {
+ "epoch": 18.72695500218436,
+ "grad_norm": 0.2293774038553238,
+ "learning_rate": 0.0006,
+ "loss": 3.9852685928344727,
+ "step": 1348
+ },
+ {
+ "epoch": 18.74093490607252,
+ "grad_norm": 0.22172975540161133,
+ "learning_rate": 0.0006,
+ "loss": 3.967550277709961,
+ "step": 1349
+ },
+ {
+ "epoch": 18.75491480996068,
+ "grad_norm": 0.2170475423336029,
+ "learning_rate": 0.0006,
+ "loss": 3.9570775032043457,
+ "step": 1350
+ },
+ {
+ "epoch": 18.76889471384884,
+ "grad_norm": 0.21458806097507477,
+ "learning_rate": 0.0006,
+ "loss": 3.9461212158203125,
+ "step": 1351
+ },
+ {
+ "epoch": 18.782874617737004,
+ "grad_norm": 0.21101507544517517,
+ "learning_rate": 0.0006,
+ "loss": 3.984398365020752,
+ "step": 1352
+ },
+ {
+ "epoch": 18.796854521625164,
+ "grad_norm": 0.23480583727359772,
+ "learning_rate": 0.0006,
+ "loss": 3.950312614440918,
+ "step": 1353
+ },
+ {
+ "epoch": 18.810834425513324,
+ "grad_norm": 0.24728581309318542,
+ "learning_rate": 0.0006,
+ "loss": 3.9572393894195557,
+ "step": 1354
+ },
+ {
+ "epoch": 18.824814329401484,
+ "grad_norm": 0.26063451170921326,
+ "learning_rate": 0.0006,
+ "loss": 3.9653234481811523,
+ "step": 1355
+ },
+ {
+ "epoch": 18.838794233289647,
+ "grad_norm": 0.24679961800575256,
+ "learning_rate": 0.0006,
+ "loss": 3.9560108184814453,
+ "step": 1356
+ },
+ {
+ "epoch": 18.852774137177807,
+ "grad_norm": 0.23199526965618134,
+ "learning_rate": 0.0006,
+ "loss": 3.9948246479034424,
+ "step": 1357
+ },
+ {
+ "epoch": 18.866754041065967,
+ "grad_norm": 0.22619125247001648,
+ "learning_rate": 0.0006,
+ "loss": 3.9783573150634766,
+ "step": 1358
+ },
+ {
+ "epoch": 18.88073394495413,
+ "grad_norm": 0.25499874353408813,
+ "learning_rate": 0.0006,
+ "loss": 3.9674575328826904,
+ "step": 1359
+ },
+ {
+ "epoch": 18.89471384884229,
+ "grad_norm": 0.23961037397384644,
+ "learning_rate": 0.0006,
+ "loss": 3.969209909439087,
+ "step": 1360
+ },
+ {
+ "epoch": 18.90869375273045,
+ "grad_norm": 0.21039162576198578,
+ "learning_rate": 0.0006,
+ "loss": 3.978661060333252,
+ "step": 1361
+ },
+ {
+ "epoch": 18.92267365661861,
+ "grad_norm": 0.2297026664018631,
+ "learning_rate": 0.0006,
+ "loss": 3.9483046531677246,
+ "step": 1362
+ },
+ {
+ "epoch": 18.936653560506773,
+ "grad_norm": 0.26367098093032837,
+ "learning_rate": 0.0006,
+ "loss": 3.927133560180664,
+ "step": 1363
+ },
+ {
+ "epoch": 18.950633464394933,
+ "grad_norm": 0.26893147826194763,
+ "learning_rate": 0.0006,
+ "loss": 3.957932710647583,
+ "step": 1364
+ },
+ {
+ "epoch": 18.964613368283093,
+ "grad_norm": 0.27092233300209045,
+ "learning_rate": 0.0006,
+ "loss": 3.976621150970459,
+ "step": 1365
+ },
+ {
+ "epoch": 18.978593272171253,
+ "grad_norm": 0.2672635018825531,
+ "learning_rate": 0.0006,
+ "loss": 3.9577765464782715,
+ "step": 1366
+ },
+ {
+ "epoch": 18.992573176059416,
+ "grad_norm": 0.2721385359764099,
+ "learning_rate": 0.0006,
+ "loss": 3.986100196838379,
+ "step": 1367
+ },
+ {
+ "epoch": 19.0,
+ "grad_norm": 0.27648621797561646,
+ "learning_rate": 0.0006,
+ "loss": 3.9942402839660645,
+ "step": 1368
+ },
+ {
+ "epoch": 19.0,
+ "eval_loss": 4.180216312408447,
+ "eval_runtime": 44.0079,
+ "eval_samples_per_second": 55.49,
+ "eval_steps_per_second": 3.477,
+ "step": 1368
+ },
+ {
+ "epoch": 19.01397990388816,
+ "grad_norm": 0.2563098073005676,
+ "learning_rate": 0.0006,
+ "loss": 3.9267354011535645,
+ "step": 1369
+ },
+ {
+ "epoch": 19.027959807776323,
+ "grad_norm": 0.2531425952911377,
+ "learning_rate": 0.0006,
+ "loss": 3.9273324012756348,
+ "step": 1370
+ },
+ {
+ "epoch": 19.041939711664483,
+ "grad_norm": 0.27485427260398865,
+ "learning_rate": 0.0006,
+ "loss": 3.9542183876037598,
+ "step": 1371
+ },
+ {
+ "epoch": 19.055919615552643,
+ "grad_norm": 0.27509891986846924,
+ "learning_rate": 0.0006,
+ "loss": 3.921940326690674,
+ "step": 1372
+ },
+ {
+ "epoch": 19.069899519440803,
+ "grad_norm": 0.28154096007347107,
+ "learning_rate": 0.0006,
+ "loss": 3.926743984222412,
+ "step": 1373
+ },
+ {
+ "epoch": 19.083879423328966,
+ "grad_norm": 0.2749912738800049,
+ "learning_rate": 0.0006,
+ "loss": 3.9257748126983643,
+ "step": 1374
+ },
+ {
+ "epoch": 19.097859327217126,
+ "grad_norm": 0.26168501377105713,
+ "learning_rate": 0.0006,
+ "loss": 3.9403202533721924,
+ "step": 1375
+ },
+ {
+ "epoch": 19.111839231105286,
+ "grad_norm": 0.23410023748874664,
+ "learning_rate": 0.0006,
+ "loss": 3.935378313064575,
+ "step": 1376
+ },
+ {
+ "epoch": 19.125819134993446,
+ "grad_norm": 0.25790470838546753,
+ "learning_rate": 0.0006,
+ "loss": 3.946147918701172,
+ "step": 1377
+ },
+ {
+ "epoch": 19.13979903888161,
+ "grad_norm": 0.26704177260398865,
+ "learning_rate": 0.0006,
+ "loss": 3.9511594772338867,
+ "step": 1378
+ },
+ {
+ "epoch": 19.15377894276977,
+ "grad_norm": 0.2560667097568512,
+ "learning_rate": 0.0006,
+ "loss": 3.915806531906128,
+ "step": 1379
+ },
+ {
+ "epoch": 19.16775884665793,
+ "grad_norm": 0.24684149026870728,
+ "learning_rate": 0.0006,
+ "loss": 3.9162003993988037,
+ "step": 1380
+ },
+ {
+ "epoch": 19.18173875054609,
+ "grad_norm": 0.2097567766904831,
+ "learning_rate": 0.0006,
+ "loss": 3.915739059448242,
+ "step": 1381
+ },
+ {
+ "epoch": 19.195718654434252,
+ "grad_norm": 0.21646849811077118,
+ "learning_rate": 0.0006,
+ "loss": 3.9097084999084473,
+ "step": 1382
+ },
+ {
+ "epoch": 19.209698558322412,
+ "grad_norm": 0.20626980066299438,
+ "learning_rate": 0.0006,
+ "loss": 3.9541783332824707,
+ "step": 1383
+ },
+ {
+ "epoch": 19.22367846221057,
+ "grad_norm": 0.23362718522548676,
+ "learning_rate": 0.0006,
+ "loss": 3.950096845626831,
+ "step": 1384
+ },
+ {
+ "epoch": 19.23765836609873,
+ "grad_norm": 0.25402209162712097,
+ "learning_rate": 0.0006,
+ "loss": 3.927671432495117,
+ "step": 1385
+ },
+ {
+ "epoch": 19.251638269986895,
+ "grad_norm": 0.23714083433151245,
+ "learning_rate": 0.0006,
+ "loss": 3.939765453338623,
+ "step": 1386
+ },
+ {
+ "epoch": 19.265618173875055,
+ "grad_norm": 0.20895546674728394,
+ "learning_rate": 0.0006,
+ "loss": 3.9384806156158447,
+ "step": 1387
+ },
+ {
+ "epoch": 19.279598077763215,
+ "grad_norm": 0.21374300122261047,
+ "learning_rate": 0.0006,
+ "loss": 3.9523749351501465,
+ "step": 1388
+ },
+ {
+ "epoch": 19.293577981651374,
+ "grad_norm": 0.210394486784935,
+ "learning_rate": 0.0006,
+ "loss": 3.9540798664093018,
+ "step": 1389
+ },
+ {
+ "epoch": 19.307557885539538,
+ "grad_norm": 0.20646725594997406,
+ "learning_rate": 0.0006,
+ "loss": 3.9514098167419434,
+ "step": 1390
+ },
+ {
+ "epoch": 19.321537789427698,
+ "grad_norm": 0.21477538347244263,
+ "learning_rate": 0.0006,
+ "loss": 3.9369924068450928,
+ "step": 1391
+ },
+ {
+ "epoch": 19.335517693315857,
+ "grad_norm": 0.20431505143642426,
+ "learning_rate": 0.0006,
+ "loss": 3.9389796257019043,
+ "step": 1392
+ },
+ {
+ "epoch": 19.34949759720402,
+ "grad_norm": 0.19575877487659454,
+ "learning_rate": 0.0006,
+ "loss": 3.935976028442383,
+ "step": 1393
+ },
+ {
+ "epoch": 19.36347750109218,
+ "grad_norm": 0.20720405876636505,
+ "learning_rate": 0.0006,
+ "loss": 3.9670963287353516,
+ "step": 1394
+ },
+ {
+ "epoch": 19.37745740498034,
+ "grad_norm": 0.2173967957496643,
+ "learning_rate": 0.0006,
+ "loss": 3.903940439224243,
+ "step": 1395
+ },
+ {
+ "epoch": 19.3914373088685,
+ "grad_norm": 0.2180529683828354,
+ "learning_rate": 0.0006,
+ "loss": 3.8716301918029785,
+ "step": 1396
+ },
+ {
+ "epoch": 19.405417212756664,
+ "grad_norm": 0.20666591823101044,
+ "learning_rate": 0.0006,
+ "loss": 3.930936813354492,
+ "step": 1397
+ },
+ {
+ "epoch": 19.419397116644824,
+ "grad_norm": 0.20353034138679504,
+ "learning_rate": 0.0006,
+ "loss": 3.926954746246338,
+ "step": 1398
+ },
+ {
+ "epoch": 19.433377020532983,
+ "grad_norm": 0.22333289682865143,
+ "learning_rate": 0.0006,
+ "loss": 3.947504997253418,
+ "step": 1399
+ },
+ {
+ "epoch": 19.447356924421143,
+ "grad_norm": 0.21787697076797485,
+ "learning_rate": 0.0006,
+ "loss": 3.9325344562530518,
+ "step": 1400
+ },
+ {
+ "epoch": 19.461336828309307,
+ "grad_norm": 0.22805874049663544,
+ "learning_rate": 0.0006,
+ "loss": 3.9640727043151855,
+ "step": 1401
+ },
+ {
+ "epoch": 19.475316732197467,
+ "grad_norm": 0.22396457195281982,
+ "learning_rate": 0.0006,
+ "loss": 3.9537901878356934,
+ "step": 1402
+ },
+ {
+ "epoch": 19.489296636085626,
+ "grad_norm": 0.2333047240972519,
+ "learning_rate": 0.0006,
+ "loss": 3.935609817504883,
+ "step": 1403
+ },
+ {
+ "epoch": 19.503276539973786,
+ "grad_norm": 0.25063616037368774,
+ "learning_rate": 0.0006,
+ "loss": 3.9659228324890137,
+ "step": 1404
+ },
+ {
+ "epoch": 19.51725644386195,
+ "grad_norm": 0.29074087738990784,
+ "learning_rate": 0.0006,
+ "loss": 3.9552183151245117,
+ "step": 1405
+ },
+ {
+ "epoch": 19.53123634775011,
+ "grad_norm": 0.34876152873039246,
+ "learning_rate": 0.0006,
+ "loss": 3.976163387298584,
+ "step": 1406
+ },
+ {
+ "epoch": 19.54521625163827,
+ "grad_norm": 0.35026612877845764,
+ "learning_rate": 0.0006,
+ "loss": 3.961186408996582,
+ "step": 1407
+ },
+ {
+ "epoch": 19.55919615552643,
+ "grad_norm": 0.3199564218521118,
+ "learning_rate": 0.0006,
+ "loss": 3.9366297721862793,
+ "step": 1408
+ },
+ {
+ "epoch": 19.573176059414592,
+ "grad_norm": 0.2976185977458954,
+ "learning_rate": 0.0006,
+ "loss": 3.9502010345458984,
+ "step": 1409
+ },
+ {
+ "epoch": 19.587155963302752,
+ "grad_norm": 0.2951911687850952,
+ "learning_rate": 0.0006,
+ "loss": 3.9427943229675293,
+ "step": 1410
+ },
+ {
+ "epoch": 19.601135867190912,
+ "grad_norm": 0.27918702363967896,
+ "learning_rate": 0.0006,
+ "loss": 3.963700532913208,
+ "step": 1411
+ },
+ {
+ "epoch": 19.615115771079076,
+ "grad_norm": 0.26197490096092224,
+ "learning_rate": 0.0006,
+ "loss": 3.9636964797973633,
+ "step": 1412
+ },
+ {
+ "epoch": 19.629095674967235,
+ "grad_norm": 0.24242281913757324,
+ "learning_rate": 0.0006,
+ "loss": 3.961815595626831,
+ "step": 1413
+ },
+ {
+ "epoch": 19.643075578855395,
+ "grad_norm": 0.2606375515460968,
+ "learning_rate": 0.0006,
+ "loss": 3.946643352508545,
+ "step": 1414
+ },
+ {
+ "epoch": 19.657055482743555,
+ "grad_norm": 0.23353353142738342,
+ "learning_rate": 0.0006,
+ "loss": 3.973155975341797,
+ "step": 1415
+ },
+ {
+ "epoch": 19.67103538663172,
+ "grad_norm": 0.22872662544250488,
+ "learning_rate": 0.0006,
+ "loss": 3.9528894424438477,
+ "step": 1416
+ },
+ {
+ "epoch": 19.68501529051988,
+ "grad_norm": 0.24678432941436768,
+ "learning_rate": 0.0006,
+ "loss": 3.9313249588012695,
+ "step": 1417
+ },
+ {
+ "epoch": 19.698995194408038,
+ "grad_norm": 0.23895515501499176,
+ "learning_rate": 0.0006,
+ "loss": 3.944082498550415,
+ "step": 1418
+ },
+ {
+ "epoch": 19.712975098296198,
+ "grad_norm": 0.23649105429649353,
+ "learning_rate": 0.0006,
+ "loss": 3.962069034576416,
+ "step": 1419
+ },
+ {
+ "epoch": 19.72695500218436,
+ "grad_norm": 0.22031061351299286,
+ "learning_rate": 0.0006,
+ "loss": 3.912972927093506,
+ "step": 1420
+ },
+ {
+ "epoch": 19.74093490607252,
+ "grad_norm": 0.20231695473194122,
+ "learning_rate": 0.0006,
+ "loss": 3.964531421661377,
+ "step": 1421
+ },
+ {
+ "epoch": 19.75491480996068,
+ "grad_norm": 0.19980913400650024,
+ "learning_rate": 0.0006,
+ "loss": 3.9452600479125977,
+ "step": 1422
+ },
+ {
+ "epoch": 19.76889471384884,
+ "grad_norm": 0.21768775582313538,
+ "learning_rate": 0.0006,
+ "loss": 3.9214301109313965,
+ "step": 1423
+ },
+ {
+ "epoch": 19.782874617737004,
+ "grad_norm": 0.21287119388580322,
+ "learning_rate": 0.0006,
+ "loss": 3.9416494369506836,
+ "step": 1424
+ },
+ {
+ "epoch": 19.796854521625164,
+ "grad_norm": 0.21399827301502228,
+ "learning_rate": 0.0006,
+ "loss": 3.971010208129883,
+ "step": 1425
+ },
+ {
+ "epoch": 19.810834425513324,
+ "grad_norm": 0.1957658976316452,
+ "learning_rate": 0.0006,
+ "loss": 3.936331272125244,
+ "step": 1426
+ },
+ {
+ "epoch": 19.824814329401484,
+ "grad_norm": 0.19341488182544708,
+ "learning_rate": 0.0006,
+ "loss": 3.9321448802948,
+ "step": 1427
+ },
+ {
+ "epoch": 19.838794233289647,
+ "grad_norm": 0.18405723571777344,
+ "learning_rate": 0.0006,
+ "loss": 3.939542293548584,
+ "step": 1428
+ },
+ {
+ "epoch": 19.852774137177807,
+ "grad_norm": 0.19672836363315582,
+ "learning_rate": 0.0006,
+ "loss": 3.939652919769287,
+ "step": 1429
+ },
+ {
+ "epoch": 19.866754041065967,
+ "grad_norm": 0.1998940259218216,
+ "learning_rate": 0.0006,
+ "loss": 3.932892322540283,
+ "step": 1430
+ },
+ {
+ "epoch": 19.88073394495413,
+ "grad_norm": 0.2307668924331665,
+ "learning_rate": 0.0006,
+ "loss": 3.9402761459350586,
+ "step": 1431
+ },
+ {
+ "epoch": 19.89471384884229,
+ "grad_norm": 0.2531987726688385,
+ "learning_rate": 0.0006,
+ "loss": 3.9153199195861816,
+ "step": 1432
+ },
+ {
+ "epoch": 19.90869375273045,
+ "grad_norm": 0.2299388349056244,
+ "learning_rate": 0.0006,
+ "loss": 3.9569954872131348,
+ "step": 1433
+ },
+ {
+ "epoch": 19.92267365661861,
+ "grad_norm": 0.2503527104854584,
+ "learning_rate": 0.0006,
+ "loss": 3.9469428062438965,
+ "step": 1434
+ },
+ {
+ "epoch": 19.936653560506773,
+ "grad_norm": 0.25390249490737915,
+ "learning_rate": 0.0006,
+ "loss": 3.941803455352783,
+ "step": 1435
+ },
+ {
+ "epoch": 19.950633464394933,
+ "grad_norm": 0.2288687825202942,
+ "learning_rate": 0.0006,
+ "loss": 3.9385883808135986,
+ "step": 1436
+ },
+ {
+ "epoch": 19.964613368283093,
+ "grad_norm": 0.2231096774339676,
+ "learning_rate": 0.0006,
+ "loss": 3.9255237579345703,
+ "step": 1437
+ },
+ {
+ "epoch": 19.978593272171253,
+ "grad_norm": 0.20729343593120575,
+ "learning_rate": 0.0006,
+ "loss": 3.9443163871765137,
+ "step": 1438
+ },
+ {
+ "epoch": 19.992573176059416,
+ "grad_norm": 0.197743758559227,
+ "learning_rate": 0.0006,
+ "loss": 3.925455093383789,
+ "step": 1439
+ },
+ {
+ "epoch": 20.0,
+ "grad_norm": 0.23943661153316498,
+ "learning_rate": 0.0006,
+ "loss": 3.9458866119384766,
+ "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/mask15-l2r50-fulle-lm/checkpoint-1440/training_args.bin b/runs/mask15-l2r50-fulle-lm/checkpoint-1440/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..43721c50815fe94f90cb043bf545b8f7bd9afc38
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-1440/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:a0b8d7bb9ac952b1abed3bd1e5c8f6ebd20daa957b3a85688954f8df03be6eb9
+size 4856
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-1728/chat_template.jinja b/runs/mask15-l2r50-fulle-lm/checkpoint-1728/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/mask15-l2r50-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/mask15-l2r50-fulle-lm/checkpoint-1728/config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-1728/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..1b4ac3c550d6003148026765eba4cb1512b216c9
--- /dev/null
+++ b/runs/mask15-l2r50-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": 151672
+}
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-1728/generation_config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-1728/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..5cd15fe1269fd505cfdefe9b3e9989dacd9f68f4
--- /dev/null
+++ b/runs/mask15-l2r50-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/mask15-l2r50-fulle-lm/checkpoint-1728/model.safetensors b/runs/mask15-l2r50-fulle-lm/checkpoint-1728/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..c54c3bf50c7b64f2ca22dd786c9a455906b51cfd
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-1728/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:5d7fe21321b9a2e332fb707e229b0fd86677d6dc010e6a5bf5e4e67c3ac30fe6
+size 583358280
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-1728/optimizer.pt b/runs/mask15-l2r50-fulle-lm/checkpoint-1728/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..4814b4a5c26d04a513204e92f2d6875e89580166
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-1728/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:bf45b369cd06c5415ca0c324a7ec3e0764bac2e2e43ed7058b23bd344a2135eb
+size 1166829434
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-1728/rng_state_0.pth b/runs/mask15-l2r50-fulle-lm/checkpoint-1728/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..f48bc5d63456a65045b4c96cbb8bfe8130565a7a
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-1728/rng_state_0.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:fc03a0f89ba480ef3e0cbd78c2cc20c03cc572f3c197ddc3a53ec02f1efa3c54
+size 14512
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-1728/rng_state_1.pth b/runs/mask15-l2r50-fulle-lm/checkpoint-1728/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..0e2c559add41d8ff582dc2c72f9dcbdfeeccfa22
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-1728/rng_state_1.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:85389c904bb70623ac38d271e5b75510f6721cf5d170dabaaae0f767c83fcab7
+size 14512
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-1728/scheduler.pt b/runs/mask15-l2r50-fulle-lm/checkpoint-1728/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..baba916c0cec91178026a4cf9d1f610779561fa9
--- /dev/null
+++ b/runs/mask15-l2r50-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/mask15-l2r50-fulle-lm/checkpoint-1728/tokenizer.json b/runs/mask15-l2r50-fulle-lm/checkpoint-1728/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..6226bf25372d1a86dbd704ec75d2129960f1ba88
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-1728/tokenizer.json
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:9245fe3cb2d40f9ed8d5d8ddd1d58701ba2a236beec08f656162281673f30560
+size 11424264
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-1728/tokenizer_config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-1728/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..01bc9676576e8cf62a08a9db166d6c5bab1d6727
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-1728/tokenizer_config.json
@@ -0,0 +1,20 @@
+{
+ "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|>",
+ "<|mask|>"
+ ],
+ "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/mask15-l2r50-fulle-lm/checkpoint-1728/trainer_state.json b/runs/mask15-l2r50-fulle-lm/checkpoint-1728/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..8a4e572f9dda9431dea6bde1dc71361c570a84bb
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-1728/trainer_state.json
@@ -0,0 +1,12314 @@
+{
+ "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": 9.807971954345703,
+ "learning_rate": 0.0,
+ "loss": 11.989814758300781,
+ "step": 1
+ },
+ {
+ "epoch": 0.027959807776321538,
+ "grad_norm": 9.834383010864258,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 11.993022918701172,
+ "step": 2
+ },
+ {
+ "epoch": 0.04193971166448231,
+ "grad_norm": 9.482470512390137,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 11.854345321655273,
+ "step": 3
+ },
+ {
+ "epoch": 0.055919615552643076,
+ "grad_norm": 7.678808689117432,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 11.618255615234375,
+ "step": 4
+ },
+ {
+ "epoch": 0.06989951944080385,
+ "grad_norm": 6.011275291442871,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 11.351423263549805,
+ "step": 5
+ },
+ {
+ "epoch": 0.08387942332896461,
+ "grad_norm": 5.244393825531006,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 11.128631591796875,
+ "step": 6
+ },
+ {
+ "epoch": 0.09785932721712538,
+ "grad_norm": 4.577618598937988,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 10.921937942504883,
+ "step": 7
+ },
+ {
+ "epoch": 0.11183923110528615,
+ "grad_norm": 4.03810453414917,
+ "learning_rate": 4.2e-05,
+ "loss": 10.742650985717773,
+ "step": 8
+ },
+ {
+ "epoch": 0.1258191349934469,
+ "grad_norm": 3.657679796218872,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 10.600778579711914,
+ "step": 9
+ },
+ {
+ "epoch": 0.1397990388816077,
+ "grad_norm": 3.352902889251709,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 10.489639282226562,
+ "step": 10
+ },
+ {
+ "epoch": 0.15377894276976845,
+ "grad_norm": 3.1162633895874023,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 10.417770385742188,
+ "step": 11
+ },
+ {
+ "epoch": 0.16775884665792923,
+ "grad_norm": 3.0402638912200928,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 10.35334587097168,
+ "step": 12
+ },
+ {
+ "epoch": 0.18173875054608998,
+ "grad_norm": 3.030630111694336,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 10.306867599487305,
+ "step": 13
+ },
+ {
+ "epoch": 0.19571865443425077,
+ "grad_norm": 3.035292148590088,
+ "learning_rate": 7.8e-05,
+ "loss": 10.26003646850586,
+ "step": 14
+ },
+ {
+ "epoch": 0.20969855832241152,
+ "grad_norm": 3.0125675201416016,
+ "learning_rate": 8.4e-05,
+ "loss": 10.219265937805176,
+ "step": 15
+ },
+ {
+ "epoch": 0.2236784622105723,
+ "grad_norm": 2.9998886585235596,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 10.161077499389648,
+ "step": 16
+ },
+ {
+ "epoch": 0.23765836609873306,
+ "grad_norm": 2.9411966800689697,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 10.107423782348633,
+ "step": 17
+ },
+ {
+ "epoch": 0.2516382699868938,
+ "grad_norm": 2.88081955909729,
+ "learning_rate": 0.000102,
+ "loss": 10.04700756072998,
+ "step": 18
+ },
+ {
+ "epoch": 0.2656181738750546,
+ "grad_norm": 2.8219687938690186,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 9.981185913085938,
+ "step": 19
+ },
+ {
+ "epoch": 0.2795980777632154,
+ "grad_norm": 2.79306960105896,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 9.89747142791748,
+ "step": 20
+ },
+ {
+ "epoch": 0.29357798165137616,
+ "grad_norm": 2.7314443588256836,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 9.829219818115234,
+ "step": 21
+ },
+ {
+ "epoch": 0.3075578855395369,
+ "grad_norm": 2.6923747062683105,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 9.747566223144531,
+ "step": 22
+ },
+ {
+ "epoch": 0.3215377894276977,
+ "grad_norm": 2.650602340698242,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 9.66455078125,
+ "step": 23
+ },
+ {
+ "epoch": 0.33551769331585846,
+ "grad_norm": 2.606977701187134,
+ "learning_rate": 0.000138,
+ "loss": 9.582326889038086,
+ "step": 24
+ },
+ {
+ "epoch": 0.34949759720401924,
+ "grad_norm": 2.567256212234497,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 9.492591857910156,
+ "step": 25
+ },
+ {
+ "epoch": 0.36347750109217997,
+ "grad_norm": 2.520740509033203,
+ "learning_rate": 0.00015,
+ "loss": 9.396563529968262,
+ "step": 26
+ },
+ {
+ "epoch": 0.37745740498034075,
+ "grad_norm": 2.471588611602783,
+ "learning_rate": 0.000156,
+ "loss": 9.303571701049805,
+ "step": 27
+ },
+ {
+ "epoch": 0.39143730886850153,
+ "grad_norm": 2.4341530799865723,
+ "learning_rate": 0.000162,
+ "loss": 9.191819190979004,
+ "step": 28
+ },
+ {
+ "epoch": 0.4054172127566623,
+ "grad_norm": 2.369244337081909,
+ "learning_rate": 0.000168,
+ "loss": 9.092012405395508,
+ "step": 29
+ },
+ {
+ "epoch": 0.41939711664482304,
+ "grad_norm": 2.28625226020813,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 8.984567642211914,
+ "step": 30
+ },
+ {
+ "epoch": 0.4333770205329838,
+ "grad_norm": 2.2082231044769287,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 8.889009475708008,
+ "step": 31
+ },
+ {
+ "epoch": 0.4473569244211446,
+ "grad_norm": 2.1429483890533447,
+ "learning_rate": 0.000186,
+ "loss": 8.778556823730469,
+ "step": 32
+ },
+ {
+ "epoch": 0.4613368283093054,
+ "grad_norm": 2.0937352180480957,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 8.661166191101074,
+ "step": 33
+ },
+ {
+ "epoch": 0.4753167321974661,
+ "grad_norm": 2.040790557861328,
+ "learning_rate": 0.000198,
+ "loss": 8.550382614135742,
+ "step": 34
+ },
+ {
+ "epoch": 0.4892966360856269,
+ "grad_norm": 1.93914794921875,
+ "learning_rate": 0.000204,
+ "loss": 8.463907241821289,
+ "step": 35
+ },
+ {
+ "epoch": 0.5032765399737876,
+ "grad_norm": 1.8624178171157837,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 8.3438720703125,
+ "step": 36
+ },
+ {
+ "epoch": 0.5172564438619485,
+ "grad_norm": 1.8107167482376099,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 8.21871566772461,
+ "step": 37
+ },
+ {
+ "epoch": 0.5312363477501092,
+ "grad_norm": 1.717979073524475,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 8.113494873046875,
+ "step": 38
+ },
+ {
+ "epoch": 0.54521625163827,
+ "grad_norm": 1.668742060661316,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 8.006099700927734,
+ "step": 39
+ },
+ {
+ "epoch": 0.5591961555264308,
+ "grad_norm": 1.6147786378860474,
+ "learning_rate": 0.000234,
+ "loss": 7.911509037017822,
+ "step": 40
+ },
+ {
+ "epoch": 0.5731760594145915,
+ "grad_norm": 1.535750150680542,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 7.822839736938477,
+ "step": 41
+ },
+ {
+ "epoch": 0.5871559633027523,
+ "grad_norm": 1.4700065851211548,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 7.713842868804932,
+ "step": 42
+ },
+ {
+ "epoch": 0.601135867190913,
+ "grad_norm": 1.39020574092865,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 7.6040191650390625,
+ "step": 43
+ },
+ {
+ "epoch": 0.6151157710790738,
+ "grad_norm": 1.2875399589538574,
+ "learning_rate": 0.000258,
+ "loss": 7.550642013549805,
+ "step": 44
+ },
+ {
+ "epoch": 0.6290956749672346,
+ "grad_norm": 1.2094247341156006,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 7.460824012756348,
+ "step": 45
+ },
+ {
+ "epoch": 0.6430755788553953,
+ "grad_norm": 1.126452088356018,
+ "learning_rate": 0.00027,
+ "loss": 7.380537986755371,
+ "step": 46
+ },
+ {
+ "epoch": 0.6570554827435562,
+ "grad_norm": 1.0313163995742798,
+ "learning_rate": 0.000276,
+ "loss": 7.286153793334961,
+ "step": 47
+ },
+ {
+ "epoch": 0.6710353866317169,
+ "grad_norm": 0.9172859787940979,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 7.2064714431762695,
+ "step": 48
+ },
+ {
+ "epoch": 0.6850152905198776,
+ "grad_norm": 0.8148201107978821,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 7.158207416534424,
+ "step": 49
+ },
+ {
+ "epoch": 0.6989951944080385,
+ "grad_norm": 0.650123119354248,
+ "learning_rate": 0.000294,
+ "loss": 7.108791828155518,
+ "step": 50
+ },
+ {
+ "epoch": 0.7129750982961992,
+ "grad_norm": 0.5437585711479187,
+ "learning_rate": 0.0003,
+ "loss": 7.083050727844238,
+ "step": 51
+ },
+ {
+ "epoch": 0.7269550021843599,
+ "grad_norm": 0.46762895584106445,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 7.058027267456055,
+ "step": 52
+ },
+ {
+ "epoch": 0.7409349060725208,
+ "grad_norm": 0.47947561740875244,
+ "learning_rate": 0.000312,
+ "loss": 7.015172958374023,
+ "step": 53
+ },
+ {
+ "epoch": 0.7549148099606815,
+ "grad_norm": 0.7546492218971252,
+ "learning_rate": 0.000318,
+ "loss": 7.024629592895508,
+ "step": 54
+ },
+ {
+ "epoch": 0.7688947138488423,
+ "grad_norm": 0.6153718829154968,
+ "learning_rate": 0.000324,
+ "loss": 7.026667594909668,
+ "step": 55
+ },
+ {
+ "epoch": 0.7828746177370031,
+ "grad_norm": 0.3359069228172302,
+ "learning_rate": 0.00033,
+ "loss": 7.008166313171387,
+ "step": 56
+ },
+ {
+ "epoch": 0.7968545216251638,
+ "grad_norm": 0.48906823992729187,
+ "learning_rate": 0.000336,
+ "loss": 7.019716262817383,
+ "step": 57
+ },
+ {
+ "epoch": 0.8108344255133246,
+ "grad_norm": 0.5525421500205994,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 7.02108097076416,
+ "step": 58
+ },
+ {
+ "epoch": 0.8248143294014854,
+ "grad_norm": 0.3103712201118469,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 7.003164768218994,
+ "step": 59
+ },
+ {
+ "epoch": 0.8387942332896461,
+ "grad_norm": 0.4431874752044678,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 7.003463268280029,
+ "step": 60
+ },
+ {
+ "epoch": 0.8527741371778069,
+ "grad_norm": 0.4291120767593384,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 6.96931791305542,
+ "step": 61
+ },
+ {
+ "epoch": 0.8667540410659677,
+ "grad_norm": 0.6566054224967957,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 6.989445686340332,
+ "step": 62
+ },
+ {
+ "epoch": 0.8807339449541285,
+ "grad_norm": 0.20663189888000488,
+ "learning_rate": 0.000372,
+ "loss": 6.9669342041015625,
+ "step": 63
+ },
+ {
+ "epoch": 0.8947138488422892,
+ "grad_norm": 0.6242535710334778,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 6.949883460998535,
+ "step": 64
+ },
+ {
+ "epoch": 0.9086937527304499,
+ "grad_norm": 0.6984224915504456,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 6.955153465270996,
+ "step": 65
+ },
+ {
+ "epoch": 0.9226736566186108,
+ "grad_norm": 0.6328083872795105,
+ "learning_rate": 0.00039,
+ "loss": 6.965421676635742,
+ "step": 66
+ },
+ {
+ "epoch": 0.9366535605067715,
+ "grad_norm": 1.213352918624878,
+ "learning_rate": 0.000396,
+ "loss": 6.9454345703125,
+ "step": 67
+ },
+ {
+ "epoch": 0.9506334643949322,
+ "grad_norm": 0.9221940636634827,
+ "learning_rate": 0.000402,
+ "loss": 6.923908233642578,
+ "step": 68
+ },
+ {
+ "epoch": 0.9646133682830931,
+ "grad_norm": 0.6825450658798218,
+ "learning_rate": 0.000408,
+ "loss": 6.910131454467773,
+ "step": 69
+ },
+ {
+ "epoch": 0.9785932721712538,
+ "grad_norm": 0.5690162181854248,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 6.89891242980957,
+ "step": 70
+ },
+ {
+ "epoch": 0.9925731760594146,
+ "grad_norm": 0.4320870041847229,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 6.896081924438477,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.31632405519485474,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 6.897444725036621,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 7.757839679718018,
+ "eval_runtime": 43.8338,
+ "eval_samples_per_second": 55.71,
+ "eval_steps_per_second": 3.49,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139799038881607,
+ "grad_norm": 0.3789916932582855,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 6.877245903015137,
+ "step": 73
+ },
+ {
+ "epoch": 1.0279598077763215,
+ "grad_norm": 0.9167932868003845,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 6.921600341796875,
+ "step": 74
+ },
+ {
+ "epoch": 1.0419397116644824,
+ "grad_norm": 0.581188440322876,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 6.861001968383789,
+ "step": 75
+ },
+ {
+ "epoch": 1.0559196155526431,
+ "grad_norm": 0.4179714024066925,
+ "learning_rate": 0.00045,
+ "loss": 6.875657081604004,
+ "step": 76
+ },
+ {
+ "epoch": 1.0698995194408039,
+ "grad_norm": 1.0669957399368286,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 6.857122421264648,
+ "step": 77
+ },
+ {
+ "epoch": 1.0838794233289646,
+ "grad_norm": 0.27855145931243896,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 6.828852653503418,
+ "step": 78
+ },
+ {
+ "epoch": 1.0978593272171253,
+ "grad_norm": 0.7192047834396362,
+ "learning_rate": 0.000468,
+ "loss": 6.870839595794678,
+ "step": 79
+ },
+ {
+ "epoch": 1.1118392311052863,
+ "grad_norm": 0.5583325624465942,
+ "learning_rate": 0.000474,
+ "loss": 6.8497514724731445,
+ "step": 80
+ },
+ {
+ "epoch": 1.125819134993447,
+ "grad_norm": 0.3001925051212311,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 6.858528137207031,
+ "step": 81
+ },
+ {
+ "epoch": 1.1397990388816077,
+ "grad_norm": 0.2408239096403122,
+ "learning_rate": 0.000486,
+ "loss": 6.83231258392334,
+ "step": 82
+ },
+ {
+ "epoch": 1.1537789427697684,
+ "grad_norm": 0.28230324387550354,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 6.815476894378662,
+ "step": 83
+ },
+ {
+ "epoch": 1.1677588466579292,
+ "grad_norm": 0.3247123658657074,
+ "learning_rate": 0.000498,
+ "loss": 6.780126094818115,
+ "step": 84
+ },
+ {
+ "epoch": 1.18173875054609,
+ "grad_norm": 0.25713011622428894,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 6.7798309326171875,
+ "step": 85
+ },
+ {
+ "epoch": 1.1957186544342508,
+ "grad_norm": 0.5386835932731628,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 6.791745185852051,
+ "step": 86
+ },
+ {
+ "epoch": 1.2096985583224116,
+ "grad_norm": 0.2226393222808838,
+ "learning_rate": 0.000516,
+ "loss": 6.7826972007751465,
+ "step": 87
+ },
+ {
+ "epoch": 1.2236784622105723,
+ "grad_norm": 0.4338362216949463,
+ "learning_rate": 0.000522,
+ "loss": 6.805043697357178,
+ "step": 88
+ },
+ {
+ "epoch": 1.237658366098733,
+ "grad_norm": 0.2953208386898041,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 6.768434524536133,
+ "step": 89
+ },
+ {
+ "epoch": 1.2516382699868938,
+ "grad_norm": 0.13453717529773712,
+ "learning_rate": 0.000534,
+ "loss": 6.773697376251221,
+ "step": 90
+ },
+ {
+ "epoch": 1.2656181738750547,
+ "grad_norm": 0.35774412751197815,
+ "learning_rate": 0.00054,
+ "loss": 6.766414642333984,
+ "step": 91
+ },
+ {
+ "epoch": 1.2795980777632154,
+ "grad_norm": 0.4669720530509949,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 6.754847526550293,
+ "step": 92
+ },
+ {
+ "epoch": 1.2935779816513762,
+ "grad_norm": 0.13806621730327606,
+ "learning_rate": 0.000552,
+ "loss": 6.746858596801758,
+ "step": 93
+ },
+ {
+ "epoch": 1.307557885539537,
+ "grad_norm": 0.3280332386493683,
+ "learning_rate": 0.000558,
+ "loss": 6.715662956237793,
+ "step": 94
+ },
+ {
+ "epoch": 1.3215377894276976,
+ "grad_norm": 0.4689937233924866,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 6.734938144683838,
+ "step": 95
+ },
+ {
+ "epoch": 1.3355176933158583,
+ "grad_norm": 0.35371264815330505,
+ "learning_rate": 0.00057,
+ "loss": 6.748386383056641,
+ "step": 96
+ },
+ {
+ "epoch": 1.3494975972040193,
+ "grad_norm": 0.15232303738594055,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 6.705557823181152,
+ "step": 97
+ },
+ {
+ "epoch": 1.36347750109218,
+ "grad_norm": 0.30132821202278137,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 6.7199859619140625,
+ "step": 98
+ },
+ {
+ "epoch": 1.3774574049803407,
+ "grad_norm": 0.42174842953681946,
+ "learning_rate": 0.000588,
+ "loss": 6.715370178222656,
+ "step": 99
+ },
+ {
+ "epoch": 1.3914373088685015,
+ "grad_norm": 0.6257228851318359,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 6.707026958465576,
+ "step": 100
+ },
+ {
+ "epoch": 1.4054172127566624,
+ "grad_norm": 0.4551195800304413,
+ "learning_rate": 0.0006,
+ "loss": 6.7078423500061035,
+ "step": 101
+ },
+ {
+ "epoch": 1.4193971166448232,
+ "grad_norm": 0.41940346360206604,
+ "learning_rate": 0.0006,
+ "loss": 6.6959357261657715,
+ "step": 102
+ },
+ {
+ "epoch": 1.4333770205329839,
+ "grad_norm": 0.32251718640327454,
+ "learning_rate": 0.0006,
+ "loss": 6.689168930053711,
+ "step": 103
+ },
+ {
+ "epoch": 1.4473569244211446,
+ "grad_norm": 0.2992720305919647,
+ "learning_rate": 0.0006,
+ "loss": 6.680738925933838,
+ "step": 104
+ },
+ {
+ "epoch": 1.4613368283093053,
+ "grad_norm": 0.3228456974029541,
+ "learning_rate": 0.0006,
+ "loss": 6.672350883483887,
+ "step": 105
+ },
+ {
+ "epoch": 1.475316732197466,
+ "grad_norm": 0.24954743683338165,
+ "learning_rate": 0.0006,
+ "loss": 6.653716087341309,
+ "step": 106
+ },
+ {
+ "epoch": 1.4892966360856268,
+ "grad_norm": 0.30740687251091003,
+ "learning_rate": 0.0006,
+ "loss": 6.676583290100098,
+ "step": 107
+ },
+ {
+ "epoch": 1.5032765399737875,
+ "grad_norm": 0.24950599670410156,
+ "learning_rate": 0.0006,
+ "loss": 6.656691551208496,
+ "step": 108
+ },
+ {
+ "epoch": 1.5172564438619485,
+ "grad_norm": 0.24293005466461182,
+ "learning_rate": 0.0006,
+ "loss": 6.640995979309082,
+ "step": 109
+ },
+ {
+ "epoch": 1.5312363477501092,
+ "grad_norm": 0.30167272686958313,
+ "learning_rate": 0.0006,
+ "loss": 6.647380352020264,
+ "step": 110
+ },
+ {
+ "epoch": 1.5452162516382701,
+ "grad_norm": 0.4424632787704468,
+ "learning_rate": 0.0006,
+ "loss": 6.6548261642456055,
+ "step": 111
+ },
+ {
+ "epoch": 1.5591961555264309,
+ "grad_norm": 0.5295748114585876,
+ "learning_rate": 0.0006,
+ "loss": 6.64370059967041,
+ "step": 112
+ },
+ {
+ "epoch": 1.5731760594145916,
+ "grad_norm": 0.6829339265823364,
+ "learning_rate": 0.0006,
+ "loss": 6.654196739196777,
+ "step": 113
+ },
+ {
+ "epoch": 1.5871559633027523,
+ "grad_norm": 0.6534460186958313,
+ "learning_rate": 0.0006,
+ "loss": 6.675765037536621,
+ "step": 114
+ },
+ {
+ "epoch": 1.601135867190913,
+ "grad_norm": 0.6172244548797607,
+ "learning_rate": 0.0006,
+ "loss": 6.631234169006348,
+ "step": 115
+ },
+ {
+ "epoch": 1.6151157710790738,
+ "grad_norm": 0.5650008320808411,
+ "learning_rate": 0.0006,
+ "loss": 6.654262542724609,
+ "step": 116
+ },
+ {
+ "epoch": 1.6290956749672345,
+ "grad_norm": 0.3890475928783417,
+ "learning_rate": 0.0006,
+ "loss": 6.627526760101318,
+ "step": 117
+ },
+ {
+ "epoch": 1.6430755788553952,
+ "grad_norm": 0.6409873366355896,
+ "learning_rate": 0.0006,
+ "loss": 6.619794845581055,
+ "step": 118
+ },
+ {
+ "epoch": 1.6570554827435562,
+ "grad_norm": 0.5052326321601868,
+ "learning_rate": 0.0006,
+ "loss": 6.612556457519531,
+ "step": 119
+ },
+ {
+ "epoch": 1.671035386631717,
+ "grad_norm": 0.5001237988471985,
+ "learning_rate": 0.0006,
+ "loss": 6.577266693115234,
+ "step": 120
+ },
+ {
+ "epoch": 1.6850152905198776,
+ "grad_norm": 0.5328938364982605,
+ "learning_rate": 0.0006,
+ "loss": 6.59553337097168,
+ "step": 121
+ },
+ {
+ "epoch": 1.6989951944080386,
+ "grad_norm": 0.3568951189517975,
+ "learning_rate": 0.0006,
+ "loss": 6.602717399597168,
+ "step": 122
+ },
+ {
+ "epoch": 1.7129750982961993,
+ "grad_norm": 0.4017309546470642,
+ "learning_rate": 0.0006,
+ "loss": 6.589657783508301,
+ "step": 123
+ },
+ {
+ "epoch": 1.72695500218436,
+ "grad_norm": 0.21432629227638245,
+ "learning_rate": 0.0006,
+ "loss": 6.586555480957031,
+ "step": 124
+ },
+ {
+ "epoch": 1.7409349060725208,
+ "grad_norm": 0.21038052439689636,
+ "learning_rate": 0.0006,
+ "loss": 6.576569557189941,
+ "step": 125
+ },
+ {
+ "epoch": 1.7549148099606815,
+ "grad_norm": 0.23074904084205627,
+ "learning_rate": 0.0006,
+ "loss": 6.5880632400512695,
+ "step": 126
+ },
+ {
+ "epoch": 1.7688947138488422,
+ "grad_norm": 0.42963048815727234,
+ "learning_rate": 0.0006,
+ "loss": 6.603862762451172,
+ "step": 127
+ },
+ {
+ "epoch": 1.782874617737003,
+ "grad_norm": 0.361331045627594,
+ "learning_rate": 0.0006,
+ "loss": 6.579834938049316,
+ "step": 128
+ },
+ {
+ "epoch": 1.7968545216251637,
+ "grad_norm": 0.4951060712337494,
+ "learning_rate": 0.0006,
+ "loss": 6.570443630218506,
+ "step": 129
+ },
+ {
+ "epoch": 1.8108344255133246,
+ "grad_norm": 0.2258434295654297,
+ "learning_rate": 0.0006,
+ "loss": 6.5664777755737305,
+ "step": 130
+ },
+ {
+ "epoch": 1.8248143294014854,
+ "grad_norm": 0.2922155559062958,
+ "learning_rate": 0.0006,
+ "loss": 6.561326503753662,
+ "step": 131
+ },
+ {
+ "epoch": 1.838794233289646,
+ "grad_norm": 0.19068220257759094,
+ "learning_rate": 0.0006,
+ "loss": 6.528727054595947,
+ "step": 132
+ },
+ {
+ "epoch": 1.852774137177807,
+ "grad_norm": 0.2122010439634323,
+ "learning_rate": 0.0006,
+ "loss": 6.535636901855469,
+ "step": 133
+ },
+ {
+ "epoch": 1.8667540410659678,
+ "grad_norm": 0.25760164856910706,
+ "learning_rate": 0.0006,
+ "loss": 6.530498504638672,
+ "step": 134
+ },
+ {
+ "epoch": 1.8807339449541285,
+ "grad_norm": 0.1761016845703125,
+ "learning_rate": 0.0006,
+ "loss": 6.514466285705566,
+ "step": 135
+ },
+ {
+ "epoch": 1.8947138488422892,
+ "grad_norm": 0.2250051498413086,
+ "learning_rate": 0.0006,
+ "loss": 6.521268844604492,
+ "step": 136
+ },
+ {
+ "epoch": 1.90869375273045,
+ "grad_norm": 0.34458497166633606,
+ "learning_rate": 0.0006,
+ "loss": 6.512831687927246,
+ "step": 137
+ },
+ {
+ "epoch": 1.9226736566186107,
+ "grad_norm": 0.3468617796897888,
+ "learning_rate": 0.0006,
+ "loss": 6.515641689300537,
+ "step": 138
+ },
+ {
+ "epoch": 1.9366535605067714,
+ "grad_norm": 0.5051495432853699,
+ "learning_rate": 0.0006,
+ "loss": 6.5147905349731445,
+ "step": 139
+ },
+ {
+ "epoch": 1.9506334643949321,
+ "grad_norm": 0.7106727361679077,
+ "learning_rate": 0.0006,
+ "loss": 6.519277572631836,
+ "step": 140
+ },
+ {
+ "epoch": 1.964613368283093,
+ "grad_norm": 0.8881394267082214,
+ "learning_rate": 0.0006,
+ "loss": 6.526865482330322,
+ "step": 141
+ },
+ {
+ "epoch": 1.9785932721712538,
+ "grad_norm": 0.5552834272384644,
+ "learning_rate": 0.0006,
+ "loss": 6.469970226287842,
+ "step": 142
+ },
+ {
+ "epoch": 1.9925731760594148,
+ "grad_norm": 0.6903126835823059,
+ "learning_rate": 0.0006,
+ "loss": 6.476300239562988,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.47679027915000916,
+ "learning_rate": 0.0006,
+ "loss": 6.463827133178711,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 7.388528823852539,
+ "eval_runtime": 44.2519,
+ "eval_samples_per_second": 55.184,
+ "eval_steps_per_second": 3.457,
+ "step": 144
+ },
+ {
+ "epoch": 2.0139799038881607,
+ "grad_norm": 0.4719221293926239,
+ "learning_rate": 0.0006,
+ "loss": 6.480956077575684,
+ "step": 145
+ },
+ {
+ "epoch": 2.0279598077763215,
+ "grad_norm": 0.41137924790382385,
+ "learning_rate": 0.0006,
+ "loss": 6.449707984924316,
+ "step": 146
+ },
+ {
+ "epoch": 2.041939711664482,
+ "grad_norm": 0.4237765371799469,
+ "learning_rate": 0.0006,
+ "loss": 6.467435836791992,
+ "step": 147
+ },
+ {
+ "epoch": 2.055919615552643,
+ "grad_norm": 0.44081810116767883,
+ "learning_rate": 0.0006,
+ "loss": 6.436868667602539,
+ "step": 148
+ },
+ {
+ "epoch": 2.0698995194408036,
+ "grad_norm": 0.4163798391819,
+ "learning_rate": 0.0006,
+ "loss": 6.4642014503479,
+ "step": 149
+ },
+ {
+ "epoch": 2.083879423328965,
+ "grad_norm": 0.3831583261489868,
+ "learning_rate": 0.0006,
+ "loss": 6.454092025756836,
+ "step": 150
+ },
+ {
+ "epoch": 2.0978593272171255,
+ "grad_norm": 0.37721413373947144,
+ "learning_rate": 0.0006,
+ "loss": 6.426377296447754,
+ "step": 151
+ },
+ {
+ "epoch": 2.1118392311052863,
+ "grad_norm": 0.3323550224304199,
+ "learning_rate": 0.0006,
+ "loss": 6.421375274658203,
+ "step": 152
+ },
+ {
+ "epoch": 2.125819134993447,
+ "grad_norm": 0.47739624977111816,
+ "learning_rate": 0.0006,
+ "loss": 6.412004470825195,
+ "step": 153
+ },
+ {
+ "epoch": 2.1397990388816077,
+ "grad_norm": 0.8530274629592896,
+ "learning_rate": 0.0006,
+ "loss": 6.410468578338623,
+ "step": 154
+ },
+ {
+ "epoch": 2.1537789427697684,
+ "grad_norm": 0.6420364379882812,
+ "learning_rate": 0.0006,
+ "loss": 6.413525581359863,
+ "step": 155
+ },
+ {
+ "epoch": 2.167758846657929,
+ "grad_norm": 0.5005049109458923,
+ "learning_rate": 0.0006,
+ "loss": 6.401463508605957,
+ "step": 156
+ },
+ {
+ "epoch": 2.18173875054609,
+ "grad_norm": 0.3614683449268341,
+ "learning_rate": 0.0006,
+ "loss": 6.390063285827637,
+ "step": 157
+ },
+ {
+ "epoch": 2.1957186544342506,
+ "grad_norm": 0.595215380191803,
+ "learning_rate": 0.0006,
+ "loss": 6.369806289672852,
+ "step": 158
+ },
+ {
+ "epoch": 2.2096985583224114,
+ "grad_norm": 0.5700321793556213,
+ "learning_rate": 0.0006,
+ "loss": 6.368378639221191,
+ "step": 159
+ },
+ {
+ "epoch": 2.2236784622105725,
+ "grad_norm": 0.36273983120918274,
+ "learning_rate": 0.0006,
+ "loss": 6.366860389709473,
+ "step": 160
+ },
+ {
+ "epoch": 2.2376583660987333,
+ "grad_norm": 0.2850998342037201,
+ "learning_rate": 0.0006,
+ "loss": 6.352144718170166,
+ "step": 161
+ },
+ {
+ "epoch": 2.251638269986894,
+ "grad_norm": 0.38558584451675415,
+ "learning_rate": 0.0006,
+ "loss": 6.375765800476074,
+ "step": 162
+ },
+ {
+ "epoch": 2.2656181738750547,
+ "grad_norm": 0.34809231758117676,
+ "learning_rate": 0.0006,
+ "loss": 6.350445747375488,
+ "step": 163
+ },
+ {
+ "epoch": 2.2795980777632154,
+ "grad_norm": 0.5211818814277649,
+ "learning_rate": 0.0006,
+ "loss": 6.354585647583008,
+ "step": 164
+ },
+ {
+ "epoch": 2.293577981651376,
+ "grad_norm": 1.0809133052825928,
+ "learning_rate": 0.0006,
+ "loss": 6.3752007484436035,
+ "step": 165
+ },
+ {
+ "epoch": 2.307557885539537,
+ "grad_norm": 0.8293641209602356,
+ "learning_rate": 0.0006,
+ "loss": 6.35113525390625,
+ "step": 166
+ },
+ {
+ "epoch": 2.3215377894276976,
+ "grad_norm": 0.3428577780723572,
+ "learning_rate": 0.0006,
+ "loss": 6.334470748901367,
+ "step": 167
+ },
+ {
+ "epoch": 2.3355176933158583,
+ "grad_norm": 0.7587600946426392,
+ "learning_rate": 0.0006,
+ "loss": 6.353979587554932,
+ "step": 168
+ },
+ {
+ "epoch": 2.349497597204019,
+ "grad_norm": 0.4227249026298523,
+ "learning_rate": 0.0006,
+ "loss": 6.34018611907959,
+ "step": 169
+ },
+ {
+ "epoch": 2.36347750109218,
+ "grad_norm": 0.4226846694946289,
+ "learning_rate": 0.0006,
+ "loss": 6.290019989013672,
+ "step": 170
+ },
+ {
+ "epoch": 2.3774574049803405,
+ "grad_norm": 0.38412365317344666,
+ "learning_rate": 0.0006,
+ "loss": 6.309510231018066,
+ "step": 171
+ },
+ {
+ "epoch": 2.3914373088685017,
+ "grad_norm": 0.45698508620262146,
+ "learning_rate": 0.0006,
+ "loss": 6.283290863037109,
+ "step": 172
+ },
+ {
+ "epoch": 2.4054172127566624,
+ "grad_norm": 0.7575915455818176,
+ "learning_rate": 0.0006,
+ "loss": 6.306073188781738,
+ "step": 173
+ },
+ {
+ "epoch": 2.419397116644823,
+ "grad_norm": 0.695123553276062,
+ "learning_rate": 0.0006,
+ "loss": 6.308144569396973,
+ "step": 174
+ },
+ {
+ "epoch": 2.433377020532984,
+ "grad_norm": 0.5035743117332458,
+ "learning_rate": 0.0006,
+ "loss": 6.282073974609375,
+ "step": 175
+ },
+ {
+ "epoch": 2.4473569244211446,
+ "grad_norm": 0.3158020079135895,
+ "learning_rate": 0.0006,
+ "loss": 6.282169342041016,
+ "step": 176
+ },
+ {
+ "epoch": 2.4613368283093053,
+ "grad_norm": 0.4829689860343933,
+ "learning_rate": 0.0006,
+ "loss": 6.264578819274902,
+ "step": 177
+ },
+ {
+ "epoch": 2.475316732197466,
+ "grad_norm": 0.3992770314216614,
+ "learning_rate": 0.0006,
+ "loss": 6.228628158569336,
+ "step": 178
+ },
+ {
+ "epoch": 2.489296636085627,
+ "grad_norm": 0.40887606143951416,
+ "learning_rate": 0.0006,
+ "loss": 6.230792045593262,
+ "step": 179
+ },
+ {
+ "epoch": 2.5032765399737875,
+ "grad_norm": 0.3540310263633728,
+ "learning_rate": 0.0006,
+ "loss": 6.222573280334473,
+ "step": 180
+ },
+ {
+ "epoch": 2.5172564438619487,
+ "grad_norm": 0.496219664812088,
+ "learning_rate": 0.0006,
+ "loss": 6.212109565734863,
+ "step": 181
+ },
+ {
+ "epoch": 2.5312363477501094,
+ "grad_norm": 0.435173898935318,
+ "learning_rate": 0.0006,
+ "loss": 6.221210479736328,
+ "step": 182
+ },
+ {
+ "epoch": 2.54521625163827,
+ "grad_norm": 0.5364007949829102,
+ "learning_rate": 0.0006,
+ "loss": 6.217929840087891,
+ "step": 183
+ },
+ {
+ "epoch": 2.559196155526431,
+ "grad_norm": 0.5946390628814697,
+ "learning_rate": 0.0006,
+ "loss": 6.189267158508301,
+ "step": 184
+ },
+ {
+ "epoch": 2.5731760594145916,
+ "grad_norm": 0.41621312499046326,
+ "learning_rate": 0.0006,
+ "loss": 6.182415008544922,
+ "step": 185
+ },
+ {
+ "epoch": 2.5871559633027523,
+ "grad_norm": 0.5442072749137878,
+ "learning_rate": 0.0006,
+ "loss": 6.150757789611816,
+ "step": 186
+ },
+ {
+ "epoch": 2.601135867190913,
+ "grad_norm": 0.727843165397644,
+ "learning_rate": 0.0006,
+ "loss": 6.146082878112793,
+ "step": 187
+ },
+ {
+ "epoch": 2.615115771079074,
+ "grad_norm": 0.8898891806602478,
+ "learning_rate": 0.0006,
+ "loss": 6.190483093261719,
+ "step": 188
+ },
+ {
+ "epoch": 2.6290956749672345,
+ "grad_norm": 0.5173947215080261,
+ "learning_rate": 0.0006,
+ "loss": 6.151251792907715,
+ "step": 189
+ },
+ {
+ "epoch": 2.6430755788553952,
+ "grad_norm": 0.6476729512214661,
+ "learning_rate": 0.0006,
+ "loss": 6.154841423034668,
+ "step": 190
+ },
+ {
+ "epoch": 2.657055482743556,
+ "grad_norm": 0.3538810908794403,
+ "learning_rate": 0.0006,
+ "loss": 6.103879928588867,
+ "step": 191
+ },
+ {
+ "epoch": 2.6710353866317167,
+ "grad_norm": 0.4773508310317993,
+ "learning_rate": 0.0006,
+ "loss": 6.118101119995117,
+ "step": 192
+ },
+ {
+ "epoch": 2.6850152905198774,
+ "grad_norm": 0.29213786125183105,
+ "learning_rate": 0.0006,
+ "loss": 6.108916282653809,
+ "step": 193
+ },
+ {
+ "epoch": 2.6989951944080386,
+ "grad_norm": 0.40800607204437256,
+ "learning_rate": 0.0006,
+ "loss": 6.113438606262207,
+ "step": 194
+ },
+ {
+ "epoch": 2.7129750982961993,
+ "grad_norm": 0.31157299876213074,
+ "learning_rate": 0.0006,
+ "loss": 6.101809501647949,
+ "step": 195
+ },
+ {
+ "epoch": 2.72695500218436,
+ "grad_norm": 0.28660309314727783,
+ "learning_rate": 0.0006,
+ "loss": 6.075886249542236,
+ "step": 196
+ },
+ {
+ "epoch": 2.7409349060725208,
+ "grad_norm": 0.3810449540615082,
+ "learning_rate": 0.0006,
+ "loss": 6.053257942199707,
+ "step": 197
+ },
+ {
+ "epoch": 2.7549148099606815,
+ "grad_norm": 0.21741755306720734,
+ "learning_rate": 0.0006,
+ "loss": 6.013825416564941,
+ "step": 198
+ },
+ {
+ "epoch": 2.7688947138488422,
+ "grad_norm": 0.2777678966522217,
+ "learning_rate": 0.0006,
+ "loss": 6.054204940795898,
+ "step": 199
+ },
+ {
+ "epoch": 2.782874617737003,
+ "grad_norm": 0.28503066301345825,
+ "learning_rate": 0.0006,
+ "loss": 6.035628318786621,
+ "step": 200
+ },
+ {
+ "epoch": 2.7968545216251637,
+ "grad_norm": 0.41954755783081055,
+ "learning_rate": 0.0006,
+ "loss": 6.028354644775391,
+ "step": 201
+ },
+ {
+ "epoch": 2.810834425513325,
+ "grad_norm": 0.8785563111305237,
+ "learning_rate": 0.0006,
+ "loss": 6.055761337280273,
+ "step": 202
+ },
+ {
+ "epoch": 2.8248143294014856,
+ "grad_norm": 1.7459558248519897,
+ "learning_rate": 0.0006,
+ "loss": 6.11599588394165,
+ "step": 203
+ },
+ {
+ "epoch": 2.8387942332896463,
+ "grad_norm": 0.5725523233413696,
+ "learning_rate": 0.0006,
+ "loss": 6.024280548095703,
+ "step": 204
+ },
+ {
+ "epoch": 2.852774137177807,
+ "grad_norm": 0.5913150906562805,
+ "learning_rate": 0.0006,
+ "loss": 6.050281524658203,
+ "step": 205
+ },
+ {
+ "epoch": 2.8667540410659678,
+ "grad_norm": 0.5929384827613831,
+ "learning_rate": 0.0006,
+ "loss": 6.041121482849121,
+ "step": 206
+ },
+ {
+ "epoch": 2.8807339449541285,
+ "grad_norm": 0.5650724768638611,
+ "learning_rate": 0.0006,
+ "loss": 6.004258155822754,
+ "step": 207
+ },
+ {
+ "epoch": 2.894713848842289,
+ "grad_norm": 0.3420545756816864,
+ "learning_rate": 0.0006,
+ "loss": 5.983296871185303,
+ "step": 208
+ },
+ {
+ "epoch": 2.90869375273045,
+ "grad_norm": 0.2960914075374603,
+ "learning_rate": 0.0006,
+ "loss": 5.988578796386719,
+ "step": 209
+ },
+ {
+ "epoch": 2.9226736566186107,
+ "grad_norm": 0.3252662718296051,
+ "learning_rate": 0.0006,
+ "loss": 5.99103307723999,
+ "step": 210
+ },
+ {
+ "epoch": 2.9366535605067714,
+ "grad_norm": 0.4851132929325104,
+ "learning_rate": 0.0006,
+ "loss": 6.0028977394104,
+ "step": 211
+ },
+ {
+ "epoch": 2.950633464394932,
+ "grad_norm": 0.5639995336532593,
+ "learning_rate": 0.0006,
+ "loss": 5.965080738067627,
+ "step": 212
+ },
+ {
+ "epoch": 2.964613368283093,
+ "grad_norm": 0.4514601230621338,
+ "learning_rate": 0.0006,
+ "loss": 5.961450576782227,
+ "step": 213
+ },
+ {
+ "epoch": 2.9785932721712536,
+ "grad_norm": 0.5397921800613403,
+ "learning_rate": 0.0006,
+ "loss": 5.965290546417236,
+ "step": 214
+ },
+ {
+ "epoch": 2.9925731760594148,
+ "grad_norm": 0.4735587239265442,
+ "learning_rate": 0.0006,
+ "loss": 5.952754497528076,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.32061058282852173,
+ "learning_rate": 0.0006,
+ "loss": 5.961667060852051,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 6.8517303466796875,
+ "eval_runtime": 44.03,
+ "eval_samples_per_second": 55.462,
+ "eval_steps_per_second": 3.475,
+ "step": 216
+ },
+ {
+ "epoch": 3.0139799038881607,
+ "grad_norm": 0.3537784814834595,
+ "learning_rate": 0.0006,
+ "loss": 5.928008079528809,
+ "step": 217
+ },
+ {
+ "epoch": 3.0279598077763215,
+ "grad_norm": 0.40713080763816833,
+ "learning_rate": 0.0006,
+ "loss": 5.9150800704956055,
+ "step": 218
+ },
+ {
+ "epoch": 3.041939711664482,
+ "grad_norm": 0.2548826336860657,
+ "learning_rate": 0.0006,
+ "loss": 5.919757843017578,
+ "step": 219
+ },
+ {
+ "epoch": 3.055919615552643,
+ "grad_norm": 0.2818543016910553,
+ "learning_rate": 0.0006,
+ "loss": 5.913688659667969,
+ "step": 220
+ },
+ {
+ "epoch": 3.0698995194408036,
+ "grad_norm": 0.4196692705154419,
+ "learning_rate": 0.0006,
+ "loss": 5.8675336837768555,
+ "step": 221
+ },
+ {
+ "epoch": 3.083879423328965,
+ "grad_norm": 0.35272282361984253,
+ "learning_rate": 0.0006,
+ "loss": 5.878874778747559,
+ "step": 222
+ },
+ {
+ "epoch": 3.0978593272171255,
+ "grad_norm": 0.3254282772541046,
+ "learning_rate": 0.0006,
+ "loss": 5.8823041915893555,
+ "step": 223
+ },
+ {
+ "epoch": 3.1118392311052863,
+ "grad_norm": 0.4052561819553375,
+ "learning_rate": 0.0006,
+ "loss": 5.867744445800781,
+ "step": 224
+ },
+ {
+ "epoch": 3.125819134993447,
+ "grad_norm": 0.31246256828308105,
+ "learning_rate": 0.0006,
+ "loss": 5.886094093322754,
+ "step": 225
+ },
+ {
+ "epoch": 3.1397990388816077,
+ "grad_norm": 0.3479118347167969,
+ "learning_rate": 0.0006,
+ "loss": 5.850762367248535,
+ "step": 226
+ },
+ {
+ "epoch": 3.1537789427697684,
+ "grad_norm": 0.5037238597869873,
+ "learning_rate": 0.0006,
+ "loss": 5.844175815582275,
+ "step": 227
+ },
+ {
+ "epoch": 3.167758846657929,
+ "grad_norm": 0.6271815896034241,
+ "learning_rate": 0.0006,
+ "loss": 5.871790885925293,
+ "step": 228
+ },
+ {
+ "epoch": 3.18173875054609,
+ "grad_norm": 0.43838298320770264,
+ "learning_rate": 0.0006,
+ "loss": 5.844024658203125,
+ "step": 229
+ },
+ {
+ "epoch": 3.1957186544342506,
+ "grad_norm": 0.4755159616470337,
+ "learning_rate": 0.0006,
+ "loss": 5.846892356872559,
+ "step": 230
+ },
+ {
+ "epoch": 3.2096985583224114,
+ "grad_norm": 0.5229779481887817,
+ "learning_rate": 0.0006,
+ "loss": 5.827000617980957,
+ "step": 231
+ },
+ {
+ "epoch": 3.2236784622105725,
+ "grad_norm": 0.8264499306678772,
+ "learning_rate": 0.0006,
+ "loss": 5.867050647735596,
+ "step": 232
+ },
+ {
+ "epoch": 3.2376583660987333,
+ "grad_norm": 1.0607538223266602,
+ "learning_rate": 0.0006,
+ "loss": 5.877876281738281,
+ "step": 233
+ },
+ {
+ "epoch": 3.251638269986894,
+ "grad_norm": 0.7656505703926086,
+ "learning_rate": 0.0006,
+ "loss": 5.86760139465332,
+ "step": 234
+ },
+ {
+ "epoch": 3.2656181738750547,
+ "grad_norm": 0.7940183281898499,
+ "learning_rate": 0.0006,
+ "loss": 5.861355781555176,
+ "step": 235
+ },
+ {
+ "epoch": 3.2795980777632154,
+ "grad_norm": 0.45171424746513367,
+ "learning_rate": 0.0006,
+ "loss": 5.799808502197266,
+ "step": 236
+ },
+ {
+ "epoch": 3.293577981651376,
+ "grad_norm": 0.6174989342689514,
+ "learning_rate": 0.0006,
+ "loss": 5.8585920333862305,
+ "step": 237
+ },
+ {
+ "epoch": 3.307557885539537,
+ "grad_norm": 0.5341290831565857,
+ "learning_rate": 0.0006,
+ "loss": 5.8116044998168945,
+ "step": 238
+ },
+ {
+ "epoch": 3.3215377894276976,
+ "grad_norm": 0.3938343822956085,
+ "learning_rate": 0.0006,
+ "loss": 5.83797550201416,
+ "step": 239
+ },
+ {
+ "epoch": 3.3355176933158583,
+ "grad_norm": 0.5106972455978394,
+ "learning_rate": 0.0006,
+ "loss": 5.832303047180176,
+ "step": 240
+ },
+ {
+ "epoch": 3.349497597204019,
+ "grad_norm": 0.3791428506374359,
+ "learning_rate": 0.0006,
+ "loss": 5.794981956481934,
+ "step": 241
+ },
+ {
+ "epoch": 3.36347750109218,
+ "grad_norm": 0.42287978529930115,
+ "learning_rate": 0.0006,
+ "loss": 5.788144111633301,
+ "step": 242
+ },
+ {
+ "epoch": 3.3774574049803405,
+ "grad_norm": 0.27334436774253845,
+ "learning_rate": 0.0006,
+ "loss": 5.771070957183838,
+ "step": 243
+ },
+ {
+ "epoch": 3.3914373088685017,
+ "grad_norm": 0.2470470368862152,
+ "learning_rate": 0.0006,
+ "loss": 5.755998611450195,
+ "step": 244
+ },
+ {
+ "epoch": 3.4054172127566624,
+ "grad_norm": 0.3043915033340454,
+ "learning_rate": 0.0006,
+ "loss": 5.779492378234863,
+ "step": 245
+ },
+ {
+ "epoch": 3.419397116644823,
+ "grad_norm": 0.2960112988948822,
+ "learning_rate": 0.0006,
+ "loss": 5.750328063964844,
+ "step": 246
+ },
+ {
+ "epoch": 3.433377020532984,
+ "grad_norm": 0.3046723008155823,
+ "learning_rate": 0.0006,
+ "loss": 5.776517868041992,
+ "step": 247
+ },
+ {
+ "epoch": 3.4473569244211446,
+ "grad_norm": 0.22461780905723572,
+ "learning_rate": 0.0006,
+ "loss": 5.760989665985107,
+ "step": 248
+ },
+ {
+ "epoch": 3.4613368283093053,
+ "grad_norm": 0.24625757336616516,
+ "learning_rate": 0.0006,
+ "loss": 5.759706497192383,
+ "step": 249
+ },
+ {
+ "epoch": 3.475316732197466,
+ "grad_norm": 0.18207131326198578,
+ "learning_rate": 0.0006,
+ "loss": 5.747040748596191,
+ "step": 250
+ },
+ {
+ "epoch": 3.489296636085627,
+ "grad_norm": 0.16473834216594696,
+ "learning_rate": 0.0006,
+ "loss": 5.761577606201172,
+ "step": 251
+ },
+ {
+ "epoch": 3.5032765399737875,
+ "grad_norm": 0.25155773758888245,
+ "learning_rate": 0.0006,
+ "loss": 5.696502208709717,
+ "step": 252
+ },
+ {
+ "epoch": 3.5172564438619487,
+ "grad_norm": 0.24115674197673798,
+ "learning_rate": 0.0006,
+ "loss": 5.676957130432129,
+ "step": 253
+ },
+ {
+ "epoch": 3.5312363477501094,
+ "grad_norm": 0.40912172198295593,
+ "learning_rate": 0.0006,
+ "loss": 5.695090293884277,
+ "step": 254
+ },
+ {
+ "epoch": 3.54521625163827,
+ "grad_norm": 0.6727662682533264,
+ "learning_rate": 0.0006,
+ "loss": 5.722194671630859,
+ "step": 255
+ },
+ {
+ "epoch": 3.559196155526431,
+ "grad_norm": 0.8450719118118286,
+ "learning_rate": 0.0006,
+ "loss": 5.764680862426758,
+ "step": 256
+ },
+ {
+ "epoch": 3.5731760594145916,
+ "grad_norm": 0.9916183352470398,
+ "learning_rate": 0.0006,
+ "loss": 5.754530429840088,
+ "step": 257
+ },
+ {
+ "epoch": 3.5871559633027523,
+ "grad_norm": 1.041922688484192,
+ "learning_rate": 0.0006,
+ "loss": 5.781468391418457,
+ "step": 258
+ },
+ {
+ "epoch": 3.601135867190913,
+ "grad_norm": 0.972039520740509,
+ "learning_rate": 0.0006,
+ "loss": 5.760323524475098,
+ "step": 259
+ },
+ {
+ "epoch": 3.615115771079074,
+ "grad_norm": 0.6802462935447693,
+ "learning_rate": 0.0006,
+ "loss": 5.750064849853516,
+ "step": 260
+ },
+ {
+ "epoch": 3.6290956749672345,
+ "grad_norm": 0.48553529381752014,
+ "learning_rate": 0.0006,
+ "loss": 5.7464094161987305,
+ "step": 261
+ },
+ {
+ "epoch": 3.6430755788553952,
+ "grad_norm": 0.4066704213619232,
+ "learning_rate": 0.0006,
+ "loss": 5.719789505004883,
+ "step": 262
+ },
+ {
+ "epoch": 3.657055482743556,
+ "grad_norm": 0.3300860822200775,
+ "learning_rate": 0.0006,
+ "loss": 5.719920635223389,
+ "step": 263
+ },
+ {
+ "epoch": 3.6710353866317167,
+ "grad_norm": 0.3286679983139038,
+ "learning_rate": 0.0006,
+ "loss": 5.723465919494629,
+ "step": 264
+ },
+ {
+ "epoch": 3.6850152905198774,
+ "grad_norm": 0.27653390169143677,
+ "learning_rate": 0.0006,
+ "loss": 5.713820457458496,
+ "step": 265
+ },
+ {
+ "epoch": 3.6989951944080386,
+ "grad_norm": 0.26138055324554443,
+ "learning_rate": 0.0006,
+ "loss": 5.683221817016602,
+ "step": 266
+ },
+ {
+ "epoch": 3.7129750982961993,
+ "grad_norm": 0.23706290125846863,
+ "learning_rate": 0.0006,
+ "loss": 5.6896867752075195,
+ "step": 267
+ },
+ {
+ "epoch": 3.72695500218436,
+ "grad_norm": 0.2751729190349579,
+ "learning_rate": 0.0006,
+ "loss": 5.710301876068115,
+ "step": 268
+ },
+ {
+ "epoch": 3.7409349060725208,
+ "grad_norm": 0.255393385887146,
+ "learning_rate": 0.0006,
+ "loss": 5.687932968139648,
+ "step": 269
+ },
+ {
+ "epoch": 3.7549148099606815,
+ "grad_norm": 0.21453925967216492,
+ "learning_rate": 0.0006,
+ "loss": 5.68234395980835,
+ "step": 270
+ },
+ {
+ "epoch": 3.7688947138488422,
+ "grad_norm": 0.21771012246608734,
+ "learning_rate": 0.0006,
+ "loss": 5.683980464935303,
+ "step": 271
+ },
+ {
+ "epoch": 3.782874617737003,
+ "grad_norm": 0.1884593963623047,
+ "learning_rate": 0.0006,
+ "loss": 5.662779808044434,
+ "step": 272
+ },
+ {
+ "epoch": 3.7968545216251637,
+ "grad_norm": 0.20429612696170807,
+ "learning_rate": 0.0006,
+ "loss": 5.650941848754883,
+ "step": 273
+ },
+ {
+ "epoch": 3.810834425513325,
+ "grad_norm": 0.22586797177791595,
+ "learning_rate": 0.0006,
+ "loss": 5.639376640319824,
+ "step": 274
+ },
+ {
+ "epoch": 3.8248143294014856,
+ "grad_norm": 0.19651705026626587,
+ "learning_rate": 0.0006,
+ "loss": 5.612030029296875,
+ "step": 275
+ },
+ {
+ "epoch": 3.8387942332896463,
+ "grad_norm": 0.2125253826379776,
+ "learning_rate": 0.0006,
+ "loss": 5.622836589813232,
+ "step": 276
+ },
+ {
+ "epoch": 3.852774137177807,
+ "grad_norm": 0.2905234694480896,
+ "learning_rate": 0.0006,
+ "loss": 5.624594688415527,
+ "step": 277
+ },
+ {
+ "epoch": 3.8667540410659678,
+ "grad_norm": 0.2718426585197449,
+ "learning_rate": 0.0006,
+ "loss": 5.619892120361328,
+ "step": 278
+ },
+ {
+ "epoch": 3.8807339449541285,
+ "grad_norm": 0.26481127738952637,
+ "learning_rate": 0.0006,
+ "loss": 5.612496852874756,
+ "step": 279
+ },
+ {
+ "epoch": 3.894713848842289,
+ "grad_norm": 0.2876453399658203,
+ "learning_rate": 0.0006,
+ "loss": 5.59157133102417,
+ "step": 280
+ },
+ {
+ "epoch": 3.90869375273045,
+ "grad_norm": 0.22829554975032806,
+ "learning_rate": 0.0006,
+ "loss": 5.5884199142456055,
+ "step": 281
+ },
+ {
+ "epoch": 3.9226736566186107,
+ "grad_norm": 0.22852344810962677,
+ "learning_rate": 0.0006,
+ "loss": 5.618719100952148,
+ "step": 282
+ },
+ {
+ "epoch": 3.9366535605067714,
+ "grad_norm": 0.37366563081741333,
+ "learning_rate": 0.0006,
+ "loss": 5.611738204956055,
+ "step": 283
+ },
+ {
+ "epoch": 3.950633464394932,
+ "grad_norm": 0.5650382041931152,
+ "learning_rate": 0.0006,
+ "loss": 5.606371879577637,
+ "step": 284
+ },
+ {
+ "epoch": 3.964613368283093,
+ "grad_norm": 0.5960066914558411,
+ "learning_rate": 0.0006,
+ "loss": 5.595022201538086,
+ "step": 285
+ },
+ {
+ "epoch": 3.9785932721712536,
+ "grad_norm": 0.3561663031578064,
+ "learning_rate": 0.0006,
+ "loss": 5.581035614013672,
+ "step": 286
+ },
+ {
+ "epoch": 3.9925731760594148,
+ "grad_norm": 0.44699913263320923,
+ "learning_rate": 0.0006,
+ "loss": 5.568033218383789,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.42783990502357483,
+ "learning_rate": 0.0006,
+ "loss": 5.571993827819824,
+ "step": 288
+ },
+ {
+ "epoch": 4.0,
+ "eval_loss": 6.349016189575195,
+ "eval_runtime": 44.3326,
+ "eval_samples_per_second": 55.084,
+ "eval_steps_per_second": 3.451,
+ "step": 288
+ },
+ {
+ "epoch": 4.013979903888161,
+ "grad_norm": 0.41305896639823914,
+ "learning_rate": 0.0006,
+ "loss": 5.562954902648926,
+ "step": 289
+ },
+ {
+ "epoch": 4.0279598077763215,
+ "grad_norm": 0.3966459035873413,
+ "learning_rate": 0.0006,
+ "loss": 5.5671916007995605,
+ "step": 290
+ },
+ {
+ "epoch": 4.041939711664482,
+ "grad_norm": 0.4846104085445404,
+ "learning_rate": 0.0006,
+ "loss": 5.548027038574219,
+ "step": 291
+ },
+ {
+ "epoch": 4.055919615552643,
+ "grad_norm": 0.5916333794593811,
+ "learning_rate": 0.0006,
+ "loss": 5.5900068283081055,
+ "step": 292
+ },
+ {
+ "epoch": 4.069899519440804,
+ "grad_norm": 0.5973889231681824,
+ "learning_rate": 0.0006,
+ "loss": 5.537594795227051,
+ "step": 293
+ },
+ {
+ "epoch": 4.083879423328964,
+ "grad_norm": 0.4190494418144226,
+ "learning_rate": 0.0006,
+ "loss": 5.534749984741211,
+ "step": 294
+ },
+ {
+ "epoch": 4.097859327217125,
+ "grad_norm": 0.5956901907920837,
+ "learning_rate": 0.0006,
+ "loss": 5.554540634155273,
+ "step": 295
+ },
+ {
+ "epoch": 4.111839231105286,
+ "grad_norm": 0.8257920742034912,
+ "learning_rate": 0.0006,
+ "loss": 5.5728068351745605,
+ "step": 296
+ },
+ {
+ "epoch": 4.1258191349934465,
+ "grad_norm": 0.7241750955581665,
+ "learning_rate": 0.0006,
+ "loss": 5.5643815994262695,
+ "step": 297
+ },
+ {
+ "epoch": 4.139799038881607,
+ "grad_norm": 0.45730507373809814,
+ "learning_rate": 0.0006,
+ "loss": 5.554225921630859,
+ "step": 298
+ },
+ {
+ "epoch": 4.153778942769769,
+ "grad_norm": 0.5166977643966675,
+ "learning_rate": 0.0006,
+ "loss": 5.540790557861328,
+ "step": 299
+ },
+ {
+ "epoch": 4.16775884665793,
+ "grad_norm": 0.433237761259079,
+ "learning_rate": 0.0006,
+ "loss": 5.536884784698486,
+ "step": 300
+ },
+ {
+ "epoch": 4.18173875054609,
+ "grad_norm": 0.3369830250740051,
+ "learning_rate": 0.0006,
+ "loss": 5.532837867736816,
+ "step": 301
+ },
+ {
+ "epoch": 4.195718654434251,
+ "grad_norm": 0.33091458678245544,
+ "learning_rate": 0.0006,
+ "loss": 5.547643661499023,
+ "step": 302
+ },
+ {
+ "epoch": 4.209698558322412,
+ "grad_norm": 0.36462724208831787,
+ "learning_rate": 0.0006,
+ "loss": 5.525021076202393,
+ "step": 303
+ },
+ {
+ "epoch": 4.2236784622105725,
+ "grad_norm": 0.3342771530151367,
+ "learning_rate": 0.0006,
+ "loss": 5.512082099914551,
+ "step": 304
+ },
+ {
+ "epoch": 4.237658366098733,
+ "grad_norm": 0.26784762740135193,
+ "learning_rate": 0.0006,
+ "loss": 5.488072395324707,
+ "step": 305
+ },
+ {
+ "epoch": 4.251638269986894,
+ "grad_norm": 0.25986987352371216,
+ "learning_rate": 0.0006,
+ "loss": 5.4960455894470215,
+ "step": 306
+ },
+ {
+ "epoch": 4.265618173875055,
+ "grad_norm": 0.24595795571804047,
+ "learning_rate": 0.0006,
+ "loss": 5.513367176055908,
+ "step": 307
+ },
+ {
+ "epoch": 4.279598077763215,
+ "grad_norm": 0.2224857211112976,
+ "learning_rate": 0.0006,
+ "loss": 5.465205192565918,
+ "step": 308
+ },
+ {
+ "epoch": 4.293577981651376,
+ "grad_norm": 0.26799243688583374,
+ "learning_rate": 0.0006,
+ "loss": 5.476632118225098,
+ "step": 309
+ },
+ {
+ "epoch": 4.307557885539537,
+ "grad_norm": 0.20443417131900787,
+ "learning_rate": 0.0006,
+ "loss": 5.442601203918457,
+ "step": 310
+ },
+ {
+ "epoch": 4.321537789427698,
+ "grad_norm": 0.2275059074163437,
+ "learning_rate": 0.0006,
+ "loss": 5.453519344329834,
+ "step": 311
+ },
+ {
+ "epoch": 4.335517693315858,
+ "grad_norm": 0.2860901951789856,
+ "learning_rate": 0.0006,
+ "loss": 5.439424514770508,
+ "step": 312
+ },
+ {
+ "epoch": 4.349497597204019,
+ "grad_norm": 0.3378142714500427,
+ "learning_rate": 0.0006,
+ "loss": 5.476953983306885,
+ "step": 313
+ },
+ {
+ "epoch": 4.36347750109218,
+ "grad_norm": 0.3487110733985901,
+ "learning_rate": 0.0006,
+ "loss": 5.47003698348999,
+ "step": 314
+ },
+ {
+ "epoch": 4.3774574049803405,
+ "grad_norm": 0.3655227720737457,
+ "learning_rate": 0.0006,
+ "loss": 5.454250812530518,
+ "step": 315
+ },
+ {
+ "epoch": 4.391437308868501,
+ "grad_norm": 0.3754786252975464,
+ "learning_rate": 0.0006,
+ "loss": 5.475249290466309,
+ "step": 316
+ },
+ {
+ "epoch": 4.405417212756662,
+ "grad_norm": 0.42494088411331177,
+ "learning_rate": 0.0006,
+ "loss": 5.4552459716796875,
+ "step": 317
+ },
+ {
+ "epoch": 4.419397116644823,
+ "grad_norm": 0.4914703667163849,
+ "learning_rate": 0.0006,
+ "loss": 5.431845188140869,
+ "step": 318
+ },
+ {
+ "epoch": 4.433377020532983,
+ "grad_norm": 0.42470860481262207,
+ "learning_rate": 0.0006,
+ "loss": 5.454581260681152,
+ "step": 319
+ },
+ {
+ "epoch": 4.447356924421145,
+ "grad_norm": 0.3828011155128479,
+ "learning_rate": 0.0006,
+ "loss": 5.435178756713867,
+ "step": 320
+ },
+ {
+ "epoch": 4.461336828309306,
+ "grad_norm": 0.47256892919540405,
+ "learning_rate": 0.0006,
+ "loss": 5.428861618041992,
+ "step": 321
+ },
+ {
+ "epoch": 4.4753167321974665,
+ "grad_norm": 0.5665146708488464,
+ "learning_rate": 0.0006,
+ "loss": 5.424633026123047,
+ "step": 322
+ },
+ {
+ "epoch": 4.489296636085627,
+ "grad_norm": 0.48146721720695496,
+ "learning_rate": 0.0006,
+ "loss": 5.4577860832214355,
+ "step": 323
+ },
+ {
+ "epoch": 4.503276539973788,
+ "grad_norm": 0.3378535509109497,
+ "learning_rate": 0.0006,
+ "loss": 5.422727108001709,
+ "step": 324
+ },
+ {
+ "epoch": 4.517256443861949,
+ "grad_norm": 0.41981473565101624,
+ "learning_rate": 0.0006,
+ "loss": 5.418993949890137,
+ "step": 325
+ },
+ {
+ "epoch": 4.531236347750109,
+ "grad_norm": 0.39389684796333313,
+ "learning_rate": 0.0006,
+ "loss": 5.41835880279541,
+ "step": 326
+ },
+ {
+ "epoch": 4.54521625163827,
+ "grad_norm": 0.5912176370620728,
+ "learning_rate": 0.0006,
+ "loss": 5.40073299407959,
+ "step": 327
+ },
+ {
+ "epoch": 4.559196155526431,
+ "grad_norm": 0.6877487897872925,
+ "learning_rate": 0.0006,
+ "loss": 5.445301055908203,
+ "step": 328
+ },
+ {
+ "epoch": 4.573176059414592,
+ "grad_norm": 0.580555260181427,
+ "learning_rate": 0.0006,
+ "loss": 5.431069374084473,
+ "step": 329
+ },
+ {
+ "epoch": 4.587155963302752,
+ "grad_norm": 0.5974457859992981,
+ "learning_rate": 0.0006,
+ "loss": 5.422694206237793,
+ "step": 330
+ },
+ {
+ "epoch": 4.601135867190913,
+ "grad_norm": 0.722481906414032,
+ "learning_rate": 0.0006,
+ "loss": 5.447752952575684,
+ "step": 331
+ },
+ {
+ "epoch": 4.615115771079074,
+ "grad_norm": 0.7687886953353882,
+ "learning_rate": 0.0006,
+ "loss": 5.437956809997559,
+ "step": 332
+ },
+ {
+ "epoch": 4.6290956749672345,
+ "grad_norm": 0.7368173003196716,
+ "learning_rate": 0.0006,
+ "loss": 5.4367241859436035,
+ "step": 333
+ },
+ {
+ "epoch": 4.643075578855395,
+ "grad_norm": 0.6650524139404297,
+ "learning_rate": 0.0006,
+ "loss": 5.4288434982299805,
+ "step": 334
+ },
+ {
+ "epoch": 4.657055482743556,
+ "grad_norm": 0.4997614920139313,
+ "learning_rate": 0.0006,
+ "loss": 5.412769317626953,
+ "step": 335
+ },
+ {
+ "epoch": 4.671035386631717,
+ "grad_norm": 0.44208982586860657,
+ "learning_rate": 0.0006,
+ "loss": 5.42405366897583,
+ "step": 336
+ },
+ {
+ "epoch": 4.685015290519877,
+ "grad_norm": 0.39510273933410645,
+ "learning_rate": 0.0006,
+ "loss": 5.402547836303711,
+ "step": 337
+ },
+ {
+ "epoch": 4.698995194408038,
+ "grad_norm": 0.44970476627349854,
+ "learning_rate": 0.0006,
+ "loss": 5.377168655395508,
+ "step": 338
+ },
+ {
+ "epoch": 4.712975098296199,
+ "grad_norm": 0.3902331590652466,
+ "learning_rate": 0.0006,
+ "loss": 5.401622772216797,
+ "step": 339
+ },
+ {
+ "epoch": 4.72695500218436,
+ "grad_norm": 0.33485135436058044,
+ "learning_rate": 0.0006,
+ "loss": 5.397945880889893,
+ "step": 340
+ },
+ {
+ "epoch": 4.740934906072521,
+ "grad_norm": 0.29062309861183167,
+ "learning_rate": 0.0006,
+ "loss": 5.356175422668457,
+ "step": 341
+ },
+ {
+ "epoch": 4.754914809960681,
+ "grad_norm": 0.23617377877235413,
+ "learning_rate": 0.0006,
+ "loss": 5.388517379760742,
+ "step": 342
+ },
+ {
+ "epoch": 4.768894713848843,
+ "grad_norm": 0.2704737186431885,
+ "learning_rate": 0.0006,
+ "loss": 5.3746137619018555,
+ "step": 343
+ },
+ {
+ "epoch": 4.782874617737003,
+ "grad_norm": 0.20488551259040833,
+ "learning_rate": 0.0006,
+ "loss": 5.3754472732543945,
+ "step": 344
+ },
+ {
+ "epoch": 4.796854521625164,
+ "grad_norm": 0.2007082849740982,
+ "learning_rate": 0.0006,
+ "loss": 5.3538618087768555,
+ "step": 345
+ },
+ {
+ "epoch": 4.810834425513325,
+ "grad_norm": 0.21732935309410095,
+ "learning_rate": 0.0006,
+ "loss": 5.351774215698242,
+ "step": 346
+ },
+ {
+ "epoch": 4.824814329401486,
+ "grad_norm": 0.1944841742515564,
+ "learning_rate": 0.0006,
+ "loss": 5.357545852661133,
+ "step": 347
+ },
+ {
+ "epoch": 4.838794233289646,
+ "grad_norm": 0.1953933835029602,
+ "learning_rate": 0.0006,
+ "loss": 5.321681022644043,
+ "step": 348
+ },
+ {
+ "epoch": 4.852774137177807,
+ "grad_norm": 0.1743433028459549,
+ "learning_rate": 0.0006,
+ "loss": 5.340302467346191,
+ "step": 349
+ },
+ {
+ "epoch": 4.866754041065968,
+ "grad_norm": 0.19655466079711914,
+ "learning_rate": 0.0006,
+ "loss": 5.325471878051758,
+ "step": 350
+ },
+ {
+ "epoch": 4.8807339449541285,
+ "grad_norm": 0.15761791169643402,
+ "learning_rate": 0.0006,
+ "loss": 5.3453240394592285,
+ "step": 351
+ },
+ {
+ "epoch": 4.894713848842289,
+ "grad_norm": 0.19164425134658813,
+ "learning_rate": 0.0006,
+ "loss": 5.315583229064941,
+ "step": 352
+ },
+ {
+ "epoch": 4.90869375273045,
+ "grad_norm": 0.28084540367126465,
+ "learning_rate": 0.0006,
+ "loss": 5.309171676635742,
+ "step": 353
+ },
+ {
+ "epoch": 4.922673656618611,
+ "grad_norm": 0.4681853652000427,
+ "learning_rate": 0.0006,
+ "loss": 5.318211078643799,
+ "step": 354
+ },
+ {
+ "epoch": 4.936653560506771,
+ "grad_norm": 0.6417295932769775,
+ "learning_rate": 0.0006,
+ "loss": 5.309263706207275,
+ "step": 355
+ },
+ {
+ "epoch": 4.950633464394932,
+ "grad_norm": 0.501312792301178,
+ "learning_rate": 0.0006,
+ "loss": 5.321534156799316,
+ "step": 356
+ },
+ {
+ "epoch": 4.964613368283093,
+ "grad_norm": 0.47502145171165466,
+ "learning_rate": 0.0006,
+ "loss": 5.323659896850586,
+ "step": 357
+ },
+ {
+ "epoch": 4.978593272171254,
+ "grad_norm": 0.5366594791412354,
+ "learning_rate": 0.0006,
+ "loss": 5.327367782592773,
+ "step": 358
+ },
+ {
+ "epoch": 4.992573176059414,
+ "grad_norm": 0.6986395120620728,
+ "learning_rate": 0.0006,
+ "loss": 5.311097145080566,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.6626625657081604,
+ "learning_rate": 0.0006,
+ "loss": 5.337558269500732,
+ "step": 360
+ },
+ {
+ "epoch": 5.0,
+ "eval_loss": 5.929230690002441,
+ "eval_runtime": 44.5268,
+ "eval_samples_per_second": 54.843,
+ "eval_steps_per_second": 3.436,
+ "step": 360
+ },
+ {
+ "epoch": 5.013979903888161,
+ "grad_norm": 0.7383704781532288,
+ "learning_rate": 0.0006,
+ "loss": 5.315563678741455,
+ "step": 361
+ },
+ {
+ "epoch": 5.0279598077763215,
+ "grad_norm": 0.7730138301849365,
+ "learning_rate": 0.0006,
+ "loss": 5.324905872344971,
+ "step": 362
+ },
+ {
+ "epoch": 5.041939711664482,
+ "grad_norm": 0.8170825839042664,
+ "learning_rate": 0.0006,
+ "loss": 5.350251197814941,
+ "step": 363
+ },
+ {
+ "epoch": 5.055919615552643,
+ "grad_norm": 0.6950958371162415,
+ "learning_rate": 0.0006,
+ "loss": 5.338744163513184,
+ "step": 364
+ },
+ {
+ "epoch": 5.069899519440804,
+ "grad_norm": 0.5582894086837769,
+ "learning_rate": 0.0006,
+ "loss": 5.340539932250977,
+ "step": 365
+ },
+ {
+ "epoch": 5.083879423328964,
+ "grad_norm": 0.4772159159183502,
+ "learning_rate": 0.0006,
+ "loss": 5.344161033630371,
+ "step": 366
+ },
+ {
+ "epoch": 5.097859327217125,
+ "grad_norm": 0.5432839393615723,
+ "learning_rate": 0.0006,
+ "loss": 5.312403678894043,
+ "step": 367
+ },
+ {
+ "epoch": 5.111839231105286,
+ "grad_norm": 0.4944784641265869,
+ "learning_rate": 0.0006,
+ "loss": 5.30281925201416,
+ "step": 368
+ },
+ {
+ "epoch": 5.1258191349934465,
+ "grad_norm": 0.4298315942287445,
+ "learning_rate": 0.0006,
+ "loss": 5.29564094543457,
+ "step": 369
+ },
+ {
+ "epoch": 5.139799038881607,
+ "grad_norm": 0.349889874458313,
+ "learning_rate": 0.0006,
+ "loss": 5.287062644958496,
+ "step": 370
+ },
+ {
+ "epoch": 5.153778942769769,
+ "grad_norm": 0.2823719084262848,
+ "learning_rate": 0.0006,
+ "loss": 5.28826904296875,
+ "step": 371
+ },
+ {
+ "epoch": 5.16775884665793,
+ "grad_norm": 0.32975050806999207,
+ "learning_rate": 0.0006,
+ "loss": 5.256399631500244,
+ "step": 372
+ },
+ {
+ "epoch": 5.18173875054609,
+ "grad_norm": 0.2963952124118805,
+ "learning_rate": 0.0006,
+ "loss": 5.273757457733154,
+ "step": 373
+ },
+ {
+ "epoch": 5.195718654434251,
+ "grad_norm": 0.21345984935760498,
+ "learning_rate": 0.0006,
+ "loss": 5.274978160858154,
+ "step": 374
+ },
+ {
+ "epoch": 5.209698558322412,
+ "grad_norm": 0.2363101840019226,
+ "learning_rate": 0.0006,
+ "loss": 5.261585235595703,
+ "step": 375
+ },
+ {
+ "epoch": 5.2236784622105725,
+ "grad_norm": 0.19626963138580322,
+ "learning_rate": 0.0006,
+ "loss": 5.259700298309326,
+ "step": 376
+ },
+ {
+ "epoch": 5.237658366098733,
+ "grad_norm": 0.21083571016788483,
+ "learning_rate": 0.0006,
+ "loss": 5.233585357666016,
+ "step": 377
+ },
+ {
+ "epoch": 5.251638269986894,
+ "grad_norm": 0.2273513823747635,
+ "learning_rate": 0.0006,
+ "loss": 5.231740474700928,
+ "step": 378
+ },
+ {
+ "epoch": 5.265618173875055,
+ "grad_norm": 0.18299247324466705,
+ "learning_rate": 0.0006,
+ "loss": 5.251256465911865,
+ "step": 379
+ },
+ {
+ "epoch": 5.279598077763215,
+ "grad_norm": 0.19578224420547485,
+ "learning_rate": 0.0006,
+ "loss": 5.230329513549805,
+ "step": 380
+ },
+ {
+ "epoch": 5.293577981651376,
+ "grad_norm": 0.20308879017829895,
+ "learning_rate": 0.0006,
+ "loss": 5.243951797485352,
+ "step": 381
+ },
+ {
+ "epoch": 5.307557885539537,
+ "grad_norm": 0.21053212881088257,
+ "learning_rate": 0.0006,
+ "loss": 5.210272789001465,
+ "step": 382
+ },
+ {
+ "epoch": 5.321537789427698,
+ "grad_norm": 0.21852520108222961,
+ "learning_rate": 0.0006,
+ "loss": 5.215418815612793,
+ "step": 383
+ },
+ {
+ "epoch": 5.335517693315858,
+ "grad_norm": 0.24872010946273804,
+ "learning_rate": 0.0006,
+ "loss": 5.225139617919922,
+ "step": 384
+ },
+ {
+ "epoch": 5.349497597204019,
+ "grad_norm": 0.27780187129974365,
+ "learning_rate": 0.0006,
+ "loss": 5.241010665893555,
+ "step": 385
+ },
+ {
+ "epoch": 5.36347750109218,
+ "grad_norm": 0.261767715215683,
+ "learning_rate": 0.0006,
+ "loss": 5.230723857879639,
+ "step": 386
+ },
+ {
+ "epoch": 5.3774574049803405,
+ "grad_norm": 0.2111261785030365,
+ "learning_rate": 0.0006,
+ "loss": 5.1848602294921875,
+ "step": 387
+ },
+ {
+ "epoch": 5.391437308868501,
+ "grad_norm": 0.24325387179851532,
+ "learning_rate": 0.0006,
+ "loss": 5.180911064147949,
+ "step": 388
+ },
+ {
+ "epoch": 5.405417212756662,
+ "grad_norm": 0.19542962312698364,
+ "learning_rate": 0.0006,
+ "loss": 5.189907073974609,
+ "step": 389
+ },
+ {
+ "epoch": 5.419397116644823,
+ "grad_norm": 0.20489346981048584,
+ "learning_rate": 0.0006,
+ "loss": 5.184634208679199,
+ "step": 390
+ },
+ {
+ "epoch": 5.433377020532983,
+ "grad_norm": 0.2753409147262573,
+ "learning_rate": 0.0006,
+ "loss": 5.190083026885986,
+ "step": 391
+ },
+ {
+ "epoch": 5.447356924421145,
+ "grad_norm": 0.3758019208908081,
+ "learning_rate": 0.0006,
+ "loss": 5.189423561096191,
+ "step": 392
+ },
+ {
+ "epoch": 5.461336828309306,
+ "grad_norm": 0.4425095021724701,
+ "learning_rate": 0.0006,
+ "loss": 5.17152214050293,
+ "step": 393
+ },
+ {
+ "epoch": 5.4753167321974665,
+ "grad_norm": 0.39721858501434326,
+ "learning_rate": 0.0006,
+ "loss": 5.189178466796875,
+ "step": 394
+ },
+ {
+ "epoch": 5.489296636085627,
+ "grad_norm": 0.43441957235336304,
+ "learning_rate": 0.0006,
+ "loss": 5.1823577880859375,
+ "step": 395
+ },
+ {
+ "epoch": 5.503276539973788,
+ "grad_norm": 0.3583861291408539,
+ "learning_rate": 0.0006,
+ "loss": 5.160187721252441,
+ "step": 396
+ },
+ {
+ "epoch": 5.517256443861949,
+ "grad_norm": 0.323290079832077,
+ "learning_rate": 0.0006,
+ "loss": 5.113046646118164,
+ "step": 397
+ },
+ {
+ "epoch": 5.531236347750109,
+ "grad_norm": 0.3049418330192566,
+ "learning_rate": 0.0006,
+ "loss": 5.172209739685059,
+ "step": 398
+ },
+ {
+ "epoch": 5.54521625163827,
+ "grad_norm": 0.3253744840621948,
+ "learning_rate": 0.0006,
+ "loss": 5.1970720291137695,
+ "step": 399
+ },
+ {
+ "epoch": 5.559196155526431,
+ "grad_norm": 0.3232555091381073,
+ "learning_rate": 0.0006,
+ "loss": 5.173195838928223,
+ "step": 400
+ },
+ {
+ "epoch": 5.573176059414592,
+ "grad_norm": 0.33751845359802246,
+ "learning_rate": 0.0006,
+ "loss": 5.137526988983154,
+ "step": 401
+ },
+ {
+ "epoch": 5.587155963302752,
+ "grad_norm": 0.45970913767814636,
+ "learning_rate": 0.0006,
+ "loss": 5.123377799987793,
+ "step": 402
+ },
+ {
+ "epoch": 5.601135867190913,
+ "grad_norm": 0.5383784770965576,
+ "learning_rate": 0.0006,
+ "loss": 5.154180526733398,
+ "step": 403
+ },
+ {
+ "epoch": 5.615115771079074,
+ "grad_norm": 0.45765912532806396,
+ "learning_rate": 0.0006,
+ "loss": 5.1485209465026855,
+ "step": 404
+ },
+ {
+ "epoch": 5.6290956749672345,
+ "grad_norm": 0.5079503059387207,
+ "learning_rate": 0.0006,
+ "loss": 5.158293724060059,
+ "step": 405
+ },
+ {
+ "epoch": 5.643075578855395,
+ "grad_norm": 0.4860183894634247,
+ "learning_rate": 0.0006,
+ "loss": 5.1610212326049805,
+ "step": 406
+ },
+ {
+ "epoch": 5.657055482743556,
+ "grad_norm": 0.4065648913383484,
+ "learning_rate": 0.0006,
+ "loss": 5.1260786056518555,
+ "step": 407
+ },
+ {
+ "epoch": 5.671035386631717,
+ "grad_norm": 0.39606142044067383,
+ "learning_rate": 0.0006,
+ "loss": 5.1598711013793945,
+ "step": 408
+ },
+ {
+ "epoch": 5.685015290519877,
+ "grad_norm": 0.4705151319503784,
+ "learning_rate": 0.0006,
+ "loss": 5.166455268859863,
+ "step": 409
+ },
+ {
+ "epoch": 5.698995194408038,
+ "grad_norm": 0.5040799379348755,
+ "learning_rate": 0.0006,
+ "loss": 5.1408209800720215,
+ "step": 410
+ },
+ {
+ "epoch": 5.712975098296199,
+ "grad_norm": 0.5012556910514832,
+ "learning_rate": 0.0006,
+ "loss": 5.144109725952148,
+ "step": 411
+ },
+ {
+ "epoch": 5.72695500218436,
+ "grad_norm": 0.44301411509513855,
+ "learning_rate": 0.0006,
+ "loss": 5.155509948730469,
+ "step": 412
+ },
+ {
+ "epoch": 5.740934906072521,
+ "grad_norm": 0.36632269620895386,
+ "learning_rate": 0.0006,
+ "loss": 5.123111248016357,
+ "step": 413
+ },
+ {
+ "epoch": 5.754914809960681,
+ "grad_norm": 0.2980524003505707,
+ "learning_rate": 0.0006,
+ "loss": 5.1355719566345215,
+ "step": 414
+ },
+ {
+ "epoch": 5.768894713848843,
+ "grad_norm": 0.3441782295703888,
+ "learning_rate": 0.0006,
+ "loss": 5.132327079772949,
+ "step": 415
+ },
+ {
+ "epoch": 5.782874617737003,
+ "grad_norm": 0.4150780737400055,
+ "learning_rate": 0.0006,
+ "loss": 5.148543357849121,
+ "step": 416
+ },
+ {
+ "epoch": 5.796854521625164,
+ "grad_norm": 0.48417383432388306,
+ "learning_rate": 0.0006,
+ "loss": 5.104989528656006,
+ "step": 417
+ },
+ {
+ "epoch": 5.810834425513325,
+ "grad_norm": 0.3216031491756439,
+ "learning_rate": 0.0006,
+ "loss": 5.0926127433776855,
+ "step": 418
+ },
+ {
+ "epoch": 5.824814329401486,
+ "grad_norm": 0.2821158468723297,
+ "learning_rate": 0.0006,
+ "loss": 5.112299919128418,
+ "step": 419
+ },
+ {
+ "epoch": 5.838794233289646,
+ "grad_norm": 0.29821011424064636,
+ "learning_rate": 0.0006,
+ "loss": 5.091662406921387,
+ "step": 420
+ },
+ {
+ "epoch": 5.852774137177807,
+ "grad_norm": 0.30570563673973083,
+ "learning_rate": 0.0006,
+ "loss": 5.137539863586426,
+ "step": 421
+ },
+ {
+ "epoch": 5.866754041065968,
+ "grad_norm": 0.4029594957828522,
+ "learning_rate": 0.0006,
+ "loss": 5.112751007080078,
+ "step": 422
+ },
+ {
+ "epoch": 5.8807339449541285,
+ "grad_norm": 0.3878514766693115,
+ "learning_rate": 0.0006,
+ "loss": 5.094973564147949,
+ "step": 423
+ },
+ {
+ "epoch": 5.894713848842289,
+ "grad_norm": 0.31936126947402954,
+ "learning_rate": 0.0006,
+ "loss": 5.081070899963379,
+ "step": 424
+ },
+ {
+ "epoch": 5.90869375273045,
+ "grad_norm": 0.3309082090854645,
+ "learning_rate": 0.0006,
+ "loss": 5.06803560256958,
+ "step": 425
+ },
+ {
+ "epoch": 5.922673656618611,
+ "grad_norm": 0.27830439805984497,
+ "learning_rate": 0.0006,
+ "loss": 5.044766426086426,
+ "step": 426
+ },
+ {
+ "epoch": 5.936653560506771,
+ "grad_norm": 0.3301011919975281,
+ "learning_rate": 0.0006,
+ "loss": 5.093942165374756,
+ "step": 427
+ },
+ {
+ "epoch": 5.950633464394932,
+ "grad_norm": 0.40845948457717896,
+ "learning_rate": 0.0006,
+ "loss": 5.0889458656311035,
+ "step": 428
+ },
+ {
+ "epoch": 5.964613368283093,
+ "grad_norm": 0.4412153959274292,
+ "learning_rate": 0.0006,
+ "loss": 5.064834117889404,
+ "step": 429
+ },
+ {
+ "epoch": 5.978593272171254,
+ "grad_norm": 0.3592590093612671,
+ "learning_rate": 0.0006,
+ "loss": 5.066648006439209,
+ "step": 430
+ },
+ {
+ "epoch": 5.992573176059414,
+ "grad_norm": 0.3952840268611908,
+ "learning_rate": 0.0006,
+ "loss": 5.066549301147461,
+ "step": 431
+ },
+ {
+ "epoch": 6.0,
+ "grad_norm": 0.38878682255744934,
+ "learning_rate": 0.0006,
+ "loss": 5.0354323387146,
+ "step": 432
+ },
+ {
+ "epoch": 6.0,
+ "eval_loss": 5.473907947540283,
+ "eval_runtime": 44.5121,
+ "eval_samples_per_second": 54.861,
+ "eval_steps_per_second": 3.437,
+ "step": 432
+ },
+ {
+ "epoch": 6.013979903888161,
+ "grad_norm": 0.42730140686035156,
+ "learning_rate": 0.0006,
+ "loss": 5.048557281494141,
+ "step": 433
+ },
+ {
+ "epoch": 6.0279598077763215,
+ "grad_norm": 0.32713913917541504,
+ "learning_rate": 0.0006,
+ "loss": 5.041255950927734,
+ "step": 434
+ },
+ {
+ "epoch": 6.041939711664482,
+ "grad_norm": 0.32520365715026855,
+ "learning_rate": 0.0006,
+ "loss": 5.043124198913574,
+ "step": 435
+ },
+ {
+ "epoch": 6.055919615552643,
+ "grad_norm": 0.2941839098930359,
+ "learning_rate": 0.0006,
+ "loss": 5.0407304763793945,
+ "step": 436
+ },
+ {
+ "epoch": 6.069899519440804,
+ "grad_norm": 0.3088819682598114,
+ "learning_rate": 0.0006,
+ "loss": 5.020771026611328,
+ "step": 437
+ },
+ {
+ "epoch": 6.083879423328964,
+ "grad_norm": 0.34334254264831543,
+ "learning_rate": 0.0006,
+ "loss": 5.0260009765625,
+ "step": 438
+ },
+ {
+ "epoch": 6.097859327217125,
+ "grad_norm": 0.33016136288642883,
+ "learning_rate": 0.0006,
+ "loss": 4.994412899017334,
+ "step": 439
+ },
+ {
+ "epoch": 6.111839231105286,
+ "grad_norm": 0.2527366280555725,
+ "learning_rate": 0.0006,
+ "loss": 4.997830390930176,
+ "step": 440
+ },
+ {
+ "epoch": 6.1258191349934465,
+ "grad_norm": 0.24742509424686432,
+ "learning_rate": 0.0006,
+ "loss": 5.017087936401367,
+ "step": 441
+ },
+ {
+ "epoch": 6.139799038881607,
+ "grad_norm": 0.22578303515911102,
+ "learning_rate": 0.0006,
+ "loss": 5.000683784484863,
+ "step": 442
+ },
+ {
+ "epoch": 6.153778942769769,
+ "grad_norm": 0.21213896572589874,
+ "learning_rate": 0.0006,
+ "loss": 4.993280410766602,
+ "step": 443
+ },
+ {
+ "epoch": 6.16775884665793,
+ "grad_norm": 0.22559592127799988,
+ "learning_rate": 0.0006,
+ "loss": 5.005735874176025,
+ "step": 444
+ },
+ {
+ "epoch": 6.18173875054609,
+ "grad_norm": 0.18574322760105133,
+ "learning_rate": 0.0006,
+ "loss": 4.996601104736328,
+ "step": 445
+ },
+ {
+ "epoch": 6.195718654434251,
+ "grad_norm": 0.1793852299451828,
+ "learning_rate": 0.0006,
+ "loss": 4.977394104003906,
+ "step": 446
+ },
+ {
+ "epoch": 6.209698558322412,
+ "grad_norm": 0.1851297914981842,
+ "learning_rate": 0.0006,
+ "loss": 4.983541488647461,
+ "step": 447
+ },
+ {
+ "epoch": 6.2236784622105725,
+ "grad_norm": 0.2045268565416336,
+ "learning_rate": 0.0006,
+ "loss": 4.992830276489258,
+ "step": 448
+ },
+ {
+ "epoch": 6.237658366098733,
+ "grad_norm": 0.21707463264465332,
+ "learning_rate": 0.0006,
+ "loss": 4.998589515686035,
+ "step": 449
+ },
+ {
+ "epoch": 6.251638269986894,
+ "grad_norm": 0.2805860638618469,
+ "learning_rate": 0.0006,
+ "loss": 4.973134517669678,
+ "step": 450
+ },
+ {
+ "epoch": 6.265618173875055,
+ "grad_norm": 0.33102089166641235,
+ "learning_rate": 0.0006,
+ "loss": 4.957348823547363,
+ "step": 451
+ },
+ {
+ "epoch": 6.279598077763215,
+ "grad_norm": 0.3763096034526825,
+ "learning_rate": 0.0006,
+ "loss": 5.0133256912231445,
+ "step": 452
+ },
+ {
+ "epoch": 6.293577981651376,
+ "grad_norm": 0.4676196575164795,
+ "learning_rate": 0.0006,
+ "loss": 4.972289562225342,
+ "step": 453
+ },
+ {
+ "epoch": 6.307557885539537,
+ "grad_norm": 0.6158978343009949,
+ "learning_rate": 0.0006,
+ "loss": 4.989326477050781,
+ "step": 454
+ },
+ {
+ "epoch": 6.321537789427698,
+ "grad_norm": 0.537460446357727,
+ "learning_rate": 0.0006,
+ "loss": 5.0210676193237305,
+ "step": 455
+ },
+ {
+ "epoch": 6.335517693315858,
+ "grad_norm": 0.5342532396316528,
+ "learning_rate": 0.0006,
+ "loss": 4.988524436950684,
+ "step": 456
+ },
+ {
+ "epoch": 6.349497597204019,
+ "grad_norm": 0.5736384987831116,
+ "learning_rate": 0.0006,
+ "loss": 4.977508068084717,
+ "step": 457
+ },
+ {
+ "epoch": 6.36347750109218,
+ "grad_norm": 0.6656201481819153,
+ "learning_rate": 0.0006,
+ "loss": 5.047934055328369,
+ "step": 458
+ },
+ {
+ "epoch": 6.3774574049803405,
+ "grad_norm": 0.6388342380523682,
+ "learning_rate": 0.0006,
+ "loss": 5.017617225646973,
+ "step": 459
+ },
+ {
+ "epoch": 6.391437308868501,
+ "grad_norm": 0.6620904207229614,
+ "learning_rate": 0.0006,
+ "loss": 5.032195091247559,
+ "step": 460
+ },
+ {
+ "epoch": 6.405417212756662,
+ "grad_norm": 0.693274974822998,
+ "learning_rate": 0.0006,
+ "loss": 5.02433967590332,
+ "step": 461
+ },
+ {
+ "epoch": 6.419397116644823,
+ "grad_norm": 0.6888924241065979,
+ "learning_rate": 0.0006,
+ "loss": 5.010735511779785,
+ "step": 462
+ },
+ {
+ "epoch": 6.433377020532983,
+ "grad_norm": 0.7181721925735474,
+ "learning_rate": 0.0006,
+ "loss": 5.049690246582031,
+ "step": 463
+ },
+ {
+ "epoch": 6.447356924421145,
+ "grad_norm": 0.7225117087364197,
+ "learning_rate": 0.0006,
+ "loss": 5.031939506530762,
+ "step": 464
+ },
+ {
+ "epoch": 6.461336828309306,
+ "grad_norm": 0.5268304347991943,
+ "learning_rate": 0.0006,
+ "loss": 5.01638126373291,
+ "step": 465
+ },
+ {
+ "epoch": 6.4753167321974665,
+ "grad_norm": 0.38218435645103455,
+ "learning_rate": 0.0006,
+ "loss": 4.997034072875977,
+ "step": 466
+ },
+ {
+ "epoch": 6.489296636085627,
+ "grad_norm": 0.3576396703720093,
+ "learning_rate": 0.0006,
+ "loss": 5.006804943084717,
+ "step": 467
+ },
+ {
+ "epoch": 6.503276539973788,
+ "grad_norm": 0.3305981755256653,
+ "learning_rate": 0.0006,
+ "loss": 4.994671821594238,
+ "step": 468
+ },
+ {
+ "epoch": 6.517256443861949,
+ "grad_norm": 0.3254900574684143,
+ "learning_rate": 0.0006,
+ "loss": 4.9747490882873535,
+ "step": 469
+ },
+ {
+ "epoch": 6.531236347750109,
+ "grad_norm": 0.2655033469200134,
+ "learning_rate": 0.0006,
+ "loss": 5.002863883972168,
+ "step": 470
+ },
+ {
+ "epoch": 6.54521625163827,
+ "grad_norm": 0.2620532810688019,
+ "learning_rate": 0.0006,
+ "loss": 4.9813337326049805,
+ "step": 471
+ },
+ {
+ "epoch": 6.559196155526431,
+ "grad_norm": 0.22128869593143463,
+ "learning_rate": 0.0006,
+ "loss": 4.978368759155273,
+ "step": 472
+ },
+ {
+ "epoch": 6.573176059414592,
+ "grad_norm": 0.22638699412345886,
+ "learning_rate": 0.0006,
+ "loss": 4.944509029388428,
+ "step": 473
+ },
+ {
+ "epoch": 6.587155963302752,
+ "grad_norm": 0.20720207691192627,
+ "learning_rate": 0.0006,
+ "loss": 4.98404598236084,
+ "step": 474
+ },
+ {
+ "epoch": 6.601135867190913,
+ "grad_norm": 0.21577289700508118,
+ "learning_rate": 0.0006,
+ "loss": 4.958878040313721,
+ "step": 475
+ },
+ {
+ "epoch": 6.615115771079074,
+ "grad_norm": 0.22453972697257996,
+ "learning_rate": 0.0006,
+ "loss": 4.935467720031738,
+ "step": 476
+ },
+ {
+ "epoch": 6.6290956749672345,
+ "grad_norm": 0.20757712423801422,
+ "learning_rate": 0.0006,
+ "loss": 4.943334579467773,
+ "step": 477
+ },
+ {
+ "epoch": 6.643075578855395,
+ "grad_norm": 0.22808043658733368,
+ "learning_rate": 0.0006,
+ "loss": 4.936544418334961,
+ "step": 478
+ },
+ {
+ "epoch": 6.657055482743556,
+ "grad_norm": 0.2193756401538849,
+ "learning_rate": 0.0006,
+ "loss": 4.938162326812744,
+ "step": 479
+ },
+ {
+ "epoch": 6.671035386631717,
+ "grad_norm": 0.19677500426769257,
+ "learning_rate": 0.0006,
+ "loss": 4.9026713371276855,
+ "step": 480
+ },
+ {
+ "epoch": 6.685015290519877,
+ "grad_norm": 0.17271658778190613,
+ "learning_rate": 0.0006,
+ "loss": 4.912519454956055,
+ "step": 481
+ },
+ {
+ "epoch": 6.698995194408038,
+ "grad_norm": 0.17551499605178833,
+ "learning_rate": 0.0006,
+ "loss": 4.929941177368164,
+ "step": 482
+ },
+ {
+ "epoch": 6.712975098296199,
+ "grad_norm": 0.1582687348127365,
+ "learning_rate": 0.0006,
+ "loss": 4.908967971801758,
+ "step": 483
+ },
+ {
+ "epoch": 6.72695500218436,
+ "grad_norm": 0.1593410074710846,
+ "learning_rate": 0.0006,
+ "loss": 4.901554107666016,
+ "step": 484
+ },
+ {
+ "epoch": 6.740934906072521,
+ "grad_norm": 0.16746895015239716,
+ "learning_rate": 0.0006,
+ "loss": 4.917915344238281,
+ "step": 485
+ },
+ {
+ "epoch": 6.754914809960681,
+ "grad_norm": 0.17066062986850739,
+ "learning_rate": 0.0006,
+ "loss": 4.912853240966797,
+ "step": 486
+ },
+ {
+ "epoch": 6.768894713848843,
+ "grad_norm": 0.16727769374847412,
+ "learning_rate": 0.0006,
+ "loss": 4.895434856414795,
+ "step": 487
+ },
+ {
+ "epoch": 6.782874617737003,
+ "grad_norm": 0.1784558743238449,
+ "learning_rate": 0.0006,
+ "loss": 4.8805341720581055,
+ "step": 488
+ },
+ {
+ "epoch": 6.796854521625164,
+ "grad_norm": 0.176686093211174,
+ "learning_rate": 0.0006,
+ "loss": 4.855296611785889,
+ "step": 489
+ },
+ {
+ "epoch": 6.810834425513325,
+ "grad_norm": 0.21577849984169006,
+ "learning_rate": 0.0006,
+ "loss": 4.885506629943848,
+ "step": 490
+ },
+ {
+ "epoch": 6.824814329401486,
+ "grad_norm": 0.27615776658058167,
+ "learning_rate": 0.0006,
+ "loss": 4.913756847381592,
+ "step": 491
+ },
+ {
+ "epoch": 6.838794233289646,
+ "grad_norm": 0.3653675615787506,
+ "learning_rate": 0.0006,
+ "loss": 4.880918979644775,
+ "step": 492
+ },
+ {
+ "epoch": 6.852774137177807,
+ "grad_norm": 0.41473883390426636,
+ "learning_rate": 0.0006,
+ "loss": 4.894164562225342,
+ "step": 493
+ },
+ {
+ "epoch": 6.866754041065968,
+ "grad_norm": 0.45850715041160583,
+ "learning_rate": 0.0006,
+ "loss": 4.907922744750977,
+ "step": 494
+ },
+ {
+ "epoch": 6.8807339449541285,
+ "grad_norm": 0.4675290882587433,
+ "learning_rate": 0.0006,
+ "loss": 4.883112907409668,
+ "step": 495
+ },
+ {
+ "epoch": 6.894713848842289,
+ "grad_norm": 0.45795994997024536,
+ "learning_rate": 0.0006,
+ "loss": 4.897843360900879,
+ "step": 496
+ },
+ {
+ "epoch": 6.90869375273045,
+ "grad_norm": 0.46130508184432983,
+ "learning_rate": 0.0006,
+ "loss": 4.890612602233887,
+ "step": 497
+ },
+ {
+ "epoch": 6.922673656618611,
+ "grad_norm": 0.44783803820610046,
+ "learning_rate": 0.0006,
+ "loss": 4.880192756652832,
+ "step": 498
+ },
+ {
+ "epoch": 6.936653560506771,
+ "grad_norm": 0.35361284017562866,
+ "learning_rate": 0.0006,
+ "loss": 4.840778350830078,
+ "step": 499
+ },
+ {
+ "epoch": 6.950633464394932,
+ "grad_norm": 0.34027689695358276,
+ "learning_rate": 0.0006,
+ "loss": 4.871222496032715,
+ "step": 500
+ },
+ {
+ "epoch": 6.964613368283093,
+ "grad_norm": 0.30228909850120544,
+ "learning_rate": 0.0006,
+ "loss": 4.868077278137207,
+ "step": 501
+ },
+ {
+ "epoch": 6.978593272171254,
+ "grad_norm": 0.27706998586654663,
+ "learning_rate": 0.0006,
+ "loss": 4.895936012268066,
+ "step": 502
+ },
+ {
+ "epoch": 6.992573176059414,
+ "grad_norm": 0.3516870439052582,
+ "learning_rate": 0.0006,
+ "loss": 4.824636459350586,
+ "step": 503
+ },
+ {
+ "epoch": 7.0,
+ "grad_norm": 0.36831387877464294,
+ "learning_rate": 0.0006,
+ "loss": 4.874397277832031,
+ "step": 504
+ },
+ {
+ "epoch": 7.0,
+ "eval_loss": 5.176281452178955,
+ "eval_runtime": 44.2386,
+ "eval_samples_per_second": 55.201,
+ "eval_steps_per_second": 3.459,
+ "step": 504
+ },
+ {
+ "epoch": 7.013979903888161,
+ "grad_norm": 0.4265240430831909,
+ "learning_rate": 0.0006,
+ "loss": 4.814333438873291,
+ "step": 505
+ },
+ {
+ "epoch": 7.0279598077763215,
+ "grad_norm": 0.5126975774765015,
+ "learning_rate": 0.0006,
+ "loss": 4.852343559265137,
+ "step": 506
+ },
+ {
+ "epoch": 7.041939711664482,
+ "grad_norm": 0.43080806732177734,
+ "learning_rate": 0.0006,
+ "loss": 4.843439102172852,
+ "step": 507
+ },
+ {
+ "epoch": 7.055919615552643,
+ "grad_norm": 0.43170198798179626,
+ "learning_rate": 0.0006,
+ "loss": 4.845984935760498,
+ "step": 508
+ },
+ {
+ "epoch": 7.069899519440804,
+ "grad_norm": 0.5640552043914795,
+ "learning_rate": 0.0006,
+ "loss": 4.840991973876953,
+ "step": 509
+ },
+ {
+ "epoch": 7.083879423328964,
+ "grad_norm": 0.540381133556366,
+ "learning_rate": 0.0006,
+ "loss": 4.801316738128662,
+ "step": 510
+ },
+ {
+ "epoch": 7.097859327217125,
+ "grad_norm": 0.5412097573280334,
+ "learning_rate": 0.0006,
+ "loss": 4.886598587036133,
+ "step": 511
+ },
+ {
+ "epoch": 7.111839231105286,
+ "grad_norm": 0.630648136138916,
+ "learning_rate": 0.0006,
+ "loss": 4.849774360656738,
+ "step": 512
+ },
+ {
+ "epoch": 7.1258191349934465,
+ "grad_norm": 0.569952130317688,
+ "learning_rate": 0.0006,
+ "loss": 4.870607376098633,
+ "step": 513
+ },
+ {
+ "epoch": 7.139799038881607,
+ "grad_norm": 0.42051541805267334,
+ "learning_rate": 0.0006,
+ "loss": 4.83833122253418,
+ "step": 514
+ },
+ {
+ "epoch": 7.153778942769769,
+ "grad_norm": 0.3930990397930145,
+ "learning_rate": 0.0006,
+ "loss": 4.853984355926514,
+ "step": 515
+ },
+ {
+ "epoch": 7.16775884665793,
+ "grad_norm": 0.512886106967926,
+ "learning_rate": 0.0006,
+ "loss": 4.815458297729492,
+ "step": 516
+ },
+ {
+ "epoch": 7.18173875054609,
+ "grad_norm": 0.42580172419548035,
+ "learning_rate": 0.0006,
+ "loss": 4.825312614440918,
+ "step": 517
+ },
+ {
+ "epoch": 7.195718654434251,
+ "grad_norm": 0.31628182530403137,
+ "learning_rate": 0.0006,
+ "loss": 4.806377410888672,
+ "step": 518
+ },
+ {
+ "epoch": 7.209698558322412,
+ "grad_norm": 0.3109956681728363,
+ "learning_rate": 0.0006,
+ "loss": 4.819339752197266,
+ "step": 519
+ },
+ {
+ "epoch": 7.2236784622105725,
+ "grad_norm": 0.2740071415901184,
+ "learning_rate": 0.0006,
+ "loss": 4.81319522857666,
+ "step": 520
+ },
+ {
+ "epoch": 7.237658366098733,
+ "grad_norm": 0.26441165804862976,
+ "learning_rate": 0.0006,
+ "loss": 4.8107380867004395,
+ "step": 521
+ },
+ {
+ "epoch": 7.251638269986894,
+ "grad_norm": 0.2496110051870346,
+ "learning_rate": 0.0006,
+ "loss": 4.785193920135498,
+ "step": 522
+ },
+ {
+ "epoch": 7.265618173875055,
+ "grad_norm": 0.2565560042858124,
+ "learning_rate": 0.0006,
+ "loss": 4.802750587463379,
+ "step": 523
+ },
+ {
+ "epoch": 7.279598077763215,
+ "grad_norm": 0.2126980572938919,
+ "learning_rate": 0.0006,
+ "loss": 4.763580322265625,
+ "step": 524
+ },
+ {
+ "epoch": 7.293577981651376,
+ "grad_norm": 0.2169921100139618,
+ "learning_rate": 0.0006,
+ "loss": 4.756124973297119,
+ "step": 525
+ },
+ {
+ "epoch": 7.307557885539537,
+ "grad_norm": 0.2372167706489563,
+ "learning_rate": 0.0006,
+ "loss": 4.786888599395752,
+ "step": 526
+ },
+ {
+ "epoch": 7.321537789427698,
+ "grad_norm": 0.2124386429786682,
+ "learning_rate": 0.0006,
+ "loss": 4.777996063232422,
+ "step": 527
+ },
+ {
+ "epoch": 7.335517693315858,
+ "grad_norm": 0.18585442006587982,
+ "learning_rate": 0.0006,
+ "loss": 4.770537853240967,
+ "step": 528
+ },
+ {
+ "epoch": 7.349497597204019,
+ "grad_norm": 0.20515340566635132,
+ "learning_rate": 0.0006,
+ "loss": 4.769230842590332,
+ "step": 529
+ },
+ {
+ "epoch": 7.36347750109218,
+ "grad_norm": 0.19906704127788544,
+ "learning_rate": 0.0006,
+ "loss": 4.752581596374512,
+ "step": 530
+ },
+ {
+ "epoch": 7.3774574049803405,
+ "grad_norm": 0.2030428946018219,
+ "learning_rate": 0.0006,
+ "loss": 4.7353715896606445,
+ "step": 531
+ },
+ {
+ "epoch": 7.391437308868501,
+ "grad_norm": 0.17820630967617035,
+ "learning_rate": 0.0006,
+ "loss": 4.742705345153809,
+ "step": 532
+ },
+ {
+ "epoch": 7.405417212756662,
+ "grad_norm": 0.17642682790756226,
+ "learning_rate": 0.0006,
+ "loss": 4.752669334411621,
+ "step": 533
+ },
+ {
+ "epoch": 7.419397116644823,
+ "grad_norm": 0.18088409304618835,
+ "learning_rate": 0.0006,
+ "loss": 4.734611511230469,
+ "step": 534
+ },
+ {
+ "epoch": 7.433377020532983,
+ "grad_norm": 0.20897020399570465,
+ "learning_rate": 0.0006,
+ "loss": 4.756442070007324,
+ "step": 535
+ },
+ {
+ "epoch": 7.447356924421145,
+ "grad_norm": 0.23166777193546295,
+ "learning_rate": 0.0006,
+ "loss": 4.712922096252441,
+ "step": 536
+ },
+ {
+ "epoch": 7.461336828309306,
+ "grad_norm": 0.2205347716808319,
+ "learning_rate": 0.0006,
+ "loss": 4.75001335144043,
+ "step": 537
+ },
+ {
+ "epoch": 7.4753167321974665,
+ "grad_norm": 0.23868022859096527,
+ "learning_rate": 0.0006,
+ "loss": 4.726134300231934,
+ "step": 538
+ },
+ {
+ "epoch": 7.489296636085627,
+ "grad_norm": 0.2861441373825073,
+ "learning_rate": 0.0006,
+ "loss": 4.754112243652344,
+ "step": 539
+ },
+ {
+ "epoch": 7.503276539973788,
+ "grad_norm": 0.28980305790901184,
+ "learning_rate": 0.0006,
+ "loss": 4.716021537780762,
+ "step": 540
+ },
+ {
+ "epoch": 7.517256443861949,
+ "grad_norm": 0.2784835696220398,
+ "learning_rate": 0.0006,
+ "loss": 4.713929176330566,
+ "step": 541
+ },
+ {
+ "epoch": 7.531236347750109,
+ "grad_norm": 0.2962653934955597,
+ "learning_rate": 0.0006,
+ "loss": 4.711845397949219,
+ "step": 542
+ },
+ {
+ "epoch": 7.54521625163827,
+ "grad_norm": 0.3333161175251007,
+ "learning_rate": 0.0006,
+ "loss": 4.709834575653076,
+ "step": 543
+ },
+ {
+ "epoch": 7.559196155526431,
+ "grad_norm": 0.35304850339889526,
+ "learning_rate": 0.0006,
+ "loss": 4.732914924621582,
+ "step": 544
+ },
+ {
+ "epoch": 7.573176059414592,
+ "grad_norm": 0.4165869355201721,
+ "learning_rate": 0.0006,
+ "loss": 4.716190338134766,
+ "step": 545
+ },
+ {
+ "epoch": 7.587155963302752,
+ "grad_norm": 0.4878059923648834,
+ "learning_rate": 0.0006,
+ "loss": 4.723773002624512,
+ "step": 546
+ },
+ {
+ "epoch": 7.601135867190913,
+ "grad_norm": 0.36643707752227783,
+ "learning_rate": 0.0006,
+ "loss": 4.721458911895752,
+ "step": 547
+ },
+ {
+ "epoch": 7.615115771079074,
+ "grad_norm": 0.4046908915042877,
+ "learning_rate": 0.0006,
+ "loss": 4.715397834777832,
+ "step": 548
+ },
+ {
+ "epoch": 7.6290956749672345,
+ "grad_norm": 0.44426342844963074,
+ "learning_rate": 0.0006,
+ "loss": 4.737357139587402,
+ "step": 549
+ },
+ {
+ "epoch": 7.643075578855395,
+ "grad_norm": 0.4181079864501953,
+ "learning_rate": 0.0006,
+ "loss": 4.731383800506592,
+ "step": 550
+ },
+ {
+ "epoch": 7.657055482743556,
+ "grad_norm": 0.3486088216304779,
+ "learning_rate": 0.0006,
+ "loss": 4.728029727935791,
+ "step": 551
+ },
+ {
+ "epoch": 7.671035386631717,
+ "grad_norm": 0.37150970101356506,
+ "learning_rate": 0.0006,
+ "loss": 4.7083210945129395,
+ "step": 552
+ },
+ {
+ "epoch": 7.685015290519877,
+ "grad_norm": 0.43324410915374756,
+ "learning_rate": 0.0006,
+ "loss": 4.728720664978027,
+ "step": 553
+ },
+ {
+ "epoch": 7.698995194408038,
+ "grad_norm": 0.5026620626449585,
+ "learning_rate": 0.0006,
+ "loss": 4.698156356811523,
+ "step": 554
+ },
+ {
+ "epoch": 7.712975098296199,
+ "grad_norm": 0.4873499274253845,
+ "learning_rate": 0.0006,
+ "loss": 4.7169952392578125,
+ "step": 555
+ },
+ {
+ "epoch": 7.72695500218436,
+ "grad_norm": 0.4285493791103363,
+ "learning_rate": 0.0006,
+ "loss": 4.6877241134643555,
+ "step": 556
+ },
+ {
+ "epoch": 7.740934906072521,
+ "grad_norm": 0.5179854035377502,
+ "learning_rate": 0.0006,
+ "loss": 4.704267501831055,
+ "step": 557
+ },
+ {
+ "epoch": 7.754914809960681,
+ "grad_norm": 0.4642147421836853,
+ "learning_rate": 0.0006,
+ "loss": 4.695004463195801,
+ "step": 558
+ },
+ {
+ "epoch": 7.768894713848843,
+ "grad_norm": 0.47149503231048584,
+ "learning_rate": 0.0006,
+ "loss": 4.694338798522949,
+ "step": 559
+ },
+ {
+ "epoch": 7.782874617737003,
+ "grad_norm": 0.5422149300575256,
+ "learning_rate": 0.0006,
+ "loss": 4.749478340148926,
+ "step": 560
+ },
+ {
+ "epoch": 7.796854521625164,
+ "grad_norm": 0.4360728859901428,
+ "learning_rate": 0.0006,
+ "loss": 4.685191631317139,
+ "step": 561
+ },
+ {
+ "epoch": 7.810834425513325,
+ "grad_norm": 0.4243801534175873,
+ "learning_rate": 0.0006,
+ "loss": 4.69228458404541,
+ "step": 562
+ },
+ {
+ "epoch": 7.824814329401486,
+ "grad_norm": 0.40380290150642395,
+ "learning_rate": 0.0006,
+ "loss": 4.690923690795898,
+ "step": 563
+ },
+ {
+ "epoch": 7.838794233289646,
+ "grad_norm": 0.4352976381778717,
+ "learning_rate": 0.0006,
+ "loss": 4.720489978790283,
+ "step": 564
+ },
+ {
+ "epoch": 7.852774137177807,
+ "grad_norm": 0.44634920358657837,
+ "learning_rate": 0.0006,
+ "loss": 4.683789253234863,
+ "step": 565
+ },
+ {
+ "epoch": 7.866754041065968,
+ "grad_norm": 0.3818186819553375,
+ "learning_rate": 0.0006,
+ "loss": 4.696887016296387,
+ "step": 566
+ },
+ {
+ "epoch": 7.8807339449541285,
+ "grad_norm": 0.35270464420318604,
+ "learning_rate": 0.0006,
+ "loss": 4.715676307678223,
+ "step": 567
+ },
+ {
+ "epoch": 7.894713848842289,
+ "grad_norm": 0.249756321310997,
+ "learning_rate": 0.0006,
+ "loss": 4.672721862792969,
+ "step": 568
+ },
+ {
+ "epoch": 7.90869375273045,
+ "grad_norm": 0.25097888708114624,
+ "learning_rate": 0.0006,
+ "loss": 4.663518905639648,
+ "step": 569
+ },
+ {
+ "epoch": 7.922673656618611,
+ "grad_norm": 0.26563209295272827,
+ "learning_rate": 0.0006,
+ "loss": 4.675405025482178,
+ "step": 570
+ },
+ {
+ "epoch": 7.936653560506771,
+ "grad_norm": 0.26451292634010315,
+ "learning_rate": 0.0006,
+ "loss": 4.651235103607178,
+ "step": 571
+ },
+ {
+ "epoch": 7.950633464394932,
+ "grad_norm": 0.24185842275619507,
+ "learning_rate": 0.0006,
+ "loss": 4.671639919281006,
+ "step": 572
+ },
+ {
+ "epoch": 7.964613368283093,
+ "grad_norm": 0.21506108343601227,
+ "learning_rate": 0.0006,
+ "loss": 4.665352821350098,
+ "step": 573
+ },
+ {
+ "epoch": 7.978593272171254,
+ "grad_norm": 0.24365705251693726,
+ "learning_rate": 0.0006,
+ "loss": 4.663162708282471,
+ "step": 574
+ },
+ {
+ "epoch": 7.992573176059414,
+ "grad_norm": 0.24251042306423187,
+ "learning_rate": 0.0006,
+ "loss": 4.666633605957031,
+ "step": 575
+ },
+ {
+ "epoch": 8.0,
+ "grad_norm": 0.24187657237052917,
+ "learning_rate": 0.0006,
+ "loss": 4.63957405090332,
+ "step": 576
+ },
+ {
+ "epoch": 8.0,
+ "eval_loss": 4.923156261444092,
+ "eval_runtime": 44.1587,
+ "eval_samples_per_second": 55.301,
+ "eval_steps_per_second": 3.465,
+ "step": 576
+ },
+ {
+ "epoch": 8.013979903888162,
+ "grad_norm": 0.21323645114898682,
+ "learning_rate": 0.0006,
+ "loss": 4.636347770690918,
+ "step": 577
+ },
+ {
+ "epoch": 8.027959807776321,
+ "grad_norm": 0.2325759083032608,
+ "learning_rate": 0.0006,
+ "loss": 4.60684871673584,
+ "step": 578
+ },
+ {
+ "epoch": 8.041939711664483,
+ "grad_norm": 0.26741257309913635,
+ "learning_rate": 0.0006,
+ "loss": 4.647780418395996,
+ "step": 579
+ },
+ {
+ "epoch": 8.055919615552643,
+ "grad_norm": 0.285720556974411,
+ "learning_rate": 0.0006,
+ "loss": 4.629637718200684,
+ "step": 580
+ },
+ {
+ "epoch": 8.069899519440805,
+ "grad_norm": 0.2453618347644806,
+ "learning_rate": 0.0006,
+ "loss": 4.62420654296875,
+ "step": 581
+ },
+ {
+ "epoch": 8.083879423328964,
+ "grad_norm": 0.19662636518478394,
+ "learning_rate": 0.0006,
+ "loss": 4.593767166137695,
+ "step": 582
+ },
+ {
+ "epoch": 8.097859327217126,
+ "grad_norm": 0.22731931507587433,
+ "learning_rate": 0.0006,
+ "loss": 4.627089023590088,
+ "step": 583
+ },
+ {
+ "epoch": 8.111839231105286,
+ "grad_norm": 0.24452590942382812,
+ "learning_rate": 0.0006,
+ "loss": 4.613677024841309,
+ "step": 584
+ },
+ {
+ "epoch": 8.125819134993447,
+ "grad_norm": 0.2952791154384613,
+ "learning_rate": 0.0006,
+ "loss": 4.604985237121582,
+ "step": 585
+ },
+ {
+ "epoch": 8.139799038881607,
+ "grad_norm": 0.3184696137905121,
+ "learning_rate": 0.0006,
+ "loss": 4.589205741882324,
+ "step": 586
+ },
+ {
+ "epoch": 8.153778942769769,
+ "grad_norm": 0.2948093116283417,
+ "learning_rate": 0.0006,
+ "loss": 4.605442047119141,
+ "step": 587
+ },
+ {
+ "epoch": 8.167758846657929,
+ "grad_norm": 0.2450508326292038,
+ "learning_rate": 0.0006,
+ "loss": 4.615349292755127,
+ "step": 588
+ },
+ {
+ "epoch": 8.18173875054609,
+ "grad_norm": 0.25664836168289185,
+ "learning_rate": 0.0006,
+ "loss": 4.592251777648926,
+ "step": 589
+ },
+ {
+ "epoch": 8.19571865443425,
+ "grad_norm": 0.24479512870311737,
+ "learning_rate": 0.0006,
+ "loss": 4.6145920753479,
+ "step": 590
+ },
+ {
+ "epoch": 8.209698558322412,
+ "grad_norm": 0.24395205080509186,
+ "learning_rate": 0.0006,
+ "loss": 4.600954055786133,
+ "step": 591
+ },
+ {
+ "epoch": 8.223678462210572,
+ "grad_norm": 0.21804189682006836,
+ "learning_rate": 0.0006,
+ "loss": 4.607785224914551,
+ "step": 592
+ },
+ {
+ "epoch": 8.237658366098733,
+ "grad_norm": 0.20951785147190094,
+ "learning_rate": 0.0006,
+ "loss": 4.58140754699707,
+ "step": 593
+ },
+ {
+ "epoch": 8.251638269986893,
+ "grad_norm": 0.20415149629116058,
+ "learning_rate": 0.0006,
+ "loss": 4.593405723571777,
+ "step": 594
+ },
+ {
+ "epoch": 8.265618173875055,
+ "grad_norm": 0.19210249185562134,
+ "learning_rate": 0.0006,
+ "loss": 4.603294372558594,
+ "step": 595
+ },
+ {
+ "epoch": 8.279598077763215,
+ "grad_norm": 0.20719751715660095,
+ "learning_rate": 0.0006,
+ "loss": 4.55255651473999,
+ "step": 596
+ },
+ {
+ "epoch": 8.293577981651376,
+ "grad_norm": 0.20101022720336914,
+ "learning_rate": 0.0006,
+ "loss": 4.5928192138671875,
+ "step": 597
+ },
+ {
+ "epoch": 8.307557885539538,
+ "grad_norm": 0.19254222512245178,
+ "learning_rate": 0.0006,
+ "loss": 4.590397834777832,
+ "step": 598
+ },
+ {
+ "epoch": 8.321537789427698,
+ "grad_norm": 0.23234105110168457,
+ "learning_rate": 0.0006,
+ "loss": 4.5987677574157715,
+ "step": 599
+ },
+ {
+ "epoch": 8.33551769331586,
+ "grad_norm": 0.2537451982498169,
+ "learning_rate": 0.0006,
+ "loss": 4.543115615844727,
+ "step": 600
+ },
+ {
+ "epoch": 8.349497597204019,
+ "grad_norm": 0.29171040654182434,
+ "learning_rate": 0.0006,
+ "loss": 4.597387313842773,
+ "step": 601
+ },
+ {
+ "epoch": 8.36347750109218,
+ "grad_norm": 0.3035930097103119,
+ "learning_rate": 0.0006,
+ "loss": 4.566247463226318,
+ "step": 602
+ },
+ {
+ "epoch": 8.37745740498034,
+ "grad_norm": 0.2826756238937378,
+ "learning_rate": 0.0006,
+ "loss": 4.57047176361084,
+ "step": 603
+ },
+ {
+ "epoch": 8.391437308868502,
+ "grad_norm": 0.2959657609462738,
+ "learning_rate": 0.0006,
+ "loss": 4.582820892333984,
+ "step": 604
+ },
+ {
+ "epoch": 8.405417212756662,
+ "grad_norm": 0.3180356025695801,
+ "learning_rate": 0.0006,
+ "loss": 4.5573272705078125,
+ "step": 605
+ },
+ {
+ "epoch": 8.419397116644824,
+ "grad_norm": 0.3617221713066101,
+ "learning_rate": 0.0006,
+ "loss": 4.593079090118408,
+ "step": 606
+ },
+ {
+ "epoch": 8.433377020532983,
+ "grad_norm": 0.35198062658309937,
+ "learning_rate": 0.0006,
+ "loss": 4.615298271179199,
+ "step": 607
+ },
+ {
+ "epoch": 8.447356924421145,
+ "grad_norm": 0.3944903314113617,
+ "learning_rate": 0.0006,
+ "loss": 4.561809539794922,
+ "step": 608
+ },
+ {
+ "epoch": 8.461336828309305,
+ "grad_norm": 0.4525868594646454,
+ "learning_rate": 0.0006,
+ "loss": 4.613105773925781,
+ "step": 609
+ },
+ {
+ "epoch": 8.475316732197467,
+ "grad_norm": 0.4915139079093933,
+ "learning_rate": 0.0006,
+ "loss": 4.566202163696289,
+ "step": 610
+ },
+ {
+ "epoch": 8.489296636085626,
+ "grad_norm": 0.49231988191604614,
+ "learning_rate": 0.0006,
+ "loss": 4.556222915649414,
+ "step": 611
+ },
+ {
+ "epoch": 8.503276539973788,
+ "grad_norm": 0.43036946654319763,
+ "learning_rate": 0.0006,
+ "loss": 4.55517578125,
+ "step": 612
+ },
+ {
+ "epoch": 8.517256443861948,
+ "grad_norm": 0.42405328154563904,
+ "learning_rate": 0.0006,
+ "loss": 4.574039936065674,
+ "step": 613
+ },
+ {
+ "epoch": 8.53123634775011,
+ "grad_norm": 0.3955961763858795,
+ "learning_rate": 0.0006,
+ "loss": 4.6082611083984375,
+ "step": 614
+ },
+ {
+ "epoch": 8.54521625163827,
+ "grad_norm": 0.4377101957798004,
+ "learning_rate": 0.0006,
+ "loss": 4.555740833282471,
+ "step": 615
+ },
+ {
+ "epoch": 8.55919615552643,
+ "grad_norm": 0.4601984918117523,
+ "learning_rate": 0.0006,
+ "loss": 4.553995132446289,
+ "step": 616
+ },
+ {
+ "epoch": 8.57317605941459,
+ "grad_norm": 0.42025700211524963,
+ "learning_rate": 0.0006,
+ "loss": 4.567340850830078,
+ "step": 617
+ },
+ {
+ "epoch": 8.587155963302752,
+ "grad_norm": 0.35569432377815247,
+ "learning_rate": 0.0006,
+ "loss": 4.570140361785889,
+ "step": 618
+ },
+ {
+ "epoch": 8.601135867190912,
+ "grad_norm": 0.37940406799316406,
+ "learning_rate": 0.0006,
+ "loss": 4.581291198730469,
+ "step": 619
+ },
+ {
+ "epoch": 8.615115771079074,
+ "grad_norm": 0.3658490777015686,
+ "learning_rate": 0.0006,
+ "loss": 4.55476188659668,
+ "step": 620
+ },
+ {
+ "epoch": 8.629095674967235,
+ "grad_norm": 0.2908247113227844,
+ "learning_rate": 0.0006,
+ "loss": 4.564087867736816,
+ "step": 621
+ },
+ {
+ "epoch": 8.643075578855395,
+ "grad_norm": 0.29961925745010376,
+ "learning_rate": 0.0006,
+ "loss": 4.556543350219727,
+ "step": 622
+ },
+ {
+ "epoch": 8.657055482743557,
+ "grad_norm": 0.3144846558570862,
+ "learning_rate": 0.0006,
+ "loss": 4.553670883178711,
+ "step": 623
+ },
+ {
+ "epoch": 8.671035386631717,
+ "grad_norm": 0.2845900356769562,
+ "learning_rate": 0.0006,
+ "loss": 4.567296981811523,
+ "step": 624
+ },
+ {
+ "epoch": 8.685015290519878,
+ "grad_norm": 0.253591388463974,
+ "learning_rate": 0.0006,
+ "loss": 4.554507255554199,
+ "step": 625
+ },
+ {
+ "epoch": 8.698995194408038,
+ "grad_norm": 0.2563088536262512,
+ "learning_rate": 0.0006,
+ "loss": 4.542218208312988,
+ "step": 626
+ },
+ {
+ "epoch": 8.7129750982962,
+ "grad_norm": 0.26058217883110046,
+ "learning_rate": 0.0006,
+ "loss": 4.535512447357178,
+ "step": 627
+ },
+ {
+ "epoch": 8.72695500218436,
+ "grad_norm": 0.20749829709529877,
+ "learning_rate": 0.0006,
+ "loss": 4.516959190368652,
+ "step": 628
+ },
+ {
+ "epoch": 8.740934906072521,
+ "grad_norm": 0.2034810334444046,
+ "learning_rate": 0.0006,
+ "loss": 4.55794095993042,
+ "step": 629
+ },
+ {
+ "epoch": 8.754914809960681,
+ "grad_norm": 0.18418121337890625,
+ "learning_rate": 0.0006,
+ "loss": 4.5421247482299805,
+ "step": 630
+ },
+ {
+ "epoch": 8.768894713848843,
+ "grad_norm": 0.20551933348178864,
+ "learning_rate": 0.0006,
+ "loss": 4.50805139541626,
+ "step": 631
+ },
+ {
+ "epoch": 8.782874617737003,
+ "grad_norm": 0.21615999937057495,
+ "learning_rate": 0.0006,
+ "loss": 4.520708084106445,
+ "step": 632
+ },
+ {
+ "epoch": 8.796854521625164,
+ "grad_norm": 0.24864810705184937,
+ "learning_rate": 0.0006,
+ "loss": 4.509330749511719,
+ "step": 633
+ },
+ {
+ "epoch": 8.810834425513324,
+ "grad_norm": 0.2573665380477905,
+ "learning_rate": 0.0006,
+ "loss": 4.531505584716797,
+ "step": 634
+ },
+ {
+ "epoch": 8.824814329401486,
+ "grad_norm": 0.22452878952026367,
+ "learning_rate": 0.0006,
+ "loss": 4.529216289520264,
+ "step": 635
+ },
+ {
+ "epoch": 8.838794233289645,
+ "grad_norm": 0.19727355241775513,
+ "learning_rate": 0.0006,
+ "loss": 4.519906520843506,
+ "step": 636
+ },
+ {
+ "epoch": 8.852774137177807,
+ "grad_norm": 0.19937913119792938,
+ "learning_rate": 0.0006,
+ "loss": 4.536892414093018,
+ "step": 637
+ },
+ {
+ "epoch": 8.866754041065967,
+ "grad_norm": 0.2070389986038208,
+ "learning_rate": 0.0006,
+ "loss": 4.51191520690918,
+ "step": 638
+ },
+ {
+ "epoch": 8.880733944954128,
+ "grad_norm": 0.2293873429298401,
+ "learning_rate": 0.0006,
+ "loss": 4.505377769470215,
+ "step": 639
+ },
+ {
+ "epoch": 8.89471384884229,
+ "grad_norm": 0.21285250782966614,
+ "learning_rate": 0.0006,
+ "loss": 4.5138959884643555,
+ "step": 640
+ },
+ {
+ "epoch": 8.90869375273045,
+ "grad_norm": 0.19487562775611877,
+ "learning_rate": 0.0006,
+ "loss": 4.506108283996582,
+ "step": 641
+ },
+ {
+ "epoch": 8.922673656618612,
+ "grad_norm": 0.21986965835094452,
+ "learning_rate": 0.0006,
+ "loss": 4.506397247314453,
+ "step": 642
+ },
+ {
+ "epoch": 8.936653560506771,
+ "grad_norm": 0.20763885974884033,
+ "learning_rate": 0.0006,
+ "loss": 4.508007049560547,
+ "step": 643
+ },
+ {
+ "epoch": 8.950633464394933,
+ "grad_norm": 0.22858479619026184,
+ "learning_rate": 0.0006,
+ "loss": 4.520846366882324,
+ "step": 644
+ },
+ {
+ "epoch": 8.964613368283093,
+ "grad_norm": 0.23923712968826294,
+ "learning_rate": 0.0006,
+ "loss": 4.535306930541992,
+ "step": 645
+ },
+ {
+ "epoch": 8.978593272171254,
+ "grad_norm": 0.23717579245567322,
+ "learning_rate": 0.0006,
+ "loss": 4.485929489135742,
+ "step": 646
+ },
+ {
+ "epoch": 8.992573176059414,
+ "grad_norm": 0.24033977091312408,
+ "learning_rate": 0.0006,
+ "loss": 4.508999824523926,
+ "step": 647
+ },
+ {
+ "epoch": 9.0,
+ "grad_norm": 0.22432062029838562,
+ "learning_rate": 0.0006,
+ "loss": 4.473136901855469,
+ "step": 648
+ },
+ {
+ "epoch": 9.0,
+ "eval_loss": 4.735903263092041,
+ "eval_runtime": 44.2163,
+ "eval_samples_per_second": 55.228,
+ "eval_steps_per_second": 3.46,
+ "step": 648
+ },
+ {
+ "epoch": 9.013979903888162,
+ "grad_norm": 0.22491489350795746,
+ "learning_rate": 0.0006,
+ "loss": 4.468614101409912,
+ "step": 649
+ },
+ {
+ "epoch": 9.027959807776321,
+ "grad_norm": 0.255759060382843,
+ "learning_rate": 0.0006,
+ "loss": 4.516196250915527,
+ "step": 650
+ },
+ {
+ "epoch": 9.041939711664483,
+ "grad_norm": 0.2591100335121155,
+ "learning_rate": 0.0006,
+ "loss": 4.478276252746582,
+ "step": 651
+ },
+ {
+ "epoch": 9.055919615552643,
+ "grad_norm": 0.30472296476364136,
+ "learning_rate": 0.0006,
+ "loss": 4.479726791381836,
+ "step": 652
+ },
+ {
+ "epoch": 9.069899519440805,
+ "grad_norm": 0.2840559780597687,
+ "learning_rate": 0.0006,
+ "loss": 4.4437384605407715,
+ "step": 653
+ },
+ {
+ "epoch": 9.083879423328964,
+ "grad_norm": 0.2695577144622803,
+ "learning_rate": 0.0006,
+ "loss": 4.476065635681152,
+ "step": 654
+ },
+ {
+ "epoch": 9.097859327217126,
+ "grad_norm": 0.27912381291389465,
+ "learning_rate": 0.0006,
+ "loss": 4.484747409820557,
+ "step": 655
+ },
+ {
+ "epoch": 9.111839231105286,
+ "grad_norm": 0.3091907501220703,
+ "learning_rate": 0.0006,
+ "loss": 4.449443817138672,
+ "step": 656
+ },
+ {
+ "epoch": 9.125819134993447,
+ "grad_norm": 0.30756646394729614,
+ "learning_rate": 0.0006,
+ "loss": 4.496490001678467,
+ "step": 657
+ },
+ {
+ "epoch": 9.139799038881607,
+ "grad_norm": 0.305698037147522,
+ "learning_rate": 0.0006,
+ "loss": 4.466765880584717,
+ "step": 658
+ },
+ {
+ "epoch": 9.153778942769769,
+ "grad_norm": 0.3031201660633087,
+ "learning_rate": 0.0006,
+ "loss": 4.462430953979492,
+ "step": 659
+ },
+ {
+ "epoch": 9.167758846657929,
+ "grad_norm": 0.32725608348846436,
+ "learning_rate": 0.0006,
+ "loss": 4.479879379272461,
+ "step": 660
+ },
+ {
+ "epoch": 9.18173875054609,
+ "grad_norm": 0.31773585081100464,
+ "learning_rate": 0.0006,
+ "loss": 4.473912239074707,
+ "step": 661
+ },
+ {
+ "epoch": 9.19571865443425,
+ "grad_norm": 0.30025365948677063,
+ "learning_rate": 0.0006,
+ "loss": 4.476703643798828,
+ "step": 662
+ },
+ {
+ "epoch": 9.209698558322412,
+ "grad_norm": 0.3177371025085449,
+ "learning_rate": 0.0006,
+ "loss": 4.439765930175781,
+ "step": 663
+ },
+ {
+ "epoch": 9.223678462210572,
+ "grad_norm": 0.3060745894908905,
+ "learning_rate": 0.0006,
+ "loss": 4.487849235534668,
+ "step": 664
+ },
+ {
+ "epoch": 9.237658366098733,
+ "grad_norm": 0.33287373185157776,
+ "learning_rate": 0.0006,
+ "loss": 4.443496227264404,
+ "step": 665
+ },
+ {
+ "epoch": 9.251638269986893,
+ "grad_norm": 0.3758000433444977,
+ "learning_rate": 0.0006,
+ "loss": 4.478017330169678,
+ "step": 666
+ },
+ {
+ "epoch": 9.265618173875055,
+ "grad_norm": 0.32124510407447815,
+ "learning_rate": 0.0006,
+ "loss": 4.4092206954956055,
+ "step": 667
+ },
+ {
+ "epoch": 9.279598077763215,
+ "grad_norm": 0.2786794602870941,
+ "learning_rate": 0.0006,
+ "loss": 4.432734489440918,
+ "step": 668
+ },
+ {
+ "epoch": 9.293577981651376,
+ "grad_norm": 0.35042962431907654,
+ "learning_rate": 0.0006,
+ "loss": 4.462737083435059,
+ "step": 669
+ },
+ {
+ "epoch": 9.307557885539538,
+ "grad_norm": 0.4080469310283661,
+ "learning_rate": 0.0006,
+ "loss": 4.429462432861328,
+ "step": 670
+ },
+ {
+ "epoch": 9.321537789427698,
+ "grad_norm": 0.465158075094223,
+ "learning_rate": 0.0006,
+ "loss": 4.465776443481445,
+ "step": 671
+ },
+ {
+ "epoch": 9.33551769331586,
+ "grad_norm": 0.44833582639694214,
+ "learning_rate": 0.0006,
+ "loss": 4.454195976257324,
+ "step": 672
+ },
+ {
+ "epoch": 9.349497597204019,
+ "grad_norm": 0.451052188873291,
+ "learning_rate": 0.0006,
+ "loss": 4.456139087677002,
+ "step": 673
+ },
+ {
+ "epoch": 9.36347750109218,
+ "grad_norm": 0.3759656250476837,
+ "learning_rate": 0.0006,
+ "loss": 4.461119651794434,
+ "step": 674
+ },
+ {
+ "epoch": 9.37745740498034,
+ "grad_norm": 0.514560341835022,
+ "learning_rate": 0.0006,
+ "loss": 4.49595832824707,
+ "step": 675
+ },
+ {
+ "epoch": 9.391437308868502,
+ "grad_norm": 0.5650647282600403,
+ "learning_rate": 0.0006,
+ "loss": 4.461362838745117,
+ "step": 676
+ },
+ {
+ "epoch": 9.405417212756662,
+ "grad_norm": 0.4218835234642029,
+ "learning_rate": 0.0006,
+ "loss": 4.469146728515625,
+ "step": 677
+ },
+ {
+ "epoch": 9.419397116644824,
+ "grad_norm": 0.4169512689113617,
+ "learning_rate": 0.0006,
+ "loss": 4.470132827758789,
+ "step": 678
+ },
+ {
+ "epoch": 9.433377020532983,
+ "grad_norm": 0.3772219717502594,
+ "learning_rate": 0.0006,
+ "loss": 4.4742608070373535,
+ "step": 679
+ },
+ {
+ "epoch": 9.447356924421145,
+ "grad_norm": 0.35755908489227295,
+ "learning_rate": 0.0006,
+ "loss": 4.461928367614746,
+ "step": 680
+ },
+ {
+ "epoch": 9.461336828309305,
+ "grad_norm": 0.3141227662563324,
+ "learning_rate": 0.0006,
+ "loss": 4.491983413696289,
+ "step": 681
+ },
+ {
+ "epoch": 9.475316732197467,
+ "grad_norm": 0.282461017370224,
+ "learning_rate": 0.0006,
+ "loss": 4.460200309753418,
+ "step": 682
+ },
+ {
+ "epoch": 9.489296636085626,
+ "grad_norm": 0.27174389362335205,
+ "learning_rate": 0.0006,
+ "loss": 4.416125297546387,
+ "step": 683
+ },
+ {
+ "epoch": 9.503276539973788,
+ "grad_norm": 0.24570637941360474,
+ "learning_rate": 0.0006,
+ "loss": 4.4451093673706055,
+ "step": 684
+ },
+ {
+ "epoch": 9.517256443861948,
+ "grad_norm": 0.2741486132144928,
+ "learning_rate": 0.0006,
+ "loss": 4.453263282775879,
+ "step": 685
+ },
+ {
+ "epoch": 9.53123634775011,
+ "grad_norm": 0.24753718078136444,
+ "learning_rate": 0.0006,
+ "loss": 4.483033180236816,
+ "step": 686
+ },
+ {
+ "epoch": 9.54521625163827,
+ "grad_norm": 0.24288412928581238,
+ "learning_rate": 0.0006,
+ "loss": 4.452961444854736,
+ "step": 687
+ },
+ {
+ "epoch": 9.55919615552643,
+ "grad_norm": 0.21554753184318542,
+ "learning_rate": 0.0006,
+ "loss": 4.476005554199219,
+ "step": 688
+ },
+ {
+ "epoch": 9.57317605941459,
+ "grad_norm": 0.22775942087173462,
+ "learning_rate": 0.0006,
+ "loss": 4.4479193687438965,
+ "step": 689
+ },
+ {
+ "epoch": 9.587155963302752,
+ "grad_norm": 0.2610701024532318,
+ "learning_rate": 0.0006,
+ "loss": 4.474987506866455,
+ "step": 690
+ },
+ {
+ "epoch": 9.601135867190912,
+ "grad_norm": 0.2394690215587616,
+ "learning_rate": 0.0006,
+ "loss": 4.444857597351074,
+ "step": 691
+ },
+ {
+ "epoch": 9.615115771079074,
+ "grad_norm": 0.20868559181690216,
+ "learning_rate": 0.0006,
+ "loss": 4.4220709800720215,
+ "step": 692
+ },
+ {
+ "epoch": 9.629095674967235,
+ "grad_norm": 0.21869882941246033,
+ "learning_rate": 0.0006,
+ "loss": 4.451737403869629,
+ "step": 693
+ },
+ {
+ "epoch": 9.643075578855395,
+ "grad_norm": 0.1802823394536972,
+ "learning_rate": 0.0006,
+ "loss": 4.409085273742676,
+ "step": 694
+ },
+ {
+ "epoch": 9.657055482743557,
+ "grad_norm": 0.17046281695365906,
+ "learning_rate": 0.0006,
+ "loss": 4.424643516540527,
+ "step": 695
+ },
+ {
+ "epoch": 9.671035386631717,
+ "grad_norm": 0.19561922550201416,
+ "learning_rate": 0.0006,
+ "loss": 4.412302017211914,
+ "step": 696
+ },
+ {
+ "epoch": 9.685015290519878,
+ "grad_norm": 0.21928799152374268,
+ "learning_rate": 0.0006,
+ "loss": 4.427582263946533,
+ "step": 697
+ },
+ {
+ "epoch": 9.698995194408038,
+ "grad_norm": 0.244873046875,
+ "learning_rate": 0.0006,
+ "loss": 4.431827545166016,
+ "step": 698
+ },
+ {
+ "epoch": 9.7129750982962,
+ "grad_norm": 0.2799488604068756,
+ "learning_rate": 0.0006,
+ "loss": 4.407991409301758,
+ "step": 699
+ },
+ {
+ "epoch": 9.72695500218436,
+ "grad_norm": 0.2699538767337799,
+ "learning_rate": 0.0006,
+ "loss": 4.412313461303711,
+ "step": 700
+ },
+ {
+ "epoch": 9.740934906072521,
+ "grad_norm": 0.22293835878372192,
+ "learning_rate": 0.0006,
+ "loss": 4.423369884490967,
+ "step": 701
+ },
+ {
+ "epoch": 9.754914809960681,
+ "grad_norm": 0.21554361283779144,
+ "learning_rate": 0.0006,
+ "loss": 4.42026948928833,
+ "step": 702
+ },
+ {
+ "epoch": 9.768894713848843,
+ "grad_norm": 0.22135840356349945,
+ "learning_rate": 0.0006,
+ "loss": 4.400010108947754,
+ "step": 703
+ },
+ {
+ "epoch": 9.782874617737003,
+ "grad_norm": 0.2169952541589737,
+ "learning_rate": 0.0006,
+ "loss": 4.394582271575928,
+ "step": 704
+ },
+ {
+ "epoch": 9.796854521625164,
+ "grad_norm": 0.18913042545318604,
+ "learning_rate": 0.0006,
+ "loss": 4.395880699157715,
+ "step": 705
+ },
+ {
+ "epoch": 9.810834425513324,
+ "grad_norm": 0.191524475812912,
+ "learning_rate": 0.0006,
+ "loss": 4.378962516784668,
+ "step": 706
+ },
+ {
+ "epoch": 9.824814329401486,
+ "grad_norm": 0.20057640969753265,
+ "learning_rate": 0.0006,
+ "loss": 4.431066513061523,
+ "step": 707
+ },
+ {
+ "epoch": 9.838794233289645,
+ "grad_norm": 0.21670377254486084,
+ "learning_rate": 0.0006,
+ "loss": 4.364682197570801,
+ "step": 708
+ },
+ {
+ "epoch": 9.852774137177807,
+ "grad_norm": 0.21653099358081818,
+ "learning_rate": 0.0006,
+ "loss": 4.4050445556640625,
+ "step": 709
+ },
+ {
+ "epoch": 9.866754041065967,
+ "grad_norm": 0.2217673808336258,
+ "learning_rate": 0.0006,
+ "loss": 4.423664093017578,
+ "step": 710
+ },
+ {
+ "epoch": 9.880733944954128,
+ "grad_norm": 0.251078337430954,
+ "learning_rate": 0.0006,
+ "loss": 4.405768394470215,
+ "step": 711
+ },
+ {
+ "epoch": 9.89471384884229,
+ "grad_norm": 0.28962627053260803,
+ "learning_rate": 0.0006,
+ "loss": 4.421207427978516,
+ "step": 712
+ },
+ {
+ "epoch": 9.90869375273045,
+ "grad_norm": 0.3478074371814728,
+ "learning_rate": 0.0006,
+ "loss": 4.414942741394043,
+ "step": 713
+ },
+ {
+ "epoch": 9.922673656618612,
+ "grad_norm": 0.40396368503570557,
+ "learning_rate": 0.0006,
+ "loss": 4.415163993835449,
+ "step": 714
+ },
+ {
+ "epoch": 9.936653560506771,
+ "grad_norm": 0.3689858019351959,
+ "learning_rate": 0.0006,
+ "loss": 4.381345272064209,
+ "step": 715
+ },
+ {
+ "epoch": 9.950633464394933,
+ "grad_norm": 0.344868004322052,
+ "learning_rate": 0.0006,
+ "loss": 4.433088302612305,
+ "step": 716
+ },
+ {
+ "epoch": 9.964613368283093,
+ "grad_norm": 0.37976378202438354,
+ "learning_rate": 0.0006,
+ "loss": 4.431371212005615,
+ "step": 717
+ },
+ {
+ "epoch": 9.978593272171254,
+ "grad_norm": 0.4354130029678345,
+ "learning_rate": 0.0006,
+ "loss": 4.434148788452148,
+ "step": 718
+ },
+ {
+ "epoch": 9.992573176059414,
+ "grad_norm": 0.35859373211860657,
+ "learning_rate": 0.0006,
+ "loss": 4.428055763244629,
+ "step": 719
+ },
+ {
+ "epoch": 10.0,
+ "grad_norm": 0.3365023732185364,
+ "learning_rate": 0.0006,
+ "loss": 4.3888654708862305,
+ "step": 720
+ },
+ {
+ "epoch": 10.0,
+ "eval_loss": 4.638620853424072,
+ "eval_runtime": 44.3054,
+ "eval_samples_per_second": 55.117,
+ "eval_steps_per_second": 3.453,
+ "step": 720
+ },
+ {
+ "epoch": 10.013979903888162,
+ "grad_norm": 0.3267960250377655,
+ "learning_rate": 0.0006,
+ "loss": 4.386068344116211,
+ "step": 721
+ },
+ {
+ "epoch": 10.027959807776321,
+ "grad_norm": 0.33440953493118286,
+ "learning_rate": 0.0006,
+ "loss": 4.397515296936035,
+ "step": 722
+ },
+ {
+ "epoch": 10.041939711664483,
+ "grad_norm": 0.30047518014907837,
+ "learning_rate": 0.0006,
+ "loss": 4.398358345031738,
+ "step": 723
+ },
+ {
+ "epoch": 10.055919615552643,
+ "grad_norm": 0.2912217378616333,
+ "learning_rate": 0.0006,
+ "loss": 4.341166973114014,
+ "step": 724
+ },
+ {
+ "epoch": 10.069899519440805,
+ "grad_norm": 0.3199564218521118,
+ "learning_rate": 0.0006,
+ "loss": 4.388717174530029,
+ "step": 725
+ },
+ {
+ "epoch": 10.083879423328964,
+ "grad_norm": 0.2765582799911499,
+ "learning_rate": 0.0006,
+ "loss": 4.392992973327637,
+ "step": 726
+ },
+ {
+ "epoch": 10.097859327217126,
+ "grad_norm": 0.27138450741767883,
+ "learning_rate": 0.0006,
+ "loss": 4.382307529449463,
+ "step": 727
+ },
+ {
+ "epoch": 10.111839231105286,
+ "grad_norm": 0.29230645298957825,
+ "learning_rate": 0.0006,
+ "loss": 4.357486724853516,
+ "step": 728
+ },
+ {
+ "epoch": 10.125819134993447,
+ "grad_norm": 0.3127598464488983,
+ "learning_rate": 0.0006,
+ "loss": 4.39072322845459,
+ "step": 729
+ },
+ {
+ "epoch": 10.139799038881607,
+ "grad_norm": 0.3230913281440735,
+ "learning_rate": 0.0006,
+ "loss": 4.35037899017334,
+ "step": 730
+ },
+ {
+ "epoch": 10.153778942769769,
+ "grad_norm": 0.333675354719162,
+ "learning_rate": 0.0006,
+ "loss": 4.378030776977539,
+ "step": 731
+ },
+ {
+ "epoch": 10.167758846657929,
+ "grad_norm": 0.30325770378112793,
+ "learning_rate": 0.0006,
+ "loss": 4.372736930847168,
+ "step": 732
+ },
+ {
+ "epoch": 10.18173875054609,
+ "grad_norm": 0.2888163924217224,
+ "learning_rate": 0.0006,
+ "loss": 4.397604942321777,
+ "step": 733
+ },
+ {
+ "epoch": 10.19571865443425,
+ "grad_norm": 0.3378832936286926,
+ "learning_rate": 0.0006,
+ "loss": 4.395705223083496,
+ "step": 734
+ },
+ {
+ "epoch": 10.209698558322412,
+ "grad_norm": 0.30980268120765686,
+ "learning_rate": 0.0006,
+ "loss": 4.3861212730407715,
+ "step": 735
+ },
+ {
+ "epoch": 10.223678462210572,
+ "grad_norm": 0.2965783178806305,
+ "learning_rate": 0.0006,
+ "loss": 4.394898414611816,
+ "step": 736
+ },
+ {
+ "epoch": 10.237658366098733,
+ "grad_norm": 0.2818217873573303,
+ "learning_rate": 0.0006,
+ "loss": 4.36171817779541,
+ "step": 737
+ },
+ {
+ "epoch": 10.251638269986893,
+ "grad_norm": 0.2418123185634613,
+ "learning_rate": 0.0006,
+ "loss": 4.370945930480957,
+ "step": 738
+ },
+ {
+ "epoch": 10.265618173875055,
+ "grad_norm": 0.22372810542583466,
+ "learning_rate": 0.0006,
+ "loss": 4.354825973510742,
+ "step": 739
+ },
+ {
+ "epoch": 10.279598077763215,
+ "grad_norm": 0.238066166639328,
+ "learning_rate": 0.0006,
+ "loss": 4.376237392425537,
+ "step": 740
+ },
+ {
+ "epoch": 10.293577981651376,
+ "grad_norm": 0.22352449595928192,
+ "learning_rate": 0.0006,
+ "loss": 4.317084312438965,
+ "step": 741
+ },
+ {
+ "epoch": 10.307557885539538,
+ "grad_norm": 0.21685205399990082,
+ "learning_rate": 0.0006,
+ "loss": 4.335271835327148,
+ "step": 742
+ },
+ {
+ "epoch": 10.321537789427698,
+ "grad_norm": 0.19584694504737854,
+ "learning_rate": 0.0006,
+ "loss": 4.357963562011719,
+ "step": 743
+ },
+ {
+ "epoch": 10.33551769331586,
+ "grad_norm": 0.20373336970806122,
+ "learning_rate": 0.0006,
+ "loss": 4.401963233947754,
+ "step": 744
+ },
+ {
+ "epoch": 10.349497597204019,
+ "grad_norm": 0.2247837632894516,
+ "learning_rate": 0.0006,
+ "loss": 4.357202529907227,
+ "step": 745
+ },
+ {
+ "epoch": 10.36347750109218,
+ "grad_norm": 0.2416863739490509,
+ "learning_rate": 0.0006,
+ "loss": 4.364739418029785,
+ "step": 746
+ },
+ {
+ "epoch": 10.37745740498034,
+ "grad_norm": 0.22281162440776825,
+ "learning_rate": 0.0006,
+ "loss": 4.351607799530029,
+ "step": 747
+ },
+ {
+ "epoch": 10.391437308868502,
+ "grad_norm": 0.20751096308231354,
+ "learning_rate": 0.0006,
+ "loss": 4.370017051696777,
+ "step": 748
+ },
+ {
+ "epoch": 10.405417212756662,
+ "grad_norm": 0.19178363680839539,
+ "learning_rate": 0.0006,
+ "loss": 4.360328674316406,
+ "step": 749
+ },
+ {
+ "epoch": 10.419397116644824,
+ "grad_norm": 0.20534078776836395,
+ "learning_rate": 0.0006,
+ "loss": 4.3735432624816895,
+ "step": 750
+ },
+ {
+ "epoch": 10.433377020532983,
+ "grad_norm": 0.20533937215805054,
+ "learning_rate": 0.0006,
+ "loss": 4.326902389526367,
+ "step": 751
+ },
+ {
+ "epoch": 10.447356924421145,
+ "grad_norm": 0.22057875990867615,
+ "learning_rate": 0.0006,
+ "loss": 4.360934257507324,
+ "step": 752
+ },
+ {
+ "epoch": 10.461336828309305,
+ "grad_norm": 0.25568997859954834,
+ "learning_rate": 0.0006,
+ "loss": 4.345063209533691,
+ "step": 753
+ },
+ {
+ "epoch": 10.475316732197467,
+ "grad_norm": 0.31471487879753113,
+ "learning_rate": 0.0006,
+ "loss": 4.324014186859131,
+ "step": 754
+ },
+ {
+ "epoch": 10.489296636085626,
+ "grad_norm": 0.2716822624206543,
+ "learning_rate": 0.0006,
+ "loss": 4.318459510803223,
+ "step": 755
+ },
+ {
+ "epoch": 10.503276539973788,
+ "grad_norm": 0.19552019238471985,
+ "learning_rate": 0.0006,
+ "loss": 4.3367509841918945,
+ "step": 756
+ },
+ {
+ "epoch": 10.517256443861948,
+ "grad_norm": 0.22822986543178558,
+ "learning_rate": 0.0006,
+ "loss": 4.328935623168945,
+ "step": 757
+ },
+ {
+ "epoch": 10.53123634775011,
+ "grad_norm": 0.22282928228378296,
+ "learning_rate": 0.0006,
+ "loss": 4.358272552490234,
+ "step": 758
+ },
+ {
+ "epoch": 10.54521625163827,
+ "grad_norm": 0.23303352296352386,
+ "learning_rate": 0.0006,
+ "loss": 4.336641311645508,
+ "step": 759
+ },
+ {
+ "epoch": 10.55919615552643,
+ "grad_norm": 0.29474690556526184,
+ "learning_rate": 0.0006,
+ "loss": 4.343188285827637,
+ "step": 760
+ },
+ {
+ "epoch": 10.57317605941459,
+ "grad_norm": 0.36269059777259827,
+ "learning_rate": 0.0006,
+ "loss": 4.313019752502441,
+ "step": 761
+ },
+ {
+ "epoch": 10.587155963302752,
+ "grad_norm": 0.3742978870868683,
+ "learning_rate": 0.0006,
+ "loss": 4.361410140991211,
+ "step": 762
+ },
+ {
+ "epoch": 10.601135867190912,
+ "grad_norm": 0.34412163496017456,
+ "learning_rate": 0.0006,
+ "loss": 4.321324825286865,
+ "step": 763
+ },
+ {
+ "epoch": 10.615115771079074,
+ "grad_norm": 0.3464587926864624,
+ "learning_rate": 0.0006,
+ "loss": 4.341907501220703,
+ "step": 764
+ },
+ {
+ "epoch": 10.629095674967235,
+ "grad_norm": 0.3318136930465698,
+ "learning_rate": 0.0006,
+ "loss": 4.329099655151367,
+ "step": 765
+ },
+ {
+ "epoch": 10.643075578855395,
+ "grad_norm": 0.31292903423309326,
+ "learning_rate": 0.0006,
+ "loss": 4.332015037536621,
+ "step": 766
+ },
+ {
+ "epoch": 10.657055482743557,
+ "grad_norm": 0.2904847264289856,
+ "learning_rate": 0.0006,
+ "loss": 4.341764450073242,
+ "step": 767
+ },
+ {
+ "epoch": 10.671035386631717,
+ "grad_norm": 0.3287692666053772,
+ "learning_rate": 0.0006,
+ "loss": 4.342329025268555,
+ "step": 768
+ },
+ {
+ "epoch": 10.685015290519878,
+ "grad_norm": 0.3115365207195282,
+ "learning_rate": 0.0006,
+ "loss": 4.3530073165893555,
+ "step": 769
+ },
+ {
+ "epoch": 10.698995194408038,
+ "grad_norm": 0.24133864045143127,
+ "learning_rate": 0.0006,
+ "loss": 4.321497917175293,
+ "step": 770
+ },
+ {
+ "epoch": 10.7129750982962,
+ "grad_norm": 0.24658630788326263,
+ "learning_rate": 0.0006,
+ "loss": 4.32669734954834,
+ "step": 771
+ },
+ {
+ "epoch": 10.72695500218436,
+ "grad_norm": 0.2342129647731781,
+ "learning_rate": 0.0006,
+ "loss": 4.345459461212158,
+ "step": 772
+ },
+ {
+ "epoch": 10.740934906072521,
+ "grad_norm": 0.23360829055309296,
+ "learning_rate": 0.0006,
+ "loss": 4.33249568939209,
+ "step": 773
+ },
+ {
+ "epoch": 10.754914809960681,
+ "grad_norm": 0.24314677715301514,
+ "learning_rate": 0.0006,
+ "loss": 4.30499792098999,
+ "step": 774
+ },
+ {
+ "epoch": 10.768894713848843,
+ "grad_norm": 0.22105181217193604,
+ "learning_rate": 0.0006,
+ "loss": 4.33706521987915,
+ "step": 775
+ },
+ {
+ "epoch": 10.782874617737003,
+ "grad_norm": 0.23307174444198608,
+ "learning_rate": 0.0006,
+ "loss": 4.320387840270996,
+ "step": 776
+ },
+ {
+ "epoch": 10.796854521625164,
+ "grad_norm": 0.24946169555187225,
+ "learning_rate": 0.0006,
+ "loss": 4.316012382507324,
+ "step": 777
+ },
+ {
+ "epoch": 10.810834425513324,
+ "grad_norm": 0.26023536920547485,
+ "learning_rate": 0.0006,
+ "loss": 4.315193176269531,
+ "step": 778
+ },
+ {
+ "epoch": 10.824814329401486,
+ "grad_norm": 0.2688547968864441,
+ "learning_rate": 0.0006,
+ "loss": 4.3243255615234375,
+ "step": 779
+ },
+ {
+ "epoch": 10.838794233289645,
+ "grad_norm": 0.28188297152519226,
+ "learning_rate": 0.0006,
+ "loss": 4.3202972412109375,
+ "step": 780
+ },
+ {
+ "epoch": 10.852774137177807,
+ "grad_norm": 0.2890053689479828,
+ "learning_rate": 0.0006,
+ "loss": 4.318799018859863,
+ "step": 781
+ },
+ {
+ "epoch": 10.866754041065967,
+ "grad_norm": 0.2914353013038635,
+ "learning_rate": 0.0006,
+ "loss": 4.314262390136719,
+ "step": 782
+ },
+ {
+ "epoch": 10.880733944954128,
+ "grad_norm": 0.3145572543144226,
+ "learning_rate": 0.0006,
+ "loss": 4.339262008666992,
+ "step": 783
+ },
+ {
+ "epoch": 10.89471384884229,
+ "grad_norm": 0.323062002658844,
+ "learning_rate": 0.0006,
+ "loss": 4.354856491088867,
+ "step": 784
+ },
+ {
+ "epoch": 10.90869375273045,
+ "grad_norm": 0.32741227746009827,
+ "learning_rate": 0.0006,
+ "loss": 4.325577735900879,
+ "step": 785
+ },
+ {
+ "epoch": 10.922673656618612,
+ "grad_norm": 0.2855733036994934,
+ "learning_rate": 0.0006,
+ "loss": 4.324419021606445,
+ "step": 786
+ },
+ {
+ "epoch": 10.936653560506771,
+ "grad_norm": 0.2969444990158081,
+ "learning_rate": 0.0006,
+ "loss": 4.320681095123291,
+ "step": 787
+ },
+ {
+ "epoch": 10.950633464394933,
+ "grad_norm": 0.28108111023902893,
+ "learning_rate": 0.0006,
+ "loss": 4.32673454284668,
+ "step": 788
+ },
+ {
+ "epoch": 10.964613368283093,
+ "grad_norm": 0.2537972629070282,
+ "learning_rate": 0.0006,
+ "loss": 4.3197021484375,
+ "step": 789
+ },
+ {
+ "epoch": 10.978593272171254,
+ "grad_norm": 0.2354544699192047,
+ "learning_rate": 0.0006,
+ "loss": 4.3354973793029785,
+ "step": 790
+ },
+ {
+ "epoch": 10.992573176059414,
+ "grad_norm": 0.26195117831230164,
+ "learning_rate": 0.0006,
+ "loss": 4.3172526359558105,
+ "step": 791
+ },
+ {
+ "epoch": 11.0,
+ "grad_norm": 0.27089616656303406,
+ "learning_rate": 0.0006,
+ "loss": 4.324293613433838,
+ "step": 792
+ },
+ {
+ "epoch": 11.0,
+ "eval_loss": 4.531813621520996,
+ "eval_runtime": 44.1656,
+ "eval_samples_per_second": 55.292,
+ "eval_steps_per_second": 3.464,
+ "step": 792
+ },
+ {
+ "epoch": 11.013979903888162,
+ "grad_norm": 0.2526339590549469,
+ "learning_rate": 0.0006,
+ "loss": 4.287600517272949,
+ "step": 793
+ },
+ {
+ "epoch": 11.027959807776321,
+ "grad_norm": 0.24318458139896393,
+ "learning_rate": 0.0006,
+ "loss": 4.268078327178955,
+ "step": 794
+ },
+ {
+ "epoch": 11.041939711664483,
+ "grad_norm": 0.2450830638408661,
+ "learning_rate": 0.0006,
+ "loss": 4.265467643737793,
+ "step": 795
+ },
+ {
+ "epoch": 11.055919615552643,
+ "grad_norm": 0.23963099718093872,
+ "learning_rate": 0.0006,
+ "loss": 4.267931938171387,
+ "step": 796
+ },
+ {
+ "epoch": 11.069899519440805,
+ "grad_norm": 0.2488657534122467,
+ "learning_rate": 0.0006,
+ "loss": 4.30262565612793,
+ "step": 797
+ },
+ {
+ "epoch": 11.083879423328964,
+ "grad_norm": 0.2319781631231308,
+ "learning_rate": 0.0006,
+ "loss": 4.28665828704834,
+ "step": 798
+ },
+ {
+ "epoch": 11.097859327217126,
+ "grad_norm": 0.2425263375043869,
+ "learning_rate": 0.0006,
+ "loss": 4.284830570220947,
+ "step": 799
+ },
+ {
+ "epoch": 11.111839231105286,
+ "grad_norm": 0.23096567392349243,
+ "learning_rate": 0.0006,
+ "loss": 4.2817206382751465,
+ "step": 800
+ },
+ {
+ "epoch": 11.125819134993447,
+ "grad_norm": 0.2846364676952362,
+ "learning_rate": 0.0006,
+ "loss": 4.276104927062988,
+ "step": 801
+ },
+ {
+ "epoch": 11.139799038881607,
+ "grad_norm": 0.2984965741634369,
+ "learning_rate": 0.0006,
+ "loss": 4.2909650802612305,
+ "step": 802
+ },
+ {
+ "epoch": 11.153778942769769,
+ "grad_norm": 0.2841213643550873,
+ "learning_rate": 0.0006,
+ "loss": 4.283358097076416,
+ "step": 803
+ },
+ {
+ "epoch": 11.167758846657929,
+ "grad_norm": 0.29192933440208435,
+ "learning_rate": 0.0006,
+ "loss": 4.267040729522705,
+ "step": 804
+ },
+ {
+ "epoch": 11.18173875054609,
+ "grad_norm": 0.3254184126853943,
+ "learning_rate": 0.0006,
+ "loss": 4.301564693450928,
+ "step": 805
+ },
+ {
+ "epoch": 11.19571865443425,
+ "grad_norm": 0.3347095847129822,
+ "learning_rate": 0.0006,
+ "loss": 4.271395683288574,
+ "step": 806
+ },
+ {
+ "epoch": 11.209698558322412,
+ "grad_norm": 0.25609350204467773,
+ "learning_rate": 0.0006,
+ "loss": 4.2963056564331055,
+ "step": 807
+ },
+ {
+ "epoch": 11.223678462210572,
+ "grad_norm": 0.29272061586380005,
+ "learning_rate": 0.0006,
+ "loss": 4.298416614532471,
+ "step": 808
+ },
+ {
+ "epoch": 11.237658366098733,
+ "grad_norm": 0.32179465889930725,
+ "learning_rate": 0.0006,
+ "loss": 4.294036865234375,
+ "step": 809
+ },
+ {
+ "epoch": 11.251638269986893,
+ "grad_norm": 0.3336549401283264,
+ "learning_rate": 0.0006,
+ "loss": 4.291993141174316,
+ "step": 810
+ },
+ {
+ "epoch": 11.265618173875055,
+ "grad_norm": 0.32273536920547485,
+ "learning_rate": 0.0006,
+ "loss": 4.311004638671875,
+ "step": 811
+ },
+ {
+ "epoch": 11.279598077763215,
+ "grad_norm": 0.3575087785720825,
+ "learning_rate": 0.0006,
+ "loss": 4.300217628479004,
+ "step": 812
+ },
+ {
+ "epoch": 11.293577981651376,
+ "grad_norm": 0.3332885205745697,
+ "learning_rate": 0.0006,
+ "loss": 4.278337478637695,
+ "step": 813
+ },
+ {
+ "epoch": 11.307557885539538,
+ "grad_norm": 0.31440407037734985,
+ "learning_rate": 0.0006,
+ "loss": 4.273826599121094,
+ "step": 814
+ },
+ {
+ "epoch": 11.321537789427698,
+ "grad_norm": 0.29822009801864624,
+ "learning_rate": 0.0006,
+ "loss": 4.284292221069336,
+ "step": 815
+ },
+ {
+ "epoch": 11.33551769331586,
+ "grad_norm": 0.30695512890815735,
+ "learning_rate": 0.0006,
+ "loss": 4.2831926345825195,
+ "step": 816
+ },
+ {
+ "epoch": 11.349497597204019,
+ "grad_norm": 0.30576950311660767,
+ "learning_rate": 0.0006,
+ "loss": 4.277133464813232,
+ "step": 817
+ },
+ {
+ "epoch": 11.36347750109218,
+ "grad_norm": 0.2859647870063782,
+ "learning_rate": 0.0006,
+ "loss": 4.3130106925964355,
+ "step": 818
+ },
+ {
+ "epoch": 11.37745740498034,
+ "grad_norm": 0.32417574524879456,
+ "learning_rate": 0.0006,
+ "loss": 4.310303211212158,
+ "step": 819
+ },
+ {
+ "epoch": 11.391437308868502,
+ "grad_norm": 0.3512463867664337,
+ "learning_rate": 0.0006,
+ "loss": 4.287015438079834,
+ "step": 820
+ },
+ {
+ "epoch": 11.405417212756662,
+ "grad_norm": 0.32578620314598083,
+ "learning_rate": 0.0006,
+ "loss": 4.2957940101623535,
+ "step": 821
+ },
+ {
+ "epoch": 11.419397116644824,
+ "grad_norm": 0.287949800491333,
+ "learning_rate": 0.0006,
+ "loss": 4.2881879806518555,
+ "step": 822
+ },
+ {
+ "epoch": 11.433377020532983,
+ "grad_norm": 0.28048595786094666,
+ "learning_rate": 0.0006,
+ "loss": 4.274960517883301,
+ "step": 823
+ },
+ {
+ "epoch": 11.447356924421145,
+ "grad_norm": 0.2541540563106537,
+ "learning_rate": 0.0006,
+ "loss": 4.261083602905273,
+ "step": 824
+ },
+ {
+ "epoch": 11.461336828309305,
+ "grad_norm": 0.2348361313343048,
+ "learning_rate": 0.0006,
+ "loss": 4.271036148071289,
+ "step": 825
+ },
+ {
+ "epoch": 11.475316732197467,
+ "grad_norm": 0.20913535356521606,
+ "learning_rate": 0.0006,
+ "loss": 4.307661056518555,
+ "step": 826
+ },
+ {
+ "epoch": 11.489296636085626,
+ "grad_norm": 0.22298868000507355,
+ "learning_rate": 0.0006,
+ "loss": 4.26902961730957,
+ "step": 827
+ },
+ {
+ "epoch": 11.503276539973788,
+ "grad_norm": 0.22752761840820312,
+ "learning_rate": 0.0006,
+ "loss": 4.305529594421387,
+ "step": 828
+ },
+ {
+ "epoch": 11.517256443861948,
+ "grad_norm": 0.2149917483329773,
+ "learning_rate": 0.0006,
+ "loss": 4.25134801864624,
+ "step": 829
+ },
+ {
+ "epoch": 11.53123634775011,
+ "grad_norm": 0.21085695922374725,
+ "learning_rate": 0.0006,
+ "loss": 4.266982078552246,
+ "step": 830
+ },
+ {
+ "epoch": 11.54521625163827,
+ "grad_norm": 0.21586747467517853,
+ "learning_rate": 0.0006,
+ "loss": 4.235255718231201,
+ "step": 831
+ },
+ {
+ "epoch": 11.55919615552643,
+ "grad_norm": 0.2520856559276581,
+ "learning_rate": 0.0006,
+ "loss": 4.283442497253418,
+ "step": 832
+ },
+ {
+ "epoch": 11.57317605941459,
+ "grad_norm": 0.2825471758842468,
+ "learning_rate": 0.0006,
+ "loss": 4.234672546386719,
+ "step": 833
+ },
+ {
+ "epoch": 11.587155963302752,
+ "grad_norm": 0.27437824010849,
+ "learning_rate": 0.0006,
+ "loss": 4.246068000793457,
+ "step": 834
+ },
+ {
+ "epoch": 11.601135867190912,
+ "grad_norm": 0.2596757411956787,
+ "learning_rate": 0.0006,
+ "loss": 4.278448104858398,
+ "step": 835
+ },
+ {
+ "epoch": 11.615115771079074,
+ "grad_norm": 0.25663474202156067,
+ "learning_rate": 0.0006,
+ "loss": 4.308779716491699,
+ "step": 836
+ },
+ {
+ "epoch": 11.629095674967235,
+ "grad_norm": 0.2546203136444092,
+ "learning_rate": 0.0006,
+ "loss": 4.261247634887695,
+ "step": 837
+ },
+ {
+ "epoch": 11.643075578855395,
+ "grad_norm": 0.24722838401794434,
+ "learning_rate": 0.0006,
+ "loss": 4.275888442993164,
+ "step": 838
+ },
+ {
+ "epoch": 11.657055482743557,
+ "grad_norm": 0.3022806644439697,
+ "learning_rate": 0.0006,
+ "loss": 4.2572407722473145,
+ "step": 839
+ },
+ {
+ "epoch": 11.671035386631717,
+ "grad_norm": 0.31170839071273804,
+ "learning_rate": 0.0006,
+ "loss": 4.26992654800415,
+ "step": 840
+ },
+ {
+ "epoch": 11.685015290519878,
+ "grad_norm": 0.31362825632095337,
+ "learning_rate": 0.0006,
+ "loss": 4.2354655265808105,
+ "step": 841
+ },
+ {
+ "epoch": 11.698995194408038,
+ "grad_norm": 0.28741633892059326,
+ "learning_rate": 0.0006,
+ "loss": 4.263496398925781,
+ "step": 842
+ },
+ {
+ "epoch": 11.7129750982962,
+ "grad_norm": 0.2492494285106659,
+ "learning_rate": 0.0006,
+ "loss": 4.26463508605957,
+ "step": 843
+ },
+ {
+ "epoch": 11.72695500218436,
+ "grad_norm": 0.24324660003185272,
+ "learning_rate": 0.0006,
+ "loss": 4.245428085327148,
+ "step": 844
+ },
+ {
+ "epoch": 11.740934906072521,
+ "grad_norm": 0.23591114580631256,
+ "learning_rate": 0.0006,
+ "loss": 4.249845504760742,
+ "step": 845
+ },
+ {
+ "epoch": 11.754914809960681,
+ "grad_norm": 0.2202281504869461,
+ "learning_rate": 0.0006,
+ "loss": 4.245006084442139,
+ "step": 846
+ },
+ {
+ "epoch": 11.768894713848843,
+ "grad_norm": 0.22117942571640015,
+ "learning_rate": 0.0006,
+ "loss": 4.27812385559082,
+ "step": 847
+ },
+ {
+ "epoch": 11.782874617737003,
+ "grad_norm": 0.26361414790153503,
+ "learning_rate": 0.0006,
+ "loss": 4.250475883483887,
+ "step": 848
+ },
+ {
+ "epoch": 11.796854521625164,
+ "grad_norm": 0.2820321321487427,
+ "learning_rate": 0.0006,
+ "loss": 4.265835762023926,
+ "step": 849
+ },
+ {
+ "epoch": 11.810834425513324,
+ "grad_norm": 0.2078961282968521,
+ "learning_rate": 0.0006,
+ "loss": 4.251298904418945,
+ "step": 850
+ },
+ {
+ "epoch": 11.824814329401486,
+ "grad_norm": 0.21548646688461304,
+ "learning_rate": 0.0006,
+ "loss": 4.288539886474609,
+ "step": 851
+ },
+ {
+ "epoch": 11.838794233289645,
+ "grad_norm": 0.22719401121139526,
+ "learning_rate": 0.0006,
+ "loss": 4.252035140991211,
+ "step": 852
+ },
+ {
+ "epoch": 11.852774137177807,
+ "grad_norm": 0.21628320217132568,
+ "learning_rate": 0.0006,
+ "loss": 4.268622398376465,
+ "step": 853
+ },
+ {
+ "epoch": 11.866754041065967,
+ "grad_norm": 0.20855145156383514,
+ "learning_rate": 0.0006,
+ "loss": 4.253366470336914,
+ "step": 854
+ },
+ {
+ "epoch": 11.880733944954128,
+ "grad_norm": 0.2091914266347885,
+ "learning_rate": 0.0006,
+ "loss": 4.237805366516113,
+ "step": 855
+ },
+ {
+ "epoch": 11.89471384884229,
+ "grad_norm": 0.2000127136707306,
+ "learning_rate": 0.0006,
+ "loss": 4.268559455871582,
+ "step": 856
+ },
+ {
+ "epoch": 11.90869375273045,
+ "grad_norm": 0.21080894768238068,
+ "learning_rate": 0.0006,
+ "loss": 4.208702087402344,
+ "step": 857
+ },
+ {
+ "epoch": 11.922673656618612,
+ "grad_norm": 0.22125796973705292,
+ "learning_rate": 0.0006,
+ "loss": 4.250210762023926,
+ "step": 858
+ },
+ {
+ "epoch": 11.936653560506771,
+ "grad_norm": 0.25905469059944153,
+ "learning_rate": 0.0006,
+ "loss": 4.2263593673706055,
+ "step": 859
+ },
+ {
+ "epoch": 11.950633464394933,
+ "grad_norm": 0.29970306158065796,
+ "learning_rate": 0.0006,
+ "loss": 4.250848770141602,
+ "step": 860
+ },
+ {
+ "epoch": 11.964613368283093,
+ "grad_norm": 0.28155168890953064,
+ "learning_rate": 0.0006,
+ "loss": 4.272709369659424,
+ "step": 861
+ },
+ {
+ "epoch": 11.978593272171254,
+ "grad_norm": 0.23396113514900208,
+ "learning_rate": 0.0006,
+ "loss": 4.2674970626831055,
+ "step": 862
+ },
+ {
+ "epoch": 11.992573176059414,
+ "grad_norm": 0.23619577288627625,
+ "learning_rate": 0.0006,
+ "loss": 4.240267753601074,
+ "step": 863
+ },
+ {
+ "epoch": 12.0,
+ "grad_norm": 0.2779577076435089,
+ "learning_rate": 0.0006,
+ "loss": 4.267625331878662,
+ "step": 864
+ },
+ {
+ "epoch": 12.0,
+ "eval_loss": 4.437657356262207,
+ "eval_runtime": 44.4959,
+ "eval_samples_per_second": 54.881,
+ "eval_steps_per_second": 3.439,
+ "step": 864
+ },
+ {
+ "epoch": 12.013979903888162,
+ "grad_norm": 0.2948288321495056,
+ "learning_rate": 0.0006,
+ "loss": 4.232182502746582,
+ "step": 865
+ },
+ {
+ "epoch": 12.027959807776321,
+ "grad_norm": 0.3715663254261017,
+ "learning_rate": 0.0006,
+ "loss": 4.233771324157715,
+ "step": 866
+ },
+ {
+ "epoch": 12.041939711664483,
+ "grad_norm": 0.38358673453330994,
+ "learning_rate": 0.0006,
+ "loss": 4.208967685699463,
+ "step": 867
+ },
+ {
+ "epoch": 12.055919615552643,
+ "grad_norm": 0.3314538896083832,
+ "learning_rate": 0.0006,
+ "loss": 4.230685234069824,
+ "step": 868
+ },
+ {
+ "epoch": 12.069899519440805,
+ "grad_norm": 0.34171539545059204,
+ "learning_rate": 0.0006,
+ "loss": 4.231358528137207,
+ "step": 869
+ },
+ {
+ "epoch": 12.083879423328964,
+ "grad_norm": 0.3253359794616699,
+ "learning_rate": 0.0006,
+ "loss": 4.276405334472656,
+ "step": 870
+ },
+ {
+ "epoch": 12.097859327217126,
+ "grad_norm": 0.29008302092552185,
+ "learning_rate": 0.0006,
+ "loss": 4.232935905456543,
+ "step": 871
+ },
+ {
+ "epoch": 12.111839231105286,
+ "grad_norm": 0.28490355610847473,
+ "learning_rate": 0.0006,
+ "loss": 4.238036632537842,
+ "step": 872
+ },
+ {
+ "epoch": 12.125819134993447,
+ "grad_norm": 0.28446322679519653,
+ "learning_rate": 0.0006,
+ "loss": 4.210229873657227,
+ "step": 873
+ },
+ {
+ "epoch": 12.139799038881607,
+ "grad_norm": 0.29664531350135803,
+ "learning_rate": 0.0006,
+ "loss": 4.221309185028076,
+ "step": 874
+ },
+ {
+ "epoch": 12.153778942769769,
+ "grad_norm": 0.3083505928516388,
+ "learning_rate": 0.0006,
+ "loss": 4.221837997436523,
+ "step": 875
+ },
+ {
+ "epoch": 12.167758846657929,
+ "grad_norm": 0.3282921314239502,
+ "learning_rate": 0.0006,
+ "loss": 4.236713409423828,
+ "step": 876
+ },
+ {
+ "epoch": 12.18173875054609,
+ "grad_norm": 0.3603622615337372,
+ "learning_rate": 0.0006,
+ "loss": 4.245080947875977,
+ "step": 877
+ },
+ {
+ "epoch": 12.19571865443425,
+ "grad_norm": 0.38070905208587646,
+ "learning_rate": 0.0006,
+ "loss": 4.240756988525391,
+ "step": 878
+ },
+ {
+ "epoch": 12.209698558322412,
+ "grad_norm": 0.34479081630706787,
+ "learning_rate": 0.0006,
+ "loss": 4.200998306274414,
+ "step": 879
+ },
+ {
+ "epoch": 12.223678462210572,
+ "grad_norm": 0.3006879389286041,
+ "learning_rate": 0.0006,
+ "loss": 4.23531436920166,
+ "step": 880
+ },
+ {
+ "epoch": 12.237658366098733,
+ "grad_norm": 0.36835649609565735,
+ "learning_rate": 0.0006,
+ "loss": 4.229718208312988,
+ "step": 881
+ },
+ {
+ "epoch": 12.251638269986893,
+ "grad_norm": 0.4386984407901764,
+ "learning_rate": 0.0006,
+ "loss": 4.241188049316406,
+ "step": 882
+ },
+ {
+ "epoch": 12.265618173875055,
+ "grad_norm": 0.4442787170410156,
+ "learning_rate": 0.0006,
+ "loss": 4.239102840423584,
+ "step": 883
+ },
+ {
+ "epoch": 12.279598077763215,
+ "grad_norm": 0.324411541223526,
+ "learning_rate": 0.0006,
+ "loss": 4.198982238769531,
+ "step": 884
+ },
+ {
+ "epoch": 12.293577981651376,
+ "grad_norm": 0.2824151813983917,
+ "learning_rate": 0.0006,
+ "loss": 4.248816967010498,
+ "step": 885
+ },
+ {
+ "epoch": 12.307557885539538,
+ "grad_norm": 0.31407129764556885,
+ "learning_rate": 0.0006,
+ "loss": 4.2371320724487305,
+ "step": 886
+ },
+ {
+ "epoch": 12.321537789427698,
+ "grad_norm": 0.32920050621032715,
+ "learning_rate": 0.0006,
+ "loss": 4.210432052612305,
+ "step": 887
+ },
+ {
+ "epoch": 12.33551769331586,
+ "grad_norm": 0.315231055021286,
+ "learning_rate": 0.0006,
+ "loss": 4.219416618347168,
+ "step": 888
+ },
+ {
+ "epoch": 12.349497597204019,
+ "grad_norm": 0.30932050943374634,
+ "learning_rate": 0.0006,
+ "loss": 4.225022315979004,
+ "step": 889
+ },
+ {
+ "epoch": 12.36347750109218,
+ "grad_norm": 0.30242064595222473,
+ "learning_rate": 0.0006,
+ "loss": 4.2738518714904785,
+ "step": 890
+ },
+ {
+ "epoch": 12.37745740498034,
+ "grad_norm": 0.2926250994205475,
+ "learning_rate": 0.0006,
+ "loss": 4.231094837188721,
+ "step": 891
+ },
+ {
+ "epoch": 12.391437308868502,
+ "grad_norm": 0.2541215717792511,
+ "learning_rate": 0.0006,
+ "loss": 4.211821556091309,
+ "step": 892
+ },
+ {
+ "epoch": 12.405417212756662,
+ "grad_norm": 0.23693418502807617,
+ "learning_rate": 0.0006,
+ "loss": 4.208099365234375,
+ "step": 893
+ },
+ {
+ "epoch": 12.419397116644824,
+ "grad_norm": 0.22063226997852325,
+ "learning_rate": 0.0006,
+ "loss": 4.211234092712402,
+ "step": 894
+ },
+ {
+ "epoch": 12.433377020532983,
+ "grad_norm": 0.21536271274089813,
+ "learning_rate": 0.0006,
+ "loss": 4.199228286743164,
+ "step": 895
+ },
+ {
+ "epoch": 12.447356924421145,
+ "grad_norm": 0.243179589509964,
+ "learning_rate": 0.0006,
+ "loss": 4.204344749450684,
+ "step": 896
+ },
+ {
+ "epoch": 12.461336828309305,
+ "grad_norm": 0.2299746423959732,
+ "learning_rate": 0.0006,
+ "loss": 4.1565752029418945,
+ "step": 897
+ },
+ {
+ "epoch": 12.475316732197467,
+ "grad_norm": 0.2286847084760666,
+ "learning_rate": 0.0006,
+ "loss": 4.242953777313232,
+ "step": 898
+ },
+ {
+ "epoch": 12.489296636085626,
+ "grad_norm": 0.19463586807250977,
+ "learning_rate": 0.0006,
+ "loss": 4.214809417724609,
+ "step": 899
+ },
+ {
+ "epoch": 12.503276539973788,
+ "grad_norm": 0.1978398710489273,
+ "learning_rate": 0.0006,
+ "loss": 4.159815311431885,
+ "step": 900
+ },
+ {
+ "epoch": 12.517256443861948,
+ "grad_norm": 0.23177850246429443,
+ "learning_rate": 0.0006,
+ "loss": 4.2069902420043945,
+ "step": 901
+ },
+ {
+ "epoch": 12.53123634775011,
+ "grad_norm": 0.2408912032842636,
+ "learning_rate": 0.0006,
+ "loss": 4.206778526306152,
+ "step": 902
+ },
+ {
+ "epoch": 12.54521625163827,
+ "grad_norm": 0.21839919686317444,
+ "learning_rate": 0.0006,
+ "loss": 4.197076320648193,
+ "step": 903
+ },
+ {
+ "epoch": 12.55919615552643,
+ "grad_norm": 0.2053343504667282,
+ "learning_rate": 0.0006,
+ "loss": 4.21247673034668,
+ "step": 904
+ },
+ {
+ "epoch": 12.57317605941459,
+ "grad_norm": 0.19943439960479736,
+ "learning_rate": 0.0006,
+ "loss": 4.176966667175293,
+ "step": 905
+ },
+ {
+ "epoch": 12.587155963302752,
+ "grad_norm": 0.2012074887752533,
+ "learning_rate": 0.0006,
+ "loss": 4.210303783416748,
+ "step": 906
+ },
+ {
+ "epoch": 12.601135867190912,
+ "grad_norm": 0.22240376472473145,
+ "learning_rate": 0.0006,
+ "loss": 4.200625896453857,
+ "step": 907
+ },
+ {
+ "epoch": 12.615115771079074,
+ "grad_norm": 0.21729710698127747,
+ "learning_rate": 0.0006,
+ "loss": 4.2001953125,
+ "step": 908
+ },
+ {
+ "epoch": 12.629095674967235,
+ "grad_norm": 0.22470413148403168,
+ "learning_rate": 0.0006,
+ "loss": 4.197505950927734,
+ "step": 909
+ },
+ {
+ "epoch": 12.643075578855395,
+ "grad_norm": 0.23776157200336456,
+ "learning_rate": 0.0006,
+ "loss": 4.235603332519531,
+ "step": 910
+ },
+ {
+ "epoch": 12.657055482743557,
+ "grad_norm": 0.20616604387760162,
+ "learning_rate": 0.0006,
+ "loss": 4.193584442138672,
+ "step": 911
+ },
+ {
+ "epoch": 12.671035386631717,
+ "grad_norm": 0.1913922131061554,
+ "learning_rate": 0.0006,
+ "loss": 4.209191799163818,
+ "step": 912
+ },
+ {
+ "epoch": 12.685015290519878,
+ "grad_norm": 0.19427193701267242,
+ "learning_rate": 0.0006,
+ "loss": 4.219709396362305,
+ "step": 913
+ },
+ {
+ "epoch": 12.698995194408038,
+ "grad_norm": 0.20976558327674866,
+ "learning_rate": 0.0006,
+ "loss": 4.210859298706055,
+ "step": 914
+ },
+ {
+ "epoch": 12.7129750982962,
+ "grad_norm": 0.21571609377861023,
+ "learning_rate": 0.0006,
+ "loss": 4.189394950866699,
+ "step": 915
+ },
+ {
+ "epoch": 12.72695500218436,
+ "grad_norm": 0.2152620255947113,
+ "learning_rate": 0.0006,
+ "loss": 4.223589897155762,
+ "step": 916
+ },
+ {
+ "epoch": 12.740934906072521,
+ "grad_norm": 0.21867749094963074,
+ "learning_rate": 0.0006,
+ "loss": 4.198590278625488,
+ "step": 917
+ },
+ {
+ "epoch": 12.754914809960681,
+ "grad_norm": 0.22300855815410614,
+ "learning_rate": 0.0006,
+ "loss": 4.188891410827637,
+ "step": 918
+ },
+ {
+ "epoch": 12.768894713848843,
+ "grad_norm": 0.22197802364826202,
+ "learning_rate": 0.0006,
+ "loss": 4.190221309661865,
+ "step": 919
+ },
+ {
+ "epoch": 12.782874617737003,
+ "grad_norm": 0.20003341138362885,
+ "learning_rate": 0.0006,
+ "loss": 4.215453147888184,
+ "step": 920
+ },
+ {
+ "epoch": 12.796854521625164,
+ "grad_norm": 0.19887958467006683,
+ "learning_rate": 0.0006,
+ "loss": 4.18174934387207,
+ "step": 921
+ },
+ {
+ "epoch": 12.810834425513324,
+ "grad_norm": 0.20945803821086884,
+ "learning_rate": 0.0006,
+ "loss": 4.234947204589844,
+ "step": 922
+ },
+ {
+ "epoch": 12.824814329401486,
+ "grad_norm": 0.2253490388393402,
+ "learning_rate": 0.0006,
+ "loss": 4.2177228927612305,
+ "step": 923
+ },
+ {
+ "epoch": 12.838794233289645,
+ "grad_norm": 0.247610405087471,
+ "learning_rate": 0.0006,
+ "loss": 4.2013139724731445,
+ "step": 924
+ },
+ {
+ "epoch": 12.852774137177807,
+ "grad_norm": 0.2792088985443115,
+ "learning_rate": 0.0006,
+ "loss": 4.204774379730225,
+ "step": 925
+ },
+ {
+ "epoch": 12.866754041065967,
+ "grad_norm": 0.2839066982269287,
+ "learning_rate": 0.0006,
+ "loss": 4.186254978179932,
+ "step": 926
+ },
+ {
+ "epoch": 12.880733944954128,
+ "grad_norm": 0.2793181836605072,
+ "learning_rate": 0.0006,
+ "loss": 4.172411918640137,
+ "step": 927
+ },
+ {
+ "epoch": 12.89471384884229,
+ "grad_norm": 0.29506033658981323,
+ "learning_rate": 0.0006,
+ "loss": 4.202878475189209,
+ "step": 928
+ },
+ {
+ "epoch": 12.90869375273045,
+ "grad_norm": 0.2799845039844513,
+ "learning_rate": 0.0006,
+ "loss": 4.1563310623168945,
+ "step": 929
+ },
+ {
+ "epoch": 12.922673656618612,
+ "grad_norm": 0.23972125351428986,
+ "learning_rate": 0.0006,
+ "loss": 4.224601745605469,
+ "step": 930
+ },
+ {
+ "epoch": 12.936653560506771,
+ "grad_norm": 0.21558353304862976,
+ "learning_rate": 0.0006,
+ "loss": 4.167957305908203,
+ "step": 931
+ },
+ {
+ "epoch": 12.950633464394933,
+ "grad_norm": 0.21800188720226288,
+ "learning_rate": 0.0006,
+ "loss": 4.1746039390563965,
+ "step": 932
+ },
+ {
+ "epoch": 12.964613368283093,
+ "grad_norm": 0.2086547315120697,
+ "learning_rate": 0.0006,
+ "loss": 4.188137054443359,
+ "step": 933
+ },
+ {
+ "epoch": 12.978593272171254,
+ "grad_norm": 0.2174186110496521,
+ "learning_rate": 0.0006,
+ "loss": 4.184014320373535,
+ "step": 934
+ },
+ {
+ "epoch": 12.992573176059414,
+ "grad_norm": 0.22755110263824463,
+ "learning_rate": 0.0006,
+ "loss": 4.180912017822266,
+ "step": 935
+ },
+ {
+ "epoch": 13.0,
+ "grad_norm": 0.2735324203968048,
+ "learning_rate": 0.0006,
+ "loss": 4.201578617095947,
+ "step": 936
+ },
+ {
+ "epoch": 13.0,
+ "eval_loss": 4.396903038024902,
+ "eval_runtime": 44.5664,
+ "eval_samples_per_second": 54.795,
+ "eval_steps_per_second": 3.433,
+ "step": 936
+ },
+ {
+ "epoch": 13.013979903888162,
+ "grad_norm": 0.27577832341194153,
+ "learning_rate": 0.0006,
+ "loss": 4.149985313415527,
+ "step": 937
+ },
+ {
+ "epoch": 13.027959807776321,
+ "grad_norm": 0.25817009806632996,
+ "learning_rate": 0.0006,
+ "loss": 4.1526103019714355,
+ "step": 938
+ },
+ {
+ "epoch": 13.041939711664483,
+ "grad_norm": 0.24564379453659058,
+ "learning_rate": 0.0006,
+ "loss": 4.1661152839660645,
+ "step": 939
+ },
+ {
+ "epoch": 13.055919615552643,
+ "grad_norm": 0.2465466856956482,
+ "learning_rate": 0.0006,
+ "loss": 4.152953624725342,
+ "step": 940
+ },
+ {
+ "epoch": 13.069899519440805,
+ "grad_norm": 0.22702018916606903,
+ "learning_rate": 0.0006,
+ "loss": 4.145125389099121,
+ "step": 941
+ },
+ {
+ "epoch": 13.083879423328964,
+ "grad_norm": 0.24350613355636597,
+ "learning_rate": 0.0006,
+ "loss": 4.163095474243164,
+ "step": 942
+ },
+ {
+ "epoch": 13.097859327217126,
+ "grad_norm": 0.2504431903362274,
+ "learning_rate": 0.0006,
+ "loss": 4.136016845703125,
+ "step": 943
+ },
+ {
+ "epoch": 13.111839231105286,
+ "grad_norm": 0.24968865513801575,
+ "learning_rate": 0.0006,
+ "loss": 4.163487911224365,
+ "step": 944
+ },
+ {
+ "epoch": 13.125819134993447,
+ "grad_norm": 0.27164196968078613,
+ "learning_rate": 0.0006,
+ "loss": 4.1194353103637695,
+ "step": 945
+ },
+ {
+ "epoch": 13.139799038881607,
+ "grad_norm": 0.28127020597457886,
+ "learning_rate": 0.0006,
+ "loss": 4.184807300567627,
+ "step": 946
+ },
+ {
+ "epoch": 13.153778942769769,
+ "grad_norm": 0.24574966728687286,
+ "learning_rate": 0.0006,
+ "loss": 4.154998779296875,
+ "step": 947
+ },
+ {
+ "epoch": 13.167758846657929,
+ "grad_norm": 0.22310060262680054,
+ "learning_rate": 0.0006,
+ "loss": 4.182928085327148,
+ "step": 948
+ },
+ {
+ "epoch": 13.18173875054609,
+ "grad_norm": 0.2539508640766144,
+ "learning_rate": 0.0006,
+ "loss": 4.176900386810303,
+ "step": 949
+ },
+ {
+ "epoch": 13.19571865443425,
+ "grad_norm": 0.30925488471984863,
+ "learning_rate": 0.0006,
+ "loss": 4.1760711669921875,
+ "step": 950
+ },
+ {
+ "epoch": 13.209698558322412,
+ "grad_norm": 0.3842967450618744,
+ "learning_rate": 0.0006,
+ "loss": 4.1830949783325195,
+ "step": 951
+ },
+ {
+ "epoch": 13.223678462210572,
+ "grad_norm": 0.35950011014938354,
+ "learning_rate": 0.0006,
+ "loss": 4.131983757019043,
+ "step": 952
+ },
+ {
+ "epoch": 13.237658366098733,
+ "grad_norm": 0.29913705587387085,
+ "learning_rate": 0.0006,
+ "loss": 4.166984558105469,
+ "step": 953
+ },
+ {
+ "epoch": 13.251638269986893,
+ "grad_norm": 0.32008400559425354,
+ "learning_rate": 0.0006,
+ "loss": 4.156482696533203,
+ "step": 954
+ },
+ {
+ "epoch": 13.265618173875055,
+ "grad_norm": 0.3186642825603485,
+ "learning_rate": 0.0006,
+ "loss": 4.1661057472229,
+ "step": 955
+ },
+ {
+ "epoch": 13.279598077763215,
+ "grad_norm": 0.3194582462310791,
+ "learning_rate": 0.0006,
+ "loss": 4.169328689575195,
+ "step": 956
+ },
+ {
+ "epoch": 13.293577981651376,
+ "grad_norm": 0.3133867084980011,
+ "learning_rate": 0.0006,
+ "loss": 4.165459632873535,
+ "step": 957
+ },
+ {
+ "epoch": 13.307557885539538,
+ "grad_norm": 0.3232237696647644,
+ "learning_rate": 0.0006,
+ "loss": 4.2107439041137695,
+ "step": 958
+ },
+ {
+ "epoch": 13.321537789427698,
+ "grad_norm": 0.3133196234703064,
+ "learning_rate": 0.0006,
+ "loss": 4.184182167053223,
+ "step": 959
+ },
+ {
+ "epoch": 13.33551769331586,
+ "grad_norm": 0.296129435300827,
+ "learning_rate": 0.0006,
+ "loss": 4.168312072753906,
+ "step": 960
+ },
+ {
+ "epoch": 13.349497597204019,
+ "grad_norm": 0.2685348391532898,
+ "learning_rate": 0.0006,
+ "loss": 4.159984588623047,
+ "step": 961
+ },
+ {
+ "epoch": 13.36347750109218,
+ "grad_norm": 0.2644975781440735,
+ "learning_rate": 0.0006,
+ "loss": 4.164909362792969,
+ "step": 962
+ },
+ {
+ "epoch": 13.37745740498034,
+ "grad_norm": 0.2712913155555725,
+ "learning_rate": 0.0006,
+ "loss": 4.158056259155273,
+ "step": 963
+ },
+ {
+ "epoch": 13.391437308868502,
+ "grad_norm": 0.2687259316444397,
+ "learning_rate": 0.0006,
+ "loss": 4.182924270629883,
+ "step": 964
+ },
+ {
+ "epoch": 13.405417212756662,
+ "grad_norm": 0.25640392303466797,
+ "learning_rate": 0.0006,
+ "loss": 4.153351783752441,
+ "step": 965
+ },
+ {
+ "epoch": 13.419397116644824,
+ "grad_norm": 0.2646305561065674,
+ "learning_rate": 0.0006,
+ "loss": 4.18464469909668,
+ "step": 966
+ },
+ {
+ "epoch": 13.433377020532983,
+ "grad_norm": 0.24206851422786713,
+ "learning_rate": 0.0006,
+ "loss": 4.127564430236816,
+ "step": 967
+ },
+ {
+ "epoch": 13.447356924421145,
+ "grad_norm": 0.23800471425056458,
+ "learning_rate": 0.0006,
+ "loss": 4.163488388061523,
+ "step": 968
+ },
+ {
+ "epoch": 13.461336828309305,
+ "grad_norm": 0.22957314550876617,
+ "learning_rate": 0.0006,
+ "loss": 4.178133964538574,
+ "step": 969
+ },
+ {
+ "epoch": 13.475316732197467,
+ "grad_norm": 0.22867488861083984,
+ "learning_rate": 0.0006,
+ "loss": 4.159056186676025,
+ "step": 970
+ },
+ {
+ "epoch": 13.489296636085626,
+ "grad_norm": 0.21737419068813324,
+ "learning_rate": 0.0006,
+ "loss": 4.138628005981445,
+ "step": 971
+ },
+ {
+ "epoch": 13.503276539973788,
+ "grad_norm": 0.2319175899028778,
+ "learning_rate": 0.0006,
+ "loss": 4.14644718170166,
+ "step": 972
+ },
+ {
+ "epoch": 13.517256443861948,
+ "grad_norm": 0.2572193443775177,
+ "learning_rate": 0.0006,
+ "loss": 4.175213813781738,
+ "step": 973
+ },
+ {
+ "epoch": 13.53123634775011,
+ "grad_norm": 0.23483099043369293,
+ "learning_rate": 0.0006,
+ "loss": 4.133171558380127,
+ "step": 974
+ },
+ {
+ "epoch": 13.54521625163827,
+ "grad_norm": 0.2071552872657776,
+ "learning_rate": 0.0006,
+ "loss": 4.13730525970459,
+ "step": 975
+ },
+ {
+ "epoch": 13.55919615552643,
+ "grad_norm": 0.23074553906917572,
+ "learning_rate": 0.0006,
+ "loss": 4.175051689147949,
+ "step": 976
+ },
+ {
+ "epoch": 13.57317605941459,
+ "grad_norm": 0.2480078786611557,
+ "learning_rate": 0.0006,
+ "loss": 4.167630672454834,
+ "step": 977
+ },
+ {
+ "epoch": 13.587155963302752,
+ "grad_norm": 0.23444348573684692,
+ "learning_rate": 0.0006,
+ "loss": 4.141780853271484,
+ "step": 978
+ },
+ {
+ "epoch": 13.601135867190912,
+ "grad_norm": 0.2227829396724701,
+ "learning_rate": 0.0006,
+ "loss": 4.157566547393799,
+ "step": 979
+ },
+ {
+ "epoch": 13.615115771079074,
+ "grad_norm": 0.21478354930877686,
+ "learning_rate": 0.0006,
+ "loss": 4.131053447723389,
+ "step": 980
+ },
+ {
+ "epoch": 13.629095674967235,
+ "grad_norm": 0.1978664994239807,
+ "learning_rate": 0.0006,
+ "loss": 4.123660564422607,
+ "step": 981
+ },
+ {
+ "epoch": 13.643075578855395,
+ "grad_norm": 0.19980201125144958,
+ "learning_rate": 0.0006,
+ "loss": 4.174160480499268,
+ "step": 982
+ },
+ {
+ "epoch": 13.657055482743557,
+ "grad_norm": 0.19815555214881897,
+ "learning_rate": 0.0006,
+ "loss": 4.181703090667725,
+ "step": 983
+ },
+ {
+ "epoch": 13.671035386631717,
+ "grad_norm": 0.19524012506008148,
+ "learning_rate": 0.0006,
+ "loss": 4.163766860961914,
+ "step": 984
+ },
+ {
+ "epoch": 13.685015290519878,
+ "grad_norm": 0.2286096215248108,
+ "learning_rate": 0.0006,
+ "loss": 4.172213554382324,
+ "step": 985
+ },
+ {
+ "epoch": 13.698995194408038,
+ "grad_norm": 0.2210782766342163,
+ "learning_rate": 0.0006,
+ "loss": 4.187033653259277,
+ "step": 986
+ },
+ {
+ "epoch": 13.7129750982962,
+ "grad_norm": 0.21874216198921204,
+ "learning_rate": 0.0006,
+ "loss": 4.125125885009766,
+ "step": 987
+ },
+ {
+ "epoch": 13.72695500218436,
+ "grad_norm": 0.22848057746887207,
+ "learning_rate": 0.0006,
+ "loss": 4.153496742248535,
+ "step": 988
+ },
+ {
+ "epoch": 13.740934906072521,
+ "grad_norm": 0.2250450700521469,
+ "learning_rate": 0.0006,
+ "loss": 4.149165630340576,
+ "step": 989
+ },
+ {
+ "epoch": 13.754914809960681,
+ "grad_norm": 0.21443772315979004,
+ "learning_rate": 0.0006,
+ "loss": 4.1528825759887695,
+ "step": 990
+ },
+ {
+ "epoch": 13.768894713848843,
+ "grad_norm": 0.21927927434444427,
+ "learning_rate": 0.0006,
+ "loss": 4.146831512451172,
+ "step": 991
+ },
+ {
+ "epoch": 13.782874617737003,
+ "grad_norm": 0.2413124144077301,
+ "learning_rate": 0.0006,
+ "loss": 4.136909008026123,
+ "step": 992
+ },
+ {
+ "epoch": 13.796854521625164,
+ "grad_norm": 0.2603479325771332,
+ "learning_rate": 0.0006,
+ "loss": 4.12525749206543,
+ "step": 993
+ },
+ {
+ "epoch": 13.810834425513324,
+ "grad_norm": 0.26246970891952515,
+ "learning_rate": 0.0006,
+ "loss": 4.114049434661865,
+ "step": 994
+ },
+ {
+ "epoch": 13.824814329401486,
+ "grad_norm": 0.27031877636909485,
+ "learning_rate": 0.0006,
+ "loss": 4.1646552085876465,
+ "step": 995
+ },
+ {
+ "epoch": 13.838794233289645,
+ "grad_norm": 0.2499857395887375,
+ "learning_rate": 0.0006,
+ "loss": 4.139284133911133,
+ "step": 996
+ },
+ {
+ "epoch": 13.852774137177807,
+ "grad_norm": 0.22026537358760834,
+ "learning_rate": 0.0006,
+ "loss": 4.142191410064697,
+ "step": 997
+ },
+ {
+ "epoch": 13.866754041065967,
+ "grad_norm": 0.23738551139831543,
+ "learning_rate": 0.0006,
+ "loss": 4.1422882080078125,
+ "step": 998
+ },
+ {
+ "epoch": 13.880733944954128,
+ "grad_norm": 0.2416357398033142,
+ "learning_rate": 0.0006,
+ "loss": 4.14063835144043,
+ "step": 999
+ },
+ {
+ "epoch": 13.89471384884229,
+ "grad_norm": 0.33822184801101685,
+ "learning_rate": 0.0006,
+ "loss": 4.12839412689209,
+ "step": 1000
+ },
+ {
+ "epoch": 13.90869375273045,
+ "grad_norm": 0.3409678339958191,
+ "learning_rate": 0.0006,
+ "loss": 4.145351886749268,
+ "step": 1001
+ },
+ {
+ "epoch": 13.922673656618612,
+ "grad_norm": 0.2467597872018814,
+ "learning_rate": 0.0006,
+ "loss": 4.155339241027832,
+ "step": 1002
+ },
+ {
+ "epoch": 13.936653560506771,
+ "grad_norm": 0.2314649075269699,
+ "learning_rate": 0.0006,
+ "loss": 4.130176067352295,
+ "step": 1003
+ },
+ {
+ "epoch": 13.950633464394933,
+ "grad_norm": 0.23701290786266327,
+ "learning_rate": 0.0006,
+ "loss": 4.19205379486084,
+ "step": 1004
+ },
+ {
+ "epoch": 13.964613368283093,
+ "grad_norm": 0.2466491460800171,
+ "learning_rate": 0.0006,
+ "loss": 4.118908882141113,
+ "step": 1005
+ },
+ {
+ "epoch": 13.978593272171254,
+ "grad_norm": 0.23746836185455322,
+ "learning_rate": 0.0006,
+ "loss": 4.16111946105957,
+ "step": 1006
+ },
+ {
+ "epoch": 13.992573176059414,
+ "grad_norm": 0.24497751891613007,
+ "learning_rate": 0.0006,
+ "loss": 4.148624420166016,
+ "step": 1007
+ },
+ {
+ "epoch": 14.0,
+ "grad_norm": 0.25735899806022644,
+ "learning_rate": 0.0006,
+ "loss": 4.12002420425415,
+ "step": 1008
+ },
+ {
+ "epoch": 14.0,
+ "eval_loss": 4.335351467132568,
+ "eval_runtime": 44.0523,
+ "eval_samples_per_second": 55.434,
+ "eval_steps_per_second": 3.473,
+ "step": 1008
+ },
+ {
+ "epoch": 14.013979903888162,
+ "grad_norm": 0.24570082128047943,
+ "learning_rate": 0.0006,
+ "loss": 4.1036176681518555,
+ "step": 1009
+ },
+ {
+ "epoch": 14.027959807776321,
+ "grad_norm": 0.2525855302810669,
+ "learning_rate": 0.0006,
+ "loss": 4.142077445983887,
+ "step": 1010
+ },
+ {
+ "epoch": 14.041939711664483,
+ "grad_norm": 0.2701111435890198,
+ "learning_rate": 0.0006,
+ "loss": 4.096988677978516,
+ "step": 1011
+ },
+ {
+ "epoch": 14.055919615552643,
+ "grad_norm": 0.28173309564590454,
+ "learning_rate": 0.0006,
+ "loss": 4.148448944091797,
+ "step": 1012
+ },
+ {
+ "epoch": 14.069899519440805,
+ "grad_norm": 0.2651294469833374,
+ "learning_rate": 0.0006,
+ "loss": 4.121731281280518,
+ "step": 1013
+ },
+ {
+ "epoch": 14.083879423328964,
+ "grad_norm": 0.21160121262073517,
+ "learning_rate": 0.0006,
+ "loss": 4.108980178833008,
+ "step": 1014
+ },
+ {
+ "epoch": 14.097859327217126,
+ "grad_norm": 0.24786953628063202,
+ "learning_rate": 0.0006,
+ "loss": 4.133942604064941,
+ "step": 1015
+ },
+ {
+ "epoch": 14.111839231105286,
+ "grad_norm": 0.2722747027873993,
+ "learning_rate": 0.0006,
+ "loss": 4.115242958068848,
+ "step": 1016
+ },
+ {
+ "epoch": 14.125819134993447,
+ "grad_norm": 0.273360013961792,
+ "learning_rate": 0.0006,
+ "loss": 4.059296607971191,
+ "step": 1017
+ },
+ {
+ "epoch": 14.139799038881607,
+ "grad_norm": 0.2541784942150116,
+ "learning_rate": 0.0006,
+ "loss": 4.118365287780762,
+ "step": 1018
+ },
+ {
+ "epoch": 14.153778942769769,
+ "grad_norm": 0.23806381225585938,
+ "learning_rate": 0.0006,
+ "loss": 4.102812767028809,
+ "step": 1019
+ },
+ {
+ "epoch": 14.167758846657929,
+ "grad_norm": 0.2541005313396454,
+ "learning_rate": 0.0006,
+ "loss": 4.093264579772949,
+ "step": 1020
+ },
+ {
+ "epoch": 14.18173875054609,
+ "grad_norm": 0.2619539499282837,
+ "learning_rate": 0.0006,
+ "loss": 4.114917278289795,
+ "step": 1021
+ },
+ {
+ "epoch": 14.19571865443425,
+ "grad_norm": 0.2466963529586792,
+ "learning_rate": 0.0006,
+ "loss": 4.098258972167969,
+ "step": 1022
+ },
+ {
+ "epoch": 14.209698558322412,
+ "grad_norm": 0.24341611564159393,
+ "learning_rate": 0.0006,
+ "loss": 4.109346389770508,
+ "step": 1023
+ },
+ {
+ "epoch": 14.223678462210572,
+ "grad_norm": 0.23977765440940857,
+ "learning_rate": 0.0006,
+ "loss": 4.106716156005859,
+ "step": 1024
+ },
+ {
+ "epoch": 14.237658366098733,
+ "grad_norm": 0.253528356552124,
+ "learning_rate": 0.0006,
+ "loss": 4.102226257324219,
+ "step": 1025
+ },
+ {
+ "epoch": 14.251638269986893,
+ "grad_norm": 0.26954543590545654,
+ "learning_rate": 0.0006,
+ "loss": 4.107413291931152,
+ "step": 1026
+ },
+ {
+ "epoch": 14.265618173875055,
+ "grad_norm": 0.2610514760017395,
+ "learning_rate": 0.0006,
+ "loss": 4.110824108123779,
+ "step": 1027
+ },
+ {
+ "epoch": 14.279598077763215,
+ "grad_norm": 0.2579168677330017,
+ "learning_rate": 0.0006,
+ "loss": 4.082438945770264,
+ "step": 1028
+ },
+ {
+ "epoch": 14.293577981651376,
+ "grad_norm": 0.26916536688804626,
+ "learning_rate": 0.0006,
+ "loss": 4.075734615325928,
+ "step": 1029
+ },
+ {
+ "epoch": 14.307557885539538,
+ "grad_norm": 0.2998618185520172,
+ "learning_rate": 0.0006,
+ "loss": 4.088419437408447,
+ "step": 1030
+ },
+ {
+ "epoch": 14.321537789427698,
+ "grad_norm": 0.3162737190723419,
+ "learning_rate": 0.0006,
+ "loss": 4.125833034515381,
+ "step": 1031
+ },
+ {
+ "epoch": 14.33551769331586,
+ "grad_norm": 0.318601131439209,
+ "learning_rate": 0.0006,
+ "loss": 4.077424049377441,
+ "step": 1032
+ },
+ {
+ "epoch": 14.349497597204019,
+ "grad_norm": 0.32113415002822876,
+ "learning_rate": 0.0006,
+ "loss": 4.113360404968262,
+ "step": 1033
+ },
+ {
+ "epoch": 14.36347750109218,
+ "grad_norm": 0.3150886297225952,
+ "learning_rate": 0.0006,
+ "loss": 4.100013732910156,
+ "step": 1034
+ },
+ {
+ "epoch": 14.37745740498034,
+ "grad_norm": 0.29279956221580505,
+ "learning_rate": 0.0006,
+ "loss": 4.136394500732422,
+ "step": 1035
+ },
+ {
+ "epoch": 14.391437308868502,
+ "grad_norm": 0.28532543778419495,
+ "learning_rate": 0.0006,
+ "loss": 4.138948440551758,
+ "step": 1036
+ },
+ {
+ "epoch": 14.405417212756662,
+ "grad_norm": 0.2825978398323059,
+ "learning_rate": 0.0006,
+ "loss": 4.112217903137207,
+ "step": 1037
+ },
+ {
+ "epoch": 14.419397116644824,
+ "grad_norm": 0.2891198694705963,
+ "learning_rate": 0.0006,
+ "loss": 4.102682113647461,
+ "step": 1038
+ },
+ {
+ "epoch": 14.433377020532983,
+ "grad_norm": 0.2917391061782837,
+ "learning_rate": 0.0006,
+ "loss": 4.120752811431885,
+ "step": 1039
+ },
+ {
+ "epoch": 14.447356924421145,
+ "grad_norm": 0.2589806914329529,
+ "learning_rate": 0.0006,
+ "loss": 4.130519390106201,
+ "step": 1040
+ },
+ {
+ "epoch": 14.461336828309305,
+ "grad_norm": 0.2674788534641266,
+ "learning_rate": 0.0006,
+ "loss": 4.130382537841797,
+ "step": 1041
+ },
+ {
+ "epoch": 14.475316732197467,
+ "grad_norm": 0.2820362150669098,
+ "learning_rate": 0.0006,
+ "loss": 4.13947868347168,
+ "step": 1042
+ },
+ {
+ "epoch": 14.489296636085626,
+ "grad_norm": 0.2650109529495239,
+ "learning_rate": 0.0006,
+ "loss": 4.130346775054932,
+ "step": 1043
+ },
+ {
+ "epoch": 14.503276539973788,
+ "grad_norm": 0.29137638211250305,
+ "learning_rate": 0.0006,
+ "loss": 4.055751800537109,
+ "step": 1044
+ },
+ {
+ "epoch": 14.517256443861948,
+ "grad_norm": 0.3232433497905731,
+ "learning_rate": 0.0006,
+ "loss": 4.114810943603516,
+ "step": 1045
+ },
+ {
+ "epoch": 14.53123634775011,
+ "grad_norm": 0.2724473476409912,
+ "learning_rate": 0.0006,
+ "loss": 4.088351249694824,
+ "step": 1046
+ },
+ {
+ "epoch": 14.54521625163827,
+ "grad_norm": 0.23994430899620056,
+ "learning_rate": 0.0006,
+ "loss": 4.110936164855957,
+ "step": 1047
+ },
+ {
+ "epoch": 14.55919615552643,
+ "grad_norm": 0.2422720044851303,
+ "learning_rate": 0.0006,
+ "loss": 4.132844924926758,
+ "step": 1048
+ },
+ {
+ "epoch": 14.57317605941459,
+ "grad_norm": 0.21148815751075745,
+ "learning_rate": 0.0006,
+ "loss": 4.102499961853027,
+ "step": 1049
+ },
+ {
+ "epoch": 14.587155963302752,
+ "grad_norm": 0.22221639752388,
+ "learning_rate": 0.0006,
+ "loss": 4.126241683959961,
+ "step": 1050
+ },
+ {
+ "epoch": 14.601135867190912,
+ "grad_norm": 0.2538735866546631,
+ "learning_rate": 0.0006,
+ "loss": 4.116817951202393,
+ "step": 1051
+ },
+ {
+ "epoch": 14.615115771079074,
+ "grad_norm": 0.2555900514125824,
+ "learning_rate": 0.0006,
+ "loss": 4.106309413909912,
+ "step": 1052
+ },
+ {
+ "epoch": 14.629095674967235,
+ "grad_norm": 0.24753783643245697,
+ "learning_rate": 0.0006,
+ "loss": 4.1015119552612305,
+ "step": 1053
+ },
+ {
+ "epoch": 14.643075578855395,
+ "grad_norm": 0.238885298371315,
+ "learning_rate": 0.0006,
+ "loss": 4.120419502258301,
+ "step": 1054
+ },
+ {
+ "epoch": 14.657055482743557,
+ "grad_norm": 0.22693610191345215,
+ "learning_rate": 0.0006,
+ "loss": 4.084968566894531,
+ "step": 1055
+ },
+ {
+ "epoch": 14.671035386631717,
+ "grad_norm": 0.2100025862455368,
+ "learning_rate": 0.0006,
+ "loss": 4.108001708984375,
+ "step": 1056
+ },
+ {
+ "epoch": 14.685015290519878,
+ "grad_norm": 0.20437054336071014,
+ "learning_rate": 0.0006,
+ "loss": 4.151417255401611,
+ "step": 1057
+ },
+ {
+ "epoch": 14.698995194408038,
+ "grad_norm": 0.1926720291376114,
+ "learning_rate": 0.0006,
+ "loss": 4.091334342956543,
+ "step": 1058
+ },
+ {
+ "epoch": 14.7129750982962,
+ "grad_norm": 0.2120140641927719,
+ "learning_rate": 0.0006,
+ "loss": 4.111706256866455,
+ "step": 1059
+ },
+ {
+ "epoch": 14.72695500218436,
+ "grad_norm": 0.22877076268196106,
+ "learning_rate": 0.0006,
+ "loss": 4.123166084289551,
+ "step": 1060
+ },
+ {
+ "epoch": 14.740934906072521,
+ "grad_norm": 0.22149473428726196,
+ "learning_rate": 0.0006,
+ "loss": 4.099740028381348,
+ "step": 1061
+ },
+ {
+ "epoch": 14.754914809960681,
+ "grad_norm": 0.2351604402065277,
+ "learning_rate": 0.0006,
+ "loss": 4.066174507141113,
+ "step": 1062
+ },
+ {
+ "epoch": 14.768894713848843,
+ "grad_norm": 0.22895802557468414,
+ "learning_rate": 0.0006,
+ "loss": 4.101897239685059,
+ "step": 1063
+ },
+ {
+ "epoch": 14.782874617737003,
+ "grad_norm": 0.22050750255584717,
+ "learning_rate": 0.0006,
+ "loss": 4.122953414916992,
+ "step": 1064
+ },
+ {
+ "epoch": 14.796854521625164,
+ "grad_norm": 0.23255324363708496,
+ "learning_rate": 0.0006,
+ "loss": 4.11297607421875,
+ "step": 1065
+ },
+ {
+ "epoch": 14.810834425513324,
+ "grad_norm": 0.24522703886032104,
+ "learning_rate": 0.0006,
+ "loss": 4.131030082702637,
+ "step": 1066
+ },
+ {
+ "epoch": 14.824814329401486,
+ "grad_norm": 0.2492702752351761,
+ "learning_rate": 0.0006,
+ "loss": 4.076324939727783,
+ "step": 1067
+ },
+ {
+ "epoch": 14.838794233289645,
+ "grad_norm": 0.24410948157310486,
+ "learning_rate": 0.0006,
+ "loss": 4.109020709991455,
+ "step": 1068
+ },
+ {
+ "epoch": 14.852774137177807,
+ "grad_norm": 0.2463168203830719,
+ "learning_rate": 0.0006,
+ "loss": 4.135679244995117,
+ "step": 1069
+ },
+ {
+ "epoch": 14.866754041065967,
+ "grad_norm": 0.2563146650791168,
+ "learning_rate": 0.0006,
+ "loss": 4.0958027839660645,
+ "step": 1070
+ },
+ {
+ "epoch": 14.880733944954128,
+ "grad_norm": 0.261167049407959,
+ "learning_rate": 0.0006,
+ "loss": 4.114803314208984,
+ "step": 1071
+ },
+ {
+ "epoch": 14.89471384884229,
+ "grad_norm": 0.2593795955181122,
+ "learning_rate": 0.0006,
+ "loss": 4.1210618019104,
+ "step": 1072
+ },
+ {
+ "epoch": 14.90869375273045,
+ "grad_norm": 0.27184173464775085,
+ "learning_rate": 0.0006,
+ "loss": 4.095145225524902,
+ "step": 1073
+ },
+ {
+ "epoch": 14.922673656618612,
+ "grad_norm": 0.25289732217788696,
+ "learning_rate": 0.0006,
+ "loss": 4.107388973236084,
+ "step": 1074
+ },
+ {
+ "epoch": 14.936653560506771,
+ "grad_norm": 0.2176840454339981,
+ "learning_rate": 0.0006,
+ "loss": 4.105966567993164,
+ "step": 1075
+ },
+ {
+ "epoch": 14.950633464394933,
+ "grad_norm": 0.20930173993110657,
+ "learning_rate": 0.0006,
+ "loss": 4.126853942871094,
+ "step": 1076
+ },
+ {
+ "epoch": 14.964613368283093,
+ "grad_norm": 0.20850051939487457,
+ "learning_rate": 0.0006,
+ "loss": 4.074934959411621,
+ "step": 1077
+ },
+ {
+ "epoch": 14.978593272171254,
+ "grad_norm": 0.21987544000148773,
+ "learning_rate": 0.0006,
+ "loss": 4.123321533203125,
+ "step": 1078
+ },
+ {
+ "epoch": 14.992573176059414,
+ "grad_norm": 0.23821689188480377,
+ "learning_rate": 0.0006,
+ "loss": 4.082647323608398,
+ "step": 1079
+ },
+ {
+ "epoch": 15.0,
+ "grad_norm": 0.2590881288051605,
+ "learning_rate": 0.0006,
+ "loss": 4.113482475280762,
+ "step": 1080
+ },
+ {
+ "epoch": 15.0,
+ "eval_loss": 4.286936283111572,
+ "eval_runtime": 44.2665,
+ "eval_samples_per_second": 55.166,
+ "eval_steps_per_second": 3.456,
+ "step": 1080
+ },
+ {
+ "epoch": 15.013979903888162,
+ "grad_norm": 0.27885961532592773,
+ "learning_rate": 0.0006,
+ "loss": 4.0825958251953125,
+ "step": 1081
+ },
+ {
+ "epoch": 15.027959807776321,
+ "grad_norm": 0.2751246690750122,
+ "learning_rate": 0.0006,
+ "loss": 4.049782752990723,
+ "step": 1082
+ },
+ {
+ "epoch": 15.041939711664483,
+ "grad_norm": 0.25238561630249023,
+ "learning_rate": 0.0006,
+ "loss": 4.067366600036621,
+ "step": 1083
+ },
+ {
+ "epoch": 15.055919615552643,
+ "grad_norm": 0.27481040358543396,
+ "learning_rate": 0.0006,
+ "loss": 4.089946746826172,
+ "step": 1084
+ },
+ {
+ "epoch": 15.069899519440805,
+ "grad_norm": 0.2666703164577484,
+ "learning_rate": 0.0006,
+ "loss": 4.071957588195801,
+ "step": 1085
+ },
+ {
+ "epoch": 15.083879423328964,
+ "grad_norm": 0.2532065212726593,
+ "learning_rate": 0.0006,
+ "loss": 4.091561794281006,
+ "step": 1086
+ },
+ {
+ "epoch": 15.097859327217126,
+ "grad_norm": 0.23562374711036682,
+ "learning_rate": 0.0006,
+ "loss": 4.074953079223633,
+ "step": 1087
+ },
+ {
+ "epoch": 15.111839231105286,
+ "grad_norm": 0.2498065084218979,
+ "learning_rate": 0.0006,
+ "loss": 4.056004047393799,
+ "step": 1088
+ },
+ {
+ "epoch": 15.125819134993447,
+ "grad_norm": 0.257046639919281,
+ "learning_rate": 0.0006,
+ "loss": 4.044149875640869,
+ "step": 1089
+ },
+ {
+ "epoch": 15.139799038881607,
+ "grad_norm": 0.2417808622121811,
+ "learning_rate": 0.0006,
+ "loss": 4.071811676025391,
+ "step": 1090
+ },
+ {
+ "epoch": 15.153778942769769,
+ "grad_norm": 0.24742013216018677,
+ "learning_rate": 0.0006,
+ "loss": 4.081482887268066,
+ "step": 1091
+ },
+ {
+ "epoch": 15.167758846657929,
+ "grad_norm": 0.2610231637954712,
+ "learning_rate": 0.0006,
+ "loss": 4.06953763961792,
+ "step": 1092
+ },
+ {
+ "epoch": 15.18173875054609,
+ "grad_norm": 0.24688200652599335,
+ "learning_rate": 0.0006,
+ "loss": 4.079700469970703,
+ "step": 1093
+ },
+ {
+ "epoch": 15.19571865443425,
+ "grad_norm": 0.2650167942047119,
+ "learning_rate": 0.0006,
+ "loss": 4.082088947296143,
+ "step": 1094
+ },
+ {
+ "epoch": 15.209698558322412,
+ "grad_norm": 0.25913330912590027,
+ "learning_rate": 0.0006,
+ "loss": 4.081713676452637,
+ "step": 1095
+ },
+ {
+ "epoch": 15.223678462210572,
+ "grad_norm": 0.2547631561756134,
+ "learning_rate": 0.0006,
+ "loss": 4.073573112487793,
+ "step": 1096
+ },
+ {
+ "epoch": 15.237658366098733,
+ "grad_norm": 0.2732609510421753,
+ "learning_rate": 0.0006,
+ "loss": 4.10186767578125,
+ "step": 1097
+ },
+ {
+ "epoch": 15.251638269986893,
+ "grad_norm": 0.2990017533302307,
+ "learning_rate": 0.0006,
+ "loss": 4.085466384887695,
+ "step": 1098
+ },
+ {
+ "epoch": 15.265618173875055,
+ "grad_norm": 0.30252209305763245,
+ "learning_rate": 0.0006,
+ "loss": 4.077337265014648,
+ "step": 1099
+ },
+ {
+ "epoch": 15.279598077763215,
+ "grad_norm": 0.30046045780181885,
+ "learning_rate": 0.0006,
+ "loss": 4.0895891189575195,
+ "step": 1100
+ },
+ {
+ "epoch": 15.293577981651376,
+ "grad_norm": 0.2779843211174011,
+ "learning_rate": 0.0006,
+ "loss": 4.060354709625244,
+ "step": 1101
+ },
+ {
+ "epoch": 15.307557885539538,
+ "grad_norm": 0.26914986968040466,
+ "learning_rate": 0.0006,
+ "loss": 4.07314395904541,
+ "step": 1102
+ },
+ {
+ "epoch": 15.321537789427698,
+ "grad_norm": 0.24605873227119446,
+ "learning_rate": 0.0006,
+ "loss": 4.051377296447754,
+ "step": 1103
+ },
+ {
+ "epoch": 15.33551769331586,
+ "grad_norm": 0.25634095072746277,
+ "learning_rate": 0.0006,
+ "loss": 4.082427024841309,
+ "step": 1104
+ },
+ {
+ "epoch": 15.349497597204019,
+ "grad_norm": 0.2888158857822418,
+ "learning_rate": 0.0006,
+ "loss": 4.074253082275391,
+ "step": 1105
+ },
+ {
+ "epoch": 15.36347750109218,
+ "grad_norm": 0.2758261561393738,
+ "learning_rate": 0.0006,
+ "loss": 4.08344841003418,
+ "step": 1106
+ },
+ {
+ "epoch": 15.37745740498034,
+ "grad_norm": 0.26937270164489746,
+ "learning_rate": 0.0006,
+ "loss": 4.063424587249756,
+ "step": 1107
+ },
+ {
+ "epoch": 15.391437308868502,
+ "grad_norm": 0.2739955484867096,
+ "learning_rate": 0.0006,
+ "loss": 4.08005952835083,
+ "step": 1108
+ },
+ {
+ "epoch": 15.405417212756662,
+ "grad_norm": 0.2635386288166046,
+ "learning_rate": 0.0006,
+ "loss": 4.087360382080078,
+ "step": 1109
+ },
+ {
+ "epoch": 15.419397116644824,
+ "grad_norm": 0.2619768977165222,
+ "learning_rate": 0.0006,
+ "loss": 4.072653770446777,
+ "step": 1110
+ },
+ {
+ "epoch": 15.433377020532983,
+ "grad_norm": 0.24154804646968842,
+ "learning_rate": 0.0006,
+ "loss": 4.084464073181152,
+ "step": 1111
+ },
+ {
+ "epoch": 15.447356924421145,
+ "grad_norm": 0.24236027896404266,
+ "learning_rate": 0.0006,
+ "loss": 4.078777313232422,
+ "step": 1112
+ },
+ {
+ "epoch": 15.461336828309305,
+ "grad_norm": 0.24653038382530212,
+ "learning_rate": 0.0006,
+ "loss": 4.075024604797363,
+ "step": 1113
+ },
+ {
+ "epoch": 15.475316732197467,
+ "grad_norm": 0.27106523513793945,
+ "learning_rate": 0.0006,
+ "loss": 4.060937881469727,
+ "step": 1114
+ },
+ {
+ "epoch": 15.489296636085626,
+ "grad_norm": 0.25109633803367615,
+ "learning_rate": 0.0006,
+ "loss": 4.081971168518066,
+ "step": 1115
+ },
+ {
+ "epoch": 15.503276539973788,
+ "grad_norm": 0.23452287912368774,
+ "learning_rate": 0.0006,
+ "loss": 4.0762834548950195,
+ "step": 1116
+ },
+ {
+ "epoch": 15.517256443861948,
+ "grad_norm": 0.25415024161338806,
+ "learning_rate": 0.0006,
+ "loss": 4.069386959075928,
+ "step": 1117
+ },
+ {
+ "epoch": 15.53123634775011,
+ "grad_norm": 0.25448229908943176,
+ "learning_rate": 0.0006,
+ "loss": 4.075098514556885,
+ "step": 1118
+ },
+ {
+ "epoch": 15.54521625163827,
+ "grad_norm": 0.25679755210876465,
+ "learning_rate": 0.0006,
+ "loss": 4.097431182861328,
+ "step": 1119
+ },
+ {
+ "epoch": 15.55919615552643,
+ "grad_norm": 0.25973212718963623,
+ "learning_rate": 0.0006,
+ "loss": 4.058948516845703,
+ "step": 1120
+ },
+ {
+ "epoch": 15.57317605941459,
+ "grad_norm": 0.24511456489562988,
+ "learning_rate": 0.0006,
+ "loss": 4.092263698577881,
+ "step": 1121
+ },
+ {
+ "epoch": 15.587155963302752,
+ "grad_norm": 0.22949442267417908,
+ "learning_rate": 0.0006,
+ "loss": 4.0526604652404785,
+ "step": 1122
+ },
+ {
+ "epoch": 15.601135867190912,
+ "grad_norm": 0.22486285865306854,
+ "learning_rate": 0.0006,
+ "loss": 4.051939010620117,
+ "step": 1123
+ },
+ {
+ "epoch": 15.615115771079074,
+ "grad_norm": 0.22183601558208466,
+ "learning_rate": 0.0006,
+ "loss": 4.065430641174316,
+ "step": 1124
+ },
+ {
+ "epoch": 15.629095674967235,
+ "grad_norm": 0.2531328797340393,
+ "learning_rate": 0.0006,
+ "loss": 4.069165229797363,
+ "step": 1125
+ },
+ {
+ "epoch": 15.643075578855395,
+ "grad_norm": 0.24403320252895355,
+ "learning_rate": 0.0006,
+ "loss": 4.055041790008545,
+ "step": 1126
+ },
+ {
+ "epoch": 15.657055482743557,
+ "grad_norm": 0.24504756927490234,
+ "learning_rate": 0.0006,
+ "loss": 4.035850524902344,
+ "step": 1127
+ },
+ {
+ "epoch": 15.671035386631717,
+ "grad_norm": 0.23812057077884674,
+ "learning_rate": 0.0006,
+ "loss": 4.049278259277344,
+ "step": 1128
+ },
+ {
+ "epoch": 15.685015290519878,
+ "grad_norm": 0.23694153130054474,
+ "learning_rate": 0.0006,
+ "loss": 4.065816402435303,
+ "step": 1129
+ },
+ {
+ "epoch": 15.698995194408038,
+ "grad_norm": 0.23252786695957184,
+ "learning_rate": 0.0006,
+ "loss": 4.05952262878418,
+ "step": 1130
+ },
+ {
+ "epoch": 15.7129750982962,
+ "grad_norm": 0.2243805080652237,
+ "learning_rate": 0.0006,
+ "loss": 4.058291435241699,
+ "step": 1131
+ },
+ {
+ "epoch": 15.72695500218436,
+ "grad_norm": 0.2200988084077835,
+ "learning_rate": 0.0006,
+ "loss": 4.040788650512695,
+ "step": 1132
+ },
+ {
+ "epoch": 15.740934906072521,
+ "grad_norm": 0.21460631489753723,
+ "learning_rate": 0.0006,
+ "loss": 4.072552680969238,
+ "step": 1133
+ },
+ {
+ "epoch": 15.754914809960681,
+ "grad_norm": 0.2056441456079483,
+ "learning_rate": 0.0006,
+ "loss": 4.059467315673828,
+ "step": 1134
+ },
+ {
+ "epoch": 15.768894713848843,
+ "grad_norm": 0.2068045437335968,
+ "learning_rate": 0.0006,
+ "loss": 4.063803195953369,
+ "step": 1135
+ },
+ {
+ "epoch": 15.782874617737003,
+ "grad_norm": 0.21307601034641266,
+ "learning_rate": 0.0006,
+ "loss": 4.093092918395996,
+ "step": 1136
+ },
+ {
+ "epoch": 15.796854521625164,
+ "grad_norm": 0.20729634165763855,
+ "learning_rate": 0.0006,
+ "loss": 4.066030502319336,
+ "step": 1137
+ },
+ {
+ "epoch": 15.810834425513324,
+ "grad_norm": 0.2097514122724533,
+ "learning_rate": 0.0006,
+ "loss": 4.077326774597168,
+ "step": 1138
+ },
+ {
+ "epoch": 15.824814329401486,
+ "grad_norm": 0.21884000301361084,
+ "learning_rate": 0.0006,
+ "loss": 4.0595598220825195,
+ "step": 1139
+ },
+ {
+ "epoch": 15.838794233289645,
+ "grad_norm": 0.22220250964164734,
+ "learning_rate": 0.0006,
+ "loss": 4.061574459075928,
+ "step": 1140
+ },
+ {
+ "epoch": 15.852774137177807,
+ "grad_norm": 0.23189949989318848,
+ "learning_rate": 0.0006,
+ "loss": 4.0504045486450195,
+ "step": 1141
+ },
+ {
+ "epoch": 15.866754041065967,
+ "grad_norm": 0.226649671792984,
+ "learning_rate": 0.0006,
+ "loss": 4.060986518859863,
+ "step": 1142
+ },
+ {
+ "epoch": 15.880733944954128,
+ "grad_norm": 0.2456834763288498,
+ "learning_rate": 0.0006,
+ "loss": 4.038525581359863,
+ "step": 1143
+ },
+ {
+ "epoch": 15.89471384884229,
+ "grad_norm": 0.2818352282047272,
+ "learning_rate": 0.0006,
+ "loss": 4.062709331512451,
+ "step": 1144
+ },
+ {
+ "epoch": 15.90869375273045,
+ "grad_norm": 0.2850170135498047,
+ "learning_rate": 0.0006,
+ "loss": 4.0683274269104,
+ "step": 1145
+ },
+ {
+ "epoch": 15.922673656618612,
+ "grad_norm": 0.27691730856895447,
+ "learning_rate": 0.0006,
+ "loss": 4.076540470123291,
+ "step": 1146
+ },
+ {
+ "epoch": 15.936653560506771,
+ "grad_norm": 0.2685548961162567,
+ "learning_rate": 0.0006,
+ "loss": 4.048116683959961,
+ "step": 1147
+ },
+ {
+ "epoch": 15.950633464394933,
+ "grad_norm": 0.2452288419008255,
+ "learning_rate": 0.0006,
+ "loss": 4.06640625,
+ "step": 1148
+ },
+ {
+ "epoch": 15.964613368283093,
+ "grad_norm": 0.2601441740989685,
+ "learning_rate": 0.0006,
+ "loss": 4.073277473449707,
+ "step": 1149
+ },
+ {
+ "epoch": 15.978593272171254,
+ "grad_norm": 0.2748197913169861,
+ "learning_rate": 0.0006,
+ "loss": 4.0332536697387695,
+ "step": 1150
+ },
+ {
+ "epoch": 15.992573176059414,
+ "grad_norm": 0.27249959111213684,
+ "learning_rate": 0.0006,
+ "loss": 3.9952516555786133,
+ "step": 1151
+ },
+ {
+ "epoch": 16.0,
+ "grad_norm": 0.3475601375102997,
+ "learning_rate": 0.0006,
+ "loss": 4.040761947631836,
+ "step": 1152
+ },
+ {
+ "epoch": 16.0,
+ "eval_loss": 4.237997531890869,
+ "eval_runtime": 43.8692,
+ "eval_samples_per_second": 55.665,
+ "eval_steps_per_second": 3.488,
+ "step": 1152
+ },
+ {
+ "epoch": 16.01397990388816,
+ "grad_norm": 0.3365611433982849,
+ "learning_rate": 0.0006,
+ "loss": 4.031302452087402,
+ "step": 1153
+ },
+ {
+ "epoch": 16.027959807776323,
+ "grad_norm": 0.3020530641078949,
+ "learning_rate": 0.0006,
+ "loss": 4.036273956298828,
+ "step": 1154
+ },
+ {
+ "epoch": 16.041939711664483,
+ "grad_norm": 0.25277993083000183,
+ "learning_rate": 0.0006,
+ "loss": 4.007067680358887,
+ "step": 1155
+ },
+ {
+ "epoch": 16.055919615552643,
+ "grad_norm": 0.24762840569019318,
+ "learning_rate": 0.0006,
+ "loss": 4.046561241149902,
+ "step": 1156
+ },
+ {
+ "epoch": 16.069899519440803,
+ "grad_norm": 0.25236397981643677,
+ "learning_rate": 0.0006,
+ "loss": 4.061616897583008,
+ "step": 1157
+ },
+ {
+ "epoch": 16.083879423328966,
+ "grad_norm": 0.22789105772972107,
+ "learning_rate": 0.0006,
+ "loss": 4.010061740875244,
+ "step": 1158
+ },
+ {
+ "epoch": 16.097859327217126,
+ "grad_norm": 0.21866244077682495,
+ "learning_rate": 0.0006,
+ "loss": 4.0181097984313965,
+ "step": 1159
+ },
+ {
+ "epoch": 16.111839231105286,
+ "grad_norm": 0.21889029443264008,
+ "learning_rate": 0.0006,
+ "loss": 4.012239456176758,
+ "step": 1160
+ },
+ {
+ "epoch": 16.125819134993446,
+ "grad_norm": 0.23002485930919647,
+ "learning_rate": 0.0006,
+ "loss": 4.034092426300049,
+ "step": 1161
+ },
+ {
+ "epoch": 16.13979903888161,
+ "grad_norm": 0.2271798551082611,
+ "learning_rate": 0.0006,
+ "loss": 4.026222229003906,
+ "step": 1162
+ },
+ {
+ "epoch": 16.15377894276977,
+ "grad_norm": 0.238200843334198,
+ "learning_rate": 0.0006,
+ "loss": 4.044692039489746,
+ "step": 1163
+ },
+ {
+ "epoch": 16.16775884665793,
+ "grad_norm": 0.2281467169523239,
+ "learning_rate": 0.0006,
+ "loss": 4.032305717468262,
+ "step": 1164
+ },
+ {
+ "epoch": 16.18173875054609,
+ "grad_norm": 0.2213946431875229,
+ "learning_rate": 0.0006,
+ "loss": 4.048737525939941,
+ "step": 1165
+ },
+ {
+ "epoch": 16.195718654434252,
+ "grad_norm": 0.26638558506965637,
+ "learning_rate": 0.0006,
+ "loss": 4.006335258483887,
+ "step": 1166
+ },
+ {
+ "epoch": 16.209698558322412,
+ "grad_norm": 0.2780219316482544,
+ "learning_rate": 0.0006,
+ "loss": 4.049234390258789,
+ "step": 1167
+ },
+ {
+ "epoch": 16.22367846221057,
+ "grad_norm": 0.27425870299339294,
+ "learning_rate": 0.0006,
+ "loss": 4.017177104949951,
+ "step": 1168
+ },
+ {
+ "epoch": 16.23765836609873,
+ "grad_norm": 0.2596667408943176,
+ "learning_rate": 0.0006,
+ "loss": 4.022942543029785,
+ "step": 1169
+ },
+ {
+ "epoch": 16.251638269986895,
+ "grad_norm": 0.26972314715385437,
+ "learning_rate": 0.0006,
+ "loss": 4.035310745239258,
+ "step": 1170
+ },
+ {
+ "epoch": 16.265618173875055,
+ "grad_norm": 0.2677772045135498,
+ "learning_rate": 0.0006,
+ "loss": 4.0280561447143555,
+ "step": 1171
+ },
+ {
+ "epoch": 16.279598077763215,
+ "grad_norm": 0.25433358550071716,
+ "learning_rate": 0.0006,
+ "loss": 4.03616189956665,
+ "step": 1172
+ },
+ {
+ "epoch": 16.293577981651374,
+ "grad_norm": 0.2583644688129425,
+ "learning_rate": 0.0006,
+ "loss": 4.073624134063721,
+ "step": 1173
+ },
+ {
+ "epoch": 16.307557885539538,
+ "grad_norm": 0.25437524914741516,
+ "learning_rate": 0.0006,
+ "loss": 4.057926654815674,
+ "step": 1174
+ },
+ {
+ "epoch": 16.321537789427698,
+ "grad_norm": 0.2819201350212097,
+ "learning_rate": 0.0006,
+ "loss": 4.020838737487793,
+ "step": 1175
+ },
+ {
+ "epoch": 16.335517693315857,
+ "grad_norm": 0.32689282298088074,
+ "learning_rate": 0.0006,
+ "loss": 4.062448501586914,
+ "step": 1176
+ },
+ {
+ "epoch": 16.34949759720402,
+ "grad_norm": 0.33002278208732605,
+ "learning_rate": 0.0006,
+ "loss": 4.052059173583984,
+ "step": 1177
+ },
+ {
+ "epoch": 16.36347750109218,
+ "grad_norm": 0.32472696900367737,
+ "learning_rate": 0.0006,
+ "loss": 4.042375564575195,
+ "step": 1178
+ },
+ {
+ "epoch": 16.37745740498034,
+ "grad_norm": 0.35279813408851624,
+ "learning_rate": 0.0006,
+ "loss": 4.028722763061523,
+ "step": 1179
+ },
+ {
+ "epoch": 16.3914373088685,
+ "grad_norm": 0.3243204951286316,
+ "learning_rate": 0.0006,
+ "loss": 4.045693874359131,
+ "step": 1180
+ },
+ {
+ "epoch": 16.405417212756664,
+ "grad_norm": 0.32171115279197693,
+ "learning_rate": 0.0006,
+ "loss": 4.018350124359131,
+ "step": 1181
+ },
+ {
+ "epoch": 16.419397116644824,
+ "grad_norm": 0.31459906697273254,
+ "learning_rate": 0.0006,
+ "loss": 4.039547443389893,
+ "step": 1182
+ },
+ {
+ "epoch": 16.433377020532983,
+ "grad_norm": 0.35038673877716064,
+ "learning_rate": 0.0006,
+ "loss": 4.005928039550781,
+ "step": 1183
+ },
+ {
+ "epoch": 16.447356924421143,
+ "grad_norm": 0.34110963344573975,
+ "learning_rate": 0.0006,
+ "loss": 4.042272090911865,
+ "step": 1184
+ },
+ {
+ "epoch": 16.461336828309307,
+ "grad_norm": 0.33760902285575867,
+ "learning_rate": 0.0006,
+ "loss": 4.02886962890625,
+ "step": 1185
+ },
+ {
+ "epoch": 16.475316732197467,
+ "grad_norm": 0.3162464499473572,
+ "learning_rate": 0.0006,
+ "loss": 4.059924125671387,
+ "step": 1186
+ },
+ {
+ "epoch": 16.489296636085626,
+ "grad_norm": 0.2667233645915985,
+ "learning_rate": 0.0006,
+ "loss": 4.069073677062988,
+ "step": 1187
+ },
+ {
+ "epoch": 16.503276539973786,
+ "grad_norm": 0.22626568377017975,
+ "learning_rate": 0.0006,
+ "loss": 4.044912338256836,
+ "step": 1188
+ },
+ {
+ "epoch": 16.51725644386195,
+ "grad_norm": 0.203303262591362,
+ "learning_rate": 0.0006,
+ "loss": 4.025210380554199,
+ "step": 1189
+ },
+ {
+ "epoch": 16.53123634775011,
+ "grad_norm": 0.2108820080757141,
+ "learning_rate": 0.0006,
+ "loss": 4.035998821258545,
+ "step": 1190
+ },
+ {
+ "epoch": 16.54521625163827,
+ "grad_norm": 0.20451335608959198,
+ "learning_rate": 0.0006,
+ "loss": 4.043377876281738,
+ "step": 1191
+ },
+ {
+ "epoch": 16.55919615552643,
+ "grad_norm": 0.23348836600780487,
+ "learning_rate": 0.0006,
+ "loss": 4.033735275268555,
+ "step": 1192
+ },
+ {
+ "epoch": 16.573176059414592,
+ "grad_norm": 0.24438607692718506,
+ "learning_rate": 0.0006,
+ "loss": 4.071747779846191,
+ "step": 1193
+ },
+ {
+ "epoch": 16.587155963302752,
+ "grad_norm": 0.24233631789684296,
+ "learning_rate": 0.0006,
+ "loss": 4.0138702392578125,
+ "step": 1194
+ },
+ {
+ "epoch": 16.601135867190912,
+ "grad_norm": 0.21625740826129913,
+ "learning_rate": 0.0006,
+ "loss": 4.013422012329102,
+ "step": 1195
+ },
+ {
+ "epoch": 16.615115771079076,
+ "grad_norm": 0.22447720170021057,
+ "learning_rate": 0.0006,
+ "loss": 4.056326866149902,
+ "step": 1196
+ },
+ {
+ "epoch": 16.629095674967235,
+ "grad_norm": 0.21899616718292236,
+ "learning_rate": 0.0006,
+ "loss": 4.006134033203125,
+ "step": 1197
+ },
+ {
+ "epoch": 16.643075578855395,
+ "grad_norm": 0.191362664103508,
+ "learning_rate": 0.0006,
+ "loss": 4.036748886108398,
+ "step": 1198
+ },
+ {
+ "epoch": 16.657055482743555,
+ "grad_norm": 0.20203463733196259,
+ "learning_rate": 0.0006,
+ "loss": 4.006264686584473,
+ "step": 1199
+ },
+ {
+ "epoch": 16.67103538663172,
+ "grad_norm": 0.20209139585494995,
+ "learning_rate": 0.0006,
+ "loss": 4.059018135070801,
+ "step": 1200
+ },
+ {
+ "epoch": 16.68501529051988,
+ "grad_norm": 0.20811820030212402,
+ "learning_rate": 0.0006,
+ "loss": 4.054325103759766,
+ "step": 1201
+ },
+ {
+ "epoch": 16.698995194408038,
+ "grad_norm": 0.22448928654193878,
+ "learning_rate": 0.0006,
+ "loss": 3.996121406555176,
+ "step": 1202
+ },
+ {
+ "epoch": 16.712975098296198,
+ "grad_norm": 0.21692240238189697,
+ "learning_rate": 0.0006,
+ "loss": 4.042046546936035,
+ "step": 1203
+ },
+ {
+ "epoch": 16.72695500218436,
+ "grad_norm": 0.20688563585281372,
+ "learning_rate": 0.0006,
+ "loss": 4.002251625061035,
+ "step": 1204
+ },
+ {
+ "epoch": 16.74093490607252,
+ "grad_norm": 0.1835535764694214,
+ "learning_rate": 0.0006,
+ "loss": 4.02545166015625,
+ "step": 1205
+ },
+ {
+ "epoch": 16.75491480996068,
+ "grad_norm": 0.20532558858394623,
+ "learning_rate": 0.0006,
+ "loss": 4.039333343505859,
+ "step": 1206
+ },
+ {
+ "epoch": 16.76889471384884,
+ "grad_norm": 0.2214215099811554,
+ "learning_rate": 0.0006,
+ "loss": 4.037858486175537,
+ "step": 1207
+ },
+ {
+ "epoch": 16.782874617737004,
+ "grad_norm": 0.24926038086414337,
+ "learning_rate": 0.0006,
+ "loss": 4.024799346923828,
+ "step": 1208
+ },
+ {
+ "epoch": 16.796854521625164,
+ "grad_norm": 0.26057952642440796,
+ "learning_rate": 0.0006,
+ "loss": 4.042788505554199,
+ "step": 1209
+ },
+ {
+ "epoch": 16.810834425513324,
+ "grad_norm": 0.2501208782196045,
+ "learning_rate": 0.0006,
+ "loss": 4.051809310913086,
+ "step": 1210
+ },
+ {
+ "epoch": 16.824814329401484,
+ "grad_norm": 0.21760012209415436,
+ "learning_rate": 0.0006,
+ "loss": 4.063589096069336,
+ "step": 1211
+ },
+ {
+ "epoch": 16.838794233289647,
+ "grad_norm": 0.2243622988462448,
+ "learning_rate": 0.0006,
+ "loss": 4.008829593658447,
+ "step": 1212
+ },
+ {
+ "epoch": 16.852774137177807,
+ "grad_norm": 0.2399163395166397,
+ "learning_rate": 0.0006,
+ "loss": 4.013262748718262,
+ "step": 1213
+ },
+ {
+ "epoch": 16.866754041065967,
+ "grad_norm": 0.23187831044197083,
+ "learning_rate": 0.0006,
+ "loss": 4.023053169250488,
+ "step": 1214
+ },
+ {
+ "epoch": 16.88073394495413,
+ "grad_norm": 0.23723892867565155,
+ "learning_rate": 0.0006,
+ "loss": 3.991321563720703,
+ "step": 1215
+ },
+ {
+ "epoch": 16.89471384884229,
+ "grad_norm": 0.21766342222690582,
+ "learning_rate": 0.0006,
+ "loss": 4.0250773429870605,
+ "step": 1216
+ },
+ {
+ "epoch": 16.90869375273045,
+ "grad_norm": 0.20715023577213287,
+ "learning_rate": 0.0006,
+ "loss": 4.063642978668213,
+ "step": 1217
+ },
+ {
+ "epoch": 16.92267365661861,
+ "grad_norm": 0.20165133476257324,
+ "learning_rate": 0.0006,
+ "loss": 3.9951367378234863,
+ "step": 1218
+ },
+ {
+ "epoch": 16.936653560506773,
+ "grad_norm": 0.19956178963184357,
+ "learning_rate": 0.0006,
+ "loss": 4.025641441345215,
+ "step": 1219
+ },
+ {
+ "epoch": 16.950633464394933,
+ "grad_norm": 0.2175494134426117,
+ "learning_rate": 0.0006,
+ "loss": 4.030346393585205,
+ "step": 1220
+ },
+ {
+ "epoch": 16.964613368283093,
+ "grad_norm": 0.22365593910217285,
+ "learning_rate": 0.0006,
+ "loss": 4.018105506896973,
+ "step": 1221
+ },
+ {
+ "epoch": 16.978593272171253,
+ "grad_norm": 0.21251538395881653,
+ "learning_rate": 0.0006,
+ "loss": 4.023580074310303,
+ "step": 1222
+ },
+ {
+ "epoch": 16.992573176059416,
+ "grad_norm": 0.2230125218629837,
+ "learning_rate": 0.0006,
+ "loss": 4.001980304718018,
+ "step": 1223
+ },
+ {
+ "epoch": 17.0,
+ "grad_norm": 0.24261972308158875,
+ "learning_rate": 0.0006,
+ "loss": 4.081348896026611,
+ "step": 1224
+ },
+ {
+ "epoch": 17.0,
+ "eval_loss": 4.225194931030273,
+ "eval_runtime": 44.247,
+ "eval_samples_per_second": 55.19,
+ "eval_steps_per_second": 3.458,
+ "step": 1224
+ },
+ {
+ "epoch": 17.01397990388816,
+ "grad_norm": 0.2438880205154419,
+ "learning_rate": 0.0006,
+ "loss": 4.0164794921875,
+ "step": 1225
+ },
+ {
+ "epoch": 17.027959807776323,
+ "grad_norm": 0.22459383308887482,
+ "learning_rate": 0.0006,
+ "loss": 3.991623878479004,
+ "step": 1226
+ },
+ {
+ "epoch": 17.041939711664483,
+ "grad_norm": 0.25021040439605713,
+ "learning_rate": 0.0006,
+ "loss": 4.003020286560059,
+ "step": 1227
+ },
+ {
+ "epoch": 17.055919615552643,
+ "grad_norm": 0.30358025431632996,
+ "learning_rate": 0.0006,
+ "loss": 3.980921983718872,
+ "step": 1228
+ },
+ {
+ "epoch": 17.069899519440803,
+ "grad_norm": 0.27313271164894104,
+ "learning_rate": 0.0006,
+ "loss": 3.992398977279663,
+ "step": 1229
+ },
+ {
+ "epoch": 17.083879423328966,
+ "grad_norm": 0.2293211966753006,
+ "learning_rate": 0.0006,
+ "loss": 4.02568244934082,
+ "step": 1230
+ },
+ {
+ "epoch": 17.097859327217126,
+ "grad_norm": 0.2363300621509552,
+ "learning_rate": 0.0006,
+ "loss": 3.977229356765747,
+ "step": 1231
+ },
+ {
+ "epoch": 17.111839231105286,
+ "grad_norm": 0.2809674143791199,
+ "learning_rate": 0.0006,
+ "loss": 3.9720497131347656,
+ "step": 1232
+ },
+ {
+ "epoch": 17.125819134993446,
+ "grad_norm": 0.2913855016231537,
+ "learning_rate": 0.0006,
+ "loss": 3.979529857635498,
+ "step": 1233
+ },
+ {
+ "epoch": 17.13979903888161,
+ "grad_norm": 0.2920287251472473,
+ "learning_rate": 0.0006,
+ "loss": 3.9678473472595215,
+ "step": 1234
+ },
+ {
+ "epoch": 17.15377894276977,
+ "grad_norm": 0.2521543502807617,
+ "learning_rate": 0.0006,
+ "loss": 3.9912607669830322,
+ "step": 1235
+ },
+ {
+ "epoch": 17.16775884665793,
+ "grad_norm": 0.22844268381595612,
+ "learning_rate": 0.0006,
+ "loss": 3.9898228645324707,
+ "step": 1236
+ },
+ {
+ "epoch": 17.18173875054609,
+ "grad_norm": 0.2199884057044983,
+ "learning_rate": 0.0006,
+ "loss": 4.0050740242004395,
+ "step": 1237
+ },
+ {
+ "epoch": 17.195718654434252,
+ "grad_norm": 0.23072892427444458,
+ "learning_rate": 0.0006,
+ "loss": 3.9957475662231445,
+ "step": 1238
+ },
+ {
+ "epoch": 17.209698558322412,
+ "grad_norm": 0.2034899890422821,
+ "learning_rate": 0.0006,
+ "loss": 3.9672317504882812,
+ "step": 1239
+ },
+ {
+ "epoch": 17.22367846221057,
+ "grad_norm": 0.21826180815696716,
+ "learning_rate": 0.0006,
+ "loss": 3.98543119430542,
+ "step": 1240
+ },
+ {
+ "epoch": 17.23765836609873,
+ "grad_norm": 0.21203237771987915,
+ "learning_rate": 0.0006,
+ "loss": 3.9971959590911865,
+ "step": 1241
+ },
+ {
+ "epoch": 17.251638269986895,
+ "grad_norm": 0.22139234840869904,
+ "learning_rate": 0.0006,
+ "loss": 4.017539978027344,
+ "step": 1242
+ },
+ {
+ "epoch": 17.265618173875055,
+ "grad_norm": 0.21553276479244232,
+ "learning_rate": 0.0006,
+ "loss": 3.98740553855896,
+ "step": 1243
+ },
+ {
+ "epoch": 17.279598077763215,
+ "grad_norm": 0.23259080946445465,
+ "learning_rate": 0.0006,
+ "loss": 3.9963035583496094,
+ "step": 1244
+ },
+ {
+ "epoch": 17.293577981651374,
+ "grad_norm": 0.2527932822704315,
+ "learning_rate": 0.0006,
+ "loss": 4.0202956199646,
+ "step": 1245
+ },
+ {
+ "epoch": 17.307557885539538,
+ "grad_norm": 0.28669068217277527,
+ "learning_rate": 0.0006,
+ "loss": 3.9947609901428223,
+ "step": 1246
+ },
+ {
+ "epoch": 17.321537789427698,
+ "grad_norm": 0.341602623462677,
+ "learning_rate": 0.0006,
+ "loss": 3.997032642364502,
+ "step": 1247
+ },
+ {
+ "epoch": 17.335517693315857,
+ "grad_norm": 0.3364104926586151,
+ "learning_rate": 0.0006,
+ "loss": 3.9881834983825684,
+ "step": 1248
+ },
+ {
+ "epoch": 17.34949759720402,
+ "grad_norm": 0.2979278266429901,
+ "learning_rate": 0.0006,
+ "loss": 4.045898914337158,
+ "step": 1249
+ },
+ {
+ "epoch": 17.36347750109218,
+ "grad_norm": 0.2857462465763092,
+ "learning_rate": 0.0006,
+ "loss": 4.0085272789001465,
+ "step": 1250
+ },
+ {
+ "epoch": 17.37745740498034,
+ "grad_norm": 0.2689058780670166,
+ "learning_rate": 0.0006,
+ "loss": 4.021465301513672,
+ "step": 1251
+ },
+ {
+ "epoch": 17.3914373088685,
+ "grad_norm": 0.24943363666534424,
+ "learning_rate": 0.0006,
+ "loss": 4.003451347351074,
+ "step": 1252
+ },
+ {
+ "epoch": 17.405417212756664,
+ "grad_norm": 0.2635347843170166,
+ "learning_rate": 0.0006,
+ "loss": 3.9837827682495117,
+ "step": 1253
+ },
+ {
+ "epoch": 17.419397116644824,
+ "grad_norm": 0.29126450419425964,
+ "learning_rate": 0.0006,
+ "loss": 3.9857311248779297,
+ "step": 1254
+ },
+ {
+ "epoch": 17.433377020532983,
+ "grad_norm": 0.3166918456554413,
+ "learning_rate": 0.0006,
+ "loss": 3.9842967987060547,
+ "step": 1255
+ },
+ {
+ "epoch": 17.447356924421143,
+ "grad_norm": 0.27869969606399536,
+ "learning_rate": 0.0006,
+ "loss": 4.012607574462891,
+ "step": 1256
+ },
+ {
+ "epoch": 17.461336828309307,
+ "grad_norm": 0.23719419538974762,
+ "learning_rate": 0.0006,
+ "loss": 3.981034755706787,
+ "step": 1257
+ },
+ {
+ "epoch": 17.475316732197467,
+ "grad_norm": 0.22687610983848572,
+ "learning_rate": 0.0006,
+ "loss": 4.011059761047363,
+ "step": 1258
+ },
+ {
+ "epoch": 17.489296636085626,
+ "grad_norm": 0.22034095227718353,
+ "learning_rate": 0.0006,
+ "loss": 4.015044689178467,
+ "step": 1259
+ },
+ {
+ "epoch": 17.503276539973786,
+ "grad_norm": 0.21208405494689941,
+ "learning_rate": 0.0006,
+ "loss": 4.003793716430664,
+ "step": 1260
+ },
+ {
+ "epoch": 17.51725644386195,
+ "grad_norm": 0.21759214997291565,
+ "learning_rate": 0.0006,
+ "loss": 3.978652238845825,
+ "step": 1261
+ },
+ {
+ "epoch": 17.53123634775011,
+ "grad_norm": 0.22481068968772888,
+ "learning_rate": 0.0006,
+ "loss": 4.034845352172852,
+ "step": 1262
+ },
+ {
+ "epoch": 17.54521625163827,
+ "grad_norm": 0.20376387238502502,
+ "learning_rate": 0.0006,
+ "loss": 3.990541934967041,
+ "step": 1263
+ },
+ {
+ "epoch": 17.55919615552643,
+ "grad_norm": 0.20459355413913727,
+ "learning_rate": 0.0006,
+ "loss": 4.006990432739258,
+ "step": 1264
+ },
+ {
+ "epoch": 17.573176059414592,
+ "grad_norm": 0.19306913018226624,
+ "learning_rate": 0.0006,
+ "loss": 3.993408679962158,
+ "step": 1265
+ },
+ {
+ "epoch": 17.587155963302752,
+ "grad_norm": 0.20727239549160004,
+ "learning_rate": 0.0006,
+ "loss": 3.988016128540039,
+ "step": 1266
+ },
+ {
+ "epoch": 17.601135867190912,
+ "grad_norm": 0.20213133096694946,
+ "learning_rate": 0.0006,
+ "loss": 4.0120368003845215,
+ "step": 1267
+ },
+ {
+ "epoch": 17.615115771079076,
+ "grad_norm": 0.21074117720127106,
+ "learning_rate": 0.0006,
+ "loss": 4.048871040344238,
+ "step": 1268
+ },
+ {
+ "epoch": 17.629095674967235,
+ "grad_norm": 0.2074330598115921,
+ "learning_rate": 0.0006,
+ "loss": 3.997509002685547,
+ "step": 1269
+ },
+ {
+ "epoch": 17.643075578855395,
+ "grad_norm": 0.20383669435977936,
+ "learning_rate": 0.0006,
+ "loss": 4.0028839111328125,
+ "step": 1270
+ },
+ {
+ "epoch": 17.657055482743555,
+ "grad_norm": 0.2060765027999878,
+ "learning_rate": 0.0006,
+ "loss": 3.998032331466675,
+ "step": 1271
+ },
+ {
+ "epoch": 17.67103538663172,
+ "grad_norm": 0.21851404011249542,
+ "learning_rate": 0.0006,
+ "loss": 3.9928741455078125,
+ "step": 1272
+ },
+ {
+ "epoch": 17.68501529051988,
+ "grad_norm": 0.24324250221252441,
+ "learning_rate": 0.0006,
+ "loss": 3.9896507263183594,
+ "step": 1273
+ },
+ {
+ "epoch": 17.698995194408038,
+ "grad_norm": 0.25584331154823303,
+ "learning_rate": 0.0006,
+ "loss": 4.010485649108887,
+ "step": 1274
+ },
+ {
+ "epoch": 17.712975098296198,
+ "grad_norm": 0.2490610033273697,
+ "learning_rate": 0.0006,
+ "loss": 3.9906954765319824,
+ "step": 1275
+ },
+ {
+ "epoch": 17.72695500218436,
+ "grad_norm": 0.24241414666175842,
+ "learning_rate": 0.0006,
+ "loss": 4.016420364379883,
+ "step": 1276
+ },
+ {
+ "epoch": 17.74093490607252,
+ "grad_norm": 0.2222128063440323,
+ "learning_rate": 0.0006,
+ "loss": 4.009827136993408,
+ "step": 1277
+ },
+ {
+ "epoch": 17.75491480996068,
+ "grad_norm": 0.23119516670703888,
+ "learning_rate": 0.0006,
+ "loss": 4.0034589767456055,
+ "step": 1278
+ },
+ {
+ "epoch": 17.76889471384884,
+ "grad_norm": 0.24596457183361053,
+ "learning_rate": 0.0006,
+ "loss": 4.003161907196045,
+ "step": 1279
+ },
+ {
+ "epoch": 17.782874617737004,
+ "grad_norm": 0.2607562839984894,
+ "learning_rate": 0.0006,
+ "loss": 3.9894633293151855,
+ "step": 1280
+ },
+ {
+ "epoch": 17.796854521625164,
+ "grad_norm": 0.28706878423690796,
+ "learning_rate": 0.0006,
+ "loss": 4.005712985992432,
+ "step": 1281
+ },
+ {
+ "epoch": 17.810834425513324,
+ "grad_norm": 0.27178290486335754,
+ "learning_rate": 0.0006,
+ "loss": 3.9784536361694336,
+ "step": 1282
+ },
+ {
+ "epoch": 17.824814329401484,
+ "grad_norm": 0.27962708473205566,
+ "learning_rate": 0.0006,
+ "loss": 4.012705326080322,
+ "step": 1283
+ },
+ {
+ "epoch": 17.838794233289647,
+ "grad_norm": 0.29147693514823914,
+ "learning_rate": 0.0006,
+ "loss": 4.0159783363342285,
+ "step": 1284
+ },
+ {
+ "epoch": 17.852774137177807,
+ "grad_norm": 0.2841821312904358,
+ "learning_rate": 0.0006,
+ "loss": 4.011552810668945,
+ "step": 1285
+ },
+ {
+ "epoch": 17.866754041065967,
+ "grad_norm": 0.24924969673156738,
+ "learning_rate": 0.0006,
+ "loss": 3.992421865463257,
+ "step": 1286
+ },
+ {
+ "epoch": 17.88073394495413,
+ "grad_norm": 0.24850749969482422,
+ "learning_rate": 0.0006,
+ "loss": 3.974897861480713,
+ "step": 1287
+ },
+ {
+ "epoch": 17.89471384884229,
+ "grad_norm": 0.2409554123878479,
+ "learning_rate": 0.0006,
+ "loss": 4.002941131591797,
+ "step": 1288
+ },
+ {
+ "epoch": 17.90869375273045,
+ "grad_norm": 0.2656126320362091,
+ "learning_rate": 0.0006,
+ "loss": 3.9804210662841797,
+ "step": 1289
+ },
+ {
+ "epoch": 17.92267365661861,
+ "grad_norm": 0.28210243582725525,
+ "learning_rate": 0.0006,
+ "loss": 4.007192134857178,
+ "step": 1290
+ },
+ {
+ "epoch": 17.936653560506773,
+ "grad_norm": 0.28427553176879883,
+ "learning_rate": 0.0006,
+ "loss": 3.9739556312561035,
+ "step": 1291
+ },
+ {
+ "epoch": 17.950633464394933,
+ "grad_norm": 0.28893420100212097,
+ "learning_rate": 0.0006,
+ "loss": 4.004766941070557,
+ "step": 1292
+ },
+ {
+ "epoch": 17.964613368283093,
+ "grad_norm": 0.2831471562385559,
+ "learning_rate": 0.0006,
+ "loss": 3.984936237335205,
+ "step": 1293
+ },
+ {
+ "epoch": 17.978593272171253,
+ "grad_norm": 0.2518300712108612,
+ "learning_rate": 0.0006,
+ "loss": 4.002814292907715,
+ "step": 1294
+ },
+ {
+ "epoch": 17.992573176059416,
+ "grad_norm": 0.24264675378799438,
+ "learning_rate": 0.0006,
+ "loss": 3.998900890350342,
+ "step": 1295
+ },
+ {
+ "epoch": 18.0,
+ "grad_norm": 0.24474996328353882,
+ "learning_rate": 0.0006,
+ "loss": 3.974229335784912,
+ "step": 1296
+ },
+ {
+ "epoch": 18.0,
+ "eval_loss": 4.195685863494873,
+ "eval_runtime": 44.0709,
+ "eval_samples_per_second": 55.411,
+ "eval_steps_per_second": 3.472,
+ "step": 1296
+ },
+ {
+ "epoch": 18.01397990388816,
+ "grad_norm": 0.2553016245365143,
+ "learning_rate": 0.0006,
+ "loss": 3.9522247314453125,
+ "step": 1297
+ },
+ {
+ "epoch": 18.027959807776323,
+ "grad_norm": 0.22350727021694183,
+ "learning_rate": 0.0006,
+ "loss": 3.9850122928619385,
+ "step": 1298
+ },
+ {
+ "epoch": 18.041939711664483,
+ "grad_norm": 0.23935550451278687,
+ "learning_rate": 0.0006,
+ "loss": 3.9758832454681396,
+ "step": 1299
+ },
+ {
+ "epoch": 18.055919615552643,
+ "grad_norm": 0.23868797719478607,
+ "learning_rate": 0.0006,
+ "loss": 3.9567959308624268,
+ "step": 1300
+ },
+ {
+ "epoch": 18.069899519440803,
+ "grad_norm": 0.23102357983589172,
+ "learning_rate": 0.0006,
+ "loss": 3.9399867057800293,
+ "step": 1301
+ },
+ {
+ "epoch": 18.083879423328966,
+ "grad_norm": 0.23706983029842377,
+ "learning_rate": 0.0006,
+ "loss": 3.993434190750122,
+ "step": 1302
+ },
+ {
+ "epoch": 18.097859327217126,
+ "grad_norm": 0.22207573056221008,
+ "learning_rate": 0.0006,
+ "loss": 3.993436574935913,
+ "step": 1303
+ },
+ {
+ "epoch": 18.111839231105286,
+ "grad_norm": 0.23975296318531036,
+ "learning_rate": 0.0006,
+ "loss": 3.981943368911743,
+ "step": 1304
+ },
+ {
+ "epoch": 18.125819134993446,
+ "grad_norm": 0.2520582675933838,
+ "learning_rate": 0.0006,
+ "loss": 3.965493679046631,
+ "step": 1305
+ },
+ {
+ "epoch": 18.13979903888161,
+ "grad_norm": 0.2230956256389618,
+ "learning_rate": 0.0006,
+ "loss": 3.9360928535461426,
+ "step": 1306
+ },
+ {
+ "epoch": 18.15377894276977,
+ "grad_norm": 0.22527500987052917,
+ "learning_rate": 0.0006,
+ "loss": 3.9814581871032715,
+ "step": 1307
+ },
+ {
+ "epoch": 18.16775884665793,
+ "grad_norm": 0.22389626502990723,
+ "learning_rate": 0.0006,
+ "loss": 3.961590051651001,
+ "step": 1308
+ },
+ {
+ "epoch": 18.18173875054609,
+ "grad_norm": 0.22279471158981323,
+ "learning_rate": 0.0006,
+ "loss": 3.952338695526123,
+ "step": 1309
+ },
+ {
+ "epoch": 18.195718654434252,
+ "grad_norm": 0.24635115265846252,
+ "learning_rate": 0.0006,
+ "loss": 3.9693849086761475,
+ "step": 1310
+ },
+ {
+ "epoch": 18.209698558322412,
+ "grad_norm": 0.2757279872894287,
+ "learning_rate": 0.0006,
+ "loss": 3.9956700801849365,
+ "step": 1311
+ },
+ {
+ "epoch": 18.22367846221057,
+ "grad_norm": 0.2619115710258484,
+ "learning_rate": 0.0006,
+ "loss": 3.948878765106201,
+ "step": 1312
+ },
+ {
+ "epoch": 18.23765836609873,
+ "grad_norm": 0.22853828966617584,
+ "learning_rate": 0.0006,
+ "loss": 3.9545674324035645,
+ "step": 1313
+ },
+ {
+ "epoch": 18.251638269986895,
+ "grad_norm": 0.22904761135578156,
+ "learning_rate": 0.0006,
+ "loss": 3.947535991668701,
+ "step": 1314
+ },
+ {
+ "epoch": 18.265618173875055,
+ "grad_norm": 0.23592644929885864,
+ "learning_rate": 0.0006,
+ "loss": 3.971926212310791,
+ "step": 1315
+ },
+ {
+ "epoch": 18.279598077763215,
+ "grad_norm": 0.22120243310928345,
+ "learning_rate": 0.0006,
+ "loss": 3.9471049308776855,
+ "step": 1316
+ },
+ {
+ "epoch": 18.293577981651374,
+ "grad_norm": 0.20308749377727509,
+ "learning_rate": 0.0006,
+ "loss": 3.967449188232422,
+ "step": 1317
+ },
+ {
+ "epoch": 18.307557885539538,
+ "grad_norm": 0.20013529062271118,
+ "learning_rate": 0.0006,
+ "loss": 3.966151237487793,
+ "step": 1318
+ },
+ {
+ "epoch": 18.321537789427698,
+ "grad_norm": 0.20635221898555756,
+ "learning_rate": 0.0006,
+ "loss": 3.9908885955810547,
+ "step": 1319
+ },
+ {
+ "epoch": 18.335517693315857,
+ "grad_norm": 0.2232237160205841,
+ "learning_rate": 0.0006,
+ "loss": 3.9488768577575684,
+ "step": 1320
+ },
+ {
+ "epoch": 18.34949759720402,
+ "grad_norm": 0.21916444599628448,
+ "learning_rate": 0.0006,
+ "loss": 3.973428726196289,
+ "step": 1321
+ },
+ {
+ "epoch": 18.36347750109218,
+ "grad_norm": 0.20427337288856506,
+ "learning_rate": 0.0006,
+ "loss": 3.969332695007324,
+ "step": 1322
+ },
+ {
+ "epoch": 18.37745740498034,
+ "grad_norm": 0.20138131082057953,
+ "learning_rate": 0.0006,
+ "loss": 3.9651856422424316,
+ "step": 1323
+ },
+ {
+ "epoch": 18.3914373088685,
+ "grad_norm": 0.18918880820274353,
+ "learning_rate": 0.0006,
+ "loss": 3.9772281646728516,
+ "step": 1324
+ },
+ {
+ "epoch": 18.405417212756664,
+ "grad_norm": 0.1860039383172989,
+ "learning_rate": 0.0006,
+ "loss": 3.9289052486419678,
+ "step": 1325
+ },
+ {
+ "epoch": 18.419397116644824,
+ "grad_norm": 0.19541646540164948,
+ "learning_rate": 0.0006,
+ "loss": 3.9527673721313477,
+ "step": 1326
+ },
+ {
+ "epoch": 18.433377020532983,
+ "grad_norm": 0.206914022564888,
+ "learning_rate": 0.0006,
+ "loss": 3.99316143989563,
+ "step": 1327
+ },
+ {
+ "epoch": 18.447356924421143,
+ "grad_norm": 0.209097757935524,
+ "learning_rate": 0.0006,
+ "loss": 3.978130340576172,
+ "step": 1328
+ },
+ {
+ "epoch": 18.461336828309307,
+ "grad_norm": 0.22163373231887817,
+ "learning_rate": 0.0006,
+ "loss": 3.951460361480713,
+ "step": 1329
+ },
+ {
+ "epoch": 18.475316732197467,
+ "grad_norm": 0.21446120738983154,
+ "learning_rate": 0.0006,
+ "loss": 3.963571071624756,
+ "step": 1330
+ },
+ {
+ "epoch": 18.489296636085626,
+ "grad_norm": 0.2341388761997223,
+ "learning_rate": 0.0006,
+ "loss": 4.010684013366699,
+ "step": 1331
+ },
+ {
+ "epoch": 18.503276539973786,
+ "grad_norm": 0.2433937042951584,
+ "learning_rate": 0.0006,
+ "loss": 3.987537384033203,
+ "step": 1332
+ },
+ {
+ "epoch": 18.51725644386195,
+ "grad_norm": 0.24916228652000427,
+ "learning_rate": 0.0006,
+ "loss": 3.953075647354126,
+ "step": 1333
+ },
+ {
+ "epoch": 18.53123634775011,
+ "grad_norm": 0.24542421102523804,
+ "learning_rate": 0.0006,
+ "loss": 3.9510841369628906,
+ "step": 1334
+ },
+ {
+ "epoch": 18.54521625163827,
+ "grad_norm": 0.2393690049648285,
+ "learning_rate": 0.0006,
+ "loss": 3.981747627258301,
+ "step": 1335
+ },
+ {
+ "epoch": 18.55919615552643,
+ "grad_norm": 0.22806711494922638,
+ "learning_rate": 0.0006,
+ "loss": 3.9714856147766113,
+ "step": 1336
+ },
+ {
+ "epoch": 18.573176059414592,
+ "grad_norm": 0.21948303282260895,
+ "learning_rate": 0.0006,
+ "loss": 3.9429898262023926,
+ "step": 1337
+ },
+ {
+ "epoch": 18.587155963302752,
+ "grad_norm": 0.21575778722763062,
+ "learning_rate": 0.0006,
+ "loss": 3.9639933109283447,
+ "step": 1338
+ },
+ {
+ "epoch": 18.601135867190912,
+ "grad_norm": 0.23370565474033356,
+ "learning_rate": 0.0006,
+ "loss": 3.9819254875183105,
+ "step": 1339
+ },
+ {
+ "epoch": 18.615115771079076,
+ "grad_norm": 0.2613106369972229,
+ "learning_rate": 0.0006,
+ "loss": 3.9654669761657715,
+ "step": 1340
+ },
+ {
+ "epoch": 18.629095674967235,
+ "grad_norm": 0.26682716608047485,
+ "learning_rate": 0.0006,
+ "loss": 3.9832968711853027,
+ "step": 1341
+ },
+ {
+ "epoch": 18.643075578855395,
+ "grad_norm": 0.24331490695476532,
+ "learning_rate": 0.0006,
+ "loss": 3.9926600456237793,
+ "step": 1342
+ },
+ {
+ "epoch": 18.657055482743555,
+ "grad_norm": 0.2459341287612915,
+ "learning_rate": 0.0006,
+ "loss": 3.9508986473083496,
+ "step": 1343
+ },
+ {
+ "epoch": 18.67103538663172,
+ "grad_norm": 0.26395753026008606,
+ "learning_rate": 0.0006,
+ "loss": 3.961359977722168,
+ "step": 1344
+ },
+ {
+ "epoch": 18.68501529051988,
+ "grad_norm": 0.26049068570137024,
+ "learning_rate": 0.0006,
+ "loss": 3.9763245582580566,
+ "step": 1345
+ },
+ {
+ "epoch": 18.698995194408038,
+ "grad_norm": 0.24018602073192596,
+ "learning_rate": 0.0006,
+ "loss": 3.951780319213867,
+ "step": 1346
+ },
+ {
+ "epoch": 18.712975098296198,
+ "grad_norm": 0.23886290192604065,
+ "learning_rate": 0.0006,
+ "loss": 3.9883017539978027,
+ "step": 1347
+ },
+ {
+ "epoch": 18.72695500218436,
+ "grad_norm": 0.2293774038553238,
+ "learning_rate": 0.0006,
+ "loss": 3.9852685928344727,
+ "step": 1348
+ },
+ {
+ "epoch": 18.74093490607252,
+ "grad_norm": 0.22172975540161133,
+ "learning_rate": 0.0006,
+ "loss": 3.967550277709961,
+ "step": 1349
+ },
+ {
+ "epoch": 18.75491480996068,
+ "grad_norm": 0.2170475423336029,
+ "learning_rate": 0.0006,
+ "loss": 3.9570775032043457,
+ "step": 1350
+ },
+ {
+ "epoch": 18.76889471384884,
+ "grad_norm": 0.21458806097507477,
+ "learning_rate": 0.0006,
+ "loss": 3.9461212158203125,
+ "step": 1351
+ },
+ {
+ "epoch": 18.782874617737004,
+ "grad_norm": 0.21101507544517517,
+ "learning_rate": 0.0006,
+ "loss": 3.984398365020752,
+ "step": 1352
+ },
+ {
+ "epoch": 18.796854521625164,
+ "grad_norm": 0.23480583727359772,
+ "learning_rate": 0.0006,
+ "loss": 3.950312614440918,
+ "step": 1353
+ },
+ {
+ "epoch": 18.810834425513324,
+ "grad_norm": 0.24728581309318542,
+ "learning_rate": 0.0006,
+ "loss": 3.9572393894195557,
+ "step": 1354
+ },
+ {
+ "epoch": 18.824814329401484,
+ "grad_norm": 0.26063451170921326,
+ "learning_rate": 0.0006,
+ "loss": 3.9653234481811523,
+ "step": 1355
+ },
+ {
+ "epoch": 18.838794233289647,
+ "grad_norm": 0.24679961800575256,
+ "learning_rate": 0.0006,
+ "loss": 3.9560108184814453,
+ "step": 1356
+ },
+ {
+ "epoch": 18.852774137177807,
+ "grad_norm": 0.23199526965618134,
+ "learning_rate": 0.0006,
+ "loss": 3.9948246479034424,
+ "step": 1357
+ },
+ {
+ "epoch": 18.866754041065967,
+ "grad_norm": 0.22619125247001648,
+ "learning_rate": 0.0006,
+ "loss": 3.9783573150634766,
+ "step": 1358
+ },
+ {
+ "epoch": 18.88073394495413,
+ "grad_norm": 0.25499874353408813,
+ "learning_rate": 0.0006,
+ "loss": 3.9674575328826904,
+ "step": 1359
+ },
+ {
+ "epoch": 18.89471384884229,
+ "grad_norm": 0.23961037397384644,
+ "learning_rate": 0.0006,
+ "loss": 3.969209909439087,
+ "step": 1360
+ },
+ {
+ "epoch": 18.90869375273045,
+ "grad_norm": 0.21039162576198578,
+ "learning_rate": 0.0006,
+ "loss": 3.978661060333252,
+ "step": 1361
+ },
+ {
+ "epoch": 18.92267365661861,
+ "grad_norm": 0.2297026664018631,
+ "learning_rate": 0.0006,
+ "loss": 3.9483046531677246,
+ "step": 1362
+ },
+ {
+ "epoch": 18.936653560506773,
+ "grad_norm": 0.26367098093032837,
+ "learning_rate": 0.0006,
+ "loss": 3.927133560180664,
+ "step": 1363
+ },
+ {
+ "epoch": 18.950633464394933,
+ "grad_norm": 0.26893147826194763,
+ "learning_rate": 0.0006,
+ "loss": 3.957932710647583,
+ "step": 1364
+ },
+ {
+ "epoch": 18.964613368283093,
+ "grad_norm": 0.27092233300209045,
+ "learning_rate": 0.0006,
+ "loss": 3.976621150970459,
+ "step": 1365
+ },
+ {
+ "epoch": 18.978593272171253,
+ "grad_norm": 0.2672635018825531,
+ "learning_rate": 0.0006,
+ "loss": 3.9577765464782715,
+ "step": 1366
+ },
+ {
+ "epoch": 18.992573176059416,
+ "grad_norm": 0.2721385359764099,
+ "learning_rate": 0.0006,
+ "loss": 3.986100196838379,
+ "step": 1367
+ },
+ {
+ "epoch": 19.0,
+ "grad_norm": 0.27648621797561646,
+ "learning_rate": 0.0006,
+ "loss": 3.9942402839660645,
+ "step": 1368
+ },
+ {
+ "epoch": 19.0,
+ "eval_loss": 4.180216312408447,
+ "eval_runtime": 44.0079,
+ "eval_samples_per_second": 55.49,
+ "eval_steps_per_second": 3.477,
+ "step": 1368
+ },
+ {
+ "epoch": 19.01397990388816,
+ "grad_norm": 0.2563098073005676,
+ "learning_rate": 0.0006,
+ "loss": 3.9267354011535645,
+ "step": 1369
+ },
+ {
+ "epoch": 19.027959807776323,
+ "grad_norm": 0.2531425952911377,
+ "learning_rate": 0.0006,
+ "loss": 3.9273324012756348,
+ "step": 1370
+ },
+ {
+ "epoch": 19.041939711664483,
+ "grad_norm": 0.27485427260398865,
+ "learning_rate": 0.0006,
+ "loss": 3.9542183876037598,
+ "step": 1371
+ },
+ {
+ "epoch": 19.055919615552643,
+ "grad_norm": 0.27509891986846924,
+ "learning_rate": 0.0006,
+ "loss": 3.921940326690674,
+ "step": 1372
+ },
+ {
+ "epoch": 19.069899519440803,
+ "grad_norm": 0.28154096007347107,
+ "learning_rate": 0.0006,
+ "loss": 3.926743984222412,
+ "step": 1373
+ },
+ {
+ "epoch": 19.083879423328966,
+ "grad_norm": 0.2749912738800049,
+ "learning_rate": 0.0006,
+ "loss": 3.9257748126983643,
+ "step": 1374
+ },
+ {
+ "epoch": 19.097859327217126,
+ "grad_norm": 0.26168501377105713,
+ "learning_rate": 0.0006,
+ "loss": 3.9403202533721924,
+ "step": 1375
+ },
+ {
+ "epoch": 19.111839231105286,
+ "grad_norm": 0.23410023748874664,
+ "learning_rate": 0.0006,
+ "loss": 3.935378313064575,
+ "step": 1376
+ },
+ {
+ "epoch": 19.125819134993446,
+ "grad_norm": 0.25790470838546753,
+ "learning_rate": 0.0006,
+ "loss": 3.946147918701172,
+ "step": 1377
+ },
+ {
+ "epoch": 19.13979903888161,
+ "grad_norm": 0.26704177260398865,
+ "learning_rate": 0.0006,
+ "loss": 3.9511594772338867,
+ "step": 1378
+ },
+ {
+ "epoch": 19.15377894276977,
+ "grad_norm": 0.2560667097568512,
+ "learning_rate": 0.0006,
+ "loss": 3.915806531906128,
+ "step": 1379
+ },
+ {
+ "epoch": 19.16775884665793,
+ "grad_norm": 0.24684149026870728,
+ "learning_rate": 0.0006,
+ "loss": 3.9162003993988037,
+ "step": 1380
+ },
+ {
+ "epoch": 19.18173875054609,
+ "grad_norm": 0.2097567766904831,
+ "learning_rate": 0.0006,
+ "loss": 3.915739059448242,
+ "step": 1381
+ },
+ {
+ "epoch": 19.195718654434252,
+ "grad_norm": 0.21646849811077118,
+ "learning_rate": 0.0006,
+ "loss": 3.9097084999084473,
+ "step": 1382
+ },
+ {
+ "epoch": 19.209698558322412,
+ "grad_norm": 0.20626980066299438,
+ "learning_rate": 0.0006,
+ "loss": 3.9541783332824707,
+ "step": 1383
+ },
+ {
+ "epoch": 19.22367846221057,
+ "grad_norm": 0.23362718522548676,
+ "learning_rate": 0.0006,
+ "loss": 3.950096845626831,
+ "step": 1384
+ },
+ {
+ "epoch": 19.23765836609873,
+ "grad_norm": 0.25402209162712097,
+ "learning_rate": 0.0006,
+ "loss": 3.927671432495117,
+ "step": 1385
+ },
+ {
+ "epoch": 19.251638269986895,
+ "grad_norm": 0.23714083433151245,
+ "learning_rate": 0.0006,
+ "loss": 3.939765453338623,
+ "step": 1386
+ },
+ {
+ "epoch": 19.265618173875055,
+ "grad_norm": 0.20895546674728394,
+ "learning_rate": 0.0006,
+ "loss": 3.9384806156158447,
+ "step": 1387
+ },
+ {
+ "epoch": 19.279598077763215,
+ "grad_norm": 0.21374300122261047,
+ "learning_rate": 0.0006,
+ "loss": 3.9523749351501465,
+ "step": 1388
+ },
+ {
+ "epoch": 19.293577981651374,
+ "grad_norm": 0.210394486784935,
+ "learning_rate": 0.0006,
+ "loss": 3.9540798664093018,
+ "step": 1389
+ },
+ {
+ "epoch": 19.307557885539538,
+ "grad_norm": 0.20646725594997406,
+ "learning_rate": 0.0006,
+ "loss": 3.9514098167419434,
+ "step": 1390
+ },
+ {
+ "epoch": 19.321537789427698,
+ "grad_norm": 0.21477538347244263,
+ "learning_rate": 0.0006,
+ "loss": 3.9369924068450928,
+ "step": 1391
+ },
+ {
+ "epoch": 19.335517693315857,
+ "grad_norm": 0.20431505143642426,
+ "learning_rate": 0.0006,
+ "loss": 3.9389796257019043,
+ "step": 1392
+ },
+ {
+ "epoch": 19.34949759720402,
+ "grad_norm": 0.19575877487659454,
+ "learning_rate": 0.0006,
+ "loss": 3.935976028442383,
+ "step": 1393
+ },
+ {
+ "epoch": 19.36347750109218,
+ "grad_norm": 0.20720405876636505,
+ "learning_rate": 0.0006,
+ "loss": 3.9670963287353516,
+ "step": 1394
+ },
+ {
+ "epoch": 19.37745740498034,
+ "grad_norm": 0.2173967957496643,
+ "learning_rate": 0.0006,
+ "loss": 3.903940439224243,
+ "step": 1395
+ },
+ {
+ "epoch": 19.3914373088685,
+ "grad_norm": 0.2180529683828354,
+ "learning_rate": 0.0006,
+ "loss": 3.8716301918029785,
+ "step": 1396
+ },
+ {
+ "epoch": 19.405417212756664,
+ "grad_norm": 0.20666591823101044,
+ "learning_rate": 0.0006,
+ "loss": 3.930936813354492,
+ "step": 1397
+ },
+ {
+ "epoch": 19.419397116644824,
+ "grad_norm": 0.20353034138679504,
+ "learning_rate": 0.0006,
+ "loss": 3.926954746246338,
+ "step": 1398
+ },
+ {
+ "epoch": 19.433377020532983,
+ "grad_norm": 0.22333289682865143,
+ "learning_rate": 0.0006,
+ "loss": 3.947504997253418,
+ "step": 1399
+ },
+ {
+ "epoch": 19.447356924421143,
+ "grad_norm": 0.21787697076797485,
+ "learning_rate": 0.0006,
+ "loss": 3.9325344562530518,
+ "step": 1400
+ },
+ {
+ "epoch": 19.461336828309307,
+ "grad_norm": 0.22805874049663544,
+ "learning_rate": 0.0006,
+ "loss": 3.9640727043151855,
+ "step": 1401
+ },
+ {
+ "epoch": 19.475316732197467,
+ "grad_norm": 0.22396457195281982,
+ "learning_rate": 0.0006,
+ "loss": 3.9537901878356934,
+ "step": 1402
+ },
+ {
+ "epoch": 19.489296636085626,
+ "grad_norm": 0.2333047240972519,
+ "learning_rate": 0.0006,
+ "loss": 3.935609817504883,
+ "step": 1403
+ },
+ {
+ "epoch": 19.503276539973786,
+ "grad_norm": 0.25063616037368774,
+ "learning_rate": 0.0006,
+ "loss": 3.9659228324890137,
+ "step": 1404
+ },
+ {
+ "epoch": 19.51725644386195,
+ "grad_norm": 0.29074087738990784,
+ "learning_rate": 0.0006,
+ "loss": 3.9552183151245117,
+ "step": 1405
+ },
+ {
+ "epoch": 19.53123634775011,
+ "grad_norm": 0.34876152873039246,
+ "learning_rate": 0.0006,
+ "loss": 3.976163387298584,
+ "step": 1406
+ },
+ {
+ "epoch": 19.54521625163827,
+ "grad_norm": 0.35026612877845764,
+ "learning_rate": 0.0006,
+ "loss": 3.961186408996582,
+ "step": 1407
+ },
+ {
+ "epoch": 19.55919615552643,
+ "grad_norm": 0.3199564218521118,
+ "learning_rate": 0.0006,
+ "loss": 3.9366297721862793,
+ "step": 1408
+ },
+ {
+ "epoch": 19.573176059414592,
+ "grad_norm": 0.2976185977458954,
+ "learning_rate": 0.0006,
+ "loss": 3.9502010345458984,
+ "step": 1409
+ },
+ {
+ "epoch": 19.587155963302752,
+ "grad_norm": 0.2951911687850952,
+ "learning_rate": 0.0006,
+ "loss": 3.9427943229675293,
+ "step": 1410
+ },
+ {
+ "epoch": 19.601135867190912,
+ "grad_norm": 0.27918702363967896,
+ "learning_rate": 0.0006,
+ "loss": 3.963700532913208,
+ "step": 1411
+ },
+ {
+ "epoch": 19.615115771079076,
+ "grad_norm": 0.26197490096092224,
+ "learning_rate": 0.0006,
+ "loss": 3.9636964797973633,
+ "step": 1412
+ },
+ {
+ "epoch": 19.629095674967235,
+ "grad_norm": 0.24242281913757324,
+ "learning_rate": 0.0006,
+ "loss": 3.961815595626831,
+ "step": 1413
+ },
+ {
+ "epoch": 19.643075578855395,
+ "grad_norm": 0.2606375515460968,
+ "learning_rate": 0.0006,
+ "loss": 3.946643352508545,
+ "step": 1414
+ },
+ {
+ "epoch": 19.657055482743555,
+ "grad_norm": 0.23353353142738342,
+ "learning_rate": 0.0006,
+ "loss": 3.973155975341797,
+ "step": 1415
+ },
+ {
+ "epoch": 19.67103538663172,
+ "grad_norm": 0.22872662544250488,
+ "learning_rate": 0.0006,
+ "loss": 3.9528894424438477,
+ "step": 1416
+ },
+ {
+ "epoch": 19.68501529051988,
+ "grad_norm": 0.24678432941436768,
+ "learning_rate": 0.0006,
+ "loss": 3.9313249588012695,
+ "step": 1417
+ },
+ {
+ "epoch": 19.698995194408038,
+ "grad_norm": 0.23895515501499176,
+ "learning_rate": 0.0006,
+ "loss": 3.944082498550415,
+ "step": 1418
+ },
+ {
+ "epoch": 19.712975098296198,
+ "grad_norm": 0.23649105429649353,
+ "learning_rate": 0.0006,
+ "loss": 3.962069034576416,
+ "step": 1419
+ },
+ {
+ "epoch": 19.72695500218436,
+ "grad_norm": 0.22031061351299286,
+ "learning_rate": 0.0006,
+ "loss": 3.912972927093506,
+ "step": 1420
+ },
+ {
+ "epoch": 19.74093490607252,
+ "grad_norm": 0.20231695473194122,
+ "learning_rate": 0.0006,
+ "loss": 3.964531421661377,
+ "step": 1421
+ },
+ {
+ "epoch": 19.75491480996068,
+ "grad_norm": 0.19980913400650024,
+ "learning_rate": 0.0006,
+ "loss": 3.9452600479125977,
+ "step": 1422
+ },
+ {
+ "epoch": 19.76889471384884,
+ "grad_norm": 0.21768775582313538,
+ "learning_rate": 0.0006,
+ "loss": 3.9214301109313965,
+ "step": 1423
+ },
+ {
+ "epoch": 19.782874617737004,
+ "grad_norm": 0.21287119388580322,
+ "learning_rate": 0.0006,
+ "loss": 3.9416494369506836,
+ "step": 1424
+ },
+ {
+ "epoch": 19.796854521625164,
+ "grad_norm": 0.21399827301502228,
+ "learning_rate": 0.0006,
+ "loss": 3.971010208129883,
+ "step": 1425
+ },
+ {
+ "epoch": 19.810834425513324,
+ "grad_norm": 0.1957658976316452,
+ "learning_rate": 0.0006,
+ "loss": 3.936331272125244,
+ "step": 1426
+ },
+ {
+ "epoch": 19.824814329401484,
+ "grad_norm": 0.19341488182544708,
+ "learning_rate": 0.0006,
+ "loss": 3.9321448802948,
+ "step": 1427
+ },
+ {
+ "epoch": 19.838794233289647,
+ "grad_norm": 0.18405723571777344,
+ "learning_rate": 0.0006,
+ "loss": 3.939542293548584,
+ "step": 1428
+ },
+ {
+ "epoch": 19.852774137177807,
+ "grad_norm": 0.19672836363315582,
+ "learning_rate": 0.0006,
+ "loss": 3.939652919769287,
+ "step": 1429
+ },
+ {
+ "epoch": 19.866754041065967,
+ "grad_norm": 0.1998940259218216,
+ "learning_rate": 0.0006,
+ "loss": 3.932892322540283,
+ "step": 1430
+ },
+ {
+ "epoch": 19.88073394495413,
+ "grad_norm": 0.2307668924331665,
+ "learning_rate": 0.0006,
+ "loss": 3.9402761459350586,
+ "step": 1431
+ },
+ {
+ "epoch": 19.89471384884229,
+ "grad_norm": 0.2531987726688385,
+ "learning_rate": 0.0006,
+ "loss": 3.9153199195861816,
+ "step": 1432
+ },
+ {
+ "epoch": 19.90869375273045,
+ "grad_norm": 0.2299388349056244,
+ "learning_rate": 0.0006,
+ "loss": 3.9569954872131348,
+ "step": 1433
+ },
+ {
+ "epoch": 19.92267365661861,
+ "grad_norm": 0.2503527104854584,
+ "learning_rate": 0.0006,
+ "loss": 3.9469428062438965,
+ "step": 1434
+ },
+ {
+ "epoch": 19.936653560506773,
+ "grad_norm": 0.25390249490737915,
+ "learning_rate": 0.0006,
+ "loss": 3.941803455352783,
+ "step": 1435
+ },
+ {
+ "epoch": 19.950633464394933,
+ "grad_norm": 0.2288687825202942,
+ "learning_rate": 0.0006,
+ "loss": 3.9385883808135986,
+ "step": 1436
+ },
+ {
+ "epoch": 19.964613368283093,
+ "grad_norm": 0.2231096774339676,
+ "learning_rate": 0.0006,
+ "loss": 3.9255237579345703,
+ "step": 1437
+ },
+ {
+ "epoch": 19.978593272171253,
+ "grad_norm": 0.20729343593120575,
+ "learning_rate": 0.0006,
+ "loss": 3.9443163871765137,
+ "step": 1438
+ },
+ {
+ "epoch": 19.992573176059416,
+ "grad_norm": 0.197743758559227,
+ "learning_rate": 0.0006,
+ "loss": 3.925455093383789,
+ "step": 1439
+ },
+ {
+ "epoch": 20.0,
+ "grad_norm": 0.23943661153316498,
+ "learning_rate": 0.0006,
+ "loss": 3.9458866119384766,
+ "step": 1440
+ },
+ {
+ "epoch": 20.0,
+ "eval_loss": 4.144192218780518,
+ "eval_runtime": 44.0278,
+ "eval_samples_per_second": 55.465,
+ "eval_steps_per_second": 3.475,
+ "step": 1440
+ },
+ {
+ "epoch": 20.01397990388816,
+ "grad_norm": 0.2032143622636795,
+ "learning_rate": 0.0006,
+ "loss": 3.9151499271392822,
+ "step": 1441
+ },
+ {
+ "epoch": 20.027959807776323,
+ "grad_norm": 0.20164789259433746,
+ "learning_rate": 0.0006,
+ "loss": 3.874115228652954,
+ "step": 1442
+ },
+ {
+ "epoch": 20.041939711664483,
+ "grad_norm": 0.20796619355678558,
+ "learning_rate": 0.0006,
+ "loss": 3.9090776443481445,
+ "step": 1443
+ },
+ {
+ "epoch": 20.055919615552643,
+ "grad_norm": 0.1999918520450592,
+ "learning_rate": 0.0006,
+ "loss": 3.926563262939453,
+ "step": 1444
+ },
+ {
+ "epoch": 20.069899519440803,
+ "grad_norm": 0.204790860414505,
+ "learning_rate": 0.0006,
+ "loss": 3.9088830947875977,
+ "step": 1445
+ },
+ {
+ "epoch": 20.083879423328966,
+ "grad_norm": 0.21507175266742706,
+ "learning_rate": 0.0006,
+ "loss": 3.916504383087158,
+ "step": 1446
+ },
+ {
+ "epoch": 20.097859327217126,
+ "grad_norm": 0.2398025095462799,
+ "learning_rate": 0.0006,
+ "loss": 3.9128990173339844,
+ "step": 1447
+ },
+ {
+ "epoch": 20.111839231105286,
+ "grad_norm": 0.26037144660949707,
+ "learning_rate": 0.0006,
+ "loss": 3.9125187397003174,
+ "step": 1448
+ },
+ {
+ "epoch": 20.125819134993446,
+ "grad_norm": 0.25564828515052795,
+ "learning_rate": 0.0006,
+ "loss": 3.891867160797119,
+ "step": 1449
+ },
+ {
+ "epoch": 20.13979903888161,
+ "grad_norm": 0.2767223119735718,
+ "learning_rate": 0.0006,
+ "loss": 3.9202775955200195,
+ "step": 1450
+ },
+ {
+ "epoch": 20.15377894276977,
+ "grad_norm": 0.27696558833122253,
+ "learning_rate": 0.0006,
+ "loss": 3.9231314659118652,
+ "step": 1451
+ },
+ {
+ "epoch": 20.16775884665793,
+ "grad_norm": 0.3054044246673584,
+ "learning_rate": 0.0006,
+ "loss": 3.918138027191162,
+ "step": 1452
+ },
+ {
+ "epoch": 20.18173875054609,
+ "grad_norm": 0.3018973171710968,
+ "learning_rate": 0.0006,
+ "loss": 3.890678882598877,
+ "step": 1453
+ },
+ {
+ "epoch": 20.195718654434252,
+ "grad_norm": 0.306232750415802,
+ "learning_rate": 0.0006,
+ "loss": 3.920753002166748,
+ "step": 1454
+ },
+ {
+ "epoch": 20.209698558322412,
+ "grad_norm": 0.29593729972839355,
+ "learning_rate": 0.0006,
+ "loss": 3.9455509185791016,
+ "step": 1455
+ },
+ {
+ "epoch": 20.22367846221057,
+ "grad_norm": 0.2937646210193634,
+ "learning_rate": 0.0006,
+ "loss": 3.9227709770202637,
+ "step": 1456
+ },
+ {
+ "epoch": 20.23765836609873,
+ "grad_norm": 0.26380231976509094,
+ "learning_rate": 0.0006,
+ "loss": 3.9097609519958496,
+ "step": 1457
+ },
+ {
+ "epoch": 20.251638269986895,
+ "grad_norm": 0.24992692470550537,
+ "learning_rate": 0.0006,
+ "loss": 3.9393627643585205,
+ "step": 1458
+ },
+ {
+ "epoch": 20.265618173875055,
+ "grad_norm": 0.270219087600708,
+ "learning_rate": 0.0006,
+ "loss": 3.929330348968506,
+ "step": 1459
+ },
+ {
+ "epoch": 20.279598077763215,
+ "grad_norm": 0.2860020399093628,
+ "learning_rate": 0.0006,
+ "loss": 3.8947913646698,
+ "step": 1460
+ },
+ {
+ "epoch": 20.293577981651374,
+ "grad_norm": 0.27494579553604126,
+ "learning_rate": 0.0006,
+ "loss": 3.9105992317199707,
+ "step": 1461
+ },
+ {
+ "epoch": 20.307557885539538,
+ "grad_norm": 0.26467713713645935,
+ "learning_rate": 0.0006,
+ "loss": 3.914632797241211,
+ "step": 1462
+ },
+ {
+ "epoch": 20.321537789427698,
+ "grad_norm": 0.25747713446617126,
+ "learning_rate": 0.0006,
+ "loss": 3.919846534729004,
+ "step": 1463
+ },
+ {
+ "epoch": 20.335517693315857,
+ "grad_norm": 0.24027711153030396,
+ "learning_rate": 0.0006,
+ "loss": 3.904740810394287,
+ "step": 1464
+ },
+ {
+ "epoch": 20.34949759720402,
+ "grad_norm": 0.24682414531707764,
+ "learning_rate": 0.0006,
+ "loss": 3.9190149307250977,
+ "step": 1465
+ },
+ {
+ "epoch": 20.36347750109218,
+ "grad_norm": 0.2619759440422058,
+ "learning_rate": 0.0006,
+ "loss": 3.9488329887390137,
+ "step": 1466
+ },
+ {
+ "epoch": 20.37745740498034,
+ "grad_norm": 0.2632448971271515,
+ "learning_rate": 0.0006,
+ "loss": 3.9216647148132324,
+ "step": 1467
+ },
+ {
+ "epoch": 20.3914373088685,
+ "grad_norm": 0.27569764852523804,
+ "learning_rate": 0.0006,
+ "loss": 3.9178895950317383,
+ "step": 1468
+ },
+ {
+ "epoch": 20.405417212756664,
+ "grad_norm": 0.2611774802207947,
+ "learning_rate": 0.0006,
+ "loss": 3.933730125427246,
+ "step": 1469
+ },
+ {
+ "epoch": 20.419397116644824,
+ "grad_norm": 0.2839447557926178,
+ "learning_rate": 0.0006,
+ "loss": 3.9261364936828613,
+ "step": 1470
+ },
+ {
+ "epoch": 20.433377020532983,
+ "grad_norm": 0.29006227850914,
+ "learning_rate": 0.0006,
+ "loss": 3.9157633781433105,
+ "step": 1471
+ },
+ {
+ "epoch": 20.447356924421143,
+ "grad_norm": 0.2809498906135559,
+ "learning_rate": 0.0006,
+ "loss": 3.9211745262145996,
+ "step": 1472
+ },
+ {
+ "epoch": 20.461336828309307,
+ "grad_norm": 0.27859532833099365,
+ "learning_rate": 0.0006,
+ "loss": 3.9115967750549316,
+ "step": 1473
+ },
+ {
+ "epoch": 20.475316732197467,
+ "grad_norm": 0.29114410281181335,
+ "learning_rate": 0.0006,
+ "loss": 3.9024441242218018,
+ "step": 1474
+ },
+ {
+ "epoch": 20.489296636085626,
+ "grad_norm": 0.2686930000782013,
+ "learning_rate": 0.0006,
+ "loss": 3.9497199058532715,
+ "step": 1475
+ },
+ {
+ "epoch": 20.503276539973786,
+ "grad_norm": 0.24120540916919708,
+ "learning_rate": 0.0006,
+ "loss": 3.9218955039978027,
+ "step": 1476
+ },
+ {
+ "epoch": 20.51725644386195,
+ "grad_norm": 0.23689547181129456,
+ "learning_rate": 0.0006,
+ "loss": 3.9410176277160645,
+ "step": 1477
+ },
+ {
+ "epoch": 20.53123634775011,
+ "grad_norm": 0.26382362842559814,
+ "learning_rate": 0.0006,
+ "loss": 3.8880343437194824,
+ "step": 1478
+ },
+ {
+ "epoch": 20.54521625163827,
+ "grad_norm": 0.21628661453723907,
+ "learning_rate": 0.0006,
+ "loss": 3.892622470855713,
+ "step": 1479
+ },
+ {
+ "epoch": 20.55919615552643,
+ "grad_norm": 0.19896996021270752,
+ "learning_rate": 0.0006,
+ "loss": 3.938734769821167,
+ "step": 1480
+ },
+ {
+ "epoch": 20.573176059414592,
+ "grad_norm": 0.20232494175434113,
+ "learning_rate": 0.0006,
+ "loss": 3.9197006225585938,
+ "step": 1481
+ },
+ {
+ "epoch": 20.587155963302752,
+ "grad_norm": 0.21807828545570374,
+ "learning_rate": 0.0006,
+ "loss": 3.9195618629455566,
+ "step": 1482
+ },
+ {
+ "epoch": 20.601135867190912,
+ "grad_norm": 0.21778680384159088,
+ "learning_rate": 0.0006,
+ "loss": 3.913395404815674,
+ "step": 1483
+ },
+ {
+ "epoch": 20.615115771079076,
+ "grad_norm": 0.21015185117721558,
+ "learning_rate": 0.0006,
+ "loss": 3.8858234882354736,
+ "step": 1484
+ },
+ {
+ "epoch": 20.629095674967235,
+ "grad_norm": 0.20131368935108185,
+ "learning_rate": 0.0006,
+ "loss": 3.927213430404663,
+ "step": 1485
+ },
+ {
+ "epoch": 20.643075578855395,
+ "grad_norm": 0.20746243000030518,
+ "learning_rate": 0.0006,
+ "loss": 3.913198471069336,
+ "step": 1486
+ },
+ {
+ "epoch": 20.657055482743555,
+ "grad_norm": 0.2024548053741455,
+ "learning_rate": 0.0006,
+ "loss": 3.923048257827759,
+ "step": 1487
+ },
+ {
+ "epoch": 20.67103538663172,
+ "grad_norm": 0.19735988974571228,
+ "learning_rate": 0.0006,
+ "loss": 3.9136500358581543,
+ "step": 1488
+ },
+ {
+ "epoch": 20.68501529051988,
+ "grad_norm": 0.19781625270843506,
+ "learning_rate": 0.0006,
+ "loss": 3.883793592453003,
+ "step": 1489
+ },
+ {
+ "epoch": 20.698995194408038,
+ "grad_norm": 0.1911996454000473,
+ "learning_rate": 0.0006,
+ "loss": 3.9078567028045654,
+ "step": 1490
+ },
+ {
+ "epoch": 20.712975098296198,
+ "grad_norm": 0.1989123821258545,
+ "learning_rate": 0.0006,
+ "loss": 3.9314043521881104,
+ "step": 1491
+ },
+ {
+ "epoch": 20.72695500218436,
+ "grad_norm": 0.18839342892169952,
+ "learning_rate": 0.0006,
+ "loss": 3.8955953121185303,
+ "step": 1492
+ },
+ {
+ "epoch": 20.74093490607252,
+ "grad_norm": 0.1944834142923355,
+ "learning_rate": 0.0006,
+ "loss": 3.9272377490997314,
+ "step": 1493
+ },
+ {
+ "epoch": 20.75491480996068,
+ "grad_norm": 0.20829126238822937,
+ "learning_rate": 0.0006,
+ "loss": 3.878857374191284,
+ "step": 1494
+ },
+ {
+ "epoch": 20.76889471384884,
+ "grad_norm": 0.21438424289226532,
+ "learning_rate": 0.0006,
+ "loss": 3.9155564308166504,
+ "step": 1495
+ },
+ {
+ "epoch": 20.782874617737004,
+ "grad_norm": 0.22309324145317078,
+ "learning_rate": 0.0006,
+ "loss": 3.9281692504882812,
+ "step": 1496
+ },
+ {
+ "epoch": 20.796854521625164,
+ "grad_norm": 0.2053767591714859,
+ "learning_rate": 0.0006,
+ "loss": 3.9096317291259766,
+ "step": 1497
+ },
+ {
+ "epoch": 20.810834425513324,
+ "grad_norm": 0.20429186522960663,
+ "learning_rate": 0.0006,
+ "loss": 3.9184865951538086,
+ "step": 1498
+ },
+ {
+ "epoch": 20.824814329401484,
+ "grad_norm": 0.21983473002910614,
+ "learning_rate": 0.0006,
+ "loss": 3.9130771160125732,
+ "step": 1499
+ },
+ {
+ "epoch": 20.838794233289647,
+ "grad_norm": 0.21649539470672607,
+ "learning_rate": 0.0006,
+ "loss": 3.921581268310547,
+ "step": 1500
+ },
+ {
+ "epoch": 20.852774137177807,
+ "grad_norm": 0.19645053148269653,
+ "learning_rate": 0.0006,
+ "loss": 3.966360092163086,
+ "step": 1501
+ },
+ {
+ "epoch": 20.866754041065967,
+ "grad_norm": 0.2126782387495041,
+ "learning_rate": 0.0006,
+ "loss": 3.9004554748535156,
+ "step": 1502
+ },
+ {
+ "epoch": 20.88073394495413,
+ "grad_norm": 0.22359658777713776,
+ "learning_rate": 0.0006,
+ "loss": 3.92336368560791,
+ "step": 1503
+ },
+ {
+ "epoch": 20.89471384884229,
+ "grad_norm": 0.2334042638540268,
+ "learning_rate": 0.0006,
+ "loss": 3.9188671112060547,
+ "step": 1504
+ },
+ {
+ "epoch": 20.90869375273045,
+ "grad_norm": 0.24595916271209717,
+ "learning_rate": 0.0006,
+ "loss": 3.9348371028900146,
+ "step": 1505
+ },
+ {
+ "epoch": 20.92267365661861,
+ "grad_norm": 0.24177910387516022,
+ "learning_rate": 0.0006,
+ "loss": 3.8796424865722656,
+ "step": 1506
+ },
+ {
+ "epoch": 20.936653560506773,
+ "grad_norm": 0.24193289875984192,
+ "learning_rate": 0.0006,
+ "loss": 3.892627716064453,
+ "step": 1507
+ },
+ {
+ "epoch": 20.950633464394933,
+ "grad_norm": 0.252849280834198,
+ "learning_rate": 0.0006,
+ "loss": 3.9300179481506348,
+ "step": 1508
+ },
+ {
+ "epoch": 20.964613368283093,
+ "grad_norm": 0.24933326244354248,
+ "learning_rate": 0.0006,
+ "loss": 3.9597225189208984,
+ "step": 1509
+ },
+ {
+ "epoch": 20.978593272171253,
+ "grad_norm": 0.23850969970226288,
+ "learning_rate": 0.0006,
+ "loss": 3.9027397632598877,
+ "step": 1510
+ },
+ {
+ "epoch": 20.992573176059416,
+ "grad_norm": 0.23298311233520508,
+ "learning_rate": 0.0006,
+ "loss": 3.9024105072021484,
+ "step": 1511
+ },
+ {
+ "epoch": 21.0,
+ "grad_norm": 0.2467455416917801,
+ "learning_rate": 0.0006,
+ "loss": 3.915929079055786,
+ "step": 1512
+ },
+ {
+ "epoch": 21.0,
+ "eval_loss": 4.136331081390381,
+ "eval_runtime": 43.9468,
+ "eval_samples_per_second": 55.567,
+ "eval_steps_per_second": 3.481,
+ "step": 1512
+ },
+ {
+ "epoch": 21.01397990388816,
+ "grad_norm": 0.2195885181427002,
+ "learning_rate": 0.0006,
+ "loss": 3.873412847518921,
+ "step": 1513
+ },
+ {
+ "epoch": 21.027959807776323,
+ "grad_norm": 0.24250614643096924,
+ "learning_rate": 0.0006,
+ "loss": 3.882302761077881,
+ "step": 1514
+ },
+ {
+ "epoch": 21.041939711664483,
+ "grad_norm": 0.249113991856575,
+ "learning_rate": 0.0006,
+ "loss": 3.9112048149108887,
+ "step": 1515
+ },
+ {
+ "epoch": 21.055919615552643,
+ "grad_norm": 0.25365301966667175,
+ "learning_rate": 0.0006,
+ "loss": 3.8625712394714355,
+ "step": 1516
+ },
+ {
+ "epoch": 21.069899519440803,
+ "grad_norm": 0.2218591272830963,
+ "learning_rate": 0.0006,
+ "loss": 3.876072406768799,
+ "step": 1517
+ },
+ {
+ "epoch": 21.083879423328966,
+ "grad_norm": 0.238582581281662,
+ "learning_rate": 0.0006,
+ "loss": 3.862060546875,
+ "step": 1518
+ },
+ {
+ "epoch": 21.097859327217126,
+ "grad_norm": 0.25051242113113403,
+ "learning_rate": 0.0006,
+ "loss": 3.905315399169922,
+ "step": 1519
+ },
+ {
+ "epoch": 21.111839231105286,
+ "grad_norm": 0.2391843944787979,
+ "learning_rate": 0.0006,
+ "loss": 3.909144401550293,
+ "step": 1520
+ },
+ {
+ "epoch": 21.125819134993446,
+ "grad_norm": 0.230543315410614,
+ "learning_rate": 0.0006,
+ "loss": 3.8856799602508545,
+ "step": 1521
+ },
+ {
+ "epoch": 21.13979903888161,
+ "grad_norm": 0.24165484309196472,
+ "learning_rate": 0.0006,
+ "loss": 3.893883228302002,
+ "step": 1522
+ },
+ {
+ "epoch": 21.15377894276977,
+ "grad_norm": 0.24657143652439117,
+ "learning_rate": 0.0006,
+ "loss": 3.901129722595215,
+ "step": 1523
+ },
+ {
+ "epoch": 21.16775884665793,
+ "grad_norm": 0.2659998834133148,
+ "learning_rate": 0.0006,
+ "loss": 3.910468101501465,
+ "step": 1524
+ },
+ {
+ "epoch": 21.18173875054609,
+ "grad_norm": 0.2673095166683197,
+ "learning_rate": 0.0006,
+ "loss": 3.917454242706299,
+ "step": 1525
+ },
+ {
+ "epoch": 21.195718654434252,
+ "grad_norm": 0.22122322022914886,
+ "learning_rate": 0.0006,
+ "loss": 3.9017257690429688,
+ "step": 1526
+ },
+ {
+ "epoch": 21.209698558322412,
+ "grad_norm": 0.21882867813110352,
+ "learning_rate": 0.0006,
+ "loss": 3.8605496883392334,
+ "step": 1527
+ },
+ {
+ "epoch": 21.22367846221057,
+ "grad_norm": 0.22335563600063324,
+ "learning_rate": 0.0006,
+ "loss": 3.88120174407959,
+ "step": 1528
+ },
+ {
+ "epoch": 21.23765836609873,
+ "grad_norm": 0.22973211109638214,
+ "learning_rate": 0.0006,
+ "loss": 3.8636834621429443,
+ "step": 1529
+ },
+ {
+ "epoch": 21.251638269986895,
+ "grad_norm": 0.2410288006067276,
+ "learning_rate": 0.0006,
+ "loss": 3.8698177337646484,
+ "step": 1530
+ },
+ {
+ "epoch": 21.265618173875055,
+ "grad_norm": 0.2454768717288971,
+ "learning_rate": 0.0006,
+ "loss": 3.905341148376465,
+ "step": 1531
+ },
+ {
+ "epoch": 21.279598077763215,
+ "grad_norm": 0.2271580696105957,
+ "learning_rate": 0.0006,
+ "loss": 3.864063262939453,
+ "step": 1532
+ },
+ {
+ "epoch": 21.293577981651374,
+ "grad_norm": 0.2200947403907776,
+ "learning_rate": 0.0006,
+ "loss": 3.8889589309692383,
+ "step": 1533
+ },
+ {
+ "epoch": 21.307557885539538,
+ "grad_norm": 0.2180824875831604,
+ "learning_rate": 0.0006,
+ "loss": 3.8873472213745117,
+ "step": 1534
+ },
+ {
+ "epoch": 21.321537789427698,
+ "grad_norm": 0.214975506067276,
+ "learning_rate": 0.0006,
+ "loss": 3.882307529449463,
+ "step": 1535
+ },
+ {
+ "epoch": 21.335517693315857,
+ "grad_norm": 0.21411260962486267,
+ "learning_rate": 0.0006,
+ "loss": 3.8861560821533203,
+ "step": 1536
+ },
+ {
+ "epoch": 21.34949759720402,
+ "grad_norm": 0.22635889053344727,
+ "learning_rate": 0.0006,
+ "loss": 3.9174342155456543,
+ "step": 1537
+ },
+ {
+ "epoch": 21.36347750109218,
+ "grad_norm": 0.22700625658035278,
+ "learning_rate": 0.0006,
+ "loss": 3.890416383743286,
+ "step": 1538
+ },
+ {
+ "epoch": 21.37745740498034,
+ "grad_norm": 0.2106025069952011,
+ "learning_rate": 0.0006,
+ "loss": 3.8672406673431396,
+ "step": 1539
+ },
+ {
+ "epoch": 21.3914373088685,
+ "grad_norm": 0.22994661331176758,
+ "learning_rate": 0.0006,
+ "loss": 3.893190383911133,
+ "step": 1540
+ },
+ {
+ "epoch": 21.405417212756664,
+ "grad_norm": 0.24701105058193207,
+ "learning_rate": 0.0006,
+ "loss": 3.898078441619873,
+ "step": 1541
+ },
+ {
+ "epoch": 21.419397116644824,
+ "grad_norm": 0.26914113759994507,
+ "learning_rate": 0.0006,
+ "loss": 3.905871868133545,
+ "step": 1542
+ },
+ {
+ "epoch": 21.433377020532983,
+ "grad_norm": 0.2904224097728729,
+ "learning_rate": 0.0006,
+ "loss": 3.8919103145599365,
+ "step": 1543
+ },
+ {
+ "epoch": 21.447356924421143,
+ "grad_norm": 0.2911844551563263,
+ "learning_rate": 0.0006,
+ "loss": 3.9073286056518555,
+ "step": 1544
+ },
+ {
+ "epoch": 21.461336828309307,
+ "grad_norm": 0.2742345929145813,
+ "learning_rate": 0.0006,
+ "loss": 3.9075546264648438,
+ "step": 1545
+ },
+ {
+ "epoch": 21.475316732197467,
+ "grad_norm": 0.2341093122959137,
+ "learning_rate": 0.0006,
+ "loss": 3.9232025146484375,
+ "step": 1546
+ },
+ {
+ "epoch": 21.489296636085626,
+ "grad_norm": 0.22808541357517242,
+ "learning_rate": 0.0006,
+ "loss": 3.9168174266815186,
+ "step": 1547
+ },
+ {
+ "epoch": 21.503276539973786,
+ "grad_norm": 0.23049889504909515,
+ "learning_rate": 0.0006,
+ "loss": 3.8850595951080322,
+ "step": 1548
+ },
+ {
+ "epoch": 21.51725644386195,
+ "grad_norm": 0.21519650518894196,
+ "learning_rate": 0.0006,
+ "loss": 3.891313076019287,
+ "step": 1549
+ },
+ {
+ "epoch": 21.53123634775011,
+ "grad_norm": 0.20999883115291595,
+ "learning_rate": 0.0006,
+ "loss": 3.894439220428467,
+ "step": 1550
+ },
+ {
+ "epoch": 21.54521625163827,
+ "grad_norm": 0.19641105830669403,
+ "learning_rate": 0.0006,
+ "loss": 3.894871473312378,
+ "step": 1551
+ },
+ {
+ "epoch": 21.55919615552643,
+ "grad_norm": 0.19108249247074127,
+ "learning_rate": 0.0006,
+ "loss": 3.905968189239502,
+ "step": 1552
+ },
+ {
+ "epoch": 21.573176059414592,
+ "grad_norm": 0.20222234725952148,
+ "learning_rate": 0.0006,
+ "loss": 3.90565824508667,
+ "step": 1553
+ },
+ {
+ "epoch": 21.587155963302752,
+ "grad_norm": 0.20620177686214447,
+ "learning_rate": 0.0006,
+ "loss": 3.9103245735168457,
+ "step": 1554
+ },
+ {
+ "epoch": 21.601135867190912,
+ "grad_norm": 0.2149713784456253,
+ "learning_rate": 0.0006,
+ "loss": 3.8864927291870117,
+ "step": 1555
+ },
+ {
+ "epoch": 21.615115771079076,
+ "grad_norm": 0.2354084551334381,
+ "learning_rate": 0.0006,
+ "loss": 3.905095100402832,
+ "step": 1556
+ },
+ {
+ "epoch": 21.629095674967235,
+ "grad_norm": 0.23949941992759705,
+ "learning_rate": 0.0006,
+ "loss": 3.901803493499756,
+ "step": 1557
+ },
+ {
+ "epoch": 21.643075578855395,
+ "grad_norm": 0.22914277017116547,
+ "learning_rate": 0.0006,
+ "loss": 3.876044273376465,
+ "step": 1558
+ },
+ {
+ "epoch": 21.657055482743555,
+ "grad_norm": 0.2363225370645523,
+ "learning_rate": 0.0006,
+ "loss": 3.910841703414917,
+ "step": 1559
+ },
+ {
+ "epoch": 21.67103538663172,
+ "grad_norm": 0.2635626792907715,
+ "learning_rate": 0.0006,
+ "loss": 3.847407579421997,
+ "step": 1560
+ },
+ {
+ "epoch": 21.68501529051988,
+ "grad_norm": 0.2499786615371704,
+ "learning_rate": 0.0006,
+ "loss": 3.8667140007019043,
+ "step": 1561
+ },
+ {
+ "epoch": 21.698995194408038,
+ "grad_norm": 0.21609611809253693,
+ "learning_rate": 0.0006,
+ "loss": 3.895470142364502,
+ "step": 1562
+ },
+ {
+ "epoch": 21.712975098296198,
+ "grad_norm": 0.2466774582862854,
+ "learning_rate": 0.0006,
+ "loss": 3.8853235244750977,
+ "step": 1563
+ },
+ {
+ "epoch": 21.72695500218436,
+ "grad_norm": 0.23791883885860443,
+ "learning_rate": 0.0006,
+ "loss": 3.899418354034424,
+ "step": 1564
+ },
+ {
+ "epoch": 21.74093490607252,
+ "grad_norm": 0.2048920840024948,
+ "learning_rate": 0.0006,
+ "loss": 3.8992419242858887,
+ "step": 1565
+ },
+ {
+ "epoch": 21.75491480996068,
+ "grad_norm": 0.22266621887683868,
+ "learning_rate": 0.0006,
+ "loss": 3.885765552520752,
+ "step": 1566
+ },
+ {
+ "epoch": 21.76889471384884,
+ "grad_norm": 0.2508748769760132,
+ "learning_rate": 0.0006,
+ "loss": 3.8797037601470947,
+ "step": 1567
+ },
+ {
+ "epoch": 21.782874617737004,
+ "grad_norm": 0.27245673537254333,
+ "learning_rate": 0.0006,
+ "loss": 3.8743176460266113,
+ "step": 1568
+ },
+ {
+ "epoch": 21.796854521625164,
+ "grad_norm": 0.25503191351890564,
+ "learning_rate": 0.0006,
+ "loss": 3.868906259536743,
+ "step": 1569
+ },
+ {
+ "epoch": 21.810834425513324,
+ "grad_norm": 0.22984394431114197,
+ "learning_rate": 0.0006,
+ "loss": 3.9051015377044678,
+ "step": 1570
+ },
+ {
+ "epoch": 21.824814329401484,
+ "grad_norm": 0.2411898821592331,
+ "learning_rate": 0.0006,
+ "loss": 3.8911490440368652,
+ "step": 1571
+ },
+ {
+ "epoch": 21.838794233289647,
+ "grad_norm": 0.22609318792819977,
+ "learning_rate": 0.0006,
+ "loss": 3.894839286804199,
+ "step": 1572
+ },
+ {
+ "epoch": 21.852774137177807,
+ "grad_norm": 0.21904583275318146,
+ "learning_rate": 0.0006,
+ "loss": 3.9314537048339844,
+ "step": 1573
+ },
+ {
+ "epoch": 21.866754041065967,
+ "grad_norm": 0.21869723498821259,
+ "learning_rate": 0.0006,
+ "loss": 3.9141433238983154,
+ "step": 1574
+ },
+ {
+ "epoch": 21.88073394495413,
+ "grad_norm": 0.21682019531726837,
+ "learning_rate": 0.0006,
+ "loss": 3.867898464202881,
+ "step": 1575
+ },
+ {
+ "epoch": 21.89471384884229,
+ "grad_norm": 0.2211964726448059,
+ "learning_rate": 0.0006,
+ "loss": 3.8892226219177246,
+ "step": 1576
+ },
+ {
+ "epoch": 21.90869375273045,
+ "grad_norm": 0.2097381353378296,
+ "learning_rate": 0.0006,
+ "loss": 3.9194154739379883,
+ "step": 1577
+ },
+ {
+ "epoch": 21.92267365661861,
+ "grad_norm": 0.21229565143585205,
+ "learning_rate": 0.0006,
+ "loss": 3.924694538116455,
+ "step": 1578
+ },
+ {
+ "epoch": 21.936653560506773,
+ "grad_norm": 0.2186083346605301,
+ "learning_rate": 0.0006,
+ "loss": 3.904440402984619,
+ "step": 1579
+ },
+ {
+ "epoch": 21.950633464394933,
+ "grad_norm": 0.21112321317195892,
+ "learning_rate": 0.0006,
+ "loss": 3.905674934387207,
+ "step": 1580
+ },
+ {
+ "epoch": 21.964613368283093,
+ "grad_norm": 0.20867373049259186,
+ "learning_rate": 0.0006,
+ "loss": 3.8761563301086426,
+ "step": 1581
+ },
+ {
+ "epoch": 21.978593272171253,
+ "grad_norm": 0.21640732884407043,
+ "learning_rate": 0.0006,
+ "loss": 3.871950149536133,
+ "step": 1582
+ },
+ {
+ "epoch": 21.992573176059416,
+ "grad_norm": 0.21920442581176758,
+ "learning_rate": 0.0006,
+ "loss": 3.8853464126586914,
+ "step": 1583
+ },
+ {
+ "epoch": 22.0,
+ "grad_norm": 0.24132665991783142,
+ "learning_rate": 0.0006,
+ "loss": 3.9012184143066406,
+ "step": 1584
+ },
+ {
+ "epoch": 22.0,
+ "eval_loss": 4.108598232269287,
+ "eval_runtime": 44.0434,
+ "eval_samples_per_second": 55.445,
+ "eval_steps_per_second": 3.474,
+ "step": 1584
+ },
+ {
+ "epoch": 22.01397990388816,
+ "grad_norm": 0.21989449858665466,
+ "learning_rate": 0.0006,
+ "loss": 3.8657469749450684,
+ "step": 1585
+ },
+ {
+ "epoch": 22.027959807776323,
+ "grad_norm": 0.20416802167892456,
+ "learning_rate": 0.0006,
+ "loss": 3.8682117462158203,
+ "step": 1586
+ },
+ {
+ "epoch": 22.041939711664483,
+ "grad_norm": 0.20651975274085999,
+ "learning_rate": 0.0006,
+ "loss": 3.8501222133636475,
+ "step": 1587
+ },
+ {
+ "epoch": 22.055919615552643,
+ "grad_norm": 0.22987176477909088,
+ "learning_rate": 0.0006,
+ "loss": 3.8830955028533936,
+ "step": 1588
+ },
+ {
+ "epoch": 22.069899519440803,
+ "grad_norm": 0.23308858275413513,
+ "learning_rate": 0.0006,
+ "loss": 3.8659040927886963,
+ "step": 1589
+ },
+ {
+ "epoch": 22.083879423328966,
+ "grad_norm": 0.2144266963005066,
+ "learning_rate": 0.0006,
+ "loss": 3.8311047554016113,
+ "step": 1590
+ },
+ {
+ "epoch": 22.097859327217126,
+ "grad_norm": 0.2052636295557022,
+ "learning_rate": 0.0006,
+ "loss": 3.8700156211853027,
+ "step": 1591
+ },
+ {
+ "epoch": 22.111839231105286,
+ "grad_norm": 0.22792384028434753,
+ "learning_rate": 0.0006,
+ "loss": 3.8799097537994385,
+ "step": 1592
+ },
+ {
+ "epoch": 22.125819134993446,
+ "grad_norm": 0.2533944249153137,
+ "learning_rate": 0.0006,
+ "loss": 3.874959945678711,
+ "step": 1593
+ },
+ {
+ "epoch": 22.13979903888161,
+ "grad_norm": 0.27126258611679077,
+ "learning_rate": 0.0006,
+ "loss": 3.863774299621582,
+ "step": 1594
+ },
+ {
+ "epoch": 22.15377894276977,
+ "grad_norm": 0.2634040415287018,
+ "learning_rate": 0.0006,
+ "loss": 3.8876869678497314,
+ "step": 1595
+ },
+ {
+ "epoch": 22.16775884665793,
+ "grad_norm": 0.267987459897995,
+ "learning_rate": 0.0006,
+ "loss": 3.871776819229126,
+ "step": 1596
+ },
+ {
+ "epoch": 22.18173875054609,
+ "grad_norm": 0.2972337305545807,
+ "learning_rate": 0.0006,
+ "loss": 3.8453969955444336,
+ "step": 1597
+ },
+ {
+ "epoch": 22.195718654434252,
+ "grad_norm": 0.3012159764766693,
+ "learning_rate": 0.0006,
+ "loss": 3.8774254322052,
+ "step": 1598
+ },
+ {
+ "epoch": 22.209698558322412,
+ "grad_norm": 0.27275875210762024,
+ "learning_rate": 0.0006,
+ "loss": 3.8558950424194336,
+ "step": 1599
+ },
+ {
+ "epoch": 22.22367846221057,
+ "grad_norm": 0.2817993462085724,
+ "learning_rate": 0.0006,
+ "loss": 3.872211217880249,
+ "step": 1600
+ },
+ {
+ "epoch": 22.23765836609873,
+ "grad_norm": 0.28823208808898926,
+ "learning_rate": 0.0006,
+ "loss": 3.847616672515869,
+ "step": 1601
+ },
+ {
+ "epoch": 22.251638269986895,
+ "grad_norm": 0.2646387815475464,
+ "learning_rate": 0.0006,
+ "loss": 3.8993802070617676,
+ "step": 1602
+ },
+ {
+ "epoch": 22.265618173875055,
+ "grad_norm": 0.27664077281951904,
+ "learning_rate": 0.0006,
+ "loss": 3.858553409576416,
+ "step": 1603
+ },
+ {
+ "epoch": 22.279598077763215,
+ "grad_norm": 0.27708905935287476,
+ "learning_rate": 0.0006,
+ "loss": 3.8691039085388184,
+ "step": 1604
+ },
+ {
+ "epoch": 22.293577981651374,
+ "grad_norm": 0.3045521378517151,
+ "learning_rate": 0.0006,
+ "loss": 3.8721439838409424,
+ "step": 1605
+ },
+ {
+ "epoch": 22.307557885539538,
+ "grad_norm": 0.3481914699077606,
+ "learning_rate": 0.0006,
+ "loss": 3.894503593444824,
+ "step": 1606
+ },
+ {
+ "epoch": 22.321537789427698,
+ "grad_norm": 0.3298046588897705,
+ "learning_rate": 0.0006,
+ "loss": 3.8420844078063965,
+ "step": 1607
+ },
+ {
+ "epoch": 22.335517693315857,
+ "grad_norm": 0.24967724084854126,
+ "learning_rate": 0.0006,
+ "loss": 3.8892619609832764,
+ "step": 1608
+ },
+ {
+ "epoch": 22.34949759720402,
+ "grad_norm": 0.22645241022109985,
+ "learning_rate": 0.0006,
+ "loss": 3.873265504837036,
+ "step": 1609
+ },
+ {
+ "epoch": 22.36347750109218,
+ "grad_norm": 0.22813954949378967,
+ "learning_rate": 0.0006,
+ "loss": 3.8658013343811035,
+ "step": 1610
+ },
+ {
+ "epoch": 22.37745740498034,
+ "grad_norm": 0.23825274407863617,
+ "learning_rate": 0.0006,
+ "loss": 3.885456085205078,
+ "step": 1611
+ },
+ {
+ "epoch": 22.3914373088685,
+ "grad_norm": 0.23612336814403534,
+ "learning_rate": 0.0006,
+ "loss": 3.851841449737549,
+ "step": 1612
+ },
+ {
+ "epoch": 22.405417212756664,
+ "grad_norm": 0.23851265013217926,
+ "learning_rate": 0.0006,
+ "loss": 3.8711647987365723,
+ "step": 1613
+ },
+ {
+ "epoch": 22.419397116644824,
+ "grad_norm": 0.22977286577224731,
+ "learning_rate": 0.0006,
+ "loss": 3.848539113998413,
+ "step": 1614
+ },
+ {
+ "epoch": 22.433377020532983,
+ "grad_norm": 0.20970143377780914,
+ "learning_rate": 0.0006,
+ "loss": 3.8709521293640137,
+ "step": 1615
+ },
+ {
+ "epoch": 22.447356924421143,
+ "grad_norm": 0.20714804530143738,
+ "learning_rate": 0.0006,
+ "loss": 3.875060558319092,
+ "step": 1616
+ },
+ {
+ "epoch": 22.461336828309307,
+ "grad_norm": 0.18881355226039886,
+ "learning_rate": 0.0006,
+ "loss": 3.8744640350341797,
+ "step": 1617
+ },
+ {
+ "epoch": 22.475316732197467,
+ "grad_norm": 0.1928759068250656,
+ "learning_rate": 0.0006,
+ "loss": 3.867971420288086,
+ "step": 1618
+ },
+ {
+ "epoch": 22.489296636085626,
+ "grad_norm": 0.18614749610424042,
+ "learning_rate": 0.0006,
+ "loss": 3.8738222122192383,
+ "step": 1619
+ },
+ {
+ "epoch": 22.503276539973786,
+ "grad_norm": 0.18614931404590607,
+ "learning_rate": 0.0006,
+ "loss": 3.8470513820648193,
+ "step": 1620
+ },
+ {
+ "epoch": 22.51725644386195,
+ "grad_norm": 0.17805059254169464,
+ "learning_rate": 0.0006,
+ "loss": 3.866396903991699,
+ "step": 1621
+ },
+ {
+ "epoch": 22.53123634775011,
+ "grad_norm": 0.16941314935684204,
+ "learning_rate": 0.0006,
+ "loss": 3.856832265853882,
+ "step": 1622
+ },
+ {
+ "epoch": 22.54521625163827,
+ "grad_norm": 0.1802310198545456,
+ "learning_rate": 0.0006,
+ "loss": 3.885653018951416,
+ "step": 1623
+ },
+ {
+ "epoch": 22.55919615552643,
+ "grad_norm": 0.1854856163263321,
+ "learning_rate": 0.0006,
+ "loss": 3.8779640197753906,
+ "step": 1624
+ },
+ {
+ "epoch": 22.573176059414592,
+ "grad_norm": 0.18765869736671448,
+ "learning_rate": 0.0006,
+ "loss": 3.8449032306671143,
+ "step": 1625
+ },
+ {
+ "epoch": 22.587155963302752,
+ "grad_norm": 0.1907789707183838,
+ "learning_rate": 0.0006,
+ "loss": 3.863029718399048,
+ "step": 1626
+ },
+ {
+ "epoch": 22.601135867190912,
+ "grad_norm": 0.19285395741462708,
+ "learning_rate": 0.0006,
+ "loss": 3.880145788192749,
+ "step": 1627
+ },
+ {
+ "epoch": 22.615115771079076,
+ "grad_norm": 0.19229751825332642,
+ "learning_rate": 0.0006,
+ "loss": 3.8521225452423096,
+ "step": 1628
+ },
+ {
+ "epoch": 22.629095674967235,
+ "grad_norm": 0.191694438457489,
+ "learning_rate": 0.0006,
+ "loss": 3.899827003479004,
+ "step": 1629
+ },
+ {
+ "epoch": 22.643075578855395,
+ "grad_norm": 0.20143048465251923,
+ "learning_rate": 0.0006,
+ "loss": 3.862064838409424,
+ "step": 1630
+ },
+ {
+ "epoch": 22.657055482743555,
+ "grad_norm": 0.1959840953350067,
+ "learning_rate": 0.0006,
+ "loss": 3.8955392837524414,
+ "step": 1631
+ },
+ {
+ "epoch": 22.67103538663172,
+ "grad_norm": 0.21454884111881256,
+ "learning_rate": 0.0006,
+ "loss": 3.8503167629241943,
+ "step": 1632
+ },
+ {
+ "epoch": 22.68501529051988,
+ "grad_norm": 0.21748484671115875,
+ "learning_rate": 0.0006,
+ "loss": 3.897134304046631,
+ "step": 1633
+ },
+ {
+ "epoch": 22.698995194408038,
+ "grad_norm": 0.21204186975955963,
+ "learning_rate": 0.0006,
+ "loss": 3.9292588233947754,
+ "step": 1634
+ },
+ {
+ "epoch": 22.712975098296198,
+ "grad_norm": 0.2112748771905899,
+ "learning_rate": 0.0006,
+ "loss": 3.89798641204834,
+ "step": 1635
+ },
+ {
+ "epoch": 22.72695500218436,
+ "grad_norm": 0.188576802611351,
+ "learning_rate": 0.0006,
+ "loss": 3.85627818107605,
+ "step": 1636
+ },
+ {
+ "epoch": 22.74093490607252,
+ "grad_norm": 0.17755994200706482,
+ "learning_rate": 0.0006,
+ "loss": 3.8480074405670166,
+ "step": 1637
+ },
+ {
+ "epoch": 22.75491480996068,
+ "grad_norm": 0.18037520349025726,
+ "learning_rate": 0.0006,
+ "loss": 3.8800172805786133,
+ "step": 1638
+ },
+ {
+ "epoch": 22.76889471384884,
+ "grad_norm": 0.19205765426158905,
+ "learning_rate": 0.0006,
+ "loss": 3.8658275604248047,
+ "step": 1639
+ },
+ {
+ "epoch": 22.782874617737004,
+ "grad_norm": 0.21801964938640594,
+ "learning_rate": 0.0006,
+ "loss": 3.8999452590942383,
+ "step": 1640
+ },
+ {
+ "epoch": 22.796854521625164,
+ "grad_norm": 0.23586086928844452,
+ "learning_rate": 0.0006,
+ "loss": 3.8660664558410645,
+ "step": 1641
+ },
+ {
+ "epoch": 22.810834425513324,
+ "grad_norm": 0.22289055585861206,
+ "learning_rate": 0.0006,
+ "loss": 3.86102557182312,
+ "step": 1642
+ },
+ {
+ "epoch": 22.824814329401484,
+ "grad_norm": 0.20695745944976807,
+ "learning_rate": 0.0006,
+ "loss": 3.8336222171783447,
+ "step": 1643
+ },
+ {
+ "epoch": 22.838794233289647,
+ "grad_norm": 0.2157406210899353,
+ "learning_rate": 0.0006,
+ "loss": 3.8923370838165283,
+ "step": 1644
+ },
+ {
+ "epoch": 22.852774137177807,
+ "grad_norm": 0.2326202690601349,
+ "learning_rate": 0.0006,
+ "loss": 3.8841443061828613,
+ "step": 1645
+ },
+ {
+ "epoch": 22.866754041065967,
+ "grad_norm": 0.2228803187608719,
+ "learning_rate": 0.0006,
+ "loss": 3.8791375160217285,
+ "step": 1646
+ },
+ {
+ "epoch": 22.88073394495413,
+ "grad_norm": 0.228999063372612,
+ "learning_rate": 0.0006,
+ "loss": 3.9005866050720215,
+ "step": 1647
+ },
+ {
+ "epoch": 22.89471384884229,
+ "grad_norm": 0.19673815369606018,
+ "learning_rate": 0.0006,
+ "loss": 3.8954291343688965,
+ "step": 1648
+ },
+ {
+ "epoch": 22.90869375273045,
+ "grad_norm": 0.1862584501504898,
+ "learning_rate": 0.0006,
+ "loss": 3.8591439723968506,
+ "step": 1649
+ },
+ {
+ "epoch": 22.92267365661861,
+ "grad_norm": 0.21360838413238525,
+ "learning_rate": 0.0006,
+ "loss": 3.862949848175049,
+ "step": 1650
+ },
+ {
+ "epoch": 22.936653560506773,
+ "grad_norm": 0.22538702189922333,
+ "learning_rate": 0.0006,
+ "loss": 3.8466529846191406,
+ "step": 1651
+ },
+ {
+ "epoch": 22.950633464394933,
+ "grad_norm": 0.21452727913856506,
+ "learning_rate": 0.0006,
+ "loss": 3.890007495880127,
+ "step": 1652
+ },
+ {
+ "epoch": 22.964613368283093,
+ "grad_norm": 0.21283482015132904,
+ "learning_rate": 0.0006,
+ "loss": 3.8820929527282715,
+ "step": 1653
+ },
+ {
+ "epoch": 22.978593272171253,
+ "grad_norm": 0.2035825103521347,
+ "learning_rate": 0.0006,
+ "loss": 3.8663241863250732,
+ "step": 1654
+ },
+ {
+ "epoch": 22.992573176059416,
+ "grad_norm": 0.22431661188602448,
+ "learning_rate": 0.0006,
+ "loss": 3.88238525390625,
+ "step": 1655
+ },
+ {
+ "epoch": 23.0,
+ "grad_norm": 0.2619943916797638,
+ "learning_rate": 0.0006,
+ "loss": 3.8482635021209717,
+ "step": 1656
+ },
+ {
+ "epoch": 23.0,
+ "eval_loss": 4.099980354309082,
+ "eval_runtime": 44.1311,
+ "eval_samples_per_second": 55.335,
+ "eval_steps_per_second": 3.467,
+ "step": 1656
+ },
+ {
+ "epoch": 23.01397990388816,
+ "grad_norm": 0.24712848663330078,
+ "learning_rate": 0.0006,
+ "loss": 3.836700916290283,
+ "step": 1657
+ },
+ {
+ "epoch": 23.027959807776323,
+ "grad_norm": 0.28568798303604126,
+ "learning_rate": 0.0006,
+ "loss": 3.8523952960968018,
+ "step": 1658
+ },
+ {
+ "epoch": 23.041939711664483,
+ "grad_norm": 0.2999744415283203,
+ "learning_rate": 0.0006,
+ "loss": 3.8229494094848633,
+ "step": 1659
+ },
+ {
+ "epoch": 23.055919615552643,
+ "grad_norm": 0.32080450654029846,
+ "learning_rate": 0.0006,
+ "loss": 3.8562774658203125,
+ "step": 1660
+ },
+ {
+ "epoch": 23.069899519440803,
+ "grad_norm": 0.293468177318573,
+ "learning_rate": 0.0006,
+ "loss": 3.889139175415039,
+ "step": 1661
+ },
+ {
+ "epoch": 23.083879423328966,
+ "grad_norm": 0.2605799436569214,
+ "learning_rate": 0.0006,
+ "loss": 3.838681221008301,
+ "step": 1662
+ },
+ {
+ "epoch": 23.097859327217126,
+ "grad_norm": 0.2656237483024597,
+ "learning_rate": 0.0006,
+ "loss": 3.8603532314300537,
+ "step": 1663
+ },
+ {
+ "epoch": 23.111839231105286,
+ "grad_norm": 0.27163293957710266,
+ "learning_rate": 0.0006,
+ "loss": 3.846987009048462,
+ "step": 1664
+ },
+ {
+ "epoch": 23.125819134993446,
+ "grad_norm": 0.2719763517379761,
+ "learning_rate": 0.0006,
+ "loss": 3.805354595184326,
+ "step": 1665
+ },
+ {
+ "epoch": 23.13979903888161,
+ "grad_norm": 0.25786274671554565,
+ "learning_rate": 0.0006,
+ "loss": 3.8486907482147217,
+ "step": 1666
+ },
+ {
+ "epoch": 23.15377894276977,
+ "grad_norm": 0.2675692141056061,
+ "learning_rate": 0.0006,
+ "loss": 3.816493511199951,
+ "step": 1667
+ },
+ {
+ "epoch": 23.16775884665793,
+ "grad_norm": 0.2711698114871979,
+ "learning_rate": 0.0006,
+ "loss": 3.851863384246826,
+ "step": 1668
+ },
+ {
+ "epoch": 23.18173875054609,
+ "grad_norm": 0.2588968873023987,
+ "learning_rate": 0.0006,
+ "loss": 3.860816717147827,
+ "step": 1669
+ },
+ {
+ "epoch": 23.195718654434252,
+ "grad_norm": 0.2458600401878357,
+ "learning_rate": 0.0006,
+ "loss": 3.8058223724365234,
+ "step": 1670
+ },
+ {
+ "epoch": 23.209698558322412,
+ "grad_norm": 0.22014005482196808,
+ "learning_rate": 0.0006,
+ "loss": 3.8686985969543457,
+ "step": 1671
+ },
+ {
+ "epoch": 23.22367846221057,
+ "grad_norm": 0.22450537979602814,
+ "learning_rate": 0.0006,
+ "loss": 3.8379364013671875,
+ "step": 1672
+ },
+ {
+ "epoch": 23.23765836609873,
+ "grad_norm": 0.22132326662540436,
+ "learning_rate": 0.0006,
+ "loss": 3.8873870372772217,
+ "step": 1673
+ },
+ {
+ "epoch": 23.251638269986895,
+ "grad_norm": 0.20994804799556732,
+ "learning_rate": 0.0006,
+ "loss": 3.821415424346924,
+ "step": 1674
+ },
+ {
+ "epoch": 23.265618173875055,
+ "grad_norm": 0.2040853649377823,
+ "learning_rate": 0.0006,
+ "loss": 3.831658124923706,
+ "step": 1675
+ },
+ {
+ "epoch": 23.279598077763215,
+ "grad_norm": 0.20878618955612183,
+ "learning_rate": 0.0006,
+ "loss": 3.838672637939453,
+ "step": 1676
+ },
+ {
+ "epoch": 23.293577981651374,
+ "grad_norm": 0.19974198937416077,
+ "learning_rate": 0.0006,
+ "loss": 3.8442561626434326,
+ "step": 1677
+ },
+ {
+ "epoch": 23.307557885539538,
+ "grad_norm": 0.20523984730243683,
+ "learning_rate": 0.0006,
+ "loss": 3.846139907836914,
+ "step": 1678
+ },
+ {
+ "epoch": 23.321537789427698,
+ "grad_norm": 0.2045847624540329,
+ "learning_rate": 0.0006,
+ "loss": 3.8597474098205566,
+ "step": 1679
+ },
+ {
+ "epoch": 23.335517693315857,
+ "grad_norm": 0.20957441627979279,
+ "learning_rate": 0.0006,
+ "loss": 3.8493881225585938,
+ "step": 1680
+ },
+ {
+ "epoch": 23.34949759720402,
+ "grad_norm": 0.2069379836320877,
+ "learning_rate": 0.0006,
+ "loss": 3.8510046005249023,
+ "step": 1681
+ },
+ {
+ "epoch": 23.36347750109218,
+ "grad_norm": 0.19627872109413147,
+ "learning_rate": 0.0006,
+ "loss": 3.844618320465088,
+ "step": 1682
+ },
+ {
+ "epoch": 23.37745740498034,
+ "grad_norm": 0.19599434733390808,
+ "learning_rate": 0.0006,
+ "loss": 3.8245465755462646,
+ "step": 1683
+ },
+ {
+ "epoch": 23.3914373088685,
+ "grad_norm": 0.2035072147846222,
+ "learning_rate": 0.0006,
+ "loss": 3.854422092437744,
+ "step": 1684
+ },
+ {
+ "epoch": 23.405417212756664,
+ "grad_norm": 0.21836814284324646,
+ "learning_rate": 0.0006,
+ "loss": 3.83512282371521,
+ "step": 1685
+ },
+ {
+ "epoch": 23.419397116644824,
+ "grad_norm": 0.22844630479812622,
+ "learning_rate": 0.0006,
+ "loss": 3.8744301795959473,
+ "step": 1686
+ },
+ {
+ "epoch": 23.433377020532983,
+ "grad_norm": 0.2259359359741211,
+ "learning_rate": 0.0006,
+ "loss": 3.8460323810577393,
+ "step": 1687
+ },
+ {
+ "epoch": 23.447356924421143,
+ "grad_norm": 0.24440120160579681,
+ "learning_rate": 0.0006,
+ "loss": 3.8543787002563477,
+ "step": 1688
+ },
+ {
+ "epoch": 23.461336828309307,
+ "grad_norm": 0.25063708424568176,
+ "learning_rate": 0.0006,
+ "loss": 3.851004123687744,
+ "step": 1689
+ },
+ {
+ "epoch": 23.475316732197467,
+ "grad_norm": 0.25515618920326233,
+ "learning_rate": 0.0006,
+ "loss": 3.8685030937194824,
+ "step": 1690
+ },
+ {
+ "epoch": 23.489296636085626,
+ "grad_norm": 0.23961050808429718,
+ "learning_rate": 0.0006,
+ "loss": 3.866792678833008,
+ "step": 1691
+ },
+ {
+ "epoch": 23.503276539973786,
+ "grad_norm": 0.20880955457687378,
+ "learning_rate": 0.0006,
+ "loss": 3.8416638374328613,
+ "step": 1692
+ },
+ {
+ "epoch": 23.51725644386195,
+ "grad_norm": 0.1989721804857254,
+ "learning_rate": 0.0006,
+ "loss": 3.8608641624450684,
+ "step": 1693
+ },
+ {
+ "epoch": 23.53123634775011,
+ "grad_norm": 0.207577183842659,
+ "learning_rate": 0.0006,
+ "loss": 3.8431811332702637,
+ "step": 1694
+ },
+ {
+ "epoch": 23.54521625163827,
+ "grad_norm": 0.20844359695911407,
+ "learning_rate": 0.0006,
+ "loss": 3.882844924926758,
+ "step": 1695
+ },
+ {
+ "epoch": 23.55919615552643,
+ "grad_norm": 0.22511139512062073,
+ "learning_rate": 0.0006,
+ "loss": 3.866156578063965,
+ "step": 1696
+ },
+ {
+ "epoch": 23.573176059414592,
+ "grad_norm": 0.21648484468460083,
+ "learning_rate": 0.0006,
+ "loss": 3.87117075920105,
+ "step": 1697
+ },
+ {
+ "epoch": 23.587155963302752,
+ "grad_norm": 0.2081802636384964,
+ "learning_rate": 0.0006,
+ "loss": 3.828132152557373,
+ "step": 1698
+ },
+ {
+ "epoch": 23.601135867190912,
+ "grad_norm": 0.2017381489276886,
+ "learning_rate": 0.0006,
+ "loss": 3.839737892150879,
+ "step": 1699
+ },
+ {
+ "epoch": 23.615115771079076,
+ "grad_norm": 0.2025786191225052,
+ "learning_rate": 0.0006,
+ "loss": 3.8787710666656494,
+ "step": 1700
+ },
+ {
+ "epoch": 23.629095674967235,
+ "grad_norm": 0.21394102275371552,
+ "learning_rate": 0.0006,
+ "loss": 3.824047088623047,
+ "step": 1701
+ },
+ {
+ "epoch": 23.643075578855395,
+ "grad_norm": 0.20749174058437347,
+ "learning_rate": 0.0006,
+ "loss": 3.877009153366089,
+ "step": 1702
+ },
+ {
+ "epoch": 23.657055482743555,
+ "grad_norm": 0.2132839858531952,
+ "learning_rate": 0.0006,
+ "loss": 3.844214916229248,
+ "step": 1703
+ },
+ {
+ "epoch": 23.67103538663172,
+ "grad_norm": 0.22408637404441833,
+ "learning_rate": 0.0006,
+ "loss": 3.8570785522460938,
+ "step": 1704
+ },
+ {
+ "epoch": 23.68501529051988,
+ "grad_norm": 0.2275897115468979,
+ "learning_rate": 0.0006,
+ "loss": 3.8599512577056885,
+ "step": 1705
+ },
+ {
+ "epoch": 23.698995194408038,
+ "grad_norm": 0.2230614721775055,
+ "learning_rate": 0.0006,
+ "loss": 3.86374568939209,
+ "step": 1706
+ },
+ {
+ "epoch": 23.712975098296198,
+ "grad_norm": 0.21873739361763,
+ "learning_rate": 0.0006,
+ "loss": 3.8530168533325195,
+ "step": 1707
+ },
+ {
+ "epoch": 23.72695500218436,
+ "grad_norm": 0.24418923258781433,
+ "learning_rate": 0.0006,
+ "loss": 3.8410465717315674,
+ "step": 1708
+ },
+ {
+ "epoch": 23.74093490607252,
+ "grad_norm": 0.24894575774669647,
+ "learning_rate": 0.0006,
+ "loss": 3.8386030197143555,
+ "step": 1709
+ },
+ {
+ "epoch": 23.75491480996068,
+ "grad_norm": 0.221230611205101,
+ "learning_rate": 0.0006,
+ "loss": 3.8116674423217773,
+ "step": 1710
+ },
+ {
+ "epoch": 23.76889471384884,
+ "grad_norm": 0.20560568571090698,
+ "learning_rate": 0.0006,
+ "loss": 3.8634426593780518,
+ "step": 1711
+ },
+ {
+ "epoch": 23.782874617737004,
+ "grad_norm": 0.20450648665428162,
+ "learning_rate": 0.0006,
+ "loss": 3.8690528869628906,
+ "step": 1712
+ },
+ {
+ "epoch": 23.796854521625164,
+ "grad_norm": 0.18996809422969818,
+ "learning_rate": 0.0006,
+ "loss": 3.8484325408935547,
+ "step": 1713
+ },
+ {
+ "epoch": 23.810834425513324,
+ "grad_norm": 0.20165087282657623,
+ "learning_rate": 0.0006,
+ "loss": 3.8823161125183105,
+ "step": 1714
+ },
+ {
+ "epoch": 23.824814329401484,
+ "grad_norm": 0.21149255335330963,
+ "learning_rate": 0.0006,
+ "loss": 3.8833112716674805,
+ "step": 1715
+ },
+ {
+ "epoch": 23.838794233289647,
+ "grad_norm": 0.21254824101924896,
+ "learning_rate": 0.0006,
+ "loss": 3.8414595127105713,
+ "step": 1716
+ },
+ {
+ "epoch": 23.852774137177807,
+ "grad_norm": 0.21313664317131042,
+ "learning_rate": 0.0006,
+ "loss": 3.8732268810272217,
+ "step": 1717
+ },
+ {
+ "epoch": 23.866754041065967,
+ "grad_norm": 0.21635662019252777,
+ "learning_rate": 0.0006,
+ "loss": 3.861222743988037,
+ "step": 1718
+ },
+ {
+ "epoch": 23.88073394495413,
+ "grad_norm": 0.20612190663814545,
+ "learning_rate": 0.0006,
+ "loss": 3.821854591369629,
+ "step": 1719
+ },
+ {
+ "epoch": 23.89471384884229,
+ "grad_norm": 0.1975104659795761,
+ "learning_rate": 0.0006,
+ "loss": 3.8815202713012695,
+ "step": 1720
+ },
+ {
+ "epoch": 23.90869375273045,
+ "grad_norm": 0.20893609523773193,
+ "learning_rate": 0.0006,
+ "loss": 3.8581607341766357,
+ "step": 1721
+ },
+ {
+ "epoch": 23.92267365661861,
+ "grad_norm": 0.2125461846590042,
+ "learning_rate": 0.0006,
+ "loss": 3.839498281478882,
+ "step": 1722
+ },
+ {
+ "epoch": 23.936653560506773,
+ "grad_norm": 0.19985878467559814,
+ "learning_rate": 0.0006,
+ "loss": 3.856555223464966,
+ "step": 1723
+ },
+ {
+ "epoch": 23.950633464394933,
+ "grad_norm": 0.1922348290681839,
+ "learning_rate": 0.0006,
+ "loss": 3.8956782817840576,
+ "step": 1724
+ },
+ {
+ "epoch": 23.964613368283093,
+ "grad_norm": 0.2191949337720871,
+ "learning_rate": 0.0006,
+ "loss": 3.8582406044006348,
+ "step": 1725
+ },
+ {
+ "epoch": 23.978593272171253,
+ "grad_norm": 0.2569248676300049,
+ "learning_rate": 0.0006,
+ "loss": 3.855678081512451,
+ "step": 1726
+ },
+ {
+ "epoch": 23.992573176059416,
+ "grad_norm": 0.2641172409057617,
+ "learning_rate": 0.0006,
+ "loss": 3.8426473140716553,
+ "step": 1727
+ },
+ {
+ "epoch": 24.0,
+ "grad_norm": 0.29637208580970764,
+ "learning_rate": 0.0006,
+ "loss": 3.843040704727173,
+ "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/mask15-l2r50-fulle-lm/checkpoint-1728/training_args.bin b/runs/mask15-l2r50-fulle-lm/checkpoint-1728/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..43721c50815fe94f90cb043bf545b8f7bd9afc38
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-1728/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:a0b8d7bb9ac952b1abed3bd1e5c8f6ebd20daa957b3a85688954f8df03be6eb9
+size 4856
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-2016/chat_template.jinja b/runs/mask15-l2r50-fulle-lm/checkpoint-2016/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/mask15-l2r50-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/mask15-l2r50-fulle-lm/checkpoint-2016/config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-2016/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..1b4ac3c550d6003148026765eba4cb1512b216c9
--- /dev/null
+++ b/runs/mask15-l2r50-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": 151672
+}
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-2016/generation_config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-2016/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..5cd15fe1269fd505cfdefe9b3e9989dacd9f68f4
--- /dev/null
+++ b/runs/mask15-l2r50-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/mask15-l2r50-fulle-lm/checkpoint-2016/model.safetensors b/runs/mask15-l2r50-fulle-lm/checkpoint-2016/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..8c81eb1e66fd2c536046f5dce313427a3ca4e844
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-2016/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:265dcc69d251f3f3bf5265625cb01eca9f08b2809f27b03cac343fe781239acb
+size 583358280
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-2016/optimizer.pt b/runs/mask15-l2r50-fulle-lm/checkpoint-2016/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..7439fe4098f9820970efa2f922e3cd925c8802f7
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-2016/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:9190aa5e24957a442ff0bfc5382d21c441e033addf60f1b7adbdaadd0c2306cb
+size 1166829434
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-2016/rng_state_0.pth b/runs/mask15-l2r50-fulle-lm/checkpoint-2016/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..1c092c86849b46c08bab835428e42aaf4295f869
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-2016/rng_state_0.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:d79b52209a469389778445ac55fa0337cbb6351a94fc956e71e0ac637f4a3f35
+size 14512
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-2016/rng_state_1.pth b/runs/mask15-l2r50-fulle-lm/checkpoint-2016/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..6bb1eae2ae6a3c5b296359720220f8be85eaadb8
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-2016/rng_state_1.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:1b7a5ebc7102c39f6b74a03c9021194cb2a1cfff32ee59ea3da1c2b1de3a489a
+size 14512
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-2016/scheduler.pt b/runs/mask15-l2r50-fulle-lm/checkpoint-2016/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..b92e75de04edb55fd4d6a1778589870a5bc904d0
--- /dev/null
+++ b/runs/mask15-l2r50-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/mask15-l2r50-fulle-lm/checkpoint-2016/tokenizer.json b/runs/mask15-l2r50-fulle-lm/checkpoint-2016/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..6226bf25372d1a86dbd704ec75d2129960f1ba88
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-2016/tokenizer.json
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:9245fe3cb2d40f9ed8d5d8ddd1d58701ba2a236beec08f656162281673f30560
+size 11424264
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-2016/tokenizer_config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-2016/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..01bc9676576e8cf62a08a9db166d6c5bab1d6727
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-2016/tokenizer_config.json
@@ -0,0 +1,20 @@
+{
+ "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|>",
+ "<|mask|>"
+ ],
+ "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/mask15-l2r50-fulle-lm/checkpoint-2016/trainer_state.json b/runs/mask15-l2r50-fulle-lm/checkpoint-2016/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..9de411c0b73d23dc182f1d7b85b7e61903c46468
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-2016/trainer_state.json
@@ -0,0 +1,14362 @@
+{
+ "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": 9.807971954345703,
+ "learning_rate": 0.0,
+ "loss": 11.989814758300781,
+ "step": 1
+ },
+ {
+ "epoch": 0.027959807776321538,
+ "grad_norm": 9.834383010864258,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 11.993022918701172,
+ "step": 2
+ },
+ {
+ "epoch": 0.04193971166448231,
+ "grad_norm": 9.482470512390137,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 11.854345321655273,
+ "step": 3
+ },
+ {
+ "epoch": 0.055919615552643076,
+ "grad_norm": 7.678808689117432,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 11.618255615234375,
+ "step": 4
+ },
+ {
+ "epoch": 0.06989951944080385,
+ "grad_norm": 6.011275291442871,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 11.351423263549805,
+ "step": 5
+ },
+ {
+ "epoch": 0.08387942332896461,
+ "grad_norm": 5.244393825531006,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 11.128631591796875,
+ "step": 6
+ },
+ {
+ "epoch": 0.09785932721712538,
+ "grad_norm": 4.577618598937988,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 10.921937942504883,
+ "step": 7
+ },
+ {
+ "epoch": 0.11183923110528615,
+ "grad_norm": 4.03810453414917,
+ "learning_rate": 4.2e-05,
+ "loss": 10.742650985717773,
+ "step": 8
+ },
+ {
+ "epoch": 0.1258191349934469,
+ "grad_norm": 3.657679796218872,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 10.600778579711914,
+ "step": 9
+ },
+ {
+ "epoch": 0.1397990388816077,
+ "grad_norm": 3.352902889251709,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 10.489639282226562,
+ "step": 10
+ },
+ {
+ "epoch": 0.15377894276976845,
+ "grad_norm": 3.1162633895874023,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 10.417770385742188,
+ "step": 11
+ },
+ {
+ "epoch": 0.16775884665792923,
+ "grad_norm": 3.0402638912200928,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 10.35334587097168,
+ "step": 12
+ },
+ {
+ "epoch": 0.18173875054608998,
+ "grad_norm": 3.030630111694336,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 10.306867599487305,
+ "step": 13
+ },
+ {
+ "epoch": 0.19571865443425077,
+ "grad_norm": 3.035292148590088,
+ "learning_rate": 7.8e-05,
+ "loss": 10.26003646850586,
+ "step": 14
+ },
+ {
+ "epoch": 0.20969855832241152,
+ "grad_norm": 3.0125675201416016,
+ "learning_rate": 8.4e-05,
+ "loss": 10.219265937805176,
+ "step": 15
+ },
+ {
+ "epoch": 0.2236784622105723,
+ "grad_norm": 2.9998886585235596,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 10.161077499389648,
+ "step": 16
+ },
+ {
+ "epoch": 0.23765836609873306,
+ "grad_norm": 2.9411966800689697,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 10.107423782348633,
+ "step": 17
+ },
+ {
+ "epoch": 0.2516382699868938,
+ "grad_norm": 2.88081955909729,
+ "learning_rate": 0.000102,
+ "loss": 10.04700756072998,
+ "step": 18
+ },
+ {
+ "epoch": 0.2656181738750546,
+ "grad_norm": 2.8219687938690186,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 9.981185913085938,
+ "step": 19
+ },
+ {
+ "epoch": 0.2795980777632154,
+ "grad_norm": 2.79306960105896,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 9.89747142791748,
+ "step": 20
+ },
+ {
+ "epoch": 0.29357798165137616,
+ "grad_norm": 2.7314443588256836,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 9.829219818115234,
+ "step": 21
+ },
+ {
+ "epoch": 0.3075578855395369,
+ "grad_norm": 2.6923747062683105,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 9.747566223144531,
+ "step": 22
+ },
+ {
+ "epoch": 0.3215377894276977,
+ "grad_norm": 2.650602340698242,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 9.66455078125,
+ "step": 23
+ },
+ {
+ "epoch": 0.33551769331585846,
+ "grad_norm": 2.606977701187134,
+ "learning_rate": 0.000138,
+ "loss": 9.582326889038086,
+ "step": 24
+ },
+ {
+ "epoch": 0.34949759720401924,
+ "grad_norm": 2.567256212234497,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 9.492591857910156,
+ "step": 25
+ },
+ {
+ "epoch": 0.36347750109217997,
+ "grad_norm": 2.520740509033203,
+ "learning_rate": 0.00015,
+ "loss": 9.396563529968262,
+ "step": 26
+ },
+ {
+ "epoch": 0.37745740498034075,
+ "grad_norm": 2.471588611602783,
+ "learning_rate": 0.000156,
+ "loss": 9.303571701049805,
+ "step": 27
+ },
+ {
+ "epoch": 0.39143730886850153,
+ "grad_norm": 2.4341530799865723,
+ "learning_rate": 0.000162,
+ "loss": 9.191819190979004,
+ "step": 28
+ },
+ {
+ "epoch": 0.4054172127566623,
+ "grad_norm": 2.369244337081909,
+ "learning_rate": 0.000168,
+ "loss": 9.092012405395508,
+ "step": 29
+ },
+ {
+ "epoch": 0.41939711664482304,
+ "grad_norm": 2.28625226020813,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 8.984567642211914,
+ "step": 30
+ },
+ {
+ "epoch": 0.4333770205329838,
+ "grad_norm": 2.2082231044769287,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 8.889009475708008,
+ "step": 31
+ },
+ {
+ "epoch": 0.4473569244211446,
+ "grad_norm": 2.1429483890533447,
+ "learning_rate": 0.000186,
+ "loss": 8.778556823730469,
+ "step": 32
+ },
+ {
+ "epoch": 0.4613368283093054,
+ "grad_norm": 2.0937352180480957,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 8.661166191101074,
+ "step": 33
+ },
+ {
+ "epoch": 0.4753167321974661,
+ "grad_norm": 2.040790557861328,
+ "learning_rate": 0.000198,
+ "loss": 8.550382614135742,
+ "step": 34
+ },
+ {
+ "epoch": 0.4892966360856269,
+ "grad_norm": 1.93914794921875,
+ "learning_rate": 0.000204,
+ "loss": 8.463907241821289,
+ "step": 35
+ },
+ {
+ "epoch": 0.5032765399737876,
+ "grad_norm": 1.8624178171157837,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 8.3438720703125,
+ "step": 36
+ },
+ {
+ "epoch": 0.5172564438619485,
+ "grad_norm": 1.8107167482376099,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 8.21871566772461,
+ "step": 37
+ },
+ {
+ "epoch": 0.5312363477501092,
+ "grad_norm": 1.717979073524475,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 8.113494873046875,
+ "step": 38
+ },
+ {
+ "epoch": 0.54521625163827,
+ "grad_norm": 1.668742060661316,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 8.006099700927734,
+ "step": 39
+ },
+ {
+ "epoch": 0.5591961555264308,
+ "grad_norm": 1.6147786378860474,
+ "learning_rate": 0.000234,
+ "loss": 7.911509037017822,
+ "step": 40
+ },
+ {
+ "epoch": 0.5731760594145915,
+ "grad_norm": 1.535750150680542,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 7.822839736938477,
+ "step": 41
+ },
+ {
+ "epoch": 0.5871559633027523,
+ "grad_norm": 1.4700065851211548,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 7.713842868804932,
+ "step": 42
+ },
+ {
+ "epoch": 0.601135867190913,
+ "grad_norm": 1.39020574092865,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 7.6040191650390625,
+ "step": 43
+ },
+ {
+ "epoch": 0.6151157710790738,
+ "grad_norm": 1.2875399589538574,
+ "learning_rate": 0.000258,
+ "loss": 7.550642013549805,
+ "step": 44
+ },
+ {
+ "epoch": 0.6290956749672346,
+ "grad_norm": 1.2094247341156006,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 7.460824012756348,
+ "step": 45
+ },
+ {
+ "epoch": 0.6430755788553953,
+ "grad_norm": 1.126452088356018,
+ "learning_rate": 0.00027,
+ "loss": 7.380537986755371,
+ "step": 46
+ },
+ {
+ "epoch": 0.6570554827435562,
+ "grad_norm": 1.0313163995742798,
+ "learning_rate": 0.000276,
+ "loss": 7.286153793334961,
+ "step": 47
+ },
+ {
+ "epoch": 0.6710353866317169,
+ "grad_norm": 0.9172859787940979,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 7.2064714431762695,
+ "step": 48
+ },
+ {
+ "epoch": 0.6850152905198776,
+ "grad_norm": 0.8148201107978821,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 7.158207416534424,
+ "step": 49
+ },
+ {
+ "epoch": 0.6989951944080385,
+ "grad_norm": 0.650123119354248,
+ "learning_rate": 0.000294,
+ "loss": 7.108791828155518,
+ "step": 50
+ },
+ {
+ "epoch": 0.7129750982961992,
+ "grad_norm": 0.5437585711479187,
+ "learning_rate": 0.0003,
+ "loss": 7.083050727844238,
+ "step": 51
+ },
+ {
+ "epoch": 0.7269550021843599,
+ "grad_norm": 0.46762895584106445,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 7.058027267456055,
+ "step": 52
+ },
+ {
+ "epoch": 0.7409349060725208,
+ "grad_norm": 0.47947561740875244,
+ "learning_rate": 0.000312,
+ "loss": 7.015172958374023,
+ "step": 53
+ },
+ {
+ "epoch": 0.7549148099606815,
+ "grad_norm": 0.7546492218971252,
+ "learning_rate": 0.000318,
+ "loss": 7.024629592895508,
+ "step": 54
+ },
+ {
+ "epoch": 0.7688947138488423,
+ "grad_norm": 0.6153718829154968,
+ "learning_rate": 0.000324,
+ "loss": 7.026667594909668,
+ "step": 55
+ },
+ {
+ "epoch": 0.7828746177370031,
+ "grad_norm": 0.3359069228172302,
+ "learning_rate": 0.00033,
+ "loss": 7.008166313171387,
+ "step": 56
+ },
+ {
+ "epoch": 0.7968545216251638,
+ "grad_norm": 0.48906823992729187,
+ "learning_rate": 0.000336,
+ "loss": 7.019716262817383,
+ "step": 57
+ },
+ {
+ "epoch": 0.8108344255133246,
+ "grad_norm": 0.5525421500205994,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 7.02108097076416,
+ "step": 58
+ },
+ {
+ "epoch": 0.8248143294014854,
+ "grad_norm": 0.3103712201118469,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 7.003164768218994,
+ "step": 59
+ },
+ {
+ "epoch": 0.8387942332896461,
+ "grad_norm": 0.4431874752044678,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 7.003463268280029,
+ "step": 60
+ },
+ {
+ "epoch": 0.8527741371778069,
+ "grad_norm": 0.4291120767593384,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 6.96931791305542,
+ "step": 61
+ },
+ {
+ "epoch": 0.8667540410659677,
+ "grad_norm": 0.6566054224967957,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 6.989445686340332,
+ "step": 62
+ },
+ {
+ "epoch": 0.8807339449541285,
+ "grad_norm": 0.20663189888000488,
+ "learning_rate": 0.000372,
+ "loss": 6.9669342041015625,
+ "step": 63
+ },
+ {
+ "epoch": 0.8947138488422892,
+ "grad_norm": 0.6242535710334778,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 6.949883460998535,
+ "step": 64
+ },
+ {
+ "epoch": 0.9086937527304499,
+ "grad_norm": 0.6984224915504456,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 6.955153465270996,
+ "step": 65
+ },
+ {
+ "epoch": 0.9226736566186108,
+ "grad_norm": 0.6328083872795105,
+ "learning_rate": 0.00039,
+ "loss": 6.965421676635742,
+ "step": 66
+ },
+ {
+ "epoch": 0.9366535605067715,
+ "grad_norm": 1.213352918624878,
+ "learning_rate": 0.000396,
+ "loss": 6.9454345703125,
+ "step": 67
+ },
+ {
+ "epoch": 0.9506334643949322,
+ "grad_norm": 0.9221940636634827,
+ "learning_rate": 0.000402,
+ "loss": 6.923908233642578,
+ "step": 68
+ },
+ {
+ "epoch": 0.9646133682830931,
+ "grad_norm": 0.6825450658798218,
+ "learning_rate": 0.000408,
+ "loss": 6.910131454467773,
+ "step": 69
+ },
+ {
+ "epoch": 0.9785932721712538,
+ "grad_norm": 0.5690162181854248,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 6.89891242980957,
+ "step": 70
+ },
+ {
+ "epoch": 0.9925731760594146,
+ "grad_norm": 0.4320870041847229,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 6.896081924438477,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.31632405519485474,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 6.897444725036621,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 7.757839679718018,
+ "eval_runtime": 43.8338,
+ "eval_samples_per_second": 55.71,
+ "eval_steps_per_second": 3.49,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139799038881607,
+ "grad_norm": 0.3789916932582855,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 6.877245903015137,
+ "step": 73
+ },
+ {
+ "epoch": 1.0279598077763215,
+ "grad_norm": 0.9167932868003845,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 6.921600341796875,
+ "step": 74
+ },
+ {
+ "epoch": 1.0419397116644824,
+ "grad_norm": 0.581188440322876,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 6.861001968383789,
+ "step": 75
+ },
+ {
+ "epoch": 1.0559196155526431,
+ "grad_norm": 0.4179714024066925,
+ "learning_rate": 0.00045,
+ "loss": 6.875657081604004,
+ "step": 76
+ },
+ {
+ "epoch": 1.0698995194408039,
+ "grad_norm": 1.0669957399368286,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 6.857122421264648,
+ "step": 77
+ },
+ {
+ "epoch": 1.0838794233289646,
+ "grad_norm": 0.27855145931243896,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 6.828852653503418,
+ "step": 78
+ },
+ {
+ "epoch": 1.0978593272171253,
+ "grad_norm": 0.7192047834396362,
+ "learning_rate": 0.000468,
+ "loss": 6.870839595794678,
+ "step": 79
+ },
+ {
+ "epoch": 1.1118392311052863,
+ "grad_norm": 0.5583325624465942,
+ "learning_rate": 0.000474,
+ "loss": 6.8497514724731445,
+ "step": 80
+ },
+ {
+ "epoch": 1.125819134993447,
+ "grad_norm": 0.3001925051212311,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 6.858528137207031,
+ "step": 81
+ },
+ {
+ "epoch": 1.1397990388816077,
+ "grad_norm": 0.2408239096403122,
+ "learning_rate": 0.000486,
+ "loss": 6.83231258392334,
+ "step": 82
+ },
+ {
+ "epoch": 1.1537789427697684,
+ "grad_norm": 0.28230324387550354,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 6.815476894378662,
+ "step": 83
+ },
+ {
+ "epoch": 1.1677588466579292,
+ "grad_norm": 0.3247123658657074,
+ "learning_rate": 0.000498,
+ "loss": 6.780126094818115,
+ "step": 84
+ },
+ {
+ "epoch": 1.18173875054609,
+ "grad_norm": 0.25713011622428894,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 6.7798309326171875,
+ "step": 85
+ },
+ {
+ "epoch": 1.1957186544342508,
+ "grad_norm": 0.5386835932731628,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 6.791745185852051,
+ "step": 86
+ },
+ {
+ "epoch": 1.2096985583224116,
+ "grad_norm": 0.2226393222808838,
+ "learning_rate": 0.000516,
+ "loss": 6.7826972007751465,
+ "step": 87
+ },
+ {
+ "epoch": 1.2236784622105723,
+ "grad_norm": 0.4338362216949463,
+ "learning_rate": 0.000522,
+ "loss": 6.805043697357178,
+ "step": 88
+ },
+ {
+ "epoch": 1.237658366098733,
+ "grad_norm": 0.2953208386898041,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 6.768434524536133,
+ "step": 89
+ },
+ {
+ "epoch": 1.2516382699868938,
+ "grad_norm": 0.13453717529773712,
+ "learning_rate": 0.000534,
+ "loss": 6.773697376251221,
+ "step": 90
+ },
+ {
+ "epoch": 1.2656181738750547,
+ "grad_norm": 0.35774412751197815,
+ "learning_rate": 0.00054,
+ "loss": 6.766414642333984,
+ "step": 91
+ },
+ {
+ "epoch": 1.2795980777632154,
+ "grad_norm": 0.4669720530509949,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 6.754847526550293,
+ "step": 92
+ },
+ {
+ "epoch": 1.2935779816513762,
+ "grad_norm": 0.13806621730327606,
+ "learning_rate": 0.000552,
+ "loss": 6.746858596801758,
+ "step": 93
+ },
+ {
+ "epoch": 1.307557885539537,
+ "grad_norm": 0.3280332386493683,
+ "learning_rate": 0.000558,
+ "loss": 6.715662956237793,
+ "step": 94
+ },
+ {
+ "epoch": 1.3215377894276976,
+ "grad_norm": 0.4689937233924866,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 6.734938144683838,
+ "step": 95
+ },
+ {
+ "epoch": 1.3355176933158583,
+ "grad_norm": 0.35371264815330505,
+ "learning_rate": 0.00057,
+ "loss": 6.748386383056641,
+ "step": 96
+ },
+ {
+ "epoch": 1.3494975972040193,
+ "grad_norm": 0.15232303738594055,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 6.705557823181152,
+ "step": 97
+ },
+ {
+ "epoch": 1.36347750109218,
+ "grad_norm": 0.30132821202278137,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 6.7199859619140625,
+ "step": 98
+ },
+ {
+ "epoch": 1.3774574049803407,
+ "grad_norm": 0.42174842953681946,
+ "learning_rate": 0.000588,
+ "loss": 6.715370178222656,
+ "step": 99
+ },
+ {
+ "epoch": 1.3914373088685015,
+ "grad_norm": 0.6257228851318359,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 6.707026958465576,
+ "step": 100
+ },
+ {
+ "epoch": 1.4054172127566624,
+ "grad_norm": 0.4551195800304413,
+ "learning_rate": 0.0006,
+ "loss": 6.7078423500061035,
+ "step": 101
+ },
+ {
+ "epoch": 1.4193971166448232,
+ "grad_norm": 0.41940346360206604,
+ "learning_rate": 0.0006,
+ "loss": 6.6959357261657715,
+ "step": 102
+ },
+ {
+ "epoch": 1.4333770205329839,
+ "grad_norm": 0.32251718640327454,
+ "learning_rate": 0.0006,
+ "loss": 6.689168930053711,
+ "step": 103
+ },
+ {
+ "epoch": 1.4473569244211446,
+ "grad_norm": 0.2992720305919647,
+ "learning_rate": 0.0006,
+ "loss": 6.680738925933838,
+ "step": 104
+ },
+ {
+ "epoch": 1.4613368283093053,
+ "grad_norm": 0.3228456974029541,
+ "learning_rate": 0.0006,
+ "loss": 6.672350883483887,
+ "step": 105
+ },
+ {
+ "epoch": 1.475316732197466,
+ "grad_norm": 0.24954743683338165,
+ "learning_rate": 0.0006,
+ "loss": 6.653716087341309,
+ "step": 106
+ },
+ {
+ "epoch": 1.4892966360856268,
+ "grad_norm": 0.30740687251091003,
+ "learning_rate": 0.0006,
+ "loss": 6.676583290100098,
+ "step": 107
+ },
+ {
+ "epoch": 1.5032765399737875,
+ "grad_norm": 0.24950599670410156,
+ "learning_rate": 0.0006,
+ "loss": 6.656691551208496,
+ "step": 108
+ },
+ {
+ "epoch": 1.5172564438619485,
+ "grad_norm": 0.24293005466461182,
+ "learning_rate": 0.0006,
+ "loss": 6.640995979309082,
+ "step": 109
+ },
+ {
+ "epoch": 1.5312363477501092,
+ "grad_norm": 0.30167272686958313,
+ "learning_rate": 0.0006,
+ "loss": 6.647380352020264,
+ "step": 110
+ },
+ {
+ "epoch": 1.5452162516382701,
+ "grad_norm": 0.4424632787704468,
+ "learning_rate": 0.0006,
+ "loss": 6.6548261642456055,
+ "step": 111
+ },
+ {
+ "epoch": 1.5591961555264309,
+ "grad_norm": 0.5295748114585876,
+ "learning_rate": 0.0006,
+ "loss": 6.64370059967041,
+ "step": 112
+ },
+ {
+ "epoch": 1.5731760594145916,
+ "grad_norm": 0.6829339265823364,
+ "learning_rate": 0.0006,
+ "loss": 6.654196739196777,
+ "step": 113
+ },
+ {
+ "epoch": 1.5871559633027523,
+ "grad_norm": 0.6534460186958313,
+ "learning_rate": 0.0006,
+ "loss": 6.675765037536621,
+ "step": 114
+ },
+ {
+ "epoch": 1.601135867190913,
+ "grad_norm": 0.6172244548797607,
+ "learning_rate": 0.0006,
+ "loss": 6.631234169006348,
+ "step": 115
+ },
+ {
+ "epoch": 1.6151157710790738,
+ "grad_norm": 0.5650008320808411,
+ "learning_rate": 0.0006,
+ "loss": 6.654262542724609,
+ "step": 116
+ },
+ {
+ "epoch": 1.6290956749672345,
+ "grad_norm": 0.3890475928783417,
+ "learning_rate": 0.0006,
+ "loss": 6.627526760101318,
+ "step": 117
+ },
+ {
+ "epoch": 1.6430755788553952,
+ "grad_norm": 0.6409873366355896,
+ "learning_rate": 0.0006,
+ "loss": 6.619794845581055,
+ "step": 118
+ },
+ {
+ "epoch": 1.6570554827435562,
+ "grad_norm": 0.5052326321601868,
+ "learning_rate": 0.0006,
+ "loss": 6.612556457519531,
+ "step": 119
+ },
+ {
+ "epoch": 1.671035386631717,
+ "grad_norm": 0.5001237988471985,
+ "learning_rate": 0.0006,
+ "loss": 6.577266693115234,
+ "step": 120
+ },
+ {
+ "epoch": 1.6850152905198776,
+ "grad_norm": 0.5328938364982605,
+ "learning_rate": 0.0006,
+ "loss": 6.59553337097168,
+ "step": 121
+ },
+ {
+ "epoch": 1.6989951944080386,
+ "grad_norm": 0.3568951189517975,
+ "learning_rate": 0.0006,
+ "loss": 6.602717399597168,
+ "step": 122
+ },
+ {
+ "epoch": 1.7129750982961993,
+ "grad_norm": 0.4017309546470642,
+ "learning_rate": 0.0006,
+ "loss": 6.589657783508301,
+ "step": 123
+ },
+ {
+ "epoch": 1.72695500218436,
+ "grad_norm": 0.21432629227638245,
+ "learning_rate": 0.0006,
+ "loss": 6.586555480957031,
+ "step": 124
+ },
+ {
+ "epoch": 1.7409349060725208,
+ "grad_norm": 0.21038052439689636,
+ "learning_rate": 0.0006,
+ "loss": 6.576569557189941,
+ "step": 125
+ },
+ {
+ "epoch": 1.7549148099606815,
+ "grad_norm": 0.23074904084205627,
+ "learning_rate": 0.0006,
+ "loss": 6.5880632400512695,
+ "step": 126
+ },
+ {
+ "epoch": 1.7688947138488422,
+ "grad_norm": 0.42963048815727234,
+ "learning_rate": 0.0006,
+ "loss": 6.603862762451172,
+ "step": 127
+ },
+ {
+ "epoch": 1.782874617737003,
+ "grad_norm": 0.361331045627594,
+ "learning_rate": 0.0006,
+ "loss": 6.579834938049316,
+ "step": 128
+ },
+ {
+ "epoch": 1.7968545216251637,
+ "grad_norm": 0.4951060712337494,
+ "learning_rate": 0.0006,
+ "loss": 6.570443630218506,
+ "step": 129
+ },
+ {
+ "epoch": 1.8108344255133246,
+ "grad_norm": 0.2258434295654297,
+ "learning_rate": 0.0006,
+ "loss": 6.5664777755737305,
+ "step": 130
+ },
+ {
+ "epoch": 1.8248143294014854,
+ "grad_norm": 0.2922155559062958,
+ "learning_rate": 0.0006,
+ "loss": 6.561326503753662,
+ "step": 131
+ },
+ {
+ "epoch": 1.838794233289646,
+ "grad_norm": 0.19068220257759094,
+ "learning_rate": 0.0006,
+ "loss": 6.528727054595947,
+ "step": 132
+ },
+ {
+ "epoch": 1.852774137177807,
+ "grad_norm": 0.2122010439634323,
+ "learning_rate": 0.0006,
+ "loss": 6.535636901855469,
+ "step": 133
+ },
+ {
+ "epoch": 1.8667540410659678,
+ "grad_norm": 0.25760164856910706,
+ "learning_rate": 0.0006,
+ "loss": 6.530498504638672,
+ "step": 134
+ },
+ {
+ "epoch": 1.8807339449541285,
+ "grad_norm": 0.1761016845703125,
+ "learning_rate": 0.0006,
+ "loss": 6.514466285705566,
+ "step": 135
+ },
+ {
+ "epoch": 1.8947138488422892,
+ "grad_norm": 0.2250051498413086,
+ "learning_rate": 0.0006,
+ "loss": 6.521268844604492,
+ "step": 136
+ },
+ {
+ "epoch": 1.90869375273045,
+ "grad_norm": 0.34458497166633606,
+ "learning_rate": 0.0006,
+ "loss": 6.512831687927246,
+ "step": 137
+ },
+ {
+ "epoch": 1.9226736566186107,
+ "grad_norm": 0.3468617796897888,
+ "learning_rate": 0.0006,
+ "loss": 6.515641689300537,
+ "step": 138
+ },
+ {
+ "epoch": 1.9366535605067714,
+ "grad_norm": 0.5051495432853699,
+ "learning_rate": 0.0006,
+ "loss": 6.5147905349731445,
+ "step": 139
+ },
+ {
+ "epoch": 1.9506334643949321,
+ "grad_norm": 0.7106727361679077,
+ "learning_rate": 0.0006,
+ "loss": 6.519277572631836,
+ "step": 140
+ },
+ {
+ "epoch": 1.964613368283093,
+ "grad_norm": 0.8881394267082214,
+ "learning_rate": 0.0006,
+ "loss": 6.526865482330322,
+ "step": 141
+ },
+ {
+ "epoch": 1.9785932721712538,
+ "grad_norm": 0.5552834272384644,
+ "learning_rate": 0.0006,
+ "loss": 6.469970226287842,
+ "step": 142
+ },
+ {
+ "epoch": 1.9925731760594148,
+ "grad_norm": 0.6903126835823059,
+ "learning_rate": 0.0006,
+ "loss": 6.476300239562988,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.47679027915000916,
+ "learning_rate": 0.0006,
+ "loss": 6.463827133178711,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 7.388528823852539,
+ "eval_runtime": 44.2519,
+ "eval_samples_per_second": 55.184,
+ "eval_steps_per_second": 3.457,
+ "step": 144
+ },
+ {
+ "epoch": 2.0139799038881607,
+ "grad_norm": 0.4719221293926239,
+ "learning_rate": 0.0006,
+ "loss": 6.480956077575684,
+ "step": 145
+ },
+ {
+ "epoch": 2.0279598077763215,
+ "grad_norm": 0.41137924790382385,
+ "learning_rate": 0.0006,
+ "loss": 6.449707984924316,
+ "step": 146
+ },
+ {
+ "epoch": 2.041939711664482,
+ "grad_norm": 0.4237765371799469,
+ "learning_rate": 0.0006,
+ "loss": 6.467435836791992,
+ "step": 147
+ },
+ {
+ "epoch": 2.055919615552643,
+ "grad_norm": 0.44081810116767883,
+ "learning_rate": 0.0006,
+ "loss": 6.436868667602539,
+ "step": 148
+ },
+ {
+ "epoch": 2.0698995194408036,
+ "grad_norm": 0.4163798391819,
+ "learning_rate": 0.0006,
+ "loss": 6.4642014503479,
+ "step": 149
+ },
+ {
+ "epoch": 2.083879423328965,
+ "grad_norm": 0.3831583261489868,
+ "learning_rate": 0.0006,
+ "loss": 6.454092025756836,
+ "step": 150
+ },
+ {
+ "epoch": 2.0978593272171255,
+ "grad_norm": 0.37721413373947144,
+ "learning_rate": 0.0006,
+ "loss": 6.426377296447754,
+ "step": 151
+ },
+ {
+ "epoch": 2.1118392311052863,
+ "grad_norm": 0.3323550224304199,
+ "learning_rate": 0.0006,
+ "loss": 6.421375274658203,
+ "step": 152
+ },
+ {
+ "epoch": 2.125819134993447,
+ "grad_norm": 0.47739624977111816,
+ "learning_rate": 0.0006,
+ "loss": 6.412004470825195,
+ "step": 153
+ },
+ {
+ "epoch": 2.1397990388816077,
+ "grad_norm": 0.8530274629592896,
+ "learning_rate": 0.0006,
+ "loss": 6.410468578338623,
+ "step": 154
+ },
+ {
+ "epoch": 2.1537789427697684,
+ "grad_norm": 0.6420364379882812,
+ "learning_rate": 0.0006,
+ "loss": 6.413525581359863,
+ "step": 155
+ },
+ {
+ "epoch": 2.167758846657929,
+ "grad_norm": 0.5005049109458923,
+ "learning_rate": 0.0006,
+ "loss": 6.401463508605957,
+ "step": 156
+ },
+ {
+ "epoch": 2.18173875054609,
+ "grad_norm": 0.3614683449268341,
+ "learning_rate": 0.0006,
+ "loss": 6.390063285827637,
+ "step": 157
+ },
+ {
+ "epoch": 2.1957186544342506,
+ "grad_norm": 0.595215380191803,
+ "learning_rate": 0.0006,
+ "loss": 6.369806289672852,
+ "step": 158
+ },
+ {
+ "epoch": 2.2096985583224114,
+ "grad_norm": 0.5700321793556213,
+ "learning_rate": 0.0006,
+ "loss": 6.368378639221191,
+ "step": 159
+ },
+ {
+ "epoch": 2.2236784622105725,
+ "grad_norm": 0.36273983120918274,
+ "learning_rate": 0.0006,
+ "loss": 6.366860389709473,
+ "step": 160
+ },
+ {
+ "epoch": 2.2376583660987333,
+ "grad_norm": 0.2850998342037201,
+ "learning_rate": 0.0006,
+ "loss": 6.352144718170166,
+ "step": 161
+ },
+ {
+ "epoch": 2.251638269986894,
+ "grad_norm": 0.38558584451675415,
+ "learning_rate": 0.0006,
+ "loss": 6.375765800476074,
+ "step": 162
+ },
+ {
+ "epoch": 2.2656181738750547,
+ "grad_norm": 0.34809231758117676,
+ "learning_rate": 0.0006,
+ "loss": 6.350445747375488,
+ "step": 163
+ },
+ {
+ "epoch": 2.2795980777632154,
+ "grad_norm": 0.5211818814277649,
+ "learning_rate": 0.0006,
+ "loss": 6.354585647583008,
+ "step": 164
+ },
+ {
+ "epoch": 2.293577981651376,
+ "grad_norm": 1.0809133052825928,
+ "learning_rate": 0.0006,
+ "loss": 6.3752007484436035,
+ "step": 165
+ },
+ {
+ "epoch": 2.307557885539537,
+ "grad_norm": 0.8293641209602356,
+ "learning_rate": 0.0006,
+ "loss": 6.35113525390625,
+ "step": 166
+ },
+ {
+ "epoch": 2.3215377894276976,
+ "grad_norm": 0.3428577780723572,
+ "learning_rate": 0.0006,
+ "loss": 6.334470748901367,
+ "step": 167
+ },
+ {
+ "epoch": 2.3355176933158583,
+ "grad_norm": 0.7587600946426392,
+ "learning_rate": 0.0006,
+ "loss": 6.353979587554932,
+ "step": 168
+ },
+ {
+ "epoch": 2.349497597204019,
+ "grad_norm": 0.4227249026298523,
+ "learning_rate": 0.0006,
+ "loss": 6.34018611907959,
+ "step": 169
+ },
+ {
+ "epoch": 2.36347750109218,
+ "grad_norm": 0.4226846694946289,
+ "learning_rate": 0.0006,
+ "loss": 6.290019989013672,
+ "step": 170
+ },
+ {
+ "epoch": 2.3774574049803405,
+ "grad_norm": 0.38412365317344666,
+ "learning_rate": 0.0006,
+ "loss": 6.309510231018066,
+ "step": 171
+ },
+ {
+ "epoch": 2.3914373088685017,
+ "grad_norm": 0.45698508620262146,
+ "learning_rate": 0.0006,
+ "loss": 6.283290863037109,
+ "step": 172
+ },
+ {
+ "epoch": 2.4054172127566624,
+ "grad_norm": 0.7575915455818176,
+ "learning_rate": 0.0006,
+ "loss": 6.306073188781738,
+ "step": 173
+ },
+ {
+ "epoch": 2.419397116644823,
+ "grad_norm": 0.695123553276062,
+ "learning_rate": 0.0006,
+ "loss": 6.308144569396973,
+ "step": 174
+ },
+ {
+ "epoch": 2.433377020532984,
+ "grad_norm": 0.5035743117332458,
+ "learning_rate": 0.0006,
+ "loss": 6.282073974609375,
+ "step": 175
+ },
+ {
+ "epoch": 2.4473569244211446,
+ "grad_norm": 0.3158020079135895,
+ "learning_rate": 0.0006,
+ "loss": 6.282169342041016,
+ "step": 176
+ },
+ {
+ "epoch": 2.4613368283093053,
+ "grad_norm": 0.4829689860343933,
+ "learning_rate": 0.0006,
+ "loss": 6.264578819274902,
+ "step": 177
+ },
+ {
+ "epoch": 2.475316732197466,
+ "grad_norm": 0.3992770314216614,
+ "learning_rate": 0.0006,
+ "loss": 6.228628158569336,
+ "step": 178
+ },
+ {
+ "epoch": 2.489296636085627,
+ "grad_norm": 0.40887606143951416,
+ "learning_rate": 0.0006,
+ "loss": 6.230792045593262,
+ "step": 179
+ },
+ {
+ "epoch": 2.5032765399737875,
+ "grad_norm": 0.3540310263633728,
+ "learning_rate": 0.0006,
+ "loss": 6.222573280334473,
+ "step": 180
+ },
+ {
+ "epoch": 2.5172564438619487,
+ "grad_norm": 0.496219664812088,
+ "learning_rate": 0.0006,
+ "loss": 6.212109565734863,
+ "step": 181
+ },
+ {
+ "epoch": 2.5312363477501094,
+ "grad_norm": 0.435173898935318,
+ "learning_rate": 0.0006,
+ "loss": 6.221210479736328,
+ "step": 182
+ },
+ {
+ "epoch": 2.54521625163827,
+ "grad_norm": 0.5364007949829102,
+ "learning_rate": 0.0006,
+ "loss": 6.217929840087891,
+ "step": 183
+ },
+ {
+ "epoch": 2.559196155526431,
+ "grad_norm": 0.5946390628814697,
+ "learning_rate": 0.0006,
+ "loss": 6.189267158508301,
+ "step": 184
+ },
+ {
+ "epoch": 2.5731760594145916,
+ "grad_norm": 0.41621312499046326,
+ "learning_rate": 0.0006,
+ "loss": 6.182415008544922,
+ "step": 185
+ },
+ {
+ "epoch": 2.5871559633027523,
+ "grad_norm": 0.5442072749137878,
+ "learning_rate": 0.0006,
+ "loss": 6.150757789611816,
+ "step": 186
+ },
+ {
+ "epoch": 2.601135867190913,
+ "grad_norm": 0.727843165397644,
+ "learning_rate": 0.0006,
+ "loss": 6.146082878112793,
+ "step": 187
+ },
+ {
+ "epoch": 2.615115771079074,
+ "grad_norm": 0.8898891806602478,
+ "learning_rate": 0.0006,
+ "loss": 6.190483093261719,
+ "step": 188
+ },
+ {
+ "epoch": 2.6290956749672345,
+ "grad_norm": 0.5173947215080261,
+ "learning_rate": 0.0006,
+ "loss": 6.151251792907715,
+ "step": 189
+ },
+ {
+ "epoch": 2.6430755788553952,
+ "grad_norm": 0.6476729512214661,
+ "learning_rate": 0.0006,
+ "loss": 6.154841423034668,
+ "step": 190
+ },
+ {
+ "epoch": 2.657055482743556,
+ "grad_norm": 0.3538810908794403,
+ "learning_rate": 0.0006,
+ "loss": 6.103879928588867,
+ "step": 191
+ },
+ {
+ "epoch": 2.6710353866317167,
+ "grad_norm": 0.4773508310317993,
+ "learning_rate": 0.0006,
+ "loss": 6.118101119995117,
+ "step": 192
+ },
+ {
+ "epoch": 2.6850152905198774,
+ "grad_norm": 0.29213786125183105,
+ "learning_rate": 0.0006,
+ "loss": 6.108916282653809,
+ "step": 193
+ },
+ {
+ "epoch": 2.6989951944080386,
+ "grad_norm": 0.40800607204437256,
+ "learning_rate": 0.0006,
+ "loss": 6.113438606262207,
+ "step": 194
+ },
+ {
+ "epoch": 2.7129750982961993,
+ "grad_norm": 0.31157299876213074,
+ "learning_rate": 0.0006,
+ "loss": 6.101809501647949,
+ "step": 195
+ },
+ {
+ "epoch": 2.72695500218436,
+ "grad_norm": 0.28660309314727783,
+ "learning_rate": 0.0006,
+ "loss": 6.075886249542236,
+ "step": 196
+ },
+ {
+ "epoch": 2.7409349060725208,
+ "grad_norm": 0.3810449540615082,
+ "learning_rate": 0.0006,
+ "loss": 6.053257942199707,
+ "step": 197
+ },
+ {
+ "epoch": 2.7549148099606815,
+ "grad_norm": 0.21741755306720734,
+ "learning_rate": 0.0006,
+ "loss": 6.013825416564941,
+ "step": 198
+ },
+ {
+ "epoch": 2.7688947138488422,
+ "grad_norm": 0.2777678966522217,
+ "learning_rate": 0.0006,
+ "loss": 6.054204940795898,
+ "step": 199
+ },
+ {
+ "epoch": 2.782874617737003,
+ "grad_norm": 0.28503066301345825,
+ "learning_rate": 0.0006,
+ "loss": 6.035628318786621,
+ "step": 200
+ },
+ {
+ "epoch": 2.7968545216251637,
+ "grad_norm": 0.41954755783081055,
+ "learning_rate": 0.0006,
+ "loss": 6.028354644775391,
+ "step": 201
+ },
+ {
+ "epoch": 2.810834425513325,
+ "grad_norm": 0.8785563111305237,
+ "learning_rate": 0.0006,
+ "loss": 6.055761337280273,
+ "step": 202
+ },
+ {
+ "epoch": 2.8248143294014856,
+ "grad_norm": 1.7459558248519897,
+ "learning_rate": 0.0006,
+ "loss": 6.11599588394165,
+ "step": 203
+ },
+ {
+ "epoch": 2.8387942332896463,
+ "grad_norm": 0.5725523233413696,
+ "learning_rate": 0.0006,
+ "loss": 6.024280548095703,
+ "step": 204
+ },
+ {
+ "epoch": 2.852774137177807,
+ "grad_norm": 0.5913150906562805,
+ "learning_rate": 0.0006,
+ "loss": 6.050281524658203,
+ "step": 205
+ },
+ {
+ "epoch": 2.8667540410659678,
+ "grad_norm": 0.5929384827613831,
+ "learning_rate": 0.0006,
+ "loss": 6.041121482849121,
+ "step": 206
+ },
+ {
+ "epoch": 2.8807339449541285,
+ "grad_norm": 0.5650724768638611,
+ "learning_rate": 0.0006,
+ "loss": 6.004258155822754,
+ "step": 207
+ },
+ {
+ "epoch": 2.894713848842289,
+ "grad_norm": 0.3420545756816864,
+ "learning_rate": 0.0006,
+ "loss": 5.983296871185303,
+ "step": 208
+ },
+ {
+ "epoch": 2.90869375273045,
+ "grad_norm": 0.2960914075374603,
+ "learning_rate": 0.0006,
+ "loss": 5.988578796386719,
+ "step": 209
+ },
+ {
+ "epoch": 2.9226736566186107,
+ "grad_norm": 0.3252662718296051,
+ "learning_rate": 0.0006,
+ "loss": 5.99103307723999,
+ "step": 210
+ },
+ {
+ "epoch": 2.9366535605067714,
+ "grad_norm": 0.4851132929325104,
+ "learning_rate": 0.0006,
+ "loss": 6.0028977394104,
+ "step": 211
+ },
+ {
+ "epoch": 2.950633464394932,
+ "grad_norm": 0.5639995336532593,
+ "learning_rate": 0.0006,
+ "loss": 5.965080738067627,
+ "step": 212
+ },
+ {
+ "epoch": 2.964613368283093,
+ "grad_norm": 0.4514601230621338,
+ "learning_rate": 0.0006,
+ "loss": 5.961450576782227,
+ "step": 213
+ },
+ {
+ "epoch": 2.9785932721712536,
+ "grad_norm": 0.5397921800613403,
+ "learning_rate": 0.0006,
+ "loss": 5.965290546417236,
+ "step": 214
+ },
+ {
+ "epoch": 2.9925731760594148,
+ "grad_norm": 0.4735587239265442,
+ "learning_rate": 0.0006,
+ "loss": 5.952754497528076,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.32061058282852173,
+ "learning_rate": 0.0006,
+ "loss": 5.961667060852051,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 6.8517303466796875,
+ "eval_runtime": 44.03,
+ "eval_samples_per_second": 55.462,
+ "eval_steps_per_second": 3.475,
+ "step": 216
+ },
+ {
+ "epoch": 3.0139799038881607,
+ "grad_norm": 0.3537784814834595,
+ "learning_rate": 0.0006,
+ "loss": 5.928008079528809,
+ "step": 217
+ },
+ {
+ "epoch": 3.0279598077763215,
+ "grad_norm": 0.40713080763816833,
+ "learning_rate": 0.0006,
+ "loss": 5.9150800704956055,
+ "step": 218
+ },
+ {
+ "epoch": 3.041939711664482,
+ "grad_norm": 0.2548826336860657,
+ "learning_rate": 0.0006,
+ "loss": 5.919757843017578,
+ "step": 219
+ },
+ {
+ "epoch": 3.055919615552643,
+ "grad_norm": 0.2818543016910553,
+ "learning_rate": 0.0006,
+ "loss": 5.913688659667969,
+ "step": 220
+ },
+ {
+ "epoch": 3.0698995194408036,
+ "grad_norm": 0.4196692705154419,
+ "learning_rate": 0.0006,
+ "loss": 5.8675336837768555,
+ "step": 221
+ },
+ {
+ "epoch": 3.083879423328965,
+ "grad_norm": 0.35272282361984253,
+ "learning_rate": 0.0006,
+ "loss": 5.878874778747559,
+ "step": 222
+ },
+ {
+ "epoch": 3.0978593272171255,
+ "grad_norm": 0.3254282772541046,
+ "learning_rate": 0.0006,
+ "loss": 5.8823041915893555,
+ "step": 223
+ },
+ {
+ "epoch": 3.1118392311052863,
+ "grad_norm": 0.4052561819553375,
+ "learning_rate": 0.0006,
+ "loss": 5.867744445800781,
+ "step": 224
+ },
+ {
+ "epoch": 3.125819134993447,
+ "grad_norm": 0.31246256828308105,
+ "learning_rate": 0.0006,
+ "loss": 5.886094093322754,
+ "step": 225
+ },
+ {
+ "epoch": 3.1397990388816077,
+ "grad_norm": 0.3479118347167969,
+ "learning_rate": 0.0006,
+ "loss": 5.850762367248535,
+ "step": 226
+ },
+ {
+ "epoch": 3.1537789427697684,
+ "grad_norm": 0.5037238597869873,
+ "learning_rate": 0.0006,
+ "loss": 5.844175815582275,
+ "step": 227
+ },
+ {
+ "epoch": 3.167758846657929,
+ "grad_norm": 0.6271815896034241,
+ "learning_rate": 0.0006,
+ "loss": 5.871790885925293,
+ "step": 228
+ },
+ {
+ "epoch": 3.18173875054609,
+ "grad_norm": 0.43838298320770264,
+ "learning_rate": 0.0006,
+ "loss": 5.844024658203125,
+ "step": 229
+ },
+ {
+ "epoch": 3.1957186544342506,
+ "grad_norm": 0.4755159616470337,
+ "learning_rate": 0.0006,
+ "loss": 5.846892356872559,
+ "step": 230
+ },
+ {
+ "epoch": 3.2096985583224114,
+ "grad_norm": 0.5229779481887817,
+ "learning_rate": 0.0006,
+ "loss": 5.827000617980957,
+ "step": 231
+ },
+ {
+ "epoch": 3.2236784622105725,
+ "grad_norm": 0.8264499306678772,
+ "learning_rate": 0.0006,
+ "loss": 5.867050647735596,
+ "step": 232
+ },
+ {
+ "epoch": 3.2376583660987333,
+ "grad_norm": 1.0607538223266602,
+ "learning_rate": 0.0006,
+ "loss": 5.877876281738281,
+ "step": 233
+ },
+ {
+ "epoch": 3.251638269986894,
+ "grad_norm": 0.7656505703926086,
+ "learning_rate": 0.0006,
+ "loss": 5.86760139465332,
+ "step": 234
+ },
+ {
+ "epoch": 3.2656181738750547,
+ "grad_norm": 0.7940183281898499,
+ "learning_rate": 0.0006,
+ "loss": 5.861355781555176,
+ "step": 235
+ },
+ {
+ "epoch": 3.2795980777632154,
+ "grad_norm": 0.45171424746513367,
+ "learning_rate": 0.0006,
+ "loss": 5.799808502197266,
+ "step": 236
+ },
+ {
+ "epoch": 3.293577981651376,
+ "grad_norm": 0.6174989342689514,
+ "learning_rate": 0.0006,
+ "loss": 5.8585920333862305,
+ "step": 237
+ },
+ {
+ "epoch": 3.307557885539537,
+ "grad_norm": 0.5341290831565857,
+ "learning_rate": 0.0006,
+ "loss": 5.8116044998168945,
+ "step": 238
+ },
+ {
+ "epoch": 3.3215377894276976,
+ "grad_norm": 0.3938343822956085,
+ "learning_rate": 0.0006,
+ "loss": 5.83797550201416,
+ "step": 239
+ },
+ {
+ "epoch": 3.3355176933158583,
+ "grad_norm": 0.5106972455978394,
+ "learning_rate": 0.0006,
+ "loss": 5.832303047180176,
+ "step": 240
+ },
+ {
+ "epoch": 3.349497597204019,
+ "grad_norm": 0.3791428506374359,
+ "learning_rate": 0.0006,
+ "loss": 5.794981956481934,
+ "step": 241
+ },
+ {
+ "epoch": 3.36347750109218,
+ "grad_norm": 0.42287978529930115,
+ "learning_rate": 0.0006,
+ "loss": 5.788144111633301,
+ "step": 242
+ },
+ {
+ "epoch": 3.3774574049803405,
+ "grad_norm": 0.27334436774253845,
+ "learning_rate": 0.0006,
+ "loss": 5.771070957183838,
+ "step": 243
+ },
+ {
+ "epoch": 3.3914373088685017,
+ "grad_norm": 0.2470470368862152,
+ "learning_rate": 0.0006,
+ "loss": 5.755998611450195,
+ "step": 244
+ },
+ {
+ "epoch": 3.4054172127566624,
+ "grad_norm": 0.3043915033340454,
+ "learning_rate": 0.0006,
+ "loss": 5.779492378234863,
+ "step": 245
+ },
+ {
+ "epoch": 3.419397116644823,
+ "grad_norm": 0.2960112988948822,
+ "learning_rate": 0.0006,
+ "loss": 5.750328063964844,
+ "step": 246
+ },
+ {
+ "epoch": 3.433377020532984,
+ "grad_norm": 0.3046723008155823,
+ "learning_rate": 0.0006,
+ "loss": 5.776517868041992,
+ "step": 247
+ },
+ {
+ "epoch": 3.4473569244211446,
+ "grad_norm": 0.22461780905723572,
+ "learning_rate": 0.0006,
+ "loss": 5.760989665985107,
+ "step": 248
+ },
+ {
+ "epoch": 3.4613368283093053,
+ "grad_norm": 0.24625757336616516,
+ "learning_rate": 0.0006,
+ "loss": 5.759706497192383,
+ "step": 249
+ },
+ {
+ "epoch": 3.475316732197466,
+ "grad_norm": 0.18207131326198578,
+ "learning_rate": 0.0006,
+ "loss": 5.747040748596191,
+ "step": 250
+ },
+ {
+ "epoch": 3.489296636085627,
+ "grad_norm": 0.16473834216594696,
+ "learning_rate": 0.0006,
+ "loss": 5.761577606201172,
+ "step": 251
+ },
+ {
+ "epoch": 3.5032765399737875,
+ "grad_norm": 0.25155773758888245,
+ "learning_rate": 0.0006,
+ "loss": 5.696502208709717,
+ "step": 252
+ },
+ {
+ "epoch": 3.5172564438619487,
+ "grad_norm": 0.24115674197673798,
+ "learning_rate": 0.0006,
+ "loss": 5.676957130432129,
+ "step": 253
+ },
+ {
+ "epoch": 3.5312363477501094,
+ "grad_norm": 0.40912172198295593,
+ "learning_rate": 0.0006,
+ "loss": 5.695090293884277,
+ "step": 254
+ },
+ {
+ "epoch": 3.54521625163827,
+ "grad_norm": 0.6727662682533264,
+ "learning_rate": 0.0006,
+ "loss": 5.722194671630859,
+ "step": 255
+ },
+ {
+ "epoch": 3.559196155526431,
+ "grad_norm": 0.8450719118118286,
+ "learning_rate": 0.0006,
+ "loss": 5.764680862426758,
+ "step": 256
+ },
+ {
+ "epoch": 3.5731760594145916,
+ "grad_norm": 0.9916183352470398,
+ "learning_rate": 0.0006,
+ "loss": 5.754530429840088,
+ "step": 257
+ },
+ {
+ "epoch": 3.5871559633027523,
+ "grad_norm": 1.041922688484192,
+ "learning_rate": 0.0006,
+ "loss": 5.781468391418457,
+ "step": 258
+ },
+ {
+ "epoch": 3.601135867190913,
+ "grad_norm": 0.972039520740509,
+ "learning_rate": 0.0006,
+ "loss": 5.760323524475098,
+ "step": 259
+ },
+ {
+ "epoch": 3.615115771079074,
+ "grad_norm": 0.6802462935447693,
+ "learning_rate": 0.0006,
+ "loss": 5.750064849853516,
+ "step": 260
+ },
+ {
+ "epoch": 3.6290956749672345,
+ "grad_norm": 0.48553529381752014,
+ "learning_rate": 0.0006,
+ "loss": 5.7464094161987305,
+ "step": 261
+ },
+ {
+ "epoch": 3.6430755788553952,
+ "grad_norm": 0.4066704213619232,
+ "learning_rate": 0.0006,
+ "loss": 5.719789505004883,
+ "step": 262
+ },
+ {
+ "epoch": 3.657055482743556,
+ "grad_norm": 0.3300860822200775,
+ "learning_rate": 0.0006,
+ "loss": 5.719920635223389,
+ "step": 263
+ },
+ {
+ "epoch": 3.6710353866317167,
+ "grad_norm": 0.3286679983139038,
+ "learning_rate": 0.0006,
+ "loss": 5.723465919494629,
+ "step": 264
+ },
+ {
+ "epoch": 3.6850152905198774,
+ "grad_norm": 0.27653390169143677,
+ "learning_rate": 0.0006,
+ "loss": 5.713820457458496,
+ "step": 265
+ },
+ {
+ "epoch": 3.6989951944080386,
+ "grad_norm": 0.26138055324554443,
+ "learning_rate": 0.0006,
+ "loss": 5.683221817016602,
+ "step": 266
+ },
+ {
+ "epoch": 3.7129750982961993,
+ "grad_norm": 0.23706290125846863,
+ "learning_rate": 0.0006,
+ "loss": 5.6896867752075195,
+ "step": 267
+ },
+ {
+ "epoch": 3.72695500218436,
+ "grad_norm": 0.2751729190349579,
+ "learning_rate": 0.0006,
+ "loss": 5.710301876068115,
+ "step": 268
+ },
+ {
+ "epoch": 3.7409349060725208,
+ "grad_norm": 0.255393385887146,
+ "learning_rate": 0.0006,
+ "loss": 5.687932968139648,
+ "step": 269
+ },
+ {
+ "epoch": 3.7549148099606815,
+ "grad_norm": 0.21453925967216492,
+ "learning_rate": 0.0006,
+ "loss": 5.68234395980835,
+ "step": 270
+ },
+ {
+ "epoch": 3.7688947138488422,
+ "grad_norm": 0.21771012246608734,
+ "learning_rate": 0.0006,
+ "loss": 5.683980464935303,
+ "step": 271
+ },
+ {
+ "epoch": 3.782874617737003,
+ "grad_norm": 0.1884593963623047,
+ "learning_rate": 0.0006,
+ "loss": 5.662779808044434,
+ "step": 272
+ },
+ {
+ "epoch": 3.7968545216251637,
+ "grad_norm": 0.20429612696170807,
+ "learning_rate": 0.0006,
+ "loss": 5.650941848754883,
+ "step": 273
+ },
+ {
+ "epoch": 3.810834425513325,
+ "grad_norm": 0.22586797177791595,
+ "learning_rate": 0.0006,
+ "loss": 5.639376640319824,
+ "step": 274
+ },
+ {
+ "epoch": 3.8248143294014856,
+ "grad_norm": 0.19651705026626587,
+ "learning_rate": 0.0006,
+ "loss": 5.612030029296875,
+ "step": 275
+ },
+ {
+ "epoch": 3.8387942332896463,
+ "grad_norm": 0.2125253826379776,
+ "learning_rate": 0.0006,
+ "loss": 5.622836589813232,
+ "step": 276
+ },
+ {
+ "epoch": 3.852774137177807,
+ "grad_norm": 0.2905234694480896,
+ "learning_rate": 0.0006,
+ "loss": 5.624594688415527,
+ "step": 277
+ },
+ {
+ "epoch": 3.8667540410659678,
+ "grad_norm": 0.2718426585197449,
+ "learning_rate": 0.0006,
+ "loss": 5.619892120361328,
+ "step": 278
+ },
+ {
+ "epoch": 3.8807339449541285,
+ "grad_norm": 0.26481127738952637,
+ "learning_rate": 0.0006,
+ "loss": 5.612496852874756,
+ "step": 279
+ },
+ {
+ "epoch": 3.894713848842289,
+ "grad_norm": 0.2876453399658203,
+ "learning_rate": 0.0006,
+ "loss": 5.59157133102417,
+ "step": 280
+ },
+ {
+ "epoch": 3.90869375273045,
+ "grad_norm": 0.22829554975032806,
+ "learning_rate": 0.0006,
+ "loss": 5.5884199142456055,
+ "step": 281
+ },
+ {
+ "epoch": 3.9226736566186107,
+ "grad_norm": 0.22852344810962677,
+ "learning_rate": 0.0006,
+ "loss": 5.618719100952148,
+ "step": 282
+ },
+ {
+ "epoch": 3.9366535605067714,
+ "grad_norm": 0.37366563081741333,
+ "learning_rate": 0.0006,
+ "loss": 5.611738204956055,
+ "step": 283
+ },
+ {
+ "epoch": 3.950633464394932,
+ "grad_norm": 0.5650382041931152,
+ "learning_rate": 0.0006,
+ "loss": 5.606371879577637,
+ "step": 284
+ },
+ {
+ "epoch": 3.964613368283093,
+ "grad_norm": 0.5960066914558411,
+ "learning_rate": 0.0006,
+ "loss": 5.595022201538086,
+ "step": 285
+ },
+ {
+ "epoch": 3.9785932721712536,
+ "grad_norm": 0.3561663031578064,
+ "learning_rate": 0.0006,
+ "loss": 5.581035614013672,
+ "step": 286
+ },
+ {
+ "epoch": 3.9925731760594148,
+ "grad_norm": 0.44699913263320923,
+ "learning_rate": 0.0006,
+ "loss": 5.568033218383789,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.42783990502357483,
+ "learning_rate": 0.0006,
+ "loss": 5.571993827819824,
+ "step": 288
+ },
+ {
+ "epoch": 4.0,
+ "eval_loss": 6.349016189575195,
+ "eval_runtime": 44.3326,
+ "eval_samples_per_second": 55.084,
+ "eval_steps_per_second": 3.451,
+ "step": 288
+ },
+ {
+ "epoch": 4.013979903888161,
+ "grad_norm": 0.41305896639823914,
+ "learning_rate": 0.0006,
+ "loss": 5.562954902648926,
+ "step": 289
+ },
+ {
+ "epoch": 4.0279598077763215,
+ "grad_norm": 0.3966459035873413,
+ "learning_rate": 0.0006,
+ "loss": 5.5671916007995605,
+ "step": 290
+ },
+ {
+ "epoch": 4.041939711664482,
+ "grad_norm": 0.4846104085445404,
+ "learning_rate": 0.0006,
+ "loss": 5.548027038574219,
+ "step": 291
+ },
+ {
+ "epoch": 4.055919615552643,
+ "grad_norm": 0.5916333794593811,
+ "learning_rate": 0.0006,
+ "loss": 5.5900068283081055,
+ "step": 292
+ },
+ {
+ "epoch": 4.069899519440804,
+ "grad_norm": 0.5973889231681824,
+ "learning_rate": 0.0006,
+ "loss": 5.537594795227051,
+ "step": 293
+ },
+ {
+ "epoch": 4.083879423328964,
+ "grad_norm": 0.4190494418144226,
+ "learning_rate": 0.0006,
+ "loss": 5.534749984741211,
+ "step": 294
+ },
+ {
+ "epoch": 4.097859327217125,
+ "grad_norm": 0.5956901907920837,
+ "learning_rate": 0.0006,
+ "loss": 5.554540634155273,
+ "step": 295
+ },
+ {
+ "epoch": 4.111839231105286,
+ "grad_norm": 0.8257920742034912,
+ "learning_rate": 0.0006,
+ "loss": 5.5728068351745605,
+ "step": 296
+ },
+ {
+ "epoch": 4.1258191349934465,
+ "grad_norm": 0.7241750955581665,
+ "learning_rate": 0.0006,
+ "loss": 5.5643815994262695,
+ "step": 297
+ },
+ {
+ "epoch": 4.139799038881607,
+ "grad_norm": 0.45730507373809814,
+ "learning_rate": 0.0006,
+ "loss": 5.554225921630859,
+ "step": 298
+ },
+ {
+ "epoch": 4.153778942769769,
+ "grad_norm": 0.5166977643966675,
+ "learning_rate": 0.0006,
+ "loss": 5.540790557861328,
+ "step": 299
+ },
+ {
+ "epoch": 4.16775884665793,
+ "grad_norm": 0.433237761259079,
+ "learning_rate": 0.0006,
+ "loss": 5.536884784698486,
+ "step": 300
+ },
+ {
+ "epoch": 4.18173875054609,
+ "grad_norm": 0.3369830250740051,
+ "learning_rate": 0.0006,
+ "loss": 5.532837867736816,
+ "step": 301
+ },
+ {
+ "epoch": 4.195718654434251,
+ "grad_norm": 0.33091458678245544,
+ "learning_rate": 0.0006,
+ "loss": 5.547643661499023,
+ "step": 302
+ },
+ {
+ "epoch": 4.209698558322412,
+ "grad_norm": 0.36462724208831787,
+ "learning_rate": 0.0006,
+ "loss": 5.525021076202393,
+ "step": 303
+ },
+ {
+ "epoch": 4.2236784622105725,
+ "grad_norm": 0.3342771530151367,
+ "learning_rate": 0.0006,
+ "loss": 5.512082099914551,
+ "step": 304
+ },
+ {
+ "epoch": 4.237658366098733,
+ "grad_norm": 0.26784762740135193,
+ "learning_rate": 0.0006,
+ "loss": 5.488072395324707,
+ "step": 305
+ },
+ {
+ "epoch": 4.251638269986894,
+ "grad_norm": 0.25986987352371216,
+ "learning_rate": 0.0006,
+ "loss": 5.4960455894470215,
+ "step": 306
+ },
+ {
+ "epoch": 4.265618173875055,
+ "grad_norm": 0.24595795571804047,
+ "learning_rate": 0.0006,
+ "loss": 5.513367176055908,
+ "step": 307
+ },
+ {
+ "epoch": 4.279598077763215,
+ "grad_norm": 0.2224857211112976,
+ "learning_rate": 0.0006,
+ "loss": 5.465205192565918,
+ "step": 308
+ },
+ {
+ "epoch": 4.293577981651376,
+ "grad_norm": 0.26799243688583374,
+ "learning_rate": 0.0006,
+ "loss": 5.476632118225098,
+ "step": 309
+ },
+ {
+ "epoch": 4.307557885539537,
+ "grad_norm": 0.20443417131900787,
+ "learning_rate": 0.0006,
+ "loss": 5.442601203918457,
+ "step": 310
+ },
+ {
+ "epoch": 4.321537789427698,
+ "grad_norm": 0.2275059074163437,
+ "learning_rate": 0.0006,
+ "loss": 5.453519344329834,
+ "step": 311
+ },
+ {
+ "epoch": 4.335517693315858,
+ "grad_norm": 0.2860901951789856,
+ "learning_rate": 0.0006,
+ "loss": 5.439424514770508,
+ "step": 312
+ },
+ {
+ "epoch": 4.349497597204019,
+ "grad_norm": 0.3378142714500427,
+ "learning_rate": 0.0006,
+ "loss": 5.476953983306885,
+ "step": 313
+ },
+ {
+ "epoch": 4.36347750109218,
+ "grad_norm": 0.3487110733985901,
+ "learning_rate": 0.0006,
+ "loss": 5.47003698348999,
+ "step": 314
+ },
+ {
+ "epoch": 4.3774574049803405,
+ "grad_norm": 0.3655227720737457,
+ "learning_rate": 0.0006,
+ "loss": 5.454250812530518,
+ "step": 315
+ },
+ {
+ "epoch": 4.391437308868501,
+ "grad_norm": 0.3754786252975464,
+ "learning_rate": 0.0006,
+ "loss": 5.475249290466309,
+ "step": 316
+ },
+ {
+ "epoch": 4.405417212756662,
+ "grad_norm": 0.42494088411331177,
+ "learning_rate": 0.0006,
+ "loss": 5.4552459716796875,
+ "step": 317
+ },
+ {
+ "epoch": 4.419397116644823,
+ "grad_norm": 0.4914703667163849,
+ "learning_rate": 0.0006,
+ "loss": 5.431845188140869,
+ "step": 318
+ },
+ {
+ "epoch": 4.433377020532983,
+ "grad_norm": 0.42470860481262207,
+ "learning_rate": 0.0006,
+ "loss": 5.454581260681152,
+ "step": 319
+ },
+ {
+ "epoch": 4.447356924421145,
+ "grad_norm": 0.3828011155128479,
+ "learning_rate": 0.0006,
+ "loss": 5.435178756713867,
+ "step": 320
+ },
+ {
+ "epoch": 4.461336828309306,
+ "grad_norm": 0.47256892919540405,
+ "learning_rate": 0.0006,
+ "loss": 5.428861618041992,
+ "step": 321
+ },
+ {
+ "epoch": 4.4753167321974665,
+ "grad_norm": 0.5665146708488464,
+ "learning_rate": 0.0006,
+ "loss": 5.424633026123047,
+ "step": 322
+ },
+ {
+ "epoch": 4.489296636085627,
+ "grad_norm": 0.48146721720695496,
+ "learning_rate": 0.0006,
+ "loss": 5.4577860832214355,
+ "step": 323
+ },
+ {
+ "epoch": 4.503276539973788,
+ "grad_norm": 0.3378535509109497,
+ "learning_rate": 0.0006,
+ "loss": 5.422727108001709,
+ "step": 324
+ },
+ {
+ "epoch": 4.517256443861949,
+ "grad_norm": 0.41981473565101624,
+ "learning_rate": 0.0006,
+ "loss": 5.418993949890137,
+ "step": 325
+ },
+ {
+ "epoch": 4.531236347750109,
+ "grad_norm": 0.39389684796333313,
+ "learning_rate": 0.0006,
+ "loss": 5.41835880279541,
+ "step": 326
+ },
+ {
+ "epoch": 4.54521625163827,
+ "grad_norm": 0.5912176370620728,
+ "learning_rate": 0.0006,
+ "loss": 5.40073299407959,
+ "step": 327
+ },
+ {
+ "epoch": 4.559196155526431,
+ "grad_norm": 0.6877487897872925,
+ "learning_rate": 0.0006,
+ "loss": 5.445301055908203,
+ "step": 328
+ },
+ {
+ "epoch": 4.573176059414592,
+ "grad_norm": 0.580555260181427,
+ "learning_rate": 0.0006,
+ "loss": 5.431069374084473,
+ "step": 329
+ },
+ {
+ "epoch": 4.587155963302752,
+ "grad_norm": 0.5974457859992981,
+ "learning_rate": 0.0006,
+ "loss": 5.422694206237793,
+ "step": 330
+ },
+ {
+ "epoch": 4.601135867190913,
+ "grad_norm": 0.722481906414032,
+ "learning_rate": 0.0006,
+ "loss": 5.447752952575684,
+ "step": 331
+ },
+ {
+ "epoch": 4.615115771079074,
+ "grad_norm": 0.7687886953353882,
+ "learning_rate": 0.0006,
+ "loss": 5.437956809997559,
+ "step": 332
+ },
+ {
+ "epoch": 4.6290956749672345,
+ "grad_norm": 0.7368173003196716,
+ "learning_rate": 0.0006,
+ "loss": 5.4367241859436035,
+ "step": 333
+ },
+ {
+ "epoch": 4.643075578855395,
+ "grad_norm": 0.6650524139404297,
+ "learning_rate": 0.0006,
+ "loss": 5.4288434982299805,
+ "step": 334
+ },
+ {
+ "epoch": 4.657055482743556,
+ "grad_norm": 0.4997614920139313,
+ "learning_rate": 0.0006,
+ "loss": 5.412769317626953,
+ "step": 335
+ },
+ {
+ "epoch": 4.671035386631717,
+ "grad_norm": 0.44208982586860657,
+ "learning_rate": 0.0006,
+ "loss": 5.42405366897583,
+ "step": 336
+ },
+ {
+ "epoch": 4.685015290519877,
+ "grad_norm": 0.39510273933410645,
+ "learning_rate": 0.0006,
+ "loss": 5.402547836303711,
+ "step": 337
+ },
+ {
+ "epoch": 4.698995194408038,
+ "grad_norm": 0.44970476627349854,
+ "learning_rate": 0.0006,
+ "loss": 5.377168655395508,
+ "step": 338
+ },
+ {
+ "epoch": 4.712975098296199,
+ "grad_norm": 0.3902331590652466,
+ "learning_rate": 0.0006,
+ "loss": 5.401622772216797,
+ "step": 339
+ },
+ {
+ "epoch": 4.72695500218436,
+ "grad_norm": 0.33485135436058044,
+ "learning_rate": 0.0006,
+ "loss": 5.397945880889893,
+ "step": 340
+ },
+ {
+ "epoch": 4.740934906072521,
+ "grad_norm": 0.29062309861183167,
+ "learning_rate": 0.0006,
+ "loss": 5.356175422668457,
+ "step": 341
+ },
+ {
+ "epoch": 4.754914809960681,
+ "grad_norm": 0.23617377877235413,
+ "learning_rate": 0.0006,
+ "loss": 5.388517379760742,
+ "step": 342
+ },
+ {
+ "epoch": 4.768894713848843,
+ "grad_norm": 0.2704737186431885,
+ "learning_rate": 0.0006,
+ "loss": 5.3746137619018555,
+ "step": 343
+ },
+ {
+ "epoch": 4.782874617737003,
+ "grad_norm": 0.20488551259040833,
+ "learning_rate": 0.0006,
+ "loss": 5.3754472732543945,
+ "step": 344
+ },
+ {
+ "epoch": 4.796854521625164,
+ "grad_norm": 0.2007082849740982,
+ "learning_rate": 0.0006,
+ "loss": 5.3538618087768555,
+ "step": 345
+ },
+ {
+ "epoch": 4.810834425513325,
+ "grad_norm": 0.21732935309410095,
+ "learning_rate": 0.0006,
+ "loss": 5.351774215698242,
+ "step": 346
+ },
+ {
+ "epoch": 4.824814329401486,
+ "grad_norm": 0.1944841742515564,
+ "learning_rate": 0.0006,
+ "loss": 5.357545852661133,
+ "step": 347
+ },
+ {
+ "epoch": 4.838794233289646,
+ "grad_norm": 0.1953933835029602,
+ "learning_rate": 0.0006,
+ "loss": 5.321681022644043,
+ "step": 348
+ },
+ {
+ "epoch": 4.852774137177807,
+ "grad_norm": 0.1743433028459549,
+ "learning_rate": 0.0006,
+ "loss": 5.340302467346191,
+ "step": 349
+ },
+ {
+ "epoch": 4.866754041065968,
+ "grad_norm": 0.19655466079711914,
+ "learning_rate": 0.0006,
+ "loss": 5.325471878051758,
+ "step": 350
+ },
+ {
+ "epoch": 4.8807339449541285,
+ "grad_norm": 0.15761791169643402,
+ "learning_rate": 0.0006,
+ "loss": 5.3453240394592285,
+ "step": 351
+ },
+ {
+ "epoch": 4.894713848842289,
+ "grad_norm": 0.19164425134658813,
+ "learning_rate": 0.0006,
+ "loss": 5.315583229064941,
+ "step": 352
+ },
+ {
+ "epoch": 4.90869375273045,
+ "grad_norm": 0.28084540367126465,
+ "learning_rate": 0.0006,
+ "loss": 5.309171676635742,
+ "step": 353
+ },
+ {
+ "epoch": 4.922673656618611,
+ "grad_norm": 0.4681853652000427,
+ "learning_rate": 0.0006,
+ "loss": 5.318211078643799,
+ "step": 354
+ },
+ {
+ "epoch": 4.936653560506771,
+ "grad_norm": 0.6417295932769775,
+ "learning_rate": 0.0006,
+ "loss": 5.309263706207275,
+ "step": 355
+ },
+ {
+ "epoch": 4.950633464394932,
+ "grad_norm": 0.501312792301178,
+ "learning_rate": 0.0006,
+ "loss": 5.321534156799316,
+ "step": 356
+ },
+ {
+ "epoch": 4.964613368283093,
+ "grad_norm": 0.47502145171165466,
+ "learning_rate": 0.0006,
+ "loss": 5.323659896850586,
+ "step": 357
+ },
+ {
+ "epoch": 4.978593272171254,
+ "grad_norm": 0.5366594791412354,
+ "learning_rate": 0.0006,
+ "loss": 5.327367782592773,
+ "step": 358
+ },
+ {
+ "epoch": 4.992573176059414,
+ "grad_norm": 0.6986395120620728,
+ "learning_rate": 0.0006,
+ "loss": 5.311097145080566,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.6626625657081604,
+ "learning_rate": 0.0006,
+ "loss": 5.337558269500732,
+ "step": 360
+ },
+ {
+ "epoch": 5.0,
+ "eval_loss": 5.929230690002441,
+ "eval_runtime": 44.5268,
+ "eval_samples_per_second": 54.843,
+ "eval_steps_per_second": 3.436,
+ "step": 360
+ },
+ {
+ "epoch": 5.013979903888161,
+ "grad_norm": 0.7383704781532288,
+ "learning_rate": 0.0006,
+ "loss": 5.315563678741455,
+ "step": 361
+ },
+ {
+ "epoch": 5.0279598077763215,
+ "grad_norm": 0.7730138301849365,
+ "learning_rate": 0.0006,
+ "loss": 5.324905872344971,
+ "step": 362
+ },
+ {
+ "epoch": 5.041939711664482,
+ "grad_norm": 0.8170825839042664,
+ "learning_rate": 0.0006,
+ "loss": 5.350251197814941,
+ "step": 363
+ },
+ {
+ "epoch": 5.055919615552643,
+ "grad_norm": 0.6950958371162415,
+ "learning_rate": 0.0006,
+ "loss": 5.338744163513184,
+ "step": 364
+ },
+ {
+ "epoch": 5.069899519440804,
+ "grad_norm": 0.5582894086837769,
+ "learning_rate": 0.0006,
+ "loss": 5.340539932250977,
+ "step": 365
+ },
+ {
+ "epoch": 5.083879423328964,
+ "grad_norm": 0.4772159159183502,
+ "learning_rate": 0.0006,
+ "loss": 5.344161033630371,
+ "step": 366
+ },
+ {
+ "epoch": 5.097859327217125,
+ "grad_norm": 0.5432839393615723,
+ "learning_rate": 0.0006,
+ "loss": 5.312403678894043,
+ "step": 367
+ },
+ {
+ "epoch": 5.111839231105286,
+ "grad_norm": 0.4944784641265869,
+ "learning_rate": 0.0006,
+ "loss": 5.30281925201416,
+ "step": 368
+ },
+ {
+ "epoch": 5.1258191349934465,
+ "grad_norm": 0.4298315942287445,
+ "learning_rate": 0.0006,
+ "loss": 5.29564094543457,
+ "step": 369
+ },
+ {
+ "epoch": 5.139799038881607,
+ "grad_norm": 0.349889874458313,
+ "learning_rate": 0.0006,
+ "loss": 5.287062644958496,
+ "step": 370
+ },
+ {
+ "epoch": 5.153778942769769,
+ "grad_norm": 0.2823719084262848,
+ "learning_rate": 0.0006,
+ "loss": 5.28826904296875,
+ "step": 371
+ },
+ {
+ "epoch": 5.16775884665793,
+ "grad_norm": 0.32975050806999207,
+ "learning_rate": 0.0006,
+ "loss": 5.256399631500244,
+ "step": 372
+ },
+ {
+ "epoch": 5.18173875054609,
+ "grad_norm": 0.2963952124118805,
+ "learning_rate": 0.0006,
+ "loss": 5.273757457733154,
+ "step": 373
+ },
+ {
+ "epoch": 5.195718654434251,
+ "grad_norm": 0.21345984935760498,
+ "learning_rate": 0.0006,
+ "loss": 5.274978160858154,
+ "step": 374
+ },
+ {
+ "epoch": 5.209698558322412,
+ "grad_norm": 0.2363101840019226,
+ "learning_rate": 0.0006,
+ "loss": 5.261585235595703,
+ "step": 375
+ },
+ {
+ "epoch": 5.2236784622105725,
+ "grad_norm": 0.19626963138580322,
+ "learning_rate": 0.0006,
+ "loss": 5.259700298309326,
+ "step": 376
+ },
+ {
+ "epoch": 5.237658366098733,
+ "grad_norm": 0.21083571016788483,
+ "learning_rate": 0.0006,
+ "loss": 5.233585357666016,
+ "step": 377
+ },
+ {
+ "epoch": 5.251638269986894,
+ "grad_norm": 0.2273513823747635,
+ "learning_rate": 0.0006,
+ "loss": 5.231740474700928,
+ "step": 378
+ },
+ {
+ "epoch": 5.265618173875055,
+ "grad_norm": 0.18299247324466705,
+ "learning_rate": 0.0006,
+ "loss": 5.251256465911865,
+ "step": 379
+ },
+ {
+ "epoch": 5.279598077763215,
+ "grad_norm": 0.19578224420547485,
+ "learning_rate": 0.0006,
+ "loss": 5.230329513549805,
+ "step": 380
+ },
+ {
+ "epoch": 5.293577981651376,
+ "grad_norm": 0.20308879017829895,
+ "learning_rate": 0.0006,
+ "loss": 5.243951797485352,
+ "step": 381
+ },
+ {
+ "epoch": 5.307557885539537,
+ "grad_norm": 0.21053212881088257,
+ "learning_rate": 0.0006,
+ "loss": 5.210272789001465,
+ "step": 382
+ },
+ {
+ "epoch": 5.321537789427698,
+ "grad_norm": 0.21852520108222961,
+ "learning_rate": 0.0006,
+ "loss": 5.215418815612793,
+ "step": 383
+ },
+ {
+ "epoch": 5.335517693315858,
+ "grad_norm": 0.24872010946273804,
+ "learning_rate": 0.0006,
+ "loss": 5.225139617919922,
+ "step": 384
+ },
+ {
+ "epoch": 5.349497597204019,
+ "grad_norm": 0.27780187129974365,
+ "learning_rate": 0.0006,
+ "loss": 5.241010665893555,
+ "step": 385
+ },
+ {
+ "epoch": 5.36347750109218,
+ "grad_norm": 0.261767715215683,
+ "learning_rate": 0.0006,
+ "loss": 5.230723857879639,
+ "step": 386
+ },
+ {
+ "epoch": 5.3774574049803405,
+ "grad_norm": 0.2111261785030365,
+ "learning_rate": 0.0006,
+ "loss": 5.1848602294921875,
+ "step": 387
+ },
+ {
+ "epoch": 5.391437308868501,
+ "grad_norm": 0.24325387179851532,
+ "learning_rate": 0.0006,
+ "loss": 5.180911064147949,
+ "step": 388
+ },
+ {
+ "epoch": 5.405417212756662,
+ "grad_norm": 0.19542962312698364,
+ "learning_rate": 0.0006,
+ "loss": 5.189907073974609,
+ "step": 389
+ },
+ {
+ "epoch": 5.419397116644823,
+ "grad_norm": 0.20489346981048584,
+ "learning_rate": 0.0006,
+ "loss": 5.184634208679199,
+ "step": 390
+ },
+ {
+ "epoch": 5.433377020532983,
+ "grad_norm": 0.2753409147262573,
+ "learning_rate": 0.0006,
+ "loss": 5.190083026885986,
+ "step": 391
+ },
+ {
+ "epoch": 5.447356924421145,
+ "grad_norm": 0.3758019208908081,
+ "learning_rate": 0.0006,
+ "loss": 5.189423561096191,
+ "step": 392
+ },
+ {
+ "epoch": 5.461336828309306,
+ "grad_norm": 0.4425095021724701,
+ "learning_rate": 0.0006,
+ "loss": 5.17152214050293,
+ "step": 393
+ },
+ {
+ "epoch": 5.4753167321974665,
+ "grad_norm": 0.39721858501434326,
+ "learning_rate": 0.0006,
+ "loss": 5.189178466796875,
+ "step": 394
+ },
+ {
+ "epoch": 5.489296636085627,
+ "grad_norm": 0.43441957235336304,
+ "learning_rate": 0.0006,
+ "loss": 5.1823577880859375,
+ "step": 395
+ },
+ {
+ "epoch": 5.503276539973788,
+ "grad_norm": 0.3583861291408539,
+ "learning_rate": 0.0006,
+ "loss": 5.160187721252441,
+ "step": 396
+ },
+ {
+ "epoch": 5.517256443861949,
+ "grad_norm": 0.323290079832077,
+ "learning_rate": 0.0006,
+ "loss": 5.113046646118164,
+ "step": 397
+ },
+ {
+ "epoch": 5.531236347750109,
+ "grad_norm": 0.3049418330192566,
+ "learning_rate": 0.0006,
+ "loss": 5.172209739685059,
+ "step": 398
+ },
+ {
+ "epoch": 5.54521625163827,
+ "grad_norm": 0.3253744840621948,
+ "learning_rate": 0.0006,
+ "loss": 5.1970720291137695,
+ "step": 399
+ },
+ {
+ "epoch": 5.559196155526431,
+ "grad_norm": 0.3232555091381073,
+ "learning_rate": 0.0006,
+ "loss": 5.173195838928223,
+ "step": 400
+ },
+ {
+ "epoch": 5.573176059414592,
+ "grad_norm": 0.33751845359802246,
+ "learning_rate": 0.0006,
+ "loss": 5.137526988983154,
+ "step": 401
+ },
+ {
+ "epoch": 5.587155963302752,
+ "grad_norm": 0.45970913767814636,
+ "learning_rate": 0.0006,
+ "loss": 5.123377799987793,
+ "step": 402
+ },
+ {
+ "epoch": 5.601135867190913,
+ "grad_norm": 0.5383784770965576,
+ "learning_rate": 0.0006,
+ "loss": 5.154180526733398,
+ "step": 403
+ },
+ {
+ "epoch": 5.615115771079074,
+ "grad_norm": 0.45765912532806396,
+ "learning_rate": 0.0006,
+ "loss": 5.1485209465026855,
+ "step": 404
+ },
+ {
+ "epoch": 5.6290956749672345,
+ "grad_norm": 0.5079503059387207,
+ "learning_rate": 0.0006,
+ "loss": 5.158293724060059,
+ "step": 405
+ },
+ {
+ "epoch": 5.643075578855395,
+ "grad_norm": 0.4860183894634247,
+ "learning_rate": 0.0006,
+ "loss": 5.1610212326049805,
+ "step": 406
+ },
+ {
+ "epoch": 5.657055482743556,
+ "grad_norm": 0.4065648913383484,
+ "learning_rate": 0.0006,
+ "loss": 5.1260786056518555,
+ "step": 407
+ },
+ {
+ "epoch": 5.671035386631717,
+ "grad_norm": 0.39606142044067383,
+ "learning_rate": 0.0006,
+ "loss": 5.1598711013793945,
+ "step": 408
+ },
+ {
+ "epoch": 5.685015290519877,
+ "grad_norm": 0.4705151319503784,
+ "learning_rate": 0.0006,
+ "loss": 5.166455268859863,
+ "step": 409
+ },
+ {
+ "epoch": 5.698995194408038,
+ "grad_norm": 0.5040799379348755,
+ "learning_rate": 0.0006,
+ "loss": 5.1408209800720215,
+ "step": 410
+ },
+ {
+ "epoch": 5.712975098296199,
+ "grad_norm": 0.5012556910514832,
+ "learning_rate": 0.0006,
+ "loss": 5.144109725952148,
+ "step": 411
+ },
+ {
+ "epoch": 5.72695500218436,
+ "grad_norm": 0.44301411509513855,
+ "learning_rate": 0.0006,
+ "loss": 5.155509948730469,
+ "step": 412
+ },
+ {
+ "epoch": 5.740934906072521,
+ "grad_norm": 0.36632269620895386,
+ "learning_rate": 0.0006,
+ "loss": 5.123111248016357,
+ "step": 413
+ },
+ {
+ "epoch": 5.754914809960681,
+ "grad_norm": 0.2980524003505707,
+ "learning_rate": 0.0006,
+ "loss": 5.1355719566345215,
+ "step": 414
+ },
+ {
+ "epoch": 5.768894713848843,
+ "grad_norm": 0.3441782295703888,
+ "learning_rate": 0.0006,
+ "loss": 5.132327079772949,
+ "step": 415
+ },
+ {
+ "epoch": 5.782874617737003,
+ "grad_norm": 0.4150780737400055,
+ "learning_rate": 0.0006,
+ "loss": 5.148543357849121,
+ "step": 416
+ },
+ {
+ "epoch": 5.796854521625164,
+ "grad_norm": 0.48417383432388306,
+ "learning_rate": 0.0006,
+ "loss": 5.104989528656006,
+ "step": 417
+ },
+ {
+ "epoch": 5.810834425513325,
+ "grad_norm": 0.3216031491756439,
+ "learning_rate": 0.0006,
+ "loss": 5.0926127433776855,
+ "step": 418
+ },
+ {
+ "epoch": 5.824814329401486,
+ "grad_norm": 0.2821158468723297,
+ "learning_rate": 0.0006,
+ "loss": 5.112299919128418,
+ "step": 419
+ },
+ {
+ "epoch": 5.838794233289646,
+ "grad_norm": 0.29821011424064636,
+ "learning_rate": 0.0006,
+ "loss": 5.091662406921387,
+ "step": 420
+ },
+ {
+ "epoch": 5.852774137177807,
+ "grad_norm": 0.30570563673973083,
+ "learning_rate": 0.0006,
+ "loss": 5.137539863586426,
+ "step": 421
+ },
+ {
+ "epoch": 5.866754041065968,
+ "grad_norm": 0.4029594957828522,
+ "learning_rate": 0.0006,
+ "loss": 5.112751007080078,
+ "step": 422
+ },
+ {
+ "epoch": 5.8807339449541285,
+ "grad_norm": 0.3878514766693115,
+ "learning_rate": 0.0006,
+ "loss": 5.094973564147949,
+ "step": 423
+ },
+ {
+ "epoch": 5.894713848842289,
+ "grad_norm": 0.31936126947402954,
+ "learning_rate": 0.0006,
+ "loss": 5.081070899963379,
+ "step": 424
+ },
+ {
+ "epoch": 5.90869375273045,
+ "grad_norm": 0.3309082090854645,
+ "learning_rate": 0.0006,
+ "loss": 5.06803560256958,
+ "step": 425
+ },
+ {
+ "epoch": 5.922673656618611,
+ "grad_norm": 0.27830439805984497,
+ "learning_rate": 0.0006,
+ "loss": 5.044766426086426,
+ "step": 426
+ },
+ {
+ "epoch": 5.936653560506771,
+ "grad_norm": 0.3301011919975281,
+ "learning_rate": 0.0006,
+ "loss": 5.093942165374756,
+ "step": 427
+ },
+ {
+ "epoch": 5.950633464394932,
+ "grad_norm": 0.40845948457717896,
+ "learning_rate": 0.0006,
+ "loss": 5.0889458656311035,
+ "step": 428
+ },
+ {
+ "epoch": 5.964613368283093,
+ "grad_norm": 0.4412153959274292,
+ "learning_rate": 0.0006,
+ "loss": 5.064834117889404,
+ "step": 429
+ },
+ {
+ "epoch": 5.978593272171254,
+ "grad_norm": 0.3592590093612671,
+ "learning_rate": 0.0006,
+ "loss": 5.066648006439209,
+ "step": 430
+ },
+ {
+ "epoch": 5.992573176059414,
+ "grad_norm": 0.3952840268611908,
+ "learning_rate": 0.0006,
+ "loss": 5.066549301147461,
+ "step": 431
+ },
+ {
+ "epoch": 6.0,
+ "grad_norm": 0.38878682255744934,
+ "learning_rate": 0.0006,
+ "loss": 5.0354323387146,
+ "step": 432
+ },
+ {
+ "epoch": 6.0,
+ "eval_loss": 5.473907947540283,
+ "eval_runtime": 44.5121,
+ "eval_samples_per_second": 54.861,
+ "eval_steps_per_second": 3.437,
+ "step": 432
+ },
+ {
+ "epoch": 6.013979903888161,
+ "grad_norm": 0.42730140686035156,
+ "learning_rate": 0.0006,
+ "loss": 5.048557281494141,
+ "step": 433
+ },
+ {
+ "epoch": 6.0279598077763215,
+ "grad_norm": 0.32713913917541504,
+ "learning_rate": 0.0006,
+ "loss": 5.041255950927734,
+ "step": 434
+ },
+ {
+ "epoch": 6.041939711664482,
+ "grad_norm": 0.32520365715026855,
+ "learning_rate": 0.0006,
+ "loss": 5.043124198913574,
+ "step": 435
+ },
+ {
+ "epoch": 6.055919615552643,
+ "grad_norm": 0.2941839098930359,
+ "learning_rate": 0.0006,
+ "loss": 5.0407304763793945,
+ "step": 436
+ },
+ {
+ "epoch": 6.069899519440804,
+ "grad_norm": 0.3088819682598114,
+ "learning_rate": 0.0006,
+ "loss": 5.020771026611328,
+ "step": 437
+ },
+ {
+ "epoch": 6.083879423328964,
+ "grad_norm": 0.34334254264831543,
+ "learning_rate": 0.0006,
+ "loss": 5.0260009765625,
+ "step": 438
+ },
+ {
+ "epoch": 6.097859327217125,
+ "grad_norm": 0.33016136288642883,
+ "learning_rate": 0.0006,
+ "loss": 4.994412899017334,
+ "step": 439
+ },
+ {
+ "epoch": 6.111839231105286,
+ "grad_norm": 0.2527366280555725,
+ "learning_rate": 0.0006,
+ "loss": 4.997830390930176,
+ "step": 440
+ },
+ {
+ "epoch": 6.1258191349934465,
+ "grad_norm": 0.24742509424686432,
+ "learning_rate": 0.0006,
+ "loss": 5.017087936401367,
+ "step": 441
+ },
+ {
+ "epoch": 6.139799038881607,
+ "grad_norm": 0.22578303515911102,
+ "learning_rate": 0.0006,
+ "loss": 5.000683784484863,
+ "step": 442
+ },
+ {
+ "epoch": 6.153778942769769,
+ "grad_norm": 0.21213896572589874,
+ "learning_rate": 0.0006,
+ "loss": 4.993280410766602,
+ "step": 443
+ },
+ {
+ "epoch": 6.16775884665793,
+ "grad_norm": 0.22559592127799988,
+ "learning_rate": 0.0006,
+ "loss": 5.005735874176025,
+ "step": 444
+ },
+ {
+ "epoch": 6.18173875054609,
+ "grad_norm": 0.18574322760105133,
+ "learning_rate": 0.0006,
+ "loss": 4.996601104736328,
+ "step": 445
+ },
+ {
+ "epoch": 6.195718654434251,
+ "grad_norm": 0.1793852299451828,
+ "learning_rate": 0.0006,
+ "loss": 4.977394104003906,
+ "step": 446
+ },
+ {
+ "epoch": 6.209698558322412,
+ "grad_norm": 0.1851297914981842,
+ "learning_rate": 0.0006,
+ "loss": 4.983541488647461,
+ "step": 447
+ },
+ {
+ "epoch": 6.2236784622105725,
+ "grad_norm": 0.2045268565416336,
+ "learning_rate": 0.0006,
+ "loss": 4.992830276489258,
+ "step": 448
+ },
+ {
+ "epoch": 6.237658366098733,
+ "grad_norm": 0.21707463264465332,
+ "learning_rate": 0.0006,
+ "loss": 4.998589515686035,
+ "step": 449
+ },
+ {
+ "epoch": 6.251638269986894,
+ "grad_norm": 0.2805860638618469,
+ "learning_rate": 0.0006,
+ "loss": 4.973134517669678,
+ "step": 450
+ },
+ {
+ "epoch": 6.265618173875055,
+ "grad_norm": 0.33102089166641235,
+ "learning_rate": 0.0006,
+ "loss": 4.957348823547363,
+ "step": 451
+ },
+ {
+ "epoch": 6.279598077763215,
+ "grad_norm": 0.3763096034526825,
+ "learning_rate": 0.0006,
+ "loss": 5.0133256912231445,
+ "step": 452
+ },
+ {
+ "epoch": 6.293577981651376,
+ "grad_norm": 0.4676196575164795,
+ "learning_rate": 0.0006,
+ "loss": 4.972289562225342,
+ "step": 453
+ },
+ {
+ "epoch": 6.307557885539537,
+ "grad_norm": 0.6158978343009949,
+ "learning_rate": 0.0006,
+ "loss": 4.989326477050781,
+ "step": 454
+ },
+ {
+ "epoch": 6.321537789427698,
+ "grad_norm": 0.537460446357727,
+ "learning_rate": 0.0006,
+ "loss": 5.0210676193237305,
+ "step": 455
+ },
+ {
+ "epoch": 6.335517693315858,
+ "grad_norm": 0.5342532396316528,
+ "learning_rate": 0.0006,
+ "loss": 4.988524436950684,
+ "step": 456
+ },
+ {
+ "epoch": 6.349497597204019,
+ "grad_norm": 0.5736384987831116,
+ "learning_rate": 0.0006,
+ "loss": 4.977508068084717,
+ "step": 457
+ },
+ {
+ "epoch": 6.36347750109218,
+ "grad_norm": 0.6656201481819153,
+ "learning_rate": 0.0006,
+ "loss": 5.047934055328369,
+ "step": 458
+ },
+ {
+ "epoch": 6.3774574049803405,
+ "grad_norm": 0.6388342380523682,
+ "learning_rate": 0.0006,
+ "loss": 5.017617225646973,
+ "step": 459
+ },
+ {
+ "epoch": 6.391437308868501,
+ "grad_norm": 0.6620904207229614,
+ "learning_rate": 0.0006,
+ "loss": 5.032195091247559,
+ "step": 460
+ },
+ {
+ "epoch": 6.405417212756662,
+ "grad_norm": 0.693274974822998,
+ "learning_rate": 0.0006,
+ "loss": 5.02433967590332,
+ "step": 461
+ },
+ {
+ "epoch": 6.419397116644823,
+ "grad_norm": 0.6888924241065979,
+ "learning_rate": 0.0006,
+ "loss": 5.010735511779785,
+ "step": 462
+ },
+ {
+ "epoch": 6.433377020532983,
+ "grad_norm": 0.7181721925735474,
+ "learning_rate": 0.0006,
+ "loss": 5.049690246582031,
+ "step": 463
+ },
+ {
+ "epoch": 6.447356924421145,
+ "grad_norm": 0.7225117087364197,
+ "learning_rate": 0.0006,
+ "loss": 5.031939506530762,
+ "step": 464
+ },
+ {
+ "epoch": 6.461336828309306,
+ "grad_norm": 0.5268304347991943,
+ "learning_rate": 0.0006,
+ "loss": 5.01638126373291,
+ "step": 465
+ },
+ {
+ "epoch": 6.4753167321974665,
+ "grad_norm": 0.38218435645103455,
+ "learning_rate": 0.0006,
+ "loss": 4.997034072875977,
+ "step": 466
+ },
+ {
+ "epoch": 6.489296636085627,
+ "grad_norm": 0.3576396703720093,
+ "learning_rate": 0.0006,
+ "loss": 5.006804943084717,
+ "step": 467
+ },
+ {
+ "epoch": 6.503276539973788,
+ "grad_norm": 0.3305981755256653,
+ "learning_rate": 0.0006,
+ "loss": 4.994671821594238,
+ "step": 468
+ },
+ {
+ "epoch": 6.517256443861949,
+ "grad_norm": 0.3254900574684143,
+ "learning_rate": 0.0006,
+ "loss": 4.9747490882873535,
+ "step": 469
+ },
+ {
+ "epoch": 6.531236347750109,
+ "grad_norm": 0.2655033469200134,
+ "learning_rate": 0.0006,
+ "loss": 5.002863883972168,
+ "step": 470
+ },
+ {
+ "epoch": 6.54521625163827,
+ "grad_norm": 0.2620532810688019,
+ "learning_rate": 0.0006,
+ "loss": 4.9813337326049805,
+ "step": 471
+ },
+ {
+ "epoch": 6.559196155526431,
+ "grad_norm": 0.22128869593143463,
+ "learning_rate": 0.0006,
+ "loss": 4.978368759155273,
+ "step": 472
+ },
+ {
+ "epoch": 6.573176059414592,
+ "grad_norm": 0.22638699412345886,
+ "learning_rate": 0.0006,
+ "loss": 4.944509029388428,
+ "step": 473
+ },
+ {
+ "epoch": 6.587155963302752,
+ "grad_norm": 0.20720207691192627,
+ "learning_rate": 0.0006,
+ "loss": 4.98404598236084,
+ "step": 474
+ },
+ {
+ "epoch": 6.601135867190913,
+ "grad_norm": 0.21577289700508118,
+ "learning_rate": 0.0006,
+ "loss": 4.958878040313721,
+ "step": 475
+ },
+ {
+ "epoch": 6.615115771079074,
+ "grad_norm": 0.22453972697257996,
+ "learning_rate": 0.0006,
+ "loss": 4.935467720031738,
+ "step": 476
+ },
+ {
+ "epoch": 6.6290956749672345,
+ "grad_norm": 0.20757712423801422,
+ "learning_rate": 0.0006,
+ "loss": 4.943334579467773,
+ "step": 477
+ },
+ {
+ "epoch": 6.643075578855395,
+ "grad_norm": 0.22808043658733368,
+ "learning_rate": 0.0006,
+ "loss": 4.936544418334961,
+ "step": 478
+ },
+ {
+ "epoch": 6.657055482743556,
+ "grad_norm": 0.2193756401538849,
+ "learning_rate": 0.0006,
+ "loss": 4.938162326812744,
+ "step": 479
+ },
+ {
+ "epoch": 6.671035386631717,
+ "grad_norm": 0.19677500426769257,
+ "learning_rate": 0.0006,
+ "loss": 4.9026713371276855,
+ "step": 480
+ },
+ {
+ "epoch": 6.685015290519877,
+ "grad_norm": 0.17271658778190613,
+ "learning_rate": 0.0006,
+ "loss": 4.912519454956055,
+ "step": 481
+ },
+ {
+ "epoch": 6.698995194408038,
+ "grad_norm": 0.17551499605178833,
+ "learning_rate": 0.0006,
+ "loss": 4.929941177368164,
+ "step": 482
+ },
+ {
+ "epoch": 6.712975098296199,
+ "grad_norm": 0.1582687348127365,
+ "learning_rate": 0.0006,
+ "loss": 4.908967971801758,
+ "step": 483
+ },
+ {
+ "epoch": 6.72695500218436,
+ "grad_norm": 0.1593410074710846,
+ "learning_rate": 0.0006,
+ "loss": 4.901554107666016,
+ "step": 484
+ },
+ {
+ "epoch": 6.740934906072521,
+ "grad_norm": 0.16746895015239716,
+ "learning_rate": 0.0006,
+ "loss": 4.917915344238281,
+ "step": 485
+ },
+ {
+ "epoch": 6.754914809960681,
+ "grad_norm": 0.17066062986850739,
+ "learning_rate": 0.0006,
+ "loss": 4.912853240966797,
+ "step": 486
+ },
+ {
+ "epoch": 6.768894713848843,
+ "grad_norm": 0.16727769374847412,
+ "learning_rate": 0.0006,
+ "loss": 4.895434856414795,
+ "step": 487
+ },
+ {
+ "epoch": 6.782874617737003,
+ "grad_norm": 0.1784558743238449,
+ "learning_rate": 0.0006,
+ "loss": 4.8805341720581055,
+ "step": 488
+ },
+ {
+ "epoch": 6.796854521625164,
+ "grad_norm": 0.176686093211174,
+ "learning_rate": 0.0006,
+ "loss": 4.855296611785889,
+ "step": 489
+ },
+ {
+ "epoch": 6.810834425513325,
+ "grad_norm": 0.21577849984169006,
+ "learning_rate": 0.0006,
+ "loss": 4.885506629943848,
+ "step": 490
+ },
+ {
+ "epoch": 6.824814329401486,
+ "grad_norm": 0.27615776658058167,
+ "learning_rate": 0.0006,
+ "loss": 4.913756847381592,
+ "step": 491
+ },
+ {
+ "epoch": 6.838794233289646,
+ "grad_norm": 0.3653675615787506,
+ "learning_rate": 0.0006,
+ "loss": 4.880918979644775,
+ "step": 492
+ },
+ {
+ "epoch": 6.852774137177807,
+ "grad_norm": 0.41473883390426636,
+ "learning_rate": 0.0006,
+ "loss": 4.894164562225342,
+ "step": 493
+ },
+ {
+ "epoch": 6.866754041065968,
+ "grad_norm": 0.45850715041160583,
+ "learning_rate": 0.0006,
+ "loss": 4.907922744750977,
+ "step": 494
+ },
+ {
+ "epoch": 6.8807339449541285,
+ "grad_norm": 0.4675290882587433,
+ "learning_rate": 0.0006,
+ "loss": 4.883112907409668,
+ "step": 495
+ },
+ {
+ "epoch": 6.894713848842289,
+ "grad_norm": 0.45795994997024536,
+ "learning_rate": 0.0006,
+ "loss": 4.897843360900879,
+ "step": 496
+ },
+ {
+ "epoch": 6.90869375273045,
+ "grad_norm": 0.46130508184432983,
+ "learning_rate": 0.0006,
+ "loss": 4.890612602233887,
+ "step": 497
+ },
+ {
+ "epoch": 6.922673656618611,
+ "grad_norm": 0.44783803820610046,
+ "learning_rate": 0.0006,
+ "loss": 4.880192756652832,
+ "step": 498
+ },
+ {
+ "epoch": 6.936653560506771,
+ "grad_norm": 0.35361284017562866,
+ "learning_rate": 0.0006,
+ "loss": 4.840778350830078,
+ "step": 499
+ },
+ {
+ "epoch": 6.950633464394932,
+ "grad_norm": 0.34027689695358276,
+ "learning_rate": 0.0006,
+ "loss": 4.871222496032715,
+ "step": 500
+ },
+ {
+ "epoch": 6.964613368283093,
+ "grad_norm": 0.30228909850120544,
+ "learning_rate": 0.0006,
+ "loss": 4.868077278137207,
+ "step": 501
+ },
+ {
+ "epoch": 6.978593272171254,
+ "grad_norm": 0.27706998586654663,
+ "learning_rate": 0.0006,
+ "loss": 4.895936012268066,
+ "step": 502
+ },
+ {
+ "epoch": 6.992573176059414,
+ "grad_norm": 0.3516870439052582,
+ "learning_rate": 0.0006,
+ "loss": 4.824636459350586,
+ "step": 503
+ },
+ {
+ "epoch": 7.0,
+ "grad_norm": 0.36831387877464294,
+ "learning_rate": 0.0006,
+ "loss": 4.874397277832031,
+ "step": 504
+ },
+ {
+ "epoch": 7.0,
+ "eval_loss": 5.176281452178955,
+ "eval_runtime": 44.2386,
+ "eval_samples_per_second": 55.201,
+ "eval_steps_per_second": 3.459,
+ "step": 504
+ },
+ {
+ "epoch": 7.013979903888161,
+ "grad_norm": 0.4265240430831909,
+ "learning_rate": 0.0006,
+ "loss": 4.814333438873291,
+ "step": 505
+ },
+ {
+ "epoch": 7.0279598077763215,
+ "grad_norm": 0.5126975774765015,
+ "learning_rate": 0.0006,
+ "loss": 4.852343559265137,
+ "step": 506
+ },
+ {
+ "epoch": 7.041939711664482,
+ "grad_norm": 0.43080806732177734,
+ "learning_rate": 0.0006,
+ "loss": 4.843439102172852,
+ "step": 507
+ },
+ {
+ "epoch": 7.055919615552643,
+ "grad_norm": 0.43170198798179626,
+ "learning_rate": 0.0006,
+ "loss": 4.845984935760498,
+ "step": 508
+ },
+ {
+ "epoch": 7.069899519440804,
+ "grad_norm": 0.5640552043914795,
+ "learning_rate": 0.0006,
+ "loss": 4.840991973876953,
+ "step": 509
+ },
+ {
+ "epoch": 7.083879423328964,
+ "grad_norm": 0.540381133556366,
+ "learning_rate": 0.0006,
+ "loss": 4.801316738128662,
+ "step": 510
+ },
+ {
+ "epoch": 7.097859327217125,
+ "grad_norm": 0.5412097573280334,
+ "learning_rate": 0.0006,
+ "loss": 4.886598587036133,
+ "step": 511
+ },
+ {
+ "epoch": 7.111839231105286,
+ "grad_norm": 0.630648136138916,
+ "learning_rate": 0.0006,
+ "loss": 4.849774360656738,
+ "step": 512
+ },
+ {
+ "epoch": 7.1258191349934465,
+ "grad_norm": 0.569952130317688,
+ "learning_rate": 0.0006,
+ "loss": 4.870607376098633,
+ "step": 513
+ },
+ {
+ "epoch": 7.139799038881607,
+ "grad_norm": 0.42051541805267334,
+ "learning_rate": 0.0006,
+ "loss": 4.83833122253418,
+ "step": 514
+ },
+ {
+ "epoch": 7.153778942769769,
+ "grad_norm": 0.3930990397930145,
+ "learning_rate": 0.0006,
+ "loss": 4.853984355926514,
+ "step": 515
+ },
+ {
+ "epoch": 7.16775884665793,
+ "grad_norm": 0.512886106967926,
+ "learning_rate": 0.0006,
+ "loss": 4.815458297729492,
+ "step": 516
+ },
+ {
+ "epoch": 7.18173875054609,
+ "grad_norm": 0.42580172419548035,
+ "learning_rate": 0.0006,
+ "loss": 4.825312614440918,
+ "step": 517
+ },
+ {
+ "epoch": 7.195718654434251,
+ "grad_norm": 0.31628182530403137,
+ "learning_rate": 0.0006,
+ "loss": 4.806377410888672,
+ "step": 518
+ },
+ {
+ "epoch": 7.209698558322412,
+ "grad_norm": 0.3109956681728363,
+ "learning_rate": 0.0006,
+ "loss": 4.819339752197266,
+ "step": 519
+ },
+ {
+ "epoch": 7.2236784622105725,
+ "grad_norm": 0.2740071415901184,
+ "learning_rate": 0.0006,
+ "loss": 4.81319522857666,
+ "step": 520
+ },
+ {
+ "epoch": 7.237658366098733,
+ "grad_norm": 0.26441165804862976,
+ "learning_rate": 0.0006,
+ "loss": 4.8107380867004395,
+ "step": 521
+ },
+ {
+ "epoch": 7.251638269986894,
+ "grad_norm": 0.2496110051870346,
+ "learning_rate": 0.0006,
+ "loss": 4.785193920135498,
+ "step": 522
+ },
+ {
+ "epoch": 7.265618173875055,
+ "grad_norm": 0.2565560042858124,
+ "learning_rate": 0.0006,
+ "loss": 4.802750587463379,
+ "step": 523
+ },
+ {
+ "epoch": 7.279598077763215,
+ "grad_norm": 0.2126980572938919,
+ "learning_rate": 0.0006,
+ "loss": 4.763580322265625,
+ "step": 524
+ },
+ {
+ "epoch": 7.293577981651376,
+ "grad_norm": 0.2169921100139618,
+ "learning_rate": 0.0006,
+ "loss": 4.756124973297119,
+ "step": 525
+ },
+ {
+ "epoch": 7.307557885539537,
+ "grad_norm": 0.2372167706489563,
+ "learning_rate": 0.0006,
+ "loss": 4.786888599395752,
+ "step": 526
+ },
+ {
+ "epoch": 7.321537789427698,
+ "grad_norm": 0.2124386429786682,
+ "learning_rate": 0.0006,
+ "loss": 4.777996063232422,
+ "step": 527
+ },
+ {
+ "epoch": 7.335517693315858,
+ "grad_norm": 0.18585442006587982,
+ "learning_rate": 0.0006,
+ "loss": 4.770537853240967,
+ "step": 528
+ },
+ {
+ "epoch": 7.349497597204019,
+ "grad_norm": 0.20515340566635132,
+ "learning_rate": 0.0006,
+ "loss": 4.769230842590332,
+ "step": 529
+ },
+ {
+ "epoch": 7.36347750109218,
+ "grad_norm": 0.19906704127788544,
+ "learning_rate": 0.0006,
+ "loss": 4.752581596374512,
+ "step": 530
+ },
+ {
+ "epoch": 7.3774574049803405,
+ "grad_norm": 0.2030428946018219,
+ "learning_rate": 0.0006,
+ "loss": 4.7353715896606445,
+ "step": 531
+ },
+ {
+ "epoch": 7.391437308868501,
+ "grad_norm": 0.17820630967617035,
+ "learning_rate": 0.0006,
+ "loss": 4.742705345153809,
+ "step": 532
+ },
+ {
+ "epoch": 7.405417212756662,
+ "grad_norm": 0.17642682790756226,
+ "learning_rate": 0.0006,
+ "loss": 4.752669334411621,
+ "step": 533
+ },
+ {
+ "epoch": 7.419397116644823,
+ "grad_norm": 0.18088409304618835,
+ "learning_rate": 0.0006,
+ "loss": 4.734611511230469,
+ "step": 534
+ },
+ {
+ "epoch": 7.433377020532983,
+ "grad_norm": 0.20897020399570465,
+ "learning_rate": 0.0006,
+ "loss": 4.756442070007324,
+ "step": 535
+ },
+ {
+ "epoch": 7.447356924421145,
+ "grad_norm": 0.23166777193546295,
+ "learning_rate": 0.0006,
+ "loss": 4.712922096252441,
+ "step": 536
+ },
+ {
+ "epoch": 7.461336828309306,
+ "grad_norm": 0.2205347716808319,
+ "learning_rate": 0.0006,
+ "loss": 4.75001335144043,
+ "step": 537
+ },
+ {
+ "epoch": 7.4753167321974665,
+ "grad_norm": 0.23868022859096527,
+ "learning_rate": 0.0006,
+ "loss": 4.726134300231934,
+ "step": 538
+ },
+ {
+ "epoch": 7.489296636085627,
+ "grad_norm": 0.2861441373825073,
+ "learning_rate": 0.0006,
+ "loss": 4.754112243652344,
+ "step": 539
+ },
+ {
+ "epoch": 7.503276539973788,
+ "grad_norm": 0.28980305790901184,
+ "learning_rate": 0.0006,
+ "loss": 4.716021537780762,
+ "step": 540
+ },
+ {
+ "epoch": 7.517256443861949,
+ "grad_norm": 0.2784835696220398,
+ "learning_rate": 0.0006,
+ "loss": 4.713929176330566,
+ "step": 541
+ },
+ {
+ "epoch": 7.531236347750109,
+ "grad_norm": 0.2962653934955597,
+ "learning_rate": 0.0006,
+ "loss": 4.711845397949219,
+ "step": 542
+ },
+ {
+ "epoch": 7.54521625163827,
+ "grad_norm": 0.3333161175251007,
+ "learning_rate": 0.0006,
+ "loss": 4.709834575653076,
+ "step": 543
+ },
+ {
+ "epoch": 7.559196155526431,
+ "grad_norm": 0.35304850339889526,
+ "learning_rate": 0.0006,
+ "loss": 4.732914924621582,
+ "step": 544
+ },
+ {
+ "epoch": 7.573176059414592,
+ "grad_norm": 0.4165869355201721,
+ "learning_rate": 0.0006,
+ "loss": 4.716190338134766,
+ "step": 545
+ },
+ {
+ "epoch": 7.587155963302752,
+ "grad_norm": 0.4878059923648834,
+ "learning_rate": 0.0006,
+ "loss": 4.723773002624512,
+ "step": 546
+ },
+ {
+ "epoch": 7.601135867190913,
+ "grad_norm": 0.36643707752227783,
+ "learning_rate": 0.0006,
+ "loss": 4.721458911895752,
+ "step": 547
+ },
+ {
+ "epoch": 7.615115771079074,
+ "grad_norm": 0.4046908915042877,
+ "learning_rate": 0.0006,
+ "loss": 4.715397834777832,
+ "step": 548
+ },
+ {
+ "epoch": 7.6290956749672345,
+ "grad_norm": 0.44426342844963074,
+ "learning_rate": 0.0006,
+ "loss": 4.737357139587402,
+ "step": 549
+ },
+ {
+ "epoch": 7.643075578855395,
+ "grad_norm": 0.4181079864501953,
+ "learning_rate": 0.0006,
+ "loss": 4.731383800506592,
+ "step": 550
+ },
+ {
+ "epoch": 7.657055482743556,
+ "grad_norm": 0.3486088216304779,
+ "learning_rate": 0.0006,
+ "loss": 4.728029727935791,
+ "step": 551
+ },
+ {
+ "epoch": 7.671035386631717,
+ "grad_norm": 0.37150970101356506,
+ "learning_rate": 0.0006,
+ "loss": 4.7083210945129395,
+ "step": 552
+ },
+ {
+ "epoch": 7.685015290519877,
+ "grad_norm": 0.43324410915374756,
+ "learning_rate": 0.0006,
+ "loss": 4.728720664978027,
+ "step": 553
+ },
+ {
+ "epoch": 7.698995194408038,
+ "grad_norm": 0.5026620626449585,
+ "learning_rate": 0.0006,
+ "loss": 4.698156356811523,
+ "step": 554
+ },
+ {
+ "epoch": 7.712975098296199,
+ "grad_norm": 0.4873499274253845,
+ "learning_rate": 0.0006,
+ "loss": 4.7169952392578125,
+ "step": 555
+ },
+ {
+ "epoch": 7.72695500218436,
+ "grad_norm": 0.4285493791103363,
+ "learning_rate": 0.0006,
+ "loss": 4.6877241134643555,
+ "step": 556
+ },
+ {
+ "epoch": 7.740934906072521,
+ "grad_norm": 0.5179854035377502,
+ "learning_rate": 0.0006,
+ "loss": 4.704267501831055,
+ "step": 557
+ },
+ {
+ "epoch": 7.754914809960681,
+ "grad_norm": 0.4642147421836853,
+ "learning_rate": 0.0006,
+ "loss": 4.695004463195801,
+ "step": 558
+ },
+ {
+ "epoch": 7.768894713848843,
+ "grad_norm": 0.47149503231048584,
+ "learning_rate": 0.0006,
+ "loss": 4.694338798522949,
+ "step": 559
+ },
+ {
+ "epoch": 7.782874617737003,
+ "grad_norm": 0.5422149300575256,
+ "learning_rate": 0.0006,
+ "loss": 4.749478340148926,
+ "step": 560
+ },
+ {
+ "epoch": 7.796854521625164,
+ "grad_norm": 0.4360728859901428,
+ "learning_rate": 0.0006,
+ "loss": 4.685191631317139,
+ "step": 561
+ },
+ {
+ "epoch": 7.810834425513325,
+ "grad_norm": 0.4243801534175873,
+ "learning_rate": 0.0006,
+ "loss": 4.69228458404541,
+ "step": 562
+ },
+ {
+ "epoch": 7.824814329401486,
+ "grad_norm": 0.40380290150642395,
+ "learning_rate": 0.0006,
+ "loss": 4.690923690795898,
+ "step": 563
+ },
+ {
+ "epoch": 7.838794233289646,
+ "grad_norm": 0.4352976381778717,
+ "learning_rate": 0.0006,
+ "loss": 4.720489978790283,
+ "step": 564
+ },
+ {
+ "epoch": 7.852774137177807,
+ "grad_norm": 0.44634920358657837,
+ "learning_rate": 0.0006,
+ "loss": 4.683789253234863,
+ "step": 565
+ },
+ {
+ "epoch": 7.866754041065968,
+ "grad_norm": 0.3818186819553375,
+ "learning_rate": 0.0006,
+ "loss": 4.696887016296387,
+ "step": 566
+ },
+ {
+ "epoch": 7.8807339449541285,
+ "grad_norm": 0.35270464420318604,
+ "learning_rate": 0.0006,
+ "loss": 4.715676307678223,
+ "step": 567
+ },
+ {
+ "epoch": 7.894713848842289,
+ "grad_norm": 0.249756321310997,
+ "learning_rate": 0.0006,
+ "loss": 4.672721862792969,
+ "step": 568
+ },
+ {
+ "epoch": 7.90869375273045,
+ "grad_norm": 0.25097888708114624,
+ "learning_rate": 0.0006,
+ "loss": 4.663518905639648,
+ "step": 569
+ },
+ {
+ "epoch": 7.922673656618611,
+ "grad_norm": 0.26563209295272827,
+ "learning_rate": 0.0006,
+ "loss": 4.675405025482178,
+ "step": 570
+ },
+ {
+ "epoch": 7.936653560506771,
+ "grad_norm": 0.26451292634010315,
+ "learning_rate": 0.0006,
+ "loss": 4.651235103607178,
+ "step": 571
+ },
+ {
+ "epoch": 7.950633464394932,
+ "grad_norm": 0.24185842275619507,
+ "learning_rate": 0.0006,
+ "loss": 4.671639919281006,
+ "step": 572
+ },
+ {
+ "epoch": 7.964613368283093,
+ "grad_norm": 0.21506108343601227,
+ "learning_rate": 0.0006,
+ "loss": 4.665352821350098,
+ "step": 573
+ },
+ {
+ "epoch": 7.978593272171254,
+ "grad_norm": 0.24365705251693726,
+ "learning_rate": 0.0006,
+ "loss": 4.663162708282471,
+ "step": 574
+ },
+ {
+ "epoch": 7.992573176059414,
+ "grad_norm": 0.24251042306423187,
+ "learning_rate": 0.0006,
+ "loss": 4.666633605957031,
+ "step": 575
+ },
+ {
+ "epoch": 8.0,
+ "grad_norm": 0.24187657237052917,
+ "learning_rate": 0.0006,
+ "loss": 4.63957405090332,
+ "step": 576
+ },
+ {
+ "epoch": 8.0,
+ "eval_loss": 4.923156261444092,
+ "eval_runtime": 44.1587,
+ "eval_samples_per_second": 55.301,
+ "eval_steps_per_second": 3.465,
+ "step": 576
+ },
+ {
+ "epoch": 8.013979903888162,
+ "grad_norm": 0.21323645114898682,
+ "learning_rate": 0.0006,
+ "loss": 4.636347770690918,
+ "step": 577
+ },
+ {
+ "epoch": 8.027959807776321,
+ "grad_norm": 0.2325759083032608,
+ "learning_rate": 0.0006,
+ "loss": 4.60684871673584,
+ "step": 578
+ },
+ {
+ "epoch": 8.041939711664483,
+ "grad_norm": 0.26741257309913635,
+ "learning_rate": 0.0006,
+ "loss": 4.647780418395996,
+ "step": 579
+ },
+ {
+ "epoch": 8.055919615552643,
+ "grad_norm": 0.285720556974411,
+ "learning_rate": 0.0006,
+ "loss": 4.629637718200684,
+ "step": 580
+ },
+ {
+ "epoch": 8.069899519440805,
+ "grad_norm": 0.2453618347644806,
+ "learning_rate": 0.0006,
+ "loss": 4.62420654296875,
+ "step": 581
+ },
+ {
+ "epoch": 8.083879423328964,
+ "grad_norm": 0.19662636518478394,
+ "learning_rate": 0.0006,
+ "loss": 4.593767166137695,
+ "step": 582
+ },
+ {
+ "epoch": 8.097859327217126,
+ "grad_norm": 0.22731931507587433,
+ "learning_rate": 0.0006,
+ "loss": 4.627089023590088,
+ "step": 583
+ },
+ {
+ "epoch": 8.111839231105286,
+ "grad_norm": 0.24452590942382812,
+ "learning_rate": 0.0006,
+ "loss": 4.613677024841309,
+ "step": 584
+ },
+ {
+ "epoch": 8.125819134993447,
+ "grad_norm": 0.2952791154384613,
+ "learning_rate": 0.0006,
+ "loss": 4.604985237121582,
+ "step": 585
+ },
+ {
+ "epoch": 8.139799038881607,
+ "grad_norm": 0.3184696137905121,
+ "learning_rate": 0.0006,
+ "loss": 4.589205741882324,
+ "step": 586
+ },
+ {
+ "epoch": 8.153778942769769,
+ "grad_norm": 0.2948093116283417,
+ "learning_rate": 0.0006,
+ "loss": 4.605442047119141,
+ "step": 587
+ },
+ {
+ "epoch": 8.167758846657929,
+ "grad_norm": 0.2450508326292038,
+ "learning_rate": 0.0006,
+ "loss": 4.615349292755127,
+ "step": 588
+ },
+ {
+ "epoch": 8.18173875054609,
+ "grad_norm": 0.25664836168289185,
+ "learning_rate": 0.0006,
+ "loss": 4.592251777648926,
+ "step": 589
+ },
+ {
+ "epoch": 8.19571865443425,
+ "grad_norm": 0.24479512870311737,
+ "learning_rate": 0.0006,
+ "loss": 4.6145920753479,
+ "step": 590
+ },
+ {
+ "epoch": 8.209698558322412,
+ "grad_norm": 0.24395205080509186,
+ "learning_rate": 0.0006,
+ "loss": 4.600954055786133,
+ "step": 591
+ },
+ {
+ "epoch": 8.223678462210572,
+ "grad_norm": 0.21804189682006836,
+ "learning_rate": 0.0006,
+ "loss": 4.607785224914551,
+ "step": 592
+ },
+ {
+ "epoch": 8.237658366098733,
+ "grad_norm": 0.20951785147190094,
+ "learning_rate": 0.0006,
+ "loss": 4.58140754699707,
+ "step": 593
+ },
+ {
+ "epoch": 8.251638269986893,
+ "grad_norm": 0.20415149629116058,
+ "learning_rate": 0.0006,
+ "loss": 4.593405723571777,
+ "step": 594
+ },
+ {
+ "epoch": 8.265618173875055,
+ "grad_norm": 0.19210249185562134,
+ "learning_rate": 0.0006,
+ "loss": 4.603294372558594,
+ "step": 595
+ },
+ {
+ "epoch": 8.279598077763215,
+ "grad_norm": 0.20719751715660095,
+ "learning_rate": 0.0006,
+ "loss": 4.55255651473999,
+ "step": 596
+ },
+ {
+ "epoch": 8.293577981651376,
+ "grad_norm": 0.20101022720336914,
+ "learning_rate": 0.0006,
+ "loss": 4.5928192138671875,
+ "step": 597
+ },
+ {
+ "epoch": 8.307557885539538,
+ "grad_norm": 0.19254222512245178,
+ "learning_rate": 0.0006,
+ "loss": 4.590397834777832,
+ "step": 598
+ },
+ {
+ "epoch": 8.321537789427698,
+ "grad_norm": 0.23234105110168457,
+ "learning_rate": 0.0006,
+ "loss": 4.5987677574157715,
+ "step": 599
+ },
+ {
+ "epoch": 8.33551769331586,
+ "grad_norm": 0.2537451982498169,
+ "learning_rate": 0.0006,
+ "loss": 4.543115615844727,
+ "step": 600
+ },
+ {
+ "epoch": 8.349497597204019,
+ "grad_norm": 0.29171040654182434,
+ "learning_rate": 0.0006,
+ "loss": 4.597387313842773,
+ "step": 601
+ },
+ {
+ "epoch": 8.36347750109218,
+ "grad_norm": 0.3035930097103119,
+ "learning_rate": 0.0006,
+ "loss": 4.566247463226318,
+ "step": 602
+ },
+ {
+ "epoch": 8.37745740498034,
+ "grad_norm": 0.2826756238937378,
+ "learning_rate": 0.0006,
+ "loss": 4.57047176361084,
+ "step": 603
+ },
+ {
+ "epoch": 8.391437308868502,
+ "grad_norm": 0.2959657609462738,
+ "learning_rate": 0.0006,
+ "loss": 4.582820892333984,
+ "step": 604
+ },
+ {
+ "epoch": 8.405417212756662,
+ "grad_norm": 0.3180356025695801,
+ "learning_rate": 0.0006,
+ "loss": 4.5573272705078125,
+ "step": 605
+ },
+ {
+ "epoch": 8.419397116644824,
+ "grad_norm": 0.3617221713066101,
+ "learning_rate": 0.0006,
+ "loss": 4.593079090118408,
+ "step": 606
+ },
+ {
+ "epoch": 8.433377020532983,
+ "grad_norm": 0.35198062658309937,
+ "learning_rate": 0.0006,
+ "loss": 4.615298271179199,
+ "step": 607
+ },
+ {
+ "epoch": 8.447356924421145,
+ "grad_norm": 0.3944903314113617,
+ "learning_rate": 0.0006,
+ "loss": 4.561809539794922,
+ "step": 608
+ },
+ {
+ "epoch": 8.461336828309305,
+ "grad_norm": 0.4525868594646454,
+ "learning_rate": 0.0006,
+ "loss": 4.613105773925781,
+ "step": 609
+ },
+ {
+ "epoch": 8.475316732197467,
+ "grad_norm": 0.4915139079093933,
+ "learning_rate": 0.0006,
+ "loss": 4.566202163696289,
+ "step": 610
+ },
+ {
+ "epoch": 8.489296636085626,
+ "grad_norm": 0.49231988191604614,
+ "learning_rate": 0.0006,
+ "loss": 4.556222915649414,
+ "step": 611
+ },
+ {
+ "epoch": 8.503276539973788,
+ "grad_norm": 0.43036946654319763,
+ "learning_rate": 0.0006,
+ "loss": 4.55517578125,
+ "step": 612
+ },
+ {
+ "epoch": 8.517256443861948,
+ "grad_norm": 0.42405328154563904,
+ "learning_rate": 0.0006,
+ "loss": 4.574039936065674,
+ "step": 613
+ },
+ {
+ "epoch": 8.53123634775011,
+ "grad_norm": 0.3955961763858795,
+ "learning_rate": 0.0006,
+ "loss": 4.6082611083984375,
+ "step": 614
+ },
+ {
+ "epoch": 8.54521625163827,
+ "grad_norm": 0.4377101957798004,
+ "learning_rate": 0.0006,
+ "loss": 4.555740833282471,
+ "step": 615
+ },
+ {
+ "epoch": 8.55919615552643,
+ "grad_norm": 0.4601984918117523,
+ "learning_rate": 0.0006,
+ "loss": 4.553995132446289,
+ "step": 616
+ },
+ {
+ "epoch": 8.57317605941459,
+ "grad_norm": 0.42025700211524963,
+ "learning_rate": 0.0006,
+ "loss": 4.567340850830078,
+ "step": 617
+ },
+ {
+ "epoch": 8.587155963302752,
+ "grad_norm": 0.35569432377815247,
+ "learning_rate": 0.0006,
+ "loss": 4.570140361785889,
+ "step": 618
+ },
+ {
+ "epoch": 8.601135867190912,
+ "grad_norm": 0.37940406799316406,
+ "learning_rate": 0.0006,
+ "loss": 4.581291198730469,
+ "step": 619
+ },
+ {
+ "epoch": 8.615115771079074,
+ "grad_norm": 0.3658490777015686,
+ "learning_rate": 0.0006,
+ "loss": 4.55476188659668,
+ "step": 620
+ },
+ {
+ "epoch": 8.629095674967235,
+ "grad_norm": 0.2908247113227844,
+ "learning_rate": 0.0006,
+ "loss": 4.564087867736816,
+ "step": 621
+ },
+ {
+ "epoch": 8.643075578855395,
+ "grad_norm": 0.29961925745010376,
+ "learning_rate": 0.0006,
+ "loss": 4.556543350219727,
+ "step": 622
+ },
+ {
+ "epoch": 8.657055482743557,
+ "grad_norm": 0.3144846558570862,
+ "learning_rate": 0.0006,
+ "loss": 4.553670883178711,
+ "step": 623
+ },
+ {
+ "epoch": 8.671035386631717,
+ "grad_norm": 0.2845900356769562,
+ "learning_rate": 0.0006,
+ "loss": 4.567296981811523,
+ "step": 624
+ },
+ {
+ "epoch": 8.685015290519878,
+ "grad_norm": 0.253591388463974,
+ "learning_rate": 0.0006,
+ "loss": 4.554507255554199,
+ "step": 625
+ },
+ {
+ "epoch": 8.698995194408038,
+ "grad_norm": 0.2563088536262512,
+ "learning_rate": 0.0006,
+ "loss": 4.542218208312988,
+ "step": 626
+ },
+ {
+ "epoch": 8.7129750982962,
+ "grad_norm": 0.26058217883110046,
+ "learning_rate": 0.0006,
+ "loss": 4.535512447357178,
+ "step": 627
+ },
+ {
+ "epoch": 8.72695500218436,
+ "grad_norm": 0.20749829709529877,
+ "learning_rate": 0.0006,
+ "loss": 4.516959190368652,
+ "step": 628
+ },
+ {
+ "epoch": 8.740934906072521,
+ "grad_norm": 0.2034810334444046,
+ "learning_rate": 0.0006,
+ "loss": 4.55794095993042,
+ "step": 629
+ },
+ {
+ "epoch": 8.754914809960681,
+ "grad_norm": 0.18418121337890625,
+ "learning_rate": 0.0006,
+ "loss": 4.5421247482299805,
+ "step": 630
+ },
+ {
+ "epoch": 8.768894713848843,
+ "grad_norm": 0.20551933348178864,
+ "learning_rate": 0.0006,
+ "loss": 4.50805139541626,
+ "step": 631
+ },
+ {
+ "epoch": 8.782874617737003,
+ "grad_norm": 0.21615999937057495,
+ "learning_rate": 0.0006,
+ "loss": 4.520708084106445,
+ "step": 632
+ },
+ {
+ "epoch": 8.796854521625164,
+ "grad_norm": 0.24864810705184937,
+ "learning_rate": 0.0006,
+ "loss": 4.509330749511719,
+ "step": 633
+ },
+ {
+ "epoch": 8.810834425513324,
+ "grad_norm": 0.2573665380477905,
+ "learning_rate": 0.0006,
+ "loss": 4.531505584716797,
+ "step": 634
+ },
+ {
+ "epoch": 8.824814329401486,
+ "grad_norm": 0.22452878952026367,
+ "learning_rate": 0.0006,
+ "loss": 4.529216289520264,
+ "step": 635
+ },
+ {
+ "epoch": 8.838794233289645,
+ "grad_norm": 0.19727355241775513,
+ "learning_rate": 0.0006,
+ "loss": 4.519906520843506,
+ "step": 636
+ },
+ {
+ "epoch": 8.852774137177807,
+ "grad_norm": 0.19937913119792938,
+ "learning_rate": 0.0006,
+ "loss": 4.536892414093018,
+ "step": 637
+ },
+ {
+ "epoch": 8.866754041065967,
+ "grad_norm": 0.2070389986038208,
+ "learning_rate": 0.0006,
+ "loss": 4.51191520690918,
+ "step": 638
+ },
+ {
+ "epoch": 8.880733944954128,
+ "grad_norm": 0.2293873429298401,
+ "learning_rate": 0.0006,
+ "loss": 4.505377769470215,
+ "step": 639
+ },
+ {
+ "epoch": 8.89471384884229,
+ "grad_norm": 0.21285250782966614,
+ "learning_rate": 0.0006,
+ "loss": 4.5138959884643555,
+ "step": 640
+ },
+ {
+ "epoch": 8.90869375273045,
+ "grad_norm": 0.19487562775611877,
+ "learning_rate": 0.0006,
+ "loss": 4.506108283996582,
+ "step": 641
+ },
+ {
+ "epoch": 8.922673656618612,
+ "grad_norm": 0.21986965835094452,
+ "learning_rate": 0.0006,
+ "loss": 4.506397247314453,
+ "step": 642
+ },
+ {
+ "epoch": 8.936653560506771,
+ "grad_norm": 0.20763885974884033,
+ "learning_rate": 0.0006,
+ "loss": 4.508007049560547,
+ "step": 643
+ },
+ {
+ "epoch": 8.950633464394933,
+ "grad_norm": 0.22858479619026184,
+ "learning_rate": 0.0006,
+ "loss": 4.520846366882324,
+ "step": 644
+ },
+ {
+ "epoch": 8.964613368283093,
+ "grad_norm": 0.23923712968826294,
+ "learning_rate": 0.0006,
+ "loss": 4.535306930541992,
+ "step": 645
+ },
+ {
+ "epoch": 8.978593272171254,
+ "grad_norm": 0.23717579245567322,
+ "learning_rate": 0.0006,
+ "loss": 4.485929489135742,
+ "step": 646
+ },
+ {
+ "epoch": 8.992573176059414,
+ "grad_norm": 0.24033977091312408,
+ "learning_rate": 0.0006,
+ "loss": 4.508999824523926,
+ "step": 647
+ },
+ {
+ "epoch": 9.0,
+ "grad_norm": 0.22432062029838562,
+ "learning_rate": 0.0006,
+ "loss": 4.473136901855469,
+ "step": 648
+ },
+ {
+ "epoch": 9.0,
+ "eval_loss": 4.735903263092041,
+ "eval_runtime": 44.2163,
+ "eval_samples_per_second": 55.228,
+ "eval_steps_per_second": 3.46,
+ "step": 648
+ },
+ {
+ "epoch": 9.013979903888162,
+ "grad_norm": 0.22491489350795746,
+ "learning_rate": 0.0006,
+ "loss": 4.468614101409912,
+ "step": 649
+ },
+ {
+ "epoch": 9.027959807776321,
+ "grad_norm": 0.255759060382843,
+ "learning_rate": 0.0006,
+ "loss": 4.516196250915527,
+ "step": 650
+ },
+ {
+ "epoch": 9.041939711664483,
+ "grad_norm": 0.2591100335121155,
+ "learning_rate": 0.0006,
+ "loss": 4.478276252746582,
+ "step": 651
+ },
+ {
+ "epoch": 9.055919615552643,
+ "grad_norm": 0.30472296476364136,
+ "learning_rate": 0.0006,
+ "loss": 4.479726791381836,
+ "step": 652
+ },
+ {
+ "epoch": 9.069899519440805,
+ "grad_norm": 0.2840559780597687,
+ "learning_rate": 0.0006,
+ "loss": 4.4437384605407715,
+ "step": 653
+ },
+ {
+ "epoch": 9.083879423328964,
+ "grad_norm": 0.2695577144622803,
+ "learning_rate": 0.0006,
+ "loss": 4.476065635681152,
+ "step": 654
+ },
+ {
+ "epoch": 9.097859327217126,
+ "grad_norm": 0.27912381291389465,
+ "learning_rate": 0.0006,
+ "loss": 4.484747409820557,
+ "step": 655
+ },
+ {
+ "epoch": 9.111839231105286,
+ "grad_norm": 0.3091907501220703,
+ "learning_rate": 0.0006,
+ "loss": 4.449443817138672,
+ "step": 656
+ },
+ {
+ "epoch": 9.125819134993447,
+ "grad_norm": 0.30756646394729614,
+ "learning_rate": 0.0006,
+ "loss": 4.496490001678467,
+ "step": 657
+ },
+ {
+ "epoch": 9.139799038881607,
+ "grad_norm": 0.305698037147522,
+ "learning_rate": 0.0006,
+ "loss": 4.466765880584717,
+ "step": 658
+ },
+ {
+ "epoch": 9.153778942769769,
+ "grad_norm": 0.3031201660633087,
+ "learning_rate": 0.0006,
+ "loss": 4.462430953979492,
+ "step": 659
+ },
+ {
+ "epoch": 9.167758846657929,
+ "grad_norm": 0.32725608348846436,
+ "learning_rate": 0.0006,
+ "loss": 4.479879379272461,
+ "step": 660
+ },
+ {
+ "epoch": 9.18173875054609,
+ "grad_norm": 0.31773585081100464,
+ "learning_rate": 0.0006,
+ "loss": 4.473912239074707,
+ "step": 661
+ },
+ {
+ "epoch": 9.19571865443425,
+ "grad_norm": 0.30025365948677063,
+ "learning_rate": 0.0006,
+ "loss": 4.476703643798828,
+ "step": 662
+ },
+ {
+ "epoch": 9.209698558322412,
+ "grad_norm": 0.3177371025085449,
+ "learning_rate": 0.0006,
+ "loss": 4.439765930175781,
+ "step": 663
+ },
+ {
+ "epoch": 9.223678462210572,
+ "grad_norm": 0.3060745894908905,
+ "learning_rate": 0.0006,
+ "loss": 4.487849235534668,
+ "step": 664
+ },
+ {
+ "epoch": 9.237658366098733,
+ "grad_norm": 0.33287373185157776,
+ "learning_rate": 0.0006,
+ "loss": 4.443496227264404,
+ "step": 665
+ },
+ {
+ "epoch": 9.251638269986893,
+ "grad_norm": 0.3758000433444977,
+ "learning_rate": 0.0006,
+ "loss": 4.478017330169678,
+ "step": 666
+ },
+ {
+ "epoch": 9.265618173875055,
+ "grad_norm": 0.32124510407447815,
+ "learning_rate": 0.0006,
+ "loss": 4.4092206954956055,
+ "step": 667
+ },
+ {
+ "epoch": 9.279598077763215,
+ "grad_norm": 0.2786794602870941,
+ "learning_rate": 0.0006,
+ "loss": 4.432734489440918,
+ "step": 668
+ },
+ {
+ "epoch": 9.293577981651376,
+ "grad_norm": 0.35042962431907654,
+ "learning_rate": 0.0006,
+ "loss": 4.462737083435059,
+ "step": 669
+ },
+ {
+ "epoch": 9.307557885539538,
+ "grad_norm": 0.4080469310283661,
+ "learning_rate": 0.0006,
+ "loss": 4.429462432861328,
+ "step": 670
+ },
+ {
+ "epoch": 9.321537789427698,
+ "grad_norm": 0.465158075094223,
+ "learning_rate": 0.0006,
+ "loss": 4.465776443481445,
+ "step": 671
+ },
+ {
+ "epoch": 9.33551769331586,
+ "grad_norm": 0.44833582639694214,
+ "learning_rate": 0.0006,
+ "loss": 4.454195976257324,
+ "step": 672
+ },
+ {
+ "epoch": 9.349497597204019,
+ "grad_norm": 0.451052188873291,
+ "learning_rate": 0.0006,
+ "loss": 4.456139087677002,
+ "step": 673
+ },
+ {
+ "epoch": 9.36347750109218,
+ "grad_norm": 0.3759656250476837,
+ "learning_rate": 0.0006,
+ "loss": 4.461119651794434,
+ "step": 674
+ },
+ {
+ "epoch": 9.37745740498034,
+ "grad_norm": 0.514560341835022,
+ "learning_rate": 0.0006,
+ "loss": 4.49595832824707,
+ "step": 675
+ },
+ {
+ "epoch": 9.391437308868502,
+ "grad_norm": 0.5650647282600403,
+ "learning_rate": 0.0006,
+ "loss": 4.461362838745117,
+ "step": 676
+ },
+ {
+ "epoch": 9.405417212756662,
+ "grad_norm": 0.4218835234642029,
+ "learning_rate": 0.0006,
+ "loss": 4.469146728515625,
+ "step": 677
+ },
+ {
+ "epoch": 9.419397116644824,
+ "grad_norm": 0.4169512689113617,
+ "learning_rate": 0.0006,
+ "loss": 4.470132827758789,
+ "step": 678
+ },
+ {
+ "epoch": 9.433377020532983,
+ "grad_norm": 0.3772219717502594,
+ "learning_rate": 0.0006,
+ "loss": 4.4742608070373535,
+ "step": 679
+ },
+ {
+ "epoch": 9.447356924421145,
+ "grad_norm": 0.35755908489227295,
+ "learning_rate": 0.0006,
+ "loss": 4.461928367614746,
+ "step": 680
+ },
+ {
+ "epoch": 9.461336828309305,
+ "grad_norm": 0.3141227662563324,
+ "learning_rate": 0.0006,
+ "loss": 4.491983413696289,
+ "step": 681
+ },
+ {
+ "epoch": 9.475316732197467,
+ "grad_norm": 0.282461017370224,
+ "learning_rate": 0.0006,
+ "loss": 4.460200309753418,
+ "step": 682
+ },
+ {
+ "epoch": 9.489296636085626,
+ "grad_norm": 0.27174389362335205,
+ "learning_rate": 0.0006,
+ "loss": 4.416125297546387,
+ "step": 683
+ },
+ {
+ "epoch": 9.503276539973788,
+ "grad_norm": 0.24570637941360474,
+ "learning_rate": 0.0006,
+ "loss": 4.4451093673706055,
+ "step": 684
+ },
+ {
+ "epoch": 9.517256443861948,
+ "grad_norm": 0.2741486132144928,
+ "learning_rate": 0.0006,
+ "loss": 4.453263282775879,
+ "step": 685
+ },
+ {
+ "epoch": 9.53123634775011,
+ "grad_norm": 0.24753718078136444,
+ "learning_rate": 0.0006,
+ "loss": 4.483033180236816,
+ "step": 686
+ },
+ {
+ "epoch": 9.54521625163827,
+ "grad_norm": 0.24288412928581238,
+ "learning_rate": 0.0006,
+ "loss": 4.452961444854736,
+ "step": 687
+ },
+ {
+ "epoch": 9.55919615552643,
+ "grad_norm": 0.21554753184318542,
+ "learning_rate": 0.0006,
+ "loss": 4.476005554199219,
+ "step": 688
+ },
+ {
+ "epoch": 9.57317605941459,
+ "grad_norm": 0.22775942087173462,
+ "learning_rate": 0.0006,
+ "loss": 4.4479193687438965,
+ "step": 689
+ },
+ {
+ "epoch": 9.587155963302752,
+ "grad_norm": 0.2610701024532318,
+ "learning_rate": 0.0006,
+ "loss": 4.474987506866455,
+ "step": 690
+ },
+ {
+ "epoch": 9.601135867190912,
+ "grad_norm": 0.2394690215587616,
+ "learning_rate": 0.0006,
+ "loss": 4.444857597351074,
+ "step": 691
+ },
+ {
+ "epoch": 9.615115771079074,
+ "grad_norm": 0.20868559181690216,
+ "learning_rate": 0.0006,
+ "loss": 4.4220709800720215,
+ "step": 692
+ },
+ {
+ "epoch": 9.629095674967235,
+ "grad_norm": 0.21869882941246033,
+ "learning_rate": 0.0006,
+ "loss": 4.451737403869629,
+ "step": 693
+ },
+ {
+ "epoch": 9.643075578855395,
+ "grad_norm": 0.1802823394536972,
+ "learning_rate": 0.0006,
+ "loss": 4.409085273742676,
+ "step": 694
+ },
+ {
+ "epoch": 9.657055482743557,
+ "grad_norm": 0.17046281695365906,
+ "learning_rate": 0.0006,
+ "loss": 4.424643516540527,
+ "step": 695
+ },
+ {
+ "epoch": 9.671035386631717,
+ "grad_norm": 0.19561922550201416,
+ "learning_rate": 0.0006,
+ "loss": 4.412302017211914,
+ "step": 696
+ },
+ {
+ "epoch": 9.685015290519878,
+ "grad_norm": 0.21928799152374268,
+ "learning_rate": 0.0006,
+ "loss": 4.427582263946533,
+ "step": 697
+ },
+ {
+ "epoch": 9.698995194408038,
+ "grad_norm": 0.244873046875,
+ "learning_rate": 0.0006,
+ "loss": 4.431827545166016,
+ "step": 698
+ },
+ {
+ "epoch": 9.7129750982962,
+ "grad_norm": 0.2799488604068756,
+ "learning_rate": 0.0006,
+ "loss": 4.407991409301758,
+ "step": 699
+ },
+ {
+ "epoch": 9.72695500218436,
+ "grad_norm": 0.2699538767337799,
+ "learning_rate": 0.0006,
+ "loss": 4.412313461303711,
+ "step": 700
+ },
+ {
+ "epoch": 9.740934906072521,
+ "grad_norm": 0.22293835878372192,
+ "learning_rate": 0.0006,
+ "loss": 4.423369884490967,
+ "step": 701
+ },
+ {
+ "epoch": 9.754914809960681,
+ "grad_norm": 0.21554361283779144,
+ "learning_rate": 0.0006,
+ "loss": 4.42026948928833,
+ "step": 702
+ },
+ {
+ "epoch": 9.768894713848843,
+ "grad_norm": 0.22135840356349945,
+ "learning_rate": 0.0006,
+ "loss": 4.400010108947754,
+ "step": 703
+ },
+ {
+ "epoch": 9.782874617737003,
+ "grad_norm": 0.2169952541589737,
+ "learning_rate": 0.0006,
+ "loss": 4.394582271575928,
+ "step": 704
+ },
+ {
+ "epoch": 9.796854521625164,
+ "grad_norm": 0.18913042545318604,
+ "learning_rate": 0.0006,
+ "loss": 4.395880699157715,
+ "step": 705
+ },
+ {
+ "epoch": 9.810834425513324,
+ "grad_norm": 0.191524475812912,
+ "learning_rate": 0.0006,
+ "loss": 4.378962516784668,
+ "step": 706
+ },
+ {
+ "epoch": 9.824814329401486,
+ "grad_norm": 0.20057640969753265,
+ "learning_rate": 0.0006,
+ "loss": 4.431066513061523,
+ "step": 707
+ },
+ {
+ "epoch": 9.838794233289645,
+ "grad_norm": 0.21670377254486084,
+ "learning_rate": 0.0006,
+ "loss": 4.364682197570801,
+ "step": 708
+ },
+ {
+ "epoch": 9.852774137177807,
+ "grad_norm": 0.21653099358081818,
+ "learning_rate": 0.0006,
+ "loss": 4.4050445556640625,
+ "step": 709
+ },
+ {
+ "epoch": 9.866754041065967,
+ "grad_norm": 0.2217673808336258,
+ "learning_rate": 0.0006,
+ "loss": 4.423664093017578,
+ "step": 710
+ },
+ {
+ "epoch": 9.880733944954128,
+ "grad_norm": 0.251078337430954,
+ "learning_rate": 0.0006,
+ "loss": 4.405768394470215,
+ "step": 711
+ },
+ {
+ "epoch": 9.89471384884229,
+ "grad_norm": 0.28962627053260803,
+ "learning_rate": 0.0006,
+ "loss": 4.421207427978516,
+ "step": 712
+ },
+ {
+ "epoch": 9.90869375273045,
+ "grad_norm": 0.3478074371814728,
+ "learning_rate": 0.0006,
+ "loss": 4.414942741394043,
+ "step": 713
+ },
+ {
+ "epoch": 9.922673656618612,
+ "grad_norm": 0.40396368503570557,
+ "learning_rate": 0.0006,
+ "loss": 4.415163993835449,
+ "step": 714
+ },
+ {
+ "epoch": 9.936653560506771,
+ "grad_norm": 0.3689858019351959,
+ "learning_rate": 0.0006,
+ "loss": 4.381345272064209,
+ "step": 715
+ },
+ {
+ "epoch": 9.950633464394933,
+ "grad_norm": 0.344868004322052,
+ "learning_rate": 0.0006,
+ "loss": 4.433088302612305,
+ "step": 716
+ },
+ {
+ "epoch": 9.964613368283093,
+ "grad_norm": 0.37976378202438354,
+ "learning_rate": 0.0006,
+ "loss": 4.431371212005615,
+ "step": 717
+ },
+ {
+ "epoch": 9.978593272171254,
+ "grad_norm": 0.4354130029678345,
+ "learning_rate": 0.0006,
+ "loss": 4.434148788452148,
+ "step": 718
+ },
+ {
+ "epoch": 9.992573176059414,
+ "grad_norm": 0.35859373211860657,
+ "learning_rate": 0.0006,
+ "loss": 4.428055763244629,
+ "step": 719
+ },
+ {
+ "epoch": 10.0,
+ "grad_norm": 0.3365023732185364,
+ "learning_rate": 0.0006,
+ "loss": 4.3888654708862305,
+ "step": 720
+ },
+ {
+ "epoch": 10.0,
+ "eval_loss": 4.638620853424072,
+ "eval_runtime": 44.3054,
+ "eval_samples_per_second": 55.117,
+ "eval_steps_per_second": 3.453,
+ "step": 720
+ },
+ {
+ "epoch": 10.013979903888162,
+ "grad_norm": 0.3267960250377655,
+ "learning_rate": 0.0006,
+ "loss": 4.386068344116211,
+ "step": 721
+ },
+ {
+ "epoch": 10.027959807776321,
+ "grad_norm": 0.33440953493118286,
+ "learning_rate": 0.0006,
+ "loss": 4.397515296936035,
+ "step": 722
+ },
+ {
+ "epoch": 10.041939711664483,
+ "grad_norm": 0.30047518014907837,
+ "learning_rate": 0.0006,
+ "loss": 4.398358345031738,
+ "step": 723
+ },
+ {
+ "epoch": 10.055919615552643,
+ "grad_norm": 0.2912217378616333,
+ "learning_rate": 0.0006,
+ "loss": 4.341166973114014,
+ "step": 724
+ },
+ {
+ "epoch": 10.069899519440805,
+ "grad_norm": 0.3199564218521118,
+ "learning_rate": 0.0006,
+ "loss": 4.388717174530029,
+ "step": 725
+ },
+ {
+ "epoch": 10.083879423328964,
+ "grad_norm": 0.2765582799911499,
+ "learning_rate": 0.0006,
+ "loss": 4.392992973327637,
+ "step": 726
+ },
+ {
+ "epoch": 10.097859327217126,
+ "grad_norm": 0.27138450741767883,
+ "learning_rate": 0.0006,
+ "loss": 4.382307529449463,
+ "step": 727
+ },
+ {
+ "epoch": 10.111839231105286,
+ "grad_norm": 0.29230645298957825,
+ "learning_rate": 0.0006,
+ "loss": 4.357486724853516,
+ "step": 728
+ },
+ {
+ "epoch": 10.125819134993447,
+ "grad_norm": 0.3127598464488983,
+ "learning_rate": 0.0006,
+ "loss": 4.39072322845459,
+ "step": 729
+ },
+ {
+ "epoch": 10.139799038881607,
+ "grad_norm": 0.3230913281440735,
+ "learning_rate": 0.0006,
+ "loss": 4.35037899017334,
+ "step": 730
+ },
+ {
+ "epoch": 10.153778942769769,
+ "grad_norm": 0.333675354719162,
+ "learning_rate": 0.0006,
+ "loss": 4.378030776977539,
+ "step": 731
+ },
+ {
+ "epoch": 10.167758846657929,
+ "grad_norm": 0.30325770378112793,
+ "learning_rate": 0.0006,
+ "loss": 4.372736930847168,
+ "step": 732
+ },
+ {
+ "epoch": 10.18173875054609,
+ "grad_norm": 0.2888163924217224,
+ "learning_rate": 0.0006,
+ "loss": 4.397604942321777,
+ "step": 733
+ },
+ {
+ "epoch": 10.19571865443425,
+ "grad_norm": 0.3378832936286926,
+ "learning_rate": 0.0006,
+ "loss": 4.395705223083496,
+ "step": 734
+ },
+ {
+ "epoch": 10.209698558322412,
+ "grad_norm": 0.30980268120765686,
+ "learning_rate": 0.0006,
+ "loss": 4.3861212730407715,
+ "step": 735
+ },
+ {
+ "epoch": 10.223678462210572,
+ "grad_norm": 0.2965783178806305,
+ "learning_rate": 0.0006,
+ "loss": 4.394898414611816,
+ "step": 736
+ },
+ {
+ "epoch": 10.237658366098733,
+ "grad_norm": 0.2818217873573303,
+ "learning_rate": 0.0006,
+ "loss": 4.36171817779541,
+ "step": 737
+ },
+ {
+ "epoch": 10.251638269986893,
+ "grad_norm": 0.2418123185634613,
+ "learning_rate": 0.0006,
+ "loss": 4.370945930480957,
+ "step": 738
+ },
+ {
+ "epoch": 10.265618173875055,
+ "grad_norm": 0.22372810542583466,
+ "learning_rate": 0.0006,
+ "loss": 4.354825973510742,
+ "step": 739
+ },
+ {
+ "epoch": 10.279598077763215,
+ "grad_norm": 0.238066166639328,
+ "learning_rate": 0.0006,
+ "loss": 4.376237392425537,
+ "step": 740
+ },
+ {
+ "epoch": 10.293577981651376,
+ "grad_norm": 0.22352449595928192,
+ "learning_rate": 0.0006,
+ "loss": 4.317084312438965,
+ "step": 741
+ },
+ {
+ "epoch": 10.307557885539538,
+ "grad_norm": 0.21685205399990082,
+ "learning_rate": 0.0006,
+ "loss": 4.335271835327148,
+ "step": 742
+ },
+ {
+ "epoch": 10.321537789427698,
+ "grad_norm": 0.19584694504737854,
+ "learning_rate": 0.0006,
+ "loss": 4.357963562011719,
+ "step": 743
+ },
+ {
+ "epoch": 10.33551769331586,
+ "grad_norm": 0.20373336970806122,
+ "learning_rate": 0.0006,
+ "loss": 4.401963233947754,
+ "step": 744
+ },
+ {
+ "epoch": 10.349497597204019,
+ "grad_norm": 0.2247837632894516,
+ "learning_rate": 0.0006,
+ "loss": 4.357202529907227,
+ "step": 745
+ },
+ {
+ "epoch": 10.36347750109218,
+ "grad_norm": 0.2416863739490509,
+ "learning_rate": 0.0006,
+ "loss": 4.364739418029785,
+ "step": 746
+ },
+ {
+ "epoch": 10.37745740498034,
+ "grad_norm": 0.22281162440776825,
+ "learning_rate": 0.0006,
+ "loss": 4.351607799530029,
+ "step": 747
+ },
+ {
+ "epoch": 10.391437308868502,
+ "grad_norm": 0.20751096308231354,
+ "learning_rate": 0.0006,
+ "loss": 4.370017051696777,
+ "step": 748
+ },
+ {
+ "epoch": 10.405417212756662,
+ "grad_norm": 0.19178363680839539,
+ "learning_rate": 0.0006,
+ "loss": 4.360328674316406,
+ "step": 749
+ },
+ {
+ "epoch": 10.419397116644824,
+ "grad_norm": 0.20534078776836395,
+ "learning_rate": 0.0006,
+ "loss": 4.3735432624816895,
+ "step": 750
+ },
+ {
+ "epoch": 10.433377020532983,
+ "grad_norm": 0.20533937215805054,
+ "learning_rate": 0.0006,
+ "loss": 4.326902389526367,
+ "step": 751
+ },
+ {
+ "epoch": 10.447356924421145,
+ "grad_norm": 0.22057875990867615,
+ "learning_rate": 0.0006,
+ "loss": 4.360934257507324,
+ "step": 752
+ },
+ {
+ "epoch": 10.461336828309305,
+ "grad_norm": 0.25568997859954834,
+ "learning_rate": 0.0006,
+ "loss": 4.345063209533691,
+ "step": 753
+ },
+ {
+ "epoch": 10.475316732197467,
+ "grad_norm": 0.31471487879753113,
+ "learning_rate": 0.0006,
+ "loss": 4.324014186859131,
+ "step": 754
+ },
+ {
+ "epoch": 10.489296636085626,
+ "grad_norm": 0.2716822624206543,
+ "learning_rate": 0.0006,
+ "loss": 4.318459510803223,
+ "step": 755
+ },
+ {
+ "epoch": 10.503276539973788,
+ "grad_norm": 0.19552019238471985,
+ "learning_rate": 0.0006,
+ "loss": 4.3367509841918945,
+ "step": 756
+ },
+ {
+ "epoch": 10.517256443861948,
+ "grad_norm": 0.22822986543178558,
+ "learning_rate": 0.0006,
+ "loss": 4.328935623168945,
+ "step": 757
+ },
+ {
+ "epoch": 10.53123634775011,
+ "grad_norm": 0.22282928228378296,
+ "learning_rate": 0.0006,
+ "loss": 4.358272552490234,
+ "step": 758
+ },
+ {
+ "epoch": 10.54521625163827,
+ "grad_norm": 0.23303352296352386,
+ "learning_rate": 0.0006,
+ "loss": 4.336641311645508,
+ "step": 759
+ },
+ {
+ "epoch": 10.55919615552643,
+ "grad_norm": 0.29474690556526184,
+ "learning_rate": 0.0006,
+ "loss": 4.343188285827637,
+ "step": 760
+ },
+ {
+ "epoch": 10.57317605941459,
+ "grad_norm": 0.36269059777259827,
+ "learning_rate": 0.0006,
+ "loss": 4.313019752502441,
+ "step": 761
+ },
+ {
+ "epoch": 10.587155963302752,
+ "grad_norm": 0.3742978870868683,
+ "learning_rate": 0.0006,
+ "loss": 4.361410140991211,
+ "step": 762
+ },
+ {
+ "epoch": 10.601135867190912,
+ "grad_norm": 0.34412163496017456,
+ "learning_rate": 0.0006,
+ "loss": 4.321324825286865,
+ "step": 763
+ },
+ {
+ "epoch": 10.615115771079074,
+ "grad_norm": 0.3464587926864624,
+ "learning_rate": 0.0006,
+ "loss": 4.341907501220703,
+ "step": 764
+ },
+ {
+ "epoch": 10.629095674967235,
+ "grad_norm": 0.3318136930465698,
+ "learning_rate": 0.0006,
+ "loss": 4.329099655151367,
+ "step": 765
+ },
+ {
+ "epoch": 10.643075578855395,
+ "grad_norm": 0.31292903423309326,
+ "learning_rate": 0.0006,
+ "loss": 4.332015037536621,
+ "step": 766
+ },
+ {
+ "epoch": 10.657055482743557,
+ "grad_norm": 0.2904847264289856,
+ "learning_rate": 0.0006,
+ "loss": 4.341764450073242,
+ "step": 767
+ },
+ {
+ "epoch": 10.671035386631717,
+ "grad_norm": 0.3287692666053772,
+ "learning_rate": 0.0006,
+ "loss": 4.342329025268555,
+ "step": 768
+ },
+ {
+ "epoch": 10.685015290519878,
+ "grad_norm": 0.3115365207195282,
+ "learning_rate": 0.0006,
+ "loss": 4.3530073165893555,
+ "step": 769
+ },
+ {
+ "epoch": 10.698995194408038,
+ "grad_norm": 0.24133864045143127,
+ "learning_rate": 0.0006,
+ "loss": 4.321497917175293,
+ "step": 770
+ },
+ {
+ "epoch": 10.7129750982962,
+ "grad_norm": 0.24658630788326263,
+ "learning_rate": 0.0006,
+ "loss": 4.32669734954834,
+ "step": 771
+ },
+ {
+ "epoch": 10.72695500218436,
+ "grad_norm": 0.2342129647731781,
+ "learning_rate": 0.0006,
+ "loss": 4.345459461212158,
+ "step": 772
+ },
+ {
+ "epoch": 10.740934906072521,
+ "grad_norm": 0.23360829055309296,
+ "learning_rate": 0.0006,
+ "loss": 4.33249568939209,
+ "step": 773
+ },
+ {
+ "epoch": 10.754914809960681,
+ "grad_norm": 0.24314677715301514,
+ "learning_rate": 0.0006,
+ "loss": 4.30499792098999,
+ "step": 774
+ },
+ {
+ "epoch": 10.768894713848843,
+ "grad_norm": 0.22105181217193604,
+ "learning_rate": 0.0006,
+ "loss": 4.33706521987915,
+ "step": 775
+ },
+ {
+ "epoch": 10.782874617737003,
+ "grad_norm": 0.23307174444198608,
+ "learning_rate": 0.0006,
+ "loss": 4.320387840270996,
+ "step": 776
+ },
+ {
+ "epoch": 10.796854521625164,
+ "grad_norm": 0.24946169555187225,
+ "learning_rate": 0.0006,
+ "loss": 4.316012382507324,
+ "step": 777
+ },
+ {
+ "epoch": 10.810834425513324,
+ "grad_norm": 0.26023536920547485,
+ "learning_rate": 0.0006,
+ "loss": 4.315193176269531,
+ "step": 778
+ },
+ {
+ "epoch": 10.824814329401486,
+ "grad_norm": 0.2688547968864441,
+ "learning_rate": 0.0006,
+ "loss": 4.3243255615234375,
+ "step": 779
+ },
+ {
+ "epoch": 10.838794233289645,
+ "grad_norm": 0.28188297152519226,
+ "learning_rate": 0.0006,
+ "loss": 4.3202972412109375,
+ "step": 780
+ },
+ {
+ "epoch": 10.852774137177807,
+ "grad_norm": 0.2890053689479828,
+ "learning_rate": 0.0006,
+ "loss": 4.318799018859863,
+ "step": 781
+ },
+ {
+ "epoch": 10.866754041065967,
+ "grad_norm": 0.2914353013038635,
+ "learning_rate": 0.0006,
+ "loss": 4.314262390136719,
+ "step": 782
+ },
+ {
+ "epoch": 10.880733944954128,
+ "grad_norm": 0.3145572543144226,
+ "learning_rate": 0.0006,
+ "loss": 4.339262008666992,
+ "step": 783
+ },
+ {
+ "epoch": 10.89471384884229,
+ "grad_norm": 0.323062002658844,
+ "learning_rate": 0.0006,
+ "loss": 4.354856491088867,
+ "step": 784
+ },
+ {
+ "epoch": 10.90869375273045,
+ "grad_norm": 0.32741227746009827,
+ "learning_rate": 0.0006,
+ "loss": 4.325577735900879,
+ "step": 785
+ },
+ {
+ "epoch": 10.922673656618612,
+ "grad_norm": 0.2855733036994934,
+ "learning_rate": 0.0006,
+ "loss": 4.324419021606445,
+ "step": 786
+ },
+ {
+ "epoch": 10.936653560506771,
+ "grad_norm": 0.2969444990158081,
+ "learning_rate": 0.0006,
+ "loss": 4.320681095123291,
+ "step": 787
+ },
+ {
+ "epoch": 10.950633464394933,
+ "grad_norm": 0.28108111023902893,
+ "learning_rate": 0.0006,
+ "loss": 4.32673454284668,
+ "step": 788
+ },
+ {
+ "epoch": 10.964613368283093,
+ "grad_norm": 0.2537972629070282,
+ "learning_rate": 0.0006,
+ "loss": 4.3197021484375,
+ "step": 789
+ },
+ {
+ "epoch": 10.978593272171254,
+ "grad_norm": 0.2354544699192047,
+ "learning_rate": 0.0006,
+ "loss": 4.3354973793029785,
+ "step": 790
+ },
+ {
+ "epoch": 10.992573176059414,
+ "grad_norm": 0.26195117831230164,
+ "learning_rate": 0.0006,
+ "loss": 4.3172526359558105,
+ "step": 791
+ },
+ {
+ "epoch": 11.0,
+ "grad_norm": 0.27089616656303406,
+ "learning_rate": 0.0006,
+ "loss": 4.324293613433838,
+ "step": 792
+ },
+ {
+ "epoch": 11.0,
+ "eval_loss": 4.531813621520996,
+ "eval_runtime": 44.1656,
+ "eval_samples_per_second": 55.292,
+ "eval_steps_per_second": 3.464,
+ "step": 792
+ },
+ {
+ "epoch": 11.013979903888162,
+ "grad_norm": 0.2526339590549469,
+ "learning_rate": 0.0006,
+ "loss": 4.287600517272949,
+ "step": 793
+ },
+ {
+ "epoch": 11.027959807776321,
+ "grad_norm": 0.24318458139896393,
+ "learning_rate": 0.0006,
+ "loss": 4.268078327178955,
+ "step": 794
+ },
+ {
+ "epoch": 11.041939711664483,
+ "grad_norm": 0.2450830638408661,
+ "learning_rate": 0.0006,
+ "loss": 4.265467643737793,
+ "step": 795
+ },
+ {
+ "epoch": 11.055919615552643,
+ "grad_norm": 0.23963099718093872,
+ "learning_rate": 0.0006,
+ "loss": 4.267931938171387,
+ "step": 796
+ },
+ {
+ "epoch": 11.069899519440805,
+ "grad_norm": 0.2488657534122467,
+ "learning_rate": 0.0006,
+ "loss": 4.30262565612793,
+ "step": 797
+ },
+ {
+ "epoch": 11.083879423328964,
+ "grad_norm": 0.2319781631231308,
+ "learning_rate": 0.0006,
+ "loss": 4.28665828704834,
+ "step": 798
+ },
+ {
+ "epoch": 11.097859327217126,
+ "grad_norm": 0.2425263375043869,
+ "learning_rate": 0.0006,
+ "loss": 4.284830570220947,
+ "step": 799
+ },
+ {
+ "epoch": 11.111839231105286,
+ "grad_norm": 0.23096567392349243,
+ "learning_rate": 0.0006,
+ "loss": 4.2817206382751465,
+ "step": 800
+ },
+ {
+ "epoch": 11.125819134993447,
+ "grad_norm": 0.2846364676952362,
+ "learning_rate": 0.0006,
+ "loss": 4.276104927062988,
+ "step": 801
+ },
+ {
+ "epoch": 11.139799038881607,
+ "grad_norm": 0.2984965741634369,
+ "learning_rate": 0.0006,
+ "loss": 4.2909650802612305,
+ "step": 802
+ },
+ {
+ "epoch": 11.153778942769769,
+ "grad_norm": 0.2841213643550873,
+ "learning_rate": 0.0006,
+ "loss": 4.283358097076416,
+ "step": 803
+ },
+ {
+ "epoch": 11.167758846657929,
+ "grad_norm": 0.29192933440208435,
+ "learning_rate": 0.0006,
+ "loss": 4.267040729522705,
+ "step": 804
+ },
+ {
+ "epoch": 11.18173875054609,
+ "grad_norm": 0.3254184126853943,
+ "learning_rate": 0.0006,
+ "loss": 4.301564693450928,
+ "step": 805
+ },
+ {
+ "epoch": 11.19571865443425,
+ "grad_norm": 0.3347095847129822,
+ "learning_rate": 0.0006,
+ "loss": 4.271395683288574,
+ "step": 806
+ },
+ {
+ "epoch": 11.209698558322412,
+ "grad_norm": 0.25609350204467773,
+ "learning_rate": 0.0006,
+ "loss": 4.2963056564331055,
+ "step": 807
+ },
+ {
+ "epoch": 11.223678462210572,
+ "grad_norm": 0.29272061586380005,
+ "learning_rate": 0.0006,
+ "loss": 4.298416614532471,
+ "step": 808
+ },
+ {
+ "epoch": 11.237658366098733,
+ "grad_norm": 0.32179465889930725,
+ "learning_rate": 0.0006,
+ "loss": 4.294036865234375,
+ "step": 809
+ },
+ {
+ "epoch": 11.251638269986893,
+ "grad_norm": 0.3336549401283264,
+ "learning_rate": 0.0006,
+ "loss": 4.291993141174316,
+ "step": 810
+ },
+ {
+ "epoch": 11.265618173875055,
+ "grad_norm": 0.32273536920547485,
+ "learning_rate": 0.0006,
+ "loss": 4.311004638671875,
+ "step": 811
+ },
+ {
+ "epoch": 11.279598077763215,
+ "grad_norm": 0.3575087785720825,
+ "learning_rate": 0.0006,
+ "loss": 4.300217628479004,
+ "step": 812
+ },
+ {
+ "epoch": 11.293577981651376,
+ "grad_norm": 0.3332885205745697,
+ "learning_rate": 0.0006,
+ "loss": 4.278337478637695,
+ "step": 813
+ },
+ {
+ "epoch": 11.307557885539538,
+ "grad_norm": 0.31440407037734985,
+ "learning_rate": 0.0006,
+ "loss": 4.273826599121094,
+ "step": 814
+ },
+ {
+ "epoch": 11.321537789427698,
+ "grad_norm": 0.29822009801864624,
+ "learning_rate": 0.0006,
+ "loss": 4.284292221069336,
+ "step": 815
+ },
+ {
+ "epoch": 11.33551769331586,
+ "grad_norm": 0.30695512890815735,
+ "learning_rate": 0.0006,
+ "loss": 4.2831926345825195,
+ "step": 816
+ },
+ {
+ "epoch": 11.349497597204019,
+ "grad_norm": 0.30576950311660767,
+ "learning_rate": 0.0006,
+ "loss": 4.277133464813232,
+ "step": 817
+ },
+ {
+ "epoch": 11.36347750109218,
+ "grad_norm": 0.2859647870063782,
+ "learning_rate": 0.0006,
+ "loss": 4.3130106925964355,
+ "step": 818
+ },
+ {
+ "epoch": 11.37745740498034,
+ "grad_norm": 0.32417574524879456,
+ "learning_rate": 0.0006,
+ "loss": 4.310303211212158,
+ "step": 819
+ },
+ {
+ "epoch": 11.391437308868502,
+ "grad_norm": 0.3512463867664337,
+ "learning_rate": 0.0006,
+ "loss": 4.287015438079834,
+ "step": 820
+ },
+ {
+ "epoch": 11.405417212756662,
+ "grad_norm": 0.32578620314598083,
+ "learning_rate": 0.0006,
+ "loss": 4.2957940101623535,
+ "step": 821
+ },
+ {
+ "epoch": 11.419397116644824,
+ "grad_norm": 0.287949800491333,
+ "learning_rate": 0.0006,
+ "loss": 4.2881879806518555,
+ "step": 822
+ },
+ {
+ "epoch": 11.433377020532983,
+ "grad_norm": 0.28048595786094666,
+ "learning_rate": 0.0006,
+ "loss": 4.274960517883301,
+ "step": 823
+ },
+ {
+ "epoch": 11.447356924421145,
+ "grad_norm": 0.2541540563106537,
+ "learning_rate": 0.0006,
+ "loss": 4.261083602905273,
+ "step": 824
+ },
+ {
+ "epoch": 11.461336828309305,
+ "grad_norm": 0.2348361313343048,
+ "learning_rate": 0.0006,
+ "loss": 4.271036148071289,
+ "step": 825
+ },
+ {
+ "epoch": 11.475316732197467,
+ "grad_norm": 0.20913535356521606,
+ "learning_rate": 0.0006,
+ "loss": 4.307661056518555,
+ "step": 826
+ },
+ {
+ "epoch": 11.489296636085626,
+ "grad_norm": 0.22298868000507355,
+ "learning_rate": 0.0006,
+ "loss": 4.26902961730957,
+ "step": 827
+ },
+ {
+ "epoch": 11.503276539973788,
+ "grad_norm": 0.22752761840820312,
+ "learning_rate": 0.0006,
+ "loss": 4.305529594421387,
+ "step": 828
+ },
+ {
+ "epoch": 11.517256443861948,
+ "grad_norm": 0.2149917483329773,
+ "learning_rate": 0.0006,
+ "loss": 4.25134801864624,
+ "step": 829
+ },
+ {
+ "epoch": 11.53123634775011,
+ "grad_norm": 0.21085695922374725,
+ "learning_rate": 0.0006,
+ "loss": 4.266982078552246,
+ "step": 830
+ },
+ {
+ "epoch": 11.54521625163827,
+ "grad_norm": 0.21586747467517853,
+ "learning_rate": 0.0006,
+ "loss": 4.235255718231201,
+ "step": 831
+ },
+ {
+ "epoch": 11.55919615552643,
+ "grad_norm": 0.2520856559276581,
+ "learning_rate": 0.0006,
+ "loss": 4.283442497253418,
+ "step": 832
+ },
+ {
+ "epoch": 11.57317605941459,
+ "grad_norm": 0.2825471758842468,
+ "learning_rate": 0.0006,
+ "loss": 4.234672546386719,
+ "step": 833
+ },
+ {
+ "epoch": 11.587155963302752,
+ "grad_norm": 0.27437824010849,
+ "learning_rate": 0.0006,
+ "loss": 4.246068000793457,
+ "step": 834
+ },
+ {
+ "epoch": 11.601135867190912,
+ "grad_norm": 0.2596757411956787,
+ "learning_rate": 0.0006,
+ "loss": 4.278448104858398,
+ "step": 835
+ },
+ {
+ "epoch": 11.615115771079074,
+ "grad_norm": 0.25663474202156067,
+ "learning_rate": 0.0006,
+ "loss": 4.308779716491699,
+ "step": 836
+ },
+ {
+ "epoch": 11.629095674967235,
+ "grad_norm": 0.2546203136444092,
+ "learning_rate": 0.0006,
+ "loss": 4.261247634887695,
+ "step": 837
+ },
+ {
+ "epoch": 11.643075578855395,
+ "grad_norm": 0.24722838401794434,
+ "learning_rate": 0.0006,
+ "loss": 4.275888442993164,
+ "step": 838
+ },
+ {
+ "epoch": 11.657055482743557,
+ "grad_norm": 0.3022806644439697,
+ "learning_rate": 0.0006,
+ "loss": 4.2572407722473145,
+ "step": 839
+ },
+ {
+ "epoch": 11.671035386631717,
+ "grad_norm": 0.31170839071273804,
+ "learning_rate": 0.0006,
+ "loss": 4.26992654800415,
+ "step": 840
+ },
+ {
+ "epoch": 11.685015290519878,
+ "grad_norm": 0.31362825632095337,
+ "learning_rate": 0.0006,
+ "loss": 4.2354655265808105,
+ "step": 841
+ },
+ {
+ "epoch": 11.698995194408038,
+ "grad_norm": 0.28741633892059326,
+ "learning_rate": 0.0006,
+ "loss": 4.263496398925781,
+ "step": 842
+ },
+ {
+ "epoch": 11.7129750982962,
+ "grad_norm": 0.2492494285106659,
+ "learning_rate": 0.0006,
+ "loss": 4.26463508605957,
+ "step": 843
+ },
+ {
+ "epoch": 11.72695500218436,
+ "grad_norm": 0.24324660003185272,
+ "learning_rate": 0.0006,
+ "loss": 4.245428085327148,
+ "step": 844
+ },
+ {
+ "epoch": 11.740934906072521,
+ "grad_norm": 0.23591114580631256,
+ "learning_rate": 0.0006,
+ "loss": 4.249845504760742,
+ "step": 845
+ },
+ {
+ "epoch": 11.754914809960681,
+ "grad_norm": 0.2202281504869461,
+ "learning_rate": 0.0006,
+ "loss": 4.245006084442139,
+ "step": 846
+ },
+ {
+ "epoch": 11.768894713848843,
+ "grad_norm": 0.22117942571640015,
+ "learning_rate": 0.0006,
+ "loss": 4.27812385559082,
+ "step": 847
+ },
+ {
+ "epoch": 11.782874617737003,
+ "grad_norm": 0.26361414790153503,
+ "learning_rate": 0.0006,
+ "loss": 4.250475883483887,
+ "step": 848
+ },
+ {
+ "epoch": 11.796854521625164,
+ "grad_norm": 0.2820321321487427,
+ "learning_rate": 0.0006,
+ "loss": 4.265835762023926,
+ "step": 849
+ },
+ {
+ "epoch": 11.810834425513324,
+ "grad_norm": 0.2078961282968521,
+ "learning_rate": 0.0006,
+ "loss": 4.251298904418945,
+ "step": 850
+ },
+ {
+ "epoch": 11.824814329401486,
+ "grad_norm": 0.21548646688461304,
+ "learning_rate": 0.0006,
+ "loss": 4.288539886474609,
+ "step": 851
+ },
+ {
+ "epoch": 11.838794233289645,
+ "grad_norm": 0.22719401121139526,
+ "learning_rate": 0.0006,
+ "loss": 4.252035140991211,
+ "step": 852
+ },
+ {
+ "epoch": 11.852774137177807,
+ "grad_norm": 0.21628320217132568,
+ "learning_rate": 0.0006,
+ "loss": 4.268622398376465,
+ "step": 853
+ },
+ {
+ "epoch": 11.866754041065967,
+ "grad_norm": 0.20855145156383514,
+ "learning_rate": 0.0006,
+ "loss": 4.253366470336914,
+ "step": 854
+ },
+ {
+ "epoch": 11.880733944954128,
+ "grad_norm": 0.2091914266347885,
+ "learning_rate": 0.0006,
+ "loss": 4.237805366516113,
+ "step": 855
+ },
+ {
+ "epoch": 11.89471384884229,
+ "grad_norm": 0.2000127136707306,
+ "learning_rate": 0.0006,
+ "loss": 4.268559455871582,
+ "step": 856
+ },
+ {
+ "epoch": 11.90869375273045,
+ "grad_norm": 0.21080894768238068,
+ "learning_rate": 0.0006,
+ "loss": 4.208702087402344,
+ "step": 857
+ },
+ {
+ "epoch": 11.922673656618612,
+ "grad_norm": 0.22125796973705292,
+ "learning_rate": 0.0006,
+ "loss": 4.250210762023926,
+ "step": 858
+ },
+ {
+ "epoch": 11.936653560506771,
+ "grad_norm": 0.25905469059944153,
+ "learning_rate": 0.0006,
+ "loss": 4.2263593673706055,
+ "step": 859
+ },
+ {
+ "epoch": 11.950633464394933,
+ "grad_norm": 0.29970306158065796,
+ "learning_rate": 0.0006,
+ "loss": 4.250848770141602,
+ "step": 860
+ },
+ {
+ "epoch": 11.964613368283093,
+ "grad_norm": 0.28155168890953064,
+ "learning_rate": 0.0006,
+ "loss": 4.272709369659424,
+ "step": 861
+ },
+ {
+ "epoch": 11.978593272171254,
+ "grad_norm": 0.23396113514900208,
+ "learning_rate": 0.0006,
+ "loss": 4.2674970626831055,
+ "step": 862
+ },
+ {
+ "epoch": 11.992573176059414,
+ "grad_norm": 0.23619577288627625,
+ "learning_rate": 0.0006,
+ "loss": 4.240267753601074,
+ "step": 863
+ },
+ {
+ "epoch": 12.0,
+ "grad_norm": 0.2779577076435089,
+ "learning_rate": 0.0006,
+ "loss": 4.267625331878662,
+ "step": 864
+ },
+ {
+ "epoch": 12.0,
+ "eval_loss": 4.437657356262207,
+ "eval_runtime": 44.4959,
+ "eval_samples_per_second": 54.881,
+ "eval_steps_per_second": 3.439,
+ "step": 864
+ },
+ {
+ "epoch": 12.013979903888162,
+ "grad_norm": 0.2948288321495056,
+ "learning_rate": 0.0006,
+ "loss": 4.232182502746582,
+ "step": 865
+ },
+ {
+ "epoch": 12.027959807776321,
+ "grad_norm": 0.3715663254261017,
+ "learning_rate": 0.0006,
+ "loss": 4.233771324157715,
+ "step": 866
+ },
+ {
+ "epoch": 12.041939711664483,
+ "grad_norm": 0.38358673453330994,
+ "learning_rate": 0.0006,
+ "loss": 4.208967685699463,
+ "step": 867
+ },
+ {
+ "epoch": 12.055919615552643,
+ "grad_norm": 0.3314538896083832,
+ "learning_rate": 0.0006,
+ "loss": 4.230685234069824,
+ "step": 868
+ },
+ {
+ "epoch": 12.069899519440805,
+ "grad_norm": 0.34171539545059204,
+ "learning_rate": 0.0006,
+ "loss": 4.231358528137207,
+ "step": 869
+ },
+ {
+ "epoch": 12.083879423328964,
+ "grad_norm": 0.3253359794616699,
+ "learning_rate": 0.0006,
+ "loss": 4.276405334472656,
+ "step": 870
+ },
+ {
+ "epoch": 12.097859327217126,
+ "grad_norm": 0.29008302092552185,
+ "learning_rate": 0.0006,
+ "loss": 4.232935905456543,
+ "step": 871
+ },
+ {
+ "epoch": 12.111839231105286,
+ "grad_norm": 0.28490355610847473,
+ "learning_rate": 0.0006,
+ "loss": 4.238036632537842,
+ "step": 872
+ },
+ {
+ "epoch": 12.125819134993447,
+ "grad_norm": 0.28446322679519653,
+ "learning_rate": 0.0006,
+ "loss": 4.210229873657227,
+ "step": 873
+ },
+ {
+ "epoch": 12.139799038881607,
+ "grad_norm": 0.29664531350135803,
+ "learning_rate": 0.0006,
+ "loss": 4.221309185028076,
+ "step": 874
+ },
+ {
+ "epoch": 12.153778942769769,
+ "grad_norm": 0.3083505928516388,
+ "learning_rate": 0.0006,
+ "loss": 4.221837997436523,
+ "step": 875
+ },
+ {
+ "epoch": 12.167758846657929,
+ "grad_norm": 0.3282921314239502,
+ "learning_rate": 0.0006,
+ "loss": 4.236713409423828,
+ "step": 876
+ },
+ {
+ "epoch": 12.18173875054609,
+ "grad_norm": 0.3603622615337372,
+ "learning_rate": 0.0006,
+ "loss": 4.245080947875977,
+ "step": 877
+ },
+ {
+ "epoch": 12.19571865443425,
+ "grad_norm": 0.38070905208587646,
+ "learning_rate": 0.0006,
+ "loss": 4.240756988525391,
+ "step": 878
+ },
+ {
+ "epoch": 12.209698558322412,
+ "grad_norm": 0.34479081630706787,
+ "learning_rate": 0.0006,
+ "loss": 4.200998306274414,
+ "step": 879
+ },
+ {
+ "epoch": 12.223678462210572,
+ "grad_norm": 0.3006879389286041,
+ "learning_rate": 0.0006,
+ "loss": 4.23531436920166,
+ "step": 880
+ },
+ {
+ "epoch": 12.237658366098733,
+ "grad_norm": 0.36835649609565735,
+ "learning_rate": 0.0006,
+ "loss": 4.229718208312988,
+ "step": 881
+ },
+ {
+ "epoch": 12.251638269986893,
+ "grad_norm": 0.4386984407901764,
+ "learning_rate": 0.0006,
+ "loss": 4.241188049316406,
+ "step": 882
+ },
+ {
+ "epoch": 12.265618173875055,
+ "grad_norm": 0.4442787170410156,
+ "learning_rate": 0.0006,
+ "loss": 4.239102840423584,
+ "step": 883
+ },
+ {
+ "epoch": 12.279598077763215,
+ "grad_norm": 0.324411541223526,
+ "learning_rate": 0.0006,
+ "loss": 4.198982238769531,
+ "step": 884
+ },
+ {
+ "epoch": 12.293577981651376,
+ "grad_norm": 0.2824151813983917,
+ "learning_rate": 0.0006,
+ "loss": 4.248816967010498,
+ "step": 885
+ },
+ {
+ "epoch": 12.307557885539538,
+ "grad_norm": 0.31407129764556885,
+ "learning_rate": 0.0006,
+ "loss": 4.2371320724487305,
+ "step": 886
+ },
+ {
+ "epoch": 12.321537789427698,
+ "grad_norm": 0.32920050621032715,
+ "learning_rate": 0.0006,
+ "loss": 4.210432052612305,
+ "step": 887
+ },
+ {
+ "epoch": 12.33551769331586,
+ "grad_norm": 0.315231055021286,
+ "learning_rate": 0.0006,
+ "loss": 4.219416618347168,
+ "step": 888
+ },
+ {
+ "epoch": 12.349497597204019,
+ "grad_norm": 0.30932050943374634,
+ "learning_rate": 0.0006,
+ "loss": 4.225022315979004,
+ "step": 889
+ },
+ {
+ "epoch": 12.36347750109218,
+ "grad_norm": 0.30242064595222473,
+ "learning_rate": 0.0006,
+ "loss": 4.2738518714904785,
+ "step": 890
+ },
+ {
+ "epoch": 12.37745740498034,
+ "grad_norm": 0.2926250994205475,
+ "learning_rate": 0.0006,
+ "loss": 4.231094837188721,
+ "step": 891
+ },
+ {
+ "epoch": 12.391437308868502,
+ "grad_norm": 0.2541215717792511,
+ "learning_rate": 0.0006,
+ "loss": 4.211821556091309,
+ "step": 892
+ },
+ {
+ "epoch": 12.405417212756662,
+ "grad_norm": 0.23693418502807617,
+ "learning_rate": 0.0006,
+ "loss": 4.208099365234375,
+ "step": 893
+ },
+ {
+ "epoch": 12.419397116644824,
+ "grad_norm": 0.22063226997852325,
+ "learning_rate": 0.0006,
+ "loss": 4.211234092712402,
+ "step": 894
+ },
+ {
+ "epoch": 12.433377020532983,
+ "grad_norm": 0.21536271274089813,
+ "learning_rate": 0.0006,
+ "loss": 4.199228286743164,
+ "step": 895
+ },
+ {
+ "epoch": 12.447356924421145,
+ "grad_norm": 0.243179589509964,
+ "learning_rate": 0.0006,
+ "loss": 4.204344749450684,
+ "step": 896
+ },
+ {
+ "epoch": 12.461336828309305,
+ "grad_norm": 0.2299746423959732,
+ "learning_rate": 0.0006,
+ "loss": 4.1565752029418945,
+ "step": 897
+ },
+ {
+ "epoch": 12.475316732197467,
+ "grad_norm": 0.2286847084760666,
+ "learning_rate": 0.0006,
+ "loss": 4.242953777313232,
+ "step": 898
+ },
+ {
+ "epoch": 12.489296636085626,
+ "grad_norm": 0.19463586807250977,
+ "learning_rate": 0.0006,
+ "loss": 4.214809417724609,
+ "step": 899
+ },
+ {
+ "epoch": 12.503276539973788,
+ "grad_norm": 0.1978398710489273,
+ "learning_rate": 0.0006,
+ "loss": 4.159815311431885,
+ "step": 900
+ },
+ {
+ "epoch": 12.517256443861948,
+ "grad_norm": 0.23177850246429443,
+ "learning_rate": 0.0006,
+ "loss": 4.2069902420043945,
+ "step": 901
+ },
+ {
+ "epoch": 12.53123634775011,
+ "grad_norm": 0.2408912032842636,
+ "learning_rate": 0.0006,
+ "loss": 4.206778526306152,
+ "step": 902
+ },
+ {
+ "epoch": 12.54521625163827,
+ "grad_norm": 0.21839919686317444,
+ "learning_rate": 0.0006,
+ "loss": 4.197076320648193,
+ "step": 903
+ },
+ {
+ "epoch": 12.55919615552643,
+ "grad_norm": 0.2053343504667282,
+ "learning_rate": 0.0006,
+ "loss": 4.21247673034668,
+ "step": 904
+ },
+ {
+ "epoch": 12.57317605941459,
+ "grad_norm": 0.19943439960479736,
+ "learning_rate": 0.0006,
+ "loss": 4.176966667175293,
+ "step": 905
+ },
+ {
+ "epoch": 12.587155963302752,
+ "grad_norm": 0.2012074887752533,
+ "learning_rate": 0.0006,
+ "loss": 4.210303783416748,
+ "step": 906
+ },
+ {
+ "epoch": 12.601135867190912,
+ "grad_norm": 0.22240376472473145,
+ "learning_rate": 0.0006,
+ "loss": 4.200625896453857,
+ "step": 907
+ },
+ {
+ "epoch": 12.615115771079074,
+ "grad_norm": 0.21729710698127747,
+ "learning_rate": 0.0006,
+ "loss": 4.2001953125,
+ "step": 908
+ },
+ {
+ "epoch": 12.629095674967235,
+ "grad_norm": 0.22470413148403168,
+ "learning_rate": 0.0006,
+ "loss": 4.197505950927734,
+ "step": 909
+ },
+ {
+ "epoch": 12.643075578855395,
+ "grad_norm": 0.23776157200336456,
+ "learning_rate": 0.0006,
+ "loss": 4.235603332519531,
+ "step": 910
+ },
+ {
+ "epoch": 12.657055482743557,
+ "grad_norm": 0.20616604387760162,
+ "learning_rate": 0.0006,
+ "loss": 4.193584442138672,
+ "step": 911
+ },
+ {
+ "epoch": 12.671035386631717,
+ "grad_norm": 0.1913922131061554,
+ "learning_rate": 0.0006,
+ "loss": 4.209191799163818,
+ "step": 912
+ },
+ {
+ "epoch": 12.685015290519878,
+ "grad_norm": 0.19427193701267242,
+ "learning_rate": 0.0006,
+ "loss": 4.219709396362305,
+ "step": 913
+ },
+ {
+ "epoch": 12.698995194408038,
+ "grad_norm": 0.20976558327674866,
+ "learning_rate": 0.0006,
+ "loss": 4.210859298706055,
+ "step": 914
+ },
+ {
+ "epoch": 12.7129750982962,
+ "grad_norm": 0.21571609377861023,
+ "learning_rate": 0.0006,
+ "loss": 4.189394950866699,
+ "step": 915
+ },
+ {
+ "epoch": 12.72695500218436,
+ "grad_norm": 0.2152620255947113,
+ "learning_rate": 0.0006,
+ "loss": 4.223589897155762,
+ "step": 916
+ },
+ {
+ "epoch": 12.740934906072521,
+ "grad_norm": 0.21867749094963074,
+ "learning_rate": 0.0006,
+ "loss": 4.198590278625488,
+ "step": 917
+ },
+ {
+ "epoch": 12.754914809960681,
+ "grad_norm": 0.22300855815410614,
+ "learning_rate": 0.0006,
+ "loss": 4.188891410827637,
+ "step": 918
+ },
+ {
+ "epoch": 12.768894713848843,
+ "grad_norm": 0.22197802364826202,
+ "learning_rate": 0.0006,
+ "loss": 4.190221309661865,
+ "step": 919
+ },
+ {
+ "epoch": 12.782874617737003,
+ "grad_norm": 0.20003341138362885,
+ "learning_rate": 0.0006,
+ "loss": 4.215453147888184,
+ "step": 920
+ },
+ {
+ "epoch": 12.796854521625164,
+ "grad_norm": 0.19887958467006683,
+ "learning_rate": 0.0006,
+ "loss": 4.18174934387207,
+ "step": 921
+ },
+ {
+ "epoch": 12.810834425513324,
+ "grad_norm": 0.20945803821086884,
+ "learning_rate": 0.0006,
+ "loss": 4.234947204589844,
+ "step": 922
+ },
+ {
+ "epoch": 12.824814329401486,
+ "grad_norm": 0.2253490388393402,
+ "learning_rate": 0.0006,
+ "loss": 4.2177228927612305,
+ "step": 923
+ },
+ {
+ "epoch": 12.838794233289645,
+ "grad_norm": 0.247610405087471,
+ "learning_rate": 0.0006,
+ "loss": 4.2013139724731445,
+ "step": 924
+ },
+ {
+ "epoch": 12.852774137177807,
+ "grad_norm": 0.2792088985443115,
+ "learning_rate": 0.0006,
+ "loss": 4.204774379730225,
+ "step": 925
+ },
+ {
+ "epoch": 12.866754041065967,
+ "grad_norm": 0.2839066982269287,
+ "learning_rate": 0.0006,
+ "loss": 4.186254978179932,
+ "step": 926
+ },
+ {
+ "epoch": 12.880733944954128,
+ "grad_norm": 0.2793181836605072,
+ "learning_rate": 0.0006,
+ "loss": 4.172411918640137,
+ "step": 927
+ },
+ {
+ "epoch": 12.89471384884229,
+ "grad_norm": 0.29506033658981323,
+ "learning_rate": 0.0006,
+ "loss": 4.202878475189209,
+ "step": 928
+ },
+ {
+ "epoch": 12.90869375273045,
+ "grad_norm": 0.2799845039844513,
+ "learning_rate": 0.0006,
+ "loss": 4.1563310623168945,
+ "step": 929
+ },
+ {
+ "epoch": 12.922673656618612,
+ "grad_norm": 0.23972125351428986,
+ "learning_rate": 0.0006,
+ "loss": 4.224601745605469,
+ "step": 930
+ },
+ {
+ "epoch": 12.936653560506771,
+ "grad_norm": 0.21558353304862976,
+ "learning_rate": 0.0006,
+ "loss": 4.167957305908203,
+ "step": 931
+ },
+ {
+ "epoch": 12.950633464394933,
+ "grad_norm": 0.21800188720226288,
+ "learning_rate": 0.0006,
+ "loss": 4.1746039390563965,
+ "step": 932
+ },
+ {
+ "epoch": 12.964613368283093,
+ "grad_norm": 0.2086547315120697,
+ "learning_rate": 0.0006,
+ "loss": 4.188137054443359,
+ "step": 933
+ },
+ {
+ "epoch": 12.978593272171254,
+ "grad_norm": 0.2174186110496521,
+ "learning_rate": 0.0006,
+ "loss": 4.184014320373535,
+ "step": 934
+ },
+ {
+ "epoch": 12.992573176059414,
+ "grad_norm": 0.22755110263824463,
+ "learning_rate": 0.0006,
+ "loss": 4.180912017822266,
+ "step": 935
+ },
+ {
+ "epoch": 13.0,
+ "grad_norm": 0.2735324203968048,
+ "learning_rate": 0.0006,
+ "loss": 4.201578617095947,
+ "step": 936
+ },
+ {
+ "epoch": 13.0,
+ "eval_loss": 4.396903038024902,
+ "eval_runtime": 44.5664,
+ "eval_samples_per_second": 54.795,
+ "eval_steps_per_second": 3.433,
+ "step": 936
+ },
+ {
+ "epoch": 13.013979903888162,
+ "grad_norm": 0.27577832341194153,
+ "learning_rate": 0.0006,
+ "loss": 4.149985313415527,
+ "step": 937
+ },
+ {
+ "epoch": 13.027959807776321,
+ "grad_norm": 0.25817009806632996,
+ "learning_rate": 0.0006,
+ "loss": 4.1526103019714355,
+ "step": 938
+ },
+ {
+ "epoch": 13.041939711664483,
+ "grad_norm": 0.24564379453659058,
+ "learning_rate": 0.0006,
+ "loss": 4.1661152839660645,
+ "step": 939
+ },
+ {
+ "epoch": 13.055919615552643,
+ "grad_norm": 0.2465466856956482,
+ "learning_rate": 0.0006,
+ "loss": 4.152953624725342,
+ "step": 940
+ },
+ {
+ "epoch": 13.069899519440805,
+ "grad_norm": 0.22702018916606903,
+ "learning_rate": 0.0006,
+ "loss": 4.145125389099121,
+ "step": 941
+ },
+ {
+ "epoch": 13.083879423328964,
+ "grad_norm": 0.24350613355636597,
+ "learning_rate": 0.0006,
+ "loss": 4.163095474243164,
+ "step": 942
+ },
+ {
+ "epoch": 13.097859327217126,
+ "grad_norm": 0.2504431903362274,
+ "learning_rate": 0.0006,
+ "loss": 4.136016845703125,
+ "step": 943
+ },
+ {
+ "epoch": 13.111839231105286,
+ "grad_norm": 0.24968865513801575,
+ "learning_rate": 0.0006,
+ "loss": 4.163487911224365,
+ "step": 944
+ },
+ {
+ "epoch": 13.125819134993447,
+ "grad_norm": 0.27164196968078613,
+ "learning_rate": 0.0006,
+ "loss": 4.1194353103637695,
+ "step": 945
+ },
+ {
+ "epoch": 13.139799038881607,
+ "grad_norm": 0.28127020597457886,
+ "learning_rate": 0.0006,
+ "loss": 4.184807300567627,
+ "step": 946
+ },
+ {
+ "epoch": 13.153778942769769,
+ "grad_norm": 0.24574966728687286,
+ "learning_rate": 0.0006,
+ "loss": 4.154998779296875,
+ "step": 947
+ },
+ {
+ "epoch": 13.167758846657929,
+ "grad_norm": 0.22310060262680054,
+ "learning_rate": 0.0006,
+ "loss": 4.182928085327148,
+ "step": 948
+ },
+ {
+ "epoch": 13.18173875054609,
+ "grad_norm": 0.2539508640766144,
+ "learning_rate": 0.0006,
+ "loss": 4.176900386810303,
+ "step": 949
+ },
+ {
+ "epoch": 13.19571865443425,
+ "grad_norm": 0.30925488471984863,
+ "learning_rate": 0.0006,
+ "loss": 4.1760711669921875,
+ "step": 950
+ },
+ {
+ "epoch": 13.209698558322412,
+ "grad_norm": 0.3842967450618744,
+ "learning_rate": 0.0006,
+ "loss": 4.1830949783325195,
+ "step": 951
+ },
+ {
+ "epoch": 13.223678462210572,
+ "grad_norm": 0.35950011014938354,
+ "learning_rate": 0.0006,
+ "loss": 4.131983757019043,
+ "step": 952
+ },
+ {
+ "epoch": 13.237658366098733,
+ "grad_norm": 0.29913705587387085,
+ "learning_rate": 0.0006,
+ "loss": 4.166984558105469,
+ "step": 953
+ },
+ {
+ "epoch": 13.251638269986893,
+ "grad_norm": 0.32008400559425354,
+ "learning_rate": 0.0006,
+ "loss": 4.156482696533203,
+ "step": 954
+ },
+ {
+ "epoch": 13.265618173875055,
+ "grad_norm": 0.3186642825603485,
+ "learning_rate": 0.0006,
+ "loss": 4.1661057472229,
+ "step": 955
+ },
+ {
+ "epoch": 13.279598077763215,
+ "grad_norm": 0.3194582462310791,
+ "learning_rate": 0.0006,
+ "loss": 4.169328689575195,
+ "step": 956
+ },
+ {
+ "epoch": 13.293577981651376,
+ "grad_norm": 0.3133867084980011,
+ "learning_rate": 0.0006,
+ "loss": 4.165459632873535,
+ "step": 957
+ },
+ {
+ "epoch": 13.307557885539538,
+ "grad_norm": 0.3232237696647644,
+ "learning_rate": 0.0006,
+ "loss": 4.2107439041137695,
+ "step": 958
+ },
+ {
+ "epoch": 13.321537789427698,
+ "grad_norm": 0.3133196234703064,
+ "learning_rate": 0.0006,
+ "loss": 4.184182167053223,
+ "step": 959
+ },
+ {
+ "epoch": 13.33551769331586,
+ "grad_norm": 0.296129435300827,
+ "learning_rate": 0.0006,
+ "loss": 4.168312072753906,
+ "step": 960
+ },
+ {
+ "epoch": 13.349497597204019,
+ "grad_norm": 0.2685348391532898,
+ "learning_rate": 0.0006,
+ "loss": 4.159984588623047,
+ "step": 961
+ },
+ {
+ "epoch": 13.36347750109218,
+ "grad_norm": 0.2644975781440735,
+ "learning_rate": 0.0006,
+ "loss": 4.164909362792969,
+ "step": 962
+ },
+ {
+ "epoch": 13.37745740498034,
+ "grad_norm": 0.2712913155555725,
+ "learning_rate": 0.0006,
+ "loss": 4.158056259155273,
+ "step": 963
+ },
+ {
+ "epoch": 13.391437308868502,
+ "grad_norm": 0.2687259316444397,
+ "learning_rate": 0.0006,
+ "loss": 4.182924270629883,
+ "step": 964
+ },
+ {
+ "epoch": 13.405417212756662,
+ "grad_norm": 0.25640392303466797,
+ "learning_rate": 0.0006,
+ "loss": 4.153351783752441,
+ "step": 965
+ },
+ {
+ "epoch": 13.419397116644824,
+ "grad_norm": 0.2646305561065674,
+ "learning_rate": 0.0006,
+ "loss": 4.18464469909668,
+ "step": 966
+ },
+ {
+ "epoch": 13.433377020532983,
+ "grad_norm": 0.24206851422786713,
+ "learning_rate": 0.0006,
+ "loss": 4.127564430236816,
+ "step": 967
+ },
+ {
+ "epoch": 13.447356924421145,
+ "grad_norm": 0.23800471425056458,
+ "learning_rate": 0.0006,
+ "loss": 4.163488388061523,
+ "step": 968
+ },
+ {
+ "epoch": 13.461336828309305,
+ "grad_norm": 0.22957314550876617,
+ "learning_rate": 0.0006,
+ "loss": 4.178133964538574,
+ "step": 969
+ },
+ {
+ "epoch": 13.475316732197467,
+ "grad_norm": 0.22867488861083984,
+ "learning_rate": 0.0006,
+ "loss": 4.159056186676025,
+ "step": 970
+ },
+ {
+ "epoch": 13.489296636085626,
+ "grad_norm": 0.21737419068813324,
+ "learning_rate": 0.0006,
+ "loss": 4.138628005981445,
+ "step": 971
+ },
+ {
+ "epoch": 13.503276539973788,
+ "grad_norm": 0.2319175899028778,
+ "learning_rate": 0.0006,
+ "loss": 4.14644718170166,
+ "step": 972
+ },
+ {
+ "epoch": 13.517256443861948,
+ "grad_norm": 0.2572193443775177,
+ "learning_rate": 0.0006,
+ "loss": 4.175213813781738,
+ "step": 973
+ },
+ {
+ "epoch": 13.53123634775011,
+ "grad_norm": 0.23483099043369293,
+ "learning_rate": 0.0006,
+ "loss": 4.133171558380127,
+ "step": 974
+ },
+ {
+ "epoch": 13.54521625163827,
+ "grad_norm": 0.2071552872657776,
+ "learning_rate": 0.0006,
+ "loss": 4.13730525970459,
+ "step": 975
+ },
+ {
+ "epoch": 13.55919615552643,
+ "grad_norm": 0.23074553906917572,
+ "learning_rate": 0.0006,
+ "loss": 4.175051689147949,
+ "step": 976
+ },
+ {
+ "epoch": 13.57317605941459,
+ "grad_norm": 0.2480078786611557,
+ "learning_rate": 0.0006,
+ "loss": 4.167630672454834,
+ "step": 977
+ },
+ {
+ "epoch": 13.587155963302752,
+ "grad_norm": 0.23444348573684692,
+ "learning_rate": 0.0006,
+ "loss": 4.141780853271484,
+ "step": 978
+ },
+ {
+ "epoch": 13.601135867190912,
+ "grad_norm": 0.2227829396724701,
+ "learning_rate": 0.0006,
+ "loss": 4.157566547393799,
+ "step": 979
+ },
+ {
+ "epoch": 13.615115771079074,
+ "grad_norm": 0.21478354930877686,
+ "learning_rate": 0.0006,
+ "loss": 4.131053447723389,
+ "step": 980
+ },
+ {
+ "epoch": 13.629095674967235,
+ "grad_norm": 0.1978664994239807,
+ "learning_rate": 0.0006,
+ "loss": 4.123660564422607,
+ "step": 981
+ },
+ {
+ "epoch": 13.643075578855395,
+ "grad_norm": 0.19980201125144958,
+ "learning_rate": 0.0006,
+ "loss": 4.174160480499268,
+ "step": 982
+ },
+ {
+ "epoch": 13.657055482743557,
+ "grad_norm": 0.19815555214881897,
+ "learning_rate": 0.0006,
+ "loss": 4.181703090667725,
+ "step": 983
+ },
+ {
+ "epoch": 13.671035386631717,
+ "grad_norm": 0.19524012506008148,
+ "learning_rate": 0.0006,
+ "loss": 4.163766860961914,
+ "step": 984
+ },
+ {
+ "epoch": 13.685015290519878,
+ "grad_norm": 0.2286096215248108,
+ "learning_rate": 0.0006,
+ "loss": 4.172213554382324,
+ "step": 985
+ },
+ {
+ "epoch": 13.698995194408038,
+ "grad_norm": 0.2210782766342163,
+ "learning_rate": 0.0006,
+ "loss": 4.187033653259277,
+ "step": 986
+ },
+ {
+ "epoch": 13.7129750982962,
+ "grad_norm": 0.21874216198921204,
+ "learning_rate": 0.0006,
+ "loss": 4.125125885009766,
+ "step": 987
+ },
+ {
+ "epoch": 13.72695500218436,
+ "grad_norm": 0.22848057746887207,
+ "learning_rate": 0.0006,
+ "loss": 4.153496742248535,
+ "step": 988
+ },
+ {
+ "epoch": 13.740934906072521,
+ "grad_norm": 0.2250450700521469,
+ "learning_rate": 0.0006,
+ "loss": 4.149165630340576,
+ "step": 989
+ },
+ {
+ "epoch": 13.754914809960681,
+ "grad_norm": 0.21443772315979004,
+ "learning_rate": 0.0006,
+ "loss": 4.1528825759887695,
+ "step": 990
+ },
+ {
+ "epoch": 13.768894713848843,
+ "grad_norm": 0.21927927434444427,
+ "learning_rate": 0.0006,
+ "loss": 4.146831512451172,
+ "step": 991
+ },
+ {
+ "epoch": 13.782874617737003,
+ "grad_norm": 0.2413124144077301,
+ "learning_rate": 0.0006,
+ "loss": 4.136909008026123,
+ "step": 992
+ },
+ {
+ "epoch": 13.796854521625164,
+ "grad_norm": 0.2603479325771332,
+ "learning_rate": 0.0006,
+ "loss": 4.12525749206543,
+ "step": 993
+ },
+ {
+ "epoch": 13.810834425513324,
+ "grad_norm": 0.26246970891952515,
+ "learning_rate": 0.0006,
+ "loss": 4.114049434661865,
+ "step": 994
+ },
+ {
+ "epoch": 13.824814329401486,
+ "grad_norm": 0.27031877636909485,
+ "learning_rate": 0.0006,
+ "loss": 4.1646552085876465,
+ "step": 995
+ },
+ {
+ "epoch": 13.838794233289645,
+ "grad_norm": 0.2499857395887375,
+ "learning_rate": 0.0006,
+ "loss": 4.139284133911133,
+ "step": 996
+ },
+ {
+ "epoch": 13.852774137177807,
+ "grad_norm": 0.22026537358760834,
+ "learning_rate": 0.0006,
+ "loss": 4.142191410064697,
+ "step": 997
+ },
+ {
+ "epoch": 13.866754041065967,
+ "grad_norm": 0.23738551139831543,
+ "learning_rate": 0.0006,
+ "loss": 4.1422882080078125,
+ "step": 998
+ },
+ {
+ "epoch": 13.880733944954128,
+ "grad_norm": 0.2416357398033142,
+ "learning_rate": 0.0006,
+ "loss": 4.14063835144043,
+ "step": 999
+ },
+ {
+ "epoch": 13.89471384884229,
+ "grad_norm": 0.33822184801101685,
+ "learning_rate": 0.0006,
+ "loss": 4.12839412689209,
+ "step": 1000
+ },
+ {
+ "epoch": 13.90869375273045,
+ "grad_norm": 0.3409678339958191,
+ "learning_rate": 0.0006,
+ "loss": 4.145351886749268,
+ "step": 1001
+ },
+ {
+ "epoch": 13.922673656618612,
+ "grad_norm": 0.2467597872018814,
+ "learning_rate": 0.0006,
+ "loss": 4.155339241027832,
+ "step": 1002
+ },
+ {
+ "epoch": 13.936653560506771,
+ "grad_norm": 0.2314649075269699,
+ "learning_rate": 0.0006,
+ "loss": 4.130176067352295,
+ "step": 1003
+ },
+ {
+ "epoch": 13.950633464394933,
+ "grad_norm": 0.23701290786266327,
+ "learning_rate": 0.0006,
+ "loss": 4.19205379486084,
+ "step": 1004
+ },
+ {
+ "epoch": 13.964613368283093,
+ "grad_norm": 0.2466491460800171,
+ "learning_rate": 0.0006,
+ "loss": 4.118908882141113,
+ "step": 1005
+ },
+ {
+ "epoch": 13.978593272171254,
+ "grad_norm": 0.23746836185455322,
+ "learning_rate": 0.0006,
+ "loss": 4.16111946105957,
+ "step": 1006
+ },
+ {
+ "epoch": 13.992573176059414,
+ "grad_norm": 0.24497751891613007,
+ "learning_rate": 0.0006,
+ "loss": 4.148624420166016,
+ "step": 1007
+ },
+ {
+ "epoch": 14.0,
+ "grad_norm": 0.25735899806022644,
+ "learning_rate": 0.0006,
+ "loss": 4.12002420425415,
+ "step": 1008
+ },
+ {
+ "epoch": 14.0,
+ "eval_loss": 4.335351467132568,
+ "eval_runtime": 44.0523,
+ "eval_samples_per_second": 55.434,
+ "eval_steps_per_second": 3.473,
+ "step": 1008
+ },
+ {
+ "epoch": 14.013979903888162,
+ "grad_norm": 0.24570082128047943,
+ "learning_rate": 0.0006,
+ "loss": 4.1036176681518555,
+ "step": 1009
+ },
+ {
+ "epoch": 14.027959807776321,
+ "grad_norm": 0.2525855302810669,
+ "learning_rate": 0.0006,
+ "loss": 4.142077445983887,
+ "step": 1010
+ },
+ {
+ "epoch": 14.041939711664483,
+ "grad_norm": 0.2701111435890198,
+ "learning_rate": 0.0006,
+ "loss": 4.096988677978516,
+ "step": 1011
+ },
+ {
+ "epoch": 14.055919615552643,
+ "grad_norm": 0.28173309564590454,
+ "learning_rate": 0.0006,
+ "loss": 4.148448944091797,
+ "step": 1012
+ },
+ {
+ "epoch": 14.069899519440805,
+ "grad_norm": 0.2651294469833374,
+ "learning_rate": 0.0006,
+ "loss": 4.121731281280518,
+ "step": 1013
+ },
+ {
+ "epoch": 14.083879423328964,
+ "grad_norm": 0.21160121262073517,
+ "learning_rate": 0.0006,
+ "loss": 4.108980178833008,
+ "step": 1014
+ },
+ {
+ "epoch": 14.097859327217126,
+ "grad_norm": 0.24786953628063202,
+ "learning_rate": 0.0006,
+ "loss": 4.133942604064941,
+ "step": 1015
+ },
+ {
+ "epoch": 14.111839231105286,
+ "grad_norm": 0.2722747027873993,
+ "learning_rate": 0.0006,
+ "loss": 4.115242958068848,
+ "step": 1016
+ },
+ {
+ "epoch": 14.125819134993447,
+ "grad_norm": 0.273360013961792,
+ "learning_rate": 0.0006,
+ "loss": 4.059296607971191,
+ "step": 1017
+ },
+ {
+ "epoch": 14.139799038881607,
+ "grad_norm": 0.2541784942150116,
+ "learning_rate": 0.0006,
+ "loss": 4.118365287780762,
+ "step": 1018
+ },
+ {
+ "epoch": 14.153778942769769,
+ "grad_norm": 0.23806381225585938,
+ "learning_rate": 0.0006,
+ "loss": 4.102812767028809,
+ "step": 1019
+ },
+ {
+ "epoch": 14.167758846657929,
+ "grad_norm": 0.2541005313396454,
+ "learning_rate": 0.0006,
+ "loss": 4.093264579772949,
+ "step": 1020
+ },
+ {
+ "epoch": 14.18173875054609,
+ "grad_norm": 0.2619539499282837,
+ "learning_rate": 0.0006,
+ "loss": 4.114917278289795,
+ "step": 1021
+ },
+ {
+ "epoch": 14.19571865443425,
+ "grad_norm": 0.2466963529586792,
+ "learning_rate": 0.0006,
+ "loss": 4.098258972167969,
+ "step": 1022
+ },
+ {
+ "epoch": 14.209698558322412,
+ "grad_norm": 0.24341611564159393,
+ "learning_rate": 0.0006,
+ "loss": 4.109346389770508,
+ "step": 1023
+ },
+ {
+ "epoch": 14.223678462210572,
+ "grad_norm": 0.23977765440940857,
+ "learning_rate": 0.0006,
+ "loss": 4.106716156005859,
+ "step": 1024
+ },
+ {
+ "epoch": 14.237658366098733,
+ "grad_norm": 0.253528356552124,
+ "learning_rate": 0.0006,
+ "loss": 4.102226257324219,
+ "step": 1025
+ },
+ {
+ "epoch": 14.251638269986893,
+ "grad_norm": 0.26954543590545654,
+ "learning_rate": 0.0006,
+ "loss": 4.107413291931152,
+ "step": 1026
+ },
+ {
+ "epoch": 14.265618173875055,
+ "grad_norm": 0.2610514760017395,
+ "learning_rate": 0.0006,
+ "loss": 4.110824108123779,
+ "step": 1027
+ },
+ {
+ "epoch": 14.279598077763215,
+ "grad_norm": 0.2579168677330017,
+ "learning_rate": 0.0006,
+ "loss": 4.082438945770264,
+ "step": 1028
+ },
+ {
+ "epoch": 14.293577981651376,
+ "grad_norm": 0.26916536688804626,
+ "learning_rate": 0.0006,
+ "loss": 4.075734615325928,
+ "step": 1029
+ },
+ {
+ "epoch": 14.307557885539538,
+ "grad_norm": 0.2998618185520172,
+ "learning_rate": 0.0006,
+ "loss": 4.088419437408447,
+ "step": 1030
+ },
+ {
+ "epoch": 14.321537789427698,
+ "grad_norm": 0.3162737190723419,
+ "learning_rate": 0.0006,
+ "loss": 4.125833034515381,
+ "step": 1031
+ },
+ {
+ "epoch": 14.33551769331586,
+ "grad_norm": 0.318601131439209,
+ "learning_rate": 0.0006,
+ "loss": 4.077424049377441,
+ "step": 1032
+ },
+ {
+ "epoch": 14.349497597204019,
+ "grad_norm": 0.32113415002822876,
+ "learning_rate": 0.0006,
+ "loss": 4.113360404968262,
+ "step": 1033
+ },
+ {
+ "epoch": 14.36347750109218,
+ "grad_norm": 0.3150886297225952,
+ "learning_rate": 0.0006,
+ "loss": 4.100013732910156,
+ "step": 1034
+ },
+ {
+ "epoch": 14.37745740498034,
+ "grad_norm": 0.29279956221580505,
+ "learning_rate": 0.0006,
+ "loss": 4.136394500732422,
+ "step": 1035
+ },
+ {
+ "epoch": 14.391437308868502,
+ "grad_norm": 0.28532543778419495,
+ "learning_rate": 0.0006,
+ "loss": 4.138948440551758,
+ "step": 1036
+ },
+ {
+ "epoch": 14.405417212756662,
+ "grad_norm": 0.2825978398323059,
+ "learning_rate": 0.0006,
+ "loss": 4.112217903137207,
+ "step": 1037
+ },
+ {
+ "epoch": 14.419397116644824,
+ "grad_norm": 0.2891198694705963,
+ "learning_rate": 0.0006,
+ "loss": 4.102682113647461,
+ "step": 1038
+ },
+ {
+ "epoch": 14.433377020532983,
+ "grad_norm": 0.2917391061782837,
+ "learning_rate": 0.0006,
+ "loss": 4.120752811431885,
+ "step": 1039
+ },
+ {
+ "epoch": 14.447356924421145,
+ "grad_norm": 0.2589806914329529,
+ "learning_rate": 0.0006,
+ "loss": 4.130519390106201,
+ "step": 1040
+ },
+ {
+ "epoch": 14.461336828309305,
+ "grad_norm": 0.2674788534641266,
+ "learning_rate": 0.0006,
+ "loss": 4.130382537841797,
+ "step": 1041
+ },
+ {
+ "epoch": 14.475316732197467,
+ "grad_norm": 0.2820362150669098,
+ "learning_rate": 0.0006,
+ "loss": 4.13947868347168,
+ "step": 1042
+ },
+ {
+ "epoch": 14.489296636085626,
+ "grad_norm": 0.2650109529495239,
+ "learning_rate": 0.0006,
+ "loss": 4.130346775054932,
+ "step": 1043
+ },
+ {
+ "epoch": 14.503276539973788,
+ "grad_norm": 0.29137638211250305,
+ "learning_rate": 0.0006,
+ "loss": 4.055751800537109,
+ "step": 1044
+ },
+ {
+ "epoch": 14.517256443861948,
+ "grad_norm": 0.3232433497905731,
+ "learning_rate": 0.0006,
+ "loss": 4.114810943603516,
+ "step": 1045
+ },
+ {
+ "epoch": 14.53123634775011,
+ "grad_norm": 0.2724473476409912,
+ "learning_rate": 0.0006,
+ "loss": 4.088351249694824,
+ "step": 1046
+ },
+ {
+ "epoch": 14.54521625163827,
+ "grad_norm": 0.23994430899620056,
+ "learning_rate": 0.0006,
+ "loss": 4.110936164855957,
+ "step": 1047
+ },
+ {
+ "epoch": 14.55919615552643,
+ "grad_norm": 0.2422720044851303,
+ "learning_rate": 0.0006,
+ "loss": 4.132844924926758,
+ "step": 1048
+ },
+ {
+ "epoch": 14.57317605941459,
+ "grad_norm": 0.21148815751075745,
+ "learning_rate": 0.0006,
+ "loss": 4.102499961853027,
+ "step": 1049
+ },
+ {
+ "epoch": 14.587155963302752,
+ "grad_norm": 0.22221639752388,
+ "learning_rate": 0.0006,
+ "loss": 4.126241683959961,
+ "step": 1050
+ },
+ {
+ "epoch": 14.601135867190912,
+ "grad_norm": 0.2538735866546631,
+ "learning_rate": 0.0006,
+ "loss": 4.116817951202393,
+ "step": 1051
+ },
+ {
+ "epoch": 14.615115771079074,
+ "grad_norm": 0.2555900514125824,
+ "learning_rate": 0.0006,
+ "loss": 4.106309413909912,
+ "step": 1052
+ },
+ {
+ "epoch": 14.629095674967235,
+ "grad_norm": 0.24753783643245697,
+ "learning_rate": 0.0006,
+ "loss": 4.1015119552612305,
+ "step": 1053
+ },
+ {
+ "epoch": 14.643075578855395,
+ "grad_norm": 0.238885298371315,
+ "learning_rate": 0.0006,
+ "loss": 4.120419502258301,
+ "step": 1054
+ },
+ {
+ "epoch": 14.657055482743557,
+ "grad_norm": 0.22693610191345215,
+ "learning_rate": 0.0006,
+ "loss": 4.084968566894531,
+ "step": 1055
+ },
+ {
+ "epoch": 14.671035386631717,
+ "grad_norm": 0.2100025862455368,
+ "learning_rate": 0.0006,
+ "loss": 4.108001708984375,
+ "step": 1056
+ },
+ {
+ "epoch": 14.685015290519878,
+ "grad_norm": 0.20437054336071014,
+ "learning_rate": 0.0006,
+ "loss": 4.151417255401611,
+ "step": 1057
+ },
+ {
+ "epoch": 14.698995194408038,
+ "grad_norm": 0.1926720291376114,
+ "learning_rate": 0.0006,
+ "loss": 4.091334342956543,
+ "step": 1058
+ },
+ {
+ "epoch": 14.7129750982962,
+ "grad_norm": 0.2120140641927719,
+ "learning_rate": 0.0006,
+ "loss": 4.111706256866455,
+ "step": 1059
+ },
+ {
+ "epoch": 14.72695500218436,
+ "grad_norm": 0.22877076268196106,
+ "learning_rate": 0.0006,
+ "loss": 4.123166084289551,
+ "step": 1060
+ },
+ {
+ "epoch": 14.740934906072521,
+ "grad_norm": 0.22149473428726196,
+ "learning_rate": 0.0006,
+ "loss": 4.099740028381348,
+ "step": 1061
+ },
+ {
+ "epoch": 14.754914809960681,
+ "grad_norm": 0.2351604402065277,
+ "learning_rate": 0.0006,
+ "loss": 4.066174507141113,
+ "step": 1062
+ },
+ {
+ "epoch": 14.768894713848843,
+ "grad_norm": 0.22895802557468414,
+ "learning_rate": 0.0006,
+ "loss": 4.101897239685059,
+ "step": 1063
+ },
+ {
+ "epoch": 14.782874617737003,
+ "grad_norm": 0.22050750255584717,
+ "learning_rate": 0.0006,
+ "loss": 4.122953414916992,
+ "step": 1064
+ },
+ {
+ "epoch": 14.796854521625164,
+ "grad_norm": 0.23255324363708496,
+ "learning_rate": 0.0006,
+ "loss": 4.11297607421875,
+ "step": 1065
+ },
+ {
+ "epoch": 14.810834425513324,
+ "grad_norm": 0.24522703886032104,
+ "learning_rate": 0.0006,
+ "loss": 4.131030082702637,
+ "step": 1066
+ },
+ {
+ "epoch": 14.824814329401486,
+ "grad_norm": 0.2492702752351761,
+ "learning_rate": 0.0006,
+ "loss": 4.076324939727783,
+ "step": 1067
+ },
+ {
+ "epoch": 14.838794233289645,
+ "grad_norm": 0.24410948157310486,
+ "learning_rate": 0.0006,
+ "loss": 4.109020709991455,
+ "step": 1068
+ },
+ {
+ "epoch": 14.852774137177807,
+ "grad_norm": 0.2463168203830719,
+ "learning_rate": 0.0006,
+ "loss": 4.135679244995117,
+ "step": 1069
+ },
+ {
+ "epoch": 14.866754041065967,
+ "grad_norm": 0.2563146650791168,
+ "learning_rate": 0.0006,
+ "loss": 4.0958027839660645,
+ "step": 1070
+ },
+ {
+ "epoch": 14.880733944954128,
+ "grad_norm": 0.261167049407959,
+ "learning_rate": 0.0006,
+ "loss": 4.114803314208984,
+ "step": 1071
+ },
+ {
+ "epoch": 14.89471384884229,
+ "grad_norm": 0.2593795955181122,
+ "learning_rate": 0.0006,
+ "loss": 4.1210618019104,
+ "step": 1072
+ },
+ {
+ "epoch": 14.90869375273045,
+ "grad_norm": 0.27184173464775085,
+ "learning_rate": 0.0006,
+ "loss": 4.095145225524902,
+ "step": 1073
+ },
+ {
+ "epoch": 14.922673656618612,
+ "grad_norm": 0.25289732217788696,
+ "learning_rate": 0.0006,
+ "loss": 4.107388973236084,
+ "step": 1074
+ },
+ {
+ "epoch": 14.936653560506771,
+ "grad_norm": 0.2176840454339981,
+ "learning_rate": 0.0006,
+ "loss": 4.105966567993164,
+ "step": 1075
+ },
+ {
+ "epoch": 14.950633464394933,
+ "grad_norm": 0.20930173993110657,
+ "learning_rate": 0.0006,
+ "loss": 4.126853942871094,
+ "step": 1076
+ },
+ {
+ "epoch": 14.964613368283093,
+ "grad_norm": 0.20850051939487457,
+ "learning_rate": 0.0006,
+ "loss": 4.074934959411621,
+ "step": 1077
+ },
+ {
+ "epoch": 14.978593272171254,
+ "grad_norm": 0.21987544000148773,
+ "learning_rate": 0.0006,
+ "loss": 4.123321533203125,
+ "step": 1078
+ },
+ {
+ "epoch": 14.992573176059414,
+ "grad_norm": 0.23821689188480377,
+ "learning_rate": 0.0006,
+ "loss": 4.082647323608398,
+ "step": 1079
+ },
+ {
+ "epoch": 15.0,
+ "grad_norm": 0.2590881288051605,
+ "learning_rate": 0.0006,
+ "loss": 4.113482475280762,
+ "step": 1080
+ },
+ {
+ "epoch": 15.0,
+ "eval_loss": 4.286936283111572,
+ "eval_runtime": 44.2665,
+ "eval_samples_per_second": 55.166,
+ "eval_steps_per_second": 3.456,
+ "step": 1080
+ },
+ {
+ "epoch": 15.013979903888162,
+ "grad_norm": 0.27885961532592773,
+ "learning_rate": 0.0006,
+ "loss": 4.0825958251953125,
+ "step": 1081
+ },
+ {
+ "epoch": 15.027959807776321,
+ "grad_norm": 0.2751246690750122,
+ "learning_rate": 0.0006,
+ "loss": 4.049782752990723,
+ "step": 1082
+ },
+ {
+ "epoch": 15.041939711664483,
+ "grad_norm": 0.25238561630249023,
+ "learning_rate": 0.0006,
+ "loss": 4.067366600036621,
+ "step": 1083
+ },
+ {
+ "epoch": 15.055919615552643,
+ "grad_norm": 0.27481040358543396,
+ "learning_rate": 0.0006,
+ "loss": 4.089946746826172,
+ "step": 1084
+ },
+ {
+ "epoch": 15.069899519440805,
+ "grad_norm": 0.2666703164577484,
+ "learning_rate": 0.0006,
+ "loss": 4.071957588195801,
+ "step": 1085
+ },
+ {
+ "epoch": 15.083879423328964,
+ "grad_norm": 0.2532065212726593,
+ "learning_rate": 0.0006,
+ "loss": 4.091561794281006,
+ "step": 1086
+ },
+ {
+ "epoch": 15.097859327217126,
+ "grad_norm": 0.23562374711036682,
+ "learning_rate": 0.0006,
+ "loss": 4.074953079223633,
+ "step": 1087
+ },
+ {
+ "epoch": 15.111839231105286,
+ "grad_norm": 0.2498065084218979,
+ "learning_rate": 0.0006,
+ "loss": 4.056004047393799,
+ "step": 1088
+ },
+ {
+ "epoch": 15.125819134993447,
+ "grad_norm": 0.257046639919281,
+ "learning_rate": 0.0006,
+ "loss": 4.044149875640869,
+ "step": 1089
+ },
+ {
+ "epoch": 15.139799038881607,
+ "grad_norm": 0.2417808622121811,
+ "learning_rate": 0.0006,
+ "loss": 4.071811676025391,
+ "step": 1090
+ },
+ {
+ "epoch": 15.153778942769769,
+ "grad_norm": 0.24742013216018677,
+ "learning_rate": 0.0006,
+ "loss": 4.081482887268066,
+ "step": 1091
+ },
+ {
+ "epoch": 15.167758846657929,
+ "grad_norm": 0.2610231637954712,
+ "learning_rate": 0.0006,
+ "loss": 4.06953763961792,
+ "step": 1092
+ },
+ {
+ "epoch": 15.18173875054609,
+ "grad_norm": 0.24688200652599335,
+ "learning_rate": 0.0006,
+ "loss": 4.079700469970703,
+ "step": 1093
+ },
+ {
+ "epoch": 15.19571865443425,
+ "grad_norm": 0.2650167942047119,
+ "learning_rate": 0.0006,
+ "loss": 4.082088947296143,
+ "step": 1094
+ },
+ {
+ "epoch": 15.209698558322412,
+ "grad_norm": 0.25913330912590027,
+ "learning_rate": 0.0006,
+ "loss": 4.081713676452637,
+ "step": 1095
+ },
+ {
+ "epoch": 15.223678462210572,
+ "grad_norm": 0.2547631561756134,
+ "learning_rate": 0.0006,
+ "loss": 4.073573112487793,
+ "step": 1096
+ },
+ {
+ "epoch": 15.237658366098733,
+ "grad_norm": 0.2732609510421753,
+ "learning_rate": 0.0006,
+ "loss": 4.10186767578125,
+ "step": 1097
+ },
+ {
+ "epoch": 15.251638269986893,
+ "grad_norm": 0.2990017533302307,
+ "learning_rate": 0.0006,
+ "loss": 4.085466384887695,
+ "step": 1098
+ },
+ {
+ "epoch": 15.265618173875055,
+ "grad_norm": 0.30252209305763245,
+ "learning_rate": 0.0006,
+ "loss": 4.077337265014648,
+ "step": 1099
+ },
+ {
+ "epoch": 15.279598077763215,
+ "grad_norm": 0.30046045780181885,
+ "learning_rate": 0.0006,
+ "loss": 4.0895891189575195,
+ "step": 1100
+ },
+ {
+ "epoch": 15.293577981651376,
+ "grad_norm": 0.2779843211174011,
+ "learning_rate": 0.0006,
+ "loss": 4.060354709625244,
+ "step": 1101
+ },
+ {
+ "epoch": 15.307557885539538,
+ "grad_norm": 0.26914986968040466,
+ "learning_rate": 0.0006,
+ "loss": 4.07314395904541,
+ "step": 1102
+ },
+ {
+ "epoch": 15.321537789427698,
+ "grad_norm": 0.24605873227119446,
+ "learning_rate": 0.0006,
+ "loss": 4.051377296447754,
+ "step": 1103
+ },
+ {
+ "epoch": 15.33551769331586,
+ "grad_norm": 0.25634095072746277,
+ "learning_rate": 0.0006,
+ "loss": 4.082427024841309,
+ "step": 1104
+ },
+ {
+ "epoch": 15.349497597204019,
+ "grad_norm": 0.2888158857822418,
+ "learning_rate": 0.0006,
+ "loss": 4.074253082275391,
+ "step": 1105
+ },
+ {
+ "epoch": 15.36347750109218,
+ "grad_norm": 0.2758261561393738,
+ "learning_rate": 0.0006,
+ "loss": 4.08344841003418,
+ "step": 1106
+ },
+ {
+ "epoch": 15.37745740498034,
+ "grad_norm": 0.26937270164489746,
+ "learning_rate": 0.0006,
+ "loss": 4.063424587249756,
+ "step": 1107
+ },
+ {
+ "epoch": 15.391437308868502,
+ "grad_norm": 0.2739955484867096,
+ "learning_rate": 0.0006,
+ "loss": 4.08005952835083,
+ "step": 1108
+ },
+ {
+ "epoch": 15.405417212756662,
+ "grad_norm": 0.2635386288166046,
+ "learning_rate": 0.0006,
+ "loss": 4.087360382080078,
+ "step": 1109
+ },
+ {
+ "epoch": 15.419397116644824,
+ "grad_norm": 0.2619768977165222,
+ "learning_rate": 0.0006,
+ "loss": 4.072653770446777,
+ "step": 1110
+ },
+ {
+ "epoch": 15.433377020532983,
+ "grad_norm": 0.24154804646968842,
+ "learning_rate": 0.0006,
+ "loss": 4.084464073181152,
+ "step": 1111
+ },
+ {
+ "epoch": 15.447356924421145,
+ "grad_norm": 0.24236027896404266,
+ "learning_rate": 0.0006,
+ "loss": 4.078777313232422,
+ "step": 1112
+ },
+ {
+ "epoch": 15.461336828309305,
+ "grad_norm": 0.24653038382530212,
+ "learning_rate": 0.0006,
+ "loss": 4.075024604797363,
+ "step": 1113
+ },
+ {
+ "epoch": 15.475316732197467,
+ "grad_norm": 0.27106523513793945,
+ "learning_rate": 0.0006,
+ "loss": 4.060937881469727,
+ "step": 1114
+ },
+ {
+ "epoch": 15.489296636085626,
+ "grad_norm": 0.25109633803367615,
+ "learning_rate": 0.0006,
+ "loss": 4.081971168518066,
+ "step": 1115
+ },
+ {
+ "epoch": 15.503276539973788,
+ "grad_norm": 0.23452287912368774,
+ "learning_rate": 0.0006,
+ "loss": 4.0762834548950195,
+ "step": 1116
+ },
+ {
+ "epoch": 15.517256443861948,
+ "grad_norm": 0.25415024161338806,
+ "learning_rate": 0.0006,
+ "loss": 4.069386959075928,
+ "step": 1117
+ },
+ {
+ "epoch": 15.53123634775011,
+ "grad_norm": 0.25448229908943176,
+ "learning_rate": 0.0006,
+ "loss": 4.075098514556885,
+ "step": 1118
+ },
+ {
+ "epoch": 15.54521625163827,
+ "grad_norm": 0.25679755210876465,
+ "learning_rate": 0.0006,
+ "loss": 4.097431182861328,
+ "step": 1119
+ },
+ {
+ "epoch": 15.55919615552643,
+ "grad_norm": 0.25973212718963623,
+ "learning_rate": 0.0006,
+ "loss": 4.058948516845703,
+ "step": 1120
+ },
+ {
+ "epoch": 15.57317605941459,
+ "grad_norm": 0.24511456489562988,
+ "learning_rate": 0.0006,
+ "loss": 4.092263698577881,
+ "step": 1121
+ },
+ {
+ "epoch": 15.587155963302752,
+ "grad_norm": 0.22949442267417908,
+ "learning_rate": 0.0006,
+ "loss": 4.0526604652404785,
+ "step": 1122
+ },
+ {
+ "epoch": 15.601135867190912,
+ "grad_norm": 0.22486285865306854,
+ "learning_rate": 0.0006,
+ "loss": 4.051939010620117,
+ "step": 1123
+ },
+ {
+ "epoch": 15.615115771079074,
+ "grad_norm": 0.22183601558208466,
+ "learning_rate": 0.0006,
+ "loss": 4.065430641174316,
+ "step": 1124
+ },
+ {
+ "epoch": 15.629095674967235,
+ "grad_norm": 0.2531328797340393,
+ "learning_rate": 0.0006,
+ "loss": 4.069165229797363,
+ "step": 1125
+ },
+ {
+ "epoch": 15.643075578855395,
+ "grad_norm": 0.24403320252895355,
+ "learning_rate": 0.0006,
+ "loss": 4.055041790008545,
+ "step": 1126
+ },
+ {
+ "epoch": 15.657055482743557,
+ "grad_norm": 0.24504756927490234,
+ "learning_rate": 0.0006,
+ "loss": 4.035850524902344,
+ "step": 1127
+ },
+ {
+ "epoch": 15.671035386631717,
+ "grad_norm": 0.23812057077884674,
+ "learning_rate": 0.0006,
+ "loss": 4.049278259277344,
+ "step": 1128
+ },
+ {
+ "epoch": 15.685015290519878,
+ "grad_norm": 0.23694153130054474,
+ "learning_rate": 0.0006,
+ "loss": 4.065816402435303,
+ "step": 1129
+ },
+ {
+ "epoch": 15.698995194408038,
+ "grad_norm": 0.23252786695957184,
+ "learning_rate": 0.0006,
+ "loss": 4.05952262878418,
+ "step": 1130
+ },
+ {
+ "epoch": 15.7129750982962,
+ "grad_norm": 0.2243805080652237,
+ "learning_rate": 0.0006,
+ "loss": 4.058291435241699,
+ "step": 1131
+ },
+ {
+ "epoch": 15.72695500218436,
+ "grad_norm": 0.2200988084077835,
+ "learning_rate": 0.0006,
+ "loss": 4.040788650512695,
+ "step": 1132
+ },
+ {
+ "epoch": 15.740934906072521,
+ "grad_norm": 0.21460631489753723,
+ "learning_rate": 0.0006,
+ "loss": 4.072552680969238,
+ "step": 1133
+ },
+ {
+ "epoch": 15.754914809960681,
+ "grad_norm": 0.2056441456079483,
+ "learning_rate": 0.0006,
+ "loss": 4.059467315673828,
+ "step": 1134
+ },
+ {
+ "epoch": 15.768894713848843,
+ "grad_norm": 0.2068045437335968,
+ "learning_rate": 0.0006,
+ "loss": 4.063803195953369,
+ "step": 1135
+ },
+ {
+ "epoch": 15.782874617737003,
+ "grad_norm": 0.21307601034641266,
+ "learning_rate": 0.0006,
+ "loss": 4.093092918395996,
+ "step": 1136
+ },
+ {
+ "epoch": 15.796854521625164,
+ "grad_norm": 0.20729634165763855,
+ "learning_rate": 0.0006,
+ "loss": 4.066030502319336,
+ "step": 1137
+ },
+ {
+ "epoch": 15.810834425513324,
+ "grad_norm": 0.2097514122724533,
+ "learning_rate": 0.0006,
+ "loss": 4.077326774597168,
+ "step": 1138
+ },
+ {
+ "epoch": 15.824814329401486,
+ "grad_norm": 0.21884000301361084,
+ "learning_rate": 0.0006,
+ "loss": 4.0595598220825195,
+ "step": 1139
+ },
+ {
+ "epoch": 15.838794233289645,
+ "grad_norm": 0.22220250964164734,
+ "learning_rate": 0.0006,
+ "loss": 4.061574459075928,
+ "step": 1140
+ },
+ {
+ "epoch": 15.852774137177807,
+ "grad_norm": 0.23189949989318848,
+ "learning_rate": 0.0006,
+ "loss": 4.0504045486450195,
+ "step": 1141
+ },
+ {
+ "epoch": 15.866754041065967,
+ "grad_norm": 0.226649671792984,
+ "learning_rate": 0.0006,
+ "loss": 4.060986518859863,
+ "step": 1142
+ },
+ {
+ "epoch": 15.880733944954128,
+ "grad_norm": 0.2456834763288498,
+ "learning_rate": 0.0006,
+ "loss": 4.038525581359863,
+ "step": 1143
+ },
+ {
+ "epoch": 15.89471384884229,
+ "grad_norm": 0.2818352282047272,
+ "learning_rate": 0.0006,
+ "loss": 4.062709331512451,
+ "step": 1144
+ },
+ {
+ "epoch": 15.90869375273045,
+ "grad_norm": 0.2850170135498047,
+ "learning_rate": 0.0006,
+ "loss": 4.0683274269104,
+ "step": 1145
+ },
+ {
+ "epoch": 15.922673656618612,
+ "grad_norm": 0.27691730856895447,
+ "learning_rate": 0.0006,
+ "loss": 4.076540470123291,
+ "step": 1146
+ },
+ {
+ "epoch": 15.936653560506771,
+ "grad_norm": 0.2685548961162567,
+ "learning_rate": 0.0006,
+ "loss": 4.048116683959961,
+ "step": 1147
+ },
+ {
+ "epoch": 15.950633464394933,
+ "grad_norm": 0.2452288419008255,
+ "learning_rate": 0.0006,
+ "loss": 4.06640625,
+ "step": 1148
+ },
+ {
+ "epoch": 15.964613368283093,
+ "grad_norm": 0.2601441740989685,
+ "learning_rate": 0.0006,
+ "loss": 4.073277473449707,
+ "step": 1149
+ },
+ {
+ "epoch": 15.978593272171254,
+ "grad_norm": 0.2748197913169861,
+ "learning_rate": 0.0006,
+ "loss": 4.0332536697387695,
+ "step": 1150
+ },
+ {
+ "epoch": 15.992573176059414,
+ "grad_norm": 0.27249959111213684,
+ "learning_rate": 0.0006,
+ "loss": 3.9952516555786133,
+ "step": 1151
+ },
+ {
+ "epoch": 16.0,
+ "grad_norm": 0.3475601375102997,
+ "learning_rate": 0.0006,
+ "loss": 4.040761947631836,
+ "step": 1152
+ },
+ {
+ "epoch": 16.0,
+ "eval_loss": 4.237997531890869,
+ "eval_runtime": 43.8692,
+ "eval_samples_per_second": 55.665,
+ "eval_steps_per_second": 3.488,
+ "step": 1152
+ },
+ {
+ "epoch": 16.01397990388816,
+ "grad_norm": 0.3365611433982849,
+ "learning_rate": 0.0006,
+ "loss": 4.031302452087402,
+ "step": 1153
+ },
+ {
+ "epoch": 16.027959807776323,
+ "grad_norm": 0.3020530641078949,
+ "learning_rate": 0.0006,
+ "loss": 4.036273956298828,
+ "step": 1154
+ },
+ {
+ "epoch": 16.041939711664483,
+ "grad_norm": 0.25277993083000183,
+ "learning_rate": 0.0006,
+ "loss": 4.007067680358887,
+ "step": 1155
+ },
+ {
+ "epoch": 16.055919615552643,
+ "grad_norm": 0.24762840569019318,
+ "learning_rate": 0.0006,
+ "loss": 4.046561241149902,
+ "step": 1156
+ },
+ {
+ "epoch": 16.069899519440803,
+ "grad_norm": 0.25236397981643677,
+ "learning_rate": 0.0006,
+ "loss": 4.061616897583008,
+ "step": 1157
+ },
+ {
+ "epoch": 16.083879423328966,
+ "grad_norm": 0.22789105772972107,
+ "learning_rate": 0.0006,
+ "loss": 4.010061740875244,
+ "step": 1158
+ },
+ {
+ "epoch": 16.097859327217126,
+ "grad_norm": 0.21866244077682495,
+ "learning_rate": 0.0006,
+ "loss": 4.0181097984313965,
+ "step": 1159
+ },
+ {
+ "epoch": 16.111839231105286,
+ "grad_norm": 0.21889029443264008,
+ "learning_rate": 0.0006,
+ "loss": 4.012239456176758,
+ "step": 1160
+ },
+ {
+ "epoch": 16.125819134993446,
+ "grad_norm": 0.23002485930919647,
+ "learning_rate": 0.0006,
+ "loss": 4.034092426300049,
+ "step": 1161
+ },
+ {
+ "epoch": 16.13979903888161,
+ "grad_norm": 0.2271798551082611,
+ "learning_rate": 0.0006,
+ "loss": 4.026222229003906,
+ "step": 1162
+ },
+ {
+ "epoch": 16.15377894276977,
+ "grad_norm": 0.238200843334198,
+ "learning_rate": 0.0006,
+ "loss": 4.044692039489746,
+ "step": 1163
+ },
+ {
+ "epoch": 16.16775884665793,
+ "grad_norm": 0.2281467169523239,
+ "learning_rate": 0.0006,
+ "loss": 4.032305717468262,
+ "step": 1164
+ },
+ {
+ "epoch": 16.18173875054609,
+ "grad_norm": 0.2213946431875229,
+ "learning_rate": 0.0006,
+ "loss": 4.048737525939941,
+ "step": 1165
+ },
+ {
+ "epoch": 16.195718654434252,
+ "grad_norm": 0.26638558506965637,
+ "learning_rate": 0.0006,
+ "loss": 4.006335258483887,
+ "step": 1166
+ },
+ {
+ "epoch": 16.209698558322412,
+ "grad_norm": 0.2780219316482544,
+ "learning_rate": 0.0006,
+ "loss": 4.049234390258789,
+ "step": 1167
+ },
+ {
+ "epoch": 16.22367846221057,
+ "grad_norm": 0.27425870299339294,
+ "learning_rate": 0.0006,
+ "loss": 4.017177104949951,
+ "step": 1168
+ },
+ {
+ "epoch": 16.23765836609873,
+ "grad_norm": 0.2596667408943176,
+ "learning_rate": 0.0006,
+ "loss": 4.022942543029785,
+ "step": 1169
+ },
+ {
+ "epoch": 16.251638269986895,
+ "grad_norm": 0.26972314715385437,
+ "learning_rate": 0.0006,
+ "loss": 4.035310745239258,
+ "step": 1170
+ },
+ {
+ "epoch": 16.265618173875055,
+ "grad_norm": 0.2677772045135498,
+ "learning_rate": 0.0006,
+ "loss": 4.0280561447143555,
+ "step": 1171
+ },
+ {
+ "epoch": 16.279598077763215,
+ "grad_norm": 0.25433358550071716,
+ "learning_rate": 0.0006,
+ "loss": 4.03616189956665,
+ "step": 1172
+ },
+ {
+ "epoch": 16.293577981651374,
+ "grad_norm": 0.2583644688129425,
+ "learning_rate": 0.0006,
+ "loss": 4.073624134063721,
+ "step": 1173
+ },
+ {
+ "epoch": 16.307557885539538,
+ "grad_norm": 0.25437524914741516,
+ "learning_rate": 0.0006,
+ "loss": 4.057926654815674,
+ "step": 1174
+ },
+ {
+ "epoch": 16.321537789427698,
+ "grad_norm": 0.2819201350212097,
+ "learning_rate": 0.0006,
+ "loss": 4.020838737487793,
+ "step": 1175
+ },
+ {
+ "epoch": 16.335517693315857,
+ "grad_norm": 0.32689282298088074,
+ "learning_rate": 0.0006,
+ "loss": 4.062448501586914,
+ "step": 1176
+ },
+ {
+ "epoch": 16.34949759720402,
+ "grad_norm": 0.33002278208732605,
+ "learning_rate": 0.0006,
+ "loss": 4.052059173583984,
+ "step": 1177
+ },
+ {
+ "epoch": 16.36347750109218,
+ "grad_norm": 0.32472696900367737,
+ "learning_rate": 0.0006,
+ "loss": 4.042375564575195,
+ "step": 1178
+ },
+ {
+ "epoch": 16.37745740498034,
+ "grad_norm": 0.35279813408851624,
+ "learning_rate": 0.0006,
+ "loss": 4.028722763061523,
+ "step": 1179
+ },
+ {
+ "epoch": 16.3914373088685,
+ "grad_norm": 0.3243204951286316,
+ "learning_rate": 0.0006,
+ "loss": 4.045693874359131,
+ "step": 1180
+ },
+ {
+ "epoch": 16.405417212756664,
+ "grad_norm": 0.32171115279197693,
+ "learning_rate": 0.0006,
+ "loss": 4.018350124359131,
+ "step": 1181
+ },
+ {
+ "epoch": 16.419397116644824,
+ "grad_norm": 0.31459906697273254,
+ "learning_rate": 0.0006,
+ "loss": 4.039547443389893,
+ "step": 1182
+ },
+ {
+ "epoch": 16.433377020532983,
+ "grad_norm": 0.35038673877716064,
+ "learning_rate": 0.0006,
+ "loss": 4.005928039550781,
+ "step": 1183
+ },
+ {
+ "epoch": 16.447356924421143,
+ "grad_norm": 0.34110963344573975,
+ "learning_rate": 0.0006,
+ "loss": 4.042272090911865,
+ "step": 1184
+ },
+ {
+ "epoch": 16.461336828309307,
+ "grad_norm": 0.33760902285575867,
+ "learning_rate": 0.0006,
+ "loss": 4.02886962890625,
+ "step": 1185
+ },
+ {
+ "epoch": 16.475316732197467,
+ "grad_norm": 0.3162464499473572,
+ "learning_rate": 0.0006,
+ "loss": 4.059924125671387,
+ "step": 1186
+ },
+ {
+ "epoch": 16.489296636085626,
+ "grad_norm": 0.2667233645915985,
+ "learning_rate": 0.0006,
+ "loss": 4.069073677062988,
+ "step": 1187
+ },
+ {
+ "epoch": 16.503276539973786,
+ "grad_norm": 0.22626568377017975,
+ "learning_rate": 0.0006,
+ "loss": 4.044912338256836,
+ "step": 1188
+ },
+ {
+ "epoch": 16.51725644386195,
+ "grad_norm": 0.203303262591362,
+ "learning_rate": 0.0006,
+ "loss": 4.025210380554199,
+ "step": 1189
+ },
+ {
+ "epoch": 16.53123634775011,
+ "grad_norm": 0.2108820080757141,
+ "learning_rate": 0.0006,
+ "loss": 4.035998821258545,
+ "step": 1190
+ },
+ {
+ "epoch": 16.54521625163827,
+ "grad_norm": 0.20451335608959198,
+ "learning_rate": 0.0006,
+ "loss": 4.043377876281738,
+ "step": 1191
+ },
+ {
+ "epoch": 16.55919615552643,
+ "grad_norm": 0.23348836600780487,
+ "learning_rate": 0.0006,
+ "loss": 4.033735275268555,
+ "step": 1192
+ },
+ {
+ "epoch": 16.573176059414592,
+ "grad_norm": 0.24438607692718506,
+ "learning_rate": 0.0006,
+ "loss": 4.071747779846191,
+ "step": 1193
+ },
+ {
+ "epoch": 16.587155963302752,
+ "grad_norm": 0.24233631789684296,
+ "learning_rate": 0.0006,
+ "loss": 4.0138702392578125,
+ "step": 1194
+ },
+ {
+ "epoch": 16.601135867190912,
+ "grad_norm": 0.21625740826129913,
+ "learning_rate": 0.0006,
+ "loss": 4.013422012329102,
+ "step": 1195
+ },
+ {
+ "epoch": 16.615115771079076,
+ "grad_norm": 0.22447720170021057,
+ "learning_rate": 0.0006,
+ "loss": 4.056326866149902,
+ "step": 1196
+ },
+ {
+ "epoch": 16.629095674967235,
+ "grad_norm": 0.21899616718292236,
+ "learning_rate": 0.0006,
+ "loss": 4.006134033203125,
+ "step": 1197
+ },
+ {
+ "epoch": 16.643075578855395,
+ "grad_norm": 0.191362664103508,
+ "learning_rate": 0.0006,
+ "loss": 4.036748886108398,
+ "step": 1198
+ },
+ {
+ "epoch": 16.657055482743555,
+ "grad_norm": 0.20203463733196259,
+ "learning_rate": 0.0006,
+ "loss": 4.006264686584473,
+ "step": 1199
+ },
+ {
+ "epoch": 16.67103538663172,
+ "grad_norm": 0.20209139585494995,
+ "learning_rate": 0.0006,
+ "loss": 4.059018135070801,
+ "step": 1200
+ },
+ {
+ "epoch": 16.68501529051988,
+ "grad_norm": 0.20811820030212402,
+ "learning_rate": 0.0006,
+ "loss": 4.054325103759766,
+ "step": 1201
+ },
+ {
+ "epoch": 16.698995194408038,
+ "grad_norm": 0.22448928654193878,
+ "learning_rate": 0.0006,
+ "loss": 3.996121406555176,
+ "step": 1202
+ },
+ {
+ "epoch": 16.712975098296198,
+ "grad_norm": 0.21692240238189697,
+ "learning_rate": 0.0006,
+ "loss": 4.042046546936035,
+ "step": 1203
+ },
+ {
+ "epoch": 16.72695500218436,
+ "grad_norm": 0.20688563585281372,
+ "learning_rate": 0.0006,
+ "loss": 4.002251625061035,
+ "step": 1204
+ },
+ {
+ "epoch": 16.74093490607252,
+ "grad_norm": 0.1835535764694214,
+ "learning_rate": 0.0006,
+ "loss": 4.02545166015625,
+ "step": 1205
+ },
+ {
+ "epoch": 16.75491480996068,
+ "grad_norm": 0.20532558858394623,
+ "learning_rate": 0.0006,
+ "loss": 4.039333343505859,
+ "step": 1206
+ },
+ {
+ "epoch": 16.76889471384884,
+ "grad_norm": 0.2214215099811554,
+ "learning_rate": 0.0006,
+ "loss": 4.037858486175537,
+ "step": 1207
+ },
+ {
+ "epoch": 16.782874617737004,
+ "grad_norm": 0.24926038086414337,
+ "learning_rate": 0.0006,
+ "loss": 4.024799346923828,
+ "step": 1208
+ },
+ {
+ "epoch": 16.796854521625164,
+ "grad_norm": 0.26057952642440796,
+ "learning_rate": 0.0006,
+ "loss": 4.042788505554199,
+ "step": 1209
+ },
+ {
+ "epoch": 16.810834425513324,
+ "grad_norm": 0.2501208782196045,
+ "learning_rate": 0.0006,
+ "loss": 4.051809310913086,
+ "step": 1210
+ },
+ {
+ "epoch": 16.824814329401484,
+ "grad_norm": 0.21760012209415436,
+ "learning_rate": 0.0006,
+ "loss": 4.063589096069336,
+ "step": 1211
+ },
+ {
+ "epoch": 16.838794233289647,
+ "grad_norm": 0.2243622988462448,
+ "learning_rate": 0.0006,
+ "loss": 4.008829593658447,
+ "step": 1212
+ },
+ {
+ "epoch": 16.852774137177807,
+ "grad_norm": 0.2399163395166397,
+ "learning_rate": 0.0006,
+ "loss": 4.013262748718262,
+ "step": 1213
+ },
+ {
+ "epoch": 16.866754041065967,
+ "grad_norm": 0.23187831044197083,
+ "learning_rate": 0.0006,
+ "loss": 4.023053169250488,
+ "step": 1214
+ },
+ {
+ "epoch": 16.88073394495413,
+ "grad_norm": 0.23723892867565155,
+ "learning_rate": 0.0006,
+ "loss": 3.991321563720703,
+ "step": 1215
+ },
+ {
+ "epoch": 16.89471384884229,
+ "grad_norm": 0.21766342222690582,
+ "learning_rate": 0.0006,
+ "loss": 4.0250773429870605,
+ "step": 1216
+ },
+ {
+ "epoch": 16.90869375273045,
+ "grad_norm": 0.20715023577213287,
+ "learning_rate": 0.0006,
+ "loss": 4.063642978668213,
+ "step": 1217
+ },
+ {
+ "epoch": 16.92267365661861,
+ "grad_norm": 0.20165133476257324,
+ "learning_rate": 0.0006,
+ "loss": 3.9951367378234863,
+ "step": 1218
+ },
+ {
+ "epoch": 16.936653560506773,
+ "grad_norm": 0.19956178963184357,
+ "learning_rate": 0.0006,
+ "loss": 4.025641441345215,
+ "step": 1219
+ },
+ {
+ "epoch": 16.950633464394933,
+ "grad_norm": 0.2175494134426117,
+ "learning_rate": 0.0006,
+ "loss": 4.030346393585205,
+ "step": 1220
+ },
+ {
+ "epoch": 16.964613368283093,
+ "grad_norm": 0.22365593910217285,
+ "learning_rate": 0.0006,
+ "loss": 4.018105506896973,
+ "step": 1221
+ },
+ {
+ "epoch": 16.978593272171253,
+ "grad_norm": 0.21251538395881653,
+ "learning_rate": 0.0006,
+ "loss": 4.023580074310303,
+ "step": 1222
+ },
+ {
+ "epoch": 16.992573176059416,
+ "grad_norm": 0.2230125218629837,
+ "learning_rate": 0.0006,
+ "loss": 4.001980304718018,
+ "step": 1223
+ },
+ {
+ "epoch": 17.0,
+ "grad_norm": 0.24261972308158875,
+ "learning_rate": 0.0006,
+ "loss": 4.081348896026611,
+ "step": 1224
+ },
+ {
+ "epoch": 17.0,
+ "eval_loss": 4.225194931030273,
+ "eval_runtime": 44.247,
+ "eval_samples_per_second": 55.19,
+ "eval_steps_per_second": 3.458,
+ "step": 1224
+ },
+ {
+ "epoch": 17.01397990388816,
+ "grad_norm": 0.2438880205154419,
+ "learning_rate": 0.0006,
+ "loss": 4.0164794921875,
+ "step": 1225
+ },
+ {
+ "epoch": 17.027959807776323,
+ "grad_norm": 0.22459383308887482,
+ "learning_rate": 0.0006,
+ "loss": 3.991623878479004,
+ "step": 1226
+ },
+ {
+ "epoch": 17.041939711664483,
+ "grad_norm": 0.25021040439605713,
+ "learning_rate": 0.0006,
+ "loss": 4.003020286560059,
+ "step": 1227
+ },
+ {
+ "epoch": 17.055919615552643,
+ "grad_norm": 0.30358025431632996,
+ "learning_rate": 0.0006,
+ "loss": 3.980921983718872,
+ "step": 1228
+ },
+ {
+ "epoch": 17.069899519440803,
+ "grad_norm": 0.27313271164894104,
+ "learning_rate": 0.0006,
+ "loss": 3.992398977279663,
+ "step": 1229
+ },
+ {
+ "epoch": 17.083879423328966,
+ "grad_norm": 0.2293211966753006,
+ "learning_rate": 0.0006,
+ "loss": 4.02568244934082,
+ "step": 1230
+ },
+ {
+ "epoch": 17.097859327217126,
+ "grad_norm": 0.2363300621509552,
+ "learning_rate": 0.0006,
+ "loss": 3.977229356765747,
+ "step": 1231
+ },
+ {
+ "epoch": 17.111839231105286,
+ "grad_norm": 0.2809674143791199,
+ "learning_rate": 0.0006,
+ "loss": 3.9720497131347656,
+ "step": 1232
+ },
+ {
+ "epoch": 17.125819134993446,
+ "grad_norm": 0.2913855016231537,
+ "learning_rate": 0.0006,
+ "loss": 3.979529857635498,
+ "step": 1233
+ },
+ {
+ "epoch": 17.13979903888161,
+ "grad_norm": 0.2920287251472473,
+ "learning_rate": 0.0006,
+ "loss": 3.9678473472595215,
+ "step": 1234
+ },
+ {
+ "epoch": 17.15377894276977,
+ "grad_norm": 0.2521543502807617,
+ "learning_rate": 0.0006,
+ "loss": 3.9912607669830322,
+ "step": 1235
+ },
+ {
+ "epoch": 17.16775884665793,
+ "grad_norm": 0.22844268381595612,
+ "learning_rate": 0.0006,
+ "loss": 3.9898228645324707,
+ "step": 1236
+ },
+ {
+ "epoch": 17.18173875054609,
+ "grad_norm": 0.2199884057044983,
+ "learning_rate": 0.0006,
+ "loss": 4.0050740242004395,
+ "step": 1237
+ },
+ {
+ "epoch": 17.195718654434252,
+ "grad_norm": 0.23072892427444458,
+ "learning_rate": 0.0006,
+ "loss": 3.9957475662231445,
+ "step": 1238
+ },
+ {
+ "epoch": 17.209698558322412,
+ "grad_norm": 0.2034899890422821,
+ "learning_rate": 0.0006,
+ "loss": 3.9672317504882812,
+ "step": 1239
+ },
+ {
+ "epoch": 17.22367846221057,
+ "grad_norm": 0.21826180815696716,
+ "learning_rate": 0.0006,
+ "loss": 3.98543119430542,
+ "step": 1240
+ },
+ {
+ "epoch": 17.23765836609873,
+ "grad_norm": 0.21203237771987915,
+ "learning_rate": 0.0006,
+ "loss": 3.9971959590911865,
+ "step": 1241
+ },
+ {
+ "epoch": 17.251638269986895,
+ "grad_norm": 0.22139234840869904,
+ "learning_rate": 0.0006,
+ "loss": 4.017539978027344,
+ "step": 1242
+ },
+ {
+ "epoch": 17.265618173875055,
+ "grad_norm": 0.21553276479244232,
+ "learning_rate": 0.0006,
+ "loss": 3.98740553855896,
+ "step": 1243
+ },
+ {
+ "epoch": 17.279598077763215,
+ "grad_norm": 0.23259080946445465,
+ "learning_rate": 0.0006,
+ "loss": 3.9963035583496094,
+ "step": 1244
+ },
+ {
+ "epoch": 17.293577981651374,
+ "grad_norm": 0.2527932822704315,
+ "learning_rate": 0.0006,
+ "loss": 4.0202956199646,
+ "step": 1245
+ },
+ {
+ "epoch": 17.307557885539538,
+ "grad_norm": 0.28669068217277527,
+ "learning_rate": 0.0006,
+ "loss": 3.9947609901428223,
+ "step": 1246
+ },
+ {
+ "epoch": 17.321537789427698,
+ "grad_norm": 0.341602623462677,
+ "learning_rate": 0.0006,
+ "loss": 3.997032642364502,
+ "step": 1247
+ },
+ {
+ "epoch": 17.335517693315857,
+ "grad_norm": 0.3364104926586151,
+ "learning_rate": 0.0006,
+ "loss": 3.9881834983825684,
+ "step": 1248
+ },
+ {
+ "epoch": 17.34949759720402,
+ "grad_norm": 0.2979278266429901,
+ "learning_rate": 0.0006,
+ "loss": 4.045898914337158,
+ "step": 1249
+ },
+ {
+ "epoch": 17.36347750109218,
+ "grad_norm": 0.2857462465763092,
+ "learning_rate": 0.0006,
+ "loss": 4.0085272789001465,
+ "step": 1250
+ },
+ {
+ "epoch": 17.37745740498034,
+ "grad_norm": 0.2689058780670166,
+ "learning_rate": 0.0006,
+ "loss": 4.021465301513672,
+ "step": 1251
+ },
+ {
+ "epoch": 17.3914373088685,
+ "grad_norm": 0.24943363666534424,
+ "learning_rate": 0.0006,
+ "loss": 4.003451347351074,
+ "step": 1252
+ },
+ {
+ "epoch": 17.405417212756664,
+ "grad_norm": 0.2635347843170166,
+ "learning_rate": 0.0006,
+ "loss": 3.9837827682495117,
+ "step": 1253
+ },
+ {
+ "epoch": 17.419397116644824,
+ "grad_norm": 0.29126450419425964,
+ "learning_rate": 0.0006,
+ "loss": 3.9857311248779297,
+ "step": 1254
+ },
+ {
+ "epoch": 17.433377020532983,
+ "grad_norm": 0.3166918456554413,
+ "learning_rate": 0.0006,
+ "loss": 3.9842967987060547,
+ "step": 1255
+ },
+ {
+ "epoch": 17.447356924421143,
+ "grad_norm": 0.27869969606399536,
+ "learning_rate": 0.0006,
+ "loss": 4.012607574462891,
+ "step": 1256
+ },
+ {
+ "epoch": 17.461336828309307,
+ "grad_norm": 0.23719419538974762,
+ "learning_rate": 0.0006,
+ "loss": 3.981034755706787,
+ "step": 1257
+ },
+ {
+ "epoch": 17.475316732197467,
+ "grad_norm": 0.22687610983848572,
+ "learning_rate": 0.0006,
+ "loss": 4.011059761047363,
+ "step": 1258
+ },
+ {
+ "epoch": 17.489296636085626,
+ "grad_norm": 0.22034095227718353,
+ "learning_rate": 0.0006,
+ "loss": 4.015044689178467,
+ "step": 1259
+ },
+ {
+ "epoch": 17.503276539973786,
+ "grad_norm": 0.21208405494689941,
+ "learning_rate": 0.0006,
+ "loss": 4.003793716430664,
+ "step": 1260
+ },
+ {
+ "epoch": 17.51725644386195,
+ "grad_norm": 0.21759214997291565,
+ "learning_rate": 0.0006,
+ "loss": 3.978652238845825,
+ "step": 1261
+ },
+ {
+ "epoch": 17.53123634775011,
+ "grad_norm": 0.22481068968772888,
+ "learning_rate": 0.0006,
+ "loss": 4.034845352172852,
+ "step": 1262
+ },
+ {
+ "epoch": 17.54521625163827,
+ "grad_norm": 0.20376387238502502,
+ "learning_rate": 0.0006,
+ "loss": 3.990541934967041,
+ "step": 1263
+ },
+ {
+ "epoch": 17.55919615552643,
+ "grad_norm": 0.20459355413913727,
+ "learning_rate": 0.0006,
+ "loss": 4.006990432739258,
+ "step": 1264
+ },
+ {
+ "epoch": 17.573176059414592,
+ "grad_norm": 0.19306913018226624,
+ "learning_rate": 0.0006,
+ "loss": 3.993408679962158,
+ "step": 1265
+ },
+ {
+ "epoch": 17.587155963302752,
+ "grad_norm": 0.20727239549160004,
+ "learning_rate": 0.0006,
+ "loss": 3.988016128540039,
+ "step": 1266
+ },
+ {
+ "epoch": 17.601135867190912,
+ "grad_norm": 0.20213133096694946,
+ "learning_rate": 0.0006,
+ "loss": 4.0120368003845215,
+ "step": 1267
+ },
+ {
+ "epoch": 17.615115771079076,
+ "grad_norm": 0.21074117720127106,
+ "learning_rate": 0.0006,
+ "loss": 4.048871040344238,
+ "step": 1268
+ },
+ {
+ "epoch": 17.629095674967235,
+ "grad_norm": 0.2074330598115921,
+ "learning_rate": 0.0006,
+ "loss": 3.997509002685547,
+ "step": 1269
+ },
+ {
+ "epoch": 17.643075578855395,
+ "grad_norm": 0.20383669435977936,
+ "learning_rate": 0.0006,
+ "loss": 4.0028839111328125,
+ "step": 1270
+ },
+ {
+ "epoch": 17.657055482743555,
+ "grad_norm": 0.2060765027999878,
+ "learning_rate": 0.0006,
+ "loss": 3.998032331466675,
+ "step": 1271
+ },
+ {
+ "epoch": 17.67103538663172,
+ "grad_norm": 0.21851404011249542,
+ "learning_rate": 0.0006,
+ "loss": 3.9928741455078125,
+ "step": 1272
+ },
+ {
+ "epoch": 17.68501529051988,
+ "grad_norm": 0.24324250221252441,
+ "learning_rate": 0.0006,
+ "loss": 3.9896507263183594,
+ "step": 1273
+ },
+ {
+ "epoch": 17.698995194408038,
+ "grad_norm": 0.25584331154823303,
+ "learning_rate": 0.0006,
+ "loss": 4.010485649108887,
+ "step": 1274
+ },
+ {
+ "epoch": 17.712975098296198,
+ "grad_norm": 0.2490610033273697,
+ "learning_rate": 0.0006,
+ "loss": 3.9906954765319824,
+ "step": 1275
+ },
+ {
+ "epoch": 17.72695500218436,
+ "grad_norm": 0.24241414666175842,
+ "learning_rate": 0.0006,
+ "loss": 4.016420364379883,
+ "step": 1276
+ },
+ {
+ "epoch": 17.74093490607252,
+ "grad_norm": 0.2222128063440323,
+ "learning_rate": 0.0006,
+ "loss": 4.009827136993408,
+ "step": 1277
+ },
+ {
+ "epoch": 17.75491480996068,
+ "grad_norm": 0.23119516670703888,
+ "learning_rate": 0.0006,
+ "loss": 4.0034589767456055,
+ "step": 1278
+ },
+ {
+ "epoch": 17.76889471384884,
+ "grad_norm": 0.24596457183361053,
+ "learning_rate": 0.0006,
+ "loss": 4.003161907196045,
+ "step": 1279
+ },
+ {
+ "epoch": 17.782874617737004,
+ "grad_norm": 0.2607562839984894,
+ "learning_rate": 0.0006,
+ "loss": 3.9894633293151855,
+ "step": 1280
+ },
+ {
+ "epoch": 17.796854521625164,
+ "grad_norm": 0.28706878423690796,
+ "learning_rate": 0.0006,
+ "loss": 4.005712985992432,
+ "step": 1281
+ },
+ {
+ "epoch": 17.810834425513324,
+ "grad_norm": 0.27178290486335754,
+ "learning_rate": 0.0006,
+ "loss": 3.9784536361694336,
+ "step": 1282
+ },
+ {
+ "epoch": 17.824814329401484,
+ "grad_norm": 0.27962708473205566,
+ "learning_rate": 0.0006,
+ "loss": 4.012705326080322,
+ "step": 1283
+ },
+ {
+ "epoch": 17.838794233289647,
+ "grad_norm": 0.29147693514823914,
+ "learning_rate": 0.0006,
+ "loss": 4.0159783363342285,
+ "step": 1284
+ },
+ {
+ "epoch": 17.852774137177807,
+ "grad_norm": 0.2841821312904358,
+ "learning_rate": 0.0006,
+ "loss": 4.011552810668945,
+ "step": 1285
+ },
+ {
+ "epoch": 17.866754041065967,
+ "grad_norm": 0.24924969673156738,
+ "learning_rate": 0.0006,
+ "loss": 3.992421865463257,
+ "step": 1286
+ },
+ {
+ "epoch": 17.88073394495413,
+ "grad_norm": 0.24850749969482422,
+ "learning_rate": 0.0006,
+ "loss": 3.974897861480713,
+ "step": 1287
+ },
+ {
+ "epoch": 17.89471384884229,
+ "grad_norm": 0.2409554123878479,
+ "learning_rate": 0.0006,
+ "loss": 4.002941131591797,
+ "step": 1288
+ },
+ {
+ "epoch": 17.90869375273045,
+ "grad_norm": 0.2656126320362091,
+ "learning_rate": 0.0006,
+ "loss": 3.9804210662841797,
+ "step": 1289
+ },
+ {
+ "epoch": 17.92267365661861,
+ "grad_norm": 0.28210243582725525,
+ "learning_rate": 0.0006,
+ "loss": 4.007192134857178,
+ "step": 1290
+ },
+ {
+ "epoch": 17.936653560506773,
+ "grad_norm": 0.28427553176879883,
+ "learning_rate": 0.0006,
+ "loss": 3.9739556312561035,
+ "step": 1291
+ },
+ {
+ "epoch": 17.950633464394933,
+ "grad_norm": 0.28893420100212097,
+ "learning_rate": 0.0006,
+ "loss": 4.004766941070557,
+ "step": 1292
+ },
+ {
+ "epoch": 17.964613368283093,
+ "grad_norm": 0.2831471562385559,
+ "learning_rate": 0.0006,
+ "loss": 3.984936237335205,
+ "step": 1293
+ },
+ {
+ "epoch": 17.978593272171253,
+ "grad_norm": 0.2518300712108612,
+ "learning_rate": 0.0006,
+ "loss": 4.002814292907715,
+ "step": 1294
+ },
+ {
+ "epoch": 17.992573176059416,
+ "grad_norm": 0.24264675378799438,
+ "learning_rate": 0.0006,
+ "loss": 3.998900890350342,
+ "step": 1295
+ },
+ {
+ "epoch": 18.0,
+ "grad_norm": 0.24474996328353882,
+ "learning_rate": 0.0006,
+ "loss": 3.974229335784912,
+ "step": 1296
+ },
+ {
+ "epoch": 18.0,
+ "eval_loss": 4.195685863494873,
+ "eval_runtime": 44.0709,
+ "eval_samples_per_second": 55.411,
+ "eval_steps_per_second": 3.472,
+ "step": 1296
+ },
+ {
+ "epoch": 18.01397990388816,
+ "grad_norm": 0.2553016245365143,
+ "learning_rate": 0.0006,
+ "loss": 3.9522247314453125,
+ "step": 1297
+ },
+ {
+ "epoch": 18.027959807776323,
+ "grad_norm": 0.22350727021694183,
+ "learning_rate": 0.0006,
+ "loss": 3.9850122928619385,
+ "step": 1298
+ },
+ {
+ "epoch": 18.041939711664483,
+ "grad_norm": 0.23935550451278687,
+ "learning_rate": 0.0006,
+ "loss": 3.9758832454681396,
+ "step": 1299
+ },
+ {
+ "epoch": 18.055919615552643,
+ "grad_norm": 0.23868797719478607,
+ "learning_rate": 0.0006,
+ "loss": 3.9567959308624268,
+ "step": 1300
+ },
+ {
+ "epoch": 18.069899519440803,
+ "grad_norm": 0.23102357983589172,
+ "learning_rate": 0.0006,
+ "loss": 3.9399867057800293,
+ "step": 1301
+ },
+ {
+ "epoch": 18.083879423328966,
+ "grad_norm": 0.23706983029842377,
+ "learning_rate": 0.0006,
+ "loss": 3.993434190750122,
+ "step": 1302
+ },
+ {
+ "epoch": 18.097859327217126,
+ "grad_norm": 0.22207573056221008,
+ "learning_rate": 0.0006,
+ "loss": 3.993436574935913,
+ "step": 1303
+ },
+ {
+ "epoch": 18.111839231105286,
+ "grad_norm": 0.23975296318531036,
+ "learning_rate": 0.0006,
+ "loss": 3.981943368911743,
+ "step": 1304
+ },
+ {
+ "epoch": 18.125819134993446,
+ "grad_norm": 0.2520582675933838,
+ "learning_rate": 0.0006,
+ "loss": 3.965493679046631,
+ "step": 1305
+ },
+ {
+ "epoch": 18.13979903888161,
+ "grad_norm": 0.2230956256389618,
+ "learning_rate": 0.0006,
+ "loss": 3.9360928535461426,
+ "step": 1306
+ },
+ {
+ "epoch": 18.15377894276977,
+ "grad_norm": 0.22527500987052917,
+ "learning_rate": 0.0006,
+ "loss": 3.9814581871032715,
+ "step": 1307
+ },
+ {
+ "epoch": 18.16775884665793,
+ "grad_norm": 0.22389626502990723,
+ "learning_rate": 0.0006,
+ "loss": 3.961590051651001,
+ "step": 1308
+ },
+ {
+ "epoch": 18.18173875054609,
+ "grad_norm": 0.22279471158981323,
+ "learning_rate": 0.0006,
+ "loss": 3.952338695526123,
+ "step": 1309
+ },
+ {
+ "epoch": 18.195718654434252,
+ "grad_norm": 0.24635115265846252,
+ "learning_rate": 0.0006,
+ "loss": 3.9693849086761475,
+ "step": 1310
+ },
+ {
+ "epoch": 18.209698558322412,
+ "grad_norm": 0.2757279872894287,
+ "learning_rate": 0.0006,
+ "loss": 3.9956700801849365,
+ "step": 1311
+ },
+ {
+ "epoch": 18.22367846221057,
+ "grad_norm": 0.2619115710258484,
+ "learning_rate": 0.0006,
+ "loss": 3.948878765106201,
+ "step": 1312
+ },
+ {
+ "epoch": 18.23765836609873,
+ "grad_norm": 0.22853828966617584,
+ "learning_rate": 0.0006,
+ "loss": 3.9545674324035645,
+ "step": 1313
+ },
+ {
+ "epoch": 18.251638269986895,
+ "grad_norm": 0.22904761135578156,
+ "learning_rate": 0.0006,
+ "loss": 3.947535991668701,
+ "step": 1314
+ },
+ {
+ "epoch": 18.265618173875055,
+ "grad_norm": 0.23592644929885864,
+ "learning_rate": 0.0006,
+ "loss": 3.971926212310791,
+ "step": 1315
+ },
+ {
+ "epoch": 18.279598077763215,
+ "grad_norm": 0.22120243310928345,
+ "learning_rate": 0.0006,
+ "loss": 3.9471049308776855,
+ "step": 1316
+ },
+ {
+ "epoch": 18.293577981651374,
+ "grad_norm": 0.20308749377727509,
+ "learning_rate": 0.0006,
+ "loss": 3.967449188232422,
+ "step": 1317
+ },
+ {
+ "epoch": 18.307557885539538,
+ "grad_norm": 0.20013529062271118,
+ "learning_rate": 0.0006,
+ "loss": 3.966151237487793,
+ "step": 1318
+ },
+ {
+ "epoch": 18.321537789427698,
+ "grad_norm": 0.20635221898555756,
+ "learning_rate": 0.0006,
+ "loss": 3.9908885955810547,
+ "step": 1319
+ },
+ {
+ "epoch": 18.335517693315857,
+ "grad_norm": 0.2232237160205841,
+ "learning_rate": 0.0006,
+ "loss": 3.9488768577575684,
+ "step": 1320
+ },
+ {
+ "epoch": 18.34949759720402,
+ "grad_norm": 0.21916444599628448,
+ "learning_rate": 0.0006,
+ "loss": 3.973428726196289,
+ "step": 1321
+ },
+ {
+ "epoch": 18.36347750109218,
+ "grad_norm": 0.20427337288856506,
+ "learning_rate": 0.0006,
+ "loss": 3.969332695007324,
+ "step": 1322
+ },
+ {
+ "epoch": 18.37745740498034,
+ "grad_norm": 0.20138131082057953,
+ "learning_rate": 0.0006,
+ "loss": 3.9651856422424316,
+ "step": 1323
+ },
+ {
+ "epoch": 18.3914373088685,
+ "grad_norm": 0.18918880820274353,
+ "learning_rate": 0.0006,
+ "loss": 3.9772281646728516,
+ "step": 1324
+ },
+ {
+ "epoch": 18.405417212756664,
+ "grad_norm": 0.1860039383172989,
+ "learning_rate": 0.0006,
+ "loss": 3.9289052486419678,
+ "step": 1325
+ },
+ {
+ "epoch": 18.419397116644824,
+ "grad_norm": 0.19541646540164948,
+ "learning_rate": 0.0006,
+ "loss": 3.9527673721313477,
+ "step": 1326
+ },
+ {
+ "epoch": 18.433377020532983,
+ "grad_norm": 0.206914022564888,
+ "learning_rate": 0.0006,
+ "loss": 3.99316143989563,
+ "step": 1327
+ },
+ {
+ "epoch": 18.447356924421143,
+ "grad_norm": 0.209097757935524,
+ "learning_rate": 0.0006,
+ "loss": 3.978130340576172,
+ "step": 1328
+ },
+ {
+ "epoch": 18.461336828309307,
+ "grad_norm": 0.22163373231887817,
+ "learning_rate": 0.0006,
+ "loss": 3.951460361480713,
+ "step": 1329
+ },
+ {
+ "epoch": 18.475316732197467,
+ "grad_norm": 0.21446120738983154,
+ "learning_rate": 0.0006,
+ "loss": 3.963571071624756,
+ "step": 1330
+ },
+ {
+ "epoch": 18.489296636085626,
+ "grad_norm": 0.2341388761997223,
+ "learning_rate": 0.0006,
+ "loss": 4.010684013366699,
+ "step": 1331
+ },
+ {
+ "epoch": 18.503276539973786,
+ "grad_norm": 0.2433937042951584,
+ "learning_rate": 0.0006,
+ "loss": 3.987537384033203,
+ "step": 1332
+ },
+ {
+ "epoch": 18.51725644386195,
+ "grad_norm": 0.24916228652000427,
+ "learning_rate": 0.0006,
+ "loss": 3.953075647354126,
+ "step": 1333
+ },
+ {
+ "epoch": 18.53123634775011,
+ "grad_norm": 0.24542421102523804,
+ "learning_rate": 0.0006,
+ "loss": 3.9510841369628906,
+ "step": 1334
+ },
+ {
+ "epoch": 18.54521625163827,
+ "grad_norm": 0.2393690049648285,
+ "learning_rate": 0.0006,
+ "loss": 3.981747627258301,
+ "step": 1335
+ },
+ {
+ "epoch": 18.55919615552643,
+ "grad_norm": 0.22806711494922638,
+ "learning_rate": 0.0006,
+ "loss": 3.9714856147766113,
+ "step": 1336
+ },
+ {
+ "epoch": 18.573176059414592,
+ "grad_norm": 0.21948303282260895,
+ "learning_rate": 0.0006,
+ "loss": 3.9429898262023926,
+ "step": 1337
+ },
+ {
+ "epoch": 18.587155963302752,
+ "grad_norm": 0.21575778722763062,
+ "learning_rate": 0.0006,
+ "loss": 3.9639933109283447,
+ "step": 1338
+ },
+ {
+ "epoch": 18.601135867190912,
+ "grad_norm": 0.23370565474033356,
+ "learning_rate": 0.0006,
+ "loss": 3.9819254875183105,
+ "step": 1339
+ },
+ {
+ "epoch": 18.615115771079076,
+ "grad_norm": 0.2613106369972229,
+ "learning_rate": 0.0006,
+ "loss": 3.9654669761657715,
+ "step": 1340
+ },
+ {
+ "epoch": 18.629095674967235,
+ "grad_norm": 0.26682716608047485,
+ "learning_rate": 0.0006,
+ "loss": 3.9832968711853027,
+ "step": 1341
+ },
+ {
+ "epoch": 18.643075578855395,
+ "grad_norm": 0.24331490695476532,
+ "learning_rate": 0.0006,
+ "loss": 3.9926600456237793,
+ "step": 1342
+ },
+ {
+ "epoch": 18.657055482743555,
+ "grad_norm": 0.2459341287612915,
+ "learning_rate": 0.0006,
+ "loss": 3.9508986473083496,
+ "step": 1343
+ },
+ {
+ "epoch": 18.67103538663172,
+ "grad_norm": 0.26395753026008606,
+ "learning_rate": 0.0006,
+ "loss": 3.961359977722168,
+ "step": 1344
+ },
+ {
+ "epoch": 18.68501529051988,
+ "grad_norm": 0.26049068570137024,
+ "learning_rate": 0.0006,
+ "loss": 3.9763245582580566,
+ "step": 1345
+ },
+ {
+ "epoch": 18.698995194408038,
+ "grad_norm": 0.24018602073192596,
+ "learning_rate": 0.0006,
+ "loss": 3.951780319213867,
+ "step": 1346
+ },
+ {
+ "epoch": 18.712975098296198,
+ "grad_norm": 0.23886290192604065,
+ "learning_rate": 0.0006,
+ "loss": 3.9883017539978027,
+ "step": 1347
+ },
+ {
+ "epoch": 18.72695500218436,
+ "grad_norm": 0.2293774038553238,
+ "learning_rate": 0.0006,
+ "loss": 3.9852685928344727,
+ "step": 1348
+ },
+ {
+ "epoch": 18.74093490607252,
+ "grad_norm": 0.22172975540161133,
+ "learning_rate": 0.0006,
+ "loss": 3.967550277709961,
+ "step": 1349
+ },
+ {
+ "epoch": 18.75491480996068,
+ "grad_norm": 0.2170475423336029,
+ "learning_rate": 0.0006,
+ "loss": 3.9570775032043457,
+ "step": 1350
+ },
+ {
+ "epoch": 18.76889471384884,
+ "grad_norm": 0.21458806097507477,
+ "learning_rate": 0.0006,
+ "loss": 3.9461212158203125,
+ "step": 1351
+ },
+ {
+ "epoch": 18.782874617737004,
+ "grad_norm": 0.21101507544517517,
+ "learning_rate": 0.0006,
+ "loss": 3.984398365020752,
+ "step": 1352
+ },
+ {
+ "epoch": 18.796854521625164,
+ "grad_norm": 0.23480583727359772,
+ "learning_rate": 0.0006,
+ "loss": 3.950312614440918,
+ "step": 1353
+ },
+ {
+ "epoch": 18.810834425513324,
+ "grad_norm": 0.24728581309318542,
+ "learning_rate": 0.0006,
+ "loss": 3.9572393894195557,
+ "step": 1354
+ },
+ {
+ "epoch": 18.824814329401484,
+ "grad_norm": 0.26063451170921326,
+ "learning_rate": 0.0006,
+ "loss": 3.9653234481811523,
+ "step": 1355
+ },
+ {
+ "epoch": 18.838794233289647,
+ "grad_norm": 0.24679961800575256,
+ "learning_rate": 0.0006,
+ "loss": 3.9560108184814453,
+ "step": 1356
+ },
+ {
+ "epoch": 18.852774137177807,
+ "grad_norm": 0.23199526965618134,
+ "learning_rate": 0.0006,
+ "loss": 3.9948246479034424,
+ "step": 1357
+ },
+ {
+ "epoch": 18.866754041065967,
+ "grad_norm": 0.22619125247001648,
+ "learning_rate": 0.0006,
+ "loss": 3.9783573150634766,
+ "step": 1358
+ },
+ {
+ "epoch": 18.88073394495413,
+ "grad_norm": 0.25499874353408813,
+ "learning_rate": 0.0006,
+ "loss": 3.9674575328826904,
+ "step": 1359
+ },
+ {
+ "epoch": 18.89471384884229,
+ "grad_norm": 0.23961037397384644,
+ "learning_rate": 0.0006,
+ "loss": 3.969209909439087,
+ "step": 1360
+ },
+ {
+ "epoch": 18.90869375273045,
+ "grad_norm": 0.21039162576198578,
+ "learning_rate": 0.0006,
+ "loss": 3.978661060333252,
+ "step": 1361
+ },
+ {
+ "epoch": 18.92267365661861,
+ "grad_norm": 0.2297026664018631,
+ "learning_rate": 0.0006,
+ "loss": 3.9483046531677246,
+ "step": 1362
+ },
+ {
+ "epoch": 18.936653560506773,
+ "grad_norm": 0.26367098093032837,
+ "learning_rate": 0.0006,
+ "loss": 3.927133560180664,
+ "step": 1363
+ },
+ {
+ "epoch": 18.950633464394933,
+ "grad_norm": 0.26893147826194763,
+ "learning_rate": 0.0006,
+ "loss": 3.957932710647583,
+ "step": 1364
+ },
+ {
+ "epoch": 18.964613368283093,
+ "grad_norm": 0.27092233300209045,
+ "learning_rate": 0.0006,
+ "loss": 3.976621150970459,
+ "step": 1365
+ },
+ {
+ "epoch": 18.978593272171253,
+ "grad_norm": 0.2672635018825531,
+ "learning_rate": 0.0006,
+ "loss": 3.9577765464782715,
+ "step": 1366
+ },
+ {
+ "epoch": 18.992573176059416,
+ "grad_norm": 0.2721385359764099,
+ "learning_rate": 0.0006,
+ "loss": 3.986100196838379,
+ "step": 1367
+ },
+ {
+ "epoch": 19.0,
+ "grad_norm": 0.27648621797561646,
+ "learning_rate": 0.0006,
+ "loss": 3.9942402839660645,
+ "step": 1368
+ },
+ {
+ "epoch": 19.0,
+ "eval_loss": 4.180216312408447,
+ "eval_runtime": 44.0079,
+ "eval_samples_per_second": 55.49,
+ "eval_steps_per_second": 3.477,
+ "step": 1368
+ },
+ {
+ "epoch": 19.01397990388816,
+ "grad_norm": 0.2563098073005676,
+ "learning_rate": 0.0006,
+ "loss": 3.9267354011535645,
+ "step": 1369
+ },
+ {
+ "epoch": 19.027959807776323,
+ "grad_norm": 0.2531425952911377,
+ "learning_rate": 0.0006,
+ "loss": 3.9273324012756348,
+ "step": 1370
+ },
+ {
+ "epoch": 19.041939711664483,
+ "grad_norm": 0.27485427260398865,
+ "learning_rate": 0.0006,
+ "loss": 3.9542183876037598,
+ "step": 1371
+ },
+ {
+ "epoch": 19.055919615552643,
+ "grad_norm": 0.27509891986846924,
+ "learning_rate": 0.0006,
+ "loss": 3.921940326690674,
+ "step": 1372
+ },
+ {
+ "epoch": 19.069899519440803,
+ "grad_norm": 0.28154096007347107,
+ "learning_rate": 0.0006,
+ "loss": 3.926743984222412,
+ "step": 1373
+ },
+ {
+ "epoch": 19.083879423328966,
+ "grad_norm": 0.2749912738800049,
+ "learning_rate": 0.0006,
+ "loss": 3.9257748126983643,
+ "step": 1374
+ },
+ {
+ "epoch": 19.097859327217126,
+ "grad_norm": 0.26168501377105713,
+ "learning_rate": 0.0006,
+ "loss": 3.9403202533721924,
+ "step": 1375
+ },
+ {
+ "epoch": 19.111839231105286,
+ "grad_norm": 0.23410023748874664,
+ "learning_rate": 0.0006,
+ "loss": 3.935378313064575,
+ "step": 1376
+ },
+ {
+ "epoch": 19.125819134993446,
+ "grad_norm": 0.25790470838546753,
+ "learning_rate": 0.0006,
+ "loss": 3.946147918701172,
+ "step": 1377
+ },
+ {
+ "epoch": 19.13979903888161,
+ "grad_norm": 0.26704177260398865,
+ "learning_rate": 0.0006,
+ "loss": 3.9511594772338867,
+ "step": 1378
+ },
+ {
+ "epoch": 19.15377894276977,
+ "grad_norm": 0.2560667097568512,
+ "learning_rate": 0.0006,
+ "loss": 3.915806531906128,
+ "step": 1379
+ },
+ {
+ "epoch": 19.16775884665793,
+ "grad_norm": 0.24684149026870728,
+ "learning_rate": 0.0006,
+ "loss": 3.9162003993988037,
+ "step": 1380
+ },
+ {
+ "epoch": 19.18173875054609,
+ "grad_norm": 0.2097567766904831,
+ "learning_rate": 0.0006,
+ "loss": 3.915739059448242,
+ "step": 1381
+ },
+ {
+ "epoch": 19.195718654434252,
+ "grad_norm": 0.21646849811077118,
+ "learning_rate": 0.0006,
+ "loss": 3.9097084999084473,
+ "step": 1382
+ },
+ {
+ "epoch": 19.209698558322412,
+ "grad_norm": 0.20626980066299438,
+ "learning_rate": 0.0006,
+ "loss": 3.9541783332824707,
+ "step": 1383
+ },
+ {
+ "epoch": 19.22367846221057,
+ "grad_norm": 0.23362718522548676,
+ "learning_rate": 0.0006,
+ "loss": 3.950096845626831,
+ "step": 1384
+ },
+ {
+ "epoch": 19.23765836609873,
+ "grad_norm": 0.25402209162712097,
+ "learning_rate": 0.0006,
+ "loss": 3.927671432495117,
+ "step": 1385
+ },
+ {
+ "epoch": 19.251638269986895,
+ "grad_norm": 0.23714083433151245,
+ "learning_rate": 0.0006,
+ "loss": 3.939765453338623,
+ "step": 1386
+ },
+ {
+ "epoch": 19.265618173875055,
+ "grad_norm": 0.20895546674728394,
+ "learning_rate": 0.0006,
+ "loss": 3.9384806156158447,
+ "step": 1387
+ },
+ {
+ "epoch": 19.279598077763215,
+ "grad_norm": 0.21374300122261047,
+ "learning_rate": 0.0006,
+ "loss": 3.9523749351501465,
+ "step": 1388
+ },
+ {
+ "epoch": 19.293577981651374,
+ "grad_norm": 0.210394486784935,
+ "learning_rate": 0.0006,
+ "loss": 3.9540798664093018,
+ "step": 1389
+ },
+ {
+ "epoch": 19.307557885539538,
+ "grad_norm": 0.20646725594997406,
+ "learning_rate": 0.0006,
+ "loss": 3.9514098167419434,
+ "step": 1390
+ },
+ {
+ "epoch": 19.321537789427698,
+ "grad_norm": 0.21477538347244263,
+ "learning_rate": 0.0006,
+ "loss": 3.9369924068450928,
+ "step": 1391
+ },
+ {
+ "epoch": 19.335517693315857,
+ "grad_norm": 0.20431505143642426,
+ "learning_rate": 0.0006,
+ "loss": 3.9389796257019043,
+ "step": 1392
+ },
+ {
+ "epoch": 19.34949759720402,
+ "grad_norm": 0.19575877487659454,
+ "learning_rate": 0.0006,
+ "loss": 3.935976028442383,
+ "step": 1393
+ },
+ {
+ "epoch": 19.36347750109218,
+ "grad_norm": 0.20720405876636505,
+ "learning_rate": 0.0006,
+ "loss": 3.9670963287353516,
+ "step": 1394
+ },
+ {
+ "epoch": 19.37745740498034,
+ "grad_norm": 0.2173967957496643,
+ "learning_rate": 0.0006,
+ "loss": 3.903940439224243,
+ "step": 1395
+ },
+ {
+ "epoch": 19.3914373088685,
+ "grad_norm": 0.2180529683828354,
+ "learning_rate": 0.0006,
+ "loss": 3.8716301918029785,
+ "step": 1396
+ },
+ {
+ "epoch": 19.405417212756664,
+ "grad_norm": 0.20666591823101044,
+ "learning_rate": 0.0006,
+ "loss": 3.930936813354492,
+ "step": 1397
+ },
+ {
+ "epoch": 19.419397116644824,
+ "grad_norm": 0.20353034138679504,
+ "learning_rate": 0.0006,
+ "loss": 3.926954746246338,
+ "step": 1398
+ },
+ {
+ "epoch": 19.433377020532983,
+ "grad_norm": 0.22333289682865143,
+ "learning_rate": 0.0006,
+ "loss": 3.947504997253418,
+ "step": 1399
+ },
+ {
+ "epoch": 19.447356924421143,
+ "grad_norm": 0.21787697076797485,
+ "learning_rate": 0.0006,
+ "loss": 3.9325344562530518,
+ "step": 1400
+ },
+ {
+ "epoch": 19.461336828309307,
+ "grad_norm": 0.22805874049663544,
+ "learning_rate": 0.0006,
+ "loss": 3.9640727043151855,
+ "step": 1401
+ },
+ {
+ "epoch": 19.475316732197467,
+ "grad_norm": 0.22396457195281982,
+ "learning_rate": 0.0006,
+ "loss": 3.9537901878356934,
+ "step": 1402
+ },
+ {
+ "epoch": 19.489296636085626,
+ "grad_norm": 0.2333047240972519,
+ "learning_rate": 0.0006,
+ "loss": 3.935609817504883,
+ "step": 1403
+ },
+ {
+ "epoch": 19.503276539973786,
+ "grad_norm": 0.25063616037368774,
+ "learning_rate": 0.0006,
+ "loss": 3.9659228324890137,
+ "step": 1404
+ },
+ {
+ "epoch": 19.51725644386195,
+ "grad_norm": 0.29074087738990784,
+ "learning_rate": 0.0006,
+ "loss": 3.9552183151245117,
+ "step": 1405
+ },
+ {
+ "epoch": 19.53123634775011,
+ "grad_norm": 0.34876152873039246,
+ "learning_rate": 0.0006,
+ "loss": 3.976163387298584,
+ "step": 1406
+ },
+ {
+ "epoch": 19.54521625163827,
+ "grad_norm": 0.35026612877845764,
+ "learning_rate": 0.0006,
+ "loss": 3.961186408996582,
+ "step": 1407
+ },
+ {
+ "epoch": 19.55919615552643,
+ "grad_norm": 0.3199564218521118,
+ "learning_rate": 0.0006,
+ "loss": 3.9366297721862793,
+ "step": 1408
+ },
+ {
+ "epoch": 19.573176059414592,
+ "grad_norm": 0.2976185977458954,
+ "learning_rate": 0.0006,
+ "loss": 3.9502010345458984,
+ "step": 1409
+ },
+ {
+ "epoch": 19.587155963302752,
+ "grad_norm": 0.2951911687850952,
+ "learning_rate": 0.0006,
+ "loss": 3.9427943229675293,
+ "step": 1410
+ },
+ {
+ "epoch": 19.601135867190912,
+ "grad_norm": 0.27918702363967896,
+ "learning_rate": 0.0006,
+ "loss": 3.963700532913208,
+ "step": 1411
+ },
+ {
+ "epoch": 19.615115771079076,
+ "grad_norm": 0.26197490096092224,
+ "learning_rate": 0.0006,
+ "loss": 3.9636964797973633,
+ "step": 1412
+ },
+ {
+ "epoch": 19.629095674967235,
+ "grad_norm": 0.24242281913757324,
+ "learning_rate": 0.0006,
+ "loss": 3.961815595626831,
+ "step": 1413
+ },
+ {
+ "epoch": 19.643075578855395,
+ "grad_norm": 0.2606375515460968,
+ "learning_rate": 0.0006,
+ "loss": 3.946643352508545,
+ "step": 1414
+ },
+ {
+ "epoch": 19.657055482743555,
+ "grad_norm": 0.23353353142738342,
+ "learning_rate": 0.0006,
+ "loss": 3.973155975341797,
+ "step": 1415
+ },
+ {
+ "epoch": 19.67103538663172,
+ "grad_norm": 0.22872662544250488,
+ "learning_rate": 0.0006,
+ "loss": 3.9528894424438477,
+ "step": 1416
+ },
+ {
+ "epoch": 19.68501529051988,
+ "grad_norm": 0.24678432941436768,
+ "learning_rate": 0.0006,
+ "loss": 3.9313249588012695,
+ "step": 1417
+ },
+ {
+ "epoch": 19.698995194408038,
+ "grad_norm": 0.23895515501499176,
+ "learning_rate": 0.0006,
+ "loss": 3.944082498550415,
+ "step": 1418
+ },
+ {
+ "epoch": 19.712975098296198,
+ "grad_norm": 0.23649105429649353,
+ "learning_rate": 0.0006,
+ "loss": 3.962069034576416,
+ "step": 1419
+ },
+ {
+ "epoch": 19.72695500218436,
+ "grad_norm": 0.22031061351299286,
+ "learning_rate": 0.0006,
+ "loss": 3.912972927093506,
+ "step": 1420
+ },
+ {
+ "epoch": 19.74093490607252,
+ "grad_norm": 0.20231695473194122,
+ "learning_rate": 0.0006,
+ "loss": 3.964531421661377,
+ "step": 1421
+ },
+ {
+ "epoch": 19.75491480996068,
+ "grad_norm": 0.19980913400650024,
+ "learning_rate": 0.0006,
+ "loss": 3.9452600479125977,
+ "step": 1422
+ },
+ {
+ "epoch": 19.76889471384884,
+ "grad_norm": 0.21768775582313538,
+ "learning_rate": 0.0006,
+ "loss": 3.9214301109313965,
+ "step": 1423
+ },
+ {
+ "epoch": 19.782874617737004,
+ "grad_norm": 0.21287119388580322,
+ "learning_rate": 0.0006,
+ "loss": 3.9416494369506836,
+ "step": 1424
+ },
+ {
+ "epoch": 19.796854521625164,
+ "grad_norm": 0.21399827301502228,
+ "learning_rate": 0.0006,
+ "loss": 3.971010208129883,
+ "step": 1425
+ },
+ {
+ "epoch": 19.810834425513324,
+ "grad_norm": 0.1957658976316452,
+ "learning_rate": 0.0006,
+ "loss": 3.936331272125244,
+ "step": 1426
+ },
+ {
+ "epoch": 19.824814329401484,
+ "grad_norm": 0.19341488182544708,
+ "learning_rate": 0.0006,
+ "loss": 3.9321448802948,
+ "step": 1427
+ },
+ {
+ "epoch": 19.838794233289647,
+ "grad_norm": 0.18405723571777344,
+ "learning_rate": 0.0006,
+ "loss": 3.939542293548584,
+ "step": 1428
+ },
+ {
+ "epoch": 19.852774137177807,
+ "grad_norm": 0.19672836363315582,
+ "learning_rate": 0.0006,
+ "loss": 3.939652919769287,
+ "step": 1429
+ },
+ {
+ "epoch": 19.866754041065967,
+ "grad_norm": 0.1998940259218216,
+ "learning_rate": 0.0006,
+ "loss": 3.932892322540283,
+ "step": 1430
+ },
+ {
+ "epoch": 19.88073394495413,
+ "grad_norm": 0.2307668924331665,
+ "learning_rate": 0.0006,
+ "loss": 3.9402761459350586,
+ "step": 1431
+ },
+ {
+ "epoch": 19.89471384884229,
+ "grad_norm": 0.2531987726688385,
+ "learning_rate": 0.0006,
+ "loss": 3.9153199195861816,
+ "step": 1432
+ },
+ {
+ "epoch": 19.90869375273045,
+ "grad_norm": 0.2299388349056244,
+ "learning_rate": 0.0006,
+ "loss": 3.9569954872131348,
+ "step": 1433
+ },
+ {
+ "epoch": 19.92267365661861,
+ "grad_norm": 0.2503527104854584,
+ "learning_rate": 0.0006,
+ "loss": 3.9469428062438965,
+ "step": 1434
+ },
+ {
+ "epoch": 19.936653560506773,
+ "grad_norm": 0.25390249490737915,
+ "learning_rate": 0.0006,
+ "loss": 3.941803455352783,
+ "step": 1435
+ },
+ {
+ "epoch": 19.950633464394933,
+ "grad_norm": 0.2288687825202942,
+ "learning_rate": 0.0006,
+ "loss": 3.9385883808135986,
+ "step": 1436
+ },
+ {
+ "epoch": 19.964613368283093,
+ "grad_norm": 0.2231096774339676,
+ "learning_rate": 0.0006,
+ "loss": 3.9255237579345703,
+ "step": 1437
+ },
+ {
+ "epoch": 19.978593272171253,
+ "grad_norm": 0.20729343593120575,
+ "learning_rate": 0.0006,
+ "loss": 3.9443163871765137,
+ "step": 1438
+ },
+ {
+ "epoch": 19.992573176059416,
+ "grad_norm": 0.197743758559227,
+ "learning_rate": 0.0006,
+ "loss": 3.925455093383789,
+ "step": 1439
+ },
+ {
+ "epoch": 20.0,
+ "grad_norm": 0.23943661153316498,
+ "learning_rate": 0.0006,
+ "loss": 3.9458866119384766,
+ "step": 1440
+ },
+ {
+ "epoch": 20.0,
+ "eval_loss": 4.144192218780518,
+ "eval_runtime": 44.0278,
+ "eval_samples_per_second": 55.465,
+ "eval_steps_per_second": 3.475,
+ "step": 1440
+ },
+ {
+ "epoch": 20.01397990388816,
+ "grad_norm": 0.2032143622636795,
+ "learning_rate": 0.0006,
+ "loss": 3.9151499271392822,
+ "step": 1441
+ },
+ {
+ "epoch": 20.027959807776323,
+ "grad_norm": 0.20164789259433746,
+ "learning_rate": 0.0006,
+ "loss": 3.874115228652954,
+ "step": 1442
+ },
+ {
+ "epoch": 20.041939711664483,
+ "grad_norm": 0.20796619355678558,
+ "learning_rate": 0.0006,
+ "loss": 3.9090776443481445,
+ "step": 1443
+ },
+ {
+ "epoch": 20.055919615552643,
+ "grad_norm": 0.1999918520450592,
+ "learning_rate": 0.0006,
+ "loss": 3.926563262939453,
+ "step": 1444
+ },
+ {
+ "epoch": 20.069899519440803,
+ "grad_norm": 0.204790860414505,
+ "learning_rate": 0.0006,
+ "loss": 3.9088830947875977,
+ "step": 1445
+ },
+ {
+ "epoch": 20.083879423328966,
+ "grad_norm": 0.21507175266742706,
+ "learning_rate": 0.0006,
+ "loss": 3.916504383087158,
+ "step": 1446
+ },
+ {
+ "epoch": 20.097859327217126,
+ "grad_norm": 0.2398025095462799,
+ "learning_rate": 0.0006,
+ "loss": 3.9128990173339844,
+ "step": 1447
+ },
+ {
+ "epoch": 20.111839231105286,
+ "grad_norm": 0.26037144660949707,
+ "learning_rate": 0.0006,
+ "loss": 3.9125187397003174,
+ "step": 1448
+ },
+ {
+ "epoch": 20.125819134993446,
+ "grad_norm": 0.25564828515052795,
+ "learning_rate": 0.0006,
+ "loss": 3.891867160797119,
+ "step": 1449
+ },
+ {
+ "epoch": 20.13979903888161,
+ "grad_norm": 0.2767223119735718,
+ "learning_rate": 0.0006,
+ "loss": 3.9202775955200195,
+ "step": 1450
+ },
+ {
+ "epoch": 20.15377894276977,
+ "grad_norm": 0.27696558833122253,
+ "learning_rate": 0.0006,
+ "loss": 3.9231314659118652,
+ "step": 1451
+ },
+ {
+ "epoch": 20.16775884665793,
+ "grad_norm": 0.3054044246673584,
+ "learning_rate": 0.0006,
+ "loss": 3.918138027191162,
+ "step": 1452
+ },
+ {
+ "epoch": 20.18173875054609,
+ "grad_norm": 0.3018973171710968,
+ "learning_rate": 0.0006,
+ "loss": 3.890678882598877,
+ "step": 1453
+ },
+ {
+ "epoch": 20.195718654434252,
+ "grad_norm": 0.306232750415802,
+ "learning_rate": 0.0006,
+ "loss": 3.920753002166748,
+ "step": 1454
+ },
+ {
+ "epoch": 20.209698558322412,
+ "grad_norm": 0.29593729972839355,
+ "learning_rate": 0.0006,
+ "loss": 3.9455509185791016,
+ "step": 1455
+ },
+ {
+ "epoch": 20.22367846221057,
+ "grad_norm": 0.2937646210193634,
+ "learning_rate": 0.0006,
+ "loss": 3.9227709770202637,
+ "step": 1456
+ },
+ {
+ "epoch": 20.23765836609873,
+ "grad_norm": 0.26380231976509094,
+ "learning_rate": 0.0006,
+ "loss": 3.9097609519958496,
+ "step": 1457
+ },
+ {
+ "epoch": 20.251638269986895,
+ "grad_norm": 0.24992692470550537,
+ "learning_rate": 0.0006,
+ "loss": 3.9393627643585205,
+ "step": 1458
+ },
+ {
+ "epoch": 20.265618173875055,
+ "grad_norm": 0.270219087600708,
+ "learning_rate": 0.0006,
+ "loss": 3.929330348968506,
+ "step": 1459
+ },
+ {
+ "epoch": 20.279598077763215,
+ "grad_norm": 0.2860020399093628,
+ "learning_rate": 0.0006,
+ "loss": 3.8947913646698,
+ "step": 1460
+ },
+ {
+ "epoch": 20.293577981651374,
+ "grad_norm": 0.27494579553604126,
+ "learning_rate": 0.0006,
+ "loss": 3.9105992317199707,
+ "step": 1461
+ },
+ {
+ "epoch": 20.307557885539538,
+ "grad_norm": 0.26467713713645935,
+ "learning_rate": 0.0006,
+ "loss": 3.914632797241211,
+ "step": 1462
+ },
+ {
+ "epoch": 20.321537789427698,
+ "grad_norm": 0.25747713446617126,
+ "learning_rate": 0.0006,
+ "loss": 3.919846534729004,
+ "step": 1463
+ },
+ {
+ "epoch": 20.335517693315857,
+ "grad_norm": 0.24027711153030396,
+ "learning_rate": 0.0006,
+ "loss": 3.904740810394287,
+ "step": 1464
+ },
+ {
+ "epoch": 20.34949759720402,
+ "grad_norm": 0.24682414531707764,
+ "learning_rate": 0.0006,
+ "loss": 3.9190149307250977,
+ "step": 1465
+ },
+ {
+ "epoch": 20.36347750109218,
+ "grad_norm": 0.2619759440422058,
+ "learning_rate": 0.0006,
+ "loss": 3.9488329887390137,
+ "step": 1466
+ },
+ {
+ "epoch": 20.37745740498034,
+ "grad_norm": 0.2632448971271515,
+ "learning_rate": 0.0006,
+ "loss": 3.9216647148132324,
+ "step": 1467
+ },
+ {
+ "epoch": 20.3914373088685,
+ "grad_norm": 0.27569764852523804,
+ "learning_rate": 0.0006,
+ "loss": 3.9178895950317383,
+ "step": 1468
+ },
+ {
+ "epoch": 20.405417212756664,
+ "grad_norm": 0.2611774802207947,
+ "learning_rate": 0.0006,
+ "loss": 3.933730125427246,
+ "step": 1469
+ },
+ {
+ "epoch": 20.419397116644824,
+ "grad_norm": 0.2839447557926178,
+ "learning_rate": 0.0006,
+ "loss": 3.9261364936828613,
+ "step": 1470
+ },
+ {
+ "epoch": 20.433377020532983,
+ "grad_norm": 0.29006227850914,
+ "learning_rate": 0.0006,
+ "loss": 3.9157633781433105,
+ "step": 1471
+ },
+ {
+ "epoch": 20.447356924421143,
+ "grad_norm": 0.2809498906135559,
+ "learning_rate": 0.0006,
+ "loss": 3.9211745262145996,
+ "step": 1472
+ },
+ {
+ "epoch": 20.461336828309307,
+ "grad_norm": 0.27859532833099365,
+ "learning_rate": 0.0006,
+ "loss": 3.9115967750549316,
+ "step": 1473
+ },
+ {
+ "epoch": 20.475316732197467,
+ "grad_norm": 0.29114410281181335,
+ "learning_rate": 0.0006,
+ "loss": 3.9024441242218018,
+ "step": 1474
+ },
+ {
+ "epoch": 20.489296636085626,
+ "grad_norm": 0.2686930000782013,
+ "learning_rate": 0.0006,
+ "loss": 3.9497199058532715,
+ "step": 1475
+ },
+ {
+ "epoch": 20.503276539973786,
+ "grad_norm": 0.24120540916919708,
+ "learning_rate": 0.0006,
+ "loss": 3.9218955039978027,
+ "step": 1476
+ },
+ {
+ "epoch": 20.51725644386195,
+ "grad_norm": 0.23689547181129456,
+ "learning_rate": 0.0006,
+ "loss": 3.9410176277160645,
+ "step": 1477
+ },
+ {
+ "epoch": 20.53123634775011,
+ "grad_norm": 0.26382362842559814,
+ "learning_rate": 0.0006,
+ "loss": 3.8880343437194824,
+ "step": 1478
+ },
+ {
+ "epoch": 20.54521625163827,
+ "grad_norm": 0.21628661453723907,
+ "learning_rate": 0.0006,
+ "loss": 3.892622470855713,
+ "step": 1479
+ },
+ {
+ "epoch": 20.55919615552643,
+ "grad_norm": 0.19896996021270752,
+ "learning_rate": 0.0006,
+ "loss": 3.938734769821167,
+ "step": 1480
+ },
+ {
+ "epoch": 20.573176059414592,
+ "grad_norm": 0.20232494175434113,
+ "learning_rate": 0.0006,
+ "loss": 3.9197006225585938,
+ "step": 1481
+ },
+ {
+ "epoch": 20.587155963302752,
+ "grad_norm": 0.21807828545570374,
+ "learning_rate": 0.0006,
+ "loss": 3.9195618629455566,
+ "step": 1482
+ },
+ {
+ "epoch": 20.601135867190912,
+ "grad_norm": 0.21778680384159088,
+ "learning_rate": 0.0006,
+ "loss": 3.913395404815674,
+ "step": 1483
+ },
+ {
+ "epoch": 20.615115771079076,
+ "grad_norm": 0.21015185117721558,
+ "learning_rate": 0.0006,
+ "loss": 3.8858234882354736,
+ "step": 1484
+ },
+ {
+ "epoch": 20.629095674967235,
+ "grad_norm": 0.20131368935108185,
+ "learning_rate": 0.0006,
+ "loss": 3.927213430404663,
+ "step": 1485
+ },
+ {
+ "epoch": 20.643075578855395,
+ "grad_norm": 0.20746243000030518,
+ "learning_rate": 0.0006,
+ "loss": 3.913198471069336,
+ "step": 1486
+ },
+ {
+ "epoch": 20.657055482743555,
+ "grad_norm": 0.2024548053741455,
+ "learning_rate": 0.0006,
+ "loss": 3.923048257827759,
+ "step": 1487
+ },
+ {
+ "epoch": 20.67103538663172,
+ "grad_norm": 0.19735988974571228,
+ "learning_rate": 0.0006,
+ "loss": 3.9136500358581543,
+ "step": 1488
+ },
+ {
+ "epoch": 20.68501529051988,
+ "grad_norm": 0.19781625270843506,
+ "learning_rate": 0.0006,
+ "loss": 3.883793592453003,
+ "step": 1489
+ },
+ {
+ "epoch": 20.698995194408038,
+ "grad_norm": 0.1911996454000473,
+ "learning_rate": 0.0006,
+ "loss": 3.9078567028045654,
+ "step": 1490
+ },
+ {
+ "epoch": 20.712975098296198,
+ "grad_norm": 0.1989123821258545,
+ "learning_rate": 0.0006,
+ "loss": 3.9314043521881104,
+ "step": 1491
+ },
+ {
+ "epoch": 20.72695500218436,
+ "grad_norm": 0.18839342892169952,
+ "learning_rate": 0.0006,
+ "loss": 3.8955953121185303,
+ "step": 1492
+ },
+ {
+ "epoch": 20.74093490607252,
+ "grad_norm": 0.1944834142923355,
+ "learning_rate": 0.0006,
+ "loss": 3.9272377490997314,
+ "step": 1493
+ },
+ {
+ "epoch": 20.75491480996068,
+ "grad_norm": 0.20829126238822937,
+ "learning_rate": 0.0006,
+ "loss": 3.878857374191284,
+ "step": 1494
+ },
+ {
+ "epoch": 20.76889471384884,
+ "grad_norm": 0.21438424289226532,
+ "learning_rate": 0.0006,
+ "loss": 3.9155564308166504,
+ "step": 1495
+ },
+ {
+ "epoch": 20.782874617737004,
+ "grad_norm": 0.22309324145317078,
+ "learning_rate": 0.0006,
+ "loss": 3.9281692504882812,
+ "step": 1496
+ },
+ {
+ "epoch": 20.796854521625164,
+ "grad_norm": 0.2053767591714859,
+ "learning_rate": 0.0006,
+ "loss": 3.9096317291259766,
+ "step": 1497
+ },
+ {
+ "epoch": 20.810834425513324,
+ "grad_norm": 0.20429186522960663,
+ "learning_rate": 0.0006,
+ "loss": 3.9184865951538086,
+ "step": 1498
+ },
+ {
+ "epoch": 20.824814329401484,
+ "grad_norm": 0.21983473002910614,
+ "learning_rate": 0.0006,
+ "loss": 3.9130771160125732,
+ "step": 1499
+ },
+ {
+ "epoch": 20.838794233289647,
+ "grad_norm": 0.21649539470672607,
+ "learning_rate": 0.0006,
+ "loss": 3.921581268310547,
+ "step": 1500
+ },
+ {
+ "epoch": 20.852774137177807,
+ "grad_norm": 0.19645053148269653,
+ "learning_rate": 0.0006,
+ "loss": 3.966360092163086,
+ "step": 1501
+ },
+ {
+ "epoch": 20.866754041065967,
+ "grad_norm": 0.2126782387495041,
+ "learning_rate": 0.0006,
+ "loss": 3.9004554748535156,
+ "step": 1502
+ },
+ {
+ "epoch": 20.88073394495413,
+ "grad_norm": 0.22359658777713776,
+ "learning_rate": 0.0006,
+ "loss": 3.92336368560791,
+ "step": 1503
+ },
+ {
+ "epoch": 20.89471384884229,
+ "grad_norm": 0.2334042638540268,
+ "learning_rate": 0.0006,
+ "loss": 3.9188671112060547,
+ "step": 1504
+ },
+ {
+ "epoch": 20.90869375273045,
+ "grad_norm": 0.24595916271209717,
+ "learning_rate": 0.0006,
+ "loss": 3.9348371028900146,
+ "step": 1505
+ },
+ {
+ "epoch": 20.92267365661861,
+ "grad_norm": 0.24177910387516022,
+ "learning_rate": 0.0006,
+ "loss": 3.8796424865722656,
+ "step": 1506
+ },
+ {
+ "epoch": 20.936653560506773,
+ "grad_norm": 0.24193289875984192,
+ "learning_rate": 0.0006,
+ "loss": 3.892627716064453,
+ "step": 1507
+ },
+ {
+ "epoch": 20.950633464394933,
+ "grad_norm": 0.252849280834198,
+ "learning_rate": 0.0006,
+ "loss": 3.9300179481506348,
+ "step": 1508
+ },
+ {
+ "epoch": 20.964613368283093,
+ "grad_norm": 0.24933326244354248,
+ "learning_rate": 0.0006,
+ "loss": 3.9597225189208984,
+ "step": 1509
+ },
+ {
+ "epoch": 20.978593272171253,
+ "grad_norm": 0.23850969970226288,
+ "learning_rate": 0.0006,
+ "loss": 3.9027397632598877,
+ "step": 1510
+ },
+ {
+ "epoch": 20.992573176059416,
+ "grad_norm": 0.23298311233520508,
+ "learning_rate": 0.0006,
+ "loss": 3.9024105072021484,
+ "step": 1511
+ },
+ {
+ "epoch": 21.0,
+ "grad_norm": 0.2467455416917801,
+ "learning_rate": 0.0006,
+ "loss": 3.915929079055786,
+ "step": 1512
+ },
+ {
+ "epoch": 21.0,
+ "eval_loss": 4.136331081390381,
+ "eval_runtime": 43.9468,
+ "eval_samples_per_second": 55.567,
+ "eval_steps_per_second": 3.481,
+ "step": 1512
+ },
+ {
+ "epoch": 21.01397990388816,
+ "grad_norm": 0.2195885181427002,
+ "learning_rate": 0.0006,
+ "loss": 3.873412847518921,
+ "step": 1513
+ },
+ {
+ "epoch": 21.027959807776323,
+ "grad_norm": 0.24250614643096924,
+ "learning_rate": 0.0006,
+ "loss": 3.882302761077881,
+ "step": 1514
+ },
+ {
+ "epoch": 21.041939711664483,
+ "grad_norm": 0.249113991856575,
+ "learning_rate": 0.0006,
+ "loss": 3.9112048149108887,
+ "step": 1515
+ },
+ {
+ "epoch": 21.055919615552643,
+ "grad_norm": 0.25365301966667175,
+ "learning_rate": 0.0006,
+ "loss": 3.8625712394714355,
+ "step": 1516
+ },
+ {
+ "epoch": 21.069899519440803,
+ "grad_norm": 0.2218591272830963,
+ "learning_rate": 0.0006,
+ "loss": 3.876072406768799,
+ "step": 1517
+ },
+ {
+ "epoch": 21.083879423328966,
+ "grad_norm": 0.238582581281662,
+ "learning_rate": 0.0006,
+ "loss": 3.862060546875,
+ "step": 1518
+ },
+ {
+ "epoch": 21.097859327217126,
+ "grad_norm": 0.25051242113113403,
+ "learning_rate": 0.0006,
+ "loss": 3.905315399169922,
+ "step": 1519
+ },
+ {
+ "epoch": 21.111839231105286,
+ "grad_norm": 0.2391843944787979,
+ "learning_rate": 0.0006,
+ "loss": 3.909144401550293,
+ "step": 1520
+ },
+ {
+ "epoch": 21.125819134993446,
+ "grad_norm": 0.230543315410614,
+ "learning_rate": 0.0006,
+ "loss": 3.8856799602508545,
+ "step": 1521
+ },
+ {
+ "epoch": 21.13979903888161,
+ "grad_norm": 0.24165484309196472,
+ "learning_rate": 0.0006,
+ "loss": 3.893883228302002,
+ "step": 1522
+ },
+ {
+ "epoch": 21.15377894276977,
+ "grad_norm": 0.24657143652439117,
+ "learning_rate": 0.0006,
+ "loss": 3.901129722595215,
+ "step": 1523
+ },
+ {
+ "epoch": 21.16775884665793,
+ "grad_norm": 0.2659998834133148,
+ "learning_rate": 0.0006,
+ "loss": 3.910468101501465,
+ "step": 1524
+ },
+ {
+ "epoch": 21.18173875054609,
+ "grad_norm": 0.2673095166683197,
+ "learning_rate": 0.0006,
+ "loss": 3.917454242706299,
+ "step": 1525
+ },
+ {
+ "epoch": 21.195718654434252,
+ "grad_norm": 0.22122322022914886,
+ "learning_rate": 0.0006,
+ "loss": 3.9017257690429688,
+ "step": 1526
+ },
+ {
+ "epoch": 21.209698558322412,
+ "grad_norm": 0.21882867813110352,
+ "learning_rate": 0.0006,
+ "loss": 3.8605496883392334,
+ "step": 1527
+ },
+ {
+ "epoch": 21.22367846221057,
+ "grad_norm": 0.22335563600063324,
+ "learning_rate": 0.0006,
+ "loss": 3.88120174407959,
+ "step": 1528
+ },
+ {
+ "epoch": 21.23765836609873,
+ "grad_norm": 0.22973211109638214,
+ "learning_rate": 0.0006,
+ "loss": 3.8636834621429443,
+ "step": 1529
+ },
+ {
+ "epoch": 21.251638269986895,
+ "grad_norm": 0.2410288006067276,
+ "learning_rate": 0.0006,
+ "loss": 3.8698177337646484,
+ "step": 1530
+ },
+ {
+ "epoch": 21.265618173875055,
+ "grad_norm": 0.2454768717288971,
+ "learning_rate": 0.0006,
+ "loss": 3.905341148376465,
+ "step": 1531
+ },
+ {
+ "epoch": 21.279598077763215,
+ "grad_norm": 0.2271580696105957,
+ "learning_rate": 0.0006,
+ "loss": 3.864063262939453,
+ "step": 1532
+ },
+ {
+ "epoch": 21.293577981651374,
+ "grad_norm": 0.2200947403907776,
+ "learning_rate": 0.0006,
+ "loss": 3.8889589309692383,
+ "step": 1533
+ },
+ {
+ "epoch": 21.307557885539538,
+ "grad_norm": 0.2180824875831604,
+ "learning_rate": 0.0006,
+ "loss": 3.8873472213745117,
+ "step": 1534
+ },
+ {
+ "epoch": 21.321537789427698,
+ "grad_norm": 0.214975506067276,
+ "learning_rate": 0.0006,
+ "loss": 3.882307529449463,
+ "step": 1535
+ },
+ {
+ "epoch": 21.335517693315857,
+ "grad_norm": 0.21411260962486267,
+ "learning_rate": 0.0006,
+ "loss": 3.8861560821533203,
+ "step": 1536
+ },
+ {
+ "epoch": 21.34949759720402,
+ "grad_norm": 0.22635889053344727,
+ "learning_rate": 0.0006,
+ "loss": 3.9174342155456543,
+ "step": 1537
+ },
+ {
+ "epoch": 21.36347750109218,
+ "grad_norm": 0.22700625658035278,
+ "learning_rate": 0.0006,
+ "loss": 3.890416383743286,
+ "step": 1538
+ },
+ {
+ "epoch": 21.37745740498034,
+ "grad_norm": 0.2106025069952011,
+ "learning_rate": 0.0006,
+ "loss": 3.8672406673431396,
+ "step": 1539
+ },
+ {
+ "epoch": 21.3914373088685,
+ "grad_norm": 0.22994661331176758,
+ "learning_rate": 0.0006,
+ "loss": 3.893190383911133,
+ "step": 1540
+ },
+ {
+ "epoch": 21.405417212756664,
+ "grad_norm": 0.24701105058193207,
+ "learning_rate": 0.0006,
+ "loss": 3.898078441619873,
+ "step": 1541
+ },
+ {
+ "epoch": 21.419397116644824,
+ "grad_norm": 0.26914113759994507,
+ "learning_rate": 0.0006,
+ "loss": 3.905871868133545,
+ "step": 1542
+ },
+ {
+ "epoch": 21.433377020532983,
+ "grad_norm": 0.2904224097728729,
+ "learning_rate": 0.0006,
+ "loss": 3.8919103145599365,
+ "step": 1543
+ },
+ {
+ "epoch": 21.447356924421143,
+ "grad_norm": 0.2911844551563263,
+ "learning_rate": 0.0006,
+ "loss": 3.9073286056518555,
+ "step": 1544
+ },
+ {
+ "epoch": 21.461336828309307,
+ "grad_norm": 0.2742345929145813,
+ "learning_rate": 0.0006,
+ "loss": 3.9075546264648438,
+ "step": 1545
+ },
+ {
+ "epoch": 21.475316732197467,
+ "grad_norm": 0.2341093122959137,
+ "learning_rate": 0.0006,
+ "loss": 3.9232025146484375,
+ "step": 1546
+ },
+ {
+ "epoch": 21.489296636085626,
+ "grad_norm": 0.22808541357517242,
+ "learning_rate": 0.0006,
+ "loss": 3.9168174266815186,
+ "step": 1547
+ },
+ {
+ "epoch": 21.503276539973786,
+ "grad_norm": 0.23049889504909515,
+ "learning_rate": 0.0006,
+ "loss": 3.8850595951080322,
+ "step": 1548
+ },
+ {
+ "epoch": 21.51725644386195,
+ "grad_norm": 0.21519650518894196,
+ "learning_rate": 0.0006,
+ "loss": 3.891313076019287,
+ "step": 1549
+ },
+ {
+ "epoch": 21.53123634775011,
+ "grad_norm": 0.20999883115291595,
+ "learning_rate": 0.0006,
+ "loss": 3.894439220428467,
+ "step": 1550
+ },
+ {
+ "epoch": 21.54521625163827,
+ "grad_norm": 0.19641105830669403,
+ "learning_rate": 0.0006,
+ "loss": 3.894871473312378,
+ "step": 1551
+ },
+ {
+ "epoch": 21.55919615552643,
+ "grad_norm": 0.19108249247074127,
+ "learning_rate": 0.0006,
+ "loss": 3.905968189239502,
+ "step": 1552
+ },
+ {
+ "epoch": 21.573176059414592,
+ "grad_norm": 0.20222234725952148,
+ "learning_rate": 0.0006,
+ "loss": 3.90565824508667,
+ "step": 1553
+ },
+ {
+ "epoch": 21.587155963302752,
+ "grad_norm": 0.20620177686214447,
+ "learning_rate": 0.0006,
+ "loss": 3.9103245735168457,
+ "step": 1554
+ },
+ {
+ "epoch": 21.601135867190912,
+ "grad_norm": 0.2149713784456253,
+ "learning_rate": 0.0006,
+ "loss": 3.8864927291870117,
+ "step": 1555
+ },
+ {
+ "epoch": 21.615115771079076,
+ "grad_norm": 0.2354084551334381,
+ "learning_rate": 0.0006,
+ "loss": 3.905095100402832,
+ "step": 1556
+ },
+ {
+ "epoch": 21.629095674967235,
+ "grad_norm": 0.23949941992759705,
+ "learning_rate": 0.0006,
+ "loss": 3.901803493499756,
+ "step": 1557
+ },
+ {
+ "epoch": 21.643075578855395,
+ "grad_norm": 0.22914277017116547,
+ "learning_rate": 0.0006,
+ "loss": 3.876044273376465,
+ "step": 1558
+ },
+ {
+ "epoch": 21.657055482743555,
+ "grad_norm": 0.2363225370645523,
+ "learning_rate": 0.0006,
+ "loss": 3.910841703414917,
+ "step": 1559
+ },
+ {
+ "epoch": 21.67103538663172,
+ "grad_norm": 0.2635626792907715,
+ "learning_rate": 0.0006,
+ "loss": 3.847407579421997,
+ "step": 1560
+ },
+ {
+ "epoch": 21.68501529051988,
+ "grad_norm": 0.2499786615371704,
+ "learning_rate": 0.0006,
+ "loss": 3.8667140007019043,
+ "step": 1561
+ },
+ {
+ "epoch": 21.698995194408038,
+ "grad_norm": 0.21609611809253693,
+ "learning_rate": 0.0006,
+ "loss": 3.895470142364502,
+ "step": 1562
+ },
+ {
+ "epoch": 21.712975098296198,
+ "grad_norm": 0.2466774582862854,
+ "learning_rate": 0.0006,
+ "loss": 3.8853235244750977,
+ "step": 1563
+ },
+ {
+ "epoch": 21.72695500218436,
+ "grad_norm": 0.23791883885860443,
+ "learning_rate": 0.0006,
+ "loss": 3.899418354034424,
+ "step": 1564
+ },
+ {
+ "epoch": 21.74093490607252,
+ "grad_norm": 0.2048920840024948,
+ "learning_rate": 0.0006,
+ "loss": 3.8992419242858887,
+ "step": 1565
+ },
+ {
+ "epoch": 21.75491480996068,
+ "grad_norm": 0.22266621887683868,
+ "learning_rate": 0.0006,
+ "loss": 3.885765552520752,
+ "step": 1566
+ },
+ {
+ "epoch": 21.76889471384884,
+ "grad_norm": 0.2508748769760132,
+ "learning_rate": 0.0006,
+ "loss": 3.8797037601470947,
+ "step": 1567
+ },
+ {
+ "epoch": 21.782874617737004,
+ "grad_norm": 0.27245673537254333,
+ "learning_rate": 0.0006,
+ "loss": 3.8743176460266113,
+ "step": 1568
+ },
+ {
+ "epoch": 21.796854521625164,
+ "grad_norm": 0.25503191351890564,
+ "learning_rate": 0.0006,
+ "loss": 3.868906259536743,
+ "step": 1569
+ },
+ {
+ "epoch": 21.810834425513324,
+ "grad_norm": 0.22984394431114197,
+ "learning_rate": 0.0006,
+ "loss": 3.9051015377044678,
+ "step": 1570
+ },
+ {
+ "epoch": 21.824814329401484,
+ "grad_norm": 0.2411898821592331,
+ "learning_rate": 0.0006,
+ "loss": 3.8911490440368652,
+ "step": 1571
+ },
+ {
+ "epoch": 21.838794233289647,
+ "grad_norm": 0.22609318792819977,
+ "learning_rate": 0.0006,
+ "loss": 3.894839286804199,
+ "step": 1572
+ },
+ {
+ "epoch": 21.852774137177807,
+ "grad_norm": 0.21904583275318146,
+ "learning_rate": 0.0006,
+ "loss": 3.9314537048339844,
+ "step": 1573
+ },
+ {
+ "epoch": 21.866754041065967,
+ "grad_norm": 0.21869723498821259,
+ "learning_rate": 0.0006,
+ "loss": 3.9141433238983154,
+ "step": 1574
+ },
+ {
+ "epoch": 21.88073394495413,
+ "grad_norm": 0.21682019531726837,
+ "learning_rate": 0.0006,
+ "loss": 3.867898464202881,
+ "step": 1575
+ },
+ {
+ "epoch": 21.89471384884229,
+ "grad_norm": 0.2211964726448059,
+ "learning_rate": 0.0006,
+ "loss": 3.8892226219177246,
+ "step": 1576
+ },
+ {
+ "epoch": 21.90869375273045,
+ "grad_norm": 0.2097381353378296,
+ "learning_rate": 0.0006,
+ "loss": 3.9194154739379883,
+ "step": 1577
+ },
+ {
+ "epoch": 21.92267365661861,
+ "grad_norm": 0.21229565143585205,
+ "learning_rate": 0.0006,
+ "loss": 3.924694538116455,
+ "step": 1578
+ },
+ {
+ "epoch": 21.936653560506773,
+ "grad_norm": 0.2186083346605301,
+ "learning_rate": 0.0006,
+ "loss": 3.904440402984619,
+ "step": 1579
+ },
+ {
+ "epoch": 21.950633464394933,
+ "grad_norm": 0.21112321317195892,
+ "learning_rate": 0.0006,
+ "loss": 3.905674934387207,
+ "step": 1580
+ },
+ {
+ "epoch": 21.964613368283093,
+ "grad_norm": 0.20867373049259186,
+ "learning_rate": 0.0006,
+ "loss": 3.8761563301086426,
+ "step": 1581
+ },
+ {
+ "epoch": 21.978593272171253,
+ "grad_norm": 0.21640732884407043,
+ "learning_rate": 0.0006,
+ "loss": 3.871950149536133,
+ "step": 1582
+ },
+ {
+ "epoch": 21.992573176059416,
+ "grad_norm": 0.21920442581176758,
+ "learning_rate": 0.0006,
+ "loss": 3.8853464126586914,
+ "step": 1583
+ },
+ {
+ "epoch": 22.0,
+ "grad_norm": 0.24132665991783142,
+ "learning_rate": 0.0006,
+ "loss": 3.9012184143066406,
+ "step": 1584
+ },
+ {
+ "epoch": 22.0,
+ "eval_loss": 4.108598232269287,
+ "eval_runtime": 44.0434,
+ "eval_samples_per_second": 55.445,
+ "eval_steps_per_second": 3.474,
+ "step": 1584
+ },
+ {
+ "epoch": 22.01397990388816,
+ "grad_norm": 0.21989449858665466,
+ "learning_rate": 0.0006,
+ "loss": 3.8657469749450684,
+ "step": 1585
+ },
+ {
+ "epoch": 22.027959807776323,
+ "grad_norm": 0.20416802167892456,
+ "learning_rate": 0.0006,
+ "loss": 3.8682117462158203,
+ "step": 1586
+ },
+ {
+ "epoch": 22.041939711664483,
+ "grad_norm": 0.20651975274085999,
+ "learning_rate": 0.0006,
+ "loss": 3.8501222133636475,
+ "step": 1587
+ },
+ {
+ "epoch": 22.055919615552643,
+ "grad_norm": 0.22987176477909088,
+ "learning_rate": 0.0006,
+ "loss": 3.8830955028533936,
+ "step": 1588
+ },
+ {
+ "epoch": 22.069899519440803,
+ "grad_norm": 0.23308858275413513,
+ "learning_rate": 0.0006,
+ "loss": 3.8659040927886963,
+ "step": 1589
+ },
+ {
+ "epoch": 22.083879423328966,
+ "grad_norm": 0.2144266963005066,
+ "learning_rate": 0.0006,
+ "loss": 3.8311047554016113,
+ "step": 1590
+ },
+ {
+ "epoch": 22.097859327217126,
+ "grad_norm": 0.2052636295557022,
+ "learning_rate": 0.0006,
+ "loss": 3.8700156211853027,
+ "step": 1591
+ },
+ {
+ "epoch": 22.111839231105286,
+ "grad_norm": 0.22792384028434753,
+ "learning_rate": 0.0006,
+ "loss": 3.8799097537994385,
+ "step": 1592
+ },
+ {
+ "epoch": 22.125819134993446,
+ "grad_norm": 0.2533944249153137,
+ "learning_rate": 0.0006,
+ "loss": 3.874959945678711,
+ "step": 1593
+ },
+ {
+ "epoch": 22.13979903888161,
+ "grad_norm": 0.27126258611679077,
+ "learning_rate": 0.0006,
+ "loss": 3.863774299621582,
+ "step": 1594
+ },
+ {
+ "epoch": 22.15377894276977,
+ "grad_norm": 0.2634040415287018,
+ "learning_rate": 0.0006,
+ "loss": 3.8876869678497314,
+ "step": 1595
+ },
+ {
+ "epoch": 22.16775884665793,
+ "grad_norm": 0.267987459897995,
+ "learning_rate": 0.0006,
+ "loss": 3.871776819229126,
+ "step": 1596
+ },
+ {
+ "epoch": 22.18173875054609,
+ "grad_norm": 0.2972337305545807,
+ "learning_rate": 0.0006,
+ "loss": 3.8453969955444336,
+ "step": 1597
+ },
+ {
+ "epoch": 22.195718654434252,
+ "grad_norm": 0.3012159764766693,
+ "learning_rate": 0.0006,
+ "loss": 3.8774254322052,
+ "step": 1598
+ },
+ {
+ "epoch": 22.209698558322412,
+ "grad_norm": 0.27275875210762024,
+ "learning_rate": 0.0006,
+ "loss": 3.8558950424194336,
+ "step": 1599
+ },
+ {
+ "epoch": 22.22367846221057,
+ "grad_norm": 0.2817993462085724,
+ "learning_rate": 0.0006,
+ "loss": 3.872211217880249,
+ "step": 1600
+ },
+ {
+ "epoch": 22.23765836609873,
+ "grad_norm": 0.28823208808898926,
+ "learning_rate": 0.0006,
+ "loss": 3.847616672515869,
+ "step": 1601
+ },
+ {
+ "epoch": 22.251638269986895,
+ "grad_norm": 0.2646387815475464,
+ "learning_rate": 0.0006,
+ "loss": 3.8993802070617676,
+ "step": 1602
+ },
+ {
+ "epoch": 22.265618173875055,
+ "grad_norm": 0.27664077281951904,
+ "learning_rate": 0.0006,
+ "loss": 3.858553409576416,
+ "step": 1603
+ },
+ {
+ "epoch": 22.279598077763215,
+ "grad_norm": 0.27708905935287476,
+ "learning_rate": 0.0006,
+ "loss": 3.8691039085388184,
+ "step": 1604
+ },
+ {
+ "epoch": 22.293577981651374,
+ "grad_norm": 0.3045521378517151,
+ "learning_rate": 0.0006,
+ "loss": 3.8721439838409424,
+ "step": 1605
+ },
+ {
+ "epoch": 22.307557885539538,
+ "grad_norm": 0.3481914699077606,
+ "learning_rate": 0.0006,
+ "loss": 3.894503593444824,
+ "step": 1606
+ },
+ {
+ "epoch": 22.321537789427698,
+ "grad_norm": 0.3298046588897705,
+ "learning_rate": 0.0006,
+ "loss": 3.8420844078063965,
+ "step": 1607
+ },
+ {
+ "epoch": 22.335517693315857,
+ "grad_norm": 0.24967724084854126,
+ "learning_rate": 0.0006,
+ "loss": 3.8892619609832764,
+ "step": 1608
+ },
+ {
+ "epoch": 22.34949759720402,
+ "grad_norm": 0.22645241022109985,
+ "learning_rate": 0.0006,
+ "loss": 3.873265504837036,
+ "step": 1609
+ },
+ {
+ "epoch": 22.36347750109218,
+ "grad_norm": 0.22813954949378967,
+ "learning_rate": 0.0006,
+ "loss": 3.8658013343811035,
+ "step": 1610
+ },
+ {
+ "epoch": 22.37745740498034,
+ "grad_norm": 0.23825274407863617,
+ "learning_rate": 0.0006,
+ "loss": 3.885456085205078,
+ "step": 1611
+ },
+ {
+ "epoch": 22.3914373088685,
+ "grad_norm": 0.23612336814403534,
+ "learning_rate": 0.0006,
+ "loss": 3.851841449737549,
+ "step": 1612
+ },
+ {
+ "epoch": 22.405417212756664,
+ "grad_norm": 0.23851265013217926,
+ "learning_rate": 0.0006,
+ "loss": 3.8711647987365723,
+ "step": 1613
+ },
+ {
+ "epoch": 22.419397116644824,
+ "grad_norm": 0.22977286577224731,
+ "learning_rate": 0.0006,
+ "loss": 3.848539113998413,
+ "step": 1614
+ },
+ {
+ "epoch": 22.433377020532983,
+ "grad_norm": 0.20970143377780914,
+ "learning_rate": 0.0006,
+ "loss": 3.8709521293640137,
+ "step": 1615
+ },
+ {
+ "epoch": 22.447356924421143,
+ "grad_norm": 0.20714804530143738,
+ "learning_rate": 0.0006,
+ "loss": 3.875060558319092,
+ "step": 1616
+ },
+ {
+ "epoch": 22.461336828309307,
+ "grad_norm": 0.18881355226039886,
+ "learning_rate": 0.0006,
+ "loss": 3.8744640350341797,
+ "step": 1617
+ },
+ {
+ "epoch": 22.475316732197467,
+ "grad_norm": 0.1928759068250656,
+ "learning_rate": 0.0006,
+ "loss": 3.867971420288086,
+ "step": 1618
+ },
+ {
+ "epoch": 22.489296636085626,
+ "grad_norm": 0.18614749610424042,
+ "learning_rate": 0.0006,
+ "loss": 3.8738222122192383,
+ "step": 1619
+ },
+ {
+ "epoch": 22.503276539973786,
+ "grad_norm": 0.18614931404590607,
+ "learning_rate": 0.0006,
+ "loss": 3.8470513820648193,
+ "step": 1620
+ },
+ {
+ "epoch": 22.51725644386195,
+ "grad_norm": 0.17805059254169464,
+ "learning_rate": 0.0006,
+ "loss": 3.866396903991699,
+ "step": 1621
+ },
+ {
+ "epoch": 22.53123634775011,
+ "grad_norm": 0.16941314935684204,
+ "learning_rate": 0.0006,
+ "loss": 3.856832265853882,
+ "step": 1622
+ },
+ {
+ "epoch": 22.54521625163827,
+ "grad_norm": 0.1802310198545456,
+ "learning_rate": 0.0006,
+ "loss": 3.885653018951416,
+ "step": 1623
+ },
+ {
+ "epoch": 22.55919615552643,
+ "grad_norm": 0.1854856163263321,
+ "learning_rate": 0.0006,
+ "loss": 3.8779640197753906,
+ "step": 1624
+ },
+ {
+ "epoch": 22.573176059414592,
+ "grad_norm": 0.18765869736671448,
+ "learning_rate": 0.0006,
+ "loss": 3.8449032306671143,
+ "step": 1625
+ },
+ {
+ "epoch": 22.587155963302752,
+ "grad_norm": 0.1907789707183838,
+ "learning_rate": 0.0006,
+ "loss": 3.863029718399048,
+ "step": 1626
+ },
+ {
+ "epoch": 22.601135867190912,
+ "grad_norm": 0.19285395741462708,
+ "learning_rate": 0.0006,
+ "loss": 3.880145788192749,
+ "step": 1627
+ },
+ {
+ "epoch": 22.615115771079076,
+ "grad_norm": 0.19229751825332642,
+ "learning_rate": 0.0006,
+ "loss": 3.8521225452423096,
+ "step": 1628
+ },
+ {
+ "epoch": 22.629095674967235,
+ "grad_norm": 0.191694438457489,
+ "learning_rate": 0.0006,
+ "loss": 3.899827003479004,
+ "step": 1629
+ },
+ {
+ "epoch": 22.643075578855395,
+ "grad_norm": 0.20143048465251923,
+ "learning_rate": 0.0006,
+ "loss": 3.862064838409424,
+ "step": 1630
+ },
+ {
+ "epoch": 22.657055482743555,
+ "grad_norm": 0.1959840953350067,
+ "learning_rate": 0.0006,
+ "loss": 3.8955392837524414,
+ "step": 1631
+ },
+ {
+ "epoch": 22.67103538663172,
+ "grad_norm": 0.21454884111881256,
+ "learning_rate": 0.0006,
+ "loss": 3.8503167629241943,
+ "step": 1632
+ },
+ {
+ "epoch": 22.68501529051988,
+ "grad_norm": 0.21748484671115875,
+ "learning_rate": 0.0006,
+ "loss": 3.897134304046631,
+ "step": 1633
+ },
+ {
+ "epoch": 22.698995194408038,
+ "grad_norm": 0.21204186975955963,
+ "learning_rate": 0.0006,
+ "loss": 3.9292588233947754,
+ "step": 1634
+ },
+ {
+ "epoch": 22.712975098296198,
+ "grad_norm": 0.2112748771905899,
+ "learning_rate": 0.0006,
+ "loss": 3.89798641204834,
+ "step": 1635
+ },
+ {
+ "epoch": 22.72695500218436,
+ "grad_norm": 0.188576802611351,
+ "learning_rate": 0.0006,
+ "loss": 3.85627818107605,
+ "step": 1636
+ },
+ {
+ "epoch": 22.74093490607252,
+ "grad_norm": 0.17755994200706482,
+ "learning_rate": 0.0006,
+ "loss": 3.8480074405670166,
+ "step": 1637
+ },
+ {
+ "epoch": 22.75491480996068,
+ "grad_norm": 0.18037520349025726,
+ "learning_rate": 0.0006,
+ "loss": 3.8800172805786133,
+ "step": 1638
+ },
+ {
+ "epoch": 22.76889471384884,
+ "grad_norm": 0.19205765426158905,
+ "learning_rate": 0.0006,
+ "loss": 3.8658275604248047,
+ "step": 1639
+ },
+ {
+ "epoch": 22.782874617737004,
+ "grad_norm": 0.21801964938640594,
+ "learning_rate": 0.0006,
+ "loss": 3.8999452590942383,
+ "step": 1640
+ },
+ {
+ "epoch": 22.796854521625164,
+ "grad_norm": 0.23586086928844452,
+ "learning_rate": 0.0006,
+ "loss": 3.8660664558410645,
+ "step": 1641
+ },
+ {
+ "epoch": 22.810834425513324,
+ "grad_norm": 0.22289055585861206,
+ "learning_rate": 0.0006,
+ "loss": 3.86102557182312,
+ "step": 1642
+ },
+ {
+ "epoch": 22.824814329401484,
+ "grad_norm": 0.20695745944976807,
+ "learning_rate": 0.0006,
+ "loss": 3.8336222171783447,
+ "step": 1643
+ },
+ {
+ "epoch": 22.838794233289647,
+ "grad_norm": 0.2157406210899353,
+ "learning_rate": 0.0006,
+ "loss": 3.8923370838165283,
+ "step": 1644
+ },
+ {
+ "epoch": 22.852774137177807,
+ "grad_norm": 0.2326202690601349,
+ "learning_rate": 0.0006,
+ "loss": 3.8841443061828613,
+ "step": 1645
+ },
+ {
+ "epoch": 22.866754041065967,
+ "grad_norm": 0.2228803187608719,
+ "learning_rate": 0.0006,
+ "loss": 3.8791375160217285,
+ "step": 1646
+ },
+ {
+ "epoch": 22.88073394495413,
+ "grad_norm": 0.228999063372612,
+ "learning_rate": 0.0006,
+ "loss": 3.9005866050720215,
+ "step": 1647
+ },
+ {
+ "epoch": 22.89471384884229,
+ "grad_norm": 0.19673815369606018,
+ "learning_rate": 0.0006,
+ "loss": 3.8954291343688965,
+ "step": 1648
+ },
+ {
+ "epoch": 22.90869375273045,
+ "grad_norm": 0.1862584501504898,
+ "learning_rate": 0.0006,
+ "loss": 3.8591439723968506,
+ "step": 1649
+ },
+ {
+ "epoch": 22.92267365661861,
+ "grad_norm": 0.21360838413238525,
+ "learning_rate": 0.0006,
+ "loss": 3.862949848175049,
+ "step": 1650
+ },
+ {
+ "epoch": 22.936653560506773,
+ "grad_norm": 0.22538702189922333,
+ "learning_rate": 0.0006,
+ "loss": 3.8466529846191406,
+ "step": 1651
+ },
+ {
+ "epoch": 22.950633464394933,
+ "grad_norm": 0.21452727913856506,
+ "learning_rate": 0.0006,
+ "loss": 3.890007495880127,
+ "step": 1652
+ },
+ {
+ "epoch": 22.964613368283093,
+ "grad_norm": 0.21283482015132904,
+ "learning_rate": 0.0006,
+ "loss": 3.8820929527282715,
+ "step": 1653
+ },
+ {
+ "epoch": 22.978593272171253,
+ "grad_norm": 0.2035825103521347,
+ "learning_rate": 0.0006,
+ "loss": 3.8663241863250732,
+ "step": 1654
+ },
+ {
+ "epoch": 22.992573176059416,
+ "grad_norm": 0.22431661188602448,
+ "learning_rate": 0.0006,
+ "loss": 3.88238525390625,
+ "step": 1655
+ },
+ {
+ "epoch": 23.0,
+ "grad_norm": 0.2619943916797638,
+ "learning_rate": 0.0006,
+ "loss": 3.8482635021209717,
+ "step": 1656
+ },
+ {
+ "epoch": 23.0,
+ "eval_loss": 4.099980354309082,
+ "eval_runtime": 44.1311,
+ "eval_samples_per_second": 55.335,
+ "eval_steps_per_second": 3.467,
+ "step": 1656
+ },
+ {
+ "epoch": 23.01397990388816,
+ "grad_norm": 0.24712848663330078,
+ "learning_rate": 0.0006,
+ "loss": 3.836700916290283,
+ "step": 1657
+ },
+ {
+ "epoch": 23.027959807776323,
+ "grad_norm": 0.28568798303604126,
+ "learning_rate": 0.0006,
+ "loss": 3.8523952960968018,
+ "step": 1658
+ },
+ {
+ "epoch": 23.041939711664483,
+ "grad_norm": 0.2999744415283203,
+ "learning_rate": 0.0006,
+ "loss": 3.8229494094848633,
+ "step": 1659
+ },
+ {
+ "epoch": 23.055919615552643,
+ "grad_norm": 0.32080450654029846,
+ "learning_rate": 0.0006,
+ "loss": 3.8562774658203125,
+ "step": 1660
+ },
+ {
+ "epoch": 23.069899519440803,
+ "grad_norm": 0.293468177318573,
+ "learning_rate": 0.0006,
+ "loss": 3.889139175415039,
+ "step": 1661
+ },
+ {
+ "epoch": 23.083879423328966,
+ "grad_norm": 0.2605799436569214,
+ "learning_rate": 0.0006,
+ "loss": 3.838681221008301,
+ "step": 1662
+ },
+ {
+ "epoch": 23.097859327217126,
+ "grad_norm": 0.2656237483024597,
+ "learning_rate": 0.0006,
+ "loss": 3.8603532314300537,
+ "step": 1663
+ },
+ {
+ "epoch": 23.111839231105286,
+ "grad_norm": 0.27163293957710266,
+ "learning_rate": 0.0006,
+ "loss": 3.846987009048462,
+ "step": 1664
+ },
+ {
+ "epoch": 23.125819134993446,
+ "grad_norm": 0.2719763517379761,
+ "learning_rate": 0.0006,
+ "loss": 3.805354595184326,
+ "step": 1665
+ },
+ {
+ "epoch": 23.13979903888161,
+ "grad_norm": 0.25786274671554565,
+ "learning_rate": 0.0006,
+ "loss": 3.8486907482147217,
+ "step": 1666
+ },
+ {
+ "epoch": 23.15377894276977,
+ "grad_norm": 0.2675692141056061,
+ "learning_rate": 0.0006,
+ "loss": 3.816493511199951,
+ "step": 1667
+ },
+ {
+ "epoch": 23.16775884665793,
+ "grad_norm": 0.2711698114871979,
+ "learning_rate": 0.0006,
+ "loss": 3.851863384246826,
+ "step": 1668
+ },
+ {
+ "epoch": 23.18173875054609,
+ "grad_norm": 0.2588968873023987,
+ "learning_rate": 0.0006,
+ "loss": 3.860816717147827,
+ "step": 1669
+ },
+ {
+ "epoch": 23.195718654434252,
+ "grad_norm": 0.2458600401878357,
+ "learning_rate": 0.0006,
+ "loss": 3.8058223724365234,
+ "step": 1670
+ },
+ {
+ "epoch": 23.209698558322412,
+ "grad_norm": 0.22014005482196808,
+ "learning_rate": 0.0006,
+ "loss": 3.8686985969543457,
+ "step": 1671
+ },
+ {
+ "epoch": 23.22367846221057,
+ "grad_norm": 0.22450537979602814,
+ "learning_rate": 0.0006,
+ "loss": 3.8379364013671875,
+ "step": 1672
+ },
+ {
+ "epoch": 23.23765836609873,
+ "grad_norm": 0.22132326662540436,
+ "learning_rate": 0.0006,
+ "loss": 3.8873870372772217,
+ "step": 1673
+ },
+ {
+ "epoch": 23.251638269986895,
+ "grad_norm": 0.20994804799556732,
+ "learning_rate": 0.0006,
+ "loss": 3.821415424346924,
+ "step": 1674
+ },
+ {
+ "epoch": 23.265618173875055,
+ "grad_norm": 0.2040853649377823,
+ "learning_rate": 0.0006,
+ "loss": 3.831658124923706,
+ "step": 1675
+ },
+ {
+ "epoch": 23.279598077763215,
+ "grad_norm": 0.20878618955612183,
+ "learning_rate": 0.0006,
+ "loss": 3.838672637939453,
+ "step": 1676
+ },
+ {
+ "epoch": 23.293577981651374,
+ "grad_norm": 0.19974198937416077,
+ "learning_rate": 0.0006,
+ "loss": 3.8442561626434326,
+ "step": 1677
+ },
+ {
+ "epoch": 23.307557885539538,
+ "grad_norm": 0.20523984730243683,
+ "learning_rate": 0.0006,
+ "loss": 3.846139907836914,
+ "step": 1678
+ },
+ {
+ "epoch": 23.321537789427698,
+ "grad_norm": 0.2045847624540329,
+ "learning_rate": 0.0006,
+ "loss": 3.8597474098205566,
+ "step": 1679
+ },
+ {
+ "epoch": 23.335517693315857,
+ "grad_norm": 0.20957441627979279,
+ "learning_rate": 0.0006,
+ "loss": 3.8493881225585938,
+ "step": 1680
+ },
+ {
+ "epoch": 23.34949759720402,
+ "grad_norm": 0.2069379836320877,
+ "learning_rate": 0.0006,
+ "loss": 3.8510046005249023,
+ "step": 1681
+ },
+ {
+ "epoch": 23.36347750109218,
+ "grad_norm": 0.19627872109413147,
+ "learning_rate": 0.0006,
+ "loss": 3.844618320465088,
+ "step": 1682
+ },
+ {
+ "epoch": 23.37745740498034,
+ "grad_norm": 0.19599434733390808,
+ "learning_rate": 0.0006,
+ "loss": 3.8245465755462646,
+ "step": 1683
+ },
+ {
+ "epoch": 23.3914373088685,
+ "grad_norm": 0.2035072147846222,
+ "learning_rate": 0.0006,
+ "loss": 3.854422092437744,
+ "step": 1684
+ },
+ {
+ "epoch": 23.405417212756664,
+ "grad_norm": 0.21836814284324646,
+ "learning_rate": 0.0006,
+ "loss": 3.83512282371521,
+ "step": 1685
+ },
+ {
+ "epoch": 23.419397116644824,
+ "grad_norm": 0.22844630479812622,
+ "learning_rate": 0.0006,
+ "loss": 3.8744301795959473,
+ "step": 1686
+ },
+ {
+ "epoch": 23.433377020532983,
+ "grad_norm": 0.2259359359741211,
+ "learning_rate": 0.0006,
+ "loss": 3.8460323810577393,
+ "step": 1687
+ },
+ {
+ "epoch": 23.447356924421143,
+ "grad_norm": 0.24440120160579681,
+ "learning_rate": 0.0006,
+ "loss": 3.8543787002563477,
+ "step": 1688
+ },
+ {
+ "epoch": 23.461336828309307,
+ "grad_norm": 0.25063708424568176,
+ "learning_rate": 0.0006,
+ "loss": 3.851004123687744,
+ "step": 1689
+ },
+ {
+ "epoch": 23.475316732197467,
+ "grad_norm": 0.25515618920326233,
+ "learning_rate": 0.0006,
+ "loss": 3.8685030937194824,
+ "step": 1690
+ },
+ {
+ "epoch": 23.489296636085626,
+ "grad_norm": 0.23961050808429718,
+ "learning_rate": 0.0006,
+ "loss": 3.866792678833008,
+ "step": 1691
+ },
+ {
+ "epoch": 23.503276539973786,
+ "grad_norm": 0.20880955457687378,
+ "learning_rate": 0.0006,
+ "loss": 3.8416638374328613,
+ "step": 1692
+ },
+ {
+ "epoch": 23.51725644386195,
+ "grad_norm": 0.1989721804857254,
+ "learning_rate": 0.0006,
+ "loss": 3.8608641624450684,
+ "step": 1693
+ },
+ {
+ "epoch": 23.53123634775011,
+ "grad_norm": 0.207577183842659,
+ "learning_rate": 0.0006,
+ "loss": 3.8431811332702637,
+ "step": 1694
+ },
+ {
+ "epoch": 23.54521625163827,
+ "grad_norm": 0.20844359695911407,
+ "learning_rate": 0.0006,
+ "loss": 3.882844924926758,
+ "step": 1695
+ },
+ {
+ "epoch": 23.55919615552643,
+ "grad_norm": 0.22511139512062073,
+ "learning_rate": 0.0006,
+ "loss": 3.866156578063965,
+ "step": 1696
+ },
+ {
+ "epoch": 23.573176059414592,
+ "grad_norm": 0.21648484468460083,
+ "learning_rate": 0.0006,
+ "loss": 3.87117075920105,
+ "step": 1697
+ },
+ {
+ "epoch": 23.587155963302752,
+ "grad_norm": 0.2081802636384964,
+ "learning_rate": 0.0006,
+ "loss": 3.828132152557373,
+ "step": 1698
+ },
+ {
+ "epoch": 23.601135867190912,
+ "grad_norm": 0.2017381489276886,
+ "learning_rate": 0.0006,
+ "loss": 3.839737892150879,
+ "step": 1699
+ },
+ {
+ "epoch": 23.615115771079076,
+ "grad_norm": 0.2025786191225052,
+ "learning_rate": 0.0006,
+ "loss": 3.8787710666656494,
+ "step": 1700
+ },
+ {
+ "epoch": 23.629095674967235,
+ "grad_norm": 0.21394102275371552,
+ "learning_rate": 0.0006,
+ "loss": 3.824047088623047,
+ "step": 1701
+ },
+ {
+ "epoch": 23.643075578855395,
+ "grad_norm": 0.20749174058437347,
+ "learning_rate": 0.0006,
+ "loss": 3.877009153366089,
+ "step": 1702
+ },
+ {
+ "epoch": 23.657055482743555,
+ "grad_norm": 0.2132839858531952,
+ "learning_rate": 0.0006,
+ "loss": 3.844214916229248,
+ "step": 1703
+ },
+ {
+ "epoch": 23.67103538663172,
+ "grad_norm": 0.22408637404441833,
+ "learning_rate": 0.0006,
+ "loss": 3.8570785522460938,
+ "step": 1704
+ },
+ {
+ "epoch": 23.68501529051988,
+ "grad_norm": 0.2275897115468979,
+ "learning_rate": 0.0006,
+ "loss": 3.8599512577056885,
+ "step": 1705
+ },
+ {
+ "epoch": 23.698995194408038,
+ "grad_norm": 0.2230614721775055,
+ "learning_rate": 0.0006,
+ "loss": 3.86374568939209,
+ "step": 1706
+ },
+ {
+ "epoch": 23.712975098296198,
+ "grad_norm": 0.21873739361763,
+ "learning_rate": 0.0006,
+ "loss": 3.8530168533325195,
+ "step": 1707
+ },
+ {
+ "epoch": 23.72695500218436,
+ "grad_norm": 0.24418923258781433,
+ "learning_rate": 0.0006,
+ "loss": 3.8410465717315674,
+ "step": 1708
+ },
+ {
+ "epoch": 23.74093490607252,
+ "grad_norm": 0.24894575774669647,
+ "learning_rate": 0.0006,
+ "loss": 3.8386030197143555,
+ "step": 1709
+ },
+ {
+ "epoch": 23.75491480996068,
+ "grad_norm": 0.221230611205101,
+ "learning_rate": 0.0006,
+ "loss": 3.8116674423217773,
+ "step": 1710
+ },
+ {
+ "epoch": 23.76889471384884,
+ "grad_norm": 0.20560568571090698,
+ "learning_rate": 0.0006,
+ "loss": 3.8634426593780518,
+ "step": 1711
+ },
+ {
+ "epoch": 23.782874617737004,
+ "grad_norm": 0.20450648665428162,
+ "learning_rate": 0.0006,
+ "loss": 3.8690528869628906,
+ "step": 1712
+ },
+ {
+ "epoch": 23.796854521625164,
+ "grad_norm": 0.18996809422969818,
+ "learning_rate": 0.0006,
+ "loss": 3.8484325408935547,
+ "step": 1713
+ },
+ {
+ "epoch": 23.810834425513324,
+ "grad_norm": 0.20165087282657623,
+ "learning_rate": 0.0006,
+ "loss": 3.8823161125183105,
+ "step": 1714
+ },
+ {
+ "epoch": 23.824814329401484,
+ "grad_norm": 0.21149255335330963,
+ "learning_rate": 0.0006,
+ "loss": 3.8833112716674805,
+ "step": 1715
+ },
+ {
+ "epoch": 23.838794233289647,
+ "grad_norm": 0.21254824101924896,
+ "learning_rate": 0.0006,
+ "loss": 3.8414595127105713,
+ "step": 1716
+ },
+ {
+ "epoch": 23.852774137177807,
+ "grad_norm": 0.21313664317131042,
+ "learning_rate": 0.0006,
+ "loss": 3.8732268810272217,
+ "step": 1717
+ },
+ {
+ "epoch": 23.866754041065967,
+ "grad_norm": 0.21635662019252777,
+ "learning_rate": 0.0006,
+ "loss": 3.861222743988037,
+ "step": 1718
+ },
+ {
+ "epoch": 23.88073394495413,
+ "grad_norm": 0.20612190663814545,
+ "learning_rate": 0.0006,
+ "loss": 3.821854591369629,
+ "step": 1719
+ },
+ {
+ "epoch": 23.89471384884229,
+ "grad_norm": 0.1975104659795761,
+ "learning_rate": 0.0006,
+ "loss": 3.8815202713012695,
+ "step": 1720
+ },
+ {
+ "epoch": 23.90869375273045,
+ "grad_norm": 0.20893609523773193,
+ "learning_rate": 0.0006,
+ "loss": 3.8581607341766357,
+ "step": 1721
+ },
+ {
+ "epoch": 23.92267365661861,
+ "grad_norm": 0.2125461846590042,
+ "learning_rate": 0.0006,
+ "loss": 3.839498281478882,
+ "step": 1722
+ },
+ {
+ "epoch": 23.936653560506773,
+ "grad_norm": 0.19985878467559814,
+ "learning_rate": 0.0006,
+ "loss": 3.856555223464966,
+ "step": 1723
+ },
+ {
+ "epoch": 23.950633464394933,
+ "grad_norm": 0.1922348290681839,
+ "learning_rate": 0.0006,
+ "loss": 3.8956782817840576,
+ "step": 1724
+ },
+ {
+ "epoch": 23.964613368283093,
+ "grad_norm": 0.2191949337720871,
+ "learning_rate": 0.0006,
+ "loss": 3.8582406044006348,
+ "step": 1725
+ },
+ {
+ "epoch": 23.978593272171253,
+ "grad_norm": 0.2569248676300049,
+ "learning_rate": 0.0006,
+ "loss": 3.855678081512451,
+ "step": 1726
+ },
+ {
+ "epoch": 23.992573176059416,
+ "grad_norm": 0.2641172409057617,
+ "learning_rate": 0.0006,
+ "loss": 3.8426473140716553,
+ "step": 1727
+ },
+ {
+ "epoch": 24.0,
+ "grad_norm": 0.29637208580970764,
+ "learning_rate": 0.0006,
+ "loss": 3.843040704727173,
+ "step": 1728
+ },
+ {
+ "epoch": 24.0,
+ "eval_loss": 4.075617790222168,
+ "eval_runtime": 43.9795,
+ "eval_samples_per_second": 55.526,
+ "eval_steps_per_second": 3.479,
+ "step": 1728
+ },
+ {
+ "epoch": 24.01397990388816,
+ "grad_norm": 0.2804758548736572,
+ "learning_rate": 0.0006,
+ "loss": 3.819150924682617,
+ "step": 1729
+ },
+ {
+ "epoch": 24.027959807776323,
+ "grad_norm": 0.2796347141265869,
+ "learning_rate": 0.0006,
+ "loss": 3.8400537967681885,
+ "step": 1730
+ },
+ {
+ "epoch": 24.041939711664483,
+ "grad_norm": 0.28388649225234985,
+ "learning_rate": 0.0006,
+ "loss": 3.844595432281494,
+ "step": 1731
+ },
+ {
+ "epoch": 24.055919615552643,
+ "grad_norm": 0.2944681942462921,
+ "learning_rate": 0.0006,
+ "loss": 3.8048014640808105,
+ "step": 1732
+ },
+ {
+ "epoch": 24.069899519440803,
+ "grad_norm": 0.2956784665584564,
+ "learning_rate": 0.0006,
+ "loss": 3.8488049507141113,
+ "step": 1733
+ },
+ {
+ "epoch": 24.083879423328966,
+ "grad_norm": 0.2822059392929077,
+ "learning_rate": 0.0006,
+ "loss": 3.850322723388672,
+ "step": 1734
+ },
+ {
+ "epoch": 24.097859327217126,
+ "grad_norm": 0.3012927174568176,
+ "learning_rate": 0.0006,
+ "loss": 3.8748154640197754,
+ "step": 1735
+ },
+ {
+ "epoch": 24.111839231105286,
+ "grad_norm": 0.28868764638900757,
+ "learning_rate": 0.0006,
+ "loss": 3.8282783031463623,
+ "step": 1736
+ },
+ {
+ "epoch": 24.125819134993446,
+ "grad_norm": 0.277203768491745,
+ "learning_rate": 0.0006,
+ "loss": 3.8462908267974854,
+ "step": 1737
+ },
+ {
+ "epoch": 24.13979903888161,
+ "grad_norm": 0.2654508948326111,
+ "learning_rate": 0.0006,
+ "loss": 3.8043856620788574,
+ "step": 1738
+ },
+ {
+ "epoch": 24.15377894276977,
+ "grad_norm": 0.24425740540027618,
+ "learning_rate": 0.0006,
+ "loss": 3.8284308910369873,
+ "step": 1739
+ },
+ {
+ "epoch": 24.16775884665793,
+ "grad_norm": 0.24407348036766052,
+ "learning_rate": 0.0006,
+ "loss": 3.8489203453063965,
+ "step": 1740
+ },
+ {
+ "epoch": 24.18173875054609,
+ "grad_norm": 0.2387724369764328,
+ "learning_rate": 0.0006,
+ "loss": 3.8240389823913574,
+ "step": 1741
+ },
+ {
+ "epoch": 24.195718654434252,
+ "grad_norm": 0.2832290232181549,
+ "learning_rate": 0.0006,
+ "loss": 3.869053363800049,
+ "step": 1742
+ },
+ {
+ "epoch": 24.209698558322412,
+ "grad_norm": 0.26501718163490295,
+ "learning_rate": 0.0006,
+ "loss": 3.8624343872070312,
+ "step": 1743
+ },
+ {
+ "epoch": 24.22367846221057,
+ "grad_norm": 0.24234668910503387,
+ "learning_rate": 0.0006,
+ "loss": 3.823103904724121,
+ "step": 1744
+ },
+ {
+ "epoch": 24.23765836609873,
+ "grad_norm": 0.24160076677799225,
+ "learning_rate": 0.0006,
+ "loss": 3.8174376487731934,
+ "step": 1745
+ },
+ {
+ "epoch": 24.251638269986895,
+ "grad_norm": 0.2447604238986969,
+ "learning_rate": 0.0006,
+ "loss": 3.8345441818237305,
+ "step": 1746
+ },
+ {
+ "epoch": 24.265618173875055,
+ "grad_norm": 0.22864456474781036,
+ "learning_rate": 0.0006,
+ "loss": 3.833101272583008,
+ "step": 1747
+ },
+ {
+ "epoch": 24.279598077763215,
+ "grad_norm": 0.20429204404354095,
+ "learning_rate": 0.0006,
+ "loss": 3.8055219650268555,
+ "step": 1748
+ },
+ {
+ "epoch": 24.293577981651374,
+ "grad_norm": 0.21538510918617249,
+ "learning_rate": 0.0006,
+ "loss": 3.7929327487945557,
+ "step": 1749
+ },
+ {
+ "epoch": 24.307557885539538,
+ "grad_norm": 0.2189008593559265,
+ "learning_rate": 0.0006,
+ "loss": 3.852264881134033,
+ "step": 1750
+ },
+ {
+ "epoch": 24.321537789427698,
+ "grad_norm": 0.2228662073612213,
+ "learning_rate": 0.0006,
+ "loss": 3.831088066101074,
+ "step": 1751
+ },
+ {
+ "epoch": 24.335517693315857,
+ "grad_norm": 0.2039937973022461,
+ "learning_rate": 0.0006,
+ "loss": 3.8358256816864014,
+ "step": 1752
+ },
+ {
+ "epoch": 24.34949759720402,
+ "grad_norm": 0.19247715175151825,
+ "learning_rate": 0.0006,
+ "loss": 3.8077402114868164,
+ "step": 1753
+ },
+ {
+ "epoch": 24.36347750109218,
+ "grad_norm": 0.18301935493946075,
+ "learning_rate": 0.0006,
+ "loss": 3.81380033493042,
+ "step": 1754
+ },
+ {
+ "epoch": 24.37745740498034,
+ "grad_norm": 0.19325268268585205,
+ "learning_rate": 0.0006,
+ "loss": 3.8447322845458984,
+ "step": 1755
+ },
+ {
+ "epoch": 24.3914373088685,
+ "grad_norm": 0.2007269263267517,
+ "learning_rate": 0.0006,
+ "loss": 3.82779860496521,
+ "step": 1756
+ },
+ {
+ "epoch": 24.405417212756664,
+ "grad_norm": 0.20567037165164948,
+ "learning_rate": 0.0006,
+ "loss": 3.800354480743408,
+ "step": 1757
+ },
+ {
+ "epoch": 24.419397116644824,
+ "grad_norm": 0.22553028166294098,
+ "learning_rate": 0.0006,
+ "loss": 3.7910406589508057,
+ "step": 1758
+ },
+ {
+ "epoch": 24.433377020532983,
+ "grad_norm": 0.22697079181671143,
+ "learning_rate": 0.0006,
+ "loss": 3.857635974884033,
+ "step": 1759
+ },
+ {
+ "epoch": 24.447356924421143,
+ "grad_norm": 0.22090297937393188,
+ "learning_rate": 0.0006,
+ "loss": 3.8112804889678955,
+ "step": 1760
+ },
+ {
+ "epoch": 24.461336828309307,
+ "grad_norm": 0.24325518310070038,
+ "learning_rate": 0.0006,
+ "loss": 3.822084426879883,
+ "step": 1761
+ },
+ {
+ "epoch": 24.475316732197467,
+ "grad_norm": 0.2702929377555847,
+ "learning_rate": 0.0006,
+ "loss": 3.8307600021362305,
+ "step": 1762
+ },
+ {
+ "epoch": 24.489296636085626,
+ "grad_norm": 0.2699742317199707,
+ "learning_rate": 0.0006,
+ "loss": 3.8479247093200684,
+ "step": 1763
+ },
+ {
+ "epoch": 24.503276539973786,
+ "grad_norm": 0.2526061236858368,
+ "learning_rate": 0.0006,
+ "loss": 3.8615071773529053,
+ "step": 1764
+ },
+ {
+ "epoch": 24.51725644386195,
+ "grad_norm": 0.2633848190307617,
+ "learning_rate": 0.0006,
+ "loss": 3.8412697315216064,
+ "step": 1765
+ },
+ {
+ "epoch": 24.53123634775011,
+ "grad_norm": 0.2711184024810791,
+ "learning_rate": 0.0006,
+ "loss": 3.83647084236145,
+ "step": 1766
+ },
+ {
+ "epoch": 24.54521625163827,
+ "grad_norm": 0.2691243588924408,
+ "learning_rate": 0.0006,
+ "loss": 3.8489012718200684,
+ "step": 1767
+ },
+ {
+ "epoch": 24.55919615552643,
+ "grad_norm": 0.2580898404121399,
+ "learning_rate": 0.0006,
+ "loss": 3.8464407920837402,
+ "step": 1768
+ },
+ {
+ "epoch": 24.573176059414592,
+ "grad_norm": 0.21342119574546814,
+ "learning_rate": 0.0006,
+ "loss": 3.8279383182525635,
+ "step": 1769
+ },
+ {
+ "epoch": 24.587155963302752,
+ "grad_norm": 0.22102399170398712,
+ "learning_rate": 0.0006,
+ "loss": 3.841676712036133,
+ "step": 1770
+ },
+ {
+ "epoch": 24.601135867190912,
+ "grad_norm": 0.2882173955440521,
+ "learning_rate": 0.0006,
+ "loss": 3.825528383255005,
+ "step": 1771
+ },
+ {
+ "epoch": 24.615115771079076,
+ "grad_norm": 0.3403635323047638,
+ "learning_rate": 0.0006,
+ "loss": 3.8282246589660645,
+ "step": 1772
+ },
+ {
+ "epoch": 24.629095674967235,
+ "grad_norm": 0.32192692160606384,
+ "learning_rate": 0.0006,
+ "loss": 3.8411307334899902,
+ "step": 1773
+ },
+ {
+ "epoch": 24.643075578855395,
+ "grad_norm": 0.2534109055995941,
+ "learning_rate": 0.0006,
+ "loss": 3.843007802963257,
+ "step": 1774
+ },
+ {
+ "epoch": 24.657055482743555,
+ "grad_norm": 0.25483962893486023,
+ "learning_rate": 0.0006,
+ "loss": 3.848358154296875,
+ "step": 1775
+ },
+ {
+ "epoch": 24.67103538663172,
+ "grad_norm": 0.25175443291664124,
+ "learning_rate": 0.0006,
+ "loss": 3.8232598304748535,
+ "step": 1776
+ },
+ {
+ "epoch": 24.68501529051988,
+ "grad_norm": 0.20538510382175446,
+ "learning_rate": 0.0006,
+ "loss": 3.857635498046875,
+ "step": 1777
+ },
+ {
+ "epoch": 24.698995194408038,
+ "grad_norm": 0.240861177444458,
+ "learning_rate": 0.0006,
+ "loss": 3.83717679977417,
+ "step": 1778
+ },
+ {
+ "epoch": 24.712975098296198,
+ "grad_norm": 0.23646967113018036,
+ "learning_rate": 0.0006,
+ "loss": 3.81032133102417,
+ "step": 1779
+ },
+ {
+ "epoch": 24.72695500218436,
+ "grad_norm": 0.2164423167705536,
+ "learning_rate": 0.0006,
+ "loss": 3.807878255844116,
+ "step": 1780
+ },
+ {
+ "epoch": 24.74093490607252,
+ "grad_norm": 0.21160705387592316,
+ "learning_rate": 0.0006,
+ "loss": 3.870394468307495,
+ "step": 1781
+ },
+ {
+ "epoch": 24.75491480996068,
+ "grad_norm": 0.20284807682037354,
+ "learning_rate": 0.0006,
+ "loss": 3.842154026031494,
+ "step": 1782
+ },
+ {
+ "epoch": 24.76889471384884,
+ "grad_norm": 0.20738485455513,
+ "learning_rate": 0.0006,
+ "loss": 3.8347136974334717,
+ "step": 1783
+ },
+ {
+ "epoch": 24.782874617737004,
+ "grad_norm": 0.20253778994083405,
+ "learning_rate": 0.0006,
+ "loss": 3.814948320388794,
+ "step": 1784
+ },
+ {
+ "epoch": 24.796854521625164,
+ "grad_norm": 0.20567010343074799,
+ "learning_rate": 0.0006,
+ "loss": 3.8354592323303223,
+ "step": 1785
+ },
+ {
+ "epoch": 24.810834425513324,
+ "grad_norm": 0.20639720559120178,
+ "learning_rate": 0.0006,
+ "loss": 3.8336033821105957,
+ "step": 1786
+ },
+ {
+ "epoch": 24.824814329401484,
+ "grad_norm": 0.19978247582912445,
+ "learning_rate": 0.0006,
+ "loss": 3.8209140300750732,
+ "step": 1787
+ },
+ {
+ "epoch": 24.838794233289647,
+ "grad_norm": 0.20628373324871063,
+ "learning_rate": 0.0006,
+ "loss": 3.8372955322265625,
+ "step": 1788
+ },
+ {
+ "epoch": 24.852774137177807,
+ "grad_norm": 0.2266162782907486,
+ "learning_rate": 0.0006,
+ "loss": 3.850994110107422,
+ "step": 1789
+ },
+ {
+ "epoch": 24.866754041065967,
+ "grad_norm": 0.22567765414714813,
+ "learning_rate": 0.0006,
+ "loss": 3.8552165031433105,
+ "step": 1790
+ },
+ {
+ "epoch": 24.88073394495413,
+ "grad_norm": 0.228011354804039,
+ "learning_rate": 0.0006,
+ "loss": 3.8310747146606445,
+ "step": 1791
+ },
+ {
+ "epoch": 24.89471384884229,
+ "grad_norm": 0.23706914484500885,
+ "learning_rate": 0.0006,
+ "loss": 3.8369603157043457,
+ "step": 1792
+ },
+ {
+ "epoch": 24.90869375273045,
+ "grad_norm": 0.22669097781181335,
+ "learning_rate": 0.0006,
+ "loss": 3.8443825244903564,
+ "step": 1793
+ },
+ {
+ "epoch": 24.92267365661861,
+ "grad_norm": 0.2051001936197281,
+ "learning_rate": 0.0006,
+ "loss": 3.7938501834869385,
+ "step": 1794
+ },
+ {
+ "epoch": 24.936653560506773,
+ "grad_norm": 0.2091219276189804,
+ "learning_rate": 0.0006,
+ "loss": 3.8167076110839844,
+ "step": 1795
+ },
+ {
+ "epoch": 24.950633464394933,
+ "grad_norm": 0.20517204701900482,
+ "learning_rate": 0.0006,
+ "loss": 3.852670669555664,
+ "step": 1796
+ },
+ {
+ "epoch": 24.964613368283093,
+ "grad_norm": 0.19916993379592896,
+ "learning_rate": 0.0006,
+ "loss": 3.8410873413085938,
+ "step": 1797
+ },
+ {
+ "epoch": 24.978593272171253,
+ "grad_norm": 0.21313942968845367,
+ "learning_rate": 0.0006,
+ "loss": 3.8383948802948,
+ "step": 1798
+ },
+ {
+ "epoch": 24.992573176059416,
+ "grad_norm": 0.21042990684509277,
+ "learning_rate": 0.0006,
+ "loss": 3.8623173236846924,
+ "step": 1799
+ },
+ {
+ "epoch": 25.0,
+ "grad_norm": 0.23052045702934265,
+ "learning_rate": 0.0006,
+ "loss": 3.8646674156188965,
+ "step": 1800
+ },
+ {
+ "epoch": 25.0,
+ "eval_loss": 4.081690311431885,
+ "eval_runtime": 44.036,
+ "eval_samples_per_second": 55.455,
+ "eval_steps_per_second": 3.474,
+ "step": 1800
+ },
+ {
+ "epoch": 25.01397990388816,
+ "grad_norm": 0.22068746387958527,
+ "learning_rate": 0.0006,
+ "loss": 3.8002820014953613,
+ "step": 1801
+ },
+ {
+ "epoch": 25.027959807776323,
+ "grad_norm": 0.20711193978786469,
+ "learning_rate": 0.0006,
+ "loss": 3.787785768508911,
+ "step": 1802
+ },
+ {
+ "epoch": 25.041939711664483,
+ "grad_norm": 0.20659677684307098,
+ "learning_rate": 0.0006,
+ "loss": 3.80245304107666,
+ "step": 1803
+ },
+ {
+ "epoch": 25.055919615552643,
+ "grad_norm": 0.22891797125339508,
+ "learning_rate": 0.0006,
+ "loss": 3.784543514251709,
+ "step": 1804
+ },
+ {
+ "epoch": 25.069899519440803,
+ "grad_norm": 0.23679181933403015,
+ "learning_rate": 0.0006,
+ "loss": 3.8311429023742676,
+ "step": 1805
+ },
+ {
+ "epoch": 25.083879423328966,
+ "grad_norm": 0.2548872232437134,
+ "learning_rate": 0.0006,
+ "loss": 3.8047211170196533,
+ "step": 1806
+ },
+ {
+ "epoch": 25.097859327217126,
+ "grad_norm": 0.26181501150131226,
+ "learning_rate": 0.0006,
+ "loss": 3.837508201599121,
+ "step": 1807
+ },
+ {
+ "epoch": 25.111839231105286,
+ "grad_norm": 0.2548452913761139,
+ "learning_rate": 0.0006,
+ "loss": 3.831544876098633,
+ "step": 1808
+ },
+ {
+ "epoch": 25.125819134993446,
+ "grad_norm": 0.26177605986595154,
+ "learning_rate": 0.0006,
+ "loss": 3.805346965789795,
+ "step": 1809
+ },
+ {
+ "epoch": 25.13979903888161,
+ "grad_norm": 0.2608112394809723,
+ "learning_rate": 0.0006,
+ "loss": 3.8040924072265625,
+ "step": 1810
+ },
+ {
+ "epoch": 25.15377894276977,
+ "grad_norm": 0.2586037814617157,
+ "learning_rate": 0.0006,
+ "loss": 3.8102216720581055,
+ "step": 1811
+ },
+ {
+ "epoch": 25.16775884665793,
+ "grad_norm": 0.26258161664009094,
+ "learning_rate": 0.0006,
+ "loss": 3.8152549266815186,
+ "step": 1812
+ },
+ {
+ "epoch": 25.18173875054609,
+ "grad_norm": 0.2803022265434265,
+ "learning_rate": 0.0006,
+ "loss": 3.82576584815979,
+ "step": 1813
+ },
+ {
+ "epoch": 25.195718654434252,
+ "grad_norm": 0.2618221938610077,
+ "learning_rate": 0.0006,
+ "loss": 3.817220687866211,
+ "step": 1814
+ },
+ {
+ "epoch": 25.209698558322412,
+ "grad_norm": 0.23283469676971436,
+ "learning_rate": 0.0006,
+ "loss": 3.7999041080474854,
+ "step": 1815
+ },
+ {
+ "epoch": 25.22367846221057,
+ "grad_norm": 0.20110781490802765,
+ "learning_rate": 0.0006,
+ "loss": 3.783228874206543,
+ "step": 1816
+ },
+ {
+ "epoch": 25.23765836609873,
+ "grad_norm": 0.2231830358505249,
+ "learning_rate": 0.0006,
+ "loss": 3.8032913208007812,
+ "step": 1817
+ },
+ {
+ "epoch": 25.251638269986895,
+ "grad_norm": 0.21807286143302917,
+ "learning_rate": 0.0006,
+ "loss": 3.817028045654297,
+ "step": 1818
+ },
+ {
+ "epoch": 25.265618173875055,
+ "grad_norm": 0.22710664570331573,
+ "learning_rate": 0.0006,
+ "loss": 3.8201727867126465,
+ "step": 1819
+ },
+ {
+ "epoch": 25.279598077763215,
+ "grad_norm": 0.22299866378307343,
+ "learning_rate": 0.0006,
+ "loss": 3.8198719024658203,
+ "step": 1820
+ },
+ {
+ "epoch": 25.293577981651374,
+ "grad_norm": 0.20886564254760742,
+ "learning_rate": 0.0006,
+ "loss": 3.792414665222168,
+ "step": 1821
+ },
+ {
+ "epoch": 25.307557885539538,
+ "grad_norm": 0.20887352526187897,
+ "learning_rate": 0.0006,
+ "loss": 3.7634057998657227,
+ "step": 1822
+ },
+ {
+ "epoch": 25.321537789427698,
+ "grad_norm": 0.24560041725635529,
+ "learning_rate": 0.0006,
+ "loss": 3.79359769821167,
+ "step": 1823
+ },
+ {
+ "epoch": 25.335517693315857,
+ "grad_norm": 0.22767415642738342,
+ "learning_rate": 0.0006,
+ "loss": 3.8313469886779785,
+ "step": 1824
+ },
+ {
+ "epoch": 25.34949759720402,
+ "grad_norm": 0.21617893874645233,
+ "learning_rate": 0.0006,
+ "loss": 3.77200984954834,
+ "step": 1825
+ },
+ {
+ "epoch": 25.36347750109218,
+ "grad_norm": 0.21010833978652954,
+ "learning_rate": 0.0006,
+ "loss": 3.8042140007019043,
+ "step": 1826
+ },
+ {
+ "epoch": 25.37745740498034,
+ "grad_norm": 0.24087965488433838,
+ "learning_rate": 0.0006,
+ "loss": 3.8260979652404785,
+ "step": 1827
+ },
+ {
+ "epoch": 25.3914373088685,
+ "grad_norm": 0.2735275626182556,
+ "learning_rate": 0.0006,
+ "loss": 3.8499274253845215,
+ "step": 1828
+ },
+ {
+ "epoch": 25.405417212756664,
+ "grad_norm": 0.24831001460552216,
+ "learning_rate": 0.0006,
+ "loss": 3.8146448135375977,
+ "step": 1829
+ },
+ {
+ "epoch": 25.419397116644824,
+ "grad_norm": 0.21822866797447205,
+ "learning_rate": 0.0006,
+ "loss": 3.7845146656036377,
+ "step": 1830
+ },
+ {
+ "epoch": 25.433377020532983,
+ "grad_norm": 0.19948813319206238,
+ "learning_rate": 0.0006,
+ "loss": 3.823997974395752,
+ "step": 1831
+ },
+ {
+ "epoch": 25.447356924421143,
+ "grad_norm": 0.18342702090740204,
+ "learning_rate": 0.0006,
+ "loss": 3.8201193809509277,
+ "step": 1832
+ },
+ {
+ "epoch": 25.461336828309307,
+ "grad_norm": 0.19377560913562775,
+ "learning_rate": 0.0006,
+ "loss": 3.8069632053375244,
+ "step": 1833
+ },
+ {
+ "epoch": 25.475316732197467,
+ "grad_norm": 0.22348709404468536,
+ "learning_rate": 0.0006,
+ "loss": 3.7918643951416016,
+ "step": 1834
+ },
+ {
+ "epoch": 25.489296636085626,
+ "grad_norm": 0.24484702944755554,
+ "learning_rate": 0.0006,
+ "loss": 3.85046124458313,
+ "step": 1835
+ },
+ {
+ "epoch": 25.503276539973786,
+ "grad_norm": 0.2493520826101303,
+ "learning_rate": 0.0006,
+ "loss": 3.8043932914733887,
+ "step": 1836
+ },
+ {
+ "epoch": 25.51725644386195,
+ "grad_norm": 0.21509641408920288,
+ "learning_rate": 0.0006,
+ "loss": 3.8064627647399902,
+ "step": 1837
+ },
+ {
+ "epoch": 25.53123634775011,
+ "grad_norm": 0.21912820637226105,
+ "learning_rate": 0.0006,
+ "loss": 3.850588321685791,
+ "step": 1838
+ },
+ {
+ "epoch": 25.54521625163827,
+ "grad_norm": 0.28400927782058716,
+ "learning_rate": 0.0006,
+ "loss": 3.79818058013916,
+ "step": 1839
+ },
+ {
+ "epoch": 25.55919615552643,
+ "grad_norm": 0.32193225622177124,
+ "learning_rate": 0.0006,
+ "loss": 3.836275815963745,
+ "step": 1840
+ },
+ {
+ "epoch": 25.573176059414592,
+ "grad_norm": 0.2902325987815857,
+ "learning_rate": 0.0006,
+ "loss": 3.8080005645751953,
+ "step": 1841
+ },
+ {
+ "epoch": 25.587155963302752,
+ "grad_norm": 0.21759532392024994,
+ "learning_rate": 0.0006,
+ "loss": 3.8233771324157715,
+ "step": 1842
+ },
+ {
+ "epoch": 25.601135867190912,
+ "grad_norm": 0.19645214080810547,
+ "learning_rate": 0.0006,
+ "loss": 3.838881015777588,
+ "step": 1843
+ },
+ {
+ "epoch": 25.615115771079076,
+ "grad_norm": 0.19322903454303741,
+ "learning_rate": 0.0006,
+ "loss": 3.7870054244995117,
+ "step": 1844
+ },
+ {
+ "epoch": 25.629095674967235,
+ "grad_norm": 0.2074001580476761,
+ "learning_rate": 0.0006,
+ "loss": 3.8239974975585938,
+ "step": 1845
+ },
+ {
+ "epoch": 25.643075578855395,
+ "grad_norm": 0.2166101336479187,
+ "learning_rate": 0.0006,
+ "loss": 3.8290855884552,
+ "step": 1846
+ },
+ {
+ "epoch": 25.657055482743555,
+ "grad_norm": 0.23738539218902588,
+ "learning_rate": 0.0006,
+ "loss": 3.7993364334106445,
+ "step": 1847
+ },
+ {
+ "epoch": 25.67103538663172,
+ "grad_norm": 0.23882314562797546,
+ "learning_rate": 0.0006,
+ "loss": 3.802586078643799,
+ "step": 1848
+ },
+ {
+ "epoch": 25.68501529051988,
+ "grad_norm": 0.24168142676353455,
+ "learning_rate": 0.0006,
+ "loss": 3.8303489685058594,
+ "step": 1849
+ },
+ {
+ "epoch": 25.698995194408038,
+ "grad_norm": 0.22423343360424042,
+ "learning_rate": 0.0006,
+ "loss": 3.836228370666504,
+ "step": 1850
+ },
+ {
+ "epoch": 25.712975098296198,
+ "grad_norm": 0.23816974461078644,
+ "learning_rate": 0.0006,
+ "loss": 3.8380274772644043,
+ "step": 1851
+ },
+ {
+ "epoch": 25.72695500218436,
+ "grad_norm": 0.22465108335018158,
+ "learning_rate": 0.0006,
+ "loss": 3.8496339321136475,
+ "step": 1852
+ },
+ {
+ "epoch": 25.74093490607252,
+ "grad_norm": 0.20792442560195923,
+ "learning_rate": 0.0006,
+ "loss": 3.797853946685791,
+ "step": 1853
+ },
+ {
+ "epoch": 25.75491480996068,
+ "grad_norm": 0.20770230889320374,
+ "learning_rate": 0.0006,
+ "loss": 3.842322826385498,
+ "step": 1854
+ },
+ {
+ "epoch": 25.76889471384884,
+ "grad_norm": 0.1928192526102066,
+ "learning_rate": 0.0006,
+ "loss": 3.836540699005127,
+ "step": 1855
+ },
+ {
+ "epoch": 25.782874617737004,
+ "grad_norm": 0.19045178592205048,
+ "learning_rate": 0.0006,
+ "loss": 3.7758889198303223,
+ "step": 1856
+ },
+ {
+ "epoch": 25.796854521625164,
+ "grad_norm": 0.205548495054245,
+ "learning_rate": 0.0006,
+ "loss": 3.8244709968566895,
+ "step": 1857
+ },
+ {
+ "epoch": 25.810834425513324,
+ "grad_norm": 0.20968270301818848,
+ "learning_rate": 0.0006,
+ "loss": 3.8376216888427734,
+ "step": 1858
+ },
+ {
+ "epoch": 25.824814329401484,
+ "grad_norm": 0.18917354941368103,
+ "learning_rate": 0.0006,
+ "loss": 3.8497915267944336,
+ "step": 1859
+ },
+ {
+ "epoch": 25.838794233289647,
+ "grad_norm": 0.2050701528787613,
+ "learning_rate": 0.0006,
+ "loss": 3.819628953933716,
+ "step": 1860
+ },
+ {
+ "epoch": 25.852774137177807,
+ "grad_norm": 0.1981319785118103,
+ "learning_rate": 0.0006,
+ "loss": 3.8007922172546387,
+ "step": 1861
+ },
+ {
+ "epoch": 25.866754041065967,
+ "grad_norm": 0.19055861234664917,
+ "learning_rate": 0.0006,
+ "loss": 3.8304519653320312,
+ "step": 1862
+ },
+ {
+ "epoch": 25.88073394495413,
+ "grad_norm": 0.19255517423152924,
+ "learning_rate": 0.0006,
+ "loss": 3.833280563354492,
+ "step": 1863
+ },
+ {
+ "epoch": 25.89471384884229,
+ "grad_norm": 0.19059430062770844,
+ "learning_rate": 0.0006,
+ "loss": 3.813796281814575,
+ "step": 1864
+ },
+ {
+ "epoch": 25.90869375273045,
+ "grad_norm": 0.18581309914588928,
+ "learning_rate": 0.0006,
+ "loss": 3.8211798667907715,
+ "step": 1865
+ },
+ {
+ "epoch": 25.92267365661861,
+ "grad_norm": 0.20181003212928772,
+ "learning_rate": 0.0006,
+ "loss": 3.8380484580993652,
+ "step": 1866
+ },
+ {
+ "epoch": 25.936653560506773,
+ "grad_norm": 0.22334498167037964,
+ "learning_rate": 0.0006,
+ "loss": 3.8294434547424316,
+ "step": 1867
+ },
+ {
+ "epoch": 25.950633464394933,
+ "grad_norm": 0.20456703007221222,
+ "learning_rate": 0.0006,
+ "loss": 3.819223642349243,
+ "step": 1868
+ },
+ {
+ "epoch": 25.964613368283093,
+ "grad_norm": 0.1885606348514557,
+ "learning_rate": 0.0006,
+ "loss": 3.8110103607177734,
+ "step": 1869
+ },
+ {
+ "epoch": 25.978593272171253,
+ "grad_norm": 0.18862110376358032,
+ "learning_rate": 0.0006,
+ "loss": 3.788691997528076,
+ "step": 1870
+ },
+ {
+ "epoch": 25.992573176059416,
+ "grad_norm": 0.19802744686603546,
+ "learning_rate": 0.0006,
+ "loss": 3.8423619270324707,
+ "step": 1871
+ },
+ {
+ "epoch": 26.0,
+ "grad_norm": 0.23762032389640808,
+ "learning_rate": 0.0006,
+ "loss": 3.7848567962646484,
+ "step": 1872
+ },
+ {
+ "epoch": 26.0,
+ "eval_loss": 4.054965019226074,
+ "eval_runtime": 44.2423,
+ "eval_samples_per_second": 55.196,
+ "eval_steps_per_second": 3.458,
+ "step": 1872
+ },
+ {
+ "epoch": 26.01397990388816,
+ "grad_norm": 0.21533054113388062,
+ "learning_rate": 0.0006,
+ "loss": 3.8123154640197754,
+ "step": 1873
+ },
+ {
+ "epoch": 26.027959807776323,
+ "grad_norm": 0.25094854831695557,
+ "learning_rate": 0.0006,
+ "loss": 3.7847447395324707,
+ "step": 1874
+ },
+ {
+ "epoch": 26.041939711664483,
+ "grad_norm": 0.24042077362537384,
+ "learning_rate": 0.0006,
+ "loss": 3.8033599853515625,
+ "step": 1875
+ },
+ {
+ "epoch": 26.055919615552643,
+ "grad_norm": 0.2425149381160736,
+ "learning_rate": 0.0006,
+ "loss": 3.7828550338745117,
+ "step": 1876
+ },
+ {
+ "epoch": 26.069899519440803,
+ "grad_norm": 0.2300514280796051,
+ "learning_rate": 0.0006,
+ "loss": 3.750882148742676,
+ "step": 1877
+ },
+ {
+ "epoch": 26.083879423328966,
+ "grad_norm": 0.2513943612575531,
+ "learning_rate": 0.0006,
+ "loss": 3.800323963165283,
+ "step": 1878
+ },
+ {
+ "epoch": 26.097859327217126,
+ "grad_norm": 0.2536966800689697,
+ "learning_rate": 0.0006,
+ "loss": 3.8198962211608887,
+ "step": 1879
+ },
+ {
+ "epoch": 26.111839231105286,
+ "grad_norm": 0.24483931064605713,
+ "learning_rate": 0.0006,
+ "loss": 3.825563907623291,
+ "step": 1880
+ },
+ {
+ "epoch": 26.125819134993446,
+ "grad_norm": 0.2502584755420685,
+ "learning_rate": 0.0006,
+ "loss": 3.78756046295166,
+ "step": 1881
+ },
+ {
+ "epoch": 26.13979903888161,
+ "grad_norm": 0.2695745527744293,
+ "learning_rate": 0.0006,
+ "loss": 3.8205409049987793,
+ "step": 1882
+ },
+ {
+ "epoch": 26.15377894276977,
+ "grad_norm": 0.2873472273349762,
+ "learning_rate": 0.0006,
+ "loss": 3.7880778312683105,
+ "step": 1883
+ },
+ {
+ "epoch": 26.16775884665793,
+ "grad_norm": 0.28609949350357056,
+ "learning_rate": 0.0006,
+ "loss": 3.788517951965332,
+ "step": 1884
+ },
+ {
+ "epoch": 26.18173875054609,
+ "grad_norm": 0.28352269530296326,
+ "learning_rate": 0.0006,
+ "loss": 3.778015613555908,
+ "step": 1885
+ },
+ {
+ "epoch": 26.195718654434252,
+ "grad_norm": 0.27055084705352783,
+ "learning_rate": 0.0006,
+ "loss": 3.7857203483581543,
+ "step": 1886
+ },
+ {
+ "epoch": 26.209698558322412,
+ "grad_norm": 0.255647748708725,
+ "learning_rate": 0.0006,
+ "loss": 3.791355609893799,
+ "step": 1887
+ },
+ {
+ "epoch": 26.22367846221057,
+ "grad_norm": 0.22624439001083374,
+ "learning_rate": 0.0006,
+ "loss": 3.7624831199645996,
+ "step": 1888
+ },
+ {
+ "epoch": 26.23765836609873,
+ "grad_norm": 0.2283596396446228,
+ "learning_rate": 0.0006,
+ "loss": 3.8052897453308105,
+ "step": 1889
+ },
+ {
+ "epoch": 26.251638269986895,
+ "grad_norm": 0.2336510866880417,
+ "learning_rate": 0.0006,
+ "loss": 3.789015054702759,
+ "step": 1890
+ },
+ {
+ "epoch": 26.265618173875055,
+ "grad_norm": 0.24107608199119568,
+ "learning_rate": 0.0006,
+ "loss": 3.756551742553711,
+ "step": 1891
+ },
+ {
+ "epoch": 26.279598077763215,
+ "grad_norm": 0.22438564896583557,
+ "learning_rate": 0.0006,
+ "loss": 3.797952651977539,
+ "step": 1892
+ },
+ {
+ "epoch": 26.293577981651374,
+ "grad_norm": 0.24594341218471527,
+ "learning_rate": 0.0006,
+ "loss": 3.7925708293914795,
+ "step": 1893
+ },
+ {
+ "epoch": 26.307557885539538,
+ "grad_norm": 0.23314352333545685,
+ "learning_rate": 0.0006,
+ "loss": 3.792447328567505,
+ "step": 1894
+ },
+ {
+ "epoch": 26.321537789427698,
+ "grad_norm": 0.20870383083820343,
+ "learning_rate": 0.0006,
+ "loss": 3.7888340950012207,
+ "step": 1895
+ },
+ {
+ "epoch": 26.335517693315857,
+ "grad_norm": 0.206504687666893,
+ "learning_rate": 0.0006,
+ "loss": 3.7856602668762207,
+ "step": 1896
+ },
+ {
+ "epoch": 26.34949759720402,
+ "grad_norm": 0.20193266868591309,
+ "learning_rate": 0.0006,
+ "loss": 3.810800552368164,
+ "step": 1897
+ },
+ {
+ "epoch": 26.36347750109218,
+ "grad_norm": 0.2143869698047638,
+ "learning_rate": 0.0006,
+ "loss": 3.818742275238037,
+ "step": 1898
+ },
+ {
+ "epoch": 26.37745740498034,
+ "grad_norm": 0.21388593316078186,
+ "learning_rate": 0.0006,
+ "loss": 3.7576632499694824,
+ "step": 1899
+ },
+ {
+ "epoch": 26.3914373088685,
+ "grad_norm": 0.1933414787054062,
+ "learning_rate": 0.0006,
+ "loss": 3.802579879760742,
+ "step": 1900
+ },
+ {
+ "epoch": 26.405417212756664,
+ "grad_norm": 0.18144549429416656,
+ "learning_rate": 0.0006,
+ "loss": 3.7830452919006348,
+ "step": 1901
+ },
+ {
+ "epoch": 26.419397116644824,
+ "grad_norm": 0.20027601718902588,
+ "learning_rate": 0.0006,
+ "loss": 3.8112521171569824,
+ "step": 1902
+ },
+ {
+ "epoch": 26.433377020532983,
+ "grad_norm": 0.19402910768985748,
+ "learning_rate": 0.0006,
+ "loss": 3.778012990951538,
+ "step": 1903
+ },
+ {
+ "epoch": 26.447356924421143,
+ "grad_norm": 0.19020743668079376,
+ "learning_rate": 0.0006,
+ "loss": 3.823355197906494,
+ "step": 1904
+ },
+ {
+ "epoch": 26.461336828309307,
+ "grad_norm": 0.1885242760181427,
+ "learning_rate": 0.0006,
+ "loss": 3.782108783721924,
+ "step": 1905
+ },
+ {
+ "epoch": 26.475316732197467,
+ "grad_norm": 0.2024235874414444,
+ "learning_rate": 0.0006,
+ "loss": 3.810448408126831,
+ "step": 1906
+ },
+ {
+ "epoch": 26.489296636085626,
+ "grad_norm": 0.21408027410507202,
+ "learning_rate": 0.0006,
+ "loss": 3.8185606002807617,
+ "step": 1907
+ },
+ {
+ "epoch": 26.503276539973786,
+ "grad_norm": 0.22810906171798706,
+ "learning_rate": 0.0006,
+ "loss": 3.8052706718444824,
+ "step": 1908
+ },
+ {
+ "epoch": 26.51725644386195,
+ "grad_norm": 0.21328197419643402,
+ "learning_rate": 0.0006,
+ "loss": 3.7858219146728516,
+ "step": 1909
+ },
+ {
+ "epoch": 26.53123634775011,
+ "grad_norm": 0.20843173563480377,
+ "learning_rate": 0.0006,
+ "loss": 3.8069310188293457,
+ "step": 1910
+ },
+ {
+ "epoch": 26.54521625163827,
+ "grad_norm": 0.2072986662387848,
+ "learning_rate": 0.0006,
+ "loss": 3.794975996017456,
+ "step": 1911
+ },
+ {
+ "epoch": 26.55919615552643,
+ "grad_norm": 0.2203216850757599,
+ "learning_rate": 0.0006,
+ "loss": 3.8070101737976074,
+ "step": 1912
+ },
+ {
+ "epoch": 26.573176059414592,
+ "grad_norm": 0.23449191451072693,
+ "learning_rate": 0.0006,
+ "loss": 3.828695774078369,
+ "step": 1913
+ },
+ {
+ "epoch": 26.587155963302752,
+ "grad_norm": 0.2222008854150772,
+ "learning_rate": 0.0006,
+ "loss": 3.781275749206543,
+ "step": 1914
+ },
+ {
+ "epoch": 26.601135867190912,
+ "grad_norm": 0.22328314185142517,
+ "learning_rate": 0.0006,
+ "loss": 3.7953736782073975,
+ "step": 1915
+ },
+ {
+ "epoch": 26.615115771079076,
+ "grad_norm": 0.2377961128950119,
+ "learning_rate": 0.0006,
+ "loss": 3.8428916931152344,
+ "step": 1916
+ },
+ {
+ "epoch": 26.629095674967235,
+ "grad_norm": 0.2546147108078003,
+ "learning_rate": 0.0006,
+ "loss": 3.7940590381622314,
+ "step": 1917
+ },
+ {
+ "epoch": 26.643075578855395,
+ "grad_norm": 0.24234509468078613,
+ "learning_rate": 0.0006,
+ "loss": 3.802234172821045,
+ "step": 1918
+ },
+ {
+ "epoch": 26.657055482743555,
+ "grad_norm": 0.21294651925563812,
+ "learning_rate": 0.0006,
+ "loss": 3.8159232139587402,
+ "step": 1919
+ },
+ {
+ "epoch": 26.67103538663172,
+ "grad_norm": 0.20008964836597443,
+ "learning_rate": 0.0006,
+ "loss": 3.796949863433838,
+ "step": 1920
+ },
+ {
+ "epoch": 26.68501529051988,
+ "grad_norm": 0.21031023561954498,
+ "learning_rate": 0.0006,
+ "loss": 3.8015570640563965,
+ "step": 1921
+ },
+ {
+ "epoch": 26.698995194408038,
+ "grad_norm": 0.2185603827238083,
+ "learning_rate": 0.0006,
+ "loss": 3.8022537231445312,
+ "step": 1922
+ },
+ {
+ "epoch": 26.712975098296198,
+ "grad_norm": 0.22957198321819305,
+ "learning_rate": 0.0006,
+ "loss": 3.7859907150268555,
+ "step": 1923
+ },
+ {
+ "epoch": 26.72695500218436,
+ "grad_norm": 0.23779156804084778,
+ "learning_rate": 0.0006,
+ "loss": 3.830345630645752,
+ "step": 1924
+ },
+ {
+ "epoch": 26.74093490607252,
+ "grad_norm": 0.23577193915843964,
+ "learning_rate": 0.0006,
+ "loss": 3.777338981628418,
+ "step": 1925
+ },
+ {
+ "epoch": 26.75491480996068,
+ "grad_norm": 0.2521933913230896,
+ "learning_rate": 0.0006,
+ "loss": 3.8215396404266357,
+ "step": 1926
+ },
+ {
+ "epoch": 26.76889471384884,
+ "grad_norm": 0.25050726532936096,
+ "learning_rate": 0.0006,
+ "loss": 3.817509651184082,
+ "step": 1927
+ },
+ {
+ "epoch": 26.782874617737004,
+ "grad_norm": 0.24442453682422638,
+ "learning_rate": 0.0006,
+ "loss": 3.8033013343811035,
+ "step": 1928
+ },
+ {
+ "epoch": 26.796854521625164,
+ "grad_norm": 0.2280828058719635,
+ "learning_rate": 0.0006,
+ "loss": 3.798625946044922,
+ "step": 1929
+ },
+ {
+ "epoch": 26.810834425513324,
+ "grad_norm": 0.23072117567062378,
+ "learning_rate": 0.0006,
+ "loss": 3.8109097480773926,
+ "step": 1930
+ },
+ {
+ "epoch": 26.824814329401484,
+ "grad_norm": 0.2690806984901428,
+ "learning_rate": 0.0006,
+ "loss": 3.7707223892211914,
+ "step": 1931
+ },
+ {
+ "epoch": 26.838794233289647,
+ "grad_norm": 0.24973517656326294,
+ "learning_rate": 0.0006,
+ "loss": 3.7788357734680176,
+ "step": 1932
+ },
+ {
+ "epoch": 26.852774137177807,
+ "grad_norm": 0.24221451580524445,
+ "learning_rate": 0.0006,
+ "loss": 3.8083114624023438,
+ "step": 1933
+ },
+ {
+ "epoch": 26.866754041065967,
+ "grad_norm": 0.23499037325382233,
+ "learning_rate": 0.0006,
+ "loss": 3.845512866973877,
+ "step": 1934
+ },
+ {
+ "epoch": 26.88073394495413,
+ "grad_norm": 0.2172643095254898,
+ "learning_rate": 0.0006,
+ "loss": 3.8171584606170654,
+ "step": 1935
+ },
+ {
+ "epoch": 26.89471384884229,
+ "grad_norm": 0.19935013353824615,
+ "learning_rate": 0.0006,
+ "loss": 3.808596611022949,
+ "step": 1936
+ },
+ {
+ "epoch": 26.90869375273045,
+ "grad_norm": 0.2077745944261551,
+ "learning_rate": 0.0006,
+ "loss": 3.842836856842041,
+ "step": 1937
+ },
+ {
+ "epoch": 26.92267365661861,
+ "grad_norm": 0.20017282664775848,
+ "learning_rate": 0.0006,
+ "loss": 3.791734457015991,
+ "step": 1938
+ },
+ {
+ "epoch": 26.936653560506773,
+ "grad_norm": 0.2082037627696991,
+ "learning_rate": 0.0006,
+ "loss": 3.7987842559814453,
+ "step": 1939
+ },
+ {
+ "epoch": 26.950633464394933,
+ "grad_norm": 0.21100632846355438,
+ "learning_rate": 0.0006,
+ "loss": 3.8033156394958496,
+ "step": 1940
+ },
+ {
+ "epoch": 26.964613368283093,
+ "grad_norm": 0.2091331034898758,
+ "learning_rate": 0.0006,
+ "loss": 3.8250908851623535,
+ "step": 1941
+ },
+ {
+ "epoch": 26.978593272171253,
+ "grad_norm": 0.19728544354438782,
+ "learning_rate": 0.0006,
+ "loss": 3.7934365272521973,
+ "step": 1942
+ },
+ {
+ "epoch": 26.992573176059416,
+ "grad_norm": 0.19266465306282043,
+ "learning_rate": 0.0006,
+ "loss": 3.8095879554748535,
+ "step": 1943
+ },
+ {
+ "epoch": 27.0,
+ "grad_norm": 0.2264554500579834,
+ "learning_rate": 0.0006,
+ "loss": 3.840135335922241,
+ "step": 1944
+ },
+ {
+ "epoch": 27.0,
+ "eval_loss": 4.046233654022217,
+ "eval_runtime": 44.0648,
+ "eval_samples_per_second": 55.418,
+ "eval_steps_per_second": 3.472,
+ "step": 1944
+ },
+ {
+ "epoch": 27.01397990388816,
+ "grad_norm": 0.24101831018924713,
+ "learning_rate": 0.0006,
+ "loss": 3.7463197708129883,
+ "step": 1945
+ },
+ {
+ "epoch": 27.027959807776323,
+ "grad_norm": 0.2917300760746002,
+ "learning_rate": 0.0006,
+ "loss": 3.769083261489868,
+ "step": 1946
+ },
+ {
+ "epoch": 27.041939711664483,
+ "grad_norm": 0.30864080786705017,
+ "learning_rate": 0.0006,
+ "loss": 3.7774248123168945,
+ "step": 1947
+ },
+ {
+ "epoch": 27.055919615552643,
+ "grad_norm": 0.28574317693710327,
+ "learning_rate": 0.0006,
+ "loss": 3.759530544281006,
+ "step": 1948
+ },
+ {
+ "epoch": 27.069899519440803,
+ "grad_norm": 0.23381628096103668,
+ "learning_rate": 0.0006,
+ "loss": 3.764347791671753,
+ "step": 1949
+ },
+ {
+ "epoch": 27.083879423328966,
+ "grad_norm": 0.2717961072921753,
+ "learning_rate": 0.0006,
+ "loss": 3.785306692123413,
+ "step": 1950
+ },
+ {
+ "epoch": 27.097859327217126,
+ "grad_norm": 0.2753375470638275,
+ "learning_rate": 0.0006,
+ "loss": 3.7511696815490723,
+ "step": 1951
+ },
+ {
+ "epoch": 27.111839231105286,
+ "grad_norm": 0.260250061750412,
+ "learning_rate": 0.0006,
+ "loss": 3.7775721549987793,
+ "step": 1952
+ },
+ {
+ "epoch": 27.125819134993446,
+ "grad_norm": 0.2462741732597351,
+ "learning_rate": 0.0006,
+ "loss": 3.775203227996826,
+ "step": 1953
+ },
+ {
+ "epoch": 27.13979903888161,
+ "grad_norm": 0.23599569499492645,
+ "learning_rate": 0.0006,
+ "loss": 3.7580947875976562,
+ "step": 1954
+ },
+ {
+ "epoch": 27.15377894276977,
+ "grad_norm": 0.21749968826770782,
+ "learning_rate": 0.0006,
+ "loss": 3.778254985809326,
+ "step": 1955
+ },
+ {
+ "epoch": 27.16775884665793,
+ "grad_norm": 0.22210343182086945,
+ "learning_rate": 0.0006,
+ "loss": 3.734727144241333,
+ "step": 1956
+ },
+ {
+ "epoch": 27.18173875054609,
+ "grad_norm": 0.23376141488552094,
+ "learning_rate": 0.0006,
+ "loss": 3.7892181873321533,
+ "step": 1957
+ },
+ {
+ "epoch": 27.195718654434252,
+ "grad_norm": 0.21751847863197327,
+ "learning_rate": 0.0006,
+ "loss": 3.801621913909912,
+ "step": 1958
+ },
+ {
+ "epoch": 27.209698558322412,
+ "grad_norm": 0.22995133697986603,
+ "learning_rate": 0.0006,
+ "loss": 3.8031363487243652,
+ "step": 1959
+ },
+ {
+ "epoch": 27.22367846221057,
+ "grad_norm": 0.22716350853443146,
+ "learning_rate": 0.0006,
+ "loss": 3.7591521739959717,
+ "step": 1960
+ },
+ {
+ "epoch": 27.23765836609873,
+ "grad_norm": 0.20819596946239471,
+ "learning_rate": 0.0006,
+ "loss": 3.7988929748535156,
+ "step": 1961
+ },
+ {
+ "epoch": 27.251638269986895,
+ "grad_norm": 0.19861504435539246,
+ "learning_rate": 0.0006,
+ "loss": 3.7752838134765625,
+ "step": 1962
+ },
+ {
+ "epoch": 27.265618173875055,
+ "grad_norm": 0.1959371268749237,
+ "learning_rate": 0.0006,
+ "loss": 3.7707290649414062,
+ "step": 1963
+ },
+ {
+ "epoch": 27.279598077763215,
+ "grad_norm": 0.18772225081920624,
+ "learning_rate": 0.0006,
+ "loss": 3.7714555263519287,
+ "step": 1964
+ },
+ {
+ "epoch": 27.293577981651374,
+ "grad_norm": 0.20839282870292664,
+ "learning_rate": 0.0006,
+ "loss": 3.7857258319854736,
+ "step": 1965
+ },
+ {
+ "epoch": 27.307557885539538,
+ "grad_norm": 0.22521957755088806,
+ "learning_rate": 0.0006,
+ "loss": 3.776909351348877,
+ "step": 1966
+ },
+ {
+ "epoch": 27.321537789427698,
+ "grad_norm": 0.19533076882362366,
+ "learning_rate": 0.0006,
+ "loss": 3.8152523040771484,
+ "step": 1967
+ },
+ {
+ "epoch": 27.335517693315857,
+ "grad_norm": 0.18678881227970123,
+ "learning_rate": 0.0006,
+ "loss": 3.751555919647217,
+ "step": 1968
+ },
+ {
+ "epoch": 27.34949759720402,
+ "grad_norm": 0.18257129192352295,
+ "learning_rate": 0.0006,
+ "loss": 3.7701754570007324,
+ "step": 1969
+ },
+ {
+ "epoch": 27.36347750109218,
+ "grad_norm": 0.18191468715667725,
+ "learning_rate": 0.0006,
+ "loss": 3.817451238632202,
+ "step": 1970
+ },
+ {
+ "epoch": 27.37745740498034,
+ "grad_norm": 0.18665607273578644,
+ "learning_rate": 0.0006,
+ "loss": 3.78645658493042,
+ "step": 1971
+ },
+ {
+ "epoch": 27.3914373088685,
+ "grad_norm": 0.19604510068893433,
+ "learning_rate": 0.0006,
+ "loss": 3.7735626697540283,
+ "step": 1972
+ },
+ {
+ "epoch": 27.405417212756664,
+ "grad_norm": 0.20136640965938568,
+ "learning_rate": 0.0006,
+ "loss": 3.77310848236084,
+ "step": 1973
+ },
+ {
+ "epoch": 27.419397116644824,
+ "grad_norm": 0.19314947724342346,
+ "learning_rate": 0.0006,
+ "loss": 3.8084068298339844,
+ "step": 1974
+ },
+ {
+ "epoch": 27.433377020532983,
+ "grad_norm": 0.20761604607105255,
+ "learning_rate": 0.0006,
+ "loss": 3.80732798576355,
+ "step": 1975
+ },
+ {
+ "epoch": 27.447356924421143,
+ "grad_norm": 0.2239987850189209,
+ "learning_rate": 0.0006,
+ "loss": 3.7950329780578613,
+ "step": 1976
+ },
+ {
+ "epoch": 27.461336828309307,
+ "grad_norm": 0.22146444022655487,
+ "learning_rate": 0.0006,
+ "loss": 3.7957234382629395,
+ "step": 1977
+ },
+ {
+ "epoch": 27.475316732197467,
+ "grad_norm": 0.23218585550785065,
+ "learning_rate": 0.0006,
+ "loss": 3.806377410888672,
+ "step": 1978
+ },
+ {
+ "epoch": 27.489296636085626,
+ "grad_norm": 0.23549026250839233,
+ "learning_rate": 0.0006,
+ "loss": 3.7833383083343506,
+ "step": 1979
+ },
+ {
+ "epoch": 27.503276539973786,
+ "grad_norm": 0.24219457805156708,
+ "learning_rate": 0.0006,
+ "loss": 3.8154187202453613,
+ "step": 1980
+ },
+ {
+ "epoch": 27.51725644386195,
+ "grad_norm": 0.23703953623771667,
+ "learning_rate": 0.0006,
+ "loss": 3.7846405506134033,
+ "step": 1981
+ },
+ {
+ "epoch": 27.53123634775011,
+ "grad_norm": 0.23596109449863434,
+ "learning_rate": 0.0006,
+ "loss": 3.7698163986206055,
+ "step": 1982
+ },
+ {
+ "epoch": 27.54521625163827,
+ "grad_norm": 0.23073506355285645,
+ "learning_rate": 0.0006,
+ "loss": 3.8114185333251953,
+ "step": 1983
+ },
+ {
+ "epoch": 27.55919615552643,
+ "grad_norm": 0.24761143326759338,
+ "learning_rate": 0.0006,
+ "loss": 3.7548117637634277,
+ "step": 1984
+ },
+ {
+ "epoch": 27.573176059414592,
+ "grad_norm": 0.2834068238735199,
+ "learning_rate": 0.0006,
+ "loss": 3.7990212440490723,
+ "step": 1985
+ },
+ {
+ "epoch": 27.587155963302752,
+ "grad_norm": 0.29774922132492065,
+ "learning_rate": 0.0006,
+ "loss": 3.7845072746276855,
+ "step": 1986
+ },
+ {
+ "epoch": 27.601135867190912,
+ "grad_norm": 0.2732089161872864,
+ "learning_rate": 0.0006,
+ "loss": 3.8050694465637207,
+ "step": 1987
+ },
+ {
+ "epoch": 27.615115771079076,
+ "grad_norm": 0.24433180689811707,
+ "learning_rate": 0.0006,
+ "loss": 3.762704372406006,
+ "step": 1988
+ },
+ {
+ "epoch": 27.629095674967235,
+ "grad_norm": 0.21340419352054596,
+ "learning_rate": 0.0006,
+ "loss": 3.826023817062378,
+ "step": 1989
+ },
+ {
+ "epoch": 27.643075578855395,
+ "grad_norm": 0.22518761456012726,
+ "learning_rate": 0.0006,
+ "loss": 3.7823970317840576,
+ "step": 1990
+ },
+ {
+ "epoch": 27.657055482743555,
+ "grad_norm": 0.2196940928697586,
+ "learning_rate": 0.0006,
+ "loss": 3.787463426589966,
+ "step": 1991
+ },
+ {
+ "epoch": 27.67103538663172,
+ "grad_norm": 0.21906471252441406,
+ "learning_rate": 0.0006,
+ "loss": 3.7856104373931885,
+ "step": 1992
+ },
+ {
+ "epoch": 27.68501529051988,
+ "grad_norm": 0.2280956357717514,
+ "learning_rate": 0.0006,
+ "loss": 3.7829794883728027,
+ "step": 1993
+ },
+ {
+ "epoch": 27.698995194408038,
+ "grad_norm": 0.22567005455493927,
+ "learning_rate": 0.0006,
+ "loss": 3.762316942214966,
+ "step": 1994
+ },
+ {
+ "epoch": 27.712975098296198,
+ "grad_norm": 0.21703341603279114,
+ "learning_rate": 0.0006,
+ "loss": 3.772535800933838,
+ "step": 1995
+ },
+ {
+ "epoch": 27.72695500218436,
+ "grad_norm": 0.20586732029914856,
+ "learning_rate": 0.0006,
+ "loss": 3.775930881500244,
+ "step": 1996
+ },
+ {
+ "epoch": 27.74093490607252,
+ "grad_norm": 0.2126319408416748,
+ "learning_rate": 0.0006,
+ "loss": 3.793353796005249,
+ "step": 1997
+ },
+ {
+ "epoch": 27.75491480996068,
+ "grad_norm": 0.19664280116558075,
+ "learning_rate": 0.0006,
+ "loss": 3.7721195220947266,
+ "step": 1998
+ },
+ {
+ "epoch": 27.76889471384884,
+ "grad_norm": 0.17695854604244232,
+ "learning_rate": 0.0006,
+ "loss": 3.7931227684020996,
+ "step": 1999
+ },
+ {
+ "epoch": 27.782874617737004,
+ "grad_norm": 0.1899620145559311,
+ "learning_rate": 0.0006,
+ "loss": 3.798692226409912,
+ "step": 2000
+ },
+ {
+ "epoch": 27.796854521625164,
+ "grad_norm": 0.20334762334823608,
+ "learning_rate": 0.0006,
+ "loss": 3.774670124053955,
+ "step": 2001
+ },
+ {
+ "epoch": 27.810834425513324,
+ "grad_norm": 0.21150588989257812,
+ "learning_rate": 0.0006,
+ "loss": 3.803859233856201,
+ "step": 2002
+ },
+ {
+ "epoch": 27.824814329401484,
+ "grad_norm": 0.20425523817539215,
+ "learning_rate": 0.0006,
+ "loss": 3.810410976409912,
+ "step": 2003
+ },
+ {
+ "epoch": 27.838794233289647,
+ "grad_norm": 0.20468413829803467,
+ "learning_rate": 0.0006,
+ "loss": 3.800917625427246,
+ "step": 2004
+ },
+ {
+ "epoch": 27.852774137177807,
+ "grad_norm": 0.2113286256790161,
+ "learning_rate": 0.0006,
+ "loss": 3.7581989765167236,
+ "step": 2005
+ },
+ {
+ "epoch": 27.866754041065967,
+ "grad_norm": 0.2098054736852646,
+ "learning_rate": 0.0006,
+ "loss": 3.7921502590179443,
+ "step": 2006
+ },
+ {
+ "epoch": 27.88073394495413,
+ "grad_norm": 0.21701586246490479,
+ "learning_rate": 0.0006,
+ "loss": 3.8166770935058594,
+ "step": 2007
+ },
+ {
+ "epoch": 27.89471384884229,
+ "grad_norm": 0.2086625099182129,
+ "learning_rate": 0.0006,
+ "loss": 3.7732229232788086,
+ "step": 2008
+ },
+ {
+ "epoch": 27.90869375273045,
+ "grad_norm": 0.2186812162399292,
+ "learning_rate": 0.0006,
+ "loss": 3.8067402839660645,
+ "step": 2009
+ },
+ {
+ "epoch": 27.92267365661861,
+ "grad_norm": 0.2168985903263092,
+ "learning_rate": 0.0006,
+ "loss": 3.798159122467041,
+ "step": 2010
+ },
+ {
+ "epoch": 27.936653560506773,
+ "grad_norm": 0.23713620007038116,
+ "learning_rate": 0.0006,
+ "loss": 3.7958693504333496,
+ "step": 2011
+ },
+ {
+ "epoch": 27.950633464394933,
+ "grad_norm": 0.23592841625213623,
+ "learning_rate": 0.0006,
+ "loss": 3.795126438140869,
+ "step": 2012
+ },
+ {
+ "epoch": 27.964613368283093,
+ "grad_norm": 0.22210197150707245,
+ "learning_rate": 0.0006,
+ "loss": 3.791013240814209,
+ "step": 2013
+ },
+ {
+ "epoch": 27.978593272171253,
+ "grad_norm": 0.23190008103847504,
+ "learning_rate": 0.0006,
+ "loss": 3.813408374786377,
+ "step": 2014
+ },
+ {
+ "epoch": 27.992573176059416,
+ "grad_norm": 0.22158131003379822,
+ "learning_rate": 0.0006,
+ "loss": 3.7975716590881348,
+ "step": 2015
+ },
+ {
+ "epoch": 28.0,
+ "grad_norm": 0.2300519198179245,
+ "learning_rate": 0.0006,
+ "loss": 3.776214838027954,
+ "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/mask15-l2r50-fulle-lm/checkpoint-2016/training_args.bin b/runs/mask15-l2r50-fulle-lm/checkpoint-2016/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..43721c50815fe94f90cb043bf545b8f7bd9afc38
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-2016/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:a0b8d7bb9ac952b1abed3bd1e5c8f6ebd20daa957b3a85688954f8df03be6eb9
+size 4856
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-2304/chat_template.jinja b/runs/mask15-l2r50-fulle-lm/checkpoint-2304/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/mask15-l2r50-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/mask15-l2r50-fulle-lm/checkpoint-2304/config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-2304/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..1b4ac3c550d6003148026765eba4cb1512b216c9
--- /dev/null
+++ b/runs/mask15-l2r50-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": 151672
+}
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-2304/generation_config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-2304/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..5cd15fe1269fd505cfdefe9b3e9989dacd9f68f4
--- /dev/null
+++ b/runs/mask15-l2r50-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/mask15-l2r50-fulle-lm/checkpoint-2304/model.safetensors b/runs/mask15-l2r50-fulle-lm/checkpoint-2304/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..44ef740efc461efc3972108f0c7f0bcf842e5a61
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-2304/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:6f7f26dfdd47f66ce618e41f906ed65f3945c027b1062d92a853a931b43be0b0
+size 583358280
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-2304/optimizer.pt b/runs/mask15-l2r50-fulle-lm/checkpoint-2304/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..af41fae2a0ae84ae96bd88fdce668f11a78cb38f
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-2304/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:4048eb042ddc910dbeee5f216050b4d2f07fbe593b9fb338b646d0e8635a4aee
+size 1166829434
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-2304/rng_state_0.pth b/runs/mask15-l2r50-fulle-lm/checkpoint-2304/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..1878ba097e121861e71979cee3992611efa24cc7
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-2304/rng_state_0.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:14626ff8bbcf15137891e280dcec4d3545171a665fc646b631f3c59dda631ef3
+size 14512
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-2304/rng_state_1.pth b/runs/mask15-l2r50-fulle-lm/checkpoint-2304/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..60bb88b33bed0a559f43d085d51575968a962f71
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-2304/rng_state_1.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:be5e620584566ec5739c21fe353faa81ee50164742bcc7b9870ea40de44592aa
+size 14512
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-2304/scheduler.pt b/runs/mask15-l2r50-fulle-lm/checkpoint-2304/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..f90b8c27b6972bbb4a1ca0bc0dffdc47237e677d
--- /dev/null
+++ b/runs/mask15-l2r50-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/mask15-l2r50-fulle-lm/checkpoint-2304/tokenizer.json b/runs/mask15-l2r50-fulle-lm/checkpoint-2304/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..6226bf25372d1a86dbd704ec75d2129960f1ba88
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-2304/tokenizer.json
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:9245fe3cb2d40f9ed8d5d8ddd1d58701ba2a236beec08f656162281673f30560
+size 11424264
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-2304/tokenizer_config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-2304/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..01bc9676576e8cf62a08a9db166d6c5bab1d6727
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-2304/tokenizer_config.json
@@ -0,0 +1,20 @@
+{
+ "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|>",
+ "<|mask|>"
+ ],
+ "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/mask15-l2r50-fulle-lm/checkpoint-2304/trainer_state.json b/runs/mask15-l2r50-fulle-lm/checkpoint-2304/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..fd5781d4c33783686fe63862e73d074f3154b2e2
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-2304/trainer_state.json
@@ -0,0 +1,16410 @@
+{
+ "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": 9.807971954345703,
+ "learning_rate": 0.0,
+ "loss": 11.989814758300781,
+ "step": 1
+ },
+ {
+ "epoch": 0.027959807776321538,
+ "grad_norm": 9.834383010864258,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 11.993022918701172,
+ "step": 2
+ },
+ {
+ "epoch": 0.04193971166448231,
+ "grad_norm": 9.482470512390137,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 11.854345321655273,
+ "step": 3
+ },
+ {
+ "epoch": 0.055919615552643076,
+ "grad_norm": 7.678808689117432,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 11.618255615234375,
+ "step": 4
+ },
+ {
+ "epoch": 0.06989951944080385,
+ "grad_norm": 6.011275291442871,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 11.351423263549805,
+ "step": 5
+ },
+ {
+ "epoch": 0.08387942332896461,
+ "grad_norm": 5.244393825531006,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 11.128631591796875,
+ "step": 6
+ },
+ {
+ "epoch": 0.09785932721712538,
+ "grad_norm": 4.577618598937988,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 10.921937942504883,
+ "step": 7
+ },
+ {
+ "epoch": 0.11183923110528615,
+ "grad_norm": 4.03810453414917,
+ "learning_rate": 4.2e-05,
+ "loss": 10.742650985717773,
+ "step": 8
+ },
+ {
+ "epoch": 0.1258191349934469,
+ "grad_norm": 3.657679796218872,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 10.600778579711914,
+ "step": 9
+ },
+ {
+ "epoch": 0.1397990388816077,
+ "grad_norm": 3.352902889251709,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 10.489639282226562,
+ "step": 10
+ },
+ {
+ "epoch": 0.15377894276976845,
+ "grad_norm": 3.1162633895874023,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 10.417770385742188,
+ "step": 11
+ },
+ {
+ "epoch": 0.16775884665792923,
+ "grad_norm": 3.0402638912200928,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 10.35334587097168,
+ "step": 12
+ },
+ {
+ "epoch": 0.18173875054608998,
+ "grad_norm": 3.030630111694336,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 10.306867599487305,
+ "step": 13
+ },
+ {
+ "epoch": 0.19571865443425077,
+ "grad_norm": 3.035292148590088,
+ "learning_rate": 7.8e-05,
+ "loss": 10.26003646850586,
+ "step": 14
+ },
+ {
+ "epoch": 0.20969855832241152,
+ "grad_norm": 3.0125675201416016,
+ "learning_rate": 8.4e-05,
+ "loss": 10.219265937805176,
+ "step": 15
+ },
+ {
+ "epoch": 0.2236784622105723,
+ "grad_norm": 2.9998886585235596,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 10.161077499389648,
+ "step": 16
+ },
+ {
+ "epoch": 0.23765836609873306,
+ "grad_norm": 2.9411966800689697,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 10.107423782348633,
+ "step": 17
+ },
+ {
+ "epoch": 0.2516382699868938,
+ "grad_norm": 2.88081955909729,
+ "learning_rate": 0.000102,
+ "loss": 10.04700756072998,
+ "step": 18
+ },
+ {
+ "epoch": 0.2656181738750546,
+ "grad_norm": 2.8219687938690186,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 9.981185913085938,
+ "step": 19
+ },
+ {
+ "epoch": 0.2795980777632154,
+ "grad_norm": 2.79306960105896,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 9.89747142791748,
+ "step": 20
+ },
+ {
+ "epoch": 0.29357798165137616,
+ "grad_norm": 2.7314443588256836,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 9.829219818115234,
+ "step": 21
+ },
+ {
+ "epoch": 0.3075578855395369,
+ "grad_norm": 2.6923747062683105,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 9.747566223144531,
+ "step": 22
+ },
+ {
+ "epoch": 0.3215377894276977,
+ "grad_norm": 2.650602340698242,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 9.66455078125,
+ "step": 23
+ },
+ {
+ "epoch": 0.33551769331585846,
+ "grad_norm": 2.606977701187134,
+ "learning_rate": 0.000138,
+ "loss": 9.582326889038086,
+ "step": 24
+ },
+ {
+ "epoch": 0.34949759720401924,
+ "grad_norm": 2.567256212234497,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 9.492591857910156,
+ "step": 25
+ },
+ {
+ "epoch": 0.36347750109217997,
+ "grad_norm": 2.520740509033203,
+ "learning_rate": 0.00015,
+ "loss": 9.396563529968262,
+ "step": 26
+ },
+ {
+ "epoch": 0.37745740498034075,
+ "grad_norm": 2.471588611602783,
+ "learning_rate": 0.000156,
+ "loss": 9.303571701049805,
+ "step": 27
+ },
+ {
+ "epoch": 0.39143730886850153,
+ "grad_norm": 2.4341530799865723,
+ "learning_rate": 0.000162,
+ "loss": 9.191819190979004,
+ "step": 28
+ },
+ {
+ "epoch": 0.4054172127566623,
+ "grad_norm": 2.369244337081909,
+ "learning_rate": 0.000168,
+ "loss": 9.092012405395508,
+ "step": 29
+ },
+ {
+ "epoch": 0.41939711664482304,
+ "grad_norm": 2.28625226020813,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 8.984567642211914,
+ "step": 30
+ },
+ {
+ "epoch": 0.4333770205329838,
+ "grad_norm": 2.2082231044769287,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 8.889009475708008,
+ "step": 31
+ },
+ {
+ "epoch": 0.4473569244211446,
+ "grad_norm": 2.1429483890533447,
+ "learning_rate": 0.000186,
+ "loss": 8.778556823730469,
+ "step": 32
+ },
+ {
+ "epoch": 0.4613368283093054,
+ "grad_norm": 2.0937352180480957,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 8.661166191101074,
+ "step": 33
+ },
+ {
+ "epoch": 0.4753167321974661,
+ "grad_norm": 2.040790557861328,
+ "learning_rate": 0.000198,
+ "loss": 8.550382614135742,
+ "step": 34
+ },
+ {
+ "epoch": 0.4892966360856269,
+ "grad_norm": 1.93914794921875,
+ "learning_rate": 0.000204,
+ "loss": 8.463907241821289,
+ "step": 35
+ },
+ {
+ "epoch": 0.5032765399737876,
+ "grad_norm": 1.8624178171157837,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 8.3438720703125,
+ "step": 36
+ },
+ {
+ "epoch": 0.5172564438619485,
+ "grad_norm": 1.8107167482376099,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 8.21871566772461,
+ "step": 37
+ },
+ {
+ "epoch": 0.5312363477501092,
+ "grad_norm": 1.717979073524475,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 8.113494873046875,
+ "step": 38
+ },
+ {
+ "epoch": 0.54521625163827,
+ "grad_norm": 1.668742060661316,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 8.006099700927734,
+ "step": 39
+ },
+ {
+ "epoch": 0.5591961555264308,
+ "grad_norm": 1.6147786378860474,
+ "learning_rate": 0.000234,
+ "loss": 7.911509037017822,
+ "step": 40
+ },
+ {
+ "epoch": 0.5731760594145915,
+ "grad_norm": 1.535750150680542,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 7.822839736938477,
+ "step": 41
+ },
+ {
+ "epoch": 0.5871559633027523,
+ "grad_norm": 1.4700065851211548,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 7.713842868804932,
+ "step": 42
+ },
+ {
+ "epoch": 0.601135867190913,
+ "grad_norm": 1.39020574092865,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 7.6040191650390625,
+ "step": 43
+ },
+ {
+ "epoch": 0.6151157710790738,
+ "grad_norm": 1.2875399589538574,
+ "learning_rate": 0.000258,
+ "loss": 7.550642013549805,
+ "step": 44
+ },
+ {
+ "epoch": 0.6290956749672346,
+ "grad_norm": 1.2094247341156006,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 7.460824012756348,
+ "step": 45
+ },
+ {
+ "epoch": 0.6430755788553953,
+ "grad_norm": 1.126452088356018,
+ "learning_rate": 0.00027,
+ "loss": 7.380537986755371,
+ "step": 46
+ },
+ {
+ "epoch": 0.6570554827435562,
+ "grad_norm": 1.0313163995742798,
+ "learning_rate": 0.000276,
+ "loss": 7.286153793334961,
+ "step": 47
+ },
+ {
+ "epoch": 0.6710353866317169,
+ "grad_norm": 0.9172859787940979,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 7.2064714431762695,
+ "step": 48
+ },
+ {
+ "epoch": 0.6850152905198776,
+ "grad_norm": 0.8148201107978821,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 7.158207416534424,
+ "step": 49
+ },
+ {
+ "epoch": 0.6989951944080385,
+ "grad_norm": 0.650123119354248,
+ "learning_rate": 0.000294,
+ "loss": 7.108791828155518,
+ "step": 50
+ },
+ {
+ "epoch": 0.7129750982961992,
+ "grad_norm": 0.5437585711479187,
+ "learning_rate": 0.0003,
+ "loss": 7.083050727844238,
+ "step": 51
+ },
+ {
+ "epoch": 0.7269550021843599,
+ "grad_norm": 0.46762895584106445,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 7.058027267456055,
+ "step": 52
+ },
+ {
+ "epoch": 0.7409349060725208,
+ "grad_norm": 0.47947561740875244,
+ "learning_rate": 0.000312,
+ "loss": 7.015172958374023,
+ "step": 53
+ },
+ {
+ "epoch": 0.7549148099606815,
+ "grad_norm": 0.7546492218971252,
+ "learning_rate": 0.000318,
+ "loss": 7.024629592895508,
+ "step": 54
+ },
+ {
+ "epoch": 0.7688947138488423,
+ "grad_norm": 0.6153718829154968,
+ "learning_rate": 0.000324,
+ "loss": 7.026667594909668,
+ "step": 55
+ },
+ {
+ "epoch": 0.7828746177370031,
+ "grad_norm": 0.3359069228172302,
+ "learning_rate": 0.00033,
+ "loss": 7.008166313171387,
+ "step": 56
+ },
+ {
+ "epoch": 0.7968545216251638,
+ "grad_norm": 0.48906823992729187,
+ "learning_rate": 0.000336,
+ "loss": 7.019716262817383,
+ "step": 57
+ },
+ {
+ "epoch": 0.8108344255133246,
+ "grad_norm": 0.5525421500205994,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 7.02108097076416,
+ "step": 58
+ },
+ {
+ "epoch": 0.8248143294014854,
+ "grad_norm": 0.3103712201118469,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 7.003164768218994,
+ "step": 59
+ },
+ {
+ "epoch": 0.8387942332896461,
+ "grad_norm": 0.4431874752044678,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 7.003463268280029,
+ "step": 60
+ },
+ {
+ "epoch": 0.8527741371778069,
+ "grad_norm": 0.4291120767593384,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 6.96931791305542,
+ "step": 61
+ },
+ {
+ "epoch": 0.8667540410659677,
+ "grad_norm": 0.6566054224967957,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 6.989445686340332,
+ "step": 62
+ },
+ {
+ "epoch": 0.8807339449541285,
+ "grad_norm": 0.20663189888000488,
+ "learning_rate": 0.000372,
+ "loss": 6.9669342041015625,
+ "step": 63
+ },
+ {
+ "epoch": 0.8947138488422892,
+ "grad_norm": 0.6242535710334778,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 6.949883460998535,
+ "step": 64
+ },
+ {
+ "epoch": 0.9086937527304499,
+ "grad_norm": 0.6984224915504456,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 6.955153465270996,
+ "step": 65
+ },
+ {
+ "epoch": 0.9226736566186108,
+ "grad_norm": 0.6328083872795105,
+ "learning_rate": 0.00039,
+ "loss": 6.965421676635742,
+ "step": 66
+ },
+ {
+ "epoch": 0.9366535605067715,
+ "grad_norm": 1.213352918624878,
+ "learning_rate": 0.000396,
+ "loss": 6.9454345703125,
+ "step": 67
+ },
+ {
+ "epoch": 0.9506334643949322,
+ "grad_norm": 0.9221940636634827,
+ "learning_rate": 0.000402,
+ "loss": 6.923908233642578,
+ "step": 68
+ },
+ {
+ "epoch": 0.9646133682830931,
+ "grad_norm": 0.6825450658798218,
+ "learning_rate": 0.000408,
+ "loss": 6.910131454467773,
+ "step": 69
+ },
+ {
+ "epoch": 0.9785932721712538,
+ "grad_norm": 0.5690162181854248,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 6.89891242980957,
+ "step": 70
+ },
+ {
+ "epoch": 0.9925731760594146,
+ "grad_norm": 0.4320870041847229,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 6.896081924438477,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.31632405519485474,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 6.897444725036621,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 7.757839679718018,
+ "eval_runtime": 43.8338,
+ "eval_samples_per_second": 55.71,
+ "eval_steps_per_second": 3.49,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139799038881607,
+ "grad_norm": 0.3789916932582855,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 6.877245903015137,
+ "step": 73
+ },
+ {
+ "epoch": 1.0279598077763215,
+ "grad_norm": 0.9167932868003845,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 6.921600341796875,
+ "step": 74
+ },
+ {
+ "epoch": 1.0419397116644824,
+ "grad_norm": 0.581188440322876,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 6.861001968383789,
+ "step": 75
+ },
+ {
+ "epoch": 1.0559196155526431,
+ "grad_norm": 0.4179714024066925,
+ "learning_rate": 0.00045,
+ "loss": 6.875657081604004,
+ "step": 76
+ },
+ {
+ "epoch": 1.0698995194408039,
+ "grad_norm": 1.0669957399368286,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 6.857122421264648,
+ "step": 77
+ },
+ {
+ "epoch": 1.0838794233289646,
+ "grad_norm": 0.27855145931243896,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 6.828852653503418,
+ "step": 78
+ },
+ {
+ "epoch": 1.0978593272171253,
+ "grad_norm": 0.7192047834396362,
+ "learning_rate": 0.000468,
+ "loss": 6.870839595794678,
+ "step": 79
+ },
+ {
+ "epoch": 1.1118392311052863,
+ "grad_norm": 0.5583325624465942,
+ "learning_rate": 0.000474,
+ "loss": 6.8497514724731445,
+ "step": 80
+ },
+ {
+ "epoch": 1.125819134993447,
+ "grad_norm": 0.3001925051212311,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 6.858528137207031,
+ "step": 81
+ },
+ {
+ "epoch": 1.1397990388816077,
+ "grad_norm": 0.2408239096403122,
+ "learning_rate": 0.000486,
+ "loss": 6.83231258392334,
+ "step": 82
+ },
+ {
+ "epoch": 1.1537789427697684,
+ "grad_norm": 0.28230324387550354,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 6.815476894378662,
+ "step": 83
+ },
+ {
+ "epoch": 1.1677588466579292,
+ "grad_norm": 0.3247123658657074,
+ "learning_rate": 0.000498,
+ "loss": 6.780126094818115,
+ "step": 84
+ },
+ {
+ "epoch": 1.18173875054609,
+ "grad_norm": 0.25713011622428894,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 6.7798309326171875,
+ "step": 85
+ },
+ {
+ "epoch": 1.1957186544342508,
+ "grad_norm": 0.5386835932731628,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 6.791745185852051,
+ "step": 86
+ },
+ {
+ "epoch": 1.2096985583224116,
+ "grad_norm": 0.2226393222808838,
+ "learning_rate": 0.000516,
+ "loss": 6.7826972007751465,
+ "step": 87
+ },
+ {
+ "epoch": 1.2236784622105723,
+ "grad_norm": 0.4338362216949463,
+ "learning_rate": 0.000522,
+ "loss": 6.805043697357178,
+ "step": 88
+ },
+ {
+ "epoch": 1.237658366098733,
+ "grad_norm": 0.2953208386898041,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 6.768434524536133,
+ "step": 89
+ },
+ {
+ "epoch": 1.2516382699868938,
+ "grad_norm": 0.13453717529773712,
+ "learning_rate": 0.000534,
+ "loss": 6.773697376251221,
+ "step": 90
+ },
+ {
+ "epoch": 1.2656181738750547,
+ "grad_norm": 0.35774412751197815,
+ "learning_rate": 0.00054,
+ "loss": 6.766414642333984,
+ "step": 91
+ },
+ {
+ "epoch": 1.2795980777632154,
+ "grad_norm": 0.4669720530509949,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 6.754847526550293,
+ "step": 92
+ },
+ {
+ "epoch": 1.2935779816513762,
+ "grad_norm": 0.13806621730327606,
+ "learning_rate": 0.000552,
+ "loss": 6.746858596801758,
+ "step": 93
+ },
+ {
+ "epoch": 1.307557885539537,
+ "grad_norm": 0.3280332386493683,
+ "learning_rate": 0.000558,
+ "loss": 6.715662956237793,
+ "step": 94
+ },
+ {
+ "epoch": 1.3215377894276976,
+ "grad_norm": 0.4689937233924866,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 6.734938144683838,
+ "step": 95
+ },
+ {
+ "epoch": 1.3355176933158583,
+ "grad_norm": 0.35371264815330505,
+ "learning_rate": 0.00057,
+ "loss": 6.748386383056641,
+ "step": 96
+ },
+ {
+ "epoch": 1.3494975972040193,
+ "grad_norm": 0.15232303738594055,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 6.705557823181152,
+ "step": 97
+ },
+ {
+ "epoch": 1.36347750109218,
+ "grad_norm": 0.30132821202278137,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 6.7199859619140625,
+ "step": 98
+ },
+ {
+ "epoch": 1.3774574049803407,
+ "grad_norm": 0.42174842953681946,
+ "learning_rate": 0.000588,
+ "loss": 6.715370178222656,
+ "step": 99
+ },
+ {
+ "epoch": 1.3914373088685015,
+ "grad_norm": 0.6257228851318359,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 6.707026958465576,
+ "step": 100
+ },
+ {
+ "epoch": 1.4054172127566624,
+ "grad_norm": 0.4551195800304413,
+ "learning_rate": 0.0006,
+ "loss": 6.7078423500061035,
+ "step": 101
+ },
+ {
+ "epoch": 1.4193971166448232,
+ "grad_norm": 0.41940346360206604,
+ "learning_rate": 0.0006,
+ "loss": 6.6959357261657715,
+ "step": 102
+ },
+ {
+ "epoch": 1.4333770205329839,
+ "grad_norm": 0.32251718640327454,
+ "learning_rate": 0.0006,
+ "loss": 6.689168930053711,
+ "step": 103
+ },
+ {
+ "epoch": 1.4473569244211446,
+ "grad_norm": 0.2992720305919647,
+ "learning_rate": 0.0006,
+ "loss": 6.680738925933838,
+ "step": 104
+ },
+ {
+ "epoch": 1.4613368283093053,
+ "grad_norm": 0.3228456974029541,
+ "learning_rate": 0.0006,
+ "loss": 6.672350883483887,
+ "step": 105
+ },
+ {
+ "epoch": 1.475316732197466,
+ "grad_norm": 0.24954743683338165,
+ "learning_rate": 0.0006,
+ "loss": 6.653716087341309,
+ "step": 106
+ },
+ {
+ "epoch": 1.4892966360856268,
+ "grad_norm": 0.30740687251091003,
+ "learning_rate": 0.0006,
+ "loss": 6.676583290100098,
+ "step": 107
+ },
+ {
+ "epoch": 1.5032765399737875,
+ "grad_norm": 0.24950599670410156,
+ "learning_rate": 0.0006,
+ "loss": 6.656691551208496,
+ "step": 108
+ },
+ {
+ "epoch": 1.5172564438619485,
+ "grad_norm": 0.24293005466461182,
+ "learning_rate": 0.0006,
+ "loss": 6.640995979309082,
+ "step": 109
+ },
+ {
+ "epoch": 1.5312363477501092,
+ "grad_norm": 0.30167272686958313,
+ "learning_rate": 0.0006,
+ "loss": 6.647380352020264,
+ "step": 110
+ },
+ {
+ "epoch": 1.5452162516382701,
+ "grad_norm": 0.4424632787704468,
+ "learning_rate": 0.0006,
+ "loss": 6.6548261642456055,
+ "step": 111
+ },
+ {
+ "epoch": 1.5591961555264309,
+ "grad_norm": 0.5295748114585876,
+ "learning_rate": 0.0006,
+ "loss": 6.64370059967041,
+ "step": 112
+ },
+ {
+ "epoch": 1.5731760594145916,
+ "grad_norm": 0.6829339265823364,
+ "learning_rate": 0.0006,
+ "loss": 6.654196739196777,
+ "step": 113
+ },
+ {
+ "epoch": 1.5871559633027523,
+ "grad_norm": 0.6534460186958313,
+ "learning_rate": 0.0006,
+ "loss": 6.675765037536621,
+ "step": 114
+ },
+ {
+ "epoch": 1.601135867190913,
+ "grad_norm": 0.6172244548797607,
+ "learning_rate": 0.0006,
+ "loss": 6.631234169006348,
+ "step": 115
+ },
+ {
+ "epoch": 1.6151157710790738,
+ "grad_norm": 0.5650008320808411,
+ "learning_rate": 0.0006,
+ "loss": 6.654262542724609,
+ "step": 116
+ },
+ {
+ "epoch": 1.6290956749672345,
+ "grad_norm": 0.3890475928783417,
+ "learning_rate": 0.0006,
+ "loss": 6.627526760101318,
+ "step": 117
+ },
+ {
+ "epoch": 1.6430755788553952,
+ "grad_norm": 0.6409873366355896,
+ "learning_rate": 0.0006,
+ "loss": 6.619794845581055,
+ "step": 118
+ },
+ {
+ "epoch": 1.6570554827435562,
+ "grad_norm": 0.5052326321601868,
+ "learning_rate": 0.0006,
+ "loss": 6.612556457519531,
+ "step": 119
+ },
+ {
+ "epoch": 1.671035386631717,
+ "grad_norm": 0.5001237988471985,
+ "learning_rate": 0.0006,
+ "loss": 6.577266693115234,
+ "step": 120
+ },
+ {
+ "epoch": 1.6850152905198776,
+ "grad_norm": 0.5328938364982605,
+ "learning_rate": 0.0006,
+ "loss": 6.59553337097168,
+ "step": 121
+ },
+ {
+ "epoch": 1.6989951944080386,
+ "grad_norm": 0.3568951189517975,
+ "learning_rate": 0.0006,
+ "loss": 6.602717399597168,
+ "step": 122
+ },
+ {
+ "epoch": 1.7129750982961993,
+ "grad_norm": 0.4017309546470642,
+ "learning_rate": 0.0006,
+ "loss": 6.589657783508301,
+ "step": 123
+ },
+ {
+ "epoch": 1.72695500218436,
+ "grad_norm": 0.21432629227638245,
+ "learning_rate": 0.0006,
+ "loss": 6.586555480957031,
+ "step": 124
+ },
+ {
+ "epoch": 1.7409349060725208,
+ "grad_norm": 0.21038052439689636,
+ "learning_rate": 0.0006,
+ "loss": 6.576569557189941,
+ "step": 125
+ },
+ {
+ "epoch": 1.7549148099606815,
+ "grad_norm": 0.23074904084205627,
+ "learning_rate": 0.0006,
+ "loss": 6.5880632400512695,
+ "step": 126
+ },
+ {
+ "epoch": 1.7688947138488422,
+ "grad_norm": 0.42963048815727234,
+ "learning_rate": 0.0006,
+ "loss": 6.603862762451172,
+ "step": 127
+ },
+ {
+ "epoch": 1.782874617737003,
+ "grad_norm": 0.361331045627594,
+ "learning_rate": 0.0006,
+ "loss": 6.579834938049316,
+ "step": 128
+ },
+ {
+ "epoch": 1.7968545216251637,
+ "grad_norm": 0.4951060712337494,
+ "learning_rate": 0.0006,
+ "loss": 6.570443630218506,
+ "step": 129
+ },
+ {
+ "epoch": 1.8108344255133246,
+ "grad_norm": 0.2258434295654297,
+ "learning_rate": 0.0006,
+ "loss": 6.5664777755737305,
+ "step": 130
+ },
+ {
+ "epoch": 1.8248143294014854,
+ "grad_norm": 0.2922155559062958,
+ "learning_rate": 0.0006,
+ "loss": 6.561326503753662,
+ "step": 131
+ },
+ {
+ "epoch": 1.838794233289646,
+ "grad_norm": 0.19068220257759094,
+ "learning_rate": 0.0006,
+ "loss": 6.528727054595947,
+ "step": 132
+ },
+ {
+ "epoch": 1.852774137177807,
+ "grad_norm": 0.2122010439634323,
+ "learning_rate": 0.0006,
+ "loss": 6.535636901855469,
+ "step": 133
+ },
+ {
+ "epoch": 1.8667540410659678,
+ "grad_norm": 0.25760164856910706,
+ "learning_rate": 0.0006,
+ "loss": 6.530498504638672,
+ "step": 134
+ },
+ {
+ "epoch": 1.8807339449541285,
+ "grad_norm": 0.1761016845703125,
+ "learning_rate": 0.0006,
+ "loss": 6.514466285705566,
+ "step": 135
+ },
+ {
+ "epoch": 1.8947138488422892,
+ "grad_norm": 0.2250051498413086,
+ "learning_rate": 0.0006,
+ "loss": 6.521268844604492,
+ "step": 136
+ },
+ {
+ "epoch": 1.90869375273045,
+ "grad_norm": 0.34458497166633606,
+ "learning_rate": 0.0006,
+ "loss": 6.512831687927246,
+ "step": 137
+ },
+ {
+ "epoch": 1.9226736566186107,
+ "grad_norm": 0.3468617796897888,
+ "learning_rate": 0.0006,
+ "loss": 6.515641689300537,
+ "step": 138
+ },
+ {
+ "epoch": 1.9366535605067714,
+ "grad_norm": 0.5051495432853699,
+ "learning_rate": 0.0006,
+ "loss": 6.5147905349731445,
+ "step": 139
+ },
+ {
+ "epoch": 1.9506334643949321,
+ "grad_norm": 0.7106727361679077,
+ "learning_rate": 0.0006,
+ "loss": 6.519277572631836,
+ "step": 140
+ },
+ {
+ "epoch": 1.964613368283093,
+ "grad_norm": 0.8881394267082214,
+ "learning_rate": 0.0006,
+ "loss": 6.526865482330322,
+ "step": 141
+ },
+ {
+ "epoch": 1.9785932721712538,
+ "grad_norm": 0.5552834272384644,
+ "learning_rate": 0.0006,
+ "loss": 6.469970226287842,
+ "step": 142
+ },
+ {
+ "epoch": 1.9925731760594148,
+ "grad_norm": 0.6903126835823059,
+ "learning_rate": 0.0006,
+ "loss": 6.476300239562988,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.47679027915000916,
+ "learning_rate": 0.0006,
+ "loss": 6.463827133178711,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 7.388528823852539,
+ "eval_runtime": 44.2519,
+ "eval_samples_per_second": 55.184,
+ "eval_steps_per_second": 3.457,
+ "step": 144
+ },
+ {
+ "epoch": 2.0139799038881607,
+ "grad_norm": 0.4719221293926239,
+ "learning_rate": 0.0006,
+ "loss": 6.480956077575684,
+ "step": 145
+ },
+ {
+ "epoch": 2.0279598077763215,
+ "grad_norm": 0.41137924790382385,
+ "learning_rate": 0.0006,
+ "loss": 6.449707984924316,
+ "step": 146
+ },
+ {
+ "epoch": 2.041939711664482,
+ "grad_norm": 0.4237765371799469,
+ "learning_rate": 0.0006,
+ "loss": 6.467435836791992,
+ "step": 147
+ },
+ {
+ "epoch": 2.055919615552643,
+ "grad_norm": 0.44081810116767883,
+ "learning_rate": 0.0006,
+ "loss": 6.436868667602539,
+ "step": 148
+ },
+ {
+ "epoch": 2.0698995194408036,
+ "grad_norm": 0.4163798391819,
+ "learning_rate": 0.0006,
+ "loss": 6.4642014503479,
+ "step": 149
+ },
+ {
+ "epoch": 2.083879423328965,
+ "grad_norm": 0.3831583261489868,
+ "learning_rate": 0.0006,
+ "loss": 6.454092025756836,
+ "step": 150
+ },
+ {
+ "epoch": 2.0978593272171255,
+ "grad_norm": 0.37721413373947144,
+ "learning_rate": 0.0006,
+ "loss": 6.426377296447754,
+ "step": 151
+ },
+ {
+ "epoch": 2.1118392311052863,
+ "grad_norm": 0.3323550224304199,
+ "learning_rate": 0.0006,
+ "loss": 6.421375274658203,
+ "step": 152
+ },
+ {
+ "epoch": 2.125819134993447,
+ "grad_norm": 0.47739624977111816,
+ "learning_rate": 0.0006,
+ "loss": 6.412004470825195,
+ "step": 153
+ },
+ {
+ "epoch": 2.1397990388816077,
+ "grad_norm": 0.8530274629592896,
+ "learning_rate": 0.0006,
+ "loss": 6.410468578338623,
+ "step": 154
+ },
+ {
+ "epoch": 2.1537789427697684,
+ "grad_norm": 0.6420364379882812,
+ "learning_rate": 0.0006,
+ "loss": 6.413525581359863,
+ "step": 155
+ },
+ {
+ "epoch": 2.167758846657929,
+ "grad_norm": 0.5005049109458923,
+ "learning_rate": 0.0006,
+ "loss": 6.401463508605957,
+ "step": 156
+ },
+ {
+ "epoch": 2.18173875054609,
+ "grad_norm": 0.3614683449268341,
+ "learning_rate": 0.0006,
+ "loss": 6.390063285827637,
+ "step": 157
+ },
+ {
+ "epoch": 2.1957186544342506,
+ "grad_norm": 0.595215380191803,
+ "learning_rate": 0.0006,
+ "loss": 6.369806289672852,
+ "step": 158
+ },
+ {
+ "epoch": 2.2096985583224114,
+ "grad_norm": 0.5700321793556213,
+ "learning_rate": 0.0006,
+ "loss": 6.368378639221191,
+ "step": 159
+ },
+ {
+ "epoch": 2.2236784622105725,
+ "grad_norm": 0.36273983120918274,
+ "learning_rate": 0.0006,
+ "loss": 6.366860389709473,
+ "step": 160
+ },
+ {
+ "epoch": 2.2376583660987333,
+ "grad_norm": 0.2850998342037201,
+ "learning_rate": 0.0006,
+ "loss": 6.352144718170166,
+ "step": 161
+ },
+ {
+ "epoch": 2.251638269986894,
+ "grad_norm": 0.38558584451675415,
+ "learning_rate": 0.0006,
+ "loss": 6.375765800476074,
+ "step": 162
+ },
+ {
+ "epoch": 2.2656181738750547,
+ "grad_norm": 0.34809231758117676,
+ "learning_rate": 0.0006,
+ "loss": 6.350445747375488,
+ "step": 163
+ },
+ {
+ "epoch": 2.2795980777632154,
+ "grad_norm": 0.5211818814277649,
+ "learning_rate": 0.0006,
+ "loss": 6.354585647583008,
+ "step": 164
+ },
+ {
+ "epoch": 2.293577981651376,
+ "grad_norm": 1.0809133052825928,
+ "learning_rate": 0.0006,
+ "loss": 6.3752007484436035,
+ "step": 165
+ },
+ {
+ "epoch": 2.307557885539537,
+ "grad_norm": 0.8293641209602356,
+ "learning_rate": 0.0006,
+ "loss": 6.35113525390625,
+ "step": 166
+ },
+ {
+ "epoch": 2.3215377894276976,
+ "grad_norm": 0.3428577780723572,
+ "learning_rate": 0.0006,
+ "loss": 6.334470748901367,
+ "step": 167
+ },
+ {
+ "epoch": 2.3355176933158583,
+ "grad_norm": 0.7587600946426392,
+ "learning_rate": 0.0006,
+ "loss": 6.353979587554932,
+ "step": 168
+ },
+ {
+ "epoch": 2.349497597204019,
+ "grad_norm": 0.4227249026298523,
+ "learning_rate": 0.0006,
+ "loss": 6.34018611907959,
+ "step": 169
+ },
+ {
+ "epoch": 2.36347750109218,
+ "grad_norm": 0.4226846694946289,
+ "learning_rate": 0.0006,
+ "loss": 6.290019989013672,
+ "step": 170
+ },
+ {
+ "epoch": 2.3774574049803405,
+ "grad_norm": 0.38412365317344666,
+ "learning_rate": 0.0006,
+ "loss": 6.309510231018066,
+ "step": 171
+ },
+ {
+ "epoch": 2.3914373088685017,
+ "grad_norm": 0.45698508620262146,
+ "learning_rate": 0.0006,
+ "loss": 6.283290863037109,
+ "step": 172
+ },
+ {
+ "epoch": 2.4054172127566624,
+ "grad_norm": 0.7575915455818176,
+ "learning_rate": 0.0006,
+ "loss": 6.306073188781738,
+ "step": 173
+ },
+ {
+ "epoch": 2.419397116644823,
+ "grad_norm": 0.695123553276062,
+ "learning_rate": 0.0006,
+ "loss": 6.308144569396973,
+ "step": 174
+ },
+ {
+ "epoch": 2.433377020532984,
+ "grad_norm": 0.5035743117332458,
+ "learning_rate": 0.0006,
+ "loss": 6.282073974609375,
+ "step": 175
+ },
+ {
+ "epoch": 2.4473569244211446,
+ "grad_norm": 0.3158020079135895,
+ "learning_rate": 0.0006,
+ "loss": 6.282169342041016,
+ "step": 176
+ },
+ {
+ "epoch": 2.4613368283093053,
+ "grad_norm": 0.4829689860343933,
+ "learning_rate": 0.0006,
+ "loss": 6.264578819274902,
+ "step": 177
+ },
+ {
+ "epoch": 2.475316732197466,
+ "grad_norm": 0.3992770314216614,
+ "learning_rate": 0.0006,
+ "loss": 6.228628158569336,
+ "step": 178
+ },
+ {
+ "epoch": 2.489296636085627,
+ "grad_norm": 0.40887606143951416,
+ "learning_rate": 0.0006,
+ "loss": 6.230792045593262,
+ "step": 179
+ },
+ {
+ "epoch": 2.5032765399737875,
+ "grad_norm": 0.3540310263633728,
+ "learning_rate": 0.0006,
+ "loss": 6.222573280334473,
+ "step": 180
+ },
+ {
+ "epoch": 2.5172564438619487,
+ "grad_norm": 0.496219664812088,
+ "learning_rate": 0.0006,
+ "loss": 6.212109565734863,
+ "step": 181
+ },
+ {
+ "epoch": 2.5312363477501094,
+ "grad_norm": 0.435173898935318,
+ "learning_rate": 0.0006,
+ "loss": 6.221210479736328,
+ "step": 182
+ },
+ {
+ "epoch": 2.54521625163827,
+ "grad_norm": 0.5364007949829102,
+ "learning_rate": 0.0006,
+ "loss": 6.217929840087891,
+ "step": 183
+ },
+ {
+ "epoch": 2.559196155526431,
+ "grad_norm": 0.5946390628814697,
+ "learning_rate": 0.0006,
+ "loss": 6.189267158508301,
+ "step": 184
+ },
+ {
+ "epoch": 2.5731760594145916,
+ "grad_norm": 0.41621312499046326,
+ "learning_rate": 0.0006,
+ "loss": 6.182415008544922,
+ "step": 185
+ },
+ {
+ "epoch": 2.5871559633027523,
+ "grad_norm": 0.5442072749137878,
+ "learning_rate": 0.0006,
+ "loss": 6.150757789611816,
+ "step": 186
+ },
+ {
+ "epoch": 2.601135867190913,
+ "grad_norm": 0.727843165397644,
+ "learning_rate": 0.0006,
+ "loss": 6.146082878112793,
+ "step": 187
+ },
+ {
+ "epoch": 2.615115771079074,
+ "grad_norm": 0.8898891806602478,
+ "learning_rate": 0.0006,
+ "loss": 6.190483093261719,
+ "step": 188
+ },
+ {
+ "epoch": 2.6290956749672345,
+ "grad_norm": 0.5173947215080261,
+ "learning_rate": 0.0006,
+ "loss": 6.151251792907715,
+ "step": 189
+ },
+ {
+ "epoch": 2.6430755788553952,
+ "grad_norm": 0.6476729512214661,
+ "learning_rate": 0.0006,
+ "loss": 6.154841423034668,
+ "step": 190
+ },
+ {
+ "epoch": 2.657055482743556,
+ "grad_norm": 0.3538810908794403,
+ "learning_rate": 0.0006,
+ "loss": 6.103879928588867,
+ "step": 191
+ },
+ {
+ "epoch": 2.6710353866317167,
+ "grad_norm": 0.4773508310317993,
+ "learning_rate": 0.0006,
+ "loss": 6.118101119995117,
+ "step": 192
+ },
+ {
+ "epoch": 2.6850152905198774,
+ "grad_norm": 0.29213786125183105,
+ "learning_rate": 0.0006,
+ "loss": 6.108916282653809,
+ "step": 193
+ },
+ {
+ "epoch": 2.6989951944080386,
+ "grad_norm": 0.40800607204437256,
+ "learning_rate": 0.0006,
+ "loss": 6.113438606262207,
+ "step": 194
+ },
+ {
+ "epoch": 2.7129750982961993,
+ "grad_norm": 0.31157299876213074,
+ "learning_rate": 0.0006,
+ "loss": 6.101809501647949,
+ "step": 195
+ },
+ {
+ "epoch": 2.72695500218436,
+ "grad_norm": 0.28660309314727783,
+ "learning_rate": 0.0006,
+ "loss": 6.075886249542236,
+ "step": 196
+ },
+ {
+ "epoch": 2.7409349060725208,
+ "grad_norm": 0.3810449540615082,
+ "learning_rate": 0.0006,
+ "loss": 6.053257942199707,
+ "step": 197
+ },
+ {
+ "epoch": 2.7549148099606815,
+ "grad_norm": 0.21741755306720734,
+ "learning_rate": 0.0006,
+ "loss": 6.013825416564941,
+ "step": 198
+ },
+ {
+ "epoch": 2.7688947138488422,
+ "grad_norm": 0.2777678966522217,
+ "learning_rate": 0.0006,
+ "loss": 6.054204940795898,
+ "step": 199
+ },
+ {
+ "epoch": 2.782874617737003,
+ "grad_norm": 0.28503066301345825,
+ "learning_rate": 0.0006,
+ "loss": 6.035628318786621,
+ "step": 200
+ },
+ {
+ "epoch": 2.7968545216251637,
+ "grad_norm": 0.41954755783081055,
+ "learning_rate": 0.0006,
+ "loss": 6.028354644775391,
+ "step": 201
+ },
+ {
+ "epoch": 2.810834425513325,
+ "grad_norm": 0.8785563111305237,
+ "learning_rate": 0.0006,
+ "loss": 6.055761337280273,
+ "step": 202
+ },
+ {
+ "epoch": 2.8248143294014856,
+ "grad_norm": 1.7459558248519897,
+ "learning_rate": 0.0006,
+ "loss": 6.11599588394165,
+ "step": 203
+ },
+ {
+ "epoch": 2.8387942332896463,
+ "grad_norm": 0.5725523233413696,
+ "learning_rate": 0.0006,
+ "loss": 6.024280548095703,
+ "step": 204
+ },
+ {
+ "epoch": 2.852774137177807,
+ "grad_norm": 0.5913150906562805,
+ "learning_rate": 0.0006,
+ "loss": 6.050281524658203,
+ "step": 205
+ },
+ {
+ "epoch": 2.8667540410659678,
+ "grad_norm": 0.5929384827613831,
+ "learning_rate": 0.0006,
+ "loss": 6.041121482849121,
+ "step": 206
+ },
+ {
+ "epoch": 2.8807339449541285,
+ "grad_norm": 0.5650724768638611,
+ "learning_rate": 0.0006,
+ "loss": 6.004258155822754,
+ "step": 207
+ },
+ {
+ "epoch": 2.894713848842289,
+ "grad_norm": 0.3420545756816864,
+ "learning_rate": 0.0006,
+ "loss": 5.983296871185303,
+ "step": 208
+ },
+ {
+ "epoch": 2.90869375273045,
+ "grad_norm": 0.2960914075374603,
+ "learning_rate": 0.0006,
+ "loss": 5.988578796386719,
+ "step": 209
+ },
+ {
+ "epoch": 2.9226736566186107,
+ "grad_norm": 0.3252662718296051,
+ "learning_rate": 0.0006,
+ "loss": 5.99103307723999,
+ "step": 210
+ },
+ {
+ "epoch": 2.9366535605067714,
+ "grad_norm": 0.4851132929325104,
+ "learning_rate": 0.0006,
+ "loss": 6.0028977394104,
+ "step": 211
+ },
+ {
+ "epoch": 2.950633464394932,
+ "grad_norm": 0.5639995336532593,
+ "learning_rate": 0.0006,
+ "loss": 5.965080738067627,
+ "step": 212
+ },
+ {
+ "epoch": 2.964613368283093,
+ "grad_norm": 0.4514601230621338,
+ "learning_rate": 0.0006,
+ "loss": 5.961450576782227,
+ "step": 213
+ },
+ {
+ "epoch": 2.9785932721712536,
+ "grad_norm": 0.5397921800613403,
+ "learning_rate": 0.0006,
+ "loss": 5.965290546417236,
+ "step": 214
+ },
+ {
+ "epoch": 2.9925731760594148,
+ "grad_norm": 0.4735587239265442,
+ "learning_rate": 0.0006,
+ "loss": 5.952754497528076,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.32061058282852173,
+ "learning_rate": 0.0006,
+ "loss": 5.961667060852051,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 6.8517303466796875,
+ "eval_runtime": 44.03,
+ "eval_samples_per_second": 55.462,
+ "eval_steps_per_second": 3.475,
+ "step": 216
+ },
+ {
+ "epoch": 3.0139799038881607,
+ "grad_norm": 0.3537784814834595,
+ "learning_rate": 0.0006,
+ "loss": 5.928008079528809,
+ "step": 217
+ },
+ {
+ "epoch": 3.0279598077763215,
+ "grad_norm": 0.40713080763816833,
+ "learning_rate": 0.0006,
+ "loss": 5.9150800704956055,
+ "step": 218
+ },
+ {
+ "epoch": 3.041939711664482,
+ "grad_norm": 0.2548826336860657,
+ "learning_rate": 0.0006,
+ "loss": 5.919757843017578,
+ "step": 219
+ },
+ {
+ "epoch": 3.055919615552643,
+ "grad_norm": 0.2818543016910553,
+ "learning_rate": 0.0006,
+ "loss": 5.913688659667969,
+ "step": 220
+ },
+ {
+ "epoch": 3.0698995194408036,
+ "grad_norm": 0.4196692705154419,
+ "learning_rate": 0.0006,
+ "loss": 5.8675336837768555,
+ "step": 221
+ },
+ {
+ "epoch": 3.083879423328965,
+ "grad_norm": 0.35272282361984253,
+ "learning_rate": 0.0006,
+ "loss": 5.878874778747559,
+ "step": 222
+ },
+ {
+ "epoch": 3.0978593272171255,
+ "grad_norm": 0.3254282772541046,
+ "learning_rate": 0.0006,
+ "loss": 5.8823041915893555,
+ "step": 223
+ },
+ {
+ "epoch": 3.1118392311052863,
+ "grad_norm": 0.4052561819553375,
+ "learning_rate": 0.0006,
+ "loss": 5.867744445800781,
+ "step": 224
+ },
+ {
+ "epoch": 3.125819134993447,
+ "grad_norm": 0.31246256828308105,
+ "learning_rate": 0.0006,
+ "loss": 5.886094093322754,
+ "step": 225
+ },
+ {
+ "epoch": 3.1397990388816077,
+ "grad_norm": 0.3479118347167969,
+ "learning_rate": 0.0006,
+ "loss": 5.850762367248535,
+ "step": 226
+ },
+ {
+ "epoch": 3.1537789427697684,
+ "grad_norm": 0.5037238597869873,
+ "learning_rate": 0.0006,
+ "loss": 5.844175815582275,
+ "step": 227
+ },
+ {
+ "epoch": 3.167758846657929,
+ "grad_norm": 0.6271815896034241,
+ "learning_rate": 0.0006,
+ "loss": 5.871790885925293,
+ "step": 228
+ },
+ {
+ "epoch": 3.18173875054609,
+ "grad_norm": 0.43838298320770264,
+ "learning_rate": 0.0006,
+ "loss": 5.844024658203125,
+ "step": 229
+ },
+ {
+ "epoch": 3.1957186544342506,
+ "grad_norm": 0.4755159616470337,
+ "learning_rate": 0.0006,
+ "loss": 5.846892356872559,
+ "step": 230
+ },
+ {
+ "epoch": 3.2096985583224114,
+ "grad_norm": 0.5229779481887817,
+ "learning_rate": 0.0006,
+ "loss": 5.827000617980957,
+ "step": 231
+ },
+ {
+ "epoch": 3.2236784622105725,
+ "grad_norm": 0.8264499306678772,
+ "learning_rate": 0.0006,
+ "loss": 5.867050647735596,
+ "step": 232
+ },
+ {
+ "epoch": 3.2376583660987333,
+ "grad_norm": 1.0607538223266602,
+ "learning_rate": 0.0006,
+ "loss": 5.877876281738281,
+ "step": 233
+ },
+ {
+ "epoch": 3.251638269986894,
+ "grad_norm": 0.7656505703926086,
+ "learning_rate": 0.0006,
+ "loss": 5.86760139465332,
+ "step": 234
+ },
+ {
+ "epoch": 3.2656181738750547,
+ "grad_norm": 0.7940183281898499,
+ "learning_rate": 0.0006,
+ "loss": 5.861355781555176,
+ "step": 235
+ },
+ {
+ "epoch": 3.2795980777632154,
+ "grad_norm": 0.45171424746513367,
+ "learning_rate": 0.0006,
+ "loss": 5.799808502197266,
+ "step": 236
+ },
+ {
+ "epoch": 3.293577981651376,
+ "grad_norm": 0.6174989342689514,
+ "learning_rate": 0.0006,
+ "loss": 5.8585920333862305,
+ "step": 237
+ },
+ {
+ "epoch": 3.307557885539537,
+ "grad_norm": 0.5341290831565857,
+ "learning_rate": 0.0006,
+ "loss": 5.8116044998168945,
+ "step": 238
+ },
+ {
+ "epoch": 3.3215377894276976,
+ "grad_norm": 0.3938343822956085,
+ "learning_rate": 0.0006,
+ "loss": 5.83797550201416,
+ "step": 239
+ },
+ {
+ "epoch": 3.3355176933158583,
+ "grad_norm": 0.5106972455978394,
+ "learning_rate": 0.0006,
+ "loss": 5.832303047180176,
+ "step": 240
+ },
+ {
+ "epoch": 3.349497597204019,
+ "grad_norm": 0.3791428506374359,
+ "learning_rate": 0.0006,
+ "loss": 5.794981956481934,
+ "step": 241
+ },
+ {
+ "epoch": 3.36347750109218,
+ "grad_norm": 0.42287978529930115,
+ "learning_rate": 0.0006,
+ "loss": 5.788144111633301,
+ "step": 242
+ },
+ {
+ "epoch": 3.3774574049803405,
+ "grad_norm": 0.27334436774253845,
+ "learning_rate": 0.0006,
+ "loss": 5.771070957183838,
+ "step": 243
+ },
+ {
+ "epoch": 3.3914373088685017,
+ "grad_norm": 0.2470470368862152,
+ "learning_rate": 0.0006,
+ "loss": 5.755998611450195,
+ "step": 244
+ },
+ {
+ "epoch": 3.4054172127566624,
+ "grad_norm": 0.3043915033340454,
+ "learning_rate": 0.0006,
+ "loss": 5.779492378234863,
+ "step": 245
+ },
+ {
+ "epoch": 3.419397116644823,
+ "grad_norm": 0.2960112988948822,
+ "learning_rate": 0.0006,
+ "loss": 5.750328063964844,
+ "step": 246
+ },
+ {
+ "epoch": 3.433377020532984,
+ "grad_norm": 0.3046723008155823,
+ "learning_rate": 0.0006,
+ "loss": 5.776517868041992,
+ "step": 247
+ },
+ {
+ "epoch": 3.4473569244211446,
+ "grad_norm": 0.22461780905723572,
+ "learning_rate": 0.0006,
+ "loss": 5.760989665985107,
+ "step": 248
+ },
+ {
+ "epoch": 3.4613368283093053,
+ "grad_norm": 0.24625757336616516,
+ "learning_rate": 0.0006,
+ "loss": 5.759706497192383,
+ "step": 249
+ },
+ {
+ "epoch": 3.475316732197466,
+ "grad_norm": 0.18207131326198578,
+ "learning_rate": 0.0006,
+ "loss": 5.747040748596191,
+ "step": 250
+ },
+ {
+ "epoch": 3.489296636085627,
+ "grad_norm": 0.16473834216594696,
+ "learning_rate": 0.0006,
+ "loss": 5.761577606201172,
+ "step": 251
+ },
+ {
+ "epoch": 3.5032765399737875,
+ "grad_norm": 0.25155773758888245,
+ "learning_rate": 0.0006,
+ "loss": 5.696502208709717,
+ "step": 252
+ },
+ {
+ "epoch": 3.5172564438619487,
+ "grad_norm": 0.24115674197673798,
+ "learning_rate": 0.0006,
+ "loss": 5.676957130432129,
+ "step": 253
+ },
+ {
+ "epoch": 3.5312363477501094,
+ "grad_norm": 0.40912172198295593,
+ "learning_rate": 0.0006,
+ "loss": 5.695090293884277,
+ "step": 254
+ },
+ {
+ "epoch": 3.54521625163827,
+ "grad_norm": 0.6727662682533264,
+ "learning_rate": 0.0006,
+ "loss": 5.722194671630859,
+ "step": 255
+ },
+ {
+ "epoch": 3.559196155526431,
+ "grad_norm": 0.8450719118118286,
+ "learning_rate": 0.0006,
+ "loss": 5.764680862426758,
+ "step": 256
+ },
+ {
+ "epoch": 3.5731760594145916,
+ "grad_norm": 0.9916183352470398,
+ "learning_rate": 0.0006,
+ "loss": 5.754530429840088,
+ "step": 257
+ },
+ {
+ "epoch": 3.5871559633027523,
+ "grad_norm": 1.041922688484192,
+ "learning_rate": 0.0006,
+ "loss": 5.781468391418457,
+ "step": 258
+ },
+ {
+ "epoch": 3.601135867190913,
+ "grad_norm": 0.972039520740509,
+ "learning_rate": 0.0006,
+ "loss": 5.760323524475098,
+ "step": 259
+ },
+ {
+ "epoch": 3.615115771079074,
+ "grad_norm": 0.6802462935447693,
+ "learning_rate": 0.0006,
+ "loss": 5.750064849853516,
+ "step": 260
+ },
+ {
+ "epoch": 3.6290956749672345,
+ "grad_norm": 0.48553529381752014,
+ "learning_rate": 0.0006,
+ "loss": 5.7464094161987305,
+ "step": 261
+ },
+ {
+ "epoch": 3.6430755788553952,
+ "grad_norm": 0.4066704213619232,
+ "learning_rate": 0.0006,
+ "loss": 5.719789505004883,
+ "step": 262
+ },
+ {
+ "epoch": 3.657055482743556,
+ "grad_norm": 0.3300860822200775,
+ "learning_rate": 0.0006,
+ "loss": 5.719920635223389,
+ "step": 263
+ },
+ {
+ "epoch": 3.6710353866317167,
+ "grad_norm": 0.3286679983139038,
+ "learning_rate": 0.0006,
+ "loss": 5.723465919494629,
+ "step": 264
+ },
+ {
+ "epoch": 3.6850152905198774,
+ "grad_norm": 0.27653390169143677,
+ "learning_rate": 0.0006,
+ "loss": 5.713820457458496,
+ "step": 265
+ },
+ {
+ "epoch": 3.6989951944080386,
+ "grad_norm": 0.26138055324554443,
+ "learning_rate": 0.0006,
+ "loss": 5.683221817016602,
+ "step": 266
+ },
+ {
+ "epoch": 3.7129750982961993,
+ "grad_norm": 0.23706290125846863,
+ "learning_rate": 0.0006,
+ "loss": 5.6896867752075195,
+ "step": 267
+ },
+ {
+ "epoch": 3.72695500218436,
+ "grad_norm": 0.2751729190349579,
+ "learning_rate": 0.0006,
+ "loss": 5.710301876068115,
+ "step": 268
+ },
+ {
+ "epoch": 3.7409349060725208,
+ "grad_norm": 0.255393385887146,
+ "learning_rate": 0.0006,
+ "loss": 5.687932968139648,
+ "step": 269
+ },
+ {
+ "epoch": 3.7549148099606815,
+ "grad_norm": 0.21453925967216492,
+ "learning_rate": 0.0006,
+ "loss": 5.68234395980835,
+ "step": 270
+ },
+ {
+ "epoch": 3.7688947138488422,
+ "grad_norm": 0.21771012246608734,
+ "learning_rate": 0.0006,
+ "loss": 5.683980464935303,
+ "step": 271
+ },
+ {
+ "epoch": 3.782874617737003,
+ "grad_norm": 0.1884593963623047,
+ "learning_rate": 0.0006,
+ "loss": 5.662779808044434,
+ "step": 272
+ },
+ {
+ "epoch": 3.7968545216251637,
+ "grad_norm": 0.20429612696170807,
+ "learning_rate": 0.0006,
+ "loss": 5.650941848754883,
+ "step": 273
+ },
+ {
+ "epoch": 3.810834425513325,
+ "grad_norm": 0.22586797177791595,
+ "learning_rate": 0.0006,
+ "loss": 5.639376640319824,
+ "step": 274
+ },
+ {
+ "epoch": 3.8248143294014856,
+ "grad_norm": 0.19651705026626587,
+ "learning_rate": 0.0006,
+ "loss": 5.612030029296875,
+ "step": 275
+ },
+ {
+ "epoch": 3.8387942332896463,
+ "grad_norm": 0.2125253826379776,
+ "learning_rate": 0.0006,
+ "loss": 5.622836589813232,
+ "step": 276
+ },
+ {
+ "epoch": 3.852774137177807,
+ "grad_norm": 0.2905234694480896,
+ "learning_rate": 0.0006,
+ "loss": 5.624594688415527,
+ "step": 277
+ },
+ {
+ "epoch": 3.8667540410659678,
+ "grad_norm": 0.2718426585197449,
+ "learning_rate": 0.0006,
+ "loss": 5.619892120361328,
+ "step": 278
+ },
+ {
+ "epoch": 3.8807339449541285,
+ "grad_norm": 0.26481127738952637,
+ "learning_rate": 0.0006,
+ "loss": 5.612496852874756,
+ "step": 279
+ },
+ {
+ "epoch": 3.894713848842289,
+ "grad_norm": 0.2876453399658203,
+ "learning_rate": 0.0006,
+ "loss": 5.59157133102417,
+ "step": 280
+ },
+ {
+ "epoch": 3.90869375273045,
+ "grad_norm": 0.22829554975032806,
+ "learning_rate": 0.0006,
+ "loss": 5.5884199142456055,
+ "step": 281
+ },
+ {
+ "epoch": 3.9226736566186107,
+ "grad_norm": 0.22852344810962677,
+ "learning_rate": 0.0006,
+ "loss": 5.618719100952148,
+ "step": 282
+ },
+ {
+ "epoch": 3.9366535605067714,
+ "grad_norm": 0.37366563081741333,
+ "learning_rate": 0.0006,
+ "loss": 5.611738204956055,
+ "step": 283
+ },
+ {
+ "epoch": 3.950633464394932,
+ "grad_norm": 0.5650382041931152,
+ "learning_rate": 0.0006,
+ "loss": 5.606371879577637,
+ "step": 284
+ },
+ {
+ "epoch": 3.964613368283093,
+ "grad_norm": 0.5960066914558411,
+ "learning_rate": 0.0006,
+ "loss": 5.595022201538086,
+ "step": 285
+ },
+ {
+ "epoch": 3.9785932721712536,
+ "grad_norm": 0.3561663031578064,
+ "learning_rate": 0.0006,
+ "loss": 5.581035614013672,
+ "step": 286
+ },
+ {
+ "epoch": 3.9925731760594148,
+ "grad_norm": 0.44699913263320923,
+ "learning_rate": 0.0006,
+ "loss": 5.568033218383789,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.42783990502357483,
+ "learning_rate": 0.0006,
+ "loss": 5.571993827819824,
+ "step": 288
+ },
+ {
+ "epoch": 4.0,
+ "eval_loss": 6.349016189575195,
+ "eval_runtime": 44.3326,
+ "eval_samples_per_second": 55.084,
+ "eval_steps_per_second": 3.451,
+ "step": 288
+ },
+ {
+ "epoch": 4.013979903888161,
+ "grad_norm": 0.41305896639823914,
+ "learning_rate": 0.0006,
+ "loss": 5.562954902648926,
+ "step": 289
+ },
+ {
+ "epoch": 4.0279598077763215,
+ "grad_norm": 0.3966459035873413,
+ "learning_rate": 0.0006,
+ "loss": 5.5671916007995605,
+ "step": 290
+ },
+ {
+ "epoch": 4.041939711664482,
+ "grad_norm": 0.4846104085445404,
+ "learning_rate": 0.0006,
+ "loss": 5.548027038574219,
+ "step": 291
+ },
+ {
+ "epoch": 4.055919615552643,
+ "grad_norm": 0.5916333794593811,
+ "learning_rate": 0.0006,
+ "loss": 5.5900068283081055,
+ "step": 292
+ },
+ {
+ "epoch": 4.069899519440804,
+ "grad_norm": 0.5973889231681824,
+ "learning_rate": 0.0006,
+ "loss": 5.537594795227051,
+ "step": 293
+ },
+ {
+ "epoch": 4.083879423328964,
+ "grad_norm": 0.4190494418144226,
+ "learning_rate": 0.0006,
+ "loss": 5.534749984741211,
+ "step": 294
+ },
+ {
+ "epoch": 4.097859327217125,
+ "grad_norm": 0.5956901907920837,
+ "learning_rate": 0.0006,
+ "loss": 5.554540634155273,
+ "step": 295
+ },
+ {
+ "epoch": 4.111839231105286,
+ "grad_norm": 0.8257920742034912,
+ "learning_rate": 0.0006,
+ "loss": 5.5728068351745605,
+ "step": 296
+ },
+ {
+ "epoch": 4.1258191349934465,
+ "grad_norm": 0.7241750955581665,
+ "learning_rate": 0.0006,
+ "loss": 5.5643815994262695,
+ "step": 297
+ },
+ {
+ "epoch": 4.139799038881607,
+ "grad_norm": 0.45730507373809814,
+ "learning_rate": 0.0006,
+ "loss": 5.554225921630859,
+ "step": 298
+ },
+ {
+ "epoch": 4.153778942769769,
+ "grad_norm": 0.5166977643966675,
+ "learning_rate": 0.0006,
+ "loss": 5.540790557861328,
+ "step": 299
+ },
+ {
+ "epoch": 4.16775884665793,
+ "grad_norm": 0.433237761259079,
+ "learning_rate": 0.0006,
+ "loss": 5.536884784698486,
+ "step": 300
+ },
+ {
+ "epoch": 4.18173875054609,
+ "grad_norm": 0.3369830250740051,
+ "learning_rate": 0.0006,
+ "loss": 5.532837867736816,
+ "step": 301
+ },
+ {
+ "epoch": 4.195718654434251,
+ "grad_norm": 0.33091458678245544,
+ "learning_rate": 0.0006,
+ "loss": 5.547643661499023,
+ "step": 302
+ },
+ {
+ "epoch": 4.209698558322412,
+ "grad_norm": 0.36462724208831787,
+ "learning_rate": 0.0006,
+ "loss": 5.525021076202393,
+ "step": 303
+ },
+ {
+ "epoch": 4.2236784622105725,
+ "grad_norm": 0.3342771530151367,
+ "learning_rate": 0.0006,
+ "loss": 5.512082099914551,
+ "step": 304
+ },
+ {
+ "epoch": 4.237658366098733,
+ "grad_norm": 0.26784762740135193,
+ "learning_rate": 0.0006,
+ "loss": 5.488072395324707,
+ "step": 305
+ },
+ {
+ "epoch": 4.251638269986894,
+ "grad_norm": 0.25986987352371216,
+ "learning_rate": 0.0006,
+ "loss": 5.4960455894470215,
+ "step": 306
+ },
+ {
+ "epoch": 4.265618173875055,
+ "grad_norm": 0.24595795571804047,
+ "learning_rate": 0.0006,
+ "loss": 5.513367176055908,
+ "step": 307
+ },
+ {
+ "epoch": 4.279598077763215,
+ "grad_norm": 0.2224857211112976,
+ "learning_rate": 0.0006,
+ "loss": 5.465205192565918,
+ "step": 308
+ },
+ {
+ "epoch": 4.293577981651376,
+ "grad_norm": 0.26799243688583374,
+ "learning_rate": 0.0006,
+ "loss": 5.476632118225098,
+ "step": 309
+ },
+ {
+ "epoch": 4.307557885539537,
+ "grad_norm": 0.20443417131900787,
+ "learning_rate": 0.0006,
+ "loss": 5.442601203918457,
+ "step": 310
+ },
+ {
+ "epoch": 4.321537789427698,
+ "grad_norm": 0.2275059074163437,
+ "learning_rate": 0.0006,
+ "loss": 5.453519344329834,
+ "step": 311
+ },
+ {
+ "epoch": 4.335517693315858,
+ "grad_norm": 0.2860901951789856,
+ "learning_rate": 0.0006,
+ "loss": 5.439424514770508,
+ "step": 312
+ },
+ {
+ "epoch": 4.349497597204019,
+ "grad_norm": 0.3378142714500427,
+ "learning_rate": 0.0006,
+ "loss": 5.476953983306885,
+ "step": 313
+ },
+ {
+ "epoch": 4.36347750109218,
+ "grad_norm": 0.3487110733985901,
+ "learning_rate": 0.0006,
+ "loss": 5.47003698348999,
+ "step": 314
+ },
+ {
+ "epoch": 4.3774574049803405,
+ "grad_norm": 0.3655227720737457,
+ "learning_rate": 0.0006,
+ "loss": 5.454250812530518,
+ "step": 315
+ },
+ {
+ "epoch": 4.391437308868501,
+ "grad_norm": 0.3754786252975464,
+ "learning_rate": 0.0006,
+ "loss": 5.475249290466309,
+ "step": 316
+ },
+ {
+ "epoch": 4.405417212756662,
+ "grad_norm": 0.42494088411331177,
+ "learning_rate": 0.0006,
+ "loss": 5.4552459716796875,
+ "step": 317
+ },
+ {
+ "epoch": 4.419397116644823,
+ "grad_norm": 0.4914703667163849,
+ "learning_rate": 0.0006,
+ "loss": 5.431845188140869,
+ "step": 318
+ },
+ {
+ "epoch": 4.433377020532983,
+ "grad_norm": 0.42470860481262207,
+ "learning_rate": 0.0006,
+ "loss": 5.454581260681152,
+ "step": 319
+ },
+ {
+ "epoch": 4.447356924421145,
+ "grad_norm": 0.3828011155128479,
+ "learning_rate": 0.0006,
+ "loss": 5.435178756713867,
+ "step": 320
+ },
+ {
+ "epoch": 4.461336828309306,
+ "grad_norm": 0.47256892919540405,
+ "learning_rate": 0.0006,
+ "loss": 5.428861618041992,
+ "step": 321
+ },
+ {
+ "epoch": 4.4753167321974665,
+ "grad_norm": 0.5665146708488464,
+ "learning_rate": 0.0006,
+ "loss": 5.424633026123047,
+ "step": 322
+ },
+ {
+ "epoch": 4.489296636085627,
+ "grad_norm": 0.48146721720695496,
+ "learning_rate": 0.0006,
+ "loss": 5.4577860832214355,
+ "step": 323
+ },
+ {
+ "epoch": 4.503276539973788,
+ "grad_norm": 0.3378535509109497,
+ "learning_rate": 0.0006,
+ "loss": 5.422727108001709,
+ "step": 324
+ },
+ {
+ "epoch": 4.517256443861949,
+ "grad_norm": 0.41981473565101624,
+ "learning_rate": 0.0006,
+ "loss": 5.418993949890137,
+ "step": 325
+ },
+ {
+ "epoch": 4.531236347750109,
+ "grad_norm": 0.39389684796333313,
+ "learning_rate": 0.0006,
+ "loss": 5.41835880279541,
+ "step": 326
+ },
+ {
+ "epoch": 4.54521625163827,
+ "grad_norm": 0.5912176370620728,
+ "learning_rate": 0.0006,
+ "loss": 5.40073299407959,
+ "step": 327
+ },
+ {
+ "epoch": 4.559196155526431,
+ "grad_norm": 0.6877487897872925,
+ "learning_rate": 0.0006,
+ "loss": 5.445301055908203,
+ "step": 328
+ },
+ {
+ "epoch": 4.573176059414592,
+ "grad_norm": 0.580555260181427,
+ "learning_rate": 0.0006,
+ "loss": 5.431069374084473,
+ "step": 329
+ },
+ {
+ "epoch": 4.587155963302752,
+ "grad_norm": 0.5974457859992981,
+ "learning_rate": 0.0006,
+ "loss": 5.422694206237793,
+ "step": 330
+ },
+ {
+ "epoch": 4.601135867190913,
+ "grad_norm": 0.722481906414032,
+ "learning_rate": 0.0006,
+ "loss": 5.447752952575684,
+ "step": 331
+ },
+ {
+ "epoch": 4.615115771079074,
+ "grad_norm": 0.7687886953353882,
+ "learning_rate": 0.0006,
+ "loss": 5.437956809997559,
+ "step": 332
+ },
+ {
+ "epoch": 4.6290956749672345,
+ "grad_norm": 0.7368173003196716,
+ "learning_rate": 0.0006,
+ "loss": 5.4367241859436035,
+ "step": 333
+ },
+ {
+ "epoch": 4.643075578855395,
+ "grad_norm": 0.6650524139404297,
+ "learning_rate": 0.0006,
+ "loss": 5.4288434982299805,
+ "step": 334
+ },
+ {
+ "epoch": 4.657055482743556,
+ "grad_norm": 0.4997614920139313,
+ "learning_rate": 0.0006,
+ "loss": 5.412769317626953,
+ "step": 335
+ },
+ {
+ "epoch": 4.671035386631717,
+ "grad_norm": 0.44208982586860657,
+ "learning_rate": 0.0006,
+ "loss": 5.42405366897583,
+ "step": 336
+ },
+ {
+ "epoch": 4.685015290519877,
+ "grad_norm": 0.39510273933410645,
+ "learning_rate": 0.0006,
+ "loss": 5.402547836303711,
+ "step": 337
+ },
+ {
+ "epoch": 4.698995194408038,
+ "grad_norm": 0.44970476627349854,
+ "learning_rate": 0.0006,
+ "loss": 5.377168655395508,
+ "step": 338
+ },
+ {
+ "epoch": 4.712975098296199,
+ "grad_norm": 0.3902331590652466,
+ "learning_rate": 0.0006,
+ "loss": 5.401622772216797,
+ "step": 339
+ },
+ {
+ "epoch": 4.72695500218436,
+ "grad_norm": 0.33485135436058044,
+ "learning_rate": 0.0006,
+ "loss": 5.397945880889893,
+ "step": 340
+ },
+ {
+ "epoch": 4.740934906072521,
+ "grad_norm": 0.29062309861183167,
+ "learning_rate": 0.0006,
+ "loss": 5.356175422668457,
+ "step": 341
+ },
+ {
+ "epoch": 4.754914809960681,
+ "grad_norm": 0.23617377877235413,
+ "learning_rate": 0.0006,
+ "loss": 5.388517379760742,
+ "step": 342
+ },
+ {
+ "epoch": 4.768894713848843,
+ "grad_norm": 0.2704737186431885,
+ "learning_rate": 0.0006,
+ "loss": 5.3746137619018555,
+ "step": 343
+ },
+ {
+ "epoch": 4.782874617737003,
+ "grad_norm": 0.20488551259040833,
+ "learning_rate": 0.0006,
+ "loss": 5.3754472732543945,
+ "step": 344
+ },
+ {
+ "epoch": 4.796854521625164,
+ "grad_norm": 0.2007082849740982,
+ "learning_rate": 0.0006,
+ "loss": 5.3538618087768555,
+ "step": 345
+ },
+ {
+ "epoch": 4.810834425513325,
+ "grad_norm": 0.21732935309410095,
+ "learning_rate": 0.0006,
+ "loss": 5.351774215698242,
+ "step": 346
+ },
+ {
+ "epoch": 4.824814329401486,
+ "grad_norm": 0.1944841742515564,
+ "learning_rate": 0.0006,
+ "loss": 5.357545852661133,
+ "step": 347
+ },
+ {
+ "epoch": 4.838794233289646,
+ "grad_norm": 0.1953933835029602,
+ "learning_rate": 0.0006,
+ "loss": 5.321681022644043,
+ "step": 348
+ },
+ {
+ "epoch": 4.852774137177807,
+ "grad_norm": 0.1743433028459549,
+ "learning_rate": 0.0006,
+ "loss": 5.340302467346191,
+ "step": 349
+ },
+ {
+ "epoch": 4.866754041065968,
+ "grad_norm": 0.19655466079711914,
+ "learning_rate": 0.0006,
+ "loss": 5.325471878051758,
+ "step": 350
+ },
+ {
+ "epoch": 4.8807339449541285,
+ "grad_norm": 0.15761791169643402,
+ "learning_rate": 0.0006,
+ "loss": 5.3453240394592285,
+ "step": 351
+ },
+ {
+ "epoch": 4.894713848842289,
+ "grad_norm": 0.19164425134658813,
+ "learning_rate": 0.0006,
+ "loss": 5.315583229064941,
+ "step": 352
+ },
+ {
+ "epoch": 4.90869375273045,
+ "grad_norm": 0.28084540367126465,
+ "learning_rate": 0.0006,
+ "loss": 5.309171676635742,
+ "step": 353
+ },
+ {
+ "epoch": 4.922673656618611,
+ "grad_norm": 0.4681853652000427,
+ "learning_rate": 0.0006,
+ "loss": 5.318211078643799,
+ "step": 354
+ },
+ {
+ "epoch": 4.936653560506771,
+ "grad_norm": 0.6417295932769775,
+ "learning_rate": 0.0006,
+ "loss": 5.309263706207275,
+ "step": 355
+ },
+ {
+ "epoch": 4.950633464394932,
+ "grad_norm": 0.501312792301178,
+ "learning_rate": 0.0006,
+ "loss": 5.321534156799316,
+ "step": 356
+ },
+ {
+ "epoch": 4.964613368283093,
+ "grad_norm": 0.47502145171165466,
+ "learning_rate": 0.0006,
+ "loss": 5.323659896850586,
+ "step": 357
+ },
+ {
+ "epoch": 4.978593272171254,
+ "grad_norm": 0.5366594791412354,
+ "learning_rate": 0.0006,
+ "loss": 5.327367782592773,
+ "step": 358
+ },
+ {
+ "epoch": 4.992573176059414,
+ "grad_norm": 0.6986395120620728,
+ "learning_rate": 0.0006,
+ "loss": 5.311097145080566,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.6626625657081604,
+ "learning_rate": 0.0006,
+ "loss": 5.337558269500732,
+ "step": 360
+ },
+ {
+ "epoch": 5.0,
+ "eval_loss": 5.929230690002441,
+ "eval_runtime": 44.5268,
+ "eval_samples_per_second": 54.843,
+ "eval_steps_per_second": 3.436,
+ "step": 360
+ },
+ {
+ "epoch": 5.013979903888161,
+ "grad_norm": 0.7383704781532288,
+ "learning_rate": 0.0006,
+ "loss": 5.315563678741455,
+ "step": 361
+ },
+ {
+ "epoch": 5.0279598077763215,
+ "grad_norm": 0.7730138301849365,
+ "learning_rate": 0.0006,
+ "loss": 5.324905872344971,
+ "step": 362
+ },
+ {
+ "epoch": 5.041939711664482,
+ "grad_norm": 0.8170825839042664,
+ "learning_rate": 0.0006,
+ "loss": 5.350251197814941,
+ "step": 363
+ },
+ {
+ "epoch": 5.055919615552643,
+ "grad_norm": 0.6950958371162415,
+ "learning_rate": 0.0006,
+ "loss": 5.338744163513184,
+ "step": 364
+ },
+ {
+ "epoch": 5.069899519440804,
+ "grad_norm": 0.5582894086837769,
+ "learning_rate": 0.0006,
+ "loss": 5.340539932250977,
+ "step": 365
+ },
+ {
+ "epoch": 5.083879423328964,
+ "grad_norm": 0.4772159159183502,
+ "learning_rate": 0.0006,
+ "loss": 5.344161033630371,
+ "step": 366
+ },
+ {
+ "epoch": 5.097859327217125,
+ "grad_norm": 0.5432839393615723,
+ "learning_rate": 0.0006,
+ "loss": 5.312403678894043,
+ "step": 367
+ },
+ {
+ "epoch": 5.111839231105286,
+ "grad_norm": 0.4944784641265869,
+ "learning_rate": 0.0006,
+ "loss": 5.30281925201416,
+ "step": 368
+ },
+ {
+ "epoch": 5.1258191349934465,
+ "grad_norm": 0.4298315942287445,
+ "learning_rate": 0.0006,
+ "loss": 5.29564094543457,
+ "step": 369
+ },
+ {
+ "epoch": 5.139799038881607,
+ "grad_norm": 0.349889874458313,
+ "learning_rate": 0.0006,
+ "loss": 5.287062644958496,
+ "step": 370
+ },
+ {
+ "epoch": 5.153778942769769,
+ "grad_norm": 0.2823719084262848,
+ "learning_rate": 0.0006,
+ "loss": 5.28826904296875,
+ "step": 371
+ },
+ {
+ "epoch": 5.16775884665793,
+ "grad_norm": 0.32975050806999207,
+ "learning_rate": 0.0006,
+ "loss": 5.256399631500244,
+ "step": 372
+ },
+ {
+ "epoch": 5.18173875054609,
+ "grad_norm": 0.2963952124118805,
+ "learning_rate": 0.0006,
+ "loss": 5.273757457733154,
+ "step": 373
+ },
+ {
+ "epoch": 5.195718654434251,
+ "grad_norm": 0.21345984935760498,
+ "learning_rate": 0.0006,
+ "loss": 5.274978160858154,
+ "step": 374
+ },
+ {
+ "epoch": 5.209698558322412,
+ "grad_norm": 0.2363101840019226,
+ "learning_rate": 0.0006,
+ "loss": 5.261585235595703,
+ "step": 375
+ },
+ {
+ "epoch": 5.2236784622105725,
+ "grad_norm": 0.19626963138580322,
+ "learning_rate": 0.0006,
+ "loss": 5.259700298309326,
+ "step": 376
+ },
+ {
+ "epoch": 5.237658366098733,
+ "grad_norm": 0.21083571016788483,
+ "learning_rate": 0.0006,
+ "loss": 5.233585357666016,
+ "step": 377
+ },
+ {
+ "epoch": 5.251638269986894,
+ "grad_norm": 0.2273513823747635,
+ "learning_rate": 0.0006,
+ "loss": 5.231740474700928,
+ "step": 378
+ },
+ {
+ "epoch": 5.265618173875055,
+ "grad_norm": 0.18299247324466705,
+ "learning_rate": 0.0006,
+ "loss": 5.251256465911865,
+ "step": 379
+ },
+ {
+ "epoch": 5.279598077763215,
+ "grad_norm": 0.19578224420547485,
+ "learning_rate": 0.0006,
+ "loss": 5.230329513549805,
+ "step": 380
+ },
+ {
+ "epoch": 5.293577981651376,
+ "grad_norm": 0.20308879017829895,
+ "learning_rate": 0.0006,
+ "loss": 5.243951797485352,
+ "step": 381
+ },
+ {
+ "epoch": 5.307557885539537,
+ "grad_norm": 0.21053212881088257,
+ "learning_rate": 0.0006,
+ "loss": 5.210272789001465,
+ "step": 382
+ },
+ {
+ "epoch": 5.321537789427698,
+ "grad_norm": 0.21852520108222961,
+ "learning_rate": 0.0006,
+ "loss": 5.215418815612793,
+ "step": 383
+ },
+ {
+ "epoch": 5.335517693315858,
+ "grad_norm": 0.24872010946273804,
+ "learning_rate": 0.0006,
+ "loss": 5.225139617919922,
+ "step": 384
+ },
+ {
+ "epoch": 5.349497597204019,
+ "grad_norm": 0.27780187129974365,
+ "learning_rate": 0.0006,
+ "loss": 5.241010665893555,
+ "step": 385
+ },
+ {
+ "epoch": 5.36347750109218,
+ "grad_norm": 0.261767715215683,
+ "learning_rate": 0.0006,
+ "loss": 5.230723857879639,
+ "step": 386
+ },
+ {
+ "epoch": 5.3774574049803405,
+ "grad_norm": 0.2111261785030365,
+ "learning_rate": 0.0006,
+ "loss": 5.1848602294921875,
+ "step": 387
+ },
+ {
+ "epoch": 5.391437308868501,
+ "grad_norm": 0.24325387179851532,
+ "learning_rate": 0.0006,
+ "loss": 5.180911064147949,
+ "step": 388
+ },
+ {
+ "epoch": 5.405417212756662,
+ "grad_norm": 0.19542962312698364,
+ "learning_rate": 0.0006,
+ "loss": 5.189907073974609,
+ "step": 389
+ },
+ {
+ "epoch": 5.419397116644823,
+ "grad_norm": 0.20489346981048584,
+ "learning_rate": 0.0006,
+ "loss": 5.184634208679199,
+ "step": 390
+ },
+ {
+ "epoch": 5.433377020532983,
+ "grad_norm": 0.2753409147262573,
+ "learning_rate": 0.0006,
+ "loss": 5.190083026885986,
+ "step": 391
+ },
+ {
+ "epoch": 5.447356924421145,
+ "grad_norm": 0.3758019208908081,
+ "learning_rate": 0.0006,
+ "loss": 5.189423561096191,
+ "step": 392
+ },
+ {
+ "epoch": 5.461336828309306,
+ "grad_norm": 0.4425095021724701,
+ "learning_rate": 0.0006,
+ "loss": 5.17152214050293,
+ "step": 393
+ },
+ {
+ "epoch": 5.4753167321974665,
+ "grad_norm": 0.39721858501434326,
+ "learning_rate": 0.0006,
+ "loss": 5.189178466796875,
+ "step": 394
+ },
+ {
+ "epoch": 5.489296636085627,
+ "grad_norm": 0.43441957235336304,
+ "learning_rate": 0.0006,
+ "loss": 5.1823577880859375,
+ "step": 395
+ },
+ {
+ "epoch": 5.503276539973788,
+ "grad_norm": 0.3583861291408539,
+ "learning_rate": 0.0006,
+ "loss": 5.160187721252441,
+ "step": 396
+ },
+ {
+ "epoch": 5.517256443861949,
+ "grad_norm": 0.323290079832077,
+ "learning_rate": 0.0006,
+ "loss": 5.113046646118164,
+ "step": 397
+ },
+ {
+ "epoch": 5.531236347750109,
+ "grad_norm": 0.3049418330192566,
+ "learning_rate": 0.0006,
+ "loss": 5.172209739685059,
+ "step": 398
+ },
+ {
+ "epoch": 5.54521625163827,
+ "grad_norm": 0.3253744840621948,
+ "learning_rate": 0.0006,
+ "loss": 5.1970720291137695,
+ "step": 399
+ },
+ {
+ "epoch": 5.559196155526431,
+ "grad_norm": 0.3232555091381073,
+ "learning_rate": 0.0006,
+ "loss": 5.173195838928223,
+ "step": 400
+ },
+ {
+ "epoch": 5.573176059414592,
+ "grad_norm": 0.33751845359802246,
+ "learning_rate": 0.0006,
+ "loss": 5.137526988983154,
+ "step": 401
+ },
+ {
+ "epoch": 5.587155963302752,
+ "grad_norm": 0.45970913767814636,
+ "learning_rate": 0.0006,
+ "loss": 5.123377799987793,
+ "step": 402
+ },
+ {
+ "epoch": 5.601135867190913,
+ "grad_norm": 0.5383784770965576,
+ "learning_rate": 0.0006,
+ "loss": 5.154180526733398,
+ "step": 403
+ },
+ {
+ "epoch": 5.615115771079074,
+ "grad_norm": 0.45765912532806396,
+ "learning_rate": 0.0006,
+ "loss": 5.1485209465026855,
+ "step": 404
+ },
+ {
+ "epoch": 5.6290956749672345,
+ "grad_norm": 0.5079503059387207,
+ "learning_rate": 0.0006,
+ "loss": 5.158293724060059,
+ "step": 405
+ },
+ {
+ "epoch": 5.643075578855395,
+ "grad_norm": 0.4860183894634247,
+ "learning_rate": 0.0006,
+ "loss": 5.1610212326049805,
+ "step": 406
+ },
+ {
+ "epoch": 5.657055482743556,
+ "grad_norm": 0.4065648913383484,
+ "learning_rate": 0.0006,
+ "loss": 5.1260786056518555,
+ "step": 407
+ },
+ {
+ "epoch": 5.671035386631717,
+ "grad_norm": 0.39606142044067383,
+ "learning_rate": 0.0006,
+ "loss": 5.1598711013793945,
+ "step": 408
+ },
+ {
+ "epoch": 5.685015290519877,
+ "grad_norm": 0.4705151319503784,
+ "learning_rate": 0.0006,
+ "loss": 5.166455268859863,
+ "step": 409
+ },
+ {
+ "epoch": 5.698995194408038,
+ "grad_norm": 0.5040799379348755,
+ "learning_rate": 0.0006,
+ "loss": 5.1408209800720215,
+ "step": 410
+ },
+ {
+ "epoch": 5.712975098296199,
+ "grad_norm": 0.5012556910514832,
+ "learning_rate": 0.0006,
+ "loss": 5.144109725952148,
+ "step": 411
+ },
+ {
+ "epoch": 5.72695500218436,
+ "grad_norm": 0.44301411509513855,
+ "learning_rate": 0.0006,
+ "loss": 5.155509948730469,
+ "step": 412
+ },
+ {
+ "epoch": 5.740934906072521,
+ "grad_norm": 0.36632269620895386,
+ "learning_rate": 0.0006,
+ "loss": 5.123111248016357,
+ "step": 413
+ },
+ {
+ "epoch": 5.754914809960681,
+ "grad_norm": 0.2980524003505707,
+ "learning_rate": 0.0006,
+ "loss": 5.1355719566345215,
+ "step": 414
+ },
+ {
+ "epoch": 5.768894713848843,
+ "grad_norm": 0.3441782295703888,
+ "learning_rate": 0.0006,
+ "loss": 5.132327079772949,
+ "step": 415
+ },
+ {
+ "epoch": 5.782874617737003,
+ "grad_norm": 0.4150780737400055,
+ "learning_rate": 0.0006,
+ "loss": 5.148543357849121,
+ "step": 416
+ },
+ {
+ "epoch": 5.796854521625164,
+ "grad_norm": 0.48417383432388306,
+ "learning_rate": 0.0006,
+ "loss": 5.104989528656006,
+ "step": 417
+ },
+ {
+ "epoch": 5.810834425513325,
+ "grad_norm": 0.3216031491756439,
+ "learning_rate": 0.0006,
+ "loss": 5.0926127433776855,
+ "step": 418
+ },
+ {
+ "epoch": 5.824814329401486,
+ "grad_norm": 0.2821158468723297,
+ "learning_rate": 0.0006,
+ "loss": 5.112299919128418,
+ "step": 419
+ },
+ {
+ "epoch": 5.838794233289646,
+ "grad_norm": 0.29821011424064636,
+ "learning_rate": 0.0006,
+ "loss": 5.091662406921387,
+ "step": 420
+ },
+ {
+ "epoch": 5.852774137177807,
+ "grad_norm": 0.30570563673973083,
+ "learning_rate": 0.0006,
+ "loss": 5.137539863586426,
+ "step": 421
+ },
+ {
+ "epoch": 5.866754041065968,
+ "grad_norm": 0.4029594957828522,
+ "learning_rate": 0.0006,
+ "loss": 5.112751007080078,
+ "step": 422
+ },
+ {
+ "epoch": 5.8807339449541285,
+ "grad_norm": 0.3878514766693115,
+ "learning_rate": 0.0006,
+ "loss": 5.094973564147949,
+ "step": 423
+ },
+ {
+ "epoch": 5.894713848842289,
+ "grad_norm": 0.31936126947402954,
+ "learning_rate": 0.0006,
+ "loss": 5.081070899963379,
+ "step": 424
+ },
+ {
+ "epoch": 5.90869375273045,
+ "grad_norm": 0.3309082090854645,
+ "learning_rate": 0.0006,
+ "loss": 5.06803560256958,
+ "step": 425
+ },
+ {
+ "epoch": 5.922673656618611,
+ "grad_norm": 0.27830439805984497,
+ "learning_rate": 0.0006,
+ "loss": 5.044766426086426,
+ "step": 426
+ },
+ {
+ "epoch": 5.936653560506771,
+ "grad_norm": 0.3301011919975281,
+ "learning_rate": 0.0006,
+ "loss": 5.093942165374756,
+ "step": 427
+ },
+ {
+ "epoch": 5.950633464394932,
+ "grad_norm": 0.40845948457717896,
+ "learning_rate": 0.0006,
+ "loss": 5.0889458656311035,
+ "step": 428
+ },
+ {
+ "epoch": 5.964613368283093,
+ "grad_norm": 0.4412153959274292,
+ "learning_rate": 0.0006,
+ "loss": 5.064834117889404,
+ "step": 429
+ },
+ {
+ "epoch": 5.978593272171254,
+ "grad_norm": 0.3592590093612671,
+ "learning_rate": 0.0006,
+ "loss": 5.066648006439209,
+ "step": 430
+ },
+ {
+ "epoch": 5.992573176059414,
+ "grad_norm": 0.3952840268611908,
+ "learning_rate": 0.0006,
+ "loss": 5.066549301147461,
+ "step": 431
+ },
+ {
+ "epoch": 6.0,
+ "grad_norm": 0.38878682255744934,
+ "learning_rate": 0.0006,
+ "loss": 5.0354323387146,
+ "step": 432
+ },
+ {
+ "epoch": 6.0,
+ "eval_loss": 5.473907947540283,
+ "eval_runtime": 44.5121,
+ "eval_samples_per_second": 54.861,
+ "eval_steps_per_second": 3.437,
+ "step": 432
+ },
+ {
+ "epoch": 6.013979903888161,
+ "grad_norm": 0.42730140686035156,
+ "learning_rate": 0.0006,
+ "loss": 5.048557281494141,
+ "step": 433
+ },
+ {
+ "epoch": 6.0279598077763215,
+ "grad_norm": 0.32713913917541504,
+ "learning_rate": 0.0006,
+ "loss": 5.041255950927734,
+ "step": 434
+ },
+ {
+ "epoch": 6.041939711664482,
+ "grad_norm": 0.32520365715026855,
+ "learning_rate": 0.0006,
+ "loss": 5.043124198913574,
+ "step": 435
+ },
+ {
+ "epoch": 6.055919615552643,
+ "grad_norm": 0.2941839098930359,
+ "learning_rate": 0.0006,
+ "loss": 5.0407304763793945,
+ "step": 436
+ },
+ {
+ "epoch": 6.069899519440804,
+ "grad_norm": 0.3088819682598114,
+ "learning_rate": 0.0006,
+ "loss": 5.020771026611328,
+ "step": 437
+ },
+ {
+ "epoch": 6.083879423328964,
+ "grad_norm": 0.34334254264831543,
+ "learning_rate": 0.0006,
+ "loss": 5.0260009765625,
+ "step": 438
+ },
+ {
+ "epoch": 6.097859327217125,
+ "grad_norm": 0.33016136288642883,
+ "learning_rate": 0.0006,
+ "loss": 4.994412899017334,
+ "step": 439
+ },
+ {
+ "epoch": 6.111839231105286,
+ "grad_norm": 0.2527366280555725,
+ "learning_rate": 0.0006,
+ "loss": 4.997830390930176,
+ "step": 440
+ },
+ {
+ "epoch": 6.1258191349934465,
+ "grad_norm": 0.24742509424686432,
+ "learning_rate": 0.0006,
+ "loss": 5.017087936401367,
+ "step": 441
+ },
+ {
+ "epoch": 6.139799038881607,
+ "grad_norm": 0.22578303515911102,
+ "learning_rate": 0.0006,
+ "loss": 5.000683784484863,
+ "step": 442
+ },
+ {
+ "epoch": 6.153778942769769,
+ "grad_norm": 0.21213896572589874,
+ "learning_rate": 0.0006,
+ "loss": 4.993280410766602,
+ "step": 443
+ },
+ {
+ "epoch": 6.16775884665793,
+ "grad_norm": 0.22559592127799988,
+ "learning_rate": 0.0006,
+ "loss": 5.005735874176025,
+ "step": 444
+ },
+ {
+ "epoch": 6.18173875054609,
+ "grad_norm": 0.18574322760105133,
+ "learning_rate": 0.0006,
+ "loss": 4.996601104736328,
+ "step": 445
+ },
+ {
+ "epoch": 6.195718654434251,
+ "grad_norm": 0.1793852299451828,
+ "learning_rate": 0.0006,
+ "loss": 4.977394104003906,
+ "step": 446
+ },
+ {
+ "epoch": 6.209698558322412,
+ "grad_norm": 0.1851297914981842,
+ "learning_rate": 0.0006,
+ "loss": 4.983541488647461,
+ "step": 447
+ },
+ {
+ "epoch": 6.2236784622105725,
+ "grad_norm": 0.2045268565416336,
+ "learning_rate": 0.0006,
+ "loss": 4.992830276489258,
+ "step": 448
+ },
+ {
+ "epoch": 6.237658366098733,
+ "grad_norm": 0.21707463264465332,
+ "learning_rate": 0.0006,
+ "loss": 4.998589515686035,
+ "step": 449
+ },
+ {
+ "epoch": 6.251638269986894,
+ "grad_norm": 0.2805860638618469,
+ "learning_rate": 0.0006,
+ "loss": 4.973134517669678,
+ "step": 450
+ },
+ {
+ "epoch": 6.265618173875055,
+ "grad_norm": 0.33102089166641235,
+ "learning_rate": 0.0006,
+ "loss": 4.957348823547363,
+ "step": 451
+ },
+ {
+ "epoch": 6.279598077763215,
+ "grad_norm": 0.3763096034526825,
+ "learning_rate": 0.0006,
+ "loss": 5.0133256912231445,
+ "step": 452
+ },
+ {
+ "epoch": 6.293577981651376,
+ "grad_norm": 0.4676196575164795,
+ "learning_rate": 0.0006,
+ "loss": 4.972289562225342,
+ "step": 453
+ },
+ {
+ "epoch": 6.307557885539537,
+ "grad_norm": 0.6158978343009949,
+ "learning_rate": 0.0006,
+ "loss": 4.989326477050781,
+ "step": 454
+ },
+ {
+ "epoch": 6.321537789427698,
+ "grad_norm": 0.537460446357727,
+ "learning_rate": 0.0006,
+ "loss": 5.0210676193237305,
+ "step": 455
+ },
+ {
+ "epoch": 6.335517693315858,
+ "grad_norm": 0.5342532396316528,
+ "learning_rate": 0.0006,
+ "loss": 4.988524436950684,
+ "step": 456
+ },
+ {
+ "epoch": 6.349497597204019,
+ "grad_norm": 0.5736384987831116,
+ "learning_rate": 0.0006,
+ "loss": 4.977508068084717,
+ "step": 457
+ },
+ {
+ "epoch": 6.36347750109218,
+ "grad_norm": 0.6656201481819153,
+ "learning_rate": 0.0006,
+ "loss": 5.047934055328369,
+ "step": 458
+ },
+ {
+ "epoch": 6.3774574049803405,
+ "grad_norm": 0.6388342380523682,
+ "learning_rate": 0.0006,
+ "loss": 5.017617225646973,
+ "step": 459
+ },
+ {
+ "epoch": 6.391437308868501,
+ "grad_norm": 0.6620904207229614,
+ "learning_rate": 0.0006,
+ "loss": 5.032195091247559,
+ "step": 460
+ },
+ {
+ "epoch": 6.405417212756662,
+ "grad_norm": 0.693274974822998,
+ "learning_rate": 0.0006,
+ "loss": 5.02433967590332,
+ "step": 461
+ },
+ {
+ "epoch": 6.419397116644823,
+ "grad_norm": 0.6888924241065979,
+ "learning_rate": 0.0006,
+ "loss": 5.010735511779785,
+ "step": 462
+ },
+ {
+ "epoch": 6.433377020532983,
+ "grad_norm": 0.7181721925735474,
+ "learning_rate": 0.0006,
+ "loss": 5.049690246582031,
+ "step": 463
+ },
+ {
+ "epoch": 6.447356924421145,
+ "grad_norm": 0.7225117087364197,
+ "learning_rate": 0.0006,
+ "loss": 5.031939506530762,
+ "step": 464
+ },
+ {
+ "epoch": 6.461336828309306,
+ "grad_norm": 0.5268304347991943,
+ "learning_rate": 0.0006,
+ "loss": 5.01638126373291,
+ "step": 465
+ },
+ {
+ "epoch": 6.4753167321974665,
+ "grad_norm": 0.38218435645103455,
+ "learning_rate": 0.0006,
+ "loss": 4.997034072875977,
+ "step": 466
+ },
+ {
+ "epoch": 6.489296636085627,
+ "grad_norm": 0.3576396703720093,
+ "learning_rate": 0.0006,
+ "loss": 5.006804943084717,
+ "step": 467
+ },
+ {
+ "epoch": 6.503276539973788,
+ "grad_norm": 0.3305981755256653,
+ "learning_rate": 0.0006,
+ "loss": 4.994671821594238,
+ "step": 468
+ },
+ {
+ "epoch": 6.517256443861949,
+ "grad_norm": 0.3254900574684143,
+ "learning_rate": 0.0006,
+ "loss": 4.9747490882873535,
+ "step": 469
+ },
+ {
+ "epoch": 6.531236347750109,
+ "grad_norm": 0.2655033469200134,
+ "learning_rate": 0.0006,
+ "loss": 5.002863883972168,
+ "step": 470
+ },
+ {
+ "epoch": 6.54521625163827,
+ "grad_norm": 0.2620532810688019,
+ "learning_rate": 0.0006,
+ "loss": 4.9813337326049805,
+ "step": 471
+ },
+ {
+ "epoch": 6.559196155526431,
+ "grad_norm": 0.22128869593143463,
+ "learning_rate": 0.0006,
+ "loss": 4.978368759155273,
+ "step": 472
+ },
+ {
+ "epoch": 6.573176059414592,
+ "grad_norm": 0.22638699412345886,
+ "learning_rate": 0.0006,
+ "loss": 4.944509029388428,
+ "step": 473
+ },
+ {
+ "epoch": 6.587155963302752,
+ "grad_norm": 0.20720207691192627,
+ "learning_rate": 0.0006,
+ "loss": 4.98404598236084,
+ "step": 474
+ },
+ {
+ "epoch": 6.601135867190913,
+ "grad_norm": 0.21577289700508118,
+ "learning_rate": 0.0006,
+ "loss": 4.958878040313721,
+ "step": 475
+ },
+ {
+ "epoch": 6.615115771079074,
+ "grad_norm": 0.22453972697257996,
+ "learning_rate": 0.0006,
+ "loss": 4.935467720031738,
+ "step": 476
+ },
+ {
+ "epoch": 6.6290956749672345,
+ "grad_norm": 0.20757712423801422,
+ "learning_rate": 0.0006,
+ "loss": 4.943334579467773,
+ "step": 477
+ },
+ {
+ "epoch": 6.643075578855395,
+ "grad_norm": 0.22808043658733368,
+ "learning_rate": 0.0006,
+ "loss": 4.936544418334961,
+ "step": 478
+ },
+ {
+ "epoch": 6.657055482743556,
+ "grad_norm": 0.2193756401538849,
+ "learning_rate": 0.0006,
+ "loss": 4.938162326812744,
+ "step": 479
+ },
+ {
+ "epoch": 6.671035386631717,
+ "grad_norm": 0.19677500426769257,
+ "learning_rate": 0.0006,
+ "loss": 4.9026713371276855,
+ "step": 480
+ },
+ {
+ "epoch": 6.685015290519877,
+ "grad_norm": 0.17271658778190613,
+ "learning_rate": 0.0006,
+ "loss": 4.912519454956055,
+ "step": 481
+ },
+ {
+ "epoch": 6.698995194408038,
+ "grad_norm": 0.17551499605178833,
+ "learning_rate": 0.0006,
+ "loss": 4.929941177368164,
+ "step": 482
+ },
+ {
+ "epoch": 6.712975098296199,
+ "grad_norm": 0.1582687348127365,
+ "learning_rate": 0.0006,
+ "loss": 4.908967971801758,
+ "step": 483
+ },
+ {
+ "epoch": 6.72695500218436,
+ "grad_norm": 0.1593410074710846,
+ "learning_rate": 0.0006,
+ "loss": 4.901554107666016,
+ "step": 484
+ },
+ {
+ "epoch": 6.740934906072521,
+ "grad_norm": 0.16746895015239716,
+ "learning_rate": 0.0006,
+ "loss": 4.917915344238281,
+ "step": 485
+ },
+ {
+ "epoch": 6.754914809960681,
+ "grad_norm": 0.17066062986850739,
+ "learning_rate": 0.0006,
+ "loss": 4.912853240966797,
+ "step": 486
+ },
+ {
+ "epoch": 6.768894713848843,
+ "grad_norm": 0.16727769374847412,
+ "learning_rate": 0.0006,
+ "loss": 4.895434856414795,
+ "step": 487
+ },
+ {
+ "epoch": 6.782874617737003,
+ "grad_norm": 0.1784558743238449,
+ "learning_rate": 0.0006,
+ "loss": 4.8805341720581055,
+ "step": 488
+ },
+ {
+ "epoch": 6.796854521625164,
+ "grad_norm": 0.176686093211174,
+ "learning_rate": 0.0006,
+ "loss": 4.855296611785889,
+ "step": 489
+ },
+ {
+ "epoch": 6.810834425513325,
+ "grad_norm": 0.21577849984169006,
+ "learning_rate": 0.0006,
+ "loss": 4.885506629943848,
+ "step": 490
+ },
+ {
+ "epoch": 6.824814329401486,
+ "grad_norm": 0.27615776658058167,
+ "learning_rate": 0.0006,
+ "loss": 4.913756847381592,
+ "step": 491
+ },
+ {
+ "epoch": 6.838794233289646,
+ "grad_norm": 0.3653675615787506,
+ "learning_rate": 0.0006,
+ "loss": 4.880918979644775,
+ "step": 492
+ },
+ {
+ "epoch": 6.852774137177807,
+ "grad_norm": 0.41473883390426636,
+ "learning_rate": 0.0006,
+ "loss": 4.894164562225342,
+ "step": 493
+ },
+ {
+ "epoch": 6.866754041065968,
+ "grad_norm": 0.45850715041160583,
+ "learning_rate": 0.0006,
+ "loss": 4.907922744750977,
+ "step": 494
+ },
+ {
+ "epoch": 6.8807339449541285,
+ "grad_norm": 0.4675290882587433,
+ "learning_rate": 0.0006,
+ "loss": 4.883112907409668,
+ "step": 495
+ },
+ {
+ "epoch": 6.894713848842289,
+ "grad_norm": 0.45795994997024536,
+ "learning_rate": 0.0006,
+ "loss": 4.897843360900879,
+ "step": 496
+ },
+ {
+ "epoch": 6.90869375273045,
+ "grad_norm": 0.46130508184432983,
+ "learning_rate": 0.0006,
+ "loss": 4.890612602233887,
+ "step": 497
+ },
+ {
+ "epoch": 6.922673656618611,
+ "grad_norm": 0.44783803820610046,
+ "learning_rate": 0.0006,
+ "loss": 4.880192756652832,
+ "step": 498
+ },
+ {
+ "epoch": 6.936653560506771,
+ "grad_norm": 0.35361284017562866,
+ "learning_rate": 0.0006,
+ "loss": 4.840778350830078,
+ "step": 499
+ },
+ {
+ "epoch": 6.950633464394932,
+ "grad_norm": 0.34027689695358276,
+ "learning_rate": 0.0006,
+ "loss": 4.871222496032715,
+ "step": 500
+ },
+ {
+ "epoch": 6.964613368283093,
+ "grad_norm": 0.30228909850120544,
+ "learning_rate": 0.0006,
+ "loss": 4.868077278137207,
+ "step": 501
+ },
+ {
+ "epoch": 6.978593272171254,
+ "grad_norm": 0.27706998586654663,
+ "learning_rate": 0.0006,
+ "loss": 4.895936012268066,
+ "step": 502
+ },
+ {
+ "epoch": 6.992573176059414,
+ "grad_norm": 0.3516870439052582,
+ "learning_rate": 0.0006,
+ "loss": 4.824636459350586,
+ "step": 503
+ },
+ {
+ "epoch": 7.0,
+ "grad_norm": 0.36831387877464294,
+ "learning_rate": 0.0006,
+ "loss": 4.874397277832031,
+ "step": 504
+ },
+ {
+ "epoch": 7.0,
+ "eval_loss": 5.176281452178955,
+ "eval_runtime": 44.2386,
+ "eval_samples_per_second": 55.201,
+ "eval_steps_per_second": 3.459,
+ "step": 504
+ },
+ {
+ "epoch": 7.013979903888161,
+ "grad_norm": 0.4265240430831909,
+ "learning_rate": 0.0006,
+ "loss": 4.814333438873291,
+ "step": 505
+ },
+ {
+ "epoch": 7.0279598077763215,
+ "grad_norm": 0.5126975774765015,
+ "learning_rate": 0.0006,
+ "loss": 4.852343559265137,
+ "step": 506
+ },
+ {
+ "epoch": 7.041939711664482,
+ "grad_norm": 0.43080806732177734,
+ "learning_rate": 0.0006,
+ "loss": 4.843439102172852,
+ "step": 507
+ },
+ {
+ "epoch": 7.055919615552643,
+ "grad_norm": 0.43170198798179626,
+ "learning_rate": 0.0006,
+ "loss": 4.845984935760498,
+ "step": 508
+ },
+ {
+ "epoch": 7.069899519440804,
+ "grad_norm": 0.5640552043914795,
+ "learning_rate": 0.0006,
+ "loss": 4.840991973876953,
+ "step": 509
+ },
+ {
+ "epoch": 7.083879423328964,
+ "grad_norm": 0.540381133556366,
+ "learning_rate": 0.0006,
+ "loss": 4.801316738128662,
+ "step": 510
+ },
+ {
+ "epoch": 7.097859327217125,
+ "grad_norm": 0.5412097573280334,
+ "learning_rate": 0.0006,
+ "loss": 4.886598587036133,
+ "step": 511
+ },
+ {
+ "epoch": 7.111839231105286,
+ "grad_norm": 0.630648136138916,
+ "learning_rate": 0.0006,
+ "loss": 4.849774360656738,
+ "step": 512
+ },
+ {
+ "epoch": 7.1258191349934465,
+ "grad_norm": 0.569952130317688,
+ "learning_rate": 0.0006,
+ "loss": 4.870607376098633,
+ "step": 513
+ },
+ {
+ "epoch": 7.139799038881607,
+ "grad_norm": 0.42051541805267334,
+ "learning_rate": 0.0006,
+ "loss": 4.83833122253418,
+ "step": 514
+ },
+ {
+ "epoch": 7.153778942769769,
+ "grad_norm": 0.3930990397930145,
+ "learning_rate": 0.0006,
+ "loss": 4.853984355926514,
+ "step": 515
+ },
+ {
+ "epoch": 7.16775884665793,
+ "grad_norm": 0.512886106967926,
+ "learning_rate": 0.0006,
+ "loss": 4.815458297729492,
+ "step": 516
+ },
+ {
+ "epoch": 7.18173875054609,
+ "grad_norm": 0.42580172419548035,
+ "learning_rate": 0.0006,
+ "loss": 4.825312614440918,
+ "step": 517
+ },
+ {
+ "epoch": 7.195718654434251,
+ "grad_norm": 0.31628182530403137,
+ "learning_rate": 0.0006,
+ "loss": 4.806377410888672,
+ "step": 518
+ },
+ {
+ "epoch": 7.209698558322412,
+ "grad_norm": 0.3109956681728363,
+ "learning_rate": 0.0006,
+ "loss": 4.819339752197266,
+ "step": 519
+ },
+ {
+ "epoch": 7.2236784622105725,
+ "grad_norm": 0.2740071415901184,
+ "learning_rate": 0.0006,
+ "loss": 4.81319522857666,
+ "step": 520
+ },
+ {
+ "epoch": 7.237658366098733,
+ "grad_norm": 0.26441165804862976,
+ "learning_rate": 0.0006,
+ "loss": 4.8107380867004395,
+ "step": 521
+ },
+ {
+ "epoch": 7.251638269986894,
+ "grad_norm": 0.2496110051870346,
+ "learning_rate": 0.0006,
+ "loss": 4.785193920135498,
+ "step": 522
+ },
+ {
+ "epoch": 7.265618173875055,
+ "grad_norm": 0.2565560042858124,
+ "learning_rate": 0.0006,
+ "loss": 4.802750587463379,
+ "step": 523
+ },
+ {
+ "epoch": 7.279598077763215,
+ "grad_norm": 0.2126980572938919,
+ "learning_rate": 0.0006,
+ "loss": 4.763580322265625,
+ "step": 524
+ },
+ {
+ "epoch": 7.293577981651376,
+ "grad_norm": 0.2169921100139618,
+ "learning_rate": 0.0006,
+ "loss": 4.756124973297119,
+ "step": 525
+ },
+ {
+ "epoch": 7.307557885539537,
+ "grad_norm": 0.2372167706489563,
+ "learning_rate": 0.0006,
+ "loss": 4.786888599395752,
+ "step": 526
+ },
+ {
+ "epoch": 7.321537789427698,
+ "grad_norm": 0.2124386429786682,
+ "learning_rate": 0.0006,
+ "loss": 4.777996063232422,
+ "step": 527
+ },
+ {
+ "epoch": 7.335517693315858,
+ "grad_norm": 0.18585442006587982,
+ "learning_rate": 0.0006,
+ "loss": 4.770537853240967,
+ "step": 528
+ },
+ {
+ "epoch": 7.349497597204019,
+ "grad_norm": 0.20515340566635132,
+ "learning_rate": 0.0006,
+ "loss": 4.769230842590332,
+ "step": 529
+ },
+ {
+ "epoch": 7.36347750109218,
+ "grad_norm": 0.19906704127788544,
+ "learning_rate": 0.0006,
+ "loss": 4.752581596374512,
+ "step": 530
+ },
+ {
+ "epoch": 7.3774574049803405,
+ "grad_norm": 0.2030428946018219,
+ "learning_rate": 0.0006,
+ "loss": 4.7353715896606445,
+ "step": 531
+ },
+ {
+ "epoch": 7.391437308868501,
+ "grad_norm": 0.17820630967617035,
+ "learning_rate": 0.0006,
+ "loss": 4.742705345153809,
+ "step": 532
+ },
+ {
+ "epoch": 7.405417212756662,
+ "grad_norm": 0.17642682790756226,
+ "learning_rate": 0.0006,
+ "loss": 4.752669334411621,
+ "step": 533
+ },
+ {
+ "epoch": 7.419397116644823,
+ "grad_norm": 0.18088409304618835,
+ "learning_rate": 0.0006,
+ "loss": 4.734611511230469,
+ "step": 534
+ },
+ {
+ "epoch": 7.433377020532983,
+ "grad_norm": 0.20897020399570465,
+ "learning_rate": 0.0006,
+ "loss": 4.756442070007324,
+ "step": 535
+ },
+ {
+ "epoch": 7.447356924421145,
+ "grad_norm": 0.23166777193546295,
+ "learning_rate": 0.0006,
+ "loss": 4.712922096252441,
+ "step": 536
+ },
+ {
+ "epoch": 7.461336828309306,
+ "grad_norm": 0.2205347716808319,
+ "learning_rate": 0.0006,
+ "loss": 4.75001335144043,
+ "step": 537
+ },
+ {
+ "epoch": 7.4753167321974665,
+ "grad_norm": 0.23868022859096527,
+ "learning_rate": 0.0006,
+ "loss": 4.726134300231934,
+ "step": 538
+ },
+ {
+ "epoch": 7.489296636085627,
+ "grad_norm": 0.2861441373825073,
+ "learning_rate": 0.0006,
+ "loss": 4.754112243652344,
+ "step": 539
+ },
+ {
+ "epoch": 7.503276539973788,
+ "grad_norm": 0.28980305790901184,
+ "learning_rate": 0.0006,
+ "loss": 4.716021537780762,
+ "step": 540
+ },
+ {
+ "epoch": 7.517256443861949,
+ "grad_norm": 0.2784835696220398,
+ "learning_rate": 0.0006,
+ "loss": 4.713929176330566,
+ "step": 541
+ },
+ {
+ "epoch": 7.531236347750109,
+ "grad_norm": 0.2962653934955597,
+ "learning_rate": 0.0006,
+ "loss": 4.711845397949219,
+ "step": 542
+ },
+ {
+ "epoch": 7.54521625163827,
+ "grad_norm": 0.3333161175251007,
+ "learning_rate": 0.0006,
+ "loss": 4.709834575653076,
+ "step": 543
+ },
+ {
+ "epoch": 7.559196155526431,
+ "grad_norm": 0.35304850339889526,
+ "learning_rate": 0.0006,
+ "loss": 4.732914924621582,
+ "step": 544
+ },
+ {
+ "epoch": 7.573176059414592,
+ "grad_norm": 0.4165869355201721,
+ "learning_rate": 0.0006,
+ "loss": 4.716190338134766,
+ "step": 545
+ },
+ {
+ "epoch": 7.587155963302752,
+ "grad_norm": 0.4878059923648834,
+ "learning_rate": 0.0006,
+ "loss": 4.723773002624512,
+ "step": 546
+ },
+ {
+ "epoch": 7.601135867190913,
+ "grad_norm": 0.36643707752227783,
+ "learning_rate": 0.0006,
+ "loss": 4.721458911895752,
+ "step": 547
+ },
+ {
+ "epoch": 7.615115771079074,
+ "grad_norm": 0.4046908915042877,
+ "learning_rate": 0.0006,
+ "loss": 4.715397834777832,
+ "step": 548
+ },
+ {
+ "epoch": 7.6290956749672345,
+ "grad_norm": 0.44426342844963074,
+ "learning_rate": 0.0006,
+ "loss": 4.737357139587402,
+ "step": 549
+ },
+ {
+ "epoch": 7.643075578855395,
+ "grad_norm": 0.4181079864501953,
+ "learning_rate": 0.0006,
+ "loss": 4.731383800506592,
+ "step": 550
+ },
+ {
+ "epoch": 7.657055482743556,
+ "grad_norm": 0.3486088216304779,
+ "learning_rate": 0.0006,
+ "loss": 4.728029727935791,
+ "step": 551
+ },
+ {
+ "epoch": 7.671035386631717,
+ "grad_norm": 0.37150970101356506,
+ "learning_rate": 0.0006,
+ "loss": 4.7083210945129395,
+ "step": 552
+ },
+ {
+ "epoch": 7.685015290519877,
+ "grad_norm": 0.43324410915374756,
+ "learning_rate": 0.0006,
+ "loss": 4.728720664978027,
+ "step": 553
+ },
+ {
+ "epoch": 7.698995194408038,
+ "grad_norm": 0.5026620626449585,
+ "learning_rate": 0.0006,
+ "loss": 4.698156356811523,
+ "step": 554
+ },
+ {
+ "epoch": 7.712975098296199,
+ "grad_norm": 0.4873499274253845,
+ "learning_rate": 0.0006,
+ "loss": 4.7169952392578125,
+ "step": 555
+ },
+ {
+ "epoch": 7.72695500218436,
+ "grad_norm": 0.4285493791103363,
+ "learning_rate": 0.0006,
+ "loss": 4.6877241134643555,
+ "step": 556
+ },
+ {
+ "epoch": 7.740934906072521,
+ "grad_norm": 0.5179854035377502,
+ "learning_rate": 0.0006,
+ "loss": 4.704267501831055,
+ "step": 557
+ },
+ {
+ "epoch": 7.754914809960681,
+ "grad_norm": 0.4642147421836853,
+ "learning_rate": 0.0006,
+ "loss": 4.695004463195801,
+ "step": 558
+ },
+ {
+ "epoch": 7.768894713848843,
+ "grad_norm": 0.47149503231048584,
+ "learning_rate": 0.0006,
+ "loss": 4.694338798522949,
+ "step": 559
+ },
+ {
+ "epoch": 7.782874617737003,
+ "grad_norm": 0.5422149300575256,
+ "learning_rate": 0.0006,
+ "loss": 4.749478340148926,
+ "step": 560
+ },
+ {
+ "epoch": 7.796854521625164,
+ "grad_norm": 0.4360728859901428,
+ "learning_rate": 0.0006,
+ "loss": 4.685191631317139,
+ "step": 561
+ },
+ {
+ "epoch": 7.810834425513325,
+ "grad_norm": 0.4243801534175873,
+ "learning_rate": 0.0006,
+ "loss": 4.69228458404541,
+ "step": 562
+ },
+ {
+ "epoch": 7.824814329401486,
+ "grad_norm": 0.40380290150642395,
+ "learning_rate": 0.0006,
+ "loss": 4.690923690795898,
+ "step": 563
+ },
+ {
+ "epoch": 7.838794233289646,
+ "grad_norm": 0.4352976381778717,
+ "learning_rate": 0.0006,
+ "loss": 4.720489978790283,
+ "step": 564
+ },
+ {
+ "epoch": 7.852774137177807,
+ "grad_norm": 0.44634920358657837,
+ "learning_rate": 0.0006,
+ "loss": 4.683789253234863,
+ "step": 565
+ },
+ {
+ "epoch": 7.866754041065968,
+ "grad_norm": 0.3818186819553375,
+ "learning_rate": 0.0006,
+ "loss": 4.696887016296387,
+ "step": 566
+ },
+ {
+ "epoch": 7.8807339449541285,
+ "grad_norm": 0.35270464420318604,
+ "learning_rate": 0.0006,
+ "loss": 4.715676307678223,
+ "step": 567
+ },
+ {
+ "epoch": 7.894713848842289,
+ "grad_norm": 0.249756321310997,
+ "learning_rate": 0.0006,
+ "loss": 4.672721862792969,
+ "step": 568
+ },
+ {
+ "epoch": 7.90869375273045,
+ "grad_norm": 0.25097888708114624,
+ "learning_rate": 0.0006,
+ "loss": 4.663518905639648,
+ "step": 569
+ },
+ {
+ "epoch": 7.922673656618611,
+ "grad_norm": 0.26563209295272827,
+ "learning_rate": 0.0006,
+ "loss": 4.675405025482178,
+ "step": 570
+ },
+ {
+ "epoch": 7.936653560506771,
+ "grad_norm": 0.26451292634010315,
+ "learning_rate": 0.0006,
+ "loss": 4.651235103607178,
+ "step": 571
+ },
+ {
+ "epoch": 7.950633464394932,
+ "grad_norm": 0.24185842275619507,
+ "learning_rate": 0.0006,
+ "loss": 4.671639919281006,
+ "step": 572
+ },
+ {
+ "epoch": 7.964613368283093,
+ "grad_norm": 0.21506108343601227,
+ "learning_rate": 0.0006,
+ "loss": 4.665352821350098,
+ "step": 573
+ },
+ {
+ "epoch": 7.978593272171254,
+ "grad_norm": 0.24365705251693726,
+ "learning_rate": 0.0006,
+ "loss": 4.663162708282471,
+ "step": 574
+ },
+ {
+ "epoch": 7.992573176059414,
+ "grad_norm": 0.24251042306423187,
+ "learning_rate": 0.0006,
+ "loss": 4.666633605957031,
+ "step": 575
+ },
+ {
+ "epoch": 8.0,
+ "grad_norm": 0.24187657237052917,
+ "learning_rate": 0.0006,
+ "loss": 4.63957405090332,
+ "step": 576
+ },
+ {
+ "epoch": 8.0,
+ "eval_loss": 4.923156261444092,
+ "eval_runtime": 44.1587,
+ "eval_samples_per_second": 55.301,
+ "eval_steps_per_second": 3.465,
+ "step": 576
+ },
+ {
+ "epoch": 8.013979903888162,
+ "grad_norm": 0.21323645114898682,
+ "learning_rate": 0.0006,
+ "loss": 4.636347770690918,
+ "step": 577
+ },
+ {
+ "epoch": 8.027959807776321,
+ "grad_norm": 0.2325759083032608,
+ "learning_rate": 0.0006,
+ "loss": 4.60684871673584,
+ "step": 578
+ },
+ {
+ "epoch": 8.041939711664483,
+ "grad_norm": 0.26741257309913635,
+ "learning_rate": 0.0006,
+ "loss": 4.647780418395996,
+ "step": 579
+ },
+ {
+ "epoch": 8.055919615552643,
+ "grad_norm": 0.285720556974411,
+ "learning_rate": 0.0006,
+ "loss": 4.629637718200684,
+ "step": 580
+ },
+ {
+ "epoch": 8.069899519440805,
+ "grad_norm": 0.2453618347644806,
+ "learning_rate": 0.0006,
+ "loss": 4.62420654296875,
+ "step": 581
+ },
+ {
+ "epoch": 8.083879423328964,
+ "grad_norm": 0.19662636518478394,
+ "learning_rate": 0.0006,
+ "loss": 4.593767166137695,
+ "step": 582
+ },
+ {
+ "epoch": 8.097859327217126,
+ "grad_norm": 0.22731931507587433,
+ "learning_rate": 0.0006,
+ "loss": 4.627089023590088,
+ "step": 583
+ },
+ {
+ "epoch": 8.111839231105286,
+ "grad_norm": 0.24452590942382812,
+ "learning_rate": 0.0006,
+ "loss": 4.613677024841309,
+ "step": 584
+ },
+ {
+ "epoch": 8.125819134993447,
+ "grad_norm": 0.2952791154384613,
+ "learning_rate": 0.0006,
+ "loss": 4.604985237121582,
+ "step": 585
+ },
+ {
+ "epoch": 8.139799038881607,
+ "grad_norm": 0.3184696137905121,
+ "learning_rate": 0.0006,
+ "loss": 4.589205741882324,
+ "step": 586
+ },
+ {
+ "epoch": 8.153778942769769,
+ "grad_norm": 0.2948093116283417,
+ "learning_rate": 0.0006,
+ "loss": 4.605442047119141,
+ "step": 587
+ },
+ {
+ "epoch": 8.167758846657929,
+ "grad_norm": 0.2450508326292038,
+ "learning_rate": 0.0006,
+ "loss": 4.615349292755127,
+ "step": 588
+ },
+ {
+ "epoch": 8.18173875054609,
+ "grad_norm": 0.25664836168289185,
+ "learning_rate": 0.0006,
+ "loss": 4.592251777648926,
+ "step": 589
+ },
+ {
+ "epoch": 8.19571865443425,
+ "grad_norm": 0.24479512870311737,
+ "learning_rate": 0.0006,
+ "loss": 4.6145920753479,
+ "step": 590
+ },
+ {
+ "epoch": 8.209698558322412,
+ "grad_norm": 0.24395205080509186,
+ "learning_rate": 0.0006,
+ "loss": 4.600954055786133,
+ "step": 591
+ },
+ {
+ "epoch": 8.223678462210572,
+ "grad_norm": 0.21804189682006836,
+ "learning_rate": 0.0006,
+ "loss": 4.607785224914551,
+ "step": 592
+ },
+ {
+ "epoch": 8.237658366098733,
+ "grad_norm": 0.20951785147190094,
+ "learning_rate": 0.0006,
+ "loss": 4.58140754699707,
+ "step": 593
+ },
+ {
+ "epoch": 8.251638269986893,
+ "grad_norm": 0.20415149629116058,
+ "learning_rate": 0.0006,
+ "loss": 4.593405723571777,
+ "step": 594
+ },
+ {
+ "epoch": 8.265618173875055,
+ "grad_norm": 0.19210249185562134,
+ "learning_rate": 0.0006,
+ "loss": 4.603294372558594,
+ "step": 595
+ },
+ {
+ "epoch": 8.279598077763215,
+ "grad_norm": 0.20719751715660095,
+ "learning_rate": 0.0006,
+ "loss": 4.55255651473999,
+ "step": 596
+ },
+ {
+ "epoch": 8.293577981651376,
+ "grad_norm": 0.20101022720336914,
+ "learning_rate": 0.0006,
+ "loss": 4.5928192138671875,
+ "step": 597
+ },
+ {
+ "epoch": 8.307557885539538,
+ "grad_norm": 0.19254222512245178,
+ "learning_rate": 0.0006,
+ "loss": 4.590397834777832,
+ "step": 598
+ },
+ {
+ "epoch": 8.321537789427698,
+ "grad_norm": 0.23234105110168457,
+ "learning_rate": 0.0006,
+ "loss": 4.5987677574157715,
+ "step": 599
+ },
+ {
+ "epoch": 8.33551769331586,
+ "grad_norm": 0.2537451982498169,
+ "learning_rate": 0.0006,
+ "loss": 4.543115615844727,
+ "step": 600
+ },
+ {
+ "epoch": 8.349497597204019,
+ "grad_norm": 0.29171040654182434,
+ "learning_rate": 0.0006,
+ "loss": 4.597387313842773,
+ "step": 601
+ },
+ {
+ "epoch": 8.36347750109218,
+ "grad_norm": 0.3035930097103119,
+ "learning_rate": 0.0006,
+ "loss": 4.566247463226318,
+ "step": 602
+ },
+ {
+ "epoch": 8.37745740498034,
+ "grad_norm": 0.2826756238937378,
+ "learning_rate": 0.0006,
+ "loss": 4.57047176361084,
+ "step": 603
+ },
+ {
+ "epoch": 8.391437308868502,
+ "grad_norm": 0.2959657609462738,
+ "learning_rate": 0.0006,
+ "loss": 4.582820892333984,
+ "step": 604
+ },
+ {
+ "epoch": 8.405417212756662,
+ "grad_norm": 0.3180356025695801,
+ "learning_rate": 0.0006,
+ "loss": 4.5573272705078125,
+ "step": 605
+ },
+ {
+ "epoch": 8.419397116644824,
+ "grad_norm": 0.3617221713066101,
+ "learning_rate": 0.0006,
+ "loss": 4.593079090118408,
+ "step": 606
+ },
+ {
+ "epoch": 8.433377020532983,
+ "grad_norm": 0.35198062658309937,
+ "learning_rate": 0.0006,
+ "loss": 4.615298271179199,
+ "step": 607
+ },
+ {
+ "epoch": 8.447356924421145,
+ "grad_norm": 0.3944903314113617,
+ "learning_rate": 0.0006,
+ "loss": 4.561809539794922,
+ "step": 608
+ },
+ {
+ "epoch": 8.461336828309305,
+ "grad_norm": 0.4525868594646454,
+ "learning_rate": 0.0006,
+ "loss": 4.613105773925781,
+ "step": 609
+ },
+ {
+ "epoch": 8.475316732197467,
+ "grad_norm": 0.4915139079093933,
+ "learning_rate": 0.0006,
+ "loss": 4.566202163696289,
+ "step": 610
+ },
+ {
+ "epoch": 8.489296636085626,
+ "grad_norm": 0.49231988191604614,
+ "learning_rate": 0.0006,
+ "loss": 4.556222915649414,
+ "step": 611
+ },
+ {
+ "epoch": 8.503276539973788,
+ "grad_norm": 0.43036946654319763,
+ "learning_rate": 0.0006,
+ "loss": 4.55517578125,
+ "step": 612
+ },
+ {
+ "epoch": 8.517256443861948,
+ "grad_norm": 0.42405328154563904,
+ "learning_rate": 0.0006,
+ "loss": 4.574039936065674,
+ "step": 613
+ },
+ {
+ "epoch": 8.53123634775011,
+ "grad_norm": 0.3955961763858795,
+ "learning_rate": 0.0006,
+ "loss": 4.6082611083984375,
+ "step": 614
+ },
+ {
+ "epoch": 8.54521625163827,
+ "grad_norm": 0.4377101957798004,
+ "learning_rate": 0.0006,
+ "loss": 4.555740833282471,
+ "step": 615
+ },
+ {
+ "epoch": 8.55919615552643,
+ "grad_norm": 0.4601984918117523,
+ "learning_rate": 0.0006,
+ "loss": 4.553995132446289,
+ "step": 616
+ },
+ {
+ "epoch": 8.57317605941459,
+ "grad_norm": 0.42025700211524963,
+ "learning_rate": 0.0006,
+ "loss": 4.567340850830078,
+ "step": 617
+ },
+ {
+ "epoch": 8.587155963302752,
+ "grad_norm": 0.35569432377815247,
+ "learning_rate": 0.0006,
+ "loss": 4.570140361785889,
+ "step": 618
+ },
+ {
+ "epoch": 8.601135867190912,
+ "grad_norm": 0.37940406799316406,
+ "learning_rate": 0.0006,
+ "loss": 4.581291198730469,
+ "step": 619
+ },
+ {
+ "epoch": 8.615115771079074,
+ "grad_norm": 0.3658490777015686,
+ "learning_rate": 0.0006,
+ "loss": 4.55476188659668,
+ "step": 620
+ },
+ {
+ "epoch": 8.629095674967235,
+ "grad_norm": 0.2908247113227844,
+ "learning_rate": 0.0006,
+ "loss": 4.564087867736816,
+ "step": 621
+ },
+ {
+ "epoch": 8.643075578855395,
+ "grad_norm": 0.29961925745010376,
+ "learning_rate": 0.0006,
+ "loss": 4.556543350219727,
+ "step": 622
+ },
+ {
+ "epoch": 8.657055482743557,
+ "grad_norm": 0.3144846558570862,
+ "learning_rate": 0.0006,
+ "loss": 4.553670883178711,
+ "step": 623
+ },
+ {
+ "epoch": 8.671035386631717,
+ "grad_norm": 0.2845900356769562,
+ "learning_rate": 0.0006,
+ "loss": 4.567296981811523,
+ "step": 624
+ },
+ {
+ "epoch": 8.685015290519878,
+ "grad_norm": 0.253591388463974,
+ "learning_rate": 0.0006,
+ "loss": 4.554507255554199,
+ "step": 625
+ },
+ {
+ "epoch": 8.698995194408038,
+ "grad_norm": 0.2563088536262512,
+ "learning_rate": 0.0006,
+ "loss": 4.542218208312988,
+ "step": 626
+ },
+ {
+ "epoch": 8.7129750982962,
+ "grad_norm": 0.26058217883110046,
+ "learning_rate": 0.0006,
+ "loss": 4.535512447357178,
+ "step": 627
+ },
+ {
+ "epoch": 8.72695500218436,
+ "grad_norm": 0.20749829709529877,
+ "learning_rate": 0.0006,
+ "loss": 4.516959190368652,
+ "step": 628
+ },
+ {
+ "epoch": 8.740934906072521,
+ "grad_norm": 0.2034810334444046,
+ "learning_rate": 0.0006,
+ "loss": 4.55794095993042,
+ "step": 629
+ },
+ {
+ "epoch": 8.754914809960681,
+ "grad_norm": 0.18418121337890625,
+ "learning_rate": 0.0006,
+ "loss": 4.5421247482299805,
+ "step": 630
+ },
+ {
+ "epoch": 8.768894713848843,
+ "grad_norm": 0.20551933348178864,
+ "learning_rate": 0.0006,
+ "loss": 4.50805139541626,
+ "step": 631
+ },
+ {
+ "epoch": 8.782874617737003,
+ "grad_norm": 0.21615999937057495,
+ "learning_rate": 0.0006,
+ "loss": 4.520708084106445,
+ "step": 632
+ },
+ {
+ "epoch": 8.796854521625164,
+ "grad_norm": 0.24864810705184937,
+ "learning_rate": 0.0006,
+ "loss": 4.509330749511719,
+ "step": 633
+ },
+ {
+ "epoch": 8.810834425513324,
+ "grad_norm": 0.2573665380477905,
+ "learning_rate": 0.0006,
+ "loss": 4.531505584716797,
+ "step": 634
+ },
+ {
+ "epoch": 8.824814329401486,
+ "grad_norm": 0.22452878952026367,
+ "learning_rate": 0.0006,
+ "loss": 4.529216289520264,
+ "step": 635
+ },
+ {
+ "epoch": 8.838794233289645,
+ "grad_norm": 0.19727355241775513,
+ "learning_rate": 0.0006,
+ "loss": 4.519906520843506,
+ "step": 636
+ },
+ {
+ "epoch": 8.852774137177807,
+ "grad_norm": 0.19937913119792938,
+ "learning_rate": 0.0006,
+ "loss": 4.536892414093018,
+ "step": 637
+ },
+ {
+ "epoch": 8.866754041065967,
+ "grad_norm": 0.2070389986038208,
+ "learning_rate": 0.0006,
+ "loss": 4.51191520690918,
+ "step": 638
+ },
+ {
+ "epoch": 8.880733944954128,
+ "grad_norm": 0.2293873429298401,
+ "learning_rate": 0.0006,
+ "loss": 4.505377769470215,
+ "step": 639
+ },
+ {
+ "epoch": 8.89471384884229,
+ "grad_norm": 0.21285250782966614,
+ "learning_rate": 0.0006,
+ "loss": 4.5138959884643555,
+ "step": 640
+ },
+ {
+ "epoch": 8.90869375273045,
+ "grad_norm": 0.19487562775611877,
+ "learning_rate": 0.0006,
+ "loss": 4.506108283996582,
+ "step": 641
+ },
+ {
+ "epoch": 8.922673656618612,
+ "grad_norm": 0.21986965835094452,
+ "learning_rate": 0.0006,
+ "loss": 4.506397247314453,
+ "step": 642
+ },
+ {
+ "epoch": 8.936653560506771,
+ "grad_norm": 0.20763885974884033,
+ "learning_rate": 0.0006,
+ "loss": 4.508007049560547,
+ "step": 643
+ },
+ {
+ "epoch": 8.950633464394933,
+ "grad_norm": 0.22858479619026184,
+ "learning_rate": 0.0006,
+ "loss": 4.520846366882324,
+ "step": 644
+ },
+ {
+ "epoch": 8.964613368283093,
+ "grad_norm": 0.23923712968826294,
+ "learning_rate": 0.0006,
+ "loss": 4.535306930541992,
+ "step": 645
+ },
+ {
+ "epoch": 8.978593272171254,
+ "grad_norm": 0.23717579245567322,
+ "learning_rate": 0.0006,
+ "loss": 4.485929489135742,
+ "step": 646
+ },
+ {
+ "epoch": 8.992573176059414,
+ "grad_norm": 0.24033977091312408,
+ "learning_rate": 0.0006,
+ "loss": 4.508999824523926,
+ "step": 647
+ },
+ {
+ "epoch": 9.0,
+ "grad_norm": 0.22432062029838562,
+ "learning_rate": 0.0006,
+ "loss": 4.473136901855469,
+ "step": 648
+ },
+ {
+ "epoch": 9.0,
+ "eval_loss": 4.735903263092041,
+ "eval_runtime": 44.2163,
+ "eval_samples_per_second": 55.228,
+ "eval_steps_per_second": 3.46,
+ "step": 648
+ },
+ {
+ "epoch": 9.013979903888162,
+ "grad_norm": 0.22491489350795746,
+ "learning_rate": 0.0006,
+ "loss": 4.468614101409912,
+ "step": 649
+ },
+ {
+ "epoch": 9.027959807776321,
+ "grad_norm": 0.255759060382843,
+ "learning_rate": 0.0006,
+ "loss": 4.516196250915527,
+ "step": 650
+ },
+ {
+ "epoch": 9.041939711664483,
+ "grad_norm": 0.2591100335121155,
+ "learning_rate": 0.0006,
+ "loss": 4.478276252746582,
+ "step": 651
+ },
+ {
+ "epoch": 9.055919615552643,
+ "grad_norm": 0.30472296476364136,
+ "learning_rate": 0.0006,
+ "loss": 4.479726791381836,
+ "step": 652
+ },
+ {
+ "epoch": 9.069899519440805,
+ "grad_norm": 0.2840559780597687,
+ "learning_rate": 0.0006,
+ "loss": 4.4437384605407715,
+ "step": 653
+ },
+ {
+ "epoch": 9.083879423328964,
+ "grad_norm": 0.2695577144622803,
+ "learning_rate": 0.0006,
+ "loss": 4.476065635681152,
+ "step": 654
+ },
+ {
+ "epoch": 9.097859327217126,
+ "grad_norm": 0.27912381291389465,
+ "learning_rate": 0.0006,
+ "loss": 4.484747409820557,
+ "step": 655
+ },
+ {
+ "epoch": 9.111839231105286,
+ "grad_norm": 0.3091907501220703,
+ "learning_rate": 0.0006,
+ "loss": 4.449443817138672,
+ "step": 656
+ },
+ {
+ "epoch": 9.125819134993447,
+ "grad_norm": 0.30756646394729614,
+ "learning_rate": 0.0006,
+ "loss": 4.496490001678467,
+ "step": 657
+ },
+ {
+ "epoch": 9.139799038881607,
+ "grad_norm": 0.305698037147522,
+ "learning_rate": 0.0006,
+ "loss": 4.466765880584717,
+ "step": 658
+ },
+ {
+ "epoch": 9.153778942769769,
+ "grad_norm": 0.3031201660633087,
+ "learning_rate": 0.0006,
+ "loss": 4.462430953979492,
+ "step": 659
+ },
+ {
+ "epoch": 9.167758846657929,
+ "grad_norm": 0.32725608348846436,
+ "learning_rate": 0.0006,
+ "loss": 4.479879379272461,
+ "step": 660
+ },
+ {
+ "epoch": 9.18173875054609,
+ "grad_norm": 0.31773585081100464,
+ "learning_rate": 0.0006,
+ "loss": 4.473912239074707,
+ "step": 661
+ },
+ {
+ "epoch": 9.19571865443425,
+ "grad_norm": 0.30025365948677063,
+ "learning_rate": 0.0006,
+ "loss": 4.476703643798828,
+ "step": 662
+ },
+ {
+ "epoch": 9.209698558322412,
+ "grad_norm": 0.3177371025085449,
+ "learning_rate": 0.0006,
+ "loss": 4.439765930175781,
+ "step": 663
+ },
+ {
+ "epoch": 9.223678462210572,
+ "grad_norm": 0.3060745894908905,
+ "learning_rate": 0.0006,
+ "loss": 4.487849235534668,
+ "step": 664
+ },
+ {
+ "epoch": 9.237658366098733,
+ "grad_norm": 0.33287373185157776,
+ "learning_rate": 0.0006,
+ "loss": 4.443496227264404,
+ "step": 665
+ },
+ {
+ "epoch": 9.251638269986893,
+ "grad_norm": 0.3758000433444977,
+ "learning_rate": 0.0006,
+ "loss": 4.478017330169678,
+ "step": 666
+ },
+ {
+ "epoch": 9.265618173875055,
+ "grad_norm": 0.32124510407447815,
+ "learning_rate": 0.0006,
+ "loss": 4.4092206954956055,
+ "step": 667
+ },
+ {
+ "epoch": 9.279598077763215,
+ "grad_norm": 0.2786794602870941,
+ "learning_rate": 0.0006,
+ "loss": 4.432734489440918,
+ "step": 668
+ },
+ {
+ "epoch": 9.293577981651376,
+ "grad_norm": 0.35042962431907654,
+ "learning_rate": 0.0006,
+ "loss": 4.462737083435059,
+ "step": 669
+ },
+ {
+ "epoch": 9.307557885539538,
+ "grad_norm": 0.4080469310283661,
+ "learning_rate": 0.0006,
+ "loss": 4.429462432861328,
+ "step": 670
+ },
+ {
+ "epoch": 9.321537789427698,
+ "grad_norm": 0.465158075094223,
+ "learning_rate": 0.0006,
+ "loss": 4.465776443481445,
+ "step": 671
+ },
+ {
+ "epoch": 9.33551769331586,
+ "grad_norm": 0.44833582639694214,
+ "learning_rate": 0.0006,
+ "loss": 4.454195976257324,
+ "step": 672
+ },
+ {
+ "epoch": 9.349497597204019,
+ "grad_norm": 0.451052188873291,
+ "learning_rate": 0.0006,
+ "loss": 4.456139087677002,
+ "step": 673
+ },
+ {
+ "epoch": 9.36347750109218,
+ "grad_norm": 0.3759656250476837,
+ "learning_rate": 0.0006,
+ "loss": 4.461119651794434,
+ "step": 674
+ },
+ {
+ "epoch": 9.37745740498034,
+ "grad_norm": 0.514560341835022,
+ "learning_rate": 0.0006,
+ "loss": 4.49595832824707,
+ "step": 675
+ },
+ {
+ "epoch": 9.391437308868502,
+ "grad_norm": 0.5650647282600403,
+ "learning_rate": 0.0006,
+ "loss": 4.461362838745117,
+ "step": 676
+ },
+ {
+ "epoch": 9.405417212756662,
+ "grad_norm": 0.4218835234642029,
+ "learning_rate": 0.0006,
+ "loss": 4.469146728515625,
+ "step": 677
+ },
+ {
+ "epoch": 9.419397116644824,
+ "grad_norm": 0.4169512689113617,
+ "learning_rate": 0.0006,
+ "loss": 4.470132827758789,
+ "step": 678
+ },
+ {
+ "epoch": 9.433377020532983,
+ "grad_norm": 0.3772219717502594,
+ "learning_rate": 0.0006,
+ "loss": 4.4742608070373535,
+ "step": 679
+ },
+ {
+ "epoch": 9.447356924421145,
+ "grad_norm": 0.35755908489227295,
+ "learning_rate": 0.0006,
+ "loss": 4.461928367614746,
+ "step": 680
+ },
+ {
+ "epoch": 9.461336828309305,
+ "grad_norm": 0.3141227662563324,
+ "learning_rate": 0.0006,
+ "loss": 4.491983413696289,
+ "step": 681
+ },
+ {
+ "epoch": 9.475316732197467,
+ "grad_norm": 0.282461017370224,
+ "learning_rate": 0.0006,
+ "loss": 4.460200309753418,
+ "step": 682
+ },
+ {
+ "epoch": 9.489296636085626,
+ "grad_norm": 0.27174389362335205,
+ "learning_rate": 0.0006,
+ "loss": 4.416125297546387,
+ "step": 683
+ },
+ {
+ "epoch": 9.503276539973788,
+ "grad_norm": 0.24570637941360474,
+ "learning_rate": 0.0006,
+ "loss": 4.4451093673706055,
+ "step": 684
+ },
+ {
+ "epoch": 9.517256443861948,
+ "grad_norm": 0.2741486132144928,
+ "learning_rate": 0.0006,
+ "loss": 4.453263282775879,
+ "step": 685
+ },
+ {
+ "epoch": 9.53123634775011,
+ "grad_norm": 0.24753718078136444,
+ "learning_rate": 0.0006,
+ "loss": 4.483033180236816,
+ "step": 686
+ },
+ {
+ "epoch": 9.54521625163827,
+ "grad_norm": 0.24288412928581238,
+ "learning_rate": 0.0006,
+ "loss": 4.452961444854736,
+ "step": 687
+ },
+ {
+ "epoch": 9.55919615552643,
+ "grad_norm": 0.21554753184318542,
+ "learning_rate": 0.0006,
+ "loss": 4.476005554199219,
+ "step": 688
+ },
+ {
+ "epoch": 9.57317605941459,
+ "grad_norm": 0.22775942087173462,
+ "learning_rate": 0.0006,
+ "loss": 4.4479193687438965,
+ "step": 689
+ },
+ {
+ "epoch": 9.587155963302752,
+ "grad_norm": 0.2610701024532318,
+ "learning_rate": 0.0006,
+ "loss": 4.474987506866455,
+ "step": 690
+ },
+ {
+ "epoch": 9.601135867190912,
+ "grad_norm": 0.2394690215587616,
+ "learning_rate": 0.0006,
+ "loss": 4.444857597351074,
+ "step": 691
+ },
+ {
+ "epoch": 9.615115771079074,
+ "grad_norm": 0.20868559181690216,
+ "learning_rate": 0.0006,
+ "loss": 4.4220709800720215,
+ "step": 692
+ },
+ {
+ "epoch": 9.629095674967235,
+ "grad_norm": 0.21869882941246033,
+ "learning_rate": 0.0006,
+ "loss": 4.451737403869629,
+ "step": 693
+ },
+ {
+ "epoch": 9.643075578855395,
+ "grad_norm": 0.1802823394536972,
+ "learning_rate": 0.0006,
+ "loss": 4.409085273742676,
+ "step": 694
+ },
+ {
+ "epoch": 9.657055482743557,
+ "grad_norm": 0.17046281695365906,
+ "learning_rate": 0.0006,
+ "loss": 4.424643516540527,
+ "step": 695
+ },
+ {
+ "epoch": 9.671035386631717,
+ "grad_norm": 0.19561922550201416,
+ "learning_rate": 0.0006,
+ "loss": 4.412302017211914,
+ "step": 696
+ },
+ {
+ "epoch": 9.685015290519878,
+ "grad_norm": 0.21928799152374268,
+ "learning_rate": 0.0006,
+ "loss": 4.427582263946533,
+ "step": 697
+ },
+ {
+ "epoch": 9.698995194408038,
+ "grad_norm": 0.244873046875,
+ "learning_rate": 0.0006,
+ "loss": 4.431827545166016,
+ "step": 698
+ },
+ {
+ "epoch": 9.7129750982962,
+ "grad_norm": 0.2799488604068756,
+ "learning_rate": 0.0006,
+ "loss": 4.407991409301758,
+ "step": 699
+ },
+ {
+ "epoch": 9.72695500218436,
+ "grad_norm": 0.2699538767337799,
+ "learning_rate": 0.0006,
+ "loss": 4.412313461303711,
+ "step": 700
+ },
+ {
+ "epoch": 9.740934906072521,
+ "grad_norm": 0.22293835878372192,
+ "learning_rate": 0.0006,
+ "loss": 4.423369884490967,
+ "step": 701
+ },
+ {
+ "epoch": 9.754914809960681,
+ "grad_norm": 0.21554361283779144,
+ "learning_rate": 0.0006,
+ "loss": 4.42026948928833,
+ "step": 702
+ },
+ {
+ "epoch": 9.768894713848843,
+ "grad_norm": 0.22135840356349945,
+ "learning_rate": 0.0006,
+ "loss": 4.400010108947754,
+ "step": 703
+ },
+ {
+ "epoch": 9.782874617737003,
+ "grad_norm": 0.2169952541589737,
+ "learning_rate": 0.0006,
+ "loss": 4.394582271575928,
+ "step": 704
+ },
+ {
+ "epoch": 9.796854521625164,
+ "grad_norm": 0.18913042545318604,
+ "learning_rate": 0.0006,
+ "loss": 4.395880699157715,
+ "step": 705
+ },
+ {
+ "epoch": 9.810834425513324,
+ "grad_norm": 0.191524475812912,
+ "learning_rate": 0.0006,
+ "loss": 4.378962516784668,
+ "step": 706
+ },
+ {
+ "epoch": 9.824814329401486,
+ "grad_norm": 0.20057640969753265,
+ "learning_rate": 0.0006,
+ "loss": 4.431066513061523,
+ "step": 707
+ },
+ {
+ "epoch": 9.838794233289645,
+ "grad_norm": 0.21670377254486084,
+ "learning_rate": 0.0006,
+ "loss": 4.364682197570801,
+ "step": 708
+ },
+ {
+ "epoch": 9.852774137177807,
+ "grad_norm": 0.21653099358081818,
+ "learning_rate": 0.0006,
+ "loss": 4.4050445556640625,
+ "step": 709
+ },
+ {
+ "epoch": 9.866754041065967,
+ "grad_norm": 0.2217673808336258,
+ "learning_rate": 0.0006,
+ "loss": 4.423664093017578,
+ "step": 710
+ },
+ {
+ "epoch": 9.880733944954128,
+ "grad_norm": 0.251078337430954,
+ "learning_rate": 0.0006,
+ "loss": 4.405768394470215,
+ "step": 711
+ },
+ {
+ "epoch": 9.89471384884229,
+ "grad_norm": 0.28962627053260803,
+ "learning_rate": 0.0006,
+ "loss": 4.421207427978516,
+ "step": 712
+ },
+ {
+ "epoch": 9.90869375273045,
+ "grad_norm": 0.3478074371814728,
+ "learning_rate": 0.0006,
+ "loss": 4.414942741394043,
+ "step": 713
+ },
+ {
+ "epoch": 9.922673656618612,
+ "grad_norm": 0.40396368503570557,
+ "learning_rate": 0.0006,
+ "loss": 4.415163993835449,
+ "step": 714
+ },
+ {
+ "epoch": 9.936653560506771,
+ "grad_norm": 0.3689858019351959,
+ "learning_rate": 0.0006,
+ "loss": 4.381345272064209,
+ "step": 715
+ },
+ {
+ "epoch": 9.950633464394933,
+ "grad_norm": 0.344868004322052,
+ "learning_rate": 0.0006,
+ "loss": 4.433088302612305,
+ "step": 716
+ },
+ {
+ "epoch": 9.964613368283093,
+ "grad_norm": 0.37976378202438354,
+ "learning_rate": 0.0006,
+ "loss": 4.431371212005615,
+ "step": 717
+ },
+ {
+ "epoch": 9.978593272171254,
+ "grad_norm": 0.4354130029678345,
+ "learning_rate": 0.0006,
+ "loss": 4.434148788452148,
+ "step": 718
+ },
+ {
+ "epoch": 9.992573176059414,
+ "grad_norm": 0.35859373211860657,
+ "learning_rate": 0.0006,
+ "loss": 4.428055763244629,
+ "step": 719
+ },
+ {
+ "epoch": 10.0,
+ "grad_norm": 0.3365023732185364,
+ "learning_rate": 0.0006,
+ "loss": 4.3888654708862305,
+ "step": 720
+ },
+ {
+ "epoch": 10.0,
+ "eval_loss": 4.638620853424072,
+ "eval_runtime": 44.3054,
+ "eval_samples_per_second": 55.117,
+ "eval_steps_per_second": 3.453,
+ "step": 720
+ },
+ {
+ "epoch": 10.013979903888162,
+ "grad_norm": 0.3267960250377655,
+ "learning_rate": 0.0006,
+ "loss": 4.386068344116211,
+ "step": 721
+ },
+ {
+ "epoch": 10.027959807776321,
+ "grad_norm": 0.33440953493118286,
+ "learning_rate": 0.0006,
+ "loss": 4.397515296936035,
+ "step": 722
+ },
+ {
+ "epoch": 10.041939711664483,
+ "grad_norm": 0.30047518014907837,
+ "learning_rate": 0.0006,
+ "loss": 4.398358345031738,
+ "step": 723
+ },
+ {
+ "epoch": 10.055919615552643,
+ "grad_norm": 0.2912217378616333,
+ "learning_rate": 0.0006,
+ "loss": 4.341166973114014,
+ "step": 724
+ },
+ {
+ "epoch": 10.069899519440805,
+ "grad_norm": 0.3199564218521118,
+ "learning_rate": 0.0006,
+ "loss": 4.388717174530029,
+ "step": 725
+ },
+ {
+ "epoch": 10.083879423328964,
+ "grad_norm": 0.2765582799911499,
+ "learning_rate": 0.0006,
+ "loss": 4.392992973327637,
+ "step": 726
+ },
+ {
+ "epoch": 10.097859327217126,
+ "grad_norm": 0.27138450741767883,
+ "learning_rate": 0.0006,
+ "loss": 4.382307529449463,
+ "step": 727
+ },
+ {
+ "epoch": 10.111839231105286,
+ "grad_norm": 0.29230645298957825,
+ "learning_rate": 0.0006,
+ "loss": 4.357486724853516,
+ "step": 728
+ },
+ {
+ "epoch": 10.125819134993447,
+ "grad_norm": 0.3127598464488983,
+ "learning_rate": 0.0006,
+ "loss": 4.39072322845459,
+ "step": 729
+ },
+ {
+ "epoch": 10.139799038881607,
+ "grad_norm": 0.3230913281440735,
+ "learning_rate": 0.0006,
+ "loss": 4.35037899017334,
+ "step": 730
+ },
+ {
+ "epoch": 10.153778942769769,
+ "grad_norm": 0.333675354719162,
+ "learning_rate": 0.0006,
+ "loss": 4.378030776977539,
+ "step": 731
+ },
+ {
+ "epoch": 10.167758846657929,
+ "grad_norm": 0.30325770378112793,
+ "learning_rate": 0.0006,
+ "loss": 4.372736930847168,
+ "step": 732
+ },
+ {
+ "epoch": 10.18173875054609,
+ "grad_norm": 0.2888163924217224,
+ "learning_rate": 0.0006,
+ "loss": 4.397604942321777,
+ "step": 733
+ },
+ {
+ "epoch": 10.19571865443425,
+ "grad_norm": 0.3378832936286926,
+ "learning_rate": 0.0006,
+ "loss": 4.395705223083496,
+ "step": 734
+ },
+ {
+ "epoch": 10.209698558322412,
+ "grad_norm": 0.30980268120765686,
+ "learning_rate": 0.0006,
+ "loss": 4.3861212730407715,
+ "step": 735
+ },
+ {
+ "epoch": 10.223678462210572,
+ "grad_norm": 0.2965783178806305,
+ "learning_rate": 0.0006,
+ "loss": 4.394898414611816,
+ "step": 736
+ },
+ {
+ "epoch": 10.237658366098733,
+ "grad_norm": 0.2818217873573303,
+ "learning_rate": 0.0006,
+ "loss": 4.36171817779541,
+ "step": 737
+ },
+ {
+ "epoch": 10.251638269986893,
+ "grad_norm": 0.2418123185634613,
+ "learning_rate": 0.0006,
+ "loss": 4.370945930480957,
+ "step": 738
+ },
+ {
+ "epoch": 10.265618173875055,
+ "grad_norm": 0.22372810542583466,
+ "learning_rate": 0.0006,
+ "loss": 4.354825973510742,
+ "step": 739
+ },
+ {
+ "epoch": 10.279598077763215,
+ "grad_norm": 0.238066166639328,
+ "learning_rate": 0.0006,
+ "loss": 4.376237392425537,
+ "step": 740
+ },
+ {
+ "epoch": 10.293577981651376,
+ "grad_norm": 0.22352449595928192,
+ "learning_rate": 0.0006,
+ "loss": 4.317084312438965,
+ "step": 741
+ },
+ {
+ "epoch": 10.307557885539538,
+ "grad_norm": 0.21685205399990082,
+ "learning_rate": 0.0006,
+ "loss": 4.335271835327148,
+ "step": 742
+ },
+ {
+ "epoch": 10.321537789427698,
+ "grad_norm": 0.19584694504737854,
+ "learning_rate": 0.0006,
+ "loss": 4.357963562011719,
+ "step": 743
+ },
+ {
+ "epoch": 10.33551769331586,
+ "grad_norm": 0.20373336970806122,
+ "learning_rate": 0.0006,
+ "loss": 4.401963233947754,
+ "step": 744
+ },
+ {
+ "epoch": 10.349497597204019,
+ "grad_norm": 0.2247837632894516,
+ "learning_rate": 0.0006,
+ "loss": 4.357202529907227,
+ "step": 745
+ },
+ {
+ "epoch": 10.36347750109218,
+ "grad_norm": 0.2416863739490509,
+ "learning_rate": 0.0006,
+ "loss": 4.364739418029785,
+ "step": 746
+ },
+ {
+ "epoch": 10.37745740498034,
+ "grad_norm": 0.22281162440776825,
+ "learning_rate": 0.0006,
+ "loss": 4.351607799530029,
+ "step": 747
+ },
+ {
+ "epoch": 10.391437308868502,
+ "grad_norm": 0.20751096308231354,
+ "learning_rate": 0.0006,
+ "loss": 4.370017051696777,
+ "step": 748
+ },
+ {
+ "epoch": 10.405417212756662,
+ "grad_norm": 0.19178363680839539,
+ "learning_rate": 0.0006,
+ "loss": 4.360328674316406,
+ "step": 749
+ },
+ {
+ "epoch": 10.419397116644824,
+ "grad_norm": 0.20534078776836395,
+ "learning_rate": 0.0006,
+ "loss": 4.3735432624816895,
+ "step": 750
+ },
+ {
+ "epoch": 10.433377020532983,
+ "grad_norm": 0.20533937215805054,
+ "learning_rate": 0.0006,
+ "loss": 4.326902389526367,
+ "step": 751
+ },
+ {
+ "epoch": 10.447356924421145,
+ "grad_norm": 0.22057875990867615,
+ "learning_rate": 0.0006,
+ "loss": 4.360934257507324,
+ "step": 752
+ },
+ {
+ "epoch": 10.461336828309305,
+ "grad_norm": 0.25568997859954834,
+ "learning_rate": 0.0006,
+ "loss": 4.345063209533691,
+ "step": 753
+ },
+ {
+ "epoch": 10.475316732197467,
+ "grad_norm": 0.31471487879753113,
+ "learning_rate": 0.0006,
+ "loss": 4.324014186859131,
+ "step": 754
+ },
+ {
+ "epoch": 10.489296636085626,
+ "grad_norm": 0.2716822624206543,
+ "learning_rate": 0.0006,
+ "loss": 4.318459510803223,
+ "step": 755
+ },
+ {
+ "epoch": 10.503276539973788,
+ "grad_norm": 0.19552019238471985,
+ "learning_rate": 0.0006,
+ "loss": 4.3367509841918945,
+ "step": 756
+ },
+ {
+ "epoch": 10.517256443861948,
+ "grad_norm": 0.22822986543178558,
+ "learning_rate": 0.0006,
+ "loss": 4.328935623168945,
+ "step": 757
+ },
+ {
+ "epoch": 10.53123634775011,
+ "grad_norm": 0.22282928228378296,
+ "learning_rate": 0.0006,
+ "loss": 4.358272552490234,
+ "step": 758
+ },
+ {
+ "epoch": 10.54521625163827,
+ "grad_norm": 0.23303352296352386,
+ "learning_rate": 0.0006,
+ "loss": 4.336641311645508,
+ "step": 759
+ },
+ {
+ "epoch": 10.55919615552643,
+ "grad_norm": 0.29474690556526184,
+ "learning_rate": 0.0006,
+ "loss": 4.343188285827637,
+ "step": 760
+ },
+ {
+ "epoch": 10.57317605941459,
+ "grad_norm": 0.36269059777259827,
+ "learning_rate": 0.0006,
+ "loss": 4.313019752502441,
+ "step": 761
+ },
+ {
+ "epoch": 10.587155963302752,
+ "grad_norm": 0.3742978870868683,
+ "learning_rate": 0.0006,
+ "loss": 4.361410140991211,
+ "step": 762
+ },
+ {
+ "epoch": 10.601135867190912,
+ "grad_norm": 0.34412163496017456,
+ "learning_rate": 0.0006,
+ "loss": 4.321324825286865,
+ "step": 763
+ },
+ {
+ "epoch": 10.615115771079074,
+ "grad_norm": 0.3464587926864624,
+ "learning_rate": 0.0006,
+ "loss": 4.341907501220703,
+ "step": 764
+ },
+ {
+ "epoch": 10.629095674967235,
+ "grad_norm": 0.3318136930465698,
+ "learning_rate": 0.0006,
+ "loss": 4.329099655151367,
+ "step": 765
+ },
+ {
+ "epoch": 10.643075578855395,
+ "grad_norm": 0.31292903423309326,
+ "learning_rate": 0.0006,
+ "loss": 4.332015037536621,
+ "step": 766
+ },
+ {
+ "epoch": 10.657055482743557,
+ "grad_norm": 0.2904847264289856,
+ "learning_rate": 0.0006,
+ "loss": 4.341764450073242,
+ "step": 767
+ },
+ {
+ "epoch": 10.671035386631717,
+ "grad_norm": 0.3287692666053772,
+ "learning_rate": 0.0006,
+ "loss": 4.342329025268555,
+ "step": 768
+ },
+ {
+ "epoch": 10.685015290519878,
+ "grad_norm": 0.3115365207195282,
+ "learning_rate": 0.0006,
+ "loss": 4.3530073165893555,
+ "step": 769
+ },
+ {
+ "epoch": 10.698995194408038,
+ "grad_norm": 0.24133864045143127,
+ "learning_rate": 0.0006,
+ "loss": 4.321497917175293,
+ "step": 770
+ },
+ {
+ "epoch": 10.7129750982962,
+ "grad_norm": 0.24658630788326263,
+ "learning_rate": 0.0006,
+ "loss": 4.32669734954834,
+ "step": 771
+ },
+ {
+ "epoch": 10.72695500218436,
+ "grad_norm": 0.2342129647731781,
+ "learning_rate": 0.0006,
+ "loss": 4.345459461212158,
+ "step": 772
+ },
+ {
+ "epoch": 10.740934906072521,
+ "grad_norm": 0.23360829055309296,
+ "learning_rate": 0.0006,
+ "loss": 4.33249568939209,
+ "step": 773
+ },
+ {
+ "epoch": 10.754914809960681,
+ "grad_norm": 0.24314677715301514,
+ "learning_rate": 0.0006,
+ "loss": 4.30499792098999,
+ "step": 774
+ },
+ {
+ "epoch": 10.768894713848843,
+ "grad_norm": 0.22105181217193604,
+ "learning_rate": 0.0006,
+ "loss": 4.33706521987915,
+ "step": 775
+ },
+ {
+ "epoch": 10.782874617737003,
+ "grad_norm": 0.23307174444198608,
+ "learning_rate": 0.0006,
+ "loss": 4.320387840270996,
+ "step": 776
+ },
+ {
+ "epoch": 10.796854521625164,
+ "grad_norm": 0.24946169555187225,
+ "learning_rate": 0.0006,
+ "loss": 4.316012382507324,
+ "step": 777
+ },
+ {
+ "epoch": 10.810834425513324,
+ "grad_norm": 0.26023536920547485,
+ "learning_rate": 0.0006,
+ "loss": 4.315193176269531,
+ "step": 778
+ },
+ {
+ "epoch": 10.824814329401486,
+ "grad_norm": 0.2688547968864441,
+ "learning_rate": 0.0006,
+ "loss": 4.3243255615234375,
+ "step": 779
+ },
+ {
+ "epoch": 10.838794233289645,
+ "grad_norm": 0.28188297152519226,
+ "learning_rate": 0.0006,
+ "loss": 4.3202972412109375,
+ "step": 780
+ },
+ {
+ "epoch": 10.852774137177807,
+ "grad_norm": 0.2890053689479828,
+ "learning_rate": 0.0006,
+ "loss": 4.318799018859863,
+ "step": 781
+ },
+ {
+ "epoch": 10.866754041065967,
+ "grad_norm": 0.2914353013038635,
+ "learning_rate": 0.0006,
+ "loss": 4.314262390136719,
+ "step": 782
+ },
+ {
+ "epoch": 10.880733944954128,
+ "grad_norm": 0.3145572543144226,
+ "learning_rate": 0.0006,
+ "loss": 4.339262008666992,
+ "step": 783
+ },
+ {
+ "epoch": 10.89471384884229,
+ "grad_norm": 0.323062002658844,
+ "learning_rate": 0.0006,
+ "loss": 4.354856491088867,
+ "step": 784
+ },
+ {
+ "epoch": 10.90869375273045,
+ "grad_norm": 0.32741227746009827,
+ "learning_rate": 0.0006,
+ "loss": 4.325577735900879,
+ "step": 785
+ },
+ {
+ "epoch": 10.922673656618612,
+ "grad_norm": 0.2855733036994934,
+ "learning_rate": 0.0006,
+ "loss": 4.324419021606445,
+ "step": 786
+ },
+ {
+ "epoch": 10.936653560506771,
+ "grad_norm": 0.2969444990158081,
+ "learning_rate": 0.0006,
+ "loss": 4.320681095123291,
+ "step": 787
+ },
+ {
+ "epoch": 10.950633464394933,
+ "grad_norm": 0.28108111023902893,
+ "learning_rate": 0.0006,
+ "loss": 4.32673454284668,
+ "step": 788
+ },
+ {
+ "epoch": 10.964613368283093,
+ "grad_norm": 0.2537972629070282,
+ "learning_rate": 0.0006,
+ "loss": 4.3197021484375,
+ "step": 789
+ },
+ {
+ "epoch": 10.978593272171254,
+ "grad_norm": 0.2354544699192047,
+ "learning_rate": 0.0006,
+ "loss": 4.3354973793029785,
+ "step": 790
+ },
+ {
+ "epoch": 10.992573176059414,
+ "grad_norm": 0.26195117831230164,
+ "learning_rate": 0.0006,
+ "loss": 4.3172526359558105,
+ "step": 791
+ },
+ {
+ "epoch": 11.0,
+ "grad_norm": 0.27089616656303406,
+ "learning_rate": 0.0006,
+ "loss": 4.324293613433838,
+ "step": 792
+ },
+ {
+ "epoch": 11.0,
+ "eval_loss": 4.531813621520996,
+ "eval_runtime": 44.1656,
+ "eval_samples_per_second": 55.292,
+ "eval_steps_per_second": 3.464,
+ "step": 792
+ },
+ {
+ "epoch": 11.013979903888162,
+ "grad_norm": 0.2526339590549469,
+ "learning_rate": 0.0006,
+ "loss": 4.287600517272949,
+ "step": 793
+ },
+ {
+ "epoch": 11.027959807776321,
+ "grad_norm": 0.24318458139896393,
+ "learning_rate": 0.0006,
+ "loss": 4.268078327178955,
+ "step": 794
+ },
+ {
+ "epoch": 11.041939711664483,
+ "grad_norm": 0.2450830638408661,
+ "learning_rate": 0.0006,
+ "loss": 4.265467643737793,
+ "step": 795
+ },
+ {
+ "epoch": 11.055919615552643,
+ "grad_norm": 0.23963099718093872,
+ "learning_rate": 0.0006,
+ "loss": 4.267931938171387,
+ "step": 796
+ },
+ {
+ "epoch": 11.069899519440805,
+ "grad_norm": 0.2488657534122467,
+ "learning_rate": 0.0006,
+ "loss": 4.30262565612793,
+ "step": 797
+ },
+ {
+ "epoch": 11.083879423328964,
+ "grad_norm": 0.2319781631231308,
+ "learning_rate": 0.0006,
+ "loss": 4.28665828704834,
+ "step": 798
+ },
+ {
+ "epoch": 11.097859327217126,
+ "grad_norm": 0.2425263375043869,
+ "learning_rate": 0.0006,
+ "loss": 4.284830570220947,
+ "step": 799
+ },
+ {
+ "epoch": 11.111839231105286,
+ "grad_norm": 0.23096567392349243,
+ "learning_rate": 0.0006,
+ "loss": 4.2817206382751465,
+ "step": 800
+ },
+ {
+ "epoch": 11.125819134993447,
+ "grad_norm": 0.2846364676952362,
+ "learning_rate": 0.0006,
+ "loss": 4.276104927062988,
+ "step": 801
+ },
+ {
+ "epoch": 11.139799038881607,
+ "grad_norm": 0.2984965741634369,
+ "learning_rate": 0.0006,
+ "loss": 4.2909650802612305,
+ "step": 802
+ },
+ {
+ "epoch": 11.153778942769769,
+ "grad_norm": 0.2841213643550873,
+ "learning_rate": 0.0006,
+ "loss": 4.283358097076416,
+ "step": 803
+ },
+ {
+ "epoch": 11.167758846657929,
+ "grad_norm": 0.29192933440208435,
+ "learning_rate": 0.0006,
+ "loss": 4.267040729522705,
+ "step": 804
+ },
+ {
+ "epoch": 11.18173875054609,
+ "grad_norm": 0.3254184126853943,
+ "learning_rate": 0.0006,
+ "loss": 4.301564693450928,
+ "step": 805
+ },
+ {
+ "epoch": 11.19571865443425,
+ "grad_norm": 0.3347095847129822,
+ "learning_rate": 0.0006,
+ "loss": 4.271395683288574,
+ "step": 806
+ },
+ {
+ "epoch": 11.209698558322412,
+ "grad_norm": 0.25609350204467773,
+ "learning_rate": 0.0006,
+ "loss": 4.2963056564331055,
+ "step": 807
+ },
+ {
+ "epoch": 11.223678462210572,
+ "grad_norm": 0.29272061586380005,
+ "learning_rate": 0.0006,
+ "loss": 4.298416614532471,
+ "step": 808
+ },
+ {
+ "epoch": 11.237658366098733,
+ "grad_norm": 0.32179465889930725,
+ "learning_rate": 0.0006,
+ "loss": 4.294036865234375,
+ "step": 809
+ },
+ {
+ "epoch": 11.251638269986893,
+ "grad_norm": 0.3336549401283264,
+ "learning_rate": 0.0006,
+ "loss": 4.291993141174316,
+ "step": 810
+ },
+ {
+ "epoch": 11.265618173875055,
+ "grad_norm": 0.32273536920547485,
+ "learning_rate": 0.0006,
+ "loss": 4.311004638671875,
+ "step": 811
+ },
+ {
+ "epoch": 11.279598077763215,
+ "grad_norm": 0.3575087785720825,
+ "learning_rate": 0.0006,
+ "loss": 4.300217628479004,
+ "step": 812
+ },
+ {
+ "epoch": 11.293577981651376,
+ "grad_norm": 0.3332885205745697,
+ "learning_rate": 0.0006,
+ "loss": 4.278337478637695,
+ "step": 813
+ },
+ {
+ "epoch": 11.307557885539538,
+ "grad_norm": 0.31440407037734985,
+ "learning_rate": 0.0006,
+ "loss": 4.273826599121094,
+ "step": 814
+ },
+ {
+ "epoch": 11.321537789427698,
+ "grad_norm": 0.29822009801864624,
+ "learning_rate": 0.0006,
+ "loss": 4.284292221069336,
+ "step": 815
+ },
+ {
+ "epoch": 11.33551769331586,
+ "grad_norm": 0.30695512890815735,
+ "learning_rate": 0.0006,
+ "loss": 4.2831926345825195,
+ "step": 816
+ },
+ {
+ "epoch": 11.349497597204019,
+ "grad_norm": 0.30576950311660767,
+ "learning_rate": 0.0006,
+ "loss": 4.277133464813232,
+ "step": 817
+ },
+ {
+ "epoch": 11.36347750109218,
+ "grad_norm": 0.2859647870063782,
+ "learning_rate": 0.0006,
+ "loss": 4.3130106925964355,
+ "step": 818
+ },
+ {
+ "epoch": 11.37745740498034,
+ "grad_norm": 0.32417574524879456,
+ "learning_rate": 0.0006,
+ "loss": 4.310303211212158,
+ "step": 819
+ },
+ {
+ "epoch": 11.391437308868502,
+ "grad_norm": 0.3512463867664337,
+ "learning_rate": 0.0006,
+ "loss": 4.287015438079834,
+ "step": 820
+ },
+ {
+ "epoch": 11.405417212756662,
+ "grad_norm": 0.32578620314598083,
+ "learning_rate": 0.0006,
+ "loss": 4.2957940101623535,
+ "step": 821
+ },
+ {
+ "epoch": 11.419397116644824,
+ "grad_norm": 0.287949800491333,
+ "learning_rate": 0.0006,
+ "loss": 4.2881879806518555,
+ "step": 822
+ },
+ {
+ "epoch": 11.433377020532983,
+ "grad_norm": 0.28048595786094666,
+ "learning_rate": 0.0006,
+ "loss": 4.274960517883301,
+ "step": 823
+ },
+ {
+ "epoch": 11.447356924421145,
+ "grad_norm": 0.2541540563106537,
+ "learning_rate": 0.0006,
+ "loss": 4.261083602905273,
+ "step": 824
+ },
+ {
+ "epoch": 11.461336828309305,
+ "grad_norm": 0.2348361313343048,
+ "learning_rate": 0.0006,
+ "loss": 4.271036148071289,
+ "step": 825
+ },
+ {
+ "epoch": 11.475316732197467,
+ "grad_norm": 0.20913535356521606,
+ "learning_rate": 0.0006,
+ "loss": 4.307661056518555,
+ "step": 826
+ },
+ {
+ "epoch": 11.489296636085626,
+ "grad_norm": 0.22298868000507355,
+ "learning_rate": 0.0006,
+ "loss": 4.26902961730957,
+ "step": 827
+ },
+ {
+ "epoch": 11.503276539973788,
+ "grad_norm": 0.22752761840820312,
+ "learning_rate": 0.0006,
+ "loss": 4.305529594421387,
+ "step": 828
+ },
+ {
+ "epoch": 11.517256443861948,
+ "grad_norm": 0.2149917483329773,
+ "learning_rate": 0.0006,
+ "loss": 4.25134801864624,
+ "step": 829
+ },
+ {
+ "epoch": 11.53123634775011,
+ "grad_norm": 0.21085695922374725,
+ "learning_rate": 0.0006,
+ "loss": 4.266982078552246,
+ "step": 830
+ },
+ {
+ "epoch": 11.54521625163827,
+ "grad_norm": 0.21586747467517853,
+ "learning_rate": 0.0006,
+ "loss": 4.235255718231201,
+ "step": 831
+ },
+ {
+ "epoch": 11.55919615552643,
+ "grad_norm": 0.2520856559276581,
+ "learning_rate": 0.0006,
+ "loss": 4.283442497253418,
+ "step": 832
+ },
+ {
+ "epoch": 11.57317605941459,
+ "grad_norm": 0.2825471758842468,
+ "learning_rate": 0.0006,
+ "loss": 4.234672546386719,
+ "step": 833
+ },
+ {
+ "epoch": 11.587155963302752,
+ "grad_norm": 0.27437824010849,
+ "learning_rate": 0.0006,
+ "loss": 4.246068000793457,
+ "step": 834
+ },
+ {
+ "epoch": 11.601135867190912,
+ "grad_norm": 0.2596757411956787,
+ "learning_rate": 0.0006,
+ "loss": 4.278448104858398,
+ "step": 835
+ },
+ {
+ "epoch": 11.615115771079074,
+ "grad_norm": 0.25663474202156067,
+ "learning_rate": 0.0006,
+ "loss": 4.308779716491699,
+ "step": 836
+ },
+ {
+ "epoch": 11.629095674967235,
+ "grad_norm": 0.2546203136444092,
+ "learning_rate": 0.0006,
+ "loss": 4.261247634887695,
+ "step": 837
+ },
+ {
+ "epoch": 11.643075578855395,
+ "grad_norm": 0.24722838401794434,
+ "learning_rate": 0.0006,
+ "loss": 4.275888442993164,
+ "step": 838
+ },
+ {
+ "epoch": 11.657055482743557,
+ "grad_norm": 0.3022806644439697,
+ "learning_rate": 0.0006,
+ "loss": 4.2572407722473145,
+ "step": 839
+ },
+ {
+ "epoch": 11.671035386631717,
+ "grad_norm": 0.31170839071273804,
+ "learning_rate": 0.0006,
+ "loss": 4.26992654800415,
+ "step": 840
+ },
+ {
+ "epoch": 11.685015290519878,
+ "grad_norm": 0.31362825632095337,
+ "learning_rate": 0.0006,
+ "loss": 4.2354655265808105,
+ "step": 841
+ },
+ {
+ "epoch": 11.698995194408038,
+ "grad_norm": 0.28741633892059326,
+ "learning_rate": 0.0006,
+ "loss": 4.263496398925781,
+ "step": 842
+ },
+ {
+ "epoch": 11.7129750982962,
+ "grad_norm": 0.2492494285106659,
+ "learning_rate": 0.0006,
+ "loss": 4.26463508605957,
+ "step": 843
+ },
+ {
+ "epoch": 11.72695500218436,
+ "grad_norm": 0.24324660003185272,
+ "learning_rate": 0.0006,
+ "loss": 4.245428085327148,
+ "step": 844
+ },
+ {
+ "epoch": 11.740934906072521,
+ "grad_norm": 0.23591114580631256,
+ "learning_rate": 0.0006,
+ "loss": 4.249845504760742,
+ "step": 845
+ },
+ {
+ "epoch": 11.754914809960681,
+ "grad_norm": 0.2202281504869461,
+ "learning_rate": 0.0006,
+ "loss": 4.245006084442139,
+ "step": 846
+ },
+ {
+ "epoch": 11.768894713848843,
+ "grad_norm": 0.22117942571640015,
+ "learning_rate": 0.0006,
+ "loss": 4.27812385559082,
+ "step": 847
+ },
+ {
+ "epoch": 11.782874617737003,
+ "grad_norm": 0.26361414790153503,
+ "learning_rate": 0.0006,
+ "loss": 4.250475883483887,
+ "step": 848
+ },
+ {
+ "epoch": 11.796854521625164,
+ "grad_norm": 0.2820321321487427,
+ "learning_rate": 0.0006,
+ "loss": 4.265835762023926,
+ "step": 849
+ },
+ {
+ "epoch": 11.810834425513324,
+ "grad_norm": 0.2078961282968521,
+ "learning_rate": 0.0006,
+ "loss": 4.251298904418945,
+ "step": 850
+ },
+ {
+ "epoch": 11.824814329401486,
+ "grad_norm": 0.21548646688461304,
+ "learning_rate": 0.0006,
+ "loss": 4.288539886474609,
+ "step": 851
+ },
+ {
+ "epoch": 11.838794233289645,
+ "grad_norm": 0.22719401121139526,
+ "learning_rate": 0.0006,
+ "loss": 4.252035140991211,
+ "step": 852
+ },
+ {
+ "epoch": 11.852774137177807,
+ "grad_norm": 0.21628320217132568,
+ "learning_rate": 0.0006,
+ "loss": 4.268622398376465,
+ "step": 853
+ },
+ {
+ "epoch": 11.866754041065967,
+ "grad_norm": 0.20855145156383514,
+ "learning_rate": 0.0006,
+ "loss": 4.253366470336914,
+ "step": 854
+ },
+ {
+ "epoch": 11.880733944954128,
+ "grad_norm": 0.2091914266347885,
+ "learning_rate": 0.0006,
+ "loss": 4.237805366516113,
+ "step": 855
+ },
+ {
+ "epoch": 11.89471384884229,
+ "grad_norm": 0.2000127136707306,
+ "learning_rate": 0.0006,
+ "loss": 4.268559455871582,
+ "step": 856
+ },
+ {
+ "epoch": 11.90869375273045,
+ "grad_norm": 0.21080894768238068,
+ "learning_rate": 0.0006,
+ "loss": 4.208702087402344,
+ "step": 857
+ },
+ {
+ "epoch": 11.922673656618612,
+ "grad_norm": 0.22125796973705292,
+ "learning_rate": 0.0006,
+ "loss": 4.250210762023926,
+ "step": 858
+ },
+ {
+ "epoch": 11.936653560506771,
+ "grad_norm": 0.25905469059944153,
+ "learning_rate": 0.0006,
+ "loss": 4.2263593673706055,
+ "step": 859
+ },
+ {
+ "epoch": 11.950633464394933,
+ "grad_norm": 0.29970306158065796,
+ "learning_rate": 0.0006,
+ "loss": 4.250848770141602,
+ "step": 860
+ },
+ {
+ "epoch": 11.964613368283093,
+ "grad_norm": 0.28155168890953064,
+ "learning_rate": 0.0006,
+ "loss": 4.272709369659424,
+ "step": 861
+ },
+ {
+ "epoch": 11.978593272171254,
+ "grad_norm": 0.23396113514900208,
+ "learning_rate": 0.0006,
+ "loss": 4.2674970626831055,
+ "step": 862
+ },
+ {
+ "epoch": 11.992573176059414,
+ "grad_norm": 0.23619577288627625,
+ "learning_rate": 0.0006,
+ "loss": 4.240267753601074,
+ "step": 863
+ },
+ {
+ "epoch": 12.0,
+ "grad_norm": 0.2779577076435089,
+ "learning_rate": 0.0006,
+ "loss": 4.267625331878662,
+ "step": 864
+ },
+ {
+ "epoch": 12.0,
+ "eval_loss": 4.437657356262207,
+ "eval_runtime": 44.4959,
+ "eval_samples_per_second": 54.881,
+ "eval_steps_per_second": 3.439,
+ "step": 864
+ },
+ {
+ "epoch": 12.013979903888162,
+ "grad_norm": 0.2948288321495056,
+ "learning_rate": 0.0006,
+ "loss": 4.232182502746582,
+ "step": 865
+ },
+ {
+ "epoch": 12.027959807776321,
+ "grad_norm": 0.3715663254261017,
+ "learning_rate": 0.0006,
+ "loss": 4.233771324157715,
+ "step": 866
+ },
+ {
+ "epoch": 12.041939711664483,
+ "grad_norm": 0.38358673453330994,
+ "learning_rate": 0.0006,
+ "loss": 4.208967685699463,
+ "step": 867
+ },
+ {
+ "epoch": 12.055919615552643,
+ "grad_norm": 0.3314538896083832,
+ "learning_rate": 0.0006,
+ "loss": 4.230685234069824,
+ "step": 868
+ },
+ {
+ "epoch": 12.069899519440805,
+ "grad_norm": 0.34171539545059204,
+ "learning_rate": 0.0006,
+ "loss": 4.231358528137207,
+ "step": 869
+ },
+ {
+ "epoch": 12.083879423328964,
+ "grad_norm": 0.3253359794616699,
+ "learning_rate": 0.0006,
+ "loss": 4.276405334472656,
+ "step": 870
+ },
+ {
+ "epoch": 12.097859327217126,
+ "grad_norm": 0.29008302092552185,
+ "learning_rate": 0.0006,
+ "loss": 4.232935905456543,
+ "step": 871
+ },
+ {
+ "epoch": 12.111839231105286,
+ "grad_norm": 0.28490355610847473,
+ "learning_rate": 0.0006,
+ "loss": 4.238036632537842,
+ "step": 872
+ },
+ {
+ "epoch": 12.125819134993447,
+ "grad_norm": 0.28446322679519653,
+ "learning_rate": 0.0006,
+ "loss": 4.210229873657227,
+ "step": 873
+ },
+ {
+ "epoch": 12.139799038881607,
+ "grad_norm": 0.29664531350135803,
+ "learning_rate": 0.0006,
+ "loss": 4.221309185028076,
+ "step": 874
+ },
+ {
+ "epoch": 12.153778942769769,
+ "grad_norm": 0.3083505928516388,
+ "learning_rate": 0.0006,
+ "loss": 4.221837997436523,
+ "step": 875
+ },
+ {
+ "epoch": 12.167758846657929,
+ "grad_norm": 0.3282921314239502,
+ "learning_rate": 0.0006,
+ "loss": 4.236713409423828,
+ "step": 876
+ },
+ {
+ "epoch": 12.18173875054609,
+ "grad_norm": 0.3603622615337372,
+ "learning_rate": 0.0006,
+ "loss": 4.245080947875977,
+ "step": 877
+ },
+ {
+ "epoch": 12.19571865443425,
+ "grad_norm": 0.38070905208587646,
+ "learning_rate": 0.0006,
+ "loss": 4.240756988525391,
+ "step": 878
+ },
+ {
+ "epoch": 12.209698558322412,
+ "grad_norm": 0.34479081630706787,
+ "learning_rate": 0.0006,
+ "loss": 4.200998306274414,
+ "step": 879
+ },
+ {
+ "epoch": 12.223678462210572,
+ "grad_norm": 0.3006879389286041,
+ "learning_rate": 0.0006,
+ "loss": 4.23531436920166,
+ "step": 880
+ },
+ {
+ "epoch": 12.237658366098733,
+ "grad_norm": 0.36835649609565735,
+ "learning_rate": 0.0006,
+ "loss": 4.229718208312988,
+ "step": 881
+ },
+ {
+ "epoch": 12.251638269986893,
+ "grad_norm": 0.4386984407901764,
+ "learning_rate": 0.0006,
+ "loss": 4.241188049316406,
+ "step": 882
+ },
+ {
+ "epoch": 12.265618173875055,
+ "grad_norm": 0.4442787170410156,
+ "learning_rate": 0.0006,
+ "loss": 4.239102840423584,
+ "step": 883
+ },
+ {
+ "epoch": 12.279598077763215,
+ "grad_norm": 0.324411541223526,
+ "learning_rate": 0.0006,
+ "loss": 4.198982238769531,
+ "step": 884
+ },
+ {
+ "epoch": 12.293577981651376,
+ "grad_norm": 0.2824151813983917,
+ "learning_rate": 0.0006,
+ "loss": 4.248816967010498,
+ "step": 885
+ },
+ {
+ "epoch": 12.307557885539538,
+ "grad_norm": 0.31407129764556885,
+ "learning_rate": 0.0006,
+ "loss": 4.2371320724487305,
+ "step": 886
+ },
+ {
+ "epoch": 12.321537789427698,
+ "grad_norm": 0.32920050621032715,
+ "learning_rate": 0.0006,
+ "loss": 4.210432052612305,
+ "step": 887
+ },
+ {
+ "epoch": 12.33551769331586,
+ "grad_norm": 0.315231055021286,
+ "learning_rate": 0.0006,
+ "loss": 4.219416618347168,
+ "step": 888
+ },
+ {
+ "epoch": 12.349497597204019,
+ "grad_norm": 0.30932050943374634,
+ "learning_rate": 0.0006,
+ "loss": 4.225022315979004,
+ "step": 889
+ },
+ {
+ "epoch": 12.36347750109218,
+ "grad_norm": 0.30242064595222473,
+ "learning_rate": 0.0006,
+ "loss": 4.2738518714904785,
+ "step": 890
+ },
+ {
+ "epoch": 12.37745740498034,
+ "grad_norm": 0.2926250994205475,
+ "learning_rate": 0.0006,
+ "loss": 4.231094837188721,
+ "step": 891
+ },
+ {
+ "epoch": 12.391437308868502,
+ "grad_norm": 0.2541215717792511,
+ "learning_rate": 0.0006,
+ "loss": 4.211821556091309,
+ "step": 892
+ },
+ {
+ "epoch": 12.405417212756662,
+ "grad_norm": 0.23693418502807617,
+ "learning_rate": 0.0006,
+ "loss": 4.208099365234375,
+ "step": 893
+ },
+ {
+ "epoch": 12.419397116644824,
+ "grad_norm": 0.22063226997852325,
+ "learning_rate": 0.0006,
+ "loss": 4.211234092712402,
+ "step": 894
+ },
+ {
+ "epoch": 12.433377020532983,
+ "grad_norm": 0.21536271274089813,
+ "learning_rate": 0.0006,
+ "loss": 4.199228286743164,
+ "step": 895
+ },
+ {
+ "epoch": 12.447356924421145,
+ "grad_norm": 0.243179589509964,
+ "learning_rate": 0.0006,
+ "loss": 4.204344749450684,
+ "step": 896
+ },
+ {
+ "epoch": 12.461336828309305,
+ "grad_norm": 0.2299746423959732,
+ "learning_rate": 0.0006,
+ "loss": 4.1565752029418945,
+ "step": 897
+ },
+ {
+ "epoch": 12.475316732197467,
+ "grad_norm": 0.2286847084760666,
+ "learning_rate": 0.0006,
+ "loss": 4.242953777313232,
+ "step": 898
+ },
+ {
+ "epoch": 12.489296636085626,
+ "grad_norm": 0.19463586807250977,
+ "learning_rate": 0.0006,
+ "loss": 4.214809417724609,
+ "step": 899
+ },
+ {
+ "epoch": 12.503276539973788,
+ "grad_norm": 0.1978398710489273,
+ "learning_rate": 0.0006,
+ "loss": 4.159815311431885,
+ "step": 900
+ },
+ {
+ "epoch": 12.517256443861948,
+ "grad_norm": 0.23177850246429443,
+ "learning_rate": 0.0006,
+ "loss": 4.2069902420043945,
+ "step": 901
+ },
+ {
+ "epoch": 12.53123634775011,
+ "grad_norm": 0.2408912032842636,
+ "learning_rate": 0.0006,
+ "loss": 4.206778526306152,
+ "step": 902
+ },
+ {
+ "epoch": 12.54521625163827,
+ "grad_norm": 0.21839919686317444,
+ "learning_rate": 0.0006,
+ "loss": 4.197076320648193,
+ "step": 903
+ },
+ {
+ "epoch": 12.55919615552643,
+ "grad_norm": 0.2053343504667282,
+ "learning_rate": 0.0006,
+ "loss": 4.21247673034668,
+ "step": 904
+ },
+ {
+ "epoch": 12.57317605941459,
+ "grad_norm": 0.19943439960479736,
+ "learning_rate": 0.0006,
+ "loss": 4.176966667175293,
+ "step": 905
+ },
+ {
+ "epoch": 12.587155963302752,
+ "grad_norm": 0.2012074887752533,
+ "learning_rate": 0.0006,
+ "loss": 4.210303783416748,
+ "step": 906
+ },
+ {
+ "epoch": 12.601135867190912,
+ "grad_norm": 0.22240376472473145,
+ "learning_rate": 0.0006,
+ "loss": 4.200625896453857,
+ "step": 907
+ },
+ {
+ "epoch": 12.615115771079074,
+ "grad_norm": 0.21729710698127747,
+ "learning_rate": 0.0006,
+ "loss": 4.2001953125,
+ "step": 908
+ },
+ {
+ "epoch": 12.629095674967235,
+ "grad_norm": 0.22470413148403168,
+ "learning_rate": 0.0006,
+ "loss": 4.197505950927734,
+ "step": 909
+ },
+ {
+ "epoch": 12.643075578855395,
+ "grad_norm": 0.23776157200336456,
+ "learning_rate": 0.0006,
+ "loss": 4.235603332519531,
+ "step": 910
+ },
+ {
+ "epoch": 12.657055482743557,
+ "grad_norm": 0.20616604387760162,
+ "learning_rate": 0.0006,
+ "loss": 4.193584442138672,
+ "step": 911
+ },
+ {
+ "epoch": 12.671035386631717,
+ "grad_norm": 0.1913922131061554,
+ "learning_rate": 0.0006,
+ "loss": 4.209191799163818,
+ "step": 912
+ },
+ {
+ "epoch": 12.685015290519878,
+ "grad_norm": 0.19427193701267242,
+ "learning_rate": 0.0006,
+ "loss": 4.219709396362305,
+ "step": 913
+ },
+ {
+ "epoch": 12.698995194408038,
+ "grad_norm": 0.20976558327674866,
+ "learning_rate": 0.0006,
+ "loss": 4.210859298706055,
+ "step": 914
+ },
+ {
+ "epoch": 12.7129750982962,
+ "grad_norm": 0.21571609377861023,
+ "learning_rate": 0.0006,
+ "loss": 4.189394950866699,
+ "step": 915
+ },
+ {
+ "epoch": 12.72695500218436,
+ "grad_norm": 0.2152620255947113,
+ "learning_rate": 0.0006,
+ "loss": 4.223589897155762,
+ "step": 916
+ },
+ {
+ "epoch": 12.740934906072521,
+ "grad_norm": 0.21867749094963074,
+ "learning_rate": 0.0006,
+ "loss": 4.198590278625488,
+ "step": 917
+ },
+ {
+ "epoch": 12.754914809960681,
+ "grad_norm": 0.22300855815410614,
+ "learning_rate": 0.0006,
+ "loss": 4.188891410827637,
+ "step": 918
+ },
+ {
+ "epoch": 12.768894713848843,
+ "grad_norm": 0.22197802364826202,
+ "learning_rate": 0.0006,
+ "loss": 4.190221309661865,
+ "step": 919
+ },
+ {
+ "epoch": 12.782874617737003,
+ "grad_norm": 0.20003341138362885,
+ "learning_rate": 0.0006,
+ "loss": 4.215453147888184,
+ "step": 920
+ },
+ {
+ "epoch": 12.796854521625164,
+ "grad_norm": 0.19887958467006683,
+ "learning_rate": 0.0006,
+ "loss": 4.18174934387207,
+ "step": 921
+ },
+ {
+ "epoch": 12.810834425513324,
+ "grad_norm": 0.20945803821086884,
+ "learning_rate": 0.0006,
+ "loss": 4.234947204589844,
+ "step": 922
+ },
+ {
+ "epoch": 12.824814329401486,
+ "grad_norm": 0.2253490388393402,
+ "learning_rate": 0.0006,
+ "loss": 4.2177228927612305,
+ "step": 923
+ },
+ {
+ "epoch": 12.838794233289645,
+ "grad_norm": 0.247610405087471,
+ "learning_rate": 0.0006,
+ "loss": 4.2013139724731445,
+ "step": 924
+ },
+ {
+ "epoch": 12.852774137177807,
+ "grad_norm": 0.2792088985443115,
+ "learning_rate": 0.0006,
+ "loss": 4.204774379730225,
+ "step": 925
+ },
+ {
+ "epoch": 12.866754041065967,
+ "grad_norm": 0.2839066982269287,
+ "learning_rate": 0.0006,
+ "loss": 4.186254978179932,
+ "step": 926
+ },
+ {
+ "epoch": 12.880733944954128,
+ "grad_norm": 0.2793181836605072,
+ "learning_rate": 0.0006,
+ "loss": 4.172411918640137,
+ "step": 927
+ },
+ {
+ "epoch": 12.89471384884229,
+ "grad_norm": 0.29506033658981323,
+ "learning_rate": 0.0006,
+ "loss": 4.202878475189209,
+ "step": 928
+ },
+ {
+ "epoch": 12.90869375273045,
+ "grad_norm": 0.2799845039844513,
+ "learning_rate": 0.0006,
+ "loss": 4.1563310623168945,
+ "step": 929
+ },
+ {
+ "epoch": 12.922673656618612,
+ "grad_norm": 0.23972125351428986,
+ "learning_rate": 0.0006,
+ "loss": 4.224601745605469,
+ "step": 930
+ },
+ {
+ "epoch": 12.936653560506771,
+ "grad_norm": 0.21558353304862976,
+ "learning_rate": 0.0006,
+ "loss": 4.167957305908203,
+ "step": 931
+ },
+ {
+ "epoch": 12.950633464394933,
+ "grad_norm": 0.21800188720226288,
+ "learning_rate": 0.0006,
+ "loss": 4.1746039390563965,
+ "step": 932
+ },
+ {
+ "epoch": 12.964613368283093,
+ "grad_norm": 0.2086547315120697,
+ "learning_rate": 0.0006,
+ "loss": 4.188137054443359,
+ "step": 933
+ },
+ {
+ "epoch": 12.978593272171254,
+ "grad_norm": 0.2174186110496521,
+ "learning_rate": 0.0006,
+ "loss": 4.184014320373535,
+ "step": 934
+ },
+ {
+ "epoch": 12.992573176059414,
+ "grad_norm": 0.22755110263824463,
+ "learning_rate": 0.0006,
+ "loss": 4.180912017822266,
+ "step": 935
+ },
+ {
+ "epoch": 13.0,
+ "grad_norm": 0.2735324203968048,
+ "learning_rate": 0.0006,
+ "loss": 4.201578617095947,
+ "step": 936
+ },
+ {
+ "epoch": 13.0,
+ "eval_loss": 4.396903038024902,
+ "eval_runtime": 44.5664,
+ "eval_samples_per_second": 54.795,
+ "eval_steps_per_second": 3.433,
+ "step": 936
+ },
+ {
+ "epoch": 13.013979903888162,
+ "grad_norm": 0.27577832341194153,
+ "learning_rate": 0.0006,
+ "loss": 4.149985313415527,
+ "step": 937
+ },
+ {
+ "epoch": 13.027959807776321,
+ "grad_norm": 0.25817009806632996,
+ "learning_rate": 0.0006,
+ "loss": 4.1526103019714355,
+ "step": 938
+ },
+ {
+ "epoch": 13.041939711664483,
+ "grad_norm": 0.24564379453659058,
+ "learning_rate": 0.0006,
+ "loss": 4.1661152839660645,
+ "step": 939
+ },
+ {
+ "epoch": 13.055919615552643,
+ "grad_norm": 0.2465466856956482,
+ "learning_rate": 0.0006,
+ "loss": 4.152953624725342,
+ "step": 940
+ },
+ {
+ "epoch": 13.069899519440805,
+ "grad_norm": 0.22702018916606903,
+ "learning_rate": 0.0006,
+ "loss": 4.145125389099121,
+ "step": 941
+ },
+ {
+ "epoch": 13.083879423328964,
+ "grad_norm": 0.24350613355636597,
+ "learning_rate": 0.0006,
+ "loss": 4.163095474243164,
+ "step": 942
+ },
+ {
+ "epoch": 13.097859327217126,
+ "grad_norm": 0.2504431903362274,
+ "learning_rate": 0.0006,
+ "loss": 4.136016845703125,
+ "step": 943
+ },
+ {
+ "epoch": 13.111839231105286,
+ "grad_norm": 0.24968865513801575,
+ "learning_rate": 0.0006,
+ "loss": 4.163487911224365,
+ "step": 944
+ },
+ {
+ "epoch": 13.125819134993447,
+ "grad_norm": 0.27164196968078613,
+ "learning_rate": 0.0006,
+ "loss": 4.1194353103637695,
+ "step": 945
+ },
+ {
+ "epoch": 13.139799038881607,
+ "grad_norm": 0.28127020597457886,
+ "learning_rate": 0.0006,
+ "loss": 4.184807300567627,
+ "step": 946
+ },
+ {
+ "epoch": 13.153778942769769,
+ "grad_norm": 0.24574966728687286,
+ "learning_rate": 0.0006,
+ "loss": 4.154998779296875,
+ "step": 947
+ },
+ {
+ "epoch": 13.167758846657929,
+ "grad_norm": 0.22310060262680054,
+ "learning_rate": 0.0006,
+ "loss": 4.182928085327148,
+ "step": 948
+ },
+ {
+ "epoch": 13.18173875054609,
+ "grad_norm": 0.2539508640766144,
+ "learning_rate": 0.0006,
+ "loss": 4.176900386810303,
+ "step": 949
+ },
+ {
+ "epoch": 13.19571865443425,
+ "grad_norm": 0.30925488471984863,
+ "learning_rate": 0.0006,
+ "loss": 4.1760711669921875,
+ "step": 950
+ },
+ {
+ "epoch": 13.209698558322412,
+ "grad_norm": 0.3842967450618744,
+ "learning_rate": 0.0006,
+ "loss": 4.1830949783325195,
+ "step": 951
+ },
+ {
+ "epoch": 13.223678462210572,
+ "grad_norm": 0.35950011014938354,
+ "learning_rate": 0.0006,
+ "loss": 4.131983757019043,
+ "step": 952
+ },
+ {
+ "epoch": 13.237658366098733,
+ "grad_norm": 0.29913705587387085,
+ "learning_rate": 0.0006,
+ "loss": 4.166984558105469,
+ "step": 953
+ },
+ {
+ "epoch": 13.251638269986893,
+ "grad_norm": 0.32008400559425354,
+ "learning_rate": 0.0006,
+ "loss": 4.156482696533203,
+ "step": 954
+ },
+ {
+ "epoch": 13.265618173875055,
+ "grad_norm": 0.3186642825603485,
+ "learning_rate": 0.0006,
+ "loss": 4.1661057472229,
+ "step": 955
+ },
+ {
+ "epoch": 13.279598077763215,
+ "grad_norm": 0.3194582462310791,
+ "learning_rate": 0.0006,
+ "loss": 4.169328689575195,
+ "step": 956
+ },
+ {
+ "epoch": 13.293577981651376,
+ "grad_norm": 0.3133867084980011,
+ "learning_rate": 0.0006,
+ "loss": 4.165459632873535,
+ "step": 957
+ },
+ {
+ "epoch": 13.307557885539538,
+ "grad_norm": 0.3232237696647644,
+ "learning_rate": 0.0006,
+ "loss": 4.2107439041137695,
+ "step": 958
+ },
+ {
+ "epoch": 13.321537789427698,
+ "grad_norm": 0.3133196234703064,
+ "learning_rate": 0.0006,
+ "loss": 4.184182167053223,
+ "step": 959
+ },
+ {
+ "epoch": 13.33551769331586,
+ "grad_norm": 0.296129435300827,
+ "learning_rate": 0.0006,
+ "loss": 4.168312072753906,
+ "step": 960
+ },
+ {
+ "epoch": 13.349497597204019,
+ "grad_norm": 0.2685348391532898,
+ "learning_rate": 0.0006,
+ "loss": 4.159984588623047,
+ "step": 961
+ },
+ {
+ "epoch": 13.36347750109218,
+ "grad_norm": 0.2644975781440735,
+ "learning_rate": 0.0006,
+ "loss": 4.164909362792969,
+ "step": 962
+ },
+ {
+ "epoch": 13.37745740498034,
+ "grad_norm": 0.2712913155555725,
+ "learning_rate": 0.0006,
+ "loss": 4.158056259155273,
+ "step": 963
+ },
+ {
+ "epoch": 13.391437308868502,
+ "grad_norm": 0.2687259316444397,
+ "learning_rate": 0.0006,
+ "loss": 4.182924270629883,
+ "step": 964
+ },
+ {
+ "epoch": 13.405417212756662,
+ "grad_norm": 0.25640392303466797,
+ "learning_rate": 0.0006,
+ "loss": 4.153351783752441,
+ "step": 965
+ },
+ {
+ "epoch": 13.419397116644824,
+ "grad_norm": 0.2646305561065674,
+ "learning_rate": 0.0006,
+ "loss": 4.18464469909668,
+ "step": 966
+ },
+ {
+ "epoch": 13.433377020532983,
+ "grad_norm": 0.24206851422786713,
+ "learning_rate": 0.0006,
+ "loss": 4.127564430236816,
+ "step": 967
+ },
+ {
+ "epoch": 13.447356924421145,
+ "grad_norm": 0.23800471425056458,
+ "learning_rate": 0.0006,
+ "loss": 4.163488388061523,
+ "step": 968
+ },
+ {
+ "epoch": 13.461336828309305,
+ "grad_norm": 0.22957314550876617,
+ "learning_rate": 0.0006,
+ "loss": 4.178133964538574,
+ "step": 969
+ },
+ {
+ "epoch": 13.475316732197467,
+ "grad_norm": 0.22867488861083984,
+ "learning_rate": 0.0006,
+ "loss": 4.159056186676025,
+ "step": 970
+ },
+ {
+ "epoch": 13.489296636085626,
+ "grad_norm": 0.21737419068813324,
+ "learning_rate": 0.0006,
+ "loss": 4.138628005981445,
+ "step": 971
+ },
+ {
+ "epoch": 13.503276539973788,
+ "grad_norm": 0.2319175899028778,
+ "learning_rate": 0.0006,
+ "loss": 4.14644718170166,
+ "step": 972
+ },
+ {
+ "epoch": 13.517256443861948,
+ "grad_norm": 0.2572193443775177,
+ "learning_rate": 0.0006,
+ "loss": 4.175213813781738,
+ "step": 973
+ },
+ {
+ "epoch": 13.53123634775011,
+ "grad_norm": 0.23483099043369293,
+ "learning_rate": 0.0006,
+ "loss": 4.133171558380127,
+ "step": 974
+ },
+ {
+ "epoch": 13.54521625163827,
+ "grad_norm": 0.2071552872657776,
+ "learning_rate": 0.0006,
+ "loss": 4.13730525970459,
+ "step": 975
+ },
+ {
+ "epoch": 13.55919615552643,
+ "grad_norm": 0.23074553906917572,
+ "learning_rate": 0.0006,
+ "loss": 4.175051689147949,
+ "step": 976
+ },
+ {
+ "epoch": 13.57317605941459,
+ "grad_norm": 0.2480078786611557,
+ "learning_rate": 0.0006,
+ "loss": 4.167630672454834,
+ "step": 977
+ },
+ {
+ "epoch": 13.587155963302752,
+ "grad_norm": 0.23444348573684692,
+ "learning_rate": 0.0006,
+ "loss": 4.141780853271484,
+ "step": 978
+ },
+ {
+ "epoch": 13.601135867190912,
+ "grad_norm": 0.2227829396724701,
+ "learning_rate": 0.0006,
+ "loss": 4.157566547393799,
+ "step": 979
+ },
+ {
+ "epoch": 13.615115771079074,
+ "grad_norm": 0.21478354930877686,
+ "learning_rate": 0.0006,
+ "loss": 4.131053447723389,
+ "step": 980
+ },
+ {
+ "epoch": 13.629095674967235,
+ "grad_norm": 0.1978664994239807,
+ "learning_rate": 0.0006,
+ "loss": 4.123660564422607,
+ "step": 981
+ },
+ {
+ "epoch": 13.643075578855395,
+ "grad_norm": 0.19980201125144958,
+ "learning_rate": 0.0006,
+ "loss": 4.174160480499268,
+ "step": 982
+ },
+ {
+ "epoch": 13.657055482743557,
+ "grad_norm": 0.19815555214881897,
+ "learning_rate": 0.0006,
+ "loss": 4.181703090667725,
+ "step": 983
+ },
+ {
+ "epoch": 13.671035386631717,
+ "grad_norm": 0.19524012506008148,
+ "learning_rate": 0.0006,
+ "loss": 4.163766860961914,
+ "step": 984
+ },
+ {
+ "epoch": 13.685015290519878,
+ "grad_norm": 0.2286096215248108,
+ "learning_rate": 0.0006,
+ "loss": 4.172213554382324,
+ "step": 985
+ },
+ {
+ "epoch": 13.698995194408038,
+ "grad_norm": 0.2210782766342163,
+ "learning_rate": 0.0006,
+ "loss": 4.187033653259277,
+ "step": 986
+ },
+ {
+ "epoch": 13.7129750982962,
+ "grad_norm": 0.21874216198921204,
+ "learning_rate": 0.0006,
+ "loss": 4.125125885009766,
+ "step": 987
+ },
+ {
+ "epoch": 13.72695500218436,
+ "grad_norm": 0.22848057746887207,
+ "learning_rate": 0.0006,
+ "loss": 4.153496742248535,
+ "step": 988
+ },
+ {
+ "epoch": 13.740934906072521,
+ "grad_norm": 0.2250450700521469,
+ "learning_rate": 0.0006,
+ "loss": 4.149165630340576,
+ "step": 989
+ },
+ {
+ "epoch": 13.754914809960681,
+ "grad_norm": 0.21443772315979004,
+ "learning_rate": 0.0006,
+ "loss": 4.1528825759887695,
+ "step": 990
+ },
+ {
+ "epoch": 13.768894713848843,
+ "grad_norm": 0.21927927434444427,
+ "learning_rate": 0.0006,
+ "loss": 4.146831512451172,
+ "step": 991
+ },
+ {
+ "epoch": 13.782874617737003,
+ "grad_norm": 0.2413124144077301,
+ "learning_rate": 0.0006,
+ "loss": 4.136909008026123,
+ "step": 992
+ },
+ {
+ "epoch": 13.796854521625164,
+ "grad_norm": 0.2603479325771332,
+ "learning_rate": 0.0006,
+ "loss": 4.12525749206543,
+ "step": 993
+ },
+ {
+ "epoch": 13.810834425513324,
+ "grad_norm": 0.26246970891952515,
+ "learning_rate": 0.0006,
+ "loss": 4.114049434661865,
+ "step": 994
+ },
+ {
+ "epoch": 13.824814329401486,
+ "grad_norm": 0.27031877636909485,
+ "learning_rate": 0.0006,
+ "loss": 4.1646552085876465,
+ "step": 995
+ },
+ {
+ "epoch": 13.838794233289645,
+ "grad_norm": 0.2499857395887375,
+ "learning_rate": 0.0006,
+ "loss": 4.139284133911133,
+ "step": 996
+ },
+ {
+ "epoch": 13.852774137177807,
+ "grad_norm": 0.22026537358760834,
+ "learning_rate": 0.0006,
+ "loss": 4.142191410064697,
+ "step": 997
+ },
+ {
+ "epoch": 13.866754041065967,
+ "grad_norm": 0.23738551139831543,
+ "learning_rate": 0.0006,
+ "loss": 4.1422882080078125,
+ "step": 998
+ },
+ {
+ "epoch": 13.880733944954128,
+ "grad_norm": 0.2416357398033142,
+ "learning_rate": 0.0006,
+ "loss": 4.14063835144043,
+ "step": 999
+ },
+ {
+ "epoch": 13.89471384884229,
+ "grad_norm": 0.33822184801101685,
+ "learning_rate": 0.0006,
+ "loss": 4.12839412689209,
+ "step": 1000
+ },
+ {
+ "epoch": 13.90869375273045,
+ "grad_norm": 0.3409678339958191,
+ "learning_rate": 0.0006,
+ "loss": 4.145351886749268,
+ "step": 1001
+ },
+ {
+ "epoch": 13.922673656618612,
+ "grad_norm": 0.2467597872018814,
+ "learning_rate": 0.0006,
+ "loss": 4.155339241027832,
+ "step": 1002
+ },
+ {
+ "epoch": 13.936653560506771,
+ "grad_norm": 0.2314649075269699,
+ "learning_rate": 0.0006,
+ "loss": 4.130176067352295,
+ "step": 1003
+ },
+ {
+ "epoch": 13.950633464394933,
+ "grad_norm": 0.23701290786266327,
+ "learning_rate": 0.0006,
+ "loss": 4.19205379486084,
+ "step": 1004
+ },
+ {
+ "epoch": 13.964613368283093,
+ "grad_norm": 0.2466491460800171,
+ "learning_rate": 0.0006,
+ "loss": 4.118908882141113,
+ "step": 1005
+ },
+ {
+ "epoch": 13.978593272171254,
+ "grad_norm": 0.23746836185455322,
+ "learning_rate": 0.0006,
+ "loss": 4.16111946105957,
+ "step": 1006
+ },
+ {
+ "epoch": 13.992573176059414,
+ "grad_norm": 0.24497751891613007,
+ "learning_rate": 0.0006,
+ "loss": 4.148624420166016,
+ "step": 1007
+ },
+ {
+ "epoch": 14.0,
+ "grad_norm": 0.25735899806022644,
+ "learning_rate": 0.0006,
+ "loss": 4.12002420425415,
+ "step": 1008
+ },
+ {
+ "epoch": 14.0,
+ "eval_loss": 4.335351467132568,
+ "eval_runtime": 44.0523,
+ "eval_samples_per_second": 55.434,
+ "eval_steps_per_second": 3.473,
+ "step": 1008
+ },
+ {
+ "epoch": 14.013979903888162,
+ "grad_norm": 0.24570082128047943,
+ "learning_rate": 0.0006,
+ "loss": 4.1036176681518555,
+ "step": 1009
+ },
+ {
+ "epoch": 14.027959807776321,
+ "grad_norm": 0.2525855302810669,
+ "learning_rate": 0.0006,
+ "loss": 4.142077445983887,
+ "step": 1010
+ },
+ {
+ "epoch": 14.041939711664483,
+ "grad_norm": 0.2701111435890198,
+ "learning_rate": 0.0006,
+ "loss": 4.096988677978516,
+ "step": 1011
+ },
+ {
+ "epoch": 14.055919615552643,
+ "grad_norm": 0.28173309564590454,
+ "learning_rate": 0.0006,
+ "loss": 4.148448944091797,
+ "step": 1012
+ },
+ {
+ "epoch": 14.069899519440805,
+ "grad_norm": 0.2651294469833374,
+ "learning_rate": 0.0006,
+ "loss": 4.121731281280518,
+ "step": 1013
+ },
+ {
+ "epoch": 14.083879423328964,
+ "grad_norm": 0.21160121262073517,
+ "learning_rate": 0.0006,
+ "loss": 4.108980178833008,
+ "step": 1014
+ },
+ {
+ "epoch": 14.097859327217126,
+ "grad_norm": 0.24786953628063202,
+ "learning_rate": 0.0006,
+ "loss": 4.133942604064941,
+ "step": 1015
+ },
+ {
+ "epoch": 14.111839231105286,
+ "grad_norm": 0.2722747027873993,
+ "learning_rate": 0.0006,
+ "loss": 4.115242958068848,
+ "step": 1016
+ },
+ {
+ "epoch": 14.125819134993447,
+ "grad_norm": 0.273360013961792,
+ "learning_rate": 0.0006,
+ "loss": 4.059296607971191,
+ "step": 1017
+ },
+ {
+ "epoch": 14.139799038881607,
+ "grad_norm": 0.2541784942150116,
+ "learning_rate": 0.0006,
+ "loss": 4.118365287780762,
+ "step": 1018
+ },
+ {
+ "epoch": 14.153778942769769,
+ "grad_norm": 0.23806381225585938,
+ "learning_rate": 0.0006,
+ "loss": 4.102812767028809,
+ "step": 1019
+ },
+ {
+ "epoch": 14.167758846657929,
+ "grad_norm": 0.2541005313396454,
+ "learning_rate": 0.0006,
+ "loss": 4.093264579772949,
+ "step": 1020
+ },
+ {
+ "epoch": 14.18173875054609,
+ "grad_norm": 0.2619539499282837,
+ "learning_rate": 0.0006,
+ "loss": 4.114917278289795,
+ "step": 1021
+ },
+ {
+ "epoch": 14.19571865443425,
+ "grad_norm": 0.2466963529586792,
+ "learning_rate": 0.0006,
+ "loss": 4.098258972167969,
+ "step": 1022
+ },
+ {
+ "epoch": 14.209698558322412,
+ "grad_norm": 0.24341611564159393,
+ "learning_rate": 0.0006,
+ "loss": 4.109346389770508,
+ "step": 1023
+ },
+ {
+ "epoch": 14.223678462210572,
+ "grad_norm": 0.23977765440940857,
+ "learning_rate": 0.0006,
+ "loss": 4.106716156005859,
+ "step": 1024
+ },
+ {
+ "epoch": 14.237658366098733,
+ "grad_norm": 0.253528356552124,
+ "learning_rate": 0.0006,
+ "loss": 4.102226257324219,
+ "step": 1025
+ },
+ {
+ "epoch": 14.251638269986893,
+ "grad_norm": 0.26954543590545654,
+ "learning_rate": 0.0006,
+ "loss": 4.107413291931152,
+ "step": 1026
+ },
+ {
+ "epoch": 14.265618173875055,
+ "grad_norm": 0.2610514760017395,
+ "learning_rate": 0.0006,
+ "loss": 4.110824108123779,
+ "step": 1027
+ },
+ {
+ "epoch": 14.279598077763215,
+ "grad_norm": 0.2579168677330017,
+ "learning_rate": 0.0006,
+ "loss": 4.082438945770264,
+ "step": 1028
+ },
+ {
+ "epoch": 14.293577981651376,
+ "grad_norm": 0.26916536688804626,
+ "learning_rate": 0.0006,
+ "loss": 4.075734615325928,
+ "step": 1029
+ },
+ {
+ "epoch": 14.307557885539538,
+ "grad_norm": 0.2998618185520172,
+ "learning_rate": 0.0006,
+ "loss": 4.088419437408447,
+ "step": 1030
+ },
+ {
+ "epoch": 14.321537789427698,
+ "grad_norm": 0.3162737190723419,
+ "learning_rate": 0.0006,
+ "loss": 4.125833034515381,
+ "step": 1031
+ },
+ {
+ "epoch": 14.33551769331586,
+ "grad_norm": 0.318601131439209,
+ "learning_rate": 0.0006,
+ "loss": 4.077424049377441,
+ "step": 1032
+ },
+ {
+ "epoch": 14.349497597204019,
+ "grad_norm": 0.32113415002822876,
+ "learning_rate": 0.0006,
+ "loss": 4.113360404968262,
+ "step": 1033
+ },
+ {
+ "epoch": 14.36347750109218,
+ "grad_norm": 0.3150886297225952,
+ "learning_rate": 0.0006,
+ "loss": 4.100013732910156,
+ "step": 1034
+ },
+ {
+ "epoch": 14.37745740498034,
+ "grad_norm": 0.29279956221580505,
+ "learning_rate": 0.0006,
+ "loss": 4.136394500732422,
+ "step": 1035
+ },
+ {
+ "epoch": 14.391437308868502,
+ "grad_norm": 0.28532543778419495,
+ "learning_rate": 0.0006,
+ "loss": 4.138948440551758,
+ "step": 1036
+ },
+ {
+ "epoch": 14.405417212756662,
+ "grad_norm": 0.2825978398323059,
+ "learning_rate": 0.0006,
+ "loss": 4.112217903137207,
+ "step": 1037
+ },
+ {
+ "epoch": 14.419397116644824,
+ "grad_norm": 0.2891198694705963,
+ "learning_rate": 0.0006,
+ "loss": 4.102682113647461,
+ "step": 1038
+ },
+ {
+ "epoch": 14.433377020532983,
+ "grad_norm": 0.2917391061782837,
+ "learning_rate": 0.0006,
+ "loss": 4.120752811431885,
+ "step": 1039
+ },
+ {
+ "epoch": 14.447356924421145,
+ "grad_norm": 0.2589806914329529,
+ "learning_rate": 0.0006,
+ "loss": 4.130519390106201,
+ "step": 1040
+ },
+ {
+ "epoch": 14.461336828309305,
+ "grad_norm": 0.2674788534641266,
+ "learning_rate": 0.0006,
+ "loss": 4.130382537841797,
+ "step": 1041
+ },
+ {
+ "epoch": 14.475316732197467,
+ "grad_norm": 0.2820362150669098,
+ "learning_rate": 0.0006,
+ "loss": 4.13947868347168,
+ "step": 1042
+ },
+ {
+ "epoch": 14.489296636085626,
+ "grad_norm": 0.2650109529495239,
+ "learning_rate": 0.0006,
+ "loss": 4.130346775054932,
+ "step": 1043
+ },
+ {
+ "epoch": 14.503276539973788,
+ "grad_norm": 0.29137638211250305,
+ "learning_rate": 0.0006,
+ "loss": 4.055751800537109,
+ "step": 1044
+ },
+ {
+ "epoch": 14.517256443861948,
+ "grad_norm": 0.3232433497905731,
+ "learning_rate": 0.0006,
+ "loss": 4.114810943603516,
+ "step": 1045
+ },
+ {
+ "epoch": 14.53123634775011,
+ "grad_norm": 0.2724473476409912,
+ "learning_rate": 0.0006,
+ "loss": 4.088351249694824,
+ "step": 1046
+ },
+ {
+ "epoch": 14.54521625163827,
+ "grad_norm": 0.23994430899620056,
+ "learning_rate": 0.0006,
+ "loss": 4.110936164855957,
+ "step": 1047
+ },
+ {
+ "epoch": 14.55919615552643,
+ "grad_norm": 0.2422720044851303,
+ "learning_rate": 0.0006,
+ "loss": 4.132844924926758,
+ "step": 1048
+ },
+ {
+ "epoch": 14.57317605941459,
+ "grad_norm": 0.21148815751075745,
+ "learning_rate": 0.0006,
+ "loss": 4.102499961853027,
+ "step": 1049
+ },
+ {
+ "epoch": 14.587155963302752,
+ "grad_norm": 0.22221639752388,
+ "learning_rate": 0.0006,
+ "loss": 4.126241683959961,
+ "step": 1050
+ },
+ {
+ "epoch": 14.601135867190912,
+ "grad_norm": 0.2538735866546631,
+ "learning_rate": 0.0006,
+ "loss": 4.116817951202393,
+ "step": 1051
+ },
+ {
+ "epoch": 14.615115771079074,
+ "grad_norm": 0.2555900514125824,
+ "learning_rate": 0.0006,
+ "loss": 4.106309413909912,
+ "step": 1052
+ },
+ {
+ "epoch": 14.629095674967235,
+ "grad_norm": 0.24753783643245697,
+ "learning_rate": 0.0006,
+ "loss": 4.1015119552612305,
+ "step": 1053
+ },
+ {
+ "epoch": 14.643075578855395,
+ "grad_norm": 0.238885298371315,
+ "learning_rate": 0.0006,
+ "loss": 4.120419502258301,
+ "step": 1054
+ },
+ {
+ "epoch": 14.657055482743557,
+ "grad_norm": 0.22693610191345215,
+ "learning_rate": 0.0006,
+ "loss": 4.084968566894531,
+ "step": 1055
+ },
+ {
+ "epoch": 14.671035386631717,
+ "grad_norm": 0.2100025862455368,
+ "learning_rate": 0.0006,
+ "loss": 4.108001708984375,
+ "step": 1056
+ },
+ {
+ "epoch": 14.685015290519878,
+ "grad_norm": 0.20437054336071014,
+ "learning_rate": 0.0006,
+ "loss": 4.151417255401611,
+ "step": 1057
+ },
+ {
+ "epoch": 14.698995194408038,
+ "grad_norm": 0.1926720291376114,
+ "learning_rate": 0.0006,
+ "loss": 4.091334342956543,
+ "step": 1058
+ },
+ {
+ "epoch": 14.7129750982962,
+ "grad_norm": 0.2120140641927719,
+ "learning_rate": 0.0006,
+ "loss": 4.111706256866455,
+ "step": 1059
+ },
+ {
+ "epoch": 14.72695500218436,
+ "grad_norm": 0.22877076268196106,
+ "learning_rate": 0.0006,
+ "loss": 4.123166084289551,
+ "step": 1060
+ },
+ {
+ "epoch": 14.740934906072521,
+ "grad_norm": 0.22149473428726196,
+ "learning_rate": 0.0006,
+ "loss": 4.099740028381348,
+ "step": 1061
+ },
+ {
+ "epoch": 14.754914809960681,
+ "grad_norm": 0.2351604402065277,
+ "learning_rate": 0.0006,
+ "loss": 4.066174507141113,
+ "step": 1062
+ },
+ {
+ "epoch": 14.768894713848843,
+ "grad_norm": 0.22895802557468414,
+ "learning_rate": 0.0006,
+ "loss": 4.101897239685059,
+ "step": 1063
+ },
+ {
+ "epoch": 14.782874617737003,
+ "grad_norm": 0.22050750255584717,
+ "learning_rate": 0.0006,
+ "loss": 4.122953414916992,
+ "step": 1064
+ },
+ {
+ "epoch": 14.796854521625164,
+ "grad_norm": 0.23255324363708496,
+ "learning_rate": 0.0006,
+ "loss": 4.11297607421875,
+ "step": 1065
+ },
+ {
+ "epoch": 14.810834425513324,
+ "grad_norm": 0.24522703886032104,
+ "learning_rate": 0.0006,
+ "loss": 4.131030082702637,
+ "step": 1066
+ },
+ {
+ "epoch": 14.824814329401486,
+ "grad_norm": 0.2492702752351761,
+ "learning_rate": 0.0006,
+ "loss": 4.076324939727783,
+ "step": 1067
+ },
+ {
+ "epoch": 14.838794233289645,
+ "grad_norm": 0.24410948157310486,
+ "learning_rate": 0.0006,
+ "loss": 4.109020709991455,
+ "step": 1068
+ },
+ {
+ "epoch": 14.852774137177807,
+ "grad_norm": 0.2463168203830719,
+ "learning_rate": 0.0006,
+ "loss": 4.135679244995117,
+ "step": 1069
+ },
+ {
+ "epoch": 14.866754041065967,
+ "grad_norm": 0.2563146650791168,
+ "learning_rate": 0.0006,
+ "loss": 4.0958027839660645,
+ "step": 1070
+ },
+ {
+ "epoch": 14.880733944954128,
+ "grad_norm": 0.261167049407959,
+ "learning_rate": 0.0006,
+ "loss": 4.114803314208984,
+ "step": 1071
+ },
+ {
+ "epoch": 14.89471384884229,
+ "grad_norm": 0.2593795955181122,
+ "learning_rate": 0.0006,
+ "loss": 4.1210618019104,
+ "step": 1072
+ },
+ {
+ "epoch": 14.90869375273045,
+ "grad_norm": 0.27184173464775085,
+ "learning_rate": 0.0006,
+ "loss": 4.095145225524902,
+ "step": 1073
+ },
+ {
+ "epoch": 14.922673656618612,
+ "grad_norm": 0.25289732217788696,
+ "learning_rate": 0.0006,
+ "loss": 4.107388973236084,
+ "step": 1074
+ },
+ {
+ "epoch": 14.936653560506771,
+ "grad_norm": 0.2176840454339981,
+ "learning_rate": 0.0006,
+ "loss": 4.105966567993164,
+ "step": 1075
+ },
+ {
+ "epoch": 14.950633464394933,
+ "grad_norm": 0.20930173993110657,
+ "learning_rate": 0.0006,
+ "loss": 4.126853942871094,
+ "step": 1076
+ },
+ {
+ "epoch": 14.964613368283093,
+ "grad_norm": 0.20850051939487457,
+ "learning_rate": 0.0006,
+ "loss": 4.074934959411621,
+ "step": 1077
+ },
+ {
+ "epoch": 14.978593272171254,
+ "grad_norm": 0.21987544000148773,
+ "learning_rate": 0.0006,
+ "loss": 4.123321533203125,
+ "step": 1078
+ },
+ {
+ "epoch": 14.992573176059414,
+ "grad_norm": 0.23821689188480377,
+ "learning_rate": 0.0006,
+ "loss": 4.082647323608398,
+ "step": 1079
+ },
+ {
+ "epoch": 15.0,
+ "grad_norm": 0.2590881288051605,
+ "learning_rate": 0.0006,
+ "loss": 4.113482475280762,
+ "step": 1080
+ },
+ {
+ "epoch": 15.0,
+ "eval_loss": 4.286936283111572,
+ "eval_runtime": 44.2665,
+ "eval_samples_per_second": 55.166,
+ "eval_steps_per_second": 3.456,
+ "step": 1080
+ },
+ {
+ "epoch": 15.013979903888162,
+ "grad_norm": 0.27885961532592773,
+ "learning_rate": 0.0006,
+ "loss": 4.0825958251953125,
+ "step": 1081
+ },
+ {
+ "epoch": 15.027959807776321,
+ "grad_norm": 0.2751246690750122,
+ "learning_rate": 0.0006,
+ "loss": 4.049782752990723,
+ "step": 1082
+ },
+ {
+ "epoch": 15.041939711664483,
+ "grad_norm": 0.25238561630249023,
+ "learning_rate": 0.0006,
+ "loss": 4.067366600036621,
+ "step": 1083
+ },
+ {
+ "epoch": 15.055919615552643,
+ "grad_norm": 0.27481040358543396,
+ "learning_rate": 0.0006,
+ "loss": 4.089946746826172,
+ "step": 1084
+ },
+ {
+ "epoch": 15.069899519440805,
+ "grad_norm": 0.2666703164577484,
+ "learning_rate": 0.0006,
+ "loss": 4.071957588195801,
+ "step": 1085
+ },
+ {
+ "epoch": 15.083879423328964,
+ "grad_norm": 0.2532065212726593,
+ "learning_rate": 0.0006,
+ "loss": 4.091561794281006,
+ "step": 1086
+ },
+ {
+ "epoch": 15.097859327217126,
+ "grad_norm": 0.23562374711036682,
+ "learning_rate": 0.0006,
+ "loss": 4.074953079223633,
+ "step": 1087
+ },
+ {
+ "epoch": 15.111839231105286,
+ "grad_norm": 0.2498065084218979,
+ "learning_rate": 0.0006,
+ "loss": 4.056004047393799,
+ "step": 1088
+ },
+ {
+ "epoch": 15.125819134993447,
+ "grad_norm": 0.257046639919281,
+ "learning_rate": 0.0006,
+ "loss": 4.044149875640869,
+ "step": 1089
+ },
+ {
+ "epoch": 15.139799038881607,
+ "grad_norm": 0.2417808622121811,
+ "learning_rate": 0.0006,
+ "loss": 4.071811676025391,
+ "step": 1090
+ },
+ {
+ "epoch": 15.153778942769769,
+ "grad_norm": 0.24742013216018677,
+ "learning_rate": 0.0006,
+ "loss": 4.081482887268066,
+ "step": 1091
+ },
+ {
+ "epoch": 15.167758846657929,
+ "grad_norm": 0.2610231637954712,
+ "learning_rate": 0.0006,
+ "loss": 4.06953763961792,
+ "step": 1092
+ },
+ {
+ "epoch": 15.18173875054609,
+ "grad_norm": 0.24688200652599335,
+ "learning_rate": 0.0006,
+ "loss": 4.079700469970703,
+ "step": 1093
+ },
+ {
+ "epoch": 15.19571865443425,
+ "grad_norm": 0.2650167942047119,
+ "learning_rate": 0.0006,
+ "loss": 4.082088947296143,
+ "step": 1094
+ },
+ {
+ "epoch": 15.209698558322412,
+ "grad_norm": 0.25913330912590027,
+ "learning_rate": 0.0006,
+ "loss": 4.081713676452637,
+ "step": 1095
+ },
+ {
+ "epoch": 15.223678462210572,
+ "grad_norm": 0.2547631561756134,
+ "learning_rate": 0.0006,
+ "loss": 4.073573112487793,
+ "step": 1096
+ },
+ {
+ "epoch": 15.237658366098733,
+ "grad_norm": 0.2732609510421753,
+ "learning_rate": 0.0006,
+ "loss": 4.10186767578125,
+ "step": 1097
+ },
+ {
+ "epoch": 15.251638269986893,
+ "grad_norm": 0.2990017533302307,
+ "learning_rate": 0.0006,
+ "loss": 4.085466384887695,
+ "step": 1098
+ },
+ {
+ "epoch": 15.265618173875055,
+ "grad_norm": 0.30252209305763245,
+ "learning_rate": 0.0006,
+ "loss": 4.077337265014648,
+ "step": 1099
+ },
+ {
+ "epoch": 15.279598077763215,
+ "grad_norm": 0.30046045780181885,
+ "learning_rate": 0.0006,
+ "loss": 4.0895891189575195,
+ "step": 1100
+ },
+ {
+ "epoch": 15.293577981651376,
+ "grad_norm": 0.2779843211174011,
+ "learning_rate": 0.0006,
+ "loss": 4.060354709625244,
+ "step": 1101
+ },
+ {
+ "epoch": 15.307557885539538,
+ "grad_norm": 0.26914986968040466,
+ "learning_rate": 0.0006,
+ "loss": 4.07314395904541,
+ "step": 1102
+ },
+ {
+ "epoch": 15.321537789427698,
+ "grad_norm": 0.24605873227119446,
+ "learning_rate": 0.0006,
+ "loss": 4.051377296447754,
+ "step": 1103
+ },
+ {
+ "epoch": 15.33551769331586,
+ "grad_norm": 0.25634095072746277,
+ "learning_rate": 0.0006,
+ "loss": 4.082427024841309,
+ "step": 1104
+ },
+ {
+ "epoch": 15.349497597204019,
+ "grad_norm": 0.2888158857822418,
+ "learning_rate": 0.0006,
+ "loss": 4.074253082275391,
+ "step": 1105
+ },
+ {
+ "epoch": 15.36347750109218,
+ "grad_norm": 0.2758261561393738,
+ "learning_rate": 0.0006,
+ "loss": 4.08344841003418,
+ "step": 1106
+ },
+ {
+ "epoch": 15.37745740498034,
+ "grad_norm": 0.26937270164489746,
+ "learning_rate": 0.0006,
+ "loss": 4.063424587249756,
+ "step": 1107
+ },
+ {
+ "epoch": 15.391437308868502,
+ "grad_norm": 0.2739955484867096,
+ "learning_rate": 0.0006,
+ "loss": 4.08005952835083,
+ "step": 1108
+ },
+ {
+ "epoch": 15.405417212756662,
+ "grad_norm": 0.2635386288166046,
+ "learning_rate": 0.0006,
+ "loss": 4.087360382080078,
+ "step": 1109
+ },
+ {
+ "epoch": 15.419397116644824,
+ "grad_norm": 0.2619768977165222,
+ "learning_rate": 0.0006,
+ "loss": 4.072653770446777,
+ "step": 1110
+ },
+ {
+ "epoch": 15.433377020532983,
+ "grad_norm": 0.24154804646968842,
+ "learning_rate": 0.0006,
+ "loss": 4.084464073181152,
+ "step": 1111
+ },
+ {
+ "epoch": 15.447356924421145,
+ "grad_norm": 0.24236027896404266,
+ "learning_rate": 0.0006,
+ "loss": 4.078777313232422,
+ "step": 1112
+ },
+ {
+ "epoch": 15.461336828309305,
+ "grad_norm": 0.24653038382530212,
+ "learning_rate": 0.0006,
+ "loss": 4.075024604797363,
+ "step": 1113
+ },
+ {
+ "epoch": 15.475316732197467,
+ "grad_norm": 0.27106523513793945,
+ "learning_rate": 0.0006,
+ "loss": 4.060937881469727,
+ "step": 1114
+ },
+ {
+ "epoch": 15.489296636085626,
+ "grad_norm": 0.25109633803367615,
+ "learning_rate": 0.0006,
+ "loss": 4.081971168518066,
+ "step": 1115
+ },
+ {
+ "epoch": 15.503276539973788,
+ "grad_norm": 0.23452287912368774,
+ "learning_rate": 0.0006,
+ "loss": 4.0762834548950195,
+ "step": 1116
+ },
+ {
+ "epoch": 15.517256443861948,
+ "grad_norm": 0.25415024161338806,
+ "learning_rate": 0.0006,
+ "loss": 4.069386959075928,
+ "step": 1117
+ },
+ {
+ "epoch": 15.53123634775011,
+ "grad_norm": 0.25448229908943176,
+ "learning_rate": 0.0006,
+ "loss": 4.075098514556885,
+ "step": 1118
+ },
+ {
+ "epoch": 15.54521625163827,
+ "grad_norm": 0.25679755210876465,
+ "learning_rate": 0.0006,
+ "loss": 4.097431182861328,
+ "step": 1119
+ },
+ {
+ "epoch": 15.55919615552643,
+ "grad_norm": 0.25973212718963623,
+ "learning_rate": 0.0006,
+ "loss": 4.058948516845703,
+ "step": 1120
+ },
+ {
+ "epoch": 15.57317605941459,
+ "grad_norm": 0.24511456489562988,
+ "learning_rate": 0.0006,
+ "loss": 4.092263698577881,
+ "step": 1121
+ },
+ {
+ "epoch": 15.587155963302752,
+ "grad_norm": 0.22949442267417908,
+ "learning_rate": 0.0006,
+ "loss": 4.0526604652404785,
+ "step": 1122
+ },
+ {
+ "epoch": 15.601135867190912,
+ "grad_norm": 0.22486285865306854,
+ "learning_rate": 0.0006,
+ "loss": 4.051939010620117,
+ "step": 1123
+ },
+ {
+ "epoch": 15.615115771079074,
+ "grad_norm": 0.22183601558208466,
+ "learning_rate": 0.0006,
+ "loss": 4.065430641174316,
+ "step": 1124
+ },
+ {
+ "epoch": 15.629095674967235,
+ "grad_norm": 0.2531328797340393,
+ "learning_rate": 0.0006,
+ "loss": 4.069165229797363,
+ "step": 1125
+ },
+ {
+ "epoch": 15.643075578855395,
+ "grad_norm": 0.24403320252895355,
+ "learning_rate": 0.0006,
+ "loss": 4.055041790008545,
+ "step": 1126
+ },
+ {
+ "epoch": 15.657055482743557,
+ "grad_norm": 0.24504756927490234,
+ "learning_rate": 0.0006,
+ "loss": 4.035850524902344,
+ "step": 1127
+ },
+ {
+ "epoch": 15.671035386631717,
+ "grad_norm": 0.23812057077884674,
+ "learning_rate": 0.0006,
+ "loss": 4.049278259277344,
+ "step": 1128
+ },
+ {
+ "epoch": 15.685015290519878,
+ "grad_norm": 0.23694153130054474,
+ "learning_rate": 0.0006,
+ "loss": 4.065816402435303,
+ "step": 1129
+ },
+ {
+ "epoch": 15.698995194408038,
+ "grad_norm": 0.23252786695957184,
+ "learning_rate": 0.0006,
+ "loss": 4.05952262878418,
+ "step": 1130
+ },
+ {
+ "epoch": 15.7129750982962,
+ "grad_norm": 0.2243805080652237,
+ "learning_rate": 0.0006,
+ "loss": 4.058291435241699,
+ "step": 1131
+ },
+ {
+ "epoch": 15.72695500218436,
+ "grad_norm": 0.2200988084077835,
+ "learning_rate": 0.0006,
+ "loss": 4.040788650512695,
+ "step": 1132
+ },
+ {
+ "epoch": 15.740934906072521,
+ "grad_norm": 0.21460631489753723,
+ "learning_rate": 0.0006,
+ "loss": 4.072552680969238,
+ "step": 1133
+ },
+ {
+ "epoch": 15.754914809960681,
+ "grad_norm": 0.2056441456079483,
+ "learning_rate": 0.0006,
+ "loss": 4.059467315673828,
+ "step": 1134
+ },
+ {
+ "epoch": 15.768894713848843,
+ "grad_norm": 0.2068045437335968,
+ "learning_rate": 0.0006,
+ "loss": 4.063803195953369,
+ "step": 1135
+ },
+ {
+ "epoch": 15.782874617737003,
+ "grad_norm": 0.21307601034641266,
+ "learning_rate": 0.0006,
+ "loss": 4.093092918395996,
+ "step": 1136
+ },
+ {
+ "epoch": 15.796854521625164,
+ "grad_norm": 0.20729634165763855,
+ "learning_rate": 0.0006,
+ "loss": 4.066030502319336,
+ "step": 1137
+ },
+ {
+ "epoch": 15.810834425513324,
+ "grad_norm": 0.2097514122724533,
+ "learning_rate": 0.0006,
+ "loss": 4.077326774597168,
+ "step": 1138
+ },
+ {
+ "epoch": 15.824814329401486,
+ "grad_norm": 0.21884000301361084,
+ "learning_rate": 0.0006,
+ "loss": 4.0595598220825195,
+ "step": 1139
+ },
+ {
+ "epoch": 15.838794233289645,
+ "grad_norm": 0.22220250964164734,
+ "learning_rate": 0.0006,
+ "loss": 4.061574459075928,
+ "step": 1140
+ },
+ {
+ "epoch": 15.852774137177807,
+ "grad_norm": 0.23189949989318848,
+ "learning_rate": 0.0006,
+ "loss": 4.0504045486450195,
+ "step": 1141
+ },
+ {
+ "epoch": 15.866754041065967,
+ "grad_norm": 0.226649671792984,
+ "learning_rate": 0.0006,
+ "loss": 4.060986518859863,
+ "step": 1142
+ },
+ {
+ "epoch": 15.880733944954128,
+ "grad_norm": 0.2456834763288498,
+ "learning_rate": 0.0006,
+ "loss": 4.038525581359863,
+ "step": 1143
+ },
+ {
+ "epoch": 15.89471384884229,
+ "grad_norm": 0.2818352282047272,
+ "learning_rate": 0.0006,
+ "loss": 4.062709331512451,
+ "step": 1144
+ },
+ {
+ "epoch": 15.90869375273045,
+ "grad_norm": 0.2850170135498047,
+ "learning_rate": 0.0006,
+ "loss": 4.0683274269104,
+ "step": 1145
+ },
+ {
+ "epoch": 15.922673656618612,
+ "grad_norm": 0.27691730856895447,
+ "learning_rate": 0.0006,
+ "loss": 4.076540470123291,
+ "step": 1146
+ },
+ {
+ "epoch": 15.936653560506771,
+ "grad_norm": 0.2685548961162567,
+ "learning_rate": 0.0006,
+ "loss": 4.048116683959961,
+ "step": 1147
+ },
+ {
+ "epoch": 15.950633464394933,
+ "grad_norm": 0.2452288419008255,
+ "learning_rate": 0.0006,
+ "loss": 4.06640625,
+ "step": 1148
+ },
+ {
+ "epoch": 15.964613368283093,
+ "grad_norm": 0.2601441740989685,
+ "learning_rate": 0.0006,
+ "loss": 4.073277473449707,
+ "step": 1149
+ },
+ {
+ "epoch": 15.978593272171254,
+ "grad_norm": 0.2748197913169861,
+ "learning_rate": 0.0006,
+ "loss": 4.0332536697387695,
+ "step": 1150
+ },
+ {
+ "epoch": 15.992573176059414,
+ "grad_norm": 0.27249959111213684,
+ "learning_rate": 0.0006,
+ "loss": 3.9952516555786133,
+ "step": 1151
+ },
+ {
+ "epoch": 16.0,
+ "grad_norm": 0.3475601375102997,
+ "learning_rate": 0.0006,
+ "loss": 4.040761947631836,
+ "step": 1152
+ },
+ {
+ "epoch": 16.0,
+ "eval_loss": 4.237997531890869,
+ "eval_runtime": 43.8692,
+ "eval_samples_per_second": 55.665,
+ "eval_steps_per_second": 3.488,
+ "step": 1152
+ },
+ {
+ "epoch": 16.01397990388816,
+ "grad_norm": 0.3365611433982849,
+ "learning_rate": 0.0006,
+ "loss": 4.031302452087402,
+ "step": 1153
+ },
+ {
+ "epoch": 16.027959807776323,
+ "grad_norm": 0.3020530641078949,
+ "learning_rate": 0.0006,
+ "loss": 4.036273956298828,
+ "step": 1154
+ },
+ {
+ "epoch": 16.041939711664483,
+ "grad_norm": 0.25277993083000183,
+ "learning_rate": 0.0006,
+ "loss": 4.007067680358887,
+ "step": 1155
+ },
+ {
+ "epoch": 16.055919615552643,
+ "grad_norm": 0.24762840569019318,
+ "learning_rate": 0.0006,
+ "loss": 4.046561241149902,
+ "step": 1156
+ },
+ {
+ "epoch": 16.069899519440803,
+ "grad_norm": 0.25236397981643677,
+ "learning_rate": 0.0006,
+ "loss": 4.061616897583008,
+ "step": 1157
+ },
+ {
+ "epoch": 16.083879423328966,
+ "grad_norm": 0.22789105772972107,
+ "learning_rate": 0.0006,
+ "loss": 4.010061740875244,
+ "step": 1158
+ },
+ {
+ "epoch": 16.097859327217126,
+ "grad_norm": 0.21866244077682495,
+ "learning_rate": 0.0006,
+ "loss": 4.0181097984313965,
+ "step": 1159
+ },
+ {
+ "epoch": 16.111839231105286,
+ "grad_norm": 0.21889029443264008,
+ "learning_rate": 0.0006,
+ "loss": 4.012239456176758,
+ "step": 1160
+ },
+ {
+ "epoch": 16.125819134993446,
+ "grad_norm": 0.23002485930919647,
+ "learning_rate": 0.0006,
+ "loss": 4.034092426300049,
+ "step": 1161
+ },
+ {
+ "epoch": 16.13979903888161,
+ "grad_norm": 0.2271798551082611,
+ "learning_rate": 0.0006,
+ "loss": 4.026222229003906,
+ "step": 1162
+ },
+ {
+ "epoch": 16.15377894276977,
+ "grad_norm": 0.238200843334198,
+ "learning_rate": 0.0006,
+ "loss": 4.044692039489746,
+ "step": 1163
+ },
+ {
+ "epoch": 16.16775884665793,
+ "grad_norm": 0.2281467169523239,
+ "learning_rate": 0.0006,
+ "loss": 4.032305717468262,
+ "step": 1164
+ },
+ {
+ "epoch": 16.18173875054609,
+ "grad_norm": 0.2213946431875229,
+ "learning_rate": 0.0006,
+ "loss": 4.048737525939941,
+ "step": 1165
+ },
+ {
+ "epoch": 16.195718654434252,
+ "grad_norm": 0.26638558506965637,
+ "learning_rate": 0.0006,
+ "loss": 4.006335258483887,
+ "step": 1166
+ },
+ {
+ "epoch": 16.209698558322412,
+ "grad_norm": 0.2780219316482544,
+ "learning_rate": 0.0006,
+ "loss": 4.049234390258789,
+ "step": 1167
+ },
+ {
+ "epoch": 16.22367846221057,
+ "grad_norm": 0.27425870299339294,
+ "learning_rate": 0.0006,
+ "loss": 4.017177104949951,
+ "step": 1168
+ },
+ {
+ "epoch": 16.23765836609873,
+ "grad_norm": 0.2596667408943176,
+ "learning_rate": 0.0006,
+ "loss": 4.022942543029785,
+ "step": 1169
+ },
+ {
+ "epoch": 16.251638269986895,
+ "grad_norm": 0.26972314715385437,
+ "learning_rate": 0.0006,
+ "loss": 4.035310745239258,
+ "step": 1170
+ },
+ {
+ "epoch": 16.265618173875055,
+ "grad_norm": 0.2677772045135498,
+ "learning_rate": 0.0006,
+ "loss": 4.0280561447143555,
+ "step": 1171
+ },
+ {
+ "epoch": 16.279598077763215,
+ "grad_norm": 0.25433358550071716,
+ "learning_rate": 0.0006,
+ "loss": 4.03616189956665,
+ "step": 1172
+ },
+ {
+ "epoch": 16.293577981651374,
+ "grad_norm": 0.2583644688129425,
+ "learning_rate": 0.0006,
+ "loss": 4.073624134063721,
+ "step": 1173
+ },
+ {
+ "epoch": 16.307557885539538,
+ "grad_norm": 0.25437524914741516,
+ "learning_rate": 0.0006,
+ "loss": 4.057926654815674,
+ "step": 1174
+ },
+ {
+ "epoch": 16.321537789427698,
+ "grad_norm": 0.2819201350212097,
+ "learning_rate": 0.0006,
+ "loss": 4.020838737487793,
+ "step": 1175
+ },
+ {
+ "epoch": 16.335517693315857,
+ "grad_norm": 0.32689282298088074,
+ "learning_rate": 0.0006,
+ "loss": 4.062448501586914,
+ "step": 1176
+ },
+ {
+ "epoch": 16.34949759720402,
+ "grad_norm": 0.33002278208732605,
+ "learning_rate": 0.0006,
+ "loss": 4.052059173583984,
+ "step": 1177
+ },
+ {
+ "epoch": 16.36347750109218,
+ "grad_norm": 0.32472696900367737,
+ "learning_rate": 0.0006,
+ "loss": 4.042375564575195,
+ "step": 1178
+ },
+ {
+ "epoch": 16.37745740498034,
+ "grad_norm": 0.35279813408851624,
+ "learning_rate": 0.0006,
+ "loss": 4.028722763061523,
+ "step": 1179
+ },
+ {
+ "epoch": 16.3914373088685,
+ "grad_norm": 0.3243204951286316,
+ "learning_rate": 0.0006,
+ "loss": 4.045693874359131,
+ "step": 1180
+ },
+ {
+ "epoch": 16.405417212756664,
+ "grad_norm": 0.32171115279197693,
+ "learning_rate": 0.0006,
+ "loss": 4.018350124359131,
+ "step": 1181
+ },
+ {
+ "epoch": 16.419397116644824,
+ "grad_norm": 0.31459906697273254,
+ "learning_rate": 0.0006,
+ "loss": 4.039547443389893,
+ "step": 1182
+ },
+ {
+ "epoch": 16.433377020532983,
+ "grad_norm": 0.35038673877716064,
+ "learning_rate": 0.0006,
+ "loss": 4.005928039550781,
+ "step": 1183
+ },
+ {
+ "epoch": 16.447356924421143,
+ "grad_norm": 0.34110963344573975,
+ "learning_rate": 0.0006,
+ "loss": 4.042272090911865,
+ "step": 1184
+ },
+ {
+ "epoch": 16.461336828309307,
+ "grad_norm": 0.33760902285575867,
+ "learning_rate": 0.0006,
+ "loss": 4.02886962890625,
+ "step": 1185
+ },
+ {
+ "epoch": 16.475316732197467,
+ "grad_norm": 0.3162464499473572,
+ "learning_rate": 0.0006,
+ "loss": 4.059924125671387,
+ "step": 1186
+ },
+ {
+ "epoch": 16.489296636085626,
+ "grad_norm": 0.2667233645915985,
+ "learning_rate": 0.0006,
+ "loss": 4.069073677062988,
+ "step": 1187
+ },
+ {
+ "epoch": 16.503276539973786,
+ "grad_norm": 0.22626568377017975,
+ "learning_rate": 0.0006,
+ "loss": 4.044912338256836,
+ "step": 1188
+ },
+ {
+ "epoch": 16.51725644386195,
+ "grad_norm": 0.203303262591362,
+ "learning_rate": 0.0006,
+ "loss": 4.025210380554199,
+ "step": 1189
+ },
+ {
+ "epoch": 16.53123634775011,
+ "grad_norm": 0.2108820080757141,
+ "learning_rate": 0.0006,
+ "loss": 4.035998821258545,
+ "step": 1190
+ },
+ {
+ "epoch": 16.54521625163827,
+ "grad_norm": 0.20451335608959198,
+ "learning_rate": 0.0006,
+ "loss": 4.043377876281738,
+ "step": 1191
+ },
+ {
+ "epoch": 16.55919615552643,
+ "grad_norm": 0.23348836600780487,
+ "learning_rate": 0.0006,
+ "loss": 4.033735275268555,
+ "step": 1192
+ },
+ {
+ "epoch": 16.573176059414592,
+ "grad_norm": 0.24438607692718506,
+ "learning_rate": 0.0006,
+ "loss": 4.071747779846191,
+ "step": 1193
+ },
+ {
+ "epoch": 16.587155963302752,
+ "grad_norm": 0.24233631789684296,
+ "learning_rate": 0.0006,
+ "loss": 4.0138702392578125,
+ "step": 1194
+ },
+ {
+ "epoch": 16.601135867190912,
+ "grad_norm": 0.21625740826129913,
+ "learning_rate": 0.0006,
+ "loss": 4.013422012329102,
+ "step": 1195
+ },
+ {
+ "epoch": 16.615115771079076,
+ "grad_norm": 0.22447720170021057,
+ "learning_rate": 0.0006,
+ "loss": 4.056326866149902,
+ "step": 1196
+ },
+ {
+ "epoch": 16.629095674967235,
+ "grad_norm": 0.21899616718292236,
+ "learning_rate": 0.0006,
+ "loss": 4.006134033203125,
+ "step": 1197
+ },
+ {
+ "epoch": 16.643075578855395,
+ "grad_norm": 0.191362664103508,
+ "learning_rate": 0.0006,
+ "loss": 4.036748886108398,
+ "step": 1198
+ },
+ {
+ "epoch": 16.657055482743555,
+ "grad_norm": 0.20203463733196259,
+ "learning_rate": 0.0006,
+ "loss": 4.006264686584473,
+ "step": 1199
+ },
+ {
+ "epoch": 16.67103538663172,
+ "grad_norm": 0.20209139585494995,
+ "learning_rate": 0.0006,
+ "loss": 4.059018135070801,
+ "step": 1200
+ },
+ {
+ "epoch": 16.68501529051988,
+ "grad_norm": 0.20811820030212402,
+ "learning_rate": 0.0006,
+ "loss": 4.054325103759766,
+ "step": 1201
+ },
+ {
+ "epoch": 16.698995194408038,
+ "grad_norm": 0.22448928654193878,
+ "learning_rate": 0.0006,
+ "loss": 3.996121406555176,
+ "step": 1202
+ },
+ {
+ "epoch": 16.712975098296198,
+ "grad_norm": 0.21692240238189697,
+ "learning_rate": 0.0006,
+ "loss": 4.042046546936035,
+ "step": 1203
+ },
+ {
+ "epoch": 16.72695500218436,
+ "grad_norm": 0.20688563585281372,
+ "learning_rate": 0.0006,
+ "loss": 4.002251625061035,
+ "step": 1204
+ },
+ {
+ "epoch": 16.74093490607252,
+ "grad_norm": 0.1835535764694214,
+ "learning_rate": 0.0006,
+ "loss": 4.02545166015625,
+ "step": 1205
+ },
+ {
+ "epoch": 16.75491480996068,
+ "grad_norm": 0.20532558858394623,
+ "learning_rate": 0.0006,
+ "loss": 4.039333343505859,
+ "step": 1206
+ },
+ {
+ "epoch": 16.76889471384884,
+ "grad_norm": 0.2214215099811554,
+ "learning_rate": 0.0006,
+ "loss": 4.037858486175537,
+ "step": 1207
+ },
+ {
+ "epoch": 16.782874617737004,
+ "grad_norm": 0.24926038086414337,
+ "learning_rate": 0.0006,
+ "loss": 4.024799346923828,
+ "step": 1208
+ },
+ {
+ "epoch": 16.796854521625164,
+ "grad_norm": 0.26057952642440796,
+ "learning_rate": 0.0006,
+ "loss": 4.042788505554199,
+ "step": 1209
+ },
+ {
+ "epoch": 16.810834425513324,
+ "grad_norm": 0.2501208782196045,
+ "learning_rate": 0.0006,
+ "loss": 4.051809310913086,
+ "step": 1210
+ },
+ {
+ "epoch": 16.824814329401484,
+ "grad_norm": 0.21760012209415436,
+ "learning_rate": 0.0006,
+ "loss": 4.063589096069336,
+ "step": 1211
+ },
+ {
+ "epoch": 16.838794233289647,
+ "grad_norm": 0.2243622988462448,
+ "learning_rate": 0.0006,
+ "loss": 4.008829593658447,
+ "step": 1212
+ },
+ {
+ "epoch": 16.852774137177807,
+ "grad_norm": 0.2399163395166397,
+ "learning_rate": 0.0006,
+ "loss": 4.013262748718262,
+ "step": 1213
+ },
+ {
+ "epoch": 16.866754041065967,
+ "grad_norm": 0.23187831044197083,
+ "learning_rate": 0.0006,
+ "loss": 4.023053169250488,
+ "step": 1214
+ },
+ {
+ "epoch": 16.88073394495413,
+ "grad_norm": 0.23723892867565155,
+ "learning_rate": 0.0006,
+ "loss": 3.991321563720703,
+ "step": 1215
+ },
+ {
+ "epoch": 16.89471384884229,
+ "grad_norm": 0.21766342222690582,
+ "learning_rate": 0.0006,
+ "loss": 4.0250773429870605,
+ "step": 1216
+ },
+ {
+ "epoch": 16.90869375273045,
+ "grad_norm": 0.20715023577213287,
+ "learning_rate": 0.0006,
+ "loss": 4.063642978668213,
+ "step": 1217
+ },
+ {
+ "epoch": 16.92267365661861,
+ "grad_norm": 0.20165133476257324,
+ "learning_rate": 0.0006,
+ "loss": 3.9951367378234863,
+ "step": 1218
+ },
+ {
+ "epoch": 16.936653560506773,
+ "grad_norm": 0.19956178963184357,
+ "learning_rate": 0.0006,
+ "loss": 4.025641441345215,
+ "step": 1219
+ },
+ {
+ "epoch": 16.950633464394933,
+ "grad_norm": 0.2175494134426117,
+ "learning_rate": 0.0006,
+ "loss": 4.030346393585205,
+ "step": 1220
+ },
+ {
+ "epoch": 16.964613368283093,
+ "grad_norm": 0.22365593910217285,
+ "learning_rate": 0.0006,
+ "loss": 4.018105506896973,
+ "step": 1221
+ },
+ {
+ "epoch": 16.978593272171253,
+ "grad_norm": 0.21251538395881653,
+ "learning_rate": 0.0006,
+ "loss": 4.023580074310303,
+ "step": 1222
+ },
+ {
+ "epoch": 16.992573176059416,
+ "grad_norm": 0.2230125218629837,
+ "learning_rate": 0.0006,
+ "loss": 4.001980304718018,
+ "step": 1223
+ },
+ {
+ "epoch": 17.0,
+ "grad_norm": 0.24261972308158875,
+ "learning_rate": 0.0006,
+ "loss": 4.081348896026611,
+ "step": 1224
+ },
+ {
+ "epoch": 17.0,
+ "eval_loss": 4.225194931030273,
+ "eval_runtime": 44.247,
+ "eval_samples_per_second": 55.19,
+ "eval_steps_per_second": 3.458,
+ "step": 1224
+ },
+ {
+ "epoch": 17.01397990388816,
+ "grad_norm": 0.2438880205154419,
+ "learning_rate": 0.0006,
+ "loss": 4.0164794921875,
+ "step": 1225
+ },
+ {
+ "epoch": 17.027959807776323,
+ "grad_norm": 0.22459383308887482,
+ "learning_rate": 0.0006,
+ "loss": 3.991623878479004,
+ "step": 1226
+ },
+ {
+ "epoch": 17.041939711664483,
+ "grad_norm": 0.25021040439605713,
+ "learning_rate": 0.0006,
+ "loss": 4.003020286560059,
+ "step": 1227
+ },
+ {
+ "epoch": 17.055919615552643,
+ "grad_norm": 0.30358025431632996,
+ "learning_rate": 0.0006,
+ "loss": 3.980921983718872,
+ "step": 1228
+ },
+ {
+ "epoch": 17.069899519440803,
+ "grad_norm": 0.27313271164894104,
+ "learning_rate": 0.0006,
+ "loss": 3.992398977279663,
+ "step": 1229
+ },
+ {
+ "epoch": 17.083879423328966,
+ "grad_norm": 0.2293211966753006,
+ "learning_rate": 0.0006,
+ "loss": 4.02568244934082,
+ "step": 1230
+ },
+ {
+ "epoch": 17.097859327217126,
+ "grad_norm": 0.2363300621509552,
+ "learning_rate": 0.0006,
+ "loss": 3.977229356765747,
+ "step": 1231
+ },
+ {
+ "epoch": 17.111839231105286,
+ "grad_norm": 0.2809674143791199,
+ "learning_rate": 0.0006,
+ "loss": 3.9720497131347656,
+ "step": 1232
+ },
+ {
+ "epoch": 17.125819134993446,
+ "grad_norm": 0.2913855016231537,
+ "learning_rate": 0.0006,
+ "loss": 3.979529857635498,
+ "step": 1233
+ },
+ {
+ "epoch": 17.13979903888161,
+ "grad_norm": 0.2920287251472473,
+ "learning_rate": 0.0006,
+ "loss": 3.9678473472595215,
+ "step": 1234
+ },
+ {
+ "epoch": 17.15377894276977,
+ "grad_norm": 0.2521543502807617,
+ "learning_rate": 0.0006,
+ "loss": 3.9912607669830322,
+ "step": 1235
+ },
+ {
+ "epoch": 17.16775884665793,
+ "grad_norm": 0.22844268381595612,
+ "learning_rate": 0.0006,
+ "loss": 3.9898228645324707,
+ "step": 1236
+ },
+ {
+ "epoch": 17.18173875054609,
+ "grad_norm": 0.2199884057044983,
+ "learning_rate": 0.0006,
+ "loss": 4.0050740242004395,
+ "step": 1237
+ },
+ {
+ "epoch": 17.195718654434252,
+ "grad_norm": 0.23072892427444458,
+ "learning_rate": 0.0006,
+ "loss": 3.9957475662231445,
+ "step": 1238
+ },
+ {
+ "epoch": 17.209698558322412,
+ "grad_norm": 0.2034899890422821,
+ "learning_rate": 0.0006,
+ "loss": 3.9672317504882812,
+ "step": 1239
+ },
+ {
+ "epoch": 17.22367846221057,
+ "grad_norm": 0.21826180815696716,
+ "learning_rate": 0.0006,
+ "loss": 3.98543119430542,
+ "step": 1240
+ },
+ {
+ "epoch": 17.23765836609873,
+ "grad_norm": 0.21203237771987915,
+ "learning_rate": 0.0006,
+ "loss": 3.9971959590911865,
+ "step": 1241
+ },
+ {
+ "epoch": 17.251638269986895,
+ "grad_norm": 0.22139234840869904,
+ "learning_rate": 0.0006,
+ "loss": 4.017539978027344,
+ "step": 1242
+ },
+ {
+ "epoch": 17.265618173875055,
+ "grad_norm": 0.21553276479244232,
+ "learning_rate": 0.0006,
+ "loss": 3.98740553855896,
+ "step": 1243
+ },
+ {
+ "epoch": 17.279598077763215,
+ "grad_norm": 0.23259080946445465,
+ "learning_rate": 0.0006,
+ "loss": 3.9963035583496094,
+ "step": 1244
+ },
+ {
+ "epoch": 17.293577981651374,
+ "grad_norm": 0.2527932822704315,
+ "learning_rate": 0.0006,
+ "loss": 4.0202956199646,
+ "step": 1245
+ },
+ {
+ "epoch": 17.307557885539538,
+ "grad_norm": 0.28669068217277527,
+ "learning_rate": 0.0006,
+ "loss": 3.9947609901428223,
+ "step": 1246
+ },
+ {
+ "epoch": 17.321537789427698,
+ "grad_norm": 0.341602623462677,
+ "learning_rate": 0.0006,
+ "loss": 3.997032642364502,
+ "step": 1247
+ },
+ {
+ "epoch": 17.335517693315857,
+ "grad_norm": 0.3364104926586151,
+ "learning_rate": 0.0006,
+ "loss": 3.9881834983825684,
+ "step": 1248
+ },
+ {
+ "epoch": 17.34949759720402,
+ "grad_norm": 0.2979278266429901,
+ "learning_rate": 0.0006,
+ "loss": 4.045898914337158,
+ "step": 1249
+ },
+ {
+ "epoch": 17.36347750109218,
+ "grad_norm": 0.2857462465763092,
+ "learning_rate": 0.0006,
+ "loss": 4.0085272789001465,
+ "step": 1250
+ },
+ {
+ "epoch": 17.37745740498034,
+ "grad_norm": 0.2689058780670166,
+ "learning_rate": 0.0006,
+ "loss": 4.021465301513672,
+ "step": 1251
+ },
+ {
+ "epoch": 17.3914373088685,
+ "grad_norm": 0.24943363666534424,
+ "learning_rate": 0.0006,
+ "loss": 4.003451347351074,
+ "step": 1252
+ },
+ {
+ "epoch": 17.405417212756664,
+ "grad_norm": 0.2635347843170166,
+ "learning_rate": 0.0006,
+ "loss": 3.9837827682495117,
+ "step": 1253
+ },
+ {
+ "epoch": 17.419397116644824,
+ "grad_norm": 0.29126450419425964,
+ "learning_rate": 0.0006,
+ "loss": 3.9857311248779297,
+ "step": 1254
+ },
+ {
+ "epoch": 17.433377020532983,
+ "grad_norm": 0.3166918456554413,
+ "learning_rate": 0.0006,
+ "loss": 3.9842967987060547,
+ "step": 1255
+ },
+ {
+ "epoch": 17.447356924421143,
+ "grad_norm": 0.27869969606399536,
+ "learning_rate": 0.0006,
+ "loss": 4.012607574462891,
+ "step": 1256
+ },
+ {
+ "epoch": 17.461336828309307,
+ "grad_norm": 0.23719419538974762,
+ "learning_rate": 0.0006,
+ "loss": 3.981034755706787,
+ "step": 1257
+ },
+ {
+ "epoch": 17.475316732197467,
+ "grad_norm": 0.22687610983848572,
+ "learning_rate": 0.0006,
+ "loss": 4.011059761047363,
+ "step": 1258
+ },
+ {
+ "epoch": 17.489296636085626,
+ "grad_norm": 0.22034095227718353,
+ "learning_rate": 0.0006,
+ "loss": 4.015044689178467,
+ "step": 1259
+ },
+ {
+ "epoch": 17.503276539973786,
+ "grad_norm": 0.21208405494689941,
+ "learning_rate": 0.0006,
+ "loss": 4.003793716430664,
+ "step": 1260
+ },
+ {
+ "epoch": 17.51725644386195,
+ "grad_norm": 0.21759214997291565,
+ "learning_rate": 0.0006,
+ "loss": 3.978652238845825,
+ "step": 1261
+ },
+ {
+ "epoch": 17.53123634775011,
+ "grad_norm": 0.22481068968772888,
+ "learning_rate": 0.0006,
+ "loss": 4.034845352172852,
+ "step": 1262
+ },
+ {
+ "epoch": 17.54521625163827,
+ "grad_norm": 0.20376387238502502,
+ "learning_rate": 0.0006,
+ "loss": 3.990541934967041,
+ "step": 1263
+ },
+ {
+ "epoch": 17.55919615552643,
+ "grad_norm": 0.20459355413913727,
+ "learning_rate": 0.0006,
+ "loss": 4.006990432739258,
+ "step": 1264
+ },
+ {
+ "epoch": 17.573176059414592,
+ "grad_norm": 0.19306913018226624,
+ "learning_rate": 0.0006,
+ "loss": 3.993408679962158,
+ "step": 1265
+ },
+ {
+ "epoch": 17.587155963302752,
+ "grad_norm": 0.20727239549160004,
+ "learning_rate": 0.0006,
+ "loss": 3.988016128540039,
+ "step": 1266
+ },
+ {
+ "epoch": 17.601135867190912,
+ "grad_norm": 0.20213133096694946,
+ "learning_rate": 0.0006,
+ "loss": 4.0120368003845215,
+ "step": 1267
+ },
+ {
+ "epoch": 17.615115771079076,
+ "grad_norm": 0.21074117720127106,
+ "learning_rate": 0.0006,
+ "loss": 4.048871040344238,
+ "step": 1268
+ },
+ {
+ "epoch": 17.629095674967235,
+ "grad_norm": 0.2074330598115921,
+ "learning_rate": 0.0006,
+ "loss": 3.997509002685547,
+ "step": 1269
+ },
+ {
+ "epoch": 17.643075578855395,
+ "grad_norm": 0.20383669435977936,
+ "learning_rate": 0.0006,
+ "loss": 4.0028839111328125,
+ "step": 1270
+ },
+ {
+ "epoch": 17.657055482743555,
+ "grad_norm": 0.2060765027999878,
+ "learning_rate": 0.0006,
+ "loss": 3.998032331466675,
+ "step": 1271
+ },
+ {
+ "epoch": 17.67103538663172,
+ "grad_norm": 0.21851404011249542,
+ "learning_rate": 0.0006,
+ "loss": 3.9928741455078125,
+ "step": 1272
+ },
+ {
+ "epoch": 17.68501529051988,
+ "grad_norm": 0.24324250221252441,
+ "learning_rate": 0.0006,
+ "loss": 3.9896507263183594,
+ "step": 1273
+ },
+ {
+ "epoch": 17.698995194408038,
+ "grad_norm": 0.25584331154823303,
+ "learning_rate": 0.0006,
+ "loss": 4.010485649108887,
+ "step": 1274
+ },
+ {
+ "epoch": 17.712975098296198,
+ "grad_norm": 0.2490610033273697,
+ "learning_rate": 0.0006,
+ "loss": 3.9906954765319824,
+ "step": 1275
+ },
+ {
+ "epoch": 17.72695500218436,
+ "grad_norm": 0.24241414666175842,
+ "learning_rate": 0.0006,
+ "loss": 4.016420364379883,
+ "step": 1276
+ },
+ {
+ "epoch": 17.74093490607252,
+ "grad_norm": 0.2222128063440323,
+ "learning_rate": 0.0006,
+ "loss": 4.009827136993408,
+ "step": 1277
+ },
+ {
+ "epoch": 17.75491480996068,
+ "grad_norm": 0.23119516670703888,
+ "learning_rate": 0.0006,
+ "loss": 4.0034589767456055,
+ "step": 1278
+ },
+ {
+ "epoch": 17.76889471384884,
+ "grad_norm": 0.24596457183361053,
+ "learning_rate": 0.0006,
+ "loss": 4.003161907196045,
+ "step": 1279
+ },
+ {
+ "epoch": 17.782874617737004,
+ "grad_norm": 0.2607562839984894,
+ "learning_rate": 0.0006,
+ "loss": 3.9894633293151855,
+ "step": 1280
+ },
+ {
+ "epoch": 17.796854521625164,
+ "grad_norm": 0.28706878423690796,
+ "learning_rate": 0.0006,
+ "loss": 4.005712985992432,
+ "step": 1281
+ },
+ {
+ "epoch": 17.810834425513324,
+ "grad_norm": 0.27178290486335754,
+ "learning_rate": 0.0006,
+ "loss": 3.9784536361694336,
+ "step": 1282
+ },
+ {
+ "epoch": 17.824814329401484,
+ "grad_norm": 0.27962708473205566,
+ "learning_rate": 0.0006,
+ "loss": 4.012705326080322,
+ "step": 1283
+ },
+ {
+ "epoch": 17.838794233289647,
+ "grad_norm": 0.29147693514823914,
+ "learning_rate": 0.0006,
+ "loss": 4.0159783363342285,
+ "step": 1284
+ },
+ {
+ "epoch": 17.852774137177807,
+ "grad_norm": 0.2841821312904358,
+ "learning_rate": 0.0006,
+ "loss": 4.011552810668945,
+ "step": 1285
+ },
+ {
+ "epoch": 17.866754041065967,
+ "grad_norm": 0.24924969673156738,
+ "learning_rate": 0.0006,
+ "loss": 3.992421865463257,
+ "step": 1286
+ },
+ {
+ "epoch": 17.88073394495413,
+ "grad_norm": 0.24850749969482422,
+ "learning_rate": 0.0006,
+ "loss": 3.974897861480713,
+ "step": 1287
+ },
+ {
+ "epoch": 17.89471384884229,
+ "grad_norm": 0.2409554123878479,
+ "learning_rate": 0.0006,
+ "loss": 4.002941131591797,
+ "step": 1288
+ },
+ {
+ "epoch": 17.90869375273045,
+ "grad_norm": 0.2656126320362091,
+ "learning_rate": 0.0006,
+ "loss": 3.9804210662841797,
+ "step": 1289
+ },
+ {
+ "epoch": 17.92267365661861,
+ "grad_norm": 0.28210243582725525,
+ "learning_rate": 0.0006,
+ "loss": 4.007192134857178,
+ "step": 1290
+ },
+ {
+ "epoch": 17.936653560506773,
+ "grad_norm": 0.28427553176879883,
+ "learning_rate": 0.0006,
+ "loss": 3.9739556312561035,
+ "step": 1291
+ },
+ {
+ "epoch": 17.950633464394933,
+ "grad_norm": 0.28893420100212097,
+ "learning_rate": 0.0006,
+ "loss": 4.004766941070557,
+ "step": 1292
+ },
+ {
+ "epoch": 17.964613368283093,
+ "grad_norm": 0.2831471562385559,
+ "learning_rate": 0.0006,
+ "loss": 3.984936237335205,
+ "step": 1293
+ },
+ {
+ "epoch": 17.978593272171253,
+ "grad_norm": 0.2518300712108612,
+ "learning_rate": 0.0006,
+ "loss": 4.002814292907715,
+ "step": 1294
+ },
+ {
+ "epoch": 17.992573176059416,
+ "grad_norm": 0.24264675378799438,
+ "learning_rate": 0.0006,
+ "loss": 3.998900890350342,
+ "step": 1295
+ },
+ {
+ "epoch": 18.0,
+ "grad_norm": 0.24474996328353882,
+ "learning_rate": 0.0006,
+ "loss": 3.974229335784912,
+ "step": 1296
+ },
+ {
+ "epoch": 18.0,
+ "eval_loss": 4.195685863494873,
+ "eval_runtime": 44.0709,
+ "eval_samples_per_second": 55.411,
+ "eval_steps_per_second": 3.472,
+ "step": 1296
+ },
+ {
+ "epoch": 18.01397990388816,
+ "grad_norm": 0.2553016245365143,
+ "learning_rate": 0.0006,
+ "loss": 3.9522247314453125,
+ "step": 1297
+ },
+ {
+ "epoch": 18.027959807776323,
+ "grad_norm": 0.22350727021694183,
+ "learning_rate": 0.0006,
+ "loss": 3.9850122928619385,
+ "step": 1298
+ },
+ {
+ "epoch": 18.041939711664483,
+ "grad_norm": 0.23935550451278687,
+ "learning_rate": 0.0006,
+ "loss": 3.9758832454681396,
+ "step": 1299
+ },
+ {
+ "epoch": 18.055919615552643,
+ "grad_norm": 0.23868797719478607,
+ "learning_rate": 0.0006,
+ "loss": 3.9567959308624268,
+ "step": 1300
+ },
+ {
+ "epoch": 18.069899519440803,
+ "grad_norm": 0.23102357983589172,
+ "learning_rate": 0.0006,
+ "loss": 3.9399867057800293,
+ "step": 1301
+ },
+ {
+ "epoch": 18.083879423328966,
+ "grad_norm": 0.23706983029842377,
+ "learning_rate": 0.0006,
+ "loss": 3.993434190750122,
+ "step": 1302
+ },
+ {
+ "epoch": 18.097859327217126,
+ "grad_norm": 0.22207573056221008,
+ "learning_rate": 0.0006,
+ "loss": 3.993436574935913,
+ "step": 1303
+ },
+ {
+ "epoch": 18.111839231105286,
+ "grad_norm": 0.23975296318531036,
+ "learning_rate": 0.0006,
+ "loss": 3.981943368911743,
+ "step": 1304
+ },
+ {
+ "epoch": 18.125819134993446,
+ "grad_norm": 0.2520582675933838,
+ "learning_rate": 0.0006,
+ "loss": 3.965493679046631,
+ "step": 1305
+ },
+ {
+ "epoch": 18.13979903888161,
+ "grad_norm": 0.2230956256389618,
+ "learning_rate": 0.0006,
+ "loss": 3.9360928535461426,
+ "step": 1306
+ },
+ {
+ "epoch": 18.15377894276977,
+ "grad_norm": 0.22527500987052917,
+ "learning_rate": 0.0006,
+ "loss": 3.9814581871032715,
+ "step": 1307
+ },
+ {
+ "epoch": 18.16775884665793,
+ "grad_norm": 0.22389626502990723,
+ "learning_rate": 0.0006,
+ "loss": 3.961590051651001,
+ "step": 1308
+ },
+ {
+ "epoch": 18.18173875054609,
+ "grad_norm": 0.22279471158981323,
+ "learning_rate": 0.0006,
+ "loss": 3.952338695526123,
+ "step": 1309
+ },
+ {
+ "epoch": 18.195718654434252,
+ "grad_norm": 0.24635115265846252,
+ "learning_rate": 0.0006,
+ "loss": 3.9693849086761475,
+ "step": 1310
+ },
+ {
+ "epoch": 18.209698558322412,
+ "grad_norm": 0.2757279872894287,
+ "learning_rate": 0.0006,
+ "loss": 3.9956700801849365,
+ "step": 1311
+ },
+ {
+ "epoch": 18.22367846221057,
+ "grad_norm": 0.2619115710258484,
+ "learning_rate": 0.0006,
+ "loss": 3.948878765106201,
+ "step": 1312
+ },
+ {
+ "epoch": 18.23765836609873,
+ "grad_norm": 0.22853828966617584,
+ "learning_rate": 0.0006,
+ "loss": 3.9545674324035645,
+ "step": 1313
+ },
+ {
+ "epoch": 18.251638269986895,
+ "grad_norm": 0.22904761135578156,
+ "learning_rate": 0.0006,
+ "loss": 3.947535991668701,
+ "step": 1314
+ },
+ {
+ "epoch": 18.265618173875055,
+ "grad_norm": 0.23592644929885864,
+ "learning_rate": 0.0006,
+ "loss": 3.971926212310791,
+ "step": 1315
+ },
+ {
+ "epoch": 18.279598077763215,
+ "grad_norm": 0.22120243310928345,
+ "learning_rate": 0.0006,
+ "loss": 3.9471049308776855,
+ "step": 1316
+ },
+ {
+ "epoch": 18.293577981651374,
+ "grad_norm": 0.20308749377727509,
+ "learning_rate": 0.0006,
+ "loss": 3.967449188232422,
+ "step": 1317
+ },
+ {
+ "epoch": 18.307557885539538,
+ "grad_norm": 0.20013529062271118,
+ "learning_rate": 0.0006,
+ "loss": 3.966151237487793,
+ "step": 1318
+ },
+ {
+ "epoch": 18.321537789427698,
+ "grad_norm": 0.20635221898555756,
+ "learning_rate": 0.0006,
+ "loss": 3.9908885955810547,
+ "step": 1319
+ },
+ {
+ "epoch": 18.335517693315857,
+ "grad_norm": 0.2232237160205841,
+ "learning_rate": 0.0006,
+ "loss": 3.9488768577575684,
+ "step": 1320
+ },
+ {
+ "epoch": 18.34949759720402,
+ "grad_norm": 0.21916444599628448,
+ "learning_rate": 0.0006,
+ "loss": 3.973428726196289,
+ "step": 1321
+ },
+ {
+ "epoch": 18.36347750109218,
+ "grad_norm": 0.20427337288856506,
+ "learning_rate": 0.0006,
+ "loss": 3.969332695007324,
+ "step": 1322
+ },
+ {
+ "epoch": 18.37745740498034,
+ "grad_norm": 0.20138131082057953,
+ "learning_rate": 0.0006,
+ "loss": 3.9651856422424316,
+ "step": 1323
+ },
+ {
+ "epoch": 18.3914373088685,
+ "grad_norm": 0.18918880820274353,
+ "learning_rate": 0.0006,
+ "loss": 3.9772281646728516,
+ "step": 1324
+ },
+ {
+ "epoch": 18.405417212756664,
+ "grad_norm": 0.1860039383172989,
+ "learning_rate": 0.0006,
+ "loss": 3.9289052486419678,
+ "step": 1325
+ },
+ {
+ "epoch": 18.419397116644824,
+ "grad_norm": 0.19541646540164948,
+ "learning_rate": 0.0006,
+ "loss": 3.9527673721313477,
+ "step": 1326
+ },
+ {
+ "epoch": 18.433377020532983,
+ "grad_norm": 0.206914022564888,
+ "learning_rate": 0.0006,
+ "loss": 3.99316143989563,
+ "step": 1327
+ },
+ {
+ "epoch": 18.447356924421143,
+ "grad_norm": 0.209097757935524,
+ "learning_rate": 0.0006,
+ "loss": 3.978130340576172,
+ "step": 1328
+ },
+ {
+ "epoch": 18.461336828309307,
+ "grad_norm": 0.22163373231887817,
+ "learning_rate": 0.0006,
+ "loss": 3.951460361480713,
+ "step": 1329
+ },
+ {
+ "epoch": 18.475316732197467,
+ "grad_norm": 0.21446120738983154,
+ "learning_rate": 0.0006,
+ "loss": 3.963571071624756,
+ "step": 1330
+ },
+ {
+ "epoch": 18.489296636085626,
+ "grad_norm": 0.2341388761997223,
+ "learning_rate": 0.0006,
+ "loss": 4.010684013366699,
+ "step": 1331
+ },
+ {
+ "epoch": 18.503276539973786,
+ "grad_norm": 0.2433937042951584,
+ "learning_rate": 0.0006,
+ "loss": 3.987537384033203,
+ "step": 1332
+ },
+ {
+ "epoch": 18.51725644386195,
+ "grad_norm": 0.24916228652000427,
+ "learning_rate": 0.0006,
+ "loss": 3.953075647354126,
+ "step": 1333
+ },
+ {
+ "epoch": 18.53123634775011,
+ "grad_norm": 0.24542421102523804,
+ "learning_rate": 0.0006,
+ "loss": 3.9510841369628906,
+ "step": 1334
+ },
+ {
+ "epoch": 18.54521625163827,
+ "grad_norm": 0.2393690049648285,
+ "learning_rate": 0.0006,
+ "loss": 3.981747627258301,
+ "step": 1335
+ },
+ {
+ "epoch": 18.55919615552643,
+ "grad_norm": 0.22806711494922638,
+ "learning_rate": 0.0006,
+ "loss": 3.9714856147766113,
+ "step": 1336
+ },
+ {
+ "epoch": 18.573176059414592,
+ "grad_norm": 0.21948303282260895,
+ "learning_rate": 0.0006,
+ "loss": 3.9429898262023926,
+ "step": 1337
+ },
+ {
+ "epoch": 18.587155963302752,
+ "grad_norm": 0.21575778722763062,
+ "learning_rate": 0.0006,
+ "loss": 3.9639933109283447,
+ "step": 1338
+ },
+ {
+ "epoch": 18.601135867190912,
+ "grad_norm": 0.23370565474033356,
+ "learning_rate": 0.0006,
+ "loss": 3.9819254875183105,
+ "step": 1339
+ },
+ {
+ "epoch": 18.615115771079076,
+ "grad_norm": 0.2613106369972229,
+ "learning_rate": 0.0006,
+ "loss": 3.9654669761657715,
+ "step": 1340
+ },
+ {
+ "epoch": 18.629095674967235,
+ "grad_norm": 0.26682716608047485,
+ "learning_rate": 0.0006,
+ "loss": 3.9832968711853027,
+ "step": 1341
+ },
+ {
+ "epoch": 18.643075578855395,
+ "grad_norm": 0.24331490695476532,
+ "learning_rate": 0.0006,
+ "loss": 3.9926600456237793,
+ "step": 1342
+ },
+ {
+ "epoch": 18.657055482743555,
+ "grad_norm": 0.2459341287612915,
+ "learning_rate": 0.0006,
+ "loss": 3.9508986473083496,
+ "step": 1343
+ },
+ {
+ "epoch": 18.67103538663172,
+ "grad_norm": 0.26395753026008606,
+ "learning_rate": 0.0006,
+ "loss": 3.961359977722168,
+ "step": 1344
+ },
+ {
+ "epoch": 18.68501529051988,
+ "grad_norm": 0.26049068570137024,
+ "learning_rate": 0.0006,
+ "loss": 3.9763245582580566,
+ "step": 1345
+ },
+ {
+ "epoch": 18.698995194408038,
+ "grad_norm": 0.24018602073192596,
+ "learning_rate": 0.0006,
+ "loss": 3.951780319213867,
+ "step": 1346
+ },
+ {
+ "epoch": 18.712975098296198,
+ "grad_norm": 0.23886290192604065,
+ "learning_rate": 0.0006,
+ "loss": 3.9883017539978027,
+ "step": 1347
+ },
+ {
+ "epoch": 18.72695500218436,
+ "grad_norm": 0.2293774038553238,
+ "learning_rate": 0.0006,
+ "loss": 3.9852685928344727,
+ "step": 1348
+ },
+ {
+ "epoch": 18.74093490607252,
+ "grad_norm": 0.22172975540161133,
+ "learning_rate": 0.0006,
+ "loss": 3.967550277709961,
+ "step": 1349
+ },
+ {
+ "epoch": 18.75491480996068,
+ "grad_norm": 0.2170475423336029,
+ "learning_rate": 0.0006,
+ "loss": 3.9570775032043457,
+ "step": 1350
+ },
+ {
+ "epoch": 18.76889471384884,
+ "grad_norm": 0.21458806097507477,
+ "learning_rate": 0.0006,
+ "loss": 3.9461212158203125,
+ "step": 1351
+ },
+ {
+ "epoch": 18.782874617737004,
+ "grad_norm": 0.21101507544517517,
+ "learning_rate": 0.0006,
+ "loss": 3.984398365020752,
+ "step": 1352
+ },
+ {
+ "epoch": 18.796854521625164,
+ "grad_norm": 0.23480583727359772,
+ "learning_rate": 0.0006,
+ "loss": 3.950312614440918,
+ "step": 1353
+ },
+ {
+ "epoch": 18.810834425513324,
+ "grad_norm": 0.24728581309318542,
+ "learning_rate": 0.0006,
+ "loss": 3.9572393894195557,
+ "step": 1354
+ },
+ {
+ "epoch": 18.824814329401484,
+ "grad_norm": 0.26063451170921326,
+ "learning_rate": 0.0006,
+ "loss": 3.9653234481811523,
+ "step": 1355
+ },
+ {
+ "epoch": 18.838794233289647,
+ "grad_norm": 0.24679961800575256,
+ "learning_rate": 0.0006,
+ "loss": 3.9560108184814453,
+ "step": 1356
+ },
+ {
+ "epoch": 18.852774137177807,
+ "grad_norm": 0.23199526965618134,
+ "learning_rate": 0.0006,
+ "loss": 3.9948246479034424,
+ "step": 1357
+ },
+ {
+ "epoch": 18.866754041065967,
+ "grad_norm": 0.22619125247001648,
+ "learning_rate": 0.0006,
+ "loss": 3.9783573150634766,
+ "step": 1358
+ },
+ {
+ "epoch": 18.88073394495413,
+ "grad_norm": 0.25499874353408813,
+ "learning_rate": 0.0006,
+ "loss": 3.9674575328826904,
+ "step": 1359
+ },
+ {
+ "epoch": 18.89471384884229,
+ "grad_norm": 0.23961037397384644,
+ "learning_rate": 0.0006,
+ "loss": 3.969209909439087,
+ "step": 1360
+ },
+ {
+ "epoch": 18.90869375273045,
+ "grad_norm": 0.21039162576198578,
+ "learning_rate": 0.0006,
+ "loss": 3.978661060333252,
+ "step": 1361
+ },
+ {
+ "epoch": 18.92267365661861,
+ "grad_norm": 0.2297026664018631,
+ "learning_rate": 0.0006,
+ "loss": 3.9483046531677246,
+ "step": 1362
+ },
+ {
+ "epoch": 18.936653560506773,
+ "grad_norm": 0.26367098093032837,
+ "learning_rate": 0.0006,
+ "loss": 3.927133560180664,
+ "step": 1363
+ },
+ {
+ "epoch": 18.950633464394933,
+ "grad_norm": 0.26893147826194763,
+ "learning_rate": 0.0006,
+ "loss": 3.957932710647583,
+ "step": 1364
+ },
+ {
+ "epoch": 18.964613368283093,
+ "grad_norm": 0.27092233300209045,
+ "learning_rate": 0.0006,
+ "loss": 3.976621150970459,
+ "step": 1365
+ },
+ {
+ "epoch": 18.978593272171253,
+ "grad_norm": 0.2672635018825531,
+ "learning_rate": 0.0006,
+ "loss": 3.9577765464782715,
+ "step": 1366
+ },
+ {
+ "epoch": 18.992573176059416,
+ "grad_norm": 0.2721385359764099,
+ "learning_rate": 0.0006,
+ "loss": 3.986100196838379,
+ "step": 1367
+ },
+ {
+ "epoch": 19.0,
+ "grad_norm": 0.27648621797561646,
+ "learning_rate": 0.0006,
+ "loss": 3.9942402839660645,
+ "step": 1368
+ },
+ {
+ "epoch": 19.0,
+ "eval_loss": 4.180216312408447,
+ "eval_runtime": 44.0079,
+ "eval_samples_per_second": 55.49,
+ "eval_steps_per_second": 3.477,
+ "step": 1368
+ },
+ {
+ "epoch": 19.01397990388816,
+ "grad_norm": 0.2563098073005676,
+ "learning_rate": 0.0006,
+ "loss": 3.9267354011535645,
+ "step": 1369
+ },
+ {
+ "epoch": 19.027959807776323,
+ "grad_norm": 0.2531425952911377,
+ "learning_rate": 0.0006,
+ "loss": 3.9273324012756348,
+ "step": 1370
+ },
+ {
+ "epoch": 19.041939711664483,
+ "grad_norm": 0.27485427260398865,
+ "learning_rate": 0.0006,
+ "loss": 3.9542183876037598,
+ "step": 1371
+ },
+ {
+ "epoch": 19.055919615552643,
+ "grad_norm": 0.27509891986846924,
+ "learning_rate": 0.0006,
+ "loss": 3.921940326690674,
+ "step": 1372
+ },
+ {
+ "epoch": 19.069899519440803,
+ "grad_norm": 0.28154096007347107,
+ "learning_rate": 0.0006,
+ "loss": 3.926743984222412,
+ "step": 1373
+ },
+ {
+ "epoch": 19.083879423328966,
+ "grad_norm": 0.2749912738800049,
+ "learning_rate": 0.0006,
+ "loss": 3.9257748126983643,
+ "step": 1374
+ },
+ {
+ "epoch": 19.097859327217126,
+ "grad_norm": 0.26168501377105713,
+ "learning_rate": 0.0006,
+ "loss": 3.9403202533721924,
+ "step": 1375
+ },
+ {
+ "epoch": 19.111839231105286,
+ "grad_norm": 0.23410023748874664,
+ "learning_rate": 0.0006,
+ "loss": 3.935378313064575,
+ "step": 1376
+ },
+ {
+ "epoch": 19.125819134993446,
+ "grad_norm": 0.25790470838546753,
+ "learning_rate": 0.0006,
+ "loss": 3.946147918701172,
+ "step": 1377
+ },
+ {
+ "epoch": 19.13979903888161,
+ "grad_norm": 0.26704177260398865,
+ "learning_rate": 0.0006,
+ "loss": 3.9511594772338867,
+ "step": 1378
+ },
+ {
+ "epoch": 19.15377894276977,
+ "grad_norm": 0.2560667097568512,
+ "learning_rate": 0.0006,
+ "loss": 3.915806531906128,
+ "step": 1379
+ },
+ {
+ "epoch": 19.16775884665793,
+ "grad_norm": 0.24684149026870728,
+ "learning_rate": 0.0006,
+ "loss": 3.9162003993988037,
+ "step": 1380
+ },
+ {
+ "epoch": 19.18173875054609,
+ "grad_norm": 0.2097567766904831,
+ "learning_rate": 0.0006,
+ "loss": 3.915739059448242,
+ "step": 1381
+ },
+ {
+ "epoch": 19.195718654434252,
+ "grad_norm": 0.21646849811077118,
+ "learning_rate": 0.0006,
+ "loss": 3.9097084999084473,
+ "step": 1382
+ },
+ {
+ "epoch": 19.209698558322412,
+ "grad_norm": 0.20626980066299438,
+ "learning_rate": 0.0006,
+ "loss": 3.9541783332824707,
+ "step": 1383
+ },
+ {
+ "epoch": 19.22367846221057,
+ "grad_norm": 0.23362718522548676,
+ "learning_rate": 0.0006,
+ "loss": 3.950096845626831,
+ "step": 1384
+ },
+ {
+ "epoch": 19.23765836609873,
+ "grad_norm": 0.25402209162712097,
+ "learning_rate": 0.0006,
+ "loss": 3.927671432495117,
+ "step": 1385
+ },
+ {
+ "epoch": 19.251638269986895,
+ "grad_norm": 0.23714083433151245,
+ "learning_rate": 0.0006,
+ "loss": 3.939765453338623,
+ "step": 1386
+ },
+ {
+ "epoch": 19.265618173875055,
+ "grad_norm": 0.20895546674728394,
+ "learning_rate": 0.0006,
+ "loss": 3.9384806156158447,
+ "step": 1387
+ },
+ {
+ "epoch": 19.279598077763215,
+ "grad_norm": 0.21374300122261047,
+ "learning_rate": 0.0006,
+ "loss": 3.9523749351501465,
+ "step": 1388
+ },
+ {
+ "epoch": 19.293577981651374,
+ "grad_norm": 0.210394486784935,
+ "learning_rate": 0.0006,
+ "loss": 3.9540798664093018,
+ "step": 1389
+ },
+ {
+ "epoch": 19.307557885539538,
+ "grad_norm": 0.20646725594997406,
+ "learning_rate": 0.0006,
+ "loss": 3.9514098167419434,
+ "step": 1390
+ },
+ {
+ "epoch": 19.321537789427698,
+ "grad_norm": 0.21477538347244263,
+ "learning_rate": 0.0006,
+ "loss": 3.9369924068450928,
+ "step": 1391
+ },
+ {
+ "epoch": 19.335517693315857,
+ "grad_norm": 0.20431505143642426,
+ "learning_rate": 0.0006,
+ "loss": 3.9389796257019043,
+ "step": 1392
+ },
+ {
+ "epoch": 19.34949759720402,
+ "grad_norm": 0.19575877487659454,
+ "learning_rate": 0.0006,
+ "loss": 3.935976028442383,
+ "step": 1393
+ },
+ {
+ "epoch": 19.36347750109218,
+ "grad_norm": 0.20720405876636505,
+ "learning_rate": 0.0006,
+ "loss": 3.9670963287353516,
+ "step": 1394
+ },
+ {
+ "epoch": 19.37745740498034,
+ "grad_norm": 0.2173967957496643,
+ "learning_rate": 0.0006,
+ "loss": 3.903940439224243,
+ "step": 1395
+ },
+ {
+ "epoch": 19.3914373088685,
+ "grad_norm": 0.2180529683828354,
+ "learning_rate": 0.0006,
+ "loss": 3.8716301918029785,
+ "step": 1396
+ },
+ {
+ "epoch": 19.405417212756664,
+ "grad_norm": 0.20666591823101044,
+ "learning_rate": 0.0006,
+ "loss": 3.930936813354492,
+ "step": 1397
+ },
+ {
+ "epoch": 19.419397116644824,
+ "grad_norm": 0.20353034138679504,
+ "learning_rate": 0.0006,
+ "loss": 3.926954746246338,
+ "step": 1398
+ },
+ {
+ "epoch": 19.433377020532983,
+ "grad_norm": 0.22333289682865143,
+ "learning_rate": 0.0006,
+ "loss": 3.947504997253418,
+ "step": 1399
+ },
+ {
+ "epoch": 19.447356924421143,
+ "grad_norm": 0.21787697076797485,
+ "learning_rate": 0.0006,
+ "loss": 3.9325344562530518,
+ "step": 1400
+ },
+ {
+ "epoch": 19.461336828309307,
+ "grad_norm": 0.22805874049663544,
+ "learning_rate": 0.0006,
+ "loss": 3.9640727043151855,
+ "step": 1401
+ },
+ {
+ "epoch": 19.475316732197467,
+ "grad_norm": 0.22396457195281982,
+ "learning_rate": 0.0006,
+ "loss": 3.9537901878356934,
+ "step": 1402
+ },
+ {
+ "epoch": 19.489296636085626,
+ "grad_norm": 0.2333047240972519,
+ "learning_rate": 0.0006,
+ "loss": 3.935609817504883,
+ "step": 1403
+ },
+ {
+ "epoch": 19.503276539973786,
+ "grad_norm": 0.25063616037368774,
+ "learning_rate": 0.0006,
+ "loss": 3.9659228324890137,
+ "step": 1404
+ },
+ {
+ "epoch": 19.51725644386195,
+ "grad_norm": 0.29074087738990784,
+ "learning_rate": 0.0006,
+ "loss": 3.9552183151245117,
+ "step": 1405
+ },
+ {
+ "epoch": 19.53123634775011,
+ "grad_norm": 0.34876152873039246,
+ "learning_rate": 0.0006,
+ "loss": 3.976163387298584,
+ "step": 1406
+ },
+ {
+ "epoch": 19.54521625163827,
+ "grad_norm": 0.35026612877845764,
+ "learning_rate": 0.0006,
+ "loss": 3.961186408996582,
+ "step": 1407
+ },
+ {
+ "epoch": 19.55919615552643,
+ "grad_norm": 0.3199564218521118,
+ "learning_rate": 0.0006,
+ "loss": 3.9366297721862793,
+ "step": 1408
+ },
+ {
+ "epoch": 19.573176059414592,
+ "grad_norm": 0.2976185977458954,
+ "learning_rate": 0.0006,
+ "loss": 3.9502010345458984,
+ "step": 1409
+ },
+ {
+ "epoch": 19.587155963302752,
+ "grad_norm": 0.2951911687850952,
+ "learning_rate": 0.0006,
+ "loss": 3.9427943229675293,
+ "step": 1410
+ },
+ {
+ "epoch": 19.601135867190912,
+ "grad_norm": 0.27918702363967896,
+ "learning_rate": 0.0006,
+ "loss": 3.963700532913208,
+ "step": 1411
+ },
+ {
+ "epoch": 19.615115771079076,
+ "grad_norm": 0.26197490096092224,
+ "learning_rate": 0.0006,
+ "loss": 3.9636964797973633,
+ "step": 1412
+ },
+ {
+ "epoch": 19.629095674967235,
+ "grad_norm": 0.24242281913757324,
+ "learning_rate": 0.0006,
+ "loss": 3.961815595626831,
+ "step": 1413
+ },
+ {
+ "epoch": 19.643075578855395,
+ "grad_norm": 0.2606375515460968,
+ "learning_rate": 0.0006,
+ "loss": 3.946643352508545,
+ "step": 1414
+ },
+ {
+ "epoch": 19.657055482743555,
+ "grad_norm": 0.23353353142738342,
+ "learning_rate": 0.0006,
+ "loss": 3.973155975341797,
+ "step": 1415
+ },
+ {
+ "epoch": 19.67103538663172,
+ "grad_norm": 0.22872662544250488,
+ "learning_rate": 0.0006,
+ "loss": 3.9528894424438477,
+ "step": 1416
+ },
+ {
+ "epoch": 19.68501529051988,
+ "grad_norm": 0.24678432941436768,
+ "learning_rate": 0.0006,
+ "loss": 3.9313249588012695,
+ "step": 1417
+ },
+ {
+ "epoch": 19.698995194408038,
+ "grad_norm": 0.23895515501499176,
+ "learning_rate": 0.0006,
+ "loss": 3.944082498550415,
+ "step": 1418
+ },
+ {
+ "epoch": 19.712975098296198,
+ "grad_norm": 0.23649105429649353,
+ "learning_rate": 0.0006,
+ "loss": 3.962069034576416,
+ "step": 1419
+ },
+ {
+ "epoch": 19.72695500218436,
+ "grad_norm": 0.22031061351299286,
+ "learning_rate": 0.0006,
+ "loss": 3.912972927093506,
+ "step": 1420
+ },
+ {
+ "epoch": 19.74093490607252,
+ "grad_norm": 0.20231695473194122,
+ "learning_rate": 0.0006,
+ "loss": 3.964531421661377,
+ "step": 1421
+ },
+ {
+ "epoch": 19.75491480996068,
+ "grad_norm": 0.19980913400650024,
+ "learning_rate": 0.0006,
+ "loss": 3.9452600479125977,
+ "step": 1422
+ },
+ {
+ "epoch": 19.76889471384884,
+ "grad_norm": 0.21768775582313538,
+ "learning_rate": 0.0006,
+ "loss": 3.9214301109313965,
+ "step": 1423
+ },
+ {
+ "epoch": 19.782874617737004,
+ "grad_norm": 0.21287119388580322,
+ "learning_rate": 0.0006,
+ "loss": 3.9416494369506836,
+ "step": 1424
+ },
+ {
+ "epoch": 19.796854521625164,
+ "grad_norm": 0.21399827301502228,
+ "learning_rate": 0.0006,
+ "loss": 3.971010208129883,
+ "step": 1425
+ },
+ {
+ "epoch": 19.810834425513324,
+ "grad_norm": 0.1957658976316452,
+ "learning_rate": 0.0006,
+ "loss": 3.936331272125244,
+ "step": 1426
+ },
+ {
+ "epoch": 19.824814329401484,
+ "grad_norm": 0.19341488182544708,
+ "learning_rate": 0.0006,
+ "loss": 3.9321448802948,
+ "step": 1427
+ },
+ {
+ "epoch": 19.838794233289647,
+ "grad_norm": 0.18405723571777344,
+ "learning_rate": 0.0006,
+ "loss": 3.939542293548584,
+ "step": 1428
+ },
+ {
+ "epoch": 19.852774137177807,
+ "grad_norm": 0.19672836363315582,
+ "learning_rate": 0.0006,
+ "loss": 3.939652919769287,
+ "step": 1429
+ },
+ {
+ "epoch": 19.866754041065967,
+ "grad_norm": 0.1998940259218216,
+ "learning_rate": 0.0006,
+ "loss": 3.932892322540283,
+ "step": 1430
+ },
+ {
+ "epoch": 19.88073394495413,
+ "grad_norm": 0.2307668924331665,
+ "learning_rate": 0.0006,
+ "loss": 3.9402761459350586,
+ "step": 1431
+ },
+ {
+ "epoch": 19.89471384884229,
+ "grad_norm": 0.2531987726688385,
+ "learning_rate": 0.0006,
+ "loss": 3.9153199195861816,
+ "step": 1432
+ },
+ {
+ "epoch": 19.90869375273045,
+ "grad_norm": 0.2299388349056244,
+ "learning_rate": 0.0006,
+ "loss": 3.9569954872131348,
+ "step": 1433
+ },
+ {
+ "epoch": 19.92267365661861,
+ "grad_norm": 0.2503527104854584,
+ "learning_rate": 0.0006,
+ "loss": 3.9469428062438965,
+ "step": 1434
+ },
+ {
+ "epoch": 19.936653560506773,
+ "grad_norm": 0.25390249490737915,
+ "learning_rate": 0.0006,
+ "loss": 3.941803455352783,
+ "step": 1435
+ },
+ {
+ "epoch": 19.950633464394933,
+ "grad_norm": 0.2288687825202942,
+ "learning_rate": 0.0006,
+ "loss": 3.9385883808135986,
+ "step": 1436
+ },
+ {
+ "epoch": 19.964613368283093,
+ "grad_norm": 0.2231096774339676,
+ "learning_rate": 0.0006,
+ "loss": 3.9255237579345703,
+ "step": 1437
+ },
+ {
+ "epoch": 19.978593272171253,
+ "grad_norm": 0.20729343593120575,
+ "learning_rate": 0.0006,
+ "loss": 3.9443163871765137,
+ "step": 1438
+ },
+ {
+ "epoch": 19.992573176059416,
+ "grad_norm": 0.197743758559227,
+ "learning_rate": 0.0006,
+ "loss": 3.925455093383789,
+ "step": 1439
+ },
+ {
+ "epoch": 20.0,
+ "grad_norm": 0.23943661153316498,
+ "learning_rate": 0.0006,
+ "loss": 3.9458866119384766,
+ "step": 1440
+ },
+ {
+ "epoch": 20.0,
+ "eval_loss": 4.144192218780518,
+ "eval_runtime": 44.0278,
+ "eval_samples_per_second": 55.465,
+ "eval_steps_per_second": 3.475,
+ "step": 1440
+ },
+ {
+ "epoch": 20.01397990388816,
+ "grad_norm": 0.2032143622636795,
+ "learning_rate": 0.0006,
+ "loss": 3.9151499271392822,
+ "step": 1441
+ },
+ {
+ "epoch": 20.027959807776323,
+ "grad_norm": 0.20164789259433746,
+ "learning_rate": 0.0006,
+ "loss": 3.874115228652954,
+ "step": 1442
+ },
+ {
+ "epoch": 20.041939711664483,
+ "grad_norm": 0.20796619355678558,
+ "learning_rate": 0.0006,
+ "loss": 3.9090776443481445,
+ "step": 1443
+ },
+ {
+ "epoch": 20.055919615552643,
+ "grad_norm": 0.1999918520450592,
+ "learning_rate": 0.0006,
+ "loss": 3.926563262939453,
+ "step": 1444
+ },
+ {
+ "epoch": 20.069899519440803,
+ "grad_norm": 0.204790860414505,
+ "learning_rate": 0.0006,
+ "loss": 3.9088830947875977,
+ "step": 1445
+ },
+ {
+ "epoch": 20.083879423328966,
+ "grad_norm": 0.21507175266742706,
+ "learning_rate": 0.0006,
+ "loss": 3.916504383087158,
+ "step": 1446
+ },
+ {
+ "epoch": 20.097859327217126,
+ "grad_norm": 0.2398025095462799,
+ "learning_rate": 0.0006,
+ "loss": 3.9128990173339844,
+ "step": 1447
+ },
+ {
+ "epoch": 20.111839231105286,
+ "grad_norm": 0.26037144660949707,
+ "learning_rate": 0.0006,
+ "loss": 3.9125187397003174,
+ "step": 1448
+ },
+ {
+ "epoch": 20.125819134993446,
+ "grad_norm": 0.25564828515052795,
+ "learning_rate": 0.0006,
+ "loss": 3.891867160797119,
+ "step": 1449
+ },
+ {
+ "epoch": 20.13979903888161,
+ "grad_norm": 0.2767223119735718,
+ "learning_rate": 0.0006,
+ "loss": 3.9202775955200195,
+ "step": 1450
+ },
+ {
+ "epoch": 20.15377894276977,
+ "grad_norm": 0.27696558833122253,
+ "learning_rate": 0.0006,
+ "loss": 3.9231314659118652,
+ "step": 1451
+ },
+ {
+ "epoch": 20.16775884665793,
+ "grad_norm": 0.3054044246673584,
+ "learning_rate": 0.0006,
+ "loss": 3.918138027191162,
+ "step": 1452
+ },
+ {
+ "epoch": 20.18173875054609,
+ "grad_norm": 0.3018973171710968,
+ "learning_rate": 0.0006,
+ "loss": 3.890678882598877,
+ "step": 1453
+ },
+ {
+ "epoch": 20.195718654434252,
+ "grad_norm": 0.306232750415802,
+ "learning_rate": 0.0006,
+ "loss": 3.920753002166748,
+ "step": 1454
+ },
+ {
+ "epoch": 20.209698558322412,
+ "grad_norm": 0.29593729972839355,
+ "learning_rate": 0.0006,
+ "loss": 3.9455509185791016,
+ "step": 1455
+ },
+ {
+ "epoch": 20.22367846221057,
+ "grad_norm": 0.2937646210193634,
+ "learning_rate": 0.0006,
+ "loss": 3.9227709770202637,
+ "step": 1456
+ },
+ {
+ "epoch": 20.23765836609873,
+ "grad_norm": 0.26380231976509094,
+ "learning_rate": 0.0006,
+ "loss": 3.9097609519958496,
+ "step": 1457
+ },
+ {
+ "epoch": 20.251638269986895,
+ "grad_norm": 0.24992692470550537,
+ "learning_rate": 0.0006,
+ "loss": 3.9393627643585205,
+ "step": 1458
+ },
+ {
+ "epoch": 20.265618173875055,
+ "grad_norm": 0.270219087600708,
+ "learning_rate": 0.0006,
+ "loss": 3.929330348968506,
+ "step": 1459
+ },
+ {
+ "epoch": 20.279598077763215,
+ "grad_norm": 0.2860020399093628,
+ "learning_rate": 0.0006,
+ "loss": 3.8947913646698,
+ "step": 1460
+ },
+ {
+ "epoch": 20.293577981651374,
+ "grad_norm": 0.27494579553604126,
+ "learning_rate": 0.0006,
+ "loss": 3.9105992317199707,
+ "step": 1461
+ },
+ {
+ "epoch": 20.307557885539538,
+ "grad_norm": 0.26467713713645935,
+ "learning_rate": 0.0006,
+ "loss": 3.914632797241211,
+ "step": 1462
+ },
+ {
+ "epoch": 20.321537789427698,
+ "grad_norm": 0.25747713446617126,
+ "learning_rate": 0.0006,
+ "loss": 3.919846534729004,
+ "step": 1463
+ },
+ {
+ "epoch": 20.335517693315857,
+ "grad_norm": 0.24027711153030396,
+ "learning_rate": 0.0006,
+ "loss": 3.904740810394287,
+ "step": 1464
+ },
+ {
+ "epoch": 20.34949759720402,
+ "grad_norm": 0.24682414531707764,
+ "learning_rate": 0.0006,
+ "loss": 3.9190149307250977,
+ "step": 1465
+ },
+ {
+ "epoch": 20.36347750109218,
+ "grad_norm": 0.2619759440422058,
+ "learning_rate": 0.0006,
+ "loss": 3.9488329887390137,
+ "step": 1466
+ },
+ {
+ "epoch": 20.37745740498034,
+ "grad_norm": 0.2632448971271515,
+ "learning_rate": 0.0006,
+ "loss": 3.9216647148132324,
+ "step": 1467
+ },
+ {
+ "epoch": 20.3914373088685,
+ "grad_norm": 0.27569764852523804,
+ "learning_rate": 0.0006,
+ "loss": 3.9178895950317383,
+ "step": 1468
+ },
+ {
+ "epoch": 20.405417212756664,
+ "grad_norm": 0.2611774802207947,
+ "learning_rate": 0.0006,
+ "loss": 3.933730125427246,
+ "step": 1469
+ },
+ {
+ "epoch": 20.419397116644824,
+ "grad_norm": 0.2839447557926178,
+ "learning_rate": 0.0006,
+ "loss": 3.9261364936828613,
+ "step": 1470
+ },
+ {
+ "epoch": 20.433377020532983,
+ "grad_norm": 0.29006227850914,
+ "learning_rate": 0.0006,
+ "loss": 3.9157633781433105,
+ "step": 1471
+ },
+ {
+ "epoch": 20.447356924421143,
+ "grad_norm": 0.2809498906135559,
+ "learning_rate": 0.0006,
+ "loss": 3.9211745262145996,
+ "step": 1472
+ },
+ {
+ "epoch": 20.461336828309307,
+ "grad_norm": 0.27859532833099365,
+ "learning_rate": 0.0006,
+ "loss": 3.9115967750549316,
+ "step": 1473
+ },
+ {
+ "epoch": 20.475316732197467,
+ "grad_norm": 0.29114410281181335,
+ "learning_rate": 0.0006,
+ "loss": 3.9024441242218018,
+ "step": 1474
+ },
+ {
+ "epoch": 20.489296636085626,
+ "grad_norm": 0.2686930000782013,
+ "learning_rate": 0.0006,
+ "loss": 3.9497199058532715,
+ "step": 1475
+ },
+ {
+ "epoch": 20.503276539973786,
+ "grad_norm": 0.24120540916919708,
+ "learning_rate": 0.0006,
+ "loss": 3.9218955039978027,
+ "step": 1476
+ },
+ {
+ "epoch": 20.51725644386195,
+ "grad_norm": 0.23689547181129456,
+ "learning_rate": 0.0006,
+ "loss": 3.9410176277160645,
+ "step": 1477
+ },
+ {
+ "epoch": 20.53123634775011,
+ "grad_norm": 0.26382362842559814,
+ "learning_rate": 0.0006,
+ "loss": 3.8880343437194824,
+ "step": 1478
+ },
+ {
+ "epoch": 20.54521625163827,
+ "grad_norm": 0.21628661453723907,
+ "learning_rate": 0.0006,
+ "loss": 3.892622470855713,
+ "step": 1479
+ },
+ {
+ "epoch": 20.55919615552643,
+ "grad_norm": 0.19896996021270752,
+ "learning_rate": 0.0006,
+ "loss": 3.938734769821167,
+ "step": 1480
+ },
+ {
+ "epoch": 20.573176059414592,
+ "grad_norm": 0.20232494175434113,
+ "learning_rate": 0.0006,
+ "loss": 3.9197006225585938,
+ "step": 1481
+ },
+ {
+ "epoch": 20.587155963302752,
+ "grad_norm": 0.21807828545570374,
+ "learning_rate": 0.0006,
+ "loss": 3.9195618629455566,
+ "step": 1482
+ },
+ {
+ "epoch": 20.601135867190912,
+ "grad_norm": 0.21778680384159088,
+ "learning_rate": 0.0006,
+ "loss": 3.913395404815674,
+ "step": 1483
+ },
+ {
+ "epoch": 20.615115771079076,
+ "grad_norm": 0.21015185117721558,
+ "learning_rate": 0.0006,
+ "loss": 3.8858234882354736,
+ "step": 1484
+ },
+ {
+ "epoch": 20.629095674967235,
+ "grad_norm": 0.20131368935108185,
+ "learning_rate": 0.0006,
+ "loss": 3.927213430404663,
+ "step": 1485
+ },
+ {
+ "epoch": 20.643075578855395,
+ "grad_norm": 0.20746243000030518,
+ "learning_rate": 0.0006,
+ "loss": 3.913198471069336,
+ "step": 1486
+ },
+ {
+ "epoch": 20.657055482743555,
+ "grad_norm": 0.2024548053741455,
+ "learning_rate": 0.0006,
+ "loss": 3.923048257827759,
+ "step": 1487
+ },
+ {
+ "epoch": 20.67103538663172,
+ "grad_norm": 0.19735988974571228,
+ "learning_rate": 0.0006,
+ "loss": 3.9136500358581543,
+ "step": 1488
+ },
+ {
+ "epoch": 20.68501529051988,
+ "grad_norm": 0.19781625270843506,
+ "learning_rate": 0.0006,
+ "loss": 3.883793592453003,
+ "step": 1489
+ },
+ {
+ "epoch": 20.698995194408038,
+ "grad_norm": 0.1911996454000473,
+ "learning_rate": 0.0006,
+ "loss": 3.9078567028045654,
+ "step": 1490
+ },
+ {
+ "epoch": 20.712975098296198,
+ "grad_norm": 0.1989123821258545,
+ "learning_rate": 0.0006,
+ "loss": 3.9314043521881104,
+ "step": 1491
+ },
+ {
+ "epoch": 20.72695500218436,
+ "grad_norm": 0.18839342892169952,
+ "learning_rate": 0.0006,
+ "loss": 3.8955953121185303,
+ "step": 1492
+ },
+ {
+ "epoch": 20.74093490607252,
+ "grad_norm": 0.1944834142923355,
+ "learning_rate": 0.0006,
+ "loss": 3.9272377490997314,
+ "step": 1493
+ },
+ {
+ "epoch": 20.75491480996068,
+ "grad_norm": 0.20829126238822937,
+ "learning_rate": 0.0006,
+ "loss": 3.878857374191284,
+ "step": 1494
+ },
+ {
+ "epoch": 20.76889471384884,
+ "grad_norm": 0.21438424289226532,
+ "learning_rate": 0.0006,
+ "loss": 3.9155564308166504,
+ "step": 1495
+ },
+ {
+ "epoch": 20.782874617737004,
+ "grad_norm": 0.22309324145317078,
+ "learning_rate": 0.0006,
+ "loss": 3.9281692504882812,
+ "step": 1496
+ },
+ {
+ "epoch": 20.796854521625164,
+ "grad_norm": 0.2053767591714859,
+ "learning_rate": 0.0006,
+ "loss": 3.9096317291259766,
+ "step": 1497
+ },
+ {
+ "epoch": 20.810834425513324,
+ "grad_norm": 0.20429186522960663,
+ "learning_rate": 0.0006,
+ "loss": 3.9184865951538086,
+ "step": 1498
+ },
+ {
+ "epoch": 20.824814329401484,
+ "grad_norm": 0.21983473002910614,
+ "learning_rate": 0.0006,
+ "loss": 3.9130771160125732,
+ "step": 1499
+ },
+ {
+ "epoch": 20.838794233289647,
+ "grad_norm": 0.21649539470672607,
+ "learning_rate": 0.0006,
+ "loss": 3.921581268310547,
+ "step": 1500
+ },
+ {
+ "epoch": 20.852774137177807,
+ "grad_norm": 0.19645053148269653,
+ "learning_rate": 0.0006,
+ "loss": 3.966360092163086,
+ "step": 1501
+ },
+ {
+ "epoch": 20.866754041065967,
+ "grad_norm": 0.2126782387495041,
+ "learning_rate": 0.0006,
+ "loss": 3.9004554748535156,
+ "step": 1502
+ },
+ {
+ "epoch": 20.88073394495413,
+ "grad_norm": 0.22359658777713776,
+ "learning_rate": 0.0006,
+ "loss": 3.92336368560791,
+ "step": 1503
+ },
+ {
+ "epoch": 20.89471384884229,
+ "grad_norm": 0.2334042638540268,
+ "learning_rate": 0.0006,
+ "loss": 3.9188671112060547,
+ "step": 1504
+ },
+ {
+ "epoch": 20.90869375273045,
+ "grad_norm": 0.24595916271209717,
+ "learning_rate": 0.0006,
+ "loss": 3.9348371028900146,
+ "step": 1505
+ },
+ {
+ "epoch": 20.92267365661861,
+ "grad_norm": 0.24177910387516022,
+ "learning_rate": 0.0006,
+ "loss": 3.8796424865722656,
+ "step": 1506
+ },
+ {
+ "epoch": 20.936653560506773,
+ "grad_norm": 0.24193289875984192,
+ "learning_rate": 0.0006,
+ "loss": 3.892627716064453,
+ "step": 1507
+ },
+ {
+ "epoch": 20.950633464394933,
+ "grad_norm": 0.252849280834198,
+ "learning_rate": 0.0006,
+ "loss": 3.9300179481506348,
+ "step": 1508
+ },
+ {
+ "epoch": 20.964613368283093,
+ "grad_norm": 0.24933326244354248,
+ "learning_rate": 0.0006,
+ "loss": 3.9597225189208984,
+ "step": 1509
+ },
+ {
+ "epoch": 20.978593272171253,
+ "grad_norm": 0.23850969970226288,
+ "learning_rate": 0.0006,
+ "loss": 3.9027397632598877,
+ "step": 1510
+ },
+ {
+ "epoch": 20.992573176059416,
+ "grad_norm": 0.23298311233520508,
+ "learning_rate": 0.0006,
+ "loss": 3.9024105072021484,
+ "step": 1511
+ },
+ {
+ "epoch": 21.0,
+ "grad_norm": 0.2467455416917801,
+ "learning_rate": 0.0006,
+ "loss": 3.915929079055786,
+ "step": 1512
+ },
+ {
+ "epoch": 21.0,
+ "eval_loss": 4.136331081390381,
+ "eval_runtime": 43.9468,
+ "eval_samples_per_second": 55.567,
+ "eval_steps_per_second": 3.481,
+ "step": 1512
+ },
+ {
+ "epoch": 21.01397990388816,
+ "grad_norm": 0.2195885181427002,
+ "learning_rate": 0.0006,
+ "loss": 3.873412847518921,
+ "step": 1513
+ },
+ {
+ "epoch": 21.027959807776323,
+ "grad_norm": 0.24250614643096924,
+ "learning_rate": 0.0006,
+ "loss": 3.882302761077881,
+ "step": 1514
+ },
+ {
+ "epoch": 21.041939711664483,
+ "grad_norm": 0.249113991856575,
+ "learning_rate": 0.0006,
+ "loss": 3.9112048149108887,
+ "step": 1515
+ },
+ {
+ "epoch": 21.055919615552643,
+ "grad_norm": 0.25365301966667175,
+ "learning_rate": 0.0006,
+ "loss": 3.8625712394714355,
+ "step": 1516
+ },
+ {
+ "epoch": 21.069899519440803,
+ "grad_norm": 0.2218591272830963,
+ "learning_rate": 0.0006,
+ "loss": 3.876072406768799,
+ "step": 1517
+ },
+ {
+ "epoch": 21.083879423328966,
+ "grad_norm": 0.238582581281662,
+ "learning_rate": 0.0006,
+ "loss": 3.862060546875,
+ "step": 1518
+ },
+ {
+ "epoch": 21.097859327217126,
+ "grad_norm": 0.25051242113113403,
+ "learning_rate": 0.0006,
+ "loss": 3.905315399169922,
+ "step": 1519
+ },
+ {
+ "epoch": 21.111839231105286,
+ "grad_norm": 0.2391843944787979,
+ "learning_rate": 0.0006,
+ "loss": 3.909144401550293,
+ "step": 1520
+ },
+ {
+ "epoch": 21.125819134993446,
+ "grad_norm": 0.230543315410614,
+ "learning_rate": 0.0006,
+ "loss": 3.8856799602508545,
+ "step": 1521
+ },
+ {
+ "epoch": 21.13979903888161,
+ "grad_norm": 0.24165484309196472,
+ "learning_rate": 0.0006,
+ "loss": 3.893883228302002,
+ "step": 1522
+ },
+ {
+ "epoch": 21.15377894276977,
+ "grad_norm": 0.24657143652439117,
+ "learning_rate": 0.0006,
+ "loss": 3.901129722595215,
+ "step": 1523
+ },
+ {
+ "epoch": 21.16775884665793,
+ "grad_norm": 0.2659998834133148,
+ "learning_rate": 0.0006,
+ "loss": 3.910468101501465,
+ "step": 1524
+ },
+ {
+ "epoch": 21.18173875054609,
+ "grad_norm": 0.2673095166683197,
+ "learning_rate": 0.0006,
+ "loss": 3.917454242706299,
+ "step": 1525
+ },
+ {
+ "epoch": 21.195718654434252,
+ "grad_norm": 0.22122322022914886,
+ "learning_rate": 0.0006,
+ "loss": 3.9017257690429688,
+ "step": 1526
+ },
+ {
+ "epoch": 21.209698558322412,
+ "grad_norm": 0.21882867813110352,
+ "learning_rate": 0.0006,
+ "loss": 3.8605496883392334,
+ "step": 1527
+ },
+ {
+ "epoch": 21.22367846221057,
+ "grad_norm": 0.22335563600063324,
+ "learning_rate": 0.0006,
+ "loss": 3.88120174407959,
+ "step": 1528
+ },
+ {
+ "epoch": 21.23765836609873,
+ "grad_norm": 0.22973211109638214,
+ "learning_rate": 0.0006,
+ "loss": 3.8636834621429443,
+ "step": 1529
+ },
+ {
+ "epoch": 21.251638269986895,
+ "grad_norm": 0.2410288006067276,
+ "learning_rate": 0.0006,
+ "loss": 3.8698177337646484,
+ "step": 1530
+ },
+ {
+ "epoch": 21.265618173875055,
+ "grad_norm": 0.2454768717288971,
+ "learning_rate": 0.0006,
+ "loss": 3.905341148376465,
+ "step": 1531
+ },
+ {
+ "epoch": 21.279598077763215,
+ "grad_norm": 0.2271580696105957,
+ "learning_rate": 0.0006,
+ "loss": 3.864063262939453,
+ "step": 1532
+ },
+ {
+ "epoch": 21.293577981651374,
+ "grad_norm": 0.2200947403907776,
+ "learning_rate": 0.0006,
+ "loss": 3.8889589309692383,
+ "step": 1533
+ },
+ {
+ "epoch": 21.307557885539538,
+ "grad_norm": 0.2180824875831604,
+ "learning_rate": 0.0006,
+ "loss": 3.8873472213745117,
+ "step": 1534
+ },
+ {
+ "epoch": 21.321537789427698,
+ "grad_norm": 0.214975506067276,
+ "learning_rate": 0.0006,
+ "loss": 3.882307529449463,
+ "step": 1535
+ },
+ {
+ "epoch": 21.335517693315857,
+ "grad_norm": 0.21411260962486267,
+ "learning_rate": 0.0006,
+ "loss": 3.8861560821533203,
+ "step": 1536
+ },
+ {
+ "epoch": 21.34949759720402,
+ "grad_norm": 0.22635889053344727,
+ "learning_rate": 0.0006,
+ "loss": 3.9174342155456543,
+ "step": 1537
+ },
+ {
+ "epoch": 21.36347750109218,
+ "grad_norm": 0.22700625658035278,
+ "learning_rate": 0.0006,
+ "loss": 3.890416383743286,
+ "step": 1538
+ },
+ {
+ "epoch": 21.37745740498034,
+ "grad_norm": 0.2106025069952011,
+ "learning_rate": 0.0006,
+ "loss": 3.8672406673431396,
+ "step": 1539
+ },
+ {
+ "epoch": 21.3914373088685,
+ "grad_norm": 0.22994661331176758,
+ "learning_rate": 0.0006,
+ "loss": 3.893190383911133,
+ "step": 1540
+ },
+ {
+ "epoch": 21.405417212756664,
+ "grad_norm": 0.24701105058193207,
+ "learning_rate": 0.0006,
+ "loss": 3.898078441619873,
+ "step": 1541
+ },
+ {
+ "epoch": 21.419397116644824,
+ "grad_norm": 0.26914113759994507,
+ "learning_rate": 0.0006,
+ "loss": 3.905871868133545,
+ "step": 1542
+ },
+ {
+ "epoch": 21.433377020532983,
+ "grad_norm": 0.2904224097728729,
+ "learning_rate": 0.0006,
+ "loss": 3.8919103145599365,
+ "step": 1543
+ },
+ {
+ "epoch": 21.447356924421143,
+ "grad_norm": 0.2911844551563263,
+ "learning_rate": 0.0006,
+ "loss": 3.9073286056518555,
+ "step": 1544
+ },
+ {
+ "epoch": 21.461336828309307,
+ "grad_norm": 0.2742345929145813,
+ "learning_rate": 0.0006,
+ "loss": 3.9075546264648438,
+ "step": 1545
+ },
+ {
+ "epoch": 21.475316732197467,
+ "grad_norm": 0.2341093122959137,
+ "learning_rate": 0.0006,
+ "loss": 3.9232025146484375,
+ "step": 1546
+ },
+ {
+ "epoch": 21.489296636085626,
+ "grad_norm": 0.22808541357517242,
+ "learning_rate": 0.0006,
+ "loss": 3.9168174266815186,
+ "step": 1547
+ },
+ {
+ "epoch": 21.503276539973786,
+ "grad_norm": 0.23049889504909515,
+ "learning_rate": 0.0006,
+ "loss": 3.8850595951080322,
+ "step": 1548
+ },
+ {
+ "epoch": 21.51725644386195,
+ "grad_norm": 0.21519650518894196,
+ "learning_rate": 0.0006,
+ "loss": 3.891313076019287,
+ "step": 1549
+ },
+ {
+ "epoch": 21.53123634775011,
+ "grad_norm": 0.20999883115291595,
+ "learning_rate": 0.0006,
+ "loss": 3.894439220428467,
+ "step": 1550
+ },
+ {
+ "epoch": 21.54521625163827,
+ "grad_norm": 0.19641105830669403,
+ "learning_rate": 0.0006,
+ "loss": 3.894871473312378,
+ "step": 1551
+ },
+ {
+ "epoch": 21.55919615552643,
+ "grad_norm": 0.19108249247074127,
+ "learning_rate": 0.0006,
+ "loss": 3.905968189239502,
+ "step": 1552
+ },
+ {
+ "epoch": 21.573176059414592,
+ "grad_norm": 0.20222234725952148,
+ "learning_rate": 0.0006,
+ "loss": 3.90565824508667,
+ "step": 1553
+ },
+ {
+ "epoch": 21.587155963302752,
+ "grad_norm": 0.20620177686214447,
+ "learning_rate": 0.0006,
+ "loss": 3.9103245735168457,
+ "step": 1554
+ },
+ {
+ "epoch": 21.601135867190912,
+ "grad_norm": 0.2149713784456253,
+ "learning_rate": 0.0006,
+ "loss": 3.8864927291870117,
+ "step": 1555
+ },
+ {
+ "epoch": 21.615115771079076,
+ "grad_norm": 0.2354084551334381,
+ "learning_rate": 0.0006,
+ "loss": 3.905095100402832,
+ "step": 1556
+ },
+ {
+ "epoch": 21.629095674967235,
+ "grad_norm": 0.23949941992759705,
+ "learning_rate": 0.0006,
+ "loss": 3.901803493499756,
+ "step": 1557
+ },
+ {
+ "epoch": 21.643075578855395,
+ "grad_norm": 0.22914277017116547,
+ "learning_rate": 0.0006,
+ "loss": 3.876044273376465,
+ "step": 1558
+ },
+ {
+ "epoch": 21.657055482743555,
+ "grad_norm": 0.2363225370645523,
+ "learning_rate": 0.0006,
+ "loss": 3.910841703414917,
+ "step": 1559
+ },
+ {
+ "epoch": 21.67103538663172,
+ "grad_norm": 0.2635626792907715,
+ "learning_rate": 0.0006,
+ "loss": 3.847407579421997,
+ "step": 1560
+ },
+ {
+ "epoch": 21.68501529051988,
+ "grad_norm": 0.2499786615371704,
+ "learning_rate": 0.0006,
+ "loss": 3.8667140007019043,
+ "step": 1561
+ },
+ {
+ "epoch": 21.698995194408038,
+ "grad_norm": 0.21609611809253693,
+ "learning_rate": 0.0006,
+ "loss": 3.895470142364502,
+ "step": 1562
+ },
+ {
+ "epoch": 21.712975098296198,
+ "grad_norm": 0.2466774582862854,
+ "learning_rate": 0.0006,
+ "loss": 3.8853235244750977,
+ "step": 1563
+ },
+ {
+ "epoch": 21.72695500218436,
+ "grad_norm": 0.23791883885860443,
+ "learning_rate": 0.0006,
+ "loss": 3.899418354034424,
+ "step": 1564
+ },
+ {
+ "epoch": 21.74093490607252,
+ "grad_norm": 0.2048920840024948,
+ "learning_rate": 0.0006,
+ "loss": 3.8992419242858887,
+ "step": 1565
+ },
+ {
+ "epoch": 21.75491480996068,
+ "grad_norm": 0.22266621887683868,
+ "learning_rate": 0.0006,
+ "loss": 3.885765552520752,
+ "step": 1566
+ },
+ {
+ "epoch": 21.76889471384884,
+ "grad_norm": 0.2508748769760132,
+ "learning_rate": 0.0006,
+ "loss": 3.8797037601470947,
+ "step": 1567
+ },
+ {
+ "epoch": 21.782874617737004,
+ "grad_norm": 0.27245673537254333,
+ "learning_rate": 0.0006,
+ "loss": 3.8743176460266113,
+ "step": 1568
+ },
+ {
+ "epoch": 21.796854521625164,
+ "grad_norm": 0.25503191351890564,
+ "learning_rate": 0.0006,
+ "loss": 3.868906259536743,
+ "step": 1569
+ },
+ {
+ "epoch": 21.810834425513324,
+ "grad_norm": 0.22984394431114197,
+ "learning_rate": 0.0006,
+ "loss": 3.9051015377044678,
+ "step": 1570
+ },
+ {
+ "epoch": 21.824814329401484,
+ "grad_norm": 0.2411898821592331,
+ "learning_rate": 0.0006,
+ "loss": 3.8911490440368652,
+ "step": 1571
+ },
+ {
+ "epoch": 21.838794233289647,
+ "grad_norm": 0.22609318792819977,
+ "learning_rate": 0.0006,
+ "loss": 3.894839286804199,
+ "step": 1572
+ },
+ {
+ "epoch": 21.852774137177807,
+ "grad_norm": 0.21904583275318146,
+ "learning_rate": 0.0006,
+ "loss": 3.9314537048339844,
+ "step": 1573
+ },
+ {
+ "epoch": 21.866754041065967,
+ "grad_norm": 0.21869723498821259,
+ "learning_rate": 0.0006,
+ "loss": 3.9141433238983154,
+ "step": 1574
+ },
+ {
+ "epoch": 21.88073394495413,
+ "grad_norm": 0.21682019531726837,
+ "learning_rate": 0.0006,
+ "loss": 3.867898464202881,
+ "step": 1575
+ },
+ {
+ "epoch": 21.89471384884229,
+ "grad_norm": 0.2211964726448059,
+ "learning_rate": 0.0006,
+ "loss": 3.8892226219177246,
+ "step": 1576
+ },
+ {
+ "epoch": 21.90869375273045,
+ "grad_norm": 0.2097381353378296,
+ "learning_rate": 0.0006,
+ "loss": 3.9194154739379883,
+ "step": 1577
+ },
+ {
+ "epoch": 21.92267365661861,
+ "grad_norm": 0.21229565143585205,
+ "learning_rate": 0.0006,
+ "loss": 3.924694538116455,
+ "step": 1578
+ },
+ {
+ "epoch": 21.936653560506773,
+ "grad_norm": 0.2186083346605301,
+ "learning_rate": 0.0006,
+ "loss": 3.904440402984619,
+ "step": 1579
+ },
+ {
+ "epoch": 21.950633464394933,
+ "grad_norm": 0.21112321317195892,
+ "learning_rate": 0.0006,
+ "loss": 3.905674934387207,
+ "step": 1580
+ },
+ {
+ "epoch": 21.964613368283093,
+ "grad_norm": 0.20867373049259186,
+ "learning_rate": 0.0006,
+ "loss": 3.8761563301086426,
+ "step": 1581
+ },
+ {
+ "epoch": 21.978593272171253,
+ "grad_norm": 0.21640732884407043,
+ "learning_rate": 0.0006,
+ "loss": 3.871950149536133,
+ "step": 1582
+ },
+ {
+ "epoch": 21.992573176059416,
+ "grad_norm": 0.21920442581176758,
+ "learning_rate": 0.0006,
+ "loss": 3.8853464126586914,
+ "step": 1583
+ },
+ {
+ "epoch": 22.0,
+ "grad_norm": 0.24132665991783142,
+ "learning_rate": 0.0006,
+ "loss": 3.9012184143066406,
+ "step": 1584
+ },
+ {
+ "epoch": 22.0,
+ "eval_loss": 4.108598232269287,
+ "eval_runtime": 44.0434,
+ "eval_samples_per_second": 55.445,
+ "eval_steps_per_second": 3.474,
+ "step": 1584
+ },
+ {
+ "epoch": 22.01397990388816,
+ "grad_norm": 0.21989449858665466,
+ "learning_rate": 0.0006,
+ "loss": 3.8657469749450684,
+ "step": 1585
+ },
+ {
+ "epoch": 22.027959807776323,
+ "grad_norm": 0.20416802167892456,
+ "learning_rate": 0.0006,
+ "loss": 3.8682117462158203,
+ "step": 1586
+ },
+ {
+ "epoch": 22.041939711664483,
+ "grad_norm": 0.20651975274085999,
+ "learning_rate": 0.0006,
+ "loss": 3.8501222133636475,
+ "step": 1587
+ },
+ {
+ "epoch": 22.055919615552643,
+ "grad_norm": 0.22987176477909088,
+ "learning_rate": 0.0006,
+ "loss": 3.8830955028533936,
+ "step": 1588
+ },
+ {
+ "epoch": 22.069899519440803,
+ "grad_norm": 0.23308858275413513,
+ "learning_rate": 0.0006,
+ "loss": 3.8659040927886963,
+ "step": 1589
+ },
+ {
+ "epoch": 22.083879423328966,
+ "grad_norm": 0.2144266963005066,
+ "learning_rate": 0.0006,
+ "loss": 3.8311047554016113,
+ "step": 1590
+ },
+ {
+ "epoch": 22.097859327217126,
+ "grad_norm": 0.2052636295557022,
+ "learning_rate": 0.0006,
+ "loss": 3.8700156211853027,
+ "step": 1591
+ },
+ {
+ "epoch": 22.111839231105286,
+ "grad_norm": 0.22792384028434753,
+ "learning_rate": 0.0006,
+ "loss": 3.8799097537994385,
+ "step": 1592
+ },
+ {
+ "epoch": 22.125819134993446,
+ "grad_norm": 0.2533944249153137,
+ "learning_rate": 0.0006,
+ "loss": 3.874959945678711,
+ "step": 1593
+ },
+ {
+ "epoch": 22.13979903888161,
+ "grad_norm": 0.27126258611679077,
+ "learning_rate": 0.0006,
+ "loss": 3.863774299621582,
+ "step": 1594
+ },
+ {
+ "epoch": 22.15377894276977,
+ "grad_norm": 0.2634040415287018,
+ "learning_rate": 0.0006,
+ "loss": 3.8876869678497314,
+ "step": 1595
+ },
+ {
+ "epoch": 22.16775884665793,
+ "grad_norm": 0.267987459897995,
+ "learning_rate": 0.0006,
+ "loss": 3.871776819229126,
+ "step": 1596
+ },
+ {
+ "epoch": 22.18173875054609,
+ "grad_norm": 0.2972337305545807,
+ "learning_rate": 0.0006,
+ "loss": 3.8453969955444336,
+ "step": 1597
+ },
+ {
+ "epoch": 22.195718654434252,
+ "grad_norm": 0.3012159764766693,
+ "learning_rate": 0.0006,
+ "loss": 3.8774254322052,
+ "step": 1598
+ },
+ {
+ "epoch": 22.209698558322412,
+ "grad_norm": 0.27275875210762024,
+ "learning_rate": 0.0006,
+ "loss": 3.8558950424194336,
+ "step": 1599
+ },
+ {
+ "epoch": 22.22367846221057,
+ "grad_norm": 0.2817993462085724,
+ "learning_rate": 0.0006,
+ "loss": 3.872211217880249,
+ "step": 1600
+ },
+ {
+ "epoch": 22.23765836609873,
+ "grad_norm": 0.28823208808898926,
+ "learning_rate": 0.0006,
+ "loss": 3.847616672515869,
+ "step": 1601
+ },
+ {
+ "epoch": 22.251638269986895,
+ "grad_norm": 0.2646387815475464,
+ "learning_rate": 0.0006,
+ "loss": 3.8993802070617676,
+ "step": 1602
+ },
+ {
+ "epoch": 22.265618173875055,
+ "grad_norm": 0.27664077281951904,
+ "learning_rate": 0.0006,
+ "loss": 3.858553409576416,
+ "step": 1603
+ },
+ {
+ "epoch": 22.279598077763215,
+ "grad_norm": 0.27708905935287476,
+ "learning_rate": 0.0006,
+ "loss": 3.8691039085388184,
+ "step": 1604
+ },
+ {
+ "epoch": 22.293577981651374,
+ "grad_norm": 0.3045521378517151,
+ "learning_rate": 0.0006,
+ "loss": 3.8721439838409424,
+ "step": 1605
+ },
+ {
+ "epoch": 22.307557885539538,
+ "grad_norm": 0.3481914699077606,
+ "learning_rate": 0.0006,
+ "loss": 3.894503593444824,
+ "step": 1606
+ },
+ {
+ "epoch": 22.321537789427698,
+ "grad_norm": 0.3298046588897705,
+ "learning_rate": 0.0006,
+ "loss": 3.8420844078063965,
+ "step": 1607
+ },
+ {
+ "epoch": 22.335517693315857,
+ "grad_norm": 0.24967724084854126,
+ "learning_rate": 0.0006,
+ "loss": 3.8892619609832764,
+ "step": 1608
+ },
+ {
+ "epoch": 22.34949759720402,
+ "grad_norm": 0.22645241022109985,
+ "learning_rate": 0.0006,
+ "loss": 3.873265504837036,
+ "step": 1609
+ },
+ {
+ "epoch": 22.36347750109218,
+ "grad_norm": 0.22813954949378967,
+ "learning_rate": 0.0006,
+ "loss": 3.8658013343811035,
+ "step": 1610
+ },
+ {
+ "epoch": 22.37745740498034,
+ "grad_norm": 0.23825274407863617,
+ "learning_rate": 0.0006,
+ "loss": 3.885456085205078,
+ "step": 1611
+ },
+ {
+ "epoch": 22.3914373088685,
+ "grad_norm": 0.23612336814403534,
+ "learning_rate": 0.0006,
+ "loss": 3.851841449737549,
+ "step": 1612
+ },
+ {
+ "epoch": 22.405417212756664,
+ "grad_norm": 0.23851265013217926,
+ "learning_rate": 0.0006,
+ "loss": 3.8711647987365723,
+ "step": 1613
+ },
+ {
+ "epoch": 22.419397116644824,
+ "grad_norm": 0.22977286577224731,
+ "learning_rate": 0.0006,
+ "loss": 3.848539113998413,
+ "step": 1614
+ },
+ {
+ "epoch": 22.433377020532983,
+ "grad_norm": 0.20970143377780914,
+ "learning_rate": 0.0006,
+ "loss": 3.8709521293640137,
+ "step": 1615
+ },
+ {
+ "epoch": 22.447356924421143,
+ "grad_norm": 0.20714804530143738,
+ "learning_rate": 0.0006,
+ "loss": 3.875060558319092,
+ "step": 1616
+ },
+ {
+ "epoch": 22.461336828309307,
+ "grad_norm": 0.18881355226039886,
+ "learning_rate": 0.0006,
+ "loss": 3.8744640350341797,
+ "step": 1617
+ },
+ {
+ "epoch": 22.475316732197467,
+ "grad_norm": 0.1928759068250656,
+ "learning_rate": 0.0006,
+ "loss": 3.867971420288086,
+ "step": 1618
+ },
+ {
+ "epoch": 22.489296636085626,
+ "grad_norm": 0.18614749610424042,
+ "learning_rate": 0.0006,
+ "loss": 3.8738222122192383,
+ "step": 1619
+ },
+ {
+ "epoch": 22.503276539973786,
+ "grad_norm": 0.18614931404590607,
+ "learning_rate": 0.0006,
+ "loss": 3.8470513820648193,
+ "step": 1620
+ },
+ {
+ "epoch": 22.51725644386195,
+ "grad_norm": 0.17805059254169464,
+ "learning_rate": 0.0006,
+ "loss": 3.866396903991699,
+ "step": 1621
+ },
+ {
+ "epoch": 22.53123634775011,
+ "grad_norm": 0.16941314935684204,
+ "learning_rate": 0.0006,
+ "loss": 3.856832265853882,
+ "step": 1622
+ },
+ {
+ "epoch": 22.54521625163827,
+ "grad_norm": 0.1802310198545456,
+ "learning_rate": 0.0006,
+ "loss": 3.885653018951416,
+ "step": 1623
+ },
+ {
+ "epoch": 22.55919615552643,
+ "grad_norm": 0.1854856163263321,
+ "learning_rate": 0.0006,
+ "loss": 3.8779640197753906,
+ "step": 1624
+ },
+ {
+ "epoch": 22.573176059414592,
+ "grad_norm": 0.18765869736671448,
+ "learning_rate": 0.0006,
+ "loss": 3.8449032306671143,
+ "step": 1625
+ },
+ {
+ "epoch": 22.587155963302752,
+ "grad_norm": 0.1907789707183838,
+ "learning_rate": 0.0006,
+ "loss": 3.863029718399048,
+ "step": 1626
+ },
+ {
+ "epoch": 22.601135867190912,
+ "grad_norm": 0.19285395741462708,
+ "learning_rate": 0.0006,
+ "loss": 3.880145788192749,
+ "step": 1627
+ },
+ {
+ "epoch": 22.615115771079076,
+ "grad_norm": 0.19229751825332642,
+ "learning_rate": 0.0006,
+ "loss": 3.8521225452423096,
+ "step": 1628
+ },
+ {
+ "epoch": 22.629095674967235,
+ "grad_norm": 0.191694438457489,
+ "learning_rate": 0.0006,
+ "loss": 3.899827003479004,
+ "step": 1629
+ },
+ {
+ "epoch": 22.643075578855395,
+ "grad_norm": 0.20143048465251923,
+ "learning_rate": 0.0006,
+ "loss": 3.862064838409424,
+ "step": 1630
+ },
+ {
+ "epoch": 22.657055482743555,
+ "grad_norm": 0.1959840953350067,
+ "learning_rate": 0.0006,
+ "loss": 3.8955392837524414,
+ "step": 1631
+ },
+ {
+ "epoch": 22.67103538663172,
+ "grad_norm": 0.21454884111881256,
+ "learning_rate": 0.0006,
+ "loss": 3.8503167629241943,
+ "step": 1632
+ },
+ {
+ "epoch": 22.68501529051988,
+ "grad_norm": 0.21748484671115875,
+ "learning_rate": 0.0006,
+ "loss": 3.897134304046631,
+ "step": 1633
+ },
+ {
+ "epoch": 22.698995194408038,
+ "grad_norm": 0.21204186975955963,
+ "learning_rate": 0.0006,
+ "loss": 3.9292588233947754,
+ "step": 1634
+ },
+ {
+ "epoch": 22.712975098296198,
+ "grad_norm": 0.2112748771905899,
+ "learning_rate": 0.0006,
+ "loss": 3.89798641204834,
+ "step": 1635
+ },
+ {
+ "epoch": 22.72695500218436,
+ "grad_norm": 0.188576802611351,
+ "learning_rate": 0.0006,
+ "loss": 3.85627818107605,
+ "step": 1636
+ },
+ {
+ "epoch": 22.74093490607252,
+ "grad_norm": 0.17755994200706482,
+ "learning_rate": 0.0006,
+ "loss": 3.8480074405670166,
+ "step": 1637
+ },
+ {
+ "epoch": 22.75491480996068,
+ "grad_norm": 0.18037520349025726,
+ "learning_rate": 0.0006,
+ "loss": 3.8800172805786133,
+ "step": 1638
+ },
+ {
+ "epoch": 22.76889471384884,
+ "grad_norm": 0.19205765426158905,
+ "learning_rate": 0.0006,
+ "loss": 3.8658275604248047,
+ "step": 1639
+ },
+ {
+ "epoch": 22.782874617737004,
+ "grad_norm": 0.21801964938640594,
+ "learning_rate": 0.0006,
+ "loss": 3.8999452590942383,
+ "step": 1640
+ },
+ {
+ "epoch": 22.796854521625164,
+ "grad_norm": 0.23586086928844452,
+ "learning_rate": 0.0006,
+ "loss": 3.8660664558410645,
+ "step": 1641
+ },
+ {
+ "epoch": 22.810834425513324,
+ "grad_norm": 0.22289055585861206,
+ "learning_rate": 0.0006,
+ "loss": 3.86102557182312,
+ "step": 1642
+ },
+ {
+ "epoch": 22.824814329401484,
+ "grad_norm": 0.20695745944976807,
+ "learning_rate": 0.0006,
+ "loss": 3.8336222171783447,
+ "step": 1643
+ },
+ {
+ "epoch": 22.838794233289647,
+ "grad_norm": 0.2157406210899353,
+ "learning_rate": 0.0006,
+ "loss": 3.8923370838165283,
+ "step": 1644
+ },
+ {
+ "epoch": 22.852774137177807,
+ "grad_norm": 0.2326202690601349,
+ "learning_rate": 0.0006,
+ "loss": 3.8841443061828613,
+ "step": 1645
+ },
+ {
+ "epoch": 22.866754041065967,
+ "grad_norm": 0.2228803187608719,
+ "learning_rate": 0.0006,
+ "loss": 3.8791375160217285,
+ "step": 1646
+ },
+ {
+ "epoch": 22.88073394495413,
+ "grad_norm": 0.228999063372612,
+ "learning_rate": 0.0006,
+ "loss": 3.9005866050720215,
+ "step": 1647
+ },
+ {
+ "epoch": 22.89471384884229,
+ "grad_norm": 0.19673815369606018,
+ "learning_rate": 0.0006,
+ "loss": 3.8954291343688965,
+ "step": 1648
+ },
+ {
+ "epoch": 22.90869375273045,
+ "grad_norm": 0.1862584501504898,
+ "learning_rate": 0.0006,
+ "loss": 3.8591439723968506,
+ "step": 1649
+ },
+ {
+ "epoch": 22.92267365661861,
+ "grad_norm": 0.21360838413238525,
+ "learning_rate": 0.0006,
+ "loss": 3.862949848175049,
+ "step": 1650
+ },
+ {
+ "epoch": 22.936653560506773,
+ "grad_norm": 0.22538702189922333,
+ "learning_rate": 0.0006,
+ "loss": 3.8466529846191406,
+ "step": 1651
+ },
+ {
+ "epoch": 22.950633464394933,
+ "grad_norm": 0.21452727913856506,
+ "learning_rate": 0.0006,
+ "loss": 3.890007495880127,
+ "step": 1652
+ },
+ {
+ "epoch": 22.964613368283093,
+ "grad_norm": 0.21283482015132904,
+ "learning_rate": 0.0006,
+ "loss": 3.8820929527282715,
+ "step": 1653
+ },
+ {
+ "epoch": 22.978593272171253,
+ "grad_norm": 0.2035825103521347,
+ "learning_rate": 0.0006,
+ "loss": 3.8663241863250732,
+ "step": 1654
+ },
+ {
+ "epoch": 22.992573176059416,
+ "grad_norm": 0.22431661188602448,
+ "learning_rate": 0.0006,
+ "loss": 3.88238525390625,
+ "step": 1655
+ },
+ {
+ "epoch": 23.0,
+ "grad_norm": 0.2619943916797638,
+ "learning_rate": 0.0006,
+ "loss": 3.8482635021209717,
+ "step": 1656
+ },
+ {
+ "epoch": 23.0,
+ "eval_loss": 4.099980354309082,
+ "eval_runtime": 44.1311,
+ "eval_samples_per_second": 55.335,
+ "eval_steps_per_second": 3.467,
+ "step": 1656
+ },
+ {
+ "epoch": 23.01397990388816,
+ "grad_norm": 0.24712848663330078,
+ "learning_rate": 0.0006,
+ "loss": 3.836700916290283,
+ "step": 1657
+ },
+ {
+ "epoch": 23.027959807776323,
+ "grad_norm": 0.28568798303604126,
+ "learning_rate": 0.0006,
+ "loss": 3.8523952960968018,
+ "step": 1658
+ },
+ {
+ "epoch": 23.041939711664483,
+ "grad_norm": 0.2999744415283203,
+ "learning_rate": 0.0006,
+ "loss": 3.8229494094848633,
+ "step": 1659
+ },
+ {
+ "epoch": 23.055919615552643,
+ "grad_norm": 0.32080450654029846,
+ "learning_rate": 0.0006,
+ "loss": 3.8562774658203125,
+ "step": 1660
+ },
+ {
+ "epoch": 23.069899519440803,
+ "grad_norm": 0.293468177318573,
+ "learning_rate": 0.0006,
+ "loss": 3.889139175415039,
+ "step": 1661
+ },
+ {
+ "epoch": 23.083879423328966,
+ "grad_norm": 0.2605799436569214,
+ "learning_rate": 0.0006,
+ "loss": 3.838681221008301,
+ "step": 1662
+ },
+ {
+ "epoch": 23.097859327217126,
+ "grad_norm": 0.2656237483024597,
+ "learning_rate": 0.0006,
+ "loss": 3.8603532314300537,
+ "step": 1663
+ },
+ {
+ "epoch": 23.111839231105286,
+ "grad_norm": 0.27163293957710266,
+ "learning_rate": 0.0006,
+ "loss": 3.846987009048462,
+ "step": 1664
+ },
+ {
+ "epoch": 23.125819134993446,
+ "grad_norm": 0.2719763517379761,
+ "learning_rate": 0.0006,
+ "loss": 3.805354595184326,
+ "step": 1665
+ },
+ {
+ "epoch": 23.13979903888161,
+ "grad_norm": 0.25786274671554565,
+ "learning_rate": 0.0006,
+ "loss": 3.8486907482147217,
+ "step": 1666
+ },
+ {
+ "epoch": 23.15377894276977,
+ "grad_norm": 0.2675692141056061,
+ "learning_rate": 0.0006,
+ "loss": 3.816493511199951,
+ "step": 1667
+ },
+ {
+ "epoch": 23.16775884665793,
+ "grad_norm": 0.2711698114871979,
+ "learning_rate": 0.0006,
+ "loss": 3.851863384246826,
+ "step": 1668
+ },
+ {
+ "epoch": 23.18173875054609,
+ "grad_norm": 0.2588968873023987,
+ "learning_rate": 0.0006,
+ "loss": 3.860816717147827,
+ "step": 1669
+ },
+ {
+ "epoch": 23.195718654434252,
+ "grad_norm": 0.2458600401878357,
+ "learning_rate": 0.0006,
+ "loss": 3.8058223724365234,
+ "step": 1670
+ },
+ {
+ "epoch": 23.209698558322412,
+ "grad_norm": 0.22014005482196808,
+ "learning_rate": 0.0006,
+ "loss": 3.8686985969543457,
+ "step": 1671
+ },
+ {
+ "epoch": 23.22367846221057,
+ "grad_norm": 0.22450537979602814,
+ "learning_rate": 0.0006,
+ "loss": 3.8379364013671875,
+ "step": 1672
+ },
+ {
+ "epoch": 23.23765836609873,
+ "grad_norm": 0.22132326662540436,
+ "learning_rate": 0.0006,
+ "loss": 3.8873870372772217,
+ "step": 1673
+ },
+ {
+ "epoch": 23.251638269986895,
+ "grad_norm": 0.20994804799556732,
+ "learning_rate": 0.0006,
+ "loss": 3.821415424346924,
+ "step": 1674
+ },
+ {
+ "epoch": 23.265618173875055,
+ "grad_norm": 0.2040853649377823,
+ "learning_rate": 0.0006,
+ "loss": 3.831658124923706,
+ "step": 1675
+ },
+ {
+ "epoch": 23.279598077763215,
+ "grad_norm": 0.20878618955612183,
+ "learning_rate": 0.0006,
+ "loss": 3.838672637939453,
+ "step": 1676
+ },
+ {
+ "epoch": 23.293577981651374,
+ "grad_norm": 0.19974198937416077,
+ "learning_rate": 0.0006,
+ "loss": 3.8442561626434326,
+ "step": 1677
+ },
+ {
+ "epoch": 23.307557885539538,
+ "grad_norm": 0.20523984730243683,
+ "learning_rate": 0.0006,
+ "loss": 3.846139907836914,
+ "step": 1678
+ },
+ {
+ "epoch": 23.321537789427698,
+ "grad_norm": 0.2045847624540329,
+ "learning_rate": 0.0006,
+ "loss": 3.8597474098205566,
+ "step": 1679
+ },
+ {
+ "epoch": 23.335517693315857,
+ "grad_norm": 0.20957441627979279,
+ "learning_rate": 0.0006,
+ "loss": 3.8493881225585938,
+ "step": 1680
+ },
+ {
+ "epoch": 23.34949759720402,
+ "grad_norm": 0.2069379836320877,
+ "learning_rate": 0.0006,
+ "loss": 3.8510046005249023,
+ "step": 1681
+ },
+ {
+ "epoch": 23.36347750109218,
+ "grad_norm": 0.19627872109413147,
+ "learning_rate": 0.0006,
+ "loss": 3.844618320465088,
+ "step": 1682
+ },
+ {
+ "epoch": 23.37745740498034,
+ "grad_norm": 0.19599434733390808,
+ "learning_rate": 0.0006,
+ "loss": 3.8245465755462646,
+ "step": 1683
+ },
+ {
+ "epoch": 23.3914373088685,
+ "grad_norm": 0.2035072147846222,
+ "learning_rate": 0.0006,
+ "loss": 3.854422092437744,
+ "step": 1684
+ },
+ {
+ "epoch": 23.405417212756664,
+ "grad_norm": 0.21836814284324646,
+ "learning_rate": 0.0006,
+ "loss": 3.83512282371521,
+ "step": 1685
+ },
+ {
+ "epoch": 23.419397116644824,
+ "grad_norm": 0.22844630479812622,
+ "learning_rate": 0.0006,
+ "loss": 3.8744301795959473,
+ "step": 1686
+ },
+ {
+ "epoch": 23.433377020532983,
+ "grad_norm": 0.2259359359741211,
+ "learning_rate": 0.0006,
+ "loss": 3.8460323810577393,
+ "step": 1687
+ },
+ {
+ "epoch": 23.447356924421143,
+ "grad_norm": 0.24440120160579681,
+ "learning_rate": 0.0006,
+ "loss": 3.8543787002563477,
+ "step": 1688
+ },
+ {
+ "epoch": 23.461336828309307,
+ "grad_norm": 0.25063708424568176,
+ "learning_rate": 0.0006,
+ "loss": 3.851004123687744,
+ "step": 1689
+ },
+ {
+ "epoch": 23.475316732197467,
+ "grad_norm": 0.25515618920326233,
+ "learning_rate": 0.0006,
+ "loss": 3.8685030937194824,
+ "step": 1690
+ },
+ {
+ "epoch": 23.489296636085626,
+ "grad_norm": 0.23961050808429718,
+ "learning_rate": 0.0006,
+ "loss": 3.866792678833008,
+ "step": 1691
+ },
+ {
+ "epoch": 23.503276539973786,
+ "grad_norm": 0.20880955457687378,
+ "learning_rate": 0.0006,
+ "loss": 3.8416638374328613,
+ "step": 1692
+ },
+ {
+ "epoch": 23.51725644386195,
+ "grad_norm": 0.1989721804857254,
+ "learning_rate": 0.0006,
+ "loss": 3.8608641624450684,
+ "step": 1693
+ },
+ {
+ "epoch": 23.53123634775011,
+ "grad_norm": 0.207577183842659,
+ "learning_rate": 0.0006,
+ "loss": 3.8431811332702637,
+ "step": 1694
+ },
+ {
+ "epoch": 23.54521625163827,
+ "grad_norm": 0.20844359695911407,
+ "learning_rate": 0.0006,
+ "loss": 3.882844924926758,
+ "step": 1695
+ },
+ {
+ "epoch": 23.55919615552643,
+ "grad_norm": 0.22511139512062073,
+ "learning_rate": 0.0006,
+ "loss": 3.866156578063965,
+ "step": 1696
+ },
+ {
+ "epoch": 23.573176059414592,
+ "grad_norm": 0.21648484468460083,
+ "learning_rate": 0.0006,
+ "loss": 3.87117075920105,
+ "step": 1697
+ },
+ {
+ "epoch": 23.587155963302752,
+ "grad_norm": 0.2081802636384964,
+ "learning_rate": 0.0006,
+ "loss": 3.828132152557373,
+ "step": 1698
+ },
+ {
+ "epoch": 23.601135867190912,
+ "grad_norm": 0.2017381489276886,
+ "learning_rate": 0.0006,
+ "loss": 3.839737892150879,
+ "step": 1699
+ },
+ {
+ "epoch": 23.615115771079076,
+ "grad_norm": 0.2025786191225052,
+ "learning_rate": 0.0006,
+ "loss": 3.8787710666656494,
+ "step": 1700
+ },
+ {
+ "epoch": 23.629095674967235,
+ "grad_norm": 0.21394102275371552,
+ "learning_rate": 0.0006,
+ "loss": 3.824047088623047,
+ "step": 1701
+ },
+ {
+ "epoch": 23.643075578855395,
+ "grad_norm": 0.20749174058437347,
+ "learning_rate": 0.0006,
+ "loss": 3.877009153366089,
+ "step": 1702
+ },
+ {
+ "epoch": 23.657055482743555,
+ "grad_norm": 0.2132839858531952,
+ "learning_rate": 0.0006,
+ "loss": 3.844214916229248,
+ "step": 1703
+ },
+ {
+ "epoch": 23.67103538663172,
+ "grad_norm": 0.22408637404441833,
+ "learning_rate": 0.0006,
+ "loss": 3.8570785522460938,
+ "step": 1704
+ },
+ {
+ "epoch": 23.68501529051988,
+ "grad_norm": 0.2275897115468979,
+ "learning_rate": 0.0006,
+ "loss": 3.8599512577056885,
+ "step": 1705
+ },
+ {
+ "epoch": 23.698995194408038,
+ "grad_norm": 0.2230614721775055,
+ "learning_rate": 0.0006,
+ "loss": 3.86374568939209,
+ "step": 1706
+ },
+ {
+ "epoch": 23.712975098296198,
+ "grad_norm": 0.21873739361763,
+ "learning_rate": 0.0006,
+ "loss": 3.8530168533325195,
+ "step": 1707
+ },
+ {
+ "epoch": 23.72695500218436,
+ "grad_norm": 0.24418923258781433,
+ "learning_rate": 0.0006,
+ "loss": 3.8410465717315674,
+ "step": 1708
+ },
+ {
+ "epoch": 23.74093490607252,
+ "grad_norm": 0.24894575774669647,
+ "learning_rate": 0.0006,
+ "loss": 3.8386030197143555,
+ "step": 1709
+ },
+ {
+ "epoch": 23.75491480996068,
+ "grad_norm": 0.221230611205101,
+ "learning_rate": 0.0006,
+ "loss": 3.8116674423217773,
+ "step": 1710
+ },
+ {
+ "epoch": 23.76889471384884,
+ "grad_norm": 0.20560568571090698,
+ "learning_rate": 0.0006,
+ "loss": 3.8634426593780518,
+ "step": 1711
+ },
+ {
+ "epoch": 23.782874617737004,
+ "grad_norm": 0.20450648665428162,
+ "learning_rate": 0.0006,
+ "loss": 3.8690528869628906,
+ "step": 1712
+ },
+ {
+ "epoch": 23.796854521625164,
+ "grad_norm": 0.18996809422969818,
+ "learning_rate": 0.0006,
+ "loss": 3.8484325408935547,
+ "step": 1713
+ },
+ {
+ "epoch": 23.810834425513324,
+ "grad_norm": 0.20165087282657623,
+ "learning_rate": 0.0006,
+ "loss": 3.8823161125183105,
+ "step": 1714
+ },
+ {
+ "epoch": 23.824814329401484,
+ "grad_norm": 0.21149255335330963,
+ "learning_rate": 0.0006,
+ "loss": 3.8833112716674805,
+ "step": 1715
+ },
+ {
+ "epoch": 23.838794233289647,
+ "grad_norm": 0.21254824101924896,
+ "learning_rate": 0.0006,
+ "loss": 3.8414595127105713,
+ "step": 1716
+ },
+ {
+ "epoch": 23.852774137177807,
+ "grad_norm": 0.21313664317131042,
+ "learning_rate": 0.0006,
+ "loss": 3.8732268810272217,
+ "step": 1717
+ },
+ {
+ "epoch": 23.866754041065967,
+ "grad_norm": 0.21635662019252777,
+ "learning_rate": 0.0006,
+ "loss": 3.861222743988037,
+ "step": 1718
+ },
+ {
+ "epoch": 23.88073394495413,
+ "grad_norm": 0.20612190663814545,
+ "learning_rate": 0.0006,
+ "loss": 3.821854591369629,
+ "step": 1719
+ },
+ {
+ "epoch": 23.89471384884229,
+ "grad_norm": 0.1975104659795761,
+ "learning_rate": 0.0006,
+ "loss": 3.8815202713012695,
+ "step": 1720
+ },
+ {
+ "epoch": 23.90869375273045,
+ "grad_norm": 0.20893609523773193,
+ "learning_rate": 0.0006,
+ "loss": 3.8581607341766357,
+ "step": 1721
+ },
+ {
+ "epoch": 23.92267365661861,
+ "grad_norm": 0.2125461846590042,
+ "learning_rate": 0.0006,
+ "loss": 3.839498281478882,
+ "step": 1722
+ },
+ {
+ "epoch": 23.936653560506773,
+ "grad_norm": 0.19985878467559814,
+ "learning_rate": 0.0006,
+ "loss": 3.856555223464966,
+ "step": 1723
+ },
+ {
+ "epoch": 23.950633464394933,
+ "grad_norm": 0.1922348290681839,
+ "learning_rate": 0.0006,
+ "loss": 3.8956782817840576,
+ "step": 1724
+ },
+ {
+ "epoch": 23.964613368283093,
+ "grad_norm": 0.2191949337720871,
+ "learning_rate": 0.0006,
+ "loss": 3.8582406044006348,
+ "step": 1725
+ },
+ {
+ "epoch": 23.978593272171253,
+ "grad_norm": 0.2569248676300049,
+ "learning_rate": 0.0006,
+ "loss": 3.855678081512451,
+ "step": 1726
+ },
+ {
+ "epoch": 23.992573176059416,
+ "grad_norm": 0.2641172409057617,
+ "learning_rate": 0.0006,
+ "loss": 3.8426473140716553,
+ "step": 1727
+ },
+ {
+ "epoch": 24.0,
+ "grad_norm": 0.29637208580970764,
+ "learning_rate": 0.0006,
+ "loss": 3.843040704727173,
+ "step": 1728
+ },
+ {
+ "epoch": 24.0,
+ "eval_loss": 4.075617790222168,
+ "eval_runtime": 43.9795,
+ "eval_samples_per_second": 55.526,
+ "eval_steps_per_second": 3.479,
+ "step": 1728
+ },
+ {
+ "epoch": 24.01397990388816,
+ "grad_norm": 0.2804758548736572,
+ "learning_rate": 0.0006,
+ "loss": 3.819150924682617,
+ "step": 1729
+ },
+ {
+ "epoch": 24.027959807776323,
+ "grad_norm": 0.2796347141265869,
+ "learning_rate": 0.0006,
+ "loss": 3.8400537967681885,
+ "step": 1730
+ },
+ {
+ "epoch": 24.041939711664483,
+ "grad_norm": 0.28388649225234985,
+ "learning_rate": 0.0006,
+ "loss": 3.844595432281494,
+ "step": 1731
+ },
+ {
+ "epoch": 24.055919615552643,
+ "grad_norm": 0.2944681942462921,
+ "learning_rate": 0.0006,
+ "loss": 3.8048014640808105,
+ "step": 1732
+ },
+ {
+ "epoch": 24.069899519440803,
+ "grad_norm": 0.2956784665584564,
+ "learning_rate": 0.0006,
+ "loss": 3.8488049507141113,
+ "step": 1733
+ },
+ {
+ "epoch": 24.083879423328966,
+ "grad_norm": 0.2822059392929077,
+ "learning_rate": 0.0006,
+ "loss": 3.850322723388672,
+ "step": 1734
+ },
+ {
+ "epoch": 24.097859327217126,
+ "grad_norm": 0.3012927174568176,
+ "learning_rate": 0.0006,
+ "loss": 3.8748154640197754,
+ "step": 1735
+ },
+ {
+ "epoch": 24.111839231105286,
+ "grad_norm": 0.28868764638900757,
+ "learning_rate": 0.0006,
+ "loss": 3.8282783031463623,
+ "step": 1736
+ },
+ {
+ "epoch": 24.125819134993446,
+ "grad_norm": 0.277203768491745,
+ "learning_rate": 0.0006,
+ "loss": 3.8462908267974854,
+ "step": 1737
+ },
+ {
+ "epoch": 24.13979903888161,
+ "grad_norm": 0.2654508948326111,
+ "learning_rate": 0.0006,
+ "loss": 3.8043856620788574,
+ "step": 1738
+ },
+ {
+ "epoch": 24.15377894276977,
+ "grad_norm": 0.24425740540027618,
+ "learning_rate": 0.0006,
+ "loss": 3.8284308910369873,
+ "step": 1739
+ },
+ {
+ "epoch": 24.16775884665793,
+ "grad_norm": 0.24407348036766052,
+ "learning_rate": 0.0006,
+ "loss": 3.8489203453063965,
+ "step": 1740
+ },
+ {
+ "epoch": 24.18173875054609,
+ "grad_norm": 0.2387724369764328,
+ "learning_rate": 0.0006,
+ "loss": 3.8240389823913574,
+ "step": 1741
+ },
+ {
+ "epoch": 24.195718654434252,
+ "grad_norm": 0.2832290232181549,
+ "learning_rate": 0.0006,
+ "loss": 3.869053363800049,
+ "step": 1742
+ },
+ {
+ "epoch": 24.209698558322412,
+ "grad_norm": 0.26501718163490295,
+ "learning_rate": 0.0006,
+ "loss": 3.8624343872070312,
+ "step": 1743
+ },
+ {
+ "epoch": 24.22367846221057,
+ "grad_norm": 0.24234668910503387,
+ "learning_rate": 0.0006,
+ "loss": 3.823103904724121,
+ "step": 1744
+ },
+ {
+ "epoch": 24.23765836609873,
+ "grad_norm": 0.24160076677799225,
+ "learning_rate": 0.0006,
+ "loss": 3.8174376487731934,
+ "step": 1745
+ },
+ {
+ "epoch": 24.251638269986895,
+ "grad_norm": 0.2447604238986969,
+ "learning_rate": 0.0006,
+ "loss": 3.8345441818237305,
+ "step": 1746
+ },
+ {
+ "epoch": 24.265618173875055,
+ "grad_norm": 0.22864456474781036,
+ "learning_rate": 0.0006,
+ "loss": 3.833101272583008,
+ "step": 1747
+ },
+ {
+ "epoch": 24.279598077763215,
+ "grad_norm": 0.20429204404354095,
+ "learning_rate": 0.0006,
+ "loss": 3.8055219650268555,
+ "step": 1748
+ },
+ {
+ "epoch": 24.293577981651374,
+ "grad_norm": 0.21538510918617249,
+ "learning_rate": 0.0006,
+ "loss": 3.7929327487945557,
+ "step": 1749
+ },
+ {
+ "epoch": 24.307557885539538,
+ "grad_norm": 0.2189008593559265,
+ "learning_rate": 0.0006,
+ "loss": 3.852264881134033,
+ "step": 1750
+ },
+ {
+ "epoch": 24.321537789427698,
+ "grad_norm": 0.2228662073612213,
+ "learning_rate": 0.0006,
+ "loss": 3.831088066101074,
+ "step": 1751
+ },
+ {
+ "epoch": 24.335517693315857,
+ "grad_norm": 0.2039937973022461,
+ "learning_rate": 0.0006,
+ "loss": 3.8358256816864014,
+ "step": 1752
+ },
+ {
+ "epoch": 24.34949759720402,
+ "grad_norm": 0.19247715175151825,
+ "learning_rate": 0.0006,
+ "loss": 3.8077402114868164,
+ "step": 1753
+ },
+ {
+ "epoch": 24.36347750109218,
+ "grad_norm": 0.18301935493946075,
+ "learning_rate": 0.0006,
+ "loss": 3.81380033493042,
+ "step": 1754
+ },
+ {
+ "epoch": 24.37745740498034,
+ "grad_norm": 0.19325268268585205,
+ "learning_rate": 0.0006,
+ "loss": 3.8447322845458984,
+ "step": 1755
+ },
+ {
+ "epoch": 24.3914373088685,
+ "grad_norm": 0.2007269263267517,
+ "learning_rate": 0.0006,
+ "loss": 3.82779860496521,
+ "step": 1756
+ },
+ {
+ "epoch": 24.405417212756664,
+ "grad_norm": 0.20567037165164948,
+ "learning_rate": 0.0006,
+ "loss": 3.800354480743408,
+ "step": 1757
+ },
+ {
+ "epoch": 24.419397116644824,
+ "grad_norm": 0.22553028166294098,
+ "learning_rate": 0.0006,
+ "loss": 3.7910406589508057,
+ "step": 1758
+ },
+ {
+ "epoch": 24.433377020532983,
+ "grad_norm": 0.22697079181671143,
+ "learning_rate": 0.0006,
+ "loss": 3.857635974884033,
+ "step": 1759
+ },
+ {
+ "epoch": 24.447356924421143,
+ "grad_norm": 0.22090297937393188,
+ "learning_rate": 0.0006,
+ "loss": 3.8112804889678955,
+ "step": 1760
+ },
+ {
+ "epoch": 24.461336828309307,
+ "grad_norm": 0.24325518310070038,
+ "learning_rate": 0.0006,
+ "loss": 3.822084426879883,
+ "step": 1761
+ },
+ {
+ "epoch": 24.475316732197467,
+ "grad_norm": 0.2702929377555847,
+ "learning_rate": 0.0006,
+ "loss": 3.8307600021362305,
+ "step": 1762
+ },
+ {
+ "epoch": 24.489296636085626,
+ "grad_norm": 0.2699742317199707,
+ "learning_rate": 0.0006,
+ "loss": 3.8479247093200684,
+ "step": 1763
+ },
+ {
+ "epoch": 24.503276539973786,
+ "grad_norm": 0.2526061236858368,
+ "learning_rate": 0.0006,
+ "loss": 3.8615071773529053,
+ "step": 1764
+ },
+ {
+ "epoch": 24.51725644386195,
+ "grad_norm": 0.2633848190307617,
+ "learning_rate": 0.0006,
+ "loss": 3.8412697315216064,
+ "step": 1765
+ },
+ {
+ "epoch": 24.53123634775011,
+ "grad_norm": 0.2711184024810791,
+ "learning_rate": 0.0006,
+ "loss": 3.83647084236145,
+ "step": 1766
+ },
+ {
+ "epoch": 24.54521625163827,
+ "grad_norm": 0.2691243588924408,
+ "learning_rate": 0.0006,
+ "loss": 3.8489012718200684,
+ "step": 1767
+ },
+ {
+ "epoch": 24.55919615552643,
+ "grad_norm": 0.2580898404121399,
+ "learning_rate": 0.0006,
+ "loss": 3.8464407920837402,
+ "step": 1768
+ },
+ {
+ "epoch": 24.573176059414592,
+ "grad_norm": 0.21342119574546814,
+ "learning_rate": 0.0006,
+ "loss": 3.8279383182525635,
+ "step": 1769
+ },
+ {
+ "epoch": 24.587155963302752,
+ "grad_norm": 0.22102399170398712,
+ "learning_rate": 0.0006,
+ "loss": 3.841676712036133,
+ "step": 1770
+ },
+ {
+ "epoch": 24.601135867190912,
+ "grad_norm": 0.2882173955440521,
+ "learning_rate": 0.0006,
+ "loss": 3.825528383255005,
+ "step": 1771
+ },
+ {
+ "epoch": 24.615115771079076,
+ "grad_norm": 0.3403635323047638,
+ "learning_rate": 0.0006,
+ "loss": 3.8282246589660645,
+ "step": 1772
+ },
+ {
+ "epoch": 24.629095674967235,
+ "grad_norm": 0.32192692160606384,
+ "learning_rate": 0.0006,
+ "loss": 3.8411307334899902,
+ "step": 1773
+ },
+ {
+ "epoch": 24.643075578855395,
+ "grad_norm": 0.2534109055995941,
+ "learning_rate": 0.0006,
+ "loss": 3.843007802963257,
+ "step": 1774
+ },
+ {
+ "epoch": 24.657055482743555,
+ "grad_norm": 0.25483962893486023,
+ "learning_rate": 0.0006,
+ "loss": 3.848358154296875,
+ "step": 1775
+ },
+ {
+ "epoch": 24.67103538663172,
+ "grad_norm": 0.25175443291664124,
+ "learning_rate": 0.0006,
+ "loss": 3.8232598304748535,
+ "step": 1776
+ },
+ {
+ "epoch": 24.68501529051988,
+ "grad_norm": 0.20538510382175446,
+ "learning_rate": 0.0006,
+ "loss": 3.857635498046875,
+ "step": 1777
+ },
+ {
+ "epoch": 24.698995194408038,
+ "grad_norm": 0.240861177444458,
+ "learning_rate": 0.0006,
+ "loss": 3.83717679977417,
+ "step": 1778
+ },
+ {
+ "epoch": 24.712975098296198,
+ "grad_norm": 0.23646967113018036,
+ "learning_rate": 0.0006,
+ "loss": 3.81032133102417,
+ "step": 1779
+ },
+ {
+ "epoch": 24.72695500218436,
+ "grad_norm": 0.2164423167705536,
+ "learning_rate": 0.0006,
+ "loss": 3.807878255844116,
+ "step": 1780
+ },
+ {
+ "epoch": 24.74093490607252,
+ "grad_norm": 0.21160705387592316,
+ "learning_rate": 0.0006,
+ "loss": 3.870394468307495,
+ "step": 1781
+ },
+ {
+ "epoch": 24.75491480996068,
+ "grad_norm": 0.20284807682037354,
+ "learning_rate": 0.0006,
+ "loss": 3.842154026031494,
+ "step": 1782
+ },
+ {
+ "epoch": 24.76889471384884,
+ "grad_norm": 0.20738485455513,
+ "learning_rate": 0.0006,
+ "loss": 3.8347136974334717,
+ "step": 1783
+ },
+ {
+ "epoch": 24.782874617737004,
+ "grad_norm": 0.20253778994083405,
+ "learning_rate": 0.0006,
+ "loss": 3.814948320388794,
+ "step": 1784
+ },
+ {
+ "epoch": 24.796854521625164,
+ "grad_norm": 0.20567010343074799,
+ "learning_rate": 0.0006,
+ "loss": 3.8354592323303223,
+ "step": 1785
+ },
+ {
+ "epoch": 24.810834425513324,
+ "grad_norm": 0.20639720559120178,
+ "learning_rate": 0.0006,
+ "loss": 3.8336033821105957,
+ "step": 1786
+ },
+ {
+ "epoch": 24.824814329401484,
+ "grad_norm": 0.19978247582912445,
+ "learning_rate": 0.0006,
+ "loss": 3.8209140300750732,
+ "step": 1787
+ },
+ {
+ "epoch": 24.838794233289647,
+ "grad_norm": 0.20628373324871063,
+ "learning_rate": 0.0006,
+ "loss": 3.8372955322265625,
+ "step": 1788
+ },
+ {
+ "epoch": 24.852774137177807,
+ "grad_norm": 0.2266162782907486,
+ "learning_rate": 0.0006,
+ "loss": 3.850994110107422,
+ "step": 1789
+ },
+ {
+ "epoch": 24.866754041065967,
+ "grad_norm": 0.22567765414714813,
+ "learning_rate": 0.0006,
+ "loss": 3.8552165031433105,
+ "step": 1790
+ },
+ {
+ "epoch": 24.88073394495413,
+ "grad_norm": 0.228011354804039,
+ "learning_rate": 0.0006,
+ "loss": 3.8310747146606445,
+ "step": 1791
+ },
+ {
+ "epoch": 24.89471384884229,
+ "grad_norm": 0.23706914484500885,
+ "learning_rate": 0.0006,
+ "loss": 3.8369603157043457,
+ "step": 1792
+ },
+ {
+ "epoch": 24.90869375273045,
+ "grad_norm": 0.22669097781181335,
+ "learning_rate": 0.0006,
+ "loss": 3.8443825244903564,
+ "step": 1793
+ },
+ {
+ "epoch": 24.92267365661861,
+ "grad_norm": 0.2051001936197281,
+ "learning_rate": 0.0006,
+ "loss": 3.7938501834869385,
+ "step": 1794
+ },
+ {
+ "epoch": 24.936653560506773,
+ "grad_norm": 0.2091219276189804,
+ "learning_rate": 0.0006,
+ "loss": 3.8167076110839844,
+ "step": 1795
+ },
+ {
+ "epoch": 24.950633464394933,
+ "grad_norm": 0.20517204701900482,
+ "learning_rate": 0.0006,
+ "loss": 3.852670669555664,
+ "step": 1796
+ },
+ {
+ "epoch": 24.964613368283093,
+ "grad_norm": 0.19916993379592896,
+ "learning_rate": 0.0006,
+ "loss": 3.8410873413085938,
+ "step": 1797
+ },
+ {
+ "epoch": 24.978593272171253,
+ "grad_norm": 0.21313942968845367,
+ "learning_rate": 0.0006,
+ "loss": 3.8383948802948,
+ "step": 1798
+ },
+ {
+ "epoch": 24.992573176059416,
+ "grad_norm": 0.21042990684509277,
+ "learning_rate": 0.0006,
+ "loss": 3.8623173236846924,
+ "step": 1799
+ },
+ {
+ "epoch": 25.0,
+ "grad_norm": 0.23052045702934265,
+ "learning_rate": 0.0006,
+ "loss": 3.8646674156188965,
+ "step": 1800
+ },
+ {
+ "epoch": 25.0,
+ "eval_loss": 4.081690311431885,
+ "eval_runtime": 44.036,
+ "eval_samples_per_second": 55.455,
+ "eval_steps_per_second": 3.474,
+ "step": 1800
+ },
+ {
+ "epoch": 25.01397990388816,
+ "grad_norm": 0.22068746387958527,
+ "learning_rate": 0.0006,
+ "loss": 3.8002820014953613,
+ "step": 1801
+ },
+ {
+ "epoch": 25.027959807776323,
+ "grad_norm": 0.20711193978786469,
+ "learning_rate": 0.0006,
+ "loss": 3.787785768508911,
+ "step": 1802
+ },
+ {
+ "epoch": 25.041939711664483,
+ "grad_norm": 0.20659677684307098,
+ "learning_rate": 0.0006,
+ "loss": 3.80245304107666,
+ "step": 1803
+ },
+ {
+ "epoch": 25.055919615552643,
+ "grad_norm": 0.22891797125339508,
+ "learning_rate": 0.0006,
+ "loss": 3.784543514251709,
+ "step": 1804
+ },
+ {
+ "epoch": 25.069899519440803,
+ "grad_norm": 0.23679181933403015,
+ "learning_rate": 0.0006,
+ "loss": 3.8311429023742676,
+ "step": 1805
+ },
+ {
+ "epoch": 25.083879423328966,
+ "grad_norm": 0.2548872232437134,
+ "learning_rate": 0.0006,
+ "loss": 3.8047211170196533,
+ "step": 1806
+ },
+ {
+ "epoch": 25.097859327217126,
+ "grad_norm": 0.26181501150131226,
+ "learning_rate": 0.0006,
+ "loss": 3.837508201599121,
+ "step": 1807
+ },
+ {
+ "epoch": 25.111839231105286,
+ "grad_norm": 0.2548452913761139,
+ "learning_rate": 0.0006,
+ "loss": 3.831544876098633,
+ "step": 1808
+ },
+ {
+ "epoch": 25.125819134993446,
+ "grad_norm": 0.26177605986595154,
+ "learning_rate": 0.0006,
+ "loss": 3.805346965789795,
+ "step": 1809
+ },
+ {
+ "epoch": 25.13979903888161,
+ "grad_norm": 0.2608112394809723,
+ "learning_rate": 0.0006,
+ "loss": 3.8040924072265625,
+ "step": 1810
+ },
+ {
+ "epoch": 25.15377894276977,
+ "grad_norm": 0.2586037814617157,
+ "learning_rate": 0.0006,
+ "loss": 3.8102216720581055,
+ "step": 1811
+ },
+ {
+ "epoch": 25.16775884665793,
+ "grad_norm": 0.26258161664009094,
+ "learning_rate": 0.0006,
+ "loss": 3.8152549266815186,
+ "step": 1812
+ },
+ {
+ "epoch": 25.18173875054609,
+ "grad_norm": 0.2803022265434265,
+ "learning_rate": 0.0006,
+ "loss": 3.82576584815979,
+ "step": 1813
+ },
+ {
+ "epoch": 25.195718654434252,
+ "grad_norm": 0.2618221938610077,
+ "learning_rate": 0.0006,
+ "loss": 3.817220687866211,
+ "step": 1814
+ },
+ {
+ "epoch": 25.209698558322412,
+ "grad_norm": 0.23283469676971436,
+ "learning_rate": 0.0006,
+ "loss": 3.7999041080474854,
+ "step": 1815
+ },
+ {
+ "epoch": 25.22367846221057,
+ "grad_norm": 0.20110781490802765,
+ "learning_rate": 0.0006,
+ "loss": 3.783228874206543,
+ "step": 1816
+ },
+ {
+ "epoch": 25.23765836609873,
+ "grad_norm": 0.2231830358505249,
+ "learning_rate": 0.0006,
+ "loss": 3.8032913208007812,
+ "step": 1817
+ },
+ {
+ "epoch": 25.251638269986895,
+ "grad_norm": 0.21807286143302917,
+ "learning_rate": 0.0006,
+ "loss": 3.817028045654297,
+ "step": 1818
+ },
+ {
+ "epoch": 25.265618173875055,
+ "grad_norm": 0.22710664570331573,
+ "learning_rate": 0.0006,
+ "loss": 3.8201727867126465,
+ "step": 1819
+ },
+ {
+ "epoch": 25.279598077763215,
+ "grad_norm": 0.22299866378307343,
+ "learning_rate": 0.0006,
+ "loss": 3.8198719024658203,
+ "step": 1820
+ },
+ {
+ "epoch": 25.293577981651374,
+ "grad_norm": 0.20886564254760742,
+ "learning_rate": 0.0006,
+ "loss": 3.792414665222168,
+ "step": 1821
+ },
+ {
+ "epoch": 25.307557885539538,
+ "grad_norm": 0.20887352526187897,
+ "learning_rate": 0.0006,
+ "loss": 3.7634057998657227,
+ "step": 1822
+ },
+ {
+ "epoch": 25.321537789427698,
+ "grad_norm": 0.24560041725635529,
+ "learning_rate": 0.0006,
+ "loss": 3.79359769821167,
+ "step": 1823
+ },
+ {
+ "epoch": 25.335517693315857,
+ "grad_norm": 0.22767415642738342,
+ "learning_rate": 0.0006,
+ "loss": 3.8313469886779785,
+ "step": 1824
+ },
+ {
+ "epoch": 25.34949759720402,
+ "grad_norm": 0.21617893874645233,
+ "learning_rate": 0.0006,
+ "loss": 3.77200984954834,
+ "step": 1825
+ },
+ {
+ "epoch": 25.36347750109218,
+ "grad_norm": 0.21010833978652954,
+ "learning_rate": 0.0006,
+ "loss": 3.8042140007019043,
+ "step": 1826
+ },
+ {
+ "epoch": 25.37745740498034,
+ "grad_norm": 0.24087965488433838,
+ "learning_rate": 0.0006,
+ "loss": 3.8260979652404785,
+ "step": 1827
+ },
+ {
+ "epoch": 25.3914373088685,
+ "grad_norm": 0.2735275626182556,
+ "learning_rate": 0.0006,
+ "loss": 3.8499274253845215,
+ "step": 1828
+ },
+ {
+ "epoch": 25.405417212756664,
+ "grad_norm": 0.24831001460552216,
+ "learning_rate": 0.0006,
+ "loss": 3.8146448135375977,
+ "step": 1829
+ },
+ {
+ "epoch": 25.419397116644824,
+ "grad_norm": 0.21822866797447205,
+ "learning_rate": 0.0006,
+ "loss": 3.7845146656036377,
+ "step": 1830
+ },
+ {
+ "epoch": 25.433377020532983,
+ "grad_norm": 0.19948813319206238,
+ "learning_rate": 0.0006,
+ "loss": 3.823997974395752,
+ "step": 1831
+ },
+ {
+ "epoch": 25.447356924421143,
+ "grad_norm": 0.18342702090740204,
+ "learning_rate": 0.0006,
+ "loss": 3.8201193809509277,
+ "step": 1832
+ },
+ {
+ "epoch": 25.461336828309307,
+ "grad_norm": 0.19377560913562775,
+ "learning_rate": 0.0006,
+ "loss": 3.8069632053375244,
+ "step": 1833
+ },
+ {
+ "epoch": 25.475316732197467,
+ "grad_norm": 0.22348709404468536,
+ "learning_rate": 0.0006,
+ "loss": 3.7918643951416016,
+ "step": 1834
+ },
+ {
+ "epoch": 25.489296636085626,
+ "grad_norm": 0.24484702944755554,
+ "learning_rate": 0.0006,
+ "loss": 3.85046124458313,
+ "step": 1835
+ },
+ {
+ "epoch": 25.503276539973786,
+ "grad_norm": 0.2493520826101303,
+ "learning_rate": 0.0006,
+ "loss": 3.8043932914733887,
+ "step": 1836
+ },
+ {
+ "epoch": 25.51725644386195,
+ "grad_norm": 0.21509641408920288,
+ "learning_rate": 0.0006,
+ "loss": 3.8064627647399902,
+ "step": 1837
+ },
+ {
+ "epoch": 25.53123634775011,
+ "grad_norm": 0.21912820637226105,
+ "learning_rate": 0.0006,
+ "loss": 3.850588321685791,
+ "step": 1838
+ },
+ {
+ "epoch": 25.54521625163827,
+ "grad_norm": 0.28400927782058716,
+ "learning_rate": 0.0006,
+ "loss": 3.79818058013916,
+ "step": 1839
+ },
+ {
+ "epoch": 25.55919615552643,
+ "grad_norm": 0.32193225622177124,
+ "learning_rate": 0.0006,
+ "loss": 3.836275815963745,
+ "step": 1840
+ },
+ {
+ "epoch": 25.573176059414592,
+ "grad_norm": 0.2902325987815857,
+ "learning_rate": 0.0006,
+ "loss": 3.8080005645751953,
+ "step": 1841
+ },
+ {
+ "epoch": 25.587155963302752,
+ "grad_norm": 0.21759532392024994,
+ "learning_rate": 0.0006,
+ "loss": 3.8233771324157715,
+ "step": 1842
+ },
+ {
+ "epoch": 25.601135867190912,
+ "grad_norm": 0.19645214080810547,
+ "learning_rate": 0.0006,
+ "loss": 3.838881015777588,
+ "step": 1843
+ },
+ {
+ "epoch": 25.615115771079076,
+ "grad_norm": 0.19322903454303741,
+ "learning_rate": 0.0006,
+ "loss": 3.7870054244995117,
+ "step": 1844
+ },
+ {
+ "epoch": 25.629095674967235,
+ "grad_norm": 0.2074001580476761,
+ "learning_rate": 0.0006,
+ "loss": 3.8239974975585938,
+ "step": 1845
+ },
+ {
+ "epoch": 25.643075578855395,
+ "grad_norm": 0.2166101336479187,
+ "learning_rate": 0.0006,
+ "loss": 3.8290855884552,
+ "step": 1846
+ },
+ {
+ "epoch": 25.657055482743555,
+ "grad_norm": 0.23738539218902588,
+ "learning_rate": 0.0006,
+ "loss": 3.7993364334106445,
+ "step": 1847
+ },
+ {
+ "epoch": 25.67103538663172,
+ "grad_norm": 0.23882314562797546,
+ "learning_rate": 0.0006,
+ "loss": 3.802586078643799,
+ "step": 1848
+ },
+ {
+ "epoch": 25.68501529051988,
+ "grad_norm": 0.24168142676353455,
+ "learning_rate": 0.0006,
+ "loss": 3.8303489685058594,
+ "step": 1849
+ },
+ {
+ "epoch": 25.698995194408038,
+ "grad_norm": 0.22423343360424042,
+ "learning_rate": 0.0006,
+ "loss": 3.836228370666504,
+ "step": 1850
+ },
+ {
+ "epoch": 25.712975098296198,
+ "grad_norm": 0.23816974461078644,
+ "learning_rate": 0.0006,
+ "loss": 3.8380274772644043,
+ "step": 1851
+ },
+ {
+ "epoch": 25.72695500218436,
+ "grad_norm": 0.22465108335018158,
+ "learning_rate": 0.0006,
+ "loss": 3.8496339321136475,
+ "step": 1852
+ },
+ {
+ "epoch": 25.74093490607252,
+ "grad_norm": 0.20792442560195923,
+ "learning_rate": 0.0006,
+ "loss": 3.797853946685791,
+ "step": 1853
+ },
+ {
+ "epoch": 25.75491480996068,
+ "grad_norm": 0.20770230889320374,
+ "learning_rate": 0.0006,
+ "loss": 3.842322826385498,
+ "step": 1854
+ },
+ {
+ "epoch": 25.76889471384884,
+ "grad_norm": 0.1928192526102066,
+ "learning_rate": 0.0006,
+ "loss": 3.836540699005127,
+ "step": 1855
+ },
+ {
+ "epoch": 25.782874617737004,
+ "grad_norm": 0.19045178592205048,
+ "learning_rate": 0.0006,
+ "loss": 3.7758889198303223,
+ "step": 1856
+ },
+ {
+ "epoch": 25.796854521625164,
+ "grad_norm": 0.205548495054245,
+ "learning_rate": 0.0006,
+ "loss": 3.8244709968566895,
+ "step": 1857
+ },
+ {
+ "epoch": 25.810834425513324,
+ "grad_norm": 0.20968270301818848,
+ "learning_rate": 0.0006,
+ "loss": 3.8376216888427734,
+ "step": 1858
+ },
+ {
+ "epoch": 25.824814329401484,
+ "grad_norm": 0.18917354941368103,
+ "learning_rate": 0.0006,
+ "loss": 3.8497915267944336,
+ "step": 1859
+ },
+ {
+ "epoch": 25.838794233289647,
+ "grad_norm": 0.2050701528787613,
+ "learning_rate": 0.0006,
+ "loss": 3.819628953933716,
+ "step": 1860
+ },
+ {
+ "epoch": 25.852774137177807,
+ "grad_norm": 0.1981319785118103,
+ "learning_rate": 0.0006,
+ "loss": 3.8007922172546387,
+ "step": 1861
+ },
+ {
+ "epoch": 25.866754041065967,
+ "grad_norm": 0.19055861234664917,
+ "learning_rate": 0.0006,
+ "loss": 3.8304519653320312,
+ "step": 1862
+ },
+ {
+ "epoch": 25.88073394495413,
+ "grad_norm": 0.19255517423152924,
+ "learning_rate": 0.0006,
+ "loss": 3.833280563354492,
+ "step": 1863
+ },
+ {
+ "epoch": 25.89471384884229,
+ "grad_norm": 0.19059430062770844,
+ "learning_rate": 0.0006,
+ "loss": 3.813796281814575,
+ "step": 1864
+ },
+ {
+ "epoch": 25.90869375273045,
+ "grad_norm": 0.18581309914588928,
+ "learning_rate": 0.0006,
+ "loss": 3.8211798667907715,
+ "step": 1865
+ },
+ {
+ "epoch": 25.92267365661861,
+ "grad_norm": 0.20181003212928772,
+ "learning_rate": 0.0006,
+ "loss": 3.8380484580993652,
+ "step": 1866
+ },
+ {
+ "epoch": 25.936653560506773,
+ "grad_norm": 0.22334498167037964,
+ "learning_rate": 0.0006,
+ "loss": 3.8294434547424316,
+ "step": 1867
+ },
+ {
+ "epoch": 25.950633464394933,
+ "grad_norm": 0.20456703007221222,
+ "learning_rate": 0.0006,
+ "loss": 3.819223642349243,
+ "step": 1868
+ },
+ {
+ "epoch": 25.964613368283093,
+ "grad_norm": 0.1885606348514557,
+ "learning_rate": 0.0006,
+ "loss": 3.8110103607177734,
+ "step": 1869
+ },
+ {
+ "epoch": 25.978593272171253,
+ "grad_norm": 0.18862110376358032,
+ "learning_rate": 0.0006,
+ "loss": 3.788691997528076,
+ "step": 1870
+ },
+ {
+ "epoch": 25.992573176059416,
+ "grad_norm": 0.19802744686603546,
+ "learning_rate": 0.0006,
+ "loss": 3.8423619270324707,
+ "step": 1871
+ },
+ {
+ "epoch": 26.0,
+ "grad_norm": 0.23762032389640808,
+ "learning_rate": 0.0006,
+ "loss": 3.7848567962646484,
+ "step": 1872
+ },
+ {
+ "epoch": 26.0,
+ "eval_loss": 4.054965019226074,
+ "eval_runtime": 44.2423,
+ "eval_samples_per_second": 55.196,
+ "eval_steps_per_second": 3.458,
+ "step": 1872
+ },
+ {
+ "epoch": 26.01397990388816,
+ "grad_norm": 0.21533054113388062,
+ "learning_rate": 0.0006,
+ "loss": 3.8123154640197754,
+ "step": 1873
+ },
+ {
+ "epoch": 26.027959807776323,
+ "grad_norm": 0.25094854831695557,
+ "learning_rate": 0.0006,
+ "loss": 3.7847447395324707,
+ "step": 1874
+ },
+ {
+ "epoch": 26.041939711664483,
+ "grad_norm": 0.24042077362537384,
+ "learning_rate": 0.0006,
+ "loss": 3.8033599853515625,
+ "step": 1875
+ },
+ {
+ "epoch": 26.055919615552643,
+ "grad_norm": 0.2425149381160736,
+ "learning_rate": 0.0006,
+ "loss": 3.7828550338745117,
+ "step": 1876
+ },
+ {
+ "epoch": 26.069899519440803,
+ "grad_norm": 0.2300514280796051,
+ "learning_rate": 0.0006,
+ "loss": 3.750882148742676,
+ "step": 1877
+ },
+ {
+ "epoch": 26.083879423328966,
+ "grad_norm": 0.2513943612575531,
+ "learning_rate": 0.0006,
+ "loss": 3.800323963165283,
+ "step": 1878
+ },
+ {
+ "epoch": 26.097859327217126,
+ "grad_norm": 0.2536966800689697,
+ "learning_rate": 0.0006,
+ "loss": 3.8198962211608887,
+ "step": 1879
+ },
+ {
+ "epoch": 26.111839231105286,
+ "grad_norm": 0.24483931064605713,
+ "learning_rate": 0.0006,
+ "loss": 3.825563907623291,
+ "step": 1880
+ },
+ {
+ "epoch": 26.125819134993446,
+ "grad_norm": 0.2502584755420685,
+ "learning_rate": 0.0006,
+ "loss": 3.78756046295166,
+ "step": 1881
+ },
+ {
+ "epoch": 26.13979903888161,
+ "grad_norm": 0.2695745527744293,
+ "learning_rate": 0.0006,
+ "loss": 3.8205409049987793,
+ "step": 1882
+ },
+ {
+ "epoch": 26.15377894276977,
+ "grad_norm": 0.2873472273349762,
+ "learning_rate": 0.0006,
+ "loss": 3.7880778312683105,
+ "step": 1883
+ },
+ {
+ "epoch": 26.16775884665793,
+ "grad_norm": 0.28609949350357056,
+ "learning_rate": 0.0006,
+ "loss": 3.788517951965332,
+ "step": 1884
+ },
+ {
+ "epoch": 26.18173875054609,
+ "grad_norm": 0.28352269530296326,
+ "learning_rate": 0.0006,
+ "loss": 3.778015613555908,
+ "step": 1885
+ },
+ {
+ "epoch": 26.195718654434252,
+ "grad_norm": 0.27055084705352783,
+ "learning_rate": 0.0006,
+ "loss": 3.7857203483581543,
+ "step": 1886
+ },
+ {
+ "epoch": 26.209698558322412,
+ "grad_norm": 0.255647748708725,
+ "learning_rate": 0.0006,
+ "loss": 3.791355609893799,
+ "step": 1887
+ },
+ {
+ "epoch": 26.22367846221057,
+ "grad_norm": 0.22624439001083374,
+ "learning_rate": 0.0006,
+ "loss": 3.7624831199645996,
+ "step": 1888
+ },
+ {
+ "epoch": 26.23765836609873,
+ "grad_norm": 0.2283596396446228,
+ "learning_rate": 0.0006,
+ "loss": 3.8052897453308105,
+ "step": 1889
+ },
+ {
+ "epoch": 26.251638269986895,
+ "grad_norm": 0.2336510866880417,
+ "learning_rate": 0.0006,
+ "loss": 3.789015054702759,
+ "step": 1890
+ },
+ {
+ "epoch": 26.265618173875055,
+ "grad_norm": 0.24107608199119568,
+ "learning_rate": 0.0006,
+ "loss": 3.756551742553711,
+ "step": 1891
+ },
+ {
+ "epoch": 26.279598077763215,
+ "grad_norm": 0.22438564896583557,
+ "learning_rate": 0.0006,
+ "loss": 3.797952651977539,
+ "step": 1892
+ },
+ {
+ "epoch": 26.293577981651374,
+ "grad_norm": 0.24594341218471527,
+ "learning_rate": 0.0006,
+ "loss": 3.7925708293914795,
+ "step": 1893
+ },
+ {
+ "epoch": 26.307557885539538,
+ "grad_norm": 0.23314352333545685,
+ "learning_rate": 0.0006,
+ "loss": 3.792447328567505,
+ "step": 1894
+ },
+ {
+ "epoch": 26.321537789427698,
+ "grad_norm": 0.20870383083820343,
+ "learning_rate": 0.0006,
+ "loss": 3.7888340950012207,
+ "step": 1895
+ },
+ {
+ "epoch": 26.335517693315857,
+ "grad_norm": 0.206504687666893,
+ "learning_rate": 0.0006,
+ "loss": 3.7856602668762207,
+ "step": 1896
+ },
+ {
+ "epoch": 26.34949759720402,
+ "grad_norm": 0.20193266868591309,
+ "learning_rate": 0.0006,
+ "loss": 3.810800552368164,
+ "step": 1897
+ },
+ {
+ "epoch": 26.36347750109218,
+ "grad_norm": 0.2143869698047638,
+ "learning_rate": 0.0006,
+ "loss": 3.818742275238037,
+ "step": 1898
+ },
+ {
+ "epoch": 26.37745740498034,
+ "grad_norm": 0.21388593316078186,
+ "learning_rate": 0.0006,
+ "loss": 3.7576632499694824,
+ "step": 1899
+ },
+ {
+ "epoch": 26.3914373088685,
+ "grad_norm": 0.1933414787054062,
+ "learning_rate": 0.0006,
+ "loss": 3.802579879760742,
+ "step": 1900
+ },
+ {
+ "epoch": 26.405417212756664,
+ "grad_norm": 0.18144549429416656,
+ "learning_rate": 0.0006,
+ "loss": 3.7830452919006348,
+ "step": 1901
+ },
+ {
+ "epoch": 26.419397116644824,
+ "grad_norm": 0.20027601718902588,
+ "learning_rate": 0.0006,
+ "loss": 3.8112521171569824,
+ "step": 1902
+ },
+ {
+ "epoch": 26.433377020532983,
+ "grad_norm": 0.19402910768985748,
+ "learning_rate": 0.0006,
+ "loss": 3.778012990951538,
+ "step": 1903
+ },
+ {
+ "epoch": 26.447356924421143,
+ "grad_norm": 0.19020743668079376,
+ "learning_rate": 0.0006,
+ "loss": 3.823355197906494,
+ "step": 1904
+ },
+ {
+ "epoch": 26.461336828309307,
+ "grad_norm": 0.1885242760181427,
+ "learning_rate": 0.0006,
+ "loss": 3.782108783721924,
+ "step": 1905
+ },
+ {
+ "epoch": 26.475316732197467,
+ "grad_norm": 0.2024235874414444,
+ "learning_rate": 0.0006,
+ "loss": 3.810448408126831,
+ "step": 1906
+ },
+ {
+ "epoch": 26.489296636085626,
+ "grad_norm": 0.21408027410507202,
+ "learning_rate": 0.0006,
+ "loss": 3.8185606002807617,
+ "step": 1907
+ },
+ {
+ "epoch": 26.503276539973786,
+ "grad_norm": 0.22810906171798706,
+ "learning_rate": 0.0006,
+ "loss": 3.8052706718444824,
+ "step": 1908
+ },
+ {
+ "epoch": 26.51725644386195,
+ "grad_norm": 0.21328197419643402,
+ "learning_rate": 0.0006,
+ "loss": 3.7858219146728516,
+ "step": 1909
+ },
+ {
+ "epoch": 26.53123634775011,
+ "grad_norm": 0.20843173563480377,
+ "learning_rate": 0.0006,
+ "loss": 3.8069310188293457,
+ "step": 1910
+ },
+ {
+ "epoch": 26.54521625163827,
+ "grad_norm": 0.2072986662387848,
+ "learning_rate": 0.0006,
+ "loss": 3.794975996017456,
+ "step": 1911
+ },
+ {
+ "epoch": 26.55919615552643,
+ "grad_norm": 0.2203216850757599,
+ "learning_rate": 0.0006,
+ "loss": 3.8070101737976074,
+ "step": 1912
+ },
+ {
+ "epoch": 26.573176059414592,
+ "grad_norm": 0.23449191451072693,
+ "learning_rate": 0.0006,
+ "loss": 3.828695774078369,
+ "step": 1913
+ },
+ {
+ "epoch": 26.587155963302752,
+ "grad_norm": 0.2222008854150772,
+ "learning_rate": 0.0006,
+ "loss": 3.781275749206543,
+ "step": 1914
+ },
+ {
+ "epoch": 26.601135867190912,
+ "grad_norm": 0.22328314185142517,
+ "learning_rate": 0.0006,
+ "loss": 3.7953736782073975,
+ "step": 1915
+ },
+ {
+ "epoch": 26.615115771079076,
+ "grad_norm": 0.2377961128950119,
+ "learning_rate": 0.0006,
+ "loss": 3.8428916931152344,
+ "step": 1916
+ },
+ {
+ "epoch": 26.629095674967235,
+ "grad_norm": 0.2546147108078003,
+ "learning_rate": 0.0006,
+ "loss": 3.7940590381622314,
+ "step": 1917
+ },
+ {
+ "epoch": 26.643075578855395,
+ "grad_norm": 0.24234509468078613,
+ "learning_rate": 0.0006,
+ "loss": 3.802234172821045,
+ "step": 1918
+ },
+ {
+ "epoch": 26.657055482743555,
+ "grad_norm": 0.21294651925563812,
+ "learning_rate": 0.0006,
+ "loss": 3.8159232139587402,
+ "step": 1919
+ },
+ {
+ "epoch": 26.67103538663172,
+ "grad_norm": 0.20008964836597443,
+ "learning_rate": 0.0006,
+ "loss": 3.796949863433838,
+ "step": 1920
+ },
+ {
+ "epoch": 26.68501529051988,
+ "grad_norm": 0.21031023561954498,
+ "learning_rate": 0.0006,
+ "loss": 3.8015570640563965,
+ "step": 1921
+ },
+ {
+ "epoch": 26.698995194408038,
+ "grad_norm": 0.2185603827238083,
+ "learning_rate": 0.0006,
+ "loss": 3.8022537231445312,
+ "step": 1922
+ },
+ {
+ "epoch": 26.712975098296198,
+ "grad_norm": 0.22957198321819305,
+ "learning_rate": 0.0006,
+ "loss": 3.7859907150268555,
+ "step": 1923
+ },
+ {
+ "epoch": 26.72695500218436,
+ "grad_norm": 0.23779156804084778,
+ "learning_rate": 0.0006,
+ "loss": 3.830345630645752,
+ "step": 1924
+ },
+ {
+ "epoch": 26.74093490607252,
+ "grad_norm": 0.23577193915843964,
+ "learning_rate": 0.0006,
+ "loss": 3.777338981628418,
+ "step": 1925
+ },
+ {
+ "epoch": 26.75491480996068,
+ "grad_norm": 0.2521933913230896,
+ "learning_rate": 0.0006,
+ "loss": 3.8215396404266357,
+ "step": 1926
+ },
+ {
+ "epoch": 26.76889471384884,
+ "grad_norm": 0.25050726532936096,
+ "learning_rate": 0.0006,
+ "loss": 3.817509651184082,
+ "step": 1927
+ },
+ {
+ "epoch": 26.782874617737004,
+ "grad_norm": 0.24442453682422638,
+ "learning_rate": 0.0006,
+ "loss": 3.8033013343811035,
+ "step": 1928
+ },
+ {
+ "epoch": 26.796854521625164,
+ "grad_norm": 0.2280828058719635,
+ "learning_rate": 0.0006,
+ "loss": 3.798625946044922,
+ "step": 1929
+ },
+ {
+ "epoch": 26.810834425513324,
+ "grad_norm": 0.23072117567062378,
+ "learning_rate": 0.0006,
+ "loss": 3.8109097480773926,
+ "step": 1930
+ },
+ {
+ "epoch": 26.824814329401484,
+ "grad_norm": 0.2690806984901428,
+ "learning_rate": 0.0006,
+ "loss": 3.7707223892211914,
+ "step": 1931
+ },
+ {
+ "epoch": 26.838794233289647,
+ "grad_norm": 0.24973517656326294,
+ "learning_rate": 0.0006,
+ "loss": 3.7788357734680176,
+ "step": 1932
+ },
+ {
+ "epoch": 26.852774137177807,
+ "grad_norm": 0.24221451580524445,
+ "learning_rate": 0.0006,
+ "loss": 3.8083114624023438,
+ "step": 1933
+ },
+ {
+ "epoch": 26.866754041065967,
+ "grad_norm": 0.23499037325382233,
+ "learning_rate": 0.0006,
+ "loss": 3.845512866973877,
+ "step": 1934
+ },
+ {
+ "epoch": 26.88073394495413,
+ "grad_norm": 0.2172643095254898,
+ "learning_rate": 0.0006,
+ "loss": 3.8171584606170654,
+ "step": 1935
+ },
+ {
+ "epoch": 26.89471384884229,
+ "grad_norm": 0.19935013353824615,
+ "learning_rate": 0.0006,
+ "loss": 3.808596611022949,
+ "step": 1936
+ },
+ {
+ "epoch": 26.90869375273045,
+ "grad_norm": 0.2077745944261551,
+ "learning_rate": 0.0006,
+ "loss": 3.842836856842041,
+ "step": 1937
+ },
+ {
+ "epoch": 26.92267365661861,
+ "grad_norm": 0.20017282664775848,
+ "learning_rate": 0.0006,
+ "loss": 3.791734457015991,
+ "step": 1938
+ },
+ {
+ "epoch": 26.936653560506773,
+ "grad_norm": 0.2082037627696991,
+ "learning_rate": 0.0006,
+ "loss": 3.7987842559814453,
+ "step": 1939
+ },
+ {
+ "epoch": 26.950633464394933,
+ "grad_norm": 0.21100632846355438,
+ "learning_rate": 0.0006,
+ "loss": 3.8033156394958496,
+ "step": 1940
+ },
+ {
+ "epoch": 26.964613368283093,
+ "grad_norm": 0.2091331034898758,
+ "learning_rate": 0.0006,
+ "loss": 3.8250908851623535,
+ "step": 1941
+ },
+ {
+ "epoch": 26.978593272171253,
+ "grad_norm": 0.19728544354438782,
+ "learning_rate": 0.0006,
+ "loss": 3.7934365272521973,
+ "step": 1942
+ },
+ {
+ "epoch": 26.992573176059416,
+ "grad_norm": 0.19266465306282043,
+ "learning_rate": 0.0006,
+ "loss": 3.8095879554748535,
+ "step": 1943
+ },
+ {
+ "epoch": 27.0,
+ "grad_norm": 0.2264554500579834,
+ "learning_rate": 0.0006,
+ "loss": 3.840135335922241,
+ "step": 1944
+ },
+ {
+ "epoch": 27.0,
+ "eval_loss": 4.046233654022217,
+ "eval_runtime": 44.0648,
+ "eval_samples_per_second": 55.418,
+ "eval_steps_per_second": 3.472,
+ "step": 1944
+ },
+ {
+ "epoch": 27.01397990388816,
+ "grad_norm": 0.24101831018924713,
+ "learning_rate": 0.0006,
+ "loss": 3.7463197708129883,
+ "step": 1945
+ },
+ {
+ "epoch": 27.027959807776323,
+ "grad_norm": 0.2917300760746002,
+ "learning_rate": 0.0006,
+ "loss": 3.769083261489868,
+ "step": 1946
+ },
+ {
+ "epoch": 27.041939711664483,
+ "grad_norm": 0.30864080786705017,
+ "learning_rate": 0.0006,
+ "loss": 3.7774248123168945,
+ "step": 1947
+ },
+ {
+ "epoch": 27.055919615552643,
+ "grad_norm": 0.28574317693710327,
+ "learning_rate": 0.0006,
+ "loss": 3.759530544281006,
+ "step": 1948
+ },
+ {
+ "epoch": 27.069899519440803,
+ "grad_norm": 0.23381628096103668,
+ "learning_rate": 0.0006,
+ "loss": 3.764347791671753,
+ "step": 1949
+ },
+ {
+ "epoch": 27.083879423328966,
+ "grad_norm": 0.2717961072921753,
+ "learning_rate": 0.0006,
+ "loss": 3.785306692123413,
+ "step": 1950
+ },
+ {
+ "epoch": 27.097859327217126,
+ "grad_norm": 0.2753375470638275,
+ "learning_rate": 0.0006,
+ "loss": 3.7511696815490723,
+ "step": 1951
+ },
+ {
+ "epoch": 27.111839231105286,
+ "grad_norm": 0.260250061750412,
+ "learning_rate": 0.0006,
+ "loss": 3.7775721549987793,
+ "step": 1952
+ },
+ {
+ "epoch": 27.125819134993446,
+ "grad_norm": 0.2462741732597351,
+ "learning_rate": 0.0006,
+ "loss": 3.775203227996826,
+ "step": 1953
+ },
+ {
+ "epoch": 27.13979903888161,
+ "grad_norm": 0.23599569499492645,
+ "learning_rate": 0.0006,
+ "loss": 3.7580947875976562,
+ "step": 1954
+ },
+ {
+ "epoch": 27.15377894276977,
+ "grad_norm": 0.21749968826770782,
+ "learning_rate": 0.0006,
+ "loss": 3.778254985809326,
+ "step": 1955
+ },
+ {
+ "epoch": 27.16775884665793,
+ "grad_norm": 0.22210343182086945,
+ "learning_rate": 0.0006,
+ "loss": 3.734727144241333,
+ "step": 1956
+ },
+ {
+ "epoch": 27.18173875054609,
+ "grad_norm": 0.23376141488552094,
+ "learning_rate": 0.0006,
+ "loss": 3.7892181873321533,
+ "step": 1957
+ },
+ {
+ "epoch": 27.195718654434252,
+ "grad_norm": 0.21751847863197327,
+ "learning_rate": 0.0006,
+ "loss": 3.801621913909912,
+ "step": 1958
+ },
+ {
+ "epoch": 27.209698558322412,
+ "grad_norm": 0.22995133697986603,
+ "learning_rate": 0.0006,
+ "loss": 3.8031363487243652,
+ "step": 1959
+ },
+ {
+ "epoch": 27.22367846221057,
+ "grad_norm": 0.22716350853443146,
+ "learning_rate": 0.0006,
+ "loss": 3.7591521739959717,
+ "step": 1960
+ },
+ {
+ "epoch": 27.23765836609873,
+ "grad_norm": 0.20819596946239471,
+ "learning_rate": 0.0006,
+ "loss": 3.7988929748535156,
+ "step": 1961
+ },
+ {
+ "epoch": 27.251638269986895,
+ "grad_norm": 0.19861504435539246,
+ "learning_rate": 0.0006,
+ "loss": 3.7752838134765625,
+ "step": 1962
+ },
+ {
+ "epoch": 27.265618173875055,
+ "grad_norm": 0.1959371268749237,
+ "learning_rate": 0.0006,
+ "loss": 3.7707290649414062,
+ "step": 1963
+ },
+ {
+ "epoch": 27.279598077763215,
+ "grad_norm": 0.18772225081920624,
+ "learning_rate": 0.0006,
+ "loss": 3.7714555263519287,
+ "step": 1964
+ },
+ {
+ "epoch": 27.293577981651374,
+ "grad_norm": 0.20839282870292664,
+ "learning_rate": 0.0006,
+ "loss": 3.7857258319854736,
+ "step": 1965
+ },
+ {
+ "epoch": 27.307557885539538,
+ "grad_norm": 0.22521957755088806,
+ "learning_rate": 0.0006,
+ "loss": 3.776909351348877,
+ "step": 1966
+ },
+ {
+ "epoch": 27.321537789427698,
+ "grad_norm": 0.19533076882362366,
+ "learning_rate": 0.0006,
+ "loss": 3.8152523040771484,
+ "step": 1967
+ },
+ {
+ "epoch": 27.335517693315857,
+ "grad_norm": 0.18678881227970123,
+ "learning_rate": 0.0006,
+ "loss": 3.751555919647217,
+ "step": 1968
+ },
+ {
+ "epoch": 27.34949759720402,
+ "grad_norm": 0.18257129192352295,
+ "learning_rate": 0.0006,
+ "loss": 3.7701754570007324,
+ "step": 1969
+ },
+ {
+ "epoch": 27.36347750109218,
+ "grad_norm": 0.18191468715667725,
+ "learning_rate": 0.0006,
+ "loss": 3.817451238632202,
+ "step": 1970
+ },
+ {
+ "epoch": 27.37745740498034,
+ "grad_norm": 0.18665607273578644,
+ "learning_rate": 0.0006,
+ "loss": 3.78645658493042,
+ "step": 1971
+ },
+ {
+ "epoch": 27.3914373088685,
+ "grad_norm": 0.19604510068893433,
+ "learning_rate": 0.0006,
+ "loss": 3.7735626697540283,
+ "step": 1972
+ },
+ {
+ "epoch": 27.405417212756664,
+ "grad_norm": 0.20136640965938568,
+ "learning_rate": 0.0006,
+ "loss": 3.77310848236084,
+ "step": 1973
+ },
+ {
+ "epoch": 27.419397116644824,
+ "grad_norm": 0.19314947724342346,
+ "learning_rate": 0.0006,
+ "loss": 3.8084068298339844,
+ "step": 1974
+ },
+ {
+ "epoch": 27.433377020532983,
+ "grad_norm": 0.20761604607105255,
+ "learning_rate": 0.0006,
+ "loss": 3.80732798576355,
+ "step": 1975
+ },
+ {
+ "epoch": 27.447356924421143,
+ "grad_norm": 0.2239987850189209,
+ "learning_rate": 0.0006,
+ "loss": 3.7950329780578613,
+ "step": 1976
+ },
+ {
+ "epoch": 27.461336828309307,
+ "grad_norm": 0.22146444022655487,
+ "learning_rate": 0.0006,
+ "loss": 3.7957234382629395,
+ "step": 1977
+ },
+ {
+ "epoch": 27.475316732197467,
+ "grad_norm": 0.23218585550785065,
+ "learning_rate": 0.0006,
+ "loss": 3.806377410888672,
+ "step": 1978
+ },
+ {
+ "epoch": 27.489296636085626,
+ "grad_norm": 0.23549026250839233,
+ "learning_rate": 0.0006,
+ "loss": 3.7833383083343506,
+ "step": 1979
+ },
+ {
+ "epoch": 27.503276539973786,
+ "grad_norm": 0.24219457805156708,
+ "learning_rate": 0.0006,
+ "loss": 3.8154187202453613,
+ "step": 1980
+ },
+ {
+ "epoch": 27.51725644386195,
+ "grad_norm": 0.23703953623771667,
+ "learning_rate": 0.0006,
+ "loss": 3.7846405506134033,
+ "step": 1981
+ },
+ {
+ "epoch": 27.53123634775011,
+ "grad_norm": 0.23596109449863434,
+ "learning_rate": 0.0006,
+ "loss": 3.7698163986206055,
+ "step": 1982
+ },
+ {
+ "epoch": 27.54521625163827,
+ "grad_norm": 0.23073506355285645,
+ "learning_rate": 0.0006,
+ "loss": 3.8114185333251953,
+ "step": 1983
+ },
+ {
+ "epoch": 27.55919615552643,
+ "grad_norm": 0.24761143326759338,
+ "learning_rate": 0.0006,
+ "loss": 3.7548117637634277,
+ "step": 1984
+ },
+ {
+ "epoch": 27.573176059414592,
+ "grad_norm": 0.2834068238735199,
+ "learning_rate": 0.0006,
+ "loss": 3.7990212440490723,
+ "step": 1985
+ },
+ {
+ "epoch": 27.587155963302752,
+ "grad_norm": 0.29774922132492065,
+ "learning_rate": 0.0006,
+ "loss": 3.7845072746276855,
+ "step": 1986
+ },
+ {
+ "epoch": 27.601135867190912,
+ "grad_norm": 0.2732089161872864,
+ "learning_rate": 0.0006,
+ "loss": 3.8050694465637207,
+ "step": 1987
+ },
+ {
+ "epoch": 27.615115771079076,
+ "grad_norm": 0.24433180689811707,
+ "learning_rate": 0.0006,
+ "loss": 3.762704372406006,
+ "step": 1988
+ },
+ {
+ "epoch": 27.629095674967235,
+ "grad_norm": 0.21340419352054596,
+ "learning_rate": 0.0006,
+ "loss": 3.826023817062378,
+ "step": 1989
+ },
+ {
+ "epoch": 27.643075578855395,
+ "grad_norm": 0.22518761456012726,
+ "learning_rate": 0.0006,
+ "loss": 3.7823970317840576,
+ "step": 1990
+ },
+ {
+ "epoch": 27.657055482743555,
+ "grad_norm": 0.2196940928697586,
+ "learning_rate": 0.0006,
+ "loss": 3.787463426589966,
+ "step": 1991
+ },
+ {
+ "epoch": 27.67103538663172,
+ "grad_norm": 0.21906471252441406,
+ "learning_rate": 0.0006,
+ "loss": 3.7856104373931885,
+ "step": 1992
+ },
+ {
+ "epoch": 27.68501529051988,
+ "grad_norm": 0.2280956357717514,
+ "learning_rate": 0.0006,
+ "loss": 3.7829794883728027,
+ "step": 1993
+ },
+ {
+ "epoch": 27.698995194408038,
+ "grad_norm": 0.22567005455493927,
+ "learning_rate": 0.0006,
+ "loss": 3.762316942214966,
+ "step": 1994
+ },
+ {
+ "epoch": 27.712975098296198,
+ "grad_norm": 0.21703341603279114,
+ "learning_rate": 0.0006,
+ "loss": 3.772535800933838,
+ "step": 1995
+ },
+ {
+ "epoch": 27.72695500218436,
+ "grad_norm": 0.20586732029914856,
+ "learning_rate": 0.0006,
+ "loss": 3.775930881500244,
+ "step": 1996
+ },
+ {
+ "epoch": 27.74093490607252,
+ "grad_norm": 0.2126319408416748,
+ "learning_rate": 0.0006,
+ "loss": 3.793353796005249,
+ "step": 1997
+ },
+ {
+ "epoch": 27.75491480996068,
+ "grad_norm": 0.19664280116558075,
+ "learning_rate": 0.0006,
+ "loss": 3.7721195220947266,
+ "step": 1998
+ },
+ {
+ "epoch": 27.76889471384884,
+ "grad_norm": 0.17695854604244232,
+ "learning_rate": 0.0006,
+ "loss": 3.7931227684020996,
+ "step": 1999
+ },
+ {
+ "epoch": 27.782874617737004,
+ "grad_norm": 0.1899620145559311,
+ "learning_rate": 0.0006,
+ "loss": 3.798692226409912,
+ "step": 2000
+ },
+ {
+ "epoch": 27.796854521625164,
+ "grad_norm": 0.20334762334823608,
+ "learning_rate": 0.0006,
+ "loss": 3.774670124053955,
+ "step": 2001
+ },
+ {
+ "epoch": 27.810834425513324,
+ "grad_norm": 0.21150588989257812,
+ "learning_rate": 0.0006,
+ "loss": 3.803859233856201,
+ "step": 2002
+ },
+ {
+ "epoch": 27.824814329401484,
+ "grad_norm": 0.20425523817539215,
+ "learning_rate": 0.0006,
+ "loss": 3.810410976409912,
+ "step": 2003
+ },
+ {
+ "epoch": 27.838794233289647,
+ "grad_norm": 0.20468413829803467,
+ "learning_rate": 0.0006,
+ "loss": 3.800917625427246,
+ "step": 2004
+ },
+ {
+ "epoch": 27.852774137177807,
+ "grad_norm": 0.2113286256790161,
+ "learning_rate": 0.0006,
+ "loss": 3.7581989765167236,
+ "step": 2005
+ },
+ {
+ "epoch": 27.866754041065967,
+ "grad_norm": 0.2098054736852646,
+ "learning_rate": 0.0006,
+ "loss": 3.7921502590179443,
+ "step": 2006
+ },
+ {
+ "epoch": 27.88073394495413,
+ "grad_norm": 0.21701586246490479,
+ "learning_rate": 0.0006,
+ "loss": 3.8166770935058594,
+ "step": 2007
+ },
+ {
+ "epoch": 27.89471384884229,
+ "grad_norm": 0.2086625099182129,
+ "learning_rate": 0.0006,
+ "loss": 3.7732229232788086,
+ "step": 2008
+ },
+ {
+ "epoch": 27.90869375273045,
+ "grad_norm": 0.2186812162399292,
+ "learning_rate": 0.0006,
+ "loss": 3.8067402839660645,
+ "step": 2009
+ },
+ {
+ "epoch": 27.92267365661861,
+ "grad_norm": 0.2168985903263092,
+ "learning_rate": 0.0006,
+ "loss": 3.798159122467041,
+ "step": 2010
+ },
+ {
+ "epoch": 27.936653560506773,
+ "grad_norm": 0.23713620007038116,
+ "learning_rate": 0.0006,
+ "loss": 3.7958693504333496,
+ "step": 2011
+ },
+ {
+ "epoch": 27.950633464394933,
+ "grad_norm": 0.23592841625213623,
+ "learning_rate": 0.0006,
+ "loss": 3.795126438140869,
+ "step": 2012
+ },
+ {
+ "epoch": 27.964613368283093,
+ "grad_norm": 0.22210197150707245,
+ "learning_rate": 0.0006,
+ "loss": 3.791013240814209,
+ "step": 2013
+ },
+ {
+ "epoch": 27.978593272171253,
+ "grad_norm": 0.23190008103847504,
+ "learning_rate": 0.0006,
+ "loss": 3.813408374786377,
+ "step": 2014
+ },
+ {
+ "epoch": 27.992573176059416,
+ "grad_norm": 0.22158131003379822,
+ "learning_rate": 0.0006,
+ "loss": 3.7975716590881348,
+ "step": 2015
+ },
+ {
+ "epoch": 28.0,
+ "grad_norm": 0.2300519198179245,
+ "learning_rate": 0.0006,
+ "loss": 3.776214838027954,
+ "step": 2016
+ },
+ {
+ "epoch": 28.0,
+ "eval_loss": 4.04406213760376,
+ "eval_runtime": 44.0285,
+ "eval_samples_per_second": 55.464,
+ "eval_steps_per_second": 3.475,
+ "step": 2016
+ },
+ {
+ "epoch": 28.01397990388816,
+ "grad_norm": 0.21007688343524933,
+ "learning_rate": 0.0006,
+ "loss": 3.7366907596588135,
+ "step": 2017
+ },
+ {
+ "epoch": 28.027959807776323,
+ "grad_norm": 0.1941644549369812,
+ "learning_rate": 0.0006,
+ "loss": 3.744373321533203,
+ "step": 2018
+ },
+ {
+ "epoch": 28.041939711664483,
+ "grad_norm": 0.21308493614196777,
+ "learning_rate": 0.0006,
+ "loss": 3.7650012969970703,
+ "step": 2019
+ },
+ {
+ "epoch": 28.055919615552643,
+ "grad_norm": 0.20114868879318237,
+ "learning_rate": 0.0006,
+ "loss": 3.7652382850646973,
+ "step": 2020
+ },
+ {
+ "epoch": 28.069899519440803,
+ "grad_norm": 0.20266319811344147,
+ "learning_rate": 0.0006,
+ "loss": 3.7710442543029785,
+ "step": 2021
+ },
+ {
+ "epoch": 28.083879423328966,
+ "grad_norm": 0.205102801322937,
+ "learning_rate": 0.0006,
+ "loss": 3.7515463829040527,
+ "step": 2022
+ },
+ {
+ "epoch": 28.097859327217126,
+ "grad_norm": 0.22002041339874268,
+ "learning_rate": 0.0006,
+ "loss": 3.762019157409668,
+ "step": 2023
+ },
+ {
+ "epoch": 28.111839231105286,
+ "grad_norm": 0.2063235342502594,
+ "learning_rate": 0.0006,
+ "loss": 3.765453338623047,
+ "step": 2024
+ },
+ {
+ "epoch": 28.125819134993446,
+ "grad_norm": 0.19145619869232178,
+ "learning_rate": 0.0006,
+ "loss": 3.769411325454712,
+ "step": 2025
+ },
+ {
+ "epoch": 28.13979903888161,
+ "grad_norm": 0.19308455288410187,
+ "learning_rate": 0.0006,
+ "loss": 3.8009989261627197,
+ "step": 2026
+ },
+ {
+ "epoch": 28.15377894276977,
+ "grad_norm": 0.220510333776474,
+ "learning_rate": 0.0006,
+ "loss": 3.7582602500915527,
+ "step": 2027
+ },
+ {
+ "epoch": 28.16775884665793,
+ "grad_norm": 0.22855883836746216,
+ "learning_rate": 0.0006,
+ "loss": 3.803917407989502,
+ "step": 2028
+ },
+ {
+ "epoch": 28.18173875054609,
+ "grad_norm": 0.24206340312957764,
+ "learning_rate": 0.0006,
+ "loss": 3.764101028442383,
+ "step": 2029
+ },
+ {
+ "epoch": 28.195718654434252,
+ "grad_norm": 0.23973612487316132,
+ "learning_rate": 0.0006,
+ "loss": 3.787308931350708,
+ "step": 2030
+ },
+ {
+ "epoch": 28.209698558322412,
+ "grad_norm": 0.21400697529315948,
+ "learning_rate": 0.0006,
+ "loss": 3.7706117630004883,
+ "step": 2031
+ },
+ {
+ "epoch": 28.22367846221057,
+ "grad_norm": 0.21983976662158966,
+ "learning_rate": 0.0006,
+ "loss": 3.772731304168701,
+ "step": 2032
+ },
+ {
+ "epoch": 28.23765836609873,
+ "grad_norm": 0.22427113354206085,
+ "learning_rate": 0.0006,
+ "loss": 3.7724413871765137,
+ "step": 2033
+ },
+ {
+ "epoch": 28.251638269986895,
+ "grad_norm": 0.23665079474449158,
+ "learning_rate": 0.0006,
+ "loss": 3.769845962524414,
+ "step": 2034
+ },
+ {
+ "epoch": 28.265618173875055,
+ "grad_norm": 0.22663180530071259,
+ "learning_rate": 0.0006,
+ "loss": 3.764380931854248,
+ "step": 2035
+ },
+ {
+ "epoch": 28.279598077763215,
+ "grad_norm": 0.21094927191734314,
+ "learning_rate": 0.0006,
+ "loss": 3.7598326206207275,
+ "step": 2036
+ },
+ {
+ "epoch": 28.293577981651374,
+ "grad_norm": 0.20419518649578094,
+ "learning_rate": 0.0006,
+ "loss": 3.7737207412719727,
+ "step": 2037
+ },
+ {
+ "epoch": 28.307557885539538,
+ "grad_norm": 0.2171909660100937,
+ "learning_rate": 0.0006,
+ "loss": 3.7499468326568604,
+ "step": 2038
+ },
+ {
+ "epoch": 28.321537789427698,
+ "grad_norm": 0.22749298810958862,
+ "learning_rate": 0.0006,
+ "loss": 3.767536163330078,
+ "step": 2039
+ },
+ {
+ "epoch": 28.335517693315857,
+ "grad_norm": 0.22821909189224243,
+ "learning_rate": 0.0006,
+ "loss": 3.744386672973633,
+ "step": 2040
+ },
+ {
+ "epoch": 28.34949759720402,
+ "grad_norm": 0.2227880209684372,
+ "learning_rate": 0.0006,
+ "loss": 3.72955322265625,
+ "step": 2041
+ },
+ {
+ "epoch": 28.36347750109218,
+ "grad_norm": 0.22204327583312988,
+ "learning_rate": 0.0006,
+ "loss": 3.793854236602783,
+ "step": 2042
+ },
+ {
+ "epoch": 28.37745740498034,
+ "grad_norm": 0.21621409058570862,
+ "learning_rate": 0.0006,
+ "loss": 3.775379180908203,
+ "step": 2043
+ },
+ {
+ "epoch": 28.3914373088685,
+ "grad_norm": 0.2439221441745758,
+ "learning_rate": 0.0006,
+ "loss": 3.727464199066162,
+ "step": 2044
+ },
+ {
+ "epoch": 28.405417212756664,
+ "grad_norm": 0.24408605694770813,
+ "learning_rate": 0.0006,
+ "loss": 3.761747360229492,
+ "step": 2045
+ },
+ {
+ "epoch": 28.419397116644824,
+ "grad_norm": 0.26118648052215576,
+ "learning_rate": 0.0006,
+ "loss": 3.7587313652038574,
+ "step": 2046
+ },
+ {
+ "epoch": 28.433377020532983,
+ "grad_norm": 0.25948166847229004,
+ "learning_rate": 0.0006,
+ "loss": 3.7698440551757812,
+ "step": 2047
+ },
+ {
+ "epoch": 28.447356924421143,
+ "grad_norm": 0.26413780450820923,
+ "learning_rate": 0.0006,
+ "loss": 3.799107551574707,
+ "step": 2048
+ },
+ {
+ "epoch": 28.461336828309307,
+ "grad_norm": 0.2687148153781891,
+ "learning_rate": 0.0006,
+ "loss": 3.7564382553100586,
+ "step": 2049
+ },
+ {
+ "epoch": 28.475316732197467,
+ "grad_norm": 0.2676694691181183,
+ "learning_rate": 0.0006,
+ "loss": 3.754267692565918,
+ "step": 2050
+ },
+ {
+ "epoch": 28.489296636085626,
+ "grad_norm": 0.27275168895721436,
+ "learning_rate": 0.0006,
+ "loss": 3.802988052368164,
+ "step": 2051
+ },
+ {
+ "epoch": 28.503276539973786,
+ "grad_norm": 0.28783538937568665,
+ "learning_rate": 0.0006,
+ "loss": 3.762540817260742,
+ "step": 2052
+ },
+ {
+ "epoch": 28.51725644386195,
+ "grad_norm": 0.2628997266292572,
+ "learning_rate": 0.0006,
+ "loss": 3.7933349609375,
+ "step": 2053
+ },
+ {
+ "epoch": 28.53123634775011,
+ "grad_norm": 0.2498515099287033,
+ "learning_rate": 0.0006,
+ "loss": 3.7773094177246094,
+ "step": 2054
+ },
+ {
+ "epoch": 28.54521625163827,
+ "grad_norm": 0.22625942528247833,
+ "learning_rate": 0.0006,
+ "loss": 3.803457021713257,
+ "step": 2055
+ },
+ {
+ "epoch": 28.55919615552643,
+ "grad_norm": 0.21488751471042633,
+ "learning_rate": 0.0006,
+ "loss": 3.78924560546875,
+ "step": 2056
+ },
+ {
+ "epoch": 28.573176059414592,
+ "grad_norm": 0.22041267156600952,
+ "learning_rate": 0.0006,
+ "loss": 3.79361629486084,
+ "step": 2057
+ },
+ {
+ "epoch": 28.587155963302752,
+ "grad_norm": 0.23164816200733185,
+ "learning_rate": 0.0006,
+ "loss": 3.735037326812744,
+ "step": 2058
+ },
+ {
+ "epoch": 28.601135867190912,
+ "grad_norm": 0.22371916472911835,
+ "learning_rate": 0.0006,
+ "loss": 3.731417179107666,
+ "step": 2059
+ },
+ {
+ "epoch": 28.615115771079076,
+ "grad_norm": 0.2280314862728119,
+ "learning_rate": 0.0006,
+ "loss": 3.796154499053955,
+ "step": 2060
+ },
+ {
+ "epoch": 28.629095674967235,
+ "grad_norm": 0.21386604011058807,
+ "learning_rate": 0.0006,
+ "loss": 3.778648614883423,
+ "step": 2061
+ },
+ {
+ "epoch": 28.643075578855395,
+ "grad_norm": 0.20433050394058228,
+ "learning_rate": 0.0006,
+ "loss": 3.772826910018921,
+ "step": 2062
+ },
+ {
+ "epoch": 28.657055482743555,
+ "grad_norm": 0.2049262523651123,
+ "learning_rate": 0.0006,
+ "loss": 3.7410364151000977,
+ "step": 2063
+ },
+ {
+ "epoch": 28.67103538663172,
+ "grad_norm": 0.22041259706020355,
+ "learning_rate": 0.0006,
+ "loss": 3.796724319458008,
+ "step": 2064
+ },
+ {
+ "epoch": 28.68501529051988,
+ "grad_norm": 0.2018800675868988,
+ "learning_rate": 0.0006,
+ "loss": 3.775252342224121,
+ "step": 2065
+ },
+ {
+ "epoch": 28.698995194408038,
+ "grad_norm": 0.2159280925989151,
+ "learning_rate": 0.0006,
+ "loss": 3.766021251678467,
+ "step": 2066
+ },
+ {
+ "epoch": 28.712975098296198,
+ "grad_norm": 0.2072775512933731,
+ "learning_rate": 0.0006,
+ "loss": 3.765397548675537,
+ "step": 2067
+ },
+ {
+ "epoch": 28.72695500218436,
+ "grad_norm": 0.19592848420143127,
+ "learning_rate": 0.0006,
+ "loss": 3.8151614665985107,
+ "step": 2068
+ },
+ {
+ "epoch": 28.74093490607252,
+ "grad_norm": 0.19266322255134583,
+ "learning_rate": 0.0006,
+ "loss": 3.774945020675659,
+ "step": 2069
+ },
+ {
+ "epoch": 28.75491480996068,
+ "grad_norm": 0.19442392885684967,
+ "learning_rate": 0.0006,
+ "loss": 3.816283702850342,
+ "step": 2070
+ },
+ {
+ "epoch": 28.76889471384884,
+ "grad_norm": 0.19080746173858643,
+ "learning_rate": 0.0006,
+ "loss": 3.7784247398376465,
+ "step": 2071
+ },
+ {
+ "epoch": 28.782874617737004,
+ "grad_norm": 0.20150451362133026,
+ "learning_rate": 0.0006,
+ "loss": 3.7710249423980713,
+ "step": 2072
+ },
+ {
+ "epoch": 28.796854521625164,
+ "grad_norm": 0.1835816204547882,
+ "learning_rate": 0.0006,
+ "loss": 3.750032901763916,
+ "step": 2073
+ },
+ {
+ "epoch": 28.810834425513324,
+ "grad_norm": 0.1855502873659134,
+ "learning_rate": 0.0006,
+ "loss": 3.7276318073272705,
+ "step": 2074
+ },
+ {
+ "epoch": 28.824814329401484,
+ "grad_norm": 0.18683169782161713,
+ "learning_rate": 0.0006,
+ "loss": 3.7516555786132812,
+ "step": 2075
+ },
+ {
+ "epoch": 28.838794233289647,
+ "grad_norm": 0.2034577578306198,
+ "learning_rate": 0.0006,
+ "loss": 3.749875068664551,
+ "step": 2076
+ },
+ {
+ "epoch": 28.852774137177807,
+ "grad_norm": 0.2234230488538742,
+ "learning_rate": 0.0006,
+ "loss": 3.791429042816162,
+ "step": 2077
+ },
+ {
+ "epoch": 28.866754041065967,
+ "grad_norm": 0.25600525736808777,
+ "learning_rate": 0.0006,
+ "loss": 3.7769298553466797,
+ "step": 2078
+ },
+ {
+ "epoch": 28.88073394495413,
+ "grad_norm": 0.2741529643535614,
+ "learning_rate": 0.0006,
+ "loss": 3.771848201751709,
+ "step": 2079
+ },
+ {
+ "epoch": 28.89471384884229,
+ "grad_norm": 0.2710304260253906,
+ "learning_rate": 0.0006,
+ "loss": 3.8235626220703125,
+ "step": 2080
+ },
+ {
+ "epoch": 28.90869375273045,
+ "grad_norm": 0.25497519969940186,
+ "learning_rate": 0.0006,
+ "loss": 3.811288595199585,
+ "step": 2081
+ },
+ {
+ "epoch": 28.92267365661861,
+ "grad_norm": 0.25689464807510376,
+ "learning_rate": 0.0006,
+ "loss": 3.7848939895629883,
+ "step": 2082
+ },
+ {
+ "epoch": 28.936653560506773,
+ "grad_norm": 0.2794921398162842,
+ "learning_rate": 0.0006,
+ "loss": 3.7836732864379883,
+ "step": 2083
+ },
+ {
+ "epoch": 28.950633464394933,
+ "grad_norm": 0.24730202555656433,
+ "learning_rate": 0.0006,
+ "loss": 3.7703347206115723,
+ "step": 2084
+ },
+ {
+ "epoch": 28.964613368283093,
+ "grad_norm": 0.21078833937644958,
+ "learning_rate": 0.0006,
+ "loss": 3.7521653175354004,
+ "step": 2085
+ },
+ {
+ "epoch": 28.978593272171253,
+ "grad_norm": 0.2188870757818222,
+ "learning_rate": 0.0006,
+ "loss": 3.769604206085205,
+ "step": 2086
+ },
+ {
+ "epoch": 28.992573176059416,
+ "grad_norm": 0.20447929203510284,
+ "learning_rate": 0.0006,
+ "loss": 3.7842764854431152,
+ "step": 2087
+ },
+ {
+ "epoch": 29.0,
+ "grad_norm": 0.21607689559459686,
+ "learning_rate": 0.0006,
+ "loss": 3.7428855895996094,
+ "step": 2088
+ },
+ {
+ "epoch": 29.0,
+ "eval_loss": 4.0355753898620605,
+ "eval_runtime": 44.1435,
+ "eval_samples_per_second": 55.32,
+ "eval_steps_per_second": 3.466,
+ "step": 2088
+ },
+ {
+ "epoch": 29.01397990388816,
+ "grad_norm": 0.21270133554935455,
+ "learning_rate": 0.0006,
+ "loss": 3.7548413276672363,
+ "step": 2089
+ },
+ {
+ "epoch": 29.027959807776323,
+ "grad_norm": 0.21576301753520966,
+ "learning_rate": 0.0006,
+ "loss": 3.754613161087036,
+ "step": 2090
+ },
+ {
+ "epoch": 29.041939711664483,
+ "grad_norm": 0.2162923663854599,
+ "learning_rate": 0.0006,
+ "loss": 3.755772590637207,
+ "step": 2091
+ },
+ {
+ "epoch": 29.055919615552643,
+ "grad_norm": 0.22236663103103638,
+ "learning_rate": 0.0006,
+ "loss": 3.743497848510742,
+ "step": 2092
+ },
+ {
+ "epoch": 29.069899519440803,
+ "grad_norm": 0.2391042858362198,
+ "learning_rate": 0.0006,
+ "loss": 3.749204158782959,
+ "step": 2093
+ },
+ {
+ "epoch": 29.083879423328966,
+ "grad_norm": 0.23387965559959412,
+ "learning_rate": 0.0006,
+ "loss": 3.7286791801452637,
+ "step": 2094
+ },
+ {
+ "epoch": 29.097859327217126,
+ "grad_norm": 0.23677746951580048,
+ "learning_rate": 0.0006,
+ "loss": 3.755279541015625,
+ "step": 2095
+ },
+ {
+ "epoch": 29.111839231105286,
+ "grad_norm": 0.22771087288856506,
+ "learning_rate": 0.0006,
+ "loss": 3.722566604614258,
+ "step": 2096
+ },
+ {
+ "epoch": 29.125819134993446,
+ "grad_norm": 0.2132875621318817,
+ "learning_rate": 0.0006,
+ "loss": 3.748939037322998,
+ "step": 2097
+ },
+ {
+ "epoch": 29.13979903888161,
+ "grad_norm": 0.2033746838569641,
+ "learning_rate": 0.0006,
+ "loss": 3.7393670082092285,
+ "step": 2098
+ },
+ {
+ "epoch": 29.15377894276977,
+ "grad_norm": 0.1997237652540207,
+ "learning_rate": 0.0006,
+ "loss": 3.718498945236206,
+ "step": 2099
+ },
+ {
+ "epoch": 29.16775884665793,
+ "grad_norm": 0.19102543592453003,
+ "learning_rate": 0.0006,
+ "loss": 3.748950719833374,
+ "step": 2100
+ },
+ {
+ "epoch": 29.18173875054609,
+ "grad_norm": 0.19801580905914307,
+ "learning_rate": 0.0006,
+ "loss": 3.7123501300811768,
+ "step": 2101
+ },
+ {
+ "epoch": 29.195718654434252,
+ "grad_norm": 0.20186249911785126,
+ "learning_rate": 0.0006,
+ "loss": 3.7632713317871094,
+ "step": 2102
+ },
+ {
+ "epoch": 29.209698558322412,
+ "grad_norm": 0.22725415229797363,
+ "learning_rate": 0.0006,
+ "loss": 3.753506660461426,
+ "step": 2103
+ },
+ {
+ "epoch": 29.22367846221057,
+ "grad_norm": 0.23138119280338287,
+ "learning_rate": 0.0006,
+ "loss": 3.753282070159912,
+ "step": 2104
+ },
+ {
+ "epoch": 29.23765836609873,
+ "grad_norm": 0.23171944916248322,
+ "learning_rate": 0.0006,
+ "loss": 3.73783540725708,
+ "step": 2105
+ },
+ {
+ "epoch": 29.251638269986895,
+ "grad_norm": 0.2166522741317749,
+ "learning_rate": 0.0006,
+ "loss": 3.778803825378418,
+ "step": 2106
+ },
+ {
+ "epoch": 29.265618173875055,
+ "grad_norm": 0.2009056806564331,
+ "learning_rate": 0.0006,
+ "loss": 3.738290786743164,
+ "step": 2107
+ },
+ {
+ "epoch": 29.279598077763215,
+ "grad_norm": 0.19451597332954407,
+ "learning_rate": 0.0006,
+ "loss": 3.7553348541259766,
+ "step": 2108
+ },
+ {
+ "epoch": 29.293577981651374,
+ "grad_norm": 0.19246742129325867,
+ "learning_rate": 0.0006,
+ "loss": 3.7321622371673584,
+ "step": 2109
+ },
+ {
+ "epoch": 29.307557885539538,
+ "grad_norm": 0.18917441368103027,
+ "learning_rate": 0.0006,
+ "loss": 3.7408928871154785,
+ "step": 2110
+ },
+ {
+ "epoch": 29.321537789427698,
+ "grad_norm": 0.19067776203155518,
+ "learning_rate": 0.0006,
+ "loss": 3.780052900314331,
+ "step": 2111
+ },
+ {
+ "epoch": 29.335517693315857,
+ "grad_norm": 0.18849676847457886,
+ "learning_rate": 0.0006,
+ "loss": 3.749375820159912,
+ "step": 2112
+ },
+ {
+ "epoch": 29.34949759720402,
+ "grad_norm": 0.19713285565376282,
+ "learning_rate": 0.0006,
+ "loss": 3.7128982543945312,
+ "step": 2113
+ },
+ {
+ "epoch": 29.36347750109218,
+ "grad_norm": 0.196336030960083,
+ "learning_rate": 0.0006,
+ "loss": 3.7528390884399414,
+ "step": 2114
+ },
+ {
+ "epoch": 29.37745740498034,
+ "grad_norm": 0.19574350118637085,
+ "learning_rate": 0.0006,
+ "loss": 3.7105777263641357,
+ "step": 2115
+ },
+ {
+ "epoch": 29.3914373088685,
+ "grad_norm": 0.20396539568901062,
+ "learning_rate": 0.0006,
+ "loss": 3.782249927520752,
+ "step": 2116
+ },
+ {
+ "epoch": 29.405417212756664,
+ "grad_norm": 0.24702422320842743,
+ "learning_rate": 0.0006,
+ "loss": 3.7685647010803223,
+ "step": 2117
+ },
+ {
+ "epoch": 29.419397116644824,
+ "grad_norm": 0.2729755640029907,
+ "learning_rate": 0.0006,
+ "loss": 3.7731213569641113,
+ "step": 2118
+ },
+ {
+ "epoch": 29.433377020532983,
+ "grad_norm": 0.29240545630455017,
+ "learning_rate": 0.0006,
+ "loss": 3.770162343978882,
+ "step": 2119
+ },
+ {
+ "epoch": 29.447356924421143,
+ "grad_norm": 0.2469114065170288,
+ "learning_rate": 0.0006,
+ "loss": 3.764681339263916,
+ "step": 2120
+ },
+ {
+ "epoch": 29.461336828309307,
+ "grad_norm": 0.19837401807308197,
+ "learning_rate": 0.0006,
+ "loss": 3.7600088119506836,
+ "step": 2121
+ },
+ {
+ "epoch": 29.475316732197467,
+ "grad_norm": 0.21266621351242065,
+ "learning_rate": 0.0006,
+ "loss": 3.769454002380371,
+ "step": 2122
+ },
+ {
+ "epoch": 29.489296636085626,
+ "grad_norm": 0.25908344984054565,
+ "learning_rate": 0.0006,
+ "loss": 3.7230491638183594,
+ "step": 2123
+ },
+ {
+ "epoch": 29.503276539973786,
+ "grad_norm": 0.2914169728755951,
+ "learning_rate": 0.0006,
+ "loss": 3.767849922180176,
+ "step": 2124
+ },
+ {
+ "epoch": 29.51725644386195,
+ "grad_norm": 0.2796176075935364,
+ "learning_rate": 0.0006,
+ "loss": 3.741734266281128,
+ "step": 2125
+ },
+ {
+ "epoch": 29.53123634775011,
+ "grad_norm": 0.276309996843338,
+ "learning_rate": 0.0006,
+ "loss": 3.8001914024353027,
+ "step": 2126
+ },
+ {
+ "epoch": 29.54521625163827,
+ "grad_norm": 0.26512834429740906,
+ "learning_rate": 0.0006,
+ "loss": 3.7741384506225586,
+ "step": 2127
+ },
+ {
+ "epoch": 29.55919615552643,
+ "grad_norm": 0.26514101028442383,
+ "learning_rate": 0.0006,
+ "loss": 3.7466959953308105,
+ "step": 2128
+ },
+ {
+ "epoch": 29.573176059414592,
+ "grad_norm": 0.24121330678462982,
+ "learning_rate": 0.0006,
+ "loss": 3.759542465209961,
+ "step": 2129
+ },
+ {
+ "epoch": 29.587155963302752,
+ "grad_norm": 0.2264087200164795,
+ "learning_rate": 0.0006,
+ "loss": 3.791344165802002,
+ "step": 2130
+ },
+ {
+ "epoch": 29.601135867190912,
+ "grad_norm": 0.21915403008460999,
+ "learning_rate": 0.0006,
+ "loss": 3.7540485858917236,
+ "step": 2131
+ },
+ {
+ "epoch": 29.615115771079076,
+ "grad_norm": 0.20453961193561554,
+ "learning_rate": 0.0006,
+ "loss": 3.765617609024048,
+ "step": 2132
+ },
+ {
+ "epoch": 29.629095674967235,
+ "grad_norm": 0.2194051444530487,
+ "learning_rate": 0.0006,
+ "loss": 3.7664294242858887,
+ "step": 2133
+ },
+ {
+ "epoch": 29.643075578855395,
+ "grad_norm": 0.21926000714302063,
+ "learning_rate": 0.0006,
+ "loss": 3.7551684379577637,
+ "step": 2134
+ },
+ {
+ "epoch": 29.657055482743555,
+ "grad_norm": 0.20835602283477783,
+ "learning_rate": 0.0006,
+ "loss": 3.7654306888580322,
+ "step": 2135
+ },
+ {
+ "epoch": 29.67103538663172,
+ "grad_norm": 0.23094356060028076,
+ "learning_rate": 0.0006,
+ "loss": 3.7847180366516113,
+ "step": 2136
+ },
+ {
+ "epoch": 29.68501529051988,
+ "grad_norm": 0.23871271312236786,
+ "learning_rate": 0.0006,
+ "loss": 3.789036273956299,
+ "step": 2137
+ },
+ {
+ "epoch": 29.698995194408038,
+ "grad_norm": 0.22263272106647491,
+ "learning_rate": 0.0006,
+ "loss": 3.7677512168884277,
+ "step": 2138
+ },
+ {
+ "epoch": 29.712975098296198,
+ "grad_norm": 0.2293892651796341,
+ "learning_rate": 0.0006,
+ "loss": 3.777097225189209,
+ "step": 2139
+ },
+ {
+ "epoch": 29.72695500218436,
+ "grad_norm": 0.21068568527698517,
+ "learning_rate": 0.0006,
+ "loss": 3.785336494445801,
+ "step": 2140
+ },
+ {
+ "epoch": 29.74093490607252,
+ "grad_norm": 0.19600282609462738,
+ "learning_rate": 0.0006,
+ "loss": 3.7363505363464355,
+ "step": 2141
+ },
+ {
+ "epoch": 29.75491480996068,
+ "grad_norm": 0.20053936541080475,
+ "learning_rate": 0.0006,
+ "loss": 3.753859043121338,
+ "step": 2142
+ },
+ {
+ "epoch": 29.76889471384884,
+ "grad_norm": 0.22790539264678955,
+ "learning_rate": 0.0006,
+ "loss": 3.749492645263672,
+ "step": 2143
+ },
+ {
+ "epoch": 29.782874617737004,
+ "grad_norm": 0.26042407751083374,
+ "learning_rate": 0.0006,
+ "loss": 3.7905430793762207,
+ "step": 2144
+ },
+ {
+ "epoch": 29.796854521625164,
+ "grad_norm": 0.2753683626651764,
+ "learning_rate": 0.0006,
+ "loss": 3.756442070007324,
+ "step": 2145
+ },
+ {
+ "epoch": 29.810834425513324,
+ "grad_norm": 0.2795007526874542,
+ "learning_rate": 0.0006,
+ "loss": 3.7691903114318848,
+ "step": 2146
+ },
+ {
+ "epoch": 29.824814329401484,
+ "grad_norm": 0.2461438924074173,
+ "learning_rate": 0.0006,
+ "loss": 3.7573065757751465,
+ "step": 2147
+ },
+ {
+ "epoch": 29.838794233289647,
+ "grad_norm": 0.21051941812038422,
+ "learning_rate": 0.0006,
+ "loss": 3.7540078163146973,
+ "step": 2148
+ },
+ {
+ "epoch": 29.852774137177807,
+ "grad_norm": 0.197485089302063,
+ "learning_rate": 0.0006,
+ "loss": 3.734403133392334,
+ "step": 2149
+ },
+ {
+ "epoch": 29.866754041065967,
+ "grad_norm": 0.203064426779747,
+ "learning_rate": 0.0006,
+ "loss": 3.7888364791870117,
+ "step": 2150
+ },
+ {
+ "epoch": 29.88073394495413,
+ "grad_norm": 0.2000301480293274,
+ "learning_rate": 0.0006,
+ "loss": 3.7444958686828613,
+ "step": 2151
+ },
+ {
+ "epoch": 29.89471384884229,
+ "grad_norm": 0.20492053031921387,
+ "learning_rate": 0.0006,
+ "loss": 3.7878224849700928,
+ "step": 2152
+ },
+ {
+ "epoch": 29.90869375273045,
+ "grad_norm": 0.22565388679504395,
+ "learning_rate": 0.0006,
+ "loss": 3.7539188861846924,
+ "step": 2153
+ },
+ {
+ "epoch": 29.92267365661861,
+ "grad_norm": 0.20258226990699768,
+ "learning_rate": 0.0006,
+ "loss": 3.7491893768310547,
+ "step": 2154
+ },
+ {
+ "epoch": 29.936653560506773,
+ "grad_norm": 0.20028717815876007,
+ "learning_rate": 0.0006,
+ "loss": 3.7497997283935547,
+ "step": 2155
+ },
+ {
+ "epoch": 29.950633464394933,
+ "grad_norm": 0.2246360331773758,
+ "learning_rate": 0.0006,
+ "loss": 3.773930788040161,
+ "step": 2156
+ },
+ {
+ "epoch": 29.964613368283093,
+ "grad_norm": 0.22432482242584229,
+ "learning_rate": 0.0006,
+ "loss": 3.7926344871520996,
+ "step": 2157
+ },
+ {
+ "epoch": 29.978593272171253,
+ "grad_norm": 0.2165718674659729,
+ "learning_rate": 0.0006,
+ "loss": 3.7436647415161133,
+ "step": 2158
+ },
+ {
+ "epoch": 29.992573176059416,
+ "grad_norm": 0.20629167556762695,
+ "learning_rate": 0.0006,
+ "loss": 3.7619552612304688,
+ "step": 2159
+ },
+ {
+ "epoch": 30.0,
+ "grad_norm": 0.24264708161354065,
+ "learning_rate": 0.0006,
+ "loss": 3.772679328918457,
+ "step": 2160
+ },
+ {
+ "epoch": 30.0,
+ "eval_loss": 4.024484634399414,
+ "eval_runtime": 44.3611,
+ "eval_samples_per_second": 55.048,
+ "eval_steps_per_second": 3.449,
+ "step": 2160
+ },
+ {
+ "epoch": 30.01397990388816,
+ "grad_norm": 0.2373432070016861,
+ "learning_rate": 0.0006,
+ "loss": 3.7423200607299805,
+ "step": 2161
+ },
+ {
+ "epoch": 30.027959807776323,
+ "grad_norm": 0.26835134625434875,
+ "learning_rate": 0.0006,
+ "loss": 3.7215471267700195,
+ "step": 2162
+ },
+ {
+ "epoch": 30.041939711664483,
+ "grad_norm": 0.2743220329284668,
+ "learning_rate": 0.0006,
+ "loss": 3.7190256118774414,
+ "step": 2163
+ },
+ {
+ "epoch": 30.055919615552643,
+ "grad_norm": 0.2292490005493164,
+ "learning_rate": 0.0006,
+ "loss": 3.731855869293213,
+ "step": 2164
+ },
+ {
+ "epoch": 30.069899519440803,
+ "grad_norm": 0.22704607248306274,
+ "learning_rate": 0.0006,
+ "loss": 3.7649693489074707,
+ "step": 2165
+ },
+ {
+ "epoch": 30.083879423328966,
+ "grad_norm": 0.23255930840969086,
+ "learning_rate": 0.0006,
+ "loss": 3.7547781467437744,
+ "step": 2166
+ },
+ {
+ "epoch": 30.097859327217126,
+ "grad_norm": 0.2068684846162796,
+ "learning_rate": 0.0006,
+ "loss": 3.7343382835388184,
+ "step": 2167
+ },
+ {
+ "epoch": 30.111839231105286,
+ "grad_norm": 0.22523464262485504,
+ "learning_rate": 0.0006,
+ "loss": 3.7304530143737793,
+ "step": 2168
+ },
+ {
+ "epoch": 30.125819134993446,
+ "grad_norm": 0.24650199711322784,
+ "learning_rate": 0.0006,
+ "loss": 3.7414379119873047,
+ "step": 2169
+ },
+ {
+ "epoch": 30.13979903888161,
+ "grad_norm": 0.2392522394657135,
+ "learning_rate": 0.0006,
+ "loss": 3.754481792449951,
+ "step": 2170
+ },
+ {
+ "epoch": 30.15377894276977,
+ "grad_norm": 0.21174749732017517,
+ "learning_rate": 0.0006,
+ "loss": 3.7249929904937744,
+ "step": 2171
+ },
+ {
+ "epoch": 30.16775884665793,
+ "grad_norm": 0.20847836136817932,
+ "learning_rate": 0.0006,
+ "loss": 3.7146458625793457,
+ "step": 2172
+ },
+ {
+ "epoch": 30.18173875054609,
+ "grad_norm": 0.22131472826004028,
+ "learning_rate": 0.0006,
+ "loss": 3.7569539546966553,
+ "step": 2173
+ },
+ {
+ "epoch": 30.195718654434252,
+ "grad_norm": 0.23528096079826355,
+ "learning_rate": 0.0006,
+ "loss": 3.743435859680176,
+ "step": 2174
+ },
+ {
+ "epoch": 30.209698558322412,
+ "grad_norm": 0.2382429540157318,
+ "learning_rate": 0.0006,
+ "loss": 3.745307445526123,
+ "step": 2175
+ },
+ {
+ "epoch": 30.22367846221057,
+ "grad_norm": 0.2477114498615265,
+ "learning_rate": 0.0006,
+ "loss": 3.742305278778076,
+ "step": 2176
+ },
+ {
+ "epoch": 30.23765836609873,
+ "grad_norm": 0.24507801234722137,
+ "learning_rate": 0.0006,
+ "loss": 3.733564853668213,
+ "step": 2177
+ },
+ {
+ "epoch": 30.251638269986895,
+ "grad_norm": 0.2266329675912857,
+ "learning_rate": 0.0006,
+ "loss": 3.747429370880127,
+ "step": 2178
+ },
+ {
+ "epoch": 30.265618173875055,
+ "grad_norm": 0.22146396338939667,
+ "learning_rate": 0.0006,
+ "loss": 3.738630533218384,
+ "step": 2179
+ },
+ {
+ "epoch": 30.279598077763215,
+ "grad_norm": 0.20202279090881348,
+ "learning_rate": 0.0006,
+ "loss": 3.74582839012146,
+ "step": 2180
+ },
+ {
+ "epoch": 30.293577981651374,
+ "grad_norm": 0.20591886341571808,
+ "learning_rate": 0.0006,
+ "loss": 3.792062997817993,
+ "step": 2181
+ },
+ {
+ "epoch": 30.307557885539538,
+ "grad_norm": 0.21744129061698914,
+ "learning_rate": 0.0006,
+ "loss": 3.7389049530029297,
+ "step": 2182
+ },
+ {
+ "epoch": 30.321537789427698,
+ "grad_norm": 0.22641272842884064,
+ "learning_rate": 0.0006,
+ "loss": 3.756775140762329,
+ "step": 2183
+ },
+ {
+ "epoch": 30.335517693315857,
+ "grad_norm": 0.22433501482009888,
+ "learning_rate": 0.0006,
+ "loss": 3.764744758605957,
+ "step": 2184
+ },
+ {
+ "epoch": 30.34949759720402,
+ "grad_norm": 0.20184539258480072,
+ "learning_rate": 0.0006,
+ "loss": 3.747469902038574,
+ "step": 2185
+ },
+ {
+ "epoch": 30.36347750109218,
+ "grad_norm": 0.20864923298358917,
+ "learning_rate": 0.0006,
+ "loss": 3.7472925186157227,
+ "step": 2186
+ },
+ {
+ "epoch": 30.37745740498034,
+ "grad_norm": 0.22537396848201752,
+ "learning_rate": 0.0006,
+ "loss": 3.7194581031799316,
+ "step": 2187
+ },
+ {
+ "epoch": 30.3914373088685,
+ "grad_norm": 0.23159919679164886,
+ "learning_rate": 0.0006,
+ "loss": 3.7124292850494385,
+ "step": 2188
+ },
+ {
+ "epoch": 30.405417212756664,
+ "grad_norm": 0.24334494769573212,
+ "learning_rate": 0.0006,
+ "loss": 3.7769203186035156,
+ "step": 2189
+ },
+ {
+ "epoch": 30.419397116644824,
+ "grad_norm": 0.3031228482723236,
+ "learning_rate": 0.0006,
+ "loss": 3.762169361114502,
+ "step": 2190
+ },
+ {
+ "epoch": 30.433377020532983,
+ "grad_norm": 0.29114583134651184,
+ "learning_rate": 0.0006,
+ "loss": 3.76554799079895,
+ "step": 2191
+ },
+ {
+ "epoch": 30.447356924421143,
+ "grad_norm": 0.26824963092803955,
+ "learning_rate": 0.0006,
+ "loss": 3.732962131500244,
+ "step": 2192
+ },
+ {
+ "epoch": 30.461336828309307,
+ "grad_norm": 0.3026561141014099,
+ "learning_rate": 0.0006,
+ "loss": 3.7567975521087646,
+ "step": 2193
+ },
+ {
+ "epoch": 30.475316732197467,
+ "grad_norm": 0.27224525809288025,
+ "learning_rate": 0.0006,
+ "loss": 3.7856051921844482,
+ "step": 2194
+ },
+ {
+ "epoch": 30.489296636085626,
+ "grad_norm": 0.24295508861541748,
+ "learning_rate": 0.0006,
+ "loss": 3.7514901161193848,
+ "step": 2195
+ },
+ {
+ "epoch": 30.503276539973786,
+ "grad_norm": 0.24435290694236755,
+ "learning_rate": 0.0006,
+ "loss": 3.715973138809204,
+ "step": 2196
+ },
+ {
+ "epoch": 30.51725644386195,
+ "grad_norm": 0.2298959195613861,
+ "learning_rate": 0.0006,
+ "loss": 3.7960405349731445,
+ "step": 2197
+ },
+ {
+ "epoch": 30.53123634775011,
+ "grad_norm": 0.20313066244125366,
+ "learning_rate": 0.0006,
+ "loss": 3.7377915382385254,
+ "step": 2198
+ },
+ {
+ "epoch": 30.54521625163827,
+ "grad_norm": 0.2018895149230957,
+ "learning_rate": 0.0006,
+ "loss": 3.6980559825897217,
+ "step": 2199
+ },
+ {
+ "epoch": 30.55919615552643,
+ "grad_norm": 0.20048382878303528,
+ "learning_rate": 0.0006,
+ "loss": 3.7474141120910645,
+ "step": 2200
+ },
+ {
+ "epoch": 30.573176059414592,
+ "grad_norm": 0.19821316003799438,
+ "learning_rate": 0.0006,
+ "loss": 3.7668564319610596,
+ "step": 2201
+ },
+ {
+ "epoch": 30.587155963302752,
+ "grad_norm": 0.21467992663383484,
+ "learning_rate": 0.0006,
+ "loss": 3.7636144161224365,
+ "step": 2202
+ },
+ {
+ "epoch": 30.601135867190912,
+ "grad_norm": 0.20192000269889832,
+ "learning_rate": 0.0006,
+ "loss": 3.745736837387085,
+ "step": 2203
+ },
+ {
+ "epoch": 30.615115771079076,
+ "grad_norm": 0.2078823447227478,
+ "learning_rate": 0.0006,
+ "loss": 3.726665496826172,
+ "step": 2204
+ },
+ {
+ "epoch": 30.629095674967235,
+ "grad_norm": 0.22535845637321472,
+ "learning_rate": 0.0006,
+ "loss": 3.745058059692383,
+ "step": 2205
+ },
+ {
+ "epoch": 30.643075578855395,
+ "grad_norm": 0.22277814149856567,
+ "learning_rate": 0.0006,
+ "loss": 3.7488319873809814,
+ "step": 2206
+ },
+ {
+ "epoch": 30.657055482743555,
+ "grad_norm": 0.20940838754177094,
+ "learning_rate": 0.0006,
+ "loss": 3.7395732402801514,
+ "step": 2207
+ },
+ {
+ "epoch": 30.67103538663172,
+ "grad_norm": 0.21384629607200623,
+ "learning_rate": 0.0006,
+ "loss": 3.7275657653808594,
+ "step": 2208
+ },
+ {
+ "epoch": 30.68501529051988,
+ "grad_norm": 0.18796643614768982,
+ "learning_rate": 0.0006,
+ "loss": 3.743420124053955,
+ "step": 2209
+ },
+ {
+ "epoch": 30.698995194408038,
+ "grad_norm": 0.213258296251297,
+ "learning_rate": 0.0006,
+ "loss": 3.7227492332458496,
+ "step": 2210
+ },
+ {
+ "epoch": 30.712975098296198,
+ "grad_norm": 0.22714753448963165,
+ "learning_rate": 0.0006,
+ "loss": 3.7301113605499268,
+ "step": 2211
+ },
+ {
+ "epoch": 30.72695500218436,
+ "grad_norm": 0.21657656133174896,
+ "learning_rate": 0.0006,
+ "loss": 3.7336206436157227,
+ "step": 2212
+ },
+ {
+ "epoch": 30.74093490607252,
+ "grad_norm": 0.19550828635692596,
+ "learning_rate": 0.0006,
+ "loss": 3.7367351055145264,
+ "step": 2213
+ },
+ {
+ "epoch": 30.75491480996068,
+ "grad_norm": 0.17011769115924835,
+ "learning_rate": 0.0006,
+ "loss": 3.7401928901672363,
+ "step": 2214
+ },
+ {
+ "epoch": 30.76889471384884,
+ "grad_norm": 0.19110196828842163,
+ "learning_rate": 0.0006,
+ "loss": 3.7496562004089355,
+ "step": 2215
+ },
+ {
+ "epoch": 30.782874617737004,
+ "grad_norm": 0.20054543018341064,
+ "learning_rate": 0.0006,
+ "loss": 3.7532992362976074,
+ "step": 2216
+ },
+ {
+ "epoch": 30.796854521625164,
+ "grad_norm": 0.20667670667171478,
+ "learning_rate": 0.0006,
+ "loss": 3.746974468231201,
+ "step": 2217
+ },
+ {
+ "epoch": 30.810834425513324,
+ "grad_norm": 0.19850662350654602,
+ "learning_rate": 0.0006,
+ "loss": 3.7566256523132324,
+ "step": 2218
+ },
+ {
+ "epoch": 30.824814329401484,
+ "grad_norm": 0.19666457176208496,
+ "learning_rate": 0.0006,
+ "loss": 3.7356925010681152,
+ "step": 2219
+ },
+ {
+ "epoch": 30.838794233289647,
+ "grad_norm": 0.20022115111351013,
+ "learning_rate": 0.0006,
+ "loss": 3.768794536590576,
+ "step": 2220
+ },
+ {
+ "epoch": 30.852774137177807,
+ "grad_norm": 0.225278839468956,
+ "learning_rate": 0.0006,
+ "loss": 3.730262279510498,
+ "step": 2221
+ },
+ {
+ "epoch": 30.866754041065967,
+ "grad_norm": 0.2155608832836151,
+ "learning_rate": 0.0006,
+ "loss": 3.758157968521118,
+ "step": 2222
+ },
+ {
+ "epoch": 30.88073394495413,
+ "grad_norm": 0.20914921164512634,
+ "learning_rate": 0.0006,
+ "loss": 3.7290844917297363,
+ "step": 2223
+ },
+ {
+ "epoch": 30.89471384884229,
+ "grad_norm": 0.21579554677009583,
+ "learning_rate": 0.0006,
+ "loss": 3.7666125297546387,
+ "step": 2224
+ },
+ {
+ "epoch": 30.90869375273045,
+ "grad_norm": 0.22606384754180908,
+ "learning_rate": 0.0006,
+ "loss": 3.7396788597106934,
+ "step": 2225
+ },
+ {
+ "epoch": 30.92267365661861,
+ "grad_norm": 0.22218658030033112,
+ "learning_rate": 0.0006,
+ "loss": 3.7363057136535645,
+ "step": 2226
+ },
+ {
+ "epoch": 30.936653560506773,
+ "grad_norm": 0.2107125222682953,
+ "learning_rate": 0.0006,
+ "loss": 3.7402844429016113,
+ "step": 2227
+ },
+ {
+ "epoch": 30.950633464394933,
+ "grad_norm": 0.2143280804157257,
+ "learning_rate": 0.0006,
+ "loss": 3.7715706825256348,
+ "step": 2228
+ },
+ {
+ "epoch": 30.964613368283093,
+ "grad_norm": 0.20918118953704834,
+ "learning_rate": 0.0006,
+ "loss": 3.783510446548462,
+ "step": 2229
+ },
+ {
+ "epoch": 30.978593272171253,
+ "grad_norm": 0.2184133678674698,
+ "learning_rate": 0.0006,
+ "loss": 3.729846954345703,
+ "step": 2230
+ },
+ {
+ "epoch": 30.992573176059416,
+ "grad_norm": 0.20314796268939972,
+ "learning_rate": 0.0006,
+ "loss": 3.753312110900879,
+ "step": 2231
+ },
+ {
+ "epoch": 31.0,
+ "grad_norm": 0.21582408249378204,
+ "learning_rate": 0.0006,
+ "loss": 3.7653090953826904,
+ "step": 2232
+ },
+ {
+ "epoch": 31.0,
+ "eval_loss": 4.030437469482422,
+ "eval_runtime": 43.8529,
+ "eval_samples_per_second": 55.686,
+ "eval_steps_per_second": 3.489,
+ "step": 2232
+ },
+ {
+ "epoch": 31.01397990388816,
+ "grad_norm": 0.214233860373497,
+ "learning_rate": 0.0006,
+ "loss": 3.7179880142211914,
+ "step": 2233
+ },
+ {
+ "epoch": 31.027959807776323,
+ "grad_norm": 0.24621504545211792,
+ "learning_rate": 0.0006,
+ "loss": 3.712569236755371,
+ "step": 2234
+ },
+ {
+ "epoch": 31.041939711664483,
+ "grad_norm": 0.24189279973506927,
+ "learning_rate": 0.0006,
+ "loss": 3.7503058910369873,
+ "step": 2235
+ },
+ {
+ "epoch": 31.055919615552643,
+ "grad_norm": 0.22872278094291687,
+ "learning_rate": 0.0006,
+ "loss": 3.7386386394500732,
+ "step": 2236
+ },
+ {
+ "epoch": 31.069899519440803,
+ "grad_norm": 0.25036823749542236,
+ "learning_rate": 0.0006,
+ "loss": 3.710566997528076,
+ "step": 2237
+ },
+ {
+ "epoch": 31.083879423328966,
+ "grad_norm": 0.2506193220615387,
+ "learning_rate": 0.0006,
+ "loss": 3.7270963191986084,
+ "step": 2238
+ },
+ {
+ "epoch": 31.097859327217126,
+ "grad_norm": 0.24819663166999817,
+ "learning_rate": 0.0006,
+ "loss": 3.716430425643921,
+ "step": 2239
+ },
+ {
+ "epoch": 31.111839231105286,
+ "grad_norm": 0.27226534485816956,
+ "learning_rate": 0.0006,
+ "loss": 3.704428195953369,
+ "step": 2240
+ },
+ {
+ "epoch": 31.125819134993446,
+ "grad_norm": 0.27718204259872437,
+ "learning_rate": 0.0006,
+ "loss": 3.7309701442718506,
+ "step": 2241
+ },
+ {
+ "epoch": 31.13979903888161,
+ "grad_norm": 0.27272021770477295,
+ "learning_rate": 0.0006,
+ "loss": 3.7325143814086914,
+ "step": 2242
+ },
+ {
+ "epoch": 31.15377894276977,
+ "grad_norm": 0.2666020095348358,
+ "learning_rate": 0.0006,
+ "loss": 3.715268611907959,
+ "step": 2243
+ },
+ {
+ "epoch": 31.16775884665793,
+ "grad_norm": 0.258543461561203,
+ "learning_rate": 0.0006,
+ "loss": 3.7336134910583496,
+ "step": 2244
+ },
+ {
+ "epoch": 31.18173875054609,
+ "grad_norm": 0.2528740167617798,
+ "learning_rate": 0.0006,
+ "loss": 3.724491596221924,
+ "step": 2245
+ },
+ {
+ "epoch": 31.195718654434252,
+ "grad_norm": 0.2659667730331421,
+ "learning_rate": 0.0006,
+ "loss": 3.7144742012023926,
+ "step": 2246
+ },
+ {
+ "epoch": 31.209698558322412,
+ "grad_norm": 0.26563164591789246,
+ "learning_rate": 0.0006,
+ "loss": 3.741182327270508,
+ "step": 2247
+ },
+ {
+ "epoch": 31.22367846221057,
+ "grad_norm": 0.26326918601989746,
+ "learning_rate": 0.0006,
+ "loss": 3.7306275367736816,
+ "step": 2248
+ },
+ {
+ "epoch": 31.23765836609873,
+ "grad_norm": 0.23020948469638824,
+ "learning_rate": 0.0006,
+ "loss": 3.7212486267089844,
+ "step": 2249
+ },
+ {
+ "epoch": 31.251638269986895,
+ "grad_norm": 0.21207433938980103,
+ "learning_rate": 0.0006,
+ "loss": 3.6914258003234863,
+ "step": 2250
+ },
+ {
+ "epoch": 31.265618173875055,
+ "grad_norm": 0.2392292022705078,
+ "learning_rate": 0.0006,
+ "loss": 3.7117457389831543,
+ "step": 2251
+ },
+ {
+ "epoch": 31.279598077763215,
+ "grad_norm": 0.22084997594356537,
+ "learning_rate": 0.0006,
+ "loss": 3.728043794631958,
+ "step": 2252
+ },
+ {
+ "epoch": 31.293577981651374,
+ "grad_norm": 0.20818188786506653,
+ "learning_rate": 0.0006,
+ "loss": 3.751762866973877,
+ "step": 2253
+ },
+ {
+ "epoch": 31.307557885539538,
+ "grad_norm": 0.21866194903850555,
+ "learning_rate": 0.0006,
+ "loss": 3.72676420211792,
+ "step": 2254
+ },
+ {
+ "epoch": 31.321537789427698,
+ "grad_norm": 0.20727522671222687,
+ "learning_rate": 0.0006,
+ "loss": 3.735708236694336,
+ "step": 2255
+ },
+ {
+ "epoch": 31.335517693315857,
+ "grad_norm": 0.20655220746994019,
+ "learning_rate": 0.0006,
+ "loss": 3.714116096496582,
+ "step": 2256
+ },
+ {
+ "epoch": 31.34949759720402,
+ "grad_norm": 0.21738854050636292,
+ "learning_rate": 0.0006,
+ "loss": 3.731657028198242,
+ "step": 2257
+ },
+ {
+ "epoch": 31.36347750109218,
+ "grad_norm": 0.20758475363254547,
+ "learning_rate": 0.0006,
+ "loss": 3.7378528118133545,
+ "step": 2258
+ },
+ {
+ "epoch": 31.37745740498034,
+ "grad_norm": 0.20107139647006989,
+ "learning_rate": 0.0006,
+ "loss": 3.748572826385498,
+ "step": 2259
+ },
+ {
+ "epoch": 31.3914373088685,
+ "grad_norm": 0.18707452714443207,
+ "learning_rate": 0.0006,
+ "loss": 3.7237391471862793,
+ "step": 2260
+ },
+ {
+ "epoch": 31.405417212756664,
+ "grad_norm": 0.20745301246643066,
+ "learning_rate": 0.0006,
+ "loss": 3.734435558319092,
+ "step": 2261
+ },
+ {
+ "epoch": 31.419397116644824,
+ "grad_norm": 0.20793399214744568,
+ "learning_rate": 0.0006,
+ "loss": 3.7639012336730957,
+ "step": 2262
+ },
+ {
+ "epoch": 31.433377020532983,
+ "grad_norm": 0.20193757116794586,
+ "learning_rate": 0.0006,
+ "loss": 3.754117727279663,
+ "step": 2263
+ },
+ {
+ "epoch": 31.447356924421143,
+ "grad_norm": 0.1912323236465454,
+ "learning_rate": 0.0006,
+ "loss": 3.728111982345581,
+ "step": 2264
+ },
+ {
+ "epoch": 31.461336828309307,
+ "grad_norm": 0.19441582262516022,
+ "learning_rate": 0.0006,
+ "loss": 3.7533278465270996,
+ "step": 2265
+ },
+ {
+ "epoch": 31.475316732197467,
+ "grad_norm": 0.19807079434394836,
+ "learning_rate": 0.0006,
+ "loss": 3.7351698875427246,
+ "step": 2266
+ },
+ {
+ "epoch": 31.489296636085626,
+ "grad_norm": 0.20373263955116272,
+ "learning_rate": 0.0006,
+ "loss": 3.714097023010254,
+ "step": 2267
+ },
+ {
+ "epoch": 31.503276539973786,
+ "grad_norm": 0.21868768334388733,
+ "learning_rate": 0.0006,
+ "loss": 3.736743688583374,
+ "step": 2268
+ },
+ {
+ "epoch": 31.51725644386195,
+ "grad_norm": 0.20767922699451447,
+ "learning_rate": 0.0006,
+ "loss": 3.7097702026367188,
+ "step": 2269
+ },
+ {
+ "epoch": 31.53123634775011,
+ "grad_norm": 0.18425600230693817,
+ "learning_rate": 0.0006,
+ "loss": 3.7349140644073486,
+ "step": 2270
+ },
+ {
+ "epoch": 31.54521625163827,
+ "grad_norm": 0.18813826143741608,
+ "learning_rate": 0.0006,
+ "loss": 3.7023448944091797,
+ "step": 2271
+ },
+ {
+ "epoch": 31.55919615552643,
+ "grad_norm": 0.1892116516828537,
+ "learning_rate": 0.0006,
+ "loss": 3.7170143127441406,
+ "step": 2272
+ },
+ {
+ "epoch": 31.573176059414592,
+ "grad_norm": 0.2067834585905075,
+ "learning_rate": 0.0006,
+ "loss": 3.7312588691711426,
+ "step": 2273
+ },
+ {
+ "epoch": 31.587155963302752,
+ "grad_norm": 0.204023078083992,
+ "learning_rate": 0.0006,
+ "loss": 3.7399091720581055,
+ "step": 2274
+ },
+ {
+ "epoch": 31.601135867190912,
+ "grad_norm": 0.20245152711868286,
+ "learning_rate": 0.0006,
+ "loss": 3.7259416580200195,
+ "step": 2275
+ },
+ {
+ "epoch": 31.615115771079076,
+ "grad_norm": 0.21125490963459015,
+ "learning_rate": 0.0006,
+ "loss": 3.7217836380004883,
+ "step": 2276
+ },
+ {
+ "epoch": 31.629095674967235,
+ "grad_norm": 0.2093241959810257,
+ "learning_rate": 0.0006,
+ "loss": 3.707627773284912,
+ "step": 2277
+ },
+ {
+ "epoch": 31.643075578855395,
+ "grad_norm": 0.19290480017662048,
+ "learning_rate": 0.0006,
+ "loss": 3.7467126846313477,
+ "step": 2278
+ },
+ {
+ "epoch": 31.657055482743555,
+ "grad_norm": 0.1853940635919571,
+ "learning_rate": 0.0006,
+ "loss": 3.7565581798553467,
+ "step": 2279
+ },
+ {
+ "epoch": 31.67103538663172,
+ "grad_norm": 0.18917642533779144,
+ "learning_rate": 0.0006,
+ "loss": 3.7286229133605957,
+ "step": 2280
+ },
+ {
+ "epoch": 31.68501529051988,
+ "grad_norm": 0.2094079703092575,
+ "learning_rate": 0.0006,
+ "loss": 3.7297096252441406,
+ "step": 2281
+ },
+ {
+ "epoch": 31.698995194408038,
+ "grad_norm": 0.20020027458667755,
+ "learning_rate": 0.0006,
+ "loss": 3.7565250396728516,
+ "step": 2282
+ },
+ {
+ "epoch": 31.712975098296198,
+ "grad_norm": 0.19156186282634735,
+ "learning_rate": 0.0006,
+ "loss": 3.7401509284973145,
+ "step": 2283
+ },
+ {
+ "epoch": 31.72695500218436,
+ "grad_norm": 0.19176368415355682,
+ "learning_rate": 0.0006,
+ "loss": 3.751206398010254,
+ "step": 2284
+ },
+ {
+ "epoch": 31.74093490607252,
+ "grad_norm": 0.18351277709007263,
+ "learning_rate": 0.0006,
+ "loss": 3.752984046936035,
+ "step": 2285
+ },
+ {
+ "epoch": 31.75491480996068,
+ "grad_norm": 0.1879221349954605,
+ "learning_rate": 0.0006,
+ "loss": 3.7156834602355957,
+ "step": 2286
+ },
+ {
+ "epoch": 31.76889471384884,
+ "grad_norm": 0.19232559204101562,
+ "learning_rate": 0.0006,
+ "loss": 3.732879638671875,
+ "step": 2287
+ },
+ {
+ "epoch": 31.782874617737004,
+ "grad_norm": 0.18484069406986237,
+ "learning_rate": 0.0006,
+ "loss": 3.7489013671875,
+ "step": 2288
+ },
+ {
+ "epoch": 31.796854521625164,
+ "grad_norm": 0.20705144107341766,
+ "learning_rate": 0.0006,
+ "loss": 3.7214112281799316,
+ "step": 2289
+ },
+ {
+ "epoch": 31.810834425513324,
+ "grad_norm": 0.23424774408340454,
+ "learning_rate": 0.0006,
+ "loss": 3.714550256729126,
+ "step": 2290
+ },
+ {
+ "epoch": 31.824814329401484,
+ "grad_norm": 0.24061693251132965,
+ "learning_rate": 0.0006,
+ "loss": 3.717336654663086,
+ "step": 2291
+ },
+ {
+ "epoch": 31.838794233289647,
+ "grad_norm": 0.23156678676605225,
+ "learning_rate": 0.0006,
+ "loss": 3.7345399856567383,
+ "step": 2292
+ },
+ {
+ "epoch": 31.852774137177807,
+ "grad_norm": 0.2256302684545517,
+ "learning_rate": 0.0006,
+ "loss": 3.7596092224121094,
+ "step": 2293
+ },
+ {
+ "epoch": 31.866754041065967,
+ "grad_norm": 0.2118781954050064,
+ "learning_rate": 0.0006,
+ "loss": 3.725433588027954,
+ "step": 2294
+ },
+ {
+ "epoch": 31.88073394495413,
+ "grad_norm": 0.1874573826789856,
+ "learning_rate": 0.0006,
+ "loss": 3.738901138305664,
+ "step": 2295
+ },
+ {
+ "epoch": 31.89471384884229,
+ "grad_norm": 0.2062024176120758,
+ "learning_rate": 0.0006,
+ "loss": 3.7439217567443848,
+ "step": 2296
+ },
+ {
+ "epoch": 31.90869375273045,
+ "grad_norm": 0.19886671006679535,
+ "learning_rate": 0.0006,
+ "loss": 3.7583155632019043,
+ "step": 2297
+ },
+ {
+ "epoch": 31.92267365661861,
+ "grad_norm": 0.2079734355211258,
+ "learning_rate": 0.0006,
+ "loss": 3.7251501083374023,
+ "step": 2298
+ },
+ {
+ "epoch": 31.936653560506773,
+ "grad_norm": 0.19710204005241394,
+ "learning_rate": 0.0006,
+ "loss": 3.765778064727783,
+ "step": 2299
+ },
+ {
+ "epoch": 31.950633464394933,
+ "grad_norm": 0.1949392408132553,
+ "learning_rate": 0.0006,
+ "loss": 3.7634787559509277,
+ "step": 2300
+ },
+ {
+ "epoch": 31.964613368283093,
+ "grad_norm": 0.21466250717639923,
+ "learning_rate": 0.0006,
+ "loss": 3.7673215866088867,
+ "step": 2301
+ },
+ {
+ "epoch": 31.978593272171253,
+ "grad_norm": 0.21624267101287842,
+ "learning_rate": 0.0006,
+ "loss": 3.7617220878601074,
+ "step": 2302
+ },
+ {
+ "epoch": 31.992573176059416,
+ "grad_norm": 0.22880229353904724,
+ "learning_rate": 0.0006,
+ "loss": 3.7190351486206055,
+ "step": 2303
+ },
+ {
+ "epoch": 32.0,
+ "grad_norm": 0.23227518796920776,
+ "learning_rate": 0.0006,
+ "loss": 3.740169048309326,
+ "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/mask15-l2r50-fulle-lm/checkpoint-2304/training_args.bin b/runs/mask15-l2r50-fulle-lm/checkpoint-2304/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..43721c50815fe94f90cb043bf545b8f7bd9afc38
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-2304/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:a0b8d7bb9ac952b1abed3bd1e5c8f6ebd20daa957b3a85688954f8df03be6eb9
+size 4856
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-2592/chat_template.jinja b/runs/mask15-l2r50-fulle-lm/checkpoint-2592/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/mask15-l2r50-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/mask15-l2r50-fulle-lm/checkpoint-2592/config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-2592/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..1b4ac3c550d6003148026765eba4cb1512b216c9
--- /dev/null
+++ b/runs/mask15-l2r50-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": 151672
+}
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-2592/generation_config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-2592/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..5cd15fe1269fd505cfdefe9b3e9989dacd9f68f4
--- /dev/null
+++ b/runs/mask15-l2r50-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/mask15-l2r50-fulle-lm/checkpoint-2592/model.safetensors b/runs/mask15-l2r50-fulle-lm/checkpoint-2592/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..c46cf5660d0f517c1c554df4a6ebd7f684142efc
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-2592/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:a348e69288b90ba0a72fb239cd4203ea9ce0ac03a96bd01ab190172a6b84777c
+size 583358280
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-2592/optimizer.pt b/runs/mask15-l2r50-fulle-lm/checkpoint-2592/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..b0e90944e0039d3de1a4e4dd9aacdbf638c5eb10
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-2592/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:f7718febc9bfa516e9675715696d8cf41120e6c1d6cbc05a108551359e4736b1
+size 1166829434
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-2592/rng_state_0.pth b/runs/mask15-l2r50-fulle-lm/checkpoint-2592/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..e32bfc938249030a08966a5751ed32a1a59a0d40
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-2592/rng_state_0.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:f568073f02244a0d9f426b9bfe279e3df5a867fc0ab352cf8df092a26471d7b9
+size 14512
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-2592/rng_state_1.pth b/runs/mask15-l2r50-fulle-lm/checkpoint-2592/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..0fb0dde21fb54758005f21fe437bc9cfc51e5666
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-2592/rng_state_1.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:0821063941a685e79e274b674a2f0078f2574a9ba257ac7791501653bac5f213
+size 14512
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-2592/scheduler.pt b/runs/mask15-l2r50-fulle-lm/checkpoint-2592/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..f5637f631cc7ed2167f366c33ad859c0b7d97027
--- /dev/null
+++ b/runs/mask15-l2r50-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/mask15-l2r50-fulle-lm/checkpoint-2592/tokenizer.json b/runs/mask15-l2r50-fulle-lm/checkpoint-2592/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..6226bf25372d1a86dbd704ec75d2129960f1ba88
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-2592/tokenizer.json
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:9245fe3cb2d40f9ed8d5d8ddd1d58701ba2a236beec08f656162281673f30560
+size 11424264
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-2592/tokenizer_config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-2592/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..01bc9676576e8cf62a08a9db166d6c5bab1d6727
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-2592/tokenizer_config.json
@@ -0,0 +1,20 @@
+{
+ "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|>",
+ "<|mask|>"
+ ],
+ "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/mask15-l2r50-fulle-lm/checkpoint-2592/trainer_state.json b/runs/mask15-l2r50-fulle-lm/checkpoint-2592/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..e4d9fcf41e3d8182e7672480d0dc67011b7d88c4
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-2592/trainer_state.json
@@ -0,0 +1,18458 @@
+{
+ "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": 9.807971954345703,
+ "learning_rate": 0.0,
+ "loss": 11.989814758300781,
+ "step": 1
+ },
+ {
+ "epoch": 0.027959807776321538,
+ "grad_norm": 9.834383010864258,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 11.993022918701172,
+ "step": 2
+ },
+ {
+ "epoch": 0.04193971166448231,
+ "grad_norm": 9.482470512390137,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 11.854345321655273,
+ "step": 3
+ },
+ {
+ "epoch": 0.055919615552643076,
+ "grad_norm": 7.678808689117432,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 11.618255615234375,
+ "step": 4
+ },
+ {
+ "epoch": 0.06989951944080385,
+ "grad_norm": 6.011275291442871,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 11.351423263549805,
+ "step": 5
+ },
+ {
+ "epoch": 0.08387942332896461,
+ "grad_norm": 5.244393825531006,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 11.128631591796875,
+ "step": 6
+ },
+ {
+ "epoch": 0.09785932721712538,
+ "grad_norm": 4.577618598937988,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 10.921937942504883,
+ "step": 7
+ },
+ {
+ "epoch": 0.11183923110528615,
+ "grad_norm": 4.03810453414917,
+ "learning_rate": 4.2e-05,
+ "loss": 10.742650985717773,
+ "step": 8
+ },
+ {
+ "epoch": 0.1258191349934469,
+ "grad_norm": 3.657679796218872,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 10.600778579711914,
+ "step": 9
+ },
+ {
+ "epoch": 0.1397990388816077,
+ "grad_norm": 3.352902889251709,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 10.489639282226562,
+ "step": 10
+ },
+ {
+ "epoch": 0.15377894276976845,
+ "grad_norm": 3.1162633895874023,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 10.417770385742188,
+ "step": 11
+ },
+ {
+ "epoch": 0.16775884665792923,
+ "grad_norm": 3.0402638912200928,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 10.35334587097168,
+ "step": 12
+ },
+ {
+ "epoch": 0.18173875054608998,
+ "grad_norm": 3.030630111694336,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 10.306867599487305,
+ "step": 13
+ },
+ {
+ "epoch": 0.19571865443425077,
+ "grad_norm": 3.035292148590088,
+ "learning_rate": 7.8e-05,
+ "loss": 10.26003646850586,
+ "step": 14
+ },
+ {
+ "epoch": 0.20969855832241152,
+ "grad_norm": 3.0125675201416016,
+ "learning_rate": 8.4e-05,
+ "loss": 10.219265937805176,
+ "step": 15
+ },
+ {
+ "epoch": 0.2236784622105723,
+ "grad_norm": 2.9998886585235596,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 10.161077499389648,
+ "step": 16
+ },
+ {
+ "epoch": 0.23765836609873306,
+ "grad_norm": 2.9411966800689697,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 10.107423782348633,
+ "step": 17
+ },
+ {
+ "epoch": 0.2516382699868938,
+ "grad_norm": 2.88081955909729,
+ "learning_rate": 0.000102,
+ "loss": 10.04700756072998,
+ "step": 18
+ },
+ {
+ "epoch": 0.2656181738750546,
+ "grad_norm": 2.8219687938690186,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 9.981185913085938,
+ "step": 19
+ },
+ {
+ "epoch": 0.2795980777632154,
+ "grad_norm": 2.79306960105896,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 9.89747142791748,
+ "step": 20
+ },
+ {
+ "epoch": 0.29357798165137616,
+ "grad_norm": 2.7314443588256836,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 9.829219818115234,
+ "step": 21
+ },
+ {
+ "epoch": 0.3075578855395369,
+ "grad_norm": 2.6923747062683105,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 9.747566223144531,
+ "step": 22
+ },
+ {
+ "epoch": 0.3215377894276977,
+ "grad_norm": 2.650602340698242,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 9.66455078125,
+ "step": 23
+ },
+ {
+ "epoch": 0.33551769331585846,
+ "grad_norm": 2.606977701187134,
+ "learning_rate": 0.000138,
+ "loss": 9.582326889038086,
+ "step": 24
+ },
+ {
+ "epoch": 0.34949759720401924,
+ "grad_norm": 2.567256212234497,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 9.492591857910156,
+ "step": 25
+ },
+ {
+ "epoch": 0.36347750109217997,
+ "grad_norm": 2.520740509033203,
+ "learning_rate": 0.00015,
+ "loss": 9.396563529968262,
+ "step": 26
+ },
+ {
+ "epoch": 0.37745740498034075,
+ "grad_norm": 2.471588611602783,
+ "learning_rate": 0.000156,
+ "loss": 9.303571701049805,
+ "step": 27
+ },
+ {
+ "epoch": 0.39143730886850153,
+ "grad_norm": 2.4341530799865723,
+ "learning_rate": 0.000162,
+ "loss": 9.191819190979004,
+ "step": 28
+ },
+ {
+ "epoch": 0.4054172127566623,
+ "grad_norm": 2.369244337081909,
+ "learning_rate": 0.000168,
+ "loss": 9.092012405395508,
+ "step": 29
+ },
+ {
+ "epoch": 0.41939711664482304,
+ "grad_norm": 2.28625226020813,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 8.984567642211914,
+ "step": 30
+ },
+ {
+ "epoch": 0.4333770205329838,
+ "grad_norm": 2.2082231044769287,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 8.889009475708008,
+ "step": 31
+ },
+ {
+ "epoch": 0.4473569244211446,
+ "grad_norm": 2.1429483890533447,
+ "learning_rate": 0.000186,
+ "loss": 8.778556823730469,
+ "step": 32
+ },
+ {
+ "epoch": 0.4613368283093054,
+ "grad_norm": 2.0937352180480957,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 8.661166191101074,
+ "step": 33
+ },
+ {
+ "epoch": 0.4753167321974661,
+ "grad_norm": 2.040790557861328,
+ "learning_rate": 0.000198,
+ "loss": 8.550382614135742,
+ "step": 34
+ },
+ {
+ "epoch": 0.4892966360856269,
+ "grad_norm": 1.93914794921875,
+ "learning_rate": 0.000204,
+ "loss": 8.463907241821289,
+ "step": 35
+ },
+ {
+ "epoch": 0.5032765399737876,
+ "grad_norm": 1.8624178171157837,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 8.3438720703125,
+ "step": 36
+ },
+ {
+ "epoch": 0.5172564438619485,
+ "grad_norm": 1.8107167482376099,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 8.21871566772461,
+ "step": 37
+ },
+ {
+ "epoch": 0.5312363477501092,
+ "grad_norm": 1.717979073524475,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 8.113494873046875,
+ "step": 38
+ },
+ {
+ "epoch": 0.54521625163827,
+ "grad_norm": 1.668742060661316,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 8.006099700927734,
+ "step": 39
+ },
+ {
+ "epoch": 0.5591961555264308,
+ "grad_norm": 1.6147786378860474,
+ "learning_rate": 0.000234,
+ "loss": 7.911509037017822,
+ "step": 40
+ },
+ {
+ "epoch": 0.5731760594145915,
+ "grad_norm": 1.535750150680542,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 7.822839736938477,
+ "step": 41
+ },
+ {
+ "epoch": 0.5871559633027523,
+ "grad_norm": 1.4700065851211548,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 7.713842868804932,
+ "step": 42
+ },
+ {
+ "epoch": 0.601135867190913,
+ "grad_norm": 1.39020574092865,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 7.6040191650390625,
+ "step": 43
+ },
+ {
+ "epoch": 0.6151157710790738,
+ "grad_norm": 1.2875399589538574,
+ "learning_rate": 0.000258,
+ "loss": 7.550642013549805,
+ "step": 44
+ },
+ {
+ "epoch": 0.6290956749672346,
+ "grad_norm": 1.2094247341156006,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 7.460824012756348,
+ "step": 45
+ },
+ {
+ "epoch": 0.6430755788553953,
+ "grad_norm": 1.126452088356018,
+ "learning_rate": 0.00027,
+ "loss": 7.380537986755371,
+ "step": 46
+ },
+ {
+ "epoch": 0.6570554827435562,
+ "grad_norm": 1.0313163995742798,
+ "learning_rate": 0.000276,
+ "loss": 7.286153793334961,
+ "step": 47
+ },
+ {
+ "epoch": 0.6710353866317169,
+ "grad_norm": 0.9172859787940979,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 7.2064714431762695,
+ "step": 48
+ },
+ {
+ "epoch": 0.6850152905198776,
+ "grad_norm": 0.8148201107978821,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 7.158207416534424,
+ "step": 49
+ },
+ {
+ "epoch": 0.6989951944080385,
+ "grad_norm": 0.650123119354248,
+ "learning_rate": 0.000294,
+ "loss": 7.108791828155518,
+ "step": 50
+ },
+ {
+ "epoch": 0.7129750982961992,
+ "grad_norm": 0.5437585711479187,
+ "learning_rate": 0.0003,
+ "loss": 7.083050727844238,
+ "step": 51
+ },
+ {
+ "epoch": 0.7269550021843599,
+ "grad_norm": 0.46762895584106445,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 7.058027267456055,
+ "step": 52
+ },
+ {
+ "epoch": 0.7409349060725208,
+ "grad_norm": 0.47947561740875244,
+ "learning_rate": 0.000312,
+ "loss": 7.015172958374023,
+ "step": 53
+ },
+ {
+ "epoch": 0.7549148099606815,
+ "grad_norm": 0.7546492218971252,
+ "learning_rate": 0.000318,
+ "loss": 7.024629592895508,
+ "step": 54
+ },
+ {
+ "epoch": 0.7688947138488423,
+ "grad_norm": 0.6153718829154968,
+ "learning_rate": 0.000324,
+ "loss": 7.026667594909668,
+ "step": 55
+ },
+ {
+ "epoch": 0.7828746177370031,
+ "grad_norm": 0.3359069228172302,
+ "learning_rate": 0.00033,
+ "loss": 7.008166313171387,
+ "step": 56
+ },
+ {
+ "epoch": 0.7968545216251638,
+ "grad_norm": 0.48906823992729187,
+ "learning_rate": 0.000336,
+ "loss": 7.019716262817383,
+ "step": 57
+ },
+ {
+ "epoch": 0.8108344255133246,
+ "grad_norm": 0.5525421500205994,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 7.02108097076416,
+ "step": 58
+ },
+ {
+ "epoch": 0.8248143294014854,
+ "grad_norm": 0.3103712201118469,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 7.003164768218994,
+ "step": 59
+ },
+ {
+ "epoch": 0.8387942332896461,
+ "grad_norm": 0.4431874752044678,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 7.003463268280029,
+ "step": 60
+ },
+ {
+ "epoch": 0.8527741371778069,
+ "grad_norm": 0.4291120767593384,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 6.96931791305542,
+ "step": 61
+ },
+ {
+ "epoch": 0.8667540410659677,
+ "grad_norm": 0.6566054224967957,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 6.989445686340332,
+ "step": 62
+ },
+ {
+ "epoch": 0.8807339449541285,
+ "grad_norm": 0.20663189888000488,
+ "learning_rate": 0.000372,
+ "loss": 6.9669342041015625,
+ "step": 63
+ },
+ {
+ "epoch": 0.8947138488422892,
+ "grad_norm": 0.6242535710334778,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 6.949883460998535,
+ "step": 64
+ },
+ {
+ "epoch": 0.9086937527304499,
+ "grad_norm": 0.6984224915504456,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 6.955153465270996,
+ "step": 65
+ },
+ {
+ "epoch": 0.9226736566186108,
+ "grad_norm": 0.6328083872795105,
+ "learning_rate": 0.00039,
+ "loss": 6.965421676635742,
+ "step": 66
+ },
+ {
+ "epoch": 0.9366535605067715,
+ "grad_norm": 1.213352918624878,
+ "learning_rate": 0.000396,
+ "loss": 6.9454345703125,
+ "step": 67
+ },
+ {
+ "epoch": 0.9506334643949322,
+ "grad_norm": 0.9221940636634827,
+ "learning_rate": 0.000402,
+ "loss": 6.923908233642578,
+ "step": 68
+ },
+ {
+ "epoch": 0.9646133682830931,
+ "grad_norm": 0.6825450658798218,
+ "learning_rate": 0.000408,
+ "loss": 6.910131454467773,
+ "step": 69
+ },
+ {
+ "epoch": 0.9785932721712538,
+ "grad_norm": 0.5690162181854248,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 6.89891242980957,
+ "step": 70
+ },
+ {
+ "epoch": 0.9925731760594146,
+ "grad_norm": 0.4320870041847229,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 6.896081924438477,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.31632405519485474,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 6.897444725036621,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 7.757839679718018,
+ "eval_runtime": 43.8338,
+ "eval_samples_per_second": 55.71,
+ "eval_steps_per_second": 3.49,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139799038881607,
+ "grad_norm": 0.3789916932582855,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 6.877245903015137,
+ "step": 73
+ },
+ {
+ "epoch": 1.0279598077763215,
+ "grad_norm": 0.9167932868003845,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 6.921600341796875,
+ "step": 74
+ },
+ {
+ "epoch": 1.0419397116644824,
+ "grad_norm": 0.581188440322876,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 6.861001968383789,
+ "step": 75
+ },
+ {
+ "epoch": 1.0559196155526431,
+ "grad_norm": 0.4179714024066925,
+ "learning_rate": 0.00045,
+ "loss": 6.875657081604004,
+ "step": 76
+ },
+ {
+ "epoch": 1.0698995194408039,
+ "grad_norm": 1.0669957399368286,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 6.857122421264648,
+ "step": 77
+ },
+ {
+ "epoch": 1.0838794233289646,
+ "grad_norm": 0.27855145931243896,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 6.828852653503418,
+ "step": 78
+ },
+ {
+ "epoch": 1.0978593272171253,
+ "grad_norm": 0.7192047834396362,
+ "learning_rate": 0.000468,
+ "loss": 6.870839595794678,
+ "step": 79
+ },
+ {
+ "epoch": 1.1118392311052863,
+ "grad_norm": 0.5583325624465942,
+ "learning_rate": 0.000474,
+ "loss": 6.8497514724731445,
+ "step": 80
+ },
+ {
+ "epoch": 1.125819134993447,
+ "grad_norm": 0.3001925051212311,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 6.858528137207031,
+ "step": 81
+ },
+ {
+ "epoch": 1.1397990388816077,
+ "grad_norm": 0.2408239096403122,
+ "learning_rate": 0.000486,
+ "loss": 6.83231258392334,
+ "step": 82
+ },
+ {
+ "epoch": 1.1537789427697684,
+ "grad_norm": 0.28230324387550354,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 6.815476894378662,
+ "step": 83
+ },
+ {
+ "epoch": 1.1677588466579292,
+ "grad_norm": 0.3247123658657074,
+ "learning_rate": 0.000498,
+ "loss": 6.780126094818115,
+ "step": 84
+ },
+ {
+ "epoch": 1.18173875054609,
+ "grad_norm": 0.25713011622428894,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 6.7798309326171875,
+ "step": 85
+ },
+ {
+ "epoch": 1.1957186544342508,
+ "grad_norm": 0.5386835932731628,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 6.791745185852051,
+ "step": 86
+ },
+ {
+ "epoch": 1.2096985583224116,
+ "grad_norm": 0.2226393222808838,
+ "learning_rate": 0.000516,
+ "loss": 6.7826972007751465,
+ "step": 87
+ },
+ {
+ "epoch": 1.2236784622105723,
+ "grad_norm": 0.4338362216949463,
+ "learning_rate": 0.000522,
+ "loss": 6.805043697357178,
+ "step": 88
+ },
+ {
+ "epoch": 1.237658366098733,
+ "grad_norm": 0.2953208386898041,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 6.768434524536133,
+ "step": 89
+ },
+ {
+ "epoch": 1.2516382699868938,
+ "grad_norm": 0.13453717529773712,
+ "learning_rate": 0.000534,
+ "loss": 6.773697376251221,
+ "step": 90
+ },
+ {
+ "epoch": 1.2656181738750547,
+ "grad_norm": 0.35774412751197815,
+ "learning_rate": 0.00054,
+ "loss": 6.766414642333984,
+ "step": 91
+ },
+ {
+ "epoch": 1.2795980777632154,
+ "grad_norm": 0.4669720530509949,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 6.754847526550293,
+ "step": 92
+ },
+ {
+ "epoch": 1.2935779816513762,
+ "grad_norm": 0.13806621730327606,
+ "learning_rate": 0.000552,
+ "loss": 6.746858596801758,
+ "step": 93
+ },
+ {
+ "epoch": 1.307557885539537,
+ "grad_norm": 0.3280332386493683,
+ "learning_rate": 0.000558,
+ "loss": 6.715662956237793,
+ "step": 94
+ },
+ {
+ "epoch": 1.3215377894276976,
+ "grad_norm": 0.4689937233924866,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 6.734938144683838,
+ "step": 95
+ },
+ {
+ "epoch": 1.3355176933158583,
+ "grad_norm": 0.35371264815330505,
+ "learning_rate": 0.00057,
+ "loss": 6.748386383056641,
+ "step": 96
+ },
+ {
+ "epoch": 1.3494975972040193,
+ "grad_norm": 0.15232303738594055,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 6.705557823181152,
+ "step": 97
+ },
+ {
+ "epoch": 1.36347750109218,
+ "grad_norm": 0.30132821202278137,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 6.7199859619140625,
+ "step": 98
+ },
+ {
+ "epoch": 1.3774574049803407,
+ "grad_norm": 0.42174842953681946,
+ "learning_rate": 0.000588,
+ "loss": 6.715370178222656,
+ "step": 99
+ },
+ {
+ "epoch": 1.3914373088685015,
+ "grad_norm": 0.6257228851318359,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 6.707026958465576,
+ "step": 100
+ },
+ {
+ "epoch": 1.4054172127566624,
+ "grad_norm": 0.4551195800304413,
+ "learning_rate": 0.0006,
+ "loss": 6.7078423500061035,
+ "step": 101
+ },
+ {
+ "epoch": 1.4193971166448232,
+ "grad_norm": 0.41940346360206604,
+ "learning_rate": 0.0006,
+ "loss": 6.6959357261657715,
+ "step": 102
+ },
+ {
+ "epoch": 1.4333770205329839,
+ "grad_norm": 0.32251718640327454,
+ "learning_rate": 0.0006,
+ "loss": 6.689168930053711,
+ "step": 103
+ },
+ {
+ "epoch": 1.4473569244211446,
+ "grad_norm": 0.2992720305919647,
+ "learning_rate": 0.0006,
+ "loss": 6.680738925933838,
+ "step": 104
+ },
+ {
+ "epoch": 1.4613368283093053,
+ "grad_norm": 0.3228456974029541,
+ "learning_rate": 0.0006,
+ "loss": 6.672350883483887,
+ "step": 105
+ },
+ {
+ "epoch": 1.475316732197466,
+ "grad_norm": 0.24954743683338165,
+ "learning_rate": 0.0006,
+ "loss": 6.653716087341309,
+ "step": 106
+ },
+ {
+ "epoch": 1.4892966360856268,
+ "grad_norm": 0.30740687251091003,
+ "learning_rate": 0.0006,
+ "loss": 6.676583290100098,
+ "step": 107
+ },
+ {
+ "epoch": 1.5032765399737875,
+ "grad_norm": 0.24950599670410156,
+ "learning_rate": 0.0006,
+ "loss": 6.656691551208496,
+ "step": 108
+ },
+ {
+ "epoch": 1.5172564438619485,
+ "grad_norm": 0.24293005466461182,
+ "learning_rate": 0.0006,
+ "loss": 6.640995979309082,
+ "step": 109
+ },
+ {
+ "epoch": 1.5312363477501092,
+ "grad_norm": 0.30167272686958313,
+ "learning_rate": 0.0006,
+ "loss": 6.647380352020264,
+ "step": 110
+ },
+ {
+ "epoch": 1.5452162516382701,
+ "grad_norm": 0.4424632787704468,
+ "learning_rate": 0.0006,
+ "loss": 6.6548261642456055,
+ "step": 111
+ },
+ {
+ "epoch": 1.5591961555264309,
+ "grad_norm": 0.5295748114585876,
+ "learning_rate": 0.0006,
+ "loss": 6.64370059967041,
+ "step": 112
+ },
+ {
+ "epoch": 1.5731760594145916,
+ "grad_norm": 0.6829339265823364,
+ "learning_rate": 0.0006,
+ "loss": 6.654196739196777,
+ "step": 113
+ },
+ {
+ "epoch": 1.5871559633027523,
+ "grad_norm": 0.6534460186958313,
+ "learning_rate": 0.0006,
+ "loss": 6.675765037536621,
+ "step": 114
+ },
+ {
+ "epoch": 1.601135867190913,
+ "grad_norm": 0.6172244548797607,
+ "learning_rate": 0.0006,
+ "loss": 6.631234169006348,
+ "step": 115
+ },
+ {
+ "epoch": 1.6151157710790738,
+ "grad_norm": 0.5650008320808411,
+ "learning_rate": 0.0006,
+ "loss": 6.654262542724609,
+ "step": 116
+ },
+ {
+ "epoch": 1.6290956749672345,
+ "grad_norm": 0.3890475928783417,
+ "learning_rate": 0.0006,
+ "loss": 6.627526760101318,
+ "step": 117
+ },
+ {
+ "epoch": 1.6430755788553952,
+ "grad_norm": 0.6409873366355896,
+ "learning_rate": 0.0006,
+ "loss": 6.619794845581055,
+ "step": 118
+ },
+ {
+ "epoch": 1.6570554827435562,
+ "grad_norm": 0.5052326321601868,
+ "learning_rate": 0.0006,
+ "loss": 6.612556457519531,
+ "step": 119
+ },
+ {
+ "epoch": 1.671035386631717,
+ "grad_norm": 0.5001237988471985,
+ "learning_rate": 0.0006,
+ "loss": 6.577266693115234,
+ "step": 120
+ },
+ {
+ "epoch": 1.6850152905198776,
+ "grad_norm": 0.5328938364982605,
+ "learning_rate": 0.0006,
+ "loss": 6.59553337097168,
+ "step": 121
+ },
+ {
+ "epoch": 1.6989951944080386,
+ "grad_norm": 0.3568951189517975,
+ "learning_rate": 0.0006,
+ "loss": 6.602717399597168,
+ "step": 122
+ },
+ {
+ "epoch": 1.7129750982961993,
+ "grad_norm": 0.4017309546470642,
+ "learning_rate": 0.0006,
+ "loss": 6.589657783508301,
+ "step": 123
+ },
+ {
+ "epoch": 1.72695500218436,
+ "grad_norm": 0.21432629227638245,
+ "learning_rate": 0.0006,
+ "loss": 6.586555480957031,
+ "step": 124
+ },
+ {
+ "epoch": 1.7409349060725208,
+ "grad_norm": 0.21038052439689636,
+ "learning_rate": 0.0006,
+ "loss": 6.576569557189941,
+ "step": 125
+ },
+ {
+ "epoch": 1.7549148099606815,
+ "grad_norm": 0.23074904084205627,
+ "learning_rate": 0.0006,
+ "loss": 6.5880632400512695,
+ "step": 126
+ },
+ {
+ "epoch": 1.7688947138488422,
+ "grad_norm": 0.42963048815727234,
+ "learning_rate": 0.0006,
+ "loss": 6.603862762451172,
+ "step": 127
+ },
+ {
+ "epoch": 1.782874617737003,
+ "grad_norm": 0.361331045627594,
+ "learning_rate": 0.0006,
+ "loss": 6.579834938049316,
+ "step": 128
+ },
+ {
+ "epoch": 1.7968545216251637,
+ "grad_norm": 0.4951060712337494,
+ "learning_rate": 0.0006,
+ "loss": 6.570443630218506,
+ "step": 129
+ },
+ {
+ "epoch": 1.8108344255133246,
+ "grad_norm": 0.2258434295654297,
+ "learning_rate": 0.0006,
+ "loss": 6.5664777755737305,
+ "step": 130
+ },
+ {
+ "epoch": 1.8248143294014854,
+ "grad_norm": 0.2922155559062958,
+ "learning_rate": 0.0006,
+ "loss": 6.561326503753662,
+ "step": 131
+ },
+ {
+ "epoch": 1.838794233289646,
+ "grad_norm": 0.19068220257759094,
+ "learning_rate": 0.0006,
+ "loss": 6.528727054595947,
+ "step": 132
+ },
+ {
+ "epoch": 1.852774137177807,
+ "grad_norm": 0.2122010439634323,
+ "learning_rate": 0.0006,
+ "loss": 6.535636901855469,
+ "step": 133
+ },
+ {
+ "epoch": 1.8667540410659678,
+ "grad_norm": 0.25760164856910706,
+ "learning_rate": 0.0006,
+ "loss": 6.530498504638672,
+ "step": 134
+ },
+ {
+ "epoch": 1.8807339449541285,
+ "grad_norm": 0.1761016845703125,
+ "learning_rate": 0.0006,
+ "loss": 6.514466285705566,
+ "step": 135
+ },
+ {
+ "epoch": 1.8947138488422892,
+ "grad_norm": 0.2250051498413086,
+ "learning_rate": 0.0006,
+ "loss": 6.521268844604492,
+ "step": 136
+ },
+ {
+ "epoch": 1.90869375273045,
+ "grad_norm": 0.34458497166633606,
+ "learning_rate": 0.0006,
+ "loss": 6.512831687927246,
+ "step": 137
+ },
+ {
+ "epoch": 1.9226736566186107,
+ "grad_norm": 0.3468617796897888,
+ "learning_rate": 0.0006,
+ "loss": 6.515641689300537,
+ "step": 138
+ },
+ {
+ "epoch": 1.9366535605067714,
+ "grad_norm": 0.5051495432853699,
+ "learning_rate": 0.0006,
+ "loss": 6.5147905349731445,
+ "step": 139
+ },
+ {
+ "epoch": 1.9506334643949321,
+ "grad_norm": 0.7106727361679077,
+ "learning_rate": 0.0006,
+ "loss": 6.519277572631836,
+ "step": 140
+ },
+ {
+ "epoch": 1.964613368283093,
+ "grad_norm": 0.8881394267082214,
+ "learning_rate": 0.0006,
+ "loss": 6.526865482330322,
+ "step": 141
+ },
+ {
+ "epoch": 1.9785932721712538,
+ "grad_norm": 0.5552834272384644,
+ "learning_rate": 0.0006,
+ "loss": 6.469970226287842,
+ "step": 142
+ },
+ {
+ "epoch": 1.9925731760594148,
+ "grad_norm": 0.6903126835823059,
+ "learning_rate": 0.0006,
+ "loss": 6.476300239562988,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.47679027915000916,
+ "learning_rate": 0.0006,
+ "loss": 6.463827133178711,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 7.388528823852539,
+ "eval_runtime": 44.2519,
+ "eval_samples_per_second": 55.184,
+ "eval_steps_per_second": 3.457,
+ "step": 144
+ },
+ {
+ "epoch": 2.0139799038881607,
+ "grad_norm": 0.4719221293926239,
+ "learning_rate": 0.0006,
+ "loss": 6.480956077575684,
+ "step": 145
+ },
+ {
+ "epoch": 2.0279598077763215,
+ "grad_norm": 0.41137924790382385,
+ "learning_rate": 0.0006,
+ "loss": 6.449707984924316,
+ "step": 146
+ },
+ {
+ "epoch": 2.041939711664482,
+ "grad_norm": 0.4237765371799469,
+ "learning_rate": 0.0006,
+ "loss": 6.467435836791992,
+ "step": 147
+ },
+ {
+ "epoch": 2.055919615552643,
+ "grad_norm": 0.44081810116767883,
+ "learning_rate": 0.0006,
+ "loss": 6.436868667602539,
+ "step": 148
+ },
+ {
+ "epoch": 2.0698995194408036,
+ "grad_norm": 0.4163798391819,
+ "learning_rate": 0.0006,
+ "loss": 6.4642014503479,
+ "step": 149
+ },
+ {
+ "epoch": 2.083879423328965,
+ "grad_norm": 0.3831583261489868,
+ "learning_rate": 0.0006,
+ "loss": 6.454092025756836,
+ "step": 150
+ },
+ {
+ "epoch": 2.0978593272171255,
+ "grad_norm": 0.37721413373947144,
+ "learning_rate": 0.0006,
+ "loss": 6.426377296447754,
+ "step": 151
+ },
+ {
+ "epoch": 2.1118392311052863,
+ "grad_norm": 0.3323550224304199,
+ "learning_rate": 0.0006,
+ "loss": 6.421375274658203,
+ "step": 152
+ },
+ {
+ "epoch": 2.125819134993447,
+ "grad_norm": 0.47739624977111816,
+ "learning_rate": 0.0006,
+ "loss": 6.412004470825195,
+ "step": 153
+ },
+ {
+ "epoch": 2.1397990388816077,
+ "grad_norm": 0.8530274629592896,
+ "learning_rate": 0.0006,
+ "loss": 6.410468578338623,
+ "step": 154
+ },
+ {
+ "epoch": 2.1537789427697684,
+ "grad_norm": 0.6420364379882812,
+ "learning_rate": 0.0006,
+ "loss": 6.413525581359863,
+ "step": 155
+ },
+ {
+ "epoch": 2.167758846657929,
+ "grad_norm": 0.5005049109458923,
+ "learning_rate": 0.0006,
+ "loss": 6.401463508605957,
+ "step": 156
+ },
+ {
+ "epoch": 2.18173875054609,
+ "grad_norm": 0.3614683449268341,
+ "learning_rate": 0.0006,
+ "loss": 6.390063285827637,
+ "step": 157
+ },
+ {
+ "epoch": 2.1957186544342506,
+ "grad_norm": 0.595215380191803,
+ "learning_rate": 0.0006,
+ "loss": 6.369806289672852,
+ "step": 158
+ },
+ {
+ "epoch": 2.2096985583224114,
+ "grad_norm": 0.5700321793556213,
+ "learning_rate": 0.0006,
+ "loss": 6.368378639221191,
+ "step": 159
+ },
+ {
+ "epoch": 2.2236784622105725,
+ "grad_norm": 0.36273983120918274,
+ "learning_rate": 0.0006,
+ "loss": 6.366860389709473,
+ "step": 160
+ },
+ {
+ "epoch": 2.2376583660987333,
+ "grad_norm": 0.2850998342037201,
+ "learning_rate": 0.0006,
+ "loss": 6.352144718170166,
+ "step": 161
+ },
+ {
+ "epoch": 2.251638269986894,
+ "grad_norm": 0.38558584451675415,
+ "learning_rate": 0.0006,
+ "loss": 6.375765800476074,
+ "step": 162
+ },
+ {
+ "epoch": 2.2656181738750547,
+ "grad_norm": 0.34809231758117676,
+ "learning_rate": 0.0006,
+ "loss": 6.350445747375488,
+ "step": 163
+ },
+ {
+ "epoch": 2.2795980777632154,
+ "grad_norm": 0.5211818814277649,
+ "learning_rate": 0.0006,
+ "loss": 6.354585647583008,
+ "step": 164
+ },
+ {
+ "epoch": 2.293577981651376,
+ "grad_norm": 1.0809133052825928,
+ "learning_rate": 0.0006,
+ "loss": 6.3752007484436035,
+ "step": 165
+ },
+ {
+ "epoch": 2.307557885539537,
+ "grad_norm": 0.8293641209602356,
+ "learning_rate": 0.0006,
+ "loss": 6.35113525390625,
+ "step": 166
+ },
+ {
+ "epoch": 2.3215377894276976,
+ "grad_norm": 0.3428577780723572,
+ "learning_rate": 0.0006,
+ "loss": 6.334470748901367,
+ "step": 167
+ },
+ {
+ "epoch": 2.3355176933158583,
+ "grad_norm": 0.7587600946426392,
+ "learning_rate": 0.0006,
+ "loss": 6.353979587554932,
+ "step": 168
+ },
+ {
+ "epoch": 2.349497597204019,
+ "grad_norm": 0.4227249026298523,
+ "learning_rate": 0.0006,
+ "loss": 6.34018611907959,
+ "step": 169
+ },
+ {
+ "epoch": 2.36347750109218,
+ "grad_norm": 0.4226846694946289,
+ "learning_rate": 0.0006,
+ "loss": 6.290019989013672,
+ "step": 170
+ },
+ {
+ "epoch": 2.3774574049803405,
+ "grad_norm": 0.38412365317344666,
+ "learning_rate": 0.0006,
+ "loss": 6.309510231018066,
+ "step": 171
+ },
+ {
+ "epoch": 2.3914373088685017,
+ "grad_norm": 0.45698508620262146,
+ "learning_rate": 0.0006,
+ "loss": 6.283290863037109,
+ "step": 172
+ },
+ {
+ "epoch": 2.4054172127566624,
+ "grad_norm": 0.7575915455818176,
+ "learning_rate": 0.0006,
+ "loss": 6.306073188781738,
+ "step": 173
+ },
+ {
+ "epoch": 2.419397116644823,
+ "grad_norm": 0.695123553276062,
+ "learning_rate": 0.0006,
+ "loss": 6.308144569396973,
+ "step": 174
+ },
+ {
+ "epoch": 2.433377020532984,
+ "grad_norm": 0.5035743117332458,
+ "learning_rate": 0.0006,
+ "loss": 6.282073974609375,
+ "step": 175
+ },
+ {
+ "epoch": 2.4473569244211446,
+ "grad_norm": 0.3158020079135895,
+ "learning_rate": 0.0006,
+ "loss": 6.282169342041016,
+ "step": 176
+ },
+ {
+ "epoch": 2.4613368283093053,
+ "grad_norm": 0.4829689860343933,
+ "learning_rate": 0.0006,
+ "loss": 6.264578819274902,
+ "step": 177
+ },
+ {
+ "epoch": 2.475316732197466,
+ "grad_norm": 0.3992770314216614,
+ "learning_rate": 0.0006,
+ "loss": 6.228628158569336,
+ "step": 178
+ },
+ {
+ "epoch": 2.489296636085627,
+ "grad_norm": 0.40887606143951416,
+ "learning_rate": 0.0006,
+ "loss": 6.230792045593262,
+ "step": 179
+ },
+ {
+ "epoch": 2.5032765399737875,
+ "grad_norm": 0.3540310263633728,
+ "learning_rate": 0.0006,
+ "loss": 6.222573280334473,
+ "step": 180
+ },
+ {
+ "epoch": 2.5172564438619487,
+ "grad_norm": 0.496219664812088,
+ "learning_rate": 0.0006,
+ "loss": 6.212109565734863,
+ "step": 181
+ },
+ {
+ "epoch": 2.5312363477501094,
+ "grad_norm": 0.435173898935318,
+ "learning_rate": 0.0006,
+ "loss": 6.221210479736328,
+ "step": 182
+ },
+ {
+ "epoch": 2.54521625163827,
+ "grad_norm": 0.5364007949829102,
+ "learning_rate": 0.0006,
+ "loss": 6.217929840087891,
+ "step": 183
+ },
+ {
+ "epoch": 2.559196155526431,
+ "grad_norm": 0.5946390628814697,
+ "learning_rate": 0.0006,
+ "loss": 6.189267158508301,
+ "step": 184
+ },
+ {
+ "epoch": 2.5731760594145916,
+ "grad_norm": 0.41621312499046326,
+ "learning_rate": 0.0006,
+ "loss": 6.182415008544922,
+ "step": 185
+ },
+ {
+ "epoch": 2.5871559633027523,
+ "grad_norm": 0.5442072749137878,
+ "learning_rate": 0.0006,
+ "loss": 6.150757789611816,
+ "step": 186
+ },
+ {
+ "epoch": 2.601135867190913,
+ "grad_norm": 0.727843165397644,
+ "learning_rate": 0.0006,
+ "loss": 6.146082878112793,
+ "step": 187
+ },
+ {
+ "epoch": 2.615115771079074,
+ "grad_norm": 0.8898891806602478,
+ "learning_rate": 0.0006,
+ "loss": 6.190483093261719,
+ "step": 188
+ },
+ {
+ "epoch": 2.6290956749672345,
+ "grad_norm": 0.5173947215080261,
+ "learning_rate": 0.0006,
+ "loss": 6.151251792907715,
+ "step": 189
+ },
+ {
+ "epoch": 2.6430755788553952,
+ "grad_norm": 0.6476729512214661,
+ "learning_rate": 0.0006,
+ "loss": 6.154841423034668,
+ "step": 190
+ },
+ {
+ "epoch": 2.657055482743556,
+ "grad_norm": 0.3538810908794403,
+ "learning_rate": 0.0006,
+ "loss": 6.103879928588867,
+ "step": 191
+ },
+ {
+ "epoch": 2.6710353866317167,
+ "grad_norm": 0.4773508310317993,
+ "learning_rate": 0.0006,
+ "loss": 6.118101119995117,
+ "step": 192
+ },
+ {
+ "epoch": 2.6850152905198774,
+ "grad_norm": 0.29213786125183105,
+ "learning_rate": 0.0006,
+ "loss": 6.108916282653809,
+ "step": 193
+ },
+ {
+ "epoch": 2.6989951944080386,
+ "grad_norm": 0.40800607204437256,
+ "learning_rate": 0.0006,
+ "loss": 6.113438606262207,
+ "step": 194
+ },
+ {
+ "epoch": 2.7129750982961993,
+ "grad_norm": 0.31157299876213074,
+ "learning_rate": 0.0006,
+ "loss": 6.101809501647949,
+ "step": 195
+ },
+ {
+ "epoch": 2.72695500218436,
+ "grad_norm": 0.28660309314727783,
+ "learning_rate": 0.0006,
+ "loss": 6.075886249542236,
+ "step": 196
+ },
+ {
+ "epoch": 2.7409349060725208,
+ "grad_norm": 0.3810449540615082,
+ "learning_rate": 0.0006,
+ "loss": 6.053257942199707,
+ "step": 197
+ },
+ {
+ "epoch": 2.7549148099606815,
+ "grad_norm": 0.21741755306720734,
+ "learning_rate": 0.0006,
+ "loss": 6.013825416564941,
+ "step": 198
+ },
+ {
+ "epoch": 2.7688947138488422,
+ "grad_norm": 0.2777678966522217,
+ "learning_rate": 0.0006,
+ "loss": 6.054204940795898,
+ "step": 199
+ },
+ {
+ "epoch": 2.782874617737003,
+ "grad_norm": 0.28503066301345825,
+ "learning_rate": 0.0006,
+ "loss": 6.035628318786621,
+ "step": 200
+ },
+ {
+ "epoch": 2.7968545216251637,
+ "grad_norm": 0.41954755783081055,
+ "learning_rate": 0.0006,
+ "loss": 6.028354644775391,
+ "step": 201
+ },
+ {
+ "epoch": 2.810834425513325,
+ "grad_norm": 0.8785563111305237,
+ "learning_rate": 0.0006,
+ "loss": 6.055761337280273,
+ "step": 202
+ },
+ {
+ "epoch": 2.8248143294014856,
+ "grad_norm": 1.7459558248519897,
+ "learning_rate": 0.0006,
+ "loss": 6.11599588394165,
+ "step": 203
+ },
+ {
+ "epoch": 2.8387942332896463,
+ "grad_norm": 0.5725523233413696,
+ "learning_rate": 0.0006,
+ "loss": 6.024280548095703,
+ "step": 204
+ },
+ {
+ "epoch": 2.852774137177807,
+ "grad_norm": 0.5913150906562805,
+ "learning_rate": 0.0006,
+ "loss": 6.050281524658203,
+ "step": 205
+ },
+ {
+ "epoch": 2.8667540410659678,
+ "grad_norm": 0.5929384827613831,
+ "learning_rate": 0.0006,
+ "loss": 6.041121482849121,
+ "step": 206
+ },
+ {
+ "epoch": 2.8807339449541285,
+ "grad_norm": 0.5650724768638611,
+ "learning_rate": 0.0006,
+ "loss": 6.004258155822754,
+ "step": 207
+ },
+ {
+ "epoch": 2.894713848842289,
+ "grad_norm": 0.3420545756816864,
+ "learning_rate": 0.0006,
+ "loss": 5.983296871185303,
+ "step": 208
+ },
+ {
+ "epoch": 2.90869375273045,
+ "grad_norm": 0.2960914075374603,
+ "learning_rate": 0.0006,
+ "loss": 5.988578796386719,
+ "step": 209
+ },
+ {
+ "epoch": 2.9226736566186107,
+ "grad_norm": 0.3252662718296051,
+ "learning_rate": 0.0006,
+ "loss": 5.99103307723999,
+ "step": 210
+ },
+ {
+ "epoch": 2.9366535605067714,
+ "grad_norm": 0.4851132929325104,
+ "learning_rate": 0.0006,
+ "loss": 6.0028977394104,
+ "step": 211
+ },
+ {
+ "epoch": 2.950633464394932,
+ "grad_norm": 0.5639995336532593,
+ "learning_rate": 0.0006,
+ "loss": 5.965080738067627,
+ "step": 212
+ },
+ {
+ "epoch": 2.964613368283093,
+ "grad_norm": 0.4514601230621338,
+ "learning_rate": 0.0006,
+ "loss": 5.961450576782227,
+ "step": 213
+ },
+ {
+ "epoch": 2.9785932721712536,
+ "grad_norm": 0.5397921800613403,
+ "learning_rate": 0.0006,
+ "loss": 5.965290546417236,
+ "step": 214
+ },
+ {
+ "epoch": 2.9925731760594148,
+ "grad_norm": 0.4735587239265442,
+ "learning_rate": 0.0006,
+ "loss": 5.952754497528076,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.32061058282852173,
+ "learning_rate": 0.0006,
+ "loss": 5.961667060852051,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 6.8517303466796875,
+ "eval_runtime": 44.03,
+ "eval_samples_per_second": 55.462,
+ "eval_steps_per_second": 3.475,
+ "step": 216
+ },
+ {
+ "epoch": 3.0139799038881607,
+ "grad_norm": 0.3537784814834595,
+ "learning_rate": 0.0006,
+ "loss": 5.928008079528809,
+ "step": 217
+ },
+ {
+ "epoch": 3.0279598077763215,
+ "grad_norm": 0.40713080763816833,
+ "learning_rate": 0.0006,
+ "loss": 5.9150800704956055,
+ "step": 218
+ },
+ {
+ "epoch": 3.041939711664482,
+ "grad_norm": 0.2548826336860657,
+ "learning_rate": 0.0006,
+ "loss": 5.919757843017578,
+ "step": 219
+ },
+ {
+ "epoch": 3.055919615552643,
+ "grad_norm": 0.2818543016910553,
+ "learning_rate": 0.0006,
+ "loss": 5.913688659667969,
+ "step": 220
+ },
+ {
+ "epoch": 3.0698995194408036,
+ "grad_norm": 0.4196692705154419,
+ "learning_rate": 0.0006,
+ "loss": 5.8675336837768555,
+ "step": 221
+ },
+ {
+ "epoch": 3.083879423328965,
+ "grad_norm": 0.35272282361984253,
+ "learning_rate": 0.0006,
+ "loss": 5.878874778747559,
+ "step": 222
+ },
+ {
+ "epoch": 3.0978593272171255,
+ "grad_norm": 0.3254282772541046,
+ "learning_rate": 0.0006,
+ "loss": 5.8823041915893555,
+ "step": 223
+ },
+ {
+ "epoch": 3.1118392311052863,
+ "grad_norm": 0.4052561819553375,
+ "learning_rate": 0.0006,
+ "loss": 5.867744445800781,
+ "step": 224
+ },
+ {
+ "epoch": 3.125819134993447,
+ "grad_norm": 0.31246256828308105,
+ "learning_rate": 0.0006,
+ "loss": 5.886094093322754,
+ "step": 225
+ },
+ {
+ "epoch": 3.1397990388816077,
+ "grad_norm": 0.3479118347167969,
+ "learning_rate": 0.0006,
+ "loss": 5.850762367248535,
+ "step": 226
+ },
+ {
+ "epoch": 3.1537789427697684,
+ "grad_norm": 0.5037238597869873,
+ "learning_rate": 0.0006,
+ "loss": 5.844175815582275,
+ "step": 227
+ },
+ {
+ "epoch": 3.167758846657929,
+ "grad_norm": 0.6271815896034241,
+ "learning_rate": 0.0006,
+ "loss": 5.871790885925293,
+ "step": 228
+ },
+ {
+ "epoch": 3.18173875054609,
+ "grad_norm": 0.43838298320770264,
+ "learning_rate": 0.0006,
+ "loss": 5.844024658203125,
+ "step": 229
+ },
+ {
+ "epoch": 3.1957186544342506,
+ "grad_norm": 0.4755159616470337,
+ "learning_rate": 0.0006,
+ "loss": 5.846892356872559,
+ "step": 230
+ },
+ {
+ "epoch": 3.2096985583224114,
+ "grad_norm": 0.5229779481887817,
+ "learning_rate": 0.0006,
+ "loss": 5.827000617980957,
+ "step": 231
+ },
+ {
+ "epoch": 3.2236784622105725,
+ "grad_norm": 0.8264499306678772,
+ "learning_rate": 0.0006,
+ "loss": 5.867050647735596,
+ "step": 232
+ },
+ {
+ "epoch": 3.2376583660987333,
+ "grad_norm": 1.0607538223266602,
+ "learning_rate": 0.0006,
+ "loss": 5.877876281738281,
+ "step": 233
+ },
+ {
+ "epoch": 3.251638269986894,
+ "grad_norm": 0.7656505703926086,
+ "learning_rate": 0.0006,
+ "loss": 5.86760139465332,
+ "step": 234
+ },
+ {
+ "epoch": 3.2656181738750547,
+ "grad_norm": 0.7940183281898499,
+ "learning_rate": 0.0006,
+ "loss": 5.861355781555176,
+ "step": 235
+ },
+ {
+ "epoch": 3.2795980777632154,
+ "grad_norm": 0.45171424746513367,
+ "learning_rate": 0.0006,
+ "loss": 5.799808502197266,
+ "step": 236
+ },
+ {
+ "epoch": 3.293577981651376,
+ "grad_norm": 0.6174989342689514,
+ "learning_rate": 0.0006,
+ "loss": 5.8585920333862305,
+ "step": 237
+ },
+ {
+ "epoch": 3.307557885539537,
+ "grad_norm": 0.5341290831565857,
+ "learning_rate": 0.0006,
+ "loss": 5.8116044998168945,
+ "step": 238
+ },
+ {
+ "epoch": 3.3215377894276976,
+ "grad_norm": 0.3938343822956085,
+ "learning_rate": 0.0006,
+ "loss": 5.83797550201416,
+ "step": 239
+ },
+ {
+ "epoch": 3.3355176933158583,
+ "grad_norm": 0.5106972455978394,
+ "learning_rate": 0.0006,
+ "loss": 5.832303047180176,
+ "step": 240
+ },
+ {
+ "epoch": 3.349497597204019,
+ "grad_norm": 0.3791428506374359,
+ "learning_rate": 0.0006,
+ "loss": 5.794981956481934,
+ "step": 241
+ },
+ {
+ "epoch": 3.36347750109218,
+ "grad_norm": 0.42287978529930115,
+ "learning_rate": 0.0006,
+ "loss": 5.788144111633301,
+ "step": 242
+ },
+ {
+ "epoch": 3.3774574049803405,
+ "grad_norm": 0.27334436774253845,
+ "learning_rate": 0.0006,
+ "loss": 5.771070957183838,
+ "step": 243
+ },
+ {
+ "epoch": 3.3914373088685017,
+ "grad_norm": 0.2470470368862152,
+ "learning_rate": 0.0006,
+ "loss": 5.755998611450195,
+ "step": 244
+ },
+ {
+ "epoch": 3.4054172127566624,
+ "grad_norm": 0.3043915033340454,
+ "learning_rate": 0.0006,
+ "loss": 5.779492378234863,
+ "step": 245
+ },
+ {
+ "epoch": 3.419397116644823,
+ "grad_norm": 0.2960112988948822,
+ "learning_rate": 0.0006,
+ "loss": 5.750328063964844,
+ "step": 246
+ },
+ {
+ "epoch": 3.433377020532984,
+ "grad_norm": 0.3046723008155823,
+ "learning_rate": 0.0006,
+ "loss": 5.776517868041992,
+ "step": 247
+ },
+ {
+ "epoch": 3.4473569244211446,
+ "grad_norm": 0.22461780905723572,
+ "learning_rate": 0.0006,
+ "loss": 5.760989665985107,
+ "step": 248
+ },
+ {
+ "epoch": 3.4613368283093053,
+ "grad_norm": 0.24625757336616516,
+ "learning_rate": 0.0006,
+ "loss": 5.759706497192383,
+ "step": 249
+ },
+ {
+ "epoch": 3.475316732197466,
+ "grad_norm": 0.18207131326198578,
+ "learning_rate": 0.0006,
+ "loss": 5.747040748596191,
+ "step": 250
+ },
+ {
+ "epoch": 3.489296636085627,
+ "grad_norm": 0.16473834216594696,
+ "learning_rate": 0.0006,
+ "loss": 5.761577606201172,
+ "step": 251
+ },
+ {
+ "epoch": 3.5032765399737875,
+ "grad_norm": 0.25155773758888245,
+ "learning_rate": 0.0006,
+ "loss": 5.696502208709717,
+ "step": 252
+ },
+ {
+ "epoch": 3.5172564438619487,
+ "grad_norm": 0.24115674197673798,
+ "learning_rate": 0.0006,
+ "loss": 5.676957130432129,
+ "step": 253
+ },
+ {
+ "epoch": 3.5312363477501094,
+ "grad_norm": 0.40912172198295593,
+ "learning_rate": 0.0006,
+ "loss": 5.695090293884277,
+ "step": 254
+ },
+ {
+ "epoch": 3.54521625163827,
+ "grad_norm": 0.6727662682533264,
+ "learning_rate": 0.0006,
+ "loss": 5.722194671630859,
+ "step": 255
+ },
+ {
+ "epoch": 3.559196155526431,
+ "grad_norm": 0.8450719118118286,
+ "learning_rate": 0.0006,
+ "loss": 5.764680862426758,
+ "step": 256
+ },
+ {
+ "epoch": 3.5731760594145916,
+ "grad_norm": 0.9916183352470398,
+ "learning_rate": 0.0006,
+ "loss": 5.754530429840088,
+ "step": 257
+ },
+ {
+ "epoch": 3.5871559633027523,
+ "grad_norm": 1.041922688484192,
+ "learning_rate": 0.0006,
+ "loss": 5.781468391418457,
+ "step": 258
+ },
+ {
+ "epoch": 3.601135867190913,
+ "grad_norm": 0.972039520740509,
+ "learning_rate": 0.0006,
+ "loss": 5.760323524475098,
+ "step": 259
+ },
+ {
+ "epoch": 3.615115771079074,
+ "grad_norm": 0.6802462935447693,
+ "learning_rate": 0.0006,
+ "loss": 5.750064849853516,
+ "step": 260
+ },
+ {
+ "epoch": 3.6290956749672345,
+ "grad_norm": 0.48553529381752014,
+ "learning_rate": 0.0006,
+ "loss": 5.7464094161987305,
+ "step": 261
+ },
+ {
+ "epoch": 3.6430755788553952,
+ "grad_norm": 0.4066704213619232,
+ "learning_rate": 0.0006,
+ "loss": 5.719789505004883,
+ "step": 262
+ },
+ {
+ "epoch": 3.657055482743556,
+ "grad_norm": 0.3300860822200775,
+ "learning_rate": 0.0006,
+ "loss": 5.719920635223389,
+ "step": 263
+ },
+ {
+ "epoch": 3.6710353866317167,
+ "grad_norm": 0.3286679983139038,
+ "learning_rate": 0.0006,
+ "loss": 5.723465919494629,
+ "step": 264
+ },
+ {
+ "epoch": 3.6850152905198774,
+ "grad_norm": 0.27653390169143677,
+ "learning_rate": 0.0006,
+ "loss": 5.713820457458496,
+ "step": 265
+ },
+ {
+ "epoch": 3.6989951944080386,
+ "grad_norm": 0.26138055324554443,
+ "learning_rate": 0.0006,
+ "loss": 5.683221817016602,
+ "step": 266
+ },
+ {
+ "epoch": 3.7129750982961993,
+ "grad_norm": 0.23706290125846863,
+ "learning_rate": 0.0006,
+ "loss": 5.6896867752075195,
+ "step": 267
+ },
+ {
+ "epoch": 3.72695500218436,
+ "grad_norm": 0.2751729190349579,
+ "learning_rate": 0.0006,
+ "loss": 5.710301876068115,
+ "step": 268
+ },
+ {
+ "epoch": 3.7409349060725208,
+ "grad_norm": 0.255393385887146,
+ "learning_rate": 0.0006,
+ "loss": 5.687932968139648,
+ "step": 269
+ },
+ {
+ "epoch": 3.7549148099606815,
+ "grad_norm": 0.21453925967216492,
+ "learning_rate": 0.0006,
+ "loss": 5.68234395980835,
+ "step": 270
+ },
+ {
+ "epoch": 3.7688947138488422,
+ "grad_norm": 0.21771012246608734,
+ "learning_rate": 0.0006,
+ "loss": 5.683980464935303,
+ "step": 271
+ },
+ {
+ "epoch": 3.782874617737003,
+ "grad_norm": 0.1884593963623047,
+ "learning_rate": 0.0006,
+ "loss": 5.662779808044434,
+ "step": 272
+ },
+ {
+ "epoch": 3.7968545216251637,
+ "grad_norm": 0.20429612696170807,
+ "learning_rate": 0.0006,
+ "loss": 5.650941848754883,
+ "step": 273
+ },
+ {
+ "epoch": 3.810834425513325,
+ "grad_norm": 0.22586797177791595,
+ "learning_rate": 0.0006,
+ "loss": 5.639376640319824,
+ "step": 274
+ },
+ {
+ "epoch": 3.8248143294014856,
+ "grad_norm": 0.19651705026626587,
+ "learning_rate": 0.0006,
+ "loss": 5.612030029296875,
+ "step": 275
+ },
+ {
+ "epoch": 3.8387942332896463,
+ "grad_norm": 0.2125253826379776,
+ "learning_rate": 0.0006,
+ "loss": 5.622836589813232,
+ "step": 276
+ },
+ {
+ "epoch": 3.852774137177807,
+ "grad_norm": 0.2905234694480896,
+ "learning_rate": 0.0006,
+ "loss": 5.624594688415527,
+ "step": 277
+ },
+ {
+ "epoch": 3.8667540410659678,
+ "grad_norm": 0.2718426585197449,
+ "learning_rate": 0.0006,
+ "loss": 5.619892120361328,
+ "step": 278
+ },
+ {
+ "epoch": 3.8807339449541285,
+ "grad_norm": 0.26481127738952637,
+ "learning_rate": 0.0006,
+ "loss": 5.612496852874756,
+ "step": 279
+ },
+ {
+ "epoch": 3.894713848842289,
+ "grad_norm": 0.2876453399658203,
+ "learning_rate": 0.0006,
+ "loss": 5.59157133102417,
+ "step": 280
+ },
+ {
+ "epoch": 3.90869375273045,
+ "grad_norm": 0.22829554975032806,
+ "learning_rate": 0.0006,
+ "loss": 5.5884199142456055,
+ "step": 281
+ },
+ {
+ "epoch": 3.9226736566186107,
+ "grad_norm": 0.22852344810962677,
+ "learning_rate": 0.0006,
+ "loss": 5.618719100952148,
+ "step": 282
+ },
+ {
+ "epoch": 3.9366535605067714,
+ "grad_norm": 0.37366563081741333,
+ "learning_rate": 0.0006,
+ "loss": 5.611738204956055,
+ "step": 283
+ },
+ {
+ "epoch": 3.950633464394932,
+ "grad_norm": 0.5650382041931152,
+ "learning_rate": 0.0006,
+ "loss": 5.606371879577637,
+ "step": 284
+ },
+ {
+ "epoch": 3.964613368283093,
+ "grad_norm": 0.5960066914558411,
+ "learning_rate": 0.0006,
+ "loss": 5.595022201538086,
+ "step": 285
+ },
+ {
+ "epoch": 3.9785932721712536,
+ "grad_norm": 0.3561663031578064,
+ "learning_rate": 0.0006,
+ "loss": 5.581035614013672,
+ "step": 286
+ },
+ {
+ "epoch": 3.9925731760594148,
+ "grad_norm": 0.44699913263320923,
+ "learning_rate": 0.0006,
+ "loss": 5.568033218383789,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.42783990502357483,
+ "learning_rate": 0.0006,
+ "loss": 5.571993827819824,
+ "step": 288
+ },
+ {
+ "epoch": 4.0,
+ "eval_loss": 6.349016189575195,
+ "eval_runtime": 44.3326,
+ "eval_samples_per_second": 55.084,
+ "eval_steps_per_second": 3.451,
+ "step": 288
+ },
+ {
+ "epoch": 4.013979903888161,
+ "grad_norm": 0.41305896639823914,
+ "learning_rate": 0.0006,
+ "loss": 5.562954902648926,
+ "step": 289
+ },
+ {
+ "epoch": 4.0279598077763215,
+ "grad_norm": 0.3966459035873413,
+ "learning_rate": 0.0006,
+ "loss": 5.5671916007995605,
+ "step": 290
+ },
+ {
+ "epoch": 4.041939711664482,
+ "grad_norm": 0.4846104085445404,
+ "learning_rate": 0.0006,
+ "loss": 5.548027038574219,
+ "step": 291
+ },
+ {
+ "epoch": 4.055919615552643,
+ "grad_norm": 0.5916333794593811,
+ "learning_rate": 0.0006,
+ "loss": 5.5900068283081055,
+ "step": 292
+ },
+ {
+ "epoch": 4.069899519440804,
+ "grad_norm": 0.5973889231681824,
+ "learning_rate": 0.0006,
+ "loss": 5.537594795227051,
+ "step": 293
+ },
+ {
+ "epoch": 4.083879423328964,
+ "grad_norm": 0.4190494418144226,
+ "learning_rate": 0.0006,
+ "loss": 5.534749984741211,
+ "step": 294
+ },
+ {
+ "epoch": 4.097859327217125,
+ "grad_norm": 0.5956901907920837,
+ "learning_rate": 0.0006,
+ "loss": 5.554540634155273,
+ "step": 295
+ },
+ {
+ "epoch": 4.111839231105286,
+ "grad_norm": 0.8257920742034912,
+ "learning_rate": 0.0006,
+ "loss": 5.5728068351745605,
+ "step": 296
+ },
+ {
+ "epoch": 4.1258191349934465,
+ "grad_norm": 0.7241750955581665,
+ "learning_rate": 0.0006,
+ "loss": 5.5643815994262695,
+ "step": 297
+ },
+ {
+ "epoch": 4.139799038881607,
+ "grad_norm": 0.45730507373809814,
+ "learning_rate": 0.0006,
+ "loss": 5.554225921630859,
+ "step": 298
+ },
+ {
+ "epoch": 4.153778942769769,
+ "grad_norm": 0.5166977643966675,
+ "learning_rate": 0.0006,
+ "loss": 5.540790557861328,
+ "step": 299
+ },
+ {
+ "epoch": 4.16775884665793,
+ "grad_norm": 0.433237761259079,
+ "learning_rate": 0.0006,
+ "loss": 5.536884784698486,
+ "step": 300
+ },
+ {
+ "epoch": 4.18173875054609,
+ "grad_norm": 0.3369830250740051,
+ "learning_rate": 0.0006,
+ "loss": 5.532837867736816,
+ "step": 301
+ },
+ {
+ "epoch": 4.195718654434251,
+ "grad_norm": 0.33091458678245544,
+ "learning_rate": 0.0006,
+ "loss": 5.547643661499023,
+ "step": 302
+ },
+ {
+ "epoch": 4.209698558322412,
+ "grad_norm": 0.36462724208831787,
+ "learning_rate": 0.0006,
+ "loss": 5.525021076202393,
+ "step": 303
+ },
+ {
+ "epoch": 4.2236784622105725,
+ "grad_norm": 0.3342771530151367,
+ "learning_rate": 0.0006,
+ "loss": 5.512082099914551,
+ "step": 304
+ },
+ {
+ "epoch": 4.237658366098733,
+ "grad_norm": 0.26784762740135193,
+ "learning_rate": 0.0006,
+ "loss": 5.488072395324707,
+ "step": 305
+ },
+ {
+ "epoch": 4.251638269986894,
+ "grad_norm": 0.25986987352371216,
+ "learning_rate": 0.0006,
+ "loss": 5.4960455894470215,
+ "step": 306
+ },
+ {
+ "epoch": 4.265618173875055,
+ "grad_norm": 0.24595795571804047,
+ "learning_rate": 0.0006,
+ "loss": 5.513367176055908,
+ "step": 307
+ },
+ {
+ "epoch": 4.279598077763215,
+ "grad_norm": 0.2224857211112976,
+ "learning_rate": 0.0006,
+ "loss": 5.465205192565918,
+ "step": 308
+ },
+ {
+ "epoch": 4.293577981651376,
+ "grad_norm": 0.26799243688583374,
+ "learning_rate": 0.0006,
+ "loss": 5.476632118225098,
+ "step": 309
+ },
+ {
+ "epoch": 4.307557885539537,
+ "grad_norm": 0.20443417131900787,
+ "learning_rate": 0.0006,
+ "loss": 5.442601203918457,
+ "step": 310
+ },
+ {
+ "epoch": 4.321537789427698,
+ "grad_norm": 0.2275059074163437,
+ "learning_rate": 0.0006,
+ "loss": 5.453519344329834,
+ "step": 311
+ },
+ {
+ "epoch": 4.335517693315858,
+ "grad_norm": 0.2860901951789856,
+ "learning_rate": 0.0006,
+ "loss": 5.439424514770508,
+ "step": 312
+ },
+ {
+ "epoch": 4.349497597204019,
+ "grad_norm": 0.3378142714500427,
+ "learning_rate": 0.0006,
+ "loss": 5.476953983306885,
+ "step": 313
+ },
+ {
+ "epoch": 4.36347750109218,
+ "grad_norm": 0.3487110733985901,
+ "learning_rate": 0.0006,
+ "loss": 5.47003698348999,
+ "step": 314
+ },
+ {
+ "epoch": 4.3774574049803405,
+ "grad_norm": 0.3655227720737457,
+ "learning_rate": 0.0006,
+ "loss": 5.454250812530518,
+ "step": 315
+ },
+ {
+ "epoch": 4.391437308868501,
+ "grad_norm": 0.3754786252975464,
+ "learning_rate": 0.0006,
+ "loss": 5.475249290466309,
+ "step": 316
+ },
+ {
+ "epoch": 4.405417212756662,
+ "grad_norm": 0.42494088411331177,
+ "learning_rate": 0.0006,
+ "loss": 5.4552459716796875,
+ "step": 317
+ },
+ {
+ "epoch": 4.419397116644823,
+ "grad_norm": 0.4914703667163849,
+ "learning_rate": 0.0006,
+ "loss": 5.431845188140869,
+ "step": 318
+ },
+ {
+ "epoch": 4.433377020532983,
+ "grad_norm": 0.42470860481262207,
+ "learning_rate": 0.0006,
+ "loss": 5.454581260681152,
+ "step": 319
+ },
+ {
+ "epoch": 4.447356924421145,
+ "grad_norm": 0.3828011155128479,
+ "learning_rate": 0.0006,
+ "loss": 5.435178756713867,
+ "step": 320
+ },
+ {
+ "epoch": 4.461336828309306,
+ "grad_norm": 0.47256892919540405,
+ "learning_rate": 0.0006,
+ "loss": 5.428861618041992,
+ "step": 321
+ },
+ {
+ "epoch": 4.4753167321974665,
+ "grad_norm": 0.5665146708488464,
+ "learning_rate": 0.0006,
+ "loss": 5.424633026123047,
+ "step": 322
+ },
+ {
+ "epoch": 4.489296636085627,
+ "grad_norm": 0.48146721720695496,
+ "learning_rate": 0.0006,
+ "loss": 5.4577860832214355,
+ "step": 323
+ },
+ {
+ "epoch": 4.503276539973788,
+ "grad_norm": 0.3378535509109497,
+ "learning_rate": 0.0006,
+ "loss": 5.422727108001709,
+ "step": 324
+ },
+ {
+ "epoch": 4.517256443861949,
+ "grad_norm": 0.41981473565101624,
+ "learning_rate": 0.0006,
+ "loss": 5.418993949890137,
+ "step": 325
+ },
+ {
+ "epoch": 4.531236347750109,
+ "grad_norm": 0.39389684796333313,
+ "learning_rate": 0.0006,
+ "loss": 5.41835880279541,
+ "step": 326
+ },
+ {
+ "epoch": 4.54521625163827,
+ "grad_norm": 0.5912176370620728,
+ "learning_rate": 0.0006,
+ "loss": 5.40073299407959,
+ "step": 327
+ },
+ {
+ "epoch": 4.559196155526431,
+ "grad_norm": 0.6877487897872925,
+ "learning_rate": 0.0006,
+ "loss": 5.445301055908203,
+ "step": 328
+ },
+ {
+ "epoch": 4.573176059414592,
+ "grad_norm": 0.580555260181427,
+ "learning_rate": 0.0006,
+ "loss": 5.431069374084473,
+ "step": 329
+ },
+ {
+ "epoch": 4.587155963302752,
+ "grad_norm": 0.5974457859992981,
+ "learning_rate": 0.0006,
+ "loss": 5.422694206237793,
+ "step": 330
+ },
+ {
+ "epoch": 4.601135867190913,
+ "grad_norm": 0.722481906414032,
+ "learning_rate": 0.0006,
+ "loss": 5.447752952575684,
+ "step": 331
+ },
+ {
+ "epoch": 4.615115771079074,
+ "grad_norm": 0.7687886953353882,
+ "learning_rate": 0.0006,
+ "loss": 5.437956809997559,
+ "step": 332
+ },
+ {
+ "epoch": 4.6290956749672345,
+ "grad_norm": 0.7368173003196716,
+ "learning_rate": 0.0006,
+ "loss": 5.4367241859436035,
+ "step": 333
+ },
+ {
+ "epoch": 4.643075578855395,
+ "grad_norm": 0.6650524139404297,
+ "learning_rate": 0.0006,
+ "loss": 5.4288434982299805,
+ "step": 334
+ },
+ {
+ "epoch": 4.657055482743556,
+ "grad_norm": 0.4997614920139313,
+ "learning_rate": 0.0006,
+ "loss": 5.412769317626953,
+ "step": 335
+ },
+ {
+ "epoch": 4.671035386631717,
+ "grad_norm": 0.44208982586860657,
+ "learning_rate": 0.0006,
+ "loss": 5.42405366897583,
+ "step": 336
+ },
+ {
+ "epoch": 4.685015290519877,
+ "grad_norm": 0.39510273933410645,
+ "learning_rate": 0.0006,
+ "loss": 5.402547836303711,
+ "step": 337
+ },
+ {
+ "epoch": 4.698995194408038,
+ "grad_norm": 0.44970476627349854,
+ "learning_rate": 0.0006,
+ "loss": 5.377168655395508,
+ "step": 338
+ },
+ {
+ "epoch": 4.712975098296199,
+ "grad_norm": 0.3902331590652466,
+ "learning_rate": 0.0006,
+ "loss": 5.401622772216797,
+ "step": 339
+ },
+ {
+ "epoch": 4.72695500218436,
+ "grad_norm": 0.33485135436058044,
+ "learning_rate": 0.0006,
+ "loss": 5.397945880889893,
+ "step": 340
+ },
+ {
+ "epoch": 4.740934906072521,
+ "grad_norm": 0.29062309861183167,
+ "learning_rate": 0.0006,
+ "loss": 5.356175422668457,
+ "step": 341
+ },
+ {
+ "epoch": 4.754914809960681,
+ "grad_norm": 0.23617377877235413,
+ "learning_rate": 0.0006,
+ "loss": 5.388517379760742,
+ "step": 342
+ },
+ {
+ "epoch": 4.768894713848843,
+ "grad_norm": 0.2704737186431885,
+ "learning_rate": 0.0006,
+ "loss": 5.3746137619018555,
+ "step": 343
+ },
+ {
+ "epoch": 4.782874617737003,
+ "grad_norm": 0.20488551259040833,
+ "learning_rate": 0.0006,
+ "loss": 5.3754472732543945,
+ "step": 344
+ },
+ {
+ "epoch": 4.796854521625164,
+ "grad_norm": 0.2007082849740982,
+ "learning_rate": 0.0006,
+ "loss": 5.3538618087768555,
+ "step": 345
+ },
+ {
+ "epoch": 4.810834425513325,
+ "grad_norm": 0.21732935309410095,
+ "learning_rate": 0.0006,
+ "loss": 5.351774215698242,
+ "step": 346
+ },
+ {
+ "epoch": 4.824814329401486,
+ "grad_norm": 0.1944841742515564,
+ "learning_rate": 0.0006,
+ "loss": 5.357545852661133,
+ "step": 347
+ },
+ {
+ "epoch": 4.838794233289646,
+ "grad_norm": 0.1953933835029602,
+ "learning_rate": 0.0006,
+ "loss": 5.321681022644043,
+ "step": 348
+ },
+ {
+ "epoch": 4.852774137177807,
+ "grad_norm": 0.1743433028459549,
+ "learning_rate": 0.0006,
+ "loss": 5.340302467346191,
+ "step": 349
+ },
+ {
+ "epoch": 4.866754041065968,
+ "grad_norm": 0.19655466079711914,
+ "learning_rate": 0.0006,
+ "loss": 5.325471878051758,
+ "step": 350
+ },
+ {
+ "epoch": 4.8807339449541285,
+ "grad_norm": 0.15761791169643402,
+ "learning_rate": 0.0006,
+ "loss": 5.3453240394592285,
+ "step": 351
+ },
+ {
+ "epoch": 4.894713848842289,
+ "grad_norm": 0.19164425134658813,
+ "learning_rate": 0.0006,
+ "loss": 5.315583229064941,
+ "step": 352
+ },
+ {
+ "epoch": 4.90869375273045,
+ "grad_norm": 0.28084540367126465,
+ "learning_rate": 0.0006,
+ "loss": 5.309171676635742,
+ "step": 353
+ },
+ {
+ "epoch": 4.922673656618611,
+ "grad_norm": 0.4681853652000427,
+ "learning_rate": 0.0006,
+ "loss": 5.318211078643799,
+ "step": 354
+ },
+ {
+ "epoch": 4.936653560506771,
+ "grad_norm": 0.6417295932769775,
+ "learning_rate": 0.0006,
+ "loss": 5.309263706207275,
+ "step": 355
+ },
+ {
+ "epoch": 4.950633464394932,
+ "grad_norm": 0.501312792301178,
+ "learning_rate": 0.0006,
+ "loss": 5.321534156799316,
+ "step": 356
+ },
+ {
+ "epoch": 4.964613368283093,
+ "grad_norm": 0.47502145171165466,
+ "learning_rate": 0.0006,
+ "loss": 5.323659896850586,
+ "step": 357
+ },
+ {
+ "epoch": 4.978593272171254,
+ "grad_norm": 0.5366594791412354,
+ "learning_rate": 0.0006,
+ "loss": 5.327367782592773,
+ "step": 358
+ },
+ {
+ "epoch": 4.992573176059414,
+ "grad_norm": 0.6986395120620728,
+ "learning_rate": 0.0006,
+ "loss": 5.311097145080566,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.6626625657081604,
+ "learning_rate": 0.0006,
+ "loss": 5.337558269500732,
+ "step": 360
+ },
+ {
+ "epoch": 5.0,
+ "eval_loss": 5.929230690002441,
+ "eval_runtime": 44.5268,
+ "eval_samples_per_second": 54.843,
+ "eval_steps_per_second": 3.436,
+ "step": 360
+ },
+ {
+ "epoch": 5.013979903888161,
+ "grad_norm": 0.7383704781532288,
+ "learning_rate": 0.0006,
+ "loss": 5.315563678741455,
+ "step": 361
+ },
+ {
+ "epoch": 5.0279598077763215,
+ "grad_norm": 0.7730138301849365,
+ "learning_rate": 0.0006,
+ "loss": 5.324905872344971,
+ "step": 362
+ },
+ {
+ "epoch": 5.041939711664482,
+ "grad_norm": 0.8170825839042664,
+ "learning_rate": 0.0006,
+ "loss": 5.350251197814941,
+ "step": 363
+ },
+ {
+ "epoch": 5.055919615552643,
+ "grad_norm": 0.6950958371162415,
+ "learning_rate": 0.0006,
+ "loss": 5.338744163513184,
+ "step": 364
+ },
+ {
+ "epoch": 5.069899519440804,
+ "grad_norm": 0.5582894086837769,
+ "learning_rate": 0.0006,
+ "loss": 5.340539932250977,
+ "step": 365
+ },
+ {
+ "epoch": 5.083879423328964,
+ "grad_norm": 0.4772159159183502,
+ "learning_rate": 0.0006,
+ "loss": 5.344161033630371,
+ "step": 366
+ },
+ {
+ "epoch": 5.097859327217125,
+ "grad_norm": 0.5432839393615723,
+ "learning_rate": 0.0006,
+ "loss": 5.312403678894043,
+ "step": 367
+ },
+ {
+ "epoch": 5.111839231105286,
+ "grad_norm": 0.4944784641265869,
+ "learning_rate": 0.0006,
+ "loss": 5.30281925201416,
+ "step": 368
+ },
+ {
+ "epoch": 5.1258191349934465,
+ "grad_norm": 0.4298315942287445,
+ "learning_rate": 0.0006,
+ "loss": 5.29564094543457,
+ "step": 369
+ },
+ {
+ "epoch": 5.139799038881607,
+ "grad_norm": 0.349889874458313,
+ "learning_rate": 0.0006,
+ "loss": 5.287062644958496,
+ "step": 370
+ },
+ {
+ "epoch": 5.153778942769769,
+ "grad_norm": 0.2823719084262848,
+ "learning_rate": 0.0006,
+ "loss": 5.28826904296875,
+ "step": 371
+ },
+ {
+ "epoch": 5.16775884665793,
+ "grad_norm": 0.32975050806999207,
+ "learning_rate": 0.0006,
+ "loss": 5.256399631500244,
+ "step": 372
+ },
+ {
+ "epoch": 5.18173875054609,
+ "grad_norm": 0.2963952124118805,
+ "learning_rate": 0.0006,
+ "loss": 5.273757457733154,
+ "step": 373
+ },
+ {
+ "epoch": 5.195718654434251,
+ "grad_norm": 0.21345984935760498,
+ "learning_rate": 0.0006,
+ "loss": 5.274978160858154,
+ "step": 374
+ },
+ {
+ "epoch": 5.209698558322412,
+ "grad_norm": 0.2363101840019226,
+ "learning_rate": 0.0006,
+ "loss": 5.261585235595703,
+ "step": 375
+ },
+ {
+ "epoch": 5.2236784622105725,
+ "grad_norm": 0.19626963138580322,
+ "learning_rate": 0.0006,
+ "loss": 5.259700298309326,
+ "step": 376
+ },
+ {
+ "epoch": 5.237658366098733,
+ "grad_norm": 0.21083571016788483,
+ "learning_rate": 0.0006,
+ "loss": 5.233585357666016,
+ "step": 377
+ },
+ {
+ "epoch": 5.251638269986894,
+ "grad_norm": 0.2273513823747635,
+ "learning_rate": 0.0006,
+ "loss": 5.231740474700928,
+ "step": 378
+ },
+ {
+ "epoch": 5.265618173875055,
+ "grad_norm": 0.18299247324466705,
+ "learning_rate": 0.0006,
+ "loss": 5.251256465911865,
+ "step": 379
+ },
+ {
+ "epoch": 5.279598077763215,
+ "grad_norm": 0.19578224420547485,
+ "learning_rate": 0.0006,
+ "loss": 5.230329513549805,
+ "step": 380
+ },
+ {
+ "epoch": 5.293577981651376,
+ "grad_norm": 0.20308879017829895,
+ "learning_rate": 0.0006,
+ "loss": 5.243951797485352,
+ "step": 381
+ },
+ {
+ "epoch": 5.307557885539537,
+ "grad_norm": 0.21053212881088257,
+ "learning_rate": 0.0006,
+ "loss": 5.210272789001465,
+ "step": 382
+ },
+ {
+ "epoch": 5.321537789427698,
+ "grad_norm": 0.21852520108222961,
+ "learning_rate": 0.0006,
+ "loss": 5.215418815612793,
+ "step": 383
+ },
+ {
+ "epoch": 5.335517693315858,
+ "grad_norm": 0.24872010946273804,
+ "learning_rate": 0.0006,
+ "loss": 5.225139617919922,
+ "step": 384
+ },
+ {
+ "epoch": 5.349497597204019,
+ "grad_norm": 0.27780187129974365,
+ "learning_rate": 0.0006,
+ "loss": 5.241010665893555,
+ "step": 385
+ },
+ {
+ "epoch": 5.36347750109218,
+ "grad_norm": 0.261767715215683,
+ "learning_rate": 0.0006,
+ "loss": 5.230723857879639,
+ "step": 386
+ },
+ {
+ "epoch": 5.3774574049803405,
+ "grad_norm": 0.2111261785030365,
+ "learning_rate": 0.0006,
+ "loss": 5.1848602294921875,
+ "step": 387
+ },
+ {
+ "epoch": 5.391437308868501,
+ "grad_norm": 0.24325387179851532,
+ "learning_rate": 0.0006,
+ "loss": 5.180911064147949,
+ "step": 388
+ },
+ {
+ "epoch": 5.405417212756662,
+ "grad_norm": 0.19542962312698364,
+ "learning_rate": 0.0006,
+ "loss": 5.189907073974609,
+ "step": 389
+ },
+ {
+ "epoch": 5.419397116644823,
+ "grad_norm": 0.20489346981048584,
+ "learning_rate": 0.0006,
+ "loss": 5.184634208679199,
+ "step": 390
+ },
+ {
+ "epoch": 5.433377020532983,
+ "grad_norm": 0.2753409147262573,
+ "learning_rate": 0.0006,
+ "loss": 5.190083026885986,
+ "step": 391
+ },
+ {
+ "epoch": 5.447356924421145,
+ "grad_norm": 0.3758019208908081,
+ "learning_rate": 0.0006,
+ "loss": 5.189423561096191,
+ "step": 392
+ },
+ {
+ "epoch": 5.461336828309306,
+ "grad_norm": 0.4425095021724701,
+ "learning_rate": 0.0006,
+ "loss": 5.17152214050293,
+ "step": 393
+ },
+ {
+ "epoch": 5.4753167321974665,
+ "grad_norm": 0.39721858501434326,
+ "learning_rate": 0.0006,
+ "loss": 5.189178466796875,
+ "step": 394
+ },
+ {
+ "epoch": 5.489296636085627,
+ "grad_norm": 0.43441957235336304,
+ "learning_rate": 0.0006,
+ "loss": 5.1823577880859375,
+ "step": 395
+ },
+ {
+ "epoch": 5.503276539973788,
+ "grad_norm": 0.3583861291408539,
+ "learning_rate": 0.0006,
+ "loss": 5.160187721252441,
+ "step": 396
+ },
+ {
+ "epoch": 5.517256443861949,
+ "grad_norm": 0.323290079832077,
+ "learning_rate": 0.0006,
+ "loss": 5.113046646118164,
+ "step": 397
+ },
+ {
+ "epoch": 5.531236347750109,
+ "grad_norm": 0.3049418330192566,
+ "learning_rate": 0.0006,
+ "loss": 5.172209739685059,
+ "step": 398
+ },
+ {
+ "epoch": 5.54521625163827,
+ "grad_norm": 0.3253744840621948,
+ "learning_rate": 0.0006,
+ "loss": 5.1970720291137695,
+ "step": 399
+ },
+ {
+ "epoch": 5.559196155526431,
+ "grad_norm": 0.3232555091381073,
+ "learning_rate": 0.0006,
+ "loss": 5.173195838928223,
+ "step": 400
+ },
+ {
+ "epoch": 5.573176059414592,
+ "grad_norm": 0.33751845359802246,
+ "learning_rate": 0.0006,
+ "loss": 5.137526988983154,
+ "step": 401
+ },
+ {
+ "epoch": 5.587155963302752,
+ "grad_norm": 0.45970913767814636,
+ "learning_rate": 0.0006,
+ "loss": 5.123377799987793,
+ "step": 402
+ },
+ {
+ "epoch": 5.601135867190913,
+ "grad_norm": 0.5383784770965576,
+ "learning_rate": 0.0006,
+ "loss": 5.154180526733398,
+ "step": 403
+ },
+ {
+ "epoch": 5.615115771079074,
+ "grad_norm": 0.45765912532806396,
+ "learning_rate": 0.0006,
+ "loss": 5.1485209465026855,
+ "step": 404
+ },
+ {
+ "epoch": 5.6290956749672345,
+ "grad_norm": 0.5079503059387207,
+ "learning_rate": 0.0006,
+ "loss": 5.158293724060059,
+ "step": 405
+ },
+ {
+ "epoch": 5.643075578855395,
+ "grad_norm": 0.4860183894634247,
+ "learning_rate": 0.0006,
+ "loss": 5.1610212326049805,
+ "step": 406
+ },
+ {
+ "epoch": 5.657055482743556,
+ "grad_norm": 0.4065648913383484,
+ "learning_rate": 0.0006,
+ "loss": 5.1260786056518555,
+ "step": 407
+ },
+ {
+ "epoch": 5.671035386631717,
+ "grad_norm": 0.39606142044067383,
+ "learning_rate": 0.0006,
+ "loss": 5.1598711013793945,
+ "step": 408
+ },
+ {
+ "epoch": 5.685015290519877,
+ "grad_norm": 0.4705151319503784,
+ "learning_rate": 0.0006,
+ "loss": 5.166455268859863,
+ "step": 409
+ },
+ {
+ "epoch": 5.698995194408038,
+ "grad_norm": 0.5040799379348755,
+ "learning_rate": 0.0006,
+ "loss": 5.1408209800720215,
+ "step": 410
+ },
+ {
+ "epoch": 5.712975098296199,
+ "grad_norm": 0.5012556910514832,
+ "learning_rate": 0.0006,
+ "loss": 5.144109725952148,
+ "step": 411
+ },
+ {
+ "epoch": 5.72695500218436,
+ "grad_norm": 0.44301411509513855,
+ "learning_rate": 0.0006,
+ "loss": 5.155509948730469,
+ "step": 412
+ },
+ {
+ "epoch": 5.740934906072521,
+ "grad_norm": 0.36632269620895386,
+ "learning_rate": 0.0006,
+ "loss": 5.123111248016357,
+ "step": 413
+ },
+ {
+ "epoch": 5.754914809960681,
+ "grad_norm": 0.2980524003505707,
+ "learning_rate": 0.0006,
+ "loss": 5.1355719566345215,
+ "step": 414
+ },
+ {
+ "epoch": 5.768894713848843,
+ "grad_norm": 0.3441782295703888,
+ "learning_rate": 0.0006,
+ "loss": 5.132327079772949,
+ "step": 415
+ },
+ {
+ "epoch": 5.782874617737003,
+ "grad_norm": 0.4150780737400055,
+ "learning_rate": 0.0006,
+ "loss": 5.148543357849121,
+ "step": 416
+ },
+ {
+ "epoch": 5.796854521625164,
+ "grad_norm": 0.48417383432388306,
+ "learning_rate": 0.0006,
+ "loss": 5.104989528656006,
+ "step": 417
+ },
+ {
+ "epoch": 5.810834425513325,
+ "grad_norm": 0.3216031491756439,
+ "learning_rate": 0.0006,
+ "loss": 5.0926127433776855,
+ "step": 418
+ },
+ {
+ "epoch": 5.824814329401486,
+ "grad_norm": 0.2821158468723297,
+ "learning_rate": 0.0006,
+ "loss": 5.112299919128418,
+ "step": 419
+ },
+ {
+ "epoch": 5.838794233289646,
+ "grad_norm": 0.29821011424064636,
+ "learning_rate": 0.0006,
+ "loss": 5.091662406921387,
+ "step": 420
+ },
+ {
+ "epoch": 5.852774137177807,
+ "grad_norm": 0.30570563673973083,
+ "learning_rate": 0.0006,
+ "loss": 5.137539863586426,
+ "step": 421
+ },
+ {
+ "epoch": 5.866754041065968,
+ "grad_norm": 0.4029594957828522,
+ "learning_rate": 0.0006,
+ "loss": 5.112751007080078,
+ "step": 422
+ },
+ {
+ "epoch": 5.8807339449541285,
+ "grad_norm": 0.3878514766693115,
+ "learning_rate": 0.0006,
+ "loss": 5.094973564147949,
+ "step": 423
+ },
+ {
+ "epoch": 5.894713848842289,
+ "grad_norm": 0.31936126947402954,
+ "learning_rate": 0.0006,
+ "loss": 5.081070899963379,
+ "step": 424
+ },
+ {
+ "epoch": 5.90869375273045,
+ "grad_norm": 0.3309082090854645,
+ "learning_rate": 0.0006,
+ "loss": 5.06803560256958,
+ "step": 425
+ },
+ {
+ "epoch": 5.922673656618611,
+ "grad_norm": 0.27830439805984497,
+ "learning_rate": 0.0006,
+ "loss": 5.044766426086426,
+ "step": 426
+ },
+ {
+ "epoch": 5.936653560506771,
+ "grad_norm": 0.3301011919975281,
+ "learning_rate": 0.0006,
+ "loss": 5.093942165374756,
+ "step": 427
+ },
+ {
+ "epoch": 5.950633464394932,
+ "grad_norm": 0.40845948457717896,
+ "learning_rate": 0.0006,
+ "loss": 5.0889458656311035,
+ "step": 428
+ },
+ {
+ "epoch": 5.964613368283093,
+ "grad_norm": 0.4412153959274292,
+ "learning_rate": 0.0006,
+ "loss": 5.064834117889404,
+ "step": 429
+ },
+ {
+ "epoch": 5.978593272171254,
+ "grad_norm": 0.3592590093612671,
+ "learning_rate": 0.0006,
+ "loss": 5.066648006439209,
+ "step": 430
+ },
+ {
+ "epoch": 5.992573176059414,
+ "grad_norm": 0.3952840268611908,
+ "learning_rate": 0.0006,
+ "loss": 5.066549301147461,
+ "step": 431
+ },
+ {
+ "epoch": 6.0,
+ "grad_norm": 0.38878682255744934,
+ "learning_rate": 0.0006,
+ "loss": 5.0354323387146,
+ "step": 432
+ },
+ {
+ "epoch": 6.0,
+ "eval_loss": 5.473907947540283,
+ "eval_runtime": 44.5121,
+ "eval_samples_per_second": 54.861,
+ "eval_steps_per_second": 3.437,
+ "step": 432
+ },
+ {
+ "epoch": 6.013979903888161,
+ "grad_norm": 0.42730140686035156,
+ "learning_rate": 0.0006,
+ "loss": 5.048557281494141,
+ "step": 433
+ },
+ {
+ "epoch": 6.0279598077763215,
+ "grad_norm": 0.32713913917541504,
+ "learning_rate": 0.0006,
+ "loss": 5.041255950927734,
+ "step": 434
+ },
+ {
+ "epoch": 6.041939711664482,
+ "grad_norm": 0.32520365715026855,
+ "learning_rate": 0.0006,
+ "loss": 5.043124198913574,
+ "step": 435
+ },
+ {
+ "epoch": 6.055919615552643,
+ "grad_norm": 0.2941839098930359,
+ "learning_rate": 0.0006,
+ "loss": 5.0407304763793945,
+ "step": 436
+ },
+ {
+ "epoch": 6.069899519440804,
+ "grad_norm": 0.3088819682598114,
+ "learning_rate": 0.0006,
+ "loss": 5.020771026611328,
+ "step": 437
+ },
+ {
+ "epoch": 6.083879423328964,
+ "grad_norm": 0.34334254264831543,
+ "learning_rate": 0.0006,
+ "loss": 5.0260009765625,
+ "step": 438
+ },
+ {
+ "epoch": 6.097859327217125,
+ "grad_norm": 0.33016136288642883,
+ "learning_rate": 0.0006,
+ "loss": 4.994412899017334,
+ "step": 439
+ },
+ {
+ "epoch": 6.111839231105286,
+ "grad_norm": 0.2527366280555725,
+ "learning_rate": 0.0006,
+ "loss": 4.997830390930176,
+ "step": 440
+ },
+ {
+ "epoch": 6.1258191349934465,
+ "grad_norm": 0.24742509424686432,
+ "learning_rate": 0.0006,
+ "loss": 5.017087936401367,
+ "step": 441
+ },
+ {
+ "epoch": 6.139799038881607,
+ "grad_norm": 0.22578303515911102,
+ "learning_rate": 0.0006,
+ "loss": 5.000683784484863,
+ "step": 442
+ },
+ {
+ "epoch": 6.153778942769769,
+ "grad_norm": 0.21213896572589874,
+ "learning_rate": 0.0006,
+ "loss": 4.993280410766602,
+ "step": 443
+ },
+ {
+ "epoch": 6.16775884665793,
+ "grad_norm": 0.22559592127799988,
+ "learning_rate": 0.0006,
+ "loss": 5.005735874176025,
+ "step": 444
+ },
+ {
+ "epoch": 6.18173875054609,
+ "grad_norm": 0.18574322760105133,
+ "learning_rate": 0.0006,
+ "loss": 4.996601104736328,
+ "step": 445
+ },
+ {
+ "epoch": 6.195718654434251,
+ "grad_norm": 0.1793852299451828,
+ "learning_rate": 0.0006,
+ "loss": 4.977394104003906,
+ "step": 446
+ },
+ {
+ "epoch": 6.209698558322412,
+ "grad_norm": 0.1851297914981842,
+ "learning_rate": 0.0006,
+ "loss": 4.983541488647461,
+ "step": 447
+ },
+ {
+ "epoch": 6.2236784622105725,
+ "grad_norm": 0.2045268565416336,
+ "learning_rate": 0.0006,
+ "loss": 4.992830276489258,
+ "step": 448
+ },
+ {
+ "epoch": 6.237658366098733,
+ "grad_norm": 0.21707463264465332,
+ "learning_rate": 0.0006,
+ "loss": 4.998589515686035,
+ "step": 449
+ },
+ {
+ "epoch": 6.251638269986894,
+ "grad_norm": 0.2805860638618469,
+ "learning_rate": 0.0006,
+ "loss": 4.973134517669678,
+ "step": 450
+ },
+ {
+ "epoch": 6.265618173875055,
+ "grad_norm": 0.33102089166641235,
+ "learning_rate": 0.0006,
+ "loss": 4.957348823547363,
+ "step": 451
+ },
+ {
+ "epoch": 6.279598077763215,
+ "grad_norm": 0.3763096034526825,
+ "learning_rate": 0.0006,
+ "loss": 5.0133256912231445,
+ "step": 452
+ },
+ {
+ "epoch": 6.293577981651376,
+ "grad_norm": 0.4676196575164795,
+ "learning_rate": 0.0006,
+ "loss": 4.972289562225342,
+ "step": 453
+ },
+ {
+ "epoch": 6.307557885539537,
+ "grad_norm": 0.6158978343009949,
+ "learning_rate": 0.0006,
+ "loss": 4.989326477050781,
+ "step": 454
+ },
+ {
+ "epoch": 6.321537789427698,
+ "grad_norm": 0.537460446357727,
+ "learning_rate": 0.0006,
+ "loss": 5.0210676193237305,
+ "step": 455
+ },
+ {
+ "epoch": 6.335517693315858,
+ "grad_norm": 0.5342532396316528,
+ "learning_rate": 0.0006,
+ "loss": 4.988524436950684,
+ "step": 456
+ },
+ {
+ "epoch": 6.349497597204019,
+ "grad_norm": 0.5736384987831116,
+ "learning_rate": 0.0006,
+ "loss": 4.977508068084717,
+ "step": 457
+ },
+ {
+ "epoch": 6.36347750109218,
+ "grad_norm": 0.6656201481819153,
+ "learning_rate": 0.0006,
+ "loss": 5.047934055328369,
+ "step": 458
+ },
+ {
+ "epoch": 6.3774574049803405,
+ "grad_norm": 0.6388342380523682,
+ "learning_rate": 0.0006,
+ "loss": 5.017617225646973,
+ "step": 459
+ },
+ {
+ "epoch": 6.391437308868501,
+ "grad_norm": 0.6620904207229614,
+ "learning_rate": 0.0006,
+ "loss": 5.032195091247559,
+ "step": 460
+ },
+ {
+ "epoch": 6.405417212756662,
+ "grad_norm": 0.693274974822998,
+ "learning_rate": 0.0006,
+ "loss": 5.02433967590332,
+ "step": 461
+ },
+ {
+ "epoch": 6.419397116644823,
+ "grad_norm": 0.6888924241065979,
+ "learning_rate": 0.0006,
+ "loss": 5.010735511779785,
+ "step": 462
+ },
+ {
+ "epoch": 6.433377020532983,
+ "grad_norm": 0.7181721925735474,
+ "learning_rate": 0.0006,
+ "loss": 5.049690246582031,
+ "step": 463
+ },
+ {
+ "epoch": 6.447356924421145,
+ "grad_norm": 0.7225117087364197,
+ "learning_rate": 0.0006,
+ "loss": 5.031939506530762,
+ "step": 464
+ },
+ {
+ "epoch": 6.461336828309306,
+ "grad_norm": 0.5268304347991943,
+ "learning_rate": 0.0006,
+ "loss": 5.01638126373291,
+ "step": 465
+ },
+ {
+ "epoch": 6.4753167321974665,
+ "grad_norm": 0.38218435645103455,
+ "learning_rate": 0.0006,
+ "loss": 4.997034072875977,
+ "step": 466
+ },
+ {
+ "epoch": 6.489296636085627,
+ "grad_norm": 0.3576396703720093,
+ "learning_rate": 0.0006,
+ "loss": 5.006804943084717,
+ "step": 467
+ },
+ {
+ "epoch": 6.503276539973788,
+ "grad_norm": 0.3305981755256653,
+ "learning_rate": 0.0006,
+ "loss": 4.994671821594238,
+ "step": 468
+ },
+ {
+ "epoch": 6.517256443861949,
+ "grad_norm": 0.3254900574684143,
+ "learning_rate": 0.0006,
+ "loss": 4.9747490882873535,
+ "step": 469
+ },
+ {
+ "epoch": 6.531236347750109,
+ "grad_norm": 0.2655033469200134,
+ "learning_rate": 0.0006,
+ "loss": 5.002863883972168,
+ "step": 470
+ },
+ {
+ "epoch": 6.54521625163827,
+ "grad_norm": 0.2620532810688019,
+ "learning_rate": 0.0006,
+ "loss": 4.9813337326049805,
+ "step": 471
+ },
+ {
+ "epoch": 6.559196155526431,
+ "grad_norm": 0.22128869593143463,
+ "learning_rate": 0.0006,
+ "loss": 4.978368759155273,
+ "step": 472
+ },
+ {
+ "epoch": 6.573176059414592,
+ "grad_norm": 0.22638699412345886,
+ "learning_rate": 0.0006,
+ "loss": 4.944509029388428,
+ "step": 473
+ },
+ {
+ "epoch": 6.587155963302752,
+ "grad_norm": 0.20720207691192627,
+ "learning_rate": 0.0006,
+ "loss": 4.98404598236084,
+ "step": 474
+ },
+ {
+ "epoch": 6.601135867190913,
+ "grad_norm": 0.21577289700508118,
+ "learning_rate": 0.0006,
+ "loss": 4.958878040313721,
+ "step": 475
+ },
+ {
+ "epoch": 6.615115771079074,
+ "grad_norm": 0.22453972697257996,
+ "learning_rate": 0.0006,
+ "loss": 4.935467720031738,
+ "step": 476
+ },
+ {
+ "epoch": 6.6290956749672345,
+ "grad_norm": 0.20757712423801422,
+ "learning_rate": 0.0006,
+ "loss": 4.943334579467773,
+ "step": 477
+ },
+ {
+ "epoch": 6.643075578855395,
+ "grad_norm": 0.22808043658733368,
+ "learning_rate": 0.0006,
+ "loss": 4.936544418334961,
+ "step": 478
+ },
+ {
+ "epoch": 6.657055482743556,
+ "grad_norm": 0.2193756401538849,
+ "learning_rate": 0.0006,
+ "loss": 4.938162326812744,
+ "step": 479
+ },
+ {
+ "epoch": 6.671035386631717,
+ "grad_norm": 0.19677500426769257,
+ "learning_rate": 0.0006,
+ "loss": 4.9026713371276855,
+ "step": 480
+ },
+ {
+ "epoch": 6.685015290519877,
+ "grad_norm": 0.17271658778190613,
+ "learning_rate": 0.0006,
+ "loss": 4.912519454956055,
+ "step": 481
+ },
+ {
+ "epoch": 6.698995194408038,
+ "grad_norm": 0.17551499605178833,
+ "learning_rate": 0.0006,
+ "loss": 4.929941177368164,
+ "step": 482
+ },
+ {
+ "epoch": 6.712975098296199,
+ "grad_norm": 0.1582687348127365,
+ "learning_rate": 0.0006,
+ "loss": 4.908967971801758,
+ "step": 483
+ },
+ {
+ "epoch": 6.72695500218436,
+ "grad_norm": 0.1593410074710846,
+ "learning_rate": 0.0006,
+ "loss": 4.901554107666016,
+ "step": 484
+ },
+ {
+ "epoch": 6.740934906072521,
+ "grad_norm": 0.16746895015239716,
+ "learning_rate": 0.0006,
+ "loss": 4.917915344238281,
+ "step": 485
+ },
+ {
+ "epoch": 6.754914809960681,
+ "grad_norm": 0.17066062986850739,
+ "learning_rate": 0.0006,
+ "loss": 4.912853240966797,
+ "step": 486
+ },
+ {
+ "epoch": 6.768894713848843,
+ "grad_norm": 0.16727769374847412,
+ "learning_rate": 0.0006,
+ "loss": 4.895434856414795,
+ "step": 487
+ },
+ {
+ "epoch": 6.782874617737003,
+ "grad_norm": 0.1784558743238449,
+ "learning_rate": 0.0006,
+ "loss": 4.8805341720581055,
+ "step": 488
+ },
+ {
+ "epoch": 6.796854521625164,
+ "grad_norm": 0.176686093211174,
+ "learning_rate": 0.0006,
+ "loss": 4.855296611785889,
+ "step": 489
+ },
+ {
+ "epoch": 6.810834425513325,
+ "grad_norm": 0.21577849984169006,
+ "learning_rate": 0.0006,
+ "loss": 4.885506629943848,
+ "step": 490
+ },
+ {
+ "epoch": 6.824814329401486,
+ "grad_norm": 0.27615776658058167,
+ "learning_rate": 0.0006,
+ "loss": 4.913756847381592,
+ "step": 491
+ },
+ {
+ "epoch": 6.838794233289646,
+ "grad_norm": 0.3653675615787506,
+ "learning_rate": 0.0006,
+ "loss": 4.880918979644775,
+ "step": 492
+ },
+ {
+ "epoch": 6.852774137177807,
+ "grad_norm": 0.41473883390426636,
+ "learning_rate": 0.0006,
+ "loss": 4.894164562225342,
+ "step": 493
+ },
+ {
+ "epoch": 6.866754041065968,
+ "grad_norm": 0.45850715041160583,
+ "learning_rate": 0.0006,
+ "loss": 4.907922744750977,
+ "step": 494
+ },
+ {
+ "epoch": 6.8807339449541285,
+ "grad_norm": 0.4675290882587433,
+ "learning_rate": 0.0006,
+ "loss": 4.883112907409668,
+ "step": 495
+ },
+ {
+ "epoch": 6.894713848842289,
+ "grad_norm": 0.45795994997024536,
+ "learning_rate": 0.0006,
+ "loss": 4.897843360900879,
+ "step": 496
+ },
+ {
+ "epoch": 6.90869375273045,
+ "grad_norm": 0.46130508184432983,
+ "learning_rate": 0.0006,
+ "loss": 4.890612602233887,
+ "step": 497
+ },
+ {
+ "epoch": 6.922673656618611,
+ "grad_norm": 0.44783803820610046,
+ "learning_rate": 0.0006,
+ "loss": 4.880192756652832,
+ "step": 498
+ },
+ {
+ "epoch": 6.936653560506771,
+ "grad_norm": 0.35361284017562866,
+ "learning_rate": 0.0006,
+ "loss": 4.840778350830078,
+ "step": 499
+ },
+ {
+ "epoch": 6.950633464394932,
+ "grad_norm": 0.34027689695358276,
+ "learning_rate": 0.0006,
+ "loss": 4.871222496032715,
+ "step": 500
+ },
+ {
+ "epoch": 6.964613368283093,
+ "grad_norm": 0.30228909850120544,
+ "learning_rate": 0.0006,
+ "loss": 4.868077278137207,
+ "step": 501
+ },
+ {
+ "epoch": 6.978593272171254,
+ "grad_norm": 0.27706998586654663,
+ "learning_rate": 0.0006,
+ "loss": 4.895936012268066,
+ "step": 502
+ },
+ {
+ "epoch": 6.992573176059414,
+ "grad_norm": 0.3516870439052582,
+ "learning_rate": 0.0006,
+ "loss": 4.824636459350586,
+ "step": 503
+ },
+ {
+ "epoch": 7.0,
+ "grad_norm": 0.36831387877464294,
+ "learning_rate": 0.0006,
+ "loss": 4.874397277832031,
+ "step": 504
+ },
+ {
+ "epoch": 7.0,
+ "eval_loss": 5.176281452178955,
+ "eval_runtime": 44.2386,
+ "eval_samples_per_second": 55.201,
+ "eval_steps_per_second": 3.459,
+ "step": 504
+ },
+ {
+ "epoch": 7.013979903888161,
+ "grad_norm": 0.4265240430831909,
+ "learning_rate": 0.0006,
+ "loss": 4.814333438873291,
+ "step": 505
+ },
+ {
+ "epoch": 7.0279598077763215,
+ "grad_norm": 0.5126975774765015,
+ "learning_rate": 0.0006,
+ "loss": 4.852343559265137,
+ "step": 506
+ },
+ {
+ "epoch": 7.041939711664482,
+ "grad_norm": 0.43080806732177734,
+ "learning_rate": 0.0006,
+ "loss": 4.843439102172852,
+ "step": 507
+ },
+ {
+ "epoch": 7.055919615552643,
+ "grad_norm": 0.43170198798179626,
+ "learning_rate": 0.0006,
+ "loss": 4.845984935760498,
+ "step": 508
+ },
+ {
+ "epoch": 7.069899519440804,
+ "grad_norm": 0.5640552043914795,
+ "learning_rate": 0.0006,
+ "loss": 4.840991973876953,
+ "step": 509
+ },
+ {
+ "epoch": 7.083879423328964,
+ "grad_norm": 0.540381133556366,
+ "learning_rate": 0.0006,
+ "loss": 4.801316738128662,
+ "step": 510
+ },
+ {
+ "epoch": 7.097859327217125,
+ "grad_norm": 0.5412097573280334,
+ "learning_rate": 0.0006,
+ "loss": 4.886598587036133,
+ "step": 511
+ },
+ {
+ "epoch": 7.111839231105286,
+ "grad_norm": 0.630648136138916,
+ "learning_rate": 0.0006,
+ "loss": 4.849774360656738,
+ "step": 512
+ },
+ {
+ "epoch": 7.1258191349934465,
+ "grad_norm": 0.569952130317688,
+ "learning_rate": 0.0006,
+ "loss": 4.870607376098633,
+ "step": 513
+ },
+ {
+ "epoch": 7.139799038881607,
+ "grad_norm": 0.42051541805267334,
+ "learning_rate": 0.0006,
+ "loss": 4.83833122253418,
+ "step": 514
+ },
+ {
+ "epoch": 7.153778942769769,
+ "grad_norm": 0.3930990397930145,
+ "learning_rate": 0.0006,
+ "loss": 4.853984355926514,
+ "step": 515
+ },
+ {
+ "epoch": 7.16775884665793,
+ "grad_norm": 0.512886106967926,
+ "learning_rate": 0.0006,
+ "loss": 4.815458297729492,
+ "step": 516
+ },
+ {
+ "epoch": 7.18173875054609,
+ "grad_norm": 0.42580172419548035,
+ "learning_rate": 0.0006,
+ "loss": 4.825312614440918,
+ "step": 517
+ },
+ {
+ "epoch": 7.195718654434251,
+ "grad_norm": 0.31628182530403137,
+ "learning_rate": 0.0006,
+ "loss": 4.806377410888672,
+ "step": 518
+ },
+ {
+ "epoch": 7.209698558322412,
+ "grad_norm": 0.3109956681728363,
+ "learning_rate": 0.0006,
+ "loss": 4.819339752197266,
+ "step": 519
+ },
+ {
+ "epoch": 7.2236784622105725,
+ "grad_norm": 0.2740071415901184,
+ "learning_rate": 0.0006,
+ "loss": 4.81319522857666,
+ "step": 520
+ },
+ {
+ "epoch": 7.237658366098733,
+ "grad_norm": 0.26441165804862976,
+ "learning_rate": 0.0006,
+ "loss": 4.8107380867004395,
+ "step": 521
+ },
+ {
+ "epoch": 7.251638269986894,
+ "grad_norm": 0.2496110051870346,
+ "learning_rate": 0.0006,
+ "loss": 4.785193920135498,
+ "step": 522
+ },
+ {
+ "epoch": 7.265618173875055,
+ "grad_norm": 0.2565560042858124,
+ "learning_rate": 0.0006,
+ "loss": 4.802750587463379,
+ "step": 523
+ },
+ {
+ "epoch": 7.279598077763215,
+ "grad_norm": 0.2126980572938919,
+ "learning_rate": 0.0006,
+ "loss": 4.763580322265625,
+ "step": 524
+ },
+ {
+ "epoch": 7.293577981651376,
+ "grad_norm": 0.2169921100139618,
+ "learning_rate": 0.0006,
+ "loss": 4.756124973297119,
+ "step": 525
+ },
+ {
+ "epoch": 7.307557885539537,
+ "grad_norm": 0.2372167706489563,
+ "learning_rate": 0.0006,
+ "loss": 4.786888599395752,
+ "step": 526
+ },
+ {
+ "epoch": 7.321537789427698,
+ "grad_norm": 0.2124386429786682,
+ "learning_rate": 0.0006,
+ "loss": 4.777996063232422,
+ "step": 527
+ },
+ {
+ "epoch": 7.335517693315858,
+ "grad_norm": 0.18585442006587982,
+ "learning_rate": 0.0006,
+ "loss": 4.770537853240967,
+ "step": 528
+ },
+ {
+ "epoch": 7.349497597204019,
+ "grad_norm": 0.20515340566635132,
+ "learning_rate": 0.0006,
+ "loss": 4.769230842590332,
+ "step": 529
+ },
+ {
+ "epoch": 7.36347750109218,
+ "grad_norm": 0.19906704127788544,
+ "learning_rate": 0.0006,
+ "loss": 4.752581596374512,
+ "step": 530
+ },
+ {
+ "epoch": 7.3774574049803405,
+ "grad_norm": 0.2030428946018219,
+ "learning_rate": 0.0006,
+ "loss": 4.7353715896606445,
+ "step": 531
+ },
+ {
+ "epoch": 7.391437308868501,
+ "grad_norm": 0.17820630967617035,
+ "learning_rate": 0.0006,
+ "loss": 4.742705345153809,
+ "step": 532
+ },
+ {
+ "epoch": 7.405417212756662,
+ "grad_norm": 0.17642682790756226,
+ "learning_rate": 0.0006,
+ "loss": 4.752669334411621,
+ "step": 533
+ },
+ {
+ "epoch": 7.419397116644823,
+ "grad_norm": 0.18088409304618835,
+ "learning_rate": 0.0006,
+ "loss": 4.734611511230469,
+ "step": 534
+ },
+ {
+ "epoch": 7.433377020532983,
+ "grad_norm": 0.20897020399570465,
+ "learning_rate": 0.0006,
+ "loss": 4.756442070007324,
+ "step": 535
+ },
+ {
+ "epoch": 7.447356924421145,
+ "grad_norm": 0.23166777193546295,
+ "learning_rate": 0.0006,
+ "loss": 4.712922096252441,
+ "step": 536
+ },
+ {
+ "epoch": 7.461336828309306,
+ "grad_norm": 0.2205347716808319,
+ "learning_rate": 0.0006,
+ "loss": 4.75001335144043,
+ "step": 537
+ },
+ {
+ "epoch": 7.4753167321974665,
+ "grad_norm": 0.23868022859096527,
+ "learning_rate": 0.0006,
+ "loss": 4.726134300231934,
+ "step": 538
+ },
+ {
+ "epoch": 7.489296636085627,
+ "grad_norm": 0.2861441373825073,
+ "learning_rate": 0.0006,
+ "loss": 4.754112243652344,
+ "step": 539
+ },
+ {
+ "epoch": 7.503276539973788,
+ "grad_norm": 0.28980305790901184,
+ "learning_rate": 0.0006,
+ "loss": 4.716021537780762,
+ "step": 540
+ },
+ {
+ "epoch": 7.517256443861949,
+ "grad_norm": 0.2784835696220398,
+ "learning_rate": 0.0006,
+ "loss": 4.713929176330566,
+ "step": 541
+ },
+ {
+ "epoch": 7.531236347750109,
+ "grad_norm": 0.2962653934955597,
+ "learning_rate": 0.0006,
+ "loss": 4.711845397949219,
+ "step": 542
+ },
+ {
+ "epoch": 7.54521625163827,
+ "grad_norm": 0.3333161175251007,
+ "learning_rate": 0.0006,
+ "loss": 4.709834575653076,
+ "step": 543
+ },
+ {
+ "epoch": 7.559196155526431,
+ "grad_norm": 0.35304850339889526,
+ "learning_rate": 0.0006,
+ "loss": 4.732914924621582,
+ "step": 544
+ },
+ {
+ "epoch": 7.573176059414592,
+ "grad_norm": 0.4165869355201721,
+ "learning_rate": 0.0006,
+ "loss": 4.716190338134766,
+ "step": 545
+ },
+ {
+ "epoch": 7.587155963302752,
+ "grad_norm": 0.4878059923648834,
+ "learning_rate": 0.0006,
+ "loss": 4.723773002624512,
+ "step": 546
+ },
+ {
+ "epoch": 7.601135867190913,
+ "grad_norm": 0.36643707752227783,
+ "learning_rate": 0.0006,
+ "loss": 4.721458911895752,
+ "step": 547
+ },
+ {
+ "epoch": 7.615115771079074,
+ "grad_norm": 0.4046908915042877,
+ "learning_rate": 0.0006,
+ "loss": 4.715397834777832,
+ "step": 548
+ },
+ {
+ "epoch": 7.6290956749672345,
+ "grad_norm": 0.44426342844963074,
+ "learning_rate": 0.0006,
+ "loss": 4.737357139587402,
+ "step": 549
+ },
+ {
+ "epoch": 7.643075578855395,
+ "grad_norm": 0.4181079864501953,
+ "learning_rate": 0.0006,
+ "loss": 4.731383800506592,
+ "step": 550
+ },
+ {
+ "epoch": 7.657055482743556,
+ "grad_norm": 0.3486088216304779,
+ "learning_rate": 0.0006,
+ "loss": 4.728029727935791,
+ "step": 551
+ },
+ {
+ "epoch": 7.671035386631717,
+ "grad_norm": 0.37150970101356506,
+ "learning_rate": 0.0006,
+ "loss": 4.7083210945129395,
+ "step": 552
+ },
+ {
+ "epoch": 7.685015290519877,
+ "grad_norm": 0.43324410915374756,
+ "learning_rate": 0.0006,
+ "loss": 4.728720664978027,
+ "step": 553
+ },
+ {
+ "epoch": 7.698995194408038,
+ "grad_norm": 0.5026620626449585,
+ "learning_rate": 0.0006,
+ "loss": 4.698156356811523,
+ "step": 554
+ },
+ {
+ "epoch": 7.712975098296199,
+ "grad_norm": 0.4873499274253845,
+ "learning_rate": 0.0006,
+ "loss": 4.7169952392578125,
+ "step": 555
+ },
+ {
+ "epoch": 7.72695500218436,
+ "grad_norm": 0.4285493791103363,
+ "learning_rate": 0.0006,
+ "loss": 4.6877241134643555,
+ "step": 556
+ },
+ {
+ "epoch": 7.740934906072521,
+ "grad_norm": 0.5179854035377502,
+ "learning_rate": 0.0006,
+ "loss": 4.704267501831055,
+ "step": 557
+ },
+ {
+ "epoch": 7.754914809960681,
+ "grad_norm": 0.4642147421836853,
+ "learning_rate": 0.0006,
+ "loss": 4.695004463195801,
+ "step": 558
+ },
+ {
+ "epoch": 7.768894713848843,
+ "grad_norm": 0.47149503231048584,
+ "learning_rate": 0.0006,
+ "loss": 4.694338798522949,
+ "step": 559
+ },
+ {
+ "epoch": 7.782874617737003,
+ "grad_norm": 0.5422149300575256,
+ "learning_rate": 0.0006,
+ "loss": 4.749478340148926,
+ "step": 560
+ },
+ {
+ "epoch": 7.796854521625164,
+ "grad_norm": 0.4360728859901428,
+ "learning_rate": 0.0006,
+ "loss": 4.685191631317139,
+ "step": 561
+ },
+ {
+ "epoch": 7.810834425513325,
+ "grad_norm": 0.4243801534175873,
+ "learning_rate": 0.0006,
+ "loss": 4.69228458404541,
+ "step": 562
+ },
+ {
+ "epoch": 7.824814329401486,
+ "grad_norm": 0.40380290150642395,
+ "learning_rate": 0.0006,
+ "loss": 4.690923690795898,
+ "step": 563
+ },
+ {
+ "epoch": 7.838794233289646,
+ "grad_norm": 0.4352976381778717,
+ "learning_rate": 0.0006,
+ "loss": 4.720489978790283,
+ "step": 564
+ },
+ {
+ "epoch": 7.852774137177807,
+ "grad_norm": 0.44634920358657837,
+ "learning_rate": 0.0006,
+ "loss": 4.683789253234863,
+ "step": 565
+ },
+ {
+ "epoch": 7.866754041065968,
+ "grad_norm": 0.3818186819553375,
+ "learning_rate": 0.0006,
+ "loss": 4.696887016296387,
+ "step": 566
+ },
+ {
+ "epoch": 7.8807339449541285,
+ "grad_norm": 0.35270464420318604,
+ "learning_rate": 0.0006,
+ "loss": 4.715676307678223,
+ "step": 567
+ },
+ {
+ "epoch": 7.894713848842289,
+ "grad_norm": 0.249756321310997,
+ "learning_rate": 0.0006,
+ "loss": 4.672721862792969,
+ "step": 568
+ },
+ {
+ "epoch": 7.90869375273045,
+ "grad_norm": 0.25097888708114624,
+ "learning_rate": 0.0006,
+ "loss": 4.663518905639648,
+ "step": 569
+ },
+ {
+ "epoch": 7.922673656618611,
+ "grad_norm": 0.26563209295272827,
+ "learning_rate": 0.0006,
+ "loss": 4.675405025482178,
+ "step": 570
+ },
+ {
+ "epoch": 7.936653560506771,
+ "grad_norm": 0.26451292634010315,
+ "learning_rate": 0.0006,
+ "loss": 4.651235103607178,
+ "step": 571
+ },
+ {
+ "epoch": 7.950633464394932,
+ "grad_norm": 0.24185842275619507,
+ "learning_rate": 0.0006,
+ "loss": 4.671639919281006,
+ "step": 572
+ },
+ {
+ "epoch": 7.964613368283093,
+ "grad_norm": 0.21506108343601227,
+ "learning_rate": 0.0006,
+ "loss": 4.665352821350098,
+ "step": 573
+ },
+ {
+ "epoch": 7.978593272171254,
+ "grad_norm": 0.24365705251693726,
+ "learning_rate": 0.0006,
+ "loss": 4.663162708282471,
+ "step": 574
+ },
+ {
+ "epoch": 7.992573176059414,
+ "grad_norm": 0.24251042306423187,
+ "learning_rate": 0.0006,
+ "loss": 4.666633605957031,
+ "step": 575
+ },
+ {
+ "epoch": 8.0,
+ "grad_norm": 0.24187657237052917,
+ "learning_rate": 0.0006,
+ "loss": 4.63957405090332,
+ "step": 576
+ },
+ {
+ "epoch": 8.0,
+ "eval_loss": 4.923156261444092,
+ "eval_runtime": 44.1587,
+ "eval_samples_per_second": 55.301,
+ "eval_steps_per_second": 3.465,
+ "step": 576
+ },
+ {
+ "epoch": 8.013979903888162,
+ "grad_norm": 0.21323645114898682,
+ "learning_rate": 0.0006,
+ "loss": 4.636347770690918,
+ "step": 577
+ },
+ {
+ "epoch": 8.027959807776321,
+ "grad_norm": 0.2325759083032608,
+ "learning_rate": 0.0006,
+ "loss": 4.60684871673584,
+ "step": 578
+ },
+ {
+ "epoch": 8.041939711664483,
+ "grad_norm": 0.26741257309913635,
+ "learning_rate": 0.0006,
+ "loss": 4.647780418395996,
+ "step": 579
+ },
+ {
+ "epoch": 8.055919615552643,
+ "grad_norm": 0.285720556974411,
+ "learning_rate": 0.0006,
+ "loss": 4.629637718200684,
+ "step": 580
+ },
+ {
+ "epoch": 8.069899519440805,
+ "grad_norm": 0.2453618347644806,
+ "learning_rate": 0.0006,
+ "loss": 4.62420654296875,
+ "step": 581
+ },
+ {
+ "epoch": 8.083879423328964,
+ "grad_norm": 0.19662636518478394,
+ "learning_rate": 0.0006,
+ "loss": 4.593767166137695,
+ "step": 582
+ },
+ {
+ "epoch": 8.097859327217126,
+ "grad_norm": 0.22731931507587433,
+ "learning_rate": 0.0006,
+ "loss": 4.627089023590088,
+ "step": 583
+ },
+ {
+ "epoch": 8.111839231105286,
+ "grad_norm": 0.24452590942382812,
+ "learning_rate": 0.0006,
+ "loss": 4.613677024841309,
+ "step": 584
+ },
+ {
+ "epoch": 8.125819134993447,
+ "grad_norm": 0.2952791154384613,
+ "learning_rate": 0.0006,
+ "loss": 4.604985237121582,
+ "step": 585
+ },
+ {
+ "epoch": 8.139799038881607,
+ "grad_norm": 0.3184696137905121,
+ "learning_rate": 0.0006,
+ "loss": 4.589205741882324,
+ "step": 586
+ },
+ {
+ "epoch": 8.153778942769769,
+ "grad_norm": 0.2948093116283417,
+ "learning_rate": 0.0006,
+ "loss": 4.605442047119141,
+ "step": 587
+ },
+ {
+ "epoch": 8.167758846657929,
+ "grad_norm": 0.2450508326292038,
+ "learning_rate": 0.0006,
+ "loss": 4.615349292755127,
+ "step": 588
+ },
+ {
+ "epoch": 8.18173875054609,
+ "grad_norm": 0.25664836168289185,
+ "learning_rate": 0.0006,
+ "loss": 4.592251777648926,
+ "step": 589
+ },
+ {
+ "epoch": 8.19571865443425,
+ "grad_norm": 0.24479512870311737,
+ "learning_rate": 0.0006,
+ "loss": 4.6145920753479,
+ "step": 590
+ },
+ {
+ "epoch": 8.209698558322412,
+ "grad_norm": 0.24395205080509186,
+ "learning_rate": 0.0006,
+ "loss": 4.600954055786133,
+ "step": 591
+ },
+ {
+ "epoch": 8.223678462210572,
+ "grad_norm": 0.21804189682006836,
+ "learning_rate": 0.0006,
+ "loss": 4.607785224914551,
+ "step": 592
+ },
+ {
+ "epoch": 8.237658366098733,
+ "grad_norm": 0.20951785147190094,
+ "learning_rate": 0.0006,
+ "loss": 4.58140754699707,
+ "step": 593
+ },
+ {
+ "epoch": 8.251638269986893,
+ "grad_norm": 0.20415149629116058,
+ "learning_rate": 0.0006,
+ "loss": 4.593405723571777,
+ "step": 594
+ },
+ {
+ "epoch": 8.265618173875055,
+ "grad_norm": 0.19210249185562134,
+ "learning_rate": 0.0006,
+ "loss": 4.603294372558594,
+ "step": 595
+ },
+ {
+ "epoch": 8.279598077763215,
+ "grad_norm": 0.20719751715660095,
+ "learning_rate": 0.0006,
+ "loss": 4.55255651473999,
+ "step": 596
+ },
+ {
+ "epoch": 8.293577981651376,
+ "grad_norm": 0.20101022720336914,
+ "learning_rate": 0.0006,
+ "loss": 4.5928192138671875,
+ "step": 597
+ },
+ {
+ "epoch": 8.307557885539538,
+ "grad_norm": 0.19254222512245178,
+ "learning_rate": 0.0006,
+ "loss": 4.590397834777832,
+ "step": 598
+ },
+ {
+ "epoch": 8.321537789427698,
+ "grad_norm": 0.23234105110168457,
+ "learning_rate": 0.0006,
+ "loss": 4.5987677574157715,
+ "step": 599
+ },
+ {
+ "epoch": 8.33551769331586,
+ "grad_norm": 0.2537451982498169,
+ "learning_rate": 0.0006,
+ "loss": 4.543115615844727,
+ "step": 600
+ },
+ {
+ "epoch": 8.349497597204019,
+ "grad_norm": 0.29171040654182434,
+ "learning_rate": 0.0006,
+ "loss": 4.597387313842773,
+ "step": 601
+ },
+ {
+ "epoch": 8.36347750109218,
+ "grad_norm": 0.3035930097103119,
+ "learning_rate": 0.0006,
+ "loss": 4.566247463226318,
+ "step": 602
+ },
+ {
+ "epoch": 8.37745740498034,
+ "grad_norm": 0.2826756238937378,
+ "learning_rate": 0.0006,
+ "loss": 4.57047176361084,
+ "step": 603
+ },
+ {
+ "epoch": 8.391437308868502,
+ "grad_norm": 0.2959657609462738,
+ "learning_rate": 0.0006,
+ "loss": 4.582820892333984,
+ "step": 604
+ },
+ {
+ "epoch": 8.405417212756662,
+ "grad_norm": 0.3180356025695801,
+ "learning_rate": 0.0006,
+ "loss": 4.5573272705078125,
+ "step": 605
+ },
+ {
+ "epoch": 8.419397116644824,
+ "grad_norm": 0.3617221713066101,
+ "learning_rate": 0.0006,
+ "loss": 4.593079090118408,
+ "step": 606
+ },
+ {
+ "epoch": 8.433377020532983,
+ "grad_norm": 0.35198062658309937,
+ "learning_rate": 0.0006,
+ "loss": 4.615298271179199,
+ "step": 607
+ },
+ {
+ "epoch": 8.447356924421145,
+ "grad_norm": 0.3944903314113617,
+ "learning_rate": 0.0006,
+ "loss": 4.561809539794922,
+ "step": 608
+ },
+ {
+ "epoch": 8.461336828309305,
+ "grad_norm": 0.4525868594646454,
+ "learning_rate": 0.0006,
+ "loss": 4.613105773925781,
+ "step": 609
+ },
+ {
+ "epoch": 8.475316732197467,
+ "grad_norm": 0.4915139079093933,
+ "learning_rate": 0.0006,
+ "loss": 4.566202163696289,
+ "step": 610
+ },
+ {
+ "epoch": 8.489296636085626,
+ "grad_norm": 0.49231988191604614,
+ "learning_rate": 0.0006,
+ "loss": 4.556222915649414,
+ "step": 611
+ },
+ {
+ "epoch": 8.503276539973788,
+ "grad_norm": 0.43036946654319763,
+ "learning_rate": 0.0006,
+ "loss": 4.55517578125,
+ "step": 612
+ },
+ {
+ "epoch": 8.517256443861948,
+ "grad_norm": 0.42405328154563904,
+ "learning_rate": 0.0006,
+ "loss": 4.574039936065674,
+ "step": 613
+ },
+ {
+ "epoch": 8.53123634775011,
+ "grad_norm": 0.3955961763858795,
+ "learning_rate": 0.0006,
+ "loss": 4.6082611083984375,
+ "step": 614
+ },
+ {
+ "epoch": 8.54521625163827,
+ "grad_norm": 0.4377101957798004,
+ "learning_rate": 0.0006,
+ "loss": 4.555740833282471,
+ "step": 615
+ },
+ {
+ "epoch": 8.55919615552643,
+ "grad_norm": 0.4601984918117523,
+ "learning_rate": 0.0006,
+ "loss": 4.553995132446289,
+ "step": 616
+ },
+ {
+ "epoch": 8.57317605941459,
+ "grad_norm": 0.42025700211524963,
+ "learning_rate": 0.0006,
+ "loss": 4.567340850830078,
+ "step": 617
+ },
+ {
+ "epoch": 8.587155963302752,
+ "grad_norm": 0.35569432377815247,
+ "learning_rate": 0.0006,
+ "loss": 4.570140361785889,
+ "step": 618
+ },
+ {
+ "epoch": 8.601135867190912,
+ "grad_norm": 0.37940406799316406,
+ "learning_rate": 0.0006,
+ "loss": 4.581291198730469,
+ "step": 619
+ },
+ {
+ "epoch": 8.615115771079074,
+ "grad_norm": 0.3658490777015686,
+ "learning_rate": 0.0006,
+ "loss": 4.55476188659668,
+ "step": 620
+ },
+ {
+ "epoch": 8.629095674967235,
+ "grad_norm": 0.2908247113227844,
+ "learning_rate": 0.0006,
+ "loss": 4.564087867736816,
+ "step": 621
+ },
+ {
+ "epoch": 8.643075578855395,
+ "grad_norm": 0.29961925745010376,
+ "learning_rate": 0.0006,
+ "loss": 4.556543350219727,
+ "step": 622
+ },
+ {
+ "epoch": 8.657055482743557,
+ "grad_norm": 0.3144846558570862,
+ "learning_rate": 0.0006,
+ "loss": 4.553670883178711,
+ "step": 623
+ },
+ {
+ "epoch": 8.671035386631717,
+ "grad_norm": 0.2845900356769562,
+ "learning_rate": 0.0006,
+ "loss": 4.567296981811523,
+ "step": 624
+ },
+ {
+ "epoch": 8.685015290519878,
+ "grad_norm": 0.253591388463974,
+ "learning_rate": 0.0006,
+ "loss": 4.554507255554199,
+ "step": 625
+ },
+ {
+ "epoch": 8.698995194408038,
+ "grad_norm": 0.2563088536262512,
+ "learning_rate": 0.0006,
+ "loss": 4.542218208312988,
+ "step": 626
+ },
+ {
+ "epoch": 8.7129750982962,
+ "grad_norm": 0.26058217883110046,
+ "learning_rate": 0.0006,
+ "loss": 4.535512447357178,
+ "step": 627
+ },
+ {
+ "epoch": 8.72695500218436,
+ "grad_norm": 0.20749829709529877,
+ "learning_rate": 0.0006,
+ "loss": 4.516959190368652,
+ "step": 628
+ },
+ {
+ "epoch": 8.740934906072521,
+ "grad_norm": 0.2034810334444046,
+ "learning_rate": 0.0006,
+ "loss": 4.55794095993042,
+ "step": 629
+ },
+ {
+ "epoch": 8.754914809960681,
+ "grad_norm": 0.18418121337890625,
+ "learning_rate": 0.0006,
+ "loss": 4.5421247482299805,
+ "step": 630
+ },
+ {
+ "epoch": 8.768894713848843,
+ "grad_norm": 0.20551933348178864,
+ "learning_rate": 0.0006,
+ "loss": 4.50805139541626,
+ "step": 631
+ },
+ {
+ "epoch": 8.782874617737003,
+ "grad_norm": 0.21615999937057495,
+ "learning_rate": 0.0006,
+ "loss": 4.520708084106445,
+ "step": 632
+ },
+ {
+ "epoch": 8.796854521625164,
+ "grad_norm": 0.24864810705184937,
+ "learning_rate": 0.0006,
+ "loss": 4.509330749511719,
+ "step": 633
+ },
+ {
+ "epoch": 8.810834425513324,
+ "grad_norm": 0.2573665380477905,
+ "learning_rate": 0.0006,
+ "loss": 4.531505584716797,
+ "step": 634
+ },
+ {
+ "epoch": 8.824814329401486,
+ "grad_norm": 0.22452878952026367,
+ "learning_rate": 0.0006,
+ "loss": 4.529216289520264,
+ "step": 635
+ },
+ {
+ "epoch": 8.838794233289645,
+ "grad_norm": 0.19727355241775513,
+ "learning_rate": 0.0006,
+ "loss": 4.519906520843506,
+ "step": 636
+ },
+ {
+ "epoch": 8.852774137177807,
+ "grad_norm": 0.19937913119792938,
+ "learning_rate": 0.0006,
+ "loss": 4.536892414093018,
+ "step": 637
+ },
+ {
+ "epoch": 8.866754041065967,
+ "grad_norm": 0.2070389986038208,
+ "learning_rate": 0.0006,
+ "loss": 4.51191520690918,
+ "step": 638
+ },
+ {
+ "epoch": 8.880733944954128,
+ "grad_norm": 0.2293873429298401,
+ "learning_rate": 0.0006,
+ "loss": 4.505377769470215,
+ "step": 639
+ },
+ {
+ "epoch": 8.89471384884229,
+ "grad_norm": 0.21285250782966614,
+ "learning_rate": 0.0006,
+ "loss": 4.5138959884643555,
+ "step": 640
+ },
+ {
+ "epoch": 8.90869375273045,
+ "grad_norm": 0.19487562775611877,
+ "learning_rate": 0.0006,
+ "loss": 4.506108283996582,
+ "step": 641
+ },
+ {
+ "epoch": 8.922673656618612,
+ "grad_norm": 0.21986965835094452,
+ "learning_rate": 0.0006,
+ "loss": 4.506397247314453,
+ "step": 642
+ },
+ {
+ "epoch": 8.936653560506771,
+ "grad_norm": 0.20763885974884033,
+ "learning_rate": 0.0006,
+ "loss": 4.508007049560547,
+ "step": 643
+ },
+ {
+ "epoch": 8.950633464394933,
+ "grad_norm": 0.22858479619026184,
+ "learning_rate": 0.0006,
+ "loss": 4.520846366882324,
+ "step": 644
+ },
+ {
+ "epoch": 8.964613368283093,
+ "grad_norm": 0.23923712968826294,
+ "learning_rate": 0.0006,
+ "loss": 4.535306930541992,
+ "step": 645
+ },
+ {
+ "epoch": 8.978593272171254,
+ "grad_norm": 0.23717579245567322,
+ "learning_rate": 0.0006,
+ "loss": 4.485929489135742,
+ "step": 646
+ },
+ {
+ "epoch": 8.992573176059414,
+ "grad_norm": 0.24033977091312408,
+ "learning_rate": 0.0006,
+ "loss": 4.508999824523926,
+ "step": 647
+ },
+ {
+ "epoch": 9.0,
+ "grad_norm": 0.22432062029838562,
+ "learning_rate": 0.0006,
+ "loss": 4.473136901855469,
+ "step": 648
+ },
+ {
+ "epoch": 9.0,
+ "eval_loss": 4.735903263092041,
+ "eval_runtime": 44.2163,
+ "eval_samples_per_second": 55.228,
+ "eval_steps_per_second": 3.46,
+ "step": 648
+ },
+ {
+ "epoch": 9.013979903888162,
+ "grad_norm": 0.22491489350795746,
+ "learning_rate": 0.0006,
+ "loss": 4.468614101409912,
+ "step": 649
+ },
+ {
+ "epoch": 9.027959807776321,
+ "grad_norm": 0.255759060382843,
+ "learning_rate": 0.0006,
+ "loss": 4.516196250915527,
+ "step": 650
+ },
+ {
+ "epoch": 9.041939711664483,
+ "grad_norm": 0.2591100335121155,
+ "learning_rate": 0.0006,
+ "loss": 4.478276252746582,
+ "step": 651
+ },
+ {
+ "epoch": 9.055919615552643,
+ "grad_norm": 0.30472296476364136,
+ "learning_rate": 0.0006,
+ "loss": 4.479726791381836,
+ "step": 652
+ },
+ {
+ "epoch": 9.069899519440805,
+ "grad_norm": 0.2840559780597687,
+ "learning_rate": 0.0006,
+ "loss": 4.4437384605407715,
+ "step": 653
+ },
+ {
+ "epoch": 9.083879423328964,
+ "grad_norm": 0.2695577144622803,
+ "learning_rate": 0.0006,
+ "loss": 4.476065635681152,
+ "step": 654
+ },
+ {
+ "epoch": 9.097859327217126,
+ "grad_norm": 0.27912381291389465,
+ "learning_rate": 0.0006,
+ "loss": 4.484747409820557,
+ "step": 655
+ },
+ {
+ "epoch": 9.111839231105286,
+ "grad_norm": 0.3091907501220703,
+ "learning_rate": 0.0006,
+ "loss": 4.449443817138672,
+ "step": 656
+ },
+ {
+ "epoch": 9.125819134993447,
+ "grad_norm": 0.30756646394729614,
+ "learning_rate": 0.0006,
+ "loss": 4.496490001678467,
+ "step": 657
+ },
+ {
+ "epoch": 9.139799038881607,
+ "grad_norm": 0.305698037147522,
+ "learning_rate": 0.0006,
+ "loss": 4.466765880584717,
+ "step": 658
+ },
+ {
+ "epoch": 9.153778942769769,
+ "grad_norm": 0.3031201660633087,
+ "learning_rate": 0.0006,
+ "loss": 4.462430953979492,
+ "step": 659
+ },
+ {
+ "epoch": 9.167758846657929,
+ "grad_norm": 0.32725608348846436,
+ "learning_rate": 0.0006,
+ "loss": 4.479879379272461,
+ "step": 660
+ },
+ {
+ "epoch": 9.18173875054609,
+ "grad_norm": 0.31773585081100464,
+ "learning_rate": 0.0006,
+ "loss": 4.473912239074707,
+ "step": 661
+ },
+ {
+ "epoch": 9.19571865443425,
+ "grad_norm": 0.30025365948677063,
+ "learning_rate": 0.0006,
+ "loss": 4.476703643798828,
+ "step": 662
+ },
+ {
+ "epoch": 9.209698558322412,
+ "grad_norm": 0.3177371025085449,
+ "learning_rate": 0.0006,
+ "loss": 4.439765930175781,
+ "step": 663
+ },
+ {
+ "epoch": 9.223678462210572,
+ "grad_norm": 0.3060745894908905,
+ "learning_rate": 0.0006,
+ "loss": 4.487849235534668,
+ "step": 664
+ },
+ {
+ "epoch": 9.237658366098733,
+ "grad_norm": 0.33287373185157776,
+ "learning_rate": 0.0006,
+ "loss": 4.443496227264404,
+ "step": 665
+ },
+ {
+ "epoch": 9.251638269986893,
+ "grad_norm": 0.3758000433444977,
+ "learning_rate": 0.0006,
+ "loss": 4.478017330169678,
+ "step": 666
+ },
+ {
+ "epoch": 9.265618173875055,
+ "grad_norm": 0.32124510407447815,
+ "learning_rate": 0.0006,
+ "loss": 4.4092206954956055,
+ "step": 667
+ },
+ {
+ "epoch": 9.279598077763215,
+ "grad_norm": 0.2786794602870941,
+ "learning_rate": 0.0006,
+ "loss": 4.432734489440918,
+ "step": 668
+ },
+ {
+ "epoch": 9.293577981651376,
+ "grad_norm": 0.35042962431907654,
+ "learning_rate": 0.0006,
+ "loss": 4.462737083435059,
+ "step": 669
+ },
+ {
+ "epoch": 9.307557885539538,
+ "grad_norm": 0.4080469310283661,
+ "learning_rate": 0.0006,
+ "loss": 4.429462432861328,
+ "step": 670
+ },
+ {
+ "epoch": 9.321537789427698,
+ "grad_norm": 0.465158075094223,
+ "learning_rate": 0.0006,
+ "loss": 4.465776443481445,
+ "step": 671
+ },
+ {
+ "epoch": 9.33551769331586,
+ "grad_norm": 0.44833582639694214,
+ "learning_rate": 0.0006,
+ "loss": 4.454195976257324,
+ "step": 672
+ },
+ {
+ "epoch": 9.349497597204019,
+ "grad_norm": 0.451052188873291,
+ "learning_rate": 0.0006,
+ "loss": 4.456139087677002,
+ "step": 673
+ },
+ {
+ "epoch": 9.36347750109218,
+ "grad_norm": 0.3759656250476837,
+ "learning_rate": 0.0006,
+ "loss": 4.461119651794434,
+ "step": 674
+ },
+ {
+ "epoch": 9.37745740498034,
+ "grad_norm": 0.514560341835022,
+ "learning_rate": 0.0006,
+ "loss": 4.49595832824707,
+ "step": 675
+ },
+ {
+ "epoch": 9.391437308868502,
+ "grad_norm": 0.5650647282600403,
+ "learning_rate": 0.0006,
+ "loss": 4.461362838745117,
+ "step": 676
+ },
+ {
+ "epoch": 9.405417212756662,
+ "grad_norm": 0.4218835234642029,
+ "learning_rate": 0.0006,
+ "loss": 4.469146728515625,
+ "step": 677
+ },
+ {
+ "epoch": 9.419397116644824,
+ "grad_norm": 0.4169512689113617,
+ "learning_rate": 0.0006,
+ "loss": 4.470132827758789,
+ "step": 678
+ },
+ {
+ "epoch": 9.433377020532983,
+ "grad_norm": 0.3772219717502594,
+ "learning_rate": 0.0006,
+ "loss": 4.4742608070373535,
+ "step": 679
+ },
+ {
+ "epoch": 9.447356924421145,
+ "grad_norm": 0.35755908489227295,
+ "learning_rate": 0.0006,
+ "loss": 4.461928367614746,
+ "step": 680
+ },
+ {
+ "epoch": 9.461336828309305,
+ "grad_norm": 0.3141227662563324,
+ "learning_rate": 0.0006,
+ "loss": 4.491983413696289,
+ "step": 681
+ },
+ {
+ "epoch": 9.475316732197467,
+ "grad_norm": 0.282461017370224,
+ "learning_rate": 0.0006,
+ "loss": 4.460200309753418,
+ "step": 682
+ },
+ {
+ "epoch": 9.489296636085626,
+ "grad_norm": 0.27174389362335205,
+ "learning_rate": 0.0006,
+ "loss": 4.416125297546387,
+ "step": 683
+ },
+ {
+ "epoch": 9.503276539973788,
+ "grad_norm": 0.24570637941360474,
+ "learning_rate": 0.0006,
+ "loss": 4.4451093673706055,
+ "step": 684
+ },
+ {
+ "epoch": 9.517256443861948,
+ "grad_norm": 0.2741486132144928,
+ "learning_rate": 0.0006,
+ "loss": 4.453263282775879,
+ "step": 685
+ },
+ {
+ "epoch": 9.53123634775011,
+ "grad_norm": 0.24753718078136444,
+ "learning_rate": 0.0006,
+ "loss": 4.483033180236816,
+ "step": 686
+ },
+ {
+ "epoch": 9.54521625163827,
+ "grad_norm": 0.24288412928581238,
+ "learning_rate": 0.0006,
+ "loss": 4.452961444854736,
+ "step": 687
+ },
+ {
+ "epoch": 9.55919615552643,
+ "grad_norm": 0.21554753184318542,
+ "learning_rate": 0.0006,
+ "loss": 4.476005554199219,
+ "step": 688
+ },
+ {
+ "epoch": 9.57317605941459,
+ "grad_norm": 0.22775942087173462,
+ "learning_rate": 0.0006,
+ "loss": 4.4479193687438965,
+ "step": 689
+ },
+ {
+ "epoch": 9.587155963302752,
+ "grad_norm": 0.2610701024532318,
+ "learning_rate": 0.0006,
+ "loss": 4.474987506866455,
+ "step": 690
+ },
+ {
+ "epoch": 9.601135867190912,
+ "grad_norm": 0.2394690215587616,
+ "learning_rate": 0.0006,
+ "loss": 4.444857597351074,
+ "step": 691
+ },
+ {
+ "epoch": 9.615115771079074,
+ "grad_norm": 0.20868559181690216,
+ "learning_rate": 0.0006,
+ "loss": 4.4220709800720215,
+ "step": 692
+ },
+ {
+ "epoch": 9.629095674967235,
+ "grad_norm": 0.21869882941246033,
+ "learning_rate": 0.0006,
+ "loss": 4.451737403869629,
+ "step": 693
+ },
+ {
+ "epoch": 9.643075578855395,
+ "grad_norm": 0.1802823394536972,
+ "learning_rate": 0.0006,
+ "loss": 4.409085273742676,
+ "step": 694
+ },
+ {
+ "epoch": 9.657055482743557,
+ "grad_norm": 0.17046281695365906,
+ "learning_rate": 0.0006,
+ "loss": 4.424643516540527,
+ "step": 695
+ },
+ {
+ "epoch": 9.671035386631717,
+ "grad_norm": 0.19561922550201416,
+ "learning_rate": 0.0006,
+ "loss": 4.412302017211914,
+ "step": 696
+ },
+ {
+ "epoch": 9.685015290519878,
+ "grad_norm": 0.21928799152374268,
+ "learning_rate": 0.0006,
+ "loss": 4.427582263946533,
+ "step": 697
+ },
+ {
+ "epoch": 9.698995194408038,
+ "grad_norm": 0.244873046875,
+ "learning_rate": 0.0006,
+ "loss": 4.431827545166016,
+ "step": 698
+ },
+ {
+ "epoch": 9.7129750982962,
+ "grad_norm": 0.2799488604068756,
+ "learning_rate": 0.0006,
+ "loss": 4.407991409301758,
+ "step": 699
+ },
+ {
+ "epoch": 9.72695500218436,
+ "grad_norm": 0.2699538767337799,
+ "learning_rate": 0.0006,
+ "loss": 4.412313461303711,
+ "step": 700
+ },
+ {
+ "epoch": 9.740934906072521,
+ "grad_norm": 0.22293835878372192,
+ "learning_rate": 0.0006,
+ "loss": 4.423369884490967,
+ "step": 701
+ },
+ {
+ "epoch": 9.754914809960681,
+ "grad_norm": 0.21554361283779144,
+ "learning_rate": 0.0006,
+ "loss": 4.42026948928833,
+ "step": 702
+ },
+ {
+ "epoch": 9.768894713848843,
+ "grad_norm": 0.22135840356349945,
+ "learning_rate": 0.0006,
+ "loss": 4.400010108947754,
+ "step": 703
+ },
+ {
+ "epoch": 9.782874617737003,
+ "grad_norm": 0.2169952541589737,
+ "learning_rate": 0.0006,
+ "loss": 4.394582271575928,
+ "step": 704
+ },
+ {
+ "epoch": 9.796854521625164,
+ "grad_norm": 0.18913042545318604,
+ "learning_rate": 0.0006,
+ "loss": 4.395880699157715,
+ "step": 705
+ },
+ {
+ "epoch": 9.810834425513324,
+ "grad_norm": 0.191524475812912,
+ "learning_rate": 0.0006,
+ "loss": 4.378962516784668,
+ "step": 706
+ },
+ {
+ "epoch": 9.824814329401486,
+ "grad_norm": 0.20057640969753265,
+ "learning_rate": 0.0006,
+ "loss": 4.431066513061523,
+ "step": 707
+ },
+ {
+ "epoch": 9.838794233289645,
+ "grad_norm": 0.21670377254486084,
+ "learning_rate": 0.0006,
+ "loss": 4.364682197570801,
+ "step": 708
+ },
+ {
+ "epoch": 9.852774137177807,
+ "grad_norm": 0.21653099358081818,
+ "learning_rate": 0.0006,
+ "loss": 4.4050445556640625,
+ "step": 709
+ },
+ {
+ "epoch": 9.866754041065967,
+ "grad_norm": 0.2217673808336258,
+ "learning_rate": 0.0006,
+ "loss": 4.423664093017578,
+ "step": 710
+ },
+ {
+ "epoch": 9.880733944954128,
+ "grad_norm": 0.251078337430954,
+ "learning_rate": 0.0006,
+ "loss": 4.405768394470215,
+ "step": 711
+ },
+ {
+ "epoch": 9.89471384884229,
+ "grad_norm": 0.28962627053260803,
+ "learning_rate": 0.0006,
+ "loss": 4.421207427978516,
+ "step": 712
+ },
+ {
+ "epoch": 9.90869375273045,
+ "grad_norm": 0.3478074371814728,
+ "learning_rate": 0.0006,
+ "loss": 4.414942741394043,
+ "step": 713
+ },
+ {
+ "epoch": 9.922673656618612,
+ "grad_norm": 0.40396368503570557,
+ "learning_rate": 0.0006,
+ "loss": 4.415163993835449,
+ "step": 714
+ },
+ {
+ "epoch": 9.936653560506771,
+ "grad_norm": 0.3689858019351959,
+ "learning_rate": 0.0006,
+ "loss": 4.381345272064209,
+ "step": 715
+ },
+ {
+ "epoch": 9.950633464394933,
+ "grad_norm": 0.344868004322052,
+ "learning_rate": 0.0006,
+ "loss": 4.433088302612305,
+ "step": 716
+ },
+ {
+ "epoch": 9.964613368283093,
+ "grad_norm": 0.37976378202438354,
+ "learning_rate": 0.0006,
+ "loss": 4.431371212005615,
+ "step": 717
+ },
+ {
+ "epoch": 9.978593272171254,
+ "grad_norm": 0.4354130029678345,
+ "learning_rate": 0.0006,
+ "loss": 4.434148788452148,
+ "step": 718
+ },
+ {
+ "epoch": 9.992573176059414,
+ "grad_norm": 0.35859373211860657,
+ "learning_rate": 0.0006,
+ "loss": 4.428055763244629,
+ "step": 719
+ },
+ {
+ "epoch": 10.0,
+ "grad_norm": 0.3365023732185364,
+ "learning_rate": 0.0006,
+ "loss": 4.3888654708862305,
+ "step": 720
+ },
+ {
+ "epoch": 10.0,
+ "eval_loss": 4.638620853424072,
+ "eval_runtime": 44.3054,
+ "eval_samples_per_second": 55.117,
+ "eval_steps_per_second": 3.453,
+ "step": 720
+ },
+ {
+ "epoch": 10.013979903888162,
+ "grad_norm": 0.3267960250377655,
+ "learning_rate": 0.0006,
+ "loss": 4.386068344116211,
+ "step": 721
+ },
+ {
+ "epoch": 10.027959807776321,
+ "grad_norm": 0.33440953493118286,
+ "learning_rate": 0.0006,
+ "loss": 4.397515296936035,
+ "step": 722
+ },
+ {
+ "epoch": 10.041939711664483,
+ "grad_norm": 0.30047518014907837,
+ "learning_rate": 0.0006,
+ "loss": 4.398358345031738,
+ "step": 723
+ },
+ {
+ "epoch": 10.055919615552643,
+ "grad_norm": 0.2912217378616333,
+ "learning_rate": 0.0006,
+ "loss": 4.341166973114014,
+ "step": 724
+ },
+ {
+ "epoch": 10.069899519440805,
+ "grad_norm": 0.3199564218521118,
+ "learning_rate": 0.0006,
+ "loss": 4.388717174530029,
+ "step": 725
+ },
+ {
+ "epoch": 10.083879423328964,
+ "grad_norm": 0.2765582799911499,
+ "learning_rate": 0.0006,
+ "loss": 4.392992973327637,
+ "step": 726
+ },
+ {
+ "epoch": 10.097859327217126,
+ "grad_norm": 0.27138450741767883,
+ "learning_rate": 0.0006,
+ "loss": 4.382307529449463,
+ "step": 727
+ },
+ {
+ "epoch": 10.111839231105286,
+ "grad_norm": 0.29230645298957825,
+ "learning_rate": 0.0006,
+ "loss": 4.357486724853516,
+ "step": 728
+ },
+ {
+ "epoch": 10.125819134993447,
+ "grad_norm": 0.3127598464488983,
+ "learning_rate": 0.0006,
+ "loss": 4.39072322845459,
+ "step": 729
+ },
+ {
+ "epoch": 10.139799038881607,
+ "grad_norm": 0.3230913281440735,
+ "learning_rate": 0.0006,
+ "loss": 4.35037899017334,
+ "step": 730
+ },
+ {
+ "epoch": 10.153778942769769,
+ "grad_norm": 0.333675354719162,
+ "learning_rate": 0.0006,
+ "loss": 4.378030776977539,
+ "step": 731
+ },
+ {
+ "epoch": 10.167758846657929,
+ "grad_norm": 0.30325770378112793,
+ "learning_rate": 0.0006,
+ "loss": 4.372736930847168,
+ "step": 732
+ },
+ {
+ "epoch": 10.18173875054609,
+ "grad_norm": 0.2888163924217224,
+ "learning_rate": 0.0006,
+ "loss": 4.397604942321777,
+ "step": 733
+ },
+ {
+ "epoch": 10.19571865443425,
+ "grad_norm": 0.3378832936286926,
+ "learning_rate": 0.0006,
+ "loss": 4.395705223083496,
+ "step": 734
+ },
+ {
+ "epoch": 10.209698558322412,
+ "grad_norm": 0.30980268120765686,
+ "learning_rate": 0.0006,
+ "loss": 4.3861212730407715,
+ "step": 735
+ },
+ {
+ "epoch": 10.223678462210572,
+ "grad_norm": 0.2965783178806305,
+ "learning_rate": 0.0006,
+ "loss": 4.394898414611816,
+ "step": 736
+ },
+ {
+ "epoch": 10.237658366098733,
+ "grad_norm": 0.2818217873573303,
+ "learning_rate": 0.0006,
+ "loss": 4.36171817779541,
+ "step": 737
+ },
+ {
+ "epoch": 10.251638269986893,
+ "grad_norm": 0.2418123185634613,
+ "learning_rate": 0.0006,
+ "loss": 4.370945930480957,
+ "step": 738
+ },
+ {
+ "epoch": 10.265618173875055,
+ "grad_norm": 0.22372810542583466,
+ "learning_rate": 0.0006,
+ "loss": 4.354825973510742,
+ "step": 739
+ },
+ {
+ "epoch": 10.279598077763215,
+ "grad_norm": 0.238066166639328,
+ "learning_rate": 0.0006,
+ "loss": 4.376237392425537,
+ "step": 740
+ },
+ {
+ "epoch": 10.293577981651376,
+ "grad_norm": 0.22352449595928192,
+ "learning_rate": 0.0006,
+ "loss": 4.317084312438965,
+ "step": 741
+ },
+ {
+ "epoch": 10.307557885539538,
+ "grad_norm": 0.21685205399990082,
+ "learning_rate": 0.0006,
+ "loss": 4.335271835327148,
+ "step": 742
+ },
+ {
+ "epoch": 10.321537789427698,
+ "grad_norm": 0.19584694504737854,
+ "learning_rate": 0.0006,
+ "loss": 4.357963562011719,
+ "step": 743
+ },
+ {
+ "epoch": 10.33551769331586,
+ "grad_norm": 0.20373336970806122,
+ "learning_rate": 0.0006,
+ "loss": 4.401963233947754,
+ "step": 744
+ },
+ {
+ "epoch": 10.349497597204019,
+ "grad_norm": 0.2247837632894516,
+ "learning_rate": 0.0006,
+ "loss": 4.357202529907227,
+ "step": 745
+ },
+ {
+ "epoch": 10.36347750109218,
+ "grad_norm": 0.2416863739490509,
+ "learning_rate": 0.0006,
+ "loss": 4.364739418029785,
+ "step": 746
+ },
+ {
+ "epoch": 10.37745740498034,
+ "grad_norm": 0.22281162440776825,
+ "learning_rate": 0.0006,
+ "loss": 4.351607799530029,
+ "step": 747
+ },
+ {
+ "epoch": 10.391437308868502,
+ "grad_norm": 0.20751096308231354,
+ "learning_rate": 0.0006,
+ "loss": 4.370017051696777,
+ "step": 748
+ },
+ {
+ "epoch": 10.405417212756662,
+ "grad_norm": 0.19178363680839539,
+ "learning_rate": 0.0006,
+ "loss": 4.360328674316406,
+ "step": 749
+ },
+ {
+ "epoch": 10.419397116644824,
+ "grad_norm": 0.20534078776836395,
+ "learning_rate": 0.0006,
+ "loss": 4.3735432624816895,
+ "step": 750
+ },
+ {
+ "epoch": 10.433377020532983,
+ "grad_norm": 0.20533937215805054,
+ "learning_rate": 0.0006,
+ "loss": 4.326902389526367,
+ "step": 751
+ },
+ {
+ "epoch": 10.447356924421145,
+ "grad_norm": 0.22057875990867615,
+ "learning_rate": 0.0006,
+ "loss": 4.360934257507324,
+ "step": 752
+ },
+ {
+ "epoch": 10.461336828309305,
+ "grad_norm": 0.25568997859954834,
+ "learning_rate": 0.0006,
+ "loss": 4.345063209533691,
+ "step": 753
+ },
+ {
+ "epoch": 10.475316732197467,
+ "grad_norm": 0.31471487879753113,
+ "learning_rate": 0.0006,
+ "loss": 4.324014186859131,
+ "step": 754
+ },
+ {
+ "epoch": 10.489296636085626,
+ "grad_norm": 0.2716822624206543,
+ "learning_rate": 0.0006,
+ "loss": 4.318459510803223,
+ "step": 755
+ },
+ {
+ "epoch": 10.503276539973788,
+ "grad_norm": 0.19552019238471985,
+ "learning_rate": 0.0006,
+ "loss": 4.3367509841918945,
+ "step": 756
+ },
+ {
+ "epoch": 10.517256443861948,
+ "grad_norm": 0.22822986543178558,
+ "learning_rate": 0.0006,
+ "loss": 4.328935623168945,
+ "step": 757
+ },
+ {
+ "epoch": 10.53123634775011,
+ "grad_norm": 0.22282928228378296,
+ "learning_rate": 0.0006,
+ "loss": 4.358272552490234,
+ "step": 758
+ },
+ {
+ "epoch": 10.54521625163827,
+ "grad_norm": 0.23303352296352386,
+ "learning_rate": 0.0006,
+ "loss": 4.336641311645508,
+ "step": 759
+ },
+ {
+ "epoch": 10.55919615552643,
+ "grad_norm": 0.29474690556526184,
+ "learning_rate": 0.0006,
+ "loss": 4.343188285827637,
+ "step": 760
+ },
+ {
+ "epoch": 10.57317605941459,
+ "grad_norm": 0.36269059777259827,
+ "learning_rate": 0.0006,
+ "loss": 4.313019752502441,
+ "step": 761
+ },
+ {
+ "epoch": 10.587155963302752,
+ "grad_norm": 0.3742978870868683,
+ "learning_rate": 0.0006,
+ "loss": 4.361410140991211,
+ "step": 762
+ },
+ {
+ "epoch": 10.601135867190912,
+ "grad_norm": 0.34412163496017456,
+ "learning_rate": 0.0006,
+ "loss": 4.321324825286865,
+ "step": 763
+ },
+ {
+ "epoch": 10.615115771079074,
+ "grad_norm": 0.3464587926864624,
+ "learning_rate": 0.0006,
+ "loss": 4.341907501220703,
+ "step": 764
+ },
+ {
+ "epoch": 10.629095674967235,
+ "grad_norm": 0.3318136930465698,
+ "learning_rate": 0.0006,
+ "loss": 4.329099655151367,
+ "step": 765
+ },
+ {
+ "epoch": 10.643075578855395,
+ "grad_norm": 0.31292903423309326,
+ "learning_rate": 0.0006,
+ "loss": 4.332015037536621,
+ "step": 766
+ },
+ {
+ "epoch": 10.657055482743557,
+ "grad_norm": 0.2904847264289856,
+ "learning_rate": 0.0006,
+ "loss": 4.341764450073242,
+ "step": 767
+ },
+ {
+ "epoch": 10.671035386631717,
+ "grad_norm": 0.3287692666053772,
+ "learning_rate": 0.0006,
+ "loss": 4.342329025268555,
+ "step": 768
+ },
+ {
+ "epoch": 10.685015290519878,
+ "grad_norm": 0.3115365207195282,
+ "learning_rate": 0.0006,
+ "loss": 4.3530073165893555,
+ "step": 769
+ },
+ {
+ "epoch": 10.698995194408038,
+ "grad_norm": 0.24133864045143127,
+ "learning_rate": 0.0006,
+ "loss": 4.321497917175293,
+ "step": 770
+ },
+ {
+ "epoch": 10.7129750982962,
+ "grad_norm": 0.24658630788326263,
+ "learning_rate": 0.0006,
+ "loss": 4.32669734954834,
+ "step": 771
+ },
+ {
+ "epoch": 10.72695500218436,
+ "grad_norm": 0.2342129647731781,
+ "learning_rate": 0.0006,
+ "loss": 4.345459461212158,
+ "step": 772
+ },
+ {
+ "epoch": 10.740934906072521,
+ "grad_norm": 0.23360829055309296,
+ "learning_rate": 0.0006,
+ "loss": 4.33249568939209,
+ "step": 773
+ },
+ {
+ "epoch": 10.754914809960681,
+ "grad_norm": 0.24314677715301514,
+ "learning_rate": 0.0006,
+ "loss": 4.30499792098999,
+ "step": 774
+ },
+ {
+ "epoch": 10.768894713848843,
+ "grad_norm": 0.22105181217193604,
+ "learning_rate": 0.0006,
+ "loss": 4.33706521987915,
+ "step": 775
+ },
+ {
+ "epoch": 10.782874617737003,
+ "grad_norm": 0.23307174444198608,
+ "learning_rate": 0.0006,
+ "loss": 4.320387840270996,
+ "step": 776
+ },
+ {
+ "epoch": 10.796854521625164,
+ "grad_norm": 0.24946169555187225,
+ "learning_rate": 0.0006,
+ "loss": 4.316012382507324,
+ "step": 777
+ },
+ {
+ "epoch": 10.810834425513324,
+ "grad_norm": 0.26023536920547485,
+ "learning_rate": 0.0006,
+ "loss": 4.315193176269531,
+ "step": 778
+ },
+ {
+ "epoch": 10.824814329401486,
+ "grad_norm": 0.2688547968864441,
+ "learning_rate": 0.0006,
+ "loss": 4.3243255615234375,
+ "step": 779
+ },
+ {
+ "epoch": 10.838794233289645,
+ "grad_norm": 0.28188297152519226,
+ "learning_rate": 0.0006,
+ "loss": 4.3202972412109375,
+ "step": 780
+ },
+ {
+ "epoch": 10.852774137177807,
+ "grad_norm": 0.2890053689479828,
+ "learning_rate": 0.0006,
+ "loss": 4.318799018859863,
+ "step": 781
+ },
+ {
+ "epoch": 10.866754041065967,
+ "grad_norm": 0.2914353013038635,
+ "learning_rate": 0.0006,
+ "loss": 4.314262390136719,
+ "step": 782
+ },
+ {
+ "epoch": 10.880733944954128,
+ "grad_norm": 0.3145572543144226,
+ "learning_rate": 0.0006,
+ "loss": 4.339262008666992,
+ "step": 783
+ },
+ {
+ "epoch": 10.89471384884229,
+ "grad_norm": 0.323062002658844,
+ "learning_rate": 0.0006,
+ "loss": 4.354856491088867,
+ "step": 784
+ },
+ {
+ "epoch": 10.90869375273045,
+ "grad_norm": 0.32741227746009827,
+ "learning_rate": 0.0006,
+ "loss": 4.325577735900879,
+ "step": 785
+ },
+ {
+ "epoch": 10.922673656618612,
+ "grad_norm": 0.2855733036994934,
+ "learning_rate": 0.0006,
+ "loss": 4.324419021606445,
+ "step": 786
+ },
+ {
+ "epoch": 10.936653560506771,
+ "grad_norm": 0.2969444990158081,
+ "learning_rate": 0.0006,
+ "loss": 4.320681095123291,
+ "step": 787
+ },
+ {
+ "epoch": 10.950633464394933,
+ "grad_norm": 0.28108111023902893,
+ "learning_rate": 0.0006,
+ "loss": 4.32673454284668,
+ "step": 788
+ },
+ {
+ "epoch": 10.964613368283093,
+ "grad_norm": 0.2537972629070282,
+ "learning_rate": 0.0006,
+ "loss": 4.3197021484375,
+ "step": 789
+ },
+ {
+ "epoch": 10.978593272171254,
+ "grad_norm": 0.2354544699192047,
+ "learning_rate": 0.0006,
+ "loss": 4.3354973793029785,
+ "step": 790
+ },
+ {
+ "epoch": 10.992573176059414,
+ "grad_norm": 0.26195117831230164,
+ "learning_rate": 0.0006,
+ "loss": 4.3172526359558105,
+ "step": 791
+ },
+ {
+ "epoch": 11.0,
+ "grad_norm": 0.27089616656303406,
+ "learning_rate": 0.0006,
+ "loss": 4.324293613433838,
+ "step": 792
+ },
+ {
+ "epoch": 11.0,
+ "eval_loss": 4.531813621520996,
+ "eval_runtime": 44.1656,
+ "eval_samples_per_second": 55.292,
+ "eval_steps_per_second": 3.464,
+ "step": 792
+ },
+ {
+ "epoch": 11.013979903888162,
+ "grad_norm": 0.2526339590549469,
+ "learning_rate": 0.0006,
+ "loss": 4.287600517272949,
+ "step": 793
+ },
+ {
+ "epoch": 11.027959807776321,
+ "grad_norm": 0.24318458139896393,
+ "learning_rate": 0.0006,
+ "loss": 4.268078327178955,
+ "step": 794
+ },
+ {
+ "epoch": 11.041939711664483,
+ "grad_norm": 0.2450830638408661,
+ "learning_rate": 0.0006,
+ "loss": 4.265467643737793,
+ "step": 795
+ },
+ {
+ "epoch": 11.055919615552643,
+ "grad_norm": 0.23963099718093872,
+ "learning_rate": 0.0006,
+ "loss": 4.267931938171387,
+ "step": 796
+ },
+ {
+ "epoch": 11.069899519440805,
+ "grad_norm": 0.2488657534122467,
+ "learning_rate": 0.0006,
+ "loss": 4.30262565612793,
+ "step": 797
+ },
+ {
+ "epoch": 11.083879423328964,
+ "grad_norm": 0.2319781631231308,
+ "learning_rate": 0.0006,
+ "loss": 4.28665828704834,
+ "step": 798
+ },
+ {
+ "epoch": 11.097859327217126,
+ "grad_norm": 0.2425263375043869,
+ "learning_rate": 0.0006,
+ "loss": 4.284830570220947,
+ "step": 799
+ },
+ {
+ "epoch": 11.111839231105286,
+ "grad_norm": 0.23096567392349243,
+ "learning_rate": 0.0006,
+ "loss": 4.2817206382751465,
+ "step": 800
+ },
+ {
+ "epoch": 11.125819134993447,
+ "grad_norm": 0.2846364676952362,
+ "learning_rate": 0.0006,
+ "loss": 4.276104927062988,
+ "step": 801
+ },
+ {
+ "epoch": 11.139799038881607,
+ "grad_norm": 0.2984965741634369,
+ "learning_rate": 0.0006,
+ "loss": 4.2909650802612305,
+ "step": 802
+ },
+ {
+ "epoch": 11.153778942769769,
+ "grad_norm": 0.2841213643550873,
+ "learning_rate": 0.0006,
+ "loss": 4.283358097076416,
+ "step": 803
+ },
+ {
+ "epoch": 11.167758846657929,
+ "grad_norm": 0.29192933440208435,
+ "learning_rate": 0.0006,
+ "loss": 4.267040729522705,
+ "step": 804
+ },
+ {
+ "epoch": 11.18173875054609,
+ "grad_norm": 0.3254184126853943,
+ "learning_rate": 0.0006,
+ "loss": 4.301564693450928,
+ "step": 805
+ },
+ {
+ "epoch": 11.19571865443425,
+ "grad_norm": 0.3347095847129822,
+ "learning_rate": 0.0006,
+ "loss": 4.271395683288574,
+ "step": 806
+ },
+ {
+ "epoch": 11.209698558322412,
+ "grad_norm": 0.25609350204467773,
+ "learning_rate": 0.0006,
+ "loss": 4.2963056564331055,
+ "step": 807
+ },
+ {
+ "epoch": 11.223678462210572,
+ "grad_norm": 0.29272061586380005,
+ "learning_rate": 0.0006,
+ "loss": 4.298416614532471,
+ "step": 808
+ },
+ {
+ "epoch": 11.237658366098733,
+ "grad_norm": 0.32179465889930725,
+ "learning_rate": 0.0006,
+ "loss": 4.294036865234375,
+ "step": 809
+ },
+ {
+ "epoch": 11.251638269986893,
+ "grad_norm": 0.3336549401283264,
+ "learning_rate": 0.0006,
+ "loss": 4.291993141174316,
+ "step": 810
+ },
+ {
+ "epoch": 11.265618173875055,
+ "grad_norm": 0.32273536920547485,
+ "learning_rate": 0.0006,
+ "loss": 4.311004638671875,
+ "step": 811
+ },
+ {
+ "epoch": 11.279598077763215,
+ "grad_norm": 0.3575087785720825,
+ "learning_rate": 0.0006,
+ "loss": 4.300217628479004,
+ "step": 812
+ },
+ {
+ "epoch": 11.293577981651376,
+ "grad_norm": 0.3332885205745697,
+ "learning_rate": 0.0006,
+ "loss": 4.278337478637695,
+ "step": 813
+ },
+ {
+ "epoch": 11.307557885539538,
+ "grad_norm": 0.31440407037734985,
+ "learning_rate": 0.0006,
+ "loss": 4.273826599121094,
+ "step": 814
+ },
+ {
+ "epoch": 11.321537789427698,
+ "grad_norm": 0.29822009801864624,
+ "learning_rate": 0.0006,
+ "loss": 4.284292221069336,
+ "step": 815
+ },
+ {
+ "epoch": 11.33551769331586,
+ "grad_norm": 0.30695512890815735,
+ "learning_rate": 0.0006,
+ "loss": 4.2831926345825195,
+ "step": 816
+ },
+ {
+ "epoch": 11.349497597204019,
+ "grad_norm": 0.30576950311660767,
+ "learning_rate": 0.0006,
+ "loss": 4.277133464813232,
+ "step": 817
+ },
+ {
+ "epoch": 11.36347750109218,
+ "grad_norm": 0.2859647870063782,
+ "learning_rate": 0.0006,
+ "loss": 4.3130106925964355,
+ "step": 818
+ },
+ {
+ "epoch": 11.37745740498034,
+ "grad_norm": 0.32417574524879456,
+ "learning_rate": 0.0006,
+ "loss": 4.310303211212158,
+ "step": 819
+ },
+ {
+ "epoch": 11.391437308868502,
+ "grad_norm": 0.3512463867664337,
+ "learning_rate": 0.0006,
+ "loss": 4.287015438079834,
+ "step": 820
+ },
+ {
+ "epoch": 11.405417212756662,
+ "grad_norm": 0.32578620314598083,
+ "learning_rate": 0.0006,
+ "loss": 4.2957940101623535,
+ "step": 821
+ },
+ {
+ "epoch": 11.419397116644824,
+ "grad_norm": 0.287949800491333,
+ "learning_rate": 0.0006,
+ "loss": 4.2881879806518555,
+ "step": 822
+ },
+ {
+ "epoch": 11.433377020532983,
+ "grad_norm": 0.28048595786094666,
+ "learning_rate": 0.0006,
+ "loss": 4.274960517883301,
+ "step": 823
+ },
+ {
+ "epoch": 11.447356924421145,
+ "grad_norm": 0.2541540563106537,
+ "learning_rate": 0.0006,
+ "loss": 4.261083602905273,
+ "step": 824
+ },
+ {
+ "epoch": 11.461336828309305,
+ "grad_norm": 0.2348361313343048,
+ "learning_rate": 0.0006,
+ "loss": 4.271036148071289,
+ "step": 825
+ },
+ {
+ "epoch": 11.475316732197467,
+ "grad_norm": 0.20913535356521606,
+ "learning_rate": 0.0006,
+ "loss": 4.307661056518555,
+ "step": 826
+ },
+ {
+ "epoch": 11.489296636085626,
+ "grad_norm": 0.22298868000507355,
+ "learning_rate": 0.0006,
+ "loss": 4.26902961730957,
+ "step": 827
+ },
+ {
+ "epoch": 11.503276539973788,
+ "grad_norm": 0.22752761840820312,
+ "learning_rate": 0.0006,
+ "loss": 4.305529594421387,
+ "step": 828
+ },
+ {
+ "epoch": 11.517256443861948,
+ "grad_norm": 0.2149917483329773,
+ "learning_rate": 0.0006,
+ "loss": 4.25134801864624,
+ "step": 829
+ },
+ {
+ "epoch": 11.53123634775011,
+ "grad_norm": 0.21085695922374725,
+ "learning_rate": 0.0006,
+ "loss": 4.266982078552246,
+ "step": 830
+ },
+ {
+ "epoch": 11.54521625163827,
+ "grad_norm": 0.21586747467517853,
+ "learning_rate": 0.0006,
+ "loss": 4.235255718231201,
+ "step": 831
+ },
+ {
+ "epoch": 11.55919615552643,
+ "grad_norm": 0.2520856559276581,
+ "learning_rate": 0.0006,
+ "loss": 4.283442497253418,
+ "step": 832
+ },
+ {
+ "epoch": 11.57317605941459,
+ "grad_norm": 0.2825471758842468,
+ "learning_rate": 0.0006,
+ "loss": 4.234672546386719,
+ "step": 833
+ },
+ {
+ "epoch": 11.587155963302752,
+ "grad_norm": 0.27437824010849,
+ "learning_rate": 0.0006,
+ "loss": 4.246068000793457,
+ "step": 834
+ },
+ {
+ "epoch": 11.601135867190912,
+ "grad_norm": 0.2596757411956787,
+ "learning_rate": 0.0006,
+ "loss": 4.278448104858398,
+ "step": 835
+ },
+ {
+ "epoch": 11.615115771079074,
+ "grad_norm": 0.25663474202156067,
+ "learning_rate": 0.0006,
+ "loss": 4.308779716491699,
+ "step": 836
+ },
+ {
+ "epoch": 11.629095674967235,
+ "grad_norm": 0.2546203136444092,
+ "learning_rate": 0.0006,
+ "loss": 4.261247634887695,
+ "step": 837
+ },
+ {
+ "epoch": 11.643075578855395,
+ "grad_norm": 0.24722838401794434,
+ "learning_rate": 0.0006,
+ "loss": 4.275888442993164,
+ "step": 838
+ },
+ {
+ "epoch": 11.657055482743557,
+ "grad_norm": 0.3022806644439697,
+ "learning_rate": 0.0006,
+ "loss": 4.2572407722473145,
+ "step": 839
+ },
+ {
+ "epoch": 11.671035386631717,
+ "grad_norm": 0.31170839071273804,
+ "learning_rate": 0.0006,
+ "loss": 4.26992654800415,
+ "step": 840
+ },
+ {
+ "epoch": 11.685015290519878,
+ "grad_norm": 0.31362825632095337,
+ "learning_rate": 0.0006,
+ "loss": 4.2354655265808105,
+ "step": 841
+ },
+ {
+ "epoch": 11.698995194408038,
+ "grad_norm": 0.28741633892059326,
+ "learning_rate": 0.0006,
+ "loss": 4.263496398925781,
+ "step": 842
+ },
+ {
+ "epoch": 11.7129750982962,
+ "grad_norm": 0.2492494285106659,
+ "learning_rate": 0.0006,
+ "loss": 4.26463508605957,
+ "step": 843
+ },
+ {
+ "epoch": 11.72695500218436,
+ "grad_norm": 0.24324660003185272,
+ "learning_rate": 0.0006,
+ "loss": 4.245428085327148,
+ "step": 844
+ },
+ {
+ "epoch": 11.740934906072521,
+ "grad_norm": 0.23591114580631256,
+ "learning_rate": 0.0006,
+ "loss": 4.249845504760742,
+ "step": 845
+ },
+ {
+ "epoch": 11.754914809960681,
+ "grad_norm": 0.2202281504869461,
+ "learning_rate": 0.0006,
+ "loss": 4.245006084442139,
+ "step": 846
+ },
+ {
+ "epoch": 11.768894713848843,
+ "grad_norm": 0.22117942571640015,
+ "learning_rate": 0.0006,
+ "loss": 4.27812385559082,
+ "step": 847
+ },
+ {
+ "epoch": 11.782874617737003,
+ "grad_norm": 0.26361414790153503,
+ "learning_rate": 0.0006,
+ "loss": 4.250475883483887,
+ "step": 848
+ },
+ {
+ "epoch": 11.796854521625164,
+ "grad_norm": 0.2820321321487427,
+ "learning_rate": 0.0006,
+ "loss": 4.265835762023926,
+ "step": 849
+ },
+ {
+ "epoch": 11.810834425513324,
+ "grad_norm": 0.2078961282968521,
+ "learning_rate": 0.0006,
+ "loss": 4.251298904418945,
+ "step": 850
+ },
+ {
+ "epoch": 11.824814329401486,
+ "grad_norm": 0.21548646688461304,
+ "learning_rate": 0.0006,
+ "loss": 4.288539886474609,
+ "step": 851
+ },
+ {
+ "epoch": 11.838794233289645,
+ "grad_norm": 0.22719401121139526,
+ "learning_rate": 0.0006,
+ "loss": 4.252035140991211,
+ "step": 852
+ },
+ {
+ "epoch": 11.852774137177807,
+ "grad_norm": 0.21628320217132568,
+ "learning_rate": 0.0006,
+ "loss": 4.268622398376465,
+ "step": 853
+ },
+ {
+ "epoch": 11.866754041065967,
+ "grad_norm": 0.20855145156383514,
+ "learning_rate": 0.0006,
+ "loss": 4.253366470336914,
+ "step": 854
+ },
+ {
+ "epoch": 11.880733944954128,
+ "grad_norm": 0.2091914266347885,
+ "learning_rate": 0.0006,
+ "loss": 4.237805366516113,
+ "step": 855
+ },
+ {
+ "epoch": 11.89471384884229,
+ "grad_norm": 0.2000127136707306,
+ "learning_rate": 0.0006,
+ "loss": 4.268559455871582,
+ "step": 856
+ },
+ {
+ "epoch": 11.90869375273045,
+ "grad_norm": 0.21080894768238068,
+ "learning_rate": 0.0006,
+ "loss": 4.208702087402344,
+ "step": 857
+ },
+ {
+ "epoch": 11.922673656618612,
+ "grad_norm": 0.22125796973705292,
+ "learning_rate": 0.0006,
+ "loss": 4.250210762023926,
+ "step": 858
+ },
+ {
+ "epoch": 11.936653560506771,
+ "grad_norm": 0.25905469059944153,
+ "learning_rate": 0.0006,
+ "loss": 4.2263593673706055,
+ "step": 859
+ },
+ {
+ "epoch": 11.950633464394933,
+ "grad_norm": 0.29970306158065796,
+ "learning_rate": 0.0006,
+ "loss": 4.250848770141602,
+ "step": 860
+ },
+ {
+ "epoch": 11.964613368283093,
+ "grad_norm": 0.28155168890953064,
+ "learning_rate": 0.0006,
+ "loss": 4.272709369659424,
+ "step": 861
+ },
+ {
+ "epoch": 11.978593272171254,
+ "grad_norm": 0.23396113514900208,
+ "learning_rate": 0.0006,
+ "loss": 4.2674970626831055,
+ "step": 862
+ },
+ {
+ "epoch": 11.992573176059414,
+ "grad_norm": 0.23619577288627625,
+ "learning_rate": 0.0006,
+ "loss": 4.240267753601074,
+ "step": 863
+ },
+ {
+ "epoch": 12.0,
+ "grad_norm": 0.2779577076435089,
+ "learning_rate": 0.0006,
+ "loss": 4.267625331878662,
+ "step": 864
+ },
+ {
+ "epoch": 12.0,
+ "eval_loss": 4.437657356262207,
+ "eval_runtime": 44.4959,
+ "eval_samples_per_second": 54.881,
+ "eval_steps_per_second": 3.439,
+ "step": 864
+ },
+ {
+ "epoch": 12.013979903888162,
+ "grad_norm": 0.2948288321495056,
+ "learning_rate": 0.0006,
+ "loss": 4.232182502746582,
+ "step": 865
+ },
+ {
+ "epoch": 12.027959807776321,
+ "grad_norm": 0.3715663254261017,
+ "learning_rate": 0.0006,
+ "loss": 4.233771324157715,
+ "step": 866
+ },
+ {
+ "epoch": 12.041939711664483,
+ "grad_norm": 0.38358673453330994,
+ "learning_rate": 0.0006,
+ "loss": 4.208967685699463,
+ "step": 867
+ },
+ {
+ "epoch": 12.055919615552643,
+ "grad_norm": 0.3314538896083832,
+ "learning_rate": 0.0006,
+ "loss": 4.230685234069824,
+ "step": 868
+ },
+ {
+ "epoch": 12.069899519440805,
+ "grad_norm": 0.34171539545059204,
+ "learning_rate": 0.0006,
+ "loss": 4.231358528137207,
+ "step": 869
+ },
+ {
+ "epoch": 12.083879423328964,
+ "grad_norm": 0.3253359794616699,
+ "learning_rate": 0.0006,
+ "loss": 4.276405334472656,
+ "step": 870
+ },
+ {
+ "epoch": 12.097859327217126,
+ "grad_norm": 0.29008302092552185,
+ "learning_rate": 0.0006,
+ "loss": 4.232935905456543,
+ "step": 871
+ },
+ {
+ "epoch": 12.111839231105286,
+ "grad_norm": 0.28490355610847473,
+ "learning_rate": 0.0006,
+ "loss": 4.238036632537842,
+ "step": 872
+ },
+ {
+ "epoch": 12.125819134993447,
+ "grad_norm": 0.28446322679519653,
+ "learning_rate": 0.0006,
+ "loss": 4.210229873657227,
+ "step": 873
+ },
+ {
+ "epoch": 12.139799038881607,
+ "grad_norm": 0.29664531350135803,
+ "learning_rate": 0.0006,
+ "loss": 4.221309185028076,
+ "step": 874
+ },
+ {
+ "epoch": 12.153778942769769,
+ "grad_norm": 0.3083505928516388,
+ "learning_rate": 0.0006,
+ "loss": 4.221837997436523,
+ "step": 875
+ },
+ {
+ "epoch": 12.167758846657929,
+ "grad_norm": 0.3282921314239502,
+ "learning_rate": 0.0006,
+ "loss": 4.236713409423828,
+ "step": 876
+ },
+ {
+ "epoch": 12.18173875054609,
+ "grad_norm": 0.3603622615337372,
+ "learning_rate": 0.0006,
+ "loss": 4.245080947875977,
+ "step": 877
+ },
+ {
+ "epoch": 12.19571865443425,
+ "grad_norm": 0.38070905208587646,
+ "learning_rate": 0.0006,
+ "loss": 4.240756988525391,
+ "step": 878
+ },
+ {
+ "epoch": 12.209698558322412,
+ "grad_norm": 0.34479081630706787,
+ "learning_rate": 0.0006,
+ "loss": 4.200998306274414,
+ "step": 879
+ },
+ {
+ "epoch": 12.223678462210572,
+ "grad_norm": 0.3006879389286041,
+ "learning_rate": 0.0006,
+ "loss": 4.23531436920166,
+ "step": 880
+ },
+ {
+ "epoch": 12.237658366098733,
+ "grad_norm": 0.36835649609565735,
+ "learning_rate": 0.0006,
+ "loss": 4.229718208312988,
+ "step": 881
+ },
+ {
+ "epoch": 12.251638269986893,
+ "grad_norm": 0.4386984407901764,
+ "learning_rate": 0.0006,
+ "loss": 4.241188049316406,
+ "step": 882
+ },
+ {
+ "epoch": 12.265618173875055,
+ "grad_norm": 0.4442787170410156,
+ "learning_rate": 0.0006,
+ "loss": 4.239102840423584,
+ "step": 883
+ },
+ {
+ "epoch": 12.279598077763215,
+ "grad_norm": 0.324411541223526,
+ "learning_rate": 0.0006,
+ "loss": 4.198982238769531,
+ "step": 884
+ },
+ {
+ "epoch": 12.293577981651376,
+ "grad_norm": 0.2824151813983917,
+ "learning_rate": 0.0006,
+ "loss": 4.248816967010498,
+ "step": 885
+ },
+ {
+ "epoch": 12.307557885539538,
+ "grad_norm": 0.31407129764556885,
+ "learning_rate": 0.0006,
+ "loss": 4.2371320724487305,
+ "step": 886
+ },
+ {
+ "epoch": 12.321537789427698,
+ "grad_norm": 0.32920050621032715,
+ "learning_rate": 0.0006,
+ "loss": 4.210432052612305,
+ "step": 887
+ },
+ {
+ "epoch": 12.33551769331586,
+ "grad_norm": 0.315231055021286,
+ "learning_rate": 0.0006,
+ "loss": 4.219416618347168,
+ "step": 888
+ },
+ {
+ "epoch": 12.349497597204019,
+ "grad_norm": 0.30932050943374634,
+ "learning_rate": 0.0006,
+ "loss": 4.225022315979004,
+ "step": 889
+ },
+ {
+ "epoch": 12.36347750109218,
+ "grad_norm": 0.30242064595222473,
+ "learning_rate": 0.0006,
+ "loss": 4.2738518714904785,
+ "step": 890
+ },
+ {
+ "epoch": 12.37745740498034,
+ "grad_norm": 0.2926250994205475,
+ "learning_rate": 0.0006,
+ "loss": 4.231094837188721,
+ "step": 891
+ },
+ {
+ "epoch": 12.391437308868502,
+ "grad_norm": 0.2541215717792511,
+ "learning_rate": 0.0006,
+ "loss": 4.211821556091309,
+ "step": 892
+ },
+ {
+ "epoch": 12.405417212756662,
+ "grad_norm": 0.23693418502807617,
+ "learning_rate": 0.0006,
+ "loss": 4.208099365234375,
+ "step": 893
+ },
+ {
+ "epoch": 12.419397116644824,
+ "grad_norm": 0.22063226997852325,
+ "learning_rate": 0.0006,
+ "loss": 4.211234092712402,
+ "step": 894
+ },
+ {
+ "epoch": 12.433377020532983,
+ "grad_norm": 0.21536271274089813,
+ "learning_rate": 0.0006,
+ "loss": 4.199228286743164,
+ "step": 895
+ },
+ {
+ "epoch": 12.447356924421145,
+ "grad_norm": 0.243179589509964,
+ "learning_rate": 0.0006,
+ "loss": 4.204344749450684,
+ "step": 896
+ },
+ {
+ "epoch": 12.461336828309305,
+ "grad_norm": 0.2299746423959732,
+ "learning_rate": 0.0006,
+ "loss": 4.1565752029418945,
+ "step": 897
+ },
+ {
+ "epoch": 12.475316732197467,
+ "grad_norm": 0.2286847084760666,
+ "learning_rate": 0.0006,
+ "loss": 4.242953777313232,
+ "step": 898
+ },
+ {
+ "epoch": 12.489296636085626,
+ "grad_norm": 0.19463586807250977,
+ "learning_rate": 0.0006,
+ "loss": 4.214809417724609,
+ "step": 899
+ },
+ {
+ "epoch": 12.503276539973788,
+ "grad_norm": 0.1978398710489273,
+ "learning_rate": 0.0006,
+ "loss": 4.159815311431885,
+ "step": 900
+ },
+ {
+ "epoch": 12.517256443861948,
+ "grad_norm": 0.23177850246429443,
+ "learning_rate": 0.0006,
+ "loss": 4.2069902420043945,
+ "step": 901
+ },
+ {
+ "epoch": 12.53123634775011,
+ "grad_norm": 0.2408912032842636,
+ "learning_rate": 0.0006,
+ "loss": 4.206778526306152,
+ "step": 902
+ },
+ {
+ "epoch": 12.54521625163827,
+ "grad_norm": 0.21839919686317444,
+ "learning_rate": 0.0006,
+ "loss": 4.197076320648193,
+ "step": 903
+ },
+ {
+ "epoch": 12.55919615552643,
+ "grad_norm": 0.2053343504667282,
+ "learning_rate": 0.0006,
+ "loss": 4.21247673034668,
+ "step": 904
+ },
+ {
+ "epoch": 12.57317605941459,
+ "grad_norm": 0.19943439960479736,
+ "learning_rate": 0.0006,
+ "loss": 4.176966667175293,
+ "step": 905
+ },
+ {
+ "epoch": 12.587155963302752,
+ "grad_norm": 0.2012074887752533,
+ "learning_rate": 0.0006,
+ "loss": 4.210303783416748,
+ "step": 906
+ },
+ {
+ "epoch": 12.601135867190912,
+ "grad_norm": 0.22240376472473145,
+ "learning_rate": 0.0006,
+ "loss": 4.200625896453857,
+ "step": 907
+ },
+ {
+ "epoch": 12.615115771079074,
+ "grad_norm": 0.21729710698127747,
+ "learning_rate": 0.0006,
+ "loss": 4.2001953125,
+ "step": 908
+ },
+ {
+ "epoch": 12.629095674967235,
+ "grad_norm": 0.22470413148403168,
+ "learning_rate": 0.0006,
+ "loss": 4.197505950927734,
+ "step": 909
+ },
+ {
+ "epoch": 12.643075578855395,
+ "grad_norm": 0.23776157200336456,
+ "learning_rate": 0.0006,
+ "loss": 4.235603332519531,
+ "step": 910
+ },
+ {
+ "epoch": 12.657055482743557,
+ "grad_norm": 0.20616604387760162,
+ "learning_rate": 0.0006,
+ "loss": 4.193584442138672,
+ "step": 911
+ },
+ {
+ "epoch": 12.671035386631717,
+ "grad_norm": 0.1913922131061554,
+ "learning_rate": 0.0006,
+ "loss": 4.209191799163818,
+ "step": 912
+ },
+ {
+ "epoch": 12.685015290519878,
+ "grad_norm": 0.19427193701267242,
+ "learning_rate": 0.0006,
+ "loss": 4.219709396362305,
+ "step": 913
+ },
+ {
+ "epoch": 12.698995194408038,
+ "grad_norm": 0.20976558327674866,
+ "learning_rate": 0.0006,
+ "loss": 4.210859298706055,
+ "step": 914
+ },
+ {
+ "epoch": 12.7129750982962,
+ "grad_norm": 0.21571609377861023,
+ "learning_rate": 0.0006,
+ "loss": 4.189394950866699,
+ "step": 915
+ },
+ {
+ "epoch": 12.72695500218436,
+ "grad_norm": 0.2152620255947113,
+ "learning_rate": 0.0006,
+ "loss": 4.223589897155762,
+ "step": 916
+ },
+ {
+ "epoch": 12.740934906072521,
+ "grad_norm": 0.21867749094963074,
+ "learning_rate": 0.0006,
+ "loss": 4.198590278625488,
+ "step": 917
+ },
+ {
+ "epoch": 12.754914809960681,
+ "grad_norm": 0.22300855815410614,
+ "learning_rate": 0.0006,
+ "loss": 4.188891410827637,
+ "step": 918
+ },
+ {
+ "epoch": 12.768894713848843,
+ "grad_norm": 0.22197802364826202,
+ "learning_rate": 0.0006,
+ "loss": 4.190221309661865,
+ "step": 919
+ },
+ {
+ "epoch": 12.782874617737003,
+ "grad_norm": 0.20003341138362885,
+ "learning_rate": 0.0006,
+ "loss": 4.215453147888184,
+ "step": 920
+ },
+ {
+ "epoch": 12.796854521625164,
+ "grad_norm": 0.19887958467006683,
+ "learning_rate": 0.0006,
+ "loss": 4.18174934387207,
+ "step": 921
+ },
+ {
+ "epoch": 12.810834425513324,
+ "grad_norm": 0.20945803821086884,
+ "learning_rate": 0.0006,
+ "loss": 4.234947204589844,
+ "step": 922
+ },
+ {
+ "epoch": 12.824814329401486,
+ "grad_norm": 0.2253490388393402,
+ "learning_rate": 0.0006,
+ "loss": 4.2177228927612305,
+ "step": 923
+ },
+ {
+ "epoch": 12.838794233289645,
+ "grad_norm": 0.247610405087471,
+ "learning_rate": 0.0006,
+ "loss": 4.2013139724731445,
+ "step": 924
+ },
+ {
+ "epoch": 12.852774137177807,
+ "grad_norm": 0.2792088985443115,
+ "learning_rate": 0.0006,
+ "loss": 4.204774379730225,
+ "step": 925
+ },
+ {
+ "epoch": 12.866754041065967,
+ "grad_norm": 0.2839066982269287,
+ "learning_rate": 0.0006,
+ "loss": 4.186254978179932,
+ "step": 926
+ },
+ {
+ "epoch": 12.880733944954128,
+ "grad_norm": 0.2793181836605072,
+ "learning_rate": 0.0006,
+ "loss": 4.172411918640137,
+ "step": 927
+ },
+ {
+ "epoch": 12.89471384884229,
+ "grad_norm": 0.29506033658981323,
+ "learning_rate": 0.0006,
+ "loss": 4.202878475189209,
+ "step": 928
+ },
+ {
+ "epoch": 12.90869375273045,
+ "grad_norm": 0.2799845039844513,
+ "learning_rate": 0.0006,
+ "loss": 4.1563310623168945,
+ "step": 929
+ },
+ {
+ "epoch": 12.922673656618612,
+ "grad_norm": 0.23972125351428986,
+ "learning_rate": 0.0006,
+ "loss": 4.224601745605469,
+ "step": 930
+ },
+ {
+ "epoch": 12.936653560506771,
+ "grad_norm": 0.21558353304862976,
+ "learning_rate": 0.0006,
+ "loss": 4.167957305908203,
+ "step": 931
+ },
+ {
+ "epoch": 12.950633464394933,
+ "grad_norm": 0.21800188720226288,
+ "learning_rate": 0.0006,
+ "loss": 4.1746039390563965,
+ "step": 932
+ },
+ {
+ "epoch": 12.964613368283093,
+ "grad_norm": 0.2086547315120697,
+ "learning_rate": 0.0006,
+ "loss": 4.188137054443359,
+ "step": 933
+ },
+ {
+ "epoch": 12.978593272171254,
+ "grad_norm": 0.2174186110496521,
+ "learning_rate": 0.0006,
+ "loss": 4.184014320373535,
+ "step": 934
+ },
+ {
+ "epoch": 12.992573176059414,
+ "grad_norm": 0.22755110263824463,
+ "learning_rate": 0.0006,
+ "loss": 4.180912017822266,
+ "step": 935
+ },
+ {
+ "epoch": 13.0,
+ "grad_norm": 0.2735324203968048,
+ "learning_rate": 0.0006,
+ "loss": 4.201578617095947,
+ "step": 936
+ },
+ {
+ "epoch": 13.0,
+ "eval_loss": 4.396903038024902,
+ "eval_runtime": 44.5664,
+ "eval_samples_per_second": 54.795,
+ "eval_steps_per_second": 3.433,
+ "step": 936
+ },
+ {
+ "epoch": 13.013979903888162,
+ "grad_norm": 0.27577832341194153,
+ "learning_rate": 0.0006,
+ "loss": 4.149985313415527,
+ "step": 937
+ },
+ {
+ "epoch": 13.027959807776321,
+ "grad_norm": 0.25817009806632996,
+ "learning_rate": 0.0006,
+ "loss": 4.1526103019714355,
+ "step": 938
+ },
+ {
+ "epoch": 13.041939711664483,
+ "grad_norm": 0.24564379453659058,
+ "learning_rate": 0.0006,
+ "loss": 4.1661152839660645,
+ "step": 939
+ },
+ {
+ "epoch": 13.055919615552643,
+ "grad_norm": 0.2465466856956482,
+ "learning_rate": 0.0006,
+ "loss": 4.152953624725342,
+ "step": 940
+ },
+ {
+ "epoch": 13.069899519440805,
+ "grad_norm": 0.22702018916606903,
+ "learning_rate": 0.0006,
+ "loss": 4.145125389099121,
+ "step": 941
+ },
+ {
+ "epoch": 13.083879423328964,
+ "grad_norm": 0.24350613355636597,
+ "learning_rate": 0.0006,
+ "loss": 4.163095474243164,
+ "step": 942
+ },
+ {
+ "epoch": 13.097859327217126,
+ "grad_norm": 0.2504431903362274,
+ "learning_rate": 0.0006,
+ "loss": 4.136016845703125,
+ "step": 943
+ },
+ {
+ "epoch": 13.111839231105286,
+ "grad_norm": 0.24968865513801575,
+ "learning_rate": 0.0006,
+ "loss": 4.163487911224365,
+ "step": 944
+ },
+ {
+ "epoch": 13.125819134993447,
+ "grad_norm": 0.27164196968078613,
+ "learning_rate": 0.0006,
+ "loss": 4.1194353103637695,
+ "step": 945
+ },
+ {
+ "epoch": 13.139799038881607,
+ "grad_norm": 0.28127020597457886,
+ "learning_rate": 0.0006,
+ "loss": 4.184807300567627,
+ "step": 946
+ },
+ {
+ "epoch": 13.153778942769769,
+ "grad_norm": 0.24574966728687286,
+ "learning_rate": 0.0006,
+ "loss": 4.154998779296875,
+ "step": 947
+ },
+ {
+ "epoch": 13.167758846657929,
+ "grad_norm": 0.22310060262680054,
+ "learning_rate": 0.0006,
+ "loss": 4.182928085327148,
+ "step": 948
+ },
+ {
+ "epoch": 13.18173875054609,
+ "grad_norm": 0.2539508640766144,
+ "learning_rate": 0.0006,
+ "loss": 4.176900386810303,
+ "step": 949
+ },
+ {
+ "epoch": 13.19571865443425,
+ "grad_norm": 0.30925488471984863,
+ "learning_rate": 0.0006,
+ "loss": 4.1760711669921875,
+ "step": 950
+ },
+ {
+ "epoch": 13.209698558322412,
+ "grad_norm": 0.3842967450618744,
+ "learning_rate": 0.0006,
+ "loss": 4.1830949783325195,
+ "step": 951
+ },
+ {
+ "epoch": 13.223678462210572,
+ "grad_norm": 0.35950011014938354,
+ "learning_rate": 0.0006,
+ "loss": 4.131983757019043,
+ "step": 952
+ },
+ {
+ "epoch": 13.237658366098733,
+ "grad_norm": 0.29913705587387085,
+ "learning_rate": 0.0006,
+ "loss": 4.166984558105469,
+ "step": 953
+ },
+ {
+ "epoch": 13.251638269986893,
+ "grad_norm": 0.32008400559425354,
+ "learning_rate": 0.0006,
+ "loss": 4.156482696533203,
+ "step": 954
+ },
+ {
+ "epoch": 13.265618173875055,
+ "grad_norm": 0.3186642825603485,
+ "learning_rate": 0.0006,
+ "loss": 4.1661057472229,
+ "step": 955
+ },
+ {
+ "epoch": 13.279598077763215,
+ "grad_norm": 0.3194582462310791,
+ "learning_rate": 0.0006,
+ "loss": 4.169328689575195,
+ "step": 956
+ },
+ {
+ "epoch": 13.293577981651376,
+ "grad_norm": 0.3133867084980011,
+ "learning_rate": 0.0006,
+ "loss": 4.165459632873535,
+ "step": 957
+ },
+ {
+ "epoch": 13.307557885539538,
+ "grad_norm": 0.3232237696647644,
+ "learning_rate": 0.0006,
+ "loss": 4.2107439041137695,
+ "step": 958
+ },
+ {
+ "epoch": 13.321537789427698,
+ "grad_norm": 0.3133196234703064,
+ "learning_rate": 0.0006,
+ "loss": 4.184182167053223,
+ "step": 959
+ },
+ {
+ "epoch": 13.33551769331586,
+ "grad_norm": 0.296129435300827,
+ "learning_rate": 0.0006,
+ "loss": 4.168312072753906,
+ "step": 960
+ },
+ {
+ "epoch": 13.349497597204019,
+ "grad_norm": 0.2685348391532898,
+ "learning_rate": 0.0006,
+ "loss": 4.159984588623047,
+ "step": 961
+ },
+ {
+ "epoch": 13.36347750109218,
+ "grad_norm": 0.2644975781440735,
+ "learning_rate": 0.0006,
+ "loss": 4.164909362792969,
+ "step": 962
+ },
+ {
+ "epoch": 13.37745740498034,
+ "grad_norm": 0.2712913155555725,
+ "learning_rate": 0.0006,
+ "loss": 4.158056259155273,
+ "step": 963
+ },
+ {
+ "epoch": 13.391437308868502,
+ "grad_norm": 0.2687259316444397,
+ "learning_rate": 0.0006,
+ "loss": 4.182924270629883,
+ "step": 964
+ },
+ {
+ "epoch": 13.405417212756662,
+ "grad_norm": 0.25640392303466797,
+ "learning_rate": 0.0006,
+ "loss": 4.153351783752441,
+ "step": 965
+ },
+ {
+ "epoch": 13.419397116644824,
+ "grad_norm": 0.2646305561065674,
+ "learning_rate": 0.0006,
+ "loss": 4.18464469909668,
+ "step": 966
+ },
+ {
+ "epoch": 13.433377020532983,
+ "grad_norm": 0.24206851422786713,
+ "learning_rate": 0.0006,
+ "loss": 4.127564430236816,
+ "step": 967
+ },
+ {
+ "epoch": 13.447356924421145,
+ "grad_norm": 0.23800471425056458,
+ "learning_rate": 0.0006,
+ "loss": 4.163488388061523,
+ "step": 968
+ },
+ {
+ "epoch": 13.461336828309305,
+ "grad_norm": 0.22957314550876617,
+ "learning_rate": 0.0006,
+ "loss": 4.178133964538574,
+ "step": 969
+ },
+ {
+ "epoch": 13.475316732197467,
+ "grad_norm": 0.22867488861083984,
+ "learning_rate": 0.0006,
+ "loss": 4.159056186676025,
+ "step": 970
+ },
+ {
+ "epoch": 13.489296636085626,
+ "grad_norm": 0.21737419068813324,
+ "learning_rate": 0.0006,
+ "loss": 4.138628005981445,
+ "step": 971
+ },
+ {
+ "epoch": 13.503276539973788,
+ "grad_norm": 0.2319175899028778,
+ "learning_rate": 0.0006,
+ "loss": 4.14644718170166,
+ "step": 972
+ },
+ {
+ "epoch": 13.517256443861948,
+ "grad_norm": 0.2572193443775177,
+ "learning_rate": 0.0006,
+ "loss": 4.175213813781738,
+ "step": 973
+ },
+ {
+ "epoch": 13.53123634775011,
+ "grad_norm": 0.23483099043369293,
+ "learning_rate": 0.0006,
+ "loss": 4.133171558380127,
+ "step": 974
+ },
+ {
+ "epoch": 13.54521625163827,
+ "grad_norm": 0.2071552872657776,
+ "learning_rate": 0.0006,
+ "loss": 4.13730525970459,
+ "step": 975
+ },
+ {
+ "epoch": 13.55919615552643,
+ "grad_norm": 0.23074553906917572,
+ "learning_rate": 0.0006,
+ "loss": 4.175051689147949,
+ "step": 976
+ },
+ {
+ "epoch": 13.57317605941459,
+ "grad_norm": 0.2480078786611557,
+ "learning_rate": 0.0006,
+ "loss": 4.167630672454834,
+ "step": 977
+ },
+ {
+ "epoch": 13.587155963302752,
+ "grad_norm": 0.23444348573684692,
+ "learning_rate": 0.0006,
+ "loss": 4.141780853271484,
+ "step": 978
+ },
+ {
+ "epoch": 13.601135867190912,
+ "grad_norm": 0.2227829396724701,
+ "learning_rate": 0.0006,
+ "loss": 4.157566547393799,
+ "step": 979
+ },
+ {
+ "epoch": 13.615115771079074,
+ "grad_norm": 0.21478354930877686,
+ "learning_rate": 0.0006,
+ "loss": 4.131053447723389,
+ "step": 980
+ },
+ {
+ "epoch": 13.629095674967235,
+ "grad_norm": 0.1978664994239807,
+ "learning_rate": 0.0006,
+ "loss": 4.123660564422607,
+ "step": 981
+ },
+ {
+ "epoch": 13.643075578855395,
+ "grad_norm": 0.19980201125144958,
+ "learning_rate": 0.0006,
+ "loss": 4.174160480499268,
+ "step": 982
+ },
+ {
+ "epoch": 13.657055482743557,
+ "grad_norm": 0.19815555214881897,
+ "learning_rate": 0.0006,
+ "loss": 4.181703090667725,
+ "step": 983
+ },
+ {
+ "epoch": 13.671035386631717,
+ "grad_norm": 0.19524012506008148,
+ "learning_rate": 0.0006,
+ "loss": 4.163766860961914,
+ "step": 984
+ },
+ {
+ "epoch": 13.685015290519878,
+ "grad_norm": 0.2286096215248108,
+ "learning_rate": 0.0006,
+ "loss": 4.172213554382324,
+ "step": 985
+ },
+ {
+ "epoch": 13.698995194408038,
+ "grad_norm": 0.2210782766342163,
+ "learning_rate": 0.0006,
+ "loss": 4.187033653259277,
+ "step": 986
+ },
+ {
+ "epoch": 13.7129750982962,
+ "grad_norm": 0.21874216198921204,
+ "learning_rate": 0.0006,
+ "loss": 4.125125885009766,
+ "step": 987
+ },
+ {
+ "epoch": 13.72695500218436,
+ "grad_norm": 0.22848057746887207,
+ "learning_rate": 0.0006,
+ "loss": 4.153496742248535,
+ "step": 988
+ },
+ {
+ "epoch": 13.740934906072521,
+ "grad_norm": 0.2250450700521469,
+ "learning_rate": 0.0006,
+ "loss": 4.149165630340576,
+ "step": 989
+ },
+ {
+ "epoch": 13.754914809960681,
+ "grad_norm": 0.21443772315979004,
+ "learning_rate": 0.0006,
+ "loss": 4.1528825759887695,
+ "step": 990
+ },
+ {
+ "epoch": 13.768894713848843,
+ "grad_norm": 0.21927927434444427,
+ "learning_rate": 0.0006,
+ "loss": 4.146831512451172,
+ "step": 991
+ },
+ {
+ "epoch": 13.782874617737003,
+ "grad_norm": 0.2413124144077301,
+ "learning_rate": 0.0006,
+ "loss": 4.136909008026123,
+ "step": 992
+ },
+ {
+ "epoch": 13.796854521625164,
+ "grad_norm": 0.2603479325771332,
+ "learning_rate": 0.0006,
+ "loss": 4.12525749206543,
+ "step": 993
+ },
+ {
+ "epoch": 13.810834425513324,
+ "grad_norm": 0.26246970891952515,
+ "learning_rate": 0.0006,
+ "loss": 4.114049434661865,
+ "step": 994
+ },
+ {
+ "epoch": 13.824814329401486,
+ "grad_norm": 0.27031877636909485,
+ "learning_rate": 0.0006,
+ "loss": 4.1646552085876465,
+ "step": 995
+ },
+ {
+ "epoch": 13.838794233289645,
+ "grad_norm": 0.2499857395887375,
+ "learning_rate": 0.0006,
+ "loss": 4.139284133911133,
+ "step": 996
+ },
+ {
+ "epoch": 13.852774137177807,
+ "grad_norm": 0.22026537358760834,
+ "learning_rate": 0.0006,
+ "loss": 4.142191410064697,
+ "step": 997
+ },
+ {
+ "epoch": 13.866754041065967,
+ "grad_norm": 0.23738551139831543,
+ "learning_rate": 0.0006,
+ "loss": 4.1422882080078125,
+ "step": 998
+ },
+ {
+ "epoch": 13.880733944954128,
+ "grad_norm": 0.2416357398033142,
+ "learning_rate": 0.0006,
+ "loss": 4.14063835144043,
+ "step": 999
+ },
+ {
+ "epoch": 13.89471384884229,
+ "grad_norm": 0.33822184801101685,
+ "learning_rate": 0.0006,
+ "loss": 4.12839412689209,
+ "step": 1000
+ },
+ {
+ "epoch": 13.90869375273045,
+ "grad_norm": 0.3409678339958191,
+ "learning_rate": 0.0006,
+ "loss": 4.145351886749268,
+ "step": 1001
+ },
+ {
+ "epoch": 13.922673656618612,
+ "grad_norm": 0.2467597872018814,
+ "learning_rate": 0.0006,
+ "loss": 4.155339241027832,
+ "step": 1002
+ },
+ {
+ "epoch": 13.936653560506771,
+ "grad_norm": 0.2314649075269699,
+ "learning_rate": 0.0006,
+ "loss": 4.130176067352295,
+ "step": 1003
+ },
+ {
+ "epoch": 13.950633464394933,
+ "grad_norm": 0.23701290786266327,
+ "learning_rate": 0.0006,
+ "loss": 4.19205379486084,
+ "step": 1004
+ },
+ {
+ "epoch": 13.964613368283093,
+ "grad_norm": 0.2466491460800171,
+ "learning_rate": 0.0006,
+ "loss": 4.118908882141113,
+ "step": 1005
+ },
+ {
+ "epoch": 13.978593272171254,
+ "grad_norm": 0.23746836185455322,
+ "learning_rate": 0.0006,
+ "loss": 4.16111946105957,
+ "step": 1006
+ },
+ {
+ "epoch": 13.992573176059414,
+ "grad_norm": 0.24497751891613007,
+ "learning_rate": 0.0006,
+ "loss": 4.148624420166016,
+ "step": 1007
+ },
+ {
+ "epoch": 14.0,
+ "grad_norm": 0.25735899806022644,
+ "learning_rate": 0.0006,
+ "loss": 4.12002420425415,
+ "step": 1008
+ },
+ {
+ "epoch": 14.0,
+ "eval_loss": 4.335351467132568,
+ "eval_runtime": 44.0523,
+ "eval_samples_per_second": 55.434,
+ "eval_steps_per_second": 3.473,
+ "step": 1008
+ },
+ {
+ "epoch": 14.013979903888162,
+ "grad_norm": 0.24570082128047943,
+ "learning_rate": 0.0006,
+ "loss": 4.1036176681518555,
+ "step": 1009
+ },
+ {
+ "epoch": 14.027959807776321,
+ "grad_norm": 0.2525855302810669,
+ "learning_rate": 0.0006,
+ "loss": 4.142077445983887,
+ "step": 1010
+ },
+ {
+ "epoch": 14.041939711664483,
+ "grad_norm": 0.2701111435890198,
+ "learning_rate": 0.0006,
+ "loss": 4.096988677978516,
+ "step": 1011
+ },
+ {
+ "epoch": 14.055919615552643,
+ "grad_norm": 0.28173309564590454,
+ "learning_rate": 0.0006,
+ "loss": 4.148448944091797,
+ "step": 1012
+ },
+ {
+ "epoch": 14.069899519440805,
+ "grad_norm": 0.2651294469833374,
+ "learning_rate": 0.0006,
+ "loss": 4.121731281280518,
+ "step": 1013
+ },
+ {
+ "epoch": 14.083879423328964,
+ "grad_norm": 0.21160121262073517,
+ "learning_rate": 0.0006,
+ "loss": 4.108980178833008,
+ "step": 1014
+ },
+ {
+ "epoch": 14.097859327217126,
+ "grad_norm": 0.24786953628063202,
+ "learning_rate": 0.0006,
+ "loss": 4.133942604064941,
+ "step": 1015
+ },
+ {
+ "epoch": 14.111839231105286,
+ "grad_norm": 0.2722747027873993,
+ "learning_rate": 0.0006,
+ "loss": 4.115242958068848,
+ "step": 1016
+ },
+ {
+ "epoch": 14.125819134993447,
+ "grad_norm": 0.273360013961792,
+ "learning_rate": 0.0006,
+ "loss": 4.059296607971191,
+ "step": 1017
+ },
+ {
+ "epoch": 14.139799038881607,
+ "grad_norm": 0.2541784942150116,
+ "learning_rate": 0.0006,
+ "loss": 4.118365287780762,
+ "step": 1018
+ },
+ {
+ "epoch": 14.153778942769769,
+ "grad_norm": 0.23806381225585938,
+ "learning_rate": 0.0006,
+ "loss": 4.102812767028809,
+ "step": 1019
+ },
+ {
+ "epoch": 14.167758846657929,
+ "grad_norm": 0.2541005313396454,
+ "learning_rate": 0.0006,
+ "loss": 4.093264579772949,
+ "step": 1020
+ },
+ {
+ "epoch": 14.18173875054609,
+ "grad_norm": 0.2619539499282837,
+ "learning_rate": 0.0006,
+ "loss": 4.114917278289795,
+ "step": 1021
+ },
+ {
+ "epoch": 14.19571865443425,
+ "grad_norm": 0.2466963529586792,
+ "learning_rate": 0.0006,
+ "loss": 4.098258972167969,
+ "step": 1022
+ },
+ {
+ "epoch": 14.209698558322412,
+ "grad_norm": 0.24341611564159393,
+ "learning_rate": 0.0006,
+ "loss": 4.109346389770508,
+ "step": 1023
+ },
+ {
+ "epoch": 14.223678462210572,
+ "grad_norm": 0.23977765440940857,
+ "learning_rate": 0.0006,
+ "loss": 4.106716156005859,
+ "step": 1024
+ },
+ {
+ "epoch": 14.237658366098733,
+ "grad_norm": 0.253528356552124,
+ "learning_rate": 0.0006,
+ "loss": 4.102226257324219,
+ "step": 1025
+ },
+ {
+ "epoch": 14.251638269986893,
+ "grad_norm": 0.26954543590545654,
+ "learning_rate": 0.0006,
+ "loss": 4.107413291931152,
+ "step": 1026
+ },
+ {
+ "epoch": 14.265618173875055,
+ "grad_norm": 0.2610514760017395,
+ "learning_rate": 0.0006,
+ "loss": 4.110824108123779,
+ "step": 1027
+ },
+ {
+ "epoch": 14.279598077763215,
+ "grad_norm": 0.2579168677330017,
+ "learning_rate": 0.0006,
+ "loss": 4.082438945770264,
+ "step": 1028
+ },
+ {
+ "epoch": 14.293577981651376,
+ "grad_norm": 0.26916536688804626,
+ "learning_rate": 0.0006,
+ "loss": 4.075734615325928,
+ "step": 1029
+ },
+ {
+ "epoch": 14.307557885539538,
+ "grad_norm": 0.2998618185520172,
+ "learning_rate": 0.0006,
+ "loss": 4.088419437408447,
+ "step": 1030
+ },
+ {
+ "epoch": 14.321537789427698,
+ "grad_norm": 0.3162737190723419,
+ "learning_rate": 0.0006,
+ "loss": 4.125833034515381,
+ "step": 1031
+ },
+ {
+ "epoch": 14.33551769331586,
+ "grad_norm": 0.318601131439209,
+ "learning_rate": 0.0006,
+ "loss": 4.077424049377441,
+ "step": 1032
+ },
+ {
+ "epoch": 14.349497597204019,
+ "grad_norm": 0.32113415002822876,
+ "learning_rate": 0.0006,
+ "loss": 4.113360404968262,
+ "step": 1033
+ },
+ {
+ "epoch": 14.36347750109218,
+ "grad_norm": 0.3150886297225952,
+ "learning_rate": 0.0006,
+ "loss": 4.100013732910156,
+ "step": 1034
+ },
+ {
+ "epoch": 14.37745740498034,
+ "grad_norm": 0.29279956221580505,
+ "learning_rate": 0.0006,
+ "loss": 4.136394500732422,
+ "step": 1035
+ },
+ {
+ "epoch": 14.391437308868502,
+ "grad_norm": 0.28532543778419495,
+ "learning_rate": 0.0006,
+ "loss": 4.138948440551758,
+ "step": 1036
+ },
+ {
+ "epoch": 14.405417212756662,
+ "grad_norm": 0.2825978398323059,
+ "learning_rate": 0.0006,
+ "loss": 4.112217903137207,
+ "step": 1037
+ },
+ {
+ "epoch": 14.419397116644824,
+ "grad_norm": 0.2891198694705963,
+ "learning_rate": 0.0006,
+ "loss": 4.102682113647461,
+ "step": 1038
+ },
+ {
+ "epoch": 14.433377020532983,
+ "grad_norm": 0.2917391061782837,
+ "learning_rate": 0.0006,
+ "loss": 4.120752811431885,
+ "step": 1039
+ },
+ {
+ "epoch": 14.447356924421145,
+ "grad_norm": 0.2589806914329529,
+ "learning_rate": 0.0006,
+ "loss": 4.130519390106201,
+ "step": 1040
+ },
+ {
+ "epoch": 14.461336828309305,
+ "grad_norm": 0.2674788534641266,
+ "learning_rate": 0.0006,
+ "loss": 4.130382537841797,
+ "step": 1041
+ },
+ {
+ "epoch": 14.475316732197467,
+ "grad_norm": 0.2820362150669098,
+ "learning_rate": 0.0006,
+ "loss": 4.13947868347168,
+ "step": 1042
+ },
+ {
+ "epoch": 14.489296636085626,
+ "grad_norm": 0.2650109529495239,
+ "learning_rate": 0.0006,
+ "loss": 4.130346775054932,
+ "step": 1043
+ },
+ {
+ "epoch": 14.503276539973788,
+ "grad_norm": 0.29137638211250305,
+ "learning_rate": 0.0006,
+ "loss": 4.055751800537109,
+ "step": 1044
+ },
+ {
+ "epoch": 14.517256443861948,
+ "grad_norm": 0.3232433497905731,
+ "learning_rate": 0.0006,
+ "loss": 4.114810943603516,
+ "step": 1045
+ },
+ {
+ "epoch": 14.53123634775011,
+ "grad_norm": 0.2724473476409912,
+ "learning_rate": 0.0006,
+ "loss": 4.088351249694824,
+ "step": 1046
+ },
+ {
+ "epoch": 14.54521625163827,
+ "grad_norm": 0.23994430899620056,
+ "learning_rate": 0.0006,
+ "loss": 4.110936164855957,
+ "step": 1047
+ },
+ {
+ "epoch": 14.55919615552643,
+ "grad_norm": 0.2422720044851303,
+ "learning_rate": 0.0006,
+ "loss": 4.132844924926758,
+ "step": 1048
+ },
+ {
+ "epoch": 14.57317605941459,
+ "grad_norm": 0.21148815751075745,
+ "learning_rate": 0.0006,
+ "loss": 4.102499961853027,
+ "step": 1049
+ },
+ {
+ "epoch": 14.587155963302752,
+ "grad_norm": 0.22221639752388,
+ "learning_rate": 0.0006,
+ "loss": 4.126241683959961,
+ "step": 1050
+ },
+ {
+ "epoch": 14.601135867190912,
+ "grad_norm": 0.2538735866546631,
+ "learning_rate": 0.0006,
+ "loss": 4.116817951202393,
+ "step": 1051
+ },
+ {
+ "epoch": 14.615115771079074,
+ "grad_norm": 0.2555900514125824,
+ "learning_rate": 0.0006,
+ "loss": 4.106309413909912,
+ "step": 1052
+ },
+ {
+ "epoch": 14.629095674967235,
+ "grad_norm": 0.24753783643245697,
+ "learning_rate": 0.0006,
+ "loss": 4.1015119552612305,
+ "step": 1053
+ },
+ {
+ "epoch": 14.643075578855395,
+ "grad_norm": 0.238885298371315,
+ "learning_rate": 0.0006,
+ "loss": 4.120419502258301,
+ "step": 1054
+ },
+ {
+ "epoch": 14.657055482743557,
+ "grad_norm": 0.22693610191345215,
+ "learning_rate": 0.0006,
+ "loss": 4.084968566894531,
+ "step": 1055
+ },
+ {
+ "epoch": 14.671035386631717,
+ "grad_norm": 0.2100025862455368,
+ "learning_rate": 0.0006,
+ "loss": 4.108001708984375,
+ "step": 1056
+ },
+ {
+ "epoch": 14.685015290519878,
+ "grad_norm": 0.20437054336071014,
+ "learning_rate": 0.0006,
+ "loss": 4.151417255401611,
+ "step": 1057
+ },
+ {
+ "epoch": 14.698995194408038,
+ "grad_norm": 0.1926720291376114,
+ "learning_rate": 0.0006,
+ "loss": 4.091334342956543,
+ "step": 1058
+ },
+ {
+ "epoch": 14.7129750982962,
+ "grad_norm": 0.2120140641927719,
+ "learning_rate": 0.0006,
+ "loss": 4.111706256866455,
+ "step": 1059
+ },
+ {
+ "epoch": 14.72695500218436,
+ "grad_norm": 0.22877076268196106,
+ "learning_rate": 0.0006,
+ "loss": 4.123166084289551,
+ "step": 1060
+ },
+ {
+ "epoch": 14.740934906072521,
+ "grad_norm": 0.22149473428726196,
+ "learning_rate": 0.0006,
+ "loss": 4.099740028381348,
+ "step": 1061
+ },
+ {
+ "epoch": 14.754914809960681,
+ "grad_norm": 0.2351604402065277,
+ "learning_rate": 0.0006,
+ "loss": 4.066174507141113,
+ "step": 1062
+ },
+ {
+ "epoch": 14.768894713848843,
+ "grad_norm": 0.22895802557468414,
+ "learning_rate": 0.0006,
+ "loss": 4.101897239685059,
+ "step": 1063
+ },
+ {
+ "epoch": 14.782874617737003,
+ "grad_norm": 0.22050750255584717,
+ "learning_rate": 0.0006,
+ "loss": 4.122953414916992,
+ "step": 1064
+ },
+ {
+ "epoch": 14.796854521625164,
+ "grad_norm": 0.23255324363708496,
+ "learning_rate": 0.0006,
+ "loss": 4.11297607421875,
+ "step": 1065
+ },
+ {
+ "epoch": 14.810834425513324,
+ "grad_norm": 0.24522703886032104,
+ "learning_rate": 0.0006,
+ "loss": 4.131030082702637,
+ "step": 1066
+ },
+ {
+ "epoch": 14.824814329401486,
+ "grad_norm": 0.2492702752351761,
+ "learning_rate": 0.0006,
+ "loss": 4.076324939727783,
+ "step": 1067
+ },
+ {
+ "epoch": 14.838794233289645,
+ "grad_norm": 0.24410948157310486,
+ "learning_rate": 0.0006,
+ "loss": 4.109020709991455,
+ "step": 1068
+ },
+ {
+ "epoch": 14.852774137177807,
+ "grad_norm": 0.2463168203830719,
+ "learning_rate": 0.0006,
+ "loss": 4.135679244995117,
+ "step": 1069
+ },
+ {
+ "epoch": 14.866754041065967,
+ "grad_norm": 0.2563146650791168,
+ "learning_rate": 0.0006,
+ "loss": 4.0958027839660645,
+ "step": 1070
+ },
+ {
+ "epoch": 14.880733944954128,
+ "grad_norm": 0.261167049407959,
+ "learning_rate": 0.0006,
+ "loss": 4.114803314208984,
+ "step": 1071
+ },
+ {
+ "epoch": 14.89471384884229,
+ "grad_norm": 0.2593795955181122,
+ "learning_rate": 0.0006,
+ "loss": 4.1210618019104,
+ "step": 1072
+ },
+ {
+ "epoch": 14.90869375273045,
+ "grad_norm": 0.27184173464775085,
+ "learning_rate": 0.0006,
+ "loss": 4.095145225524902,
+ "step": 1073
+ },
+ {
+ "epoch": 14.922673656618612,
+ "grad_norm": 0.25289732217788696,
+ "learning_rate": 0.0006,
+ "loss": 4.107388973236084,
+ "step": 1074
+ },
+ {
+ "epoch": 14.936653560506771,
+ "grad_norm": 0.2176840454339981,
+ "learning_rate": 0.0006,
+ "loss": 4.105966567993164,
+ "step": 1075
+ },
+ {
+ "epoch": 14.950633464394933,
+ "grad_norm": 0.20930173993110657,
+ "learning_rate": 0.0006,
+ "loss": 4.126853942871094,
+ "step": 1076
+ },
+ {
+ "epoch": 14.964613368283093,
+ "grad_norm": 0.20850051939487457,
+ "learning_rate": 0.0006,
+ "loss": 4.074934959411621,
+ "step": 1077
+ },
+ {
+ "epoch": 14.978593272171254,
+ "grad_norm": 0.21987544000148773,
+ "learning_rate": 0.0006,
+ "loss": 4.123321533203125,
+ "step": 1078
+ },
+ {
+ "epoch": 14.992573176059414,
+ "grad_norm": 0.23821689188480377,
+ "learning_rate": 0.0006,
+ "loss": 4.082647323608398,
+ "step": 1079
+ },
+ {
+ "epoch": 15.0,
+ "grad_norm": 0.2590881288051605,
+ "learning_rate": 0.0006,
+ "loss": 4.113482475280762,
+ "step": 1080
+ },
+ {
+ "epoch": 15.0,
+ "eval_loss": 4.286936283111572,
+ "eval_runtime": 44.2665,
+ "eval_samples_per_second": 55.166,
+ "eval_steps_per_second": 3.456,
+ "step": 1080
+ },
+ {
+ "epoch": 15.013979903888162,
+ "grad_norm": 0.27885961532592773,
+ "learning_rate": 0.0006,
+ "loss": 4.0825958251953125,
+ "step": 1081
+ },
+ {
+ "epoch": 15.027959807776321,
+ "grad_norm": 0.2751246690750122,
+ "learning_rate": 0.0006,
+ "loss": 4.049782752990723,
+ "step": 1082
+ },
+ {
+ "epoch": 15.041939711664483,
+ "grad_norm": 0.25238561630249023,
+ "learning_rate": 0.0006,
+ "loss": 4.067366600036621,
+ "step": 1083
+ },
+ {
+ "epoch": 15.055919615552643,
+ "grad_norm": 0.27481040358543396,
+ "learning_rate": 0.0006,
+ "loss": 4.089946746826172,
+ "step": 1084
+ },
+ {
+ "epoch": 15.069899519440805,
+ "grad_norm": 0.2666703164577484,
+ "learning_rate": 0.0006,
+ "loss": 4.071957588195801,
+ "step": 1085
+ },
+ {
+ "epoch": 15.083879423328964,
+ "grad_norm": 0.2532065212726593,
+ "learning_rate": 0.0006,
+ "loss": 4.091561794281006,
+ "step": 1086
+ },
+ {
+ "epoch": 15.097859327217126,
+ "grad_norm": 0.23562374711036682,
+ "learning_rate": 0.0006,
+ "loss": 4.074953079223633,
+ "step": 1087
+ },
+ {
+ "epoch": 15.111839231105286,
+ "grad_norm": 0.2498065084218979,
+ "learning_rate": 0.0006,
+ "loss": 4.056004047393799,
+ "step": 1088
+ },
+ {
+ "epoch": 15.125819134993447,
+ "grad_norm": 0.257046639919281,
+ "learning_rate": 0.0006,
+ "loss": 4.044149875640869,
+ "step": 1089
+ },
+ {
+ "epoch": 15.139799038881607,
+ "grad_norm": 0.2417808622121811,
+ "learning_rate": 0.0006,
+ "loss": 4.071811676025391,
+ "step": 1090
+ },
+ {
+ "epoch": 15.153778942769769,
+ "grad_norm": 0.24742013216018677,
+ "learning_rate": 0.0006,
+ "loss": 4.081482887268066,
+ "step": 1091
+ },
+ {
+ "epoch": 15.167758846657929,
+ "grad_norm": 0.2610231637954712,
+ "learning_rate": 0.0006,
+ "loss": 4.06953763961792,
+ "step": 1092
+ },
+ {
+ "epoch": 15.18173875054609,
+ "grad_norm": 0.24688200652599335,
+ "learning_rate": 0.0006,
+ "loss": 4.079700469970703,
+ "step": 1093
+ },
+ {
+ "epoch": 15.19571865443425,
+ "grad_norm": 0.2650167942047119,
+ "learning_rate": 0.0006,
+ "loss": 4.082088947296143,
+ "step": 1094
+ },
+ {
+ "epoch": 15.209698558322412,
+ "grad_norm": 0.25913330912590027,
+ "learning_rate": 0.0006,
+ "loss": 4.081713676452637,
+ "step": 1095
+ },
+ {
+ "epoch": 15.223678462210572,
+ "grad_norm": 0.2547631561756134,
+ "learning_rate": 0.0006,
+ "loss": 4.073573112487793,
+ "step": 1096
+ },
+ {
+ "epoch": 15.237658366098733,
+ "grad_norm": 0.2732609510421753,
+ "learning_rate": 0.0006,
+ "loss": 4.10186767578125,
+ "step": 1097
+ },
+ {
+ "epoch": 15.251638269986893,
+ "grad_norm": 0.2990017533302307,
+ "learning_rate": 0.0006,
+ "loss": 4.085466384887695,
+ "step": 1098
+ },
+ {
+ "epoch": 15.265618173875055,
+ "grad_norm": 0.30252209305763245,
+ "learning_rate": 0.0006,
+ "loss": 4.077337265014648,
+ "step": 1099
+ },
+ {
+ "epoch": 15.279598077763215,
+ "grad_norm": 0.30046045780181885,
+ "learning_rate": 0.0006,
+ "loss": 4.0895891189575195,
+ "step": 1100
+ },
+ {
+ "epoch": 15.293577981651376,
+ "grad_norm": 0.2779843211174011,
+ "learning_rate": 0.0006,
+ "loss": 4.060354709625244,
+ "step": 1101
+ },
+ {
+ "epoch": 15.307557885539538,
+ "grad_norm": 0.26914986968040466,
+ "learning_rate": 0.0006,
+ "loss": 4.07314395904541,
+ "step": 1102
+ },
+ {
+ "epoch": 15.321537789427698,
+ "grad_norm": 0.24605873227119446,
+ "learning_rate": 0.0006,
+ "loss": 4.051377296447754,
+ "step": 1103
+ },
+ {
+ "epoch": 15.33551769331586,
+ "grad_norm": 0.25634095072746277,
+ "learning_rate": 0.0006,
+ "loss": 4.082427024841309,
+ "step": 1104
+ },
+ {
+ "epoch": 15.349497597204019,
+ "grad_norm": 0.2888158857822418,
+ "learning_rate": 0.0006,
+ "loss": 4.074253082275391,
+ "step": 1105
+ },
+ {
+ "epoch": 15.36347750109218,
+ "grad_norm": 0.2758261561393738,
+ "learning_rate": 0.0006,
+ "loss": 4.08344841003418,
+ "step": 1106
+ },
+ {
+ "epoch": 15.37745740498034,
+ "grad_norm": 0.26937270164489746,
+ "learning_rate": 0.0006,
+ "loss": 4.063424587249756,
+ "step": 1107
+ },
+ {
+ "epoch": 15.391437308868502,
+ "grad_norm": 0.2739955484867096,
+ "learning_rate": 0.0006,
+ "loss": 4.08005952835083,
+ "step": 1108
+ },
+ {
+ "epoch": 15.405417212756662,
+ "grad_norm": 0.2635386288166046,
+ "learning_rate": 0.0006,
+ "loss": 4.087360382080078,
+ "step": 1109
+ },
+ {
+ "epoch": 15.419397116644824,
+ "grad_norm": 0.2619768977165222,
+ "learning_rate": 0.0006,
+ "loss": 4.072653770446777,
+ "step": 1110
+ },
+ {
+ "epoch": 15.433377020532983,
+ "grad_norm": 0.24154804646968842,
+ "learning_rate": 0.0006,
+ "loss": 4.084464073181152,
+ "step": 1111
+ },
+ {
+ "epoch": 15.447356924421145,
+ "grad_norm": 0.24236027896404266,
+ "learning_rate": 0.0006,
+ "loss": 4.078777313232422,
+ "step": 1112
+ },
+ {
+ "epoch": 15.461336828309305,
+ "grad_norm": 0.24653038382530212,
+ "learning_rate": 0.0006,
+ "loss": 4.075024604797363,
+ "step": 1113
+ },
+ {
+ "epoch": 15.475316732197467,
+ "grad_norm": 0.27106523513793945,
+ "learning_rate": 0.0006,
+ "loss": 4.060937881469727,
+ "step": 1114
+ },
+ {
+ "epoch": 15.489296636085626,
+ "grad_norm": 0.25109633803367615,
+ "learning_rate": 0.0006,
+ "loss": 4.081971168518066,
+ "step": 1115
+ },
+ {
+ "epoch": 15.503276539973788,
+ "grad_norm": 0.23452287912368774,
+ "learning_rate": 0.0006,
+ "loss": 4.0762834548950195,
+ "step": 1116
+ },
+ {
+ "epoch": 15.517256443861948,
+ "grad_norm": 0.25415024161338806,
+ "learning_rate": 0.0006,
+ "loss": 4.069386959075928,
+ "step": 1117
+ },
+ {
+ "epoch": 15.53123634775011,
+ "grad_norm": 0.25448229908943176,
+ "learning_rate": 0.0006,
+ "loss": 4.075098514556885,
+ "step": 1118
+ },
+ {
+ "epoch": 15.54521625163827,
+ "grad_norm": 0.25679755210876465,
+ "learning_rate": 0.0006,
+ "loss": 4.097431182861328,
+ "step": 1119
+ },
+ {
+ "epoch": 15.55919615552643,
+ "grad_norm": 0.25973212718963623,
+ "learning_rate": 0.0006,
+ "loss": 4.058948516845703,
+ "step": 1120
+ },
+ {
+ "epoch": 15.57317605941459,
+ "grad_norm": 0.24511456489562988,
+ "learning_rate": 0.0006,
+ "loss": 4.092263698577881,
+ "step": 1121
+ },
+ {
+ "epoch": 15.587155963302752,
+ "grad_norm": 0.22949442267417908,
+ "learning_rate": 0.0006,
+ "loss": 4.0526604652404785,
+ "step": 1122
+ },
+ {
+ "epoch": 15.601135867190912,
+ "grad_norm": 0.22486285865306854,
+ "learning_rate": 0.0006,
+ "loss": 4.051939010620117,
+ "step": 1123
+ },
+ {
+ "epoch": 15.615115771079074,
+ "grad_norm": 0.22183601558208466,
+ "learning_rate": 0.0006,
+ "loss": 4.065430641174316,
+ "step": 1124
+ },
+ {
+ "epoch": 15.629095674967235,
+ "grad_norm": 0.2531328797340393,
+ "learning_rate": 0.0006,
+ "loss": 4.069165229797363,
+ "step": 1125
+ },
+ {
+ "epoch": 15.643075578855395,
+ "grad_norm": 0.24403320252895355,
+ "learning_rate": 0.0006,
+ "loss": 4.055041790008545,
+ "step": 1126
+ },
+ {
+ "epoch": 15.657055482743557,
+ "grad_norm": 0.24504756927490234,
+ "learning_rate": 0.0006,
+ "loss": 4.035850524902344,
+ "step": 1127
+ },
+ {
+ "epoch": 15.671035386631717,
+ "grad_norm": 0.23812057077884674,
+ "learning_rate": 0.0006,
+ "loss": 4.049278259277344,
+ "step": 1128
+ },
+ {
+ "epoch": 15.685015290519878,
+ "grad_norm": 0.23694153130054474,
+ "learning_rate": 0.0006,
+ "loss": 4.065816402435303,
+ "step": 1129
+ },
+ {
+ "epoch": 15.698995194408038,
+ "grad_norm": 0.23252786695957184,
+ "learning_rate": 0.0006,
+ "loss": 4.05952262878418,
+ "step": 1130
+ },
+ {
+ "epoch": 15.7129750982962,
+ "grad_norm": 0.2243805080652237,
+ "learning_rate": 0.0006,
+ "loss": 4.058291435241699,
+ "step": 1131
+ },
+ {
+ "epoch": 15.72695500218436,
+ "grad_norm": 0.2200988084077835,
+ "learning_rate": 0.0006,
+ "loss": 4.040788650512695,
+ "step": 1132
+ },
+ {
+ "epoch": 15.740934906072521,
+ "grad_norm": 0.21460631489753723,
+ "learning_rate": 0.0006,
+ "loss": 4.072552680969238,
+ "step": 1133
+ },
+ {
+ "epoch": 15.754914809960681,
+ "grad_norm": 0.2056441456079483,
+ "learning_rate": 0.0006,
+ "loss": 4.059467315673828,
+ "step": 1134
+ },
+ {
+ "epoch": 15.768894713848843,
+ "grad_norm": 0.2068045437335968,
+ "learning_rate": 0.0006,
+ "loss": 4.063803195953369,
+ "step": 1135
+ },
+ {
+ "epoch": 15.782874617737003,
+ "grad_norm": 0.21307601034641266,
+ "learning_rate": 0.0006,
+ "loss": 4.093092918395996,
+ "step": 1136
+ },
+ {
+ "epoch": 15.796854521625164,
+ "grad_norm": 0.20729634165763855,
+ "learning_rate": 0.0006,
+ "loss": 4.066030502319336,
+ "step": 1137
+ },
+ {
+ "epoch": 15.810834425513324,
+ "grad_norm": 0.2097514122724533,
+ "learning_rate": 0.0006,
+ "loss": 4.077326774597168,
+ "step": 1138
+ },
+ {
+ "epoch": 15.824814329401486,
+ "grad_norm": 0.21884000301361084,
+ "learning_rate": 0.0006,
+ "loss": 4.0595598220825195,
+ "step": 1139
+ },
+ {
+ "epoch": 15.838794233289645,
+ "grad_norm": 0.22220250964164734,
+ "learning_rate": 0.0006,
+ "loss": 4.061574459075928,
+ "step": 1140
+ },
+ {
+ "epoch": 15.852774137177807,
+ "grad_norm": 0.23189949989318848,
+ "learning_rate": 0.0006,
+ "loss": 4.0504045486450195,
+ "step": 1141
+ },
+ {
+ "epoch": 15.866754041065967,
+ "grad_norm": 0.226649671792984,
+ "learning_rate": 0.0006,
+ "loss": 4.060986518859863,
+ "step": 1142
+ },
+ {
+ "epoch": 15.880733944954128,
+ "grad_norm": 0.2456834763288498,
+ "learning_rate": 0.0006,
+ "loss": 4.038525581359863,
+ "step": 1143
+ },
+ {
+ "epoch": 15.89471384884229,
+ "grad_norm": 0.2818352282047272,
+ "learning_rate": 0.0006,
+ "loss": 4.062709331512451,
+ "step": 1144
+ },
+ {
+ "epoch": 15.90869375273045,
+ "grad_norm": 0.2850170135498047,
+ "learning_rate": 0.0006,
+ "loss": 4.0683274269104,
+ "step": 1145
+ },
+ {
+ "epoch": 15.922673656618612,
+ "grad_norm": 0.27691730856895447,
+ "learning_rate": 0.0006,
+ "loss": 4.076540470123291,
+ "step": 1146
+ },
+ {
+ "epoch": 15.936653560506771,
+ "grad_norm": 0.2685548961162567,
+ "learning_rate": 0.0006,
+ "loss": 4.048116683959961,
+ "step": 1147
+ },
+ {
+ "epoch": 15.950633464394933,
+ "grad_norm": 0.2452288419008255,
+ "learning_rate": 0.0006,
+ "loss": 4.06640625,
+ "step": 1148
+ },
+ {
+ "epoch": 15.964613368283093,
+ "grad_norm": 0.2601441740989685,
+ "learning_rate": 0.0006,
+ "loss": 4.073277473449707,
+ "step": 1149
+ },
+ {
+ "epoch": 15.978593272171254,
+ "grad_norm": 0.2748197913169861,
+ "learning_rate": 0.0006,
+ "loss": 4.0332536697387695,
+ "step": 1150
+ },
+ {
+ "epoch": 15.992573176059414,
+ "grad_norm": 0.27249959111213684,
+ "learning_rate": 0.0006,
+ "loss": 3.9952516555786133,
+ "step": 1151
+ },
+ {
+ "epoch": 16.0,
+ "grad_norm": 0.3475601375102997,
+ "learning_rate": 0.0006,
+ "loss": 4.040761947631836,
+ "step": 1152
+ },
+ {
+ "epoch": 16.0,
+ "eval_loss": 4.237997531890869,
+ "eval_runtime": 43.8692,
+ "eval_samples_per_second": 55.665,
+ "eval_steps_per_second": 3.488,
+ "step": 1152
+ },
+ {
+ "epoch": 16.01397990388816,
+ "grad_norm": 0.3365611433982849,
+ "learning_rate": 0.0006,
+ "loss": 4.031302452087402,
+ "step": 1153
+ },
+ {
+ "epoch": 16.027959807776323,
+ "grad_norm": 0.3020530641078949,
+ "learning_rate": 0.0006,
+ "loss": 4.036273956298828,
+ "step": 1154
+ },
+ {
+ "epoch": 16.041939711664483,
+ "grad_norm": 0.25277993083000183,
+ "learning_rate": 0.0006,
+ "loss": 4.007067680358887,
+ "step": 1155
+ },
+ {
+ "epoch": 16.055919615552643,
+ "grad_norm": 0.24762840569019318,
+ "learning_rate": 0.0006,
+ "loss": 4.046561241149902,
+ "step": 1156
+ },
+ {
+ "epoch": 16.069899519440803,
+ "grad_norm": 0.25236397981643677,
+ "learning_rate": 0.0006,
+ "loss": 4.061616897583008,
+ "step": 1157
+ },
+ {
+ "epoch": 16.083879423328966,
+ "grad_norm": 0.22789105772972107,
+ "learning_rate": 0.0006,
+ "loss": 4.010061740875244,
+ "step": 1158
+ },
+ {
+ "epoch": 16.097859327217126,
+ "grad_norm": 0.21866244077682495,
+ "learning_rate": 0.0006,
+ "loss": 4.0181097984313965,
+ "step": 1159
+ },
+ {
+ "epoch": 16.111839231105286,
+ "grad_norm": 0.21889029443264008,
+ "learning_rate": 0.0006,
+ "loss": 4.012239456176758,
+ "step": 1160
+ },
+ {
+ "epoch": 16.125819134993446,
+ "grad_norm": 0.23002485930919647,
+ "learning_rate": 0.0006,
+ "loss": 4.034092426300049,
+ "step": 1161
+ },
+ {
+ "epoch": 16.13979903888161,
+ "grad_norm": 0.2271798551082611,
+ "learning_rate": 0.0006,
+ "loss": 4.026222229003906,
+ "step": 1162
+ },
+ {
+ "epoch": 16.15377894276977,
+ "grad_norm": 0.238200843334198,
+ "learning_rate": 0.0006,
+ "loss": 4.044692039489746,
+ "step": 1163
+ },
+ {
+ "epoch": 16.16775884665793,
+ "grad_norm": 0.2281467169523239,
+ "learning_rate": 0.0006,
+ "loss": 4.032305717468262,
+ "step": 1164
+ },
+ {
+ "epoch": 16.18173875054609,
+ "grad_norm": 0.2213946431875229,
+ "learning_rate": 0.0006,
+ "loss": 4.048737525939941,
+ "step": 1165
+ },
+ {
+ "epoch": 16.195718654434252,
+ "grad_norm": 0.26638558506965637,
+ "learning_rate": 0.0006,
+ "loss": 4.006335258483887,
+ "step": 1166
+ },
+ {
+ "epoch": 16.209698558322412,
+ "grad_norm": 0.2780219316482544,
+ "learning_rate": 0.0006,
+ "loss": 4.049234390258789,
+ "step": 1167
+ },
+ {
+ "epoch": 16.22367846221057,
+ "grad_norm": 0.27425870299339294,
+ "learning_rate": 0.0006,
+ "loss": 4.017177104949951,
+ "step": 1168
+ },
+ {
+ "epoch": 16.23765836609873,
+ "grad_norm": 0.2596667408943176,
+ "learning_rate": 0.0006,
+ "loss": 4.022942543029785,
+ "step": 1169
+ },
+ {
+ "epoch": 16.251638269986895,
+ "grad_norm": 0.26972314715385437,
+ "learning_rate": 0.0006,
+ "loss": 4.035310745239258,
+ "step": 1170
+ },
+ {
+ "epoch": 16.265618173875055,
+ "grad_norm": 0.2677772045135498,
+ "learning_rate": 0.0006,
+ "loss": 4.0280561447143555,
+ "step": 1171
+ },
+ {
+ "epoch": 16.279598077763215,
+ "grad_norm": 0.25433358550071716,
+ "learning_rate": 0.0006,
+ "loss": 4.03616189956665,
+ "step": 1172
+ },
+ {
+ "epoch": 16.293577981651374,
+ "grad_norm": 0.2583644688129425,
+ "learning_rate": 0.0006,
+ "loss": 4.073624134063721,
+ "step": 1173
+ },
+ {
+ "epoch": 16.307557885539538,
+ "grad_norm": 0.25437524914741516,
+ "learning_rate": 0.0006,
+ "loss": 4.057926654815674,
+ "step": 1174
+ },
+ {
+ "epoch": 16.321537789427698,
+ "grad_norm": 0.2819201350212097,
+ "learning_rate": 0.0006,
+ "loss": 4.020838737487793,
+ "step": 1175
+ },
+ {
+ "epoch": 16.335517693315857,
+ "grad_norm": 0.32689282298088074,
+ "learning_rate": 0.0006,
+ "loss": 4.062448501586914,
+ "step": 1176
+ },
+ {
+ "epoch": 16.34949759720402,
+ "grad_norm": 0.33002278208732605,
+ "learning_rate": 0.0006,
+ "loss": 4.052059173583984,
+ "step": 1177
+ },
+ {
+ "epoch": 16.36347750109218,
+ "grad_norm": 0.32472696900367737,
+ "learning_rate": 0.0006,
+ "loss": 4.042375564575195,
+ "step": 1178
+ },
+ {
+ "epoch": 16.37745740498034,
+ "grad_norm": 0.35279813408851624,
+ "learning_rate": 0.0006,
+ "loss": 4.028722763061523,
+ "step": 1179
+ },
+ {
+ "epoch": 16.3914373088685,
+ "grad_norm": 0.3243204951286316,
+ "learning_rate": 0.0006,
+ "loss": 4.045693874359131,
+ "step": 1180
+ },
+ {
+ "epoch": 16.405417212756664,
+ "grad_norm": 0.32171115279197693,
+ "learning_rate": 0.0006,
+ "loss": 4.018350124359131,
+ "step": 1181
+ },
+ {
+ "epoch": 16.419397116644824,
+ "grad_norm": 0.31459906697273254,
+ "learning_rate": 0.0006,
+ "loss": 4.039547443389893,
+ "step": 1182
+ },
+ {
+ "epoch": 16.433377020532983,
+ "grad_norm": 0.35038673877716064,
+ "learning_rate": 0.0006,
+ "loss": 4.005928039550781,
+ "step": 1183
+ },
+ {
+ "epoch": 16.447356924421143,
+ "grad_norm": 0.34110963344573975,
+ "learning_rate": 0.0006,
+ "loss": 4.042272090911865,
+ "step": 1184
+ },
+ {
+ "epoch": 16.461336828309307,
+ "grad_norm": 0.33760902285575867,
+ "learning_rate": 0.0006,
+ "loss": 4.02886962890625,
+ "step": 1185
+ },
+ {
+ "epoch": 16.475316732197467,
+ "grad_norm": 0.3162464499473572,
+ "learning_rate": 0.0006,
+ "loss": 4.059924125671387,
+ "step": 1186
+ },
+ {
+ "epoch": 16.489296636085626,
+ "grad_norm": 0.2667233645915985,
+ "learning_rate": 0.0006,
+ "loss": 4.069073677062988,
+ "step": 1187
+ },
+ {
+ "epoch": 16.503276539973786,
+ "grad_norm": 0.22626568377017975,
+ "learning_rate": 0.0006,
+ "loss": 4.044912338256836,
+ "step": 1188
+ },
+ {
+ "epoch": 16.51725644386195,
+ "grad_norm": 0.203303262591362,
+ "learning_rate": 0.0006,
+ "loss": 4.025210380554199,
+ "step": 1189
+ },
+ {
+ "epoch": 16.53123634775011,
+ "grad_norm": 0.2108820080757141,
+ "learning_rate": 0.0006,
+ "loss": 4.035998821258545,
+ "step": 1190
+ },
+ {
+ "epoch": 16.54521625163827,
+ "grad_norm": 0.20451335608959198,
+ "learning_rate": 0.0006,
+ "loss": 4.043377876281738,
+ "step": 1191
+ },
+ {
+ "epoch": 16.55919615552643,
+ "grad_norm": 0.23348836600780487,
+ "learning_rate": 0.0006,
+ "loss": 4.033735275268555,
+ "step": 1192
+ },
+ {
+ "epoch": 16.573176059414592,
+ "grad_norm": 0.24438607692718506,
+ "learning_rate": 0.0006,
+ "loss": 4.071747779846191,
+ "step": 1193
+ },
+ {
+ "epoch": 16.587155963302752,
+ "grad_norm": 0.24233631789684296,
+ "learning_rate": 0.0006,
+ "loss": 4.0138702392578125,
+ "step": 1194
+ },
+ {
+ "epoch": 16.601135867190912,
+ "grad_norm": 0.21625740826129913,
+ "learning_rate": 0.0006,
+ "loss": 4.013422012329102,
+ "step": 1195
+ },
+ {
+ "epoch": 16.615115771079076,
+ "grad_norm": 0.22447720170021057,
+ "learning_rate": 0.0006,
+ "loss": 4.056326866149902,
+ "step": 1196
+ },
+ {
+ "epoch": 16.629095674967235,
+ "grad_norm": 0.21899616718292236,
+ "learning_rate": 0.0006,
+ "loss": 4.006134033203125,
+ "step": 1197
+ },
+ {
+ "epoch": 16.643075578855395,
+ "grad_norm": 0.191362664103508,
+ "learning_rate": 0.0006,
+ "loss": 4.036748886108398,
+ "step": 1198
+ },
+ {
+ "epoch": 16.657055482743555,
+ "grad_norm": 0.20203463733196259,
+ "learning_rate": 0.0006,
+ "loss": 4.006264686584473,
+ "step": 1199
+ },
+ {
+ "epoch": 16.67103538663172,
+ "grad_norm": 0.20209139585494995,
+ "learning_rate": 0.0006,
+ "loss": 4.059018135070801,
+ "step": 1200
+ },
+ {
+ "epoch": 16.68501529051988,
+ "grad_norm": 0.20811820030212402,
+ "learning_rate": 0.0006,
+ "loss": 4.054325103759766,
+ "step": 1201
+ },
+ {
+ "epoch": 16.698995194408038,
+ "grad_norm": 0.22448928654193878,
+ "learning_rate": 0.0006,
+ "loss": 3.996121406555176,
+ "step": 1202
+ },
+ {
+ "epoch": 16.712975098296198,
+ "grad_norm": 0.21692240238189697,
+ "learning_rate": 0.0006,
+ "loss": 4.042046546936035,
+ "step": 1203
+ },
+ {
+ "epoch": 16.72695500218436,
+ "grad_norm": 0.20688563585281372,
+ "learning_rate": 0.0006,
+ "loss": 4.002251625061035,
+ "step": 1204
+ },
+ {
+ "epoch": 16.74093490607252,
+ "grad_norm": 0.1835535764694214,
+ "learning_rate": 0.0006,
+ "loss": 4.02545166015625,
+ "step": 1205
+ },
+ {
+ "epoch": 16.75491480996068,
+ "grad_norm": 0.20532558858394623,
+ "learning_rate": 0.0006,
+ "loss": 4.039333343505859,
+ "step": 1206
+ },
+ {
+ "epoch": 16.76889471384884,
+ "grad_norm": 0.2214215099811554,
+ "learning_rate": 0.0006,
+ "loss": 4.037858486175537,
+ "step": 1207
+ },
+ {
+ "epoch": 16.782874617737004,
+ "grad_norm": 0.24926038086414337,
+ "learning_rate": 0.0006,
+ "loss": 4.024799346923828,
+ "step": 1208
+ },
+ {
+ "epoch": 16.796854521625164,
+ "grad_norm": 0.26057952642440796,
+ "learning_rate": 0.0006,
+ "loss": 4.042788505554199,
+ "step": 1209
+ },
+ {
+ "epoch": 16.810834425513324,
+ "grad_norm": 0.2501208782196045,
+ "learning_rate": 0.0006,
+ "loss": 4.051809310913086,
+ "step": 1210
+ },
+ {
+ "epoch": 16.824814329401484,
+ "grad_norm": 0.21760012209415436,
+ "learning_rate": 0.0006,
+ "loss": 4.063589096069336,
+ "step": 1211
+ },
+ {
+ "epoch": 16.838794233289647,
+ "grad_norm": 0.2243622988462448,
+ "learning_rate": 0.0006,
+ "loss": 4.008829593658447,
+ "step": 1212
+ },
+ {
+ "epoch": 16.852774137177807,
+ "grad_norm": 0.2399163395166397,
+ "learning_rate": 0.0006,
+ "loss": 4.013262748718262,
+ "step": 1213
+ },
+ {
+ "epoch": 16.866754041065967,
+ "grad_norm": 0.23187831044197083,
+ "learning_rate": 0.0006,
+ "loss": 4.023053169250488,
+ "step": 1214
+ },
+ {
+ "epoch": 16.88073394495413,
+ "grad_norm": 0.23723892867565155,
+ "learning_rate": 0.0006,
+ "loss": 3.991321563720703,
+ "step": 1215
+ },
+ {
+ "epoch": 16.89471384884229,
+ "grad_norm": 0.21766342222690582,
+ "learning_rate": 0.0006,
+ "loss": 4.0250773429870605,
+ "step": 1216
+ },
+ {
+ "epoch": 16.90869375273045,
+ "grad_norm": 0.20715023577213287,
+ "learning_rate": 0.0006,
+ "loss": 4.063642978668213,
+ "step": 1217
+ },
+ {
+ "epoch": 16.92267365661861,
+ "grad_norm": 0.20165133476257324,
+ "learning_rate": 0.0006,
+ "loss": 3.9951367378234863,
+ "step": 1218
+ },
+ {
+ "epoch": 16.936653560506773,
+ "grad_norm": 0.19956178963184357,
+ "learning_rate": 0.0006,
+ "loss": 4.025641441345215,
+ "step": 1219
+ },
+ {
+ "epoch": 16.950633464394933,
+ "grad_norm": 0.2175494134426117,
+ "learning_rate": 0.0006,
+ "loss": 4.030346393585205,
+ "step": 1220
+ },
+ {
+ "epoch": 16.964613368283093,
+ "grad_norm": 0.22365593910217285,
+ "learning_rate": 0.0006,
+ "loss": 4.018105506896973,
+ "step": 1221
+ },
+ {
+ "epoch": 16.978593272171253,
+ "grad_norm": 0.21251538395881653,
+ "learning_rate": 0.0006,
+ "loss": 4.023580074310303,
+ "step": 1222
+ },
+ {
+ "epoch": 16.992573176059416,
+ "grad_norm": 0.2230125218629837,
+ "learning_rate": 0.0006,
+ "loss": 4.001980304718018,
+ "step": 1223
+ },
+ {
+ "epoch": 17.0,
+ "grad_norm": 0.24261972308158875,
+ "learning_rate": 0.0006,
+ "loss": 4.081348896026611,
+ "step": 1224
+ },
+ {
+ "epoch": 17.0,
+ "eval_loss": 4.225194931030273,
+ "eval_runtime": 44.247,
+ "eval_samples_per_second": 55.19,
+ "eval_steps_per_second": 3.458,
+ "step": 1224
+ },
+ {
+ "epoch": 17.01397990388816,
+ "grad_norm": 0.2438880205154419,
+ "learning_rate": 0.0006,
+ "loss": 4.0164794921875,
+ "step": 1225
+ },
+ {
+ "epoch": 17.027959807776323,
+ "grad_norm": 0.22459383308887482,
+ "learning_rate": 0.0006,
+ "loss": 3.991623878479004,
+ "step": 1226
+ },
+ {
+ "epoch": 17.041939711664483,
+ "grad_norm": 0.25021040439605713,
+ "learning_rate": 0.0006,
+ "loss": 4.003020286560059,
+ "step": 1227
+ },
+ {
+ "epoch": 17.055919615552643,
+ "grad_norm": 0.30358025431632996,
+ "learning_rate": 0.0006,
+ "loss": 3.980921983718872,
+ "step": 1228
+ },
+ {
+ "epoch": 17.069899519440803,
+ "grad_norm": 0.27313271164894104,
+ "learning_rate": 0.0006,
+ "loss": 3.992398977279663,
+ "step": 1229
+ },
+ {
+ "epoch": 17.083879423328966,
+ "grad_norm": 0.2293211966753006,
+ "learning_rate": 0.0006,
+ "loss": 4.02568244934082,
+ "step": 1230
+ },
+ {
+ "epoch": 17.097859327217126,
+ "grad_norm": 0.2363300621509552,
+ "learning_rate": 0.0006,
+ "loss": 3.977229356765747,
+ "step": 1231
+ },
+ {
+ "epoch": 17.111839231105286,
+ "grad_norm": 0.2809674143791199,
+ "learning_rate": 0.0006,
+ "loss": 3.9720497131347656,
+ "step": 1232
+ },
+ {
+ "epoch": 17.125819134993446,
+ "grad_norm": 0.2913855016231537,
+ "learning_rate": 0.0006,
+ "loss": 3.979529857635498,
+ "step": 1233
+ },
+ {
+ "epoch": 17.13979903888161,
+ "grad_norm": 0.2920287251472473,
+ "learning_rate": 0.0006,
+ "loss": 3.9678473472595215,
+ "step": 1234
+ },
+ {
+ "epoch": 17.15377894276977,
+ "grad_norm": 0.2521543502807617,
+ "learning_rate": 0.0006,
+ "loss": 3.9912607669830322,
+ "step": 1235
+ },
+ {
+ "epoch": 17.16775884665793,
+ "grad_norm": 0.22844268381595612,
+ "learning_rate": 0.0006,
+ "loss": 3.9898228645324707,
+ "step": 1236
+ },
+ {
+ "epoch": 17.18173875054609,
+ "grad_norm": 0.2199884057044983,
+ "learning_rate": 0.0006,
+ "loss": 4.0050740242004395,
+ "step": 1237
+ },
+ {
+ "epoch": 17.195718654434252,
+ "grad_norm": 0.23072892427444458,
+ "learning_rate": 0.0006,
+ "loss": 3.9957475662231445,
+ "step": 1238
+ },
+ {
+ "epoch": 17.209698558322412,
+ "grad_norm": 0.2034899890422821,
+ "learning_rate": 0.0006,
+ "loss": 3.9672317504882812,
+ "step": 1239
+ },
+ {
+ "epoch": 17.22367846221057,
+ "grad_norm": 0.21826180815696716,
+ "learning_rate": 0.0006,
+ "loss": 3.98543119430542,
+ "step": 1240
+ },
+ {
+ "epoch": 17.23765836609873,
+ "grad_norm": 0.21203237771987915,
+ "learning_rate": 0.0006,
+ "loss": 3.9971959590911865,
+ "step": 1241
+ },
+ {
+ "epoch": 17.251638269986895,
+ "grad_norm": 0.22139234840869904,
+ "learning_rate": 0.0006,
+ "loss": 4.017539978027344,
+ "step": 1242
+ },
+ {
+ "epoch": 17.265618173875055,
+ "grad_norm": 0.21553276479244232,
+ "learning_rate": 0.0006,
+ "loss": 3.98740553855896,
+ "step": 1243
+ },
+ {
+ "epoch": 17.279598077763215,
+ "grad_norm": 0.23259080946445465,
+ "learning_rate": 0.0006,
+ "loss": 3.9963035583496094,
+ "step": 1244
+ },
+ {
+ "epoch": 17.293577981651374,
+ "grad_norm": 0.2527932822704315,
+ "learning_rate": 0.0006,
+ "loss": 4.0202956199646,
+ "step": 1245
+ },
+ {
+ "epoch": 17.307557885539538,
+ "grad_norm": 0.28669068217277527,
+ "learning_rate": 0.0006,
+ "loss": 3.9947609901428223,
+ "step": 1246
+ },
+ {
+ "epoch": 17.321537789427698,
+ "grad_norm": 0.341602623462677,
+ "learning_rate": 0.0006,
+ "loss": 3.997032642364502,
+ "step": 1247
+ },
+ {
+ "epoch": 17.335517693315857,
+ "grad_norm": 0.3364104926586151,
+ "learning_rate": 0.0006,
+ "loss": 3.9881834983825684,
+ "step": 1248
+ },
+ {
+ "epoch": 17.34949759720402,
+ "grad_norm": 0.2979278266429901,
+ "learning_rate": 0.0006,
+ "loss": 4.045898914337158,
+ "step": 1249
+ },
+ {
+ "epoch": 17.36347750109218,
+ "grad_norm": 0.2857462465763092,
+ "learning_rate": 0.0006,
+ "loss": 4.0085272789001465,
+ "step": 1250
+ },
+ {
+ "epoch": 17.37745740498034,
+ "grad_norm": 0.2689058780670166,
+ "learning_rate": 0.0006,
+ "loss": 4.021465301513672,
+ "step": 1251
+ },
+ {
+ "epoch": 17.3914373088685,
+ "grad_norm": 0.24943363666534424,
+ "learning_rate": 0.0006,
+ "loss": 4.003451347351074,
+ "step": 1252
+ },
+ {
+ "epoch": 17.405417212756664,
+ "grad_norm": 0.2635347843170166,
+ "learning_rate": 0.0006,
+ "loss": 3.9837827682495117,
+ "step": 1253
+ },
+ {
+ "epoch": 17.419397116644824,
+ "grad_norm": 0.29126450419425964,
+ "learning_rate": 0.0006,
+ "loss": 3.9857311248779297,
+ "step": 1254
+ },
+ {
+ "epoch": 17.433377020532983,
+ "grad_norm": 0.3166918456554413,
+ "learning_rate": 0.0006,
+ "loss": 3.9842967987060547,
+ "step": 1255
+ },
+ {
+ "epoch": 17.447356924421143,
+ "grad_norm": 0.27869969606399536,
+ "learning_rate": 0.0006,
+ "loss": 4.012607574462891,
+ "step": 1256
+ },
+ {
+ "epoch": 17.461336828309307,
+ "grad_norm": 0.23719419538974762,
+ "learning_rate": 0.0006,
+ "loss": 3.981034755706787,
+ "step": 1257
+ },
+ {
+ "epoch": 17.475316732197467,
+ "grad_norm": 0.22687610983848572,
+ "learning_rate": 0.0006,
+ "loss": 4.011059761047363,
+ "step": 1258
+ },
+ {
+ "epoch": 17.489296636085626,
+ "grad_norm": 0.22034095227718353,
+ "learning_rate": 0.0006,
+ "loss": 4.015044689178467,
+ "step": 1259
+ },
+ {
+ "epoch": 17.503276539973786,
+ "grad_norm": 0.21208405494689941,
+ "learning_rate": 0.0006,
+ "loss": 4.003793716430664,
+ "step": 1260
+ },
+ {
+ "epoch": 17.51725644386195,
+ "grad_norm": 0.21759214997291565,
+ "learning_rate": 0.0006,
+ "loss": 3.978652238845825,
+ "step": 1261
+ },
+ {
+ "epoch": 17.53123634775011,
+ "grad_norm": 0.22481068968772888,
+ "learning_rate": 0.0006,
+ "loss": 4.034845352172852,
+ "step": 1262
+ },
+ {
+ "epoch": 17.54521625163827,
+ "grad_norm": 0.20376387238502502,
+ "learning_rate": 0.0006,
+ "loss": 3.990541934967041,
+ "step": 1263
+ },
+ {
+ "epoch": 17.55919615552643,
+ "grad_norm": 0.20459355413913727,
+ "learning_rate": 0.0006,
+ "loss": 4.006990432739258,
+ "step": 1264
+ },
+ {
+ "epoch": 17.573176059414592,
+ "grad_norm": 0.19306913018226624,
+ "learning_rate": 0.0006,
+ "loss": 3.993408679962158,
+ "step": 1265
+ },
+ {
+ "epoch": 17.587155963302752,
+ "grad_norm": 0.20727239549160004,
+ "learning_rate": 0.0006,
+ "loss": 3.988016128540039,
+ "step": 1266
+ },
+ {
+ "epoch": 17.601135867190912,
+ "grad_norm": 0.20213133096694946,
+ "learning_rate": 0.0006,
+ "loss": 4.0120368003845215,
+ "step": 1267
+ },
+ {
+ "epoch": 17.615115771079076,
+ "grad_norm": 0.21074117720127106,
+ "learning_rate": 0.0006,
+ "loss": 4.048871040344238,
+ "step": 1268
+ },
+ {
+ "epoch": 17.629095674967235,
+ "grad_norm": 0.2074330598115921,
+ "learning_rate": 0.0006,
+ "loss": 3.997509002685547,
+ "step": 1269
+ },
+ {
+ "epoch": 17.643075578855395,
+ "grad_norm": 0.20383669435977936,
+ "learning_rate": 0.0006,
+ "loss": 4.0028839111328125,
+ "step": 1270
+ },
+ {
+ "epoch": 17.657055482743555,
+ "grad_norm": 0.2060765027999878,
+ "learning_rate": 0.0006,
+ "loss": 3.998032331466675,
+ "step": 1271
+ },
+ {
+ "epoch": 17.67103538663172,
+ "grad_norm": 0.21851404011249542,
+ "learning_rate": 0.0006,
+ "loss": 3.9928741455078125,
+ "step": 1272
+ },
+ {
+ "epoch": 17.68501529051988,
+ "grad_norm": 0.24324250221252441,
+ "learning_rate": 0.0006,
+ "loss": 3.9896507263183594,
+ "step": 1273
+ },
+ {
+ "epoch": 17.698995194408038,
+ "grad_norm": 0.25584331154823303,
+ "learning_rate": 0.0006,
+ "loss": 4.010485649108887,
+ "step": 1274
+ },
+ {
+ "epoch": 17.712975098296198,
+ "grad_norm": 0.2490610033273697,
+ "learning_rate": 0.0006,
+ "loss": 3.9906954765319824,
+ "step": 1275
+ },
+ {
+ "epoch": 17.72695500218436,
+ "grad_norm": 0.24241414666175842,
+ "learning_rate": 0.0006,
+ "loss": 4.016420364379883,
+ "step": 1276
+ },
+ {
+ "epoch": 17.74093490607252,
+ "grad_norm": 0.2222128063440323,
+ "learning_rate": 0.0006,
+ "loss": 4.009827136993408,
+ "step": 1277
+ },
+ {
+ "epoch": 17.75491480996068,
+ "grad_norm": 0.23119516670703888,
+ "learning_rate": 0.0006,
+ "loss": 4.0034589767456055,
+ "step": 1278
+ },
+ {
+ "epoch": 17.76889471384884,
+ "grad_norm": 0.24596457183361053,
+ "learning_rate": 0.0006,
+ "loss": 4.003161907196045,
+ "step": 1279
+ },
+ {
+ "epoch": 17.782874617737004,
+ "grad_norm": 0.2607562839984894,
+ "learning_rate": 0.0006,
+ "loss": 3.9894633293151855,
+ "step": 1280
+ },
+ {
+ "epoch": 17.796854521625164,
+ "grad_norm": 0.28706878423690796,
+ "learning_rate": 0.0006,
+ "loss": 4.005712985992432,
+ "step": 1281
+ },
+ {
+ "epoch": 17.810834425513324,
+ "grad_norm": 0.27178290486335754,
+ "learning_rate": 0.0006,
+ "loss": 3.9784536361694336,
+ "step": 1282
+ },
+ {
+ "epoch": 17.824814329401484,
+ "grad_norm": 0.27962708473205566,
+ "learning_rate": 0.0006,
+ "loss": 4.012705326080322,
+ "step": 1283
+ },
+ {
+ "epoch": 17.838794233289647,
+ "grad_norm": 0.29147693514823914,
+ "learning_rate": 0.0006,
+ "loss": 4.0159783363342285,
+ "step": 1284
+ },
+ {
+ "epoch": 17.852774137177807,
+ "grad_norm": 0.2841821312904358,
+ "learning_rate": 0.0006,
+ "loss": 4.011552810668945,
+ "step": 1285
+ },
+ {
+ "epoch": 17.866754041065967,
+ "grad_norm": 0.24924969673156738,
+ "learning_rate": 0.0006,
+ "loss": 3.992421865463257,
+ "step": 1286
+ },
+ {
+ "epoch": 17.88073394495413,
+ "grad_norm": 0.24850749969482422,
+ "learning_rate": 0.0006,
+ "loss": 3.974897861480713,
+ "step": 1287
+ },
+ {
+ "epoch": 17.89471384884229,
+ "grad_norm": 0.2409554123878479,
+ "learning_rate": 0.0006,
+ "loss": 4.002941131591797,
+ "step": 1288
+ },
+ {
+ "epoch": 17.90869375273045,
+ "grad_norm": 0.2656126320362091,
+ "learning_rate": 0.0006,
+ "loss": 3.9804210662841797,
+ "step": 1289
+ },
+ {
+ "epoch": 17.92267365661861,
+ "grad_norm": 0.28210243582725525,
+ "learning_rate": 0.0006,
+ "loss": 4.007192134857178,
+ "step": 1290
+ },
+ {
+ "epoch": 17.936653560506773,
+ "grad_norm": 0.28427553176879883,
+ "learning_rate": 0.0006,
+ "loss": 3.9739556312561035,
+ "step": 1291
+ },
+ {
+ "epoch": 17.950633464394933,
+ "grad_norm": 0.28893420100212097,
+ "learning_rate": 0.0006,
+ "loss": 4.004766941070557,
+ "step": 1292
+ },
+ {
+ "epoch": 17.964613368283093,
+ "grad_norm": 0.2831471562385559,
+ "learning_rate": 0.0006,
+ "loss": 3.984936237335205,
+ "step": 1293
+ },
+ {
+ "epoch": 17.978593272171253,
+ "grad_norm": 0.2518300712108612,
+ "learning_rate": 0.0006,
+ "loss": 4.002814292907715,
+ "step": 1294
+ },
+ {
+ "epoch": 17.992573176059416,
+ "grad_norm": 0.24264675378799438,
+ "learning_rate": 0.0006,
+ "loss": 3.998900890350342,
+ "step": 1295
+ },
+ {
+ "epoch": 18.0,
+ "grad_norm": 0.24474996328353882,
+ "learning_rate": 0.0006,
+ "loss": 3.974229335784912,
+ "step": 1296
+ },
+ {
+ "epoch": 18.0,
+ "eval_loss": 4.195685863494873,
+ "eval_runtime": 44.0709,
+ "eval_samples_per_second": 55.411,
+ "eval_steps_per_second": 3.472,
+ "step": 1296
+ },
+ {
+ "epoch": 18.01397990388816,
+ "grad_norm": 0.2553016245365143,
+ "learning_rate": 0.0006,
+ "loss": 3.9522247314453125,
+ "step": 1297
+ },
+ {
+ "epoch": 18.027959807776323,
+ "grad_norm": 0.22350727021694183,
+ "learning_rate": 0.0006,
+ "loss": 3.9850122928619385,
+ "step": 1298
+ },
+ {
+ "epoch": 18.041939711664483,
+ "grad_norm": 0.23935550451278687,
+ "learning_rate": 0.0006,
+ "loss": 3.9758832454681396,
+ "step": 1299
+ },
+ {
+ "epoch": 18.055919615552643,
+ "grad_norm": 0.23868797719478607,
+ "learning_rate": 0.0006,
+ "loss": 3.9567959308624268,
+ "step": 1300
+ },
+ {
+ "epoch": 18.069899519440803,
+ "grad_norm": 0.23102357983589172,
+ "learning_rate": 0.0006,
+ "loss": 3.9399867057800293,
+ "step": 1301
+ },
+ {
+ "epoch": 18.083879423328966,
+ "grad_norm": 0.23706983029842377,
+ "learning_rate": 0.0006,
+ "loss": 3.993434190750122,
+ "step": 1302
+ },
+ {
+ "epoch": 18.097859327217126,
+ "grad_norm": 0.22207573056221008,
+ "learning_rate": 0.0006,
+ "loss": 3.993436574935913,
+ "step": 1303
+ },
+ {
+ "epoch": 18.111839231105286,
+ "grad_norm": 0.23975296318531036,
+ "learning_rate": 0.0006,
+ "loss": 3.981943368911743,
+ "step": 1304
+ },
+ {
+ "epoch": 18.125819134993446,
+ "grad_norm": 0.2520582675933838,
+ "learning_rate": 0.0006,
+ "loss": 3.965493679046631,
+ "step": 1305
+ },
+ {
+ "epoch": 18.13979903888161,
+ "grad_norm": 0.2230956256389618,
+ "learning_rate": 0.0006,
+ "loss": 3.9360928535461426,
+ "step": 1306
+ },
+ {
+ "epoch": 18.15377894276977,
+ "grad_norm": 0.22527500987052917,
+ "learning_rate": 0.0006,
+ "loss": 3.9814581871032715,
+ "step": 1307
+ },
+ {
+ "epoch": 18.16775884665793,
+ "grad_norm": 0.22389626502990723,
+ "learning_rate": 0.0006,
+ "loss": 3.961590051651001,
+ "step": 1308
+ },
+ {
+ "epoch": 18.18173875054609,
+ "grad_norm": 0.22279471158981323,
+ "learning_rate": 0.0006,
+ "loss": 3.952338695526123,
+ "step": 1309
+ },
+ {
+ "epoch": 18.195718654434252,
+ "grad_norm": 0.24635115265846252,
+ "learning_rate": 0.0006,
+ "loss": 3.9693849086761475,
+ "step": 1310
+ },
+ {
+ "epoch": 18.209698558322412,
+ "grad_norm": 0.2757279872894287,
+ "learning_rate": 0.0006,
+ "loss": 3.9956700801849365,
+ "step": 1311
+ },
+ {
+ "epoch": 18.22367846221057,
+ "grad_norm": 0.2619115710258484,
+ "learning_rate": 0.0006,
+ "loss": 3.948878765106201,
+ "step": 1312
+ },
+ {
+ "epoch": 18.23765836609873,
+ "grad_norm": 0.22853828966617584,
+ "learning_rate": 0.0006,
+ "loss": 3.9545674324035645,
+ "step": 1313
+ },
+ {
+ "epoch": 18.251638269986895,
+ "grad_norm": 0.22904761135578156,
+ "learning_rate": 0.0006,
+ "loss": 3.947535991668701,
+ "step": 1314
+ },
+ {
+ "epoch": 18.265618173875055,
+ "grad_norm": 0.23592644929885864,
+ "learning_rate": 0.0006,
+ "loss": 3.971926212310791,
+ "step": 1315
+ },
+ {
+ "epoch": 18.279598077763215,
+ "grad_norm": 0.22120243310928345,
+ "learning_rate": 0.0006,
+ "loss": 3.9471049308776855,
+ "step": 1316
+ },
+ {
+ "epoch": 18.293577981651374,
+ "grad_norm": 0.20308749377727509,
+ "learning_rate": 0.0006,
+ "loss": 3.967449188232422,
+ "step": 1317
+ },
+ {
+ "epoch": 18.307557885539538,
+ "grad_norm": 0.20013529062271118,
+ "learning_rate": 0.0006,
+ "loss": 3.966151237487793,
+ "step": 1318
+ },
+ {
+ "epoch": 18.321537789427698,
+ "grad_norm": 0.20635221898555756,
+ "learning_rate": 0.0006,
+ "loss": 3.9908885955810547,
+ "step": 1319
+ },
+ {
+ "epoch": 18.335517693315857,
+ "grad_norm": 0.2232237160205841,
+ "learning_rate": 0.0006,
+ "loss": 3.9488768577575684,
+ "step": 1320
+ },
+ {
+ "epoch": 18.34949759720402,
+ "grad_norm": 0.21916444599628448,
+ "learning_rate": 0.0006,
+ "loss": 3.973428726196289,
+ "step": 1321
+ },
+ {
+ "epoch": 18.36347750109218,
+ "grad_norm": 0.20427337288856506,
+ "learning_rate": 0.0006,
+ "loss": 3.969332695007324,
+ "step": 1322
+ },
+ {
+ "epoch": 18.37745740498034,
+ "grad_norm": 0.20138131082057953,
+ "learning_rate": 0.0006,
+ "loss": 3.9651856422424316,
+ "step": 1323
+ },
+ {
+ "epoch": 18.3914373088685,
+ "grad_norm": 0.18918880820274353,
+ "learning_rate": 0.0006,
+ "loss": 3.9772281646728516,
+ "step": 1324
+ },
+ {
+ "epoch": 18.405417212756664,
+ "grad_norm": 0.1860039383172989,
+ "learning_rate": 0.0006,
+ "loss": 3.9289052486419678,
+ "step": 1325
+ },
+ {
+ "epoch": 18.419397116644824,
+ "grad_norm": 0.19541646540164948,
+ "learning_rate": 0.0006,
+ "loss": 3.9527673721313477,
+ "step": 1326
+ },
+ {
+ "epoch": 18.433377020532983,
+ "grad_norm": 0.206914022564888,
+ "learning_rate": 0.0006,
+ "loss": 3.99316143989563,
+ "step": 1327
+ },
+ {
+ "epoch": 18.447356924421143,
+ "grad_norm": 0.209097757935524,
+ "learning_rate": 0.0006,
+ "loss": 3.978130340576172,
+ "step": 1328
+ },
+ {
+ "epoch": 18.461336828309307,
+ "grad_norm": 0.22163373231887817,
+ "learning_rate": 0.0006,
+ "loss": 3.951460361480713,
+ "step": 1329
+ },
+ {
+ "epoch": 18.475316732197467,
+ "grad_norm": 0.21446120738983154,
+ "learning_rate": 0.0006,
+ "loss": 3.963571071624756,
+ "step": 1330
+ },
+ {
+ "epoch": 18.489296636085626,
+ "grad_norm": 0.2341388761997223,
+ "learning_rate": 0.0006,
+ "loss": 4.010684013366699,
+ "step": 1331
+ },
+ {
+ "epoch": 18.503276539973786,
+ "grad_norm": 0.2433937042951584,
+ "learning_rate": 0.0006,
+ "loss": 3.987537384033203,
+ "step": 1332
+ },
+ {
+ "epoch": 18.51725644386195,
+ "grad_norm": 0.24916228652000427,
+ "learning_rate": 0.0006,
+ "loss": 3.953075647354126,
+ "step": 1333
+ },
+ {
+ "epoch": 18.53123634775011,
+ "grad_norm": 0.24542421102523804,
+ "learning_rate": 0.0006,
+ "loss": 3.9510841369628906,
+ "step": 1334
+ },
+ {
+ "epoch": 18.54521625163827,
+ "grad_norm": 0.2393690049648285,
+ "learning_rate": 0.0006,
+ "loss": 3.981747627258301,
+ "step": 1335
+ },
+ {
+ "epoch": 18.55919615552643,
+ "grad_norm": 0.22806711494922638,
+ "learning_rate": 0.0006,
+ "loss": 3.9714856147766113,
+ "step": 1336
+ },
+ {
+ "epoch": 18.573176059414592,
+ "grad_norm": 0.21948303282260895,
+ "learning_rate": 0.0006,
+ "loss": 3.9429898262023926,
+ "step": 1337
+ },
+ {
+ "epoch": 18.587155963302752,
+ "grad_norm": 0.21575778722763062,
+ "learning_rate": 0.0006,
+ "loss": 3.9639933109283447,
+ "step": 1338
+ },
+ {
+ "epoch": 18.601135867190912,
+ "grad_norm": 0.23370565474033356,
+ "learning_rate": 0.0006,
+ "loss": 3.9819254875183105,
+ "step": 1339
+ },
+ {
+ "epoch": 18.615115771079076,
+ "grad_norm": 0.2613106369972229,
+ "learning_rate": 0.0006,
+ "loss": 3.9654669761657715,
+ "step": 1340
+ },
+ {
+ "epoch": 18.629095674967235,
+ "grad_norm": 0.26682716608047485,
+ "learning_rate": 0.0006,
+ "loss": 3.9832968711853027,
+ "step": 1341
+ },
+ {
+ "epoch": 18.643075578855395,
+ "grad_norm": 0.24331490695476532,
+ "learning_rate": 0.0006,
+ "loss": 3.9926600456237793,
+ "step": 1342
+ },
+ {
+ "epoch": 18.657055482743555,
+ "grad_norm": 0.2459341287612915,
+ "learning_rate": 0.0006,
+ "loss": 3.9508986473083496,
+ "step": 1343
+ },
+ {
+ "epoch": 18.67103538663172,
+ "grad_norm": 0.26395753026008606,
+ "learning_rate": 0.0006,
+ "loss": 3.961359977722168,
+ "step": 1344
+ },
+ {
+ "epoch": 18.68501529051988,
+ "grad_norm": 0.26049068570137024,
+ "learning_rate": 0.0006,
+ "loss": 3.9763245582580566,
+ "step": 1345
+ },
+ {
+ "epoch": 18.698995194408038,
+ "grad_norm": 0.24018602073192596,
+ "learning_rate": 0.0006,
+ "loss": 3.951780319213867,
+ "step": 1346
+ },
+ {
+ "epoch": 18.712975098296198,
+ "grad_norm": 0.23886290192604065,
+ "learning_rate": 0.0006,
+ "loss": 3.9883017539978027,
+ "step": 1347
+ },
+ {
+ "epoch": 18.72695500218436,
+ "grad_norm": 0.2293774038553238,
+ "learning_rate": 0.0006,
+ "loss": 3.9852685928344727,
+ "step": 1348
+ },
+ {
+ "epoch": 18.74093490607252,
+ "grad_norm": 0.22172975540161133,
+ "learning_rate": 0.0006,
+ "loss": 3.967550277709961,
+ "step": 1349
+ },
+ {
+ "epoch": 18.75491480996068,
+ "grad_norm": 0.2170475423336029,
+ "learning_rate": 0.0006,
+ "loss": 3.9570775032043457,
+ "step": 1350
+ },
+ {
+ "epoch": 18.76889471384884,
+ "grad_norm": 0.21458806097507477,
+ "learning_rate": 0.0006,
+ "loss": 3.9461212158203125,
+ "step": 1351
+ },
+ {
+ "epoch": 18.782874617737004,
+ "grad_norm": 0.21101507544517517,
+ "learning_rate": 0.0006,
+ "loss": 3.984398365020752,
+ "step": 1352
+ },
+ {
+ "epoch": 18.796854521625164,
+ "grad_norm": 0.23480583727359772,
+ "learning_rate": 0.0006,
+ "loss": 3.950312614440918,
+ "step": 1353
+ },
+ {
+ "epoch": 18.810834425513324,
+ "grad_norm": 0.24728581309318542,
+ "learning_rate": 0.0006,
+ "loss": 3.9572393894195557,
+ "step": 1354
+ },
+ {
+ "epoch": 18.824814329401484,
+ "grad_norm": 0.26063451170921326,
+ "learning_rate": 0.0006,
+ "loss": 3.9653234481811523,
+ "step": 1355
+ },
+ {
+ "epoch": 18.838794233289647,
+ "grad_norm": 0.24679961800575256,
+ "learning_rate": 0.0006,
+ "loss": 3.9560108184814453,
+ "step": 1356
+ },
+ {
+ "epoch": 18.852774137177807,
+ "grad_norm": 0.23199526965618134,
+ "learning_rate": 0.0006,
+ "loss": 3.9948246479034424,
+ "step": 1357
+ },
+ {
+ "epoch": 18.866754041065967,
+ "grad_norm": 0.22619125247001648,
+ "learning_rate": 0.0006,
+ "loss": 3.9783573150634766,
+ "step": 1358
+ },
+ {
+ "epoch": 18.88073394495413,
+ "grad_norm": 0.25499874353408813,
+ "learning_rate": 0.0006,
+ "loss": 3.9674575328826904,
+ "step": 1359
+ },
+ {
+ "epoch": 18.89471384884229,
+ "grad_norm": 0.23961037397384644,
+ "learning_rate": 0.0006,
+ "loss": 3.969209909439087,
+ "step": 1360
+ },
+ {
+ "epoch": 18.90869375273045,
+ "grad_norm": 0.21039162576198578,
+ "learning_rate": 0.0006,
+ "loss": 3.978661060333252,
+ "step": 1361
+ },
+ {
+ "epoch": 18.92267365661861,
+ "grad_norm": 0.2297026664018631,
+ "learning_rate": 0.0006,
+ "loss": 3.9483046531677246,
+ "step": 1362
+ },
+ {
+ "epoch": 18.936653560506773,
+ "grad_norm": 0.26367098093032837,
+ "learning_rate": 0.0006,
+ "loss": 3.927133560180664,
+ "step": 1363
+ },
+ {
+ "epoch": 18.950633464394933,
+ "grad_norm": 0.26893147826194763,
+ "learning_rate": 0.0006,
+ "loss": 3.957932710647583,
+ "step": 1364
+ },
+ {
+ "epoch": 18.964613368283093,
+ "grad_norm": 0.27092233300209045,
+ "learning_rate": 0.0006,
+ "loss": 3.976621150970459,
+ "step": 1365
+ },
+ {
+ "epoch": 18.978593272171253,
+ "grad_norm": 0.2672635018825531,
+ "learning_rate": 0.0006,
+ "loss": 3.9577765464782715,
+ "step": 1366
+ },
+ {
+ "epoch": 18.992573176059416,
+ "grad_norm": 0.2721385359764099,
+ "learning_rate": 0.0006,
+ "loss": 3.986100196838379,
+ "step": 1367
+ },
+ {
+ "epoch": 19.0,
+ "grad_norm": 0.27648621797561646,
+ "learning_rate": 0.0006,
+ "loss": 3.9942402839660645,
+ "step": 1368
+ },
+ {
+ "epoch": 19.0,
+ "eval_loss": 4.180216312408447,
+ "eval_runtime": 44.0079,
+ "eval_samples_per_second": 55.49,
+ "eval_steps_per_second": 3.477,
+ "step": 1368
+ },
+ {
+ "epoch": 19.01397990388816,
+ "grad_norm": 0.2563098073005676,
+ "learning_rate": 0.0006,
+ "loss": 3.9267354011535645,
+ "step": 1369
+ },
+ {
+ "epoch": 19.027959807776323,
+ "grad_norm": 0.2531425952911377,
+ "learning_rate": 0.0006,
+ "loss": 3.9273324012756348,
+ "step": 1370
+ },
+ {
+ "epoch": 19.041939711664483,
+ "grad_norm": 0.27485427260398865,
+ "learning_rate": 0.0006,
+ "loss": 3.9542183876037598,
+ "step": 1371
+ },
+ {
+ "epoch": 19.055919615552643,
+ "grad_norm": 0.27509891986846924,
+ "learning_rate": 0.0006,
+ "loss": 3.921940326690674,
+ "step": 1372
+ },
+ {
+ "epoch": 19.069899519440803,
+ "grad_norm": 0.28154096007347107,
+ "learning_rate": 0.0006,
+ "loss": 3.926743984222412,
+ "step": 1373
+ },
+ {
+ "epoch": 19.083879423328966,
+ "grad_norm": 0.2749912738800049,
+ "learning_rate": 0.0006,
+ "loss": 3.9257748126983643,
+ "step": 1374
+ },
+ {
+ "epoch": 19.097859327217126,
+ "grad_norm": 0.26168501377105713,
+ "learning_rate": 0.0006,
+ "loss": 3.9403202533721924,
+ "step": 1375
+ },
+ {
+ "epoch": 19.111839231105286,
+ "grad_norm": 0.23410023748874664,
+ "learning_rate": 0.0006,
+ "loss": 3.935378313064575,
+ "step": 1376
+ },
+ {
+ "epoch": 19.125819134993446,
+ "grad_norm": 0.25790470838546753,
+ "learning_rate": 0.0006,
+ "loss": 3.946147918701172,
+ "step": 1377
+ },
+ {
+ "epoch": 19.13979903888161,
+ "grad_norm": 0.26704177260398865,
+ "learning_rate": 0.0006,
+ "loss": 3.9511594772338867,
+ "step": 1378
+ },
+ {
+ "epoch": 19.15377894276977,
+ "grad_norm": 0.2560667097568512,
+ "learning_rate": 0.0006,
+ "loss": 3.915806531906128,
+ "step": 1379
+ },
+ {
+ "epoch": 19.16775884665793,
+ "grad_norm": 0.24684149026870728,
+ "learning_rate": 0.0006,
+ "loss": 3.9162003993988037,
+ "step": 1380
+ },
+ {
+ "epoch": 19.18173875054609,
+ "grad_norm": 0.2097567766904831,
+ "learning_rate": 0.0006,
+ "loss": 3.915739059448242,
+ "step": 1381
+ },
+ {
+ "epoch": 19.195718654434252,
+ "grad_norm": 0.21646849811077118,
+ "learning_rate": 0.0006,
+ "loss": 3.9097084999084473,
+ "step": 1382
+ },
+ {
+ "epoch": 19.209698558322412,
+ "grad_norm": 0.20626980066299438,
+ "learning_rate": 0.0006,
+ "loss": 3.9541783332824707,
+ "step": 1383
+ },
+ {
+ "epoch": 19.22367846221057,
+ "grad_norm": 0.23362718522548676,
+ "learning_rate": 0.0006,
+ "loss": 3.950096845626831,
+ "step": 1384
+ },
+ {
+ "epoch": 19.23765836609873,
+ "grad_norm": 0.25402209162712097,
+ "learning_rate": 0.0006,
+ "loss": 3.927671432495117,
+ "step": 1385
+ },
+ {
+ "epoch": 19.251638269986895,
+ "grad_norm": 0.23714083433151245,
+ "learning_rate": 0.0006,
+ "loss": 3.939765453338623,
+ "step": 1386
+ },
+ {
+ "epoch": 19.265618173875055,
+ "grad_norm": 0.20895546674728394,
+ "learning_rate": 0.0006,
+ "loss": 3.9384806156158447,
+ "step": 1387
+ },
+ {
+ "epoch": 19.279598077763215,
+ "grad_norm": 0.21374300122261047,
+ "learning_rate": 0.0006,
+ "loss": 3.9523749351501465,
+ "step": 1388
+ },
+ {
+ "epoch": 19.293577981651374,
+ "grad_norm": 0.210394486784935,
+ "learning_rate": 0.0006,
+ "loss": 3.9540798664093018,
+ "step": 1389
+ },
+ {
+ "epoch": 19.307557885539538,
+ "grad_norm": 0.20646725594997406,
+ "learning_rate": 0.0006,
+ "loss": 3.9514098167419434,
+ "step": 1390
+ },
+ {
+ "epoch": 19.321537789427698,
+ "grad_norm": 0.21477538347244263,
+ "learning_rate": 0.0006,
+ "loss": 3.9369924068450928,
+ "step": 1391
+ },
+ {
+ "epoch": 19.335517693315857,
+ "grad_norm": 0.20431505143642426,
+ "learning_rate": 0.0006,
+ "loss": 3.9389796257019043,
+ "step": 1392
+ },
+ {
+ "epoch": 19.34949759720402,
+ "grad_norm": 0.19575877487659454,
+ "learning_rate": 0.0006,
+ "loss": 3.935976028442383,
+ "step": 1393
+ },
+ {
+ "epoch": 19.36347750109218,
+ "grad_norm": 0.20720405876636505,
+ "learning_rate": 0.0006,
+ "loss": 3.9670963287353516,
+ "step": 1394
+ },
+ {
+ "epoch": 19.37745740498034,
+ "grad_norm": 0.2173967957496643,
+ "learning_rate": 0.0006,
+ "loss": 3.903940439224243,
+ "step": 1395
+ },
+ {
+ "epoch": 19.3914373088685,
+ "grad_norm": 0.2180529683828354,
+ "learning_rate": 0.0006,
+ "loss": 3.8716301918029785,
+ "step": 1396
+ },
+ {
+ "epoch": 19.405417212756664,
+ "grad_norm": 0.20666591823101044,
+ "learning_rate": 0.0006,
+ "loss": 3.930936813354492,
+ "step": 1397
+ },
+ {
+ "epoch": 19.419397116644824,
+ "grad_norm": 0.20353034138679504,
+ "learning_rate": 0.0006,
+ "loss": 3.926954746246338,
+ "step": 1398
+ },
+ {
+ "epoch": 19.433377020532983,
+ "grad_norm": 0.22333289682865143,
+ "learning_rate": 0.0006,
+ "loss": 3.947504997253418,
+ "step": 1399
+ },
+ {
+ "epoch": 19.447356924421143,
+ "grad_norm": 0.21787697076797485,
+ "learning_rate": 0.0006,
+ "loss": 3.9325344562530518,
+ "step": 1400
+ },
+ {
+ "epoch": 19.461336828309307,
+ "grad_norm": 0.22805874049663544,
+ "learning_rate": 0.0006,
+ "loss": 3.9640727043151855,
+ "step": 1401
+ },
+ {
+ "epoch": 19.475316732197467,
+ "grad_norm": 0.22396457195281982,
+ "learning_rate": 0.0006,
+ "loss": 3.9537901878356934,
+ "step": 1402
+ },
+ {
+ "epoch": 19.489296636085626,
+ "grad_norm": 0.2333047240972519,
+ "learning_rate": 0.0006,
+ "loss": 3.935609817504883,
+ "step": 1403
+ },
+ {
+ "epoch": 19.503276539973786,
+ "grad_norm": 0.25063616037368774,
+ "learning_rate": 0.0006,
+ "loss": 3.9659228324890137,
+ "step": 1404
+ },
+ {
+ "epoch": 19.51725644386195,
+ "grad_norm": 0.29074087738990784,
+ "learning_rate": 0.0006,
+ "loss": 3.9552183151245117,
+ "step": 1405
+ },
+ {
+ "epoch": 19.53123634775011,
+ "grad_norm": 0.34876152873039246,
+ "learning_rate": 0.0006,
+ "loss": 3.976163387298584,
+ "step": 1406
+ },
+ {
+ "epoch": 19.54521625163827,
+ "grad_norm": 0.35026612877845764,
+ "learning_rate": 0.0006,
+ "loss": 3.961186408996582,
+ "step": 1407
+ },
+ {
+ "epoch": 19.55919615552643,
+ "grad_norm": 0.3199564218521118,
+ "learning_rate": 0.0006,
+ "loss": 3.9366297721862793,
+ "step": 1408
+ },
+ {
+ "epoch": 19.573176059414592,
+ "grad_norm": 0.2976185977458954,
+ "learning_rate": 0.0006,
+ "loss": 3.9502010345458984,
+ "step": 1409
+ },
+ {
+ "epoch": 19.587155963302752,
+ "grad_norm": 0.2951911687850952,
+ "learning_rate": 0.0006,
+ "loss": 3.9427943229675293,
+ "step": 1410
+ },
+ {
+ "epoch": 19.601135867190912,
+ "grad_norm": 0.27918702363967896,
+ "learning_rate": 0.0006,
+ "loss": 3.963700532913208,
+ "step": 1411
+ },
+ {
+ "epoch": 19.615115771079076,
+ "grad_norm": 0.26197490096092224,
+ "learning_rate": 0.0006,
+ "loss": 3.9636964797973633,
+ "step": 1412
+ },
+ {
+ "epoch": 19.629095674967235,
+ "grad_norm": 0.24242281913757324,
+ "learning_rate": 0.0006,
+ "loss": 3.961815595626831,
+ "step": 1413
+ },
+ {
+ "epoch": 19.643075578855395,
+ "grad_norm": 0.2606375515460968,
+ "learning_rate": 0.0006,
+ "loss": 3.946643352508545,
+ "step": 1414
+ },
+ {
+ "epoch": 19.657055482743555,
+ "grad_norm": 0.23353353142738342,
+ "learning_rate": 0.0006,
+ "loss": 3.973155975341797,
+ "step": 1415
+ },
+ {
+ "epoch": 19.67103538663172,
+ "grad_norm": 0.22872662544250488,
+ "learning_rate": 0.0006,
+ "loss": 3.9528894424438477,
+ "step": 1416
+ },
+ {
+ "epoch": 19.68501529051988,
+ "grad_norm": 0.24678432941436768,
+ "learning_rate": 0.0006,
+ "loss": 3.9313249588012695,
+ "step": 1417
+ },
+ {
+ "epoch": 19.698995194408038,
+ "grad_norm": 0.23895515501499176,
+ "learning_rate": 0.0006,
+ "loss": 3.944082498550415,
+ "step": 1418
+ },
+ {
+ "epoch": 19.712975098296198,
+ "grad_norm": 0.23649105429649353,
+ "learning_rate": 0.0006,
+ "loss": 3.962069034576416,
+ "step": 1419
+ },
+ {
+ "epoch": 19.72695500218436,
+ "grad_norm": 0.22031061351299286,
+ "learning_rate": 0.0006,
+ "loss": 3.912972927093506,
+ "step": 1420
+ },
+ {
+ "epoch": 19.74093490607252,
+ "grad_norm": 0.20231695473194122,
+ "learning_rate": 0.0006,
+ "loss": 3.964531421661377,
+ "step": 1421
+ },
+ {
+ "epoch": 19.75491480996068,
+ "grad_norm": 0.19980913400650024,
+ "learning_rate": 0.0006,
+ "loss": 3.9452600479125977,
+ "step": 1422
+ },
+ {
+ "epoch": 19.76889471384884,
+ "grad_norm": 0.21768775582313538,
+ "learning_rate": 0.0006,
+ "loss": 3.9214301109313965,
+ "step": 1423
+ },
+ {
+ "epoch": 19.782874617737004,
+ "grad_norm": 0.21287119388580322,
+ "learning_rate": 0.0006,
+ "loss": 3.9416494369506836,
+ "step": 1424
+ },
+ {
+ "epoch": 19.796854521625164,
+ "grad_norm": 0.21399827301502228,
+ "learning_rate": 0.0006,
+ "loss": 3.971010208129883,
+ "step": 1425
+ },
+ {
+ "epoch": 19.810834425513324,
+ "grad_norm": 0.1957658976316452,
+ "learning_rate": 0.0006,
+ "loss": 3.936331272125244,
+ "step": 1426
+ },
+ {
+ "epoch": 19.824814329401484,
+ "grad_norm": 0.19341488182544708,
+ "learning_rate": 0.0006,
+ "loss": 3.9321448802948,
+ "step": 1427
+ },
+ {
+ "epoch": 19.838794233289647,
+ "grad_norm": 0.18405723571777344,
+ "learning_rate": 0.0006,
+ "loss": 3.939542293548584,
+ "step": 1428
+ },
+ {
+ "epoch": 19.852774137177807,
+ "grad_norm": 0.19672836363315582,
+ "learning_rate": 0.0006,
+ "loss": 3.939652919769287,
+ "step": 1429
+ },
+ {
+ "epoch": 19.866754041065967,
+ "grad_norm": 0.1998940259218216,
+ "learning_rate": 0.0006,
+ "loss": 3.932892322540283,
+ "step": 1430
+ },
+ {
+ "epoch": 19.88073394495413,
+ "grad_norm": 0.2307668924331665,
+ "learning_rate": 0.0006,
+ "loss": 3.9402761459350586,
+ "step": 1431
+ },
+ {
+ "epoch": 19.89471384884229,
+ "grad_norm": 0.2531987726688385,
+ "learning_rate": 0.0006,
+ "loss": 3.9153199195861816,
+ "step": 1432
+ },
+ {
+ "epoch": 19.90869375273045,
+ "grad_norm": 0.2299388349056244,
+ "learning_rate": 0.0006,
+ "loss": 3.9569954872131348,
+ "step": 1433
+ },
+ {
+ "epoch": 19.92267365661861,
+ "grad_norm": 0.2503527104854584,
+ "learning_rate": 0.0006,
+ "loss": 3.9469428062438965,
+ "step": 1434
+ },
+ {
+ "epoch": 19.936653560506773,
+ "grad_norm": 0.25390249490737915,
+ "learning_rate": 0.0006,
+ "loss": 3.941803455352783,
+ "step": 1435
+ },
+ {
+ "epoch": 19.950633464394933,
+ "grad_norm": 0.2288687825202942,
+ "learning_rate": 0.0006,
+ "loss": 3.9385883808135986,
+ "step": 1436
+ },
+ {
+ "epoch": 19.964613368283093,
+ "grad_norm": 0.2231096774339676,
+ "learning_rate": 0.0006,
+ "loss": 3.9255237579345703,
+ "step": 1437
+ },
+ {
+ "epoch": 19.978593272171253,
+ "grad_norm": 0.20729343593120575,
+ "learning_rate": 0.0006,
+ "loss": 3.9443163871765137,
+ "step": 1438
+ },
+ {
+ "epoch": 19.992573176059416,
+ "grad_norm": 0.197743758559227,
+ "learning_rate": 0.0006,
+ "loss": 3.925455093383789,
+ "step": 1439
+ },
+ {
+ "epoch": 20.0,
+ "grad_norm": 0.23943661153316498,
+ "learning_rate": 0.0006,
+ "loss": 3.9458866119384766,
+ "step": 1440
+ },
+ {
+ "epoch": 20.0,
+ "eval_loss": 4.144192218780518,
+ "eval_runtime": 44.0278,
+ "eval_samples_per_second": 55.465,
+ "eval_steps_per_second": 3.475,
+ "step": 1440
+ },
+ {
+ "epoch": 20.01397990388816,
+ "grad_norm": 0.2032143622636795,
+ "learning_rate": 0.0006,
+ "loss": 3.9151499271392822,
+ "step": 1441
+ },
+ {
+ "epoch": 20.027959807776323,
+ "grad_norm": 0.20164789259433746,
+ "learning_rate": 0.0006,
+ "loss": 3.874115228652954,
+ "step": 1442
+ },
+ {
+ "epoch": 20.041939711664483,
+ "grad_norm": 0.20796619355678558,
+ "learning_rate": 0.0006,
+ "loss": 3.9090776443481445,
+ "step": 1443
+ },
+ {
+ "epoch": 20.055919615552643,
+ "grad_norm": 0.1999918520450592,
+ "learning_rate": 0.0006,
+ "loss": 3.926563262939453,
+ "step": 1444
+ },
+ {
+ "epoch": 20.069899519440803,
+ "grad_norm": 0.204790860414505,
+ "learning_rate": 0.0006,
+ "loss": 3.9088830947875977,
+ "step": 1445
+ },
+ {
+ "epoch": 20.083879423328966,
+ "grad_norm": 0.21507175266742706,
+ "learning_rate": 0.0006,
+ "loss": 3.916504383087158,
+ "step": 1446
+ },
+ {
+ "epoch": 20.097859327217126,
+ "grad_norm": 0.2398025095462799,
+ "learning_rate": 0.0006,
+ "loss": 3.9128990173339844,
+ "step": 1447
+ },
+ {
+ "epoch": 20.111839231105286,
+ "grad_norm": 0.26037144660949707,
+ "learning_rate": 0.0006,
+ "loss": 3.9125187397003174,
+ "step": 1448
+ },
+ {
+ "epoch": 20.125819134993446,
+ "grad_norm": 0.25564828515052795,
+ "learning_rate": 0.0006,
+ "loss": 3.891867160797119,
+ "step": 1449
+ },
+ {
+ "epoch": 20.13979903888161,
+ "grad_norm": 0.2767223119735718,
+ "learning_rate": 0.0006,
+ "loss": 3.9202775955200195,
+ "step": 1450
+ },
+ {
+ "epoch": 20.15377894276977,
+ "grad_norm": 0.27696558833122253,
+ "learning_rate": 0.0006,
+ "loss": 3.9231314659118652,
+ "step": 1451
+ },
+ {
+ "epoch": 20.16775884665793,
+ "grad_norm": 0.3054044246673584,
+ "learning_rate": 0.0006,
+ "loss": 3.918138027191162,
+ "step": 1452
+ },
+ {
+ "epoch": 20.18173875054609,
+ "grad_norm": 0.3018973171710968,
+ "learning_rate": 0.0006,
+ "loss": 3.890678882598877,
+ "step": 1453
+ },
+ {
+ "epoch": 20.195718654434252,
+ "grad_norm": 0.306232750415802,
+ "learning_rate": 0.0006,
+ "loss": 3.920753002166748,
+ "step": 1454
+ },
+ {
+ "epoch": 20.209698558322412,
+ "grad_norm": 0.29593729972839355,
+ "learning_rate": 0.0006,
+ "loss": 3.9455509185791016,
+ "step": 1455
+ },
+ {
+ "epoch": 20.22367846221057,
+ "grad_norm": 0.2937646210193634,
+ "learning_rate": 0.0006,
+ "loss": 3.9227709770202637,
+ "step": 1456
+ },
+ {
+ "epoch": 20.23765836609873,
+ "grad_norm": 0.26380231976509094,
+ "learning_rate": 0.0006,
+ "loss": 3.9097609519958496,
+ "step": 1457
+ },
+ {
+ "epoch": 20.251638269986895,
+ "grad_norm": 0.24992692470550537,
+ "learning_rate": 0.0006,
+ "loss": 3.9393627643585205,
+ "step": 1458
+ },
+ {
+ "epoch": 20.265618173875055,
+ "grad_norm": 0.270219087600708,
+ "learning_rate": 0.0006,
+ "loss": 3.929330348968506,
+ "step": 1459
+ },
+ {
+ "epoch": 20.279598077763215,
+ "grad_norm": 0.2860020399093628,
+ "learning_rate": 0.0006,
+ "loss": 3.8947913646698,
+ "step": 1460
+ },
+ {
+ "epoch": 20.293577981651374,
+ "grad_norm": 0.27494579553604126,
+ "learning_rate": 0.0006,
+ "loss": 3.9105992317199707,
+ "step": 1461
+ },
+ {
+ "epoch": 20.307557885539538,
+ "grad_norm": 0.26467713713645935,
+ "learning_rate": 0.0006,
+ "loss": 3.914632797241211,
+ "step": 1462
+ },
+ {
+ "epoch": 20.321537789427698,
+ "grad_norm": 0.25747713446617126,
+ "learning_rate": 0.0006,
+ "loss": 3.919846534729004,
+ "step": 1463
+ },
+ {
+ "epoch": 20.335517693315857,
+ "grad_norm": 0.24027711153030396,
+ "learning_rate": 0.0006,
+ "loss": 3.904740810394287,
+ "step": 1464
+ },
+ {
+ "epoch": 20.34949759720402,
+ "grad_norm": 0.24682414531707764,
+ "learning_rate": 0.0006,
+ "loss": 3.9190149307250977,
+ "step": 1465
+ },
+ {
+ "epoch": 20.36347750109218,
+ "grad_norm": 0.2619759440422058,
+ "learning_rate": 0.0006,
+ "loss": 3.9488329887390137,
+ "step": 1466
+ },
+ {
+ "epoch": 20.37745740498034,
+ "grad_norm": 0.2632448971271515,
+ "learning_rate": 0.0006,
+ "loss": 3.9216647148132324,
+ "step": 1467
+ },
+ {
+ "epoch": 20.3914373088685,
+ "grad_norm": 0.27569764852523804,
+ "learning_rate": 0.0006,
+ "loss": 3.9178895950317383,
+ "step": 1468
+ },
+ {
+ "epoch": 20.405417212756664,
+ "grad_norm": 0.2611774802207947,
+ "learning_rate": 0.0006,
+ "loss": 3.933730125427246,
+ "step": 1469
+ },
+ {
+ "epoch": 20.419397116644824,
+ "grad_norm": 0.2839447557926178,
+ "learning_rate": 0.0006,
+ "loss": 3.9261364936828613,
+ "step": 1470
+ },
+ {
+ "epoch": 20.433377020532983,
+ "grad_norm": 0.29006227850914,
+ "learning_rate": 0.0006,
+ "loss": 3.9157633781433105,
+ "step": 1471
+ },
+ {
+ "epoch": 20.447356924421143,
+ "grad_norm": 0.2809498906135559,
+ "learning_rate": 0.0006,
+ "loss": 3.9211745262145996,
+ "step": 1472
+ },
+ {
+ "epoch": 20.461336828309307,
+ "grad_norm": 0.27859532833099365,
+ "learning_rate": 0.0006,
+ "loss": 3.9115967750549316,
+ "step": 1473
+ },
+ {
+ "epoch": 20.475316732197467,
+ "grad_norm": 0.29114410281181335,
+ "learning_rate": 0.0006,
+ "loss": 3.9024441242218018,
+ "step": 1474
+ },
+ {
+ "epoch": 20.489296636085626,
+ "grad_norm": 0.2686930000782013,
+ "learning_rate": 0.0006,
+ "loss": 3.9497199058532715,
+ "step": 1475
+ },
+ {
+ "epoch": 20.503276539973786,
+ "grad_norm": 0.24120540916919708,
+ "learning_rate": 0.0006,
+ "loss": 3.9218955039978027,
+ "step": 1476
+ },
+ {
+ "epoch": 20.51725644386195,
+ "grad_norm": 0.23689547181129456,
+ "learning_rate": 0.0006,
+ "loss": 3.9410176277160645,
+ "step": 1477
+ },
+ {
+ "epoch": 20.53123634775011,
+ "grad_norm": 0.26382362842559814,
+ "learning_rate": 0.0006,
+ "loss": 3.8880343437194824,
+ "step": 1478
+ },
+ {
+ "epoch": 20.54521625163827,
+ "grad_norm": 0.21628661453723907,
+ "learning_rate": 0.0006,
+ "loss": 3.892622470855713,
+ "step": 1479
+ },
+ {
+ "epoch": 20.55919615552643,
+ "grad_norm": 0.19896996021270752,
+ "learning_rate": 0.0006,
+ "loss": 3.938734769821167,
+ "step": 1480
+ },
+ {
+ "epoch": 20.573176059414592,
+ "grad_norm": 0.20232494175434113,
+ "learning_rate": 0.0006,
+ "loss": 3.9197006225585938,
+ "step": 1481
+ },
+ {
+ "epoch": 20.587155963302752,
+ "grad_norm": 0.21807828545570374,
+ "learning_rate": 0.0006,
+ "loss": 3.9195618629455566,
+ "step": 1482
+ },
+ {
+ "epoch": 20.601135867190912,
+ "grad_norm": 0.21778680384159088,
+ "learning_rate": 0.0006,
+ "loss": 3.913395404815674,
+ "step": 1483
+ },
+ {
+ "epoch": 20.615115771079076,
+ "grad_norm": 0.21015185117721558,
+ "learning_rate": 0.0006,
+ "loss": 3.8858234882354736,
+ "step": 1484
+ },
+ {
+ "epoch": 20.629095674967235,
+ "grad_norm": 0.20131368935108185,
+ "learning_rate": 0.0006,
+ "loss": 3.927213430404663,
+ "step": 1485
+ },
+ {
+ "epoch": 20.643075578855395,
+ "grad_norm": 0.20746243000030518,
+ "learning_rate": 0.0006,
+ "loss": 3.913198471069336,
+ "step": 1486
+ },
+ {
+ "epoch": 20.657055482743555,
+ "grad_norm": 0.2024548053741455,
+ "learning_rate": 0.0006,
+ "loss": 3.923048257827759,
+ "step": 1487
+ },
+ {
+ "epoch": 20.67103538663172,
+ "grad_norm": 0.19735988974571228,
+ "learning_rate": 0.0006,
+ "loss": 3.9136500358581543,
+ "step": 1488
+ },
+ {
+ "epoch": 20.68501529051988,
+ "grad_norm": 0.19781625270843506,
+ "learning_rate": 0.0006,
+ "loss": 3.883793592453003,
+ "step": 1489
+ },
+ {
+ "epoch": 20.698995194408038,
+ "grad_norm": 0.1911996454000473,
+ "learning_rate": 0.0006,
+ "loss": 3.9078567028045654,
+ "step": 1490
+ },
+ {
+ "epoch": 20.712975098296198,
+ "grad_norm": 0.1989123821258545,
+ "learning_rate": 0.0006,
+ "loss": 3.9314043521881104,
+ "step": 1491
+ },
+ {
+ "epoch": 20.72695500218436,
+ "grad_norm": 0.18839342892169952,
+ "learning_rate": 0.0006,
+ "loss": 3.8955953121185303,
+ "step": 1492
+ },
+ {
+ "epoch": 20.74093490607252,
+ "grad_norm": 0.1944834142923355,
+ "learning_rate": 0.0006,
+ "loss": 3.9272377490997314,
+ "step": 1493
+ },
+ {
+ "epoch": 20.75491480996068,
+ "grad_norm": 0.20829126238822937,
+ "learning_rate": 0.0006,
+ "loss": 3.878857374191284,
+ "step": 1494
+ },
+ {
+ "epoch": 20.76889471384884,
+ "grad_norm": 0.21438424289226532,
+ "learning_rate": 0.0006,
+ "loss": 3.9155564308166504,
+ "step": 1495
+ },
+ {
+ "epoch": 20.782874617737004,
+ "grad_norm": 0.22309324145317078,
+ "learning_rate": 0.0006,
+ "loss": 3.9281692504882812,
+ "step": 1496
+ },
+ {
+ "epoch": 20.796854521625164,
+ "grad_norm": 0.2053767591714859,
+ "learning_rate": 0.0006,
+ "loss": 3.9096317291259766,
+ "step": 1497
+ },
+ {
+ "epoch": 20.810834425513324,
+ "grad_norm": 0.20429186522960663,
+ "learning_rate": 0.0006,
+ "loss": 3.9184865951538086,
+ "step": 1498
+ },
+ {
+ "epoch": 20.824814329401484,
+ "grad_norm": 0.21983473002910614,
+ "learning_rate": 0.0006,
+ "loss": 3.9130771160125732,
+ "step": 1499
+ },
+ {
+ "epoch": 20.838794233289647,
+ "grad_norm": 0.21649539470672607,
+ "learning_rate": 0.0006,
+ "loss": 3.921581268310547,
+ "step": 1500
+ },
+ {
+ "epoch": 20.852774137177807,
+ "grad_norm": 0.19645053148269653,
+ "learning_rate": 0.0006,
+ "loss": 3.966360092163086,
+ "step": 1501
+ },
+ {
+ "epoch": 20.866754041065967,
+ "grad_norm": 0.2126782387495041,
+ "learning_rate": 0.0006,
+ "loss": 3.9004554748535156,
+ "step": 1502
+ },
+ {
+ "epoch": 20.88073394495413,
+ "grad_norm": 0.22359658777713776,
+ "learning_rate": 0.0006,
+ "loss": 3.92336368560791,
+ "step": 1503
+ },
+ {
+ "epoch": 20.89471384884229,
+ "grad_norm": 0.2334042638540268,
+ "learning_rate": 0.0006,
+ "loss": 3.9188671112060547,
+ "step": 1504
+ },
+ {
+ "epoch": 20.90869375273045,
+ "grad_norm": 0.24595916271209717,
+ "learning_rate": 0.0006,
+ "loss": 3.9348371028900146,
+ "step": 1505
+ },
+ {
+ "epoch": 20.92267365661861,
+ "grad_norm": 0.24177910387516022,
+ "learning_rate": 0.0006,
+ "loss": 3.8796424865722656,
+ "step": 1506
+ },
+ {
+ "epoch": 20.936653560506773,
+ "grad_norm": 0.24193289875984192,
+ "learning_rate": 0.0006,
+ "loss": 3.892627716064453,
+ "step": 1507
+ },
+ {
+ "epoch": 20.950633464394933,
+ "grad_norm": 0.252849280834198,
+ "learning_rate": 0.0006,
+ "loss": 3.9300179481506348,
+ "step": 1508
+ },
+ {
+ "epoch": 20.964613368283093,
+ "grad_norm": 0.24933326244354248,
+ "learning_rate": 0.0006,
+ "loss": 3.9597225189208984,
+ "step": 1509
+ },
+ {
+ "epoch": 20.978593272171253,
+ "grad_norm": 0.23850969970226288,
+ "learning_rate": 0.0006,
+ "loss": 3.9027397632598877,
+ "step": 1510
+ },
+ {
+ "epoch": 20.992573176059416,
+ "grad_norm": 0.23298311233520508,
+ "learning_rate": 0.0006,
+ "loss": 3.9024105072021484,
+ "step": 1511
+ },
+ {
+ "epoch": 21.0,
+ "grad_norm": 0.2467455416917801,
+ "learning_rate": 0.0006,
+ "loss": 3.915929079055786,
+ "step": 1512
+ },
+ {
+ "epoch": 21.0,
+ "eval_loss": 4.136331081390381,
+ "eval_runtime": 43.9468,
+ "eval_samples_per_second": 55.567,
+ "eval_steps_per_second": 3.481,
+ "step": 1512
+ },
+ {
+ "epoch": 21.01397990388816,
+ "grad_norm": 0.2195885181427002,
+ "learning_rate": 0.0006,
+ "loss": 3.873412847518921,
+ "step": 1513
+ },
+ {
+ "epoch": 21.027959807776323,
+ "grad_norm": 0.24250614643096924,
+ "learning_rate": 0.0006,
+ "loss": 3.882302761077881,
+ "step": 1514
+ },
+ {
+ "epoch": 21.041939711664483,
+ "grad_norm": 0.249113991856575,
+ "learning_rate": 0.0006,
+ "loss": 3.9112048149108887,
+ "step": 1515
+ },
+ {
+ "epoch": 21.055919615552643,
+ "grad_norm": 0.25365301966667175,
+ "learning_rate": 0.0006,
+ "loss": 3.8625712394714355,
+ "step": 1516
+ },
+ {
+ "epoch": 21.069899519440803,
+ "grad_norm": 0.2218591272830963,
+ "learning_rate": 0.0006,
+ "loss": 3.876072406768799,
+ "step": 1517
+ },
+ {
+ "epoch": 21.083879423328966,
+ "grad_norm": 0.238582581281662,
+ "learning_rate": 0.0006,
+ "loss": 3.862060546875,
+ "step": 1518
+ },
+ {
+ "epoch": 21.097859327217126,
+ "grad_norm": 0.25051242113113403,
+ "learning_rate": 0.0006,
+ "loss": 3.905315399169922,
+ "step": 1519
+ },
+ {
+ "epoch": 21.111839231105286,
+ "grad_norm": 0.2391843944787979,
+ "learning_rate": 0.0006,
+ "loss": 3.909144401550293,
+ "step": 1520
+ },
+ {
+ "epoch": 21.125819134993446,
+ "grad_norm": 0.230543315410614,
+ "learning_rate": 0.0006,
+ "loss": 3.8856799602508545,
+ "step": 1521
+ },
+ {
+ "epoch": 21.13979903888161,
+ "grad_norm": 0.24165484309196472,
+ "learning_rate": 0.0006,
+ "loss": 3.893883228302002,
+ "step": 1522
+ },
+ {
+ "epoch": 21.15377894276977,
+ "grad_norm": 0.24657143652439117,
+ "learning_rate": 0.0006,
+ "loss": 3.901129722595215,
+ "step": 1523
+ },
+ {
+ "epoch": 21.16775884665793,
+ "grad_norm": 0.2659998834133148,
+ "learning_rate": 0.0006,
+ "loss": 3.910468101501465,
+ "step": 1524
+ },
+ {
+ "epoch": 21.18173875054609,
+ "grad_norm": 0.2673095166683197,
+ "learning_rate": 0.0006,
+ "loss": 3.917454242706299,
+ "step": 1525
+ },
+ {
+ "epoch": 21.195718654434252,
+ "grad_norm": 0.22122322022914886,
+ "learning_rate": 0.0006,
+ "loss": 3.9017257690429688,
+ "step": 1526
+ },
+ {
+ "epoch": 21.209698558322412,
+ "grad_norm": 0.21882867813110352,
+ "learning_rate": 0.0006,
+ "loss": 3.8605496883392334,
+ "step": 1527
+ },
+ {
+ "epoch": 21.22367846221057,
+ "grad_norm": 0.22335563600063324,
+ "learning_rate": 0.0006,
+ "loss": 3.88120174407959,
+ "step": 1528
+ },
+ {
+ "epoch": 21.23765836609873,
+ "grad_norm": 0.22973211109638214,
+ "learning_rate": 0.0006,
+ "loss": 3.8636834621429443,
+ "step": 1529
+ },
+ {
+ "epoch": 21.251638269986895,
+ "grad_norm": 0.2410288006067276,
+ "learning_rate": 0.0006,
+ "loss": 3.8698177337646484,
+ "step": 1530
+ },
+ {
+ "epoch": 21.265618173875055,
+ "grad_norm": 0.2454768717288971,
+ "learning_rate": 0.0006,
+ "loss": 3.905341148376465,
+ "step": 1531
+ },
+ {
+ "epoch": 21.279598077763215,
+ "grad_norm": 0.2271580696105957,
+ "learning_rate": 0.0006,
+ "loss": 3.864063262939453,
+ "step": 1532
+ },
+ {
+ "epoch": 21.293577981651374,
+ "grad_norm": 0.2200947403907776,
+ "learning_rate": 0.0006,
+ "loss": 3.8889589309692383,
+ "step": 1533
+ },
+ {
+ "epoch": 21.307557885539538,
+ "grad_norm": 0.2180824875831604,
+ "learning_rate": 0.0006,
+ "loss": 3.8873472213745117,
+ "step": 1534
+ },
+ {
+ "epoch": 21.321537789427698,
+ "grad_norm": 0.214975506067276,
+ "learning_rate": 0.0006,
+ "loss": 3.882307529449463,
+ "step": 1535
+ },
+ {
+ "epoch": 21.335517693315857,
+ "grad_norm": 0.21411260962486267,
+ "learning_rate": 0.0006,
+ "loss": 3.8861560821533203,
+ "step": 1536
+ },
+ {
+ "epoch": 21.34949759720402,
+ "grad_norm": 0.22635889053344727,
+ "learning_rate": 0.0006,
+ "loss": 3.9174342155456543,
+ "step": 1537
+ },
+ {
+ "epoch": 21.36347750109218,
+ "grad_norm": 0.22700625658035278,
+ "learning_rate": 0.0006,
+ "loss": 3.890416383743286,
+ "step": 1538
+ },
+ {
+ "epoch": 21.37745740498034,
+ "grad_norm": 0.2106025069952011,
+ "learning_rate": 0.0006,
+ "loss": 3.8672406673431396,
+ "step": 1539
+ },
+ {
+ "epoch": 21.3914373088685,
+ "grad_norm": 0.22994661331176758,
+ "learning_rate": 0.0006,
+ "loss": 3.893190383911133,
+ "step": 1540
+ },
+ {
+ "epoch": 21.405417212756664,
+ "grad_norm": 0.24701105058193207,
+ "learning_rate": 0.0006,
+ "loss": 3.898078441619873,
+ "step": 1541
+ },
+ {
+ "epoch": 21.419397116644824,
+ "grad_norm": 0.26914113759994507,
+ "learning_rate": 0.0006,
+ "loss": 3.905871868133545,
+ "step": 1542
+ },
+ {
+ "epoch": 21.433377020532983,
+ "grad_norm": 0.2904224097728729,
+ "learning_rate": 0.0006,
+ "loss": 3.8919103145599365,
+ "step": 1543
+ },
+ {
+ "epoch": 21.447356924421143,
+ "grad_norm": 0.2911844551563263,
+ "learning_rate": 0.0006,
+ "loss": 3.9073286056518555,
+ "step": 1544
+ },
+ {
+ "epoch": 21.461336828309307,
+ "grad_norm": 0.2742345929145813,
+ "learning_rate": 0.0006,
+ "loss": 3.9075546264648438,
+ "step": 1545
+ },
+ {
+ "epoch": 21.475316732197467,
+ "grad_norm": 0.2341093122959137,
+ "learning_rate": 0.0006,
+ "loss": 3.9232025146484375,
+ "step": 1546
+ },
+ {
+ "epoch": 21.489296636085626,
+ "grad_norm": 0.22808541357517242,
+ "learning_rate": 0.0006,
+ "loss": 3.9168174266815186,
+ "step": 1547
+ },
+ {
+ "epoch": 21.503276539973786,
+ "grad_norm": 0.23049889504909515,
+ "learning_rate": 0.0006,
+ "loss": 3.8850595951080322,
+ "step": 1548
+ },
+ {
+ "epoch": 21.51725644386195,
+ "grad_norm": 0.21519650518894196,
+ "learning_rate": 0.0006,
+ "loss": 3.891313076019287,
+ "step": 1549
+ },
+ {
+ "epoch": 21.53123634775011,
+ "grad_norm": 0.20999883115291595,
+ "learning_rate": 0.0006,
+ "loss": 3.894439220428467,
+ "step": 1550
+ },
+ {
+ "epoch": 21.54521625163827,
+ "grad_norm": 0.19641105830669403,
+ "learning_rate": 0.0006,
+ "loss": 3.894871473312378,
+ "step": 1551
+ },
+ {
+ "epoch": 21.55919615552643,
+ "grad_norm": 0.19108249247074127,
+ "learning_rate": 0.0006,
+ "loss": 3.905968189239502,
+ "step": 1552
+ },
+ {
+ "epoch": 21.573176059414592,
+ "grad_norm": 0.20222234725952148,
+ "learning_rate": 0.0006,
+ "loss": 3.90565824508667,
+ "step": 1553
+ },
+ {
+ "epoch": 21.587155963302752,
+ "grad_norm": 0.20620177686214447,
+ "learning_rate": 0.0006,
+ "loss": 3.9103245735168457,
+ "step": 1554
+ },
+ {
+ "epoch": 21.601135867190912,
+ "grad_norm": 0.2149713784456253,
+ "learning_rate": 0.0006,
+ "loss": 3.8864927291870117,
+ "step": 1555
+ },
+ {
+ "epoch": 21.615115771079076,
+ "grad_norm": 0.2354084551334381,
+ "learning_rate": 0.0006,
+ "loss": 3.905095100402832,
+ "step": 1556
+ },
+ {
+ "epoch": 21.629095674967235,
+ "grad_norm": 0.23949941992759705,
+ "learning_rate": 0.0006,
+ "loss": 3.901803493499756,
+ "step": 1557
+ },
+ {
+ "epoch": 21.643075578855395,
+ "grad_norm": 0.22914277017116547,
+ "learning_rate": 0.0006,
+ "loss": 3.876044273376465,
+ "step": 1558
+ },
+ {
+ "epoch": 21.657055482743555,
+ "grad_norm": 0.2363225370645523,
+ "learning_rate": 0.0006,
+ "loss": 3.910841703414917,
+ "step": 1559
+ },
+ {
+ "epoch": 21.67103538663172,
+ "grad_norm": 0.2635626792907715,
+ "learning_rate": 0.0006,
+ "loss": 3.847407579421997,
+ "step": 1560
+ },
+ {
+ "epoch": 21.68501529051988,
+ "grad_norm": 0.2499786615371704,
+ "learning_rate": 0.0006,
+ "loss": 3.8667140007019043,
+ "step": 1561
+ },
+ {
+ "epoch": 21.698995194408038,
+ "grad_norm": 0.21609611809253693,
+ "learning_rate": 0.0006,
+ "loss": 3.895470142364502,
+ "step": 1562
+ },
+ {
+ "epoch": 21.712975098296198,
+ "grad_norm": 0.2466774582862854,
+ "learning_rate": 0.0006,
+ "loss": 3.8853235244750977,
+ "step": 1563
+ },
+ {
+ "epoch": 21.72695500218436,
+ "grad_norm": 0.23791883885860443,
+ "learning_rate": 0.0006,
+ "loss": 3.899418354034424,
+ "step": 1564
+ },
+ {
+ "epoch": 21.74093490607252,
+ "grad_norm": 0.2048920840024948,
+ "learning_rate": 0.0006,
+ "loss": 3.8992419242858887,
+ "step": 1565
+ },
+ {
+ "epoch": 21.75491480996068,
+ "grad_norm": 0.22266621887683868,
+ "learning_rate": 0.0006,
+ "loss": 3.885765552520752,
+ "step": 1566
+ },
+ {
+ "epoch": 21.76889471384884,
+ "grad_norm": 0.2508748769760132,
+ "learning_rate": 0.0006,
+ "loss": 3.8797037601470947,
+ "step": 1567
+ },
+ {
+ "epoch": 21.782874617737004,
+ "grad_norm": 0.27245673537254333,
+ "learning_rate": 0.0006,
+ "loss": 3.8743176460266113,
+ "step": 1568
+ },
+ {
+ "epoch": 21.796854521625164,
+ "grad_norm": 0.25503191351890564,
+ "learning_rate": 0.0006,
+ "loss": 3.868906259536743,
+ "step": 1569
+ },
+ {
+ "epoch": 21.810834425513324,
+ "grad_norm": 0.22984394431114197,
+ "learning_rate": 0.0006,
+ "loss": 3.9051015377044678,
+ "step": 1570
+ },
+ {
+ "epoch": 21.824814329401484,
+ "grad_norm": 0.2411898821592331,
+ "learning_rate": 0.0006,
+ "loss": 3.8911490440368652,
+ "step": 1571
+ },
+ {
+ "epoch": 21.838794233289647,
+ "grad_norm": 0.22609318792819977,
+ "learning_rate": 0.0006,
+ "loss": 3.894839286804199,
+ "step": 1572
+ },
+ {
+ "epoch": 21.852774137177807,
+ "grad_norm": 0.21904583275318146,
+ "learning_rate": 0.0006,
+ "loss": 3.9314537048339844,
+ "step": 1573
+ },
+ {
+ "epoch": 21.866754041065967,
+ "grad_norm": 0.21869723498821259,
+ "learning_rate": 0.0006,
+ "loss": 3.9141433238983154,
+ "step": 1574
+ },
+ {
+ "epoch": 21.88073394495413,
+ "grad_norm": 0.21682019531726837,
+ "learning_rate": 0.0006,
+ "loss": 3.867898464202881,
+ "step": 1575
+ },
+ {
+ "epoch": 21.89471384884229,
+ "grad_norm": 0.2211964726448059,
+ "learning_rate": 0.0006,
+ "loss": 3.8892226219177246,
+ "step": 1576
+ },
+ {
+ "epoch": 21.90869375273045,
+ "grad_norm": 0.2097381353378296,
+ "learning_rate": 0.0006,
+ "loss": 3.9194154739379883,
+ "step": 1577
+ },
+ {
+ "epoch": 21.92267365661861,
+ "grad_norm": 0.21229565143585205,
+ "learning_rate": 0.0006,
+ "loss": 3.924694538116455,
+ "step": 1578
+ },
+ {
+ "epoch": 21.936653560506773,
+ "grad_norm": 0.2186083346605301,
+ "learning_rate": 0.0006,
+ "loss": 3.904440402984619,
+ "step": 1579
+ },
+ {
+ "epoch": 21.950633464394933,
+ "grad_norm": 0.21112321317195892,
+ "learning_rate": 0.0006,
+ "loss": 3.905674934387207,
+ "step": 1580
+ },
+ {
+ "epoch": 21.964613368283093,
+ "grad_norm": 0.20867373049259186,
+ "learning_rate": 0.0006,
+ "loss": 3.8761563301086426,
+ "step": 1581
+ },
+ {
+ "epoch": 21.978593272171253,
+ "grad_norm": 0.21640732884407043,
+ "learning_rate": 0.0006,
+ "loss": 3.871950149536133,
+ "step": 1582
+ },
+ {
+ "epoch": 21.992573176059416,
+ "grad_norm": 0.21920442581176758,
+ "learning_rate": 0.0006,
+ "loss": 3.8853464126586914,
+ "step": 1583
+ },
+ {
+ "epoch": 22.0,
+ "grad_norm": 0.24132665991783142,
+ "learning_rate": 0.0006,
+ "loss": 3.9012184143066406,
+ "step": 1584
+ },
+ {
+ "epoch": 22.0,
+ "eval_loss": 4.108598232269287,
+ "eval_runtime": 44.0434,
+ "eval_samples_per_second": 55.445,
+ "eval_steps_per_second": 3.474,
+ "step": 1584
+ },
+ {
+ "epoch": 22.01397990388816,
+ "grad_norm": 0.21989449858665466,
+ "learning_rate": 0.0006,
+ "loss": 3.8657469749450684,
+ "step": 1585
+ },
+ {
+ "epoch": 22.027959807776323,
+ "grad_norm": 0.20416802167892456,
+ "learning_rate": 0.0006,
+ "loss": 3.8682117462158203,
+ "step": 1586
+ },
+ {
+ "epoch": 22.041939711664483,
+ "grad_norm": 0.20651975274085999,
+ "learning_rate": 0.0006,
+ "loss": 3.8501222133636475,
+ "step": 1587
+ },
+ {
+ "epoch": 22.055919615552643,
+ "grad_norm": 0.22987176477909088,
+ "learning_rate": 0.0006,
+ "loss": 3.8830955028533936,
+ "step": 1588
+ },
+ {
+ "epoch": 22.069899519440803,
+ "grad_norm": 0.23308858275413513,
+ "learning_rate": 0.0006,
+ "loss": 3.8659040927886963,
+ "step": 1589
+ },
+ {
+ "epoch": 22.083879423328966,
+ "grad_norm": 0.2144266963005066,
+ "learning_rate": 0.0006,
+ "loss": 3.8311047554016113,
+ "step": 1590
+ },
+ {
+ "epoch": 22.097859327217126,
+ "grad_norm": 0.2052636295557022,
+ "learning_rate": 0.0006,
+ "loss": 3.8700156211853027,
+ "step": 1591
+ },
+ {
+ "epoch": 22.111839231105286,
+ "grad_norm": 0.22792384028434753,
+ "learning_rate": 0.0006,
+ "loss": 3.8799097537994385,
+ "step": 1592
+ },
+ {
+ "epoch": 22.125819134993446,
+ "grad_norm": 0.2533944249153137,
+ "learning_rate": 0.0006,
+ "loss": 3.874959945678711,
+ "step": 1593
+ },
+ {
+ "epoch": 22.13979903888161,
+ "grad_norm": 0.27126258611679077,
+ "learning_rate": 0.0006,
+ "loss": 3.863774299621582,
+ "step": 1594
+ },
+ {
+ "epoch": 22.15377894276977,
+ "grad_norm": 0.2634040415287018,
+ "learning_rate": 0.0006,
+ "loss": 3.8876869678497314,
+ "step": 1595
+ },
+ {
+ "epoch": 22.16775884665793,
+ "grad_norm": 0.267987459897995,
+ "learning_rate": 0.0006,
+ "loss": 3.871776819229126,
+ "step": 1596
+ },
+ {
+ "epoch": 22.18173875054609,
+ "grad_norm": 0.2972337305545807,
+ "learning_rate": 0.0006,
+ "loss": 3.8453969955444336,
+ "step": 1597
+ },
+ {
+ "epoch": 22.195718654434252,
+ "grad_norm": 0.3012159764766693,
+ "learning_rate": 0.0006,
+ "loss": 3.8774254322052,
+ "step": 1598
+ },
+ {
+ "epoch": 22.209698558322412,
+ "grad_norm": 0.27275875210762024,
+ "learning_rate": 0.0006,
+ "loss": 3.8558950424194336,
+ "step": 1599
+ },
+ {
+ "epoch": 22.22367846221057,
+ "grad_norm": 0.2817993462085724,
+ "learning_rate": 0.0006,
+ "loss": 3.872211217880249,
+ "step": 1600
+ },
+ {
+ "epoch": 22.23765836609873,
+ "grad_norm": 0.28823208808898926,
+ "learning_rate": 0.0006,
+ "loss": 3.847616672515869,
+ "step": 1601
+ },
+ {
+ "epoch": 22.251638269986895,
+ "grad_norm": 0.2646387815475464,
+ "learning_rate": 0.0006,
+ "loss": 3.8993802070617676,
+ "step": 1602
+ },
+ {
+ "epoch": 22.265618173875055,
+ "grad_norm": 0.27664077281951904,
+ "learning_rate": 0.0006,
+ "loss": 3.858553409576416,
+ "step": 1603
+ },
+ {
+ "epoch": 22.279598077763215,
+ "grad_norm": 0.27708905935287476,
+ "learning_rate": 0.0006,
+ "loss": 3.8691039085388184,
+ "step": 1604
+ },
+ {
+ "epoch": 22.293577981651374,
+ "grad_norm": 0.3045521378517151,
+ "learning_rate": 0.0006,
+ "loss": 3.8721439838409424,
+ "step": 1605
+ },
+ {
+ "epoch": 22.307557885539538,
+ "grad_norm": 0.3481914699077606,
+ "learning_rate": 0.0006,
+ "loss": 3.894503593444824,
+ "step": 1606
+ },
+ {
+ "epoch": 22.321537789427698,
+ "grad_norm": 0.3298046588897705,
+ "learning_rate": 0.0006,
+ "loss": 3.8420844078063965,
+ "step": 1607
+ },
+ {
+ "epoch": 22.335517693315857,
+ "grad_norm": 0.24967724084854126,
+ "learning_rate": 0.0006,
+ "loss": 3.8892619609832764,
+ "step": 1608
+ },
+ {
+ "epoch": 22.34949759720402,
+ "grad_norm": 0.22645241022109985,
+ "learning_rate": 0.0006,
+ "loss": 3.873265504837036,
+ "step": 1609
+ },
+ {
+ "epoch": 22.36347750109218,
+ "grad_norm": 0.22813954949378967,
+ "learning_rate": 0.0006,
+ "loss": 3.8658013343811035,
+ "step": 1610
+ },
+ {
+ "epoch": 22.37745740498034,
+ "grad_norm": 0.23825274407863617,
+ "learning_rate": 0.0006,
+ "loss": 3.885456085205078,
+ "step": 1611
+ },
+ {
+ "epoch": 22.3914373088685,
+ "grad_norm": 0.23612336814403534,
+ "learning_rate": 0.0006,
+ "loss": 3.851841449737549,
+ "step": 1612
+ },
+ {
+ "epoch": 22.405417212756664,
+ "grad_norm": 0.23851265013217926,
+ "learning_rate": 0.0006,
+ "loss": 3.8711647987365723,
+ "step": 1613
+ },
+ {
+ "epoch": 22.419397116644824,
+ "grad_norm": 0.22977286577224731,
+ "learning_rate": 0.0006,
+ "loss": 3.848539113998413,
+ "step": 1614
+ },
+ {
+ "epoch": 22.433377020532983,
+ "grad_norm": 0.20970143377780914,
+ "learning_rate": 0.0006,
+ "loss": 3.8709521293640137,
+ "step": 1615
+ },
+ {
+ "epoch": 22.447356924421143,
+ "grad_norm": 0.20714804530143738,
+ "learning_rate": 0.0006,
+ "loss": 3.875060558319092,
+ "step": 1616
+ },
+ {
+ "epoch": 22.461336828309307,
+ "grad_norm": 0.18881355226039886,
+ "learning_rate": 0.0006,
+ "loss": 3.8744640350341797,
+ "step": 1617
+ },
+ {
+ "epoch": 22.475316732197467,
+ "grad_norm": 0.1928759068250656,
+ "learning_rate": 0.0006,
+ "loss": 3.867971420288086,
+ "step": 1618
+ },
+ {
+ "epoch": 22.489296636085626,
+ "grad_norm": 0.18614749610424042,
+ "learning_rate": 0.0006,
+ "loss": 3.8738222122192383,
+ "step": 1619
+ },
+ {
+ "epoch": 22.503276539973786,
+ "grad_norm": 0.18614931404590607,
+ "learning_rate": 0.0006,
+ "loss": 3.8470513820648193,
+ "step": 1620
+ },
+ {
+ "epoch": 22.51725644386195,
+ "grad_norm": 0.17805059254169464,
+ "learning_rate": 0.0006,
+ "loss": 3.866396903991699,
+ "step": 1621
+ },
+ {
+ "epoch": 22.53123634775011,
+ "grad_norm": 0.16941314935684204,
+ "learning_rate": 0.0006,
+ "loss": 3.856832265853882,
+ "step": 1622
+ },
+ {
+ "epoch": 22.54521625163827,
+ "grad_norm": 0.1802310198545456,
+ "learning_rate": 0.0006,
+ "loss": 3.885653018951416,
+ "step": 1623
+ },
+ {
+ "epoch": 22.55919615552643,
+ "grad_norm": 0.1854856163263321,
+ "learning_rate": 0.0006,
+ "loss": 3.8779640197753906,
+ "step": 1624
+ },
+ {
+ "epoch": 22.573176059414592,
+ "grad_norm": 0.18765869736671448,
+ "learning_rate": 0.0006,
+ "loss": 3.8449032306671143,
+ "step": 1625
+ },
+ {
+ "epoch": 22.587155963302752,
+ "grad_norm": 0.1907789707183838,
+ "learning_rate": 0.0006,
+ "loss": 3.863029718399048,
+ "step": 1626
+ },
+ {
+ "epoch": 22.601135867190912,
+ "grad_norm": 0.19285395741462708,
+ "learning_rate": 0.0006,
+ "loss": 3.880145788192749,
+ "step": 1627
+ },
+ {
+ "epoch": 22.615115771079076,
+ "grad_norm": 0.19229751825332642,
+ "learning_rate": 0.0006,
+ "loss": 3.8521225452423096,
+ "step": 1628
+ },
+ {
+ "epoch": 22.629095674967235,
+ "grad_norm": 0.191694438457489,
+ "learning_rate": 0.0006,
+ "loss": 3.899827003479004,
+ "step": 1629
+ },
+ {
+ "epoch": 22.643075578855395,
+ "grad_norm": 0.20143048465251923,
+ "learning_rate": 0.0006,
+ "loss": 3.862064838409424,
+ "step": 1630
+ },
+ {
+ "epoch": 22.657055482743555,
+ "grad_norm": 0.1959840953350067,
+ "learning_rate": 0.0006,
+ "loss": 3.8955392837524414,
+ "step": 1631
+ },
+ {
+ "epoch": 22.67103538663172,
+ "grad_norm": 0.21454884111881256,
+ "learning_rate": 0.0006,
+ "loss": 3.8503167629241943,
+ "step": 1632
+ },
+ {
+ "epoch": 22.68501529051988,
+ "grad_norm": 0.21748484671115875,
+ "learning_rate": 0.0006,
+ "loss": 3.897134304046631,
+ "step": 1633
+ },
+ {
+ "epoch": 22.698995194408038,
+ "grad_norm": 0.21204186975955963,
+ "learning_rate": 0.0006,
+ "loss": 3.9292588233947754,
+ "step": 1634
+ },
+ {
+ "epoch": 22.712975098296198,
+ "grad_norm": 0.2112748771905899,
+ "learning_rate": 0.0006,
+ "loss": 3.89798641204834,
+ "step": 1635
+ },
+ {
+ "epoch": 22.72695500218436,
+ "grad_norm": 0.188576802611351,
+ "learning_rate": 0.0006,
+ "loss": 3.85627818107605,
+ "step": 1636
+ },
+ {
+ "epoch": 22.74093490607252,
+ "grad_norm": 0.17755994200706482,
+ "learning_rate": 0.0006,
+ "loss": 3.8480074405670166,
+ "step": 1637
+ },
+ {
+ "epoch": 22.75491480996068,
+ "grad_norm": 0.18037520349025726,
+ "learning_rate": 0.0006,
+ "loss": 3.8800172805786133,
+ "step": 1638
+ },
+ {
+ "epoch": 22.76889471384884,
+ "grad_norm": 0.19205765426158905,
+ "learning_rate": 0.0006,
+ "loss": 3.8658275604248047,
+ "step": 1639
+ },
+ {
+ "epoch": 22.782874617737004,
+ "grad_norm": 0.21801964938640594,
+ "learning_rate": 0.0006,
+ "loss": 3.8999452590942383,
+ "step": 1640
+ },
+ {
+ "epoch": 22.796854521625164,
+ "grad_norm": 0.23586086928844452,
+ "learning_rate": 0.0006,
+ "loss": 3.8660664558410645,
+ "step": 1641
+ },
+ {
+ "epoch": 22.810834425513324,
+ "grad_norm": 0.22289055585861206,
+ "learning_rate": 0.0006,
+ "loss": 3.86102557182312,
+ "step": 1642
+ },
+ {
+ "epoch": 22.824814329401484,
+ "grad_norm": 0.20695745944976807,
+ "learning_rate": 0.0006,
+ "loss": 3.8336222171783447,
+ "step": 1643
+ },
+ {
+ "epoch": 22.838794233289647,
+ "grad_norm": 0.2157406210899353,
+ "learning_rate": 0.0006,
+ "loss": 3.8923370838165283,
+ "step": 1644
+ },
+ {
+ "epoch": 22.852774137177807,
+ "grad_norm": 0.2326202690601349,
+ "learning_rate": 0.0006,
+ "loss": 3.8841443061828613,
+ "step": 1645
+ },
+ {
+ "epoch": 22.866754041065967,
+ "grad_norm": 0.2228803187608719,
+ "learning_rate": 0.0006,
+ "loss": 3.8791375160217285,
+ "step": 1646
+ },
+ {
+ "epoch": 22.88073394495413,
+ "grad_norm": 0.228999063372612,
+ "learning_rate": 0.0006,
+ "loss": 3.9005866050720215,
+ "step": 1647
+ },
+ {
+ "epoch": 22.89471384884229,
+ "grad_norm": 0.19673815369606018,
+ "learning_rate": 0.0006,
+ "loss": 3.8954291343688965,
+ "step": 1648
+ },
+ {
+ "epoch": 22.90869375273045,
+ "grad_norm": 0.1862584501504898,
+ "learning_rate": 0.0006,
+ "loss": 3.8591439723968506,
+ "step": 1649
+ },
+ {
+ "epoch": 22.92267365661861,
+ "grad_norm": 0.21360838413238525,
+ "learning_rate": 0.0006,
+ "loss": 3.862949848175049,
+ "step": 1650
+ },
+ {
+ "epoch": 22.936653560506773,
+ "grad_norm": 0.22538702189922333,
+ "learning_rate": 0.0006,
+ "loss": 3.8466529846191406,
+ "step": 1651
+ },
+ {
+ "epoch": 22.950633464394933,
+ "grad_norm": 0.21452727913856506,
+ "learning_rate": 0.0006,
+ "loss": 3.890007495880127,
+ "step": 1652
+ },
+ {
+ "epoch": 22.964613368283093,
+ "grad_norm": 0.21283482015132904,
+ "learning_rate": 0.0006,
+ "loss": 3.8820929527282715,
+ "step": 1653
+ },
+ {
+ "epoch": 22.978593272171253,
+ "grad_norm": 0.2035825103521347,
+ "learning_rate": 0.0006,
+ "loss": 3.8663241863250732,
+ "step": 1654
+ },
+ {
+ "epoch": 22.992573176059416,
+ "grad_norm": 0.22431661188602448,
+ "learning_rate": 0.0006,
+ "loss": 3.88238525390625,
+ "step": 1655
+ },
+ {
+ "epoch": 23.0,
+ "grad_norm": 0.2619943916797638,
+ "learning_rate": 0.0006,
+ "loss": 3.8482635021209717,
+ "step": 1656
+ },
+ {
+ "epoch": 23.0,
+ "eval_loss": 4.099980354309082,
+ "eval_runtime": 44.1311,
+ "eval_samples_per_second": 55.335,
+ "eval_steps_per_second": 3.467,
+ "step": 1656
+ },
+ {
+ "epoch": 23.01397990388816,
+ "grad_norm": 0.24712848663330078,
+ "learning_rate": 0.0006,
+ "loss": 3.836700916290283,
+ "step": 1657
+ },
+ {
+ "epoch": 23.027959807776323,
+ "grad_norm": 0.28568798303604126,
+ "learning_rate": 0.0006,
+ "loss": 3.8523952960968018,
+ "step": 1658
+ },
+ {
+ "epoch": 23.041939711664483,
+ "grad_norm": 0.2999744415283203,
+ "learning_rate": 0.0006,
+ "loss": 3.8229494094848633,
+ "step": 1659
+ },
+ {
+ "epoch": 23.055919615552643,
+ "grad_norm": 0.32080450654029846,
+ "learning_rate": 0.0006,
+ "loss": 3.8562774658203125,
+ "step": 1660
+ },
+ {
+ "epoch": 23.069899519440803,
+ "grad_norm": 0.293468177318573,
+ "learning_rate": 0.0006,
+ "loss": 3.889139175415039,
+ "step": 1661
+ },
+ {
+ "epoch": 23.083879423328966,
+ "grad_norm": 0.2605799436569214,
+ "learning_rate": 0.0006,
+ "loss": 3.838681221008301,
+ "step": 1662
+ },
+ {
+ "epoch": 23.097859327217126,
+ "grad_norm": 0.2656237483024597,
+ "learning_rate": 0.0006,
+ "loss": 3.8603532314300537,
+ "step": 1663
+ },
+ {
+ "epoch": 23.111839231105286,
+ "grad_norm": 0.27163293957710266,
+ "learning_rate": 0.0006,
+ "loss": 3.846987009048462,
+ "step": 1664
+ },
+ {
+ "epoch": 23.125819134993446,
+ "grad_norm": 0.2719763517379761,
+ "learning_rate": 0.0006,
+ "loss": 3.805354595184326,
+ "step": 1665
+ },
+ {
+ "epoch": 23.13979903888161,
+ "grad_norm": 0.25786274671554565,
+ "learning_rate": 0.0006,
+ "loss": 3.8486907482147217,
+ "step": 1666
+ },
+ {
+ "epoch": 23.15377894276977,
+ "grad_norm": 0.2675692141056061,
+ "learning_rate": 0.0006,
+ "loss": 3.816493511199951,
+ "step": 1667
+ },
+ {
+ "epoch": 23.16775884665793,
+ "grad_norm": 0.2711698114871979,
+ "learning_rate": 0.0006,
+ "loss": 3.851863384246826,
+ "step": 1668
+ },
+ {
+ "epoch": 23.18173875054609,
+ "grad_norm": 0.2588968873023987,
+ "learning_rate": 0.0006,
+ "loss": 3.860816717147827,
+ "step": 1669
+ },
+ {
+ "epoch": 23.195718654434252,
+ "grad_norm": 0.2458600401878357,
+ "learning_rate": 0.0006,
+ "loss": 3.8058223724365234,
+ "step": 1670
+ },
+ {
+ "epoch": 23.209698558322412,
+ "grad_norm": 0.22014005482196808,
+ "learning_rate": 0.0006,
+ "loss": 3.8686985969543457,
+ "step": 1671
+ },
+ {
+ "epoch": 23.22367846221057,
+ "grad_norm": 0.22450537979602814,
+ "learning_rate": 0.0006,
+ "loss": 3.8379364013671875,
+ "step": 1672
+ },
+ {
+ "epoch": 23.23765836609873,
+ "grad_norm": 0.22132326662540436,
+ "learning_rate": 0.0006,
+ "loss": 3.8873870372772217,
+ "step": 1673
+ },
+ {
+ "epoch": 23.251638269986895,
+ "grad_norm": 0.20994804799556732,
+ "learning_rate": 0.0006,
+ "loss": 3.821415424346924,
+ "step": 1674
+ },
+ {
+ "epoch": 23.265618173875055,
+ "grad_norm": 0.2040853649377823,
+ "learning_rate": 0.0006,
+ "loss": 3.831658124923706,
+ "step": 1675
+ },
+ {
+ "epoch": 23.279598077763215,
+ "grad_norm": 0.20878618955612183,
+ "learning_rate": 0.0006,
+ "loss": 3.838672637939453,
+ "step": 1676
+ },
+ {
+ "epoch": 23.293577981651374,
+ "grad_norm": 0.19974198937416077,
+ "learning_rate": 0.0006,
+ "loss": 3.8442561626434326,
+ "step": 1677
+ },
+ {
+ "epoch": 23.307557885539538,
+ "grad_norm": 0.20523984730243683,
+ "learning_rate": 0.0006,
+ "loss": 3.846139907836914,
+ "step": 1678
+ },
+ {
+ "epoch": 23.321537789427698,
+ "grad_norm": 0.2045847624540329,
+ "learning_rate": 0.0006,
+ "loss": 3.8597474098205566,
+ "step": 1679
+ },
+ {
+ "epoch": 23.335517693315857,
+ "grad_norm": 0.20957441627979279,
+ "learning_rate": 0.0006,
+ "loss": 3.8493881225585938,
+ "step": 1680
+ },
+ {
+ "epoch": 23.34949759720402,
+ "grad_norm": 0.2069379836320877,
+ "learning_rate": 0.0006,
+ "loss": 3.8510046005249023,
+ "step": 1681
+ },
+ {
+ "epoch": 23.36347750109218,
+ "grad_norm": 0.19627872109413147,
+ "learning_rate": 0.0006,
+ "loss": 3.844618320465088,
+ "step": 1682
+ },
+ {
+ "epoch": 23.37745740498034,
+ "grad_norm": 0.19599434733390808,
+ "learning_rate": 0.0006,
+ "loss": 3.8245465755462646,
+ "step": 1683
+ },
+ {
+ "epoch": 23.3914373088685,
+ "grad_norm": 0.2035072147846222,
+ "learning_rate": 0.0006,
+ "loss": 3.854422092437744,
+ "step": 1684
+ },
+ {
+ "epoch": 23.405417212756664,
+ "grad_norm": 0.21836814284324646,
+ "learning_rate": 0.0006,
+ "loss": 3.83512282371521,
+ "step": 1685
+ },
+ {
+ "epoch": 23.419397116644824,
+ "grad_norm": 0.22844630479812622,
+ "learning_rate": 0.0006,
+ "loss": 3.8744301795959473,
+ "step": 1686
+ },
+ {
+ "epoch": 23.433377020532983,
+ "grad_norm": 0.2259359359741211,
+ "learning_rate": 0.0006,
+ "loss": 3.8460323810577393,
+ "step": 1687
+ },
+ {
+ "epoch": 23.447356924421143,
+ "grad_norm": 0.24440120160579681,
+ "learning_rate": 0.0006,
+ "loss": 3.8543787002563477,
+ "step": 1688
+ },
+ {
+ "epoch": 23.461336828309307,
+ "grad_norm": 0.25063708424568176,
+ "learning_rate": 0.0006,
+ "loss": 3.851004123687744,
+ "step": 1689
+ },
+ {
+ "epoch": 23.475316732197467,
+ "grad_norm": 0.25515618920326233,
+ "learning_rate": 0.0006,
+ "loss": 3.8685030937194824,
+ "step": 1690
+ },
+ {
+ "epoch": 23.489296636085626,
+ "grad_norm": 0.23961050808429718,
+ "learning_rate": 0.0006,
+ "loss": 3.866792678833008,
+ "step": 1691
+ },
+ {
+ "epoch": 23.503276539973786,
+ "grad_norm": 0.20880955457687378,
+ "learning_rate": 0.0006,
+ "loss": 3.8416638374328613,
+ "step": 1692
+ },
+ {
+ "epoch": 23.51725644386195,
+ "grad_norm": 0.1989721804857254,
+ "learning_rate": 0.0006,
+ "loss": 3.8608641624450684,
+ "step": 1693
+ },
+ {
+ "epoch": 23.53123634775011,
+ "grad_norm": 0.207577183842659,
+ "learning_rate": 0.0006,
+ "loss": 3.8431811332702637,
+ "step": 1694
+ },
+ {
+ "epoch": 23.54521625163827,
+ "grad_norm": 0.20844359695911407,
+ "learning_rate": 0.0006,
+ "loss": 3.882844924926758,
+ "step": 1695
+ },
+ {
+ "epoch": 23.55919615552643,
+ "grad_norm": 0.22511139512062073,
+ "learning_rate": 0.0006,
+ "loss": 3.866156578063965,
+ "step": 1696
+ },
+ {
+ "epoch": 23.573176059414592,
+ "grad_norm": 0.21648484468460083,
+ "learning_rate": 0.0006,
+ "loss": 3.87117075920105,
+ "step": 1697
+ },
+ {
+ "epoch": 23.587155963302752,
+ "grad_norm": 0.2081802636384964,
+ "learning_rate": 0.0006,
+ "loss": 3.828132152557373,
+ "step": 1698
+ },
+ {
+ "epoch": 23.601135867190912,
+ "grad_norm": 0.2017381489276886,
+ "learning_rate": 0.0006,
+ "loss": 3.839737892150879,
+ "step": 1699
+ },
+ {
+ "epoch": 23.615115771079076,
+ "grad_norm": 0.2025786191225052,
+ "learning_rate": 0.0006,
+ "loss": 3.8787710666656494,
+ "step": 1700
+ },
+ {
+ "epoch": 23.629095674967235,
+ "grad_norm": 0.21394102275371552,
+ "learning_rate": 0.0006,
+ "loss": 3.824047088623047,
+ "step": 1701
+ },
+ {
+ "epoch": 23.643075578855395,
+ "grad_norm": 0.20749174058437347,
+ "learning_rate": 0.0006,
+ "loss": 3.877009153366089,
+ "step": 1702
+ },
+ {
+ "epoch": 23.657055482743555,
+ "grad_norm": 0.2132839858531952,
+ "learning_rate": 0.0006,
+ "loss": 3.844214916229248,
+ "step": 1703
+ },
+ {
+ "epoch": 23.67103538663172,
+ "grad_norm": 0.22408637404441833,
+ "learning_rate": 0.0006,
+ "loss": 3.8570785522460938,
+ "step": 1704
+ },
+ {
+ "epoch": 23.68501529051988,
+ "grad_norm": 0.2275897115468979,
+ "learning_rate": 0.0006,
+ "loss": 3.8599512577056885,
+ "step": 1705
+ },
+ {
+ "epoch": 23.698995194408038,
+ "grad_norm": 0.2230614721775055,
+ "learning_rate": 0.0006,
+ "loss": 3.86374568939209,
+ "step": 1706
+ },
+ {
+ "epoch": 23.712975098296198,
+ "grad_norm": 0.21873739361763,
+ "learning_rate": 0.0006,
+ "loss": 3.8530168533325195,
+ "step": 1707
+ },
+ {
+ "epoch": 23.72695500218436,
+ "grad_norm": 0.24418923258781433,
+ "learning_rate": 0.0006,
+ "loss": 3.8410465717315674,
+ "step": 1708
+ },
+ {
+ "epoch": 23.74093490607252,
+ "grad_norm": 0.24894575774669647,
+ "learning_rate": 0.0006,
+ "loss": 3.8386030197143555,
+ "step": 1709
+ },
+ {
+ "epoch": 23.75491480996068,
+ "grad_norm": 0.221230611205101,
+ "learning_rate": 0.0006,
+ "loss": 3.8116674423217773,
+ "step": 1710
+ },
+ {
+ "epoch": 23.76889471384884,
+ "grad_norm": 0.20560568571090698,
+ "learning_rate": 0.0006,
+ "loss": 3.8634426593780518,
+ "step": 1711
+ },
+ {
+ "epoch": 23.782874617737004,
+ "grad_norm": 0.20450648665428162,
+ "learning_rate": 0.0006,
+ "loss": 3.8690528869628906,
+ "step": 1712
+ },
+ {
+ "epoch": 23.796854521625164,
+ "grad_norm": 0.18996809422969818,
+ "learning_rate": 0.0006,
+ "loss": 3.8484325408935547,
+ "step": 1713
+ },
+ {
+ "epoch": 23.810834425513324,
+ "grad_norm": 0.20165087282657623,
+ "learning_rate": 0.0006,
+ "loss": 3.8823161125183105,
+ "step": 1714
+ },
+ {
+ "epoch": 23.824814329401484,
+ "grad_norm": 0.21149255335330963,
+ "learning_rate": 0.0006,
+ "loss": 3.8833112716674805,
+ "step": 1715
+ },
+ {
+ "epoch": 23.838794233289647,
+ "grad_norm": 0.21254824101924896,
+ "learning_rate": 0.0006,
+ "loss": 3.8414595127105713,
+ "step": 1716
+ },
+ {
+ "epoch": 23.852774137177807,
+ "grad_norm": 0.21313664317131042,
+ "learning_rate": 0.0006,
+ "loss": 3.8732268810272217,
+ "step": 1717
+ },
+ {
+ "epoch": 23.866754041065967,
+ "grad_norm": 0.21635662019252777,
+ "learning_rate": 0.0006,
+ "loss": 3.861222743988037,
+ "step": 1718
+ },
+ {
+ "epoch": 23.88073394495413,
+ "grad_norm": 0.20612190663814545,
+ "learning_rate": 0.0006,
+ "loss": 3.821854591369629,
+ "step": 1719
+ },
+ {
+ "epoch": 23.89471384884229,
+ "grad_norm": 0.1975104659795761,
+ "learning_rate": 0.0006,
+ "loss": 3.8815202713012695,
+ "step": 1720
+ },
+ {
+ "epoch": 23.90869375273045,
+ "grad_norm": 0.20893609523773193,
+ "learning_rate": 0.0006,
+ "loss": 3.8581607341766357,
+ "step": 1721
+ },
+ {
+ "epoch": 23.92267365661861,
+ "grad_norm": 0.2125461846590042,
+ "learning_rate": 0.0006,
+ "loss": 3.839498281478882,
+ "step": 1722
+ },
+ {
+ "epoch": 23.936653560506773,
+ "grad_norm": 0.19985878467559814,
+ "learning_rate": 0.0006,
+ "loss": 3.856555223464966,
+ "step": 1723
+ },
+ {
+ "epoch": 23.950633464394933,
+ "grad_norm": 0.1922348290681839,
+ "learning_rate": 0.0006,
+ "loss": 3.8956782817840576,
+ "step": 1724
+ },
+ {
+ "epoch": 23.964613368283093,
+ "grad_norm": 0.2191949337720871,
+ "learning_rate": 0.0006,
+ "loss": 3.8582406044006348,
+ "step": 1725
+ },
+ {
+ "epoch": 23.978593272171253,
+ "grad_norm": 0.2569248676300049,
+ "learning_rate": 0.0006,
+ "loss": 3.855678081512451,
+ "step": 1726
+ },
+ {
+ "epoch": 23.992573176059416,
+ "grad_norm": 0.2641172409057617,
+ "learning_rate": 0.0006,
+ "loss": 3.8426473140716553,
+ "step": 1727
+ },
+ {
+ "epoch": 24.0,
+ "grad_norm": 0.29637208580970764,
+ "learning_rate": 0.0006,
+ "loss": 3.843040704727173,
+ "step": 1728
+ },
+ {
+ "epoch": 24.0,
+ "eval_loss": 4.075617790222168,
+ "eval_runtime": 43.9795,
+ "eval_samples_per_second": 55.526,
+ "eval_steps_per_second": 3.479,
+ "step": 1728
+ },
+ {
+ "epoch": 24.01397990388816,
+ "grad_norm": 0.2804758548736572,
+ "learning_rate": 0.0006,
+ "loss": 3.819150924682617,
+ "step": 1729
+ },
+ {
+ "epoch": 24.027959807776323,
+ "grad_norm": 0.2796347141265869,
+ "learning_rate": 0.0006,
+ "loss": 3.8400537967681885,
+ "step": 1730
+ },
+ {
+ "epoch": 24.041939711664483,
+ "grad_norm": 0.28388649225234985,
+ "learning_rate": 0.0006,
+ "loss": 3.844595432281494,
+ "step": 1731
+ },
+ {
+ "epoch": 24.055919615552643,
+ "grad_norm": 0.2944681942462921,
+ "learning_rate": 0.0006,
+ "loss": 3.8048014640808105,
+ "step": 1732
+ },
+ {
+ "epoch": 24.069899519440803,
+ "grad_norm": 0.2956784665584564,
+ "learning_rate": 0.0006,
+ "loss": 3.8488049507141113,
+ "step": 1733
+ },
+ {
+ "epoch": 24.083879423328966,
+ "grad_norm": 0.2822059392929077,
+ "learning_rate": 0.0006,
+ "loss": 3.850322723388672,
+ "step": 1734
+ },
+ {
+ "epoch": 24.097859327217126,
+ "grad_norm": 0.3012927174568176,
+ "learning_rate": 0.0006,
+ "loss": 3.8748154640197754,
+ "step": 1735
+ },
+ {
+ "epoch": 24.111839231105286,
+ "grad_norm": 0.28868764638900757,
+ "learning_rate": 0.0006,
+ "loss": 3.8282783031463623,
+ "step": 1736
+ },
+ {
+ "epoch": 24.125819134993446,
+ "grad_norm": 0.277203768491745,
+ "learning_rate": 0.0006,
+ "loss": 3.8462908267974854,
+ "step": 1737
+ },
+ {
+ "epoch": 24.13979903888161,
+ "grad_norm": 0.2654508948326111,
+ "learning_rate": 0.0006,
+ "loss": 3.8043856620788574,
+ "step": 1738
+ },
+ {
+ "epoch": 24.15377894276977,
+ "grad_norm": 0.24425740540027618,
+ "learning_rate": 0.0006,
+ "loss": 3.8284308910369873,
+ "step": 1739
+ },
+ {
+ "epoch": 24.16775884665793,
+ "grad_norm": 0.24407348036766052,
+ "learning_rate": 0.0006,
+ "loss": 3.8489203453063965,
+ "step": 1740
+ },
+ {
+ "epoch": 24.18173875054609,
+ "grad_norm": 0.2387724369764328,
+ "learning_rate": 0.0006,
+ "loss": 3.8240389823913574,
+ "step": 1741
+ },
+ {
+ "epoch": 24.195718654434252,
+ "grad_norm": 0.2832290232181549,
+ "learning_rate": 0.0006,
+ "loss": 3.869053363800049,
+ "step": 1742
+ },
+ {
+ "epoch": 24.209698558322412,
+ "grad_norm": 0.26501718163490295,
+ "learning_rate": 0.0006,
+ "loss": 3.8624343872070312,
+ "step": 1743
+ },
+ {
+ "epoch": 24.22367846221057,
+ "grad_norm": 0.24234668910503387,
+ "learning_rate": 0.0006,
+ "loss": 3.823103904724121,
+ "step": 1744
+ },
+ {
+ "epoch": 24.23765836609873,
+ "grad_norm": 0.24160076677799225,
+ "learning_rate": 0.0006,
+ "loss": 3.8174376487731934,
+ "step": 1745
+ },
+ {
+ "epoch": 24.251638269986895,
+ "grad_norm": 0.2447604238986969,
+ "learning_rate": 0.0006,
+ "loss": 3.8345441818237305,
+ "step": 1746
+ },
+ {
+ "epoch": 24.265618173875055,
+ "grad_norm": 0.22864456474781036,
+ "learning_rate": 0.0006,
+ "loss": 3.833101272583008,
+ "step": 1747
+ },
+ {
+ "epoch": 24.279598077763215,
+ "grad_norm": 0.20429204404354095,
+ "learning_rate": 0.0006,
+ "loss": 3.8055219650268555,
+ "step": 1748
+ },
+ {
+ "epoch": 24.293577981651374,
+ "grad_norm": 0.21538510918617249,
+ "learning_rate": 0.0006,
+ "loss": 3.7929327487945557,
+ "step": 1749
+ },
+ {
+ "epoch": 24.307557885539538,
+ "grad_norm": 0.2189008593559265,
+ "learning_rate": 0.0006,
+ "loss": 3.852264881134033,
+ "step": 1750
+ },
+ {
+ "epoch": 24.321537789427698,
+ "grad_norm": 0.2228662073612213,
+ "learning_rate": 0.0006,
+ "loss": 3.831088066101074,
+ "step": 1751
+ },
+ {
+ "epoch": 24.335517693315857,
+ "grad_norm": 0.2039937973022461,
+ "learning_rate": 0.0006,
+ "loss": 3.8358256816864014,
+ "step": 1752
+ },
+ {
+ "epoch": 24.34949759720402,
+ "grad_norm": 0.19247715175151825,
+ "learning_rate": 0.0006,
+ "loss": 3.8077402114868164,
+ "step": 1753
+ },
+ {
+ "epoch": 24.36347750109218,
+ "grad_norm": 0.18301935493946075,
+ "learning_rate": 0.0006,
+ "loss": 3.81380033493042,
+ "step": 1754
+ },
+ {
+ "epoch": 24.37745740498034,
+ "grad_norm": 0.19325268268585205,
+ "learning_rate": 0.0006,
+ "loss": 3.8447322845458984,
+ "step": 1755
+ },
+ {
+ "epoch": 24.3914373088685,
+ "grad_norm": 0.2007269263267517,
+ "learning_rate": 0.0006,
+ "loss": 3.82779860496521,
+ "step": 1756
+ },
+ {
+ "epoch": 24.405417212756664,
+ "grad_norm": 0.20567037165164948,
+ "learning_rate": 0.0006,
+ "loss": 3.800354480743408,
+ "step": 1757
+ },
+ {
+ "epoch": 24.419397116644824,
+ "grad_norm": 0.22553028166294098,
+ "learning_rate": 0.0006,
+ "loss": 3.7910406589508057,
+ "step": 1758
+ },
+ {
+ "epoch": 24.433377020532983,
+ "grad_norm": 0.22697079181671143,
+ "learning_rate": 0.0006,
+ "loss": 3.857635974884033,
+ "step": 1759
+ },
+ {
+ "epoch": 24.447356924421143,
+ "grad_norm": 0.22090297937393188,
+ "learning_rate": 0.0006,
+ "loss": 3.8112804889678955,
+ "step": 1760
+ },
+ {
+ "epoch": 24.461336828309307,
+ "grad_norm": 0.24325518310070038,
+ "learning_rate": 0.0006,
+ "loss": 3.822084426879883,
+ "step": 1761
+ },
+ {
+ "epoch": 24.475316732197467,
+ "grad_norm": 0.2702929377555847,
+ "learning_rate": 0.0006,
+ "loss": 3.8307600021362305,
+ "step": 1762
+ },
+ {
+ "epoch": 24.489296636085626,
+ "grad_norm": 0.2699742317199707,
+ "learning_rate": 0.0006,
+ "loss": 3.8479247093200684,
+ "step": 1763
+ },
+ {
+ "epoch": 24.503276539973786,
+ "grad_norm": 0.2526061236858368,
+ "learning_rate": 0.0006,
+ "loss": 3.8615071773529053,
+ "step": 1764
+ },
+ {
+ "epoch": 24.51725644386195,
+ "grad_norm": 0.2633848190307617,
+ "learning_rate": 0.0006,
+ "loss": 3.8412697315216064,
+ "step": 1765
+ },
+ {
+ "epoch": 24.53123634775011,
+ "grad_norm": 0.2711184024810791,
+ "learning_rate": 0.0006,
+ "loss": 3.83647084236145,
+ "step": 1766
+ },
+ {
+ "epoch": 24.54521625163827,
+ "grad_norm": 0.2691243588924408,
+ "learning_rate": 0.0006,
+ "loss": 3.8489012718200684,
+ "step": 1767
+ },
+ {
+ "epoch": 24.55919615552643,
+ "grad_norm": 0.2580898404121399,
+ "learning_rate": 0.0006,
+ "loss": 3.8464407920837402,
+ "step": 1768
+ },
+ {
+ "epoch": 24.573176059414592,
+ "grad_norm": 0.21342119574546814,
+ "learning_rate": 0.0006,
+ "loss": 3.8279383182525635,
+ "step": 1769
+ },
+ {
+ "epoch": 24.587155963302752,
+ "grad_norm": 0.22102399170398712,
+ "learning_rate": 0.0006,
+ "loss": 3.841676712036133,
+ "step": 1770
+ },
+ {
+ "epoch": 24.601135867190912,
+ "grad_norm": 0.2882173955440521,
+ "learning_rate": 0.0006,
+ "loss": 3.825528383255005,
+ "step": 1771
+ },
+ {
+ "epoch": 24.615115771079076,
+ "grad_norm": 0.3403635323047638,
+ "learning_rate": 0.0006,
+ "loss": 3.8282246589660645,
+ "step": 1772
+ },
+ {
+ "epoch": 24.629095674967235,
+ "grad_norm": 0.32192692160606384,
+ "learning_rate": 0.0006,
+ "loss": 3.8411307334899902,
+ "step": 1773
+ },
+ {
+ "epoch": 24.643075578855395,
+ "grad_norm": 0.2534109055995941,
+ "learning_rate": 0.0006,
+ "loss": 3.843007802963257,
+ "step": 1774
+ },
+ {
+ "epoch": 24.657055482743555,
+ "grad_norm": 0.25483962893486023,
+ "learning_rate": 0.0006,
+ "loss": 3.848358154296875,
+ "step": 1775
+ },
+ {
+ "epoch": 24.67103538663172,
+ "grad_norm": 0.25175443291664124,
+ "learning_rate": 0.0006,
+ "loss": 3.8232598304748535,
+ "step": 1776
+ },
+ {
+ "epoch": 24.68501529051988,
+ "grad_norm": 0.20538510382175446,
+ "learning_rate": 0.0006,
+ "loss": 3.857635498046875,
+ "step": 1777
+ },
+ {
+ "epoch": 24.698995194408038,
+ "grad_norm": 0.240861177444458,
+ "learning_rate": 0.0006,
+ "loss": 3.83717679977417,
+ "step": 1778
+ },
+ {
+ "epoch": 24.712975098296198,
+ "grad_norm": 0.23646967113018036,
+ "learning_rate": 0.0006,
+ "loss": 3.81032133102417,
+ "step": 1779
+ },
+ {
+ "epoch": 24.72695500218436,
+ "grad_norm": 0.2164423167705536,
+ "learning_rate": 0.0006,
+ "loss": 3.807878255844116,
+ "step": 1780
+ },
+ {
+ "epoch": 24.74093490607252,
+ "grad_norm": 0.21160705387592316,
+ "learning_rate": 0.0006,
+ "loss": 3.870394468307495,
+ "step": 1781
+ },
+ {
+ "epoch": 24.75491480996068,
+ "grad_norm": 0.20284807682037354,
+ "learning_rate": 0.0006,
+ "loss": 3.842154026031494,
+ "step": 1782
+ },
+ {
+ "epoch": 24.76889471384884,
+ "grad_norm": 0.20738485455513,
+ "learning_rate": 0.0006,
+ "loss": 3.8347136974334717,
+ "step": 1783
+ },
+ {
+ "epoch": 24.782874617737004,
+ "grad_norm": 0.20253778994083405,
+ "learning_rate": 0.0006,
+ "loss": 3.814948320388794,
+ "step": 1784
+ },
+ {
+ "epoch": 24.796854521625164,
+ "grad_norm": 0.20567010343074799,
+ "learning_rate": 0.0006,
+ "loss": 3.8354592323303223,
+ "step": 1785
+ },
+ {
+ "epoch": 24.810834425513324,
+ "grad_norm": 0.20639720559120178,
+ "learning_rate": 0.0006,
+ "loss": 3.8336033821105957,
+ "step": 1786
+ },
+ {
+ "epoch": 24.824814329401484,
+ "grad_norm": 0.19978247582912445,
+ "learning_rate": 0.0006,
+ "loss": 3.8209140300750732,
+ "step": 1787
+ },
+ {
+ "epoch": 24.838794233289647,
+ "grad_norm": 0.20628373324871063,
+ "learning_rate": 0.0006,
+ "loss": 3.8372955322265625,
+ "step": 1788
+ },
+ {
+ "epoch": 24.852774137177807,
+ "grad_norm": 0.2266162782907486,
+ "learning_rate": 0.0006,
+ "loss": 3.850994110107422,
+ "step": 1789
+ },
+ {
+ "epoch": 24.866754041065967,
+ "grad_norm": 0.22567765414714813,
+ "learning_rate": 0.0006,
+ "loss": 3.8552165031433105,
+ "step": 1790
+ },
+ {
+ "epoch": 24.88073394495413,
+ "grad_norm": 0.228011354804039,
+ "learning_rate": 0.0006,
+ "loss": 3.8310747146606445,
+ "step": 1791
+ },
+ {
+ "epoch": 24.89471384884229,
+ "grad_norm": 0.23706914484500885,
+ "learning_rate": 0.0006,
+ "loss": 3.8369603157043457,
+ "step": 1792
+ },
+ {
+ "epoch": 24.90869375273045,
+ "grad_norm": 0.22669097781181335,
+ "learning_rate": 0.0006,
+ "loss": 3.8443825244903564,
+ "step": 1793
+ },
+ {
+ "epoch": 24.92267365661861,
+ "grad_norm": 0.2051001936197281,
+ "learning_rate": 0.0006,
+ "loss": 3.7938501834869385,
+ "step": 1794
+ },
+ {
+ "epoch": 24.936653560506773,
+ "grad_norm": 0.2091219276189804,
+ "learning_rate": 0.0006,
+ "loss": 3.8167076110839844,
+ "step": 1795
+ },
+ {
+ "epoch": 24.950633464394933,
+ "grad_norm": 0.20517204701900482,
+ "learning_rate": 0.0006,
+ "loss": 3.852670669555664,
+ "step": 1796
+ },
+ {
+ "epoch": 24.964613368283093,
+ "grad_norm": 0.19916993379592896,
+ "learning_rate": 0.0006,
+ "loss": 3.8410873413085938,
+ "step": 1797
+ },
+ {
+ "epoch": 24.978593272171253,
+ "grad_norm": 0.21313942968845367,
+ "learning_rate": 0.0006,
+ "loss": 3.8383948802948,
+ "step": 1798
+ },
+ {
+ "epoch": 24.992573176059416,
+ "grad_norm": 0.21042990684509277,
+ "learning_rate": 0.0006,
+ "loss": 3.8623173236846924,
+ "step": 1799
+ },
+ {
+ "epoch": 25.0,
+ "grad_norm": 0.23052045702934265,
+ "learning_rate": 0.0006,
+ "loss": 3.8646674156188965,
+ "step": 1800
+ },
+ {
+ "epoch": 25.0,
+ "eval_loss": 4.081690311431885,
+ "eval_runtime": 44.036,
+ "eval_samples_per_second": 55.455,
+ "eval_steps_per_second": 3.474,
+ "step": 1800
+ },
+ {
+ "epoch": 25.01397990388816,
+ "grad_norm": 0.22068746387958527,
+ "learning_rate": 0.0006,
+ "loss": 3.8002820014953613,
+ "step": 1801
+ },
+ {
+ "epoch": 25.027959807776323,
+ "grad_norm": 0.20711193978786469,
+ "learning_rate": 0.0006,
+ "loss": 3.787785768508911,
+ "step": 1802
+ },
+ {
+ "epoch": 25.041939711664483,
+ "grad_norm": 0.20659677684307098,
+ "learning_rate": 0.0006,
+ "loss": 3.80245304107666,
+ "step": 1803
+ },
+ {
+ "epoch": 25.055919615552643,
+ "grad_norm": 0.22891797125339508,
+ "learning_rate": 0.0006,
+ "loss": 3.784543514251709,
+ "step": 1804
+ },
+ {
+ "epoch": 25.069899519440803,
+ "grad_norm": 0.23679181933403015,
+ "learning_rate": 0.0006,
+ "loss": 3.8311429023742676,
+ "step": 1805
+ },
+ {
+ "epoch": 25.083879423328966,
+ "grad_norm": 0.2548872232437134,
+ "learning_rate": 0.0006,
+ "loss": 3.8047211170196533,
+ "step": 1806
+ },
+ {
+ "epoch": 25.097859327217126,
+ "grad_norm": 0.26181501150131226,
+ "learning_rate": 0.0006,
+ "loss": 3.837508201599121,
+ "step": 1807
+ },
+ {
+ "epoch": 25.111839231105286,
+ "grad_norm": 0.2548452913761139,
+ "learning_rate": 0.0006,
+ "loss": 3.831544876098633,
+ "step": 1808
+ },
+ {
+ "epoch": 25.125819134993446,
+ "grad_norm": 0.26177605986595154,
+ "learning_rate": 0.0006,
+ "loss": 3.805346965789795,
+ "step": 1809
+ },
+ {
+ "epoch": 25.13979903888161,
+ "grad_norm": 0.2608112394809723,
+ "learning_rate": 0.0006,
+ "loss": 3.8040924072265625,
+ "step": 1810
+ },
+ {
+ "epoch": 25.15377894276977,
+ "grad_norm": 0.2586037814617157,
+ "learning_rate": 0.0006,
+ "loss": 3.8102216720581055,
+ "step": 1811
+ },
+ {
+ "epoch": 25.16775884665793,
+ "grad_norm": 0.26258161664009094,
+ "learning_rate": 0.0006,
+ "loss": 3.8152549266815186,
+ "step": 1812
+ },
+ {
+ "epoch": 25.18173875054609,
+ "grad_norm": 0.2803022265434265,
+ "learning_rate": 0.0006,
+ "loss": 3.82576584815979,
+ "step": 1813
+ },
+ {
+ "epoch": 25.195718654434252,
+ "grad_norm": 0.2618221938610077,
+ "learning_rate": 0.0006,
+ "loss": 3.817220687866211,
+ "step": 1814
+ },
+ {
+ "epoch": 25.209698558322412,
+ "grad_norm": 0.23283469676971436,
+ "learning_rate": 0.0006,
+ "loss": 3.7999041080474854,
+ "step": 1815
+ },
+ {
+ "epoch": 25.22367846221057,
+ "grad_norm": 0.20110781490802765,
+ "learning_rate": 0.0006,
+ "loss": 3.783228874206543,
+ "step": 1816
+ },
+ {
+ "epoch": 25.23765836609873,
+ "grad_norm": 0.2231830358505249,
+ "learning_rate": 0.0006,
+ "loss": 3.8032913208007812,
+ "step": 1817
+ },
+ {
+ "epoch": 25.251638269986895,
+ "grad_norm": 0.21807286143302917,
+ "learning_rate": 0.0006,
+ "loss": 3.817028045654297,
+ "step": 1818
+ },
+ {
+ "epoch": 25.265618173875055,
+ "grad_norm": 0.22710664570331573,
+ "learning_rate": 0.0006,
+ "loss": 3.8201727867126465,
+ "step": 1819
+ },
+ {
+ "epoch": 25.279598077763215,
+ "grad_norm": 0.22299866378307343,
+ "learning_rate": 0.0006,
+ "loss": 3.8198719024658203,
+ "step": 1820
+ },
+ {
+ "epoch": 25.293577981651374,
+ "grad_norm": 0.20886564254760742,
+ "learning_rate": 0.0006,
+ "loss": 3.792414665222168,
+ "step": 1821
+ },
+ {
+ "epoch": 25.307557885539538,
+ "grad_norm": 0.20887352526187897,
+ "learning_rate": 0.0006,
+ "loss": 3.7634057998657227,
+ "step": 1822
+ },
+ {
+ "epoch": 25.321537789427698,
+ "grad_norm": 0.24560041725635529,
+ "learning_rate": 0.0006,
+ "loss": 3.79359769821167,
+ "step": 1823
+ },
+ {
+ "epoch": 25.335517693315857,
+ "grad_norm": 0.22767415642738342,
+ "learning_rate": 0.0006,
+ "loss": 3.8313469886779785,
+ "step": 1824
+ },
+ {
+ "epoch": 25.34949759720402,
+ "grad_norm": 0.21617893874645233,
+ "learning_rate": 0.0006,
+ "loss": 3.77200984954834,
+ "step": 1825
+ },
+ {
+ "epoch": 25.36347750109218,
+ "grad_norm": 0.21010833978652954,
+ "learning_rate": 0.0006,
+ "loss": 3.8042140007019043,
+ "step": 1826
+ },
+ {
+ "epoch": 25.37745740498034,
+ "grad_norm": 0.24087965488433838,
+ "learning_rate": 0.0006,
+ "loss": 3.8260979652404785,
+ "step": 1827
+ },
+ {
+ "epoch": 25.3914373088685,
+ "grad_norm": 0.2735275626182556,
+ "learning_rate": 0.0006,
+ "loss": 3.8499274253845215,
+ "step": 1828
+ },
+ {
+ "epoch": 25.405417212756664,
+ "grad_norm": 0.24831001460552216,
+ "learning_rate": 0.0006,
+ "loss": 3.8146448135375977,
+ "step": 1829
+ },
+ {
+ "epoch": 25.419397116644824,
+ "grad_norm": 0.21822866797447205,
+ "learning_rate": 0.0006,
+ "loss": 3.7845146656036377,
+ "step": 1830
+ },
+ {
+ "epoch": 25.433377020532983,
+ "grad_norm": 0.19948813319206238,
+ "learning_rate": 0.0006,
+ "loss": 3.823997974395752,
+ "step": 1831
+ },
+ {
+ "epoch": 25.447356924421143,
+ "grad_norm": 0.18342702090740204,
+ "learning_rate": 0.0006,
+ "loss": 3.8201193809509277,
+ "step": 1832
+ },
+ {
+ "epoch": 25.461336828309307,
+ "grad_norm": 0.19377560913562775,
+ "learning_rate": 0.0006,
+ "loss": 3.8069632053375244,
+ "step": 1833
+ },
+ {
+ "epoch": 25.475316732197467,
+ "grad_norm": 0.22348709404468536,
+ "learning_rate": 0.0006,
+ "loss": 3.7918643951416016,
+ "step": 1834
+ },
+ {
+ "epoch": 25.489296636085626,
+ "grad_norm": 0.24484702944755554,
+ "learning_rate": 0.0006,
+ "loss": 3.85046124458313,
+ "step": 1835
+ },
+ {
+ "epoch": 25.503276539973786,
+ "grad_norm": 0.2493520826101303,
+ "learning_rate": 0.0006,
+ "loss": 3.8043932914733887,
+ "step": 1836
+ },
+ {
+ "epoch": 25.51725644386195,
+ "grad_norm": 0.21509641408920288,
+ "learning_rate": 0.0006,
+ "loss": 3.8064627647399902,
+ "step": 1837
+ },
+ {
+ "epoch": 25.53123634775011,
+ "grad_norm": 0.21912820637226105,
+ "learning_rate": 0.0006,
+ "loss": 3.850588321685791,
+ "step": 1838
+ },
+ {
+ "epoch": 25.54521625163827,
+ "grad_norm": 0.28400927782058716,
+ "learning_rate": 0.0006,
+ "loss": 3.79818058013916,
+ "step": 1839
+ },
+ {
+ "epoch": 25.55919615552643,
+ "grad_norm": 0.32193225622177124,
+ "learning_rate": 0.0006,
+ "loss": 3.836275815963745,
+ "step": 1840
+ },
+ {
+ "epoch": 25.573176059414592,
+ "grad_norm": 0.2902325987815857,
+ "learning_rate": 0.0006,
+ "loss": 3.8080005645751953,
+ "step": 1841
+ },
+ {
+ "epoch": 25.587155963302752,
+ "grad_norm": 0.21759532392024994,
+ "learning_rate": 0.0006,
+ "loss": 3.8233771324157715,
+ "step": 1842
+ },
+ {
+ "epoch": 25.601135867190912,
+ "grad_norm": 0.19645214080810547,
+ "learning_rate": 0.0006,
+ "loss": 3.838881015777588,
+ "step": 1843
+ },
+ {
+ "epoch": 25.615115771079076,
+ "grad_norm": 0.19322903454303741,
+ "learning_rate": 0.0006,
+ "loss": 3.7870054244995117,
+ "step": 1844
+ },
+ {
+ "epoch": 25.629095674967235,
+ "grad_norm": 0.2074001580476761,
+ "learning_rate": 0.0006,
+ "loss": 3.8239974975585938,
+ "step": 1845
+ },
+ {
+ "epoch": 25.643075578855395,
+ "grad_norm": 0.2166101336479187,
+ "learning_rate": 0.0006,
+ "loss": 3.8290855884552,
+ "step": 1846
+ },
+ {
+ "epoch": 25.657055482743555,
+ "grad_norm": 0.23738539218902588,
+ "learning_rate": 0.0006,
+ "loss": 3.7993364334106445,
+ "step": 1847
+ },
+ {
+ "epoch": 25.67103538663172,
+ "grad_norm": 0.23882314562797546,
+ "learning_rate": 0.0006,
+ "loss": 3.802586078643799,
+ "step": 1848
+ },
+ {
+ "epoch": 25.68501529051988,
+ "grad_norm": 0.24168142676353455,
+ "learning_rate": 0.0006,
+ "loss": 3.8303489685058594,
+ "step": 1849
+ },
+ {
+ "epoch": 25.698995194408038,
+ "grad_norm": 0.22423343360424042,
+ "learning_rate": 0.0006,
+ "loss": 3.836228370666504,
+ "step": 1850
+ },
+ {
+ "epoch": 25.712975098296198,
+ "grad_norm": 0.23816974461078644,
+ "learning_rate": 0.0006,
+ "loss": 3.8380274772644043,
+ "step": 1851
+ },
+ {
+ "epoch": 25.72695500218436,
+ "grad_norm": 0.22465108335018158,
+ "learning_rate": 0.0006,
+ "loss": 3.8496339321136475,
+ "step": 1852
+ },
+ {
+ "epoch": 25.74093490607252,
+ "grad_norm": 0.20792442560195923,
+ "learning_rate": 0.0006,
+ "loss": 3.797853946685791,
+ "step": 1853
+ },
+ {
+ "epoch": 25.75491480996068,
+ "grad_norm": 0.20770230889320374,
+ "learning_rate": 0.0006,
+ "loss": 3.842322826385498,
+ "step": 1854
+ },
+ {
+ "epoch": 25.76889471384884,
+ "grad_norm": 0.1928192526102066,
+ "learning_rate": 0.0006,
+ "loss": 3.836540699005127,
+ "step": 1855
+ },
+ {
+ "epoch": 25.782874617737004,
+ "grad_norm": 0.19045178592205048,
+ "learning_rate": 0.0006,
+ "loss": 3.7758889198303223,
+ "step": 1856
+ },
+ {
+ "epoch": 25.796854521625164,
+ "grad_norm": 0.205548495054245,
+ "learning_rate": 0.0006,
+ "loss": 3.8244709968566895,
+ "step": 1857
+ },
+ {
+ "epoch": 25.810834425513324,
+ "grad_norm": 0.20968270301818848,
+ "learning_rate": 0.0006,
+ "loss": 3.8376216888427734,
+ "step": 1858
+ },
+ {
+ "epoch": 25.824814329401484,
+ "grad_norm": 0.18917354941368103,
+ "learning_rate": 0.0006,
+ "loss": 3.8497915267944336,
+ "step": 1859
+ },
+ {
+ "epoch": 25.838794233289647,
+ "grad_norm": 0.2050701528787613,
+ "learning_rate": 0.0006,
+ "loss": 3.819628953933716,
+ "step": 1860
+ },
+ {
+ "epoch": 25.852774137177807,
+ "grad_norm": 0.1981319785118103,
+ "learning_rate": 0.0006,
+ "loss": 3.8007922172546387,
+ "step": 1861
+ },
+ {
+ "epoch": 25.866754041065967,
+ "grad_norm": 0.19055861234664917,
+ "learning_rate": 0.0006,
+ "loss": 3.8304519653320312,
+ "step": 1862
+ },
+ {
+ "epoch": 25.88073394495413,
+ "grad_norm": 0.19255517423152924,
+ "learning_rate": 0.0006,
+ "loss": 3.833280563354492,
+ "step": 1863
+ },
+ {
+ "epoch": 25.89471384884229,
+ "grad_norm": 0.19059430062770844,
+ "learning_rate": 0.0006,
+ "loss": 3.813796281814575,
+ "step": 1864
+ },
+ {
+ "epoch": 25.90869375273045,
+ "grad_norm": 0.18581309914588928,
+ "learning_rate": 0.0006,
+ "loss": 3.8211798667907715,
+ "step": 1865
+ },
+ {
+ "epoch": 25.92267365661861,
+ "grad_norm": 0.20181003212928772,
+ "learning_rate": 0.0006,
+ "loss": 3.8380484580993652,
+ "step": 1866
+ },
+ {
+ "epoch": 25.936653560506773,
+ "grad_norm": 0.22334498167037964,
+ "learning_rate": 0.0006,
+ "loss": 3.8294434547424316,
+ "step": 1867
+ },
+ {
+ "epoch": 25.950633464394933,
+ "grad_norm": 0.20456703007221222,
+ "learning_rate": 0.0006,
+ "loss": 3.819223642349243,
+ "step": 1868
+ },
+ {
+ "epoch": 25.964613368283093,
+ "grad_norm": 0.1885606348514557,
+ "learning_rate": 0.0006,
+ "loss": 3.8110103607177734,
+ "step": 1869
+ },
+ {
+ "epoch": 25.978593272171253,
+ "grad_norm": 0.18862110376358032,
+ "learning_rate": 0.0006,
+ "loss": 3.788691997528076,
+ "step": 1870
+ },
+ {
+ "epoch": 25.992573176059416,
+ "grad_norm": 0.19802744686603546,
+ "learning_rate": 0.0006,
+ "loss": 3.8423619270324707,
+ "step": 1871
+ },
+ {
+ "epoch": 26.0,
+ "grad_norm": 0.23762032389640808,
+ "learning_rate": 0.0006,
+ "loss": 3.7848567962646484,
+ "step": 1872
+ },
+ {
+ "epoch": 26.0,
+ "eval_loss": 4.054965019226074,
+ "eval_runtime": 44.2423,
+ "eval_samples_per_second": 55.196,
+ "eval_steps_per_second": 3.458,
+ "step": 1872
+ },
+ {
+ "epoch": 26.01397990388816,
+ "grad_norm": 0.21533054113388062,
+ "learning_rate": 0.0006,
+ "loss": 3.8123154640197754,
+ "step": 1873
+ },
+ {
+ "epoch": 26.027959807776323,
+ "grad_norm": 0.25094854831695557,
+ "learning_rate": 0.0006,
+ "loss": 3.7847447395324707,
+ "step": 1874
+ },
+ {
+ "epoch": 26.041939711664483,
+ "grad_norm": 0.24042077362537384,
+ "learning_rate": 0.0006,
+ "loss": 3.8033599853515625,
+ "step": 1875
+ },
+ {
+ "epoch": 26.055919615552643,
+ "grad_norm": 0.2425149381160736,
+ "learning_rate": 0.0006,
+ "loss": 3.7828550338745117,
+ "step": 1876
+ },
+ {
+ "epoch": 26.069899519440803,
+ "grad_norm": 0.2300514280796051,
+ "learning_rate": 0.0006,
+ "loss": 3.750882148742676,
+ "step": 1877
+ },
+ {
+ "epoch": 26.083879423328966,
+ "grad_norm": 0.2513943612575531,
+ "learning_rate": 0.0006,
+ "loss": 3.800323963165283,
+ "step": 1878
+ },
+ {
+ "epoch": 26.097859327217126,
+ "grad_norm": 0.2536966800689697,
+ "learning_rate": 0.0006,
+ "loss": 3.8198962211608887,
+ "step": 1879
+ },
+ {
+ "epoch": 26.111839231105286,
+ "grad_norm": 0.24483931064605713,
+ "learning_rate": 0.0006,
+ "loss": 3.825563907623291,
+ "step": 1880
+ },
+ {
+ "epoch": 26.125819134993446,
+ "grad_norm": 0.2502584755420685,
+ "learning_rate": 0.0006,
+ "loss": 3.78756046295166,
+ "step": 1881
+ },
+ {
+ "epoch": 26.13979903888161,
+ "grad_norm": 0.2695745527744293,
+ "learning_rate": 0.0006,
+ "loss": 3.8205409049987793,
+ "step": 1882
+ },
+ {
+ "epoch": 26.15377894276977,
+ "grad_norm": 0.2873472273349762,
+ "learning_rate": 0.0006,
+ "loss": 3.7880778312683105,
+ "step": 1883
+ },
+ {
+ "epoch": 26.16775884665793,
+ "grad_norm": 0.28609949350357056,
+ "learning_rate": 0.0006,
+ "loss": 3.788517951965332,
+ "step": 1884
+ },
+ {
+ "epoch": 26.18173875054609,
+ "grad_norm": 0.28352269530296326,
+ "learning_rate": 0.0006,
+ "loss": 3.778015613555908,
+ "step": 1885
+ },
+ {
+ "epoch": 26.195718654434252,
+ "grad_norm": 0.27055084705352783,
+ "learning_rate": 0.0006,
+ "loss": 3.7857203483581543,
+ "step": 1886
+ },
+ {
+ "epoch": 26.209698558322412,
+ "grad_norm": 0.255647748708725,
+ "learning_rate": 0.0006,
+ "loss": 3.791355609893799,
+ "step": 1887
+ },
+ {
+ "epoch": 26.22367846221057,
+ "grad_norm": 0.22624439001083374,
+ "learning_rate": 0.0006,
+ "loss": 3.7624831199645996,
+ "step": 1888
+ },
+ {
+ "epoch": 26.23765836609873,
+ "grad_norm": 0.2283596396446228,
+ "learning_rate": 0.0006,
+ "loss": 3.8052897453308105,
+ "step": 1889
+ },
+ {
+ "epoch": 26.251638269986895,
+ "grad_norm": 0.2336510866880417,
+ "learning_rate": 0.0006,
+ "loss": 3.789015054702759,
+ "step": 1890
+ },
+ {
+ "epoch": 26.265618173875055,
+ "grad_norm": 0.24107608199119568,
+ "learning_rate": 0.0006,
+ "loss": 3.756551742553711,
+ "step": 1891
+ },
+ {
+ "epoch": 26.279598077763215,
+ "grad_norm": 0.22438564896583557,
+ "learning_rate": 0.0006,
+ "loss": 3.797952651977539,
+ "step": 1892
+ },
+ {
+ "epoch": 26.293577981651374,
+ "grad_norm": 0.24594341218471527,
+ "learning_rate": 0.0006,
+ "loss": 3.7925708293914795,
+ "step": 1893
+ },
+ {
+ "epoch": 26.307557885539538,
+ "grad_norm": 0.23314352333545685,
+ "learning_rate": 0.0006,
+ "loss": 3.792447328567505,
+ "step": 1894
+ },
+ {
+ "epoch": 26.321537789427698,
+ "grad_norm": 0.20870383083820343,
+ "learning_rate": 0.0006,
+ "loss": 3.7888340950012207,
+ "step": 1895
+ },
+ {
+ "epoch": 26.335517693315857,
+ "grad_norm": 0.206504687666893,
+ "learning_rate": 0.0006,
+ "loss": 3.7856602668762207,
+ "step": 1896
+ },
+ {
+ "epoch": 26.34949759720402,
+ "grad_norm": 0.20193266868591309,
+ "learning_rate": 0.0006,
+ "loss": 3.810800552368164,
+ "step": 1897
+ },
+ {
+ "epoch": 26.36347750109218,
+ "grad_norm": 0.2143869698047638,
+ "learning_rate": 0.0006,
+ "loss": 3.818742275238037,
+ "step": 1898
+ },
+ {
+ "epoch": 26.37745740498034,
+ "grad_norm": 0.21388593316078186,
+ "learning_rate": 0.0006,
+ "loss": 3.7576632499694824,
+ "step": 1899
+ },
+ {
+ "epoch": 26.3914373088685,
+ "grad_norm": 0.1933414787054062,
+ "learning_rate": 0.0006,
+ "loss": 3.802579879760742,
+ "step": 1900
+ },
+ {
+ "epoch": 26.405417212756664,
+ "grad_norm": 0.18144549429416656,
+ "learning_rate": 0.0006,
+ "loss": 3.7830452919006348,
+ "step": 1901
+ },
+ {
+ "epoch": 26.419397116644824,
+ "grad_norm": 0.20027601718902588,
+ "learning_rate": 0.0006,
+ "loss": 3.8112521171569824,
+ "step": 1902
+ },
+ {
+ "epoch": 26.433377020532983,
+ "grad_norm": 0.19402910768985748,
+ "learning_rate": 0.0006,
+ "loss": 3.778012990951538,
+ "step": 1903
+ },
+ {
+ "epoch": 26.447356924421143,
+ "grad_norm": 0.19020743668079376,
+ "learning_rate": 0.0006,
+ "loss": 3.823355197906494,
+ "step": 1904
+ },
+ {
+ "epoch": 26.461336828309307,
+ "grad_norm": 0.1885242760181427,
+ "learning_rate": 0.0006,
+ "loss": 3.782108783721924,
+ "step": 1905
+ },
+ {
+ "epoch": 26.475316732197467,
+ "grad_norm": 0.2024235874414444,
+ "learning_rate": 0.0006,
+ "loss": 3.810448408126831,
+ "step": 1906
+ },
+ {
+ "epoch": 26.489296636085626,
+ "grad_norm": 0.21408027410507202,
+ "learning_rate": 0.0006,
+ "loss": 3.8185606002807617,
+ "step": 1907
+ },
+ {
+ "epoch": 26.503276539973786,
+ "grad_norm": 0.22810906171798706,
+ "learning_rate": 0.0006,
+ "loss": 3.8052706718444824,
+ "step": 1908
+ },
+ {
+ "epoch": 26.51725644386195,
+ "grad_norm": 0.21328197419643402,
+ "learning_rate": 0.0006,
+ "loss": 3.7858219146728516,
+ "step": 1909
+ },
+ {
+ "epoch": 26.53123634775011,
+ "grad_norm": 0.20843173563480377,
+ "learning_rate": 0.0006,
+ "loss": 3.8069310188293457,
+ "step": 1910
+ },
+ {
+ "epoch": 26.54521625163827,
+ "grad_norm": 0.2072986662387848,
+ "learning_rate": 0.0006,
+ "loss": 3.794975996017456,
+ "step": 1911
+ },
+ {
+ "epoch": 26.55919615552643,
+ "grad_norm": 0.2203216850757599,
+ "learning_rate": 0.0006,
+ "loss": 3.8070101737976074,
+ "step": 1912
+ },
+ {
+ "epoch": 26.573176059414592,
+ "grad_norm": 0.23449191451072693,
+ "learning_rate": 0.0006,
+ "loss": 3.828695774078369,
+ "step": 1913
+ },
+ {
+ "epoch": 26.587155963302752,
+ "grad_norm": 0.2222008854150772,
+ "learning_rate": 0.0006,
+ "loss": 3.781275749206543,
+ "step": 1914
+ },
+ {
+ "epoch": 26.601135867190912,
+ "grad_norm": 0.22328314185142517,
+ "learning_rate": 0.0006,
+ "loss": 3.7953736782073975,
+ "step": 1915
+ },
+ {
+ "epoch": 26.615115771079076,
+ "grad_norm": 0.2377961128950119,
+ "learning_rate": 0.0006,
+ "loss": 3.8428916931152344,
+ "step": 1916
+ },
+ {
+ "epoch": 26.629095674967235,
+ "grad_norm": 0.2546147108078003,
+ "learning_rate": 0.0006,
+ "loss": 3.7940590381622314,
+ "step": 1917
+ },
+ {
+ "epoch": 26.643075578855395,
+ "grad_norm": 0.24234509468078613,
+ "learning_rate": 0.0006,
+ "loss": 3.802234172821045,
+ "step": 1918
+ },
+ {
+ "epoch": 26.657055482743555,
+ "grad_norm": 0.21294651925563812,
+ "learning_rate": 0.0006,
+ "loss": 3.8159232139587402,
+ "step": 1919
+ },
+ {
+ "epoch": 26.67103538663172,
+ "grad_norm": 0.20008964836597443,
+ "learning_rate": 0.0006,
+ "loss": 3.796949863433838,
+ "step": 1920
+ },
+ {
+ "epoch": 26.68501529051988,
+ "grad_norm": 0.21031023561954498,
+ "learning_rate": 0.0006,
+ "loss": 3.8015570640563965,
+ "step": 1921
+ },
+ {
+ "epoch": 26.698995194408038,
+ "grad_norm": 0.2185603827238083,
+ "learning_rate": 0.0006,
+ "loss": 3.8022537231445312,
+ "step": 1922
+ },
+ {
+ "epoch": 26.712975098296198,
+ "grad_norm": 0.22957198321819305,
+ "learning_rate": 0.0006,
+ "loss": 3.7859907150268555,
+ "step": 1923
+ },
+ {
+ "epoch": 26.72695500218436,
+ "grad_norm": 0.23779156804084778,
+ "learning_rate": 0.0006,
+ "loss": 3.830345630645752,
+ "step": 1924
+ },
+ {
+ "epoch": 26.74093490607252,
+ "grad_norm": 0.23577193915843964,
+ "learning_rate": 0.0006,
+ "loss": 3.777338981628418,
+ "step": 1925
+ },
+ {
+ "epoch": 26.75491480996068,
+ "grad_norm": 0.2521933913230896,
+ "learning_rate": 0.0006,
+ "loss": 3.8215396404266357,
+ "step": 1926
+ },
+ {
+ "epoch": 26.76889471384884,
+ "grad_norm": 0.25050726532936096,
+ "learning_rate": 0.0006,
+ "loss": 3.817509651184082,
+ "step": 1927
+ },
+ {
+ "epoch": 26.782874617737004,
+ "grad_norm": 0.24442453682422638,
+ "learning_rate": 0.0006,
+ "loss": 3.8033013343811035,
+ "step": 1928
+ },
+ {
+ "epoch": 26.796854521625164,
+ "grad_norm": 0.2280828058719635,
+ "learning_rate": 0.0006,
+ "loss": 3.798625946044922,
+ "step": 1929
+ },
+ {
+ "epoch": 26.810834425513324,
+ "grad_norm": 0.23072117567062378,
+ "learning_rate": 0.0006,
+ "loss": 3.8109097480773926,
+ "step": 1930
+ },
+ {
+ "epoch": 26.824814329401484,
+ "grad_norm": 0.2690806984901428,
+ "learning_rate": 0.0006,
+ "loss": 3.7707223892211914,
+ "step": 1931
+ },
+ {
+ "epoch": 26.838794233289647,
+ "grad_norm": 0.24973517656326294,
+ "learning_rate": 0.0006,
+ "loss": 3.7788357734680176,
+ "step": 1932
+ },
+ {
+ "epoch": 26.852774137177807,
+ "grad_norm": 0.24221451580524445,
+ "learning_rate": 0.0006,
+ "loss": 3.8083114624023438,
+ "step": 1933
+ },
+ {
+ "epoch": 26.866754041065967,
+ "grad_norm": 0.23499037325382233,
+ "learning_rate": 0.0006,
+ "loss": 3.845512866973877,
+ "step": 1934
+ },
+ {
+ "epoch": 26.88073394495413,
+ "grad_norm": 0.2172643095254898,
+ "learning_rate": 0.0006,
+ "loss": 3.8171584606170654,
+ "step": 1935
+ },
+ {
+ "epoch": 26.89471384884229,
+ "grad_norm": 0.19935013353824615,
+ "learning_rate": 0.0006,
+ "loss": 3.808596611022949,
+ "step": 1936
+ },
+ {
+ "epoch": 26.90869375273045,
+ "grad_norm": 0.2077745944261551,
+ "learning_rate": 0.0006,
+ "loss": 3.842836856842041,
+ "step": 1937
+ },
+ {
+ "epoch": 26.92267365661861,
+ "grad_norm": 0.20017282664775848,
+ "learning_rate": 0.0006,
+ "loss": 3.791734457015991,
+ "step": 1938
+ },
+ {
+ "epoch": 26.936653560506773,
+ "grad_norm": 0.2082037627696991,
+ "learning_rate": 0.0006,
+ "loss": 3.7987842559814453,
+ "step": 1939
+ },
+ {
+ "epoch": 26.950633464394933,
+ "grad_norm": 0.21100632846355438,
+ "learning_rate": 0.0006,
+ "loss": 3.8033156394958496,
+ "step": 1940
+ },
+ {
+ "epoch": 26.964613368283093,
+ "grad_norm": 0.2091331034898758,
+ "learning_rate": 0.0006,
+ "loss": 3.8250908851623535,
+ "step": 1941
+ },
+ {
+ "epoch": 26.978593272171253,
+ "grad_norm": 0.19728544354438782,
+ "learning_rate": 0.0006,
+ "loss": 3.7934365272521973,
+ "step": 1942
+ },
+ {
+ "epoch": 26.992573176059416,
+ "grad_norm": 0.19266465306282043,
+ "learning_rate": 0.0006,
+ "loss": 3.8095879554748535,
+ "step": 1943
+ },
+ {
+ "epoch": 27.0,
+ "grad_norm": 0.2264554500579834,
+ "learning_rate": 0.0006,
+ "loss": 3.840135335922241,
+ "step": 1944
+ },
+ {
+ "epoch": 27.0,
+ "eval_loss": 4.046233654022217,
+ "eval_runtime": 44.0648,
+ "eval_samples_per_second": 55.418,
+ "eval_steps_per_second": 3.472,
+ "step": 1944
+ },
+ {
+ "epoch": 27.01397990388816,
+ "grad_norm": 0.24101831018924713,
+ "learning_rate": 0.0006,
+ "loss": 3.7463197708129883,
+ "step": 1945
+ },
+ {
+ "epoch": 27.027959807776323,
+ "grad_norm": 0.2917300760746002,
+ "learning_rate": 0.0006,
+ "loss": 3.769083261489868,
+ "step": 1946
+ },
+ {
+ "epoch": 27.041939711664483,
+ "grad_norm": 0.30864080786705017,
+ "learning_rate": 0.0006,
+ "loss": 3.7774248123168945,
+ "step": 1947
+ },
+ {
+ "epoch": 27.055919615552643,
+ "grad_norm": 0.28574317693710327,
+ "learning_rate": 0.0006,
+ "loss": 3.759530544281006,
+ "step": 1948
+ },
+ {
+ "epoch": 27.069899519440803,
+ "grad_norm": 0.23381628096103668,
+ "learning_rate": 0.0006,
+ "loss": 3.764347791671753,
+ "step": 1949
+ },
+ {
+ "epoch": 27.083879423328966,
+ "grad_norm": 0.2717961072921753,
+ "learning_rate": 0.0006,
+ "loss": 3.785306692123413,
+ "step": 1950
+ },
+ {
+ "epoch": 27.097859327217126,
+ "grad_norm": 0.2753375470638275,
+ "learning_rate": 0.0006,
+ "loss": 3.7511696815490723,
+ "step": 1951
+ },
+ {
+ "epoch": 27.111839231105286,
+ "grad_norm": 0.260250061750412,
+ "learning_rate": 0.0006,
+ "loss": 3.7775721549987793,
+ "step": 1952
+ },
+ {
+ "epoch": 27.125819134993446,
+ "grad_norm": 0.2462741732597351,
+ "learning_rate": 0.0006,
+ "loss": 3.775203227996826,
+ "step": 1953
+ },
+ {
+ "epoch": 27.13979903888161,
+ "grad_norm": 0.23599569499492645,
+ "learning_rate": 0.0006,
+ "loss": 3.7580947875976562,
+ "step": 1954
+ },
+ {
+ "epoch": 27.15377894276977,
+ "grad_norm": 0.21749968826770782,
+ "learning_rate": 0.0006,
+ "loss": 3.778254985809326,
+ "step": 1955
+ },
+ {
+ "epoch": 27.16775884665793,
+ "grad_norm": 0.22210343182086945,
+ "learning_rate": 0.0006,
+ "loss": 3.734727144241333,
+ "step": 1956
+ },
+ {
+ "epoch": 27.18173875054609,
+ "grad_norm": 0.23376141488552094,
+ "learning_rate": 0.0006,
+ "loss": 3.7892181873321533,
+ "step": 1957
+ },
+ {
+ "epoch": 27.195718654434252,
+ "grad_norm": 0.21751847863197327,
+ "learning_rate": 0.0006,
+ "loss": 3.801621913909912,
+ "step": 1958
+ },
+ {
+ "epoch": 27.209698558322412,
+ "grad_norm": 0.22995133697986603,
+ "learning_rate": 0.0006,
+ "loss": 3.8031363487243652,
+ "step": 1959
+ },
+ {
+ "epoch": 27.22367846221057,
+ "grad_norm": 0.22716350853443146,
+ "learning_rate": 0.0006,
+ "loss": 3.7591521739959717,
+ "step": 1960
+ },
+ {
+ "epoch": 27.23765836609873,
+ "grad_norm": 0.20819596946239471,
+ "learning_rate": 0.0006,
+ "loss": 3.7988929748535156,
+ "step": 1961
+ },
+ {
+ "epoch": 27.251638269986895,
+ "grad_norm": 0.19861504435539246,
+ "learning_rate": 0.0006,
+ "loss": 3.7752838134765625,
+ "step": 1962
+ },
+ {
+ "epoch": 27.265618173875055,
+ "grad_norm": 0.1959371268749237,
+ "learning_rate": 0.0006,
+ "loss": 3.7707290649414062,
+ "step": 1963
+ },
+ {
+ "epoch": 27.279598077763215,
+ "grad_norm": 0.18772225081920624,
+ "learning_rate": 0.0006,
+ "loss": 3.7714555263519287,
+ "step": 1964
+ },
+ {
+ "epoch": 27.293577981651374,
+ "grad_norm": 0.20839282870292664,
+ "learning_rate": 0.0006,
+ "loss": 3.7857258319854736,
+ "step": 1965
+ },
+ {
+ "epoch": 27.307557885539538,
+ "grad_norm": 0.22521957755088806,
+ "learning_rate": 0.0006,
+ "loss": 3.776909351348877,
+ "step": 1966
+ },
+ {
+ "epoch": 27.321537789427698,
+ "grad_norm": 0.19533076882362366,
+ "learning_rate": 0.0006,
+ "loss": 3.8152523040771484,
+ "step": 1967
+ },
+ {
+ "epoch": 27.335517693315857,
+ "grad_norm": 0.18678881227970123,
+ "learning_rate": 0.0006,
+ "loss": 3.751555919647217,
+ "step": 1968
+ },
+ {
+ "epoch": 27.34949759720402,
+ "grad_norm": 0.18257129192352295,
+ "learning_rate": 0.0006,
+ "loss": 3.7701754570007324,
+ "step": 1969
+ },
+ {
+ "epoch": 27.36347750109218,
+ "grad_norm": 0.18191468715667725,
+ "learning_rate": 0.0006,
+ "loss": 3.817451238632202,
+ "step": 1970
+ },
+ {
+ "epoch": 27.37745740498034,
+ "grad_norm": 0.18665607273578644,
+ "learning_rate": 0.0006,
+ "loss": 3.78645658493042,
+ "step": 1971
+ },
+ {
+ "epoch": 27.3914373088685,
+ "grad_norm": 0.19604510068893433,
+ "learning_rate": 0.0006,
+ "loss": 3.7735626697540283,
+ "step": 1972
+ },
+ {
+ "epoch": 27.405417212756664,
+ "grad_norm": 0.20136640965938568,
+ "learning_rate": 0.0006,
+ "loss": 3.77310848236084,
+ "step": 1973
+ },
+ {
+ "epoch": 27.419397116644824,
+ "grad_norm": 0.19314947724342346,
+ "learning_rate": 0.0006,
+ "loss": 3.8084068298339844,
+ "step": 1974
+ },
+ {
+ "epoch": 27.433377020532983,
+ "grad_norm": 0.20761604607105255,
+ "learning_rate": 0.0006,
+ "loss": 3.80732798576355,
+ "step": 1975
+ },
+ {
+ "epoch": 27.447356924421143,
+ "grad_norm": 0.2239987850189209,
+ "learning_rate": 0.0006,
+ "loss": 3.7950329780578613,
+ "step": 1976
+ },
+ {
+ "epoch": 27.461336828309307,
+ "grad_norm": 0.22146444022655487,
+ "learning_rate": 0.0006,
+ "loss": 3.7957234382629395,
+ "step": 1977
+ },
+ {
+ "epoch": 27.475316732197467,
+ "grad_norm": 0.23218585550785065,
+ "learning_rate": 0.0006,
+ "loss": 3.806377410888672,
+ "step": 1978
+ },
+ {
+ "epoch": 27.489296636085626,
+ "grad_norm": 0.23549026250839233,
+ "learning_rate": 0.0006,
+ "loss": 3.7833383083343506,
+ "step": 1979
+ },
+ {
+ "epoch": 27.503276539973786,
+ "grad_norm": 0.24219457805156708,
+ "learning_rate": 0.0006,
+ "loss": 3.8154187202453613,
+ "step": 1980
+ },
+ {
+ "epoch": 27.51725644386195,
+ "grad_norm": 0.23703953623771667,
+ "learning_rate": 0.0006,
+ "loss": 3.7846405506134033,
+ "step": 1981
+ },
+ {
+ "epoch": 27.53123634775011,
+ "grad_norm": 0.23596109449863434,
+ "learning_rate": 0.0006,
+ "loss": 3.7698163986206055,
+ "step": 1982
+ },
+ {
+ "epoch": 27.54521625163827,
+ "grad_norm": 0.23073506355285645,
+ "learning_rate": 0.0006,
+ "loss": 3.8114185333251953,
+ "step": 1983
+ },
+ {
+ "epoch": 27.55919615552643,
+ "grad_norm": 0.24761143326759338,
+ "learning_rate": 0.0006,
+ "loss": 3.7548117637634277,
+ "step": 1984
+ },
+ {
+ "epoch": 27.573176059414592,
+ "grad_norm": 0.2834068238735199,
+ "learning_rate": 0.0006,
+ "loss": 3.7990212440490723,
+ "step": 1985
+ },
+ {
+ "epoch": 27.587155963302752,
+ "grad_norm": 0.29774922132492065,
+ "learning_rate": 0.0006,
+ "loss": 3.7845072746276855,
+ "step": 1986
+ },
+ {
+ "epoch": 27.601135867190912,
+ "grad_norm": 0.2732089161872864,
+ "learning_rate": 0.0006,
+ "loss": 3.8050694465637207,
+ "step": 1987
+ },
+ {
+ "epoch": 27.615115771079076,
+ "grad_norm": 0.24433180689811707,
+ "learning_rate": 0.0006,
+ "loss": 3.762704372406006,
+ "step": 1988
+ },
+ {
+ "epoch": 27.629095674967235,
+ "grad_norm": 0.21340419352054596,
+ "learning_rate": 0.0006,
+ "loss": 3.826023817062378,
+ "step": 1989
+ },
+ {
+ "epoch": 27.643075578855395,
+ "grad_norm": 0.22518761456012726,
+ "learning_rate": 0.0006,
+ "loss": 3.7823970317840576,
+ "step": 1990
+ },
+ {
+ "epoch": 27.657055482743555,
+ "grad_norm": 0.2196940928697586,
+ "learning_rate": 0.0006,
+ "loss": 3.787463426589966,
+ "step": 1991
+ },
+ {
+ "epoch": 27.67103538663172,
+ "grad_norm": 0.21906471252441406,
+ "learning_rate": 0.0006,
+ "loss": 3.7856104373931885,
+ "step": 1992
+ },
+ {
+ "epoch": 27.68501529051988,
+ "grad_norm": 0.2280956357717514,
+ "learning_rate": 0.0006,
+ "loss": 3.7829794883728027,
+ "step": 1993
+ },
+ {
+ "epoch": 27.698995194408038,
+ "grad_norm": 0.22567005455493927,
+ "learning_rate": 0.0006,
+ "loss": 3.762316942214966,
+ "step": 1994
+ },
+ {
+ "epoch": 27.712975098296198,
+ "grad_norm": 0.21703341603279114,
+ "learning_rate": 0.0006,
+ "loss": 3.772535800933838,
+ "step": 1995
+ },
+ {
+ "epoch": 27.72695500218436,
+ "grad_norm": 0.20586732029914856,
+ "learning_rate": 0.0006,
+ "loss": 3.775930881500244,
+ "step": 1996
+ },
+ {
+ "epoch": 27.74093490607252,
+ "grad_norm": 0.2126319408416748,
+ "learning_rate": 0.0006,
+ "loss": 3.793353796005249,
+ "step": 1997
+ },
+ {
+ "epoch": 27.75491480996068,
+ "grad_norm": 0.19664280116558075,
+ "learning_rate": 0.0006,
+ "loss": 3.7721195220947266,
+ "step": 1998
+ },
+ {
+ "epoch": 27.76889471384884,
+ "grad_norm": 0.17695854604244232,
+ "learning_rate": 0.0006,
+ "loss": 3.7931227684020996,
+ "step": 1999
+ },
+ {
+ "epoch": 27.782874617737004,
+ "grad_norm": 0.1899620145559311,
+ "learning_rate": 0.0006,
+ "loss": 3.798692226409912,
+ "step": 2000
+ },
+ {
+ "epoch": 27.796854521625164,
+ "grad_norm": 0.20334762334823608,
+ "learning_rate": 0.0006,
+ "loss": 3.774670124053955,
+ "step": 2001
+ },
+ {
+ "epoch": 27.810834425513324,
+ "grad_norm": 0.21150588989257812,
+ "learning_rate": 0.0006,
+ "loss": 3.803859233856201,
+ "step": 2002
+ },
+ {
+ "epoch": 27.824814329401484,
+ "grad_norm": 0.20425523817539215,
+ "learning_rate": 0.0006,
+ "loss": 3.810410976409912,
+ "step": 2003
+ },
+ {
+ "epoch": 27.838794233289647,
+ "grad_norm": 0.20468413829803467,
+ "learning_rate": 0.0006,
+ "loss": 3.800917625427246,
+ "step": 2004
+ },
+ {
+ "epoch": 27.852774137177807,
+ "grad_norm": 0.2113286256790161,
+ "learning_rate": 0.0006,
+ "loss": 3.7581989765167236,
+ "step": 2005
+ },
+ {
+ "epoch": 27.866754041065967,
+ "grad_norm": 0.2098054736852646,
+ "learning_rate": 0.0006,
+ "loss": 3.7921502590179443,
+ "step": 2006
+ },
+ {
+ "epoch": 27.88073394495413,
+ "grad_norm": 0.21701586246490479,
+ "learning_rate": 0.0006,
+ "loss": 3.8166770935058594,
+ "step": 2007
+ },
+ {
+ "epoch": 27.89471384884229,
+ "grad_norm": 0.2086625099182129,
+ "learning_rate": 0.0006,
+ "loss": 3.7732229232788086,
+ "step": 2008
+ },
+ {
+ "epoch": 27.90869375273045,
+ "grad_norm": 0.2186812162399292,
+ "learning_rate": 0.0006,
+ "loss": 3.8067402839660645,
+ "step": 2009
+ },
+ {
+ "epoch": 27.92267365661861,
+ "grad_norm": 0.2168985903263092,
+ "learning_rate": 0.0006,
+ "loss": 3.798159122467041,
+ "step": 2010
+ },
+ {
+ "epoch": 27.936653560506773,
+ "grad_norm": 0.23713620007038116,
+ "learning_rate": 0.0006,
+ "loss": 3.7958693504333496,
+ "step": 2011
+ },
+ {
+ "epoch": 27.950633464394933,
+ "grad_norm": 0.23592841625213623,
+ "learning_rate": 0.0006,
+ "loss": 3.795126438140869,
+ "step": 2012
+ },
+ {
+ "epoch": 27.964613368283093,
+ "grad_norm": 0.22210197150707245,
+ "learning_rate": 0.0006,
+ "loss": 3.791013240814209,
+ "step": 2013
+ },
+ {
+ "epoch": 27.978593272171253,
+ "grad_norm": 0.23190008103847504,
+ "learning_rate": 0.0006,
+ "loss": 3.813408374786377,
+ "step": 2014
+ },
+ {
+ "epoch": 27.992573176059416,
+ "grad_norm": 0.22158131003379822,
+ "learning_rate": 0.0006,
+ "loss": 3.7975716590881348,
+ "step": 2015
+ },
+ {
+ "epoch": 28.0,
+ "grad_norm": 0.2300519198179245,
+ "learning_rate": 0.0006,
+ "loss": 3.776214838027954,
+ "step": 2016
+ },
+ {
+ "epoch": 28.0,
+ "eval_loss": 4.04406213760376,
+ "eval_runtime": 44.0285,
+ "eval_samples_per_second": 55.464,
+ "eval_steps_per_second": 3.475,
+ "step": 2016
+ },
+ {
+ "epoch": 28.01397990388816,
+ "grad_norm": 0.21007688343524933,
+ "learning_rate": 0.0006,
+ "loss": 3.7366907596588135,
+ "step": 2017
+ },
+ {
+ "epoch": 28.027959807776323,
+ "grad_norm": 0.1941644549369812,
+ "learning_rate": 0.0006,
+ "loss": 3.744373321533203,
+ "step": 2018
+ },
+ {
+ "epoch": 28.041939711664483,
+ "grad_norm": 0.21308493614196777,
+ "learning_rate": 0.0006,
+ "loss": 3.7650012969970703,
+ "step": 2019
+ },
+ {
+ "epoch": 28.055919615552643,
+ "grad_norm": 0.20114868879318237,
+ "learning_rate": 0.0006,
+ "loss": 3.7652382850646973,
+ "step": 2020
+ },
+ {
+ "epoch": 28.069899519440803,
+ "grad_norm": 0.20266319811344147,
+ "learning_rate": 0.0006,
+ "loss": 3.7710442543029785,
+ "step": 2021
+ },
+ {
+ "epoch": 28.083879423328966,
+ "grad_norm": 0.205102801322937,
+ "learning_rate": 0.0006,
+ "loss": 3.7515463829040527,
+ "step": 2022
+ },
+ {
+ "epoch": 28.097859327217126,
+ "grad_norm": 0.22002041339874268,
+ "learning_rate": 0.0006,
+ "loss": 3.762019157409668,
+ "step": 2023
+ },
+ {
+ "epoch": 28.111839231105286,
+ "grad_norm": 0.2063235342502594,
+ "learning_rate": 0.0006,
+ "loss": 3.765453338623047,
+ "step": 2024
+ },
+ {
+ "epoch": 28.125819134993446,
+ "grad_norm": 0.19145619869232178,
+ "learning_rate": 0.0006,
+ "loss": 3.769411325454712,
+ "step": 2025
+ },
+ {
+ "epoch": 28.13979903888161,
+ "grad_norm": 0.19308455288410187,
+ "learning_rate": 0.0006,
+ "loss": 3.8009989261627197,
+ "step": 2026
+ },
+ {
+ "epoch": 28.15377894276977,
+ "grad_norm": 0.220510333776474,
+ "learning_rate": 0.0006,
+ "loss": 3.7582602500915527,
+ "step": 2027
+ },
+ {
+ "epoch": 28.16775884665793,
+ "grad_norm": 0.22855883836746216,
+ "learning_rate": 0.0006,
+ "loss": 3.803917407989502,
+ "step": 2028
+ },
+ {
+ "epoch": 28.18173875054609,
+ "grad_norm": 0.24206340312957764,
+ "learning_rate": 0.0006,
+ "loss": 3.764101028442383,
+ "step": 2029
+ },
+ {
+ "epoch": 28.195718654434252,
+ "grad_norm": 0.23973612487316132,
+ "learning_rate": 0.0006,
+ "loss": 3.787308931350708,
+ "step": 2030
+ },
+ {
+ "epoch": 28.209698558322412,
+ "grad_norm": 0.21400697529315948,
+ "learning_rate": 0.0006,
+ "loss": 3.7706117630004883,
+ "step": 2031
+ },
+ {
+ "epoch": 28.22367846221057,
+ "grad_norm": 0.21983976662158966,
+ "learning_rate": 0.0006,
+ "loss": 3.772731304168701,
+ "step": 2032
+ },
+ {
+ "epoch": 28.23765836609873,
+ "grad_norm": 0.22427113354206085,
+ "learning_rate": 0.0006,
+ "loss": 3.7724413871765137,
+ "step": 2033
+ },
+ {
+ "epoch": 28.251638269986895,
+ "grad_norm": 0.23665079474449158,
+ "learning_rate": 0.0006,
+ "loss": 3.769845962524414,
+ "step": 2034
+ },
+ {
+ "epoch": 28.265618173875055,
+ "grad_norm": 0.22663180530071259,
+ "learning_rate": 0.0006,
+ "loss": 3.764380931854248,
+ "step": 2035
+ },
+ {
+ "epoch": 28.279598077763215,
+ "grad_norm": 0.21094927191734314,
+ "learning_rate": 0.0006,
+ "loss": 3.7598326206207275,
+ "step": 2036
+ },
+ {
+ "epoch": 28.293577981651374,
+ "grad_norm": 0.20419518649578094,
+ "learning_rate": 0.0006,
+ "loss": 3.7737207412719727,
+ "step": 2037
+ },
+ {
+ "epoch": 28.307557885539538,
+ "grad_norm": 0.2171909660100937,
+ "learning_rate": 0.0006,
+ "loss": 3.7499468326568604,
+ "step": 2038
+ },
+ {
+ "epoch": 28.321537789427698,
+ "grad_norm": 0.22749298810958862,
+ "learning_rate": 0.0006,
+ "loss": 3.767536163330078,
+ "step": 2039
+ },
+ {
+ "epoch": 28.335517693315857,
+ "grad_norm": 0.22821909189224243,
+ "learning_rate": 0.0006,
+ "loss": 3.744386672973633,
+ "step": 2040
+ },
+ {
+ "epoch": 28.34949759720402,
+ "grad_norm": 0.2227880209684372,
+ "learning_rate": 0.0006,
+ "loss": 3.72955322265625,
+ "step": 2041
+ },
+ {
+ "epoch": 28.36347750109218,
+ "grad_norm": 0.22204327583312988,
+ "learning_rate": 0.0006,
+ "loss": 3.793854236602783,
+ "step": 2042
+ },
+ {
+ "epoch": 28.37745740498034,
+ "grad_norm": 0.21621409058570862,
+ "learning_rate": 0.0006,
+ "loss": 3.775379180908203,
+ "step": 2043
+ },
+ {
+ "epoch": 28.3914373088685,
+ "grad_norm": 0.2439221441745758,
+ "learning_rate": 0.0006,
+ "loss": 3.727464199066162,
+ "step": 2044
+ },
+ {
+ "epoch": 28.405417212756664,
+ "grad_norm": 0.24408605694770813,
+ "learning_rate": 0.0006,
+ "loss": 3.761747360229492,
+ "step": 2045
+ },
+ {
+ "epoch": 28.419397116644824,
+ "grad_norm": 0.26118648052215576,
+ "learning_rate": 0.0006,
+ "loss": 3.7587313652038574,
+ "step": 2046
+ },
+ {
+ "epoch": 28.433377020532983,
+ "grad_norm": 0.25948166847229004,
+ "learning_rate": 0.0006,
+ "loss": 3.7698440551757812,
+ "step": 2047
+ },
+ {
+ "epoch": 28.447356924421143,
+ "grad_norm": 0.26413780450820923,
+ "learning_rate": 0.0006,
+ "loss": 3.799107551574707,
+ "step": 2048
+ },
+ {
+ "epoch": 28.461336828309307,
+ "grad_norm": 0.2687148153781891,
+ "learning_rate": 0.0006,
+ "loss": 3.7564382553100586,
+ "step": 2049
+ },
+ {
+ "epoch": 28.475316732197467,
+ "grad_norm": 0.2676694691181183,
+ "learning_rate": 0.0006,
+ "loss": 3.754267692565918,
+ "step": 2050
+ },
+ {
+ "epoch": 28.489296636085626,
+ "grad_norm": 0.27275168895721436,
+ "learning_rate": 0.0006,
+ "loss": 3.802988052368164,
+ "step": 2051
+ },
+ {
+ "epoch": 28.503276539973786,
+ "grad_norm": 0.28783538937568665,
+ "learning_rate": 0.0006,
+ "loss": 3.762540817260742,
+ "step": 2052
+ },
+ {
+ "epoch": 28.51725644386195,
+ "grad_norm": 0.2628997266292572,
+ "learning_rate": 0.0006,
+ "loss": 3.7933349609375,
+ "step": 2053
+ },
+ {
+ "epoch": 28.53123634775011,
+ "grad_norm": 0.2498515099287033,
+ "learning_rate": 0.0006,
+ "loss": 3.7773094177246094,
+ "step": 2054
+ },
+ {
+ "epoch": 28.54521625163827,
+ "grad_norm": 0.22625942528247833,
+ "learning_rate": 0.0006,
+ "loss": 3.803457021713257,
+ "step": 2055
+ },
+ {
+ "epoch": 28.55919615552643,
+ "grad_norm": 0.21488751471042633,
+ "learning_rate": 0.0006,
+ "loss": 3.78924560546875,
+ "step": 2056
+ },
+ {
+ "epoch": 28.573176059414592,
+ "grad_norm": 0.22041267156600952,
+ "learning_rate": 0.0006,
+ "loss": 3.79361629486084,
+ "step": 2057
+ },
+ {
+ "epoch": 28.587155963302752,
+ "grad_norm": 0.23164816200733185,
+ "learning_rate": 0.0006,
+ "loss": 3.735037326812744,
+ "step": 2058
+ },
+ {
+ "epoch": 28.601135867190912,
+ "grad_norm": 0.22371916472911835,
+ "learning_rate": 0.0006,
+ "loss": 3.731417179107666,
+ "step": 2059
+ },
+ {
+ "epoch": 28.615115771079076,
+ "grad_norm": 0.2280314862728119,
+ "learning_rate": 0.0006,
+ "loss": 3.796154499053955,
+ "step": 2060
+ },
+ {
+ "epoch": 28.629095674967235,
+ "grad_norm": 0.21386604011058807,
+ "learning_rate": 0.0006,
+ "loss": 3.778648614883423,
+ "step": 2061
+ },
+ {
+ "epoch": 28.643075578855395,
+ "grad_norm": 0.20433050394058228,
+ "learning_rate": 0.0006,
+ "loss": 3.772826910018921,
+ "step": 2062
+ },
+ {
+ "epoch": 28.657055482743555,
+ "grad_norm": 0.2049262523651123,
+ "learning_rate": 0.0006,
+ "loss": 3.7410364151000977,
+ "step": 2063
+ },
+ {
+ "epoch": 28.67103538663172,
+ "grad_norm": 0.22041259706020355,
+ "learning_rate": 0.0006,
+ "loss": 3.796724319458008,
+ "step": 2064
+ },
+ {
+ "epoch": 28.68501529051988,
+ "grad_norm": 0.2018800675868988,
+ "learning_rate": 0.0006,
+ "loss": 3.775252342224121,
+ "step": 2065
+ },
+ {
+ "epoch": 28.698995194408038,
+ "grad_norm": 0.2159280925989151,
+ "learning_rate": 0.0006,
+ "loss": 3.766021251678467,
+ "step": 2066
+ },
+ {
+ "epoch": 28.712975098296198,
+ "grad_norm": 0.2072775512933731,
+ "learning_rate": 0.0006,
+ "loss": 3.765397548675537,
+ "step": 2067
+ },
+ {
+ "epoch": 28.72695500218436,
+ "grad_norm": 0.19592848420143127,
+ "learning_rate": 0.0006,
+ "loss": 3.8151614665985107,
+ "step": 2068
+ },
+ {
+ "epoch": 28.74093490607252,
+ "grad_norm": 0.19266322255134583,
+ "learning_rate": 0.0006,
+ "loss": 3.774945020675659,
+ "step": 2069
+ },
+ {
+ "epoch": 28.75491480996068,
+ "grad_norm": 0.19442392885684967,
+ "learning_rate": 0.0006,
+ "loss": 3.816283702850342,
+ "step": 2070
+ },
+ {
+ "epoch": 28.76889471384884,
+ "grad_norm": 0.19080746173858643,
+ "learning_rate": 0.0006,
+ "loss": 3.7784247398376465,
+ "step": 2071
+ },
+ {
+ "epoch": 28.782874617737004,
+ "grad_norm": 0.20150451362133026,
+ "learning_rate": 0.0006,
+ "loss": 3.7710249423980713,
+ "step": 2072
+ },
+ {
+ "epoch": 28.796854521625164,
+ "grad_norm": 0.1835816204547882,
+ "learning_rate": 0.0006,
+ "loss": 3.750032901763916,
+ "step": 2073
+ },
+ {
+ "epoch": 28.810834425513324,
+ "grad_norm": 0.1855502873659134,
+ "learning_rate": 0.0006,
+ "loss": 3.7276318073272705,
+ "step": 2074
+ },
+ {
+ "epoch": 28.824814329401484,
+ "grad_norm": 0.18683169782161713,
+ "learning_rate": 0.0006,
+ "loss": 3.7516555786132812,
+ "step": 2075
+ },
+ {
+ "epoch": 28.838794233289647,
+ "grad_norm": 0.2034577578306198,
+ "learning_rate": 0.0006,
+ "loss": 3.749875068664551,
+ "step": 2076
+ },
+ {
+ "epoch": 28.852774137177807,
+ "grad_norm": 0.2234230488538742,
+ "learning_rate": 0.0006,
+ "loss": 3.791429042816162,
+ "step": 2077
+ },
+ {
+ "epoch": 28.866754041065967,
+ "grad_norm": 0.25600525736808777,
+ "learning_rate": 0.0006,
+ "loss": 3.7769298553466797,
+ "step": 2078
+ },
+ {
+ "epoch": 28.88073394495413,
+ "grad_norm": 0.2741529643535614,
+ "learning_rate": 0.0006,
+ "loss": 3.771848201751709,
+ "step": 2079
+ },
+ {
+ "epoch": 28.89471384884229,
+ "grad_norm": 0.2710304260253906,
+ "learning_rate": 0.0006,
+ "loss": 3.8235626220703125,
+ "step": 2080
+ },
+ {
+ "epoch": 28.90869375273045,
+ "grad_norm": 0.25497519969940186,
+ "learning_rate": 0.0006,
+ "loss": 3.811288595199585,
+ "step": 2081
+ },
+ {
+ "epoch": 28.92267365661861,
+ "grad_norm": 0.25689464807510376,
+ "learning_rate": 0.0006,
+ "loss": 3.7848939895629883,
+ "step": 2082
+ },
+ {
+ "epoch": 28.936653560506773,
+ "grad_norm": 0.2794921398162842,
+ "learning_rate": 0.0006,
+ "loss": 3.7836732864379883,
+ "step": 2083
+ },
+ {
+ "epoch": 28.950633464394933,
+ "grad_norm": 0.24730202555656433,
+ "learning_rate": 0.0006,
+ "loss": 3.7703347206115723,
+ "step": 2084
+ },
+ {
+ "epoch": 28.964613368283093,
+ "grad_norm": 0.21078833937644958,
+ "learning_rate": 0.0006,
+ "loss": 3.7521653175354004,
+ "step": 2085
+ },
+ {
+ "epoch": 28.978593272171253,
+ "grad_norm": 0.2188870757818222,
+ "learning_rate": 0.0006,
+ "loss": 3.769604206085205,
+ "step": 2086
+ },
+ {
+ "epoch": 28.992573176059416,
+ "grad_norm": 0.20447929203510284,
+ "learning_rate": 0.0006,
+ "loss": 3.7842764854431152,
+ "step": 2087
+ },
+ {
+ "epoch": 29.0,
+ "grad_norm": 0.21607689559459686,
+ "learning_rate": 0.0006,
+ "loss": 3.7428855895996094,
+ "step": 2088
+ },
+ {
+ "epoch": 29.0,
+ "eval_loss": 4.0355753898620605,
+ "eval_runtime": 44.1435,
+ "eval_samples_per_second": 55.32,
+ "eval_steps_per_second": 3.466,
+ "step": 2088
+ },
+ {
+ "epoch": 29.01397990388816,
+ "grad_norm": 0.21270133554935455,
+ "learning_rate": 0.0006,
+ "loss": 3.7548413276672363,
+ "step": 2089
+ },
+ {
+ "epoch": 29.027959807776323,
+ "grad_norm": 0.21576301753520966,
+ "learning_rate": 0.0006,
+ "loss": 3.754613161087036,
+ "step": 2090
+ },
+ {
+ "epoch": 29.041939711664483,
+ "grad_norm": 0.2162923663854599,
+ "learning_rate": 0.0006,
+ "loss": 3.755772590637207,
+ "step": 2091
+ },
+ {
+ "epoch": 29.055919615552643,
+ "grad_norm": 0.22236663103103638,
+ "learning_rate": 0.0006,
+ "loss": 3.743497848510742,
+ "step": 2092
+ },
+ {
+ "epoch": 29.069899519440803,
+ "grad_norm": 0.2391042858362198,
+ "learning_rate": 0.0006,
+ "loss": 3.749204158782959,
+ "step": 2093
+ },
+ {
+ "epoch": 29.083879423328966,
+ "grad_norm": 0.23387965559959412,
+ "learning_rate": 0.0006,
+ "loss": 3.7286791801452637,
+ "step": 2094
+ },
+ {
+ "epoch": 29.097859327217126,
+ "grad_norm": 0.23677746951580048,
+ "learning_rate": 0.0006,
+ "loss": 3.755279541015625,
+ "step": 2095
+ },
+ {
+ "epoch": 29.111839231105286,
+ "grad_norm": 0.22771087288856506,
+ "learning_rate": 0.0006,
+ "loss": 3.722566604614258,
+ "step": 2096
+ },
+ {
+ "epoch": 29.125819134993446,
+ "grad_norm": 0.2132875621318817,
+ "learning_rate": 0.0006,
+ "loss": 3.748939037322998,
+ "step": 2097
+ },
+ {
+ "epoch": 29.13979903888161,
+ "grad_norm": 0.2033746838569641,
+ "learning_rate": 0.0006,
+ "loss": 3.7393670082092285,
+ "step": 2098
+ },
+ {
+ "epoch": 29.15377894276977,
+ "grad_norm": 0.1997237652540207,
+ "learning_rate": 0.0006,
+ "loss": 3.718498945236206,
+ "step": 2099
+ },
+ {
+ "epoch": 29.16775884665793,
+ "grad_norm": 0.19102543592453003,
+ "learning_rate": 0.0006,
+ "loss": 3.748950719833374,
+ "step": 2100
+ },
+ {
+ "epoch": 29.18173875054609,
+ "grad_norm": 0.19801580905914307,
+ "learning_rate": 0.0006,
+ "loss": 3.7123501300811768,
+ "step": 2101
+ },
+ {
+ "epoch": 29.195718654434252,
+ "grad_norm": 0.20186249911785126,
+ "learning_rate": 0.0006,
+ "loss": 3.7632713317871094,
+ "step": 2102
+ },
+ {
+ "epoch": 29.209698558322412,
+ "grad_norm": 0.22725415229797363,
+ "learning_rate": 0.0006,
+ "loss": 3.753506660461426,
+ "step": 2103
+ },
+ {
+ "epoch": 29.22367846221057,
+ "grad_norm": 0.23138119280338287,
+ "learning_rate": 0.0006,
+ "loss": 3.753282070159912,
+ "step": 2104
+ },
+ {
+ "epoch": 29.23765836609873,
+ "grad_norm": 0.23171944916248322,
+ "learning_rate": 0.0006,
+ "loss": 3.73783540725708,
+ "step": 2105
+ },
+ {
+ "epoch": 29.251638269986895,
+ "grad_norm": 0.2166522741317749,
+ "learning_rate": 0.0006,
+ "loss": 3.778803825378418,
+ "step": 2106
+ },
+ {
+ "epoch": 29.265618173875055,
+ "grad_norm": 0.2009056806564331,
+ "learning_rate": 0.0006,
+ "loss": 3.738290786743164,
+ "step": 2107
+ },
+ {
+ "epoch": 29.279598077763215,
+ "grad_norm": 0.19451597332954407,
+ "learning_rate": 0.0006,
+ "loss": 3.7553348541259766,
+ "step": 2108
+ },
+ {
+ "epoch": 29.293577981651374,
+ "grad_norm": 0.19246742129325867,
+ "learning_rate": 0.0006,
+ "loss": 3.7321622371673584,
+ "step": 2109
+ },
+ {
+ "epoch": 29.307557885539538,
+ "grad_norm": 0.18917441368103027,
+ "learning_rate": 0.0006,
+ "loss": 3.7408928871154785,
+ "step": 2110
+ },
+ {
+ "epoch": 29.321537789427698,
+ "grad_norm": 0.19067776203155518,
+ "learning_rate": 0.0006,
+ "loss": 3.780052900314331,
+ "step": 2111
+ },
+ {
+ "epoch": 29.335517693315857,
+ "grad_norm": 0.18849676847457886,
+ "learning_rate": 0.0006,
+ "loss": 3.749375820159912,
+ "step": 2112
+ },
+ {
+ "epoch": 29.34949759720402,
+ "grad_norm": 0.19713285565376282,
+ "learning_rate": 0.0006,
+ "loss": 3.7128982543945312,
+ "step": 2113
+ },
+ {
+ "epoch": 29.36347750109218,
+ "grad_norm": 0.196336030960083,
+ "learning_rate": 0.0006,
+ "loss": 3.7528390884399414,
+ "step": 2114
+ },
+ {
+ "epoch": 29.37745740498034,
+ "grad_norm": 0.19574350118637085,
+ "learning_rate": 0.0006,
+ "loss": 3.7105777263641357,
+ "step": 2115
+ },
+ {
+ "epoch": 29.3914373088685,
+ "grad_norm": 0.20396539568901062,
+ "learning_rate": 0.0006,
+ "loss": 3.782249927520752,
+ "step": 2116
+ },
+ {
+ "epoch": 29.405417212756664,
+ "grad_norm": 0.24702422320842743,
+ "learning_rate": 0.0006,
+ "loss": 3.7685647010803223,
+ "step": 2117
+ },
+ {
+ "epoch": 29.419397116644824,
+ "grad_norm": 0.2729755640029907,
+ "learning_rate": 0.0006,
+ "loss": 3.7731213569641113,
+ "step": 2118
+ },
+ {
+ "epoch": 29.433377020532983,
+ "grad_norm": 0.29240545630455017,
+ "learning_rate": 0.0006,
+ "loss": 3.770162343978882,
+ "step": 2119
+ },
+ {
+ "epoch": 29.447356924421143,
+ "grad_norm": 0.2469114065170288,
+ "learning_rate": 0.0006,
+ "loss": 3.764681339263916,
+ "step": 2120
+ },
+ {
+ "epoch": 29.461336828309307,
+ "grad_norm": 0.19837401807308197,
+ "learning_rate": 0.0006,
+ "loss": 3.7600088119506836,
+ "step": 2121
+ },
+ {
+ "epoch": 29.475316732197467,
+ "grad_norm": 0.21266621351242065,
+ "learning_rate": 0.0006,
+ "loss": 3.769454002380371,
+ "step": 2122
+ },
+ {
+ "epoch": 29.489296636085626,
+ "grad_norm": 0.25908344984054565,
+ "learning_rate": 0.0006,
+ "loss": 3.7230491638183594,
+ "step": 2123
+ },
+ {
+ "epoch": 29.503276539973786,
+ "grad_norm": 0.2914169728755951,
+ "learning_rate": 0.0006,
+ "loss": 3.767849922180176,
+ "step": 2124
+ },
+ {
+ "epoch": 29.51725644386195,
+ "grad_norm": 0.2796176075935364,
+ "learning_rate": 0.0006,
+ "loss": 3.741734266281128,
+ "step": 2125
+ },
+ {
+ "epoch": 29.53123634775011,
+ "grad_norm": 0.276309996843338,
+ "learning_rate": 0.0006,
+ "loss": 3.8001914024353027,
+ "step": 2126
+ },
+ {
+ "epoch": 29.54521625163827,
+ "grad_norm": 0.26512834429740906,
+ "learning_rate": 0.0006,
+ "loss": 3.7741384506225586,
+ "step": 2127
+ },
+ {
+ "epoch": 29.55919615552643,
+ "grad_norm": 0.26514101028442383,
+ "learning_rate": 0.0006,
+ "loss": 3.7466959953308105,
+ "step": 2128
+ },
+ {
+ "epoch": 29.573176059414592,
+ "grad_norm": 0.24121330678462982,
+ "learning_rate": 0.0006,
+ "loss": 3.759542465209961,
+ "step": 2129
+ },
+ {
+ "epoch": 29.587155963302752,
+ "grad_norm": 0.2264087200164795,
+ "learning_rate": 0.0006,
+ "loss": 3.791344165802002,
+ "step": 2130
+ },
+ {
+ "epoch": 29.601135867190912,
+ "grad_norm": 0.21915403008460999,
+ "learning_rate": 0.0006,
+ "loss": 3.7540485858917236,
+ "step": 2131
+ },
+ {
+ "epoch": 29.615115771079076,
+ "grad_norm": 0.20453961193561554,
+ "learning_rate": 0.0006,
+ "loss": 3.765617609024048,
+ "step": 2132
+ },
+ {
+ "epoch": 29.629095674967235,
+ "grad_norm": 0.2194051444530487,
+ "learning_rate": 0.0006,
+ "loss": 3.7664294242858887,
+ "step": 2133
+ },
+ {
+ "epoch": 29.643075578855395,
+ "grad_norm": 0.21926000714302063,
+ "learning_rate": 0.0006,
+ "loss": 3.7551684379577637,
+ "step": 2134
+ },
+ {
+ "epoch": 29.657055482743555,
+ "grad_norm": 0.20835602283477783,
+ "learning_rate": 0.0006,
+ "loss": 3.7654306888580322,
+ "step": 2135
+ },
+ {
+ "epoch": 29.67103538663172,
+ "grad_norm": 0.23094356060028076,
+ "learning_rate": 0.0006,
+ "loss": 3.7847180366516113,
+ "step": 2136
+ },
+ {
+ "epoch": 29.68501529051988,
+ "grad_norm": 0.23871271312236786,
+ "learning_rate": 0.0006,
+ "loss": 3.789036273956299,
+ "step": 2137
+ },
+ {
+ "epoch": 29.698995194408038,
+ "grad_norm": 0.22263272106647491,
+ "learning_rate": 0.0006,
+ "loss": 3.7677512168884277,
+ "step": 2138
+ },
+ {
+ "epoch": 29.712975098296198,
+ "grad_norm": 0.2293892651796341,
+ "learning_rate": 0.0006,
+ "loss": 3.777097225189209,
+ "step": 2139
+ },
+ {
+ "epoch": 29.72695500218436,
+ "grad_norm": 0.21068568527698517,
+ "learning_rate": 0.0006,
+ "loss": 3.785336494445801,
+ "step": 2140
+ },
+ {
+ "epoch": 29.74093490607252,
+ "grad_norm": 0.19600282609462738,
+ "learning_rate": 0.0006,
+ "loss": 3.7363505363464355,
+ "step": 2141
+ },
+ {
+ "epoch": 29.75491480996068,
+ "grad_norm": 0.20053936541080475,
+ "learning_rate": 0.0006,
+ "loss": 3.753859043121338,
+ "step": 2142
+ },
+ {
+ "epoch": 29.76889471384884,
+ "grad_norm": 0.22790539264678955,
+ "learning_rate": 0.0006,
+ "loss": 3.749492645263672,
+ "step": 2143
+ },
+ {
+ "epoch": 29.782874617737004,
+ "grad_norm": 0.26042407751083374,
+ "learning_rate": 0.0006,
+ "loss": 3.7905430793762207,
+ "step": 2144
+ },
+ {
+ "epoch": 29.796854521625164,
+ "grad_norm": 0.2753683626651764,
+ "learning_rate": 0.0006,
+ "loss": 3.756442070007324,
+ "step": 2145
+ },
+ {
+ "epoch": 29.810834425513324,
+ "grad_norm": 0.2795007526874542,
+ "learning_rate": 0.0006,
+ "loss": 3.7691903114318848,
+ "step": 2146
+ },
+ {
+ "epoch": 29.824814329401484,
+ "grad_norm": 0.2461438924074173,
+ "learning_rate": 0.0006,
+ "loss": 3.7573065757751465,
+ "step": 2147
+ },
+ {
+ "epoch": 29.838794233289647,
+ "grad_norm": 0.21051941812038422,
+ "learning_rate": 0.0006,
+ "loss": 3.7540078163146973,
+ "step": 2148
+ },
+ {
+ "epoch": 29.852774137177807,
+ "grad_norm": 0.197485089302063,
+ "learning_rate": 0.0006,
+ "loss": 3.734403133392334,
+ "step": 2149
+ },
+ {
+ "epoch": 29.866754041065967,
+ "grad_norm": 0.203064426779747,
+ "learning_rate": 0.0006,
+ "loss": 3.7888364791870117,
+ "step": 2150
+ },
+ {
+ "epoch": 29.88073394495413,
+ "grad_norm": 0.2000301480293274,
+ "learning_rate": 0.0006,
+ "loss": 3.7444958686828613,
+ "step": 2151
+ },
+ {
+ "epoch": 29.89471384884229,
+ "grad_norm": 0.20492053031921387,
+ "learning_rate": 0.0006,
+ "loss": 3.7878224849700928,
+ "step": 2152
+ },
+ {
+ "epoch": 29.90869375273045,
+ "grad_norm": 0.22565388679504395,
+ "learning_rate": 0.0006,
+ "loss": 3.7539188861846924,
+ "step": 2153
+ },
+ {
+ "epoch": 29.92267365661861,
+ "grad_norm": 0.20258226990699768,
+ "learning_rate": 0.0006,
+ "loss": 3.7491893768310547,
+ "step": 2154
+ },
+ {
+ "epoch": 29.936653560506773,
+ "grad_norm": 0.20028717815876007,
+ "learning_rate": 0.0006,
+ "loss": 3.7497997283935547,
+ "step": 2155
+ },
+ {
+ "epoch": 29.950633464394933,
+ "grad_norm": 0.2246360331773758,
+ "learning_rate": 0.0006,
+ "loss": 3.773930788040161,
+ "step": 2156
+ },
+ {
+ "epoch": 29.964613368283093,
+ "grad_norm": 0.22432482242584229,
+ "learning_rate": 0.0006,
+ "loss": 3.7926344871520996,
+ "step": 2157
+ },
+ {
+ "epoch": 29.978593272171253,
+ "grad_norm": 0.2165718674659729,
+ "learning_rate": 0.0006,
+ "loss": 3.7436647415161133,
+ "step": 2158
+ },
+ {
+ "epoch": 29.992573176059416,
+ "grad_norm": 0.20629167556762695,
+ "learning_rate": 0.0006,
+ "loss": 3.7619552612304688,
+ "step": 2159
+ },
+ {
+ "epoch": 30.0,
+ "grad_norm": 0.24264708161354065,
+ "learning_rate": 0.0006,
+ "loss": 3.772679328918457,
+ "step": 2160
+ },
+ {
+ "epoch": 30.0,
+ "eval_loss": 4.024484634399414,
+ "eval_runtime": 44.3611,
+ "eval_samples_per_second": 55.048,
+ "eval_steps_per_second": 3.449,
+ "step": 2160
+ },
+ {
+ "epoch": 30.01397990388816,
+ "grad_norm": 0.2373432070016861,
+ "learning_rate": 0.0006,
+ "loss": 3.7423200607299805,
+ "step": 2161
+ },
+ {
+ "epoch": 30.027959807776323,
+ "grad_norm": 0.26835134625434875,
+ "learning_rate": 0.0006,
+ "loss": 3.7215471267700195,
+ "step": 2162
+ },
+ {
+ "epoch": 30.041939711664483,
+ "grad_norm": 0.2743220329284668,
+ "learning_rate": 0.0006,
+ "loss": 3.7190256118774414,
+ "step": 2163
+ },
+ {
+ "epoch": 30.055919615552643,
+ "grad_norm": 0.2292490005493164,
+ "learning_rate": 0.0006,
+ "loss": 3.731855869293213,
+ "step": 2164
+ },
+ {
+ "epoch": 30.069899519440803,
+ "grad_norm": 0.22704607248306274,
+ "learning_rate": 0.0006,
+ "loss": 3.7649693489074707,
+ "step": 2165
+ },
+ {
+ "epoch": 30.083879423328966,
+ "grad_norm": 0.23255930840969086,
+ "learning_rate": 0.0006,
+ "loss": 3.7547781467437744,
+ "step": 2166
+ },
+ {
+ "epoch": 30.097859327217126,
+ "grad_norm": 0.2068684846162796,
+ "learning_rate": 0.0006,
+ "loss": 3.7343382835388184,
+ "step": 2167
+ },
+ {
+ "epoch": 30.111839231105286,
+ "grad_norm": 0.22523464262485504,
+ "learning_rate": 0.0006,
+ "loss": 3.7304530143737793,
+ "step": 2168
+ },
+ {
+ "epoch": 30.125819134993446,
+ "grad_norm": 0.24650199711322784,
+ "learning_rate": 0.0006,
+ "loss": 3.7414379119873047,
+ "step": 2169
+ },
+ {
+ "epoch": 30.13979903888161,
+ "grad_norm": 0.2392522394657135,
+ "learning_rate": 0.0006,
+ "loss": 3.754481792449951,
+ "step": 2170
+ },
+ {
+ "epoch": 30.15377894276977,
+ "grad_norm": 0.21174749732017517,
+ "learning_rate": 0.0006,
+ "loss": 3.7249929904937744,
+ "step": 2171
+ },
+ {
+ "epoch": 30.16775884665793,
+ "grad_norm": 0.20847836136817932,
+ "learning_rate": 0.0006,
+ "loss": 3.7146458625793457,
+ "step": 2172
+ },
+ {
+ "epoch": 30.18173875054609,
+ "grad_norm": 0.22131472826004028,
+ "learning_rate": 0.0006,
+ "loss": 3.7569539546966553,
+ "step": 2173
+ },
+ {
+ "epoch": 30.195718654434252,
+ "grad_norm": 0.23528096079826355,
+ "learning_rate": 0.0006,
+ "loss": 3.743435859680176,
+ "step": 2174
+ },
+ {
+ "epoch": 30.209698558322412,
+ "grad_norm": 0.2382429540157318,
+ "learning_rate": 0.0006,
+ "loss": 3.745307445526123,
+ "step": 2175
+ },
+ {
+ "epoch": 30.22367846221057,
+ "grad_norm": 0.2477114498615265,
+ "learning_rate": 0.0006,
+ "loss": 3.742305278778076,
+ "step": 2176
+ },
+ {
+ "epoch": 30.23765836609873,
+ "grad_norm": 0.24507801234722137,
+ "learning_rate": 0.0006,
+ "loss": 3.733564853668213,
+ "step": 2177
+ },
+ {
+ "epoch": 30.251638269986895,
+ "grad_norm": 0.2266329675912857,
+ "learning_rate": 0.0006,
+ "loss": 3.747429370880127,
+ "step": 2178
+ },
+ {
+ "epoch": 30.265618173875055,
+ "grad_norm": 0.22146396338939667,
+ "learning_rate": 0.0006,
+ "loss": 3.738630533218384,
+ "step": 2179
+ },
+ {
+ "epoch": 30.279598077763215,
+ "grad_norm": 0.20202279090881348,
+ "learning_rate": 0.0006,
+ "loss": 3.74582839012146,
+ "step": 2180
+ },
+ {
+ "epoch": 30.293577981651374,
+ "grad_norm": 0.20591886341571808,
+ "learning_rate": 0.0006,
+ "loss": 3.792062997817993,
+ "step": 2181
+ },
+ {
+ "epoch": 30.307557885539538,
+ "grad_norm": 0.21744129061698914,
+ "learning_rate": 0.0006,
+ "loss": 3.7389049530029297,
+ "step": 2182
+ },
+ {
+ "epoch": 30.321537789427698,
+ "grad_norm": 0.22641272842884064,
+ "learning_rate": 0.0006,
+ "loss": 3.756775140762329,
+ "step": 2183
+ },
+ {
+ "epoch": 30.335517693315857,
+ "grad_norm": 0.22433501482009888,
+ "learning_rate": 0.0006,
+ "loss": 3.764744758605957,
+ "step": 2184
+ },
+ {
+ "epoch": 30.34949759720402,
+ "grad_norm": 0.20184539258480072,
+ "learning_rate": 0.0006,
+ "loss": 3.747469902038574,
+ "step": 2185
+ },
+ {
+ "epoch": 30.36347750109218,
+ "grad_norm": 0.20864923298358917,
+ "learning_rate": 0.0006,
+ "loss": 3.7472925186157227,
+ "step": 2186
+ },
+ {
+ "epoch": 30.37745740498034,
+ "grad_norm": 0.22537396848201752,
+ "learning_rate": 0.0006,
+ "loss": 3.7194581031799316,
+ "step": 2187
+ },
+ {
+ "epoch": 30.3914373088685,
+ "grad_norm": 0.23159919679164886,
+ "learning_rate": 0.0006,
+ "loss": 3.7124292850494385,
+ "step": 2188
+ },
+ {
+ "epoch": 30.405417212756664,
+ "grad_norm": 0.24334494769573212,
+ "learning_rate": 0.0006,
+ "loss": 3.7769203186035156,
+ "step": 2189
+ },
+ {
+ "epoch": 30.419397116644824,
+ "grad_norm": 0.3031228482723236,
+ "learning_rate": 0.0006,
+ "loss": 3.762169361114502,
+ "step": 2190
+ },
+ {
+ "epoch": 30.433377020532983,
+ "grad_norm": 0.29114583134651184,
+ "learning_rate": 0.0006,
+ "loss": 3.76554799079895,
+ "step": 2191
+ },
+ {
+ "epoch": 30.447356924421143,
+ "grad_norm": 0.26824963092803955,
+ "learning_rate": 0.0006,
+ "loss": 3.732962131500244,
+ "step": 2192
+ },
+ {
+ "epoch": 30.461336828309307,
+ "grad_norm": 0.3026561141014099,
+ "learning_rate": 0.0006,
+ "loss": 3.7567975521087646,
+ "step": 2193
+ },
+ {
+ "epoch": 30.475316732197467,
+ "grad_norm": 0.27224525809288025,
+ "learning_rate": 0.0006,
+ "loss": 3.7856051921844482,
+ "step": 2194
+ },
+ {
+ "epoch": 30.489296636085626,
+ "grad_norm": 0.24295508861541748,
+ "learning_rate": 0.0006,
+ "loss": 3.7514901161193848,
+ "step": 2195
+ },
+ {
+ "epoch": 30.503276539973786,
+ "grad_norm": 0.24435290694236755,
+ "learning_rate": 0.0006,
+ "loss": 3.715973138809204,
+ "step": 2196
+ },
+ {
+ "epoch": 30.51725644386195,
+ "grad_norm": 0.2298959195613861,
+ "learning_rate": 0.0006,
+ "loss": 3.7960405349731445,
+ "step": 2197
+ },
+ {
+ "epoch": 30.53123634775011,
+ "grad_norm": 0.20313066244125366,
+ "learning_rate": 0.0006,
+ "loss": 3.7377915382385254,
+ "step": 2198
+ },
+ {
+ "epoch": 30.54521625163827,
+ "grad_norm": 0.2018895149230957,
+ "learning_rate": 0.0006,
+ "loss": 3.6980559825897217,
+ "step": 2199
+ },
+ {
+ "epoch": 30.55919615552643,
+ "grad_norm": 0.20048382878303528,
+ "learning_rate": 0.0006,
+ "loss": 3.7474141120910645,
+ "step": 2200
+ },
+ {
+ "epoch": 30.573176059414592,
+ "grad_norm": 0.19821316003799438,
+ "learning_rate": 0.0006,
+ "loss": 3.7668564319610596,
+ "step": 2201
+ },
+ {
+ "epoch": 30.587155963302752,
+ "grad_norm": 0.21467992663383484,
+ "learning_rate": 0.0006,
+ "loss": 3.7636144161224365,
+ "step": 2202
+ },
+ {
+ "epoch": 30.601135867190912,
+ "grad_norm": 0.20192000269889832,
+ "learning_rate": 0.0006,
+ "loss": 3.745736837387085,
+ "step": 2203
+ },
+ {
+ "epoch": 30.615115771079076,
+ "grad_norm": 0.2078823447227478,
+ "learning_rate": 0.0006,
+ "loss": 3.726665496826172,
+ "step": 2204
+ },
+ {
+ "epoch": 30.629095674967235,
+ "grad_norm": 0.22535845637321472,
+ "learning_rate": 0.0006,
+ "loss": 3.745058059692383,
+ "step": 2205
+ },
+ {
+ "epoch": 30.643075578855395,
+ "grad_norm": 0.22277814149856567,
+ "learning_rate": 0.0006,
+ "loss": 3.7488319873809814,
+ "step": 2206
+ },
+ {
+ "epoch": 30.657055482743555,
+ "grad_norm": 0.20940838754177094,
+ "learning_rate": 0.0006,
+ "loss": 3.7395732402801514,
+ "step": 2207
+ },
+ {
+ "epoch": 30.67103538663172,
+ "grad_norm": 0.21384629607200623,
+ "learning_rate": 0.0006,
+ "loss": 3.7275657653808594,
+ "step": 2208
+ },
+ {
+ "epoch": 30.68501529051988,
+ "grad_norm": 0.18796643614768982,
+ "learning_rate": 0.0006,
+ "loss": 3.743420124053955,
+ "step": 2209
+ },
+ {
+ "epoch": 30.698995194408038,
+ "grad_norm": 0.213258296251297,
+ "learning_rate": 0.0006,
+ "loss": 3.7227492332458496,
+ "step": 2210
+ },
+ {
+ "epoch": 30.712975098296198,
+ "grad_norm": 0.22714753448963165,
+ "learning_rate": 0.0006,
+ "loss": 3.7301113605499268,
+ "step": 2211
+ },
+ {
+ "epoch": 30.72695500218436,
+ "grad_norm": 0.21657656133174896,
+ "learning_rate": 0.0006,
+ "loss": 3.7336206436157227,
+ "step": 2212
+ },
+ {
+ "epoch": 30.74093490607252,
+ "grad_norm": 0.19550828635692596,
+ "learning_rate": 0.0006,
+ "loss": 3.7367351055145264,
+ "step": 2213
+ },
+ {
+ "epoch": 30.75491480996068,
+ "grad_norm": 0.17011769115924835,
+ "learning_rate": 0.0006,
+ "loss": 3.7401928901672363,
+ "step": 2214
+ },
+ {
+ "epoch": 30.76889471384884,
+ "grad_norm": 0.19110196828842163,
+ "learning_rate": 0.0006,
+ "loss": 3.7496562004089355,
+ "step": 2215
+ },
+ {
+ "epoch": 30.782874617737004,
+ "grad_norm": 0.20054543018341064,
+ "learning_rate": 0.0006,
+ "loss": 3.7532992362976074,
+ "step": 2216
+ },
+ {
+ "epoch": 30.796854521625164,
+ "grad_norm": 0.20667670667171478,
+ "learning_rate": 0.0006,
+ "loss": 3.746974468231201,
+ "step": 2217
+ },
+ {
+ "epoch": 30.810834425513324,
+ "grad_norm": 0.19850662350654602,
+ "learning_rate": 0.0006,
+ "loss": 3.7566256523132324,
+ "step": 2218
+ },
+ {
+ "epoch": 30.824814329401484,
+ "grad_norm": 0.19666457176208496,
+ "learning_rate": 0.0006,
+ "loss": 3.7356925010681152,
+ "step": 2219
+ },
+ {
+ "epoch": 30.838794233289647,
+ "grad_norm": 0.20022115111351013,
+ "learning_rate": 0.0006,
+ "loss": 3.768794536590576,
+ "step": 2220
+ },
+ {
+ "epoch": 30.852774137177807,
+ "grad_norm": 0.225278839468956,
+ "learning_rate": 0.0006,
+ "loss": 3.730262279510498,
+ "step": 2221
+ },
+ {
+ "epoch": 30.866754041065967,
+ "grad_norm": 0.2155608832836151,
+ "learning_rate": 0.0006,
+ "loss": 3.758157968521118,
+ "step": 2222
+ },
+ {
+ "epoch": 30.88073394495413,
+ "grad_norm": 0.20914921164512634,
+ "learning_rate": 0.0006,
+ "loss": 3.7290844917297363,
+ "step": 2223
+ },
+ {
+ "epoch": 30.89471384884229,
+ "grad_norm": 0.21579554677009583,
+ "learning_rate": 0.0006,
+ "loss": 3.7666125297546387,
+ "step": 2224
+ },
+ {
+ "epoch": 30.90869375273045,
+ "grad_norm": 0.22606384754180908,
+ "learning_rate": 0.0006,
+ "loss": 3.7396788597106934,
+ "step": 2225
+ },
+ {
+ "epoch": 30.92267365661861,
+ "grad_norm": 0.22218658030033112,
+ "learning_rate": 0.0006,
+ "loss": 3.7363057136535645,
+ "step": 2226
+ },
+ {
+ "epoch": 30.936653560506773,
+ "grad_norm": 0.2107125222682953,
+ "learning_rate": 0.0006,
+ "loss": 3.7402844429016113,
+ "step": 2227
+ },
+ {
+ "epoch": 30.950633464394933,
+ "grad_norm": 0.2143280804157257,
+ "learning_rate": 0.0006,
+ "loss": 3.7715706825256348,
+ "step": 2228
+ },
+ {
+ "epoch": 30.964613368283093,
+ "grad_norm": 0.20918118953704834,
+ "learning_rate": 0.0006,
+ "loss": 3.783510446548462,
+ "step": 2229
+ },
+ {
+ "epoch": 30.978593272171253,
+ "grad_norm": 0.2184133678674698,
+ "learning_rate": 0.0006,
+ "loss": 3.729846954345703,
+ "step": 2230
+ },
+ {
+ "epoch": 30.992573176059416,
+ "grad_norm": 0.20314796268939972,
+ "learning_rate": 0.0006,
+ "loss": 3.753312110900879,
+ "step": 2231
+ },
+ {
+ "epoch": 31.0,
+ "grad_norm": 0.21582408249378204,
+ "learning_rate": 0.0006,
+ "loss": 3.7653090953826904,
+ "step": 2232
+ },
+ {
+ "epoch": 31.0,
+ "eval_loss": 4.030437469482422,
+ "eval_runtime": 43.8529,
+ "eval_samples_per_second": 55.686,
+ "eval_steps_per_second": 3.489,
+ "step": 2232
+ },
+ {
+ "epoch": 31.01397990388816,
+ "grad_norm": 0.214233860373497,
+ "learning_rate": 0.0006,
+ "loss": 3.7179880142211914,
+ "step": 2233
+ },
+ {
+ "epoch": 31.027959807776323,
+ "grad_norm": 0.24621504545211792,
+ "learning_rate": 0.0006,
+ "loss": 3.712569236755371,
+ "step": 2234
+ },
+ {
+ "epoch": 31.041939711664483,
+ "grad_norm": 0.24189279973506927,
+ "learning_rate": 0.0006,
+ "loss": 3.7503058910369873,
+ "step": 2235
+ },
+ {
+ "epoch": 31.055919615552643,
+ "grad_norm": 0.22872278094291687,
+ "learning_rate": 0.0006,
+ "loss": 3.7386386394500732,
+ "step": 2236
+ },
+ {
+ "epoch": 31.069899519440803,
+ "grad_norm": 0.25036823749542236,
+ "learning_rate": 0.0006,
+ "loss": 3.710566997528076,
+ "step": 2237
+ },
+ {
+ "epoch": 31.083879423328966,
+ "grad_norm": 0.2506193220615387,
+ "learning_rate": 0.0006,
+ "loss": 3.7270963191986084,
+ "step": 2238
+ },
+ {
+ "epoch": 31.097859327217126,
+ "grad_norm": 0.24819663166999817,
+ "learning_rate": 0.0006,
+ "loss": 3.716430425643921,
+ "step": 2239
+ },
+ {
+ "epoch": 31.111839231105286,
+ "grad_norm": 0.27226534485816956,
+ "learning_rate": 0.0006,
+ "loss": 3.704428195953369,
+ "step": 2240
+ },
+ {
+ "epoch": 31.125819134993446,
+ "grad_norm": 0.27718204259872437,
+ "learning_rate": 0.0006,
+ "loss": 3.7309701442718506,
+ "step": 2241
+ },
+ {
+ "epoch": 31.13979903888161,
+ "grad_norm": 0.27272021770477295,
+ "learning_rate": 0.0006,
+ "loss": 3.7325143814086914,
+ "step": 2242
+ },
+ {
+ "epoch": 31.15377894276977,
+ "grad_norm": 0.2666020095348358,
+ "learning_rate": 0.0006,
+ "loss": 3.715268611907959,
+ "step": 2243
+ },
+ {
+ "epoch": 31.16775884665793,
+ "grad_norm": 0.258543461561203,
+ "learning_rate": 0.0006,
+ "loss": 3.7336134910583496,
+ "step": 2244
+ },
+ {
+ "epoch": 31.18173875054609,
+ "grad_norm": 0.2528740167617798,
+ "learning_rate": 0.0006,
+ "loss": 3.724491596221924,
+ "step": 2245
+ },
+ {
+ "epoch": 31.195718654434252,
+ "grad_norm": 0.2659667730331421,
+ "learning_rate": 0.0006,
+ "loss": 3.7144742012023926,
+ "step": 2246
+ },
+ {
+ "epoch": 31.209698558322412,
+ "grad_norm": 0.26563164591789246,
+ "learning_rate": 0.0006,
+ "loss": 3.741182327270508,
+ "step": 2247
+ },
+ {
+ "epoch": 31.22367846221057,
+ "grad_norm": 0.26326918601989746,
+ "learning_rate": 0.0006,
+ "loss": 3.7306275367736816,
+ "step": 2248
+ },
+ {
+ "epoch": 31.23765836609873,
+ "grad_norm": 0.23020948469638824,
+ "learning_rate": 0.0006,
+ "loss": 3.7212486267089844,
+ "step": 2249
+ },
+ {
+ "epoch": 31.251638269986895,
+ "grad_norm": 0.21207433938980103,
+ "learning_rate": 0.0006,
+ "loss": 3.6914258003234863,
+ "step": 2250
+ },
+ {
+ "epoch": 31.265618173875055,
+ "grad_norm": 0.2392292022705078,
+ "learning_rate": 0.0006,
+ "loss": 3.7117457389831543,
+ "step": 2251
+ },
+ {
+ "epoch": 31.279598077763215,
+ "grad_norm": 0.22084997594356537,
+ "learning_rate": 0.0006,
+ "loss": 3.728043794631958,
+ "step": 2252
+ },
+ {
+ "epoch": 31.293577981651374,
+ "grad_norm": 0.20818188786506653,
+ "learning_rate": 0.0006,
+ "loss": 3.751762866973877,
+ "step": 2253
+ },
+ {
+ "epoch": 31.307557885539538,
+ "grad_norm": 0.21866194903850555,
+ "learning_rate": 0.0006,
+ "loss": 3.72676420211792,
+ "step": 2254
+ },
+ {
+ "epoch": 31.321537789427698,
+ "grad_norm": 0.20727522671222687,
+ "learning_rate": 0.0006,
+ "loss": 3.735708236694336,
+ "step": 2255
+ },
+ {
+ "epoch": 31.335517693315857,
+ "grad_norm": 0.20655220746994019,
+ "learning_rate": 0.0006,
+ "loss": 3.714116096496582,
+ "step": 2256
+ },
+ {
+ "epoch": 31.34949759720402,
+ "grad_norm": 0.21738854050636292,
+ "learning_rate": 0.0006,
+ "loss": 3.731657028198242,
+ "step": 2257
+ },
+ {
+ "epoch": 31.36347750109218,
+ "grad_norm": 0.20758475363254547,
+ "learning_rate": 0.0006,
+ "loss": 3.7378528118133545,
+ "step": 2258
+ },
+ {
+ "epoch": 31.37745740498034,
+ "grad_norm": 0.20107139647006989,
+ "learning_rate": 0.0006,
+ "loss": 3.748572826385498,
+ "step": 2259
+ },
+ {
+ "epoch": 31.3914373088685,
+ "grad_norm": 0.18707452714443207,
+ "learning_rate": 0.0006,
+ "loss": 3.7237391471862793,
+ "step": 2260
+ },
+ {
+ "epoch": 31.405417212756664,
+ "grad_norm": 0.20745301246643066,
+ "learning_rate": 0.0006,
+ "loss": 3.734435558319092,
+ "step": 2261
+ },
+ {
+ "epoch": 31.419397116644824,
+ "grad_norm": 0.20793399214744568,
+ "learning_rate": 0.0006,
+ "loss": 3.7639012336730957,
+ "step": 2262
+ },
+ {
+ "epoch": 31.433377020532983,
+ "grad_norm": 0.20193757116794586,
+ "learning_rate": 0.0006,
+ "loss": 3.754117727279663,
+ "step": 2263
+ },
+ {
+ "epoch": 31.447356924421143,
+ "grad_norm": 0.1912323236465454,
+ "learning_rate": 0.0006,
+ "loss": 3.728111982345581,
+ "step": 2264
+ },
+ {
+ "epoch": 31.461336828309307,
+ "grad_norm": 0.19441582262516022,
+ "learning_rate": 0.0006,
+ "loss": 3.7533278465270996,
+ "step": 2265
+ },
+ {
+ "epoch": 31.475316732197467,
+ "grad_norm": 0.19807079434394836,
+ "learning_rate": 0.0006,
+ "loss": 3.7351698875427246,
+ "step": 2266
+ },
+ {
+ "epoch": 31.489296636085626,
+ "grad_norm": 0.20373263955116272,
+ "learning_rate": 0.0006,
+ "loss": 3.714097023010254,
+ "step": 2267
+ },
+ {
+ "epoch": 31.503276539973786,
+ "grad_norm": 0.21868768334388733,
+ "learning_rate": 0.0006,
+ "loss": 3.736743688583374,
+ "step": 2268
+ },
+ {
+ "epoch": 31.51725644386195,
+ "grad_norm": 0.20767922699451447,
+ "learning_rate": 0.0006,
+ "loss": 3.7097702026367188,
+ "step": 2269
+ },
+ {
+ "epoch": 31.53123634775011,
+ "grad_norm": 0.18425600230693817,
+ "learning_rate": 0.0006,
+ "loss": 3.7349140644073486,
+ "step": 2270
+ },
+ {
+ "epoch": 31.54521625163827,
+ "grad_norm": 0.18813826143741608,
+ "learning_rate": 0.0006,
+ "loss": 3.7023448944091797,
+ "step": 2271
+ },
+ {
+ "epoch": 31.55919615552643,
+ "grad_norm": 0.1892116516828537,
+ "learning_rate": 0.0006,
+ "loss": 3.7170143127441406,
+ "step": 2272
+ },
+ {
+ "epoch": 31.573176059414592,
+ "grad_norm": 0.2067834585905075,
+ "learning_rate": 0.0006,
+ "loss": 3.7312588691711426,
+ "step": 2273
+ },
+ {
+ "epoch": 31.587155963302752,
+ "grad_norm": 0.204023078083992,
+ "learning_rate": 0.0006,
+ "loss": 3.7399091720581055,
+ "step": 2274
+ },
+ {
+ "epoch": 31.601135867190912,
+ "grad_norm": 0.20245152711868286,
+ "learning_rate": 0.0006,
+ "loss": 3.7259416580200195,
+ "step": 2275
+ },
+ {
+ "epoch": 31.615115771079076,
+ "grad_norm": 0.21125490963459015,
+ "learning_rate": 0.0006,
+ "loss": 3.7217836380004883,
+ "step": 2276
+ },
+ {
+ "epoch": 31.629095674967235,
+ "grad_norm": 0.2093241959810257,
+ "learning_rate": 0.0006,
+ "loss": 3.707627773284912,
+ "step": 2277
+ },
+ {
+ "epoch": 31.643075578855395,
+ "grad_norm": 0.19290480017662048,
+ "learning_rate": 0.0006,
+ "loss": 3.7467126846313477,
+ "step": 2278
+ },
+ {
+ "epoch": 31.657055482743555,
+ "grad_norm": 0.1853940635919571,
+ "learning_rate": 0.0006,
+ "loss": 3.7565581798553467,
+ "step": 2279
+ },
+ {
+ "epoch": 31.67103538663172,
+ "grad_norm": 0.18917642533779144,
+ "learning_rate": 0.0006,
+ "loss": 3.7286229133605957,
+ "step": 2280
+ },
+ {
+ "epoch": 31.68501529051988,
+ "grad_norm": 0.2094079703092575,
+ "learning_rate": 0.0006,
+ "loss": 3.7297096252441406,
+ "step": 2281
+ },
+ {
+ "epoch": 31.698995194408038,
+ "grad_norm": 0.20020027458667755,
+ "learning_rate": 0.0006,
+ "loss": 3.7565250396728516,
+ "step": 2282
+ },
+ {
+ "epoch": 31.712975098296198,
+ "grad_norm": 0.19156186282634735,
+ "learning_rate": 0.0006,
+ "loss": 3.7401509284973145,
+ "step": 2283
+ },
+ {
+ "epoch": 31.72695500218436,
+ "grad_norm": 0.19176368415355682,
+ "learning_rate": 0.0006,
+ "loss": 3.751206398010254,
+ "step": 2284
+ },
+ {
+ "epoch": 31.74093490607252,
+ "grad_norm": 0.18351277709007263,
+ "learning_rate": 0.0006,
+ "loss": 3.752984046936035,
+ "step": 2285
+ },
+ {
+ "epoch": 31.75491480996068,
+ "grad_norm": 0.1879221349954605,
+ "learning_rate": 0.0006,
+ "loss": 3.7156834602355957,
+ "step": 2286
+ },
+ {
+ "epoch": 31.76889471384884,
+ "grad_norm": 0.19232559204101562,
+ "learning_rate": 0.0006,
+ "loss": 3.732879638671875,
+ "step": 2287
+ },
+ {
+ "epoch": 31.782874617737004,
+ "grad_norm": 0.18484069406986237,
+ "learning_rate": 0.0006,
+ "loss": 3.7489013671875,
+ "step": 2288
+ },
+ {
+ "epoch": 31.796854521625164,
+ "grad_norm": 0.20705144107341766,
+ "learning_rate": 0.0006,
+ "loss": 3.7214112281799316,
+ "step": 2289
+ },
+ {
+ "epoch": 31.810834425513324,
+ "grad_norm": 0.23424774408340454,
+ "learning_rate": 0.0006,
+ "loss": 3.714550256729126,
+ "step": 2290
+ },
+ {
+ "epoch": 31.824814329401484,
+ "grad_norm": 0.24061693251132965,
+ "learning_rate": 0.0006,
+ "loss": 3.717336654663086,
+ "step": 2291
+ },
+ {
+ "epoch": 31.838794233289647,
+ "grad_norm": 0.23156678676605225,
+ "learning_rate": 0.0006,
+ "loss": 3.7345399856567383,
+ "step": 2292
+ },
+ {
+ "epoch": 31.852774137177807,
+ "grad_norm": 0.2256302684545517,
+ "learning_rate": 0.0006,
+ "loss": 3.7596092224121094,
+ "step": 2293
+ },
+ {
+ "epoch": 31.866754041065967,
+ "grad_norm": 0.2118781954050064,
+ "learning_rate": 0.0006,
+ "loss": 3.725433588027954,
+ "step": 2294
+ },
+ {
+ "epoch": 31.88073394495413,
+ "grad_norm": 0.1874573826789856,
+ "learning_rate": 0.0006,
+ "loss": 3.738901138305664,
+ "step": 2295
+ },
+ {
+ "epoch": 31.89471384884229,
+ "grad_norm": 0.2062024176120758,
+ "learning_rate": 0.0006,
+ "loss": 3.7439217567443848,
+ "step": 2296
+ },
+ {
+ "epoch": 31.90869375273045,
+ "grad_norm": 0.19886671006679535,
+ "learning_rate": 0.0006,
+ "loss": 3.7583155632019043,
+ "step": 2297
+ },
+ {
+ "epoch": 31.92267365661861,
+ "grad_norm": 0.2079734355211258,
+ "learning_rate": 0.0006,
+ "loss": 3.7251501083374023,
+ "step": 2298
+ },
+ {
+ "epoch": 31.936653560506773,
+ "grad_norm": 0.19710204005241394,
+ "learning_rate": 0.0006,
+ "loss": 3.765778064727783,
+ "step": 2299
+ },
+ {
+ "epoch": 31.950633464394933,
+ "grad_norm": 0.1949392408132553,
+ "learning_rate": 0.0006,
+ "loss": 3.7634787559509277,
+ "step": 2300
+ },
+ {
+ "epoch": 31.964613368283093,
+ "grad_norm": 0.21466250717639923,
+ "learning_rate": 0.0006,
+ "loss": 3.7673215866088867,
+ "step": 2301
+ },
+ {
+ "epoch": 31.978593272171253,
+ "grad_norm": 0.21624267101287842,
+ "learning_rate": 0.0006,
+ "loss": 3.7617220878601074,
+ "step": 2302
+ },
+ {
+ "epoch": 31.992573176059416,
+ "grad_norm": 0.22880229353904724,
+ "learning_rate": 0.0006,
+ "loss": 3.7190351486206055,
+ "step": 2303
+ },
+ {
+ "epoch": 32.0,
+ "grad_norm": 0.23227518796920776,
+ "learning_rate": 0.0006,
+ "loss": 3.740169048309326,
+ "step": 2304
+ },
+ {
+ "epoch": 32.0,
+ "eval_loss": 4.017981052398682,
+ "eval_runtime": 44.4134,
+ "eval_samples_per_second": 54.983,
+ "eval_steps_per_second": 3.445,
+ "step": 2304
+ },
+ {
+ "epoch": 32.01397990388816,
+ "grad_norm": 0.1893721967935562,
+ "learning_rate": 0.0006,
+ "loss": 3.71738338470459,
+ "step": 2305
+ },
+ {
+ "epoch": 32.02795980777632,
+ "grad_norm": 0.23771171271800995,
+ "learning_rate": 0.0006,
+ "loss": 3.71402645111084,
+ "step": 2306
+ },
+ {
+ "epoch": 32.04193971166448,
+ "grad_norm": 0.26343807578086853,
+ "learning_rate": 0.0006,
+ "loss": 3.6926395893096924,
+ "step": 2307
+ },
+ {
+ "epoch": 32.05591961555265,
+ "grad_norm": 0.25092509388923645,
+ "learning_rate": 0.0006,
+ "loss": 3.715243339538574,
+ "step": 2308
+ },
+ {
+ "epoch": 32.0698995194408,
+ "grad_norm": 0.23148509860038757,
+ "learning_rate": 0.0006,
+ "loss": 3.690734386444092,
+ "step": 2309
+ },
+ {
+ "epoch": 32.083879423328966,
+ "grad_norm": 0.23314623534679413,
+ "learning_rate": 0.0006,
+ "loss": 3.6980109214782715,
+ "step": 2310
+ },
+ {
+ "epoch": 32.09785932721712,
+ "grad_norm": 0.2210417091846466,
+ "learning_rate": 0.0006,
+ "loss": 3.7395730018615723,
+ "step": 2311
+ },
+ {
+ "epoch": 32.111839231105286,
+ "grad_norm": 0.20263685286045074,
+ "learning_rate": 0.0006,
+ "loss": 3.678412914276123,
+ "step": 2312
+ },
+ {
+ "epoch": 32.12581913499345,
+ "grad_norm": 0.20412251353263855,
+ "learning_rate": 0.0006,
+ "loss": 3.688762903213501,
+ "step": 2313
+ },
+ {
+ "epoch": 32.139799038881605,
+ "grad_norm": 0.2041679322719574,
+ "learning_rate": 0.0006,
+ "loss": 3.7231521606445312,
+ "step": 2314
+ },
+ {
+ "epoch": 32.15377894276977,
+ "grad_norm": 0.23270174860954285,
+ "learning_rate": 0.0006,
+ "loss": 3.7102620601654053,
+ "step": 2315
+ },
+ {
+ "epoch": 32.16775884665793,
+ "grad_norm": 0.25470519065856934,
+ "learning_rate": 0.0006,
+ "loss": 3.7353053092956543,
+ "step": 2316
+ },
+ {
+ "epoch": 32.18173875054609,
+ "grad_norm": 0.2930106222629547,
+ "learning_rate": 0.0006,
+ "loss": 3.7418713569641113,
+ "step": 2317
+ },
+ {
+ "epoch": 32.19571865443425,
+ "grad_norm": 0.3181219696998596,
+ "learning_rate": 0.0006,
+ "loss": 3.6716184616088867,
+ "step": 2318
+ },
+ {
+ "epoch": 32.20969855832241,
+ "grad_norm": 0.2752978801727295,
+ "learning_rate": 0.0006,
+ "loss": 3.70334792137146,
+ "step": 2319
+ },
+ {
+ "epoch": 32.22367846221057,
+ "grad_norm": 0.28381186723709106,
+ "learning_rate": 0.0006,
+ "loss": 3.719794750213623,
+ "step": 2320
+ },
+ {
+ "epoch": 32.237658366098735,
+ "grad_norm": 0.3287750482559204,
+ "learning_rate": 0.0006,
+ "loss": 3.7363362312316895,
+ "step": 2321
+ },
+ {
+ "epoch": 32.25163826998689,
+ "grad_norm": 0.32669803500175476,
+ "learning_rate": 0.0006,
+ "loss": 3.739394426345825,
+ "step": 2322
+ },
+ {
+ "epoch": 32.265618173875055,
+ "grad_norm": 0.27423885464668274,
+ "learning_rate": 0.0006,
+ "loss": 3.7381205558776855,
+ "step": 2323
+ },
+ {
+ "epoch": 32.27959807776322,
+ "grad_norm": 0.2594660818576813,
+ "learning_rate": 0.0006,
+ "loss": 3.698683738708496,
+ "step": 2324
+ },
+ {
+ "epoch": 32.293577981651374,
+ "grad_norm": 0.2785511016845703,
+ "learning_rate": 0.0006,
+ "loss": 3.688774824142456,
+ "step": 2325
+ },
+ {
+ "epoch": 32.30755788553954,
+ "grad_norm": 0.2690320611000061,
+ "learning_rate": 0.0006,
+ "loss": 3.7209150791168213,
+ "step": 2326
+ },
+ {
+ "epoch": 32.3215377894277,
+ "grad_norm": 0.23331770300865173,
+ "learning_rate": 0.0006,
+ "loss": 3.682931423187256,
+ "step": 2327
+ },
+ {
+ "epoch": 32.33551769331586,
+ "grad_norm": 0.22380802035331726,
+ "learning_rate": 0.0006,
+ "loss": 3.720445156097412,
+ "step": 2328
+ },
+ {
+ "epoch": 32.34949759720402,
+ "grad_norm": 0.2065964937210083,
+ "learning_rate": 0.0006,
+ "loss": 3.705427885055542,
+ "step": 2329
+ },
+ {
+ "epoch": 32.36347750109218,
+ "grad_norm": 0.20701853930950165,
+ "learning_rate": 0.0006,
+ "loss": 3.7078697681427,
+ "step": 2330
+ },
+ {
+ "epoch": 32.37745740498034,
+ "grad_norm": 0.2063559591770172,
+ "learning_rate": 0.0006,
+ "loss": 3.745004653930664,
+ "step": 2331
+ },
+ {
+ "epoch": 32.391437308868504,
+ "grad_norm": 0.19377011060714722,
+ "learning_rate": 0.0006,
+ "loss": 3.713808059692383,
+ "step": 2332
+ },
+ {
+ "epoch": 32.40541721275666,
+ "grad_norm": 0.19260725378990173,
+ "learning_rate": 0.0006,
+ "loss": 3.717043876647949,
+ "step": 2333
+ },
+ {
+ "epoch": 32.419397116644824,
+ "grad_norm": 0.20792821049690247,
+ "learning_rate": 0.0006,
+ "loss": 3.68632173538208,
+ "step": 2334
+ },
+ {
+ "epoch": 32.43337702053299,
+ "grad_norm": 0.22278444468975067,
+ "learning_rate": 0.0006,
+ "loss": 3.7345821857452393,
+ "step": 2335
+ },
+ {
+ "epoch": 32.44735692442114,
+ "grad_norm": 0.22533579170703888,
+ "learning_rate": 0.0006,
+ "loss": 3.7224173545837402,
+ "step": 2336
+ },
+ {
+ "epoch": 32.46133682830931,
+ "grad_norm": 0.20228394865989685,
+ "learning_rate": 0.0006,
+ "loss": 3.748530149459839,
+ "step": 2337
+ },
+ {
+ "epoch": 32.47531673219746,
+ "grad_norm": 0.19944614171981812,
+ "learning_rate": 0.0006,
+ "loss": 3.707085371017456,
+ "step": 2338
+ },
+ {
+ "epoch": 32.489296636085626,
+ "grad_norm": 0.19856145977973938,
+ "learning_rate": 0.0006,
+ "loss": 3.6898274421691895,
+ "step": 2339
+ },
+ {
+ "epoch": 32.50327653997379,
+ "grad_norm": 0.20734605193138123,
+ "learning_rate": 0.0006,
+ "loss": 3.7511792182922363,
+ "step": 2340
+ },
+ {
+ "epoch": 32.517256443861946,
+ "grad_norm": 0.19489309191703796,
+ "learning_rate": 0.0006,
+ "loss": 3.736445426940918,
+ "step": 2341
+ },
+ {
+ "epoch": 32.53123634775011,
+ "grad_norm": 0.18899282813072205,
+ "learning_rate": 0.0006,
+ "loss": 3.727325916290283,
+ "step": 2342
+ },
+ {
+ "epoch": 32.54521625163827,
+ "grad_norm": 0.19670401513576508,
+ "learning_rate": 0.0006,
+ "loss": 3.7326102256774902,
+ "step": 2343
+ },
+ {
+ "epoch": 32.55919615552643,
+ "grad_norm": 0.20061780512332916,
+ "learning_rate": 0.0006,
+ "loss": 3.698716402053833,
+ "step": 2344
+ },
+ {
+ "epoch": 32.57317605941459,
+ "grad_norm": 0.1991659700870514,
+ "learning_rate": 0.0006,
+ "loss": 3.6913180351257324,
+ "step": 2345
+ },
+ {
+ "epoch": 32.58715596330275,
+ "grad_norm": 0.18856225907802582,
+ "learning_rate": 0.0006,
+ "loss": 3.7130961418151855,
+ "step": 2346
+ },
+ {
+ "epoch": 32.60113586719091,
+ "grad_norm": 0.1983972191810608,
+ "learning_rate": 0.0006,
+ "loss": 3.7530808448791504,
+ "step": 2347
+ },
+ {
+ "epoch": 32.615115771079076,
+ "grad_norm": 0.2037997543811798,
+ "learning_rate": 0.0006,
+ "loss": 3.7076587677001953,
+ "step": 2348
+ },
+ {
+ "epoch": 32.62909567496723,
+ "grad_norm": 0.21008458733558655,
+ "learning_rate": 0.0006,
+ "loss": 3.7379021644592285,
+ "step": 2349
+ },
+ {
+ "epoch": 32.643075578855395,
+ "grad_norm": 0.2129313349723816,
+ "learning_rate": 0.0006,
+ "loss": 3.7031373977661133,
+ "step": 2350
+ },
+ {
+ "epoch": 32.65705548274356,
+ "grad_norm": 0.18756245076656342,
+ "learning_rate": 0.0006,
+ "loss": 3.7066285610198975,
+ "step": 2351
+ },
+ {
+ "epoch": 32.671035386631715,
+ "grad_norm": 0.17946591973304749,
+ "learning_rate": 0.0006,
+ "loss": 3.73781681060791,
+ "step": 2352
+ },
+ {
+ "epoch": 32.68501529051988,
+ "grad_norm": 0.18983198702335358,
+ "learning_rate": 0.0006,
+ "loss": 3.718855381011963,
+ "step": 2353
+ },
+ {
+ "epoch": 32.69899519440804,
+ "grad_norm": 0.2080942839384079,
+ "learning_rate": 0.0006,
+ "loss": 3.7111258506774902,
+ "step": 2354
+ },
+ {
+ "epoch": 32.7129750982962,
+ "grad_norm": 0.23633413016796112,
+ "learning_rate": 0.0006,
+ "loss": 3.709766149520874,
+ "step": 2355
+ },
+ {
+ "epoch": 32.72695500218436,
+ "grad_norm": 0.2723144590854645,
+ "learning_rate": 0.0006,
+ "loss": 3.745850086212158,
+ "step": 2356
+ },
+ {
+ "epoch": 32.74093490607252,
+ "grad_norm": 0.29774025082588196,
+ "learning_rate": 0.0006,
+ "loss": 3.733771324157715,
+ "step": 2357
+ },
+ {
+ "epoch": 32.75491480996068,
+ "grad_norm": 0.25976699590682983,
+ "learning_rate": 0.0006,
+ "loss": 3.734194278717041,
+ "step": 2358
+ },
+ {
+ "epoch": 32.768894713848844,
+ "grad_norm": 0.20038039982318878,
+ "learning_rate": 0.0006,
+ "loss": 3.735656261444092,
+ "step": 2359
+ },
+ {
+ "epoch": 32.782874617737,
+ "grad_norm": 0.19745637476444244,
+ "learning_rate": 0.0006,
+ "loss": 3.7335894107818604,
+ "step": 2360
+ },
+ {
+ "epoch": 32.796854521625164,
+ "grad_norm": 0.22022396326065063,
+ "learning_rate": 0.0006,
+ "loss": 3.708998680114746,
+ "step": 2361
+ },
+ {
+ "epoch": 32.81083442551333,
+ "grad_norm": 0.24754752218723297,
+ "learning_rate": 0.0006,
+ "loss": 3.7616286277770996,
+ "step": 2362
+ },
+ {
+ "epoch": 32.824814329401484,
+ "grad_norm": 0.26438358426094055,
+ "learning_rate": 0.0006,
+ "loss": 3.737079620361328,
+ "step": 2363
+ },
+ {
+ "epoch": 32.83879423328965,
+ "grad_norm": 0.2507241666316986,
+ "learning_rate": 0.0006,
+ "loss": 3.708500385284424,
+ "step": 2364
+ },
+ {
+ "epoch": 32.8527741371778,
+ "grad_norm": 0.25688016414642334,
+ "learning_rate": 0.0006,
+ "loss": 3.7389419078826904,
+ "step": 2365
+ },
+ {
+ "epoch": 32.86675404106597,
+ "grad_norm": 0.257447749376297,
+ "learning_rate": 0.0006,
+ "loss": 3.7253334522247314,
+ "step": 2366
+ },
+ {
+ "epoch": 32.88073394495413,
+ "grad_norm": 0.2621215879917145,
+ "learning_rate": 0.0006,
+ "loss": 3.773163318634033,
+ "step": 2367
+ },
+ {
+ "epoch": 32.89471384884229,
+ "grad_norm": 0.23554839193820953,
+ "learning_rate": 0.0006,
+ "loss": 3.7534430027008057,
+ "step": 2368
+ },
+ {
+ "epoch": 32.90869375273045,
+ "grad_norm": 0.19698940217494965,
+ "learning_rate": 0.0006,
+ "loss": 3.7094414234161377,
+ "step": 2369
+ },
+ {
+ "epoch": 32.92267365661861,
+ "grad_norm": 0.21380476653575897,
+ "learning_rate": 0.0006,
+ "loss": 3.7666497230529785,
+ "step": 2370
+ },
+ {
+ "epoch": 32.93665356050677,
+ "grad_norm": 0.20876452326774597,
+ "learning_rate": 0.0006,
+ "loss": 3.7467992305755615,
+ "step": 2371
+ },
+ {
+ "epoch": 32.95063346439493,
+ "grad_norm": 0.1989884227514267,
+ "learning_rate": 0.0006,
+ "loss": 3.749878168106079,
+ "step": 2372
+ },
+ {
+ "epoch": 32.964613368283096,
+ "grad_norm": 0.19089168310165405,
+ "learning_rate": 0.0006,
+ "loss": 3.7211015224456787,
+ "step": 2373
+ },
+ {
+ "epoch": 32.97859327217125,
+ "grad_norm": 0.1962461918592453,
+ "learning_rate": 0.0006,
+ "loss": 3.728684425354004,
+ "step": 2374
+ },
+ {
+ "epoch": 32.992573176059416,
+ "grad_norm": 0.22518110275268555,
+ "learning_rate": 0.0006,
+ "loss": 3.7361507415771484,
+ "step": 2375
+ },
+ {
+ "epoch": 33.0,
+ "grad_norm": 0.26704078912734985,
+ "learning_rate": 0.0006,
+ "loss": 3.7478318214416504,
+ "step": 2376
+ },
+ {
+ "epoch": 33.0,
+ "eval_loss": 4.024221897125244,
+ "eval_runtime": 43.9826,
+ "eval_samples_per_second": 55.522,
+ "eval_steps_per_second": 3.479,
+ "step": 2376
+ },
+ {
+ "epoch": 33.01397990388816,
+ "grad_norm": 0.23387742042541504,
+ "learning_rate": 0.0006,
+ "loss": 3.7043614387512207,
+ "step": 2377
+ },
+ {
+ "epoch": 33.02795980777632,
+ "grad_norm": 0.21334673464298248,
+ "learning_rate": 0.0006,
+ "loss": 3.6714677810668945,
+ "step": 2378
+ },
+ {
+ "epoch": 33.04193971166448,
+ "grad_norm": 0.2608581483364105,
+ "learning_rate": 0.0006,
+ "loss": 3.678460121154785,
+ "step": 2379
+ },
+ {
+ "epoch": 33.05591961555265,
+ "grad_norm": 0.31364381313323975,
+ "learning_rate": 0.0006,
+ "loss": 3.6771793365478516,
+ "step": 2380
+ },
+ {
+ "epoch": 33.0698995194408,
+ "grad_norm": 0.31785935163497925,
+ "learning_rate": 0.0006,
+ "loss": 3.7248926162719727,
+ "step": 2381
+ },
+ {
+ "epoch": 33.083879423328966,
+ "grad_norm": 0.29244646430015564,
+ "learning_rate": 0.0006,
+ "loss": 3.677882194519043,
+ "step": 2382
+ },
+ {
+ "epoch": 33.09785932721712,
+ "grad_norm": 0.23943741619586945,
+ "learning_rate": 0.0006,
+ "loss": 3.7365124225616455,
+ "step": 2383
+ },
+ {
+ "epoch": 33.111839231105286,
+ "grad_norm": 0.2547394931316376,
+ "learning_rate": 0.0006,
+ "loss": 3.7031357288360596,
+ "step": 2384
+ },
+ {
+ "epoch": 33.12581913499345,
+ "grad_norm": 0.2696659564971924,
+ "learning_rate": 0.0006,
+ "loss": 3.6904754638671875,
+ "step": 2385
+ },
+ {
+ "epoch": 33.139799038881605,
+ "grad_norm": 0.24271385371685028,
+ "learning_rate": 0.0006,
+ "loss": 3.7137649059295654,
+ "step": 2386
+ },
+ {
+ "epoch": 33.15377894276977,
+ "grad_norm": 0.23435993492603302,
+ "learning_rate": 0.0006,
+ "loss": 3.707383632659912,
+ "step": 2387
+ },
+ {
+ "epoch": 33.16775884665793,
+ "grad_norm": 0.21428440511226654,
+ "learning_rate": 0.0006,
+ "loss": 3.7148897647857666,
+ "step": 2388
+ },
+ {
+ "epoch": 33.18173875054609,
+ "grad_norm": 0.22420962154865265,
+ "learning_rate": 0.0006,
+ "loss": 3.710111141204834,
+ "step": 2389
+ },
+ {
+ "epoch": 33.19571865443425,
+ "grad_norm": 0.26222777366638184,
+ "learning_rate": 0.0006,
+ "loss": 3.677438259124756,
+ "step": 2390
+ },
+ {
+ "epoch": 33.20969855832241,
+ "grad_norm": 0.29910165071487427,
+ "learning_rate": 0.0006,
+ "loss": 3.6895523071289062,
+ "step": 2391
+ },
+ {
+ "epoch": 33.22367846221057,
+ "grad_norm": 0.2615569531917572,
+ "learning_rate": 0.0006,
+ "loss": 3.7339906692504883,
+ "step": 2392
+ },
+ {
+ "epoch": 33.237658366098735,
+ "grad_norm": 0.23396961390972137,
+ "learning_rate": 0.0006,
+ "loss": 3.7179932594299316,
+ "step": 2393
+ },
+ {
+ "epoch": 33.25163826998689,
+ "grad_norm": 0.24844495952129364,
+ "learning_rate": 0.0006,
+ "loss": 3.7191576957702637,
+ "step": 2394
+ },
+ {
+ "epoch": 33.265618173875055,
+ "grad_norm": 0.2306993454694748,
+ "learning_rate": 0.0006,
+ "loss": 3.7172658443450928,
+ "step": 2395
+ },
+ {
+ "epoch": 33.27959807776322,
+ "grad_norm": 0.24935221672058105,
+ "learning_rate": 0.0006,
+ "loss": 3.6917519569396973,
+ "step": 2396
+ },
+ {
+ "epoch": 33.293577981651374,
+ "grad_norm": 0.2522840201854706,
+ "learning_rate": 0.0006,
+ "loss": 3.7263593673706055,
+ "step": 2397
+ },
+ {
+ "epoch": 33.30755788553954,
+ "grad_norm": 0.26411181688308716,
+ "learning_rate": 0.0006,
+ "loss": 3.6981635093688965,
+ "step": 2398
+ },
+ {
+ "epoch": 33.3215377894277,
+ "grad_norm": 0.22396239638328552,
+ "learning_rate": 0.0006,
+ "loss": 3.713247299194336,
+ "step": 2399
+ },
+ {
+ "epoch": 33.33551769331586,
+ "grad_norm": 0.20579157769680023,
+ "learning_rate": 0.0006,
+ "loss": 3.7058467864990234,
+ "step": 2400
+ },
+ {
+ "epoch": 33.34949759720402,
+ "grad_norm": 0.20103922486305237,
+ "learning_rate": 0.0006,
+ "loss": 3.700924873352051,
+ "step": 2401
+ },
+ {
+ "epoch": 33.36347750109218,
+ "grad_norm": 0.19964663684368134,
+ "learning_rate": 0.0006,
+ "loss": 3.6985437870025635,
+ "step": 2402
+ },
+ {
+ "epoch": 33.37745740498034,
+ "grad_norm": 0.20860575139522552,
+ "learning_rate": 0.0006,
+ "loss": 3.7480058670043945,
+ "step": 2403
+ },
+ {
+ "epoch": 33.391437308868504,
+ "grad_norm": 0.19043605029582977,
+ "learning_rate": 0.0006,
+ "loss": 3.6952016353607178,
+ "step": 2404
+ },
+ {
+ "epoch": 33.40541721275666,
+ "grad_norm": 0.1968909204006195,
+ "learning_rate": 0.0006,
+ "loss": 3.69362735748291,
+ "step": 2405
+ },
+ {
+ "epoch": 33.419397116644824,
+ "grad_norm": 0.23492494225502014,
+ "learning_rate": 0.0006,
+ "loss": 3.707993984222412,
+ "step": 2406
+ },
+ {
+ "epoch": 33.43337702053299,
+ "grad_norm": 0.23970453441143036,
+ "learning_rate": 0.0006,
+ "loss": 3.707731246948242,
+ "step": 2407
+ },
+ {
+ "epoch": 33.44735692442114,
+ "grad_norm": 0.2515844404697418,
+ "learning_rate": 0.0006,
+ "loss": 3.723824977874756,
+ "step": 2408
+ },
+ {
+ "epoch": 33.46133682830931,
+ "grad_norm": 0.2343570590019226,
+ "learning_rate": 0.0006,
+ "loss": 3.7068886756896973,
+ "step": 2409
+ },
+ {
+ "epoch": 33.47531673219746,
+ "grad_norm": 0.23419860005378723,
+ "learning_rate": 0.0006,
+ "loss": 3.6964287757873535,
+ "step": 2410
+ },
+ {
+ "epoch": 33.489296636085626,
+ "grad_norm": 0.21280375123023987,
+ "learning_rate": 0.0006,
+ "loss": 3.7020950317382812,
+ "step": 2411
+ },
+ {
+ "epoch": 33.50327653997379,
+ "grad_norm": 0.2061092108488083,
+ "learning_rate": 0.0006,
+ "loss": 3.750861406326294,
+ "step": 2412
+ },
+ {
+ "epoch": 33.517256443861946,
+ "grad_norm": 0.19693219661712646,
+ "learning_rate": 0.0006,
+ "loss": 3.717020034790039,
+ "step": 2413
+ },
+ {
+ "epoch": 33.53123634775011,
+ "grad_norm": 0.18199551105499268,
+ "learning_rate": 0.0006,
+ "loss": 3.7242612838745117,
+ "step": 2414
+ },
+ {
+ "epoch": 33.54521625163827,
+ "grad_norm": 0.20131248235702515,
+ "learning_rate": 0.0006,
+ "loss": 3.6758954524993896,
+ "step": 2415
+ },
+ {
+ "epoch": 33.55919615552643,
+ "grad_norm": 0.2219412475824356,
+ "learning_rate": 0.0006,
+ "loss": 3.707927703857422,
+ "step": 2416
+ },
+ {
+ "epoch": 33.57317605941459,
+ "grad_norm": 0.22541435062885284,
+ "learning_rate": 0.0006,
+ "loss": 3.696967601776123,
+ "step": 2417
+ },
+ {
+ "epoch": 33.58715596330275,
+ "grad_norm": 0.20367272198200226,
+ "learning_rate": 0.0006,
+ "loss": 3.730795383453369,
+ "step": 2418
+ },
+ {
+ "epoch": 33.60113586719091,
+ "grad_norm": 0.20861074328422546,
+ "learning_rate": 0.0006,
+ "loss": 3.707066535949707,
+ "step": 2419
+ },
+ {
+ "epoch": 33.615115771079076,
+ "grad_norm": 0.20570263266563416,
+ "learning_rate": 0.0006,
+ "loss": 3.730602502822876,
+ "step": 2420
+ },
+ {
+ "epoch": 33.62909567496723,
+ "grad_norm": 0.21318231523036957,
+ "learning_rate": 0.0006,
+ "loss": 3.7073278427124023,
+ "step": 2421
+ },
+ {
+ "epoch": 33.643075578855395,
+ "grad_norm": 0.2142639458179474,
+ "learning_rate": 0.0006,
+ "loss": 3.718470573425293,
+ "step": 2422
+ },
+ {
+ "epoch": 33.65705548274356,
+ "grad_norm": 0.19620704650878906,
+ "learning_rate": 0.0006,
+ "loss": 3.716036319732666,
+ "step": 2423
+ },
+ {
+ "epoch": 33.671035386631715,
+ "grad_norm": 0.19308267533779144,
+ "learning_rate": 0.0006,
+ "loss": 3.734597682952881,
+ "step": 2424
+ },
+ {
+ "epoch": 33.68501529051988,
+ "grad_norm": 0.19453389942646027,
+ "learning_rate": 0.0006,
+ "loss": 3.726262092590332,
+ "step": 2425
+ },
+ {
+ "epoch": 33.69899519440804,
+ "grad_norm": 0.20405639708042145,
+ "learning_rate": 0.0006,
+ "loss": 3.678340435028076,
+ "step": 2426
+ },
+ {
+ "epoch": 33.7129750982962,
+ "grad_norm": 0.19525611400604248,
+ "learning_rate": 0.0006,
+ "loss": 3.723907470703125,
+ "step": 2427
+ },
+ {
+ "epoch": 33.72695500218436,
+ "grad_norm": 0.19390441477298737,
+ "learning_rate": 0.0006,
+ "loss": 3.707897186279297,
+ "step": 2428
+ },
+ {
+ "epoch": 33.74093490607252,
+ "grad_norm": 0.2032899558544159,
+ "learning_rate": 0.0006,
+ "loss": 3.735041618347168,
+ "step": 2429
+ },
+ {
+ "epoch": 33.75491480996068,
+ "grad_norm": 0.2134784460067749,
+ "learning_rate": 0.0006,
+ "loss": 3.674978017807007,
+ "step": 2430
+ },
+ {
+ "epoch": 33.768894713848844,
+ "grad_norm": 0.24691973626613617,
+ "learning_rate": 0.0006,
+ "loss": 3.7028675079345703,
+ "step": 2431
+ },
+ {
+ "epoch": 33.782874617737,
+ "grad_norm": 0.2272702008485794,
+ "learning_rate": 0.0006,
+ "loss": 3.7277941703796387,
+ "step": 2432
+ },
+ {
+ "epoch": 33.796854521625164,
+ "grad_norm": 0.20052100718021393,
+ "learning_rate": 0.0006,
+ "loss": 3.7146830558776855,
+ "step": 2433
+ },
+ {
+ "epoch": 33.81083442551333,
+ "grad_norm": 0.1958577185869217,
+ "learning_rate": 0.0006,
+ "loss": 3.6936864852905273,
+ "step": 2434
+ },
+ {
+ "epoch": 33.824814329401484,
+ "grad_norm": 0.191860631108284,
+ "learning_rate": 0.0006,
+ "loss": 3.7451858520507812,
+ "step": 2435
+ },
+ {
+ "epoch": 33.83879423328965,
+ "grad_norm": 0.20961424708366394,
+ "learning_rate": 0.0006,
+ "loss": 3.722400665283203,
+ "step": 2436
+ },
+ {
+ "epoch": 33.8527741371778,
+ "grad_norm": 0.19784288108348846,
+ "learning_rate": 0.0006,
+ "loss": 3.712474822998047,
+ "step": 2437
+ },
+ {
+ "epoch": 33.86675404106597,
+ "grad_norm": 0.18645426630973816,
+ "learning_rate": 0.0006,
+ "loss": 3.7054500579833984,
+ "step": 2438
+ },
+ {
+ "epoch": 33.88073394495413,
+ "grad_norm": 0.19622360169887543,
+ "learning_rate": 0.0006,
+ "loss": 3.7010550498962402,
+ "step": 2439
+ },
+ {
+ "epoch": 33.89471384884229,
+ "grad_norm": 0.20283745229244232,
+ "learning_rate": 0.0006,
+ "loss": 3.7252519130706787,
+ "step": 2440
+ },
+ {
+ "epoch": 33.90869375273045,
+ "grad_norm": 0.18671709299087524,
+ "learning_rate": 0.0006,
+ "loss": 3.6932945251464844,
+ "step": 2441
+ },
+ {
+ "epoch": 33.92267365661861,
+ "grad_norm": 0.17953112721443176,
+ "learning_rate": 0.0006,
+ "loss": 3.7453854084014893,
+ "step": 2442
+ },
+ {
+ "epoch": 33.93665356050677,
+ "grad_norm": 0.1945437788963318,
+ "learning_rate": 0.0006,
+ "loss": 3.722881317138672,
+ "step": 2443
+ },
+ {
+ "epoch": 33.95063346439493,
+ "grad_norm": 0.18414495885372162,
+ "learning_rate": 0.0006,
+ "loss": 3.7402591705322266,
+ "step": 2444
+ },
+ {
+ "epoch": 33.964613368283096,
+ "grad_norm": 0.1936541497707367,
+ "learning_rate": 0.0006,
+ "loss": 3.720057964324951,
+ "step": 2445
+ },
+ {
+ "epoch": 33.97859327217125,
+ "grad_norm": 0.20177008211612701,
+ "learning_rate": 0.0006,
+ "loss": 3.6983802318573,
+ "step": 2446
+ },
+ {
+ "epoch": 33.992573176059416,
+ "grad_norm": 0.18977557122707367,
+ "learning_rate": 0.0006,
+ "loss": 3.7202203273773193,
+ "step": 2447
+ },
+ {
+ "epoch": 34.0,
+ "grad_norm": 0.220163956284523,
+ "learning_rate": 0.0006,
+ "loss": 3.72540283203125,
+ "step": 2448
+ },
+ {
+ "epoch": 34.0,
+ "eval_loss": 4.009343147277832,
+ "eval_runtime": 44.1825,
+ "eval_samples_per_second": 55.271,
+ "eval_steps_per_second": 3.463,
+ "step": 2448
+ },
+ {
+ "epoch": 34.01397990388816,
+ "grad_norm": 0.19843372702598572,
+ "learning_rate": 0.0006,
+ "loss": 3.664431571960449,
+ "step": 2449
+ },
+ {
+ "epoch": 34.02795980777632,
+ "grad_norm": 0.20413008332252502,
+ "learning_rate": 0.0006,
+ "loss": 3.699094533920288,
+ "step": 2450
+ },
+ {
+ "epoch": 34.04193971166448,
+ "grad_norm": 0.22086848318576813,
+ "learning_rate": 0.0006,
+ "loss": 3.681825637817383,
+ "step": 2451
+ },
+ {
+ "epoch": 34.05591961555265,
+ "grad_norm": 0.20753061771392822,
+ "learning_rate": 0.0006,
+ "loss": 3.677116870880127,
+ "step": 2452
+ },
+ {
+ "epoch": 34.0698995194408,
+ "grad_norm": 0.21835783123970032,
+ "learning_rate": 0.0006,
+ "loss": 3.7079062461853027,
+ "step": 2453
+ },
+ {
+ "epoch": 34.083879423328966,
+ "grad_norm": 0.2244357019662857,
+ "learning_rate": 0.0006,
+ "loss": 3.69844913482666,
+ "step": 2454
+ },
+ {
+ "epoch": 34.09785932721712,
+ "grad_norm": 0.2238784283399582,
+ "learning_rate": 0.0006,
+ "loss": 3.6835570335388184,
+ "step": 2455
+ },
+ {
+ "epoch": 34.111839231105286,
+ "grad_norm": 0.24816176295280457,
+ "learning_rate": 0.0006,
+ "loss": 3.6832966804504395,
+ "step": 2456
+ },
+ {
+ "epoch": 34.12581913499345,
+ "grad_norm": 0.2445257306098938,
+ "learning_rate": 0.0006,
+ "loss": 3.7190022468566895,
+ "step": 2457
+ },
+ {
+ "epoch": 34.139799038881605,
+ "grad_norm": 0.24510814249515533,
+ "learning_rate": 0.0006,
+ "loss": 3.678098201751709,
+ "step": 2458
+ },
+ {
+ "epoch": 34.15377894276977,
+ "grad_norm": 0.2550753653049469,
+ "learning_rate": 0.0006,
+ "loss": 3.69335675239563,
+ "step": 2459
+ },
+ {
+ "epoch": 34.16775884665793,
+ "grad_norm": 0.2435017228126526,
+ "learning_rate": 0.0006,
+ "loss": 3.70463228225708,
+ "step": 2460
+ },
+ {
+ "epoch": 34.18173875054609,
+ "grad_norm": 0.26441144943237305,
+ "learning_rate": 0.0006,
+ "loss": 3.6757068634033203,
+ "step": 2461
+ },
+ {
+ "epoch": 34.19571865443425,
+ "grad_norm": 0.2737993001937866,
+ "learning_rate": 0.0006,
+ "loss": 3.6510863304138184,
+ "step": 2462
+ },
+ {
+ "epoch": 34.20969855832241,
+ "grad_norm": 0.24625736474990845,
+ "learning_rate": 0.0006,
+ "loss": 3.707612991333008,
+ "step": 2463
+ },
+ {
+ "epoch": 34.22367846221057,
+ "grad_norm": 0.22222039103507996,
+ "learning_rate": 0.0006,
+ "loss": 3.7145133018493652,
+ "step": 2464
+ },
+ {
+ "epoch": 34.237658366098735,
+ "grad_norm": 0.2173531949520111,
+ "learning_rate": 0.0006,
+ "loss": 3.685112476348877,
+ "step": 2465
+ },
+ {
+ "epoch": 34.25163826998689,
+ "grad_norm": 0.23102006316184998,
+ "learning_rate": 0.0006,
+ "loss": 3.6742453575134277,
+ "step": 2466
+ },
+ {
+ "epoch": 34.265618173875055,
+ "grad_norm": 0.22287188470363617,
+ "learning_rate": 0.0006,
+ "loss": 3.7030534744262695,
+ "step": 2467
+ },
+ {
+ "epoch": 34.27959807776322,
+ "grad_norm": 0.20377251505851746,
+ "learning_rate": 0.0006,
+ "loss": 3.6866259574890137,
+ "step": 2468
+ },
+ {
+ "epoch": 34.293577981651374,
+ "grad_norm": 0.19867438077926636,
+ "learning_rate": 0.0006,
+ "loss": 3.70395565032959,
+ "step": 2469
+ },
+ {
+ "epoch": 34.30755788553954,
+ "grad_norm": 0.2014918178319931,
+ "learning_rate": 0.0006,
+ "loss": 3.660795211791992,
+ "step": 2470
+ },
+ {
+ "epoch": 34.3215377894277,
+ "grad_norm": 0.20981402695178986,
+ "learning_rate": 0.0006,
+ "loss": 3.7045323848724365,
+ "step": 2471
+ },
+ {
+ "epoch": 34.33551769331586,
+ "grad_norm": 0.20968124270439148,
+ "learning_rate": 0.0006,
+ "loss": 3.7113170623779297,
+ "step": 2472
+ },
+ {
+ "epoch": 34.34949759720402,
+ "grad_norm": 0.2214043140411377,
+ "learning_rate": 0.0006,
+ "loss": 3.7330074310302734,
+ "step": 2473
+ },
+ {
+ "epoch": 34.36347750109218,
+ "grad_norm": 0.21231533586978912,
+ "learning_rate": 0.0006,
+ "loss": 3.6706933975219727,
+ "step": 2474
+ },
+ {
+ "epoch": 34.37745740498034,
+ "grad_norm": 0.2022094875574112,
+ "learning_rate": 0.0006,
+ "loss": 3.7230453491210938,
+ "step": 2475
+ },
+ {
+ "epoch": 34.391437308868504,
+ "grad_norm": 0.2281145304441452,
+ "learning_rate": 0.0006,
+ "loss": 3.7197465896606445,
+ "step": 2476
+ },
+ {
+ "epoch": 34.40541721275666,
+ "grad_norm": 0.2147362381219864,
+ "learning_rate": 0.0006,
+ "loss": 3.7092337608337402,
+ "step": 2477
+ },
+ {
+ "epoch": 34.419397116644824,
+ "grad_norm": 0.19984203577041626,
+ "learning_rate": 0.0006,
+ "loss": 3.6939496994018555,
+ "step": 2478
+ },
+ {
+ "epoch": 34.43337702053299,
+ "grad_norm": 0.21088480949401855,
+ "learning_rate": 0.0006,
+ "loss": 3.6942667961120605,
+ "step": 2479
+ },
+ {
+ "epoch": 34.44735692442114,
+ "grad_norm": 0.20444616675376892,
+ "learning_rate": 0.0006,
+ "loss": 3.718186378479004,
+ "step": 2480
+ },
+ {
+ "epoch": 34.46133682830931,
+ "grad_norm": 0.19133952260017395,
+ "learning_rate": 0.0006,
+ "loss": 3.697197437286377,
+ "step": 2481
+ },
+ {
+ "epoch": 34.47531673219746,
+ "grad_norm": 0.2219255417585373,
+ "learning_rate": 0.0006,
+ "loss": 3.684386730194092,
+ "step": 2482
+ },
+ {
+ "epoch": 34.489296636085626,
+ "grad_norm": 0.2480643391609192,
+ "learning_rate": 0.0006,
+ "loss": 3.6656622886657715,
+ "step": 2483
+ },
+ {
+ "epoch": 34.50327653997379,
+ "grad_norm": 0.22907346487045288,
+ "learning_rate": 0.0006,
+ "loss": 3.741391897201538,
+ "step": 2484
+ },
+ {
+ "epoch": 34.517256443861946,
+ "grad_norm": 0.20277173817157745,
+ "learning_rate": 0.0006,
+ "loss": 3.7062582969665527,
+ "step": 2485
+ },
+ {
+ "epoch": 34.53123634775011,
+ "grad_norm": 0.21411100029945374,
+ "learning_rate": 0.0006,
+ "loss": 3.691784381866455,
+ "step": 2486
+ },
+ {
+ "epoch": 34.54521625163827,
+ "grad_norm": 0.20261600613594055,
+ "learning_rate": 0.0006,
+ "loss": 3.6855502128601074,
+ "step": 2487
+ },
+ {
+ "epoch": 34.55919615552643,
+ "grad_norm": 0.23913109302520752,
+ "learning_rate": 0.0006,
+ "loss": 3.670754909515381,
+ "step": 2488
+ },
+ {
+ "epoch": 34.57317605941459,
+ "grad_norm": 0.24427077174186707,
+ "learning_rate": 0.0006,
+ "loss": 3.700611114501953,
+ "step": 2489
+ },
+ {
+ "epoch": 34.58715596330275,
+ "grad_norm": 0.20305761694908142,
+ "learning_rate": 0.0006,
+ "loss": 3.7284226417541504,
+ "step": 2490
+ },
+ {
+ "epoch": 34.60113586719091,
+ "grad_norm": 0.20398905873298645,
+ "learning_rate": 0.0006,
+ "loss": 3.6860880851745605,
+ "step": 2491
+ },
+ {
+ "epoch": 34.615115771079076,
+ "grad_norm": 0.21016651391983032,
+ "learning_rate": 0.0006,
+ "loss": 3.7366015911102295,
+ "step": 2492
+ },
+ {
+ "epoch": 34.62909567496723,
+ "grad_norm": 0.22279402613639832,
+ "learning_rate": 0.0006,
+ "loss": 3.7024295330047607,
+ "step": 2493
+ },
+ {
+ "epoch": 34.643075578855395,
+ "grad_norm": 0.25080347061157227,
+ "learning_rate": 0.0006,
+ "loss": 3.68355655670166,
+ "step": 2494
+ },
+ {
+ "epoch": 34.65705548274356,
+ "grad_norm": 0.2702971398830414,
+ "learning_rate": 0.0006,
+ "loss": 3.7400612831115723,
+ "step": 2495
+ },
+ {
+ "epoch": 34.671035386631715,
+ "grad_norm": 0.299398273229599,
+ "learning_rate": 0.0006,
+ "loss": 3.7160325050354004,
+ "step": 2496
+ },
+ {
+ "epoch": 34.68501529051988,
+ "grad_norm": 0.29151082038879395,
+ "learning_rate": 0.0006,
+ "loss": 3.7124147415161133,
+ "step": 2497
+ },
+ {
+ "epoch": 34.69899519440804,
+ "grad_norm": 0.23828288912773132,
+ "learning_rate": 0.0006,
+ "loss": 3.7181267738342285,
+ "step": 2498
+ },
+ {
+ "epoch": 34.7129750982962,
+ "grad_norm": 0.21776588261127472,
+ "learning_rate": 0.0006,
+ "loss": 3.6811792850494385,
+ "step": 2499
+ },
+ {
+ "epoch": 34.72695500218436,
+ "grad_norm": 0.2318469136953354,
+ "learning_rate": 0.0006,
+ "loss": 3.698467254638672,
+ "step": 2500
+ },
+ {
+ "epoch": 34.74093490607252,
+ "grad_norm": 0.22341546416282654,
+ "learning_rate": 0.0006,
+ "loss": 3.7406411170959473,
+ "step": 2501
+ },
+ {
+ "epoch": 34.75491480996068,
+ "grad_norm": 0.20676901936531067,
+ "learning_rate": 0.0006,
+ "loss": 3.6914243698120117,
+ "step": 2502
+ },
+ {
+ "epoch": 34.768894713848844,
+ "grad_norm": 0.20459024608135223,
+ "learning_rate": 0.0006,
+ "loss": 3.713369607925415,
+ "step": 2503
+ },
+ {
+ "epoch": 34.782874617737,
+ "grad_norm": 0.22369320690631866,
+ "learning_rate": 0.0006,
+ "loss": 3.697587490081787,
+ "step": 2504
+ },
+ {
+ "epoch": 34.796854521625164,
+ "grad_norm": 0.2393338829278946,
+ "learning_rate": 0.0006,
+ "loss": 3.7171854972839355,
+ "step": 2505
+ },
+ {
+ "epoch": 34.81083442551333,
+ "grad_norm": 0.23756961524486542,
+ "learning_rate": 0.0006,
+ "loss": 3.6969614028930664,
+ "step": 2506
+ },
+ {
+ "epoch": 34.824814329401484,
+ "grad_norm": 0.22761376202106476,
+ "learning_rate": 0.0006,
+ "loss": 3.722501754760742,
+ "step": 2507
+ },
+ {
+ "epoch": 34.83879423328965,
+ "grad_norm": 0.23564888536930084,
+ "learning_rate": 0.0006,
+ "loss": 3.714003086090088,
+ "step": 2508
+ },
+ {
+ "epoch": 34.8527741371778,
+ "grad_norm": 0.22197313606739044,
+ "learning_rate": 0.0006,
+ "loss": 3.7107110023498535,
+ "step": 2509
+ },
+ {
+ "epoch": 34.86675404106597,
+ "grad_norm": 0.20199328660964966,
+ "learning_rate": 0.0006,
+ "loss": 3.7167551517486572,
+ "step": 2510
+ },
+ {
+ "epoch": 34.88073394495413,
+ "grad_norm": 0.19569700956344604,
+ "learning_rate": 0.0006,
+ "loss": 3.679098129272461,
+ "step": 2511
+ },
+ {
+ "epoch": 34.89471384884229,
+ "grad_norm": 0.21320141851902008,
+ "learning_rate": 0.0006,
+ "loss": 3.733187675476074,
+ "step": 2512
+ },
+ {
+ "epoch": 34.90869375273045,
+ "grad_norm": 0.20074625313282013,
+ "learning_rate": 0.0006,
+ "loss": 3.713339328765869,
+ "step": 2513
+ },
+ {
+ "epoch": 34.92267365661861,
+ "grad_norm": 0.20249252021312714,
+ "learning_rate": 0.0006,
+ "loss": 3.680785655975342,
+ "step": 2514
+ },
+ {
+ "epoch": 34.93665356050677,
+ "grad_norm": 0.22165577113628387,
+ "learning_rate": 0.0006,
+ "loss": 3.696131706237793,
+ "step": 2515
+ },
+ {
+ "epoch": 34.95063346439493,
+ "grad_norm": 0.20769749581813812,
+ "learning_rate": 0.0006,
+ "loss": 3.6910316944122314,
+ "step": 2516
+ },
+ {
+ "epoch": 34.964613368283096,
+ "grad_norm": 0.20857223868370056,
+ "learning_rate": 0.0006,
+ "loss": 3.7327451705932617,
+ "step": 2517
+ },
+ {
+ "epoch": 34.97859327217125,
+ "grad_norm": 0.19155766069889069,
+ "learning_rate": 0.0006,
+ "loss": 3.705609083175659,
+ "step": 2518
+ },
+ {
+ "epoch": 34.992573176059416,
+ "grad_norm": 0.17890529334545135,
+ "learning_rate": 0.0006,
+ "loss": 3.6844797134399414,
+ "step": 2519
+ },
+ {
+ "epoch": 35.0,
+ "grad_norm": 0.2053528130054474,
+ "learning_rate": 0.0006,
+ "loss": 3.6942501068115234,
+ "step": 2520
+ },
+ {
+ "epoch": 35.0,
+ "eval_loss": 3.998469591140747,
+ "eval_runtime": 43.9147,
+ "eval_samples_per_second": 55.608,
+ "eval_steps_per_second": 3.484,
+ "step": 2520
+ },
+ {
+ "epoch": 35.01397990388816,
+ "grad_norm": 0.2288869470357895,
+ "learning_rate": 0.0006,
+ "loss": 3.6966426372528076,
+ "step": 2521
+ },
+ {
+ "epoch": 35.02795980777632,
+ "grad_norm": 0.25702035427093506,
+ "learning_rate": 0.0006,
+ "loss": 3.6622562408447266,
+ "step": 2522
+ },
+ {
+ "epoch": 35.04193971166448,
+ "grad_norm": 0.254422128200531,
+ "learning_rate": 0.0006,
+ "loss": 3.690046548843384,
+ "step": 2523
+ },
+ {
+ "epoch": 35.05591961555265,
+ "grad_norm": 0.24177077412605286,
+ "learning_rate": 0.0006,
+ "loss": 3.685335874557495,
+ "step": 2524
+ },
+ {
+ "epoch": 35.0698995194408,
+ "grad_norm": 0.23959586024284363,
+ "learning_rate": 0.0006,
+ "loss": 3.6534650325775146,
+ "step": 2525
+ },
+ {
+ "epoch": 35.083879423328966,
+ "grad_norm": 0.23474839329719543,
+ "learning_rate": 0.0006,
+ "loss": 3.7092814445495605,
+ "step": 2526
+ },
+ {
+ "epoch": 35.09785932721712,
+ "grad_norm": 0.23240867257118225,
+ "learning_rate": 0.0006,
+ "loss": 3.6819097995758057,
+ "step": 2527
+ },
+ {
+ "epoch": 35.111839231105286,
+ "grad_norm": 0.26267048716545105,
+ "learning_rate": 0.0006,
+ "loss": 3.6566696166992188,
+ "step": 2528
+ },
+ {
+ "epoch": 35.12581913499345,
+ "grad_norm": 0.27070754766464233,
+ "learning_rate": 0.0006,
+ "loss": 3.676304340362549,
+ "step": 2529
+ },
+ {
+ "epoch": 35.139799038881605,
+ "grad_norm": 0.25297826528549194,
+ "learning_rate": 0.0006,
+ "loss": 3.65259051322937,
+ "step": 2530
+ },
+ {
+ "epoch": 35.15377894276977,
+ "grad_norm": 0.22776272892951965,
+ "learning_rate": 0.0006,
+ "loss": 3.6813838481903076,
+ "step": 2531
+ },
+ {
+ "epoch": 35.16775884665793,
+ "grad_norm": 0.2288261204957962,
+ "learning_rate": 0.0006,
+ "loss": 3.6916379928588867,
+ "step": 2532
+ },
+ {
+ "epoch": 35.18173875054609,
+ "grad_norm": 0.20445892214775085,
+ "learning_rate": 0.0006,
+ "loss": 3.6550145149230957,
+ "step": 2533
+ },
+ {
+ "epoch": 35.19571865443425,
+ "grad_norm": 0.20298904180526733,
+ "learning_rate": 0.0006,
+ "loss": 3.704042434692383,
+ "step": 2534
+ },
+ {
+ "epoch": 35.20969855832241,
+ "grad_norm": 0.2264423668384552,
+ "learning_rate": 0.0006,
+ "loss": 3.646308183670044,
+ "step": 2535
+ },
+ {
+ "epoch": 35.22367846221057,
+ "grad_norm": 0.21537378430366516,
+ "learning_rate": 0.0006,
+ "loss": 3.686048984527588,
+ "step": 2536
+ },
+ {
+ "epoch": 35.237658366098735,
+ "grad_norm": 0.19820059835910797,
+ "learning_rate": 0.0006,
+ "loss": 3.6993050575256348,
+ "step": 2537
+ },
+ {
+ "epoch": 35.25163826998689,
+ "grad_norm": 0.19485290348529816,
+ "learning_rate": 0.0006,
+ "loss": 3.6507070064544678,
+ "step": 2538
+ },
+ {
+ "epoch": 35.265618173875055,
+ "grad_norm": 0.21234364807605743,
+ "learning_rate": 0.0006,
+ "loss": 3.6913719177246094,
+ "step": 2539
+ },
+ {
+ "epoch": 35.27959807776322,
+ "grad_norm": 0.19834300875663757,
+ "learning_rate": 0.0006,
+ "loss": 3.6793041229248047,
+ "step": 2540
+ },
+ {
+ "epoch": 35.293577981651374,
+ "grad_norm": 0.1969013512134552,
+ "learning_rate": 0.0006,
+ "loss": 3.7063517570495605,
+ "step": 2541
+ },
+ {
+ "epoch": 35.30755788553954,
+ "grad_norm": 0.196136936545372,
+ "learning_rate": 0.0006,
+ "loss": 3.679825782775879,
+ "step": 2542
+ },
+ {
+ "epoch": 35.3215377894277,
+ "grad_norm": 0.20465479791164398,
+ "learning_rate": 0.0006,
+ "loss": 3.698906421661377,
+ "step": 2543
+ },
+ {
+ "epoch": 35.33551769331586,
+ "grad_norm": 0.204293355345726,
+ "learning_rate": 0.0006,
+ "loss": 3.728549003601074,
+ "step": 2544
+ },
+ {
+ "epoch": 35.34949759720402,
+ "grad_norm": 0.18861903250217438,
+ "learning_rate": 0.0006,
+ "loss": 3.687018632888794,
+ "step": 2545
+ },
+ {
+ "epoch": 35.36347750109218,
+ "grad_norm": 0.19066226482391357,
+ "learning_rate": 0.0006,
+ "loss": 3.667919158935547,
+ "step": 2546
+ },
+ {
+ "epoch": 35.37745740498034,
+ "grad_norm": 0.19985736906528473,
+ "learning_rate": 0.0006,
+ "loss": 3.6697773933410645,
+ "step": 2547
+ },
+ {
+ "epoch": 35.391437308868504,
+ "grad_norm": 0.20669348537921906,
+ "learning_rate": 0.0006,
+ "loss": 3.6718077659606934,
+ "step": 2548
+ },
+ {
+ "epoch": 35.40541721275666,
+ "grad_norm": 0.22164477407932281,
+ "learning_rate": 0.0006,
+ "loss": 3.692106246948242,
+ "step": 2549
+ },
+ {
+ "epoch": 35.419397116644824,
+ "grad_norm": 0.20884688198566437,
+ "learning_rate": 0.0006,
+ "loss": 3.714324712753296,
+ "step": 2550
+ },
+ {
+ "epoch": 35.43337702053299,
+ "grad_norm": 0.21811005473136902,
+ "learning_rate": 0.0006,
+ "loss": 3.678694725036621,
+ "step": 2551
+ },
+ {
+ "epoch": 35.44735692442114,
+ "grad_norm": 0.2427632063627243,
+ "learning_rate": 0.0006,
+ "loss": 3.6584935188293457,
+ "step": 2552
+ },
+ {
+ "epoch": 35.46133682830931,
+ "grad_norm": 0.2584928572177887,
+ "learning_rate": 0.0006,
+ "loss": 3.694148063659668,
+ "step": 2553
+ },
+ {
+ "epoch": 35.47531673219746,
+ "grad_norm": 0.2594548761844635,
+ "learning_rate": 0.0006,
+ "loss": 3.690629005432129,
+ "step": 2554
+ },
+ {
+ "epoch": 35.489296636085626,
+ "grad_norm": 0.2521844208240509,
+ "learning_rate": 0.0006,
+ "loss": 3.6949915885925293,
+ "step": 2555
+ },
+ {
+ "epoch": 35.50327653997379,
+ "grad_norm": 0.2284533679485321,
+ "learning_rate": 0.0006,
+ "loss": 3.6822848320007324,
+ "step": 2556
+ },
+ {
+ "epoch": 35.517256443861946,
+ "grad_norm": 0.2350241094827652,
+ "learning_rate": 0.0006,
+ "loss": 3.6841659545898438,
+ "step": 2557
+ },
+ {
+ "epoch": 35.53123634775011,
+ "grad_norm": 0.22496885061264038,
+ "learning_rate": 0.0006,
+ "loss": 3.676447629928589,
+ "step": 2558
+ },
+ {
+ "epoch": 35.54521625163827,
+ "grad_norm": 0.24326276779174805,
+ "learning_rate": 0.0006,
+ "loss": 3.681678533554077,
+ "step": 2559
+ },
+ {
+ "epoch": 35.55919615552643,
+ "grad_norm": 0.26298362016677856,
+ "learning_rate": 0.0006,
+ "loss": 3.6877617835998535,
+ "step": 2560
+ },
+ {
+ "epoch": 35.57317605941459,
+ "grad_norm": 0.2507239282131195,
+ "learning_rate": 0.0006,
+ "loss": 3.7089176177978516,
+ "step": 2561
+ },
+ {
+ "epoch": 35.58715596330275,
+ "grad_norm": 0.2276458442211151,
+ "learning_rate": 0.0006,
+ "loss": 3.705570936203003,
+ "step": 2562
+ },
+ {
+ "epoch": 35.60113586719091,
+ "grad_norm": 0.23317085206508636,
+ "learning_rate": 0.0006,
+ "loss": 3.6772396564483643,
+ "step": 2563
+ },
+ {
+ "epoch": 35.615115771079076,
+ "grad_norm": 0.23301710188388824,
+ "learning_rate": 0.0006,
+ "loss": 3.694855213165283,
+ "step": 2564
+ },
+ {
+ "epoch": 35.62909567496723,
+ "grad_norm": 0.2170179933309555,
+ "learning_rate": 0.0006,
+ "loss": 3.7095537185668945,
+ "step": 2565
+ },
+ {
+ "epoch": 35.643075578855395,
+ "grad_norm": 0.21211965382099152,
+ "learning_rate": 0.0006,
+ "loss": 3.670109272003174,
+ "step": 2566
+ },
+ {
+ "epoch": 35.65705548274356,
+ "grad_norm": 0.21052585542201996,
+ "learning_rate": 0.0006,
+ "loss": 3.6576027870178223,
+ "step": 2567
+ },
+ {
+ "epoch": 35.671035386631715,
+ "grad_norm": 0.21556039154529572,
+ "learning_rate": 0.0006,
+ "loss": 3.6870639324188232,
+ "step": 2568
+ },
+ {
+ "epoch": 35.68501529051988,
+ "grad_norm": 0.2246469408273697,
+ "learning_rate": 0.0006,
+ "loss": 3.675652503967285,
+ "step": 2569
+ },
+ {
+ "epoch": 35.69899519440804,
+ "grad_norm": 0.21891754865646362,
+ "learning_rate": 0.0006,
+ "loss": 3.692298650741577,
+ "step": 2570
+ },
+ {
+ "epoch": 35.7129750982962,
+ "grad_norm": 0.18774104118347168,
+ "learning_rate": 0.0006,
+ "loss": 3.681035041809082,
+ "step": 2571
+ },
+ {
+ "epoch": 35.72695500218436,
+ "grad_norm": 0.19461573660373688,
+ "learning_rate": 0.0006,
+ "loss": 3.7007932662963867,
+ "step": 2572
+ },
+ {
+ "epoch": 35.74093490607252,
+ "grad_norm": 0.25579094886779785,
+ "learning_rate": 0.0006,
+ "loss": 3.724409580230713,
+ "step": 2573
+ },
+ {
+ "epoch": 35.75491480996068,
+ "grad_norm": 0.27635645866394043,
+ "learning_rate": 0.0006,
+ "loss": 3.68107271194458,
+ "step": 2574
+ },
+ {
+ "epoch": 35.768894713848844,
+ "grad_norm": 0.2233380675315857,
+ "learning_rate": 0.0006,
+ "loss": 3.7123913764953613,
+ "step": 2575
+ },
+ {
+ "epoch": 35.782874617737,
+ "grad_norm": 0.19383835792541504,
+ "learning_rate": 0.0006,
+ "loss": 3.6948328018188477,
+ "step": 2576
+ },
+ {
+ "epoch": 35.796854521625164,
+ "grad_norm": 0.18138426542282104,
+ "learning_rate": 0.0006,
+ "loss": 3.6837103366851807,
+ "step": 2577
+ },
+ {
+ "epoch": 35.81083442551333,
+ "grad_norm": 0.18680135905742645,
+ "learning_rate": 0.0006,
+ "loss": 3.7106502056121826,
+ "step": 2578
+ },
+ {
+ "epoch": 35.824814329401484,
+ "grad_norm": 0.19226312637329102,
+ "learning_rate": 0.0006,
+ "loss": 3.69488787651062,
+ "step": 2579
+ },
+ {
+ "epoch": 35.83879423328965,
+ "grad_norm": 0.19224657118320465,
+ "learning_rate": 0.0006,
+ "loss": 3.7103662490844727,
+ "step": 2580
+ },
+ {
+ "epoch": 35.8527741371778,
+ "grad_norm": 0.18991880118846893,
+ "learning_rate": 0.0006,
+ "loss": 3.7154245376586914,
+ "step": 2581
+ },
+ {
+ "epoch": 35.86675404106597,
+ "grad_norm": 0.2036849409341812,
+ "learning_rate": 0.0006,
+ "loss": 3.723738193511963,
+ "step": 2582
+ },
+ {
+ "epoch": 35.88073394495413,
+ "grad_norm": 0.24730375409126282,
+ "learning_rate": 0.0006,
+ "loss": 3.6830549240112305,
+ "step": 2583
+ },
+ {
+ "epoch": 35.89471384884229,
+ "grad_norm": 0.26552343368530273,
+ "learning_rate": 0.0006,
+ "loss": 3.7025017738342285,
+ "step": 2584
+ },
+ {
+ "epoch": 35.90869375273045,
+ "grad_norm": 0.2621893286705017,
+ "learning_rate": 0.0006,
+ "loss": 3.697399854660034,
+ "step": 2585
+ },
+ {
+ "epoch": 35.92267365661861,
+ "grad_norm": 0.2320089191198349,
+ "learning_rate": 0.0006,
+ "loss": 3.722207546234131,
+ "step": 2586
+ },
+ {
+ "epoch": 35.93665356050677,
+ "grad_norm": 0.1848745346069336,
+ "learning_rate": 0.0006,
+ "loss": 3.711249351501465,
+ "step": 2587
+ },
+ {
+ "epoch": 35.95063346439493,
+ "grad_norm": 0.24218113720417023,
+ "learning_rate": 0.0006,
+ "loss": 3.698894500732422,
+ "step": 2588
+ },
+ {
+ "epoch": 35.964613368283096,
+ "grad_norm": 0.29338452219963074,
+ "learning_rate": 0.0006,
+ "loss": 3.7470521926879883,
+ "step": 2589
+ },
+ {
+ "epoch": 35.97859327217125,
+ "grad_norm": 0.2804136276245117,
+ "learning_rate": 0.0006,
+ "loss": 3.750649929046631,
+ "step": 2590
+ },
+ {
+ "epoch": 35.992573176059416,
+ "grad_norm": 0.26404470205307007,
+ "learning_rate": 0.0006,
+ "loss": 3.6995797157287598,
+ "step": 2591
+ },
+ {
+ "epoch": 36.0,
+ "grad_norm": 0.27446141839027405,
+ "learning_rate": 0.0006,
+ "loss": 3.715768814086914,
+ "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/mask15-l2r50-fulle-lm/checkpoint-2592/training_args.bin b/runs/mask15-l2r50-fulle-lm/checkpoint-2592/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..43721c50815fe94f90cb043bf545b8f7bd9afc38
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-2592/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:a0b8d7bb9ac952b1abed3bd1e5c8f6ebd20daa957b3a85688954f8df03be6eb9
+size 4856
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-288/chat_template.jinja b/runs/mask15-l2r50-fulle-lm/checkpoint-288/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-288/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/mask15-l2r50-fulle-lm/checkpoint-288/config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-288/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..1b4ac3c550d6003148026765eba4cb1512b216c9
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-288/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": 151672
+}
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-288/generation_config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-288/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..5cd15fe1269fd505cfdefe9b3e9989dacd9f68f4
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-288/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/mask15-l2r50-fulle-lm/checkpoint-288/model.safetensors b/runs/mask15-l2r50-fulle-lm/checkpoint-288/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..14de61908dea1970ca30afaf543f87be32fb6cf1
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-288/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:5a1f31201187123a4d5e46c9e40468c4478d48fde677d538891776bec4a3ad39
+size 583358280
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-288/optimizer.pt b/runs/mask15-l2r50-fulle-lm/checkpoint-288/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..ae42fc418866d31287e88e4c89b00c8c2d6dcd94
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-288/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:d192c8d0dfde773675b1275cbdec824d0726b64f39d82fe541942a2533ba0cf0
+size 1166829434
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-288/rng_state_0.pth b/runs/mask15-l2r50-fulle-lm/checkpoint-288/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..95a95ffc155cbce8af7c5a044a8fd9067f30fa16
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-288/rng_state_0.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:6d59e3000a892a1805a635015c5d08862dbc4281d4100d61300f80db435f3920
+size 14512
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-288/rng_state_1.pth b/runs/mask15-l2r50-fulle-lm/checkpoint-288/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..d138f496c4cd14b916ea2e9f7db9c1a49e119a3e
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-288/rng_state_1.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:4efb7574e4ad1dce896776e4c60c09baf7bd0d27faf6ccb0e5359ac8d88b8758
+size 14512
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-288/scheduler.pt b/runs/mask15-l2r50-fulle-lm/checkpoint-288/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..e7f2e4bf5abc860ae45f2d5dbda8115542dd3611
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-288/scheduler.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:4d1eab1d6f570939dc1e4b9d10383b7354ef244100fb2b34ff0ac8b58642b63c
+size 1064
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-288/tokenizer.json b/runs/mask15-l2r50-fulle-lm/checkpoint-288/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..6226bf25372d1a86dbd704ec75d2129960f1ba88
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-288/tokenizer.json
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:9245fe3cb2d40f9ed8d5d8ddd1d58701ba2a236beec08f656162281673f30560
+size 11424264
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-288/tokenizer_config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-288/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..01bc9676576e8cf62a08a9db166d6c5bab1d6727
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-288/tokenizer_config.json
@@ -0,0 +1,20 @@
+{
+ "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|>",
+ "<|mask|>"
+ ],
+ "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/mask15-l2r50-fulle-lm/checkpoint-288/trainer_state.json b/runs/mask15-l2r50-fulle-lm/checkpoint-288/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..cde9b995db9116c23aedcbe11cc740d4fd318de6
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-288/trainer_state.json
@@ -0,0 +1,2074 @@
+{
+ "best_global_step": null,
+ "best_metric": null,
+ "best_model_checkpoint": null,
+ "epoch": 4.0,
+ "eval_steps": 500,
+ "global_step": 288,
+ "is_hyper_param_search": false,
+ "is_local_process_zero": true,
+ "is_world_process_zero": true,
+ "log_history": [
+ {
+ "epoch": 0.013979903888160769,
+ "grad_norm": 9.807971954345703,
+ "learning_rate": 0.0,
+ "loss": 11.989814758300781,
+ "step": 1
+ },
+ {
+ "epoch": 0.027959807776321538,
+ "grad_norm": 9.834383010864258,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 11.993022918701172,
+ "step": 2
+ },
+ {
+ "epoch": 0.04193971166448231,
+ "grad_norm": 9.482470512390137,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 11.854345321655273,
+ "step": 3
+ },
+ {
+ "epoch": 0.055919615552643076,
+ "grad_norm": 7.678808689117432,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 11.618255615234375,
+ "step": 4
+ },
+ {
+ "epoch": 0.06989951944080385,
+ "grad_norm": 6.011275291442871,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 11.351423263549805,
+ "step": 5
+ },
+ {
+ "epoch": 0.08387942332896461,
+ "grad_norm": 5.244393825531006,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 11.128631591796875,
+ "step": 6
+ },
+ {
+ "epoch": 0.09785932721712538,
+ "grad_norm": 4.577618598937988,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 10.921937942504883,
+ "step": 7
+ },
+ {
+ "epoch": 0.11183923110528615,
+ "grad_norm": 4.03810453414917,
+ "learning_rate": 4.2e-05,
+ "loss": 10.742650985717773,
+ "step": 8
+ },
+ {
+ "epoch": 0.1258191349934469,
+ "grad_norm": 3.657679796218872,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 10.600778579711914,
+ "step": 9
+ },
+ {
+ "epoch": 0.1397990388816077,
+ "grad_norm": 3.352902889251709,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 10.489639282226562,
+ "step": 10
+ },
+ {
+ "epoch": 0.15377894276976845,
+ "grad_norm": 3.1162633895874023,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 10.417770385742188,
+ "step": 11
+ },
+ {
+ "epoch": 0.16775884665792923,
+ "grad_norm": 3.0402638912200928,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 10.35334587097168,
+ "step": 12
+ },
+ {
+ "epoch": 0.18173875054608998,
+ "grad_norm": 3.030630111694336,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 10.306867599487305,
+ "step": 13
+ },
+ {
+ "epoch": 0.19571865443425077,
+ "grad_norm": 3.035292148590088,
+ "learning_rate": 7.8e-05,
+ "loss": 10.26003646850586,
+ "step": 14
+ },
+ {
+ "epoch": 0.20969855832241152,
+ "grad_norm": 3.0125675201416016,
+ "learning_rate": 8.4e-05,
+ "loss": 10.219265937805176,
+ "step": 15
+ },
+ {
+ "epoch": 0.2236784622105723,
+ "grad_norm": 2.9998886585235596,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 10.161077499389648,
+ "step": 16
+ },
+ {
+ "epoch": 0.23765836609873306,
+ "grad_norm": 2.9411966800689697,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 10.107423782348633,
+ "step": 17
+ },
+ {
+ "epoch": 0.2516382699868938,
+ "grad_norm": 2.88081955909729,
+ "learning_rate": 0.000102,
+ "loss": 10.04700756072998,
+ "step": 18
+ },
+ {
+ "epoch": 0.2656181738750546,
+ "grad_norm": 2.8219687938690186,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 9.981185913085938,
+ "step": 19
+ },
+ {
+ "epoch": 0.2795980777632154,
+ "grad_norm": 2.79306960105896,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 9.89747142791748,
+ "step": 20
+ },
+ {
+ "epoch": 0.29357798165137616,
+ "grad_norm": 2.7314443588256836,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 9.829219818115234,
+ "step": 21
+ },
+ {
+ "epoch": 0.3075578855395369,
+ "grad_norm": 2.6923747062683105,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 9.747566223144531,
+ "step": 22
+ },
+ {
+ "epoch": 0.3215377894276977,
+ "grad_norm": 2.650602340698242,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 9.66455078125,
+ "step": 23
+ },
+ {
+ "epoch": 0.33551769331585846,
+ "grad_norm": 2.606977701187134,
+ "learning_rate": 0.000138,
+ "loss": 9.582326889038086,
+ "step": 24
+ },
+ {
+ "epoch": 0.34949759720401924,
+ "grad_norm": 2.567256212234497,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 9.492591857910156,
+ "step": 25
+ },
+ {
+ "epoch": 0.36347750109217997,
+ "grad_norm": 2.520740509033203,
+ "learning_rate": 0.00015,
+ "loss": 9.396563529968262,
+ "step": 26
+ },
+ {
+ "epoch": 0.37745740498034075,
+ "grad_norm": 2.471588611602783,
+ "learning_rate": 0.000156,
+ "loss": 9.303571701049805,
+ "step": 27
+ },
+ {
+ "epoch": 0.39143730886850153,
+ "grad_norm": 2.4341530799865723,
+ "learning_rate": 0.000162,
+ "loss": 9.191819190979004,
+ "step": 28
+ },
+ {
+ "epoch": 0.4054172127566623,
+ "grad_norm": 2.369244337081909,
+ "learning_rate": 0.000168,
+ "loss": 9.092012405395508,
+ "step": 29
+ },
+ {
+ "epoch": 0.41939711664482304,
+ "grad_norm": 2.28625226020813,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 8.984567642211914,
+ "step": 30
+ },
+ {
+ "epoch": 0.4333770205329838,
+ "grad_norm": 2.2082231044769287,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 8.889009475708008,
+ "step": 31
+ },
+ {
+ "epoch": 0.4473569244211446,
+ "grad_norm": 2.1429483890533447,
+ "learning_rate": 0.000186,
+ "loss": 8.778556823730469,
+ "step": 32
+ },
+ {
+ "epoch": 0.4613368283093054,
+ "grad_norm": 2.0937352180480957,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 8.661166191101074,
+ "step": 33
+ },
+ {
+ "epoch": 0.4753167321974661,
+ "grad_norm": 2.040790557861328,
+ "learning_rate": 0.000198,
+ "loss": 8.550382614135742,
+ "step": 34
+ },
+ {
+ "epoch": 0.4892966360856269,
+ "grad_norm": 1.93914794921875,
+ "learning_rate": 0.000204,
+ "loss": 8.463907241821289,
+ "step": 35
+ },
+ {
+ "epoch": 0.5032765399737876,
+ "grad_norm": 1.8624178171157837,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 8.3438720703125,
+ "step": 36
+ },
+ {
+ "epoch": 0.5172564438619485,
+ "grad_norm": 1.8107167482376099,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 8.21871566772461,
+ "step": 37
+ },
+ {
+ "epoch": 0.5312363477501092,
+ "grad_norm": 1.717979073524475,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 8.113494873046875,
+ "step": 38
+ },
+ {
+ "epoch": 0.54521625163827,
+ "grad_norm": 1.668742060661316,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 8.006099700927734,
+ "step": 39
+ },
+ {
+ "epoch": 0.5591961555264308,
+ "grad_norm": 1.6147786378860474,
+ "learning_rate": 0.000234,
+ "loss": 7.911509037017822,
+ "step": 40
+ },
+ {
+ "epoch": 0.5731760594145915,
+ "grad_norm": 1.535750150680542,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 7.822839736938477,
+ "step": 41
+ },
+ {
+ "epoch": 0.5871559633027523,
+ "grad_norm": 1.4700065851211548,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 7.713842868804932,
+ "step": 42
+ },
+ {
+ "epoch": 0.601135867190913,
+ "grad_norm": 1.39020574092865,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 7.6040191650390625,
+ "step": 43
+ },
+ {
+ "epoch": 0.6151157710790738,
+ "grad_norm": 1.2875399589538574,
+ "learning_rate": 0.000258,
+ "loss": 7.550642013549805,
+ "step": 44
+ },
+ {
+ "epoch": 0.6290956749672346,
+ "grad_norm": 1.2094247341156006,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 7.460824012756348,
+ "step": 45
+ },
+ {
+ "epoch": 0.6430755788553953,
+ "grad_norm": 1.126452088356018,
+ "learning_rate": 0.00027,
+ "loss": 7.380537986755371,
+ "step": 46
+ },
+ {
+ "epoch": 0.6570554827435562,
+ "grad_norm": 1.0313163995742798,
+ "learning_rate": 0.000276,
+ "loss": 7.286153793334961,
+ "step": 47
+ },
+ {
+ "epoch": 0.6710353866317169,
+ "grad_norm": 0.9172859787940979,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 7.2064714431762695,
+ "step": 48
+ },
+ {
+ "epoch": 0.6850152905198776,
+ "grad_norm": 0.8148201107978821,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 7.158207416534424,
+ "step": 49
+ },
+ {
+ "epoch": 0.6989951944080385,
+ "grad_norm": 0.650123119354248,
+ "learning_rate": 0.000294,
+ "loss": 7.108791828155518,
+ "step": 50
+ },
+ {
+ "epoch": 0.7129750982961992,
+ "grad_norm": 0.5437585711479187,
+ "learning_rate": 0.0003,
+ "loss": 7.083050727844238,
+ "step": 51
+ },
+ {
+ "epoch": 0.7269550021843599,
+ "grad_norm": 0.46762895584106445,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 7.058027267456055,
+ "step": 52
+ },
+ {
+ "epoch": 0.7409349060725208,
+ "grad_norm": 0.47947561740875244,
+ "learning_rate": 0.000312,
+ "loss": 7.015172958374023,
+ "step": 53
+ },
+ {
+ "epoch": 0.7549148099606815,
+ "grad_norm": 0.7546492218971252,
+ "learning_rate": 0.000318,
+ "loss": 7.024629592895508,
+ "step": 54
+ },
+ {
+ "epoch": 0.7688947138488423,
+ "grad_norm": 0.6153718829154968,
+ "learning_rate": 0.000324,
+ "loss": 7.026667594909668,
+ "step": 55
+ },
+ {
+ "epoch": 0.7828746177370031,
+ "grad_norm": 0.3359069228172302,
+ "learning_rate": 0.00033,
+ "loss": 7.008166313171387,
+ "step": 56
+ },
+ {
+ "epoch": 0.7968545216251638,
+ "grad_norm": 0.48906823992729187,
+ "learning_rate": 0.000336,
+ "loss": 7.019716262817383,
+ "step": 57
+ },
+ {
+ "epoch": 0.8108344255133246,
+ "grad_norm": 0.5525421500205994,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 7.02108097076416,
+ "step": 58
+ },
+ {
+ "epoch": 0.8248143294014854,
+ "grad_norm": 0.3103712201118469,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 7.003164768218994,
+ "step": 59
+ },
+ {
+ "epoch": 0.8387942332896461,
+ "grad_norm": 0.4431874752044678,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 7.003463268280029,
+ "step": 60
+ },
+ {
+ "epoch": 0.8527741371778069,
+ "grad_norm": 0.4291120767593384,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 6.96931791305542,
+ "step": 61
+ },
+ {
+ "epoch": 0.8667540410659677,
+ "grad_norm": 0.6566054224967957,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 6.989445686340332,
+ "step": 62
+ },
+ {
+ "epoch": 0.8807339449541285,
+ "grad_norm": 0.20663189888000488,
+ "learning_rate": 0.000372,
+ "loss": 6.9669342041015625,
+ "step": 63
+ },
+ {
+ "epoch": 0.8947138488422892,
+ "grad_norm": 0.6242535710334778,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 6.949883460998535,
+ "step": 64
+ },
+ {
+ "epoch": 0.9086937527304499,
+ "grad_norm": 0.6984224915504456,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 6.955153465270996,
+ "step": 65
+ },
+ {
+ "epoch": 0.9226736566186108,
+ "grad_norm": 0.6328083872795105,
+ "learning_rate": 0.00039,
+ "loss": 6.965421676635742,
+ "step": 66
+ },
+ {
+ "epoch": 0.9366535605067715,
+ "grad_norm": 1.213352918624878,
+ "learning_rate": 0.000396,
+ "loss": 6.9454345703125,
+ "step": 67
+ },
+ {
+ "epoch": 0.9506334643949322,
+ "grad_norm": 0.9221940636634827,
+ "learning_rate": 0.000402,
+ "loss": 6.923908233642578,
+ "step": 68
+ },
+ {
+ "epoch": 0.9646133682830931,
+ "grad_norm": 0.6825450658798218,
+ "learning_rate": 0.000408,
+ "loss": 6.910131454467773,
+ "step": 69
+ },
+ {
+ "epoch": 0.9785932721712538,
+ "grad_norm": 0.5690162181854248,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 6.89891242980957,
+ "step": 70
+ },
+ {
+ "epoch": 0.9925731760594146,
+ "grad_norm": 0.4320870041847229,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 6.896081924438477,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.31632405519485474,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 6.897444725036621,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 7.757839679718018,
+ "eval_runtime": 43.8338,
+ "eval_samples_per_second": 55.71,
+ "eval_steps_per_second": 3.49,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139799038881607,
+ "grad_norm": 0.3789916932582855,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 6.877245903015137,
+ "step": 73
+ },
+ {
+ "epoch": 1.0279598077763215,
+ "grad_norm": 0.9167932868003845,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 6.921600341796875,
+ "step": 74
+ },
+ {
+ "epoch": 1.0419397116644824,
+ "grad_norm": 0.581188440322876,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 6.861001968383789,
+ "step": 75
+ },
+ {
+ "epoch": 1.0559196155526431,
+ "grad_norm": 0.4179714024066925,
+ "learning_rate": 0.00045,
+ "loss": 6.875657081604004,
+ "step": 76
+ },
+ {
+ "epoch": 1.0698995194408039,
+ "grad_norm": 1.0669957399368286,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 6.857122421264648,
+ "step": 77
+ },
+ {
+ "epoch": 1.0838794233289646,
+ "grad_norm": 0.27855145931243896,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 6.828852653503418,
+ "step": 78
+ },
+ {
+ "epoch": 1.0978593272171253,
+ "grad_norm": 0.7192047834396362,
+ "learning_rate": 0.000468,
+ "loss": 6.870839595794678,
+ "step": 79
+ },
+ {
+ "epoch": 1.1118392311052863,
+ "grad_norm": 0.5583325624465942,
+ "learning_rate": 0.000474,
+ "loss": 6.8497514724731445,
+ "step": 80
+ },
+ {
+ "epoch": 1.125819134993447,
+ "grad_norm": 0.3001925051212311,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 6.858528137207031,
+ "step": 81
+ },
+ {
+ "epoch": 1.1397990388816077,
+ "grad_norm": 0.2408239096403122,
+ "learning_rate": 0.000486,
+ "loss": 6.83231258392334,
+ "step": 82
+ },
+ {
+ "epoch": 1.1537789427697684,
+ "grad_norm": 0.28230324387550354,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 6.815476894378662,
+ "step": 83
+ },
+ {
+ "epoch": 1.1677588466579292,
+ "grad_norm": 0.3247123658657074,
+ "learning_rate": 0.000498,
+ "loss": 6.780126094818115,
+ "step": 84
+ },
+ {
+ "epoch": 1.18173875054609,
+ "grad_norm": 0.25713011622428894,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 6.7798309326171875,
+ "step": 85
+ },
+ {
+ "epoch": 1.1957186544342508,
+ "grad_norm": 0.5386835932731628,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 6.791745185852051,
+ "step": 86
+ },
+ {
+ "epoch": 1.2096985583224116,
+ "grad_norm": 0.2226393222808838,
+ "learning_rate": 0.000516,
+ "loss": 6.7826972007751465,
+ "step": 87
+ },
+ {
+ "epoch": 1.2236784622105723,
+ "grad_norm": 0.4338362216949463,
+ "learning_rate": 0.000522,
+ "loss": 6.805043697357178,
+ "step": 88
+ },
+ {
+ "epoch": 1.237658366098733,
+ "grad_norm": 0.2953208386898041,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 6.768434524536133,
+ "step": 89
+ },
+ {
+ "epoch": 1.2516382699868938,
+ "grad_norm": 0.13453717529773712,
+ "learning_rate": 0.000534,
+ "loss": 6.773697376251221,
+ "step": 90
+ },
+ {
+ "epoch": 1.2656181738750547,
+ "grad_norm": 0.35774412751197815,
+ "learning_rate": 0.00054,
+ "loss": 6.766414642333984,
+ "step": 91
+ },
+ {
+ "epoch": 1.2795980777632154,
+ "grad_norm": 0.4669720530509949,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 6.754847526550293,
+ "step": 92
+ },
+ {
+ "epoch": 1.2935779816513762,
+ "grad_norm": 0.13806621730327606,
+ "learning_rate": 0.000552,
+ "loss": 6.746858596801758,
+ "step": 93
+ },
+ {
+ "epoch": 1.307557885539537,
+ "grad_norm": 0.3280332386493683,
+ "learning_rate": 0.000558,
+ "loss": 6.715662956237793,
+ "step": 94
+ },
+ {
+ "epoch": 1.3215377894276976,
+ "grad_norm": 0.4689937233924866,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 6.734938144683838,
+ "step": 95
+ },
+ {
+ "epoch": 1.3355176933158583,
+ "grad_norm": 0.35371264815330505,
+ "learning_rate": 0.00057,
+ "loss": 6.748386383056641,
+ "step": 96
+ },
+ {
+ "epoch": 1.3494975972040193,
+ "grad_norm": 0.15232303738594055,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 6.705557823181152,
+ "step": 97
+ },
+ {
+ "epoch": 1.36347750109218,
+ "grad_norm": 0.30132821202278137,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 6.7199859619140625,
+ "step": 98
+ },
+ {
+ "epoch": 1.3774574049803407,
+ "grad_norm": 0.42174842953681946,
+ "learning_rate": 0.000588,
+ "loss": 6.715370178222656,
+ "step": 99
+ },
+ {
+ "epoch": 1.3914373088685015,
+ "grad_norm": 0.6257228851318359,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 6.707026958465576,
+ "step": 100
+ },
+ {
+ "epoch": 1.4054172127566624,
+ "grad_norm": 0.4551195800304413,
+ "learning_rate": 0.0006,
+ "loss": 6.7078423500061035,
+ "step": 101
+ },
+ {
+ "epoch": 1.4193971166448232,
+ "grad_norm": 0.41940346360206604,
+ "learning_rate": 0.0006,
+ "loss": 6.6959357261657715,
+ "step": 102
+ },
+ {
+ "epoch": 1.4333770205329839,
+ "grad_norm": 0.32251718640327454,
+ "learning_rate": 0.0006,
+ "loss": 6.689168930053711,
+ "step": 103
+ },
+ {
+ "epoch": 1.4473569244211446,
+ "grad_norm": 0.2992720305919647,
+ "learning_rate": 0.0006,
+ "loss": 6.680738925933838,
+ "step": 104
+ },
+ {
+ "epoch": 1.4613368283093053,
+ "grad_norm": 0.3228456974029541,
+ "learning_rate": 0.0006,
+ "loss": 6.672350883483887,
+ "step": 105
+ },
+ {
+ "epoch": 1.475316732197466,
+ "grad_norm": 0.24954743683338165,
+ "learning_rate": 0.0006,
+ "loss": 6.653716087341309,
+ "step": 106
+ },
+ {
+ "epoch": 1.4892966360856268,
+ "grad_norm": 0.30740687251091003,
+ "learning_rate": 0.0006,
+ "loss": 6.676583290100098,
+ "step": 107
+ },
+ {
+ "epoch": 1.5032765399737875,
+ "grad_norm": 0.24950599670410156,
+ "learning_rate": 0.0006,
+ "loss": 6.656691551208496,
+ "step": 108
+ },
+ {
+ "epoch": 1.5172564438619485,
+ "grad_norm": 0.24293005466461182,
+ "learning_rate": 0.0006,
+ "loss": 6.640995979309082,
+ "step": 109
+ },
+ {
+ "epoch": 1.5312363477501092,
+ "grad_norm": 0.30167272686958313,
+ "learning_rate": 0.0006,
+ "loss": 6.647380352020264,
+ "step": 110
+ },
+ {
+ "epoch": 1.5452162516382701,
+ "grad_norm": 0.4424632787704468,
+ "learning_rate": 0.0006,
+ "loss": 6.6548261642456055,
+ "step": 111
+ },
+ {
+ "epoch": 1.5591961555264309,
+ "grad_norm": 0.5295748114585876,
+ "learning_rate": 0.0006,
+ "loss": 6.64370059967041,
+ "step": 112
+ },
+ {
+ "epoch": 1.5731760594145916,
+ "grad_norm": 0.6829339265823364,
+ "learning_rate": 0.0006,
+ "loss": 6.654196739196777,
+ "step": 113
+ },
+ {
+ "epoch": 1.5871559633027523,
+ "grad_norm": 0.6534460186958313,
+ "learning_rate": 0.0006,
+ "loss": 6.675765037536621,
+ "step": 114
+ },
+ {
+ "epoch": 1.601135867190913,
+ "grad_norm": 0.6172244548797607,
+ "learning_rate": 0.0006,
+ "loss": 6.631234169006348,
+ "step": 115
+ },
+ {
+ "epoch": 1.6151157710790738,
+ "grad_norm": 0.5650008320808411,
+ "learning_rate": 0.0006,
+ "loss": 6.654262542724609,
+ "step": 116
+ },
+ {
+ "epoch": 1.6290956749672345,
+ "grad_norm": 0.3890475928783417,
+ "learning_rate": 0.0006,
+ "loss": 6.627526760101318,
+ "step": 117
+ },
+ {
+ "epoch": 1.6430755788553952,
+ "grad_norm": 0.6409873366355896,
+ "learning_rate": 0.0006,
+ "loss": 6.619794845581055,
+ "step": 118
+ },
+ {
+ "epoch": 1.6570554827435562,
+ "grad_norm": 0.5052326321601868,
+ "learning_rate": 0.0006,
+ "loss": 6.612556457519531,
+ "step": 119
+ },
+ {
+ "epoch": 1.671035386631717,
+ "grad_norm": 0.5001237988471985,
+ "learning_rate": 0.0006,
+ "loss": 6.577266693115234,
+ "step": 120
+ },
+ {
+ "epoch": 1.6850152905198776,
+ "grad_norm": 0.5328938364982605,
+ "learning_rate": 0.0006,
+ "loss": 6.59553337097168,
+ "step": 121
+ },
+ {
+ "epoch": 1.6989951944080386,
+ "grad_norm": 0.3568951189517975,
+ "learning_rate": 0.0006,
+ "loss": 6.602717399597168,
+ "step": 122
+ },
+ {
+ "epoch": 1.7129750982961993,
+ "grad_norm": 0.4017309546470642,
+ "learning_rate": 0.0006,
+ "loss": 6.589657783508301,
+ "step": 123
+ },
+ {
+ "epoch": 1.72695500218436,
+ "grad_norm": 0.21432629227638245,
+ "learning_rate": 0.0006,
+ "loss": 6.586555480957031,
+ "step": 124
+ },
+ {
+ "epoch": 1.7409349060725208,
+ "grad_norm": 0.21038052439689636,
+ "learning_rate": 0.0006,
+ "loss": 6.576569557189941,
+ "step": 125
+ },
+ {
+ "epoch": 1.7549148099606815,
+ "grad_norm": 0.23074904084205627,
+ "learning_rate": 0.0006,
+ "loss": 6.5880632400512695,
+ "step": 126
+ },
+ {
+ "epoch": 1.7688947138488422,
+ "grad_norm": 0.42963048815727234,
+ "learning_rate": 0.0006,
+ "loss": 6.603862762451172,
+ "step": 127
+ },
+ {
+ "epoch": 1.782874617737003,
+ "grad_norm": 0.361331045627594,
+ "learning_rate": 0.0006,
+ "loss": 6.579834938049316,
+ "step": 128
+ },
+ {
+ "epoch": 1.7968545216251637,
+ "grad_norm": 0.4951060712337494,
+ "learning_rate": 0.0006,
+ "loss": 6.570443630218506,
+ "step": 129
+ },
+ {
+ "epoch": 1.8108344255133246,
+ "grad_norm": 0.2258434295654297,
+ "learning_rate": 0.0006,
+ "loss": 6.5664777755737305,
+ "step": 130
+ },
+ {
+ "epoch": 1.8248143294014854,
+ "grad_norm": 0.2922155559062958,
+ "learning_rate": 0.0006,
+ "loss": 6.561326503753662,
+ "step": 131
+ },
+ {
+ "epoch": 1.838794233289646,
+ "grad_norm": 0.19068220257759094,
+ "learning_rate": 0.0006,
+ "loss": 6.528727054595947,
+ "step": 132
+ },
+ {
+ "epoch": 1.852774137177807,
+ "grad_norm": 0.2122010439634323,
+ "learning_rate": 0.0006,
+ "loss": 6.535636901855469,
+ "step": 133
+ },
+ {
+ "epoch": 1.8667540410659678,
+ "grad_norm": 0.25760164856910706,
+ "learning_rate": 0.0006,
+ "loss": 6.530498504638672,
+ "step": 134
+ },
+ {
+ "epoch": 1.8807339449541285,
+ "grad_norm": 0.1761016845703125,
+ "learning_rate": 0.0006,
+ "loss": 6.514466285705566,
+ "step": 135
+ },
+ {
+ "epoch": 1.8947138488422892,
+ "grad_norm": 0.2250051498413086,
+ "learning_rate": 0.0006,
+ "loss": 6.521268844604492,
+ "step": 136
+ },
+ {
+ "epoch": 1.90869375273045,
+ "grad_norm": 0.34458497166633606,
+ "learning_rate": 0.0006,
+ "loss": 6.512831687927246,
+ "step": 137
+ },
+ {
+ "epoch": 1.9226736566186107,
+ "grad_norm": 0.3468617796897888,
+ "learning_rate": 0.0006,
+ "loss": 6.515641689300537,
+ "step": 138
+ },
+ {
+ "epoch": 1.9366535605067714,
+ "grad_norm": 0.5051495432853699,
+ "learning_rate": 0.0006,
+ "loss": 6.5147905349731445,
+ "step": 139
+ },
+ {
+ "epoch": 1.9506334643949321,
+ "grad_norm": 0.7106727361679077,
+ "learning_rate": 0.0006,
+ "loss": 6.519277572631836,
+ "step": 140
+ },
+ {
+ "epoch": 1.964613368283093,
+ "grad_norm": 0.8881394267082214,
+ "learning_rate": 0.0006,
+ "loss": 6.526865482330322,
+ "step": 141
+ },
+ {
+ "epoch": 1.9785932721712538,
+ "grad_norm": 0.5552834272384644,
+ "learning_rate": 0.0006,
+ "loss": 6.469970226287842,
+ "step": 142
+ },
+ {
+ "epoch": 1.9925731760594148,
+ "grad_norm": 0.6903126835823059,
+ "learning_rate": 0.0006,
+ "loss": 6.476300239562988,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.47679027915000916,
+ "learning_rate": 0.0006,
+ "loss": 6.463827133178711,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 7.388528823852539,
+ "eval_runtime": 44.2519,
+ "eval_samples_per_second": 55.184,
+ "eval_steps_per_second": 3.457,
+ "step": 144
+ },
+ {
+ "epoch": 2.0139799038881607,
+ "grad_norm": 0.4719221293926239,
+ "learning_rate": 0.0006,
+ "loss": 6.480956077575684,
+ "step": 145
+ },
+ {
+ "epoch": 2.0279598077763215,
+ "grad_norm": 0.41137924790382385,
+ "learning_rate": 0.0006,
+ "loss": 6.449707984924316,
+ "step": 146
+ },
+ {
+ "epoch": 2.041939711664482,
+ "grad_norm": 0.4237765371799469,
+ "learning_rate": 0.0006,
+ "loss": 6.467435836791992,
+ "step": 147
+ },
+ {
+ "epoch": 2.055919615552643,
+ "grad_norm": 0.44081810116767883,
+ "learning_rate": 0.0006,
+ "loss": 6.436868667602539,
+ "step": 148
+ },
+ {
+ "epoch": 2.0698995194408036,
+ "grad_norm": 0.4163798391819,
+ "learning_rate": 0.0006,
+ "loss": 6.4642014503479,
+ "step": 149
+ },
+ {
+ "epoch": 2.083879423328965,
+ "grad_norm": 0.3831583261489868,
+ "learning_rate": 0.0006,
+ "loss": 6.454092025756836,
+ "step": 150
+ },
+ {
+ "epoch": 2.0978593272171255,
+ "grad_norm": 0.37721413373947144,
+ "learning_rate": 0.0006,
+ "loss": 6.426377296447754,
+ "step": 151
+ },
+ {
+ "epoch": 2.1118392311052863,
+ "grad_norm": 0.3323550224304199,
+ "learning_rate": 0.0006,
+ "loss": 6.421375274658203,
+ "step": 152
+ },
+ {
+ "epoch": 2.125819134993447,
+ "grad_norm": 0.47739624977111816,
+ "learning_rate": 0.0006,
+ "loss": 6.412004470825195,
+ "step": 153
+ },
+ {
+ "epoch": 2.1397990388816077,
+ "grad_norm": 0.8530274629592896,
+ "learning_rate": 0.0006,
+ "loss": 6.410468578338623,
+ "step": 154
+ },
+ {
+ "epoch": 2.1537789427697684,
+ "grad_norm": 0.6420364379882812,
+ "learning_rate": 0.0006,
+ "loss": 6.413525581359863,
+ "step": 155
+ },
+ {
+ "epoch": 2.167758846657929,
+ "grad_norm": 0.5005049109458923,
+ "learning_rate": 0.0006,
+ "loss": 6.401463508605957,
+ "step": 156
+ },
+ {
+ "epoch": 2.18173875054609,
+ "grad_norm": 0.3614683449268341,
+ "learning_rate": 0.0006,
+ "loss": 6.390063285827637,
+ "step": 157
+ },
+ {
+ "epoch": 2.1957186544342506,
+ "grad_norm": 0.595215380191803,
+ "learning_rate": 0.0006,
+ "loss": 6.369806289672852,
+ "step": 158
+ },
+ {
+ "epoch": 2.2096985583224114,
+ "grad_norm": 0.5700321793556213,
+ "learning_rate": 0.0006,
+ "loss": 6.368378639221191,
+ "step": 159
+ },
+ {
+ "epoch": 2.2236784622105725,
+ "grad_norm": 0.36273983120918274,
+ "learning_rate": 0.0006,
+ "loss": 6.366860389709473,
+ "step": 160
+ },
+ {
+ "epoch": 2.2376583660987333,
+ "grad_norm": 0.2850998342037201,
+ "learning_rate": 0.0006,
+ "loss": 6.352144718170166,
+ "step": 161
+ },
+ {
+ "epoch": 2.251638269986894,
+ "grad_norm": 0.38558584451675415,
+ "learning_rate": 0.0006,
+ "loss": 6.375765800476074,
+ "step": 162
+ },
+ {
+ "epoch": 2.2656181738750547,
+ "grad_norm": 0.34809231758117676,
+ "learning_rate": 0.0006,
+ "loss": 6.350445747375488,
+ "step": 163
+ },
+ {
+ "epoch": 2.2795980777632154,
+ "grad_norm": 0.5211818814277649,
+ "learning_rate": 0.0006,
+ "loss": 6.354585647583008,
+ "step": 164
+ },
+ {
+ "epoch": 2.293577981651376,
+ "grad_norm": 1.0809133052825928,
+ "learning_rate": 0.0006,
+ "loss": 6.3752007484436035,
+ "step": 165
+ },
+ {
+ "epoch": 2.307557885539537,
+ "grad_norm": 0.8293641209602356,
+ "learning_rate": 0.0006,
+ "loss": 6.35113525390625,
+ "step": 166
+ },
+ {
+ "epoch": 2.3215377894276976,
+ "grad_norm": 0.3428577780723572,
+ "learning_rate": 0.0006,
+ "loss": 6.334470748901367,
+ "step": 167
+ },
+ {
+ "epoch": 2.3355176933158583,
+ "grad_norm": 0.7587600946426392,
+ "learning_rate": 0.0006,
+ "loss": 6.353979587554932,
+ "step": 168
+ },
+ {
+ "epoch": 2.349497597204019,
+ "grad_norm": 0.4227249026298523,
+ "learning_rate": 0.0006,
+ "loss": 6.34018611907959,
+ "step": 169
+ },
+ {
+ "epoch": 2.36347750109218,
+ "grad_norm": 0.4226846694946289,
+ "learning_rate": 0.0006,
+ "loss": 6.290019989013672,
+ "step": 170
+ },
+ {
+ "epoch": 2.3774574049803405,
+ "grad_norm": 0.38412365317344666,
+ "learning_rate": 0.0006,
+ "loss": 6.309510231018066,
+ "step": 171
+ },
+ {
+ "epoch": 2.3914373088685017,
+ "grad_norm": 0.45698508620262146,
+ "learning_rate": 0.0006,
+ "loss": 6.283290863037109,
+ "step": 172
+ },
+ {
+ "epoch": 2.4054172127566624,
+ "grad_norm": 0.7575915455818176,
+ "learning_rate": 0.0006,
+ "loss": 6.306073188781738,
+ "step": 173
+ },
+ {
+ "epoch": 2.419397116644823,
+ "grad_norm": 0.695123553276062,
+ "learning_rate": 0.0006,
+ "loss": 6.308144569396973,
+ "step": 174
+ },
+ {
+ "epoch": 2.433377020532984,
+ "grad_norm": 0.5035743117332458,
+ "learning_rate": 0.0006,
+ "loss": 6.282073974609375,
+ "step": 175
+ },
+ {
+ "epoch": 2.4473569244211446,
+ "grad_norm": 0.3158020079135895,
+ "learning_rate": 0.0006,
+ "loss": 6.282169342041016,
+ "step": 176
+ },
+ {
+ "epoch": 2.4613368283093053,
+ "grad_norm": 0.4829689860343933,
+ "learning_rate": 0.0006,
+ "loss": 6.264578819274902,
+ "step": 177
+ },
+ {
+ "epoch": 2.475316732197466,
+ "grad_norm": 0.3992770314216614,
+ "learning_rate": 0.0006,
+ "loss": 6.228628158569336,
+ "step": 178
+ },
+ {
+ "epoch": 2.489296636085627,
+ "grad_norm": 0.40887606143951416,
+ "learning_rate": 0.0006,
+ "loss": 6.230792045593262,
+ "step": 179
+ },
+ {
+ "epoch": 2.5032765399737875,
+ "grad_norm": 0.3540310263633728,
+ "learning_rate": 0.0006,
+ "loss": 6.222573280334473,
+ "step": 180
+ },
+ {
+ "epoch": 2.5172564438619487,
+ "grad_norm": 0.496219664812088,
+ "learning_rate": 0.0006,
+ "loss": 6.212109565734863,
+ "step": 181
+ },
+ {
+ "epoch": 2.5312363477501094,
+ "grad_norm": 0.435173898935318,
+ "learning_rate": 0.0006,
+ "loss": 6.221210479736328,
+ "step": 182
+ },
+ {
+ "epoch": 2.54521625163827,
+ "grad_norm": 0.5364007949829102,
+ "learning_rate": 0.0006,
+ "loss": 6.217929840087891,
+ "step": 183
+ },
+ {
+ "epoch": 2.559196155526431,
+ "grad_norm": 0.5946390628814697,
+ "learning_rate": 0.0006,
+ "loss": 6.189267158508301,
+ "step": 184
+ },
+ {
+ "epoch": 2.5731760594145916,
+ "grad_norm": 0.41621312499046326,
+ "learning_rate": 0.0006,
+ "loss": 6.182415008544922,
+ "step": 185
+ },
+ {
+ "epoch": 2.5871559633027523,
+ "grad_norm": 0.5442072749137878,
+ "learning_rate": 0.0006,
+ "loss": 6.150757789611816,
+ "step": 186
+ },
+ {
+ "epoch": 2.601135867190913,
+ "grad_norm": 0.727843165397644,
+ "learning_rate": 0.0006,
+ "loss": 6.146082878112793,
+ "step": 187
+ },
+ {
+ "epoch": 2.615115771079074,
+ "grad_norm": 0.8898891806602478,
+ "learning_rate": 0.0006,
+ "loss": 6.190483093261719,
+ "step": 188
+ },
+ {
+ "epoch": 2.6290956749672345,
+ "grad_norm": 0.5173947215080261,
+ "learning_rate": 0.0006,
+ "loss": 6.151251792907715,
+ "step": 189
+ },
+ {
+ "epoch": 2.6430755788553952,
+ "grad_norm": 0.6476729512214661,
+ "learning_rate": 0.0006,
+ "loss": 6.154841423034668,
+ "step": 190
+ },
+ {
+ "epoch": 2.657055482743556,
+ "grad_norm": 0.3538810908794403,
+ "learning_rate": 0.0006,
+ "loss": 6.103879928588867,
+ "step": 191
+ },
+ {
+ "epoch": 2.6710353866317167,
+ "grad_norm": 0.4773508310317993,
+ "learning_rate": 0.0006,
+ "loss": 6.118101119995117,
+ "step": 192
+ },
+ {
+ "epoch": 2.6850152905198774,
+ "grad_norm": 0.29213786125183105,
+ "learning_rate": 0.0006,
+ "loss": 6.108916282653809,
+ "step": 193
+ },
+ {
+ "epoch": 2.6989951944080386,
+ "grad_norm": 0.40800607204437256,
+ "learning_rate": 0.0006,
+ "loss": 6.113438606262207,
+ "step": 194
+ },
+ {
+ "epoch": 2.7129750982961993,
+ "grad_norm": 0.31157299876213074,
+ "learning_rate": 0.0006,
+ "loss": 6.101809501647949,
+ "step": 195
+ },
+ {
+ "epoch": 2.72695500218436,
+ "grad_norm": 0.28660309314727783,
+ "learning_rate": 0.0006,
+ "loss": 6.075886249542236,
+ "step": 196
+ },
+ {
+ "epoch": 2.7409349060725208,
+ "grad_norm": 0.3810449540615082,
+ "learning_rate": 0.0006,
+ "loss": 6.053257942199707,
+ "step": 197
+ },
+ {
+ "epoch": 2.7549148099606815,
+ "grad_norm": 0.21741755306720734,
+ "learning_rate": 0.0006,
+ "loss": 6.013825416564941,
+ "step": 198
+ },
+ {
+ "epoch": 2.7688947138488422,
+ "grad_norm": 0.2777678966522217,
+ "learning_rate": 0.0006,
+ "loss": 6.054204940795898,
+ "step": 199
+ },
+ {
+ "epoch": 2.782874617737003,
+ "grad_norm": 0.28503066301345825,
+ "learning_rate": 0.0006,
+ "loss": 6.035628318786621,
+ "step": 200
+ },
+ {
+ "epoch": 2.7968545216251637,
+ "grad_norm": 0.41954755783081055,
+ "learning_rate": 0.0006,
+ "loss": 6.028354644775391,
+ "step": 201
+ },
+ {
+ "epoch": 2.810834425513325,
+ "grad_norm": 0.8785563111305237,
+ "learning_rate": 0.0006,
+ "loss": 6.055761337280273,
+ "step": 202
+ },
+ {
+ "epoch": 2.8248143294014856,
+ "grad_norm": 1.7459558248519897,
+ "learning_rate": 0.0006,
+ "loss": 6.11599588394165,
+ "step": 203
+ },
+ {
+ "epoch": 2.8387942332896463,
+ "grad_norm": 0.5725523233413696,
+ "learning_rate": 0.0006,
+ "loss": 6.024280548095703,
+ "step": 204
+ },
+ {
+ "epoch": 2.852774137177807,
+ "grad_norm": 0.5913150906562805,
+ "learning_rate": 0.0006,
+ "loss": 6.050281524658203,
+ "step": 205
+ },
+ {
+ "epoch": 2.8667540410659678,
+ "grad_norm": 0.5929384827613831,
+ "learning_rate": 0.0006,
+ "loss": 6.041121482849121,
+ "step": 206
+ },
+ {
+ "epoch": 2.8807339449541285,
+ "grad_norm": 0.5650724768638611,
+ "learning_rate": 0.0006,
+ "loss": 6.004258155822754,
+ "step": 207
+ },
+ {
+ "epoch": 2.894713848842289,
+ "grad_norm": 0.3420545756816864,
+ "learning_rate": 0.0006,
+ "loss": 5.983296871185303,
+ "step": 208
+ },
+ {
+ "epoch": 2.90869375273045,
+ "grad_norm": 0.2960914075374603,
+ "learning_rate": 0.0006,
+ "loss": 5.988578796386719,
+ "step": 209
+ },
+ {
+ "epoch": 2.9226736566186107,
+ "grad_norm": 0.3252662718296051,
+ "learning_rate": 0.0006,
+ "loss": 5.99103307723999,
+ "step": 210
+ },
+ {
+ "epoch": 2.9366535605067714,
+ "grad_norm": 0.4851132929325104,
+ "learning_rate": 0.0006,
+ "loss": 6.0028977394104,
+ "step": 211
+ },
+ {
+ "epoch": 2.950633464394932,
+ "grad_norm": 0.5639995336532593,
+ "learning_rate": 0.0006,
+ "loss": 5.965080738067627,
+ "step": 212
+ },
+ {
+ "epoch": 2.964613368283093,
+ "grad_norm": 0.4514601230621338,
+ "learning_rate": 0.0006,
+ "loss": 5.961450576782227,
+ "step": 213
+ },
+ {
+ "epoch": 2.9785932721712536,
+ "grad_norm": 0.5397921800613403,
+ "learning_rate": 0.0006,
+ "loss": 5.965290546417236,
+ "step": 214
+ },
+ {
+ "epoch": 2.9925731760594148,
+ "grad_norm": 0.4735587239265442,
+ "learning_rate": 0.0006,
+ "loss": 5.952754497528076,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.32061058282852173,
+ "learning_rate": 0.0006,
+ "loss": 5.961667060852051,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 6.8517303466796875,
+ "eval_runtime": 44.03,
+ "eval_samples_per_second": 55.462,
+ "eval_steps_per_second": 3.475,
+ "step": 216
+ },
+ {
+ "epoch": 3.0139799038881607,
+ "grad_norm": 0.3537784814834595,
+ "learning_rate": 0.0006,
+ "loss": 5.928008079528809,
+ "step": 217
+ },
+ {
+ "epoch": 3.0279598077763215,
+ "grad_norm": 0.40713080763816833,
+ "learning_rate": 0.0006,
+ "loss": 5.9150800704956055,
+ "step": 218
+ },
+ {
+ "epoch": 3.041939711664482,
+ "grad_norm": 0.2548826336860657,
+ "learning_rate": 0.0006,
+ "loss": 5.919757843017578,
+ "step": 219
+ },
+ {
+ "epoch": 3.055919615552643,
+ "grad_norm": 0.2818543016910553,
+ "learning_rate": 0.0006,
+ "loss": 5.913688659667969,
+ "step": 220
+ },
+ {
+ "epoch": 3.0698995194408036,
+ "grad_norm": 0.4196692705154419,
+ "learning_rate": 0.0006,
+ "loss": 5.8675336837768555,
+ "step": 221
+ },
+ {
+ "epoch": 3.083879423328965,
+ "grad_norm": 0.35272282361984253,
+ "learning_rate": 0.0006,
+ "loss": 5.878874778747559,
+ "step": 222
+ },
+ {
+ "epoch": 3.0978593272171255,
+ "grad_norm": 0.3254282772541046,
+ "learning_rate": 0.0006,
+ "loss": 5.8823041915893555,
+ "step": 223
+ },
+ {
+ "epoch": 3.1118392311052863,
+ "grad_norm": 0.4052561819553375,
+ "learning_rate": 0.0006,
+ "loss": 5.867744445800781,
+ "step": 224
+ },
+ {
+ "epoch": 3.125819134993447,
+ "grad_norm": 0.31246256828308105,
+ "learning_rate": 0.0006,
+ "loss": 5.886094093322754,
+ "step": 225
+ },
+ {
+ "epoch": 3.1397990388816077,
+ "grad_norm": 0.3479118347167969,
+ "learning_rate": 0.0006,
+ "loss": 5.850762367248535,
+ "step": 226
+ },
+ {
+ "epoch": 3.1537789427697684,
+ "grad_norm": 0.5037238597869873,
+ "learning_rate": 0.0006,
+ "loss": 5.844175815582275,
+ "step": 227
+ },
+ {
+ "epoch": 3.167758846657929,
+ "grad_norm": 0.6271815896034241,
+ "learning_rate": 0.0006,
+ "loss": 5.871790885925293,
+ "step": 228
+ },
+ {
+ "epoch": 3.18173875054609,
+ "grad_norm": 0.43838298320770264,
+ "learning_rate": 0.0006,
+ "loss": 5.844024658203125,
+ "step": 229
+ },
+ {
+ "epoch": 3.1957186544342506,
+ "grad_norm": 0.4755159616470337,
+ "learning_rate": 0.0006,
+ "loss": 5.846892356872559,
+ "step": 230
+ },
+ {
+ "epoch": 3.2096985583224114,
+ "grad_norm": 0.5229779481887817,
+ "learning_rate": 0.0006,
+ "loss": 5.827000617980957,
+ "step": 231
+ },
+ {
+ "epoch": 3.2236784622105725,
+ "grad_norm": 0.8264499306678772,
+ "learning_rate": 0.0006,
+ "loss": 5.867050647735596,
+ "step": 232
+ },
+ {
+ "epoch": 3.2376583660987333,
+ "grad_norm": 1.0607538223266602,
+ "learning_rate": 0.0006,
+ "loss": 5.877876281738281,
+ "step": 233
+ },
+ {
+ "epoch": 3.251638269986894,
+ "grad_norm": 0.7656505703926086,
+ "learning_rate": 0.0006,
+ "loss": 5.86760139465332,
+ "step": 234
+ },
+ {
+ "epoch": 3.2656181738750547,
+ "grad_norm": 0.7940183281898499,
+ "learning_rate": 0.0006,
+ "loss": 5.861355781555176,
+ "step": 235
+ },
+ {
+ "epoch": 3.2795980777632154,
+ "grad_norm": 0.45171424746513367,
+ "learning_rate": 0.0006,
+ "loss": 5.799808502197266,
+ "step": 236
+ },
+ {
+ "epoch": 3.293577981651376,
+ "grad_norm": 0.6174989342689514,
+ "learning_rate": 0.0006,
+ "loss": 5.8585920333862305,
+ "step": 237
+ },
+ {
+ "epoch": 3.307557885539537,
+ "grad_norm": 0.5341290831565857,
+ "learning_rate": 0.0006,
+ "loss": 5.8116044998168945,
+ "step": 238
+ },
+ {
+ "epoch": 3.3215377894276976,
+ "grad_norm": 0.3938343822956085,
+ "learning_rate": 0.0006,
+ "loss": 5.83797550201416,
+ "step": 239
+ },
+ {
+ "epoch": 3.3355176933158583,
+ "grad_norm": 0.5106972455978394,
+ "learning_rate": 0.0006,
+ "loss": 5.832303047180176,
+ "step": 240
+ },
+ {
+ "epoch": 3.349497597204019,
+ "grad_norm": 0.3791428506374359,
+ "learning_rate": 0.0006,
+ "loss": 5.794981956481934,
+ "step": 241
+ },
+ {
+ "epoch": 3.36347750109218,
+ "grad_norm": 0.42287978529930115,
+ "learning_rate": 0.0006,
+ "loss": 5.788144111633301,
+ "step": 242
+ },
+ {
+ "epoch": 3.3774574049803405,
+ "grad_norm": 0.27334436774253845,
+ "learning_rate": 0.0006,
+ "loss": 5.771070957183838,
+ "step": 243
+ },
+ {
+ "epoch": 3.3914373088685017,
+ "grad_norm": 0.2470470368862152,
+ "learning_rate": 0.0006,
+ "loss": 5.755998611450195,
+ "step": 244
+ },
+ {
+ "epoch": 3.4054172127566624,
+ "grad_norm": 0.3043915033340454,
+ "learning_rate": 0.0006,
+ "loss": 5.779492378234863,
+ "step": 245
+ },
+ {
+ "epoch": 3.419397116644823,
+ "grad_norm": 0.2960112988948822,
+ "learning_rate": 0.0006,
+ "loss": 5.750328063964844,
+ "step": 246
+ },
+ {
+ "epoch": 3.433377020532984,
+ "grad_norm": 0.3046723008155823,
+ "learning_rate": 0.0006,
+ "loss": 5.776517868041992,
+ "step": 247
+ },
+ {
+ "epoch": 3.4473569244211446,
+ "grad_norm": 0.22461780905723572,
+ "learning_rate": 0.0006,
+ "loss": 5.760989665985107,
+ "step": 248
+ },
+ {
+ "epoch": 3.4613368283093053,
+ "grad_norm": 0.24625757336616516,
+ "learning_rate": 0.0006,
+ "loss": 5.759706497192383,
+ "step": 249
+ },
+ {
+ "epoch": 3.475316732197466,
+ "grad_norm": 0.18207131326198578,
+ "learning_rate": 0.0006,
+ "loss": 5.747040748596191,
+ "step": 250
+ },
+ {
+ "epoch": 3.489296636085627,
+ "grad_norm": 0.16473834216594696,
+ "learning_rate": 0.0006,
+ "loss": 5.761577606201172,
+ "step": 251
+ },
+ {
+ "epoch": 3.5032765399737875,
+ "grad_norm": 0.25155773758888245,
+ "learning_rate": 0.0006,
+ "loss": 5.696502208709717,
+ "step": 252
+ },
+ {
+ "epoch": 3.5172564438619487,
+ "grad_norm": 0.24115674197673798,
+ "learning_rate": 0.0006,
+ "loss": 5.676957130432129,
+ "step": 253
+ },
+ {
+ "epoch": 3.5312363477501094,
+ "grad_norm": 0.40912172198295593,
+ "learning_rate": 0.0006,
+ "loss": 5.695090293884277,
+ "step": 254
+ },
+ {
+ "epoch": 3.54521625163827,
+ "grad_norm": 0.6727662682533264,
+ "learning_rate": 0.0006,
+ "loss": 5.722194671630859,
+ "step": 255
+ },
+ {
+ "epoch": 3.559196155526431,
+ "grad_norm": 0.8450719118118286,
+ "learning_rate": 0.0006,
+ "loss": 5.764680862426758,
+ "step": 256
+ },
+ {
+ "epoch": 3.5731760594145916,
+ "grad_norm": 0.9916183352470398,
+ "learning_rate": 0.0006,
+ "loss": 5.754530429840088,
+ "step": 257
+ },
+ {
+ "epoch": 3.5871559633027523,
+ "grad_norm": 1.041922688484192,
+ "learning_rate": 0.0006,
+ "loss": 5.781468391418457,
+ "step": 258
+ },
+ {
+ "epoch": 3.601135867190913,
+ "grad_norm": 0.972039520740509,
+ "learning_rate": 0.0006,
+ "loss": 5.760323524475098,
+ "step": 259
+ },
+ {
+ "epoch": 3.615115771079074,
+ "grad_norm": 0.6802462935447693,
+ "learning_rate": 0.0006,
+ "loss": 5.750064849853516,
+ "step": 260
+ },
+ {
+ "epoch": 3.6290956749672345,
+ "grad_norm": 0.48553529381752014,
+ "learning_rate": 0.0006,
+ "loss": 5.7464094161987305,
+ "step": 261
+ },
+ {
+ "epoch": 3.6430755788553952,
+ "grad_norm": 0.4066704213619232,
+ "learning_rate": 0.0006,
+ "loss": 5.719789505004883,
+ "step": 262
+ },
+ {
+ "epoch": 3.657055482743556,
+ "grad_norm": 0.3300860822200775,
+ "learning_rate": 0.0006,
+ "loss": 5.719920635223389,
+ "step": 263
+ },
+ {
+ "epoch": 3.6710353866317167,
+ "grad_norm": 0.3286679983139038,
+ "learning_rate": 0.0006,
+ "loss": 5.723465919494629,
+ "step": 264
+ },
+ {
+ "epoch": 3.6850152905198774,
+ "grad_norm": 0.27653390169143677,
+ "learning_rate": 0.0006,
+ "loss": 5.713820457458496,
+ "step": 265
+ },
+ {
+ "epoch": 3.6989951944080386,
+ "grad_norm": 0.26138055324554443,
+ "learning_rate": 0.0006,
+ "loss": 5.683221817016602,
+ "step": 266
+ },
+ {
+ "epoch": 3.7129750982961993,
+ "grad_norm": 0.23706290125846863,
+ "learning_rate": 0.0006,
+ "loss": 5.6896867752075195,
+ "step": 267
+ },
+ {
+ "epoch": 3.72695500218436,
+ "grad_norm": 0.2751729190349579,
+ "learning_rate": 0.0006,
+ "loss": 5.710301876068115,
+ "step": 268
+ },
+ {
+ "epoch": 3.7409349060725208,
+ "grad_norm": 0.255393385887146,
+ "learning_rate": 0.0006,
+ "loss": 5.687932968139648,
+ "step": 269
+ },
+ {
+ "epoch": 3.7549148099606815,
+ "grad_norm": 0.21453925967216492,
+ "learning_rate": 0.0006,
+ "loss": 5.68234395980835,
+ "step": 270
+ },
+ {
+ "epoch": 3.7688947138488422,
+ "grad_norm": 0.21771012246608734,
+ "learning_rate": 0.0006,
+ "loss": 5.683980464935303,
+ "step": 271
+ },
+ {
+ "epoch": 3.782874617737003,
+ "grad_norm": 0.1884593963623047,
+ "learning_rate": 0.0006,
+ "loss": 5.662779808044434,
+ "step": 272
+ },
+ {
+ "epoch": 3.7968545216251637,
+ "grad_norm": 0.20429612696170807,
+ "learning_rate": 0.0006,
+ "loss": 5.650941848754883,
+ "step": 273
+ },
+ {
+ "epoch": 3.810834425513325,
+ "grad_norm": 0.22586797177791595,
+ "learning_rate": 0.0006,
+ "loss": 5.639376640319824,
+ "step": 274
+ },
+ {
+ "epoch": 3.8248143294014856,
+ "grad_norm": 0.19651705026626587,
+ "learning_rate": 0.0006,
+ "loss": 5.612030029296875,
+ "step": 275
+ },
+ {
+ "epoch": 3.8387942332896463,
+ "grad_norm": 0.2125253826379776,
+ "learning_rate": 0.0006,
+ "loss": 5.622836589813232,
+ "step": 276
+ },
+ {
+ "epoch": 3.852774137177807,
+ "grad_norm": 0.2905234694480896,
+ "learning_rate": 0.0006,
+ "loss": 5.624594688415527,
+ "step": 277
+ },
+ {
+ "epoch": 3.8667540410659678,
+ "grad_norm": 0.2718426585197449,
+ "learning_rate": 0.0006,
+ "loss": 5.619892120361328,
+ "step": 278
+ },
+ {
+ "epoch": 3.8807339449541285,
+ "grad_norm": 0.26481127738952637,
+ "learning_rate": 0.0006,
+ "loss": 5.612496852874756,
+ "step": 279
+ },
+ {
+ "epoch": 3.894713848842289,
+ "grad_norm": 0.2876453399658203,
+ "learning_rate": 0.0006,
+ "loss": 5.59157133102417,
+ "step": 280
+ },
+ {
+ "epoch": 3.90869375273045,
+ "grad_norm": 0.22829554975032806,
+ "learning_rate": 0.0006,
+ "loss": 5.5884199142456055,
+ "step": 281
+ },
+ {
+ "epoch": 3.9226736566186107,
+ "grad_norm": 0.22852344810962677,
+ "learning_rate": 0.0006,
+ "loss": 5.618719100952148,
+ "step": 282
+ },
+ {
+ "epoch": 3.9366535605067714,
+ "grad_norm": 0.37366563081741333,
+ "learning_rate": 0.0006,
+ "loss": 5.611738204956055,
+ "step": 283
+ },
+ {
+ "epoch": 3.950633464394932,
+ "grad_norm": 0.5650382041931152,
+ "learning_rate": 0.0006,
+ "loss": 5.606371879577637,
+ "step": 284
+ },
+ {
+ "epoch": 3.964613368283093,
+ "grad_norm": 0.5960066914558411,
+ "learning_rate": 0.0006,
+ "loss": 5.595022201538086,
+ "step": 285
+ },
+ {
+ "epoch": 3.9785932721712536,
+ "grad_norm": 0.3561663031578064,
+ "learning_rate": 0.0006,
+ "loss": 5.581035614013672,
+ "step": 286
+ },
+ {
+ "epoch": 3.9925731760594148,
+ "grad_norm": 0.44699913263320923,
+ "learning_rate": 0.0006,
+ "loss": 5.568033218383789,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.42783990502357483,
+ "learning_rate": 0.0006,
+ "loss": 5.571993827819824,
+ "step": 288
+ }
+ ],
+ "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+17,
+ "train_batch_size": 8,
+ "trial_name": null,
+ "trial_params": null
+}
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-288/training_args.bin b/runs/mask15-l2r50-fulle-lm/checkpoint-288/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..43721c50815fe94f90cb043bf545b8f7bd9afc38
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-288/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:a0b8d7bb9ac952b1abed3bd1e5c8f6ebd20daa957b3a85688954f8df03be6eb9
+size 4856
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-2880/chat_template.jinja b/runs/mask15-l2r50-fulle-lm/checkpoint-2880/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/mask15-l2r50-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/mask15-l2r50-fulle-lm/checkpoint-2880/config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-2880/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..1b4ac3c550d6003148026765eba4cb1512b216c9
--- /dev/null
+++ b/runs/mask15-l2r50-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": 151672
+}
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-2880/generation_config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-2880/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..5cd15fe1269fd505cfdefe9b3e9989dacd9f68f4
--- /dev/null
+++ b/runs/mask15-l2r50-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/mask15-l2r50-fulle-lm/checkpoint-2880/model.safetensors b/runs/mask15-l2r50-fulle-lm/checkpoint-2880/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..a68986b41389a0b03ec1d1f28c82d65595a64060
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-2880/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:afc04db71bab2afe6347f84852ea943608f09d1ba33bba851e1b78f4dde66eeb
+size 583358280
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-2880/optimizer.pt b/runs/mask15-l2r50-fulle-lm/checkpoint-2880/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..a04123ada11959de66b829dff3ad8db5049a4b90
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-2880/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:3ae1bb7e9e878b4ebfbf83d3891475f291630ba6a30a3dd00330b8766f9ba13a
+size 1166829434
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-2880/rng_state_0.pth b/runs/mask15-l2r50-fulle-lm/checkpoint-2880/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..46b0fcc22ebd5b40993f05d27e66b1c2be479886
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-2880/rng_state_0.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:3bae314cc640af15f02aa46b9ae6ec1d1f537356d4cbc9c7435d70a23f963e47
+size 14512
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-2880/rng_state_1.pth b/runs/mask15-l2r50-fulle-lm/checkpoint-2880/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..7ac84ddbdfa3691cd04654c7b18571c7ce95a671
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-2880/rng_state_1.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:9027b84fe17cf418bff7efe8d21d180901ff66794de6c29d03c5e723fcfc1838
+size 14512
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-2880/scheduler.pt b/runs/mask15-l2r50-fulle-lm/checkpoint-2880/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..0a5f79a713b34dd2d8d63f191629551c649dd599
--- /dev/null
+++ b/runs/mask15-l2r50-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/mask15-l2r50-fulle-lm/checkpoint-2880/tokenizer.json b/runs/mask15-l2r50-fulle-lm/checkpoint-2880/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..6226bf25372d1a86dbd704ec75d2129960f1ba88
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-2880/tokenizer.json
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:9245fe3cb2d40f9ed8d5d8ddd1d58701ba2a236beec08f656162281673f30560
+size 11424264
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-2880/tokenizer_config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-2880/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..01bc9676576e8cf62a08a9db166d6c5bab1d6727
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-2880/tokenizer_config.json
@@ -0,0 +1,20 @@
+{
+ "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|>",
+ "<|mask|>"
+ ],
+ "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/mask15-l2r50-fulle-lm/checkpoint-2880/trainer_state.json b/runs/mask15-l2r50-fulle-lm/checkpoint-2880/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..10a22c7e724e876b8e5958c0cad0e0add1c963bf
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-2880/trainer_state.json
@@ -0,0 +1,20506 @@
+{
+ "best_global_step": null,
+ "best_metric": null,
+ "best_model_checkpoint": null,
+ "epoch": 40.0,
+ "eval_steps": 500,
+ "global_step": 2880,
+ "is_hyper_param_search": false,
+ "is_local_process_zero": true,
+ "is_world_process_zero": true,
+ "log_history": [
+ {
+ "epoch": 0.013979903888160769,
+ "grad_norm": 9.807971954345703,
+ "learning_rate": 0.0,
+ "loss": 11.989814758300781,
+ "step": 1
+ },
+ {
+ "epoch": 0.027959807776321538,
+ "grad_norm": 9.834383010864258,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 11.993022918701172,
+ "step": 2
+ },
+ {
+ "epoch": 0.04193971166448231,
+ "grad_norm": 9.482470512390137,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 11.854345321655273,
+ "step": 3
+ },
+ {
+ "epoch": 0.055919615552643076,
+ "grad_norm": 7.678808689117432,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 11.618255615234375,
+ "step": 4
+ },
+ {
+ "epoch": 0.06989951944080385,
+ "grad_norm": 6.011275291442871,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 11.351423263549805,
+ "step": 5
+ },
+ {
+ "epoch": 0.08387942332896461,
+ "grad_norm": 5.244393825531006,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 11.128631591796875,
+ "step": 6
+ },
+ {
+ "epoch": 0.09785932721712538,
+ "grad_norm": 4.577618598937988,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 10.921937942504883,
+ "step": 7
+ },
+ {
+ "epoch": 0.11183923110528615,
+ "grad_norm": 4.03810453414917,
+ "learning_rate": 4.2e-05,
+ "loss": 10.742650985717773,
+ "step": 8
+ },
+ {
+ "epoch": 0.1258191349934469,
+ "grad_norm": 3.657679796218872,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 10.600778579711914,
+ "step": 9
+ },
+ {
+ "epoch": 0.1397990388816077,
+ "grad_norm": 3.352902889251709,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 10.489639282226562,
+ "step": 10
+ },
+ {
+ "epoch": 0.15377894276976845,
+ "grad_norm": 3.1162633895874023,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 10.417770385742188,
+ "step": 11
+ },
+ {
+ "epoch": 0.16775884665792923,
+ "grad_norm": 3.0402638912200928,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 10.35334587097168,
+ "step": 12
+ },
+ {
+ "epoch": 0.18173875054608998,
+ "grad_norm": 3.030630111694336,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 10.306867599487305,
+ "step": 13
+ },
+ {
+ "epoch": 0.19571865443425077,
+ "grad_norm": 3.035292148590088,
+ "learning_rate": 7.8e-05,
+ "loss": 10.26003646850586,
+ "step": 14
+ },
+ {
+ "epoch": 0.20969855832241152,
+ "grad_norm": 3.0125675201416016,
+ "learning_rate": 8.4e-05,
+ "loss": 10.219265937805176,
+ "step": 15
+ },
+ {
+ "epoch": 0.2236784622105723,
+ "grad_norm": 2.9998886585235596,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 10.161077499389648,
+ "step": 16
+ },
+ {
+ "epoch": 0.23765836609873306,
+ "grad_norm": 2.9411966800689697,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 10.107423782348633,
+ "step": 17
+ },
+ {
+ "epoch": 0.2516382699868938,
+ "grad_norm": 2.88081955909729,
+ "learning_rate": 0.000102,
+ "loss": 10.04700756072998,
+ "step": 18
+ },
+ {
+ "epoch": 0.2656181738750546,
+ "grad_norm": 2.8219687938690186,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 9.981185913085938,
+ "step": 19
+ },
+ {
+ "epoch": 0.2795980777632154,
+ "grad_norm": 2.79306960105896,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 9.89747142791748,
+ "step": 20
+ },
+ {
+ "epoch": 0.29357798165137616,
+ "grad_norm": 2.7314443588256836,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 9.829219818115234,
+ "step": 21
+ },
+ {
+ "epoch": 0.3075578855395369,
+ "grad_norm": 2.6923747062683105,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 9.747566223144531,
+ "step": 22
+ },
+ {
+ "epoch": 0.3215377894276977,
+ "grad_norm": 2.650602340698242,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 9.66455078125,
+ "step": 23
+ },
+ {
+ "epoch": 0.33551769331585846,
+ "grad_norm": 2.606977701187134,
+ "learning_rate": 0.000138,
+ "loss": 9.582326889038086,
+ "step": 24
+ },
+ {
+ "epoch": 0.34949759720401924,
+ "grad_norm": 2.567256212234497,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 9.492591857910156,
+ "step": 25
+ },
+ {
+ "epoch": 0.36347750109217997,
+ "grad_norm": 2.520740509033203,
+ "learning_rate": 0.00015,
+ "loss": 9.396563529968262,
+ "step": 26
+ },
+ {
+ "epoch": 0.37745740498034075,
+ "grad_norm": 2.471588611602783,
+ "learning_rate": 0.000156,
+ "loss": 9.303571701049805,
+ "step": 27
+ },
+ {
+ "epoch": 0.39143730886850153,
+ "grad_norm": 2.4341530799865723,
+ "learning_rate": 0.000162,
+ "loss": 9.191819190979004,
+ "step": 28
+ },
+ {
+ "epoch": 0.4054172127566623,
+ "grad_norm": 2.369244337081909,
+ "learning_rate": 0.000168,
+ "loss": 9.092012405395508,
+ "step": 29
+ },
+ {
+ "epoch": 0.41939711664482304,
+ "grad_norm": 2.28625226020813,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 8.984567642211914,
+ "step": 30
+ },
+ {
+ "epoch": 0.4333770205329838,
+ "grad_norm": 2.2082231044769287,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 8.889009475708008,
+ "step": 31
+ },
+ {
+ "epoch": 0.4473569244211446,
+ "grad_norm": 2.1429483890533447,
+ "learning_rate": 0.000186,
+ "loss": 8.778556823730469,
+ "step": 32
+ },
+ {
+ "epoch": 0.4613368283093054,
+ "grad_norm": 2.0937352180480957,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 8.661166191101074,
+ "step": 33
+ },
+ {
+ "epoch": 0.4753167321974661,
+ "grad_norm": 2.040790557861328,
+ "learning_rate": 0.000198,
+ "loss": 8.550382614135742,
+ "step": 34
+ },
+ {
+ "epoch": 0.4892966360856269,
+ "grad_norm": 1.93914794921875,
+ "learning_rate": 0.000204,
+ "loss": 8.463907241821289,
+ "step": 35
+ },
+ {
+ "epoch": 0.5032765399737876,
+ "grad_norm": 1.8624178171157837,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 8.3438720703125,
+ "step": 36
+ },
+ {
+ "epoch": 0.5172564438619485,
+ "grad_norm": 1.8107167482376099,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 8.21871566772461,
+ "step": 37
+ },
+ {
+ "epoch": 0.5312363477501092,
+ "grad_norm": 1.717979073524475,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 8.113494873046875,
+ "step": 38
+ },
+ {
+ "epoch": 0.54521625163827,
+ "grad_norm": 1.668742060661316,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 8.006099700927734,
+ "step": 39
+ },
+ {
+ "epoch": 0.5591961555264308,
+ "grad_norm": 1.6147786378860474,
+ "learning_rate": 0.000234,
+ "loss": 7.911509037017822,
+ "step": 40
+ },
+ {
+ "epoch": 0.5731760594145915,
+ "grad_norm": 1.535750150680542,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 7.822839736938477,
+ "step": 41
+ },
+ {
+ "epoch": 0.5871559633027523,
+ "grad_norm": 1.4700065851211548,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 7.713842868804932,
+ "step": 42
+ },
+ {
+ "epoch": 0.601135867190913,
+ "grad_norm": 1.39020574092865,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 7.6040191650390625,
+ "step": 43
+ },
+ {
+ "epoch": 0.6151157710790738,
+ "grad_norm": 1.2875399589538574,
+ "learning_rate": 0.000258,
+ "loss": 7.550642013549805,
+ "step": 44
+ },
+ {
+ "epoch": 0.6290956749672346,
+ "grad_norm": 1.2094247341156006,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 7.460824012756348,
+ "step": 45
+ },
+ {
+ "epoch": 0.6430755788553953,
+ "grad_norm": 1.126452088356018,
+ "learning_rate": 0.00027,
+ "loss": 7.380537986755371,
+ "step": 46
+ },
+ {
+ "epoch": 0.6570554827435562,
+ "grad_norm": 1.0313163995742798,
+ "learning_rate": 0.000276,
+ "loss": 7.286153793334961,
+ "step": 47
+ },
+ {
+ "epoch": 0.6710353866317169,
+ "grad_norm": 0.9172859787940979,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 7.2064714431762695,
+ "step": 48
+ },
+ {
+ "epoch": 0.6850152905198776,
+ "grad_norm": 0.8148201107978821,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 7.158207416534424,
+ "step": 49
+ },
+ {
+ "epoch": 0.6989951944080385,
+ "grad_norm": 0.650123119354248,
+ "learning_rate": 0.000294,
+ "loss": 7.108791828155518,
+ "step": 50
+ },
+ {
+ "epoch": 0.7129750982961992,
+ "grad_norm": 0.5437585711479187,
+ "learning_rate": 0.0003,
+ "loss": 7.083050727844238,
+ "step": 51
+ },
+ {
+ "epoch": 0.7269550021843599,
+ "grad_norm": 0.46762895584106445,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 7.058027267456055,
+ "step": 52
+ },
+ {
+ "epoch": 0.7409349060725208,
+ "grad_norm": 0.47947561740875244,
+ "learning_rate": 0.000312,
+ "loss": 7.015172958374023,
+ "step": 53
+ },
+ {
+ "epoch": 0.7549148099606815,
+ "grad_norm": 0.7546492218971252,
+ "learning_rate": 0.000318,
+ "loss": 7.024629592895508,
+ "step": 54
+ },
+ {
+ "epoch": 0.7688947138488423,
+ "grad_norm": 0.6153718829154968,
+ "learning_rate": 0.000324,
+ "loss": 7.026667594909668,
+ "step": 55
+ },
+ {
+ "epoch": 0.7828746177370031,
+ "grad_norm": 0.3359069228172302,
+ "learning_rate": 0.00033,
+ "loss": 7.008166313171387,
+ "step": 56
+ },
+ {
+ "epoch": 0.7968545216251638,
+ "grad_norm": 0.48906823992729187,
+ "learning_rate": 0.000336,
+ "loss": 7.019716262817383,
+ "step": 57
+ },
+ {
+ "epoch": 0.8108344255133246,
+ "grad_norm": 0.5525421500205994,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 7.02108097076416,
+ "step": 58
+ },
+ {
+ "epoch": 0.8248143294014854,
+ "grad_norm": 0.3103712201118469,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 7.003164768218994,
+ "step": 59
+ },
+ {
+ "epoch": 0.8387942332896461,
+ "grad_norm": 0.4431874752044678,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 7.003463268280029,
+ "step": 60
+ },
+ {
+ "epoch": 0.8527741371778069,
+ "grad_norm": 0.4291120767593384,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 6.96931791305542,
+ "step": 61
+ },
+ {
+ "epoch": 0.8667540410659677,
+ "grad_norm": 0.6566054224967957,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 6.989445686340332,
+ "step": 62
+ },
+ {
+ "epoch": 0.8807339449541285,
+ "grad_norm": 0.20663189888000488,
+ "learning_rate": 0.000372,
+ "loss": 6.9669342041015625,
+ "step": 63
+ },
+ {
+ "epoch": 0.8947138488422892,
+ "grad_norm": 0.6242535710334778,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 6.949883460998535,
+ "step": 64
+ },
+ {
+ "epoch": 0.9086937527304499,
+ "grad_norm": 0.6984224915504456,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 6.955153465270996,
+ "step": 65
+ },
+ {
+ "epoch": 0.9226736566186108,
+ "grad_norm": 0.6328083872795105,
+ "learning_rate": 0.00039,
+ "loss": 6.965421676635742,
+ "step": 66
+ },
+ {
+ "epoch": 0.9366535605067715,
+ "grad_norm": 1.213352918624878,
+ "learning_rate": 0.000396,
+ "loss": 6.9454345703125,
+ "step": 67
+ },
+ {
+ "epoch": 0.9506334643949322,
+ "grad_norm": 0.9221940636634827,
+ "learning_rate": 0.000402,
+ "loss": 6.923908233642578,
+ "step": 68
+ },
+ {
+ "epoch": 0.9646133682830931,
+ "grad_norm": 0.6825450658798218,
+ "learning_rate": 0.000408,
+ "loss": 6.910131454467773,
+ "step": 69
+ },
+ {
+ "epoch": 0.9785932721712538,
+ "grad_norm": 0.5690162181854248,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 6.89891242980957,
+ "step": 70
+ },
+ {
+ "epoch": 0.9925731760594146,
+ "grad_norm": 0.4320870041847229,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 6.896081924438477,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.31632405519485474,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 6.897444725036621,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 7.757839679718018,
+ "eval_runtime": 43.8338,
+ "eval_samples_per_second": 55.71,
+ "eval_steps_per_second": 3.49,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139799038881607,
+ "grad_norm": 0.3789916932582855,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 6.877245903015137,
+ "step": 73
+ },
+ {
+ "epoch": 1.0279598077763215,
+ "grad_norm": 0.9167932868003845,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 6.921600341796875,
+ "step": 74
+ },
+ {
+ "epoch": 1.0419397116644824,
+ "grad_norm": 0.581188440322876,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 6.861001968383789,
+ "step": 75
+ },
+ {
+ "epoch": 1.0559196155526431,
+ "grad_norm": 0.4179714024066925,
+ "learning_rate": 0.00045,
+ "loss": 6.875657081604004,
+ "step": 76
+ },
+ {
+ "epoch": 1.0698995194408039,
+ "grad_norm": 1.0669957399368286,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 6.857122421264648,
+ "step": 77
+ },
+ {
+ "epoch": 1.0838794233289646,
+ "grad_norm": 0.27855145931243896,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 6.828852653503418,
+ "step": 78
+ },
+ {
+ "epoch": 1.0978593272171253,
+ "grad_norm": 0.7192047834396362,
+ "learning_rate": 0.000468,
+ "loss": 6.870839595794678,
+ "step": 79
+ },
+ {
+ "epoch": 1.1118392311052863,
+ "grad_norm": 0.5583325624465942,
+ "learning_rate": 0.000474,
+ "loss": 6.8497514724731445,
+ "step": 80
+ },
+ {
+ "epoch": 1.125819134993447,
+ "grad_norm": 0.3001925051212311,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 6.858528137207031,
+ "step": 81
+ },
+ {
+ "epoch": 1.1397990388816077,
+ "grad_norm": 0.2408239096403122,
+ "learning_rate": 0.000486,
+ "loss": 6.83231258392334,
+ "step": 82
+ },
+ {
+ "epoch": 1.1537789427697684,
+ "grad_norm": 0.28230324387550354,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 6.815476894378662,
+ "step": 83
+ },
+ {
+ "epoch": 1.1677588466579292,
+ "grad_norm": 0.3247123658657074,
+ "learning_rate": 0.000498,
+ "loss": 6.780126094818115,
+ "step": 84
+ },
+ {
+ "epoch": 1.18173875054609,
+ "grad_norm": 0.25713011622428894,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 6.7798309326171875,
+ "step": 85
+ },
+ {
+ "epoch": 1.1957186544342508,
+ "grad_norm": 0.5386835932731628,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 6.791745185852051,
+ "step": 86
+ },
+ {
+ "epoch": 1.2096985583224116,
+ "grad_norm": 0.2226393222808838,
+ "learning_rate": 0.000516,
+ "loss": 6.7826972007751465,
+ "step": 87
+ },
+ {
+ "epoch": 1.2236784622105723,
+ "grad_norm": 0.4338362216949463,
+ "learning_rate": 0.000522,
+ "loss": 6.805043697357178,
+ "step": 88
+ },
+ {
+ "epoch": 1.237658366098733,
+ "grad_norm": 0.2953208386898041,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 6.768434524536133,
+ "step": 89
+ },
+ {
+ "epoch": 1.2516382699868938,
+ "grad_norm": 0.13453717529773712,
+ "learning_rate": 0.000534,
+ "loss": 6.773697376251221,
+ "step": 90
+ },
+ {
+ "epoch": 1.2656181738750547,
+ "grad_norm": 0.35774412751197815,
+ "learning_rate": 0.00054,
+ "loss": 6.766414642333984,
+ "step": 91
+ },
+ {
+ "epoch": 1.2795980777632154,
+ "grad_norm": 0.4669720530509949,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 6.754847526550293,
+ "step": 92
+ },
+ {
+ "epoch": 1.2935779816513762,
+ "grad_norm": 0.13806621730327606,
+ "learning_rate": 0.000552,
+ "loss": 6.746858596801758,
+ "step": 93
+ },
+ {
+ "epoch": 1.307557885539537,
+ "grad_norm": 0.3280332386493683,
+ "learning_rate": 0.000558,
+ "loss": 6.715662956237793,
+ "step": 94
+ },
+ {
+ "epoch": 1.3215377894276976,
+ "grad_norm": 0.4689937233924866,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 6.734938144683838,
+ "step": 95
+ },
+ {
+ "epoch": 1.3355176933158583,
+ "grad_norm": 0.35371264815330505,
+ "learning_rate": 0.00057,
+ "loss": 6.748386383056641,
+ "step": 96
+ },
+ {
+ "epoch": 1.3494975972040193,
+ "grad_norm": 0.15232303738594055,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 6.705557823181152,
+ "step": 97
+ },
+ {
+ "epoch": 1.36347750109218,
+ "grad_norm": 0.30132821202278137,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 6.7199859619140625,
+ "step": 98
+ },
+ {
+ "epoch": 1.3774574049803407,
+ "grad_norm": 0.42174842953681946,
+ "learning_rate": 0.000588,
+ "loss": 6.715370178222656,
+ "step": 99
+ },
+ {
+ "epoch": 1.3914373088685015,
+ "grad_norm": 0.6257228851318359,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 6.707026958465576,
+ "step": 100
+ },
+ {
+ "epoch": 1.4054172127566624,
+ "grad_norm": 0.4551195800304413,
+ "learning_rate": 0.0006,
+ "loss": 6.7078423500061035,
+ "step": 101
+ },
+ {
+ "epoch": 1.4193971166448232,
+ "grad_norm": 0.41940346360206604,
+ "learning_rate": 0.0006,
+ "loss": 6.6959357261657715,
+ "step": 102
+ },
+ {
+ "epoch": 1.4333770205329839,
+ "grad_norm": 0.32251718640327454,
+ "learning_rate": 0.0006,
+ "loss": 6.689168930053711,
+ "step": 103
+ },
+ {
+ "epoch": 1.4473569244211446,
+ "grad_norm": 0.2992720305919647,
+ "learning_rate": 0.0006,
+ "loss": 6.680738925933838,
+ "step": 104
+ },
+ {
+ "epoch": 1.4613368283093053,
+ "grad_norm": 0.3228456974029541,
+ "learning_rate": 0.0006,
+ "loss": 6.672350883483887,
+ "step": 105
+ },
+ {
+ "epoch": 1.475316732197466,
+ "grad_norm": 0.24954743683338165,
+ "learning_rate": 0.0006,
+ "loss": 6.653716087341309,
+ "step": 106
+ },
+ {
+ "epoch": 1.4892966360856268,
+ "grad_norm": 0.30740687251091003,
+ "learning_rate": 0.0006,
+ "loss": 6.676583290100098,
+ "step": 107
+ },
+ {
+ "epoch": 1.5032765399737875,
+ "grad_norm": 0.24950599670410156,
+ "learning_rate": 0.0006,
+ "loss": 6.656691551208496,
+ "step": 108
+ },
+ {
+ "epoch": 1.5172564438619485,
+ "grad_norm": 0.24293005466461182,
+ "learning_rate": 0.0006,
+ "loss": 6.640995979309082,
+ "step": 109
+ },
+ {
+ "epoch": 1.5312363477501092,
+ "grad_norm": 0.30167272686958313,
+ "learning_rate": 0.0006,
+ "loss": 6.647380352020264,
+ "step": 110
+ },
+ {
+ "epoch": 1.5452162516382701,
+ "grad_norm": 0.4424632787704468,
+ "learning_rate": 0.0006,
+ "loss": 6.6548261642456055,
+ "step": 111
+ },
+ {
+ "epoch": 1.5591961555264309,
+ "grad_norm": 0.5295748114585876,
+ "learning_rate": 0.0006,
+ "loss": 6.64370059967041,
+ "step": 112
+ },
+ {
+ "epoch": 1.5731760594145916,
+ "grad_norm": 0.6829339265823364,
+ "learning_rate": 0.0006,
+ "loss": 6.654196739196777,
+ "step": 113
+ },
+ {
+ "epoch": 1.5871559633027523,
+ "grad_norm": 0.6534460186958313,
+ "learning_rate": 0.0006,
+ "loss": 6.675765037536621,
+ "step": 114
+ },
+ {
+ "epoch": 1.601135867190913,
+ "grad_norm": 0.6172244548797607,
+ "learning_rate": 0.0006,
+ "loss": 6.631234169006348,
+ "step": 115
+ },
+ {
+ "epoch": 1.6151157710790738,
+ "grad_norm": 0.5650008320808411,
+ "learning_rate": 0.0006,
+ "loss": 6.654262542724609,
+ "step": 116
+ },
+ {
+ "epoch": 1.6290956749672345,
+ "grad_norm": 0.3890475928783417,
+ "learning_rate": 0.0006,
+ "loss": 6.627526760101318,
+ "step": 117
+ },
+ {
+ "epoch": 1.6430755788553952,
+ "grad_norm": 0.6409873366355896,
+ "learning_rate": 0.0006,
+ "loss": 6.619794845581055,
+ "step": 118
+ },
+ {
+ "epoch": 1.6570554827435562,
+ "grad_norm": 0.5052326321601868,
+ "learning_rate": 0.0006,
+ "loss": 6.612556457519531,
+ "step": 119
+ },
+ {
+ "epoch": 1.671035386631717,
+ "grad_norm": 0.5001237988471985,
+ "learning_rate": 0.0006,
+ "loss": 6.577266693115234,
+ "step": 120
+ },
+ {
+ "epoch": 1.6850152905198776,
+ "grad_norm": 0.5328938364982605,
+ "learning_rate": 0.0006,
+ "loss": 6.59553337097168,
+ "step": 121
+ },
+ {
+ "epoch": 1.6989951944080386,
+ "grad_norm": 0.3568951189517975,
+ "learning_rate": 0.0006,
+ "loss": 6.602717399597168,
+ "step": 122
+ },
+ {
+ "epoch": 1.7129750982961993,
+ "grad_norm": 0.4017309546470642,
+ "learning_rate": 0.0006,
+ "loss": 6.589657783508301,
+ "step": 123
+ },
+ {
+ "epoch": 1.72695500218436,
+ "grad_norm": 0.21432629227638245,
+ "learning_rate": 0.0006,
+ "loss": 6.586555480957031,
+ "step": 124
+ },
+ {
+ "epoch": 1.7409349060725208,
+ "grad_norm": 0.21038052439689636,
+ "learning_rate": 0.0006,
+ "loss": 6.576569557189941,
+ "step": 125
+ },
+ {
+ "epoch": 1.7549148099606815,
+ "grad_norm": 0.23074904084205627,
+ "learning_rate": 0.0006,
+ "loss": 6.5880632400512695,
+ "step": 126
+ },
+ {
+ "epoch": 1.7688947138488422,
+ "grad_norm": 0.42963048815727234,
+ "learning_rate": 0.0006,
+ "loss": 6.603862762451172,
+ "step": 127
+ },
+ {
+ "epoch": 1.782874617737003,
+ "grad_norm": 0.361331045627594,
+ "learning_rate": 0.0006,
+ "loss": 6.579834938049316,
+ "step": 128
+ },
+ {
+ "epoch": 1.7968545216251637,
+ "grad_norm": 0.4951060712337494,
+ "learning_rate": 0.0006,
+ "loss": 6.570443630218506,
+ "step": 129
+ },
+ {
+ "epoch": 1.8108344255133246,
+ "grad_norm": 0.2258434295654297,
+ "learning_rate": 0.0006,
+ "loss": 6.5664777755737305,
+ "step": 130
+ },
+ {
+ "epoch": 1.8248143294014854,
+ "grad_norm": 0.2922155559062958,
+ "learning_rate": 0.0006,
+ "loss": 6.561326503753662,
+ "step": 131
+ },
+ {
+ "epoch": 1.838794233289646,
+ "grad_norm": 0.19068220257759094,
+ "learning_rate": 0.0006,
+ "loss": 6.528727054595947,
+ "step": 132
+ },
+ {
+ "epoch": 1.852774137177807,
+ "grad_norm": 0.2122010439634323,
+ "learning_rate": 0.0006,
+ "loss": 6.535636901855469,
+ "step": 133
+ },
+ {
+ "epoch": 1.8667540410659678,
+ "grad_norm": 0.25760164856910706,
+ "learning_rate": 0.0006,
+ "loss": 6.530498504638672,
+ "step": 134
+ },
+ {
+ "epoch": 1.8807339449541285,
+ "grad_norm": 0.1761016845703125,
+ "learning_rate": 0.0006,
+ "loss": 6.514466285705566,
+ "step": 135
+ },
+ {
+ "epoch": 1.8947138488422892,
+ "grad_norm": 0.2250051498413086,
+ "learning_rate": 0.0006,
+ "loss": 6.521268844604492,
+ "step": 136
+ },
+ {
+ "epoch": 1.90869375273045,
+ "grad_norm": 0.34458497166633606,
+ "learning_rate": 0.0006,
+ "loss": 6.512831687927246,
+ "step": 137
+ },
+ {
+ "epoch": 1.9226736566186107,
+ "grad_norm": 0.3468617796897888,
+ "learning_rate": 0.0006,
+ "loss": 6.515641689300537,
+ "step": 138
+ },
+ {
+ "epoch": 1.9366535605067714,
+ "grad_norm": 0.5051495432853699,
+ "learning_rate": 0.0006,
+ "loss": 6.5147905349731445,
+ "step": 139
+ },
+ {
+ "epoch": 1.9506334643949321,
+ "grad_norm": 0.7106727361679077,
+ "learning_rate": 0.0006,
+ "loss": 6.519277572631836,
+ "step": 140
+ },
+ {
+ "epoch": 1.964613368283093,
+ "grad_norm": 0.8881394267082214,
+ "learning_rate": 0.0006,
+ "loss": 6.526865482330322,
+ "step": 141
+ },
+ {
+ "epoch": 1.9785932721712538,
+ "grad_norm": 0.5552834272384644,
+ "learning_rate": 0.0006,
+ "loss": 6.469970226287842,
+ "step": 142
+ },
+ {
+ "epoch": 1.9925731760594148,
+ "grad_norm": 0.6903126835823059,
+ "learning_rate": 0.0006,
+ "loss": 6.476300239562988,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.47679027915000916,
+ "learning_rate": 0.0006,
+ "loss": 6.463827133178711,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 7.388528823852539,
+ "eval_runtime": 44.2519,
+ "eval_samples_per_second": 55.184,
+ "eval_steps_per_second": 3.457,
+ "step": 144
+ },
+ {
+ "epoch": 2.0139799038881607,
+ "grad_norm": 0.4719221293926239,
+ "learning_rate": 0.0006,
+ "loss": 6.480956077575684,
+ "step": 145
+ },
+ {
+ "epoch": 2.0279598077763215,
+ "grad_norm": 0.41137924790382385,
+ "learning_rate": 0.0006,
+ "loss": 6.449707984924316,
+ "step": 146
+ },
+ {
+ "epoch": 2.041939711664482,
+ "grad_norm": 0.4237765371799469,
+ "learning_rate": 0.0006,
+ "loss": 6.467435836791992,
+ "step": 147
+ },
+ {
+ "epoch": 2.055919615552643,
+ "grad_norm": 0.44081810116767883,
+ "learning_rate": 0.0006,
+ "loss": 6.436868667602539,
+ "step": 148
+ },
+ {
+ "epoch": 2.0698995194408036,
+ "grad_norm": 0.4163798391819,
+ "learning_rate": 0.0006,
+ "loss": 6.4642014503479,
+ "step": 149
+ },
+ {
+ "epoch": 2.083879423328965,
+ "grad_norm": 0.3831583261489868,
+ "learning_rate": 0.0006,
+ "loss": 6.454092025756836,
+ "step": 150
+ },
+ {
+ "epoch": 2.0978593272171255,
+ "grad_norm": 0.37721413373947144,
+ "learning_rate": 0.0006,
+ "loss": 6.426377296447754,
+ "step": 151
+ },
+ {
+ "epoch": 2.1118392311052863,
+ "grad_norm": 0.3323550224304199,
+ "learning_rate": 0.0006,
+ "loss": 6.421375274658203,
+ "step": 152
+ },
+ {
+ "epoch": 2.125819134993447,
+ "grad_norm": 0.47739624977111816,
+ "learning_rate": 0.0006,
+ "loss": 6.412004470825195,
+ "step": 153
+ },
+ {
+ "epoch": 2.1397990388816077,
+ "grad_norm": 0.8530274629592896,
+ "learning_rate": 0.0006,
+ "loss": 6.410468578338623,
+ "step": 154
+ },
+ {
+ "epoch": 2.1537789427697684,
+ "grad_norm": 0.6420364379882812,
+ "learning_rate": 0.0006,
+ "loss": 6.413525581359863,
+ "step": 155
+ },
+ {
+ "epoch": 2.167758846657929,
+ "grad_norm": 0.5005049109458923,
+ "learning_rate": 0.0006,
+ "loss": 6.401463508605957,
+ "step": 156
+ },
+ {
+ "epoch": 2.18173875054609,
+ "grad_norm": 0.3614683449268341,
+ "learning_rate": 0.0006,
+ "loss": 6.390063285827637,
+ "step": 157
+ },
+ {
+ "epoch": 2.1957186544342506,
+ "grad_norm": 0.595215380191803,
+ "learning_rate": 0.0006,
+ "loss": 6.369806289672852,
+ "step": 158
+ },
+ {
+ "epoch": 2.2096985583224114,
+ "grad_norm": 0.5700321793556213,
+ "learning_rate": 0.0006,
+ "loss": 6.368378639221191,
+ "step": 159
+ },
+ {
+ "epoch": 2.2236784622105725,
+ "grad_norm": 0.36273983120918274,
+ "learning_rate": 0.0006,
+ "loss": 6.366860389709473,
+ "step": 160
+ },
+ {
+ "epoch": 2.2376583660987333,
+ "grad_norm": 0.2850998342037201,
+ "learning_rate": 0.0006,
+ "loss": 6.352144718170166,
+ "step": 161
+ },
+ {
+ "epoch": 2.251638269986894,
+ "grad_norm": 0.38558584451675415,
+ "learning_rate": 0.0006,
+ "loss": 6.375765800476074,
+ "step": 162
+ },
+ {
+ "epoch": 2.2656181738750547,
+ "grad_norm": 0.34809231758117676,
+ "learning_rate": 0.0006,
+ "loss": 6.350445747375488,
+ "step": 163
+ },
+ {
+ "epoch": 2.2795980777632154,
+ "grad_norm": 0.5211818814277649,
+ "learning_rate": 0.0006,
+ "loss": 6.354585647583008,
+ "step": 164
+ },
+ {
+ "epoch": 2.293577981651376,
+ "grad_norm": 1.0809133052825928,
+ "learning_rate": 0.0006,
+ "loss": 6.3752007484436035,
+ "step": 165
+ },
+ {
+ "epoch": 2.307557885539537,
+ "grad_norm": 0.8293641209602356,
+ "learning_rate": 0.0006,
+ "loss": 6.35113525390625,
+ "step": 166
+ },
+ {
+ "epoch": 2.3215377894276976,
+ "grad_norm": 0.3428577780723572,
+ "learning_rate": 0.0006,
+ "loss": 6.334470748901367,
+ "step": 167
+ },
+ {
+ "epoch": 2.3355176933158583,
+ "grad_norm": 0.7587600946426392,
+ "learning_rate": 0.0006,
+ "loss": 6.353979587554932,
+ "step": 168
+ },
+ {
+ "epoch": 2.349497597204019,
+ "grad_norm": 0.4227249026298523,
+ "learning_rate": 0.0006,
+ "loss": 6.34018611907959,
+ "step": 169
+ },
+ {
+ "epoch": 2.36347750109218,
+ "grad_norm": 0.4226846694946289,
+ "learning_rate": 0.0006,
+ "loss": 6.290019989013672,
+ "step": 170
+ },
+ {
+ "epoch": 2.3774574049803405,
+ "grad_norm": 0.38412365317344666,
+ "learning_rate": 0.0006,
+ "loss": 6.309510231018066,
+ "step": 171
+ },
+ {
+ "epoch": 2.3914373088685017,
+ "grad_norm": 0.45698508620262146,
+ "learning_rate": 0.0006,
+ "loss": 6.283290863037109,
+ "step": 172
+ },
+ {
+ "epoch": 2.4054172127566624,
+ "grad_norm": 0.7575915455818176,
+ "learning_rate": 0.0006,
+ "loss": 6.306073188781738,
+ "step": 173
+ },
+ {
+ "epoch": 2.419397116644823,
+ "grad_norm": 0.695123553276062,
+ "learning_rate": 0.0006,
+ "loss": 6.308144569396973,
+ "step": 174
+ },
+ {
+ "epoch": 2.433377020532984,
+ "grad_norm": 0.5035743117332458,
+ "learning_rate": 0.0006,
+ "loss": 6.282073974609375,
+ "step": 175
+ },
+ {
+ "epoch": 2.4473569244211446,
+ "grad_norm": 0.3158020079135895,
+ "learning_rate": 0.0006,
+ "loss": 6.282169342041016,
+ "step": 176
+ },
+ {
+ "epoch": 2.4613368283093053,
+ "grad_norm": 0.4829689860343933,
+ "learning_rate": 0.0006,
+ "loss": 6.264578819274902,
+ "step": 177
+ },
+ {
+ "epoch": 2.475316732197466,
+ "grad_norm": 0.3992770314216614,
+ "learning_rate": 0.0006,
+ "loss": 6.228628158569336,
+ "step": 178
+ },
+ {
+ "epoch": 2.489296636085627,
+ "grad_norm": 0.40887606143951416,
+ "learning_rate": 0.0006,
+ "loss": 6.230792045593262,
+ "step": 179
+ },
+ {
+ "epoch": 2.5032765399737875,
+ "grad_norm": 0.3540310263633728,
+ "learning_rate": 0.0006,
+ "loss": 6.222573280334473,
+ "step": 180
+ },
+ {
+ "epoch": 2.5172564438619487,
+ "grad_norm": 0.496219664812088,
+ "learning_rate": 0.0006,
+ "loss": 6.212109565734863,
+ "step": 181
+ },
+ {
+ "epoch": 2.5312363477501094,
+ "grad_norm": 0.435173898935318,
+ "learning_rate": 0.0006,
+ "loss": 6.221210479736328,
+ "step": 182
+ },
+ {
+ "epoch": 2.54521625163827,
+ "grad_norm": 0.5364007949829102,
+ "learning_rate": 0.0006,
+ "loss": 6.217929840087891,
+ "step": 183
+ },
+ {
+ "epoch": 2.559196155526431,
+ "grad_norm": 0.5946390628814697,
+ "learning_rate": 0.0006,
+ "loss": 6.189267158508301,
+ "step": 184
+ },
+ {
+ "epoch": 2.5731760594145916,
+ "grad_norm": 0.41621312499046326,
+ "learning_rate": 0.0006,
+ "loss": 6.182415008544922,
+ "step": 185
+ },
+ {
+ "epoch": 2.5871559633027523,
+ "grad_norm": 0.5442072749137878,
+ "learning_rate": 0.0006,
+ "loss": 6.150757789611816,
+ "step": 186
+ },
+ {
+ "epoch": 2.601135867190913,
+ "grad_norm": 0.727843165397644,
+ "learning_rate": 0.0006,
+ "loss": 6.146082878112793,
+ "step": 187
+ },
+ {
+ "epoch": 2.615115771079074,
+ "grad_norm": 0.8898891806602478,
+ "learning_rate": 0.0006,
+ "loss": 6.190483093261719,
+ "step": 188
+ },
+ {
+ "epoch": 2.6290956749672345,
+ "grad_norm": 0.5173947215080261,
+ "learning_rate": 0.0006,
+ "loss": 6.151251792907715,
+ "step": 189
+ },
+ {
+ "epoch": 2.6430755788553952,
+ "grad_norm": 0.6476729512214661,
+ "learning_rate": 0.0006,
+ "loss": 6.154841423034668,
+ "step": 190
+ },
+ {
+ "epoch": 2.657055482743556,
+ "grad_norm": 0.3538810908794403,
+ "learning_rate": 0.0006,
+ "loss": 6.103879928588867,
+ "step": 191
+ },
+ {
+ "epoch": 2.6710353866317167,
+ "grad_norm": 0.4773508310317993,
+ "learning_rate": 0.0006,
+ "loss": 6.118101119995117,
+ "step": 192
+ },
+ {
+ "epoch": 2.6850152905198774,
+ "grad_norm": 0.29213786125183105,
+ "learning_rate": 0.0006,
+ "loss": 6.108916282653809,
+ "step": 193
+ },
+ {
+ "epoch": 2.6989951944080386,
+ "grad_norm": 0.40800607204437256,
+ "learning_rate": 0.0006,
+ "loss": 6.113438606262207,
+ "step": 194
+ },
+ {
+ "epoch": 2.7129750982961993,
+ "grad_norm": 0.31157299876213074,
+ "learning_rate": 0.0006,
+ "loss": 6.101809501647949,
+ "step": 195
+ },
+ {
+ "epoch": 2.72695500218436,
+ "grad_norm": 0.28660309314727783,
+ "learning_rate": 0.0006,
+ "loss": 6.075886249542236,
+ "step": 196
+ },
+ {
+ "epoch": 2.7409349060725208,
+ "grad_norm": 0.3810449540615082,
+ "learning_rate": 0.0006,
+ "loss": 6.053257942199707,
+ "step": 197
+ },
+ {
+ "epoch": 2.7549148099606815,
+ "grad_norm": 0.21741755306720734,
+ "learning_rate": 0.0006,
+ "loss": 6.013825416564941,
+ "step": 198
+ },
+ {
+ "epoch": 2.7688947138488422,
+ "grad_norm": 0.2777678966522217,
+ "learning_rate": 0.0006,
+ "loss": 6.054204940795898,
+ "step": 199
+ },
+ {
+ "epoch": 2.782874617737003,
+ "grad_norm": 0.28503066301345825,
+ "learning_rate": 0.0006,
+ "loss": 6.035628318786621,
+ "step": 200
+ },
+ {
+ "epoch": 2.7968545216251637,
+ "grad_norm": 0.41954755783081055,
+ "learning_rate": 0.0006,
+ "loss": 6.028354644775391,
+ "step": 201
+ },
+ {
+ "epoch": 2.810834425513325,
+ "grad_norm": 0.8785563111305237,
+ "learning_rate": 0.0006,
+ "loss": 6.055761337280273,
+ "step": 202
+ },
+ {
+ "epoch": 2.8248143294014856,
+ "grad_norm": 1.7459558248519897,
+ "learning_rate": 0.0006,
+ "loss": 6.11599588394165,
+ "step": 203
+ },
+ {
+ "epoch": 2.8387942332896463,
+ "grad_norm": 0.5725523233413696,
+ "learning_rate": 0.0006,
+ "loss": 6.024280548095703,
+ "step": 204
+ },
+ {
+ "epoch": 2.852774137177807,
+ "grad_norm": 0.5913150906562805,
+ "learning_rate": 0.0006,
+ "loss": 6.050281524658203,
+ "step": 205
+ },
+ {
+ "epoch": 2.8667540410659678,
+ "grad_norm": 0.5929384827613831,
+ "learning_rate": 0.0006,
+ "loss": 6.041121482849121,
+ "step": 206
+ },
+ {
+ "epoch": 2.8807339449541285,
+ "grad_norm": 0.5650724768638611,
+ "learning_rate": 0.0006,
+ "loss": 6.004258155822754,
+ "step": 207
+ },
+ {
+ "epoch": 2.894713848842289,
+ "grad_norm": 0.3420545756816864,
+ "learning_rate": 0.0006,
+ "loss": 5.983296871185303,
+ "step": 208
+ },
+ {
+ "epoch": 2.90869375273045,
+ "grad_norm": 0.2960914075374603,
+ "learning_rate": 0.0006,
+ "loss": 5.988578796386719,
+ "step": 209
+ },
+ {
+ "epoch": 2.9226736566186107,
+ "grad_norm": 0.3252662718296051,
+ "learning_rate": 0.0006,
+ "loss": 5.99103307723999,
+ "step": 210
+ },
+ {
+ "epoch": 2.9366535605067714,
+ "grad_norm": 0.4851132929325104,
+ "learning_rate": 0.0006,
+ "loss": 6.0028977394104,
+ "step": 211
+ },
+ {
+ "epoch": 2.950633464394932,
+ "grad_norm": 0.5639995336532593,
+ "learning_rate": 0.0006,
+ "loss": 5.965080738067627,
+ "step": 212
+ },
+ {
+ "epoch": 2.964613368283093,
+ "grad_norm": 0.4514601230621338,
+ "learning_rate": 0.0006,
+ "loss": 5.961450576782227,
+ "step": 213
+ },
+ {
+ "epoch": 2.9785932721712536,
+ "grad_norm": 0.5397921800613403,
+ "learning_rate": 0.0006,
+ "loss": 5.965290546417236,
+ "step": 214
+ },
+ {
+ "epoch": 2.9925731760594148,
+ "grad_norm": 0.4735587239265442,
+ "learning_rate": 0.0006,
+ "loss": 5.952754497528076,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.32061058282852173,
+ "learning_rate": 0.0006,
+ "loss": 5.961667060852051,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 6.8517303466796875,
+ "eval_runtime": 44.03,
+ "eval_samples_per_second": 55.462,
+ "eval_steps_per_second": 3.475,
+ "step": 216
+ },
+ {
+ "epoch": 3.0139799038881607,
+ "grad_norm": 0.3537784814834595,
+ "learning_rate": 0.0006,
+ "loss": 5.928008079528809,
+ "step": 217
+ },
+ {
+ "epoch": 3.0279598077763215,
+ "grad_norm": 0.40713080763816833,
+ "learning_rate": 0.0006,
+ "loss": 5.9150800704956055,
+ "step": 218
+ },
+ {
+ "epoch": 3.041939711664482,
+ "grad_norm": 0.2548826336860657,
+ "learning_rate": 0.0006,
+ "loss": 5.919757843017578,
+ "step": 219
+ },
+ {
+ "epoch": 3.055919615552643,
+ "grad_norm": 0.2818543016910553,
+ "learning_rate": 0.0006,
+ "loss": 5.913688659667969,
+ "step": 220
+ },
+ {
+ "epoch": 3.0698995194408036,
+ "grad_norm": 0.4196692705154419,
+ "learning_rate": 0.0006,
+ "loss": 5.8675336837768555,
+ "step": 221
+ },
+ {
+ "epoch": 3.083879423328965,
+ "grad_norm": 0.35272282361984253,
+ "learning_rate": 0.0006,
+ "loss": 5.878874778747559,
+ "step": 222
+ },
+ {
+ "epoch": 3.0978593272171255,
+ "grad_norm": 0.3254282772541046,
+ "learning_rate": 0.0006,
+ "loss": 5.8823041915893555,
+ "step": 223
+ },
+ {
+ "epoch": 3.1118392311052863,
+ "grad_norm": 0.4052561819553375,
+ "learning_rate": 0.0006,
+ "loss": 5.867744445800781,
+ "step": 224
+ },
+ {
+ "epoch": 3.125819134993447,
+ "grad_norm": 0.31246256828308105,
+ "learning_rate": 0.0006,
+ "loss": 5.886094093322754,
+ "step": 225
+ },
+ {
+ "epoch": 3.1397990388816077,
+ "grad_norm": 0.3479118347167969,
+ "learning_rate": 0.0006,
+ "loss": 5.850762367248535,
+ "step": 226
+ },
+ {
+ "epoch": 3.1537789427697684,
+ "grad_norm": 0.5037238597869873,
+ "learning_rate": 0.0006,
+ "loss": 5.844175815582275,
+ "step": 227
+ },
+ {
+ "epoch": 3.167758846657929,
+ "grad_norm": 0.6271815896034241,
+ "learning_rate": 0.0006,
+ "loss": 5.871790885925293,
+ "step": 228
+ },
+ {
+ "epoch": 3.18173875054609,
+ "grad_norm": 0.43838298320770264,
+ "learning_rate": 0.0006,
+ "loss": 5.844024658203125,
+ "step": 229
+ },
+ {
+ "epoch": 3.1957186544342506,
+ "grad_norm": 0.4755159616470337,
+ "learning_rate": 0.0006,
+ "loss": 5.846892356872559,
+ "step": 230
+ },
+ {
+ "epoch": 3.2096985583224114,
+ "grad_norm": 0.5229779481887817,
+ "learning_rate": 0.0006,
+ "loss": 5.827000617980957,
+ "step": 231
+ },
+ {
+ "epoch": 3.2236784622105725,
+ "grad_norm": 0.8264499306678772,
+ "learning_rate": 0.0006,
+ "loss": 5.867050647735596,
+ "step": 232
+ },
+ {
+ "epoch": 3.2376583660987333,
+ "grad_norm": 1.0607538223266602,
+ "learning_rate": 0.0006,
+ "loss": 5.877876281738281,
+ "step": 233
+ },
+ {
+ "epoch": 3.251638269986894,
+ "grad_norm": 0.7656505703926086,
+ "learning_rate": 0.0006,
+ "loss": 5.86760139465332,
+ "step": 234
+ },
+ {
+ "epoch": 3.2656181738750547,
+ "grad_norm": 0.7940183281898499,
+ "learning_rate": 0.0006,
+ "loss": 5.861355781555176,
+ "step": 235
+ },
+ {
+ "epoch": 3.2795980777632154,
+ "grad_norm": 0.45171424746513367,
+ "learning_rate": 0.0006,
+ "loss": 5.799808502197266,
+ "step": 236
+ },
+ {
+ "epoch": 3.293577981651376,
+ "grad_norm": 0.6174989342689514,
+ "learning_rate": 0.0006,
+ "loss": 5.8585920333862305,
+ "step": 237
+ },
+ {
+ "epoch": 3.307557885539537,
+ "grad_norm": 0.5341290831565857,
+ "learning_rate": 0.0006,
+ "loss": 5.8116044998168945,
+ "step": 238
+ },
+ {
+ "epoch": 3.3215377894276976,
+ "grad_norm": 0.3938343822956085,
+ "learning_rate": 0.0006,
+ "loss": 5.83797550201416,
+ "step": 239
+ },
+ {
+ "epoch": 3.3355176933158583,
+ "grad_norm": 0.5106972455978394,
+ "learning_rate": 0.0006,
+ "loss": 5.832303047180176,
+ "step": 240
+ },
+ {
+ "epoch": 3.349497597204019,
+ "grad_norm": 0.3791428506374359,
+ "learning_rate": 0.0006,
+ "loss": 5.794981956481934,
+ "step": 241
+ },
+ {
+ "epoch": 3.36347750109218,
+ "grad_norm": 0.42287978529930115,
+ "learning_rate": 0.0006,
+ "loss": 5.788144111633301,
+ "step": 242
+ },
+ {
+ "epoch": 3.3774574049803405,
+ "grad_norm": 0.27334436774253845,
+ "learning_rate": 0.0006,
+ "loss": 5.771070957183838,
+ "step": 243
+ },
+ {
+ "epoch": 3.3914373088685017,
+ "grad_norm": 0.2470470368862152,
+ "learning_rate": 0.0006,
+ "loss": 5.755998611450195,
+ "step": 244
+ },
+ {
+ "epoch": 3.4054172127566624,
+ "grad_norm": 0.3043915033340454,
+ "learning_rate": 0.0006,
+ "loss": 5.779492378234863,
+ "step": 245
+ },
+ {
+ "epoch": 3.419397116644823,
+ "grad_norm": 0.2960112988948822,
+ "learning_rate": 0.0006,
+ "loss": 5.750328063964844,
+ "step": 246
+ },
+ {
+ "epoch": 3.433377020532984,
+ "grad_norm": 0.3046723008155823,
+ "learning_rate": 0.0006,
+ "loss": 5.776517868041992,
+ "step": 247
+ },
+ {
+ "epoch": 3.4473569244211446,
+ "grad_norm": 0.22461780905723572,
+ "learning_rate": 0.0006,
+ "loss": 5.760989665985107,
+ "step": 248
+ },
+ {
+ "epoch": 3.4613368283093053,
+ "grad_norm": 0.24625757336616516,
+ "learning_rate": 0.0006,
+ "loss": 5.759706497192383,
+ "step": 249
+ },
+ {
+ "epoch": 3.475316732197466,
+ "grad_norm": 0.18207131326198578,
+ "learning_rate": 0.0006,
+ "loss": 5.747040748596191,
+ "step": 250
+ },
+ {
+ "epoch": 3.489296636085627,
+ "grad_norm": 0.16473834216594696,
+ "learning_rate": 0.0006,
+ "loss": 5.761577606201172,
+ "step": 251
+ },
+ {
+ "epoch": 3.5032765399737875,
+ "grad_norm": 0.25155773758888245,
+ "learning_rate": 0.0006,
+ "loss": 5.696502208709717,
+ "step": 252
+ },
+ {
+ "epoch": 3.5172564438619487,
+ "grad_norm": 0.24115674197673798,
+ "learning_rate": 0.0006,
+ "loss": 5.676957130432129,
+ "step": 253
+ },
+ {
+ "epoch": 3.5312363477501094,
+ "grad_norm": 0.40912172198295593,
+ "learning_rate": 0.0006,
+ "loss": 5.695090293884277,
+ "step": 254
+ },
+ {
+ "epoch": 3.54521625163827,
+ "grad_norm": 0.6727662682533264,
+ "learning_rate": 0.0006,
+ "loss": 5.722194671630859,
+ "step": 255
+ },
+ {
+ "epoch": 3.559196155526431,
+ "grad_norm": 0.8450719118118286,
+ "learning_rate": 0.0006,
+ "loss": 5.764680862426758,
+ "step": 256
+ },
+ {
+ "epoch": 3.5731760594145916,
+ "grad_norm": 0.9916183352470398,
+ "learning_rate": 0.0006,
+ "loss": 5.754530429840088,
+ "step": 257
+ },
+ {
+ "epoch": 3.5871559633027523,
+ "grad_norm": 1.041922688484192,
+ "learning_rate": 0.0006,
+ "loss": 5.781468391418457,
+ "step": 258
+ },
+ {
+ "epoch": 3.601135867190913,
+ "grad_norm": 0.972039520740509,
+ "learning_rate": 0.0006,
+ "loss": 5.760323524475098,
+ "step": 259
+ },
+ {
+ "epoch": 3.615115771079074,
+ "grad_norm": 0.6802462935447693,
+ "learning_rate": 0.0006,
+ "loss": 5.750064849853516,
+ "step": 260
+ },
+ {
+ "epoch": 3.6290956749672345,
+ "grad_norm": 0.48553529381752014,
+ "learning_rate": 0.0006,
+ "loss": 5.7464094161987305,
+ "step": 261
+ },
+ {
+ "epoch": 3.6430755788553952,
+ "grad_norm": 0.4066704213619232,
+ "learning_rate": 0.0006,
+ "loss": 5.719789505004883,
+ "step": 262
+ },
+ {
+ "epoch": 3.657055482743556,
+ "grad_norm": 0.3300860822200775,
+ "learning_rate": 0.0006,
+ "loss": 5.719920635223389,
+ "step": 263
+ },
+ {
+ "epoch": 3.6710353866317167,
+ "grad_norm": 0.3286679983139038,
+ "learning_rate": 0.0006,
+ "loss": 5.723465919494629,
+ "step": 264
+ },
+ {
+ "epoch": 3.6850152905198774,
+ "grad_norm": 0.27653390169143677,
+ "learning_rate": 0.0006,
+ "loss": 5.713820457458496,
+ "step": 265
+ },
+ {
+ "epoch": 3.6989951944080386,
+ "grad_norm": 0.26138055324554443,
+ "learning_rate": 0.0006,
+ "loss": 5.683221817016602,
+ "step": 266
+ },
+ {
+ "epoch": 3.7129750982961993,
+ "grad_norm": 0.23706290125846863,
+ "learning_rate": 0.0006,
+ "loss": 5.6896867752075195,
+ "step": 267
+ },
+ {
+ "epoch": 3.72695500218436,
+ "grad_norm": 0.2751729190349579,
+ "learning_rate": 0.0006,
+ "loss": 5.710301876068115,
+ "step": 268
+ },
+ {
+ "epoch": 3.7409349060725208,
+ "grad_norm": 0.255393385887146,
+ "learning_rate": 0.0006,
+ "loss": 5.687932968139648,
+ "step": 269
+ },
+ {
+ "epoch": 3.7549148099606815,
+ "grad_norm": 0.21453925967216492,
+ "learning_rate": 0.0006,
+ "loss": 5.68234395980835,
+ "step": 270
+ },
+ {
+ "epoch": 3.7688947138488422,
+ "grad_norm": 0.21771012246608734,
+ "learning_rate": 0.0006,
+ "loss": 5.683980464935303,
+ "step": 271
+ },
+ {
+ "epoch": 3.782874617737003,
+ "grad_norm": 0.1884593963623047,
+ "learning_rate": 0.0006,
+ "loss": 5.662779808044434,
+ "step": 272
+ },
+ {
+ "epoch": 3.7968545216251637,
+ "grad_norm": 0.20429612696170807,
+ "learning_rate": 0.0006,
+ "loss": 5.650941848754883,
+ "step": 273
+ },
+ {
+ "epoch": 3.810834425513325,
+ "grad_norm": 0.22586797177791595,
+ "learning_rate": 0.0006,
+ "loss": 5.639376640319824,
+ "step": 274
+ },
+ {
+ "epoch": 3.8248143294014856,
+ "grad_norm": 0.19651705026626587,
+ "learning_rate": 0.0006,
+ "loss": 5.612030029296875,
+ "step": 275
+ },
+ {
+ "epoch": 3.8387942332896463,
+ "grad_norm": 0.2125253826379776,
+ "learning_rate": 0.0006,
+ "loss": 5.622836589813232,
+ "step": 276
+ },
+ {
+ "epoch": 3.852774137177807,
+ "grad_norm": 0.2905234694480896,
+ "learning_rate": 0.0006,
+ "loss": 5.624594688415527,
+ "step": 277
+ },
+ {
+ "epoch": 3.8667540410659678,
+ "grad_norm": 0.2718426585197449,
+ "learning_rate": 0.0006,
+ "loss": 5.619892120361328,
+ "step": 278
+ },
+ {
+ "epoch": 3.8807339449541285,
+ "grad_norm": 0.26481127738952637,
+ "learning_rate": 0.0006,
+ "loss": 5.612496852874756,
+ "step": 279
+ },
+ {
+ "epoch": 3.894713848842289,
+ "grad_norm": 0.2876453399658203,
+ "learning_rate": 0.0006,
+ "loss": 5.59157133102417,
+ "step": 280
+ },
+ {
+ "epoch": 3.90869375273045,
+ "grad_norm": 0.22829554975032806,
+ "learning_rate": 0.0006,
+ "loss": 5.5884199142456055,
+ "step": 281
+ },
+ {
+ "epoch": 3.9226736566186107,
+ "grad_norm": 0.22852344810962677,
+ "learning_rate": 0.0006,
+ "loss": 5.618719100952148,
+ "step": 282
+ },
+ {
+ "epoch": 3.9366535605067714,
+ "grad_norm": 0.37366563081741333,
+ "learning_rate": 0.0006,
+ "loss": 5.611738204956055,
+ "step": 283
+ },
+ {
+ "epoch": 3.950633464394932,
+ "grad_norm": 0.5650382041931152,
+ "learning_rate": 0.0006,
+ "loss": 5.606371879577637,
+ "step": 284
+ },
+ {
+ "epoch": 3.964613368283093,
+ "grad_norm": 0.5960066914558411,
+ "learning_rate": 0.0006,
+ "loss": 5.595022201538086,
+ "step": 285
+ },
+ {
+ "epoch": 3.9785932721712536,
+ "grad_norm": 0.3561663031578064,
+ "learning_rate": 0.0006,
+ "loss": 5.581035614013672,
+ "step": 286
+ },
+ {
+ "epoch": 3.9925731760594148,
+ "grad_norm": 0.44699913263320923,
+ "learning_rate": 0.0006,
+ "loss": 5.568033218383789,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.42783990502357483,
+ "learning_rate": 0.0006,
+ "loss": 5.571993827819824,
+ "step": 288
+ },
+ {
+ "epoch": 4.0,
+ "eval_loss": 6.349016189575195,
+ "eval_runtime": 44.3326,
+ "eval_samples_per_second": 55.084,
+ "eval_steps_per_second": 3.451,
+ "step": 288
+ },
+ {
+ "epoch": 4.013979903888161,
+ "grad_norm": 0.41305896639823914,
+ "learning_rate": 0.0006,
+ "loss": 5.562954902648926,
+ "step": 289
+ },
+ {
+ "epoch": 4.0279598077763215,
+ "grad_norm": 0.3966459035873413,
+ "learning_rate": 0.0006,
+ "loss": 5.5671916007995605,
+ "step": 290
+ },
+ {
+ "epoch": 4.041939711664482,
+ "grad_norm": 0.4846104085445404,
+ "learning_rate": 0.0006,
+ "loss": 5.548027038574219,
+ "step": 291
+ },
+ {
+ "epoch": 4.055919615552643,
+ "grad_norm": 0.5916333794593811,
+ "learning_rate": 0.0006,
+ "loss": 5.5900068283081055,
+ "step": 292
+ },
+ {
+ "epoch": 4.069899519440804,
+ "grad_norm": 0.5973889231681824,
+ "learning_rate": 0.0006,
+ "loss": 5.537594795227051,
+ "step": 293
+ },
+ {
+ "epoch": 4.083879423328964,
+ "grad_norm": 0.4190494418144226,
+ "learning_rate": 0.0006,
+ "loss": 5.534749984741211,
+ "step": 294
+ },
+ {
+ "epoch": 4.097859327217125,
+ "grad_norm": 0.5956901907920837,
+ "learning_rate": 0.0006,
+ "loss": 5.554540634155273,
+ "step": 295
+ },
+ {
+ "epoch": 4.111839231105286,
+ "grad_norm": 0.8257920742034912,
+ "learning_rate": 0.0006,
+ "loss": 5.5728068351745605,
+ "step": 296
+ },
+ {
+ "epoch": 4.1258191349934465,
+ "grad_norm": 0.7241750955581665,
+ "learning_rate": 0.0006,
+ "loss": 5.5643815994262695,
+ "step": 297
+ },
+ {
+ "epoch": 4.139799038881607,
+ "grad_norm": 0.45730507373809814,
+ "learning_rate": 0.0006,
+ "loss": 5.554225921630859,
+ "step": 298
+ },
+ {
+ "epoch": 4.153778942769769,
+ "grad_norm": 0.5166977643966675,
+ "learning_rate": 0.0006,
+ "loss": 5.540790557861328,
+ "step": 299
+ },
+ {
+ "epoch": 4.16775884665793,
+ "grad_norm": 0.433237761259079,
+ "learning_rate": 0.0006,
+ "loss": 5.536884784698486,
+ "step": 300
+ },
+ {
+ "epoch": 4.18173875054609,
+ "grad_norm": 0.3369830250740051,
+ "learning_rate": 0.0006,
+ "loss": 5.532837867736816,
+ "step": 301
+ },
+ {
+ "epoch": 4.195718654434251,
+ "grad_norm": 0.33091458678245544,
+ "learning_rate": 0.0006,
+ "loss": 5.547643661499023,
+ "step": 302
+ },
+ {
+ "epoch": 4.209698558322412,
+ "grad_norm": 0.36462724208831787,
+ "learning_rate": 0.0006,
+ "loss": 5.525021076202393,
+ "step": 303
+ },
+ {
+ "epoch": 4.2236784622105725,
+ "grad_norm": 0.3342771530151367,
+ "learning_rate": 0.0006,
+ "loss": 5.512082099914551,
+ "step": 304
+ },
+ {
+ "epoch": 4.237658366098733,
+ "grad_norm": 0.26784762740135193,
+ "learning_rate": 0.0006,
+ "loss": 5.488072395324707,
+ "step": 305
+ },
+ {
+ "epoch": 4.251638269986894,
+ "grad_norm": 0.25986987352371216,
+ "learning_rate": 0.0006,
+ "loss": 5.4960455894470215,
+ "step": 306
+ },
+ {
+ "epoch": 4.265618173875055,
+ "grad_norm": 0.24595795571804047,
+ "learning_rate": 0.0006,
+ "loss": 5.513367176055908,
+ "step": 307
+ },
+ {
+ "epoch": 4.279598077763215,
+ "grad_norm": 0.2224857211112976,
+ "learning_rate": 0.0006,
+ "loss": 5.465205192565918,
+ "step": 308
+ },
+ {
+ "epoch": 4.293577981651376,
+ "grad_norm": 0.26799243688583374,
+ "learning_rate": 0.0006,
+ "loss": 5.476632118225098,
+ "step": 309
+ },
+ {
+ "epoch": 4.307557885539537,
+ "grad_norm": 0.20443417131900787,
+ "learning_rate": 0.0006,
+ "loss": 5.442601203918457,
+ "step": 310
+ },
+ {
+ "epoch": 4.321537789427698,
+ "grad_norm": 0.2275059074163437,
+ "learning_rate": 0.0006,
+ "loss": 5.453519344329834,
+ "step": 311
+ },
+ {
+ "epoch": 4.335517693315858,
+ "grad_norm": 0.2860901951789856,
+ "learning_rate": 0.0006,
+ "loss": 5.439424514770508,
+ "step": 312
+ },
+ {
+ "epoch": 4.349497597204019,
+ "grad_norm": 0.3378142714500427,
+ "learning_rate": 0.0006,
+ "loss": 5.476953983306885,
+ "step": 313
+ },
+ {
+ "epoch": 4.36347750109218,
+ "grad_norm": 0.3487110733985901,
+ "learning_rate": 0.0006,
+ "loss": 5.47003698348999,
+ "step": 314
+ },
+ {
+ "epoch": 4.3774574049803405,
+ "grad_norm": 0.3655227720737457,
+ "learning_rate": 0.0006,
+ "loss": 5.454250812530518,
+ "step": 315
+ },
+ {
+ "epoch": 4.391437308868501,
+ "grad_norm": 0.3754786252975464,
+ "learning_rate": 0.0006,
+ "loss": 5.475249290466309,
+ "step": 316
+ },
+ {
+ "epoch": 4.405417212756662,
+ "grad_norm": 0.42494088411331177,
+ "learning_rate": 0.0006,
+ "loss": 5.4552459716796875,
+ "step": 317
+ },
+ {
+ "epoch": 4.419397116644823,
+ "grad_norm": 0.4914703667163849,
+ "learning_rate": 0.0006,
+ "loss": 5.431845188140869,
+ "step": 318
+ },
+ {
+ "epoch": 4.433377020532983,
+ "grad_norm": 0.42470860481262207,
+ "learning_rate": 0.0006,
+ "loss": 5.454581260681152,
+ "step": 319
+ },
+ {
+ "epoch": 4.447356924421145,
+ "grad_norm": 0.3828011155128479,
+ "learning_rate": 0.0006,
+ "loss": 5.435178756713867,
+ "step": 320
+ },
+ {
+ "epoch": 4.461336828309306,
+ "grad_norm": 0.47256892919540405,
+ "learning_rate": 0.0006,
+ "loss": 5.428861618041992,
+ "step": 321
+ },
+ {
+ "epoch": 4.4753167321974665,
+ "grad_norm": 0.5665146708488464,
+ "learning_rate": 0.0006,
+ "loss": 5.424633026123047,
+ "step": 322
+ },
+ {
+ "epoch": 4.489296636085627,
+ "grad_norm": 0.48146721720695496,
+ "learning_rate": 0.0006,
+ "loss": 5.4577860832214355,
+ "step": 323
+ },
+ {
+ "epoch": 4.503276539973788,
+ "grad_norm": 0.3378535509109497,
+ "learning_rate": 0.0006,
+ "loss": 5.422727108001709,
+ "step": 324
+ },
+ {
+ "epoch": 4.517256443861949,
+ "grad_norm": 0.41981473565101624,
+ "learning_rate": 0.0006,
+ "loss": 5.418993949890137,
+ "step": 325
+ },
+ {
+ "epoch": 4.531236347750109,
+ "grad_norm": 0.39389684796333313,
+ "learning_rate": 0.0006,
+ "loss": 5.41835880279541,
+ "step": 326
+ },
+ {
+ "epoch": 4.54521625163827,
+ "grad_norm": 0.5912176370620728,
+ "learning_rate": 0.0006,
+ "loss": 5.40073299407959,
+ "step": 327
+ },
+ {
+ "epoch": 4.559196155526431,
+ "grad_norm": 0.6877487897872925,
+ "learning_rate": 0.0006,
+ "loss": 5.445301055908203,
+ "step": 328
+ },
+ {
+ "epoch": 4.573176059414592,
+ "grad_norm": 0.580555260181427,
+ "learning_rate": 0.0006,
+ "loss": 5.431069374084473,
+ "step": 329
+ },
+ {
+ "epoch": 4.587155963302752,
+ "grad_norm": 0.5974457859992981,
+ "learning_rate": 0.0006,
+ "loss": 5.422694206237793,
+ "step": 330
+ },
+ {
+ "epoch": 4.601135867190913,
+ "grad_norm": 0.722481906414032,
+ "learning_rate": 0.0006,
+ "loss": 5.447752952575684,
+ "step": 331
+ },
+ {
+ "epoch": 4.615115771079074,
+ "grad_norm": 0.7687886953353882,
+ "learning_rate": 0.0006,
+ "loss": 5.437956809997559,
+ "step": 332
+ },
+ {
+ "epoch": 4.6290956749672345,
+ "grad_norm": 0.7368173003196716,
+ "learning_rate": 0.0006,
+ "loss": 5.4367241859436035,
+ "step": 333
+ },
+ {
+ "epoch": 4.643075578855395,
+ "grad_norm": 0.6650524139404297,
+ "learning_rate": 0.0006,
+ "loss": 5.4288434982299805,
+ "step": 334
+ },
+ {
+ "epoch": 4.657055482743556,
+ "grad_norm": 0.4997614920139313,
+ "learning_rate": 0.0006,
+ "loss": 5.412769317626953,
+ "step": 335
+ },
+ {
+ "epoch": 4.671035386631717,
+ "grad_norm": 0.44208982586860657,
+ "learning_rate": 0.0006,
+ "loss": 5.42405366897583,
+ "step": 336
+ },
+ {
+ "epoch": 4.685015290519877,
+ "grad_norm": 0.39510273933410645,
+ "learning_rate": 0.0006,
+ "loss": 5.402547836303711,
+ "step": 337
+ },
+ {
+ "epoch": 4.698995194408038,
+ "grad_norm": 0.44970476627349854,
+ "learning_rate": 0.0006,
+ "loss": 5.377168655395508,
+ "step": 338
+ },
+ {
+ "epoch": 4.712975098296199,
+ "grad_norm": 0.3902331590652466,
+ "learning_rate": 0.0006,
+ "loss": 5.401622772216797,
+ "step": 339
+ },
+ {
+ "epoch": 4.72695500218436,
+ "grad_norm": 0.33485135436058044,
+ "learning_rate": 0.0006,
+ "loss": 5.397945880889893,
+ "step": 340
+ },
+ {
+ "epoch": 4.740934906072521,
+ "grad_norm": 0.29062309861183167,
+ "learning_rate": 0.0006,
+ "loss": 5.356175422668457,
+ "step": 341
+ },
+ {
+ "epoch": 4.754914809960681,
+ "grad_norm": 0.23617377877235413,
+ "learning_rate": 0.0006,
+ "loss": 5.388517379760742,
+ "step": 342
+ },
+ {
+ "epoch": 4.768894713848843,
+ "grad_norm": 0.2704737186431885,
+ "learning_rate": 0.0006,
+ "loss": 5.3746137619018555,
+ "step": 343
+ },
+ {
+ "epoch": 4.782874617737003,
+ "grad_norm": 0.20488551259040833,
+ "learning_rate": 0.0006,
+ "loss": 5.3754472732543945,
+ "step": 344
+ },
+ {
+ "epoch": 4.796854521625164,
+ "grad_norm": 0.2007082849740982,
+ "learning_rate": 0.0006,
+ "loss": 5.3538618087768555,
+ "step": 345
+ },
+ {
+ "epoch": 4.810834425513325,
+ "grad_norm": 0.21732935309410095,
+ "learning_rate": 0.0006,
+ "loss": 5.351774215698242,
+ "step": 346
+ },
+ {
+ "epoch": 4.824814329401486,
+ "grad_norm": 0.1944841742515564,
+ "learning_rate": 0.0006,
+ "loss": 5.357545852661133,
+ "step": 347
+ },
+ {
+ "epoch": 4.838794233289646,
+ "grad_norm": 0.1953933835029602,
+ "learning_rate": 0.0006,
+ "loss": 5.321681022644043,
+ "step": 348
+ },
+ {
+ "epoch": 4.852774137177807,
+ "grad_norm": 0.1743433028459549,
+ "learning_rate": 0.0006,
+ "loss": 5.340302467346191,
+ "step": 349
+ },
+ {
+ "epoch": 4.866754041065968,
+ "grad_norm": 0.19655466079711914,
+ "learning_rate": 0.0006,
+ "loss": 5.325471878051758,
+ "step": 350
+ },
+ {
+ "epoch": 4.8807339449541285,
+ "grad_norm": 0.15761791169643402,
+ "learning_rate": 0.0006,
+ "loss": 5.3453240394592285,
+ "step": 351
+ },
+ {
+ "epoch": 4.894713848842289,
+ "grad_norm": 0.19164425134658813,
+ "learning_rate": 0.0006,
+ "loss": 5.315583229064941,
+ "step": 352
+ },
+ {
+ "epoch": 4.90869375273045,
+ "grad_norm": 0.28084540367126465,
+ "learning_rate": 0.0006,
+ "loss": 5.309171676635742,
+ "step": 353
+ },
+ {
+ "epoch": 4.922673656618611,
+ "grad_norm": 0.4681853652000427,
+ "learning_rate": 0.0006,
+ "loss": 5.318211078643799,
+ "step": 354
+ },
+ {
+ "epoch": 4.936653560506771,
+ "grad_norm": 0.6417295932769775,
+ "learning_rate": 0.0006,
+ "loss": 5.309263706207275,
+ "step": 355
+ },
+ {
+ "epoch": 4.950633464394932,
+ "grad_norm": 0.501312792301178,
+ "learning_rate": 0.0006,
+ "loss": 5.321534156799316,
+ "step": 356
+ },
+ {
+ "epoch": 4.964613368283093,
+ "grad_norm": 0.47502145171165466,
+ "learning_rate": 0.0006,
+ "loss": 5.323659896850586,
+ "step": 357
+ },
+ {
+ "epoch": 4.978593272171254,
+ "grad_norm": 0.5366594791412354,
+ "learning_rate": 0.0006,
+ "loss": 5.327367782592773,
+ "step": 358
+ },
+ {
+ "epoch": 4.992573176059414,
+ "grad_norm": 0.6986395120620728,
+ "learning_rate": 0.0006,
+ "loss": 5.311097145080566,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.6626625657081604,
+ "learning_rate": 0.0006,
+ "loss": 5.337558269500732,
+ "step": 360
+ },
+ {
+ "epoch": 5.0,
+ "eval_loss": 5.929230690002441,
+ "eval_runtime": 44.5268,
+ "eval_samples_per_second": 54.843,
+ "eval_steps_per_second": 3.436,
+ "step": 360
+ },
+ {
+ "epoch": 5.013979903888161,
+ "grad_norm": 0.7383704781532288,
+ "learning_rate": 0.0006,
+ "loss": 5.315563678741455,
+ "step": 361
+ },
+ {
+ "epoch": 5.0279598077763215,
+ "grad_norm": 0.7730138301849365,
+ "learning_rate": 0.0006,
+ "loss": 5.324905872344971,
+ "step": 362
+ },
+ {
+ "epoch": 5.041939711664482,
+ "grad_norm": 0.8170825839042664,
+ "learning_rate": 0.0006,
+ "loss": 5.350251197814941,
+ "step": 363
+ },
+ {
+ "epoch": 5.055919615552643,
+ "grad_norm": 0.6950958371162415,
+ "learning_rate": 0.0006,
+ "loss": 5.338744163513184,
+ "step": 364
+ },
+ {
+ "epoch": 5.069899519440804,
+ "grad_norm": 0.5582894086837769,
+ "learning_rate": 0.0006,
+ "loss": 5.340539932250977,
+ "step": 365
+ },
+ {
+ "epoch": 5.083879423328964,
+ "grad_norm": 0.4772159159183502,
+ "learning_rate": 0.0006,
+ "loss": 5.344161033630371,
+ "step": 366
+ },
+ {
+ "epoch": 5.097859327217125,
+ "grad_norm": 0.5432839393615723,
+ "learning_rate": 0.0006,
+ "loss": 5.312403678894043,
+ "step": 367
+ },
+ {
+ "epoch": 5.111839231105286,
+ "grad_norm": 0.4944784641265869,
+ "learning_rate": 0.0006,
+ "loss": 5.30281925201416,
+ "step": 368
+ },
+ {
+ "epoch": 5.1258191349934465,
+ "grad_norm": 0.4298315942287445,
+ "learning_rate": 0.0006,
+ "loss": 5.29564094543457,
+ "step": 369
+ },
+ {
+ "epoch": 5.139799038881607,
+ "grad_norm": 0.349889874458313,
+ "learning_rate": 0.0006,
+ "loss": 5.287062644958496,
+ "step": 370
+ },
+ {
+ "epoch": 5.153778942769769,
+ "grad_norm": 0.2823719084262848,
+ "learning_rate": 0.0006,
+ "loss": 5.28826904296875,
+ "step": 371
+ },
+ {
+ "epoch": 5.16775884665793,
+ "grad_norm": 0.32975050806999207,
+ "learning_rate": 0.0006,
+ "loss": 5.256399631500244,
+ "step": 372
+ },
+ {
+ "epoch": 5.18173875054609,
+ "grad_norm": 0.2963952124118805,
+ "learning_rate": 0.0006,
+ "loss": 5.273757457733154,
+ "step": 373
+ },
+ {
+ "epoch": 5.195718654434251,
+ "grad_norm": 0.21345984935760498,
+ "learning_rate": 0.0006,
+ "loss": 5.274978160858154,
+ "step": 374
+ },
+ {
+ "epoch": 5.209698558322412,
+ "grad_norm": 0.2363101840019226,
+ "learning_rate": 0.0006,
+ "loss": 5.261585235595703,
+ "step": 375
+ },
+ {
+ "epoch": 5.2236784622105725,
+ "grad_norm": 0.19626963138580322,
+ "learning_rate": 0.0006,
+ "loss": 5.259700298309326,
+ "step": 376
+ },
+ {
+ "epoch": 5.237658366098733,
+ "grad_norm": 0.21083571016788483,
+ "learning_rate": 0.0006,
+ "loss": 5.233585357666016,
+ "step": 377
+ },
+ {
+ "epoch": 5.251638269986894,
+ "grad_norm": 0.2273513823747635,
+ "learning_rate": 0.0006,
+ "loss": 5.231740474700928,
+ "step": 378
+ },
+ {
+ "epoch": 5.265618173875055,
+ "grad_norm": 0.18299247324466705,
+ "learning_rate": 0.0006,
+ "loss": 5.251256465911865,
+ "step": 379
+ },
+ {
+ "epoch": 5.279598077763215,
+ "grad_norm": 0.19578224420547485,
+ "learning_rate": 0.0006,
+ "loss": 5.230329513549805,
+ "step": 380
+ },
+ {
+ "epoch": 5.293577981651376,
+ "grad_norm": 0.20308879017829895,
+ "learning_rate": 0.0006,
+ "loss": 5.243951797485352,
+ "step": 381
+ },
+ {
+ "epoch": 5.307557885539537,
+ "grad_norm": 0.21053212881088257,
+ "learning_rate": 0.0006,
+ "loss": 5.210272789001465,
+ "step": 382
+ },
+ {
+ "epoch": 5.321537789427698,
+ "grad_norm": 0.21852520108222961,
+ "learning_rate": 0.0006,
+ "loss": 5.215418815612793,
+ "step": 383
+ },
+ {
+ "epoch": 5.335517693315858,
+ "grad_norm": 0.24872010946273804,
+ "learning_rate": 0.0006,
+ "loss": 5.225139617919922,
+ "step": 384
+ },
+ {
+ "epoch": 5.349497597204019,
+ "grad_norm": 0.27780187129974365,
+ "learning_rate": 0.0006,
+ "loss": 5.241010665893555,
+ "step": 385
+ },
+ {
+ "epoch": 5.36347750109218,
+ "grad_norm": 0.261767715215683,
+ "learning_rate": 0.0006,
+ "loss": 5.230723857879639,
+ "step": 386
+ },
+ {
+ "epoch": 5.3774574049803405,
+ "grad_norm": 0.2111261785030365,
+ "learning_rate": 0.0006,
+ "loss": 5.1848602294921875,
+ "step": 387
+ },
+ {
+ "epoch": 5.391437308868501,
+ "grad_norm": 0.24325387179851532,
+ "learning_rate": 0.0006,
+ "loss": 5.180911064147949,
+ "step": 388
+ },
+ {
+ "epoch": 5.405417212756662,
+ "grad_norm": 0.19542962312698364,
+ "learning_rate": 0.0006,
+ "loss": 5.189907073974609,
+ "step": 389
+ },
+ {
+ "epoch": 5.419397116644823,
+ "grad_norm": 0.20489346981048584,
+ "learning_rate": 0.0006,
+ "loss": 5.184634208679199,
+ "step": 390
+ },
+ {
+ "epoch": 5.433377020532983,
+ "grad_norm": 0.2753409147262573,
+ "learning_rate": 0.0006,
+ "loss": 5.190083026885986,
+ "step": 391
+ },
+ {
+ "epoch": 5.447356924421145,
+ "grad_norm": 0.3758019208908081,
+ "learning_rate": 0.0006,
+ "loss": 5.189423561096191,
+ "step": 392
+ },
+ {
+ "epoch": 5.461336828309306,
+ "grad_norm": 0.4425095021724701,
+ "learning_rate": 0.0006,
+ "loss": 5.17152214050293,
+ "step": 393
+ },
+ {
+ "epoch": 5.4753167321974665,
+ "grad_norm": 0.39721858501434326,
+ "learning_rate": 0.0006,
+ "loss": 5.189178466796875,
+ "step": 394
+ },
+ {
+ "epoch": 5.489296636085627,
+ "grad_norm": 0.43441957235336304,
+ "learning_rate": 0.0006,
+ "loss": 5.1823577880859375,
+ "step": 395
+ },
+ {
+ "epoch": 5.503276539973788,
+ "grad_norm": 0.3583861291408539,
+ "learning_rate": 0.0006,
+ "loss": 5.160187721252441,
+ "step": 396
+ },
+ {
+ "epoch": 5.517256443861949,
+ "grad_norm": 0.323290079832077,
+ "learning_rate": 0.0006,
+ "loss": 5.113046646118164,
+ "step": 397
+ },
+ {
+ "epoch": 5.531236347750109,
+ "grad_norm": 0.3049418330192566,
+ "learning_rate": 0.0006,
+ "loss": 5.172209739685059,
+ "step": 398
+ },
+ {
+ "epoch": 5.54521625163827,
+ "grad_norm": 0.3253744840621948,
+ "learning_rate": 0.0006,
+ "loss": 5.1970720291137695,
+ "step": 399
+ },
+ {
+ "epoch": 5.559196155526431,
+ "grad_norm": 0.3232555091381073,
+ "learning_rate": 0.0006,
+ "loss": 5.173195838928223,
+ "step": 400
+ },
+ {
+ "epoch": 5.573176059414592,
+ "grad_norm": 0.33751845359802246,
+ "learning_rate": 0.0006,
+ "loss": 5.137526988983154,
+ "step": 401
+ },
+ {
+ "epoch": 5.587155963302752,
+ "grad_norm": 0.45970913767814636,
+ "learning_rate": 0.0006,
+ "loss": 5.123377799987793,
+ "step": 402
+ },
+ {
+ "epoch": 5.601135867190913,
+ "grad_norm": 0.5383784770965576,
+ "learning_rate": 0.0006,
+ "loss": 5.154180526733398,
+ "step": 403
+ },
+ {
+ "epoch": 5.615115771079074,
+ "grad_norm": 0.45765912532806396,
+ "learning_rate": 0.0006,
+ "loss": 5.1485209465026855,
+ "step": 404
+ },
+ {
+ "epoch": 5.6290956749672345,
+ "grad_norm": 0.5079503059387207,
+ "learning_rate": 0.0006,
+ "loss": 5.158293724060059,
+ "step": 405
+ },
+ {
+ "epoch": 5.643075578855395,
+ "grad_norm": 0.4860183894634247,
+ "learning_rate": 0.0006,
+ "loss": 5.1610212326049805,
+ "step": 406
+ },
+ {
+ "epoch": 5.657055482743556,
+ "grad_norm": 0.4065648913383484,
+ "learning_rate": 0.0006,
+ "loss": 5.1260786056518555,
+ "step": 407
+ },
+ {
+ "epoch": 5.671035386631717,
+ "grad_norm": 0.39606142044067383,
+ "learning_rate": 0.0006,
+ "loss": 5.1598711013793945,
+ "step": 408
+ },
+ {
+ "epoch": 5.685015290519877,
+ "grad_norm": 0.4705151319503784,
+ "learning_rate": 0.0006,
+ "loss": 5.166455268859863,
+ "step": 409
+ },
+ {
+ "epoch": 5.698995194408038,
+ "grad_norm": 0.5040799379348755,
+ "learning_rate": 0.0006,
+ "loss": 5.1408209800720215,
+ "step": 410
+ },
+ {
+ "epoch": 5.712975098296199,
+ "grad_norm": 0.5012556910514832,
+ "learning_rate": 0.0006,
+ "loss": 5.144109725952148,
+ "step": 411
+ },
+ {
+ "epoch": 5.72695500218436,
+ "grad_norm": 0.44301411509513855,
+ "learning_rate": 0.0006,
+ "loss": 5.155509948730469,
+ "step": 412
+ },
+ {
+ "epoch": 5.740934906072521,
+ "grad_norm": 0.36632269620895386,
+ "learning_rate": 0.0006,
+ "loss": 5.123111248016357,
+ "step": 413
+ },
+ {
+ "epoch": 5.754914809960681,
+ "grad_norm": 0.2980524003505707,
+ "learning_rate": 0.0006,
+ "loss": 5.1355719566345215,
+ "step": 414
+ },
+ {
+ "epoch": 5.768894713848843,
+ "grad_norm": 0.3441782295703888,
+ "learning_rate": 0.0006,
+ "loss": 5.132327079772949,
+ "step": 415
+ },
+ {
+ "epoch": 5.782874617737003,
+ "grad_norm": 0.4150780737400055,
+ "learning_rate": 0.0006,
+ "loss": 5.148543357849121,
+ "step": 416
+ },
+ {
+ "epoch": 5.796854521625164,
+ "grad_norm": 0.48417383432388306,
+ "learning_rate": 0.0006,
+ "loss": 5.104989528656006,
+ "step": 417
+ },
+ {
+ "epoch": 5.810834425513325,
+ "grad_norm": 0.3216031491756439,
+ "learning_rate": 0.0006,
+ "loss": 5.0926127433776855,
+ "step": 418
+ },
+ {
+ "epoch": 5.824814329401486,
+ "grad_norm": 0.2821158468723297,
+ "learning_rate": 0.0006,
+ "loss": 5.112299919128418,
+ "step": 419
+ },
+ {
+ "epoch": 5.838794233289646,
+ "grad_norm": 0.29821011424064636,
+ "learning_rate": 0.0006,
+ "loss": 5.091662406921387,
+ "step": 420
+ },
+ {
+ "epoch": 5.852774137177807,
+ "grad_norm": 0.30570563673973083,
+ "learning_rate": 0.0006,
+ "loss": 5.137539863586426,
+ "step": 421
+ },
+ {
+ "epoch": 5.866754041065968,
+ "grad_norm": 0.4029594957828522,
+ "learning_rate": 0.0006,
+ "loss": 5.112751007080078,
+ "step": 422
+ },
+ {
+ "epoch": 5.8807339449541285,
+ "grad_norm": 0.3878514766693115,
+ "learning_rate": 0.0006,
+ "loss": 5.094973564147949,
+ "step": 423
+ },
+ {
+ "epoch": 5.894713848842289,
+ "grad_norm": 0.31936126947402954,
+ "learning_rate": 0.0006,
+ "loss": 5.081070899963379,
+ "step": 424
+ },
+ {
+ "epoch": 5.90869375273045,
+ "grad_norm": 0.3309082090854645,
+ "learning_rate": 0.0006,
+ "loss": 5.06803560256958,
+ "step": 425
+ },
+ {
+ "epoch": 5.922673656618611,
+ "grad_norm": 0.27830439805984497,
+ "learning_rate": 0.0006,
+ "loss": 5.044766426086426,
+ "step": 426
+ },
+ {
+ "epoch": 5.936653560506771,
+ "grad_norm": 0.3301011919975281,
+ "learning_rate": 0.0006,
+ "loss": 5.093942165374756,
+ "step": 427
+ },
+ {
+ "epoch": 5.950633464394932,
+ "grad_norm": 0.40845948457717896,
+ "learning_rate": 0.0006,
+ "loss": 5.0889458656311035,
+ "step": 428
+ },
+ {
+ "epoch": 5.964613368283093,
+ "grad_norm": 0.4412153959274292,
+ "learning_rate": 0.0006,
+ "loss": 5.064834117889404,
+ "step": 429
+ },
+ {
+ "epoch": 5.978593272171254,
+ "grad_norm": 0.3592590093612671,
+ "learning_rate": 0.0006,
+ "loss": 5.066648006439209,
+ "step": 430
+ },
+ {
+ "epoch": 5.992573176059414,
+ "grad_norm": 0.3952840268611908,
+ "learning_rate": 0.0006,
+ "loss": 5.066549301147461,
+ "step": 431
+ },
+ {
+ "epoch": 6.0,
+ "grad_norm": 0.38878682255744934,
+ "learning_rate": 0.0006,
+ "loss": 5.0354323387146,
+ "step": 432
+ },
+ {
+ "epoch": 6.0,
+ "eval_loss": 5.473907947540283,
+ "eval_runtime": 44.5121,
+ "eval_samples_per_second": 54.861,
+ "eval_steps_per_second": 3.437,
+ "step": 432
+ },
+ {
+ "epoch": 6.013979903888161,
+ "grad_norm": 0.42730140686035156,
+ "learning_rate": 0.0006,
+ "loss": 5.048557281494141,
+ "step": 433
+ },
+ {
+ "epoch": 6.0279598077763215,
+ "grad_norm": 0.32713913917541504,
+ "learning_rate": 0.0006,
+ "loss": 5.041255950927734,
+ "step": 434
+ },
+ {
+ "epoch": 6.041939711664482,
+ "grad_norm": 0.32520365715026855,
+ "learning_rate": 0.0006,
+ "loss": 5.043124198913574,
+ "step": 435
+ },
+ {
+ "epoch": 6.055919615552643,
+ "grad_norm": 0.2941839098930359,
+ "learning_rate": 0.0006,
+ "loss": 5.0407304763793945,
+ "step": 436
+ },
+ {
+ "epoch": 6.069899519440804,
+ "grad_norm": 0.3088819682598114,
+ "learning_rate": 0.0006,
+ "loss": 5.020771026611328,
+ "step": 437
+ },
+ {
+ "epoch": 6.083879423328964,
+ "grad_norm": 0.34334254264831543,
+ "learning_rate": 0.0006,
+ "loss": 5.0260009765625,
+ "step": 438
+ },
+ {
+ "epoch": 6.097859327217125,
+ "grad_norm": 0.33016136288642883,
+ "learning_rate": 0.0006,
+ "loss": 4.994412899017334,
+ "step": 439
+ },
+ {
+ "epoch": 6.111839231105286,
+ "grad_norm": 0.2527366280555725,
+ "learning_rate": 0.0006,
+ "loss": 4.997830390930176,
+ "step": 440
+ },
+ {
+ "epoch": 6.1258191349934465,
+ "grad_norm": 0.24742509424686432,
+ "learning_rate": 0.0006,
+ "loss": 5.017087936401367,
+ "step": 441
+ },
+ {
+ "epoch": 6.139799038881607,
+ "grad_norm": 0.22578303515911102,
+ "learning_rate": 0.0006,
+ "loss": 5.000683784484863,
+ "step": 442
+ },
+ {
+ "epoch": 6.153778942769769,
+ "grad_norm": 0.21213896572589874,
+ "learning_rate": 0.0006,
+ "loss": 4.993280410766602,
+ "step": 443
+ },
+ {
+ "epoch": 6.16775884665793,
+ "grad_norm": 0.22559592127799988,
+ "learning_rate": 0.0006,
+ "loss": 5.005735874176025,
+ "step": 444
+ },
+ {
+ "epoch": 6.18173875054609,
+ "grad_norm": 0.18574322760105133,
+ "learning_rate": 0.0006,
+ "loss": 4.996601104736328,
+ "step": 445
+ },
+ {
+ "epoch": 6.195718654434251,
+ "grad_norm": 0.1793852299451828,
+ "learning_rate": 0.0006,
+ "loss": 4.977394104003906,
+ "step": 446
+ },
+ {
+ "epoch": 6.209698558322412,
+ "grad_norm": 0.1851297914981842,
+ "learning_rate": 0.0006,
+ "loss": 4.983541488647461,
+ "step": 447
+ },
+ {
+ "epoch": 6.2236784622105725,
+ "grad_norm": 0.2045268565416336,
+ "learning_rate": 0.0006,
+ "loss": 4.992830276489258,
+ "step": 448
+ },
+ {
+ "epoch": 6.237658366098733,
+ "grad_norm": 0.21707463264465332,
+ "learning_rate": 0.0006,
+ "loss": 4.998589515686035,
+ "step": 449
+ },
+ {
+ "epoch": 6.251638269986894,
+ "grad_norm": 0.2805860638618469,
+ "learning_rate": 0.0006,
+ "loss": 4.973134517669678,
+ "step": 450
+ },
+ {
+ "epoch": 6.265618173875055,
+ "grad_norm": 0.33102089166641235,
+ "learning_rate": 0.0006,
+ "loss": 4.957348823547363,
+ "step": 451
+ },
+ {
+ "epoch": 6.279598077763215,
+ "grad_norm": 0.3763096034526825,
+ "learning_rate": 0.0006,
+ "loss": 5.0133256912231445,
+ "step": 452
+ },
+ {
+ "epoch": 6.293577981651376,
+ "grad_norm": 0.4676196575164795,
+ "learning_rate": 0.0006,
+ "loss": 4.972289562225342,
+ "step": 453
+ },
+ {
+ "epoch": 6.307557885539537,
+ "grad_norm": 0.6158978343009949,
+ "learning_rate": 0.0006,
+ "loss": 4.989326477050781,
+ "step": 454
+ },
+ {
+ "epoch": 6.321537789427698,
+ "grad_norm": 0.537460446357727,
+ "learning_rate": 0.0006,
+ "loss": 5.0210676193237305,
+ "step": 455
+ },
+ {
+ "epoch": 6.335517693315858,
+ "grad_norm": 0.5342532396316528,
+ "learning_rate": 0.0006,
+ "loss": 4.988524436950684,
+ "step": 456
+ },
+ {
+ "epoch": 6.349497597204019,
+ "grad_norm": 0.5736384987831116,
+ "learning_rate": 0.0006,
+ "loss": 4.977508068084717,
+ "step": 457
+ },
+ {
+ "epoch": 6.36347750109218,
+ "grad_norm": 0.6656201481819153,
+ "learning_rate": 0.0006,
+ "loss": 5.047934055328369,
+ "step": 458
+ },
+ {
+ "epoch": 6.3774574049803405,
+ "grad_norm": 0.6388342380523682,
+ "learning_rate": 0.0006,
+ "loss": 5.017617225646973,
+ "step": 459
+ },
+ {
+ "epoch": 6.391437308868501,
+ "grad_norm": 0.6620904207229614,
+ "learning_rate": 0.0006,
+ "loss": 5.032195091247559,
+ "step": 460
+ },
+ {
+ "epoch": 6.405417212756662,
+ "grad_norm": 0.693274974822998,
+ "learning_rate": 0.0006,
+ "loss": 5.02433967590332,
+ "step": 461
+ },
+ {
+ "epoch": 6.419397116644823,
+ "grad_norm": 0.6888924241065979,
+ "learning_rate": 0.0006,
+ "loss": 5.010735511779785,
+ "step": 462
+ },
+ {
+ "epoch": 6.433377020532983,
+ "grad_norm": 0.7181721925735474,
+ "learning_rate": 0.0006,
+ "loss": 5.049690246582031,
+ "step": 463
+ },
+ {
+ "epoch": 6.447356924421145,
+ "grad_norm": 0.7225117087364197,
+ "learning_rate": 0.0006,
+ "loss": 5.031939506530762,
+ "step": 464
+ },
+ {
+ "epoch": 6.461336828309306,
+ "grad_norm": 0.5268304347991943,
+ "learning_rate": 0.0006,
+ "loss": 5.01638126373291,
+ "step": 465
+ },
+ {
+ "epoch": 6.4753167321974665,
+ "grad_norm": 0.38218435645103455,
+ "learning_rate": 0.0006,
+ "loss": 4.997034072875977,
+ "step": 466
+ },
+ {
+ "epoch": 6.489296636085627,
+ "grad_norm": 0.3576396703720093,
+ "learning_rate": 0.0006,
+ "loss": 5.006804943084717,
+ "step": 467
+ },
+ {
+ "epoch": 6.503276539973788,
+ "grad_norm": 0.3305981755256653,
+ "learning_rate": 0.0006,
+ "loss": 4.994671821594238,
+ "step": 468
+ },
+ {
+ "epoch": 6.517256443861949,
+ "grad_norm": 0.3254900574684143,
+ "learning_rate": 0.0006,
+ "loss": 4.9747490882873535,
+ "step": 469
+ },
+ {
+ "epoch": 6.531236347750109,
+ "grad_norm": 0.2655033469200134,
+ "learning_rate": 0.0006,
+ "loss": 5.002863883972168,
+ "step": 470
+ },
+ {
+ "epoch": 6.54521625163827,
+ "grad_norm": 0.2620532810688019,
+ "learning_rate": 0.0006,
+ "loss": 4.9813337326049805,
+ "step": 471
+ },
+ {
+ "epoch": 6.559196155526431,
+ "grad_norm": 0.22128869593143463,
+ "learning_rate": 0.0006,
+ "loss": 4.978368759155273,
+ "step": 472
+ },
+ {
+ "epoch": 6.573176059414592,
+ "grad_norm": 0.22638699412345886,
+ "learning_rate": 0.0006,
+ "loss": 4.944509029388428,
+ "step": 473
+ },
+ {
+ "epoch": 6.587155963302752,
+ "grad_norm": 0.20720207691192627,
+ "learning_rate": 0.0006,
+ "loss": 4.98404598236084,
+ "step": 474
+ },
+ {
+ "epoch": 6.601135867190913,
+ "grad_norm": 0.21577289700508118,
+ "learning_rate": 0.0006,
+ "loss": 4.958878040313721,
+ "step": 475
+ },
+ {
+ "epoch": 6.615115771079074,
+ "grad_norm": 0.22453972697257996,
+ "learning_rate": 0.0006,
+ "loss": 4.935467720031738,
+ "step": 476
+ },
+ {
+ "epoch": 6.6290956749672345,
+ "grad_norm": 0.20757712423801422,
+ "learning_rate": 0.0006,
+ "loss": 4.943334579467773,
+ "step": 477
+ },
+ {
+ "epoch": 6.643075578855395,
+ "grad_norm": 0.22808043658733368,
+ "learning_rate": 0.0006,
+ "loss": 4.936544418334961,
+ "step": 478
+ },
+ {
+ "epoch": 6.657055482743556,
+ "grad_norm": 0.2193756401538849,
+ "learning_rate": 0.0006,
+ "loss": 4.938162326812744,
+ "step": 479
+ },
+ {
+ "epoch": 6.671035386631717,
+ "grad_norm": 0.19677500426769257,
+ "learning_rate": 0.0006,
+ "loss": 4.9026713371276855,
+ "step": 480
+ },
+ {
+ "epoch": 6.685015290519877,
+ "grad_norm": 0.17271658778190613,
+ "learning_rate": 0.0006,
+ "loss": 4.912519454956055,
+ "step": 481
+ },
+ {
+ "epoch": 6.698995194408038,
+ "grad_norm": 0.17551499605178833,
+ "learning_rate": 0.0006,
+ "loss": 4.929941177368164,
+ "step": 482
+ },
+ {
+ "epoch": 6.712975098296199,
+ "grad_norm": 0.1582687348127365,
+ "learning_rate": 0.0006,
+ "loss": 4.908967971801758,
+ "step": 483
+ },
+ {
+ "epoch": 6.72695500218436,
+ "grad_norm": 0.1593410074710846,
+ "learning_rate": 0.0006,
+ "loss": 4.901554107666016,
+ "step": 484
+ },
+ {
+ "epoch": 6.740934906072521,
+ "grad_norm": 0.16746895015239716,
+ "learning_rate": 0.0006,
+ "loss": 4.917915344238281,
+ "step": 485
+ },
+ {
+ "epoch": 6.754914809960681,
+ "grad_norm": 0.17066062986850739,
+ "learning_rate": 0.0006,
+ "loss": 4.912853240966797,
+ "step": 486
+ },
+ {
+ "epoch": 6.768894713848843,
+ "grad_norm": 0.16727769374847412,
+ "learning_rate": 0.0006,
+ "loss": 4.895434856414795,
+ "step": 487
+ },
+ {
+ "epoch": 6.782874617737003,
+ "grad_norm": 0.1784558743238449,
+ "learning_rate": 0.0006,
+ "loss": 4.8805341720581055,
+ "step": 488
+ },
+ {
+ "epoch": 6.796854521625164,
+ "grad_norm": 0.176686093211174,
+ "learning_rate": 0.0006,
+ "loss": 4.855296611785889,
+ "step": 489
+ },
+ {
+ "epoch": 6.810834425513325,
+ "grad_norm": 0.21577849984169006,
+ "learning_rate": 0.0006,
+ "loss": 4.885506629943848,
+ "step": 490
+ },
+ {
+ "epoch": 6.824814329401486,
+ "grad_norm": 0.27615776658058167,
+ "learning_rate": 0.0006,
+ "loss": 4.913756847381592,
+ "step": 491
+ },
+ {
+ "epoch": 6.838794233289646,
+ "grad_norm": 0.3653675615787506,
+ "learning_rate": 0.0006,
+ "loss": 4.880918979644775,
+ "step": 492
+ },
+ {
+ "epoch": 6.852774137177807,
+ "grad_norm": 0.41473883390426636,
+ "learning_rate": 0.0006,
+ "loss": 4.894164562225342,
+ "step": 493
+ },
+ {
+ "epoch": 6.866754041065968,
+ "grad_norm": 0.45850715041160583,
+ "learning_rate": 0.0006,
+ "loss": 4.907922744750977,
+ "step": 494
+ },
+ {
+ "epoch": 6.8807339449541285,
+ "grad_norm": 0.4675290882587433,
+ "learning_rate": 0.0006,
+ "loss": 4.883112907409668,
+ "step": 495
+ },
+ {
+ "epoch": 6.894713848842289,
+ "grad_norm": 0.45795994997024536,
+ "learning_rate": 0.0006,
+ "loss": 4.897843360900879,
+ "step": 496
+ },
+ {
+ "epoch": 6.90869375273045,
+ "grad_norm": 0.46130508184432983,
+ "learning_rate": 0.0006,
+ "loss": 4.890612602233887,
+ "step": 497
+ },
+ {
+ "epoch": 6.922673656618611,
+ "grad_norm": 0.44783803820610046,
+ "learning_rate": 0.0006,
+ "loss": 4.880192756652832,
+ "step": 498
+ },
+ {
+ "epoch": 6.936653560506771,
+ "grad_norm": 0.35361284017562866,
+ "learning_rate": 0.0006,
+ "loss": 4.840778350830078,
+ "step": 499
+ },
+ {
+ "epoch": 6.950633464394932,
+ "grad_norm": 0.34027689695358276,
+ "learning_rate": 0.0006,
+ "loss": 4.871222496032715,
+ "step": 500
+ },
+ {
+ "epoch": 6.964613368283093,
+ "grad_norm": 0.30228909850120544,
+ "learning_rate": 0.0006,
+ "loss": 4.868077278137207,
+ "step": 501
+ },
+ {
+ "epoch": 6.978593272171254,
+ "grad_norm": 0.27706998586654663,
+ "learning_rate": 0.0006,
+ "loss": 4.895936012268066,
+ "step": 502
+ },
+ {
+ "epoch": 6.992573176059414,
+ "grad_norm": 0.3516870439052582,
+ "learning_rate": 0.0006,
+ "loss": 4.824636459350586,
+ "step": 503
+ },
+ {
+ "epoch": 7.0,
+ "grad_norm": 0.36831387877464294,
+ "learning_rate": 0.0006,
+ "loss": 4.874397277832031,
+ "step": 504
+ },
+ {
+ "epoch": 7.0,
+ "eval_loss": 5.176281452178955,
+ "eval_runtime": 44.2386,
+ "eval_samples_per_second": 55.201,
+ "eval_steps_per_second": 3.459,
+ "step": 504
+ },
+ {
+ "epoch": 7.013979903888161,
+ "grad_norm": 0.4265240430831909,
+ "learning_rate": 0.0006,
+ "loss": 4.814333438873291,
+ "step": 505
+ },
+ {
+ "epoch": 7.0279598077763215,
+ "grad_norm": 0.5126975774765015,
+ "learning_rate": 0.0006,
+ "loss": 4.852343559265137,
+ "step": 506
+ },
+ {
+ "epoch": 7.041939711664482,
+ "grad_norm": 0.43080806732177734,
+ "learning_rate": 0.0006,
+ "loss": 4.843439102172852,
+ "step": 507
+ },
+ {
+ "epoch": 7.055919615552643,
+ "grad_norm": 0.43170198798179626,
+ "learning_rate": 0.0006,
+ "loss": 4.845984935760498,
+ "step": 508
+ },
+ {
+ "epoch": 7.069899519440804,
+ "grad_norm": 0.5640552043914795,
+ "learning_rate": 0.0006,
+ "loss": 4.840991973876953,
+ "step": 509
+ },
+ {
+ "epoch": 7.083879423328964,
+ "grad_norm": 0.540381133556366,
+ "learning_rate": 0.0006,
+ "loss": 4.801316738128662,
+ "step": 510
+ },
+ {
+ "epoch": 7.097859327217125,
+ "grad_norm": 0.5412097573280334,
+ "learning_rate": 0.0006,
+ "loss": 4.886598587036133,
+ "step": 511
+ },
+ {
+ "epoch": 7.111839231105286,
+ "grad_norm": 0.630648136138916,
+ "learning_rate": 0.0006,
+ "loss": 4.849774360656738,
+ "step": 512
+ },
+ {
+ "epoch": 7.1258191349934465,
+ "grad_norm": 0.569952130317688,
+ "learning_rate": 0.0006,
+ "loss": 4.870607376098633,
+ "step": 513
+ },
+ {
+ "epoch": 7.139799038881607,
+ "grad_norm": 0.42051541805267334,
+ "learning_rate": 0.0006,
+ "loss": 4.83833122253418,
+ "step": 514
+ },
+ {
+ "epoch": 7.153778942769769,
+ "grad_norm": 0.3930990397930145,
+ "learning_rate": 0.0006,
+ "loss": 4.853984355926514,
+ "step": 515
+ },
+ {
+ "epoch": 7.16775884665793,
+ "grad_norm": 0.512886106967926,
+ "learning_rate": 0.0006,
+ "loss": 4.815458297729492,
+ "step": 516
+ },
+ {
+ "epoch": 7.18173875054609,
+ "grad_norm": 0.42580172419548035,
+ "learning_rate": 0.0006,
+ "loss": 4.825312614440918,
+ "step": 517
+ },
+ {
+ "epoch": 7.195718654434251,
+ "grad_norm": 0.31628182530403137,
+ "learning_rate": 0.0006,
+ "loss": 4.806377410888672,
+ "step": 518
+ },
+ {
+ "epoch": 7.209698558322412,
+ "grad_norm": 0.3109956681728363,
+ "learning_rate": 0.0006,
+ "loss": 4.819339752197266,
+ "step": 519
+ },
+ {
+ "epoch": 7.2236784622105725,
+ "grad_norm": 0.2740071415901184,
+ "learning_rate": 0.0006,
+ "loss": 4.81319522857666,
+ "step": 520
+ },
+ {
+ "epoch": 7.237658366098733,
+ "grad_norm": 0.26441165804862976,
+ "learning_rate": 0.0006,
+ "loss": 4.8107380867004395,
+ "step": 521
+ },
+ {
+ "epoch": 7.251638269986894,
+ "grad_norm": 0.2496110051870346,
+ "learning_rate": 0.0006,
+ "loss": 4.785193920135498,
+ "step": 522
+ },
+ {
+ "epoch": 7.265618173875055,
+ "grad_norm": 0.2565560042858124,
+ "learning_rate": 0.0006,
+ "loss": 4.802750587463379,
+ "step": 523
+ },
+ {
+ "epoch": 7.279598077763215,
+ "grad_norm": 0.2126980572938919,
+ "learning_rate": 0.0006,
+ "loss": 4.763580322265625,
+ "step": 524
+ },
+ {
+ "epoch": 7.293577981651376,
+ "grad_norm": 0.2169921100139618,
+ "learning_rate": 0.0006,
+ "loss": 4.756124973297119,
+ "step": 525
+ },
+ {
+ "epoch": 7.307557885539537,
+ "grad_norm": 0.2372167706489563,
+ "learning_rate": 0.0006,
+ "loss": 4.786888599395752,
+ "step": 526
+ },
+ {
+ "epoch": 7.321537789427698,
+ "grad_norm": 0.2124386429786682,
+ "learning_rate": 0.0006,
+ "loss": 4.777996063232422,
+ "step": 527
+ },
+ {
+ "epoch": 7.335517693315858,
+ "grad_norm": 0.18585442006587982,
+ "learning_rate": 0.0006,
+ "loss": 4.770537853240967,
+ "step": 528
+ },
+ {
+ "epoch": 7.349497597204019,
+ "grad_norm": 0.20515340566635132,
+ "learning_rate": 0.0006,
+ "loss": 4.769230842590332,
+ "step": 529
+ },
+ {
+ "epoch": 7.36347750109218,
+ "grad_norm": 0.19906704127788544,
+ "learning_rate": 0.0006,
+ "loss": 4.752581596374512,
+ "step": 530
+ },
+ {
+ "epoch": 7.3774574049803405,
+ "grad_norm": 0.2030428946018219,
+ "learning_rate": 0.0006,
+ "loss": 4.7353715896606445,
+ "step": 531
+ },
+ {
+ "epoch": 7.391437308868501,
+ "grad_norm": 0.17820630967617035,
+ "learning_rate": 0.0006,
+ "loss": 4.742705345153809,
+ "step": 532
+ },
+ {
+ "epoch": 7.405417212756662,
+ "grad_norm": 0.17642682790756226,
+ "learning_rate": 0.0006,
+ "loss": 4.752669334411621,
+ "step": 533
+ },
+ {
+ "epoch": 7.419397116644823,
+ "grad_norm": 0.18088409304618835,
+ "learning_rate": 0.0006,
+ "loss": 4.734611511230469,
+ "step": 534
+ },
+ {
+ "epoch": 7.433377020532983,
+ "grad_norm": 0.20897020399570465,
+ "learning_rate": 0.0006,
+ "loss": 4.756442070007324,
+ "step": 535
+ },
+ {
+ "epoch": 7.447356924421145,
+ "grad_norm": 0.23166777193546295,
+ "learning_rate": 0.0006,
+ "loss": 4.712922096252441,
+ "step": 536
+ },
+ {
+ "epoch": 7.461336828309306,
+ "grad_norm": 0.2205347716808319,
+ "learning_rate": 0.0006,
+ "loss": 4.75001335144043,
+ "step": 537
+ },
+ {
+ "epoch": 7.4753167321974665,
+ "grad_norm": 0.23868022859096527,
+ "learning_rate": 0.0006,
+ "loss": 4.726134300231934,
+ "step": 538
+ },
+ {
+ "epoch": 7.489296636085627,
+ "grad_norm": 0.2861441373825073,
+ "learning_rate": 0.0006,
+ "loss": 4.754112243652344,
+ "step": 539
+ },
+ {
+ "epoch": 7.503276539973788,
+ "grad_norm": 0.28980305790901184,
+ "learning_rate": 0.0006,
+ "loss": 4.716021537780762,
+ "step": 540
+ },
+ {
+ "epoch": 7.517256443861949,
+ "grad_norm": 0.2784835696220398,
+ "learning_rate": 0.0006,
+ "loss": 4.713929176330566,
+ "step": 541
+ },
+ {
+ "epoch": 7.531236347750109,
+ "grad_norm": 0.2962653934955597,
+ "learning_rate": 0.0006,
+ "loss": 4.711845397949219,
+ "step": 542
+ },
+ {
+ "epoch": 7.54521625163827,
+ "grad_norm": 0.3333161175251007,
+ "learning_rate": 0.0006,
+ "loss": 4.709834575653076,
+ "step": 543
+ },
+ {
+ "epoch": 7.559196155526431,
+ "grad_norm": 0.35304850339889526,
+ "learning_rate": 0.0006,
+ "loss": 4.732914924621582,
+ "step": 544
+ },
+ {
+ "epoch": 7.573176059414592,
+ "grad_norm": 0.4165869355201721,
+ "learning_rate": 0.0006,
+ "loss": 4.716190338134766,
+ "step": 545
+ },
+ {
+ "epoch": 7.587155963302752,
+ "grad_norm": 0.4878059923648834,
+ "learning_rate": 0.0006,
+ "loss": 4.723773002624512,
+ "step": 546
+ },
+ {
+ "epoch": 7.601135867190913,
+ "grad_norm": 0.36643707752227783,
+ "learning_rate": 0.0006,
+ "loss": 4.721458911895752,
+ "step": 547
+ },
+ {
+ "epoch": 7.615115771079074,
+ "grad_norm": 0.4046908915042877,
+ "learning_rate": 0.0006,
+ "loss": 4.715397834777832,
+ "step": 548
+ },
+ {
+ "epoch": 7.6290956749672345,
+ "grad_norm": 0.44426342844963074,
+ "learning_rate": 0.0006,
+ "loss": 4.737357139587402,
+ "step": 549
+ },
+ {
+ "epoch": 7.643075578855395,
+ "grad_norm": 0.4181079864501953,
+ "learning_rate": 0.0006,
+ "loss": 4.731383800506592,
+ "step": 550
+ },
+ {
+ "epoch": 7.657055482743556,
+ "grad_norm": 0.3486088216304779,
+ "learning_rate": 0.0006,
+ "loss": 4.728029727935791,
+ "step": 551
+ },
+ {
+ "epoch": 7.671035386631717,
+ "grad_norm": 0.37150970101356506,
+ "learning_rate": 0.0006,
+ "loss": 4.7083210945129395,
+ "step": 552
+ },
+ {
+ "epoch": 7.685015290519877,
+ "grad_norm": 0.43324410915374756,
+ "learning_rate": 0.0006,
+ "loss": 4.728720664978027,
+ "step": 553
+ },
+ {
+ "epoch": 7.698995194408038,
+ "grad_norm": 0.5026620626449585,
+ "learning_rate": 0.0006,
+ "loss": 4.698156356811523,
+ "step": 554
+ },
+ {
+ "epoch": 7.712975098296199,
+ "grad_norm": 0.4873499274253845,
+ "learning_rate": 0.0006,
+ "loss": 4.7169952392578125,
+ "step": 555
+ },
+ {
+ "epoch": 7.72695500218436,
+ "grad_norm": 0.4285493791103363,
+ "learning_rate": 0.0006,
+ "loss": 4.6877241134643555,
+ "step": 556
+ },
+ {
+ "epoch": 7.740934906072521,
+ "grad_norm": 0.5179854035377502,
+ "learning_rate": 0.0006,
+ "loss": 4.704267501831055,
+ "step": 557
+ },
+ {
+ "epoch": 7.754914809960681,
+ "grad_norm": 0.4642147421836853,
+ "learning_rate": 0.0006,
+ "loss": 4.695004463195801,
+ "step": 558
+ },
+ {
+ "epoch": 7.768894713848843,
+ "grad_norm": 0.47149503231048584,
+ "learning_rate": 0.0006,
+ "loss": 4.694338798522949,
+ "step": 559
+ },
+ {
+ "epoch": 7.782874617737003,
+ "grad_norm": 0.5422149300575256,
+ "learning_rate": 0.0006,
+ "loss": 4.749478340148926,
+ "step": 560
+ },
+ {
+ "epoch": 7.796854521625164,
+ "grad_norm": 0.4360728859901428,
+ "learning_rate": 0.0006,
+ "loss": 4.685191631317139,
+ "step": 561
+ },
+ {
+ "epoch": 7.810834425513325,
+ "grad_norm": 0.4243801534175873,
+ "learning_rate": 0.0006,
+ "loss": 4.69228458404541,
+ "step": 562
+ },
+ {
+ "epoch": 7.824814329401486,
+ "grad_norm": 0.40380290150642395,
+ "learning_rate": 0.0006,
+ "loss": 4.690923690795898,
+ "step": 563
+ },
+ {
+ "epoch": 7.838794233289646,
+ "grad_norm": 0.4352976381778717,
+ "learning_rate": 0.0006,
+ "loss": 4.720489978790283,
+ "step": 564
+ },
+ {
+ "epoch": 7.852774137177807,
+ "grad_norm": 0.44634920358657837,
+ "learning_rate": 0.0006,
+ "loss": 4.683789253234863,
+ "step": 565
+ },
+ {
+ "epoch": 7.866754041065968,
+ "grad_norm": 0.3818186819553375,
+ "learning_rate": 0.0006,
+ "loss": 4.696887016296387,
+ "step": 566
+ },
+ {
+ "epoch": 7.8807339449541285,
+ "grad_norm": 0.35270464420318604,
+ "learning_rate": 0.0006,
+ "loss": 4.715676307678223,
+ "step": 567
+ },
+ {
+ "epoch": 7.894713848842289,
+ "grad_norm": 0.249756321310997,
+ "learning_rate": 0.0006,
+ "loss": 4.672721862792969,
+ "step": 568
+ },
+ {
+ "epoch": 7.90869375273045,
+ "grad_norm": 0.25097888708114624,
+ "learning_rate": 0.0006,
+ "loss": 4.663518905639648,
+ "step": 569
+ },
+ {
+ "epoch": 7.922673656618611,
+ "grad_norm": 0.26563209295272827,
+ "learning_rate": 0.0006,
+ "loss": 4.675405025482178,
+ "step": 570
+ },
+ {
+ "epoch": 7.936653560506771,
+ "grad_norm": 0.26451292634010315,
+ "learning_rate": 0.0006,
+ "loss": 4.651235103607178,
+ "step": 571
+ },
+ {
+ "epoch": 7.950633464394932,
+ "grad_norm": 0.24185842275619507,
+ "learning_rate": 0.0006,
+ "loss": 4.671639919281006,
+ "step": 572
+ },
+ {
+ "epoch": 7.964613368283093,
+ "grad_norm": 0.21506108343601227,
+ "learning_rate": 0.0006,
+ "loss": 4.665352821350098,
+ "step": 573
+ },
+ {
+ "epoch": 7.978593272171254,
+ "grad_norm": 0.24365705251693726,
+ "learning_rate": 0.0006,
+ "loss": 4.663162708282471,
+ "step": 574
+ },
+ {
+ "epoch": 7.992573176059414,
+ "grad_norm": 0.24251042306423187,
+ "learning_rate": 0.0006,
+ "loss": 4.666633605957031,
+ "step": 575
+ },
+ {
+ "epoch": 8.0,
+ "grad_norm": 0.24187657237052917,
+ "learning_rate": 0.0006,
+ "loss": 4.63957405090332,
+ "step": 576
+ },
+ {
+ "epoch": 8.0,
+ "eval_loss": 4.923156261444092,
+ "eval_runtime": 44.1587,
+ "eval_samples_per_second": 55.301,
+ "eval_steps_per_second": 3.465,
+ "step": 576
+ },
+ {
+ "epoch": 8.013979903888162,
+ "grad_norm": 0.21323645114898682,
+ "learning_rate": 0.0006,
+ "loss": 4.636347770690918,
+ "step": 577
+ },
+ {
+ "epoch": 8.027959807776321,
+ "grad_norm": 0.2325759083032608,
+ "learning_rate": 0.0006,
+ "loss": 4.60684871673584,
+ "step": 578
+ },
+ {
+ "epoch": 8.041939711664483,
+ "grad_norm": 0.26741257309913635,
+ "learning_rate": 0.0006,
+ "loss": 4.647780418395996,
+ "step": 579
+ },
+ {
+ "epoch": 8.055919615552643,
+ "grad_norm": 0.285720556974411,
+ "learning_rate": 0.0006,
+ "loss": 4.629637718200684,
+ "step": 580
+ },
+ {
+ "epoch": 8.069899519440805,
+ "grad_norm": 0.2453618347644806,
+ "learning_rate": 0.0006,
+ "loss": 4.62420654296875,
+ "step": 581
+ },
+ {
+ "epoch": 8.083879423328964,
+ "grad_norm": 0.19662636518478394,
+ "learning_rate": 0.0006,
+ "loss": 4.593767166137695,
+ "step": 582
+ },
+ {
+ "epoch": 8.097859327217126,
+ "grad_norm": 0.22731931507587433,
+ "learning_rate": 0.0006,
+ "loss": 4.627089023590088,
+ "step": 583
+ },
+ {
+ "epoch": 8.111839231105286,
+ "grad_norm": 0.24452590942382812,
+ "learning_rate": 0.0006,
+ "loss": 4.613677024841309,
+ "step": 584
+ },
+ {
+ "epoch": 8.125819134993447,
+ "grad_norm": 0.2952791154384613,
+ "learning_rate": 0.0006,
+ "loss": 4.604985237121582,
+ "step": 585
+ },
+ {
+ "epoch": 8.139799038881607,
+ "grad_norm": 0.3184696137905121,
+ "learning_rate": 0.0006,
+ "loss": 4.589205741882324,
+ "step": 586
+ },
+ {
+ "epoch": 8.153778942769769,
+ "grad_norm": 0.2948093116283417,
+ "learning_rate": 0.0006,
+ "loss": 4.605442047119141,
+ "step": 587
+ },
+ {
+ "epoch": 8.167758846657929,
+ "grad_norm": 0.2450508326292038,
+ "learning_rate": 0.0006,
+ "loss": 4.615349292755127,
+ "step": 588
+ },
+ {
+ "epoch": 8.18173875054609,
+ "grad_norm": 0.25664836168289185,
+ "learning_rate": 0.0006,
+ "loss": 4.592251777648926,
+ "step": 589
+ },
+ {
+ "epoch": 8.19571865443425,
+ "grad_norm": 0.24479512870311737,
+ "learning_rate": 0.0006,
+ "loss": 4.6145920753479,
+ "step": 590
+ },
+ {
+ "epoch": 8.209698558322412,
+ "grad_norm": 0.24395205080509186,
+ "learning_rate": 0.0006,
+ "loss": 4.600954055786133,
+ "step": 591
+ },
+ {
+ "epoch": 8.223678462210572,
+ "grad_norm": 0.21804189682006836,
+ "learning_rate": 0.0006,
+ "loss": 4.607785224914551,
+ "step": 592
+ },
+ {
+ "epoch": 8.237658366098733,
+ "grad_norm": 0.20951785147190094,
+ "learning_rate": 0.0006,
+ "loss": 4.58140754699707,
+ "step": 593
+ },
+ {
+ "epoch": 8.251638269986893,
+ "grad_norm": 0.20415149629116058,
+ "learning_rate": 0.0006,
+ "loss": 4.593405723571777,
+ "step": 594
+ },
+ {
+ "epoch": 8.265618173875055,
+ "grad_norm": 0.19210249185562134,
+ "learning_rate": 0.0006,
+ "loss": 4.603294372558594,
+ "step": 595
+ },
+ {
+ "epoch": 8.279598077763215,
+ "grad_norm": 0.20719751715660095,
+ "learning_rate": 0.0006,
+ "loss": 4.55255651473999,
+ "step": 596
+ },
+ {
+ "epoch": 8.293577981651376,
+ "grad_norm": 0.20101022720336914,
+ "learning_rate": 0.0006,
+ "loss": 4.5928192138671875,
+ "step": 597
+ },
+ {
+ "epoch": 8.307557885539538,
+ "grad_norm": 0.19254222512245178,
+ "learning_rate": 0.0006,
+ "loss": 4.590397834777832,
+ "step": 598
+ },
+ {
+ "epoch": 8.321537789427698,
+ "grad_norm": 0.23234105110168457,
+ "learning_rate": 0.0006,
+ "loss": 4.5987677574157715,
+ "step": 599
+ },
+ {
+ "epoch": 8.33551769331586,
+ "grad_norm": 0.2537451982498169,
+ "learning_rate": 0.0006,
+ "loss": 4.543115615844727,
+ "step": 600
+ },
+ {
+ "epoch": 8.349497597204019,
+ "grad_norm": 0.29171040654182434,
+ "learning_rate": 0.0006,
+ "loss": 4.597387313842773,
+ "step": 601
+ },
+ {
+ "epoch": 8.36347750109218,
+ "grad_norm": 0.3035930097103119,
+ "learning_rate": 0.0006,
+ "loss": 4.566247463226318,
+ "step": 602
+ },
+ {
+ "epoch": 8.37745740498034,
+ "grad_norm": 0.2826756238937378,
+ "learning_rate": 0.0006,
+ "loss": 4.57047176361084,
+ "step": 603
+ },
+ {
+ "epoch": 8.391437308868502,
+ "grad_norm": 0.2959657609462738,
+ "learning_rate": 0.0006,
+ "loss": 4.582820892333984,
+ "step": 604
+ },
+ {
+ "epoch": 8.405417212756662,
+ "grad_norm": 0.3180356025695801,
+ "learning_rate": 0.0006,
+ "loss": 4.5573272705078125,
+ "step": 605
+ },
+ {
+ "epoch": 8.419397116644824,
+ "grad_norm": 0.3617221713066101,
+ "learning_rate": 0.0006,
+ "loss": 4.593079090118408,
+ "step": 606
+ },
+ {
+ "epoch": 8.433377020532983,
+ "grad_norm": 0.35198062658309937,
+ "learning_rate": 0.0006,
+ "loss": 4.615298271179199,
+ "step": 607
+ },
+ {
+ "epoch": 8.447356924421145,
+ "grad_norm": 0.3944903314113617,
+ "learning_rate": 0.0006,
+ "loss": 4.561809539794922,
+ "step": 608
+ },
+ {
+ "epoch": 8.461336828309305,
+ "grad_norm": 0.4525868594646454,
+ "learning_rate": 0.0006,
+ "loss": 4.613105773925781,
+ "step": 609
+ },
+ {
+ "epoch": 8.475316732197467,
+ "grad_norm": 0.4915139079093933,
+ "learning_rate": 0.0006,
+ "loss": 4.566202163696289,
+ "step": 610
+ },
+ {
+ "epoch": 8.489296636085626,
+ "grad_norm": 0.49231988191604614,
+ "learning_rate": 0.0006,
+ "loss": 4.556222915649414,
+ "step": 611
+ },
+ {
+ "epoch": 8.503276539973788,
+ "grad_norm": 0.43036946654319763,
+ "learning_rate": 0.0006,
+ "loss": 4.55517578125,
+ "step": 612
+ },
+ {
+ "epoch": 8.517256443861948,
+ "grad_norm": 0.42405328154563904,
+ "learning_rate": 0.0006,
+ "loss": 4.574039936065674,
+ "step": 613
+ },
+ {
+ "epoch": 8.53123634775011,
+ "grad_norm": 0.3955961763858795,
+ "learning_rate": 0.0006,
+ "loss": 4.6082611083984375,
+ "step": 614
+ },
+ {
+ "epoch": 8.54521625163827,
+ "grad_norm": 0.4377101957798004,
+ "learning_rate": 0.0006,
+ "loss": 4.555740833282471,
+ "step": 615
+ },
+ {
+ "epoch": 8.55919615552643,
+ "grad_norm": 0.4601984918117523,
+ "learning_rate": 0.0006,
+ "loss": 4.553995132446289,
+ "step": 616
+ },
+ {
+ "epoch": 8.57317605941459,
+ "grad_norm": 0.42025700211524963,
+ "learning_rate": 0.0006,
+ "loss": 4.567340850830078,
+ "step": 617
+ },
+ {
+ "epoch": 8.587155963302752,
+ "grad_norm": 0.35569432377815247,
+ "learning_rate": 0.0006,
+ "loss": 4.570140361785889,
+ "step": 618
+ },
+ {
+ "epoch": 8.601135867190912,
+ "grad_norm": 0.37940406799316406,
+ "learning_rate": 0.0006,
+ "loss": 4.581291198730469,
+ "step": 619
+ },
+ {
+ "epoch": 8.615115771079074,
+ "grad_norm": 0.3658490777015686,
+ "learning_rate": 0.0006,
+ "loss": 4.55476188659668,
+ "step": 620
+ },
+ {
+ "epoch": 8.629095674967235,
+ "grad_norm": 0.2908247113227844,
+ "learning_rate": 0.0006,
+ "loss": 4.564087867736816,
+ "step": 621
+ },
+ {
+ "epoch": 8.643075578855395,
+ "grad_norm": 0.29961925745010376,
+ "learning_rate": 0.0006,
+ "loss": 4.556543350219727,
+ "step": 622
+ },
+ {
+ "epoch": 8.657055482743557,
+ "grad_norm": 0.3144846558570862,
+ "learning_rate": 0.0006,
+ "loss": 4.553670883178711,
+ "step": 623
+ },
+ {
+ "epoch": 8.671035386631717,
+ "grad_norm": 0.2845900356769562,
+ "learning_rate": 0.0006,
+ "loss": 4.567296981811523,
+ "step": 624
+ },
+ {
+ "epoch": 8.685015290519878,
+ "grad_norm": 0.253591388463974,
+ "learning_rate": 0.0006,
+ "loss": 4.554507255554199,
+ "step": 625
+ },
+ {
+ "epoch": 8.698995194408038,
+ "grad_norm": 0.2563088536262512,
+ "learning_rate": 0.0006,
+ "loss": 4.542218208312988,
+ "step": 626
+ },
+ {
+ "epoch": 8.7129750982962,
+ "grad_norm": 0.26058217883110046,
+ "learning_rate": 0.0006,
+ "loss": 4.535512447357178,
+ "step": 627
+ },
+ {
+ "epoch": 8.72695500218436,
+ "grad_norm": 0.20749829709529877,
+ "learning_rate": 0.0006,
+ "loss": 4.516959190368652,
+ "step": 628
+ },
+ {
+ "epoch": 8.740934906072521,
+ "grad_norm": 0.2034810334444046,
+ "learning_rate": 0.0006,
+ "loss": 4.55794095993042,
+ "step": 629
+ },
+ {
+ "epoch": 8.754914809960681,
+ "grad_norm": 0.18418121337890625,
+ "learning_rate": 0.0006,
+ "loss": 4.5421247482299805,
+ "step": 630
+ },
+ {
+ "epoch": 8.768894713848843,
+ "grad_norm": 0.20551933348178864,
+ "learning_rate": 0.0006,
+ "loss": 4.50805139541626,
+ "step": 631
+ },
+ {
+ "epoch": 8.782874617737003,
+ "grad_norm": 0.21615999937057495,
+ "learning_rate": 0.0006,
+ "loss": 4.520708084106445,
+ "step": 632
+ },
+ {
+ "epoch": 8.796854521625164,
+ "grad_norm": 0.24864810705184937,
+ "learning_rate": 0.0006,
+ "loss": 4.509330749511719,
+ "step": 633
+ },
+ {
+ "epoch": 8.810834425513324,
+ "grad_norm": 0.2573665380477905,
+ "learning_rate": 0.0006,
+ "loss": 4.531505584716797,
+ "step": 634
+ },
+ {
+ "epoch": 8.824814329401486,
+ "grad_norm": 0.22452878952026367,
+ "learning_rate": 0.0006,
+ "loss": 4.529216289520264,
+ "step": 635
+ },
+ {
+ "epoch": 8.838794233289645,
+ "grad_norm": 0.19727355241775513,
+ "learning_rate": 0.0006,
+ "loss": 4.519906520843506,
+ "step": 636
+ },
+ {
+ "epoch": 8.852774137177807,
+ "grad_norm": 0.19937913119792938,
+ "learning_rate": 0.0006,
+ "loss": 4.536892414093018,
+ "step": 637
+ },
+ {
+ "epoch": 8.866754041065967,
+ "grad_norm": 0.2070389986038208,
+ "learning_rate": 0.0006,
+ "loss": 4.51191520690918,
+ "step": 638
+ },
+ {
+ "epoch": 8.880733944954128,
+ "grad_norm": 0.2293873429298401,
+ "learning_rate": 0.0006,
+ "loss": 4.505377769470215,
+ "step": 639
+ },
+ {
+ "epoch": 8.89471384884229,
+ "grad_norm": 0.21285250782966614,
+ "learning_rate": 0.0006,
+ "loss": 4.5138959884643555,
+ "step": 640
+ },
+ {
+ "epoch": 8.90869375273045,
+ "grad_norm": 0.19487562775611877,
+ "learning_rate": 0.0006,
+ "loss": 4.506108283996582,
+ "step": 641
+ },
+ {
+ "epoch": 8.922673656618612,
+ "grad_norm": 0.21986965835094452,
+ "learning_rate": 0.0006,
+ "loss": 4.506397247314453,
+ "step": 642
+ },
+ {
+ "epoch": 8.936653560506771,
+ "grad_norm": 0.20763885974884033,
+ "learning_rate": 0.0006,
+ "loss": 4.508007049560547,
+ "step": 643
+ },
+ {
+ "epoch": 8.950633464394933,
+ "grad_norm": 0.22858479619026184,
+ "learning_rate": 0.0006,
+ "loss": 4.520846366882324,
+ "step": 644
+ },
+ {
+ "epoch": 8.964613368283093,
+ "grad_norm": 0.23923712968826294,
+ "learning_rate": 0.0006,
+ "loss": 4.535306930541992,
+ "step": 645
+ },
+ {
+ "epoch": 8.978593272171254,
+ "grad_norm": 0.23717579245567322,
+ "learning_rate": 0.0006,
+ "loss": 4.485929489135742,
+ "step": 646
+ },
+ {
+ "epoch": 8.992573176059414,
+ "grad_norm": 0.24033977091312408,
+ "learning_rate": 0.0006,
+ "loss": 4.508999824523926,
+ "step": 647
+ },
+ {
+ "epoch": 9.0,
+ "grad_norm": 0.22432062029838562,
+ "learning_rate": 0.0006,
+ "loss": 4.473136901855469,
+ "step": 648
+ },
+ {
+ "epoch": 9.0,
+ "eval_loss": 4.735903263092041,
+ "eval_runtime": 44.2163,
+ "eval_samples_per_second": 55.228,
+ "eval_steps_per_second": 3.46,
+ "step": 648
+ },
+ {
+ "epoch": 9.013979903888162,
+ "grad_norm": 0.22491489350795746,
+ "learning_rate": 0.0006,
+ "loss": 4.468614101409912,
+ "step": 649
+ },
+ {
+ "epoch": 9.027959807776321,
+ "grad_norm": 0.255759060382843,
+ "learning_rate": 0.0006,
+ "loss": 4.516196250915527,
+ "step": 650
+ },
+ {
+ "epoch": 9.041939711664483,
+ "grad_norm": 0.2591100335121155,
+ "learning_rate": 0.0006,
+ "loss": 4.478276252746582,
+ "step": 651
+ },
+ {
+ "epoch": 9.055919615552643,
+ "grad_norm": 0.30472296476364136,
+ "learning_rate": 0.0006,
+ "loss": 4.479726791381836,
+ "step": 652
+ },
+ {
+ "epoch": 9.069899519440805,
+ "grad_norm": 0.2840559780597687,
+ "learning_rate": 0.0006,
+ "loss": 4.4437384605407715,
+ "step": 653
+ },
+ {
+ "epoch": 9.083879423328964,
+ "grad_norm": 0.2695577144622803,
+ "learning_rate": 0.0006,
+ "loss": 4.476065635681152,
+ "step": 654
+ },
+ {
+ "epoch": 9.097859327217126,
+ "grad_norm": 0.27912381291389465,
+ "learning_rate": 0.0006,
+ "loss": 4.484747409820557,
+ "step": 655
+ },
+ {
+ "epoch": 9.111839231105286,
+ "grad_norm": 0.3091907501220703,
+ "learning_rate": 0.0006,
+ "loss": 4.449443817138672,
+ "step": 656
+ },
+ {
+ "epoch": 9.125819134993447,
+ "grad_norm": 0.30756646394729614,
+ "learning_rate": 0.0006,
+ "loss": 4.496490001678467,
+ "step": 657
+ },
+ {
+ "epoch": 9.139799038881607,
+ "grad_norm": 0.305698037147522,
+ "learning_rate": 0.0006,
+ "loss": 4.466765880584717,
+ "step": 658
+ },
+ {
+ "epoch": 9.153778942769769,
+ "grad_norm": 0.3031201660633087,
+ "learning_rate": 0.0006,
+ "loss": 4.462430953979492,
+ "step": 659
+ },
+ {
+ "epoch": 9.167758846657929,
+ "grad_norm": 0.32725608348846436,
+ "learning_rate": 0.0006,
+ "loss": 4.479879379272461,
+ "step": 660
+ },
+ {
+ "epoch": 9.18173875054609,
+ "grad_norm": 0.31773585081100464,
+ "learning_rate": 0.0006,
+ "loss": 4.473912239074707,
+ "step": 661
+ },
+ {
+ "epoch": 9.19571865443425,
+ "grad_norm": 0.30025365948677063,
+ "learning_rate": 0.0006,
+ "loss": 4.476703643798828,
+ "step": 662
+ },
+ {
+ "epoch": 9.209698558322412,
+ "grad_norm": 0.3177371025085449,
+ "learning_rate": 0.0006,
+ "loss": 4.439765930175781,
+ "step": 663
+ },
+ {
+ "epoch": 9.223678462210572,
+ "grad_norm": 0.3060745894908905,
+ "learning_rate": 0.0006,
+ "loss": 4.487849235534668,
+ "step": 664
+ },
+ {
+ "epoch": 9.237658366098733,
+ "grad_norm": 0.33287373185157776,
+ "learning_rate": 0.0006,
+ "loss": 4.443496227264404,
+ "step": 665
+ },
+ {
+ "epoch": 9.251638269986893,
+ "grad_norm": 0.3758000433444977,
+ "learning_rate": 0.0006,
+ "loss": 4.478017330169678,
+ "step": 666
+ },
+ {
+ "epoch": 9.265618173875055,
+ "grad_norm": 0.32124510407447815,
+ "learning_rate": 0.0006,
+ "loss": 4.4092206954956055,
+ "step": 667
+ },
+ {
+ "epoch": 9.279598077763215,
+ "grad_norm": 0.2786794602870941,
+ "learning_rate": 0.0006,
+ "loss": 4.432734489440918,
+ "step": 668
+ },
+ {
+ "epoch": 9.293577981651376,
+ "grad_norm": 0.35042962431907654,
+ "learning_rate": 0.0006,
+ "loss": 4.462737083435059,
+ "step": 669
+ },
+ {
+ "epoch": 9.307557885539538,
+ "grad_norm": 0.4080469310283661,
+ "learning_rate": 0.0006,
+ "loss": 4.429462432861328,
+ "step": 670
+ },
+ {
+ "epoch": 9.321537789427698,
+ "grad_norm": 0.465158075094223,
+ "learning_rate": 0.0006,
+ "loss": 4.465776443481445,
+ "step": 671
+ },
+ {
+ "epoch": 9.33551769331586,
+ "grad_norm": 0.44833582639694214,
+ "learning_rate": 0.0006,
+ "loss": 4.454195976257324,
+ "step": 672
+ },
+ {
+ "epoch": 9.349497597204019,
+ "grad_norm": 0.451052188873291,
+ "learning_rate": 0.0006,
+ "loss": 4.456139087677002,
+ "step": 673
+ },
+ {
+ "epoch": 9.36347750109218,
+ "grad_norm": 0.3759656250476837,
+ "learning_rate": 0.0006,
+ "loss": 4.461119651794434,
+ "step": 674
+ },
+ {
+ "epoch": 9.37745740498034,
+ "grad_norm": 0.514560341835022,
+ "learning_rate": 0.0006,
+ "loss": 4.49595832824707,
+ "step": 675
+ },
+ {
+ "epoch": 9.391437308868502,
+ "grad_norm": 0.5650647282600403,
+ "learning_rate": 0.0006,
+ "loss": 4.461362838745117,
+ "step": 676
+ },
+ {
+ "epoch": 9.405417212756662,
+ "grad_norm": 0.4218835234642029,
+ "learning_rate": 0.0006,
+ "loss": 4.469146728515625,
+ "step": 677
+ },
+ {
+ "epoch": 9.419397116644824,
+ "grad_norm": 0.4169512689113617,
+ "learning_rate": 0.0006,
+ "loss": 4.470132827758789,
+ "step": 678
+ },
+ {
+ "epoch": 9.433377020532983,
+ "grad_norm": 0.3772219717502594,
+ "learning_rate": 0.0006,
+ "loss": 4.4742608070373535,
+ "step": 679
+ },
+ {
+ "epoch": 9.447356924421145,
+ "grad_norm": 0.35755908489227295,
+ "learning_rate": 0.0006,
+ "loss": 4.461928367614746,
+ "step": 680
+ },
+ {
+ "epoch": 9.461336828309305,
+ "grad_norm": 0.3141227662563324,
+ "learning_rate": 0.0006,
+ "loss": 4.491983413696289,
+ "step": 681
+ },
+ {
+ "epoch": 9.475316732197467,
+ "grad_norm": 0.282461017370224,
+ "learning_rate": 0.0006,
+ "loss": 4.460200309753418,
+ "step": 682
+ },
+ {
+ "epoch": 9.489296636085626,
+ "grad_norm": 0.27174389362335205,
+ "learning_rate": 0.0006,
+ "loss": 4.416125297546387,
+ "step": 683
+ },
+ {
+ "epoch": 9.503276539973788,
+ "grad_norm": 0.24570637941360474,
+ "learning_rate": 0.0006,
+ "loss": 4.4451093673706055,
+ "step": 684
+ },
+ {
+ "epoch": 9.517256443861948,
+ "grad_norm": 0.2741486132144928,
+ "learning_rate": 0.0006,
+ "loss": 4.453263282775879,
+ "step": 685
+ },
+ {
+ "epoch": 9.53123634775011,
+ "grad_norm": 0.24753718078136444,
+ "learning_rate": 0.0006,
+ "loss": 4.483033180236816,
+ "step": 686
+ },
+ {
+ "epoch": 9.54521625163827,
+ "grad_norm": 0.24288412928581238,
+ "learning_rate": 0.0006,
+ "loss": 4.452961444854736,
+ "step": 687
+ },
+ {
+ "epoch": 9.55919615552643,
+ "grad_norm": 0.21554753184318542,
+ "learning_rate": 0.0006,
+ "loss": 4.476005554199219,
+ "step": 688
+ },
+ {
+ "epoch": 9.57317605941459,
+ "grad_norm": 0.22775942087173462,
+ "learning_rate": 0.0006,
+ "loss": 4.4479193687438965,
+ "step": 689
+ },
+ {
+ "epoch": 9.587155963302752,
+ "grad_norm": 0.2610701024532318,
+ "learning_rate": 0.0006,
+ "loss": 4.474987506866455,
+ "step": 690
+ },
+ {
+ "epoch": 9.601135867190912,
+ "grad_norm": 0.2394690215587616,
+ "learning_rate": 0.0006,
+ "loss": 4.444857597351074,
+ "step": 691
+ },
+ {
+ "epoch": 9.615115771079074,
+ "grad_norm": 0.20868559181690216,
+ "learning_rate": 0.0006,
+ "loss": 4.4220709800720215,
+ "step": 692
+ },
+ {
+ "epoch": 9.629095674967235,
+ "grad_norm": 0.21869882941246033,
+ "learning_rate": 0.0006,
+ "loss": 4.451737403869629,
+ "step": 693
+ },
+ {
+ "epoch": 9.643075578855395,
+ "grad_norm": 0.1802823394536972,
+ "learning_rate": 0.0006,
+ "loss": 4.409085273742676,
+ "step": 694
+ },
+ {
+ "epoch": 9.657055482743557,
+ "grad_norm": 0.17046281695365906,
+ "learning_rate": 0.0006,
+ "loss": 4.424643516540527,
+ "step": 695
+ },
+ {
+ "epoch": 9.671035386631717,
+ "grad_norm": 0.19561922550201416,
+ "learning_rate": 0.0006,
+ "loss": 4.412302017211914,
+ "step": 696
+ },
+ {
+ "epoch": 9.685015290519878,
+ "grad_norm": 0.21928799152374268,
+ "learning_rate": 0.0006,
+ "loss": 4.427582263946533,
+ "step": 697
+ },
+ {
+ "epoch": 9.698995194408038,
+ "grad_norm": 0.244873046875,
+ "learning_rate": 0.0006,
+ "loss": 4.431827545166016,
+ "step": 698
+ },
+ {
+ "epoch": 9.7129750982962,
+ "grad_norm": 0.2799488604068756,
+ "learning_rate": 0.0006,
+ "loss": 4.407991409301758,
+ "step": 699
+ },
+ {
+ "epoch": 9.72695500218436,
+ "grad_norm": 0.2699538767337799,
+ "learning_rate": 0.0006,
+ "loss": 4.412313461303711,
+ "step": 700
+ },
+ {
+ "epoch": 9.740934906072521,
+ "grad_norm": 0.22293835878372192,
+ "learning_rate": 0.0006,
+ "loss": 4.423369884490967,
+ "step": 701
+ },
+ {
+ "epoch": 9.754914809960681,
+ "grad_norm": 0.21554361283779144,
+ "learning_rate": 0.0006,
+ "loss": 4.42026948928833,
+ "step": 702
+ },
+ {
+ "epoch": 9.768894713848843,
+ "grad_norm": 0.22135840356349945,
+ "learning_rate": 0.0006,
+ "loss": 4.400010108947754,
+ "step": 703
+ },
+ {
+ "epoch": 9.782874617737003,
+ "grad_norm": 0.2169952541589737,
+ "learning_rate": 0.0006,
+ "loss": 4.394582271575928,
+ "step": 704
+ },
+ {
+ "epoch": 9.796854521625164,
+ "grad_norm": 0.18913042545318604,
+ "learning_rate": 0.0006,
+ "loss": 4.395880699157715,
+ "step": 705
+ },
+ {
+ "epoch": 9.810834425513324,
+ "grad_norm": 0.191524475812912,
+ "learning_rate": 0.0006,
+ "loss": 4.378962516784668,
+ "step": 706
+ },
+ {
+ "epoch": 9.824814329401486,
+ "grad_norm": 0.20057640969753265,
+ "learning_rate": 0.0006,
+ "loss": 4.431066513061523,
+ "step": 707
+ },
+ {
+ "epoch": 9.838794233289645,
+ "grad_norm": 0.21670377254486084,
+ "learning_rate": 0.0006,
+ "loss": 4.364682197570801,
+ "step": 708
+ },
+ {
+ "epoch": 9.852774137177807,
+ "grad_norm": 0.21653099358081818,
+ "learning_rate": 0.0006,
+ "loss": 4.4050445556640625,
+ "step": 709
+ },
+ {
+ "epoch": 9.866754041065967,
+ "grad_norm": 0.2217673808336258,
+ "learning_rate": 0.0006,
+ "loss": 4.423664093017578,
+ "step": 710
+ },
+ {
+ "epoch": 9.880733944954128,
+ "grad_norm": 0.251078337430954,
+ "learning_rate": 0.0006,
+ "loss": 4.405768394470215,
+ "step": 711
+ },
+ {
+ "epoch": 9.89471384884229,
+ "grad_norm": 0.28962627053260803,
+ "learning_rate": 0.0006,
+ "loss": 4.421207427978516,
+ "step": 712
+ },
+ {
+ "epoch": 9.90869375273045,
+ "grad_norm": 0.3478074371814728,
+ "learning_rate": 0.0006,
+ "loss": 4.414942741394043,
+ "step": 713
+ },
+ {
+ "epoch": 9.922673656618612,
+ "grad_norm": 0.40396368503570557,
+ "learning_rate": 0.0006,
+ "loss": 4.415163993835449,
+ "step": 714
+ },
+ {
+ "epoch": 9.936653560506771,
+ "grad_norm": 0.3689858019351959,
+ "learning_rate": 0.0006,
+ "loss": 4.381345272064209,
+ "step": 715
+ },
+ {
+ "epoch": 9.950633464394933,
+ "grad_norm": 0.344868004322052,
+ "learning_rate": 0.0006,
+ "loss": 4.433088302612305,
+ "step": 716
+ },
+ {
+ "epoch": 9.964613368283093,
+ "grad_norm": 0.37976378202438354,
+ "learning_rate": 0.0006,
+ "loss": 4.431371212005615,
+ "step": 717
+ },
+ {
+ "epoch": 9.978593272171254,
+ "grad_norm": 0.4354130029678345,
+ "learning_rate": 0.0006,
+ "loss": 4.434148788452148,
+ "step": 718
+ },
+ {
+ "epoch": 9.992573176059414,
+ "grad_norm": 0.35859373211860657,
+ "learning_rate": 0.0006,
+ "loss": 4.428055763244629,
+ "step": 719
+ },
+ {
+ "epoch": 10.0,
+ "grad_norm": 0.3365023732185364,
+ "learning_rate": 0.0006,
+ "loss": 4.3888654708862305,
+ "step": 720
+ },
+ {
+ "epoch": 10.0,
+ "eval_loss": 4.638620853424072,
+ "eval_runtime": 44.3054,
+ "eval_samples_per_second": 55.117,
+ "eval_steps_per_second": 3.453,
+ "step": 720
+ },
+ {
+ "epoch": 10.013979903888162,
+ "grad_norm": 0.3267960250377655,
+ "learning_rate": 0.0006,
+ "loss": 4.386068344116211,
+ "step": 721
+ },
+ {
+ "epoch": 10.027959807776321,
+ "grad_norm": 0.33440953493118286,
+ "learning_rate": 0.0006,
+ "loss": 4.397515296936035,
+ "step": 722
+ },
+ {
+ "epoch": 10.041939711664483,
+ "grad_norm": 0.30047518014907837,
+ "learning_rate": 0.0006,
+ "loss": 4.398358345031738,
+ "step": 723
+ },
+ {
+ "epoch": 10.055919615552643,
+ "grad_norm": 0.2912217378616333,
+ "learning_rate": 0.0006,
+ "loss": 4.341166973114014,
+ "step": 724
+ },
+ {
+ "epoch": 10.069899519440805,
+ "grad_norm": 0.3199564218521118,
+ "learning_rate": 0.0006,
+ "loss": 4.388717174530029,
+ "step": 725
+ },
+ {
+ "epoch": 10.083879423328964,
+ "grad_norm": 0.2765582799911499,
+ "learning_rate": 0.0006,
+ "loss": 4.392992973327637,
+ "step": 726
+ },
+ {
+ "epoch": 10.097859327217126,
+ "grad_norm": 0.27138450741767883,
+ "learning_rate": 0.0006,
+ "loss": 4.382307529449463,
+ "step": 727
+ },
+ {
+ "epoch": 10.111839231105286,
+ "grad_norm": 0.29230645298957825,
+ "learning_rate": 0.0006,
+ "loss": 4.357486724853516,
+ "step": 728
+ },
+ {
+ "epoch": 10.125819134993447,
+ "grad_norm": 0.3127598464488983,
+ "learning_rate": 0.0006,
+ "loss": 4.39072322845459,
+ "step": 729
+ },
+ {
+ "epoch": 10.139799038881607,
+ "grad_norm": 0.3230913281440735,
+ "learning_rate": 0.0006,
+ "loss": 4.35037899017334,
+ "step": 730
+ },
+ {
+ "epoch": 10.153778942769769,
+ "grad_norm": 0.333675354719162,
+ "learning_rate": 0.0006,
+ "loss": 4.378030776977539,
+ "step": 731
+ },
+ {
+ "epoch": 10.167758846657929,
+ "grad_norm": 0.30325770378112793,
+ "learning_rate": 0.0006,
+ "loss": 4.372736930847168,
+ "step": 732
+ },
+ {
+ "epoch": 10.18173875054609,
+ "grad_norm": 0.2888163924217224,
+ "learning_rate": 0.0006,
+ "loss": 4.397604942321777,
+ "step": 733
+ },
+ {
+ "epoch": 10.19571865443425,
+ "grad_norm": 0.3378832936286926,
+ "learning_rate": 0.0006,
+ "loss": 4.395705223083496,
+ "step": 734
+ },
+ {
+ "epoch": 10.209698558322412,
+ "grad_norm": 0.30980268120765686,
+ "learning_rate": 0.0006,
+ "loss": 4.3861212730407715,
+ "step": 735
+ },
+ {
+ "epoch": 10.223678462210572,
+ "grad_norm": 0.2965783178806305,
+ "learning_rate": 0.0006,
+ "loss": 4.394898414611816,
+ "step": 736
+ },
+ {
+ "epoch": 10.237658366098733,
+ "grad_norm": 0.2818217873573303,
+ "learning_rate": 0.0006,
+ "loss": 4.36171817779541,
+ "step": 737
+ },
+ {
+ "epoch": 10.251638269986893,
+ "grad_norm": 0.2418123185634613,
+ "learning_rate": 0.0006,
+ "loss": 4.370945930480957,
+ "step": 738
+ },
+ {
+ "epoch": 10.265618173875055,
+ "grad_norm": 0.22372810542583466,
+ "learning_rate": 0.0006,
+ "loss": 4.354825973510742,
+ "step": 739
+ },
+ {
+ "epoch": 10.279598077763215,
+ "grad_norm": 0.238066166639328,
+ "learning_rate": 0.0006,
+ "loss": 4.376237392425537,
+ "step": 740
+ },
+ {
+ "epoch": 10.293577981651376,
+ "grad_norm": 0.22352449595928192,
+ "learning_rate": 0.0006,
+ "loss": 4.317084312438965,
+ "step": 741
+ },
+ {
+ "epoch": 10.307557885539538,
+ "grad_norm": 0.21685205399990082,
+ "learning_rate": 0.0006,
+ "loss": 4.335271835327148,
+ "step": 742
+ },
+ {
+ "epoch": 10.321537789427698,
+ "grad_norm": 0.19584694504737854,
+ "learning_rate": 0.0006,
+ "loss": 4.357963562011719,
+ "step": 743
+ },
+ {
+ "epoch": 10.33551769331586,
+ "grad_norm": 0.20373336970806122,
+ "learning_rate": 0.0006,
+ "loss": 4.401963233947754,
+ "step": 744
+ },
+ {
+ "epoch": 10.349497597204019,
+ "grad_norm": 0.2247837632894516,
+ "learning_rate": 0.0006,
+ "loss": 4.357202529907227,
+ "step": 745
+ },
+ {
+ "epoch": 10.36347750109218,
+ "grad_norm": 0.2416863739490509,
+ "learning_rate": 0.0006,
+ "loss": 4.364739418029785,
+ "step": 746
+ },
+ {
+ "epoch": 10.37745740498034,
+ "grad_norm": 0.22281162440776825,
+ "learning_rate": 0.0006,
+ "loss": 4.351607799530029,
+ "step": 747
+ },
+ {
+ "epoch": 10.391437308868502,
+ "grad_norm": 0.20751096308231354,
+ "learning_rate": 0.0006,
+ "loss": 4.370017051696777,
+ "step": 748
+ },
+ {
+ "epoch": 10.405417212756662,
+ "grad_norm": 0.19178363680839539,
+ "learning_rate": 0.0006,
+ "loss": 4.360328674316406,
+ "step": 749
+ },
+ {
+ "epoch": 10.419397116644824,
+ "grad_norm": 0.20534078776836395,
+ "learning_rate": 0.0006,
+ "loss": 4.3735432624816895,
+ "step": 750
+ },
+ {
+ "epoch": 10.433377020532983,
+ "grad_norm": 0.20533937215805054,
+ "learning_rate": 0.0006,
+ "loss": 4.326902389526367,
+ "step": 751
+ },
+ {
+ "epoch": 10.447356924421145,
+ "grad_norm": 0.22057875990867615,
+ "learning_rate": 0.0006,
+ "loss": 4.360934257507324,
+ "step": 752
+ },
+ {
+ "epoch": 10.461336828309305,
+ "grad_norm": 0.25568997859954834,
+ "learning_rate": 0.0006,
+ "loss": 4.345063209533691,
+ "step": 753
+ },
+ {
+ "epoch": 10.475316732197467,
+ "grad_norm": 0.31471487879753113,
+ "learning_rate": 0.0006,
+ "loss": 4.324014186859131,
+ "step": 754
+ },
+ {
+ "epoch": 10.489296636085626,
+ "grad_norm": 0.2716822624206543,
+ "learning_rate": 0.0006,
+ "loss": 4.318459510803223,
+ "step": 755
+ },
+ {
+ "epoch": 10.503276539973788,
+ "grad_norm": 0.19552019238471985,
+ "learning_rate": 0.0006,
+ "loss": 4.3367509841918945,
+ "step": 756
+ },
+ {
+ "epoch": 10.517256443861948,
+ "grad_norm": 0.22822986543178558,
+ "learning_rate": 0.0006,
+ "loss": 4.328935623168945,
+ "step": 757
+ },
+ {
+ "epoch": 10.53123634775011,
+ "grad_norm": 0.22282928228378296,
+ "learning_rate": 0.0006,
+ "loss": 4.358272552490234,
+ "step": 758
+ },
+ {
+ "epoch": 10.54521625163827,
+ "grad_norm": 0.23303352296352386,
+ "learning_rate": 0.0006,
+ "loss": 4.336641311645508,
+ "step": 759
+ },
+ {
+ "epoch": 10.55919615552643,
+ "grad_norm": 0.29474690556526184,
+ "learning_rate": 0.0006,
+ "loss": 4.343188285827637,
+ "step": 760
+ },
+ {
+ "epoch": 10.57317605941459,
+ "grad_norm": 0.36269059777259827,
+ "learning_rate": 0.0006,
+ "loss": 4.313019752502441,
+ "step": 761
+ },
+ {
+ "epoch": 10.587155963302752,
+ "grad_norm": 0.3742978870868683,
+ "learning_rate": 0.0006,
+ "loss": 4.361410140991211,
+ "step": 762
+ },
+ {
+ "epoch": 10.601135867190912,
+ "grad_norm": 0.34412163496017456,
+ "learning_rate": 0.0006,
+ "loss": 4.321324825286865,
+ "step": 763
+ },
+ {
+ "epoch": 10.615115771079074,
+ "grad_norm": 0.3464587926864624,
+ "learning_rate": 0.0006,
+ "loss": 4.341907501220703,
+ "step": 764
+ },
+ {
+ "epoch": 10.629095674967235,
+ "grad_norm": 0.3318136930465698,
+ "learning_rate": 0.0006,
+ "loss": 4.329099655151367,
+ "step": 765
+ },
+ {
+ "epoch": 10.643075578855395,
+ "grad_norm": 0.31292903423309326,
+ "learning_rate": 0.0006,
+ "loss": 4.332015037536621,
+ "step": 766
+ },
+ {
+ "epoch": 10.657055482743557,
+ "grad_norm": 0.2904847264289856,
+ "learning_rate": 0.0006,
+ "loss": 4.341764450073242,
+ "step": 767
+ },
+ {
+ "epoch": 10.671035386631717,
+ "grad_norm": 0.3287692666053772,
+ "learning_rate": 0.0006,
+ "loss": 4.342329025268555,
+ "step": 768
+ },
+ {
+ "epoch": 10.685015290519878,
+ "grad_norm": 0.3115365207195282,
+ "learning_rate": 0.0006,
+ "loss": 4.3530073165893555,
+ "step": 769
+ },
+ {
+ "epoch": 10.698995194408038,
+ "grad_norm": 0.24133864045143127,
+ "learning_rate": 0.0006,
+ "loss": 4.321497917175293,
+ "step": 770
+ },
+ {
+ "epoch": 10.7129750982962,
+ "grad_norm": 0.24658630788326263,
+ "learning_rate": 0.0006,
+ "loss": 4.32669734954834,
+ "step": 771
+ },
+ {
+ "epoch": 10.72695500218436,
+ "grad_norm": 0.2342129647731781,
+ "learning_rate": 0.0006,
+ "loss": 4.345459461212158,
+ "step": 772
+ },
+ {
+ "epoch": 10.740934906072521,
+ "grad_norm": 0.23360829055309296,
+ "learning_rate": 0.0006,
+ "loss": 4.33249568939209,
+ "step": 773
+ },
+ {
+ "epoch": 10.754914809960681,
+ "grad_norm": 0.24314677715301514,
+ "learning_rate": 0.0006,
+ "loss": 4.30499792098999,
+ "step": 774
+ },
+ {
+ "epoch": 10.768894713848843,
+ "grad_norm": 0.22105181217193604,
+ "learning_rate": 0.0006,
+ "loss": 4.33706521987915,
+ "step": 775
+ },
+ {
+ "epoch": 10.782874617737003,
+ "grad_norm": 0.23307174444198608,
+ "learning_rate": 0.0006,
+ "loss": 4.320387840270996,
+ "step": 776
+ },
+ {
+ "epoch": 10.796854521625164,
+ "grad_norm": 0.24946169555187225,
+ "learning_rate": 0.0006,
+ "loss": 4.316012382507324,
+ "step": 777
+ },
+ {
+ "epoch": 10.810834425513324,
+ "grad_norm": 0.26023536920547485,
+ "learning_rate": 0.0006,
+ "loss": 4.315193176269531,
+ "step": 778
+ },
+ {
+ "epoch": 10.824814329401486,
+ "grad_norm": 0.2688547968864441,
+ "learning_rate": 0.0006,
+ "loss": 4.3243255615234375,
+ "step": 779
+ },
+ {
+ "epoch": 10.838794233289645,
+ "grad_norm": 0.28188297152519226,
+ "learning_rate": 0.0006,
+ "loss": 4.3202972412109375,
+ "step": 780
+ },
+ {
+ "epoch": 10.852774137177807,
+ "grad_norm": 0.2890053689479828,
+ "learning_rate": 0.0006,
+ "loss": 4.318799018859863,
+ "step": 781
+ },
+ {
+ "epoch": 10.866754041065967,
+ "grad_norm": 0.2914353013038635,
+ "learning_rate": 0.0006,
+ "loss": 4.314262390136719,
+ "step": 782
+ },
+ {
+ "epoch": 10.880733944954128,
+ "grad_norm": 0.3145572543144226,
+ "learning_rate": 0.0006,
+ "loss": 4.339262008666992,
+ "step": 783
+ },
+ {
+ "epoch": 10.89471384884229,
+ "grad_norm": 0.323062002658844,
+ "learning_rate": 0.0006,
+ "loss": 4.354856491088867,
+ "step": 784
+ },
+ {
+ "epoch": 10.90869375273045,
+ "grad_norm": 0.32741227746009827,
+ "learning_rate": 0.0006,
+ "loss": 4.325577735900879,
+ "step": 785
+ },
+ {
+ "epoch": 10.922673656618612,
+ "grad_norm": 0.2855733036994934,
+ "learning_rate": 0.0006,
+ "loss": 4.324419021606445,
+ "step": 786
+ },
+ {
+ "epoch": 10.936653560506771,
+ "grad_norm": 0.2969444990158081,
+ "learning_rate": 0.0006,
+ "loss": 4.320681095123291,
+ "step": 787
+ },
+ {
+ "epoch": 10.950633464394933,
+ "grad_norm": 0.28108111023902893,
+ "learning_rate": 0.0006,
+ "loss": 4.32673454284668,
+ "step": 788
+ },
+ {
+ "epoch": 10.964613368283093,
+ "grad_norm": 0.2537972629070282,
+ "learning_rate": 0.0006,
+ "loss": 4.3197021484375,
+ "step": 789
+ },
+ {
+ "epoch": 10.978593272171254,
+ "grad_norm": 0.2354544699192047,
+ "learning_rate": 0.0006,
+ "loss": 4.3354973793029785,
+ "step": 790
+ },
+ {
+ "epoch": 10.992573176059414,
+ "grad_norm": 0.26195117831230164,
+ "learning_rate": 0.0006,
+ "loss": 4.3172526359558105,
+ "step": 791
+ },
+ {
+ "epoch": 11.0,
+ "grad_norm": 0.27089616656303406,
+ "learning_rate": 0.0006,
+ "loss": 4.324293613433838,
+ "step": 792
+ },
+ {
+ "epoch": 11.0,
+ "eval_loss": 4.531813621520996,
+ "eval_runtime": 44.1656,
+ "eval_samples_per_second": 55.292,
+ "eval_steps_per_second": 3.464,
+ "step": 792
+ },
+ {
+ "epoch": 11.013979903888162,
+ "grad_norm": 0.2526339590549469,
+ "learning_rate": 0.0006,
+ "loss": 4.287600517272949,
+ "step": 793
+ },
+ {
+ "epoch": 11.027959807776321,
+ "grad_norm": 0.24318458139896393,
+ "learning_rate": 0.0006,
+ "loss": 4.268078327178955,
+ "step": 794
+ },
+ {
+ "epoch": 11.041939711664483,
+ "grad_norm": 0.2450830638408661,
+ "learning_rate": 0.0006,
+ "loss": 4.265467643737793,
+ "step": 795
+ },
+ {
+ "epoch": 11.055919615552643,
+ "grad_norm": 0.23963099718093872,
+ "learning_rate": 0.0006,
+ "loss": 4.267931938171387,
+ "step": 796
+ },
+ {
+ "epoch": 11.069899519440805,
+ "grad_norm": 0.2488657534122467,
+ "learning_rate": 0.0006,
+ "loss": 4.30262565612793,
+ "step": 797
+ },
+ {
+ "epoch": 11.083879423328964,
+ "grad_norm": 0.2319781631231308,
+ "learning_rate": 0.0006,
+ "loss": 4.28665828704834,
+ "step": 798
+ },
+ {
+ "epoch": 11.097859327217126,
+ "grad_norm": 0.2425263375043869,
+ "learning_rate": 0.0006,
+ "loss": 4.284830570220947,
+ "step": 799
+ },
+ {
+ "epoch": 11.111839231105286,
+ "grad_norm": 0.23096567392349243,
+ "learning_rate": 0.0006,
+ "loss": 4.2817206382751465,
+ "step": 800
+ },
+ {
+ "epoch": 11.125819134993447,
+ "grad_norm": 0.2846364676952362,
+ "learning_rate": 0.0006,
+ "loss": 4.276104927062988,
+ "step": 801
+ },
+ {
+ "epoch": 11.139799038881607,
+ "grad_norm": 0.2984965741634369,
+ "learning_rate": 0.0006,
+ "loss": 4.2909650802612305,
+ "step": 802
+ },
+ {
+ "epoch": 11.153778942769769,
+ "grad_norm": 0.2841213643550873,
+ "learning_rate": 0.0006,
+ "loss": 4.283358097076416,
+ "step": 803
+ },
+ {
+ "epoch": 11.167758846657929,
+ "grad_norm": 0.29192933440208435,
+ "learning_rate": 0.0006,
+ "loss": 4.267040729522705,
+ "step": 804
+ },
+ {
+ "epoch": 11.18173875054609,
+ "grad_norm": 0.3254184126853943,
+ "learning_rate": 0.0006,
+ "loss": 4.301564693450928,
+ "step": 805
+ },
+ {
+ "epoch": 11.19571865443425,
+ "grad_norm": 0.3347095847129822,
+ "learning_rate": 0.0006,
+ "loss": 4.271395683288574,
+ "step": 806
+ },
+ {
+ "epoch": 11.209698558322412,
+ "grad_norm": 0.25609350204467773,
+ "learning_rate": 0.0006,
+ "loss": 4.2963056564331055,
+ "step": 807
+ },
+ {
+ "epoch": 11.223678462210572,
+ "grad_norm": 0.29272061586380005,
+ "learning_rate": 0.0006,
+ "loss": 4.298416614532471,
+ "step": 808
+ },
+ {
+ "epoch": 11.237658366098733,
+ "grad_norm": 0.32179465889930725,
+ "learning_rate": 0.0006,
+ "loss": 4.294036865234375,
+ "step": 809
+ },
+ {
+ "epoch": 11.251638269986893,
+ "grad_norm": 0.3336549401283264,
+ "learning_rate": 0.0006,
+ "loss": 4.291993141174316,
+ "step": 810
+ },
+ {
+ "epoch": 11.265618173875055,
+ "grad_norm": 0.32273536920547485,
+ "learning_rate": 0.0006,
+ "loss": 4.311004638671875,
+ "step": 811
+ },
+ {
+ "epoch": 11.279598077763215,
+ "grad_norm": 0.3575087785720825,
+ "learning_rate": 0.0006,
+ "loss": 4.300217628479004,
+ "step": 812
+ },
+ {
+ "epoch": 11.293577981651376,
+ "grad_norm": 0.3332885205745697,
+ "learning_rate": 0.0006,
+ "loss": 4.278337478637695,
+ "step": 813
+ },
+ {
+ "epoch": 11.307557885539538,
+ "grad_norm": 0.31440407037734985,
+ "learning_rate": 0.0006,
+ "loss": 4.273826599121094,
+ "step": 814
+ },
+ {
+ "epoch": 11.321537789427698,
+ "grad_norm": 0.29822009801864624,
+ "learning_rate": 0.0006,
+ "loss": 4.284292221069336,
+ "step": 815
+ },
+ {
+ "epoch": 11.33551769331586,
+ "grad_norm": 0.30695512890815735,
+ "learning_rate": 0.0006,
+ "loss": 4.2831926345825195,
+ "step": 816
+ },
+ {
+ "epoch": 11.349497597204019,
+ "grad_norm": 0.30576950311660767,
+ "learning_rate": 0.0006,
+ "loss": 4.277133464813232,
+ "step": 817
+ },
+ {
+ "epoch": 11.36347750109218,
+ "grad_norm": 0.2859647870063782,
+ "learning_rate": 0.0006,
+ "loss": 4.3130106925964355,
+ "step": 818
+ },
+ {
+ "epoch": 11.37745740498034,
+ "grad_norm": 0.32417574524879456,
+ "learning_rate": 0.0006,
+ "loss": 4.310303211212158,
+ "step": 819
+ },
+ {
+ "epoch": 11.391437308868502,
+ "grad_norm": 0.3512463867664337,
+ "learning_rate": 0.0006,
+ "loss": 4.287015438079834,
+ "step": 820
+ },
+ {
+ "epoch": 11.405417212756662,
+ "grad_norm": 0.32578620314598083,
+ "learning_rate": 0.0006,
+ "loss": 4.2957940101623535,
+ "step": 821
+ },
+ {
+ "epoch": 11.419397116644824,
+ "grad_norm": 0.287949800491333,
+ "learning_rate": 0.0006,
+ "loss": 4.2881879806518555,
+ "step": 822
+ },
+ {
+ "epoch": 11.433377020532983,
+ "grad_norm": 0.28048595786094666,
+ "learning_rate": 0.0006,
+ "loss": 4.274960517883301,
+ "step": 823
+ },
+ {
+ "epoch": 11.447356924421145,
+ "grad_norm": 0.2541540563106537,
+ "learning_rate": 0.0006,
+ "loss": 4.261083602905273,
+ "step": 824
+ },
+ {
+ "epoch": 11.461336828309305,
+ "grad_norm": 0.2348361313343048,
+ "learning_rate": 0.0006,
+ "loss": 4.271036148071289,
+ "step": 825
+ },
+ {
+ "epoch": 11.475316732197467,
+ "grad_norm": 0.20913535356521606,
+ "learning_rate": 0.0006,
+ "loss": 4.307661056518555,
+ "step": 826
+ },
+ {
+ "epoch": 11.489296636085626,
+ "grad_norm": 0.22298868000507355,
+ "learning_rate": 0.0006,
+ "loss": 4.26902961730957,
+ "step": 827
+ },
+ {
+ "epoch": 11.503276539973788,
+ "grad_norm": 0.22752761840820312,
+ "learning_rate": 0.0006,
+ "loss": 4.305529594421387,
+ "step": 828
+ },
+ {
+ "epoch": 11.517256443861948,
+ "grad_norm": 0.2149917483329773,
+ "learning_rate": 0.0006,
+ "loss": 4.25134801864624,
+ "step": 829
+ },
+ {
+ "epoch": 11.53123634775011,
+ "grad_norm": 0.21085695922374725,
+ "learning_rate": 0.0006,
+ "loss": 4.266982078552246,
+ "step": 830
+ },
+ {
+ "epoch": 11.54521625163827,
+ "grad_norm": 0.21586747467517853,
+ "learning_rate": 0.0006,
+ "loss": 4.235255718231201,
+ "step": 831
+ },
+ {
+ "epoch": 11.55919615552643,
+ "grad_norm": 0.2520856559276581,
+ "learning_rate": 0.0006,
+ "loss": 4.283442497253418,
+ "step": 832
+ },
+ {
+ "epoch": 11.57317605941459,
+ "grad_norm": 0.2825471758842468,
+ "learning_rate": 0.0006,
+ "loss": 4.234672546386719,
+ "step": 833
+ },
+ {
+ "epoch": 11.587155963302752,
+ "grad_norm": 0.27437824010849,
+ "learning_rate": 0.0006,
+ "loss": 4.246068000793457,
+ "step": 834
+ },
+ {
+ "epoch": 11.601135867190912,
+ "grad_norm": 0.2596757411956787,
+ "learning_rate": 0.0006,
+ "loss": 4.278448104858398,
+ "step": 835
+ },
+ {
+ "epoch": 11.615115771079074,
+ "grad_norm": 0.25663474202156067,
+ "learning_rate": 0.0006,
+ "loss": 4.308779716491699,
+ "step": 836
+ },
+ {
+ "epoch": 11.629095674967235,
+ "grad_norm": 0.2546203136444092,
+ "learning_rate": 0.0006,
+ "loss": 4.261247634887695,
+ "step": 837
+ },
+ {
+ "epoch": 11.643075578855395,
+ "grad_norm": 0.24722838401794434,
+ "learning_rate": 0.0006,
+ "loss": 4.275888442993164,
+ "step": 838
+ },
+ {
+ "epoch": 11.657055482743557,
+ "grad_norm": 0.3022806644439697,
+ "learning_rate": 0.0006,
+ "loss": 4.2572407722473145,
+ "step": 839
+ },
+ {
+ "epoch": 11.671035386631717,
+ "grad_norm": 0.31170839071273804,
+ "learning_rate": 0.0006,
+ "loss": 4.26992654800415,
+ "step": 840
+ },
+ {
+ "epoch": 11.685015290519878,
+ "grad_norm": 0.31362825632095337,
+ "learning_rate": 0.0006,
+ "loss": 4.2354655265808105,
+ "step": 841
+ },
+ {
+ "epoch": 11.698995194408038,
+ "grad_norm": 0.28741633892059326,
+ "learning_rate": 0.0006,
+ "loss": 4.263496398925781,
+ "step": 842
+ },
+ {
+ "epoch": 11.7129750982962,
+ "grad_norm": 0.2492494285106659,
+ "learning_rate": 0.0006,
+ "loss": 4.26463508605957,
+ "step": 843
+ },
+ {
+ "epoch": 11.72695500218436,
+ "grad_norm": 0.24324660003185272,
+ "learning_rate": 0.0006,
+ "loss": 4.245428085327148,
+ "step": 844
+ },
+ {
+ "epoch": 11.740934906072521,
+ "grad_norm": 0.23591114580631256,
+ "learning_rate": 0.0006,
+ "loss": 4.249845504760742,
+ "step": 845
+ },
+ {
+ "epoch": 11.754914809960681,
+ "grad_norm": 0.2202281504869461,
+ "learning_rate": 0.0006,
+ "loss": 4.245006084442139,
+ "step": 846
+ },
+ {
+ "epoch": 11.768894713848843,
+ "grad_norm": 0.22117942571640015,
+ "learning_rate": 0.0006,
+ "loss": 4.27812385559082,
+ "step": 847
+ },
+ {
+ "epoch": 11.782874617737003,
+ "grad_norm": 0.26361414790153503,
+ "learning_rate": 0.0006,
+ "loss": 4.250475883483887,
+ "step": 848
+ },
+ {
+ "epoch": 11.796854521625164,
+ "grad_norm": 0.2820321321487427,
+ "learning_rate": 0.0006,
+ "loss": 4.265835762023926,
+ "step": 849
+ },
+ {
+ "epoch": 11.810834425513324,
+ "grad_norm": 0.2078961282968521,
+ "learning_rate": 0.0006,
+ "loss": 4.251298904418945,
+ "step": 850
+ },
+ {
+ "epoch": 11.824814329401486,
+ "grad_norm": 0.21548646688461304,
+ "learning_rate": 0.0006,
+ "loss": 4.288539886474609,
+ "step": 851
+ },
+ {
+ "epoch": 11.838794233289645,
+ "grad_norm": 0.22719401121139526,
+ "learning_rate": 0.0006,
+ "loss": 4.252035140991211,
+ "step": 852
+ },
+ {
+ "epoch": 11.852774137177807,
+ "grad_norm": 0.21628320217132568,
+ "learning_rate": 0.0006,
+ "loss": 4.268622398376465,
+ "step": 853
+ },
+ {
+ "epoch": 11.866754041065967,
+ "grad_norm": 0.20855145156383514,
+ "learning_rate": 0.0006,
+ "loss": 4.253366470336914,
+ "step": 854
+ },
+ {
+ "epoch": 11.880733944954128,
+ "grad_norm": 0.2091914266347885,
+ "learning_rate": 0.0006,
+ "loss": 4.237805366516113,
+ "step": 855
+ },
+ {
+ "epoch": 11.89471384884229,
+ "grad_norm": 0.2000127136707306,
+ "learning_rate": 0.0006,
+ "loss": 4.268559455871582,
+ "step": 856
+ },
+ {
+ "epoch": 11.90869375273045,
+ "grad_norm": 0.21080894768238068,
+ "learning_rate": 0.0006,
+ "loss": 4.208702087402344,
+ "step": 857
+ },
+ {
+ "epoch": 11.922673656618612,
+ "grad_norm": 0.22125796973705292,
+ "learning_rate": 0.0006,
+ "loss": 4.250210762023926,
+ "step": 858
+ },
+ {
+ "epoch": 11.936653560506771,
+ "grad_norm": 0.25905469059944153,
+ "learning_rate": 0.0006,
+ "loss": 4.2263593673706055,
+ "step": 859
+ },
+ {
+ "epoch": 11.950633464394933,
+ "grad_norm": 0.29970306158065796,
+ "learning_rate": 0.0006,
+ "loss": 4.250848770141602,
+ "step": 860
+ },
+ {
+ "epoch": 11.964613368283093,
+ "grad_norm": 0.28155168890953064,
+ "learning_rate": 0.0006,
+ "loss": 4.272709369659424,
+ "step": 861
+ },
+ {
+ "epoch": 11.978593272171254,
+ "grad_norm": 0.23396113514900208,
+ "learning_rate": 0.0006,
+ "loss": 4.2674970626831055,
+ "step": 862
+ },
+ {
+ "epoch": 11.992573176059414,
+ "grad_norm": 0.23619577288627625,
+ "learning_rate": 0.0006,
+ "loss": 4.240267753601074,
+ "step": 863
+ },
+ {
+ "epoch": 12.0,
+ "grad_norm": 0.2779577076435089,
+ "learning_rate": 0.0006,
+ "loss": 4.267625331878662,
+ "step": 864
+ },
+ {
+ "epoch": 12.0,
+ "eval_loss": 4.437657356262207,
+ "eval_runtime": 44.4959,
+ "eval_samples_per_second": 54.881,
+ "eval_steps_per_second": 3.439,
+ "step": 864
+ },
+ {
+ "epoch": 12.013979903888162,
+ "grad_norm": 0.2948288321495056,
+ "learning_rate": 0.0006,
+ "loss": 4.232182502746582,
+ "step": 865
+ },
+ {
+ "epoch": 12.027959807776321,
+ "grad_norm": 0.3715663254261017,
+ "learning_rate": 0.0006,
+ "loss": 4.233771324157715,
+ "step": 866
+ },
+ {
+ "epoch": 12.041939711664483,
+ "grad_norm": 0.38358673453330994,
+ "learning_rate": 0.0006,
+ "loss": 4.208967685699463,
+ "step": 867
+ },
+ {
+ "epoch": 12.055919615552643,
+ "grad_norm": 0.3314538896083832,
+ "learning_rate": 0.0006,
+ "loss": 4.230685234069824,
+ "step": 868
+ },
+ {
+ "epoch": 12.069899519440805,
+ "grad_norm": 0.34171539545059204,
+ "learning_rate": 0.0006,
+ "loss": 4.231358528137207,
+ "step": 869
+ },
+ {
+ "epoch": 12.083879423328964,
+ "grad_norm": 0.3253359794616699,
+ "learning_rate": 0.0006,
+ "loss": 4.276405334472656,
+ "step": 870
+ },
+ {
+ "epoch": 12.097859327217126,
+ "grad_norm": 0.29008302092552185,
+ "learning_rate": 0.0006,
+ "loss": 4.232935905456543,
+ "step": 871
+ },
+ {
+ "epoch": 12.111839231105286,
+ "grad_norm": 0.28490355610847473,
+ "learning_rate": 0.0006,
+ "loss": 4.238036632537842,
+ "step": 872
+ },
+ {
+ "epoch": 12.125819134993447,
+ "grad_norm": 0.28446322679519653,
+ "learning_rate": 0.0006,
+ "loss": 4.210229873657227,
+ "step": 873
+ },
+ {
+ "epoch": 12.139799038881607,
+ "grad_norm": 0.29664531350135803,
+ "learning_rate": 0.0006,
+ "loss": 4.221309185028076,
+ "step": 874
+ },
+ {
+ "epoch": 12.153778942769769,
+ "grad_norm": 0.3083505928516388,
+ "learning_rate": 0.0006,
+ "loss": 4.221837997436523,
+ "step": 875
+ },
+ {
+ "epoch": 12.167758846657929,
+ "grad_norm": 0.3282921314239502,
+ "learning_rate": 0.0006,
+ "loss": 4.236713409423828,
+ "step": 876
+ },
+ {
+ "epoch": 12.18173875054609,
+ "grad_norm": 0.3603622615337372,
+ "learning_rate": 0.0006,
+ "loss": 4.245080947875977,
+ "step": 877
+ },
+ {
+ "epoch": 12.19571865443425,
+ "grad_norm": 0.38070905208587646,
+ "learning_rate": 0.0006,
+ "loss": 4.240756988525391,
+ "step": 878
+ },
+ {
+ "epoch": 12.209698558322412,
+ "grad_norm": 0.34479081630706787,
+ "learning_rate": 0.0006,
+ "loss": 4.200998306274414,
+ "step": 879
+ },
+ {
+ "epoch": 12.223678462210572,
+ "grad_norm": 0.3006879389286041,
+ "learning_rate": 0.0006,
+ "loss": 4.23531436920166,
+ "step": 880
+ },
+ {
+ "epoch": 12.237658366098733,
+ "grad_norm": 0.36835649609565735,
+ "learning_rate": 0.0006,
+ "loss": 4.229718208312988,
+ "step": 881
+ },
+ {
+ "epoch": 12.251638269986893,
+ "grad_norm": 0.4386984407901764,
+ "learning_rate": 0.0006,
+ "loss": 4.241188049316406,
+ "step": 882
+ },
+ {
+ "epoch": 12.265618173875055,
+ "grad_norm": 0.4442787170410156,
+ "learning_rate": 0.0006,
+ "loss": 4.239102840423584,
+ "step": 883
+ },
+ {
+ "epoch": 12.279598077763215,
+ "grad_norm": 0.324411541223526,
+ "learning_rate": 0.0006,
+ "loss": 4.198982238769531,
+ "step": 884
+ },
+ {
+ "epoch": 12.293577981651376,
+ "grad_norm": 0.2824151813983917,
+ "learning_rate": 0.0006,
+ "loss": 4.248816967010498,
+ "step": 885
+ },
+ {
+ "epoch": 12.307557885539538,
+ "grad_norm": 0.31407129764556885,
+ "learning_rate": 0.0006,
+ "loss": 4.2371320724487305,
+ "step": 886
+ },
+ {
+ "epoch": 12.321537789427698,
+ "grad_norm": 0.32920050621032715,
+ "learning_rate": 0.0006,
+ "loss": 4.210432052612305,
+ "step": 887
+ },
+ {
+ "epoch": 12.33551769331586,
+ "grad_norm": 0.315231055021286,
+ "learning_rate": 0.0006,
+ "loss": 4.219416618347168,
+ "step": 888
+ },
+ {
+ "epoch": 12.349497597204019,
+ "grad_norm": 0.30932050943374634,
+ "learning_rate": 0.0006,
+ "loss": 4.225022315979004,
+ "step": 889
+ },
+ {
+ "epoch": 12.36347750109218,
+ "grad_norm": 0.30242064595222473,
+ "learning_rate": 0.0006,
+ "loss": 4.2738518714904785,
+ "step": 890
+ },
+ {
+ "epoch": 12.37745740498034,
+ "grad_norm": 0.2926250994205475,
+ "learning_rate": 0.0006,
+ "loss": 4.231094837188721,
+ "step": 891
+ },
+ {
+ "epoch": 12.391437308868502,
+ "grad_norm": 0.2541215717792511,
+ "learning_rate": 0.0006,
+ "loss": 4.211821556091309,
+ "step": 892
+ },
+ {
+ "epoch": 12.405417212756662,
+ "grad_norm": 0.23693418502807617,
+ "learning_rate": 0.0006,
+ "loss": 4.208099365234375,
+ "step": 893
+ },
+ {
+ "epoch": 12.419397116644824,
+ "grad_norm": 0.22063226997852325,
+ "learning_rate": 0.0006,
+ "loss": 4.211234092712402,
+ "step": 894
+ },
+ {
+ "epoch": 12.433377020532983,
+ "grad_norm": 0.21536271274089813,
+ "learning_rate": 0.0006,
+ "loss": 4.199228286743164,
+ "step": 895
+ },
+ {
+ "epoch": 12.447356924421145,
+ "grad_norm": 0.243179589509964,
+ "learning_rate": 0.0006,
+ "loss": 4.204344749450684,
+ "step": 896
+ },
+ {
+ "epoch": 12.461336828309305,
+ "grad_norm": 0.2299746423959732,
+ "learning_rate": 0.0006,
+ "loss": 4.1565752029418945,
+ "step": 897
+ },
+ {
+ "epoch": 12.475316732197467,
+ "grad_norm": 0.2286847084760666,
+ "learning_rate": 0.0006,
+ "loss": 4.242953777313232,
+ "step": 898
+ },
+ {
+ "epoch": 12.489296636085626,
+ "grad_norm": 0.19463586807250977,
+ "learning_rate": 0.0006,
+ "loss": 4.214809417724609,
+ "step": 899
+ },
+ {
+ "epoch": 12.503276539973788,
+ "grad_norm": 0.1978398710489273,
+ "learning_rate": 0.0006,
+ "loss": 4.159815311431885,
+ "step": 900
+ },
+ {
+ "epoch": 12.517256443861948,
+ "grad_norm": 0.23177850246429443,
+ "learning_rate": 0.0006,
+ "loss": 4.2069902420043945,
+ "step": 901
+ },
+ {
+ "epoch": 12.53123634775011,
+ "grad_norm": 0.2408912032842636,
+ "learning_rate": 0.0006,
+ "loss": 4.206778526306152,
+ "step": 902
+ },
+ {
+ "epoch": 12.54521625163827,
+ "grad_norm": 0.21839919686317444,
+ "learning_rate": 0.0006,
+ "loss": 4.197076320648193,
+ "step": 903
+ },
+ {
+ "epoch": 12.55919615552643,
+ "grad_norm": 0.2053343504667282,
+ "learning_rate": 0.0006,
+ "loss": 4.21247673034668,
+ "step": 904
+ },
+ {
+ "epoch": 12.57317605941459,
+ "grad_norm": 0.19943439960479736,
+ "learning_rate": 0.0006,
+ "loss": 4.176966667175293,
+ "step": 905
+ },
+ {
+ "epoch": 12.587155963302752,
+ "grad_norm": 0.2012074887752533,
+ "learning_rate": 0.0006,
+ "loss": 4.210303783416748,
+ "step": 906
+ },
+ {
+ "epoch": 12.601135867190912,
+ "grad_norm": 0.22240376472473145,
+ "learning_rate": 0.0006,
+ "loss": 4.200625896453857,
+ "step": 907
+ },
+ {
+ "epoch": 12.615115771079074,
+ "grad_norm": 0.21729710698127747,
+ "learning_rate": 0.0006,
+ "loss": 4.2001953125,
+ "step": 908
+ },
+ {
+ "epoch": 12.629095674967235,
+ "grad_norm": 0.22470413148403168,
+ "learning_rate": 0.0006,
+ "loss": 4.197505950927734,
+ "step": 909
+ },
+ {
+ "epoch": 12.643075578855395,
+ "grad_norm": 0.23776157200336456,
+ "learning_rate": 0.0006,
+ "loss": 4.235603332519531,
+ "step": 910
+ },
+ {
+ "epoch": 12.657055482743557,
+ "grad_norm": 0.20616604387760162,
+ "learning_rate": 0.0006,
+ "loss": 4.193584442138672,
+ "step": 911
+ },
+ {
+ "epoch": 12.671035386631717,
+ "grad_norm": 0.1913922131061554,
+ "learning_rate": 0.0006,
+ "loss": 4.209191799163818,
+ "step": 912
+ },
+ {
+ "epoch": 12.685015290519878,
+ "grad_norm": 0.19427193701267242,
+ "learning_rate": 0.0006,
+ "loss": 4.219709396362305,
+ "step": 913
+ },
+ {
+ "epoch": 12.698995194408038,
+ "grad_norm": 0.20976558327674866,
+ "learning_rate": 0.0006,
+ "loss": 4.210859298706055,
+ "step": 914
+ },
+ {
+ "epoch": 12.7129750982962,
+ "grad_norm": 0.21571609377861023,
+ "learning_rate": 0.0006,
+ "loss": 4.189394950866699,
+ "step": 915
+ },
+ {
+ "epoch": 12.72695500218436,
+ "grad_norm": 0.2152620255947113,
+ "learning_rate": 0.0006,
+ "loss": 4.223589897155762,
+ "step": 916
+ },
+ {
+ "epoch": 12.740934906072521,
+ "grad_norm": 0.21867749094963074,
+ "learning_rate": 0.0006,
+ "loss": 4.198590278625488,
+ "step": 917
+ },
+ {
+ "epoch": 12.754914809960681,
+ "grad_norm": 0.22300855815410614,
+ "learning_rate": 0.0006,
+ "loss": 4.188891410827637,
+ "step": 918
+ },
+ {
+ "epoch": 12.768894713848843,
+ "grad_norm": 0.22197802364826202,
+ "learning_rate": 0.0006,
+ "loss": 4.190221309661865,
+ "step": 919
+ },
+ {
+ "epoch": 12.782874617737003,
+ "grad_norm": 0.20003341138362885,
+ "learning_rate": 0.0006,
+ "loss": 4.215453147888184,
+ "step": 920
+ },
+ {
+ "epoch": 12.796854521625164,
+ "grad_norm": 0.19887958467006683,
+ "learning_rate": 0.0006,
+ "loss": 4.18174934387207,
+ "step": 921
+ },
+ {
+ "epoch": 12.810834425513324,
+ "grad_norm": 0.20945803821086884,
+ "learning_rate": 0.0006,
+ "loss": 4.234947204589844,
+ "step": 922
+ },
+ {
+ "epoch": 12.824814329401486,
+ "grad_norm": 0.2253490388393402,
+ "learning_rate": 0.0006,
+ "loss": 4.2177228927612305,
+ "step": 923
+ },
+ {
+ "epoch": 12.838794233289645,
+ "grad_norm": 0.247610405087471,
+ "learning_rate": 0.0006,
+ "loss": 4.2013139724731445,
+ "step": 924
+ },
+ {
+ "epoch": 12.852774137177807,
+ "grad_norm": 0.2792088985443115,
+ "learning_rate": 0.0006,
+ "loss": 4.204774379730225,
+ "step": 925
+ },
+ {
+ "epoch": 12.866754041065967,
+ "grad_norm": 0.2839066982269287,
+ "learning_rate": 0.0006,
+ "loss": 4.186254978179932,
+ "step": 926
+ },
+ {
+ "epoch": 12.880733944954128,
+ "grad_norm": 0.2793181836605072,
+ "learning_rate": 0.0006,
+ "loss": 4.172411918640137,
+ "step": 927
+ },
+ {
+ "epoch": 12.89471384884229,
+ "grad_norm": 0.29506033658981323,
+ "learning_rate": 0.0006,
+ "loss": 4.202878475189209,
+ "step": 928
+ },
+ {
+ "epoch": 12.90869375273045,
+ "grad_norm": 0.2799845039844513,
+ "learning_rate": 0.0006,
+ "loss": 4.1563310623168945,
+ "step": 929
+ },
+ {
+ "epoch": 12.922673656618612,
+ "grad_norm": 0.23972125351428986,
+ "learning_rate": 0.0006,
+ "loss": 4.224601745605469,
+ "step": 930
+ },
+ {
+ "epoch": 12.936653560506771,
+ "grad_norm": 0.21558353304862976,
+ "learning_rate": 0.0006,
+ "loss": 4.167957305908203,
+ "step": 931
+ },
+ {
+ "epoch": 12.950633464394933,
+ "grad_norm": 0.21800188720226288,
+ "learning_rate": 0.0006,
+ "loss": 4.1746039390563965,
+ "step": 932
+ },
+ {
+ "epoch": 12.964613368283093,
+ "grad_norm": 0.2086547315120697,
+ "learning_rate": 0.0006,
+ "loss": 4.188137054443359,
+ "step": 933
+ },
+ {
+ "epoch": 12.978593272171254,
+ "grad_norm": 0.2174186110496521,
+ "learning_rate": 0.0006,
+ "loss": 4.184014320373535,
+ "step": 934
+ },
+ {
+ "epoch": 12.992573176059414,
+ "grad_norm": 0.22755110263824463,
+ "learning_rate": 0.0006,
+ "loss": 4.180912017822266,
+ "step": 935
+ },
+ {
+ "epoch": 13.0,
+ "grad_norm": 0.2735324203968048,
+ "learning_rate": 0.0006,
+ "loss": 4.201578617095947,
+ "step": 936
+ },
+ {
+ "epoch": 13.0,
+ "eval_loss": 4.396903038024902,
+ "eval_runtime": 44.5664,
+ "eval_samples_per_second": 54.795,
+ "eval_steps_per_second": 3.433,
+ "step": 936
+ },
+ {
+ "epoch": 13.013979903888162,
+ "grad_norm": 0.27577832341194153,
+ "learning_rate": 0.0006,
+ "loss": 4.149985313415527,
+ "step": 937
+ },
+ {
+ "epoch": 13.027959807776321,
+ "grad_norm": 0.25817009806632996,
+ "learning_rate": 0.0006,
+ "loss": 4.1526103019714355,
+ "step": 938
+ },
+ {
+ "epoch": 13.041939711664483,
+ "grad_norm": 0.24564379453659058,
+ "learning_rate": 0.0006,
+ "loss": 4.1661152839660645,
+ "step": 939
+ },
+ {
+ "epoch": 13.055919615552643,
+ "grad_norm": 0.2465466856956482,
+ "learning_rate": 0.0006,
+ "loss": 4.152953624725342,
+ "step": 940
+ },
+ {
+ "epoch": 13.069899519440805,
+ "grad_norm": 0.22702018916606903,
+ "learning_rate": 0.0006,
+ "loss": 4.145125389099121,
+ "step": 941
+ },
+ {
+ "epoch": 13.083879423328964,
+ "grad_norm": 0.24350613355636597,
+ "learning_rate": 0.0006,
+ "loss": 4.163095474243164,
+ "step": 942
+ },
+ {
+ "epoch": 13.097859327217126,
+ "grad_norm": 0.2504431903362274,
+ "learning_rate": 0.0006,
+ "loss": 4.136016845703125,
+ "step": 943
+ },
+ {
+ "epoch": 13.111839231105286,
+ "grad_norm": 0.24968865513801575,
+ "learning_rate": 0.0006,
+ "loss": 4.163487911224365,
+ "step": 944
+ },
+ {
+ "epoch": 13.125819134993447,
+ "grad_norm": 0.27164196968078613,
+ "learning_rate": 0.0006,
+ "loss": 4.1194353103637695,
+ "step": 945
+ },
+ {
+ "epoch": 13.139799038881607,
+ "grad_norm": 0.28127020597457886,
+ "learning_rate": 0.0006,
+ "loss": 4.184807300567627,
+ "step": 946
+ },
+ {
+ "epoch": 13.153778942769769,
+ "grad_norm": 0.24574966728687286,
+ "learning_rate": 0.0006,
+ "loss": 4.154998779296875,
+ "step": 947
+ },
+ {
+ "epoch": 13.167758846657929,
+ "grad_norm": 0.22310060262680054,
+ "learning_rate": 0.0006,
+ "loss": 4.182928085327148,
+ "step": 948
+ },
+ {
+ "epoch": 13.18173875054609,
+ "grad_norm": 0.2539508640766144,
+ "learning_rate": 0.0006,
+ "loss": 4.176900386810303,
+ "step": 949
+ },
+ {
+ "epoch": 13.19571865443425,
+ "grad_norm": 0.30925488471984863,
+ "learning_rate": 0.0006,
+ "loss": 4.1760711669921875,
+ "step": 950
+ },
+ {
+ "epoch": 13.209698558322412,
+ "grad_norm": 0.3842967450618744,
+ "learning_rate": 0.0006,
+ "loss": 4.1830949783325195,
+ "step": 951
+ },
+ {
+ "epoch": 13.223678462210572,
+ "grad_norm": 0.35950011014938354,
+ "learning_rate": 0.0006,
+ "loss": 4.131983757019043,
+ "step": 952
+ },
+ {
+ "epoch": 13.237658366098733,
+ "grad_norm": 0.29913705587387085,
+ "learning_rate": 0.0006,
+ "loss": 4.166984558105469,
+ "step": 953
+ },
+ {
+ "epoch": 13.251638269986893,
+ "grad_norm": 0.32008400559425354,
+ "learning_rate": 0.0006,
+ "loss": 4.156482696533203,
+ "step": 954
+ },
+ {
+ "epoch": 13.265618173875055,
+ "grad_norm": 0.3186642825603485,
+ "learning_rate": 0.0006,
+ "loss": 4.1661057472229,
+ "step": 955
+ },
+ {
+ "epoch": 13.279598077763215,
+ "grad_norm": 0.3194582462310791,
+ "learning_rate": 0.0006,
+ "loss": 4.169328689575195,
+ "step": 956
+ },
+ {
+ "epoch": 13.293577981651376,
+ "grad_norm": 0.3133867084980011,
+ "learning_rate": 0.0006,
+ "loss": 4.165459632873535,
+ "step": 957
+ },
+ {
+ "epoch": 13.307557885539538,
+ "grad_norm": 0.3232237696647644,
+ "learning_rate": 0.0006,
+ "loss": 4.2107439041137695,
+ "step": 958
+ },
+ {
+ "epoch": 13.321537789427698,
+ "grad_norm": 0.3133196234703064,
+ "learning_rate": 0.0006,
+ "loss": 4.184182167053223,
+ "step": 959
+ },
+ {
+ "epoch": 13.33551769331586,
+ "grad_norm": 0.296129435300827,
+ "learning_rate": 0.0006,
+ "loss": 4.168312072753906,
+ "step": 960
+ },
+ {
+ "epoch": 13.349497597204019,
+ "grad_norm": 0.2685348391532898,
+ "learning_rate": 0.0006,
+ "loss": 4.159984588623047,
+ "step": 961
+ },
+ {
+ "epoch": 13.36347750109218,
+ "grad_norm": 0.2644975781440735,
+ "learning_rate": 0.0006,
+ "loss": 4.164909362792969,
+ "step": 962
+ },
+ {
+ "epoch": 13.37745740498034,
+ "grad_norm": 0.2712913155555725,
+ "learning_rate": 0.0006,
+ "loss": 4.158056259155273,
+ "step": 963
+ },
+ {
+ "epoch": 13.391437308868502,
+ "grad_norm": 0.2687259316444397,
+ "learning_rate": 0.0006,
+ "loss": 4.182924270629883,
+ "step": 964
+ },
+ {
+ "epoch": 13.405417212756662,
+ "grad_norm": 0.25640392303466797,
+ "learning_rate": 0.0006,
+ "loss": 4.153351783752441,
+ "step": 965
+ },
+ {
+ "epoch": 13.419397116644824,
+ "grad_norm": 0.2646305561065674,
+ "learning_rate": 0.0006,
+ "loss": 4.18464469909668,
+ "step": 966
+ },
+ {
+ "epoch": 13.433377020532983,
+ "grad_norm": 0.24206851422786713,
+ "learning_rate": 0.0006,
+ "loss": 4.127564430236816,
+ "step": 967
+ },
+ {
+ "epoch": 13.447356924421145,
+ "grad_norm": 0.23800471425056458,
+ "learning_rate": 0.0006,
+ "loss": 4.163488388061523,
+ "step": 968
+ },
+ {
+ "epoch": 13.461336828309305,
+ "grad_norm": 0.22957314550876617,
+ "learning_rate": 0.0006,
+ "loss": 4.178133964538574,
+ "step": 969
+ },
+ {
+ "epoch": 13.475316732197467,
+ "grad_norm": 0.22867488861083984,
+ "learning_rate": 0.0006,
+ "loss": 4.159056186676025,
+ "step": 970
+ },
+ {
+ "epoch": 13.489296636085626,
+ "grad_norm": 0.21737419068813324,
+ "learning_rate": 0.0006,
+ "loss": 4.138628005981445,
+ "step": 971
+ },
+ {
+ "epoch": 13.503276539973788,
+ "grad_norm": 0.2319175899028778,
+ "learning_rate": 0.0006,
+ "loss": 4.14644718170166,
+ "step": 972
+ },
+ {
+ "epoch": 13.517256443861948,
+ "grad_norm": 0.2572193443775177,
+ "learning_rate": 0.0006,
+ "loss": 4.175213813781738,
+ "step": 973
+ },
+ {
+ "epoch": 13.53123634775011,
+ "grad_norm": 0.23483099043369293,
+ "learning_rate": 0.0006,
+ "loss": 4.133171558380127,
+ "step": 974
+ },
+ {
+ "epoch": 13.54521625163827,
+ "grad_norm": 0.2071552872657776,
+ "learning_rate": 0.0006,
+ "loss": 4.13730525970459,
+ "step": 975
+ },
+ {
+ "epoch": 13.55919615552643,
+ "grad_norm": 0.23074553906917572,
+ "learning_rate": 0.0006,
+ "loss": 4.175051689147949,
+ "step": 976
+ },
+ {
+ "epoch": 13.57317605941459,
+ "grad_norm": 0.2480078786611557,
+ "learning_rate": 0.0006,
+ "loss": 4.167630672454834,
+ "step": 977
+ },
+ {
+ "epoch": 13.587155963302752,
+ "grad_norm": 0.23444348573684692,
+ "learning_rate": 0.0006,
+ "loss": 4.141780853271484,
+ "step": 978
+ },
+ {
+ "epoch": 13.601135867190912,
+ "grad_norm": 0.2227829396724701,
+ "learning_rate": 0.0006,
+ "loss": 4.157566547393799,
+ "step": 979
+ },
+ {
+ "epoch": 13.615115771079074,
+ "grad_norm": 0.21478354930877686,
+ "learning_rate": 0.0006,
+ "loss": 4.131053447723389,
+ "step": 980
+ },
+ {
+ "epoch": 13.629095674967235,
+ "grad_norm": 0.1978664994239807,
+ "learning_rate": 0.0006,
+ "loss": 4.123660564422607,
+ "step": 981
+ },
+ {
+ "epoch": 13.643075578855395,
+ "grad_norm": 0.19980201125144958,
+ "learning_rate": 0.0006,
+ "loss": 4.174160480499268,
+ "step": 982
+ },
+ {
+ "epoch": 13.657055482743557,
+ "grad_norm": 0.19815555214881897,
+ "learning_rate": 0.0006,
+ "loss": 4.181703090667725,
+ "step": 983
+ },
+ {
+ "epoch": 13.671035386631717,
+ "grad_norm": 0.19524012506008148,
+ "learning_rate": 0.0006,
+ "loss": 4.163766860961914,
+ "step": 984
+ },
+ {
+ "epoch": 13.685015290519878,
+ "grad_norm": 0.2286096215248108,
+ "learning_rate": 0.0006,
+ "loss": 4.172213554382324,
+ "step": 985
+ },
+ {
+ "epoch": 13.698995194408038,
+ "grad_norm": 0.2210782766342163,
+ "learning_rate": 0.0006,
+ "loss": 4.187033653259277,
+ "step": 986
+ },
+ {
+ "epoch": 13.7129750982962,
+ "grad_norm": 0.21874216198921204,
+ "learning_rate": 0.0006,
+ "loss": 4.125125885009766,
+ "step": 987
+ },
+ {
+ "epoch": 13.72695500218436,
+ "grad_norm": 0.22848057746887207,
+ "learning_rate": 0.0006,
+ "loss": 4.153496742248535,
+ "step": 988
+ },
+ {
+ "epoch": 13.740934906072521,
+ "grad_norm": 0.2250450700521469,
+ "learning_rate": 0.0006,
+ "loss": 4.149165630340576,
+ "step": 989
+ },
+ {
+ "epoch": 13.754914809960681,
+ "grad_norm": 0.21443772315979004,
+ "learning_rate": 0.0006,
+ "loss": 4.1528825759887695,
+ "step": 990
+ },
+ {
+ "epoch": 13.768894713848843,
+ "grad_norm": 0.21927927434444427,
+ "learning_rate": 0.0006,
+ "loss": 4.146831512451172,
+ "step": 991
+ },
+ {
+ "epoch": 13.782874617737003,
+ "grad_norm": 0.2413124144077301,
+ "learning_rate": 0.0006,
+ "loss": 4.136909008026123,
+ "step": 992
+ },
+ {
+ "epoch": 13.796854521625164,
+ "grad_norm": 0.2603479325771332,
+ "learning_rate": 0.0006,
+ "loss": 4.12525749206543,
+ "step": 993
+ },
+ {
+ "epoch": 13.810834425513324,
+ "grad_norm": 0.26246970891952515,
+ "learning_rate": 0.0006,
+ "loss": 4.114049434661865,
+ "step": 994
+ },
+ {
+ "epoch": 13.824814329401486,
+ "grad_norm": 0.27031877636909485,
+ "learning_rate": 0.0006,
+ "loss": 4.1646552085876465,
+ "step": 995
+ },
+ {
+ "epoch": 13.838794233289645,
+ "grad_norm": 0.2499857395887375,
+ "learning_rate": 0.0006,
+ "loss": 4.139284133911133,
+ "step": 996
+ },
+ {
+ "epoch": 13.852774137177807,
+ "grad_norm": 0.22026537358760834,
+ "learning_rate": 0.0006,
+ "loss": 4.142191410064697,
+ "step": 997
+ },
+ {
+ "epoch": 13.866754041065967,
+ "grad_norm": 0.23738551139831543,
+ "learning_rate": 0.0006,
+ "loss": 4.1422882080078125,
+ "step": 998
+ },
+ {
+ "epoch": 13.880733944954128,
+ "grad_norm": 0.2416357398033142,
+ "learning_rate": 0.0006,
+ "loss": 4.14063835144043,
+ "step": 999
+ },
+ {
+ "epoch": 13.89471384884229,
+ "grad_norm": 0.33822184801101685,
+ "learning_rate": 0.0006,
+ "loss": 4.12839412689209,
+ "step": 1000
+ },
+ {
+ "epoch": 13.90869375273045,
+ "grad_norm": 0.3409678339958191,
+ "learning_rate": 0.0006,
+ "loss": 4.145351886749268,
+ "step": 1001
+ },
+ {
+ "epoch": 13.922673656618612,
+ "grad_norm": 0.2467597872018814,
+ "learning_rate": 0.0006,
+ "loss": 4.155339241027832,
+ "step": 1002
+ },
+ {
+ "epoch": 13.936653560506771,
+ "grad_norm": 0.2314649075269699,
+ "learning_rate": 0.0006,
+ "loss": 4.130176067352295,
+ "step": 1003
+ },
+ {
+ "epoch": 13.950633464394933,
+ "grad_norm": 0.23701290786266327,
+ "learning_rate": 0.0006,
+ "loss": 4.19205379486084,
+ "step": 1004
+ },
+ {
+ "epoch": 13.964613368283093,
+ "grad_norm": 0.2466491460800171,
+ "learning_rate": 0.0006,
+ "loss": 4.118908882141113,
+ "step": 1005
+ },
+ {
+ "epoch": 13.978593272171254,
+ "grad_norm": 0.23746836185455322,
+ "learning_rate": 0.0006,
+ "loss": 4.16111946105957,
+ "step": 1006
+ },
+ {
+ "epoch": 13.992573176059414,
+ "grad_norm": 0.24497751891613007,
+ "learning_rate": 0.0006,
+ "loss": 4.148624420166016,
+ "step": 1007
+ },
+ {
+ "epoch": 14.0,
+ "grad_norm": 0.25735899806022644,
+ "learning_rate": 0.0006,
+ "loss": 4.12002420425415,
+ "step": 1008
+ },
+ {
+ "epoch": 14.0,
+ "eval_loss": 4.335351467132568,
+ "eval_runtime": 44.0523,
+ "eval_samples_per_second": 55.434,
+ "eval_steps_per_second": 3.473,
+ "step": 1008
+ },
+ {
+ "epoch": 14.013979903888162,
+ "grad_norm": 0.24570082128047943,
+ "learning_rate": 0.0006,
+ "loss": 4.1036176681518555,
+ "step": 1009
+ },
+ {
+ "epoch": 14.027959807776321,
+ "grad_norm": 0.2525855302810669,
+ "learning_rate": 0.0006,
+ "loss": 4.142077445983887,
+ "step": 1010
+ },
+ {
+ "epoch": 14.041939711664483,
+ "grad_norm": 0.2701111435890198,
+ "learning_rate": 0.0006,
+ "loss": 4.096988677978516,
+ "step": 1011
+ },
+ {
+ "epoch": 14.055919615552643,
+ "grad_norm": 0.28173309564590454,
+ "learning_rate": 0.0006,
+ "loss": 4.148448944091797,
+ "step": 1012
+ },
+ {
+ "epoch": 14.069899519440805,
+ "grad_norm": 0.2651294469833374,
+ "learning_rate": 0.0006,
+ "loss": 4.121731281280518,
+ "step": 1013
+ },
+ {
+ "epoch": 14.083879423328964,
+ "grad_norm": 0.21160121262073517,
+ "learning_rate": 0.0006,
+ "loss": 4.108980178833008,
+ "step": 1014
+ },
+ {
+ "epoch": 14.097859327217126,
+ "grad_norm": 0.24786953628063202,
+ "learning_rate": 0.0006,
+ "loss": 4.133942604064941,
+ "step": 1015
+ },
+ {
+ "epoch": 14.111839231105286,
+ "grad_norm": 0.2722747027873993,
+ "learning_rate": 0.0006,
+ "loss": 4.115242958068848,
+ "step": 1016
+ },
+ {
+ "epoch": 14.125819134993447,
+ "grad_norm": 0.273360013961792,
+ "learning_rate": 0.0006,
+ "loss": 4.059296607971191,
+ "step": 1017
+ },
+ {
+ "epoch": 14.139799038881607,
+ "grad_norm": 0.2541784942150116,
+ "learning_rate": 0.0006,
+ "loss": 4.118365287780762,
+ "step": 1018
+ },
+ {
+ "epoch": 14.153778942769769,
+ "grad_norm": 0.23806381225585938,
+ "learning_rate": 0.0006,
+ "loss": 4.102812767028809,
+ "step": 1019
+ },
+ {
+ "epoch": 14.167758846657929,
+ "grad_norm": 0.2541005313396454,
+ "learning_rate": 0.0006,
+ "loss": 4.093264579772949,
+ "step": 1020
+ },
+ {
+ "epoch": 14.18173875054609,
+ "grad_norm": 0.2619539499282837,
+ "learning_rate": 0.0006,
+ "loss": 4.114917278289795,
+ "step": 1021
+ },
+ {
+ "epoch": 14.19571865443425,
+ "grad_norm": 0.2466963529586792,
+ "learning_rate": 0.0006,
+ "loss": 4.098258972167969,
+ "step": 1022
+ },
+ {
+ "epoch": 14.209698558322412,
+ "grad_norm": 0.24341611564159393,
+ "learning_rate": 0.0006,
+ "loss": 4.109346389770508,
+ "step": 1023
+ },
+ {
+ "epoch": 14.223678462210572,
+ "grad_norm": 0.23977765440940857,
+ "learning_rate": 0.0006,
+ "loss": 4.106716156005859,
+ "step": 1024
+ },
+ {
+ "epoch": 14.237658366098733,
+ "grad_norm": 0.253528356552124,
+ "learning_rate": 0.0006,
+ "loss": 4.102226257324219,
+ "step": 1025
+ },
+ {
+ "epoch": 14.251638269986893,
+ "grad_norm": 0.26954543590545654,
+ "learning_rate": 0.0006,
+ "loss": 4.107413291931152,
+ "step": 1026
+ },
+ {
+ "epoch": 14.265618173875055,
+ "grad_norm": 0.2610514760017395,
+ "learning_rate": 0.0006,
+ "loss": 4.110824108123779,
+ "step": 1027
+ },
+ {
+ "epoch": 14.279598077763215,
+ "grad_norm": 0.2579168677330017,
+ "learning_rate": 0.0006,
+ "loss": 4.082438945770264,
+ "step": 1028
+ },
+ {
+ "epoch": 14.293577981651376,
+ "grad_norm": 0.26916536688804626,
+ "learning_rate": 0.0006,
+ "loss": 4.075734615325928,
+ "step": 1029
+ },
+ {
+ "epoch": 14.307557885539538,
+ "grad_norm": 0.2998618185520172,
+ "learning_rate": 0.0006,
+ "loss": 4.088419437408447,
+ "step": 1030
+ },
+ {
+ "epoch": 14.321537789427698,
+ "grad_norm": 0.3162737190723419,
+ "learning_rate": 0.0006,
+ "loss": 4.125833034515381,
+ "step": 1031
+ },
+ {
+ "epoch": 14.33551769331586,
+ "grad_norm": 0.318601131439209,
+ "learning_rate": 0.0006,
+ "loss": 4.077424049377441,
+ "step": 1032
+ },
+ {
+ "epoch": 14.349497597204019,
+ "grad_norm": 0.32113415002822876,
+ "learning_rate": 0.0006,
+ "loss": 4.113360404968262,
+ "step": 1033
+ },
+ {
+ "epoch": 14.36347750109218,
+ "grad_norm": 0.3150886297225952,
+ "learning_rate": 0.0006,
+ "loss": 4.100013732910156,
+ "step": 1034
+ },
+ {
+ "epoch": 14.37745740498034,
+ "grad_norm": 0.29279956221580505,
+ "learning_rate": 0.0006,
+ "loss": 4.136394500732422,
+ "step": 1035
+ },
+ {
+ "epoch": 14.391437308868502,
+ "grad_norm": 0.28532543778419495,
+ "learning_rate": 0.0006,
+ "loss": 4.138948440551758,
+ "step": 1036
+ },
+ {
+ "epoch": 14.405417212756662,
+ "grad_norm": 0.2825978398323059,
+ "learning_rate": 0.0006,
+ "loss": 4.112217903137207,
+ "step": 1037
+ },
+ {
+ "epoch": 14.419397116644824,
+ "grad_norm": 0.2891198694705963,
+ "learning_rate": 0.0006,
+ "loss": 4.102682113647461,
+ "step": 1038
+ },
+ {
+ "epoch": 14.433377020532983,
+ "grad_norm": 0.2917391061782837,
+ "learning_rate": 0.0006,
+ "loss": 4.120752811431885,
+ "step": 1039
+ },
+ {
+ "epoch": 14.447356924421145,
+ "grad_norm": 0.2589806914329529,
+ "learning_rate": 0.0006,
+ "loss": 4.130519390106201,
+ "step": 1040
+ },
+ {
+ "epoch": 14.461336828309305,
+ "grad_norm": 0.2674788534641266,
+ "learning_rate": 0.0006,
+ "loss": 4.130382537841797,
+ "step": 1041
+ },
+ {
+ "epoch": 14.475316732197467,
+ "grad_norm": 0.2820362150669098,
+ "learning_rate": 0.0006,
+ "loss": 4.13947868347168,
+ "step": 1042
+ },
+ {
+ "epoch": 14.489296636085626,
+ "grad_norm": 0.2650109529495239,
+ "learning_rate": 0.0006,
+ "loss": 4.130346775054932,
+ "step": 1043
+ },
+ {
+ "epoch": 14.503276539973788,
+ "grad_norm": 0.29137638211250305,
+ "learning_rate": 0.0006,
+ "loss": 4.055751800537109,
+ "step": 1044
+ },
+ {
+ "epoch": 14.517256443861948,
+ "grad_norm": 0.3232433497905731,
+ "learning_rate": 0.0006,
+ "loss": 4.114810943603516,
+ "step": 1045
+ },
+ {
+ "epoch": 14.53123634775011,
+ "grad_norm": 0.2724473476409912,
+ "learning_rate": 0.0006,
+ "loss": 4.088351249694824,
+ "step": 1046
+ },
+ {
+ "epoch": 14.54521625163827,
+ "grad_norm": 0.23994430899620056,
+ "learning_rate": 0.0006,
+ "loss": 4.110936164855957,
+ "step": 1047
+ },
+ {
+ "epoch": 14.55919615552643,
+ "grad_norm": 0.2422720044851303,
+ "learning_rate": 0.0006,
+ "loss": 4.132844924926758,
+ "step": 1048
+ },
+ {
+ "epoch": 14.57317605941459,
+ "grad_norm": 0.21148815751075745,
+ "learning_rate": 0.0006,
+ "loss": 4.102499961853027,
+ "step": 1049
+ },
+ {
+ "epoch": 14.587155963302752,
+ "grad_norm": 0.22221639752388,
+ "learning_rate": 0.0006,
+ "loss": 4.126241683959961,
+ "step": 1050
+ },
+ {
+ "epoch": 14.601135867190912,
+ "grad_norm": 0.2538735866546631,
+ "learning_rate": 0.0006,
+ "loss": 4.116817951202393,
+ "step": 1051
+ },
+ {
+ "epoch": 14.615115771079074,
+ "grad_norm": 0.2555900514125824,
+ "learning_rate": 0.0006,
+ "loss": 4.106309413909912,
+ "step": 1052
+ },
+ {
+ "epoch": 14.629095674967235,
+ "grad_norm": 0.24753783643245697,
+ "learning_rate": 0.0006,
+ "loss": 4.1015119552612305,
+ "step": 1053
+ },
+ {
+ "epoch": 14.643075578855395,
+ "grad_norm": 0.238885298371315,
+ "learning_rate": 0.0006,
+ "loss": 4.120419502258301,
+ "step": 1054
+ },
+ {
+ "epoch": 14.657055482743557,
+ "grad_norm": 0.22693610191345215,
+ "learning_rate": 0.0006,
+ "loss": 4.084968566894531,
+ "step": 1055
+ },
+ {
+ "epoch": 14.671035386631717,
+ "grad_norm": 0.2100025862455368,
+ "learning_rate": 0.0006,
+ "loss": 4.108001708984375,
+ "step": 1056
+ },
+ {
+ "epoch": 14.685015290519878,
+ "grad_norm": 0.20437054336071014,
+ "learning_rate": 0.0006,
+ "loss": 4.151417255401611,
+ "step": 1057
+ },
+ {
+ "epoch": 14.698995194408038,
+ "grad_norm": 0.1926720291376114,
+ "learning_rate": 0.0006,
+ "loss": 4.091334342956543,
+ "step": 1058
+ },
+ {
+ "epoch": 14.7129750982962,
+ "grad_norm": 0.2120140641927719,
+ "learning_rate": 0.0006,
+ "loss": 4.111706256866455,
+ "step": 1059
+ },
+ {
+ "epoch": 14.72695500218436,
+ "grad_norm": 0.22877076268196106,
+ "learning_rate": 0.0006,
+ "loss": 4.123166084289551,
+ "step": 1060
+ },
+ {
+ "epoch": 14.740934906072521,
+ "grad_norm": 0.22149473428726196,
+ "learning_rate": 0.0006,
+ "loss": 4.099740028381348,
+ "step": 1061
+ },
+ {
+ "epoch": 14.754914809960681,
+ "grad_norm": 0.2351604402065277,
+ "learning_rate": 0.0006,
+ "loss": 4.066174507141113,
+ "step": 1062
+ },
+ {
+ "epoch": 14.768894713848843,
+ "grad_norm": 0.22895802557468414,
+ "learning_rate": 0.0006,
+ "loss": 4.101897239685059,
+ "step": 1063
+ },
+ {
+ "epoch": 14.782874617737003,
+ "grad_norm": 0.22050750255584717,
+ "learning_rate": 0.0006,
+ "loss": 4.122953414916992,
+ "step": 1064
+ },
+ {
+ "epoch": 14.796854521625164,
+ "grad_norm": 0.23255324363708496,
+ "learning_rate": 0.0006,
+ "loss": 4.11297607421875,
+ "step": 1065
+ },
+ {
+ "epoch": 14.810834425513324,
+ "grad_norm": 0.24522703886032104,
+ "learning_rate": 0.0006,
+ "loss": 4.131030082702637,
+ "step": 1066
+ },
+ {
+ "epoch": 14.824814329401486,
+ "grad_norm": 0.2492702752351761,
+ "learning_rate": 0.0006,
+ "loss": 4.076324939727783,
+ "step": 1067
+ },
+ {
+ "epoch": 14.838794233289645,
+ "grad_norm": 0.24410948157310486,
+ "learning_rate": 0.0006,
+ "loss": 4.109020709991455,
+ "step": 1068
+ },
+ {
+ "epoch": 14.852774137177807,
+ "grad_norm": 0.2463168203830719,
+ "learning_rate": 0.0006,
+ "loss": 4.135679244995117,
+ "step": 1069
+ },
+ {
+ "epoch": 14.866754041065967,
+ "grad_norm": 0.2563146650791168,
+ "learning_rate": 0.0006,
+ "loss": 4.0958027839660645,
+ "step": 1070
+ },
+ {
+ "epoch": 14.880733944954128,
+ "grad_norm": 0.261167049407959,
+ "learning_rate": 0.0006,
+ "loss": 4.114803314208984,
+ "step": 1071
+ },
+ {
+ "epoch": 14.89471384884229,
+ "grad_norm": 0.2593795955181122,
+ "learning_rate": 0.0006,
+ "loss": 4.1210618019104,
+ "step": 1072
+ },
+ {
+ "epoch": 14.90869375273045,
+ "grad_norm": 0.27184173464775085,
+ "learning_rate": 0.0006,
+ "loss": 4.095145225524902,
+ "step": 1073
+ },
+ {
+ "epoch": 14.922673656618612,
+ "grad_norm": 0.25289732217788696,
+ "learning_rate": 0.0006,
+ "loss": 4.107388973236084,
+ "step": 1074
+ },
+ {
+ "epoch": 14.936653560506771,
+ "grad_norm": 0.2176840454339981,
+ "learning_rate": 0.0006,
+ "loss": 4.105966567993164,
+ "step": 1075
+ },
+ {
+ "epoch": 14.950633464394933,
+ "grad_norm": 0.20930173993110657,
+ "learning_rate": 0.0006,
+ "loss": 4.126853942871094,
+ "step": 1076
+ },
+ {
+ "epoch": 14.964613368283093,
+ "grad_norm": 0.20850051939487457,
+ "learning_rate": 0.0006,
+ "loss": 4.074934959411621,
+ "step": 1077
+ },
+ {
+ "epoch": 14.978593272171254,
+ "grad_norm": 0.21987544000148773,
+ "learning_rate": 0.0006,
+ "loss": 4.123321533203125,
+ "step": 1078
+ },
+ {
+ "epoch": 14.992573176059414,
+ "grad_norm": 0.23821689188480377,
+ "learning_rate": 0.0006,
+ "loss": 4.082647323608398,
+ "step": 1079
+ },
+ {
+ "epoch": 15.0,
+ "grad_norm": 0.2590881288051605,
+ "learning_rate": 0.0006,
+ "loss": 4.113482475280762,
+ "step": 1080
+ },
+ {
+ "epoch": 15.0,
+ "eval_loss": 4.286936283111572,
+ "eval_runtime": 44.2665,
+ "eval_samples_per_second": 55.166,
+ "eval_steps_per_second": 3.456,
+ "step": 1080
+ },
+ {
+ "epoch": 15.013979903888162,
+ "grad_norm": 0.27885961532592773,
+ "learning_rate": 0.0006,
+ "loss": 4.0825958251953125,
+ "step": 1081
+ },
+ {
+ "epoch": 15.027959807776321,
+ "grad_norm": 0.2751246690750122,
+ "learning_rate": 0.0006,
+ "loss": 4.049782752990723,
+ "step": 1082
+ },
+ {
+ "epoch": 15.041939711664483,
+ "grad_norm": 0.25238561630249023,
+ "learning_rate": 0.0006,
+ "loss": 4.067366600036621,
+ "step": 1083
+ },
+ {
+ "epoch": 15.055919615552643,
+ "grad_norm": 0.27481040358543396,
+ "learning_rate": 0.0006,
+ "loss": 4.089946746826172,
+ "step": 1084
+ },
+ {
+ "epoch": 15.069899519440805,
+ "grad_norm": 0.2666703164577484,
+ "learning_rate": 0.0006,
+ "loss": 4.071957588195801,
+ "step": 1085
+ },
+ {
+ "epoch": 15.083879423328964,
+ "grad_norm": 0.2532065212726593,
+ "learning_rate": 0.0006,
+ "loss": 4.091561794281006,
+ "step": 1086
+ },
+ {
+ "epoch": 15.097859327217126,
+ "grad_norm": 0.23562374711036682,
+ "learning_rate": 0.0006,
+ "loss": 4.074953079223633,
+ "step": 1087
+ },
+ {
+ "epoch": 15.111839231105286,
+ "grad_norm": 0.2498065084218979,
+ "learning_rate": 0.0006,
+ "loss": 4.056004047393799,
+ "step": 1088
+ },
+ {
+ "epoch": 15.125819134993447,
+ "grad_norm": 0.257046639919281,
+ "learning_rate": 0.0006,
+ "loss": 4.044149875640869,
+ "step": 1089
+ },
+ {
+ "epoch": 15.139799038881607,
+ "grad_norm": 0.2417808622121811,
+ "learning_rate": 0.0006,
+ "loss": 4.071811676025391,
+ "step": 1090
+ },
+ {
+ "epoch": 15.153778942769769,
+ "grad_norm": 0.24742013216018677,
+ "learning_rate": 0.0006,
+ "loss": 4.081482887268066,
+ "step": 1091
+ },
+ {
+ "epoch": 15.167758846657929,
+ "grad_norm": 0.2610231637954712,
+ "learning_rate": 0.0006,
+ "loss": 4.06953763961792,
+ "step": 1092
+ },
+ {
+ "epoch": 15.18173875054609,
+ "grad_norm": 0.24688200652599335,
+ "learning_rate": 0.0006,
+ "loss": 4.079700469970703,
+ "step": 1093
+ },
+ {
+ "epoch": 15.19571865443425,
+ "grad_norm": 0.2650167942047119,
+ "learning_rate": 0.0006,
+ "loss": 4.082088947296143,
+ "step": 1094
+ },
+ {
+ "epoch": 15.209698558322412,
+ "grad_norm": 0.25913330912590027,
+ "learning_rate": 0.0006,
+ "loss": 4.081713676452637,
+ "step": 1095
+ },
+ {
+ "epoch": 15.223678462210572,
+ "grad_norm": 0.2547631561756134,
+ "learning_rate": 0.0006,
+ "loss": 4.073573112487793,
+ "step": 1096
+ },
+ {
+ "epoch": 15.237658366098733,
+ "grad_norm": 0.2732609510421753,
+ "learning_rate": 0.0006,
+ "loss": 4.10186767578125,
+ "step": 1097
+ },
+ {
+ "epoch": 15.251638269986893,
+ "grad_norm": 0.2990017533302307,
+ "learning_rate": 0.0006,
+ "loss": 4.085466384887695,
+ "step": 1098
+ },
+ {
+ "epoch": 15.265618173875055,
+ "grad_norm": 0.30252209305763245,
+ "learning_rate": 0.0006,
+ "loss": 4.077337265014648,
+ "step": 1099
+ },
+ {
+ "epoch": 15.279598077763215,
+ "grad_norm": 0.30046045780181885,
+ "learning_rate": 0.0006,
+ "loss": 4.0895891189575195,
+ "step": 1100
+ },
+ {
+ "epoch": 15.293577981651376,
+ "grad_norm": 0.2779843211174011,
+ "learning_rate": 0.0006,
+ "loss": 4.060354709625244,
+ "step": 1101
+ },
+ {
+ "epoch": 15.307557885539538,
+ "grad_norm": 0.26914986968040466,
+ "learning_rate": 0.0006,
+ "loss": 4.07314395904541,
+ "step": 1102
+ },
+ {
+ "epoch": 15.321537789427698,
+ "grad_norm": 0.24605873227119446,
+ "learning_rate": 0.0006,
+ "loss": 4.051377296447754,
+ "step": 1103
+ },
+ {
+ "epoch": 15.33551769331586,
+ "grad_norm": 0.25634095072746277,
+ "learning_rate": 0.0006,
+ "loss": 4.082427024841309,
+ "step": 1104
+ },
+ {
+ "epoch": 15.349497597204019,
+ "grad_norm": 0.2888158857822418,
+ "learning_rate": 0.0006,
+ "loss": 4.074253082275391,
+ "step": 1105
+ },
+ {
+ "epoch": 15.36347750109218,
+ "grad_norm": 0.2758261561393738,
+ "learning_rate": 0.0006,
+ "loss": 4.08344841003418,
+ "step": 1106
+ },
+ {
+ "epoch": 15.37745740498034,
+ "grad_norm": 0.26937270164489746,
+ "learning_rate": 0.0006,
+ "loss": 4.063424587249756,
+ "step": 1107
+ },
+ {
+ "epoch": 15.391437308868502,
+ "grad_norm": 0.2739955484867096,
+ "learning_rate": 0.0006,
+ "loss": 4.08005952835083,
+ "step": 1108
+ },
+ {
+ "epoch": 15.405417212756662,
+ "grad_norm": 0.2635386288166046,
+ "learning_rate": 0.0006,
+ "loss": 4.087360382080078,
+ "step": 1109
+ },
+ {
+ "epoch": 15.419397116644824,
+ "grad_norm": 0.2619768977165222,
+ "learning_rate": 0.0006,
+ "loss": 4.072653770446777,
+ "step": 1110
+ },
+ {
+ "epoch": 15.433377020532983,
+ "grad_norm": 0.24154804646968842,
+ "learning_rate": 0.0006,
+ "loss": 4.084464073181152,
+ "step": 1111
+ },
+ {
+ "epoch": 15.447356924421145,
+ "grad_norm": 0.24236027896404266,
+ "learning_rate": 0.0006,
+ "loss": 4.078777313232422,
+ "step": 1112
+ },
+ {
+ "epoch": 15.461336828309305,
+ "grad_norm": 0.24653038382530212,
+ "learning_rate": 0.0006,
+ "loss": 4.075024604797363,
+ "step": 1113
+ },
+ {
+ "epoch": 15.475316732197467,
+ "grad_norm": 0.27106523513793945,
+ "learning_rate": 0.0006,
+ "loss": 4.060937881469727,
+ "step": 1114
+ },
+ {
+ "epoch": 15.489296636085626,
+ "grad_norm": 0.25109633803367615,
+ "learning_rate": 0.0006,
+ "loss": 4.081971168518066,
+ "step": 1115
+ },
+ {
+ "epoch": 15.503276539973788,
+ "grad_norm": 0.23452287912368774,
+ "learning_rate": 0.0006,
+ "loss": 4.0762834548950195,
+ "step": 1116
+ },
+ {
+ "epoch": 15.517256443861948,
+ "grad_norm": 0.25415024161338806,
+ "learning_rate": 0.0006,
+ "loss": 4.069386959075928,
+ "step": 1117
+ },
+ {
+ "epoch": 15.53123634775011,
+ "grad_norm": 0.25448229908943176,
+ "learning_rate": 0.0006,
+ "loss": 4.075098514556885,
+ "step": 1118
+ },
+ {
+ "epoch": 15.54521625163827,
+ "grad_norm": 0.25679755210876465,
+ "learning_rate": 0.0006,
+ "loss": 4.097431182861328,
+ "step": 1119
+ },
+ {
+ "epoch": 15.55919615552643,
+ "grad_norm": 0.25973212718963623,
+ "learning_rate": 0.0006,
+ "loss": 4.058948516845703,
+ "step": 1120
+ },
+ {
+ "epoch": 15.57317605941459,
+ "grad_norm": 0.24511456489562988,
+ "learning_rate": 0.0006,
+ "loss": 4.092263698577881,
+ "step": 1121
+ },
+ {
+ "epoch": 15.587155963302752,
+ "grad_norm": 0.22949442267417908,
+ "learning_rate": 0.0006,
+ "loss": 4.0526604652404785,
+ "step": 1122
+ },
+ {
+ "epoch": 15.601135867190912,
+ "grad_norm": 0.22486285865306854,
+ "learning_rate": 0.0006,
+ "loss": 4.051939010620117,
+ "step": 1123
+ },
+ {
+ "epoch": 15.615115771079074,
+ "grad_norm": 0.22183601558208466,
+ "learning_rate": 0.0006,
+ "loss": 4.065430641174316,
+ "step": 1124
+ },
+ {
+ "epoch": 15.629095674967235,
+ "grad_norm": 0.2531328797340393,
+ "learning_rate": 0.0006,
+ "loss": 4.069165229797363,
+ "step": 1125
+ },
+ {
+ "epoch": 15.643075578855395,
+ "grad_norm": 0.24403320252895355,
+ "learning_rate": 0.0006,
+ "loss": 4.055041790008545,
+ "step": 1126
+ },
+ {
+ "epoch": 15.657055482743557,
+ "grad_norm": 0.24504756927490234,
+ "learning_rate": 0.0006,
+ "loss": 4.035850524902344,
+ "step": 1127
+ },
+ {
+ "epoch": 15.671035386631717,
+ "grad_norm": 0.23812057077884674,
+ "learning_rate": 0.0006,
+ "loss": 4.049278259277344,
+ "step": 1128
+ },
+ {
+ "epoch": 15.685015290519878,
+ "grad_norm": 0.23694153130054474,
+ "learning_rate": 0.0006,
+ "loss": 4.065816402435303,
+ "step": 1129
+ },
+ {
+ "epoch": 15.698995194408038,
+ "grad_norm": 0.23252786695957184,
+ "learning_rate": 0.0006,
+ "loss": 4.05952262878418,
+ "step": 1130
+ },
+ {
+ "epoch": 15.7129750982962,
+ "grad_norm": 0.2243805080652237,
+ "learning_rate": 0.0006,
+ "loss": 4.058291435241699,
+ "step": 1131
+ },
+ {
+ "epoch": 15.72695500218436,
+ "grad_norm": 0.2200988084077835,
+ "learning_rate": 0.0006,
+ "loss": 4.040788650512695,
+ "step": 1132
+ },
+ {
+ "epoch": 15.740934906072521,
+ "grad_norm": 0.21460631489753723,
+ "learning_rate": 0.0006,
+ "loss": 4.072552680969238,
+ "step": 1133
+ },
+ {
+ "epoch": 15.754914809960681,
+ "grad_norm": 0.2056441456079483,
+ "learning_rate": 0.0006,
+ "loss": 4.059467315673828,
+ "step": 1134
+ },
+ {
+ "epoch": 15.768894713848843,
+ "grad_norm": 0.2068045437335968,
+ "learning_rate": 0.0006,
+ "loss": 4.063803195953369,
+ "step": 1135
+ },
+ {
+ "epoch": 15.782874617737003,
+ "grad_norm": 0.21307601034641266,
+ "learning_rate": 0.0006,
+ "loss": 4.093092918395996,
+ "step": 1136
+ },
+ {
+ "epoch": 15.796854521625164,
+ "grad_norm": 0.20729634165763855,
+ "learning_rate": 0.0006,
+ "loss": 4.066030502319336,
+ "step": 1137
+ },
+ {
+ "epoch": 15.810834425513324,
+ "grad_norm": 0.2097514122724533,
+ "learning_rate": 0.0006,
+ "loss": 4.077326774597168,
+ "step": 1138
+ },
+ {
+ "epoch": 15.824814329401486,
+ "grad_norm": 0.21884000301361084,
+ "learning_rate": 0.0006,
+ "loss": 4.0595598220825195,
+ "step": 1139
+ },
+ {
+ "epoch": 15.838794233289645,
+ "grad_norm": 0.22220250964164734,
+ "learning_rate": 0.0006,
+ "loss": 4.061574459075928,
+ "step": 1140
+ },
+ {
+ "epoch": 15.852774137177807,
+ "grad_norm": 0.23189949989318848,
+ "learning_rate": 0.0006,
+ "loss": 4.0504045486450195,
+ "step": 1141
+ },
+ {
+ "epoch": 15.866754041065967,
+ "grad_norm": 0.226649671792984,
+ "learning_rate": 0.0006,
+ "loss": 4.060986518859863,
+ "step": 1142
+ },
+ {
+ "epoch": 15.880733944954128,
+ "grad_norm": 0.2456834763288498,
+ "learning_rate": 0.0006,
+ "loss": 4.038525581359863,
+ "step": 1143
+ },
+ {
+ "epoch": 15.89471384884229,
+ "grad_norm": 0.2818352282047272,
+ "learning_rate": 0.0006,
+ "loss": 4.062709331512451,
+ "step": 1144
+ },
+ {
+ "epoch": 15.90869375273045,
+ "grad_norm": 0.2850170135498047,
+ "learning_rate": 0.0006,
+ "loss": 4.0683274269104,
+ "step": 1145
+ },
+ {
+ "epoch": 15.922673656618612,
+ "grad_norm": 0.27691730856895447,
+ "learning_rate": 0.0006,
+ "loss": 4.076540470123291,
+ "step": 1146
+ },
+ {
+ "epoch": 15.936653560506771,
+ "grad_norm": 0.2685548961162567,
+ "learning_rate": 0.0006,
+ "loss": 4.048116683959961,
+ "step": 1147
+ },
+ {
+ "epoch": 15.950633464394933,
+ "grad_norm": 0.2452288419008255,
+ "learning_rate": 0.0006,
+ "loss": 4.06640625,
+ "step": 1148
+ },
+ {
+ "epoch": 15.964613368283093,
+ "grad_norm": 0.2601441740989685,
+ "learning_rate": 0.0006,
+ "loss": 4.073277473449707,
+ "step": 1149
+ },
+ {
+ "epoch": 15.978593272171254,
+ "grad_norm": 0.2748197913169861,
+ "learning_rate": 0.0006,
+ "loss": 4.0332536697387695,
+ "step": 1150
+ },
+ {
+ "epoch": 15.992573176059414,
+ "grad_norm": 0.27249959111213684,
+ "learning_rate": 0.0006,
+ "loss": 3.9952516555786133,
+ "step": 1151
+ },
+ {
+ "epoch": 16.0,
+ "grad_norm": 0.3475601375102997,
+ "learning_rate": 0.0006,
+ "loss": 4.040761947631836,
+ "step": 1152
+ },
+ {
+ "epoch": 16.0,
+ "eval_loss": 4.237997531890869,
+ "eval_runtime": 43.8692,
+ "eval_samples_per_second": 55.665,
+ "eval_steps_per_second": 3.488,
+ "step": 1152
+ },
+ {
+ "epoch": 16.01397990388816,
+ "grad_norm": 0.3365611433982849,
+ "learning_rate": 0.0006,
+ "loss": 4.031302452087402,
+ "step": 1153
+ },
+ {
+ "epoch": 16.027959807776323,
+ "grad_norm": 0.3020530641078949,
+ "learning_rate": 0.0006,
+ "loss": 4.036273956298828,
+ "step": 1154
+ },
+ {
+ "epoch": 16.041939711664483,
+ "grad_norm": 0.25277993083000183,
+ "learning_rate": 0.0006,
+ "loss": 4.007067680358887,
+ "step": 1155
+ },
+ {
+ "epoch": 16.055919615552643,
+ "grad_norm": 0.24762840569019318,
+ "learning_rate": 0.0006,
+ "loss": 4.046561241149902,
+ "step": 1156
+ },
+ {
+ "epoch": 16.069899519440803,
+ "grad_norm": 0.25236397981643677,
+ "learning_rate": 0.0006,
+ "loss": 4.061616897583008,
+ "step": 1157
+ },
+ {
+ "epoch": 16.083879423328966,
+ "grad_norm": 0.22789105772972107,
+ "learning_rate": 0.0006,
+ "loss": 4.010061740875244,
+ "step": 1158
+ },
+ {
+ "epoch": 16.097859327217126,
+ "grad_norm": 0.21866244077682495,
+ "learning_rate": 0.0006,
+ "loss": 4.0181097984313965,
+ "step": 1159
+ },
+ {
+ "epoch": 16.111839231105286,
+ "grad_norm": 0.21889029443264008,
+ "learning_rate": 0.0006,
+ "loss": 4.012239456176758,
+ "step": 1160
+ },
+ {
+ "epoch": 16.125819134993446,
+ "grad_norm": 0.23002485930919647,
+ "learning_rate": 0.0006,
+ "loss": 4.034092426300049,
+ "step": 1161
+ },
+ {
+ "epoch": 16.13979903888161,
+ "grad_norm": 0.2271798551082611,
+ "learning_rate": 0.0006,
+ "loss": 4.026222229003906,
+ "step": 1162
+ },
+ {
+ "epoch": 16.15377894276977,
+ "grad_norm": 0.238200843334198,
+ "learning_rate": 0.0006,
+ "loss": 4.044692039489746,
+ "step": 1163
+ },
+ {
+ "epoch": 16.16775884665793,
+ "grad_norm": 0.2281467169523239,
+ "learning_rate": 0.0006,
+ "loss": 4.032305717468262,
+ "step": 1164
+ },
+ {
+ "epoch": 16.18173875054609,
+ "grad_norm": 0.2213946431875229,
+ "learning_rate": 0.0006,
+ "loss": 4.048737525939941,
+ "step": 1165
+ },
+ {
+ "epoch": 16.195718654434252,
+ "grad_norm": 0.26638558506965637,
+ "learning_rate": 0.0006,
+ "loss": 4.006335258483887,
+ "step": 1166
+ },
+ {
+ "epoch": 16.209698558322412,
+ "grad_norm": 0.2780219316482544,
+ "learning_rate": 0.0006,
+ "loss": 4.049234390258789,
+ "step": 1167
+ },
+ {
+ "epoch": 16.22367846221057,
+ "grad_norm": 0.27425870299339294,
+ "learning_rate": 0.0006,
+ "loss": 4.017177104949951,
+ "step": 1168
+ },
+ {
+ "epoch": 16.23765836609873,
+ "grad_norm": 0.2596667408943176,
+ "learning_rate": 0.0006,
+ "loss": 4.022942543029785,
+ "step": 1169
+ },
+ {
+ "epoch": 16.251638269986895,
+ "grad_norm": 0.26972314715385437,
+ "learning_rate": 0.0006,
+ "loss": 4.035310745239258,
+ "step": 1170
+ },
+ {
+ "epoch": 16.265618173875055,
+ "grad_norm": 0.2677772045135498,
+ "learning_rate": 0.0006,
+ "loss": 4.0280561447143555,
+ "step": 1171
+ },
+ {
+ "epoch": 16.279598077763215,
+ "grad_norm": 0.25433358550071716,
+ "learning_rate": 0.0006,
+ "loss": 4.03616189956665,
+ "step": 1172
+ },
+ {
+ "epoch": 16.293577981651374,
+ "grad_norm": 0.2583644688129425,
+ "learning_rate": 0.0006,
+ "loss": 4.073624134063721,
+ "step": 1173
+ },
+ {
+ "epoch": 16.307557885539538,
+ "grad_norm": 0.25437524914741516,
+ "learning_rate": 0.0006,
+ "loss": 4.057926654815674,
+ "step": 1174
+ },
+ {
+ "epoch": 16.321537789427698,
+ "grad_norm": 0.2819201350212097,
+ "learning_rate": 0.0006,
+ "loss": 4.020838737487793,
+ "step": 1175
+ },
+ {
+ "epoch": 16.335517693315857,
+ "grad_norm": 0.32689282298088074,
+ "learning_rate": 0.0006,
+ "loss": 4.062448501586914,
+ "step": 1176
+ },
+ {
+ "epoch": 16.34949759720402,
+ "grad_norm": 0.33002278208732605,
+ "learning_rate": 0.0006,
+ "loss": 4.052059173583984,
+ "step": 1177
+ },
+ {
+ "epoch": 16.36347750109218,
+ "grad_norm": 0.32472696900367737,
+ "learning_rate": 0.0006,
+ "loss": 4.042375564575195,
+ "step": 1178
+ },
+ {
+ "epoch": 16.37745740498034,
+ "grad_norm": 0.35279813408851624,
+ "learning_rate": 0.0006,
+ "loss": 4.028722763061523,
+ "step": 1179
+ },
+ {
+ "epoch": 16.3914373088685,
+ "grad_norm": 0.3243204951286316,
+ "learning_rate": 0.0006,
+ "loss": 4.045693874359131,
+ "step": 1180
+ },
+ {
+ "epoch": 16.405417212756664,
+ "grad_norm": 0.32171115279197693,
+ "learning_rate": 0.0006,
+ "loss": 4.018350124359131,
+ "step": 1181
+ },
+ {
+ "epoch": 16.419397116644824,
+ "grad_norm": 0.31459906697273254,
+ "learning_rate": 0.0006,
+ "loss": 4.039547443389893,
+ "step": 1182
+ },
+ {
+ "epoch": 16.433377020532983,
+ "grad_norm": 0.35038673877716064,
+ "learning_rate": 0.0006,
+ "loss": 4.005928039550781,
+ "step": 1183
+ },
+ {
+ "epoch": 16.447356924421143,
+ "grad_norm": 0.34110963344573975,
+ "learning_rate": 0.0006,
+ "loss": 4.042272090911865,
+ "step": 1184
+ },
+ {
+ "epoch": 16.461336828309307,
+ "grad_norm": 0.33760902285575867,
+ "learning_rate": 0.0006,
+ "loss": 4.02886962890625,
+ "step": 1185
+ },
+ {
+ "epoch": 16.475316732197467,
+ "grad_norm": 0.3162464499473572,
+ "learning_rate": 0.0006,
+ "loss": 4.059924125671387,
+ "step": 1186
+ },
+ {
+ "epoch": 16.489296636085626,
+ "grad_norm": 0.2667233645915985,
+ "learning_rate": 0.0006,
+ "loss": 4.069073677062988,
+ "step": 1187
+ },
+ {
+ "epoch": 16.503276539973786,
+ "grad_norm": 0.22626568377017975,
+ "learning_rate": 0.0006,
+ "loss": 4.044912338256836,
+ "step": 1188
+ },
+ {
+ "epoch": 16.51725644386195,
+ "grad_norm": 0.203303262591362,
+ "learning_rate": 0.0006,
+ "loss": 4.025210380554199,
+ "step": 1189
+ },
+ {
+ "epoch": 16.53123634775011,
+ "grad_norm": 0.2108820080757141,
+ "learning_rate": 0.0006,
+ "loss": 4.035998821258545,
+ "step": 1190
+ },
+ {
+ "epoch": 16.54521625163827,
+ "grad_norm": 0.20451335608959198,
+ "learning_rate": 0.0006,
+ "loss": 4.043377876281738,
+ "step": 1191
+ },
+ {
+ "epoch": 16.55919615552643,
+ "grad_norm": 0.23348836600780487,
+ "learning_rate": 0.0006,
+ "loss": 4.033735275268555,
+ "step": 1192
+ },
+ {
+ "epoch": 16.573176059414592,
+ "grad_norm": 0.24438607692718506,
+ "learning_rate": 0.0006,
+ "loss": 4.071747779846191,
+ "step": 1193
+ },
+ {
+ "epoch": 16.587155963302752,
+ "grad_norm": 0.24233631789684296,
+ "learning_rate": 0.0006,
+ "loss": 4.0138702392578125,
+ "step": 1194
+ },
+ {
+ "epoch": 16.601135867190912,
+ "grad_norm": 0.21625740826129913,
+ "learning_rate": 0.0006,
+ "loss": 4.013422012329102,
+ "step": 1195
+ },
+ {
+ "epoch": 16.615115771079076,
+ "grad_norm": 0.22447720170021057,
+ "learning_rate": 0.0006,
+ "loss": 4.056326866149902,
+ "step": 1196
+ },
+ {
+ "epoch": 16.629095674967235,
+ "grad_norm": 0.21899616718292236,
+ "learning_rate": 0.0006,
+ "loss": 4.006134033203125,
+ "step": 1197
+ },
+ {
+ "epoch": 16.643075578855395,
+ "grad_norm": 0.191362664103508,
+ "learning_rate": 0.0006,
+ "loss": 4.036748886108398,
+ "step": 1198
+ },
+ {
+ "epoch": 16.657055482743555,
+ "grad_norm": 0.20203463733196259,
+ "learning_rate": 0.0006,
+ "loss": 4.006264686584473,
+ "step": 1199
+ },
+ {
+ "epoch": 16.67103538663172,
+ "grad_norm": 0.20209139585494995,
+ "learning_rate": 0.0006,
+ "loss": 4.059018135070801,
+ "step": 1200
+ },
+ {
+ "epoch": 16.68501529051988,
+ "grad_norm": 0.20811820030212402,
+ "learning_rate": 0.0006,
+ "loss": 4.054325103759766,
+ "step": 1201
+ },
+ {
+ "epoch": 16.698995194408038,
+ "grad_norm": 0.22448928654193878,
+ "learning_rate": 0.0006,
+ "loss": 3.996121406555176,
+ "step": 1202
+ },
+ {
+ "epoch": 16.712975098296198,
+ "grad_norm": 0.21692240238189697,
+ "learning_rate": 0.0006,
+ "loss": 4.042046546936035,
+ "step": 1203
+ },
+ {
+ "epoch": 16.72695500218436,
+ "grad_norm": 0.20688563585281372,
+ "learning_rate": 0.0006,
+ "loss": 4.002251625061035,
+ "step": 1204
+ },
+ {
+ "epoch": 16.74093490607252,
+ "grad_norm": 0.1835535764694214,
+ "learning_rate": 0.0006,
+ "loss": 4.02545166015625,
+ "step": 1205
+ },
+ {
+ "epoch": 16.75491480996068,
+ "grad_norm": 0.20532558858394623,
+ "learning_rate": 0.0006,
+ "loss": 4.039333343505859,
+ "step": 1206
+ },
+ {
+ "epoch": 16.76889471384884,
+ "grad_norm": 0.2214215099811554,
+ "learning_rate": 0.0006,
+ "loss": 4.037858486175537,
+ "step": 1207
+ },
+ {
+ "epoch": 16.782874617737004,
+ "grad_norm": 0.24926038086414337,
+ "learning_rate": 0.0006,
+ "loss": 4.024799346923828,
+ "step": 1208
+ },
+ {
+ "epoch": 16.796854521625164,
+ "grad_norm": 0.26057952642440796,
+ "learning_rate": 0.0006,
+ "loss": 4.042788505554199,
+ "step": 1209
+ },
+ {
+ "epoch": 16.810834425513324,
+ "grad_norm": 0.2501208782196045,
+ "learning_rate": 0.0006,
+ "loss": 4.051809310913086,
+ "step": 1210
+ },
+ {
+ "epoch": 16.824814329401484,
+ "grad_norm": 0.21760012209415436,
+ "learning_rate": 0.0006,
+ "loss": 4.063589096069336,
+ "step": 1211
+ },
+ {
+ "epoch": 16.838794233289647,
+ "grad_norm": 0.2243622988462448,
+ "learning_rate": 0.0006,
+ "loss": 4.008829593658447,
+ "step": 1212
+ },
+ {
+ "epoch": 16.852774137177807,
+ "grad_norm": 0.2399163395166397,
+ "learning_rate": 0.0006,
+ "loss": 4.013262748718262,
+ "step": 1213
+ },
+ {
+ "epoch": 16.866754041065967,
+ "grad_norm": 0.23187831044197083,
+ "learning_rate": 0.0006,
+ "loss": 4.023053169250488,
+ "step": 1214
+ },
+ {
+ "epoch": 16.88073394495413,
+ "grad_norm": 0.23723892867565155,
+ "learning_rate": 0.0006,
+ "loss": 3.991321563720703,
+ "step": 1215
+ },
+ {
+ "epoch": 16.89471384884229,
+ "grad_norm": 0.21766342222690582,
+ "learning_rate": 0.0006,
+ "loss": 4.0250773429870605,
+ "step": 1216
+ },
+ {
+ "epoch": 16.90869375273045,
+ "grad_norm": 0.20715023577213287,
+ "learning_rate": 0.0006,
+ "loss": 4.063642978668213,
+ "step": 1217
+ },
+ {
+ "epoch": 16.92267365661861,
+ "grad_norm": 0.20165133476257324,
+ "learning_rate": 0.0006,
+ "loss": 3.9951367378234863,
+ "step": 1218
+ },
+ {
+ "epoch": 16.936653560506773,
+ "grad_norm": 0.19956178963184357,
+ "learning_rate": 0.0006,
+ "loss": 4.025641441345215,
+ "step": 1219
+ },
+ {
+ "epoch": 16.950633464394933,
+ "grad_norm": 0.2175494134426117,
+ "learning_rate": 0.0006,
+ "loss": 4.030346393585205,
+ "step": 1220
+ },
+ {
+ "epoch": 16.964613368283093,
+ "grad_norm": 0.22365593910217285,
+ "learning_rate": 0.0006,
+ "loss": 4.018105506896973,
+ "step": 1221
+ },
+ {
+ "epoch": 16.978593272171253,
+ "grad_norm": 0.21251538395881653,
+ "learning_rate": 0.0006,
+ "loss": 4.023580074310303,
+ "step": 1222
+ },
+ {
+ "epoch": 16.992573176059416,
+ "grad_norm": 0.2230125218629837,
+ "learning_rate": 0.0006,
+ "loss": 4.001980304718018,
+ "step": 1223
+ },
+ {
+ "epoch": 17.0,
+ "grad_norm": 0.24261972308158875,
+ "learning_rate": 0.0006,
+ "loss": 4.081348896026611,
+ "step": 1224
+ },
+ {
+ "epoch": 17.0,
+ "eval_loss": 4.225194931030273,
+ "eval_runtime": 44.247,
+ "eval_samples_per_second": 55.19,
+ "eval_steps_per_second": 3.458,
+ "step": 1224
+ },
+ {
+ "epoch": 17.01397990388816,
+ "grad_norm": 0.2438880205154419,
+ "learning_rate": 0.0006,
+ "loss": 4.0164794921875,
+ "step": 1225
+ },
+ {
+ "epoch": 17.027959807776323,
+ "grad_norm": 0.22459383308887482,
+ "learning_rate": 0.0006,
+ "loss": 3.991623878479004,
+ "step": 1226
+ },
+ {
+ "epoch": 17.041939711664483,
+ "grad_norm": 0.25021040439605713,
+ "learning_rate": 0.0006,
+ "loss": 4.003020286560059,
+ "step": 1227
+ },
+ {
+ "epoch": 17.055919615552643,
+ "grad_norm": 0.30358025431632996,
+ "learning_rate": 0.0006,
+ "loss": 3.980921983718872,
+ "step": 1228
+ },
+ {
+ "epoch": 17.069899519440803,
+ "grad_norm": 0.27313271164894104,
+ "learning_rate": 0.0006,
+ "loss": 3.992398977279663,
+ "step": 1229
+ },
+ {
+ "epoch": 17.083879423328966,
+ "grad_norm": 0.2293211966753006,
+ "learning_rate": 0.0006,
+ "loss": 4.02568244934082,
+ "step": 1230
+ },
+ {
+ "epoch": 17.097859327217126,
+ "grad_norm": 0.2363300621509552,
+ "learning_rate": 0.0006,
+ "loss": 3.977229356765747,
+ "step": 1231
+ },
+ {
+ "epoch": 17.111839231105286,
+ "grad_norm": 0.2809674143791199,
+ "learning_rate": 0.0006,
+ "loss": 3.9720497131347656,
+ "step": 1232
+ },
+ {
+ "epoch": 17.125819134993446,
+ "grad_norm": 0.2913855016231537,
+ "learning_rate": 0.0006,
+ "loss": 3.979529857635498,
+ "step": 1233
+ },
+ {
+ "epoch": 17.13979903888161,
+ "grad_norm": 0.2920287251472473,
+ "learning_rate": 0.0006,
+ "loss": 3.9678473472595215,
+ "step": 1234
+ },
+ {
+ "epoch": 17.15377894276977,
+ "grad_norm": 0.2521543502807617,
+ "learning_rate": 0.0006,
+ "loss": 3.9912607669830322,
+ "step": 1235
+ },
+ {
+ "epoch": 17.16775884665793,
+ "grad_norm": 0.22844268381595612,
+ "learning_rate": 0.0006,
+ "loss": 3.9898228645324707,
+ "step": 1236
+ },
+ {
+ "epoch": 17.18173875054609,
+ "grad_norm": 0.2199884057044983,
+ "learning_rate": 0.0006,
+ "loss": 4.0050740242004395,
+ "step": 1237
+ },
+ {
+ "epoch": 17.195718654434252,
+ "grad_norm": 0.23072892427444458,
+ "learning_rate": 0.0006,
+ "loss": 3.9957475662231445,
+ "step": 1238
+ },
+ {
+ "epoch": 17.209698558322412,
+ "grad_norm": 0.2034899890422821,
+ "learning_rate": 0.0006,
+ "loss": 3.9672317504882812,
+ "step": 1239
+ },
+ {
+ "epoch": 17.22367846221057,
+ "grad_norm": 0.21826180815696716,
+ "learning_rate": 0.0006,
+ "loss": 3.98543119430542,
+ "step": 1240
+ },
+ {
+ "epoch": 17.23765836609873,
+ "grad_norm": 0.21203237771987915,
+ "learning_rate": 0.0006,
+ "loss": 3.9971959590911865,
+ "step": 1241
+ },
+ {
+ "epoch": 17.251638269986895,
+ "grad_norm": 0.22139234840869904,
+ "learning_rate": 0.0006,
+ "loss": 4.017539978027344,
+ "step": 1242
+ },
+ {
+ "epoch": 17.265618173875055,
+ "grad_norm": 0.21553276479244232,
+ "learning_rate": 0.0006,
+ "loss": 3.98740553855896,
+ "step": 1243
+ },
+ {
+ "epoch": 17.279598077763215,
+ "grad_norm": 0.23259080946445465,
+ "learning_rate": 0.0006,
+ "loss": 3.9963035583496094,
+ "step": 1244
+ },
+ {
+ "epoch": 17.293577981651374,
+ "grad_norm": 0.2527932822704315,
+ "learning_rate": 0.0006,
+ "loss": 4.0202956199646,
+ "step": 1245
+ },
+ {
+ "epoch": 17.307557885539538,
+ "grad_norm": 0.28669068217277527,
+ "learning_rate": 0.0006,
+ "loss": 3.9947609901428223,
+ "step": 1246
+ },
+ {
+ "epoch": 17.321537789427698,
+ "grad_norm": 0.341602623462677,
+ "learning_rate": 0.0006,
+ "loss": 3.997032642364502,
+ "step": 1247
+ },
+ {
+ "epoch": 17.335517693315857,
+ "grad_norm": 0.3364104926586151,
+ "learning_rate": 0.0006,
+ "loss": 3.9881834983825684,
+ "step": 1248
+ },
+ {
+ "epoch": 17.34949759720402,
+ "grad_norm": 0.2979278266429901,
+ "learning_rate": 0.0006,
+ "loss": 4.045898914337158,
+ "step": 1249
+ },
+ {
+ "epoch": 17.36347750109218,
+ "grad_norm": 0.2857462465763092,
+ "learning_rate": 0.0006,
+ "loss": 4.0085272789001465,
+ "step": 1250
+ },
+ {
+ "epoch": 17.37745740498034,
+ "grad_norm": 0.2689058780670166,
+ "learning_rate": 0.0006,
+ "loss": 4.021465301513672,
+ "step": 1251
+ },
+ {
+ "epoch": 17.3914373088685,
+ "grad_norm": 0.24943363666534424,
+ "learning_rate": 0.0006,
+ "loss": 4.003451347351074,
+ "step": 1252
+ },
+ {
+ "epoch": 17.405417212756664,
+ "grad_norm": 0.2635347843170166,
+ "learning_rate": 0.0006,
+ "loss": 3.9837827682495117,
+ "step": 1253
+ },
+ {
+ "epoch": 17.419397116644824,
+ "grad_norm": 0.29126450419425964,
+ "learning_rate": 0.0006,
+ "loss": 3.9857311248779297,
+ "step": 1254
+ },
+ {
+ "epoch": 17.433377020532983,
+ "grad_norm": 0.3166918456554413,
+ "learning_rate": 0.0006,
+ "loss": 3.9842967987060547,
+ "step": 1255
+ },
+ {
+ "epoch": 17.447356924421143,
+ "grad_norm": 0.27869969606399536,
+ "learning_rate": 0.0006,
+ "loss": 4.012607574462891,
+ "step": 1256
+ },
+ {
+ "epoch": 17.461336828309307,
+ "grad_norm": 0.23719419538974762,
+ "learning_rate": 0.0006,
+ "loss": 3.981034755706787,
+ "step": 1257
+ },
+ {
+ "epoch": 17.475316732197467,
+ "grad_norm": 0.22687610983848572,
+ "learning_rate": 0.0006,
+ "loss": 4.011059761047363,
+ "step": 1258
+ },
+ {
+ "epoch": 17.489296636085626,
+ "grad_norm": 0.22034095227718353,
+ "learning_rate": 0.0006,
+ "loss": 4.015044689178467,
+ "step": 1259
+ },
+ {
+ "epoch": 17.503276539973786,
+ "grad_norm": 0.21208405494689941,
+ "learning_rate": 0.0006,
+ "loss": 4.003793716430664,
+ "step": 1260
+ },
+ {
+ "epoch": 17.51725644386195,
+ "grad_norm": 0.21759214997291565,
+ "learning_rate": 0.0006,
+ "loss": 3.978652238845825,
+ "step": 1261
+ },
+ {
+ "epoch": 17.53123634775011,
+ "grad_norm": 0.22481068968772888,
+ "learning_rate": 0.0006,
+ "loss": 4.034845352172852,
+ "step": 1262
+ },
+ {
+ "epoch": 17.54521625163827,
+ "grad_norm": 0.20376387238502502,
+ "learning_rate": 0.0006,
+ "loss": 3.990541934967041,
+ "step": 1263
+ },
+ {
+ "epoch": 17.55919615552643,
+ "grad_norm": 0.20459355413913727,
+ "learning_rate": 0.0006,
+ "loss": 4.006990432739258,
+ "step": 1264
+ },
+ {
+ "epoch": 17.573176059414592,
+ "grad_norm": 0.19306913018226624,
+ "learning_rate": 0.0006,
+ "loss": 3.993408679962158,
+ "step": 1265
+ },
+ {
+ "epoch": 17.587155963302752,
+ "grad_norm": 0.20727239549160004,
+ "learning_rate": 0.0006,
+ "loss": 3.988016128540039,
+ "step": 1266
+ },
+ {
+ "epoch": 17.601135867190912,
+ "grad_norm": 0.20213133096694946,
+ "learning_rate": 0.0006,
+ "loss": 4.0120368003845215,
+ "step": 1267
+ },
+ {
+ "epoch": 17.615115771079076,
+ "grad_norm": 0.21074117720127106,
+ "learning_rate": 0.0006,
+ "loss": 4.048871040344238,
+ "step": 1268
+ },
+ {
+ "epoch": 17.629095674967235,
+ "grad_norm": 0.2074330598115921,
+ "learning_rate": 0.0006,
+ "loss": 3.997509002685547,
+ "step": 1269
+ },
+ {
+ "epoch": 17.643075578855395,
+ "grad_norm": 0.20383669435977936,
+ "learning_rate": 0.0006,
+ "loss": 4.0028839111328125,
+ "step": 1270
+ },
+ {
+ "epoch": 17.657055482743555,
+ "grad_norm": 0.2060765027999878,
+ "learning_rate": 0.0006,
+ "loss": 3.998032331466675,
+ "step": 1271
+ },
+ {
+ "epoch": 17.67103538663172,
+ "grad_norm": 0.21851404011249542,
+ "learning_rate": 0.0006,
+ "loss": 3.9928741455078125,
+ "step": 1272
+ },
+ {
+ "epoch": 17.68501529051988,
+ "grad_norm": 0.24324250221252441,
+ "learning_rate": 0.0006,
+ "loss": 3.9896507263183594,
+ "step": 1273
+ },
+ {
+ "epoch": 17.698995194408038,
+ "grad_norm": 0.25584331154823303,
+ "learning_rate": 0.0006,
+ "loss": 4.010485649108887,
+ "step": 1274
+ },
+ {
+ "epoch": 17.712975098296198,
+ "grad_norm": 0.2490610033273697,
+ "learning_rate": 0.0006,
+ "loss": 3.9906954765319824,
+ "step": 1275
+ },
+ {
+ "epoch": 17.72695500218436,
+ "grad_norm": 0.24241414666175842,
+ "learning_rate": 0.0006,
+ "loss": 4.016420364379883,
+ "step": 1276
+ },
+ {
+ "epoch": 17.74093490607252,
+ "grad_norm": 0.2222128063440323,
+ "learning_rate": 0.0006,
+ "loss": 4.009827136993408,
+ "step": 1277
+ },
+ {
+ "epoch": 17.75491480996068,
+ "grad_norm": 0.23119516670703888,
+ "learning_rate": 0.0006,
+ "loss": 4.0034589767456055,
+ "step": 1278
+ },
+ {
+ "epoch": 17.76889471384884,
+ "grad_norm": 0.24596457183361053,
+ "learning_rate": 0.0006,
+ "loss": 4.003161907196045,
+ "step": 1279
+ },
+ {
+ "epoch": 17.782874617737004,
+ "grad_norm": 0.2607562839984894,
+ "learning_rate": 0.0006,
+ "loss": 3.9894633293151855,
+ "step": 1280
+ },
+ {
+ "epoch": 17.796854521625164,
+ "grad_norm": 0.28706878423690796,
+ "learning_rate": 0.0006,
+ "loss": 4.005712985992432,
+ "step": 1281
+ },
+ {
+ "epoch": 17.810834425513324,
+ "grad_norm": 0.27178290486335754,
+ "learning_rate": 0.0006,
+ "loss": 3.9784536361694336,
+ "step": 1282
+ },
+ {
+ "epoch": 17.824814329401484,
+ "grad_norm": 0.27962708473205566,
+ "learning_rate": 0.0006,
+ "loss": 4.012705326080322,
+ "step": 1283
+ },
+ {
+ "epoch": 17.838794233289647,
+ "grad_norm": 0.29147693514823914,
+ "learning_rate": 0.0006,
+ "loss": 4.0159783363342285,
+ "step": 1284
+ },
+ {
+ "epoch": 17.852774137177807,
+ "grad_norm": 0.2841821312904358,
+ "learning_rate": 0.0006,
+ "loss": 4.011552810668945,
+ "step": 1285
+ },
+ {
+ "epoch": 17.866754041065967,
+ "grad_norm": 0.24924969673156738,
+ "learning_rate": 0.0006,
+ "loss": 3.992421865463257,
+ "step": 1286
+ },
+ {
+ "epoch": 17.88073394495413,
+ "grad_norm": 0.24850749969482422,
+ "learning_rate": 0.0006,
+ "loss": 3.974897861480713,
+ "step": 1287
+ },
+ {
+ "epoch": 17.89471384884229,
+ "grad_norm": 0.2409554123878479,
+ "learning_rate": 0.0006,
+ "loss": 4.002941131591797,
+ "step": 1288
+ },
+ {
+ "epoch": 17.90869375273045,
+ "grad_norm": 0.2656126320362091,
+ "learning_rate": 0.0006,
+ "loss": 3.9804210662841797,
+ "step": 1289
+ },
+ {
+ "epoch": 17.92267365661861,
+ "grad_norm": 0.28210243582725525,
+ "learning_rate": 0.0006,
+ "loss": 4.007192134857178,
+ "step": 1290
+ },
+ {
+ "epoch": 17.936653560506773,
+ "grad_norm": 0.28427553176879883,
+ "learning_rate": 0.0006,
+ "loss": 3.9739556312561035,
+ "step": 1291
+ },
+ {
+ "epoch": 17.950633464394933,
+ "grad_norm": 0.28893420100212097,
+ "learning_rate": 0.0006,
+ "loss": 4.004766941070557,
+ "step": 1292
+ },
+ {
+ "epoch": 17.964613368283093,
+ "grad_norm": 0.2831471562385559,
+ "learning_rate": 0.0006,
+ "loss": 3.984936237335205,
+ "step": 1293
+ },
+ {
+ "epoch": 17.978593272171253,
+ "grad_norm": 0.2518300712108612,
+ "learning_rate": 0.0006,
+ "loss": 4.002814292907715,
+ "step": 1294
+ },
+ {
+ "epoch": 17.992573176059416,
+ "grad_norm": 0.24264675378799438,
+ "learning_rate": 0.0006,
+ "loss": 3.998900890350342,
+ "step": 1295
+ },
+ {
+ "epoch": 18.0,
+ "grad_norm": 0.24474996328353882,
+ "learning_rate": 0.0006,
+ "loss": 3.974229335784912,
+ "step": 1296
+ },
+ {
+ "epoch": 18.0,
+ "eval_loss": 4.195685863494873,
+ "eval_runtime": 44.0709,
+ "eval_samples_per_second": 55.411,
+ "eval_steps_per_second": 3.472,
+ "step": 1296
+ },
+ {
+ "epoch": 18.01397990388816,
+ "grad_norm": 0.2553016245365143,
+ "learning_rate": 0.0006,
+ "loss": 3.9522247314453125,
+ "step": 1297
+ },
+ {
+ "epoch": 18.027959807776323,
+ "grad_norm": 0.22350727021694183,
+ "learning_rate": 0.0006,
+ "loss": 3.9850122928619385,
+ "step": 1298
+ },
+ {
+ "epoch": 18.041939711664483,
+ "grad_norm": 0.23935550451278687,
+ "learning_rate": 0.0006,
+ "loss": 3.9758832454681396,
+ "step": 1299
+ },
+ {
+ "epoch": 18.055919615552643,
+ "grad_norm": 0.23868797719478607,
+ "learning_rate": 0.0006,
+ "loss": 3.9567959308624268,
+ "step": 1300
+ },
+ {
+ "epoch": 18.069899519440803,
+ "grad_norm": 0.23102357983589172,
+ "learning_rate": 0.0006,
+ "loss": 3.9399867057800293,
+ "step": 1301
+ },
+ {
+ "epoch": 18.083879423328966,
+ "grad_norm": 0.23706983029842377,
+ "learning_rate": 0.0006,
+ "loss": 3.993434190750122,
+ "step": 1302
+ },
+ {
+ "epoch": 18.097859327217126,
+ "grad_norm": 0.22207573056221008,
+ "learning_rate": 0.0006,
+ "loss": 3.993436574935913,
+ "step": 1303
+ },
+ {
+ "epoch": 18.111839231105286,
+ "grad_norm": 0.23975296318531036,
+ "learning_rate": 0.0006,
+ "loss": 3.981943368911743,
+ "step": 1304
+ },
+ {
+ "epoch": 18.125819134993446,
+ "grad_norm": 0.2520582675933838,
+ "learning_rate": 0.0006,
+ "loss": 3.965493679046631,
+ "step": 1305
+ },
+ {
+ "epoch": 18.13979903888161,
+ "grad_norm": 0.2230956256389618,
+ "learning_rate": 0.0006,
+ "loss": 3.9360928535461426,
+ "step": 1306
+ },
+ {
+ "epoch": 18.15377894276977,
+ "grad_norm": 0.22527500987052917,
+ "learning_rate": 0.0006,
+ "loss": 3.9814581871032715,
+ "step": 1307
+ },
+ {
+ "epoch": 18.16775884665793,
+ "grad_norm": 0.22389626502990723,
+ "learning_rate": 0.0006,
+ "loss": 3.961590051651001,
+ "step": 1308
+ },
+ {
+ "epoch": 18.18173875054609,
+ "grad_norm": 0.22279471158981323,
+ "learning_rate": 0.0006,
+ "loss": 3.952338695526123,
+ "step": 1309
+ },
+ {
+ "epoch": 18.195718654434252,
+ "grad_norm": 0.24635115265846252,
+ "learning_rate": 0.0006,
+ "loss": 3.9693849086761475,
+ "step": 1310
+ },
+ {
+ "epoch": 18.209698558322412,
+ "grad_norm": 0.2757279872894287,
+ "learning_rate": 0.0006,
+ "loss": 3.9956700801849365,
+ "step": 1311
+ },
+ {
+ "epoch": 18.22367846221057,
+ "grad_norm": 0.2619115710258484,
+ "learning_rate": 0.0006,
+ "loss": 3.948878765106201,
+ "step": 1312
+ },
+ {
+ "epoch": 18.23765836609873,
+ "grad_norm": 0.22853828966617584,
+ "learning_rate": 0.0006,
+ "loss": 3.9545674324035645,
+ "step": 1313
+ },
+ {
+ "epoch": 18.251638269986895,
+ "grad_norm": 0.22904761135578156,
+ "learning_rate": 0.0006,
+ "loss": 3.947535991668701,
+ "step": 1314
+ },
+ {
+ "epoch": 18.265618173875055,
+ "grad_norm": 0.23592644929885864,
+ "learning_rate": 0.0006,
+ "loss": 3.971926212310791,
+ "step": 1315
+ },
+ {
+ "epoch": 18.279598077763215,
+ "grad_norm": 0.22120243310928345,
+ "learning_rate": 0.0006,
+ "loss": 3.9471049308776855,
+ "step": 1316
+ },
+ {
+ "epoch": 18.293577981651374,
+ "grad_norm": 0.20308749377727509,
+ "learning_rate": 0.0006,
+ "loss": 3.967449188232422,
+ "step": 1317
+ },
+ {
+ "epoch": 18.307557885539538,
+ "grad_norm": 0.20013529062271118,
+ "learning_rate": 0.0006,
+ "loss": 3.966151237487793,
+ "step": 1318
+ },
+ {
+ "epoch": 18.321537789427698,
+ "grad_norm": 0.20635221898555756,
+ "learning_rate": 0.0006,
+ "loss": 3.9908885955810547,
+ "step": 1319
+ },
+ {
+ "epoch": 18.335517693315857,
+ "grad_norm": 0.2232237160205841,
+ "learning_rate": 0.0006,
+ "loss": 3.9488768577575684,
+ "step": 1320
+ },
+ {
+ "epoch": 18.34949759720402,
+ "grad_norm": 0.21916444599628448,
+ "learning_rate": 0.0006,
+ "loss": 3.973428726196289,
+ "step": 1321
+ },
+ {
+ "epoch": 18.36347750109218,
+ "grad_norm": 0.20427337288856506,
+ "learning_rate": 0.0006,
+ "loss": 3.969332695007324,
+ "step": 1322
+ },
+ {
+ "epoch": 18.37745740498034,
+ "grad_norm": 0.20138131082057953,
+ "learning_rate": 0.0006,
+ "loss": 3.9651856422424316,
+ "step": 1323
+ },
+ {
+ "epoch": 18.3914373088685,
+ "grad_norm": 0.18918880820274353,
+ "learning_rate": 0.0006,
+ "loss": 3.9772281646728516,
+ "step": 1324
+ },
+ {
+ "epoch": 18.405417212756664,
+ "grad_norm": 0.1860039383172989,
+ "learning_rate": 0.0006,
+ "loss": 3.9289052486419678,
+ "step": 1325
+ },
+ {
+ "epoch": 18.419397116644824,
+ "grad_norm": 0.19541646540164948,
+ "learning_rate": 0.0006,
+ "loss": 3.9527673721313477,
+ "step": 1326
+ },
+ {
+ "epoch": 18.433377020532983,
+ "grad_norm": 0.206914022564888,
+ "learning_rate": 0.0006,
+ "loss": 3.99316143989563,
+ "step": 1327
+ },
+ {
+ "epoch": 18.447356924421143,
+ "grad_norm": 0.209097757935524,
+ "learning_rate": 0.0006,
+ "loss": 3.978130340576172,
+ "step": 1328
+ },
+ {
+ "epoch": 18.461336828309307,
+ "grad_norm": 0.22163373231887817,
+ "learning_rate": 0.0006,
+ "loss": 3.951460361480713,
+ "step": 1329
+ },
+ {
+ "epoch": 18.475316732197467,
+ "grad_norm": 0.21446120738983154,
+ "learning_rate": 0.0006,
+ "loss": 3.963571071624756,
+ "step": 1330
+ },
+ {
+ "epoch": 18.489296636085626,
+ "grad_norm": 0.2341388761997223,
+ "learning_rate": 0.0006,
+ "loss": 4.010684013366699,
+ "step": 1331
+ },
+ {
+ "epoch": 18.503276539973786,
+ "grad_norm": 0.2433937042951584,
+ "learning_rate": 0.0006,
+ "loss": 3.987537384033203,
+ "step": 1332
+ },
+ {
+ "epoch": 18.51725644386195,
+ "grad_norm": 0.24916228652000427,
+ "learning_rate": 0.0006,
+ "loss": 3.953075647354126,
+ "step": 1333
+ },
+ {
+ "epoch": 18.53123634775011,
+ "grad_norm": 0.24542421102523804,
+ "learning_rate": 0.0006,
+ "loss": 3.9510841369628906,
+ "step": 1334
+ },
+ {
+ "epoch": 18.54521625163827,
+ "grad_norm": 0.2393690049648285,
+ "learning_rate": 0.0006,
+ "loss": 3.981747627258301,
+ "step": 1335
+ },
+ {
+ "epoch": 18.55919615552643,
+ "grad_norm": 0.22806711494922638,
+ "learning_rate": 0.0006,
+ "loss": 3.9714856147766113,
+ "step": 1336
+ },
+ {
+ "epoch": 18.573176059414592,
+ "grad_norm": 0.21948303282260895,
+ "learning_rate": 0.0006,
+ "loss": 3.9429898262023926,
+ "step": 1337
+ },
+ {
+ "epoch": 18.587155963302752,
+ "grad_norm": 0.21575778722763062,
+ "learning_rate": 0.0006,
+ "loss": 3.9639933109283447,
+ "step": 1338
+ },
+ {
+ "epoch": 18.601135867190912,
+ "grad_norm": 0.23370565474033356,
+ "learning_rate": 0.0006,
+ "loss": 3.9819254875183105,
+ "step": 1339
+ },
+ {
+ "epoch": 18.615115771079076,
+ "grad_norm": 0.2613106369972229,
+ "learning_rate": 0.0006,
+ "loss": 3.9654669761657715,
+ "step": 1340
+ },
+ {
+ "epoch": 18.629095674967235,
+ "grad_norm": 0.26682716608047485,
+ "learning_rate": 0.0006,
+ "loss": 3.9832968711853027,
+ "step": 1341
+ },
+ {
+ "epoch": 18.643075578855395,
+ "grad_norm": 0.24331490695476532,
+ "learning_rate": 0.0006,
+ "loss": 3.9926600456237793,
+ "step": 1342
+ },
+ {
+ "epoch": 18.657055482743555,
+ "grad_norm": 0.2459341287612915,
+ "learning_rate": 0.0006,
+ "loss": 3.9508986473083496,
+ "step": 1343
+ },
+ {
+ "epoch": 18.67103538663172,
+ "grad_norm": 0.26395753026008606,
+ "learning_rate": 0.0006,
+ "loss": 3.961359977722168,
+ "step": 1344
+ },
+ {
+ "epoch": 18.68501529051988,
+ "grad_norm": 0.26049068570137024,
+ "learning_rate": 0.0006,
+ "loss": 3.9763245582580566,
+ "step": 1345
+ },
+ {
+ "epoch": 18.698995194408038,
+ "grad_norm": 0.24018602073192596,
+ "learning_rate": 0.0006,
+ "loss": 3.951780319213867,
+ "step": 1346
+ },
+ {
+ "epoch": 18.712975098296198,
+ "grad_norm": 0.23886290192604065,
+ "learning_rate": 0.0006,
+ "loss": 3.9883017539978027,
+ "step": 1347
+ },
+ {
+ "epoch": 18.72695500218436,
+ "grad_norm": 0.2293774038553238,
+ "learning_rate": 0.0006,
+ "loss": 3.9852685928344727,
+ "step": 1348
+ },
+ {
+ "epoch": 18.74093490607252,
+ "grad_norm": 0.22172975540161133,
+ "learning_rate": 0.0006,
+ "loss": 3.967550277709961,
+ "step": 1349
+ },
+ {
+ "epoch": 18.75491480996068,
+ "grad_norm": 0.2170475423336029,
+ "learning_rate": 0.0006,
+ "loss": 3.9570775032043457,
+ "step": 1350
+ },
+ {
+ "epoch": 18.76889471384884,
+ "grad_norm": 0.21458806097507477,
+ "learning_rate": 0.0006,
+ "loss": 3.9461212158203125,
+ "step": 1351
+ },
+ {
+ "epoch": 18.782874617737004,
+ "grad_norm": 0.21101507544517517,
+ "learning_rate": 0.0006,
+ "loss": 3.984398365020752,
+ "step": 1352
+ },
+ {
+ "epoch": 18.796854521625164,
+ "grad_norm": 0.23480583727359772,
+ "learning_rate": 0.0006,
+ "loss": 3.950312614440918,
+ "step": 1353
+ },
+ {
+ "epoch": 18.810834425513324,
+ "grad_norm": 0.24728581309318542,
+ "learning_rate": 0.0006,
+ "loss": 3.9572393894195557,
+ "step": 1354
+ },
+ {
+ "epoch": 18.824814329401484,
+ "grad_norm": 0.26063451170921326,
+ "learning_rate": 0.0006,
+ "loss": 3.9653234481811523,
+ "step": 1355
+ },
+ {
+ "epoch": 18.838794233289647,
+ "grad_norm": 0.24679961800575256,
+ "learning_rate": 0.0006,
+ "loss": 3.9560108184814453,
+ "step": 1356
+ },
+ {
+ "epoch": 18.852774137177807,
+ "grad_norm": 0.23199526965618134,
+ "learning_rate": 0.0006,
+ "loss": 3.9948246479034424,
+ "step": 1357
+ },
+ {
+ "epoch": 18.866754041065967,
+ "grad_norm": 0.22619125247001648,
+ "learning_rate": 0.0006,
+ "loss": 3.9783573150634766,
+ "step": 1358
+ },
+ {
+ "epoch": 18.88073394495413,
+ "grad_norm": 0.25499874353408813,
+ "learning_rate": 0.0006,
+ "loss": 3.9674575328826904,
+ "step": 1359
+ },
+ {
+ "epoch": 18.89471384884229,
+ "grad_norm": 0.23961037397384644,
+ "learning_rate": 0.0006,
+ "loss": 3.969209909439087,
+ "step": 1360
+ },
+ {
+ "epoch": 18.90869375273045,
+ "grad_norm": 0.21039162576198578,
+ "learning_rate": 0.0006,
+ "loss": 3.978661060333252,
+ "step": 1361
+ },
+ {
+ "epoch": 18.92267365661861,
+ "grad_norm": 0.2297026664018631,
+ "learning_rate": 0.0006,
+ "loss": 3.9483046531677246,
+ "step": 1362
+ },
+ {
+ "epoch": 18.936653560506773,
+ "grad_norm": 0.26367098093032837,
+ "learning_rate": 0.0006,
+ "loss": 3.927133560180664,
+ "step": 1363
+ },
+ {
+ "epoch": 18.950633464394933,
+ "grad_norm": 0.26893147826194763,
+ "learning_rate": 0.0006,
+ "loss": 3.957932710647583,
+ "step": 1364
+ },
+ {
+ "epoch": 18.964613368283093,
+ "grad_norm": 0.27092233300209045,
+ "learning_rate": 0.0006,
+ "loss": 3.976621150970459,
+ "step": 1365
+ },
+ {
+ "epoch": 18.978593272171253,
+ "grad_norm": 0.2672635018825531,
+ "learning_rate": 0.0006,
+ "loss": 3.9577765464782715,
+ "step": 1366
+ },
+ {
+ "epoch": 18.992573176059416,
+ "grad_norm": 0.2721385359764099,
+ "learning_rate": 0.0006,
+ "loss": 3.986100196838379,
+ "step": 1367
+ },
+ {
+ "epoch": 19.0,
+ "grad_norm": 0.27648621797561646,
+ "learning_rate": 0.0006,
+ "loss": 3.9942402839660645,
+ "step": 1368
+ },
+ {
+ "epoch": 19.0,
+ "eval_loss": 4.180216312408447,
+ "eval_runtime": 44.0079,
+ "eval_samples_per_second": 55.49,
+ "eval_steps_per_second": 3.477,
+ "step": 1368
+ },
+ {
+ "epoch": 19.01397990388816,
+ "grad_norm": 0.2563098073005676,
+ "learning_rate": 0.0006,
+ "loss": 3.9267354011535645,
+ "step": 1369
+ },
+ {
+ "epoch": 19.027959807776323,
+ "grad_norm": 0.2531425952911377,
+ "learning_rate": 0.0006,
+ "loss": 3.9273324012756348,
+ "step": 1370
+ },
+ {
+ "epoch": 19.041939711664483,
+ "grad_norm": 0.27485427260398865,
+ "learning_rate": 0.0006,
+ "loss": 3.9542183876037598,
+ "step": 1371
+ },
+ {
+ "epoch": 19.055919615552643,
+ "grad_norm": 0.27509891986846924,
+ "learning_rate": 0.0006,
+ "loss": 3.921940326690674,
+ "step": 1372
+ },
+ {
+ "epoch": 19.069899519440803,
+ "grad_norm": 0.28154096007347107,
+ "learning_rate": 0.0006,
+ "loss": 3.926743984222412,
+ "step": 1373
+ },
+ {
+ "epoch": 19.083879423328966,
+ "grad_norm": 0.2749912738800049,
+ "learning_rate": 0.0006,
+ "loss": 3.9257748126983643,
+ "step": 1374
+ },
+ {
+ "epoch": 19.097859327217126,
+ "grad_norm": 0.26168501377105713,
+ "learning_rate": 0.0006,
+ "loss": 3.9403202533721924,
+ "step": 1375
+ },
+ {
+ "epoch": 19.111839231105286,
+ "grad_norm": 0.23410023748874664,
+ "learning_rate": 0.0006,
+ "loss": 3.935378313064575,
+ "step": 1376
+ },
+ {
+ "epoch": 19.125819134993446,
+ "grad_norm": 0.25790470838546753,
+ "learning_rate": 0.0006,
+ "loss": 3.946147918701172,
+ "step": 1377
+ },
+ {
+ "epoch": 19.13979903888161,
+ "grad_norm": 0.26704177260398865,
+ "learning_rate": 0.0006,
+ "loss": 3.9511594772338867,
+ "step": 1378
+ },
+ {
+ "epoch": 19.15377894276977,
+ "grad_norm": 0.2560667097568512,
+ "learning_rate": 0.0006,
+ "loss": 3.915806531906128,
+ "step": 1379
+ },
+ {
+ "epoch": 19.16775884665793,
+ "grad_norm": 0.24684149026870728,
+ "learning_rate": 0.0006,
+ "loss": 3.9162003993988037,
+ "step": 1380
+ },
+ {
+ "epoch": 19.18173875054609,
+ "grad_norm": 0.2097567766904831,
+ "learning_rate": 0.0006,
+ "loss": 3.915739059448242,
+ "step": 1381
+ },
+ {
+ "epoch": 19.195718654434252,
+ "grad_norm": 0.21646849811077118,
+ "learning_rate": 0.0006,
+ "loss": 3.9097084999084473,
+ "step": 1382
+ },
+ {
+ "epoch": 19.209698558322412,
+ "grad_norm": 0.20626980066299438,
+ "learning_rate": 0.0006,
+ "loss": 3.9541783332824707,
+ "step": 1383
+ },
+ {
+ "epoch": 19.22367846221057,
+ "grad_norm": 0.23362718522548676,
+ "learning_rate": 0.0006,
+ "loss": 3.950096845626831,
+ "step": 1384
+ },
+ {
+ "epoch": 19.23765836609873,
+ "grad_norm": 0.25402209162712097,
+ "learning_rate": 0.0006,
+ "loss": 3.927671432495117,
+ "step": 1385
+ },
+ {
+ "epoch": 19.251638269986895,
+ "grad_norm": 0.23714083433151245,
+ "learning_rate": 0.0006,
+ "loss": 3.939765453338623,
+ "step": 1386
+ },
+ {
+ "epoch": 19.265618173875055,
+ "grad_norm": 0.20895546674728394,
+ "learning_rate": 0.0006,
+ "loss": 3.9384806156158447,
+ "step": 1387
+ },
+ {
+ "epoch": 19.279598077763215,
+ "grad_norm": 0.21374300122261047,
+ "learning_rate": 0.0006,
+ "loss": 3.9523749351501465,
+ "step": 1388
+ },
+ {
+ "epoch": 19.293577981651374,
+ "grad_norm": 0.210394486784935,
+ "learning_rate": 0.0006,
+ "loss": 3.9540798664093018,
+ "step": 1389
+ },
+ {
+ "epoch": 19.307557885539538,
+ "grad_norm": 0.20646725594997406,
+ "learning_rate": 0.0006,
+ "loss": 3.9514098167419434,
+ "step": 1390
+ },
+ {
+ "epoch": 19.321537789427698,
+ "grad_norm": 0.21477538347244263,
+ "learning_rate": 0.0006,
+ "loss": 3.9369924068450928,
+ "step": 1391
+ },
+ {
+ "epoch": 19.335517693315857,
+ "grad_norm": 0.20431505143642426,
+ "learning_rate": 0.0006,
+ "loss": 3.9389796257019043,
+ "step": 1392
+ },
+ {
+ "epoch": 19.34949759720402,
+ "grad_norm": 0.19575877487659454,
+ "learning_rate": 0.0006,
+ "loss": 3.935976028442383,
+ "step": 1393
+ },
+ {
+ "epoch": 19.36347750109218,
+ "grad_norm": 0.20720405876636505,
+ "learning_rate": 0.0006,
+ "loss": 3.9670963287353516,
+ "step": 1394
+ },
+ {
+ "epoch": 19.37745740498034,
+ "grad_norm": 0.2173967957496643,
+ "learning_rate": 0.0006,
+ "loss": 3.903940439224243,
+ "step": 1395
+ },
+ {
+ "epoch": 19.3914373088685,
+ "grad_norm": 0.2180529683828354,
+ "learning_rate": 0.0006,
+ "loss": 3.8716301918029785,
+ "step": 1396
+ },
+ {
+ "epoch": 19.405417212756664,
+ "grad_norm": 0.20666591823101044,
+ "learning_rate": 0.0006,
+ "loss": 3.930936813354492,
+ "step": 1397
+ },
+ {
+ "epoch": 19.419397116644824,
+ "grad_norm": 0.20353034138679504,
+ "learning_rate": 0.0006,
+ "loss": 3.926954746246338,
+ "step": 1398
+ },
+ {
+ "epoch": 19.433377020532983,
+ "grad_norm": 0.22333289682865143,
+ "learning_rate": 0.0006,
+ "loss": 3.947504997253418,
+ "step": 1399
+ },
+ {
+ "epoch": 19.447356924421143,
+ "grad_norm": 0.21787697076797485,
+ "learning_rate": 0.0006,
+ "loss": 3.9325344562530518,
+ "step": 1400
+ },
+ {
+ "epoch": 19.461336828309307,
+ "grad_norm": 0.22805874049663544,
+ "learning_rate": 0.0006,
+ "loss": 3.9640727043151855,
+ "step": 1401
+ },
+ {
+ "epoch": 19.475316732197467,
+ "grad_norm": 0.22396457195281982,
+ "learning_rate": 0.0006,
+ "loss": 3.9537901878356934,
+ "step": 1402
+ },
+ {
+ "epoch": 19.489296636085626,
+ "grad_norm": 0.2333047240972519,
+ "learning_rate": 0.0006,
+ "loss": 3.935609817504883,
+ "step": 1403
+ },
+ {
+ "epoch": 19.503276539973786,
+ "grad_norm": 0.25063616037368774,
+ "learning_rate": 0.0006,
+ "loss": 3.9659228324890137,
+ "step": 1404
+ },
+ {
+ "epoch": 19.51725644386195,
+ "grad_norm": 0.29074087738990784,
+ "learning_rate": 0.0006,
+ "loss": 3.9552183151245117,
+ "step": 1405
+ },
+ {
+ "epoch": 19.53123634775011,
+ "grad_norm": 0.34876152873039246,
+ "learning_rate": 0.0006,
+ "loss": 3.976163387298584,
+ "step": 1406
+ },
+ {
+ "epoch": 19.54521625163827,
+ "grad_norm": 0.35026612877845764,
+ "learning_rate": 0.0006,
+ "loss": 3.961186408996582,
+ "step": 1407
+ },
+ {
+ "epoch": 19.55919615552643,
+ "grad_norm": 0.3199564218521118,
+ "learning_rate": 0.0006,
+ "loss": 3.9366297721862793,
+ "step": 1408
+ },
+ {
+ "epoch": 19.573176059414592,
+ "grad_norm": 0.2976185977458954,
+ "learning_rate": 0.0006,
+ "loss": 3.9502010345458984,
+ "step": 1409
+ },
+ {
+ "epoch": 19.587155963302752,
+ "grad_norm": 0.2951911687850952,
+ "learning_rate": 0.0006,
+ "loss": 3.9427943229675293,
+ "step": 1410
+ },
+ {
+ "epoch": 19.601135867190912,
+ "grad_norm": 0.27918702363967896,
+ "learning_rate": 0.0006,
+ "loss": 3.963700532913208,
+ "step": 1411
+ },
+ {
+ "epoch": 19.615115771079076,
+ "grad_norm": 0.26197490096092224,
+ "learning_rate": 0.0006,
+ "loss": 3.9636964797973633,
+ "step": 1412
+ },
+ {
+ "epoch": 19.629095674967235,
+ "grad_norm": 0.24242281913757324,
+ "learning_rate": 0.0006,
+ "loss": 3.961815595626831,
+ "step": 1413
+ },
+ {
+ "epoch": 19.643075578855395,
+ "grad_norm": 0.2606375515460968,
+ "learning_rate": 0.0006,
+ "loss": 3.946643352508545,
+ "step": 1414
+ },
+ {
+ "epoch": 19.657055482743555,
+ "grad_norm": 0.23353353142738342,
+ "learning_rate": 0.0006,
+ "loss": 3.973155975341797,
+ "step": 1415
+ },
+ {
+ "epoch": 19.67103538663172,
+ "grad_norm": 0.22872662544250488,
+ "learning_rate": 0.0006,
+ "loss": 3.9528894424438477,
+ "step": 1416
+ },
+ {
+ "epoch": 19.68501529051988,
+ "grad_norm": 0.24678432941436768,
+ "learning_rate": 0.0006,
+ "loss": 3.9313249588012695,
+ "step": 1417
+ },
+ {
+ "epoch": 19.698995194408038,
+ "grad_norm": 0.23895515501499176,
+ "learning_rate": 0.0006,
+ "loss": 3.944082498550415,
+ "step": 1418
+ },
+ {
+ "epoch": 19.712975098296198,
+ "grad_norm": 0.23649105429649353,
+ "learning_rate": 0.0006,
+ "loss": 3.962069034576416,
+ "step": 1419
+ },
+ {
+ "epoch": 19.72695500218436,
+ "grad_norm": 0.22031061351299286,
+ "learning_rate": 0.0006,
+ "loss": 3.912972927093506,
+ "step": 1420
+ },
+ {
+ "epoch": 19.74093490607252,
+ "grad_norm": 0.20231695473194122,
+ "learning_rate": 0.0006,
+ "loss": 3.964531421661377,
+ "step": 1421
+ },
+ {
+ "epoch": 19.75491480996068,
+ "grad_norm": 0.19980913400650024,
+ "learning_rate": 0.0006,
+ "loss": 3.9452600479125977,
+ "step": 1422
+ },
+ {
+ "epoch": 19.76889471384884,
+ "grad_norm": 0.21768775582313538,
+ "learning_rate": 0.0006,
+ "loss": 3.9214301109313965,
+ "step": 1423
+ },
+ {
+ "epoch": 19.782874617737004,
+ "grad_norm": 0.21287119388580322,
+ "learning_rate": 0.0006,
+ "loss": 3.9416494369506836,
+ "step": 1424
+ },
+ {
+ "epoch": 19.796854521625164,
+ "grad_norm": 0.21399827301502228,
+ "learning_rate": 0.0006,
+ "loss": 3.971010208129883,
+ "step": 1425
+ },
+ {
+ "epoch": 19.810834425513324,
+ "grad_norm": 0.1957658976316452,
+ "learning_rate": 0.0006,
+ "loss": 3.936331272125244,
+ "step": 1426
+ },
+ {
+ "epoch": 19.824814329401484,
+ "grad_norm": 0.19341488182544708,
+ "learning_rate": 0.0006,
+ "loss": 3.9321448802948,
+ "step": 1427
+ },
+ {
+ "epoch": 19.838794233289647,
+ "grad_norm": 0.18405723571777344,
+ "learning_rate": 0.0006,
+ "loss": 3.939542293548584,
+ "step": 1428
+ },
+ {
+ "epoch": 19.852774137177807,
+ "grad_norm": 0.19672836363315582,
+ "learning_rate": 0.0006,
+ "loss": 3.939652919769287,
+ "step": 1429
+ },
+ {
+ "epoch": 19.866754041065967,
+ "grad_norm": 0.1998940259218216,
+ "learning_rate": 0.0006,
+ "loss": 3.932892322540283,
+ "step": 1430
+ },
+ {
+ "epoch": 19.88073394495413,
+ "grad_norm": 0.2307668924331665,
+ "learning_rate": 0.0006,
+ "loss": 3.9402761459350586,
+ "step": 1431
+ },
+ {
+ "epoch": 19.89471384884229,
+ "grad_norm": 0.2531987726688385,
+ "learning_rate": 0.0006,
+ "loss": 3.9153199195861816,
+ "step": 1432
+ },
+ {
+ "epoch": 19.90869375273045,
+ "grad_norm": 0.2299388349056244,
+ "learning_rate": 0.0006,
+ "loss": 3.9569954872131348,
+ "step": 1433
+ },
+ {
+ "epoch": 19.92267365661861,
+ "grad_norm": 0.2503527104854584,
+ "learning_rate": 0.0006,
+ "loss": 3.9469428062438965,
+ "step": 1434
+ },
+ {
+ "epoch": 19.936653560506773,
+ "grad_norm": 0.25390249490737915,
+ "learning_rate": 0.0006,
+ "loss": 3.941803455352783,
+ "step": 1435
+ },
+ {
+ "epoch": 19.950633464394933,
+ "grad_norm": 0.2288687825202942,
+ "learning_rate": 0.0006,
+ "loss": 3.9385883808135986,
+ "step": 1436
+ },
+ {
+ "epoch": 19.964613368283093,
+ "grad_norm": 0.2231096774339676,
+ "learning_rate": 0.0006,
+ "loss": 3.9255237579345703,
+ "step": 1437
+ },
+ {
+ "epoch": 19.978593272171253,
+ "grad_norm": 0.20729343593120575,
+ "learning_rate": 0.0006,
+ "loss": 3.9443163871765137,
+ "step": 1438
+ },
+ {
+ "epoch": 19.992573176059416,
+ "grad_norm": 0.197743758559227,
+ "learning_rate": 0.0006,
+ "loss": 3.925455093383789,
+ "step": 1439
+ },
+ {
+ "epoch": 20.0,
+ "grad_norm": 0.23943661153316498,
+ "learning_rate": 0.0006,
+ "loss": 3.9458866119384766,
+ "step": 1440
+ },
+ {
+ "epoch": 20.0,
+ "eval_loss": 4.144192218780518,
+ "eval_runtime": 44.0278,
+ "eval_samples_per_second": 55.465,
+ "eval_steps_per_second": 3.475,
+ "step": 1440
+ },
+ {
+ "epoch": 20.01397990388816,
+ "grad_norm": 0.2032143622636795,
+ "learning_rate": 0.0006,
+ "loss": 3.9151499271392822,
+ "step": 1441
+ },
+ {
+ "epoch": 20.027959807776323,
+ "grad_norm": 0.20164789259433746,
+ "learning_rate": 0.0006,
+ "loss": 3.874115228652954,
+ "step": 1442
+ },
+ {
+ "epoch": 20.041939711664483,
+ "grad_norm": 0.20796619355678558,
+ "learning_rate": 0.0006,
+ "loss": 3.9090776443481445,
+ "step": 1443
+ },
+ {
+ "epoch": 20.055919615552643,
+ "grad_norm": 0.1999918520450592,
+ "learning_rate": 0.0006,
+ "loss": 3.926563262939453,
+ "step": 1444
+ },
+ {
+ "epoch": 20.069899519440803,
+ "grad_norm": 0.204790860414505,
+ "learning_rate": 0.0006,
+ "loss": 3.9088830947875977,
+ "step": 1445
+ },
+ {
+ "epoch": 20.083879423328966,
+ "grad_norm": 0.21507175266742706,
+ "learning_rate": 0.0006,
+ "loss": 3.916504383087158,
+ "step": 1446
+ },
+ {
+ "epoch": 20.097859327217126,
+ "grad_norm": 0.2398025095462799,
+ "learning_rate": 0.0006,
+ "loss": 3.9128990173339844,
+ "step": 1447
+ },
+ {
+ "epoch": 20.111839231105286,
+ "grad_norm": 0.26037144660949707,
+ "learning_rate": 0.0006,
+ "loss": 3.9125187397003174,
+ "step": 1448
+ },
+ {
+ "epoch": 20.125819134993446,
+ "grad_norm": 0.25564828515052795,
+ "learning_rate": 0.0006,
+ "loss": 3.891867160797119,
+ "step": 1449
+ },
+ {
+ "epoch": 20.13979903888161,
+ "grad_norm": 0.2767223119735718,
+ "learning_rate": 0.0006,
+ "loss": 3.9202775955200195,
+ "step": 1450
+ },
+ {
+ "epoch": 20.15377894276977,
+ "grad_norm": 0.27696558833122253,
+ "learning_rate": 0.0006,
+ "loss": 3.9231314659118652,
+ "step": 1451
+ },
+ {
+ "epoch": 20.16775884665793,
+ "grad_norm": 0.3054044246673584,
+ "learning_rate": 0.0006,
+ "loss": 3.918138027191162,
+ "step": 1452
+ },
+ {
+ "epoch": 20.18173875054609,
+ "grad_norm": 0.3018973171710968,
+ "learning_rate": 0.0006,
+ "loss": 3.890678882598877,
+ "step": 1453
+ },
+ {
+ "epoch": 20.195718654434252,
+ "grad_norm": 0.306232750415802,
+ "learning_rate": 0.0006,
+ "loss": 3.920753002166748,
+ "step": 1454
+ },
+ {
+ "epoch": 20.209698558322412,
+ "grad_norm": 0.29593729972839355,
+ "learning_rate": 0.0006,
+ "loss": 3.9455509185791016,
+ "step": 1455
+ },
+ {
+ "epoch": 20.22367846221057,
+ "grad_norm": 0.2937646210193634,
+ "learning_rate": 0.0006,
+ "loss": 3.9227709770202637,
+ "step": 1456
+ },
+ {
+ "epoch": 20.23765836609873,
+ "grad_norm": 0.26380231976509094,
+ "learning_rate": 0.0006,
+ "loss": 3.9097609519958496,
+ "step": 1457
+ },
+ {
+ "epoch": 20.251638269986895,
+ "grad_norm": 0.24992692470550537,
+ "learning_rate": 0.0006,
+ "loss": 3.9393627643585205,
+ "step": 1458
+ },
+ {
+ "epoch": 20.265618173875055,
+ "grad_norm": 0.270219087600708,
+ "learning_rate": 0.0006,
+ "loss": 3.929330348968506,
+ "step": 1459
+ },
+ {
+ "epoch": 20.279598077763215,
+ "grad_norm": 0.2860020399093628,
+ "learning_rate": 0.0006,
+ "loss": 3.8947913646698,
+ "step": 1460
+ },
+ {
+ "epoch": 20.293577981651374,
+ "grad_norm": 0.27494579553604126,
+ "learning_rate": 0.0006,
+ "loss": 3.9105992317199707,
+ "step": 1461
+ },
+ {
+ "epoch": 20.307557885539538,
+ "grad_norm": 0.26467713713645935,
+ "learning_rate": 0.0006,
+ "loss": 3.914632797241211,
+ "step": 1462
+ },
+ {
+ "epoch": 20.321537789427698,
+ "grad_norm": 0.25747713446617126,
+ "learning_rate": 0.0006,
+ "loss": 3.919846534729004,
+ "step": 1463
+ },
+ {
+ "epoch": 20.335517693315857,
+ "grad_norm": 0.24027711153030396,
+ "learning_rate": 0.0006,
+ "loss": 3.904740810394287,
+ "step": 1464
+ },
+ {
+ "epoch": 20.34949759720402,
+ "grad_norm": 0.24682414531707764,
+ "learning_rate": 0.0006,
+ "loss": 3.9190149307250977,
+ "step": 1465
+ },
+ {
+ "epoch": 20.36347750109218,
+ "grad_norm": 0.2619759440422058,
+ "learning_rate": 0.0006,
+ "loss": 3.9488329887390137,
+ "step": 1466
+ },
+ {
+ "epoch": 20.37745740498034,
+ "grad_norm": 0.2632448971271515,
+ "learning_rate": 0.0006,
+ "loss": 3.9216647148132324,
+ "step": 1467
+ },
+ {
+ "epoch": 20.3914373088685,
+ "grad_norm": 0.27569764852523804,
+ "learning_rate": 0.0006,
+ "loss": 3.9178895950317383,
+ "step": 1468
+ },
+ {
+ "epoch": 20.405417212756664,
+ "grad_norm": 0.2611774802207947,
+ "learning_rate": 0.0006,
+ "loss": 3.933730125427246,
+ "step": 1469
+ },
+ {
+ "epoch": 20.419397116644824,
+ "grad_norm": 0.2839447557926178,
+ "learning_rate": 0.0006,
+ "loss": 3.9261364936828613,
+ "step": 1470
+ },
+ {
+ "epoch": 20.433377020532983,
+ "grad_norm": 0.29006227850914,
+ "learning_rate": 0.0006,
+ "loss": 3.9157633781433105,
+ "step": 1471
+ },
+ {
+ "epoch": 20.447356924421143,
+ "grad_norm": 0.2809498906135559,
+ "learning_rate": 0.0006,
+ "loss": 3.9211745262145996,
+ "step": 1472
+ },
+ {
+ "epoch": 20.461336828309307,
+ "grad_norm": 0.27859532833099365,
+ "learning_rate": 0.0006,
+ "loss": 3.9115967750549316,
+ "step": 1473
+ },
+ {
+ "epoch": 20.475316732197467,
+ "grad_norm": 0.29114410281181335,
+ "learning_rate": 0.0006,
+ "loss": 3.9024441242218018,
+ "step": 1474
+ },
+ {
+ "epoch": 20.489296636085626,
+ "grad_norm": 0.2686930000782013,
+ "learning_rate": 0.0006,
+ "loss": 3.9497199058532715,
+ "step": 1475
+ },
+ {
+ "epoch": 20.503276539973786,
+ "grad_norm": 0.24120540916919708,
+ "learning_rate": 0.0006,
+ "loss": 3.9218955039978027,
+ "step": 1476
+ },
+ {
+ "epoch": 20.51725644386195,
+ "grad_norm": 0.23689547181129456,
+ "learning_rate": 0.0006,
+ "loss": 3.9410176277160645,
+ "step": 1477
+ },
+ {
+ "epoch": 20.53123634775011,
+ "grad_norm": 0.26382362842559814,
+ "learning_rate": 0.0006,
+ "loss": 3.8880343437194824,
+ "step": 1478
+ },
+ {
+ "epoch": 20.54521625163827,
+ "grad_norm": 0.21628661453723907,
+ "learning_rate": 0.0006,
+ "loss": 3.892622470855713,
+ "step": 1479
+ },
+ {
+ "epoch": 20.55919615552643,
+ "grad_norm": 0.19896996021270752,
+ "learning_rate": 0.0006,
+ "loss": 3.938734769821167,
+ "step": 1480
+ },
+ {
+ "epoch": 20.573176059414592,
+ "grad_norm": 0.20232494175434113,
+ "learning_rate": 0.0006,
+ "loss": 3.9197006225585938,
+ "step": 1481
+ },
+ {
+ "epoch": 20.587155963302752,
+ "grad_norm": 0.21807828545570374,
+ "learning_rate": 0.0006,
+ "loss": 3.9195618629455566,
+ "step": 1482
+ },
+ {
+ "epoch": 20.601135867190912,
+ "grad_norm": 0.21778680384159088,
+ "learning_rate": 0.0006,
+ "loss": 3.913395404815674,
+ "step": 1483
+ },
+ {
+ "epoch": 20.615115771079076,
+ "grad_norm": 0.21015185117721558,
+ "learning_rate": 0.0006,
+ "loss": 3.8858234882354736,
+ "step": 1484
+ },
+ {
+ "epoch": 20.629095674967235,
+ "grad_norm": 0.20131368935108185,
+ "learning_rate": 0.0006,
+ "loss": 3.927213430404663,
+ "step": 1485
+ },
+ {
+ "epoch": 20.643075578855395,
+ "grad_norm": 0.20746243000030518,
+ "learning_rate": 0.0006,
+ "loss": 3.913198471069336,
+ "step": 1486
+ },
+ {
+ "epoch": 20.657055482743555,
+ "grad_norm": 0.2024548053741455,
+ "learning_rate": 0.0006,
+ "loss": 3.923048257827759,
+ "step": 1487
+ },
+ {
+ "epoch": 20.67103538663172,
+ "grad_norm": 0.19735988974571228,
+ "learning_rate": 0.0006,
+ "loss": 3.9136500358581543,
+ "step": 1488
+ },
+ {
+ "epoch": 20.68501529051988,
+ "grad_norm": 0.19781625270843506,
+ "learning_rate": 0.0006,
+ "loss": 3.883793592453003,
+ "step": 1489
+ },
+ {
+ "epoch": 20.698995194408038,
+ "grad_norm": 0.1911996454000473,
+ "learning_rate": 0.0006,
+ "loss": 3.9078567028045654,
+ "step": 1490
+ },
+ {
+ "epoch": 20.712975098296198,
+ "grad_norm": 0.1989123821258545,
+ "learning_rate": 0.0006,
+ "loss": 3.9314043521881104,
+ "step": 1491
+ },
+ {
+ "epoch": 20.72695500218436,
+ "grad_norm": 0.18839342892169952,
+ "learning_rate": 0.0006,
+ "loss": 3.8955953121185303,
+ "step": 1492
+ },
+ {
+ "epoch": 20.74093490607252,
+ "grad_norm": 0.1944834142923355,
+ "learning_rate": 0.0006,
+ "loss": 3.9272377490997314,
+ "step": 1493
+ },
+ {
+ "epoch": 20.75491480996068,
+ "grad_norm": 0.20829126238822937,
+ "learning_rate": 0.0006,
+ "loss": 3.878857374191284,
+ "step": 1494
+ },
+ {
+ "epoch": 20.76889471384884,
+ "grad_norm": 0.21438424289226532,
+ "learning_rate": 0.0006,
+ "loss": 3.9155564308166504,
+ "step": 1495
+ },
+ {
+ "epoch": 20.782874617737004,
+ "grad_norm": 0.22309324145317078,
+ "learning_rate": 0.0006,
+ "loss": 3.9281692504882812,
+ "step": 1496
+ },
+ {
+ "epoch": 20.796854521625164,
+ "grad_norm": 0.2053767591714859,
+ "learning_rate": 0.0006,
+ "loss": 3.9096317291259766,
+ "step": 1497
+ },
+ {
+ "epoch": 20.810834425513324,
+ "grad_norm": 0.20429186522960663,
+ "learning_rate": 0.0006,
+ "loss": 3.9184865951538086,
+ "step": 1498
+ },
+ {
+ "epoch": 20.824814329401484,
+ "grad_norm": 0.21983473002910614,
+ "learning_rate": 0.0006,
+ "loss": 3.9130771160125732,
+ "step": 1499
+ },
+ {
+ "epoch": 20.838794233289647,
+ "grad_norm": 0.21649539470672607,
+ "learning_rate": 0.0006,
+ "loss": 3.921581268310547,
+ "step": 1500
+ },
+ {
+ "epoch": 20.852774137177807,
+ "grad_norm": 0.19645053148269653,
+ "learning_rate": 0.0006,
+ "loss": 3.966360092163086,
+ "step": 1501
+ },
+ {
+ "epoch": 20.866754041065967,
+ "grad_norm": 0.2126782387495041,
+ "learning_rate": 0.0006,
+ "loss": 3.9004554748535156,
+ "step": 1502
+ },
+ {
+ "epoch": 20.88073394495413,
+ "grad_norm": 0.22359658777713776,
+ "learning_rate": 0.0006,
+ "loss": 3.92336368560791,
+ "step": 1503
+ },
+ {
+ "epoch": 20.89471384884229,
+ "grad_norm": 0.2334042638540268,
+ "learning_rate": 0.0006,
+ "loss": 3.9188671112060547,
+ "step": 1504
+ },
+ {
+ "epoch": 20.90869375273045,
+ "grad_norm": 0.24595916271209717,
+ "learning_rate": 0.0006,
+ "loss": 3.9348371028900146,
+ "step": 1505
+ },
+ {
+ "epoch": 20.92267365661861,
+ "grad_norm": 0.24177910387516022,
+ "learning_rate": 0.0006,
+ "loss": 3.8796424865722656,
+ "step": 1506
+ },
+ {
+ "epoch": 20.936653560506773,
+ "grad_norm": 0.24193289875984192,
+ "learning_rate": 0.0006,
+ "loss": 3.892627716064453,
+ "step": 1507
+ },
+ {
+ "epoch": 20.950633464394933,
+ "grad_norm": 0.252849280834198,
+ "learning_rate": 0.0006,
+ "loss": 3.9300179481506348,
+ "step": 1508
+ },
+ {
+ "epoch": 20.964613368283093,
+ "grad_norm": 0.24933326244354248,
+ "learning_rate": 0.0006,
+ "loss": 3.9597225189208984,
+ "step": 1509
+ },
+ {
+ "epoch": 20.978593272171253,
+ "grad_norm": 0.23850969970226288,
+ "learning_rate": 0.0006,
+ "loss": 3.9027397632598877,
+ "step": 1510
+ },
+ {
+ "epoch": 20.992573176059416,
+ "grad_norm": 0.23298311233520508,
+ "learning_rate": 0.0006,
+ "loss": 3.9024105072021484,
+ "step": 1511
+ },
+ {
+ "epoch": 21.0,
+ "grad_norm": 0.2467455416917801,
+ "learning_rate": 0.0006,
+ "loss": 3.915929079055786,
+ "step": 1512
+ },
+ {
+ "epoch": 21.0,
+ "eval_loss": 4.136331081390381,
+ "eval_runtime": 43.9468,
+ "eval_samples_per_second": 55.567,
+ "eval_steps_per_second": 3.481,
+ "step": 1512
+ },
+ {
+ "epoch": 21.01397990388816,
+ "grad_norm": 0.2195885181427002,
+ "learning_rate": 0.0006,
+ "loss": 3.873412847518921,
+ "step": 1513
+ },
+ {
+ "epoch": 21.027959807776323,
+ "grad_norm": 0.24250614643096924,
+ "learning_rate": 0.0006,
+ "loss": 3.882302761077881,
+ "step": 1514
+ },
+ {
+ "epoch": 21.041939711664483,
+ "grad_norm": 0.249113991856575,
+ "learning_rate": 0.0006,
+ "loss": 3.9112048149108887,
+ "step": 1515
+ },
+ {
+ "epoch": 21.055919615552643,
+ "grad_norm": 0.25365301966667175,
+ "learning_rate": 0.0006,
+ "loss": 3.8625712394714355,
+ "step": 1516
+ },
+ {
+ "epoch": 21.069899519440803,
+ "grad_norm": 0.2218591272830963,
+ "learning_rate": 0.0006,
+ "loss": 3.876072406768799,
+ "step": 1517
+ },
+ {
+ "epoch": 21.083879423328966,
+ "grad_norm": 0.238582581281662,
+ "learning_rate": 0.0006,
+ "loss": 3.862060546875,
+ "step": 1518
+ },
+ {
+ "epoch": 21.097859327217126,
+ "grad_norm": 0.25051242113113403,
+ "learning_rate": 0.0006,
+ "loss": 3.905315399169922,
+ "step": 1519
+ },
+ {
+ "epoch": 21.111839231105286,
+ "grad_norm": 0.2391843944787979,
+ "learning_rate": 0.0006,
+ "loss": 3.909144401550293,
+ "step": 1520
+ },
+ {
+ "epoch": 21.125819134993446,
+ "grad_norm": 0.230543315410614,
+ "learning_rate": 0.0006,
+ "loss": 3.8856799602508545,
+ "step": 1521
+ },
+ {
+ "epoch": 21.13979903888161,
+ "grad_norm": 0.24165484309196472,
+ "learning_rate": 0.0006,
+ "loss": 3.893883228302002,
+ "step": 1522
+ },
+ {
+ "epoch": 21.15377894276977,
+ "grad_norm": 0.24657143652439117,
+ "learning_rate": 0.0006,
+ "loss": 3.901129722595215,
+ "step": 1523
+ },
+ {
+ "epoch": 21.16775884665793,
+ "grad_norm": 0.2659998834133148,
+ "learning_rate": 0.0006,
+ "loss": 3.910468101501465,
+ "step": 1524
+ },
+ {
+ "epoch": 21.18173875054609,
+ "grad_norm": 0.2673095166683197,
+ "learning_rate": 0.0006,
+ "loss": 3.917454242706299,
+ "step": 1525
+ },
+ {
+ "epoch": 21.195718654434252,
+ "grad_norm": 0.22122322022914886,
+ "learning_rate": 0.0006,
+ "loss": 3.9017257690429688,
+ "step": 1526
+ },
+ {
+ "epoch": 21.209698558322412,
+ "grad_norm": 0.21882867813110352,
+ "learning_rate": 0.0006,
+ "loss": 3.8605496883392334,
+ "step": 1527
+ },
+ {
+ "epoch": 21.22367846221057,
+ "grad_norm": 0.22335563600063324,
+ "learning_rate": 0.0006,
+ "loss": 3.88120174407959,
+ "step": 1528
+ },
+ {
+ "epoch": 21.23765836609873,
+ "grad_norm": 0.22973211109638214,
+ "learning_rate": 0.0006,
+ "loss": 3.8636834621429443,
+ "step": 1529
+ },
+ {
+ "epoch": 21.251638269986895,
+ "grad_norm": 0.2410288006067276,
+ "learning_rate": 0.0006,
+ "loss": 3.8698177337646484,
+ "step": 1530
+ },
+ {
+ "epoch": 21.265618173875055,
+ "grad_norm": 0.2454768717288971,
+ "learning_rate": 0.0006,
+ "loss": 3.905341148376465,
+ "step": 1531
+ },
+ {
+ "epoch": 21.279598077763215,
+ "grad_norm": 0.2271580696105957,
+ "learning_rate": 0.0006,
+ "loss": 3.864063262939453,
+ "step": 1532
+ },
+ {
+ "epoch": 21.293577981651374,
+ "grad_norm": 0.2200947403907776,
+ "learning_rate": 0.0006,
+ "loss": 3.8889589309692383,
+ "step": 1533
+ },
+ {
+ "epoch": 21.307557885539538,
+ "grad_norm": 0.2180824875831604,
+ "learning_rate": 0.0006,
+ "loss": 3.8873472213745117,
+ "step": 1534
+ },
+ {
+ "epoch": 21.321537789427698,
+ "grad_norm": 0.214975506067276,
+ "learning_rate": 0.0006,
+ "loss": 3.882307529449463,
+ "step": 1535
+ },
+ {
+ "epoch": 21.335517693315857,
+ "grad_norm": 0.21411260962486267,
+ "learning_rate": 0.0006,
+ "loss": 3.8861560821533203,
+ "step": 1536
+ },
+ {
+ "epoch": 21.34949759720402,
+ "grad_norm": 0.22635889053344727,
+ "learning_rate": 0.0006,
+ "loss": 3.9174342155456543,
+ "step": 1537
+ },
+ {
+ "epoch": 21.36347750109218,
+ "grad_norm": 0.22700625658035278,
+ "learning_rate": 0.0006,
+ "loss": 3.890416383743286,
+ "step": 1538
+ },
+ {
+ "epoch": 21.37745740498034,
+ "grad_norm": 0.2106025069952011,
+ "learning_rate": 0.0006,
+ "loss": 3.8672406673431396,
+ "step": 1539
+ },
+ {
+ "epoch": 21.3914373088685,
+ "grad_norm": 0.22994661331176758,
+ "learning_rate": 0.0006,
+ "loss": 3.893190383911133,
+ "step": 1540
+ },
+ {
+ "epoch": 21.405417212756664,
+ "grad_norm": 0.24701105058193207,
+ "learning_rate": 0.0006,
+ "loss": 3.898078441619873,
+ "step": 1541
+ },
+ {
+ "epoch": 21.419397116644824,
+ "grad_norm": 0.26914113759994507,
+ "learning_rate": 0.0006,
+ "loss": 3.905871868133545,
+ "step": 1542
+ },
+ {
+ "epoch": 21.433377020532983,
+ "grad_norm": 0.2904224097728729,
+ "learning_rate": 0.0006,
+ "loss": 3.8919103145599365,
+ "step": 1543
+ },
+ {
+ "epoch": 21.447356924421143,
+ "grad_norm": 0.2911844551563263,
+ "learning_rate": 0.0006,
+ "loss": 3.9073286056518555,
+ "step": 1544
+ },
+ {
+ "epoch": 21.461336828309307,
+ "grad_norm": 0.2742345929145813,
+ "learning_rate": 0.0006,
+ "loss": 3.9075546264648438,
+ "step": 1545
+ },
+ {
+ "epoch": 21.475316732197467,
+ "grad_norm": 0.2341093122959137,
+ "learning_rate": 0.0006,
+ "loss": 3.9232025146484375,
+ "step": 1546
+ },
+ {
+ "epoch": 21.489296636085626,
+ "grad_norm": 0.22808541357517242,
+ "learning_rate": 0.0006,
+ "loss": 3.9168174266815186,
+ "step": 1547
+ },
+ {
+ "epoch": 21.503276539973786,
+ "grad_norm": 0.23049889504909515,
+ "learning_rate": 0.0006,
+ "loss": 3.8850595951080322,
+ "step": 1548
+ },
+ {
+ "epoch": 21.51725644386195,
+ "grad_norm": 0.21519650518894196,
+ "learning_rate": 0.0006,
+ "loss": 3.891313076019287,
+ "step": 1549
+ },
+ {
+ "epoch": 21.53123634775011,
+ "grad_norm": 0.20999883115291595,
+ "learning_rate": 0.0006,
+ "loss": 3.894439220428467,
+ "step": 1550
+ },
+ {
+ "epoch": 21.54521625163827,
+ "grad_norm": 0.19641105830669403,
+ "learning_rate": 0.0006,
+ "loss": 3.894871473312378,
+ "step": 1551
+ },
+ {
+ "epoch": 21.55919615552643,
+ "grad_norm": 0.19108249247074127,
+ "learning_rate": 0.0006,
+ "loss": 3.905968189239502,
+ "step": 1552
+ },
+ {
+ "epoch": 21.573176059414592,
+ "grad_norm": 0.20222234725952148,
+ "learning_rate": 0.0006,
+ "loss": 3.90565824508667,
+ "step": 1553
+ },
+ {
+ "epoch": 21.587155963302752,
+ "grad_norm": 0.20620177686214447,
+ "learning_rate": 0.0006,
+ "loss": 3.9103245735168457,
+ "step": 1554
+ },
+ {
+ "epoch": 21.601135867190912,
+ "grad_norm": 0.2149713784456253,
+ "learning_rate": 0.0006,
+ "loss": 3.8864927291870117,
+ "step": 1555
+ },
+ {
+ "epoch": 21.615115771079076,
+ "grad_norm": 0.2354084551334381,
+ "learning_rate": 0.0006,
+ "loss": 3.905095100402832,
+ "step": 1556
+ },
+ {
+ "epoch": 21.629095674967235,
+ "grad_norm": 0.23949941992759705,
+ "learning_rate": 0.0006,
+ "loss": 3.901803493499756,
+ "step": 1557
+ },
+ {
+ "epoch": 21.643075578855395,
+ "grad_norm": 0.22914277017116547,
+ "learning_rate": 0.0006,
+ "loss": 3.876044273376465,
+ "step": 1558
+ },
+ {
+ "epoch": 21.657055482743555,
+ "grad_norm": 0.2363225370645523,
+ "learning_rate": 0.0006,
+ "loss": 3.910841703414917,
+ "step": 1559
+ },
+ {
+ "epoch": 21.67103538663172,
+ "grad_norm": 0.2635626792907715,
+ "learning_rate": 0.0006,
+ "loss": 3.847407579421997,
+ "step": 1560
+ },
+ {
+ "epoch": 21.68501529051988,
+ "grad_norm": 0.2499786615371704,
+ "learning_rate": 0.0006,
+ "loss": 3.8667140007019043,
+ "step": 1561
+ },
+ {
+ "epoch": 21.698995194408038,
+ "grad_norm": 0.21609611809253693,
+ "learning_rate": 0.0006,
+ "loss": 3.895470142364502,
+ "step": 1562
+ },
+ {
+ "epoch": 21.712975098296198,
+ "grad_norm": 0.2466774582862854,
+ "learning_rate": 0.0006,
+ "loss": 3.8853235244750977,
+ "step": 1563
+ },
+ {
+ "epoch": 21.72695500218436,
+ "grad_norm": 0.23791883885860443,
+ "learning_rate": 0.0006,
+ "loss": 3.899418354034424,
+ "step": 1564
+ },
+ {
+ "epoch": 21.74093490607252,
+ "grad_norm": 0.2048920840024948,
+ "learning_rate": 0.0006,
+ "loss": 3.8992419242858887,
+ "step": 1565
+ },
+ {
+ "epoch": 21.75491480996068,
+ "grad_norm": 0.22266621887683868,
+ "learning_rate": 0.0006,
+ "loss": 3.885765552520752,
+ "step": 1566
+ },
+ {
+ "epoch": 21.76889471384884,
+ "grad_norm": 0.2508748769760132,
+ "learning_rate": 0.0006,
+ "loss": 3.8797037601470947,
+ "step": 1567
+ },
+ {
+ "epoch": 21.782874617737004,
+ "grad_norm": 0.27245673537254333,
+ "learning_rate": 0.0006,
+ "loss": 3.8743176460266113,
+ "step": 1568
+ },
+ {
+ "epoch": 21.796854521625164,
+ "grad_norm": 0.25503191351890564,
+ "learning_rate": 0.0006,
+ "loss": 3.868906259536743,
+ "step": 1569
+ },
+ {
+ "epoch": 21.810834425513324,
+ "grad_norm": 0.22984394431114197,
+ "learning_rate": 0.0006,
+ "loss": 3.9051015377044678,
+ "step": 1570
+ },
+ {
+ "epoch": 21.824814329401484,
+ "grad_norm": 0.2411898821592331,
+ "learning_rate": 0.0006,
+ "loss": 3.8911490440368652,
+ "step": 1571
+ },
+ {
+ "epoch": 21.838794233289647,
+ "grad_norm": 0.22609318792819977,
+ "learning_rate": 0.0006,
+ "loss": 3.894839286804199,
+ "step": 1572
+ },
+ {
+ "epoch": 21.852774137177807,
+ "grad_norm": 0.21904583275318146,
+ "learning_rate": 0.0006,
+ "loss": 3.9314537048339844,
+ "step": 1573
+ },
+ {
+ "epoch": 21.866754041065967,
+ "grad_norm": 0.21869723498821259,
+ "learning_rate": 0.0006,
+ "loss": 3.9141433238983154,
+ "step": 1574
+ },
+ {
+ "epoch": 21.88073394495413,
+ "grad_norm": 0.21682019531726837,
+ "learning_rate": 0.0006,
+ "loss": 3.867898464202881,
+ "step": 1575
+ },
+ {
+ "epoch": 21.89471384884229,
+ "grad_norm": 0.2211964726448059,
+ "learning_rate": 0.0006,
+ "loss": 3.8892226219177246,
+ "step": 1576
+ },
+ {
+ "epoch": 21.90869375273045,
+ "grad_norm": 0.2097381353378296,
+ "learning_rate": 0.0006,
+ "loss": 3.9194154739379883,
+ "step": 1577
+ },
+ {
+ "epoch": 21.92267365661861,
+ "grad_norm": 0.21229565143585205,
+ "learning_rate": 0.0006,
+ "loss": 3.924694538116455,
+ "step": 1578
+ },
+ {
+ "epoch": 21.936653560506773,
+ "grad_norm": 0.2186083346605301,
+ "learning_rate": 0.0006,
+ "loss": 3.904440402984619,
+ "step": 1579
+ },
+ {
+ "epoch": 21.950633464394933,
+ "grad_norm": 0.21112321317195892,
+ "learning_rate": 0.0006,
+ "loss": 3.905674934387207,
+ "step": 1580
+ },
+ {
+ "epoch": 21.964613368283093,
+ "grad_norm": 0.20867373049259186,
+ "learning_rate": 0.0006,
+ "loss": 3.8761563301086426,
+ "step": 1581
+ },
+ {
+ "epoch": 21.978593272171253,
+ "grad_norm": 0.21640732884407043,
+ "learning_rate": 0.0006,
+ "loss": 3.871950149536133,
+ "step": 1582
+ },
+ {
+ "epoch": 21.992573176059416,
+ "grad_norm": 0.21920442581176758,
+ "learning_rate": 0.0006,
+ "loss": 3.8853464126586914,
+ "step": 1583
+ },
+ {
+ "epoch": 22.0,
+ "grad_norm": 0.24132665991783142,
+ "learning_rate": 0.0006,
+ "loss": 3.9012184143066406,
+ "step": 1584
+ },
+ {
+ "epoch": 22.0,
+ "eval_loss": 4.108598232269287,
+ "eval_runtime": 44.0434,
+ "eval_samples_per_second": 55.445,
+ "eval_steps_per_second": 3.474,
+ "step": 1584
+ },
+ {
+ "epoch": 22.01397990388816,
+ "grad_norm": 0.21989449858665466,
+ "learning_rate": 0.0006,
+ "loss": 3.8657469749450684,
+ "step": 1585
+ },
+ {
+ "epoch": 22.027959807776323,
+ "grad_norm": 0.20416802167892456,
+ "learning_rate": 0.0006,
+ "loss": 3.8682117462158203,
+ "step": 1586
+ },
+ {
+ "epoch": 22.041939711664483,
+ "grad_norm": 0.20651975274085999,
+ "learning_rate": 0.0006,
+ "loss": 3.8501222133636475,
+ "step": 1587
+ },
+ {
+ "epoch": 22.055919615552643,
+ "grad_norm": 0.22987176477909088,
+ "learning_rate": 0.0006,
+ "loss": 3.8830955028533936,
+ "step": 1588
+ },
+ {
+ "epoch": 22.069899519440803,
+ "grad_norm": 0.23308858275413513,
+ "learning_rate": 0.0006,
+ "loss": 3.8659040927886963,
+ "step": 1589
+ },
+ {
+ "epoch": 22.083879423328966,
+ "grad_norm": 0.2144266963005066,
+ "learning_rate": 0.0006,
+ "loss": 3.8311047554016113,
+ "step": 1590
+ },
+ {
+ "epoch": 22.097859327217126,
+ "grad_norm": 0.2052636295557022,
+ "learning_rate": 0.0006,
+ "loss": 3.8700156211853027,
+ "step": 1591
+ },
+ {
+ "epoch": 22.111839231105286,
+ "grad_norm": 0.22792384028434753,
+ "learning_rate": 0.0006,
+ "loss": 3.8799097537994385,
+ "step": 1592
+ },
+ {
+ "epoch": 22.125819134993446,
+ "grad_norm": 0.2533944249153137,
+ "learning_rate": 0.0006,
+ "loss": 3.874959945678711,
+ "step": 1593
+ },
+ {
+ "epoch": 22.13979903888161,
+ "grad_norm": 0.27126258611679077,
+ "learning_rate": 0.0006,
+ "loss": 3.863774299621582,
+ "step": 1594
+ },
+ {
+ "epoch": 22.15377894276977,
+ "grad_norm": 0.2634040415287018,
+ "learning_rate": 0.0006,
+ "loss": 3.8876869678497314,
+ "step": 1595
+ },
+ {
+ "epoch": 22.16775884665793,
+ "grad_norm": 0.267987459897995,
+ "learning_rate": 0.0006,
+ "loss": 3.871776819229126,
+ "step": 1596
+ },
+ {
+ "epoch": 22.18173875054609,
+ "grad_norm": 0.2972337305545807,
+ "learning_rate": 0.0006,
+ "loss": 3.8453969955444336,
+ "step": 1597
+ },
+ {
+ "epoch": 22.195718654434252,
+ "grad_norm": 0.3012159764766693,
+ "learning_rate": 0.0006,
+ "loss": 3.8774254322052,
+ "step": 1598
+ },
+ {
+ "epoch": 22.209698558322412,
+ "grad_norm": 0.27275875210762024,
+ "learning_rate": 0.0006,
+ "loss": 3.8558950424194336,
+ "step": 1599
+ },
+ {
+ "epoch": 22.22367846221057,
+ "grad_norm": 0.2817993462085724,
+ "learning_rate": 0.0006,
+ "loss": 3.872211217880249,
+ "step": 1600
+ },
+ {
+ "epoch": 22.23765836609873,
+ "grad_norm": 0.28823208808898926,
+ "learning_rate": 0.0006,
+ "loss": 3.847616672515869,
+ "step": 1601
+ },
+ {
+ "epoch": 22.251638269986895,
+ "grad_norm": 0.2646387815475464,
+ "learning_rate": 0.0006,
+ "loss": 3.8993802070617676,
+ "step": 1602
+ },
+ {
+ "epoch": 22.265618173875055,
+ "grad_norm": 0.27664077281951904,
+ "learning_rate": 0.0006,
+ "loss": 3.858553409576416,
+ "step": 1603
+ },
+ {
+ "epoch": 22.279598077763215,
+ "grad_norm": 0.27708905935287476,
+ "learning_rate": 0.0006,
+ "loss": 3.8691039085388184,
+ "step": 1604
+ },
+ {
+ "epoch": 22.293577981651374,
+ "grad_norm": 0.3045521378517151,
+ "learning_rate": 0.0006,
+ "loss": 3.8721439838409424,
+ "step": 1605
+ },
+ {
+ "epoch": 22.307557885539538,
+ "grad_norm": 0.3481914699077606,
+ "learning_rate": 0.0006,
+ "loss": 3.894503593444824,
+ "step": 1606
+ },
+ {
+ "epoch": 22.321537789427698,
+ "grad_norm": 0.3298046588897705,
+ "learning_rate": 0.0006,
+ "loss": 3.8420844078063965,
+ "step": 1607
+ },
+ {
+ "epoch": 22.335517693315857,
+ "grad_norm": 0.24967724084854126,
+ "learning_rate": 0.0006,
+ "loss": 3.8892619609832764,
+ "step": 1608
+ },
+ {
+ "epoch": 22.34949759720402,
+ "grad_norm": 0.22645241022109985,
+ "learning_rate": 0.0006,
+ "loss": 3.873265504837036,
+ "step": 1609
+ },
+ {
+ "epoch": 22.36347750109218,
+ "grad_norm": 0.22813954949378967,
+ "learning_rate": 0.0006,
+ "loss": 3.8658013343811035,
+ "step": 1610
+ },
+ {
+ "epoch": 22.37745740498034,
+ "grad_norm": 0.23825274407863617,
+ "learning_rate": 0.0006,
+ "loss": 3.885456085205078,
+ "step": 1611
+ },
+ {
+ "epoch": 22.3914373088685,
+ "grad_norm": 0.23612336814403534,
+ "learning_rate": 0.0006,
+ "loss": 3.851841449737549,
+ "step": 1612
+ },
+ {
+ "epoch": 22.405417212756664,
+ "grad_norm": 0.23851265013217926,
+ "learning_rate": 0.0006,
+ "loss": 3.8711647987365723,
+ "step": 1613
+ },
+ {
+ "epoch": 22.419397116644824,
+ "grad_norm": 0.22977286577224731,
+ "learning_rate": 0.0006,
+ "loss": 3.848539113998413,
+ "step": 1614
+ },
+ {
+ "epoch": 22.433377020532983,
+ "grad_norm": 0.20970143377780914,
+ "learning_rate": 0.0006,
+ "loss": 3.8709521293640137,
+ "step": 1615
+ },
+ {
+ "epoch": 22.447356924421143,
+ "grad_norm": 0.20714804530143738,
+ "learning_rate": 0.0006,
+ "loss": 3.875060558319092,
+ "step": 1616
+ },
+ {
+ "epoch": 22.461336828309307,
+ "grad_norm": 0.18881355226039886,
+ "learning_rate": 0.0006,
+ "loss": 3.8744640350341797,
+ "step": 1617
+ },
+ {
+ "epoch": 22.475316732197467,
+ "grad_norm": 0.1928759068250656,
+ "learning_rate": 0.0006,
+ "loss": 3.867971420288086,
+ "step": 1618
+ },
+ {
+ "epoch": 22.489296636085626,
+ "grad_norm": 0.18614749610424042,
+ "learning_rate": 0.0006,
+ "loss": 3.8738222122192383,
+ "step": 1619
+ },
+ {
+ "epoch": 22.503276539973786,
+ "grad_norm": 0.18614931404590607,
+ "learning_rate": 0.0006,
+ "loss": 3.8470513820648193,
+ "step": 1620
+ },
+ {
+ "epoch": 22.51725644386195,
+ "grad_norm": 0.17805059254169464,
+ "learning_rate": 0.0006,
+ "loss": 3.866396903991699,
+ "step": 1621
+ },
+ {
+ "epoch": 22.53123634775011,
+ "grad_norm": 0.16941314935684204,
+ "learning_rate": 0.0006,
+ "loss": 3.856832265853882,
+ "step": 1622
+ },
+ {
+ "epoch": 22.54521625163827,
+ "grad_norm": 0.1802310198545456,
+ "learning_rate": 0.0006,
+ "loss": 3.885653018951416,
+ "step": 1623
+ },
+ {
+ "epoch": 22.55919615552643,
+ "grad_norm": 0.1854856163263321,
+ "learning_rate": 0.0006,
+ "loss": 3.8779640197753906,
+ "step": 1624
+ },
+ {
+ "epoch": 22.573176059414592,
+ "grad_norm": 0.18765869736671448,
+ "learning_rate": 0.0006,
+ "loss": 3.8449032306671143,
+ "step": 1625
+ },
+ {
+ "epoch": 22.587155963302752,
+ "grad_norm": 0.1907789707183838,
+ "learning_rate": 0.0006,
+ "loss": 3.863029718399048,
+ "step": 1626
+ },
+ {
+ "epoch": 22.601135867190912,
+ "grad_norm": 0.19285395741462708,
+ "learning_rate": 0.0006,
+ "loss": 3.880145788192749,
+ "step": 1627
+ },
+ {
+ "epoch": 22.615115771079076,
+ "grad_norm": 0.19229751825332642,
+ "learning_rate": 0.0006,
+ "loss": 3.8521225452423096,
+ "step": 1628
+ },
+ {
+ "epoch": 22.629095674967235,
+ "grad_norm": 0.191694438457489,
+ "learning_rate": 0.0006,
+ "loss": 3.899827003479004,
+ "step": 1629
+ },
+ {
+ "epoch": 22.643075578855395,
+ "grad_norm": 0.20143048465251923,
+ "learning_rate": 0.0006,
+ "loss": 3.862064838409424,
+ "step": 1630
+ },
+ {
+ "epoch": 22.657055482743555,
+ "grad_norm": 0.1959840953350067,
+ "learning_rate": 0.0006,
+ "loss": 3.8955392837524414,
+ "step": 1631
+ },
+ {
+ "epoch": 22.67103538663172,
+ "grad_norm": 0.21454884111881256,
+ "learning_rate": 0.0006,
+ "loss": 3.8503167629241943,
+ "step": 1632
+ },
+ {
+ "epoch": 22.68501529051988,
+ "grad_norm": 0.21748484671115875,
+ "learning_rate": 0.0006,
+ "loss": 3.897134304046631,
+ "step": 1633
+ },
+ {
+ "epoch": 22.698995194408038,
+ "grad_norm": 0.21204186975955963,
+ "learning_rate": 0.0006,
+ "loss": 3.9292588233947754,
+ "step": 1634
+ },
+ {
+ "epoch": 22.712975098296198,
+ "grad_norm": 0.2112748771905899,
+ "learning_rate": 0.0006,
+ "loss": 3.89798641204834,
+ "step": 1635
+ },
+ {
+ "epoch": 22.72695500218436,
+ "grad_norm": 0.188576802611351,
+ "learning_rate": 0.0006,
+ "loss": 3.85627818107605,
+ "step": 1636
+ },
+ {
+ "epoch": 22.74093490607252,
+ "grad_norm": 0.17755994200706482,
+ "learning_rate": 0.0006,
+ "loss": 3.8480074405670166,
+ "step": 1637
+ },
+ {
+ "epoch": 22.75491480996068,
+ "grad_norm": 0.18037520349025726,
+ "learning_rate": 0.0006,
+ "loss": 3.8800172805786133,
+ "step": 1638
+ },
+ {
+ "epoch": 22.76889471384884,
+ "grad_norm": 0.19205765426158905,
+ "learning_rate": 0.0006,
+ "loss": 3.8658275604248047,
+ "step": 1639
+ },
+ {
+ "epoch": 22.782874617737004,
+ "grad_norm": 0.21801964938640594,
+ "learning_rate": 0.0006,
+ "loss": 3.8999452590942383,
+ "step": 1640
+ },
+ {
+ "epoch": 22.796854521625164,
+ "grad_norm": 0.23586086928844452,
+ "learning_rate": 0.0006,
+ "loss": 3.8660664558410645,
+ "step": 1641
+ },
+ {
+ "epoch": 22.810834425513324,
+ "grad_norm": 0.22289055585861206,
+ "learning_rate": 0.0006,
+ "loss": 3.86102557182312,
+ "step": 1642
+ },
+ {
+ "epoch": 22.824814329401484,
+ "grad_norm": 0.20695745944976807,
+ "learning_rate": 0.0006,
+ "loss": 3.8336222171783447,
+ "step": 1643
+ },
+ {
+ "epoch": 22.838794233289647,
+ "grad_norm": 0.2157406210899353,
+ "learning_rate": 0.0006,
+ "loss": 3.8923370838165283,
+ "step": 1644
+ },
+ {
+ "epoch": 22.852774137177807,
+ "grad_norm": 0.2326202690601349,
+ "learning_rate": 0.0006,
+ "loss": 3.8841443061828613,
+ "step": 1645
+ },
+ {
+ "epoch": 22.866754041065967,
+ "grad_norm": 0.2228803187608719,
+ "learning_rate": 0.0006,
+ "loss": 3.8791375160217285,
+ "step": 1646
+ },
+ {
+ "epoch": 22.88073394495413,
+ "grad_norm": 0.228999063372612,
+ "learning_rate": 0.0006,
+ "loss": 3.9005866050720215,
+ "step": 1647
+ },
+ {
+ "epoch": 22.89471384884229,
+ "grad_norm": 0.19673815369606018,
+ "learning_rate": 0.0006,
+ "loss": 3.8954291343688965,
+ "step": 1648
+ },
+ {
+ "epoch": 22.90869375273045,
+ "grad_norm": 0.1862584501504898,
+ "learning_rate": 0.0006,
+ "loss": 3.8591439723968506,
+ "step": 1649
+ },
+ {
+ "epoch": 22.92267365661861,
+ "grad_norm": 0.21360838413238525,
+ "learning_rate": 0.0006,
+ "loss": 3.862949848175049,
+ "step": 1650
+ },
+ {
+ "epoch": 22.936653560506773,
+ "grad_norm": 0.22538702189922333,
+ "learning_rate": 0.0006,
+ "loss": 3.8466529846191406,
+ "step": 1651
+ },
+ {
+ "epoch": 22.950633464394933,
+ "grad_norm": 0.21452727913856506,
+ "learning_rate": 0.0006,
+ "loss": 3.890007495880127,
+ "step": 1652
+ },
+ {
+ "epoch": 22.964613368283093,
+ "grad_norm": 0.21283482015132904,
+ "learning_rate": 0.0006,
+ "loss": 3.8820929527282715,
+ "step": 1653
+ },
+ {
+ "epoch": 22.978593272171253,
+ "grad_norm": 0.2035825103521347,
+ "learning_rate": 0.0006,
+ "loss": 3.8663241863250732,
+ "step": 1654
+ },
+ {
+ "epoch": 22.992573176059416,
+ "grad_norm": 0.22431661188602448,
+ "learning_rate": 0.0006,
+ "loss": 3.88238525390625,
+ "step": 1655
+ },
+ {
+ "epoch": 23.0,
+ "grad_norm": 0.2619943916797638,
+ "learning_rate": 0.0006,
+ "loss": 3.8482635021209717,
+ "step": 1656
+ },
+ {
+ "epoch": 23.0,
+ "eval_loss": 4.099980354309082,
+ "eval_runtime": 44.1311,
+ "eval_samples_per_second": 55.335,
+ "eval_steps_per_second": 3.467,
+ "step": 1656
+ },
+ {
+ "epoch": 23.01397990388816,
+ "grad_norm": 0.24712848663330078,
+ "learning_rate": 0.0006,
+ "loss": 3.836700916290283,
+ "step": 1657
+ },
+ {
+ "epoch": 23.027959807776323,
+ "grad_norm": 0.28568798303604126,
+ "learning_rate": 0.0006,
+ "loss": 3.8523952960968018,
+ "step": 1658
+ },
+ {
+ "epoch": 23.041939711664483,
+ "grad_norm": 0.2999744415283203,
+ "learning_rate": 0.0006,
+ "loss": 3.8229494094848633,
+ "step": 1659
+ },
+ {
+ "epoch": 23.055919615552643,
+ "grad_norm": 0.32080450654029846,
+ "learning_rate": 0.0006,
+ "loss": 3.8562774658203125,
+ "step": 1660
+ },
+ {
+ "epoch": 23.069899519440803,
+ "grad_norm": 0.293468177318573,
+ "learning_rate": 0.0006,
+ "loss": 3.889139175415039,
+ "step": 1661
+ },
+ {
+ "epoch": 23.083879423328966,
+ "grad_norm": 0.2605799436569214,
+ "learning_rate": 0.0006,
+ "loss": 3.838681221008301,
+ "step": 1662
+ },
+ {
+ "epoch": 23.097859327217126,
+ "grad_norm": 0.2656237483024597,
+ "learning_rate": 0.0006,
+ "loss": 3.8603532314300537,
+ "step": 1663
+ },
+ {
+ "epoch": 23.111839231105286,
+ "grad_norm": 0.27163293957710266,
+ "learning_rate": 0.0006,
+ "loss": 3.846987009048462,
+ "step": 1664
+ },
+ {
+ "epoch": 23.125819134993446,
+ "grad_norm": 0.2719763517379761,
+ "learning_rate": 0.0006,
+ "loss": 3.805354595184326,
+ "step": 1665
+ },
+ {
+ "epoch": 23.13979903888161,
+ "grad_norm": 0.25786274671554565,
+ "learning_rate": 0.0006,
+ "loss": 3.8486907482147217,
+ "step": 1666
+ },
+ {
+ "epoch": 23.15377894276977,
+ "grad_norm": 0.2675692141056061,
+ "learning_rate": 0.0006,
+ "loss": 3.816493511199951,
+ "step": 1667
+ },
+ {
+ "epoch": 23.16775884665793,
+ "grad_norm": 0.2711698114871979,
+ "learning_rate": 0.0006,
+ "loss": 3.851863384246826,
+ "step": 1668
+ },
+ {
+ "epoch": 23.18173875054609,
+ "grad_norm": 0.2588968873023987,
+ "learning_rate": 0.0006,
+ "loss": 3.860816717147827,
+ "step": 1669
+ },
+ {
+ "epoch": 23.195718654434252,
+ "grad_norm": 0.2458600401878357,
+ "learning_rate": 0.0006,
+ "loss": 3.8058223724365234,
+ "step": 1670
+ },
+ {
+ "epoch": 23.209698558322412,
+ "grad_norm": 0.22014005482196808,
+ "learning_rate": 0.0006,
+ "loss": 3.8686985969543457,
+ "step": 1671
+ },
+ {
+ "epoch": 23.22367846221057,
+ "grad_norm": 0.22450537979602814,
+ "learning_rate": 0.0006,
+ "loss": 3.8379364013671875,
+ "step": 1672
+ },
+ {
+ "epoch": 23.23765836609873,
+ "grad_norm": 0.22132326662540436,
+ "learning_rate": 0.0006,
+ "loss": 3.8873870372772217,
+ "step": 1673
+ },
+ {
+ "epoch": 23.251638269986895,
+ "grad_norm": 0.20994804799556732,
+ "learning_rate": 0.0006,
+ "loss": 3.821415424346924,
+ "step": 1674
+ },
+ {
+ "epoch": 23.265618173875055,
+ "grad_norm": 0.2040853649377823,
+ "learning_rate": 0.0006,
+ "loss": 3.831658124923706,
+ "step": 1675
+ },
+ {
+ "epoch": 23.279598077763215,
+ "grad_norm": 0.20878618955612183,
+ "learning_rate": 0.0006,
+ "loss": 3.838672637939453,
+ "step": 1676
+ },
+ {
+ "epoch": 23.293577981651374,
+ "grad_norm": 0.19974198937416077,
+ "learning_rate": 0.0006,
+ "loss": 3.8442561626434326,
+ "step": 1677
+ },
+ {
+ "epoch": 23.307557885539538,
+ "grad_norm": 0.20523984730243683,
+ "learning_rate": 0.0006,
+ "loss": 3.846139907836914,
+ "step": 1678
+ },
+ {
+ "epoch": 23.321537789427698,
+ "grad_norm": 0.2045847624540329,
+ "learning_rate": 0.0006,
+ "loss": 3.8597474098205566,
+ "step": 1679
+ },
+ {
+ "epoch": 23.335517693315857,
+ "grad_norm": 0.20957441627979279,
+ "learning_rate": 0.0006,
+ "loss": 3.8493881225585938,
+ "step": 1680
+ },
+ {
+ "epoch": 23.34949759720402,
+ "grad_norm": 0.2069379836320877,
+ "learning_rate": 0.0006,
+ "loss": 3.8510046005249023,
+ "step": 1681
+ },
+ {
+ "epoch": 23.36347750109218,
+ "grad_norm": 0.19627872109413147,
+ "learning_rate": 0.0006,
+ "loss": 3.844618320465088,
+ "step": 1682
+ },
+ {
+ "epoch": 23.37745740498034,
+ "grad_norm": 0.19599434733390808,
+ "learning_rate": 0.0006,
+ "loss": 3.8245465755462646,
+ "step": 1683
+ },
+ {
+ "epoch": 23.3914373088685,
+ "grad_norm": 0.2035072147846222,
+ "learning_rate": 0.0006,
+ "loss": 3.854422092437744,
+ "step": 1684
+ },
+ {
+ "epoch": 23.405417212756664,
+ "grad_norm": 0.21836814284324646,
+ "learning_rate": 0.0006,
+ "loss": 3.83512282371521,
+ "step": 1685
+ },
+ {
+ "epoch": 23.419397116644824,
+ "grad_norm": 0.22844630479812622,
+ "learning_rate": 0.0006,
+ "loss": 3.8744301795959473,
+ "step": 1686
+ },
+ {
+ "epoch": 23.433377020532983,
+ "grad_norm": 0.2259359359741211,
+ "learning_rate": 0.0006,
+ "loss": 3.8460323810577393,
+ "step": 1687
+ },
+ {
+ "epoch": 23.447356924421143,
+ "grad_norm": 0.24440120160579681,
+ "learning_rate": 0.0006,
+ "loss": 3.8543787002563477,
+ "step": 1688
+ },
+ {
+ "epoch": 23.461336828309307,
+ "grad_norm": 0.25063708424568176,
+ "learning_rate": 0.0006,
+ "loss": 3.851004123687744,
+ "step": 1689
+ },
+ {
+ "epoch": 23.475316732197467,
+ "grad_norm": 0.25515618920326233,
+ "learning_rate": 0.0006,
+ "loss": 3.8685030937194824,
+ "step": 1690
+ },
+ {
+ "epoch": 23.489296636085626,
+ "grad_norm": 0.23961050808429718,
+ "learning_rate": 0.0006,
+ "loss": 3.866792678833008,
+ "step": 1691
+ },
+ {
+ "epoch": 23.503276539973786,
+ "grad_norm": 0.20880955457687378,
+ "learning_rate": 0.0006,
+ "loss": 3.8416638374328613,
+ "step": 1692
+ },
+ {
+ "epoch": 23.51725644386195,
+ "grad_norm": 0.1989721804857254,
+ "learning_rate": 0.0006,
+ "loss": 3.8608641624450684,
+ "step": 1693
+ },
+ {
+ "epoch": 23.53123634775011,
+ "grad_norm": 0.207577183842659,
+ "learning_rate": 0.0006,
+ "loss": 3.8431811332702637,
+ "step": 1694
+ },
+ {
+ "epoch": 23.54521625163827,
+ "grad_norm": 0.20844359695911407,
+ "learning_rate": 0.0006,
+ "loss": 3.882844924926758,
+ "step": 1695
+ },
+ {
+ "epoch": 23.55919615552643,
+ "grad_norm": 0.22511139512062073,
+ "learning_rate": 0.0006,
+ "loss": 3.866156578063965,
+ "step": 1696
+ },
+ {
+ "epoch": 23.573176059414592,
+ "grad_norm": 0.21648484468460083,
+ "learning_rate": 0.0006,
+ "loss": 3.87117075920105,
+ "step": 1697
+ },
+ {
+ "epoch": 23.587155963302752,
+ "grad_norm": 0.2081802636384964,
+ "learning_rate": 0.0006,
+ "loss": 3.828132152557373,
+ "step": 1698
+ },
+ {
+ "epoch": 23.601135867190912,
+ "grad_norm": 0.2017381489276886,
+ "learning_rate": 0.0006,
+ "loss": 3.839737892150879,
+ "step": 1699
+ },
+ {
+ "epoch": 23.615115771079076,
+ "grad_norm": 0.2025786191225052,
+ "learning_rate": 0.0006,
+ "loss": 3.8787710666656494,
+ "step": 1700
+ },
+ {
+ "epoch": 23.629095674967235,
+ "grad_norm": 0.21394102275371552,
+ "learning_rate": 0.0006,
+ "loss": 3.824047088623047,
+ "step": 1701
+ },
+ {
+ "epoch": 23.643075578855395,
+ "grad_norm": 0.20749174058437347,
+ "learning_rate": 0.0006,
+ "loss": 3.877009153366089,
+ "step": 1702
+ },
+ {
+ "epoch": 23.657055482743555,
+ "grad_norm": 0.2132839858531952,
+ "learning_rate": 0.0006,
+ "loss": 3.844214916229248,
+ "step": 1703
+ },
+ {
+ "epoch": 23.67103538663172,
+ "grad_norm": 0.22408637404441833,
+ "learning_rate": 0.0006,
+ "loss": 3.8570785522460938,
+ "step": 1704
+ },
+ {
+ "epoch": 23.68501529051988,
+ "grad_norm": 0.2275897115468979,
+ "learning_rate": 0.0006,
+ "loss": 3.8599512577056885,
+ "step": 1705
+ },
+ {
+ "epoch": 23.698995194408038,
+ "grad_norm": 0.2230614721775055,
+ "learning_rate": 0.0006,
+ "loss": 3.86374568939209,
+ "step": 1706
+ },
+ {
+ "epoch": 23.712975098296198,
+ "grad_norm": 0.21873739361763,
+ "learning_rate": 0.0006,
+ "loss": 3.8530168533325195,
+ "step": 1707
+ },
+ {
+ "epoch": 23.72695500218436,
+ "grad_norm": 0.24418923258781433,
+ "learning_rate": 0.0006,
+ "loss": 3.8410465717315674,
+ "step": 1708
+ },
+ {
+ "epoch": 23.74093490607252,
+ "grad_norm": 0.24894575774669647,
+ "learning_rate": 0.0006,
+ "loss": 3.8386030197143555,
+ "step": 1709
+ },
+ {
+ "epoch": 23.75491480996068,
+ "grad_norm": 0.221230611205101,
+ "learning_rate": 0.0006,
+ "loss": 3.8116674423217773,
+ "step": 1710
+ },
+ {
+ "epoch": 23.76889471384884,
+ "grad_norm": 0.20560568571090698,
+ "learning_rate": 0.0006,
+ "loss": 3.8634426593780518,
+ "step": 1711
+ },
+ {
+ "epoch": 23.782874617737004,
+ "grad_norm": 0.20450648665428162,
+ "learning_rate": 0.0006,
+ "loss": 3.8690528869628906,
+ "step": 1712
+ },
+ {
+ "epoch": 23.796854521625164,
+ "grad_norm": 0.18996809422969818,
+ "learning_rate": 0.0006,
+ "loss": 3.8484325408935547,
+ "step": 1713
+ },
+ {
+ "epoch": 23.810834425513324,
+ "grad_norm": 0.20165087282657623,
+ "learning_rate": 0.0006,
+ "loss": 3.8823161125183105,
+ "step": 1714
+ },
+ {
+ "epoch": 23.824814329401484,
+ "grad_norm": 0.21149255335330963,
+ "learning_rate": 0.0006,
+ "loss": 3.8833112716674805,
+ "step": 1715
+ },
+ {
+ "epoch": 23.838794233289647,
+ "grad_norm": 0.21254824101924896,
+ "learning_rate": 0.0006,
+ "loss": 3.8414595127105713,
+ "step": 1716
+ },
+ {
+ "epoch": 23.852774137177807,
+ "grad_norm": 0.21313664317131042,
+ "learning_rate": 0.0006,
+ "loss": 3.8732268810272217,
+ "step": 1717
+ },
+ {
+ "epoch": 23.866754041065967,
+ "grad_norm": 0.21635662019252777,
+ "learning_rate": 0.0006,
+ "loss": 3.861222743988037,
+ "step": 1718
+ },
+ {
+ "epoch": 23.88073394495413,
+ "grad_norm": 0.20612190663814545,
+ "learning_rate": 0.0006,
+ "loss": 3.821854591369629,
+ "step": 1719
+ },
+ {
+ "epoch": 23.89471384884229,
+ "grad_norm": 0.1975104659795761,
+ "learning_rate": 0.0006,
+ "loss": 3.8815202713012695,
+ "step": 1720
+ },
+ {
+ "epoch": 23.90869375273045,
+ "grad_norm": 0.20893609523773193,
+ "learning_rate": 0.0006,
+ "loss": 3.8581607341766357,
+ "step": 1721
+ },
+ {
+ "epoch": 23.92267365661861,
+ "grad_norm": 0.2125461846590042,
+ "learning_rate": 0.0006,
+ "loss": 3.839498281478882,
+ "step": 1722
+ },
+ {
+ "epoch": 23.936653560506773,
+ "grad_norm": 0.19985878467559814,
+ "learning_rate": 0.0006,
+ "loss": 3.856555223464966,
+ "step": 1723
+ },
+ {
+ "epoch": 23.950633464394933,
+ "grad_norm": 0.1922348290681839,
+ "learning_rate": 0.0006,
+ "loss": 3.8956782817840576,
+ "step": 1724
+ },
+ {
+ "epoch": 23.964613368283093,
+ "grad_norm": 0.2191949337720871,
+ "learning_rate": 0.0006,
+ "loss": 3.8582406044006348,
+ "step": 1725
+ },
+ {
+ "epoch": 23.978593272171253,
+ "grad_norm": 0.2569248676300049,
+ "learning_rate": 0.0006,
+ "loss": 3.855678081512451,
+ "step": 1726
+ },
+ {
+ "epoch": 23.992573176059416,
+ "grad_norm": 0.2641172409057617,
+ "learning_rate": 0.0006,
+ "loss": 3.8426473140716553,
+ "step": 1727
+ },
+ {
+ "epoch": 24.0,
+ "grad_norm": 0.29637208580970764,
+ "learning_rate": 0.0006,
+ "loss": 3.843040704727173,
+ "step": 1728
+ },
+ {
+ "epoch": 24.0,
+ "eval_loss": 4.075617790222168,
+ "eval_runtime": 43.9795,
+ "eval_samples_per_second": 55.526,
+ "eval_steps_per_second": 3.479,
+ "step": 1728
+ },
+ {
+ "epoch": 24.01397990388816,
+ "grad_norm": 0.2804758548736572,
+ "learning_rate": 0.0006,
+ "loss": 3.819150924682617,
+ "step": 1729
+ },
+ {
+ "epoch": 24.027959807776323,
+ "grad_norm": 0.2796347141265869,
+ "learning_rate": 0.0006,
+ "loss": 3.8400537967681885,
+ "step": 1730
+ },
+ {
+ "epoch": 24.041939711664483,
+ "grad_norm": 0.28388649225234985,
+ "learning_rate": 0.0006,
+ "loss": 3.844595432281494,
+ "step": 1731
+ },
+ {
+ "epoch": 24.055919615552643,
+ "grad_norm": 0.2944681942462921,
+ "learning_rate": 0.0006,
+ "loss": 3.8048014640808105,
+ "step": 1732
+ },
+ {
+ "epoch": 24.069899519440803,
+ "grad_norm": 0.2956784665584564,
+ "learning_rate": 0.0006,
+ "loss": 3.8488049507141113,
+ "step": 1733
+ },
+ {
+ "epoch": 24.083879423328966,
+ "grad_norm": 0.2822059392929077,
+ "learning_rate": 0.0006,
+ "loss": 3.850322723388672,
+ "step": 1734
+ },
+ {
+ "epoch": 24.097859327217126,
+ "grad_norm": 0.3012927174568176,
+ "learning_rate": 0.0006,
+ "loss": 3.8748154640197754,
+ "step": 1735
+ },
+ {
+ "epoch": 24.111839231105286,
+ "grad_norm": 0.28868764638900757,
+ "learning_rate": 0.0006,
+ "loss": 3.8282783031463623,
+ "step": 1736
+ },
+ {
+ "epoch": 24.125819134993446,
+ "grad_norm": 0.277203768491745,
+ "learning_rate": 0.0006,
+ "loss": 3.8462908267974854,
+ "step": 1737
+ },
+ {
+ "epoch": 24.13979903888161,
+ "grad_norm": 0.2654508948326111,
+ "learning_rate": 0.0006,
+ "loss": 3.8043856620788574,
+ "step": 1738
+ },
+ {
+ "epoch": 24.15377894276977,
+ "grad_norm": 0.24425740540027618,
+ "learning_rate": 0.0006,
+ "loss": 3.8284308910369873,
+ "step": 1739
+ },
+ {
+ "epoch": 24.16775884665793,
+ "grad_norm": 0.24407348036766052,
+ "learning_rate": 0.0006,
+ "loss": 3.8489203453063965,
+ "step": 1740
+ },
+ {
+ "epoch": 24.18173875054609,
+ "grad_norm": 0.2387724369764328,
+ "learning_rate": 0.0006,
+ "loss": 3.8240389823913574,
+ "step": 1741
+ },
+ {
+ "epoch": 24.195718654434252,
+ "grad_norm": 0.2832290232181549,
+ "learning_rate": 0.0006,
+ "loss": 3.869053363800049,
+ "step": 1742
+ },
+ {
+ "epoch": 24.209698558322412,
+ "grad_norm": 0.26501718163490295,
+ "learning_rate": 0.0006,
+ "loss": 3.8624343872070312,
+ "step": 1743
+ },
+ {
+ "epoch": 24.22367846221057,
+ "grad_norm": 0.24234668910503387,
+ "learning_rate": 0.0006,
+ "loss": 3.823103904724121,
+ "step": 1744
+ },
+ {
+ "epoch": 24.23765836609873,
+ "grad_norm": 0.24160076677799225,
+ "learning_rate": 0.0006,
+ "loss": 3.8174376487731934,
+ "step": 1745
+ },
+ {
+ "epoch": 24.251638269986895,
+ "grad_norm": 0.2447604238986969,
+ "learning_rate": 0.0006,
+ "loss": 3.8345441818237305,
+ "step": 1746
+ },
+ {
+ "epoch": 24.265618173875055,
+ "grad_norm": 0.22864456474781036,
+ "learning_rate": 0.0006,
+ "loss": 3.833101272583008,
+ "step": 1747
+ },
+ {
+ "epoch": 24.279598077763215,
+ "grad_norm": 0.20429204404354095,
+ "learning_rate": 0.0006,
+ "loss": 3.8055219650268555,
+ "step": 1748
+ },
+ {
+ "epoch": 24.293577981651374,
+ "grad_norm": 0.21538510918617249,
+ "learning_rate": 0.0006,
+ "loss": 3.7929327487945557,
+ "step": 1749
+ },
+ {
+ "epoch": 24.307557885539538,
+ "grad_norm": 0.2189008593559265,
+ "learning_rate": 0.0006,
+ "loss": 3.852264881134033,
+ "step": 1750
+ },
+ {
+ "epoch": 24.321537789427698,
+ "grad_norm": 0.2228662073612213,
+ "learning_rate": 0.0006,
+ "loss": 3.831088066101074,
+ "step": 1751
+ },
+ {
+ "epoch": 24.335517693315857,
+ "grad_norm": 0.2039937973022461,
+ "learning_rate": 0.0006,
+ "loss": 3.8358256816864014,
+ "step": 1752
+ },
+ {
+ "epoch": 24.34949759720402,
+ "grad_norm": 0.19247715175151825,
+ "learning_rate": 0.0006,
+ "loss": 3.8077402114868164,
+ "step": 1753
+ },
+ {
+ "epoch": 24.36347750109218,
+ "grad_norm": 0.18301935493946075,
+ "learning_rate": 0.0006,
+ "loss": 3.81380033493042,
+ "step": 1754
+ },
+ {
+ "epoch": 24.37745740498034,
+ "grad_norm": 0.19325268268585205,
+ "learning_rate": 0.0006,
+ "loss": 3.8447322845458984,
+ "step": 1755
+ },
+ {
+ "epoch": 24.3914373088685,
+ "grad_norm": 0.2007269263267517,
+ "learning_rate": 0.0006,
+ "loss": 3.82779860496521,
+ "step": 1756
+ },
+ {
+ "epoch": 24.405417212756664,
+ "grad_norm": 0.20567037165164948,
+ "learning_rate": 0.0006,
+ "loss": 3.800354480743408,
+ "step": 1757
+ },
+ {
+ "epoch": 24.419397116644824,
+ "grad_norm": 0.22553028166294098,
+ "learning_rate": 0.0006,
+ "loss": 3.7910406589508057,
+ "step": 1758
+ },
+ {
+ "epoch": 24.433377020532983,
+ "grad_norm": 0.22697079181671143,
+ "learning_rate": 0.0006,
+ "loss": 3.857635974884033,
+ "step": 1759
+ },
+ {
+ "epoch": 24.447356924421143,
+ "grad_norm": 0.22090297937393188,
+ "learning_rate": 0.0006,
+ "loss": 3.8112804889678955,
+ "step": 1760
+ },
+ {
+ "epoch": 24.461336828309307,
+ "grad_norm": 0.24325518310070038,
+ "learning_rate": 0.0006,
+ "loss": 3.822084426879883,
+ "step": 1761
+ },
+ {
+ "epoch": 24.475316732197467,
+ "grad_norm": 0.2702929377555847,
+ "learning_rate": 0.0006,
+ "loss": 3.8307600021362305,
+ "step": 1762
+ },
+ {
+ "epoch": 24.489296636085626,
+ "grad_norm": 0.2699742317199707,
+ "learning_rate": 0.0006,
+ "loss": 3.8479247093200684,
+ "step": 1763
+ },
+ {
+ "epoch": 24.503276539973786,
+ "grad_norm": 0.2526061236858368,
+ "learning_rate": 0.0006,
+ "loss": 3.8615071773529053,
+ "step": 1764
+ },
+ {
+ "epoch": 24.51725644386195,
+ "grad_norm": 0.2633848190307617,
+ "learning_rate": 0.0006,
+ "loss": 3.8412697315216064,
+ "step": 1765
+ },
+ {
+ "epoch": 24.53123634775011,
+ "grad_norm": 0.2711184024810791,
+ "learning_rate": 0.0006,
+ "loss": 3.83647084236145,
+ "step": 1766
+ },
+ {
+ "epoch": 24.54521625163827,
+ "grad_norm": 0.2691243588924408,
+ "learning_rate": 0.0006,
+ "loss": 3.8489012718200684,
+ "step": 1767
+ },
+ {
+ "epoch": 24.55919615552643,
+ "grad_norm": 0.2580898404121399,
+ "learning_rate": 0.0006,
+ "loss": 3.8464407920837402,
+ "step": 1768
+ },
+ {
+ "epoch": 24.573176059414592,
+ "grad_norm": 0.21342119574546814,
+ "learning_rate": 0.0006,
+ "loss": 3.8279383182525635,
+ "step": 1769
+ },
+ {
+ "epoch": 24.587155963302752,
+ "grad_norm": 0.22102399170398712,
+ "learning_rate": 0.0006,
+ "loss": 3.841676712036133,
+ "step": 1770
+ },
+ {
+ "epoch": 24.601135867190912,
+ "grad_norm": 0.2882173955440521,
+ "learning_rate": 0.0006,
+ "loss": 3.825528383255005,
+ "step": 1771
+ },
+ {
+ "epoch": 24.615115771079076,
+ "grad_norm": 0.3403635323047638,
+ "learning_rate": 0.0006,
+ "loss": 3.8282246589660645,
+ "step": 1772
+ },
+ {
+ "epoch": 24.629095674967235,
+ "grad_norm": 0.32192692160606384,
+ "learning_rate": 0.0006,
+ "loss": 3.8411307334899902,
+ "step": 1773
+ },
+ {
+ "epoch": 24.643075578855395,
+ "grad_norm": 0.2534109055995941,
+ "learning_rate": 0.0006,
+ "loss": 3.843007802963257,
+ "step": 1774
+ },
+ {
+ "epoch": 24.657055482743555,
+ "grad_norm": 0.25483962893486023,
+ "learning_rate": 0.0006,
+ "loss": 3.848358154296875,
+ "step": 1775
+ },
+ {
+ "epoch": 24.67103538663172,
+ "grad_norm": 0.25175443291664124,
+ "learning_rate": 0.0006,
+ "loss": 3.8232598304748535,
+ "step": 1776
+ },
+ {
+ "epoch": 24.68501529051988,
+ "grad_norm": 0.20538510382175446,
+ "learning_rate": 0.0006,
+ "loss": 3.857635498046875,
+ "step": 1777
+ },
+ {
+ "epoch": 24.698995194408038,
+ "grad_norm": 0.240861177444458,
+ "learning_rate": 0.0006,
+ "loss": 3.83717679977417,
+ "step": 1778
+ },
+ {
+ "epoch": 24.712975098296198,
+ "grad_norm": 0.23646967113018036,
+ "learning_rate": 0.0006,
+ "loss": 3.81032133102417,
+ "step": 1779
+ },
+ {
+ "epoch": 24.72695500218436,
+ "grad_norm": 0.2164423167705536,
+ "learning_rate": 0.0006,
+ "loss": 3.807878255844116,
+ "step": 1780
+ },
+ {
+ "epoch": 24.74093490607252,
+ "grad_norm": 0.21160705387592316,
+ "learning_rate": 0.0006,
+ "loss": 3.870394468307495,
+ "step": 1781
+ },
+ {
+ "epoch": 24.75491480996068,
+ "grad_norm": 0.20284807682037354,
+ "learning_rate": 0.0006,
+ "loss": 3.842154026031494,
+ "step": 1782
+ },
+ {
+ "epoch": 24.76889471384884,
+ "grad_norm": 0.20738485455513,
+ "learning_rate": 0.0006,
+ "loss": 3.8347136974334717,
+ "step": 1783
+ },
+ {
+ "epoch": 24.782874617737004,
+ "grad_norm": 0.20253778994083405,
+ "learning_rate": 0.0006,
+ "loss": 3.814948320388794,
+ "step": 1784
+ },
+ {
+ "epoch": 24.796854521625164,
+ "grad_norm": 0.20567010343074799,
+ "learning_rate": 0.0006,
+ "loss": 3.8354592323303223,
+ "step": 1785
+ },
+ {
+ "epoch": 24.810834425513324,
+ "grad_norm": 0.20639720559120178,
+ "learning_rate": 0.0006,
+ "loss": 3.8336033821105957,
+ "step": 1786
+ },
+ {
+ "epoch": 24.824814329401484,
+ "grad_norm": 0.19978247582912445,
+ "learning_rate": 0.0006,
+ "loss": 3.8209140300750732,
+ "step": 1787
+ },
+ {
+ "epoch": 24.838794233289647,
+ "grad_norm": 0.20628373324871063,
+ "learning_rate": 0.0006,
+ "loss": 3.8372955322265625,
+ "step": 1788
+ },
+ {
+ "epoch": 24.852774137177807,
+ "grad_norm": 0.2266162782907486,
+ "learning_rate": 0.0006,
+ "loss": 3.850994110107422,
+ "step": 1789
+ },
+ {
+ "epoch": 24.866754041065967,
+ "grad_norm": 0.22567765414714813,
+ "learning_rate": 0.0006,
+ "loss": 3.8552165031433105,
+ "step": 1790
+ },
+ {
+ "epoch": 24.88073394495413,
+ "grad_norm": 0.228011354804039,
+ "learning_rate": 0.0006,
+ "loss": 3.8310747146606445,
+ "step": 1791
+ },
+ {
+ "epoch": 24.89471384884229,
+ "grad_norm": 0.23706914484500885,
+ "learning_rate": 0.0006,
+ "loss": 3.8369603157043457,
+ "step": 1792
+ },
+ {
+ "epoch": 24.90869375273045,
+ "grad_norm": 0.22669097781181335,
+ "learning_rate": 0.0006,
+ "loss": 3.8443825244903564,
+ "step": 1793
+ },
+ {
+ "epoch": 24.92267365661861,
+ "grad_norm": 0.2051001936197281,
+ "learning_rate": 0.0006,
+ "loss": 3.7938501834869385,
+ "step": 1794
+ },
+ {
+ "epoch": 24.936653560506773,
+ "grad_norm": 0.2091219276189804,
+ "learning_rate": 0.0006,
+ "loss": 3.8167076110839844,
+ "step": 1795
+ },
+ {
+ "epoch": 24.950633464394933,
+ "grad_norm": 0.20517204701900482,
+ "learning_rate": 0.0006,
+ "loss": 3.852670669555664,
+ "step": 1796
+ },
+ {
+ "epoch": 24.964613368283093,
+ "grad_norm": 0.19916993379592896,
+ "learning_rate": 0.0006,
+ "loss": 3.8410873413085938,
+ "step": 1797
+ },
+ {
+ "epoch": 24.978593272171253,
+ "grad_norm": 0.21313942968845367,
+ "learning_rate": 0.0006,
+ "loss": 3.8383948802948,
+ "step": 1798
+ },
+ {
+ "epoch": 24.992573176059416,
+ "grad_norm": 0.21042990684509277,
+ "learning_rate": 0.0006,
+ "loss": 3.8623173236846924,
+ "step": 1799
+ },
+ {
+ "epoch": 25.0,
+ "grad_norm": 0.23052045702934265,
+ "learning_rate": 0.0006,
+ "loss": 3.8646674156188965,
+ "step": 1800
+ },
+ {
+ "epoch": 25.0,
+ "eval_loss": 4.081690311431885,
+ "eval_runtime": 44.036,
+ "eval_samples_per_second": 55.455,
+ "eval_steps_per_second": 3.474,
+ "step": 1800
+ },
+ {
+ "epoch": 25.01397990388816,
+ "grad_norm": 0.22068746387958527,
+ "learning_rate": 0.0006,
+ "loss": 3.8002820014953613,
+ "step": 1801
+ },
+ {
+ "epoch": 25.027959807776323,
+ "grad_norm": 0.20711193978786469,
+ "learning_rate": 0.0006,
+ "loss": 3.787785768508911,
+ "step": 1802
+ },
+ {
+ "epoch": 25.041939711664483,
+ "grad_norm": 0.20659677684307098,
+ "learning_rate": 0.0006,
+ "loss": 3.80245304107666,
+ "step": 1803
+ },
+ {
+ "epoch": 25.055919615552643,
+ "grad_norm": 0.22891797125339508,
+ "learning_rate": 0.0006,
+ "loss": 3.784543514251709,
+ "step": 1804
+ },
+ {
+ "epoch": 25.069899519440803,
+ "grad_norm": 0.23679181933403015,
+ "learning_rate": 0.0006,
+ "loss": 3.8311429023742676,
+ "step": 1805
+ },
+ {
+ "epoch": 25.083879423328966,
+ "grad_norm": 0.2548872232437134,
+ "learning_rate": 0.0006,
+ "loss": 3.8047211170196533,
+ "step": 1806
+ },
+ {
+ "epoch": 25.097859327217126,
+ "grad_norm": 0.26181501150131226,
+ "learning_rate": 0.0006,
+ "loss": 3.837508201599121,
+ "step": 1807
+ },
+ {
+ "epoch": 25.111839231105286,
+ "grad_norm": 0.2548452913761139,
+ "learning_rate": 0.0006,
+ "loss": 3.831544876098633,
+ "step": 1808
+ },
+ {
+ "epoch": 25.125819134993446,
+ "grad_norm": 0.26177605986595154,
+ "learning_rate": 0.0006,
+ "loss": 3.805346965789795,
+ "step": 1809
+ },
+ {
+ "epoch": 25.13979903888161,
+ "grad_norm": 0.2608112394809723,
+ "learning_rate": 0.0006,
+ "loss": 3.8040924072265625,
+ "step": 1810
+ },
+ {
+ "epoch": 25.15377894276977,
+ "grad_norm": 0.2586037814617157,
+ "learning_rate": 0.0006,
+ "loss": 3.8102216720581055,
+ "step": 1811
+ },
+ {
+ "epoch": 25.16775884665793,
+ "grad_norm": 0.26258161664009094,
+ "learning_rate": 0.0006,
+ "loss": 3.8152549266815186,
+ "step": 1812
+ },
+ {
+ "epoch": 25.18173875054609,
+ "grad_norm": 0.2803022265434265,
+ "learning_rate": 0.0006,
+ "loss": 3.82576584815979,
+ "step": 1813
+ },
+ {
+ "epoch": 25.195718654434252,
+ "grad_norm": 0.2618221938610077,
+ "learning_rate": 0.0006,
+ "loss": 3.817220687866211,
+ "step": 1814
+ },
+ {
+ "epoch": 25.209698558322412,
+ "grad_norm": 0.23283469676971436,
+ "learning_rate": 0.0006,
+ "loss": 3.7999041080474854,
+ "step": 1815
+ },
+ {
+ "epoch": 25.22367846221057,
+ "grad_norm": 0.20110781490802765,
+ "learning_rate": 0.0006,
+ "loss": 3.783228874206543,
+ "step": 1816
+ },
+ {
+ "epoch": 25.23765836609873,
+ "grad_norm": 0.2231830358505249,
+ "learning_rate": 0.0006,
+ "loss": 3.8032913208007812,
+ "step": 1817
+ },
+ {
+ "epoch": 25.251638269986895,
+ "grad_norm": 0.21807286143302917,
+ "learning_rate": 0.0006,
+ "loss": 3.817028045654297,
+ "step": 1818
+ },
+ {
+ "epoch": 25.265618173875055,
+ "grad_norm": 0.22710664570331573,
+ "learning_rate": 0.0006,
+ "loss": 3.8201727867126465,
+ "step": 1819
+ },
+ {
+ "epoch": 25.279598077763215,
+ "grad_norm": 0.22299866378307343,
+ "learning_rate": 0.0006,
+ "loss": 3.8198719024658203,
+ "step": 1820
+ },
+ {
+ "epoch": 25.293577981651374,
+ "grad_norm": 0.20886564254760742,
+ "learning_rate": 0.0006,
+ "loss": 3.792414665222168,
+ "step": 1821
+ },
+ {
+ "epoch": 25.307557885539538,
+ "grad_norm": 0.20887352526187897,
+ "learning_rate": 0.0006,
+ "loss": 3.7634057998657227,
+ "step": 1822
+ },
+ {
+ "epoch": 25.321537789427698,
+ "grad_norm": 0.24560041725635529,
+ "learning_rate": 0.0006,
+ "loss": 3.79359769821167,
+ "step": 1823
+ },
+ {
+ "epoch": 25.335517693315857,
+ "grad_norm": 0.22767415642738342,
+ "learning_rate": 0.0006,
+ "loss": 3.8313469886779785,
+ "step": 1824
+ },
+ {
+ "epoch": 25.34949759720402,
+ "grad_norm": 0.21617893874645233,
+ "learning_rate": 0.0006,
+ "loss": 3.77200984954834,
+ "step": 1825
+ },
+ {
+ "epoch": 25.36347750109218,
+ "grad_norm": 0.21010833978652954,
+ "learning_rate": 0.0006,
+ "loss": 3.8042140007019043,
+ "step": 1826
+ },
+ {
+ "epoch": 25.37745740498034,
+ "grad_norm": 0.24087965488433838,
+ "learning_rate": 0.0006,
+ "loss": 3.8260979652404785,
+ "step": 1827
+ },
+ {
+ "epoch": 25.3914373088685,
+ "grad_norm": 0.2735275626182556,
+ "learning_rate": 0.0006,
+ "loss": 3.8499274253845215,
+ "step": 1828
+ },
+ {
+ "epoch": 25.405417212756664,
+ "grad_norm": 0.24831001460552216,
+ "learning_rate": 0.0006,
+ "loss": 3.8146448135375977,
+ "step": 1829
+ },
+ {
+ "epoch": 25.419397116644824,
+ "grad_norm": 0.21822866797447205,
+ "learning_rate": 0.0006,
+ "loss": 3.7845146656036377,
+ "step": 1830
+ },
+ {
+ "epoch": 25.433377020532983,
+ "grad_norm": 0.19948813319206238,
+ "learning_rate": 0.0006,
+ "loss": 3.823997974395752,
+ "step": 1831
+ },
+ {
+ "epoch": 25.447356924421143,
+ "grad_norm": 0.18342702090740204,
+ "learning_rate": 0.0006,
+ "loss": 3.8201193809509277,
+ "step": 1832
+ },
+ {
+ "epoch": 25.461336828309307,
+ "grad_norm": 0.19377560913562775,
+ "learning_rate": 0.0006,
+ "loss": 3.8069632053375244,
+ "step": 1833
+ },
+ {
+ "epoch": 25.475316732197467,
+ "grad_norm": 0.22348709404468536,
+ "learning_rate": 0.0006,
+ "loss": 3.7918643951416016,
+ "step": 1834
+ },
+ {
+ "epoch": 25.489296636085626,
+ "grad_norm": 0.24484702944755554,
+ "learning_rate": 0.0006,
+ "loss": 3.85046124458313,
+ "step": 1835
+ },
+ {
+ "epoch": 25.503276539973786,
+ "grad_norm": 0.2493520826101303,
+ "learning_rate": 0.0006,
+ "loss": 3.8043932914733887,
+ "step": 1836
+ },
+ {
+ "epoch": 25.51725644386195,
+ "grad_norm": 0.21509641408920288,
+ "learning_rate": 0.0006,
+ "loss": 3.8064627647399902,
+ "step": 1837
+ },
+ {
+ "epoch": 25.53123634775011,
+ "grad_norm": 0.21912820637226105,
+ "learning_rate": 0.0006,
+ "loss": 3.850588321685791,
+ "step": 1838
+ },
+ {
+ "epoch": 25.54521625163827,
+ "grad_norm": 0.28400927782058716,
+ "learning_rate": 0.0006,
+ "loss": 3.79818058013916,
+ "step": 1839
+ },
+ {
+ "epoch": 25.55919615552643,
+ "grad_norm": 0.32193225622177124,
+ "learning_rate": 0.0006,
+ "loss": 3.836275815963745,
+ "step": 1840
+ },
+ {
+ "epoch": 25.573176059414592,
+ "grad_norm": 0.2902325987815857,
+ "learning_rate": 0.0006,
+ "loss": 3.8080005645751953,
+ "step": 1841
+ },
+ {
+ "epoch": 25.587155963302752,
+ "grad_norm": 0.21759532392024994,
+ "learning_rate": 0.0006,
+ "loss": 3.8233771324157715,
+ "step": 1842
+ },
+ {
+ "epoch": 25.601135867190912,
+ "grad_norm": 0.19645214080810547,
+ "learning_rate": 0.0006,
+ "loss": 3.838881015777588,
+ "step": 1843
+ },
+ {
+ "epoch": 25.615115771079076,
+ "grad_norm": 0.19322903454303741,
+ "learning_rate": 0.0006,
+ "loss": 3.7870054244995117,
+ "step": 1844
+ },
+ {
+ "epoch": 25.629095674967235,
+ "grad_norm": 0.2074001580476761,
+ "learning_rate": 0.0006,
+ "loss": 3.8239974975585938,
+ "step": 1845
+ },
+ {
+ "epoch": 25.643075578855395,
+ "grad_norm": 0.2166101336479187,
+ "learning_rate": 0.0006,
+ "loss": 3.8290855884552,
+ "step": 1846
+ },
+ {
+ "epoch": 25.657055482743555,
+ "grad_norm": 0.23738539218902588,
+ "learning_rate": 0.0006,
+ "loss": 3.7993364334106445,
+ "step": 1847
+ },
+ {
+ "epoch": 25.67103538663172,
+ "grad_norm": 0.23882314562797546,
+ "learning_rate": 0.0006,
+ "loss": 3.802586078643799,
+ "step": 1848
+ },
+ {
+ "epoch": 25.68501529051988,
+ "grad_norm": 0.24168142676353455,
+ "learning_rate": 0.0006,
+ "loss": 3.8303489685058594,
+ "step": 1849
+ },
+ {
+ "epoch": 25.698995194408038,
+ "grad_norm": 0.22423343360424042,
+ "learning_rate": 0.0006,
+ "loss": 3.836228370666504,
+ "step": 1850
+ },
+ {
+ "epoch": 25.712975098296198,
+ "grad_norm": 0.23816974461078644,
+ "learning_rate": 0.0006,
+ "loss": 3.8380274772644043,
+ "step": 1851
+ },
+ {
+ "epoch": 25.72695500218436,
+ "grad_norm": 0.22465108335018158,
+ "learning_rate": 0.0006,
+ "loss": 3.8496339321136475,
+ "step": 1852
+ },
+ {
+ "epoch": 25.74093490607252,
+ "grad_norm": 0.20792442560195923,
+ "learning_rate": 0.0006,
+ "loss": 3.797853946685791,
+ "step": 1853
+ },
+ {
+ "epoch": 25.75491480996068,
+ "grad_norm": 0.20770230889320374,
+ "learning_rate": 0.0006,
+ "loss": 3.842322826385498,
+ "step": 1854
+ },
+ {
+ "epoch": 25.76889471384884,
+ "grad_norm": 0.1928192526102066,
+ "learning_rate": 0.0006,
+ "loss": 3.836540699005127,
+ "step": 1855
+ },
+ {
+ "epoch": 25.782874617737004,
+ "grad_norm": 0.19045178592205048,
+ "learning_rate": 0.0006,
+ "loss": 3.7758889198303223,
+ "step": 1856
+ },
+ {
+ "epoch": 25.796854521625164,
+ "grad_norm": 0.205548495054245,
+ "learning_rate": 0.0006,
+ "loss": 3.8244709968566895,
+ "step": 1857
+ },
+ {
+ "epoch": 25.810834425513324,
+ "grad_norm": 0.20968270301818848,
+ "learning_rate": 0.0006,
+ "loss": 3.8376216888427734,
+ "step": 1858
+ },
+ {
+ "epoch": 25.824814329401484,
+ "grad_norm": 0.18917354941368103,
+ "learning_rate": 0.0006,
+ "loss": 3.8497915267944336,
+ "step": 1859
+ },
+ {
+ "epoch": 25.838794233289647,
+ "grad_norm": 0.2050701528787613,
+ "learning_rate": 0.0006,
+ "loss": 3.819628953933716,
+ "step": 1860
+ },
+ {
+ "epoch": 25.852774137177807,
+ "grad_norm": 0.1981319785118103,
+ "learning_rate": 0.0006,
+ "loss": 3.8007922172546387,
+ "step": 1861
+ },
+ {
+ "epoch": 25.866754041065967,
+ "grad_norm": 0.19055861234664917,
+ "learning_rate": 0.0006,
+ "loss": 3.8304519653320312,
+ "step": 1862
+ },
+ {
+ "epoch": 25.88073394495413,
+ "grad_norm": 0.19255517423152924,
+ "learning_rate": 0.0006,
+ "loss": 3.833280563354492,
+ "step": 1863
+ },
+ {
+ "epoch": 25.89471384884229,
+ "grad_norm": 0.19059430062770844,
+ "learning_rate": 0.0006,
+ "loss": 3.813796281814575,
+ "step": 1864
+ },
+ {
+ "epoch": 25.90869375273045,
+ "grad_norm": 0.18581309914588928,
+ "learning_rate": 0.0006,
+ "loss": 3.8211798667907715,
+ "step": 1865
+ },
+ {
+ "epoch": 25.92267365661861,
+ "grad_norm": 0.20181003212928772,
+ "learning_rate": 0.0006,
+ "loss": 3.8380484580993652,
+ "step": 1866
+ },
+ {
+ "epoch": 25.936653560506773,
+ "grad_norm": 0.22334498167037964,
+ "learning_rate": 0.0006,
+ "loss": 3.8294434547424316,
+ "step": 1867
+ },
+ {
+ "epoch": 25.950633464394933,
+ "grad_norm": 0.20456703007221222,
+ "learning_rate": 0.0006,
+ "loss": 3.819223642349243,
+ "step": 1868
+ },
+ {
+ "epoch": 25.964613368283093,
+ "grad_norm": 0.1885606348514557,
+ "learning_rate": 0.0006,
+ "loss": 3.8110103607177734,
+ "step": 1869
+ },
+ {
+ "epoch": 25.978593272171253,
+ "grad_norm": 0.18862110376358032,
+ "learning_rate": 0.0006,
+ "loss": 3.788691997528076,
+ "step": 1870
+ },
+ {
+ "epoch": 25.992573176059416,
+ "grad_norm": 0.19802744686603546,
+ "learning_rate": 0.0006,
+ "loss": 3.8423619270324707,
+ "step": 1871
+ },
+ {
+ "epoch": 26.0,
+ "grad_norm": 0.23762032389640808,
+ "learning_rate": 0.0006,
+ "loss": 3.7848567962646484,
+ "step": 1872
+ },
+ {
+ "epoch": 26.0,
+ "eval_loss": 4.054965019226074,
+ "eval_runtime": 44.2423,
+ "eval_samples_per_second": 55.196,
+ "eval_steps_per_second": 3.458,
+ "step": 1872
+ },
+ {
+ "epoch": 26.01397990388816,
+ "grad_norm": 0.21533054113388062,
+ "learning_rate": 0.0006,
+ "loss": 3.8123154640197754,
+ "step": 1873
+ },
+ {
+ "epoch": 26.027959807776323,
+ "grad_norm": 0.25094854831695557,
+ "learning_rate": 0.0006,
+ "loss": 3.7847447395324707,
+ "step": 1874
+ },
+ {
+ "epoch": 26.041939711664483,
+ "grad_norm": 0.24042077362537384,
+ "learning_rate": 0.0006,
+ "loss": 3.8033599853515625,
+ "step": 1875
+ },
+ {
+ "epoch": 26.055919615552643,
+ "grad_norm": 0.2425149381160736,
+ "learning_rate": 0.0006,
+ "loss": 3.7828550338745117,
+ "step": 1876
+ },
+ {
+ "epoch": 26.069899519440803,
+ "grad_norm": 0.2300514280796051,
+ "learning_rate": 0.0006,
+ "loss": 3.750882148742676,
+ "step": 1877
+ },
+ {
+ "epoch": 26.083879423328966,
+ "grad_norm": 0.2513943612575531,
+ "learning_rate": 0.0006,
+ "loss": 3.800323963165283,
+ "step": 1878
+ },
+ {
+ "epoch": 26.097859327217126,
+ "grad_norm": 0.2536966800689697,
+ "learning_rate": 0.0006,
+ "loss": 3.8198962211608887,
+ "step": 1879
+ },
+ {
+ "epoch": 26.111839231105286,
+ "grad_norm": 0.24483931064605713,
+ "learning_rate": 0.0006,
+ "loss": 3.825563907623291,
+ "step": 1880
+ },
+ {
+ "epoch": 26.125819134993446,
+ "grad_norm": 0.2502584755420685,
+ "learning_rate": 0.0006,
+ "loss": 3.78756046295166,
+ "step": 1881
+ },
+ {
+ "epoch": 26.13979903888161,
+ "grad_norm": 0.2695745527744293,
+ "learning_rate": 0.0006,
+ "loss": 3.8205409049987793,
+ "step": 1882
+ },
+ {
+ "epoch": 26.15377894276977,
+ "grad_norm": 0.2873472273349762,
+ "learning_rate": 0.0006,
+ "loss": 3.7880778312683105,
+ "step": 1883
+ },
+ {
+ "epoch": 26.16775884665793,
+ "grad_norm": 0.28609949350357056,
+ "learning_rate": 0.0006,
+ "loss": 3.788517951965332,
+ "step": 1884
+ },
+ {
+ "epoch": 26.18173875054609,
+ "grad_norm": 0.28352269530296326,
+ "learning_rate": 0.0006,
+ "loss": 3.778015613555908,
+ "step": 1885
+ },
+ {
+ "epoch": 26.195718654434252,
+ "grad_norm": 0.27055084705352783,
+ "learning_rate": 0.0006,
+ "loss": 3.7857203483581543,
+ "step": 1886
+ },
+ {
+ "epoch": 26.209698558322412,
+ "grad_norm": 0.255647748708725,
+ "learning_rate": 0.0006,
+ "loss": 3.791355609893799,
+ "step": 1887
+ },
+ {
+ "epoch": 26.22367846221057,
+ "grad_norm": 0.22624439001083374,
+ "learning_rate": 0.0006,
+ "loss": 3.7624831199645996,
+ "step": 1888
+ },
+ {
+ "epoch": 26.23765836609873,
+ "grad_norm": 0.2283596396446228,
+ "learning_rate": 0.0006,
+ "loss": 3.8052897453308105,
+ "step": 1889
+ },
+ {
+ "epoch": 26.251638269986895,
+ "grad_norm": 0.2336510866880417,
+ "learning_rate": 0.0006,
+ "loss": 3.789015054702759,
+ "step": 1890
+ },
+ {
+ "epoch": 26.265618173875055,
+ "grad_norm": 0.24107608199119568,
+ "learning_rate": 0.0006,
+ "loss": 3.756551742553711,
+ "step": 1891
+ },
+ {
+ "epoch": 26.279598077763215,
+ "grad_norm": 0.22438564896583557,
+ "learning_rate": 0.0006,
+ "loss": 3.797952651977539,
+ "step": 1892
+ },
+ {
+ "epoch": 26.293577981651374,
+ "grad_norm": 0.24594341218471527,
+ "learning_rate": 0.0006,
+ "loss": 3.7925708293914795,
+ "step": 1893
+ },
+ {
+ "epoch": 26.307557885539538,
+ "grad_norm": 0.23314352333545685,
+ "learning_rate": 0.0006,
+ "loss": 3.792447328567505,
+ "step": 1894
+ },
+ {
+ "epoch": 26.321537789427698,
+ "grad_norm": 0.20870383083820343,
+ "learning_rate": 0.0006,
+ "loss": 3.7888340950012207,
+ "step": 1895
+ },
+ {
+ "epoch": 26.335517693315857,
+ "grad_norm": 0.206504687666893,
+ "learning_rate": 0.0006,
+ "loss": 3.7856602668762207,
+ "step": 1896
+ },
+ {
+ "epoch": 26.34949759720402,
+ "grad_norm": 0.20193266868591309,
+ "learning_rate": 0.0006,
+ "loss": 3.810800552368164,
+ "step": 1897
+ },
+ {
+ "epoch": 26.36347750109218,
+ "grad_norm": 0.2143869698047638,
+ "learning_rate": 0.0006,
+ "loss": 3.818742275238037,
+ "step": 1898
+ },
+ {
+ "epoch": 26.37745740498034,
+ "grad_norm": 0.21388593316078186,
+ "learning_rate": 0.0006,
+ "loss": 3.7576632499694824,
+ "step": 1899
+ },
+ {
+ "epoch": 26.3914373088685,
+ "grad_norm": 0.1933414787054062,
+ "learning_rate": 0.0006,
+ "loss": 3.802579879760742,
+ "step": 1900
+ },
+ {
+ "epoch": 26.405417212756664,
+ "grad_norm": 0.18144549429416656,
+ "learning_rate": 0.0006,
+ "loss": 3.7830452919006348,
+ "step": 1901
+ },
+ {
+ "epoch": 26.419397116644824,
+ "grad_norm": 0.20027601718902588,
+ "learning_rate": 0.0006,
+ "loss": 3.8112521171569824,
+ "step": 1902
+ },
+ {
+ "epoch": 26.433377020532983,
+ "grad_norm": 0.19402910768985748,
+ "learning_rate": 0.0006,
+ "loss": 3.778012990951538,
+ "step": 1903
+ },
+ {
+ "epoch": 26.447356924421143,
+ "grad_norm": 0.19020743668079376,
+ "learning_rate": 0.0006,
+ "loss": 3.823355197906494,
+ "step": 1904
+ },
+ {
+ "epoch": 26.461336828309307,
+ "grad_norm": 0.1885242760181427,
+ "learning_rate": 0.0006,
+ "loss": 3.782108783721924,
+ "step": 1905
+ },
+ {
+ "epoch": 26.475316732197467,
+ "grad_norm": 0.2024235874414444,
+ "learning_rate": 0.0006,
+ "loss": 3.810448408126831,
+ "step": 1906
+ },
+ {
+ "epoch": 26.489296636085626,
+ "grad_norm": 0.21408027410507202,
+ "learning_rate": 0.0006,
+ "loss": 3.8185606002807617,
+ "step": 1907
+ },
+ {
+ "epoch": 26.503276539973786,
+ "grad_norm": 0.22810906171798706,
+ "learning_rate": 0.0006,
+ "loss": 3.8052706718444824,
+ "step": 1908
+ },
+ {
+ "epoch": 26.51725644386195,
+ "grad_norm": 0.21328197419643402,
+ "learning_rate": 0.0006,
+ "loss": 3.7858219146728516,
+ "step": 1909
+ },
+ {
+ "epoch": 26.53123634775011,
+ "grad_norm": 0.20843173563480377,
+ "learning_rate": 0.0006,
+ "loss": 3.8069310188293457,
+ "step": 1910
+ },
+ {
+ "epoch": 26.54521625163827,
+ "grad_norm": 0.2072986662387848,
+ "learning_rate": 0.0006,
+ "loss": 3.794975996017456,
+ "step": 1911
+ },
+ {
+ "epoch": 26.55919615552643,
+ "grad_norm": 0.2203216850757599,
+ "learning_rate": 0.0006,
+ "loss": 3.8070101737976074,
+ "step": 1912
+ },
+ {
+ "epoch": 26.573176059414592,
+ "grad_norm": 0.23449191451072693,
+ "learning_rate": 0.0006,
+ "loss": 3.828695774078369,
+ "step": 1913
+ },
+ {
+ "epoch": 26.587155963302752,
+ "grad_norm": 0.2222008854150772,
+ "learning_rate": 0.0006,
+ "loss": 3.781275749206543,
+ "step": 1914
+ },
+ {
+ "epoch": 26.601135867190912,
+ "grad_norm": 0.22328314185142517,
+ "learning_rate": 0.0006,
+ "loss": 3.7953736782073975,
+ "step": 1915
+ },
+ {
+ "epoch": 26.615115771079076,
+ "grad_norm": 0.2377961128950119,
+ "learning_rate": 0.0006,
+ "loss": 3.8428916931152344,
+ "step": 1916
+ },
+ {
+ "epoch": 26.629095674967235,
+ "grad_norm": 0.2546147108078003,
+ "learning_rate": 0.0006,
+ "loss": 3.7940590381622314,
+ "step": 1917
+ },
+ {
+ "epoch": 26.643075578855395,
+ "grad_norm": 0.24234509468078613,
+ "learning_rate": 0.0006,
+ "loss": 3.802234172821045,
+ "step": 1918
+ },
+ {
+ "epoch": 26.657055482743555,
+ "grad_norm": 0.21294651925563812,
+ "learning_rate": 0.0006,
+ "loss": 3.8159232139587402,
+ "step": 1919
+ },
+ {
+ "epoch": 26.67103538663172,
+ "grad_norm": 0.20008964836597443,
+ "learning_rate": 0.0006,
+ "loss": 3.796949863433838,
+ "step": 1920
+ },
+ {
+ "epoch": 26.68501529051988,
+ "grad_norm": 0.21031023561954498,
+ "learning_rate": 0.0006,
+ "loss": 3.8015570640563965,
+ "step": 1921
+ },
+ {
+ "epoch": 26.698995194408038,
+ "grad_norm": 0.2185603827238083,
+ "learning_rate": 0.0006,
+ "loss": 3.8022537231445312,
+ "step": 1922
+ },
+ {
+ "epoch": 26.712975098296198,
+ "grad_norm": 0.22957198321819305,
+ "learning_rate": 0.0006,
+ "loss": 3.7859907150268555,
+ "step": 1923
+ },
+ {
+ "epoch": 26.72695500218436,
+ "grad_norm": 0.23779156804084778,
+ "learning_rate": 0.0006,
+ "loss": 3.830345630645752,
+ "step": 1924
+ },
+ {
+ "epoch": 26.74093490607252,
+ "grad_norm": 0.23577193915843964,
+ "learning_rate": 0.0006,
+ "loss": 3.777338981628418,
+ "step": 1925
+ },
+ {
+ "epoch": 26.75491480996068,
+ "grad_norm": 0.2521933913230896,
+ "learning_rate": 0.0006,
+ "loss": 3.8215396404266357,
+ "step": 1926
+ },
+ {
+ "epoch": 26.76889471384884,
+ "grad_norm": 0.25050726532936096,
+ "learning_rate": 0.0006,
+ "loss": 3.817509651184082,
+ "step": 1927
+ },
+ {
+ "epoch": 26.782874617737004,
+ "grad_norm": 0.24442453682422638,
+ "learning_rate": 0.0006,
+ "loss": 3.8033013343811035,
+ "step": 1928
+ },
+ {
+ "epoch": 26.796854521625164,
+ "grad_norm": 0.2280828058719635,
+ "learning_rate": 0.0006,
+ "loss": 3.798625946044922,
+ "step": 1929
+ },
+ {
+ "epoch": 26.810834425513324,
+ "grad_norm": 0.23072117567062378,
+ "learning_rate": 0.0006,
+ "loss": 3.8109097480773926,
+ "step": 1930
+ },
+ {
+ "epoch": 26.824814329401484,
+ "grad_norm": 0.2690806984901428,
+ "learning_rate": 0.0006,
+ "loss": 3.7707223892211914,
+ "step": 1931
+ },
+ {
+ "epoch": 26.838794233289647,
+ "grad_norm": 0.24973517656326294,
+ "learning_rate": 0.0006,
+ "loss": 3.7788357734680176,
+ "step": 1932
+ },
+ {
+ "epoch": 26.852774137177807,
+ "grad_norm": 0.24221451580524445,
+ "learning_rate": 0.0006,
+ "loss": 3.8083114624023438,
+ "step": 1933
+ },
+ {
+ "epoch": 26.866754041065967,
+ "grad_norm": 0.23499037325382233,
+ "learning_rate": 0.0006,
+ "loss": 3.845512866973877,
+ "step": 1934
+ },
+ {
+ "epoch": 26.88073394495413,
+ "grad_norm": 0.2172643095254898,
+ "learning_rate": 0.0006,
+ "loss": 3.8171584606170654,
+ "step": 1935
+ },
+ {
+ "epoch": 26.89471384884229,
+ "grad_norm": 0.19935013353824615,
+ "learning_rate": 0.0006,
+ "loss": 3.808596611022949,
+ "step": 1936
+ },
+ {
+ "epoch": 26.90869375273045,
+ "grad_norm": 0.2077745944261551,
+ "learning_rate": 0.0006,
+ "loss": 3.842836856842041,
+ "step": 1937
+ },
+ {
+ "epoch": 26.92267365661861,
+ "grad_norm": 0.20017282664775848,
+ "learning_rate": 0.0006,
+ "loss": 3.791734457015991,
+ "step": 1938
+ },
+ {
+ "epoch": 26.936653560506773,
+ "grad_norm": 0.2082037627696991,
+ "learning_rate": 0.0006,
+ "loss": 3.7987842559814453,
+ "step": 1939
+ },
+ {
+ "epoch": 26.950633464394933,
+ "grad_norm": 0.21100632846355438,
+ "learning_rate": 0.0006,
+ "loss": 3.8033156394958496,
+ "step": 1940
+ },
+ {
+ "epoch": 26.964613368283093,
+ "grad_norm": 0.2091331034898758,
+ "learning_rate": 0.0006,
+ "loss": 3.8250908851623535,
+ "step": 1941
+ },
+ {
+ "epoch": 26.978593272171253,
+ "grad_norm": 0.19728544354438782,
+ "learning_rate": 0.0006,
+ "loss": 3.7934365272521973,
+ "step": 1942
+ },
+ {
+ "epoch": 26.992573176059416,
+ "grad_norm": 0.19266465306282043,
+ "learning_rate": 0.0006,
+ "loss": 3.8095879554748535,
+ "step": 1943
+ },
+ {
+ "epoch": 27.0,
+ "grad_norm": 0.2264554500579834,
+ "learning_rate": 0.0006,
+ "loss": 3.840135335922241,
+ "step": 1944
+ },
+ {
+ "epoch": 27.0,
+ "eval_loss": 4.046233654022217,
+ "eval_runtime": 44.0648,
+ "eval_samples_per_second": 55.418,
+ "eval_steps_per_second": 3.472,
+ "step": 1944
+ },
+ {
+ "epoch": 27.01397990388816,
+ "grad_norm": 0.24101831018924713,
+ "learning_rate": 0.0006,
+ "loss": 3.7463197708129883,
+ "step": 1945
+ },
+ {
+ "epoch": 27.027959807776323,
+ "grad_norm": 0.2917300760746002,
+ "learning_rate": 0.0006,
+ "loss": 3.769083261489868,
+ "step": 1946
+ },
+ {
+ "epoch": 27.041939711664483,
+ "grad_norm": 0.30864080786705017,
+ "learning_rate": 0.0006,
+ "loss": 3.7774248123168945,
+ "step": 1947
+ },
+ {
+ "epoch": 27.055919615552643,
+ "grad_norm": 0.28574317693710327,
+ "learning_rate": 0.0006,
+ "loss": 3.759530544281006,
+ "step": 1948
+ },
+ {
+ "epoch": 27.069899519440803,
+ "grad_norm": 0.23381628096103668,
+ "learning_rate": 0.0006,
+ "loss": 3.764347791671753,
+ "step": 1949
+ },
+ {
+ "epoch": 27.083879423328966,
+ "grad_norm": 0.2717961072921753,
+ "learning_rate": 0.0006,
+ "loss": 3.785306692123413,
+ "step": 1950
+ },
+ {
+ "epoch": 27.097859327217126,
+ "grad_norm": 0.2753375470638275,
+ "learning_rate": 0.0006,
+ "loss": 3.7511696815490723,
+ "step": 1951
+ },
+ {
+ "epoch": 27.111839231105286,
+ "grad_norm": 0.260250061750412,
+ "learning_rate": 0.0006,
+ "loss": 3.7775721549987793,
+ "step": 1952
+ },
+ {
+ "epoch": 27.125819134993446,
+ "grad_norm": 0.2462741732597351,
+ "learning_rate": 0.0006,
+ "loss": 3.775203227996826,
+ "step": 1953
+ },
+ {
+ "epoch": 27.13979903888161,
+ "grad_norm": 0.23599569499492645,
+ "learning_rate": 0.0006,
+ "loss": 3.7580947875976562,
+ "step": 1954
+ },
+ {
+ "epoch": 27.15377894276977,
+ "grad_norm": 0.21749968826770782,
+ "learning_rate": 0.0006,
+ "loss": 3.778254985809326,
+ "step": 1955
+ },
+ {
+ "epoch": 27.16775884665793,
+ "grad_norm": 0.22210343182086945,
+ "learning_rate": 0.0006,
+ "loss": 3.734727144241333,
+ "step": 1956
+ },
+ {
+ "epoch": 27.18173875054609,
+ "grad_norm": 0.23376141488552094,
+ "learning_rate": 0.0006,
+ "loss": 3.7892181873321533,
+ "step": 1957
+ },
+ {
+ "epoch": 27.195718654434252,
+ "grad_norm": 0.21751847863197327,
+ "learning_rate": 0.0006,
+ "loss": 3.801621913909912,
+ "step": 1958
+ },
+ {
+ "epoch": 27.209698558322412,
+ "grad_norm": 0.22995133697986603,
+ "learning_rate": 0.0006,
+ "loss": 3.8031363487243652,
+ "step": 1959
+ },
+ {
+ "epoch": 27.22367846221057,
+ "grad_norm": 0.22716350853443146,
+ "learning_rate": 0.0006,
+ "loss": 3.7591521739959717,
+ "step": 1960
+ },
+ {
+ "epoch": 27.23765836609873,
+ "grad_norm": 0.20819596946239471,
+ "learning_rate": 0.0006,
+ "loss": 3.7988929748535156,
+ "step": 1961
+ },
+ {
+ "epoch": 27.251638269986895,
+ "grad_norm": 0.19861504435539246,
+ "learning_rate": 0.0006,
+ "loss": 3.7752838134765625,
+ "step": 1962
+ },
+ {
+ "epoch": 27.265618173875055,
+ "grad_norm": 0.1959371268749237,
+ "learning_rate": 0.0006,
+ "loss": 3.7707290649414062,
+ "step": 1963
+ },
+ {
+ "epoch": 27.279598077763215,
+ "grad_norm": 0.18772225081920624,
+ "learning_rate": 0.0006,
+ "loss": 3.7714555263519287,
+ "step": 1964
+ },
+ {
+ "epoch": 27.293577981651374,
+ "grad_norm": 0.20839282870292664,
+ "learning_rate": 0.0006,
+ "loss": 3.7857258319854736,
+ "step": 1965
+ },
+ {
+ "epoch": 27.307557885539538,
+ "grad_norm": 0.22521957755088806,
+ "learning_rate": 0.0006,
+ "loss": 3.776909351348877,
+ "step": 1966
+ },
+ {
+ "epoch": 27.321537789427698,
+ "grad_norm": 0.19533076882362366,
+ "learning_rate": 0.0006,
+ "loss": 3.8152523040771484,
+ "step": 1967
+ },
+ {
+ "epoch": 27.335517693315857,
+ "grad_norm": 0.18678881227970123,
+ "learning_rate": 0.0006,
+ "loss": 3.751555919647217,
+ "step": 1968
+ },
+ {
+ "epoch": 27.34949759720402,
+ "grad_norm": 0.18257129192352295,
+ "learning_rate": 0.0006,
+ "loss": 3.7701754570007324,
+ "step": 1969
+ },
+ {
+ "epoch": 27.36347750109218,
+ "grad_norm": 0.18191468715667725,
+ "learning_rate": 0.0006,
+ "loss": 3.817451238632202,
+ "step": 1970
+ },
+ {
+ "epoch": 27.37745740498034,
+ "grad_norm": 0.18665607273578644,
+ "learning_rate": 0.0006,
+ "loss": 3.78645658493042,
+ "step": 1971
+ },
+ {
+ "epoch": 27.3914373088685,
+ "grad_norm": 0.19604510068893433,
+ "learning_rate": 0.0006,
+ "loss": 3.7735626697540283,
+ "step": 1972
+ },
+ {
+ "epoch": 27.405417212756664,
+ "grad_norm": 0.20136640965938568,
+ "learning_rate": 0.0006,
+ "loss": 3.77310848236084,
+ "step": 1973
+ },
+ {
+ "epoch": 27.419397116644824,
+ "grad_norm": 0.19314947724342346,
+ "learning_rate": 0.0006,
+ "loss": 3.8084068298339844,
+ "step": 1974
+ },
+ {
+ "epoch": 27.433377020532983,
+ "grad_norm": 0.20761604607105255,
+ "learning_rate": 0.0006,
+ "loss": 3.80732798576355,
+ "step": 1975
+ },
+ {
+ "epoch": 27.447356924421143,
+ "grad_norm": 0.2239987850189209,
+ "learning_rate": 0.0006,
+ "loss": 3.7950329780578613,
+ "step": 1976
+ },
+ {
+ "epoch": 27.461336828309307,
+ "grad_norm": 0.22146444022655487,
+ "learning_rate": 0.0006,
+ "loss": 3.7957234382629395,
+ "step": 1977
+ },
+ {
+ "epoch": 27.475316732197467,
+ "grad_norm": 0.23218585550785065,
+ "learning_rate": 0.0006,
+ "loss": 3.806377410888672,
+ "step": 1978
+ },
+ {
+ "epoch": 27.489296636085626,
+ "grad_norm": 0.23549026250839233,
+ "learning_rate": 0.0006,
+ "loss": 3.7833383083343506,
+ "step": 1979
+ },
+ {
+ "epoch": 27.503276539973786,
+ "grad_norm": 0.24219457805156708,
+ "learning_rate": 0.0006,
+ "loss": 3.8154187202453613,
+ "step": 1980
+ },
+ {
+ "epoch": 27.51725644386195,
+ "grad_norm": 0.23703953623771667,
+ "learning_rate": 0.0006,
+ "loss": 3.7846405506134033,
+ "step": 1981
+ },
+ {
+ "epoch": 27.53123634775011,
+ "grad_norm": 0.23596109449863434,
+ "learning_rate": 0.0006,
+ "loss": 3.7698163986206055,
+ "step": 1982
+ },
+ {
+ "epoch": 27.54521625163827,
+ "grad_norm": 0.23073506355285645,
+ "learning_rate": 0.0006,
+ "loss": 3.8114185333251953,
+ "step": 1983
+ },
+ {
+ "epoch": 27.55919615552643,
+ "grad_norm": 0.24761143326759338,
+ "learning_rate": 0.0006,
+ "loss": 3.7548117637634277,
+ "step": 1984
+ },
+ {
+ "epoch": 27.573176059414592,
+ "grad_norm": 0.2834068238735199,
+ "learning_rate": 0.0006,
+ "loss": 3.7990212440490723,
+ "step": 1985
+ },
+ {
+ "epoch": 27.587155963302752,
+ "grad_norm": 0.29774922132492065,
+ "learning_rate": 0.0006,
+ "loss": 3.7845072746276855,
+ "step": 1986
+ },
+ {
+ "epoch": 27.601135867190912,
+ "grad_norm": 0.2732089161872864,
+ "learning_rate": 0.0006,
+ "loss": 3.8050694465637207,
+ "step": 1987
+ },
+ {
+ "epoch": 27.615115771079076,
+ "grad_norm": 0.24433180689811707,
+ "learning_rate": 0.0006,
+ "loss": 3.762704372406006,
+ "step": 1988
+ },
+ {
+ "epoch": 27.629095674967235,
+ "grad_norm": 0.21340419352054596,
+ "learning_rate": 0.0006,
+ "loss": 3.826023817062378,
+ "step": 1989
+ },
+ {
+ "epoch": 27.643075578855395,
+ "grad_norm": 0.22518761456012726,
+ "learning_rate": 0.0006,
+ "loss": 3.7823970317840576,
+ "step": 1990
+ },
+ {
+ "epoch": 27.657055482743555,
+ "grad_norm": 0.2196940928697586,
+ "learning_rate": 0.0006,
+ "loss": 3.787463426589966,
+ "step": 1991
+ },
+ {
+ "epoch": 27.67103538663172,
+ "grad_norm": 0.21906471252441406,
+ "learning_rate": 0.0006,
+ "loss": 3.7856104373931885,
+ "step": 1992
+ },
+ {
+ "epoch": 27.68501529051988,
+ "grad_norm": 0.2280956357717514,
+ "learning_rate": 0.0006,
+ "loss": 3.7829794883728027,
+ "step": 1993
+ },
+ {
+ "epoch": 27.698995194408038,
+ "grad_norm": 0.22567005455493927,
+ "learning_rate": 0.0006,
+ "loss": 3.762316942214966,
+ "step": 1994
+ },
+ {
+ "epoch": 27.712975098296198,
+ "grad_norm": 0.21703341603279114,
+ "learning_rate": 0.0006,
+ "loss": 3.772535800933838,
+ "step": 1995
+ },
+ {
+ "epoch": 27.72695500218436,
+ "grad_norm": 0.20586732029914856,
+ "learning_rate": 0.0006,
+ "loss": 3.775930881500244,
+ "step": 1996
+ },
+ {
+ "epoch": 27.74093490607252,
+ "grad_norm": 0.2126319408416748,
+ "learning_rate": 0.0006,
+ "loss": 3.793353796005249,
+ "step": 1997
+ },
+ {
+ "epoch": 27.75491480996068,
+ "grad_norm": 0.19664280116558075,
+ "learning_rate": 0.0006,
+ "loss": 3.7721195220947266,
+ "step": 1998
+ },
+ {
+ "epoch": 27.76889471384884,
+ "grad_norm": 0.17695854604244232,
+ "learning_rate": 0.0006,
+ "loss": 3.7931227684020996,
+ "step": 1999
+ },
+ {
+ "epoch": 27.782874617737004,
+ "grad_norm": 0.1899620145559311,
+ "learning_rate": 0.0006,
+ "loss": 3.798692226409912,
+ "step": 2000
+ },
+ {
+ "epoch": 27.796854521625164,
+ "grad_norm": 0.20334762334823608,
+ "learning_rate": 0.0006,
+ "loss": 3.774670124053955,
+ "step": 2001
+ },
+ {
+ "epoch": 27.810834425513324,
+ "grad_norm": 0.21150588989257812,
+ "learning_rate": 0.0006,
+ "loss": 3.803859233856201,
+ "step": 2002
+ },
+ {
+ "epoch": 27.824814329401484,
+ "grad_norm": 0.20425523817539215,
+ "learning_rate": 0.0006,
+ "loss": 3.810410976409912,
+ "step": 2003
+ },
+ {
+ "epoch": 27.838794233289647,
+ "grad_norm": 0.20468413829803467,
+ "learning_rate": 0.0006,
+ "loss": 3.800917625427246,
+ "step": 2004
+ },
+ {
+ "epoch": 27.852774137177807,
+ "grad_norm": 0.2113286256790161,
+ "learning_rate": 0.0006,
+ "loss": 3.7581989765167236,
+ "step": 2005
+ },
+ {
+ "epoch": 27.866754041065967,
+ "grad_norm": 0.2098054736852646,
+ "learning_rate": 0.0006,
+ "loss": 3.7921502590179443,
+ "step": 2006
+ },
+ {
+ "epoch": 27.88073394495413,
+ "grad_norm": 0.21701586246490479,
+ "learning_rate": 0.0006,
+ "loss": 3.8166770935058594,
+ "step": 2007
+ },
+ {
+ "epoch": 27.89471384884229,
+ "grad_norm": 0.2086625099182129,
+ "learning_rate": 0.0006,
+ "loss": 3.7732229232788086,
+ "step": 2008
+ },
+ {
+ "epoch": 27.90869375273045,
+ "grad_norm": 0.2186812162399292,
+ "learning_rate": 0.0006,
+ "loss": 3.8067402839660645,
+ "step": 2009
+ },
+ {
+ "epoch": 27.92267365661861,
+ "grad_norm": 0.2168985903263092,
+ "learning_rate": 0.0006,
+ "loss": 3.798159122467041,
+ "step": 2010
+ },
+ {
+ "epoch": 27.936653560506773,
+ "grad_norm": 0.23713620007038116,
+ "learning_rate": 0.0006,
+ "loss": 3.7958693504333496,
+ "step": 2011
+ },
+ {
+ "epoch": 27.950633464394933,
+ "grad_norm": 0.23592841625213623,
+ "learning_rate": 0.0006,
+ "loss": 3.795126438140869,
+ "step": 2012
+ },
+ {
+ "epoch": 27.964613368283093,
+ "grad_norm": 0.22210197150707245,
+ "learning_rate": 0.0006,
+ "loss": 3.791013240814209,
+ "step": 2013
+ },
+ {
+ "epoch": 27.978593272171253,
+ "grad_norm": 0.23190008103847504,
+ "learning_rate": 0.0006,
+ "loss": 3.813408374786377,
+ "step": 2014
+ },
+ {
+ "epoch": 27.992573176059416,
+ "grad_norm": 0.22158131003379822,
+ "learning_rate": 0.0006,
+ "loss": 3.7975716590881348,
+ "step": 2015
+ },
+ {
+ "epoch": 28.0,
+ "grad_norm": 0.2300519198179245,
+ "learning_rate": 0.0006,
+ "loss": 3.776214838027954,
+ "step": 2016
+ },
+ {
+ "epoch": 28.0,
+ "eval_loss": 4.04406213760376,
+ "eval_runtime": 44.0285,
+ "eval_samples_per_second": 55.464,
+ "eval_steps_per_second": 3.475,
+ "step": 2016
+ },
+ {
+ "epoch": 28.01397990388816,
+ "grad_norm": 0.21007688343524933,
+ "learning_rate": 0.0006,
+ "loss": 3.7366907596588135,
+ "step": 2017
+ },
+ {
+ "epoch": 28.027959807776323,
+ "grad_norm": 0.1941644549369812,
+ "learning_rate": 0.0006,
+ "loss": 3.744373321533203,
+ "step": 2018
+ },
+ {
+ "epoch": 28.041939711664483,
+ "grad_norm": 0.21308493614196777,
+ "learning_rate": 0.0006,
+ "loss": 3.7650012969970703,
+ "step": 2019
+ },
+ {
+ "epoch": 28.055919615552643,
+ "grad_norm": 0.20114868879318237,
+ "learning_rate": 0.0006,
+ "loss": 3.7652382850646973,
+ "step": 2020
+ },
+ {
+ "epoch": 28.069899519440803,
+ "grad_norm": 0.20266319811344147,
+ "learning_rate": 0.0006,
+ "loss": 3.7710442543029785,
+ "step": 2021
+ },
+ {
+ "epoch": 28.083879423328966,
+ "grad_norm": 0.205102801322937,
+ "learning_rate": 0.0006,
+ "loss": 3.7515463829040527,
+ "step": 2022
+ },
+ {
+ "epoch": 28.097859327217126,
+ "grad_norm": 0.22002041339874268,
+ "learning_rate": 0.0006,
+ "loss": 3.762019157409668,
+ "step": 2023
+ },
+ {
+ "epoch": 28.111839231105286,
+ "grad_norm": 0.2063235342502594,
+ "learning_rate": 0.0006,
+ "loss": 3.765453338623047,
+ "step": 2024
+ },
+ {
+ "epoch": 28.125819134993446,
+ "grad_norm": 0.19145619869232178,
+ "learning_rate": 0.0006,
+ "loss": 3.769411325454712,
+ "step": 2025
+ },
+ {
+ "epoch": 28.13979903888161,
+ "grad_norm": 0.19308455288410187,
+ "learning_rate": 0.0006,
+ "loss": 3.8009989261627197,
+ "step": 2026
+ },
+ {
+ "epoch": 28.15377894276977,
+ "grad_norm": 0.220510333776474,
+ "learning_rate": 0.0006,
+ "loss": 3.7582602500915527,
+ "step": 2027
+ },
+ {
+ "epoch": 28.16775884665793,
+ "grad_norm": 0.22855883836746216,
+ "learning_rate": 0.0006,
+ "loss": 3.803917407989502,
+ "step": 2028
+ },
+ {
+ "epoch": 28.18173875054609,
+ "grad_norm": 0.24206340312957764,
+ "learning_rate": 0.0006,
+ "loss": 3.764101028442383,
+ "step": 2029
+ },
+ {
+ "epoch": 28.195718654434252,
+ "grad_norm": 0.23973612487316132,
+ "learning_rate": 0.0006,
+ "loss": 3.787308931350708,
+ "step": 2030
+ },
+ {
+ "epoch": 28.209698558322412,
+ "grad_norm": 0.21400697529315948,
+ "learning_rate": 0.0006,
+ "loss": 3.7706117630004883,
+ "step": 2031
+ },
+ {
+ "epoch": 28.22367846221057,
+ "grad_norm": 0.21983976662158966,
+ "learning_rate": 0.0006,
+ "loss": 3.772731304168701,
+ "step": 2032
+ },
+ {
+ "epoch": 28.23765836609873,
+ "grad_norm": 0.22427113354206085,
+ "learning_rate": 0.0006,
+ "loss": 3.7724413871765137,
+ "step": 2033
+ },
+ {
+ "epoch": 28.251638269986895,
+ "grad_norm": 0.23665079474449158,
+ "learning_rate": 0.0006,
+ "loss": 3.769845962524414,
+ "step": 2034
+ },
+ {
+ "epoch": 28.265618173875055,
+ "grad_norm": 0.22663180530071259,
+ "learning_rate": 0.0006,
+ "loss": 3.764380931854248,
+ "step": 2035
+ },
+ {
+ "epoch": 28.279598077763215,
+ "grad_norm": 0.21094927191734314,
+ "learning_rate": 0.0006,
+ "loss": 3.7598326206207275,
+ "step": 2036
+ },
+ {
+ "epoch": 28.293577981651374,
+ "grad_norm": 0.20419518649578094,
+ "learning_rate": 0.0006,
+ "loss": 3.7737207412719727,
+ "step": 2037
+ },
+ {
+ "epoch": 28.307557885539538,
+ "grad_norm": 0.2171909660100937,
+ "learning_rate": 0.0006,
+ "loss": 3.7499468326568604,
+ "step": 2038
+ },
+ {
+ "epoch": 28.321537789427698,
+ "grad_norm": 0.22749298810958862,
+ "learning_rate": 0.0006,
+ "loss": 3.767536163330078,
+ "step": 2039
+ },
+ {
+ "epoch": 28.335517693315857,
+ "grad_norm": 0.22821909189224243,
+ "learning_rate": 0.0006,
+ "loss": 3.744386672973633,
+ "step": 2040
+ },
+ {
+ "epoch": 28.34949759720402,
+ "grad_norm": 0.2227880209684372,
+ "learning_rate": 0.0006,
+ "loss": 3.72955322265625,
+ "step": 2041
+ },
+ {
+ "epoch": 28.36347750109218,
+ "grad_norm": 0.22204327583312988,
+ "learning_rate": 0.0006,
+ "loss": 3.793854236602783,
+ "step": 2042
+ },
+ {
+ "epoch": 28.37745740498034,
+ "grad_norm": 0.21621409058570862,
+ "learning_rate": 0.0006,
+ "loss": 3.775379180908203,
+ "step": 2043
+ },
+ {
+ "epoch": 28.3914373088685,
+ "grad_norm": 0.2439221441745758,
+ "learning_rate": 0.0006,
+ "loss": 3.727464199066162,
+ "step": 2044
+ },
+ {
+ "epoch": 28.405417212756664,
+ "grad_norm": 0.24408605694770813,
+ "learning_rate": 0.0006,
+ "loss": 3.761747360229492,
+ "step": 2045
+ },
+ {
+ "epoch": 28.419397116644824,
+ "grad_norm": 0.26118648052215576,
+ "learning_rate": 0.0006,
+ "loss": 3.7587313652038574,
+ "step": 2046
+ },
+ {
+ "epoch": 28.433377020532983,
+ "grad_norm": 0.25948166847229004,
+ "learning_rate": 0.0006,
+ "loss": 3.7698440551757812,
+ "step": 2047
+ },
+ {
+ "epoch": 28.447356924421143,
+ "grad_norm": 0.26413780450820923,
+ "learning_rate": 0.0006,
+ "loss": 3.799107551574707,
+ "step": 2048
+ },
+ {
+ "epoch": 28.461336828309307,
+ "grad_norm": 0.2687148153781891,
+ "learning_rate": 0.0006,
+ "loss": 3.7564382553100586,
+ "step": 2049
+ },
+ {
+ "epoch": 28.475316732197467,
+ "grad_norm": 0.2676694691181183,
+ "learning_rate": 0.0006,
+ "loss": 3.754267692565918,
+ "step": 2050
+ },
+ {
+ "epoch": 28.489296636085626,
+ "grad_norm": 0.27275168895721436,
+ "learning_rate": 0.0006,
+ "loss": 3.802988052368164,
+ "step": 2051
+ },
+ {
+ "epoch": 28.503276539973786,
+ "grad_norm": 0.28783538937568665,
+ "learning_rate": 0.0006,
+ "loss": 3.762540817260742,
+ "step": 2052
+ },
+ {
+ "epoch": 28.51725644386195,
+ "grad_norm": 0.2628997266292572,
+ "learning_rate": 0.0006,
+ "loss": 3.7933349609375,
+ "step": 2053
+ },
+ {
+ "epoch": 28.53123634775011,
+ "grad_norm": 0.2498515099287033,
+ "learning_rate": 0.0006,
+ "loss": 3.7773094177246094,
+ "step": 2054
+ },
+ {
+ "epoch": 28.54521625163827,
+ "grad_norm": 0.22625942528247833,
+ "learning_rate": 0.0006,
+ "loss": 3.803457021713257,
+ "step": 2055
+ },
+ {
+ "epoch": 28.55919615552643,
+ "grad_norm": 0.21488751471042633,
+ "learning_rate": 0.0006,
+ "loss": 3.78924560546875,
+ "step": 2056
+ },
+ {
+ "epoch": 28.573176059414592,
+ "grad_norm": 0.22041267156600952,
+ "learning_rate": 0.0006,
+ "loss": 3.79361629486084,
+ "step": 2057
+ },
+ {
+ "epoch": 28.587155963302752,
+ "grad_norm": 0.23164816200733185,
+ "learning_rate": 0.0006,
+ "loss": 3.735037326812744,
+ "step": 2058
+ },
+ {
+ "epoch": 28.601135867190912,
+ "grad_norm": 0.22371916472911835,
+ "learning_rate": 0.0006,
+ "loss": 3.731417179107666,
+ "step": 2059
+ },
+ {
+ "epoch": 28.615115771079076,
+ "grad_norm": 0.2280314862728119,
+ "learning_rate": 0.0006,
+ "loss": 3.796154499053955,
+ "step": 2060
+ },
+ {
+ "epoch": 28.629095674967235,
+ "grad_norm": 0.21386604011058807,
+ "learning_rate": 0.0006,
+ "loss": 3.778648614883423,
+ "step": 2061
+ },
+ {
+ "epoch": 28.643075578855395,
+ "grad_norm": 0.20433050394058228,
+ "learning_rate": 0.0006,
+ "loss": 3.772826910018921,
+ "step": 2062
+ },
+ {
+ "epoch": 28.657055482743555,
+ "grad_norm": 0.2049262523651123,
+ "learning_rate": 0.0006,
+ "loss": 3.7410364151000977,
+ "step": 2063
+ },
+ {
+ "epoch": 28.67103538663172,
+ "grad_norm": 0.22041259706020355,
+ "learning_rate": 0.0006,
+ "loss": 3.796724319458008,
+ "step": 2064
+ },
+ {
+ "epoch": 28.68501529051988,
+ "grad_norm": 0.2018800675868988,
+ "learning_rate": 0.0006,
+ "loss": 3.775252342224121,
+ "step": 2065
+ },
+ {
+ "epoch": 28.698995194408038,
+ "grad_norm": 0.2159280925989151,
+ "learning_rate": 0.0006,
+ "loss": 3.766021251678467,
+ "step": 2066
+ },
+ {
+ "epoch": 28.712975098296198,
+ "grad_norm": 0.2072775512933731,
+ "learning_rate": 0.0006,
+ "loss": 3.765397548675537,
+ "step": 2067
+ },
+ {
+ "epoch": 28.72695500218436,
+ "grad_norm": 0.19592848420143127,
+ "learning_rate": 0.0006,
+ "loss": 3.8151614665985107,
+ "step": 2068
+ },
+ {
+ "epoch": 28.74093490607252,
+ "grad_norm": 0.19266322255134583,
+ "learning_rate": 0.0006,
+ "loss": 3.774945020675659,
+ "step": 2069
+ },
+ {
+ "epoch": 28.75491480996068,
+ "grad_norm": 0.19442392885684967,
+ "learning_rate": 0.0006,
+ "loss": 3.816283702850342,
+ "step": 2070
+ },
+ {
+ "epoch": 28.76889471384884,
+ "grad_norm": 0.19080746173858643,
+ "learning_rate": 0.0006,
+ "loss": 3.7784247398376465,
+ "step": 2071
+ },
+ {
+ "epoch": 28.782874617737004,
+ "grad_norm": 0.20150451362133026,
+ "learning_rate": 0.0006,
+ "loss": 3.7710249423980713,
+ "step": 2072
+ },
+ {
+ "epoch": 28.796854521625164,
+ "grad_norm": 0.1835816204547882,
+ "learning_rate": 0.0006,
+ "loss": 3.750032901763916,
+ "step": 2073
+ },
+ {
+ "epoch": 28.810834425513324,
+ "grad_norm": 0.1855502873659134,
+ "learning_rate": 0.0006,
+ "loss": 3.7276318073272705,
+ "step": 2074
+ },
+ {
+ "epoch": 28.824814329401484,
+ "grad_norm": 0.18683169782161713,
+ "learning_rate": 0.0006,
+ "loss": 3.7516555786132812,
+ "step": 2075
+ },
+ {
+ "epoch": 28.838794233289647,
+ "grad_norm": 0.2034577578306198,
+ "learning_rate": 0.0006,
+ "loss": 3.749875068664551,
+ "step": 2076
+ },
+ {
+ "epoch": 28.852774137177807,
+ "grad_norm": 0.2234230488538742,
+ "learning_rate": 0.0006,
+ "loss": 3.791429042816162,
+ "step": 2077
+ },
+ {
+ "epoch": 28.866754041065967,
+ "grad_norm": 0.25600525736808777,
+ "learning_rate": 0.0006,
+ "loss": 3.7769298553466797,
+ "step": 2078
+ },
+ {
+ "epoch": 28.88073394495413,
+ "grad_norm": 0.2741529643535614,
+ "learning_rate": 0.0006,
+ "loss": 3.771848201751709,
+ "step": 2079
+ },
+ {
+ "epoch": 28.89471384884229,
+ "grad_norm": 0.2710304260253906,
+ "learning_rate": 0.0006,
+ "loss": 3.8235626220703125,
+ "step": 2080
+ },
+ {
+ "epoch": 28.90869375273045,
+ "grad_norm": 0.25497519969940186,
+ "learning_rate": 0.0006,
+ "loss": 3.811288595199585,
+ "step": 2081
+ },
+ {
+ "epoch": 28.92267365661861,
+ "grad_norm": 0.25689464807510376,
+ "learning_rate": 0.0006,
+ "loss": 3.7848939895629883,
+ "step": 2082
+ },
+ {
+ "epoch": 28.936653560506773,
+ "grad_norm": 0.2794921398162842,
+ "learning_rate": 0.0006,
+ "loss": 3.7836732864379883,
+ "step": 2083
+ },
+ {
+ "epoch": 28.950633464394933,
+ "grad_norm": 0.24730202555656433,
+ "learning_rate": 0.0006,
+ "loss": 3.7703347206115723,
+ "step": 2084
+ },
+ {
+ "epoch": 28.964613368283093,
+ "grad_norm": 0.21078833937644958,
+ "learning_rate": 0.0006,
+ "loss": 3.7521653175354004,
+ "step": 2085
+ },
+ {
+ "epoch": 28.978593272171253,
+ "grad_norm": 0.2188870757818222,
+ "learning_rate": 0.0006,
+ "loss": 3.769604206085205,
+ "step": 2086
+ },
+ {
+ "epoch": 28.992573176059416,
+ "grad_norm": 0.20447929203510284,
+ "learning_rate": 0.0006,
+ "loss": 3.7842764854431152,
+ "step": 2087
+ },
+ {
+ "epoch": 29.0,
+ "grad_norm": 0.21607689559459686,
+ "learning_rate": 0.0006,
+ "loss": 3.7428855895996094,
+ "step": 2088
+ },
+ {
+ "epoch": 29.0,
+ "eval_loss": 4.0355753898620605,
+ "eval_runtime": 44.1435,
+ "eval_samples_per_second": 55.32,
+ "eval_steps_per_second": 3.466,
+ "step": 2088
+ },
+ {
+ "epoch": 29.01397990388816,
+ "grad_norm": 0.21270133554935455,
+ "learning_rate": 0.0006,
+ "loss": 3.7548413276672363,
+ "step": 2089
+ },
+ {
+ "epoch": 29.027959807776323,
+ "grad_norm": 0.21576301753520966,
+ "learning_rate": 0.0006,
+ "loss": 3.754613161087036,
+ "step": 2090
+ },
+ {
+ "epoch": 29.041939711664483,
+ "grad_norm": 0.2162923663854599,
+ "learning_rate": 0.0006,
+ "loss": 3.755772590637207,
+ "step": 2091
+ },
+ {
+ "epoch": 29.055919615552643,
+ "grad_norm": 0.22236663103103638,
+ "learning_rate": 0.0006,
+ "loss": 3.743497848510742,
+ "step": 2092
+ },
+ {
+ "epoch": 29.069899519440803,
+ "grad_norm": 0.2391042858362198,
+ "learning_rate": 0.0006,
+ "loss": 3.749204158782959,
+ "step": 2093
+ },
+ {
+ "epoch": 29.083879423328966,
+ "grad_norm": 0.23387965559959412,
+ "learning_rate": 0.0006,
+ "loss": 3.7286791801452637,
+ "step": 2094
+ },
+ {
+ "epoch": 29.097859327217126,
+ "grad_norm": 0.23677746951580048,
+ "learning_rate": 0.0006,
+ "loss": 3.755279541015625,
+ "step": 2095
+ },
+ {
+ "epoch": 29.111839231105286,
+ "grad_norm": 0.22771087288856506,
+ "learning_rate": 0.0006,
+ "loss": 3.722566604614258,
+ "step": 2096
+ },
+ {
+ "epoch": 29.125819134993446,
+ "grad_norm": 0.2132875621318817,
+ "learning_rate": 0.0006,
+ "loss": 3.748939037322998,
+ "step": 2097
+ },
+ {
+ "epoch": 29.13979903888161,
+ "grad_norm": 0.2033746838569641,
+ "learning_rate": 0.0006,
+ "loss": 3.7393670082092285,
+ "step": 2098
+ },
+ {
+ "epoch": 29.15377894276977,
+ "grad_norm": 0.1997237652540207,
+ "learning_rate": 0.0006,
+ "loss": 3.718498945236206,
+ "step": 2099
+ },
+ {
+ "epoch": 29.16775884665793,
+ "grad_norm": 0.19102543592453003,
+ "learning_rate": 0.0006,
+ "loss": 3.748950719833374,
+ "step": 2100
+ },
+ {
+ "epoch": 29.18173875054609,
+ "grad_norm": 0.19801580905914307,
+ "learning_rate": 0.0006,
+ "loss": 3.7123501300811768,
+ "step": 2101
+ },
+ {
+ "epoch": 29.195718654434252,
+ "grad_norm": 0.20186249911785126,
+ "learning_rate": 0.0006,
+ "loss": 3.7632713317871094,
+ "step": 2102
+ },
+ {
+ "epoch": 29.209698558322412,
+ "grad_norm": 0.22725415229797363,
+ "learning_rate": 0.0006,
+ "loss": 3.753506660461426,
+ "step": 2103
+ },
+ {
+ "epoch": 29.22367846221057,
+ "grad_norm": 0.23138119280338287,
+ "learning_rate": 0.0006,
+ "loss": 3.753282070159912,
+ "step": 2104
+ },
+ {
+ "epoch": 29.23765836609873,
+ "grad_norm": 0.23171944916248322,
+ "learning_rate": 0.0006,
+ "loss": 3.73783540725708,
+ "step": 2105
+ },
+ {
+ "epoch": 29.251638269986895,
+ "grad_norm": 0.2166522741317749,
+ "learning_rate": 0.0006,
+ "loss": 3.778803825378418,
+ "step": 2106
+ },
+ {
+ "epoch": 29.265618173875055,
+ "grad_norm": 0.2009056806564331,
+ "learning_rate": 0.0006,
+ "loss": 3.738290786743164,
+ "step": 2107
+ },
+ {
+ "epoch": 29.279598077763215,
+ "grad_norm": 0.19451597332954407,
+ "learning_rate": 0.0006,
+ "loss": 3.7553348541259766,
+ "step": 2108
+ },
+ {
+ "epoch": 29.293577981651374,
+ "grad_norm": 0.19246742129325867,
+ "learning_rate": 0.0006,
+ "loss": 3.7321622371673584,
+ "step": 2109
+ },
+ {
+ "epoch": 29.307557885539538,
+ "grad_norm": 0.18917441368103027,
+ "learning_rate": 0.0006,
+ "loss": 3.7408928871154785,
+ "step": 2110
+ },
+ {
+ "epoch": 29.321537789427698,
+ "grad_norm": 0.19067776203155518,
+ "learning_rate": 0.0006,
+ "loss": 3.780052900314331,
+ "step": 2111
+ },
+ {
+ "epoch": 29.335517693315857,
+ "grad_norm": 0.18849676847457886,
+ "learning_rate": 0.0006,
+ "loss": 3.749375820159912,
+ "step": 2112
+ },
+ {
+ "epoch": 29.34949759720402,
+ "grad_norm": 0.19713285565376282,
+ "learning_rate": 0.0006,
+ "loss": 3.7128982543945312,
+ "step": 2113
+ },
+ {
+ "epoch": 29.36347750109218,
+ "grad_norm": 0.196336030960083,
+ "learning_rate": 0.0006,
+ "loss": 3.7528390884399414,
+ "step": 2114
+ },
+ {
+ "epoch": 29.37745740498034,
+ "grad_norm": 0.19574350118637085,
+ "learning_rate": 0.0006,
+ "loss": 3.7105777263641357,
+ "step": 2115
+ },
+ {
+ "epoch": 29.3914373088685,
+ "grad_norm": 0.20396539568901062,
+ "learning_rate": 0.0006,
+ "loss": 3.782249927520752,
+ "step": 2116
+ },
+ {
+ "epoch": 29.405417212756664,
+ "grad_norm": 0.24702422320842743,
+ "learning_rate": 0.0006,
+ "loss": 3.7685647010803223,
+ "step": 2117
+ },
+ {
+ "epoch": 29.419397116644824,
+ "grad_norm": 0.2729755640029907,
+ "learning_rate": 0.0006,
+ "loss": 3.7731213569641113,
+ "step": 2118
+ },
+ {
+ "epoch": 29.433377020532983,
+ "grad_norm": 0.29240545630455017,
+ "learning_rate": 0.0006,
+ "loss": 3.770162343978882,
+ "step": 2119
+ },
+ {
+ "epoch": 29.447356924421143,
+ "grad_norm": 0.2469114065170288,
+ "learning_rate": 0.0006,
+ "loss": 3.764681339263916,
+ "step": 2120
+ },
+ {
+ "epoch": 29.461336828309307,
+ "grad_norm": 0.19837401807308197,
+ "learning_rate": 0.0006,
+ "loss": 3.7600088119506836,
+ "step": 2121
+ },
+ {
+ "epoch": 29.475316732197467,
+ "grad_norm": 0.21266621351242065,
+ "learning_rate": 0.0006,
+ "loss": 3.769454002380371,
+ "step": 2122
+ },
+ {
+ "epoch": 29.489296636085626,
+ "grad_norm": 0.25908344984054565,
+ "learning_rate": 0.0006,
+ "loss": 3.7230491638183594,
+ "step": 2123
+ },
+ {
+ "epoch": 29.503276539973786,
+ "grad_norm": 0.2914169728755951,
+ "learning_rate": 0.0006,
+ "loss": 3.767849922180176,
+ "step": 2124
+ },
+ {
+ "epoch": 29.51725644386195,
+ "grad_norm": 0.2796176075935364,
+ "learning_rate": 0.0006,
+ "loss": 3.741734266281128,
+ "step": 2125
+ },
+ {
+ "epoch": 29.53123634775011,
+ "grad_norm": 0.276309996843338,
+ "learning_rate": 0.0006,
+ "loss": 3.8001914024353027,
+ "step": 2126
+ },
+ {
+ "epoch": 29.54521625163827,
+ "grad_norm": 0.26512834429740906,
+ "learning_rate": 0.0006,
+ "loss": 3.7741384506225586,
+ "step": 2127
+ },
+ {
+ "epoch": 29.55919615552643,
+ "grad_norm": 0.26514101028442383,
+ "learning_rate": 0.0006,
+ "loss": 3.7466959953308105,
+ "step": 2128
+ },
+ {
+ "epoch": 29.573176059414592,
+ "grad_norm": 0.24121330678462982,
+ "learning_rate": 0.0006,
+ "loss": 3.759542465209961,
+ "step": 2129
+ },
+ {
+ "epoch": 29.587155963302752,
+ "grad_norm": 0.2264087200164795,
+ "learning_rate": 0.0006,
+ "loss": 3.791344165802002,
+ "step": 2130
+ },
+ {
+ "epoch": 29.601135867190912,
+ "grad_norm": 0.21915403008460999,
+ "learning_rate": 0.0006,
+ "loss": 3.7540485858917236,
+ "step": 2131
+ },
+ {
+ "epoch": 29.615115771079076,
+ "grad_norm": 0.20453961193561554,
+ "learning_rate": 0.0006,
+ "loss": 3.765617609024048,
+ "step": 2132
+ },
+ {
+ "epoch": 29.629095674967235,
+ "grad_norm": 0.2194051444530487,
+ "learning_rate": 0.0006,
+ "loss": 3.7664294242858887,
+ "step": 2133
+ },
+ {
+ "epoch": 29.643075578855395,
+ "grad_norm": 0.21926000714302063,
+ "learning_rate": 0.0006,
+ "loss": 3.7551684379577637,
+ "step": 2134
+ },
+ {
+ "epoch": 29.657055482743555,
+ "grad_norm": 0.20835602283477783,
+ "learning_rate": 0.0006,
+ "loss": 3.7654306888580322,
+ "step": 2135
+ },
+ {
+ "epoch": 29.67103538663172,
+ "grad_norm": 0.23094356060028076,
+ "learning_rate": 0.0006,
+ "loss": 3.7847180366516113,
+ "step": 2136
+ },
+ {
+ "epoch": 29.68501529051988,
+ "grad_norm": 0.23871271312236786,
+ "learning_rate": 0.0006,
+ "loss": 3.789036273956299,
+ "step": 2137
+ },
+ {
+ "epoch": 29.698995194408038,
+ "grad_norm": 0.22263272106647491,
+ "learning_rate": 0.0006,
+ "loss": 3.7677512168884277,
+ "step": 2138
+ },
+ {
+ "epoch": 29.712975098296198,
+ "grad_norm": 0.2293892651796341,
+ "learning_rate": 0.0006,
+ "loss": 3.777097225189209,
+ "step": 2139
+ },
+ {
+ "epoch": 29.72695500218436,
+ "grad_norm": 0.21068568527698517,
+ "learning_rate": 0.0006,
+ "loss": 3.785336494445801,
+ "step": 2140
+ },
+ {
+ "epoch": 29.74093490607252,
+ "grad_norm": 0.19600282609462738,
+ "learning_rate": 0.0006,
+ "loss": 3.7363505363464355,
+ "step": 2141
+ },
+ {
+ "epoch": 29.75491480996068,
+ "grad_norm": 0.20053936541080475,
+ "learning_rate": 0.0006,
+ "loss": 3.753859043121338,
+ "step": 2142
+ },
+ {
+ "epoch": 29.76889471384884,
+ "grad_norm": 0.22790539264678955,
+ "learning_rate": 0.0006,
+ "loss": 3.749492645263672,
+ "step": 2143
+ },
+ {
+ "epoch": 29.782874617737004,
+ "grad_norm": 0.26042407751083374,
+ "learning_rate": 0.0006,
+ "loss": 3.7905430793762207,
+ "step": 2144
+ },
+ {
+ "epoch": 29.796854521625164,
+ "grad_norm": 0.2753683626651764,
+ "learning_rate": 0.0006,
+ "loss": 3.756442070007324,
+ "step": 2145
+ },
+ {
+ "epoch": 29.810834425513324,
+ "grad_norm": 0.2795007526874542,
+ "learning_rate": 0.0006,
+ "loss": 3.7691903114318848,
+ "step": 2146
+ },
+ {
+ "epoch": 29.824814329401484,
+ "grad_norm": 0.2461438924074173,
+ "learning_rate": 0.0006,
+ "loss": 3.7573065757751465,
+ "step": 2147
+ },
+ {
+ "epoch": 29.838794233289647,
+ "grad_norm": 0.21051941812038422,
+ "learning_rate": 0.0006,
+ "loss": 3.7540078163146973,
+ "step": 2148
+ },
+ {
+ "epoch": 29.852774137177807,
+ "grad_norm": 0.197485089302063,
+ "learning_rate": 0.0006,
+ "loss": 3.734403133392334,
+ "step": 2149
+ },
+ {
+ "epoch": 29.866754041065967,
+ "grad_norm": 0.203064426779747,
+ "learning_rate": 0.0006,
+ "loss": 3.7888364791870117,
+ "step": 2150
+ },
+ {
+ "epoch": 29.88073394495413,
+ "grad_norm": 0.2000301480293274,
+ "learning_rate": 0.0006,
+ "loss": 3.7444958686828613,
+ "step": 2151
+ },
+ {
+ "epoch": 29.89471384884229,
+ "grad_norm": 0.20492053031921387,
+ "learning_rate": 0.0006,
+ "loss": 3.7878224849700928,
+ "step": 2152
+ },
+ {
+ "epoch": 29.90869375273045,
+ "grad_norm": 0.22565388679504395,
+ "learning_rate": 0.0006,
+ "loss": 3.7539188861846924,
+ "step": 2153
+ },
+ {
+ "epoch": 29.92267365661861,
+ "grad_norm": 0.20258226990699768,
+ "learning_rate": 0.0006,
+ "loss": 3.7491893768310547,
+ "step": 2154
+ },
+ {
+ "epoch": 29.936653560506773,
+ "grad_norm": 0.20028717815876007,
+ "learning_rate": 0.0006,
+ "loss": 3.7497997283935547,
+ "step": 2155
+ },
+ {
+ "epoch": 29.950633464394933,
+ "grad_norm": 0.2246360331773758,
+ "learning_rate": 0.0006,
+ "loss": 3.773930788040161,
+ "step": 2156
+ },
+ {
+ "epoch": 29.964613368283093,
+ "grad_norm": 0.22432482242584229,
+ "learning_rate": 0.0006,
+ "loss": 3.7926344871520996,
+ "step": 2157
+ },
+ {
+ "epoch": 29.978593272171253,
+ "grad_norm": 0.2165718674659729,
+ "learning_rate": 0.0006,
+ "loss": 3.7436647415161133,
+ "step": 2158
+ },
+ {
+ "epoch": 29.992573176059416,
+ "grad_norm": 0.20629167556762695,
+ "learning_rate": 0.0006,
+ "loss": 3.7619552612304688,
+ "step": 2159
+ },
+ {
+ "epoch": 30.0,
+ "grad_norm": 0.24264708161354065,
+ "learning_rate": 0.0006,
+ "loss": 3.772679328918457,
+ "step": 2160
+ },
+ {
+ "epoch": 30.0,
+ "eval_loss": 4.024484634399414,
+ "eval_runtime": 44.3611,
+ "eval_samples_per_second": 55.048,
+ "eval_steps_per_second": 3.449,
+ "step": 2160
+ },
+ {
+ "epoch": 30.01397990388816,
+ "grad_norm": 0.2373432070016861,
+ "learning_rate": 0.0006,
+ "loss": 3.7423200607299805,
+ "step": 2161
+ },
+ {
+ "epoch": 30.027959807776323,
+ "grad_norm": 0.26835134625434875,
+ "learning_rate": 0.0006,
+ "loss": 3.7215471267700195,
+ "step": 2162
+ },
+ {
+ "epoch": 30.041939711664483,
+ "grad_norm": 0.2743220329284668,
+ "learning_rate": 0.0006,
+ "loss": 3.7190256118774414,
+ "step": 2163
+ },
+ {
+ "epoch": 30.055919615552643,
+ "grad_norm": 0.2292490005493164,
+ "learning_rate": 0.0006,
+ "loss": 3.731855869293213,
+ "step": 2164
+ },
+ {
+ "epoch": 30.069899519440803,
+ "grad_norm": 0.22704607248306274,
+ "learning_rate": 0.0006,
+ "loss": 3.7649693489074707,
+ "step": 2165
+ },
+ {
+ "epoch": 30.083879423328966,
+ "grad_norm": 0.23255930840969086,
+ "learning_rate": 0.0006,
+ "loss": 3.7547781467437744,
+ "step": 2166
+ },
+ {
+ "epoch": 30.097859327217126,
+ "grad_norm": 0.2068684846162796,
+ "learning_rate": 0.0006,
+ "loss": 3.7343382835388184,
+ "step": 2167
+ },
+ {
+ "epoch": 30.111839231105286,
+ "grad_norm": 0.22523464262485504,
+ "learning_rate": 0.0006,
+ "loss": 3.7304530143737793,
+ "step": 2168
+ },
+ {
+ "epoch": 30.125819134993446,
+ "grad_norm": 0.24650199711322784,
+ "learning_rate": 0.0006,
+ "loss": 3.7414379119873047,
+ "step": 2169
+ },
+ {
+ "epoch": 30.13979903888161,
+ "grad_norm": 0.2392522394657135,
+ "learning_rate": 0.0006,
+ "loss": 3.754481792449951,
+ "step": 2170
+ },
+ {
+ "epoch": 30.15377894276977,
+ "grad_norm": 0.21174749732017517,
+ "learning_rate": 0.0006,
+ "loss": 3.7249929904937744,
+ "step": 2171
+ },
+ {
+ "epoch": 30.16775884665793,
+ "grad_norm": 0.20847836136817932,
+ "learning_rate": 0.0006,
+ "loss": 3.7146458625793457,
+ "step": 2172
+ },
+ {
+ "epoch": 30.18173875054609,
+ "grad_norm": 0.22131472826004028,
+ "learning_rate": 0.0006,
+ "loss": 3.7569539546966553,
+ "step": 2173
+ },
+ {
+ "epoch": 30.195718654434252,
+ "grad_norm": 0.23528096079826355,
+ "learning_rate": 0.0006,
+ "loss": 3.743435859680176,
+ "step": 2174
+ },
+ {
+ "epoch": 30.209698558322412,
+ "grad_norm": 0.2382429540157318,
+ "learning_rate": 0.0006,
+ "loss": 3.745307445526123,
+ "step": 2175
+ },
+ {
+ "epoch": 30.22367846221057,
+ "grad_norm": 0.2477114498615265,
+ "learning_rate": 0.0006,
+ "loss": 3.742305278778076,
+ "step": 2176
+ },
+ {
+ "epoch": 30.23765836609873,
+ "grad_norm": 0.24507801234722137,
+ "learning_rate": 0.0006,
+ "loss": 3.733564853668213,
+ "step": 2177
+ },
+ {
+ "epoch": 30.251638269986895,
+ "grad_norm": 0.2266329675912857,
+ "learning_rate": 0.0006,
+ "loss": 3.747429370880127,
+ "step": 2178
+ },
+ {
+ "epoch": 30.265618173875055,
+ "grad_norm": 0.22146396338939667,
+ "learning_rate": 0.0006,
+ "loss": 3.738630533218384,
+ "step": 2179
+ },
+ {
+ "epoch": 30.279598077763215,
+ "grad_norm": 0.20202279090881348,
+ "learning_rate": 0.0006,
+ "loss": 3.74582839012146,
+ "step": 2180
+ },
+ {
+ "epoch": 30.293577981651374,
+ "grad_norm": 0.20591886341571808,
+ "learning_rate": 0.0006,
+ "loss": 3.792062997817993,
+ "step": 2181
+ },
+ {
+ "epoch": 30.307557885539538,
+ "grad_norm": 0.21744129061698914,
+ "learning_rate": 0.0006,
+ "loss": 3.7389049530029297,
+ "step": 2182
+ },
+ {
+ "epoch": 30.321537789427698,
+ "grad_norm": 0.22641272842884064,
+ "learning_rate": 0.0006,
+ "loss": 3.756775140762329,
+ "step": 2183
+ },
+ {
+ "epoch": 30.335517693315857,
+ "grad_norm": 0.22433501482009888,
+ "learning_rate": 0.0006,
+ "loss": 3.764744758605957,
+ "step": 2184
+ },
+ {
+ "epoch": 30.34949759720402,
+ "grad_norm": 0.20184539258480072,
+ "learning_rate": 0.0006,
+ "loss": 3.747469902038574,
+ "step": 2185
+ },
+ {
+ "epoch": 30.36347750109218,
+ "grad_norm": 0.20864923298358917,
+ "learning_rate": 0.0006,
+ "loss": 3.7472925186157227,
+ "step": 2186
+ },
+ {
+ "epoch": 30.37745740498034,
+ "grad_norm": 0.22537396848201752,
+ "learning_rate": 0.0006,
+ "loss": 3.7194581031799316,
+ "step": 2187
+ },
+ {
+ "epoch": 30.3914373088685,
+ "grad_norm": 0.23159919679164886,
+ "learning_rate": 0.0006,
+ "loss": 3.7124292850494385,
+ "step": 2188
+ },
+ {
+ "epoch": 30.405417212756664,
+ "grad_norm": 0.24334494769573212,
+ "learning_rate": 0.0006,
+ "loss": 3.7769203186035156,
+ "step": 2189
+ },
+ {
+ "epoch": 30.419397116644824,
+ "grad_norm": 0.3031228482723236,
+ "learning_rate": 0.0006,
+ "loss": 3.762169361114502,
+ "step": 2190
+ },
+ {
+ "epoch": 30.433377020532983,
+ "grad_norm": 0.29114583134651184,
+ "learning_rate": 0.0006,
+ "loss": 3.76554799079895,
+ "step": 2191
+ },
+ {
+ "epoch": 30.447356924421143,
+ "grad_norm": 0.26824963092803955,
+ "learning_rate": 0.0006,
+ "loss": 3.732962131500244,
+ "step": 2192
+ },
+ {
+ "epoch": 30.461336828309307,
+ "grad_norm": 0.3026561141014099,
+ "learning_rate": 0.0006,
+ "loss": 3.7567975521087646,
+ "step": 2193
+ },
+ {
+ "epoch": 30.475316732197467,
+ "grad_norm": 0.27224525809288025,
+ "learning_rate": 0.0006,
+ "loss": 3.7856051921844482,
+ "step": 2194
+ },
+ {
+ "epoch": 30.489296636085626,
+ "grad_norm": 0.24295508861541748,
+ "learning_rate": 0.0006,
+ "loss": 3.7514901161193848,
+ "step": 2195
+ },
+ {
+ "epoch": 30.503276539973786,
+ "grad_norm": 0.24435290694236755,
+ "learning_rate": 0.0006,
+ "loss": 3.715973138809204,
+ "step": 2196
+ },
+ {
+ "epoch": 30.51725644386195,
+ "grad_norm": 0.2298959195613861,
+ "learning_rate": 0.0006,
+ "loss": 3.7960405349731445,
+ "step": 2197
+ },
+ {
+ "epoch": 30.53123634775011,
+ "grad_norm": 0.20313066244125366,
+ "learning_rate": 0.0006,
+ "loss": 3.7377915382385254,
+ "step": 2198
+ },
+ {
+ "epoch": 30.54521625163827,
+ "grad_norm": 0.2018895149230957,
+ "learning_rate": 0.0006,
+ "loss": 3.6980559825897217,
+ "step": 2199
+ },
+ {
+ "epoch": 30.55919615552643,
+ "grad_norm": 0.20048382878303528,
+ "learning_rate": 0.0006,
+ "loss": 3.7474141120910645,
+ "step": 2200
+ },
+ {
+ "epoch": 30.573176059414592,
+ "grad_norm": 0.19821316003799438,
+ "learning_rate": 0.0006,
+ "loss": 3.7668564319610596,
+ "step": 2201
+ },
+ {
+ "epoch": 30.587155963302752,
+ "grad_norm": 0.21467992663383484,
+ "learning_rate": 0.0006,
+ "loss": 3.7636144161224365,
+ "step": 2202
+ },
+ {
+ "epoch": 30.601135867190912,
+ "grad_norm": 0.20192000269889832,
+ "learning_rate": 0.0006,
+ "loss": 3.745736837387085,
+ "step": 2203
+ },
+ {
+ "epoch": 30.615115771079076,
+ "grad_norm": 0.2078823447227478,
+ "learning_rate": 0.0006,
+ "loss": 3.726665496826172,
+ "step": 2204
+ },
+ {
+ "epoch": 30.629095674967235,
+ "grad_norm": 0.22535845637321472,
+ "learning_rate": 0.0006,
+ "loss": 3.745058059692383,
+ "step": 2205
+ },
+ {
+ "epoch": 30.643075578855395,
+ "grad_norm": 0.22277814149856567,
+ "learning_rate": 0.0006,
+ "loss": 3.7488319873809814,
+ "step": 2206
+ },
+ {
+ "epoch": 30.657055482743555,
+ "grad_norm": 0.20940838754177094,
+ "learning_rate": 0.0006,
+ "loss": 3.7395732402801514,
+ "step": 2207
+ },
+ {
+ "epoch": 30.67103538663172,
+ "grad_norm": 0.21384629607200623,
+ "learning_rate": 0.0006,
+ "loss": 3.7275657653808594,
+ "step": 2208
+ },
+ {
+ "epoch": 30.68501529051988,
+ "grad_norm": 0.18796643614768982,
+ "learning_rate": 0.0006,
+ "loss": 3.743420124053955,
+ "step": 2209
+ },
+ {
+ "epoch": 30.698995194408038,
+ "grad_norm": 0.213258296251297,
+ "learning_rate": 0.0006,
+ "loss": 3.7227492332458496,
+ "step": 2210
+ },
+ {
+ "epoch": 30.712975098296198,
+ "grad_norm": 0.22714753448963165,
+ "learning_rate": 0.0006,
+ "loss": 3.7301113605499268,
+ "step": 2211
+ },
+ {
+ "epoch": 30.72695500218436,
+ "grad_norm": 0.21657656133174896,
+ "learning_rate": 0.0006,
+ "loss": 3.7336206436157227,
+ "step": 2212
+ },
+ {
+ "epoch": 30.74093490607252,
+ "grad_norm": 0.19550828635692596,
+ "learning_rate": 0.0006,
+ "loss": 3.7367351055145264,
+ "step": 2213
+ },
+ {
+ "epoch": 30.75491480996068,
+ "grad_norm": 0.17011769115924835,
+ "learning_rate": 0.0006,
+ "loss": 3.7401928901672363,
+ "step": 2214
+ },
+ {
+ "epoch": 30.76889471384884,
+ "grad_norm": 0.19110196828842163,
+ "learning_rate": 0.0006,
+ "loss": 3.7496562004089355,
+ "step": 2215
+ },
+ {
+ "epoch": 30.782874617737004,
+ "grad_norm": 0.20054543018341064,
+ "learning_rate": 0.0006,
+ "loss": 3.7532992362976074,
+ "step": 2216
+ },
+ {
+ "epoch": 30.796854521625164,
+ "grad_norm": 0.20667670667171478,
+ "learning_rate": 0.0006,
+ "loss": 3.746974468231201,
+ "step": 2217
+ },
+ {
+ "epoch": 30.810834425513324,
+ "grad_norm": 0.19850662350654602,
+ "learning_rate": 0.0006,
+ "loss": 3.7566256523132324,
+ "step": 2218
+ },
+ {
+ "epoch": 30.824814329401484,
+ "grad_norm": 0.19666457176208496,
+ "learning_rate": 0.0006,
+ "loss": 3.7356925010681152,
+ "step": 2219
+ },
+ {
+ "epoch": 30.838794233289647,
+ "grad_norm": 0.20022115111351013,
+ "learning_rate": 0.0006,
+ "loss": 3.768794536590576,
+ "step": 2220
+ },
+ {
+ "epoch": 30.852774137177807,
+ "grad_norm": 0.225278839468956,
+ "learning_rate": 0.0006,
+ "loss": 3.730262279510498,
+ "step": 2221
+ },
+ {
+ "epoch": 30.866754041065967,
+ "grad_norm": 0.2155608832836151,
+ "learning_rate": 0.0006,
+ "loss": 3.758157968521118,
+ "step": 2222
+ },
+ {
+ "epoch": 30.88073394495413,
+ "grad_norm": 0.20914921164512634,
+ "learning_rate": 0.0006,
+ "loss": 3.7290844917297363,
+ "step": 2223
+ },
+ {
+ "epoch": 30.89471384884229,
+ "grad_norm": 0.21579554677009583,
+ "learning_rate": 0.0006,
+ "loss": 3.7666125297546387,
+ "step": 2224
+ },
+ {
+ "epoch": 30.90869375273045,
+ "grad_norm": 0.22606384754180908,
+ "learning_rate": 0.0006,
+ "loss": 3.7396788597106934,
+ "step": 2225
+ },
+ {
+ "epoch": 30.92267365661861,
+ "grad_norm": 0.22218658030033112,
+ "learning_rate": 0.0006,
+ "loss": 3.7363057136535645,
+ "step": 2226
+ },
+ {
+ "epoch": 30.936653560506773,
+ "grad_norm": 0.2107125222682953,
+ "learning_rate": 0.0006,
+ "loss": 3.7402844429016113,
+ "step": 2227
+ },
+ {
+ "epoch": 30.950633464394933,
+ "grad_norm": 0.2143280804157257,
+ "learning_rate": 0.0006,
+ "loss": 3.7715706825256348,
+ "step": 2228
+ },
+ {
+ "epoch": 30.964613368283093,
+ "grad_norm": 0.20918118953704834,
+ "learning_rate": 0.0006,
+ "loss": 3.783510446548462,
+ "step": 2229
+ },
+ {
+ "epoch": 30.978593272171253,
+ "grad_norm": 0.2184133678674698,
+ "learning_rate": 0.0006,
+ "loss": 3.729846954345703,
+ "step": 2230
+ },
+ {
+ "epoch": 30.992573176059416,
+ "grad_norm": 0.20314796268939972,
+ "learning_rate": 0.0006,
+ "loss": 3.753312110900879,
+ "step": 2231
+ },
+ {
+ "epoch": 31.0,
+ "grad_norm": 0.21582408249378204,
+ "learning_rate": 0.0006,
+ "loss": 3.7653090953826904,
+ "step": 2232
+ },
+ {
+ "epoch": 31.0,
+ "eval_loss": 4.030437469482422,
+ "eval_runtime": 43.8529,
+ "eval_samples_per_second": 55.686,
+ "eval_steps_per_second": 3.489,
+ "step": 2232
+ },
+ {
+ "epoch": 31.01397990388816,
+ "grad_norm": 0.214233860373497,
+ "learning_rate": 0.0006,
+ "loss": 3.7179880142211914,
+ "step": 2233
+ },
+ {
+ "epoch": 31.027959807776323,
+ "grad_norm": 0.24621504545211792,
+ "learning_rate": 0.0006,
+ "loss": 3.712569236755371,
+ "step": 2234
+ },
+ {
+ "epoch": 31.041939711664483,
+ "grad_norm": 0.24189279973506927,
+ "learning_rate": 0.0006,
+ "loss": 3.7503058910369873,
+ "step": 2235
+ },
+ {
+ "epoch": 31.055919615552643,
+ "grad_norm": 0.22872278094291687,
+ "learning_rate": 0.0006,
+ "loss": 3.7386386394500732,
+ "step": 2236
+ },
+ {
+ "epoch": 31.069899519440803,
+ "grad_norm": 0.25036823749542236,
+ "learning_rate": 0.0006,
+ "loss": 3.710566997528076,
+ "step": 2237
+ },
+ {
+ "epoch": 31.083879423328966,
+ "grad_norm": 0.2506193220615387,
+ "learning_rate": 0.0006,
+ "loss": 3.7270963191986084,
+ "step": 2238
+ },
+ {
+ "epoch": 31.097859327217126,
+ "grad_norm": 0.24819663166999817,
+ "learning_rate": 0.0006,
+ "loss": 3.716430425643921,
+ "step": 2239
+ },
+ {
+ "epoch": 31.111839231105286,
+ "grad_norm": 0.27226534485816956,
+ "learning_rate": 0.0006,
+ "loss": 3.704428195953369,
+ "step": 2240
+ },
+ {
+ "epoch": 31.125819134993446,
+ "grad_norm": 0.27718204259872437,
+ "learning_rate": 0.0006,
+ "loss": 3.7309701442718506,
+ "step": 2241
+ },
+ {
+ "epoch": 31.13979903888161,
+ "grad_norm": 0.27272021770477295,
+ "learning_rate": 0.0006,
+ "loss": 3.7325143814086914,
+ "step": 2242
+ },
+ {
+ "epoch": 31.15377894276977,
+ "grad_norm": 0.2666020095348358,
+ "learning_rate": 0.0006,
+ "loss": 3.715268611907959,
+ "step": 2243
+ },
+ {
+ "epoch": 31.16775884665793,
+ "grad_norm": 0.258543461561203,
+ "learning_rate": 0.0006,
+ "loss": 3.7336134910583496,
+ "step": 2244
+ },
+ {
+ "epoch": 31.18173875054609,
+ "grad_norm": 0.2528740167617798,
+ "learning_rate": 0.0006,
+ "loss": 3.724491596221924,
+ "step": 2245
+ },
+ {
+ "epoch": 31.195718654434252,
+ "grad_norm": 0.2659667730331421,
+ "learning_rate": 0.0006,
+ "loss": 3.7144742012023926,
+ "step": 2246
+ },
+ {
+ "epoch": 31.209698558322412,
+ "grad_norm": 0.26563164591789246,
+ "learning_rate": 0.0006,
+ "loss": 3.741182327270508,
+ "step": 2247
+ },
+ {
+ "epoch": 31.22367846221057,
+ "grad_norm": 0.26326918601989746,
+ "learning_rate": 0.0006,
+ "loss": 3.7306275367736816,
+ "step": 2248
+ },
+ {
+ "epoch": 31.23765836609873,
+ "grad_norm": 0.23020948469638824,
+ "learning_rate": 0.0006,
+ "loss": 3.7212486267089844,
+ "step": 2249
+ },
+ {
+ "epoch": 31.251638269986895,
+ "grad_norm": 0.21207433938980103,
+ "learning_rate": 0.0006,
+ "loss": 3.6914258003234863,
+ "step": 2250
+ },
+ {
+ "epoch": 31.265618173875055,
+ "grad_norm": 0.2392292022705078,
+ "learning_rate": 0.0006,
+ "loss": 3.7117457389831543,
+ "step": 2251
+ },
+ {
+ "epoch": 31.279598077763215,
+ "grad_norm": 0.22084997594356537,
+ "learning_rate": 0.0006,
+ "loss": 3.728043794631958,
+ "step": 2252
+ },
+ {
+ "epoch": 31.293577981651374,
+ "grad_norm": 0.20818188786506653,
+ "learning_rate": 0.0006,
+ "loss": 3.751762866973877,
+ "step": 2253
+ },
+ {
+ "epoch": 31.307557885539538,
+ "grad_norm": 0.21866194903850555,
+ "learning_rate": 0.0006,
+ "loss": 3.72676420211792,
+ "step": 2254
+ },
+ {
+ "epoch": 31.321537789427698,
+ "grad_norm": 0.20727522671222687,
+ "learning_rate": 0.0006,
+ "loss": 3.735708236694336,
+ "step": 2255
+ },
+ {
+ "epoch": 31.335517693315857,
+ "grad_norm": 0.20655220746994019,
+ "learning_rate": 0.0006,
+ "loss": 3.714116096496582,
+ "step": 2256
+ },
+ {
+ "epoch": 31.34949759720402,
+ "grad_norm": 0.21738854050636292,
+ "learning_rate": 0.0006,
+ "loss": 3.731657028198242,
+ "step": 2257
+ },
+ {
+ "epoch": 31.36347750109218,
+ "grad_norm": 0.20758475363254547,
+ "learning_rate": 0.0006,
+ "loss": 3.7378528118133545,
+ "step": 2258
+ },
+ {
+ "epoch": 31.37745740498034,
+ "grad_norm": 0.20107139647006989,
+ "learning_rate": 0.0006,
+ "loss": 3.748572826385498,
+ "step": 2259
+ },
+ {
+ "epoch": 31.3914373088685,
+ "grad_norm": 0.18707452714443207,
+ "learning_rate": 0.0006,
+ "loss": 3.7237391471862793,
+ "step": 2260
+ },
+ {
+ "epoch": 31.405417212756664,
+ "grad_norm": 0.20745301246643066,
+ "learning_rate": 0.0006,
+ "loss": 3.734435558319092,
+ "step": 2261
+ },
+ {
+ "epoch": 31.419397116644824,
+ "grad_norm": 0.20793399214744568,
+ "learning_rate": 0.0006,
+ "loss": 3.7639012336730957,
+ "step": 2262
+ },
+ {
+ "epoch": 31.433377020532983,
+ "grad_norm": 0.20193757116794586,
+ "learning_rate": 0.0006,
+ "loss": 3.754117727279663,
+ "step": 2263
+ },
+ {
+ "epoch": 31.447356924421143,
+ "grad_norm": 0.1912323236465454,
+ "learning_rate": 0.0006,
+ "loss": 3.728111982345581,
+ "step": 2264
+ },
+ {
+ "epoch": 31.461336828309307,
+ "grad_norm": 0.19441582262516022,
+ "learning_rate": 0.0006,
+ "loss": 3.7533278465270996,
+ "step": 2265
+ },
+ {
+ "epoch": 31.475316732197467,
+ "grad_norm": 0.19807079434394836,
+ "learning_rate": 0.0006,
+ "loss": 3.7351698875427246,
+ "step": 2266
+ },
+ {
+ "epoch": 31.489296636085626,
+ "grad_norm": 0.20373263955116272,
+ "learning_rate": 0.0006,
+ "loss": 3.714097023010254,
+ "step": 2267
+ },
+ {
+ "epoch": 31.503276539973786,
+ "grad_norm": 0.21868768334388733,
+ "learning_rate": 0.0006,
+ "loss": 3.736743688583374,
+ "step": 2268
+ },
+ {
+ "epoch": 31.51725644386195,
+ "grad_norm": 0.20767922699451447,
+ "learning_rate": 0.0006,
+ "loss": 3.7097702026367188,
+ "step": 2269
+ },
+ {
+ "epoch": 31.53123634775011,
+ "grad_norm": 0.18425600230693817,
+ "learning_rate": 0.0006,
+ "loss": 3.7349140644073486,
+ "step": 2270
+ },
+ {
+ "epoch": 31.54521625163827,
+ "grad_norm": 0.18813826143741608,
+ "learning_rate": 0.0006,
+ "loss": 3.7023448944091797,
+ "step": 2271
+ },
+ {
+ "epoch": 31.55919615552643,
+ "grad_norm": 0.1892116516828537,
+ "learning_rate": 0.0006,
+ "loss": 3.7170143127441406,
+ "step": 2272
+ },
+ {
+ "epoch": 31.573176059414592,
+ "grad_norm": 0.2067834585905075,
+ "learning_rate": 0.0006,
+ "loss": 3.7312588691711426,
+ "step": 2273
+ },
+ {
+ "epoch": 31.587155963302752,
+ "grad_norm": 0.204023078083992,
+ "learning_rate": 0.0006,
+ "loss": 3.7399091720581055,
+ "step": 2274
+ },
+ {
+ "epoch": 31.601135867190912,
+ "grad_norm": 0.20245152711868286,
+ "learning_rate": 0.0006,
+ "loss": 3.7259416580200195,
+ "step": 2275
+ },
+ {
+ "epoch": 31.615115771079076,
+ "grad_norm": 0.21125490963459015,
+ "learning_rate": 0.0006,
+ "loss": 3.7217836380004883,
+ "step": 2276
+ },
+ {
+ "epoch": 31.629095674967235,
+ "grad_norm": 0.2093241959810257,
+ "learning_rate": 0.0006,
+ "loss": 3.707627773284912,
+ "step": 2277
+ },
+ {
+ "epoch": 31.643075578855395,
+ "grad_norm": 0.19290480017662048,
+ "learning_rate": 0.0006,
+ "loss": 3.7467126846313477,
+ "step": 2278
+ },
+ {
+ "epoch": 31.657055482743555,
+ "grad_norm": 0.1853940635919571,
+ "learning_rate": 0.0006,
+ "loss": 3.7565581798553467,
+ "step": 2279
+ },
+ {
+ "epoch": 31.67103538663172,
+ "grad_norm": 0.18917642533779144,
+ "learning_rate": 0.0006,
+ "loss": 3.7286229133605957,
+ "step": 2280
+ },
+ {
+ "epoch": 31.68501529051988,
+ "grad_norm": 0.2094079703092575,
+ "learning_rate": 0.0006,
+ "loss": 3.7297096252441406,
+ "step": 2281
+ },
+ {
+ "epoch": 31.698995194408038,
+ "grad_norm": 0.20020027458667755,
+ "learning_rate": 0.0006,
+ "loss": 3.7565250396728516,
+ "step": 2282
+ },
+ {
+ "epoch": 31.712975098296198,
+ "grad_norm": 0.19156186282634735,
+ "learning_rate": 0.0006,
+ "loss": 3.7401509284973145,
+ "step": 2283
+ },
+ {
+ "epoch": 31.72695500218436,
+ "grad_norm": 0.19176368415355682,
+ "learning_rate": 0.0006,
+ "loss": 3.751206398010254,
+ "step": 2284
+ },
+ {
+ "epoch": 31.74093490607252,
+ "grad_norm": 0.18351277709007263,
+ "learning_rate": 0.0006,
+ "loss": 3.752984046936035,
+ "step": 2285
+ },
+ {
+ "epoch": 31.75491480996068,
+ "grad_norm": 0.1879221349954605,
+ "learning_rate": 0.0006,
+ "loss": 3.7156834602355957,
+ "step": 2286
+ },
+ {
+ "epoch": 31.76889471384884,
+ "grad_norm": 0.19232559204101562,
+ "learning_rate": 0.0006,
+ "loss": 3.732879638671875,
+ "step": 2287
+ },
+ {
+ "epoch": 31.782874617737004,
+ "grad_norm": 0.18484069406986237,
+ "learning_rate": 0.0006,
+ "loss": 3.7489013671875,
+ "step": 2288
+ },
+ {
+ "epoch": 31.796854521625164,
+ "grad_norm": 0.20705144107341766,
+ "learning_rate": 0.0006,
+ "loss": 3.7214112281799316,
+ "step": 2289
+ },
+ {
+ "epoch": 31.810834425513324,
+ "grad_norm": 0.23424774408340454,
+ "learning_rate": 0.0006,
+ "loss": 3.714550256729126,
+ "step": 2290
+ },
+ {
+ "epoch": 31.824814329401484,
+ "grad_norm": 0.24061693251132965,
+ "learning_rate": 0.0006,
+ "loss": 3.717336654663086,
+ "step": 2291
+ },
+ {
+ "epoch": 31.838794233289647,
+ "grad_norm": 0.23156678676605225,
+ "learning_rate": 0.0006,
+ "loss": 3.7345399856567383,
+ "step": 2292
+ },
+ {
+ "epoch": 31.852774137177807,
+ "grad_norm": 0.2256302684545517,
+ "learning_rate": 0.0006,
+ "loss": 3.7596092224121094,
+ "step": 2293
+ },
+ {
+ "epoch": 31.866754041065967,
+ "grad_norm": 0.2118781954050064,
+ "learning_rate": 0.0006,
+ "loss": 3.725433588027954,
+ "step": 2294
+ },
+ {
+ "epoch": 31.88073394495413,
+ "grad_norm": 0.1874573826789856,
+ "learning_rate": 0.0006,
+ "loss": 3.738901138305664,
+ "step": 2295
+ },
+ {
+ "epoch": 31.89471384884229,
+ "grad_norm": 0.2062024176120758,
+ "learning_rate": 0.0006,
+ "loss": 3.7439217567443848,
+ "step": 2296
+ },
+ {
+ "epoch": 31.90869375273045,
+ "grad_norm": 0.19886671006679535,
+ "learning_rate": 0.0006,
+ "loss": 3.7583155632019043,
+ "step": 2297
+ },
+ {
+ "epoch": 31.92267365661861,
+ "grad_norm": 0.2079734355211258,
+ "learning_rate": 0.0006,
+ "loss": 3.7251501083374023,
+ "step": 2298
+ },
+ {
+ "epoch": 31.936653560506773,
+ "grad_norm": 0.19710204005241394,
+ "learning_rate": 0.0006,
+ "loss": 3.765778064727783,
+ "step": 2299
+ },
+ {
+ "epoch": 31.950633464394933,
+ "grad_norm": 0.1949392408132553,
+ "learning_rate": 0.0006,
+ "loss": 3.7634787559509277,
+ "step": 2300
+ },
+ {
+ "epoch": 31.964613368283093,
+ "grad_norm": 0.21466250717639923,
+ "learning_rate": 0.0006,
+ "loss": 3.7673215866088867,
+ "step": 2301
+ },
+ {
+ "epoch": 31.978593272171253,
+ "grad_norm": 0.21624267101287842,
+ "learning_rate": 0.0006,
+ "loss": 3.7617220878601074,
+ "step": 2302
+ },
+ {
+ "epoch": 31.992573176059416,
+ "grad_norm": 0.22880229353904724,
+ "learning_rate": 0.0006,
+ "loss": 3.7190351486206055,
+ "step": 2303
+ },
+ {
+ "epoch": 32.0,
+ "grad_norm": 0.23227518796920776,
+ "learning_rate": 0.0006,
+ "loss": 3.740169048309326,
+ "step": 2304
+ },
+ {
+ "epoch": 32.0,
+ "eval_loss": 4.017981052398682,
+ "eval_runtime": 44.4134,
+ "eval_samples_per_second": 54.983,
+ "eval_steps_per_second": 3.445,
+ "step": 2304
+ },
+ {
+ "epoch": 32.01397990388816,
+ "grad_norm": 0.1893721967935562,
+ "learning_rate": 0.0006,
+ "loss": 3.71738338470459,
+ "step": 2305
+ },
+ {
+ "epoch": 32.02795980777632,
+ "grad_norm": 0.23771171271800995,
+ "learning_rate": 0.0006,
+ "loss": 3.71402645111084,
+ "step": 2306
+ },
+ {
+ "epoch": 32.04193971166448,
+ "grad_norm": 0.26343807578086853,
+ "learning_rate": 0.0006,
+ "loss": 3.6926395893096924,
+ "step": 2307
+ },
+ {
+ "epoch": 32.05591961555265,
+ "grad_norm": 0.25092509388923645,
+ "learning_rate": 0.0006,
+ "loss": 3.715243339538574,
+ "step": 2308
+ },
+ {
+ "epoch": 32.0698995194408,
+ "grad_norm": 0.23148509860038757,
+ "learning_rate": 0.0006,
+ "loss": 3.690734386444092,
+ "step": 2309
+ },
+ {
+ "epoch": 32.083879423328966,
+ "grad_norm": 0.23314623534679413,
+ "learning_rate": 0.0006,
+ "loss": 3.6980109214782715,
+ "step": 2310
+ },
+ {
+ "epoch": 32.09785932721712,
+ "grad_norm": 0.2210417091846466,
+ "learning_rate": 0.0006,
+ "loss": 3.7395730018615723,
+ "step": 2311
+ },
+ {
+ "epoch": 32.111839231105286,
+ "grad_norm": 0.20263685286045074,
+ "learning_rate": 0.0006,
+ "loss": 3.678412914276123,
+ "step": 2312
+ },
+ {
+ "epoch": 32.12581913499345,
+ "grad_norm": 0.20412251353263855,
+ "learning_rate": 0.0006,
+ "loss": 3.688762903213501,
+ "step": 2313
+ },
+ {
+ "epoch": 32.139799038881605,
+ "grad_norm": 0.2041679322719574,
+ "learning_rate": 0.0006,
+ "loss": 3.7231521606445312,
+ "step": 2314
+ },
+ {
+ "epoch": 32.15377894276977,
+ "grad_norm": 0.23270174860954285,
+ "learning_rate": 0.0006,
+ "loss": 3.7102620601654053,
+ "step": 2315
+ },
+ {
+ "epoch": 32.16775884665793,
+ "grad_norm": 0.25470519065856934,
+ "learning_rate": 0.0006,
+ "loss": 3.7353053092956543,
+ "step": 2316
+ },
+ {
+ "epoch": 32.18173875054609,
+ "grad_norm": 0.2930106222629547,
+ "learning_rate": 0.0006,
+ "loss": 3.7418713569641113,
+ "step": 2317
+ },
+ {
+ "epoch": 32.19571865443425,
+ "grad_norm": 0.3181219696998596,
+ "learning_rate": 0.0006,
+ "loss": 3.6716184616088867,
+ "step": 2318
+ },
+ {
+ "epoch": 32.20969855832241,
+ "grad_norm": 0.2752978801727295,
+ "learning_rate": 0.0006,
+ "loss": 3.70334792137146,
+ "step": 2319
+ },
+ {
+ "epoch": 32.22367846221057,
+ "grad_norm": 0.28381186723709106,
+ "learning_rate": 0.0006,
+ "loss": 3.719794750213623,
+ "step": 2320
+ },
+ {
+ "epoch": 32.237658366098735,
+ "grad_norm": 0.3287750482559204,
+ "learning_rate": 0.0006,
+ "loss": 3.7363362312316895,
+ "step": 2321
+ },
+ {
+ "epoch": 32.25163826998689,
+ "grad_norm": 0.32669803500175476,
+ "learning_rate": 0.0006,
+ "loss": 3.739394426345825,
+ "step": 2322
+ },
+ {
+ "epoch": 32.265618173875055,
+ "grad_norm": 0.27423885464668274,
+ "learning_rate": 0.0006,
+ "loss": 3.7381205558776855,
+ "step": 2323
+ },
+ {
+ "epoch": 32.27959807776322,
+ "grad_norm": 0.2594660818576813,
+ "learning_rate": 0.0006,
+ "loss": 3.698683738708496,
+ "step": 2324
+ },
+ {
+ "epoch": 32.293577981651374,
+ "grad_norm": 0.2785511016845703,
+ "learning_rate": 0.0006,
+ "loss": 3.688774824142456,
+ "step": 2325
+ },
+ {
+ "epoch": 32.30755788553954,
+ "grad_norm": 0.2690320611000061,
+ "learning_rate": 0.0006,
+ "loss": 3.7209150791168213,
+ "step": 2326
+ },
+ {
+ "epoch": 32.3215377894277,
+ "grad_norm": 0.23331770300865173,
+ "learning_rate": 0.0006,
+ "loss": 3.682931423187256,
+ "step": 2327
+ },
+ {
+ "epoch": 32.33551769331586,
+ "grad_norm": 0.22380802035331726,
+ "learning_rate": 0.0006,
+ "loss": 3.720445156097412,
+ "step": 2328
+ },
+ {
+ "epoch": 32.34949759720402,
+ "grad_norm": 0.2065964937210083,
+ "learning_rate": 0.0006,
+ "loss": 3.705427885055542,
+ "step": 2329
+ },
+ {
+ "epoch": 32.36347750109218,
+ "grad_norm": 0.20701853930950165,
+ "learning_rate": 0.0006,
+ "loss": 3.7078697681427,
+ "step": 2330
+ },
+ {
+ "epoch": 32.37745740498034,
+ "grad_norm": 0.2063559591770172,
+ "learning_rate": 0.0006,
+ "loss": 3.745004653930664,
+ "step": 2331
+ },
+ {
+ "epoch": 32.391437308868504,
+ "grad_norm": 0.19377011060714722,
+ "learning_rate": 0.0006,
+ "loss": 3.713808059692383,
+ "step": 2332
+ },
+ {
+ "epoch": 32.40541721275666,
+ "grad_norm": 0.19260725378990173,
+ "learning_rate": 0.0006,
+ "loss": 3.717043876647949,
+ "step": 2333
+ },
+ {
+ "epoch": 32.419397116644824,
+ "grad_norm": 0.20792821049690247,
+ "learning_rate": 0.0006,
+ "loss": 3.68632173538208,
+ "step": 2334
+ },
+ {
+ "epoch": 32.43337702053299,
+ "grad_norm": 0.22278444468975067,
+ "learning_rate": 0.0006,
+ "loss": 3.7345821857452393,
+ "step": 2335
+ },
+ {
+ "epoch": 32.44735692442114,
+ "grad_norm": 0.22533579170703888,
+ "learning_rate": 0.0006,
+ "loss": 3.7224173545837402,
+ "step": 2336
+ },
+ {
+ "epoch": 32.46133682830931,
+ "grad_norm": 0.20228394865989685,
+ "learning_rate": 0.0006,
+ "loss": 3.748530149459839,
+ "step": 2337
+ },
+ {
+ "epoch": 32.47531673219746,
+ "grad_norm": 0.19944614171981812,
+ "learning_rate": 0.0006,
+ "loss": 3.707085371017456,
+ "step": 2338
+ },
+ {
+ "epoch": 32.489296636085626,
+ "grad_norm": 0.19856145977973938,
+ "learning_rate": 0.0006,
+ "loss": 3.6898274421691895,
+ "step": 2339
+ },
+ {
+ "epoch": 32.50327653997379,
+ "grad_norm": 0.20734605193138123,
+ "learning_rate": 0.0006,
+ "loss": 3.7511792182922363,
+ "step": 2340
+ },
+ {
+ "epoch": 32.517256443861946,
+ "grad_norm": 0.19489309191703796,
+ "learning_rate": 0.0006,
+ "loss": 3.736445426940918,
+ "step": 2341
+ },
+ {
+ "epoch": 32.53123634775011,
+ "grad_norm": 0.18899282813072205,
+ "learning_rate": 0.0006,
+ "loss": 3.727325916290283,
+ "step": 2342
+ },
+ {
+ "epoch": 32.54521625163827,
+ "grad_norm": 0.19670401513576508,
+ "learning_rate": 0.0006,
+ "loss": 3.7326102256774902,
+ "step": 2343
+ },
+ {
+ "epoch": 32.55919615552643,
+ "grad_norm": 0.20061780512332916,
+ "learning_rate": 0.0006,
+ "loss": 3.698716402053833,
+ "step": 2344
+ },
+ {
+ "epoch": 32.57317605941459,
+ "grad_norm": 0.1991659700870514,
+ "learning_rate": 0.0006,
+ "loss": 3.6913180351257324,
+ "step": 2345
+ },
+ {
+ "epoch": 32.58715596330275,
+ "grad_norm": 0.18856225907802582,
+ "learning_rate": 0.0006,
+ "loss": 3.7130961418151855,
+ "step": 2346
+ },
+ {
+ "epoch": 32.60113586719091,
+ "grad_norm": 0.1983972191810608,
+ "learning_rate": 0.0006,
+ "loss": 3.7530808448791504,
+ "step": 2347
+ },
+ {
+ "epoch": 32.615115771079076,
+ "grad_norm": 0.2037997543811798,
+ "learning_rate": 0.0006,
+ "loss": 3.7076587677001953,
+ "step": 2348
+ },
+ {
+ "epoch": 32.62909567496723,
+ "grad_norm": 0.21008458733558655,
+ "learning_rate": 0.0006,
+ "loss": 3.7379021644592285,
+ "step": 2349
+ },
+ {
+ "epoch": 32.643075578855395,
+ "grad_norm": 0.2129313349723816,
+ "learning_rate": 0.0006,
+ "loss": 3.7031373977661133,
+ "step": 2350
+ },
+ {
+ "epoch": 32.65705548274356,
+ "grad_norm": 0.18756245076656342,
+ "learning_rate": 0.0006,
+ "loss": 3.7066285610198975,
+ "step": 2351
+ },
+ {
+ "epoch": 32.671035386631715,
+ "grad_norm": 0.17946591973304749,
+ "learning_rate": 0.0006,
+ "loss": 3.73781681060791,
+ "step": 2352
+ },
+ {
+ "epoch": 32.68501529051988,
+ "grad_norm": 0.18983198702335358,
+ "learning_rate": 0.0006,
+ "loss": 3.718855381011963,
+ "step": 2353
+ },
+ {
+ "epoch": 32.69899519440804,
+ "grad_norm": 0.2080942839384079,
+ "learning_rate": 0.0006,
+ "loss": 3.7111258506774902,
+ "step": 2354
+ },
+ {
+ "epoch": 32.7129750982962,
+ "grad_norm": 0.23633413016796112,
+ "learning_rate": 0.0006,
+ "loss": 3.709766149520874,
+ "step": 2355
+ },
+ {
+ "epoch": 32.72695500218436,
+ "grad_norm": 0.2723144590854645,
+ "learning_rate": 0.0006,
+ "loss": 3.745850086212158,
+ "step": 2356
+ },
+ {
+ "epoch": 32.74093490607252,
+ "grad_norm": 0.29774025082588196,
+ "learning_rate": 0.0006,
+ "loss": 3.733771324157715,
+ "step": 2357
+ },
+ {
+ "epoch": 32.75491480996068,
+ "grad_norm": 0.25976699590682983,
+ "learning_rate": 0.0006,
+ "loss": 3.734194278717041,
+ "step": 2358
+ },
+ {
+ "epoch": 32.768894713848844,
+ "grad_norm": 0.20038039982318878,
+ "learning_rate": 0.0006,
+ "loss": 3.735656261444092,
+ "step": 2359
+ },
+ {
+ "epoch": 32.782874617737,
+ "grad_norm": 0.19745637476444244,
+ "learning_rate": 0.0006,
+ "loss": 3.7335894107818604,
+ "step": 2360
+ },
+ {
+ "epoch": 32.796854521625164,
+ "grad_norm": 0.22022396326065063,
+ "learning_rate": 0.0006,
+ "loss": 3.708998680114746,
+ "step": 2361
+ },
+ {
+ "epoch": 32.81083442551333,
+ "grad_norm": 0.24754752218723297,
+ "learning_rate": 0.0006,
+ "loss": 3.7616286277770996,
+ "step": 2362
+ },
+ {
+ "epoch": 32.824814329401484,
+ "grad_norm": 0.26438358426094055,
+ "learning_rate": 0.0006,
+ "loss": 3.737079620361328,
+ "step": 2363
+ },
+ {
+ "epoch": 32.83879423328965,
+ "grad_norm": 0.2507241666316986,
+ "learning_rate": 0.0006,
+ "loss": 3.708500385284424,
+ "step": 2364
+ },
+ {
+ "epoch": 32.8527741371778,
+ "grad_norm": 0.25688016414642334,
+ "learning_rate": 0.0006,
+ "loss": 3.7389419078826904,
+ "step": 2365
+ },
+ {
+ "epoch": 32.86675404106597,
+ "grad_norm": 0.257447749376297,
+ "learning_rate": 0.0006,
+ "loss": 3.7253334522247314,
+ "step": 2366
+ },
+ {
+ "epoch": 32.88073394495413,
+ "grad_norm": 0.2621215879917145,
+ "learning_rate": 0.0006,
+ "loss": 3.773163318634033,
+ "step": 2367
+ },
+ {
+ "epoch": 32.89471384884229,
+ "grad_norm": 0.23554839193820953,
+ "learning_rate": 0.0006,
+ "loss": 3.7534430027008057,
+ "step": 2368
+ },
+ {
+ "epoch": 32.90869375273045,
+ "grad_norm": 0.19698940217494965,
+ "learning_rate": 0.0006,
+ "loss": 3.7094414234161377,
+ "step": 2369
+ },
+ {
+ "epoch": 32.92267365661861,
+ "grad_norm": 0.21380476653575897,
+ "learning_rate": 0.0006,
+ "loss": 3.7666497230529785,
+ "step": 2370
+ },
+ {
+ "epoch": 32.93665356050677,
+ "grad_norm": 0.20876452326774597,
+ "learning_rate": 0.0006,
+ "loss": 3.7467992305755615,
+ "step": 2371
+ },
+ {
+ "epoch": 32.95063346439493,
+ "grad_norm": 0.1989884227514267,
+ "learning_rate": 0.0006,
+ "loss": 3.749878168106079,
+ "step": 2372
+ },
+ {
+ "epoch": 32.964613368283096,
+ "grad_norm": 0.19089168310165405,
+ "learning_rate": 0.0006,
+ "loss": 3.7211015224456787,
+ "step": 2373
+ },
+ {
+ "epoch": 32.97859327217125,
+ "grad_norm": 0.1962461918592453,
+ "learning_rate": 0.0006,
+ "loss": 3.728684425354004,
+ "step": 2374
+ },
+ {
+ "epoch": 32.992573176059416,
+ "grad_norm": 0.22518110275268555,
+ "learning_rate": 0.0006,
+ "loss": 3.7361507415771484,
+ "step": 2375
+ },
+ {
+ "epoch": 33.0,
+ "grad_norm": 0.26704078912734985,
+ "learning_rate": 0.0006,
+ "loss": 3.7478318214416504,
+ "step": 2376
+ },
+ {
+ "epoch": 33.0,
+ "eval_loss": 4.024221897125244,
+ "eval_runtime": 43.9826,
+ "eval_samples_per_second": 55.522,
+ "eval_steps_per_second": 3.479,
+ "step": 2376
+ },
+ {
+ "epoch": 33.01397990388816,
+ "grad_norm": 0.23387742042541504,
+ "learning_rate": 0.0006,
+ "loss": 3.7043614387512207,
+ "step": 2377
+ },
+ {
+ "epoch": 33.02795980777632,
+ "grad_norm": 0.21334673464298248,
+ "learning_rate": 0.0006,
+ "loss": 3.6714677810668945,
+ "step": 2378
+ },
+ {
+ "epoch": 33.04193971166448,
+ "grad_norm": 0.2608581483364105,
+ "learning_rate": 0.0006,
+ "loss": 3.678460121154785,
+ "step": 2379
+ },
+ {
+ "epoch": 33.05591961555265,
+ "grad_norm": 0.31364381313323975,
+ "learning_rate": 0.0006,
+ "loss": 3.6771793365478516,
+ "step": 2380
+ },
+ {
+ "epoch": 33.0698995194408,
+ "grad_norm": 0.31785935163497925,
+ "learning_rate": 0.0006,
+ "loss": 3.7248926162719727,
+ "step": 2381
+ },
+ {
+ "epoch": 33.083879423328966,
+ "grad_norm": 0.29244646430015564,
+ "learning_rate": 0.0006,
+ "loss": 3.677882194519043,
+ "step": 2382
+ },
+ {
+ "epoch": 33.09785932721712,
+ "grad_norm": 0.23943741619586945,
+ "learning_rate": 0.0006,
+ "loss": 3.7365124225616455,
+ "step": 2383
+ },
+ {
+ "epoch": 33.111839231105286,
+ "grad_norm": 0.2547394931316376,
+ "learning_rate": 0.0006,
+ "loss": 3.7031357288360596,
+ "step": 2384
+ },
+ {
+ "epoch": 33.12581913499345,
+ "grad_norm": 0.2696659564971924,
+ "learning_rate": 0.0006,
+ "loss": 3.6904754638671875,
+ "step": 2385
+ },
+ {
+ "epoch": 33.139799038881605,
+ "grad_norm": 0.24271385371685028,
+ "learning_rate": 0.0006,
+ "loss": 3.7137649059295654,
+ "step": 2386
+ },
+ {
+ "epoch": 33.15377894276977,
+ "grad_norm": 0.23435993492603302,
+ "learning_rate": 0.0006,
+ "loss": 3.707383632659912,
+ "step": 2387
+ },
+ {
+ "epoch": 33.16775884665793,
+ "grad_norm": 0.21428440511226654,
+ "learning_rate": 0.0006,
+ "loss": 3.7148897647857666,
+ "step": 2388
+ },
+ {
+ "epoch": 33.18173875054609,
+ "grad_norm": 0.22420962154865265,
+ "learning_rate": 0.0006,
+ "loss": 3.710111141204834,
+ "step": 2389
+ },
+ {
+ "epoch": 33.19571865443425,
+ "grad_norm": 0.26222777366638184,
+ "learning_rate": 0.0006,
+ "loss": 3.677438259124756,
+ "step": 2390
+ },
+ {
+ "epoch": 33.20969855832241,
+ "grad_norm": 0.29910165071487427,
+ "learning_rate": 0.0006,
+ "loss": 3.6895523071289062,
+ "step": 2391
+ },
+ {
+ "epoch": 33.22367846221057,
+ "grad_norm": 0.2615569531917572,
+ "learning_rate": 0.0006,
+ "loss": 3.7339906692504883,
+ "step": 2392
+ },
+ {
+ "epoch": 33.237658366098735,
+ "grad_norm": 0.23396961390972137,
+ "learning_rate": 0.0006,
+ "loss": 3.7179932594299316,
+ "step": 2393
+ },
+ {
+ "epoch": 33.25163826998689,
+ "grad_norm": 0.24844495952129364,
+ "learning_rate": 0.0006,
+ "loss": 3.7191576957702637,
+ "step": 2394
+ },
+ {
+ "epoch": 33.265618173875055,
+ "grad_norm": 0.2306993454694748,
+ "learning_rate": 0.0006,
+ "loss": 3.7172658443450928,
+ "step": 2395
+ },
+ {
+ "epoch": 33.27959807776322,
+ "grad_norm": 0.24935221672058105,
+ "learning_rate": 0.0006,
+ "loss": 3.6917519569396973,
+ "step": 2396
+ },
+ {
+ "epoch": 33.293577981651374,
+ "grad_norm": 0.2522840201854706,
+ "learning_rate": 0.0006,
+ "loss": 3.7263593673706055,
+ "step": 2397
+ },
+ {
+ "epoch": 33.30755788553954,
+ "grad_norm": 0.26411181688308716,
+ "learning_rate": 0.0006,
+ "loss": 3.6981635093688965,
+ "step": 2398
+ },
+ {
+ "epoch": 33.3215377894277,
+ "grad_norm": 0.22396239638328552,
+ "learning_rate": 0.0006,
+ "loss": 3.713247299194336,
+ "step": 2399
+ },
+ {
+ "epoch": 33.33551769331586,
+ "grad_norm": 0.20579157769680023,
+ "learning_rate": 0.0006,
+ "loss": 3.7058467864990234,
+ "step": 2400
+ },
+ {
+ "epoch": 33.34949759720402,
+ "grad_norm": 0.20103922486305237,
+ "learning_rate": 0.0006,
+ "loss": 3.700924873352051,
+ "step": 2401
+ },
+ {
+ "epoch": 33.36347750109218,
+ "grad_norm": 0.19964663684368134,
+ "learning_rate": 0.0006,
+ "loss": 3.6985437870025635,
+ "step": 2402
+ },
+ {
+ "epoch": 33.37745740498034,
+ "grad_norm": 0.20860575139522552,
+ "learning_rate": 0.0006,
+ "loss": 3.7480058670043945,
+ "step": 2403
+ },
+ {
+ "epoch": 33.391437308868504,
+ "grad_norm": 0.19043605029582977,
+ "learning_rate": 0.0006,
+ "loss": 3.6952016353607178,
+ "step": 2404
+ },
+ {
+ "epoch": 33.40541721275666,
+ "grad_norm": 0.1968909204006195,
+ "learning_rate": 0.0006,
+ "loss": 3.69362735748291,
+ "step": 2405
+ },
+ {
+ "epoch": 33.419397116644824,
+ "grad_norm": 0.23492494225502014,
+ "learning_rate": 0.0006,
+ "loss": 3.707993984222412,
+ "step": 2406
+ },
+ {
+ "epoch": 33.43337702053299,
+ "grad_norm": 0.23970453441143036,
+ "learning_rate": 0.0006,
+ "loss": 3.707731246948242,
+ "step": 2407
+ },
+ {
+ "epoch": 33.44735692442114,
+ "grad_norm": 0.2515844404697418,
+ "learning_rate": 0.0006,
+ "loss": 3.723824977874756,
+ "step": 2408
+ },
+ {
+ "epoch": 33.46133682830931,
+ "grad_norm": 0.2343570590019226,
+ "learning_rate": 0.0006,
+ "loss": 3.7068886756896973,
+ "step": 2409
+ },
+ {
+ "epoch": 33.47531673219746,
+ "grad_norm": 0.23419860005378723,
+ "learning_rate": 0.0006,
+ "loss": 3.6964287757873535,
+ "step": 2410
+ },
+ {
+ "epoch": 33.489296636085626,
+ "grad_norm": 0.21280375123023987,
+ "learning_rate": 0.0006,
+ "loss": 3.7020950317382812,
+ "step": 2411
+ },
+ {
+ "epoch": 33.50327653997379,
+ "grad_norm": 0.2061092108488083,
+ "learning_rate": 0.0006,
+ "loss": 3.750861406326294,
+ "step": 2412
+ },
+ {
+ "epoch": 33.517256443861946,
+ "grad_norm": 0.19693219661712646,
+ "learning_rate": 0.0006,
+ "loss": 3.717020034790039,
+ "step": 2413
+ },
+ {
+ "epoch": 33.53123634775011,
+ "grad_norm": 0.18199551105499268,
+ "learning_rate": 0.0006,
+ "loss": 3.7242612838745117,
+ "step": 2414
+ },
+ {
+ "epoch": 33.54521625163827,
+ "grad_norm": 0.20131248235702515,
+ "learning_rate": 0.0006,
+ "loss": 3.6758954524993896,
+ "step": 2415
+ },
+ {
+ "epoch": 33.55919615552643,
+ "grad_norm": 0.2219412475824356,
+ "learning_rate": 0.0006,
+ "loss": 3.707927703857422,
+ "step": 2416
+ },
+ {
+ "epoch": 33.57317605941459,
+ "grad_norm": 0.22541435062885284,
+ "learning_rate": 0.0006,
+ "loss": 3.696967601776123,
+ "step": 2417
+ },
+ {
+ "epoch": 33.58715596330275,
+ "grad_norm": 0.20367272198200226,
+ "learning_rate": 0.0006,
+ "loss": 3.730795383453369,
+ "step": 2418
+ },
+ {
+ "epoch": 33.60113586719091,
+ "grad_norm": 0.20861074328422546,
+ "learning_rate": 0.0006,
+ "loss": 3.707066535949707,
+ "step": 2419
+ },
+ {
+ "epoch": 33.615115771079076,
+ "grad_norm": 0.20570263266563416,
+ "learning_rate": 0.0006,
+ "loss": 3.730602502822876,
+ "step": 2420
+ },
+ {
+ "epoch": 33.62909567496723,
+ "grad_norm": 0.21318231523036957,
+ "learning_rate": 0.0006,
+ "loss": 3.7073278427124023,
+ "step": 2421
+ },
+ {
+ "epoch": 33.643075578855395,
+ "grad_norm": 0.2142639458179474,
+ "learning_rate": 0.0006,
+ "loss": 3.718470573425293,
+ "step": 2422
+ },
+ {
+ "epoch": 33.65705548274356,
+ "grad_norm": 0.19620704650878906,
+ "learning_rate": 0.0006,
+ "loss": 3.716036319732666,
+ "step": 2423
+ },
+ {
+ "epoch": 33.671035386631715,
+ "grad_norm": 0.19308267533779144,
+ "learning_rate": 0.0006,
+ "loss": 3.734597682952881,
+ "step": 2424
+ },
+ {
+ "epoch": 33.68501529051988,
+ "grad_norm": 0.19453389942646027,
+ "learning_rate": 0.0006,
+ "loss": 3.726262092590332,
+ "step": 2425
+ },
+ {
+ "epoch": 33.69899519440804,
+ "grad_norm": 0.20405639708042145,
+ "learning_rate": 0.0006,
+ "loss": 3.678340435028076,
+ "step": 2426
+ },
+ {
+ "epoch": 33.7129750982962,
+ "grad_norm": 0.19525611400604248,
+ "learning_rate": 0.0006,
+ "loss": 3.723907470703125,
+ "step": 2427
+ },
+ {
+ "epoch": 33.72695500218436,
+ "grad_norm": 0.19390441477298737,
+ "learning_rate": 0.0006,
+ "loss": 3.707897186279297,
+ "step": 2428
+ },
+ {
+ "epoch": 33.74093490607252,
+ "grad_norm": 0.2032899558544159,
+ "learning_rate": 0.0006,
+ "loss": 3.735041618347168,
+ "step": 2429
+ },
+ {
+ "epoch": 33.75491480996068,
+ "grad_norm": 0.2134784460067749,
+ "learning_rate": 0.0006,
+ "loss": 3.674978017807007,
+ "step": 2430
+ },
+ {
+ "epoch": 33.768894713848844,
+ "grad_norm": 0.24691973626613617,
+ "learning_rate": 0.0006,
+ "loss": 3.7028675079345703,
+ "step": 2431
+ },
+ {
+ "epoch": 33.782874617737,
+ "grad_norm": 0.2272702008485794,
+ "learning_rate": 0.0006,
+ "loss": 3.7277941703796387,
+ "step": 2432
+ },
+ {
+ "epoch": 33.796854521625164,
+ "grad_norm": 0.20052100718021393,
+ "learning_rate": 0.0006,
+ "loss": 3.7146830558776855,
+ "step": 2433
+ },
+ {
+ "epoch": 33.81083442551333,
+ "grad_norm": 0.1958577185869217,
+ "learning_rate": 0.0006,
+ "loss": 3.6936864852905273,
+ "step": 2434
+ },
+ {
+ "epoch": 33.824814329401484,
+ "grad_norm": 0.191860631108284,
+ "learning_rate": 0.0006,
+ "loss": 3.7451858520507812,
+ "step": 2435
+ },
+ {
+ "epoch": 33.83879423328965,
+ "grad_norm": 0.20961424708366394,
+ "learning_rate": 0.0006,
+ "loss": 3.722400665283203,
+ "step": 2436
+ },
+ {
+ "epoch": 33.8527741371778,
+ "grad_norm": 0.19784288108348846,
+ "learning_rate": 0.0006,
+ "loss": 3.712474822998047,
+ "step": 2437
+ },
+ {
+ "epoch": 33.86675404106597,
+ "grad_norm": 0.18645426630973816,
+ "learning_rate": 0.0006,
+ "loss": 3.7054500579833984,
+ "step": 2438
+ },
+ {
+ "epoch": 33.88073394495413,
+ "grad_norm": 0.19622360169887543,
+ "learning_rate": 0.0006,
+ "loss": 3.7010550498962402,
+ "step": 2439
+ },
+ {
+ "epoch": 33.89471384884229,
+ "grad_norm": 0.20283745229244232,
+ "learning_rate": 0.0006,
+ "loss": 3.7252519130706787,
+ "step": 2440
+ },
+ {
+ "epoch": 33.90869375273045,
+ "grad_norm": 0.18671709299087524,
+ "learning_rate": 0.0006,
+ "loss": 3.6932945251464844,
+ "step": 2441
+ },
+ {
+ "epoch": 33.92267365661861,
+ "grad_norm": 0.17953112721443176,
+ "learning_rate": 0.0006,
+ "loss": 3.7453854084014893,
+ "step": 2442
+ },
+ {
+ "epoch": 33.93665356050677,
+ "grad_norm": 0.1945437788963318,
+ "learning_rate": 0.0006,
+ "loss": 3.722881317138672,
+ "step": 2443
+ },
+ {
+ "epoch": 33.95063346439493,
+ "grad_norm": 0.18414495885372162,
+ "learning_rate": 0.0006,
+ "loss": 3.7402591705322266,
+ "step": 2444
+ },
+ {
+ "epoch": 33.964613368283096,
+ "grad_norm": 0.1936541497707367,
+ "learning_rate": 0.0006,
+ "loss": 3.720057964324951,
+ "step": 2445
+ },
+ {
+ "epoch": 33.97859327217125,
+ "grad_norm": 0.20177008211612701,
+ "learning_rate": 0.0006,
+ "loss": 3.6983802318573,
+ "step": 2446
+ },
+ {
+ "epoch": 33.992573176059416,
+ "grad_norm": 0.18977557122707367,
+ "learning_rate": 0.0006,
+ "loss": 3.7202203273773193,
+ "step": 2447
+ },
+ {
+ "epoch": 34.0,
+ "grad_norm": 0.220163956284523,
+ "learning_rate": 0.0006,
+ "loss": 3.72540283203125,
+ "step": 2448
+ },
+ {
+ "epoch": 34.0,
+ "eval_loss": 4.009343147277832,
+ "eval_runtime": 44.1825,
+ "eval_samples_per_second": 55.271,
+ "eval_steps_per_second": 3.463,
+ "step": 2448
+ },
+ {
+ "epoch": 34.01397990388816,
+ "grad_norm": 0.19843372702598572,
+ "learning_rate": 0.0006,
+ "loss": 3.664431571960449,
+ "step": 2449
+ },
+ {
+ "epoch": 34.02795980777632,
+ "grad_norm": 0.20413008332252502,
+ "learning_rate": 0.0006,
+ "loss": 3.699094533920288,
+ "step": 2450
+ },
+ {
+ "epoch": 34.04193971166448,
+ "grad_norm": 0.22086848318576813,
+ "learning_rate": 0.0006,
+ "loss": 3.681825637817383,
+ "step": 2451
+ },
+ {
+ "epoch": 34.05591961555265,
+ "grad_norm": 0.20753061771392822,
+ "learning_rate": 0.0006,
+ "loss": 3.677116870880127,
+ "step": 2452
+ },
+ {
+ "epoch": 34.0698995194408,
+ "grad_norm": 0.21835783123970032,
+ "learning_rate": 0.0006,
+ "loss": 3.7079062461853027,
+ "step": 2453
+ },
+ {
+ "epoch": 34.083879423328966,
+ "grad_norm": 0.2244357019662857,
+ "learning_rate": 0.0006,
+ "loss": 3.69844913482666,
+ "step": 2454
+ },
+ {
+ "epoch": 34.09785932721712,
+ "grad_norm": 0.2238784283399582,
+ "learning_rate": 0.0006,
+ "loss": 3.6835570335388184,
+ "step": 2455
+ },
+ {
+ "epoch": 34.111839231105286,
+ "grad_norm": 0.24816176295280457,
+ "learning_rate": 0.0006,
+ "loss": 3.6832966804504395,
+ "step": 2456
+ },
+ {
+ "epoch": 34.12581913499345,
+ "grad_norm": 0.2445257306098938,
+ "learning_rate": 0.0006,
+ "loss": 3.7190022468566895,
+ "step": 2457
+ },
+ {
+ "epoch": 34.139799038881605,
+ "grad_norm": 0.24510814249515533,
+ "learning_rate": 0.0006,
+ "loss": 3.678098201751709,
+ "step": 2458
+ },
+ {
+ "epoch": 34.15377894276977,
+ "grad_norm": 0.2550753653049469,
+ "learning_rate": 0.0006,
+ "loss": 3.69335675239563,
+ "step": 2459
+ },
+ {
+ "epoch": 34.16775884665793,
+ "grad_norm": 0.2435017228126526,
+ "learning_rate": 0.0006,
+ "loss": 3.70463228225708,
+ "step": 2460
+ },
+ {
+ "epoch": 34.18173875054609,
+ "grad_norm": 0.26441144943237305,
+ "learning_rate": 0.0006,
+ "loss": 3.6757068634033203,
+ "step": 2461
+ },
+ {
+ "epoch": 34.19571865443425,
+ "grad_norm": 0.2737993001937866,
+ "learning_rate": 0.0006,
+ "loss": 3.6510863304138184,
+ "step": 2462
+ },
+ {
+ "epoch": 34.20969855832241,
+ "grad_norm": 0.24625736474990845,
+ "learning_rate": 0.0006,
+ "loss": 3.707612991333008,
+ "step": 2463
+ },
+ {
+ "epoch": 34.22367846221057,
+ "grad_norm": 0.22222039103507996,
+ "learning_rate": 0.0006,
+ "loss": 3.7145133018493652,
+ "step": 2464
+ },
+ {
+ "epoch": 34.237658366098735,
+ "grad_norm": 0.2173531949520111,
+ "learning_rate": 0.0006,
+ "loss": 3.685112476348877,
+ "step": 2465
+ },
+ {
+ "epoch": 34.25163826998689,
+ "grad_norm": 0.23102006316184998,
+ "learning_rate": 0.0006,
+ "loss": 3.6742453575134277,
+ "step": 2466
+ },
+ {
+ "epoch": 34.265618173875055,
+ "grad_norm": 0.22287188470363617,
+ "learning_rate": 0.0006,
+ "loss": 3.7030534744262695,
+ "step": 2467
+ },
+ {
+ "epoch": 34.27959807776322,
+ "grad_norm": 0.20377251505851746,
+ "learning_rate": 0.0006,
+ "loss": 3.6866259574890137,
+ "step": 2468
+ },
+ {
+ "epoch": 34.293577981651374,
+ "grad_norm": 0.19867438077926636,
+ "learning_rate": 0.0006,
+ "loss": 3.70395565032959,
+ "step": 2469
+ },
+ {
+ "epoch": 34.30755788553954,
+ "grad_norm": 0.2014918178319931,
+ "learning_rate": 0.0006,
+ "loss": 3.660795211791992,
+ "step": 2470
+ },
+ {
+ "epoch": 34.3215377894277,
+ "grad_norm": 0.20981402695178986,
+ "learning_rate": 0.0006,
+ "loss": 3.7045323848724365,
+ "step": 2471
+ },
+ {
+ "epoch": 34.33551769331586,
+ "grad_norm": 0.20968124270439148,
+ "learning_rate": 0.0006,
+ "loss": 3.7113170623779297,
+ "step": 2472
+ },
+ {
+ "epoch": 34.34949759720402,
+ "grad_norm": 0.2214043140411377,
+ "learning_rate": 0.0006,
+ "loss": 3.7330074310302734,
+ "step": 2473
+ },
+ {
+ "epoch": 34.36347750109218,
+ "grad_norm": 0.21231533586978912,
+ "learning_rate": 0.0006,
+ "loss": 3.6706933975219727,
+ "step": 2474
+ },
+ {
+ "epoch": 34.37745740498034,
+ "grad_norm": 0.2022094875574112,
+ "learning_rate": 0.0006,
+ "loss": 3.7230453491210938,
+ "step": 2475
+ },
+ {
+ "epoch": 34.391437308868504,
+ "grad_norm": 0.2281145304441452,
+ "learning_rate": 0.0006,
+ "loss": 3.7197465896606445,
+ "step": 2476
+ },
+ {
+ "epoch": 34.40541721275666,
+ "grad_norm": 0.2147362381219864,
+ "learning_rate": 0.0006,
+ "loss": 3.7092337608337402,
+ "step": 2477
+ },
+ {
+ "epoch": 34.419397116644824,
+ "grad_norm": 0.19984203577041626,
+ "learning_rate": 0.0006,
+ "loss": 3.6939496994018555,
+ "step": 2478
+ },
+ {
+ "epoch": 34.43337702053299,
+ "grad_norm": 0.21088480949401855,
+ "learning_rate": 0.0006,
+ "loss": 3.6942667961120605,
+ "step": 2479
+ },
+ {
+ "epoch": 34.44735692442114,
+ "grad_norm": 0.20444616675376892,
+ "learning_rate": 0.0006,
+ "loss": 3.718186378479004,
+ "step": 2480
+ },
+ {
+ "epoch": 34.46133682830931,
+ "grad_norm": 0.19133952260017395,
+ "learning_rate": 0.0006,
+ "loss": 3.697197437286377,
+ "step": 2481
+ },
+ {
+ "epoch": 34.47531673219746,
+ "grad_norm": 0.2219255417585373,
+ "learning_rate": 0.0006,
+ "loss": 3.684386730194092,
+ "step": 2482
+ },
+ {
+ "epoch": 34.489296636085626,
+ "grad_norm": 0.2480643391609192,
+ "learning_rate": 0.0006,
+ "loss": 3.6656622886657715,
+ "step": 2483
+ },
+ {
+ "epoch": 34.50327653997379,
+ "grad_norm": 0.22907346487045288,
+ "learning_rate": 0.0006,
+ "loss": 3.741391897201538,
+ "step": 2484
+ },
+ {
+ "epoch": 34.517256443861946,
+ "grad_norm": 0.20277173817157745,
+ "learning_rate": 0.0006,
+ "loss": 3.7062582969665527,
+ "step": 2485
+ },
+ {
+ "epoch": 34.53123634775011,
+ "grad_norm": 0.21411100029945374,
+ "learning_rate": 0.0006,
+ "loss": 3.691784381866455,
+ "step": 2486
+ },
+ {
+ "epoch": 34.54521625163827,
+ "grad_norm": 0.20261600613594055,
+ "learning_rate": 0.0006,
+ "loss": 3.6855502128601074,
+ "step": 2487
+ },
+ {
+ "epoch": 34.55919615552643,
+ "grad_norm": 0.23913109302520752,
+ "learning_rate": 0.0006,
+ "loss": 3.670754909515381,
+ "step": 2488
+ },
+ {
+ "epoch": 34.57317605941459,
+ "grad_norm": 0.24427077174186707,
+ "learning_rate": 0.0006,
+ "loss": 3.700611114501953,
+ "step": 2489
+ },
+ {
+ "epoch": 34.58715596330275,
+ "grad_norm": 0.20305761694908142,
+ "learning_rate": 0.0006,
+ "loss": 3.7284226417541504,
+ "step": 2490
+ },
+ {
+ "epoch": 34.60113586719091,
+ "grad_norm": 0.20398905873298645,
+ "learning_rate": 0.0006,
+ "loss": 3.6860880851745605,
+ "step": 2491
+ },
+ {
+ "epoch": 34.615115771079076,
+ "grad_norm": 0.21016651391983032,
+ "learning_rate": 0.0006,
+ "loss": 3.7366015911102295,
+ "step": 2492
+ },
+ {
+ "epoch": 34.62909567496723,
+ "grad_norm": 0.22279402613639832,
+ "learning_rate": 0.0006,
+ "loss": 3.7024295330047607,
+ "step": 2493
+ },
+ {
+ "epoch": 34.643075578855395,
+ "grad_norm": 0.25080347061157227,
+ "learning_rate": 0.0006,
+ "loss": 3.68355655670166,
+ "step": 2494
+ },
+ {
+ "epoch": 34.65705548274356,
+ "grad_norm": 0.2702971398830414,
+ "learning_rate": 0.0006,
+ "loss": 3.7400612831115723,
+ "step": 2495
+ },
+ {
+ "epoch": 34.671035386631715,
+ "grad_norm": 0.299398273229599,
+ "learning_rate": 0.0006,
+ "loss": 3.7160325050354004,
+ "step": 2496
+ },
+ {
+ "epoch": 34.68501529051988,
+ "grad_norm": 0.29151082038879395,
+ "learning_rate": 0.0006,
+ "loss": 3.7124147415161133,
+ "step": 2497
+ },
+ {
+ "epoch": 34.69899519440804,
+ "grad_norm": 0.23828288912773132,
+ "learning_rate": 0.0006,
+ "loss": 3.7181267738342285,
+ "step": 2498
+ },
+ {
+ "epoch": 34.7129750982962,
+ "grad_norm": 0.21776588261127472,
+ "learning_rate": 0.0006,
+ "loss": 3.6811792850494385,
+ "step": 2499
+ },
+ {
+ "epoch": 34.72695500218436,
+ "grad_norm": 0.2318469136953354,
+ "learning_rate": 0.0006,
+ "loss": 3.698467254638672,
+ "step": 2500
+ },
+ {
+ "epoch": 34.74093490607252,
+ "grad_norm": 0.22341546416282654,
+ "learning_rate": 0.0006,
+ "loss": 3.7406411170959473,
+ "step": 2501
+ },
+ {
+ "epoch": 34.75491480996068,
+ "grad_norm": 0.20676901936531067,
+ "learning_rate": 0.0006,
+ "loss": 3.6914243698120117,
+ "step": 2502
+ },
+ {
+ "epoch": 34.768894713848844,
+ "grad_norm": 0.20459024608135223,
+ "learning_rate": 0.0006,
+ "loss": 3.713369607925415,
+ "step": 2503
+ },
+ {
+ "epoch": 34.782874617737,
+ "grad_norm": 0.22369320690631866,
+ "learning_rate": 0.0006,
+ "loss": 3.697587490081787,
+ "step": 2504
+ },
+ {
+ "epoch": 34.796854521625164,
+ "grad_norm": 0.2393338829278946,
+ "learning_rate": 0.0006,
+ "loss": 3.7171854972839355,
+ "step": 2505
+ },
+ {
+ "epoch": 34.81083442551333,
+ "grad_norm": 0.23756961524486542,
+ "learning_rate": 0.0006,
+ "loss": 3.6969614028930664,
+ "step": 2506
+ },
+ {
+ "epoch": 34.824814329401484,
+ "grad_norm": 0.22761376202106476,
+ "learning_rate": 0.0006,
+ "loss": 3.722501754760742,
+ "step": 2507
+ },
+ {
+ "epoch": 34.83879423328965,
+ "grad_norm": 0.23564888536930084,
+ "learning_rate": 0.0006,
+ "loss": 3.714003086090088,
+ "step": 2508
+ },
+ {
+ "epoch": 34.8527741371778,
+ "grad_norm": 0.22197313606739044,
+ "learning_rate": 0.0006,
+ "loss": 3.7107110023498535,
+ "step": 2509
+ },
+ {
+ "epoch": 34.86675404106597,
+ "grad_norm": 0.20199328660964966,
+ "learning_rate": 0.0006,
+ "loss": 3.7167551517486572,
+ "step": 2510
+ },
+ {
+ "epoch": 34.88073394495413,
+ "grad_norm": 0.19569700956344604,
+ "learning_rate": 0.0006,
+ "loss": 3.679098129272461,
+ "step": 2511
+ },
+ {
+ "epoch": 34.89471384884229,
+ "grad_norm": 0.21320141851902008,
+ "learning_rate": 0.0006,
+ "loss": 3.733187675476074,
+ "step": 2512
+ },
+ {
+ "epoch": 34.90869375273045,
+ "grad_norm": 0.20074625313282013,
+ "learning_rate": 0.0006,
+ "loss": 3.713339328765869,
+ "step": 2513
+ },
+ {
+ "epoch": 34.92267365661861,
+ "grad_norm": 0.20249252021312714,
+ "learning_rate": 0.0006,
+ "loss": 3.680785655975342,
+ "step": 2514
+ },
+ {
+ "epoch": 34.93665356050677,
+ "grad_norm": 0.22165577113628387,
+ "learning_rate": 0.0006,
+ "loss": 3.696131706237793,
+ "step": 2515
+ },
+ {
+ "epoch": 34.95063346439493,
+ "grad_norm": 0.20769749581813812,
+ "learning_rate": 0.0006,
+ "loss": 3.6910316944122314,
+ "step": 2516
+ },
+ {
+ "epoch": 34.964613368283096,
+ "grad_norm": 0.20857223868370056,
+ "learning_rate": 0.0006,
+ "loss": 3.7327451705932617,
+ "step": 2517
+ },
+ {
+ "epoch": 34.97859327217125,
+ "grad_norm": 0.19155766069889069,
+ "learning_rate": 0.0006,
+ "loss": 3.705609083175659,
+ "step": 2518
+ },
+ {
+ "epoch": 34.992573176059416,
+ "grad_norm": 0.17890529334545135,
+ "learning_rate": 0.0006,
+ "loss": 3.6844797134399414,
+ "step": 2519
+ },
+ {
+ "epoch": 35.0,
+ "grad_norm": 0.2053528130054474,
+ "learning_rate": 0.0006,
+ "loss": 3.6942501068115234,
+ "step": 2520
+ },
+ {
+ "epoch": 35.0,
+ "eval_loss": 3.998469591140747,
+ "eval_runtime": 43.9147,
+ "eval_samples_per_second": 55.608,
+ "eval_steps_per_second": 3.484,
+ "step": 2520
+ },
+ {
+ "epoch": 35.01397990388816,
+ "grad_norm": 0.2288869470357895,
+ "learning_rate": 0.0006,
+ "loss": 3.6966426372528076,
+ "step": 2521
+ },
+ {
+ "epoch": 35.02795980777632,
+ "grad_norm": 0.25702035427093506,
+ "learning_rate": 0.0006,
+ "loss": 3.6622562408447266,
+ "step": 2522
+ },
+ {
+ "epoch": 35.04193971166448,
+ "grad_norm": 0.254422128200531,
+ "learning_rate": 0.0006,
+ "loss": 3.690046548843384,
+ "step": 2523
+ },
+ {
+ "epoch": 35.05591961555265,
+ "grad_norm": 0.24177077412605286,
+ "learning_rate": 0.0006,
+ "loss": 3.685335874557495,
+ "step": 2524
+ },
+ {
+ "epoch": 35.0698995194408,
+ "grad_norm": 0.23959586024284363,
+ "learning_rate": 0.0006,
+ "loss": 3.6534650325775146,
+ "step": 2525
+ },
+ {
+ "epoch": 35.083879423328966,
+ "grad_norm": 0.23474839329719543,
+ "learning_rate": 0.0006,
+ "loss": 3.7092814445495605,
+ "step": 2526
+ },
+ {
+ "epoch": 35.09785932721712,
+ "grad_norm": 0.23240867257118225,
+ "learning_rate": 0.0006,
+ "loss": 3.6819097995758057,
+ "step": 2527
+ },
+ {
+ "epoch": 35.111839231105286,
+ "grad_norm": 0.26267048716545105,
+ "learning_rate": 0.0006,
+ "loss": 3.6566696166992188,
+ "step": 2528
+ },
+ {
+ "epoch": 35.12581913499345,
+ "grad_norm": 0.27070754766464233,
+ "learning_rate": 0.0006,
+ "loss": 3.676304340362549,
+ "step": 2529
+ },
+ {
+ "epoch": 35.139799038881605,
+ "grad_norm": 0.25297826528549194,
+ "learning_rate": 0.0006,
+ "loss": 3.65259051322937,
+ "step": 2530
+ },
+ {
+ "epoch": 35.15377894276977,
+ "grad_norm": 0.22776272892951965,
+ "learning_rate": 0.0006,
+ "loss": 3.6813838481903076,
+ "step": 2531
+ },
+ {
+ "epoch": 35.16775884665793,
+ "grad_norm": 0.2288261204957962,
+ "learning_rate": 0.0006,
+ "loss": 3.6916379928588867,
+ "step": 2532
+ },
+ {
+ "epoch": 35.18173875054609,
+ "grad_norm": 0.20445892214775085,
+ "learning_rate": 0.0006,
+ "loss": 3.6550145149230957,
+ "step": 2533
+ },
+ {
+ "epoch": 35.19571865443425,
+ "grad_norm": 0.20298904180526733,
+ "learning_rate": 0.0006,
+ "loss": 3.704042434692383,
+ "step": 2534
+ },
+ {
+ "epoch": 35.20969855832241,
+ "grad_norm": 0.2264423668384552,
+ "learning_rate": 0.0006,
+ "loss": 3.646308183670044,
+ "step": 2535
+ },
+ {
+ "epoch": 35.22367846221057,
+ "grad_norm": 0.21537378430366516,
+ "learning_rate": 0.0006,
+ "loss": 3.686048984527588,
+ "step": 2536
+ },
+ {
+ "epoch": 35.237658366098735,
+ "grad_norm": 0.19820059835910797,
+ "learning_rate": 0.0006,
+ "loss": 3.6993050575256348,
+ "step": 2537
+ },
+ {
+ "epoch": 35.25163826998689,
+ "grad_norm": 0.19485290348529816,
+ "learning_rate": 0.0006,
+ "loss": 3.6507070064544678,
+ "step": 2538
+ },
+ {
+ "epoch": 35.265618173875055,
+ "grad_norm": 0.21234364807605743,
+ "learning_rate": 0.0006,
+ "loss": 3.6913719177246094,
+ "step": 2539
+ },
+ {
+ "epoch": 35.27959807776322,
+ "grad_norm": 0.19834300875663757,
+ "learning_rate": 0.0006,
+ "loss": 3.6793041229248047,
+ "step": 2540
+ },
+ {
+ "epoch": 35.293577981651374,
+ "grad_norm": 0.1969013512134552,
+ "learning_rate": 0.0006,
+ "loss": 3.7063517570495605,
+ "step": 2541
+ },
+ {
+ "epoch": 35.30755788553954,
+ "grad_norm": 0.196136936545372,
+ "learning_rate": 0.0006,
+ "loss": 3.679825782775879,
+ "step": 2542
+ },
+ {
+ "epoch": 35.3215377894277,
+ "grad_norm": 0.20465479791164398,
+ "learning_rate": 0.0006,
+ "loss": 3.698906421661377,
+ "step": 2543
+ },
+ {
+ "epoch": 35.33551769331586,
+ "grad_norm": 0.204293355345726,
+ "learning_rate": 0.0006,
+ "loss": 3.728549003601074,
+ "step": 2544
+ },
+ {
+ "epoch": 35.34949759720402,
+ "grad_norm": 0.18861903250217438,
+ "learning_rate": 0.0006,
+ "loss": 3.687018632888794,
+ "step": 2545
+ },
+ {
+ "epoch": 35.36347750109218,
+ "grad_norm": 0.19066226482391357,
+ "learning_rate": 0.0006,
+ "loss": 3.667919158935547,
+ "step": 2546
+ },
+ {
+ "epoch": 35.37745740498034,
+ "grad_norm": 0.19985736906528473,
+ "learning_rate": 0.0006,
+ "loss": 3.6697773933410645,
+ "step": 2547
+ },
+ {
+ "epoch": 35.391437308868504,
+ "grad_norm": 0.20669348537921906,
+ "learning_rate": 0.0006,
+ "loss": 3.6718077659606934,
+ "step": 2548
+ },
+ {
+ "epoch": 35.40541721275666,
+ "grad_norm": 0.22164477407932281,
+ "learning_rate": 0.0006,
+ "loss": 3.692106246948242,
+ "step": 2549
+ },
+ {
+ "epoch": 35.419397116644824,
+ "grad_norm": 0.20884688198566437,
+ "learning_rate": 0.0006,
+ "loss": 3.714324712753296,
+ "step": 2550
+ },
+ {
+ "epoch": 35.43337702053299,
+ "grad_norm": 0.21811005473136902,
+ "learning_rate": 0.0006,
+ "loss": 3.678694725036621,
+ "step": 2551
+ },
+ {
+ "epoch": 35.44735692442114,
+ "grad_norm": 0.2427632063627243,
+ "learning_rate": 0.0006,
+ "loss": 3.6584935188293457,
+ "step": 2552
+ },
+ {
+ "epoch": 35.46133682830931,
+ "grad_norm": 0.2584928572177887,
+ "learning_rate": 0.0006,
+ "loss": 3.694148063659668,
+ "step": 2553
+ },
+ {
+ "epoch": 35.47531673219746,
+ "grad_norm": 0.2594548761844635,
+ "learning_rate": 0.0006,
+ "loss": 3.690629005432129,
+ "step": 2554
+ },
+ {
+ "epoch": 35.489296636085626,
+ "grad_norm": 0.2521844208240509,
+ "learning_rate": 0.0006,
+ "loss": 3.6949915885925293,
+ "step": 2555
+ },
+ {
+ "epoch": 35.50327653997379,
+ "grad_norm": 0.2284533679485321,
+ "learning_rate": 0.0006,
+ "loss": 3.6822848320007324,
+ "step": 2556
+ },
+ {
+ "epoch": 35.517256443861946,
+ "grad_norm": 0.2350241094827652,
+ "learning_rate": 0.0006,
+ "loss": 3.6841659545898438,
+ "step": 2557
+ },
+ {
+ "epoch": 35.53123634775011,
+ "grad_norm": 0.22496885061264038,
+ "learning_rate": 0.0006,
+ "loss": 3.676447629928589,
+ "step": 2558
+ },
+ {
+ "epoch": 35.54521625163827,
+ "grad_norm": 0.24326276779174805,
+ "learning_rate": 0.0006,
+ "loss": 3.681678533554077,
+ "step": 2559
+ },
+ {
+ "epoch": 35.55919615552643,
+ "grad_norm": 0.26298362016677856,
+ "learning_rate": 0.0006,
+ "loss": 3.6877617835998535,
+ "step": 2560
+ },
+ {
+ "epoch": 35.57317605941459,
+ "grad_norm": 0.2507239282131195,
+ "learning_rate": 0.0006,
+ "loss": 3.7089176177978516,
+ "step": 2561
+ },
+ {
+ "epoch": 35.58715596330275,
+ "grad_norm": 0.2276458442211151,
+ "learning_rate": 0.0006,
+ "loss": 3.705570936203003,
+ "step": 2562
+ },
+ {
+ "epoch": 35.60113586719091,
+ "grad_norm": 0.23317085206508636,
+ "learning_rate": 0.0006,
+ "loss": 3.6772396564483643,
+ "step": 2563
+ },
+ {
+ "epoch": 35.615115771079076,
+ "grad_norm": 0.23301710188388824,
+ "learning_rate": 0.0006,
+ "loss": 3.694855213165283,
+ "step": 2564
+ },
+ {
+ "epoch": 35.62909567496723,
+ "grad_norm": 0.2170179933309555,
+ "learning_rate": 0.0006,
+ "loss": 3.7095537185668945,
+ "step": 2565
+ },
+ {
+ "epoch": 35.643075578855395,
+ "grad_norm": 0.21211965382099152,
+ "learning_rate": 0.0006,
+ "loss": 3.670109272003174,
+ "step": 2566
+ },
+ {
+ "epoch": 35.65705548274356,
+ "grad_norm": 0.21052585542201996,
+ "learning_rate": 0.0006,
+ "loss": 3.6576027870178223,
+ "step": 2567
+ },
+ {
+ "epoch": 35.671035386631715,
+ "grad_norm": 0.21556039154529572,
+ "learning_rate": 0.0006,
+ "loss": 3.6870639324188232,
+ "step": 2568
+ },
+ {
+ "epoch": 35.68501529051988,
+ "grad_norm": 0.2246469408273697,
+ "learning_rate": 0.0006,
+ "loss": 3.675652503967285,
+ "step": 2569
+ },
+ {
+ "epoch": 35.69899519440804,
+ "grad_norm": 0.21891754865646362,
+ "learning_rate": 0.0006,
+ "loss": 3.692298650741577,
+ "step": 2570
+ },
+ {
+ "epoch": 35.7129750982962,
+ "grad_norm": 0.18774104118347168,
+ "learning_rate": 0.0006,
+ "loss": 3.681035041809082,
+ "step": 2571
+ },
+ {
+ "epoch": 35.72695500218436,
+ "grad_norm": 0.19461573660373688,
+ "learning_rate": 0.0006,
+ "loss": 3.7007932662963867,
+ "step": 2572
+ },
+ {
+ "epoch": 35.74093490607252,
+ "grad_norm": 0.25579094886779785,
+ "learning_rate": 0.0006,
+ "loss": 3.724409580230713,
+ "step": 2573
+ },
+ {
+ "epoch": 35.75491480996068,
+ "grad_norm": 0.27635645866394043,
+ "learning_rate": 0.0006,
+ "loss": 3.68107271194458,
+ "step": 2574
+ },
+ {
+ "epoch": 35.768894713848844,
+ "grad_norm": 0.2233380675315857,
+ "learning_rate": 0.0006,
+ "loss": 3.7123913764953613,
+ "step": 2575
+ },
+ {
+ "epoch": 35.782874617737,
+ "grad_norm": 0.19383835792541504,
+ "learning_rate": 0.0006,
+ "loss": 3.6948328018188477,
+ "step": 2576
+ },
+ {
+ "epoch": 35.796854521625164,
+ "grad_norm": 0.18138426542282104,
+ "learning_rate": 0.0006,
+ "loss": 3.6837103366851807,
+ "step": 2577
+ },
+ {
+ "epoch": 35.81083442551333,
+ "grad_norm": 0.18680135905742645,
+ "learning_rate": 0.0006,
+ "loss": 3.7106502056121826,
+ "step": 2578
+ },
+ {
+ "epoch": 35.824814329401484,
+ "grad_norm": 0.19226312637329102,
+ "learning_rate": 0.0006,
+ "loss": 3.69488787651062,
+ "step": 2579
+ },
+ {
+ "epoch": 35.83879423328965,
+ "grad_norm": 0.19224657118320465,
+ "learning_rate": 0.0006,
+ "loss": 3.7103662490844727,
+ "step": 2580
+ },
+ {
+ "epoch": 35.8527741371778,
+ "grad_norm": 0.18991880118846893,
+ "learning_rate": 0.0006,
+ "loss": 3.7154245376586914,
+ "step": 2581
+ },
+ {
+ "epoch": 35.86675404106597,
+ "grad_norm": 0.2036849409341812,
+ "learning_rate": 0.0006,
+ "loss": 3.723738193511963,
+ "step": 2582
+ },
+ {
+ "epoch": 35.88073394495413,
+ "grad_norm": 0.24730375409126282,
+ "learning_rate": 0.0006,
+ "loss": 3.6830549240112305,
+ "step": 2583
+ },
+ {
+ "epoch": 35.89471384884229,
+ "grad_norm": 0.26552343368530273,
+ "learning_rate": 0.0006,
+ "loss": 3.7025017738342285,
+ "step": 2584
+ },
+ {
+ "epoch": 35.90869375273045,
+ "grad_norm": 0.2621893286705017,
+ "learning_rate": 0.0006,
+ "loss": 3.697399854660034,
+ "step": 2585
+ },
+ {
+ "epoch": 35.92267365661861,
+ "grad_norm": 0.2320089191198349,
+ "learning_rate": 0.0006,
+ "loss": 3.722207546234131,
+ "step": 2586
+ },
+ {
+ "epoch": 35.93665356050677,
+ "grad_norm": 0.1848745346069336,
+ "learning_rate": 0.0006,
+ "loss": 3.711249351501465,
+ "step": 2587
+ },
+ {
+ "epoch": 35.95063346439493,
+ "grad_norm": 0.24218113720417023,
+ "learning_rate": 0.0006,
+ "loss": 3.698894500732422,
+ "step": 2588
+ },
+ {
+ "epoch": 35.964613368283096,
+ "grad_norm": 0.29338452219963074,
+ "learning_rate": 0.0006,
+ "loss": 3.7470521926879883,
+ "step": 2589
+ },
+ {
+ "epoch": 35.97859327217125,
+ "grad_norm": 0.2804136276245117,
+ "learning_rate": 0.0006,
+ "loss": 3.750649929046631,
+ "step": 2590
+ },
+ {
+ "epoch": 35.992573176059416,
+ "grad_norm": 0.26404470205307007,
+ "learning_rate": 0.0006,
+ "loss": 3.6995797157287598,
+ "step": 2591
+ },
+ {
+ "epoch": 36.0,
+ "grad_norm": 0.27446141839027405,
+ "learning_rate": 0.0006,
+ "loss": 3.715768814086914,
+ "step": 2592
+ },
+ {
+ "epoch": 36.0,
+ "eval_loss": 4.007599830627441,
+ "eval_runtime": 44.0149,
+ "eval_samples_per_second": 55.481,
+ "eval_steps_per_second": 3.476,
+ "step": 2592
+ },
+ {
+ "epoch": 36.01397990388816,
+ "grad_norm": 0.2365594208240509,
+ "learning_rate": 0.0006,
+ "loss": 3.6529457569122314,
+ "step": 2593
+ },
+ {
+ "epoch": 36.02795980777632,
+ "grad_norm": 0.24824099242687225,
+ "learning_rate": 0.0006,
+ "loss": 3.6703386306762695,
+ "step": 2594
+ },
+ {
+ "epoch": 36.04193971166448,
+ "grad_norm": 0.26802200078964233,
+ "learning_rate": 0.0006,
+ "loss": 3.688307762145996,
+ "step": 2595
+ },
+ {
+ "epoch": 36.05591961555265,
+ "grad_norm": 0.2552911341190338,
+ "learning_rate": 0.0006,
+ "loss": 3.681797981262207,
+ "step": 2596
+ },
+ {
+ "epoch": 36.0698995194408,
+ "grad_norm": 0.254991739988327,
+ "learning_rate": 0.0006,
+ "loss": 3.644087791442871,
+ "step": 2597
+ },
+ {
+ "epoch": 36.083879423328966,
+ "grad_norm": 0.2496735155582428,
+ "learning_rate": 0.0006,
+ "loss": 3.644047737121582,
+ "step": 2598
+ },
+ {
+ "epoch": 36.09785932721712,
+ "grad_norm": 0.23637443780899048,
+ "learning_rate": 0.0006,
+ "loss": 3.684454917907715,
+ "step": 2599
+ },
+ {
+ "epoch": 36.111839231105286,
+ "grad_norm": 0.22065003216266632,
+ "learning_rate": 0.0006,
+ "loss": 3.661752700805664,
+ "step": 2600
+ },
+ {
+ "epoch": 36.12581913499345,
+ "grad_norm": 0.2292395532131195,
+ "learning_rate": 0.0006,
+ "loss": 3.6709558963775635,
+ "step": 2601
+ },
+ {
+ "epoch": 36.139799038881605,
+ "grad_norm": 0.22295089066028595,
+ "learning_rate": 0.0006,
+ "loss": 3.642230987548828,
+ "step": 2602
+ },
+ {
+ "epoch": 36.15377894276977,
+ "grad_norm": 0.2220531553030014,
+ "learning_rate": 0.0006,
+ "loss": 3.653268814086914,
+ "step": 2603
+ },
+ {
+ "epoch": 36.16775884665793,
+ "grad_norm": 0.21605174243450165,
+ "learning_rate": 0.0006,
+ "loss": 3.6791329383850098,
+ "step": 2604
+ },
+ {
+ "epoch": 36.18173875054609,
+ "grad_norm": 0.20932699739933014,
+ "learning_rate": 0.0006,
+ "loss": 3.6496856212615967,
+ "step": 2605
+ },
+ {
+ "epoch": 36.19571865443425,
+ "grad_norm": 0.20941385626792908,
+ "learning_rate": 0.0006,
+ "loss": 3.6445729732513428,
+ "step": 2606
+ },
+ {
+ "epoch": 36.20969855832241,
+ "grad_norm": 0.1987197995185852,
+ "learning_rate": 0.0006,
+ "loss": 3.6481809616088867,
+ "step": 2607
+ },
+ {
+ "epoch": 36.22367846221057,
+ "grad_norm": 0.19054439663887024,
+ "learning_rate": 0.0006,
+ "loss": 3.66894268989563,
+ "step": 2608
+ },
+ {
+ "epoch": 36.237658366098735,
+ "grad_norm": 0.19940806925296783,
+ "learning_rate": 0.0006,
+ "loss": 3.7123427391052246,
+ "step": 2609
+ },
+ {
+ "epoch": 36.25163826998689,
+ "grad_norm": 0.22157685458660126,
+ "learning_rate": 0.0006,
+ "loss": 3.6707541942596436,
+ "step": 2610
+ },
+ {
+ "epoch": 36.265618173875055,
+ "grad_norm": 0.2362316995859146,
+ "learning_rate": 0.0006,
+ "loss": 3.6906795501708984,
+ "step": 2611
+ },
+ {
+ "epoch": 36.27959807776322,
+ "grad_norm": 0.24560341238975525,
+ "learning_rate": 0.0006,
+ "loss": 3.668379783630371,
+ "step": 2612
+ },
+ {
+ "epoch": 36.293577981651374,
+ "grad_norm": 0.22814054787158966,
+ "learning_rate": 0.0006,
+ "loss": 3.665527820587158,
+ "step": 2613
+ },
+ {
+ "epoch": 36.30755788553954,
+ "grad_norm": 0.2156696617603302,
+ "learning_rate": 0.0006,
+ "loss": 3.673835277557373,
+ "step": 2614
+ },
+ {
+ "epoch": 36.3215377894277,
+ "grad_norm": 0.20152772963047028,
+ "learning_rate": 0.0006,
+ "loss": 3.6512670516967773,
+ "step": 2615
+ },
+ {
+ "epoch": 36.33551769331586,
+ "grad_norm": 0.22466860711574554,
+ "learning_rate": 0.0006,
+ "loss": 3.6877706050872803,
+ "step": 2616
+ },
+ {
+ "epoch": 36.34949759720402,
+ "grad_norm": 0.21688112616539001,
+ "learning_rate": 0.0006,
+ "loss": 3.6895859241485596,
+ "step": 2617
+ },
+ {
+ "epoch": 36.36347750109218,
+ "grad_norm": 0.19836577773094177,
+ "learning_rate": 0.0006,
+ "loss": 3.6658992767333984,
+ "step": 2618
+ },
+ {
+ "epoch": 36.37745740498034,
+ "grad_norm": 0.1995069831609726,
+ "learning_rate": 0.0006,
+ "loss": 3.677614450454712,
+ "step": 2619
+ },
+ {
+ "epoch": 36.391437308868504,
+ "grad_norm": 0.21234792470932007,
+ "learning_rate": 0.0006,
+ "loss": 3.6971967220306396,
+ "step": 2620
+ },
+ {
+ "epoch": 36.40541721275666,
+ "grad_norm": 0.20898285508155823,
+ "learning_rate": 0.0006,
+ "loss": 3.6936516761779785,
+ "step": 2621
+ },
+ {
+ "epoch": 36.419397116644824,
+ "grad_norm": 0.2115008533000946,
+ "learning_rate": 0.0006,
+ "loss": 3.6674065589904785,
+ "step": 2622
+ },
+ {
+ "epoch": 36.43337702053299,
+ "grad_norm": 0.2041143774986267,
+ "learning_rate": 0.0006,
+ "loss": 3.6455483436584473,
+ "step": 2623
+ },
+ {
+ "epoch": 36.44735692442114,
+ "grad_norm": 0.1966932713985443,
+ "learning_rate": 0.0006,
+ "loss": 3.6938109397888184,
+ "step": 2624
+ },
+ {
+ "epoch": 36.46133682830931,
+ "grad_norm": 0.20062223076820374,
+ "learning_rate": 0.0006,
+ "loss": 3.6775765419006348,
+ "step": 2625
+ },
+ {
+ "epoch": 36.47531673219746,
+ "grad_norm": 0.20610390603542328,
+ "learning_rate": 0.0006,
+ "loss": 3.6835384368896484,
+ "step": 2626
+ },
+ {
+ "epoch": 36.489296636085626,
+ "grad_norm": 0.20481473207473755,
+ "learning_rate": 0.0006,
+ "loss": 3.6794047355651855,
+ "step": 2627
+ },
+ {
+ "epoch": 36.50327653997379,
+ "grad_norm": 0.18964581191539764,
+ "learning_rate": 0.0006,
+ "loss": 3.7035841941833496,
+ "step": 2628
+ },
+ {
+ "epoch": 36.517256443861946,
+ "grad_norm": 0.2029343545436859,
+ "learning_rate": 0.0006,
+ "loss": 3.6667590141296387,
+ "step": 2629
+ },
+ {
+ "epoch": 36.53123634775011,
+ "grad_norm": 0.23656968772411346,
+ "learning_rate": 0.0006,
+ "loss": 3.6974546909332275,
+ "step": 2630
+ },
+ {
+ "epoch": 36.54521625163827,
+ "grad_norm": 0.23401431739330292,
+ "learning_rate": 0.0006,
+ "loss": 3.668936252593994,
+ "step": 2631
+ },
+ {
+ "epoch": 36.55919615552643,
+ "grad_norm": 0.22258102893829346,
+ "learning_rate": 0.0006,
+ "loss": 3.667977809906006,
+ "step": 2632
+ },
+ {
+ "epoch": 36.57317605941459,
+ "grad_norm": 0.20849554240703583,
+ "learning_rate": 0.0006,
+ "loss": 3.6674845218658447,
+ "step": 2633
+ },
+ {
+ "epoch": 36.58715596330275,
+ "grad_norm": 0.20684309303760529,
+ "learning_rate": 0.0006,
+ "loss": 3.6828644275665283,
+ "step": 2634
+ },
+ {
+ "epoch": 36.60113586719091,
+ "grad_norm": 0.19114233553409576,
+ "learning_rate": 0.0006,
+ "loss": 3.7084832191467285,
+ "step": 2635
+ },
+ {
+ "epoch": 36.615115771079076,
+ "grad_norm": 0.20382429659366608,
+ "learning_rate": 0.0006,
+ "loss": 3.68354868888855,
+ "step": 2636
+ },
+ {
+ "epoch": 36.62909567496723,
+ "grad_norm": 0.22526590526103973,
+ "learning_rate": 0.0006,
+ "loss": 3.684112310409546,
+ "step": 2637
+ },
+ {
+ "epoch": 36.643075578855395,
+ "grad_norm": 0.20735391974449158,
+ "learning_rate": 0.0006,
+ "loss": 3.67702054977417,
+ "step": 2638
+ },
+ {
+ "epoch": 36.65705548274356,
+ "grad_norm": 0.18549653887748718,
+ "learning_rate": 0.0006,
+ "loss": 3.6840810775756836,
+ "step": 2639
+ },
+ {
+ "epoch": 36.671035386631715,
+ "grad_norm": 0.1805262714624405,
+ "learning_rate": 0.0006,
+ "loss": 3.688119411468506,
+ "step": 2640
+ },
+ {
+ "epoch": 36.68501529051988,
+ "grad_norm": 0.17545704543590546,
+ "learning_rate": 0.0006,
+ "loss": 3.6477861404418945,
+ "step": 2641
+ },
+ {
+ "epoch": 36.69899519440804,
+ "grad_norm": 0.1772221326828003,
+ "learning_rate": 0.0006,
+ "loss": 3.6935806274414062,
+ "step": 2642
+ },
+ {
+ "epoch": 36.7129750982962,
+ "grad_norm": 0.18701671063899994,
+ "learning_rate": 0.0006,
+ "loss": 3.6820428371429443,
+ "step": 2643
+ },
+ {
+ "epoch": 36.72695500218436,
+ "grad_norm": 0.2057863473892212,
+ "learning_rate": 0.0006,
+ "loss": 3.669762134552002,
+ "step": 2644
+ },
+ {
+ "epoch": 36.74093490607252,
+ "grad_norm": 0.2565848231315613,
+ "learning_rate": 0.0006,
+ "loss": 3.717599391937256,
+ "step": 2645
+ },
+ {
+ "epoch": 36.75491480996068,
+ "grad_norm": 0.24362123012542725,
+ "learning_rate": 0.0006,
+ "loss": 3.671900987625122,
+ "step": 2646
+ },
+ {
+ "epoch": 36.768894713848844,
+ "grad_norm": 0.19606009125709534,
+ "learning_rate": 0.0006,
+ "loss": 3.6782546043395996,
+ "step": 2647
+ },
+ {
+ "epoch": 36.782874617737,
+ "grad_norm": 0.1948748379945755,
+ "learning_rate": 0.0006,
+ "loss": 3.6823501586914062,
+ "step": 2648
+ },
+ {
+ "epoch": 36.796854521625164,
+ "grad_norm": 0.22289852797985077,
+ "learning_rate": 0.0006,
+ "loss": 3.693469762802124,
+ "step": 2649
+ },
+ {
+ "epoch": 36.81083442551333,
+ "grad_norm": 0.24751701951026917,
+ "learning_rate": 0.0006,
+ "loss": 3.700678825378418,
+ "step": 2650
+ },
+ {
+ "epoch": 36.824814329401484,
+ "grad_norm": 0.28663966059684753,
+ "learning_rate": 0.0006,
+ "loss": 3.6960878372192383,
+ "step": 2651
+ },
+ {
+ "epoch": 36.83879423328965,
+ "grad_norm": 0.3288552165031433,
+ "learning_rate": 0.0006,
+ "loss": 3.7255043983459473,
+ "step": 2652
+ },
+ {
+ "epoch": 36.8527741371778,
+ "grad_norm": 0.3555443286895752,
+ "learning_rate": 0.0006,
+ "loss": 3.725308418273926,
+ "step": 2653
+ },
+ {
+ "epoch": 36.86675404106597,
+ "grad_norm": 0.3204147219657898,
+ "learning_rate": 0.0006,
+ "loss": 3.7137985229492188,
+ "step": 2654
+ },
+ {
+ "epoch": 36.88073394495413,
+ "grad_norm": 0.2944706976413727,
+ "learning_rate": 0.0006,
+ "loss": 3.7032840251922607,
+ "step": 2655
+ },
+ {
+ "epoch": 36.89471384884229,
+ "grad_norm": 0.2845679223537445,
+ "learning_rate": 0.0006,
+ "loss": 3.6840004920959473,
+ "step": 2656
+ },
+ {
+ "epoch": 36.90869375273045,
+ "grad_norm": 0.2815704047679901,
+ "learning_rate": 0.0006,
+ "loss": 3.6958417892456055,
+ "step": 2657
+ },
+ {
+ "epoch": 36.92267365661861,
+ "grad_norm": 0.2733481228351593,
+ "learning_rate": 0.0006,
+ "loss": 3.677690029144287,
+ "step": 2658
+ },
+ {
+ "epoch": 36.93665356050677,
+ "grad_norm": 0.29572054743766785,
+ "learning_rate": 0.0006,
+ "loss": 3.6983718872070312,
+ "step": 2659
+ },
+ {
+ "epoch": 36.95063346439493,
+ "grad_norm": 0.2487923800945282,
+ "learning_rate": 0.0006,
+ "loss": 3.7041163444519043,
+ "step": 2660
+ },
+ {
+ "epoch": 36.964613368283096,
+ "grad_norm": 0.2541966438293457,
+ "learning_rate": 0.0006,
+ "loss": 3.7038979530334473,
+ "step": 2661
+ },
+ {
+ "epoch": 36.97859327217125,
+ "grad_norm": 0.2441335767507553,
+ "learning_rate": 0.0006,
+ "loss": 3.717966079711914,
+ "step": 2662
+ },
+ {
+ "epoch": 36.992573176059416,
+ "grad_norm": 0.2304554283618927,
+ "learning_rate": 0.0006,
+ "loss": 3.671098232269287,
+ "step": 2663
+ },
+ {
+ "epoch": 37.0,
+ "grad_norm": 0.2346591204404831,
+ "learning_rate": 0.0006,
+ "loss": 3.680298089981079,
+ "step": 2664
+ },
+ {
+ "epoch": 37.0,
+ "eval_loss": 3.9944777488708496,
+ "eval_runtime": 43.9862,
+ "eval_samples_per_second": 55.517,
+ "eval_steps_per_second": 3.478,
+ "step": 2664
+ },
+ {
+ "epoch": 37.01397990388816,
+ "grad_norm": 0.22970618307590485,
+ "learning_rate": 0.0006,
+ "loss": 3.6835923194885254,
+ "step": 2665
+ },
+ {
+ "epoch": 37.02795980777632,
+ "grad_norm": 0.25463759899139404,
+ "learning_rate": 0.0006,
+ "loss": 3.658339023590088,
+ "step": 2666
+ },
+ {
+ "epoch": 37.04193971166448,
+ "grad_norm": 0.2520577311515808,
+ "learning_rate": 0.0006,
+ "loss": 3.6275506019592285,
+ "step": 2667
+ },
+ {
+ "epoch": 37.05591961555265,
+ "grad_norm": 0.22698813676834106,
+ "learning_rate": 0.0006,
+ "loss": 3.65043568611145,
+ "step": 2668
+ },
+ {
+ "epoch": 37.0698995194408,
+ "grad_norm": 0.21133972704410553,
+ "learning_rate": 0.0006,
+ "loss": 3.6262078285217285,
+ "step": 2669
+ },
+ {
+ "epoch": 37.083879423328966,
+ "grad_norm": 0.21940460801124573,
+ "learning_rate": 0.0006,
+ "loss": 3.6709489822387695,
+ "step": 2670
+ },
+ {
+ "epoch": 37.09785932721712,
+ "grad_norm": 0.21897517144680023,
+ "learning_rate": 0.0006,
+ "loss": 3.6621508598327637,
+ "step": 2671
+ },
+ {
+ "epoch": 37.111839231105286,
+ "grad_norm": 0.2270219624042511,
+ "learning_rate": 0.0006,
+ "loss": 3.6334924697875977,
+ "step": 2672
+ },
+ {
+ "epoch": 37.12581913499345,
+ "grad_norm": 0.22082042694091797,
+ "learning_rate": 0.0006,
+ "loss": 3.662209987640381,
+ "step": 2673
+ },
+ {
+ "epoch": 37.139799038881605,
+ "grad_norm": 0.19931960105895996,
+ "learning_rate": 0.0006,
+ "loss": 3.6655359268188477,
+ "step": 2674
+ },
+ {
+ "epoch": 37.15377894276977,
+ "grad_norm": 0.21451307833194733,
+ "learning_rate": 0.0006,
+ "loss": 3.656287670135498,
+ "step": 2675
+ },
+ {
+ "epoch": 37.16775884665793,
+ "grad_norm": 0.2131514698266983,
+ "learning_rate": 0.0006,
+ "loss": 3.635054111480713,
+ "step": 2676
+ },
+ {
+ "epoch": 37.18173875054609,
+ "grad_norm": 0.20425808429718018,
+ "learning_rate": 0.0006,
+ "loss": 3.67653226852417,
+ "step": 2677
+ },
+ {
+ "epoch": 37.19571865443425,
+ "grad_norm": 0.19423379004001617,
+ "learning_rate": 0.0006,
+ "loss": 3.6827316284179688,
+ "step": 2678
+ },
+ {
+ "epoch": 37.20969855832241,
+ "grad_norm": 0.1954883486032486,
+ "learning_rate": 0.0006,
+ "loss": 3.658092498779297,
+ "step": 2679
+ },
+ {
+ "epoch": 37.22367846221057,
+ "grad_norm": 0.21153928339481354,
+ "learning_rate": 0.0006,
+ "loss": 3.6675186157226562,
+ "step": 2680
+ },
+ {
+ "epoch": 37.237658366098735,
+ "grad_norm": 0.2032976895570755,
+ "learning_rate": 0.0006,
+ "loss": 3.6725759506225586,
+ "step": 2681
+ },
+ {
+ "epoch": 37.25163826998689,
+ "grad_norm": 0.19839346408843994,
+ "learning_rate": 0.0006,
+ "loss": 3.660851240158081,
+ "step": 2682
+ },
+ {
+ "epoch": 37.265618173875055,
+ "grad_norm": 0.1884699910879135,
+ "learning_rate": 0.0006,
+ "loss": 3.6653623580932617,
+ "step": 2683
+ },
+ {
+ "epoch": 37.27959807776322,
+ "grad_norm": 0.19558705389499664,
+ "learning_rate": 0.0006,
+ "loss": 3.648016929626465,
+ "step": 2684
+ },
+ {
+ "epoch": 37.293577981651374,
+ "grad_norm": 0.19453682005405426,
+ "learning_rate": 0.0006,
+ "loss": 3.6804773807525635,
+ "step": 2685
+ },
+ {
+ "epoch": 37.30755788553954,
+ "grad_norm": 0.1901177167892456,
+ "learning_rate": 0.0006,
+ "loss": 3.6533353328704834,
+ "step": 2686
+ },
+ {
+ "epoch": 37.3215377894277,
+ "grad_norm": 0.19425596296787262,
+ "learning_rate": 0.0006,
+ "loss": 3.665745735168457,
+ "step": 2687
+ },
+ {
+ "epoch": 37.33551769331586,
+ "grad_norm": 0.17583411931991577,
+ "learning_rate": 0.0006,
+ "loss": 3.679112434387207,
+ "step": 2688
+ },
+ {
+ "epoch": 37.34949759720402,
+ "grad_norm": 0.19667863845825195,
+ "learning_rate": 0.0006,
+ "loss": 3.6650352478027344,
+ "step": 2689
+ },
+ {
+ "epoch": 37.36347750109218,
+ "grad_norm": 0.22803270816802979,
+ "learning_rate": 0.0006,
+ "loss": 3.6658573150634766,
+ "step": 2690
+ },
+ {
+ "epoch": 37.37745740498034,
+ "grad_norm": 0.20589298009872437,
+ "learning_rate": 0.0006,
+ "loss": 3.6587300300598145,
+ "step": 2691
+ },
+ {
+ "epoch": 37.391437308868504,
+ "grad_norm": 0.1946951299905777,
+ "learning_rate": 0.0006,
+ "loss": 3.6515092849731445,
+ "step": 2692
+ },
+ {
+ "epoch": 37.40541721275666,
+ "grad_norm": 0.19029614329338074,
+ "learning_rate": 0.0006,
+ "loss": 3.6383113861083984,
+ "step": 2693
+ },
+ {
+ "epoch": 37.419397116644824,
+ "grad_norm": 0.1944548338651657,
+ "learning_rate": 0.0006,
+ "loss": 3.7017135620117188,
+ "step": 2694
+ },
+ {
+ "epoch": 37.43337702053299,
+ "grad_norm": 0.19482386112213135,
+ "learning_rate": 0.0006,
+ "loss": 3.6791775226593018,
+ "step": 2695
+ },
+ {
+ "epoch": 37.44735692442114,
+ "grad_norm": 0.23276680707931519,
+ "learning_rate": 0.0006,
+ "loss": 3.672245979309082,
+ "step": 2696
+ },
+ {
+ "epoch": 37.46133682830931,
+ "grad_norm": 0.22267542779445648,
+ "learning_rate": 0.0006,
+ "loss": 3.683380365371704,
+ "step": 2697
+ },
+ {
+ "epoch": 37.47531673219746,
+ "grad_norm": 0.1942203938961029,
+ "learning_rate": 0.0006,
+ "loss": 3.6760759353637695,
+ "step": 2698
+ },
+ {
+ "epoch": 37.489296636085626,
+ "grad_norm": 0.21212540566921234,
+ "learning_rate": 0.0006,
+ "loss": 3.660719633102417,
+ "step": 2699
+ },
+ {
+ "epoch": 37.50327653997379,
+ "grad_norm": 0.2365427315235138,
+ "learning_rate": 0.0006,
+ "loss": 3.6727194786071777,
+ "step": 2700
+ },
+ {
+ "epoch": 37.517256443861946,
+ "grad_norm": 0.2379675805568695,
+ "learning_rate": 0.0006,
+ "loss": 3.6691598892211914,
+ "step": 2701
+ },
+ {
+ "epoch": 37.53123634775011,
+ "grad_norm": 0.22142401337623596,
+ "learning_rate": 0.0006,
+ "loss": 3.6882128715515137,
+ "step": 2702
+ },
+ {
+ "epoch": 37.54521625163827,
+ "grad_norm": 0.19993607699871063,
+ "learning_rate": 0.0006,
+ "loss": 3.6651787757873535,
+ "step": 2703
+ },
+ {
+ "epoch": 37.55919615552643,
+ "grad_norm": 0.19934895634651184,
+ "learning_rate": 0.0006,
+ "loss": 3.6680638790130615,
+ "step": 2704
+ },
+ {
+ "epoch": 37.57317605941459,
+ "grad_norm": 0.21202369034290314,
+ "learning_rate": 0.0006,
+ "loss": 3.697615623474121,
+ "step": 2705
+ },
+ {
+ "epoch": 37.58715596330275,
+ "grad_norm": 0.1994577795267105,
+ "learning_rate": 0.0006,
+ "loss": 3.688243865966797,
+ "step": 2706
+ },
+ {
+ "epoch": 37.60113586719091,
+ "grad_norm": 0.20365118980407715,
+ "learning_rate": 0.0006,
+ "loss": 3.6615519523620605,
+ "step": 2707
+ },
+ {
+ "epoch": 37.615115771079076,
+ "grad_norm": 0.22466035187244415,
+ "learning_rate": 0.0006,
+ "loss": 3.703111171722412,
+ "step": 2708
+ },
+ {
+ "epoch": 37.62909567496723,
+ "grad_norm": 0.21140407025814056,
+ "learning_rate": 0.0006,
+ "loss": 3.6744728088378906,
+ "step": 2709
+ },
+ {
+ "epoch": 37.643075578855395,
+ "grad_norm": 0.22220195829868317,
+ "learning_rate": 0.0006,
+ "loss": 3.671501874923706,
+ "step": 2710
+ },
+ {
+ "epoch": 37.65705548274356,
+ "grad_norm": 0.23279480636119843,
+ "learning_rate": 0.0006,
+ "loss": 3.6962859630584717,
+ "step": 2711
+ },
+ {
+ "epoch": 37.671035386631715,
+ "grad_norm": 0.23284408450126648,
+ "learning_rate": 0.0006,
+ "loss": 3.670231342315674,
+ "step": 2712
+ },
+ {
+ "epoch": 37.68501529051988,
+ "grad_norm": 0.21935738623142242,
+ "learning_rate": 0.0006,
+ "loss": 3.6908650398254395,
+ "step": 2713
+ },
+ {
+ "epoch": 37.69899519440804,
+ "grad_norm": 0.2072262167930603,
+ "learning_rate": 0.0006,
+ "loss": 3.7204506397247314,
+ "step": 2714
+ },
+ {
+ "epoch": 37.7129750982962,
+ "grad_norm": 0.22547709941864014,
+ "learning_rate": 0.0006,
+ "loss": 3.6740894317626953,
+ "step": 2715
+ },
+ {
+ "epoch": 37.72695500218436,
+ "grad_norm": 0.2460414469242096,
+ "learning_rate": 0.0006,
+ "loss": 3.6938390731811523,
+ "step": 2716
+ },
+ {
+ "epoch": 37.74093490607252,
+ "grad_norm": 0.24756456911563873,
+ "learning_rate": 0.0006,
+ "loss": 3.692173480987549,
+ "step": 2717
+ },
+ {
+ "epoch": 37.75491480996068,
+ "grad_norm": 0.20149244368076324,
+ "learning_rate": 0.0006,
+ "loss": 3.6677675247192383,
+ "step": 2718
+ },
+ {
+ "epoch": 37.768894713848844,
+ "grad_norm": 0.19834814965724945,
+ "learning_rate": 0.0006,
+ "loss": 3.6717336177825928,
+ "step": 2719
+ },
+ {
+ "epoch": 37.782874617737,
+ "grad_norm": 0.22929978370666504,
+ "learning_rate": 0.0006,
+ "loss": 3.6818275451660156,
+ "step": 2720
+ },
+ {
+ "epoch": 37.796854521625164,
+ "grad_norm": 0.23674434423446655,
+ "learning_rate": 0.0006,
+ "loss": 3.689767360687256,
+ "step": 2721
+ },
+ {
+ "epoch": 37.81083442551333,
+ "grad_norm": 0.22798952460289001,
+ "learning_rate": 0.0006,
+ "loss": 3.6928915977478027,
+ "step": 2722
+ },
+ {
+ "epoch": 37.824814329401484,
+ "grad_norm": 0.2270302027463913,
+ "learning_rate": 0.0006,
+ "loss": 3.6884233951568604,
+ "step": 2723
+ },
+ {
+ "epoch": 37.83879423328965,
+ "grad_norm": 0.23563820123672485,
+ "learning_rate": 0.0006,
+ "loss": 3.6962456703186035,
+ "step": 2724
+ },
+ {
+ "epoch": 37.8527741371778,
+ "grad_norm": 0.2240045815706253,
+ "learning_rate": 0.0006,
+ "loss": 3.6985082626342773,
+ "step": 2725
+ },
+ {
+ "epoch": 37.86675404106597,
+ "grad_norm": 0.21541155874729156,
+ "learning_rate": 0.0006,
+ "loss": 3.6960105895996094,
+ "step": 2726
+ },
+ {
+ "epoch": 37.88073394495413,
+ "grad_norm": 0.23257222771644592,
+ "learning_rate": 0.0006,
+ "loss": 3.667404890060425,
+ "step": 2727
+ },
+ {
+ "epoch": 37.89471384884229,
+ "grad_norm": 0.226792573928833,
+ "learning_rate": 0.0006,
+ "loss": 3.6549744606018066,
+ "step": 2728
+ },
+ {
+ "epoch": 37.90869375273045,
+ "grad_norm": 0.18993401527404785,
+ "learning_rate": 0.0006,
+ "loss": 3.6772334575653076,
+ "step": 2729
+ },
+ {
+ "epoch": 37.92267365661861,
+ "grad_norm": 0.20936095714569092,
+ "learning_rate": 0.0006,
+ "loss": 3.671116352081299,
+ "step": 2730
+ },
+ {
+ "epoch": 37.93665356050677,
+ "grad_norm": 0.2203974425792694,
+ "learning_rate": 0.0006,
+ "loss": 3.6549739837646484,
+ "step": 2731
+ },
+ {
+ "epoch": 37.95063346439493,
+ "grad_norm": 0.19504620134830475,
+ "learning_rate": 0.0006,
+ "loss": 3.6755447387695312,
+ "step": 2732
+ },
+ {
+ "epoch": 37.964613368283096,
+ "grad_norm": 0.2025984674692154,
+ "learning_rate": 0.0006,
+ "loss": 3.678955554962158,
+ "step": 2733
+ },
+ {
+ "epoch": 37.97859327217125,
+ "grad_norm": 0.21556107699871063,
+ "learning_rate": 0.0006,
+ "loss": 3.6680502891540527,
+ "step": 2734
+ },
+ {
+ "epoch": 37.992573176059416,
+ "grad_norm": 0.21011291444301605,
+ "learning_rate": 0.0006,
+ "loss": 3.672039031982422,
+ "step": 2735
+ },
+ {
+ "epoch": 38.0,
+ "grad_norm": 0.23710957169532776,
+ "learning_rate": 0.0006,
+ "loss": 3.6326794624328613,
+ "step": 2736
+ },
+ {
+ "epoch": 38.0,
+ "eval_loss": 3.990501880645752,
+ "eval_runtime": 43.8951,
+ "eval_samples_per_second": 55.633,
+ "eval_steps_per_second": 3.486,
+ "step": 2736
+ },
+ {
+ "epoch": 38.01397990388816,
+ "grad_norm": 0.20711326599121094,
+ "learning_rate": 0.0006,
+ "loss": 3.6364657878875732,
+ "step": 2737
+ },
+ {
+ "epoch": 38.02795980777632,
+ "grad_norm": 0.2250880002975464,
+ "learning_rate": 0.0006,
+ "loss": 3.637646436691284,
+ "step": 2738
+ },
+ {
+ "epoch": 38.04193971166448,
+ "grad_norm": 0.2448352724313736,
+ "learning_rate": 0.0006,
+ "loss": 3.63557767868042,
+ "step": 2739
+ },
+ {
+ "epoch": 38.05591961555265,
+ "grad_norm": 0.23031368851661682,
+ "learning_rate": 0.0006,
+ "loss": 3.627117395401001,
+ "step": 2740
+ },
+ {
+ "epoch": 38.0698995194408,
+ "grad_norm": 0.2045450210571289,
+ "learning_rate": 0.0006,
+ "loss": 3.6594958305358887,
+ "step": 2741
+ },
+ {
+ "epoch": 38.083879423328966,
+ "grad_norm": 0.21253496408462524,
+ "learning_rate": 0.0006,
+ "loss": 3.65494441986084,
+ "step": 2742
+ },
+ {
+ "epoch": 38.09785932721712,
+ "grad_norm": 0.20196112990379333,
+ "learning_rate": 0.0006,
+ "loss": 3.645289421081543,
+ "step": 2743
+ },
+ {
+ "epoch": 38.111839231105286,
+ "grad_norm": 0.20258229970932007,
+ "learning_rate": 0.0006,
+ "loss": 3.6698505878448486,
+ "step": 2744
+ },
+ {
+ "epoch": 38.12581913499345,
+ "grad_norm": 0.22182606160640717,
+ "learning_rate": 0.0006,
+ "loss": 3.6427698135375977,
+ "step": 2745
+ },
+ {
+ "epoch": 38.139799038881605,
+ "grad_norm": 0.21281519532203674,
+ "learning_rate": 0.0006,
+ "loss": 3.668337345123291,
+ "step": 2746
+ },
+ {
+ "epoch": 38.15377894276977,
+ "grad_norm": 0.21680216491222382,
+ "learning_rate": 0.0006,
+ "loss": 3.6362109184265137,
+ "step": 2747
+ },
+ {
+ "epoch": 38.16775884665793,
+ "grad_norm": 0.24396903812885284,
+ "learning_rate": 0.0006,
+ "loss": 3.660510540008545,
+ "step": 2748
+ },
+ {
+ "epoch": 38.18173875054609,
+ "grad_norm": 0.2546434700489044,
+ "learning_rate": 0.0006,
+ "loss": 3.6562418937683105,
+ "step": 2749
+ },
+ {
+ "epoch": 38.19571865443425,
+ "grad_norm": 0.22705447673797607,
+ "learning_rate": 0.0006,
+ "loss": 3.6801514625549316,
+ "step": 2750
+ },
+ {
+ "epoch": 38.20969855832241,
+ "grad_norm": 0.21516330540180206,
+ "learning_rate": 0.0006,
+ "loss": 3.6633429527282715,
+ "step": 2751
+ },
+ {
+ "epoch": 38.22367846221057,
+ "grad_norm": 0.20895853638648987,
+ "learning_rate": 0.0006,
+ "loss": 3.619896411895752,
+ "step": 2752
+ },
+ {
+ "epoch": 38.237658366098735,
+ "grad_norm": 0.21183325350284576,
+ "learning_rate": 0.0006,
+ "loss": 3.639491558074951,
+ "step": 2753
+ },
+ {
+ "epoch": 38.25163826998689,
+ "grad_norm": 0.21439522504806519,
+ "learning_rate": 0.0006,
+ "loss": 3.671931028366089,
+ "step": 2754
+ },
+ {
+ "epoch": 38.265618173875055,
+ "grad_norm": 0.2017785906791687,
+ "learning_rate": 0.0006,
+ "loss": 3.639533519744873,
+ "step": 2755
+ },
+ {
+ "epoch": 38.27959807776322,
+ "grad_norm": 0.20015068352222443,
+ "learning_rate": 0.0006,
+ "loss": 3.654262065887451,
+ "step": 2756
+ },
+ {
+ "epoch": 38.293577981651374,
+ "grad_norm": 0.21518948674201965,
+ "learning_rate": 0.0006,
+ "loss": 3.649919033050537,
+ "step": 2757
+ },
+ {
+ "epoch": 38.30755788553954,
+ "grad_norm": 0.21994580328464508,
+ "learning_rate": 0.0006,
+ "loss": 3.6756131649017334,
+ "step": 2758
+ },
+ {
+ "epoch": 38.3215377894277,
+ "grad_norm": 0.2053978443145752,
+ "learning_rate": 0.0006,
+ "loss": 3.651520252227783,
+ "step": 2759
+ },
+ {
+ "epoch": 38.33551769331586,
+ "grad_norm": 0.2066337615251541,
+ "learning_rate": 0.0006,
+ "loss": 3.6404507160186768,
+ "step": 2760
+ },
+ {
+ "epoch": 38.34949759720402,
+ "grad_norm": 0.20898301899433136,
+ "learning_rate": 0.0006,
+ "loss": 3.637200355529785,
+ "step": 2761
+ },
+ {
+ "epoch": 38.36347750109218,
+ "grad_norm": 0.19212259352207184,
+ "learning_rate": 0.0006,
+ "loss": 3.68394136428833,
+ "step": 2762
+ },
+ {
+ "epoch": 38.37745740498034,
+ "grad_norm": 0.2011883556842804,
+ "learning_rate": 0.0006,
+ "loss": 3.6494975090026855,
+ "step": 2763
+ },
+ {
+ "epoch": 38.391437308868504,
+ "grad_norm": 0.23072998225688934,
+ "learning_rate": 0.0006,
+ "loss": 3.6644320487976074,
+ "step": 2764
+ },
+ {
+ "epoch": 38.40541721275666,
+ "grad_norm": 0.2195347547531128,
+ "learning_rate": 0.0006,
+ "loss": 3.6666269302368164,
+ "step": 2765
+ },
+ {
+ "epoch": 38.419397116644824,
+ "grad_norm": 0.19820117950439453,
+ "learning_rate": 0.0006,
+ "loss": 3.690683364868164,
+ "step": 2766
+ },
+ {
+ "epoch": 38.43337702053299,
+ "grad_norm": 0.20381149649620056,
+ "learning_rate": 0.0006,
+ "loss": 3.6647756099700928,
+ "step": 2767
+ },
+ {
+ "epoch": 38.44735692442114,
+ "grad_norm": 0.19477297365665436,
+ "learning_rate": 0.0006,
+ "loss": 3.6419155597686768,
+ "step": 2768
+ },
+ {
+ "epoch": 38.46133682830931,
+ "grad_norm": 0.20118845999240875,
+ "learning_rate": 0.0006,
+ "loss": 3.678511142730713,
+ "step": 2769
+ },
+ {
+ "epoch": 38.47531673219746,
+ "grad_norm": 0.19538167119026184,
+ "learning_rate": 0.0006,
+ "loss": 3.632112503051758,
+ "step": 2770
+ },
+ {
+ "epoch": 38.489296636085626,
+ "grad_norm": 0.18136411905288696,
+ "learning_rate": 0.0006,
+ "loss": 3.6631078720092773,
+ "step": 2771
+ },
+ {
+ "epoch": 38.50327653997379,
+ "grad_norm": 0.1993526667356491,
+ "learning_rate": 0.0006,
+ "loss": 3.6800379753112793,
+ "step": 2772
+ },
+ {
+ "epoch": 38.517256443861946,
+ "grad_norm": 0.21409109234809875,
+ "learning_rate": 0.0006,
+ "loss": 3.6355738639831543,
+ "step": 2773
+ },
+ {
+ "epoch": 38.53123634775011,
+ "grad_norm": 0.20932911336421967,
+ "learning_rate": 0.0006,
+ "loss": 3.6639811992645264,
+ "step": 2774
+ },
+ {
+ "epoch": 38.54521625163827,
+ "grad_norm": 0.22266243398189545,
+ "learning_rate": 0.0006,
+ "loss": 3.6927733421325684,
+ "step": 2775
+ },
+ {
+ "epoch": 38.55919615552643,
+ "grad_norm": 0.22916539013385773,
+ "learning_rate": 0.0006,
+ "loss": 3.6381587982177734,
+ "step": 2776
+ },
+ {
+ "epoch": 38.57317605941459,
+ "grad_norm": 0.21507245302200317,
+ "learning_rate": 0.0006,
+ "loss": 3.6724753379821777,
+ "step": 2777
+ },
+ {
+ "epoch": 38.58715596330275,
+ "grad_norm": 0.21132487058639526,
+ "learning_rate": 0.0006,
+ "loss": 3.68450927734375,
+ "step": 2778
+ },
+ {
+ "epoch": 38.60113586719091,
+ "grad_norm": 0.2323923259973526,
+ "learning_rate": 0.0006,
+ "loss": 3.6917476654052734,
+ "step": 2779
+ },
+ {
+ "epoch": 38.615115771079076,
+ "grad_norm": 0.2862907648086548,
+ "learning_rate": 0.0006,
+ "loss": 3.6832518577575684,
+ "step": 2780
+ },
+ {
+ "epoch": 38.62909567496723,
+ "grad_norm": 0.28132742643356323,
+ "learning_rate": 0.0006,
+ "loss": 3.6619668006896973,
+ "step": 2781
+ },
+ {
+ "epoch": 38.643075578855395,
+ "grad_norm": 0.24933350086212158,
+ "learning_rate": 0.0006,
+ "loss": 3.6342711448669434,
+ "step": 2782
+ },
+ {
+ "epoch": 38.65705548274356,
+ "grad_norm": 0.23482646048069,
+ "learning_rate": 0.0006,
+ "loss": 3.667548656463623,
+ "step": 2783
+ },
+ {
+ "epoch": 38.671035386631715,
+ "grad_norm": 0.2529793083667755,
+ "learning_rate": 0.0006,
+ "loss": 3.6613709926605225,
+ "step": 2784
+ },
+ {
+ "epoch": 38.68501529051988,
+ "grad_norm": 0.2306097447872162,
+ "learning_rate": 0.0006,
+ "loss": 3.653153419494629,
+ "step": 2785
+ },
+ {
+ "epoch": 38.69899519440804,
+ "grad_norm": 0.21787869930267334,
+ "learning_rate": 0.0006,
+ "loss": 3.6991848945617676,
+ "step": 2786
+ },
+ {
+ "epoch": 38.7129750982962,
+ "grad_norm": 0.24818190932273865,
+ "learning_rate": 0.0006,
+ "loss": 3.664022445678711,
+ "step": 2787
+ },
+ {
+ "epoch": 38.72695500218436,
+ "grad_norm": 0.23205995559692383,
+ "learning_rate": 0.0006,
+ "loss": 3.656064987182617,
+ "step": 2788
+ },
+ {
+ "epoch": 38.74093490607252,
+ "grad_norm": 0.2268102467060089,
+ "learning_rate": 0.0006,
+ "loss": 3.678421974182129,
+ "step": 2789
+ },
+ {
+ "epoch": 38.75491480996068,
+ "grad_norm": 0.22549907863140106,
+ "learning_rate": 0.0006,
+ "loss": 3.6483302116394043,
+ "step": 2790
+ },
+ {
+ "epoch": 38.768894713848844,
+ "grad_norm": 0.2293119877576828,
+ "learning_rate": 0.0006,
+ "loss": 3.646825075149536,
+ "step": 2791
+ },
+ {
+ "epoch": 38.782874617737,
+ "grad_norm": 0.21879418194293976,
+ "learning_rate": 0.0006,
+ "loss": 3.682124614715576,
+ "step": 2792
+ },
+ {
+ "epoch": 38.796854521625164,
+ "grad_norm": 0.22012849152088165,
+ "learning_rate": 0.0006,
+ "loss": 3.6590089797973633,
+ "step": 2793
+ },
+ {
+ "epoch": 38.81083442551333,
+ "grad_norm": 0.2449142336845398,
+ "learning_rate": 0.0006,
+ "loss": 3.7053747177124023,
+ "step": 2794
+ },
+ {
+ "epoch": 38.824814329401484,
+ "grad_norm": 0.2677161395549774,
+ "learning_rate": 0.0006,
+ "loss": 3.666144371032715,
+ "step": 2795
+ },
+ {
+ "epoch": 38.83879423328965,
+ "grad_norm": 0.2654981315135956,
+ "learning_rate": 0.0006,
+ "loss": 3.637512683868408,
+ "step": 2796
+ },
+ {
+ "epoch": 38.8527741371778,
+ "grad_norm": 0.23169654607772827,
+ "learning_rate": 0.0006,
+ "loss": 3.6885948181152344,
+ "step": 2797
+ },
+ {
+ "epoch": 38.86675404106597,
+ "grad_norm": 0.22195108234882355,
+ "learning_rate": 0.0006,
+ "loss": 3.6597604751586914,
+ "step": 2798
+ },
+ {
+ "epoch": 38.88073394495413,
+ "grad_norm": 0.23703525960445404,
+ "learning_rate": 0.0006,
+ "loss": 3.6808712482452393,
+ "step": 2799
+ },
+ {
+ "epoch": 38.89471384884229,
+ "grad_norm": 0.24711088836193085,
+ "learning_rate": 0.0006,
+ "loss": 3.733792781829834,
+ "step": 2800
+ },
+ {
+ "epoch": 38.90869375273045,
+ "grad_norm": 0.216362863779068,
+ "learning_rate": 0.0006,
+ "loss": 3.670599937438965,
+ "step": 2801
+ },
+ {
+ "epoch": 38.92267365661861,
+ "grad_norm": 0.19483810663223267,
+ "learning_rate": 0.0006,
+ "loss": 3.6965198516845703,
+ "step": 2802
+ },
+ {
+ "epoch": 38.93665356050677,
+ "grad_norm": 0.1941208392381668,
+ "learning_rate": 0.0006,
+ "loss": 3.678022861480713,
+ "step": 2803
+ },
+ {
+ "epoch": 38.95063346439493,
+ "grad_norm": 0.1919465959072113,
+ "learning_rate": 0.0006,
+ "loss": 3.6763226985931396,
+ "step": 2804
+ },
+ {
+ "epoch": 38.964613368283096,
+ "grad_norm": 0.2003280073404312,
+ "learning_rate": 0.0006,
+ "loss": 3.670313835144043,
+ "step": 2805
+ },
+ {
+ "epoch": 38.97859327217125,
+ "grad_norm": 0.198478564620018,
+ "learning_rate": 0.0006,
+ "loss": 3.675569772720337,
+ "step": 2806
+ },
+ {
+ "epoch": 38.992573176059416,
+ "grad_norm": 0.23692303895950317,
+ "learning_rate": 0.0006,
+ "loss": 3.696561336517334,
+ "step": 2807
+ },
+ {
+ "epoch": 39.0,
+ "grad_norm": 0.3208145797252655,
+ "learning_rate": 0.0006,
+ "loss": 3.6791436672210693,
+ "step": 2808
+ },
+ {
+ "epoch": 39.0,
+ "eval_loss": 4.0079450607299805,
+ "eval_runtime": 43.8573,
+ "eval_samples_per_second": 55.681,
+ "eval_steps_per_second": 3.489,
+ "step": 2808
+ },
+ {
+ "epoch": 39.01397990388816,
+ "grad_norm": 0.28338733315467834,
+ "learning_rate": 0.0006,
+ "loss": 3.6277060508728027,
+ "step": 2809
+ },
+ {
+ "epoch": 39.02795980777632,
+ "grad_norm": 0.22057899832725525,
+ "learning_rate": 0.0006,
+ "loss": 3.6132822036743164,
+ "step": 2810
+ },
+ {
+ "epoch": 39.04193971166448,
+ "grad_norm": 0.20630282163619995,
+ "learning_rate": 0.0006,
+ "loss": 3.6143927574157715,
+ "step": 2811
+ },
+ {
+ "epoch": 39.05591961555265,
+ "grad_norm": 0.2178523689508438,
+ "learning_rate": 0.0006,
+ "loss": 3.6304664611816406,
+ "step": 2812
+ },
+ {
+ "epoch": 39.0698995194408,
+ "grad_norm": 0.19613824784755707,
+ "learning_rate": 0.0006,
+ "loss": 3.6137919425964355,
+ "step": 2813
+ },
+ {
+ "epoch": 39.083879423328966,
+ "grad_norm": 0.2047276794910431,
+ "learning_rate": 0.0006,
+ "loss": 3.6854846477508545,
+ "step": 2814
+ },
+ {
+ "epoch": 39.09785932721712,
+ "grad_norm": 0.20082715153694153,
+ "learning_rate": 0.0006,
+ "loss": 3.632091522216797,
+ "step": 2815
+ },
+ {
+ "epoch": 39.111839231105286,
+ "grad_norm": 0.21746563911437988,
+ "learning_rate": 0.0006,
+ "loss": 3.640477180480957,
+ "step": 2816
+ },
+ {
+ "epoch": 39.12581913499345,
+ "grad_norm": 0.2128882110118866,
+ "learning_rate": 0.0006,
+ "loss": 3.643984317779541,
+ "step": 2817
+ },
+ {
+ "epoch": 39.139799038881605,
+ "grad_norm": 0.2110479772090912,
+ "learning_rate": 0.0006,
+ "loss": 3.6328823566436768,
+ "step": 2818
+ },
+ {
+ "epoch": 39.15377894276977,
+ "grad_norm": 0.22304436564445496,
+ "learning_rate": 0.0006,
+ "loss": 3.6669845581054688,
+ "step": 2819
+ },
+ {
+ "epoch": 39.16775884665793,
+ "grad_norm": 0.22310666739940643,
+ "learning_rate": 0.0006,
+ "loss": 3.609743595123291,
+ "step": 2820
+ },
+ {
+ "epoch": 39.18173875054609,
+ "grad_norm": 0.21002045273780823,
+ "learning_rate": 0.0006,
+ "loss": 3.601900815963745,
+ "step": 2821
+ },
+ {
+ "epoch": 39.19571865443425,
+ "grad_norm": 0.20531952381134033,
+ "learning_rate": 0.0006,
+ "loss": 3.6405060291290283,
+ "step": 2822
+ },
+ {
+ "epoch": 39.20969855832241,
+ "grad_norm": 0.20646385848522186,
+ "learning_rate": 0.0006,
+ "loss": 3.669617176055908,
+ "step": 2823
+ },
+ {
+ "epoch": 39.22367846221057,
+ "grad_norm": 0.2553980350494385,
+ "learning_rate": 0.0006,
+ "loss": 3.642709255218506,
+ "step": 2824
+ },
+ {
+ "epoch": 39.237658366098735,
+ "grad_norm": 0.2753220498561859,
+ "learning_rate": 0.0006,
+ "loss": 3.668405055999756,
+ "step": 2825
+ },
+ {
+ "epoch": 39.25163826998689,
+ "grad_norm": 0.2425055354833603,
+ "learning_rate": 0.0006,
+ "loss": 3.659559726715088,
+ "step": 2826
+ },
+ {
+ "epoch": 39.265618173875055,
+ "grad_norm": 0.2199426293373108,
+ "learning_rate": 0.0006,
+ "loss": 3.6466197967529297,
+ "step": 2827
+ },
+ {
+ "epoch": 39.27959807776322,
+ "grad_norm": 0.221355602145195,
+ "learning_rate": 0.0006,
+ "loss": 3.639418125152588,
+ "step": 2828
+ },
+ {
+ "epoch": 39.293577981651374,
+ "grad_norm": 0.20777100324630737,
+ "learning_rate": 0.0006,
+ "loss": 3.68102765083313,
+ "step": 2829
+ },
+ {
+ "epoch": 39.30755788553954,
+ "grad_norm": 0.20557557046413422,
+ "learning_rate": 0.0006,
+ "loss": 3.663064956665039,
+ "step": 2830
+ },
+ {
+ "epoch": 39.3215377894277,
+ "grad_norm": 0.2385585904121399,
+ "learning_rate": 0.0006,
+ "loss": 3.6598849296569824,
+ "step": 2831
+ },
+ {
+ "epoch": 39.33551769331586,
+ "grad_norm": 0.25222650170326233,
+ "learning_rate": 0.0006,
+ "loss": 3.635199546813965,
+ "step": 2832
+ },
+ {
+ "epoch": 39.34949759720402,
+ "grad_norm": 0.22894687950611115,
+ "learning_rate": 0.0006,
+ "loss": 3.6100258827209473,
+ "step": 2833
+ },
+ {
+ "epoch": 39.36347750109218,
+ "grad_norm": 0.22945865988731384,
+ "learning_rate": 0.0006,
+ "loss": 3.63069748878479,
+ "step": 2834
+ },
+ {
+ "epoch": 39.37745740498034,
+ "grad_norm": 0.2466309368610382,
+ "learning_rate": 0.0006,
+ "loss": 3.6615123748779297,
+ "step": 2835
+ },
+ {
+ "epoch": 39.391437308868504,
+ "grad_norm": 0.23845571279525757,
+ "learning_rate": 0.0006,
+ "loss": 3.655045509338379,
+ "step": 2836
+ },
+ {
+ "epoch": 39.40541721275666,
+ "grad_norm": 0.20273560285568237,
+ "learning_rate": 0.0006,
+ "loss": 3.6497647762298584,
+ "step": 2837
+ },
+ {
+ "epoch": 39.419397116644824,
+ "grad_norm": 0.19820313155651093,
+ "learning_rate": 0.0006,
+ "loss": 3.6728386878967285,
+ "step": 2838
+ },
+ {
+ "epoch": 39.43337702053299,
+ "grad_norm": 0.21581435203552246,
+ "learning_rate": 0.0006,
+ "loss": 3.660247325897217,
+ "step": 2839
+ },
+ {
+ "epoch": 39.44735692442114,
+ "grad_norm": 0.20559731125831604,
+ "learning_rate": 0.0006,
+ "loss": 3.6244559288024902,
+ "step": 2840
+ },
+ {
+ "epoch": 39.46133682830931,
+ "grad_norm": 0.22041910886764526,
+ "learning_rate": 0.0006,
+ "loss": 3.6577587127685547,
+ "step": 2841
+ },
+ {
+ "epoch": 39.47531673219746,
+ "grad_norm": 0.1966651976108551,
+ "learning_rate": 0.0006,
+ "loss": 3.673975944519043,
+ "step": 2842
+ },
+ {
+ "epoch": 39.489296636085626,
+ "grad_norm": 0.19127163290977478,
+ "learning_rate": 0.0006,
+ "loss": 3.7022414207458496,
+ "step": 2843
+ },
+ {
+ "epoch": 39.50327653997379,
+ "grad_norm": 0.20260316133499146,
+ "learning_rate": 0.0006,
+ "loss": 3.6155128479003906,
+ "step": 2844
+ },
+ {
+ "epoch": 39.517256443861946,
+ "grad_norm": 0.2302546352148056,
+ "learning_rate": 0.0006,
+ "loss": 3.670212984085083,
+ "step": 2845
+ },
+ {
+ "epoch": 39.53123634775011,
+ "grad_norm": 0.2512998878955841,
+ "learning_rate": 0.0006,
+ "loss": 3.6257572174072266,
+ "step": 2846
+ },
+ {
+ "epoch": 39.54521625163827,
+ "grad_norm": 0.24780063331127167,
+ "learning_rate": 0.0006,
+ "loss": 3.6458964347839355,
+ "step": 2847
+ },
+ {
+ "epoch": 39.55919615552643,
+ "grad_norm": 0.21305061876773834,
+ "learning_rate": 0.0006,
+ "loss": 3.666834831237793,
+ "step": 2848
+ },
+ {
+ "epoch": 39.57317605941459,
+ "grad_norm": 0.20699542760849,
+ "learning_rate": 0.0006,
+ "loss": 3.660571813583374,
+ "step": 2849
+ },
+ {
+ "epoch": 39.58715596330275,
+ "grad_norm": 0.20799173414707184,
+ "learning_rate": 0.0006,
+ "loss": 3.649744987487793,
+ "step": 2850
+ },
+ {
+ "epoch": 39.60113586719091,
+ "grad_norm": 0.20118695497512817,
+ "learning_rate": 0.0006,
+ "loss": 3.663865089416504,
+ "step": 2851
+ },
+ {
+ "epoch": 39.615115771079076,
+ "grad_norm": 0.2019277960062027,
+ "learning_rate": 0.0006,
+ "loss": 3.6600584983825684,
+ "step": 2852
+ },
+ {
+ "epoch": 39.62909567496723,
+ "grad_norm": 0.2093067765235901,
+ "learning_rate": 0.0006,
+ "loss": 3.6926870346069336,
+ "step": 2853
+ },
+ {
+ "epoch": 39.643075578855395,
+ "grad_norm": 0.2280927449464798,
+ "learning_rate": 0.0006,
+ "loss": 3.677157402038574,
+ "step": 2854
+ },
+ {
+ "epoch": 39.65705548274356,
+ "grad_norm": 0.219201922416687,
+ "learning_rate": 0.0006,
+ "loss": 3.6763858795166016,
+ "step": 2855
+ },
+ {
+ "epoch": 39.671035386631715,
+ "grad_norm": 0.2132134735584259,
+ "learning_rate": 0.0006,
+ "loss": 3.6853187084198,
+ "step": 2856
+ },
+ {
+ "epoch": 39.68501529051988,
+ "grad_norm": 0.1979551613330841,
+ "learning_rate": 0.0006,
+ "loss": 3.633850574493408,
+ "step": 2857
+ },
+ {
+ "epoch": 39.69899519440804,
+ "grad_norm": 0.2181098908185959,
+ "learning_rate": 0.0006,
+ "loss": 3.671356201171875,
+ "step": 2858
+ },
+ {
+ "epoch": 39.7129750982962,
+ "grad_norm": 0.21820145845413208,
+ "learning_rate": 0.0006,
+ "loss": 3.640101432800293,
+ "step": 2859
+ },
+ {
+ "epoch": 39.72695500218436,
+ "grad_norm": 0.22734931111335754,
+ "learning_rate": 0.0006,
+ "loss": 3.6326088905334473,
+ "step": 2860
+ },
+ {
+ "epoch": 39.74093490607252,
+ "grad_norm": 0.2407236248254776,
+ "learning_rate": 0.0006,
+ "loss": 3.665416955947876,
+ "step": 2861
+ },
+ {
+ "epoch": 39.75491480996068,
+ "grad_norm": 0.2507246434688568,
+ "learning_rate": 0.0006,
+ "loss": 3.6996266841888428,
+ "step": 2862
+ },
+ {
+ "epoch": 39.768894713848844,
+ "grad_norm": 0.2273668497800827,
+ "learning_rate": 0.0006,
+ "loss": 3.6786417961120605,
+ "step": 2863
+ },
+ {
+ "epoch": 39.782874617737,
+ "grad_norm": 0.20584821701049805,
+ "learning_rate": 0.0006,
+ "loss": 3.6539974212646484,
+ "step": 2864
+ },
+ {
+ "epoch": 39.796854521625164,
+ "grad_norm": 0.2327643632888794,
+ "learning_rate": 0.0006,
+ "loss": 3.681267738342285,
+ "step": 2865
+ },
+ {
+ "epoch": 39.81083442551333,
+ "grad_norm": 0.24243171513080597,
+ "learning_rate": 0.0006,
+ "loss": 3.6814589500427246,
+ "step": 2866
+ },
+ {
+ "epoch": 39.824814329401484,
+ "grad_norm": 0.21462969481945038,
+ "learning_rate": 0.0006,
+ "loss": 3.681321620941162,
+ "step": 2867
+ },
+ {
+ "epoch": 39.83879423328965,
+ "grad_norm": 0.20973211526870728,
+ "learning_rate": 0.0006,
+ "loss": 3.636986017227173,
+ "step": 2868
+ },
+ {
+ "epoch": 39.8527741371778,
+ "grad_norm": 0.20357508957386017,
+ "learning_rate": 0.0006,
+ "loss": 3.6664552688598633,
+ "step": 2869
+ },
+ {
+ "epoch": 39.86675404106597,
+ "grad_norm": 0.20389088988304138,
+ "learning_rate": 0.0006,
+ "loss": 3.6685709953308105,
+ "step": 2870
+ },
+ {
+ "epoch": 39.88073394495413,
+ "grad_norm": 0.21024158596992493,
+ "learning_rate": 0.0006,
+ "loss": 3.650658130645752,
+ "step": 2871
+ },
+ {
+ "epoch": 39.89471384884229,
+ "grad_norm": 0.19477778673171997,
+ "learning_rate": 0.0006,
+ "loss": 3.664834976196289,
+ "step": 2872
+ },
+ {
+ "epoch": 39.90869375273045,
+ "grad_norm": 0.22345365583896637,
+ "learning_rate": 0.0006,
+ "loss": 3.6652634143829346,
+ "step": 2873
+ },
+ {
+ "epoch": 39.92267365661861,
+ "grad_norm": 0.206041157245636,
+ "learning_rate": 0.0006,
+ "loss": 3.6649513244628906,
+ "step": 2874
+ },
+ {
+ "epoch": 39.93665356050677,
+ "grad_norm": 0.18524570763111115,
+ "learning_rate": 0.0006,
+ "loss": 3.665579080581665,
+ "step": 2875
+ },
+ {
+ "epoch": 39.95063346439493,
+ "grad_norm": 0.17730890214443207,
+ "learning_rate": 0.0006,
+ "loss": 3.6372880935668945,
+ "step": 2876
+ },
+ {
+ "epoch": 39.964613368283096,
+ "grad_norm": 0.213678777217865,
+ "learning_rate": 0.0006,
+ "loss": 3.681305408477783,
+ "step": 2877
+ },
+ {
+ "epoch": 39.97859327217125,
+ "grad_norm": 0.2595686614513397,
+ "learning_rate": 0.0006,
+ "loss": 3.6660351753234863,
+ "step": 2878
+ },
+ {
+ "epoch": 39.992573176059416,
+ "grad_norm": 0.22678600251674652,
+ "learning_rate": 0.0006,
+ "loss": 3.681619644165039,
+ "step": 2879
+ },
+ {
+ "epoch": 40.0,
+ "grad_norm": 0.2294030636548996,
+ "learning_rate": 0.0006,
+ "loss": 3.654366970062256,
+ "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/mask15-l2r50-fulle-lm/checkpoint-2880/training_args.bin b/runs/mask15-l2r50-fulle-lm/checkpoint-2880/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..43721c50815fe94f90cb043bf545b8f7bd9afc38
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-2880/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:a0b8d7bb9ac952b1abed3bd1e5c8f6ebd20daa957b3a85688954f8df03be6eb9
+size 4856
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-3168/chat_template.jinja b/runs/mask15-l2r50-fulle-lm/checkpoint-3168/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/mask15-l2r50-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/mask15-l2r50-fulle-lm/checkpoint-3168/config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-3168/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..1b4ac3c550d6003148026765eba4cb1512b216c9
--- /dev/null
+++ b/runs/mask15-l2r50-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": 151672
+}
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-3168/generation_config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-3168/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..5cd15fe1269fd505cfdefe9b3e9989dacd9f68f4
--- /dev/null
+++ b/runs/mask15-l2r50-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/mask15-l2r50-fulle-lm/checkpoint-3168/model.safetensors b/runs/mask15-l2r50-fulle-lm/checkpoint-3168/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..684b48e870f6b4fd8433e5e1eec8e5aa1acd48ce
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-3168/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:ee020d66a45b3ab1a9f584d8184023ea5b2c4464a50fa0a0c0e6b099462e5fdd
+size 583358280
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-3168/optimizer.pt b/runs/mask15-l2r50-fulle-lm/checkpoint-3168/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..775c2834583951c4dac940560a4ef91391803265
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-3168/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:39bab2316793fbaa26450957f2a00614be7a8d2784246149d85285c51cd67962
+size 1166829434
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-3168/rng_state_0.pth b/runs/mask15-l2r50-fulle-lm/checkpoint-3168/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..f65e890984165cef33a99ba0b15823a82760413e
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-3168/rng_state_0.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:003939f5e86095f2dbe72a57d4180d062b87b374256f7e5bc75299c36e091b77
+size 14512
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-3168/rng_state_1.pth b/runs/mask15-l2r50-fulle-lm/checkpoint-3168/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..81afcfb3b167cab5e2e42de9f0c6d96b9f4a3283
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-3168/rng_state_1.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:70999939878e71f59c6aab1c513ba28d542374a64edbf4c44f2d88b6a2d17d2e
+size 14512
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-3168/scheduler.pt b/runs/mask15-l2r50-fulle-lm/checkpoint-3168/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..197051978d6c74fdad6b7032be258e0e7820d474
--- /dev/null
+++ b/runs/mask15-l2r50-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/mask15-l2r50-fulle-lm/checkpoint-3168/tokenizer.json b/runs/mask15-l2r50-fulle-lm/checkpoint-3168/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..6226bf25372d1a86dbd704ec75d2129960f1ba88
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-3168/tokenizer.json
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:9245fe3cb2d40f9ed8d5d8ddd1d58701ba2a236beec08f656162281673f30560
+size 11424264
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-3168/tokenizer_config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-3168/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..01bc9676576e8cf62a08a9db166d6c5bab1d6727
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-3168/tokenizer_config.json
@@ -0,0 +1,20 @@
+{
+ "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|>",
+ "<|mask|>"
+ ],
+ "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/mask15-l2r50-fulle-lm/checkpoint-3168/trainer_state.json b/runs/mask15-l2r50-fulle-lm/checkpoint-3168/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..a5c61491e2a29b31ed0ded4faac135f37194f4a7
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-3168/trainer_state.json
@@ -0,0 +1,22554 @@
+{
+ "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": 9.807971954345703,
+ "learning_rate": 0.0,
+ "loss": 11.989814758300781,
+ "step": 1
+ },
+ {
+ "epoch": 0.027959807776321538,
+ "grad_norm": 9.834383010864258,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 11.993022918701172,
+ "step": 2
+ },
+ {
+ "epoch": 0.04193971166448231,
+ "grad_norm": 9.482470512390137,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 11.854345321655273,
+ "step": 3
+ },
+ {
+ "epoch": 0.055919615552643076,
+ "grad_norm": 7.678808689117432,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 11.618255615234375,
+ "step": 4
+ },
+ {
+ "epoch": 0.06989951944080385,
+ "grad_norm": 6.011275291442871,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 11.351423263549805,
+ "step": 5
+ },
+ {
+ "epoch": 0.08387942332896461,
+ "grad_norm": 5.244393825531006,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 11.128631591796875,
+ "step": 6
+ },
+ {
+ "epoch": 0.09785932721712538,
+ "grad_norm": 4.577618598937988,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 10.921937942504883,
+ "step": 7
+ },
+ {
+ "epoch": 0.11183923110528615,
+ "grad_norm": 4.03810453414917,
+ "learning_rate": 4.2e-05,
+ "loss": 10.742650985717773,
+ "step": 8
+ },
+ {
+ "epoch": 0.1258191349934469,
+ "grad_norm": 3.657679796218872,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 10.600778579711914,
+ "step": 9
+ },
+ {
+ "epoch": 0.1397990388816077,
+ "grad_norm": 3.352902889251709,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 10.489639282226562,
+ "step": 10
+ },
+ {
+ "epoch": 0.15377894276976845,
+ "grad_norm": 3.1162633895874023,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 10.417770385742188,
+ "step": 11
+ },
+ {
+ "epoch": 0.16775884665792923,
+ "grad_norm": 3.0402638912200928,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 10.35334587097168,
+ "step": 12
+ },
+ {
+ "epoch": 0.18173875054608998,
+ "grad_norm": 3.030630111694336,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 10.306867599487305,
+ "step": 13
+ },
+ {
+ "epoch": 0.19571865443425077,
+ "grad_norm": 3.035292148590088,
+ "learning_rate": 7.8e-05,
+ "loss": 10.26003646850586,
+ "step": 14
+ },
+ {
+ "epoch": 0.20969855832241152,
+ "grad_norm": 3.0125675201416016,
+ "learning_rate": 8.4e-05,
+ "loss": 10.219265937805176,
+ "step": 15
+ },
+ {
+ "epoch": 0.2236784622105723,
+ "grad_norm": 2.9998886585235596,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 10.161077499389648,
+ "step": 16
+ },
+ {
+ "epoch": 0.23765836609873306,
+ "grad_norm": 2.9411966800689697,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 10.107423782348633,
+ "step": 17
+ },
+ {
+ "epoch": 0.2516382699868938,
+ "grad_norm": 2.88081955909729,
+ "learning_rate": 0.000102,
+ "loss": 10.04700756072998,
+ "step": 18
+ },
+ {
+ "epoch": 0.2656181738750546,
+ "grad_norm": 2.8219687938690186,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 9.981185913085938,
+ "step": 19
+ },
+ {
+ "epoch": 0.2795980777632154,
+ "grad_norm": 2.79306960105896,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 9.89747142791748,
+ "step": 20
+ },
+ {
+ "epoch": 0.29357798165137616,
+ "grad_norm": 2.7314443588256836,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 9.829219818115234,
+ "step": 21
+ },
+ {
+ "epoch": 0.3075578855395369,
+ "grad_norm": 2.6923747062683105,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 9.747566223144531,
+ "step": 22
+ },
+ {
+ "epoch": 0.3215377894276977,
+ "grad_norm": 2.650602340698242,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 9.66455078125,
+ "step": 23
+ },
+ {
+ "epoch": 0.33551769331585846,
+ "grad_norm": 2.606977701187134,
+ "learning_rate": 0.000138,
+ "loss": 9.582326889038086,
+ "step": 24
+ },
+ {
+ "epoch": 0.34949759720401924,
+ "grad_norm": 2.567256212234497,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 9.492591857910156,
+ "step": 25
+ },
+ {
+ "epoch": 0.36347750109217997,
+ "grad_norm": 2.520740509033203,
+ "learning_rate": 0.00015,
+ "loss": 9.396563529968262,
+ "step": 26
+ },
+ {
+ "epoch": 0.37745740498034075,
+ "grad_norm": 2.471588611602783,
+ "learning_rate": 0.000156,
+ "loss": 9.303571701049805,
+ "step": 27
+ },
+ {
+ "epoch": 0.39143730886850153,
+ "grad_norm": 2.4341530799865723,
+ "learning_rate": 0.000162,
+ "loss": 9.191819190979004,
+ "step": 28
+ },
+ {
+ "epoch": 0.4054172127566623,
+ "grad_norm": 2.369244337081909,
+ "learning_rate": 0.000168,
+ "loss": 9.092012405395508,
+ "step": 29
+ },
+ {
+ "epoch": 0.41939711664482304,
+ "grad_norm": 2.28625226020813,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 8.984567642211914,
+ "step": 30
+ },
+ {
+ "epoch": 0.4333770205329838,
+ "grad_norm": 2.2082231044769287,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 8.889009475708008,
+ "step": 31
+ },
+ {
+ "epoch": 0.4473569244211446,
+ "grad_norm": 2.1429483890533447,
+ "learning_rate": 0.000186,
+ "loss": 8.778556823730469,
+ "step": 32
+ },
+ {
+ "epoch": 0.4613368283093054,
+ "grad_norm": 2.0937352180480957,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 8.661166191101074,
+ "step": 33
+ },
+ {
+ "epoch": 0.4753167321974661,
+ "grad_norm": 2.040790557861328,
+ "learning_rate": 0.000198,
+ "loss": 8.550382614135742,
+ "step": 34
+ },
+ {
+ "epoch": 0.4892966360856269,
+ "grad_norm": 1.93914794921875,
+ "learning_rate": 0.000204,
+ "loss": 8.463907241821289,
+ "step": 35
+ },
+ {
+ "epoch": 0.5032765399737876,
+ "grad_norm": 1.8624178171157837,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 8.3438720703125,
+ "step": 36
+ },
+ {
+ "epoch": 0.5172564438619485,
+ "grad_norm": 1.8107167482376099,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 8.21871566772461,
+ "step": 37
+ },
+ {
+ "epoch": 0.5312363477501092,
+ "grad_norm": 1.717979073524475,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 8.113494873046875,
+ "step": 38
+ },
+ {
+ "epoch": 0.54521625163827,
+ "grad_norm": 1.668742060661316,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 8.006099700927734,
+ "step": 39
+ },
+ {
+ "epoch": 0.5591961555264308,
+ "grad_norm": 1.6147786378860474,
+ "learning_rate": 0.000234,
+ "loss": 7.911509037017822,
+ "step": 40
+ },
+ {
+ "epoch": 0.5731760594145915,
+ "grad_norm": 1.535750150680542,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 7.822839736938477,
+ "step": 41
+ },
+ {
+ "epoch": 0.5871559633027523,
+ "grad_norm": 1.4700065851211548,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 7.713842868804932,
+ "step": 42
+ },
+ {
+ "epoch": 0.601135867190913,
+ "grad_norm": 1.39020574092865,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 7.6040191650390625,
+ "step": 43
+ },
+ {
+ "epoch": 0.6151157710790738,
+ "grad_norm": 1.2875399589538574,
+ "learning_rate": 0.000258,
+ "loss": 7.550642013549805,
+ "step": 44
+ },
+ {
+ "epoch": 0.6290956749672346,
+ "grad_norm": 1.2094247341156006,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 7.460824012756348,
+ "step": 45
+ },
+ {
+ "epoch": 0.6430755788553953,
+ "grad_norm": 1.126452088356018,
+ "learning_rate": 0.00027,
+ "loss": 7.380537986755371,
+ "step": 46
+ },
+ {
+ "epoch": 0.6570554827435562,
+ "grad_norm": 1.0313163995742798,
+ "learning_rate": 0.000276,
+ "loss": 7.286153793334961,
+ "step": 47
+ },
+ {
+ "epoch": 0.6710353866317169,
+ "grad_norm": 0.9172859787940979,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 7.2064714431762695,
+ "step": 48
+ },
+ {
+ "epoch": 0.6850152905198776,
+ "grad_norm": 0.8148201107978821,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 7.158207416534424,
+ "step": 49
+ },
+ {
+ "epoch": 0.6989951944080385,
+ "grad_norm": 0.650123119354248,
+ "learning_rate": 0.000294,
+ "loss": 7.108791828155518,
+ "step": 50
+ },
+ {
+ "epoch": 0.7129750982961992,
+ "grad_norm": 0.5437585711479187,
+ "learning_rate": 0.0003,
+ "loss": 7.083050727844238,
+ "step": 51
+ },
+ {
+ "epoch": 0.7269550021843599,
+ "grad_norm": 0.46762895584106445,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 7.058027267456055,
+ "step": 52
+ },
+ {
+ "epoch": 0.7409349060725208,
+ "grad_norm": 0.47947561740875244,
+ "learning_rate": 0.000312,
+ "loss": 7.015172958374023,
+ "step": 53
+ },
+ {
+ "epoch": 0.7549148099606815,
+ "grad_norm": 0.7546492218971252,
+ "learning_rate": 0.000318,
+ "loss": 7.024629592895508,
+ "step": 54
+ },
+ {
+ "epoch": 0.7688947138488423,
+ "grad_norm": 0.6153718829154968,
+ "learning_rate": 0.000324,
+ "loss": 7.026667594909668,
+ "step": 55
+ },
+ {
+ "epoch": 0.7828746177370031,
+ "grad_norm": 0.3359069228172302,
+ "learning_rate": 0.00033,
+ "loss": 7.008166313171387,
+ "step": 56
+ },
+ {
+ "epoch": 0.7968545216251638,
+ "grad_norm": 0.48906823992729187,
+ "learning_rate": 0.000336,
+ "loss": 7.019716262817383,
+ "step": 57
+ },
+ {
+ "epoch": 0.8108344255133246,
+ "grad_norm": 0.5525421500205994,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 7.02108097076416,
+ "step": 58
+ },
+ {
+ "epoch": 0.8248143294014854,
+ "grad_norm": 0.3103712201118469,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 7.003164768218994,
+ "step": 59
+ },
+ {
+ "epoch": 0.8387942332896461,
+ "grad_norm": 0.4431874752044678,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 7.003463268280029,
+ "step": 60
+ },
+ {
+ "epoch": 0.8527741371778069,
+ "grad_norm": 0.4291120767593384,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 6.96931791305542,
+ "step": 61
+ },
+ {
+ "epoch": 0.8667540410659677,
+ "grad_norm": 0.6566054224967957,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 6.989445686340332,
+ "step": 62
+ },
+ {
+ "epoch": 0.8807339449541285,
+ "grad_norm": 0.20663189888000488,
+ "learning_rate": 0.000372,
+ "loss": 6.9669342041015625,
+ "step": 63
+ },
+ {
+ "epoch": 0.8947138488422892,
+ "grad_norm": 0.6242535710334778,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 6.949883460998535,
+ "step": 64
+ },
+ {
+ "epoch": 0.9086937527304499,
+ "grad_norm": 0.6984224915504456,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 6.955153465270996,
+ "step": 65
+ },
+ {
+ "epoch": 0.9226736566186108,
+ "grad_norm": 0.6328083872795105,
+ "learning_rate": 0.00039,
+ "loss": 6.965421676635742,
+ "step": 66
+ },
+ {
+ "epoch": 0.9366535605067715,
+ "grad_norm": 1.213352918624878,
+ "learning_rate": 0.000396,
+ "loss": 6.9454345703125,
+ "step": 67
+ },
+ {
+ "epoch": 0.9506334643949322,
+ "grad_norm": 0.9221940636634827,
+ "learning_rate": 0.000402,
+ "loss": 6.923908233642578,
+ "step": 68
+ },
+ {
+ "epoch": 0.9646133682830931,
+ "grad_norm": 0.6825450658798218,
+ "learning_rate": 0.000408,
+ "loss": 6.910131454467773,
+ "step": 69
+ },
+ {
+ "epoch": 0.9785932721712538,
+ "grad_norm": 0.5690162181854248,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 6.89891242980957,
+ "step": 70
+ },
+ {
+ "epoch": 0.9925731760594146,
+ "grad_norm": 0.4320870041847229,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 6.896081924438477,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.31632405519485474,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 6.897444725036621,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 7.757839679718018,
+ "eval_runtime": 43.8338,
+ "eval_samples_per_second": 55.71,
+ "eval_steps_per_second": 3.49,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139799038881607,
+ "grad_norm": 0.3789916932582855,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 6.877245903015137,
+ "step": 73
+ },
+ {
+ "epoch": 1.0279598077763215,
+ "grad_norm": 0.9167932868003845,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 6.921600341796875,
+ "step": 74
+ },
+ {
+ "epoch": 1.0419397116644824,
+ "grad_norm": 0.581188440322876,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 6.861001968383789,
+ "step": 75
+ },
+ {
+ "epoch": 1.0559196155526431,
+ "grad_norm": 0.4179714024066925,
+ "learning_rate": 0.00045,
+ "loss": 6.875657081604004,
+ "step": 76
+ },
+ {
+ "epoch": 1.0698995194408039,
+ "grad_norm": 1.0669957399368286,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 6.857122421264648,
+ "step": 77
+ },
+ {
+ "epoch": 1.0838794233289646,
+ "grad_norm": 0.27855145931243896,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 6.828852653503418,
+ "step": 78
+ },
+ {
+ "epoch": 1.0978593272171253,
+ "grad_norm": 0.7192047834396362,
+ "learning_rate": 0.000468,
+ "loss": 6.870839595794678,
+ "step": 79
+ },
+ {
+ "epoch": 1.1118392311052863,
+ "grad_norm": 0.5583325624465942,
+ "learning_rate": 0.000474,
+ "loss": 6.8497514724731445,
+ "step": 80
+ },
+ {
+ "epoch": 1.125819134993447,
+ "grad_norm": 0.3001925051212311,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 6.858528137207031,
+ "step": 81
+ },
+ {
+ "epoch": 1.1397990388816077,
+ "grad_norm": 0.2408239096403122,
+ "learning_rate": 0.000486,
+ "loss": 6.83231258392334,
+ "step": 82
+ },
+ {
+ "epoch": 1.1537789427697684,
+ "grad_norm": 0.28230324387550354,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 6.815476894378662,
+ "step": 83
+ },
+ {
+ "epoch": 1.1677588466579292,
+ "grad_norm": 0.3247123658657074,
+ "learning_rate": 0.000498,
+ "loss": 6.780126094818115,
+ "step": 84
+ },
+ {
+ "epoch": 1.18173875054609,
+ "grad_norm": 0.25713011622428894,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 6.7798309326171875,
+ "step": 85
+ },
+ {
+ "epoch": 1.1957186544342508,
+ "grad_norm": 0.5386835932731628,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 6.791745185852051,
+ "step": 86
+ },
+ {
+ "epoch": 1.2096985583224116,
+ "grad_norm": 0.2226393222808838,
+ "learning_rate": 0.000516,
+ "loss": 6.7826972007751465,
+ "step": 87
+ },
+ {
+ "epoch": 1.2236784622105723,
+ "grad_norm": 0.4338362216949463,
+ "learning_rate": 0.000522,
+ "loss": 6.805043697357178,
+ "step": 88
+ },
+ {
+ "epoch": 1.237658366098733,
+ "grad_norm": 0.2953208386898041,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 6.768434524536133,
+ "step": 89
+ },
+ {
+ "epoch": 1.2516382699868938,
+ "grad_norm": 0.13453717529773712,
+ "learning_rate": 0.000534,
+ "loss": 6.773697376251221,
+ "step": 90
+ },
+ {
+ "epoch": 1.2656181738750547,
+ "grad_norm": 0.35774412751197815,
+ "learning_rate": 0.00054,
+ "loss": 6.766414642333984,
+ "step": 91
+ },
+ {
+ "epoch": 1.2795980777632154,
+ "grad_norm": 0.4669720530509949,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 6.754847526550293,
+ "step": 92
+ },
+ {
+ "epoch": 1.2935779816513762,
+ "grad_norm": 0.13806621730327606,
+ "learning_rate": 0.000552,
+ "loss": 6.746858596801758,
+ "step": 93
+ },
+ {
+ "epoch": 1.307557885539537,
+ "grad_norm": 0.3280332386493683,
+ "learning_rate": 0.000558,
+ "loss": 6.715662956237793,
+ "step": 94
+ },
+ {
+ "epoch": 1.3215377894276976,
+ "grad_norm": 0.4689937233924866,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 6.734938144683838,
+ "step": 95
+ },
+ {
+ "epoch": 1.3355176933158583,
+ "grad_norm": 0.35371264815330505,
+ "learning_rate": 0.00057,
+ "loss": 6.748386383056641,
+ "step": 96
+ },
+ {
+ "epoch": 1.3494975972040193,
+ "grad_norm": 0.15232303738594055,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 6.705557823181152,
+ "step": 97
+ },
+ {
+ "epoch": 1.36347750109218,
+ "grad_norm": 0.30132821202278137,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 6.7199859619140625,
+ "step": 98
+ },
+ {
+ "epoch": 1.3774574049803407,
+ "grad_norm": 0.42174842953681946,
+ "learning_rate": 0.000588,
+ "loss": 6.715370178222656,
+ "step": 99
+ },
+ {
+ "epoch": 1.3914373088685015,
+ "grad_norm": 0.6257228851318359,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 6.707026958465576,
+ "step": 100
+ },
+ {
+ "epoch": 1.4054172127566624,
+ "grad_norm": 0.4551195800304413,
+ "learning_rate": 0.0006,
+ "loss": 6.7078423500061035,
+ "step": 101
+ },
+ {
+ "epoch": 1.4193971166448232,
+ "grad_norm": 0.41940346360206604,
+ "learning_rate": 0.0006,
+ "loss": 6.6959357261657715,
+ "step": 102
+ },
+ {
+ "epoch": 1.4333770205329839,
+ "grad_norm": 0.32251718640327454,
+ "learning_rate": 0.0006,
+ "loss": 6.689168930053711,
+ "step": 103
+ },
+ {
+ "epoch": 1.4473569244211446,
+ "grad_norm": 0.2992720305919647,
+ "learning_rate": 0.0006,
+ "loss": 6.680738925933838,
+ "step": 104
+ },
+ {
+ "epoch": 1.4613368283093053,
+ "grad_norm": 0.3228456974029541,
+ "learning_rate": 0.0006,
+ "loss": 6.672350883483887,
+ "step": 105
+ },
+ {
+ "epoch": 1.475316732197466,
+ "grad_norm": 0.24954743683338165,
+ "learning_rate": 0.0006,
+ "loss": 6.653716087341309,
+ "step": 106
+ },
+ {
+ "epoch": 1.4892966360856268,
+ "grad_norm": 0.30740687251091003,
+ "learning_rate": 0.0006,
+ "loss": 6.676583290100098,
+ "step": 107
+ },
+ {
+ "epoch": 1.5032765399737875,
+ "grad_norm": 0.24950599670410156,
+ "learning_rate": 0.0006,
+ "loss": 6.656691551208496,
+ "step": 108
+ },
+ {
+ "epoch": 1.5172564438619485,
+ "grad_norm": 0.24293005466461182,
+ "learning_rate": 0.0006,
+ "loss": 6.640995979309082,
+ "step": 109
+ },
+ {
+ "epoch": 1.5312363477501092,
+ "grad_norm": 0.30167272686958313,
+ "learning_rate": 0.0006,
+ "loss": 6.647380352020264,
+ "step": 110
+ },
+ {
+ "epoch": 1.5452162516382701,
+ "grad_norm": 0.4424632787704468,
+ "learning_rate": 0.0006,
+ "loss": 6.6548261642456055,
+ "step": 111
+ },
+ {
+ "epoch": 1.5591961555264309,
+ "grad_norm": 0.5295748114585876,
+ "learning_rate": 0.0006,
+ "loss": 6.64370059967041,
+ "step": 112
+ },
+ {
+ "epoch": 1.5731760594145916,
+ "grad_norm": 0.6829339265823364,
+ "learning_rate": 0.0006,
+ "loss": 6.654196739196777,
+ "step": 113
+ },
+ {
+ "epoch": 1.5871559633027523,
+ "grad_norm": 0.6534460186958313,
+ "learning_rate": 0.0006,
+ "loss": 6.675765037536621,
+ "step": 114
+ },
+ {
+ "epoch": 1.601135867190913,
+ "grad_norm": 0.6172244548797607,
+ "learning_rate": 0.0006,
+ "loss": 6.631234169006348,
+ "step": 115
+ },
+ {
+ "epoch": 1.6151157710790738,
+ "grad_norm": 0.5650008320808411,
+ "learning_rate": 0.0006,
+ "loss": 6.654262542724609,
+ "step": 116
+ },
+ {
+ "epoch": 1.6290956749672345,
+ "grad_norm": 0.3890475928783417,
+ "learning_rate": 0.0006,
+ "loss": 6.627526760101318,
+ "step": 117
+ },
+ {
+ "epoch": 1.6430755788553952,
+ "grad_norm": 0.6409873366355896,
+ "learning_rate": 0.0006,
+ "loss": 6.619794845581055,
+ "step": 118
+ },
+ {
+ "epoch": 1.6570554827435562,
+ "grad_norm": 0.5052326321601868,
+ "learning_rate": 0.0006,
+ "loss": 6.612556457519531,
+ "step": 119
+ },
+ {
+ "epoch": 1.671035386631717,
+ "grad_norm": 0.5001237988471985,
+ "learning_rate": 0.0006,
+ "loss": 6.577266693115234,
+ "step": 120
+ },
+ {
+ "epoch": 1.6850152905198776,
+ "grad_norm": 0.5328938364982605,
+ "learning_rate": 0.0006,
+ "loss": 6.59553337097168,
+ "step": 121
+ },
+ {
+ "epoch": 1.6989951944080386,
+ "grad_norm": 0.3568951189517975,
+ "learning_rate": 0.0006,
+ "loss": 6.602717399597168,
+ "step": 122
+ },
+ {
+ "epoch": 1.7129750982961993,
+ "grad_norm": 0.4017309546470642,
+ "learning_rate": 0.0006,
+ "loss": 6.589657783508301,
+ "step": 123
+ },
+ {
+ "epoch": 1.72695500218436,
+ "grad_norm": 0.21432629227638245,
+ "learning_rate": 0.0006,
+ "loss": 6.586555480957031,
+ "step": 124
+ },
+ {
+ "epoch": 1.7409349060725208,
+ "grad_norm": 0.21038052439689636,
+ "learning_rate": 0.0006,
+ "loss": 6.576569557189941,
+ "step": 125
+ },
+ {
+ "epoch": 1.7549148099606815,
+ "grad_norm": 0.23074904084205627,
+ "learning_rate": 0.0006,
+ "loss": 6.5880632400512695,
+ "step": 126
+ },
+ {
+ "epoch": 1.7688947138488422,
+ "grad_norm": 0.42963048815727234,
+ "learning_rate": 0.0006,
+ "loss": 6.603862762451172,
+ "step": 127
+ },
+ {
+ "epoch": 1.782874617737003,
+ "grad_norm": 0.361331045627594,
+ "learning_rate": 0.0006,
+ "loss": 6.579834938049316,
+ "step": 128
+ },
+ {
+ "epoch": 1.7968545216251637,
+ "grad_norm": 0.4951060712337494,
+ "learning_rate": 0.0006,
+ "loss": 6.570443630218506,
+ "step": 129
+ },
+ {
+ "epoch": 1.8108344255133246,
+ "grad_norm": 0.2258434295654297,
+ "learning_rate": 0.0006,
+ "loss": 6.5664777755737305,
+ "step": 130
+ },
+ {
+ "epoch": 1.8248143294014854,
+ "grad_norm": 0.2922155559062958,
+ "learning_rate": 0.0006,
+ "loss": 6.561326503753662,
+ "step": 131
+ },
+ {
+ "epoch": 1.838794233289646,
+ "grad_norm": 0.19068220257759094,
+ "learning_rate": 0.0006,
+ "loss": 6.528727054595947,
+ "step": 132
+ },
+ {
+ "epoch": 1.852774137177807,
+ "grad_norm": 0.2122010439634323,
+ "learning_rate": 0.0006,
+ "loss": 6.535636901855469,
+ "step": 133
+ },
+ {
+ "epoch": 1.8667540410659678,
+ "grad_norm": 0.25760164856910706,
+ "learning_rate": 0.0006,
+ "loss": 6.530498504638672,
+ "step": 134
+ },
+ {
+ "epoch": 1.8807339449541285,
+ "grad_norm": 0.1761016845703125,
+ "learning_rate": 0.0006,
+ "loss": 6.514466285705566,
+ "step": 135
+ },
+ {
+ "epoch": 1.8947138488422892,
+ "grad_norm": 0.2250051498413086,
+ "learning_rate": 0.0006,
+ "loss": 6.521268844604492,
+ "step": 136
+ },
+ {
+ "epoch": 1.90869375273045,
+ "grad_norm": 0.34458497166633606,
+ "learning_rate": 0.0006,
+ "loss": 6.512831687927246,
+ "step": 137
+ },
+ {
+ "epoch": 1.9226736566186107,
+ "grad_norm": 0.3468617796897888,
+ "learning_rate": 0.0006,
+ "loss": 6.515641689300537,
+ "step": 138
+ },
+ {
+ "epoch": 1.9366535605067714,
+ "grad_norm": 0.5051495432853699,
+ "learning_rate": 0.0006,
+ "loss": 6.5147905349731445,
+ "step": 139
+ },
+ {
+ "epoch": 1.9506334643949321,
+ "grad_norm": 0.7106727361679077,
+ "learning_rate": 0.0006,
+ "loss": 6.519277572631836,
+ "step": 140
+ },
+ {
+ "epoch": 1.964613368283093,
+ "grad_norm": 0.8881394267082214,
+ "learning_rate": 0.0006,
+ "loss": 6.526865482330322,
+ "step": 141
+ },
+ {
+ "epoch": 1.9785932721712538,
+ "grad_norm": 0.5552834272384644,
+ "learning_rate": 0.0006,
+ "loss": 6.469970226287842,
+ "step": 142
+ },
+ {
+ "epoch": 1.9925731760594148,
+ "grad_norm": 0.6903126835823059,
+ "learning_rate": 0.0006,
+ "loss": 6.476300239562988,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.47679027915000916,
+ "learning_rate": 0.0006,
+ "loss": 6.463827133178711,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 7.388528823852539,
+ "eval_runtime": 44.2519,
+ "eval_samples_per_second": 55.184,
+ "eval_steps_per_second": 3.457,
+ "step": 144
+ },
+ {
+ "epoch": 2.0139799038881607,
+ "grad_norm": 0.4719221293926239,
+ "learning_rate": 0.0006,
+ "loss": 6.480956077575684,
+ "step": 145
+ },
+ {
+ "epoch": 2.0279598077763215,
+ "grad_norm": 0.41137924790382385,
+ "learning_rate": 0.0006,
+ "loss": 6.449707984924316,
+ "step": 146
+ },
+ {
+ "epoch": 2.041939711664482,
+ "grad_norm": 0.4237765371799469,
+ "learning_rate": 0.0006,
+ "loss": 6.467435836791992,
+ "step": 147
+ },
+ {
+ "epoch": 2.055919615552643,
+ "grad_norm": 0.44081810116767883,
+ "learning_rate": 0.0006,
+ "loss": 6.436868667602539,
+ "step": 148
+ },
+ {
+ "epoch": 2.0698995194408036,
+ "grad_norm": 0.4163798391819,
+ "learning_rate": 0.0006,
+ "loss": 6.4642014503479,
+ "step": 149
+ },
+ {
+ "epoch": 2.083879423328965,
+ "grad_norm": 0.3831583261489868,
+ "learning_rate": 0.0006,
+ "loss": 6.454092025756836,
+ "step": 150
+ },
+ {
+ "epoch": 2.0978593272171255,
+ "grad_norm": 0.37721413373947144,
+ "learning_rate": 0.0006,
+ "loss": 6.426377296447754,
+ "step": 151
+ },
+ {
+ "epoch": 2.1118392311052863,
+ "grad_norm": 0.3323550224304199,
+ "learning_rate": 0.0006,
+ "loss": 6.421375274658203,
+ "step": 152
+ },
+ {
+ "epoch": 2.125819134993447,
+ "grad_norm": 0.47739624977111816,
+ "learning_rate": 0.0006,
+ "loss": 6.412004470825195,
+ "step": 153
+ },
+ {
+ "epoch": 2.1397990388816077,
+ "grad_norm": 0.8530274629592896,
+ "learning_rate": 0.0006,
+ "loss": 6.410468578338623,
+ "step": 154
+ },
+ {
+ "epoch": 2.1537789427697684,
+ "grad_norm": 0.6420364379882812,
+ "learning_rate": 0.0006,
+ "loss": 6.413525581359863,
+ "step": 155
+ },
+ {
+ "epoch": 2.167758846657929,
+ "grad_norm": 0.5005049109458923,
+ "learning_rate": 0.0006,
+ "loss": 6.401463508605957,
+ "step": 156
+ },
+ {
+ "epoch": 2.18173875054609,
+ "grad_norm": 0.3614683449268341,
+ "learning_rate": 0.0006,
+ "loss": 6.390063285827637,
+ "step": 157
+ },
+ {
+ "epoch": 2.1957186544342506,
+ "grad_norm": 0.595215380191803,
+ "learning_rate": 0.0006,
+ "loss": 6.369806289672852,
+ "step": 158
+ },
+ {
+ "epoch": 2.2096985583224114,
+ "grad_norm": 0.5700321793556213,
+ "learning_rate": 0.0006,
+ "loss": 6.368378639221191,
+ "step": 159
+ },
+ {
+ "epoch": 2.2236784622105725,
+ "grad_norm": 0.36273983120918274,
+ "learning_rate": 0.0006,
+ "loss": 6.366860389709473,
+ "step": 160
+ },
+ {
+ "epoch": 2.2376583660987333,
+ "grad_norm": 0.2850998342037201,
+ "learning_rate": 0.0006,
+ "loss": 6.352144718170166,
+ "step": 161
+ },
+ {
+ "epoch": 2.251638269986894,
+ "grad_norm": 0.38558584451675415,
+ "learning_rate": 0.0006,
+ "loss": 6.375765800476074,
+ "step": 162
+ },
+ {
+ "epoch": 2.2656181738750547,
+ "grad_norm": 0.34809231758117676,
+ "learning_rate": 0.0006,
+ "loss": 6.350445747375488,
+ "step": 163
+ },
+ {
+ "epoch": 2.2795980777632154,
+ "grad_norm": 0.5211818814277649,
+ "learning_rate": 0.0006,
+ "loss": 6.354585647583008,
+ "step": 164
+ },
+ {
+ "epoch": 2.293577981651376,
+ "grad_norm": 1.0809133052825928,
+ "learning_rate": 0.0006,
+ "loss": 6.3752007484436035,
+ "step": 165
+ },
+ {
+ "epoch": 2.307557885539537,
+ "grad_norm": 0.8293641209602356,
+ "learning_rate": 0.0006,
+ "loss": 6.35113525390625,
+ "step": 166
+ },
+ {
+ "epoch": 2.3215377894276976,
+ "grad_norm": 0.3428577780723572,
+ "learning_rate": 0.0006,
+ "loss": 6.334470748901367,
+ "step": 167
+ },
+ {
+ "epoch": 2.3355176933158583,
+ "grad_norm": 0.7587600946426392,
+ "learning_rate": 0.0006,
+ "loss": 6.353979587554932,
+ "step": 168
+ },
+ {
+ "epoch": 2.349497597204019,
+ "grad_norm": 0.4227249026298523,
+ "learning_rate": 0.0006,
+ "loss": 6.34018611907959,
+ "step": 169
+ },
+ {
+ "epoch": 2.36347750109218,
+ "grad_norm": 0.4226846694946289,
+ "learning_rate": 0.0006,
+ "loss": 6.290019989013672,
+ "step": 170
+ },
+ {
+ "epoch": 2.3774574049803405,
+ "grad_norm": 0.38412365317344666,
+ "learning_rate": 0.0006,
+ "loss": 6.309510231018066,
+ "step": 171
+ },
+ {
+ "epoch": 2.3914373088685017,
+ "grad_norm": 0.45698508620262146,
+ "learning_rate": 0.0006,
+ "loss": 6.283290863037109,
+ "step": 172
+ },
+ {
+ "epoch": 2.4054172127566624,
+ "grad_norm": 0.7575915455818176,
+ "learning_rate": 0.0006,
+ "loss": 6.306073188781738,
+ "step": 173
+ },
+ {
+ "epoch": 2.419397116644823,
+ "grad_norm": 0.695123553276062,
+ "learning_rate": 0.0006,
+ "loss": 6.308144569396973,
+ "step": 174
+ },
+ {
+ "epoch": 2.433377020532984,
+ "grad_norm": 0.5035743117332458,
+ "learning_rate": 0.0006,
+ "loss": 6.282073974609375,
+ "step": 175
+ },
+ {
+ "epoch": 2.4473569244211446,
+ "grad_norm": 0.3158020079135895,
+ "learning_rate": 0.0006,
+ "loss": 6.282169342041016,
+ "step": 176
+ },
+ {
+ "epoch": 2.4613368283093053,
+ "grad_norm": 0.4829689860343933,
+ "learning_rate": 0.0006,
+ "loss": 6.264578819274902,
+ "step": 177
+ },
+ {
+ "epoch": 2.475316732197466,
+ "grad_norm": 0.3992770314216614,
+ "learning_rate": 0.0006,
+ "loss": 6.228628158569336,
+ "step": 178
+ },
+ {
+ "epoch": 2.489296636085627,
+ "grad_norm": 0.40887606143951416,
+ "learning_rate": 0.0006,
+ "loss": 6.230792045593262,
+ "step": 179
+ },
+ {
+ "epoch": 2.5032765399737875,
+ "grad_norm": 0.3540310263633728,
+ "learning_rate": 0.0006,
+ "loss": 6.222573280334473,
+ "step": 180
+ },
+ {
+ "epoch": 2.5172564438619487,
+ "grad_norm": 0.496219664812088,
+ "learning_rate": 0.0006,
+ "loss": 6.212109565734863,
+ "step": 181
+ },
+ {
+ "epoch": 2.5312363477501094,
+ "grad_norm": 0.435173898935318,
+ "learning_rate": 0.0006,
+ "loss": 6.221210479736328,
+ "step": 182
+ },
+ {
+ "epoch": 2.54521625163827,
+ "grad_norm": 0.5364007949829102,
+ "learning_rate": 0.0006,
+ "loss": 6.217929840087891,
+ "step": 183
+ },
+ {
+ "epoch": 2.559196155526431,
+ "grad_norm": 0.5946390628814697,
+ "learning_rate": 0.0006,
+ "loss": 6.189267158508301,
+ "step": 184
+ },
+ {
+ "epoch": 2.5731760594145916,
+ "grad_norm": 0.41621312499046326,
+ "learning_rate": 0.0006,
+ "loss": 6.182415008544922,
+ "step": 185
+ },
+ {
+ "epoch": 2.5871559633027523,
+ "grad_norm": 0.5442072749137878,
+ "learning_rate": 0.0006,
+ "loss": 6.150757789611816,
+ "step": 186
+ },
+ {
+ "epoch": 2.601135867190913,
+ "grad_norm": 0.727843165397644,
+ "learning_rate": 0.0006,
+ "loss": 6.146082878112793,
+ "step": 187
+ },
+ {
+ "epoch": 2.615115771079074,
+ "grad_norm": 0.8898891806602478,
+ "learning_rate": 0.0006,
+ "loss": 6.190483093261719,
+ "step": 188
+ },
+ {
+ "epoch": 2.6290956749672345,
+ "grad_norm": 0.5173947215080261,
+ "learning_rate": 0.0006,
+ "loss": 6.151251792907715,
+ "step": 189
+ },
+ {
+ "epoch": 2.6430755788553952,
+ "grad_norm": 0.6476729512214661,
+ "learning_rate": 0.0006,
+ "loss": 6.154841423034668,
+ "step": 190
+ },
+ {
+ "epoch": 2.657055482743556,
+ "grad_norm": 0.3538810908794403,
+ "learning_rate": 0.0006,
+ "loss": 6.103879928588867,
+ "step": 191
+ },
+ {
+ "epoch": 2.6710353866317167,
+ "grad_norm": 0.4773508310317993,
+ "learning_rate": 0.0006,
+ "loss": 6.118101119995117,
+ "step": 192
+ },
+ {
+ "epoch": 2.6850152905198774,
+ "grad_norm": 0.29213786125183105,
+ "learning_rate": 0.0006,
+ "loss": 6.108916282653809,
+ "step": 193
+ },
+ {
+ "epoch": 2.6989951944080386,
+ "grad_norm": 0.40800607204437256,
+ "learning_rate": 0.0006,
+ "loss": 6.113438606262207,
+ "step": 194
+ },
+ {
+ "epoch": 2.7129750982961993,
+ "grad_norm": 0.31157299876213074,
+ "learning_rate": 0.0006,
+ "loss": 6.101809501647949,
+ "step": 195
+ },
+ {
+ "epoch": 2.72695500218436,
+ "grad_norm": 0.28660309314727783,
+ "learning_rate": 0.0006,
+ "loss": 6.075886249542236,
+ "step": 196
+ },
+ {
+ "epoch": 2.7409349060725208,
+ "grad_norm": 0.3810449540615082,
+ "learning_rate": 0.0006,
+ "loss": 6.053257942199707,
+ "step": 197
+ },
+ {
+ "epoch": 2.7549148099606815,
+ "grad_norm": 0.21741755306720734,
+ "learning_rate": 0.0006,
+ "loss": 6.013825416564941,
+ "step": 198
+ },
+ {
+ "epoch": 2.7688947138488422,
+ "grad_norm": 0.2777678966522217,
+ "learning_rate": 0.0006,
+ "loss": 6.054204940795898,
+ "step": 199
+ },
+ {
+ "epoch": 2.782874617737003,
+ "grad_norm": 0.28503066301345825,
+ "learning_rate": 0.0006,
+ "loss": 6.035628318786621,
+ "step": 200
+ },
+ {
+ "epoch": 2.7968545216251637,
+ "grad_norm": 0.41954755783081055,
+ "learning_rate": 0.0006,
+ "loss": 6.028354644775391,
+ "step": 201
+ },
+ {
+ "epoch": 2.810834425513325,
+ "grad_norm": 0.8785563111305237,
+ "learning_rate": 0.0006,
+ "loss": 6.055761337280273,
+ "step": 202
+ },
+ {
+ "epoch": 2.8248143294014856,
+ "grad_norm": 1.7459558248519897,
+ "learning_rate": 0.0006,
+ "loss": 6.11599588394165,
+ "step": 203
+ },
+ {
+ "epoch": 2.8387942332896463,
+ "grad_norm": 0.5725523233413696,
+ "learning_rate": 0.0006,
+ "loss": 6.024280548095703,
+ "step": 204
+ },
+ {
+ "epoch": 2.852774137177807,
+ "grad_norm": 0.5913150906562805,
+ "learning_rate": 0.0006,
+ "loss": 6.050281524658203,
+ "step": 205
+ },
+ {
+ "epoch": 2.8667540410659678,
+ "grad_norm": 0.5929384827613831,
+ "learning_rate": 0.0006,
+ "loss": 6.041121482849121,
+ "step": 206
+ },
+ {
+ "epoch": 2.8807339449541285,
+ "grad_norm": 0.5650724768638611,
+ "learning_rate": 0.0006,
+ "loss": 6.004258155822754,
+ "step": 207
+ },
+ {
+ "epoch": 2.894713848842289,
+ "grad_norm": 0.3420545756816864,
+ "learning_rate": 0.0006,
+ "loss": 5.983296871185303,
+ "step": 208
+ },
+ {
+ "epoch": 2.90869375273045,
+ "grad_norm": 0.2960914075374603,
+ "learning_rate": 0.0006,
+ "loss": 5.988578796386719,
+ "step": 209
+ },
+ {
+ "epoch": 2.9226736566186107,
+ "grad_norm": 0.3252662718296051,
+ "learning_rate": 0.0006,
+ "loss": 5.99103307723999,
+ "step": 210
+ },
+ {
+ "epoch": 2.9366535605067714,
+ "grad_norm": 0.4851132929325104,
+ "learning_rate": 0.0006,
+ "loss": 6.0028977394104,
+ "step": 211
+ },
+ {
+ "epoch": 2.950633464394932,
+ "grad_norm": 0.5639995336532593,
+ "learning_rate": 0.0006,
+ "loss": 5.965080738067627,
+ "step": 212
+ },
+ {
+ "epoch": 2.964613368283093,
+ "grad_norm": 0.4514601230621338,
+ "learning_rate": 0.0006,
+ "loss": 5.961450576782227,
+ "step": 213
+ },
+ {
+ "epoch": 2.9785932721712536,
+ "grad_norm": 0.5397921800613403,
+ "learning_rate": 0.0006,
+ "loss": 5.965290546417236,
+ "step": 214
+ },
+ {
+ "epoch": 2.9925731760594148,
+ "grad_norm": 0.4735587239265442,
+ "learning_rate": 0.0006,
+ "loss": 5.952754497528076,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.32061058282852173,
+ "learning_rate": 0.0006,
+ "loss": 5.961667060852051,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 6.8517303466796875,
+ "eval_runtime": 44.03,
+ "eval_samples_per_second": 55.462,
+ "eval_steps_per_second": 3.475,
+ "step": 216
+ },
+ {
+ "epoch": 3.0139799038881607,
+ "grad_norm": 0.3537784814834595,
+ "learning_rate": 0.0006,
+ "loss": 5.928008079528809,
+ "step": 217
+ },
+ {
+ "epoch": 3.0279598077763215,
+ "grad_norm": 0.40713080763816833,
+ "learning_rate": 0.0006,
+ "loss": 5.9150800704956055,
+ "step": 218
+ },
+ {
+ "epoch": 3.041939711664482,
+ "grad_norm": 0.2548826336860657,
+ "learning_rate": 0.0006,
+ "loss": 5.919757843017578,
+ "step": 219
+ },
+ {
+ "epoch": 3.055919615552643,
+ "grad_norm": 0.2818543016910553,
+ "learning_rate": 0.0006,
+ "loss": 5.913688659667969,
+ "step": 220
+ },
+ {
+ "epoch": 3.0698995194408036,
+ "grad_norm": 0.4196692705154419,
+ "learning_rate": 0.0006,
+ "loss": 5.8675336837768555,
+ "step": 221
+ },
+ {
+ "epoch": 3.083879423328965,
+ "grad_norm": 0.35272282361984253,
+ "learning_rate": 0.0006,
+ "loss": 5.878874778747559,
+ "step": 222
+ },
+ {
+ "epoch": 3.0978593272171255,
+ "grad_norm": 0.3254282772541046,
+ "learning_rate": 0.0006,
+ "loss": 5.8823041915893555,
+ "step": 223
+ },
+ {
+ "epoch": 3.1118392311052863,
+ "grad_norm": 0.4052561819553375,
+ "learning_rate": 0.0006,
+ "loss": 5.867744445800781,
+ "step": 224
+ },
+ {
+ "epoch": 3.125819134993447,
+ "grad_norm": 0.31246256828308105,
+ "learning_rate": 0.0006,
+ "loss": 5.886094093322754,
+ "step": 225
+ },
+ {
+ "epoch": 3.1397990388816077,
+ "grad_norm": 0.3479118347167969,
+ "learning_rate": 0.0006,
+ "loss": 5.850762367248535,
+ "step": 226
+ },
+ {
+ "epoch": 3.1537789427697684,
+ "grad_norm": 0.5037238597869873,
+ "learning_rate": 0.0006,
+ "loss": 5.844175815582275,
+ "step": 227
+ },
+ {
+ "epoch": 3.167758846657929,
+ "grad_norm": 0.6271815896034241,
+ "learning_rate": 0.0006,
+ "loss": 5.871790885925293,
+ "step": 228
+ },
+ {
+ "epoch": 3.18173875054609,
+ "grad_norm": 0.43838298320770264,
+ "learning_rate": 0.0006,
+ "loss": 5.844024658203125,
+ "step": 229
+ },
+ {
+ "epoch": 3.1957186544342506,
+ "grad_norm": 0.4755159616470337,
+ "learning_rate": 0.0006,
+ "loss": 5.846892356872559,
+ "step": 230
+ },
+ {
+ "epoch": 3.2096985583224114,
+ "grad_norm": 0.5229779481887817,
+ "learning_rate": 0.0006,
+ "loss": 5.827000617980957,
+ "step": 231
+ },
+ {
+ "epoch": 3.2236784622105725,
+ "grad_norm": 0.8264499306678772,
+ "learning_rate": 0.0006,
+ "loss": 5.867050647735596,
+ "step": 232
+ },
+ {
+ "epoch": 3.2376583660987333,
+ "grad_norm": 1.0607538223266602,
+ "learning_rate": 0.0006,
+ "loss": 5.877876281738281,
+ "step": 233
+ },
+ {
+ "epoch": 3.251638269986894,
+ "grad_norm": 0.7656505703926086,
+ "learning_rate": 0.0006,
+ "loss": 5.86760139465332,
+ "step": 234
+ },
+ {
+ "epoch": 3.2656181738750547,
+ "grad_norm": 0.7940183281898499,
+ "learning_rate": 0.0006,
+ "loss": 5.861355781555176,
+ "step": 235
+ },
+ {
+ "epoch": 3.2795980777632154,
+ "grad_norm": 0.45171424746513367,
+ "learning_rate": 0.0006,
+ "loss": 5.799808502197266,
+ "step": 236
+ },
+ {
+ "epoch": 3.293577981651376,
+ "grad_norm": 0.6174989342689514,
+ "learning_rate": 0.0006,
+ "loss": 5.8585920333862305,
+ "step": 237
+ },
+ {
+ "epoch": 3.307557885539537,
+ "grad_norm": 0.5341290831565857,
+ "learning_rate": 0.0006,
+ "loss": 5.8116044998168945,
+ "step": 238
+ },
+ {
+ "epoch": 3.3215377894276976,
+ "grad_norm": 0.3938343822956085,
+ "learning_rate": 0.0006,
+ "loss": 5.83797550201416,
+ "step": 239
+ },
+ {
+ "epoch": 3.3355176933158583,
+ "grad_norm": 0.5106972455978394,
+ "learning_rate": 0.0006,
+ "loss": 5.832303047180176,
+ "step": 240
+ },
+ {
+ "epoch": 3.349497597204019,
+ "grad_norm": 0.3791428506374359,
+ "learning_rate": 0.0006,
+ "loss": 5.794981956481934,
+ "step": 241
+ },
+ {
+ "epoch": 3.36347750109218,
+ "grad_norm": 0.42287978529930115,
+ "learning_rate": 0.0006,
+ "loss": 5.788144111633301,
+ "step": 242
+ },
+ {
+ "epoch": 3.3774574049803405,
+ "grad_norm": 0.27334436774253845,
+ "learning_rate": 0.0006,
+ "loss": 5.771070957183838,
+ "step": 243
+ },
+ {
+ "epoch": 3.3914373088685017,
+ "grad_norm": 0.2470470368862152,
+ "learning_rate": 0.0006,
+ "loss": 5.755998611450195,
+ "step": 244
+ },
+ {
+ "epoch": 3.4054172127566624,
+ "grad_norm": 0.3043915033340454,
+ "learning_rate": 0.0006,
+ "loss": 5.779492378234863,
+ "step": 245
+ },
+ {
+ "epoch": 3.419397116644823,
+ "grad_norm": 0.2960112988948822,
+ "learning_rate": 0.0006,
+ "loss": 5.750328063964844,
+ "step": 246
+ },
+ {
+ "epoch": 3.433377020532984,
+ "grad_norm": 0.3046723008155823,
+ "learning_rate": 0.0006,
+ "loss": 5.776517868041992,
+ "step": 247
+ },
+ {
+ "epoch": 3.4473569244211446,
+ "grad_norm": 0.22461780905723572,
+ "learning_rate": 0.0006,
+ "loss": 5.760989665985107,
+ "step": 248
+ },
+ {
+ "epoch": 3.4613368283093053,
+ "grad_norm": 0.24625757336616516,
+ "learning_rate": 0.0006,
+ "loss": 5.759706497192383,
+ "step": 249
+ },
+ {
+ "epoch": 3.475316732197466,
+ "grad_norm": 0.18207131326198578,
+ "learning_rate": 0.0006,
+ "loss": 5.747040748596191,
+ "step": 250
+ },
+ {
+ "epoch": 3.489296636085627,
+ "grad_norm": 0.16473834216594696,
+ "learning_rate": 0.0006,
+ "loss": 5.761577606201172,
+ "step": 251
+ },
+ {
+ "epoch": 3.5032765399737875,
+ "grad_norm": 0.25155773758888245,
+ "learning_rate": 0.0006,
+ "loss": 5.696502208709717,
+ "step": 252
+ },
+ {
+ "epoch": 3.5172564438619487,
+ "grad_norm": 0.24115674197673798,
+ "learning_rate": 0.0006,
+ "loss": 5.676957130432129,
+ "step": 253
+ },
+ {
+ "epoch": 3.5312363477501094,
+ "grad_norm": 0.40912172198295593,
+ "learning_rate": 0.0006,
+ "loss": 5.695090293884277,
+ "step": 254
+ },
+ {
+ "epoch": 3.54521625163827,
+ "grad_norm": 0.6727662682533264,
+ "learning_rate": 0.0006,
+ "loss": 5.722194671630859,
+ "step": 255
+ },
+ {
+ "epoch": 3.559196155526431,
+ "grad_norm": 0.8450719118118286,
+ "learning_rate": 0.0006,
+ "loss": 5.764680862426758,
+ "step": 256
+ },
+ {
+ "epoch": 3.5731760594145916,
+ "grad_norm": 0.9916183352470398,
+ "learning_rate": 0.0006,
+ "loss": 5.754530429840088,
+ "step": 257
+ },
+ {
+ "epoch": 3.5871559633027523,
+ "grad_norm": 1.041922688484192,
+ "learning_rate": 0.0006,
+ "loss": 5.781468391418457,
+ "step": 258
+ },
+ {
+ "epoch": 3.601135867190913,
+ "grad_norm": 0.972039520740509,
+ "learning_rate": 0.0006,
+ "loss": 5.760323524475098,
+ "step": 259
+ },
+ {
+ "epoch": 3.615115771079074,
+ "grad_norm": 0.6802462935447693,
+ "learning_rate": 0.0006,
+ "loss": 5.750064849853516,
+ "step": 260
+ },
+ {
+ "epoch": 3.6290956749672345,
+ "grad_norm": 0.48553529381752014,
+ "learning_rate": 0.0006,
+ "loss": 5.7464094161987305,
+ "step": 261
+ },
+ {
+ "epoch": 3.6430755788553952,
+ "grad_norm": 0.4066704213619232,
+ "learning_rate": 0.0006,
+ "loss": 5.719789505004883,
+ "step": 262
+ },
+ {
+ "epoch": 3.657055482743556,
+ "grad_norm": 0.3300860822200775,
+ "learning_rate": 0.0006,
+ "loss": 5.719920635223389,
+ "step": 263
+ },
+ {
+ "epoch": 3.6710353866317167,
+ "grad_norm": 0.3286679983139038,
+ "learning_rate": 0.0006,
+ "loss": 5.723465919494629,
+ "step": 264
+ },
+ {
+ "epoch": 3.6850152905198774,
+ "grad_norm": 0.27653390169143677,
+ "learning_rate": 0.0006,
+ "loss": 5.713820457458496,
+ "step": 265
+ },
+ {
+ "epoch": 3.6989951944080386,
+ "grad_norm": 0.26138055324554443,
+ "learning_rate": 0.0006,
+ "loss": 5.683221817016602,
+ "step": 266
+ },
+ {
+ "epoch": 3.7129750982961993,
+ "grad_norm": 0.23706290125846863,
+ "learning_rate": 0.0006,
+ "loss": 5.6896867752075195,
+ "step": 267
+ },
+ {
+ "epoch": 3.72695500218436,
+ "grad_norm": 0.2751729190349579,
+ "learning_rate": 0.0006,
+ "loss": 5.710301876068115,
+ "step": 268
+ },
+ {
+ "epoch": 3.7409349060725208,
+ "grad_norm": 0.255393385887146,
+ "learning_rate": 0.0006,
+ "loss": 5.687932968139648,
+ "step": 269
+ },
+ {
+ "epoch": 3.7549148099606815,
+ "grad_norm": 0.21453925967216492,
+ "learning_rate": 0.0006,
+ "loss": 5.68234395980835,
+ "step": 270
+ },
+ {
+ "epoch": 3.7688947138488422,
+ "grad_norm": 0.21771012246608734,
+ "learning_rate": 0.0006,
+ "loss": 5.683980464935303,
+ "step": 271
+ },
+ {
+ "epoch": 3.782874617737003,
+ "grad_norm": 0.1884593963623047,
+ "learning_rate": 0.0006,
+ "loss": 5.662779808044434,
+ "step": 272
+ },
+ {
+ "epoch": 3.7968545216251637,
+ "grad_norm": 0.20429612696170807,
+ "learning_rate": 0.0006,
+ "loss": 5.650941848754883,
+ "step": 273
+ },
+ {
+ "epoch": 3.810834425513325,
+ "grad_norm": 0.22586797177791595,
+ "learning_rate": 0.0006,
+ "loss": 5.639376640319824,
+ "step": 274
+ },
+ {
+ "epoch": 3.8248143294014856,
+ "grad_norm": 0.19651705026626587,
+ "learning_rate": 0.0006,
+ "loss": 5.612030029296875,
+ "step": 275
+ },
+ {
+ "epoch": 3.8387942332896463,
+ "grad_norm": 0.2125253826379776,
+ "learning_rate": 0.0006,
+ "loss": 5.622836589813232,
+ "step": 276
+ },
+ {
+ "epoch": 3.852774137177807,
+ "grad_norm": 0.2905234694480896,
+ "learning_rate": 0.0006,
+ "loss": 5.624594688415527,
+ "step": 277
+ },
+ {
+ "epoch": 3.8667540410659678,
+ "grad_norm": 0.2718426585197449,
+ "learning_rate": 0.0006,
+ "loss": 5.619892120361328,
+ "step": 278
+ },
+ {
+ "epoch": 3.8807339449541285,
+ "grad_norm": 0.26481127738952637,
+ "learning_rate": 0.0006,
+ "loss": 5.612496852874756,
+ "step": 279
+ },
+ {
+ "epoch": 3.894713848842289,
+ "grad_norm": 0.2876453399658203,
+ "learning_rate": 0.0006,
+ "loss": 5.59157133102417,
+ "step": 280
+ },
+ {
+ "epoch": 3.90869375273045,
+ "grad_norm": 0.22829554975032806,
+ "learning_rate": 0.0006,
+ "loss": 5.5884199142456055,
+ "step": 281
+ },
+ {
+ "epoch": 3.9226736566186107,
+ "grad_norm": 0.22852344810962677,
+ "learning_rate": 0.0006,
+ "loss": 5.618719100952148,
+ "step": 282
+ },
+ {
+ "epoch": 3.9366535605067714,
+ "grad_norm": 0.37366563081741333,
+ "learning_rate": 0.0006,
+ "loss": 5.611738204956055,
+ "step": 283
+ },
+ {
+ "epoch": 3.950633464394932,
+ "grad_norm": 0.5650382041931152,
+ "learning_rate": 0.0006,
+ "loss": 5.606371879577637,
+ "step": 284
+ },
+ {
+ "epoch": 3.964613368283093,
+ "grad_norm": 0.5960066914558411,
+ "learning_rate": 0.0006,
+ "loss": 5.595022201538086,
+ "step": 285
+ },
+ {
+ "epoch": 3.9785932721712536,
+ "grad_norm": 0.3561663031578064,
+ "learning_rate": 0.0006,
+ "loss": 5.581035614013672,
+ "step": 286
+ },
+ {
+ "epoch": 3.9925731760594148,
+ "grad_norm": 0.44699913263320923,
+ "learning_rate": 0.0006,
+ "loss": 5.568033218383789,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.42783990502357483,
+ "learning_rate": 0.0006,
+ "loss": 5.571993827819824,
+ "step": 288
+ },
+ {
+ "epoch": 4.0,
+ "eval_loss": 6.349016189575195,
+ "eval_runtime": 44.3326,
+ "eval_samples_per_second": 55.084,
+ "eval_steps_per_second": 3.451,
+ "step": 288
+ },
+ {
+ "epoch": 4.013979903888161,
+ "grad_norm": 0.41305896639823914,
+ "learning_rate": 0.0006,
+ "loss": 5.562954902648926,
+ "step": 289
+ },
+ {
+ "epoch": 4.0279598077763215,
+ "grad_norm": 0.3966459035873413,
+ "learning_rate": 0.0006,
+ "loss": 5.5671916007995605,
+ "step": 290
+ },
+ {
+ "epoch": 4.041939711664482,
+ "grad_norm": 0.4846104085445404,
+ "learning_rate": 0.0006,
+ "loss": 5.548027038574219,
+ "step": 291
+ },
+ {
+ "epoch": 4.055919615552643,
+ "grad_norm": 0.5916333794593811,
+ "learning_rate": 0.0006,
+ "loss": 5.5900068283081055,
+ "step": 292
+ },
+ {
+ "epoch": 4.069899519440804,
+ "grad_norm": 0.5973889231681824,
+ "learning_rate": 0.0006,
+ "loss": 5.537594795227051,
+ "step": 293
+ },
+ {
+ "epoch": 4.083879423328964,
+ "grad_norm": 0.4190494418144226,
+ "learning_rate": 0.0006,
+ "loss": 5.534749984741211,
+ "step": 294
+ },
+ {
+ "epoch": 4.097859327217125,
+ "grad_norm": 0.5956901907920837,
+ "learning_rate": 0.0006,
+ "loss": 5.554540634155273,
+ "step": 295
+ },
+ {
+ "epoch": 4.111839231105286,
+ "grad_norm": 0.8257920742034912,
+ "learning_rate": 0.0006,
+ "loss": 5.5728068351745605,
+ "step": 296
+ },
+ {
+ "epoch": 4.1258191349934465,
+ "grad_norm": 0.7241750955581665,
+ "learning_rate": 0.0006,
+ "loss": 5.5643815994262695,
+ "step": 297
+ },
+ {
+ "epoch": 4.139799038881607,
+ "grad_norm": 0.45730507373809814,
+ "learning_rate": 0.0006,
+ "loss": 5.554225921630859,
+ "step": 298
+ },
+ {
+ "epoch": 4.153778942769769,
+ "grad_norm": 0.5166977643966675,
+ "learning_rate": 0.0006,
+ "loss": 5.540790557861328,
+ "step": 299
+ },
+ {
+ "epoch": 4.16775884665793,
+ "grad_norm": 0.433237761259079,
+ "learning_rate": 0.0006,
+ "loss": 5.536884784698486,
+ "step": 300
+ },
+ {
+ "epoch": 4.18173875054609,
+ "grad_norm": 0.3369830250740051,
+ "learning_rate": 0.0006,
+ "loss": 5.532837867736816,
+ "step": 301
+ },
+ {
+ "epoch": 4.195718654434251,
+ "grad_norm": 0.33091458678245544,
+ "learning_rate": 0.0006,
+ "loss": 5.547643661499023,
+ "step": 302
+ },
+ {
+ "epoch": 4.209698558322412,
+ "grad_norm": 0.36462724208831787,
+ "learning_rate": 0.0006,
+ "loss": 5.525021076202393,
+ "step": 303
+ },
+ {
+ "epoch": 4.2236784622105725,
+ "grad_norm": 0.3342771530151367,
+ "learning_rate": 0.0006,
+ "loss": 5.512082099914551,
+ "step": 304
+ },
+ {
+ "epoch": 4.237658366098733,
+ "grad_norm": 0.26784762740135193,
+ "learning_rate": 0.0006,
+ "loss": 5.488072395324707,
+ "step": 305
+ },
+ {
+ "epoch": 4.251638269986894,
+ "grad_norm": 0.25986987352371216,
+ "learning_rate": 0.0006,
+ "loss": 5.4960455894470215,
+ "step": 306
+ },
+ {
+ "epoch": 4.265618173875055,
+ "grad_norm": 0.24595795571804047,
+ "learning_rate": 0.0006,
+ "loss": 5.513367176055908,
+ "step": 307
+ },
+ {
+ "epoch": 4.279598077763215,
+ "grad_norm": 0.2224857211112976,
+ "learning_rate": 0.0006,
+ "loss": 5.465205192565918,
+ "step": 308
+ },
+ {
+ "epoch": 4.293577981651376,
+ "grad_norm": 0.26799243688583374,
+ "learning_rate": 0.0006,
+ "loss": 5.476632118225098,
+ "step": 309
+ },
+ {
+ "epoch": 4.307557885539537,
+ "grad_norm": 0.20443417131900787,
+ "learning_rate": 0.0006,
+ "loss": 5.442601203918457,
+ "step": 310
+ },
+ {
+ "epoch": 4.321537789427698,
+ "grad_norm": 0.2275059074163437,
+ "learning_rate": 0.0006,
+ "loss": 5.453519344329834,
+ "step": 311
+ },
+ {
+ "epoch": 4.335517693315858,
+ "grad_norm": 0.2860901951789856,
+ "learning_rate": 0.0006,
+ "loss": 5.439424514770508,
+ "step": 312
+ },
+ {
+ "epoch": 4.349497597204019,
+ "grad_norm": 0.3378142714500427,
+ "learning_rate": 0.0006,
+ "loss": 5.476953983306885,
+ "step": 313
+ },
+ {
+ "epoch": 4.36347750109218,
+ "grad_norm": 0.3487110733985901,
+ "learning_rate": 0.0006,
+ "loss": 5.47003698348999,
+ "step": 314
+ },
+ {
+ "epoch": 4.3774574049803405,
+ "grad_norm": 0.3655227720737457,
+ "learning_rate": 0.0006,
+ "loss": 5.454250812530518,
+ "step": 315
+ },
+ {
+ "epoch": 4.391437308868501,
+ "grad_norm": 0.3754786252975464,
+ "learning_rate": 0.0006,
+ "loss": 5.475249290466309,
+ "step": 316
+ },
+ {
+ "epoch": 4.405417212756662,
+ "grad_norm": 0.42494088411331177,
+ "learning_rate": 0.0006,
+ "loss": 5.4552459716796875,
+ "step": 317
+ },
+ {
+ "epoch": 4.419397116644823,
+ "grad_norm": 0.4914703667163849,
+ "learning_rate": 0.0006,
+ "loss": 5.431845188140869,
+ "step": 318
+ },
+ {
+ "epoch": 4.433377020532983,
+ "grad_norm": 0.42470860481262207,
+ "learning_rate": 0.0006,
+ "loss": 5.454581260681152,
+ "step": 319
+ },
+ {
+ "epoch": 4.447356924421145,
+ "grad_norm": 0.3828011155128479,
+ "learning_rate": 0.0006,
+ "loss": 5.435178756713867,
+ "step": 320
+ },
+ {
+ "epoch": 4.461336828309306,
+ "grad_norm": 0.47256892919540405,
+ "learning_rate": 0.0006,
+ "loss": 5.428861618041992,
+ "step": 321
+ },
+ {
+ "epoch": 4.4753167321974665,
+ "grad_norm": 0.5665146708488464,
+ "learning_rate": 0.0006,
+ "loss": 5.424633026123047,
+ "step": 322
+ },
+ {
+ "epoch": 4.489296636085627,
+ "grad_norm": 0.48146721720695496,
+ "learning_rate": 0.0006,
+ "loss": 5.4577860832214355,
+ "step": 323
+ },
+ {
+ "epoch": 4.503276539973788,
+ "grad_norm": 0.3378535509109497,
+ "learning_rate": 0.0006,
+ "loss": 5.422727108001709,
+ "step": 324
+ },
+ {
+ "epoch": 4.517256443861949,
+ "grad_norm": 0.41981473565101624,
+ "learning_rate": 0.0006,
+ "loss": 5.418993949890137,
+ "step": 325
+ },
+ {
+ "epoch": 4.531236347750109,
+ "grad_norm": 0.39389684796333313,
+ "learning_rate": 0.0006,
+ "loss": 5.41835880279541,
+ "step": 326
+ },
+ {
+ "epoch": 4.54521625163827,
+ "grad_norm": 0.5912176370620728,
+ "learning_rate": 0.0006,
+ "loss": 5.40073299407959,
+ "step": 327
+ },
+ {
+ "epoch": 4.559196155526431,
+ "grad_norm": 0.6877487897872925,
+ "learning_rate": 0.0006,
+ "loss": 5.445301055908203,
+ "step": 328
+ },
+ {
+ "epoch": 4.573176059414592,
+ "grad_norm": 0.580555260181427,
+ "learning_rate": 0.0006,
+ "loss": 5.431069374084473,
+ "step": 329
+ },
+ {
+ "epoch": 4.587155963302752,
+ "grad_norm": 0.5974457859992981,
+ "learning_rate": 0.0006,
+ "loss": 5.422694206237793,
+ "step": 330
+ },
+ {
+ "epoch": 4.601135867190913,
+ "grad_norm": 0.722481906414032,
+ "learning_rate": 0.0006,
+ "loss": 5.447752952575684,
+ "step": 331
+ },
+ {
+ "epoch": 4.615115771079074,
+ "grad_norm": 0.7687886953353882,
+ "learning_rate": 0.0006,
+ "loss": 5.437956809997559,
+ "step": 332
+ },
+ {
+ "epoch": 4.6290956749672345,
+ "grad_norm": 0.7368173003196716,
+ "learning_rate": 0.0006,
+ "loss": 5.4367241859436035,
+ "step": 333
+ },
+ {
+ "epoch": 4.643075578855395,
+ "grad_norm": 0.6650524139404297,
+ "learning_rate": 0.0006,
+ "loss": 5.4288434982299805,
+ "step": 334
+ },
+ {
+ "epoch": 4.657055482743556,
+ "grad_norm": 0.4997614920139313,
+ "learning_rate": 0.0006,
+ "loss": 5.412769317626953,
+ "step": 335
+ },
+ {
+ "epoch": 4.671035386631717,
+ "grad_norm": 0.44208982586860657,
+ "learning_rate": 0.0006,
+ "loss": 5.42405366897583,
+ "step": 336
+ },
+ {
+ "epoch": 4.685015290519877,
+ "grad_norm": 0.39510273933410645,
+ "learning_rate": 0.0006,
+ "loss": 5.402547836303711,
+ "step": 337
+ },
+ {
+ "epoch": 4.698995194408038,
+ "grad_norm": 0.44970476627349854,
+ "learning_rate": 0.0006,
+ "loss": 5.377168655395508,
+ "step": 338
+ },
+ {
+ "epoch": 4.712975098296199,
+ "grad_norm": 0.3902331590652466,
+ "learning_rate": 0.0006,
+ "loss": 5.401622772216797,
+ "step": 339
+ },
+ {
+ "epoch": 4.72695500218436,
+ "grad_norm": 0.33485135436058044,
+ "learning_rate": 0.0006,
+ "loss": 5.397945880889893,
+ "step": 340
+ },
+ {
+ "epoch": 4.740934906072521,
+ "grad_norm": 0.29062309861183167,
+ "learning_rate": 0.0006,
+ "loss": 5.356175422668457,
+ "step": 341
+ },
+ {
+ "epoch": 4.754914809960681,
+ "grad_norm": 0.23617377877235413,
+ "learning_rate": 0.0006,
+ "loss": 5.388517379760742,
+ "step": 342
+ },
+ {
+ "epoch": 4.768894713848843,
+ "grad_norm": 0.2704737186431885,
+ "learning_rate": 0.0006,
+ "loss": 5.3746137619018555,
+ "step": 343
+ },
+ {
+ "epoch": 4.782874617737003,
+ "grad_norm": 0.20488551259040833,
+ "learning_rate": 0.0006,
+ "loss": 5.3754472732543945,
+ "step": 344
+ },
+ {
+ "epoch": 4.796854521625164,
+ "grad_norm": 0.2007082849740982,
+ "learning_rate": 0.0006,
+ "loss": 5.3538618087768555,
+ "step": 345
+ },
+ {
+ "epoch": 4.810834425513325,
+ "grad_norm": 0.21732935309410095,
+ "learning_rate": 0.0006,
+ "loss": 5.351774215698242,
+ "step": 346
+ },
+ {
+ "epoch": 4.824814329401486,
+ "grad_norm": 0.1944841742515564,
+ "learning_rate": 0.0006,
+ "loss": 5.357545852661133,
+ "step": 347
+ },
+ {
+ "epoch": 4.838794233289646,
+ "grad_norm": 0.1953933835029602,
+ "learning_rate": 0.0006,
+ "loss": 5.321681022644043,
+ "step": 348
+ },
+ {
+ "epoch": 4.852774137177807,
+ "grad_norm": 0.1743433028459549,
+ "learning_rate": 0.0006,
+ "loss": 5.340302467346191,
+ "step": 349
+ },
+ {
+ "epoch": 4.866754041065968,
+ "grad_norm": 0.19655466079711914,
+ "learning_rate": 0.0006,
+ "loss": 5.325471878051758,
+ "step": 350
+ },
+ {
+ "epoch": 4.8807339449541285,
+ "grad_norm": 0.15761791169643402,
+ "learning_rate": 0.0006,
+ "loss": 5.3453240394592285,
+ "step": 351
+ },
+ {
+ "epoch": 4.894713848842289,
+ "grad_norm": 0.19164425134658813,
+ "learning_rate": 0.0006,
+ "loss": 5.315583229064941,
+ "step": 352
+ },
+ {
+ "epoch": 4.90869375273045,
+ "grad_norm": 0.28084540367126465,
+ "learning_rate": 0.0006,
+ "loss": 5.309171676635742,
+ "step": 353
+ },
+ {
+ "epoch": 4.922673656618611,
+ "grad_norm": 0.4681853652000427,
+ "learning_rate": 0.0006,
+ "loss": 5.318211078643799,
+ "step": 354
+ },
+ {
+ "epoch": 4.936653560506771,
+ "grad_norm": 0.6417295932769775,
+ "learning_rate": 0.0006,
+ "loss": 5.309263706207275,
+ "step": 355
+ },
+ {
+ "epoch": 4.950633464394932,
+ "grad_norm": 0.501312792301178,
+ "learning_rate": 0.0006,
+ "loss": 5.321534156799316,
+ "step": 356
+ },
+ {
+ "epoch": 4.964613368283093,
+ "grad_norm": 0.47502145171165466,
+ "learning_rate": 0.0006,
+ "loss": 5.323659896850586,
+ "step": 357
+ },
+ {
+ "epoch": 4.978593272171254,
+ "grad_norm": 0.5366594791412354,
+ "learning_rate": 0.0006,
+ "loss": 5.327367782592773,
+ "step": 358
+ },
+ {
+ "epoch": 4.992573176059414,
+ "grad_norm": 0.6986395120620728,
+ "learning_rate": 0.0006,
+ "loss": 5.311097145080566,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.6626625657081604,
+ "learning_rate": 0.0006,
+ "loss": 5.337558269500732,
+ "step": 360
+ },
+ {
+ "epoch": 5.0,
+ "eval_loss": 5.929230690002441,
+ "eval_runtime": 44.5268,
+ "eval_samples_per_second": 54.843,
+ "eval_steps_per_second": 3.436,
+ "step": 360
+ },
+ {
+ "epoch": 5.013979903888161,
+ "grad_norm": 0.7383704781532288,
+ "learning_rate": 0.0006,
+ "loss": 5.315563678741455,
+ "step": 361
+ },
+ {
+ "epoch": 5.0279598077763215,
+ "grad_norm": 0.7730138301849365,
+ "learning_rate": 0.0006,
+ "loss": 5.324905872344971,
+ "step": 362
+ },
+ {
+ "epoch": 5.041939711664482,
+ "grad_norm": 0.8170825839042664,
+ "learning_rate": 0.0006,
+ "loss": 5.350251197814941,
+ "step": 363
+ },
+ {
+ "epoch": 5.055919615552643,
+ "grad_norm": 0.6950958371162415,
+ "learning_rate": 0.0006,
+ "loss": 5.338744163513184,
+ "step": 364
+ },
+ {
+ "epoch": 5.069899519440804,
+ "grad_norm": 0.5582894086837769,
+ "learning_rate": 0.0006,
+ "loss": 5.340539932250977,
+ "step": 365
+ },
+ {
+ "epoch": 5.083879423328964,
+ "grad_norm": 0.4772159159183502,
+ "learning_rate": 0.0006,
+ "loss": 5.344161033630371,
+ "step": 366
+ },
+ {
+ "epoch": 5.097859327217125,
+ "grad_norm": 0.5432839393615723,
+ "learning_rate": 0.0006,
+ "loss": 5.312403678894043,
+ "step": 367
+ },
+ {
+ "epoch": 5.111839231105286,
+ "grad_norm": 0.4944784641265869,
+ "learning_rate": 0.0006,
+ "loss": 5.30281925201416,
+ "step": 368
+ },
+ {
+ "epoch": 5.1258191349934465,
+ "grad_norm": 0.4298315942287445,
+ "learning_rate": 0.0006,
+ "loss": 5.29564094543457,
+ "step": 369
+ },
+ {
+ "epoch": 5.139799038881607,
+ "grad_norm": 0.349889874458313,
+ "learning_rate": 0.0006,
+ "loss": 5.287062644958496,
+ "step": 370
+ },
+ {
+ "epoch": 5.153778942769769,
+ "grad_norm": 0.2823719084262848,
+ "learning_rate": 0.0006,
+ "loss": 5.28826904296875,
+ "step": 371
+ },
+ {
+ "epoch": 5.16775884665793,
+ "grad_norm": 0.32975050806999207,
+ "learning_rate": 0.0006,
+ "loss": 5.256399631500244,
+ "step": 372
+ },
+ {
+ "epoch": 5.18173875054609,
+ "grad_norm": 0.2963952124118805,
+ "learning_rate": 0.0006,
+ "loss": 5.273757457733154,
+ "step": 373
+ },
+ {
+ "epoch": 5.195718654434251,
+ "grad_norm": 0.21345984935760498,
+ "learning_rate": 0.0006,
+ "loss": 5.274978160858154,
+ "step": 374
+ },
+ {
+ "epoch": 5.209698558322412,
+ "grad_norm": 0.2363101840019226,
+ "learning_rate": 0.0006,
+ "loss": 5.261585235595703,
+ "step": 375
+ },
+ {
+ "epoch": 5.2236784622105725,
+ "grad_norm": 0.19626963138580322,
+ "learning_rate": 0.0006,
+ "loss": 5.259700298309326,
+ "step": 376
+ },
+ {
+ "epoch": 5.237658366098733,
+ "grad_norm": 0.21083571016788483,
+ "learning_rate": 0.0006,
+ "loss": 5.233585357666016,
+ "step": 377
+ },
+ {
+ "epoch": 5.251638269986894,
+ "grad_norm": 0.2273513823747635,
+ "learning_rate": 0.0006,
+ "loss": 5.231740474700928,
+ "step": 378
+ },
+ {
+ "epoch": 5.265618173875055,
+ "grad_norm": 0.18299247324466705,
+ "learning_rate": 0.0006,
+ "loss": 5.251256465911865,
+ "step": 379
+ },
+ {
+ "epoch": 5.279598077763215,
+ "grad_norm": 0.19578224420547485,
+ "learning_rate": 0.0006,
+ "loss": 5.230329513549805,
+ "step": 380
+ },
+ {
+ "epoch": 5.293577981651376,
+ "grad_norm": 0.20308879017829895,
+ "learning_rate": 0.0006,
+ "loss": 5.243951797485352,
+ "step": 381
+ },
+ {
+ "epoch": 5.307557885539537,
+ "grad_norm": 0.21053212881088257,
+ "learning_rate": 0.0006,
+ "loss": 5.210272789001465,
+ "step": 382
+ },
+ {
+ "epoch": 5.321537789427698,
+ "grad_norm": 0.21852520108222961,
+ "learning_rate": 0.0006,
+ "loss": 5.215418815612793,
+ "step": 383
+ },
+ {
+ "epoch": 5.335517693315858,
+ "grad_norm": 0.24872010946273804,
+ "learning_rate": 0.0006,
+ "loss": 5.225139617919922,
+ "step": 384
+ },
+ {
+ "epoch": 5.349497597204019,
+ "grad_norm": 0.27780187129974365,
+ "learning_rate": 0.0006,
+ "loss": 5.241010665893555,
+ "step": 385
+ },
+ {
+ "epoch": 5.36347750109218,
+ "grad_norm": 0.261767715215683,
+ "learning_rate": 0.0006,
+ "loss": 5.230723857879639,
+ "step": 386
+ },
+ {
+ "epoch": 5.3774574049803405,
+ "grad_norm": 0.2111261785030365,
+ "learning_rate": 0.0006,
+ "loss": 5.1848602294921875,
+ "step": 387
+ },
+ {
+ "epoch": 5.391437308868501,
+ "grad_norm": 0.24325387179851532,
+ "learning_rate": 0.0006,
+ "loss": 5.180911064147949,
+ "step": 388
+ },
+ {
+ "epoch": 5.405417212756662,
+ "grad_norm": 0.19542962312698364,
+ "learning_rate": 0.0006,
+ "loss": 5.189907073974609,
+ "step": 389
+ },
+ {
+ "epoch": 5.419397116644823,
+ "grad_norm": 0.20489346981048584,
+ "learning_rate": 0.0006,
+ "loss": 5.184634208679199,
+ "step": 390
+ },
+ {
+ "epoch": 5.433377020532983,
+ "grad_norm": 0.2753409147262573,
+ "learning_rate": 0.0006,
+ "loss": 5.190083026885986,
+ "step": 391
+ },
+ {
+ "epoch": 5.447356924421145,
+ "grad_norm": 0.3758019208908081,
+ "learning_rate": 0.0006,
+ "loss": 5.189423561096191,
+ "step": 392
+ },
+ {
+ "epoch": 5.461336828309306,
+ "grad_norm": 0.4425095021724701,
+ "learning_rate": 0.0006,
+ "loss": 5.17152214050293,
+ "step": 393
+ },
+ {
+ "epoch": 5.4753167321974665,
+ "grad_norm": 0.39721858501434326,
+ "learning_rate": 0.0006,
+ "loss": 5.189178466796875,
+ "step": 394
+ },
+ {
+ "epoch": 5.489296636085627,
+ "grad_norm": 0.43441957235336304,
+ "learning_rate": 0.0006,
+ "loss": 5.1823577880859375,
+ "step": 395
+ },
+ {
+ "epoch": 5.503276539973788,
+ "grad_norm": 0.3583861291408539,
+ "learning_rate": 0.0006,
+ "loss": 5.160187721252441,
+ "step": 396
+ },
+ {
+ "epoch": 5.517256443861949,
+ "grad_norm": 0.323290079832077,
+ "learning_rate": 0.0006,
+ "loss": 5.113046646118164,
+ "step": 397
+ },
+ {
+ "epoch": 5.531236347750109,
+ "grad_norm": 0.3049418330192566,
+ "learning_rate": 0.0006,
+ "loss": 5.172209739685059,
+ "step": 398
+ },
+ {
+ "epoch": 5.54521625163827,
+ "grad_norm": 0.3253744840621948,
+ "learning_rate": 0.0006,
+ "loss": 5.1970720291137695,
+ "step": 399
+ },
+ {
+ "epoch": 5.559196155526431,
+ "grad_norm": 0.3232555091381073,
+ "learning_rate": 0.0006,
+ "loss": 5.173195838928223,
+ "step": 400
+ },
+ {
+ "epoch": 5.573176059414592,
+ "grad_norm": 0.33751845359802246,
+ "learning_rate": 0.0006,
+ "loss": 5.137526988983154,
+ "step": 401
+ },
+ {
+ "epoch": 5.587155963302752,
+ "grad_norm": 0.45970913767814636,
+ "learning_rate": 0.0006,
+ "loss": 5.123377799987793,
+ "step": 402
+ },
+ {
+ "epoch": 5.601135867190913,
+ "grad_norm": 0.5383784770965576,
+ "learning_rate": 0.0006,
+ "loss": 5.154180526733398,
+ "step": 403
+ },
+ {
+ "epoch": 5.615115771079074,
+ "grad_norm": 0.45765912532806396,
+ "learning_rate": 0.0006,
+ "loss": 5.1485209465026855,
+ "step": 404
+ },
+ {
+ "epoch": 5.6290956749672345,
+ "grad_norm": 0.5079503059387207,
+ "learning_rate": 0.0006,
+ "loss": 5.158293724060059,
+ "step": 405
+ },
+ {
+ "epoch": 5.643075578855395,
+ "grad_norm": 0.4860183894634247,
+ "learning_rate": 0.0006,
+ "loss": 5.1610212326049805,
+ "step": 406
+ },
+ {
+ "epoch": 5.657055482743556,
+ "grad_norm": 0.4065648913383484,
+ "learning_rate": 0.0006,
+ "loss": 5.1260786056518555,
+ "step": 407
+ },
+ {
+ "epoch": 5.671035386631717,
+ "grad_norm": 0.39606142044067383,
+ "learning_rate": 0.0006,
+ "loss": 5.1598711013793945,
+ "step": 408
+ },
+ {
+ "epoch": 5.685015290519877,
+ "grad_norm": 0.4705151319503784,
+ "learning_rate": 0.0006,
+ "loss": 5.166455268859863,
+ "step": 409
+ },
+ {
+ "epoch": 5.698995194408038,
+ "grad_norm": 0.5040799379348755,
+ "learning_rate": 0.0006,
+ "loss": 5.1408209800720215,
+ "step": 410
+ },
+ {
+ "epoch": 5.712975098296199,
+ "grad_norm": 0.5012556910514832,
+ "learning_rate": 0.0006,
+ "loss": 5.144109725952148,
+ "step": 411
+ },
+ {
+ "epoch": 5.72695500218436,
+ "grad_norm": 0.44301411509513855,
+ "learning_rate": 0.0006,
+ "loss": 5.155509948730469,
+ "step": 412
+ },
+ {
+ "epoch": 5.740934906072521,
+ "grad_norm": 0.36632269620895386,
+ "learning_rate": 0.0006,
+ "loss": 5.123111248016357,
+ "step": 413
+ },
+ {
+ "epoch": 5.754914809960681,
+ "grad_norm": 0.2980524003505707,
+ "learning_rate": 0.0006,
+ "loss": 5.1355719566345215,
+ "step": 414
+ },
+ {
+ "epoch": 5.768894713848843,
+ "grad_norm": 0.3441782295703888,
+ "learning_rate": 0.0006,
+ "loss": 5.132327079772949,
+ "step": 415
+ },
+ {
+ "epoch": 5.782874617737003,
+ "grad_norm": 0.4150780737400055,
+ "learning_rate": 0.0006,
+ "loss": 5.148543357849121,
+ "step": 416
+ },
+ {
+ "epoch": 5.796854521625164,
+ "grad_norm": 0.48417383432388306,
+ "learning_rate": 0.0006,
+ "loss": 5.104989528656006,
+ "step": 417
+ },
+ {
+ "epoch": 5.810834425513325,
+ "grad_norm": 0.3216031491756439,
+ "learning_rate": 0.0006,
+ "loss": 5.0926127433776855,
+ "step": 418
+ },
+ {
+ "epoch": 5.824814329401486,
+ "grad_norm": 0.2821158468723297,
+ "learning_rate": 0.0006,
+ "loss": 5.112299919128418,
+ "step": 419
+ },
+ {
+ "epoch": 5.838794233289646,
+ "grad_norm": 0.29821011424064636,
+ "learning_rate": 0.0006,
+ "loss": 5.091662406921387,
+ "step": 420
+ },
+ {
+ "epoch": 5.852774137177807,
+ "grad_norm": 0.30570563673973083,
+ "learning_rate": 0.0006,
+ "loss": 5.137539863586426,
+ "step": 421
+ },
+ {
+ "epoch": 5.866754041065968,
+ "grad_norm": 0.4029594957828522,
+ "learning_rate": 0.0006,
+ "loss": 5.112751007080078,
+ "step": 422
+ },
+ {
+ "epoch": 5.8807339449541285,
+ "grad_norm": 0.3878514766693115,
+ "learning_rate": 0.0006,
+ "loss": 5.094973564147949,
+ "step": 423
+ },
+ {
+ "epoch": 5.894713848842289,
+ "grad_norm": 0.31936126947402954,
+ "learning_rate": 0.0006,
+ "loss": 5.081070899963379,
+ "step": 424
+ },
+ {
+ "epoch": 5.90869375273045,
+ "grad_norm": 0.3309082090854645,
+ "learning_rate": 0.0006,
+ "loss": 5.06803560256958,
+ "step": 425
+ },
+ {
+ "epoch": 5.922673656618611,
+ "grad_norm": 0.27830439805984497,
+ "learning_rate": 0.0006,
+ "loss": 5.044766426086426,
+ "step": 426
+ },
+ {
+ "epoch": 5.936653560506771,
+ "grad_norm": 0.3301011919975281,
+ "learning_rate": 0.0006,
+ "loss": 5.093942165374756,
+ "step": 427
+ },
+ {
+ "epoch": 5.950633464394932,
+ "grad_norm": 0.40845948457717896,
+ "learning_rate": 0.0006,
+ "loss": 5.0889458656311035,
+ "step": 428
+ },
+ {
+ "epoch": 5.964613368283093,
+ "grad_norm": 0.4412153959274292,
+ "learning_rate": 0.0006,
+ "loss": 5.064834117889404,
+ "step": 429
+ },
+ {
+ "epoch": 5.978593272171254,
+ "grad_norm": 0.3592590093612671,
+ "learning_rate": 0.0006,
+ "loss": 5.066648006439209,
+ "step": 430
+ },
+ {
+ "epoch": 5.992573176059414,
+ "grad_norm": 0.3952840268611908,
+ "learning_rate": 0.0006,
+ "loss": 5.066549301147461,
+ "step": 431
+ },
+ {
+ "epoch": 6.0,
+ "grad_norm": 0.38878682255744934,
+ "learning_rate": 0.0006,
+ "loss": 5.0354323387146,
+ "step": 432
+ },
+ {
+ "epoch": 6.0,
+ "eval_loss": 5.473907947540283,
+ "eval_runtime": 44.5121,
+ "eval_samples_per_second": 54.861,
+ "eval_steps_per_second": 3.437,
+ "step": 432
+ },
+ {
+ "epoch": 6.013979903888161,
+ "grad_norm": 0.42730140686035156,
+ "learning_rate": 0.0006,
+ "loss": 5.048557281494141,
+ "step": 433
+ },
+ {
+ "epoch": 6.0279598077763215,
+ "grad_norm": 0.32713913917541504,
+ "learning_rate": 0.0006,
+ "loss": 5.041255950927734,
+ "step": 434
+ },
+ {
+ "epoch": 6.041939711664482,
+ "grad_norm": 0.32520365715026855,
+ "learning_rate": 0.0006,
+ "loss": 5.043124198913574,
+ "step": 435
+ },
+ {
+ "epoch": 6.055919615552643,
+ "grad_norm": 0.2941839098930359,
+ "learning_rate": 0.0006,
+ "loss": 5.0407304763793945,
+ "step": 436
+ },
+ {
+ "epoch": 6.069899519440804,
+ "grad_norm": 0.3088819682598114,
+ "learning_rate": 0.0006,
+ "loss": 5.020771026611328,
+ "step": 437
+ },
+ {
+ "epoch": 6.083879423328964,
+ "grad_norm": 0.34334254264831543,
+ "learning_rate": 0.0006,
+ "loss": 5.0260009765625,
+ "step": 438
+ },
+ {
+ "epoch": 6.097859327217125,
+ "grad_norm": 0.33016136288642883,
+ "learning_rate": 0.0006,
+ "loss": 4.994412899017334,
+ "step": 439
+ },
+ {
+ "epoch": 6.111839231105286,
+ "grad_norm": 0.2527366280555725,
+ "learning_rate": 0.0006,
+ "loss": 4.997830390930176,
+ "step": 440
+ },
+ {
+ "epoch": 6.1258191349934465,
+ "grad_norm": 0.24742509424686432,
+ "learning_rate": 0.0006,
+ "loss": 5.017087936401367,
+ "step": 441
+ },
+ {
+ "epoch": 6.139799038881607,
+ "grad_norm": 0.22578303515911102,
+ "learning_rate": 0.0006,
+ "loss": 5.000683784484863,
+ "step": 442
+ },
+ {
+ "epoch": 6.153778942769769,
+ "grad_norm": 0.21213896572589874,
+ "learning_rate": 0.0006,
+ "loss": 4.993280410766602,
+ "step": 443
+ },
+ {
+ "epoch": 6.16775884665793,
+ "grad_norm": 0.22559592127799988,
+ "learning_rate": 0.0006,
+ "loss": 5.005735874176025,
+ "step": 444
+ },
+ {
+ "epoch": 6.18173875054609,
+ "grad_norm": 0.18574322760105133,
+ "learning_rate": 0.0006,
+ "loss": 4.996601104736328,
+ "step": 445
+ },
+ {
+ "epoch": 6.195718654434251,
+ "grad_norm": 0.1793852299451828,
+ "learning_rate": 0.0006,
+ "loss": 4.977394104003906,
+ "step": 446
+ },
+ {
+ "epoch": 6.209698558322412,
+ "grad_norm": 0.1851297914981842,
+ "learning_rate": 0.0006,
+ "loss": 4.983541488647461,
+ "step": 447
+ },
+ {
+ "epoch": 6.2236784622105725,
+ "grad_norm": 0.2045268565416336,
+ "learning_rate": 0.0006,
+ "loss": 4.992830276489258,
+ "step": 448
+ },
+ {
+ "epoch": 6.237658366098733,
+ "grad_norm": 0.21707463264465332,
+ "learning_rate": 0.0006,
+ "loss": 4.998589515686035,
+ "step": 449
+ },
+ {
+ "epoch": 6.251638269986894,
+ "grad_norm": 0.2805860638618469,
+ "learning_rate": 0.0006,
+ "loss": 4.973134517669678,
+ "step": 450
+ },
+ {
+ "epoch": 6.265618173875055,
+ "grad_norm": 0.33102089166641235,
+ "learning_rate": 0.0006,
+ "loss": 4.957348823547363,
+ "step": 451
+ },
+ {
+ "epoch": 6.279598077763215,
+ "grad_norm": 0.3763096034526825,
+ "learning_rate": 0.0006,
+ "loss": 5.0133256912231445,
+ "step": 452
+ },
+ {
+ "epoch": 6.293577981651376,
+ "grad_norm": 0.4676196575164795,
+ "learning_rate": 0.0006,
+ "loss": 4.972289562225342,
+ "step": 453
+ },
+ {
+ "epoch": 6.307557885539537,
+ "grad_norm": 0.6158978343009949,
+ "learning_rate": 0.0006,
+ "loss": 4.989326477050781,
+ "step": 454
+ },
+ {
+ "epoch": 6.321537789427698,
+ "grad_norm": 0.537460446357727,
+ "learning_rate": 0.0006,
+ "loss": 5.0210676193237305,
+ "step": 455
+ },
+ {
+ "epoch": 6.335517693315858,
+ "grad_norm": 0.5342532396316528,
+ "learning_rate": 0.0006,
+ "loss": 4.988524436950684,
+ "step": 456
+ },
+ {
+ "epoch": 6.349497597204019,
+ "grad_norm": 0.5736384987831116,
+ "learning_rate": 0.0006,
+ "loss": 4.977508068084717,
+ "step": 457
+ },
+ {
+ "epoch": 6.36347750109218,
+ "grad_norm": 0.6656201481819153,
+ "learning_rate": 0.0006,
+ "loss": 5.047934055328369,
+ "step": 458
+ },
+ {
+ "epoch": 6.3774574049803405,
+ "grad_norm": 0.6388342380523682,
+ "learning_rate": 0.0006,
+ "loss": 5.017617225646973,
+ "step": 459
+ },
+ {
+ "epoch": 6.391437308868501,
+ "grad_norm": 0.6620904207229614,
+ "learning_rate": 0.0006,
+ "loss": 5.032195091247559,
+ "step": 460
+ },
+ {
+ "epoch": 6.405417212756662,
+ "grad_norm": 0.693274974822998,
+ "learning_rate": 0.0006,
+ "loss": 5.02433967590332,
+ "step": 461
+ },
+ {
+ "epoch": 6.419397116644823,
+ "grad_norm": 0.6888924241065979,
+ "learning_rate": 0.0006,
+ "loss": 5.010735511779785,
+ "step": 462
+ },
+ {
+ "epoch": 6.433377020532983,
+ "grad_norm": 0.7181721925735474,
+ "learning_rate": 0.0006,
+ "loss": 5.049690246582031,
+ "step": 463
+ },
+ {
+ "epoch": 6.447356924421145,
+ "grad_norm": 0.7225117087364197,
+ "learning_rate": 0.0006,
+ "loss": 5.031939506530762,
+ "step": 464
+ },
+ {
+ "epoch": 6.461336828309306,
+ "grad_norm": 0.5268304347991943,
+ "learning_rate": 0.0006,
+ "loss": 5.01638126373291,
+ "step": 465
+ },
+ {
+ "epoch": 6.4753167321974665,
+ "grad_norm": 0.38218435645103455,
+ "learning_rate": 0.0006,
+ "loss": 4.997034072875977,
+ "step": 466
+ },
+ {
+ "epoch": 6.489296636085627,
+ "grad_norm": 0.3576396703720093,
+ "learning_rate": 0.0006,
+ "loss": 5.006804943084717,
+ "step": 467
+ },
+ {
+ "epoch": 6.503276539973788,
+ "grad_norm": 0.3305981755256653,
+ "learning_rate": 0.0006,
+ "loss": 4.994671821594238,
+ "step": 468
+ },
+ {
+ "epoch": 6.517256443861949,
+ "grad_norm": 0.3254900574684143,
+ "learning_rate": 0.0006,
+ "loss": 4.9747490882873535,
+ "step": 469
+ },
+ {
+ "epoch": 6.531236347750109,
+ "grad_norm": 0.2655033469200134,
+ "learning_rate": 0.0006,
+ "loss": 5.002863883972168,
+ "step": 470
+ },
+ {
+ "epoch": 6.54521625163827,
+ "grad_norm": 0.2620532810688019,
+ "learning_rate": 0.0006,
+ "loss": 4.9813337326049805,
+ "step": 471
+ },
+ {
+ "epoch": 6.559196155526431,
+ "grad_norm": 0.22128869593143463,
+ "learning_rate": 0.0006,
+ "loss": 4.978368759155273,
+ "step": 472
+ },
+ {
+ "epoch": 6.573176059414592,
+ "grad_norm": 0.22638699412345886,
+ "learning_rate": 0.0006,
+ "loss": 4.944509029388428,
+ "step": 473
+ },
+ {
+ "epoch": 6.587155963302752,
+ "grad_norm": 0.20720207691192627,
+ "learning_rate": 0.0006,
+ "loss": 4.98404598236084,
+ "step": 474
+ },
+ {
+ "epoch": 6.601135867190913,
+ "grad_norm": 0.21577289700508118,
+ "learning_rate": 0.0006,
+ "loss": 4.958878040313721,
+ "step": 475
+ },
+ {
+ "epoch": 6.615115771079074,
+ "grad_norm": 0.22453972697257996,
+ "learning_rate": 0.0006,
+ "loss": 4.935467720031738,
+ "step": 476
+ },
+ {
+ "epoch": 6.6290956749672345,
+ "grad_norm": 0.20757712423801422,
+ "learning_rate": 0.0006,
+ "loss": 4.943334579467773,
+ "step": 477
+ },
+ {
+ "epoch": 6.643075578855395,
+ "grad_norm": 0.22808043658733368,
+ "learning_rate": 0.0006,
+ "loss": 4.936544418334961,
+ "step": 478
+ },
+ {
+ "epoch": 6.657055482743556,
+ "grad_norm": 0.2193756401538849,
+ "learning_rate": 0.0006,
+ "loss": 4.938162326812744,
+ "step": 479
+ },
+ {
+ "epoch": 6.671035386631717,
+ "grad_norm": 0.19677500426769257,
+ "learning_rate": 0.0006,
+ "loss": 4.9026713371276855,
+ "step": 480
+ },
+ {
+ "epoch": 6.685015290519877,
+ "grad_norm": 0.17271658778190613,
+ "learning_rate": 0.0006,
+ "loss": 4.912519454956055,
+ "step": 481
+ },
+ {
+ "epoch": 6.698995194408038,
+ "grad_norm": 0.17551499605178833,
+ "learning_rate": 0.0006,
+ "loss": 4.929941177368164,
+ "step": 482
+ },
+ {
+ "epoch": 6.712975098296199,
+ "grad_norm": 0.1582687348127365,
+ "learning_rate": 0.0006,
+ "loss": 4.908967971801758,
+ "step": 483
+ },
+ {
+ "epoch": 6.72695500218436,
+ "grad_norm": 0.1593410074710846,
+ "learning_rate": 0.0006,
+ "loss": 4.901554107666016,
+ "step": 484
+ },
+ {
+ "epoch": 6.740934906072521,
+ "grad_norm": 0.16746895015239716,
+ "learning_rate": 0.0006,
+ "loss": 4.917915344238281,
+ "step": 485
+ },
+ {
+ "epoch": 6.754914809960681,
+ "grad_norm": 0.17066062986850739,
+ "learning_rate": 0.0006,
+ "loss": 4.912853240966797,
+ "step": 486
+ },
+ {
+ "epoch": 6.768894713848843,
+ "grad_norm": 0.16727769374847412,
+ "learning_rate": 0.0006,
+ "loss": 4.895434856414795,
+ "step": 487
+ },
+ {
+ "epoch": 6.782874617737003,
+ "grad_norm": 0.1784558743238449,
+ "learning_rate": 0.0006,
+ "loss": 4.8805341720581055,
+ "step": 488
+ },
+ {
+ "epoch": 6.796854521625164,
+ "grad_norm": 0.176686093211174,
+ "learning_rate": 0.0006,
+ "loss": 4.855296611785889,
+ "step": 489
+ },
+ {
+ "epoch": 6.810834425513325,
+ "grad_norm": 0.21577849984169006,
+ "learning_rate": 0.0006,
+ "loss": 4.885506629943848,
+ "step": 490
+ },
+ {
+ "epoch": 6.824814329401486,
+ "grad_norm": 0.27615776658058167,
+ "learning_rate": 0.0006,
+ "loss": 4.913756847381592,
+ "step": 491
+ },
+ {
+ "epoch": 6.838794233289646,
+ "grad_norm": 0.3653675615787506,
+ "learning_rate": 0.0006,
+ "loss": 4.880918979644775,
+ "step": 492
+ },
+ {
+ "epoch": 6.852774137177807,
+ "grad_norm": 0.41473883390426636,
+ "learning_rate": 0.0006,
+ "loss": 4.894164562225342,
+ "step": 493
+ },
+ {
+ "epoch": 6.866754041065968,
+ "grad_norm": 0.45850715041160583,
+ "learning_rate": 0.0006,
+ "loss": 4.907922744750977,
+ "step": 494
+ },
+ {
+ "epoch": 6.8807339449541285,
+ "grad_norm": 0.4675290882587433,
+ "learning_rate": 0.0006,
+ "loss": 4.883112907409668,
+ "step": 495
+ },
+ {
+ "epoch": 6.894713848842289,
+ "grad_norm": 0.45795994997024536,
+ "learning_rate": 0.0006,
+ "loss": 4.897843360900879,
+ "step": 496
+ },
+ {
+ "epoch": 6.90869375273045,
+ "grad_norm": 0.46130508184432983,
+ "learning_rate": 0.0006,
+ "loss": 4.890612602233887,
+ "step": 497
+ },
+ {
+ "epoch": 6.922673656618611,
+ "grad_norm": 0.44783803820610046,
+ "learning_rate": 0.0006,
+ "loss": 4.880192756652832,
+ "step": 498
+ },
+ {
+ "epoch": 6.936653560506771,
+ "grad_norm": 0.35361284017562866,
+ "learning_rate": 0.0006,
+ "loss": 4.840778350830078,
+ "step": 499
+ },
+ {
+ "epoch": 6.950633464394932,
+ "grad_norm": 0.34027689695358276,
+ "learning_rate": 0.0006,
+ "loss": 4.871222496032715,
+ "step": 500
+ },
+ {
+ "epoch": 6.964613368283093,
+ "grad_norm": 0.30228909850120544,
+ "learning_rate": 0.0006,
+ "loss": 4.868077278137207,
+ "step": 501
+ },
+ {
+ "epoch": 6.978593272171254,
+ "grad_norm": 0.27706998586654663,
+ "learning_rate": 0.0006,
+ "loss": 4.895936012268066,
+ "step": 502
+ },
+ {
+ "epoch": 6.992573176059414,
+ "grad_norm": 0.3516870439052582,
+ "learning_rate": 0.0006,
+ "loss": 4.824636459350586,
+ "step": 503
+ },
+ {
+ "epoch": 7.0,
+ "grad_norm": 0.36831387877464294,
+ "learning_rate": 0.0006,
+ "loss": 4.874397277832031,
+ "step": 504
+ },
+ {
+ "epoch": 7.0,
+ "eval_loss": 5.176281452178955,
+ "eval_runtime": 44.2386,
+ "eval_samples_per_second": 55.201,
+ "eval_steps_per_second": 3.459,
+ "step": 504
+ },
+ {
+ "epoch": 7.013979903888161,
+ "grad_norm": 0.4265240430831909,
+ "learning_rate": 0.0006,
+ "loss": 4.814333438873291,
+ "step": 505
+ },
+ {
+ "epoch": 7.0279598077763215,
+ "grad_norm": 0.5126975774765015,
+ "learning_rate": 0.0006,
+ "loss": 4.852343559265137,
+ "step": 506
+ },
+ {
+ "epoch": 7.041939711664482,
+ "grad_norm": 0.43080806732177734,
+ "learning_rate": 0.0006,
+ "loss": 4.843439102172852,
+ "step": 507
+ },
+ {
+ "epoch": 7.055919615552643,
+ "grad_norm": 0.43170198798179626,
+ "learning_rate": 0.0006,
+ "loss": 4.845984935760498,
+ "step": 508
+ },
+ {
+ "epoch": 7.069899519440804,
+ "grad_norm": 0.5640552043914795,
+ "learning_rate": 0.0006,
+ "loss": 4.840991973876953,
+ "step": 509
+ },
+ {
+ "epoch": 7.083879423328964,
+ "grad_norm": 0.540381133556366,
+ "learning_rate": 0.0006,
+ "loss": 4.801316738128662,
+ "step": 510
+ },
+ {
+ "epoch": 7.097859327217125,
+ "grad_norm": 0.5412097573280334,
+ "learning_rate": 0.0006,
+ "loss": 4.886598587036133,
+ "step": 511
+ },
+ {
+ "epoch": 7.111839231105286,
+ "grad_norm": 0.630648136138916,
+ "learning_rate": 0.0006,
+ "loss": 4.849774360656738,
+ "step": 512
+ },
+ {
+ "epoch": 7.1258191349934465,
+ "grad_norm": 0.569952130317688,
+ "learning_rate": 0.0006,
+ "loss": 4.870607376098633,
+ "step": 513
+ },
+ {
+ "epoch": 7.139799038881607,
+ "grad_norm": 0.42051541805267334,
+ "learning_rate": 0.0006,
+ "loss": 4.83833122253418,
+ "step": 514
+ },
+ {
+ "epoch": 7.153778942769769,
+ "grad_norm": 0.3930990397930145,
+ "learning_rate": 0.0006,
+ "loss": 4.853984355926514,
+ "step": 515
+ },
+ {
+ "epoch": 7.16775884665793,
+ "grad_norm": 0.512886106967926,
+ "learning_rate": 0.0006,
+ "loss": 4.815458297729492,
+ "step": 516
+ },
+ {
+ "epoch": 7.18173875054609,
+ "grad_norm": 0.42580172419548035,
+ "learning_rate": 0.0006,
+ "loss": 4.825312614440918,
+ "step": 517
+ },
+ {
+ "epoch": 7.195718654434251,
+ "grad_norm": 0.31628182530403137,
+ "learning_rate": 0.0006,
+ "loss": 4.806377410888672,
+ "step": 518
+ },
+ {
+ "epoch": 7.209698558322412,
+ "grad_norm": 0.3109956681728363,
+ "learning_rate": 0.0006,
+ "loss": 4.819339752197266,
+ "step": 519
+ },
+ {
+ "epoch": 7.2236784622105725,
+ "grad_norm": 0.2740071415901184,
+ "learning_rate": 0.0006,
+ "loss": 4.81319522857666,
+ "step": 520
+ },
+ {
+ "epoch": 7.237658366098733,
+ "grad_norm": 0.26441165804862976,
+ "learning_rate": 0.0006,
+ "loss": 4.8107380867004395,
+ "step": 521
+ },
+ {
+ "epoch": 7.251638269986894,
+ "grad_norm": 0.2496110051870346,
+ "learning_rate": 0.0006,
+ "loss": 4.785193920135498,
+ "step": 522
+ },
+ {
+ "epoch": 7.265618173875055,
+ "grad_norm": 0.2565560042858124,
+ "learning_rate": 0.0006,
+ "loss": 4.802750587463379,
+ "step": 523
+ },
+ {
+ "epoch": 7.279598077763215,
+ "grad_norm": 0.2126980572938919,
+ "learning_rate": 0.0006,
+ "loss": 4.763580322265625,
+ "step": 524
+ },
+ {
+ "epoch": 7.293577981651376,
+ "grad_norm": 0.2169921100139618,
+ "learning_rate": 0.0006,
+ "loss": 4.756124973297119,
+ "step": 525
+ },
+ {
+ "epoch": 7.307557885539537,
+ "grad_norm": 0.2372167706489563,
+ "learning_rate": 0.0006,
+ "loss": 4.786888599395752,
+ "step": 526
+ },
+ {
+ "epoch": 7.321537789427698,
+ "grad_norm": 0.2124386429786682,
+ "learning_rate": 0.0006,
+ "loss": 4.777996063232422,
+ "step": 527
+ },
+ {
+ "epoch": 7.335517693315858,
+ "grad_norm": 0.18585442006587982,
+ "learning_rate": 0.0006,
+ "loss": 4.770537853240967,
+ "step": 528
+ },
+ {
+ "epoch": 7.349497597204019,
+ "grad_norm": 0.20515340566635132,
+ "learning_rate": 0.0006,
+ "loss": 4.769230842590332,
+ "step": 529
+ },
+ {
+ "epoch": 7.36347750109218,
+ "grad_norm": 0.19906704127788544,
+ "learning_rate": 0.0006,
+ "loss": 4.752581596374512,
+ "step": 530
+ },
+ {
+ "epoch": 7.3774574049803405,
+ "grad_norm": 0.2030428946018219,
+ "learning_rate": 0.0006,
+ "loss": 4.7353715896606445,
+ "step": 531
+ },
+ {
+ "epoch": 7.391437308868501,
+ "grad_norm": 0.17820630967617035,
+ "learning_rate": 0.0006,
+ "loss": 4.742705345153809,
+ "step": 532
+ },
+ {
+ "epoch": 7.405417212756662,
+ "grad_norm": 0.17642682790756226,
+ "learning_rate": 0.0006,
+ "loss": 4.752669334411621,
+ "step": 533
+ },
+ {
+ "epoch": 7.419397116644823,
+ "grad_norm": 0.18088409304618835,
+ "learning_rate": 0.0006,
+ "loss": 4.734611511230469,
+ "step": 534
+ },
+ {
+ "epoch": 7.433377020532983,
+ "grad_norm": 0.20897020399570465,
+ "learning_rate": 0.0006,
+ "loss": 4.756442070007324,
+ "step": 535
+ },
+ {
+ "epoch": 7.447356924421145,
+ "grad_norm": 0.23166777193546295,
+ "learning_rate": 0.0006,
+ "loss": 4.712922096252441,
+ "step": 536
+ },
+ {
+ "epoch": 7.461336828309306,
+ "grad_norm": 0.2205347716808319,
+ "learning_rate": 0.0006,
+ "loss": 4.75001335144043,
+ "step": 537
+ },
+ {
+ "epoch": 7.4753167321974665,
+ "grad_norm": 0.23868022859096527,
+ "learning_rate": 0.0006,
+ "loss": 4.726134300231934,
+ "step": 538
+ },
+ {
+ "epoch": 7.489296636085627,
+ "grad_norm": 0.2861441373825073,
+ "learning_rate": 0.0006,
+ "loss": 4.754112243652344,
+ "step": 539
+ },
+ {
+ "epoch": 7.503276539973788,
+ "grad_norm": 0.28980305790901184,
+ "learning_rate": 0.0006,
+ "loss": 4.716021537780762,
+ "step": 540
+ },
+ {
+ "epoch": 7.517256443861949,
+ "grad_norm": 0.2784835696220398,
+ "learning_rate": 0.0006,
+ "loss": 4.713929176330566,
+ "step": 541
+ },
+ {
+ "epoch": 7.531236347750109,
+ "grad_norm": 0.2962653934955597,
+ "learning_rate": 0.0006,
+ "loss": 4.711845397949219,
+ "step": 542
+ },
+ {
+ "epoch": 7.54521625163827,
+ "grad_norm": 0.3333161175251007,
+ "learning_rate": 0.0006,
+ "loss": 4.709834575653076,
+ "step": 543
+ },
+ {
+ "epoch": 7.559196155526431,
+ "grad_norm": 0.35304850339889526,
+ "learning_rate": 0.0006,
+ "loss": 4.732914924621582,
+ "step": 544
+ },
+ {
+ "epoch": 7.573176059414592,
+ "grad_norm": 0.4165869355201721,
+ "learning_rate": 0.0006,
+ "loss": 4.716190338134766,
+ "step": 545
+ },
+ {
+ "epoch": 7.587155963302752,
+ "grad_norm": 0.4878059923648834,
+ "learning_rate": 0.0006,
+ "loss": 4.723773002624512,
+ "step": 546
+ },
+ {
+ "epoch": 7.601135867190913,
+ "grad_norm": 0.36643707752227783,
+ "learning_rate": 0.0006,
+ "loss": 4.721458911895752,
+ "step": 547
+ },
+ {
+ "epoch": 7.615115771079074,
+ "grad_norm": 0.4046908915042877,
+ "learning_rate": 0.0006,
+ "loss": 4.715397834777832,
+ "step": 548
+ },
+ {
+ "epoch": 7.6290956749672345,
+ "grad_norm": 0.44426342844963074,
+ "learning_rate": 0.0006,
+ "loss": 4.737357139587402,
+ "step": 549
+ },
+ {
+ "epoch": 7.643075578855395,
+ "grad_norm": 0.4181079864501953,
+ "learning_rate": 0.0006,
+ "loss": 4.731383800506592,
+ "step": 550
+ },
+ {
+ "epoch": 7.657055482743556,
+ "grad_norm": 0.3486088216304779,
+ "learning_rate": 0.0006,
+ "loss": 4.728029727935791,
+ "step": 551
+ },
+ {
+ "epoch": 7.671035386631717,
+ "grad_norm": 0.37150970101356506,
+ "learning_rate": 0.0006,
+ "loss": 4.7083210945129395,
+ "step": 552
+ },
+ {
+ "epoch": 7.685015290519877,
+ "grad_norm": 0.43324410915374756,
+ "learning_rate": 0.0006,
+ "loss": 4.728720664978027,
+ "step": 553
+ },
+ {
+ "epoch": 7.698995194408038,
+ "grad_norm": 0.5026620626449585,
+ "learning_rate": 0.0006,
+ "loss": 4.698156356811523,
+ "step": 554
+ },
+ {
+ "epoch": 7.712975098296199,
+ "grad_norm": 0.4873499274253845,
+ "learning_rate": 0.0006,
+ "loss": 4.7169952392578125,
+ "step": 555
+ },
+ {
+ "epoch": 7.72695500218436,
+ "grad_norm": 0.4285493791103363,
+ "learning_rate": 0.0006,
+ "loss": 4.6877241134643555,
+ "step": 556
+ },
+ {
+ "epoch": 7.740934906072521,
+ "grad_norm": 0.5179854035377502,
+ "learning_rate": 0.0006,
+ "loss": 4.704267501831055,
+ "step": 557
+ },
+ {
+ "epoch": 7.754914809960681,
+ "grad_norm": 0.4642147421836853,
+ "learning_rate": 0.0006,
+ "loss": 4.695004463195801,
+ "step": 558
+ },
+ {
+ "epoch": 7.768894713848843,
+ "grad_norm": 0.47149503231048584,
+ "learning_rate": 0.0006,
+ "loss": 4.694338798522949,
+ "step": 559
+ },
+ {
+ "epoch": 7.782874617737003,
+ "grad_norm": 0.5422149300575256,
+ "learning_rate": 0.0006,
+ "loss": 4.749478340148926,
+ "step": 560
+ },
+ {
+ "epoch": 7.796854521625164,
+ "grad_norm": 0.4360728859901428,
+ "learning_rate": 0.0006,
+ "loss": 4.685191631317139,
+ "step": 561
+ },
+ {
+ "epoch": 7.810834425513325,
+ "grad_norm": 0.4243801534175873,
+ "learning_rate": 0.0006,
+ "loss": 4.69228458404541,
+ "step": 562
+ },
+ {
+ "epoch": 7.824814329401486,
+ "grad_norm": 0.40380290150642395,
+ "learning_rate": 0.0006,
+ "loss": 4.690923690795898,
+ "step": 563
+ },
+ {
+ "epoch": 7.838794233289646,
+ "grad_norm": 0.4352976381778717,
+ "learning_rate": 0.0006,
+ "loss": 4.720489978790283,
+ "step": 564
+ },
+ {
+ "epoch": 7.852774137177807,
+ "grad_norm": 0.44634920358657837,
+ "learning_rate": 0.0006,
+ "loss": 4.683789253234863,
+ "step": 565
+ },
+ {
+ "epoch": 7.866754041065968,
+ "grad_norm": 0.3818186819553375,
+ "learning_rate": 0.0006,
+ "loss": 4.696887016296387,
+ "step": 566
+ },
+ {
+ "epoch": 7.8807339449541285,
+ "grad_norm": 0.35270464420318604,
+ "learning_rate": 0.0006,
+ "loss": 4.715676307678223,
+ "step": 567
+ },
+ {
+ "epoch": 7.894713848842289,
+ "grad_norm": 0.249756321310997,
+ "learning_rate": 0.0006,
+ "loss": 4.672721862792969,
+ "step": 568
+ },
+ {
+ "epoch": 7.90869375273045,
+ "grad_norm": 0.25097888708114624,
+ "learning_rate": 0.0006,
+ "loss": 4.663518905639648,
+ "step": 569
+ },
+ {
+ "epoch": 7.922673656618611,
+ "grad_norm": 0.26563209295272827,
+ "learning_rate": 0.0006,
+ "loss": 4.675405025482178,
+ "step": 570
+ },
+ {
+ "epoch": 7.936653560506771,
+ "grad_norm": 0.26451292634010315,
+ "learning_rate": 0.0006,
+ "loss": 4.651235103607178,
+ "step": 571
+ },
+ {
+ "epoch": 7.950633464394932,
+ "grad_norm": 0.24185842275619507,
+ "learning_rate": 0.0006,
+ "loss": 4.671639919281006,
+ "step": 572
+ },
+ {
+ "epoch": 7.964613368283093,
+ "grad_norm": 0.21506108343601227,
+ "learning_rate": 0.0006,
+ "loss": 4.665352821350098,
+ "step": 573
+ },
+ {
+ "epoch": 7.978593272171254,
+ "grad_norm": 0.24365705251693726,
+ "learning_rate": 0.0006,
+ "loss": 4.663162708282471,
+ "step": 574
+ },
+ {
+ "epoch": 7.992573176059414,
+ "grad_norm": 0.24251042306423187,
+ "learning_rate": 0.0006,
+ "loss": 4.666633605957031,
+ "step": 575
+ },
+ {
+ "epoch": 8.0,
+ "grad_norm": 0.24187657237052917,
+ "learning_rate": 0.0006,
+ "loss": 4.63957405090332,
+ "step": 576
+ },
+ {
+ "epoch": 8.0,
+ "eval_loss": 4.923156261444092,
+ "eval_runtime": 44.1587,
+ "eval_samples_per_second": 55.301,
+ "eval_steps_per_second": 3.465,
+ "step": 576
+ },
+ {
+ "epoch": 8.013979903888162,
+ "grad_norm": 0.21323645114898682,
+ "learning_rate": 0.0006,
+ "loss": 4.636347770690918,
+ "step": 577
+ },
+ {
+ "epoch": 8.027959807776321,
+ "grad_norm": 0.2325759083032608,
+ "learning_rate": 0.0006,
+ "loss": 4.60684871673584,
+ "step": 578
+ },
+ {
+ "epoch": 8.041939711664483,
+ "grad_norm": 0.26741257309913635,
+ "learning_rate": 0.0006,
+ "loss": 4.647780418395996,
+ "step": 579
+ },
+ {
+ "epoch": 8.055919615552643,
+ "grad_norm": 0.285720556974411,
+ "learning_rate": 0.0006,
+ "loss": 4.629637718200684,
+ "step": 580
+ },
+ {
+ "epoch": 8.069899519440805,
+ "grad_norm": 0.2453618347644806,
+ "learning_rate": 0.0006,
+ "loss": 4.62420654296875,
+ "step": 581
+ },
+ {
+ "epoch": 8.083879423328964,
+ "grad_norm": 0.19662636518478394,
+ "learning_rate": 0.0006,
+ "loss": 4.593767166137695,
+ "step": 582
+ },
+ {
+ "epoch": 8.097859327217126,
+ "grad_norm": 0.22731931507587433,
+ "learning_rate": 0.0006,
+ "loss": 4.627089023590088,
+ "step": 583
+ },
+ {
+ "epoch": 8.111839231105286,
+ "grad_norm": 0.24452590942382812,
+ "learning_rate": 0.0006,
+ "loss": 4.613677024841309,
+ "step": 584
+ },
+ {
+ "epoch": 8.125819134993447,
+ "grad_norm": 0.2952791154384613,
+ "learning_rate": 0.0006,
+ "loss": 4.604985237121582,
+ "step": 585
+ },
+ {
+ "epoch": 8.139799038881607,
+ "grad_norm": 0.3184696137905121,
+ "learning_rate": 0.0006,
+ "loss": 4.589205741882324,
+ "step": 586
+ },
+ {
+ "epoch": 8.153778942769769,
+ "grad_norm": 0.2948093116283417,
+ "learning_rate": 0.0006,
+ "loss": 4.605442047119141,
+ "step": 587
+ },
+ {
+ "epoch": 8.167758846657929,
+ "grad_norm": 0.2450508326292038,
+ "learning_rate": 0.0006,
+ "loss": 4.615349292755127,
+ "step": 588
+ },
+ {
+ "epoch": 8.18173875054609,
+ "grad_norm": 0.25664836168289185,
+ "learning_rate": 0.0006,
+ "loss": 4.592251777648926,
+ "step": 589
+ },
+ {
+ "epoch": 8.19571865443425,
+ "grad_norm": 0.24479512870311737,
+ "learning_rate": 0.0006,
+ "loss": 4.6145920753479,
+ "step": 590
+ },
+ {
+ "epoch": 8.209698558322412,
+ "grad_norm": 0.24395205080509186,
+ "learning_rate": 0.0006,
+ "loss": 4.600954055786133,
+ "step": 591
+ },
+ {
+ "epoch": 8.223678462210572,
+ "grad_norm": 0.21804189682006836,
+ "learning_rate": 0.0006,
+ "loss": 4.607785224914551,
+ "step": 592
+ },
+ {
+ "epoch": 8.237658366098733,
+ "grad_norm": 0.20951785147190094,
+ "learning_rate": 0.0006,
+ "loss": 4.58140754699707,
+ "step": 593
+ },
+ {
+ "epoch": 8.251638269986893,
+ "grad_norm": 0.20415149629116058,
+ "learning_rate": 0.0006,
+ "loss": 4.593405723571777,
+ "step": 594
+ },
+ {
+ "epoch": 8.265618173875055,
+ "grad_norm": 0.19210249185562134,
+ "learning_rate": 0.0006,
+ "loss": 4.603294372558594,
+ "step": 595
+ },
+ {
+ "epoch": 8.279598077763215,
+ "grad_norm": 0.20719751715660095,
+ "learning_rate": 0.0006,
+ "loss": 4.55255651473999,
+ "step": 596
+ },
+ {
+ "epoch": 8.293577981651376,
+ "grad_norm": 0.20101022720336914,
+ "learning_rate": 0.0006,
+ "loss": 4.5928192138671875,
+ "step": 597
+ },
+ {
+ "epoch": 8.307557885539538,
+ "grad_norm": 0.19254222512245178,
+ "learning_rate": 0.0006,
+ "loss": 4.590397834777832,
+ "step": 598
+ },
+ {
+ "epoch": 8.321537789427698,
+ "grad_norm": 0.23234105110168457,
+ "learning_rate": 0.0006,
+ "loss": 4.5987677574157715,
+ "step": 599
+ },
+ {
+ "epoch": 8.33551769331586,
+ "grad_norm": 0.2537451982498169,
+ "learning_rate": 0.0006,
+ "loss": 4.543115615844727,
+ "step": 600
+ },
+ {
+ "epoch": 8.349497597204019,
+ "grad_norm": 0.29171040654182434,
+ "learning_rate": 0.0006,
+ "loss": 4.597387313842773,
+ "step": 601
+ },
+ {
+ "epoch": 8.36347750109218,
+ "grad_norm": 0.3035930097103119,
+ "learning_rate": 0.0006,
+ "loss": 4.566247463226318,
+ "step": 602
+ },
+ {
+ "epoch": 8.37745740498034,
+ "grad_norm": 0.2826756238937378,
+ "learning_rate": 0.0006,
+ "loss": 4.57047176361084,
+ "step": 603
+ },
+ {
+ "epoch": 8.391437308868502,
+ "grad_norm": 0.2959657609462738,
+ "learning_rate": 0.0006,
+ "loss": 4.582820892333984,
+ "step": 604
+ },
+ {
+ "epoch": 8.405417212756662,
+ "grad_norm": 0.3180356025695801,
+ "learning_rate": 0.0006,
+ "loss": 4.5573272705078125,
+ "step": 605
+ },
+ {
+ "epoch": 8.419397116644824,
+ "grad_norm": 0.3617221713066101,
+ "learning_rate": 0.0006,
+ "loss": 4.593079090118408,
+ "step": 606
+ },
+ {
+ "epoch": 8.433377020532983,
+ "grad_norm": 0.35198062658309937,
+ "learning_rate": 0.0006,
+ "loss": 4.615298271179199,
+ "step": 607
+ },
+ {
+ "epoch": 8.447356924421145,
+ "grad_norm": 0.3944903314113617,
+ "learning_rate": 0.0006,
+ "loss": 4.561809539794922,
+ "step": 608
+ },
+ {
+ "epoch": 8.461336828309305,
+ "grad_norm": 0.4525868594646454,
+ "learning_rate": 0.0006,
+ "loss": 4.613105773925781,
+ "step": 609
+ },
+ {
+ "epoch": 8.475316732197467,
+ "grad_norm": 0.4915139079093933,
+ "learning_rate": 0.0006,
+ "loss": 4.566202163696289,
+ "step": 610
+ },
+ {
+ "epoch": 8.489296636085626,
+ "grad_norm": 0.49231988191604614,
+ "learning_rate": 0.0006,
+ "loss": 4.556222915649414,
+ "step": 611
+ },
+ {
+ "epoch": 8.503276539973788,
+ "grad_norm": 0.43036946654319763,
+ "learning_rate": 0.0006,
+ "loss": 4.55517578125,
+ "step": 612
+ },
+ {
+ "epoch": 8.517256443861948,
+ "grad_norm": 0.42405328154563904,
+ "learning_rate": 0.0006,
+ "loss": 4.574039936065674,
+ "step": 613
+ },
+ {
+ "epoch": 8.53123634775011,
+ "grad_norm": 0.3955961763858795,
+ "learning_rate": 0.0006,
+ "loss": 4.6082611083984375,
+ "step": 614
+ },
+ {
+ "epoch": 8.54521625163827,
+ "grad_norm": 0.4377101957798004,
+ "learning_rate": 0.0006,
+ "loss": 4.555740833282471,
+ "step": 615
+ },
+ {
+ "epoch": 8.55919615552643,
+ "grad_norm": 0.4601984918117523,
+ "learning_rate": 0.0006,
+ "loss": 4.553995132446289,
+ "step": 616
+ },
+ {
+ "epoch": 8.57317605941459,
+ "grad_norm": 0.42025700211524963,
+ "learning_rate": 0.0006,
+ "loss": 4.567340850830078,
+ "step": 617
+ },
+ {
+ "epoch": 8.587155963302752,
+ "grad_norm": 0.35569432377815247,
+ "learning_rate": 0.0006,
+ "loss": 4.570140361785889,
+ "step": 618
+ },
+ {
+ "epoch": 8.601135867190912,
+ "grad_norm": 0.37940406799316406,
+ "learning_rate": 0.0006,
+ "loss": 4.581291198730469,
+ "step": 619
+ },
+ {
+ "epoch": 8.615115771079074,
+ "grad_norm": 0.3658490777015686,
+ "learning_rate": 0.0006,
+ "loss": 4.55476188659668,
+ "step": 620
+ },
+ {
+ "epoch": 8.629095674967235,
+ "grad_norm": 0.2908247113227844,
+ "learning_rate": 0.0006,
+ "loss": 4.564087867736816,
+ "step": 621
+ },
+ {
+ "epoch": 8.643075578855395,
+ "grad_norm": 0.29961925745010376,
+ "learning_rate": 0.0006,
+ "loss": 4.556543350219727,
+ "step": 622
+ },
+ {
+ "epoch": 8.657055482743557,
+ "grad_norm": 0.3144846558570862,
+ "learning_rate": 0.0006,
+ "loss": 4.553670883178711,
+ "step": 623
+ },
+ {
+ "epoch": 8.671035386631717,
+ "grad_norm": 0.2845900356769562,
+ "learning_rate": 0.0006,
+ "loss": 4.567296981811523,
+ "step": 624
+ },
+ {
+ "epoch": 8.685015290519878,
+ "grad_norm": 0.253591388463974,
+ "learning_rate": 0.0006,
+ "loss": 4.554507255554199,
+ "step": 625
+ },
+ {
+ "epoch": 8.698995194408038,
+ "grad_norm": 0.2563088536262512,
+ "learning_rate": 0.0006,
+ "loss": 4.542218208312988,
+ "step": 626
+ },
+ {
+ "epoch": 8.7129750982962,
+ "grad_norm": 0.26058217883110046,
+ "learning_rate": 0.0006,
+ "loss": 4.535512447357178,
+ "step": 627
+ },
+ {
+ "epoch": 8.72695500218436,
+ "grad_norm": 0.20749829709529877,
+ "learning_rate": 0.0006,
+ "loss": 4.516959190368652,
+ "step": 628
+ },
+ {
+ "epoch": 8.740934906072521,
+ "grad_norm": 0.2034810334444046,
+ "learning_rate": 0.0006,
+ "loss": 4.55794095993042,
+ "step": 629
+ },
+ {
+ "epoch": 8.754914809960681,
+ "grad_norm": 0.18418121337890625,
+ "learning_rate": 0.0006,
+ "loss": 4.5421247482299805,
+ "step": 630
+ },
+ {
+ "epoch": 8.768894713848843,
+ "grad_norm": 0.20551933348178864,
+ "learning_rate": 0.0006,
+ "loss": 4.50805139541626,
+ "step": 631
+ },
+ {
+ "epoch": 8.782874617737003,
+ "grad_norm": 0.21615999937057495,
+ "learning_rate": 0.0006,
+ "loss": 4.520708084106445,
+ "step": 632
+ },
+ {
+ "epoch": 8.796854521625164,
+ "grad_norm": 0.24864810705184937,
+ "learning_rate": 0.0006,
+ "loss": 4.509330749511719,
+ "step": 633
+ },
+ {
+ "epoch": 8.810834425513324,
+ "grad_norm": 0.2573665380477905,
+ "learning_rate": 0.0006,
+ "loss": 4.531505584716797,
+ "step": 634
+ },
+ {
+ "epoch": 8.824814329401486,
+ "grad_norm": 0.22452878952026367,
+ "learning_rate": 0.0006,
+ "loss": 4.529216289520264,
+ "step": 635
+ },
+ {
+ "epoch": 8.838794233289645,
+ "grad_norm": 0.19727355241775513,
+ "learning_rate": 0.0006,
+ "loss": 4.519906520843506,
+ "step": 636
+ },
+ {
+ "epoch": 8.852774137177807,
+ "grad_norm": 0.19937913119792938,
+ "learning_rate": 0.0006,
+ "loss": 4.536892414093018,
+ "step": 637
+ },
+ {
+ "epoch": 8.866754041065967,
+ "grad_norm": 0.2070389986038208,
+ "learning_rate": 0.0006,
+ "loss": 4.51191520690918,
+ "step": 638
+ },
+ {
+ "epoch": 8.880733944954128,
+ "grad_norm": 0.2293873429298401,
+ "learning_rate": 0.0006,
+ "loss": 4.505377769470215,
+ "step": 639
+ },
+ {
+ "epoch": 8.89471384884229,
+ "grad_norm": 0.21285250782966614,
+ "learning_rate": 0.0006,
+ "loss": 4.5138959884643555,
+ "step": 640
+ },
+ {
+ "epoch": 8.90869375273045,
+ "grad_norm": 0.19487562775611877,
+ "learning_rate": 0.0006,
+ "loss": 4.506108283996582,
+ "step": 641
+ },
+ {
+ "epoch": 8.922673656618612,
+ "grad_norm": 0.21986965835094452,
+ "learning_rate": 0.0006,
+ "loss": 4.506397247314453,
+ "step": 642
+ },
+ {
+ "epoch": 8.936653560506771,
+ "grad_norm": 0.20763885974884033,
+ "learning_rate": 0.0006,
+ "loss": 4.508007049560547,
+ "step": 643
+ },
+ {
+ "epoch": 8.950633464394933,
+ "grad_norm": 0.22858479619026184,
+ "learning_rate": 0.0006,
+ "loss": 4.520846366882324,
+ "step": 644
+ },
+ {
+ "epoch": 8.964613368283093,
+ "grad_norm": 0.23923712968826294,
+ "learning_rate": 0.0006,
+ "loss": 4.535306930541992,
+ "step": 645
+ },
+ {
+ "epoch": 8.978593272171254,
+ "grad_norm": 0.23717579245567322,
+ "learning_rate": 0.0006,
+ "loss": 4.485929489135742,
+ "step": 646
+ },
+ {
+ "epoch": 8.992573176059414,
+ "grad_norm": 0.24033977091312408,
+ "learning_rate": 0.0006,
+ "loss": 4.508999824523926,
+ "step": 647
+ },
+ {
+ "epoch": 9.0,
+ "grad_norm": 0.22432062029838562,
+ "learning_rate": 0.0006,
+ "loss": 4.473136901855469,
+ "step": 648
+ },
+ {
+ "epoch": 9.0,
+ "eval_loss": 4.735903263092041,
+ "eval_runtime": 44.2163,
+ "eval_samples_per_second": 55.228,
+ "eval_steps_per_second": 3.46,
+ "step": 648
+ },
+ {
+ "epoch": 9.013979903888162,
+ "grad_norm": 0.22491489350795746,
+ "learning_rate": 0.0006,
+ "loss": 4.468614101409912,
+ "step": 649
+ },
+ {
+ "epoch": 9.027959807776321,
+ "grad_norm": 0.255759060382843,
+ "learning_rate": 0.0006,
+ "loss": 4.516196250915527,
+ "step": 650
+ },
+ {
+ "epoch": 9.041939711664483,
+ "grad_norm": 0.2591100335121155,
+ "learning_rate": 0.0006,
+ "loss": 4.478276252746582,
+ "step": 651
+ },
+ {
+ "epoch": 9.055919615552643,
+ "grad_norm": 0.30472296476364136,
+ "learning_rate": 0.0006,
+ "loss": 4.479726791381836,
+ "step": 652
+ },
+ {
+ "epoch": 9.069899519440805,
+ "grad_norm": 0.2840559780597687,
+ "learning_rate": 0.0006,
+ "loss": 4.4437384605407715,
+ "step": 653
+ },
+ {
+ "epoch": 9.083879423328964,
+ "grad_norm": 0.2695577144622803,
+ "learning_rate": 0.0006,
+ "loss": 4.476065635681152,
+ "step": 654
+ },
+ {
+ "epoch": 9.097859327217126,
+ "grad_norm": 0.27912381291389465,
+ "learning_rate": 0.0006,
+ "loss": 4.484747409820557,
+ "step": 655
+ },
+ {
+ "epoch": 9.111839231105286,
+ "grad_norm": 0.3091907501220703,
+ "learning_rate": 0.0006,
+ "loss": 4.449443817138672,
+ "step": 656
+ },
+ {
+ "epoch": 9.125819134993447,
+ "grad_norm": 0.30756646394729614,
+ "learning_rate": 0.0006,
+ "loss": 4.496490001678467,
+ "step": 657
+ },
+ {
+ "epoch": 9.139799038881607,
+ "grad_norm": 0.305698037147522,
+ "learning_rate": 0.0006,
+ "loss": 4.466765880584717,
+ "step": 658
+ },
+ {
+ "epoch": 9.153778942769769,
+ "grad_norm": 0.3031201660633087,
+ "learning_rate": 0.0006,
+ "loss": 4.462430953979492,
+ "step": 659
+ },
+ {
+ "epoch": 9.167758846657929,
+ "grad_norm": 0.32725608348846436,
+ "learning_rate": 0.0006,
+ "loss": 4.479879379272461,
+ "step": 660
+ },
+ {
+ "epoch": 9.18173875054609,
+ "grad_norm": 0.31773585081100464,
+ "learning_rate": 0.0006,
+ "loss": 4.473912239074707,
+ "step": 661
+ },
+ {
+ "epoch": 9.19571865443425,
+ "grad_norm": 0.30025365948677063,
+ "learning_rate": 0.0006,
+ "loss": 4.476703643798828,
+ "step": 662
+ },
+ {
+ "epoch": 9.209698558322412,
+ "grad_norm": 0.3177371025085449,
+ "learning_rate": 0.0006,
+ "loss": 4.439765930175781,
+ "step": 663
+ },
+ {
+ "epoch": 9.223678462210572,
+ "grad_norm": 0.3060745894908905,
+ "learning_rate": 0.0006,
+ "loss": 4.487849235534668,
+ "step": 664
+ },
+ {
+ "epoch": 9.237658366098733,
+ "grad_norm": 0.33287373185157776,
+ "learning_rate": 0.0006,
+ "loss": 4.443496227264404,
+ "step": 665
+ },
+ {
+ "epoch": 9.251638269986893,
+ "grad_norm": 0.3758000433444977,
+ "learning_rate": 0.0006,
+ "loss": 4.478017330169678,
+ "step": 666
+ },
+ {
+ "epoch": 9.265618173875055,
+ "grad_norm": 0.32124510407447815,
+ "learning_rate": 0.0006,
+ "loss": 4.4092206954956055,
+ "step": 667
+ },
+ {
+ "epoch": 9.279598077763215,
+ "grad_norm": 0.2786794602870941,
+ "learning_rate": 0.0006,
+ "loss": 4.432734489440918,
+ "step": 668
+ },
+ {
+ "epoch": 9.293577981651376,
+ "grad_norm": 0.35042962431907654,
+ "learning_rate": 0.0006,
+ "loss": 4.462737083435059,
+ "step": 669
+ },
+ {
+ "epoch": 9.307557885539538,
+ "grad_norm": 0.4080469310283661,
+ "learning_rate": 0.0006,
+ "loss": 4.429462432861328,
+ "step": 670
+ },
+ {
+ "epoch": 9.321537789427698,
+ "grad_norm": 0.465158075094223,
+ "learning_rate": 0.0006,
+ "loss": 4.465776443481445,
+ "step": 671
+ },
+ {
+ "epoch": 9.33551769331586,
+ "grad_norm": 0.44833582639694214,
+ "learning_rate": 0.0006,
+ "loss": 4.454195976257324,
+ "step": 672
+ },
+ {
+ "epoch": 9.349497597204019,
+ "grad_norm": 0.451052188873291,
+ "learning_rate": 0.0006,
+ "loss": 4.456139087677002,
+ "step": 673
+ },
+ {
+ "epoch": 9.36347750109218,
+ "grad_norm": 0.3759656250476837,
+ "learning_rate": 0.0006,
+ "loss": 4.461119651794434,
+ "step": 674
+ },
+ {
+ "epoch": 9.37745740498034,
+ "grad_norm": 0.514560341835022,
+ "learning_rate": 0.0006,
+ "loss": 4.49595832824707,
+ "step": 675
+ },
+ {
+ "epoch": 9.391437308868502,
+ "grad_norm": 0.5650647282600403,
+ "learning_rate": 0.0006,
+ "loss": 4.461362838745117,
+ "step": 676
+ },
+ {
+ "epoch": 9.405417212756662,
+ "grad_norm": 0.4218835234642029,
+ "learning_rate": 0.0006,
+ "loss": 4.469146728515625,
+ "step": 677
+ },
+ {
+ "epoch": 9.419397116644824,
+ "grad_norm": 0.4169512689113617,
+ "learning_rate": 0.0006,
+ "loss": 4.470132827758789,
+ "step": 678
+ },
+ {
+ "epoch": 9.433377020532983,
+ "grad_norm": 0.3772219717502594,
+ "learning_rate": 0.0006,
+ "loss": 4.4742608070373535,
+ "step": 679
+ },
+ {
+ "epoch": 9.447356924421145,
+ "grad_norm": 0.35755908489227295,
+ "learning_rate": 0.0006,
+ "loss": 4.461928367614746,
+ "step": 680
+ },
+ {
+ "epoch": 9.461336828309305,
+ "grad_norm": 0.3141227662563324,
+ "learning_rate": 0.0006,
+ "loss": 4.491983413696289,
+ "step": 681
+ },
+ {
+ "epoch": 9.475316732197467,
+ "grad_norm": 0.282461017370224,
+ "learning_rate": 0.0006,
+ "loss": 4.460200309753418,
+ "step": 682
+ },
+ {
+ "epoch": 9.489296636085626,
+ "grad_norm": 0.27174389362335205,
+ "learning_rate": 0.0006,
+ "loss": 4.416125297546387,
+ "step": 683
+ },
+ {
+ "epoch": 9.503276539973788,
+ "grad_norm": 0.24570637941360474,
+ "learning_rate": 0.0006,
+ "loss": 4.4451093673706055,
+ "step": 684
+ },
+ {
+ "epoch": 9.517256443861948,
+ "grad_norm": 0.2741486132144928,
+ "learning_rate": 0.0006,
+ "loss": 4.453263282775879,
+ "step": 685
+ },
+ {
+ "epoch": 9.53123634775011,
+ "grad_norm": 0.24753718078136444,
+ "learning_rate": 0.0006,
+ "loss": 4.483033180236816,
+ "step": 686
+ },
+ {
+ "epoch": 9.54521625163827,
+ "grad_norm": 0.24288412928581238,
+ "learning_rate": 0.0006,
+ "loss": 4.452961444854736,
+ "step": 687
+ },
+ {
+ "epoch": 9.55919615552643,
+ "grad_norm": 0.21554753184318542,
+ "learning_rate": 0.0006,
+ "loss": 4.476005554199219,
+ "step": 688
+ },
+ {
+ "epoch": 9.57317605941459,
+ "grad_norm": 0.22775942087173462,
+ "learning_rate": 0.0006,
+ "loss": 4.4479193687438965,
+ "step": 689
+ },
+ {
+ "epoch": 9.587155963302752,
+ "grad_norm": 0.2610701024532318,
+ "learning_rate": 0.0006,
+ "loss": 4.474987506866455,
+ "step": 690
+ },
+ {
+ "epoch": 9.601135867190912,
+ "grad_norm": 0.2394690215587616,
+ "learning_rate": 0.0006,
+ "loss": 4.444857597351074,
+ "step": 691
+ },
+ {
+ "epoch": 9.615115771079074,
+ "grad_norm": 0.20868559181690216,
+ "learning_rate": 0.0006,
+ "loss": 4.4220709800720215,
+ "step": 692
+ },
+ {
+ "epoch": 9.629095674967235,
+ "grad_norm": 0.21869882941246033,
+ "learning_rate": 0.0006,
+ "loss": 4.451737403869629,
+ "step": 693
+ },
+ {
+ "epoch": 9.643075578855395,
+ "grad_norm": 0.1802823394536972,
+ "learning_rate": 0.0006,
+ "loss": 4.409085273742676,
+ "step": 694
+ },
+ {
+ "epoch": 9.657055482743557,
+ "grad_norm": 0.17046281695365906,
+ "learning_rate": 0.0006,
+ "loss": 4.424643516540527,
+ "step": 695
+ },
+ {
+ "epoch": 9.671035386631717,
+ "grad_norm": 0.19561922550201416,
+ "learning_rate": 0.0006,
+ "loss": 4.412302017211914,
+ "step": 696
+ },
+ {
+ "epoch": 9.685015290519878,
+ "grad_norm": 0.21928799152374268,
+ "learning_rate": 0.0006,
+ "loss": 4.427582263946533,
+ "step": 697
+ },
+ {
+ "epoch": 9.698995194408038,
+ "grad_norm": 0.244873046875,
+ "learning_rate": 0.0006,
+ "loss": 4.431827545166016,
+ "step": 698
+ },
+ {
+ "epoch": 9.7129750982962,
+ "grad_norm": 0.2799488604068756,
+ "learning_rate": 0.0006,
+ "loss": 4.407991409301758,
+ "step": 699
+ },
+ {
+ "epoch": 9.72695500218436,
+ "grad_norm": 0.2699538767337799,
+ "learning_rate": 0.0006,
+ "loss": 4.412313461303711,
+ "step": 700
+ },
+ {
+ "epoch": 9.740934906072521,
+ "grad_norm": 0.22293835878372192,
+ "learning_rate": 0.0006,
+ "loss": 4.423369884490967,
+ "step": 701
+ },
+ {
+ "epoch": 9.754914809960681,
+ "grad_norm": 0.21554361283779144,
+ "learning_rate": 0.0006,
+ "loss": 4.42026948928833,
+ "step": 702
+ },
+ {
+ "epoch": 9.768894713848843,
+ "grad_norm": 0.22135840356349945,
+ "learning_rate": 0.0006,
+ "loss": 4.400010108947754,
+ "step": 703
+ },
+ {
+ "epoch": 9.782874617737003,
+ "grad_norm": 0.2169952541589737,
+ "learning_rate": 0.0006,
+ "loss": 4.394582271575928,
+ "step": 704
+ },
+ {
+ "epoch": 9.796854521625164,
+ "grad_norm": 0.18913042545318604,
+ "learning_rate": 0.0006,
+ "loss": 4.395880699157715,
+ "step": 705
+ },
+ {
+ "epoch": 9.810834425513324,
+ "grad_norm": 0.191524475812912,
+ "learning_rate": 0.0006,
+ "loss": 4.378962516784668,
+ "step": 706
+ },
+ {
+ "epoch": 9.824814329401486,
+ "grad_norm": 0.20057640969753265,
+ "learning_rate": 0.0006,
+ "loss": 4.431066513061523,
+ "step": 707
+ },
+ {
+ "epoch": 9.838794233289645,
+ "grad_norm": 0.21670377254486084,
+ "learning_rate": 0.0006,
+ "loss": 4.364682197570801,
+ "step": 708
+ },
+ {
+ "epoch": 9.852774137177807,
+ "grad_norm": 0.21653099358081818,
+ "learning_rate": 0.0006,
+ "loss": 4.4050445556640625,
+ "step": 709
+ },
+ {
+ "epoch": 9.866754041065967,
+ "grad_norm": 0.2217673808336258,
+ "learning_rate": 0.0006,
+ "loss": 4.423664093017578,
+ "step": 710
+ },
+ {
+ "epoch": 9.880733944954128,
+ "grad_norm": 0.251078337430954,
+ "learning_rate": 0.0006,
+ "loss": 4.405768394470215,
+ "step": 711
+ },
+ {
+ "epoch": 9.89471384884229,
+ "grad_norm": 0.28962627053260803,
+ "learning_rate": 0.0006,
+ "loss": 4.421207427978516,
+ "step": 712
+ },
+ {
+ "epoch": 9.90869375273045,
+ "grad_norm": 0.3478074371814728,
+ "learning_rate": 0.0006,
+ "loss": 4.414942741394043,
+ "step": 713
+ },
+ {
+ "epoch": 9.922673656618612,
+ "grad_norm": 0.40396368503570557,
+ "learning_rate": 0.0006,
+ "loss": 4.415163993835449,
+ "step": 714
+ },
+ {
+ "epoch": 9.936653560506771,
+ "grad_norm": 0.3689858019351959,
+ "learning_rate": 0.0006,
+ "loss": 4.381345272064209,
+ "step": 715
+ },
+ {
+ "epoch": 9.950633464394933,
+ "grad_norm": 0.344868004322052,
+ "learning_rate": 0.0006,
+ "loss": 4.433088302612305,
+ "step": 716
+ },
+ {
+ "epoch": 9.964613368283093,
+ "grad_norm": 0.37976378202438354,
+ "learning_rate": 0.0006,
+ "loss": 4.431371212005615,
+ "step": 717
+ },
+ {
+ "epoch": 9.978593272171254,
+ "grad_norm": 0.4354130029678345,
+ "learning_rate": 0.0006,
+ "loss": 4.434148788452148,
+ "step": 718
+ },
+ {
+ "epoch": 9.992573176059414,
+ "grad_norm": 0.35859373211860657,
+ "learning_rate": 0.0006,
+ "loss": 4.428055763244629,
+ "step": 719
+ },
+ {
+ "epoch": 10.0,
+ "grad_norm": 0.3365023732185364,
+ "learning_rate": 0.0006,
+ "loss": 4.3888654708862305,
+ "step": 720
+ },
+ {
+ "epoch": 10.0,
+ "eval_loss": 4.638620853424072,
+ "eval_runtime": 44.3054,
+ "eval_samples_per_second": 55.117,
+ "eval_steps_per_second": 3.453,
+ "step": 720
+ },
+ {
+ "epoch": 10.013979903888162,
+ "grad_norm": 0.3267960250377655,
+ "learning_rate": 0.0006,
+ "loss": 4.386068344116211,
+ "step": 721
+ },
+ {
+ "epoch": 10.027959807776321,
+ "grad_norm": 0.33440953493118286,
+ "learning_rate": 0.0006,
+ "loss": 4.397515296936035,
+ "step": 722
+ },
+ {
+ "epoch": 10.041939711664483,
+ "grad_norm": 0.30047518014907837,
+ "learning_rate": 0.0006,
+ "loss": 4.398358345031738,
+ "step": 723
+ },
+ {
+ "epoch": 10.055919615552643,
+ "grad_norm": 0.2912217378616333,
+ "learning_rate": 0.0006,
+ "loss": 4.341166973114014,
+ "step": 724
+ },
+ {
+ "epoch": 10.069899519440805,
+ "grad_norm": 0.3199564218521118,
+ "learning_rate": 0.0006,
+ "loss": 4.388717174530029,
+ "step": 725
+ },
+ {
+ "epoch": 10.083879423328964,
+ "grad_norm": 0.2765582799911499,
+ "learning_rate": 0.0006,
+ "loss": 4.392992973327637,
+ "step": 726
+ },
+ {
+ "epoch": 10.097859327217126,
+ "grad_norm": 0.27138450741767883,
+ "learning_rate": 0.0006,
+ "loss": 4.382307529449463,
+ "step": 727
+ },
+ {
+ "epoch": 10.111839231105286,
+ "grad_norm": 0.29230645298957825,
+ "learning_rate": 0.0006,
+ "loss": 4.357486724853516,
+ "step": 728
+ },
+ {
+ "epoch": 10.125819134993447,
+ "grad_norm": 0.3127598464488983,
+ "learning_rate": 0.0006,
+ "loss": 4.39072322845459,
+ "step": 729
+ },
+ {
+ "epoch": 10.139799038881607,
+ "grad_norm": 0.3230913281440735,
+ "learning_rate": 0.0006,
+ "loss": 4.35037899017334,
+ "step": 730
+ },
+ {
+ "epoch": 10.153778942769769,
+ "grad_norm": 0.333675354719162,
+ "learning_rate": 0.0006,
+ "loss": 4.378030776977539,
+ "step": 731
+ },
+ {
+ "epoch": 10.167758846657929,
+ "grad_norm": 0.30325770378112793,
+ "learning_rate": 0.0006,
+ "loss": 4.372736930847168,
+ "step": 732
+ },
+ {
+ "epoch": 10.18173875054609,
+ "grad_norm": 0.2888163924217224,
+ "learning_rate": 0.0006,
+ "loss": 4.397604942321777,
+ "step": 733
+ },
+ {
+ "epoch": 10.19571865443425,
+ "grad_norm": 0.3378832936286926,
+ "learning_rate": 0.0006,
+ "loss": 4.395705223083496,
+ "step": 734
+ },
+ {
+ "epoch": 10.209698558322412,
+ "grad_norm": 0.30980268120765686,
+ "learning_rate": 0.0006,
+ "loss": 4.3861212730407715,
+ "step": 735
+ },
+ {
+ "epoch": 10.223678462210572,
+ "grad_norm": 0.2965783178806305,
+ "learning_rate": 0.0006,
+ "loss": 4.394898414611816,
+ "step": 736
+ },
+ {
+ "epoch": 10.237658366098733,
+ "grad_norm": 0.2818217873573303,
+ "learning_rate": 0.0006,
+ "loss": 4.36171817779541,
+ "step": 737
+ },
+ {
+ "epoch": 10.251638269986893,
+ "grad_norm": 0.2418123185634613,
+ "learning_rate": 0.0006,
+ "loss": 4.370945930480957,
+ "step": 738
+ },
+ {
+ "epoch": 10.265618173875055,
+ "grad_norm": 0.22372810542583466,
+ "learning_rate": 0.0006,
+ "loss": 4.354825973510742,
+ "step": 739
+ },
+ {
+ "epoch": 10.279598077763215,
+ "grad_norm": 0.238066166639328,
+ "learning_rate": 0.0006,
+ "loss": 4.376237392425537,
+ "step": 740
+ },
+ {
+ "epoch": 10.293577981651376,
+ "grad_norm": 0.22352449595928192,
+ "learning_rate": 0.0006,
+ "loss": 4.317084312438965,
+ "step": 741
+ },
+ {
+ "epoch": 10.307557885539538,
+ "grad_norm": 0.21685205399990082,
+ "learning_rate": 0.0006,
+ "loss": 4.335271835327148,
+ "step": 742
+ },
+ {
+ "epoch": 10.321537789427698,
+ "grad_norm": 0.19584694504737854,
+ "learning_rate": 0.0006,
+ "loss": 4.357963562011719,
+ "step": 743
+ },
+ {
+ "epoch": 10.33551769331586,
+ "grad_norm": 0.20373336970806122,
+ "learning_rate": 0.0006,
+ "loss": 4.401963233947754,
+ "step": 744
+ },
+ {
+ "epoch": 10.349497597204019,
+ "grad_norm": 0.2247837632894516,
+ "learning_rate": 0.0006,
+ "loss": 4.357202529907227,
+ "step": 745
+ },
+ {
+ "epoch": 10.36347750109218,
+ "grad_norm": 0.2416863739490509,
+ "learning_rate": 0.0006,
+ "loss": 4.364739418029785,
+ "step": 746
+ },
+ {
+ "epoch": 10.37745740498034,
+ "grad_norm": 0.22281162440776825,
+ "learning_rate": 0.0006,
+ "loss": 4.351607799530029,
+ "step": 747
+ },
+ {
+ "epoch": 10.391437308868502,
+ "grad_norm": 0.20751096308231354,
+ "learning_rate": 0.0006,
+ "loss": 4.370017051696777,
+ "step": 748
+ },
+ {
+ "epoch": 10.405417212756662,
+ "grad_norm": 0.19178363680839539,
+ "learning_rate": 0.0006,
+ "loss": 4.360328674316406,
+ "step": 749
+ },
+ {
+ "epoch": 10.419397116644824,
+ "grad_norm": 0.20534078776836395,
+ "learning_rate": 0.0006,
+ "loss": 4.3735432624816895,
+ "step": 750
+ },
+ {
+ "epoch": 10.433377020532983,
+ "grad_norm": 0.20533937215805054,
+ "learning_rate": 0.0006,
+ "loss": 4.326902389526367,
+ "step": 751
+ },
+ {
+ "epoch": 10.447356924421145,
+ "grad_norm": 0.22057875990867615,
+ "learning_rate": 0.0006,
+ "loss": 4.360934257507324,
+ "step": 752
+ },
+ {
+ "epoch": 10.461336828309305,
+ "grad_norm": 0.25568997859954834,
+ "learning_rate": 0.0006,
+ "loss": 4.345063209533691,
+ "step": 753
+ },
+ {
+ "epoch": 10.475316732197467,
+ "grad_norm": 0.31471487879753113,
+ "learning_rate": 0.0006,
+ "loss": 4.324014186859131,
+ "step": 754
+ },
+ {
+ "epoch": 10.489296636085626,
+ "grad_norm": 0.2716822624206543,
+ "learning_rate": 0.0006,
+ "loss": 4.318459510803223,
+ "step": 755
+ },
+ {
+ "epoch": 10.503276539973788,
+ "grad_norm": 0.19552019238471985,
+ "learning_rate": 0.0006,
+ "loss": 4.3367509841918945,
+ "step": 756
+ },
+ {
+ "epoch": 10.517256443861948,
+ "grad_norm": 0.22822986543178558,
+ "learning_rate": 0.0006,
+ "loss": 4.328935623168945,
+ "step": 757
+ },
+ {
+ "epoch": 10.53123634775011,
+ "grad_norm": 0.22282928228378296,
+ "learning_rate": 0.0006,
+ "loss": 4.358272552490234,
+ "step": 758
+ },
+ {
+ "epoch": 10.54521625163827,
+ "grad_norm": 0.23303352296352386,
+ "learning_rate": 0.0006,
+ "loss": 4.336641311645508,
+ "step": 759
+ },
+ {
+ "epoch": 10.55919615552643,
+ "grad_norm": 0.29474690556526184,
+ "learning_rate": 0.0006,
+ "loss": 4.343188285827637,
+ "step": 760
+ },
+ {
+ "epoch": 10.57317605941459,
+ "grad_norm": 0.36269059777259827,
+ "learning_rate": 0.0006,
+ "loss": 4.313019752502441,
+ "step": 761
+ },
+ {
+ "epoch": 10.587155963302752,
+ "grad_norm": 0.3742978870868683,
+ "learning_rate": 0.0006,
+ "loss": 4.361410140991211,
+ "step": 762
+ },
+ {
+ "epoch": 10.601135867190912,
+ "grad_norm": 0.34412163496017456,
+ "learning_rate": 0.0006,
+ "loss": 4.321324825286865,
+ "step": 763
+ },
+ {
+ "epoch": 10.615115771079074,
+ "grad_norm": 0.3464587926864624,
+ "learning_rate": 0.0006,
+ "loss": 4.341907501220703,
+ "step": 764
+ },
+ {
+ "epoch": 10.629095674967235,
+ "grad_norm": 0.3318136930465698,
+ "learning_rate": 0.0006,
+ "loss": 4.329099655151367,
+ "step": 765
+ },
+ {
+ "epoch": 10.643075578855395,
+ "grad_norm": 0.31292903423309326,
+ "learning_rate": 0.0006,
+ "loss": 4.332015037536621,
+ "step": 766
+ },
+ {
+ "epoch": 10.657055482743557,
+ "grad_norm": 0.2904847264289856,
+ "learning_rate": 0.0006,
+ "loss": 4.341764450073242,
+ "step": 767
+ },
+ {
+ "epoch": 10.671035386631717,
+ "grad_norm": 0.3287692666053772,
+ "learning_rate": 0.0006,
+ "loss": 4.342329025268555,
+ "step": 768
+ },
+ {
+ "epoch": 10.685015290519878,
+ "grad_norm": 0.3115365207195282,
+ "learning_rate": 0.0006,
+ "loss": 4.3530073165893555,
+ "step": 769
+ },
+ {
+ "epoch": 10.698995194408038,
+ "grad_norm": 0.24133864045143127,
+ "learning_rate": 0.0006,
+ "loss": 4.321497917175293,
+ "step": 770
+ },
+ {
+ "epoch": 10.7129750982962,
+ "grad_norm": 0.24658630788326263,
+ "learning_rate": 0.0006,
+ "loss": 4.32669734954834,
+ "step": 771
+ },
+ {
+ "epoch": 10.72695500218436,
+ "grad_norm": 0.2342129647731781,
+ "learning_rate": 0.0006,
+ "loss": 4.345459461212158,
+ "step": 772
+ },
+ {
+ "epoch": 10.740934906072521,
+ "grad_norm": 0.23360829055309296,
+ "learning_rate": 0.0006,
+ "loss": 4.33249568939209,
+ "step": 773
+ },
+ {
+ "epoch": 10.754914809960681,
+ "grad_norm": 0.24314677715301514,
+ "learning_rate": 0.0006,
+ "loss": 4.30499792098999,
+ "step": 774
+ },
+ {
+ "epoch": 10.768894713848843,
+ "grad_norm": 0.22105181217193604,
+ "learning_rate": 0.0006,
+ "loss": 4.33706521987915,
+ "step": 775
+ },
+ {
+ "epoch": 10.782874617737003,
+ "grad_norm": 0.23307174444198608,
+ "learning_rate": 0.0006,
+ "loss": 4.320387840270996,
+ "step": 776
+ },
+ {
+ "epoch": 10.796854521625164,
+ "grad_norm": 0.24946169555187225,
+ "learning_rate": 0.0006,
+ "loss": 4.316012382507324,
+ "step": 777
+ },
+ {
+ "epoch": 10.810834425513324,
+ "grad_norm": 0.26023536920547485,
+ "learning_rate": 0.0006,
+ "loss": 4.315193176269531,
+ "step": 778
+ },
+ {
+ "epoch": 10.824814329401486,
+ "grad_norm": 0.2688547968864441,
+ "learning_rate": 0.0006,
+ "loss": 4.3243255615234375,
+ "step": 779
+ },
+ {
+ "epoch": 10.838794233289645,
+ "grad_norm": 0.28188297152519226,
+ "learning_rate": 0.0006,
+ "loss": 4.3202972412109375,
+ "step": 780
+ },
+ {
+ "epoch": 10.852774137177807,
+ "grad_norm": 0.2890053689479828,
+ "learning_rate": 0.0006,
+ "loss": 4.318799018859863,
+ "step": 781
+ },
+ {
+ "epoch": 10.866754041065967,
+ "grad_norm": 0.2914353013038635,
+ "learning_rate": 0.0006,
+ "loss": 4.314262390136719,
+ "step": 782
+ },
+ {
+ "epoch": 10.880733944954128,
+ "grad_norm": 0.3145572543144226,
+ "learning_rate": 0.0006,
+ "loss": 4.339262008666992,
+ "step": 783
+ },
+ {
+ "epoch": 10.89471384884229,
+ "grad_norm": 0.323062002658844,
+ "learning_rate": 0.0006,
+ "loss": 4.354856491088867,
+ "step": 784
+ },
+ {
+ "epoch": 10.90869375273045,
+ "grad_norm": 0.32741227746009827,
+ "learning_rate": 0.0006,
+ "loss": 4.325577735900879,
+ "step": 785
+ },
+ {
+ "epoch": 10.922673656618612,
+ "grad_norm": 0.2855733036994934,
+ "learning_rate": 0.0006,
+ "loss": 4.324419021606445,
+ "step": 786
+ },
+ {
+ "epoch": 10.936653560506771,
+ "grad_norm": 0.2969444990158081,
+ "learning_rate": 0.0006,
+ "loss": 4.320681095123291,
+ "step": 787
+ },
+ {
+ "epoch": 10.950633464394933,
+ "grad_norm": 0.28108111023902893,
+ "learning_rate": 0.0006,
+ "loss": 4.32673454284668,
+ "step": 788
+ },
+ {
+ "epoch": 10.964613368283093,
+ "grad_norm": 0.2537972629070282,
+ "learning_rate": 0.0006,
+ "loss": 4.3197021484375,
+ "step": 789
+ },
+ {
+ "epoch": 10.978593272171254,
+ "grad_norm": 0.2354544699192047,
+ "learning_rate": 0.0006,
+ "loss": 4.3354973793029785,
+ "step": 790
+ },
+ {
+ "epoch": 10.992573176059414,
+ "grad_norm": 0.26195117831230164,
+ "learning_rate": 0.0006,
+ "loss": 4.3172526359558105,
+ "step": 791
+ },
+ {
+ "epoch": 11.0,
+ "grad_norm": 0.27089616656303406,
+ "learning_rate": 0.0006,
+ "loss": 4.324293613433838,
+ "step": 792
+ },
+ {
+ "epoch": 11.0,
+ "eval_loss": 4.531813621520996,
+ "eval_runtime": 44.1656,
+ "eval_samples_per_second": 55.292,
+ "eval_steps_per_second": 3.464,
+ "step": 792
+ },
+ {
+ "epoch": 11.013979903888162,
+ "grad_norm": 0.2526339590549469,
+ "learning_rate": 0.0006,
+ "loss": 4.287600517272949,
+ "step": 793
+ },
+ {
+ "epoch": 11.027959807776321,
+ "grad_norm": 0.24318458139896393,
+ "learning_rate": 0.0006,
+ "loss": 4.268078327178955,
+ "step": 794
+ },
+ {
+ "epoch": 11.041939711664483,
+ "grad_norm": 0.2450830638408661,
+ "learning_rate": 0.0006,
+ "loss": 4.265467643737793,
+ "step": 795
+ },
+ {
+ "epoch": 11.055919615552643,
+ "grad_norm": 0.23963099718093872,
+ "learning_rate": 0.0006,
+ "loss": 4.267931938171387,
+ "step": 796
+ },
+ {
+ "epoch": 11.069899519440805,
+ "grad_norm": 0.2488657534122467,
+ "learning_rate": 0.0006,
+ "loss": 4.30262565612793,
+ "step": 797
+ },
+ {
+ "epoch": 11.083879423328964,
+ "grad_norm": 0.2319781631231308,
+ "learning_rate": 0.0006,
+ "loss": 4.28665828704834,
+ "step": 798
+ },
+ {
+ "epoch": 11.097859327217126,
+ "grad_norm": 0.2425263375043869,
+ "learning_rate": 0.0006,
+ "loss": 4.284830570220947,
+ "step": 799
+ },
+ {
+ "epoch": 11.111839231105286,
+ "grad_norm": 0.23096567392349243,
+ "learning_rate": 0.0006,
+ "loss": 4.2817206382751465,
+ "step": 800
+ },
+ {
+ "epoch": 11.125819134993447,
+ "grad_norm": 0.2846364676952362,
+ "learning_rate": 0.0006,
+ "loss": 4.276104927062988,
+ "step": 801
+ },
+ {
+ "epoch": 11.139799038881607,
+ "grad_norm": 0.2984965741634369,
+ "learning_rate": 0.0006,
+ "loss": 4.2909650802612305,
+ "step": 802
+ },
+ {
+ "epoch": 11.153778942769769,
+ "grad_norm": 0.2841213643550873,
+ "learning_rate": 0.0006,
+ "loss": 4.283358097076416,
+ "step": 803
+ },
+ {
+ "epoch": 11.167758846657929,
+ "grad_norm": 0.29192933440208435,
+ "learning_rate": 0.0006,
+ "loss": 4.267040729522705,
+ "step": 804
+ },
+ {
+ "epoch": 11.18173875054609,
+ "grad_norm": 0.3254184126853943,
+ "learning_rate": 0.0006,
+ "loss": 4.301564693450928,
+ "step": 805
+ },
+ {
+ "epoch": 11.19571865443425,
+ "grad_norm": 0.3347095847129822,
+ "learning_rate": 0.0006,
+ "loss": 4.271395683288574,
+ "step": 806
+ },
+ {
+ "epoch": 11.209698558322412,
+ "grad_norm": 0.25609350204467773,
+ "learning_rate": 0.0006,
+ "loss": 4.2963056564331055,
+ "step": 807
+ },
+ {
+ "epoch": 11.223678462210572,
+ "grad_norm": 0.29272061586380005,
+ "learning_rate": 0.0006,
+ "loss": 4.298416614532471,
+ "step": 808
+ },
+ {
+ "epoch": 11.237658366098733,
+ "grad_norm": 0.32179465889930725,
+ "learning_rate": 0.0006,
+ "loss": 4.294036865234375,
+ "step": 809
+ },
+ {
+ "epoch": 11.251638269986893,
+ "grad_norm": 0.3336549401283264,
+ "learning_rate": 0.0006,
+ "loss": 4.291993141174316,
+ "step": 810
+ },
+ {
+ "epoch": 11.265618173875055,
+ "grad_norm": 0.32273536920547485,
+ "learning_rate": 0.0006,
+ "loss": 4.311004638671875,
+ "step": 811
+ },
+ {
+ "epoch": 11.279598077763215,
+ "grad_norm": 0.3575087785720825,
+ "learning_rate": 0.0006,
+ "loss": 4.300217628479004,
+ "step": 812
+ },
+ {
+ "epoch": 11.293577981651376,
+ "grad_norm": 0.3332885205745697,
+ "learning_rate": 0.0006,
+ "loss": 4.278337478637695,
+ "step": 813
+ },
+ {
+ "epoch": 11.307557885539538,
+ "grad_norm": 0.31440407037734985,
+ "learning_rate": 0.0006,
+ "loss": 4.273826599121094,
+ "step": 814
+ },
+ {
+ "epoch": 11.321537789427698,
+ "grad_norm": 0.29822009801864624,
+ "learning_rate": 0.0006,
+ "loss": 4.284292221069336,
+ "step": 815
+ },
+ {
+ "epoch": 11.33551769331586,
+ "grad_norm": 0.30695512890815735,
+ "learning_rate": 0.0006,
+ "loss": 4.2831926345825195,
+ "step": 816
+ },
+ {
+ "epoch": 11.349497597204019,
+ "grad_norm": 0.30576950311660767,
+ "learning_rate": 0.0006,
+ "loss": 4.277133464813232,
+ "step": 817
+ },
+ {
+ "epoch": 11.36347750109218,
+ "grad_norm": 0.2859647870063782,
+ "learning_rate": 0.0006,
+ "loss": 4.3130106925964355,
+ "step": 818
+ },
+ {
+ "epoch": 11.37745740498034,
+ "grad_norm": 0.32417574524879456,
+ "learning_rate": 0.0006,
+ "loss": 4.310303211212158,
+ "step": 819
+ },
+ {
+ "epoch": 11.391437308868502,
+ "grad_norm": 0.3512463867664337,
+ "learning_rate": 0.0006,
+ "loss": 4.287015438079834,
+ "step": 820
+ },
+ {
+ "epoch": 11.405417212756662,
+ "grad_norm": 0.32578620314598083,
+ "learning_rate": 0.0006,
+ "loss": 4.2957940101623535,
+ "step": 821
+ },
+ {
+ "epoch": 11.419397116644824,
+ "grad_norm": 0.287949800491333,
+ "learning_rate": 0.0006,
+ "loss": 4.2881879806518555,
+ "step": 822
+ },
+ {
+ "epoch": 11.433377020532983,
+ "grad_norm": 0.28048595786094666,
+ "learning_rate": 0.0006,
+ "loss": 4.274960517883301,
+ "step": 823
+ },
+ {
+ "epoch": 11.447356924421145,
+ "grad_norm": 0.2541540563106537,
+ "learning_rate": 0.0006,
+ "loss": 4.261083602905273,
+ "step": 824
+ },
+ {
+ "epoch": 11.461336828309305,
+ "grad_norm": 0.2348361313343048,
+ "learning_rate": 0.0006,
+ "loss": 4.271036148071289,
+ "step": 825
+ },
+ {
+ "epoch": 11.475316732197467,
+ "grad_norm": 0.20913535356521606,
+ "learning_rate": 0.0006,
+ "loss": 4.307661056518555,
+ "step": 826
+ },
+ {
+ "epoch": 11.489296636085626,
+ "grad_norm": 0.22298868000507355,
+ "learning_rate": 0.0006,
+ "loss": 4.26902961730957,
+ "step": 827
+ },
+ {
+ "epoch": 11.503276539973788,
+ "grad_norm": 0.22752761840820312,
+ "learning_rate": 0.0006,
+ "loss": 4.305529594421387,
+ "step": 828
+ },
+ {
+ "epoch": 11.517256443861948,
+ "grad_norm": 0.2149917483329773,
+ "learning_rate": 0.0006,
+ "loss": 4.25134801864624,
+ "step": 829
+ },
+ {
+ "epoch": 11.53123634775011,
+ "grad_norm": 0.21085695922374725,
+ "learning_rate": 0.0006,
+ "loss": 4.266982078552246,
+ "step": 830
+ },
+ {
+ "epoch": 11.54521625163827,
+ "grad_norm": 0.21586747467517853,
+ "learning_rate": 0.0006,
+ "loss": 4.235255718231201,
+ "step": 831
+ },
+ {
+ "epoch": 11.55919615552643,
+ "grad_norm": 0.2520856559276581,
+ "learning_rate": 0.0006,
+ "loss": 4.283442497253418,
+ "step": 832
+ },
+ {
+ "epoch": 11.57317605941459,
+ "grad_norm": 0.2825471758842468,
+ "learning_rate": 0.0006,
+ "loss": 4.234672546386719,
+ "step": 833
+ },
+ {
+ "epoch": 11.587155963302752,
+ "grad_norm": 0.27437824010849,
+ "learning_rate": 0.0006,
+ "loss": 4.246068000793457,
+ "step": 834
+ },
+ {
+ "epoch": 11.601135867190912,
+ "grad_norm": 0.2596757411956787,
+ "learning_rate": 0.0006,
+ "loss": 4.278448104858398,
+ "step": 835
+ },
+ {
+ "epoch": 11.615115771079074,
+ "grad_norm": 0.25663474202156067,
+ "learning_rate": 0.0006,
+ "loss": 4.308779716491699,
+ "step": 836
+ },
+ {
+ "epoch": 11.629095674967235,
+ "grad_norm": 0.2546203136444092,
+ "learning_rate": 0.0006,
+ "loss": 4.261247634887695,
+ "step": 837
+ },
+ {
+ "epoch": 11.643075578855395,
+ "grad_norm": 0.24722838401794434,
+ "learning_rate": 0.0006,
+ "loss": 4.275888442993164,
+ "step": 838
+ },
+ {
+ "epoch": 11.657055482743557,
+ "grad_norm": 0.3022806644439697,
+ "learning_rate": 0.0006,
+ "loss": 4.2572407722473145,
+ "step": 839
+ },
+ {
+ "epoch": 11.671035386631717,
+ "grad_norm": 0.31170839071273804,
+ "learning_rate": 0.0006,
+ "loss": 4.26992654800415,
+ "step": 840
+ },
+ {
+ "epoch": 11.685015290519878,
+ "grad_norm": 0.31362825632095337,
+ "learning_rate": 0.0006,
+ "loss": 4.2354655265808105,
+ "step": 841
+ },
+ {
+ "epoch": 11.698995194408038,
+ "grad_norm": 0.28741633892059326,
+ "learning_rate": 0.0006,
+ "loss": 4.263496398925781,
+ "step": 842
+ },
+ {
+ "epoch": 11.7129750982962,
+ "grad_norm": 0.2492494285106659,
+ "learning_rate": 0.0006,
+ "loss": 4.26463508605957,
+ "step": 843
+ },
+ {
+ "epoch": 11.72695500218436,
+ "grad_norm": 0.24324660003185272,
+ "learning_rate": 0.0006,
+ "loss": 4.245428085327148,
+ "step": 844
+ },
+ {
+ "epoch": 11.740934906072521,
+ "grad_norm": 0.23591114580631256,
+ "learning_rate": 0.0006,
+ "loss": 4.249845504760742,
+ "step": 845
+ },
+ {
+ "epoch": 11.754914809960681,
+ "grad_norm": 0.2202281504869461,
+ "learning_rate": 0.0006,
+ "loss": 4.245006084442139,
+ "step": 846
+ },
+ {
+ "epoch": 11.768894713848843,
+ "grad_norm": 0.22117942571640015,
+ "learning_rate": 0.0006,
+ "loss": 4.27812385559082,
+ "step": 847
+ },
+ {
+ "epoch": 11.782874617737003,
+ "grad_norm": 0.26361414790153503,
+ "learning_rate": 0.0006,
+ "loss": 4.250475883483887,
+ "step": 848
+ },
+ {
+ "epoch": 11.796854521625164,
+ "grad_norm": 0.2820321321487427,
+ "learning_rate": 0.0006,
+ "loss": 4.265835762023926,
+ "step": 849
+ },
+ {
+ "epoch": 11.810834425513324,
+ "grad_norm": 0.2078961282968521,
+ "learning_rate": 0.0006,
+ "loss": 4.251298904418945,
+ "step": 850
+ },
+ {
+ "epoch": 11.824814329401486,
+ "grad_norm": 0.21548646688461304,
+ "learning_rate": 0.0006,
+ "loss": 4.288539886474609,
+ "step": 851
+ },
+ {
+ "epoch": 11.838794233289645,
+ "grad_norm": 0.22719401121139526,
+ "learning_rate": 0.0006,
+ "loss": 4.252035140991211,
+ "step": 852
+ },
+ {
+ "epoch": 11.852774137177807,
+ "grad_norm": 0.21628320217132568,
+ "learning_rate": 0.0006,
+ "loss": 4.268622398376465,
+ "step": 853
+ },
+ {
+ "epoch": 11.866754041065967,
+ "grad_norm": 0.20855145156383514,
+ "learning_rate": 0.0006,
+ "loss": 4.253366470336914,
+ "step": 854
+ },
+ {
+ "epoch": 11.880733944954128,
+ "grad_norm": 0.2091914266347885,
+ "learning_rate": 0.0006,
+ "loss": 4.237805366516113,
+ "step": 855
+ },
+ {
+ "epoch": 11.89471384884229,
+ "grad_norm": 0.2000127136707306,
+ "learning_rate": 0.0006,
+ "loss": 4.268559455871582,
+ "step": 856
+ },
+ {
+ "epoch": 11.90869375273045,
+ "grad_norm": 0.21080894768238068,
+ "learning_rate": 0.0006,
+ "loss": 4.208702087402344,
+ "step": 857
+ },
+ {
+ "epoch": 11.922673656618612,
+ "grad_norm": 0.22125796973705292,
+ "learning_rate": 0.0006,
+ "loss": 4.250210762023926,
+ "step": 858
+ },
+ {
+ "epoch": 11.936653560506771,
+ "grad_norm": 0.25905469059944153,
+ "learning_rate": 0.0006,
+ "loss": 4.2263593673706055,
+ "step": 859
+ },
+ {
+ "epoch": 11.950633464394933,
+ "grad_norm": 0.29970306158065796,
+ "learning_rate": 0.0006,
+ "loss": 4.250848770141602,
+ "step": 860
+ },
+ {
+ "epoch": 11.964613368283093,
+ "grad_norm": 0.28155168890953064,
+ "learning_rate": 0.0006,
+ "loss": 4.272709369659424,
+ "step": 861
+ },
+ {
+ "epoch": 11.978593272171254,
+ "grad_norm": 0.23396113514900208,
+ "learning_rate": 0.0006,
+ "loss": 4.2674970626831055,
+ "step": 862
+ },
+ {
+ "epoch": 11.992573176059414,
+ "grad_norm": 0.23619577288627625,
+ "learning_rate": 0.0006,
+ "loss": 4.240267753601074,
+ "step": 863
+ },
+ {
+ "epoch": 12.0,
+ "grad_norm": 0.2779577076435089,
+ "learning_rate": 0.0006,
+ "loss": 4.267625331878662,
+ "step": 864
+ },
+ {
+ "epoch": 12.0,
+ "eval_loss": 4.437657356262207,
+ "eval_runtime": 44.4959,
+ "eval_samples_per_second": 54.881,
+ "eval_steps_per_second": 3.439,
+ "step": 864
+ },
+ {
+ "epoch": 12.013979903888162,
+ "grad_norm": 0.2948288321495056,
+ "learning_rate": 0.0006,
+ "loss": 4.232182502746582,
+ "step": 865
+ },
+ {
+ "epoch": 12.027959807776321,
+ "grad_norm": 0.3715663254261017,
+ "learning_rate": 0.0006,
+ "loss": 4.233771324157715,
+ "step": 866
+ },
+ {
+ "epoch": 12.041939711664483,
+ "grad_norm": 0.38358673453330994,
+ "learning_rate": 0.0006,
+ "loss": 4.208967685699463,
+ "step": 867
+ },
+ {
+ "epoch": 12.055919615552643,
+ "grad_norm": 0.3314538896083832,
+ "learning_rate": 0.0006,
+ "loss": 4.230685234069824,
+ "step": 868
+ },
+ {
+ "epoch": 12.069899519440805,
+ "grad_norm": 0.34171539545059204,
+ "learning_rate": 0.0006,
+ "loss": 4.231358528137207,
+ "step": 869
+ },
+ {
+ "epoch": 12.083879423328964,
+ "grad_norm": 0.3253359794616699,
+ "learning_rate": 0.0006,
+ "loss": 4.276405334472656,
+ "step": 870
+ },
+ {
+ "epoch": 12.097859327217126,
+ "grad_norm": 0.29008302092552185,
+ "learning_rate": 0.0006,
+ "loss": 4.232935905456543,
+ "step": 871
+ },
+ {
+ "epoch": 12.111839231105286,
+ "grad_norm": 0.28490355610847473,
+ "learning_rate": 0.0006,
+ "loss": 4.238036632537842,
+ "step": 872
+ },
+ {
+ "epoch": 12.125819134993447,
+ "grad_norm": 0.28446322679519653,
+ "learning_rate": 0.0006,
+ "loss": 4.210229873657227,
+ "step": 873
+ },
+ {
+ "epoch": 12.139799038881607,
+ "grad_norm": 0.29664531350135803,
+ "learning_rate": 0.0006,
+ "loss": 4.221309185028076,
+ "step": 874
+ },
+ {
+ "epoch": 12.153778942769769,
+ "grad_norm": 0.3083505928516388,
+ "learning_rate": 0.0006,
+ "loss": 4.221837997436523,
+ "step": 875
+ },
+ {
+ "epoch": 12.167758846657929,
+ "grad_norm": 0.3282921314239502,
+ "learning_rate": 0.0006,
+ "loss": 4.236713409423828,
+ "step": 876
+ },
+ {
+ "epoch": 12.18173875054609,
+ "grad_norm": 0.3603622615337372,
+ "learning_rate": 0.0006,
+ "loss": 4.245080947875977,
+ "step": 877
+ },
+ {
+ "epoch": 12.19571865443425,
+ "grad_norm": 0.38070905208587646,
+ "learning_rate": 0.0006,
+ "loss": 4.240756988525391,
+ "step": 878
+ },
+ {
+ "epoch": 12.209698558322412,
+ "grad_norm": 0.34479081630706787,
+ "learning_rate": 0.0006,
+ "loss": 4.200998306274414,
+ "step": 879
+ },
+ {
+ "epoch": 12.223678462210572,
+ "grad_norm": 0.3006879389286041,
+ "learning_rate": 0.0006,
+ "loss": 4.23531436920166,
+ "step": 880
+ },
+ {
+ "epoch": 12.237658366098733,
+ "grad_norm": 0.36835649609565735,
+ "learning_rate": 0.0006,
+ "loss": 4.229718208312988,
+ "step": 881
+ },
+ {
+ "epoch": 12.251638269986893,
+ "grad_norm": 0.4386984407901764,
+ "learning_rate": 0.0006,
+ "loss": 4.241188049316406,
+ "step": 882
+ },
+ {
+ "epoch": 12.265618173875055,
+ "grad_norm": 0.4442787170410156,
+ "learning_rate": 0.0006,
+ "loss": 4.239102840423584,
+ "step": 883
+ },
+ {
+ "epoch": 12.279598077763215,
+ "grad_norm": 0.324411541223526,
+ "learning_rate": 0.0006,
+ "loss": 4.198982238769531,
+ "step": 884
+ },
+ {
+ "epoch": 12.293577981651376,
+ "grad_norm": 0.2824151813983917,
+ "learning_rate": 0.0006,
+ "loss": 4.248816967010498,
+ "step": 885
+ },
+ {
+ "epoch": 12.307557885539538,
+ "grad_norm": 0.31407129764556885,
+ "learning_rate": 0.0006,
+ "loss": 4.2371320724487305,
+ "step": 886
+ },
+ {
+ "epoch": 12.321537789427698,
+ "grad_norm": 0.32920050621032715,
+ "learning_rate": 0.0006,
+ "loss": 4.210432052612305,
+ "step": 887
+ },
+ {
+ "epoch": 12.33551769331586,
+ "grad_norm": 0.315231055021286,
+ "learning_rate": 0.0006,
+ "loss": 4.219416618347168,
+ "step": 888
+ },
+ {
+ "epoch": 12.349497597204019,
+ "grad_norm": 0.30932050943374634,
+ "learning_rate": 0.0006,
+ "loss": 4.225022315979004,
+ "step": 889
+ },
+ {
+ "epoch": 12.36347750109218,
+ "grad_norm": 0.30242064595222473,
+ "learning_rate": 0.0006,
+ "loss": 4.2738518714904785,
+ "step": 890
+ },
+ {
+ "epoch": 12.37745740498034,
+ "grad_norm": 0.2926250994205475,
+ "learning_rate": 0.0006,
+ "loss": 4.231094837188721,
+ "step": 891
+ },
+ {
+ "epoch": 12.391437308868502,
+ "grad_norm": 0.2541215717792511,
+ "learning_rate": 0.0006,
+ "loss": 4.211821556091309,
+ "step": 892
+ },
+ {
+ "epoch": 12.405417212756662,
+ "grad_norm": 0.23693418502807617,
+ "learning_rate": 0.0006,
+ "loss": 4.208099365234375,
+ "step": 893
+ },
+ {
+ "epoch": 12.419397116644824,
+ "grad_norm": 0.22063226997852325,
+ "learning_rate": 0.0006,
+ "loss": 4.211234092712402,
+ "step": 894
+ },
+ {
+ "epoch": 12.433377020532983,
+ "grad_norm": 0.21536271274089813,
+ "learning_rate": 0.0006,
+ "loss": 4.199228286743164,
+ "step": 895
+ },
+ {
+ "epoch": 12.447356924421145,
+ "grad_norm": 0.243179589509964,
+ "learning_rate": 0.0006,
+ "loss": 4.204344749450684,
+ "step": 896
+ },
+ {
+ "epoch": 12.461336828309305,
+ "grad_norm": 0.2299746423959732,
+ "learning_rate": 0.0006,
+ "loss": 4.1565752029418945,
+ "step": 897
+ },
+ {
+ "epoch": 12.475316732197467,
+ "grad_norm": 0.2286847084760666,
+ "learning_rate": 0.0006,
+ "loss": 4.242953777313232,
+ "step": 898
+ },
+ {
+ "epoch": 12.489296636085626,
+ "grad_norm": 0.19463586807250977,
+ "learning_rate": 0.0006,
+ "loss": 4.214809417724609,
+ "step": 899
+ },
+ {
+ "epoch": 12.503276539973788,
+ "grad_norm": 0.1978398710489273,
+ "learning_rate": 0.0006,
+ "loss": 4.159815311431885,
+ "step": 900
+ },
+ {
+ "epoch": 12.517256443861948,
+ "grad_norm": 0.23177850246429443,
+ "learning_rate": 0.0006,
+ "loss": 4.2069902420043945,
+ "step": 901
+ },
+ {
+ "epoch": 12.53123634775011,
+ "grad_norm": 0.2408912032842636,
+ "learning_rate": 0.0006,
+ "loss": 4.206778526306152,
+ "step": 902
+ },
+ {
+ "epoch": 12.54521625163827,
+ "grad_norm": 0.21839919686317444,
+ "learning_rate": 0.0006,
+ "loss": 4.197076320648193,
+ "step": 903
+ },
+ {
+ "epoch": 12.55919615552643,
+ "grad_norm": 0.2053343504667282,
+ "learning_rate": 0.0006,
+ "loss": 4.21247673034668,
+ "step": 904
+ },
+ {
+ "epoch": 12.57317605941459,
+ "grad_norm": 0.19943439960479736,
+ "learning_rate": 0.0006,
+ "loss": 4.176966667175293,
+ "step": 905
+ },
+ {
+ "epoch": 12.587155963302752,
+ "grad_norm": 0.2012074887752533,
+ "learning_rate": 0.0006,
+ "loss": 4.210303783416748,
+ "step": 906
+ },
+ {
+ "epoch": 12.601135867190912,
+ "grad_norm": 0.22240376472473145,
+ "learning_rate": 0.0006,
+ "loss": 4.200625896453857,
+ "step": 907
+ },
+ {
+ "epoch": 12.615115771079074,
+ "grad_norm": 0.21729710698127747,
+ "learning_rate": 0.0006,
+ "loss": 4.2001953125,
+ "step": 908
+ },
+ {
+ "epoch": 12.629095674967235,
+ "grad_norm": 0.22470413148403168,
+ "learning_rate": 0.0006,
+ "loss": 4.197505950927734,
+ "step": 909
+ },
+ {
+ "epoch": 12.643075578855395,
+ "grad_norm": 0.23776157200336456,
+ "learning_rate": 0.0006,
+ "loss": 4.235603332519531,
+ "step": 910
+ },
+ {
+ "epoch": 12.657055482743557,
+ "grad_norm": 0.20616604387760162,
+ "learning_rate": 0.0006,
+ "loss": 4.193584442138672,
+ "step": 911
+ },
+ {
+ "epoch": 12.671035386631717,
+ "grad_norm": 0.1913922131061554,
+ "learning_rate": 0.0006,
+ "loss": 4.209191799163818,
+ "step": 912
+ },
+ {
+ "epoch": 12.685015290519878,
+ "grad_norm": 0.19427193701267242,
+ "learning_rate": 0.0006,
+ "loss": 4.219709396362305,
+ "step": 913
+ },
+ {
+ "epoch": 12.698995194408038,
+ "grad_norm": 0.20976558327674866,
+ "learning_rate": 0.0006,
+ "loss": 4.210859298706055,
+ "step": 914
+ },
+ {
+ "epoch": 12.7129750982962,
+ "grad_norm": 0.21571609377861023,
+ "learning_rate": 0.0006,
+ "loss": 4.189394950866699,
+ "step": 915
+ },
+ {
+ "epoch": 12.72695500218436,
+ "grad_norm": 0.2152620255947113,
+ "learning_rate": 0.0006,
+ "loss": 4.223589897155762,
+ "step": 916
+ },
+ {
+ "epoch": 12.740934906072521,
+ "grad_norm": 0.21867749094963074,
+ "learning_rate": 0.0006,
+ "loss": 4.198590278625488,
+ "step": 917
+ },
+ {
+ "epoch": 12.754914809960681,
+ "grad_norm": 0.22300855815410614,
+ "learning_rate": 0.0006,
+ "loss": 4.188891410827637,
+ "step": 918
+ },
+ {
+ "epoch": 12.768894713848843,
+ "grad_norm": 0.22197802364826202,
+ "learning_rate": 0.0006,
+ "loss": 4.190221309661865,
+ "step": 919
+ },
+ {
+ "epoch": 12.782874617737003,
+ "grad_norm": 0.20003341138362885,
+ "learning_rate": 0.0006,
+ "loss": 4.215453147888184,
+ "step": 920
+ },
+ {
+ "epoch": 12.796854521625164,
+ "grad_norm": 0.19887958467006683,
+ "learning_rate": 0.0006,
+ "loss": 4.18174934387207,
+ "step": 921
+ },
+ {
+ "epoch": 12.810834425513324,
+ "grad_norm": 0.20945803821086884,
+ "learning_rate": 0.0006,
+ "loss": 4.234947204589844,
+ "step": 922
+ },
+ {
+ "epoch": 12.824814329401486,
+ "grad_norm": 0.2253490388393402,
+ "learning_rate": 0.0006,
+ "loss": 4.2177228927612305,
+ "step": 923
+ },
+ {
+ "epoch": 12.838794233289645,
+ "grad_norm": 0.247610405087471,
+ "learning_rate": 0.0006,
+ "loss": 4.2013139724731445,
+ "step": 924
+ },
+ {
+ "epoch": 12.852774137177807,
+ "grad_norm": 0.2792088985443115,
+ "learning_rate": 0.0006,
+ "loss": 4.204774379730225,
+ "step": 925
+ },
+ {
+ "epoch": 12.866754041065967,
+ "grad_norm": 0.2839066982269287,
+ "learning_rate": 0.0006,
+ "loss": 4.186254978179932,
+ "step": 926
+ },
+ {
+ "epoch": 12.880733944954128,
+ "grad_norm": 0.2793181836605072,
+ "learning_rate": 0.0006,
+ "loss": 4.172411918640137,
+ "step": 927
+ },
+ {
+ "epoch": 12.89471384884229,
+ "grad_norm": 0.29506033658981323,
+ "learning_rate": 0.0006,
+ "loss": 4.202878475189209,
+ "step": 928
+ },
+ {
+ "epoch": 12.90869375273045,
+ "grad_norm": 0.2799845039844513,
+ "learning_rate": 0.0006,
+ "loss": 4.1563310623168945,
+ "step": 929
+ },
+ {
+ "epoch": 12.922673656618612,
+ "grad_norm": 0.23972125351428986,
+ "learning_rate": 0.0006,
+ "loss": 4.224601745605469,
+ "step": 930
+ },
+ {
+ "epoch": 12.936653560506771,
+ "grad_norm": 0.21558353304862976,
+ "learning_rate": 0.0006,
+ "loss": 4.167957305908203,
+ "step": 931
+ },
+ {
+ "epoch": 12.950633464394933,
+ "grad_norm": 0.21800188720226288,
+ "learning_rate": 0.0006,
+ "loss": 4.1746039390563965,
+ "step": 932
+ },
+ {
+ "epoch": 12.964613368283093,
+ "grad_norm": 0.2086547315120697,
+ "learning_rate": 0.0006,
+ "loss": 4.188137054443359,
+ "step": 933
+ },
+ {
+ "epoch": 12.978593272171254,
+ "grad_norm": 0.2174186110496521,
+ "learning_rate": 0.0006,
+ "loss": 4.184014320373535,
+ "step": 934
+ },
+ {
+ "epoch": 12.992573176059414,
+ "grad_norm": 0.22755110263824463,
+ "learning_rate": 0.0006,
+ "loss": 4.180912017822266,
+ "step": 935
+ },
+ {
+ "epoch": 13.0,
+ "grad_norm": 0.2735324203968048,
+ "learning_rate": 0.0006,
+ "loss": 4.201578617095947,
+ "step": 936
+ },
+ {
+ "epoch": 13.0,
+ "eval_loss": 4.396903038024902,
+ "eval_runtime": 44.5664,
+ "eval_samples_per_second": 54.795,
+ "eval_steps_per_second": 3.433,
+ "step": 936
+ },
+ {
+ "epoch": 13.013979903888162,
+ "grad_norm": 0.27577832341194153,
+ "learning_rate": 0.0006,
+ "loss": 4.149985313415527,
+ "step": 937
+ },
+ {
+ "epoch": 13.027959807776321,
+ "grad_norm": 0.25817009806632996,
+ "learning_rate": 0.0006,
+ "loss": 4.1526103019714355,
+ "step": 938
+ },
+ {
+ "epoch": 13.041939711664483,
+ "grad_norm": 0.24564379453659058,
+ "learning_rate": 0.0006,
+ "loss": 4.1661152839660645,
+ "step": 939
+ },
+ {
+ "epoch": 13.055919615552643,
+ "grad_norm": 0.2465466856956482,
+ "learning_rate": 0.0006,
+ "loss": 4.152953624725342,
+ "step": 940
+ },
+ {
+ "epoch": 13.069899519440805,
+ "grad_norm": 0.22702018916606903,
+ "learning_rate": 0.0006,
+ "loss": 4.145125389099121,
+ "step": 941
+ },
+ {
+ "epoch": 13.083879423328964,
+ "grad_norm": 0.24350613355636597,
+ "learning_rate": 0.0006,
+ "loss": 4.163095474243164,
+ "step": 942
+ },
+ {
+ "epoch": 13.097859327217126,
+ "grad_norm": 0.2504431903362274,
+ "learning_rate": 0.0006,
+ "loss": 4.136016845703125,
+ "step": 943
+ },
+ {
+ "epoch": 13.111839231105286,
+ "grad_norm": 0.24968865513801575,
+ "learning_rate": 0.0006,
+ "loss": 4.163487911224365,
+ "step": 944
+ },
+ {
+ "epoch": 13.125819134993447,
+ "grad_norm": 0.27164196968078613,
+ "learning_rate": 0.0006,
+ "loss": 4.1194353103637695,
+ "step": 945
+ },
+ {
+ "epoch": 13.139799038881607,
+ "grad_norm": 0.28127020597457886,
+ "learning_rate": 0.0006,
+ "loss": 4.184807300567627,
+ "step": 946
+ },
+ {
+ "epoch": 13.153778942769769,
+ "grad_norm": 0.24574966728687286,
+ "learning_rate": 0.0006,
+ "loss": 4.154998779296875,
+ "step": 947
+ },
+ {
+ "epoch": 13.167758846657929,
+ "grad_norm": 0.22310060262680054,
+ "learning_rate": 0.0006,
+ "loss": 4.182928085327148,
+ "step": 948
+ },
+ {
+ "epoch": 13.18173875054609,
+ "grad_norm": 0.2539508640766144,
+ "learning_rate": 0.0006,
+ "loss": 4.176900386810303,
+ "step": 949
+ },
+ {
+ "epoch": 13.19571865443425,
+ "grad_norm": 0.30925488471984863,
+ "learning_rate": 0.0006,
+ "loss": 4.1760711669921875,
+ "step": 950
+ },
+ {
+ "epoch": 13.209698558322412,
+ "grad_norm": 0.3842967450618744,
+ "learning_rate": 0.0006,
+ "loss": 4.1830949783325195,
+ "step": 951
+ },
+ {
+ "epoch": 13.223678462210572,
+ "grad_norm": 0.35950011014938354,
+ "learning_rate": 0.0006,
+ "loss": 4.131983757019043,
+ "step": 952
+ },
+ {
+ "epoch": 13.237658366098733,
+ "grad_norm": 0.29913705587387085,
+ "learning_rate": 0.0006,
+ "loss": 4.166984558105469,
+ "step": 953
+ },
+ {
+ "epoch": 13.251638269986893,
+ "grad_norm": 0.32008400559425354,
+ "learning_rate": 0.0006,
+ "loss": 4.156482696533203,
+ "step": 954
+ },
+ {
+ "epoch": 13.265618173875055,
+ "grad_norm": 0.3186642825603485,
+ "learning_rate": 0.0006,
+ "loss": 4.1661057472229,
+ "step": 955
+ },
+ {
+ "epoch": 13.279598077763215,
+ "grad_norm": 0.3194582462310791,
+ "learning_rate": 0.0006,
+ "loss": 4.169328689575195,
+ "step": 956
+ },
+ {
+ "epoch": 13.293577981651376,
+ "grad_norm": 0.3133867084980011,
+ "learning_rate": 0.0006,
+ "loss": 4.165459632873535,
+ "step": 957
+ },
+ {
+ "epoch": 13.307557885539538,
+ "grad_norm": 0.3232237696647644,
+ "learning_rate": 0.0006,
+ "loss": 4.2107439041137695,
+ "step": 958
+ },
+ {
+ "epoch": 13.321537789427698,
+ "grad_norm": 0.3133196234703064,
+ "learning_rate": 0.0006,
+ "loss": 4.184182167053223,
+ "step": 959
+ },
+ {
+ "epoch": 13.33551769331586,
+ "grad_norm": 0.296129435300827,
+ "learning_rate": 0.0006,
+ "loss": 4.168312072753906,
+ "step": 960
+ },
+ {
+ "epoch": 13.349497597204019,
+ "grad_norm": 0.2685348391532898,
+ "learning_rate": 0.0006,
+ "loss": 4.159984588623047,
+ "step": 961
+ },
+ {
+ "epoch": 13.36347750109218,
+ "grad_norm": 0.2644975781440735,
+ "learning_rate": 0.0006,
+ "loss": 4.164909362792969,
+ "step": 962
+ },
+ {
+ "epoch": 13.37745740498034,
+ "grad_norm": 0.2712913155555725,
+ "learning_rate": 0.0006,
+ "loss": 4.158056259155273,
+ "step": 963
+ },
+ {
+ "epoch": 13.391437308868502,
+ "grad_norm": 0.2687259316444397,
+ "learning_rate": 0.0006,
+ "loss": 4.182924270629883,
+ "step": 964
+ },
+ {
+ "epoch": 13.405417212756662,
+ "grad_norm": 0.25640392303466797,
+ "learning_rate": 0.0006,
+ "loss": 4.153351783752441,
+ "step": 965
+ },
+ {
+ "epoch": 13.419397116644824,
+ "grad_norm": 0.2646305561065674,
+ "learning_rate": 0.0006,
+ "loss": 4.18464469909668,
+ "step": 966
+ },
+ {
+ "epoch": 13.433377020532983,
+ "grad_norm": 0.24206851422786713,
+ "learning_rate": 0.0006,
+ "loss": 4.127564430236816,
+ "step": 967
+ },
+ {
+ "epoch": 13.447356924421145,
+ "grad_norm": 0.23800471425056458,
+ "learning_rate": 0.0006,
+ "loss": 4.163488388061523,
+ "step": 968
+ },
+ {
+ "epoch": 13.461336828309305,
+ "grad_norm": 0.22957314550876617,
+ "learning_rate": 0.0006,
+ "loss": 4.178133964538574,
+ "step": 969
+ },
+ {
+ "epoch": 13.475316732197467,
+ "grad_norm": 0.22867488861083984,
+ "learning_rate": 0.0006,
+ "loss": 4.159056186676025,
+ "step": 970
+ },
+ {
+ "epoch": 13.489296636085626,
+ "grad_norm": 0.21737419068813324,
+ "learning_rate": 0.0006,
+ "loss": 4.138628005981445,
+ "step": 971
+ },
+ {
+ "epoch": 13.503276539973788,
+ "grad_norm": 0.2319175899028778,
+ "learning_rate": 0.0006,
+ "loss": 4.14644718170166,
+ "step": 972
+ },
+ {
+ "epoch": 13.517256443861948,
+ "grad_norm": 0.2572193443775177,
+ "learning_rate": 0.0006,
+ "loss": 4.175213813781738,
+ "step": 973
+ },
+ {
+ "epoch": 13.53123634775011,
+ "grad_norm": 0.23483099043369293,
+ "learning_rate": 0.0006,
+ "loss": 4.133171558380127,
+ "step": 974
+ },
+ {
+ "epoch": 13.54521625163827,
+ "grad_norm": 0.2071552872657776,
+ "learning_rate": 0.0006,
+ "loss": 4.13730525970459,
+ "step": 975
+ },
+ {
+ "epoch": 13.55919615552643,
+ "grad_norm": 0.23074553906917572,
+ "learning_rate": 0.0006,
+ "loss": 4.175051689147949,
+ "step": 976
+ },
+ {
+ "epoch": 13.57317605941459,
+ "grad_norm": 0.2480078786611557,
+ "learning_rate": 0.0006,
+ "loss": 4.167630672454834,
+ "step": 977
+ },
+ {
+ "epoch": 13.587155963302752,
+ "grad_norm": 0.23444348573684692,
+ "learning_rate": 0.0006,
+ "loss": 4.141780853271484,
+ "step": 978
+ },
+ {
+ "epoch": 13.601135867190912,
+ "grad_norm": 0.2227829396724701,
+ "learning_rate": 0.0006,
+ "loss": 4.157566547393799,
+ "step": 979
+ },
+ {
+ "epoch": 13.615115771079074,
+ "grad_norm": 0.21478354930877686,
+ "learning_rate": 0.0006,
+ "loss": 4.131053447723389,
+ "step": 980
+ },
+ {
+ "epoch": 13.629095674967235,
+ "grad_norm": 0.1978664994239807,
+ "learning_rate": 0.0006,
+ "loss": 4.123660564422607,
+ "step": 981
+ },
+ {
+ "epoch": 13.643075578855395,
+ "grad_norm": 0.19980201125144958,
+ "learning_rate": 0.0006,
+ "loss": 4.174160480499268,
+ "step": 982
+ },
+ {
+ "epoch": 13.657055482743557,
+ "grad_norm": 0.19815555214881897,
+ "learning_rate": 0.0006,
+ "loss": 4.181703090667725,
+ "step": 983
+ },
+ {
+ "epoch": 13.671035386631717,
+ "grad_norm": 0.19524012506008148,
+ "learning_rate": 0.0006,
+ "loss": 4.163766860961914,
+ "step": 984
+ },
+ {
+ "epoch": 13.685015290519878,
+ "grad_norm": 0.2286096215248108,
+ "learning_rate": 0.0006,
+ "loss": 4.172213554382324,
+ "step": 985
+ },
+ {
+ "epoch": 13.698995194408038,
+ "grad_norm": 0.2210782766342163,
+ "learning_rate": 0.0006,
+ "loss": 4.187033653259277,
+ "step": 986
+ },
+ {
+ "epoch": 13.7129750982962,
+ "grad_norm": 0.21874216198921204,
+ "learning_rate": 0.0006,
+ "loss": 4.125125885009766,
+ "step": 987
+ },
+ {
+ "epoch": 13.72695500218436,
+ "grad_norm": 0.22848057746887207,
+ "learning_rate": 0.0006,
+ "loss": 4.153496742248535,
+ "step": 988
+ },
+ {
+ "epoch": 13.740934906072521,
+ "grad_norm": 0.2250450700521469,
+ "learning_rate": 0.0006,
+ "loss": 4.149165630340576,
+ "step": 989
+ },
+ {
+ "epoch": 13.754914809960681,
+ "grad_norm": 0.21443772315979004,
+ "learning_rate": 0.0006,
+ "loss": 4.1528825759887695,
+ "step": 990
+ },
+ {
+ "epoch": 13.768894713848843,
+ "grad_norm": 0.21927927434444427,
+ "learning_rate": 0.0006,
+ "loss": 4.146831512451172,
+ "step": 991
+ },
+ {
+ "epoch": 13.782874617737003,
+ "grad_norm": 0.2413124144077301,
+ "learning_rate": 0.0006,
+ "loss": 4.136909008026123,
+ "step": 992
+ },
+ {
+ "epoch": 13.796854521625164,
+ "grad_norm": 0.2603479325771332,
+ "learning_rate": 0.0006,
+ "loss": 4.12525749206543,
+ "step": 993
+ },
+ {
+ "epoch": 13.810834425513324,
+ "grad_norm": 0.26246970891952515,
+ "learning_rate": 0.0006,
+ "loss": 4.114049434661865,
+ "step": 994
+ },
+ {
+ "epoch": 13.824814329401486,
+ "grad_norm": 0.27031877636909485,
+ "learning_rate": 0.0006,
+ "loss": 4.1646552085876465,
+ "step": 995
+ },
+ {
+ "epoch": 13.838794233289645,
+ "grad_norm": 0.2499857395887375,
+ "learning_rate": 0.0006,
+ "loss": 4.139284133911133,
+ "step": 996
+ },
+ {
+ "epoch": 13.852774137177807,
+ "grad_norm": 0.22026537358760834,
+ "learning_rate": 0.0006,
+ "loss": 4.142191410064697,
+ "step": 997
+ },
+ {
+ "epoch": 13.866754041065967,
+ "grad_norm": 0.23738551139831543,
+ "learning_rate": 0.0006,
+ "loss": 4.1422882080078125,
+ "step": 998
+ },
+ {
+ "epoch": 13.880733944954128,
+ "grad_norm": 0.2416357398033142,
+ "learning_rate": 0.0006,
+ "loss": 4.14063835144043,
+ "step": 999
+ },
+ {
+ "epoch": 13.89471384884229,
+ "grad_norm": 0.33822184801101685,
+ "learning_rate": 0.0006,
+ "loss": 4.12839412689209,
+ "step": 1000
+ },
+ {
+ "epoch": 13.90869375273045,
+ "grad_norm": 0.3409678339958191,
+ "learning_rate": 0.0006,
+ "loss": 4.145351886749268,
+ "step": 1001
+ },
+ {
+ "epoch": 13.922673656618612,
+ "grad_norm": 0.2467597872018814,
+ "learning_rate": 0.0006,
+ "loss": 4.155339241027832,
+ "step": 1002
+ },
+ {
+ "epoch": 13.936653560506771,
+ "grad_norm": 0.2314649075269699,
+ "learning_rate": 0.0006,
+ "loss": 4.130176067352295,
+ "step": 1003
+ },
+ {
+ "epoch": 13.950633464394933,
+ "grad_norm": 0.23701290786266327,
+ "learning_rate": 0.0006,
+ "loss": 4.19205379486084,
+ "step": 1004
+ },
+ {
+ "epoch": 13.964613368283093,
+ "grad_norm": 0.2466491460800171,
+ "learning_rate": 0.0006,
+ "loss": 4.118908882141113,
+ "step": 1005
+ },
+ {
+ "epoch": 13.978593272171254,
+ "grad_norm": 0.23746836185455322,
+ "learning_rate": 0.0006,
+ "loss": 4.16111946105957,
+ "step": 1006
+ },
+ {
+ "epoch": 13.992573176059414,
+ "grad_norm": 0.24497751891613007,
+ "learning_rate": 0.0006,
+ "loss": 4.148624420166016,
+ "step": 1007
+ },
+ {
+ "epoch": 14.0,
+ "grad_norm": 0.25735899806022644,
+ "learning_rate": 0.0006,
+ "loss": 4.12002420425415,
+ "step": 1008
+ },
+ {
+ "epoch": 14.0,
+ "eval_loss": 4.335351467132568,
+ "eval_runtime": 44.0523,
+ "eval_samples_per_second": 55.434,
+ "eval_steps_per_second": 3.473,
+ "step": 1008
+ },
+ {
+ "epoch": 14.013979903888162,
+ "grad_norm": 0.24570082128047943,
+ "learning_rate": 0.0006,
+ "loss": 4.1036176681518555,
+ "step": 1009
+ },
+ {
+ "epoch": 14.027959807776321,
+ "grad_norm": 0.2525855302810669,
+ "learning_rate": 0.0006,
+ "loss": 4.142077445983887,
+ "step": 1010
+ },
+ {
+ "epoch": 14.041939711664483,
+ "grad_norm": 0.2701111435890198,
+ "learning_rate": 0.0006,
+ "loss": 4.096988677978516,
+ "step": 1011
+ },
+ {
+ "epoch": 14.055919615552643,
+ "grad_norm": 0.28173309564590454,
+ "learning_rate": 0.0006,
+ "loss": 4.148448944091797,
+ "step": 1012
+ },
+ {
+ "epoch": 14.069899519440805,
+ "grad_norm": 0.2651294469833374,
+ "learning_rate": 0.0006,
+ "loss": 4.121731281280518,
+ "step": 1013
+ },
+ {
+ "epoch": 14.083879423328964,
+ "grad_norm": 0.21160121262073517,
+ "learning_rate": 0.0006,
+ "loss": 4.108980178833008,
+ "step": 1014
+ },
+ {
+ "epoch": 14.097859327217126,
+ "grad_norm": 0.24786953628063202,
+ "learning_rate": 0.0006,
+ "loss": 4.133942604064941,
+ "step": 1015
+ },
+ {
+ "epoch": 14.111839231105286,
+ "grad_norm": 0.2722747027873993,
+ "learning_rate": 0.0006,
+ "loss": 4.115242958068848,
+ "step": 1016
+ },
+ {
+ "epoch": 14.125819134993447,
+ "grad_norm": 0.273360013961792,
+ "learning_rate": 0.0006,
+ "loss": 4.059296607971191,
+ "step": 1017
+ },
+ {
+ "epoch": 14.139799038881607,
+ "grad_norm": 0.2541784942150116,
+ "learning_rate": 0.0006,
+ "loss": 4.118365287780762,
+ "step": 1018
+ },
+ {
+ "epoch": 14.153778942769769,
+ "grad_norm": 0.23806381225585938,
+ "learning_rate": 0.0006,
+ "loss": 4.102812767028809,
+ "step": 1019
+ },
+ {
+ "epoch": 14.167758846657929,
+ "grad_norm": 0.2541005313396454,
+ "learning_rate": 0.0006,
+ "loss": 4.093264579772949,
+ "step": 1020
+ },
+ {
+ "epoch": 14.18173875054609,
+ "grad_norm": 0.2619539499282837,
+ "learning_rate": 0.0006,
+ "loss": 4.114917278289795,
+ "step": 1021
+ },
+ {
+ "epoch": 14.19571865443425,
+ "grad_norm": 0.2466963529586792,
+ "learning_rate": 0.0006,
+ "loss": 4.098258972167969,
+ "step": 1022
+ },
+ {
+ "epoch": 14.209698558322412,
+ "grad_norm": 0.24341611564159393,
+ "learning_rate": 0.0006,
+ "loss": 4.109346389770508,
+ "step": 1023
+ },
+ {
+ "epoch": 14.223678462210572,
+ "grad_norm": 0.23977765440940857,
+ "learning_rate": 0.0006,
+ "loss": 4.106716156005859,
+ "step": 1024
+ },
+ {
+ "epoch": 14.237658366098733,
+ "grad_norm": 0.253528356552124,
+ "learning_rate": 0.0006,
+ "loss": 4.102226257324219,
+ "step": 1025
+ },
+ {
+ "epoch": 14.251638269986893,
+ "grad_norm": 0.26954543590545654,
+ "learning_rate": 0.0006,
+ "loss": 4.107413291931152,
+ "step": 1026
+ },
+ {
+ "epoch": 14.265618173875055,
+ "grad_norm": 0.2610514760017395,
+ "learning_rate": 0.0006,
+ "loss": 4.110824108123779,
+ "step": 1027
+ },
+ {
+ "epoch": 14.279598077763215,
+ "grad_norm": 0.2579168677330017,
+ "learning_rate": 0.0006,
+ "loss": 4.082438945770264,
+ "step": 1028
+ },
+ {
+ "epoch": 14.293577981651376,
+ "grad_norm": 0.26916536688804626,
+ "learning_rate": 0.0006,
+ "loss": 4.075734615325928,
+ "step": 1029
+ },
+ {
+ "epoch": 14.307557885539538,
+ "grad_norm": 0.2998618185520172,
+ "learning_rate": 0.0006,
+ "loss": 4.088419437408447,
+ "step": 1030
+ },
+ {
+ "epoch": 14.321537789427698,
+ "grad_norm": 0.3162737190723419,
+ "learning_rate": 0.0006,
+ "loss": 4.125833034515381,
+ "step": 1031
+ },
+ {
+ "epoch": 14.33551769331586,
+ "grad_norm": 0.318601131439209,
+ "learning_rate": 0.0006,
+ "loss": 4.077424049377441,
+ "step": 1032
+ },
+ {
+ "epoch": 14.349497597204019,
+ "grad_norm": 0.32113415002822876,
+ "learning_rate": 0.0006,
+ "loss": 4.113360404968262,
+ "step": 1033
+ },
+ {
+ "epoch": 14.36347750109218,
+ "grad_norm": 0.3150886297225952,
+ "learning_rate": 0.0006,
+ "loss": 4.100013732910156,
+ "step": 1034
+ },
+ {
+ "epoch": 14.37745740498034,
+ "grad_norm": 0.29279956221580505,
+ "learning_rate": 0.0006,
+ "loss": 4.136394500732422,
+ "step": 1035
+ },
+ {
+ "epoch": 14.391437308868502,
+ "grad_norm": 0.28532543778419495,
+ "learning_rate": 0.0006,
+ "loss": 4.138948440551758,
+ "step": 1036
+ },
+ {
+ "epoch": 14.405417212756662,
+ "grad_norm": 0.2825978398323059,
+ "learning_rate": 0.0006,
+ "loss": 4.112217903137207,
+ "step": 1037
+ },
+ {
+ "epoch": 14.419397116644824,
+ "grad_norm": 0.2891198694705963,
+ "learning_rate": 0.0006,
+ "loss": 4.102682113647461,
+ "step": 1038
+ },
+ {
+ "epoch": 14.433377020532983,
+ "grad_norm": 0.2917391061782837,
+ "learning_rate": 0.0006,
+ "loss": 4.120752811431885,
+ "step": 1039
+ },
+ {
+ "epoch": 14.447356924421145,
+ "grad_norm": 0.2589806914329529,
+ "learning_rate": 0.0006,
+ "loss": 4.130519390106201,
+ "step": 1040
+ },
+ {
+ "epoch": 14.461336828309305,
+ "grad_norm": 0.2674788534641266,
+ "learning_rate": 0.0006,
+ "loss": 4.130382537841797,
+ "step": 1041
+ },
+ {
+ "epoch": 14.475316732197467,
+ "grad_norm": 0.2820362150669098,
+ "learning_rate": 0.0006,
+ "loss": 4.13947868347168,
+ "step": 1042
+ },
+ {
+ "epoch": 14.489296636085626,
+ "grad_norm": 0.2650109529495239,
+ "learning_rate": 0.0006,
+ "loss": 4.130346775054932,
+ "step": 1043
+ },
+ {
+ "epoch": 14.503276539973788,
+ "grad_norm": 0.29137638211250305,
+ "learning_rate": 0.0006,
+ "loss": 4.055751800537109,
+ "step": 1044
+ },
+ {
+ "epoch": 14.517256443861948,
+ "grad_norm": 0.3232433497905731,
+ "learning_rate": 0.0006,
+ "loss": 4.114810943603516,
+ "step": 1045
+ },
+ {
+ "epoch": 14.53123634775011,
+ "grad_norm": 0.2724473476409912,
+ "learning_rate": 0.0006,
+ "loss": 4.088351249694824,
+ "step": 1046
+ },
+ {
+ "epoch": 14.54521625163827,
+ "grad_norm": 0.23994430899620056,
+ "learning_rate": 0.0006,
+ "loss": 4.110936164855957,
+ "step": 1047
+ },
+ {
+ "epoch": 14.55919615552643,
+ "grad_norm": 0.2422720044851303,
+ "learning_rate": 0.0006,
+ "loss": 4.132844924926758,
+ "step": 1048
+ },
+ {
+ "epoch": 14.57317605941459,
+ "grad_norm": 0.21148815751075745,
+ "learning_rate": 0.0006,
+ "loss": 4.102499961853027,
+ "step": 1049
+ },
+ {
+ "epoch": 14.587155963302752,
+ "grad_norm": 0.22221639752388,
+ "learning_rate": 0.0006,
+ "loss": 4.126241683959961,
+ "step": 1050
+ },
+ {
+ "epoch": 14.601135867190912,
+ "grad_norm": 0.2538735866546631,
+ "learning_rate": 0.0006,
+ "loss": 4.116817951202393,
+ "step": 1051
+ },
+ {
+ "epoch": 14.615115771079074,
+ "grad_norm": 0.2555900514125824,
+ "learning_rate": 0.0006,
+ "loss": 4.106309413909912,
+ "step": 1052
+ },
+ {
+ "epoch": 14.629095674967235,
+ "grad_norm": 0.24753783643245697,
+ "learning_rate": 0.0006,
+ "loss": 4.1015119552612305,
+ "step": 1053
+ },
+ {
+ "epoch": 14.643075578855395,
+ "grad_norm": 0.238885298371315,
+ "learning_rate": 0.0006,
+ "loss": 4.120419502258301,
+ "step": 1054
+ },
+ {
+ "epoch": 14.657055482743557,
+ "grad_norm": 0.22693610191345215,
+ "learning_rate": 0.0006,
+ "loss": 4.084968566894531,
+ "step": 1055
+ },
+ {
+ "epoch": 14.671035386631717,
+ "grad_norm": 0.2100025862455368,
+ "learning_rate": 0.0006,
+ "loss": 4.108001708984375,
+ "step": 1056
+ },
+ {
+ "epoch": 14.685015290519878,
+ "grad_norm": 0.20437054336071014,
+ "learning_rate": 0.0006,
+ "loss": 4.151417255401611,
+ "step": 1057
+ },
+ {
+ "epoch": 14.698995194408038,
+ "grad_norm": 0.1926720291376114,
+ "learning_rate": 0.0006,
+ "loss": 4.091334342956543,
+ "step": 1058
+ },
+ {
+ "epoch": 14.7129750982962,
+ "grad_norm": 0.2120140641927719,
+ "learning_rate": 0.0006,
+ "loss": 4.111706256866455,
+ "step": 1059
+ },
+ {
+ "epoch": 14.72695500218436,
+ "grad_norm": 0.22877076268196106,
+ "learning_rate": 0.0006,
+ "loss": 4.123166084289551,
+ "step": 1060
+ },
+ {
+ "epoch": 14.740934906072521,
+ "grad_norm": 0.22149473428726196,
+ "learning_rate": 0.0006,
+ "loss": 4.099740028381348,
+ "step": 1061
+ },
+ {
+ "epoch": 14.754914809960681,
+ "grad_norm": 0.2351604402065277,
+ "learning_rate": 0.0006,
+ "loss": 4.066174507141113,
+ "step": 1062
+ },
+ {
+ "epoch": 14.768894713848843,
+ "grad_norm": 0.22895802557468414,
+ "learning_rate": 0.0006,
+ "loss": 4.101897239685059,
+ "step": 1063
+ },
+ {
+ "epoch": 14.782874617737003,
+ "grad_norm": 0.22050750255584717,
+ "learning_rate": 0.0006,
+ "loss": 4.122953414916992,
+ "step": 1064
+ },
+ {
+ "epoch": 14.796854521625164,
+ "grad_norm": 0.23255324363708496,
+ "learning_rate": 0.0006,
+ "loss": 4.11297607421875,
+ "step": 1065
+ },
+ {
+ "epoch": 14.810834425513324,
+ "grad_norm": 0.24522703886032104,
+ "learning_rate": 0.0006,
+ "loss": 4.131030082702637,
+ "step": 1066
+ },
+ {
+ "epoch": 14.824814329401486,
+ "grad_norm": 0.2492702752351761,
+ "learning_rate": 0.0006,
+ "loss": 4.076324939727783,
+ "step": 1067
+ },
+ {
+ "epoch": 14.838794233289645,
+ "grad_norm": 0.24410948157310486,
+ "learning_rate": 0.0006,
+ "loss": 4.109020709991455,
+ "step": 1068
+ },
+ {
+ "epoch": 14.852774137177807,
+ "grad_norm": 0.2463168203830719,
+ "learning_rate": 0.0006,
+ "loss": 4.135679244995117,
+ "step": 1069
+ },
+ {
+ "epoch": 14.866754041065967,
+ "grad_norm": 0.2563146650791168,
+ "learning_rate": 0.0006,
+ "loss": 4.0958027839660645,
+ "step": 1070
+ },
+ {
+ "epoch": 14.880733944954128,
+ "grad_norm": 0.261167049407959,
+ "learning_rate": 0.0006,
+ "loss": 4.114803314208984,
+ "step": 1071
+ },
+ {
+ "epoch": 14.89471384884229,
+ "grad_norm": 0.2593795955181122,
+ "learning_rate": 0.0006,
+ "loss": 4.1210618019104,
+ "step": 1072
+ },
+ {
+ "epoch": 14.90869375273045,
+ "grad_norm": 0.27184173464775085,
+ "learning_rate": 0.0006,
+ "loss": 4.095145225524902,
+ "step": 1073
+ },
+ {
+ "epoch": 14.922673656618612,
+ "grad_norm": 0.25289732217788696,
+ "learning_rate": 0.0006,
+ "loss": 4.107388973236084,
+ "step": 1074
+ },
+ {
+ "epoch": 14.936653560506771,
+ "grad_norm": 0.2176840454339981,
+ "learning_rate": 0.0006,
+ "loss": 4.105966567993164,
+ "step": 1075
+ },
+ {
+ "epoch": 14.950633464394933,
+ "grad_norm": 0.20930173993110657,
+ "learning_rate": 0.0006,
+ "loss": 4.126853942871094,
+ "step": 1076
+ },
+ {
+ "epoch": 14.964613368283093,
+ "grad_norm": 0.20850051939487457,
+ "learning_rate": 0.0006,
+ "loss": 4.074934959411621,
+ "step": 1077
+ },
+ {
+ "epoch": 14.978593272171254,
+ "grad_norm": 0.21987544000148773,
+ "learning_rate": 0.0006,
+ "loss": 4.123321533203125,
+ "step": 1078
+ },
+ {
+ "epoch": 14.992573176059414,
+ "grad_norm": 0.23821689188480377,
+ "learning_rate": 0.0006,
+ "loss": 4.082647323608398,
+ "step": 1079
+ },
+ {
+ "epoch": 15.0,
+ "grad_norm": 0.2590881288051605,
+ "learning_rate": 0.0006,
+ "loss": 4.113482475280762,
+ "step": 1080
+ },
+ {
+ "epoch": 15.0,
+ "eval_loss": 4.286936283111572,
+ "eval_runtime": 44.2665,
+ "eval_samples_per_second": 55.166,
+ "eval_steps_per_second": 3.456,
+ "step": 1080
+ },
+ {
+ "epoch": 15.013979903888162,
+ "grad_norm": 0.27885961532592773,
+ "learning_rate": 0.0006,
+ "loss": 4.0825958251953125,
+ "step": 1081
+ },
+ {
+ "epoch": 15.027959807776321,
+ "grad_norm": 0.2751246690750122,
+ "learning_rate": 0.0006,
+ "loss": 4.049782752990723,
+ "step": 1082
+ },
+ {
+ "epoch": 15.041939711664483,
+ "grad_norm": 0.25238561630249023,
+ "learning_rate": 0.0006,
+ "loss": 4.067366600036621,
+ "step": 1083
+ },
+ {
+ "epoch": 15.055919615552643,
+ "grad_norm": 0.27481040358543396,
+ "learning_rate": 0.0006,
+ "loss": 4.089946746826172,
+ "step": 1084
+ },
+ {
+ "epoch": 15.069899519440805,
+ "grad_norm": 0.2666703164577484,
+ "learning_rate": 0.0006,
+ "loss": 4.071957588195801,
+ "step": 1085
+ },
+ {
+ "epoch": 15.083879423328964,
+ "grad_norm": 0.2532065212726593,
+ "learning_rate": 0.0006,
+ "loss": 4.091561794281006,
+ "step": 1086
+ },
+ {
+ "epoch": 15.097859327217126,
+ "grad_norm": 0.23562374711036682,
+ "learning_rate": 0.0006,
+ "loss": 4.074953079223633,
+ "step": 1087
+ },
+ {
+ "epoch": 15.111839231105286,
+ "grad_norm": 0.2498065084218979,
+ "learning_rate": 0.0006,
+ "loss": 4.056004047393799,
+ "step": 1088
+ },
+ {
+ "epoch": 15.125819134993447,
+ "grad_norm": 0.257046639919281,
+ "learning_rate": 0.0006,
+ "loss": 4.044149875640869,
+ "step": 1089
+ },
+ {
+ "epoch": 15.139799038881607,
+ "grad_norm": 0.2417808622121811,
+ "learning_rate": 0.0006,
+ "loss": 4.071811676025391,
+ "step": 1090
+ },
+ {
+ "epoch": 15.153778942769769,
+ "grad_norm": 0.24742013216018677,
+ "learning_rate": 0.0006,
+ "loss": 4.081482887268066,
+ "step": 1091
+ },
+ {
+ "epoch": 15.167758846657929,
+ "grad_norm": 0.2610231637954712,
+ "learning_rate": 0.0006,
+ "loss": 4.06953763961792,
+ "step": 1092
+ },
+ {
+ "epoch": 15.18173875054609,
+ "grad_norm": 0.24688200652599335,
+ "learning_rate": 0.0006,
+ "loss": 4.079700469970703,
+ "step": 1093
+ },
+ {
+ "epoch": 15.19571865443425,
+ "grad_norm": 0.2650167942047119,
+ "learning_rate": 0.0006,
+ "loss": 4.082088947296143,
+ "step": 1094
+ },
+ {
+ "epoch": 15.209698558322412,
+ "grad_norm": 0.25913330912590027,
+ "learning_rate": 0.0006,
+ "loss": 4.081713676452637,
+ "step": 1095
+ },
+ {
+ "epoch": 15.223678462210572,
+ "grad_norm": 0.2547631561756134,
+ "learning_rate": 0.0006,
+ "loss": 4.073573112487793,
+ "step": 1096
+ },
+ {
+ "epoch": 15.237658366098733,
+ "grad_norm": 0.2732609510421753,
+ "learning_rate": 0.0006,
+ "loss": 4.10186767578125,
+ "step": 1097
+ },
+ {
+ "epoch": 15.251638269986893,
+ "grad_norm": 0.2990017533302307,
+ "learning_rate": 0.0006,
+ "loss": 4.085466384887695,
+ "step": 1098
+ },
+ {
+ "epoch": 15.265618173875055,
+ "grad_norm": 0.30252209305763245,
+ "learning_rate": 0.0006,
+ "loss": 4.077337265014648,
+ "step": 1099
+ },
+ {
+ "epoch": 15.279598077763215,
+ "grad_norm": 0.30046045780181885,
+ "learning_rate": 0.0006,
+ "loss": 4.0895891189575195,
+ "step": 1100
+ },
+ {
+ "epoch": 15.293577981651376,
+ "grad_norm": 0.2779843211174011,
+ "learning_rate": 0.0006,
+ "loss": 4.060354709625244,
+ "step": 1101
+ },
+ {
+ "epoch": 15.307557885539538,
+ "grad_norm": 0.26914986968040466,
+ "learning_rate": 0.0006,
+ "loss": 4.07314395904541,
+ "step": 1102
+ },
+ {
+ "epoch": 15.321537789427698,
+ "grad_norm": 0.24605873227119446,
+ "learning_rate": 0.0006,
+ "loss": 4.051377296447754,
+ "step": 1103
+ },
+ {
+ "epoch": 15.33551769331586,
+ "grad_norm": 0.25634095072746277,
+ "learning_rate": 0.0006,
+ "loss": 4.082427024841309,
+ "step": 1104
+ },
+ {
+ "epoch": 15.349497597204019,
+ "grad_norm": 0.2888158857822418,
+ "learning_rate": 0.0006,
+ "loss": 4.074253082275391,
+ "step": 1105
+ },
+ {
+ "epoch": 15.36347750109218,
+ "grad_norm": 0.2758261561393738,
+ "learning_rate": 0.0006,
+ "loss": 4.08344841003418,
+ "step": 1106
+ },
+ {
+ "epoch": 15.37745740498034,
+ "grad_norm": 0.26937270164489746,
+ "learning_rate": 0.0006,
+ "loss": 4.063424587249756,
+ "step": 1107
+ },
+ {
+ "epoch": 15.391437308868502,
+ "grad_norm": 0.2739955484867096,
+ "learning_rate": 0.0006,
+ "loss": 4.08005952835083,
+ "step": 1108
+ },
+ {
+ "epoch": 15.405417212756662,
+ "grad_norm": 0.2635386288166046,
+ "learning_rate": 0.0006,
+ "loss": 4.087360382080078,
+ "step": 1109
+ },
+ {
+ "epoch": 15.419397116644824,
+ "grad_norm": 0.2619768977165222,
+ "learning_rate": 0.0006,
+ "loss": 4.072653770446777,
+ "step": 1110
+ },
+ {
+ "epoch": 15.433377020532983,
+ "grad_norm": 0.24154804646968842,
+ "learning_rate": 0.0006,
+ "loss": 4.084464073181152,
+ "step": 1111
+ },
+ {
+ "epoch": 15.447356924421145,
+ "grad_norm": 0.24236027896404266,
+ "learning_rate": 0.0006,
+ "loss": 4.078777313232422,
+ "step": 1112
+ },
+ {
+ "epoch": 15.461336828309305,
+ "grad_norm": 0.24653038382530212,
+ "learning_rate": 0.0006,
+ "loss": 4.075024604797363,
+ "step": 1113
+ },
+ {
+ "epoch": 15.475316732197467,
+ "grad_norm": 0.27106523513793945,
+ "learning_rate": 0.0006,
+ "loss": 4.060937881469727,
+ "step": 1114
+ },
+ {
+ "epoch": 15.489296636085626,
+ "grad_norm": 0.25109633803367615,
+ "learning_rate": 0.0006,
+ "loss": 4.081971168518066,
+ "step": 1115
+ },
+ {
+ "epoch": 15.503276539973788,
+ "grad_norm": 0.23452287912368774,
+ "learning_rate": 0.0006,
+ "loss": 4.0762834548950195,
+ "step": 1116
+ },
+ {
+ "epoch": 15.517256443861948,
+ "grad_norm": 0.25415024161338806,
+ "learning_rate": 0.0006,
+ "loss": 4.069386959075928,
+ "step": 1117
+ },
+ {
+ "epoch": 15.53123634775011,
+ "grad_norm": 0.25448229908943176,
+ "learning_rate": 0.0006,
+ "loss": 4.075098514556885,
+ "step": 1118
+ },
+ {
+ "epoch": 15.54521625163827,
+ "grad_norm": 0.25679755210876465,
+ "learning_rate": 0.0006,
+ "loss": 4.097431182861328,
+ "step": 1119
+ },
+ {
+ "epoch": 15.55919615552643,
+ "grad_norm": 0.25973212718963623,
+ "learning_rate": 0.0006,
+ "loss": 4.058948516845703,
+ "step": 1120
+ },
+ {
+ "epoch": 15.57317605941459,
+ "grad_norm": 0.24511456489562988,
+ "learning_rate": 0.0006,
+ "loss": 4.092263698577881,
+ "step": 1121
+ },
+ {
+ "epoch": 15.587155963302752,
+ "grad_norm": 0.22949442267417908,
+ "learning_rate": 0.0006,
+ "loss": 4.0526604652404785,
+ "step": 1122
+ },
+ {
+ "epoch": 15.601135867190912,
+ "grad_norm": 0.22486285865306854,
+ "learning_rate": 0.0006,
+ "loss": 4.051939010620117,
+ "step": 1123
+ },
+ {
+ "epoch": 15.615115771079074,
+ "grad_norm": 0.22183601558208466,
+ "learning_rate": 0.0006,
+ "loss": 4.065430641174316,
+ "step": 1124
+ },
+ {
+ "epoch": 15.629095674967235,
+ "grad_norm": 0.2531328797340393,
+ "learning_rate": 0.0006,
+ "loss": 4.069165229797363,
+ "step": 1125
+ },
+ {
+ "epoch": 15.643075578855395,
+ "grad_norm": 0.24403320252895355,
+ "learning_rate": 0.0006,
+ "loss": 4.055041790008545,
+ "step": 1126
+ },
+ {
+ "epoch": 15.657055482743557,
+ "grad_norm": 0.24504756927490234,
+ "learning_rate": 0.0006,
+ "loss": 4.035850524902344,
+ "step": 1127
+ },
+ {
+ "epoch": 15.671035386631717,
+ "grad_norm": 0.23812057077884674,
+ "learning_rate": 0.0006,
+ "loss": 4.049278259277344,
+ "step": 1128
+ },
+ {
+ "epoch": 15.685015290519878,
+ "grad_norm": 0.23694153130054474,
+ "learning_rate": 0.0006,
+ "loss": 4.065816402435303,
+ "step": 1129
+ },
+ {
+ "epoch": 15.698995194408038,
+ "grad_norm": 0.23252786695957184,
+ "learning_rate": 0.0006,
+ "loss": 4.05952262878418,
+ "step": 1130
+ },
+ {
+ "epoch": 15.7129750982962,
+ "grad_norm": 0.2243805080652237,
+ "learning_rate": 0.0006,
+ "loss": 4.058291435241699,
+ "step": 1131
+ },
+ {
+ "epoch": 15.72695500218436,
+ "grad_norm": 0.2200988084077835,
+ "learning_rate": 0.0006,
+ "loss": 4.040788650512695,
+ "step": 1132
+ },
+ {
+ "epoch": 15.740934906072521,
+ "grad_norm": 0.21460631489753723,
+ "learning_rate": 0.0006,
+ "loss": 4.072552680969238,
+ "step": 1133
+ },
+ {
+ "epoch": 15.754914809960681,
+ "grad_norm": 0.2056441456079483,
+ "learning_rate": 0.0006,
+ "loss": 4.059467315673828,
+ "step": 1134
+ },
+ {
+ "epoch": 15.768894713848843,
+ "grad_norm": 0.2068045437335968,
+ "learning_rate": 0.0006,
+ "loss": 4.063803195953369,
+ "step": 1135
+ },
+ {
+ "epoch": 15.782874617737003,
+ "grad_norm": 0.21307601034641266,
+ "learning_rate": 0.0006,
+ "loss": 4.093092918395996,
+ "step": 1136
+ },
+ {
+ "epoch": 15.796854521625164,
+ "grad_norm": 0.20729634165763855,
+ "learning_rate": 0.0006,
+ "loss": 4.066030502319336,
+ "step": 1137
+ },
+ {
+ "epoch": 15.810834425513324,
+ "grad_norm": 0.2097514122724533,
+ "learning_rate": 0.0006,
+ "loss": 4.077326774597168,
+ "step": 1138
+ },
+ {
+ "epoch": 15.824814329401486,
+ "grad_norm": 0.21884000301361084,
+ "learning_rate": 0.0006,
+ "loss": 4.0595598220825195,
+ "step": 1139
+ },
+ {
+ "epoch": 15.838794233289645,
+ "grad_norm": 0.22220250964164734,
+ "learning_rate": 0.0006,
+ "loss": 4.061574459075928,
+ "step": 1140
+ },
+ {
+ "epoch": 15.852774137177807,
+ "grad_norm": 0.23189949989318848,
+ "learning_rate": 0.0006,
+ "loss": 4.0504045486450195,
+ "step": 1141
+ },
+ {
+ "epoch": 15.866754041065967,
+ "grad_norm": 0.226649671792984,
+ "learning_rate": 0.0006,
+ "loss": 4.060986518859863,
+ "step": 1142
+ },
+ {
+ "epoch": 15.880733944954128,
+ "grad_norm": 0.2456834763288498,
+ "learning_rate": 0.0006,
+ "loss": 4.038525581359863,
+ "step": 1143
+ },
+ {
+ "epoch": 15.89471384884229,
+ "grad_norm": 0.2818352282047272,
+ "learning_rate": 0.0006,
+ "loss": 4.062709331512451,
+ "step": 1144
+ },
+ {
+ "epoch": 15.90869375273045,
+ "grad_norm": 0.2850170135498047,
+ "learning_rate": 0.0006,
+ "loss": 4.0683274269104,
+ "step": 1145
+ },
+ {
+ "epoch": 15.922673656618612,
+ "grad_norm": 0.27691730856895447,
+ "learning_rate": 0.0006,
+ "loss": 4.076540470123291,
+ "step": 1146
+ },
+ {
+ "epoch": 15.936653560506771,
+ "grad_norm": 0.2685548961162567,
+ "learning_rate": 0.0006,
+ "loss": 4.048116683959961,
+ "step": 1147
+ },
+ {
+ "epoch": 15.950633464394933,
+ "grad_norm": 0.2452288419008255,
+ "learning_rate": 0.0006,
+ "loss": 4.06640625,
+ "step": 1148
+ },
+ {
+ "epoch": 15.964613368283093,
+ "grad_norm": 0.2601441740989685,
+ "learning_rate": 0.0006,
+ "loss": 4.073277473449707,
+ "step": 1149
+ },
+ {
+ "epoch": 15.978593272171254,
+ "grad_norm": 0.2748197913169861,
+ "learning_rate": 0.0006,
+ "loss": 4.0332536697387695,
+ "step": 1150
+ },
+ {
+ "epoch": 15.992573176059414,
+ "grad_norm": 0.27249959111213684,
+ "learning_rate": 0.0006,
+ "loss": 3.9952516555786133,
+ "step": 1151
+ },
+ {
+ "epoch": 16.0,
+ "grad_norm": 0.3475601375102997,
+ "learning_rate": 0.0006,
+ "loss": 4.040761947631836,
+ "step": 1152
+ },
+ {
+ "epoch": 16.0,
+ "eval_loss": 4.237997531890869,
+ "eval_runtime": 43.8692,
+ "eval_samples_per_second": 55.665,
+ "eval_steps_per_second": 3.488,
+ "step": 1152
+ },
+ {
+ "epoch": 16.01397990388816,
+ "grad_norm": 0.3365611433982849,
+ "learning_rate": 0.0006,
+ "loss": 4.031302452087402,
+ "step": 1153
+ },
+ {
+ "epoch": 16.027959807776323,
+ "grad_norm": 0.3020530641078949,
+ "learning_rate": 0.0006,
+ "loss": 4.036273956298828,
+ "step": 1154
+ },
+ {
+ "epoch": 16.041939711664483,
+ "grad_norm": 0.25277993083000183,
+ "learning_rate": 0.0006,
+ "loss": 4.007067680358887,
+ "step": 1155
+ },
+ {
+ "epoch": 16.055919615552643,
+ "grad_norm": 0.24762840569019318,
+ "learning_rate": 0.0006,
+ "loss": 4.046561241149902,
+ "step": 1156
+ },
+ {
+ "epoch": 16.069899519440803,
+ "grad_norm": 0.25236397981643677,
+ "learning_rate": 0.0006,
+ "loss": 4.061616897583008,
+ "step": 1157
+ },
+ {
+ "epoch": 16.083879423328966,
+ "grad_norm": 0.22789105772972107,
+ "learning_rate": 0.0006,
+ "loss": 4.010061740875244,
+ "step": 1158
+ },
+ {
+ "epoch": 16.097859327217126,
+ "grad_norm": 0.21866244077682495,
+ "learning_rate": 0.0006,
+ "loss": 4.0181097984313965,
+ "step": 1159
+ },
+ {
+ "epoch": 16.111839231105286,
+ "grad_norm": 0.21889029443264008,
+ "learning_rate": 0.0006,
+ "loss": 4.012239456176758,
+ "step": 1160
+ },
+ {
+ "epoch": 16.125819134993446,
+ "grad_norm": 0.23002485930919647,
+ "learning_rate": 0.0006,
+ "loss": 4.034092426300049,
+ "step": 1161
+ },
+ {
+ "epoch": 16.13979903888161,
+ "grad_norm": 0.2271798551082611,
+ "learning_rate": 0.0006,
+ "loss": 4.026222229003906,
+ "step": 1162
+ },
+ {
+ "epoch": 16.15377894276977,
+ "grad_norm": 0.238200843334198,
+ "learning_rate": 0.0006,
+ "loss": 4.044692039489746,
+ "step": 1163
+ },
+ {
+ "epoch": 16.16775884665793,
+ "grad_norm": 0.2281467169523239,
+ "learning_rate": 0.0006,
+ "loss": 4.032305717468262,
+ "step": 1164
+ },
+ {
+ "epoch": 16.18173875054609,
+ "grad_norm": 0.2213946431875229,
+ "learning_rate": 0.0006,
+ "loss": 4.048737525939941,
+ "step": 1165
+ },
+ {
+ "epoch": 16.195718654434252,
+ "grad_norm": 0.26638558506965637,
+ "learning_rate": 0.0006,
+ "loss": 4.006335258483887,
+ "step": 1166
+ },
+ {
+ "epoch": 16.209698558322412,
+ "grad_norm": 0.2780219316482544,
+ "learning_rate": 0.0006,
+ "loss": 4.049234390258789,
+ "step": 1167
+ },
+ {
+ "epoch": 16.22367846221057,
+ "grad_norm": 0.27425870299339294,
+ "learning_rate": 0.0006,
+ "loss": 4.017177104949951,
+ "step": 1168
+ },
+ {
+ "epoch": 16.23765836609873,
+ "grad_norm": 0.2596667408943176,
+ "learning_rate": 0.0006,
+ "loss": 4.022942543029785,
+ "step": 1169
+ },
+ {
+ "epoch": 16.251638269986895,
+ "grad_norm": 0.26972314715385437,
+ "learning_rate": 0.0006,
+ "loss": 4.035310745239258,
+ "step": 1170
+ },
+ {
+ "epoch": 16.265618173875055,
+ "grad_norm": 0.2677772045135498,
+ "learning_rate": 0.0006,
+ "loss": 4.0280561447143555,
+ "step": 1171
+ },
+ {
+ "epoch": 16.279598077763215,
+ "grad_norm": 0.25433358550071716,
+ "learning_rate": 0.0006,
+ "loss": 4.03616189956665,
+ "step": 1172
+ },
+ {
+ "epoch": 16.293577981651374,
+ "grad_norm": 0.2583644688129425,
+ "learning_rate": 0.0006,
+ "loss": 4.073624134063721,
+ "step": 1173
+ },
+ {
+ "epoch": 16.307557885539538,
+ "grad_norm": 0.25437524914741516,
+ "learning_rate": 0.0006,
+ "loss": 4.057926654815674,
+ "step": 1174
+ },
+ {
+ "epoch": 16.321537789427698,
+ "grad_norm": 0.2819201350212097,
+ "learning_rate": 0.0006,
+ "loss": 4.020838737487793,
+ "step": 1175
+ },
+ {
+ "epoch": 16.335517693315857,
+ "grad_norm": 0.32689282298088074,
+ "learning_rate": 0.0006,
+ "loss": 4.062448501586914,
+ "step": 1176
+ },
+ {
+ "epoch": 16.34949759720402,
+ "grad_norm": 0.33002278208732605,
+ "learning_rate": 0.0006,
+ "loss": 4.052059173583984,
+ "step": 1177
+ },
+ {
+ "epoch": 16.36347750109218,
+ "grad_norm": 0.32472696900367737,
+ "learning_rate": 0.0006,
+ "loss": 4.042375564575195,
+ "step": 1178
+ },
+ {
+ "epoch": 16.37745740498034,
+ "grad_norm": 0.35279813408851624,
+ "learning_rate": 0.0006,
+ "loss": 4.028722763061523,
+ "step": 1179
+ },
+ {
+ "epoch": 16.3914373088685,
+ "grad_norm": 0.3243204951286316,
+ "learning_rate": 0.0006,
+ "loss": 4.045693874359131,
+ "step": 1180
+ },
+ {
+ "epoch": 16.405417212756664,
+ "grad_norm": 0.32171115279197693,
+ "learning_rate": 0.0006,
+ "loss": 4.018350124359131,
+ "step": 1181
+ },
+ {
+ "epoch": 16.419397116644824,
+ "grad_norm": 0.31459906697273254,
+ "learning_rate": 0.0006,
+ "loss": 4.039547443389893,
+ "step": 1182
+ },
+ {
+ "epoch": 16.433377020532983,
+ "grad_norm": 0.35038673877716064,
+ "learning_rate": 0.0006,
+ "loss": 4.005928039550781,
+ "step": 1183
+ },
+ {
+ "epoch": 16.447356924421143,
+ "grad_norm": 0.34110963344573975,
+ "learning_rate": 0.0006,
+ "loss": 4.042272090911865,
+ "step": 1184
+ },
+ {
+ "epoch": 16.461336828309307,
+ "grad_norm": 0.33760902285575867,
+ "learning_rate": 0.0006,
+ "loss": 4.02886962890625,
+ "step": 1185
+ },
+ {
+ "epoch": 16.475316732197467,
+ "grad_norm": 0.3162464499473572,
+ "learning_rate": 0.0006,
+ "loss": 4.059924125671387,
+ "step": 1186
+ },
+ {
+ "epoch": 16.489296636085626,
+ "grad_norm": 0.2667233645915985,
+ "learning_rate": 0.0006,
+ "loss": 4.069073677062988,
+ "step": 1187
+ },
+ {
+ "epoch": 16.503276539973786,
+ "grad_norm": 0.22626568377017975,
+ "learning_rate": 0.0006,
+ "loss": 4.044912338256836,
+ "step": 1188
+ },
+ {
+ "epoch": 16.51725644386195,
+ "grad_norm": 0.203303262591362,
+ "learning_rate": 0.0006,
+ "loss": 4.025210380554199,
+ "step": 1189
+ },
+ {
+ "epoch": 16.53123634775011,
+ "grad_norm": 0.2108820080757141,
+ "learning_rate": 0.0006,
+ "loss": 4.035998821258545,
+ "step": 1190
+ },
+ {
+ "epoch": 16.54521625163827,
+ "grad_norm": 0.20451335608959198,
+ "learning_rate": 0.0006,
+ "loss": 4.043377876281738,
+ "step": 1191
+ },
+ {
+ "epoch": 16.55919615552643,
+ "grad_norm": 0.23348836600780487,
+ "learning_rate": 0.0006,
+ "loss": 4.033735275268555,
+ "step": 1192
+ },
+ {
+ "epoch": 16.573176059414592,
+ "grad_norm": 0.24438607692718506,
+ "learning_rate": 0.0006,
+ "loss": 4.071747779846191,
+ "step": 1193
+ },
+ {
+ "epoch": 16.587155963302752,
+ "grad_norm": 0.24233631789684296,
+ "learning_rate": 0.0006,
+ "loss": 4.0138702392578125,
+ "step": 1194
+ },
+ {
+ "epoch": 16.601135867190912,
+ "grad_norm": 0.21625740826129913,
+ "learning_rate": 0.0006,
+ "loss": 4.013422012329102,
+ "step": 1195
+ },
+ {
+ "epoch": 16.615115771079076,
+ "grad_norm": 0.22447720170021057,
+ "learning_rate": 0.0006,
+ "loss": 4.056326866149902,
+ "step": 1196
+ },
+ {
+ "epoch": 16.629095674967235,
+ "grad_norm": 0.21899616718292236,
+ "learning_rate": 0.0006,
+ "loss": 4.006134033203125,
+ "step": 1197
+ },
+ {
+ "epoch": 16.643075578855395,
+ "grad_norm": 0.191362664103508,
+ "learning_rate": 0.0006,
+ "loss": 4.036748886108398,
+ "step": 1198
+ },
+ {
+ "epoch": 16.657055482743555,
+ "grad_norm": 0.20203463733196259,
+ "learning_rate": 0.0006,
+ "loss": 4.006264686584473,
+ "step": 1199
+ },
+ {
+ "epoch": 16.67103538663172,
+ "grad_norm": 0.20209139585494995,
+ "learning_rate": 0.0006,
+ "loss": 4.059018135070801,
+ "step": 1200
+ },
+ {
+ "epoch": 16.68501529051988,
+ "grad_norm": 0.20811820030212402,
+ "learning_rate": 0.0006,
+ "loss": 4.054325103759766,
+ "step": 1201
+ },
+ {
+ "epoch": 16.698995194408038,
+ "grad_norm": 0.22448928654193878,
+ "learning_rate": 0.0006,
+ "loss": 3.996121406555176,
+ "step": 1202
+ },
+ {
+ "epoch": 16.712975098296198,
+ "grad_norm": 0.21692240238189697,
+ "learning_rate": 0.0006,
+ "loss": 4.042046546936035,
+ "step": 1203
+ },
+ {
+ "epoch": 16.72695500218436,
+ "grad_norm": 0.20688563585281372,
+ "learning_rate": 0.0006,
+ "loss": 4.002251625061035,
+ "step": 1204
+ },
+ {
+ "epoch": 16.74093490607252,
+ "grad_norm": 0.1835535764694214,
+ "learning_rate": 0.0006,
+ "loss": 4.02545166015625,
+ "step": 1205
+ },
+ {
+ "epoch": 16.75491480996068,
+ "grad_norm": 0.20532558858394623,
+ "learning_rate": 0.0006,
+ "loss": 4.039333343505859,
+ "step": 1206
+ },
+ {
+ "epoch": 16.76889471384884,
+ "grad_norm": 0.2214215099811554,
+ "learning_rate": 0.0006,
+ "loss": 4.037858486175537,
+ "step": 1207
+ },
+ {
+ "epoch": 16.782874617737004,
+ "grad_norm": 0.24926038086414337,
+ "learning_rate": 0.0006,
+ "loss": 4.024799346923828,
+ "step": 1208
+ },
+ {
+ "epoch": 16.796854521625164,
+ "grad_norm": 0.26057952642440796,
+ "learning_rate": 0.0006,
+ "loss": 4.042788505554199,
+ "step": 1209
+ },
+ {
+ "epoch": 16.810834425513324,
+ "grad_norm": 0.2501208782196045,
+ "learning_rate": 0.0006,
+ "loss": 4.051809310913086,
+ "step": 1210
+ },
+ {
+ "epoch": 16.824814329401484,
+ "grad_norm": 0.21760012209415436,
+ "learning_rate": 0.0006,
+ "loss": 4.063589096069336,
+ "step": 1211
+ },
+ {
+ "epoch": 16.838794233289647,
+ "grad_norm": 0.2243622988462448,
+ "learning_rate": 0.0006,
+ "loss": 4.008829593658447,
+ "step": 1212
+ },
+ {
+ "epoch": 16.852774137177807,
+ "grad_norm": 0.2399163395166397,
+ "learning_rate": 0.0006,
+ "loss": 4.013262748718262,
+ "step": 1213
+ },
+ {
+ "epoch": 16.866754041065967,
+ "grad_norm": 0.23187831044197083,
+ "learning_rate": 0.0006,
+ "loss": 4.023053169250488,
+ "step": 1214
+ },
+ {
+ "epoch": 16.88073394495413,
+ "grad_norm": 0.23723892867565155,
+ "learning_rate": 0.0006,
+ "loss": 3.991321563720703,
+ "step": 1215
+ },
+ {
+ "epoch": 16.89471384884229,
+ "grad_norm": 0.21766342222690582,
+ "learning_rate": 0.0006,
+ "loss": 4.0250773429870605,
+ "step": 1216
+ },
+ {
+ "epoch": 16.90869375273045,
+ "grad_norm": 0.20715023577213287,
+ "learning_rate": 0.0006,
+ "loss": 4.063642978668213,
+ "step": 1217
+ },
+ {
+ "epoch": 16.92267365661861,
+ "grad_norm": 0.20165133476257324,
+ "learning_rate": 0.0006,
+ "loss": 3.9951367378234863,
+ "step": 1218
+ },
+ {
+ "epoch": 16.936653560506773,
+ "grad_norm": 0.19956178963184357,
+ "learning_rate": 0.0006,
+ "loss": 4.025641441345215,
+ "step": 1219
+ },
+ {
+ "epoch": 16.950633464394933,
+ "grad_norm": 0.2175494134426117,
+ "learning_rate": 0.0006,
+ "loss": 4.030346393585205,
+ "step": 1220
+ },
+ {
+ "epoch": 16.964613368283093,
+ "grad_norm": 0.22365593910217285,
+ "learning_rate": 0.0006,
+ "loss": 4.018105506896973,
+ "step": 1221
+ },
+ {
+ "epoch": 16.978593272171253,
+ "grad_norm": 0.21251538395881653,
+ "learning_rate": 0.0006,
+ "loss": 4.023580074310303,
+ "step": 1222
+ },
+ {
+ "epoch": 16.992573176059416,
+ "grad_norm": 0.2230125218629837,
+ "learning_rate": 0.0006,
+ "loss": 4.001980304718018,
+ "step": 1223
+ },
+ {
+ "epoch": 17.0,
+ "grad_norm": 0.24261972308158875,
+ "learning_rate": 0.0006,
+ "loss": 4.081348896026611,
+ "step": 1224
+ },
+ {
+ "epoch": 17.0,
+ "eval_loss": 4.225194931030273,
+ "eval_runtime": 44.247,
+ "eval_samples_per_second": 55.19,
+ "eval_steps_per_second": 3.458,
+ "step": 1224
+ },
+ {
+ "epoch": 17.01397990388816,
+ "grad_norm": 0.2438880205154419,
+ "learning_rate": 0.0006,
+ "loss": 4.0164794921875,
+ "step": 1225
+ },
+ {
+ "epoch": 17.027959807776323,
+ "grad_norm": 0.22459383308887482,
+ "learning_rate": 0.0006,
+ "loss": 3.991623878479004,
+ "step": 1226
+ },
+ {
+ "epoch": 17.041939711664483,
+ "grad_norm": 0.25021040439605713,
+ "learning_rate": 0.0006,
+ "loss": 4.003020286560059,
+ "step": 1227
+ },
+ {
+ "epoch": 17.055919615552643,
+ "grad_norm": 0.30358025431632996,
+ "learning_rate": 0.0006,
+ "loss": 3.980921983718872,
+ "step": 1228
+ },
+ {
+ "epoch": 17.069899519440803,
+ "grad_norm": 0.27313271164894104,
+ "learning_rate": 0.0006,
+ "loss": 3.992398977279663,
+ "step": 1229
+ },
+ {
+ "epoch": 17.083879423328966,
+ "grad_norm": 0.2293211966753006,
+ "learning_rate": 0.0006,
+ "loss": 4.02568244934082,
+ "step": 1230
+ },
+ {
+ "epoch": 17.097859327217126,
+ "grad_norm": 0.2363300621509552,
+ "learning_rate": 0.0006,
+ "loss": 3.977229356765747,
+ "step": 1231
+ },
+ {
+ "epoch": 17.111839231105286,
+ "grad_norm": 0.2809674143791199,
+ "learning_rate": 0.0006,
+ "loss": 3.9720497131347656,
+ "step": 1232
+ },
+ {
+ "epoch": 17.125819134993446,
+ "grad_norm": 0.2913855016231537,
+ "learning_rate": 0.0006,
+ "loss": 3.979529857635498,
+ "step": 1233
+ },
+ {
+ "epoch": 17.13979903888161,
+ "grad_norm": 0.2920287251472473,
+ "learning_rate": 0.0006,
+ "loss": 3.9678473472595215,
+ "step": 1234
+ },
+ {
+ "epoch": 17.15377894276977,
+ "grad_norm": 0.2521543502807617,
+ "learning_rate": 0.0006,
+ "loss": 3.9912607669830322,
+ "step": 1235
+ },
+ {
+ "epoch": 17.16775884665793,
+ "grad_norm": 0.22844268381595612,
+ "learning_rate": 0.0006,
+ "loss": 3.9898228645324707,
+ "step": 1236
+ },
+ {
+ "epoch": 17.18173875054609,
+ "grad_norm": 0.2199884057044983,
+ "learning_rate": 0.0006,
+ "loss": 4.0050740242004395,
+ "step": 1237
+ },
+ {
+ "epoch": 17.195718654434252,
+ "grad_norm": 0.23072892427444458,
+ "learning_rate": 0.0006,
+ "loss": 3.9957475662231445,
+ "step": 1238
+ },
+ {
+ "epoch": 17.209698558322412,
+ "grad_norm": 0.2034899890422821,
+ "learning_rate": 0.0006,
+ "loss": 3.9672317504882812,
+ "step": 1239
+ },
+ {
+ "epoch": 17.22367846221057,
+ "grad_norm": 0.21826180815696716,
+ "learning_rate": 0.0006,
+ "loss": 3.98543119430542,
+ "step": 1240
+ },
+ {
+ "epoch": 17.23765836609873,
+ "grad_norm": 0.21203237771987915,
+ "learning_rate": 0.0006,
+ "loss": 3.9971959590911865,
+ "step": 1241
+ },
+ {
+ "epoch": 17.251638269986895,
+ "grad_norm": 0.22139234840869904,
+ "learning_rate": 0.0006,
+ "loss": 4.017539978027344,
+ "step": 1242
+ },
+ {
+ "epoch": 17.265618173875055,
+ "grad_norm": 0.21553276479244232,
+ "learning_rate": 0.0006,
+ "loss": 3.98740553855896,
+ "step": 1243
+ },
+ {
+ "epoch": 17.279598077763215,
+ "grad_norm": 0.23259080946445465,
+ "learning_rate": 0.0006,
+ "loss": 3.9963035583496094,
+ "step": 1244
+ },
+ {
+ "epoch": 17.293577981651374,
+ "grad_norm": 0.2527932822704315,
+ "learning_rate": 0.0006,
+ "loss": 4.0202956199646,
+ "step": 1245
+ },
+ {
+ "epoch": 17.307557885539538,
+ "grad_norm": 0.28669068217277527,
+ "learning_rate": 0.0006,
+ "loss": 3.9947609901428223,
+ "step": 1246
+ },
+ {
+ "epoch": 17.321537789427698,
+ "grad_norm": 0.341602623462677,
+ "learning_rate": 0.0006,
+ "loss": 3.997032642364502,
+ "step": 1247
+ },
+ {
+ "epoch": 17.335517693315857,
+ "grad_norm": 0.3364104926586151,
+ "learning_rate": 0.0006,
+ "loss": 3.9881834983825684,
+ "step": 1248
+ },
+ {
+ "epoch": 17.34949759720402,
+ "grad_norm": 0.2979278266429901,
+ "learning_rate": 0.0006,
+ "loss": 4.045898914337158,
+ "step": 1249
+ },
+ {
+ "epoch": 17.36347750109218,
+ "grad_norm": 0.2857462465763092,
+ "learning_rate": 0.0006,
+ "loss": 4.0085272789001465,
+ "step": 1250
+ },
+ {
+ "epoch": 17.37745740498034,
+ "grad_norm": 0.2689058780670166,
+ "learning_rate": 0.0006,
+ "loss": 4.021465301513672,
+ "step": 1251
+ },
+ {
+ "epoch": 17.3914373088685,
+ "grad_norm": 0.24943363666534424,
+ "learning_rate": 0.0006,
+ "loss": 4.003451347351074,
+ "step": 1252
+ },
+ {
+ "epoch": 17.405417212756664,
+ "grad_norm": 0.2635347843170166,
+ "learning_rate": 0.0006,
+ "loss": 3.9837827682495117,
+ "step": 1253
+ },
+ {
+ "epoch": 17.419397116644824,
+ "grad_norm": 0.29126450419425964,
+ "learning_rate": 0.0006,
+ "loss": 3.9857311248779297,
+ "step": 1254
+ },
+ {
+ "epoch": 17.433377020532983,
+ "grad_norm": 0.3166918456554413,
+ "learning_rate": 0.0006,
+ "loss": 3.9842967987060547,
+ "step": 1255
+ },
+ {
+ "epoch": 17.447356924421143,
+ "grad_norm": 0.27869969606399536,
+ "learning_rate": 0.0006,
+ "loss": 4.012607574462891,
+ "step": 1256
+ },
+ {
+ "epoch": 17.461336828309307,
+ "grad_norm": 0.23719419538974762,
+ "learning_rate": 0.0006,
+ "loss": 3.981034755706787,
+ "step": 1257
+ },
+ {
+ "epoch": 17.475316732197467,
+ "grad_norm": 0.22687610983848572,
+ "learning_rate": 0.0006,
+ "loss": 4.011059761047363,
+ "step": 1258
+ },
+ {
+ "epoch": 17.489296636085626,
+ "grad_norm": 0.22034095227718353,
+ "learning_rate": 0.0006,
+ "loss": 4.015044689178467,
+ "step": 1259
+ },
+ {
+ "epoch": 17.503276539973786,
+ "grad_norm": 0.21208405494689941,
+ "learning_rate": 0.0006,
+ "loss": 4.003793716430664,
+ "step": 1260
+ },
+ {
+ "epoch": 17.51725644386195,
+ "grad_norm": 0.21759214997291565,
+ "learning_rate": 0.0006,
+ "loss": 3.978652238845825,
+ "step": 1261
+ },
+ {
+ "epoch": 17.53123634775011,
+ "grad_norm": 0.22481068968772888,
+ "learning_rate": 0.0006,
+ "loss": 4.034845352172852,
+ "step": 1262
+ },
+ {
+ "epoch": 17.54521625163827,
+ "grad_norm": 0.20376387238502502,
+ "learning_rate": 0.0006,
+ "loss": 3.990541934967041,
+ "step": 1263
+ },
+ {
+ "epoch": 17.55919615552643,
+ "grad_norm": 0.20459355413913727,
+ "learning_rate": 0.0006,
+ "loss": 4.006990432739258,
+ "step": 1264
+ },
+ {
+ "epoch": 17.573176059414592,
+ "grad_norm": 0.19306913018226624,
+ "learning_rate": 0.0006,
+ "loss": 3.993408679962158,
+ "step": 1265
+ },
+ {
+ "epoch": 17.587155963302752,
+ "grad_norm": 0.20727239549160004,
+ "learning_rate": 0.0006,
+ "loss": 3.988016128540039,
+ "step": 1266
+ },
+ {
+ "epoch": 17.601135867190912,
+ "grad_norm": 0.20213133096694946,
+ "learning_rate": 0.0006,
+ "loss": 4.0120368003845215,
+ "step": 1267
+ },
+ {
+ "epoch": 17.615115771079076,
+ "grad_norm": 0.21074117720127106,
+ "learning_rate": 0.0006,
+ "loss": 4.048871040344238,
+ "step": 1268
+ },
+ {
+ "epoch": 17.629095674967235,
+ "grad_norm": 0.2074330598115921,
+ "learning_rate": 0.0006,
+ "loss": 3.997509002685547,
+ "step": 1269
+ },
+ {
+ "epoch": 17.643075578855395,
+ "grad_norm": 0.20383669435977936,
+ "learning_rate": 0.0006,
+ "loss": 4.0028839111328125,
+ "step": 1270
+ },
+ {
+ "epoch": 17.657055482743555,
+ "grad_norm": 0.2060765027999878,
+ "learning_rate": 0.0006,
+ "loss": 3.998032331466675,
+ "step": 1271
+ },
+ {
+ "epoch": 17.67103538663172,
+ "grad_norm": 0.21851404011249542,
+ "learning_rate": 0.0006,
+ "loss": 3.9928741455078125,
+ "step": 1272
+ },
+ {
+ "epoch": 17.68501529051988,
+ "grad_norm": 0.24324250221252441,
+ "learning_rate": 0.0006,
+ "loss": 3.9896507263183594,
+ "step": 1273
+ },
+ {
+ "epoch": 17.698995194408038,
+ "grad_norm": 0.25584331154823303,
+ "learning_rate": 0.0006,
+ "loss": 4.010485649108887,
+ "step": 1274
+ },
+ {
+ "epoch": 17.712975098296198,
+ "grad_norm": 0.2490610033273697,
+ "learning_rate": 0.0006,
+ "loss": 3.9906954765319824,
+ "step": 1275
+ },
+ {
+ "epoch": 17.72695500218436,
+ "grad_norm": 0.24241414666175842,
+ "learning_rate": 0.0006,
+ "loss": 4.016420364379883,
+ "step": 1276
+ },
+ {
+ "epoch": 17.74093490607252,
+ "grad_norm": 0.2222128063440323,
+ "learning_rate": 0.0006,
+ "loss": 4.009827136993408,
+ "step": 1277
+ },
+ {
+ "epoch": 17.75491480996068,
+ "grad_norm": 0.23119516670703888,
+ "learning_rate": 0.0006,
+ "loss": 4.0034589767456055,
+ "step": 1278
+ },
+ {
+ "epoch": 17.76889471384884,
+ "grad_norm": 0.24596457183361053,
+ "learning_rate": 0.0006,
+ "loss": 4.003161907196045,
+ "step": 1279
+ },
+ {
+ "epoch": 17.782874617737004,
+ "grad_norm": 0.2607562839984894,
+ "learning_rate": 0.0006,
+ "loss": 3.9894633293151855,
+ "step": 1280
+ },
+ {
+ "epoch": 17.796854521625164,
+ "grad_norm": 0.28706878423690796,
+ "learning_rate": 0.0006,
+ "loss": 4.005712985992432,
+ "step": 1281
+ },
+ {
+ "epoch": 17.810834425513324,
+ "grad_norm": 0.27178290486335754,
+ "learning_rate": 0.0006,
+ "loss": 3.9784536361694336,
+ "step": 1282
+ },
+ {
+ "epoch": 17.824814329401484,
+ "grad_norm": 0.27962708473205566,
+ "learning_rate": 0.0006,
+ "loss": 4.012705326080322,
+ "step": 1283
+ },
+ {
+ "epoch": 17.838794233289647,
+ "grad_norm": 0.29147693514823914,
+ "learning_rate": 0.0006,
+ "loss": 4.0159783363342285,
+ "step": 1284
+ },
+ {
+ "epoch": 17.852774137177807,
+ "grad_norm": 0.2841821312904358,
+ "learning_rate": 0.0006,
+ "loss": 4.011552810668945,
+ "step": 1285
+ },
+ {
+ "epoch": 17.866754041065967,
+ "grad_norm": 0.24924969673156738,
+ "learning_rate": 0.0006,
+ "loss": 3.992421865463257,
+ "step": 1286
+ },
+ {
+ "epoch": 17.88073394495413,
+ "grad_norm": 0.24850749969482422,
+ "learning_rate": 0.0006,
+ "loss": 3.974897861480713,
+ "step": 1287
+ },
+ {
+ "epoch": 17.89471384884229,
+ "grad_norm": 0.2409554123878479,
+ "learning_rate": 0.0006,
+ "loss": 4.002941131591797,
+ "step": 1288
+ },
+ {
+ "epoch": 17.90869375273045,
+ "grad_norm": 0.2656126320362091,
+ "learning_rate": 0.0006,
+ "loss": 3.9804210662841797,
+ "step": 1289
+ },
+ {
+ "epoch": 17.92267365661861,
+ "grad_norm": 0.28210243582725525,
+ "learning_rate": 0.0006,
+ "loss": 4.007192134857178,
+ "step": 1290
+ },
+ {
+ "epoch": 17.936653560506773,
+ "grad_norm": 0.28427553176879883,
+ "learning_rate": 0.0006,
+ "loss": 3.9739556312561035,
+ "step": 1291
+ },
+ {
+ "epoch": 17.950633464394933,
+ "grad_norm": 0.28893420100212097,
+ "learning_rate": 0.0006,
+ "loss": 4.004766941070557,
+ "step": 1292
+ },
+ {
+ "epoch": 17.964613368283093,
+ "grad_norm": 0.2831471562385559,
+ "learning_rate": 0.0006,
+ "loss": 3.984936237335205,
+ "step": 1293
+ },
+ {
+ "epoch": 17.978593272171253,
+ "grad_norm": 0.2518300712108612,
+ "learning_rate": 0.0006,
+ "loss": 4.002814292907715,
+ "step": 1294
+ },
+ {
+ "epoch": 17.992573176059416,
+ "grad_norm": 0.24264675378799438,
+ "learning_rate": 0.0006,
+ "loss": 3.998900890350342,
+ "step": 1295
+ },
+ {
+ "epoch": 18.0,
+ "grad_norm": 0.24474996328353882,
+ "learning_rate": 0.0006,
+ "loss": 3.974229335784912,
+ "step": 1296
+ },
+ {
+ "epoch": 18.0,
+ "eval_loss": 4.195685863494873,
+ "eval_runtime": 44.0709,
+ "eval_samples_per_second": 55.411,
+ "eval_steps_per_second": 3.472,
+ "step": 1296
+ },
+ {
+ "epoch": 18.01397990388816,
+ "grad_norm": 0.2553016245365143,
+ "learning_rate": 0.0006,
+ "loss": 3.9522247314453125,
+ "step": 1297
+ },
+ {
+ "epoch": 18.027959807776323,
+ "grad_norm": 0.22350727021694183,
+ "learning_rate": 0.0006,
+ "loss": 3.9850122928619385,
+ "step": 1298
+ },
+ {
+ "epoch": 18.041939711664483,
+ "grad_norm": 0.23935550451278687,
+ "learning_rate": 0.0006,
+ "loss": 3.9758832454681396,
+ "step": 1299
+ },
+ {
+ "epoch": 18.055919615552643,
+ "grad_norm": 0.23868797719478607,
+ "learning_rate": 0.0006,
+ "loss": 3.9567959308624268,
+ "step": 1300
+ },
+ {
+ "epoch": 18.069899519440803,
+ "grad_norm": 0.23102357983589172,
+ "learning_rate": 0.0006,
+ "loss": 3.9399867057800293,
+ "step": 1301
+ },
+ {
+ "epoch": 18.083879423328966,
+ "grad_norm": 0.23706983029842377,
+ "learning_rate": 0.0006,
+ "loss": 3.993434190750122,
+ "step": 1302
+ },
+ {
+ "epoch": 18.097859327217126,
+ "grad_norm": 0.22207573056221008,
+ "learning_rate": 0.0006,
+ "loss": 3.993436574935913,
+ "step": 1303
+ },
+ {
+ "epoch": 18.111839231105286,
+ "grad_norm": 0.23975296318531036,
+ "learning_rate": 0.0006,
+ "loss": 3.981943368911743,
+ "step": 1304
+ },
+ {
+ "epoch": 18.125819134993446,
+ "grad_norm": 0.2520582675933838,
+ "learning_rate": 0.0006,
+ "loss": 3.965493679046631,
+ "step": 1305
+ },
+ {
+ "epoch": 18.13979903888161,
+ "grad_norm": 0.2230956256389618,
+ "learning_rate": 0.0006,
+ "loss": 3.9360928535461426,
+ "step": 1306
+ },
+ {
+ "epoch": 18.15377894276977,
+ "grad_norm": 0.22527500987052917,
+ "learning_rate": 0.0006,
+ "loss": 3.9814581871032715,
+ "step": 1307
+ },
+ {
+ "epoch": 18.16775884665793,
+ "grad_norm": 0.22389626502990723,
+ "learning_rate": 0.0006,
+ "loss": 3.961590051651001,
+ "step": 1308
+ },
+ {
+ "epoch": 18.18173875054609,
+ "grad_norm": 0.22279471158981323,
+ "learning_rate": 0.0006,
+ "loss": 3.952338695526123,
+ "step": 1309
+ },
+ {
+ "epoch": 18.195718654434252,
+ "grad_norm": 0.24635115265846252,
+ "learning_rate": 0.0006,
+ "loss": 3.9693849086761475,
+ "step": 1310
+ },
+ {
+ "epoch": 18.209698558322412,
+ "grad_norm": 0.2757279872894287,
+ "learning_rate": 0.0006,
+ "loss": 3.9956700801849365,
+ "step": 1311
+ },
+ {
+ "epoch": 18.22367846221057,
+ "grad_norm": 0.2619115710258484,
+ "learning_rate": 0.0006,
+ "loss": 3.948878765106201,
+ "step": 1312
+ },
+ {
+ "epoch": 18.23765836609873,
+ "grad_norm": 0.22853828966617584,
+ "learning_rate": 0.0006,
+ "loss": 3.9545674324035645,
+ "step": 1313
+ },
+ {
+ "epoch": 18.251638269986895,
+ "grad_norm": 0.22904761135578156,
+ "learning_rate": 0.0006,
+ "loss": 3.947535991668701,
+ "step": 1314
+ },
+ {
+ "epoch": 18.265618173875055,
+ "grad_norm": 0.23592644929885864,
+ "learning_rate": 0.0006,
+ "loss": 3.971926212310791,
+ "step": 1315
+ },
+ {
+ "epoch": 18.279598077763215,
+ "grad_norm": 0.22120243310928345,
+ "learning_rate": 0.0006,
+ "loss": 3.9471049308776855,
+ "step": 1316
+ },
+ {
+ "epoch": 18.293577981651374,
+ "grad_norm": 0.20308749377727509,
+ "learning_rate": 0.0006,
+ "loss": 3.967449188232422,
+ "step": 1317
+ },
+ {
+ "epoch": 18.307557885539538,
+ "grad_norm": 0.20013529062271118,
+ "learning_rate": 0.0006,
+ "loss": 3.966151237487793,
+ "step": 1318
+ },
+ {
+ "epoch": 18.321537789427698,
+ "grad_norm": 0.20635221898555756,
+ "learning_rate": 0.0006,
+ "loss": 3.9908885955810547,
+ "step": 1319
+ },
+ {
+ "epoch": 18.335517693315857,
+ "grad_norm": 0.2232237160205841,
+ "learning_rate": 0.0006,
+ "loss": 3.9488768577575684,
+ "step": 1320
+ },
+ {
+ "epoch": 18.34949759720402,
+ "grad_norm": 0.21916444599628448,
+ "learning_rate": 0.0006,
+ "loss": 3.973428726196289,
+ "step": 1321
+ },
+ {
+ "epoch": 18.36347750109218,
+ "grad_norm": 0.20427337288856506,
+ "learning_rate": 0.0006,
+ "loss": 3.969332695007324,
+ "step": 1322
+ },
+ {
+ "epoch": 18.37745740498034,
+ "grad_norm": 0.20138131082057953,
+ "learning_rate": 0.0006,
+ "loss": 3.9651856422424316,
+ "step": 1323
+ },
+ {
+ "epoch": 18.3914373088685,
+ "grad_norm": 0.18918880820274353,
+ "learning_rate": 0.0006,
+ "loss": 3.9772281646728516,
+ "step": 1324
+ },
+ {
+ "epoch": 18.405417212756664,
+ "grad_norm": 0.1860039383172989,
+ "learning_rate": 0.0006,
+ "loss": 3.9289052486419678,
+ "step": 1325
+ },
+ {
+ "epoch": 18.419397116644824,
+ "grad_norm": 0.19541646540164948,
+ "learning_rate": 0.0006,
+ "loss": 3.9527673721313477,
+ "step": 1326
+ },
+ {
+ "epoch": 18.433377020532983,
+ "grad_norm": 0.206914022564888,
+ "learning_rate": 0.0006,
+ "loss": 3.99316143989563,
+ "step": 1327
+ },
+ {
+ "epoch": 18.447356924421143,
+ "grad_norm": 0.209097757935524,
+ "learning_rate": 0.0006,
+ "loss": 3.978130340576172,
+ "step": 1328
+ },
+ {
+ "epoch": 18.461336828309307,
+ "grad_norm": 0.22163373231887817,
+ "learning_rate": 0.0006,
+ "loss": 3.951460361480713,
+ "step": 1329
+ },
+ {
+ "epoch": 18.475316732197467,
+ "grad_norm": 0.21446120738983154,
+ "learning_rate": 0.0006,
+ "loss": 3.963571071624756,
+ "step": 1330
+ },
+ {
+ "epoch": 18.489296636085626,
+ "grad_norm": 0.2341388761997223,
+ "learning_rate": 0.0006,
+ "loss": 4.010684013366699,
+ "step": 1331
+ },
+ {
+ "epoch": 18.503276539973786,
+ "grad_norm": 0.2433937042951584,
+ "learning_rate": 0.0006,
+ "loss": 3.987537384033203,
+ "step": 1332
+ },
+ {
+ "epoch": 18.51725644386195,
+ "grad_norm": 0.24916228652000427,
+ "learning_rate": 0.0006,
+ "loss": 3.953075647354126,
+ "step": 1333
+ },
+ {
+ "epoch": 18.53123634775011,
+ "grad_norm": 0.24542421102523804,
+ "learning_rate": 0.0006,
+ "loss": 3.9510841369628906,
+ "step": 1334
+ },
+ {
+ "epoch": 18.54521625163827,
+ "grad_norm": 0.2393690049648285,
+ "learning_rate": 0.0006,
+ "loss": 3.981747627258301,
+ "step": 1335
+ },
+ {
+ "epoch": 18.55919615552643,
+ "grad_norm": 0.22806711494922638,
+ "learning_rate": 0.0006,
+ "loss": 3.9714856147766113,
+ "step": 1336
+ },
+ {
+ "epoch": 18.573176059414592,
+ "grad_norm": 0.21948303282260895,
+ "learning_rate": 0.0006,
+ "loss": 3.9429898262023926,
+ "step": 1337
+ },
+ {
+ "epoch": 18.587155963302752,
+ "grad_norm": 0.21575778722763062,
+ "learning_rate": 0.0006,
+ "loss": 3.9639933109283447,
+ "step": 1338
+ },
+ {
+ "epoch": 18.601135867190912,
+ "grad_norm": 0.23370565474033356,
+ "learning_rate": 0.0006,
+ "loss": 3.9819254875183105,
+ "step": 1339
+ },
+ {
+ "epoch": 18.615115771079076,
+ "grad_norm": 0.2613106369972229,
+ "learning_rate": 0.0006,
+ "loss": 3.9654669761657715,
+ "step": 1340
+ },
+ {
+ "epoch": 18.629095674967235,
+ "grad_norm": 0.26682716608047485,
+ "learning_rate": 0.0006,
+ "loss": 3.9832968711853027,
+ "step": 1341
+ },
+ {
+ "epoch": 18.643075578855395,
+ "grad_norm": 0.24331490695476532,
+ "learning_rate": 0.0006,
+ "loss": 3.9926600456237793,
+ "step": 1342
+ },
+ {
+ "epoch": 18.657055482743555,
+ "grad_norm": 0.2459341287612915,
+ "learning_rate": 0.0006,
+ "loss": 3.9508986473083496,
+ "step": 1343
+ },
+ {
+ "epoch": 18.67103538663172,
+ "grad_norm": 0.26395753026008606,
+ "learning_rate": 0.0006,
+ "loss": 3.961359977722168,
+ "step": 1344
+ },
+ {
+ "epoch": 18.68501529051988,
+ "grad_norm": 0.26049068570137024,
+ "learning_rate": 0.0006,
+ "loss": 3.9763245582580566,
+ "step": 1345
+ },
+ {
+ "epoch": 18.698995194408038,
+ "grad_norm": 0.24018602073192596,
+ "learning_rate": 0.0006,
+ "loss": 3.951780319213867,
+ "step": 1346
+ },
+ {
+ "epoch": 18.712975098296198,
+ "grad_norm": 0.23886290192604065,
+ "learning_rate": 0.0006,
+ "loss": 3.9883017539978027,
+ "step": 1347
+ },
+ {
+ "epoch": 18.72695500218436,
+ "grad_norm": 0.2293774038553238,
+ "learning_rate": 0.0006,
+ "loss": 3.9852685928344727,
+ "step": 1348
+ },
+ {
+ "epoch": 18.74093490607252,
+ "grad_norm": 0.22172975540161133,
+ "learning_rate": 0.0006,
+ "loss": 3.967550277709961,
+ "step": 1349
+ },
+ {
+ "epoch": 18.75491480996068,
+ "grad_norm": 0.2170475423336029,
+ "learning_rate": 0.0006,
+ "loss": 3.9570775032043457,
+ "step": 1350
+ },
+ {
+ "epoch": 18.76889471384884,
+ "grad_norm": 0.21458806097507477,
+ "learning_rate": 0.0006,
+ "loss": 3.9461212158203125,
+ "step": 1351
+ },
+ {
+ "epoch": 18.782874617737004,
+ "grad_norm": 0.21101507544517517,
+ "learning_rate": 0.0006,
+ "loss": 3.984398365020752,
+ "step": 1352
+ },
+ {
+ "epoch": 18.796854521625164,
+ "grad_norm": 0.23480583727359772,
+ "learning_rate": 0.0006,
+ "loss": 3.950312614440918,
+ "step": 1353
+ },
+ {
+ "epoch": 18.810834425513324,
+ "grad_norm": 0.24728581309318542,
+ "learning_rate": 0.0006,
+ "loss": 3.9572393894195557,
+ "step": 1354
+ },
+ {
+ "epoch": 18.824814329401484,
+ "grad_norm": 0.26063451170921326,
+ "learning_rate": 0.0006,
+ "loss": 3.9653234481811523,
+ "step": 1355
+ },
+ {
+ "epoch": 18.838794233289647,
+ "grad_norm": 0.24679961800575256,
+ "learning_rate": 0.0006,
+ "loss": 3.9560108184814453,
+ "step": 1356
+ },
+ {
+ "epoch": 18.852774137177807,
+ "grad_norm": 0.23199526965618134,
+ "learning_rate": 0.0006,
+ "loss": 3.9948246479034424,
+ "step": 1357
+ },
+ {
+ "epoch": 18.866754041065967,
+ "grad_norm": 0.22619125247001648,
+ "learning_rate": 0.0006,
+ "loss": 3.9783573150634766,
+ "step": 1358
+ },
+ {
+ "epoch": 18.88073394495413,
+ "grad_norm": 0.25499874353408813,
+ "learning_rate": 0.0006,
+ "loss": 3.9674575328826904,
+ "step": 1359
+ },
+ {
+ "epoch": 18.89471384884229,
+ "grad_norm": 0.23961037397384644,
+ "learning_rate": 0.0006,
+ "loss": 3.969209909439087,
+ "step": 1360
+ },
+ {
+ "epoch": 18.90869375273045,
+ "grad_norm": 0.21039162576198578,
+ "learning_rate": 0.0006,
+ "loss": 3.978661060333252,
+ "step": 1361
+ },
+ {
+ "epoch": 18.92267365661861,
+ "grad_norm": 0.2297026664018631,
+ "learning_rate": 0.0006,
+ "loss": 3.9483046531677246,
+ "step": 1362
+ },
+ {
+ "epoch": 18.936653560506773,
+ "grad_norm": 0.26367098093032837,
+ "learning_rate": 0.0006,
+ "loss": 3.927133560180664,
+ "step": 1363
+ },
+ {
+ "epoch": 18.950633464394933,
+ "grad_norm": 0.26893147826194763,
+ "learning_rate": 0.0006,
+ "loss": 3.957932710647583,
+ "step": 1364
+ },
+ {
+ "epoch": 18.964613368283093,
+ "grad_norm": 0.27092233300209045,
+ "learning_rate": 0.0006,
+ "loss": 3.976621150970459,
+ "step": 1365
+ },
+ {
+ "epoch": 18.978593272171253,
+ "grad_norm": 0.2672635018825531,
+ "learning_rate": 0.0006,
+ "loss": 3.9577765464782715,
+ "step": 1366
+ },
+ {
+ "epoch": 18.992573176059416,
+ "grad_norm": 0.2721385359764099,
+ "learning_rate": 0.0006,
+ "loss": 3.986100196838379,
+ "step": 1367
+ },
+ {
+ "epoch": 19.0,
+ "grad_norm": 0.27648621797561646,
+ "learning_rate": 0.0006,
+ "loss": 3.9942402839660645,
+ "step": 1368
+ },
+ {
+ "epoch": 19.0,
+ "eval_loss": 4.180216312408447,
+ "eval_runtime": 44.0079,
+ "eval_samples_per_second": 55.49,
+ "eval_steps_per_second": 3.477,
+ "step": 1368
+ },
+ {
+ "epoch": 19.01397990388816,
+ "grad_norm": 0.2563098073005676,
+ "learning_rate": 0.0006,
+ "loss": 3.9267354011535645,
+ "step": 1369
+ },
+ {
+ "epoch": 19.027959807776323,
+ "grad_norm": 0.2531425952911377,
+ "learning_rate": 0.0006,
+ "loss": 3.9273324012756348,
+ "step": 1370
+ },
+ {
+ "epoch": 19.041939711664483,
+ "grad_norm": 0.27485427260398865,
+ "learning_rate": 0.0006,
+ "loss": 3.9542183876037598,
+ "step": 1371
+ },
+ {
+ "epoch": 19.055919615552643,
+ "grad_norm": 0.27509891986846924,
+ "learning_rate": 0.0006,
+ "loss": 3.921940326690674,
+ "step": 1372
+ },
+ {
+ "epoch": 19.069899519440803,
+ "grad_norm": 0.28154096007347107,
+ "learning_rate": 0.0006,
+ "loss": 3.926743984222412,
+ "step": 1373
+ },
+ {
+ "epoch": 19.083879423328966,
+ "grad_norm": 0.2749912738800049,
+ "learning_rate": 0.0006,
+ "loss": 3.9257748126983643,
+ "step": 1374
+ },
+ {
+ "epoch": 19.097859327217126,
+ "grad_norm": 0.26168501377105713,
+ "learning_rate": 0.0006,
+ "loss": 3.9403202533721924,
+ "step": 1375
+ },
+ {
+ "epoch": 19.111839231105286,
+ "grad_norm": 0.23410023748874664,
+ "learning_rate": 0.0006,
+ "loss": 3.935378313064575,
+ "step": 1376
+ },
+ {
+ "epoch": 19.125819134993446,
+ "grad_norm": 0.25790470838546753,
+ "learning_rate": 0.0006,
+ "loss": 3.946147918701172,
+ "step": 1377
+ },
+ {
+ "epoch": 19.13979903888161,
+ "grad_norm": 0.26704177260398865,
+ "learning_rate": 0.0006,
+ "loss": 3.9511594772338867,
+ "step": 1378
+ },
+ {
+ "epoch": 19.15377894276977,
+ "grad_norm": 0.2560667097568512,
+ "learning_rate": 0.0006,
+ "loss": 3.915806531906128,
+ "step": 1379
+ },
+ {
+ "epoch": 19.16775884665793,
+ "grad_norm": 0.24684149026870728,
+ "learning_rate": 0.0006,
+ "loss": 3.9162003993988037,
+ "step": 1380
+ },
+ {
+ "epoch": 19.18173875054609,
+ "grad_norm": 0.2097567766904831,
+ "learning_rate": 0.0006,
+ "loss": 3.915739059448242,
+ "step": 1381
+ },
+ {
+ "epoch": 19.195718654434252,
+ "grad_norm": 0.21646849811077118,
+ "learning_rate": 0.0006,
+ "loss": 3.9097084999084473,
+ "step": 1382
+ },
+ {
+ "epoch": 19.209698558322412,
+ "grad_norm": 0.20626980066299438,
+ "learning_rate": 0.0006,
+ "loss": 3.9541783332824707,
+ "step": 1383
+ },
+ {
+ "epoch": 19.22367846221057,
+ "grad_norm": 0.23362718522548676,
+ "learning_rate": 0.0006,
+ "loss": 3.950096845626831,
+ "step": 1384
+ },
+ {
+ "epoch": 19.23765836609873,
+ "grad_norm": 0.25402209162712097,
+ "learning_rate": 0.0006,
+ "loss": 3.927671432495117,
+ "step": 1385
+ },
+ {
+ "epoch": 19.251638269986895,
+ "grad_norm": 0.23714083433151245,
+ "learning_rate": 0.0006,
+ "loss": 3.939765453338623,
+ "step": 1386
+ },
+ {
+ "epoch": 19.265618173875055,
+ "grad_norm": 0.20895546674728394,
+ "learning_rate": 0.0006,
+ "loss": 3.9384806156158447,
+ "step": 1387
+ },
+ {
+ "epoch": 19.279598077763215,
+ "grad_norm": 0.21374300122261047,
+ "learning_rate": 0.0006,
+ "loss": 3.9523749351501465,
+ "step": 1388
+ },
+ {
+ "epoch": 19.293577981651374,
+ "grad_norm": 0.210394486784935,
+ "learning_rate": 0.0006,
+ "loss": 3.9540798664093018,
+ "step": 1389
+ },
+ {
+ "epoch": 19.307557885539538,
+ "grad_norm": 0.20646725594997406,
+ "learning_rate": 0.0006,
+ "loss": 3.9514098167419434,
+ "step": 1390
+ },
+ {
+ "epoch": 19.321537789427698,
+ "grad_norm": 0.21477538347244263,
+ "learning_rate": 0.0006,
+ "loss": 3.9369924068450928,
+ "step": 1391
+ },
+ {
+ "epoch": 19.335517693315857,
+ "grad_norm": 0.20431505143642426,
+ "learning_rate": 0.0006,
+ "loss": 3.9389796257019043,
+ "step": 1392
+ },
+ {
+ "epoch": 19.34949759720402,
+ "grad_norm": 0.19575877487659454,
+ "learning_rate": 0.0006,
+ "loss": 3.935976028442383,
+ "step": 1393
+ },
+ {
+ "epoch": 19.36347750109218,
+ "grad_norm": 0.20720405876636505,
+ "learning_rate": 0.0006,
+ "loss": 3.9670963287353516,
+ "step": 1394
+ },
+ {
+ "epoch": 19.37745740498034,
+ "grad_norm": 0.2173967957496643,
+ "learning_rate": 0.0006,
+ "loss": 3.903940439224243,
+ "step": 1395
+ },
+ {
+ "epoch": 19.3914373088685,
+ "grad_norm": 0.2180529683828354,
+ "learning_rate": 0.0006,
+ "loss": 3.8716301918029785,
+ "step": 1396
+ },
+ {
+ "epoch": 19.405417212756664,
+ "grad_norm": 0.20666591823101044,
+ "learning_rate": 0.0006,
+ "loss": 3.930936813354492,
+ "step": 1397
+ },
+ {
+ "epoch": 19.419397116644824,
+ "grad_norm": 0.20353034138679504,
+ "learning_rate": 0.0006,
+ "loss": 3.926954746246338,
+ "step": 1398
+ },
+ {
+ "epoch": 19.433377020532983,
+ "grad_norm": 0.22333289682865143,
+ "learning_rate": 0.0006,
+ "loss": 3.947504997253418,
+ "step": 1399
+ },
+ {
+ "epoch": 19.447356924421143,
+ "grad_norm": 0.21787697076797485,
+ "learning_rate": 0.0006,
+ "loss": 3.9325344562530518,
+ "step": 1400
+ },
+ {
+ "epoch": 19.461336828309307,
+ "grad_norm": 0.22805874049663544,
+ "learning_rate": 0.0006,
+ "loss": 3.9640727043151855,
+ "step": 1401
+ },
+ {
+ "epoch": 19.475316732197467,
+ "grad_norm": 0.22396457195281982,
+ "learning_rate": 0.0006,
+ "loss": 3.9537901878356934,
+ "step": 1402
+ },
+ {
+ "epoch": 19.489296636085626,
+ "grad_norm": 0.2333047240972519,
+ "learning_rate": 0.0006,
+ "loss": 3.935609817504883,
+ "step": 1403
+ },
+ {
+ "epoch": 19.503276539973786,
+ "grad_norm": 0.25063616037368774,
+ "learning_rate": 0.0006,
+ "loss": 3.9659228324890137,
+ "step": 1404
+ },
+ {
+ "epoch": 19.51725644386195,
+ "grad_norm": 0.29074087738990784,
+ "learning_rate": 0.0006,
+ "loss": 3.9552183151245117,
+ "step": 1405
+ },
+ {
+ "epoch": 19.53123634775011,
+ "grad_norm": 0.34876152873039246,
+ "learning_rate": 0.0006,
+ "loss": 3.976163387298584,
+ "step": 1406
+ },
+ {
+ "epoch": 19.54521625163827,
+ "grad_norm": 0.35026612877845764,
+ "learning_rate": 0.0006,
+ "loss": 3.961186408996582,
+ "step": 1407
+ },
+ {
+ "epoch": 19.55919615552643,
+ "grad_norm": 0.3199564218521118,
+ "learning_rate": 0.0006,
+ "loss": 3.9366297721862793,
+ "step": 1408
+ },
+ {
+ "epoch": 19.573176059414592,
+ "grad_norm": 0.2976185977458954,
+ "learning_rate": 0.0006,
+ "loss": 3.9502010345458984,
+ "step": 1409
+ },
+ {
+ "epoch": 19.587155963302752,
+ "grad_norm": 0.2951911687850952,
+ "learning_rate": 0.0006,
+ "loss": 3.9427943229675293,
+ "step": 1410
+ },
+ {
+ "epoch": 19.601135867190912,
+ "grad_norm": 0.27918702363967896,
+ "learning_rate": 0.0006,
+ "loss": 3.963700532913208,
+ "step": 1411
+ },
+ {
+ "epoch": 19.615115771079076,
+ "grad_norm": 0.26197490096092224,
+ "learning_rate": 0.0006,
+ "loss": 3.9636964797973633,
+ "step": 1412
+ },
+ {
+ "epoch": 19.629095674967235,
+ "grad_norm": 0.24242281913757324,
+ "learning_rate": 0.0006,
+ "loss": 3.961815595626831,
+ "step": 1413
+ },
+ {
+ "epoch": 19.643075578855395,
+ "grad_norm": 0.2606375515460968,
+ "learning_rate": 0.0006,
+ "loss": 3.946643352508545,
+ "step": 1414
+ },
+ {
+ "epoch": 19.657055482743555,
+ "grad_norm": 0.23353353142738342,
+ "learning_rate": 0.0006,
+ "loss": 3.973155975341797,
+ "step": 1415
+ },
+ {
+ "epoch": 19.67103538663172,
+ "grad_norm": 0.22872662544250488,
+ "learning_rate": 0.0006,
+ "loss": 3.9528894424438477,
+ "step": 1416
+ },
+ {
+ "epoch": 19.68501529051988,
+ "grad_norm": 0.24678432941436768,
+ "learning_rate": 0.0006,
+ "loss": 3.9313249588012695,
+ "step": 1417
+ },
+ {
+ "epoch": 19.698995194408038,
+ "grad_norm": 0.23895515501499176,
+ "learning_rate": 0.0006,
+ "loss": 3.944082498550415,
+ "step": 1418
+ },
+ {
+ "epoch": 19.712975098296198,
+ "grad_norm": 0.23649105429649353,
+ "learning_rate": 0.0006,
+ "loss": 3.962069034576416,
+ "step": 1419
+ },
+ {
+ "epoch": 19.72695500218436,
+ "grad_norm": 0.22031061351299286,
+ "learning_rate": 0.0006,
+ "loss": 3.912972927093506,
+ "step": 1420
+ },
+ {
+ "epoch": 19.74093490607252,
+ "grad_norm": 0.20231695473194122,
+ "learning_rate": 0.0006,
+ "loss": 3.964531421661377,
+ "step": 1421
+ },
+ {
+ "epoch": 19.75491480996068,
+ "grad_norm": 0.19980913400650024,
+ "learning_rate": 0.0006,
+ "loss": 3.9452600479125977,
+ "step": 1422
+ },
+ {
+ "epoch": 19.76889471384884,
+ "grad_norm": 0.21768775582313538,
+ "learning_rate": 0.0006,
+ "loss": 3.9214301109313965,
+ "step": 1423
+ },
+ {
+ "epoch": 19.782874617737004,
+ "grad_norm": 0.21287119388580322,
+ "learning_rate": 0.0006,
+ "loss": 3.9416494369506836,
+ "step": 1424
+ },
+ {
+ "epoch": 19.796854521625164,
+ "grad_norm": 0.21399827301502228,
+ "learning_rate": 0.0006,
+ "loss": 3.971010208129883,
+ "step": 1425
+ },
+ {
+ "epoch": 19.810834425513324,
+ "grad_norm": 0.1957658976316452,
+ "learning_rate": 0.0006,
+ "loss": 3.936331272125244,
+ "step": 1426
+ },
+ {
+ "epoch": 19.824814329401484,
+ "grad_norm": 0.19341488182544708,
+ "learning_rate": 0.0006,
+ "loss": 3.9321448802948,
+ "step": 1427
+ },
+ {
+ "epoch": 19.838794233289647,
+ "grad_norm": 0.18405723571777344,
+ "learning_rate": 0.0006,
+ "loss": 3.939542293548584,
+ "step": 1428
+ },
+ {
+ "epoch": 19.852774137177807,
+ "grad_norm": 0.19672836363315582,
+ "learning_rate": 0.0006,
+ "loss": 3.939652919769287,
+ "step": 1429
+ },
+ {
+ "epoch": 19.866754041065967,
+ "grad_norm": 0.1998940259218216,
+ "learning_rate": 0.0006,
+ "loss": 3.932892322540283,
+ "step": 1430
+ },
+ {
+ "epoch": 19.88073394495413,
+ "grad_norm": 0.2307668924331665,
+ "learning_rate": 0.0006,
+ "loss": 3.9402761459350586,
+ "step": 1431
+ },
+ {
+ "epoch": 19.89471384884229,
+ "grad_norm": 0.2531987726688385,
+ "learning_rate": 0.0006,
+ "loss": 3.9153199195861816,
+ "step": 1432
+ },
+ {
+ "epoch": 19.90869375273045,
+ "grad_norm": 0.2299388349056244,
+ "learning_rate": 0.0006,
+ "loss": 3.9569954872131348,
+ "step": 1433
+ },
+ {
+ "epoch": 19.92267365661861,
+ "grad_norm": 0.2503527104854584,
+ "learning_rate": 0.0006,
+ "loss": 3.9469428062438965,
+ "step": 1434
+ },
+ {
+ "epoch": 19.936653560506773,
+ "grad_norm": 0.25390249490737915,
+ "learning_rate": 0.0006,
+ "loss": 3.941803455352783,
+ "step": 1435
+ },
+ {
+ "epoch": 19.950633464394933,
+ "grad_norm": 0.2288687825202942,
+ "learning_rate": 0.0006,
+ "loss": 3.9385883808135986,
+ "step": 1436
+ },
+ {
+ "epoch": 19.964613368283093,
+ "grad_norm": 0.2231096774339676,
+ "learning_rate": 0.0006,
+ "loss": 3.9255237579345703,
+ "step": 1437
+ },
+ {
+ "epoch": 19.978593272171253,
+ "grad_norm": 0.20729343593120575,
+ "learning_rate": 0.0006,
+ "loss": 3.9443163871765137,
+ "step": 1438
+ },
+ {
+ "epoch": 19.992573176059416,
+ "grad_norm": 0.197743758559227,
+ "learning_rate": 0.0006,
+ "loss": 3.925455093383789,
+ "step": 1439
+ },
+ {
+ "epoch": 20.0,
+ "grad_norm": 0.23943661153316498,
+ "learning_rate": 0.0006,
+ "loss": 3.9458866119384766,
+ "step": 1440
+ },
+ {
+ "epoch": 20.0,
+ "eval_loss": 4.144192218780518,
+ "eval_runtime": 44.0278,
+ "eval_samples_per_second": 55.465,
+ "eval_steps_per_second": 3.475,
+ "step": 1440
+ },
+ {
+ "epoch": 20.01397990388816,
+ "grad_norm": 0.2032143622636795,
+ "learning_rate": 0.0006,
+ "loss": 3.9151499271392822,
+ "step": 1441
+ },
+ {
+ "epoch": 20.027959807776323,
+ "grad_norm": 0.20164789259433746,
+ "learning_rate": 0.0006,
+ "loss": 3.874115228652954,
+ "step": 1442
+ },
+ {
+ "epoch": 20.041939711664483,
+ "grad_norm": 0.20796619355678558,
+ "learning_rate": 0.0006,
+ "loss": 3.9090776443481445,
+ "step": 1443
+ },
+ {
+ "epoch": 20.055919615552643,
+ "grad_norm": 0.1999918520450592,
+ "learning_rate": 0.0006,
+ "loss": 3.926563262939453,
+ "step": 1444
+ },
+ {
+ "epoch": 20.069899519440803,
+ "grad_norm": 0.204790860414505,
+ "learning_rate": 0.0006,
+ "loss": 3.9088830947875977,
+ "step": 1445
+ },
+ {
+ "epoch": 20.083879423328966,
+ "grad_norm": 0.21507175266742706,
+ "learning_rate": 0.0006,
+ "loss": 3.916504383087158,
+ "step": 1446
+ },
+ {
+ "epoch": 20.097859327217126,
+ "grad_norm": 0.2398025095462799,
+ "learning_rate": 0.0006,
+ "loss": 3.9128990173339844,
+ "step": 1447
+ },
+ {
+ "epoch": 20.111839231105286,
+ "grad_norm": 0.26037144660949707,
+ "learning_rate": 0.0006,
+ "loss": 3.9125187397003174,
+ "step": 1448
+ },
+ {
+ "epoch": 20.125819134993446,
+ "grad_norm": 0.25564828515052795,
+ "learning_rate": 0.0006,
+ "loss": 3.891867160797119,
+ "step": 1449
+ },
+ {
+ "epoch": 20.13979903888161,
+ "grad_norm": 0.2767223119735718,
+ "learning_rate": 0.0006,
+ "loss": 3.9202775955200195,
+ "step": 1450
+ },
+ {
+ "epoch": 20.15377894276977,
+ "grad_norm": 0.27696558833122253,
+ "learning_rate": 0.0006,
+ "loss": 3.9231314659118652,
+ "step": 1451
+ },
+ {
+ "epoch": 20.16775884665793,
+ "grad_norm": 0.3054044246673584,
+ "learning_rate": 0.0006,
+ "loss": 3.918138027191162,
+ "step": 1452
+ },
+ {
+ "epoch": 20.18173875054609,
+ "grad_norm": 0.3018973171710968,
+ "learning_rate": 0.0006,
+ "loss": 3.890678882598877,
+ "step": 1453
+ },
+ {
+ "epoch": 20.195718654434252,
+ "grad_norm": 0.306232750415802,
+ "learning_rate": 0.0006,
+ "loss": 3.920753002166748,
+ "step": 1454
+ },
+ {
+ "epoch": 20.209698558322412,
+ "grad_norm": 0.29593729972839355,
+ "learning_rate": 0.0006,
+ "loss": 3.9455509185791016,
+ "step": 1455
+ },
+ {
+ "epoch": 20.22367846221057,
+ "grad_norm": 0.2937646210193634,
+ "learning_rate": 0.0006,
+ "loss": 3.9227709770202637,
+ "step": 1456
+ },
+ {
+ "epoch": 20.23765836609873,
+ "grad_norm": 0.26380231976509094,
+ "learning_rate": 0.0006,
+ "loss": 3.9097609519958496,
+ "step": 1457
+ },
+ {
+ "epoch": 20.251638269986895,
+ "grad_norm": 0.24992692470550537,
+ "learning_rate": 0.0006,
+ "loss": 3.9393627643585205,
+ "step": 1458
+ },
+ {
+ "epoch": 20.265618173875055,
+ "grad_norm": 0.270219087600708,
+ "learning_rate": 0.0006,
+ "loss": 3.929330348968506,
+ "step": 1459
+ },
+ {
+ "epoch": 20.279598077763215,
+ "grad_norm": 0.2860020399093628,
+ "learning_rate": 0.0006,
+ "loss": 3.8947913646698,
+ "step": 1460
+ },
+ {
+ "epoch": 20.293577981651374,
+ "grad_norm": 0.27494579553604126,
+ "learning_rate": 0.0006,
+ "loss": 3.9105992317199707,
+ "step": 1461
+ },
+ {
+ "epoch": 20.307557885539538,
+ "grad_norm": 0.26467713713645935,
+ "learning_rate": 0.0006,
+ "loss": 3.914632797241211,
+ "step": 1462
+ },
+ {
+ "epoch": 20.321537789427698,
+ "grad_norm": 0.25747713446617126,
+ "learning_rate": 0.0006,
+ "loss": 3.919846534729004,
+ "step": 1463
+ },
+ {
+ "epoch": 20.335517693315857,
+ "grad_norm": 0.24027711153030396,
+ "learning_rate": 0.0006,
+ "loss": 3.904740810394287,
+ "step": 1464
+ },
+ {
+ "epoch": 20.34949759720402,
+ "grad_norm": 0.24682414531707764,
+ "learning_rate": 0.0006,
+ "loss": 3.9190149307250977,
+ "step": 1465
+ },
+ {
+ "epoch": 20.36347750109218,
+ "grad_norm": 0.2619759440422058,
+ "learning_rate": 0.0006,
+ "loss": 3.9488329887390137,
+ "step": 1466
+ },
+ {
+ "epoch": 20.37745740498034,
+ "grad_norm": 0.2632448971271515,
+ "learning_rate": 0.0006,
+ "loss": 3.9216647148132324,
+ "step": 1467
+ },
+ {
+ "epoch": 20.3914373088685,
+ "grad_norm": 0.27569764852523804,
+ "learning_rate": 0.0006,
+ "loss": 3.9178895950317383,
+ "step": 1468
+ },
+ {
+ "epoch": 20.405417212756664,
+ "grad_norm": 0.2611774802207947,
+ "learning_rate": 0.0006,
+ "loss": 3.933730125427246,
+ "step": 1469
+ },
+ {
+ "epoch": 20.419397116644824,
+ "grad_norm": 0.2839447557926178,
+ "learning_rate": 0.0006,
+ "loss": 3.9261364936828613,
+ "step": 1470
+ },
+ {
+ "epoch": 20.433377020532983,
+ "grad_norm": 0.29006227850914,
+ "learning_rate": 0.0006,
+ "loss": 3.9157633781433105,
+ "step": 1471
+ },
+ {
+ "epoch": 20.447356924421143,
+ "grad_norm": 0.2809498906135559,
+ "learning_rate": 0.0006,
+ "loss": 3.9211745262145996,
+ "step": 1472
+ },
+ {
+ "epoch": 20.461336828309307,
+ "grad_norm": 0.27859532833099365,
+ "learning_rate": 0.0006,
+ "loss": 3.9115967750549316,
+ "step": 1473
+ },
+ {
+ "epoch": 20.475316732197467,
+ "grad_norm": 0.29114410281181335,
+ "learning_rate": 0.0006,
+ "loss": 3.9024441242218018,
+ "step": 1474
+ },
+ {
+ "epoch": 20.489296636085626,
+ "grad_norm": 0.2686930000782013,
+ "learning_rate": 0.0006,
+ "loss": 3.9497199058532715,
+ "step": 1475
+ },
+ {
+ "epoch": 20.503276539973786,
+ "grad_norm": 0.24120540916919708,
+ "learning_rate": 0.0006,
+ "loss": 3.9218955039978027,
+ "step": 1476
+ },
+ {
+ "epoch": 20.51725644386195,
+ "grad_norm": 0.23689547181129456,
+ "learning_rate": 0.0006,
+ "loss": 3.9410176277160645,
+ "step": 1477
+ },
+ {
+ "epoch": 20.53123634775011,
+ "grad_norm": 0.26382362842559814,
+ "learning_rate": 0.0006,
+ "loss": 3.8880343437194824,
+ "step": 1478
+ },
+ {
+ "epoch": 20.54521625163827,
+ "grad_norm": 0.21628661453723907,
+ "learning_rate": 0.0006,
+ "loss": 3.892622470855713,
+ "step": 1479
+ },
+ {
+ "epoch": 20.55919615552643,
+ "grad_norm": 0.19896996021270752,
+ "learning_rate": 0.0006,
+ "loss": 3.938734769821167,
+ "step": 1480
+ },
+ {
+ "epoch": 20.573176059414592,
+ "grad_norm": 0.20232494175434113,
+ "learning_rate": 0.0006,
+ "loss": 3.9197006225585938,
+ "step": 1481
+ },
+ {
+ "epoch": 20.587155963302752,
+ "grad_norm": 0.21807828545570374,
+ "learning_rate": 0.0006,
+ "loss": 3.9195618629455566,
+ "step": 1482
+ },
+ {
+ "epoch": 20.601135867190912,
+ "grad_norm": 0.21778680384159088,
+ "learning_rate": 0.0006,
+ "loss": 3.913395404815674,
+ "step": 1483
+ },
+ {
+ "epoch": 20.615115771079076,
+ "grad_norm": 0.21015185117721558,
+ "learning_rate": 0.0006,
+ "loss": 3.8858234882354736,
+ "step": 1484
+ },
+ {
+ "epoch": 20.629095674967235,
+ "grad_norm": 0.20131368935108185,
+ "learning_rate": 0.0006,
+ "loss": 3.927213430404663,
+ "step": 1485
+ },
+ {
+ "epoch": 20.643075578855395,
+ "grad_norm": 0.20746243000030518,
+ "learning_rate": 0.0006,
+ "loss": 3.913198471069336,
+ "step": 1486
+ },
+ {
+ "epoch": 20.657055482743555,
+ "grad_norm": 0.2024548053741455,
+ "learning_rate": 0.0006,
+ "loss": 3.923048257827759,
+ "step": 1487
+ },
+ {
+ "epoch": 20.67103538663172,
+ "grad_norm": 0.19735988974571228,
+ "learning_rate": 0.0006,
+ "loss": 3.9136500358581543,
+ "step": 1488
+ },
+ {
+ "epoch": 20.68501529051988,
+ "grad_norm": 0.19781625270843506,
+ "learning_rate": 0.0006,
+ "loss": 3.883793592453003,
+ "step": 1489
+ },
+ {
+ "epoch": 20.698995194408038,
+ "grad_norm": 0.1911996454000473,
+ "learning_rate": 0.0006,
+ "loss": 3.9078567028045654,
+ "step": 1490
+ },
+ {
+ "epoch": 20.712975098296198,
+ "grad_norm": 0.1989123821258545,
+ "learning_rate": 0.0006,
+ "loss": 3.9314043521881104,
+ "step": 1491
+ },
+ {
+ "epoch": 20.72695500218436,
+ "grad_norm": 0.18839342892169952,
+ "learning_rate": 0.0006,
+ "loss": 3.8955953121185303,
+ "step": 1492
+ },
+ {
+ "epoch": 20.74093490607252,
+ "grad_norm": 0.1944834142923355,
+ "learning_rate": 0.0006,
+ "loss": 3.9272377490997314,
+ "step": 1493
+ },
+ {
+ "epoch": 20.75491480996068,
+ "grad_norm": 0.20829126238822937,
+ "learning_rate": 0.0006,
+ "loss": 3.878857374191284,
+ "step": 1494
+ },
+ {
+ "epoch": 20.76889471384884,
+ "grad_norm": 0.21438424289226532,
+ "learning_rate": 0.0006,
+ "loss": 3.9155564308166504,
+ "step": 1495
+ },
+ {
+ "epoch": 20.782874617737004,
+ "grad_norm": 0.22309324145317078,
+ "learning_rate": 0.0006,
+ "loss": 3.9281692504882812,
+ "step": 1496
+ },
+ {
+ "epoch": 20.796854521625164,
+ "grad_norm": 0.2053767591714859,
+ "learning_rate": 0.0006,
+ "loss": 3.9096317291259766,
+ "step": 1497
+ },
+ {
+ "epoch": 20.810834425513324,
+ "grad_norm": 0.20429186522960663,
+ "learning_rate": 0.0006,
+ "loss": 3.9184865951538086,
+ "step": 1498
+ },
+ {
+ "epoch": 20.824814329401484,
+ "grad_norm": 0.21983473002910614,
+ "learning_rate": 0.0006,
+ "loss": 3.9130771160125732,
+ "step": 1499
+ },
+ {
+ "epoch": 20.838794233289647,
+ "grad_norm": 0.21649539470672607,
+ "learning_rate": 0.0006,
+ "loss": 3.921581268310547,
+ "step": 1500
+ },
+ {
+ "epoch": 20.852774137177807,
+ "grad_norm": 0.19645053148269653,
+ "learning_rate": 0.0006,
+ "loss": 3.966360092163086,
+ "step": 1501
+ },
+ {
+ "epoch": 20.866754041065967,
+ "grad_norm": 0.2126782387495041,
+ "learning_rate": 0.0006,
+ "loss": 3.9004554748535156,
+ "step": 1502
+ },
+ {
+ "epoch": 20.88073394495413,
+ "grad_norm": 0.22359658777713776,
+ "learning_rate": 0.0006,
+ "loss": 3.92336368560791,
+ "step": 1503
+ },
+ {
+ "epoch": 20.89471384884229,
+ "grad_norm": 0.2334042638540268,
+ "learning_rate": 0.0006,
+ "loss": 3.9188671112060547,
+ "step": 1504
+ },
+ {
+ "epoch": 20.90869375273045,
+ "grad_norm": 0.24595916271209717,
+ "learning_rate": 0.0006,
+ "loss": 3.9348371028900146,
+ "step": 1505
+ },
+ {
+ "epoch": 20.92267365661861,
+ "grad_norm": 0.24177910387516022,
+ "learning_rate": 0.0006,
+ "loss": 3.8796424865722656,
+ "step": 1506
+ },
+ {
+ "epoch": 20.936653560506773,
+ "grad_norm": 0.24193289875984192,
+ "learning_rate": 0.0006,
+ "loss": 3.892627716064453,
+ "step": 1507
+ },
+ {
+ "epoch": 20.950633464394933,
+ "grad_norm": 0.252849280834198,
+ "learning_rate": 0.0006,
+ "loss": 3.9300179481506348,
+ "step": 1508
+ },
+ {
+ "epoch": 20.964613368283093,
+ "grad_norm": 0.24933326244354248,
+ "learning_rate": 0.0006,
+ "loss": 3.9597225189208984,
+ "step": 1509
+ },
+ {
+ "epoch": 20.978593272171253,
+ "grad_norm": 0.23850969970226288,
+ "learning_rate": 0.0006,
+ "loss": 3.9027397632598877,
+ "step": 1510
+ },
+ {
+ "epoch": 20.992573176059416,
+ "grad_norm": 0.23298311233520508,
+ "learning_rate": 0.0006,
+ "loss": 3.9024105072021484,
+ "step": 1511
+ },
+ {
+ "epoch": 21.0,
+ "grad_norm": 0.2467455416917801,
+ "learning_rate": 0.0006,
+ "loss": 3.915929079055786,
+ "step": 1512
+ },
+ {
+ "epoch": 21.0,
+ "eval_loss": 4.136331081390381,
+ "eval_runtime": 43.9468,
+ "eval_samples_per_second": 55.567,
+ "eval_steps_per_second": 3.481,
+ "step": 1512
+ },
+ {
+ "epoch": 21.01397990388816,
+ "grad_norm": 0.2195885181427002,
+ "learning_rate": 0.0006,
+ "loss": 3.873412847518921,
+ "step": 1513
+ },
+ {
+ "epoch": 21.027959807776323,
+ "grad_norm": 0.24250614643096924,
+ "learning_rate": 0.0006,
+ "loss": 3.882302761077881,
+ "step": 1514
+ },
+ {
+ "epoch": 21.041939711664483,
+ "grad_norm": 0.249113991856575,
+ "learning_rate": 0.0006,
+ "loss": 3.9112048149108887,
+ "step": 1515
+ },
+ {
+ "epoch": 21.055919615552643,
+ "grad_norm": 0.25365301966667175,
+ "learning_rate": 0.0006,
+ "loss": 3.8625712394714355,
+ "step": 1516
+ },
+ {
+ "epoch": 21.069899519440803,
+ "grad_norm": 0.2218591272830963,
+ "learning_rate": 0.0006,
+ "loss": 3.876072406768799,
+ "step": 1517
+ },
+ {
+ "epoch": 21.083879423328966,
+ "grad_norm": 0.238582581281662,
+ "learning_rate": 0.0006,
+ "loss": 3.862060546875,
+ "step": 1518
+ },
+ {
+ "epoch": 21.097859327217126,
+ "grad_norm": 0.25051242113113403,
+ "learning_rate": 0.0006,
+ "loss": 3.905315399169922,
+ "step": 1519
+ },
+ {
+ "epoch": 21.111839231105286,
+ "grad_norm": 0.2391843944787979,
+ "learning_rate": 0.0006,
+ "loss": 3.909144401550293,
+ "step": 1520
+ },
+ {
+ "epoch": 21.125819134993446,
+ "grad_norm": 0.230543315410614,
+ "learning_rate": 0.0006,
+ "loss": 3.8856799602508545,
+ "step": 1521
+ },
+ {
+ "epoch": 21.13979903888161,
+ "grad_norm": 0.24165484309196472,
+ "learning_rate": 0.0006,
+ "loss": 3.893883228302002,
+ "step": 1522
+ },
+ {
+ "epoch": 21.15377894276977,
+ "grad_norm": 0.24657143652439117,
+ "learning_rate": 0.0006,
+ "loss": 3.901129722595215,
+ "step": 1523
+ },
+ {
+ "epoch": 21.16775884665793,
+ "grad_norm": 0.2659998834133148,
+ "learning_rate": 0.0006,
+ "loss": 3.910468101501465,
+ "step": 1524
+ },
+ {
+ "epoch": 21.18173875054609,
+ "grad_norm": 0.2673095166683197,
+ "learning_rate": 0.0006,
+ "loss": 3.917454242706299,
+ "step": 1525
+ },
+ {
+ "epoch": 21.195718654434252,
+ "grad_norm": 0.22122322022914886,
+ "learning_rate": 0.0006,
+ "loss": 3.9017257690429688,
+ "step": 1526
+ },
+ {
+ "epoch": 21.209698558322412,
+ "grad_norm": 0.21882867813110352,
+ "learning_rate": 0.0006,
+ "loss": 3.8605496883392334,
+ "step": 1527
+ },
+ {
+ "epoch": 21.22367846221057,
+ "grad_norm": 0.22335563600063324,
+ "learning_rate": 0.0006,
+ "loss": 3.88120174407959,
+ "step": 1528
+ },
+ {
+ "epoch": 21.23765836609873,
+ "grad_norm": 0.22973211109638214,
+ "learning_rate": 0.0006,
+ "loss": 3.8636834621429443,
+ "step": 1529
+ },
+ {
+ "epoch": 21.251638269986895,
+ "grad_norm": 0.2410288006067276,
+ "learning_rate": 0.0006,
+ "loss": 3.8698177337646484,
+ "step": 1530
+ },
+ {
+ "epoch": 21.265618173875055,
+ "grad_norm": 0.2454768717288971,
+ "learning_rate": 0.0006,
+ "loss": 3.905341148376465,
+ "step": 1531
+ },
+ {
+ "epoch": 21.279598077763215,
+ "grad_norm": 0.2271580696105957,
+ "learning_rate": 0.0006,
+ "loss": 3.864063262939453,
+ "step": 1532
+ },
+ {
+ "epoch": 21.293577981651374,
+ "grad_norm": 0.2200947403907776,
+ "learning_rate": 0.0006,
+ "loss": 3.8889589309692383,
+ "step": 1533
+ },
+ {
+ "epoch": 21.307557885539538,
+ "grad_norm": 0.2180824875831604,
+ "learning_rate": 0.0006,
+ "loss": 3.8873472213745117,
+ "step": 1534
+ },
+ {
+ "epoch": 21.321537789427698,
+ "grad_norm": 0.214975506067276,
+ "learning_rate": 0.0006,
+ "loss": 3.882307529449463,
+ "step": 1535
+ },
+ {
+ "epoch": 21.335517693315857,
+ "grad_norm": 0.21411260962486267,
+ "learning_rate": 0.0006,
+ "loss": 3.8861560821533203,
+ "step": 1536
+ },
+ {
+ "epoch": 21.34949759720402,
+ "grad_norm": 0.22635889053344727,
+ "learning_rate": 0.0006,
+ "loss": 3.9174342155456543,
+ "step": 1537
+ },
+ {
+ "epoch": 21.36347750109218,
+ "grad_norm": 0.22700625658035278,
+ "learning_rate": 0.0006,
+ "loss": 3.890416383743286,
+ "step": 1538
+ },
+ {
+ "epoch": 21.37745740498034,
+ "grad_norm": 0.2106025069952011,
+ "learning_rate": 0.0006,
+ "loss": 3.8672406673431396,
+ "step": 1539
+ },
+ {
+ "epoch": 21.3914373088685,
+ "grad_norm": 0.22994661331176758,
+ "learning_rate": 0.0006,
+ "loss": 3.893190383911133,
+ "step": 1540
+ },
+ {
+ "epoch": 21.405417212756664,
+ "grad_norm": 0.24701105058193207,
+ "learning_rate": 0.0006,
+ "loss": 3.898078441619873,
+ "step": 1541
+ },
+ {
+ "epoch": 21.419397116644824,
+ "grad_norm": 0.26914113759994507,
+ "learning_rate": 0.0006,
+ "loss": 3.905871868133545,
+ "step": 1542
+ },
+ {
+ "epoch": 21.433377020532983,
+ "grad_norm": 0.2904224097728729,
+ "learning_rate": 0.0006,
+ "loss": 3.8919103145599365,
+ "step": 1543
+ },
+ {
+ "epoch": 21.447356924421143,
+ "grad_norm": 0.2911844551563263,
+ "learning_rate": 0.0006,
+ "loss": 3.9073286056518555,
+ "step": 1544
+ },
+ {
+ "epoch": 21.461336828309307,
+ "grad_norm": 0.2742345929145813,
+ "learning_rate": 0.0006,
+ "loss": 3.9075546264648438,
+ "step": 1545
+ },
+ {
+ "epoch": 21.475316732197467,
+ "grad_norm": 0.2341093122959137,
+ "learning_rate": 0.0006,
+ "loss": 3.9232025146484375,
+ "step": 1546
+ },
+ {
+ "epoch": 21.489296636085626,
+ "grad_norm": 0.22808541357517242,
+ "learning_rate": 0.0006,
+ "loss": 3.9168174266815186,
+ "step": 1547
+ },
+ {
+ "epoch": 21.503276539973786,
+ "grad_norm": 0.23049889504909515,
+ "learning_rate": 0.0006,
+ "loss": 3.8850595951080322,
+ "step": 1548
+ },
+ {
+ "epoch": 21.51725644386195,
+ "grad_norm": 0.21519650518894196,
+ "learning_rate": 0.0006,
+ "loss": 3.891313076019287,
+ "step": 1549
+ },
+ {
+ "epoch": 21.53123634775011,
+ "grad_norm": 0.20999883115291595,
+ "learning_rate": 0.0006,
+ "loss": 3.894439220428467,
+ "step": 1550
+ },
+ {
+ "epoch": 21.54521625163827,
+ "grad_norm": 0.19641105830669403,
+ "learning_rate": 0.0006,
+ "loss": 3.894871473312378,
+ "step": 1551
+ },
+ {
+ "epoch": 21.55919615552643,
+ "grad_norm": 0.19108249247074127,
+ "learning_rate": 0.0006,
+ "loss": 3.905968189239502,
+ "step": 1552
+ },
+ {
+ "epoch": 21.573176059414592,
+ "grad_norm": 0.20222234725952148,
+ "learning_rate": 0.0006,
+ "loss": 3.90565824508667,
+ "step": 1553
+ },
+ {
+ "epoch": 21.587155963302752,
+ "grad_norm": 0.20620177686214447,
+ "learning_rate": 0.0006,
+ "loss": 3.9103245735168457,
+ "step": 1554
+ },
+ {
+ "epoch": 21.601135867190912,
+ "grad_norm": 0.2149713784456253,
+ "learning_rate": 0.0006,
+ "loss": 3.8864927291870117,
+ "step": 1555
+ },
+ {
+ "epoch": 21.615115771079076,
+ "grad_norm": 0.2354084551334381,
+ "learning_rate": 0.0006,
+ "loss": 3.905095100402832,
+ "step": 1556
+ },
+ {
+ "epoch": 21.629095674967235,
+ "grad_norm": 0.23949941992759705,
+ "learning_rate": 0.0006,
+ "loss": 3.901803493499756,
+ "step": 1557
+ },
+ {
+ "epoch": 21.643075578855395,
+ "grad_norm": 0.22914277017116547,
+ "learning_rate": 0.0006,
+ "loss": 3.876044273376465,
+ "step": 1558
+ },
+ {
+ "epoch": 21.657055482743555,
+ "grad_norm": 0.2363225370645523,
+ "learning_rate": 0.0006,
+ "loss": 3.910841703414917,
+ "step": 1559
+ },
+ {
+ "epoch": 21.67103538663172,
+ "grad_norm": 0.2635626792907715,
+ "learning_rate": 0.0006,
+ "loss": 3.847407579421997,
+ "step": 1560
+ },
+ {
+ "epoch": 21.68501529051988,
+ "grad_norm": 0.2499786615371704,
+ "learning_rate": 0.0006,
+ "loss": 3.8667140007019043,
+ "step": 1561
+ },
+ {
+ "epoch": 21.698995194408038,
+ "grad_norm": 0.21609611809253693,
+ "learning_rate": 0.0006,
+ "loss": 3.895470142364502,
+ "step": 1562
+ },
+ {
+ "epoch": 21.712975098296198,
+ "grad_norm": 0.2466774582862854,
+ "learning_rate": 0.0006,
+ "loss": 3.8853235244750977,
+ "step": 1563
+ },
+ {
+ "epoch": 21.72695500218436,
+ "grad_norm": 0.23791883885860443,
+ "learning_rate": 0.0006,
+ "loss": 3.899418354034424,
+ "step": 1564
+ },
+ {
+ "epoch": 21.74093490607252,
+ "grad_norm": 0.2048920840024948,
+ "learning_rate": 0.0006,
+ "loss": 3.8992419242858887,
+ "step": 1565
+ },
+ {
+ "epoch": 21.75491480996068,
+ "grad_norm": 0.22266621887683868,
+ "learning_rate": 0.0006,
+ "loss": 3.885765552520752,
+ "step": 1566
+ },
+ {
+ "epoch": 21.76889471384884,
+ "grad_norm": 0.2508748769760132,
+ "learning_rate": 0.0006,
+ "loss": 3.8797037601470947,
+ "step": 1567
+ },
+ {
+ "epoch": 21.782874617737004,
+ "grad_norm": 0.27245673537254333,
+ "learning_rate": 0.0006,
+ "loss": 3.8743176460266113,
+ "step": 1568
+ },
+ {
+ "epoch": 21.796854521625164,
+ "grad_norm": 0.25503191351890564,
+ "learning_rate": 0.0006,
+ "loss": 3.868906259536743,
+ "step": 1569
+ },
+ {
+ "epoch": 21.810834425513324,
+ "grad_norm": 0.22984394431114197,
+ "learning_rate": 0.0006,
+ "loss": 3.9051015377044678,
+ "step": 1570
+ },
+ {
+ "epoch": 21.824814329401484,
+ "grad_norm": 0.2411898821592331,
+ "learning_rate": 0.0006,
+ "loss": 3.8911490440368652,
+ "step": 1571
+ },
+ {
+ "epoch": 21.838794233289647,
+ "grad_norm": 0.22609318792819977,
+ "learning_rate": 0.0006,
+ "loss": 3.894839286804199,
+ "step": 1572
+ },
+ {
+ "epoch": 21.852774137177807,
+ "grad_norm": 0.21904583275318146,
+ "learning_rate": 0.0006,
+ "loss": 3.9314537048339844,
+ "step": 1573
+ },
+ {
+ "epoch": 21.866754041065967,
+ "grad_norm": 0.21869723498821259,
+ "learning_rate": 0.0006,
+ "loss": 3.9141433238983154,
+ "step": 1574
+ },
+ {
+ "epoch": 21.88073394495413,
+ "grad_norm": 0.21682019531726837,
+ "learning_rate": 0.0006,
+ "loss": 3.867898464202881,
+ "step": 1575
+ },
+ {
+ "epoch": 21.89471384884229,
+ "grad_norm": 0.2211964726448059,
+ "learning_rate": 0.0006,
+ "loss": 3.8892226219177246,
+ "step": 1576
+ },
+ {
+ "epoch": 21.90869375273045,
+ "grad_norm": 0.2097381353378296,
+ "learning_rate": 0.0006,
+ "loss": 3.9194154739379883,
+ "step": 1577
+ },
+ {
+ "epoch": 21.92267365661861,
+ "grad_norm": 0.21229565143585205,
+ "learning_rate": 0.0006,
+ "loss": 3.924694538116455,
+ "step": 1578
+ },
+ {
+ "epoch": 21.936653560506773,
+ "grad_norm": 0.2186083346605301,
+ "learning_rate": 0.0006,
+ "loss": 3.904440402984619,
+ "step": 1579
+ },
+ {
+ "epoch": 21.950633464394933,
+ "grad_norm": 0.21112321317195892,
+ "learning_rate": 0.0006,
+ "loss": 3.905674934387207,
+ "step": 1580
+ },
+ {
+ "epoch": 21.964613368283093,
+ "grad_norm": 0.20867373049259186,
+ "learning_rate": 0.0006,
+ "loss": 3.8761563301086426,
+ "step": 1581
+ },
+ {
+ "epoch": 21.978593272171253,
+ "grad_norm": 0.21640732884407043,
+ "learning_rate": 0.0006,
+ "loss": 3.871950149536133,
+ "step": 1582
+ },
+ {
+ "epoch": 21.992573176059416,
+ "grad_norm": 0.21920442581176758,
+ "learning_rate": 0.0006,
+ "loss": 3.8853464126586914,
+ "step": 1583
+ },
+ {
+ "epoch": 22.0,
+ "grad_norm": 0.24132665991783142,
+ "learning_rate": 0.0006,
+ "loss": 3.9012184143066406,
+ "step": 1584
+ },
+ {
+ "epoch": 22.0,
+ "eval_loss": 4.108598232269287,
+ "eval_runtime": 44.0434,
+ "eval_samples_per_second": 55.445,
+ "eval_steps_per_second": 3.474,
+ "step": 1584
+ },
+ {
+ "epoch": 22.01397990388816,
+ "grad_norm": 0.21989449858665466,
+ "learning_rate": 0.0006,
+ "loss": 3.8657469749450684,
+ "step": 1585
+ },
+ {
+ "epoch": 22.027959807776323,
+ "grad_norm": 0.20416802167892456,
+ "learning_rate": 0.0006,
+ "loss": 3.8682117462158203,
+ "step": 1586
+ },
+ {
+ "epoch": 22.041939711664483,
+ "grad_norm": 0.20651975274085999,
+ "learning_rate": 0.0006,
+ "loss": 3.8501222133636475,
+ "step": 1587
+ },
+ {
+ "epoch": 22.055919615552643,
+ "grad_norm": 0.22987176477909088,
+ "learning_rate": 0.0006,
+ "loss": 3.8830955028533936,
+ "step": 1588
+ },
+ {
+ "epoch": 22.069899519440803,
+ "grad_norm": 0.23308858275413513,
+ "learning_rate": 0.0006,
+ "loss": 3.8659040927886963,
+ "step": 1589
+ },
+ {
+ "epoch": 22.083879423328966,
+ "grad_norm": 0.2144266963005066,
+ "learning_rate": 0.0006,
+ "loss": 3.8311047554016113,
+ "step": 1590
+ },
+ {
+ "epoch": 22.097859327217126,
+ "grad_norm": 0.2052636295557022,
+ "learning_rate": 0.0006,
+ "loss": 3.8700156211853027,
+ "step": 1591
+ },
+ {
+ "epoch": 22.111839231105286,
+ "grad_norm": 0.22792384028434753,
+ "learning_rate": 0.0006,
+ "loss": 3.8799097537994385,
+ "step": 1592
+ },
+ {
+ "epoch": 22.125819134993446,
+ "grad_norm": 0.2533944249153137,
+ "learning_rate": 0.0006,
+ "loss": 3.874959945678711,
+ "step": 1593
+ },
+ {
+ "epoch": 22.13979903888161,
+ "grad_norm": 0.27126258611679077,
+ "learning_rate": 0.0006,
+ "loss": 3.863774299621582,
+ "step": 1594
+ },
+ {
+ "epoch": 22.15377894276977,
+ "grad_norm": 0.2634040415287018,
+ "learning_rate": 0.0006,
+ "loss": 3.8876869678497314,
+ "step": 1595
+ },
+ {
+ "epoch": 22.16775884665793,
+ "grad_norm": 0.267987459897995,
+ "learning_rate": 0.0006,
+ "loss": 3.871776819229126,
+ "step": 1596
+ },
+ {
+ "epoch": 22.18173875054609,
+ "grad_norm": 0.2972337305545807,
+ "learning_rate": 0.0006,
+ "loss": 3.8453969955444336,
+ "step": 1597
+ },
+ {
+ "epoch": 22.195718654434252,
+ "grad_norm": 0.3012159764766693,
+ "learning_rate": 0.0006,
+ "loss": 3.8774254322052,
+ "step": 1598
+ },
+ {
+ "epoch": 22.209698558322412,
+ "grad_norm": 0.27275875210762024,
+ "learning_rate": 0.0006,
+ "loss": 3.8558950424194336,
+ "step": 1599
+ },
+ {
+ "epoch": 22.22367846221057,
+ "grad_norm": 0.2817993462085724,
+ "learning_rate": 0.0006,
+ "loss": 3.872211217880249,
+ "step": 1600
+ },
+ {
+ "epoch": 22.23765836609873,
+ "grad_norm": 0.28823208808898926,
+ "learning_rate": 0.0006,
+ "loss": 3.847616672515869,
+ "step": 1601
+ },
+ {
+ "epoch": 22.251638269986895,
+ "grad_norm": 0.2646387815475464,
+ "learning_rate": 0.0006,
+ "loss": 3.8993802070617676,
+ "step": 1602
+ },
+ {
+ "epoch": 22.265618173875055,
+ "grad_norm": 0.27664077281951904,
+ "learning_rate": 0.0006,
+ "loss": 3.858553409576416,
+ "step": 1603
+ },
+ {
+ "epoch": 22.279598077763215,
+ "grad_norm": 0.27708905935287476,
+ "learning_rate": 0.0006,
+ "loss": 3.8691039085388184,
+ "step": 1604
+ },
+ {
+ "epoch": 22.293577981651374,
+ "grad_norm": 0.3045521378517151,
+ "learning_rate": 0.0006,
+ "loss": 3.8721439838409424,
+ "step": 1605
+ },
+ {
+ "epoch": 22.307557885539538,
+ "grad_norm": 0.3481914699077606,
+ "learning_rate": 0.0006,
+ "loss": 3.894503593444824,
+ "step": 1606
+ },
+ {
+ "epoch": 22.321537789427698,
+ "grad_norm": 0.3298046588897705,
+ "learning_rate": 0.0006,
+ "loss": 3.8420844078063965,
+ "step": 1607
+ },
+ {
+ "epoch": 22.335517693315857,
+ "grad_norm": 0.24967724084854126,
+ "learning_rate": 0.0006,
+ "loss": 3.8892619609832764,
+ "step": 1608
+ },
+ {
+ "epoch": 22.34949759720402,
+ "grad_norm": 0.22645241022109985,
+ "learning_rate": 0.0006,
+ "loss": 3.873265504837036,
+ "step": 1609
+ },
+ {
+ "epoch": 22.36347750109218,
+ "grad_norm": 0.22813954949378967,
+ "learning_rate": 0.0006,
+ "loss": 3.8658013343811035,
+ "step": 1610
+ },
+ {
+ "epoch": 22.37745740498034,
+ "grad_norm": 0.23825274407863617,
+ "learning_rate": 0.0006,
+ "loss": 3.885456085205078,
+ "step": 1611
+ },
+ {
+ "epoch": 22.3914373088685,
+ "grad_norm": 0.23612336814403534,
+ "learning_rate": 0.0006,
+ "loss": 3.851841449737549,
+ "step": 1612
+ },
+ {
+ "epoch": 22.405417212756664,
+ "grad_norm": 0.23851265013217926,
+ "learning_rate": 0.0006,
+ "loss": 3.8711647987365723,
+ "step": 1613
+ },
+ {
+ "epoch": 22.419397116644824,
+ "grad_norm": 0.22977286577224731,
+ "learning_rate": 0.0006,
+ "loss": 3.848539113998413,
+ "step": 1614
+ },
+ {
+ "epoch": 22.433377020532983,
+ "grad_norm": 0.20970143377780914,
+ "learning_rate": 0.0006,
+ "loss": 3.8709521293640137,
+ "step": 1615
+ },
+ {
+ "epoch": 22.447356924421143,
+ "grad_norm": 0.20714804530143738,
+ "learning_rate": 0.0006,
+ "loss": 3.875060558319092,
+ "step": 1616
+ },
+ {
+ "epoch": 22.461336828309307,
+ "grad_norm": 0.18881355226039886,
+ "learning_rate": 0.0006,
+ "loss": 3.8744640350341797,
+ "step": 1617
+ },
+ {
+ "epoch": 22.475316732197467,
+ "grad_norm": 0.1928759068250656,
+ "learning_rate": 0.0006,
+ "loss": 3.867971420288086,
+ "step": 1618
+ },
+ {
+ "epoch": 22.489296636085626,
+ "grad_norm": 0.18614749610424042,
+ "learning_rate": 0.0006,
+ "loss": 3.8738222122192383,
+ "step": 1619
+ },
+ {
+ "epoch": 22.503276539973786,
+ "grad_norm": 0.18614931404590607,
+ "learning_rate": 0.0006,
+ "loss": 3.8470513820648193,
+ "step": 1620
+ },
+ {
+ "epoch": 22.51725644386195,
+ "grad_norm": 0.17805059254169464,
+ "learning_rate": 0.0006,
+ "loss": 3.866396903991699,
+ "step": 1621
+ },
+ {
+ "epoch": 22.53123634775011,
+ "grad_norm": 0.16941314935684204,
+ "learning_rate": 0.0006,
+ "loss": 3.856832265853882,
+ "step": 1622
+ },
+ {
+ "epoch": 22.54521625163827,
+ "grad_norm": 0.1802310198545456,
+ "learning_rate": 0.0006,
+ "loss": 3.885653018951416,
+ "step": 1623
+ },
+ {
+ "epoch": 22.55919615552643,
+ "grad_norm": 0.1854856163263321,
+ "learning_rate": 0.0006,
+ "loss": 3.8779640197753906,
+ "step": 1624
+ },
+ {
+ "epoch": 22.573176059414592,
+ "grad_norm": 0.18765869736671448,
+ "learning_rate": 0.0006,
+ "loss": 3.8449032306671143,
+ "step": 1625
+ },
+ {
+ "epoch": 22.587155963302752,
+ "grad_norm": 0.1907789707183838,
+ "learning_rate": 0.0006,
+ "loss": 3.863029718399048,
+ "step": 1626
+ },
+ {
+ "epoch": 22.601135867190912,
+ "grad_norm": 0.19285395741462708,
+ "learning_rate": 0.0006,
+ "loss": 3.880145788192749,
+ "step": 1627
+ },
+ {
+ "epoch": 22.615115771079076,
+ "grad_norm": 0.19229751825332642,
+ "learning_rate": 0.0006,
+ "loss": 3.8521225452423096,
+ "step": 1628
+ },
+ {
+ "epoch": 22.629095674967235,
+ "grad_norm": 0.191694438457489,
+ "learning_rate": 0.0006,
+ "loss": 3.899827003479004,
+ "step": 1629
+ },
+ {
+ "epoch": 22.643075578855395,
+ "grad_norm": 0.20143048465251923,
+ "learning_rate": 0.0006,
+ "loss": 3.862064838409424,
+ "step": 1630
+ },
+ {
+ "epoch": 22.657055482743555,
+ "grad_norm": 0.1959840953350067,
+ "learning_rate": 0.0006,
+ "loss": 3.8955392837524414,
+ "step": 1631
+ },
+ {
+ "epoch": 22.67103538663172,
+ "grad_norm": 0.21454884111881256,
+ "learning_rate": 0.0006,
+ "loss": 3.8503167629241943,
+ "step": 1632
+ },
+ {
+ "epoch": 22.68501529051988,
+ "grad_norm": 0.21748484671115875,
+ "learning_rate": 0.0006,
+ "loss": 3.897134304046631,
+ "step": 1633
+ },
+ {
+ "epoch": 22.698995194408038,
+ "grad_norm": 0.21204186975955963,
+ "learning_rate": 0.0006,
+ "loss": 3.9292588233947754,
+ "step": 1634
+ },
+ {
+ "epoch": 22.712975098296198,
+ "grad_norm": 0.2112748771905899,
+ "learning_rate": 0.0006,
+ "loss": 3.89798641204834,
+ "step": 1635
+ },
+ {
+ "epoch": 22.72695500218436,
+ "grad_norm": 0.188576802611351,
+ "learning_rate": 0.0006,
+ "loss": 3.85627818107605,
+ "step": 1636
+ },
+ {
+ "epoch": 22.74093490607252,
+ "grad_norm": 0.17755994200706482,
+ "learning_rate": 0.0006,
+ "loss": 3.8480074405670166,
+ "step": 1637
+ },
+ {
+ "epoch": 22.75491480996068,
+ "grad_norm": 0.18037520349025726,
+ "learning_rate": 0.0006,
+ "loss": 3.8800172805786133,
+ "step": 1638
+ },
+ {
+ "epoch": 22.76889471384884,
+ "grad_norm": 0.19205765426158905,
+ "learning_rate": 0.0006,
+ "loss": 3.8658275604248047,
+ "step": 1639
+ },
+ {
+ "epoch": 22.782874617737004,
+ "grad_norm": 0.21801964938640594,
+ "learning_rate": 0.0006,
+ "loss": 3.8999452590942383,
+ "step": 1640
+ },
+ {
+ "epoch": 22.796854521625164,
+ "grad_norm": 0.23586086928844452,
+ "learning_rate": 0.0006,
+ "loss": 3.8660664558410645,
+ "step": 1641
+ },
+ {
+ "epoch": 22.810834425513324,
+ "grad_norm": 0.22289055585861206,
+ "learning_rate": 0.0006,
+ "loss": 3.86102557182312,
+ "step": 1642
+ },
+ {
+ "epoch": 22.824814329401484,
+ "grad_norm": 0.20695745944976807,
+ "learning_rate": 0.0006,
+ "loss": 3.8336222171783447,
+ "step": 1643
+ },
+ {
+ "epoch": 22.838794233289647,
+ "grad_norm": 0.2157406210899353,
+ "learning_rate": 0.0006,
+ "loss": 3.8923370838165283,
+ "step": 1644
+ },
+ {
+ "epoch": 22.852774137177807,
+ "grad_norm": 0.2326202690601349,
+ "learning_rate": 0.0006,
+ "loss": 3.8841443061828613,
+ "step": 1645
+ },
+ {
+ "epoch": 22.866754041065967,
+ "grad_norm": 0.2228803187608719,
+ "learning_rate": 0.0006,
+ "loss": 3.8791375160217285,
+ "step": 1646
+ },
+ {
+ "epoch": 22.88073394495413,
+ "grad_norm": 0.228999063372612,
+ "learning_rate": 0.0006,
+ "loss": 3.9005866050720215,
+ "step": 1647
+ },
+ {
+ "epoch": 22.89471384884229,
+ "grad_norm": 0.19673815369606018,
+ "learning_rate": 0.0006,
+ "loss": 3.8954291343688965,
+ "step": 1648
+ },
+ {
+ "epoch": 22.90869375273045,
+ "grad_norm": 0.1862584501504898,
+ "learning_rate": 0.0006,
+ "loss": 3.8591439723968506,
+ "step": 1649
+ },
+ {
+ "epoch": 22.92267365661861,
+ "grad_norm": 0.21360838413238525,
+ "learning_rate": 0.0006,
+ "loss": 3.862949848175049,
+ "step": 1650
+ },
+ {
+ "epoch": 22.936653560506773,
+ "grad_norm": 0.22538702189922333,
+ "learning_rate": 0.0006,
+ "loss": 3.8466529846191406,
+ "step": 1651
+ },
+ {
+ "epoch": 22.950633464394933,
+ "grad_norm": 0.21452727913856506,
+ "learning_rate": 0.0006,
+ "loss": 3.890007495880127,
+ "step": 1652
+ },
+ {
+ "epoch": 22.964613368283093,
+ "grad_norm": 0.21283482015132904,
+ "learning_rate": 0.0006,
+ "loss": 3.8820929527282715,
+ "step": 1653
+ },
+ {
+ "epoch": 22.978593272171253,
+ "grad_norm": 0.2035825103521347,
+ "learning_rate": 0.0006,
+ "loss": 3.8663241863250732,
+ "step": 1654
+ },
+ {
+ "epoch": 22.992573176059416,
+ "grad_norm": 0.22431661188602448,
+ "learning_rate": 0.0006,
+ "loss": 3.88238525390625,
+ "step": 1655
+ },
+ {
+ "epoch": 23.0,
+ "grad_norm": 0.2619943916797638,
+ "learning_rate": 0.0006,
+ "loss": 3.8482635021209717,
+ "step": 1656
+ },
+ {
+ "epoch": 23.0,
+ "eval_loss": 4.099980354309082,
+ "eval_runtime": 44.1311,
+ "eval_samples_per_second": 55.335,
+ "eval_steps_per_second": 3.467,
+ "step": 1656
+ },
+ {
+ "epoch": 23.01397990388816,
+ "grad_norm": 0.24712848663330078,
+ "learning_rate": 0.0006,
+ "loss": 3.836700916290283,
+ "step": 1657
+ },
+ {
+ "epoch": 23.027959807776323,
+ "grad_norm": 0.28568798303604126,
+ "learning_rate": 0.0006,
+ "loss": 3.8523952960968018,
+ "step": 1658
+ },
+ {
+ "epoch": 23.041939711664483,
+ "grad_norm": 0.2999744415283203,
+ "learning_rate": 0.0006,
+ "loss": 3.8229494094848633,
+ "step": 1659
+ },
+ {
+ "epoch": 23.055919615552643,
+ "grad_norm": 0.32080450654029846,
+ "learning_rate": 0.0006,
+ "loss": 3.8562774658203125,
+ "step": 1660
+ },
+ {
+ "epoch": 23.069899519440803,
+ "grad_norm": 0.293468177318573,
+ "learning_rate": 0.0006,
+ "loss": 3.889139175415039,
+ "step": 1661
+ },
+ {
+ "epoch": 23.083879423328966,
+ "grad_norm": 0.2605799436569214,
+ "learning_rate": 0.0006,
+ "loss": 3.838681221008301,
+ "step": 1662
+ },
+ {
+ "epoch": 23.097859327217126,
+ "grad_norm": 0.2656237483024597,
+ "learning_rate": 0.0006,
+ "loss": 3.8603532314300537,
+ "step": 1663
+ },
+ {
+ "epoch": 23.111839231105286,
+ "grad_norm": 0.27163293957710266,
+ "learning_rate": 0.0006,
+ "loss": 3.846987009048462,
+ "step": 1664
+ },
+ {
+ "epoch": 23.125819134993446,
+ "grad_norm": 0.2719763517379761,
+ "learning_rate": 0.0006,
+ "loss": 3.805354595184326,
+ "step": 1665
+ },
+ {
+ "epoch": 23.13979903888161,
+ "grad_norm": 0.25786274671554565,
+ "learning_rate": 0.0006,
+ "loss": 3.8486907482147217,
+ "step": 1666
+ },
+ {
+ "epoch": 23.15377894276977,
+ "grad_norm": 0.2675692141056061,
+ "learning_rate": 0.0006,
+ "loss": 3.816493511199951,
+ "step": 1667
+ },
+ {
+ "epoch": 23.16775884665793,
+ "grad_norm": 0.2711698114871979,
+ "learning_rate": 0.0006,
+ "loss": 3.851863384246826,
+ "step": 1668
+ },
+ {
+ "epoch": 23.18173875054609,
+ "grad_norm": 0.2588968873023987,
+ "learning_rate": 0.0006,
+ "loss": 3.860816717147827,
+ "step": 1669
+ },
+ {
+ "epoch": 23.195718654434252,
+ "grad_norm": 0.2458600401878357,
+ "learning_rate": 0.0006,
+ "loss": 3.8058223724365234,
+ "step": 1670
+ },
+ {
+ "epoch": 23.209698558322412,
+ "grad_norm": 0.22014005482196808,
+ "learning_rate": 0.0006,
+ "loss": 3.8686985969543457,
+ "step": 1671
+ },
+ {
+ "epoch": 23.22367846221057,
+ "grad_norm": 0.22450537979602814,
+ "learning_rate": 0.0006,
+ "loss": 3.8379364013671875,
+ "step": 1672
+ },
+ {
+ "epoch": 23.23765836609873,
+ "grad_norm": 0.22132326662540436,
+ "learning_rate": 0.0006,
+ "loss": 3.8873870372772217,
+ "step": 1673
+ },
+ {
+ "epoch": 23.251638269986895,
+ "grad_norm": 0.20994804799556732,
+ "learning_rate": 0.0006,
+ "loss": 3.821415424346924,
+ "step": 1674
+ },
+ {
+ "epoch": 23.265618173875055,
+ "grad_norm": 0.2040853649377823,
+ "learning_rate": 0.0006,
+ "loss": 3.831658124923706,
+ "step": 1675
+ },
+ {
+ "epoch": 23.279598077763215,
+ "grad_norm": 0.20878618955612183,
+ "learning_rate": 0.0006,
+ "loss": 3.838672637939453,
+ "step": 1676
+ },
+ {
+ "epoch": 23.293577981651374,
+ "grad_norm": 0.19974198937416077,
+ "learning_rate": 0.0006,
+ "loss": 3.8442561626434326,
+ "step": 1677
+ },
+ {
+ "epoch": 23.307557885539538,
+ "grad_norm": 0.20523984730243683,
+ "learning_rate": 0.0006,
+ "loss": 3.846139907836914,
+ "step": 1678
+ },
+ {
+ "epoch": 23.321537789427698,
+ "grad_norm": 0.2045847624540329,
+ "learning_rate": 0.0006,
+ "loss": 3.8597474098205566,
+ "step": 1679
+ },
+ {
+ "epoch": 23.335517693315857,
+ "grad_norm": 0.20957441627979279,
+ "learning_rate": 0.0006,
+ "loss": 3.8493881225585938,
+ "step": 1680
+ },
+ {
+ "epoch": 23.34949759720402,
+ "grad_norm": 0.2069379836320877,
+ "learning_rate": 0.0006,
+ "loss": 3.8510046005249023,
+ "step": 1681
+ },
+ {
+ "epoch": 23.36347750109218,
+ "grad_norm": 0.19627872109413147,
+ "learning_rate": 0.0006,
+ "loss": 3.844618320465088,
+ "step": 1682
+ },
+ {
+ "epoch": 23.37745740498034,
+ "grad_norm": 0.19599434733390808,
+ "learning_rate": 0.0006,
+ "loss": 3.8245465755462646,
+ "step": 1683
+ },
+ {
+ "epoch": 23.3914373088685,
+ "grad_norm": 0.2035072147846222,
+ "learning_rate": 0.0006,
+ "loss": 3.854422092437744,
+ "step": 1684
+ },
+ {
+ "epoch": 23.405417212756664,
+ "grad_norm": 0.21836814284324646,
+ "learning_rate": 0.0006,
+ "loss": 3.83512282371521,
+ "step": 1685
+ },
+ {
+ "epoch": 23.419397116644824,
+ "grad_norm": 0.22844630479812622,
+ "learning_rate": 0.0006,
+ "loss": 3.8744301795959473,
+ "step": 1686
+ },
+ {
+ "epoch": 23.433377020532983,
+ "grad_norm": 0.2259359359741211,
+ "learning_rate": 0.0006,
+ "loss": 3.8460323810577393,
+ "step": 1687
+ },
+ {
+ "epoch": 23.447356924421143,
+ "grad_norm": 0.24440120160579681,
+ "learning_rate": 0.0006,
+ "loss": 3.8543787002563477,
+ "step": 1688
+ },
+ {
+ "epoch": 23.461336828309307,
+ "grad_norm": 0.25063708424568176,
+ "learning_rate": 0.0006,
+ "loss": 3.851004123687744,
+ "step": 1689
+ },
+ {
+ "epoch": 23.475316732197467,
+ "grad_norm": 0.25515618920326233,
+ "learning_rate": 0.0006,
+ "loss": 3.8685030937194824,
+ "step": 1690
+ },
+ {
+ "epoch": 23.489296636085626,
+ "grad_norm": 0.23961050808429718,
+ "learning_rate": 0.0006,
+ "loss": 3.866792678833008,
+ "step": 1691
+ },
+ {
+ "epoch": 23.503276539973786,
+ "grad_norm": 0.20880955457687378,
+ "learning_rate": 0.0006,
+ "loss": 3.8416638374328613,
+ "step": 1692
+ },
+ {
+ "epoch": 23.51725644386195,
+ "grad_norm": 0.1989721804857254,
+ "learning_rate": 0.0006,
+ "loss": 3.8608641624450684,
+ "step": 1693
+ },
+ {
+ "epoch": 23.53123634775011,
+ "grad_norm": 0.207577183842659,
+ "learning_rate": 0.0006,
+ "loss": 3.8431811332702637,
+ "step": 1694
+ },
+ {
+ "epoch": 23.54521625163827,
+ "grad_norm": 0.20844359695911407,
+ "learning_rate": 0.0006,
+ "loss": 3.882844924926758,
+ "step": 1695
+ },
+ {
+ "epoch": 23.55919615552643,
+ "grad_norm": 0.22511139512062073,
+ "learning_rate": 0.0006,
+ "loss": 3.866156578063965,
+ "step": 1696
+ },
+ {
+ "epoch": 23.573176059414592,
+ "grad_norm": 0.21648484468460083,
+ "learning_rate": 0.0006,
+ "loss": 3.87117075920105,
+ "step": 1697
+ },
+ {
+ "epoch": 23.587155963302752,
+ "grad_norm": 0.2081802636384964,
+ "learning_rate": 0.0006,
+ "loss": 3.828132152557373,
+ "step": 1698
+ },
+ {
+ "epoch": 23.601135867190912,
+ "grad_norm": 0.2017381489276886,
+ "learning_rate": 0.0006,
+ "loss": 3.839737892150879,
+ "step": 1699
+ },
+ {
+ "epoch": 23.615115771079076,
+ "grad_norm": 0.2025786191225052,
+ "learning_rate": 0.0006,
+ "loss": 3.8787710666656494,
+ "step": 1700
+ },
+ {
+ "epoch": 23.629095674967235,
+ "grad_norm": 0.21394102275371552,
+ "learning_rate": 0.0006,
+ "loss": 3.824047088623047,
+ "step": 1701
+ },
+ {
+ "epoch": 23.643075578855395,
+ "grad_norm": 0.20749174058437347,
+ "learning_rate": 0.0006,
+ "loss": 3.877009153366089,
+ "step": 1702
+ },
+ {
+ "epoch": 23.657055482743555,
+ "grad_norm": 0.2132839858531952,
+ "learning_rate": 0.0006,
+ "loss": 3.844214916229248,
+ "step": 1703
+ },
+ {
+ "epoch": 23.67103538663172,
+ "grad_norm": 0.22408637404441833,
+ "learning_rate": 0.0006,
+ "loss": 3.8570785522460938,
+ "step": 1704
+ },
+ {
+ "epoch": 23.68501529051988,
+ "grad_norm": 0.2275897115468979,
+ "learning_rate": 0.0006,
+ "loss": 3.8599512577056885,
+ "step": 1705
+ },
+ {
+ "epoch": 23.698995194408038,
+ "grad_norm": 0.2230614721775055,
+ "learning_rate": 0.0006,
+ "loss": 3.86374568939209,
+ "step": 1706
+ },
+ {
+ "epoch": 23.712975098296198,
+ "grad_norm": 0.21873739361763,
+ "learning_rate": 0.0006,
+ "loss": 3.8530168533325195,
+ "step": 1707
+ },
+ {
+ "epoch": 23.72695500218436,
+ "grad_norm": 0.24418923258781433,
+ "learning_rate": 0.0006,
+ "loss": 3.8410465717315674,
+ "step": 1708
+ },
+ {
+ "epoch": 23.74093490607252,
+ "grad_norm": 0.24894575774669647,
+ "learning_rate": 0.0006,
+ "loss": 3.8386030197143555,
+ "step": 1709
+ },
+ {
+ "epoch": 23.75491480996068,
+ "grad_norm": 0.221230611205101,
+ "learning_rate": 0.0006,
+ "loss": 3.8116674423217773,
+ "step": 1710
+ },
+ {
+ "epoch": 23.76889471384884,
+ "grad_norm": 0.20560568571090698,
+ "learning_rate": 0.0006,
+ "loss": 3.8634426593780518,
+ "step": 1711
+ },
+ {
+ "epoch": 23.782874617737004,
+ "grad_norm": 0.20450648665428162,
+ "learning_rate": 0.0006,
+ "loss": 3.8690528869628906,
+ "step": 1712
+ },
+ {
+ "epoch": 23.796854521625164,
+ "grad_norm": 0.18996809422969818,
+ "learning_rate": 0.0006,
+ "loss": 3.8484325408935547,
+ "step": 1713
+ },
+ {
+ "epoch": 23.810834425513324,
+ "grad_norm": 0.20165087282657623,
+ "learning_rate": 0.0006,
+ "loss": 3.8823161125183105,
+ "step": 1714
+ },
+ {
+ "epoch": 23.824814329401484,
+ "grad_norm": 0.21149255335330963,
+ "learning_rate": 0.0006,
+ "loss": 3.8833112716674805,
+ "step": 1715
+ },
+ {
+ "epoch": 23.838794233289647,
+ "grad_norm": 0.21254824101924896,
+ "learning_rate": 0.0006,
+ "loss": 3.8414595127105713,
+ "step": 1716
+ },
+ {
+ "epoch": 23.852774137177807,
+ "grad_norm": 0.21313664317131042,
+ "learning_rate": 0.0006,
+ "loss": 3.8732268810272217,
+ "step": 1717
+ },
+ {
+ "epoch": 23.866754041065967,
+ "grad_norm": 0.21635662019252777,
+ "learning_rate": 0.0006,
+ "loss": 3.861222743988037,
+ "step": 1718
+ },
+ {
+ "epoch": 23.88073394495413,
+ "grad_norm": 0.20612190663814545,
+ "learning_rate": 0.0006,
+ "loss": 3.821854591369629,
+ "step": 1719
+ },
+ {
+ "epoch": 23.89471384884229,
+ "grad_norm": 0.1975104659795761,
+ "learning_rate": 0.0006,
+ "loss": 3.8815202713012695,
+ "step": 1720
+ },
+ {
+ "epoch": 23.90869375273045,
+ "grad_norm": 0.20893609523773193,
+ "learning_rate": 0.0006,
+ "loss": 3.8581607341766357,
+ "step": 1721
+ },
+ {
+ "epoch": 23.92267365661861,
+ "grad_norm": 0.2125461846590042,
+ "learning_rate": 0.0006,
+ "loss": 3.839498281478882,
+ "step": 1722
+ },
+ {
+ "epoch": 23.936653560506773,
+ "grad_norm": 0.19985878467559814,
+ "learning_rate": 0.0006,
+ "loss": 3.856555223464966,
+ "step": 1723
+ },
+ {
+ "epoch": 23.950633464394933,
+ "grad_norm": 0.1922348290681839,
+ "learning_rate": 0.0006,
+ "loss": 3.8956782817840576,
+ "step": 1724
+ },
+ {
+ "epoch": 23.964613368283093,
+ "grad_norm": 0.2191949337720871,
+ "learning_rate": 0.0006,
+ "loss": 3.8582406044006348,
+ "step": 1725
+ },
+ {
+ "epoch": 23.978593272171253,
+ "grad_norm": 0.2569248676300049,
+ "learning_rate": 0.0006,
+ "loss": 3.855678081512451,
+ "step": 1726
+ },
+ {
+ "epoch": 23.992573176059416,
+ "grad_norm": 0.2641172409057617,
+ "learning_rate": 0.0006,
+ "loss": 3.8426473140716553,
+ "step": 1727
+ },
+ {
+ "epoch": 24.0,
+ "grad_norm": 0.29637208580970764,
+ "learning_rate": 0.0006,
+ "loss": 3.843040704727173,
+ "step": 1728
+ },
+ {
+ "epoch": 24.0,
+ "eval_loss": 4.075617790222168,
+ "eval_runtime": 43.9795,
+ "eval_samples_per_second": 55.526,
+ "eval_steps_per_second": 3.479,
+ "step": 1728
+ },
+ {
+ "epoch": 24.01397990388816,
+ "grad_norm": 0.2804758548736572,
+ "learning_rate": 0.0006,
+ "loss": 3.819150924682617,
+ "step": 1729
+ },
+ {
+ "epoch": 24.027959807776323,
+ "grad_norm": 0.2796347141265869,
+ "learning_rate": 0.0006,
+ "loss": 3.8400537967681885,
+ "step": 1730
+ },
+ {
+ "epoch": 24.041939711664483,
+ "grad_norm": 0.28388649225234985,
+ "learning_rate": 0.0006,
+ "loss": 3.844595432281494,
+ "step": 1731
+ },
+ {
+ "epoch": 24.055919615552643,
+ "grad_norm": 0.2944681942462921,
+ "learning_rate": 0.0006,
+ "loss": 3.8048014640808105,
+ "step": 1732
+ },
+ {
+ "epoch": 24.069899519440803,
+ "grad_norm": 0.2956784665584564,
+ "learning_rate": 0.0006,
+ "loss": 3.8488049507141113,
+ "step": 1733
+ },
+ {
+ "epoch": 24.083879423328966,
+ "grad_norm": 0.2822059392929077,
+ "learning_rate": 0.0006,
+ "loss": 3.850322723388672,
+ "step": 1734
+ },
+ {
+ "epoch": 24.097859327217126,
+ "grad_norm": 0.3012927174568176,
+ "learning_rate": 0.0006,
+ "loss": 3.8748154640197754,
+ "step": 1735
+ },
+ {
+ "epoch": 24.111839231105286,
+ "grad_norm": 0.28868764638900757,
+ "learning_rate": 0.0006,
+ "loss": 3.8282783031463623,
+ "step": 1736
+ },
+ {
+ "epoch": 24.125819134993446,
+ "grad_norm": 0.277203768491745,
+ "learning_rate": 0.0006,
+ "loss": 3.8462908267974854,
+ "step": 1737
+ },
+ {
+ "epoch": 24.13979903888161,
+ "grad_norm": 0.2654508948326111,
+ "learning_rate": 0.0006,
+ "loss": 3.8043856620788574,
+ "step": 1738
+ },
+ {
+ "epoch": 24.15377894276977,
+ "grad_norm": 0.24425740540027618,
+ "learning_rate": 0.0006,
+ "loss": 3.8284308910369873,
+ "step": 1739
+ },
+ {
+ "epoch": 24.16775884665793,
+ "grad_norm": 0.24407348036766052,
+ "learning_rate": 0.0006,
+ "loss": 3.8489203453063965,
+ "step": 1740
+ },
+ {
+ "epoch": 24.18173875054609,
+ "grad_norm": 0.2387724369764328,
+ "learning_rate": 0.0006,
+ "loss": 3.8240389823913574,
+ "step": 1741
+ },
+ {
+ "epoch": 24.195718654434252,
+ "grad_norm": 0.2832290232181549,
+ "learning_rate": 0.0006,
+ "loss": 3.869053363800049,
+ "step": 1742
+ },
+ {
+ "epoch": 24.209698558322412,
+ "grad_norm": 0.26501718163490295,
+ "learning_rate": 0.0006,
+ "loss": 3.8624343872070312,
+ "step": 1743
+ },
+ {
+ "epoch": 24.22367846221057,
+ "grad_norm": 0.24234668910503387,
+ "learning_rate": 0.0006,
+ "loss": 3.823103904724121,
+ "step": 1744
+ },
+ {
+ "epoch": 24.23765836609873,
+ "grad_norm": 0.24160076677799225,
+ "learning_rate": 0.0006,
+ "loss": 3.8174376487731934,
+ "step": 1745
+ },
+ {
+ "epoch": 24.251638269986895,
+ "grad_norm": 0.2447604238986969,
+ "learning_rate": 0.0006,
+ "loss": 3.8345441818237305,
+ "step": 1746
+ },
+ {
+ "epoch": 24.265618173875055,
+ "grad_norm": 0.22864456474781036,
+ "learning_rate": 0.0006,
+ "loss": 3.833101272583008,
+ "step": 1747
+ },
+ {
+ "epoch": 24.279598077763215,
+ "grad_norm": 0.20429204404354095,
+ "learning_rate": 0.0006,
+ "loss": 3.8055219650268555,
+ "step": 1748
+ },
+ {
+ "epoch": 24.293577981651374,
+ "grad_norm": 0.21538510918617249,
+ "learning_rate": 0.0006,
+ "loss": 3.7929327487945557,
+ "step": 1749
+ },
+ {
+ "epoch": 24.307557885539538,
+ "grad_norm": 0.2189008593559265,
+ "learning_rate": 0.0006,
+ "loss": 3.852264881134033,
+ "step": 1750
+ },
+ {
+ "epoch": 24.321537789427698,
+ "grad_norm": 0.2228662073612213,
+ "learning_rate": 0.0006,
+ "loss": 3.831088066101074,
+ "step": 1751
+ },
+ {
+ "epoch": 24.335517693315857,
+ "grad_norm": 0.2039937973022461,
+ "learning_rate": 0.0006,
+ "loss": 3.8358256816864014,
+ "step": 1752
+ },
+ {
+ "epoch": 24.34949759720402,
+ "grad_norm": 0.19247715175151825,
+ "learning_rate": 0.0006,
+ "loss": 3.8077402114868164,
+ "step": 1753
+ },
+ {
+ "epoch": 24.36347750109218,
+ "grad_norm": 0.18301935493946075,
+ "learning_rate": 0.0006,
+ "loss": 3.81380033493042,
+ "step": 1754
+ },
+ {
+ "epoch": 24.37745740498034,
+ "grad_norm": 0.19325268268585205,
+ "learning_rate": 0.0006,
+ "loss": 3.8447322845458984,
+ "step": 1755
+ },
+ {
+ "epoch": 24.3914373088685,
+ "grad_norm": 0.2007269263267517,
+ "learning_rate": 0.0006,
+ "loss": 3.82779860496521,
+ "step": 1756
+ },
+ {
+ "epoch": 24.405417212756664,
+ "grad_norm": 0.20567037165164948,
+ "learning_rate": 0.0006,
+ "loss": 3.800354480743408,
+ "step": 1757
+ },
+ {
+ "epoch": 24.419397116644824,
+ "grad_norm": 0.22553028166294098,
+ "learning_rate": 0.0006,
+ "loss": 3.7910406589508057,
+ "step": 1758
+ },
+ {
+ "epoch": 24.433377020532983,
+ "grad_norm": 0.22697079181671143,
+ "learning_rate": 0.0006,
+ "loss": 3.857635974884033,
+ "step": 1759
+ },
+ {
+ "epoch": 24.447356924421143,
+ "grad_norm": 0.22090297937393188,
+ "learning_rate": 0.0006,
+ "loss": 3.8112804889678955,
+ "step": 1760
+ },
+ {
+ "epoch": 24.461336828309307,
+ "grad_norm": 0.24325518310070038,
+ "learning_rate": 0.0006,
+ "loss": 3.822084426879883,
+ "step": 1761
+ },
+ {
+ "epoch": 24.475316732197467,
+ "grad_norm": 0.2702929377555847,
+ "learning_rate": 0.0006,
+ "loss": 3.8307600021362305,
+ "step": 1762
+ },
+ {
+ "epoch": 24.489296636085626,
+ "grad_norm": 0.2699742317199707,
+ "learning_rate": 0.0006,
+ "loss": 3.8479247093200684,
+ "step": 1763
+ },
+ {
+ "epoch": 24.503276539973786,
+ "grad_norm": 0.2526061236858368,
+ "learning_rate": 0.0006,
+ "loss": 3.8615071773529053,
+ "step": 1764
+ },
+ {
+ "epoch": 24.51725644386195,
+ "grad_norm": 0.2633848190307617,
+ "learning_rate": 0.0006,
+ "loss": 3.8412697315216064,
+ "step": 1765
+ },
+ {
+ "epoch": 24.53123634775011,
+ "grad_norm": 0.2711184024810791,
+ "learning_rate": 0.0006,
+ "loss": 3.83647084236145,
+ "step": 1766
+ },
+ {
+ "epoch": 24.54521625163827,
+ "grad_norm": 0.2691243588924408,
+ "learning_rate": 0.0006,
+ "loss": 3.8489012718200684,
+ "step": 1767
+ },
+ {
+ "epoch": 24.55919615552643,
+ "grad_norm": 0.2580898404121399,
+ "learning_rate": 0.0006,
+ "loss": 3.8464407920837402,
+ "step": 1768
+ },
+ {
+ "epoch": 24.573176059414592,
+ "grad_norm": 0.21342119574546814,
+ "learning_rate": 0.0006,
+ "loss": 3.8279383182525635,
+ "step": 1769
+ },
+ {
+ "epoch": 24.587155963302752,
+ "grad_norm": 0.22102399170398712,
+ "learning_rate": 0.0006,
+ "loss": 3.841676712036133,
+ "step": 1770
+ },
+ {
+ "epoch": 24.601135867190912,
+ "grad_norm": 0.2882173955440521,
+ "learning_rate": 0.0006,
+ "loss": 3.825528383255005,
+ "step": 1771
+ },
+ {
+ "epoch": 24.615115771079076,
+ "grad_norm": 0.3403635323047638,
+ "learning_rate": 0.0006,
+ "loss": 3.8282246589660645,
+ "step": 1772
+ },
+ {
+ "epoch": 24.629095674967235,
+ "grad_norm": 0.32192692160606384,
+ "learning_rate": 0.0006,
+ "loss": 3.8411307334899902,
+ "step": 1773
+ },
+ {
+ "epoch": 24.643075578855395,
+ "grad_norm": 0.2534109055995941,
+ "learning_rate": 0.0006,
+ "loss": 3.843007802963257,
+ "step": 1774
+ },
+ {
+ "epoch": 24.657055482743555,
+ "grad_norm": 0.25483962893486023,
+ "learning_rate": 0.0006,
+ "loss": 3.848358154296875,
+ "step": 1775
+ },
+ {
+ "epoch": 24.67103538663172,
+ "grad_norm": 0.25175443291664124,
+ "learning_rate": 0.0006,
+ "loss": 3.8232598304748535,
+ "step": 1776
+ },
+ {
+ "epoch": 24.68501529051988,
+ "grad_norm": 0.20538510382175446,
+ "learning_rate": 0.0006,
+ "loss": 3.857635498046875,
+ "step": 1777
+ },
+ {
+ "epoch": 24.698995194408038,
+ "grad_norm": 0.240861177444458,
+ "learning_rate": 0.0006,
+ "loss": 3.83717679977417,
+ "step": 1778
+ },
+ {
+ "epoch": 24.712975098296198,
+ "grad_norm": 0.23646967113018036,
+ "learning_rate": 0.0006,
+ "loss": 3.81032133102417,
+ "step": 1779
+ },
+ {
+ "epoch": 24.72695500218436,
+ "grad_norm": 0.2164423167705536,
+ "learning_rate": 0.0006,
+ "loss": 3.807878255844116,
+ "step": 1780
+ },
+ {
+ "epoch": 24.74093490607252,
+ "grad_norm": 0.21160705387592316,
+ "learning_rate": 0.0006,
+ "loss": 3.870394468307495,
+ "step": 1781
+ },
+ {
+ "epoch": 24.75491480996068,
+ "grad_norm": 0.20284807682037354,
+ "learning_rate": 0.0006,
+ "loss": 3.842154026031494,
+ "step": 1782
+ },
+ {
+ "epoch": 24.76889471384884,
+ "grad_norm": 0.20738485455513,
+ "learning_rate": 0.0006,
+ "loss": 3.8347136974334717,
+ "step": 1783
+ },
+ {
+ "epoch": 24.782874617737004,
+ "grad_norm": 0.20253778994083405,
+ "learning_rate": 0.0006,
+ "loss": 3.814948320388794,
+ "step": 1784
+ },
+ {
+ "epoch": 24.796854521625164,
+ "grad_norm": 0.20567010343074799,
+ "learning_rate": 0.0006,
+ "loss": 3.8354592323303223,
+ "step": 1785
+ },
+ {
+ "epoch": 24.810834425513324,
+ "grad_norm": 0.20639720559120178,
+ "learning_rate": 0.0006,
+ "loss": 3.8336033821105957,
+ "step": 1786
+ },
+ {
+ "epoch": 24.824814329401484,
+ "grad_norm": 0.19978247582912445,
+ "learning_rate": 0.0006,
+ "loss": 3.8209140300750732,
+ "step": 1787
+ },
+ {
+ "epoch": 24.838794233289647,
+ "grad_norm": 0.20628373324871063,
+ "learning_rate": 0.0006,
+ "loss": 3.8372955322265625,
+ "step": 1788
+ },
+ {
+ "epoch": 24.852774137177807,
+ "grad_norm": 0.2266162782907486,
+ "learning_rate": 0.0006,
+ "loss": 3.850994110107422,
+ "step": 1789
+ },
+ {
+ "epoch": 24.866754041065967,
+ "grad_norm": 0.22567765414714813,
+ "learning_rate": 0.0006,
+ "loss": 3.8552165031433105,
+ "step": 1790
+ },
+ {
+ "epoch": 24.88073394495413,
+ "grad_norm": 0.228011354804039,
+ "learning_rate": 0.0006,
+ "loss": 3.8310747146606445,
+ "step": 1791
+ },
+ {
+ "epoch": 24.89471384884229,
+ "grad_norm": 0.23706914484500885,
+ "learning_rate": 0.0006,
+ "loss": 3.8369603157043457,
+ "step": 1792
+ },
+ {
+ "epoch": 24.90869375273045,
+ "grad_norm": 0.22669097781181335,
+ "learning_rate": 0.0006,
+ "loss": 3.8443825244903564,
+ "step": 1793
+ },
+ {
+ "epoch": 24.92267365661861,
+ "grad_norm": 0.2051001936197281,
+ "learning_rate": 0.0006,
+ "loss": 3.7938501834869385,
+ "step": 1794
+ },
+ {
+ "epoch": 24.936653560506773,
+ "grad_norm": 0.2091219276189804,
+ "learning_rate": 0.0006,
+ "loss": 3.8167076110839844,
+ "step": 1795
+ },
+ {
+ "epoch": 24.950633464394933,
+ "grad_norm": 0.20517204701900482,
+ "learning_rate": 0.0006,
+ "loss": 3.852670669555664,
+ "step": 1796
+ },
+ {
+ "epoch": 24.964613368283093,
+ "grad_norm": 0.19916993379592896,
+ "learning_rate": 0.0006,
+ "loss": 3.8410873413085938,
+ "step": 1797
+ },
+ {
+ "epoch": 24.978593272171253,
+ "grad_norm": 0.21313942968845367,
+ "learning_rate": 0.0006,
+ "loss": 3.8383948802948,
+ "step": 1798
+ },
+ {
+ "epoch": 24.992573176059416,
+ "grad_norm": 0.21042990684509277,
+ "learning_rate": 0.0006,
+ "loss": 3.8623173236846924,
+ "step": 1799
+ },
+ {
+ "epoch": 25.0,
+ "grad_norm": 0.23052045702934265,
+ "learning_rate": 0.0006,
+ "loss": 3.8646674156188965,
+ "step": 1800
+ },
+ {
+ "epoch": 25.0,
+ "eval_loss": 4.081690311431885,
+ "eval_runtime": 44.036,
+ "eval_samples_per_second": 55.455,
+ "eval_steps_per_second": 3.474,
+ "step": 1800
+ },
+ {
+ "epoch": 25.01397990388816,
+ "grad_norm": 0.22068746387958527,
+ "learning_rate": 0.0006,
+ "loss": 3.8002820014953613,
+ "step": 1801
+ },
+ {
+ "epoch": 25.027959807776323,
+ "grad_norm": 0.20711193978786469,
+ "learning_rate": 0.0006,
+ "loss": 3.787785768508911,
+ "step": 1802
+ },
+ {
+ "epoch": 25.041939711664483,
+ "grad_norm": 0.20659677684307098,
+ "learning_rate": 0.0006,
+ "loss": 3.80245304107666,
+ "step": 1803
+ },
+ {
+ "epoch": 25.055919615552643,
+ "grad_norm": 0.22891797125339508,
+ "learning_rate": 0.0006,
+ "loss": 3.784543514251709,
+ "step": 1804
+ },
+ {
+ "epoch": 25.069899519440803,
+ "grad_norm": 0.23679181933403015,
+ "learning_rate": 0.0006,
+ "loss": 3.8311429023742676,
+ "step": 1805
+ },
+ {
+ "epoch": 25.083879423328966,
+ "grad_norm": 0.2548872232437134,
+ "learning_rate": 0.0006,
+ "loss": 3.8047211170196533,
+ "step": 1806
+ },
+ {
+ "epoch": 25.097859327217126,
+ "grad_norm": 0.26181501150131226,
+ "learning_rate": 0.0006,
+ "loss": 3.837508201599121,
+ "step": 1807
+ },
+ {
+ "epoch": 25.111839231105286,
+ "grad_norm": 0.2548452913761139,
+ "learning_rate": 0.0006,
+ "loss": 3.831544876098633,
+ "step": 1808
+ },
+ {
+ "epoch": 25.125819134993446,
+ "grad_norm": 0.26177605986595154,
+ "learning_rate": 0.0006,
+ "loss": 3.805346965789795,
+ "step": 1809
+ },
+ {
+ "epoch": 25.13979903888161,
+ "grad_norm": 0.2608112394809723,
+ "learning_rate": 0.0006,
+ "loss": 3.8040924072265625,
+ "step": 1810
+ },
+ {
+ "epoch": 25.15377894276977,
+ "grad_norm": 0.2586037814617157,
+ "learning_rate": 0.0006,
+ "loss": 3.8102216720581055,
+ "step": 1811
+ },
+ {
+ "epoch": 25.16775884665793,
+ "grad_norm": 0.26258161664009094,
+ "learning_rate": 0.0006,
+ "loss": 3.8152549266815186,
+ "step": 1812
+ },
+ {
+ "epoch": 25.18173875054609,
+ "grad_norm": 0.2803022265434265,
+ "learning_rate": 0.0006,
+ "loss": 3.82576584815979,
+ "step": 1813
+ },
+ {
+ "epoch": 25.195718654434252,
+ "grad_norm": 0.2618221938610077,
+ "learning_rate": 0.0006,
+ "loss": 3.817220687866211,
+ "step": 1814
+ },
+ {
+ "epoch": 25.209698558322412,
+ "grad_norm": 0.23283469676971436,
+ "learning_rate": 0.0006,
+ "loss": 3.7999041080474854,
+ "step": 1815
+ },
+ {
+ "epoch": 25.22367846221057,
+ "grad_norm": 0.20110781490802765,
+ "learning_rate": 0.0006,
+ "loss": 3.783228874206543,
+ "step": 1816
+ },
+ {
+ "epoch": 25.23765836609873,
+ "grad_norm": 0.2231830358505249,
+ "learning_rate": 0.0006,
+ "loss": 3.8032913208007812,
+ "step": 1817
+ },
+ {
+ "epoch": 25.251638269986895,
+ "grad_norm": 0.21807286143302917,
+ "learning_rate": 0.0006,
+ "loss": 3.817028045654297,
+ "step": 1818
+ },
+ {
+ "epoch": 25.265618173875055,
+ "grad_norm": 0.22710664570331573,
+ "learning_rate": 0.0006,
+ "loss": 3.8201727867126465,
+ "step": 1819
+ },
+ {
+ "epoch": 25.279598077763215,
+ "grad_norm": 0.22299866378307343,
+ "learning_rate": 0.0006,
+ "loss": 3.8198719024658203,
+ "step": 1820
+ },
+ {
+ "epoch": 25.293577981651374,
+ "grad_norm": 0.20886564254760742,
+ "learning_rate": 0.0006,
+ "loss": 3.792414665222168,
+ "step": 1821
+ },
+ {
+ "epoch": 25.307557885539538,
+ "grad_norm": 0.20887352526187897,
+ "learning_rate": 0.0006,
+ "loss": 3.7634057998657227,
+ "step": 1822
+ },
+ {
+ "epoch": 25.321537789427698,
+ "grad_norm": 0.24560041725635529,
+ "learning_rate": 0.0006,
+ "loss": 3.79359769821167,
+ "step": 1823
+ },
+ {
+ "epoch": 25.335517693315857,
+ "grad_norm": 0.22767415642738342,
+ "learning_rate": 0.0006,
+ "loss": 3.8313469886779785,
+ "step": 1824
+ },
+ {
+ "epoch": 25.34949759720402,
+ "grad_norm": 0.21617893874645233,
+ "learning_rate": 0.0006,
+ "loss": 3.77200984954834,
+ "step": 1825
+ },
+ {
+ "epoch": 25.36347750109218,
+ "grad_norm": 0.21010833978652954,
+ "learning_rate": 0.0006,
+ "loss": 3.8042140007019043,
+ "step": 1826
+ },
+ {
+ "epoch": 25.37745740498034,
+ "grad_norm": 0.24087965488433838,
+ "learning_rate": 0.0006,
+ "loss": 3.8260979652404785,
+ "step": 1827
+ },
+ {
+ "epoch": 25.3914373088685,
+ "grad_norm": 0.2735275626182556,
+ "learning_rate": 0.0006,
+ "loss": 3.8499274253845215,
+ "step": 1828
+ },
+ {
+ "epoch": 25.405417212756664,
+ "grad_norm": 0.24831001460552216,
+ "learning_rate": 0.0006,
+ "loss": 3.8146448135375977,
+ "step": 1829
+ },
+ {
+ "epoch": 25.419397116644824,
+ "grad_norm": 0.21822866797447205,
+ "learning_rate": 0.0006,
+ "loss": 3.7845146656036377,
+ "step": 1830
+ },
+ {
+ "epoch": 25.433377020532983,
+ "grad_norm": 0.19948813319206238,
+ "learning_rate": 0.0006,
+ "loss": 3.823997974395752,
+ "step": 1831
+ },
+ {
+ "epoch": 25.447356924421143,
+ "grad_norm": 0.18342702090740204,
+ "learning_rate": 0.0006,
+ "loss": 3.8201193809509277,
+ "step": 1832
+ },
+ {
+ "epoch": 25.461336828309307,
+ "grad_norm": 0.19377560913562775,
+ "learning_rate": 0.0006,
+ "loss": 3.8069632053375244,
+ "step": 1833
+ },
+ {
+ "epoch": 25.475316732197467,
+ "grad_norm": 0.22348709404468536,
+ "learning_rate": 0.0006,
+ "loss": 3.7918643951416016,
+ "step": 1834
+ },
+ {
+ "epoch": 25.489296636085626,
+ "grad_norm": 0.24484702944755554,
+ "learning_rate": 0.0006,
+ "loss": 3.85046124458313,
+ "step": 1835
+ },
+ {
+ "epoch": 25.503276539973786,
+ "grad_norm": 0.2493520826101303,
+ "learning_rate": 0.0006,
+ "loss": 3.8043932914733887,
+ "step": 1836
+ },
+ {
+ "epoch": 25.51725644386195,
+ "grad_norm": 0.21509641408920288,
+ "learning_rate": 0.0006,
+ "loss": 3.8064627647399902,
+ "step": 1837
+ },
+ {
+ "epoch": 25.53123634775011,
+ "grad_norm": 0.21912820637226105,
+ "learning_rate": 0.0006,
+ "loss": 3.850588321685791,
+ "step": 1838
+ },
+ {
+ "epoch": 25.54521625163827,
+ "grad_norm": 0.28400927782058716,
+ "learning_rate": 0.0006,
+ "loss": 3.79818058013916,
+ "step": 1839
+ },
+ {
+ "epoch": 25.55919615552643,
+ "grad_norm": 0.32193225622177124,
+ "learning_rate": 0.0006,
+ "loss": 3.836275815963745,
+ "step": 1840
+ },
+ {
+ "epoch": 25.573176059414592,
+ "grad_norm": 0.2902325987815857,
+ "learning_rate": 0.0006,
+ "loss": 3.8080005645751953,
+ "step": 1841
+ },
+ {
+ "epoch": 25.587155963302752,
+ "grad_norm": 0.21759532392024994,
+ "learning_rate": 0.0006,
+ "loss": 3.8233771324157715,
+ "step": 1842
+ },
+ {
+ "epoch": 25.601135867190912,
+ "grad_norm": 0.19645214080810547,
+ "learning_rate": 0.0006,
+ "loss": 3.838881015777588,
+ "step": 1843
+ },
+ {
+ "epoch": 25.615115771079076,
+ "grad_norm": 0.19322903454303741,
+ "learning_rate": 0.0006,
+ "loss": 3.7870054244995117,
+ "step": 1844
+ },
+ {
+ "epoch": 25.629095674967235,
+ "grad_norm": 0.2074001580476761,
+ "learning_rate": 0.0006,
+ "loss": 3.8239974975585938,
+ "step": 1845
+ },
+ {
+ "epoch": 25.643075578855395,
+ "grad_norm": 0.2166101336479187,
+ "learning_rate": 0.0006,
+ "loss": 3.8290855884552,
+ "step": 1846
+ },
+ {
+ "epoch": 25.657055482743555,
+ "grad_norm": 0.23738539218902588,
+ "learning_rate": 0.0006,
+ "loss": 3.7993364334106445,
+ "step": 1847
+ },
+ {
+ "epoch": 25.67103538663172,
+ "grad_norm": 0.23882314562797546,
+ "learning_rate": 0.0006,
+ "loss": 3.802586078643799,
+ "step": 1848
+ },
+ {
+ "epoch": 25.68501529051988,
+ "grad_norm": 0.24168142676353455,
+ "learning_rate": 0.0006,
+ "loss": 3.8303489685058594,
+ "step": 1849
+ },
+ {
+ "epoch": 25.698995194408038,
+ "grad_norm": 0.22423343360424042,
+ "learning_rate": 0.0006,
+ "loss": 3.836228370666504,
+ "step": 1850
+ },
+ {
+ "epoch": 25.712975098296198,
+ "grad_norm": 0.23816974461078644,
+ "learning_rate": 0.0006,
+ "loss": 3.8380274772644043,
+ "step": 1851
+ },
+ {
+ "epoch": 25.72695500218436,
+ "grad_norm": 0.22465108335018158,
+ "learning_rate": 0.0006,
+ "loss": 3.8496339321136475,
+ "step": 1852
+ },
+ {
+ "epoch": 25.74093490607252,
+ "grad_norm": 0.20792442560195923,
+ "learning_rate": 0.0006,
+ "loss": 3.797853946685791,
+ "step": 1853
+ },
+ {
+ "epoch": 25.75491480996068,
+ "grad_norm": 0.20770230889320374,
+ "learning_rate": 0.0006,
+ "loss": 3.842322826385498,
+ "step": 1854
+ },
+ {
+ "epoch": 25.76889471384884,
+ "grad_norm": 0.1928192526102066,
+ "learning_rate": 0.0006,
+ "loss": 3.836540699005127,
+ "step": 1855
+ },
+ {
+ "epoch": 25.782874617737004,
+ "grad_norm": 0.19045178592205048,
+ "learning_rate": 0.0006,
+ "loss": 3.7758889198303223,
+ "step": 1856
+ },
+ {
+ "epoch": 25.796854521625164,
+ "grad_norm": 0.205548495054245,
+ "learning_rate": 0.0006,
+ "loss": 3.8244709968566895,
+ "step": 1857
+ },
+ {
+ "epoch": 25.810834425513324,
+ "grad_norm": 0.20968270301818848,
+ "learning_rate": 0.0006,
+ "loss": 3.8376216888427734,
+ "step": 1858
+ },
+ {
+ "epoch": 25.824814329401484,
+ "grad_norm": 0.18917354941368103,
+ "learning_rate": 0.0006,
+ "loss": 3.8497915267944336,
+ "step": 1859
+ },
+ {
+ "epoch": 25.838794233289647,
+ "grad_norm": 0.2050701528787613,
+ "learning_rate": 0.0006,
+ "loss": 3.819628953933716,
+ "step": 1860
+ },
+ {
+ "epoch": 25.852774137177807,
+ "grad_norm": 0.1981319785118103,
+ "learning_rate": 0.0006,
+ "loss": 3.8007922172546387,
+ "step": 1861
+ },
+ {
+ "epoch": 25.866754041065967,
+ "grad_norm": 0.19055861234664917,
+ "learning_rate": 0.0006,
+ "loss": 3.8304519653320312,
+ "step": 1862
+ },
+ {
+ "epoch": 25.88073394495413,
+ "grad_norm": 0.19255517423152924,
+ "learning_rate": 0.0006,
+ "loss": 3.833280563354492,
+ "step": 1863
+ },
+ {
+ "epoch": 25.89471384884229,
+ "grad_norm": 0.19059430062770844,
+ "learning_rate": 0.0006,
+ "loss": 3.813796281814575,
+ "step": 1864
+ },
+ {
+ "epoch": 25.90869375273045,
+ "grad_norm": 0.18581309914588928,
+ "learning_rate": 0.0006,
+ "loss": 3.8211798667907715,
+ "step": 1865
+ },
+ {
+ "epoch": 25.92267365661861,
+ "grad_norm": 0.20181003212928772,
+ "learning_rate": 0.0006,
+ "loss": 3.8380484580993652,
+ "step": 1866
+ },
+ {
+ "epoch": 25.936653560506773,
+ "grad_norm": 0.22334498167037964,
+ "learning_rate": 0.0006,
+ "loss": 3.8294434547424316,
+ "step": 1867
+ },
+ {
+ "epoch": 25.950633464394933,
+ "grad_norm": 0.20456703007221222,
+ "learning_rate": 0.0006,
+ "loss": 3.819223642349243,
+ "step": 1868
+ },
+ {
+ "epoch": 25.964613368283093,
+ "grad_norm": 0.1885606348514557,
+ "learning_rate": 0.0006,
+ "loss": 3.8110103607177734,
+ "step": 1869
+ },
+ {
+ "epoch": 25.978593272171253,
+ "grad_norm": 0.18862110376358032,
+ "learning_rate": 0.0006,
+ "loss": 3.788691997528076,
+ "step": 1870
+ },
+ {
+ "epoch": 25.992573176059416,
+ "grad_norm": 0.19802744686603546,
+ "learning_rate": 0.0006,
+ "loss": 3.8423619270324707,
+ "step": 1871
+ },
+ {
+ "epoch": 26.0,
+ "grad_norm": 0.23762032389640808,
+ "learning_rate": 0.0006,
+ "loss": 3.7848567962646484,
+ "step": 1872
+ },
+ {
+ "epoch": 26.0,
+ "eval_loss": 4.054965019226074,
+ "eval_runtime": 44.2423,
+ "eval_samples_per_second": 55.196,
+ "eval_steps_per_second": 3.458,
+ "step": 1872
+ },
+ {
+ "epoch": 26.01397990388816,
+ "grad_norm": 0.21533054113388062,
+ "learning_rate": 0.0006,
+ "loss": 3.8123154640197754,
+ "step": 1873
+ },
+ {
+ "epoch": 26.027959807776323,
+ "grad_norm": 0.25094854831695557,
+ "learning_rate": 0.0006,
+ "loss": 3.7847447395324707,
+ "step": 1874
+ },
+ {
+ "epoch": 26.041939711664483,
+ "grad_norm": 0.24042077362537384,
+ "learning_rate": 0.0006,
+ "loss": 3.8033599853515625,
+ "step": 1875
+ },
+ {
+ "epoch": 26.055919615552643,
+ "grad_norm": 0.2425149381160736,
+ "learning_rate": 0.0006,
+ "loss": 3.7828550338745117,
+ "step": 1876
+ },
+ {
+ "epoch": 26.069899519440803,
+ "grad_norm": 0.2300514280796051,
+ "learning_rate": 0.0006,
+ "loss": 3.750882148742676,
+ "step": 1877
+ },
+ {
+ "epoch": 26.083879423328966,
+ "grad_norm": 0.2513943612575531,
+ "learning_rate": 0.0006,
+ "loss": 3.800323963165283,
+ "step": 1878
+ },
+ {
+ "epoch": 26.097859327217126,
+ "grad_norm": 0.2536966800689697,
+ "learning_rate": 0.0006,
+ "loss": 3.8198962211608887,
+ "step": 1879
+ },
+ {
+ "epoch": 26.111839231105286,
+ "grad_norm": 0.24483931064605713,
+ "learning_rate": 0.0006,
+ "loss": 3.825563907623291,
+ "step": 1880
+ },
+ {
+ "epoch": 26.125819134993446,
+ "grad_norm": 0.2502584755420685,
+ "learning_rate": 0.0006,
+ "loss": 3.78756046295166,
+ "step": 1881
+ },
+ {
+ "epoch": 26.13979903888161,
+ "grad_norm": 0.2695745527744293,
+ "learning_rate": 0.0006,
+ "loss": 3.8205409049987793,
+ "step": 1882
+ },
+ {
+ "epoch": 26.15377894276977,
+ "grad_norm": 0.2873472273349762,
+ "learning_rate": 0.0006,
+ "loss": 3.7880778312683105,
+ "step": 1883
+ },
+ {
+ "epoch": 26.16775884665793,
+ "grad_norm": 0.28609949350357056,
+ "learning_rate": 0.0006,
+ "loss": 3.788517951965332,
+ "step": 1884
+ },
+ {
+ "epoch": 26.18173875054609,
+ "grad_norm": 0.28352269530296326,
+ "learning_rate": 0.0006,
+ "loss": 3.778015613555908,
+ "step": 1885
+ },
+ {
+ "epoch": 26.195718654434252,
+ "grad_norm": 0.27055084705352783,
+ "learning_rate": 0.0006,
+ "loss": 3.7857203483581543,
+ "step": 1886
+ },
+ {
+ "epoch": 26.209698558322412,
+ "grad_norm": 0.255647748708725,
+ "learning_rate": 0.0006,
+ "loss": 3.791355609893799,
+ "step": 1887
+ },
+ {
+ "epoch": 26.22367846221057,
+ "grad_norm": 0.22624439001083374,
+ "learning_rate": 0.0006,
+ "loss": 3.7624831199645996,
+ "step": 1888
+ },
+ {
+ "epoch": 26.23765836609873,
+ "grad_norm": 0.2283596396446228,
+ "learning_rate": 0.0006,
+ "loss": 3.8052897453308105,
+ "step": 1889
+ },
+ {
+ "epoch": 26.251638269986895,
+ "grad_norm": 0.2336510866880417,
+ "learning_rate": 0.0006,
+ "loss": 3.789015054702759,
+ "step": 1890
+ },
+ {
+ "epoch": 26.265618173875055,
+ "grad_norm": 0.24107608199119568,
+ "learning_rate": 0.0006,
+ "loss": 3.756551742553711,
+ "step": 1891
+ },
+ {
+ "epoch": 26.279598077763215,
+ "grad_norm": 0.22438564896583557,
+ "learning_rate": 0.0006,
+ "loss": 3.797952651977539,
+ "step": 1892
+ },
+ {
+ "epoch": 26.293577981651374,
+ "grad_norm": 0.24594341218471527,
+ "learning_rate": 0.0006,
+ "loss": 3.7925708293914795,
+ "step": 1893
+ },
+ {
+ "epoch": 26.307557885539538,
+ "grad_norm": 0.23314352333545685,
+ "learning_rate": 0.0006,
+ "loss": 3.792447328567505,
+ "step": 1894
+ },
+ {
+ "epoch": 26.321537789427698,
+ "grad_norm": 0.20870383083820343,
+ "learning_rate": 0.0006,
+ "loss": 3.7888340950012207,
+ "step": 1895
+ },
+ {
+ "epoch": 26.335517693315857,
+ "grad_norm": 0.206504687666893,
+ "learning_rate": 0.0006,
+ "loss": 3.7856602668762207,
+ "step": 1896
+ },
+ {
+ "epoch": 26.34949759720402,
+ "grad_norm": 0.20193266868591309,
+ "learning_rate": 0.0006,
+ "loss": 3.810800552368164,
+ "step": 1897
+ },
+ {
+ "epoch": 26.36347750109218,
+ "grad_norm": 0.2143869698047638,
+ "learning_rate": 0.0006,
+ "loss": 3.818742275238037,
+ "step": 1898
+ },
+ {
+ "epoch": 26.37745740498034,
+ "grad_norm": 0.21388593316078186,
+ "learning_rate": 0.0006,
+ "loss": 3.7576632499694824,
+ "step": 1899
+ },
+ {
+ "epoch": 26.3914373088685,
+ "grad_norm": 0.1933414787054062,
+ "learning_rate": 0.0006,
+ "loss": 3.802579879760742,
+ "step": 1900
+ },
+ {
+ "epoch": 26.405417212756664,
+ "grad_norm": 0.18144549429416656,
+ "learning_rate": 0.0006,
+ "loss": 3.7830452919006348,
+ "step": 1901
+ },
+ {
+ "epoch": 26.419397116644824,
+ "grad_norm": 0.20027601718902588,
+ "learning_rate": 0.0006,
+ "loss": 3.8112521171569824,
+ "step": 1902
+ },
+ {
+ "epoch": 26.433377020532983,
+ "grad_norm": 0.19402910768985748,
+ "learning_rate": 0.0006,
+ "loss": 3.778012990951538,
+ "step": 1903
+ },
+ {
+ "epoch": 26.447356924421143,
+ "grad_norm": 0.19020743668079376,
+ "learning_rate": 0.0006,
+ "loss": 3.823355197906494,
+ "step": 1904
+ },
+ {
+ "epoch": 26.461336828309307,
+ "grad_norm": 0.1885242760181427,
+ "learning_rate": 0.0006,
+ "loss": 3.782108783721924,
+ "step": 1905
+ },
+ {
+ "epoch": 26.475316732197467,
+ "grad_norm": 0.2024235874414444,
+ "learning_rate": 0.0006,
+ "loss": 3.810448408126831,
+ "step": 1906
+ },
+ {
+ "epoch": 26.489296636085626,
+ "grad_norm": 0.21408027410507202,
+ "learning_rate": 0.0006,
+ "loss": 3.8185606002807617,
+ "step": 1907
+ },
+ {
+ "epoch": 26.503276539973786,
+ "grad_norm": 0.22810906171798706,
+ "learning_rate": 0.0006,
+ "loss": 3.8052706718444824,
+ "step": 1908
+ },
+ {
+ "epoch": 26.51725644386195,
+ "grad_norm": 0.21328197419643402,
+ "learning_rate": 0.0006,
+ "loss": 3.7858219146728516,
+ "step": 1909
+ },
+ {
+ "epoch": 26.53123634775011,
+ "grad_norm": 0.20843173563480377,
+ "learning_rate": 0.0006,
+ "loss": 3.8069310188293457,
+ "step": 1910
+ },
+ {
+ "epoch": 26.54521625163827,
+ "grad_norm": 0.2072986662387848,
+ "learning_rate": 0.0006,
+ "loss": 3.794975996017456,
+ "step": 1911
+ },
+ {
+ "epoch": 26.55919615552643,
+ "grad_norm": 0.2203216850757599,
+ "learning_rate": 0.0006,
+ "loss": 3.8070101737976074,
+ "step": 1912
+ },
+ {
+ "epoch": 26.573176059414592,
+ "grad_norm": 0.23449191451072693,
+ "learning_rate": 0.0006,
+ "loss": 3.828695774078369,
+ "step": 1913
+ },
+ {
+ "epoch": 26.587155963302752,
+ "grad_norm": 0.2222008854150772,
+ "learning_rate": 0.0006,
+ "loss": 3.781275749206543,
+ "step": 1914
+ },
+ {
+ "epoch": 26.601135867190912,
+ "grad_norm": 0.22328314185142517,
+ "learning_rate": 0.0006,
+ "loss": 3.7953736782073975,
+ "step": 1915
+ },
+ {
+ "epoch": 26.615115771079076,
+ "grad_norm": 0.2377961128950119,
+ "learning_rate": 0.0006,
+ "loss": 3.8428916931152344,
+ "step": 1916
+ },
+ {
+ "epoch": 26.629095674967235,
+ "grad_norm": 0.2546147108078003,
+ "learning_rate": 0.0006,
+ "loss": 3.7940590381622314,
+ "step": 1917
+ },
+ {
+ "epoch": 26.643075578855395,
+ "grad_norm": 0.24234509468078613,
+ "learning_rate": 0.0006,
+ "loss": 3.802234172821045,
+ "step": 1918
+ },
+ {
+ "epoch": 26.657055482743555,
+ "grad_norm": 0.21294651925563812,
+ "learning_rate": 0.0006,
+ "loss": 3.8159232139587402,
+ "step": 1919
+ },
+ {
+ "epoch": 26.67103538663172,
+ "grad_norm": 0.20008964836597443,
+ "learning_rate": 0.0006,
+ "loss": 3.796949863433838,
+ "step": 1920
+ },
+ {
+ "epoch": 26.68501529051988,
+ "grad_norm": 0.21031023561954498,
+ "learning_rate": 0.0006,
+ "loss": 3.8015570640563965,
+ "step": 1921
+ },
+ {
+ "epoch": 26.698995194408038,
+ "grad_norm": 0.2185603827238083,
+ "learning_rate": 0.0006,
+ "loss": 3.8022537231445312,
+ "step": 1922
+ },
+ {
+ "epoch": 26.712975098296198,
+ "grad_norm": 0.22957198321819305,
+ "learning_rate": 0.0006,
+ "loss": 3.7859907150268555,
+ "step": 1923
+ },
+ {
+ "epoch": 26.72695500218436,
+ "grad_norm": 0.23779156804084778,
+ "learning_rate": 0.0006,
+ "loss": 3.830345630645752,
+ "step": 1924
+ },
+ {
+ "epoch": 26.74093490607252,
+ "grad_norm": 0.23577193915843964,
+ "learning_rate": 0.0006,
+ "loss": 3.777338981628418,
+ "step": 1925
+ },
+ {
+ "epoch": 26.75491480996068,
+ "grad_norm": 0.2521933913230896,
+ "learning_rate": 0.0006,
+ "loss": 3.8215396404266357,
+ "step": 1926
+ },
+ {
+ "epoch": 26.76889471384884,
+ "grad_norm": 0.25050726532936096,
+ "learning_rate": 0.0006,
+ "loss": 3.817509651184082,
+ "step": 1927
+ },
+ {
+ "epoch": 26.782874617737004,
+ "grad_norm": 0.24442453682422638,
+ "learning_rate": 0.0006,
+ "loss": 3.8033013343811035,
+ "step": 1928
+ },
+ {
+ "epoch": 26.796854521625164,
+ "grad_norm": 0.2280828058719635,
+ "learning_rate": 0.0006,
+ "loss": 3.798625946044922,
+ "step": 1929
+ },
+ {
+ "epoch": 26.810834425513324,
+ "grad_norm": 0.23072117567062378,
+ "learning_rate": 0.0006,
+ "loss": 3.8109097480773926,
+ "step": 1930
+ },
+ {
+ "epoch": 26.824814329401484,
+ "grad_norm": 0.2690806984901428,
+ "learning_rate": 0.0006,
+ "loss": 3.7707223892211914,
+ "step": 1931
+ },
+ {
+ "epoch": 26.838794233289647,
+ "grad_norm": 0.24973517656326294,
+ "learning_rate": 0.0006,
+ "loss": 3.7788357734680176,
+ "step": 1932
+ },
+ {
+ "epoch": 26.852774137177807,
+ "grad_norm": 0.24221451580524445,
+ "learning_rate": 0.0006,
+ "loss": 3.8083114624023438,
+ "step": 1933
+ },
+ {
+ "epoch": 26.866754041065967,
+ "grad_norm": 0.23499037325382233,
+ "learning_rate": 0.0006,
+ "loss": 3.845512866973877,
+ "step": 1934
+ },
+ {
+ "epoch": 26.88073394495413,
+ "grad_norm": 0.2172643095254898,
+ "learning_rate": 0.0006,
+ "loss": 3.8171584606170654,
+ "step": 1935
+ },
+ {
+ "epoch": 26.89471384884229,
+ "grad_norm": 0.19935013353824615,
+ "learning_rate": 0.0006,
+ "loss": 3.808596611022949,
+ "step": 1936
+ },
+ {
+ "epoch": 26.90869375273045,
+ "grad_norm": 0.2077745944261551,
+ "learning_rate": 0.0006,
+ "loss": 3.842836856842041,
+ "step": 1937
+ },
+ {
+ "epoch": 26.92267365661861,
+ "grad_norm": 0.20017282664775848,
+ "learning_rate": 0.0006,
+ "loss": 3.791734457015991,
+ "step": 1938
+ },
+ {
+ "epoch": 26.936653560506773,
+ "grad_norm": 0.2082037627696991,
+ "learning_rate": 0.0006,
+ "loss": 3.7987842559814453,
+ "step": 1939
+ },
+ {
+ "epoch": 26.950633464394933,
+ "grad_norm": 0.21100632846355438,
+ "learning_rate": 0.0006,
+ "loss": 3.8033156394958496,
+ "step": 1940
+ },
+ {
+ "epoch": 26.964613368283093,
+ "grad_norm": 0.2091331034898758,
+ "learning_rate": 0.0006,
+ "loss": 3.8250908851623535,
+ "step": 1941
+ },
+ {
+ "epoch": 26.978593272171253,
+ "grad_norm": 0.19728544354438782,
+ "learning_rate": 0.0006,
+ "loss": 3.7934365272521973,
+ "step": 1942
+ },
+ {
+ "epoch": 26.992573176059416,
+ "grad_norm": 0.19266465306282043,
+ "learning_rate": 0.0006,
+ "loss": 3.8095879554748535,
+ "step": 1943
+ },
+ {
+ "epoch": 27.0,
+ "grad_norm": 0.2264554500579834,
+ "learning_rate": 0.0006,
+ "loss": 3.840135335922241,
+ "step": 1944
+ },
+ {
+ "epoch": 27.0,
+ "eval_loss": 4.046233654022217,
+ "eval_runtime": 44.0648,
+ "eval_samples_per_second": 55.418,
+ "eval_steps_per_second": 3.472,
+ "step": 1944
+ },
+ {
+ "epoch": 27.01397990388816,
+ "grad_norm": 0.24101831018924713,
+ "learning_rate": 0.0006,
+ "loss": 3.7463197708129883,
+ "step": 1945
+ },
+ {
+ "epoch": 27.027959807776323,
+ "grad_norm": 0.2917300760746002,
+ "learning_rate": 0.0006,
+ "loss": 3.769083261489868,
+ "step": 1946
+ },
+ {
+ "epoch": 27.041939711664483,
+ "grad_norm": 0.30864080786705017,
+ "learning_rate": 0.0006,
+ "loss": 3.7774248123168945,
+ "step": 1947
+ },
+ {
+ "epoch": 27.055919615552643,
+ "grad_norm": 0.28574317693710327,
+ "learning_rate": 0.0006,
+ "loss": 3.759530544281006,
+ "step": 1948
+ },
+ {
+ "epoch": 27.069899519440803,
+ "grad_norm": 0.23381628096103668,
+ "learning_rate": 0.0006,
+ "loss": 3.764347791671753,
+ "step": 1949
+ },
+ {
+ "epoch": 27.083879423328966,
+ "grad_norm": 0.2717961072921753,
+ "learning_rate": 0.0006,
+ "loss": 3.785306692123413,
+ "step": 1950
+ },
+ {
+ "epoch": 27.097859327217126,
+ "grad_norm": 0.2753375470638275,
+ "learning_rate": 0.0006,
+ "loss": 3.7511696815490723,
+ "step": 1951
+ },
+ {
+ "epoch": 27.111839231105286,
+ "grad_norm": 0.260250061750412,
+ "learning_rate": 0.0006,
+ "loss": 3.7775721549987793,
+ "step": 1952
+ },
+ {
+ "epoch": 27.125819134993446,
+ "grad_norm": 0.2462741732597351,
+ "learning_rate": 0.0006,
+ "loss": 3.775203227996826,
+ "step": 1953
+ },
+ {
+ "epoch": 27.13979903888161,
+ "grad_norm": 0.23599569499492645,
+ "learning_rate": 0.0006,
+ "loss": 3.7580947875976562,
+ "step": 1954
+ },
+ {
+ "epoch": 27.15377894276977,
+ "grad_norm": 0.21749968826770782,
+ "learning_rate": 0.0006,
+ "loss": 3.778254985809326,
+ "step": 1955
+ },
+ {
+ "epoch": 27.16775884665793,
+ "grad_norm": 0.22210343182086945,
+ "learning_rate": 0.0006,
+ "loss": 3.734727144241333,
+ "step": 1956
+ },
+ {
+ "epoch": 27.18173875054609,
+ "grad_norm": 0.23376141488552094,
+ "learning_rate": 0.0006,
+ "loss": 3.7892181873321533,
+ "step": 1957
+ },
+ {
+ "epoch": 27.195718654434252,
+ "grad_norm": 0.21751847863197327,
+ "learning_rate": 0.0006,
+ "loss": 3.801621913909912,
+ "step": 1958
+ },
+ {
+ "epoch": 27.209698558322412,
+ "grad_norm": 0.22995133697986603,
+ "learning_rate": 0.0006,
+ "loss": 3.8031363487243652,
+ "step": 1959
+ },
+ {
+ "epoch": 27.22367846221057,
+ "grad_norm": 0.22716350853443146,
+ "learning_rate": 0.0006,
+ "loss": 3.7591521739959717,
+ "step": 1960
+ },
+ {
+ "epoch": 27.23765836609873,
+ "grad_norm": 0.20819596946239471,
+ "learning_rate": 0.0006,
+ "loss": 3.7988929748535156,
+ "step": 1961
+ },
+ {
+ "epoch": 27.251638269986895,
+ "grad_norm": 0.19861504435539246,
+ "learning_rate": 0.0006,
+ "loss": 3.7752838134765625,
+ "step": 1962
+ },
+ {
+ "epoch": 27.265618173875055,
+ "grad_norm": 0.1959371268749237,
+ "learning_rate": 0.0006,
+ "loss": 3.7707290649414062,
+ "step": 1963
+ },
+ {
+ "epoch": 27.279598077763215,
+ "grad_norm": 0.18772225081920624,
+ "learning_rate": 0.0006,
+ "loss": 3.7714555263519287,
+ "step": 1964
+ },
+ {
+ "epoch": 27.293577981651374,
+ "grad_norm": 0.20839282870292664,
+ "learning_rate": 0.0006,
+ "loss": 3.7857258319854736,
+ "step": 1965
+ },
+ {
+ "epoch": 27.307557885539538,
+ "grad_norm": 0.22521957755088806,
+ "learning_rate": 0.0006,
+ "loss": 3.776909351348877,
+ "step": 1966
+ },
+ {
+ "epoch": 27.321537789427698,
+ "grad_norm": 0.19533076882362366,
+ "learning_rate": 0.0006,
+ "loss": 3.8152523040771484,
+ "step": 1967
+ },
+ {
+ "epoch": 27.335517693315857,
+ "grad_norm": 0.18678881227970123,
+ "learning_rate": 0.0006,
+ "loss": 3.751555919647217,
+ "step": 1968
+ },
+ {
+ "epoch": 27.34949759720402,
+ "grad_norm": 0.18257129192352295,
+ "learning_rate": 0.0006,
+ "loss": 3.7701754570007324,
+ "step": 1969
+ },
+ {
+ "epoch": 27.36347750109218,
+ "grad_norm": 0.18191468715667725,
+ "learning_rate": 0.0006,
+ "loss": 3.817451238632202,
+ "step": 1970
+ },
+ {
+ "epoch": 27.37745740498034,
+ "grad_norm": 0.18665607273578644,
+ "learning_rate": 0.0006,
+ "loss": 3.78645658493042,
+ "step": 1971
+ },
+ {
+ "epoch": 27.3914373088685,
+ "grad_norm": 0.19604510068893433,
+ "learning_rate": 0.0006,
+ "loss": 3.7735626697540283,
+ "step": 1972
+ },
+ {
+ "epoch": 27.405417212756664,
+ "grad_norm": 0.20136640965938568,
+ "learning_rate": 0.0006,
+ "loss": 3.77310848236084,
+ "step": 1973
+ },
+ {
+ "epoch": 27.419397116644824,
+ "grad_norm": 0.19314947724342346,
+ "learning_rate": 0.0006,
+ "loss": 3.8084068298339844,
+ "step": 1974
+ },
+ {
+ "epoch": 27.433377020532983,
+ "grad_norm": 0.20761604607105255,
+ "learning_rate": 0.0006,
+ "loss": 3.80732798576355,
+ "step": 1975
+ },
+ {
+ "epoch": 27.447356924421143,
+ "grad_norm": 0.2239987850189209,
+ "learning_rate": 0.0006,
+ "loss": 3.7950329780578613,
+ "step": 1976
+ },
+ {
+ "epoch": 27.461336828309307,
+ "grad_norm": 0.22146444022655487,
+ "learning_rate": 0.0006,
+ "loss": 3.7957234382629395,
+ "step": 1977
+ },
+ {
+ "epoch": 27.475316732197467,
+ "grad_norm": 0.23218585550785065,
+ "learning_rate": 0.0006,
+ "loss": 3.806377410888672,
+ "step": 1978
+ },
+ {
+ "epoch": 27.489296636085626,
+ "grad_norm": 0.23549026250839233,
+ "learning_rate": 0.0006,
+ "loss": 3.7833383083343506,
+ "step": 1979
+ },
+ {
+ "epoch": 27.503276539973786,
+ "grad_norm": 0.24219457805156708,
+ "learning_rate": 0.0006,
+ "loss": 3.8154187202453613,
+ "step": 1980
+ },
+ {
+ "epoch": 27.51725644386195,
+ "grad_norm": 0.23703953623771667,
+ "learning_rate": 0.0006,
+ "loss": 3.7846405506134033,
+ "step": 1981
+ },
+ {
+ "epoch": 27.53123634775011,
+ "grad_norm": 0.23596109449863434,
+ "learning_rate": 0.0006,
+ "loss": 3.7698163986206055,
+ "step": 1982
+ },
+ {
+ "epoch": 27.54521625163827,
+ "grad_norm": 0.23073506355285645,
+ "learning_rate": 0.0006,
+ "loss": 3.8114185333251953,
+ "step": 1983
+ },
+ {
+ "epoch": 27.55919615552643,
+ "grad_norm": 0.24761143326759338,
+ "learning_rate": 0.0006,
+ "loss": 3.7548117637634277,
+ "step": 1984
+ },
+ {
+ "epoch": 27.573176059414592,
+ "grad_norm": 0.2834068238735199,
+ "learning_rate": 0.0006,
+ "loss": 3.7990212440490723,
+ "step": 1985
+ },
+ {
+ "epoch": 27.587155963302752,
+ "grad_norm": 0.29774922132492065,
+ "learning_rate": 0.0006,
+ "loss": 3.7845072746276855,
+ "step": 1986
+ },
+ {
+ "epoch": 27.601135867190912,
+ "grad_norm": 0.2732089161872864,
+ "learning_rate": 0.0006,
+ "loss": 3.8050694465637207,
+ "step": 1987
+ },
+ {
+ "epoch": 27.615115771079076,
+ "grad_norm": 0.24433180689811707,
+ "learning_rate": 0.0006,
+ "loss": 3.762704372406006,
+ "step": 1988
+ },
+ {
+ "epoch": 27.629095674967235,
+ "grad_norm": 0.21340419352054596,
+ "learning_rate": 0.0006,
+ "loss": 3.826023817062378,
+ "step": 1989
+ },
+ {
+ "epoch": 27.643075578855395,
+ "grad_norm": 0.22518761456012726,
+ "learning_rate": 0.0006,
+ "loss": 3.7823970317840576,
+ "step": 1990
+ },
+ {
+ "epoch": 27.657055482743555,
+ "grad_norm": 0.2196940928697586,
+ "learning_rate": 0.0006,
+ "loss": 3.787463426589966,
+ "step": 1991
+ },
+ {
+ "epoch": 27.67103538663172,
+ "grad_norm": 0.21906471252441406,
+ "learning_rate": 0.0006,
+ "loss": 3.7856104373931885,
+ "step": 1992
+ },
+ {
+ "epoch": 27.68501529051988,
+ "grad_norm": 0.2280956357717514,
+ "learning_rate": 0.0006,
+ "loss": 3.7829794883728027,
+ "step": 1993
+ },
+ {
+ "epoch": 27.698995194408038,
+ "grad_norm": 0.22567005455493927,
+ "learning_rate": 0.0006,
+ "loss": 3.762316942214966,
+ "step": 1994
+ },
+ {
+ "epoch": 27.712975098296198,
+ "grad_norm": 0.21703341603279114,
+ "learning_rate": 0.0006,
+ "loss": 3.772535800933838,
+ "step": 1995
+ },
+ {
+ "epoch": 27.72695500218436,
+ "grad_norm": 0.20586732029914856,
+ "learning_rate": 0.0006,
+ "loss": 3.775930881500244,
+ "step": 1996
+ },
+ {
+ "epoch": 27.74093490607252,
+ "grad_norm": 0.2126319408416748,
+ "learning_rate": 0.0006,
+ "loss": 3.793353796005249,
+ "step": 1997
+ },
+ {
+ "epoch": 27.75491480996068,
+ "grad_norm": 0.19664280116558075,
+ "learning_rate": 0.0006,
+ "loss": 3.7721195220947266,
+ "step": 1998
+ },
+ {
+ "epoch": 27.76889471384884,
+ "grad_norm": 0.17695854604244232,
+ "learning_rate": 0.0006,
+ "loss": 3.7931227684020996,
+ "step": 1999
+ },
+ {
+ "epoch": 27.782874617737004,
+ "grad_norm": 0.1899620145559311,
+ "learning_rate": 0.0006,
+ "loss": 3.798692226409912,
+ "step": 2000
+ },
+ {
+ "epoch": 27.796854521625164,
+ "grad_norm": 0.20334762334823608,
+ "learning_rate": 0.0006,
+ "loss": 3.774670124053955,
+ "step": 2001
+ },
+ {
+ "epoch": 27.810834425513324,
+ "grad_norm": 0.21150588989257812,
+ "learning_rate": 0.0006,
+ "loss": 3.803859233856201,
+ "step": 2002
+ },
+ {
+ "epoch": 27.824814329401484,
+ "grad_norm": 0.20425523817539215,
+ "learning_rate": 0.0006,
+ "loss": 3.810410976409912,
+ "step": 2003
+ },
+ {
+ "epoch": 27.838794233289647,
+ "grad_norm": 0.20468413829803467,
+ "learning_rate": 0.0006,
+ "loss": 3.800917625427246,
+ "step": 2004
+ },
+ {
+ "epoch": 27.852774137177807,
+ "grad_norm": 0.2113286256790161,
+ "learning_rate": 0.0006,
+ "loss": 3.7581989765167236,
+ "step": 2005
+ },
+ {
+ "epoch": 27.866754041065967,
+ "grad_norm": 0.2098054736852646,
+ "learning_rate": 0.0006,
+ "loss": 3.7921502590179443,
+ "step": 2006
+ },
+ {
+ "epoch": 27.88073394495413,
+ "grad_norm": 0.21701586246490479,
+ "learning_rate": 0.0006,
+ "loss": 3.8166770935058594,
+ "step": 2007
+ },
+ {
+ "epoch": 27.89471384884229,
+ "grad_norm": 0.2086625099182129,
+ "learning_rate": 0.0006,
+ "loss": 3.7732229232788086,
+ "step": 2008
+ },
+ {
+ "epoch": 27.90869375273045,
+ "grad_norm": 0.2186812162399292,
+ "learning_rate": 0.0006,
+ "loss": 3.8067402839660645,
+ "step": 2009
+ },
+ {
+ "epoch": 27.92267365661861,
+ "grad_norm": 0.2168985903263092,
+ "learning_rate": 0.0006,
+ "loss": 3.798159122467041,
+ "step": 2010
+ },
+ {
+ "epoch": 27.936653560506773,
+ "grad_norm": 0.23713620007038116,
+ "learning_rate": 0.0006,
+ "loss": 3.7958693504333496,
+ "step": 2011
+ },
+ {
+ "epoch": 27.950633464394933,
+ "grad_norm": 0.23592841625213623,
+ "learning_rate": 0.0006,
+ "loss": 3.795126438140869,
+ "step": 2012
+ },
+ {
+ "epoch": 27.964613368283093,
+ "grad_norm": 0.22210197150707245,
+ "learning_rate": 0.0006,
+ "loss": 3.791013240814209,
+ "step": 2013
+ },
+ {
+ "epoch": 27.978593272171253,
+ "grad_norm": 0.23190008103847504,
+ "learning_rate": 0.0006,
+ "loss": 3.813408374786377,
+ "step": 2014
+ },
+ {
+ "epoch": 27.992573176059416,
+ "grad_norm": 0.22158131003379822,
+ "learning_rate": 0.0006,
+ "loss": 3.7975716590881348,
+ "step": 2015
+ },
+ {
+ "epoch": 28.0,
+ "grad_norm": 0.2300519198179245,
+ "learning_rate": 0.0006,
+ "loss": 3.776214838027954,
+ "step": 2016
+ },
+ {
+ "epoch": 28.0,
+ "eval_loss": 4.04406213760376,
+ "eval_runtime": 44.0285,
+ "eval_samples_per_second": 55.464,
+ "eval_steps_per_second": 3.475,
+ "step": 2016
+ },
+ {
+ "epoch": 28.01397990388816,
+ "grad_norm": 0.21007688343524933,
+ "learning_rate": 0.0006,
+ "loss": 3.7366907596588135,
+ "step": 2017
+ },
+ {
+ "epoch": 28.027959807776323,
+ "grad_norm": 0.1941644549369812,
+ "learning_rate": 0.0006,
+ "loss": 3.744373321533203,
+ "step": 2018
+ },
+ {
+ "epoch": 28.041939711664483,
+ "grad_norm": 0.21308493614196777,
+ "learning_rate": 0.0006,
+ "loss": 3.7650012969970703,
+ "step": 2019
+ },
+ {
+ "epoch": 28.055919615552643,
+ "grad_norm": 0.20114868879318237,
+ "learning_rate": 0.0006,
+ "loss": 3.7652382850646973,
+ "step": 2020
+ },
+ {
+ "epoch": 28.069899519440803,
+ "grad_norm": 0.20266319811344147,
+ "learning_rate": 0.0006,
+ "loss": 3.7710442543029785,
+ "step": 2021
+ },
+ {
+ "epoch": 28.083879423328966,
+ "grad_norm": 0.205102801322937,
+ "learning_rate": 0.0006,
+ "loss": 3.7515463829040527,
+ "step": 2022
+ },
+ {
+ "epoch": 28.097859327217126,
+ "grad_norm": 0.22002041339874268,
+ "learning_rate": 0.0006,
+ "loss": 3.762019157409668,
+ "step": 2023
+ },
+ {
+ "epoch": 28.111839231105286,
+ "grad_norm": 0.2063235342502594,
+ "learning_rate": 0.0006,
+ "loss": 3.765453338623047,
+ "step": 2024
+ },
+ {
+ "epoch": 28.125819134993446,
+ "grad_norm": 0.19145619869232178,
+ "learning_rate": 0.0006,
+ "loss": 3.769411325454712,
+ "step": 2025
+ },
+ {
+ "epoch": 28.13979903888161,
+ "grad_norm": 0.19308455288410187,
+ "learning_rate": 0.0006,
+ "loss": 3.8009989261627197,
+ "step": 2026
+ },
+ {
+ "epoch": 28.15377894276977,
+ "grad_norm": 0.220510333776474,
+ "learning_rate": 0.0006,
+ "loss": 3.7582602500915527,
+ "step": 2027
+ },
+ {
+ "epoch": 28.16775884665793,
+ "grad_norm": 0.22855883836746216,
+ "learning_rate": 0.0006,
+ "loss": 3.803917407989502,
+ "step": 2028
+ },
+ {
+ "epoch": 28.18173875054609,
+ "grad_norm": 0.24206340312957764,
+ "learning_rate": 0.0006,
+ "loss": 3.764101028442383,
+ "step": 2029
+ },
+ {
+ "epoch": 28.195718654434252,
+ "grad_norm": 0.23973612487316132,
+ "learning_rate": 0.0006,
+ "loss": 3.787308931350708,
+ "step": 2030
+ },
+ {
+ "epoch": 28.209698558322412,
+ "grad_norm": 0.21400697529315948,
+ "learning_rate": 0.0006,
+ "loss": 3.7706117630004883,
+ "step": 2031
+ },
+ {
+ "epoch": 28.22367846221057,
+ "grad_norm": 0.21983976662158966,
+ "learning_rate": 0.0006,
+ "loss": 3.772731304168701,
+ "step": 2032
+ },
+ {
+ "epoch": 28.23765836609873,
+ "grad_norm": 0.22427113354206085,
+ "learning_rate": 0.0006,
+ "loss": 3.7724413871765137,
+ "step": 2033
+ },
+ {
+ "epoch": 28.251638269986895,
+ "grad_norm": 0.23665079474449158,
+ "learning_rate": 0.0006,
+ "loss": 3.769845962524414,
+ "step": 2034
+ },
+ {
+ "epoch": 28.265618173875055,
+ "grad_norm": 0.22663180530071259,
+ "learning_rate": 0.0006,
+ "loss": 3.764380931854248,
+ "step": 2035
+ },
+ {
+ "epoch": 28.279598077763215,
+ "grad_norm": 0.21094927191734314,
+ "learning_rate": 0.0006,
+ "loss": 3.7598326206207275,
+ "step": 2036
+ },
+ {
+ "epoch": 28.293577981651374,
+ "grad_norm": 0.20419518649578094,
+ "learning_rate": 0.0006,
+ "loss": 3.7737207412719727,
+ "step": 2037
+ },
+ {
+ "epoch": 28.307557885539538,
+ "grad_norm": 0.2171909660100937,
+ "learning_rate": 0.0006,
+ "loss": 3.7499468326568604,
+ "step": 2038
+ },
+ {
+ "epoch": 28.321537789427698,
+ "grad_norm": 0.22749298810958862,
+ "learning_rate": 0.0006,
+ "loss": 3.767536163330078,
+ "step": 2039
+ },
+ {
+ "epoch": 28.335517693315857,
+ "grad_norm": 0.22821909189224243,
+ "learning_rate": 0.0006,
+ "loss": 3.744386672973633,
+ "step": 2040
+ },
+ {
+ "epoch": 28.34949759720402,
+ "grad_norm": 0.2227880209684372,
+ "learning_rate": 0.0006,
+ "loss": 3.72955322265625,
+ "step": 2041
+ },
+ {
+ "epoch": 28.36347750109218,
+ "grad_norm": 0.22204327583312988,
+ "learning_rate": 0.0006,
+ "loss": 3.793854236602783,
+ "step": 2042
+ },
+ {
+ "epoch": 28.37745740498034,
+ "grad_norm": 0.21621409058570862,
+ "learning_rate": 0.0006,
+ "loss": 3.775379180908203,
+ "step": 2043
+ },
+ {
+ "epoch": 28.3914373088685,
+ "grad_norm": 0.2439221441745758,
+ "learning_rate": 0.0006,
+ "loss": 3.727464199066162,
+ "step": 2044
+ },
+ {
+ "epoch": 28.405417212756664,
+ "grad_norm": 0.24408605694770813,
+ "learning_rate": 0.0006,
+ "loss": 3.761747360229492,
+ "step": 2045
+ },
+ {
+ "epoch": 28.419397116644824,
+ "grad_norm": 0.26118648052215576,
+ "learning_rate": 0.0006,
+ "loss": 3.7587313652038574,
+ "step": 2046
+ },
+ {
+ "epoch": 28.433377020532983,
+ "grad_norm": 0.25948166847229004,
+ "learning_rate": 0.0006,
+ "loss": 3.7698440551757812,
+ "step": 2047
+ },
+ {
+ "epoch": 28.447356924421143,
+ "grad_norm": 0.26413780450820923,
+ "learning_rate": 0.0006,
+ "loss": 3.799107551574707,
+ "step": 2048
+ },
+ {
+ "epoch": 28.461336828309307,
+ "grad_norm": 0.2687148153781891,
+ "learning_rate": 0.0006,
+ "loss": 3.7564382553100586,
+ "step": 2049
+ },
+ {
+ "epoch": 28.475316732197467,
+ "grad_norm": 0.2676694691181183,
+ "learning_rate": 0.0006,
+ "loss": 3.754267692565918,
+ "step": 2050
+ },
+ {
+ "epoch": 28.489296636085626,
+ "grad_norm": 0.27275168895721436,
+ "learning_rate": 0.0006,
+ "loss": 3.802988052368164,
+ "step": 2051
+ },
+ {
+ "epoch": 28.503276539973786,
+ "grad_norm": 0.28783538937568665,
+ "learning_rate": 0.0006,
+ "loss": 3.762540817260742,
+ "step": 2052
+ },
+ {
+ "epoch": 28.51725644386195,
+ "grad_norm": 0.2628997266292572,
+ "learning_rate": 0.0006,
+ "loss": 3.7933349609375,
+ "step": 2053
+ },
+ {
+ "epoch": 28.53123634775011,
+ "grad_norm": 0.2498515099287033,
+ "learning_rate": 0.0006,
+ "loss": 3.7773094177246094,
+ "step": 2054
+ },
+ {
+ "epoch": 28.54521625163827,
+ "grad_norm": 0.22625942528247833,
+ "learning_rate": 0.0006,
+ "loss": 3.803457021713257,
+ "step": 2055
+ },
+ {
+ "epoch": 28.55919615552643,
+ "grad_norm": 0.21488751471042633,
+ "learning_rate": 0.0006,
+ "loss": 3.78924560546875,
+ "step": 2056
+ },
+ {
+ "epoch": 28.573176059414592,
+ "grad_norm": 0.22041267156600952,
+ "learning_rate": 0.0006,
+ "loss": 3.79361629486084,
+ "step": 2057
+ },
+ {
+ "epoch": 28.587155963302752,
+ "grad_norm": 0.23164816200733185,
+ "learning_rate": 0.0006,
+ "loss": 3.735037326812744,
+ "step": 2058
+ },
+ {
+ "epoch": 28.601135867190912,
+ "grad_norm": 0.22371916472911835,
+ "learning_rate": 0.0006,
+ "loss": 3.731417179107666,
+ "step": 2059
+ },
+ {
+ "epoch": 28.615115771079076,
+ "grad_norm": 0.2280314862728119,
+ "learning_rate": 0.0006,
+ "loss": 3.796154499053955,
+ "step": 2060
+ },
+ {
+ "epoch": 28.629095674967235,
+ "grad_norm": 0.21386604011058807,
+ "learning_rate": 0.0006,
+ "loss": 3.778648614883423,
+ "step": 2061
+ },
+ {
+ "epoch": 28.643075578855395,
+ "grad_norm": 0.20433050394058228,
+ "learning_rate": 0.0006,
+ "loss": 3.772826910018921,
+ "step": 2062
+ },
+ {
+ "epoch": 28.657055482743555,
+ "grad_norm": 0.2049262523651123,
+ "learning_rate": 0.0006,
+ "loss": 3.7410364151000977,
+ "step": 2063
+ },
+ {
+ "epoch": 28.67103538663172,
+ "grad_norm": 0.22041259706020355,
+ "learning_rate": 0.0006,
+ "loss": 3.796724319458008,
+ "step": 2064
+ },
+ {
+ "epoch": 28.68501529051988,
+ "grad_norm": 0.2018800675868988,
+ "learning_rate": 0.0006,
+ "loss": 3.775252342224121,
+ "step": 2065
+ },
+ {
+ "epoch": 28.698995194408038,
+ "grad_norm": 0.2159280925989151,
+ "learning_rate": 0.0006,
+ "loss": 3.766021251678467,
+ "step": 2066
+ },
+ {
+ "epoch": 28.712975098296198,
+ "grad_norm": 0.2072775512933731,
+ "learning_rate": 0.0006,
+ "loss": 3.765397548675537,
+ "step": 2067
+ },
+ {
+ "epoch": 28.72695500218436,
+ "grad_norm": 0.19592848420143127,
+ "learning_rate": 0.0006,
+ "loss": 3.8151614665985107,
+ "step": 2068
+ },
+ {
+ "epoch": 28.74093490607252,
+ "grad_norm": 0.19266322255134583,
+ "learning_rate": 0.0006,
+ "loss": 3.774945020675659,
+ "step": 2069
+ },
+ {
+ "epoch": 28.75491480996068,
+ "grad_norm": 0.19442392885684967,
+ "learning_rate": 0.0006,
+ "loss": 3.816283702850342,
+ "step": 2070
+ },
+ {
+ "epoch": 28.76889471384884,
+ "grad_norm": 0.19080746173858643,
+ "learning_rate": 0.0006,
+ "loss": 3.7784247398376465,
+ "step": 2071
+ },
+ {
+ "epoch": 28.782874617737004,
+ "grad_norm": 0.20150451362133026,
+ "learning_rate": 0.0006,
+ "loss": 3.7710249423980713,
+ "step": 2072
+ },
+ {
+ "epoch": 28.796854521625164,
+ "grad_norm": 0.1835816204547882,
+ "learning_rate": 0.0006,
+ "loss": 3.750032901763916,
+ "step": 2073
+ },
+ {
+ "epoch": 28.810834425513324,
+ "grad_norm": 0.1855502873659134,
+ "learning_rate": 0.0006,
+ "loss": 3.7276318073272705,
+ "step": 2074
+ },
+ {
+ "epoch": 28.824814329401484,
+ "grad_norm": 0.18683169782161713,
+ "learning_rate": 0.0006,
+ "loss": 3.7516555786132812,
+ "step": 2075
+ },
+ {
+ "epoch": 28.838794233289647,
+ "grad_norm": 0.2034577578306198,
+ "learning_rate": 0.0006,
+ "loss": 3.749875068664551,
+ "step": 2076
+ },
+ {
+ "epoch": 28.852774137177807,
+ "grad_norm": 0.2234230488538742,
+ "learning_rate": 0.0006,
+ "loss": 3.791429042816162,
+ "step": 2077
+ },
+ {
+ "epoch": 28.866754041065967,
+ "grad_norm": 0.25600525736808777,
+ "learning_rate": 0.0006,
+ "loss": 3.7769298553466797,
+ "step": 2078
+ },
+ {
+ "epoch": 28.88073394495413,
+ "grad_norm": 0.2741529643535614,
+ "learning_rate": 0.0006,
+ "loss": 3.771848201751709,
+ "step": 2079
+ },
+ {
+ "epoch": 28.89471384884229,
+ "grad_norm": 0.2710304260253906,
+ "learning_rate": 0.0006,
+ "loss": 3.8235626220703125,
+ "step": 2080
+ },
+ {
+ "epoch": 28.90869375273045,
+ "grad_norm": 0.25497519969940186,
+ "learning_rate": 0.0006,
+ "loss": 3.811288595199585,
+ "step": 2081
+ },
+ {
+ "epoch": 28.92267365661861,
+ "grad_norm": 0.25689464807510376,
+ "learning_rate": 0.0006,
+ "loss": 3.7848939895629883,
+ "step": 2082
+ },
+ {
+ "epoch": 28.936653560506773,
+ "grad_norm": 0.2794921398162842,
+ "learning_rate": 0.0006,
+ "loss": 3.7836732864379883,
+ "step": 2083
+ },
+ {
+ "epoch": 28.950633464394933,
+ "grad_norm": 0.24730202555656433,
+ "learning_rate": 0.0006,
+ "loss": 3.7703347206115723,
+ "step": 2084
+ },
+ {
+ "epoch": 28.964613368283093,
+ "grad_norm": 0.21078833937644958,
+ "learning_rate": 0.0006,
+ "loss": 3.7521653175354004,
+ "step": 2085
+ },
+ {
+ "epoch": 28.978593272171253,
+ "grad_norm": 0.2188870757818222,
+ "learning_rate": 0.0006,
+ "loss": 3.769604206085205,
+ "step": 2086
+ },
+ {
+ "epoch": 28.992573176059416,
+ "grad_norm": 0.20447929203510284,
+ "learning_rate": 0.0006,
+ "loss": 3.7842764854431152,
+ "step": 2087
+ },
+ {
+ "epoch": 29.0,
+ "grad_norm": 0.21607689559459686,
+ "learning_rate": 0.0006,
+ "loss": 3.7428855895996094,
+ "step": 2088
+ },
+ {
+ "epoch": 29.0,
+ "eval_loss": 4.0355753898620605,
+ "eval_runtime": 44.1435,
+ "eval_samples_per_second": 55.32,
+ "eval_steps_per_second": 3.466,
+ "step": 2088
+ },
+ {
+ "epoch": 29.01397990388816,
+ "grad_norm": 0.21270133554935455,
+ "learning_rate": 0.0006,
+ "loss": 3.7548413276672363,
+ "step": 2089
+ },
+ {
+ "epoch": 29.027959807776323,
+ "grad_norm": 0.21576301753520966,
+ "learning_rate": 0.0006,
+ "loss": 3.754613161087036,
+ "step": 2090
+ },
+ {
+ "epoch": 29.041939711664483,
+ "grad_norm": 0.2162923663854599,
+ "learning_rate": 0.0006,
+ "loss": 3.755772590637207,
+ "step": 2091
+ },
+ {
+ "epoch": 29.055919615552643,
+ "grad_norm": 0.22236663103103638,
+ "learning_rate": 0.0006,
+ "loss": 3.743497848510742,
+ "step": 2092
+ },
+ {
+ "epoch": 29.069899519440803,
+ "grad_norm": 0.2391042858362198,
+ "learning_rate": 0.0006,
+ "loss": 3.749204158782959,
+ "step": 2093
+ },
+ {
+ "epoch": 29.083879423328966,
+ "grad_norm": 0.23387965559959412,
+ "learning_rate": 0.0006,
+ "loss": 3.7286791801452637,
+ "step": 2094
+ },
+ {
+ "epoch": 29.097859327217126,
+ "grad_norm": 0.23677746951580048,
+ "learning_rate": 0.0006,
+ "loss": 3.755279541015625,
+ "step": 2095
+ },
+ {
+ "epoch": 29.111839231105286,
+ "grad_norm": 0.22771087288856506,
+ "learning_rate": 0.0006,
+ "loss": 3.722566604614258,
+ "step": 2096
+ },
+ {
+ "epoch": 29.125819134993446,
+ "grad_norm": 0.2132875621318817,
+ "learning_rate": 0.0006,
+ "loss": 3.748939037322998,
+ "step": 2097
+ },
+ {
+ "epoch": 29.13979903888161,
+ "grad_norm": 0.2033746838569641,
+ "learning_rate": 0.0006,
+ "loss": 3.7393670082092285,
+ "step": 2098
+ },
+ {
+ "epoch": 29.15377894276977,
+ "grad_norm": 0.1997237652540207,
+ "learning_rate": 0.0006,
+ "loss": 3.718498945236206,
+ "step": 2099
+ },
+ {
+ "epoch": 29.16775884665793,
+ "grad_norm": 0.19102543592453003,
+ "learning_rate": 0.0006,
+ "loss": 3.748950719833374,
+ "step": 2100
+ },
+ {
+ "epoch": 29.18173875054609,
+ "grad_norm": 0.19801580905914307,
+ "learning_rate": 0.0006,
+ "loss": 3.7123501300811768,
+ "step": 2101
+ },
+ {
+ "epoch": 29.195718654434252,
+ "grad_norm": 0.20186249911785126,
+ "learning_rate": 0.0006,
+ "loss": 3.7632713317871094,
+ "step": 2102
+ },
+ {
+ "epoch": 29.209698558322412,
+ "grad_norm": 0.22725415229797363,
+ "learning_rate": 0.0006,
+ "loss": 3.753506660461426,
+ "step": 2103
+ },
+ {
+ "epoch": 29.22367846221057,
+ "grad_norm": 0.23138119280338287,
+ "learning_rate": 0.0006,
+ "loss": 3.753282070159912,
+ "step": 2104
+ },
+ {
+ "epoch": 29.23765836609873,
+ "grad_norm": 0.23171944916248322,
+ "learning_rate": 0.0006,
+ "loss": 3.73783540725708,
+ "step": 2105
+ },
+ {
+ "epoch": 29.251638269986895,
+ "grad_norm": 0.2166522741317749,
+ "learning_rate": 0.0006,
+ "loss": 3.778803825378418,
+ "step": 2106
+ },
+ {
+ "epoch": 29.265618173875055,
+ "grad_norm": 0.2009056806564331,
+ "learning_rate": 0.0006,
+ "loss": 3.738290786743164,
+ "step": 2107
+ },
+ {
+ "epoch": 29.279598077763215,
+ "grad_norm": 0.19451597332954407,
+ "learning_rate": 0.0006,
+ "loss": 3.7553348541259766,
+ "step": 2108
+ },
+ {
+ "epoch": 29.293577981651374,
+ "grad_norm": 0.19246742129325867,
+ "learning_rate": 0.0006,
+ "loss": 3.7321622371673584,
+ "step": 2109
+ },
+ {
+ "epoch": 29.307557885539538,
+ "grad_norm": 0.18917441368103027,
+ "learning_rate": 0.0006,
+ "loss": 3.7408928871154785,
+ "step": 2110
+ },
+ {
+ "epoch": 29.321537789427698,
+ "grad_norm": 0.19067776203155518,
+ "learning_rate": 0.0006,
+ "loss": 3.780052900314331,
+ "step": 2111
+ },
+ {
+ "epoch": 29.335517693315857,
+ "grad_norm": 0.18849676847457886,
+ "learning_rate": 0.0006,
+ "loss": 3.749375820159912,
+ "step": 2112
+ },
+ {
+ "epoch": 29.34949759720402,
+ "grad_norm": 0.19713285565376282,
+ "learning_rate": 0.0006,
+ "loss": 3.7128982543945312,
+ "step": 2113
+ },
+ {
+ "epoch": 29.36347750109218,
+ "grad_norm": 0.196336030960083,
+ "learning_rate": 0.0006,
+ "loss": 3.7528390884399414,
+ "step": 2114
+ },
+ {
+ "epoch": 29.37745740498034,
+ "grad_norm": 0.19574350118637085,
+ "learning_rate": 0.0006,
+ "loss": 3.7105777263641357,
+ "step": 2115
+ },
+ {
+ "epoch": 29.3914373088685,
+ "grad_norm": 0.20396539568901062,
+ "learning_rate": 0.0006,
+ "loss": 3.782249927520752,
+ "step": 2116
+ },
+ {
+ "epoch": 29.405417212756664,
+ "grad_norm": 0.24702422320842743,
+ "learning_rate": 0.0006,
+ "loss": 3.7685647010803223,
+ "step": 2117
+ },
+ {
+ "epoch": 29.419397116644824,
+ "grad_norm": 0.2729755640029907,
+ "learning_rate": 0.0006,
+ "loss": 3.7731213569641113,
+ "step": 2118
+ },
+ {
+ "epoch": 29.433377020532983,
+ "grad_norm": 0.29240545630455017,
+ "learning_rate": 0.0006,
+ "loss": 3.770162343978882,
+ "step": 2119
+ },
+ {
+ "epoch": 29.447356924421143,
+ "grad_norm": 0.2469114065170288,
+ "learning_rate": 0.0006,
+ "loss": 3.764681339263916,
+ "step": 2120
+ },
+ {
+ "epoch": 29.461336828309307,
+ "grad_norm": 0.19837401807308197,
+ "learning_rate": 0.0006,
+ "loss": 3.7600088119506836,
+ "step": 2121
+ },
+ {
+ "epoch": 29.475316732197467,
+ "grad_norm": 0.21266621351242065,
+ "learning_rate": 0.0006,
+ "loss": 3.769454002380371,
+ "step": 2122
+ },
+ {
+ "epoch": 29.489296636085626,
+ "grad_norm": 0.25908344984054565,
+ "learning_rate": 0.0006,
+ "loss": 3.7230491638183594,
+ "step": 2123
+ },
+ {
+ "epoch": 29.503276539973786,
+ "grad_norm": 0.2914169728755951,
+ "learning_rate": 0.0006,
+ "loss": 3.767849922180176,
+ "step": 2124
+ },
+ {
+ "epoch": 29.51725644386195,
+ "grad_norm": 0.2796176075935364,
+ "learning_rate": 0.0006,
+ "loss": 3.741734266281128,
+ "step": 2125
+ },
+ {
+ "epoch": 29.53123634775011,
+ "grad_norm": 0.276309996843338,
+ "learning_rate": 0.0006,
+ "loss": 3.8001914024353027,
+ "step": 2126
+ },
+ {
+ "epoch": 29.54521625163827,
+ "grad_norm": 0.26512834429740906,
+ "learning_rate": 0.0006,
+ "loss": 3.7741384506225586,
+ "step": 2127
+ },
+ {
+ "epoch": 29.55919615552643,
+ "grad_norm": 0.26514101028442383,
+ "learning_rate": 0.0006,
+ "loss": 3.7466959953308105,
+ "step": 2128
+ },
+ {
+ "epoch": 29.573176059414592,
+ "grad_norm": 0.24121330678462982,
+ "learning_rate": 0.0006,
+ "loss": 3.759542465209961,
+ "step": 2129
+ },
+ {
+ "epoch": 29.587155963302752,
+ "grad_norm": 0.2264087200164795,
+ "learning_rate": 0.0006,
+ "loss": 3.791344165802002,
+ "step": 2130
+ },
+ {
+ "epoch": 29.601135867190912,
+ "grad_norm": 0.21915403008460999,
+ "learning_rate": 0.0006,
+ "loss": 3.7540485858917236,
+ "step": 2131
+ },
+ {
+ "epoch": 29.615115771079076,
+ "grad_norm": 0.20453961193561554,
+ "learning_rate": 0.0006,
+ "loss": 3.765617609024048,
+ "step": 2132
+ },
+ {
+ "epoch": 29.629095674967235,
+ "grad_norm": 0.2194051444530487,
+ "learning_rate": 0.0006,
+ "loss": 3.7664294242858887,
+ "step": 2133
+ },
+ {
+ "epoch": 29.643075578855395,
+ "grad_norm": 0.21926000714302063,
+ "learning_rate": 0.0006,
+ "loss": 3.7551684379577637,
+ "step": 2134
+ },
+ {
+ "epoch": 29.657055482743555,
+ "grad_norm": 0.20835602283477783,
+ "learning_rate": 0.0006,
+ "loss": 3.7654306888580322,
+ "step": 2135
+ },
+ {
+ "epoch": 29.67103538663172,
+ "grad_norm": 0.23094356060028076,
+ "learning_rate": 0.0006,
+ "loss": 3.7847180366516113,
+ "step": 2136
+ },
+ {
+ "epoch": 29.68501529051988,
+ "grad_norm": 0.23871271312236786,
+ "learning_rate": 0.0006,
+ "loss": 3.789036273956299,
+ "step": 2137
+ },
+ {
+ "epoch": 29.698995194408038,
+ "grad_norm": 0.22263272106647491,
+ "learning_rate": 0.0006,
+ "loss": 3.7677512168884277,
+ "step": 2138
+ },
+ {
+ "epoch": 29.712975098296198,
+ "grad_norm": 0.2293892651796341,
+ "learning_rate": 0.0006,
+ "loss": 3.777097225189209,
+ "step": 2139
+ },
+ {
+ "epoch": 29.72695500218436,
+ "grad_norm": 0.21068568527698517,
+ "learning_rate": 0.0006,
+ "loss": 3.785336494445801,
+ "step": 2140
+ },
+ {
+ "epoch": 29.74093490607252,
+ "grad_norm": 0.19600282609462738,
+ "learning_rate": 0.0006,
+ "loss": 3.7363505363464355,
+ "step": 2141
+ },
+ {
+ "epoch": 29.75491480996068,
+ "grad_norm": 0.20053936541080475,
+ "learning_rate": 0.0006,
+ "loss": 3.753859043121338,
+ "step": 2142
+ },
+ {
+ "epoch": 29.76889471384884,
+ "grad_norm": 0.22790539264678955,
+ "learning_rate": 0.0006,
+ "loss": 3.749492645263672,
+ "step": 2143
+ },
+ {
+ "epoch": 29.782874617737004,
+ "grad_norm": 0.26042407751083374,
+ "learning_rate": 0.0006,
+ "loss": 3.7905430793762207,
+ "step": 2144
+ },
+ {
+ "epoch": 29.796854521625164,
+ "grad_norm": 0.2753683626651764,
+ "learning_rate": 0.0006,
+ "loss": 3.756442070007324,
+ "step": 2145
+ },
+ {
+ "epoch": 29.810834425513324,
+ "grad_norm": 0.2795007526874542,
+ "learning_rate": 0.0006,
+ "loss": 3.7691903114318848,
+ "step": 2146
+ },
+ {
+ "epoch": 29.824814329401484,
+ "grad_norm": 0.2461438924074173,
+ "learning_rate": 0.0006,
+ "loss": 3.7573065757751465,
+ "step": 2147
+ },
+ {
+ "epoch": 29.838794233289647,
+ "grad_norm": 0.21051941812038422,
+ "learning_rate": 0.0006,
+ "loss": 3.7540078163146973,
+ "step": 2148
+ },
+ {
+ "epoch": 29.852774137177807,
+ "grad_norm": 0.197485089302063,
+ "learning_rate": 0.0006,
+ "loss": 3.734403133392334,
+ "step": 2149
+ },
+ {
+ "epoch": 29.866754041065967,
+ "grad_norm": 0.203064426779747,
+ "learning_rate": 0.0006,
+ "loss": 3.7888364791870117,
+ "step": 2150
+ },
+ {
+ "epoch": 29.88073394495413,
+ "grad_norm": 0.2000301480293274,
+ "learning_rate": 0.0006,
+ "loss": 3.7444958686828613,
+ "step": 2151
+ },
+ {
+ "epoch": 29.89471384884229,
+ "grad_norm": 0.20492053031921387,
+ "learning_rate": 0.0006,
+ "loss": 3.7878224849700928,
+ "step": 2152
+ },
+ {
+ "epoch": 29.90869375273045,
+ "grad_norm": 0.22565388679504395,
+ "learning_rate": 0.0006,
+ "loss": 3.7539188861846924,
+ "step": 2153
+ },
+ {
+ "epoch": 29.92267365661861,
+ "grad_norm": 0.20258226990699768,
+ "learning_rate": 0.0006,
+ "loss": 3.7491893768310547,
+ "step": 2154
+ },
+ {
+ "epoch": 29.936653560506773,
+ "grad_norm": 0.20028717815876007,
+ "learning_rate": 0.0006,
+ "loss": 3.7497997283935547,
+ "step": 2155
+ },
+ {
+ "epoch": 29.950633464394933,
+ "grad_norm": 0.2246360331773758,
+ "learning_rate": 0.0006,
+ "loss": 3.773930788040161,
+ "step": 2156
+ },
+ {
+ "epoch": 29.964613368283093,
+ "grad_norm": 0.22432482242584229,
+ "learning_rate": 0.0006,
+ "loss": 3.7926344871520996,
+ "step": 2157
+ },
+ {
+ "epoch": 29.978593272171253,
+ "grad_norm": 0.2165718674659729,
+ "learning_rate": 0.0006,
+ "loss": 3.7436647415161133,
+ "step": 2158
+ },
+ {
+ "epoch": 29.992573176059416,
+ "grad_norm": 0.20629167556762695,
+ "learning_rate": 0.0006,
+ "loss": 3.7619552612304688,
+ "step": 2159
+ },
+ {
+ "epoch": 30.0,
+ "grad_norm": 0.24264708161354065,
+ "learning_rate": 0.0006,
+ "loss": 3.772679328918457,
+ "step": 2160
+ },
+ {
+ "epoch": 30.0,
+ "eval_loss": 4.024484634399414,
+ "eval_runtime": 44.3611,
+ "eval_samples_per_second": 55.048,
+ "eval_steps_per_second": 3.449,
+ "step": 2160
+ },
+ {
+ "epoch": 30.01397990388816,
+ "grad_norm": 0.2373432070016861,
+ "learning_rate": 0.0006,
+ "loss": 3.7423200607299805,
+ "step": 2161
+ },
+ {
+ "epoch": 30.027959807776323,
+ "grad_norm": 0.26835134625434875,
+ "learning_rate": 0.0006,
+ "loss": 3.7215471267700195,
+ "step": 2162
+ },
+ {
+ "epoch": 30.041939711664483,
+ "grad_norm": 0.2743220329284668,
+ "learning_rate": 0.0006,
+ "loss": 3.7190256118774414,
+ "step": 2163
+ },
+ {
+ "epoch": 30.055919615552643,
+ "grad_norm": 0.2292490005493164,
+ "learning_rate": 0.0006,
+ "loss": 3.731855869293213,
+ "step": 2164
+ },
+ {
+ "epoch": 30.069899519440803,
+ "grad_norm": 0.22704607248306274,
+ "learning_rate": 0.0006,
+ "loss": 3.7649693489074707,
+ "step": 2165
+ },
+ {
+ "epoch": 30.083879423328966,
+ "grad_norm": 0.23255930840969086,
+ "learning_rate": 0.0006,
+ "loss": 3.7547781467437744,
+ "step": 2166
+ },
+ {
+ "epoch": 30.097859327217126,
+ "grad_norm": 0.2068684846162796,
+ "learning_rate": 0.0006,
+ "loss": 3.7343382835388184,
+ "step": 2167
+ },
+ {
+ "epoch": 30.111839231105286,
+ "grad_norm": 0.22523464262485504,
+ "learning_rate": 0.0006,
+ "loss": 3.7304530143737793,
+ "step": 2168
+ },
+ {
+ "epoch": 30.125819134993446,
+ "grad_norm": 0.24650199711322784,
+ "learning_rate": 0.0006,
+ "loss": 3.7414379119873047,
+ "step": 2169
+ },
+ {
+ "epoch": 30.13979903888161,
+ "grad_norm": 0.2392522394657135,
+ "learning_rate": 0.0006,
+ "loss": 3.754481792449951,
+ "step": 2170
+ },
+ {
+ "epoch": 30.15377894276977,
+ "grad_norm": 0.21174749732017517,
+ "learning_rate": 0.0006,
+ "loss": 3.7249929904937744,
+ "step": 2171
+ },
+ {
+ "epoch": 30.16775884665793,
+ "grad_norm": 0.20847836136817932,
+ "learning_rate": 0.0006,
+ "loss": 3.7146458625793457,
+ "step": 2172
+ },
+ {
+ "epoch": 30.18173875054609,
+ "grad_norm": 0.22131472826004028,
+ "learning_rate": 0.0006,
+ "loss": 3.7569539546966553,
+ "step": 2173
+ },
+ {
+ "epoch": 30.195718654434252,
+ "grad_norm": 0.23528096079826355,
+ "learning_rate": 0.0006,
+ "loss": 3.743435859680176,
+ "step": 2174
+ },
+ {
+ "epoch": 30.209698558322412,
+ "grad_norm": 0.2382429540157318,
+ "learning_rate": 0.0006,
+ "loss": 3.745307445526123,
+ "step": 2175
+ },
+ {
+ "epoch": 30.22367846221057,
+ "grad_norm": 0.2477114498615265,
+ "learning_rate": 0.0006,
+ "loss": 3.742305278778076,
+ "step": 2176
+ },
+ {
+ "epoch": 30.23765836609873,
+ "grad_norm": 0.24507801234722137,
+ "learning_rate": 0.0006,
+ "loss": 3.733564853668213,
+ "step": 2177
+ },
+ {
+ "epoch": 30.251638269986895,
+ "grad_norm": 0.2266329675912857,
+ "learning_rate": 0.0006,
+ "loss": 3.747429370880127,
+ "step": 2178
+ },
+ {
+ "epoch": 30.265618173875055,
+ "grad_norm": 0.22146396338939667,
+ "learning_rate": 0.0006,
+ "loss": 3.738630533218384,
+ "step": 2179
+ },
+ {
+ "epoch": 30.279598077763215,
+ "grad_norm": 0.20202279090881348,
+ "learning_rate": 0.0006,
+ "loss": 3.74582839012146,
+ "step": 2180
+ },
+ {
+ "epoch": 30.293577981651374,
+ "grad_norm": 0.20591886341571808,
+ "learning_rate": 0.0006,
+ "loss": 3.792062997817993,
+ "step": 2181
+ },
+ {
+ "epoch": 30.307557885539538,
+ "grad_norm": 0.21744129061698914,
+ "learning_rate": 0.0006,
+ "loss": 3.7389049530029297,
+ "step": 2182
+ },
+ {
+ "epoch": 30.321537789427698,
+ "grad_norm": 0.22641272842884064,
+ "learning_rate": 0.0006,
+ "loss": 3.756775140762329,
+ "step": 2183
+ },
+ {
+ "epoch": 30.335517693315857,
+ "grad_norm": 0.22433501482009888,
+ "learning_rate": 0.0006,
+ "loss": 3.764744758605957,
+ "step": 2184
+ },
+ {
+ "epoch": 30.34949759720402,
+ "grad_norm": 0.20184539258480072,
+ "learning_rate": 0.0006,
+ "loss": 3.747469902038574,
+ "step": 2185
+ },
+ {
+ "epoch": 30.36347750109218,
+ "grad_norm": 0.20864923298358917,
+ "learning_rate": 0.0006,
+ "loss": 3.7472925186157227,
+ "step": 2186
+ },
+ {
+ "epoch": 30.37745740498034,
+ "grad_norm": 0.22537396848201752,
+ "learning_rate": 0.0006,
+ "loss": 3.7194581031799316,
+ "step": 2187
+ },
+ {
+ "epoch": 30.3914373088685,
+ "grad_norm": 0.23159919679164886,
+ "learning_rate": 0.0006,
+ "loss": 3.7124292850494385,
+ "step": 2188
+ },
+ {
+ "epoch": 30.405417212756664,
+ "grad_norm": 0.24334494769573212,
+ "learning_rate": 0.0006,
+ "loss": 3.7769203186035156,
+ "step": 2189
+ },
+ {
+ "epoch": 30.419397116644824,
+ "grad_norm": 0.3031228482723236,
+ "learning_rate": 0.0006,
+ "loss": 3.762169361114502,
+ "step": 2190
+ },
+ {
+ "epoch": 30.433377020532983,
+ "grad_norm": 0.29114583134651184,
+ "learning_rate": 0.0006,
+ "loss": 3.76554799079895,
+ "step": 2191
+ },
+ {
+ "epoch": 30.447356924421143,
+ "grad_norm": 0.26824963092803955,
+ "learning_rate": 0.0006,
+ "loss": 3.732962131500244,
+ "step": 2192
+ },
+ {
+ "epoch": 30.461336828309307,
+ "grad_norm": 0.3026561141014099,
+ "learning_rate": 0.0006,
+ "loss": 3.7567975521087646,
+ "step": 2193
+ },
+ {
+ "epoch": 30.475316732197467,
+ "grad_norm": 0.27224525809288025,
+ "learning_rate": 0.0006,
+ "loss": 3.7856051921844482,
+ "step": 2194
+ },
+ {
+ "epoch": 30.489296636085626,
+ "grad_norm": 0.24295508861541748,
+ "learning_rate": 0.0006,
+ "loss": 3.7514901161193848,
+ "step": 2195
+ },
+ {
+ "epoch": 30.503276539973786,
+ "grad_norm": 0.24435290694236755,
+ "learning_rate": 0.0006,
+ "loss": 3.715973138809204,
+ "step": 2196
+ },
+ {
+ "epoch": 30.51725644386195,
+ "grad_norm": 0.2298959195613861,
+ "learning_rate": 0.0006,
+ "loss": 3.7960405349731445,
+ "step": 2197
+ },
+ {
+ "epoch": 30.53123634775011,
+ "grad_norm": 0.20313066244125366,
+ "learning_rate": 0.0006,
+ "loss": 3.7377915382385254,
+ "step": 2198
+ },
+ {
+ "epoch": 30.54521625163827,
+ "grad_norm": 0.2018895149230957,
+ "learning_rate": 0.0006,
+ "loss": 3.6980559825897217,
+ "step": 2199
+ },
+ {
+ "epoch": 30.55919615552643,
+ "grad_norm": 0.20048382878303528,
+ "learning_rate": 0.0006,
+ "loss": 3.7474141120910645,
+ "step": 2200
+ },
+ {
+ "epoch": 30.573176059414592,
+ "grad_norm": 0.19821316003799438,
+ "learning_rate": 0.0006,
+ "loss": 3.7668564319610596,
+ "step": 2201
+ },
+ {
+ "epoch": 30.587155963302752,
+ "grad_norm": 0.21467992663383484,
+ "learning_rate": 0.0006,
+ "loss": 3.7636144161224365,
+ "step": 2202
+ },
+ {
+ "epoch": 30.601135867190912,
+ "grad_norm": 0.20192000269889832,
+ "learning_rate": 0.0006,
+ "loss": 3.745736837387085,
+ "step": 2203
+ },
+ {
+ "epoch": 30.615115771079076,
+ "grad_norm": 0.2078823447227478,
+ "learning_rate": 0.0006,
+ "loss": 3.726665496826172,
+ "step": 2204
+ },
+ {
+ "epoch": 30.629095674967235,
+ "grad_norm": 0.22535845637321472,
+ "learning_rate": 0.0006,
+ "loss": 3.745058059692383,
+ "step": 2205
+ },
+ {
+ "epoch": 30.643075578855395,
+ "grad_norm": 0.22277814149856567,
+ "learning_rate": 0.0006,
+ "loss": 3.7488319873809814,
+ "step": 2206
+ },
+ {
+ "epoch": 30.657055482743555,
+ "grad_norm": 0.20940838754177094,
+ "learning_rate": 0.0006,
+ "loss": 3.7395732402801514,
+ "step": 2207
+ },
+ {
+ "epoch": 30.67103538663172,
+ "grad_norm": 0.21384629607200623,
+ "learning_rate": 0.0006,
+ "loss": 3.7275657653808594,
+ "step": 2208
+ },
+ {
+ "epoch": 30.68501529051988,
+ "grad_norm": 0.18796643614768982,
+ "learning_rate": 0.0006,
+ "loss": 3.743420124053955,
+ "step": 2209
+ },
+ {
+ "epoch": 30.698995194408038,
+ "grad_norm": 0.213258296251297,
+ "learning_rate": 0.0006,
+ "loss": 3.7227492332458496,
+ "step": 2210
+ },
+ {
+ "epoch": 30.712975098296198,
+ "grad_norm": 0.22714753448963165,
+ "learning_rate": 0.0006,
+ "loss": 3.7301113605499268,
+ "step": 2211
+ },
+ {
+ "epoch": 30.72695500218436,
+ "grad_norm": 0.21657656133174896,
+ "learning_rate": 0.0006,
+ "loss": 3.7336206436157227,
+ "step": 2212
+ },
+ {
+ "epoch": 30.74093490607252,
+ "grad_norm": 0.19550828635692596,
+ "learning_rate": 0.0006,
+ "loss": 3.7367351055145264,
+ "step": 2213
+ },
+ {
+ "epoch": 30.75491480996068,
+ "grad_norm": 0.17011769115924835,
+ "learning_rate": 0.0006,
+ "loss": 3.7401928901672363,
+ "step": 2214
+ },
+ {
+ "epoch": 30.76889471384884,
+ "grad_norm": 0.19110196828842163,
+ "learning_rate": 0.0006,
+ "loss": 3.7496562004089355,
+ "step": 2215
+ },
+ {
+ "epoch": 30.782874617737004,
+ "grad_norm": 0.20054543018341064,
+ "learning_rate": 0.0006,
+ "loss": 3.7532992362976074,
+ "step": 2216
+ },
+ {
+ "epoch": 30.796854521625164,
+ "grad_norm": 0.20667670667171478,
+ "learning_rate": 0.0006,
+ "loss": 3.746974468231201,
+ "step": 2217
+ },
+ {
+ "epoch": 30.810834425513324,
+ "grad_norm": 0.19850662350654602,
+ "learning_rate": 0.0006,
+ "loss": 3.7566256523132324,
+ "step": 2218
+ },
+ {
+ "epoch": 30.824814329401484,
+ "grad_norm": 0.19666457176208496,
+ "learning_rate": 0.0006,
+ "loss": 3.7356925010681152,
+ "step": 2219
+ },
+ {
+ "epoch": 30.838794233289647,
+ "grad_norm": 0.20022115111351013,
+ "learning_rate": 0.0006,
+ "loss": 3.768794536590576,
+ "step": 2220
+ },
+ {
+ "epoch": 30.852774137177807,
+ "grad_norm": 0.225278839468956,
+ "learning_rate": 0.0006,
+ "loss": 3.730262279510498,
+ "step": 2221
+ },
+ {
+ "epoch": 30.866754041065967,
+ "grad_norm": 0.2155608832836151,
+ "learning_rate": 0.0006,
+ "loss": 3.758157968521118,
+ "step": 2222
+ },
+ {
+ "epoch": 30.88073394495413,
+ "grad_norm": 0.20914921164512634,
+ "learning_rate": 0.0006,
+ "loss": 3.7290844917297363,
+ "step": 2223
+ },
+ {
+ "epoch": 30.89471384884229,
+ "grad_norm": 0.21579554677009583,
+ "learning_rate": 0.0006,
+ "loss": 3.7666125297546387,
+ "step": 2224
+ },
+ {
+ "epoch": 30.90869375273045,
+ "grad_norm": 0.22606384754180908,
+ "learning_rate": 0.0006,
+ "loss": 3.7396788597106934,
+ "step": 2225
+ },
+ {
+ "epoch": 30.92267365661861,
+ "grad_norm": 0.22218658030033112,
+ "learning_rate": 0.0006,
+ "loss": 3.7363057136535645,
+ "step": 2226
+ },
+ {
+ "epoch": 30.936653560506773,
+ "grad_norm": 0.2107125222682953,
+ "learning_rate": 0.0006,
+ "loss": 3.7402844429016113,
+ "step": 2227
+ },
+ {
+ "epoch": 30.950633464394933,
+ "grad_norm": 0.2143280804157257,
+ "learning_rate": 0.0006,
+ "loss": 3.7715706825256348,
+ "step": 2228
+ },
+ {
+ "epoch": 30.964613368283093,
+ "grad_norm": 0.20918118953704834,
+ "learning_rate": 0.0006,
+ "loss": 3.783510446548462,
+ "step": 2229
+ },
+ {
+ "epoch": 30.978593272171253,
+ "grad_norm": 0.2184133678674698,
+ "learning_rate": 0.0006,
+ "loss": 3.729846954345703,
+ "step": 2230
+ },
+ {
+ "epoch": 30.992573176059416,
+ "grad_norm": 0.20314796268939972,
+ "learning_rate": 0.0006,
+ "loss": 3.753312110900879,
+ "step": 2231
+ },
+ {
+ "epoch": 31.0,
+ "grad_norm": 0.21582408249378204,
+ "learning_rate": 0.0006,
+ "loss": 3.7653090953826904,
+ "step": 2232
+ },
+ {
+ "epoch": 31.0,
+ "eval_loss": 4.030437469482422,
+ "eval_runtime": 43.8529,
+ "eval_samples_per_second": 55.686,
+ "eval_steps_per_second": 3.489,
+ "step": 2232
+ },
+ {
+ "epoch": 31.01397990388816,
+ "grad_norm": 0.214233860373497,
+ "learning_rate": 0.0006,
+ "loss": 3.7179880142211914,
+ "step": 2233
+ },
+ {
+ "epoch": 31.027959807776323,
+ "grad_norm": 0.24621504545211792,
+ "learning_rate": 0.0006,
+ "loss": 3.712569236755371,
+ "step": 2234
+ },
+ {
+ "epoch": 31.041939711664483,
+ "grad_norm": 0.24189279973506927,
+ "learning_rate": 0.0006,
+ "loss": 3.7503058910369873,
+ "step": 2235
+ },
+ {
+ "epoch": 31.055919615552643,
+ "grad_norm": 0.22872278094291687,
+ "learning_rate": 0.0006,
+ "loss": 3.7386386394500732,
+ "step": 2236
+ },
+ {
+ "epoch": 31.069899519440803,
+ "grad_norm": 0.25036823749542236,
+ "learning_rate": 0.0006,
+ "loss": 3.710566997528076,
+ "step": 2237
+ },
+ {
+ "epoch": 31.083879423328966,
+ "grad_norm": 0.2506193220615387,
+ "learning_rate": 0.0006,
+ "loss": 3.7270963191986084,
+ "step": 2238
+ },
+ {
+ "epoch": 31.097859327217126,
+ "grad_norm": 0.24819663166999817,
+ "learning_rate": 0.0006,
+ "loss": 3.716430425643921,
+ "step": 2239
+ },
+ {
+ "epoch": 31.111839231105286,
+ "grad_norm": 0.27226534485816956,
+ "learning_rate": 0.0006,
+ "loss": 3.704428195953369,
+ "step": 2240
+ },
+ {
+ "epoch": 31.125819134993446,
+ "grad_norm": 0.27718204259872437,
+ "learning_rate": 0.0006,
+ "loss": 3.7309701442718506,
+ "step": 2241
+ },
+ {
+ "epoch": 31.13979903888161,
+ "grad_norm": 0.27272021770477295,
+ "learning_rate": 0.0006,
+ "loss": 3.7325143814086914,
+ "step": 2242
+ },
+ {
+ "epoch": 31.15377894276977,
+ "grad_norm": 0.2666020095348358,
+ "learning_rate": 0.0006,
+ "loss": 3.715268611907959,
+ "step": 2243
+ },
+ {
+ "epoch": 31.16775884665793,
+ "grad_norm": 0.258543461561203,
+ "learning_rate": 0.0006,
+ "loss": 3.7336134910583496,
+ "step": 2244
+ },
+ {
+ "epoch": 31.18173875054609,
+ "grad_norm": 0.2528740167617798,
+ "learning_rate": 0.0006,
+ "loss": 3.724491596221924,
+ "step": 2245
+ },
+ {
+ "epoch": 31.195718654434252,
+ "grad_norm": 0.2659667730331421,
+ "learning_rate": 0.0006,
+ "loss": 3.7144742012023926,
+ "step": 2246
+ },
+ {
+ "epoch": 31.209698558322412,
+ "grad_norm": 0.26563164591789246,
+ "learning_rate": 0.0006,
+ "loss": 3.741182327270508,
+ "step": 2247
+ },
+ {
+ "epoch": 31.22367846221057,
+ "grad_norm": 0.26326918601989746,
+ "learning_rate": 0.0006,
+ "loss": 3.7306275367736816,
+ "step": 2248
+ },
+ {
+ "epoch": 31.23765836609873,
+ "grad_norm": 0.23020948469638824,
+ "learning_rate": 0.0006,
+ "loss": 3.7212486267089844,
+ "step": 2249
+ },
+ {
+ "epoch": 31.251638269986895,
+ "grad_norm": 0.21207433938980103,
+ "learning_rate": 0.0006,
+ "loss": 3.6914258003234863,
+ "step": 2250
+ },
+ {
+ "epoch": 31.265618173875055,
+ "grad_norm": 0.2392292022705078,
+ "learning_rate": 0.0006,
+ "loss": 3.7117457389831543,
+ "step": 2251
+ },
+ {
+ "epoch": 31.279598077763215,
+ "grad_norm": 0.22084997594356537,
+ "learning_rate": 0.0006,
+ "loss": 3.728043794631958,
+ "step": 2252
+ },
+ {
+ "epoch": 31.293577981651374,
+ "grad_norm": 0.20818188786506653,
+ "learning_rate": 0.0006,
+ "loss": 3.751762866973877,
+ "step": 2253
+ },
+ {
+ "epoch": 31.307557885539538,
+ "grad_norm": 0.21866194903850555,
+ "learning_rate": 0.0006,
+ "loss": 3.72676420211792,
+ "step": 2254
+ },
+ {
+ "epoch": 31.321537789427698,
+ "grad_norm": 0.20727522671222687,
+ "learning_rate": 0.0006,
+ "loss": 3.735708236694336,
+ "step": 2255
+ },
+ {
+ "epoch": 31.335517693315857,
+ "grad_norm": 0.20655220746994019,
+ "learning_rate": 0.0006,
+ "loss": 3.714116096496582,
+ "step": 2256
+ },
+ {
+ "epoch": 31.34949759720402,
+ "grad_norm": 0.21738854050636292,
+ "learning_rate": 0.0006,
+ "loss": 3.731657028198242,
+ "step": 2257
+ },
+ {
+ "epoch": 31.36347750109218,
+ "grad_norm": 0.20758475363254547,
+ "learning_rate": 0.0006,
+ "loss": 3.7378528118133545,
+ "step": 2258
+ },
+ {
+ "epoch": 31.37745740498034,
+ "grad_norm": 0.20107139647006989,
+ "learning_rate": 0.0006,
+ "loss": 3.748572826385498,
+ "step": 2259
+ },
+ {
+ "epoch": 31.3914373088685,
+ "grad_norm": 0.18707452714443207,
+ "learning_rate": 0.0006,
+ "loss": 3.7237391471862793,
+ "step": 2260
+ },
+ {
+ "epoch": 31.405417212756664,
+ "grad_norm": 0.20745301246643066,
+ "learning_rate": 0.0006,
+ "loss": 3.734435558319092,
+ "step": 2261
+ },
+ {
+ "epoch": 31.419397116644824,
+ "grad_norm": 0.20793399214744568,
+ "learning_rate": 0.0006,
+ "loss": 3.7639012336730957,
+ "step": 2262
+ },
+ {
+ "epoch": 31.433377020532983,
+ "grad_norm": 0.20193757116794586,
+ "learning_rate": 0.0006,
+ "loss": 3.754117727279663,
+ "step": 2263
+ },
+ {
+ "epoch": 31.447356924421143,
+ "grad_norm": 0.1912323236465454,
+ "learning_rate": 0.0006,
+ "loss": 3.728111982345581,
+ "step": 2264
+ },
+ {
+ "epoch": 31.461336828309307,
+ "grad_norm": 0.19441582262516022,
+ "learning_rate": 0.0006,
+ "loss": 3.7533278465270996,
+ "step": 2265
+ },
+ {
+ "epoch": 31.475316732197467,
+ "grad_norm": 0.19807079434394836,
+ "learning_rate": 0.0006,
+ "loss": 3.7351698875427246,
+ "step": 2266
+ },
+ {
+ "epoch": 31.489296636085626,
+ "grad_norm": 0.20373263955116272,
+ "learning_rate": 0.0006,
+ "loss": 3.714097023010254,
+ "step": 2267
+ },
+ {
+ "epoch": 31.503276539973786,
+ "grad_norm": 0.21868768334388733,
+ "learning_rate": 0.0006,
+ "loss": 3.736743688583374,
+ "step": 2268
+ },
+ {
+ "epoch": 31.51725644386195,
+ "grad_norm": 0.20767922699451447,
+ "learning_rate": 0.0006,
+ "loss": 3.7097702026367188,
+ "step": 2269
+ },
+ {
+ "epoch": 31.53123634775011,
+ "grad_norm": 0.18425600230693817,
+ "learning_rate": 0.0006,
+ "loss": 3.7349140644073486,
+ "step": 2270
+ },
+ {
+ "epoch": 31.54521625163827,
+ "grad_norm": 0.18813826143741608,
+ "learning_rate": 0.0006,
+ "loss": 3.7023448944091797,
+ "step": 2271
+ },
+ {
+ "epoch": 31.55919615552643,
+ "grad_norm": 0.1892116516828537,
+ "learning_rate": 0.0006,
+ "loss": 3.7170143127441406,
+ "step": 2272
+ },
+ {
+ "epoch": 31.573176059414592,
+ "grad_norm": 0.2067834585905075,
+ "learning_rate": 0.0006,
+ "loss": 3.7312588691711426,
+ "step": 2273
+ },
+ {
+ "epoch": 31.587155963302752,
+ "grad_norm": 0.204023078083992,
+ "learning_rate": 0.0006,
+ "loss": 3.7399091720581055,
+ "step": 2274
+ },
+ {
+ "epoch": 31.601135867190912,
+ "grad_norm": 0.20245152711868286,
+ "learning_rate": 0.0006,
+ "loss": 3.7259416580200195,
+ "step": 2275
+ },
+ {
+ "epoch": 31.615115771079076,
+ "grad_norm": 0.21125490963459015,
+ "learning_rate": 0.0006,
+ "loss": 3.7217836380004883,
+ "step": 2276
+ },
+ {
+ "epoch": 31.629095674967235,
+ "grad_norm": 0.2093241959810257,
+ "learning_rate": 0.0006,
+ "loss": 3.707627773284912,
+ "step": 2277
+ },
+ {
+ "epoch": 31.643075578855395,
+ "grad_norm": 0.19290480017662048,
+ "learning_rate": 0.0006,
+ "loss": 3.7467126846313477,
+ "step": 2278
+ },
+ {
+ "epoch": 31.657055482743555,
+ "grad_norm": 0.1853940635919571,
+ "learning_rate": 0.0006,
+ "loss": 3.7565581798553467,
+ "step": 2279
+ },
+ {
+ "epoch": 31.67103538663172,
+ "grad_norm": 0.18917642533779144,
+ "learning_rate": 0.0006,
+ "loss": 3.7286229133605957,
+ "step": 2280
+ },
+ {
+ "epoch": 31.68501529051988,
+ "grad_norm": 0.2094079703092575,
+ "learning_rate": 0.0006,
+ "loss": 3.7297096252441406,
+ "step": 2281
+ },
+ {
+ "epoch": 31.698995194408038,
+ "grad_norm": 0.20020027458667755,
+ "learning_rate": 0.0006,
+ "loss": 3.7565250396728516,
+ "step": 2282
+ },
+ {
+ "epoch": 31.712975098296198,
+ "grad_norm": 0.19156186282634735,
+ "learning_rate": 0.0006,
+ "loss": 3.7401509284973145,
+ "step": 2283
+ },
+ {
+ "epoch": 31.72695500218436,
+ "grad_norm": 0.19176368415355682,
+ "learning_rate": 0.0006,
+ "loss": 3.751206398010254,
+ "step": 2284
+ },
+ {
+ "epoch": 31.74093490607252,
+ "grad_norm": 0.18351277709007263,
+ "learning_rate": 0.0006,
+ "loss": 3.752984046936035,
+ "step": 2285
+ },
+ {
+ "epoch": 31.75491480996068,
+ "grad_norm": 0.1879221349954605,
+ "learning_rate": 0.0006,
+ "loss": 3.7156834602355957,
+ "step": 2286
+ },
+ {
+ "epoch": 31.76889471384884,
+ "grad_norm": 0.19232559204101562,
+ "learning_rate": 0.0006,
+ "loss": 3.732879638671875,
+ "step": 2287
+ },
+ {
+ "epoch": 31.782874617737004,
+ "grad_norm": 0.18484069406986237,
+ "learning_rate": 0.0006,
+ "loss": 3.7489013671875,
+ "step": 2288
+ },
+ {
+ "epoch": 31.796854521625164,
+ "grad_norm": 0.20705144107341766,
+ "learning_rate": 0.0006,
+ "loss": 3.7214112281799316,
+ "step": 2289
+ },
+ {
+ "epoch": 31.810834425513324,
+ "grad_norm": 0.23424774408340454,
+ "learning_rate": 0.0006,
+ "loss": 3.714550256729126,
+ "step": 2290
+ },
+ {
+ "epoch": 31.824814329401484,
+ "grad_norm": 0.24061693251132965,
+ "learning_rate": 0.0006,
+ "loss": 3.717336654663086,
+ "step": 2291
+ },
+ {
+ "epoch": 31.838794233289647,
+ "grad_norm": 0.23156678676605225,
+ "learning_rate": 0.0006,
+ "loss": 3.7345399856567383,
+ "step": 2292
+ },
+ {
+ "epoch": 31.852774137177807,
+ "grad_norm": 0.2256302684545517,
+ "learning_rate": 0.0006,
+ "loss": 3.7596092224121094,
+ "step": 2293
+ },
+ {
+ "epoch": 31.866754041065967,
+ "grad_norm": 0.2118781954050064,
+ "learning_rate": 0.0006,
+ "loss": 3.725433588027954,
+ "step": 2294
+ },
+ {
+ "epoch": 31.88073394495413,
+ "grad_norm": 0.1874573826789856,
+ "learning_rate": 0.0006,
+ "loss": 3.738901138305664,
+ "step": 2295
+ },
+ {
+ "epoch": 31.89471384884229,
+ "grad_norm": 0.2062024176120758,
+ "learning_rate": 0.0006,
+ "loss": 3.7439217567443848,
+ "step": 2296
+ },
+ {
+ "epoch": 31.90869375273045,
+ "grad_norm": 0.19886671006679535,
+ "learning_rate": 0.0006,
+ "loss": 3.7583155632019043,
+ "step": 2297
+ },
+ {
+ "epoch": 31.92267365661861,
+ "grad_norm": 0.2079734355211258,
+ "learning_rate": 0.0006,
+ "loss": 3.7251501083374023,
+ "step": 2298
+ },
+ {
+ "epoch": 31.936653560506773,
+ "grad_norm": 0.19710204005241394,
+ "learning_rate": 0.0006,
+ "loss": 3.765778064727783,
+ "step": 2299
+ },
+ {
+ "epoch": 31.950633464394933,
+ "grad_norm": 0.1949392408132553,
+ "learning_rate": 0.0006,
+ "loss": 3.7634787559509277,
+ "step": 2300
+ },
+ {
+ "epoch": 31.964613368283093,
+ "grad_norm": 0.21466250717639923,
+ "learning_rate": 0.0006,
+ "loss": 3.7673215866088867,
+ "step": 2301
+ },
+ {
+ "epoch": 31.978593272171253,
+ "grad_norm": 0.21624267101287842,
+ "learning_rate": 0.0006,
+ "loss": 3.7617220878601074,
+ "step": 2302
+ },
+ {
+ "epoch": 31.992573176059416,
+ "grad_norm": 0.22880229353904724,
+ "learning_rate": 0.0006,
+ "loss": 3.7190351486206055,
+ "step": 2303
+ },
+ {
+ "epoch": 32.0,
+ "grad_norm": 0.23227518796920776,
+ "learning_rate": 0.0006,
+ "loss": 3.740169048309326,
+ "step": 2304
+ },
+ {
+ "epoch": 32.0,
+ "eval_loss": 4.017981052398682,
+ "eval_runtime": 44.4134,
+ "eval_samples_per_second": 54.983,
+ "eval_steps_per_second": 3.445,
+ "step": 2304
+ },
+ {
+ "epoch": 32.01397990388816,
+ "grad_norm": 0.1893721967935562,
+ "learning_rate": 0.0006,
+ "loss": 3.71738338470459,
+ "step": 2305
+ },
+ {
+ "epoch": 32.02795980777632,
+ "grad_norm": 0.23771171271800995,
+ "learning_rate": 0.0006,
+ "loss": 3.71402645111084,
+ "step": 2306
+ },
+ {
+ "epoch": 32.04193971166448,
+ "grad_norm": 0.26343807578086853,
+ "learning_rate": 0.0006,
+ "loss": 3.6926395893096924,
+ "step": 2307
+ },
+ {
+ "epoch": 32.05591961555265,
+ "grad_norm": 0.25092509388923645,
+ "learning_rate": 0.0006,
+ "loss": 3.715243339538574,
+ "step": 2308
+ },
+ {
+ "epoch": 32.0698995194408,
+ "grad_norm": 0.23148509860038757,
+ "learning_rate": 0.0006,
+ "loss": 3.690734386444092,
+ "step": 2309
+ },
+ {
+ "epoch": 32.083879423328966,
+ "grad_norm": 0.23314623534679413,
+ "learning_rate": 0.0006,
+ "loss": 3.6980109214782715,
+ "step": 2310
+ },
+ {
+ "epoch": 32.09785932721712,
+ "grad_norm": 0.2210417091846466,
+ "learning_rate": 0.0006,
+ "loss": 3.7395730018615723,
+ "step": 2311
+ },
+ {
+ "epoch": 32.111839231105286,
+ "grad_norm": 0.20263685286045074,
+ "learning_rate": 0.0006,
+ "loss": 3.678412914276123,
+ "step": 2312
+ },
+ {
+ "epoch": 32.12581913499345,
+ "grad_norm": 0.20412251353263855,
+ "learning_rate": 0.0006,
+ "loss": 3.688762903213501,
+ "step": 2313
+ },
+ {
+ "epoch": 32.139799038881605,
+ "grad_norm": 0.2041679322719574,
+ "learning_rate": 0.0006,
+ "loss": 3.7231521606445312,
+ "step": 2314
+ },
+ {
+ "epoch": 32.15377894276977,
+ "grad_norm": 0.23270174860954285,
+ "learning_rate": 0.0006,
+ "loss": 3.7102620601654053,
+ "step": 2315
+ },
+ {
+ "epoch": 32.16775884665793,
+ "grad_norm": 0.25470519065856934,
+ "learning_rate": 0.0006,
+ "loss": 3.7353053092956543,
+ "step": 2316
+ },
+ {
+ "epoch": 32.18173875054609,
+ "grad_norm": 0.2930106222629547,
+ "learning_rate": 0.0006,
+ "loss": 3.7418713569641113,
+ "step": 2317
+ },
+ {
+ "epoch": 32.19571865443425,
+ "grad_norm": 0.3181219696998596,
+ "learning_rate": 0.0006,
+ "loss": 3.6716184616088867,
+ "step": 2318
+ },
+ {
+ "epoch": 32.20969855832241,
+ "grad_norm": 0.2752978801727295,
+ "learning_rate": 0.0006,
+ "loss": 3.70334792137146,
+ "step": 2319
+ },
+ {
+ "epoch": 32.22367846221057,
+ "grad_norm": 0.28381186723709106,
+ "learning_rate": 0.0006,
+ "loss": 3.719794750213623,
+ "step": 2320
+ },
+ {
+ "epoch": 32.237658366098735,
+ "grad_norm": 0.3287750482559204,
+ "learning_rate": 0.0006,
+ "loss": 3.7363362312316895,
+ "step": 2321
+ },
+ {
+ "epoch": 32.25163826998689,
+ "grad_norm": 0.32669803500175476,
+ "learning_rate": 0.0006,
+ "loss": 3.739394426345825,
+ "step": 2322
+ },
+ {
+ "epoch": 32.265618173875055,
+ "grad_norm": 0.27423885464668274,
+ "learning_rate": 0.0006,
+ "loss": 3.7381205558776855,
+ "step": 2323
+ },
+ {
+ "epoch": 32.27959807776322,
+ "grad_norm": 0.2594660818576813,
+ "learning_rate": 0.0006,
+ "loss": 3.698683738708496,
+ "step": 2324
+ },
+ {
+ "epoch": 32.293577981651374,
+ "grad_norm": 0.2785511016845703,
+ "learning_rate": 0.0006,
+ "loss": 3.688774824142456,
+ "step": 2325
+ },
+ {
+ "epoch": 32.30755788553954,
+ "grad_norm": 0.2690320611000061,
+ "learning_rate": 0.0006,
+ "loss": 3.7209150791168213,
+ "step": 2326
+ },
+ {
+ "epoch": 32.3215377894277,
+ "grad_norm": 0.23331770300865173,
+ "learning_rate": 0.0006,
+ "loss": 3.682931423187256,
+ "step": 2327
+ },
+ {
+ "epoch": 32.33551769331586,
+ "grad_norm": 0.22380802035331726,
+ "learning_rate": 0.0006,
+ "loss": 3.720445156097412,
+ "step": 2328
+ },
+ {
+ "epoch": 32.34949759720402,
+ "grad_norm": 0.2065964937210083,
+ "learning_rate": 0.0006,
+ "loss": 3.705427885055542,
+ "step": 2329
+ },
+ {
+ "epoch": 32.36347750109218,
+ "grad_norm": 0.20701853930950165,
+ "learning_rate": 0.0006,
+ "loss": 3.7078697681427,
+ "step": 2330
+ },
+ {
+ "epoch": 32.37745740498034,
+ "grad_norm": 0.2063559591770172,
+ "learning_rate": 0.0006,
+ "loss": 3.745004653930664,
+ "step": 2331
+ },
+ {
+ "epoch": 32.391437308868504,
+ "grad_norm": 0.19377011060714722,
+ "learning_rate": 0.0006,
+ "loss": 3.713808059692383,
+ "step": 2332
+ },
+ {
+ "epoch": 32.40541721275666,
+ "grad_norm": 0.19260725378990173,
+ "learning_rate": 0.0006,
+ "loss": 3.717043876647949,
+ "step": 2333
+ },
+ {
+ "epoch": 32.419397116644824,
+ "grad_norm": 0.20792821049690247,
+ "learning_rate": 0.0006,
+ "loss": 3.68632173538208,
+ "step": 2334
+ },
+ {
+ "epoch": 32.43337702053299,
+ "grad_norm": 0.22278444468975067,
+ "learning_rate": 0.0006,
+ "loss": 3.7345821857452393,
+ "step": 2335
+ },
+ {
+ "epoch": 32.44735692442114,
+ "grad_norm": 0.22533579170703888,
+ "learning_rate": 0.0006,
+ "loss": 3.7224173545837402,
+ "step": 2336
+ },
+ {
+ "epoch": 32.46133682830931,
+ "grad_norm": 0.20228394865989685,
+ "learning_rate": 0.0006,
+ "loss": 3.748530149459839,
+ "step": 2337
+ },
+ {
+ "epoch": 32.47531673219746,
+ "grad_norm": 0.19944614171981812,
+ "learning_rate": 0.0006,
+ "loss": 3.707085371017456,
+ "step": 2338
+ },
+ {
+ "epoch": 32.489296636085626,
+ "grad_norm": 0.19856145977973938,
+ "learning_rate": 0.0006,
+ "loss": 3.6898274421691895,
+ "step": 2339
+ },
+ {
+ "epoch": 32.50327653997379,
+ "grad_norm": 0.20734605193138123,
+ "learning_rate": 0.0006,
+ "loss": 3.7511792182922363,
+ "step": 2340
+ },
+ {
+ "epoch": 32.517256443861946,
+ "grad_norm": 0.19489309191703796,
+ "learning_rate": 0.0006,
+ "loss": 3.736445426940918,
+ "step": 2341
+ },
+ {
+ "epoch": 32.53123634775011,
+ "grad_norm": 0.18899282813072205,
+ "learning_rate": 0.0006,
+ "loss": 3.727325916290283,
+ "step": 2342
+ },
+ {
+ "epoch": 32.54521625163827,
+ "grad_norm": 0.19670401513576508,
+ "learning_rate": 0.0006,
+ "loss": 3.7326102256774902,
+ "step": 2343
+ },
+ {
+ "epoch": 32.55919615552643,
+ "grad_norm": 0.20061780512332916,
+ "learning_rate": 0.0006,
+ "loss": 3.698716402053833,
+ "step": 2344
+ },
+ {
+ "epoch": 32.57317605941459,
+ "grad_norm": 0.1991659700870514,
+ "learning_rate": 0.0006,
+ "loss": 3.6913180351257324,
+ "step": 2345
+ },
+ {
+ "epoch": 32.58715596330275,
+ "grad_norm": 0.18856225907802582,
+ "learning_rate": 0.0006,
+ "loss": 3.7130961418151855,
+ "step": 2346
+ },
+ {
+ "epoch": 32.60113586719091,
+ "grad_norm": 0.1983972191810608,
+ "learning_rate": 0.0006,
+ "loss": 3.7530808448791504,
+ "step": 2347
+ },
+ {
+ "epoch": 32.615115771079076,
+ "grad_norm": 0.2037997543811798,
+ "learning_rate": 0.0006,
+ "loss": 3.7076587677001953,
+ "step": 2348
+ },
+ {
+ "epoch": 32.62909567496723,
+ "grad_norm": 0.21008458733558655,
+ "learning_rate": 0.0006,
+ "loss": 3.7379021644592285,
+ "step": 2349
+ },
+ {
+ "epoch": 32.643075578855395,
+ "grad_norm": 0.2129313349723816,
+ "learning_rate": 0.0006,
+ "loss": 3.7031373977661133,
+ "step": 2350
+ },
+ {
+ "epoch": 32.65705548274356,
+ "grad_norm": 0.18756245076656342,
+ "learning_rate": 0.0006,
+ "loss": 3.7066285610198975,
+ "step": 2351
+ },
+ {
+ "epoch": 32.671035386631715,
+ "grad_norm": 0.17946591973304749,
+ "learning_rate": 0.0006,
+ "loss": 3.73781681060791,
+ "step": 2352
+ },
+ {
+ "epoch": 32.68501529051988,
+ "grad_norm": 0.18983198702335358,
+ "learning_rate": 0.0006,
+ "loss": 3.718855381011963,
+ "step": 2353
+ },
+ {
+ "epoch": 32.69899519440804,
+ "grad_norm": 0.2080942839384079,
+ "learning_rate": 0.0006,
+ "loss": 3.7111258506774902,
+ "step": 2354
+ },
+ {
+ "epoch": 32.7129750982962,
+ "grad_norm": 0.23633413016796112,
+ "learning_rate": 0.0006,
+ "loss": 3.709766149520874,
+ "step": 2355
+ },
+ {
+ "epoch": 32.72695500218436,
+ "grad_norm": 0.2723144590854645,
+ "learning_rate": 0.0006,
+ "loss": 3.745850086212158,
+ "step": 2356
+ },
+ {
+ "epoch": 32.74093490607252,
+ "grad_norm": 0.29774025082588196,
+ "learning_rate": 0.0006,
+ "loss": 3.733771324157715,
+ "step": 2357
+ },
+ {
+ "epoch": 32.75491480996068,
+ "grad_norm": 0.25976699590682983,
+ "learning_rate": 0.0006,
+ "loss": 3.734194278717041,
+ "step": 2358
+ },
+ {
+ "epoch": 32.768894713848844,
+ "grad_norm": 0.20038039982318878,
+ "learning_rate": 0.0006,
+ "loss": 3.735656261444092,
+ "step": 2359
+ },
+ {
+ "epoch": 32.782874617737,
+ "grad_norm": 0.19745637476444244,
+ "learning_rate": 0.0006,
+ "loss": 3.7335894107818604,
+ "step": 2360
+ },
+ {
+ "epoch": 32.796854521625164,
+ "grad_norm": 0.22022396326065063,
+ "learning_rate": 0.0006,
+ "loss": 3.708998680114746,
+ "step": 2361
+ },
+ {
+ "epoch": 32.81083442551333,
+ "grad_norm": 0.24754752218723297,
+ "learning_rate": 0.0006,
+ "loss": 3.7616286277770996,
+ "step": 2362
+ },
+ {
+ "epoch": 32.824814329401484,
+ "grad_norm": 0.26438358426094055,
+ "learning_rate": 0.0006,
+ "loss": 3.737079620361328,
+ "step": 2363
+ },
+ {
+ "epoch": 32.83879423328965,
+ "grad_norm": 0.2507241666316986,
+ "learning_rate": 0.0006,
+ "loss": 3.708500385284424,
+ "step": 2364
+ },
+ {
+ "epoch": 32.8527741371778,
+ "grad_norm": 0.25688016414642334,
+ "learning_rate": 0.0006,
+ "loss": 3.7389419078826904,
+ "step": 2365
+ },
+ {
+ "epoch": 32.86675404106597,
+ "grad_norm": 0.257447749376297,
+ "learning_rate": 0.0006,
+ "loss": 3.7253334522247314,
+ "step": 2366
+ },
+ {
+ "epoch": 32.88073394495413,
+ "grad_norm": 0.2621215879917145,
+ "learning_rate": 0.0006,
+ "loss": 3.773163318634033,
+ "step": 2367
+ },
+ {
+ "epoch": 32.89471384884229,
+ "grad_norm": 0.23554839193820953,
+ "learning_rate": 0.0006,
+ "loss": 3.7534430027008057,
+ "step": 2368
+ },
+ {
+ "epoch": 32.90869375273045,
+ "grad_norm": 0.19698940217494965,
+ "learning_rate": 0.0006,
+ "loss": 3.7094414234161377,
+ "step": 2369
+ },
+ {
+ "epoch": 32.92267365661861,
+ "grad_norm": 0.21380476653575897,
+ "learning_rate": 0.0006,
+ "loss": 3.7666497230529785,
+ "step": 2370
+ },
+ {
+ "epoch": 32.93665356050677,
+ "grad_norm": 0.20876452326774597,
+ "learning_rate": 0.0006,
+ "loss": 3.7467992305755615,
+ "step": 2371
+ },
+ {
+ "epoch": 32.95063346439493,
+ "grad_norm": 0.1989884227514267,
+ "learning_rate": 0.0006,
+ "loss": 3.749878168106079,
+ "step": 2372
+ },
+ {
+ "epoch": 32.964613368283096,
+ "grad_norm": 0.19089168310165405,
+ "learning_rate": 0.0006,
+ "loss": 3.7211015224456787,
+ "step": 2373
+ },
+ {
+ "epoch": 32.97859327217125,
+ "grad_norm": 0.1962461918592453,
+ "learning_rate": 0.0006,
+ "loss": 3.728684425354004,
+ "step": 2374
+ },
+ {
+ "epoch": 32.992573176059416,
+ "grad_norm": 0.22518110275268555,
+ "learning_rate": 0.0006,
+ "loss": 3.7361507415771484,
+ "step": 2375
+ },
+ {
+ "epoch": 33.0,
+ "grad_norm": 0.26704078912734985,
+ "learning_rate": 0.0006,
+ "loss": 3.7478318214416504,
+ "step": 2376
+ },
+ {
+ "epoch": 33.0,
+ "eval_loss": 4.024221897125244,
+ "eval_runtime": 43.9826,
+ "eval_samples_per_second": 55.522,
+ "eval_steps_per_second": 3.479,
+ "step": 2376
+ },
+ {
+ "epoch": 33.01397990388816,
+ "grad_norm": 0.23387742042541504,
+ "learning_rate": 0.0006,
+ "loss": 3.7043614387512207,
+ "step": 2377
+ },
+ {
+ "epoch": 33.02795980777632,
+ "grad_norm": 0.21334673464298248,
+ "learning_rate": 0.0006,
+ "loss": 3.6714677810668945,
+ "step": 2378
+ },
+ {
+ "epoch": 33.04193971166448,
+ "grad_norm": 0.2608581483364105,
+ "learning_rate": 0.0006,
+ "loss": 3.678460121154785,
+ "step": 2379
+ },
+ {
+ "epoch": 33.05591961555265,
+ "grad_norm": 0.31364381313323975,
+ "learning_rate": 0.0006,
+ "loss": 3.6771793365478516,
+ "step": 2380
+ },
+ {
+ "epoch": 33.0698995194408,
+ "grad_norm": 0.31785935163497925,
+ "learning_rate": 0.0006,
+ "loss": 3.7248926162719727,
+ "step": 2381
+ },
+ {
+ "epoch": 33.083879423328966,
+ "grad_norm": 0.29244646430015564,
+ "learning_rate": 0.0006,
+ "loss": 3.677882194519043,
+ "step": 2382
+ },
+ {
+ "epoch": 33.09785932721712,
+ "grad_norm": 0.23943741619586945,
+ "learning_rate": 0.0006,
+ "loss": 3.7365124225616455,
+ "step": 2383
+ },
+ {
+ "epoch": 33.111839231105286,
+ "grad_norm": 0.2547394931316376,
+ "learning_rate": 0.0006,
+ "loss": 3.7031357288360596,
+ "step": 2384
+ },
+ {
+ "epoch": 33.12581913499345,
+ "grad_norm": 0.2696659564971924,
+ "learning_rate": 0.0006,
+ "loss": 3.6904754638671875,
+ "step": 2385
+ },
+ {
+ "epoch": 33.139799038881605,
+ "grad_norm": 0.24271385371685028,
+ "learning_rate": 0.0006,
+ "loss": 3.7137649059295654,
+ "step": 2386
+ },
+ {
+ "epoch": 33.15377894276977,
+ "grad_norm": 0.23435993492603302,
+ "learning_rate": 0.0006,
+ "loss": 3.707383632659912,
+ "step": 2387
+ },
+ {
+ "epoch": 33.16775884665793,
+ "grad_norm": 0.21428440511226654,
+ "learning_rate": 0.0006,
+ "loss": 3.7148897647857666,
+ "step": 2388
+ },
+ {
+ "epoch": 33.18173875054609,
+ "grad_norm": 0.22420962154865265,
+ "learning_rate": 0.0006,
+ "loss": 3.710111141204834,
+ "step": 2389
+ },
+ {
+ "epoch": 33.19571865443425,
+ "grad_norm": 0.26222777366638184,
+ "learning_rate": 0.0006,
+ "loss": 3.677438259124756,
+ "step": 2390
+ },
+ {
+ "epoch": 33.20969855832241,
+ "grad_norm": 0.29910165071487427,
+ "learning_rate": 0.0006,
+ "loss": 3.6895523071289062,
+ "step": 2391
+ },
+ {
+ "epoch": 33.22367846221057,
+ "grad_norm": 0.2615569531917572,
+ "learning_rate": 0.0006,
+ "loss": 3.7339906692504883,
+ "step": 2392
+ },
+ {
+ "epoch": 33.237658366098735,
+ "grad_norm": 0.23396961390972137,
+ "learning_rate": 0.0006,
+ "loss": 3.7179932594299316,
+ "step": 2393
+ },
+ {
+ "epoch": 33.25163826998689,
+ "grad_norm": 0.24844495952129364,
+ "learning_rate": 0.0006,
+ "loss": 3.7191576957702637,
+ "step": 2394
+ },
+ {
+ "epoch": 33.265618173875055,
+ "grad_norm": 0.2306993454694748,
+ "learning_rate": 0.0006,
+ "loss": 3.7172658443450928,
+ "step": 2395
+ },
+ {
+ "epoch": 33.27959807776322,
+ "grad_norm": 0.24935221672058105,
+ "learning_rate": 0.0006,
+ "loss": 3.6917519569396973,
+ "step": 2396
+ },
+ {
+ "epoch": 33.293577981651374,
+ "grad_norm": 0.2522840201854706,
+ "learning_rate": 0.0006,
+ "loss": 3.7263593673706055,
+ "step": 2397
+ },
+ {
+ "epoch": 33.30755788553954,
+ "grad_norm": 0.26411181688308716,
+ "learning_rate": 0.0006,
+ "loss": 3.6981635093688965,
+ "step": 2398
+ },
+ {
+ "epoch": 33.3215377894277,
+ "grad_norm": 0.22396239638328552,
+ "learning_rate": 0.0006,
+ "loss": 3.713247299194336,
+ "step": 2399
+ },
+ {
+ "epoch": 33.33551769331586,
+ "grad_norm": 0.20579157769680023,
+ "learning_rate": 0.0006,
+ "loss": 3.7058467864990234,
+ "step": 2400
+ },
+ {
+ "epoch": 33.34949759720402,
+ "grad_norm": 0.20103922486305237,
+ "learning_rate": 0.0006,
+ "loss": 3.700924873352051,
+ "step": 2401
+ },
+ {
+ "epoch": 33.36347750109218,
+ "grad_norm": 0.19964663684368134,
+ "learning_rate": 0.0006,
+ "loss": 3.6985437870025635,
+ "step": 2402
+ },
+ {
+ "epoch": 33.37745740498034,
+ "grad_norm": 0.20860575139522552,
+ "learning_rate": 0.0006,
+ "loss": 3.7480058670043945,
+ "step": 2403
+ },
+ {
+ "epoch": 33.391437308868504,
+ "grad_norm": 0.19043605029582977,
+ "learning_rate": 0.0006,
+ "loss": 3.6952016353607178,
+ "step": 2404
+ },
+ {
+ "epoch": 33.40541721275666,
+ "grad_norm": 0.1968909204006195,
+ "learning_rate": 0.0006,
+ "loss": 3.69362735748291,
+ "step": 2405
+ },
+ {
+ "epoch": 33.419397116644824,
+ "grad_norm": 0.23492494225502014,
+ "learning_rate": 0.0006,
+ "loss": 3.707993984222412,
+ "step": 2406
+ },
+ {
+ "epoch": 33.43337702053299,
+ "grad_norm": 0.23970453441143036,
+ "learning_rate": 0.0006,
+ "loss": 3.707731246948242,
+ "step": 2407
+ },
+ {
+ "epoch": 33.44735692442114,
+ "grad_norm": 0.2515844404697418,
+ "learning_rate": 0.0006,
+ "loss": 3.723824977874756,
+ "step": 2408
+ },
+ {
+ "epoch": 33.46133682830931,
+ "grad_norm": 0.2343570590019226,
+ "learning_rate": 0.0006,
+ "loss": 3.7068886756896973,
+ "step": 2409
+ },
+ {
+ "epoch": 33.47531673219746,
+ "grad_norm": 0.23419860005378723,
+ "learning_rate": 0.0006,
+ "loss": 3.6964287757873535,
+ "step": 2410
+ },
+ {
+ "epoch": 33.489296636085626,
+ "grad_norm": 0.21280375123023987,
+ "learning_rate": 0.0006,
+ "loss": 3.7020950317382812,
+ "step": 2411
+ },
+ {
+ "epoch": 33.50327653997379,
+ "grad_norm": 0.2061092108488083,
+ "learning_rate": 0.0006,
+ "loss": 3.750861406326294,
+ "step": 2412
+ },
+ {
+ "epoch": 33.517256443861946,
+ "grad_norm": 0.19693219661712646,
+ "learning_rate": 0.0006,
+ "loss": 3.717020034790039,
+ "step": 2413
+ },
+ {
+ "epoch": 33.53123634775011,
+ "grad_norm": 0.18199551105499268,
+ "learning_rate": 0.0006,
+ "loss": 3.7242612838745117,
+ "step": 2414
+ },
+ {
+ "epoch": 33.54521625163827,
+ "grad_norm": 0.20131248235702515,
+ "learning_rate": 0.0006,
+ "loss": 3.6758954524993896,
+ "step": 2415
+ },
+ {
+ "epoch": 33.55919615552643,
+ "grad_norm": 0.2219412475824356,
+ "learning_rate": 0.0006,
+ "loss": 3.707927703857422,
+ "step": 2416
+ },
+ {
+ "epoch": 33.57317605941459,
+ "grad_norm": 0.22541435062885284,
+ "learning_rate": 0.0006,
+ "loss": 3.696967601776123,
+ "step": 2417
+ },
+ {
+ "epoch": 33.58715596330275,
+ "grad_norm": 0.20367272198200226,
+ "learning_rate": 0.0006,
+ "loss": 3.730795383453369,
+ "step": 2418
+ },
+ {
+ "epoch": 33.60113586719091,
+ "grad_norm": 0.20861074328422546,
+ "learning_rate": 0.0006,
+ "loss": 3.707066535949707,
+ "step": 2419
+ },
+ {
+ "epoch": 33.615115771079076,
+ "grad_norm": 0.20570263266563416,
+ "learning_rate": 0.0006,
+ "loss": 3.730602502822876,
+ "step": 2420
+ },
+ {
+ "epoch": 33.62909567496723,
+ "grad_norm": 0.21318231523036957,
+ "learning_rate": 0.0006,
+ "loss": 3.7073278427124023,
+ "step": 2421
+ },
+ {
+ "epoch": 33.643075578855395,
+ "grad_norm": 0.2142639458179474,
+ "learning_rate": 0.0006,
+ "loss": 3.718470573425293,
+ "step": 2422
+ },
+ {
+ "epoch": 33.65705548274356,
+ "grad_norm": 0.19620704650878906,
+ "learning_rate": 0.0006,
+ "loss": 3.716036319732666,
+ "step": 2423
+ },
+ {
+ "epoch": 33.671035386631715,
+ "grad_norm": 0.19308267533779144,
+ "learning_rate": 0.0006,
+ "loss": 3.734597682952881,
+ "step": 2424
+ },
+ {
+ "epoch": 33.68501529051988,
+ "grad_norm": 0.19453389942646027,
+ "learning_rate": 0.0006,
+ "loss": 3.726262092590332,
+ "step": 2425
+ },
+ {
+ "epoch": 33.69899519440804,
+ "grad_norm": 0.20405639708042145,
+ "learning_rate": 0.0006,
+ "loss": 3.678340435028076,
+ "step": 2426
+ },
+ {
+ "epoch": 33.7129750982962,
+ "grad_norm": 0.19525611400604248,
+ "learning_rate": 0.0006,
+ "loss": 3.723907470703125,
+ "step": 2427
+ },
+ {
+ "epoch": 33.72695500218436,
+ "grad_norm": 0.19390441477298737,
+ "learning_rate": 0.0006,
+ "loss": 3.707897186279297,
+ "step": 2428
+ },
+ {
+ "epoch": 33.74093490607252,
+ "grad_norm": 0.2032899558544159,
+ "learning_rate": 0.0006,
+ "loss": 3.735041618347168,
+ "step": 2429
+ },
+ {
+ "epoch": 33.75491480996068,
+ "grad_norm": 0.2134784460067749,
+ "learning_rate": 0.0006,
+ "loss": 3.674978017807007,
+ "step": 2430
+ },
+ {
+ "epoch": 33.768894713848844,
+ "grad_norm": 0.24691973626613617,
+ "learning_rate": 0.0006,
+ "loss": 3.7028675079345703,
+ "step": 2431
+ },
+ {
+ "epoch": 33.782874617737,
+ "grad_norm": 0.2272702008485794,
+ "learning_rate": 0.0006,
+ "loss": 3.7277941703796387,
+ "step": 2432
+ },
+ {
+ "epoch": 33.796854521625164,
+ "grad_norm": 0.20052100718021393,
+ "learning_rate": 0.0006,
+ "loss": 3.7146830558776855,
+ "step": 2433
+ },
+ {
+ "epoch": 33.81083442551333,
+ "grad_norm": 0.1958577185869217,
+ "learning_rate": 0.0006,
+ "loss": 3.6936864852905273,
+ "step": 2434
+ },
+ {
+ "epoch": 33.824814329401484,
+ "grad_norm": 0.191860631108284,
+ "learning_rate": 0.0006,
+ "loss": 3.7451858520507812,
+ "step": 2435
+ },
+ {
+ "epoch": 33.83879423328965,
+ "grad_norm": 0.20961424708366394,
+ "learning_rate": 0.0006,
+ "loss": 3.722400665283203,
+ "step": 2436
+ },
+ {
+ "epoch": 33.8527741371778,
+ "grad_norm": 0.19784288108348846,
+ "learning_rate": 0.0006,
+ "loss": 3.712474822998047,
+ "step": 2437
+ },
+ {
+ "epoch": 33.86675404106597,
+ "grad_norm": 0.18645426630973816,
+ "learning_rate": 0.0006,
+ "loss": 3.7054500579833984,
+ "step": 2438
+ },
+ {
+ "epoch": 33.88073394495413,
+ "grad_norm": 0.19622360169887543,
+ "learning_rate": 0.0006,
+ "loss": 3.7010550498962402,
+ "step": 2439
+ },
+ {
+ "epoch": 33.89471384884229,
+ "grad_norm": 0.20283745229244232,
+ "learning_rate": 0.0006,
+ "loss": 3.7252519130706787,
+ "step": 2440
+ },
+ {
+ "epoch": 33.90869375273045,
+ "grad_norm": 0.18671709299087524,
+ "learning_rate": 0.0006,
+ "loss": 3.6932945251464844,
+ "step": 2441
+ },
+ {
+ "epoch": 33.92267365661861,
+ "grad_norm": 0.17953112721443176,
+ "learning_rate": 0.0006,
+ "loss": 3.7453854084014893,
+ "step": 2442
+ },
+ {
+ "epoch": 33.93665356050677,
+ "grad_norm": 0.1945437788963318,
+ "learning_rate": 0.0006,
+ "loss": 3.722881317138672,
+ "step": 2443
+ },
+ {
+ "epoch": 33.95063346439493,
+ "grad_norm": 0.18414495885372162,
+ "learning_rate": 0.0006,
+ "loss": 3.7402591705322266,
+ "step": 2444
+ },
+ {
+ "epoch": 33.964613368283096,
+ "grad_norm": 0.1936541497707367,
+ "learning_rate": 0.0006,
+ "loss": 3.720057964324951,
+ "step": 2445
+ },
+ {
+ "epoch": 33.97859327217125,
+ "grad_norm": 0.20177008211612701,
+ "learning_rate": 0.0006,
+ "loss": 3.6983802318573,
+ "step": 2446
+ },
+ {
+ "epoch": 33.992573176059416,
+ "grad_norm": 0.18977557122707367,
+ "learning_rate": 0.0006,
+ "loss": 3.7202203273773193,
+ "step": 2447
+ },
+ {
+ "epoch": 34.0,
+ "grad_norm": 0.220163956284523,
+ "learning_rate": 0.0006,
+ "loss": 3.72540283203125,
+ "step": 2448
+ },
+ {
+ "epoch": 34.0,
+ "eval_loss": 4.009343147277832,
+ "eval_runtime": 44.1825,
+ "eval_samples_per_second": 55.271,
+ "eval_steps_per_second": 3.463,
+ "step": 2448
+ },
+ {
+ "epoch": 34.01397990388816,
+ "grad_norm": 0.19843372702598572,
+ "learning_rate": 0.0006,
+ "loss": 3.664431571960449,
+ "step": 2449
+ },
+ {
+ "epoch": 34.02795980777632,
+ "grad_norm": 0.20413008332252502,
+ "learning_rate": 0.0006,
+ "loss": 3.699094533920288,
+ "step": 2450
+ },
+ {
+ "epoch": 34.04193971166448,
+ "grad_norm": 0.22086848318576813,
+ "learning_rate": 0.0006,
+ "loss": 3.681825637817383,
+ "step": 2451
+ },
+ {
+ "epoch": 34.05591961555265,
+ "grad_norm": 0.20753061771392822,
+ "learning_rate": 0.0006,
+ "loss": 3.677116870880127,
+ "step": 2452
+ },
+ {
+ "epoch": 34.0698995194408,
+ "grad_norm": 0.21835783123970032,
+ "learning_rate": 0.0006,
+ "loss": 3.7079062461853027,
+ "step": 2453
+ },
+ {
+ "epoch": 34.083879423328966,
+ "grad_norm": 0.2244357019662857,
+ "learning_rate": 0.0006,
+ "loss": 3.69844913482666,
+ "step": 2454
+ },
+ {
+ "epoch": 34.09785932721712,
+ "grad_norm": 0.2238784283399582,
+ "learning_rate": 0.0006,
+ "loss": 3.6835570335388184,
+ "step": 2455
+ },
+ {
+ "epoch": 34.111839231105286,
+ "grad_norm": 0.24816176295280457,
+ "learning_rate": 0.0006,
+ "loss": 3.6832966804504395,
+ "step": 2456
+ },
+ {
+ "epoch": 34.12581913499345,
+ "grad_norm": 0.2445257306098938,
+ "learning_rate": 0.0006,
+ "loss": 3.7190022468566895,
+ "step": 2457
+ },
+ {
+ "epoch": 34.139799038881605,
+ "grad_norm": 0.24510814249515533,
+ "learning_rate": 0.0006,
+ "loss": 3.678098201751709,
+ "step": 2458
+ },
+ {
+ "epoch": 34.15377894276977,
+ "grad_norm": 0.2550753653049469,
+ "learning_rate": 0.0006,
+ "loss": 3.69335675239563,
+ "step": 2459
+ },
+ {
+ "epoch": 34.16775884665793,
+ "grad_norm": 0.2435017228126526,
+ "learning_rate": 0.0006,
+ "loss": 3.70463228225708,
+ "step": 2460
+ },
+ {
+ "epoch": 34.18173875054609,
+ "grad_norm": 0.26441144943237305,
+ "learning_rate": 0.0006,
+ "loss": 3.6757068634033203,
+ "step": 2461
+ },
+ {
+ "epoch": 34.19571865443425,
+ "grad_norm": 0.2737993001937866,
+ "learning_rate": 0.0006,
+ "loss": 3.6510863304138184,
+ "step": 2462
+ },
+ {
+ "epoch": 34.20969855832241,
+ "grad_norm": 0.24625736474990845,
+ "learning_rate": 0.0006,
+ "loss": 3.707612991333008,
+ "step": 2463
+ },
+ {
+ "epoch": 34.22367846221057,
+ "grad_norm": 0.22222039103507996,
+ "learning_rate": 0.0006,
+ "loss": 3.7145133018493652,
+ "step": 2464
+ },
+ {
+ "epoch": 34.237658366098735,
+ "grad_norm": 0.2173531949520111,
+ "learning_rate": 0.0006,
+ "loss": 3.685112476348877,
+ "step": 2465
+ },
+ {
+ "epoch": 34.25163826998689,
+ "grad_norm": 0.23102006316184998,
+ "learning_rate": 0.0006,
+ "loss": 3.6742453575134277,
+ "step": 2466
+ },
+ {
+ "epoch": 34.265618173875055,
+ "grad_norm": 0.22287188470363617,
+ "learning_rate": 0.0006,
+ "loss": 3.7030534744262695,
+ "step": 2467
+ },
+ {
+ "epoch": 34.27959807776322,
+ "grad_norm": 0.20377251505851746,
+ "learning_rate": 0.0006,
+ "loss": 3.6866259574890137,
+ "step": 2468
+ },
+ {
+ "epoch": 34.293577981651374,
+ "grad_norm": 0.19867438077926636,
+ "learning_rate": 0.0006,
+ "loss": 3.70395565032959,
+ "step": 2469
+ },
+ {
+ "epoch": 34.30755788553954,
+ "grad_norm": 0.2014918178319931,
+ "learning_rate": 0.0006,
+ "loss": 3.660795211791992,
+ "step": 2470
+ },
+ {
+ "epoch": 34.3215377894277,
+ "grad_norm": 0.20981402695178986,
+ "learning_rate": 0.0006,
+ "loss": 3.7045323848724365,
+ "step": 2471
+ },
+ {
+ "epoch": 34.33551769331586,
+ "grad_norm": 0.20968124270439148,
+ "learning_rate": 0.0006,
+ "loss": 3.7113170623779297,
+ "step": 2472
+ },
+ {
+ "epoch": 34.34949759720402,
+ "grad_norm": 0.2214043140411377,
+ "learning_rate": 0.0006,
+ "loss": 3.7330074310302734,
+ "step": 2473
+ },
+ {
+ "epoch": 34.36347750109218,
+ "grad_norm": 0.21231533586978912,
+ "learning_rate": 0.0006,
+ "loss": 3.6706933975219727,
+ "step": 2474
+ },
+ {
+ "epoch": 34.37745740498034,
+ "grad_norm": 0.2022094875574112,
+ "learning_rate": 0.0006,
+ "loss": 3.7230453491210938,
+ "step": 2475
+ },
+ {
+ "epoch": 34.391437308868504,
+ "grad_norm": 0.2281145304441452,
+ "learning_rate": 0.0006,
+ "loss": 3.7197465896606445,
+ "step": 2476
+ },
+ {
+ "epoch": 34.40541721275666,
+ "grad_norm": 0.2147362381219864,
+ "learning_rate": 0.0006,
+ "loss": 3.7092337608337402,
+ "step": 2477
+ },
+ {
+ "epoch": 34.419397116644824,
+ "grad_norm": 0.19984203577041626,
+ "learning_rate": 0.0006,
+ "loss": 3.6939496994018555,
+ "step": 2478
+ },
+ {
+ "epoch": 34.43337702053299,
+ "grad_norm": 0.21088480949401855,
+ "learning_rate": 0.0006,
+ "loss": 3.6942667961120605,
+ "step": 2479
+ },
+ {
+ "epoch": 34.44735692442114,
+ "grad_norm": 0.20444616675376892,
+ "learning_rate": 0.0006,
+ "loss": 3.718186378479004,
+ "step": 2480
+ },
+ {
+ "epoch": 34.46133682830931,
+ "grad_norm": 0.19133952260017395,
+ "learning_rate": 0.0006,
+ "loss": 3.697197437286377,
+ "step": 2481
+ },
+ {
+ "epoch": 34.47531673219746,
+ "grad_norm": 0.2219255417585373,
+ "learning_rate": 0.0006,
+ "loss": 3.684386730194092,
+ "step": 2482
+ },
+ {
+ "epoch": 34.489296636085626,
+ "grad_norm": 0.2480643391609192,
+ "learning_rate": 0.0006,
+ "loss": 3.6656622886657715,
+ "step": 2483
+ },
+ {
+ "epoch": 34.50327653997379,
+ "grad_norm": 0.22907346487045288,
+ "learning_rate": 0.0006,
+ "loss": 3.741391897201538,
+ "step": 2484
+ },
+ {
+ "epoch": 34.517256443861946,
+ "grad_norm": 0.20277173817157745,
+ "learning_rate": 0.0006,
+ "loss": 3.7062582969665527,
+ "step": 2485
+ },
+ {
+ "epoch": 34.53123634775011,
+ "grad_norm": 0.21411100029945374,
+ "learning_rate": 0.0006,
+ "loss": 3.691784381866455,
+ "step": 2486
+ },
+ {
+ "epoch": 34.54521625163827,
+ "grad_norm": 0.20261600613594055,
+ "learning_rate": 0.0006,
+ "loss": 3.6855502128601074,
+ "step": 2487
+ },
+ {
+ "epoch": 34.55919615552643,
+ "grad_norm": 0.23913109302520752,
+ "learning_rate": 0.0006,
+ "loss": 3.670754909515381,
+ "step": 2488
+ },
+ {
+ "epoch": 34.57317605941459,
+ "grad_norm": 0.24427077174186707,
+ "learning_rate": 0.0006,
+ "loss": 3.700611114501953,
+ "step": 2489
+ },
+ {
+ "epoch": 34.58715596330275,
+ "grad_norm": 0.20305761694908142,
+ "learning_rate": 0.0006,
+ "loss": 3.7284226417541504,
+ "step": 2490
+ },
+ {
+ "epoch": 34.60113586719091,
+ "grad_norm": 0.20398905873298645,
+ "learning_rate": 0.0006,
+ "loss": 3.6860880851745605,
+ "step": 2491
+ },
+ {
+ "epoch": 34.615115771079076,
+ "grad_norm": 0.21016651391983032,
+ "learning_rate": 0.0006,
+ "loss": 3.7366015911102295,
+ "step": 2492
+ },
+ {
+ "epoch": 34.62909567496723,
+ "grad_norm": 0.22279402613639832,
+ "learning_rate": 0.0006,
+ "loss": 3.7024295330047607,
+ "step": 2493
+ },
+ {
+ "epoch": 34.643075578855395,
+ "grad_norm": 0.25080347061157227,
+ "learning_rate": 0.0006,
+ "loss": 3.68355655670166,
+ "step": 2494
+ },
+ {
+ "epoch": 34.65705548274356,
+ "grad_norm": 0.2702971398830414,
+ "learning_rate": 0.0006,
+ "loss": 3.7400612831115723,
+ "step": 2495
+ },
+ {
+ "epoch": 34.671035386631715,
+ "grad_norm": 0.299398273229599,
+ "learning_rate": 0.0006,
+ "loss": 3.7160325050354004,
+ "step": 2496
+ },
+ {
+ "epoch": 34.68501529051988,
+ "grad_norm": 0.29151082038879395,
+ "learning_rate": 0.0006,
+ "loss": 3.7124147415161133,
+ "step": 2497
+ },
+ {
+ "epoch": 34.69899519440804,
+ "grad_norm": 0.23828288912773132,
+ "learning_rate": 0.0006,
+ "loss": 3.7181267738342285,
+ "step": 2498
+ },
+ {
+ "epoch": 34.7129750982962,
+ "grad_norm": 0.21776588261127472,
+ "learning_rate": 0.0006,
+ "loss": 3.6811792850494385,
+ "step": 2499
+ },
+ {
+ "epoch": 34.72695500218436,
+ "grad_norm": 0.2318469136953354,
+ "learning_rate": 0.0006,
+ "loss": 3.698467254638672,
+ "step": 2500
+ },
+ {
+ "epoch": 34.74093490607252,
+ "grad_norm": 0.22341546416282654,
+ "learning_rate": 0.0006,
+ "loss": 3.7406411170959473,
+ "step": 2501
+ },
+ {
+ "epoch": 34.75491480996068,
+ "grad_norm": 0.20676901936531067,
+ "learning_rate": 0.0006,
+ "loss": 3.6914243698120117,
+ "step": 2502
+ },
+ {
+ "epoch": 34.768894713848844,
+ "grad_norm": 0.20459024608135223,
+ "learning_rate": 0.0006,
+ "loss": 3.713369607925415,
+ "step": 2503
+ },
+ {
+ "epoch": 34.782874617737,
+ "grad_norm": 0.22369320690631866,
+ "learning_rate": 0.0006,
+ "loss": 3.697587490081787,
+ "step": 2504
+ },
+ {
+ "epoch": 34.796854521625164,
+ "grad_norm": 0.2393338829278946,
+ "learning_rate": 0.0006,
+ "loss": 3.7171854972839355,
+ "step": 2505
+ },
+ {
+ "epoch": 34.81083442551333,
+ "grad_norm": 0.23756961524486542,
+ "learning_rate": 0.0006,
+ "loss": 3.6969614028930664,
+ "step": 2506
+ },
+ {
+ "epoch": 34.824814329401484,
+ "grad_norm": 0.22761376202106476,
+ "learning_rate": 0.0006,
+ "loss": 3.722501754760742,
+ "step": 2507
+ },
+ {
+ "epoch": 34.83879423328965,
+ "grad_norm": 0.23564888536930084,
+ "learning_rate": 0.0006,
+ "loss": 3.714003086090088,
+ "step": 2508
+ },
+ {
+ "epoch": 34.8527741371778,
+ "grad_norm": 0.22197313606739044,
+ "learning_rate": 0.0006,
+ "loss": 3.7107110023498535,
+ "step": 2509
+ },
+ {
+ "epoch": 34.86675404106597,
+ "grad_norm": 0.20199328660964966,
+ "learning_rate": 0.0006,
+ "loss": 3.7167551517486572,
+ "step": 2510
+ },
+ {
+ "epoch": 34.88073394495413,
+ "grad_norm": 0.19569700956344604,
+ "learning_rate": 0.0006,
+ "loss": 3.679098129272461,
+ "step": 2511
+ },
+ {
+ "epoch": 34.89471384884229,
+ "grad_norm": 0.21320141851902008,
+ "learning_rate": 0.0006,
+ "loss": 3.733187675476074,
+ "step": 2512
+ },
+ {
+ "epoch": 34.90869375273045,
+ "grad_norm": 0.20074625313282013,
+ "learning_rate": 0.0006,
+ "loss": 3.713339328765869,
+ "step": 2513
+ },
+ {
+ "epoch": 34.92267365661861,
+ "grad_norm": 0.20249252021312714,
+ "learning_rate": 0.0006,
+ "loss": 3.680785655975342,
+ "step": 2514
+ },
+ {
+ "epoch": 34.93665356050677,
+ "grad_norm": 0.22165577113628387,
+ "learning_rate": 0.0006,
+ "loss": 3.696131706237793,
+ "step": 2515
+ },
+ {
+ "epoch": 34.95063346439493,
+ "grad_norm": 0.20769749581813812,
+ "learning_rate": 0.0006,
+ "loss": 3.6910316944122314,
+ "step": 2516
+ },
+ {
+ "epoch": 34.964613368283096,
+ "grad_norm": 0.20857223868370056,
+ "learning_rate": 0.0006,
+ "loss": 3.7327451705932617,
+ "step": 2517
+ },
+ {
+ "epoch": 34.97859327217125,
+ "grad_norm": 0.19155766069889069,
+ "learning_rate": 0.0006,
+ "loss": 3.705609083175659,
+ "step": 2518
+ },
+ {
+ "epoch": 34.992573176059416,
+ "grad_norm": 0.17890529334545135,
+ "learning_rate": 0.0006,
+ "loss": 3.6844797134399414,
+ "step": 2519
+ },
+ {
+ "epoch": 35.0,
+ "grad_norm": 0.2053528130054474,
+ "learning_rate": 0.0006,
+ "loss": 3.6942501068115234,
+ "step": 2520
+ },
+ {
+ "epoch": 35.0,
+ "eval_loss": 3.998469591140747,
+ "eval_runtime": 43.9147,
+ "eval_samples_per_second": 55.608,
+ "eval_steps_per_second": 3.484,
+ "step": 2520
+ },
+ {
+ "epoch": 35.01397990388816,
+ "grad_norm": 0.2288869470357895,
+ "learning_rate": 0.0006,
+ "loss": 3.6966426372528076,
+ "step": 2521
+ },
+ {
+ "epoch": 35.02795980777632,
+ "grad_norm": 0.25702035427093506,
+ "learning_rate": 0.0006,
+ "loss": 3.6622562408447266,
+ "step": 2522
+ },
+ {
+ "epoch": 35.04193971166448,
+ "grad_norm": 0.254422128200531,
+ "learning_rate": 0.0006,
+ "loss": 3.690046548843384,
+ "step": 2523
+ },
+ {
+ "epoch": 35.05591961555265,
+ "grad_norm": 0.24177077412605286,
+ "learning_rate": 0.0006,
+ "loss": 3.685335874557495,
+ "step": 2524
+ },
+ {
+ "epoch": 35.0698995194408,
+ "grad_norm": 0.23959586024284363,
+ "learning_rate": 0.0006,
+ "loss": 3.6534650325775146,
+ "step": 2525
+ },
+ {
+ "epoch": 35.083879423328966,
+ "grad_norm": 0.23474839329719543,
+ "learning_rate": 0.0006,
+ "loss": 3.7092814445495605,
+ "step": 2526
+ },
+ {
+ "epoch": 35.09785932721712,
+ "grad_norm": 0.23240867257118225,
+ "learning_rate": 0.0006,
+ "loss": 3.6819097995758057,
+ "step": 2527
+ },
+ {
+ "epoch": 35.111839231105286,
+ "grad_norm": 0.26267048716545105,
+ "learning_rate": 0.0006,
+ "loss": 3.6566696166992188,
+ "step": 2528
+ },
+ {
+ "epoch": 35.12581913499345,
+ "grad_norm": 0.27070754766464233,
+ "learning_rate": 0.0006,
+ "loss": 3.676304340362549,
+ "step": 2529
+ },
+ {
+ "epoch": 35.139799038881605,
+ "grad_norm": 0.25297826528549194,
+ "learning_rate": 0.0006,
+ "loss": 3.65259051322937,
+ "step": 2530
+ },
+ {
+ "epoch": 35.15377894276977,
+ "grad_norm": 0.22776272892951965,
+ "learning_rate": 0.0006,
+ "loss": 3.6813838481903076,
+ "step": 2531
+ },
+ {
+ "epoch": 35.16775884665793,
+ "grad_norm": 0.2288261204957962,
+ "learning_rate": 0.0006,
+ "loss": 3.6916379928588867,
+ "step": 2532
+ },
+ {
+ "epoch": 35.18173875054609,
+ "grad_norm": 0.20445892214775085,
+ "learning_rate": 0.0006,
+ "loss": 3.6550145149230957,
+ "step": 2533
+ },
+ {
+ "epoch": 35.19571865443425,
+ "grad_norm": 0.20298904180526733,
+ "learning_rate": 0.0006,
+ "loss": 3.704042434692383,
+ "step": 2534
+ },
+ {
+ "epoch": 35.20969855832241,
+ "grad_norm": 0.2264423668384552,
+ "learning_rate": 0.0006,
+ "loss": 3.646308183670044,
+ "step": 2535
+ },
+ {
+ "epoch": 35.22367846221057,
+ "grad_norm": 0.21537378430366516,
+ "learning_rate": 0.0006,
+ "loss": 3.686048984527588,
+ "step": 2536
+ },
+ {
+ "epoch": 35.237658366098735,
+ "grad_norm": 0.19820059835910797,
+ "learning_rate": 0.0006,
+ "loss": 3.6993050575256348,
+ "step": 2537
+ },
+ {
+ "epoch": 35.25163826998689,
+ "grad_norm": 0.19485290348529816,
+ "learning_rate": 0.0006,
+ "loss": 3.6507070064544678,
+ "step": 2538
+ },
+ {
+ "epoch": 35.265618173875055,
+ "grad_norm": 0.21234364807605743,
+ "learning_rate": 0.0006,
+ "loss": 3.6913719177246094,
+ "step": 2539
+ },
+ {
+ "epoch": 35.27959807776322,
+ "grad_norm": 0.19834300875663757,
+ "learning_rate": 0.0006,
+ "loss": 3.6793041229248047,
+ "step": 2540
+ },
+ {
+ "epoch": 35.293577981651374,
+ "grad_norm": 0.1969013512134552,
+ "learning_rate": 0.0006,
+ "loss": 3.7063517570495605,
+ "step": 2541
+ },
+ {
+ "epoch": 35.30755788553954,
+ "grad_norm": 0.196136936545372,
+ "learning_rate": 0.0006,
+ "loss": 3.679825782775879,
+ "step": 2542
+ },
+ {
+ "epoch": 35.3215377894277,
+ "grad_norm": 0.20465479791164398,
+ "learning_rate": 0.0006,
+ "loss": 3.698906421661377,
+ "step": 2543
+ },
+ {
+ "epoch": 35.33551769331586,
+ "grad_norm": 0.204293355345726,
+ "learning_rate": 0.0006,
+ "loss": 3.728549003601074,
+ "step": 2544
+ },
+ {
+ "epoch": 35.34949759720402,
+ "grad_norm": 0.18861903250217438,
+ "learning_rate": 0.0006,
+ "loss": 3.687018632888794,
+ "step": 2545
+ },
+ {
+ "epoch": 35.36347750109218,
+ "grad_norm": 0.19066226482391357,
+ "learning_rate": 0.0006,
+ "loss": 3.667919158935547,
+ "step": 2546
+ },
+ {
+ "epoch": 35.37745740498034,
+ "grad_norm": 0.19985736906528473,
+ "learning_rate": 0.0006,
+ "loss": 3.6697773933410645,
+ "step": 2547
+ },
+ {
+ "epoch": 35.391437308868504,
+ "grad_norm": 0.20669348537921906,
+ "learning_rate": 0.0006,
+ "loss": 3.6718077659606934,
+ "step": 2548
+ },
+ {
+ "epoch": 35.40541721275666,
+ "grad_norm": 0.22164477407932281,
+ "learning_rate": 0.0006,
+ "loss": 3.692106246948242,
+ "step": 2549
+ },
+ {
+ "epoch": 35.419397116644824,
+ "grad_norm": 0.20884688198566437,
+ "learning_rate": 0.0006,
+ "loss": 3.714324712753296,
+ "step": 2550
+ },
+ {
+ "epoch": 35.43337702053299,
+ "grad_norm": 0.21811005473136902,
+ "learning_rate": 0.0006,
+ "loss": 3.678694725036621,
+ "step": 2551
+ },
+ {
+ "epoch": 35.44735692442114,
+ "grad_norm": 0.2427632063627243,
+ "learning_rate": 0.0006,
+ "loss": 3.6584935188293457,
+ "step": 2552
+ },
+ {
+ "epoch": 35.46133682830931,
+ "grad_norm": 0.2584928572177887,
+ "learning_rate": 0.0006,
+ "loss": 3.694148063659668,
+ "step": 2553
+ },
+ {
+ "epoch": 35.47531673219746,
+ "grad_norm": 0.2594548761844635,
+ "learning_rate": 0.0006,
+ "loss": 3.690629005432129,
+ "step": 2554
+ },
+ {
+ "epoch": 35.489296636085626,
+ "grad_norm": 0.2521844208240509,
+ "learning_rate": 0.0006,
+ "loss": 3.6949915885925293,
+ "step": 2555
+ },
+ {
+ "epoch": 35.50327653997379,
+ "grad_norm": 0.2284533679485321,
+ "learning_rate": 0.0006,
+ "loss": 3.6822848320007324,
+ "step": 2556
+ },
+ {
+ "epoch": 35.517256443861946,
+ "grad_norm": 0.2350241094827652,
+ "learning_rate": 0.0006,
+ "loss": 3.6841659545898438,
+ "step": 2557
+ },
+ {
+ "epoch": 35.53123634775011,
+ "grad_norm": 0.22496885061264038,
+ "learning_rate": 0.0006,
+ "loss": 3.676447629928589,
+ "step": 2558
+ },
+ {
+ "epoch": 35.54521625163827,
+ "grad_norm": 0.24326276779174805,
+ "learning_rate": 0.0006,
+ "loss": 3.681678533554077,
+ "step": 2559
+ },
+ {
+ "epoch": 35.55919615552643,
+ "grad_norm": 0.26298362016677856,
+ "learning_rate": 0.0006,
+ "loss": 3.6877617835998535,
+ "step": 2560
+ },
+ {
+ "epoch": 35.57317605941459,
+ "grad_norm": 0.2507239282131195,
+ "learning_rate": 0.0006,
+ "loss": 3.7089176177978516,
+ "step": 2561
+ },
+ {
+ "epoch": 35.58715596330275,
+ "grad_norm": 0.2276458442211151,
+ "learning_rate": 0.0006,
+ "loss": 3.705570936203003,
+ "step": 2562
+ },
+ {
+ "epoch": 35.60113586719091,
+ "grad_norm": 0.23317085206508636,
+ "learning_rate": 0.0006,
+ "loss": 3.6772396564483643,
+ "step": 2563
+ },
+ {
+ "epoch": 35.615115771079076,
+ "grad_norm": 0.23301710188388824,
+ "learning_rate": 0.0006,
+ "loss": 3.694855213165283,
+ "step": 2564
+ },
+ {
+ "epoch": 35.62909567496723,
+ "grad_norm": 0.2170179933309555,
+ "learning_rate": 0.0006,
+ "loss": 3.7095537185668945,
+ "step": 2565
+ },
+ {
+ "epoch": 35.643075578855395,
+ "grad_norm": 0.21211965382099152,
+ "learning_rate": 0.0006,
+ "loss": 3.670109272003174,
+ "step": 2566
+ },
+ {
+ "epoch": 35.65705548274356,
+ "grad_norm": 0.21052585542201996,
+ "learning_rate": 0.0006,
+ "loss": 3.6576027870178223,
+ "step": 2567
+ },
+ {
+ "epoch": 35.671035386631715,
+ "grad_norm": 0.21556039154529572,
+ "learning_rate": 0.0006,
+ "loss": 3.6870639324188232,
+ "step": 2568
+ },
+ {
+ "epoch": 35.68501529051988,
+ "grad_norm": 0.2246469408273697,
+ "learning_rate": 0.0006,
+ "loss": 3.675652503967285,
+ "step": 2569
+ },
+ {
+ "epoch": 35.69899519440804,
+ "grad_norm": 0.21891754865646362,
+ "learning_rate": 0.0006,
+ "loss": 3.692298650741577,
+ "step": 2570
+ },
+ {
+ "epoch": 35.7129750982962,
+ "grad_norm": 0.18774104118347168,
+ "learning_rate": 0.0006,
+ "loss": 3.681035041809082,
+ "step": 2571
+ },
+ {
+ "epoch": 35.72695500218436,
+ "grad_norm": 0.19461573660373688,
+ "learning_rate": 0.0006,
+ "loss": 3.7007932662963867,
+ "step": 2572
+ },
+ {
+ "epoch": 35.74093490607252,
+ "grad_norm": 0.25579094886779785,
+ "learning_rate": 0.0006,
+ "loss": 3.724409580230713,
+ "step": 2573
+ },
+ {
+ "epoch": 35.75491480996068,
+ "grad_norm": 0.27635645866394043,
+ "learning_rate": 0.0006,
+ "loss": 3.68107271194458,
+ "step": 2574
+ },
+ {
+ "epoch": 35.768894713848844,
+ "grad_norm": 0.2233380675315857,
+ "learning_rate": 0.0006,
+ "loss": 3.7123913764953613,
+ "step": 2575
+ },
+ {
+ "epoch": 35.782874617737,
+ "grad_norm": 0.19383835792541504,
+ "learning_rate": 0.0006,
+ "loss": 3.6948328018188477,
+ "step": 2576
+ },
+ {
+ "epoch": 35.796854521625164,
+ "grad_norm": 0.18138426542282104,
+ "learning_rate": 0.0006,
+ "loss": 3.6837103366851807,
+ "step": 2577
+ },
+ {
+ "epoch": 35.81083442551333,
+ "grad_norm": 0.18680135905742645,
+ "learning_rate": 0.0006,
+ "loss": 3.7106502056121826,
+ "step": 2578
+ },
+ {
+ "epoch": 35.824814329401484,
+ "grad_norm": 0.19226312637329102,
+ "learning_rate": 0.0006,
+ "loss": 3.69488787651062,
+ "step": 2579
+ },
+ {
+ "epoch": 35.83879423328965,
+ "grad_norm": 0.19224657118320465,
+ "learning_rate": 0.0006,
+ "loss": 3.7103662490844727,
+ "step": 2580
+ },
+ {
+ "epoch": 35.8527741371778,
+ "grad_norm": 0.18991880118846893,
+ "learning_rate": 0.0006,
+ "loss": 3.7154245376586914,
+ "step": 2581
+ },
+ {
+ "epoch": 35.86675404106597,
+ "grad_norm": 0.2036849409341812,
+ "learning_rate": 0.0006,
+ "loss": 3.723738193511963,
+ "step": 2582
+ },
+ {
+ "epoch": 35.88073394495413,
+ "grad_norm": 0.24730375409126282,
+ "learning_rate": 0.0006,
+ "loss": 3.6830549240112305,
+ "step": 2583
+ },
+ {
+ "epoch": 35.89471384884229,
+ "grad_norm": 0.26552343368530273,
+ "learning_rate": 0.0006,
+ "loss": 3.7025017738342285,
+ "step": 2584
+ },
+ {
+ "epoch": 35.90869375273045,
+ "grad_norm": 0.2621893286705017,
+ "learning_rate": 0.0006,
+ "loss": 3.697399854660034,
+ "step": 2585
+ },
+ {
+ "epoch": 35.92267365661861,
+ "grad_norm": 0.2320089191198349,
+ "learning_rate": 0.0006,
+ "loss": 3.722207546234131,
+ "step": 2586
+ },
+ {
+ "epoch": 35.93665356050677,
+ "grad_norm": 0.1848745346069336,
+ "learning_rate": 0.0006,
+ "loss": 3.711249351501465,
+ "step": 2587
+ },
+ {
+ "epoch": 35.95063346439493,
+ "grad_norm": 0.24218113720417023,
+ "learning_rate": 0.0006,
+ "loss": 3.698894500732422,
+ "step": 2588
+ },
+ {
+ "epoch": 35.964613368283096,
+ "grad_norm": 0.29338452219963074,
+ "learning_rate": 0.0006,
+ "loss": 3.7470521926879883,
+ "step": 2589
+ },
+ {
+ "epoch": 35.97859327217125,
+ "grad_norm": 0.2804136276245117,
+ "learning_rate": 0.0006,
+ "loss": 3.750649929046631,
+ "step": 2590
+ },
+ {
+ "epoch": 35.992573176059416,
+ "grad_norm": 0.26404470205307007,
+ "learning_rate": 0.0006,
+ "loss": 3.6995797157287598,
+ "step": 2591
+ },
+ {
+ "epoch": 36.0,
+ "grad_norm": 0.27446141839027405,
+ "learning_rate": 0.0006,
+ "loss": 3.715768814086914,
+ "step": 2592
+ },
+ {
+ "epoch": 36.0,
+ "eval_loss": 4.007599830627441,
+ "eval_runtime": 44.0149,
+ "eval_samples_per_second": 55.481,
+ "eval_steps_per_second": 3.476,
+ "step": 2592
+ },
+ {
+ "epoch": 36.01397990388816,
+ "grad_norm": 0.2365594208240509,
+ "learning_rate": 0.0006,
+ "loss": 3.6529457569122314,
+ "step": 2593
+ },
+ {
+ "epoch": 36.02795980777632,
+ "grad_norm": 0.24824099242687225,
+ "learning_rate": 0.0006,
+ "loss": 3.6703386306762695,
+ "step": 2594
+ },
+ {
+ "epoch": 36.04193971166448,
+ "grad_norm": 0.26802200078964233,
+ "learning_rate": 0.0006,
+ "loss": 3.688307762145996,
+ "step": 2595
+ },
+ {
+ "epoch": 36.05591961555265,
+ "grad_norm": 0.2552911341190338,
+ "learning_rate": 0.0006,
+ "loss": 3.681797981262207,
+ "step": 2596
+ },
+ {
+ "epoch": 36.0698995194408,
+ "grad_norm": 0.254991739988327,
+ "learning_rate": 0.0006,
+ "loss": 3.644087791442871,
+ "step": 2597
+ },
+ {
+ "epoch": 36.083879423328966,
+ "grad_norm": 0.2496735155582428,
+ "learning_rate": 0.0006,
+ "loss": 3.644047737121582,
+ "step": 2598
+ },
+ {
+ "epoch": 36.09785932721712,
+ "grad_norm": 0.23637443780899048,
+ "learning_rate": 0.0006,
+ "loss": 3.684454917907715,
+ "step": 2599
+ },
+ {
+ "epoch": 36.111839231105286,
+ "grad_norm": 0.22065003216266632,
+ "learning_rate": 0.0006,
+ "loss": 3.661752700805664,
+ "step": 2600
+ },
+ {
+ "epoch": 36.12581913499345,
+ "grad_norm": 0.2292395532131195,
+ "learning_rate": 0.0006,
+ "loss": 3.6709558963775635,
+ "step": 2601
+ },
+ {
+ "epoch": 36.139799038881605,
+ "grad_norm": 0.22295089066028595,
+ "learning_rate": 0.0006,
+ "loss": 3.642230987548828,
+ "step": 2602
+ },
+ {
+ "epoch": 36.15377894276977,
+ "grad_norm": 0.2220531553030014,
+ "learning_rate": 0.0006,
+ "loss": 3.653268814086914,
+ "step": 2603
+ },
+ {
+ "epoch": 36.16775884665793,
+ "grad_norm": 0.21605174243450165,
+ "learning_rate": 0.0006,
+ "loss": 3.6791329383850098,
+ "step": 2604
+ },
+ {
+ "epoch": 36.18173875054609,
+ "grad_norm": 0.20932699739933014,
+ "learning_rate": 0.0006,
+ "loss": 3.6496856212615967,
+ "step": 2605
+ },
+ {
+ "epoch": 36.19571865443425,
+ "grad_norm": 0.20941385626792908,
+ "learning_rate": 0.0006,
+ "loss": 3.6445729732513428,
+ "step": 2606
+ },
+ {
+ "epoch": 36.20969855832241,
+ "grad_norm": 0.1987197995185852,
+ "learning_rate": 0.0006,
+ "loss": 3.6481809616088867,
+ "step": 2607
+ },
+ {
+ "epoch": 36.22367846221057,
+ "grad_norm": 0.19054439663887024,
+ "learning_rate": 0.0006,
+ "loss": 3.66894268989563,
+ "step": 2608
+ },
+ {
+ "epoch": 36.237658366098735,
+ "grad_norm": 0.19940806925296783,
+ "learning_rate": 0.0006,
+ "loss": 3.7123427391052246,
+ "step": 2609
+ },
+ {
+ "epoch": 36.25163826998689,
+ "grad_norm": 0.22157685458660126,
+ "learning_rate": 0.0006,
+ "loss": 3.6707541942596436,
+ "step": 2610
+ },
+ {
+ "epoch": 36.265618173875055,
+ "grad_norm": 0.2362316995859146,
+ "learning_rate": 0.0006,
+ "loss": 3.6906795501708984,
+ "step": 2611
+ },
+ {
+ "epoch": 36.27959807776322,
+ "grad_norm": 0.24560341238975525,
+ "learning_rate": 0.0006,
+ "loss": 3.668379783630371,
+ "step": 2612
+ },
+ {
+ "epoch": 36.293577981651374,
+ "grad_norm": 0.22814054787158966,
+ "learning_rate": 0.0006,
+ "loss": 3.665527820587158,
+ "step": 2613
+ },
+ {
+ "epoch": 36.30755788553954,
+ "grad_norm": 0.2156696617603302,
+ "learning_rate": 0.0006,
+ "loss": 3.673835277557373,
+ "step": 2614
+ },
+ {
+ "epoch": 36.3215377894277,
+ "grad_norm": 0.20152772963047028,
+ "learning_rate": 0.0006,
+ "loss": 3.6512670516967773,
+ "step": 2615
+ },
+ {
+ "epoch": 36.33551769331586,
+ "grad_norm": 0.22466860711574554,
+ "learning_rate": 0.0006,
+ "loss": 3.6877706050872803,
+ "step": 2616
+ },
+ {
+ "epoch": 36.34949759720402,
+ "grad_norm": 0.21688112616539001,
+ "learning_rate": 0.0006,
+ "loss": 3.6895859241485596,
+ "step": 2617
+ },
+ {
+ "epoch": 36.36347750109218,
+ "grad_norm": 0.19836577773094177,
+ "learning_rate": 0.0006,
+ "loss": 3.6658992767333984,
+ "step": 2618
+ },
+ {
+ "epoch": 36.37745740498034,
+ "grad_norm": 0.1995069831609726,
+ "learning_rate": 0.0006,
+ "loss": 3.677614450454712,
+ "step": 2619
+ },
+ {
+ "epoch": 36.391437308868504,
+ "grad_norm": 0.21234792470932007,
+ "learning_rate": 0.0006,
+ "loss": 3.6971967220306396,
+ "step": 2620
+ },
+ {
+ "epoch": 36.40541721275666,
+ "grad_norm": 0.20898285508155823,
+ "learning_rate": 0.0006,
+ "loss": 3.6936516761779785,
+ "step": 2621
+ },
+ {
+ "epoch": 36.419397116644824,
+ "grad_norm": 0.2115008533000946,
+ "learning_rate": 0.0006,
+ "loss": 3.6674065589904785,
+ "step": 2622
+ },
+ {
+ "epoch": 36.43337702053299,
+ "grad_norm": 0.2041143774986267,
+ "learning_rate": 0.0006,
+ "loss": 3.6455483436584473,
+ "step": 2623
+ },
+ {
+ "epoch": 36.44735692442114,
+ "grad_norm": 0.1966932713985443,
+ "learning_rate": 0.0006,
+ "loss": 3.6938109397888184,
+ "step": 2624
+ },
+ {
+ "epoch": 36.46133682830931,
+ "grad_norm": 0.20062223076820374,
+ "learning_rate": 0.0006,
+ "loss": 3.6775765419006348,
+ "step": 2625
+ },
+ {
+ "epoch": 36.47531673219746,
+ "grad_norm": 0.20610390603542328,
+ "learning_rate": 0.0006,
+ "loss": 3.6835384368896484,
+ "step": 2626
+ },
+ {
+ "epoch": 36.489296636085626,
+ "grad_norm": 0.20481473207473755,
+ "learning_rate": 0.0006,
+ "loss": 3.6794047355651855,
+ "step": 2627
+ },
+ {
+ "epoch": 36.50327653997379,
+ "grad_norm": 0.18964581191539764,
+ "learning_rate": 0.0006,
+ "loss": 3.7035841941833496,
+ "step": 2628
+ },
+ {
+ "epoch": 36.517256443861946,
+ "grad_norm": 0.2029343545436859,
+ "learning_rate": 0.0006,
+ "loss": 3.6667590141296387,
+ "step": 2629
+ },
+ {
+ "epoch": 36.53123634775011,
+ "grad_norm": 0.23656968772411346,
+ "learning_rate": 0.0006,
+ "loss": 3.6974546909332275,
+ "step": 2630
+ },
+ {
+ "epoch": 36.54521625163827,
+ "grad_norm": 0.23401431739330292,
+ "learning_rate": 0.0006,
+ "loss": 3.668936252593994,
+ "step": 2631
+ },
+ {
+ "epoch": 36.55919615552643,
+ "grad_norm": 0.22258102893829346,
+ "learning_rate": 0.0006,
+ "loss": 3.667977809906006,
+ "step": 2632
+ },
+ {
+ "epoch": 36.57317605941459,
+ "grad_norm": 0.20849554240703583,
+ "learning_rate": 0.0006,
+ "loss": 3.6674845218658447,
+ "step": 2633
+ },
+ {
+ "epoch": 36.58715596330275,
+ "grad_norm": 0.20684309303760529,
+ "learning_rate": 0.0006,
+ "loss": 3.6828644275665283,
+ "step": 2634
+ },
+ {
+ "epoch": 36.60113586719091,
+ "grad_norm": 0.19114233553409576,
+ "learning_rate": 0.0006,
+ "loss": 3.7084832191467285,
+ "step": 2635
+ },
+ {
+ "epoch": 36.615115771079076,
+ "grad_norm": 0.20382429659366608,
+ "learning_rate": 0.0006,
+ "loss": 3.68354868888855,
+ "step": 2636
+ },
+ {
+ "epoch": 36.62909567496723,
+ "grad_norm": 0.22526590526103973,
+ "learning_rate": 0.0006,
+ "loss": 3.684112310409546,
+ "step": 2637
+ },
+ {
+ "epoch": 36.643075578855395,
+ "grad_norm": 0.20735391974449158,
+ "learning_rate": 0.0006,
+ "loss": 3.67702054977417,
+ "step": 2638
+ },
+ {
+ "epoch": 36.65705548274356,
+ "grad_norm": 0.18549653887748718,
+ "learning_rate": 0.0006,
+ "loss": 3.6840810775756836,
+ "step": 2639
+ },
+ {
+ "epoch": 36.671035386631715,
+ "grad_norm": 0.1805262714624405,
+ "learning_rate": 0.0006,
+ "loss": 3.688119411468506,
+ "step": 2640
+ },
+ {
+ "epoch": 36.68501529051988,
+ "grad_norm": 0.17545704543590546,
+ "learning_rate": 0.0006,
+ "loss": 3.6477861404418945,
+ "step": 2641
+ },
+ {
+ "epoch": 36.69899519440804,
+ "grad_norm": 0.1772221326828003,
+ "learning_rate": 0.0006,
+ "loss": 3.6935806274414062,
+ "step": 2642
+ },
+ {
+ "epoch": 36.7129750982962,
+ "grad_norm": 0.18701671063899994,
+ "learning_rate": 0.0006,
+ "loss": 3.6820428371429443,
+ "step": 2643
+ },
+ {
+ "epoch": 36.72695500218436,
+ "grad_norm": 0.2057863473892212,
+ "learning_rate": 0.0006,
+ "loss": 3.669762134552002,
+ "step": 2644
+ },
+ {
+ "epoch": 36.74093490607252,
+ "grad_norm": 0.2565848231315613,
+ "learning_rate": 0.0006,
+ "loss": 3.717599391937256,
+ "step": 2645
+ },
+ {
+ "epoch": 36.75491480996068,
+ "grad_norm": 0.24362123012542725,
+ "learning_rate": 0.0006,
+ "loss": 3.671900987625122,
+ "step": 2646
+ },
+ {
+ "epoch": 36.768894713848844,
+ "grad_norm": 0.19606009125709534,
+ "learning_rate": 0.0006,
+ "loss": 3.6782546043395996,
+ "step": 2647
+ },
+ {
+ "epoch": 36.782874617737,
+ "grad_norm": 0.1948748379945755,
+ "learning_rate": 0.0006,
+ "loss": 3.6823501586914062,
+ "step": 2648
+ },
+ {
+ "epoch": 36.796854521625164,
+ "grad_norm": 0.22289852797985077,
+ "learning_rate": 0.0006,
+ "loss": 3.693469762802124,
+ "step": 2649
+ },
+ {
+ "epoch": 36.81083442551333,
+ "grad_norm": 0.24751701951026917,
+ "learning_rate": 0.0006,
+ "loss": 3.700678825378418,
+ "step": 2650
+ },
+ {
+ "epoch": 36.824814329401484,
+ "grad_norm": 0.28663966059684753,
+ "learning_rate": 0.0006,
+ "loss": 3.6960878372192383,
+ "step": 2651
+ },
+ {
+ "epoch": 36.83879423328965,
+ "grad_norm": 0.3288552165031433,
+ "learning_rate": 0.0006,
+ "loss": 3.7255043983459473,
+ "step": 2652
+ },
+ {
+ "epoch": 36.8527741371778,
+ "grad_norm": 0.3555443286895752,
+ "learning_rate": 0.0006,
+ "loss": 3.725308418273926,
+ "step": 2653
+ },
+ {
+ "epoch": 36.86675404106597,
+ "grad_norm": 0.3204147219657898,
+ "learning_rate": 0.0006,
+ "loss": 3.7137985229492188,
+ "step": 2654
+ },
+ {
+ "epoch": 36.88073394495413,
+ "grad_norm": 0.2944706976413727,
+ "learning_rate": 0.0006,
+ "loss": 3.7032840251922607,
+ "step": 2655
+ },
+ {
+ "epoch": 36.89471384884229,
+ "grad_norm": 0.2845679223537445,
+ "learning_rate": 0.0006,
+ "loss": 3.6840004920959473,
+ "step": 2656
+ },
+ {
+ "epoch": 36.90869375273045,
+ "grad_norm": 0.2815704047679901,
+ "learning_rate": 0.0006,
+ "loss": 3.6958417892456055,
+ "step": 2657
+ },
+ {
+ "epoch": 36.92267365661861,
+ "grad_norm": 0.2733481228351593,
+ "learning_rate": 0.0006,
+ "loss": 3.677690029144287,
+ "step": 2658
+ },
+ {
+ "epoch": 36.93665356050677,
+ "grad_norm": 0.29572054743766785,
+ "learning_rate": 0.0006,
+ "loss": 3.6983718872070312,
+ "step": 2659
+ },
+ {
+ "epoch": 36.95063346439493,
+ "grad_norm": 0.2487923800945282,
+ "learning_rate": 0.0006,
+ "loss": 3.7041163444519043,
+ "step": 2660
+ },
+ {
+ "epoch": 36.964613368283096,
+ "grad_norm": 0.2541966438293457,
+ "learning_rate": 0.0006,
+ "loss": 3.7038979530334473,
+ "step": 2661
+ },
+ {
+ "epoch": 36.97859327217125,
+ "grad_norm": 0.2441335767507553,
+ "learning_rate": 0.0006,
+ "loss": 3.717966079711914,
+ "step": 2662
+ },
+ {
+ "epoch": 36.992573176059416,
+ "grad_norm": 0.2304554283618927,
+ "learning_rate": 0.0006,
+ "loss": 3.671098232269287,
+ "step": 2663
+ },
+ {
+ "epoch": 37.0,
+ "grad_norm": 0.2346591204404831,
+ "learning_rate": 0.0006,
+ "loss": 3.680298089981079,
+ "step": 2664
+ },
+ {
+ "epoch": 37.0,
+ "eval_loss": 3.9944777488708496,
+ "eval_runtime": 43.9862,
+ "eval_samples_per_second": 55.517,
+ "eval_steps_per_second": 3.478,
+ "step": 2664
+ },
+ {
+ "epoch": 37.01397990388816,
+ "grad_norm": 0.22970618307590485,
+ "learning_rate": 0.0006,
+ "loss": 3.6835923194885254,
+ "step": 2665
+ },
+ {
+ "epoch": 37.02795980777632,
+ "grad_norm": 0.25463759899139404,
+ "learning_rate": 0.0006,
+ "loss": 3.658339023590088,
+ "step": 2666
+ },
+ {
+ "epoch": 37.04193971166448,
+ "grad_norm": 0.2520577311515808,
+ "learning_rate": 0.0006,
+ "loss": 3.6275506019592285,
+ "step": 2667
+ },
+ {
+ "epoch": 37.05591961555265,
+ "grad_norm": 0.22698813676834106,
+ "learning_rate": 0.0006,
+ "loss": 3.65043568611145,
+ "step": 2668
+ },
+ {
+ "epoch": 37.0698995194408,
+ "grad_norm": 0.21133972704410553,
+ "learning_rate": 0.0006,
+ "loss": 3.6262078285217285,
+ "step": 2669
+ },
+ {
+ "epoch": 37.083879423328966,
+ "grad_norm": 0.21940460801124573,
+ "learning_rate": 0.0006,
+ "loss": 3.6709489822387695,
+ "step": 2670
+ },
+ {
+ "epoch": 37.09785932721712,
+ "grad_norm": 0.21897517144680023,
+ "learning_rate": 0.0006,
+ "loss": 3.6621508598327637,
+ "step": 2671
+ },
+ {
+ "epoch": 37.111839231105286,
+ "grad_norm": 0.2270219624042511,
+ "learning_rate": 0.0006,
+ "loss": 3.6334924697875977,
+ "step": 2672
+ },
+ {
+ "epoch": 37.12581913499345,
+ "grad_norm": 0.22082042694091797,
+ "learning_rate": 0.0006,
+ "loss": 3.662209987640381,
+ "step": 2673
+ },
+ {
+ "epoch": 37.139799038881605,
+ "grad_norm": 0.19931960105895996,
+ "learning_rate": 0.0006,
+ "loss": 3.6655359268188477,
+ "step": 2674
+ },
+ {
+ "epoch": 37.15377894276977,
+ "grad_norm": 0.21451307833194733,
+ "learning_rate": 0.0006,
+ "loss": 3.656287670135498,
+ "step": 2675
+ },
+ {
+ "epoch": 37.16775884665793,
+ "grad_norm": 0.2131514698266983,
+ "learning_rate": 0.0006,
+ "loss": 3.635054111480713,
+ "step": 2676
+ },
+ {
+ "epoch": 37.18173875054609,
+ "grad_norm": 0.20425808429718018,
+ "learning_rate": 0.0006,
+ "loss": 3.67653226852417,
+ "step": 2677
+ },
+ {
+ "epoch": 37.19571865443425,
+ "grad_norm": 0.19423379004001617,
+ "learning_rate": 0.0006,
+ "loss": 3.6827316284179688,
+ "step": 2678
+ },
+ {
+ "epoch": 37.20969855832241,
+ "grad_norm": 0.1954883486032486,
+ "learning_rate": 0.0006,
+ "loss": 3.658092498779297,
+ "step": 2679
+ },
+ {
+ "epoch": 37.22367846221057,
+ "grad_norm": 0.21153928339481354,
+ "learning_rate": 0.0006,
+ "loss": 3.6675186157226562,
+ "step": 2680
+ },
+ {
+ "epoch": 37.237658366098735,
+ "grad_norm": 0.2032976895570755,
+ "learning_rate": 0.0006,
+ "loss": 3.6725759506225586,
+ "step": 2681
+ },
+ {
+ "epoch": 37.25163826998689,
+ "grad_norm": 0.19839346408843994,
+ "learning_rate": 0.0006,
+ "loss": 3.660851240158081,
+ "step": 2682
+ },
+ {
+ "epoch": 37.265618173875055,
+ "grad_norm": 0.1884699910879135,
+ "learning_rate": 0.0006,
+ "loss": 3.6653623580932617,
+ "step": 2683
+ },
+ {
+ "epoch": 37.27959807776322,
+ "grad_norm": 0.19558705389499664,
+ "learning_rate": 0.0006,
+ "loss": 3.648016929626465,
+ "step": 2684
+ },
+ {
+ "epoch": 37.293577981651374,
+ "grad_norm": 0.19453682005405426,
+ "learning_rate": 0.0006,
+ "loss": 3.6804773807525635,
+ "step": 2685
+ },
+ {
+ "epoch": 37.30755788553954,
+ "grad_norm": 0.1901177167892456,
+ "learning_rate": 0.0006,
+ "loss": 3.6533353328704834,
+ "step": 2686
+ },
+ {
+ "epoch": 37.3215377894277,
+ "grad_norm": 0.19425596296787262,
+ "learning_rate": 0.0006,
+ "loss": 3.665745735168457,
+ "step": 2687
+ },
+ {
+ "epoch": 37.33551769331586,
+ "grad_norm": 0.17583411931991577,
+ "learning_rate": 0.0006,
+ "loss": 3.679112434387207,
+ "step": 2688
+ },
+ {
+ "epoch": 37.34949759720402,
+ "grad_norm": 0.19667863845825195,
+ "learning_rate": 0.0006,
+ "loss": 3.6650352478027344,
+ "step": 2689
+ },
+ {
+ "epoch": 37.36347750109218,
+ "grad_norm": 0.22803270816802979,
+ "learning_rate": 0.0006,
+ "loss": 3.6658573150634766,
+ "step": 2690
+ },
+ {
+ "epoch": 37.37745740498034,
+ "grad_norm": 0.20589298009872437,
+ "learning_rate": 0.0006,
+ "loss": 3.6587300300598145,
+ "step": 2691
+ },
+ {
+ "epoch": 37.391437308868504,
+ "grad_norm": 0.1946951299905777,
+ "learning_rate": 0.0006,
+ "loss": 3.6515092849731445,
+ "step": 2692
+ },
+ {
+ "epoch": 37.40541721275666,
+ "grad_norm": 0.19029614329338074,
+ "learning_rate": 0.0006,
+ "loss": 3.6383113861083984,
+ "step": 2693
+ },
+ {
+ "epoch": 37.419397116644824,
+ "grad_norm": 0.1944548338651657,
+ "learning_rate": 0.0006,
+ "loss": 3.7017135620117188,
+ "step": 2694
+ },
+ {
+ "epoch": 37.43337702053299,
+ "grad_norm": 0.19482386112213135,
+ "learning_rate": 0.0006,
+ "loss": 3.6791775226593018,
+ "step": 2695
+ },
+ {
+ "epoch": 37.44735692442114,
+ "grad_norm": 0.23276680707931519,
+ "learning_rate": 0.0006,
+ "loss": 3.672245979309082,
+ "step": 2696
+ },
+ {
+ "epoch": 37.46133682830931,
+ "grad_norm": 0.22267542779445648,
+ "learning_rate": 0.0006,
+ "loss": 3.683380365371704,
+ "step": 2697
+ },
+ {
+ "epoch": 37.47531673219746,
+ "grad_norm": 0.1942203938961029,
+ "learning_rate": 0.0006,
+ "loss": 3.6760759353637695,
+ "step": 2698
+ },
+ {
+ "epoch": 37.489296636085626,
+ "grad_norm": 0.21212540566921234,
+ "learning_rate": 0.0006,
+ "loss": 3.660719633102417,
+ "step": 2699
+ },
+ {
+ "epoch": 37.50327653997379,
+ "grad_norm": 0.2365427315235138,
+ "learning_rate": 0.0006,
+ "loss": 3.6727194786071777,
+ "step": 2700
+ },
+ {
+ "epoch": 37.517256443861946,
+ "grad_norm": 0.2379675805568695,
+ "learning_rate": 0.0006,
+ "loss": 3.6691598892211914,
+ "step": 2701
+ },
+ {
+ "epoch": 37.53123634775011,
+ "grad_norm": 0.22142401337623596,
+ "learning_rate": 0.0006,
+ "loss": 3.6882128715515137,
+ "step": 2702
+ },
+ {
+ "epoch": 37.54521625163827,
+ "grad_norm": 0.19993607699871063,
+ "learning_rate": 0.0006,
+ "loss": 3.6651787757873535,
+ "step": 2703
+ },
+ {
+ "epoch": 37.55919615552643,
+ "grad_norm": 0.19934895634651184,
+ "learning_rate": 0.0006,
+ "loss": 3.6680638790130615,
+ "step": 2704
+ },
+ {
+ "epoch": 37.57317605941459,
+ "grad_norm": 0.21202369034290314,
+ "learning_rate": 0.0006,
+ "loss": 3.697615623474121,
+ "step": 2705
+ },
+ {
+ "epoch": 37.58715596330275,
+ "grad_norm": 0.1994577795267105,
+ "learning_rate": 0.0006,
+ "loss": 3.688243865966797,
+ "step": 2706
+ },
+ {
+ "epoch": 37.60113586719091,
+ "grad_norm": 0.20365118980407715,
+ "learning_rate": 0.0006,
+ "loss": 3.6615519523620605,
+ "step": 2707
+ },
+ {
+ "epoch": 37.615115771079076,
+ "grad_norm": 0.22466035187244415,
+ "learning_rate": 0.0006,
+ "loss": 3.703111171722412,
+ "step": 2708
+ },
+ {
+ "epoch": 37.62909567496723,
+ "grad_norm": 0.21140407025814056,
+ "learning_rate": 0.0006,
+ "loss": 3.6744728088378906,
+ "step": 2709
+ },
+ {
+ "epoch": 37.643075578855395,
+ "grad_norm": 0.22220195829868317,
+ "learning_rate": 0.0006,
+ "loss": 3.671501874923706,
+ "step": 2710
+ },
+ {
+ "epoch": 37.65705548274356,
+ "grad_norm": 0.23279480636119843,
+ "learning_rate": 0.0006,
+ "loss": 3.6962859630584717,
+ "step": 2711
+ },
+ {
+ "epoch": 37.671035386631715,
+ "grad_norm": 0.23284408450126648,
+ "learning_rate": 0.0006,
+ "loss": 3.670231342315674,
+ "step": 2712
+ },
+ {
+ "epoch": 37.68501529051988,
+ "grad_norm": 0.21935738623142242,
+ "learning_rate": 0.0006,
+ "loss": 3.6908650398254395,
+ "step": 2713
+ },
+ {
+ "epoch": 37.69899519440804,
+ "grad_norm": 0.2072262167930603,
+ "learning_rate": 0.0006,
+ "loss": 3.7204506397247314,
+ "step": 2714
+ },
+ {
+ "epoch": 37.7129750982962,
+ "grad_norm": 0.22547709941864014,
+ "learning_rate": 0.0006,
+ "loss": 3.6740894317626953,
+ "step": 2715
+ },
+ {
+ "epoch": 37.72695500218436,
+ "grad_norm": 0.2460414469242096,
+ "learning_rate": 0.0006,
+ "loss": 3.6938390731811523,
+ "step": 2716
+ },
+ {
+ "epoch": 37.74093490607252,
+ "grad_norm": 0.24756456911563873,
+ "learning_rate": 0.0006,
+ "loss": 3.692173480987549,
+ "step": 2717
+ },
+ {
+ "epoch": 37.75491480996068,
+ "grad_norm": 0.20149244368076324,
+ "learning_rate": 0.0006,
+ "loss": 3.6677675247192383,
+ "step": 2718
+ },
+ {
+ "epoch": 37.768894713848844,
+ "grad_norm": 0.19834814965724945,
+ "learning_rate": 0.0006,
+ "loss": 3.6717336177825928,
+ "step": 2719
+ },
+ {
+ "epoch": 37.782874617737,
+ "grad_norm": 0.22929978370666504,
+ "learning_rate": 0.0006,
+ "loss": 3.6818275451660156,
+ "step": 2720
+ },
+ {
+ "epoch": 37.796854521625164,
+ "grad_norm": 0.23674434423446655,
+ "learning_rate": 0.0006,
+ "loss": 3.689767360687256,
+ "step": 2721
+ },
+ {
+ "epoch": 37.81083442551333,
+ "grad_norm": 0.22798952460289001,
+ "learning_rate": 0.0006,
+ "loss": 3.6928915977478027,
+ "step": 2722
+ },
+ {
+ "epoch": 37.824814329401484,
+ "grad_norm": 0.2270302027463913,
+ "learning_rate": 0.0006,
+ "loss": 3.6884233951568604,
+ "step": 2723
+ },
+ {
+ "epoch": 37.83879423328965,
+ "grad_norm": 0.23563820123672485,
+ "learning_rate": 0.0006,
+ "loss": 3.6962456703186035,
+ "step": 2724
+ },
+ {
+ "epoch": 37.8527741371778,
+ "grad_norm": 0.2240045815706253,
+ "learning_rate": 0.0006,
+ "loss": 3.6985082626342773,
+ "step": 2725
+ },
+ {
+ "epoch": 37.86675404106597,
+ "grad_norm": 0.21541155874729156,
+ "learning_rate": 0.0006,
+ "loss": 3.6960105895996094,
+ "step": 2726
+ },
+ {
+ "epoch": 37.88073394495413,
+ "grad_norm": 0.23257222771644592,
+ "learning_rate": 0.0006,
+ "loss": 3.667404890060425,
+ "step": 2727
+ },
+ {
+ "epoch": 37.89471384884229,
+ "grad_norm": 0.226792573928833,
+ "learning_rate": 0.0006,
+ "loss": 3.6549744606018066,
+ "step": 2728
+ },
+ {
+ "epoch": 37.90869375273045,
+ "grad_norm": 0.18993401527404785,
+ "learning_rate": 0.0006,
+ "loss": 3.6772334575653076,
+ "step": 2729
+ },
+ {
+ "epoch": 37.92267365661861,
+ "grad_norm": 0.20936095714569092,
+ "learning_rate": 0.0006,
+ "loss": 3.671116352081299,
+ "step": 2730
+ },
+ {
+ "epoch": 37.93665356050677,
+ "grad_norm": 0.2203974425792694,
+ "learning_rate": 0.0006,
+ "loss": 3.6549739837646484,
+ "step": 2731
+ },
+ {
+ "epoch": 37.95063346439493,
+ "grad_norm": 0.19504620134830475,
+ "learning_rate": 0.0006,
+ "loss": 3.6755447387695312,
+ "step": 2732
+ },
+ {
+ "epoch": 37.964613368283096,
+ "grad_norm": 0.2025984674692154,
+ "learning_rate": 0.0006,
+ "loss": 3.678955554962158,
+ "step": 2733
+ },
+ {
+ "epoch": 37.97859327217125,
+ "grad_norm": 0.21556107699871063,
+ "learning_rate": 0.0006,
+ "loss": 3.6680502891540527,
+ "step": 2734
+ },
+ {
+ "epoch": 37.992573176059416,
+ "grad_norm": 0.21011291444301605,
+ "learning_rate": 0.0006,
+ "loss": 3.672039031982422,
+ "step": 2735
+ },
+ {
+ "epoch": 38.0,
+ "grad_norm": 0.23710957169532776,
+ "learning_rate": 0.0006,
+ "loss": 3.6326794624328613,
+ "step": 2736
+ },
+ {
+ "epoch": 38.0,
+ "eval_loss": 3.990501880645752,
+ "eval_runtime": 43.8951,
+ "eval_samples_per_second": 55.633,
+ "eval_steps_per_second": 3.486,
+ "step": 2736
+ },
+ {
+ "epoch": 38.01397990388816,
+ "grad_norm": 0.20711326599121094,
+ "learning_rate": 0.0006,
+ "loss": 3.6364657878875732,
+ "step": 2737
+ },
+ {
+ "epoch": 38.02795980777632,
+ "grad_norm": 0.2250880002975464,
+ "learning_rate": 0.0006,
+ "loss": 3.637646436691284,
+ "step": 2738
+ },
+ {
+ "epoch": 38.04193971166448,
+ "grad_norm": 0.2448352724313736,
+ "learning_rate": 0.0006,
+ "loss": 3.63557767868042,
+ "step": 2739
+ },
+ {
+ "epoch": 38.05591961555265,
+ "grad_norm": 0.23031368851661682,
+ "learning_rate": 0.0006,
+ "loss": 3.627117395401001,
+ "step": 2740
+ },
+ {
+ "epoch": 38.0698995194408,
+ "grad_norm": 0.2045450210571289,
+ "learning_rate": 0.0006,
+ "loss": 3.6594958305358887,
+ "step": 2741
+ },
+ {
+ "epoch": 38.083879423328966,
+ "grad_norm": 0.21253496408462524,
+ "learning_rate": 0.0006,
+ "loss": 3.65494441986084,
+ "step": 2742
+ },
+ {
+ "epoch": 38.09785932721712,
+ "grad_norm": 0.20196112990379333,
+ "learning_rate": 0.0006,
+ "loss": 3.645289421081543,
+ "step": 2743
+ },
+ {
+ "epoch": 38.111839231105286,
+ "grad_norm": 0.20258229970932007,
+ "learning_rate": 0.0006,
+ "loss": 3.6698505878448486,
+ "step": 2744
+ },
+ {
+ "epoch": 38.12581913499345,
+ "grad_norm": 0.22182606160640717,
+ "learning_rate": 0.0006,
+ "loss": 3.6427698135375977,
+ "step": 2745
+ },
+ {
+ "epoch": 38.139799038881605,
+ "grad_norm": 0.21281519532203674,
+ "learning_rate": 0.0006,
+ "loss": 3.668337345123291,
+ "step": 2746
+ },
+ {
+ "epoch": 38.15377894276977,
+ "grad_norm": 0.21680216491222382,
+ "learning_rate": 0.0006,
+ "loss": 3.6362109184265137,
+ "step": 2747
+ },
+ {
+ "epoch": 38.16775884665793,
+ "grad_norm": 0.24396903812885284,
+ "learning_rate": 0.0006,
+ "loss": 3.660510540008545,
+ "step": 2748
+ },
+ {
+ "epoch": 38.18173875054609,
+ "grad_norm": 0.2546434700489044,
+ "learning_rate": 0.0006,
+ "loss": 3.6562418937683105,
+ "step": 2749
+ },
+ {
+ "epoch": 38.19571865443425,
+ "grad_norm": 0.22705447673797607,
+ "learning_rate": 0.0006,
+ "loss": 3.6801514625549316,
+ "step": 2750
+ },
+ {
+ "epoch": 38.20969855832241,
+ "grad_norm": 0.21516330540180206,
+ "learning_rate": 0.0006,
+ "loss": 3.6633429527282715,
+ "step": 2751
+ },
+ {
+ "epoch": 38.22367846221057,
+ "grad_norm": 0.20895853638648987,
+ "learning_rate": 0.0006,
+ "loss": 3.619896411895752,
+ "step": 2752
+ },
+ {
+ "epoch": 38.237658366098735,
+ "grad_norm": 0.21183325350284576,
+ "learning_rate": 0.0006,
+ "loss": 3.639491558074951,
+ "step": 2753
+ },
+ {
+ "epoch": 38.25163826998689,
+ "grad_norm": 0.21439522504806519,
+ "learning_rate": 0.0006,
+ "loss": 3.671931028366089,
+ "step": 2754
+ },
+ {
+ "epoch": 38.265618173875055,
+ "grad_norm": 0.2017785906791687,
+ "learning_rate": 0.0006,
+ "loss": 3.639533519744873,
+ "step": 2755
+ },
+ {
+ "epoch": 38.27959807776322,
+ "grad_norm": 0.20015068352222443,
+ "learning_rate": 0.0006,
+ "loss": 3.654262065887451,
+ "step": 2756
+ },
+ {
+ "epoch": 38.293577981651374,
+ "grad_norm": 0.21518948674201965,
+ "learning_rate": 0.0006,
+ "loss": 3.649919033050537,
+ "step": 2757
+ },
+ {
+ "epoch": 38.30755788553954,
+ "grad_norm": 0.21994580328464508,
+ "learning_rate": 0.0006,
+ "loss": 3.6756131649017334,
+ "step": 2758
+ },
+ {
+ "epoch": 38.3215377894277,
+ "grad_norm": 0.2053978443145752,
+ "learning_rate": 0.0006,
+ "loss": 3.651520252227783,
+ "step": 2759
+ },
+ {
+ "epoch": 38.33551769331586,
+ "grad_norm": 0.2066337615251541,
+ "learning_rate": 0.0006,
+ "loss": 3.6404507160186768,
+ "step": 2760
+ },
+ {
+ "epoch": 38.34949759720402,
+ "grad_norm": 0.20898301899433136,
+ "learning_rate": 0.0006,
+ "loss": 3.637200355529785,
+ "step": 2761
+ },
+ {
+ "epoch": 38.36347750109218,
+ "grad_norm": 0.19212259352207184,
+ "learning_rate": 0.0006,
+ "loss": 3.68394136428833,
+ "step": 2762
+ },
+ {
+ "epoch": 38.37745740498034,
+ "grad_norm": 0.2011883556842804,
+ "learning_rate": 0.0006,
+ "loss": 3.6494975090026855,
+ "step": 2763
+ },
+ {
+ "epoch": 38.391437308868504,
+ "grad_norm": 0.23072998225688934,
+ "learning_rate": 0.0006,
+ "loss": 3.6644320487976074,
+ "step": 2764
+ },
+ {
+ "epoch": 38.40541721275666,
+ "grad_norm": 0.2195347547531128,
+ "learning_rate": 0.0006,
+ "loss": 3.6666269302368164,
+ "step": 2765
+ },
+ {
+ "epoch": 38.419397116644824,
+ "grad_norm": 0.19820117950439453,
+ "learning_rate": 0.0006,
+ "loss": 3.690683364868164,
+ "step": 2766
+ },
+ {
+ "epoch": 38.43337702053299,
+ "grad_norm": 0.20381149649620056,
+ "learning_rate": 0.0006,
+ "loss": 3.6647756099700928,
+ "step": 2767
+ },
+ {
+ "epoch": 38.44735692442114,
+ "grad_norm": 0.19477297365665436,
+ "learning_rate": 0.0006,
+ "loss": 3.6419155597686768,
+ "step": 2768
+ },
+ {
+ "epoch": 38.46133682830931,
+ "grad_norm": 0.20118845999240875,
+ "learning_rate": 0.0006,
+ "loss": 3.678511142730713,
+ "step": 2769
+ },
+ {
+ "epoch": 38.47531673219746,
+ "grad_norm": 0.19538167119026184,
+ "learning_rate": 0.0006,
+ "loss": 3.632112503051758,
+ "step": 2770
+ },
+ {
+ "epoch": 38.489296636085626,
+ "grad_norm": 0.18136411905288696,
+ "learning_rate": 0.0006,
+ "loss": 3.6631078720092773,
+ "step": 2771
+ },
+ {
+ "epoch": 38.50327653997379,
+ "grad_norm": 0.1993526667356491,
+ "learning_rate": 0.0006,
+ "loss": 3.6800379753112793,
+ "step": 2772
+ },
+ {
+ "epoch": 38.517256443861946,
+ "grad_norm": 0.21409109234809875,
+ "learning_rate": 0.0006,
+ "loss": 3.6355738639831543,
+ "step": 2773
+ },
+ {
+ "epoch": 38.53123634775011,
+ "grad_norm": 0.20932911336421967,
+ "learning_rate": 0.0006,
+ "loss": 3.6639811992645264,
+ "step": 2774
+ },
+ {
+ "epoch": 38.54521625163827,
+ "grad_norm": 0.22266243398189545,
+ "learning_rate": 0.0006,
+ "loss": 3.6927733421325684,
+ "step": 2775
+ },
+ {
+ "epoch": 38.55919615552643,
+ "grad_norm": 0.22916539013385773,
+ "learning_rate": 0.0006,
+ "loss": 3.6381587982177734,
+ "step": 2776
+ },
+ {
+ "epoch": 38.57317605941459,
+ "grad_norm": 0.21507245302200317,
+ "learning_rate": 0.0006,
+ "loss": 3.6724753379821777,
+ "step": 2777
+ },
+ {
+ "epoch": 38.58715596330275,
+ "grad_norm": 0.21132487058639526,
+ "learning_rate": 0.0006,
+ "loss": 3.68450927734375,
+ "step": 2778
+ },
+ {
+ "epoch": 38.60113586719091,
+ "grad_norm": 0.2323923259973526,
+ "learning_rate": 0.0006,
+ "loss": 3.6917476654052734,
+ "step": 2779
+ },
+ {
+ "epoch": 38.615115771079076,
+ "grad_norm": 0.2862907648086548,
+ "learning_rate": 0.0006,
+ "loss": 3.6832518577575684,
+ "step": 2780
+ },
+ {
+ "epoch": 38.62909567496723,
+ "grad_norm": 0.28132742643356323,
+ "learning_rate": 0.0006,
+ "loss": 3.6619668006896973,
+ "step": 2781
+ },
+ {
+ "epoch": 38.643075578855395,
+ "grad_norm": 0.24933350086212158,
+ "learning_rate": 0.0006,
+ "loss": 3.6342711448669434,
+ "step": 2782
+ },
+ {
+ "epoch": 38.65705548274356,
+ "grad_norm": 0.23482646048069,
+ "learning_rate": 0.0006,
+ "loss": 3.667548656463623,
+ "step": 2783
+ },
+ {
+ "epoch": 38.671035386631715,
+ "grad_norm": 0.2529793083667755,
+ "learning_rate": 0.0006,
+ "loss": 3.6613709926605225,
+ "step": 2784
+ },
+ {
+ "epoch": 38.68501529051988,
+ "grad_norm": 0.2306097447872162,
+ "learning_rate": 0.0006,
+ "loss": 3.653153419494629,
+ "step": 2785
+ },
+ {
+ "epoch": 38.69899519440804,
+ "grad_norm": 0.21787869930267334,
+ "learning_rate": 0.0006,
+ "loss": 3.6991848945617676,
+ "step": 2786
+ },
+ {
+ "epoch": 38.7129750982962,
+ "grad_norm": 0.24818190932273865,
+ "learning_rate": 0.0006,
+ "loss": 3.664022445678711,
+ "step": 2787
+ },
+ {
+ "epoch": 38.72695500218436,
+ "grad_norm": 0.23205995559692383,
+ "learning_rate": 0.0006,
+ "loss": 3.656064987182617,
+ "step": 2788
+ },
+ {
+ "epoch": 38.74093490607252,
+ "grad_norm": 0.2268102467060089,
+ "learning_rate": 0.0006,
+ "loss": 3.678421974182129,
+ "step": 2789
+ },
+ {
+ "epoch": 38.75491480996068,
+ "grad_norm": 0.22549907863140106,
+ "learning_rate": 0.0006,
+ "loss": 3.6483302116394043,
+ "step": 2790
+ },
+ {
+ "epoch": 38.768894713848844,
+ "grad_norm": 0.2293119877576828,
+ "learning_rate": 0.0006,
+ "loss": 3.646825075149536,
+ "step": 2791
+ },
+ {
+ "epoch": 38.782874617737,
+ "grad_norm": 0.21879418194293976,
+ "learning_rate": 0.0006,
+ "loss": 3.682124614715576,
+ "step": 2792
+ },
+ {
+ "epoch": 38.796854521625164,
+ "grad_norm": 0.22012849152088165,
+ "learning_rate": 0.0006,
+ "loss": 3.6590089797973633,
+ "step": 2793
+ },
+ {
+ "epoch": 38.81083442551333,
+ "grad_norm": 0.2449142336845398,
+ "learning_rate": 0.0006,
+ "loss": 3.7053747177124023,
+ "step": 2794
+ },
+ {
+ "epoch": 38.824814329401484,
+ "grad_norm": 0.2677161395549774,
+ "learning_rate": 0.0006,
+ "loss": 3.666144371032715,
+ "step": 2795
+ },
+ {
+ "epoch": 38.83879423328965,
+ "grad_norm": 0.2654981315135956,
+ "learning_rate": 0.0006,
+ "loss": 3.637512683868408,
+ "step": 2796
+ },
+ {
+ "epoch": 38.8527741371778,
+ "grad_norm": 0.23169654607772827,
+ "learning_rate": 0.0006,
+ "loss": 3.6885948181152344,
+ "step": 2797
+ },
+ {
+ "epoch": 38.86675404106597,
+ "grad_norm": 0.22195108234882355,
+ "learning_rate": 0.0006,
+ "loss": 3.6597604751586914,
+ "step": 2798
+ },
+ {
+ "epoch": 38.88073394495413,
+ "grad_norm": 0.23703525960445404,
+ "learning_rate": 0.0006,
+ "loss": 3.6808712482452393,
+ "step": 2799
+ },
+ {
+ "epoch": 38.89471384884229,
+ "grad_norm": 0.24711088836193085,
+ "learning_rate": 0.0006,
+ "loss": 3.733792781829834,
+ "step": 2800
+ },
+ {
+ "epoch": 38.90869375273045,
+ "grad_norm": 0.216362863779068,
+ "learning_rate": 0.0006,
+ "loss": 3.670599937438965,
+ "step": 2801
+ },
+ {
+ "epoch": 38.92267365661861,
+ "grad_norm": 0.19483810663223267,
+ "learning_rate": 0.0006,
+ "loss": 3.6965198516845703,
+ "step": 2802
+ },
+ {
+ "epoch": 38.93665356050677,
+ "grad_norm": 0.1941208392381668,
+ "learning_rate": 0.0006,
+ "loss": 3.678022861480713,
+ "step": 2803
+ },
+ {
+ "epoch": 38.95063346439493,
+ "grad_norm": 0.1919465959072113,
+ "learning_rate": 0.0006,
+ "loss": 3.6763226985931396,
+ "step": 2804
+ },
+ {
+ "epoch": 38.964613368283096,
+ "grad_norm": 0.2003280073404312,
+ "learning_rate": 0.0006,
+ "loss": 3.670313835144043,
+ "step": 2805
+ },
+ {
+ "epoch": 38.97859327217125,
+ "grad_norm": 0.198478564620018,
+ "learning_rate": 0.0006,
+ "loss": 3.675569772720337,
+ "step": 2806
+ },
+ {
+ "epoch": 38.992573176059416,
+ "grad_norm": 0.23692303895950317,
+ "learning_rate": 0.0006,
+ "loss": 3.696561336517334,
+ "step": 2807
+ },
+ {
+ "epoch": 39.0,
+ "grad_norm": 0.3208145797252655,
+ "learning_rate": 0.0006,
+ "loss": 3.6791436672210693,
+ "step": 2808
+ },
+ {
+ "epoch": 39.0,
+ "eval_loss": 4.0079450607299805,
+ "eval_runtime": 43.8573,
+ "eval_samples_per_second": 55.681,
+ "eval_steps_per_second": 3.489,
+ "step": 2808
+ },
+ {
+ "epoch": 39.01397990388816,
+ "grad_norm": 0.28338733315467834,
+ "learning_rate": 0.0006,
+ "loss": 3.6277060508728027,
+ "step": 2809
+ },
+ {
+ "epoch": 39.02795980777632,
+ "grad_norm": 0.22057899832725525,
+ "learning_rate": 0.0006,
+ "loss": 3.6132822036743164,
+ "step": 2810
+ },
+ {
+ "epoch": 39.04193971166448,
+ "grad_norm": 0.20630282163619995,
+ "learning_rate": 0.0006,
+ "loss": 3.6143927574157715,
+ "step": 2811
+ },
+ {
+ "epoch": 39.05591961555265,
+ "grad_norm": 0.2178523689508438,
+ "learning_rate": 0.0006,
+ "loss": 3.6304664611816406,
+ "step": 2812
+ },
+ {
+ "epoch": 39.0698995194408,
+ "grad_norm": 0.19613824784755707,
+ "learning_rate": 0.0006,
+ "loss": 3.6137919425964355,
+ "step": 2813
+ },
+ {
+ "epoch": 39.083879423328966,
+ "grad_norm": 0.2047276794910431,
+ "learning_rate": 0.0006,
+ "loss": 3.6854846477508545,
+ "step": 2814
+ },
+ {
+ "epoch": 39.09785932721712,
+ "grad_norm": 0.20082715153694153,
+ "learning_rate": 0.0006,
+ "loss": 3.632091522216797,
+ "step": 2815
+ },
+ {
+ "epoch": 39.111839231105286,
+ "grad_norm": 0.21746563911437988,
+ "learning_rate": 0.0006,
+ "loss": 3.640477180480957,
+ "step": 2816
+ },
+ {
+ "epoch": 39.12581913499345,
+ "grad_norm": 0.2128882110118866,
+ "learning_rate": 0.0006,
+ "loss": 3.643984317779541,
+ "step": 2817
+ },
+ {
+ "epoch": 39.139799038881605,
+ "grad_norm": 0.2110479772090912,
+ "learning_rate": 0.0006,
+ "loss": 3.6328823566436768,
+ "step": 2818
+ },
+ {
+ "epoch": 39.15377894276977,
+ "grad_norm": 0.22304436564445496,
+ "learning_rate": 0.0006,
+ "loss": 3.6669845581054688,
+ "step": 2819
+ },
+ {
+ "epoch": 39.16775884665793,
+ "grad_norm": 0.22310666739940643,
+ "learning_rate": 0.0006,
+ "loss": 3.609743595123291,
+ "step": 2820
+ },
+ {
+ "epoch": 39.18173875054609,
+ "grad_norm": 0.21002045273780823,
+ "learning_rate": 0.0006,
+ "loss": 3.601900815963745,
+ "step": 2821
+ },
+ {
+ "epoch": 39.19571865443425,
+ "grad_norm": 0.20531952381134033,
+ "learning_rate": 0.0006,
+ "loss": 3.6405060291290283,
+ "step": 2822
+ },
+ {
+ "epoch": 39.20969855832241,
+ "grad_norm": 0.20646385848522186,
+ "learning_rate": 0.0006,
+ "loss": 3.669617176055908,
+ "step": 2823
+ },
+ {
+ "epoch": 39.22367846221057,
+ "grad_norm": 0.2553980350494385,
+ "learning_rate": 0.0006,
+ "loss": 3.642709255218506,
+ "step": 2824
+ },
+ {
+ "epoch": 39.237658366098735,
+ "grad_norm": 0.2753220498561859,
+ "learning_rate": 0.0006,
+ "loss": 3.668405055999756,
+ "step": 2825
+ },
+ {
+ "epoch": 39.25163826998689,
+ "grad_norm": 0.2425055354833603,
+ "learning_rate": 0.0006,
+ "loss": 3.659559726715088,
+ "step": 2826
+ },
+ {
+ "epoch": 39.265618173875055,
+ "grad_norm": 0.2199426293373108,
+ "learning_rate": 0.0006,
+ "loss": 3.6466197967529297,
+ "step": 2827
+ },
+ {
+ "epoch": 39.27959807776322,
+ "grad_norm": 0.221355602145195,
+ "learning_rate": 0.0006,
+ "loss": 3.639418125152588,
+ "step": 2828
+ },
+ {
+ "epoch": 39.293577981651374,
+ "grad_norm": 0.20777100324630737,
+ "learning_rate": 0.0006,
+ "loss": 3.68102765083313,
+ "step": 2829
+ },
+ {
+ "epoch": 39.30755788553954,
+ "grad_norm": 0.20557557046413422,
+ "learning_rate": 0.0006,
+ "loss": 3.663064956665039,
+ "step": 2830
+ },
+ {
+ "epoch": 39.3215377894277,
+ "grad_norm": 0.2385585904121399,
+ "learning_rate": 0.0006,
+ "loss": 3.6598849296569824,
+ "step": 2831
+ },
+ {
+ "epoch": 39.33551769331586,
+ "grad_norm": 0.25222650170326233,
+ "learning_rate": 0.0006,
+ "loss": 3.635199546813965,
+ "step": 2832
+ },
+ {
+ "epoch": 39.34949759720402,
+ "grad_norm": 0.22894687950611115,
+ "learning_rate": 0.0006,
+ "loss": 3.6100258827209473,
+ "step": 2833
+ },
+ {
+ "epoch": 39.36347750109218,
+ "grad_norm": 0.22945865988731384,
+ "learning_rate": 0.0006,
+ "loss": 3.63069748878479,
+ "step": 2834
+ },
+ {
+ "epoch": 39.37745740498034,
+ "grad_norm": 0.2466309368610382,
+ "learning_rate": 0.0006,
+ "loss": 3.6615123748779297,
+ "step": 2835
+ },
+ {
+ "epoch": 39.391437308868504,
+ "grad_norm": 0.23845571279525757,
+ "learning_rate": 0.0006,
+ "loss": 3.655045509338379,
+ "step": 2836
+ },
+ {
+ "epoch": 39.40541721275666,
+ "grad_norm": 0.20273560285568237,
+ "learning_rate": 0.0006,
+ "loss": 3.6497647762298584,
+ "step": 2837
+ },
+ {
+ "epoch": 39.419397116644824,
+ "grad_norm": 0.19820313155651093,
+ "learning_rate": 0.0006,
+ "loss": 3.6728386878967285,
+ "step": 2838
+ },
+ {
+ "epoch": 39.43337702053299,
+ "grad_norm": 0.21581435203552246,
+ "learning_rate": 0.0006,
+ "loss": 3.660247325897217,
+ "step": 2839
+ },
+ {
+ "epoch": 39.44735692442114,
+ "grad_norm": 0.20559731125831604,
+ "learning_rate": 0.0006,
+ "loss": 3.6244559288024902,
+ "step": 2840
+ },
+ {
+ "epoch": 39.46133682830931,
+ "grad_norm": 0.22041910886764526,
+ "learning_rate": 0.0006,
+ "loss": 3.6577587127685547,
+ "step": 2841
+ },
+ {
+ "epoch": 39.47531673219746,
+ "grad_norm": 0.1966651976108551,
+ "learning_rate": 0.0006,
+ "loss": 3.673975944519043,
+ "step": 2842
+ },
+ {
+ "epoch": 39.489296636085626,
+ "grad_norm": 0.19127163290977478,
+ "learning_rate": 0.0006,
+ "loss": 3.7022414207458496,
+ "step": 2843
+ },
+ {
+ "epoch": 39.50327653997379,
+ "grad_norm": 0.20260316133499146,
+ "learning_rate": 0.0006,
+ "loss": 3.6155128479003906,
+ "step": 2844
+ },
+ {
+ "epoch": 39.517256443861946,
+ "grad_norm": 0.2302546352148056,
+ "learning_rate": 0.0006,
+ "loss": 3.670212984085083,
+ "step": 2845
+ },
+ {
+ "epoch": 39.53123634775011,
+ "grad_norm": 0.2512998878955841,
+ "learning_rate": 0.0006,
+ "loss": 3.6257572174072266,
+ "step": 2846
+ },
+ {
+ "epoch": 39.54521625163827,
+ "grad_norm": 0.24780063331127167,
+ "learning_rate": 0.0006,
+ "loss": 3.6458964347839355,
+ "step": 2847
+ },
+ {
+ "epoch": 39.55919615552643,
+ "grad_norm": 0.21305061876773834,
+ "learning_rate": 0.0006,
+ "loss": 3.666834831237793,
+ "step": 2848
+ },
+ {
+ "epoch": 39.57317605941459,
+ "grad_norm": 0.20699542760849,
+ "learning_rate": 0.0006,
+ "loss": 3.660571813583374,
+ "step": 2849
+ },
+ {
+ "epoch": 39.58715596330275,
+ "grad_norm": 0.20799173414707184,
+ "learning_rate": 0.0006,
+ "loss": 3.649744987487793,
+ "step": 2850
+ },
+ {
+ "epoch": 39.60113586719091,
+ "grad_norm": 0.20118695497512817,
+ "learning_rate": 0.0006,
+ "loss": 3.663865089416504,
+ "step": 2851
+ },
+ {
+ "epoch": 39.615115771079076,
+ "grad_norm": 0.2019277960062027,
+ "learning_rate": 0.0006,
+ "loss": 3.6600584983825684,
+ "step": 2852
+ },
+ {
+ "epoch": 39.62909567496723,
+ "grad_norm": 0.2093067765235901,
+ "learning_rate": 0.0006,
+ "loss": 3.6926870346069336,
+ "step": 2853
+ },
+ {
+ "epoch": 39.643075578855395,
+ "grad_norm": 0.2280927449464798,
+ "learning_rate": 0.0006,
+ "loss": 3.677157402038574,
+ "step": 2854
+ },
+ {
+ "epoch": 39.65705548274356,
+ "grad_norm": 0.219201922416687,
+ "learning_rate": 0.0006,
+ "loss": 3.6763858795166016,
+ "step": 2855
+ },
+ {
+ "epoch": 39.671035386631715,
+ "grad_norm": 0.2132134735584259,
+ "learning_rate": 0.0006,
+ "loss": 3.6853187084198,
+ "step": 2856
+ },
+ {
+ "epoch": 39.68501529051988,
+ "grad_norm": 0.1979551613330841,
+ "learning_rate": 0.0006,
+ "loss": 3.633850574493408,
+ "step": 2857
+ },
+ {
+ "epoch": 39.69899519440804,
+ "grad_norm": 0.2181098908185959,
+ "learning_rate": 0.0006,
+ "loss": 3.671356201171875,
+ "step": 2858
+ },
+ {
+ "epoch": 39.7129750982962,
+ "grad_norm": 0.21820145845413208,
+ "learning_rate": 0.0006,
+ "loss": 3.640101432800293,
+ "step": 2859
+ },
+ {
+ "epoch": 39.72695500218436,
+ "grad_norm": 0.22734931111335754,
+ "learning_rate": 0.0006,
+ "loss": 3.6326088905334473,
+ "step": 2860
+ },
+ {
+ "epoch": 39.74093490607252,
+ "grad_norm": 0.2407236248254776,
+ "learning_rate": 0.0006,
+ "loss": 3.665416955947876,
+ "step": 2861
+ },
+ {
+ "epoch": 39.75491480996068,
+ "grad_norm": 0.2507246434688568,
+ "learning_rate": 0.0006,
+ "loss": 3.6996266841888428,
+ "step": 2862
+ },
+ {
+ "epoch": 39.768894713848844,
+ "grad_norm": 0.2273668497800827,
+ "learning_rate": 0.0006,
+ "loss": 3.6786417961120605,
+ "step": 2863
+ },
+ {
+ "epoch": 39.782874617737,
+ "grad_norm": 0.20584821701049805,
+ "learning_rate": 0.0006,
+ "loss": 3.6539974212646484,
+ "step": 2864
+ },
+ {
+ "epoch": 39.796854521625164,
+ "grad_norm": 0.2327643632888794,
+ "learning_rate": 0.0006,
+ "loss": 3.681267738342285,
+ "step": 2865
+ },
+ {
+ "epoch": 39.81083442551333,
+ "grad_norm": 0.24243171513080597,
+ "learning_rate": 0.0006,
+ "loss": 3.6814589500427246,
+ "step": 2866
+ },
+ {
+ "epoch": 39.824814329401484,
+ "grad_norm": 0.21462969481945038,
+ "learning_rate": 0.0006,
+ "loss": 3.681321620941162,
+ "step": 2867
+ },
+ {
+ "epoch": 39.83879423328965,
+ "grad_norm": 0.20973211526870728,
+ "learning_rate": 0.0006,
+ "loss": 3.636986017227173,
+ "step": 2868
+ },
+ {
+ "epoch": 39.8527741371778,
+ "grad_norm": 0.20357508957386017,
+ "learning_rate": 0.0006,
+ "loss": 3.6664552688598633,
+ "step": 2869
+ },
+ {
+ "epoch": 39.86675404106597,
+ "grad_norm": 0.20389088988304138,
+ "learning_rate": 0.0006,
+ "loss": 3.6685709953308105,
+ "step": 2870
+ },
+ {
+ "epoch": 39.88073394495413,
+ "grad_norm": 0.21024158596992493,
+ "learning_rate": 0.0006,
+ "loss": 3.650658130645752,
+ "step": 2871
+ },
+ {
+ "epoch": 39.89471384884229,
+ "grad_norm": 0.19477778673171997,
+ "learning_rate": 0.0006,
+ "loss": 3.664834976196289,
+ "step": 2872
+ },
+ {
+ "epoch": 39.90869375273045,
+ "grad_norm": 0.22345365583896637,
+ "learning_rate": 0.0006,
+ "loss": 3.6652634143829346,
+ "step": 2873
+ },
+ {
+ "epoch": 39.92267365661861,
+ "grad_norm": 0.206041157245636,
+ "learning_rate": 0.0006,
+ "loss": 3.6649513244628906,
+ "step": 2874
+ },
+ {
+ "epoch": 39.93665356050677,
+ "grad_norm": 0.18524570763111115,
+ "learning_rate": 0.0006,
+ "loss": 3.665579080581665,
+ "step": 2875
+ },
+ {
+ "epoch": 39.95063346439493,
+ "grad_norm": 0.17730890214443207,
+ "learning_rate": 0.0006,
+ "loss": 3.6372880935668945,
+ "step": 2876
+ },
+ {
+ "epoch": 39.964613368283096,
+ "grad_norm": 0.213678777217865,
+ "learning_rate": 0.0006,
+ "loss": 3.681305408477783,
+ "step": 2877
+ },
+ {
+ "epoch": 39.97859327217125,
+ "grad_norm": 0.2595686614513397,
+ "learning_rate": 0.0006,
+ "loss": 3.6660351753234863,
+ "step": 2878
+ },
+ {
+ "epoch": 39.992573176059416,
+ "grad_norm": 0.22678600251674652,
+ "learning_rate": 0.0006,
+ "loss": 3.681619644165039,
+ "step": 2879
+ },
+ {
+ "epoch": 40.0,
+ "grad_norm": 0.2294030636548996,
+ "learning_rate": 0.0006,
+ "loss": 3.654366970062256,
+ "step": 2880
+ },
+ {
+ "epoch": 40.0,
+ "eval_loss": 3.9810431003570557,
+ "eval_runtime": 43.832,
+ "eval_samples_per_second": 55.713,
+ "eval_steps_per_second": 3.491,
+ "step": 2880
+ },
+ {
+ "epoch": 40.01397990388816,
+ "grad_norm": 0.220590278506279,
+ "learning_rate": 0.0006,
+ "loss": 3.6346259117126465,
+ "step": 2881
+ },
+ {
+ "epoch": 40.02795980777632,
+ "grad_norm": 0.2568257749080658,
+ "learning_rate": 0.0006,
+ "loss": 3.64436674118042,
+ "step": 2882
+ },
+ {
+ "epoch": 40.04193971166448,
+ "grad_norm": 0.2869258224964142,
+ "learning_rate": 0.0006,
+ "loss": 3.613316059112549,
+ "step": 2883
+ },
+ {
+ "epoch": 40.05591961555265,
+ "grad_norm": 0.3005172908306122,
+ "learning_rate": 0.0006,
+ "loss": 3.607339859008789,
+ "step": 2884
+ },
+ {
+ "epoch": 40.0698995194408,
+ "grad_norm": 0.28642305731773376,
+ "learning_rate": 0.0006,
+ "loss": 3.65151047706604,
+ "step": 2885
+ },
+ {
+ "epoch": 40.083879423328966,
+ "grad_norm": 0.24176034331321716,
+ "learning_rate": 0.0006,
+ "loss": 3.633742332458496,
+ "step": 2886
+ },
+ {
+ "epoch": 40.09785932721712,
+ "grad_norm": 0.2139386385679245,
+ "learning_rate": 0.0006,
+ "loss": 3.614245653152466,
+ "step": 2887
+ },
+ {
+ "epoch": 40.111839231105286,
+ "grad_norm": 0.28025752305984497,
+ "learning_rate": 0.0006,
+ "loss": 3.6415746212005615,
+ "step": 2888
+ },
+ {
+ "epoch": 40.12581913499345,
+ "grad_norm": 0.28534311056137085,
+ "learning_rate": 0.0006,
+ "loss": 3.6302027702331543,
+ "step": 2889
+ },
+ {
+ "epoch": 40.139799038881605,
+ "grad_norm": 0.26842808723449707,
+ "learning_rate": 0.0006,
+ "loss": 3.657480239868164,
+ "step": 2890
+ },
+ {
+ "epoch": 40.15377894276977,
+ "grad_norm": 0.25235965847969055,
+ "learning_rate": 0.0006,
+ "loss": 3.6843931674957275,
+ "step": 2891
+ },
+ {
+ "epoch": 40.16775884665793,
+ "grad_norm": 0.22192128002643585,
+ "learning_rate": 0.0006,
+ "loss": 3.6374592781066895,
+ "step": 2892
+ },
+ {
+ "epoch": 40.18173875054609,
+ "grad_norm": 0.21524523198604584,
+ "learning_rate": 0.0006,
+ "loss": 3.6052589416503906,
+ "step": 2893
+ },
+ {
+ "epoch": 40.19571865443425,
+ "grad_norm": 0.21011514961719513,
+ "learning_rate": 0.0006,
+ "loss": 3.62197208404541,
+ "step": 2894
+ },
+ {
+ "epoch": 40.20969855832241,
+ "grad_norm": 0.23187001049518585,
+ "learning_rate": 0.0006,
+ "loss": 3.6505377292633057,
+ "step": 2895
+ },
+ {
+ "epoch": 40.22367846221057,
+ "grad_norm": 0.21962887048721313,
+ "learning_rate": 0.0006,
+ "loss": 3.594991683959961,
+ "step": 2896
+ },
+ {
+ "epoch": 40.237658366098735,
+ "grad_norm": 0.23299361765384674,
+ "learning_rate": 0.0006,
+ "loss": 3.6370339393615723,
+ "step": 2897
+ },
+ {
+ "epoch": 40.25163826998689,
+ "grad_norm": 0.22504881024360657,
+ "learning_rate": 0.0006,
+ "loss": 3.6173815727233887,
+ "step": 2898
+ },
+ {
+ "epoch": 40.265618173875055,
+ "grad_norm": 0.21678344905376434,
+ "learning_rate": 0.0006,
+ "loss": 3.6231422424316406,
+ "step": 2899
+ },
+ {
+ "epoch": 40.27959807776322,
+ "grad_norm": 0.2184615284204483,
+ "learning_rate": 0.0006,
+ "loss": 3.6552987098693848,
+ "step": 2900
+ },
+ {
+ "epoch": 40.293577981651374,
+ "grad_norm": 0.2145485281944275,
+ "learning_rate": 0.0006,
+ "loss": 3.628025531768799,
+ "step": 2901
+ },
+ {
+ "epoch": 40.30755788553954,
+ "grad_norm": 0.21119336783885956,
+ "learning_rate": 0.0006,
+ "loss": 3.6511590480804443,
+ "step": 2902
+ },
+ {
+ "epoch": 40.3215377894277,
+ "grad_norm": 0.2158869504928589,
+ "learning_rate": 0.0006,
+ "loss": 3.6302051544189453,
+ "step": 2903
+ },
+ {
+ "epoch": 40.33551769331586,
+ "grad_norm": 0.22736455500125885,
+ "learning_rate": 0.0006,
+ "loss": 3.6678733825683594,
+ "step": 2904
+ },
+ {
+ "epoch": 40.34949759720402,
+ "grad_norm": 0.22723783552646637,
+ "learning_rate": 0.0006,
+ "loss": 3.632068634033203,
+ "step": 2905
+ },
+ {
+ "epoch": 40.36347750109218,
+ "grad_norm": 0.20606189966201782,
+ "learning_rate": 0.0006,
+ "loss": 3.6534624099731445,
+ "step": 2906
+ },
+ {
+ "epoch": 40.37745740498034,
+ "grad_norm": 0.21033786237239838,
+ "learning_rate": 0.0006,
+ "loss": 3.6194064617156982,
+ "step": 2907
+ },
+ {
+ "epoch": 40.391437308868504,
+ "grad_norm": 0.2175762951374054,
+ "learning_rate": 0.0006,
+ "loss": 3.637385368347168,
+ "step": 2908
+ },
+ {
+ "epoch": 40.40541721275666,
+ "grad_norm": 0.21063381433486938,
+ "learning_rate": 0.0006,
+ "loss": 3.656857967376709,
+ "step": 2909
+ },
+ {
+ "epoch": 40.419397116644824,
+ "grad_norm": 0.19982226192951202,
+ "learning_rate": 0.0006,
+ "loss": 3.655738353729248,
+ "step": 2910
+ },
+ {
+ "epoch": 40.43337702053299,
+ "grad_norm": 0.20608870685100555,
+ "learning_rate": 0.0006,
+ "loss": 3.6521377563476562,
+ "step": 2911
+ },
+ {
+ "epoch": 40.44735692442114,
+ "grad_norm": 0.19817334413528442,
+ "learning_rate": 0.0006,
+ "loss": 3.61527681350708,
+ "step": 2912
+ },
+ {
+ "epoch": 40.46133682830931,
+ "grad_norm": 0.20407769083976746,
+ "learning_rate": 0.0006,
+ "loss": 3.6668765544891357,
+ "step": 2913
+ },
+ {
+ "epoch": 40.47531673219746,
+ "grad_norm": 0.19874799251556396,
+ "learning_rate": 0.0006,
+ "loss": 3.6748533248901367,
+ "step": 2914
+ },
+ {
+ "epoch": 40.489296636085626,
+ "grad_norm": 0.1979510486125946,
+ "learning_rate": 0.0006,
+ "loss": 3.6141977310180664,
+ "step": 2915
+ },
+ {
+ "epoch": 40.50327653997379,
+ "grad_norm": 0.19811518490314484,
+ "learning_rate": 0.0006,
+ "loss": 3.6391215324401855,
+ "step": 2916
+ },
+ {
+ "epoch": 40.517256443861946,
+ "grad_norm": 0.20208898186683655,
+ "learning_rate": 0.0006,
+ "loss": 3.664179801940918,
+ "step": 2917
+ },
+ {
+ "epoch": 40.53123634775011,
+ "grad_norm": 0.22063760459423065,
+ "learning_rate": 0.0006,
+ "loss": 3.645388126373291,
+ "step": 2918
+ },
+ {
+ "epoch": 40.54521625163827,
+ "grad_norm": 0.23420891165733337,
+ "learning_rate": 0.0006,
+ "loss": 3.6424708366394043,
+ "step": 2919
+ },
+ {
+ "epoch": 40.55919615552643,
+ "grad_norm": 0.2263612151145935,
+ "learning_rate": 0.0006,
+ "loss": 3.6649224758148193,
+ "step": 2920
+ },
+ {
+ "epoch": 40.57317605941459,
+ "grad_norm": 0.22745433449745178,
+ "learning_rate": 0.0006,
+ "loss": 3.631586790084839,
+ "step": 2921
+ },
+ {
+ "epoch": 40.58715596330275,
+ "grad_norm": 0.22413238883018494,
+ "learning_rate": 0.0006,
+ "loss": 3.6666674613952637,
+ "step": 2922
+ },
+ {
+ "epoch": 40.60113586719091,
+ "grad_norm": 0.2178265005350113,
+ "learning_rate": 0.0006,
+ "loss": 3.6002111434936523,
+ "step": 2923
+ },
+ {
+ "epoch": 40.615115771079076,
+ "grad_norm": 0.21822521090507507,
+ "learning_rate": 0.0006,
+ "loss": 3.6538329124450684,
+ "step": 2924
+ },
+ {
+ "epoch": 40.62909567496723,
+ "grad_norm": 0.21728558838367462,
+ "learning_rate": 0.0006,
+ "loss": 3.651254653930664,
+ "step": 2925
+ },
+ {
+ "epoch": 40.643075578855395,
+ "grad_norm": 0.22377707064151764,
+ "learning_rate": 0.0006,
+ "loss": 3.6505789756774902,
+ "step": 2926
+ },
+ {
+ "epoch": 40.65705548274356,
+ "grad_norm": 0.2035706788301468,
+ "learning_rate": 0.0006,
+ "loss": 3.6471967697143555,
+ "step": 2927
+ },
+ {
+ "epoch": 40.671035386631715,
+ "grad_norm": 0.2011154741048813,
+ "learning_rate": 0.0006,
+ "loss": 3.6582741737365723,
+ "step": 2928
+ },
+ {
+ "epoch": 40.68501529051988,
+ "grad_norm": 0.23812712728977203,
+ "learning_rate": 0.0006,
+ "loss": 3.6388421058654785,
+ "step": 2929
+ },
+ {
+ "epoch": 40.69899519440804,
+ "grad_norm": 0.2117796689271927,
+ "learning_rate": 0.0006,
+ "loss": 3.688337802886963,
+ "step": 2930
+ },
+ {
+ "epoch": 40.7129750982962,
+ "grad_norm": 0.18440942466259003,
+ "learning_rate": 0.0006,
+ "loss": 3.6409997940063477,
+ "step": 2931
+ },
+ {
+ "epoch": 40.72695500218436,
+ "grad_norm": 0.19005917012691498,
+ "learning_rate": 0.0006,
+ "loss": 3.6760218143463135,
+ "step": 2932
+ },
+ {
+ "epoch": 40.74093490607252,
+ "grad_norm": 0.19982726871967316,
+ "learning_rate": 0.0006,
+ "loss": 3.6375021934509277,
+ "step": 2933
+ },
+ {
+ "epoch": 40.75491480996068,
+ "grad_norm": 0.19240257143974304,
+ "learning_rate": 0.0006,
+ "loss": 3.636807918548584,
+ "step": 2934
+ },
+ {
+ "epoch": 40.768894713848844,
+ "grad_norm": 0.20563434064388275,
+ "learning_rate": 0.0006,
+ "loss": 3.6667532920837402,
+ "step": 2935
+ },
+ {
+ "epoch": 40.782874617737,
+ "grad_norm": 0.26531776785850525,
+ "learning_rate": 0.0006,
+ "loss": 3.6332945823669434,
+ "step": 2936
+ },
+ {
+ "epoch": 40.796854521625164,
+ "grad_norm": 0.2766861021518707,
+ "learning_rate": 0.0006,
+ "loss": 3.6645212173461914,
+ "step": 2937
+ },
+ {
+ "epoch": 40.81083442551333,
+ "grad_norm": 0.235750213265419,
+ "learning_rate": 0.0006,
+ "loss": 3.67067813873291,
+ "step": 2938
+ },
+ {
+ "epoch": 40.824814329401484,
+ "grad_norm": 0.20778773725032806,
+ "learning_rate": 0.0006,
+ "loss": 3.6565768718719482,
+ "step": 2939
+ },
+ {
+ "epoch": 40.83879423328965,
+ "grad_norm": 0.187322199344635,
+ "learning_rate": 0.0006,
+ "loss": 3.620129346847534,
+ "step": 2940
+ },
+ {
+ "epoch": 40.8527741371778,
+ "grad_norm": 0.20576219260692596,
+ "learning_rate": 0.0006,
+ "loss": 3.6700220108032227,
+ "step": 2941
+ },
+ {
+ "epoch": 40.86675404106597,
+ "grad_norm": 0.2197345495223999,
+ "learning_rate": 0.0006,
+ "loss": 3.709311008453369,
+ "step": 2942
+ },
+ {
+ "epoch": 40.88073394495413,
+ "grad_norm": 0.20205345749855042,
+ "learning_rate": 0.0006,
+ "loss": 3.6646361351013184,
+ "step": 2943
+ },
+ {
+ "epoch": 40.89471384884229,
+ "grad_norm": 0.20026250183582306,
+ "learning_rate": 0.0006,
+ "loss": 3.6639604568481445,
+ "step": 2944
+ },
+ {
+ "epoch": 40.90869375273045,
+ "grad_norm": 0.224214106798172,
+ "learning_rate": 0.0006,
+ "loss": 3.6669654846191406,
+ "step": 2945
+ },
+ {
+ "epoch": 40.92267365661861,
+ "grad_norm": 0.2155972272157669,
+ "learning_rate": 0.0006,
+ "loss": 3.6494603157043457,
+ "step": 2946
+ },
+ {
+ "epoch": 40.93665356050677,
+ "grad_norm": 0.23038871586322784,
+ "learning_rate": 0.0006,
+ "loss": 3.6368541717529297,
+ "step": 2947
+ },
+ {
+ "epoch": 40.95063346439493,
+ "grad_norm": 0.2001815289258957,
+ "learning_rate": 0.0006,
+ "loss": 3.711174249649048,
+ "step": 2948
+ },
+ {
+ "epoch": 40.964613368283096,
+ "grad_norm": 0.20428860187530518,
+ "learning_rate": 0.0006,
+ "loss": 3.6342315673828125,
+ "step": 2949
+ },
+ {
+ "epoch": 40.97859327217125,
+ "grad_norm": 0.20724134147167206,
+ "learning_rate": 0.0006,
+ "loss": 3.679375171661377,
+ "step": 2950
+ },
+ {
+ "epoch": 40.992573176059416,
+ "grad_norm": 0.20723849534988403,
+ "learning_rate": 0.0006,
+ "loss": 3.6477675437927246,
+ "step": 2951
+ },
+ {
+ "epoch": 41.0,
+ "grad_norm": 0.23891447484493256,
+ "learning_rate": 0.0006,
+ "loss": 3.632950782775879,
+ "step": 2952
+ },
+ {
+ "epoch": 41.0,
+ "eval_loss": 3.9871256351470947,
+ "eval_runtime": 43.8367,
+ "eval_samples_per_second": 55.707,
+ "eval_steps_per_second": 3.49,
+ "step": 2952
+ },
+ {
+ "epoch": 41.01397990388816,
+ "grad_norm": 0.2258434295654297,
+ "learning_rate": 0.0006,
+ "loss": 3.631239414215088,
+ "step": 2953
+ },
+ {
+ "epoch": 41.02795980777632,
+ "grad_norm": 0.24932795763015747,
+ "learning_rate": 0.0006,
+ "loss": 3.601083517074585,
+ "step": 2954
+ },
+ {
+ "epoch": 41.04193971166448,
+ "grad_norm": 0.2688388228416443,
+ "learning_rate": 0.0006,
+ "loss": 3.655724048614502,
+ "step": 2955
+ },
+ {
+ "epoch": 41.05591961555265,
+ "grad_norm": 0.23880694806575775,
+ "learning_rate": 0.0006,
+ "loss": 3.617628812789917,
+ "step": 2956
+ },
+ {
+ "epoch": 41.0698995194408,
+ "grad_norm": 0.23784616589546204,
+ "learning_rate": 0.0006,
+ "loss": 3.6309127807617188,
+ "step": 2957
+ },
+ {
+ "epoch": 41.083879423328966,
+ "grad_norm": 0.22609511017799377,
+ "learning_rate": 0.0006,
+ "loss": 3.6138553619384766,
+ "step": 2958
+ },
+ {
+ "epoch": 41.09785932721712,
+ "grad_norm": 0.22936329245567322,
+ "learning_rate": 0.0006,
+ "loss": 3.6620094776153564,
+ "step": 2959
+ },
+ {
+ "epoch": 41.111839231105286,
+ "grad_norm": 0.23354190587997437,
+ "learning_rate": 0.0006,
+ "loss": 3.59959077835083,
+ "step": 2960
+ },
+ {
+ "epoch": 41.12581913499345,
+ "grad_norm": 0.2496265172958374,
+ "learning_rate": 0.0006,
+ "loss": 3.588359832763672,
+ "step": 2961
+ },
+ {
+ "epoch": 41.139799038881605,
+ "grad_norm": 0.23618635535240173,
+ "learning_rate": 0.0006,
+ "loss": 3.6341018676757812,
+ "step": 2962
+ },
+ {
+ "epoch": 41.15377894276977,
+ "grad_norm": 0.23724640905857086,
+ "learning_rate": 0.0006,
+ "loss": 3.6170616149902344,
+ "step": 2963
+ },
+ {
+ "epoch": 41.16775884665793,
+ "grad_norm": 0.20944789052009583,
+ "learning_rate": 0.0006,
+ "loss": 3.6158995628356934,
+ "step": 2964
+ },
+ {
+ "epoch": 41.18173875054609,
+ "grad_norm": 0.2089492678642273,
+ "learning_rate": 0.0006,
+ "loss": 3.586538314819336,
+ "step": 2965
+ },
+ {
+ "epoch": 41.19571865443425,
+ "grad_norm": 0.2370915710926056,
+ "learning_rate": 0.0006,
+ "loss": 3.599236011505127,
+ "step": 2966
+ },
+ {
+ "epoch": 41.20969855832241,
+ "grad_norm": 0.25749558210372925,
+ "learning_rate": 0.0006,
+ "loss": 3.631399154663086,
+ "step": 2967
+ },
+ {
+ "epoch": 41.22367846221057,
+ "grad_norm": 0.24754776060581207,
+ "learning_rate": 0.0006,
+ "loss": 3.6503920555114746,
+ "step": 2968
+ },
+ {
+ "epoch": 41.237658366098735,
+ "grad_norm": 0.22060903906822205,
+ "learning_rate": 0.0006,
+ "loss": 3.671673536300659,
+ "step": 2969
+ },
+ {
+ "epoch": 41.25163826998689,
+ "grad_norm": 0.19416594505310059,
+ "learning_rate": 0.0006,
+ "loss": 3.6158413887023926,
+ "step": 2970
+ },
+ {
+ "epoch": 41.265618173875055,
+ "grad_norm": 0.22596411406993866,
+ "learning_rate": 0.0006,
+ "loss": 3.64003849029541,
+ "step": 2971
+ },
+ {
+ "epoch": 41.27959807776322,
+ "grad_norm": 0.26785415410995483,
+ "learning_rate": 0.0006,
+ "loss": 3.642327308654785,
+ "step": 2972
+ },
+ {
+ "epoch": 41.293577981651374,
+ "grad_norm": 0.2988710403442383,
+ "learning_rate": 0.0006,
+ "loss": 3.6018929481506348,
+ "step": 2973
+ },
+ {
+ "epoch": 41.30755788553954,
+ "grad_norm": 0.2428133338689804,
+ "learning_rate": 0.0006,
+ "loss": 3.645270824432373,
+ "step": 2974
+ },
+ {
+ "epoch": 41.3215377894277,
+ "grad_norm": 0.20330320298671722,
+ "learning_rate": 0.0006,
+ "loss": 3.625495433807373,
+ "step": 2975
+ },
+ {
+ "epoch": 41.33551769331586,
+ "grad_norm": 0.2267787605524063,
+ "learning_rate": 0.0006,
+ "loss": 3.6469204425811768,
+ "step": 2976
+ },
+ {
+ "epoch": 41.34949759720402,
+ "grad_norm": 0.20702822506427765,
+ "learning_rate": 0.0006,
+ "loss": 3.644191265106201,
+ "step": 2977
+ },
+ {
+ "epoch": 41.36347750109218,
+ "grad_norm": 0.19693221151828766,
+ "learning_rate": 0.0006,
+ "loss": 3.591794967651367,
+ "step": 2978
+ },
+ {
+ "epoch": 41.37745740498034,
+ "grad_norm": 0.21193185448646545,
+ "learning_rate": 0.0006,
+ "loss": 3.6283936500549316,
+ "step": 2979
+ },
+ {
+ "epoch": 41.391437308868504,
+ "grad_norm": 0.20953163504600525,
+ "learning_rate": 0.0006,
+ "loss": 3.617565155029297,
+ "step": 2980
+ },
+ {
+ "epoch": 41.40541721275666,
+ "grad_norm": 0.21839819848537445,
+ "learning_rate": 0.0006,
+ "loss": 3.621209144592285,
+ "step": 2981
+ },
+ {
+ "epoch": 41.419397116644824,
+ "grad_norm": 0.2152671068906784,
+ "learning_rate": 0.0006,
+ "loss": 3.643197536468506,
+ "step": 2982
+ },
+ {
+ "epoch": 41.43337702053299,
+ "grad_norm": 0.2507486641407013,
+ "learning_rate": 0.0006,
+ "loss": 3.657499313354492,
+ "step": 2983
+ },
+ {
+ "epoch": 41.44735692442114,
+ "grad_norm": 0.24695388972759247,
+ "learning_rate": 0.0006,
+ "loss": 3.62170672416687,
+ "step": 2984
+ },
+ {
+ "epoch": 41.46133682830931,
+ "grad_norm": 0.22652822732925415,
+ "learning_rate": 0.0006,
+ "loss": 3.64322566986084,
+ "step": 2985
+ },
+ {
+ "epoch": 41.47531673219746,
+ "grad_norm": 0.2575881779193878,
+ "learning_rate": 0.0006,
+ "loss": 3.659621477127075,
+ "step": 2986
+ },
+ {
+ "epoch": 41.489296636085626,
+ "grad_norm": 0.24162672460079193,
+ "learning_rate": 0.0006,
+ "loss": 3.6527223587036133,
+ "step": 2987
+ },
+ {
+ "epoch": 41.50327653997379,
+ "grad_norm": 0.20930497348308563,
+ "learning_rate": 0.0006,
+ "loss": 3.6412787437438965,
+ "step": 2988
+ },
+ {
+ "epoch": 41.517256443861946,
+ "grad_norm": 0.20480819046497345,
+ "learning_rate": 0.0006,
+ "loss": 3.614767074584961,
+ "step": 2989
+ },
+ {
+ "epoch": 41.53123634775011,
+ "grad_norm": 0.20015820860862732,
+ "learning_rate": 0.0006,
+ "loss": 3.6512045860290527,
+ "step": 2990
+ },
+ {
+ "epoch": 41.54521625163827,
+ "grad_norm": 0.20220743119716644,
+ "learning_rate": 0.0006,
+ "loss": 3.6732325553894043,
+ "step": 2991
+ },
+ {
+ "epoch": 41.55919615552643,
+ "grad_norm": 0.20505326986312866,
+ "learning_rate": 0.0006,
+ "loss": 3.6374664306640625,
+ "step": 2992
+ },
+ {
+ "epoch": 41.57317605941459,
+ "grad_norm": 0.19423344731330872,
+ "learning_rate": 0.0006,
+ "loss": 3.6564126014709473,
+ "step": 2993
+ },
+ {
+ "epoch": 41.58715596330275,
+ "grad_norm": 0.19284583628177643,
+ "learning_rate": 0.0006,
+ "loss": 3.6460509300231934,
+ "step": 2994
+ },
+ {
+ "epoch": 41.60113586719091,
+ "grad_norm": 0.18488959968090057,
+ "learning_rate": 0.0006,
+ "loss": 3.632859468460083,
+ "step": 2995
+ },
+ {
+ "epoch": 41.615115771079076,
+ "grad_norm": 0.18816296756267548,
+ "learning_rate": 0.0006,
+ "loss": 3.5958361625671387,
+ "step": 2996
+ },
+ {
+ "epoch": 41.62909567496723,
+ "grad_norm": 0.18987809121608734,
+ "learning_rate": 0.0006,
+ "loss": 3.6330695152282715,
+ "step": 2997
+ },
+ {
+ "epoch": 41.643075578855395,
+ "grad_norm": 0.18999919295310974,
+ "learning_rate": 0.0006,
+ "loss": 3.6486730575561523,
+ "step": 2998
+ },
+ {
+ "epoch": 41.65705548274356,
+ "grad_norm": 0.20190183818340302,
+ "learning_rate": 0.0006,
+ "loss": 3.6564230918884277,
+ "step": 2999
+ },
+ {
+ "epoch": 41.671035386631715,
+ "grad_norm": 0.20331363379955292,
+ "learning_rate": 0.0006,
+ "loss": 3.6789698600769043,
+ "step": 3000
+ },
+ {
+ "epoch": 41.68501529051988,
+ "grad_norm": 0.21599505841732025,
+ "learning_rate": 0.0006,
+ "loss": 3.6544511318206787,
+ "step": 3001
+ },
+ {
+ "epoch": 41.69899519440804,
+ "grad_norm": 0.21123184263706207,
+ "learning_rate": 0.0006,
+ "loss": 3.6506948471069336,
+ "step": 3002
+ },
+ {
+ "epoch": 41.7129750982962,
+ "grad_norm": 0.21337002515792847,
+ "learning_rate": 0.0006,
+ "loss": 3.676854372024536,
+ "step": 3003
+ },
+ {
+ "epoch": 41.72695500218436,
+ "grad_norm": 0.22567597031593323,
+ "learning_rate": 0.0006,
+ "loss": 3.6467485427856445,
+ "step": 3004
+ },
+ {
+ "epoch": 41.74093490607252,
+ "grad_norm": 0.22923491895198822,
+ "learning_rate": 0.0006,
+ "loss": 3.663224697113037,
+ "step": 3005
+ },
+ {
+ "epoch": 41.75491480996068,
+ "grad_norm": 0.21511489152908325,
+ "learning_rate": 0.0006,
+ "loss": 3.6290054321289062,
+ "step": 3006
+ },
+ {
+ "epoch": 41.768894713848844,
+ "grad_norm": 0.23855915665626526,
+ "learning_rate": 0.0006,
+ "loss": 3.631225109100342,
+ "step": 3007
+ },
+ {
+ "epoch": 41.782874617737,
+ "grad_norm": 0.22771067917346954,
+ "learning_rate": 0.0006,
+ "loss": 3.652575731277466,
+ "step": 3008
+ },
+ {
+ "epoch": 41.796854521625164,
+ "grad_norm": 0.2006237953901291,
+ "learning_rate": 0.0006,
+ "loss": 3.6883468627929688,
+ "step": 3009
+ },
+ {
+ "epoch": 41.81083442551333,
+ "grad_norm": 0.21182459592819214,
+ "learning_rate": 0.0006,
+ "loss": 3.6443567276000977,
+ "step": 3010
+ },
+ {
+ "epoch": 41.824814329401484,
+ "grad_norm": 0.21083690226078033,
+ "learning_rate": 0.0006,
+ "loss": 3.66660475730896,
+ "step": 3011
+ },
+ {
+ "epoch": 41.83879423328965,
+ "grad_norm": 0.21232296526432037,
+ "learning_rate": 0.0006,
+ "loss": 3.6436524391174316,
+ "step": 3012
+ },
+ {
+ "epoch": 41.8527741371778,
+ "grad_norm": 0.2089361697435379,
+ "learning_rate": 0.0006,
+ "loss": 3.648113250732422,
+ "step": 3013
+ },
+ {
+ "epoch": 41.86675404106597,
+ "grad_norm": 0.21517033874988556,
+ "learning_rate": 0.0006,
+ "loss": 3.6382269859313965,
+ "step": 3014
+ },
+ {
+ "epoch": 41.88073394495413,
+ "grad_norm": 0.1930733323097229,
+ "learning_rate": 0.0006,
+ "loss": 3.639441967010498,
+ "step": 3015
+ },
+ {
+ "epoch": 41.89471384884229,
+ "grad_norm": 0.18282832205295563,
+ "learning_rate": 0.0006,
+ "loss": 3.652860164642334,
+ "step": 3016
+ },
+ {
+ "epoch": 41.90869375273045,
+ "grad_norm": 0.18649716675281525,
+ "learning_rate": 0.0006,
+ "loss": 3.6335558891296387,
+ "step": 3017
+ },
+ {
+ "epoch": 41.92267365661861,
+ "grad_norm": 0.18873754143714905,
+ "learning_rate": 0.0006,
+ "loss": 3.6743149757385254,
+ "step": 3018
+ },
+ {
+ "epoch": 41.93665356050677,
+ "grad_norm": 0.1937907189130783,
+ "learning_rate": 0.0006,
+ "loss": 3.6749300956726074,
+ "step": 3019
+ },
+ {
+ "epoch": 41.95063346439493,
+ "grad_norm": 0.20620854198932648,
+ "learning_rate": 0.0006,
+ "loss": 3.6591262817382812,
+ "step": 3020
+ },
+ {
+ "epoch": 41.964613368283096,
+ "grad_norm": 0.18541009724140167,
+ "learning_rate": 0.0006,
+ "loss": 3.647010326385498,
+ "step": 3021
+ },
+ {
+ "epoch": 41.97859327217125,
+ "grad_norm": 0.19224928319454193,
+ "learning_rate": 0.0006,
+ "loss": 3.629920482635498,
+ "step": 3022
+ },
+ {
+ "epoch": 41.992573176059416,
+ "grad_norm": 0.21286419034004211,
+ "learning_rate": 0.0006,
+ "loss": 3.6516964435577393,
+ "step": 3023
+ },
+ {
+ "epoch": 42.0,
+ "grad_norm": 0.24787360429763794,
+ "learning_rate": 0.0006,
+ "loss": 3.6378865242004395,
+ "step": 3024
+ },
+ {
+ "epoch": 42.0,
+ "eval_loss": 3.9910318851470947,
+ "eval_runtime": 43.7914,
+ "eval_samples_per_second": 55.764,
+ "eval_steps_per_second": 3.494,
+ "step": 3024
+ },
+ {
+ "epoch": 42.01397990388816,
+ "grad_norm": 0.21036255359649658,
+ "learning_rate": 0.0006,
+ "loss": 3.6604344844818115,
+ "step": 3025
+ },
+ {
+ "epoch": 42.02795980777632,
+ "grad_norm": 0.22240597009658813,
+ "learning_rate": 0.0006,
+ "loss": 3.6160645484924316,
+ "step": 3026
+ },
+ {
+ "epoch": 42.04193971166448,
+ "grad_norm": 0.2487850785255432,
+ "learning_rate": 0.0006,
+ "loss": 3.6293773651123047,
+ "step": 3027
+ },
+ {
+ "epoch": 42.05591961555265,
+ "grad_norm": 0.27058133482933044,
+ "learning_rate": 0.0006,
+ "loss": 3.5827436447143555,
+ "step": 3028
+ },
+ {
+ "epoch": 42.0698995194408,
+ "grad_norm": 0.25001782178878784,
+ "learning_rate": 0.0006,
+ "loss": 3.5833029747009277,
+ "step": 3029
+ },
+ {
+ "epoch": 42.083879423328966,
+ "grad_norm": 0.23811939358711243,
+ "learning_rate": 0.0006,
+ "loss": 3.605585813522339,
+ "step": 3030
+ },
+ {
+ "epoch": 42.09785932721712,
+ "grad_norm": 0.23279601335525513,
+ "learning_rate": 0.0006,
+ "loss": 3.607205867767334,
+ "step": 3031
+ },
+ {
+ "epoch": 42.111839231105286,
+ "grad_norm": 0.24410508573055267,
+ "learning_rate": 0.0006,
+ "loss": 3.621175765991211,
+ "step": 3032
+ },
+ {
+ "epoch": 42.12581913499345,
+ "grad_norm": 0.24782028794288635,
+ "learning_rate": 0.0006,
+ "loss": 3.6236867904663086,
+ "step": 3033
+ },
+ {
+ "epoch": 42.139799038881605,
+ "grad_norm": 0.2301972657442093,
+ "learning_rate": 0.0006,
+ "loss": 3.603853464126587,
+ "step": 3034
+ },
+ {
+ "epoch": 42.15377894276977,
+ "grad_norm": 0.21988637745380402,
+ "learning_rate": 0.0006,
+ "loss": 3.600142002105713,
+ "step": 3035
+ },
+ {
+ "epoch": 42.16775884665793,
+ "grad_norm": 0.22623786330223083,
+ "learning_rate": 0.0006,
+ "loss": 3.61971116065979,
+ "step": 3036
+ },
+ {
+ "epoch": 42.18173875054609,
+ "grad_norm": 0.21844688057899475,
+ "learning_rate": 0.0006,
+ "loss": 3.61320161819458,
+ "step": 3037
+ },
+ {
+ "epoch": 42.19571865443425,
+ "grad_norm": 0.20444536209106445,
+ "learning_rate": 0.0006,
+ "loss": 3.6179633140563965,
+ "step": 3038
+ },
+ {
+ "epoch": 42.20969855832241,
+ "grad_norm": 0.22862036526203156,
+ "learning_rate": 0.0006,
+ "loss": 3.605433940887451,
+ "step": 3039
+ },
+ {
+ "epoch": 42.22367846221057,
+ "grad_norm": 0.2906605005264282,
+ "learning_rate": 0.0006,
+ "loss": 3.6279449462890625,
+ "step": 3040
+ },
+ {
+ "epoch": 42.237658366098735,
+ "grad_norm": 0.29074418544769287,
+ "learning_rate": 0.0006,
+ "loss": 3.5959763526916504,
+ "step": 3041
+ },
+ {
+ "epoch": 42.25163826998689,
+ "grad_norm": 0.1994444876909256,
+ "learning_rate": 0.0006,
+ "loss": 3.5858588218688965,
+ "step": 3042
+ },
+ {
+ "epoch": 42.265618173875055,
+ "grad_norm": 0.20793452858924866,
+ "learning_rate": 0.0006,
+ "loss": 3.604630470275879,
+ "step": 3043
+ },
+ {
+ "epoch": 42.27959807776322,
+ "grad_norm": 0.2119535505771637,
+ "learning_rate": 0.0006,
+ "loss": 3.6287126541137695,
+ "step": 3044
+ },
+ {
+ "epoch": 42.293577981651374,
+ "grad_norm": 0.21092535555362701,
+ "learning_rate": 0.0006,
+ "loss": 3.646294593811035,
+ "step": 3045
+ },
+ {
+ "epoch": 42.30755788553954,
+ "grad_norm": 0.21474479138851166,
+ "learning_rate": 0.0006,
+ "loss": 3.6364355087280273,
+ "step": 3046
+ },
+ {
+ "epoch": 42.3215377894277,
+ "grad_norm": 0.21100781857967377,
+ "learning_rate": 0.0006,
+ "loss": 3.622528553009033,
+ "step": 3047
+ },
+ {
+ "epoch": 42.33551769331586,
+ "grad_norm": 0.20739853382110596,
+ "learning_rate": 0.0006,
+ "loss": 3.6261959075927734,
+ "step": 3048
+ },
+ {
+ "epoch": 42.34949759720402,
+ "grad_norm": 0.22264131903648376,
+ "learning_rate": 0.0006,
+ "loss": 3.6195173263549805,
+ "step": 3049
+ },
+ {
+ "epoch": 42.36347750109218,
+ "grad_norm": 0.23696285486221313,
+ "learning_rate": 0.0006,
+ "loss": 3.631103515625,
+ "step": 3050
+ },
+ {
+ "epoch": 42.37745740498034,
+ "grad_norm": 0.2124902606010437,
+ "learning_rate": 0.0006,
+ "loss": 3.6490437984466553,
+ "step": 3051
+ },
+ {
+ "epoch": 42.391437308868504,
+ "grad_norm": 0.18831083178520203,
+ "learning_rate": 0.0006,
+ "loss": 3.628459930419922,
+ "step": 3052
+ },
+ {
+ "epoch": 42.40541721275666,
+ "grad_norm": 0.20390060544013977,
+ "learning_rate": 0.0006,
+ "loss": 3.6348538398742676,
+ "step": 3053
+ },
+ {
+ "epoch": 42.419397116644824,
+ "grad_norm": 0.2205851823091507,
+ "learning_rate": 0.0006,
+ "loss": 3.6286797523498535,
+ "step": 3054
+ },
+ {
+ "epoch": 42.43337702053299,
+ "grad_norm": 0.21518434584140778,
+ "learning_rate": 0.0006,
+ "loss": 3.5918965339660645,
+ "step": 3055
+ },
+ {
+ "epoch": 42.44735692442114,
+ "grad_norm": 0.2342296987771988,
+ "learning_rate": 0.0006,
+ "loss": 3.6364407539367676,
+ "step": 3056
+ },
+ {
+ "epoch": 42.46133682830931,
+ "grad_norm": 0.2304094135761261,
+ "learning_rate": 0.0006,
+ "loss": 3.6561477184295654,
+ "step": 3057
+ },
+ {
+ "epoch": 42.47531673219746,
+ "grad_norm": 0.20882441103458405,
+ "learning_rate": 0.0006,
+ "loss": 3.611250638961792,
+ "step": 3058
+ },
+ {
+ "epoch": 42.489296636085626,
+ "grad_norm": 0.24346643686294556,
+ "learning_rate": 0.0006,
+ "loss": 3.580082416534424,
+ "step": 3059
+ },
+ {
+ "epoch": 42.50327653997379,
+ "grad_norm": 0.260711133480072,
+ "learning_rate": 0.0006,
+ "loss": 3.6179792881011963,
+ "step": 3060
+ },
+ {
+ "epoch": 42.517256443861946,
+ "grad_norm": 0.21223759651184082,
+ "learning_rate": 0.0006,
+ "loss": 3.6153154373168945,
+ "step": 3061
+ },
+ {
+ "epoch": 42.53123634775011,
+ "grad_norm": 0.21429137885570526,
+ "learning_rate": 0.0006,
+ "loss": 3.6003379821777344,
+ "step": 3062
+ },
+ {
+ "epoch": 42.54521625163827,
+ "grad_norm": 0.23659434914588928,
+ "learning_rate": 0.0006,
+ "loss": 3.6540589332580566,
+ "step": 3063
+ },
+ {
+ "epoch": 42.55919615552643,
+ "grad_norm": 0.280344158411026,
+ "learning_rate": 0.0006,
+ "loss": 3.6406192779541016,
+ "step": 3064
+ },
+ {
+ "epoch": 42.57317605941459,
+ "grad_norm": 0.2903953194618225,
+ "learning_rate": 0.0006,
+ "loss": 3.643479824066162,
+ "step": 3065
+ },
+ {
+ "epoch": 42.58715596330275,
+ "grad_norm": 0.24958311021327972,
+ "learning_rate": 0.0006,
+ "loss": 3.6320221424102783,
+ "step": 3066
+ },
+ {
+ "epoch": 42.60113586719091,
+ "grad_norm": 0.22525225579738617,
+ "learning_rate": 0.0006,
+ "loss": 3.641676425933838,
+ "step": 3067
+ },
+ {
+ "epoch": 42.615115771079076,
+ "grad_norm": 0.23025161027908325,
+ "learning_rate": 0.0006,
+ "loss": 3.6465210914611816,
+ "step": 3068
+ },
+ {
+ "epoch": 42.62909567496723,
+ "grad_norm": 0.21947328746318817,
+ "learning_rate": 0.0006,
+ "loss": 3.667877435684204,
+ "step": 3069
+ },
+ {
+ "epoch": 42.643075578855395,
+ "grad_norm": 0.22809366881847382,
+ "learning_rate": 0.0006,
+ "loss": 3.663166046142578,
+ "step": 3070
+ },
+ {
+ "epoch": 42.65705548274356,
+ "grad_norm": 0.21938708424568176,
+ "learning_rate": 0.0006,
+ "loss": 3.619001865386963,
+ "step": 3071
+ },
+ {
+ "epoch": 42.671035386631715,
+ "grad_norm": 0.231620192527771,
+ "learning_rate": 0.0006,
+ "loss": 3.652332305908203,
+ "step": 3072
+ },
+ {
+ "epoch": 42.68501529051988,
+ "grad_norm": 0.23683936893939972,
+ "learning_rate": 0.0006,
+ "loss": 3.6633410453796387,
+ "step": 3073
+ },
+ {
+ "epoch": 42.69899519440804,
+ "grad_norm": 0.23752044141292572,
+ "learning_rate": 0.0006,
+ "loss": 3.646064281463623,
+ "step": 3074
+ },
+ {
+ "epoch": 42.7129750982962,
+ "grad_norm": 0.23041971027851105,
+ "learning_rate": 0.0006,
+ "loss": 3.6431851387023926,
+ "step": 3075
+ },
+ {
+ "epoch": 42.72695500218436,
+ "grad_norm": 0.220438614487648,
+ "learning_rate": 0.0006,
+ "loss": 3.6499950885772705,
+ "step": 3076
+ },
+ {
+ "epoch": 42.74093490607252,
+ "grad_norm": 0.24297107756137848,
+ "learning_rate": 0.0006,
+ "loss": 3.6655125617980957,
+ "step": 3077
+ },
+ {
+ "epoch": 42.75491480996068,
+ "grad_norm": 0.21835893392562866,
+ "learning_rate": 0.0006,
+ "loss": 3.61672043800354,
+ "step": 3078
+ },
+ {
+ "epoch": 42.768894713848844,
+ "grad_norm": 0.22490793466567993,
+ "learning_rate": 0.0006,
+ "loss": 3.652825355529785,
+ "step": 3079
+ },
+ {
+ "epoch": 42.782874617737,
+ "grad_norm": 0.2246086746454239,
+ "learning_rate": 0.0006,
+ "loss": 3.6290056705474854,
+ "step": 3080
+ },
+ {
+ "epoch": 42.796854521625164,
+ "grad_norm": 0.21527042984962463,
+ "learning_rate": 0.0006,
+ "loss": 3.6587281227111816,
+ "step": 3081
+ },
+ {
+ "epoch": 42.81083442551333,
+ "grad_norm": 0.19586899876594543,
+ "learning_rate": 0.0006,
+ "loss": 3.639626979827881,
+ "step": 3082
+ },
+ {
+ "epoch": 42.824814329401484,
+ "grad_norm": 0.20881155133247375,
+ "learning_rate": 0.0006,
+ "loss": 3.6305861473083496,
+ "step": 3083
+ },
+ {
+ "epoch": 42.83879423328965,
+ "grad_norm": 0.20094981789588928,
+ "learning_rate": 0.0006,
+ "loss": 3.609614849090576,
+ "step": 3084
+ },
+ {
+ "epoch": 42.8527741371778,
+ "grad_norm": 0.21786150336265564,
+ "learning_rate": 0.0006,
+ "loss": 3.6423556804656982,
+ "step": 3085
+ },
+ {
+ "epoch": 42.86675404106597,
+ "grad_norm": 0.24493595957756042,
+ "learning_rate": 0.0006,
+ "loss": 3.631321668624878,
+ "step": 3086
+ },
+ {
+ "epoch": 42.88073394495413,
+ "grad_norm": 0.2437327355146408,
+ "learning_rate": 0.0006,
+ "loss": 3.6624178886413574,
+ "step": 3087
+ },
+ {
+ "epoch": 42.89471384884229,
+ "grad_norm": 0.21020543575286865,
+ "learning_rate": 0.0006,
+ "loss": 3.6567513942718506,
+ "step": 3088
+ },
+ {
+ "epoch": 42.90869375273045,
+ "grad_norm": 0.18977083265781403,
+ "learning_rate": 0.0006,
+ "loss": 3.6268601417541504,
+ "step": 3089
+ },
+ {
+ "epoch": 42.92267365661861,
+ "grad_norm": 0.2211192399263382,
+ "learning_rate": 0.0006,
+ "loss": 3.6690402030944824,
+ "step": 3090
+ },
+ {
+ "epoch": 42.93665356050677,
+ "grad_norm": 0.2695990204811096,
+ "learning_rate": 0.0006,
+ "loss": 3.667701244354248,
+ "step": 3091
+ },
+ {
+ "epoch": 42.95063346439493,
+ "grad_norm": 0.25910887122154236,
+ "learning_rate": 0.0006,
+ "loss": 3.627504587173462,
+ "step": 3092
+ },
+ {
+ "epoch": 42.964613368283096,
+ "grad_norm": 0.2466248720884323,
+ "learning_rate": 0.0006,
+ "loss": 3.6462182998657227,
+ "step": 3093
+ },
+ {
+ "epoch": 42.97859327217125,
+ "grad_norm": 0.22997038066387177,
+ "learning_rate": 0.0006,
+ "loss": 3.647430896759033,
+ "step": 3094
+ },
+ {
+ "epoch": 42.992573176059416,
+ "grad_norm": 0.1989113837480545,
+ "learning_rate": 0.0006,
+ "loss": 3.6502084732055664,
+ "step": 3095
+ },
+ {
+ "epoch": 43.0,
+ "grad_norm": 0.22976496815681458,
+ "learning_rate": 0.0006,
+ "loss": 3.6963884830474854,
+ "step": 3096
+ },
+ {
+ "epoch": 43.0,
+ "eval_loss": 3.9656779766082764,
+ "eval_runtime": 43.9281,
+ "eval_samples_per_second": 55.591,
+ "eval_steps_per_second": 3.483,
+ "step": 3096
+ },
+ {
+ "epoch": 43.01397990388816,
+ "grad_norm": 0.2862325608730316,
+ "learning_rate": 0.0006,
+ "loss": 3.581247568130493,
+ "step": 3097
+ },
+ {
+ "epoch": 43.02795980777632,
+ "grad_norm": 0.3867015540599823,
+ "learning_rate": 0.0006,
+ "loss": 3.611076593399048,
+ "step": 3098
+ },
+ {
+ "epoch": 43.04193971166448,
+ "grad_norm": 0.4139448404312134,
+ "learning_rate": 0.0006,
+ "loss": 3.625164031982422,
+ "step": 3099
+ },
+ {
+ "epoch": 43.05591961555265,
+ "grad_norm": 0.292407363653183,
+ "learning_rate": 0.0006,
+ "loss": 3.615546703338623,
+ "step": 3100
+ },
+ {
+ "epoch": 43.0698995194408,
+ "grad_norm": 0.24272124469280243,
+ "learning_rate": 0.0006,
+ "loss": 3.5965943336486816,
+ "step": 3101
+ },
+ {
+ "epoch": 43.083879423328966,
+ "grad_norm": 0.2761254608631134,
+ "learning_rate": 0.0006,
+ "loss": 3.605706214904785,
+ "step": 3102
+ },
+ {
+ "epoch": 43.09785932721712,
+ "grad_norm": 0.25232183933258057,
+ "learning_rate": 0.0006,
+ "loss": 3.6252012252807617,
+ "step": 3103
+ },
+ {
+ "epoch": 43.111839231105286,
+ "grad_norm": 0.248970165848732,
+ "learning_rate": 0.0006,
+ "loss": 3.6028337478637695,
+ "step": 3104
+ },
+ {
+ "epoch": 43.12581913499345,
+ "grad_norm": 0.22088921070098877,
+ "learning_rate": 0.0006,
+ "loss": 3.591614007949829,
+ "step": 3105
+ },
+ {
+ "epoch": 43.139799038881605,
+ "grad_norm": 0.21528655290603638,
+ "learning_rate": 0.0006,
+ "loss": 3.6237306594848633,
+ "step": 3106
+ },
+ {
+ "epoch": 43.15377894276977,
+ "grad_norm": 0.22799135744571686,
+ "learning_rate": 0.0006,
+ "loss": 3.5968847274780273,
+ "step": 3107
+ },
+ {
+ "epoch": 43.16775884665793,
+ "grad_norm": 0.23102127015590668,
+ "learning_rate": 0.0006,
+ "loss": 3.6046414375305176,
+ "step": 3108
+ },
+ {
+ "epoch": 43.18173875054609,
+ "grad_norm": 0.22876501083374023,
+ "learning_rate": 0.0006,
+ "loss": 3.635608196258545,
+ "step": 3109
+ },
+ {
+ "epoch": 43.19571865443425,
+ "grad_norm": 0.24920420348644257,
+ "learning_rate": 0.0006,
+ "loss": 3.628662109375,
+ "step": 3110
+ },
+ {
+ "epoch": 43.20969855832241,
+ "grad_norm": 0.2527749538421631,
+ "learning_rate": 0.0006,
+ "loss": 3.6109046936035156,
+ "step": 3111
+ },
+ {
+ "epoch": 43.22367846221057,
+ "grad_norm": 0.22529229521751404,
+ "learning_rate": 0.0006,
+ "loss": 3.6536030769348145,
+ "step": 3112
+ },
+ {
+ "epoch": 43.237658366098735,
+ "grad_norm": 0.20031821727752686,
+ "learning_rate": 0.0006,
+ "loss": 3.6328792572021484,
+ "step": 3113
+ },
+ {
+ "epoch": 43.25163826998689,
+ "grad_norm": 0.21075189113616943,
+ "learning_rate": 0.0006,
+ "loss": 3.6200530529022217,
+ "step": 3114
+ },
+ {
+ "epoch": 43.265618173875055,
+ "grad_norm": 0.21164856851100922,
+ "learning_rate": 0.0006,
+ "loss": 3.6276001930236816,
+ "step": 3115
+ },
+ {
+ "epoch": 43.27959807776322,
+ "grad_norm": 0.19306758046150208,
+ "learning_rate": 0.0006,
+ "loss": 3.608675956726074,
+ "step": 3116
+ },
+ {
+ "epoch": 43.293577981651374,
+ "grad_norm": 0.20288796722888947,
+ "learning_rate": 0.0006,
+ "loss": 3.6057004928588867,
+ "step": 3117
+ },
+ {
+ "epoch": 43.30755788553954,
+ "grad_norm": 0.1901484876871109,
+ "learning_rate": 0.0006,
+ "loss": 3.6191725730895996,
+ "step": 3118
+ },
+ {
+ "epoch": 43.3215377894277,
+ "grad_norm": 0.19438181817531586,
+ "learning_rate": 0.0006,
+ "loss": 3.5814337730407715,
+ "step": 3119
+ },
+ {
+ "epoch": 43.33551769331586,
+ "grad_norm": 0.19924484193325043,
+ "learning_rate": 0.0006,
+ "loss": 3.6168713569641113,
+ "step": 3120
+ },
+ {
+ "epoch": 43.34949759720402,
+ "grad_norm": 0.20757409930229187,
+ "learning_rate": 0.0006,
+ "loss": 3.6281509399414062,
+ "step": 3121
+ },
+ {
+ "epoch": 43.36347750109218,
+ "grad_norm": 0.22500184178352356,
+ "learning_rate": 0.0006,
+ "loss": 3.635101795196533,
+ "step": 3122
+ },
+ {
+ "epoch": 43.37745740498034,
+ "grad_norm": 0.22061555087566376,
+ "learning_rate": 0.0006,
+ "loss": 3.630622386932373,
+ "step": 3123
+ },
+ {
+ "epoch": 43.391437308868504,
+ "grad_norm": 0.2094152420759201,
+ "learning_rate": 0.0006,
+ "loss": 3.581803798675537,
+ "step": 3124
+ },
+ {
+ "epoch": 43.40541721275666,
+ "grad_norm": 0.19607678055763245,
+ "learning_rate": 0.0006,
+ "loss": 3.6149864196777344,
+ "step": 3125
+ },
+ {
+ "epoch": 43.419397116644824,
+ "grad_norm": 0.18985028564929962,
+ "learning_rate": 0.0006,
+ "loss": 3.6338040828704834,
+ "step": 3126
+ },
+ {
+ "epoch": 43.43337702053299,
+ "grad_norm": 0.20490778982639313,
+ "learning_rate": 0.0006,
+ "loss": 3.63275146484375,
+ "step": 3127
+ },
+ {
+ "epoch": 43.44735692442114,
+ "grad_norm": 0.24385297298431396,
+ "learning_rate": 0.0006,
+ "loss": 3.6412134170532227,
+ "step": 3128
+ },
+ {
+ "epoch": 43.46133682830931,
+ "grad_norm": 0.243601992726326,
+ "learning_rate": 0.0006,
+ "loss": 3.594238758087158,
+ "step": 3129
+ },
+ {
+ "epoch": 43.47531673219746,
+ "grad_norm": 0.21314913034439087,
+ "learning_rate": 0.0006,
+ "loss": 3.5962629318237305,
+ "step": 3130
+ },
+ {
+ "epoch": 43.489296636085626,
+ "grad_norm": 0.20499329268932343,
+ "learning_rate": 0.0006,
+ "loss": 3.61600923538208,
+ "step": 3131
+ },
+ {
+ "epoch": 43.50327653997379,
+ "grad_norm": 0.20199540257453918,
+ "learning_rate": 0.0006,
+ "loss": 3.638469934463501,
+ "step": 3132
+ },
+ {
+ "epoch": 43.517256443861946,
+ "grad_norm": 0.19932983815670013,
+ "learning_rate": 0.0006,
+ "loss": 3.619145393371582,
+ "step": 3133
+ },
+ {
+ "epoch": 43.53123634775011,
+ "grad_norm": 0.20401954650878906,
+ "learning_rate": 0.0006,
+ "loss": 3.643700122833252,
+ "step": 3134
+ },
+ {
+ "epoch": 43.54521625163827,
+ "grad_norm": 0.20784904062747955,
+ "learning_rate": 0.0006,
+ "loss": 3.619272232055664,
+ "step": 3135
+ },
+ {
+ "epoch": 43.55919615552643,
+ "grad_norm": 0.21003122627735138,
+ "learning_rate": 0.0006,
+ "loss": 3.629542827606201,
+ "step": 3136
+ },
+ {
+ "epoch": 43.57317605941459,
+ "grad_norm": 0.2220298945903778,
+ "learning_rate": 0.0006,
+ "loss": 3.655543804168701,
+ "step": 3137
+ },
+ {
+ "epoch": 43.58715596330275,
+ "grad_norm": 0.21159163117408752,
+ "learning_rate": 0.0006,
+ "loss": 3.6092495918273926,
+ "step": 3138
+ },
+ {
+ "epoch": 43.60113586719091,
+ "grad_norm": 0.19462746381759644,
+ "learning_rate": 0.0006,
+ "loss": 3.6447129249572754,
+ "step": 3139
+ },
+ {
+ "epoch": 43.615115771079076,
+ "grad_norm": 0.20523829758167267,
+ "learning_rate": 0.0006,
+ "loss": 3.6292669773101807,
+ "step": 3140
+ },
+ {
+ "epoch": 43.62909567496723,
+ "grad_norm": 0.2172321230173111,
+ "learning_rate": 0.0006,
+ "loss": 3.6144580841064453,
+ "step": 3141
+ },
+ {
+ "epoch": 43.643075578855395,
+ "grad_norm": 0.21751564741134644,
+ "learning_rate": 0.0006,
+ "loss": 3.6381068229675293,
+ "step": 3142
+ },
+ {
+ "epoch": 43.65705548274356,
+ "grad_norm": 0.1914236694574356,
+ "learning_rate": 0.0006,
+ "loss": 3.6392078399658203,
+ "step": 3143
+ },
+ {
+ "epoch": 43.671035386631715,
+ "grad_norm": 0.19792547821998596,
+ "learning_rate": 0.0006,
+ "loss": 3.6394457817077637,
+ "step": 3144
+ },
+ {
+ "epoch": 43.68501529051988,
+ "grad_norm": 0.2106214165687561,
+ "learning_rate": 0.0006,
+ "loss": 3.626147747039795,
+ "step": 3145
+ },
+ {
+ "epoch": 43.69899519440804,
+ "grad_norm": 0.21802955865859985,
+ "learning_rate": 0.0006,
+ "loss": 3.63372802734375,
+ "step": 3146
+ },
+ {
+ "epoch": 43.7129750982962,
+ "grad_norm": 0.21498727798461914,
+ "learning_rate": 0.0006,
+ "loss": 3.6193063259124756,
+ "step": 3147
+ },
+ {
+ "epoch": 43.72695500218436,
+ "grad_norm": 0.2176690250635147,
+ "learning_rate": 0.0006,
+ "loss": 3.6431519985198975,
+ "step": 3148
+ },
+ {
+ "epoch": 43.74093490607252,
+ "grad_norm": 0.26883506774902344,
+ "learning_rate": 0.0006,
+ "loss": 3.6216721534729004,
+ "step": 3149
+ },
+ {
+ "epoch": 43.75491480996068,
+ "grad_norm": 0.23485299944877625,
+ "learning_rate": 0.0006,
+ "loss": 3.6361191272735596,
+ "step": 3150
+ },
+ {
+ "epoch": 43.768894713848844,
+ "grad_norm": 0.20496341586112976,
+ "learning_rate": 0.0006,
+ "loss": 3.6258792877197266,
+ "step": 3151
+ },
+ {
+ "epoch": 43.782874617737,
+ "grad_norm": 0.21792510151863098,
+ "learning_rate": 0.0006,
+ "loss": 3.6522839069366455,
+ "step": 3152
+ },
+ {
+ "epoch": 43.796854521625164,
+ "grad_norm": 0.2589452564716339,
+ "learning_rate": 0.0006,
+ "loss": 3.651235580444336,
+ "step": 3153
+ },
+ {
+ "epoch": 43.81083442551333,
+ "grad_norm": 0.24883611500263214,
+ "learning_rate": 0.0006,
+ "loss": 3.6382546424865723,
+ "step": 3154
+ },
+ {
+ "epoch": 43.824814329401484,
+ "grad_norm": 0.22466720640659332,
+ "learning_rate": 0.0006,
+ "loss": 3.6232261657714844,
+ "step": 3155
+ },
+ {
+ "epoch": 43.83879423328965,
+ "grad_norm": 0.19477292895317078,
+ "learning_rate": 0.0006,
+ "loss": 3.6350135803222656,
+ "step": 3156
+ },
+ {
+ "epoch": 43.8527741371778,
+ "grad_norm": 0.20302540063858032,
+ "learning_rate": 0.0006,
+ "loss": 3.638143539428711,
+ "step": 3157
+ },
+ {
+ "epoch": 43.86675404106597,
+ "grad_norm": 0.2112276554107666,
+ "learning_rate": 0.0006,
+ "loss": 3.6415610313415527,
+ "step": 3158
+ },
+ {
+ "epoch": 43.88073394495413,
+ "grad_norm": 0.20544779300689697,
+ "learning_rate": 0.0006,
+ "loss": 3.6437134742736816,
+ "step": 3159
+ },
+ {
+ "epoch": 43.89471384884229,
+ "grad_norm": 0.2320292890071869,
+ "learning_rate": 0.0006,
+ "loss": 3.6178359985351562,
+ "step": 3160
+ },
+ {
+ "epoch": 43.90869375273045,
+ "grad_norm": 0.25862693786621094,
+ "learning_rate": 0.0006,
+ "loss": 3.618229389190674,
+ "step": 3161
+ },
+ {
+ "epoch": 43.92267365661861,
+ "grad_norm": 0.2741934061050415,
+ "learning_rate": 0.0006,
+ "loss": 3.6046690940856934,
+ "step": 3162
+ },
+ {
+ "epoch": 43.93665356050677,
+ "grad_norm": 0.24312593042850494,
+ "learning_rate": 0.0006,
+ "loss": 3.5835556983947754,
+ "step": 3163
+ },
+ {
+ "epoch": 43.95063346439493,
+ "grad_norm": 0.22174517810344696,
+ "learning_rate": 0.0006,
+ "loss": 3.6505162715911865,
+ "step": 3164
+ },
+ {
+ "epoch": 43.964613368283096,
+ "grad_norm": 0.22016975283622742,
+ "learning_rate": 0.0006,
+ "loss": 3.6385562419891357,
+ "step": 3165
+ },
+ {
+ "epoch": 43.97859327217125,
+ "grad_norm": 0.23034313321113586,
+ "learning_rate": 0.0006,
+ "loss": 3.6345865726470947,
+ "step": 3166
+ },
+ {
+ "epoch": 43.992573176059416,
+ "grad_norm": 0.21236231923103333,
+ "learning_rate": 0.0006,
+ "loss": 3.6337084770202637,
+ "step": 3167
+ },
+ {
+ "epoch": 44.0,
+ "grad_norm": 0.2344549298286438,
+ "learning_rate": 0.0006,
+ "loss": 3.677978515625,
+ "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/mask15-l2r50-fulle-lm/checkpoint-3168/training_args.bin b/runs/mask15-l2r50-fulle-lm/checkpoint-3168/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..43721c50815fe94f90cb043bf545b8f7bd9afc38
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-3168/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:a0b8d7bb9ac952b1abed3bd1e5c8f6ebd20daa957b3a85688954f8df03be6eb9
+size 4856
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-3456/chat_template.jinja b/runs/mask15-l2r50-fulle-lm/checkpoint-3456/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/mask15-l2r50-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/mask15-l2r50-fulle-lm/checkpoint-3456/config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-3456/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..1b4ac3c550d6003148026765eba4cb1512b216c9
--- /dev/null
+++ b/runs/mask15-l2r50-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": 151672
+}
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-3456/generation_config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-3456/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..5cd15fe1269fd505cfdefe9b3e9989dacd9f68f4
--- /dev/null
+++ b/runs/mask15-l2r50-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/mask15-l2r50-fulle-lm/checkpoint-3456/model.safetensors b/runs/mask15-l2r50-fulle-lm/checkpoint-3456/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..e9a32c4022ef2bc5d527a65eef74d1387a98fb6a
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-3456/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:6c1824622bbafefb40bbcf5c0283520ce35a3fd9b6729141785e54aa040f11c6
+size 583358280
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-3456/optimizer.pt b/runs/mask15-l2r50-fulle-lm/checkpoint-3456/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..2d99f250e8df645078fb412d7a39a3a14bd761d3
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-3456/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:f01eba7196256232720e9302434a7ecc687a752d7b2cd0f1017d9473c6c8c05b
+size 1166829434
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-3456/rng_state_0.pth b/runs/mask15-l2r50-fulle-lm/checkpoint-3456/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..84b2b699f00aa941968fb2ce2a55da4350d635f4
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-3456/rng_state_0.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:40ccd8666d0716e90666c6820d3329a5f153f7c068dde6f658eeb7db2ee687a7
+size 14512
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-3456/rng_state_1.pth b/runs/mask15-l2r50-fulle-lm/checkpoint-3456/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..d9a10b20076192348e453db3bf12b7615ca277b6
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-3456/rng_state_1.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:13915961791d220744f4cdf0ec6aec4f2b9cf5aa7d04c12e238b8deae89db384
+size 14512
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-3456/scheduler.pt b/runs/mask15-l2r50-fulle-lm/checkpoint-3456/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..6f299b34b59cabea3196797084c0dd37275dcaa8
--- /dev/null
+++ b/runs/mask15-l2r50-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/mask15-l2r50-fulle-lm/checkpoint-3456/tokenizer.json b/runs/mask15-l2r50-fulle-lm/checkpoint-3456/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..6226bf25372d1a86dbd704ec75d2129960f1ba88
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-3456/tokenizer.json
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:9245fe3cb2d40f9ed8d5d8ddd1d58701ba2a236beec08f656162281673f30560
+size 11424264
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-3456/tokenizer_config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-3456/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..01bc9676576e8cf62a08a9db166d6c5bab1d6727
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-3456/tokenizer_config.json
@@ -0,0 +1,20 @@
+{
+ "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|>",
+ "<|mask|>"
+ ],
+ "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/mask15-l2r50-fulle-lm/checkpoint-3456/trainer_state.json b/runs/mask15-l2r50-fulle-lm/checkpoint-3456/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..96bd6727fe6db846f0e736ec43cc60a12119f51c
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-3456/trainer_state.json
@@ -0,0 +1,24602 @@
+{
+ "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": 9.807971954345703,
+ "learning_rate": 0.0,
+ "loss": 11.989814758300781,
+ "step": 1
+ },
+ {
+ "epoch": 0.027959807776321538,
+ "grad_norm": 9.834383010864258,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 11.993022918701172,
+ "step": 2
+ },
+ {
+ "epoch": 0.04193971166448231,
+ "grad_norm": 9.482470512390137,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 11.854345321655273,
+ "step": 3
+ },
+ {
+ "epoch": 0.055919615552643076,
+ "grad_norm": 7.678808689117432,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 11.618255615234375,
+ "step": 4
+ },
+ {
+ "epoch": 0.06989951944080385,
+ "grad_norm": 6.011275291442871,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 11.351423263549805,
+ "step": 5
+ },
+ {
+ "epoch": 0.08387942332896461,
+ "grad_norm": 5.244393825531006,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 11.128631591796875,
+ "step": 6
+ },
+ {
+ "epoch": 0.09785932721712538,
+ "grad_norm": 4.577618598937988,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 10.921937942504883,
+ "step": 7
+ },
+ {
+ "epoch": 0.11183923110528615,
+ "grad_norm": 4.03810453414917,
+ "learning_rate": 4.2e-05,
+ "loss": 10.742650985717773,
+ "step": 8
+ },
+ {
+ "epoch": 0.1258191349934469,
+ "grad_norm": 3.657679796218872,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 10.600778579711914,
+ "step": 9
+ },
+ {
+ "epoch": 0.1397990388816077,
+ "grad_norm": 3.352902889251709,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 10.489639282226562,
+ "step": 10
+ },
+ {
+ "epoch": 0.15377894276976845,
+ "grad_norm": 3.1162633895874023,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 10.417770385742188,
+ "step": 11
+ },
+ {
+ "epoch": 0.16775884665792923,
+ "grad_norm": 3.0402638912200928,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 10.35334587097168,
+ "step": 12
+ },
+ {
+ "epoch": 0.18173875054608998,
+ "grad_norm": 3.030630111694336,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 10.306867599487305,
+ "step": 13
+ },
+ {
+ "epoch": 0.19571865443425077,
+ "grad_norm": 3.035292148590088,
+ "learning_rate": 7.8e-05,
+ "loss": 10.26003646850586,
+ "step": 14
+ },
+ {
+ "epoch": 0.20969855832241152,
+ "grad_norm": 3.0125675201416016,
+ "learning_rate": 8.4e-05,
+ "loss": 10.219265937805176,
+ "step": 15
+ },
+ {
+ "epoch": 0.2236784622105723,
+ "grad_norm": 2.9998886585235596,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 10.161077499389648,
+ "step": 16
+ },
+ {
+ "epoch": 0.23765836609873306,
+ "grad_norm": 2.9411966800689697,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 10.107423782348633,
+ "step": 17
+ },
+ {
+ "epoch": 0.2516382699868938,
+ "grad_norm": 2.88081955909729,
+ "learning_rate": 0.000102,
+ "loss": 10.04700756072998,
+ "step": 18
+ },
+ {
+ "epoch": 0.2656181738750546,
+ "grad_norm": 2.8219687938690186,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 9.981185913085938,
+ "step": 19
+ },
+ {
+ "epoch": 0.2795980777632154,
+ "grad_norm": 2.79306960105896,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 9.89747142791748,
+ "step": 20
+ },
+ {
+ "epoch": 0.29357798165137616,
+ "grad_norm": 2.7314443588256836,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 9.829219818115234,
+ "step": 21
+ },
+ {
+ "epoch": 0.3075578855395369,
+ "grad_norm": 2.6923747062683105,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 9.747566223144531,
+ "step": 22
+ },
+ {
+ "epoch": 0.3215377894276977,
+ "grad_norm": 2.650602340698242,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 9.66455078125,
+ "step": 23
+ },
+ {
+ "epoch": 0.33551769331585846,
+ "grad_norm": 2.606977701187134,
+ "learning_rate": 0.000138,
+ "loss": 9.582326889038086,
+ "step": 24
+ },
+ {
+ "epoch": 0.34949759720401924,
+ "grad_norm": 2.567256212234497,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 9.492591857910156,
+ "step": 25
+ },
+ {
+ "epoch": 0.36347750109217997,
+ "grad_norm": 2.520740509033203,
+ "learning_rate": 0.00015,
+ "loss": 9.396563529968262,
+ "step": 26
+ },
+ {
+ "epoch": 0.37745740498034075,
+ "grad_norm": 2.471588611602783,
+ "learning_rate": 0.000156,
+ "loss": 9.303571701049805,
+ "step": 27
+ },
+ {
+ "epoch": 0.39143730886850153,
+ "grad_norm": 2.4341530799865723,
+ "learning_rate": 0.000162,
+ "loss": 9.191819190979004,
+ "step": 28
+ },
+ {
+ "epoch": 0.4054172127566623,
+ "grad_norm": 2.369244337081909,
+ "learning_rate": 0.000168,
+ "loss": 9.092012405395508,
+ "step": 29
+ },
+ {
+ "epoch": 0.41939711664482304,
+ "grad_norm": 2.28625226020813,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 8.984567642211914,
+ "step": 30
+ },
+ {
+ "epoch": 0.4333770205329838,
+ "grad_norm": 2.2082231044769287,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 8.889009475708008,
+ "step": 31
+ },
+ {
+ "epoch": 0.4473569244211446,
+ "grad_norm": 2.1429483890533447,
+ "learning_rate": 0.000186,
+ "loss": 8.778556823730469,
+ "step": 32
+ },
+ {
+ "epoch": 0.4613368283093054,
+ "grad_norm": 2.0937352180480957,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 8.661166191101074,
+ "step": 33
+ },
+ {
+ "epoch": 0.4753167321974661,
+ "grad_norm": 2.040790557861328,
+ "learning_rate": 0.000198,
+ "loss": 8.550382614135742,
+ "step": 34
+ },
+ {
+ "epoch": 0.4892966360856269,
+ "grad_norm": 1.93914794921875,
+ "learning_rate": 0.000204,
+ "loss": 8.463907241821289,
+ "step": 35
+ },
+ {
+ "epoch": 0.5032765399737876,
+ "grad_norm": 1.8624178171157837,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 8.3438720703125,
+ "step": 36
+ },
+ {
+ "epoch": 0.5172564438619485,
+ "grad_norm": 1.8107167482376099,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 8.21871566772461,
+ "step": 37
+ },
+ {
+ "epoch": 0.5312363477501092,
+ "grad_norm": 1.717979073524475,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 8.113494873046875,
+ "step": 38
+ },
+ {
+ "epoch": 0.54521625163827,
+ "grad_norm": 1.668742060661316,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 8.006099700927734,
+ "step": 39
+ },
+ {
+ "epoch": 0.5591961555264308,
+ "grad_norm": 1.6147786378860474,
+ "learning_rate": 0.000234,
+ "loss": 7.911509037017822,
+ "step": 40
+ },
+ {
+ "epoch": 0.5731760594145915,
+ "grad_norm": 1.535750150680542,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 7.822839736938477,
+ "step": 41
+ },
+ {
+ "epoch": 0.5871559633027523,
+ "grad_norm": 1.4700065851211548,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 7.713842868804932,
+ "step": 42
+ },
+ {
+ "epoch": 0.601135867190913,
+ "grad_norm": 1.39020574092865,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 7.6040191650390625,
+ "step": 43
+ },
+ {
+ "epoch": 0.6151157710790738,
+ "grad_norm": 1.2875399589538574,
+ "learning_rate": 0.000258,
+ "loss": 7.550642013549805,
+ "step": 44
+ },
+ {
+ "epoch": 0.6290956749672346,
+ "grad_norm": 1.2094247341156006,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 7.460824012756348,
+ "step": 45
+ },
+ {
+ "epoch": 0.6430755788553953,
+ "grad_norm": 1.126452088356018,
+ "learning_rate": 0.00027,
+ "loss": 7.380537986755371,
+ "step": 46
+ },
+ {
+ "epoch": 0.6570554827435562,
+ "grad_norm": 1.0313163995742798,
+ "learning_rate": 0.000276,
+ "loss": 7.286153793334961,
+ "step": 47
+ },
+ {
+ "epoch": 0.6710353866317169,
+ "grad_norm": 0.9172859787940979,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 7.2064714431762695,
+ "step": 48
+ },
+ {
+ "epoch": 0.6850152905198776,
+ "grad_norm": 0.8148201107978821,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 7.158207416534424,
+ "step": 49
+ },
+ {
+ "epoch": 0.6989951944080385,
+ "grad_norm": 0.650123119354248,
+ "learning_rate": 0.000294,
+ "loss": 7.108791828155518,
+ "step": 50
+ },
+ {
+ "epoch": 0.7129750982961992,
+ "grad_norm": 0.5437585711479187,
+ "learning_rate": 0.0003,
+ "loss": 7.083050727844238,
+ "step": 51
+ },
+ {
+ "epoch": 0.7269550021843599,
+ "grad_norm": 0.46762895584106445,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 7.058027267456055,
+ "step": 52
+ },
+ {
+ "epoch": 0.7409349060725208,
+ "grad_norm": 0.47947561740875244,
+ "learning_rate": 0.000312,
+ "loss": 7.015172958374023,
+ "step": 53
+ },
+ {
+ "epoch": 0.7549148099606815,
+ "grad_norm": 0.7546492218971252,
+ "learning_rate": 0.000318,
+ "loss": 7.024629592895508,
+ "step": 54
+ },
+ {
+ "epoch": 0.7688947138488423,
+ "grad_norm": 0.6153718829154968,
+ "learning_rate": 0.000324,
+ "loss": 7.026667594909668,
+ "step": 55
+ },
+ {
+ "epoch": 0.7828746177370031,
+ "grad_norm": 0.3359069228172302,
+ "learning_rate": 0.00033,
+ "loss": 7.008166313171387,
+ "step": 56
+ },
+ {
+ "epoch": 0.7968545216251638,
+ "grad_norm": 0.48906823992729187,
+ "learning_rate": 0.000336,
+ "loss": 7.019716262817383,
+ "step": 57
+ },
+ {
+ "epoch": 0.8108344255133246,
+ "grad_norm": 0.5525421500205994,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 7.02108097076416,
+ "step": 58
+ },
+ {
+ "epoch": 0.8248143294014854,
+ "grad_norm": 0.3103712201118469,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 7.003164768218994,
+ "step": 59
+ },
+ {
+ "epoch": 0.8387942332896461,
+ "grad_norm": 0.4431874752044678,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 7.003463268280029,
+ "step": 60
+ },
+ {
+ "epoch": 0.8527741371778069,
+ "grad_norm": 0.4291120767593384,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 6.96931791305542,
+ "step": 61
+ },
+ {
+ "epoch": 0.8667540410659677,
+ "grad_norm": 0.6566054224967957,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 6.989445686340332,
+ "step": 62
+ },
+ {
+ "epoch": 0.8807339449541285,
+ "grad_norm": 0.20663189888000488,
+ "learning_rate": 0.000372,
+ "loss": 6.9669342041015625,
+ "step": 63
+ },
+ {
+ "epoch": 0.8947138488422892,
+ "grad_norm": 0.6242535710334778,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 6.949883460998535,
+ "step": 64
+ },
+ {
+ "epoch": 0.9086937527304499,
+ "grad_norm": 0.6984224915504456,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 6.955153465270996,
+ "step": 65
+ },
+ {
+ "epoch": 0.9226736566186108,
+ "grad_norm": 0.6328083872795105,
+ "learning_rate": 0.00039,
+ "loss": 6.965421676635742,
+ "step": 66
+ },
+ {
+ "epoch": 0.9366535605067715,
+ "grad_norm": 1.213352918624878,
+ "learning_rate": 0.000396,
+ "loss": 6.9454345703125,
+ "step": 67
+ },
+ {
+ "epoch": 0.9506334643949322,
+ "grad_norm": 0.9221940636634827,
+ "learning_rate": 0.000402,
+ "loss": 6.923908233642578,
+ "step": 68
+ },
+ {
+ "epoch": 0.9646133682830931,
+ "grad_norm": 0.6825450658798218,
+ "learning_rate": 0.000408,
+ "loss": 6.910131454467773,
+ "step": 69
+ },
+ {
+ "epoch": 0.9785932721712538,
+ "grad_norm": 0.5690162181854248,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 6.89891242980957,
+ "step": 70
+ },
+ {
+ "epoch": 0.9925731760594146,
+ "grad_norm": 0.4320870041847229,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 6.896081924438477,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.31632405519485474,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 6.897444725036621,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 7.757839679718018,
+ "eval_runtime": 43.8338,
+ "eval_samples_per_second": 55.71,
+ "eval_steps_per_second": 3.49,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139799038881607,
+ "grad_norm": 0.3789916932582855,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 6.877245903015137,
+ "step": 73
+ },
+ {
+ "epoch": 1.0279598077763215,
+ "grad_norm": 0.9167932868003845,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 6.921600341796875,
+ "step": 74
+ },
+ {
+ "epoch": 1.0419397116644824,
+ "grad_norm": 0.581188440322876,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 6.861001968383789,
+ "step": 75
+ },
+ {
+ "epoch": 1.0559196155526431,
+ "grad_norm": 0.4179714024066925,
+ "learning_rate": 0.00045,
+ "loss": 6.875657081604004,
+ "step": 76
+ },
+ {
+ "epoch": 1.0698995194408039,
+ "grad_norm": 1.0669957399368286,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 6.857122421264648,
+ "step": 77
+ },
+ {
+ "epoch": 1.0838794233289646,
+ "grad_norm": 0.27855145931243896,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 6.828852653503418,
+ "step": 78
+ },
+ {
+ "epoch": 1.0978593272171253,
+ "grad_norm": 0.7192047834396362,
+ "learning_rate": 0.000468,
+ "loss": 6.870839595794678,
+ "step": 79
+ },
+ {
+ "epoch": 1.1118392311052863,
+ "grad_norm": 0.5583325624465942,
+ "learning_rate": 0.000474,
+ "loss": 6.8497514724731445,
+ "step": 80
+ },
+ {
+ "epoch": 1.125819134993447,
+ "grad_norm": 0.3001925051212311,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 6.858528137207031,
+ "step": 81
+ },
+ {
+ "epoch": 1.1397990388816077,
+ "grad_norm": 0.2408239096403122,
+ "learning_rate": 0.000486,
+ "loss": 6.83231258392334,
+ "step": 82
+ },
+ {
+ "epoch": 1.1537789427697684,
+ "grad_norm": 0.28230324387550354,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 6.815476894378662,
+ "step": 83
+ },
+ {
+ "epoch": 1.1677588466579292,
+ "grad_norm": 0.3247123658657074,
+ "learning_rate": 0.000498,
+ "loss": 6.780126094818115,
+ "step": 84
+ },
+ {
+ "epoch": 1.18173875054609,
+ "grad_norm": 0.25713011622428894,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 6.7798309326171875,
+ "step": 85
+ },
+ {
+ "epoch": 1.1957186544342508,
+ "grad_norm": 0.5386835932731628,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 6.791745185852051,
+ "step": 86
+ },
+ {
+ "epoch": 1.2096985583224116,
+ "grad_norm": 0.2226393222808838,
+ "learning_rate": 0.000516,
+ "loss": 6.7826972007751465,
+ "step": 87
+ },
+ {
+ "epoch": 1.2236784622105723,
+ "grad_norm": 0.4338362216949463,
+ "learning_rate": 0.000522,
+ "loss": 6.805043697357178,
+ "step": 88
+ },
+ {
+ "epoch": 1.237658366098733,
+ "grad_norm": 0.2953208386898041,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 6.768434524536133,
+ "step": 89
+ },
+ {
+ "epoch": 1.2516382699868938,
+ "grad_norm": 0.13453717529773712,
+ "learning_rate": 0.000534,
+ "loss": 6.773697376251221,
+ "step": 90
+ },
+ {
+ "epoch": 1.2656181738750547,
+ "grad_norm": 0.35774412751197815,
+ "learning_rate": 0.00054,
+ "loss": 6.766414642333984,
+ "step": 91
+ },
+ {
+ "epoch": 1.2795980777632154,
+ "grad_norm": 0.4669720530509949,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 6.754847526550293,
+ "step": 92
+ },
+ {
+ "epoch": 1.2935779816513762,
+ "grad_norm": 0.13806621730327606,
+ "learning_rate": 0.000552,
+ "loss": 6.746858596801758,
+ "step": 93
+ },
+ {
+ "epoch": 1.307557885539537,
+ "grad_norm": 0.3280332386493683,
+ "learning_rate": 0.000558,
+ "loss": 6.715662956237793,
+ "step": 94
+ },
+ {
+ "epoch": 1.3215377894276976,
+ "grad_norm": 0.4689937233924866,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 6.734938144683838,
+ "step": 95
+ },
+ {
+ "epoch": 1.3355176933158583,
+ "grad_norm": 0.35371264815330505,
+ "learning_rate": 0.00057,
+ "loss": 6.748386383056641,
+ "step": 96
+ },
+ {
+ "epoch": 1.3494975972040193,
+ "grad_norm": 0.15232303738594055,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 6.705557823181152,
+ "step": 97
+ },
+ {
+ "epoch": 1.36347750109218,
+ "grad_norm": 0.30132821202278137,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 6.7199859619140625,
+ "step": 98
+ },
+ {
+ "epoch": 1.3774574049803407,
+ "grad_norm": 0.42174842953681946,
+ "learning_rate": 0.000588,
+ "loss": 6.715370178222656,
+ "step": 99
+ },
+ {
+ "epoch": 1.3914373088685015,
+ "grad_norm": 0.6257228851318359,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 6.707026958465576,
+ "step": 100
+ },
+ {
+ "epoch": 1.4054172127566624,
+ "grad_norm": 0.4551195800304413,
+ "learning_rate": 0.0006,
+ "loss": 6.7078423500061035,
+ "step": 101
+ },
+ {
+ "epoch": 1.4193971166448232,
+ "grad_norm": 0.41940346360206604,
+ "learning_rate": 0.0006,
+ "loss": 6.6959357261657715,
+ "step": 102
+ },
+ {
+ "epoch": 1.4333770205329839,
+ "grad_norm": 0.32251718640327454,
+ "learning_rate": 0.0006,
+ "loss": 6.689168930053711,
+ "step": 103
+ },
+ {
+ "epoch": 1.4473569244211446,
+ "grad_norm": 0.2992720305919647,
+ "learning_rate": 0.0006,
+ "loss": 6.680738925933838,
+ "step": 104
+ },
+ {
+ "epoch": 1.4613368283093053,
+ "grad_norm": 0.3228456974029541,
+ "learning_rate": 0.0006,
+ "loss": 6.672350883483887,
+ "step": 105
+ },
+ {
+ "epoch": 1.475316732197466,
+ "grad_norm": 0.24954743683338165,
+ "learning_rate": 0.0006,
+ "loss": 6.653716087341309,
+ "step": 106
+ },
+ {
+ "epoch": 1.4892966360856268,
+ "grad_norm": 0.30740687251091003,
+ "learning_rate": 0.0006,
+ "loss": 6.676583290100098,
+ "step": 107
+ },
+ {
+ "epoch": 1.5032765399737875,
+ "grad_norm": 0.24950599670410156,
+ "learning_rate": 0.0006,
+ "loss": 6.656691551208496,
+ "step": 108
+ },
+ {
+ "epoch": 1.5172564438619485,
+ "grad_norm": 0.24293005466461182,
+ "learning_rate": 0.0006,
+ "loss": 6.640995979309082,
+ "step": 109
+ },
+ {
+ "epoch": 1.5312363477501092,
+ "grad_norm": 0.30167272686958313,
+ "learning_rate": 0.0006,
+ "loss": 6.647380352020264,
+ "step": 110
+ },
+ {
+ "epoch": 1.5452162516382701,
+ "grad_norm": 0.4424632787704468,
+ "learning_rate": 0.0006,
+ "loss": 6.6548261642456055,
+ "step": 111
+ },
+ {
+ "epoch": 1.5591961555264309,
+ "grad_norm": 0.5295748114585876,
+ "learning_rate": 0.0006,
+ "loss": 6.64370059967041,
+ "step": 112
+ },
+ {
+ "epoch": 1.5731760594145916,
+ "grad_norm": 0.6829339265823364,
+ "learning_rate": 0.0006,
+ "loss": 6.654196739196777,
+ "step": 113
+ },
+ {
+ "epoch": 1.5871559633027523,
+ "grad_norm": 0.6534460186958313,
+ "learning_rate": 0.0006,
+ "loss": 6.675765037536621,
+ "step": 114
+ },
+ {
+ "epoch": 1.601135867190913,
+ "grad_norm": 0.6172244548797607,
+ "learning_rate": 0.0006,
+ "loss": 6.631234169006348,
+ "step": 115
+ },
+ {
+ "epoch": 1.6151157710790738,
+ "grad_norm": 0.5650008320808411,
+ "learning_rate": 0.0006,
+ "loss": 6.654262542724609,
+ "step": 116
+ },
+ {
+ "epoch": 1.6290956749672345,
+ "grad_norm": 0.3890475928783417,
+ "learning_rate": 0.0006,
+ "loss": 6.627526760101318,
+ "step": 117
+ },
+ {
+ "epoch": 1.6430755788553952,
+ "grad_norm": 0.6409873366355896,
+ "learning_rate": 0.0006,
+ "loss": 6.619794845581055,
+ "step": 118
+ },
+ {
+ "epoch": 1.6570554827435562,
+ "grad_norm": 0.5052326321601868,
+ "learning_rate": 0.0006,
+ "loss": 6.612556457519531,
+ "step": 119
+ },
+ {
+ "epoch": 1.671035386631717,
+ "grad_norm": 0.5001237988471985,
+ "learning_rate": 0.0006,
+ "loss": 6.577266693115234,
+ "step": 120
+ },
+ {
+ "epoch": 1.6850152905198776,
+ "grad_norm": 0.5328938364982605,
+ "learning_rate": 0.0006,
+ "loss": 6.59553337097168,
+ "step": 121
+ },
+ {
+ "epoch": 1.6989951944080386,
+ "grad_norm": 0.3568951189517975,
+ "learning_rate": 0.0006,
+ "loss": 6.602717399597168,
+ "step": 122
+ },
+ {
+ "epoch": 1.7129750982961993,
+ "grad_norm": 0.4017309546470642,
+ "learning_rate": 0.0006,
+ "loss": 6.589657783508301,
+ "step": 123
+ },
+ {
+ "epoch": 1.72695500218436,
+ "grad_norm": 0.21432629227638245,
+ "learning_rate": 0.0006,
+ "loss": 6.586555480957031,
+ "step": 124
+ },
+ {
+ "epoch": 1.7409349060725208,
+ "grad_norm": 0.21038052439689636,
+ "learning_rate": 0.0006,
+ "loss": 6.576569557189941,
+ "step": 125
+ },
+ {
+ "epoch": 1.7549148099606815,
+ "grad_norm": 0.23074904084205627,
+ "learning_rate": 0.0006,
+ "loss": 6.5880632400512695,
+ "step": 126
+ },
+ {
+ "epoch": 1.7688947138488422,
+ "grad_norm": 0.42963048815727234,
+ "learning_rate": 0.0006,
+ "loss": 6.603862762451172,
+ "step": 127
+ },
+ {
+ "epoch": 1.782874617737003,
+ "grad_norm": 0.361331045627594,
+ "learning_rate": 0.0006,
+ "loss": 6.579834938049316,
+ "step": 128
+ },
+ {
+ "epoch": 1.7968545216251637,
+ "grad_norm": 0.4951060712337494,
+ "learning_rate": 0.0006,
+ "loss": 6.570443630218506,
+ "step": 129
+ },
+ {
+ "epoch": 1.8108344255133246,
+ "grad_norm": 0.2258434295654297,
+ "learning_rate": 0.0006,
+ "loss": 6.5664777755737305,
+ "step": 130
+ },
+ {
+ "epoch": 1.8248143294014854,
+ "grad_norm": 0.2922155559062958,
+ "learning_rate": 0.0006,
+ "loss": 6.561326503753662,
+ "step": 131
+ },
+ {
+ "epoch": 1.838794233289646,
+ "grad_norm": 0.19068220257759094,
+ "learning_rate": 0.0006,
+ "loss": 6.528727054595947,
+ "step": 132
+ },
+ {
+ "epoch": 1.852774137177807,
+ "grad_norm": 0.2122010439634323,
+ "learning_rate": 0.0006,
+ "loss": 6.535636901855469,
+ "step": 133
+ },
+ {
+ "epoch": 1.8667540410659678,
+ "grad_norm": 0.25760164856910706,
+ "learning_rate": 0.0006,
+ "loss": 6.530498504638672,
+ "step": 134
+ },
+ {
+ "epoch": 1.8807339449541285,
+ "grad_norm": 0.1761016845703125,
+ "learning_rate": 0.0006,
+ "loss": 6.514466285705566,
+ "step": 135
+ },
+ {
+ "epoch": 1.8947138488422892,
+ "grad_norm": 0.2250051498413086,
+ "learning_rate": 0.0006,
+ "loss": 6.521268844604492,
+ "step": 136
+ },
+ {
+ "epoch": 1.90869375273045,
+ "grad_norm": 0.34458497166633606,
+ "learning_rate": 0.0006,
+ "loss": 6.512831687927246,
+ "step": 137
+ },
+ {
+ "epoch": 1.9226736566186107,
+ "grad_norm": 0.3468617796897888,
+ "learning_rate": 0.0006,
+ "loss": 6.515641689300537,
+ "step": 138
+ },
+ {
+ "epoch": 1.9366535605067714,
+ "grad_norm": 0.5051495432853699,
+ "learning_rate": 0.0006,
+ "loss": 6.5147905349731445,
+ "step": 139
+ },
+ {
+ "epoch": 1.9506334643949321,
+ "grad_norm": 0.7106727361679077,
+ "learning_rate": 0.0006,
+ "loss": 6.519277572631836,
+ "step": 140
+ },
+ {
+ "epoch": 1.964613368283093,
+ "grad_norm": 0.8881394267082214,
+ "learning_rate": 0.0006,
+ "loss": 6.526865482330322,
+ "step": 141
+ },
+ {
+ "epoch": 1.9785932721712538,
+ "grad_norm": 0.5552834272384644,
+ "learning_rate": 0.0006,
+ "loss": 6.469970226287842,
+ "step": 142
+ },
+ {
+ "epoch": 1.9925731760594148,
+ "grad_norm": 0.6903126835823059,
+ "learning_rate": 0.0006,
+ "loss": 6.476300239562988,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.47679027915000916,
+ "learning_rate": 0.0006,
+ "loss": 6.463827133178711,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 7.388528823852539,
+ "eval_runtime": 44.2519,
+ "eval_samples_per_second": 55.184,
+ "eval_steps_per_second": 3.457,
+ "step": 144
+ },
+ {
+ "epoch": 2.0139799038881607,
+ "grad_norm": 0.4719221293926239,
+ "learning_rate": 0.0006,
+ "loss": 6.480956077575684,
+ "step": 145
+ },
+ {
+ "epoch": 2.0279598077763215,
+ "grad_norm": 0.41137924790382385,
+ "learning_rate": 0.0006,
+ "loss": 6.449707984924316,
+ "step": 146
+ },
+ {
+ "epoch": 2.041939711664482,
+ "grad_norm": 0.4237765371799469,
+ "learning_rate": 0.0006,
+ "loss": 6.467435836791992,
+ "step": 147
+ },
+ {
+ "epoch": 2.055919615552643,
+ "grad_norm": 0.44081810116767883,
+ "learning_rate": 0.0006,
+ "loss": 6.436868667602539,
+ "step": 148
+ },
+ {
+ "epoch": 2.0698995194408036,
+ "grad_norm": 0.4163798391819,
+ "learning_rate": 0.0006,
+ "loss": 6.4642014503479,
+ "step": 149
+ },
+ {
+ "epoch": 2.083879423328965,
+ "grad_norm": 0.3831583261489868,
+ "learning_rate": 0.0006,
+ "loss": 6.454092025756836,
+ "step": 150
+ },
+ {
+ "epoch": 2.0978593272171255,
+ "grad_norm": 0.37721413373947144,
+ "learning_rate": 0.0006,
+ "loss": 6.426377296447754,
+ "step": 151
+ },
+ {
+ "epoch": 2.1118392311052863,
+ "grad_norm": 0.3323550224304199,
+ "learning_rate": 0.0006,
+ "loss": 6.421375274658203,
+ "step": 152
+ },
+ {
+ "epoch": 2.125819134993447,
+ "grad_norm": 0.47739624977111816,
+ "learning_rate": 0.0006,
+ "loss": 6.412004470825195,
+ "step": 153
+ },
+ {
+ "epoch": 2.1397990388816077,
+ "grad_norm": 0.8530274629592896,
+ "learning_rate": 0.0006,
+ "loss": 6.410468578338623,
+ "step": 154
+ },
+ {
+ "epoch": 2.1537789427697684,
+ "grad_norm": 0.6420364379882812,
+ "learning_rate": 0.0006,
+ "loss": 6.413525581359863,
+ "step": 155
+ },
+ {
+ "epoch": 2.167758846657929,
+ "grad_norm": 0.5005049109458923,
+ "learning_rate": 0.0006,
+ "loss": 6.401463508605957,
+ "step": 156
+ },
+ {
+ "epoch": 2.18173875054609,
+ "grad_norm": 0.3614683449268341,
+ "learning_rate": 0.0006,
+ "loss": 6.390063285827637,
+ "step": 157
+ },
+ {
+ "epoch": 2.1957186544342506,
+ "grad_norm": 0.595215380191803,
+ "learning_rate": 0.0006,
+ "loss": 6.369806289672852,
+ "step": 158
+ },
+ {
+ "epoch": 2.2096985583224114,
+ "grad_norm": 0.5700321793556213,
+ "learning_rate": 0.0006,
+ "loss": 6.368378639221191,
+ "step": 159
+ },
+ {
+ "epoch": 2.2236784622105725,
+ "grad_norm": 0.36273983120918274,
+ "learning_rate": 0.0006,
+ "loss": 6.366860389709473,
+ "step": 160
+ },
+ {
+ "epoch": 2.2376583660987333,
+ "grad_norm": 0.2850998342037201,
+ "learning_rate": 0.0006,
+ "loss": 6.352144718170166,
+ "step": 161
+ },
+ {
+ "epoch": 2.251638269986894,
+ "grad_norm": 0.38558584451675415,
+ "learning_rate": 0.0006,
+ "loss": 6.375765800476074,
+ "step": 162
+ },
+ {
+ "epoch": 2.2656181738750547,
+ "grad_norm": 0.34809231758117676,
+ "learning_rate": 0.0006,
+ "loss": 6.350445747375488,
+ "step": 163
+ },
+ {
+ "epoch": 2.2795980777632154,
+ "grad_norm": 0.5211818814277649,
+ "learning_rate": 0.0006,
+ "loss": 6.354585647583008,
+ "step": 164
+ },
+ {
+ "epoch": 2.293577981651376,
+ "grad_norm": 1.0809133052825928,
+ "learning_rate": 0.0006,
+ "loss": 6.3752007484436035,
+ "step": 165
+ },
+ {
+ "epoch": 2.307557885539537,
+ "grad_norm": 0.8293641209602356,
+ "learning_rate": 0.0006,
+ "loss": 6.35113525390625,
+ "step": 166
+ },
+ {
+ "epoch": 2.3215377894276976,
+ "grad_norm": 0.3428577780723572,
+ "learning_rate": 0.0006,
+ "loss": 6.334470748901367,
+ "step": 167
+ },
+ {
+ "epoch": 2.3355176933158583,
+ "grad_norm": 0.7587600946426392,
+ "learning_rate": 0.0006,
+ "loss": 6.353979587554932,
+ "step": 168
+ },
+ {
+ "epoch": 2.349497597204019,
+ "grad_norm": 0.4227249026298523,
+ "learning_rate": 0.0006,
+ "loss": 6.34018611907959,
+ "step": 169
+ },
+ {
+ "epoch": 2.36347750109218,
+ "grad_norm": 0.4226846694946289,
+ "learning_rate": 0.0006,
+ "loss": 6.290019989013672,
+ "step": 170
+ },
+ {
+ "epoch": 2.3774574049803405,
+ "grad_norm": 0.38412365317344666,
+ "learning_rate": 0.0006,
+ "loss": 6.309510231018066,
+ "step": 171
+ },
+ {
+ "epoch": 2.3914373088685017,
+ "grad_norm": 0.45698508620262146,
+ "learning_rate": 0.0006,
+ "loss": 6.283290863037109,
+ "step": 172
+ },
+ {
+ "epoch": 2.4054172127566624,
+ "grad_norm": 0.7575915455818176,
+ "learning_rate": 0.0006,
+ "loss": 6.306073188781738,
+ "step": 173
+ },
+ {
+ "epoch": 2.419397116644823,
+ "grad_norm": 0.695123553276062,
+ "learning_rate": 0.0006,
+ "loss": 6.308144569396973,
+ "step": 174
+ },
+ {
+ "epoch": 2.433377020532984,
+ "grad_norm": 0.5035743117332458,
+ "learning_rate": 0.0006,
+ "loss": 6.282073974609375,
+ "step": 175
+ },
+ {
+ "epoch": 2.4473569244211446,
+ "grad_norm": 0.3158020079135895,
+ "learning_rate": 0.0006,
+ "loss": 6.282169342041016,
+ "step": 176
+ },
+ {
+ "epoch": 2.4613368283093053,
+ "grad_norm": 0.4829689860343933,
+ "learning_rate": 0.0006,
+ "loss": 6.264578819274902,
+ "step": 177
+ },
+ {
+ "epoch": 2.475316732197466,
+ "grad_norm": 0.3992770314216614,
+ "learning_rate": 0.0006,
+ "loss": 6.228628158569336,
+ "step": 178
+ },
+ {
+ "epoch": 2.489296636085627,
+ "grad_norm": 0.40887606143951416,
+ "learning_rate": 0.0006,
+ "loss": 6.230792045593262,
+ "step": 179
+ },
+ {
+ "epoch": 2.5032765399737875,
+ "grad_norm": 0.3540310263633728,
+ "learning_rate": 0.0006,
+ "loss": 6.222573280334473,
+ "step": 180
+ },
+ {
+ "epoch": 2.5172564438619487,
+ "grad_norm": 0.496219664812088,
+ "learning_rate": 0.0006,
+ "loss": 6.212109565734863,
+ "step": 181
+ },
+ {
+ "epoch": 2.5312363477501094,
+ "grad_norm": 0.435173898935318,
+ "learning_rate": 0.0006,
+ "loss": 6.221210479736328,
+ "step": 182
+ },
+ {
+ "epoch": 2.54521625163827,
+ "grad_norm": 0.5364007949829102,
+ "learning_rate": 0.0006,
+ "loss": 6.217929840087891,
+ "step": 183
+ },
+ {
+ "epoch": 2.559196155526431,
+ "grad_norm": 0.5946390628814697,
+ "learning_rate": 0.0006,
+ "loss": 6.189267158508301,
+ "step": 184
+ },
+ {
+ "epoch": 2.5731760594145916,
+ "grad_norm": 0.41621312499046326,
+ "learning_rate": 0.0006,
+ "loss": 6.182415008544922,
+ "step": 185
+ },
+ {
+ "epoch": 2.5871559633027523,
+ "grad_norm": 0.5442072749137878,
+ "learning_rate": 0.0006,
+ "loss": 6.150757789611816,
+ "step": 186
+ },
+ {
+ "epoch": 2.601135867190913,
+ "grad_norm": 0.727843165397644,
+ "learning_rate": 0.0006,
+ "loss": 6.146082878112793,
+ "step": 187
+ },
+ {
+ "epoch": 2.615115771079074,
+ "grad_norm": 0.8898891806602478,
+ "learning_rate": 0.0006,
+ "loss": 6.190483093261719,
+ "step": 188
+ },
+ {
+ "epoch": 2.6290956749672345,
+ "grad_norm": 0.5173947215080261,
+ "learning_rate": 0.0006,
+ "loss": 6.151251792907715,
+ "step": 189
+ },
+ {
+ "epoch": 2.6430755788553952,
+ "grad_norm": 0.6476729512214661,
+ "learning_rate": 0.0006,
+ "loss": 6.154841423034668,
+ "step": 190
+ },
+ {
+ "epoch": 2.657055482743556,
+ "grad_norm": 0.3538810908794403,
+ "learning_rate": 0.0006,
+ "loss": 6.103879928588867,
+ "step": 191
+ },
+ {
+ "epoch": 2.6710353866317167,
+ "grad_norm": 0.4773508310317993,
+ "learning_rate": 0.0006,
+ "loss": 6.118101119995117,
+ "step": 192
+ },
+ {
+ "epoch": 2.6850152905198774,
+ "grad_norm": 0.29213786125183105,
+ "learning_rate": 0.0006,
+ "loss": 6.108916282653809,
+ "step": 193
+ },
+ {
+ "epoch": 2.6989951944080386,
+ "grad_norm": 0.40800607204437256,
+ "learning_rate": 0.0006,
+ "loss": 6.113438606262207,
+ "step": 194
+ },
+ {
+ "epoch": 2.7129750982961993,
+ "grad_norm": 0.31157299876213074,
+ "learning_rate": 0.0006,
+ "loss": 6.101809501647949,
+ "step": 195
+ },
+ {
+ "epoch": 2.72695500218436,
+ "grad_norm": 0.28660309314727783,
+ "learning_rate": 0.0006,
+ "loss": 6.075886249542236,
+ "step": 196
+ },
+ {
+ "epoch": 2.7409349060725208,
+ "grad_norm": 0.3810449540615082,
+ "learning_rate": 0.0006,
+ "loss": 6.053257942199707,
+ "step": 197
+ },
+ {
+ "epoch": 2.7549148099606815,
+ "grad_norm": 0.21741755306720734,
+ "learning_rate": 0.0006,
+ "loss": 6.013825416564941,
+ "step": 198
+ },
+ {
+ "epoch": 2.7688947138488422,
+ "grad_norm": 0.2777678966522217,
+ "learning_rate": 0.0006,
+ "loss": 6.054204940795898,
+ "step": 199
+ },
+ {
+ "epoch": 2.782874617737003,
+ "grad_norm": 0.28503066301345825,
+ "learning_rate": 0.0006,
+ "loss": 6.035628318786621,
+ "step": 200
+ },
+ {
+ "epoch": 2.7968545216251637,
+ "grad_norm": 0.41954755783081055,
+ "learning_rate": 0.0006,
+ "loss": 6.028354644775391,
+ "step": 201
+ },
+ {
+ "epoch": 2.810834425513325,
+ "grad_norm": 0.8785563111305237,
+ "learning_rate": 0.0006,
+ "loss": 6.055761337280273,
+ "step": 202
+ },
+ {
+ "epoch": 2.8248143294014856,
+ "grad_norm": 1.7459558248519897,
+ "learning_rate": 0.0006,
+ "loss": 6.11599588394165,
+ "step": 203
+ },
+ {
+ "epoch": 2.8387942332896463,
+ "grad_norm": 0.5725523233413696,
+ "learning_rate": 0.0006,
+ "loss": 6.024280548095703,
+ "step": 204
+ },
+ {
+ "epoch": 2.852774137177807,
+ "grad_norm": 0.5913150906562805,
+ "learning_rate": 0.0006,
+ "loss": 6.050281524658203,
+ "step": 205
+ },
+ {
+ "epoch": 2.8667540410659678,
+ "grad_norm": 0.5929384827613831,
+ "learning_rate": 0.0006,
+ "loss": 6.041121482849121,
+ "step": 206
+ },
+ {
+ "epoch": 2.8807339449541285,
+ "grad_norm": 0.5650724768638611,
+ "learning_rate": 0.0006,
+ "loss": 6.004258155822754,
+ "step": 207
+ },
+ {
+ "epoch": 2.894713848842289,
+ "grad_norm": 0.3420545756816864,
+ "learning_rate": 0.0006,
+ "loss": 5.983296871185303,
+ "step": 208
+ },
+ {
+ "epoch": 2.90869375273045,
+ "grad_norm": 0.2960914075374603,
+ "learning_rate": 0.0006,
+ "loss": 5.988578796386719,
+ "step": 209
+ },
+ {
+ "epoch": 2.9226736566186107,
+ "grad_norm": 0.3252662718296051,
+ "learning_rate": 0.0006,
+ "loss": 5.99103307723999,
+ "step": 210
+ },
+ {
+ "epoch": 2.9366535605067714,
+ "grad_norm": 0.4851132929325104,
+ "learning_rate": 0.0006,
+ "loss": 6.0028977394104,
+ "step": 211
+ },
+ {
+ "epoch": 2.950633464394932,
+ "grad_norm": 0.5639995336532593,
+ "learning_rate": 0.0006,
+ "loss": 5.965080738067627,
+ "step": 212
+ },
+ {
+ "epoch": 2.964613368283093,
+ "grad_norm": 0.4514601230621338,
+ "learning_rate": 0.0006,
+ "loss": 5.961450576782227,
+ "step": 213
+ },
+ {
+ "epoch": 2.9785932721712536,
+ "grad_norm": 0.5397921800613403,
+ "learning_rate": 0.0006,
+ "loss": 5.965290546417236,
+ "step": 214
+ },
+ {
+ "epoch": 2.9925731760594148,
+ "grad_norm": 0.4735587239265442,
+ "learning_rate": 0.0006,
+ "loss": 5.952754497528076,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.32061058282852173,
+ "learning_rate": 0.0006,
+ "loss": 5.961667060852051,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 6.8517303466796875,
+ "eval_runtime": 44.03,
+ "eval_samples_per_second": 55.462,
+ "eval_steps_per_second": 3.475,
+ "step": 216
+ },
+ {
+ "epoch": 3.0139799038881607,
+ "grad_norm": 0.3537784814834595,
+ "learning_rate": 0.0006,
+ "loss": 5.928008079528809,
+ "step": 217
+ },
+ {
+ "epoch": 3.0279598077763215,
+ "grad_norm": 0.40713080763816833,
+ "learning_rate": 0.0006,
+ "loss": 5.9150800704956055,
+ "step": 218
+ },
+ {
+ "epoch": 3.041939711664482,
+ "grad_norm": 0.2548826336860657,
+ "learning_rate": 0.0006,
+ "loss": 5.919757843017578,
+ "step": 219
+ },
+ {
+ "epoch": 3.055919615552643,
+ "grad_norm": 0.2818543016910553,
+ "learning_rate": 0.0006,
+ "loss": 5.913688659667969,
+ "step": 220
+ },
+ {
+ "epoch": 3.0698995194408036,
+ "grad_norm": 0.4196692705154419,
+ "learning_rate": 0.0006,
+ "loss": 5.8675336837768555,
+ "step": 221
+ },
+ {
+ "epoch": 3.083879423328965,
+ "grad_norm": 0.35272282361984253,
+ "learning_rate": 0.0006,
+ "loss": 5.878874778747559,
+ "step": 222
+ },
+ {
+ "epoch": 3.0978593272171255,
+ "grad_norm": 0.3254282772541046,
+ "learning_rate": 0.0006,
+ "loss": 5.8823041915893555,
+ "step": 223
+ },
+ {
+ "epoch": 3.1118392311052863,
+ "grad_norm": 0.4052561819553375,
+ "learning_rate": 0.0006,
+ "loss": 5.867744445800781,
+ "step": 224
+ },
+ {
+ "epoch": 3.125819134993447,
+ "grad_norm": 0.31246256828308105,
+ "learning_rate": 0.0006,
+ "loss": 5.886094093322754,
+ "step": 225
+ },
+ {
+ "epoch": 3.1397990388816077,
+ "grad_norm": 0.3479118347167969,
+ "learning_rate": 0.0006,
+ "loss": 5.850762367248535,
+ "step": 226
+ },
+ {
+ "epoch": 3.1537789427697684,
+ "grad_norm": 0.5037238597869873,
+ "learning_rate": 0.0006,
+ "loss": 5.844175815582275,
+ "step": 227
+ },
+ {
+ "epoch": 3.167758846657929,
+ "grad_norm": 0.6271815896034241,
+ "learning_rate": 0.0006,
+ "loss": 5.871790885925293,
+ "step": 228
+ },
+ {
+ "epoch": 3.18173875054609,
+ "grad_norm": 0.43838298320770264,
+ "learning_rate": 0.0006,
+ "loss": 5.844024658203125,
+ "step": 229
+ },
+ {
+ "epoch": 3.1957186544342506,
+ "grad_norm": 0.4755159616470337,
+ "learning_rate": 0.0006,
+ "loss": 5.846892356872559,
+ "step": 230
+ },
+ {
+ "epoch": 3.2096985583224114,
+ "grad_norm": 0.5229779481887817,
+ "learning_rate": 0.0006,
+ "loss": 5.827000617980957,
+ "step": 231
+ },
+ {
+ "epoch": 3.2236784622105725,
+ "grad_norm": 0.8264499306678772,
+ "learning_rate": 0.0006,
+ "loss": 5.867050647735596,
+ "step": 232
+ },
+ {
+ "epoch": 3.2376583660987333,
+ "grad_norm": 1.0607538223266602,
+ "learning_rate": 0.0006,
+ "loss": 5.877876281738281,
+ "step": 233
+ },
+ {
+ "epoch": 3.251638269986894,
+ "grad_norm": 0.7656505703926086,
+ "learning_rate": 0.0006,
+ "loss": 5.86760139465332,
+ "step": 234
+ },
+ {
+ "epoch": 3.2656181738750547,
+ "grad_norm": 0.7940183281898499,
+ "learning_rate": 0.0006,
+ "loss": 5.861355781555176,
+ "step": 235
+ },
+ {
+ "epoch": 3.2795980777632154,
+ "grad_norm": 0.45171424746513367,
+ "learning_rate": 0.0006,
+ "loss": 5.799808502197266,
+ "step": 236
+ },
+ {
+ "epoch": 3.293577981651376,
+ "grad_norm": 0.6174989342689514,
+ "learning_rate": 0.0006,
+ "loss": 5.8585920333862305,
+ "step": 237
+ },
+ {
+ "epoch": 3.307557885539537,
+ "grad_norm": 0.5341290831565857,
+ "learning_rate": 0.0006,
+ "loss": 5.8116044998168945,
+ "step": 238
+ },
+ {
+ "epoch": 3.3215377894276976,
+ "grad_norm": 0.3938343822956085,
+ "learning_rate": 0.0006,
+ "loss": 5.83797550201416,
+ "step": 239
+ },
+ {
+ "epoch": 3.3355176933158583,
+ "grad_norm": 0.5106972455978394,
+ "learning_rate": 0.0006,
+ "loss": 5.832303047180176,
+ "step": 240
+ },
+ {
+ "epoch": 3.349497597204019,
+ "grad_norm": 0.3791428506374359,
+ "learning_rate": 0.0006,
+ "loss": 5.794981956481934,
+ "step": 241
+ },
+ {
+ "epoch": 3.36347750109218,
+ "grad_norm": 0.42287978529930115,
+ "learning_rate": 0.0006,
+ "loss": 5.788144111633301,
+ "step": 242
+ },
+ {
+ "epoch": 3.3774574049803405,
+ "grad_norm": 0.27334436774253845,
+ "learning_rate": 0.0006,
+ "loss": 5.771070957183838,
+ "step": 243
+ },
+ {
+ "epoch": 3.3914373088685017,
+ "grad_norm": 0.2470470368862152,
+ "learning_rate": 0.0006,
+ "loss": 5.755998611450195,
+ "step": 244
+ },
+ {
+ "epoch": 3.4054172127566624,
+ "grad_norm": 0.3043915033340454,
+ "learning_rate": 0.0006,
+ "loss": 5.779492378234863,
+ "step": 245
+ },
+ {
+ "epoch": 3.419397116644823,
+ "grad_norm": 0.2960112988948822,
+ "learning_rate": 0.0006,
+ "loss": 5.750328063964844,
+ "step": 246
+ },
+ {
+ "epoch": 3.433377020532984,
+ "grad_norm": 0.3046723008155823,
+ "learning_rate": 0.0006,
+ "loss": 5.776517868041992,
+ "step": 247
+ },
+ {
+ "epoch": 3.4473569244211446,
+ "grad_norm": 0.22461780905723572,
+ "learning_rate": 0.0006,
+ "loss": 5.760989665985107,
+ "step": 248
+ },
+ {
+ "epoch": 3.4613368283093053,
+ "grad_norm": 0.24625757336616516,
+ "learning_rate": 0.0006,
+ "loss": 5.759706497192383,
+ "step": 249
+ },
+ {
+ "epoch": 3.475316732197466,
+ "grad_norm": 0.18207131326198578,
+ "learning_rate": 0.0006,
+ "loss": 5.747040748596191,
+ "step": 250
+ },
+ {
+ "epoch": 3.489296636085627,
+ "grad_norm": 0.16473834216594696,
+ "learning_rate": 0.0006,
+ "loss": 5.761577606201172,
+ "step": 251
+ },
+ {
+ "epoch": 3.5032765399737875,
+ "grad_norm": 0.25155773758888245,
+ "learning_rate": 0.0006,
+ "loss": 5.696502208709717,
+ "step": 252
+ },
+ {
+ "epoch": 3.5172564438619487,
+ "grad_norm": 0.24115674197673798,
+ "learning_rate": 0.0006,
+ "loss": 5.676957130432129,
+ "step": 253
+ },
+ {
+ "epoch": 3.5312363477501094,
+ "grad_norm": 0.40912172198295593,
+ "learning_rate": 0.0006,
+ "loss": 5.695090293884277,
+ "step": 254
+ },
+ {
+ "epoch": 3.54521625163827,
+ "grad_norm": 0.6727662682533264,
+ "learning_rate": 0.0006,
+ "loss": 5.722194671630859,
+ "step": 255
+ },
+ {
+ "epoch": 3.559196155526431,
+ "grad_norm": 0.8450719118118286,
+ "learning_rate": 0.0006,
+ "loss": 5.764680862426758,
+ "step": 256
+ },
+ {
+ "epoch": 3.5731760594145916,
+ "grad_norm": 0.9916183352470398,
+ "learning_rate": 0.0006,
+ "loss": 5.754530429840088,
+ "step": 257
+ },
+ {
+ "epoch": 3.5871559633027523,
+ "grad_norm": 1.041922688484192,
+ "learning_rate": 0.0006,
+ "loss": 5.781468391418457,
+ "step": 258
+ },
+ {
+ "epoch": 3.601135867190913,
+ "grad_norm": 0.972039520740509,
+ "learning_rate": 0.0006,
+ "loss": 5.760323524475098,
+ "step": 259
+ },
+ {
+ "epoch": 3.615115771079074,
+ "grad_norm": 0.6802462935447693,
+ "learning_rate": 0.0006,
+ "loss": 5.750064849853516,
+ "step": 260
+ },
+ {
+ "epoch": 3.6290956749672345,
+ "grad_norm": 0.48553529381752014,
+ "learning_rate": 0.0006,
+ "loss": 5.7464094161987305,
+ "step": 261
+ },
+ {
+ "epoch": 3.6430755788553952,
+ "grad_norm": 0.4066704213619232,
+ "learning_rate": 0.0006,
+ "loss": 5.719789505004883,
+ "step": 262
+ },
+ {
+ "epoch": 3.657055482743556,
+ "grad_norm": 0.3300860822200775,
+ "learning_rate": 0.0006,
+ "loss": 5.719920635223389,
+ "step": 263
+ },
+ {
+ "epoch": 3.6710353866317167,
+ "grad_norm": 0.3286679983139038,
+ "learning_rate": 0.0006,
+ "loss": 5.723465919494629,
+ "step": 264
+ },
+ {
+ "epoch": 3.6850152905198774,
+ "grad_norm": 0.27653390169143677,
+ "learning_rate": 0.0006,
+ "loss": 5.713820457458496,
+ "step": 265
+ },
+ {
+ "epoch": 3.6989951944080386,
+ "grad_norm": 0.26138055324554443,
+ "learning_rate": 0.0006,
+ "loss": 5.683221817016602,
+ "step": 266
+ },
+ {
+ "epoch": 3.7129750982961993,
+ "grad_norm": 0.23706290125846863,
+ "learning_rate": 0.0006,
+ "loss": 5.6896867752075195,
+ "step": 267
+ },
+ {
+ "epoch": 3.72695500218436,
+ "grad_norm": 0.2751729190349579,
+ "learning_rate": 0.0006,
+ "loss": 5.710301876068115,
+ "step": 268
+ },
+ {
+ "epoch": 3.7409349060725208,
+ "grad_norm": 0.255393385887146,
+ "learning_rate": 0.0006,
+ "loss": 5.687932968139648,
+ "step": 269
+ },
+ {
+ "epoch": 3.7549148099606815,
+ "grad_norm": 0.21453925967216492,
+ "learning_rate": 0.0006,
+ "loss": 5.68234395980835,
+ "step": 270
+ },
+ {
+ "epoch": 3.7688947138488422,
+ "grad_norm": 0.21771012246608734,
+ "learning_rate": 0.0006,
+ "loss": 5.683980464935303,
+ "step": 271
+ },
+ {
+ "epoch": 3.782874617737003,
+ "grad_norm": 0.1884593963623047,
+ "learning_rate": 0.0006,
+ "loss": 5.662779808044434,
+ "step": 272
+ },
+ {
+ "epoch": 3.7968545216251637,
+ "grad_norm": 0.20429612696170807,
+ "learning_rate": 0.0006,
+ "loss": 5.650941848754883,
+ "step": 273
+ },
+ {
+ "epoch": 3.810834425513325,
+ "grad_norm": 0.22586797177791595,
+ "learning_rate": 0.0006,
+ "loss": 5.639376640319824,
+ "step": 274
+ },
+ {
+ "epoch": 3.8248143294014856,
+ "grad_norm": 0.19651705026626587,
+ "learning_rate": 0.0006,
+ "loss": 5.612030029296875,
+ "step": 275
+ },
+ {
+ "epoch": 3.8387942332896463,
+ "grad_norm": 0.2125253826379776,
+ "learning_rate": 0.0006,
+ "loss": 5.622836589813232,
+ "step": 276
+ },
+ {
+ "epoch": 3.852774137177807,
+ "grad_norm": 0.2905234694480896,
+ "learning_rate": 0.0006,
+ "loss": 5.624594688415527,
+ "step": 277
+ },
+ {
+ "epoch": 3.8667540410659678,
+ "grad_norm": 0.2718426585197449,
+ "learning_rate": 0.0006,
+ "loss": 5.619892120361328,
+ "step": 278
+ },
+ {
+ "epoch": 3.8807339449541285,
+ "grad_norm": 0.26481127738952637,
+ "learning_rate": 0.0006,
+ "loss": 5.612496852874756,
+ "step": 279
+ },
+ {
+ "epoch": 3.894713848842289,
+ "grad_norm": 0.2876453399658203,
+ "learning_rate": 0.0006,
+ "loss": 5.59157133102417,
+ "step": 280
+ },
+ {
+ "epoch": 3.90869375273045,
+ "grad_norm": 0.22829554975032806,
+ "learning_rate": 0.0006,
+ "loss": 5.5884199142456055,
+ "step": 281
+ },
+ {
+ "epoch": 3.9226736566186107,
+ "grad_norm": 0.22852344810962677,
+ "learning_rate": 0.0006,
+ "loss": 5.618719100952148,
+ "step": 282
+ },
+ {
+ "epoch": 3.9366535605067714,
+ "grad_norm": 0.37366563081741333,
+ "learning_rate": 0.0006,
+ "loss": 5.611738204956055,
+ "step": 283
+ },
+ {
+ "epoch": 3.950633464394932,
+ "grad_norm": 0.5650382041931152,
+ "learning_rate": 0.0006,
+ "loss": 5.606371879577637,
+ "step": 284
+ },
+ {
+ "epoch": 3.964613368283093,
+ "grad_norm": 0.5960066914558411,
+ "learning_rate": 0.0006,
+ "loss": 5.595022201538086,
+ "step": 285
+ },
+ {
+ "epoch": 3.9785932721712536,
+ "grad_norm": 0.3561663031578064,
+ "learning_rate": 0.0006,
+ "loss": 5.581035614013672,
+ "step": 286
+ },
+ {
+ "epoch": 3.9925731760594148,
+ "grad_norm": 0.44699913263320923,
+ "learning_rate": 0.0006,
+ "loss": 5.568033218383789,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.42783990502357483,
+ "learning_rate": 0.0006,
+ "loss": 5.571993827819824,
+ "step": 288
+ },
+ {
+ "epoch": 4.0,
+ "eval_loss": 6.349016189575195,
+ "eval_runtime": 44.3326,
+ "eval_samples_per_second": 55.084,
+ "eval_steps_per_second": 3.451,
+ "step": 288
+ },
+ {
+ "epoch": 4.013979903888161,
+ "grad_norm": 0.41305896639823914,
+ "learning_rate": 0.0006,
+ "loss": 5.562954902648926,
+ "step": 289
+ },
+ {
+ "epoch": 4.0279598077763215,
+ "grad_norm": 0.3966459035873413,
+ "learning_rate": 0.0006,
+ "loss": 5.5671916007995605,
+ "step": 290
+ },
+ {
+ "epoch": 4.041939711664482,
+ "grad_norm": 0.4846104085445404,
+ "learning_rate": 0.0006,
+ "loss": 5.548027038574219,
+ "step": 291
+ },
+ {
+ "epoch": 4.055919615552643,
+ "grad_norm": 0.5916333794593811,
+ "learning_rate": 0.0006,
+ "loss": 5.5900068283081055,
+ "step": 292
+ },
+ {
+ "epoch": 4.069899519440804,
+ "grad_norm": 0.5973889231681824,
+ "learning_rate": 0.0006,
+ "loss": 5.537594795227051,
+ "step": 293
+ },
+ {
+ "epoch": 4.083879423328964,
+ "grad_norm": 0.4190494418144226,
+ "learning_rate": 0.0006,
+ "loss": 5.534749984741211,
+ "step": 294
+ },
+ {
+ "epoch": 4.097859327217125,
+ "grad_norm": 0.5956901907920837,
+ "learning_rate": 0.0006,
+ "loss": 5.554540634155273,
+ "step": 295
+ },
+ {
+ "epoch": 4.111839231105286,
+ "grad_norm": 0.8257920742034912,
+ "learning_rate": 0.0006,
+ "loss": 5.5728068351745605,
+ "step": 296
+ },
+ {
+ "epoch": 4.1258191349934465,
+ "grad_norm": 0.7241750955581665,
+ "learning_rate": 0.0006,
+ "loss": 5.5643815994262695,
+ "step": 297
+ },
+ {
+ "epoch": 4.139799038881607,
+ "grad_norm": 0.45730507373809814,
+ "learning_rate": 0.0006,
+ "loss": 5.554225921630859,
+ "step": 298
+ },
+ {
+ "epoch": 4.153778942769769,
+ "grad_norm": 0.5166977643966675,
+ "learning_rate": 0.0006,
+ "loss": 5.540790557861328,
+ "step": 299
+ },
+ {
+ "epoch": 4.16775884665793,
+ "grad_norm": 0.433237761259079,
+ "learning_rate": 0.0006,
+ "loss": 5.536884784698486,
+ "step": 300
+ },
+ {
+ "epoch": 4.18173875054609,
+ "grad_norm": 0.3369830250740051,
+ "learning_rate": 0.0006,
+ "loss": 5.532837867736816,
+ "step": 301
+ },
+ {
+ "epoch": 4.195718654434251,
+ "grad_norm": 0.33091458678245544,
+ "learning_rate": 0.0006,
+ "loss": 5.547643661499023,
+ "step": 302
+ },
+ {
+ "epoch": 4.209698558322412,
+ "grad_norm": 0.36462724208831787,
+ "learning_rate": 0.0006,
+ "loss": 5.525021076202393,
+ "step": 303
+ },
+ {
+ "epoch": 4.2236784622105725,
+ "grad_norm": 0.3342771530151367,
+ "learning_rate": 0.0006,
+ "loss": 5.512082099914551,
+ "step": 304
+ },
+ {
+ "epoch": 4.237658366098733,
+ "grad_norm": 0.26784762740135193,
+ "learning_rate": 0.0006,
+ "loss": 5.488072395324707,
+ "step": 305
+ },
+ {
+ "epoch": 4.251638269986894,
+ "grad_norm": 0.25986987352371216,
+ "learning_rate": 0.0006,
+ "loss": 5.4960455894470215,
+ "step": 306
+ },
+ {
+ "epoch": 4.265618173875055,
+ "grad_norm": 0.24595795571804047,
+ "learning_rate": 0.0006,
+ "loss": 5.513367176055908,
+ "step": 307
+ },
+ {
+ "epoch": 4.279598077763215,
+ "grad_norm": 0.2224857211112976,
+ "learning_rate": 0.0006,
+ "loss": 5.465205192565918,
+ "step": 308
+ },
+ {
+ "epoch": 4.293577981651376,
+ "grad_norm": 0.26799243688583374,
+ "learning_rate": 0.0006,
+ "loss": 5.476632118225098,
+ "step": 309
+ },
+ {
+ "epoch": 4.307557885539537,
+ "grad_norm": 0.20443417131900787,
+ "learning_rate": 0.0006,
+ "loss": 5.442601203918457,
+ "step": 310
+ },
+ {
+ "epoch": 4.321537789427698,
+ "grad_norm": 0.2275059074163437,
+ "learning_rate": 0.0006,
+ "loss": 5.453519344329834,
+ "step": 311
+ },
+ {
+ "epoch": 4.335517693315858,
+ "grad_norm": 0.2860901951789856,
+ "learning_rate": 0.0006,
+ "loss": 5.439424514770508,
+ "step": 312
+ },
+ {
+ "epoch": 4.349497597204019,
+ "grad_norm": 0.3378142714500427,
+ "learning_rate": 0.0006,
+ "loss": 5.476953983306885,
+ "step": 313
+ },
+ {
+ "epoch": 4.36347750109218,
+ "grad_norm": 0.3487110733985901,
+ "learning_rate": 0.0006,
+ "loss": 5.47003698348999,
+ "step": 314
+ },
+ {
+ "epoch": 4.3774574049803405,
+ "grad_norm": 0.3655227720737457,
+ "learning_rate": 0.0006,
+ "loss": 5.454250812530518,
+ "step": 315
+ },
+ {
+ "epoch": 4.391437308868501,
+ "grad_norm": 0.3754786252975464,
+ "learning_rate": 0.0006,
+ "loss": 5.475249290466309,
+ "step": 316
+ },
+ {
+ "epoch": 4.405417212756662,
+ "grad_norm": 0.42494088411331177,
+ "learning_rate": 0.0006,
+ "loss": 5.4552459716796875,
+ "step": 317
+ },
+ {
+ "epoch": 4.419397116644823,
+ "grad_norm": 0.4914703667163849,
+ "learning_rate": 0.0006,
+ "loss": 5.431845188140869,
+ "step": 318
+ },
+ {
+ "epoch": 4.433377020532983,
+ "grad_norm": 0.42470860481262207,
+ "learning_rate": 0.0006,
+ "loss": 5.454581260681152,
+ "step": 319
+ },
+ {
+ "epoch": 4.447356924421145,
+ "grad_norm": 0.3828011155128479,
+ "learning_rate": 0.0006,
+ "loss": 5.435178756713867,
+ "step": 320
+ },
+ {
+ "epoch": 4.461336828309306,
+ "grad_norm": 0.47256892919540405,
+ "learning_rate": 0.0006,
+ "loss": 5.428861618041992,
+ "step": 321
+ },
+ {
+ "epoch": 4.4753167321974665,
+ "grad_norm": 0.5665146708488464,
+ "learning_rate": 0.0006,
+ "loss": 5.424633026123047,
+ "step": 322
+ },
+ {
+ "epoch": 4.489296636085627,
+ "grad_norm": 0.48146721720695496,
+ "learning_rate": 0.0006,
+ "loss": 5.4577860832214355,
+ "step": 323
+ },
+ {
+ "epoch": 4.503276539973788,
+ "grad_norm": 0.3378535509109497,
+ "learning_rate": 0.0006,
+ "loss": 5.422727108001709,
+ "step": 324
+ },
+ {
+ "epoch": 4.517256443861949,
+ "grad_norm": 0.41981473565101624,
+ "learning_rate": 0.0006,
+ "loss": 5.418993949890137,
+ "step": 325
+ },
+ {
+ "epoch": 4.531236347750109,
+ "grad_norm": 0.39389684796333313,
+ "learning_rate": 0.0006,
+ "loss": 5.41835880279541,
+ "step": 326
+ },
+ {
+ "epoch": 4.54521625163827,
+ "grad_norm": 0.5912176370620728,
+ "learning_rate": 0.0006,
+ "loss": 5.40073299407959,
+ "step": 327
+ },
+ {
+ "epoch": 4.559196155526431,
+ "grad_norm": 0.6877487897872925,
+ "learning_rate": 0.0006,
+ "loss": 5.445301055908203,
+ "step": 328
+ },
+ {
+ "epoch": 4.573176059414592,
+ "grad_norm": 0.580555260181427,
+ "learning_rate": 0.0006,
+ "loss": 5.431069374084473,
+ "step": 329
+ },
+ {
+ "epoch": 4.587155963302752,
+ "grad_norm": 0.5974457859992981,
+ "learning_rate": 0.0006,
+ "loss": 5.422694206237793,
+ "step": 330
+ },
+ {
+ "epoch": 4.601135867190913,
+ "grad_norm": 0.722481906414032,
+ "learning_rate": 0.0006,
+ "loss": 5.447752952575684,
+ "step": 331
+ },
+ {
+ "epoch": 4.615115771079074,
+ "grad_norm": 0.7687886953353882,
+ "learning_rate": 0.0006,
+ "loss": 5.437956809997559,
+ "step": 332
+ },
+ {
+ "epoch": 4.6290956749672345,
+ "grad_norm": 0.7368173003196716,
+ "learning_rate": 0.0006,
+ "loss": 5.4367241859436035,
+ "step": 333
+ },
+ {
+ "epoch": 4.643075578855395,
+ "grad_norm": 0.6650524139404297,
+ "learning_rate": 0.0006,
+ "loss": 5.4288434982299805,
+ "step": 334
+ },
+ {
+ "epoch": 4.657055482743556,
+ "grad_norm": 0.4997614920139313,
+ "learning_rate": 0.0006,
+ "loss": 5.412769317626953,
+ "step": 335
+ },
+ {
+ "epoch": 4.671035386631717,
+ "grad_norm": 0.44208982586860657,
+ "learning_rate": 0.0006,
+ "loss": 5.42405366897583,
+ "step": 336
+ },
+ {
+ "epoch": 4.685015290519877,
+ "grad_norm": 0.39510273933410645,
+ "learning_rate": 0.0006,
+ "loss": 5.402547836303711,
+ "step": 337
+ },
+ {
+ "epoch": 4.698995194408038,
+ "grad_norm": 0.44970476627349854,
+ "learning_rate": 0.0006,
+ "loss": 5.377168655395508,
+ "step": 338
+ },
+ {
+ "epoch": 4.712975098296199,
+ "grad_norm": 0.3902331590652466,
+ "learning_rate": 0.0006,
+ "loss": 5.401622772216797,
+ "step": 339
+ },
+ {
+ "epoch": 4.72695500218436,
+ "grad_norm": 0.33485135436058044,
+ "learning_rate": 0.0006,
+ "loss": 5.397945880889893,
+ "step": 340
+ },
+ {
+ "epoch": 4.740934906072521,
+ "grad_norm": 0.29062309861183167,
+ "learning_rate": 0.0006,
+ "loss": 5.356175422668457,
+ "step": 341
+ },
+ {
+ "epoch": 4.754914809960681,
+ "grad_norm": 0.23617377877235413,
+ "learning_rate": 0.0006,
+ "loss": 5.388517379760742,
+ "step": 342
+ },
+ {
+ "epoch": 4.768894713848843,
+ "grad_norm": 0.2704737186431885,
+ "learning_rate": 0.0006,
+ "loss": 5.3746137619018555,
+ "step": 343
+ },
+ {
+ "epoch": 4.782874617737003,
+ "grad_norm": 0.20488551259040833,
+ "learning_rate": 0.0006,
+ "loss": 5.3754472732543945,
+ "step": 344
+ },
+ {
+ "epoch": 4.796854521625164,
+ "grad_norm": 0.2007082849740982,
+ "learning_rate": 0.0006,
+ "loss": 5.3538618087768555,
+ "step": 345
+ },
+ {
+ "epoch": 4.810834425513325,
+ "grad_norm": 0.21732935309410095,
+ "learning_rate": 0.0006,
+ "loss": 5.351774215698242,
+ "step": 346
+ },
+ {
+ "epoch": 4.824814329401486,
+ "grad_norm": 0.1944841742515564,
+ "learning_rate": 0.0006,
+ "loss": 5.357545852661133,
+ "step": 347
+ },
+ {
+ "epoch": 4.838794233289646,
+ "grad_norm": 0.1953933835029602,
+ "learning_rate": 0.0006,
+ "loss": 5.321681022644043,
+ "step": 348
+ },
+ {
+ "epoch": 4.852774137177807,
+ "grad_norm": 0.1743433028459549,
+ "learning_rate": 0.0006,
+ "loss": 5.340302467346191,
+ "step": 349
+ },
+ {
+ "epoch": 4.866754041065968,
+ "grad_norm": 0.19655466079711914,
+ "learning_rate": 0.0006,
+ "loss": 5.325471878051758,
+ "step": 350
+ },
+ {
+ "epoch": 4.8807339449541285,
+ "grad_norm": 0.15761791169643402,
+ "learning_rate": 0.0006,
+ "loss": 5.3453240394592285,
+ "step": 351
+ },
+ {
+ "epoch": 4.894713848842289,
+ "grad_norm": 0.19164425134658813,
+ "learning_rate": 0.0006,
+ "loss": 5.315583229064941,
+ "step": 352
+ },
+ {
+ "epoch": 4.90869375273045,
+ "grad_norm": 0.28084540367126465,
+ "learning_rate": 0.0006,
+ "loss": 5.309171676635742,
+ "step": 353
+ },
+ {
+ "epoch": 4.922673656618611,
+ "grad_norm": 0.4681853652000427,
+ "learning_rate": 0.0006,
+ "loss": 5.318211078643799,
+ "step": 354
+ },
+ {
+ "epoch": 4.936653560506771,
+ "grad_norm": 0.6417295932769775,
+ "learning_rate": 0.0006,
+ "loss": 5.309263706207275,
+ "step": 355
+ },
+ {
+ "epoch": 4.950633464394932,
+ "grad_norm": 0.501312792301178,
+ "learning_rate": 0.0006,
+ "loss": 5.321534156799316,
+ "step": 356
+ },
+ {
+ "epoch": 4.964613368283093,
+ "grad_norm": 0.47502145171165466,
+ "learning_rate": 0.0006,
+ "loss": 5.323659896850586,
+ "step": 357
+ },
+ {
+ "epoch": 4.978593272171254,
+ "grad_norm": 0.5366594791412354,
+ "learning_rate": 0.0006,
+ "loss": 5.327367782592773,
+ "step": 358
+ },
+ {
+ "epoch": 4.992573176059414,
+ "grad_norm": 0.6986395120620728,
+ "learning_rate": 0.0006,
+ "loss": 5.311097145080566,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.6626625657081604,
+ "learning_rate": 0.0006,
+ "loss": 5.337558269500732,
+ "step": 360
+ },
+ {
+ "epoch": 5.0,
+ "eval_loss": 5.929230690002441,
+ "eval_runtime": 44.5268,
+ "eval_samples_per_second": 54.843,
+ "eval_steps_per_second": 3.436,
+ "step": 360
+ },
+ {
+ "epoch": 5.013979903888161,
+ "grad_norm": 0.7383704781532288,
+ "learning_rate": 0.0006,
+ "loss": 5.315563678741455,
+ "step": 361
+ },
+ {
+ "epoch": 5.0279598077763215,
+ "grad_norm": 0.7730138301849365,
+ "learning_rate": 0.0006,
+ "loss": 5.324905872344971,
+ "step": 362
+ },
+ {
+ "epoch": 5.041939711664482,
+ "grad_norm": 0.8170825839042664,
+ "learning_rate": 0.0006,
+ "loss": 5.350251197814941,
+ "step": 363
+ },
+ {
+ "epoch": 5.055919615552643,
+ "grad_norm": 0.6950958371162415,
+ "learning_rate": 0.0006,
+ "loss": 5.338744163513184,
+ "step": 364
+ },
+ {
+ "epoch": 5.069899519440804,
+ "grad_norm": 0.5582894086837769,
+ "learning_rate": 0.0006,
+ "loss": 5.340539932250977,
+ "step": 365
+ },
+ {
+ "epoch": 5.083879423328964,
+ "grad_norm": 0.4772159159183502,
+ "learning_rate": 0.0006,
+ "loss": 5.344161033630371,
+ "step": 366
+ },
+ {
+ "epoch": 5.097859327217125,
+ "grad_norm": 0.5432839393615723,
+ "learning_rate": 0.0006,
+ "loss": 5.312403678894043,
+ "step": 367
+ },
+ {
+ "epoch": 5.111839231105286,
+ "grad_norm": 0.4944784641265869,
+ "learning_rate": 0.0006,
+ "loss": 5.30281925201416,
+ "step": 368
+ },
+ {
+ "epoch": 5.1258191349934465,
+ "grad_norm": 0.4298315942287445,
+ "learning_rate": 0.0006,
+ "loss": 5.29564094543457,
+ "step": 369
+ },
+ {
+ "epoch": 5.139799038881607,
+ "grad_norm": 0.349889874458313,
+ "learning_rate": 0.0006,
+ "loss": 5.287062644958496,
+ "step": 370
+ },
+ {
+ "epoch": 5.153778942769769,
+ "grad_norm": 0.2823719084262848,
+ "learning_rate": 0.0006,
+ "loss": 5.28826904296875,
+ "step": 371
+ },
+ {
+ "epoch": 5.16775884665793,
+ "grad_norm": 0.32975050806999207,
+ "learning_rate": 0.0006,
+ "loss": 5.256399631500244,
+ "step": 372
+ },
+ {
+ "epoch": 5.18173875054609,
+ "grad_norm": 0.2963952124118805,
+ "learning_rate": 0.0006,
+ "loss": 5.273757457733154,
+ "step": 373
+ },
+ {
+ "epoch": 5.195718654434251,
+ "grad_norm": 0.21345984935760498,
+ "learning_rate": 0.0006,
+ "loss": 5.274978160858154,
+ "step": 374
+ },
+ {
+ "epoch": 5.209698558322412,
+ "grad_norm": 0.2363101840019226,
+ "learning_rate": 0.0006,
+ "loss": 5.261585235595703,
+ "step": 375
+ },
+ {
+ "epoch": 5.2236784622105725,
+ "grad_norm": 0.19626963138580322,
+ "learning_rate": 0.0006,
+ "loss": 5.259700298309326,
+ "step": 376
+ },
+ {
+ "epoch": 5.237658366098733,
+ "grad_norm": 0.21083571016788483,
+ "learning_rate": 0.0006,
+ "loss": 5.233585357666016,
+ "step": 377
+ },
+ {
+ "epoch": 5.251638269986894,
+ "grad_norm": 0.2273513823747635,
+ "learning_rate": 0.0006,
+ "loss": 5.231740474700928,
+ "step": 378
+ },
+ {
+ "epoch": 5.265618173875055,
+ "grad_norm": 0.18299247324466705,
+ "learning_rate": 0.0006,
+ "loss": 5.251256465911865,
+ "step": 379
+ },
+ {
+ "epoch": 5.279598077763215,
+ "grad_norm": 0.19578224420547485,
+ "learning_rate": 0.0006,
+ "loss": 5.230329513549805,
+ "step": 380
+ },
+ {
+ "epoch": 5.293577981651376,
+ "grad_norm": 0.20308879017829895,
+ "learning_rate": 0.0006,
+ "loss": 5.243951797485352,
+ "step": 381
+ },
+ {
+ "epoch": 5.307557885539537,
+ "grad_norm": 0.21053212881088257,
+ "learning_rate": 0.0006,
+ "loss": 5.210272789001465,
+ "step": 382
+ },
+ {
+ "epoch": 5.321537789427698,
+ "grad_norm": 0.21852520108222961,
+ "learning_rate": 0.0006,
+ "loss": 5.215418815612793,
+ "step": 383
+ },
+ {
+ "epoch": 5.335517693315858,
+ "grad_norm": 0.24872010946273804,
+ "learning_rate": 0.0006,
+ "loss": 5.225139617919922,
+ "step": 384
+ },
+ {
+ "epoch": 5.349497597204019,
+ "grad_norm": 0.27780187129974365,
+ "learning_rate": 0.0006,
+ "loss": 5.241010665893555,
+ "step": 385
+ },
+ {
+ "epoch": 5.36347750109218,
+ "grad_norm": 0.261767715215683,
+ "learning_rate": 0.0006,
+ "loss": 5.230723857879639,
+ "step": 386
+ },
+ {
+ "epoch": 5.3774574049803405,
+ "grad_norm": 0.2111261785030365,
+ "learning_rate": 0.0006,
+ "loss": 5.1848602294921875,
+ "step": 387
+ },
+ {
+ "epoch": 5.391437308868501,
+ "grad_norm": 0.24325387179851532,
+ "learning_rate": 0.0006,
+ "loss": 5.180911064147949,
+ "step": 388
+ },
+ {
+ "epoch": 5.405417212756662,
+ "grad_norm": 0.19542962312698364,
+ "learning_rate": 0.0006,
+ "loss": 5.189907073974609,
+ "step": 389
+ },
+ {
+ "epoch": 5.419397116644823,
+ "grad_norm": 0.20489346981048584,
+ "learning_rate": 0.0006,
+ "loss": 5.184634208679199,
+ "step": 390
+ },
+ {
+ "epoch": 5.433377020532983,
+ "grad_norm": 0.2753409147262573,
+ "learning_rate": 0.0006,
+ "loss": 5.190083026885986,
+ "step": 391
+ },
+ {
+ "epoch": 5.447356924421145,
+ "grad_norm": 0.3758019208908081,
+ "learning_rate": 0.0006,
+ "loss": 5.189423561096191,
+ "step": 392
+ },
+ {
+ "epoch": 5.461336828309306,
+ "grad_norm": 0.4425095021724701,
+ "learning_rate": 0.0006,
+ "loss": 5.17152214050293,
+ "step": 393
+ },
+ {
+ "epoch": 5.4753167321974665,
+ "grad_norm": 0.39721858501434326,
+ "learning_rate": 0.0006,
+ "loss": 5.189178466796875,
+ "step": 394
+ },
+ {
+ "epoch": 5.489296636085627,
+ "grad_norm": 0.43441957235336304,
+ "learning_rate": 0.0006,
+ "loss": 5.1823577880859375,
+ "step": 395
+ },
+ {
+ "epoch": 5.503276539973788,
+ "grad_norm": 0.3583861291408539,
+ "learning_rate": 0.0006,
+ "loss": 5.160187721252441,
+ "step": 396
+ },
+ {
+ "epoch": 5.517256443861949,
+ "grad_norm": 0.323290079832077,
+ "learning_rate": 0.0006,
+ "loss": 5.113046646118164,
+ "step": 397
+ },
+ {
+ "epoch": 5.531236347750109,
+ "grad_norm": 0.3049418330192566,
+ "learning_rate": 0.0006,
+ "loss": 5.172209739685059,
+ "step": 398
+ },
+ {
+ "epoch": 5.54521625163827,
+ "grad_norm": 0.3253744840621948,
+ "learning_rate": 0.0006,
+ "loss": 5.1970720291137695,
+ "step": 399
+ },
+ {
+ "epoch": 5.559196155526431,
+ "grad_norm": 0.3232555091381073,
+ "learning_rate": 0.0006,
+ "loss": 5.173195838928223,
+ "step": 400
+ },
+ {
+ "epoch": 5.573176059414592,
+ "grad_norm": 0.33751845359802246,
+ "learning_rate": 0.0006,
+ "loss": 5.137526988983154,
+ "step": 401
+ },
+ {
+ "epoch": 5.587155963302752,
+ "grad_norm": 0.45970913767814636,
+ "learning_rate": 0.0006,
+ "loss": 5.123377799987793,
+ "step": 402
+ },
+ {
+ "epoch": 5.601135867190913,
+ "grad_norm": 0.5383784770965576,
+ "learning_rate": 0.0006,
+ "loss": 5.154180526733398,
+ "step": 403
+ },
+ {
+ "epoch": 5.615115771079074,
+ "grad_norm": 0.45765912532806396,
+ "learning_rate": 0.0006,
+ "loss": 5.1485209465026855,
+ "step": 404
+ },
+ {
+ "epoch": 5.6290956749672345,
+ "grad_norm": 0.5079503059387207,
+ "learning_rate": 0.0006,
+ "loss": 5.158293724060059,
+ "step": 405
+ },
+ {
+ "epoch": 5.643075578855395,
+ "grad_norm": 0.4860183894634247,
+ "learning_rate": 0.0006,
+ "loss": 5.1610212326049805,
+ "step": 406
+ },
+ {
+ "epoch": 5.657055482743556,
+ "grad_norm": 0.4065648913383484,
+ "learning_rate": 0.0006,
+ "loss": 5.1260786056518555,
+ "step": 407
+ },
+ {
+ "epoch": 5.671035386631717,
+ "grad_norm": 0.39606142044067383,
+ "learning_rate": 0.0006,
+ "loss": 5.1598711013793945,
+ "step": 408
+ },
+ {
+ "epoch": 5.685015290519877,
+ "grad_norm": 0.4705151319503784,
+ "learning_rate": 0.0006,
+ "loss": 5.166455268859863,
+ "step": 409
+ },
+ {
+ "epoch": 5.698995194408038,
+ "grad_norm": 0.5040799379348755,
+ "learning_rate": 0.0006,
+ "loss": 5.1408209800720215,
+ "step": 410
+ },
+ {
+ "epoch": 5.712975098296199,
+ "grad_norm": 0.5012556910514832,
+ "learning_rate": 0.0006,
+ "loss": 5.144109725952148,
+ "step": 411
+ },
+ {
+ "epoch": 5.72695500218436,
+ "grad_norm": 0.44301411509513855,
+ "learning_rate": 0.0006,
+ "loss": 5.155509948730469,
+ "step": 412
+ },
+ {
+ "epoch": 5.740934906072521,
+ "grad_norm": 0.36632269620895386,
+ "learning_rate": 0.0006,
+ "loss": 5.123111248016357,
+ "step": 413
+ },
+ {
+ "epoch": 5.754914809960681,
+ "grad_norm": 0.2980524003505707,
+ "learning_rate": 0.0006,
+ "loss": 5.1355719566345215,
+ "step": 414
+ },
+ {
+ "epoch": 5.768894713848843,
+ "grad_norm": 0.3441782295703888,
+ "learning_rate": 0.0006,
+ "loss": 5.132327079772949,
+ "step": 415
+ },
+ {
+ "epoch": 5.782874617737003,
+ "grad_norm": 0.4150780737400055,
+ "learning_rate": 0.0006,
+ "loss": 5.148543357849121,
+ "step": 416
+ },
+ {
+ "epoch": 5.796854521625164,
+ "grad_norm": 0.48417383432388306,
+ "learning_rate": 0.0006,
+ "loss": 5.104989528656006,
+ "step": 417
+ },
+ {
+ "epoch": 5.810834425513325,
+ "grad_norm": 0.3216031491756439,
+ "learning_rate": 0.0006,
+ "loss": 5.0926127433776855,
+ "step": 418
+ },
+ {
+ "epoch": 5.824814329401486,
+ "grad_norm": 0.2821158468723297,
+ "learning_rate": 0.0006,
+ "loss": 5.112299919128418,
+ "step": 419
+ },
+ {
+ "epoch": 5.838794233289646,
+ "grad_norm": 0.29821011424064636,
+ "learning_rate": 0.0006,
+ "loss": 5.091662406921387,
+ "step": 420
+ },
+ {
+ "epoch": 5.852774137177807,
+ "grad_norm": 0.30570563673973083,
+ "learning_rate": 0.0006,
+ "loss": 5.137539863586426,
+ "step": 421
+ },
+ {
+ "epoch": 5.866754041065968,
+ "grad_norm": 0.4029594957828522,
+ "learning_rate": 0.0006,
+ "loss": 5.112751007080078,
+ "step": 422
+ },
+ {
+ "epoch": 5.8807339449541285,
+ "grad_norm": 0.3878514766693115,
+ "learning_rate": 0.0006,
+ "loss": 5.094973564147949,
+ "step": 423
+ },
+ {
+ "epoch": 5.894713848842289,
+ "grad_norm": 0.31936126947402954,
+ "learning_rate": 0.0006,
+ "loss": 5.081070899963379,
+ "step": 424
+ },
+ {
+ "epoch": 5.90869375273045,
+ "grad_norm": 0.3309082090854645,
+ "learning_rate": 0.0006,
+ "loss": 5.06803560256958,
+ "step": 425
+ },
+ {
+ "epoch": 5.922673656618611,
+ "grad_norm": 0.27830439805984497,
+ "learning_rate": 0.0006,
+ "loss": 5.044766426086426,
+ "step": 426
+ },
+ {
+ "epoch": 5.936653560506771,
+ "grad_norm": 0.3301011919975281,
+ "learning_rate": 0.0006,
+ "loss": 5.093942165374756,
+ "step": 427
+ },
+ {
+ "epoch": 5.950633464394932,
+ "grad_norm": 0.40845948457717896,
+ "learning_rate": 0.0006,
+ "loss": 5.0889458656311035,
+ "step": 428
+ },
+ {
+ "epoch": 5.964613368283093,
+ "grad_norm": 0.4412153959274292,
+ "learning_rate": 0.0006,
+ "loss": 5.064834117889404,
+ "step": 429
+ },
+ {
+ "epoch": 5.978593272171254,
+ "grad_norm": 0.3592590093612671,
+ "learning_rate": 0.0006,
+ "loss": 5.066648006439209,
+ "step": 430
+ },
+ {
+ "epoch": 5.992573176059414,
+ "grad_norm": 0.3952840268611908,
+ "learning_rate": 0.0006,
+ "loss": 5.066549301147461,
+ "step": 431
+ },
+ {
+ "epoch": 6.0,
+ "grad_norm": 0.38878682255744934,
+ "learning_rate": 0.0006,
+ "loss": 5.0354323387146,
+ "step": 432
+ },
+ {
+ "epoch": 6.0,
+ "eval_loss": 5.473907947540283,
+ "eval_runtime": 44.5121,
+ "eval_samples_per_second": 54.861,
+ "eval_steps_per_second": 3.437,
+ "step": 432
+ },
+ {
+ "epoch": 6.013979903888161,
+ "grad_norm": 0.42730140686035156,
+ "learning_rate": 0.0006,
+ "loss": 5.048557281494141,
+ "step": 433
+ },
+ {
+ "epoch": 6.0279598077763215,
+ "grad_norm": 0.32713913917541504,
+ "learning_rate": 0.0006,
+ "loss": 5.041255950927734,
+ "step": 434
+ },
+ {
+ "epoch": 6.041939711664482,
+ "grad_norm": 0.32520365715026855,
+ "learning_rate": 0.0006,
+ "loss": 5.043124198913574,
+ "step": 435
+ },
+ {
+ "epoch": 6.055919615552643,
+ "grad_norm": 0.2941839098930359,
+ "learning_rate": 0.0006,
+ "loss": 5.0407304763793945,
+ "step": 436
+ },
+ {
+ "epoch": 6.069899519440804,
+ "grad_norm": 0.3088819682598114,
+ "learning_rate": 0.0006,
+ "loss": 5.020771026611328,
+ "step": 437
+ },
+ {
+ "epoch": 6.083879423328964,
+ "grad_norm": 0.34334254264831543,
+ "learning_rate": 0.0006,
+ "loss": 5.0260009765625,
+ "step": 438
+ },
+ {
+ "epoch": 6.097859327217125,
+ "grad_norm": 0.33016136288642883,
+ "learning_rate": 0.0006,
+ "loss": 4.994412899017334,
+ "step": 439
+ },
+ {
+ "epoch": 6.111839231105286,
+ "grad_norm": 0.2527366280555725,
+ "learning_rate": 0.0006,
+ "loss": 4.997830390930176,
+ "step": 440
+ },
+ {
+ "epoch": 6.1258191349934465,
+ "grad_norm": 0.24742509424686432,
+ "learning_rate": 0.0006,
+ "loss": 5.017087936401367,
+ "step": 441
+ },
+ {
+ "epoch": 6.139799038881607,
+ "grad_norm": 0.22578303515911102,
+ "learning_rate": 0.0006,
+ "loss": 5.000683784484863,
+ "step": 442
+ },
+ {
+ "epoch": 6.153778942769769,
+ "grad_norm": 0.21213896572589874,
+ "learning_rate": 0.0006,
+ "loss": 4.993280410766602,
+ "step": 443
+ },
+ {
+ "epoch": 6.16775884665793,
+ "grad_norm": 0.22559592127799988,
+ "learning_rate": 0.0006,
+ "loss": 5.005735874176025,
+ "step": 444
+ },
+ {
+ "epoch": 6.18173875054609,
+ "grad_norm": 0.18574322760105133,
+ "learning_rate": 0.0006,
+ "loss": 4.996601104736328,
+ "step": 445
+ },
+ {
+ "epoch": 6.195718654434251,
+ "grad_norm": 0.1793852299451828,
+ "learning_rate": 0.0006,
+ "loss": 4.977394104003906,
+ "step": 446
+ },
+ {
+ "epoch": 6.209698558322412,
+ "grad_norm": 0.1851297914981842,
+ "learning_rate": 0.0006,
+ "loss": 4.983541488647461,
+ "step": 447
+ },
+ {
+ "epoch": 6.2236784622105725,
+ "grad_norm": 0.2045268565416336,
+ "learning_rate": 0.0006,
+ "loss": 4.992830276489258,
+ "step": 448
+ },
+ {
+ "epoch": 6.237658366098733,
+ "grad_norm": 0.21707463264465332,
+ "learning_rate": 0.0006,
+ "loss": 4.998589515686035,
+ "step": 449
+ },
+ {
+ "epoch": 6.251638269986894,
+ "grad_norm": 0.2805860638618469,
+ "learning_rate": 0.0006,
+ "loss": 4.973134517669678,
+ "step": 450
+ },
+ {
+ "epoch": 6.265618173875055,
+ "grad_norm": 0.33102089166641235,
+ "learning_rate": 0.0006,
+ "loss": 4.957348823547363,
+ "step": 451
+ },
+ {
+ "epoch": 6.279598077763215,
+ "grad_norm": 0.3763096034526825,
+ "learning_rate": 0.0006,
+ "loss": 5.0133256912231445,
+ "step": 452
+ },
+ {
+ "epoch": 6.293577981651376,
+ "grad_norm": 0.4676196575164795,
+ "learning_rate": 0.0006,
+ "loss": 4.972289562225342,
+ "step": 453
+ },
+ {
+ "epoch": 6.307557885539537,
+ "grad_norm": 0.6158978343009949,
+ "learning_rate": 0.0006,
+ "loss": 4.989326477050781,
+ "step": 454
+ },
+ {
+ "epoch": 6.321537789427698,
+ "grad_norm": 0.537460446357727,
+ "learning_rate": 0.0006,
+ "loss": 5.0210676193237305,
+ "step": 455
+ },
+ {
+ "epoch": 6.335517693315858,
+ "grad_norm": 0.5342532396316528,
+ "learning_rate": 0.0006,
+ "loss": 4.988524436950684,
+ "step": 456
+ },
+ {
+ "epoch": 6.349497597204019,
+ "grad_norm": 0.5736384987831116,
+ "learning_rate": 0.0006,
+ "loss": 4.977508068084717,
+ "step": 457
+ },
+ {
+ "epoch": 6.36347750109218,
+ "grad_norm": 0.6656201481819153,
+ "learning_rate": 0.0006,
+ "loss": 5.047934055328369,
+ "step": 458
+ },
+ {
+ "epoch": 6.3774574049803405,
+ "grad_norm": 0.6388342380523682,
+ "learning_rate": 0.0006,
+ "loss": 5.017617225646973,
+ "step": 459
+ },
+ {
+ "epoch": 6.391437308868501,
+ "grad_norm": 0.6620904207229614,
+ "learning_rate": 0.0006,
+ "loss": 5.032195091247559,
+ "step": 460
+ },
+ {
+ "epoch": 6.405417212756662,
+ "grad_norm": 0.693274974822998,
+ "learning_rate": 0.0006,
+ "loss": 5.02433967590332,
+ "step": 461
+ },
+ {
+ "epoch": 6.419397116644823,
+ "grad_norm": 0.6888924241065979,
+ "learning_rate": 0.0006,
+ "loss": 5.010735511779785,
+ "step": 462
+ },
+ {
+ "epoch": 6.433377020532983,
+ "grad_norm": 0.7181721925735474,
+ "learning_rate": 0.0006,
+ "loss": 5.049690246582031,
+ "step": 463
+ },
+ {
+ "epoch": 6.447356924421145,
+ "grad_norm": 0.7225117087364197,
+ "learning_rate": 0.0006,
+ "loss": 5.031939506530762,
+ "step": 464
+ },
+ {
+ "epoch": 6.461336828309306,
+ "grad_norm": 0.5268304347991943,
+ "learning_rate": 0.0006,
+ "loss": 5.01638126373291,
+ "step": 465
+ },
+ {
+ "epoch": 6.4753167321974665,
+ "grad_norm": 0.38218435645103455,
+ "learning_rate": 0.0006,
+ "loss": 4.997034072875977,
+ "step": 466
+ },
+ {
+ "epoch": 6.489296636085627,
+ "grad_norm": 0.3576396703720093,
+ "learning_rate": 0.0006,
+ "loss": 5.006804943084717,
+ "step": 467
+ },
+ {
+ "epoch": 6.503276539973788,
+ "grad_norm": 0.3305981755256653,
+ "learning_rate": 0.0006,
+ "loss": 4.994671821594238,
+ "step": 468
+ },
+ {
+ "epoch": 6.517256443861949,
+ "grad_norm": 0.3254900574684143,
+ "learning_rate": 0.0006,
+ "loss": 4.9747490882873535,
+ "step": 469
+ },
+ {
+ "epoch": 6.531236347750109,
+ "grad_norm": 0.2655033469200134,
+ "learning_rate": 0.0006,
+ "loss": 5.002863883972168,
+ "step": 470
+ },
+ {
+ "epoch": 6.54521625163827,
+ "grad_norm": 0.2620532810688019,
+ "learning_rate": 0.0006,
+ "loss": 4.9813337326049805,
+ "step": 471
+ },
+ {
+ "epoch": 6.559196155526431,
+ "grad_norm": 0.22128869593143463,
+ "learning_rate": 0.0006,
+ "loss": 4.978368759155273,
+ "step": 472
+ },
+ {
+ "epoch": 6.573176059414592,
+ "grad_norm": 0.22638699412345886,
+ "learning_rate": 0.0006,
+ "loss": 4.944509029388428,
+ "step": 473
+ },
+ {
+ "epoch": 6.587155963302752,
+ "grad_norm": 0.20720207691192627,
+ "learning_rate": 0.0006,
+ "loss": 4.98404598236084,
+ "step": 474
+ },
+ {
+ "epoch": 6.601135867190913,
+ "grad_norm": 0.21577289700508118,
+ "learning_rate": 0.0006,
+ "loss": 4.958878040313721,
+ "step": 475
+ },
+ {
+ "epoch": 6.615115771079074,
+ "grad_norm": 0.22453972697257996,
+ "learning_rate": 0.0006,
+ "loss": 4.935467720031738,
+ "step": 476
+ },
+ {
+ "epoch": 6.6290956749672345,
+ "grad_norm": 0.20757712423801422,
+ "learning_rate": 0.0006,
+ "loss": 4.943334579467773,
+ "step": 477
+ },
+ {
+ "epoch": 6.643075578855395,
+ "grad_norm": 0.22808043658733368,
+ "learning_rate": 0.0006,
+ "loss": 4.936544418334961,
+ "step": 478
+ },
+ {
+ "epoch": 6.657055482743556,
+ "grad_norm": 0.2193756401538849,
+ "learning_rate": 0.0006,
+ "loss": 4.938162326812744,
+ "step": 479
+ },
+ {
+ "epoch": 6.671035386631717,
+ "grad_norm": 0.19677500426769257,
+ "learning_rate": 0.0006,
+ "loss": 4.9026713371276855,
+ "step": 480
+ },
+ {
+ "epoch": 6.685015290519877,
+ "grad_norm": 0.17271658778190613,
+ "learning_rate": 0.0006,
+ "loss": 4.912519454956055,
+ "step": 481
+ },
+ {
+ "epoch": 6.698995194408038,
+ "grad_norm": 0.17551499605178833,
+ "learning_rate": 0.0006,
+ "loss": 4.929941177368164,
+ "step": 482
+ },
+ {
+ "epoch": 6.712975098296199,
+ "grad_norm": 0.1582687348127365,
+ "learning_rate": 0.0006,
+ "loss": 4.908967971801758,
+ "step": 483
+ },
+ {
+ "epoch": 6.72695500218436,
+ "grad_norm": 0.1593410074710846,
+ "learning_rate": 0.0006,
+ "loss": 4.901554107666016,
+ "step": 484
+ },
+ {
+ "epoch": 6.740934906072521,
+ "grad_norm": 0.16746895015239716,
+ "learning_rate": 0.0006,
+ "loss": 4.917915344238281,
+ "step": 485
+ },
+ {
+ "epoch": 6.754914809960681,
+ "grad_norm": 0.17066062986850739,
+ "learning_rate": 0.0006,
+ "loss": 4.912853240966797,
+ "step": 486
+ },
+ {
+ "epoch": 6.768894713848843,
+ "grad_norm": 0.16727769374847412,
+ "learning_rate": 0.0006,
+ "loss": 4.895434856414795,
+ "step": 487
+ },
+ {
+ "epoch": 6.782874617737003,
+ "grad_norm": 0.1784558743238449,
+ "learning_rate": 0.0006,
+ "loss": 4.8805341720581055,
+ "step": 488
+ },
+ {
+ "epoch": 6.796854521625164,
+ "grad_norm": 0.176686093211174,
+ "learning_rate": 0.0006,
+ "loss": 4.855296611785889,
+ "step": 489
+ },
+ {
+ "epoch": 6.810834425513325,
+ "grad_norm": 0.21577849984169006,
+ "learning_rate": 0.0006,
+ "loss": 4.885506629943848,
+ "step": 490
+ },
+ {
+ "epoch": 6.824814329401486,
+ "grad_norm": 0.27615776658058167,
+ "learning_rate": 0.0006,
+ "loss": 4.913756847381592,
+ "step": 491
+ },
+ {
+ "epoch": 6.838794233289646,
+ "grad_norm": 0.3653675615787506,
+ "learning_rate": 0.0006,
+ "loss": 4.880918979644775,
+ "step": 492
+ },
+ {
+ "epoch": 6.852774137177807,
+ "grad_norm": 0.41473883390426636,
+ "learning_rate": 0.0006,
+ "loss": 4.894164562225342,
+ "step": 493
+ },
+ {
+ "epoch": 6.866754041065968,
+ "grad_norm": 0.45850715041160583,
+ "learning_rate": 0.0006,
+ "loss": 4.907922744750977,
+ "step": 494
+ },
+ {
+ "epoch": 6.8807339449541285,
+ "grad_norm": 0.4675290882587433,
+ "learning_rate": 0.0006,
+ "loss": 4.883112907409668,
+ "step": 495
+ },
+ {
+ "epoch": 6.894713848842289,
+ "grad_norm": 0.45795994997024536,
+ "learning_rate": 0.0006,
+ "loss": 4.897843360900879,
+ "step": 496
+ },
+ {
+ "epoch": 6.90869375273045,
+ "grad_norm": 0.46130508184432983,
+ "learning_rate": 0.0006,
+ "loss": 4.890612602233887,
+ "step": 497
+ },
+ {
+ "epoch": 6.922673656618611,
+ "grad_norm": 0.44783803820610046,
+ "learning_rate": 0.0006,
+ "loss": 4.880192756652832,
+ "step": 498
+ },
+ {
+ "epoch": 6.936653560506771,
+ "grad_norm": 0.35361284017562866,
+ "learning_rate": 0.0006,
+ "loss": 4.840778350830078,
+ "step": 499
+ },
+ {
+ "epoch": 6.950633464394932,
+ "grad_norm": 0.34027689695358276,
+ "learning_rate": 0.0006,
+ "loss": 4.871222496032715,
+ "step": 500
+ },
+ {
+ "epoch": 6.964613368283093,
+ "grad_norm": 0.30228909850120544,
+ "learning_rate": 0.0006,
+ "loss": 4.868077278137207,
+ "step": 501
+ },
+ {
+ "epoch": 6.978593272171254,
+ "grad_norm": 0.27706998586654663,
+ "learning_rate": 0.0006,
+ "loss": 4.895936012268066,
+ "step": 502
+ },
+ {
+ "epoch": 6.992573176059414,
+ "grad_norm": 0.3516870439052582,
+ "learning_rate": 0.0006,
+ "loss": 4.824636459350586,
+ "step": 503
+ },
+ {
+ "epoch": 7.0,
+ "grad_norm": 0.36831387877464294,
+ "learning_rate": 0.0006,
+ "loss": 4.874397277832031,
+ "step": 504
+ },
+ {
+ "epoch": 7.0,
+ "eval_loss": 5.176281452178955,
+ "eval_runtime": 44.2386,
+ "eval_samples_per_second": 55.201,
+ "eval_steps_per_second": 3.459,
+ "step": 504
+ },
+ {
+ "epoch": 7.013979903888161,
+ "grad_norm": 0.4265240430831909,
+ "learning_rate": 0.0006,
+ "loss": 4.814333438873291,
+ "step": 505
+ },
+ {
+ "epoch": 7.0279598077763215,
+ "grad_norm": 0.5126975774765015,
+ "learning_rate": 0.0006,
+ "loss": 4.852343559265137,
+ "step": 506
+ },
+ {
+ "epoch": 7.041939711664482,
+ "grad_norm": 0.43080806732177734,
+ "learning_rate": 0.0006,
+ "loss": 4.843439102172852,
+ "step": 507
+ },
+ {
+ "epoch": 7.055919615552643,
+ "grad_norm": 0.43170198798179626,
+ "learning_rate": 0.0006,
+ "loss": 4.845984935760498,
+ "step": 508
+ },
+ {
+ "epoch": 7.069899519440804,
+ "grad_norm": 0.5640552043914795,
+ "learning_rate": 0.0006,
+ "loss": 4.840991973876953,
+ "step": 509
+ },
+ {
+ "epoch": 7.083879423328964,
+ "grad_norm": 0.540381133556366,
+ "learning_rate": 0.0006,
+ "loss": 4.801316738128662,
+ "step": 510
+ },
+ {
+ "epoch": 7.097859327217125,
+ "grad_norm": 0.5412097573280334,
+ "learning_rate": 0.0006,
+ "loss": 4.886598587036133,
+ "step": 511
+ },
+ {
+ "epoch": 7.111839231105286,
+ "grad_norm": 0.630648136138916,
+ "learning_rate": 0.0006,
+ "loss": 4.849774360656738,
+ "step": 512
+ },
+ {
+ "epoch": 7.1258191349934465,
+ "grad_norm": 0.569952130317688,
+ "learning_rate": 0.0006,
+ "loss": 4.870607376098633,
+ "step": 513
+ },
+ {
+ "epoch": 7.139799038881607,
+ "grad_norm": 0.42051541805267334,
+ "learning_rate": 0.0006,
+ "loss": 4.83833122253418,
+ "step": 514
+ },
+ {
+ "epoch": 7.153778942769769,
+ "grad_norm": 0.3930990397930145,
+ "learning_rate": 0.0006,
+ "loss": 4.853984355926514,
+ "step": 515
+ },
+ {
+ "epoch": 7.16775884665793,
+ "grad_norm": 0.512886106967926,
+ "learning_rate": 0.0006,
+ "loss": 4.815458297729492,
+ "step": 516
+ },
+ {
+ "epoch": 7.18173875054609,
+ "grad_norm": 0.42580172419548035,
+ "learning_rate": 0.0006,
+ "loss": 4.825312614440918,
+ "step": 517
+ },
+ {
+ "epoch": 7.195718654434251,
+ "grad_norm": 0.31628182530403137,
+ "learning_rate": 0.0006,
+ "loss": 4.806377410888672,
+ "step": 518
+ },
+ {
+ "epoch": 7.209698558322412,
+ "grad_norm": 0.3109956681728363,
+ "learning_rate": 0.0006,
+ "loss": 4.819339752197266,
+ "step": 519
+ },
+ {
+ "epoch": 7.2236784622105725,
+ "grad_norm": 0.2740071415901184,
+ "learning_rate": 0.0006,
+ "loss": 4.81319522857666,
+ "step": 520
+ },
+ {
+ "epoch": 7.237658366098733,
+ "grad_norm": 0.26441165804862976,
+ "learning_rate": 0.0006,
+ "loss": 4.8107380867004395,
+ "step": 521
+ },
+ {
+ "epoch": 7.251638269986894,
+ "grad_norm": 0.2496110051870346,
+ "learning_rate": 0.0006,
+ "loss": 4.785193920135498,
+ "step": 522
+ },
+ {
+ "epoch": 7.265618173875055,
+ "grad_norm": 0.2565560042858124,
+ "learning_rate": 0.0006,
+ "loss": 4.802750587463379,
+ "step": 523
+ },
+ {
+ "epoch": 7.279598077763215,
+ "grad_norm": 0.2126980572938919,
+ "learning_rate": 0.0006,
+ "loss": 4.763580322265625,
+ "step": 524
+ },
+ {
+ "epoch": 7.293577981651376,
+ "grad_norm": 0.2169921100139618,
+ "learning_rate": 0.0006,
+ "loss": 4.756124973297119,
+ "step": 525
+ },
+ {
+ "epoch": 7.307557885539537,
+ "grad_norm": 0.2372167706489563,
+ "learning_rate": 0.0006,
+ "loss": 4.786888599395752,
+ "step": 526
+ },
+ {
+ "epoch": 7.321537789427698,
+ "grad_norm": 0.2124386429786682,
+ "learning_rate": 0.0006,
+ "loss": 4.777996063232422,
+ "step": 527
+ },
+ {
+ "epoch": 7.335517693315858,
+ "grad_norm": 0.18585442006587982,
+ "learning_rate": 0.0006,
+ "loss": 4.770537853240967,
+ "step": 528
+ },
+ {
+ "epoch": 7.349497597204019,
+ "grad_norm": 0.20515340566635132,
+ "learning_rate": 0.0006,
+ "loss": 4.769230842590332,
+ "step": 529
+ },
+ {
+ "epoch": 7.36347750109218,
+ "grad_norm": 0.19906704127788544,
+ "learning_rate": 0.0006,
+ "loss": 4.752581596374512,
+ "step": 530
+ },
+ {
+ "epoch": 7.3774574049803405,
+ "grad_norm": 0.2030428946018219,
+ "learning_rate": 0.0006,
+ "loss": 4.7353715896606445,
+ "step": 531
+ },
+ {
+ "epoch": 7.391437308868501,
+ "grad_norm": 0.17820630967617035,
+ "learning_rate": 0.0006,
+ "loss": 4.742705345153809,
+ "step": 532
+ },
+ {
+ "epoch": 7.405417212756662,
+ "grad_norm": 0.17642682790756226,
+ "learning_rate": 0.0006,
+ "loss": 4.752669334411621,
+ "step": 533
+ },
+ {
+ "epoch": 7.419397116644823,
+ "grad_norm": 0.18088409304618835,
+ "learning_rate": 0.0006,
+ "loss": 4.734611511230469,
+ "step": 534
+ },
+ {
+ "epoch": 7.433377020532983,
+ "grad_norm": 0.20897020399570465,
+ "learning_rate": 0.0006,
+ "loss": 4.756442070007324,
+ "step": 535
+ },
+ {
+ "epoch": 7.447356924421145,
+ "grad_norm": 0.23166777193546295,
+ "learning_rate": 0.0006,
+ "loss": 4.712922096252441,
+ "step": 536
+ },
+ {
+ "epoch": 7.461336828309306,
+ "grad_norm": 0.2205347716808319,
+ "learning_rate": 0.0006,
+ "loss": 4.75001335144043,
+ "step": 537
+ },
+ {
+ "epoch": 7.4753167321974665,
+ "grad_norm": 0.23868022859096527,
+ "learning_rate": 0.0006,
+ "loss": 4.726134300231934,
+ "step": 538
+ },
+ {
+ "epoch": 7.489296636085627,
+ "grad_norm": 0.2861441373825073,
+ "learning_rate": 0.0006,
+ "loss": 4.754112243652344,
+ "step": 539
+ },
+ {
+ "epoch": 7.503276539973788,
+ "grad_norm": 0.28980305790901184,
+ "learning_rate": 0.0006,
+ "loss": 4.716021537780762,
+ "step": 540
+ },
+ {
+ "epoch": 7.517256443861949,
+ "grad_norm": 0.2784835696220398,
+ "learning_rate": 0.0006,
+ "loss": 4.713929176330566,
+ "step": 541
+ },
+ {
+ "epoch": 7.531236347750109,
+ "grad_norm": 0.2962653934955597,
+ "learning_rate": 0.0006,
+ "loss": 4.711845397949219,
+ "step": 542
+ },
+ {
+ "epoch": 7.54521625163827,
+ "grad_norm": 0.3333161175251007,
+ "learning_rate": 0.0006,
+ "loss": 4.709834575653076,
+ "step": 543
+ },
+ {
+ "epoch": 7.559196155526431,
+ "grad_norm": 0.35304850339889526,
+ "learning_rate": 0.0006,
+ "loss": 4.732914924621582,
+ "step": 544
+ },
+ {
+ "epoch": 7.573176059414592,
+ "grad_norm": 0.4165869355201721,
+ "learning_rate": 0.0006,
+ "loss": 4.716190338134766,
+ "step": 545
+ },
+ {
+ "epoch": 7.587155963302752,
+ "grad_norm": 0.4878059923648834,
+ "learning_rate": 0.0006,
+ "loss": 4.723773002624512,
+ "step": 546
+ },
+ {
+ "epoch": 7.601135867190913,
+ "grad_norm": 0.36643707752227783,
+ "learning_rate": 0.0006,
+ "loss": 4.721458911895752,
+ "step": 547
+ },
+ {
+ "epoch": 7.615115771079074,
+ "grad_norm": 0.4046908915042877,
+ "learning_rate": 0.0006,
+ "loss": 4.715397834777832,
+ "step": 548
+ },
+ {
+ "epoch": 7.6290956749672345,
+ "grad_norm": 0.44426342844963074,
+ "learning_rate": 0.0006,
+ "loss": 4.737357139587402,
+ "step": 549
+ },
+ {
+ "epoch": 7.643075578855395,
+ "grad_norm": 0.4181079864501953,
+ "learning_rate": 0.0006,
+ "loss": 4.731383800506592,
+ "step": 550
+ },
+ {
+ "epoch": 7.657055482743556,
+ "grad_norm": 0.3486088216304779,
+ "learning_rate": 0.0006,
+ "loss": 4.728029727935791,
+ "step": 551
+ },
+ {
+ "epoch": 7.671035386631717,
+ "grad_norm": 0.37150970101356506,
+ "learning_rate": 0.0006,
+ "loss": 4.7083210945129395,
+ "step": 552
+ },
+ {
+ "epoch": 7.685015290519877,
+ "grad_norm": 0.43324410915374756,
+ "learning_rate": 0.0006,
+ "loss": 4.728720664978027,
+ "step": 553
+ },
+ {
+ "epoch": 7.698995194408038,
+ "grad_norm": 0.5026620626449585,
+ "learning_rate": 0.0006,
+ "loss": 4.698156356811523,
+ "step": 554
+ },
+ {
+ "epoch": 7.712975098296199,
+ "grad_norm": 0.4873499274253845,
+ "learning_rate": 0.0006,
+ "loss": 4.7169952392578125,
+ "step": 555
+ },
+ {
+ "epoch": 7.72695500218436,
+ "grad_norm": 0.4285493791103363,
+ "learning_rate": 0.0006,
+ "loss": 4.6877241134643555,
+ "step": 556
+ },
+ {
+ "epoch": 7.740934906072521,
+ "grad_norm": 0.5179854035377502,
+ "learning_rate": 0.0006,
+ "loss": 4.704267501831055,
+ "step": 557
+ },
+ {
+ "epoch": 7.754914809960681,
+ "grad_norm": 0.4642147421836853,
+ "learning_rate": 0.0006,
+ "loss": 4.695004463195801,
+ "step": 558
+ },
+ {
+ "epoch": 7.768894713848843,
+ "grad_norm": 0.47149503231048584,
+ "learning_rate": 0.0006,
+ "loss": 4.694338798522949,
+ "step": 559
+ },
+ {
+ "epoch": 7.782874617737003,
+ "grad_norm": 0.5422149300575256,
+ "learning_rate": 0.0006,
+ "loss": 4.749478340148926,
+ "step": 560
+ },
+ {
+ "epoch": 7.796854521625164,
+ "grad_norm": 0.4360728859901428,
+ "learning_rate": 0.0006,
+ "loss": 4.685191631317139,
+ "step": 561
+ },
+ {
+ "epoch": 7.810834425513325,
+ "grad_norm": 0.4243801534175873,
+ "learning_rate": 0.0006,
+ "loss": 4.69228458404541,
+ "step": 562
+ },
+ {
+ "epoch": 7.824814329401486,
+ "grad_norm": 0.40380290150642395,
+ "learning_rate": 0.0006,
+ "loss": 4.690923690795898,
+ "step": 563
+ },
+ {
+ "epoch": 7.838794233289646,
+ "grad_norm": 0.4352976381778717,
+ "learning_rate": 0.0006,
+ "loss": 4.720489978790283,
+ "step": 564
+ },
+ {
+ "epoch": 7.852774137177807,
+ "grad_norm": 0.44634920358657837,
+ "learning_rate": 0.0006,
+ "loss": 4.683789253234863,
+ "step": 565
+ },
+ {
+ "epoch": 7.866754041065968,
+ "grad_norm": 0.3818186819553375,
+ "learning_rate": 0.0006,
+ "loss": 4.696887016296387,
+ "step": 566
+ },
+ {
+ "epoch": 7.8807339449541285,
+ "grad_norm": 0.35270464420318604,
+ "learning_rate": 0.0006,
+ "loss": 4.715676307678223,
+ "step": 567
+ },
+ {
+ "epoch": 7.894713848842289,
+ "grad_norm": 0.249756321310997,
+ "learning_rate": 0.0006,
+ "loss": 4.672721862792969,
+ "step": 568
+ },
+ {
+ "epoch": 7.90869375273045,
+ "grad_norm": 0.25097888708114624,
+ "learning_rate": 0.0006,
+ "loss": 4.663518905639648,
+ "step": 569
+ },
+ {
+ "epoch": 7.922673656618611,
+ "grad_norm": 0.26563209295272827,
+ "learning_rate": 0.0006,
+ "loss": 4.675405025482178,
+ "step": 570
+ },
+ {
+ "epoch": 7.936653560506771,
+ "grad_norm": 0.26451292634010315,
+ "learning_rate": 0.0006,
+ "loss": 4.651235103607178,
+ "step": 571
+ },
+ {
+ "epoch": 7.950633464394932,
+ "grad_norm": 0.24185842275619507,
+ "learning_rate": 0.0006,
+ "loss": 4.671639919281006,
+ "step": 572
+ },
+ {
+ "epoch": 7.964613368283093,
+ "grad_norm": 0.21506108343601227,
+ "learning_rate": 0.0006,
+ "loss": 4.665352821350098,
+ "step": 573
+ },
+ {
+ "epoch": 7.978593272171254,
+ "grad_norm": 0.24365705251693726,
+ "learning_rate": 0.0006,
+ "loss": 4.663162708282471,
+ "step": 574
+ },
+ {
+ "epoch": 7.992573176059414,
+ "grad_norm": 0.24251042306423187,
+ "learning_rate": 0.0006,
+ "loss": 4.666633605957031,
+ "step": 575
+ },
+ {
+ "epoch": 8.0,
+ "grad_norm": 0.24187657237052917,
+ "learning_rate": 0.0006,
+ "loss": 4.63957405090332,
+ "step": 576
+ },
+ {
+ "epoch": 8.0,
+ "eval_loss": 4.923156261444092,
+ "eval_runtime": 44.1587,
+ "eval_samples_per_second": 55.301,
+ "eval_steps_per_second": 3.465,
+ "step": 576
+ },
+ {
+ "epoch": 8.013979903888162,
+ "grad_norm": 0.21323645114898682,
+ "learning_rate": 0.0006,
+ "loss": 4.636347770690918,
+ "step": 577
+ },
+ {
+ "epoch": 8.027959807776321,
+ "grad_norm": 0.2325759083032608,
+ "learning_rate": 0.0006,
+ "loss": 4.60684871673584,
+ "step": 578
+ },
+ {
+ "epoch": 8.041939711664483,
+ "grad_norm": 0.26741257309913635,
+ "learning_rate": 0.0006,
+ "loss": 4.647780418395996,
+ "step": 579
+ },
+ {
+ "epoch": 8.055919615552643,
+ "grad_norm": 0.285720556974411,
+ "learning_rate": 0.0006,
+ "loss": 4.629637718200684,
+ "step": 580
+ },
+ {
+ "epoch": 8.069899519440805,
+ "grad_norm": 0.2453618347644806,
+ "learning_rate": 0.0006,
+ "loss": 4.62420654296875,
+ "step": 581
+ },
+ {
+ "epoch": 8.083879423328964,
+ "grad_norm": 0.19662636518478394,
+ "learning_rate": 0.0006,
+ "loss": 4.593767166137695,
+ "step": 582
+ },
+ {
+ "epoch": 8.097859327217126,
+ "grad_norm": 0.22731931507587433,
+ "learning_rate": 0.0006,
+ "loss": 4.627089023590088,
+ "step": 583
+ },
+ {
+ "epoch": 8.111839231105286,
+ "grad_norm": 0.24452590942382812,
+ "learning_rate": 0.0006,
+ "loss": 4.613677024841309,
+ "step": 584
+ },
+ {
+ "epoch": 8.125819134993447,
+ "grad_norm": 0.2952791154384613,
+ "learning_rate": 0.0006,
+ "loss": 4.604985237121582,
+ "step": 585
+ },
+ {
+ "epoch": 8.139799038881607,
+ "grad_norm": 0.3184696137905121,
+ "learning_rate": 0.0006,
+ "loss": 4.589205741882324,
+ "step": 586
+ },
+ {
+ "epoch": 8.153778942769769,
+ "grad_norm": 0.2948093116283417,
+ "learning_rate": 0.0006,
+ "loss": 4.605442047119141,
+ "step": 587
+ },
+ {
+ "epoch": 8.167758846657929,
+ "grad_norm": 0.2450508326292038,
+ "learning_rate": 0.0006,
+ "loss": 4.615349292755127,
+ "step": 588
+ },
+ {
+ "epoch": 8.18173875054609,
+ "grad_norm": 0.25664836168289185,
+ "learning_rate": 0.0006,
+ "loss": 4.592251777648926,
+ "step": 589
+ },
+ {
+ "epoch": 8.19571865443425,
+ "grad_norm": 0.24479512870311737,
+ "learning_rate": 0.0006,
+ "loss": 4.6145920753479,
+ "step": 590
+ },
+ {
+ "epoch": 8.209698558322412,
+ "grad_norm": 0.24395205080509186,
+ "learning_rate": 0.0006,
+ "loss": 4.600954055786133,
+ "step": 591
+ },
+ {
+ "epoch": 8.223678462210572,
+ "grad_norm": 0.21804189682006836,
+ "learning_rate": 0.0006,
+ "loss": 4.607785224914551,
+ "step": 592
+ },
+ {
+ "epoch": 8.237658366098733,
+ "grad_norm": 0.20951785147190094,
+ "learning_rate": 0.0006,
+ "loss": 4.58140754699707,
+ "step": 593
+ },
+ {
+ "epoch": 8.251638269986893,
+ "grad_norm": 0.20415149629116058,
+ "learning_rate": 0.0006,
+ "loss": 4.593405723571777,
+ "step": 594
+ },
+ {
+ "epoch": 8.265618173875055,
+ "grad_norm": 0.19210249185562134,
+ "learning_rate": 0.0006,
+ "loss": 4.603294372558594,
+ "step": 595
+ },
+ {
+ "epoch": 8.279598077763215,
+ "grad_norm": 0.20719751715660095,
+ "learning_rate": 0.0006,
+ "loss": 4.55255651473999,
+ "step": 596
+ },
+ {
+ "epoch": 8.293577981651376,
+ "grad_norm": 0.20101022720336914,
+ "learning_rate": 0.0006,
+ "loss": 4.5928192138671875,
+ "step": 597
+ },
+ {
+ "epoch": 8.307557885539538,
+ "grad_norm": 0.19254222512245178,
+ "learning_rate": 0.0006,
+ "loss": 4.590397834777832,
+ "step": 598
+ },
+ {
+ "epoch": 8.321537789427698,
+ "grad_norm": 0.23234105110168457,
+ "learning_rate": 0.0006,
+ "loss": 4.5987677574157715,
+ "step": 599
+ },
+ {
+ "epoch": 8.33551769331586,
+ "grad_norm": 0.2537451982498169,
+ "learning_rate": 0.0006,
+ "loss": 4.543115615844727,
+ "step": 600
+ },
+ {
+ "epoch": 8.349497597204019,
+ "grad_norm": 0.29171040654182434,
+ "learning_rate": 0.0006,
+ "loss": 4.597387313842773,
+ "step": 601
+ },
+ {
+ "epoch": 8.36347750109218,
+ "grad_norm": 0.3035930097103119,
+ "learning_rate": 0.0006,
+ "loss": 4.566247463226318,
+ "step": 602
+ },
+ {
+ "epoch": 8.37745740498034,
+ "grad_norm": 0.2826756238937378,
+ "learning_rate": 0.0006,
+ "loss": 4.57047176361084,
+ "step": 603
+ },
+ {
+ "epoch": 8.391437308868502,
+ "grad_norm": 0.2959657609462738,
+ "learning_rate": 0.0006,
+ "loss": 4.582820892333984,
+ "step": 604
+ },
+ {
+ "epoch": 8.405417212756662,
+ "grad_norm": 0.3180356025695801,
+ "learning_rate": 0.0006,
+ "loss": 4.5573272705078125,
+ "step": 605
+ },
+ {
+ "epoch": 8.419397116644824,
+ "grad_norm": 0.3617221713066101,
+ "learning_rate": 0.0006,
+ "loss": 4.593079090118408,
+ "step": 606
+ },
+ {
+ "epoch": 8.433377020532983,
+ "grad_norm": 0.35198062658309937,
+ "learning_rate": 0.0006,
+ "loss": 4.615298271179199,
+ "step": 607
+ },
+ {
+ "epoch": 8.447356924421145,
+ "grad_norm": 0.3944903314113617,
+ "learning_rate": 0.0006,
+ "loss": 4.561809539794922,
+ "step": 608
+ },
+ {
+ "epoch": 8.461336828309305,
+ "grad_norm": 0.4525868594646454,
+ "learning_rate": 0.0006,
+ "loss": 4.613105773925781,
+ "step": 609
+ },
+ {
+ "epoch": 8.475316732197467,
+ "grad_norm": 0.4915139079093933,
+ "learning_rate": 0.0006,
+ "loss": 4.566202163696289,
+ "step": 610
+ },
+ {
+ "epoch": 8.489296636085626,
+ "grad_norm": 0.49231988191604614,
+ "learning_rate": 0.0006,
+ "loss": 4.556222915649414,
+ "step": 611
+ },
+ {
+ "epoch": 8.503276539973788,
+ "grad_norm": 0.43036946654319763,
+ "learning_rate": 0.0006,
+ "loss": 4.55517578125,
+ "step": 612
+ },
+ {
+ "epoch": 8.517256443861948,
+ "grad_norm": 0.42405328154563904,
+ "learning_rate": 0.0006,
+ "loss": 4.574039936065674,
+ "step": 613
+ },
+ {
+ "epoch": 8.53123634775011,
+ "grad_norm": 0.3955961763858795,
+ "learning_rate": 0.0006,
+ "loss": 4.6082611083984375,
+ "step": 614
+ },
+ {
+ "epoch": 8.54521625163827,
+ "grad_norm": 0.4377101957798004,
+ "learning_rate": 0.0006,
+ "loss": 4.555740833282471,
+ "step": 615
+ },
+ {
+ "epoch": 8.55919615552643,
+ "grad_norm": 0.4601984918117523,
+ "learning_rate": 0.0006,
+ "loss": 4.553995132446289,
+ "step": 616
+ },
+ {
+ "epoch": 8.57317605941459,
+ "grad_norm": 0.42025700211524963,
+ "learning_rate": 0.0006,
+ "loss": 4.567340850830078,
+ "step": 617
+ },
+ {
+ "epoch": 8.587155963302752,
+ "grad_norm": 0.35569432377815247,
+ "learning_rate": 0.0006,
+ "loss": 4.570140361785889,
+ "step": 618
+ },
+ {
+ "epoch": 8.601135867190912,
+ "grad_norm": 0.37940406799316406,
+ "learning_rate": 0.0006,
+ "loss": 4.581291198730469,
+ "step": 619
+ },
+ {
+ "epoch": 8.615115771079074,
+ "grad_norm": 0.3658490777015686,
+ "learning_rate": 0.0006,
+ "loss": 4.55476188659668,
+ "step": 620
+ },
+ {
+ "epoch": 8.629095674967235,
+ "grad_norm": 0.2908247113227844,
+ "learning_rate": 0.0006,
+ "loss": 4.564087867736816,
+ "step": 621
+ },
+ {
+ "epoch": 8.643075578855395,
+ "grad_norm": 0.29961925745010376,
+ "learning_rate": 0.0006,
+ "loss": 4.556543350219727,
+ "step": 622
+ },
+ {
+ "epoch": 8.657055482743557,
+ "grad_norm": 0.3144846558570862,
+ "learning_rate": 0.0006,
+ "loss": 4.553670883178711,
+ "step": 623
+ },
+ {
+ "epoch": 8.671035386631717,
+ "grad_norm": 0.2845900356769562,
+ "learning_rate": 0.0006,
+ "loss": 4.567296981811523,
+ "step": 624
+ },
+ {
+ "epoch": 8.685015290519878,
+ "grad_norm": 0.253591388463974,
+ "learning_rate": 0.0006,
+ "loss": 4.554507255554199,
+ "step": 625
+ },
+ {
+ "epoch": 8.698995194408038,
+ "grad_norm": 0.2563088536262512,
+ "learning_rate": 0.0006,
+ "loss": 4.542218208312988,
+ "step": 626
+ },
+ {
+ "epoch": 8.7129750982962,
+ "grad_norm": 0.26058217883110046,
+ "learning_rate": 0.0006,
+ "loss": 4.535512447357178,
+ "step": 627
+ },
+ {
+ "epoch": 8.72695500218436,
+ "grad_norm": 0.20749829709529877,
+ "learning_rate": 0.0006,
+ "loss": 4.516959190368652,
+ "step": 628
+ },
+ {
+ "epoch": 8.740934906072521,
+ "grad_norm": 0.2034810334444046,
+ "learning_rate": 0.0006,
+ "loss": 4.55794095993042,
+ "step": 629
+ },
+ {
+ "epoch": 8.754914809960681,
+ "grad_norm": 0.18418121337890625,
+ "learning_rate": 0.0006,
+ "loss": 4.5421247482299805,
+ "step": 630
+ },
+ {
+ "epoch": 8.768894713848843,
+ "grad_norm": 0.20551933348178864,
+ "learning_rate": 0.0006,
+ "loss": 4.50805139541626,
+ "step": 631
+ },
+ {
+ "epoch": 8.782874617737003,
+ "grad_norm": 0.21615999937057495,
+ "learning_rate": 0.0006,
+ "loss": 4.520708084106445,
+ "step": 632
+ },
+ {
+ "epoch": 8.796854521625164,
+ "grad_norm": 0.24864810705184937,
+ "learning_rate": 0.0006,
+ "loss": 4.509330749511719,
+ "step": 633
+ },
+ {
+ "epoch": 8.810834425513324,
+ "grad_norm": 0.2573665380477905,
+ "learning_rate": 0.0006,
+ "loss": 4.531505584716797,
+ "step": 634
+ },
+ {
+ "epoch": 8.824814329401486,
+ "grad_norm": 0.22452878952026367,
+ "learning_rate": 0.0006,
+ "loss": 4.529216289520264,
+ "step": 635
+ },
+ {
+ "epoch": 8.838794233289645,
+ "grad_norm": 0.19727355241775513,
+ "learning_rate": 0.0006,
+ "loss": 4.519906520843506,
+ "step": 636
+ },
+ {
+ "epoch": 8.852774137177807,
+ "grad_norm": 0.19937913119792938,
+ "learning_rate": 0.0006,
+ "loss": 4.536892414093018,
+ "step": 637
+ },
+ {
+ "epoch": 8.866754041065967,
+ "grad_norm": 0.2070389986038208,
+ "learning_rate": 0.0006,
+ "loss": 4.51191520690918,
+ "step": 638
+ },
+ {
+ "epoch": 8.880733944954128,
+ "grad_norm": 0.2293873429298401,
+ "learning_rate": 0.0006,
+ "loss": 4.505377769470215,
+ "step": 639
+ },
+ {
+ "epoch": 8.89471384884229,
+ "grad_norm": 0.21285250782966614,
+ "learning_rate": 0.0006,
+ "loss": 4.5138959884643555,
+ "step": 640
+ },
+ {
+ "epoch": 8.90869375273045,
+ "grad_norm": 0.19487562775611877,
+ "learning_rate": 0.0006,
+ "loss": 4.506108283996582,
+ "step": 641
+ },
+ {
+ "epoch": 8.922673656618612,
+ "grad_norm": 0.21986965835094452,
+ "learning_rate": 0.0006,
+ "loss": 4.506397247314453,
+ "step": 642
+ },
+ {
+ "epoch": 8.936653560506771,
+ "grad_norm": 0.20763885974884033,
+ "learning_rate": 0.0006,
+ "loss": 4.508007049560547,
+ "step": 643
+ },
+ {
+ "epoch": 8.950633464394933,
+ "grad_norm": 0.22858479619026184,
+ "learning_rate": 0.0006,
+ "loss": 4.520846366882324,
+ "step": 644
+ },
+ {
+ "epoch": 8.964613368283093,
+ "grad_norm": 0.23923712968826294,
+ "learning_rate": 0.0006,
+ "loss": 4.535306930541992,
+ "step": 645
+ },
+ {
+ "epoch": 8.978593272171254,
+ "grad_norm": 0.23717579245567322,
+ "learning_rate": 0.0006,
+ "loss": 4.485929489135742,
+ "step": 646
+ },
+ {
+ "epoch": 8.992573176059414,
+ "grad_norm": 0.24033977091312408,
+ "learning_rate": 0.0006,
+ "loss": 4.508999824523926,
+ "step": 647
+ },
+ {
+ "epoch": 9.0,
+ "grad_norm": 0.22432062029838562,
+ "learning_rate": 0.0006,
+ "loss": 4.473136901855469,
+ "step": 648
+ },
+ {
+ "epoch": 9.0,
+ "eval_loss": 4.735903263092041,
+ "eval_runtime": 44.2163,
+ "eval_samples_per_second": 55.228,
+ "eval_steps_per_second": 3.46,
+ "step": 648
+ },
+ {
+ "epoch": 9.013979903888162,
+ "grad_norm": 0.22491489350795746,
+ "learning_rate": 0.0006,
+ "loss": 4.468614101409912,
+ "step": 649
+ },
+ {
+ "epoch": 9.027959807776321,
+ "grad_norm": 0.255759060382843,
+ "learning_rate": 0.0006,
+ "loss": 4.516196250915527,
+ "step": 650
+ },
+ {
+ "epoch": 9.041939711664483,
+ "grad_norm": 0.2591100335121155,
+ "learning_rate": 0.0006,
+ "loss": 4.478276252746582,
+ "step": 651
+ },
+ {
+ "epoch": 9.055919615552643,
+ "grad_norm": 0.30472296476364136,
+ "learning_rate": 0.0006,
+ "loss": 4.479726791381836,
+ "step": 652
+ },
+ {
+ "epoch": 9.069899519440805,
+ "grad_norm": 0.2840559780597687,
+ "learning_rate": 0.0006,
+ "loss": 4.4437384605407715,
+ "step": 653
+ },
+ {
+ "epoch": 9.083879423328964,
+ "grad_norm": 0.2695577144622803,
+ "learning_rate": 0.0006,
+ "loss": 4.476065635681152,
+ "step": 654
+ },
+ {
+ "epoch": 9.097859327217126,
+ "grad_norm": 0.27912381291389465,
+ "learning_rate": 0.0006,
+ "loss": 4.484747409820557,
+ "step": 655
+ },
+ {
+ "epoch": 9.111839231105286,
+ "grad_norm": 0.3091907501220703,
+ "learning_rate": 0.0006,
+ "loss": 4.449443817138672,
+ "step": 656
+ },
+ {
+ "epoch": 9.125819134993447,
+ "grad_norm": 0.30756646394729614,
+ "learning_rate": 0.0006,
+ "loss": 4.496490001678467,
+ "step": 657
+ },
+ {
+ "epoch": 9.139799038881607,
+ "grad_norm": 0.305698037147522,
+ "learning_rate": 0.0006,
+ "loss": 4.466765880584717,
+ "step": 658
+ },
+ {
+ "epoch": 9.153778942769769,
+ "grad_norm": 0.3031201660633087,
+ "learning_rate": 0.0006,
+ "loss": 4.462430953979492,
+ "step": 659
+ },
+ {
+ "epoch": 9.167758846657929,
+ "grad_norm": 0.32725608348846436,
+ "learning_rate": 0.0006,
+ "loss": 4.479879379272461,
+ "step": 660
+ },
+ {
+ "epoch": 9.18173875054609,
+ "grad_norm": 0.31773585081100464,
+ "learning_rate": 0.0006,
+ "loss": 4.473912239074707,
+ "step": 661
+ },
+ {
+ "epoch": 9.19571865443425,
+ "grad_norm": 0.30025365948677063,
+ "learning_rate": 0.0006,
+ "loss": 4.476703643798828,
+ "step": 662
+ },
+ {
+ "epoch": 9.209698558322412,
+ "grad_norm": 0.3177371025085449,
+ "learning_rate": 0.0006,
+ "loss": 4.439765930175781,
+ "step": 663
+ },
+ {
+ "epoch": 9.223678462210572,
+ "grad_norm": 0.3060745894908905,
+ "learning_rate": 0.0006,
+ "loss": 4.487849235534668,
+ "step": 664
+ },
+ {
+ "epoch": 9.237658366098733,
+ "grad_norm": 0.33287373185157776,
+ "learning_rate": 0.0006,
+ "loss": 4.443496227264404,
+ "step": 665
+ },
+ {
+ "epoch": 9.251638269986893,
+ "grad_norm": 0.3758000433444977,
+ "learning_rate": 0.0006,
+ "loss": 4.478017330169678,
+ "step": 666
+ },
+ {
+ "epoch": 9.265618173875055,
+ "grad_norm": 0.32124510407447815,
+ "learning_rate": 0.0006,
+ "loss": 4.4092206954956055,
+ "step": 667
+ },
+ {
+ "epoch": 9.279598077763215,
+ "grad_norm": 0.2786794602870941,
+ "learning_rate": 0.0006,
+ "loss": 4.432734489440918,
+ "step": 668
+ },
+ {
+ "epoch": 9.293577981651376,
+ "grad_norm": 0.35042962431907654,
+ "learning_rate": 0.0006,
+ "loss": 4.462737083435059,
+ "step": 669
+ },
+ {
+ "epoch": 9.307557885539538,
+ "grad_norm": 0.4080469310283661,
+ "learning_rate": 0.0006,
+ "loss": 4.429462432861328,
+ "step": 670
+ },
+ {
+ "epoch": 9.321537789427698,
+ "grad_norm": 0.465158075094223,
+ "learning_rate": 0.0006,
+ "loss": 4.465776443481445,
+ "step": 671
+ },
+ {
+ "epoch": 9.33551769331586,
+ "grad_norm": 0.44833582639694214,
+ "learning_rate": 0.0006,
+ "loss": 4.454195976257324,
+ "step": 672
+ },
+ {
+ "epoch": 9.349497597204019,
+ "grad_norm": 0.451052188873291,
+ "learning_rate": 0.0006,
+ "loss": 4.456139087677002,
+ "step": 673
+ },
+ {
+ "epoch": 9.36347750109218,
+ "grad_norm": 0.3759656250476837,
+ "learning_rate": 0.0006,
+ "loss": 4.461119651794434,
+ "step": 674
+ },
+ {
+ "epoch": 9.37745740498034,
+ "grad_norm": 0.514560341835022,
+ "learning_rate": 0.0006,
+ "loss": 4.49595832824707,
+ "step": 675
+ },
+ {
+ "epoch": 9.391437308868502,
+ "grad_norm": 0.5650647282600403,
+ "learning_rate": 0.0006,
+ "loss": 4.461362838745117,
+ "step": 676
+ },
+ {
+ "epoch": 9.405417212756662,
+ "grad_norm": 0.4218835234642029,
+ "learning_rate": 0.0006,
+ "loss": 4.469146728515625,
+ "step": 677
+ },
+ {
+ "epoch": 9.419397116644824,
+ "grad_norm": 0.4169512689113617,
+ "learning_rate": 0.0006,
+ "loss": 4.470132827758789,
+ "step": 678
+ },
+ {
+ "epoch": 9.433377020532983,
+ "grad_norm": 0.3772219717502594,
+ "learning_rate": 0.0006,
+ "loss": 4.4742608070373535,
+ "step": 679
+ },
+ {
+ "epoch": 9.447356924421145,
+ "grad_norm": 0.35755908489227295,
+ "learning_rate": 0.0006,
+ "loss": 4.461928367614746,
+ "step": 680
+ },
+ {
+ "epoch": 9.461336828309305,
+ "grad_norm": 0.3141227662563324,
+ "learning_rate": 0.0006,
+ "loss": 4.491983413696289,
+ "step": 681
+ },
+ {
+ "epoch": 9.475316732197467,
+ "grad_norm": 0.282461017370224,
+ "learning_rate": 0.0006,
+ "loss": 4.460200309753418,
+ "step": 682
+ },
+ {
+ "epoch": 9.489296636085626,
+ "grad_norm": 0.27174389362335205,
+ "learning_rate": 0.0006,
+ "loss": 4.416125297546387,
+ "step": 683
+ },
+ {
+ "epoch": 9.503276539973788,
+ "grad_norm": 0.24570637941360474,
+ "learning_rate": 0.0006,
+ "loss": 4.4451093673706055,
+ "step": 684
+ },
+ {
+ "epoch": 9.517256443861948,
+ "grad_norm": 0.2741486132144928,
+ "learning_rate": 0.0006,
+ "loss": 4.453263282775879,
+ "step": 685
+ },
+ {
+ "epoch": 9.53123634775011,
+ "grad_norm": 0.24753718078136444,
+ "learning_rate": 0.0006,
+ "loss": 4.483033180236816,
+ "step": 686
+ },
+ {
+ "epoch": 9.54521625163827,
+ "grad_norm": 0.24288412928581238,
+ "learning_rate": 0.0006,
+ "loss": 4.452961444854736,
+ "step": 687
+ },
+ {
+ "epoch": 9.55919615552643,
+ "grad_norm": 0.21554753184318542,
+ "learning_rate": 0.0006,
+ "loss": 4.476005554199219,
+ "step": 688
+ },
+ {
+ "epoch": 9.57317605941459,
+ "grad_norm": 0.22775942087173462,
+ "learning_rate": 0.0006,
+ "loss": 4.4479193687438965,
+ "step": 689
+ },
+ {
+ "epoch": 9.587155963302752,
+ "grad_norm": 0.2610701024532318,
+ "learning_rate": 0.0006,
+ "loss": 4.474987506866455,
+ "step": 690
+ },
+ {
+ "epoch": 9.601135867190912,
+ "grad_norm": 0.2394690215587616,
+ "learning_rate": 0.0006,
+ "loss": 4.444857597351074,
+ "step": 691
+ },
+ {
+ "epoch": 9.615115771079074,
+ "grad_norm": 0.20868559181690216,
+ "learning_rate": 0.0006,
+ "loss": 4.4220709800720215,
+ "step": 692
+ },
+ {
+ "epoch": 9.629095674967235,
+ "grad_norm": 0.21869882941246033,
+ "learning_rate": 0.0006,
+ "loss": 4.451737403869629,
+ "step": 693
+ },
+ {
+ "epoch": 9.643075578855395,
+ "grad_norm": 0.1802823394536972,
+ "learning_rate": 0.0006,
+ "loss": 4.409085273742676,
+ "step": 694
+ },
+ {
+ "epoch": 9.657055482743557,
+ "grad_norm": 0.17046281695365906,
+ "learning_rate": 0.0006,
+ "loss": 4.424643516540527,
+ "step": 695
+ },
+ {
+ "epoch": 9.671035386631717,
+ "grad_norm": 0.19561922550201416,
+ "learning_rate": 0.0006,
+ "loss": 4.412302017211914,
+ "step": 696
+ },
+ {
+ "epoch": 9.685015290519878,
+ "grad_norm": 0.21928799152374268,
+ "learning_rate": 0.0006,
+ "loss": 4.427582263946533,
+ "step": 697
+ },
+ {
+ "epoch": 9.698995194408038,
+ "grad_norm": 0.244873046875,
+ "learning_rate": 0.0006,
+ "loss": 4.431827545166016,
+ "step": 698
+ },
+ {
+ "epoch": 9.7129750982962,
+ "grad_norm": 0.2799488604068756,
+ "learning_rate": 0.0006,
+ "loss": 4.407991409301758,
+ "step": 699
+ },
+ {
+ "epoch": 9.72695500218436,
+ "grad_norm": 0.2699538767337799,
+ "learning_rate": 0.0006,
+ "loss": 4.412313461303711,
+ "step": 700
+ },
+ {
+ "epoch": 9.740934906072521,
+ "grad_norm": 0.22293835878372192,
+ "learning_rate": 0.0006,
+ "loss": 4.423369884490967,
+ "step": 701
+ },
+ {
+ "epoch": 9.754914809960681,
+ "grad_norm": 0.21554361283779144,
+ "learning_rate": 0.0006,
+ "loss": 4.42026948928833,
+ "step": 702
+ },
+ {
+ "epoch": 9.768894713848843,
+ "grad_norm": 0.22135840356349945,
+ "learning_rate": 0.0006,
+ "loss": 4.400010108947754,
+ "step": 703
+ },
+ {
+ "epoch": 9.782874617737003,
+ "grad_norm": 0.2169952541589737,
+ "learning_rate": 0.0006,
+ "loss": 4.394582271575928,
+ "step": 704
+ },
+ {
+ "epoch": 9.796854521625164,
+ "grad_norm": 0.18913042545318604,
+ "learning_rate": 0.0006,
+ "loss": 4.395880699157715,
+ "step": 705
+ },
+ {
+ "epoch": 9.810834425513324,
+ "grad_norm": 0.191524475812912,
+ "learning_rate": 0.0006,
+ "loss": 4.378962516784668,
+ "step": 706
+ },
+ {
+ "epoch": 9.824814329401486,
+ "grad_norm": 0.20057640969753265,
+ "learning_rate": 0.0006,
+ "loss": 4.431066513061523,
+ "step": 707
+ },
+ {
+ "epoch": 9.838794233289645,
+ "grad_norm": 0.21670377254486084,
+ "learning_rate": 0.0006,
+ "loss": 4.364682197570801,
+ "step": 708
+ },
+ {
+ "epoch": 9.852774137177807,
+ "grad_norm": 0.21653099358081818,
+ "learning_rate": 0.0006,
+ "loss": 4.4050445556640625,
+ "step": 709
+ },
+ {
+ "epoch": 9.866754041065967,
+ "grad_norm": 0.2217673808336258,
+ "learning_rate": 0.0006,
+ "loss": 4.423664093017578,
+ "step": 710
+ },
+ {
+ "epoch": 9.880733944954128,
+ "grad_norm": 0.251078337430954,
+ "learning_rate": 0.0006,
+ "loss": 4.405768394470215,
+ "step": 711
+ },
+ {
+ "epoch": 9.89471384884229,
+ "grad_norm": 0.28962627053260803,
+ "learning_rate": 0.0006,
+ "loss": 4.421207427978516,
+ "step": 712
+ },
+ {
+ "epoch": 9.90869375273045,
+ "grad_norm": 0.3478074371814728,
+ "learning_rate": 0.0006,
+ "loss": 4.414942741394043,
+ "step": 713
+ },
+ {
+ "epoch": 9.922673656618612,
+ "grad_norm": 0.40396368503570557,
+ "learning_rate": 0.0006,
+ "loss": 4.415163993835449,
+ "step": 714
+ },
+ {
+ "epoch": 9.936653560506771,
+ "grad_norm": 0.3689858019351959,
+ "learning_rate": 0.0006,
+ "loss": 4.381345272064209,
+ "step": 715
+ },
+ {
+ "epoch": 9.950633464394933,
+ "grad_norm": 0.344868004322052,
+ "learning_rate": 0.0006,
+ "loss": 4.433088302612305,
+ "step": 716
+ },
+ {
+ "epoch": 9.964613368283093,
+ "grad_norm": 0.37976378202438354,
+ "learning_rate": 0.0006,
+ "loss": 4.431371212005615,
+ "step": 717
+ },
+ {
+ "epoch": 9.978593272171254,
+ "grad_norm": 0.4354130029678345,
+ "learning_rate": 0.0006,
+ "loss": 4.434148788452148,
+ "step": 718
+ },
+ {
+ "epoch": 9.992573176059414,
+ "grad_norm": 0.35859373211860657,
+ "learning_rate": 0.0006,
+ "loss": 4.428055763244629,
+ "step": 719
+ },
+ {
+ "epoch": 10.0,
+ "grad_norm": 0.3365023732185364,
+ "learning_rate": 0.0006,
+ "loss": 4.3888654708862305,
+ "step": 720
+ },
+ {
+ "epoch": 10.0,
+ "eval_loss": 4.638620853424072,
+ "eval_runtime": 44.3054,
+ "eval_samples_per_second": 55.117,
+ "eval_steps_per_second": 3.453,
+ "step": 720
+ },
+ {
+ "epoch": 10.013979903888162,
+ "grad_norm": 0.3267960250377655,
+ "learning_rate": 0.0006,
+ "loss": 4.386068344116211,
+ "step": 721
+ },
+ {
+ "epoch": 10.027959807776321,
+ "grad_norm": 0.33440953493118286,
+ "learning_rate": 0.0006,
+ "loss": 4.397515296936035,
+ "step": 722
+ },
+ {
+ "epoch": 10.041939711664483,
+ "grad_norm": 0.30047518014907837,
+ "learning_rate": 0.0006,
+ "loss": 4.398358345031738,
+ "step": 723
+ },
+ {
+ "epoch": 10.055919615552643,
+ "grad_norm": 0.2912217378616333,
+ "learning_rate": 0.0006,
+ "loss": 4.341166973114014,
+ "step": 724
+ },
+ {
+ "epoch": 10.069899519440805,
+ "grad_norm": 0.3199564218521118,
+ "learning_rate": 0.0006,
+ "loss": 4.388717174530029,
+ "step": 725
+ },
+ {
+ "epoch": 10.083879423328964,
+ "grad_norm": 0.2765582799911499,
+ "learning_rate": 0.0006,
+ "loss": 4.392992973327637,
+ "step": 726
+ },
+ {
+ "epoch": 10.097859327217126,
+ "grad_norm": 0.27138450741767883,
+ "learning_rate": 0.0006,
+ "loss": 4.382307529449463,
+ "step": 727
+ },
+ {
+ "epoch": 10.111839231105286,
+ "grad_norm": 0.29230645298957825,
+ "learning_rate": 0.0006,
+ "loss": 4.357486724853516,
+ "step": 728
+ },
+ {
+ "epoch": 10.125819134993447,
+ "grad_norm": 0.3127598464488983,
+ "learning_rate": 0.0006,
+ "loss": 4.39072322845459,
+ "step": 729
+ },
+ {
+ "epoch": 10.139799038881607,
+ "grad_norm": 0.3230913281440735,
+ "learning_rate": 0.0006,
+ "loss": 4.35037899017334,
+ "step": 730
+ },
+ {
+ "epoch": 10.153778942769769,
+ "grad_norm": 0.333675354719162,
+ "learning_rate": 0.0006,
+ "loss": 4.378030776977539,
+ "step": 731
+ },
+ {
+ "epoch": 10.167758846657929,
+ "grad_norm": 0.30325770378112793,
+ "learning_rate": 0.0006,
+ "loss": 4.372736930847168,
+ "step": 732
+ },
+ {
+ "epoch": 10.18173875054609,
+ "grad_norm": 0.2888163924217224,
+ "learning_rate": 0.0006,
+ "loss": 4.397604942321777,
+ "step": 733
+ },
+ {
+ "epoch": 10.19571865443425,
+ "grad_norm": 0.3378832936286926,
+ "learning_rate": 0.0006,
+ "loss": 4.395705223083496,
+ "step": 734
+ },
+ {
+ "epoch": 10.209698558322412,
+ "grad_norm": 0.30980268120765686,
+ "learning_rate": 0.0006,
+ "loss": 4.3861212730407715,
+ "step": 735
+ },
+ {
+ "epoch": 10.223678462210572,
+ "grad_norm": 0.2965783178806305,
+ "learning_rate": 0.0006,
+ "loss": 4.394898414611816,
+ "step": 736
+ },
+ {
+ "epoch": 10.237658366098733,
+ "grad_norm": 0.2818217873573303,
+ "learning_rate": 0.0006,
+ "loss": 4.36171817779541,
+ "step": 737
+ },
+ {
+ "epoch": 10.251638269986893,
+ "grad_norm": 0.2418123185634613,
+ "learning_rate": 0.0006,
+ "loss": 4.370945930480957,
+ "step": 738
+ },
+ {
+ "epoch": 10.265618173875055,
+ "grad_norm": 0.22372810542583466,
+ "learning_rate": 0.0006,
+ "loss": 4.354825973510742,
+ "step": 739
+ },
+ {
+ "epoch": 10.279598077763215,
+ "grad_norm": 0.238066166639328,
+ "learning_rate": 0.0006,
+ "loss": 4.376237392425537,
+ "step": 740
+ },
+ {
+ "epoch": 10.293577981651376,
+ "grad_norm": 0.22352449595928192,
+ "learning_rate": 0.0006,
+ "loss": 4.317084312438965,
+ "step": 741
+ },
+ {
+ "epoch": 10.307557885539538,
+ "grad_norm": 0.21685205399990082,
+ "learning_rate": 0.0006,
+ "loss": 4.335271835327148,
+ "step": 742
+ },
+ {
+ "epoch": 10.321537789427698,
+ "grad_norm": 0.19584694504737854,
+ "learning_rate": 0.0006,
+ "loss": 4.357963562011719,
+ "step": 743
+ },
+ {
+ "epoch": 10.33551769331586,
+ "grad_norm": 0.20373336970806122,
+ "learning_rate": 0.0006,
+ "loss": 4.401963233947754,
+ "step": 744
+ },
+ {
+ "epoch": 10.349497597204019,
+ "grad_norm": 0.2247837632894516,
+ "learning_rate": 0.0006,
+ "loss": 4.357202529907227,
+ "step": 745
+ },
+ {
+ "epoch": 10.36347750109218,
+ "grad_norm": 0.2416863739490509,
+ "learning_rate": 0.0006,
+ "loss": 4.364739418029785,
+ "step": 746
+ },
+ {
+ "epoch": 10.37745740498034,
+ "grad_norm": 0.22281162440776825,
+ "learning_rate": 0.0006,
+ "loss": 4.351607799530029,
+ "step": 747
+ },
+ {
+ "epoch": 10.391437308868502,
+ "grad_norm": 0.20751096308231354,
+ "learning_rate": 0.0006,
+ "loss": 4.370017051696777,
+ "step": 748
+ },
+ {
+ "epoch": 10.405417212756662,
+ "grad_norm": 0.19178363680839539,
+ "learning_rate": 0.0006,
+ "loss": 4.360328674316406,
+ "step": 749
+ },
+ {
+ "epoch": 10.419397116644824,
+ "grad_norm": 0.20534078776836395,
+ "learning_rate": 0.0006,
+ "loss": 4.3735432624816895,
+ "step": 750
+ },
+ {
+ "epoch": 10.433377020532983,
+ "grad_norm": 0.20533937215805054,
+ "learning_rate": 0.0006,
+ "loss": 4.326902389526367,
+ "step": 751
+ },
+ {
+ "epoch": 10.447356924421145,
+ "grad_norm": 0.22057875990867615,
+ "learning_rate": 0.0006,
+ "loss": 4.360934257507324,
+ "step": 752
+ },
+ {
+ "epoch": 10.461336828309305,
+ "grad_norm": 0.25568997859954834,
+ "learning_rate": 0.0006,
+ "loss": 4.345063209533691,
+ "step": 753
+ },
+ {
+ "epoch": 10.475316732197467,
+ "grad_norm": 0.31471487879753113,
+ "learning_rate": 0.0006,
+ "loss": 4.324014186859131,
+ "step": 754
+ },
+ {
+ "epoch": 10.489296636085626,
+ "grad_norm": 0.2716822624206543,
+ "learning_rate": 0.0006,
+ "loss": 4.318459510803223,
+ "step": 755
+ },
+ {
+ "epoch": 10.503276539973788,
+ "grad_norm": 0.19552019238471985,
+ "learning_rate": 0.0006,
+ "loss": 4.3367509841918945,
+ "step": 756
+ },
+ {
+ "epoch": 10.517256443861948,
+ "grad_norm": 0.22822986543178558,
+ "learning_rate": 0.0006,
+ "loss": 4.328935623168945,
+ "step": 757
+ },
+ {
+ "epoch": 10.53123634775011,
+ "grad_norm": 0.22282928228378296,
+ "learning_rate": 0.0006,
+ "loss": 4.358272552490234,
+ "step": 758
+ },
+ {
+ "epoch": 10.54521625163827,
+ "grad_norm": 0.23303352296352386,
+ "learning_rate": 0.0006,
+ "loss": 4.336641311645508,
+ "step": 759
+ },
+ {
+ "epoch": 10.55919615552643,
+ "grad_norm": 0.29474690556526184,
+ "learning_rate": 0.0006,
+ "loss": 4.343188285827637,
+ "step": 760
+ },
+ {
+ "epoch": 10.57317605941459,
+ "grad_norm": 0.36269059777259827,
+ "learning_rate": 0.0006,
+ "loss": 4.313019752502441,
+ "step": 761
+ },
+ {
+ "epoch": 10.587155963302752,
+ "grad_norm": 0.3742978870868683,
+ "learning_rate": 0.0006,
+ "loss": 4.361410140991211,
+ "step": 762
+ },
+ {
+ "epoch": 10.601135867190912,
+ "grad_norm": 0.34412163496017456,
+ "learning_rate": 0.0006,
+ "loss": 4.321324825286865,
+ "step": 763
+ },
+ {
+ "epoch": 10.615115771079074,
+ "grad_norm": 0.3464587926864624,
+ "learning_rate": 0.0006,
+ "loss": 4.341907501220703,
+ "step": 764
+ },
+ {
+ "epoch": 10.629095674967235,
+ "grad_norm": 0.3318136930465698,
+ "learning_rate": 0.0006,
+ "loss": 4.329099655151367,
+ "step": 765
+ },
+ {
+ "epoch": 10.643075578855395,
+ "grad_norm": 0.31292903423309326,
+ "learning_rate": 0.0006,
+ "loss": 4.332015037536621,
+ "step": 766
+ },
+ {
+ "epoch": 10.657055482743557,
+ "grad_norm": 0.2904847264289856,
+ "learning_rate": 0.0006,
+ "loss": 4.341764450073242,
+ "step": 767
+ },
+ {
+ "epoch": 10.671035386631717,
+ "grad_norm": 0.3287692666053772,
+ "learning_rate": 0.0006,
+ "loss": 4.342329025268555,
+ "step": 768
+ },
+ {
+ "epoch": 10.685015290519878,
+ "grad_norm": 0.3115365207195282,
+ "learning_rate": 0.0006,
+ "loss": 4.3530073165893555,
+ "step": 769
+ },
+ {
+ "epoch": 10.698995194408038,
+ "grad_norm": 0.24133864045143127,
+ "learning_rate": 0.0006,
+ "loss": 4.321497917175293,
+ "step": 770
+ },
+ {
+ "epoch": 10.7129750982962,
+ "grad_norm": 0.24658630788326263,
+ "learning_rate": 0.0006,
+ "loss": 4.32669734954834,
+ "step": 771
+ },
+ {
+ "epoch": 10.72695500218436,
+ "grad_norm": 0.2342129647731781,
+ "learning_rate": 0.0006,
+ "loss": 4.345459461212158,
+ "step": 772
+ },
+ {
+ "epoch": 10.740934906072521,
+ "grad_norm": 0.23360829055309296,
+ "learning_rate": 0.0006,
+ "loss": 4.33249568939209,
+ "step": 773
+ },
+ {
+ "epoch": 10.754914809960681,
+ "grad_norm": 0.24314677715301514,
+ "learning_rate": 0.0006,
+ "loss": 4.30499792098999,
+ "step": 774
+ },
+ {
+ "epoch": 10.768894713848843,
+ "grad_norm": 0.22105181217193604,
+ "learning_rate": 0.0006,
+ "loss": 4.33706521987915,
+ "step": 775
+ },
+ {
+ "epoch": 10.782874617737003,
+ "grad_norm": 0.23307174444198608,
+ "learning_rate": 0.0006,
+ "loss": 4.320387840270996,
+ "step": 776
+ },
+ {
+ "epoch": 10.796854521625164,
+ "grad_norm": 0.24946169555187225,
+ "learning_rate": 0.0006,
+ "loss": 4.316012382507324,
+ "step": 777
+ },
+ {
+ "epoch": 10.810834425513324,
+ "grad_norm": 0.26023536920547485,
+ "learning_rate": 0.0006,
+ "loss": 4.315193176269531,
+ "step": 778
+ },
+ {
+ "epoch": 10.824814329401486,
+ "grad_norm": 0.2688547968864441,
+ "learning_rate": 0.0006,
+ "loss": 4.3243255615234375,
+ "step": 779
+ },
+ {
+ "epoch": 10.838794233289645,
+ "grad_norm": 0.28188297152519226,
+ "learning_rate": 0.0006,
+ "loss": 4.3202972412109375,
+ "step": 780
+ },
+ {
+ "epoch": 10.852774137177807,
+ "grad_norm": 0.2890053689479828,
+ "learning_rate": 0.0006,
+ "loss": 4.318799018859863,
+ "step": 781
+ },
+ {
+ "epoch": 10.866754041065967,
+ "grad_norm": 0.2914353013038635,
+ "learning_rate": 0.0006,
+ "loss": 4.314262390136719,
+ "step": 782
+ },
+ {
+ "epoch": 10.880733944954128,
+ "grad_norm": 0.3145572543144226,
+ "learning_rate": 0.0006,
+ "loss": 4.339262008666992,
+ "step": 783
+ },
+ {
+ "epoch": 10.89471384884229,
+ "grad_norm": 0.323062002658844,
+ "learning_rate": 0.0006,
+ "loss": 4.354856491088867,
+ "step": 784
+ },
+ {
+ "epoch": 10.90869375273045,
+ "grad_norm": 0.32741227746009827,
+ "learning_rate": 0.0006,
+ "loss": 4.325577735900879,
+ "step": 785
+ },
+ {
+ "epoch": 10.922673656618612,
+ "grad_norm": 0.2855733036994934,
+ "learning_rate": 0.0006,
+ "loss": 4.324419021606445,
+ "step": 786
+ },
+ {
+ "epoch": 10.936653560506771,
+ "grad_norm": 0.2969444990158081,
+ "learning_rate": 0.0006,
+ "loss": 4.320681095123291,
+ "step": 787
+ },
+ {
+ "epoch": 10.950633464394933,
+ "grad_norm": 0.28108111023902893,
+ "learning_rate": 0.0006,
+ "loss": 4.32673454284668,
+ "step": 788
+ },
+ {
+ "epoch": 10.964613368283093,
+ "grad_norm": 0.2537972629070282,
+ "learning_rate": 0.0006,
+ "loss": 4.3197021484375,
+ "step": 789
+ },
+ {
+ "epoch": 10.978593272171254,
+ "grad_norm": 0.2354544699192047,
+ "learning_rate": 0.0006,
+ "loss": 4.3354973793029785,
+ "step": 790
+ },
+ {
+ "epoch": 10.992573176059414,
+ "grad_norm": 0.26195117831230164,
+ "learning_rate": 0.0006,
+ "loss": 4.3172526359558105,
+ "step": 791
+ },
+ {
+ "epoch": 11.0,
+ "grad_norm": 0.27089616656303406,
+ "learning_rate": 0.0006,
+ "loss": 4.324293613433838,
+ "step": 792
+ },
+ {
+ "epoch": 11.0,
+ "eval_loss": 4.531813621520996,
+ "eval_runtime": 44.1656,
+ "eval_samples_per_second": 55.292,
+ "eval_steps_per_second": 3.464,
+ "step": 792
+ },
+ {
+ "epoch": 11.013979903888162,
+ "grad_norm": 0.2526339590549469,
+ "learning_rate": 0.0006,
+ "loss": 4.287600517272949,
+ "step": 793
+ },
+ {
+ "epoch": 11.027959807776321,
+ "grad_norm": 0.24318458139896393,
+ "learning_rate": 0.0006,
+ "loss": 4.268078327178955,
+ "step": 794
+ },
+ {
+ "epoch": 11.041939711664483,
+ "grad_norm": 0.2450830638408661,
+ "learning_rate": 0.0006,
+ "loss": 4.265467643737793,
+ "step": 795
+ },
+ {
+ "epoch": 11.055919615552643,
+ "grad_norm": 0.23963099718093872,
+ "learning_rate": 0.0006,
+ "loss": 4.267931938171387,
+ "step": 796
+ },
+ {
+ "epoch": 11.069899519440805,
+ "grad_norm": 0.2488657534122467,
+ "learning_rate": 0.0006,
+ "loss": 4.30262565612793,
+ "step": 797
+ },
+ {
+ "epoch": 11.083879423328964,
+ "grad_norm": 0.2319781631231308,
+ "learning_rate": 0.0006,
+ "loss": 4.28665828704834,
+ "step": 798
+ },
+ {
+ "epoch": 11.097859327217126,
+ "grad_norm": 0.2425263375043869,
+ "learning_rate": 0.0006,
+ "loss": 4.284830570220947,
+ "step": 799
+ },
+ {
+ "epoch": 11.111839231105286,
+ "grad_norm": 0.23096567392349243,
+ "learning_rate": 0.0006,
+ "loss": 4.2817206382751465,
+ "step": 800
+ },
+ {
+ "epoch": 11.125819134993447,
+ "grad_norm": 0.2846364676952362,
+ "learning_rate": 0.0006,
+ "loss": 4.276104927062988,
+ "step": 801
+ },
+ {
+ "epoch": 11.139799038881607,
+ "grad_norm": 0.2984965741634369,
+ "learning_rate": 0.0006,
+ "loss": 4.2909650802612305,
+ "step": 802
+ },
+ {
+ "epoch": 11.153778942769769,
+ "grad_norm": 0.2841213643550873,
+ "learning_rate": 0.0006,
+ "loss": 4.283358097076416,
+ "step": 803
+ },
+ {
+ "epoch": 11.167758846657929,
+ "grad_norm": 0.29192933440208435,
+ "learning_rate": 0.0006,
+ "loss": 4.267040729522705,
+ "step": 804
+ },
+ {
+ "epoch": 11.18173875054609,
+ "grad_norm": 0.3254184126853943,
+ "learning_rate": 0.0006,
+ "loss": 4.301564693450928,
+ "step": 805
+ },
+ {
+ "epoch": 11.19571865443425,
+ "grad_norm": 0.3347095847129822,
+ "learning_rate": 0.0006,
+ "loss": 4.271395683288574,
+ "step": 806
+ },
+ {
+ "epoch": 11.209698558322412,
+ "grad_norm": 0.25609350204467773,
+ "learning_rate": 0.0006,
+ "loss": 4.2963056564331055,
+ "step": 807
+ },
+ {
+ "epoch": 11.223678462210572,
+ "grad_norm": 0.29272061586380005,
+ "learning_rate": 0.0006,
+ "loss": 4.298416614532471,
+ "step": 808
+ },
+ {
+ "epoch": 11.237658366098733,
+ "grad_norm": 0.32179465889930725,
+ "learning_rate": 0.0006,
+ "loss": 4.294036865234375,
+ "step": 809
+ },
+ {
+ "epoch": 11.251638269986893,
+ "grad_norm": 0.3336549401283264,
+ "learning_rate": 0.0006,
+ "loss": 4.291993141174316,
+ "step": 810
+ },
+ {
+ "epoch": 11.265618173875055,
+ "grad_norm": 0.32273536920547485,
+ "learning_rate": 0.0006,
+ "loss": 4.311004638671875,
+ "step": 811
+ },
+ {
+ "epoch": 11.279598077763215,
+ "grad_norm": 0.3575087785720825,
+ "learning_rate": 0.0006,
+ "loss": 4.300217628479004,
+ "step": 812
+ },
+ {
+ "epoch": 11.293577981651376,
+ "grad_norm": 0.3332885205745697,
+ "learning_rate": 0.0006,
+ "loss": 4.278337478637695,
+ "step": 813
+ },
+ {
+ "epoch": 11.307557885539538,
+ "grad_norm": 0.31440407037734985,
+ "learning_rate": 0.0006,
+ "loss": 4.273826599121094,
+ "step": 814
+ },
+ {
+ "epoch": 11.321537789427698,
+ "grad_norm": 0.29822009801864624,
+ "learning_rate": 0.0006,
+ "loss": 4.284292221069336,
+ "step": 815
+ },
+ {
+ "epoch": 11.33551769331586,
+ "grad_norm": 0.30695512890815735,
+ "learning_rate": 0.0006,
+ "loss": 4.2831926345825195,
+ "step": 816
+ },
+ {
+ "epoch": 11.349497597204019,
+ "grad_norm": 0.30576950311660767,
+ "learning_rate": 0.0006,
+ "loss": 4.277133464813232,
+ "step": 817
+ },
+ {
+ "epoch": 11.36347750109218,
+ "grad_norm": 0.2859647870063782,
+ "learning_rate": 0.0006,
+ "loss": 4.3130106925964355,
+ "step": 818
+ },
+ {
+ "epoch": 11.37745740498034,
+ "grad_norm": 0.32417574524879456,
+ "learning_rate": 0.0006,
+ "loss": 4.310303211212158,
+ "step": 819
+ },
+ {
+ "epoch": 11.391437308868502,
+ "grad_norm": 0.3512463867664337,
+ "learning_rate": 0.0006,
+ "loss": 4.287015438079834,
+ "step": 820
+ },
+ {
+ "epoch": 11.405417212756662,
+ "grad_norm": 0.32578620314598083,
+ "learning_rate": 0.0006,
+ "loss": 4.2957940101623535,
+ "step": 821
+ },
+ {
+ "epoch": 11.419397116644824,
+ "grad_norm": 0.287949800491333,
+ "learning_rate": 0.0006,
+ "loss": 4.2881879806518555,
+ "step": 822
+ },
+ {
+ "epoch": 11.433377020532983,
+ "grad_norm": 0.28048595786094666,
+ "learning_rate": 0.0006,
+ "loss": 4.274960517883301,
+ "step": 823
+ },
+ {
+ "epoch": 11.447356924421145,
+ "grad_norm": 0.2541540563106537,
+ "learning_rate": 0.0006,
+ "loss": 4.261083602905273,
+ "step": 824
+ },
+ {
+ "epoch": 11.461336828309305,
+ "grad_norm": 0.2348361313343048,
+ "learning_rate": 0.0006,
+ "loss": 4.271036148071289,
+ "step": 825
+ },
+ {
+ "epoch": 11.475316732197467,
+ "grad_norm": 0.20913535356521606,
+ "learning_rate": 0.0006,
+ "loss": 4.307661056518555,
+ "step": 826
+ },
+ {
+ "epoch": 11.489296636085626,
+ "grad_norm": 0.22298868000507355,
+ "learning_rate": 0.0006,
+ "loss": 4.26902961730957,
+ "step": 827
+ },
+ {
+ "epoch": 11.503276539973788,
+ "grad_norm": 0.22752761840820312,
+ "learning_rate": 0.0006,
+ "loss": 4.305529594421387,
+ "step": 828
+ },
+ {
+ "epoch": 11.517256443861948,
+ "grad_norm": 0.2149917483329773,
+ "learning_rate": 0.0006,
+ "loss": 4.25134801864624,
+ "step": 829
+ },
+ {
+ "epoch": 11.53123634775011,
+ "grad_norm": 0.21085695922374725,
+ "learning_rate": 0.0006,
+ "loss": 4.266982078552246,
+ "step": 830
+ },
+ {
+ "epoch": 11.54521625163827,
+ "grad_norm": 0.21586747467517853,
+ "learning_rate": 0.0006,
+ "loss": 4.235255718231201,
+ "step": 831
+ },
+ {
+ "epoch": 11.55919615552643,
+ "grad_norm": 0.2520856559276581,
+ "learning_rate": 0.0006,
+ "loss": 4.283442497253418,
+ "step": 832
+ },
+ {
+ "epoch": 11.57317605941459,
+ "grad_norm": 0.2825471758842468,
+ "learning_rate": 0.0006,
+ "loss": 4.234672546386719,
+ "step": 833
+ },
+ {
+ "epoch": 11.587155963302752,
+ "grad_norm": 0.27437824010849,
+ "learning_rate": 0.0006,
+ "loss": 4.246068000793457,
+ "step": 834
+ },
+ {
+ "epoch": 11.601135867190912,
+ "grad_norm": 0.2596757411956787,
+ "learning_rate": 0.0006,
+ "loss": 4.278448104858398,
+ "step": 835
+ },
+ {
+ "epoch": 11.615115771079074,
+ "grad_norm": 0.25663474202156067,
+ "learning_rate": 0.0006,
+ "loss": 4.308779716491699,
+ "step": 836
+ },
+ {
+ "epoch": 11.629095674967235,
+ "grad_norm": 0.2546203136444092,
+ "learning_rate": 0.0006,
+ "loss": 4.261247634887695,
+ "step": 837
+ },
+ {
+ "epoch": 11.643075578855395,
+ "grad_norm": 0.24722838401794434,
+ "learning_rate": 0.0006,
+ "loss": 4.275888442993164,
+ "step": 838
+ },
+ {
+ "epoch": 11.657055482743557,
+ "grad_norm": 0.3022806644439697,
+ "learning_rate": 0.0006,
+ "loss": 4.2572407722473145,
+ "step": 839
+ },
+ {
+ "epoch": 11.671035386631717,
+ "grad_norm": 0.31170839071273804,
+ "learning_rate": 0.0006,
+ "loss": 4.26992654800415,
+ "step": 840
+ },
+ {
+ "epoch": 11.685015290519878,
+ "grad_norm": 0.31362825632095337,
+ "learning_rate": 0.0006,
+ "loss": 4.2354655265808105,
+ "step": 841
+ },
+ {
+ "epoch": 11.698995194408038,
+ "grad_norm": 0.28741633892059326,
+ "learning_rate": 0.0006,
+ "loss": 4.263496398925781,
+ "step": 842
+ },
+ {
+ "epoch": 11.7129750982962,
+ "grad_norm": 0.2492494285106659,
+ "learning_rate": 0.0006,
+ "loss": 4.26463508605957,
+ "step": 843
+ },
+ {
+ "epoch": 11.72695500218436,
+ "grad_norm": 0.24324660003185272,
+ "learning_rate": 0.0006,
+ "loss": 4.245428085327148,
+ "step": 844
+ },
+ {
+ "epoch": 11.740934906072521,
+ "grad_norm": 0.23591114580631256,
+ "learning_rate": 0.0006,
+ "loss": 4.249845504760742,
+ "step": 845
+ },
+ {
+ "epoch": 11.754914809960681,
+ "grad_norm": 0.2202281504869461,
+ "learning_rate": 0.0006,
+ "loss": 4.245006084442139,
+ "step": 846
+ },
+ {
+ "epoch": 11.768894713848843,
+ "grad_norm": 0.22117942571640015,
+ "learning_rate": 0.0006,
+ "loss": 4.27812385559082,
+ "step": 847
+ },
+ {
+ "epoch": 11.782874617737003,
+ "grad_norm": 0.26361414790153503,
+ "learning_rate": 0.0006,
+ "loss": 4.250475883483887,
+ "step": 848
+ },
+ {
+ "epoch": 11.796854521625164,
+ "grad_norm": 0.2820321321487427,
+ "learning_rate": 0.0006,
+ "loss": 4.265835762023926,
+ "step": 849
+ },
+ {
+ "epoch": 11.810834425513324,
+ "grad_norm": 0.2078961282968521,
+ "learning_rate": 0.0006,
+ "loss": 4.251298904418945,
+ "step": 850
+ },
+ {
+ "epoch": 11.824814329401486,
+ "grad_norm": 0.21548646688461304,
+ "learning_rate": 0.0006,
+ "loss": 4.288539886474609,
+ "step": 851
+ },
+ {
+ "epoch": 11.838794233289645,
+ "grad_norm": 0.22719401121139526,
+ "learning_rate": 0.0006,
+ "loss": 4.252035140991211,
+ "step": 852
+ },
+ {
+ "epoch": 11.852774137177807,
+ "grad_norm": 0.21628320217132568,
+ "learning_rate": 0.0006,
+ "loss": 4.268622398376465,
+ "step": 853
+ },
+ {
+ "epoch": 11.866754041065967,
+ "grad_norm": 0.20855145156383514,
+ "learning_rate": 0.0006,
+ "loss": 4.253366470336914,
+ "step": 854
+ },
+ {
+ "epoch": 11.880733944954128,
+ "grad_norm": 0.2091914266347885,
+ "learning_rate": 0.0006,
+ "loss": 4.237805366516113,
+ "step": 855
+ },
+ {
+ "epoch": 11.89471384884229,
+ "grad_norm": 0.2000127136707306,
+ "learning_rate": 0.0006,
+ "loss": 4.268559455871582,
+ "step": 856
+ },
+ {
+ "epoch": 11.90869375273045,
+ "grad_norm": 0.21080894768238068,
+ "learning_rate": 0.0006,
+ "loss": 4.208702087402344,
+ "step": 857
+ },
+ {
+ "epoch": 11.922673656618612,
+ "grad_norm": 0.22125796973705292,
+ "learning_rate": 0.0006,
+ "loss": 4.250210762023926,
+ "step": 858
+ },
+ {
+ "epoch": 11.936653560506771,
+ "grad_norm": 0.25905469059944153,
+ "learning_rate": 0.0006,
+ "loss": 4.2263593673706055,
+ "step": 859
+ },
+ {
+ "epoch": 11.950633464394933,
+ "grad_norm": 0.29970306158065796,
+ "learning_rate": 0.0006,
+ "loss": 4.250848770141602,
+ "step": 860
+ },
+ {
+ "epoch": 11.964613368283093,
+ "grad_norm": 0.28155168890953064,
+ "learning_rate": 0.0006,
+ "loss": 4.272709369659424,
+ "step": 861
+ },
+ {
+ "epoch": 11.978593272171254,
+ "grad_norm": 0.23396113514900208,
+ "learning_rate": 0.0006,
+ "loss": 4.2674970626831055,
+ "step": 862
+ },
+ {
+ "epoch": 11.992573176059414,
+ "grad_norm": 0.23619577288627625,
+ "learning_rate": 0.0006,
+ "loss": 4.240267753601074,
+ "step": 863
+ },
+ {
+ "epoch": 12.0,
+ "grad_norm": 0.2779577076435089,
+ "learning_rate": 0.0006,
+ "loss": 4.267625331878662,
+ "step": 864
+ },
+ {
+ "epoch": 12.0,
+ "eval_loss": 4.437657356262207,
+ "eval_runtime": 44.4959,
+ "eval_samples_per_second": 54.881,
+ "eval_steps_per_second": 3.439,
+ "step": 864
+ },
+ {
+ "epoch": 12.013979903888162,
+ "grad_norm": 0.2948288321495056,
+ "learning_rate": 0.0006,
+ "loss": 4.232182502746582,
+ "step": 865
+ },
+ {
+ "epoch": 12.027959807776321,
+ "grad_norm": 0.3715663254261017,
+ "learning_rate": 0.0006,
+ "loss": 4.233771324157715,
+ "step": 866
+ },
+ {
+ "epoch": 12.041939711664483,
+ "grad_norm": 0.38358673453330994,
+ "learning_rate": 0.0006,
+ "loss": 4.208967685699463,
+ "step": 867
+ },
+ {
+ "epoch": 12.055919615552643,
+ "grad_norm": 0.3314538896083832,
+ "learning_rate": 0.0006,
+ "loss": 4.230685234069824,
+ "step": 868
+ },
+ {
+ "epoch": 12.069899519440805,
+ "grad_norm": 0.34171539545059204,
+ "learning_rate": 0.0006,
+ "loss": 4.231358528137207,
+ "step": 869
+ },
+ {
+ "epoch": 12.083879423328964,
+ "grad_norm": 0.3253359794616699,
+ "learning_rate": 0.0006,
+ "loss": 4.276405334472656,
+ "step": 870
+ },
+ {
+ "epoch": 12.097859327217126,
+ "grad_norm": 0.29008302092552185,
+ "learning_rate": 0.0006,
+ "loss": 4.232935905456543,
+ "step": 871
+ },
+ {
+ "epoch": 12.111839231105286,
+ "grad_norm": 0.28490355610847473,
+ "learning_rate": 0.0006,
+ "loss": 4.238036632537842,
+ "step": 872
+ },
+ {
+ "epoch": 12.125819134993447,
+ "grad_norm": 0.28446322679519653,
+ "learning_rate": 0.0006,
+ "loss": 4.210229873657227,
+ "step": 873
+ },
+ {
+ "epoch": 12.139799038881607,
+ "grad_norm": 0.29664531350135803,
+ "learning_rate": 0.0006,
+ "loss": 4.221309185028076,
+ "step": 874
+ },
+ {
+ "epoch": 12.153778942769769,
+ "grad_norm": 0.3083505928516388,
+ "learning_rate": 0.0006,
+ "loss": 4.221837997436523,
+ "step": 875
+ },
+ {
+ "epoch": 12.167758846657929,
+ "grad_norm": 0.3282921314239502,
+ "learning_rate": 0.0006,
+ "loss": 4.236713409423828,
+ "step": 876
+ },
+ {
+ "epoch": 12.18173875054609,
+ "grad_norm": 0.3603622615337372,
+ "learning_rate": 0.0006,
+ "loss": 4.245080947875977,
+ "step": 877
+ },
+ {
+ "epoch": 12.19571865443425,
+ "grad_norm": 0.38070905208587646,
+ "learning_rate": 0.0006,
+ "loss": 4.240756988525391,
+ "step": 878
+ },
+ {
+ "epoch": 12.209698558322412,
+ "grad_norm": 0.34479081630706787,
+ "learning_rate": 0.0006,
+ "loss": 4.200998306274414,
+ "step": 879
+ },
+ {
+ "epoch": 12.223678462210572,
+ "grad_norm": 0.3006879389286041,
+ "learning_rate": 0.0006,
+ "loss": 4.23531436920166,
+ "step": 880
+ },
+ {
+ "epoch": 12.237658366098733,
+ "grad_norm": 0.36835649609565735,
+ "learning_rate": 0.0006,
+ "loss": 4.229718208312988,
+ "step": 881
+ },
+ {
+ "epoch": 12.251638269986893,
+ "grad_norm": 0.4386984407901764,
+ "learning_rate": 0.0006,
+ "loss": 4.241188049316406,
+ "step": 882
+ },
+ {
+ "epoch": 12.265618173875055,
+ "grad_norm": 0.4442787170410156,
+ "learning_rate": 0.0006,
+ "loss": 4.239102840423584,
+ "step": 883
+ },
+ {
+ "epoch": 12.279598077763215,
+ "grad_norm": 0.324411541223526,
+ "learning_rate": 0.0006,
+ "loss": 4.198982238769531,
+ "step": 884
+ },
+ {
+ "epoch": 12.293577981651376,
+ "grad_norm": 0.2824151813983917,
+ "learning_rate": 0.0006,
+ "loss": 4.248816967010498,
+ "step": 885
+ },
+ {
+ "epoch": 12.307557885539538,
+ "grad_norm": 0.31407129764556885,
+ "learning_rate": 0.0006,
+ "loss": 4.2371320724487305,
+ "step": 886
+ },
+ {
+ "epoch": 12.321537789427698,
+ "grad_norm": 0.32920050621032715,
+ "learning_rate": 0.0006,
+ "loss": 4.210432052612305,
+ "step": 887
+ },
+ {
+ "epoch": 12.33551769331586,
+ "grad_norm": 0.315231055021286,
+ "learning_rate": 0.0006,
+ "loss": 4.219416618347168,
+ "step": 888
+ },
+ {
+ "epoch": 12.349497597204019,
+ "grad_norm": 0.30932050943374634,
+ "learning_rate": 0.0006,
+ "loss": 4.225022315979004,
+ "step": 889
+ },
+ {
+ "epoch": 12.36347750109218,
+ "grad_norm": 0.30242064595222473,
+ "learning_rate": 0.0006,
+ "loss": 4.2738518714904785,
+ "step": 890
+ },
+ {
+ "epoch": 12.37745740498034,
+ "grad_norm": 0.2926250994205475,
+ "learning_rate": 0.0006,
+ "loss": 4.231094837188721,
+ "step": 891
+ },
+ {
+ "epoch": 12.391437308868502,
+ "grad_norm": 0.2541215717792511,
+ "learning_rate": 0.0006,
+ "loss": 4.211821556091309,
+ "step": 892
+ },
+ {
+ "epoch": 12.405417212756662,
+ "grad_norm": 0.23693418502807617,
+ "learning_rate": 0.0006,
+ "loss": 4.208099365234375,
+ "step": 893
+ },
+ {
+ "epoch": 12.419397116644824,
+ "grad_norm": 0.22063226997852325,
+ "learning_rate": 0.0006,
+ "loss": 4.211234092712402,
+ "step": 894
+ },
+ {
+ "epoch": 12.433377020532983,
+ "grad_norm": 0.21536271274089813,
+ "learning_rate": 0.0006,
+ "loss": 4.199228286743164,
+ "step": 895
+ },
+ {
+ "epoch": 12.447356924421145,
+ "grad_norm": 0.243179589509964,
+ "learning_rate": 0.0006,
+ "loss": 4.204344749450684,
+ "step": 896
+ },
+ {
+ "epoch": 12.461336828309305,
+ "grad_norm": 0.2299746423959732,
+ "learning_rate": 0.0006,
+ "loss": 4.1565752029418945,
+ "step": 897
+ },
+ {
+ "epoch": 12.475316732197467,
+ "grad_norm": 0.2286847084760666,
+ "learning_rate": 0.0006,
+ "loss": 4.242953777313232,
+ "step": 898
+ },
+ {
+ "epoch": 12.489296636085626,
+ "grad_norm": 0.19463586807250977,
+ "learning_rate": 0.0006,
+ "loss": 4.214809417724609,
+ "step": 899
+ },
+ {
+ "epoch": 12.503276539973788,
+ "grad_norm": 0.1978398710489273,
+ "learning_rate": 0.0006,
+ "loss": 4.159815311431885,
+ "step": 900
+ },
+ {
+ "epoch": 12.517256443861948,
+ "grad_norm": 0.23177850246429443,
+ "learning_rate": 0.0006,
+ "loss": 4.2069902420043945,
+ "step": 901
+ },
+ {
+ "epoch": 12.53123634775011,
+ "grad_norm": 0.2408912032842636,
+ "learning_rate": 0.0006,
+ "loss": 4.206778526306152,
+ "step": 902
+ },
+ {
+ "epoch": 12.54521625163827,
+ "grad_norm": 0.21839919686317444,
+ "learning_rate": 0.0006,
+ "loss": 4.197076320648193,
+ "step": 903
+ },
+ {
+ "epoch": 12.55919615552643,
+ "grad_norm": 0.2053343504667282,
+ "learning_rate": 0.0006,
+ "loss": 4.21247673034668,
+ "step": 904
+ },
+ {
+ "epoch": 12.57317605941459,
+ "grad_norm": 0.19943439960479736,
+ "learning_rate": 0.0006,
+ "loss": 4.176966667175293,
+ "step": 905
+ },
+ {
+ "epoch": 12.587155963302752,
+ "grad_norm": 0.2012074887752533,
+ "learning_rate": 0.0006,
+ "loss": 4.210303783416748,
+ "step": 906
+ },
+ {
+ "epoch": 12.601135867190912,
+ "grad_norm": 0.22240376472473145,
+ "learning_rate": 0.0006,
+ "loss": 4.200625896453857,
+ "step": 907
+ },
+ {
+ "epoch": 12.615115771079074,
+ "grad_norm": 0.21729710698127747,
+ "learning_rate": 0.0006,
+ "loss": 4.2001953125,
+ "step": 908
+ },
+ {
+ "epoch": 12.629095674967235,
+ "grad_norm": 0.22470413148403168,
+ "learning_rate": 0.0006,
+ "loss": 4.197505950927734,
+ "step": 909
+ },
+ {
+ "epoch": 12.643075578855395,
+ "grad_norm": 0.23776157200336456,
+ "learning_rate": 0.0006,
+ "loss": 4.235603332519531,
+ "step": 910
+ },
+ {
+ "epoch": 12.657055482743557,
+ "grad_norm": 0.20616604387760162,
+ "learning_rate": 0.0006,
+ "loss": 4.193584442138672,
+ "step": 911
+ },
+ {
+ "epoch": 12.671035386631717,
+ "grad_norm": 0.1913922131061554,
+ "learning_rate": 0.0006,
+ "loss": 4.209191799163818,
+ "step": 912
+ },
+ {
+ "epoch": 12.685015290519878,
+ "grad_norm": 0.19427193701267242,
+ "learning_rate": 0.0006,
+ "loss": 4.219709396362305,
+ "step": 913
+ },
+ {
+ "epoch": 12.698995194408038,
+ "grad_norm": 0.20976558327674866,
+ "learning_rate": 0.0006,
+ "loss": 4.210859298706055,
+ "step": 914
+ },
+ {
+ "epoch": 12.7129750982962,
+ "grad_norm": 0.21571609377861023,
+ "learning_rate": 0.0006,
+ "loss": 4.189394950866699,
+ "step": 915
+ },
+ {
+ "epoch": 12.72695500218436,
+ "grad_norm": 0.2152620255947113,
+ "learning_rate": 0.0006,
+ "loss": 4.223589897155762,
+ "step": 916
+ },
+ {
+ "epoch": 12.740934906072521,
+ "grad_norm": 0.21867749094963074,
+ "learning_rate": 0.0006,
+ "loss": 4.198590278625488,
+ "step": 917
+ },
+ {
+ "epoch": 12.754914809960681,
+ "grad_norm": 0.22300855815410614,
+ "learning_rate": 0.0006,
+ "loss": 4.188891410827637,
+ "step": 918
+ },
+ {
+ "epoch": 12.768894713848843,
+ "grad_norm": 0.22197802364826202,
+ "learning_rate": 0.0006,
+ "loss": 4.190221309661865,
+ "step": 919
+ },
+ {
+ "epoch": 12.782874617737003,
+ "grad_norm": 0.20003341138362885,
+ "learning_rate": 0.0006,
+ "loss": 4.215453147888184,
+ "step": 920
+ },
+ {
+ "epoch": 12.796854521625164,
+ "grad_norm": 0.19887958467006683,
+ "learning_rate": 0.0006,
+ "loss": 4.18174934387207,
+ "step": 921
+ },
+ {
+ "epoch": 12.810834425513324,
+ "grad_norm": 0.20945803821086884,
+ "learning_rate": 0.0006,
+ "loss": 4.234947204589844,
+ "step": 922
+ },
+ {
+ "epoch": 12.824814329401486,
+ "grad_norm": 0.2253490388393402,
+ "learning_rate": 0.0006,
+ "loss": 4.2177228927612305,
+ "step": 923
+ },
+ {
+ "epoch": 12.838794233289645,
+ "grad_norm": 0.247610405087471,
+ "learning_rate": 0.0006,
+ "loss": 4.2013139724731445,
+ "step": 924
+ },
+ {
+ "epoch": 12.852774137177807,
+ "grad_norm": 0.2792088985443115,
+ "learning_rate": 0.0006,
+ "loss": 4.204774379730225,
+ "step": 925
+ },
+ {
+ "epoch": 12.866754041065967,
+ "grad_norm": 0.2839066982269287,
+ "learning_rate": 0.0006,
+ "loss": 4.186254978179932,
+ "step": 926
+ },
+ {
+ "epoch": 12.880733944954128,
+ "grad_norm": 0.2793181836605072,
+ "learning_rate": 0.0006,
+ "loss": 4.172411918640137,
+ "step": 927
+ },
+ {
+ "epoch": 12.89471384884229,
+ "grad_norm": 0.29506033658981323,
+ "learning_rate": 0.0006,
+ "loss": 4.202878475189209,
+ "step": 928
+ },
+ {
+ "epoch": 12.90869375273045,
+ "grad_norm": 0.2799845039844513,
+ "learning_rate": 0.0006,
+ "loss": 4.1563310623168945,
+ "step": 929
+ },
+ {
+ "epoch": 12.922673656618612,
+ "grad_norm": 0.23972125351428986,
+ "learning_rate": 0.0006,
+ "loss": 4.224601745605469,
+ "step": 930
+ },
+ {
+ "epoch": 12.936653560506771,
+ "grad_norm": 0.21558353304862976,
+ "learning_rate": 0.0006,
+ "loss": 4.167957305908203,
+ "step": 931
+ },
+ {
+ "epoch": 12.950633464394933,
+ "grad_norm": 0.21800188720226288,
+ "learning_rate": 0.0006,
+ "loss": 4.1746039390563965,
+ "step": 932
+ },
+ {
+ "epoch": 12.964613368283093,
+ "grad_norm": 0.2086547315120697,
+ "learning_rate": 0.0006,
+ "loss": 4.188137054443359,
+ "step": 933
+ },
+ {
+ "epoch": 12.978593272171254,
+ "grad_norm": 0.2174186110496521,
+ "learning_rate": 0.0006,
+ "loss": 4.184014320373535,
+ "step": 934
+ },
+ {
+ "epoch": 12.992573176059414,
+ "grad_norm": 0.22755110263824463,
+ "learning_rate": 0.0006,
+ "loss": 4.180912017822266,
+ "step": 935
+ },
+ {
+ "epoch": 13.0,
+ "grad_norm": 0.2735324203968048,
+ "learning_rate": 0.0006,
+ "loss": 4.201578617095947,
+ "step": 936
+ },
+ {
+ "epoch": 13.0,
+ "eval_loss": 4.396903038024902,
+ "eval_runtime": 44.5664,
+ "eval_samples_per_second": 54.795,
+ "eval_steps_per_second": 3.433,
+ "step": 936
+ },
+ {
+ "epoch": 13.013979903888162,
+ "grad_norm": 0.27577832341194153,
+ "learning_rate": 0.0006,
+ "loss": 4.149985313415527,
+ "step": 937
+ },
+ {
+ "epoch": 13.027959807776321,
+ "grad_norm": 0.25817009806632996,
+ "learning_rate": 0.0006,
+ "loss": 4.1526103019714355,
+ "step": 938
+ },
+ {
+ "epoch": 13.041939711664483,
+ "grad_norm": 0.24564379453659058,
+ "learning_rate": 0.0006,
+ "loss": 4.1661152839660645,
+ "step": 939
+ },
+ {
+ "epoch": 13.055919615552643,
+ "grad_norm": 0.2465466856956482,
+ "learning_rate": 0.0006,
+ "loss": 4.152953624725342,
+ "step": 940
+ },
+ {
+ "epoch": 13.069899519440805,
+ "grad_norm": 0.22702018916606903,
+ "learning_rate": 0.0006,
+ "loss": 4.145125389099121,
+ "step": 941
+ },
+ {
+ "epoch": 13.083879423328964,
+ "grad_norm": 0.24350613355636597,
+ "learning_rate": 0.0006,
+ "loss": 4.163095474243164,
+ "step": 942
+ },
+ {
+ "epoch": 13.097859327217126,
+ "grad_norm": 0.2504431903362274,
+ "learning_rate": 0.0006,
+ "loss": 4.136016845703125,
+ "step": 943
+ },
+ {
+ "epoch": 13.111839231105286,
+ "grad_norm": 0.24968865513801575,
+ "learning_rate": 0.0006,
+ "loss": 4.163487911224365,
+ "step": 944
+ },
+ {
+ "epoch": 13.125819134993447,
+ "grad_norm": 0.27164196968078613,
+ "learning_rate": 0.0006,
+ "loss": 4.1194353103637695,
+ "step": 945
+ },
+ {
+ "epoch": 13.139799038881607,
+ "grad_norm": 0.28127020597457886,
+ "learning_rate": 0.0006,
+ "loss": 4.184807300567627,
+ "step": 946
+ },
+ {
+ "epoch": 13.153778942769769,
+ "grad_norm": 0.24574966728687286,
+ "learning_rate": 0.0006,
+ "loss": 4.154998779296875,
+ "step": 947
+ },
+ {
+ "epoch": 13.167758846657929,
+ "grad_norm": 0.22310060262680054,
+ "learning_rate": 0.0006,
+ "loss": 4.182928085327148,
+ "step": 948
+ },
+ {
+ "epoch": 13.18173875054609,
+ "grad_norm": 0.2539508640766144,
+ "learning_rate": 0.0006,
+ "loss": 4.176900386810303,
+ "step": 949
+ },
+ {
+ "epoch": 13.19571865443425,
+ "grad_norm": 0.30925488471984863,
+ "learning_rate": 0.0006,
+ "loss": 4.1760711669921875,
+ "step": 950
+ },
+ {
+ "epoch": 13.209698558322412,
+ "grad_norm": 0.3842967450618744,
+ "learning_rate": 0.0006,
+ "loss": 4.1830949783325195,
+ "step": 951
+ },
+ {
+ "epoch": 13.223678462210572,
+ "grad_norm": 0.35950011014938354,
+ "learning_rate": 0.0006,
+ "loss": 4.131983757019043,
+ "step": 952
+ },
+ {
+ "epoch": 13.237658366098733,
+ "grad_norm": 0.29913705587387085,
+ "learning_rate": 0.0006,
+ "loss": 4.166984558105469,
+ "step": 953
+ },
+ {
+ "epoch": 13.251638269986893,
+ "grad_norm": 0.32008400559425354,
+ "learning_rate": 0.0006,
+ "loss": 4.156482696533203,
+ "step": 954
+ },
+ {
+ "epoch": 13.265618173875055,
+ "grad_norm": 0.3186642825603485,
+ "learning_rate": 0.0006,
+ "loss": 4.1661057472229,
+ "step": 955
+ },
+ {
+ "epoch": 13.279598077763215,
+ "grad_norm": 0.3194582462310791,
+ "learning_rate": 0.0006,
+ "loss": 4.169328689575195,
+ "step": 956
+ },
+ {
+ "epoch": 13.293577981651376,
+ "grad_norm": 0.3133867084980011,
+ "learning_rate": 0.0006,
+ "loss": 4.165459632873535,
+ "step": 957
+ },
+ {
+ "epoch": 13.307557885539538,
+ "grad_norm": 0.3232237696647644,
+ "learning_rate": 0.0006,
+ "loss": 4.2107439041137695,
+ "step": 958
+ },
+ {
+ "epoch": 13.321537789427698,
+ "grad_norm": 0.3133196234703064,
+ "learning_rate": 0.0006,
+ "loss": 4.184182167053223,
+ "step": 959
+ },
+ {
+ "epoch": 13.33551769331586,
+ "grad_norm": 0.296129435300827,
+ "learning_rate": 0.0006,
+ "loss": 4.168312072753906,
+ "step": 960
+ },
+ {
+ "epoch": 13.349497597204019,
+ "grad_norm": 0.2685348391532898,
+ "learning_rate": 0.0006,
+ "loss": 4.159984588623047,
+ "step": 961
+ },
+ {
+ "epoch": 13.36347750109218,
+ "grad_norm": 0.2644975781440735,
+ "learning_rate": 0.0006,
+ "loss": 4.164909362792969,
+ "step": 962
+ },
+ {
+ "epoch": 13.37745740498034,
+ "grad_norm": 0.2712913155555725,
+ "learning_rate": 0.0006,
+ "loss": 4.158056259155273,
+ "step": 963
+ },
+ {
+ "epoch": 13.391437308868502,
+ "grad_norm": 0.2687259316444397,
+ "learning_rate": 0.0006,
+ "loss": 4.182924270629883,
+ "step": 964
+ },
+ {
+ "epoch": 13.405417212756662,
+ "grad_norm": 0.25640392303466797,
+ "learning_rate": 0.0006,
+ "loss": 4.153351783752441,
+ "step": 965
+ },
+ {
+ "epoch": 13.419397116644824,
+ "grad_norm": 0.2646305561065674,
+ "learning_rate": 0.0006,
+ "loss": 4.18464469909668,
+ "step": 966
+ },
+ {
+ "epoch": 13.433377020532983,
+ "grad_norm": 0.24206851422786713,
+ "learning_rate": 0.0006,
+ "loss": 4.127564430236816,
+ "step": 967
+ },
+ {
+ "epoch": 13.447356924421145,
+ "grad_norm": 0.23800471425056458,
+ "learning_rate": 0.0006,
+ "loss": 4.163488388061523,
+ "step": 968
+ },
+ {
+ "epoch": 13.461336828309305,
+ "grad_norm": 0.22957314550876617,
+ "learning_rate": 0.0006,
+ "loss": 4.178133964538574,
+ "step": 969
+ },
+ {
+ "epoch": 13.475316732197467,
+ "grad_norm": 0.22867488861083984,
+ "learning_rate": 0.0006,
+ "loss": 4.159056186676025,
+ "step": 970
+ },
+ {
+ "epoch": 13.489296636085626,
+ "grad_norm": 0.21737419068813324,
+ "learning_rate": 0.0006,
+ "loss": 4.138628005981445,
+ "step": 971
+ },
+ {
+ "epoch": 13.503276539973788,
+ "grad_norm": 0.2319175899028778,
+ "learning_rate": 0.0006,
+ "loss": 4.14644718170166,
+ "step": 972
+ },
+ {
+ "epoch": 13.517256443861948,
+ "grad_norm": 0.2572193443775177,
+ "learning_rate": 0.0006,
+ "loss": 4.175213813781738,
+ "step": 973
+ },
+ {
+ "epoch": 13.53123634775011,
+ "grad_norm": 0.23483099043369293,
+ "learning_rate": 0.0006,
+ "loss": 4.133171558380127,
+ "step": 974
+ },
+ {
+ "epoch": 13.54521625163827,
+ "grad_norm": 0.2071552872657776,
+ "learning_rate": 0.0006,
+ "loss": 4.13730525970459,
+ "step": 975
+ },
+ {
+ "epoch": 13.55919615552643,
+ "grad_norm": 0.23074553906917572,
+ "learning_rate": 0.0006,
+ "loss": 4.175051689147949,
+ "step": 976
+ },
+ {
+ "epoch": 13.57317605941459,
+ "grad_norm": 0.2480078786611557,
+ "learning_rate": 0.0006,
+ "loss": 4.167630672454834,
+ "step": 977
+ },
+ {
+ "epoch": 13.587155963302752,
+ "grad_norm": 0.23444348573684692,
+ "learning_rate": 0.0006,
+ "loss": 4.141780853271484,
+ "step": 978
+ },
+ {
+ "epoch": 13.601135867190912,
+ "grad_norm": 0.2227829396724701,
+ "learning_rate": 0.0006,
+ "loss": 4.157566547393799,
+ "step": 979
+ },
+ {
+ "epoch": 13.615115771079074,
+ "grad_norm": 0.21478354930877686,
+ "learning_rate": 0.0006,
+ "loss": 4.131053447723389,
+ "step": 980
+ },
+ {
+ "epoch": 13.629095674967235,
+ "grad_norm": 0.1978664994239807,
+ "learning_rate": 0.0006,
+ "loss": 4.123660564422607,
+ "step": 981
+ },
+ {
+ "epoch": 13.643075578855395,
+ "grad_norm": 0.19980201125144958,
+ "learning_rate": 0.0006,
+ "loss": 4.174160480499268,
+ "step": 982
+ },
+ {
+ "epoch": 13.657055482743557,
+ "grad_norm": 0.19815555214881897,
+ "learning_rate": 0.0006,
+ "loss": 4.181703090667725,
+ "step": 983
+ },
+ {
+ "epoch": 13.671035386631717,
+ "grad_norm": 0.19524012506008148,
+ "learning_rate": 0.0006,
+ "loss": 4.163766860961914,
+ "step": 984
+ },
+ {
+ "epoch": 13.685015290519878,
+ "grad_norm": 0.2286096215248108,
+ "learning_rate": 0.0006,
+ "loss": 4.172213554382324,
+ "step": 985
+ },
+ {
+ "epoch": 13.698995194408038,
+ "grad_norm": 0.2210782766342163,
+ "learning_rate": 0.0006,
+ "loss": 4.187033653259277,
+ "step": 986
+ },
+ {
+ "epoch": 13.7129750982962,
+ "grad_norm": 0.21874216198921204,
+ "learning_rate": 0.0006,
+ "loss": 4.125125885009766,
+ "step": 987
+ },
+ {
+ "epoch": 13.72695500218436,
+ "grad_norm": 0.22848057746887207,
+ "learning_rate": 0.0006,
+ "loss": 4.153496742248535,
+ "step": 988
+ },
+ {
+ "epoch": 13.740934906072521,
+ "grad_norm": 0.2250450700521469,
+ "learning_rate": 0.0006,
+ "loss": 4.149165630340576,
+ "step": 989
+ },
+ {
+ "epoch": 13.754914809960681,
+ "grad_norm": 0.21443772315979004,
+ "learning_rate": 0.0006,
+ "loss": 4.1528825759887695,
+ "step": 990
+ },
+ {
+ "epoch": 13.768894713848843,
+ "grad_norm": 0.21927927434444427,
+ "learning_rate": 0.0006,
+ "loss": 4.146831512451172,
+ "step": 991
+ },
+ {
+ "epoch": 13.782874617737003,
+ "grad_norm": 0.2413124144077301,
+ "learning_rate": 0.0006,
+ "loss": 4.136909008026123,
+ "step": 992
+ },
+ {
+ "epoch": 13.796854521625164,
+ "grad_norm": 0.2603479325771332,
+ "learning_rate": 0.0006,
+ "loss": 4.12525749206543,
+ "step": 993
+ },
+ {
+ "epoch": 13.810834425513324,
+ "grad_norm": 0.26246970891952515,
+ "learning_rate": 0.0006,
+ "loss": 4.114049434661865,
+ "step": 994
+ },
+ {
+ "epoch": 13.824814329401486,
+ "grad_norm": 0.27031877636909485,
+ "learning_rate": 0.0006,
+ "loss": 4.1646552085876465,
+ "step": 995
+ },
+ {
+ "epoch": 13.838794233289645,
+ "grad_norm": 0.2499857395887375,
+ "learning_rate": 0.0006,
+ "loss": 4.139284133911133,
+ "step": 996
+ },
+ {
+ "epoch": 13.852774137177807,
+ "grad_norm": 0.22026537358760834,
+ "learning_rate": 0.0006,
+ "loss": 4.142191410064697,
+ "step": 997
+ },
+ {
+ "epoch": 13.866754041065967,
+ "grad_norm": 0.23738551139831543,
+ "learning_rate": 0.0006,
+ "loss": 4.1422882080078125,
+ "step": 998
+ },
+ {
+ "epoch": 13.880733944954128,
+ "grad_norm": 0.2416357398033142,
+ "learning_rate": 0.0006,
+ "loss": 4.14063835144043,
+ "step": 999
+ },
+ {
+ "epoch": 13.89471384884229,
+ "grad_norm": 0.33822184801101685,
+ "learning_rate": 0.0006,
+ "loss": 4.12839412689209,
+ "step": 1000
+ },
+ {
+ "epoch": 13.90869375273045,
+ "grad_norm": 0.3409678339958191,
+ "learning_rate": 0.0006,
+ "loss": 4.145351886749268,
+ "step": 1001
+ },
+ {
+ "epoch": 13.922673656618612,
+ "grad_norm": 0.2467597872018814,
+ "learning_rate": 0.0006,
+ "loss": 4.155339241027832,
+ "step": 1002
+ },
+ {
+ "epoch": 13.936653560506771,
+ "grad_norm": 0.2314649075269699,
+ "learning_rate": 0.0006,
+ "loss": 4.130176067352295,
+ "step": 1003
+ },
+ {
+ "epoch": 13.950633464394933,
+ "grad_norm": 0.23701290786266327,
+ "learning_rate": 0.0006,
+ "loss": 4.19205379486084,
+ "step": 1004
+ },
+ {
+ "epoch": 13.964613368283093,
+ "grad_norm": 0.2466491460800171,
+ "learning_rate": 0.0006,
+ "loss": 4.118908882141113,
+ "step": 1005
+ },
+ {
+ "epoch": 13.978593272171254,
+ "grad_norm": 0.23746836185455322,
+ "learning_rate": 0.0006,
+ "loss": 4.16111946105957,
+ "step": 1006
+ },
+ {
+ "epoch": 13.992573176059414,
+ "grad_norm": 0.24497751891613007,
+ "learning_rate": 0.0006,
+ "loss": 4.148624420166016,
+ "step": 1007
+ },
+ {
+ "epoch": 14.0,
+ "grad_norm": 0.25735899806022644,
+ "learning_rate": 0.0006,
+ "loss": 4.12002420425415,
+ "step": 1008
+ },
+ {
+ "epoch": 14.0,
+ "eval_loss": 4.335351467132568,
+ "eval_runtime": 44.0523,
+ "eval_samples_per_second": 55.434,
+ "eval_steps_per_second": 3.473,
+ "step": 1008
+ },
+ {
+ "epoch": 14.013979903888162,
+ "grad_norm": 0.24570082128047943,
+ "learning_rate": 0.0006,
+ "loss": 4.1036176681518555,
+ "step": 1009
+ },
+ {
+ "epoch": 14.027959807776321,
+ "grad_norm": 0.2525855302810669,
+ "learning_rate": 0.0006,
+ "loss": 4.142077445983887,
+ "step": 1010
+ },
+ {
+ "epoch": 14.041939711664483,
+ "grad_norm": 0.2701111435890198,
+ "learning_rate": 0.0006,
+ "loss": 4.096988677978516,
+ "step": 1011
+ },
+ {
+ "epoch": 14.055919615552643,
+ "grad_norm": 0.28173309564590454,
+ "learning_rate": 0.0006,
+ "loss": 4.148448944091797,
+ "step": 1012
+ },
+ {
+ "epoch": 14.069899519440805,
+ "grad_norm": 0.2651294469833374,
+ "learning_rate": 0.0006,
+ "loss": 4.121731281280518,
+ "step": 1013
+ },
+ {
+ "epoch": 14.083879423328964,
+ "grad_norm": 0.21160121262073517,
+ "learning_rate": 0.0006,
+ "loss": 4.108980178833008,
+ "step": 1014
+ },
+ {
+ "epoch": 14.097859327217126,
+ "grad_norm": 0.24786953628063202,
+ "learning_rate": 0.0006,
+ "loss": 4.133942604064941,
+ "step": 1015
+ },
+ {
+ "epoch": 14.111839231105286,
+ "grad_norm": 0.2722747027873993,
+ "learning_rate": 0.0006,
+ "loss": 4.115242958068848,
+ "step": 1016
+ },
+ {
+ "epoch": 14.125819134993447,
+ "grad_norm": 0.273360013961792,
+ "learning_rate": 0.0006,
+ "loss": 4.059296607971191,
+ "step": 1017
+ },
+ {
+ "epoch": 14.139799038881607,
+ "grad_norm": 0.2541784942150116,
+ "learning_rate": 0.0006,
+ "loss": 4.118365287780762,
+ "step": 1018
+ },
+ {
+ "epoch": 14.153778942769769,
+ "grad_norm": 0.23806381225585938,
+ "learning_rate": 0.0006,
+ "loss": 4.102812767028809,
+ "step": 1019
+ },
+ {
+ "epoch": 14.167758846657929,
+ "grad_norm": 0.2541005313396454,
+ "learning_rate": 0.0006,
+ "loss": 4.093264579772949,
+ "step": 1020
+ },
+ {
+ "epoch": 14.18173875054609,
+ "grad_norm": 0.2619539499282837,
+ "learning_rate": 0.0006,
+ "loss": 4.114917278289795,
+ "step": 1021
+ },
+ {
+ "epoch": 14.19571865443425,
+ "grad_norm": 0.2466963529586792,
+ "learning_rate": 0.0006,
+ "loss": 4.098258972167969,
+ "step": 1022
+ },
+ {
+ "epoch": 14.209698558322412,
+ "grad_norm": 0.24341611564159393,
+ "learning_rate": 0.0006,
+ "loss": 4.109346389770508,
+ "step": 1023
+ },
+ {
+ "epoch": 14.223678462210572,
+ "grad_norm": 0.23977765440940857,
+ "learning_rate": 0.0006,
+ "loss": 4.106716156005859,
+ "step": 1024
+ },
+ {
+ "epoch": 14.237658366098733,
+ "grad_norm": 0.253528356552124,
+ "learning_rate": 0.0006,
+ "loss": 4.102226257324219,
+ "step": 1025
+ },
+ {
+ "epoch": 14.251638269986893,
+ "grad_norm": 0.26954543590545654,
+ "learning_rate": 0.0006,
+ "loss": 4.107413291931152,
+ "step": 1026
+ },
+ {
+ "epoch": 14.265618173875055,
+ "grad_norm": 0.2610514760017395,
+ "learning_rate": 0.0006,
+ "loss": 4.110824108123779,
+ "step": 1027
+ },
+ {
+ "epoch": 14.279598077763215,
+ "grad_norm": 0.2579168677330017,
+ "learning_rate": 0.0006,
+ "loss": 4.082438945770264,
+ "step": 1028
+ },
+ {
+ "epoch": 14.293577981651376,
+ "grad_norm": 0.26916536688804626,
+ "learning_rate": 0.0006,
+ "loss": 4.075734615325928,
+ "step": 1029
+ },
+ {
+ "epoch": 14.307557885539538,
+ "grad_norm": 0.2998618185520172,
+ "learning_rate": 0.0006,
+ "loss": 4.088419437408447,
+ "step": 1030
+ },
+ {
+ "epoch": 14.321537789427698,
+ "grad_norm": 0.3162737190723419,
+ "learning_rate": 0.0006,
+ "loss": 4.125833034515381,
+ "step": 1031
+ },
+ {
+ "epoch": 14.33551769331586,
+ "grad_norm": 0.318601131439209,
+ "learning_rate": 0.0006,
+ "loss": 4.077424049377441,
+ "step": 1032
+ },
+ {
+ "epoch": 14.349497597204019,
+ "grad_norm": 0.32113415002822876,
+ "learning_rate": 0.0006,
+ "loss": 4.113360404968262,
+ "step": 1033
+ },
+ {
+ "epoch": 14.36347750109218,
+ "grad_norm": 0.3150886297225952,
+ "learning_rate": 0.0006,
+ "loss": 4.100013732910156,
+ "step": 1034
+ },
+ {
+ "epoch": 14.37745740498034,
+ "grad_norm": 0.29279956221580505,
+ "learning_rate": 0.0006,
+ "loss": 4.136394500732422,
+ "step": 1035
+ },
+ {
+ "epoch": 14.391437308868502,
+ "grad_norm": 0.28532543778419495,
+ "learning_rate": 0.0006,
+ "loss": 4.138948440551758,
+ "step": 1036
+ },
+ {
+ "epoch": 14.405417212756662,
+ "grad_norm": 0.2825978398323059,
+ "learning_rate": 0.0006,
+ "loss": 4.112217903137207,
+ "step": 1037
+ },
+ {
+ "epoch": 14.419397116644824,
+ "grad_norm": 0.2891198694705963,
+ "learning_rate": 0.0006,
+ "loss": 4.102682113647461,
+ "step": 1038
+ },
+ {
+ "epoch": 14.433377020532983,
+ "grad_norm": 0.2917391061782837,
+ "learning_rate": 0.0006,
+ "loss": 4.120752811431885,
+ "step": 1039
+ },
+ {
+ "epoch": 14.447356924421145,
+ "grad_norm": 0.2589806914329529,
+ "learning_rate": 0.0006,
+ "loss": 4.130519390106201,
+ "step": 1040
+ },
+ {
+ "epoch": 14.461336828309305,
+ "grad_norm": 0.2674788534641266,
+ "learning_rate": 0.0006,
+ "loss": 4.130382537841797,
+ "step": 1041
+ },
+ {
+ "epoch": 14.475316732197467,
+ "grad_norm": 0.2820362150669098,
+ "learning_rate": 0.0006,
+ "loss": 4.13947868347168,
+ "step": 1042
+ },
+ {
+ "epoch": 14.489296636085626,
+ "grad_norm": 0.2650109529495239,
+ "learning_rate": 0.0006,
+ "loss": 4.130346775054932,
+ "step": 1043
+ },
+ {
+ "epoch": 14.503276539973788,
+ "grad_norm": 0.29137638211250305,
+ "learning_rate": 0.0006,
+ "loss": 4.055751800537109,
+ "step": 1044
+ },
+ {
+ "epoch": 14.517256443861948,
+ "grad_norm": 0.3232433497905731,
+ "learning_rate": 0.0006,
+ "loss": 4.114810943603516,
+ "step": 1045
+ },
+ {
+ "epoch": 14.53123634775011,
+ "grad_norm": 0.2724473476409912,
+ "learning_rate": 0.0006,
+ "loss": 4.088351249694824,
+ "step": 1046
+ },
+ {
+ "epoch": 14.54521625163827,
+ "grad_norm": 0.23994430899620056,
+ "learning_rate": 0.0006,
+ "loss": 4.110936164855957,
+ "step": 1047
+ },
+ {
+ "epoch": 14.55919615552643,
+ "grad_norm": 0.2422720044851303,
+ "learning_rate": 0.0006,
+ "loss": 4.132844924926758,
+ "step": 1048
+ },
+ {
+ "epoch": 14.57317605941459,
+ "grad_norm": 0.21148815751075745,
+ "learning_rate": 0.0006,
+ "loss": 4.102499961853027,
+ "step": 1049
+ },
+ {
+ "epoch": 14.587155963302752,
+ "grad_norm": 0.22221639752388,
+ "learning_rate": 0.0006,
+ "loss": 4.126241683959961,
+ "step": 1050
+ },
+ {
+ "epoch": 14.601135867190912,
+ "grad_norm": 0.2538735866546631,
+ "learning_rate": 0.0006,
+ "loss": 4.116817951202393,
+ "step": 1051
+ },
+ {
+ "epoch": 14.615115771079074,
+ "grad_norm": 0.2555900514125824,
+ "learning_rate": 0.0006,
+ "loss": 4.106309413909912,
+ "step": 1052
+ },
+ {
+ "epoch": 14.629095674967235,
+ "grad_norm": 0.24753783643245697,
+ "learning_rate": 0.0006,
+ "loss": 4.1015119552612305,
+ "step": 1053
+ },
+ {
+ "epoch": 14.643075578855395,
+ "grad_norm": 0.238885298371315,
+ "learning_rate": 0.0006,
+ "loss": 4.120419502258301,
+ "step": 1054
+ },
+ {
+ "epoch": 14.657055482743557,
+ "grad_norm": 0.22693610191345215,
+ "learning_rate": 0.0006,
+ "loss": 4.084968566894531,
+ "step": 1055
+ },
+ {
+ "epoch": 14.671035386631717,
+ "grad_norm": 0.2100025862455368,
+ "learning_rate": 0.0006,
+ "loss": 4.108001708984375,
+ "step": 1056
+ },
+ {
+ "epoch": 14.685015290519878,
+ "grad_norm": 0.20437054336071014,
+ "learning_rate": 0.0006,
+ "loss": 4.151417255401611,
+ "step": 1057
+ },
+ {
+ "epoch": 14.698995194408038,
+ "grad_norm": 0.1926720291376114,
+ "learning_rate": 0.0006,
+ "loss": 4.091334342956543,
+ "step": 1058
+ },
+ {
+ "epoch": 14.7129750982962,
+ "grad_norm": 0.2120140641927719,
+ "learning_rate": 0.0006,
+ "loss": 4.111706256866455,
+ "step": 1059
+ },
+ {
+ "epoch": 14.72695500218436,
+ "grad_norm": 0.22877076268196106,
+ "learning_rate": 0.0006,
+ "loss": 4.123166084289551,
+ "step": 1060
+ },
+ {
+ "epoch": 14.740934906072521,
+ "grad_norm": 0.22149473428726196,
+ "learning_rate": 0.0006,
+ "loss": 4.099740028381348,
+ "step": 1061
+ },
+ {
+ "epoch": 14.754914809960681,
+ "grad_norm": 0.2351604402065277,
+ "learning_rate": 0.0006,
+ "loss": 4.066174507141113,
+ "step": 1062
+ },
+ {
+ "epoch": 14.768894713848843,
+ "grad_norm": 0.22895802557468414,
+ "learning_rate": 0.0006,
+ "loss": 4.101897239685059,
+ "step": 1063
+ },
+ {
+ "epoch": 14.782874617737003,
+ "grad_norm": 0.22050750255584717,
+ "learning_rate": 0.0006,
+ "loss": 4.122953414916992,
+ "step": 1064
+ },
+ {
+ "epoch": 14.796854521625164,
+ "grad_norm": 0.23255324363708496,
+ "learning_rate": 0.0006,
+ "loss": 4.11297607421875,
+ "step": 1065
+ },
+ {
+ "epoch": 14.810834425513324,
+ "grad_norm": 0.24522703886032104,
+ "learning_rate": 0.0006,
+ "loss": 4.131030082702637,
+ "step": 1066
+ },
+ {
+ "epoch": 14.824814329401486,
+ "grad_norm": 0.2492702752351761,
+ "learning_rate": 0.0006,
+ "loss": 4.076324939727783,
+ "step": 1067
+ },
+ {
+ "epoch": 14.838794233289645,
+ "grad_norm": 0.24410948157310486,
+ "learning_rate": 0.0006,
+ "loss": 4.109020709991455,
+ "step": 1068
+ },
+ {
+ "epoch": 14.852774137177807,
+ "grad_norm": 0.2463168203830719,
+ "learning_rate": 0.0006,
+ "loss": 4.135679244995117,
+ "step": 1069
+ },
+ {
+ "epoch": 14.866754041065967,
+ "grad_norm": 0.2563146650791168,
+ "learning_rate": 0.0006,
+ "loss": 4.0958027839660645,
+ "step": 1070
+ },
+ {
+ "epoch": 14.880733944954128,
+ "grad_norm": 0.261167049407959,
+ "learning_rate": 0.0006,
+ "loss": 4.114803314208984,
+ "step": 1071
+ },
+ {
+ "epoch": 14.89471384884229,
+ "grad_norm": 0.2593795955181122,
+ "learning_rate": 0.0006,
+ "loss": 4.1210618019104,
+ "step": 1072
+ },
+ {
+ "epoch": 14.90869375273045,
+ "grad_norm": 0.27184173464775085,
+ "learning_rate": 0.0006,
+ "loss": 4.095145225524902,
+ "step": 1073
+ },
+ {
+ "epoch": 14.922673656618612,
+ "grad_norm": 0.25289732217788696,
+ "learning_rate": 0.0006,
+ "loss": 4.107388973236084,
+ "step": 1074
+ },
+ {
+ "epoch": 14.936653560506771,
+ "grad_norm": 0.2176840454339981,
+ "learning_rate": 0.0006,
+ "loss": 4.105966567993164,
+ "step": 1075
+ },
+ {
+ "epoch": 14.950633464394933,
+ "grad_norm": 0.20930173993110657,
+ "learning_rate": 0.0006,
+ "loss": 4.126853942871094,
+ "step": 1076
+ },
+ {
+ "epoch": 14.964613368283093,
+ "grad_norm": 0.20850051939487457,
+ "learning_rate": 0.0006,
+ "loss": 4.074934959411621,
+ "step": 1077
+ },
+ {
+ "epoch": 14.978593272171254,
+ "grad_norm": 0.21987544000148773,
+ "learning_rate": 0.0006,
+ "loss": 4.123321533203125,
+ "step": 1078
+ },
+ {
+ "epoch": 14.992573176059414,
+ "grad_norm": 0.23821689188480377,
+ "learning_rate": 0.0006,
+ "loss": 4.082647323608398,
+ "step": 1079
+ },
+ {
+ "epoch": 15.0,
+ "grad_norm": 0.2590881288051605,
+ "learning_rate": 0.0006,
+ "loss": 4.113482475280762,
+ "step": 1080
+ },
+ {
+ "epoch": 15.0,
+ "eval_loss": 4.286936283111572,
+ "eval_runtime": 44.2665,
+ "eval_samples_per_second": 55.166,
+ "eval_steps_per_second": 3.456,
+ "step": 1080
+ },
+ {
+ "epoch": 15.013979903888162,
+ "grad_norm": 0.27885961532592773,
+ "learning_rate": 0.0006,
+ "loss": 4.0825958251953125,
+ "step": 1081
+ },
+ {
+ "epoch": 15.027959807776321,
+ "grad_norm": 0.2751246690750122,
+ "learning_rate": 0.0006,
+ "loss": 4.049782752990723,
+ "step": 1082
+ },
+ {
+ "epoch": 15.041939711664483,
+ "grad_norm": 0.25238561630249023,
+ "learning_rate": 0.0006,
+ "loss": 4.067366600036621,
+ "step": 1083
+ },
+ {
+ "epoch": 15.055919615552643,
+ "grad_norm": 0.27481040358543396,
+ "learning_rate": 0.0006,
+ "loss": 4.089946746826172,
+ "step": 1084
+ },
+ {
+ "epoch": 15.069899519440805,
+ "grad_norm": 0.2666703164577484,
+ "learning_rate": 0.0006,
+ "loss": 4.071957588195801,
+ "step": 1085
+ },
+ {
+ "epoch": 15.083879423328964,
+ "grad_norm": 0.2532065212726593,
+ "learning_rate": 0.0006,
+ "loss": 4.091561794281006,
+ "step": 1086
+ },
+ {
+ "epoch": 15.097859327217126,
+ "grad_norm": 0.23562374711036682,
+ "learning_rate": 0.0006,
+ "loss": 4.074953079223633,
+ "step": 1087
+ },
+ {
+ "epoch": 15.111839231105286,
+ "grad_norm": 0.2498065084218979,
+ "learning_rate": 0.0006,
+ "loss": 4.056004047393799,
+ "step": 1088
+ },
+ {
+ "epoch": 15.125819134993447,
+ "grad_norm": 0.257046639919281,
+ "learning_rate": 0.0006,
+ "loss": 4.044149875640869,
+ "step": 1089
+ },
+ {
+ "epoch": 15.139799038881607,
+ "grad_norm": 0.2417808622121811,
+ "learning_rate": 0.0006,
+ "loss": 4.071811676025391,
+ "step": 1090
+ },
+ {
+ "epoch": 15.153778942769769,
+ "grad_norm": 0.24742013216018677,
+ "learning_rate": 0.0006,
+ "loss": 4.081482887268066,
+ "step": 1091
+ },
+ {
+ "epoch": 15.167758846657929,
+ "grad_norm": 0.2610231637954712,
+ "learning_rate": 0.0006,
+ "loss": 4.06953763961792,
+ "step": 1092
+ },
+ {
+ "epoch": 15.18173875054609,
+ "grad_norm": 0.24688200652599335,
+ "learning_rate": 0.0006,
+ "loss": 4.079700469970703,
+ "step": 1093
+ },
+ {
+ "epoch": 15.19571865443425,
+ "grad_norm": 0.2650167942047119,
+ "learning_rate": 0.0006,
+ "loss": 4.082088947296143,
+ "step": 1094
+ },
+ {
+ "epoch": 15.209698558322412,
+ "grad_norm": 0.25913330912590027,
+ "learning_rate": 0.0006,
+ "loss": 4.081713676452637,
+ "step": 1095
+ },
+ {
+ "epoch": 15.223678462210572,
+ "grad_norm": 0.2547631561756134,
+ "learning_rate": 0.0006,
+ "loss": 4.073573112487793,
+ "step": 1096
+ },
+ {
+ "epoch": 15.237658366098733,
+ "grad_norm": 0.2732609510421753,
+ "learning_rate": 0.0006,
+ "loss": 4.10186767578125,
+ "step": 1097
+ },
+ {
+ "epoch": 15.251638269986893,
+ "grad_norm": 0.2990017533302307,
+ "learning_rate": 0.0006,
+ "loss": 4.085466384887695,
+ "step": 1098
+ },
+ {
+ "epoch": 15.265618173875055,
+ "grad_norm": 0.30252209305763245,
+ "learning_rate": 0.0006,
+ "loss": 4.077337265014648,
+ "step": 1099
+ },
+ {
+ "epoch": 15.279598077763215,
+ "grad_norm": 0.30046045780181885,
+ "learning_rate": 0.0006,
+ "loss": 4.0895891189575195,
+ "step": 1100
+ },
+ {
+ "epoch": 15.293577981651376,
+ "grad_norm": 0.2779843211174011,
+ "learning_rate": 0.0006,
+ "loss": 4.060354709625244,
+ "step": 1101
+ },
+ {
+ "epoch": 15.307557885539538,
+ "grad_norm": 0.26914986968040466,
+ "learning_rate": 0.0006,
+ "loss": 4.07314395904541,
+ "step": 1102
+ },
+ {
+ "epoch": 15.321537789427698,
+ "grad_norm": 0.24605873227119446,
+ "learning_rate": 0.0006,
+ "loss": 4.051377296447754,
+ "step": 1103
+ },
+ {
+ "epoch": 15.33551769331586,
+ "grad_norm": 0.25634095072746277,
+ "learning_rate": 0.0006,
+ "loss": 4.082427024841309,
+ "step": 1104
+ },
+ {
+ "epoch": 15.349497597204019,
+ "grad_norm": 0.2888158857822418,
+ "learning_rate": 0.0006,
+ "loss": 4.074253082275391,
+ "step": 1105
+ },
+ {
+ "epoch": 15.36347750109218,
+ "grad_norm": 0.2758261561393738,
+ "learning_rate": 0.0006,
+ "loss": 4.08344841003418,
+ "step": 1106
+ },
+ {
+ "epoch": 15.37745740498034,
+ "grad_norm": 0.26937270164489746,
+ "learning_rate": 0.0006,
+ "loss": 4.063424587249756,
+ "step": 1107
+ },
+ {
+ "epoch": 15.391437308868502,
+ "grad_norm": 0.2739955484867096,
+ "learning_rate": 0.0006,
+ "loss": 4.08005952835083,
+ "step": 1108
+ },
+ {
+ "epoch": 15.405417212756662,
+ "grad_norm": 0.2635386288166046,
+ "learning_rate": 0.0006,
+ "loss": 4.087360382080078,
+ "step": 1109
+ },
+ {
+ "epoch": 15.419397116644824,
+ "grad_norm": 0.2619768977165222,
+ "learning_rate": 0.0006,
+ "loss": 4.072653770446777,
+ "step": 1110
+ },
+ {
+ "epoch": 15.433377020532983,
+ "grad_norm": 0.24154804646968842,
+ "learning_rate": 0.0006,
+ "loss": 4.084464073181152,
+ "step": 1111
+ },
+ {
+ "epoch": 15.447356924421145,
+ "grad_norm": 0.24236027896404266,
+ "learning_rate": 0.0006,
+ "loss": 4.078777313232422,
+ "step": 1112
+ },
+ {
+ "epoch": 15.461336828309305,
+ "grad_norm": 0.24653038382530212,
+ "learning_rate": 0.0006,
+ "loss": 4.075024604797363,
+ "step": 1113
+ },
+ {
+ "epoch": 15.475316732197467,
+ "grad_norm": 0.27106523513793945,
+ "learning_rate": 0.0006,
+ "loss": 4.060937881469727,
+ "step": 1114
+ },
+ {
+ "epoch": 15.489296636085626,
+ "grad_norm": 0.25109633803367615,
+ "learning_rate": 0.0006,
+ "loss": 4.081971168518066,
+ "step": 1115
+ },
+ {
+ "epoch": 15.503276539973788,
+ "grad_norm": 0.23452287912368774,
+ "learning_rate": 0.0006,
+ "loss": 4.0762834548950195,
+ "step": 1116
+ },
+ {
+ "epoch": 15.517256443861948,
+ "grad_norm": 0.25415024161338806,
+ "learning_rate": 0.0006,
+ "loss": 4.069386959075928,
+ "step": 1117
+ },
+ {
+ "epoch": 15.53123634775011,
+ "grad_norm": 0.25448229908943176,
+ "learning_rate": 0.0006,
+ "loss": 4.075098514556885,
+ "step": 1118
+ },
+ {
+ "epoch": 15.54521625163827,
+ "grad_norm": 0.25679755210876465,
+ "learning_rate": 0.0006,
+ "loss": 4.097431182861328,
+ "step": 1119
+ },
+ {
+ "epoch": 15.55919615552643,
+ "grad_norm": 0.25973212718963623,
+ "learning_rate": 0.0006,
+ "loss": 4.058948516845703,
+ "step": 1120
+ },
+ {
+ "epoch": 15.57317605941459,
+ "grad_norm": 0.24511456489562988,
+ "learning_rate": 0.0006,
+ "loss": 4.092263698577881,
+ "step": 1121
+ },
+ {
+ "epoch": 15.587155963302752,
+ "grad_norm": 0.22949442267417908,
+ "learning_rate": 0.0006,
+ "loss": 4.0526604652404785,
+ "step": 1122
+ },
+ {
+ "epoch": 15.601135867190912,
+ "grad_norm": 0.22486285865306854,
+ "learning_rate": 0.0006,
+ "loss": 4.051939010620117,
+ "step": 1123
+ },
+ {
+ "epoch": 15.615115771079074,
+ "grad_norm": 0.22183601558208466,
+ "learning_rate": 0.0006,
+ "loss": 4.065430641174316,
+ "step": 1124
+ },
+ {
+ "epoch": 15.629095674967235,
+ "grad_norm": 0.2531328797340393,
+ "learning_rate": 0.0006,
+ "loss": 4.069165229797363,
+ "step": 1125
+ },
+ {
+ "epoch": 15.643075578855395,
+ "grad_norm": 0.24403320252895355,
+ "learning_rate": 0.0006,
+ "loss": 4.055041790008545,
+ "step": 1126
+ },
+ {
+ "epoch": 15.657055482743557,
+ "grad_norm": 0.24504756927490234,
+ "learning_rate": 0.0006,
+ "loss": 4.035850524902344,
+ "step": 1127
+ },
+ {
+ "epoch": 15.671035386631717,
+ "grad_norm": 0.23812057077884674,
+ "learning_rate": 0.0006,
+ "loss": 4.049278259277344,
+ "step": 1128
+ },
+ {
+ "epoch": 15.685015290519878,
+ "grad_norm": 0.23694153130054474,
+ "learning_rate": 0.0006,
+ "loss": 4.065816402435303,
+ "step": 1129
+ },
+ {
+ "epoch": 15.698995194408038,
+ "grad_norm": 0.23252786695957184,
+ "learning_rate": 0.0006,
+ "loss": 4.05952262878418,
+ "step": 1130
+ },
+ {
+ "epoch": 15.7129750982962,
+ "grad_norm": 0.2243805080652237,
+ "learning_rate": 0.0006,
+ "loss": 4.058291435241699,
+ "step": 1131
+ },
+ {
+ "epoch": 15.72695500218436,
+ "grad_norm": 0.2200988084077835,
+ "learning_rate": 0.0006,
+ "loss": 4.040788650512695,
+ "step": 1132
+ },
+ {
+ "epoch": 15.740934906072521,
+ "grad_norm": 0.21460631489753723,
+ "learning_rate": 0.0006,
+ "loss": 4.072552680969238,
+ "step": 1133
+ },
+ {
+ "epoch": 15.754914809960681,
+ "grad_norm": 0.2056441456079483,
+ "learning_rate": 0.0006,
+ "loss": 4.059467315673828,
+ "step": 1134
+ },
+ {
+ "epoch": 15.768894713848843,
+ "grad_norm": 0.2068045437335968,
+ "learning_rate": 0.0006,
+ "loss": 4.063803195953369,
+ "step": 1135
+ },
+ {
+ "epoch": 15.782874617737003,
+ "grad_norm": 0.21307601034641266,
+ "learning_rate": 0.0006,
+ "loss": 4.093092918395996,
+ "step": 1136
+ },
+ {
+ "epoch": 15.796854521625164,
+ "grad_norm": 0.20729634165763855,
+ "learning_rate": 0.0006,
+ "loss": 4.066030502319336,
+ "step": 1137
+ },
+ {
+ "epoch": 15.810834425513324,
+ "grad_norm": 0.2097514122724533,
+ "learning_rate": 0.0006,
+ "loss": 4.077326774597168,
+ "step": 1138
+ },
+ {
+ "epoch": 15.824814329401486,
+ "grad_norm": 0.21884000301361084,
+ "learning_rate": 0.0006,
+ "loss": 4.0595598220825195,
+ "step": 1139
+ },
+ {
+ "epoch": 15.838794233289645,
+ "grad_norm": 0.22220250964164734,
+ "learning_rate": 0.0006,
+ "loss": 4.061574459075928,
+ "step": 1140
+ },
+ {
+ "epoch": 15.852774137177807,
+ "grad_norm": 0.23189949989318848,
+ "learning_rate": 0.0006,
+ "loss": 4.0504045486450195,
+ "step": 1141
+ },
+ {
+ "epoch": 15.866754041065967,
+ "grad_norm": 0.226649671792984,
+ "learning_rate": 0.0006,
+ "loss": 4.060986518859863,
+ "step": 1142
+ },
+ {
+ "epoch": 15.880733944954128,
+ "grad_norm": 0.2456834763288498,
+ "learning_rate": 0.0006,
+ "loss": 4.038525581359863,
+ "step": 1143
+ },
+ {
+ "epoch": 15.89471384884229,
+ "grad_norm": 0.2818352282047272,
+ "learning_rate": 0.0006,
+ "loss": 4.062709331512451,
+ "step": 1144
+ },
+ {
+ "epoch": 15.90869375273045,
+ "grad_norm": 0.2850170135498047,
+ "learning_rate": 0.0006,
+ "loss": 4.0683274269104,
+ "step": 1145
+ },
+ {
+ "epoch": 15.922673656618612,
+ "grad_norm": 0.27691730856895447,
+ "learning_rate": 0.0006,
+ "loss": 4.076540470123291,
+ "step": 1146
+ },
+ {
+ "epoch": 15.936653560506771,
+ "grad_norm": 0.2685548961162567,
+ "learning_rate": 0.0006,
+ "loss": 4.048116683959961,
+ "step": 1147
+ },
+ {
+ "epoch": 15.950633464394933,
+ "grad_norm": 0.2452288419008255,
+ "learning_rate": 0.0006,
+ "loss": 4.06640625,
+ "step": 1148
+ },
+ {
+ "epoch": 15.964613368283093,
+ "grad_norm": 0.2601441740989685,
+ "learning_rate": 0.0006,
+ "loss": 4.073277473449707,
+ "step": 1149
+ },
+ {
+ "epoch": 15.978593272171254,
+ "grad_norm": 0.2748197913169861,
+ "learning_rate": 0.0006,
+ "loss": 4.0332536697387695,
+ "step": 1150
+ },
+ {
+ "epoch": 15.992573176059414,
+ "grad_norm": 0.27249959111213684,
+ "learning_rate": 0.0006,
+ "loss": 3.9952516555786133,
+ "step": 1151
+ },
+ {
+ "epoch": 16.0,
+ "grad_norm": 0.3475601375102997,
+ "learning_rate": 0.0006,
+ "loss": 4.040761947631836,
+ "step": 1152
+ },
+ {
+ "epoch": 16.0,
+ "eval_loss": 4.237997531890869,
+ "eval_runtime": 43.8692,
+ "eval_samples_per_second": 55.665,
+ "eval_steps_per_second": 3.488,
+ "step": 1152
+ },
+ {
+ "epoch": 16.01397990388816,
+ "grad_norm": 0.3365611433982849,
+ "learning_rate": 0.0006,
+ "loss": 4.031302452087402,
+ "step": 1153
+ },
+ {
+ "epoch": 16.027959807776323,
+ "grad_norm": 0.3020530641078949,
+ "learning_rate": 0.0006,
+ "loss": 4.036273956298828,
+ "step": 1154
+ },
+ {
+ "epoch": 16.041939711664483,
+ "grad_norm": 0.25277993083000183,
+ "learning_rate": 0.0006,
+ "loss": 4.007067680358887,
+ "step": 1155
+ },
+ {
+ "epoch": 16.055919615552643,
+ "grad_norm": 0.24762840569019318,
+ "learning_rate": 0.0006,
+ "loss": 4.046561241149902,
+ "step": 1156
+ },
+ {
+ "epoch": 16.069899519440803,
+ "grad_norm": 0.25236397981643677,
+ "learning_rate": 0.0006,
+ "loss": 4.061616897583008,
+ "step": 1157
+ },
+ {
+ "epoch": 16.083879423328966,
+ "grad_norm": 0.22789105772972107,
+ "learning_rate": 0.0006,
+ "loss": 4.010061740875244,
+ "step": 1158
+ },
+ {
+ "epoch": 16.097859327217126,
+ "grad_norm": 0.21866244077682495,
+ "learning_rate": 0.0006,
+ "loss": 4.0181097984313965,
+ "step": 1159
+ },
+ {
+ "epoch": 16.111839231105286,
+ "grad_norm": 0.21889029443264008,
+ "learning_rate": 0.0006,
+ "loss": 4.012239456176758,
+ "step": 1160
+ },
+ {
+ "epoch": 16.125819134993446,
+ "grad_norm": 0.23002485930919647,
+ "learning_rate": 0.0006,
+ "loss": 4.034092426300049,
+ "step": 1161
+ },
+ {
+ "epoch": 16.13979903888161,
+ "grad_norm": 0.2271798551082611,
+ "learning_rate": 0.0006,
+ "loss": 4.026222229003906,
+ "step": 1162
+ },
+ {
+ "epoch": 16.15377894276977,
+ "grad_norm": 0.238200843334198,
+ "learning_rate": 0.0006,
+ "loss": 4.044692039489746,
+ "step": 1163
+ },
+ {
+ "epoch": 16.16775884665793,
+ "grad_norm": 0.2281467169523239,
+ "learning_rate": 0.0006,
+ "loss": 4.032305717468262,
+ "step": 1164
+ },
+ {
+ "epoch": 16.18173875054609,
+ "grad_norm": 0.2213946431875229,
+ "learning_rate": 0.0006,
+ "loss": 4.048737525939941,
+ "step": 1165
+ },
+ {
+ "epoch": 16.195718654434252,
+ "grad_norm": 0.26638558506965637,
+ "learning_rate": 0.0006,
+ "loss": 4.006335258483887,
+ "step": 1166
+ },
+ {
+ "epoch": 16.209698558322412,
+ "grad_norm": 0.2780219316482544,
+ "learning_rate": 0.0006,
+ "loss": 4.049234390258789,
+ "step": 1167
+ },
+ {
+ "epoch": 16.22367846221057,
+ "grad_norm": 0.27425870299339294,
+ "learning_rate": 0.0006,
+ "loss": 4.017177104949951,
+ "step": 1168
+ },
+ {
+ "epoch": 16.23765836609873,
+ "grad_norm": 0.2596667408943176,
+ "learning_rate": 0.0006,
+ "loss": 4.022942543029785,
+ "step": 1169
+ },
+ {
+ "epoch": 16.251638269986895,
+ "grad_norm": 0.26972314715385437,
+ "learning_rate": 0.0006,
+ "loss": 4.035310745239258,
+ "step": 1170
+ },
+ {
+ "epoch": 16.265618173875055,
+ "grad_norm": 0.2677772045135498,
+ "learning_rate": 0.0006,
+ "loss": 4.0280561447143555,
+ "step": 1171
+ },
+ {
+ "epoch": 16.279598077763215,
+ "grad_norm": 0.25433358550071716,
+ "learning_rate": 0.0006,
+ "loss": 4.03616189956665,
+ "step": 1172
+ },
+ {
+ "epoch": 16.293577981651374,
+ "grad_norm": 0.2583644688129425,
+ "learning_rate": 0.0006,
+ "loss": 4.073624134063721,
+ "step": 1173
+ },
+ {
+ "epoch": 16.307557885539538,
+ "grad_norm": 0.25437524914741516,
+ "learning_rate": 0.0006,
+ "loss": 4.057926654815674,
+ "step": 1174
+ },
+ {
+ "epoch": 16.321537789427698,
+ "grad_norm": 0.2819201350212097,
+ "learning_rate": 0.0006,
+ "loss": 4.020838737487793,
+ "step": 1175
+ },
+ {
+ "epoch": 16.335517693315857,
+ "grad_norm": 0.32689282298088074,
+ "learning_rate": 0.0006,
+ "loss": 4.062448501586914,
+ "step": 1176
+ },
+ {
+ "epoch": 16.34949759720402,
+ "grad_norm": 0.33002278208732605,
+ "learning_rate": 0.0006,
+ "loss": 4.052059173583984,
+ "step": 1177
+ },
+ {
+ "epoch": 16.36347750109218,
+ "grad_norm": 0.32472696900367737,
+ "learning_rate": 0.0006,
+ "loss": 4.042375564575195,
+ "step": 1178
+ },
+ {
+ "epoch": 16.37745740498034,
+ "grad_norm": 0.35279813408851624,
+ "learning_rate": 0.0006,
+ "loss": 4.028722763061523,
+ "step": 1179
+ },
+ {
+ "epoch": 16.3914373088685,
+ "grad_norm": 0.3243204951286316,
+ "learning_rate": 0.0006,
+ "loss": 4.045693874359131,
+ "step": 1180
+ },
+ {
+ "epoch": 16.405417212756664,
+ "grad_norm": 0.32171115279197693,
+ "learning_rate": 0.0006,
+ "loss": 4.018350124359131,
+ "step": 1181
+ },
+ {
+ "epoch": 16.419397116644824,
+ "grad_norm": 0.31459906697273254,
+ "learning_rate": 0.0006,
+ "loss": 4.039547443389893,
+ "step": 1182
+ },
+ {
+ "epoch": 16.433377020532983,
+ "grad_norm": 0.35038673877716064,
+ "learning_rate": 0.0006,
+ "loss": 4.005928039550781,
+ "step": 1183
+ },
+ {
+ "epoch": 16.447356924421143,
+ "grad_norm": 0.34110963344573975,
+ "learning_rate": 0.0006,
+ "loss": 4.042272090911865,
+ "step": 1184
+ },
+ {
+ "epoch": 16.461336828309307,
+ "grad_norm": 0.33760902285575867,
+ "learning_rate": 0.0006,
+ "loss": 4.02886962890625,
+ "step": 1185
+ },
+ {
+ "epoch": 16.475316732197467,
+ "grad_norm": 0.3162464499473572,
+ "learning_rate": 0.0006,
+ "loss": 4.059924125671387,
+ "step": 1186
+ },
+ {
+ "epoch": 16.489296636085626,
+ "grad_norm": 0.2667233645915985,
+ "learning_rate": 0.0006,
+ "loss": 4.069073677062988,
+ "step": 1187
+ },
+ {
+ "epoch": 16.503276539973786,
+ "grad_norm": 0.22626568377017975,
+ "learning_rate": 0.0006,
+ "loss": 4.044912338256836,
+ "step": 1188
+ },
+ {
+ "epoch": 16.51725644386195,
+ "grad_norm": 0.203303262591362,
+ "learning_rate": 0.0006,
+ "loss": 4.025210380554199,
+ "step": 1189
+ },
+ {
+ "epoch": 16.53123634775011,
+ "grad_norm": 0.2108820080757141,
+ "learning_rate": 0.0006,
+ "loss": 4.035998821258545,
+ "step": 1190
+ },
+ {
+ "epoch": 16.54521625163827,
+ "grad_norm": 0.20451335608959198,
+ "learning_rate": 0.0006,
+ "loss": 4.043377876281738,
+ "step": 1191
+ },
+ {
+ "epoch": 16.55919615552643,
+ "grad_norm": 0.23348836600780487,
+ "learning_rate": 0.0006,
+ "loss": 4.033735275268555,
+ "step": 1192
+ },
+ {
+ "epoch": 16.573176059414592,
+ "grad_norm": 0.24438607692718506,
+ "learning_rate": 0.0006,
+ "loss": 4.071747779846191,
+ "step": 1193
+ },
+ {
+ "epoch": 16.587155963302752,
+ "grad_norm": 0.24233631789684296,
+ "learning_rate": 0.0006,
+ "loss": 4.0138702392578125,
+ "step": 1194
+ },
+ {
+ "epoch": 16.601135867190912,
+ "grad_norm": 0.21625740826129913,
+ "learning_rate": 0.0006,
+ "loss": 4.013422012329102,
+ "step": 1195
+ },
+ {
+ "epoch": 16.615115771079076,
+ "grad_norm": 0.22447720170021057,
+ "learning_rate": 0.0006,
+ "loss": 4.056326866149902,
+ "step": 1196
+ },
+ {
+ "epoch": 16.629095674967235,
+ "grad_norm": 0.21899616718292236,
+ "learning_rate": 0.0006,
+ "loss": 4.006134033203125,
+ "step": 1197
+ },
+ {
+ "epoch": 16.643075578855395,
+ "grad_norm": 0.191362664103508,
+ "learning_rate": 0.0006,
+ "loss": 4.036748886108398,
+ "step": 1198
+ },
+ {
+ "epoch": 16.657055482743555,
+ "grad_norm": 0.20203463733196259,
+ "learning_rate": 0.0006,
+ "loss": 4.006264686584473,
+ "step": 1199
+ },
+ {
+ "epoch": 16.67103538663172,
+ "grad_norm": 0.20209139585494995,
+ "learning_rate": 0.0006,
+ "loss": 4.059018135070801,
+ "step": 1200
+ },
+ {
+ "epoch": 16.68501529051988,
+ "grad_norm": 0.20811820030212402,
+ "learning_rate": 0.0006,
+ "loss": 4.054325103759766,
+ "step": 1201
+ },
+ {
+ "epoch": 16.698995194408038,
+ "grad_norm": 0.22448928654193878,
+ "learning_rate": 0.0006,
+ "loss": 3.996121406555176,
+ "step": 1202
+ },
+ {
+ "epoch": 16.712975098296198,
+ "grad_norm": 0.21692240238189697,
+ "learning_rate": 0.0006,
+ "loss": 4.042046546936035,
+ "step": 1203
+ },
+ {
+ "epoch": 16.72695500218436,
+ "grad_norm": 0.20688563585281372,
+ "learning_rate": 0.0006,
+ "loss": 4.002251625061035,
+ "step": 1204
+ },
+ {
+ "epoch": 16.74093490607252,
+ "grad_norm": 0.1835535764694214,
+ "learning_rate": 0.0006,
+ "loss": 4.02545166015625,
+ "step": 1205
+ },
+ {
+ "epoch": 16.75491480996068,
+ "grad_norm": 0.20532558858394623,
+ "learning_rate": 0.0006,
+ "loss": 4.039333343505859,
+ "step": 1206
+ },
+ {
+ "epoch": 16.76889471384884,
+ "grad_norm": 0.2214215099811554,
+ "learning_rate": 0.0006,
+ "loss": 4.037858486175537,
+ "step": 1207
+ },
+ {
+ "epoch": 16.782874617737004,
+ "grad_norm": 0.24926038086414337,
+ "learning_rate": 0.0006,
+ "loss": 4.024799346923828,
+ "step": 1208
+ },
+ {
+ "epoch": 16.796854521625164,
+ "grad_norm": 0.26057952642440796,
+ "learning_rate": 0.0006,
+ "loss": 4.042788505554199,
+ "step": 1209
+ },
+ {
+ "epoch": 16.810834425513324,
+ "grad_norm": 0.2501208782196045,
+ "learning_rate": 0.0006,
+ "loss": 4.051809310913086,
+ "step": 1210
+ },
+ {
+ "epoch": 16.824814329401484,
+ "grad_norm": 0.21760012209415436,
+ "learning_rate": 0.0006,
+ "loss": 4.063589096069336,
+ "step": 1211
+ },
+ {
+ "epoch": 16.838794233289647,
+ "grad_norm": 0.2243622988462448,
+ "learning_rate": 0.0006,
+ "loss": 4.008829593658447,
+ "step": 1212
+ },
+ {
+ "epoch": 16.852774137177807,
+ "grad_norm": 0.2399163395166397,
+ "learning_rate": 0.0006,
+ "loss": 4.013262748718262,
+ "step": 1213
+ },
+ {
+ "epoch": 16.866754041065967,
+ "grad_norm": 0.23187831044197083,
+ "learning_rate": 0.0006,
+ "loss": 4.023053169250488,
+ "step": 1214
+ },
+ {
+ "epoch": 16.88073394495413,
+ "grad_norm": 0.23723892867565155,
+ "learning_rate": 0.0006,
+ "loss": 3.991321563720703,
+ "step": 1215
+ },
+ {
+ "epoch": 16.89471384884229,
+ "grad_norm": 0.21766342222690582,
+ "learning_rate": 0.0006,
+ "loss": 4.0250773429870605,
+ "step": 1216
+ },
+ {
+ "epoch": 16.90869375273045,
+ "grad_norm": 0.20715023577213287,
+ "learning_rate": 0.0006,
+ "loss": 4.063642978668213,
+ "step": 1217
+ },
+ {
+ "epoch": 16.92267365661861,
+ "grad_norm": 0.20165133476257324,
+ "learning_rate": 0.0006,
+ "loss": 3.9951367378234863,
+ "step": 1218
+ },
+ {
+ "epoch": 16.936653560506773,
+ "grad_norm": 0.19956178963184357,
+ "learning_rate": 0.0006,
+ "loss": 4.025641441345215,
+ "step": 1219
+ },
+ {
+ "epoch": 16.950633464394933,
+ "grad_norm": 0.2175494134426117,
+ "learning_rate": 0.0006,
+ "loss": 4.030346393585205,
+ "step": 1220
+ },
+ {
+ "epoch": 16.964613368283093,
+ "grad_norm": 0.22365593910217285,
+ "learning_rate": 0.0006,
+ "loss": 4.018105506896973,
+ "step": 1221
+ },
+ {
+ "epoch": 16.978593272171253,
+ "grad_norm": 0.21251538395881653,
+ "learning_rate": 0.0006,
+ "loss": 4.023580074310303,
+ "step": 1222
+ },
+ {
+ "epoch": 16.992573176059416,
+ "grad_norm": 0.2230125218629837,
+ "learning_rate": 0.0006,
+ "loss": 4.001980304718018,
+ "step": 1223
+ },
+ {
+ "epoch": 17.0,
+ "grad_norm": 0.24261972308158875,
+ "learning_rate": 0.0006,
+ "loss": 4.081348896026611,
+ "step": 1224
+ },
+ {
+ "epoch": 17.0,
+ "eval_loss": 4.225194931030273,
+ "eval_runtime": 44.247,
+ "eval_samples_per_second": 55.19,
+ "eval_steps_per_second": 3.458,
+ "step": 1224
+ },
+ {
+ "epoch": 17.01397990388816,
+ "grad_norm": 0.2438880205154419,
+ "learning_rate": 0.0006,
+ "loss": 4.0164794921875,
+ "step": 1225
+ },
+ {
+ "epoch": 17.027959807776323,
+ "grad_norm": 0.22459383308887482,
+ "learning_rate": 0.0006,
+ "loss": 3.991623878479004,
+ "step": 1226
+ },
+ {
+ "epoch": 17.041939711664483,
+ "grad_norm": 0.25021040439605713,
+ "learning_rate": 0.0006,
+ "loss": 4.003020286560059,
+ "step": 1227
+ },
+ {
+ "epoch": 17.055919615552643,
+ "grad_norm": 0.30358025431632996,
+ "learning_rate": 0.0006,
+ "loss": 3.980921983718872,
+ "step": 1228
+ },
+ {
+ "epoch": 17.069899519440803,
+ "grad_norm": 0.27313271164894104,
+ "learning_rate": 0.0006,
+ "loss": 3.992398977279663,
+ "step": 1229
+ },
+ {
+ "epoch": 17.083879423328966,
+ "grad_norm": 0.2293211966753006,
+ "learning_rate": 0.0006,
+ "loss": 4.02568244934082,
+ "step": 1230
+ },
+ {
+ "epoch": 17.097859327217126,
+ "grad_norm": 0.2363300621509552,
+ "learning_rate": 0.0006,
+ "loss": 3.977229356765747,
+ "step": 1231
+ },
+ {
+ "epoch": 17.111839231105286,
+ "grad_norm": 0.2809674143791199,
+ "learning_rate": 0.0006,
+ "loss": 3.9720497131347656,
+ "step": 1232
+ },
+ {
+ "epoch": 17.125819134993446,
+ "grad_norm": 0.2913855016231537,
+ "learning_rate": 0.0006,
+ "loss": 3.979529857635498,
+ "step": 1233
+ },
+ {
+ "epoch": 17.13979903888161,
+ "grad_norm": 0.2920287251472473,
+ "learning_rate": 0.0006,
+ "loss": 3.9678473472595215,
+ "step": 1234
+ },
+ {
+ "epoch": 17.15377894276977,
+ "grad_norm": 0.2521543502807617,
+ "learning_rate": 0.0006,
+ "loss": 3.9912607669830322,
+ "step": 1235
+ },
+ {
+ "epoch": 17.16775884665793,
+ "grad_norm": 0.22844268381595612,
+ "learning_rate": 0.0006,
+ "loss": 3.9898228645324707,
+ "step": 1236
+ },
+ {
+ "epoch": 17.18173875054609,
+ "grad_norm": 0.2199884057044983,
+ "learning_rate": 0.0006,
+ "loss": 4.0050740242004395,
+ "step": 1237
+ },
+ {
+ "epoch": 17.195718654434252,
+ "grad_norm": 0.23072892427444458,
+ "learning_rate": 0.0006,
+ "loss": 3.9957475662231445,
+ "step": 1238
+ },
+ {
+ "epoch": 17.209698558322412,
+ "grad_norm": 0.2034899890422821,
+ "learning_rate": 0.0006,
+ "loss": 3.9672317504882812,
+ "step": 1239
+ },
+ {
+ "epoch": 17.22367846221057,
+ "grad_norm": 0.21826180815696716,
+ "learning_rate": 0.0006,
+ "loss": 3.98543119430542,
+ "step": 1240
+ },
+ {
+ "epoch": 17.23765836609873,
+ "grad_norm": 0.21203237771987915,
+ "learning_rate": 0.0006,
+ "loss": 3.9971959590911865,
+ "step": 1241
+ },
+ {
+ "epoch": 17.251638269986895,
+ "grad_norm": 0.22139234840869904,
+ "learning_rate": 0.0006,
+ "loss": 4.017539978027344,
+ "step": 1242
+ },
+ {
+ "epoch": 17.265618173875055,
+ "grad_norm": 0.21553276479244232,
+ "learning_rate": 0.0006,
+ "loss": 3.98740553855896,
+ "step": 1243
+ },
+ {
+ "epoch": 17.279598077763215,
+ "grad_norm": 0.23259080946445465,
+ "learning_rate": 0.0006,
+ "loss": 3.9963035583496094,
+ "step": 1244
+ },
+ {
+ "epoch": 17.293577981651374,
+ "grad_norm": 0.2527932822704315,
+ "learning_rate": 0.0006,
+ "loss": 4.0202956199646,
+ "step": 1245
+ },
+ {
+ "epoch": 17.307557885539538,
+ "grad_norm": 0.28669068217277527,
+ "learning_rate": 0.0006,
+ "loss": 3.9947609901428223,
+ "step": 1246
+ },
+ {
+ "epoch": 17.321537789427698,
+ "grad_norm": 0.341602623462677,
+ "learning_rate": 0.0006,
+ "loss": 3.997032642364502,
+ "step": 1247
+ },
+ {
+ "epoch": 17.335517693315857,
+ "grad_norm": 0.3364104926586151,
+ "learning_rate": 0.0006,
+ "loss": 3.9881834983825684,
+ "step": 1248
+ },
+ {
+ "epoch": 17.34949759720402,
+ "grad_norm": 0.2979278266429901,
+ "learning_rate": 0.0006,
+ "loss": 4.045898914337158,
+ "step": 1249
+ },
+ {
+ "epoch": 17.36347750109218,
+ "grad_norm": 0.2857462465763092,
+ "learning_rate": 0.0006,
+ "loss": 4.0085272789001465,
+ "step": 1250
+ },
+ {
+ "epoch": 17.37745740498034,
+ "grad_norm": 0.2689058780670166,
+ "learning_rate": 0.0006,
+ "loss": 4.021465301513672,
+ "step": 1251
+ },
+ {
+ "epoch": 17.3914373088685,
+ "grad_norm": 0.24943363666534424,
+ "learning_rate": 0.0006,
+ "loss": 4.003451347351074,
+ "step": 1252
+ },
+ {
+ "epoch": 17.405417212756664,
+ "grad_norm": 0.2635347843170166,
+ "learning_rate": 0.0006,
+ "loss": 3.9837827682495117,
+ "step": 1253
+ },
+ {
+ "epoch": 17.419397116644824,
+ "grad_norm": 0.29126450419425964,
+ "learning_rate": 0.0006,
+ "loss": 3.9857311248779297,
+ "step": 1254
+ },
+ {
+ "epoch": 17.433377020532983,
+ "grad_norm": 0.3166918456554413,
+ "learning_rate": 0.0006,
+ "loss": 3.9842967987060547,
+ "step": 1255
+ },
+ {
+ "epoch": 17.447356924421143,
+ "grad_norm": 0.27869969606399536,
+ "learning_rate": 0.0006,
+ "loss": 4.012607574462891,
+ "step": 1256
+ },
+ {
+ "epoch": 17.461336828309307,
+ "grad_norm": 0.23719419538974762,
+ "learning_rate": 0.0006,
+ "loss": 3.981034755706787,
+ "step": 1257
+ },
+ {
+ "epoch": 17.475316732197467,
+ "grad_norm": 0.22687610983848572,
+ "learning_rate": 0.0006,
+ "loss": 4.011059761047363,
+ "step": 1258
+ },
+ {
+ "epoch": 17.489296636085626,
+ "grad_norm": 0.22034095227718353,
+ "learning_rate": 0.0006,
+ "loss": 4.015044689178467,
+ "step": 1259
+ },
+ {
+ "epoch": 17.503276539973786,
+ "grad_norm": 0.21208405494689941,
+ "learning_rate": 0.0006,
+ "loss": 4.003793716430664,
+ "step": 1260
+ },
+ {
+ "epoch": 17.51725644386195,
+ "grad_norm": 0.21759214997291565,
+ "learning_rate": 0.0006,
+ "loss": 3.978652238845825,
+ "step": 1261
+ },
+ {
+ "epoch": 17.53123634775011,
+ "grad_norm": 0.22481068968772888,
+ "learning_rate": 0.0006,
+ "loss": 4.034845352172852,
+ "step": 1262
+ },
+ {
+ "epoch": 17.54521625163827,
+ "grad_norm": 0.20376387238502502,
+ "learning_rate": 0.0006,
+ "loss": 3.990541934967041,
+ "step": 1263
+ },
+ {
+ "epoch": 17.55919615552643,
+ "grad_norm": 0.20459355413913727,
+ "learning_rate": 0.0006,
+ "loss": 4.006990432739258,
+ "step": 1264
+ },
+ {
+ "epoch": 17.573176059414592,
+ "grad_norm": 0.19306913018226624,
+ "learning_rate": 0.0006,
+ "loss": 3.993408679962158,
+ "step": 1265
+ },
+ {
+ "epoch": 17.587155963302752,
+ "grad_norm": 0.20727239549160004,
+ "learning_rate": 0.0006,
+ "loss": 3.988016128540039,
+ "step": 1266
+ },
+ {
+ "epoch": 17.601135867190912,
+ "grad_norm": 0.20213133096694946,
+ "learning_rate": 0.0006,
+ "loss": 4.0120368003845215,
+ "step": 1267
+ },
+ {
+ "epoch": 17.615115771079076,
+ "grad_norm": 0.21074117720127106,
+ "learning_rate": 0.0006,
+ "loss": 4.048871040344238,
+ "step": 1268
+ },
+ {
+ "epoch": 17.629095674967235,
+ "grad_norm": 0.2074330598115921,
+ "learning_rate": 0.0006,
+ "loss": 3.997509002685547,
+ "step": 1269
+ },
+ {
+ "epoch": 17.643075578855395,
+ "grad_norm": 0.20383669435977936,
+ "learning_rate": 0.0006,
+ "loss": 4.0028839111328125,
+ "step": 1270
+ },
+ {
+ "epoch": 17.657055482743555,
+ "grad_norm": 0.2060765027999878,
+ "learning_rate": 0.0006,
+ "loss": 3.998032331466675,
+ "step": 1271
+ },
+ {
+ "epoch": 17.67103538663172,
+ "grad_norm": 0.21851404011249542,
+ "learning_rate": 0.0006,
+ "loss": 3.9928741455078125,
+ "step": 1272
+ },
+ {
+ "epoch": 17.68501529051988,
+ "grad_norm": 0.24324250221252441,
+ "learning_rate": 0.0006,
+ "loss": 3.9896507263183594,
+ "step": 1273
+ },
+ {
+ "epoch": 17.698995194408038,
+ "grad_norm": 0.25584331154823303,
+ "learning_rate": 0.0006,
+ "loss": 4.010485649108887,
+ "step": 1274
+ },
+ {
+ "epoch": 17.712975098296198,
+ "grad_norm": 0.2490610033273697,
+ "learning_rate": 0.0006,
+ "loss": 3.9906954765319824,
+ "step": 1275
+ },
+ {
+ "epoch": 17.72695500218436,
+ "grad_norm": 0.24241414666175842,
+ "learning_rate": 0.0006,
+ "loss": 4.016420364379883,
+ "step": 1276
+ },
+ {
+ "epoch": 17.74093490607252,
+ "grad_norm": 0.2222128063440323,
+ "learning_rate": 0.0006,
+ "loss": 4.009827136993408,
+ "step": 1277
+ },
+ {
+ "epoch": 17.75491480996068,
+ "grad_norm": 0.23119516670703888,
+ "learning_rate": 0.0006,
+ "loss": 4.0034589767456055,
+ "step": 1278
+ },
+ {
+ "epoch": 17.76889471384884,
+ "grad_norm": 0.24596457183361053,
+ "learning_rate": 0.0006,
+ "loss": 4.003161907196045,
+ "step": 1279
+ },
+ {
+ "epoch": 17.782874617737004,
+ "grad_norm": 0.2607562839984894,
+ "learning_rate": 0.0006,
+ "loss": 3.9894633293151855,
+ "step": 1280
+ },
+ {
+ "epoch": 17.796854521625164,
+ "grad_norm": 0.28706878423690796,
+ "learning_rate": 0.0006,
+ "loss": 4.005712985992432,
+ "step": 1281
+ },
+ {
+ "epoch": 17.810834425513324,
+ "grad_norm": 0.27178290486335754,
+ "learning_rate": 0.0006,
+ "loss": 3.9784536361694336,
+ "step": 1282
+ },
+ {
+ "epoch": 17.824814329401484,
+ "grad_norm": 0.27962708473205566,
+ "learning_rate": 0.0006,
+ "loss": 4.012705326080322,
+ "step": 1283
+ },
+ {
+ "epoch": 17.838794233289647,
+ "grad_norm": 0.29147693514823914,
+ "learning_rate": 0.0006,
+ "loss": 4.0159783363342285,
+ "step": 1284
+ },
+ {
+ "epoch": 17.852774137177807,
+ "grad_norm": 0.2841821312904358,
+ "learning_rate": 0.0006,
+ "loss": 4.011552810668945,
+ "step": 1285
+ },
+ {
+ "epoch": 17.866754041065967,
+ "grad_norm": 0.24924969673156738,
+ "learning_rate": 0.0006,
+ "loss": 3.992421865463257,
+ "step": 1286
+ },
+ {
+ "epoch": 17.88073394495413,
+ "grad_norm": 0.24850749969482422,
+ "learning_rate": 0.0006,
+ "loss": 3.974897861480713,
+ "step": 1287
+ },
+ {
+ "epoch": 17.89471384884229,
+ "grad_norm": 0.2409554123878479,
+ "learning_rate": 0.0006,
+ "loss": 4.002941131591797,
+ "step": 1288
+ },
+ {
+ "epoch": 17.90869375273045,
+ "grad_norm": 0.2656126320362091,
+ "learning_rate": 0.0006,
+ "loss": 3.9804210662841797,
+ "step": 1289
+ },
+ {
+ "epoch": 17.92267365661861,
+ "grad_norm": 0.28210243582725525,
+ "learning_rate": 0.0006,
+ "loss": 4.007192134857178,
+ "step": 1290
+ },
+ {
+ "epoch": 17.936653560506773,
+ "grad_norm": 0.28427553176879883,
+ "learning_rate": 0.0006,
+ "loss": 3.9739556312561035,
+ "step": 1291
+ },
+ {
+ "epoch": 17.950633464394933,
+ "grad_norm": 0.28893420100212097,
+ "learning_rate": 0.0006,
+ "loss": 4.004766941070557,
+ "step": 1292
+ },
+ {
+ "epoch": 17.964613368283093,
+ "grad_norm": 0.2831471562385559,
+ "learning_rate": 0.0006,
+ "loss": 3.984936237335205,
+ "step": 1293
+ },
+ {
+ "epoch": 17.978593272171253,
+ "grad_norm": 0.2518300712108612,
+ "learning_rate": 0.0006,
+ "loss": 4.002814292907715,
+ "step": 1294
+ },
+ {
+ "epoch": 17.992573176059416,
+ "grad_norm": 0.24264675378799438,
+ "learning_rate": 0.0006,
+ "loss": 3.998900890350342,
+ "step": 1295
+ },
+ {
+ "epoch": 18.0,
+ "grad_norm": 0.24474996328353882,
+ "learning_rate": 0.0006,
+ "loss": 3.974229335784912,
+ "step": 1296
+ },
+ {
+ "epoch": 18.0,
+ "eval_loss": 4.195685863494873,
+ "eval_runtime": 44.0709,
+ "eval_samples_per_second": 55.411,
+ "eval_steps_per_second": 3.472,
+ "step": 1296
+ },
+ {
+ "epoch": 18.01397990388816,
+ "grad_norm": 0.2553016245365143,
+ "learning_rate": 0.0006,
+ "loss": 3.9522247314453125,
+ "step": 1297
+ },
+ {
+ "epoch": 18.027959807776323,
+ "grad_norm": 0.22350727021694183,
+ "learning_rate": 0.0006,
+ "loss": 3.9850122928619385,
+ "step": 1298
+ },
+ {
+ "epoch": 18.041939711664483,
+ "grad_norm": 0.23935550451278687,
+ "learning_rate": 0.0006,
+ "loss": 3.9758832454681396,
+ "step": 1299
+ },
+ {
+ "epoch": 18.055919615552643,
+ "grad_norm": 0.23868797719478607,
+ "learning_rate": 0.0006,
+ "loss": 3.9567959308624268,
+ "step": 1300
+ },
+ {
+ "epoch": 18.069899519440803,
+ "grad_norm": 0.23102357983589172,
+ "learning_rate": 0.0006,
+ "loss": 3.9399867057800293,
+ "step": 1301
+ },
+ {
+ "epoch": 18.083879423328966,
+ "grad_norm": 0.23706983029842377,
+ "learning_rate": 0.0006,
+ "loss": 3.993434190750122,
+ "step": 1302
+ },
+ {
+ "epoch": 18.097859327217126,
+ "grad_norm": 0.22207573056221008,
+ "learning_rate": 0.0006,
+ "loss": 3.993436574935913,
+ "step": 1303
+ },
+ {
+ "epoch": 18.111839231105286,
+ "grad_norm": 0.23975296318531036,
+ "learning_rate": 0.0006,
+ "loss": 3.981943368911743,
+ "step": 1304
+ },
+ {
+ "epoch": 18.125819134993446,
+ "grad_norm": 0.2520582675933838,
+ "learning_rate": 0.0006,
+ "loss": 3.965493679046631,
+ "step": 1305
+ },
+ {
+ "epoch": 18.13979903888161,
+ "grad_norm": 0.2230956256389618,
+ "learning_rate": 0.0006,
+ "loss": 3.9360928535461426,
+ "step": 1306
+ },
+ {
+ "epoch": 18.15377894276977,
+ "grad_norm": 0.22527500987052917,
+ "learning_rate": 0.0006,
+ "loss": 3.9814581871032715,
+ "step": 1307
+ },
+ {
+ "epoch": 18.16775884665793,
+ "grad_norm": 0.22389626502990723,
+ "learning_rate": 0.0006,
+ "loss": 3.961590051651001,
+ "step": 1308
+ },
+ {
+ "epoch": 18.18173875054609,
+ "grad_norm": 0.22279471158981323,
+ "learning_rate": 0.0006,
+ "loss": 3.952338695526123,
+ "step": 1309
+ },
+ {
+ "epoch": 18.195718654434252,
+ "grad_norm": 0.24635115265846252,
+ "learning_rate": 0.0006,
+ "loss": 3.9693849086761475,
+ "step": 1310
+ },
+ {
+ "epoch": 18.209698558322412,
+ "grad_norm": 0.2757279872894287,
+ "learning_rate": 0.0006,
+ "loss": 3.9956700801849365,
+ "step": 1311
+ },
+ {
+ "epoch": 18.22367846221057,
+ "grad_norm": 0.2619115710258484,
+ "learning_rate": 0.0006,
+ "loss": 3.948878765106201,
+ "step": 1312
+ },
+ {
+ "epoch": 18.23765836609873,
+ "grad_norm": 0.22853828966617584,
+ "learning_rate": 0.0006,
+ "loss": 3.9545674324035645,
+ "step": 1313
+ },
+ {
+ "epoch": 18.251638269986895,
+ "grad_norm": 0.22904761135578156,
+ "learning_rate": 0.0006,
+ "loss": 3.947535991668701,
+ "step": 1314
+ },
+ {
+ "epoch": 18.265618173875055,
+ "grad_norm": 0.23592644929885864,
+ "learning_rate": 0.0006,
+ "loss": 3.971926212310791,
+ "step": 1315
+ },
+ {
+ "epoch": 18.279598077763215,
+ "grad_norm": 0.22120243310928345,
+ "learning_rate": 0.0006,
+ "loss": 3.9471049308776855,
+ "step": 1316
+ },
+ {
+ "epoch": 18.293577981651374,
+ "grad_norm": 0.20308749377727509,
+ "learning_rate": 0.0006,
+ "loss": 3.967449188232422,
+ "step": 1317
+ },
+ {
+ "epoch": 18.307557885539538,
+ "grad_norm": 0.20013529062271118,
+ "learning_rate": 0.0006,
+ "loss": 3.966151237487793,
+ "step": 1318
+ },
+ {
+ "epoch": 18.321537789427698,
+ "grad_norm": 0.20635221898555756,
+ "learning_rate": 0.0006,
+ "loss": 3.9908885955810547,
+ "step": 1319
+ },
+ {
+ "epoch": 18.335517693315857,
+ "grad_norm": 0.2232237160205841,
+ "learning_rate": 0.0006,
+ "loss": 3.9488768577575684,
+ "step": 1320
+ },
+ {
+ "epoch": 18.34949759720402,
+ "grad_norm": 0.21916444599628448,
+ "learning_rate": 0.0006,
+ "loss": 3.973428726196289,
+ "step": 1321
+ },
+ {
+ "epoch": 18.36347750109218,
+ "grad_norm": 0.20427337288856506,
+ "learning_rate": 0.0006,
+ "loss": 3.969332695007324,
+ "step": 1322
+ },
+ {
+ "epoch": 18.37745740498034,
+ "grad_norm": 0.20138131082057953,
+ "learning_rate": 0.0006,
+ "loss": 3.9651856422424316,
+ "step": 1323
+ },
+ {
+ "epoch": 18.3914373088685,
+ "grad_norm": 0.18918880820274353,
+ "learning_rate": 0.0006,
+ "loss": 3.9772281646728516,
+ "step": 1324
+ },
+ {
+ "epoch": 18.405417212756664,
+ "grad_norm": 0.1860039383172989,
+ "learning_rate": 0.0006,
+ "loss": 3.9289052486419678,
+ "step": 1325
+ },
+ {
+ "epoch": 18.419397116644824,
+ "grad_norm": 0.19541646540164948,
+ "learning_rate": 0.0006,
+ "loss": 3.9527673721313477,
+ "step": 1326
+ },
+ {
+ "epoch": 18.433377020532983,
+ "grad_norm": 0.206914022564888,
+ "learning_rate": 0.0006,
+ "loss": 3.99316143989563,
+ "step": 1327
+ },
+ {
+ "epoch": 18.447356924421143,
+ "grad_norm": 0.209097757935524,
+ "learning_rate": 0.0006,
+ "loss": 3.978130340576172,
+ "step": 1328
+ },
+ {
+ "epoch": 18.461336828309307,
+ "grad_norm": 0.22163373231887817,
+ "learning_rate": 0.0006,
+ "loss": 3.951460361480713,
+ "step": 1329
+ },
+ {
+ "epoch": 18.475316732197467,
+ "grad_norm": 0.21446120738983154,
+ "learning_rate": 0.0006,
+ "loss": 3.963571071624756,
+ "step": 1330
+ },
+ {
+ "epoch": 18.489296636085626,
+ "grad_norm": 0.2341388761997223,
+ "learning_rate": 0.0006,
+ "loss": 4.010684013366699,
+ "step": 1331
+ },
+ {
+ "epoch": 18.503276539973786,
+ "grad_norm": 0.2433937042951584,
+ "learning_rate": 0.0006,
+ "loss": 3.987537384033203,
+ "step": 1332
+ },
+ {
+ "epoch": 18.51725644386195,
+ "grad_norm": 0.24916228652000427,
+ "learning_rate": 0.0006,
+ "loss": 3.953075647354126,
+ "step": 1333
+ },
+ {
+ "epoch": 18.53123634775011,
+ "grad_norm": 0.24542421102523804,
+ "learning_rate": 0.0006,
+ "loss": 3.9510841369628906,
+ "step": 1334
+ },
+ {
+ "epoch": 18.54521625163827,
+ "grad_norm": 0.2393690049648285,
+ "learning_rate": 0.0006,
+ "loss": 3.981747627258301,
+ "step": 1335
+ },
+ {
+ "epoch": 18.55919615552643,
+ "grad_norm": 0.22806711494922638,
+ "learning_rate": 0.0006,
+ "loss": 3.9714856147766113,
+ "step": 1336
+ },
+ {
+ "epoch": 18.573176059414592,
+ "grad_norm": 0.21948303282260895,
+ "learning_rate": 0.0006,
+ "loss": 3.9429898262023926,
+ "step": 1337
+ },
+ {
+ "epoch": 18.587155963302752,
+ "grad_norm": 0.21575778722763062,
+ "learning_rate": 0.0006,
+ "loss": 3.9639933109283447,
+ "step": 1338
+ },
+ {
+ "epoch": 18.601135867190912,
+ "grad_norm": 0.23370565474033356,
+ "learning_rate": 0.0006,
+ "loss": 3.9819254875183105,
+ "step": 1339
+ },
+ {
+ "epoch": 18.615115771079076,
+ "grad_norm": 0.2613106369972229,
+ "learning_rate": 0.0006,
+ "loss": 3.9654669761657715,
+ "step": 1340
+ },
+ {
+ "epoch": 18.629095674967235,
+ "grad_norm": 0.26682716608047485,
+ "learning_rate": 0.0006,
+ "loss": 3.9832968711853027,
+ "step": 1341
+ },
+ {
+ "epoch": 18.643075578855395,
+ "grad_norm": 0.24331490695476532,
+ "learning_rate": 0.0006,
+ "loss": 3.9926600456237793,
+ "step": 1342
+ },
+ {
+ "epoch": 18.657055482743555,
+ "grad_norm": 0.2459341287612915,
+ "learning_rate": 0.0006,
+ "loss": 3.9508986473083496,
+ "step": 1343
+ },
+ {
+ "epoch": 18.67103538663172,
+ "grad_norm": 0.26395753026008606,
+ "learning_rate": 0.0006,
+ "loss": 3.961359977722168,
+ "step": 1344
+ },
+ {
+ "epoch": 18.68501529051988,
+ "grad_norm": 0.26049068570137024,
+ "learning_rate": 0.0006,
+ "loss": 3.9763245582580566,
+ "step": 1345
+ },
+ {
+ "epoch": 18.698995194408038,
+ "grad_norm": 0.24018602073192596,
+ "learning_rate": 0.0006,
+ "loss": 3.951780319213867,
+ "step": 1346
+ },
+ {
+ "epoch": 18.712975098296198,
+ "grad_norm": 0.23886290192604065,
+ "learning_rate": 0.0006,
+ "loss": 3.9883017539978027,
+ "step": 1347
+ },
+ {
+ "epoch": 18.72695500218436,
+ "grad_norm": 0.2293774038553238,
+ "learning_rate": 0.0006,
+ "loss": 3.9852685928344727,
+ "step": 1348
+ },
+ {
+ "epoch": 18.74093490607252,
+ "grad_norm": 0.22172975540161133,
+ "learning_rate": 0.0006,
+ "loss": 3.967550277709961,
+ "step": 1349
+ },
+ {
+ "epoch": 18.75491480996068,
+ "grad_norm": 0.2170475423336029,
+ "learning_rate": 0.0006,
+ "loss": 3.9570775032043457,
+ "step": 1350
+ },
+ {
+ "epoch": 18.76889471384884,
+ "grad_norm": 0.21458806097507477,
+ "learning_rate": 0.0006,
+ "loss": 3.9461212158203125,
+ "step": 1351
+ },
+ {
+ "epoch": 18.782874617737004,
+ "grad_norm": 0.21101507544517517,
+ "learning_rate": 0.0006,
+ "loss": 3.984398365020752,
+ "step": 1352
+ },
+ {
+ "epoch": 18.796854521625164,
+ "grad_norm": 0.23480583727359772,
+ "learning_rate": 0.0006,
+ "loss": 3.950312614440918,
+ "step": 1353
+ },
+ {
+ "epoch": 18.810834425513324,
+ "grad_norm": 0.24728581309318542,
+ "learning_rate": 0.0006,
+ "loss": 3.9572393894195557,
+ "step": 1354
+ },
+ {
+ "epoch": 18.824814329401484,
+ "grad_norm": 0.26063451170921326,
+ "learning_rate": 0.0006,
+ "loss": 3.9653234481811523,
+ "step": 1355
+ },
+ {
+ "epoch": 18.838794233289647,
+ "grad_norm": 0.24679961800575256,
+ "learning_rate": 0.0006,
+ "loss": 3.9560108184814453,
+ "step": 1356
+ },
+ {
+ "epoch": 18.852774137177807,
+ "grad_norm": 0.23199526965618134,
+ "learning_rate": 0.0006,
+ "loss": 3.9948246479034424,
+ "step": 1357
+ },
+ {
+ "epoch": 18.866754041065967,
+ "grad_norm": 0.22619125247001648,
+ "learning_rate": 0.0006,
+ "loss": 3.9783573150634766,
+ "step": 1358
+ },
+ {
+ "epoch": 18.88073394495413,
+ "grad_norm": 0.25499874353408813,
+ "learning_rate": 0.0006,
+ "loss": 3.9674575328826904,
+ "step": 1359
+ },
+ {
+ "epoch": 18.89471384884229,
+ "grad_norm": 0.23961037397384644,
+ "learning_rate": 0.0006,
+ "loss": 3.969209909439087,
+ "step": 1360
+ },
+ {
+ "epoch": 18.90869375273045,
+ "grad_norm": 0.21039162576198578,
+ "learning_rate": 0.0006,
+ "loss": 3.978661060333252,
+ "step": 1361
+ },
+ {
+ "epoch": 18.92267365661861,
+ "grad_norm": 0.2297026664018631,
+ "learning_rate": 0.0006,
+ "loss": 3.9483046531677246,
+ "step": 1362
+ },
+ {
+ "epoch": 18.936653560506773,
+ "grad_norm": 0.26367098093032837,
+ "learning_rate": 0.0006,
+ "loss": 3.927133560180664,
+ "step": 1363
+ },
+ {
+ "epoch": 18.950633464394933,
+ "grad_norm": 0.26893147826194763,
+ "learning_rate": 0.0006,
+ "loss": 3.957932710647583,
+ "step": 1364
+ },
+ {
+ "epoch": 18.964613368283093,
+ "grad_norm": 0.27092233300209045,
+ "learning_rate": 0.0006,
+ "loss": 3.976621150970459,
+ "step": 1365
+ },
+ {
+ "epoch": 18.978593272171253,
+ "grad_norm": 0.2672635018825531,
+ "learning_rate": 0.0006,
+ "loss": 3.9577765464782715,
+ "step": 1366
+ },
+ {
+ "epoch": 18.992573176059416,
+ "grad_norm": 0.2721385359764099,
+ "learning_rate": 0.0006,
+ "loss": 3.986100196838379,
+ "step": 1367
+ },
+ {
+ "epoch": 19.0,
+ "grad_norm": 0.27648621797561646,
+ "learning_rate": 0.0006,
+ "loss": 3.9942402839660645,
+ "step": 1368
+ },
+ {
+ "epoch": 19.0,
+ "eval_loss": 4.180216312408447,
+ "eval_runtime": 44.0079,
+ "eval_samples_per_second": 55.49,
+ "eval_steps_per_second": 3.477,
+ "step": 1368
+ },
+ {
+ "epoch": 19.01397990388816,
+ "grad_norm": 0.2563098073005676,
+ "learning_rate": 0.0006,
+ "loss": 3.9267354011535645,
+ "step": 1369
+ },
+ {
+ "epoch": 19.027959807776323,
+ "grad_norm": 0.2531425952911377,
+ "learning_rate": 0.0006,
+ "loss": 3.9273324012756348,
+ "step": 1370
+ },
+ {
+ "epoch": 19.041939711664483,
+ "grad_norm": 0.27485427260398865,
+ "learning_rate": 0.0006,
+ "loss": 3.9542183876037598,
+ "step": 1371
+ },
+ {
+ "epoch": 19.055919615552643,
+ "grad_norm": 0.27509891986846924,
+ "learning_rate": 0.0006,
+ "loss": 3.921940326690674,
+ "step": 1372
+ },
+ {
+ "epoch": 19.069899519440803,
+ "grad_norm": 0.28154096007347107,
+ "learning_rate": 0.0006,
+ "loss": 3.926743984222412,
+ "step": 1373
+ },
+ {
+ "epoch": 19.083879423328966,
+ "grad_norm": 0.2749912738800049,
+ "learning_rate": 0.0006,
+ "loss": 3.9257748126983643,
+ "step": 1374
+ },
+ {
+ "epoch": 19.097859327217126,
+ "grad_norm": 0.26168501377105713,
+ "learning_rate": 0.0006,
+ "loss": 3.9403202533721924,
+ "step": 1375
+ },
+ {
+ "epoch": 19.111839231105286,
+ "grad_norm": 0.23410023748874664,
+ "learning_rate": 0.0006,
+ "loss": 3.935378313064575,
+ "step": 1376
+ },
+ {
+ "epoch": 19.125819134993446,
+ "grad_norm": 0.25790470838546753,
+ "learning_rate": 0.0006,
+ "loss": 3.946147918701172,
+ "step": 1377
+ },
+ {
+ "epoch": 19.13979903888161,
+ "grad_norm": 0.26704177260398865,
+ "learning_rate": 0.0006,
+ "loss": 3.9511594772338867,
+ "step": 1378
+ },
+ {
+ "epoch": 19.15377894276977,
+ "grad_norm": 0.2560667097568512,
+ "learning_rate": 0.0006,
+ "loss": 3.915806531906128,
+ "step": 1379
+ },
+ {
+ "epoch": 19.16775884665793,
+ "grad_norm": 0.24684149026870728,
+ "learning_rate": 0.0006,
+ "loss": 3.9162003993988037,
+ "step": 1380
+ },
+ {
+ "epoch": 19.18173875054609,
+ "grad_norm": 0.2097567766904831,
+ "learning_rate": 0.0006,
+ "loss": 3.915739059448242,
+ "step": 1381
+ },
+ {
+ "epoch": 19.195718654434252,
+ "grad_norm": 0.21646849811077118,
+ "learning_rate": 0.0006,
+ "loss": 3.9097084999084473,
+ "step": 1382
+ },
+ {
+ "epoch": 19.209698558322412,
+ "grad_norm": 0.20626980066299438,
+ "learning_rate": 0.0006,
+ "loss": 3.9541783332824707,
+ "step": 1383
+ },
+ {
+ "epoch": 19.22367846221057,
+ "grad_norm": 0.23362718522548676,
+ "learning_rate": 0.0006,
+ "loss": 3.950096845626831,
+ "step": 1384
+ },
+ {
+ "epoch": 19.23765836609873,
+ "grad_norm": 0.25402209162712097,
+ "learning_rate": 0.0006,
+ "loss": 3.927671432495117,
+ "step": 1385
+ },
+ {
+ "epoch": 19.251638269986895,
+ "grad_norm": 0.23714083433151245,
+ "learning_rate": 0.0006,
+ "loss": 3.939765453338623,
+ "step": 1386
+ },
+ {
+ "epoch": 19.265618173875055,
+ "grad_norm": 0.20895546674728394,
+ "learning_rate": 0.0006,
+ "loss": 3.9384806156158447,
+ "step": 1387
+ },
+ {
+ "epoch": 19.279598077763215,
+ "grad_norm": 0.21374300122261047,
+ "learning_rate": 0.0006,
+ "loss": 3.9523749351501465,
+ "step": 1388
+ },
+ {
+ "epoch": 19.293577981651374,
+ "grad_norm": 0.210394486784935,
+ "learning_rate": 0.0006,
+ "loss": 3.9540798664093018,
+ "step": 1389
+ },
+ {
+ "epoch": 19.307557885539538,
+ "grad_norm": 0.20646725594997406,
+ "learning_rate": 0.0006,
+ "loss": 3.9514098167419434,
+ "step": 1390
+ },
+ {
+ "epoch": 19.321537789427698,
+ "grad_norm": 0.21477538347244263,
+ "learning_rate": 0.0006,
+ "loss": 3.9369924068450928,
+ "step": 1391
+ },
+ {
+ "epoch": 19.335517693315857,
+ "grad_norm": 0.20431505143642426,
+ "learning_rate": 0.0006,
+ "loss": 3.9389796257019043,
+ "step": 1392
+ },
+ {
+ "epoch": 19.34949759720402,
+ "grad_norm": 0.19575877487659454,
+ "learning_rate": 0.0006,
+ "loss": 3.935976028442383,
+ "step": 1393
+ },
+ {
+ "epoch": 19.36347750109218,
+ "grad_norm": 0.20720405876636505,
+ "learning_rate": 0.0006,
+ "loss": 3.9670963287353516,
+ "step": 1394
+ },
+ {
+ "epoch": 19.37745740498034,
+ "grad_norm": 0.2173967957496643,
+ "learning_rate": 0.0006,
+ "loss": 3.903940439224243,
+ "step": 1395
+ },
+ {
+ "epoch": 19.3914373088685,
+ "grad_norm": 0.2180529683828354,
+ "learning_rate": 0.0006,
+ "loss": 3.8716301918029785,
+ "step": 1396
+ },
+ {
+ "epoch": 19.405417212756664,
+ "grad_norm": 0.20666591823101044,
+ "learning_rate": 0.0006,
+ "loss": 3.930936813354492,
+ "step": 1397
+ },
+ {
+ "epoch": 19.419397116644824,
+ "grad_norm": 0.20353034138679504,
+ "learning_rate": 0.0006,
+ "loss": 3.926954746246338,
+ "step": 1398
+ },
+ {
+ "epoch": 19.433377020532983,
+ "grad_norm": 0.22333289682865143,
+ "learning_rate": 0.0006,
+ "loss": 3.947504997253418,
+ "step": 1399
+ },
+ {
+ "epoch": 19.447356924421143,
+ "grad_norm": 0.21787697076797485,
+ "learning_rate": 0.0006,
+ "loss": 3.9325344562530518,
+ "step": 1400
+ },
+ {
+ "epoch": 19.461336828309307,
+ "grad_norm": 0.22805874049663544,
+ "learning_rate": 0.0006,
+ "loss": 3.9640727043151855,
+ "step": 1401
+ },
+ {
+ "epoch": 19.475316732197467,
+ "grad_norm": 0.22396457195281982,
+ "learning_rate": 0.0006,
+ "loss": 3.9537901878356934,
+ "step": 1402
+ },
+ {
+ "epoch": 19.489296636085626,
+ "grad_norm": 0.2333047240972519,
+ "learning_rate": 0.0006,
+ "loss": 3.935609817504883,
+ "step": 1403
+ },
+ {
+ "epoch": 19.503276539973786,
+ "grad_norm": 0.25063616037368774,
+ "learning_rate": 0.0006,
+ "loss": 3.9659228324890137,
+ "step": 1404
+ },
+ {
+ "epoch": 19.51725644386195,
+ "grad_norm": 0.29074087738990784,
+ "learning_rate": 0.0006,
+ "loss": 3.9552183151245117,
+ "step": 1405
+ },
+ {
+ "epoch": 19.53123634775011,
+ "grad_norm": 0.34876152873039246,
+ "learning_rate": 0.0006,
+ "loss": 3.976163387298584,
+ "step": 1406
+ },
+ {
+ "epoch": 19.54521625163827,
+ "grad_norm": 0.35026612877845764,
+ "learning_rate": 0.0006,
+ "loss": 3.961186408996582,
+ "step": 1407
+ },
+ {
+ "epoch": 19.55919615552643,
+ "grad_norm": 0.3199564218521118,
+ "learning_rate": 0.0006,
+ "loss": 3.9366297721862793,
+ "step": 1408
+ },
+ {
+ "epoch": 19.573176059414592,
+ "grad_norm": 0.2976185977458954,
+ "learning_rate": 0.0006,
+ "loss": 3.9502010345458984,
+ "step": 1409
+ },
+ {
+ "epoch": 19.587155963302752,
+ "grad_norm": 0.2951911687850952,
+ "learning_rate": 0.0006,
+ "loss": 3.9427943229675293,
+ "step": 1410
+ },
+ {
+ "epoch": 19.601135867190912,
+ "grad_norm": 0.27918702363967896,
+ "learning_rate": 0.0006,
+ "loss": 3.963700532913208,
+ "step": 1411
+ },
+ {
+ "epoch": 19.615115771079076,
+ "grad_norm": 0.26197490096092224,
+ "learning_rate": 0.0006,
+ "loss": 3.9636964797973633,
+ "step": 1412
+ },
+ {
+ "epoch": 19.629095674967235,
+ "grad_norm": 0.24242281913757324,
+ "learning_rate": 0.0006,
+ "loss": 3.961815595626831,
+ "step": 1413
+ },
+ {
+ "epoch": 19.643075578855395,
+ "grad_norm": 0.2606375515460968,
+ "learning_rate": 0.0006,
+ "loss": 3.946643352508545,
+ "step": 1414
+ },
+ {
+ "epoch": 19.657055482743555,
+ "grad_norm": 0.23353353142738342,
+ "learning_rate": 0.0006,
+ "loss": 3.973155975341797,
+ "step": 1415
+ },
+ {
+ "epoch": 19.67103538663172,
+ "grad_norm": 0.22872662544250488,
+ "learning_rate": 0.0006,
+ "loss": 3.9528894424438477,
+ "step": 1416
+ },
+ {
+ "epoch": 19.68501529051988,
+ "grad_norm": 0.24678432941436768,
+ "learning_rate": 0.0006,
+ "loss": 3.9313249588012695,
+ "step": 1417
+ },
+ {
+ "epoch": 19.698995194408038,
+ "grad_norm": 0.23895515501499176,
+ "learning_rate": 0.0006,
+ "loss": 3.944082498550415,
+ "step": 1418
+ },
+ {
+ "epoch": 19.712975098296198,
+ "grad_norm": 0.23649105429649353,
+ "learning_rate": 0.0006,
+ "loss": 3.962069034576416,
+ "step": 1419
+ },
+ {
+ "epoch": 19.72695500218436,
+ "grad_norm": 0.22031061351299286,
+ "learning_rate": 0.0006,
+ "loss": 3.912972927093506,
+ "step": 1420
+ },
+ {
+ "epoch": 19.74093490607252,
+ "grad_norm": 0.20231695473194122,
+ "learning_rate": 0.0006,
+ "loss": 3.964531421661377,
+ "step": 1421
+ },
+ {
+ "epoch": 19.75491480996068,
+ "grad_norm": 0.19980913400650024,
+ "learning_rate": 0.0006,
+ "loss": 3.9452600479125977,
+ "step": 1422
+ },
+ {
+ "epoch": 19.76889471384884,
+ "grad_norm": 0.21768775582313538,
+ "learning_rate": 0.0006,
+ "loss": 3.9214301109313965,
+ "step": 1423
+ },
+ {
+ "epoch": 19.782874617737004,
+ "grad_norm": 0.21287119388580322,
+ "learning_rate": 0.0006,
+ "loss": 3.9416494369506836,
+ "step": 1424
+ },
+ {
+ "epoch": 19.796854521625164,
+ "grad_norm": 0.21399827301502228,
+ "learning_rate": 0.0006,
+ "loss": 3.971010208129883,
+ "step": 1425
+ },
+ {
+ "epoch": 19.810834425513324,
+ "grad_norm": 0.1957658976316452,
+ "learning_rate": 0.0006,
+ "loss": 3.936331272125244,
+ "step": 1426
+ },
+ {
+ "epoch": 19.824814329401484,
+ "grad_norm": 0.19341488182544708,
+ "learning_rate": 0.0006,
+ "loss": 3.9321448802948,
+ "step": 1427
+ },
+ {
+ "epoch": 19.838794233289647,
+ "grad_norm": 0.18405723571777344,
+ "learning_rate": 0.0006,
+ "loss": 3.939542293548584,
+ "step": 1428
+ },
+ {
+ "epoch": 19.852774137177807,
+ "grad_norm": 0.19672836363315582,
+ "learning_rate": 0.0006,
+ "loss": 3.939652919769287,
+ "step": 1429
+ },
+ {
+ "epoch": 19.866754041065967,
+ "grad_norm": 0.1998940259218216,
+ "learning_rate": 0.0006,
+ "loss": 3.932892322540283,
+ "step": 1430
+ },
+ {
+ "epoch": 19.88073394495413,
+ "grad_norm": 0.2307668924331665,
+ "learning_rate": 0.0006,
+ "loss": 3.9402761459350586,
+ "step": 1431
+ },
+ {
+ "epoch": 19.89471384884229,
+ "grad_norm": 0.2531987726688385,
+ "learning_rate": 0.0006,
+ "loss": 3.9153199195861816,
+ "step": 1432
+ },
+ {
+ "epoch": 19.90869375273045,
+ "grad_norm": 0.2299388349056244,
+ "learning_rate": 0.0006,
+ "loss": 3.9569954872131348,
+ "step": 1433
+ },
+ {
+ "epoch": 19.92267365661861,
+ "grad_norm": 0.2503527104854584,
+ "learning_rate": 0.0006,
+ "loss": 3.9469428062438965,
+ "step": 1434
+ },
+ {
+ "epoch": 19.936653560506773,
+ "grad_norm": 0.25390249490737915,
+ "learning_rate": 0.0006,
+ "loss": 3.941803455352783,
+ "step": 1435
+ },
+ {
+ "epoch": 19.950633464394933,
+ "grad_norm": 0.2288687825202942,
+ "learning_rate": 0.0006,
+ "loss": 3.9385883808135986,
+ "step": 1436
+ },
+ {
+ "epoch": 19.964613368283093,
+ "grad_norm": 0.2231096774339676,
+ "learning_rate": 0.0006,
+ "loss": 3.9255237579345703,
+ "step": 1437
+ },
+ {
+ "epoch": 19.978593272171253,
+ "grad_norm": 0.20729343593120575,
+ "learning_rate": 0.0006,
+ "loss": 3.9443163871765137,
+ "step": 1438
+ },
+ {
+ "epoch": 19.992573176059416,
+ "grad_norm": 0.197743758559227,
+ "learning_rate": 0.0006,
+ "loss": 3.925455093383789,
+ "step": 1439
+ },
+ {
+ "epoch": 20.0,
+ "grad_norm": 0.23943661153316498,
+ "learning_rate": 0.0006,
+ "loss": 3.9458866119384766,
+ "step": 1440
+ },
+ {
+ "epoch": 20.0,
+ "eval_loss": 4.144192218780518,
+ "eval_runtime": 44.0278,
+ "eval_samples_per_second": 55.465,
+ "eval_steps_per_second": 3.475,
+ "step": 1440
+ },
+ {
+ "epoch": 20.01397990388816,
+ "grad_norm": 0.2032143622636795,
+ "learning_rate": 0.0006,
+ "loss": 3.9151499271392822,
+ "step": 1441
+ },
+ {
+ "epoch": 20.027959807776323,
+ "grad_norm": 0.20164789259433746,
+ "learning_rate": 0.0006,
+ "loss": 3.874115228652954,
+ "step": 1442
+ },
+ {
+ "epoch": 20.041939711664483,
+ "grad_norm": 0.20796619355678558,
+ "learning_rate": 0.0006,
+ "loss": 3.9090776443481445,
+ "step": 1443
+ },
+ {
+ "epoch": 20.055919615552643,
+ "grad_norm": 0.1999918520450592,
+ "learning_rate": 0.0006,
+ "loss": 3.926563262939453,
+ "step": 1444
+ },
+ {
+ "epoch": 20.069899519440803,
+ "grad_norm": 0.204790860414505,
+ "learning_rate": 0.0006,
+ "loss": 3.9088830947875977,
+ "step": 1445
+ },
+ {
+ "epoch": 20.083879423328966,
+ "grad_norm": 0.21507175266742706,
+ "learning_rate": 0.0006,
+ "loss": 3.916504383087158,
+ "step": 1446
+ },
+ {
+ "epoch": 20.097859327217126,
+ "grad_norm": 0.2398025095462799,
+ "learning_rate": 0.0006,
+ "loss": 3.9128990173339844,
+ "step": 1447
+ },
+ {
+ "epoch": 20.111839231105286,
+ "grad_norm": 0.26037144660949707,
+ "learning_rate": 0.0006,
+ "loss": 3.9125187397003174,
+ "step": 1448
+ },
+ {
+ "epoch": 20.125819134993446,
+ "grad_norm": 0.25564828515052795,
+ "learning_rate": 0.0006,
+ "loss": 3.891867160797119,
+ "step": 1449
+ },
+ {
+ "epoch": 20.13979903888161,
+ "grad_norm": 0.2767223119735718,
+ "learning_rate": 0.0006,
+ "loss": 3.9202775955200195,
+ "step": 1450
+ },
+ {
+ "epoch": 20.15377894276977,
+ "grad_norm": 0.27696558833122253,
+ "learning_rate": 0.0006,
+ "loss": 3.9231314659118652,
+ "step": 1451
+ },
+ {
+ "epoch": 20.16775884665793,
+ "grad_norm": 0.3054044246673584,
+ "learning_rate": 0.0006,
+ "loss": 3.918138027191162,
+ "step": 1452
+ },
+ {
+ "epoch": 20.18173875054609,
+ "grad_norm": 0.3018973171710968,
+ "learning_rate": 0.0006,
+ "loss": 3.890678882598877,
+ "step": 1453
+ },
+ {
+ "epoch": 20.195718654434252,
+ "grad_norm": 0.306232750415802,
+ "learning_rate": 0.0006,
+ "loss": 3.920753002166748,
+ "step": 1454
+ },
+ {
+ "epoch": 20.209698558322412,
+ "grad_norm": 0.29593729972839355,
+ "learning_rate": 0.0006,
+ "loss": 3.9455509185791016,
+ "step": 1455
+ },
+ {
+ "epoch": 20.22367846221057,
+ "grad_norm": 0.2937646210193634,
+ "learning_rate": 0.0006,
+ "loss": 3.9227709770202637,
+ "step": 1456
+ },
+ {
+ "epoch": 20.23765836609873,
+ "grad_norm": 0.26380231976509094,
+ "learning_rate": 0.0006,
+ "loss": 3.9097609519958496,
+ "step": 1457
+ },
+ {
+ "epoch": 20.251638269986895,
+ "grad_norm": 0.24992692470550537,
+ "learning_rate": 0.0006,
+ "loss": 3.9393627643585205,
+ "step": 1458
+ },
+ {
+ "epoch": 20.265618173875055,
+ "grad_norm": 0.270219087600708,
+ "learning_rate": 0.0006,
+ "loss": 3.929330348968506,
+ "step": 1459
+ },
+ {
+ "epoch": 20.279598077763215,
+ "grad_norm": 0.2860020399093628,
+ "learning_rate": 0.0006,
+ "loss": 3.8947913646698,
+ "step": 1460
+ },
+ {
+ "epoch": 20.293577981651374,
+ "grad_norm": 0.27494579553604126,
+ "learning_rate": 0.0006,
+ "loss": 3.9105992317199707,
+ "step": 1461
+ },
+ {
+ "epoch": 20.307557885539538,
+ "grad_norm": 0.26467713713645935,
+ "learning_rate": 0.0006,
+ "loss": 3.914632797241211,
+ "step": 1462
+ },
+ {
+ "epoch": 20.321537789427698,
+ "grad_norm": 0.25747713446617126,
+ "learning_rate": 0.0006,
+ "loss": 3.919846534729004,
+ "step": 1463
+ },
+ {
+ "epoch": 20.335517693315857,
+ "grad_norm": 0.24027711153030396,
+ "learning_rate": 0.0006,
+ "loss": 3.904740810394287,
+ "step": 1464
+ },
+ {
+ "epoch": 20.34949759720402,
+ "grad_norm": 0.24682414531707764,
+ "learning_rate": 0.0006,
+ "loss": 3.9190149307250977,
+ "step": 1465
+ },
+ {
+ "epoch": 20.36347750109218,
+ "grad_norm": 0.2619759440422058,
+ "learning_rate": 0.0006,
+ "loss": 3.9488329887390137,
+ "step": 1466
+ },
+ {
+ "epoch": 20.37745740498034,
+ "grad_norm": 0.2632448971271515,
+ "learning_rate": 0.0006,
+ "loss": 3.9216647148132324,
+ "step": 1467
+ },
+ {
+ "epoch": 20.3914373088685,
+ "grad_norm": 0.27569764852523804,
+ "learning_rate": 0.0006,
+ "loss": 3.9178895950317383,
+ "step": 1468
+ },
+ {
+ "epoch": 20.405417212756664,
+ "grad_norm": 0.2611774802207947,
+ "learning_rate": 0.0006,
+ "loss": 3.933730125427246,
+ "step": 1469
+ },
+ {
+ "epoch": 20.419397116644824,
+ "grad_norm": 0.2839447557926178,
+ "learning_rate": 0.0006,
+ "loss": 3.9261364936828613,
+ "step": 1470
+ },
+ {
+ "epoch": 20.433377020532983,
+ "grad_norm": 0.29006227850914,
+ "learning_rate": 0.0006,
+ "loss": 3.9157633781433105,
+ "step": 1471
+ },
+ {
+ "epoch": 20.447356924421143,
+ "grad_norm": 0.2809498906135559,
+ "learning_rate": 0.0006,
+ "loss": 3.9211745262145996,
+ "step": 1472
+ },
+ {
+ "epoch": 20.461336828309307,
+ "grad_norm": 0.27859532833099365,
+ "learning_rate": 0.0006,
+ "loss": 3.9115967750549316,
+ "step": 1473
+ },
+ {
+ "epoch": 20.475316732197467,
+ "grad_norm": 0.29114410281181335,
+ "learning_rate": 0.0006,
+ "loss": 3.9024441242218018,
+ "step": 1474
+ },
+ {
+ "epoch": 20.489296636085626,
+ "grad_norm": 0.2686930000782013,
+ "learning_rate": 0.0006,
+ "loss": 3.9497199058532715,
+ "step": 1475
+ },
+ {
+ "epoch": 20.503276539973786,
+ "grad_norm": 0.24120540916919708,
+ "learning_rate": 0.0006,
+ "loss": 3.9218955039978027,
+ "step": 1476
+ },
+ {
+ "epoch": 20.51725644386195,
+ "grad_norm": 0.23689547181129456,
+ "learning_rate": 0.0006,
+ "loss": 3.9410176277160645,
+ "step": 1477
+ },
+ {
+ "epoch": 20.53123634775011,
+ "grad_norm": 0.26382362842559814,
+ "learning_rate": 0.0006,
+ "loss": 3.8880343437194824,
+ "step": 1478
+ },
+ {
+ "epoch": 20.54521625163827,
+ "grad_norm": 0.21628661453723907,
+ "learning_rate": 0.0006,
+ "loss": 3.892622470855713,
+ "step": 1479
+ },
+ {
+ "epoch": 20.55919615552643,
+ "grad_norm": 0.19896996021270752,
+ "learning_rate": 0.0006,
+ "loss": 3.938734769821167,
+ "step": 1480
+ },
+ {
+ "epoch": 20.573176059414592,
+ "grad_norm": 0.20232494175434113,
+ "learning_rate": 0.0006,
+ "loss": 3.9197006225585938,
+ "step": 1481
+ },
+ {
+ "epoch": 20.587155963302752,
+ "grad_norm": 0.21807828545570374,
+ "learning_rate": 0.0006,
+ "loss": 3.9195618629455566,
+ "step": 1482
+ },
+ {
+ "epoch": 20.601135867190912,
+ "grad_norm": 0.21778680384159088,
+ "learning_rate": 0.0006,
+ "loss": 3.913395404815674,
+ "step": 1483
+ },
+ {
+ "epoch": 20.615115771079076,
+ "grad_norm": 0.21015185117721558,
+ "learning_rate": 0.0006,
+ "loss": 3.8858234882354736,
+ "step": 1484
+ },
+ {
+ "epoch": 20.629095674967235,
+ "grad_norm": 0.20131368935108185,
+ "learning_rate": 0.0006,
+ "loss": 3.927213430404663,
+ "step": 1485
+ },
+ {
+ "epoch": 20.643075578855395,
+ "grad_norm": 0.20746243000030518,
+ "learning_rate": 0.0006,
+ "loss": 3.913198471069336,
+ "step": 1486
+ },
+ {
+ "epoch": 20.657055482743555,
+ "grad_norm": 0.2024548053741455,
+ "learning_rate": 0.0006,
+ "loss": 3.923048257827759,
+ "step": 1487
+ },
+ {
+ "epoch": 20.67103538663172,
+ "grad_norm": 0.19735988974571228,
+ "learning_rate": 0.0006,
+ "loss": 3.9136500358581543,
+ "step": 1488
+ },
+ {
+ "epoch": 20.68501529051988,
+ "grad_norm": 0.19781625270843506,
+ "learning_rate": 0.0006,
+ "loss": 3.883793592453003,
+ "step": 1489
+ },
+ {
+ "epoch": 20.698995194408038,
+ "grad_norm": 0.1911996454000473,
+ "learning_rate": 0.0006,
+ "loss": 3.9078567028045654,
+ "step": 1490
+ },
+ {
+ "epoch": 20.712975098296198,
+ "grad_norm": 0.1989123821258545,
+ "learning_rate": 0.0006,
+ "loss": 3.9314043521881104,
+ "step": 1491
+ },
+ {
+ "epoch": 20.72695500218436,
+ "grad_norm": 0.18839342892169952,
+ "learning_rate": 0.0006,
+ "loss": 3.8955953121185303,
+ "step": 1492
+ },
+ {
+ "epoch": 20.74093490607252,
+ "grad_norm": 0.1944834142923355,
+ "learning_rate": 0.0006,
+ "loss": 3.9272377490997314,
+ "step": 1493
+ },
+ {
+ "epoch": 20.75491480996068,
+ "grad_norm": 0.20829126238822937,
+ "learning_rate": 0.0006,
+ "loss": 3.878857374191284,
+ "step": 1494
+ },
+ {
+ "epoch": 20.76889471384884,
+ "grad_norm": 0.21438424289226532,
+ "learning_rate": 0.0006,
+ "loss": 3.9155564308166504,
+ "step": 1495
+ },
+ {
+ "epoch": 20.782874617737004,
+ "grad_norm": 0.22309324145317078,
+ "learning_rate": 0.0006,
+ "loss": 3.9281692504882812,
+ "step": 1496
+ },
+ {
+ "epoch": 20.796854521625164,
+ "grad_norm": 0.2053767591714859,
+ "learning_rate": 0.0006,
+ "loss": 3.9096317291259766,
+ "step": 1497
+ },
+ {
+ "epoch": 20.810834425513324,
+ "grad_norm": 0.20429186522960663,
+ "learning_rate": 0.0006,
+ "loss": 3.9184865951538086,
+ "step": 1498
+ },
+ {
+ "epoch": 20.824814329401484,
+ "grad_norm": 0.21983473002910614,
+ "learning_rate": 0.0006,
+ "loss": 3.9130771160125732,
+ "step": 1499
+ },
+ {
+ "epoch": 20.838794233289647,
+ "grad_norm": 0.21649539470672607,
+ "learning_rate": 0.0006,
+ "loss": 3.921581268310547,
+ "step": 1500
+ },
+ {
+ "epoch": 20.852774137177807,
+ "grad_norm": 0.19645053148269653,
+ "learning_rate": 0.0006,
+ "loss": 3.966360092163086,
+ "step": 1501
+ },
+ {
+ "epoch": 20.866754041065967,
+ "grad_norm": 0.2126782387495041,
+ "learning_rate": 0.0006,
+ "loss": 3.9004554748535156,
+ "step": 1502
+ },
+ {
+ "epoch": 20.88073394495413,
+ "grad_norm": 0.22359658777713776,
+ "learning_rate": 0.0006,
+ "loss": 3.92336368560791,
+ "step": 1503
+ },
+ {
+ "epoch": 20.89471384884229,
+ "grad_norm": 0.2334042638540268,
+ "learning_rate": 0.0006,
+ "loss": 3.9188671112060547,
+ "step": 1504
+ },
+ {
+ "epoch": 20.90869375273045,
+ "grad_norm": 0.24595916271209717,
+ "learning_rate": 0.0006,
+ "loss": 3.9348371028900146,
+ "step": 1505
+ },
+ {
+ "epoch": 20.92267365661861,
+ "grad_norm": 0.24177910387516022,
+ "learning_rate": 0.0006,
+ "loss": 3.8796424865722656,
+ "step": 1506
+ },
+ {
+ "epoch": 20.936653560506773,
+ "grad_norm": 0.24193289875984192,
+ "learning_rate": 0.0006,
+ "loss": 3.892627716064453,
+ "step": 1507
+ },
+ {
+ "epoch": 20.950633464394933,
+ "grad_norm": 0.252849280834198,
+ "learning_rate": 0.0006,
+ "loss": 3.9300179481506348,
+ "step": 1508
+ },
+ {
+ "epoch": 20.964613368283093,
+ "grad_norm": 0.24933326244354248,
+ "learning_rate": 0.0006,
+ "loss": 3.9597225189208984,
+ "step": 1509
+ },
+ {
+ "epoch": 20.978593272171253,
+ "grad_norm": 0.23850969970226288,
+ "learning_rate": 0.0006,
+ "loss": 3.9027397632598877,
+ "step": 1510
+ },
+ {
+ "epoch": 20.992573176059416,
+ "grad_norm": 0.23298311233520508,
+ "learning_rate": 0.0006,
+ "loss": 3.9024105072021484,
+ "step": 1511
+ },
+ {
+ "epoch": 21.0,
+ "grad_norm": 0.2467455416917801,
+ "learning_rate": 0.0006,
+ "loss": 3.915929079055786,
+ "step": 1512
+ },
+ {
+ "epoch": 21.0,
+ "eval_loss": 4.136331081390381,
+ "eval_runtime": 43.9468,
+ "eval_samples_per_second": 55.567,
+ "eval_steps_per_second": 3.481,
+ "step": 1512
+ },
+ {
+ "epoch": 21.01397990388816,
+ "grad_norm": 0.2195885181427002,
+ "learning_rate": 0.0006,
+ "loss": 3.873412847518921,
+ "step": 1513
+ },
+ {
+ "epoch": 21.027959807776323,
+ "grad_norm": 0.24250614643096924,
+ "learning_rate": 0.0006,
+ "loss": 3.882302761077881,
+ "step": 1514
+ },
+ {
+ "epoch": 21.041939711664483,
+ "grad_norm": 0.249113991856575,
+ "learning_rate": 0.0006,
+ "loss": 3.9112048149108887,
+ "step": 1515
+ },
+ {
+ "epoch": 21.055919615552643,
+ "grad_norm": 0.25365301966667175,
+ "learning_rate": 0.0006,
+ "loss": 3.8625712394714355,
+ "step": 1516
+ },
+ {
+ "epoch": 21.069899519440803,
+ "grad_norm": 0.2218591272830963,
+ "learning_rate": 0.0006,
+ "loss": 3.876072406768799,
+ "step": 1517
+ },
+ {
+ "epoch": 21.083879423328966,
+ "grad_norm": 0.238582581281662,
+ "learning_rate": 0.0006,
+ "loss": 3.862060546875,
+ "step": 1518
+ },
+ {
+ "epoch": 21.097859327217126,
+ "grad_norm": 0.25051242113113403,
+ "learning_rate": 0.0006,
+ "loss": 3.905315399169922,
+ "step": 1519
+ },
+ {
+ "epoch": 21.111839231105286,
+ "grad_norm": 0.2391843944787979,
+ "learning_rate": 0.0006,
+ "loss": 3.909144401550293,
+ "step": 1520
+ },
+ {
+ "epoch": 21.125819134993446,
+ "grad_norm": 0.230543315410614,
+ "learning_rate": 0.0006,
+ "loss": 3.8856799602508545,
+ "step": 1521
+ },
+ {
+ "epoch": 21.13979903888161,
+ "grad_norm": 0.24165484309196472,
+ "learning_rate": 0.0006,
+ "loss": 3.893883228302002,
+ "step": 1522
+ },
+ {
+ "epoch": 21.15377894276977,
+ "grad_norm": 0.24657143652439117,
+ "learning_rate": 0.0006,
+ "loss": 3.901129722595215,
+ "step": 1523
+ },
+ {
+ "epoch": 21.16775884665793,
+ "grad_norm": 0.2659998834133148,
+ "learning_rate": 0.0006,
+ "loss": 3.910468101501465,
+ "step": 1524
+ },
+ {
+ "epoch": 21.18173875054609,
+ "grad_norm": 0.2673095166683197,
+ "learning_rate": 0.0006,
+ "loss": 3.917454242706299,
+ "step": 1525
+ },
+ {
+ "epoch": 21.195718654434252,
+ "grad_norm": 0.22122322022914886,
+ "learning_rate": 0.0006,
+ "loss": 3.9017257690429688,
+ "step": 1526
+ },
+ {
+ "epoch": 21.209698558322412,
+ "grad_norm": 0.21882867813110352,
+ "learning_rate": 0.0006,
+ "loss": 3.8605496883392334,
+ "step": 1527
+ },
+ {
+ "epoch": 21.22367846221057,
+ "grad_norm": 0.22335563600063324,
+ "learning_rate": 0.0006,
+ "loss": 3.88120174407959,
+ "step": 1528
+ },
+ {
+ "epoch": 21.23765836609873,
+ "grad_norm": 0.22973211109638214,
+ "learning_rate": 0.0006,
+ "loss": 3.8636834621429443,
+ "step": 1529
+ },
+ {
+ "epoch": 21.251638269986895,
+ "grad_norm": 0.2410288006067276,
+ "learning_rate": 0.0006,
+ "loss": 3.8698177337646484,
+ "step": 1530
+ },
+ {
+ "epoch": 21.265618173875055,
+ "grad_norm": 0.2454768717288971,
+ "learning_rate": 0.0006,
+ "loss": 3.905341148376465,
+ "step": 1531
+ },
+ {
+ "epoch": 21.279598077763215,
+ "grad_norm": 0.2271580696105957,
+ "learning_rate": 0.0006,
+ "loss": 3.864063262939453,
+ "step": 1532
+ },
+ {
+ "epoch": 21.293577981651374,
+ "grad_norm": 0.2200947403907776,
+ "learning_rate": 0.0006,
+ "loss": 3.8889589309692383,
+ "step": 1533
+ },
+ {
+ "epoch": 21.307557885539538,
+ "grad_norm": 0.2180824875831604,
+ "learning_rate": 0.0006,
+ "loss": 3.8873472213745117,
+ "step": 1534
+ },
+ {
+ "epoch": 21.321537789427698,
+ "grad_norm": 0.214975506067276,
+ "learning_rate": 0.0006,
+ "loss": 3.882307529449463,
+ "step": 1535
+ },
+ {
+ "epoch": 21.335517693315857,
+ "grad_norm": 0.21411260962486267,
+ "learning_rate": 0.0006,
+ "loss": 3.8861560821533203,
+ "step": 1536
+ },
+ {
+ "epoch": 21.34949759720402,
+ "grad_norm": 0.22635889053344727,
+ "learning_rate": 0.0006,
+ "loss": 3.9174342155456543,
+ "step": 1537
+ },
+ {
+ "epoch": 21.36347750109218,
+ "grad_norm": 0.22700625658035278,
+ "learning_rate": 0.0006,
+ "loss": 3.890416383743286,
+ "step": 1538
+ },
+ {
+ "epoch": 21.37745740498034,
+ "grad_norm": 0.2106025069952011,
+ "learning_rate": 0.0006,
+ "loss": 3.8672406673431396,
+ "step": 1539
+ },
+ {
+ "epoch": 21.3914373088685,
+ "grad_norm": 0.22994661331176758,
+ "learning_rate": 0.0006,
+ "loss": 3.893190383911133,
+ "step": 1540
+ },
+ {
+ "epoch": 21.405417212756664,
+ "grad_norm": 0.24701105058193207,
+ "learning_rate": 0.0006,
+ "loss": 3.898078441619873,
+ "step": 1541
+ },
+ {
+ "epoch": 21.419397116644824,
+ "grad_norm": 0.26914113759994507,
+ "learning_rate": 0.0006,
+ "loss": 3.905871868133545,
+ "step": 1542
+ },
+ {
+ "epoch": 21.433377020532983,
+ "grad_norm": 0.2904224097728729,
+ "learning_rate": 0.0006,
+ "loss": 3.8919103145599365,
+ "step": 1543
+ },
+ {
+ "epoch": 21.447356924421143,
+ "grad_norm": 0.2911844551563263,
+ "learning_rate": 0.0006,
+ "loss": 3.9073286056518555,
+ "step": 1544
+ },
+ {
+ "epoch": 21.461336828309307,
+ "grad_norm": 0.2742345929145813,
+ "learning_rate": 0.0006,
+ "loss": 3.9075546264648438,
+ "step": 1545
+ },
+ {
+ "epoch": 21.475316732197467,
+ "grad_norm": 0.2341093122959137,
+ "learning_rate": 0.0006,
+ "loss": 3.9232025146484375,
+ "step": 1546
+ },
+ {
+ "epoch": 21.489296636085626,
+ "grad_norm": 0.22808541357517242,
+ "learning_rate": 0.0006,
+ "loss": 3.9168174266815186,
+ "step": 1547
+ },
+ {
+ "epoch": 21.503276539973786,
+ "grad_norm": 0.23049889504909515,
+ "learning_rate": 0.0006,
+ "loss": 3.8850595951080322,
+ "step": 1548
+ },
+ {
+ "epoch": 21.51725644386195,
+ "grad_norm": 0.21519650518894196,
+ "learning_rate": 0.0006,
+ "loss": 3.891313076019287,
+ "step": 1549
+ },
+ {
+ "epoch": 21.53123634775011,
+ "grad_norm": 0.20999883115291595,
+ "learning_rate": 0.0006,
+ "loss": 3.894439220428467,
+ "step": 1550
+ },
+ {
+ "epoch": 21.54521625163827,
+ "grad_norm": 0.19641105830669403,
+ "learning_rate": 0.0006,
+ "loss": 3.894871473312378,
+ "step": 1551
+ },
+ {
+ "epoch": 21.55919615552643,
+ "grad_norm": 0.19108249247074127,
+ "learning_rate": 0.0006,
+ "loss": 3.905968189239502,
+ "step": 1552
+ },
+ {
+ "epoch": 21.573176059414592,
+ "grad_norm": 0.20222234725952148,
+ "learning_rate": 0.0006,
+ "loss": 3.90565824508667,
+ "step": 1553
+ },
+ {
+ "epoch": 21.587155963302752,
+ "grad_norm": 0.20620177686214447,
+ "learning_rate": 0.0006,
+ "loss": 3.9103245735168457,
+ "step": 1554
+ },
+ {
+ "epoch": 21.601135867190912,
+ "grad_norm": 0.2149713784456253,
+ "learning_rate": 0.0006,
+ "loss": 3.8864927291870117,
+ "step": 1555
+ },
+ {
+ "epoch": 21.615115771079076,
+ "grad_norm": 0.2354084551334381,
+ "learning_rate": 0.0006,
+ "loss": 3.905095100402832,
+ "step": 1556
+ },
+ {
+ "epoch": 21.629095674967235,
+ "grad_norm": 0.23949941992759705,
+ "learning_rate": 0.0006,
+ "loss": 3.901803493499756,
+ "step": 1557
+ },
+ {
+ "epoch": 21.643075578855395,
+ "grad_norm": 0.22914277017116547,
+ "learning_rate": 0.0006,
+ "loss": 3.876044273376465,
+ "step": 1558
+ },
+ {
+ "epoch": 21.657055482743555,
+ "grad_norm": 0.2363225370645523,
+ "learning_rate": 0.0006,
+ "loss": 3.910841703414917,
+ "step": 1559
+ },
+ {
+ "epoch": 21.67103538663172,
+ "grad_norm": 0.2635626792907715,
+ "learning_rate": 0.0006,
+ "loss": 3.847407579421997,
+ "step": 1560
+ },
+ {
+ "epoch": 21.68501529051988,
+ "grad_norm": 0.2499786615371704,
+ "learning_rate": 0.0006,
+ "loss": 3.8667140007019043,
+ "step": 1561
+ },
+ {
+ "epoch": 21.698995194408038,
+ "grad_norm": 0.21609611809253693,
+ "learning_rate": 0.0006,
+ "loss": 3.895470142364502,
+ "step": 1562
+ },
+ {
+ "epoch": 21.712975098296198,
+ "grad_norm": 0.2466774582862854,
+ "learning_rate": 0.0006,
+ "loss": 3.8853235244750977,
+ "step": 1563
+ },
+ {
+ "epoch": 21.72695500218436,
+ "grad_norm": 0.23791883885860443,
+ "learning_rate": 0.0006,
+ "loss": 3.899418354034424,
+ "step": 1564
+ },
+ {
+ "epoch": 21.74093490607252,
+ "grad_norm": 0.2048920840024948,
+ "learning_rate": 0.0006,
+ "loss": 3.8992419242858887,
+ "step": 1565
+ },
+ {
+ "epoch": 21.75491480996068,
+ "grad_norm": 0.22266621887683868,
+ "learning_rate": 0.0006,
+ "loss": 3.885765552520752,
+ "step": 1566
+ },
+ {
+ "epoch": 21.76889471384884,
+ "grad_norm": 0.2508748769760132,
+ "learning_rate": 0.0006,
+ "loss": 3.8797037601470947,
+ "step": 1567
+ },
+ {
+ "epoch": 21.782874617737004,
+ "grad_norm": 0.27245673537254333,
+ "learning_rate": 0.0006,
+ "loss": 3.8743176460266113,
+ "step": 1568
+ },
+ {
+ "epoch": 21.796854521625164,
+ "grad_norm": 0.25503191351890564,
+ "learning_rate": 0.0006,
+ "loss": 3.868906259536743,
+ "step": 1569
+ },
+ {
+ "epoch": 21.810834425513324,
+ "grad_norm": 0.22984394431114197,
+ "learning_rate": 0.0006,
+ "loss": 3.9051015377044678,
+ "step": 1570
+ },
+ {
+ "epoch": 21.824814329401484,
+ "grad_norm": 0.2411898821592331,
+ "learning_rate": 0.0006,
+ "loss": 3.8911490440368652,
+ "step": 1571
+ },
+ {
+ "epoch": 21.838794233289647,
+ "grad_norm": 0.22609318792819977,
+ "learning_rate": 0.0006,
+ "loss": 3.894839286804199,
+ "step": 1572
+ },
+ {
+ "epoch": 21.852774137177807,
+ "grad_norm": 0.21904583275318146,
+ "learning_rate": 0.0006,
+ "loss": 3.9314537048339844,
+ "step": 1573
+ },
+ {
+ "epoch": 21.866754041065967,
+ "grad_norm": 0.21869723498821259,
+ "learning_rate": 0.0006,
+ "loss": 3.9141433238983154,
+ "step": 1574
+ },
+ {
+ "epoch": 21.88073394495413,
+ "grad_norm": 0.21682019531726837,
+ "learning_rate": 0.0006,
+ "loss": 3.867898464202881,
+ "step": 1575
+ },
+ {
+ "epoch": 21.89471384884229,
+ "grad_norm": 0.2211964726448059,
+ "learning_rate": 0.0006,
+ "loss": 3.8892226219177246,
+ "step": 1576
+ },
+ {
+ "epoch": 21.90869375273045,
+ "grad_norm": 0.2097381353378296,
+ "learning_rate": 0.0006,
+ "loss": 3.9194154739379883,
+ "step": 1577
+ },
+ {
+ "epoch": 21.92267365661861,
+ "grad_norm": 0.21229565143585205,
+ "learning_rate": 0.0006,
+ "loss": 3.924694538116455,
+ "step": 1578
+ },
+ {
+ "epoch": 21.936653560506773,
+ "grad_norm": 0.2186083346605301,
+ "learning_rate": 0.0006,
+ "loss": 3.904440402984619,
+ "step": 1579
+ },
+ {
+ "epoch": 21.950633464394933,
+ "grad_norm": 0.21112321317195892,
+ "learning_rate": 0.0006,
+ "loss": 3.905674934387207,
+ "step": 1580
+ },
+ {
+ "epoch": 21.964613368283093,
+ "grad_norm": 0.20867373049259186,
+ "learning_rate": 0.0006,
+ "loss": 3.8761563301086426,
+ "step": 1581
+ },
+ {
+ "epoch": 21.978593272171253,
+ "grad_norm": 0.21640732884407043,
+ "learning_rate": 0.0006,
+ "loss": 3.871950149536133,
+ "step": 1582
+ },
+ {
+ "epoch": 21.992573176059416,
+ "grad_norm": 0.21920442581176758,
+ "learning_rate": 0.0006,
+ "loss": 3.8853464126586914,
+ "step": 1583
+ },
+ {
+ "epoch": 22.0,
+ "grad_norm": 0.24132665991783142,
+ "learning_rate": 0.0006,
+ "loss": 3.9012184143066406,
+ "step": 1584
+ },
+ {
+ "epoch": 22.0,
+ "eval_loss": 4.108598232269287,
+ "eval_runtime": 44.0434,
+ "eval_samples_per_second": 55.445,
+ "eval_steps_per_second": 3.474,
+ "step": 1584
+ },
+ {
+ "epoch": 22.01397990388816,
+ "grad_norm": 0.21989449858665466,
+ "learning_rate": 0.0006,
+ "loss": 3.8657469749450684,
+ "step": 1585
+ },
+ {
+ "epoch": 22.027959807776323,
+ "grad_norm": 0.20416802167892456,
+ "learning_rate": 0.0006,
+ "loss": 3.8682117462158203,
+ "step": 1586
+ },
+ {
+ "epoch": 22.041939711664483,
+ "grad_norm": 0.20651975274085999,
+ "learning_rate": 0.0006,
+ "loss": 3.8501222133636475,
+ "step": 1587
+ },
+ {
+ "epoch": 22.055919615552643,
+ "grad_norm": 0.22987176477909088,
+ "learning_rate": 0.0006,
+ "loss": 3.8830955028533936,
+ "step": 1588
+ },
+ {
+ "epoch": 22.069899519440803,
+ "grad_norm": 0.23308858275413513,
+ "learning_rate": 0.0006,
+ "loss": 3.8659040927886963,
+ "step": 1589
+ },
+ {
+ "epoch": 22.083879423328966,
+ "grad_norm": 0.2144266963005066,
+ "learning_rate": 0.0006,
+ "loss": 3.8311047554016113,
+ "step": 1590
+ },
+ {
+ "epoch": 22.097859327217126,
+ "grad_norm": 0.2052636295557022,
+ "learning_rate": 0.0006,
+ "loss": 3.8700156211853027,
+ "step": 1591
+ },
+ {
+ "epoch": 22.111839231105286,
+ "grad_norm": 0.22792384028434753,
+ "learning_rate": 0.0006,
+ "loss": 3.8799097537994385,
+ "step": 1592
+ },
+ {
+ "epoch": 22.125819134993446,
+ "grad_norm": 0.2533944249153137,
+ "learning_rate": 0.0006,
+ "loss": 3.874959945678711,
+ "step": 1593
+ },
+ {
+ "epoch": 22.13979903888161,
+ "grad_norm": 0.27126258611679077,
+ "learning_rate": 0.0006,
+ "loss": 3.863774299621582,
+ "step": 1594
+ },
+ {
+ "epoch": 22.15377894276977,
+ "grad_norm": 0.2634040415287018,
+ "learning_rate": 0.0006,
+ "loss": 3.8876869678497314,
+ "step": 1595
+ },
+ {
+ "epoch": 22.16775884665793,
+ "grad_norm": 0.267987459897995,
+ "learning_rate": 0.0006,
+ "loss": 3.871776819229126,
+ "step": 1596
+ },
+ {
+ "epoch": 22.18173875054609,
+ "grad_norm": 0.2972337305545807,
+ "learning_rate": 0.0006,
+ "loss": 3.8453969955444336,
+ "step": 1597
+ },
+ {
+ "epoch": 22.195718654434252,
+ "grad_norm": 0.3012159764766693,
+ "learning_rate": 0.0006,
+ "loss": 3.8774254322052,
+ "step": 1598
+ },
+ {
+ "epoch": 22.209698558322412,
+ "grad_norm": 0.27275875210762024,
+ "learning_rate": 0.0006,
+ "loss": 3.8558950424194336,
+ "step": 1599
+ },
+ {
+ "epoch": 22.22367846221057,
+ "grad_norm": 0.2817993462085724,
+ "learning_rate": 0.0006,
+ "loss": 3.872211217880249,
+ "step": 1600
+ },
+ {
+ "epoch": 22.23765836609873,
+ "grad_norm": 0.28823208808898926,
+ "learning_rate": 0.0006,
+ "loss": 3.847616672515869,
+ "step": 1601
+ },
+ {
+ "epoch": 22.251638269986895,
+ "grad_norm": 0.2646387815475464,
+ "learning_rate": 0.0006,
+ "loss": 3.8993802070617676,
+ "step": 1602
+ },
+ {
+ "epoch": 22.265618173875055,
+ "grad_norm": 0.27664077281951904,
+ "learning_rate": 0.0006,
+ "loss": 3.858553409576416,
+ "step": 1603
+ },
+ {
+ "epoch": 22.279598077763215,
+ "grad_norm": 0.27708905935287476,
+ "learning_rate": 0.0006,
+ "loss": 3.8691039085388184,
+ "step": 1604
+ },
+ {
+ "epoch": 22.293577981651374,
+ "grad_norm": 0.3045521378517151,
+ "learning_rate": 0.0006,
+ "loss": 3.8721439838409424,
+ "step": 1605
+ },
+ {
+ "epoch": 22.307557885539538,
+ "grad_norm": 0.3481914699077606,
+ "learning_rate": 0.0006,
+ "loss": 3.894503593444824,
+ "step": 1606
+ },
+ {
+ "epoch": 22.321537789427698,
+ "grad_norm": 0.3298046588897705,
+ "learning_rate": 0.0006,
+ "loss": 3.8420844078063965,
+ "step": 1607
+ },
+ {
+ "epoch": 22.335517693315857,
+ "grad_norm": 0.24967724084854126,
+ "learning_rate": 0.0006,
+ "loss": 3.8892619609832764,
+ "step": 1608
+ },
+ {
+ "epoch": 22.34949759720402,
+ "grad_norm": 0.22645241022109985,
+ "learning_rate": 0.0006,
+ "loss": 3.873265504837036,
+ "step": 1609
+ },
+ {
+ "epoch": 22.36347750109218,
+ "grad_norm": 0.22813954949378967,
+ "learning_rate": 0.0006,
+ "loss": 3.8658013343811035,
+ "step": 1610
+ },
+ {
+ "epoch": 22.37745740498034,
+ "grad_norm": 0.23825274407863617,
+ "learning_rate": 0.0006,
+ "loss": 3.885456085205078,
+ "step": 1611
+ },
+ {
+ "epoch": 22.3914373088685,
+ "grad_norm": 0.23612336814403534,
+ "learning_rate": 0.0006,
+ "loss": 3.851841449737549,
+ "step": 1612
+ },
+ {
+ "epoch": 22.405417212756664,
+ "grad_norm": 0.23851265013217926,
+ "learning_rate": 0.0006,
+ "loss": 3.8711647987365723,
+ "step": 1613
+ },
+ {
+ "epoch": 22.419397116644824,
+ "grad_norm": 0.22977286577224731,
+ "learning_rate": 0.0006,
+ "loss": 3.848539113998413,
+ "step": 1614
+ },
+ {
+ "epoch": 22.433377020532983,
+ "grad_norm": 0.20970143377780914,
+ "learning_rate": 0.0006,
+ "loss": 3.8709521293640137,
+ "step": 1615
+ },
+ {
+ "epoch": 22.447356924421143,
+ "grad_norm": 0.20714804530143738,
+ "learning_rate": 0.0006,
+ "loss": 3.875060558319092,
+ "step": 1616
+ },
+ {
+ "epoch": 22.461336828309307,
+ "grad_norm": 0.18881355226039886,
+ "learning_rate": 0.0006,
+ "loss": 3.8744640350341797,
+ "step": 1617
+ },
+ {
+ "epoch": 22.475316732197467,
+ "grad_norm": 0.1928759068250656,
+ "learning_rate": 0.0006,
+ "loss": 3.867971420288086,
+ "step": 1618
+ },
+ {
+ "epoch": 22.489296636085626,
+ "grad_norm": 0.18614749610424042,
+ "learning_rate": 0.0006,
+ "loss": 3.8738222122192383,
+ "step": 1619
+ },
+ {
+ "epoch": 22.503276539973786,
+ "grad_norm": 0.18614931404590607,
+ "learning_rate": 0.0006,
+ "loss": 3.8470513820648193,
+ "step": 1620
+ },
+ {
+ "epoch": 22.51725644386195,
+ "grad_norm": 0.17805059254169464,
+ "learning_rate": 0.0006,
+ "loss": 3.866396903991699,
+ "step": 1621
+ },
+ {
+ "epoch": 22.53123634775011,
+ "grad_norm": 0.16941314935684204,
+ "learning_rate": 0.0006,
+ "loss": 3.856832265853882,
+ "step": 1622
+ },
+ {
+ "epoch": 22.54521625163827,
+ "grad_norm": 0.1802310198545456,
+ "learning_rate": 0.0006,
+ "loss": 3.885653018951416,
+ "step": 1623
+ },
+ {
+ "epoch": 22.55919615552643,
+ "grad_norm": 0.1854856163263321,
+ "learning_rate": 0.0006,
+ "loss": 3.8779640197753906,
+ "step": 1624
+ },
+ {
+ "epoch": 22.573176059414592,
+ "grad_norm": 0.18765869736671448,
+ "learning_rate": 0.0006,
+ "loss": 3.8449032306671143,
+ "step": 1625
+ },
+ {
+ "epoch": 22.587155963302752,
+ "grad_norm": 0.1907789707183838,
+ "learning_rate": 0.0006,
+ "loss": 3.863029718399048,
+ "step": 1626
+ },
+ {
+ "epoch": 22.601135867190912,
+ "grad_norm": 0.19285395741462708,
+ "learning_rate": 0.0006,
+ "loss": 3.880145788192749,
+ "step": 1627
+ },
+ {
+ "epoch": 22.615115771079076,
+ "grad_norm": 0.19229751825332642,
+ "learning_rate": 0.0006,
+ "loss": 3.8521225452423096,
+ "step": 1628
+ },
+ {
+ "epoch": 22.629095674967235,
+ "grad_norm": 0.191694438457489,
+ "learning_rate": 0.0006,
+ "loss": 3.899827003479004,
+ "step": 1629
+ },
+ {
+ "epoch": 22.643075578855395,
+ "grad_norm": 0.20143048465251923,
+ "learning_rate": 0.0006,
+ "loss": 3.862064838409424,
+ "step": 1630
+ },
+ {
+ "epoch": 22.657055482743555,
+ "grad_norm": 0.1959840953350067,
+ "learning_rate": 0.0006,
+ "loss": 3.8955392837524414,
+ "step": 1631
+ },
+ {
+ "epoch": 22.67103538663172,
+ "grad_norm": 0.21454884111881256,
+ "learning_rate": 0.0006,
+ "loss": 3.8503167629241943,
+ "step": 1632
+ },
+ {
+ "epoch": 22.68501529051988,
+ "grad_norm": 0.21748484671115875,
+ "learning_rate": 0.0006,
+ "loss": 3.897134304046631,
+ "step": 1633
+ },
+ {
+ "epoch": 22.698995194408038,
+ "grad_norm": 0.21204186975955963,
+ "learning_rate": 0.0006,
+ "loss": 3.9292588233947754,
+ "step": 1634
+ },
+ {
+ "epoch": 22.712975098296198,
+ "grad_norm": 0.2112748771905899,
+ "learning_rate": 0.0006,
+ "loss": 3.89798641204834,
+ "step": 1635
+ },
+ {
+ "epoch": 22.72695500218436,
+ "grad_norm": 0.188576802611351,
+ "learning_rate": 0.0006,
+ "loss": 3.85627818107605,
+ "step": 1636
+ },
+ {
+ "epoch": 22.74093490607252,
+ "grad_norm": 0.17755994200706482,
+ "learning_rate": 0.0006,
+ "loss": 3.8480074405670166,
+ "step": 1637
+ },
+ {
+ "epoch": 22.75491480996068,
+ "grad_norm": 0.18037520349025726,
+ "learning_rate": 0.0006,
+ "loss": 3.8800172805786133,
+ "step": 1638
+ },
+ {
+ "epoch": 22.76889471384884,
+ "grad_norm": 0.19205765426158905,
+ "learning_rate": 0.0006,
+ "loss": 3.8658275604248047,
+ "step": 1639
+ },
+ {
+ "epoch": 22.782874617737004,
+ "grad_norm": 0.21801964938640594,
+ "learning_rate": 0.0006,
+ "loss": 3.8999452590942383,
+ "step": 1640
+ },
+ {
+ "epoch": 22.796854521625164,
+ "grad_norm": 0.23586086928844452,
+ "learning_rate": 0.0006,
+ "loss": 3.8660664558410645,
+ "step": 1641
+ },
+ {
+ "epoch": 22.810834425513324,
+ "grad_norm": 0.22289055585861206,
+ "learning_rate": 0.0006,
+ "loss": 3.86102557182312,
+ "step": 1642
+ },
+ {
+ "epoch": 22.824814329401484,
+ "grad_norm": 0.20695745944976807,
+ "learning_rate": 0.0006,
+ "loss": 3.8336222171783447,
+ "step": 1643
+ },
+ {
+ "epoch": 22.838794233289647,
+ "grad_norm": 0.2157406210899353,
+ "learning_rate": 0.0006,
+ "loss": 3.8923370838165283,
+ "step": 1644
+ },
+ {
+ "epoch": 22.852774137177807,
+ "grad_norm": 0.2326202690601349,
+ "learning_rate": 0.0006,
+ "loss": 3.8841443061828613,
+ "step": 1645
+ },
+ {
+ "epoch": 22.866754041065967,
+ "grad_norm": 0.2228803187608719,
+ "learning_rate": 0.0006,
+ "loss": 3.8791375160217285,
+ "step": 1646
+ },
+ {
+ "epoch": 22.88073394495413,
+ "grad_norm": 0.228999063372612,
+ "learning_rate": 0.0006,
+ "loss": 3.9005866050720215,
+ "step": 1647
+ },
+ {
+ "epoch": 22.89471384884229,
+ "grad_norm": 0.19673815369606018,
+ "learning_rate": 0.0006,
+ "loss": 3.8954291343688965,
+ "step": 1648
+ },
+ {
+ "epoch": 22.90869375273045,
+ "grad_norm": 0.1862584501504898,
+ "learning_rate": 0.0006,
+ "loss": 3.8591439723968506,
+ "step": 1649
+ },
+ {
+ "epoch": 22.92267365661861,
+ "grad_norm": 0.21360838413238525,
+ "learning_rate": 0.0006,
+ "loss": 3.862949848175049,
+ "step": 1650
+ },
+ {
+ "epoch": 22.936653560506773,
+ "grad_norm": 0.22538702189922333,
+ "learning_rate": 0.0006,
+ "loss": 3.8466529846191406,
+ "step": 1651
+ },
+ {
+ "epoch": 22.950633464394933,
+ "grad_norm": 0.21452727913856506,
+ "learning_rate": 0.0006,
+ "loss": 3.890007495880127,
+ "step": 1652
+ },
+ {
+ "epoch": 22.964613368283093,
+ "grad_norm": 0.21283482015132904,
+ "learning_rate": 0.0006,
+ "loss": 3.8820929527282715,
+ "step": 1653
+ },
+ {
+ "epoch": 22.978593272171253,
+ "grad_norm": 0.2035825103521347,
+ "learning_rate": 0.0006,
+ "loss": 3.8663241863250732,
+ "step": 1654
+ },
+ {
+ "epoch": 22.992573176059416,
+ "grad_norm": 0.22431661188602448,
+ "learning_rate": 0.0006,
+ "loss": 3.88238525390625,
+ "step": 1655
+ },
+ {
+ "epoch": 23.0,
+ "grad_norm": 0.2619943916797638,
+ "learning_rate": 0.0006,
+ "loss": 3.8482635021209717,
+ "step": 1656
+ },
+ {
+ "epoch": 23.0,
+ "eval_loss": 4.099980354309082,
+ "eval_runtime": 44.1311,
+ "eval_samples_per_second": 55.335,
+ "eval_steps_per_second": 3.467,
+ "step": 1656
+ },
+ {
+ "epoch": 23.01397990388816,
+ "grad_norm": 0.24712848663330078,
+ "learning_rate": 0.0006,
+ "loss": 3.836700916290283,
+ "step": 1657
+ },
+ {
+ "epoch": 23.027959807776323,
+ "grad_norm": 0.28568798303604126,
+ "learning_rate": 0.0006,
+ "loss": 3.8523952960968018,
+ "step": 1658
+ },
+ {
+ "epoch": 23.041939711664483,
+ "grad_norm": 0.2999744415283203,
+ "learning_rate": 0.0006,
+ "loss": 3.8229494094848633,
+ "step": 1659
+ },
+ {
+ "epoch": 23.055919615552643,
+ "grad_norm": 0.32080450654029846,
+ "learning_rate": 0.0006,
+ "loss": 3.8562774658203125,
+ "step": 1660
+ },
+ {
+ "epoch": 23.069899519440803,
+ "grad_norm": 0.293468177318573,
+ "learning_rate": 0.0006,
+ "loss": 3.889139175415039,
+ "step": 1661
+ },
+ {
+ "epoch": 23.083879423328966,
+ "grad_norm": 0.2605799436569214,
+ "learning_rate": 0.0006,
+ "loss": 3.838681221008301,
+ "step": 1662
+ },
+ {
+ "epoch": 23.097859327217126,
+ "grad_norm": 0.2656237483024597,
+ "learning_rate": 0.0006,
+ "loss": 3.8603532314300537,
+ "step": 1663
+ },
+ {
+ "epoch": 23.111839231105286,
+ "grad_norm": 0.27163293957710266,
+ "learning_rate": 0.0006,
+ "loss": 3.846987009048462,
+ "step": 1664
+ },
+ {
+ "epoch": 23.125819134993446,
+ "grad_norm": 0.2719763517379761,
+ "learning_rate": 0.0006,
+ "loss": 3.805354595184326,
+ "step": 1665
+ },
+ {
+ "epoch": 23.13979903888161,
+ "grad_norm": 0.25786274671554565,
+ "learning_rate": 0.0006,
+ "loss": 3.8486907482147217,
+ "step": 1666
+ },
+ {
+ "epoch": 23.15377894276977,
+ "grad_norm": 0.2675692141056061,
+ "learning_rate": 0.0006,
+ "loss": 3.816493511199951,
+ "step": 1667
+ },
+ {
+ "epoch": 23.16775884665793,
+ "grad_norm": 0.2711698114871979,
+ "learning_rate": 0.0006,
+ "loss": 3.851863384246826,
+ "step": 1668
+ },
+ {
+ "epoch": 23.18173875054609,
+ "grad_norm": 0.2588968873023987,
+ "learning_rate": 0.0006,
+ "loss": 3.860816717147827,
+ "step": 1669
+ },
+ {
+ "epoch": 23.195718654434252,
+ "grad_norm": 0.2458600401878357,
+ "learning_rate": 0.0006,
+ "loss": 3.8058223724365234,
+ "step": 1670
+ },
+ {
+ "epoch": 23.209698558322412,
+ "grad_norm": 0.22014005482196808,
+ "learning_rate": 0.0006,
+ "loss": 3.8686985969543457,
+ "step": 1671
+ },
+ {
+ "epoch": 23.22367846221057,
+ "grad_norm": 0.22450537979602814,
+ "learning_rate": 0.0006,
+ "loss": 3.8379364013671875,
+ "step": 1672
+ },
+ {
+ "epoch": 23.23765836609873,
+ "grad_norm": 0.22132326662540436,
+ "learning_rate": 0.0006,
+ "loss": 3.8873870372772217,
+ "step": 1673
+ },
+ {
+ "epoch": 23.251638269986895,
+ "grad_norm": 0.20994804799556732,
+ "learning_rate": 0.0006,
+ "loss": 3.821415424346924,
+ "step": 1674
+ },
+ {
+ "epoch": 23.265618173875055,
+ "grad_norm": 0.2040853649377823,
+ "learning_rate": 0.0006,
+ "loss": 3.831658124923706,
+ "step": 1675
+ },
+ {
+ "epoch": 23.279598077763215,
+ "grad_norm": 0.20878618955612183,
+ "learning_rate": 0.0006,
+ "loss": 3.838672637939453,
+ "step": 1676
+ },
+ {
+ "epoch": 23.293577981651374,
+ "grad_norm": 0.19974198937416077,
+ "learning_rate": 0.0006,
+ "loss": 3.8442561626434326,
+ "step": 1677
+ },
+ {
+ "epoch": 23.307557885539538,
+ "grad_norm": 0.20523984730243683,
+ "learning_rate": 0.0006,
+ "loss": 3.846139907836914,
+ "step": 1678
+ },
+ {
+ "epoch": 23.321537789427698,
+ "grad_norm": 0.2045847624540329,
+ "learning_rate": 0.0006,
+ "loss": 3.8597474098205566,
+ "step": 1679
+ },
+ {
+ "epoch": 23.335517693315857,
+ "grad_norm": 0.20957441627979279,
+ "learning_rate": 0.0006,
+ "loss": 3.8493881225585938,
+ "step": 1680
+ },
+ {
+ "epoch": 23.34949759720402,
+ "grad_norm": 0.2069379836320877,
+ "learning_rate": 0.0006,
+ "loss": 3.8510046005249023,
+ "step": 1681
+ },
+ {
+ "epoch": 23.36347750109218,
+ "grad_norm": 0.19627872109413147,
+ "learning_rate": 0.0006,
+ "loss": 3.844618320465088,
+ "step": 1682
+ },
+ {
+ "epoch": 23.37745740498034,
+ "grad_norm": 0.19599434733390808,
+ "learning_rate": 0.0006,
+ "loss": 3.8245465755462646,
+ "step": 1683
+ },
+ {
+ "epoch": 23.3914373088685,
+ "grad_norm": 0.2035072147846222,
+ "learning_rate": 0.0006,
+ "loss": 3.854422092437744,
+ "step": 1684
+ },
+ {
+ "epoch": 23.405417212756664,
+ "grad_norm": 0.21836814284324646,
+ "learning_rate": 0.0006,
+ "loss": 3.83512282371521,
+ "step": 1685
+ },
+ {
+ "epoch": 23.419397116644824,
+ "grad_norm": 0.22844630479812622,
+ "learning_rate": 0.0006,
+ "loss": 3.8744301795959473,
+ "step": 1686
+ },
+ {
+ "epoch": 23.433377020532983,
+ "grad_norm": 0.2259359359741211,
+ "learning_rate": 0.0006,
+ "loss": 3.8460323810577393,
+ "step": 1687
+ },
+ {
+ "epoch": 23.447356924421143,
+ "grad_norm": 0.24440120160579681,
+ "learning_rate": 0.0006,
+ "loss": 3.8543787002563477,
+ "step": 1688
+ },
+ {
+ "epoch": 23.461336828309307,
+ "grad_norm": 0.25063708424568176,
+ "learning_rate": 0.0006,
+ "loss": 3.851004123687744,
+ "step": 1689
+ },
+ {
+ "epoch": 23.475316732197467,
+ "grad_norm": 0.25515618920326233,
+ "learning_rate": 0.0006,
+ "loss": 3.8685030937194824,
+ "step": 1690
+ },
+ {
+ "epoch": 23.489296636085626,
+ "grad_norm": 0.23961050808429718,
+ "learning_rate": 0.0006,
+ "loss": 3.866792678833008,
+ "step": 1691
+ },
+ {
+ "epoch": 23.503276539973786,
+ "grad_norm": 0.20880955457687378,
+ "learning_rate": 0.0006,
+ "loss": 3.8416638374328613,
+ "step": 1692
+ },
+ {
+ "epoch": 23.51725644386195,
+ "grad_norm": 0.1989721804857254,
+ "learning_rate": 0.0006,
+ "loss": 3.8608641624450684,
+ "step": 1693
+ },
+ {
+ "epoch": 23.53123634775011,
+ "grad_norm": 0.207577183842659,
+ "learning_rate": 0.0006,
+ "loss": 3.8431811332702637,
+ "step": 1694
+ },
+ {
+ "epoch": 23.54521625163827,
+ "grad_norm": 0.20844359695911407,
+ "learning_rate": 0.0006,
+ "loss": 3.882844924926758,
+ "step": 1695
+ },
+ {
+ "epoch": 23.55919615552643,
+ "grad_norm": 0.22511139512062073,
+ "learning_rate": 0.0006,
+ "loss": 3.866156578063965,
+ "step": 1696
+ },
+ {
+ "epoch": 23.573176059414592,
+ "grad_norm": 0.21648484468460083,
+ "learning_rate": 0.0006,
+ "loss": 3.87117075920105,
+ "step": 1697
+ },
+ {
+ "epoch": 23.587155963302752,
+ "grad_norm": 0.2081802636384964,
+ "learning_rate": 0.0006,
+ "loss": 3.828132152557373,
+ "step": 1698
+ },
+ {
+ "epoch": 23.601135867190912,
+ "grad_norm": 0.2017381489276886,
+ "learning_rate": 0.0006,
+ "loss": 3.839737892150879,
+ "step": 1699
+ },
+ {
+ "epoch": 23.615115771079076,
+ "grad_norm": 0.2025786191225052,
+ "learning_rate": 0.0006,
+ "loss": 3.8787710666656494,
+ "step": 1700
+ },
+ {
+ "epoch": 23.629095674967235,
+ "grad_norm": 0.21394102275371552,
+ "learning_rate": 0.0006,
+ "loss": 3.824047088623047,
+ "step": 1701
+ },
+ {
+ "epoch": 23.643075578855395,
+ "grad_norm": 0.20749174058437347,
+ "learning_rate": 0.0006,
+ "loss": 3.877009153366089,
+ "step": 1702
+ },
+ {
+ "epoch": 23.657055482743555,
+ "grad_norm": 0.2132839858531952,
+ "learning_rate": 0.0006,
+ "loss": 3.844214916229248,
+ "step": 1703
+ },
+ {
+ "epoch": 23.67103538663172,
+ "grad_norm": 0.22408637404441833,
+ "learning_rate": 0.0006,
+ "loss": 3.8570785522460938,
+ "step": 1704
+ },
+ {
+ "epoch": 23.68501529051988,
+ "grad_norm": 0.2275897115468979,
+ "learning_rate": 0.0006,
+ "loss": 3.8599512577056885,
+ "step": 1705
+ },
+ {
+ "epoch": 23.698995194408038,
+ "grad_norm": 0.2230614721775055,
+ "learning_rate": 0.0006,
+ "loss": 3.86374568939209,
+ "step": 1706
+ },
+ {
+ "epoch": 23.712975098296198,
+ "grad_norm": 0.21873739361763,
+ "learning_rate": 0.0006,
+ "loss": 3.8530168533325195,
+ "step": 1707
+ },
+ {
+ "epoch": 23.72695500218436,
+ "grad_norm": 0.24418923258781433,
+ "learning_rate": 0.0006,
+ "loss": 3.8410465717315674,
+ "step": 1708
+ },
+ {
+ "epoch": 23.74093490607252,
+ "grad_norm": 0.24894575774669647,
+ "learning_rate": 0.0006,
+ "loss": 3.8386030197143555,
+ "step": 1709
+ },
+ {
+ "epoch": 23.75491480996068,
+ "grad_norm": 0.221230611205101,
+ "learning_rate": 0.0006,
+ "loss": 3.8116674423217773,
+ "step": 1710
+ },
+ {
+ "epoch": 23.76889471384884,
+ "grad_norm": 0.20560568571090698,
+ "learning_rate": 0.0006,
+ "loss": 3.8634426593780518,
+ "step": 1711
+ },
+ {
+ "epoch": 23.782874617737004,
+ "grad_norm": 0.20450648665428162,
+ "learning_rate": 0.0006,
+ "loss": 3.8690528869628906,
+ "step": 1712
+ },
+ {
+ "epoch": 23.796854521625164,
+ "grad_norm": 0.18996809422969818,
+ "learning_rate": 0.0006,
+ "loss": 3.8484325408935547,
+ "step": 1713
+ },
+ {
+ "epoch": 23.810834425513324,
+ "grad_norm": 0.20165087282657623,
+ "learning_rate": 0.0006,
+ "loss": 3.8823161125183105,
+ "step": 1714
+ },
+ {
+ "epoch": 23.824814329401484,
+ "grad_norm": 0.21149255335330963,
+ "learning_rate": 0.0006,
+ "loss": 3.8833112716674805,
+ "step": 1715
+ },
+ {
+ "epoch": 23.838794233289647,
+ "grad_norm": 0.21254824101924896,
+ "learning_rate": 0.0006,
+ "loss": 3.8414595127105713,
+ "step": 1716
+ },
+ {
+ "epoch": 23.852774137177807,
+ "grad_norm": 0.21313664317131042,
+ "learning_rate": 0.0006,
+ "loss": 3.8732268810272217,
+ "step": 1717
+ },
+ {
+ "epoch": 23.866754041065967,
+ "grad_norm": 0.21635662019252777,
+ "learning_rate": 0.0006,
+ "loss": 3.861222743988037,
+ "step": 1718
+ },
+ {
+ "epoch": 23.88073394495413,
+ "grad_norm": 0.20612190663814545,
+ "learning_rate": 0.0006,
+ "loss": 3.821854591369629,
+ "step": 1719
+ },
+ {
+ "epoch": 23.89471384884229,
+ "grad_norm": 0.1975104659795761,
+ "learning_rate": 0.0006,
+ "loss": 3.8815202713012695,
+ "step": 1720
+ },
+ {
+ "epoch": 23.90869375273045,
+ "grad_norm": 0.20893609523773193,
+ "learning_rate": 0.0006,
+ "loss": 3.8581607341766357,
+ "step": 1721
+ },
+ {
+ "epoch": 23.92267365661861,
+ "grad_norm": 0.2125461846590042,
+ "learning_rate": 0.0006,
+ "loss": 3.839498281478882,
+ "step": 1722
+ },
+ {
+ "epoch": 23.936653560506773,
+ "grad_norm": 0.19985878467559814,
+ "learning_rate": 0.0006,
+ "loss": 3.856555223464966,
+ "step": 1723
+ },
+ {
+ "epoch": 23.950633464394933,
+ "grad_norm": 0.1922348290681839,
+ "learning_rate": 0.0006,
+ "loss": 3.8956782817840576,
+ "step": 1724
+ },
+ {
+ "epoch": 23.964613368283093,
+ "grad_norm": 0.2191949337720871,
+ "learning_rate": 0.0006,
+ "loss": 3.8582406044006348,
+ "step": 1725
+ },
+ {
+ "epoch": 23.978593272171253,
+ "grad_norm": 0.2569248676300049,
+ "learning_rate": 0.0006,
+ "loss": 3.855678081512451,
+ "step": 1726
+ },
+ {
+ "epoch": 23.992573176059416,
+ "grad_norm": 0.2641172409057617,
+ "learning_rate": 0.0006,
+ "loss": 3.8426473140716553,
+ "step": 1727
+ },
+ {
+ "epoch": 24.0,
+ "grad_norm": 0.29637208580970764,
+ "learning_rate": 0.0006,
+ "loss": 3.843040704727173,
+ "step": 1728
+ },
+ {
+ "epoch": 24.0,
+ "eval_loss": 4.075617790222168,
+ "eval_runtime": 43.9795,
+ "eval_samples_per_second": 55.526,
+ "eval_steps_per_second": 3.479,
+ "step": 1728
+ },
+ {
+ "epoch": 24.01397990388816,
+ "grad_norm": 0.2804758548736572,
+ "learning_rate": 0.0006,
+ "loss": 3.819150924682617,
+ "step": 1729
+ },
+ {
+ "epoch": 24.027959807776323,
+ "grad_norm": 0.2796347141265869,
+ "learning_rate": 0.0006,
+ "loss": 3.8400537967681885,
+ "step": 1730
+ },
+ {
+ "epoch": 24.041939711664483,
+ "grad_norm": 0.28388649225234985,
+ "learning_rate": 0.0006,
+ "loss": 3.844595432281494,
+ "step": 1731
+ },
+ {
+ "epoch": 24.055919615552643,
+ "grad_norm": 0.2944681942462921,
+ "learning_rate": 0.0006,
+ "loss": 3.8048014640808105,
+ "step": 1732
+ },
+ {
+ "epoch": 24.069899519440803,
+ "grad_norm": 0.2956784665584564,
+ "learning_rate": 0.0006,
+ "loss": 3.8488049507141113,
+ "step": 1733
+ },
+ {
+ "epoch": 24.083879423328966,
+ "grad_norm": 0.2822059392929077,
+ "learning_rate": 0.0006,
+ "loss": 3.850322723388672,
+ "step": 1734
+ },
+ {
+ "epoch": 24.097859327217126,
+ "grad_norm": 0.3012927174568176,
+ "learning_rate": 0.0006,
+ "loss": 3.8748154640197754,
+ "step": 1735
+ },
+ {
+ "epoch": 24.111839231105286,
+ "grad_norm": 0.28868764638900757,
+ "learning_rate": 0.0006,
+ "loss": 3.8282783031463623,
+ "step": 1736
+ },
+ {
+ "epoch": 24.125819134993446,
+ "grad_norm": 0.277203768491745,
+ "learning_rate": 0.0006,
+ "loss": 3.8462908267974854,
+ "step": 1737
+ },
+ {
+ "epoch": 24.13979903888161,
+ "grad_norm": 0.2654508948326111,
+ "learning_rate": 0.0006,
+ "loss": 3.8043856620788574,
+ "step": 1738
+ },
+ {
+ "epoch": 24.15377894276977,
+ "grad_norm": 0.24425740540027618,
+ "learning_rate": 0.0006,
+ "loss": 3.8284308910369873,
+ "step": 1739
+ },
+ {
+ "epoch": 24.16775884665793,
+ "grad_norm": 0.24407348036766052,
+ "learning_rate": 0.0006,
+ "loss": 3.8489203453063965,
+ "step": 1740
+ },
+ {
+ "epoch": 24.18173875054609,
+ "grad_norm": 0.2387724369764328,
+ "learning_rate": 0.0006,
+ "loss": 3.8240389823913574,
+ "step": 1741
+ },
+ {
+ "epoch": 24.195718654434252,
+ "grad_norm": 0.2832290232181549,
+ "learning_rate": 0.0006,
+ "loss": 3.869053363800049,
+ "step": 1742
+ },
+ {
+ "epoch": 24.209698558322412,
+ "grad_norm": 0.26501718163490295,
+ "learning_rate": 0.0006,
+ "loss": 3.8624343872070312,
+ "step": 1743
+ },
+ {
+ "epoch": 24.22367846221057,
+ "grad_norm": 0.24234668910503387,
+ "learning_rate": 0.0006,
+ "loss": 3.823103904724121,
+ "step": 1744
+ },
+ {
+ "epoch": 24.23765836609873,
+ "grad_norm": 0.24160076677799225,
+ "learning_rate": 0.0006,
+ "loss": 3.8174376487731934,
+ "step": 1745
+ },
+ {
+ "epoch": 24.251638269986895,
+ "grad_norm": 0.2447604238986969,
+ "learning_rate": 0.0006,
+ "loss": 3.8345441818237305,
+ "step": 1746
+ },
+ {
+ "epoch": 24.265618173875055,
+ "grad_norm": 0.22864456474781036,
+ "learning_rate": 0.0006,
+ "loss": 3.833101272583008,
+ "step": 1747
+ },
+ {
+ "epoch": 24.279598077763215,
+ "grad_norm": 0.20429204404354095,
+ "learning_rate": 0.0006,
+ "loss": 3.8055219650268555,
+ "step": 1748
+ },
+ {
+ "epoch": 24.293577981651374,
+ "grad_norm": 0.21538510918617249,
+ "learning_rate": 0.0006,
+ "loss": 3.7929327487945557,
+ "step": 1749
+ },
+ {
+ "epoch": 24.307557885539538,
+ "grad_norm": 0.2189008593559265,
+ "learning_rate": 0.0006,
+ "loss": 3.852264881134033,
+ "step": 1750
+ },
+ {
+ "epoch": 24.321537789427698,
+ "grad_norm": 0.2228662073612213,
+ "learning_rate": 0.0006,
+ "loss": 3.831088066101074,
+ "step": 1751
+ },
+ {
+ "epoch": 24.335517693315857,
+ "grad_norm": 0.2039937973022461,
+ "learning_rate": 0.0006,
+ "loss": 3.8358256816864014,
+ "step": 1752
+ },
+ {
+ "epoch": 24.34949759720402,
+ "grad_norm": 0.19247715175151825,
+ "learning_rate": 0.0006,
+ "loss": 3.8077402114868164,
+ "step": 1753
+ },
+ {
+ "epoch": 24.36347750109218,
+ "grad_norm": 0.18301935493946075,
+ "learning_rate": 0.0006,
+ "loss": 3.81380033493042,
+ "step": 1754
+ },
+ {
+ "epoch": 24.37745740498034,
+ "grad_norm": 0.19325268268585205,
+ "learning_rate": 0.0006,
+ "loss": 3.8447322845458984,
+ "step": 1755
+ },
+ {
+ "epoch": 24.3914373088685,
+ "grad_norm": 0.2007269263267517,
+ "learning_rate": 0.0006,
+ "loss": 3.82779860496521,
+ "step": 1756
+ },
+ {
+ "epoch": 24.405417212756664,
+ "grad_norm": 0.20567037165164948,
+ "learning_rate": 0.0006,
+ "loss": 3.800354480743408,
+ "step": 1757
+ },
+ {
+ "epoch": 24.419397116644824,
+ "grad_norm": 0.22553028166294098,
+ "learning_rate": 0.0006,
+ "loss": 3.7910406589508057,
+ "step": 1758
+ },
+ {
+ "epoch": 24.433377020532983,
+ "grad_norm": 0.22697079181671143,
+ "learning_rate": 0.0006,
+ "loss": 3.857635974884033,
+ "step": 1759
+ },
+ {
+ "epoch": 24.447356924421143,
+ "grad_norm": 0.22090297937393188,
+ "learning_rate": 0.0006,
+ "loss": 3.8112804889678955,
+ "step": 1760
+ },
+ {
+ "epoch": 24.461336828309307,
+ "grad_norm": 0.24325518310070038,
+ "learning_rate": 0.0006,
+ "loss": 3.822084426879883,
+ "step": 1761
+ },
+ {
+ "epoch": 24.475316732197467,
+ "grad_norm": 0.2702929377555847,
+ "learning_rate": 0.0006,
+ "loss": 3.8307600021362305,
+ "step": 1762
+ },
+ {
+ "epoch": 24.489296636085626,
+ "grad_norm": 0.2699742317199707,
+ "learning_rate": 0.0006,
+ "loss": 3.8479247093200684,
+ "step": 1763
+ },
+ {
+ "epoch": 24.503276539973786,
+ "grad_norm": 0.2526061236858368,
+ "learning_rate": 0.0006,
+ "loss": 3.8615071773529053,
+ "step": 1764
+ },
+ {
+ "epoch": 24.51725644386195,
+ "grad_norm": 0.2633848190307617,
+ "learning_rate": 0.0006,
+ "loss": 3.8412697315216064,
+ "step": 1765
+ },
+ {
+ "epoch": 24.53123634775011,
+ "grad_norm": 0.2711184024810791,
+ "learning_rate": 0.0006,
+ "loss": 3.83647084236145,
+ "step": 1766
+ },
+ {
+ "epoch": 24.54521625163827,
+ "grad_norm": 0.2691243588924408,
+ "learning_rate": 0.0006,
+ "loss": 3.8489012718200684,
+ "step": 1767
+ },
+ {
+ "epoch": 24.55919615552643,
+ "grad_norm": 0.2580898404121399,
+ "learning_rate": 0.0006,
+ "loss": 3.8464407920837402,
+ "step": 1768
+ },
+ {
+ "epoch": 24.573176059414592,
+ "grad_norm": 0.21342119574546814,
+ "learning_rate": 0.0006,
+ "loss": 3.8279383182525635,
+ "step": 1769
+ },
+ {
+ "epoch": 24.587155963302752,
+ "grad_norm": 0.22102399170398712,
+ "learning_rate": 0.0006,
+ "loss": 3.841676712036133,
+ "step": 1770
+ },
+ {
+ "epoch": 24.601135867190912,
+ "grad_norm": 0.2882173955440521,
+ "learning_rate": 0.0006,
+ "loss": 3.825528383255005,
+ "step": 1771
+ },
+ {
+ "epoch": 24.615115771079076,
+ "grad_norm": 0.3403635323047638,
+ "learning_rate": 0.0006,
+ "loss": 3.8282246589660645,
+ "step": 1772
+ },
+ {
+ "epoch": 24.629095674967235,
+ "grad_norm": 0.32192692160606384,
+ "learning_rate": 0.0006,
+ "loss": 3.8411307334899902,
+ "step": 1773
+ },
+ {
+ "epoch": 24.643075578855395,
+ "grad_norm": 0.2534109055995941,
+ "learning_rate": 0.0006,
+ "loss": 3.843007802963257,
+ "step": 1774
+ },
+ {
+ "epoch": 24.657055482743555,
+ "grad_norm": 0.25483962893486023,
+ "learning_rate": 0.0006,
+ "loss": 3.848358154296875,
+ "step": 1775
+ },
+ {
+ "epoch": 24.67103538663172,
+ "grad_norm": 0.25175443291664124,
+ "learning_rate": 0.0006,
+ "loss": 3.8232598304748535,
+ "step": 1776
+ },
+ {
+ "epoch": 24.68501529051988,
+ "grad_norm": 0.20538510382175446,
+ "learning_rate": 0.0006,
+ "loss": 3.857635498046875,
+ "step": 1777
+ },
+ {
+ "epoch": 24.698995194408038,
+ "grad_norm": 0.240861177444458,
+ "learning_rate": 0.0006,
+ "loss": 3.83717679977417,
+ "step": 1778
+ },
+ {
+ "epoch": 24.712975098296198,
+ "grad_norm": 0.23646967113018036,
+ "learning_rate": 0.0006,
+ "loss": 3.81032133102417,
+ "step": 1779
+ },
+ {
+ "epoch": 24.72695500218436,
+ "grad_norm": 0.2164423167705536,
+ "learning_rate": 0.0006,
+ "loss": 3.807878255844116,
+ "step": 1780
+ },
+ {
+ "epoch": 24.74093490607252,
+ "grad_norm": 0.21160705387592316,
+ "learning_rate": 0.0006,
+ "loss": 3.870394468307495,
+ "step": 1781
+ },
+ {
+ "epoch": 24.75491480996068,
+ "grad_norm": 0.20284807682037354,
+ "learning_rate": 0.0006,
+ "loss": 3.842154026031494,
+ "step": 1782
+ },
+ {
+ "epoch": 24.76889471384884,
+ "grad_norm": 0.20738485455513,
+ "learning_rate": 0.0006,
+ "loss": 3.8347136974334717,
+ "step": 1783
+ },
+ {
+ "epoch": 24.782874617737004,
+ "grad_norm": 0.20253778994083405,
+ "learning_rate": 0.0006,
+ "loss": 3.814948320388794,
+ "step": 1784
+ },
+ {
+ "epoch": 24.796854521625164,
+ "grad_norm": 0.20567010343074799,
+ "learning_rate": 0.0006,
+ "loss": 3.8354592323303223,
+ "step": 1785
+ },
+ {
+ "epoch": 24.810834425513324,
+ "grad_norm": 0.20639720559120178,
+ "learning_rate": 0.0006,
+ "loss": 3.8336033821105957,
+ "step": 1786
+ },
+ {
+ "epoch": 24.824814329401484,
+ "grad_norm": 0.19978247582912445,
+ "learning_rate": 0.0006,
+ "loss": 3.8209140300750732,
+ "step": 1787
+ },
+ {
+ "epoch": 24.838794233289647,
+ "grad_norm": 0.20628373324871063,
+ "learning_rate": 0.0006,
+ "loss": 3.8372955322265625,
+ "step": 1788
+ },
+ {
+ "epoch": 24.852774137177807,
+ "grad_norm": 0.2266162782907486,
+ "learning_rate": 0.0006,
+ "loss": 3.850994110107422,
+ "step": 1789
+ },
+ {
+ "epoch": 24.866754041065967,
+ "grad_norm": 0.22567765414714813,
+ "learning_rate": 0.0006,
+ "loss": 3.8552165031433105,
+ "step": 1790
+ },
+ {
+ "epoch": 24.88073394495413,
+ "grad_norm": 0.228011354804039,
+ "learning_rate": 0.0006,
+ "loss": 3.8310747146606445,
+ "step": 1791
+ },
+ {
+ "epoch": 24.89471384884229,
+ "grad_norm": 0.23706914484500885,
+ "learning_rate": 0.0006,
+ "loss": 3.8369603157043457,
+ "step": 1792
+ },
+ {
+ "epoch": 24.90869375273045,
+ "grad_norm": 0.22669097781181335,
+ "learning_rate": 0.0006,
+ "loss": 3.8443825244903564,
+ "step": 1793
+ },
+ {
+ "epoch": 24.92267365661861,
+ "grad_norm": 0.2051001936197281,
+ "learning_rate": 0.0006,
+ "loss": 3.7938501834869385,
+ "step": 1794
+ },
+ {
+ "epoch": 24.936653560506773,
+ "grad_norm": 0.2091219276189804,
+ "learning_rate": 0.0006,
+ "loss": 3.8167076110839844,
+ "step": 1795
+ },
+ {
+ "epoch": 24.950633464394933,
+ "grad_norm": 0.20517204701900482,
+ "learning_rate": 0.0006,
+ "loss": 3.852670669555664,
+ "step": 1796
+ },
+ {
+ "epoch": 24.964613368283093,
+ "grad_norm": 0.19916993379592896,
+ "learning_rate": 0.0006,
+ "loss": 3.8410873413085938,
+ "step": 1797
+ },
+ {
+ "epoch": 24.978593272171253,
+ "grad_norm": 0.21313942968845367,
+ "learning_rate": 0.0006,
+ "loss": 3.8383948802948,
+ "step": 1798
+ },
+ {
+ "epoch": 24.992573176059416,
+ "grad_norm": 0.21042990684509277,
+ "learning_rate": 0.0006,
+ "loss": 3.8623173236846924,
+ "step": 1799
+ },
+ {
+ "epoch": 25.0,
+ "grad_norm": 0.23052045702934265,
+ "learning_rate": 0.0006,
+ "loss": 3.8646674156188965,
+ "step": 1800
+ },
+ {
+ "epoch": 25.0,
+ "eval_loss": 4.081690311431885,
+ "eval_runtime": 44.036,
+ "eval_samples_per_second": 55.455,
+ "eval_steps_per_second": 3.474,
+ "step": 1800
+ },
+ {
+ "epoch": 25.01397990388816,
+ "grad_norm": 0.22068746387958527,
+ "learning_rate": 0.0006,
+ "loss": 3.8002820014953613,
+ "step": 1801
+ },
+ {
+ "epoch": 25.027959807776323,
+ "grad_norm": 0.20711193978786469,
+ "learning_rate": 0.0006,
+ "loss": 3.787785768508911,
+ "step": 1802
+ },
+ {
+ "epoch": 25.041939711664483,
+ "grad_norm": 0.20659677684307098,
+ "learning_rate": 0.0006,
+ "loss": 3.80245304107666,
+ "step": 1803
+ },
+ {
+ "epoch": 25.055919615552643,
+ "grad_norm": 0.22891797125339508,
+ "learning_rate": 0.0006,
+ "loss": 3.784543514251709,
+ "step": 1804
+ },
+ {
+ "epoch": 25.069899519440803,
+ "grad_norm": 0.23679181933403015,
+ "learning_rate": 0.0006,
+ "loss": 3.8311429023742676,
+ "step": 1805
+ },
+ {
+ "epoch": 25.083879423328966,
+ "grad_norm": 0.2548872232437134,
+ "learning_rate": 0.0006,
+ "loss": 3.8047211170196533,
+ "step": 1806
+ },
+ {
+ "epoch": 25.097859327217126,
+ "grad_norm": 0.26181501150131226,
+ "learning_rate": 0.0006,
+ "loss": 3.837508201599121,
+ "step": 1807
+ },
+ {
+ "epoch": 25.111839231105286,
+ "grad_norm": 0.2548452913761139,
+ "learning_rate": 0.0006,
+ "loss": 3.831544876098633,
+ "step": 1808
+ },
+ {
+ "epoch": 25.125819134993446,
+ "grad_norm": 0.26177605986595154,
+ "learning_rate": 0.0006,
+ "loss": 3.805346965789795,
+ "step": 1809
+ },
+ {
+ "epoch": 25.13979903888161,
+ "grad_norm": 0.2608112394809723,
+ "learning_rate": 0.0006,
+ "loss": 3.8040924072265625,
+ "step": 1810
+ },
+ {
+ "epoch": 25.15377894276977,
+ "grad_norm": 0.2586037814617157,
+ "learning_rate": 0.0006,
+ "loss": 3.8102216720581055,
+ "step": 1811
+ },
+ {
+ "epoch": 25.16775884665793,
+ "grad_norm": 0.26258161664009094,
+ "learning_rate": 0.0006,
+ "loss": 3.8152549266815186,
+ "step": 1812
+ },
+ {
+ "epoch": 25.18173875054609,
+ "grad_norm": 0.2803022265434265,
+ "learning_rate": 0.0006,
+ "loss": 3.82576584815979,
+ "step": 1813
+ },
+ {
+ "epoch": 25.195718654434252,
+ "grad_norm": 0.2618221938610077,
+ "learning_rate": 0.0006,
+ "loss": 3.817220687866211,
+ "step": 1814
+ },
+ {
+ "epoch": 25.209698558322412,
+ "grad_norm": 0.23283469676971436,
+ "learning_rate": 0.0006,
+ "loss": 3.7999041080474854,
+ "step": 1815
+ },
+ {
+ "epoch": 25.22367846221057,
+ "grad_norm": 0.20110781490802765,
+ "learning_rate": 0.0006,
+ "loss": 3.783228874206543,
+ "step": 1816
+ },
+ {
+ "epoch": 25.23765836609873,
+ "grad_norm": 0.2231830358505249,
+ "learning_rate": 0.0006,
+ "loss": 3.8032913208007812,
+ "step": 1817
+ },
+ {
+ "epoch": 25.251638269986895,
+ "grad_norm": 0.21807286143302917,
+ "learning_rate": 0.0006,
+ "loss": 3.817028045654297,
+ "step": 1818
+ },
+ {
+ "epoch": 25.265618173875055,
+ "grad_norm": 0.22710664570331573,
+ "learning_rate": 0.0006,
+ "loss": 3.8201727867126465,
+ "step": 1819
+ },
+ {
+ "epoch": 25.279598077763215,
+ "grad_norm": 0.22299866378307343,
+ "learning_rate": 0.0006,
+ "loss": 3.8198719024658203,
+ "step": 1820
+ },
+ {
+ "epoch": 25.293577981651374,
+ "grad_norm": 0.20886564254760742,
+ "learning_rate": 0.0006,
+ "loss": 3.792414665222168,
+ "step": 1821
+ },
+ {
+ "epoch": 25.307557885539538,
+ "grad_norm": 0.20887352526187897,
+ "learning_rate": 0.0006,
+ "loss": 3.7634057998657227,
+ "step": 1822
+ },
+ {
+ "epoch": 25.321537789427698,
+ "grad_norm": 0.24560041725635529,
+ "learning_rate": 0.0006,
+ "loss": 3.79359769821167,
+ "step": 1823
+ },
+ {
+ "epoch": 25.335517693315857,
+ "grad_norm": 0.22767415642738342,
+ "learning_rate": 0.0006,
+ "loss": 3.8313469886779785,
+ "step": 1824
+ },
+ {
+ "epoch": 25.34949759720402,
+ "grad_norm": 0.21617893874645233,
+ "learning_rate": 0.0006,
+ "loss": 3.77200984954834,
+ "step": 1825
+ },
+ {
+ "epoch": 25.36347750109218,
+ "grad_norm": 0.21010833978652954,
+ "learning_rate": 0.0006,
+ "loss": 3.8042140007019043,
+ "step": 1826
+ },
+ {
+ "epoch": 25.37745740498034,
+ "grad_norm": 0.24087965488433838,
+ "learning_rate": 0.0006,
+ "loss": 3.8260979652404785,
+ "step": 1827
+ },
+ {
+ "epoch": 25.3914373088685,
+ "grad_norm": 0.2735275626182556,
+ "learning_rate": 0.0006,
+ "loss": 3.8499274253845215,
+ "step": 1828
+ },
+ {
+ "epoch": 25.405417212756664,
+ "grad_norm": 0.24831001460552216,
+ "learning_rate": 0.0006,
+ "loss": 3.8146448135375977,
+ "step": 1829
+ },
+ {
+ "epoch": 25.419397116644824,
+ "grad_norm": 0.21822866797447205,
+ "learning_rate": 0.0006,
+ "loss": 3.7845146656036377,
+ "step": 1830
+ },
+ {
+ "epoch": 25.433377020532983,
+ "grad_norm": 0.19948813319206238,
+ "learning_rate": 0.0006,
+ "loss": 3.823997974395752,
+ "step": 1831
+ },
+ {
+ "epoch": 25.447356924421143,
+ "grad_norm": 0.18342702090740204,
+ "learning_rate": 0.0006,
+ "loss": 3.8201193809509277,
+ "step": 1832
+ },
+ {
+ "epoch": 25.461336828309307,
+ "grad_norm": 0.19377560913562775,
+ "learning_rate": 0.0006,
+ "loss": 3.8069632053375244,
+ "step": 1833
+ },
+ {
+ "epoch": 25.475316732197467,
+ "grad_norm": 0.22348709404468536,
+ "learning_rate": 0.0006,
+ "loss": 3.7918643951416016,
+ "step": 1834
+ },
+ {
+ "epoch": 25.489296636085626,
+ "grad_norm": 0.24484702944755554,
+ "learning_rate": 0.0006,
+ "loss": 3.85046124458313,
+ "step": 1835
+ },
+ {
+ "epoch": 25.503276539973786,
+ "grad_norm": 0.2493520826101303,
+ "learning_rate": 0.0006,
+ "loss": 3.8043932914733887,
+ "step": 1836
+ },
+ {
+ "epoch": 25.51725644386195,
+ "grad_norm": 0.21509641408920288,
+ "learning_rate": 0.0006,
+ "loss": 3.8064627647399902,
+ "step": 1837
+ },
+ {
+ "epoch": 25.53123634775011,
+ "grad_norm": 0.21912820637226105,
+ "learning_rate": 0.0006,
+ "loss": 3.850588321685791,
+ "step": 1838
+ },
+ {
+ "epoch": 25.54521625163827,
+ "grad_norm": 0.28400927782058716,
+ "learning_rate": 0.0006,
+ "loss": 3.79818058013916,
+ "step": 1839
+ },
+ {
+ "epoch": 25.55919615552643,
+ "grad_norm": 0.32193225622177124,
+ "learning_rate": 0.0006,
+ "loss": 3.836275815963745,
+ "step": 1840
+ },
+ {
+ "epoch": 25.573176059414592,
+ "grad_norm": 0.2902325987815857,
+ "learning_rate": 0.0006,
+ "loss": 3.8080005645751953,
+ "step": 1841
+ },
+ {
+ "epoch": 25.587155963302752,
+ "grad_norm": 0.21759532392024994,
+ "learning_rate": 0.0006,
+ "loss": 3.8233771324157715,
+ "step": 1842
+ },
+ {
+ "epoch": 25.601135867190912,
+ "grad_norm": 0.19645214080810547,
+ "learning_rate": 0.0006,
+ "loss": 3.838881015777588,
+ "step": 1843
+ },
+ {
+ "epoch": 25.615115771079076,
+ "grad_norm": 0.19322903454303741,
+ "learning_rate": 0.0006,
+ "loss": 3.7870054244995117,
+ "step": 1844
+ },
+ {
+ "epoch": 25.629095674967235,
+ "grad_norm": 0.2074001580476761,
+ "learning_rate": 0.0006,
+ "loss": 3.8239974975585938,
+ "step": 1845
+ },
+ {
+ "epoch": 25.643075578855395,
+ "grad_norm": 0.2166101336479187,
+ "learning_rate": 0.0006,
+ "loss": 3.8290855884552,
+ "step": 1846
+ },
+ {
+ "epoch": 25.657055482743555,
+ "grad_norm": 0.23738539218902588,
+ "learning_rate": 0.0006,
+ "loss": 3.7993364334106445,
+ "step": 1847
+ },
+ {
+ "epoch": 25.67103538663172,
+ "grad_norm": 0.23882314562797546,
+ "learning_rate": 0.0006,
+ "loss": 3.802586078643799,
+ "step": 1848
+ },
+ {
+ "epoch": 25.68501529051988,
+ "grad_norm": 0.24168142676353455,
+ "learning_rate": 0.0006,
+ "loss": 3.8303489685058594,
+ "step": 1849
+ },
+ {
+ "epoch": 25.698995194408038,
+ "grad_norm": 0.22423343360424042,
+ "learning_rate": 0.0006,
+ "loss": 3.836228370666504,
+ "step": 1850
+ },
+ {
+ "epoch": 25.712975098296198,
+ "grad_norm": 0.23816974461078644,
+ "learning_rate": 0.0006,
+ "loss": 3.8380274772644043,
+ "step": 1851
+ },
+ {
+ "epoch": 25.72695500218436,
+ "grad_norm": 0.22465108335018158,
+ "learning_rate": 0.0006,
+ "loss": 3.8496339321136475,
+ "step": 1852
+ },
+ {
+ "epoch": 25.74093490607252,
+ "grad_norm": 0.20792442560195923,
+ "learning_rate": 0.0006,
+ "loss": 3.797853946685791,
+ "step": 1853
+ },
+ {
+ "epoch": 25.75491480996068,
+ "grad_norm": 0.20770230889320374,
+ "learning_rate": 0.0006,
+ "loss": 3.842322826385498,
+ "step": 1854
+ },
+ {
+ "epoch": 25.76889471384884,
+ "grad_norm": 0.1928192526102066,
+ "learning_rate": 0.0006,
+ "loss": 3.836540699005127,
+ "step": 1855
+ },
+ {
+ "epoch": 25.782874617737004,
+ "grad_norm": 0.19045178592205048,
+ "learning_rate": 0.0006,
+ "loss": 3.7758889198303223,
+ "step": 1856
+ },
+ {
+ "epoch": 25.796854521625164,
+ "grad_norm": 0.205548495054245,
+ "learning_rate": 0.0006,
+ "loss": 3.8244709968566895,
+ "step": 1857
+ },
+ {
+ "epoch": 25.810834425513324,
+ "grad_norm": 0.20968270301818848,
+ "learning_rate": 0.0006,
+ "loss": 3.8376216888427734,
+ "step": 1858
+ },
+ {
+ "epoch": 25.824814329401484,
+ "grad_norm": 0.18917354941368103,
+ "learning_rate": 0.0006,
+ "loss": 3.8497915267944336,
+ "step": 1859
+ },
+ {
+ "epoch": 25.838794233289647,
+ "grad_norm": 0.2050701528787613,
+ "learning_rate": 0.0006,
+ "loss": 3.819628953933716,
+ "step": 1860
+ },
+ {
+ "epoch": 25.852774137177807,
+ "grad_norm": 0.1981319785118103,
+ "learning_rate": 0.0006,
+ "loss": 3.8007922172546387,
+ "step": 1861
+ },
+ {
+ "epoch": 25.866754041065967,
+ "grad_norm": 0.19055861234664917,
+ "learning_rate": 0.0006,
+ "loss": 3.8304519653320312,
+ "step": 1862
+ },
+ {
+ "epoch": 25.88073394495413,
+ "grad_norm": 0.19255517423152924,
+ "learning_rate": 0.0006,
+ "loss": 3.833280563354492,
+ "step": 1863
+ },
+ {
+ "epoch": 25.89471384884229,
+ "grad_norm": 0.19059430062770844,
+ "learning_rate": 0.0006,
+ "loss": 3.813796281814575,
+ "step": 1864
+ },
+ {
+ "epoch": 25.90869375273045,
+ "grad_norm": 0.18581309914588928,
+ "learning_rate": 0.0006,
+ "loss": 3.8211798667907715,
+ "step": 1865
+ },
+ {
+ "epoch": 25.92267365661861,
+ "grad_norm": 0.20181003212928772,
+ "learning_rate": 0.0006,
+ "loss": 3.8380484580993652,
+ "step": 1866
+ },
+ {
+ "epoch": 25.936653560506773,
+ "grad_norm": 0.22334498167037964,
+ "learning_rate": 0.0006,
+ "loss": 3.8294434547424316,
+ "step": 1867
+ },
+ {
+ "epoch": 25.950633464394933,
+ "grad_norm": 0.20456703007221222,
+ "learning_rate": 0.0006,
+ "loss": 3.819223642349243,
+ "step": 1868
+ },
+ {
+ "epoch": 25.964613368283093,
+ "grad_norm": 0.1885606348514557,
+ "learning_rate": 0.0006,
+ "loss": 3.8110103607177734,
+ "step": 1869
+ },
+ {
+ "epoch": 25.978593272171253,
+ "grad_norm": 0.18862110376358032,
+ "learning_rate": 0.0006,
+ "loss": 3.788691997528076,
+ "step": 1870
+ },
+ {
+ "epoch": 25.992573176059416,
+ "grad_norm": 0.19802744686603546,
+ "learning_rate": 0.0006,
+ "loss": 3.8423619270324707,
+ "step": 1871
+ },
+ {
+ "epoch": 26.0,
+ "grad_norm": 0.23762032389640808,
+ "learning_rate": 0.0006,
+ "loss": 3.7848567962646484,
+ "step": 1872
+ },
+ {
+ "epoch": 26.0,
+ "eval_loss": 4.054965019226074,
+ "eval_runtime": 44.2423,
+ "eval_samples_per_second": 55.196,
+ "eval_steps_per_second": 3.458,
+ "step": 1872
+ },
+ {
+ "epoch": 26.01397990388816,
+ "grad_norm": 0.21533054113388062,
+ "learning_rate": 0.0006,
+ "loss": 3.8123154640197754,
+ "step": 1873
+ },
+ {
+ "epoch": 26.027959807776323,
+ "grad_norm": 0.25094854831695557,
+ "learning_rate": 0.0006,
+ "loss": 3.7847447395324707,
+ "step": 1874
+ },
+ {
+ "epoch": 26.041939711664483,
+ "grad_norm": 0.24042077362537384,
+ "learning_rate": 0.0006,
+ "loss": 3.8033599853515625,
+ "step": 1875
+ },
+ {
+ "epoch": 26.055919615552643,
+ "grad_norm": 0.2425149381160736,
+ "learning_rate": 0.0006,
+ "loss": 3.7828550338745117,
+ "step": 1876
+ },
+ {
+ "epoch": 26.069899519440803,
+ "grad_norm": 0.2300514280796051,
+ "learning_rate": 0.0006,
+ "loss": 3.750882148742676,
+ "step": 1877
+ },
+ {
+ "epoch": 26.083879423328966,
+ "grad_norm": 0.2513943612575531,
+ "learning_rate": 0.0006,
+ "loss": 3.800323963165283,
+ "step": 1878
+ },
+ {
+ "epoch": 26.097859327217126,
+ "grad_norm": 0.2536966800689697,
+ "learning_rate": 0.0006,
+ "loss": 3.8198962211608887,
+ "step": 1879
+ },
+ {
+ "epoch": 26.111839231105286,
+ "grad_norm": 0.24483931064605713,
+ "learning_rate": 0.0006,
+ "loss": 3.825563907623291,
+ "step": 1880
+ },
+ {
+ "epoch": 26.125819134993446,
+ "grad_norm": 0.2502584755420685,
+ "learning_rate": 0.0006,
+ "loss": 3.78756046295166,
+ "step": 1881
+ },
+ {
+ "epoch": 26.13979903888161,
+ "grad_norm": 0.2695745527744293,
+ "learning_rate": 0.0006,
+ "loss": 3.8205409049987793,
+ "step": 1882
+ },
+ {
+ "epoch": 26.15377894276977,
+ "grad_norm": 0.2873472273349762,
+ "learning_rate": 0.0006,
+ "loss": 3.7880778312683105,
+ "step": 1883
+ },
+ {
+ "epoch": 26.16775884665793,
+ "grad_norm": 0.28609949350357056,
+ "learning_rate": 0.0006,
+ "loss": 3.788517951965332,
+ "step": 1884
+ },
+ {
+ "epoch": 26.18173875054609,
+ "grad_norm": 0.28352269530296326,
+ "learning_rate": 0.0006,
+ "loss": 3.778015613555908,
+ "step": 1885
+ },
+ {
+ "epoch": 26.195718654434252,
+ "grad_norm": 0.27055084705352783,
+ "learning_rate": 0.0006,
+ "loss": 3.7857203483581543,
+ "step": 1886
+ },
+ {
+ "epoch": 26.209698558322412,
+ "grad_norm": 0.255647748708725,
+ "learning_rate": 0.0006,
+ "loss": 3.791355609893799,
+ "step": 1887
+ },
+ {
+ "epoch": 26.22367846221057,
+ "grad_norm": 0.22624439001083374,
+ "learning_rate": 0.0006,
+ "loss": 3.7624831199645996,
+ "step": 1888
+ },
+ {
+ "epoch": 26.23765836609873,
+ "grad_norm": 0.2283596396446228,
+ "learning_rate": 0.0006,
+ "loss": 3.8052897453308105,
+ "step": 1889
+ },
+ {
+ "epoch": 26.251638269986895,
+ "grad_norm": 0.2336510866880417,
+ "learning_rate": 0.0006,
+ "loss": 3.789015054702759,
+ "step": 1890
+ },
+ {
+ "epoch": 26.265618173875055,
+ "grad_norm": 0.24107608199119568,
+ "learning_rate": 0.0006,
+ "loss": 3.756551742553711,
+ "step": 1891
+ },
+ {
+ "epoch": 26.279598077763215,
+ "grad_norm": 0.22438564896583557,
+ "learning_rate": 0.0006,
+ "loss": 3.797952651977539,
+ "step": 1892
+ },
+ {
+ "epoch": 26.293577981651374,
+ "grad_norm": 0.24594341218471527,
+ "learning_rate": 0.0006,
+ "loss": 3.7925708293914795,
+ "step": 1893
+ },
+ {
+ "epoch": 26.307557885539538,
+ "grad_norm": 0.23314352333545685,
+ "learning_rate": 0.0006,
+ "loss": 3.792447328567505,
+ "step": 1894
+ },
+ {
+ "epoch": 26.321537789427698,
+ "grad_norm": 0.20870383083820343,
+ "learning_rate": 0.0006,
+ "loss": 3.7888340950012207,
+ "step": 1895
+ },
+ {
+ "epoch": 26.335517693315857,
+ "grad_norm": 0.206504687666893,
+ "learning_rate": 0.0006,
+ "loss": 3.7856602668762207,
+ "step": 1896
+ },
+ {
+ "epoch": 26.34949759720402,
+ "grad_norm": 0.20193266868591309,
+ "learning_rate": 0.0006,
+ "loss": 3.810800552368164,
+ "step": 1897
+ },
+ {
+ "epoch": 26.36347750109218,
+ "grad_norm": 0.2143869698047638,
+ "learning_rate": 0.0006,
+ "loss": 3.818742275238037,
+ "step": 1898
+ },
+ {
+ "epoch": 26.37745740498034,
+ "grad_norm": 0.21388593316078186,
+ "learning_rate": 0.0006,
+ "loss": 3.7576632499694824,
+ "step": 1899
+ },
+ {
+ "epoch": 26.3914373088685,
+ "grad_norm": 0.1933414787054062,
+ "learning_rate": 0.0006,
+ "loss": 3.802579879760742,
+ "step": 1900
+ },
+ {
+ "epoch": 26.405417212756664,
+ "grad_norm": 0.18144549429416656,
+ "learning_rate": 0.0006,
+ "loss": 3.7830452919006348,
+ "step": 1901
+ },
+ {
+ "epoch": 26.419397116644824,
+ "grad_norm": 0.20027601718902588,
+ "learning_rate": 0.0006,
+ "loss": 3.8112521171569824,
+ "step": 1902
+ },
+ {
+ "epoch": 26.433377020532983,
+ "grad_norm": 0.19402910768985748,
+ "learning_rate": 0.0006,
+ "loss": 3.778012990951538,
+ "step": 1903
+ },
+ {
+ "epoch": 26.447356924421143,
+ "grad_norm": 0.19020743668079376,
+ "learning_rate": 0.0006,
+ "loss": 3.823355197906494,
+ "step": 1904
+ },
+ {
+ "epoch": 26.461336828309307,
+ "grad_norm": 0.1885242760181427,
+ "learning_rate": 0.0006,
+ "loss": 3.782108783721924,
+ "step": 1905
+ },
+ {
+ "epoch": 26.475316732197467,
+ "grad_norm": 0.2024235874414444,
+ "learning_rate": 0.0006,
+ "loss": 3.810448408126831,
+ "step": 1906
+ },
+ {
+ "epoch": 26.489296636085626,
+ "grad_norm": 0.21408027410507202,
+ "learning_rate": 0.0006,
+ "loss": 3.8185606002807617,
+ "step": 1907
+ },
+ {
+ "epoch": 26.503276539973786,
+ "grad_norm": 0.22810906171798706,
+ "learning_rate": 0.0006,
+ "loss": 3.8052706718444824,
+ "step": 1908
+ },
+ {
+ "epoch": 26.51725644386195,
+ "grad_norm": 0.21328197419643402,
+ "learning_rate": 0.0006,
+ "loss": 3.7858219146728516,
+ "step": 1909
+ },
+ {
+ "epoch": 26.53123634775011,
+ "grad_norm": 0.20843173563480377,
+ "learning_rate": 0.0006,
+ "loss": 3.8069310188293457,
+ "step": 1910
+ },
+ {
+ "epoch": 26.54521625163827,
+ "grad_norm": 0.2072986662387848,
+ "learning_rate": 0.0006,
+ "loss": 3.794975996017456,
+ "step": 1911
+ },
+ {
+ "epoch": 26.55919615552643,
+ "grad_norm": 0.2203216850757599,
+ "learning_rate": 0.0006,
+ "loss": 3.8070101737976074,
+ "step": 1912
+ },
+ {
+ "epoch": 26.573176059414592,
+ "grad_norm": 0.23449191451072693,
+ "learning_rate": 0.0006,
+ "loss": 3.828695774078369,
+ "step": 1913
+ },
+ {
+ "epoch": 26.587155963302752,
+ "grad_norm": 0.2222008854150772,
+ "learning_rate": 0.0006,
+ "loss": 3.781275749206543,
+ "step": 1914
+ },
+ {
+ "epoch": 26.601135867190912,
+ "grad_norm": 0.22328314185142517,
+ "learning_rate": 0.0006,
+ "loss": 3.7953736782073975,
+ "step": 1915
+ },
+ {
+ "epoch": 26.615115771079076,
+ "grad_norm": 0.2377961128950119,
+ "learning_rate": 0.0006,
+ "loss": 3.8428916931152344,
+ "step": 1916
+ },
+ {
+ "epoch": 26.629095674967235,
+ "grad_norm": 0.2546147108078003,
+ "learning_rate": 0.0006,
+ "loss": 3.7940590381622314,
+ "step": 1917
+ },
+ {
+ "epoch": 26.643075578855395,
+ "grad_norm": 0.24234509468078613,
+ "learning_rate": 0.0006,
+ "loss": 3.802234172821045,
+ "step": 1918
+ },
+ {
+ "epoch": 26.657055482743555,
+ "grad_norm": 0.21294651925563812,
+ "learning_rate": 0.0006,
+ "loss": 3.8159232139587402,
+ "step": 1919
+ },
+ {
+ "epoch": 26.67103538663172,
+ "grad_norm": 0.20008964836597443,
+ "learning_rate": 0.0006,
+ "loss": 3.796949863433838,
+ "step": 1920
+ },
+ {
+ "epoch": 26.68501529051988,
+ "grad_norm": 0.21031023561954498,
+ "learning_rate": 0.0006,
+ "loss": 3.8015570640563965,
+ "step": 1921
+ },
+ {
+ "epoch": 26.698995194408038,
+ "grad_norm": 0.2185603827238083,
+ "learning_rate": 0.0006,
+ "loss": 3.8022537231445312,
+ "step": 1922
+ },
+ {
+ "epoch": 26.712975098296198,
+ "grad_norm": 0.22957198321819305,
+ "learning_rate": 0.0006,
+ "loss": 3.7859907150268555,
+ "step": 1923
+ },
+ {
+ "epoch": 26.72695500218436,
+ "grad_norm": 0.23779156804084778,
+ "learning_rate": 0.0006,
+ "loss": 3.830345630645752,
+ "step": 1924
+ },
+ {
+ "epoch": 26.74093490607252,
+ "grad_norm": 0.23577193915843964,
+ "learning_rate": 0.0006,
+ "loss": 3.777338981628418,
+ "step": 1925
+ },
+ {
+ "epoch": 26.75491480996068,
+ "grad_norm": 0.2521933913230896,
+ "learning_rate": 0.0006,
+ "loss": 3.8215396404266357,
+ "step": 1926
+ },
+ {
+ "epoch": 26.76889471384884,
+ "grad_norm": 0.25050726532936096,
+ "learning_rate": 0.0006,
+ "loss": 3.817509651184082,
+ "step": 1927
+ },
+ {
+ "epoch": 26.782874617737004,
+ "grad_norm": 0.24442453682422638,
+ "learning_rate": 0.0006,
+ "loss": 3.8033013343811035,
+ "step": 1928
+ },
+ {
+ "epoch": 26.796854521625164,
+ "grad_norm": 0.2280828058719635,
+ "learning_rate": 0.0006,
+ "loss": 3.798625946044922,
+ "step": 1929
+ },
+ {
+ "epoch": 26.810834425513324,
+ "grad_norm": 0.23072117567062378,
+ "learning_rate": 0.0006,
+ "loss": 3.8109097480773926,
+ "step": 1930
+ },
+ {
+ "epoch": 26.824814329401484,
+ "grad_norm": 0.2690806984901428,
+ "learning_rate": 0.0006,
+ "loss": 3.7707223892211914,
+ "step": 1931
+ },
+ {
+ "epoch": 26.838794233289647,
+ "grad_norm": 0.24973517656326294,
+ "learning_rate": 0.0006,
+ "loss": 3.7788357734680176,
+ "step": 1932
+ },
+ {
+ "epoch": 26.852774137177807,
+ "grad_norm": 0.24221451580524445,
+ "learning_rate": 0.0006,
+ "loss": 3.8083114624023438,
+ "step": 1933
+ },
+ {
+ "epoch": 26.866754041065967,
+ "grad_norm": 0.23499037325382233,
+ "learning_rate": 0.0006,
+ "loss": 3.845512866973877,
+ "step": 1934
+ },
+ {
+ "epoch": 26.88073394495413,
+ "grad_norm": 0.2172643095254898,
+ "learning_rate": 0.0006,
+ "loss": 3.8171584606170654,
+ "step": 1935
+ },
+ {
+ "epoch": 26.89471384884229,
+ "grad_norm": 0.19935013353824615,
+ "learning_rate": 0.0006,
+ "loss": 3.808596611022949,
+ "step": 1936
+ },
+ {
+ "epoch": 26.90869375273045,
+ "grad_norm": 0.2077745944261551,
+ "learning_rate": 0.0006,
+ "loss": 3.842836856842041,
+ "step": 1937
+ },
+ {
+ "epoch": 26.92267365661861,
+ "grad_norm": 0.20017282664775848,
+ "learning_rate": 0.0006,
+ "loss": 3.791734457015991,
+ "step": 1938
+ },
+ {
+ "epoch": 26.936653560506773,
+ "grad_norm": 0.2082037627696991,
+ "learning_rate": 0.0006,
+ "loss": 3.7987842559814453,
+ "step": 1939
+ },
+ {
+ "epoch": 26.950633464394933,
+ "grad_norm": 0.21100632846355438,
+ "learning_rate": 0.0006,
+ "loss": 3.8033156394958496,
+ "step": 1940
+ },
+ {
+ "epoch": 26.964613368283093,
+ "grad_norm": 0.2091331034898758,
+ "learning_rate": 0.0006,
+ "loss": 3.8250908851623535,
+ "step": 1941
+ },
+ {
+ "epoch": 26.978593272171253,
+ "grad_norm": 0.19728544354438782,
+ "learning_rate": 0.0006,
+ "loss": 3.7934365272521973,
+ "step": 1942
+ },
+ {
+ "epoch": 26.992573176059416,
+ "grad_norm": 0.19266465306282043,
+ "learning_rate": 0.0006,
+ "loss": 3.8095879554748535,
+ "step": 1943
+ },
+ {
+ "epoch": 27.0,
+ "grad_norm": 0.2264554500579834,
+ "learning_rate": 0.0006,
+ "loss": 3.840135335922241,
+ "step": 1944
+ },
+ {
+ "epoch": 27.0,
+ "eval_loss": 4.046233654022217,
+ "eval_runtime": 44.0648,
+ "eval_samples_per_second": 55.418,
+ "eval_steps_per_second": 3.472,
+ "step": 1944
+ },
+ {
+ "epoch": 27.01397990388816,
+ "grad_norm": 0.24101831018924713,
+ "learning_rate": 0.0006,
+ "loss": 3.7463197708129883,
+ "step": 1945
+ },
+ {
+ "epoch": 27.027959807776323,
+ "grad_norm": 0.2917300760746002,
+ "learning_rate": 0.0006,
+ "loss": 3.769083261489868,
+ "step": 1946
+ },
+ {
+ "epoch": 27.041939711664483,
+ "grad_norm": 0.30864080786705017,
+ "learning_rate": 0.0006,
+ "loss": 3.7774248123168945,
+ "step": 1947
+ },
+ {
+ "epoch": 27.055919615552643,
+ "grad_norm": 0.28574317693710327,
+ "learning_rate": 0.0006,
+ "loss": 3.759530544281006,
+ "step": 1948
+ },
+ {
+ "epoch": 27.069899519440803,
+ "grad_norm": 0.23381628096103668,
+ "learning_rate": 0.0006,
+ "loss": 3.764347791671753,
+ "step": 1949
+ },
+ {
+ "epoch": 27.083879423328966,
+ "grad_norm": 0.2717961072921753,
+ "learning_rate": 0.0006,
+ "loss": 3.785306692123413,
+ "step": 1950
+ },
+ {
+ "epoch": 27.097859327217126,
+ "grad_norm": 0.2753375470638275,
+ "learning_rate": 0.0006,
+ "loss": 3.7511696815490723,
+ "step": 1951
+ },
+ {
+ "epoch": 27.111839231105286,
+ "grad_norm": 0.260250061750412,
+ "learning_rate": 0.0006,
+ "loss": 3.7775721549987793,
+ "step": 1952
+ },
+ {
+ "epoch": 27.125819134993446,
+ "grad_norm": 0.2462741732597351,
+ "learning_rate": 0.0006,
+ "loss": 3.775203227996826,
+ "step": 1953
+ },
+ {
+ "epoch": 27.13979903888161,
+ "grad_norm": 0.23599569499492645,
+ "learning_rate": 0.0006,
+ "loss": 3.7580947875976562,
+ "step": 1954
+ },
+ {
+ "epoch": 27.15377894276977,
+ "grad_norm": 0.21749968826770782,
+ "learning_rate": 0.0006,
+ "loss": 3.778254985809326,
+ "step": 1955
+ },
+ {
+ "epoch": 27.16775884665793,
+ "grad_norm": 0.22210343182086945,
+ "learning_rate": 0.0006,
+ "loss": 3.734727144241333,
+ "step": 1956
+ },
+ {
+ "epoch": 27.18173875054609,
+ "grad_norm": 0.23376141488552094,
+ "learning_rate": 0.0006,
+ "loss": 3.7892181873321533,
+ "step": 1957
+ },
+ {
+ "epoch": 27.195718654434252,
+ "grad_norm": 0.21751847863197327,
+ "learning_rate": 0.0006,
+ "loss": 3.801621913909912,
+ "step": 1958
+ },
+ {
+ "epoch": 27.209698558322412,
+ "grad_norm": 0.22995133697986603,
+ "learning_rate": 0.0006,
+ "loss": 3.8031363487243652,
+ "step": 1959
+ },
+ {
+ "epoch": 27.22367846221057,
+ "grad_norm": 0.22716350853443146,
+ "learning_rate": 0.0006,
+ "loss": 3.7591521739959717,
+ "step": 1960
+ },
+ {
+ "epoch": 27.23765836609873,
+ "grad_norm": 0.20819596946239471,
+ "learning_rate": 0.0006,
+ "loss": 3.7988929748535156,
+ "step": 1961
+ },
+ {
+ "epoch": 27.251638269986895,
+ "grad_norm": 0.19861504435539246,
+ "learning_rate": 0.0006,
+ "loss": 3.7752838134765625,
+ "step": 1962
+ },
+ {
+ "epoch": 27.265618173875055,
+ "grad_norm": 0.1959371268749237,
+ "learning_rate": 0.0006,
+ "loss": 3.7707290649414062,
+ "step": 1963
+ },
+ {
+ "epoch": 27.279598077763215,
+ "grad_norm": 0.18772225081920624,
+ "learning_rate": 0.0006,
+ "loss": 3.7714555263519287,
+ "step": 1964
+ },
+ {
+ "epoch": 27.293577981651374,
+ "grad_norm": 0.20839282870292664,
+ "learning_rate": 0.0006,
+ "loss": 3.7857258319854736,
+ "step": 1965
+ },
+ {
+ "epoch": 27.307557885539538,
+ "grad_norm": 0.22521957755088806,
+ "learning_rate": 0.0006,
+ "loss": 3.776909351348877,
+ "step": 1966
+ },
+ {
+ "epoch": 27.321537789427698,
+ "grad_norm": 0.19533076882362366,
+ "learning_rate": 0.0006,
+ "loss": 3.8152523040771484,
+ "step": 1967
+ },
+ {
+ "epoch": 27.335517693315857,
+ "grad_norm": 0.18678881227970123,
+ "learning_rate": 0.0006,
+ "loss": 3.751555919647217,
+ "step": 1968
+ },
+ {
+ "epoch": 27.34949759720402,
+ "grad_norm": 0.18257129192352295,
+ "learning_rate": 0.0006,
+ "loss": 3.7701754570007324,
+ "step": 1969
+ },
+ {
+ "epoch": 27.36347750109218,
+ "grad_norm": 0.18191468715667725,
+ "learning_rate": 0.0006,
+ "loss": 3.817451238632202,
+ "step": 1970
+ },
+ {
+ "epoch": 27.37745740498034,
+ "grad_norm": 0.18665607273578644,
+ "learning_rate": 0.0006,
+ "loss": 3.78645658493042,
+ "step": 1971
+ },
+ {
+ "epoch": 27.3914373088685,
+ "grad_norm": 0.19604510068893433,
+ "learning_rate": 0.0006,
+ "loss": 3.7735626697540283,
+ "step": 1972
+ },
+ {
+ "epoch": 27.405417212756664,
+ "grad_norm": 0.20136640965938568,
+ "learning_rate": 0.0006,
+ "loss": 3.77310848236084,
+ "step": 1973
+ },
+ {
+ "epoch": 27.419397116644824,
+ "grad_norm": 0.19314947724342346,
+ "learning_rate": 0.0006,
+ "loss": 3.8084068298339844,
+ "step": 1974
+ },
+ {
+ "epoch": 27.433377020532983,
+ "grad_norm": 0.20761604607105255,
+ "learning_rate": 0.0006,
+ "loss": 3.80732798576355,
+ "step": 1975
+ },
+ {
+ "epoch": 27.447356924421143,
+ "grad_norm": 0.2239987850189209,
+ "learning_rate": 0.0006,
+ "loss": 3.7950329780578613,
+ "step": 1976
+ },
+ {
+ "epoch": 27.461336828309307,
+ "grad_norm": 0.22146444022655487,
+ "learning_rate": 0.0006,
+ "loss": 3.7957234382629395,
+ "step": 1977
+ },
+ {
+ "epoch": 27.475316732197467,
+ "grad_norm": 0.23218585550785065,
+ "learning_rate": 0.0006,
+ "loss": 3.806377410888672,
+ "step": 1978
+ },
+ {
+ "epoch": 27.489296636085626,
+ "grad_norm": 0.23549026250839233,
+ "learning_rate": 0.0006,
+ "loss": 3.7833383083343506,
+ "step": 1979
+ },
+ {
+ "epoch": 27.503276539973786,
+ "grad_norm": 0.24219457805156708,
+ "learning_rate": 0.0006,
+ "loss": 3.8154187202453613,
+ "step": 1980
+ },
+ {
+ "epoch": 27.51725644386195,
+ "grad_norm": 0.23703953623771667,
+ "learning_rate": 0.0006,
+ "loss": 3.7846405506134033,
+ "step": 1981
+ },
+ {
+ "epoch": 27.53123634775011,
+ "grad_norm": 0.23596109449863434,
+ "learning_rate": 0.0006,
+ "loss": 3.7698163986206055,
+ "step": 1982
+ },
+ {
+ "epoch": 27.54521625163827,
+ "grad_norm": 0.23073506355285645,
+ "learning_rate": 0.0006,
+ "loss": 3.8114185333251953,
+ "step": 1983
+ },
+ {
+ "epoch": 27.55919615552643,
+ "grad_norm": 0.24761143326759338,
+ "learning_rate": 0.0006,
+ "loss": 3.7548117637634277,
+ "step": 1984
+ },
+ {
+ "epoch": 27.573176059414592,
+ "grad_norm": 0.2834068238735199,
+ "learning_rate": 0.0006,
+ "loss": 3.7990212440490723,
+ "step": 1985
+ },
+ {
+ "epoch": 27.587155963302752,
+ "grad_norm": 0.29774922132492065,
+ "learning_rate": 0.0006,
+ "loss": 3.7845072746276855,
+ "step": 1986
+ },
+ {
+ "epoch": 27.601135867190912,
+ "grad_norm": 0.2732089161872864,
+ "learning_rate": 0.0006,
+ "loss": 3.8050694465637207,
+ "step": 1987
+ },
+ {
+ "epoch": 27.615115771079076,
+ "grad_norm": 0.24433180689811707,
+ "learning_rate": 0.0006,
+ "loss": 3.762704372406006,
+ "step": 1988
+ },
+ {
+ "epoch": 27.629095674967235,
+ "grad_norm": 0.21340419352054596,
+ "learning_rate": 0.0006,
+ "loss": 3.826023817062378,
+ "step": 1989
+ },
+ {
+ "epoch": 27.643075578855395,
+ "grad_norm": 0.22518761456012726,
+ "learning_rate": 0.0006,
+ "loss": 3.7823970317840576,
+ "step": 1990
+ },
+ {
+ "epoch": 27.657055482743555,
+ "grad_norm": 0.2196940928697586,
+ "learning_rate": 0.0006,
+ "loss": 3.787463426589966,
+ "step": 1991
+ },
+ {
+ "epoch": 27.67103538663172,
+ "grad_norm": 0.21906471252441406,
+ "learning_rate": 0.0006,
+ "loss": 3.7856104373931885,
+ "step": 1992
+ },
+ {
+ "epoch": 27.68501529051988,
+ "grad_norm": 0.2280956357717514,
+ "learning_rate": 0.0006,
+ "loss": 3.7829794883728027,
+ "step": 1993
+ },
+ {
+ "epoch": 27.698995194408038,
+ "grad_norm": 0.22567005455493927,
+ "learning_rate": 0.0006,
+ "loss": 3.762316942214966,
+ "step": 1994
+ },
+ {
+ "epoch": 27.712975098296198,
+ "grad_norm": 0.21703341603279114,
+ "learning_rate": 0.0006,
+ "loss": 3.772535800933838,
+ "step": 1995
+ },
+ {
+ "epoch": 27.72695500218436,
+ "grad_norm": 0.20586732029914856,
+ "learning_rate": 0.0006,
+ "loss": 3.775930881500244,
+ "step": 1996
+ },
+ {
+ "epoch": 27.74093490607252,
+ "grad_norm": 0.2126319408416748,
+ "learning_rate": 0.0006,
+ "loss": 3.793353796005249,
+ "step": 1997
+ },
+ {
+ "epoch": 27.75491480996068,
+ "grad_norm": 0.19664280116558075,
+ "learning_rate": 0.0006,
+ "loss": 3.7721195220947266,
+ "step": 1998
+ },
+ {
+ "epoch": 27.76889471384884,
+ "grad_norm": 0.17695854604244232,
+ "learning_rate": 0.0006,
+ "loss": 3.7931227684020996,
+ "step": 1999
+ },
+ {
+ "epoch": 27.782874617737004,
+ "grad_norm": 0.1899620145559311,
+ "learning_rate": 0.0006,
+ "loss": 3.798692226409912,
+ "step": 2000
+ },
+ {
+ "epoch": 27.796854521625164,
+ "grad_norm": 0.20334762334823608,
+ "learning_rate": 0.0006,
+ "loss": 3.774670124053955,
+ "step": 2001
+ },
+ {
+ "epoch": 27.810834425513324,
+ "grad_norm": 0.21150588989257812,
+ "learning_rate": 0.0006,
+ "loss": 3.803859233856201,
+ "step": 2002
+ },
+ {
+ "epoch": 27.824814329401484,
+ "grad_norm": 0.20425523817539215,
+ "learning_rate": 0.0006,
+ "loss": 3.810410976409912,
+ "step": 2003
+ },
+ {
+ "epoch": 27.838794233289647,
+ "grad_norm": 0.20468413829803467,
+ "learning_rate": 0.0006,
+ "loss": 3.800917625427246,
+ "step": 2004
+ },
+ {
+ "epoch": 27.852774137177807,
+ "grad_norm": 0.2113286256790161,
+ "learning_rate": 0.0006,
+ "loss": 3.7581989765167236,
+ "step": 2005
+ },
+ {
+ "epoch": 27.866754041065967,
+ "grad_norm": 0.2098054736852646,
+ "learning_rate": 0.0006,
+ "loss": 3.7921502590179443,
+ "step": 2006
+ },
+ {
+ "epoch": 27.88073394495413,
+ "grad_norm": 0.21701586246490479,
+ "learning_rate": 0.0006,
+ "loss": 3.8166770935058594,
+ "step": 2007
+ },
+ {
+ "epoch": 27.89471384884229,
+ "grad_norm": 0.2086625099182129,
+ "learning_rate": 0.0006,
+ "loss": 3.7732229232788086,
+ "step": 2008
+ },
+ {
+ "epoch": 27.90869375273045,
+ "grad_norm": 0.2186812162399292,
+ "learning_rate": 0.0006,
+ "loss": 3.8067402839660645,
+ "step": 2009
+ },
+ {
+ "epoch": 27.92267365661861,
+ "grad_norm": 0.2168985903263092,
+ "learning_rate": 0.0006,
+ "loss": 3.798159122467041,
+ "step": 2010
+ },
+ {
+ "epoch": 27.936653560506773,
+ "grad_norm": 0.23713620007038116,
+ "learning_rate": 0.0006,
+ "loss": 3.7958693504333496,
+ "step": 2011
+ },
+ {
+ "epoch": 27.950633464394933,
+ "grad_norm": 0.23592841625213623,
+ "learning_rate": 0.0006,
+ "loss": 3.795126438140869,
+ "step": 2012
+ },
+ {
+ "epoch": 27.964613368283093,
+ "grad_norm": 0.22210197150707245,
+ "learning_rate": 0.0006,
+ "loss": 3.791013240814209,
+ "step": 2013
+ },
+ {
+ "epoch": 27.978593272171253,
+ "grad_norm": 0.23190008103847504,
+ "learning_rate": 0.0006,
+ "loss": 3.813408374786377,
+ "step": 2014
+ },
+ {
+ "epoch": 27.992573176059416,
+ "grad_norm": 0.22158131003379822,
+ "learning_rate": 0.0006,
+ "loss": 3.7975716590881348,
+ "step": 2015
+ },
+ {
+ "epoch": 28.0,
+ "grad_norm": 0.2300519198179245,
+ "learning_rate": 0.0006,
+ "loss": 3.776214838027954,
+ "step": 2016
+ },
+ {
+ "epoch": 28.0,
+ "eval_loss": 4.04406213760376,
+ "eval_runtime": 44.0285,
+ "eval_samples_per_second": 55.464,
+ "eval_steps_per_second": 3.475,
+ "step": 2016
+ },
+ {
+ "epoch": 28.01397990388816,
+ "grad_norm": 0.21007688343524933,
+ "learning_rate": 0.0006,
+ "loss": 3.7366907596588135,
+ "step": 2017
+ },
+ {
+ "epoch": 28.027959807776323,
+ "grad_norm": 0.1941644549369812,
+ "learning_rate": 0.0006,
+ "loss": 3.744373321533203,
+ "step": 2018
+ },
+ {
+ "epoch": 28.041939711664483,
+ "grad_norm": 0.21308493614196777,
+ "learning_rate": 0.0006,
+ "loss": 3.7650012969970703,
+ "step": 2019
+ },
+ {
+ "epoch": 28.055919615552643,
+ "grad_norm": 0.20114868879318237,
+ "learning_rate": 0.0006,
+ "loss": 3.7652382850646973,
+ "step": 2020
+ },
+ {
+ "epoch": 28.069899519440803,
+ "grad_norm": 0.20266319811344147,
+ "learning_rate": 0.0006,
+ "loss": 3.7710442543029785,
+ "step": 2021
+ },
+ {
+ "epoch": 28.083879423328966,
+ "grad_norm": 0.205102801322937,
+ "learning_rate": 0.0006,
+ "loss": 3.7515463829040527,
+ "step": 2022
+ },
+ {
+ "epoch": 28.097859327217126,
+ "grad_norm": 0.22002041339874268,
+ "learning_rate": 0.0006,
+ "loss": 3.762019157409668,
+ "step": 2023
+ },
+ {
+ "epoch": 28.111839231105286,
+ "grad_norm": 0.2063235342502594,
+ "learning_rate": 0.0006,
+ "loss": 3.765453338623047,
+ "step": 2024
+ },
+ {
+ "epoch": 28.125819134993446,
+ "grad_norm": 0.19145619869232178,
+ "learning_rate": 0.0006,
+ "loss": 3.769411325454712,
+ "step": 2025
+ },
+ {
+ "epoch": 28.13979903888161,
+ "grad_norm": 0.19308455288410187,
+ "learning_rate": 0.0006,
+ "loss": 3.8009989261627197,
+ "step": 2026
+ },
+ {
+ "epoch": 28.15377894276977,
+ "grad_norm": 0.220510333776474,
+ "learning_rate": 0.0006,
+ "loss": 3.7582602500915527,
+ "step": 2027
+ },
+ {
+ "epoch": 28.16775884665793,
+ "grad_norm": 0.22855883836746216,
+ "learning_rate": 0.0006,
+ "loss": 3.803917407989502,
+ "step": 2028
+ },
+ {
+ "epoch": 28.18173875054609,
+ "grad_norm": 0.24206340312957764,
+ "learning_rate": 0.0006,
+ "loss": 3.764101028442383,
+ "step": 2029
+ },
+ {
+ "epoch": 28.195718654434252,
+ "grad_norm": 0.23973612487316132,
+ "learning_rate": 0.0006,
+ "loss": 3.787308931350708,
+ "step": 2030
+ },
+ {
+ "epoch": 28.209698558322412,
+ "grad_norm": 0.21400697529315948,
+ "learning_rate": 0.0006,
+ "loss": 3.7706117630004883,
+ "step": 2031
+ },
+ {
+ "epoch": 28.22367846221057,
+ "grad_norm": 0.21983976662158966,
+ "learning_rate": 0.0006,
+ "loss": 3.772731304168701,
+ "step": 2032
+ },
+ {
+ "epoch": 28.23765836609873,
+ "grad_norm": 0.22427113354206085,
+ "learning_rate": 0.0006,
+ "loss": 3.7724413871765137,
+ "step": 2033
+ },
+ {
+ "epoch": 28.251638269986895,
+ "grad_norm": 0.23665079474449158,
+ "learning_rate": 0.0006,
+ "loss": 3.769845962524414,
+ "step": 2034
+ },
+ {
+ "epoch": 28.265618173875055,
+ "grad_norm": 0.22663180530071259,
+ "learning_rate": 0.0006,
+ "loss": 3.764380931854248,
+ "step": 2035
+ },
+ {
+ "epoch": 28.279598077763215,
+ "grad_norm": 0.21094927191734314,
+ "learning_rate": 0.0006,
+ "loss": 3.7598326206207275,
+ "step": 2036
+ },
+ {
+ "epoch": 28.293577981651374,
+ "grad_norm": 0.20419518649578094,
+ "learning_rate": 0.0006,
+ "loss": 3.7737207412719727,
+ "step": 2037
+ },
+ {
+ "epoch": 28.307557885539538,
+ "grad_norm": 0.2171909660100937,
+ "learning_rate": 0.0006,
+ "loss": 3.7499468326568604,
+ "step": 2038
+ },
+ {
+ "epoch": 28.321537789427698,
+ "grad_norm": 0.22749298810958862,
+ "learning_rate": 0.0006,
+ "loss": 3.767536163330078,
+ "step": 2039
+ },
+ {
+ "epoch": 28.335517693315857,
+ "grad_norm": 0.22821909189224243,
+ "learning_rate": 0.0006,
+ "loss": 3.744386672973633,
+ "step": 2040
+ },
+ {
+ "epoch": 28.34949759720402,
+ "grad_norm": 0.2227880209684372,
+ "learning_rate": 0.0006,
+ "loss": 3.72955322265625,
+ "step": 2041
+ },
+ {
+ "epoch": 28.36347750109218,
+ "grad_norm": 0.22204327583312988,
+ "learning_rate": 0.0006,
+ "loss": 3.793854236602783,
+ "step": 2042
+ },
+ {
+ "epoch": 28.37745740498034,
+ "grad_norm": 0.21621409058570862,
+ "learning_rate": 0.0006,
+ "loss": 3.775379180908203,
+ "step": 2043
+ },
+ {
+ "epoch": 28.3914373088685,
+ "grad_norm": 0.2439221441745758,
+ "learning_rate": 0.0006,
+ "loss": 3.727464199066162,
+ "step": 2044
+ },
+ {
+ "epoch": 28.405417212756664,
+ "grad_norm": 0.24408605694770813,
+ "learning_rate": 0.0006,
+ "loss": 3.761747360229492,
+ "step": 2045
+ },
+ {
+ "epoch": 28.419397116644824,
+ "grad_norm": 0.26118648052215576,
+ "learning_rate": 0.0006,
+ "loss": 3.7587313652038574,
+ "step": 2046
+ },
+ {
+ "epoch": 28.433377020532983,
+ "grad_norm": 0.25948166847229004,
+ "learning_rate": 0.0006,
+ "loss": 3.7698440551757812,
+ "step": 2047
+ },
+ {
+ "epoch": 28.447356924421143,
+ "grad_norm": 0.26413780450820923,
+ "learning_rate": 0.0006,
+ "loss": 3.799107551574707,
+ "step": 2048
+ },
+ {
+ "epoch": 28.461336828309307,
+ "grad_norm": 0.2687148153781891,
+ "learning_rate": 0.0006,
+ "loss": 3.7564382553100586,
+ "step": 2049
+ },
+ {
+ "epoch": 28.475316732197467,
+ "grad_norm": 0.2676694691181183,
+ "learning_rate": 0.0006,
+ "loss": 3.754267692565918,
+ "step": 2050
+ },
+ {
+ "epoch": 28.489296636085626,
+ "grad_norm": 0.27275168895721436,
+ "learning_rate": 0.0006,
+ "loss": 3.802988052368164,
+ "step": 2051
+ },
+ {
+ "epoch": 28.503276539973786,
+ "grad_norm": 0.28783538937568665,
+ "learning_rate": 0.0006,
+ "loss": 3.762540817260742,
+ "step": 2052
+ },
+ {
+ "epoch": 28.51725644386195,
+ "grad_norm": 0.2628997266292572,
+ "learning_rate": 0.0006,
+ "loss": 3.7933349609375,
+ "step": 2053
+ },
+ {
+ "epoch": 28.53123634775011,
+ "grad_norm": 0.2498515099287033,
+ "learning_rate": 0.0006,
+ "loss": 3.7773094177246094,
+ "step": 2054
+ },
+ {
+ "epoch": 28.54521625163827,
+ "grad_norm": 0.22625942528247833,
+ "learning_rate": 0.0006,
+ "loss": 3.803457021713257,
+ "step": 2055
+ },
+ {
+ "epoch": 28.55919615552643,
+ "grad_norm": 0.21488751471042633,
+ "learning_rate": 0.0006,
+ "loss": 3.78924560546875,
+ "step": 2056
+ },
+ {
+ "epoch": 28.573176059414592,
+ "grad_norm": 0.22041267156600952,
+ "learning_rate": 0.0006,
+ "loss": 3.79361629486084,
+ "step": 2057
+ },
+ {
+ "epoch": 28.587155963302752,
+ "grad_norm": 0.23164816200733185,
+ "learning_rate": 0.0006,
+ "loss": 3.735037326812744,
+ "step": 2058
+ },
+ {
+ "epoch": 28.601135867190912,
+ "grad_norm": 0.22371916472911835,
+ "learning_rate": 0.0006,
+ "loss": 3.731417179107666,
+ "step": 2059
+ },
+ {
+ "epoch": 28.615115771079076,
+ "grad_norm": 0.2280314862728119,
+ "learning_rate": 0.0006,
+ "loss": 3.796154499053955,
+ "step": 2060
+ },
+ {
+ "epoch": 28.629095674967235,
+ "grad_norm": 0.21386604011058807,
+ "learning_rate": 0.0006,
+ "loss": 3.778648614883423,
+ "step": 2061
+ },
+ {
+ "epoch": 28.643075578855395,
+ "grad_norm": 0.20433050394058228,
+ "learning_rate": 0.0006,
+ "loss": 3.772826910018921,
+ "step": 2062
+ },
+ {
+ "epoch": 28.657055482743555,
+ "grad_norm": 0.2049262523651123,
+ "learning_rate": 0.0006,
+ "loss": 3.7410364151000977,
+ "step": 2063
+ },
+ {
+ "epoch": 28.67103538663172,
+ "grad_norm": 0.22041259706020355,
+ "learning_rate": 0.0006,
+ "loss": 3.796724319458008,
+ "step": 2064
+ },
+ {
+ "epoch": 28.68501529051988,
+ "grad_norm": 0.2018800675868988,
+ "learning_rate": 0.0006,
+ "loss": 3.775252342224121,
+ "step": 2065
+ },
+ {
+ "epoch": 28.698995194408038,
+ "grad_norm": 0.2159280925989151,
+ "learning_rate": 0.0006,
+ "loss": 3.766021251678467,
+ "step": 2066
+ },
+ {
+ "epoch": 28.712975098296198,
+ "grad_norm": 0.2072775512933731,
+ "learning_rate": 0.0006,
+ "loss": 3.765397548675537,
+ "step": 2067
+ },
+ {
+ "epoch": 28.72695500218436,
+ "grad_norm": 0.19592848420143127,
+ "learning_rate": 0.0006,
+ "loss": 3.8151614665985107,
+ "step": 2068
+ },
+ {
+ "epoch": 28.74093490607252,
+ "grad_norm": 0.19266322255134583,
+ "learning_rate": 0.0006,
+ "loss": 3.774945020675659,
+ "step": 2069
+ },
+ {
+ "epoch": 28.75491480996068,
+ "grad_norm": 0.19442392885684967,
+ "learning_rate": 0.0006,
+ "loss": 3.816283702850342,
+ "step": 2070
+ },
+ {
+ "epoch": 28.76889471384884,
+ "grad_norm": 0.19080746173858643,
+ "learning_rate": 0.0006,
+ "loss": 3.7784247398376465,
+ "step": 2071
+ },
+ {
+ "epoch": 28.782874617737004,
+ "grad_norm": 0.20150451362133026,
+ "learning_rate": 0.0006,
+ "loss": 3.7710249423980713,
+ "step": 2072
+ },
+ {
+ "epoch": 28.796854521625164,
+ "grad_norm": 0.1835816204547882,
+ "learning_rate": 0.0006,
+ "loss": 3.750032901763916,
+ "step": 2073
+ },
+ {
+ "epoch": 28.810834425513324,
+ "grad_norm": 0.1855502873659134,
+ "learning_rate": 0.0006,
+ "loss": 3.7276318073272705,
+ "step": 2074
+ },
+ {
+ "epoch": 28.824814329401484,
+ "grad_norm": 0.18683169782161713,
+ "learning_rate": 0.0006,
+ "loss": 3.7516555786132812,
+ "step": 2075
+ },
+ {
+ "epoch": 28.838794233289647,
+ "grad_norm": 0.2034577578306198,
+ "learning_rate": 0.0006,
+ "loss": 3.749875068664551,
+ "step": 2076
+ },
+ {
+ "epoch": 28.852774137177807,
+ "grad_norm": 0.2234230488538742,
+ "learning_rate": 0.0006,
+ "loss": 3.791429042816162,
+ "step": 2077
+ },
+ {
+ "epoch": 28.866754041065967,
+ "grad_norm": 0.25600525736808777,
+ "learning_rate": 0.0006,
+ "loss": 3.7769298553466797,
+ "step": 2078
+ },
+ {
+ "epoch": 28.88073394495413,
+ "grad_norm": 0.2741529643535614,
+ "learning_rate": 0.0006,
+ "loss": 3.771848201751709,
+ "step": 2079
+ },
+ {
+ "epoch": 28.89471384884229,
+ "grad_norm": 0.2710304260253906,
+ "learning_rate": 0.0006,
+ "loss": 3.8235626220703125,
+ "step": 2080
+ },
+ {
+ "epoch": 28.90869375273045,
+ "grad_norm": 0.25497519969940186,
+ "learning_rate": 0.0006,
+ "loss": 3.811288595199585,
+ "step": 2081
+ },
+ {
+ "epoch": 28.92267365661861,
+ "grad_norm": 0.25689464807510376,
+ "learning_rate": 0.0006,
+ "loss": 3.7848939895629883,
+ "step": 2082
+ },
+ {
+ "epoch": 28.936653560506773,
+ "grad_norm": 0.2794921398162842,
+ "learning_rate": 0.0006,
+ "loss": 3.7836732864379883,
+ "step": 2083
+ },
+ {
+ "epoch": 28.950633464394933,
+ "grad_norm": 0.24730202555656433,
+ "learning_rate": 0.0006,
+ "loss": 3.7703347206115723,
+ "step": 2084
+ },
+ {
+ "epoch": 28.964613368283093,
+ "grad_norm": 0.21078833937644958,
+ "learning_rate": 0.0006,
+ "loss": 3.7521653175354004,
+ "step": 2085
+ },
+ {
+ "epoch": 28.978593272171253,
+ "grad_norm": 0.2188870757818222,
+ "learning_rate": 0.0006,
+ "loss": 3.769604206085205,
+ "step": 2086
+ },
+ {
+ "epoch": 28.992573176059416,
+ "grad_norm": 0.20447929203510284,
+ "learning_rate": 0.0006,
+ "loss": 3.7842764854431152,
+ "step": 2087
+ },
+ {
+ "epoch": 29.0,
+ "grad_norm": 0.21607689559459686,
+ "learning_rate": 0.0006,
+ "loss": 3.7428855895996094,
+ "step": 2088
+ },
+ {
+ "epoch": 29.0,
+ "eval_loss": 4.0355753898620605,
+ "eval_runtime": 44.1435,
+ "eval_samples_per_second": 55.32,
+ "eval_steps_per_second": 3.466,
+ "step": 2088
+ },
+ {
+ "epoch": 29.01397990388816,
+ "grad_norm": 0.21270133554935455,
+ "learning_rate": 0.0006,
+ "loss": 3.7548413276672363,
+ "step": 2089
+ },
+ {
+ "epoch": 29.027959807776323,
+ "grad_norm": 0.21576301753520966,
+ "learning_rate": 0.0006,
+ "loss": 3.754613161087036,
+ "step": 2090
+ },
+ {
+ "epoch": 29.041939711664483,
+ "grad_norm": 0.2162923663854599,
+ "learning_rate": 0.0006,
+ "loss": 3.755772590637207,
+ "step": 2091
+ },
+ {
+ "epoch": 29.055919615552643,
+ "grad_norm": 0.22236663103103638,
+ "learning_rate": 0.0006,
+ "loss": 3.743497848510742,
+ "step": 2092
+ },
+ {
+ "epoch": 29.069899519440803,
+ "grad_norm": 0.2391042858362198,
+ "learning_rate": 0.0006,
+ "loss": 3.749204158782959,
+ "step": 2093
+ },
+ {
+ "epoch": 29.083879423328966,
+ "grad_norm": 0.23387965559959412,
+ "learning_rate": 0.0006,
+ "loss": 3.7286791801452637,
+ "step": 2094
+ },
+ {
+ "epoch": 29.097859327217126,
+ "grad_norm": 0.23677746951580048,
+ "learning_rate": 0.0006,
+ "loss": 3.755279541015625,
+ "step": 2095
+ },
+ {
+ "epoch": 29.111839231105286,
+ "grad_norm": 0.22771087288856506,
+ "learning_rate": 0.0006,
+ "loss": 3.722566604614258,
+ "step": 2096
+ },
+ {
+ "epoch": 29.125819134993446,
+ "grad_norm": 0.2132875621318817,
+ "learning_rate": 0.0006,
+ "loss": 3.748939037322998,
+ "step": 2097
+ },
+ {
+ "epoch": 29.13979903888161,
+ "grad_norm": 0.2033746838569641,
+ "learning_rate": 0.0006,
+ "loss": 3.7393670082092285,
+ "step": 2098
+ },
+ {
+ "epoch": 29.15377894276977,
+ "grad_norm": 0.1997237652540207,
+ "learning_rate": 0.0006,
+ "loss": 3.718498945236206,
+ "step": 2099
+ },
+ {
+ "epoch": 29.16775884665793,
+ "grad_norm": 0.19102543592453003,
+ "learning_rate": 0.0006,
+ "loss": 3.748950719833374,
+ "step": 2100
+ },
+ {
+ "epoch": 29.18173875054609,
+ "grad_norm": 0.19801580905914307,
+ "learning_rate": 0.0006,
+ "loss": 3.7123501300811768,
+ "step": 2101
+ },
+ {
+ "epoch": 29.195718654434252,
+ "grad_norm": 0.20186249911785126,
+ "learning_rate": 0.0006,
+ "loss": 3.7632713317871094,
+ "step": 2102
+ },
+ {
+ "epoch": 29.209698558322412,
+ "grad_norm": 0.22725415229797363,
+ "learning_rate": 0.0006,
+ "loss": 3.753506660461426,
+ "step": 2103
+ },
+ {
+ "epoch": 29.22367846221057,
+ "grad_norm": 0.23138119280338287,
+ "learning_rate": 0.0006,
+ "loss": 3.753282070159912,
+ "step": 2104
+ },
+ {
+ "epoch": 29.23765836609873,
+ "grad_norm": 0.23171944916248322,
+ "learning_rate": 0.0006,
+ "loss": 3.73783540725708,
+ "step": 2105
+ },
+ {
+ "epoch": 29.251638269986895,
+ "grad_norm": 0.2166522741317749,
+ "learning_rate": 0.0006,
+ "loss": 3.778803825378418,
+ "step": 2106
+ },
+ {
+ "epoch": 29.265618173875055,
+ "grad_norm": 0.2009056806564331,
+ "learning_rate": 0.0006,
+ "loss": 3.738290786743164,
+ "step": 2107
+ },
+ {
+ "epoch": 29.279598077763215,
+ "grad_norm": 0.19451597332954407,
+ "learning_rate": 0.0006,
+ "loss": 3.7553348541259766,
+ "step": 2108
+ },
+ {
+ "epoch": 29.293577981651374,
+ "grad_norm": 0.19246742129325867,
+ "learning_rate": 0.0006,
+ "loss": 3.7321622371673584,
+ "step": 2109
+ },
+ {
+ "epoch": 29.307557885539538,
+ "grad_norm": 0.18917441368103027,
+ "learning_rate": 0.0006,
+ "loss": 3.7408928871154785,
+ "step": 2110
+ },
+ {
+ "epoch": 29.321537789427698,
+ "grad_norm": 0.19067776203155518,
+ "learning_rate": 0.0006,
+ "loss": 3.780052900314331,
+ "step": 2111
+ },
+ {
+ "epoch": 29.335517693315857,
+ "grad_norm": 0.18849676847457886,
+ "learning_rate": 0.0006,
+ "loss": 3.749375820159912,
+ "step": 2112
+ },
+ {
+ "epoch": 29.34949759720402,
+ "grad_norm": 0.19713285565376282,
+ "learning_rate": 0.0006,
+ "loss": 3.7128982543945312,
+ "step": 2113
+ },
+ {
+ "epoch": 29.36347750109218,
+ "grad_norm": 0.196336030960083,
+ "learning_rate": 0.0006,
+ "loss": 3.7528390884399414,
+ "step": 2114
+ },
+ {
+ "epoch": 29.37745740498034,
+ "grad_norm": 0.19574350118637085,
+ "learning_rate": 0.0006,
+ "loss": 3.7105777263641357,
+ "step": 2115
+ },
+ {
+ "epoch": 29.3914373088685,
+ "grad_norm": 0.20396539568901062,
+ "learning_rate": 0.0006,
+ "loss": 3.782249927520752,
+ "step": 2116
+ },
+ {
+ "epoch": 29.405417212756664,
+ "grad_norm": 0.24702422320842743,
+ "learning_rate": 0.0006,
+ "loss": 3.7685647010803223,
+ "step": 2117
+ },
+ {
+ "epoch": 29.419397116644824,
+ "grad_norm": 0.2729755640029907,
+ "learning_rate": 0.0006,
+ "loss": 3.7731213569641113,
+ "step": 2118
+ },
+ {
+ "epoch": 29.433377020532983,
+ "grad_norm": 0.29240545630455017,
+ "learning_rate": 0.0006,
+ "loss": 3.770162343978882,
+ "step": 2119
+ },
+ {
+ "epoch": 29.447356924421143,
+ "grad_norm": 0.2469114065170288,
+ "learning_rate": 0.0006,
+ "loss": 3.764681339263916,
+ "step": 2120
+ },
+ {
+ "epoch": 29.461336828309307,
+ "grad_norm": 0.19837401807308197,
+ "learning_rate": 0.0006,
+ "loss": 3.7600088119506836,
+ "step": 2121
+ },
+ {
+ "epoch": 29.475316732197467,
+ "grad_norm": 0.21266621351242065,
+ "learning_rate": 0.0006,
+ "loss": 3.769454002380371,
+ "step": 2122
+ },
+ {
+ "epoch": 29.489296636085626,
+ "grad_norm": 0.25908344984054565,
+ "learning_rate": 0.0006,
+ "loss": 3.7230491638183594,
+ "step": 2123
+ },
+ {
+ "epoch": 29.503276539973786,
+ "grad_norm": 0.2914169728755951,
+ "learning_rate": 0.0006,
+ "loss": 3.767849922180176,
+ "step": 2124
+ },
+ {
+ "epoch": 29.51725644386195,
+ "grad_norm": 0.2796176075935364,
+ "learning_rate": 0.0006,
+ "loss": 3.741734266281128,
+ "step": 2125
+ },
+ {
+ "epoch": 29.53123634775011,
+ "grad_norm": 0.276309996843338,
+ "learning_rate": 0.0006,
+ "loss": 3.8001914024353027,
+ "step": 2126
+ },
+ {
+ "epoch": 29.54521625163827,
+ "grad_norm": 0.26512834429740906,
+ "learning_rate": 0.0006,
+ "loss": 3.7741384506225586,
+ "step": 2127
+ },
+ {
+ "epoch": 29.55919615552643,
+ "grad_norm": 0.26514101028442383,
+ "learning_rate": 0.0006,
+ "loss": 3.7466959953308105,
+ "step": 2128
+ },
+ {
+ "epoch": 29.573176059414592,
+ "grad_norm": 0.24121330678462982,
+ "learning_rate": 0.0006,
+ "loss": 3.759542465209961,
+ "step": 2129
+ },
+ {
+ "epoch": 29.587155963302752,
+ "grad_norm": 0.2264087200164795,
+ "learning_rate": 0.0006,
+ "loss": 3.791344165802002,
+ "step": 2130
+ },
+ {
+ "epoch": 29.601135867190912,
+ "grad_norm": 0.21915403008460999,
+ "learning_rate": 0.0006,
+ "loss": 3.7540485858917236,
+ "step": 2131
+ },
+ {
+ "epoch": 29.615115771079076,
+ "grad_norm": 0.20453961193561554,
+ "learning_rate": 0.0006,
+ "loss": 3.765617609024048,
+ "step": 2132
+ },
+ {
+ "epoch": 29.629095674967235,
+ "grad_norm": 0.2194051444530487,
+ "learning_rate": 0.0006,
+ "loss": 3.7664294242858887,
+ "step": 2133
+ },
+ {
+ "epoch": 29.643075578855395,
+ "grad_norm": 0.21926000714302063,
+ "learning_rate": 0.0006,
+ "loss": 3.7551684379577637,
+ "step": 2134
+ },
+ {
+ "epoch": 29.657055482743555,
+ "grad_norm": 0.20835602283477783,
+ "learning_rate": 0.0006,
+ "loss": 3.7654306888580322,
+ "step": 2135
+ },
+ {
+ "epoch": 29.67103538663172,
+ "grad_norm": 0.23094356060028076,
+ "learning_rate": 0.0006,
+ "loss": 3.7847180366516113,
+ "step": 2136
+ },
+ {
+ "epoch": 29.68501529051988,
+ "grad_norm": 0.23871271312236786,
+ "learning_rate": 0.0006,
+ "loss": 3.789036273956299,
+ "step": 2137
+ },
+ {
+ "epoch": 29.698995194408038,
+ "grad_norm": 0.22263272106647491,
+ "learning_rate": 0.0006,
+ "loss": 3.7677512168884277,
+ "step": 2138
+ },
+ {
+ "epoch": 29.712975098296198,
+ "grad_norm": 0.2293892651796341,
+ "learning_rate": 0.0006,
+ "loss": 3.777097225189209,
+ "step": 2139
+ },
+ {
+ "epoch": 29.72695500218436,
+ "grad_norm": 0.21068568527698517,
+ "learning_rate": 0.0006,
+ "loss": 3.785336494445801,
+ "step": 2140
+ },
+ {
+ "epoch": 29.74093490607252,
+ "grad_norm": 0.19600282609462738,
+ "learning_rate": 0.0006,
+ "loss": 3.7363505363464355,
+ "step": 2141
+ },
+ {
+ "epoch": 29.75491480996068,
+ "grad_norm": 0.20053936541080475,
+ "learning_rate": 0.0006,
+ "loss": 3.753859043121338,
+ "step": 2142
+ },
+ {
+ "epoch": 29.76889471384884,
+ "grad_norm": 0.22790539264678955,
+ "learning_rate": 0.0006,
+ "loss": 3.749492645263672,
+ "step": 2143
+ },
+ {
+ "epoch": 29.782874617737004,
+ "grad_norm": 0.26042407751083374,
+ "learning_rate": 0.0006,
+ "loss": 3.7905430793762207,
+ "step": 2144
+ },
+ {
+ "epoch": 29.796854521625164,
+ "grad_norm": 0.2753683626651764,
+ "learning_rate": 0.0006,
+ "loss": 3.756442070007324,
+ "step": 2145
+ },
+ {
+ "epoch": 29.810834425513324,
+ "grad_norm": 0.2795007526874542,
+ "learning_rate": 0.0006,
+ "loss": 3.7691903114318848,
+ "step": 2146
+ },
+ {
+ "epoch": 29.824814329401484,
+ "grad_norm": 0.2461438924074173,
+ "learning_rate": 0.0006,
+ "loss": 3.7573065757751465,
+ "step": 2147
+ },
+ {
+ "epoch": 29.838794233289647,
+ "grad_norm": 0.21051941812038422,
+ "learning_rate": 0.0006,
+ "loss": 3.7540078163146973,
+ "step": 2148
+ },
+ {
+ "epoch": 29.852774137177807,
+ "grad_norm": 0.197485089302063,
+ "learning_rate": 0.0006,
+ "loss": 3.734403133392334,
+ "step": 2149
+ },
+ {
+ "epoch": 29.866754041065967,
+ "grad_norm": 0.203064426779747,
+ "learning_rate": 0.0006,
+ "loss": 3.7888364791870117,
+ "step": 2150
+ },
+ {
+ "epoch": 29.88073394495413,
+ "grad_norm": 0.2000301480293274,
+ "learning_rate": 0.0006,
+ "loss": 3.7444958686828613,
+ "step": 2151
+ },
+ {
+ "epoch": 29.89471384884229,
+ "grad_norm": 0.20492053031921387,
+ "learning_rate": 0.0006,
+ "loss": 3.7878224849700928,
+ "step": 2152
+ },
+ {
+ "epoch": 29.90869375273045,
+ "grad_norm": 0.22565388679504395,
+ "learning_rate": 0.0006,
+ "loss": 3.7539188861846924,
+ "step": 2153
+ },
+ {
+ "epoch": 29.92267365661861,
+ "grad_norm": 0.20258226990699768,
+ "learning_rate": 0.0006,
+ "loss": 3.7491893768310547,
+ "step": 2154
+ },
+ {
+ "epoch": 29.936653560506773,
+ "grad_norm": 0.20028717815876007,
+ "learning_rate": 0.0006,
+ "loss": 3.7497997283935547,
+ "step": 2155
+ },
+ {
+ "epoch": 29.950633464394933,
+ "grad_norm": 0.2246360331773758,
+ "learning_rate": 0.0006,
+ "loss": 3.773930788040161,
+ "step": 2156
+ },
+ {
+ "epoch": 29.964613368283093,
+ "grad_norm": 0.22432482242584229,
+ "learning_rate": 0.0006,
+ "loss": 3.7926344871520996,
+ "step": 2157
+ },
+ {
+ "epoch": 29.978593272171253,
+ "grad_norm": 0.2165718674659729,
+ "learning_rate": 0.0006,
+ "loss": 3.7436647415161133,
+ "step": 2158
+ },
+ {
+ "epoch": 29.992573176059416,
+ "grad_norm": 0.20629167556762695,
+ "learning_rate": 0.0006,
+ "loss": 3.7619552612304688,
+ "step": 2159
+ },
+ {
+ "epoch": 30.0,
+ "grad_norm": 0.24264708161354065,
+ "learning_rate": 0.0006,
+ "loss": 3.772679328918457,
+ "step": 2160
+ },
+ {
+ "epoch": 30.0,
+ "eval_loss": 4.024484634399414,
+ "eval_runtime": 44.3611,
+ "eval_samples_per_second": 55.048,
+ "eval_steps_per_second": 3.449,
+ "step": 2160
+ },
+ {
+ "epoch": 30.01397990388816,
+ "grad_norm": 0.2373432070016861,
+ "learning_rate": 0.0006,
+ "loss": 3.7423200607299805,
+ "step": 2161
+ },
+ {
+ "epoch": 30.027959807776323,
+ "grad_norm": 0.26835134625434875,
+ "learning_rate": 0.0006,
+ "loss": 3.7215471267700195,
+ "step": 2162
+ },
+ {
+ "epoch": 30.041939711664483,
+ "grad_norm": 0.2743220329284668,
+ "learning_rate": 0.0006,
+ "loss": 3.7190256118774414,
+ "step": 2163
+ },
+ {
+ "epoch": 30.055919615552643,
+ "grad_norm": 0.2292490005493164,
+ "learning_rate": 0.0006,
+ "loss": 3.731855869293213,
+ "step": 2164
+ },
+ {
+ "epoch": 30.069899519440803,
+ "grad_norm": 0.22704607248306274,
+ "learning_rate": 0.0006,
+ "loss": 3.7649693489074707,
+ "step": 2165
+ },
+ {
+ "epoch": 30.083879423328966,
+ "grad_norm": 0.23255930840969086,
+ "learning_rate": 0.0006,
+ "loss": 3.7547781467437744,
+ "step": 2166
+ },
+ {
+ "epoch": 30.097859327217126,
+ "grad_norm": 0.2068684846162796,
+ "learning_rate": 0.0006,
+ "loss": 3.7343382835388184,
+ "step": 2167
+ },
+ {
+ "epoch": 30.111839231105286,
+ "grad_norm": 0.22523464262485504,
+ "learning_rate": 0.0006,
+ "loss": 3.7304530143737793,
+ "step": 2168
+ },
+ {
+ "epoch": 30.125819134993446,
+ "grad_norm": 0.24650199711322784,
+ "learning_rate": 0.0006,
+ "loss": 3.7414379119873047,
+ "step": 2169
+ },
+ {
+ "epoch": 30.13979903888161,
+ "grad_norm": 0.2392522394657135,
+ "learning_rate": 0.0006,
+ "loss": 3.754481792449951,
+ "step": 2170
+ },
+ {
+ "epoch": 30.15377894276977,
+ "grad_norm": 0.21174749732017517,
+ "learning_rate": 0.0006,
+ "loss": 3.7249929904937744,
+ "step": 2171
+ },
+ {
+ "epoch": 30.16775884665793,
+ "grad_norm": 0.20847836136817932,
+ "learning_rate": 0.0006,
+ "loss": 3.7146458625793457,
+ "step": 2172
+ },
+ {
+ "epoch": 30.18173875054609,
+ "grad_norm": 0.22131472826004028,
+ "learning_rate": 0.0006,
+ "loss": 3.7569539546966553,
+ "step": 2173
+ },
+ {
+ "epoch": 30.195718654434252,
+ "grad_norm": 0.23528096079826355,
+ "learning_rate": 0.0006,
+ "loss": 3.743435859680176,
+ "step": 2174
+ },
+ {
+ "epoch": 30.209698558322412,
+ "grad_norm": 0.2382429540157318,
+ "learning_rate": 0.0006,
+ "loss": 3.745307445526123,
+ "step": 2175
+ },
+ {
+ "epoch": 30.22367846221057,
+ "grad_norm": 0.2477114498615265,
+ "learning_rate": 0.0006,
+ "loss": 3.742305278778076,
+ "step": 2176
+ },
+ {
+ "epoch": 30.23765836609873,
+ "grad_norm": 0.24507801234722137,
+ "learning_rate": 0.0006,
+ "loss": 3.733564853668213,
+ "step": 2177
+ },
+ {
+ "epoch": 30.251638269986895,
+ "grad_norm": 0.2266329675912857,
+ "learning_rate": 0.0006,
+ "loss": 3.747429370880127,
+ "step": 2178
+ },
+ {
+ "epoch": 30.265618173875055,
+ "grad_norm": 0.22146396338939667,
+ "learning_rate": 0.0006,
+ "loss": 3.738630533218384,
+ "step": 2179
+ },
+ {
+ "epoch": 30.279598077763215,
+ "grad_norm": 0.20202279090881348,
+ "learning_rate": 0.0006,
+ "loss": 3.74582839012146,
+ "step": 2180
+ },
+ {
+ "epoch": 30.293577981651374,
+ "grad_norm": 0.20591886341571808,
+ "learning_rate": 0.0006,
+ "loss": 3.792062997817993,
+ "step": 2181
+ },
+ {
+ "epoch": 30.307557885539538,
+ "grad_norm": 0.21744129061698914,
+ "learning_rate": 0.0006,
+ "loss": 3.7389049530029297,
+ "step": 2182
+ },
+ {
+ "epoch": 30.321537789427698,
+ "grad_norm": 0.22641272842884064,
+ "learning_rate": 0.0006,
+ "loss": 3.756775140762329,
+ "step": 2183
+ },
+ {
+ "epoch": 30.335517693315857,
+ "grad_norm": 0.22433501482009888,
+ "learning_rate": 0.0006,
+ "loss": 3.764744758605957,
+ "step": 2184
+ },
+ {
+ "epoch": 30.34949759720402,
+ "grad_norm": 0.20184539258480072,
+ "learning_rate": 0.0006,
+ "loss": 3.747469902038574,
+ "step": 2185
+ },
+ {
+ "epoch": 30.36347750109218,
+ "grad_norm": 0.20864923298358917,
+ "learning_rate": 0.0006,
+ "loss": 3.7472925186157227,
+ "step": 2186
+ },
+ {
+ "epoch": 30.37745740498034,
+ "grad_norm": 0.22537396848201752,
+ "learning_rate": 0.0006,
+ "loss": 3.7194581031799316,
+ "step": 2187
+ },
+ {
+ "epoch": 30.3914373088685,
+ "grad_norm": 0.23159919679164886,
+ "learning_rate": 0.0006,
+ "loss": 3.7124292850494385,
+ "step": 2188
+ },
+ {
+ "epoch": 30.405417212756664,
+ "grad_norm": 0.24334494769573212,
+ "learning_rate": 0.0006,
+ "loss": 3.7769203186035156,
+ "step": 2189
+ },
+ {
+ "epoch": 30.419397116644824,
+ "grad_norm": 0.3031228482723236,
+ "learning_rate": 0.0006,
+ "loss": 3.762169361114502,
+ "step": 2190
+ },
+ {
+ "epoch": 30.433377020532983,
+ "grad_norm": 0.29114583134651184,
+ "learning_rate": 0.0006,
+ "loss": 3.76554799079895,
+ "step": 2191
+ },
+ {
+ "epoch": 30.447356924421143,
+ "grad_norm": 0.26824963092803955,
+ "learning_rate": 0.0006,
+ "loss": 3.732962131500244,
+ "step": 2192
+ },
+ {
+ "epoch": 30.461336828309307,
+ "grad_norm": 0.3026561141014099,
+ "learning_rate": 0.0006,
+ "loss": 3.7567975521087646,
+ "step": 2193
+ },
+ {
+ "epoch": 30.475316732197467,
+ "grad_norm": 0.27224525809288025,
+ "learning_rate": 0.0006,
+ "loss": 3.7856051921844482,
+ "step": 2194
+ },
+ {
+ "epoch": 30.489296636085626,
+ "grad_norm": 0.24295508861541748,
+ "learning_rate": 0.0006,
+ "loss": 3.7514901161193848,
+ "step": 2195
+ },
+ {
+ "epoch": 30.503276539973786,
+ "grad_norm": 0.24435290694236755,
+ "learning_rate": 0.0006,
+ "loss": 3.715973138809204,
+ "step": 2196
+ },
+ {
+ "epoch": 30.51725644386195,
+ "grad_norm": 0.2298959195613861,
+ "learning_rate": 0.0006,
+ "loss": 3.7960405349731445,
+ "step": 2197
+ },
+ {
+ "epoch": 30.53123634775011,
+ "grad_norm": 0.20313066244125366,
+ "learning_rate": 0.0006,
+ "loss": 3.7377915382385254,
+ "step": 2198
+ },
+ {
+ "epoch": 30.54521625163827,
+ "grad_norm": 0.2018895149230957,
+ "learning_rate": 0.0006,
+ "loss": 3.6980559825897217,
+ "step": 2199
+ },
+ {
+ "epoch": 30.55919615552643,
+ "grad_norm": 0.20048382878303528,
+ "learning_rate": 0.0006,
+ "loss": 3.7474141120910645,
+ "step": 2200
+ },
+ {
+ "epoch": 30.573176059414592,
+ "grad_norm": 0.19821316003799438,
+ "learning_rate": 0.0006,
+ "loss": 3.7668564319610596,
+ "step": 2201
+ },
+ {
+ "epoch": 30.587155963302752,
+ "grad_norm": 0.21467992663383484,
+ "learning_rate": 0.0006,
+ "loss": 3.7636144161224365,
+ "step": 2202
+ },
+ {
+ "epoch": 30.601135867190912,
+ "grad_norm": 0.20192000269889832,
+ "learning_rate": 0.0006,
+ "loss": 3.745736837387085,
+ "step": 2203
+ },
+ {
+ "epoch": 30.615115771079076,
+ "grad_norm": 0.2078823447227478,
+ "learning_rate": 0.0006,
+ "loss": 3.726665496826172,
+ "step": 2204
+ },
+ {
+ "epoch": 30.629095674967235,
+ "grad_norm": 0.22535845637321472,
+ "learning_rate": 0.0006,
+ "loss": 3.745058059692383,
+ "step": 2205
+ },
+ {
+ "epoch": 30.643075578855395,
+ "grad_norm": 0.22277814149856567,
+ "learning_rate": 0.0006,
+ "loss": 3.7488319873809814,
+ "step": 2206
+ },
+ {
+ "epoch": 30.657055482743555,
+ "grad_norm": 0.20940838754177094,
+ "learning_rate": 0.0006,
+ "loss": 3.7395732402801514,
+ "step": 2207
+ },
+ {
+ "epoch": 30.67103538663172,
+ "grad_norm": 0.21384629607200623,
+ "learning_rate": 0.0006,
+ "loss": 3.7275657653808594,
+ "step": 2208
+ },
+ {
+ "epoch": 30.68501529051988,
+ "grad_norm": 0.18796643614768982,
+ "learning_rate": 0.0006,
+ "loss": 3.743420124053955,
+ "step": 2209
+ },
+ {
+ "epoch": 30.698995194408038,
+ "grad_norm": 0.213258296251297,
+ "learning_rate": 0.0006,
+ "loss": 3.7227492332458496,
+ "step": 2210
+ },
+ {
+ "epoch": 30.712975098296198,
+ "grad_norm": 0.22714753448963165,
+ "learning_rate": 0.0006,
+ "loss": 3.7301113605499268,
+ "step": 2211
+ },
+ {
+ "epoch": 30.72695500218436,
+ "grad_norm": 0.21657656133174896,
+ "learning_rate": 0.0006,
+ "loss": 3.7336206436157227,
+ "step": 2212
+ },
+ {
+ "epoch": 30.74093490607252,
+ "grad_norm": 0.19550828635692596,
+ "learning_rate": 0.0006,
+ "loss": 3.7367351055145264,
+ "step": 2213
+ },
+ {
+ "epoch": 30.75491480996068,
+ "grad_norm": 0.17011769115924835,
+ "learning_rate": 0.0006,
+ "loss": 3.7401928901672363,
+ "step": 2214
+ },
+ {
+ "epoch": 30.76889471384884,
+ "grad_norm": 0.19110196828842163,
+ "learning_rate": 0.0006,
+ "loss": 3.7496562004089355,
+ "step": 2215
+ },
+ {
+ "epoch": 30.782874617737004,
+ "grad_norm": 0.20054543018341064,
+ "learning_rate": 0.0006,
+ "loss": 3.7532992362976074,
+ "step": 2216
+ },
+ {
+ "epoch": 30.796854521625164,
+ "grad_norm": 0.20667670667171478,
+ "learning_rate": 0.0006,
+ "loss": 3.746974468231201,
+ "step": 2217
+ },
+ {
+ "epoch": 30.810834425513324,
+ "grad_norm": 0.19850662350654602,
+ "learning_rate": 0.0006,
+ "loss": 3.7566256523132324,
+ "step": 2218
+ },
+ {
+ "epoch": 30.824814329401484,
+ "grad_norm": 0.19666457176208496,
+ "learning_rate": 0.0006,
+ "loss": 3.7356925010681152,
+ "step": 2219
+ },
+ {
+ "epoch": 30.838794233289647,
+ "grad_norm": 0.20022115111351013,
+ "learning_rate": 0.0006,
+ "loss": 3.768794536590576,
+ "step": 2220
+ },
+ {
+ "epoch": 30.852774137177807,
+ "grad_norm": 0.225278839468956,
+ "learning_rate": 0.0006,
+ "loss": 3.730262279510498,
+ "step": 2221
+ },
+ {
+ "epoch": 30.866754041065967,
+ "grad_norm": 0.2155608832836151,
+ "learning_rate": 0.0006,
+ "loss": 3.758157968521118,
+ "step": 2222
+ },
+ {
+ "epoch": 30.88073394495413,
+ "grad_norm": 0.20914921164512634,
+ "learning_rate": 0.0006,
+ "loss": 3.7290844917297363,
+ "step": 2223
+ },
+ {
+ "epoch": 30.89471384884229,
+ "grad_norm": 0.21579554677009583,
+ "learning_rate": 0.0006,
+ "loss": 3.7666125297546387,
+ "step": 2224
+ },
+ {
+ "epoch": 30.90869375273045,
+ "grad_norm": 0.22606384754180908,
+ "learning_rate": 0.0006,
+ "loss": 3.7396788597106934,
+ "step": 2225
+ },
+ {
+ "epoch": 30.92267365661861,
+ "grad_norm": 0.22218658030033112,
+ "learning_rate": 0.0006,
+ "loss": 3.7363057136535645,
+ "step": 2226
+ },
+ {
+ "epoch": 30.936653560506773,
+ "grad_norm": 0.2107125222682953,
+ "learning_rate": 0.0006,
+ "loss": 3.7402844429016113,
+ "step": 2227
+ },
+ {
+ "epoch": 30.950633464394933,
+ "grad_norm": 0.2143280804157257,
+ "learning_rate": 0.0006,
+ "loss": 3.7715706825256348,
+ "step": 2228
+ },
+ {
+ "epoch": 30.964613368283093,
+ "grad_norm": 0.20918118953704834,
+ "learning_rate": 0.0006,
+ "loss": 3.783510446548462,
+ "step": 2229
+ },
+ {
+ "epoch": 30.978593272171253,
+ "grad_norm": 0.2184133678674698,
+ "learning_rate": 0.0006,
+ "loss": 3.729846954345703,
+ "step": 2230
+ },
+ {
+ "epoch": 30.992573176059416,
+ "grad_norm": 0.20314796268939972,
+ "learning_rate": 0.0006,
+ "loss": 3.753312110900879,
+ "step": 2231
+ },
+ {
+ "epoch": 31.0,
+ "grad_norm": 0.21582408249378204,
+ "learning_rate": 0.0006,
+ "loss": 3.7653090953826904,
+ "step": 2232
+ },
+ {
+ "epoch": 31.0,
+ "eval_loss": 4.030437469482422,
+ "eval_runtime": 43.8529,
+ "eval_samples_per_second": 55.686,
+ "eval_steps_per_second": 3.489,
+ "step": 2232
+ },
+ {
+ "epoch": 31.01397990388816,
+ "grad_norm": 0.214233860373497,
+ "learning_rate": 0.0006,
+ "loss": 3.7179880142211914,
+ "step": 2233
+ },
+ {
+ "epoch": 31.027959807776323,
+ "grad_norm": 0.24621504545211792,
+ "learning_rate": 0.0006,
+ "loss": 3.712569236755371,
+ "step": 2234
+ },
+ {
+ "epoch": 31.041939711664483,
+ "grad_norm": 0.24189279973506927,
+ "learning_rate": 0.0006,
+ "loss": 3.7503058910369873,
+ "step": 2235
+ },
+ {
+ "epoch": 31.055919615552643,
+ "grad_norm": 0.22872278094291687,
+ "learning_rate": 0.0006,
+ "loss": 3.7386386394500732,
+ "step": 2236
+ },
+ {
+ "epoch": 31.069899519440803,
+ "grad_norm": 0.25036823749542236,
+ "learning_rate": 0.0006,
+ "loss": 3.710566997528076,
+ "step": 2237
+ },
+ {
+ "epoch": 31.083879423328966,
+ "grad_norm": 0.2506193220615387,
+ "learning_rate": 0.0006,
+ "loss": 3.7270963191986084,
+ "step": 2238
+ },
+ {
+ "epoch": 31.097859327217126,
+ "grad_norm": 0.24819663166999817,
+ "learning_rate": 0.0006,
+ "loss": 3.716430425643921,
+ "step": 2239
+ },
+ {
+ "epoch": 31.111839231105286,
+ "grad_norm": 0.27226534485816956,
+ "learning_rate": 0.0006,
+ "loss": 3.704428195953369,
+ "step": 2240
+ },
+ {
+ "epoch": 31.125819134993446,
+ "grad_norm": 0.27718204259872437,
+ "learning_rate": 0.0006,
+ "loss": 3.7309701442718506,
+ "step": 2241
+ },
+ {
+ "epoch": 31.13979903888161,
+ "grad_norm": 0.27272021770477295,
+ "learning_rate": 0.0006,
+ "loss": 3.7325143814086914,
+ "step": 2242
+ },
+ {
+ "epoch": 31.15377894276977,
+ "grad_norm": 0.2666020095348358,
+ "learning_rate": 0.0006,
+ "loss": 3.715268611907959,
+ "step": 2243
+ },
+ {
+ "epoch": 31.16775884665793,
+ "grad_norm": 0.258543461561203,
+ "learning_rate": 0.0006,
+ "loss": 3.7336134910583496,
+ "step": 2244
+ },
+ {
+ "epoch": 31.18173875054609,
+ "grad_norm": 0.2528740167617798,
+ "learning_rate": 0.0006,
+ "loss": 3.724491596221924,
+ "step": 2245
+ },
+ {
+ "epoch": 31.195718654434252,
+ "grad_norm": 0.2659667730331421,
+ "learning_rate": 0.0006,
+ "loss": 3.7144742012023926,
+ "step": 2246
+ },
+ {
+ "epoch": 31.209698558322412,
+ "grad_norm": 0.26563164591789246,
+ "learning_rate": 0.0006,
+ "loss": 3.741182327270508,
+ "step": 2247
+ },
+ {
+ "epoch": 31.22367846221057,
+ "grad_norm": 0.26326918601989746,
+ "learning_rate": 0.0006,
+ "loss": 3.7306275367736816,
+ "step": 2248
+ },
+ {
+ "epoch": 31.23765836609873,
+ "grad_norm": 0.23020948469638824,
+ "learning_rate": 0.0006,
+ "loss": 3.7212486267089844,
+ "step": 2249
+ },
+ {
+ "epoch": 31.251638269986895,
+ "grad_norm": 0.21207433938980103,
+ "learning_rate": 0.0006,
+ "loss": 3.6914258003234863,
+ "step": 2250
+ },
+ {
+ "epoch": 31.265618173875055,
+ "grad_norm": 0.2392292022705078,
+ "learning_rate": 0.0006,
+ "loss": 3.7117457389831543,
+ "step": 2251
+ },
+ {
+ "epoch": 31.279598077763215,
+ "grad_norm": 0.22084997594356537,
+ "learning_rate": 0.0006,
+ "loss": 3.728043794631958,
+ "step": 2252
+ },
+ {
+ "epoch": 31.293577981651374,
+ "grad_norm": 0.20818188786506653,
+ "learning_rate": 0.0006,
+ "loss": 3.751762866973877,
+ "step": 2253
+ },
+ {
+ "epoch": 31.307557885539538,
+ "grad_norm": 0.21866194903850555,
+ "learning_rate": 0.0006,
+ "loss": 3.72676420211792,
+ "step": 2254
+ },
+ {
+ "epoch": 31.321537789427698,
+ "grad_norm": 0.20727522671222687,
+ "learning_rate": 0.0006,
+ "loss": 3.735708236694336,
+ "step": 2255
+ },
+ {
+ "epoch": 31.335517693315857,
+ "grad_norm": 0.20655220746994019,
+ "learning_rate": 0.0006,
+ "loss": 3.714116096496582,
+ "step": 2256
+ },
+ {
+ "epoch": 31.34949759720402,
+ "grad_norm": 0.21738854050636292,
+ "learning_rate": 0.0006,
+ "loss": 3.731657028198242,
+ "step": 2257
+ },
+ {
+ "epoch": 31.36347750109218,
+ "grad_norm": 0.20758475363254547,
+ "learning_rate": 0.0006,
+ "loss": 3.7378528118133545,
+ "step": 2258
+ },
+ {
+ "epoch": 31.37745740498034,
+ "grad_norm": 0.20107139647006989,
+ "learning_rate": 0.0006,
+ "loss": 3.748572826385498,
+ "step": 2259
+ },
+ {
+ "epoch": 31.3914373088685,
+ "grad_norm": 0.18707452714443207,
+ "learning_rate": 0.0006,
+ "loss": 3.7237391471862793,
+ "step": 2260
+ },
+ {
+ "epoch": 31.405417212756664,
+ "grad_norm": 0.20745301246643066,
+ "learning_rate": 0.0006,
+ "loss": 3.734435558319092,
+ "step": 2261
+ },
+ {
+ "epoch": 31.419397116644824,
+ "grad_norm": 0.20793399214744568,
+ "learning_rate": 0.0006,
+ "loss": 3.7639012336730957,
+ "step": 2262
+ },
+ {
+ "epoch": 31.433377020532983,
+ "grad_norm": 0.20193757116794586,
+ "learning_rate": 0.0006,
+ "loss": 3.754117727279663,
+ "step": 2263
+ },
+ {
+ "epoch": 31.447356924421143,
+ "grad_norm": 0.1912323236465454,
+ "learning_rate": 0.0006,
+ "loss": 3.728111982345581,
+ "step": 2264
+ },
+ {
+ "epoch": 31.461336828309307,
+ "grad_norm": 0.19441582262516022,
+ "learning_rate": 0.0006,
+ "loss": 3.7533278465270996,
+ "step": 2265
+ },
+ {
+ "epoch": 31.475316732197467,
+ "grad_norm": 0.19807079434394836,
+ "learning_rate": 0.0006,
+ "loss": 3.7351698875427246,
+ "step": 2266
+ },
+ {
+ "epoch": 31.489296636085626,
+ "grad_norm": 0.20373263955116272,
+ "learning_rate": 0.0006,
+ "loss": 3.714097023010254,
+ "step": 2267
+ },
+ {
+ "epoch": 31.503276539973786,
+ "grad_norm": 0.21868768334388733,
+ "learning_rate": 0.0006,
+ "loss": 3.736743688583374,
+ "step": 2268
+ },
+ {
+ "epoch": 31.51725644386195,
+ "grad_norm": 0.20767922699451447,
+ "learning_rate": 0.0006,
+ "loss": 3.7097702026367188,
+ "step": 2269
+ },
+ {
+ "epoch": 31.53123634775011,
+ "grad_norm": 0.18425600230693817,
+ "learning_rate": 0.0006,
+ "loss": 3.7349140644073486,
+ "step": 2270
+ },
+ {
+ "epoch": 31.54521625163827,
+ "grad_norm": 0.18813826143741608,
+ "learning_rate": 0.0006,
+ "loss": 3.7023448944091797,
+ "step": 2271
+ },
+ {
+ "epoch": 31.55919615552643,
+ "grad_norm": 0.1892116516828537,
+ "learning_rate": 0.0006,
+ "loss": 3.7170143127441406,
+ "step": 2272
+ },
+ {
+ "epoch": 31.573176059414592,
+ "grad_norm": 0.2067834585905075,
+ "learning_rate": 0.0006,
+ "loss": 3.7312588691711426,
+ "step": 2273
+ },
+ {
+ "epoch": 31.587155963302752,
+ "grad_norm": 0.204023078083992,
+ "learning_rate": 0.0006,
+ "loss": 3.7399091720581055,
+ "step": 2274
+ },
+ {
+ "epoch": 31.601135867190912,
+ "grad_norm": 0.20245152711868286,
+ "learning_rate": 0.0006,
+ "loss": 3.7259416580200195,
+ "step": 2275
+ },
+ {
+ "epoch": 31.615115771079076,
+ "grad_norm": 0.21125490963459015,
+ "learning_rate": 0.0006,
+ "loss": 3.7217836380004883,
+ "step": 2276
+ },
+ {
+ "epoch": 31.629095674967235,
+ "grad_norm": 0.2093241959810257,
+ "learning_rate": 0.0006,
+ "loss": 3.707627773284912,
+ "step": 2277
+ },
+ {
+ "epoch": 31.643075578855395,
+ "grad_norm": 0.19290480017662048,
+ "learning_rate": 0.0006,
+ "loss": 3.7467126846313477,
+ "step": 2278
+ },
+ {
+ "epoch": 31.657055482743555,
+ "grad_norm": 0.1853940635919571,
+ "learning_rate": 0.0006,
+ "loss": 3.7565581798553467,
+ "step": 2279
+ },
+ {
+ "epoch": 31.67103538663172,
+ "grad_norm": 0.18917642533779144,
+ "learning_rate": 0.0006,
+ "loss": 3.7286229133605957,
+ "step": 2280
+ },
+ {
+ "epoch": 31.68501529051988,
+ "grad_norm": 0.2094079703092575,
+ "learning_rate": 0.0006,
+ "loss": 3.7297096252441406,
+ "step": 2281
+ },
+ {
+ "epoch": 31.698995194408038,
+ "grad_norm": 0.20020027458667755,
+ "learning_rate": 0.0006,
+ "loss": 3.7565250396728516,
+ "step": 2282
+ },
+ {
+ "epoch": 31.712975098296198,
+ "grad_norm": 0.19156186282634735,
+ "learning_rate": 0.0006,
+ "loss": 3.7401509284973145,
+ "step": 2283
+ },
+ {
+ "epoch": 31.72695500218436,
+ "grad_norm": 0.19176368415355682,
+ "learning_rate": 0.0006,
+ "loss": 3.751206398010254,
+ "step": 2284
+ },
+ {
+ "epoch": 31.74093490607252,
+ "grad_norm": 0.18351277709007263,
+ "learning_rate": 0.0006,
+ "loss": 3.752984046936035,
+ "step": 2285
+ },
+ {
+ "epoch": 31.75491480996068,
+ "grad_norm": 0.1879221349954605,
+ "learning_rate": 0.0006,
+ "loss": 3.7156834602355957,
+ "step": 2286
+ },
+ {
+ "epoch": 31.76889471384884,
+ "grad_norm": 0.19232559204101562,
+ "learning_rate": 0.0006,
+ "loss": 3.732879638671875,
+ "step": 2287
+ },
+ {
+ "epoch": 31.782874617737004,
+ "grad_norm": 0.18484069406986237,
+ "learning_rate": 0.0006,
+ "loss": 3.7489013671875,
+ "step": 2288
+ },
+ {
+ "epoch": 31.796854521625164,
+ "grad_norm": 0.20705144107341766,
+ "learning_rate": 0.0006,
+ "loss": 3.7214112281799316,
+ "step": 2289
+ },
+ {
+ "epoch": 31.810834425513324,
+ "grad_norm": 0.23424774408340454,
+ "learning_rate": 0.0006,
+ "loss": 3.714550256729126,
+ "step": 2290
+ },
+ {
+ "epoch": 31.824814329401484,
+ "grad_norm": 0.24061693251132965,
+ "learning_rate": 0.0006,
+ "loss": 3.717336654663086,
+ "step": 2291
+ },
+ {
+ "epoch": 31.838794233289647,
+ "grad_norm": 0.23156678676605225,
+ "learning_rate": 0.0006,
+ "loss": 3.7345399856567383,
+ "step": 2292
+ },
+ {
+ "epoch": 31.852774137177807,
+ "grad_norm": 0.2256302684545517,
+ "learning_rate": 0.0006,
+ "loss": 3.7596092224121094,
+ "step": 2293
+ },
+ {
+ "epoch": 31.866754041065967,
+ "grad_norm": 0.2118781954050064,
+ "learning_rate": 0.0006,
+ "loss": 3.725433588027954,
+ "step": 2294
+ },
+ {
+ "epoch": 31.88073394495413,
+ "grad_norm": 0.1874573826789856,
+ "learning_rate": 0.0006,
+ "loss": 3.738901138305664,
+ "step": 2295
+ },
+ {
+ "epoch": 31.89471384884229,
+ "grad_norm": 0.2062024176120758,
+ "learning_rate": 0.0006,
+ "loss": 3.7439217567443848,
+ "step": 2296
+ },
+ {
+ "epoch": 31.90869375273045,
+ "grad_norm": 0.19886671006679535,
+ "learning_rate": 0.0006,
+ "loss": 3.7583155632019043,
+ "step": 2297
+ },
+ {
+ "epoch": 31.92267365661861,
+ "grad_norm": 0.2079734355211258,
+ "learning_rate": 0.0006,
+ "loss": 3.7251501083374023,
+ "step": 2298
+ },
+ {
+ "epoch": 31.936653560506773,
+ "grad_norm": 0.19710204005241394,
+ "learning_rate": 0.0006,
+ "loss": 3.765778064727783,
+ "step": 2299
+ },
+ {
+ "epoch": 31.950633464394933,
+ "grad_norm": 0.1949392408132553,
+ "learning_rate": 0.0006,
+ "loss": 3.7634787559509277,
+ "step": 2300
+ },
+ {
+ "epoch": 31.964613368283093,
+ "grad_norm": 0.21466250717639923,
+ "learning_rate": 0.0006,
+ "loss": 3.7673215866088867,
+ "step": 2301
+ },
+ {
+ "epoch": 31.978593272171253,
+ "grad_norm": 0.21624267101287842,
+ "learning_rate": 0.0006,
+ "loss": 3.7617220878601074,
+ "step": 2302
+ },
+ {
+ "epoch": 31.992573176059416,
+ "grad_norm": 0.22880229353904724,
+ "learning_rate": 0.0006,
+ "loss": 3.7190351486206055,
+ "step": 2303
+ },
+ {
+ "epoch": 32.0,
+ "grad_norm": 0.23227518796920776,
+ "learning_rate": 0.0006,
+ "loss": 3.740169048309326,
+ "step": 2304
+ },
+ {
+ "epoch": 32.0,
+ "eval_loss": 4.017981052398682,
+ "eval_runtime": 44.4134,
+ "eval_samples_per_second": 54.983,
+ "eval_steps_per_second": 3.445,
+ "step": 2304
+ },
+ {
+ "epoch": 32.01397990388816,
+ "grad_norm": 0.1893721967935562,
+ "learning_rate": 0.0006,
+ "loss": 3.71738338470459,
+ "step": 2305
+ },
+ {
+ "epoch": 32.02795980777632,
+ "grad_norm": 0.23771171271800995,
+ "learning_rate": 0.0006,
+ "loss": 3.71402645111084,
+ "step": 2306
+ },
+ {
+ "epoch": 32.04193971166448,
+ "grad_norm": 0.26343807578086853,
+ "learning_rate": 0.0006,
+ "loss": 3.6926395893096924,
+ "step": 2307
+ },
+ {
+ "epoch": 32.05591961555265,
+ "grad_norm": 0.25092509388923645,
+ "learning_rate": 0.0006,
+ "loss": 3.715243339538574,
+ "step": 2308
+ },
+ {
+ "epoch": 32.0698995194408,
+ "grad_norm": 0.23148509860038757,
+ "learning_rate": 0.0006,
+ "loss": 3.690734386444092,
+ "step": 2309
+ },
+ {
+ "epoch": 32.083879423328966,
+ "grad_norm": 0.23314623534679413,
+ "learning_rate": 0.0006,
+ "loss": 3.6980109214782715,
+ "step": 2310
+ },
+ {
+ "epoch": 32.09785932721712,
+ "grad_norm": 0.2210417091846466,
+ "learning_rate": 0.0006,
+ "loss": 3.7395730018615723,
+ "step": 2311
+ },
+ {
+ "epoch": 32.111839231105286,
+ "grad_norm": 0.20263685286045074,
+ "learning_rate": 0.0006,
+ "loss": 3.678412914276123,
+ "step": 2312
+ },
+ {
+ "epoch": 32.12581913499345,
+ "grad_norm": 0.20412251353263855,
+ "learning_rate": 0.0006,
+ "loss": 3.688762903213501,
+ "step": 2313
+ },
+ {
+ "epoch": 32.139799038881605,
+ "grad_norm": 0.2041679322719574,
+ "learning_rate": 0.0006,
+ "loss": 3.7231521606445312,
+ "step": 2314
+ },
+ {
+ "epoch": 32.15377894276977,
+ "grad_norm": 0.23270174860954285,
+ "learning_rate": 0.0006,
+ "loss": 3.7102620601654053,
+ "step": 2315
+ },
+ {
+ "epoch": 32.16775884665793,
+ "grad_norm": 0.25470519065856934,
+ "learning_rate": 0.0006,
+ "loss": 3.7353053092956543,
+ "step": 2316
+ },
+ {
+ "epoch": 32.18173875054609,
+ "grad_norm": 0.2930106222629547,
+ "learning_rate": 0.0006,
+ "loss": 3.7418713569641113,
+ "step": 2317
+ },
+ {
+ "epoch": 32.19571865443425,
+ "grad_norm": 0.3181219696998596,
+ "learning_rate": 0.0006,
+ "loss": 3.6716184616088867,
+ "step": 2318
+ },
+ {
+ "epoch": 32.20969855832241,
+ "grad_norm": 0.2752978801727295,
+ "learning_rate": 0.0006,
+ "loss": 3.70334792137146,
+ "step": 2319
+ },
+ {
+ "epoch": 32.22367846221057,
+ "grad_norm": 0.28381186723709106,
+ "learning_rate": 0.0006,
+ "loss": 3.719794750213623,
+ "step": 2320
+ },
+ {
+ "epoch": 32.237658366098735,
+ "grad_norm": 0.3287750482559204,
+ "learning_rate": 0.0006,
+ "loss": 3.7363362312316895,
+ "step": 2321
+ },
+ {
+ "epoch": 32.25163826998689,
+ "grad_norm": 0.32669803500175476,
+ "learning_rate": 0.0006,
+ "loss": 3.739394426345825,
+ "step": 2322
+ },
+ {
+ "epoch": 32.265618173875055,
+ "grad_norm": 0.27423885464668274,
+ "learning_rate": 0.0006,
+ "loss": 3.7381205558776855,
+ "step": 2323
+ },
+ {
+ "epoch": 32.27959807776322,
+ "grad_norm": 0.2594660818576813,
+ "learning_rate": 0.0006,
+ "loss": 3.698683738708496,
+ "step": 2324
+ },
+ {
+ "epoch": 32.293577981651374,
+ "grad_norm": 0.2785511016845703,
+ "learning_rate": 0.0006,
+ "loss": 3.688774824142456,
+ "step": 2325
+ },
+ {
+ "epoch": 32.30755788553954,
+ "grad_norm": 0.2690320611000061,
+ "learning_rate": 0.0006,
+ "loss": 3.7209150791168213,
+ "step": 2326
+ },
+ {
+ "epoch": 32.3215377894277,
+ "grad_norm": 0.23331770300865173,
+ "learning_rate": 0.0006,
+ "loss": 3.682931423187256,
+ "step": 2327
+ },
+ {
+ "epoch": 32.33551769331586,
+ "grad_norm": 0.22380802035331726,
+ "learning_rate": 0.0006,
+ "loss": 3.720445156097412,
+ "step": 2328
+ },
+ {
+ "epoch": 32.34949759720402,
+ "grad_norm": 0.2065964937210083,
+ "learning_rate": 0.0006,
+ "loss": 3.705427885055542,
+ "step": 2329
+ },
+ {
+ "epoch": 32.36347750109218,
+ "grad_norm": 0.20701853930950165,
+ "learning_rate": 0.0006,
+ "loss": 3.7078697681427,
+ "step": 2330
+ },
+ {
+ "epoch": 32.37745740498034,
+ "grad_norm": 0.2063559591770172,
+ "learning_rate": 0.0006,
+ "loss": 3.745004653930664,
+ "step": 2331
+ },
+ {
+ "epoch": 32.391437308868504,
+ "grad_norm": 0.19377011060714722,
+ "learning_rate": 0.0006,
+ "loss": 3.713808059692383,
+ "step": 2332
+ },
+ {
+ "epoch": 32.40541721275666,
+ "grad_norm": 0.19260725378990173,
+ "learning_rate": 0.0006,
+ "loss": 3.717043876647949,
+ "step": 2333
+ },
+ {
+ "epoch": 32.419397116644824,
+ "grad_norm": 0.20792821049690247,
+ "learning_rate": 0.0006,
+ "loss": 3.68632173538208,
+ "step": 2334
+ },
+ {
+ "epoch": 32.43337702053299,
+ "grad_norm": 0.22278444468975067,
+ "learning_rate": 0.0006,
+ "loss": 3.7345821857452393,
+ "step": 2335
+ },
+ {
+ "epoch": 32.44735692442114,
+ "grad_norm": 0.22533579170703888,
+ "learning_rate": 0.0006,
+ "loss": 3.7224173545837402,
+ "step": 2336
+ },
+ {
+ "epoch": 32.46133682830931,
+ "grad_norm": 0.20228394865989685,
+ "learning_rate": 0.0006,
+ "loss": 3.748530149459839,
+ "step": 2337
+ },
+ {
+ "epoch": 32.47531673219746,
+ "grad_norm": 0.19944614171981812,
+ "learning_rate": 0.0006,
+ "loss": 3.707085371017456,
+ "step": 2338
+ },
+ {
+ "epoch": 32.489296636085626,
+ "grad_norm": 0.19856145977973938,
+ "learning_rate": 0.0006,
+ "loss": 3.6898274421691895,
+ "step": 2339
+ },
+ {
+ "epoch": 32.50327653997379,
+ "grad_norm": 0.20734605193138123,
+ "learning_rate": 0.0006,
+ "loss": 3.7511792182922363,
+ "step": 2340
+ },
+ {
+ "epoch": 32.517256443861946,
+ "grad_norm": 0.19489309191703796,
+ "learning_rate": 0.0006,
+ "loss": 3.736445426940918,
+ "step": 2341
+ },
+ {
+ "epoch": 32.53123634775011,
+ "grad_norm": 0.18899282813072205,
+ "learning_rate": 0.0006,
+ "loss": 3.727325916290283,
+ "step": 2342
+ },
+ {
+ "epoch": 32.54521625163827,
+ "grad_norm": 0.19670401513576508,
+ "learning_rate": 0.0006,
+ "loss": 3.7326102256774902,
+ "step": 2343
+ },
+ {
+ "epoch": 32.55919615552643,
+ "grad_norm": 0.20061780512332916,
+ "learning_rate": 0.0006,
+ "loss": 3.698716402053833,
+ "step": 2344
+ },
+ {
+ "epoch": 32.57317605941459,
+ "grad_norm": 0.1991659700870514,
+ "learning_rate": 0.0006,
+ "loss": 3.6913180351257324,
+ "step": 2345
+ },
+ {
+ "epoch": 32.58715596330275,
+ "grad_norm": 0.18856225907802582,
+ "learning_rate": 0.0006,
+ "loss": 3.7130961418151855,
+ "step": 2346
+ },
+ {
+ "epoch": 32.60113586719091,
+ "grad_norm": 0.1983972191810608,
+ "learning_rate": 0.0006,
+ "loss": 3.7530808448791504,
+ "step": 2347
+ },
+ {
+ "epoch": 32.615115771079076,
+ "grad_norm": 0.2037997543811798,
+ "learning_rate": 0.0006,
+ "loss": 3.7076587677001953,
+ "step": 2348
+ },
+ {
+ "epoch": 32.62909567496723,
+ "grad_norm": 0.21008458733558655,
+ "learning_rate": 0.0006,
+ "loss": 3.7379021644592285,
+ "step": 2349
+ },
+ {
+ "epoch": 32.643075578855395,
+ "grad_norm": 0.2129313349723816,
+ "learning_rate": 0.0006,
+ "loss": 3.7031373977661133,
+ "step": 2350
+ },
+ {
+ "epoch": 32.65705548274356,
+ "grad_norm": 0.18756245076656342,
+ "learning_rate": 0.0006,
+ "loss": 3.7066285610198975,
+ "step": 2351
+ },
+ {
+ "epoch": 32.671035386631715,
+ "grad_norm": 0.17946591973304749,
+ "learning_rate": 0.0006,
+ "loss": 3.73781681060791,
+ "step": 2352
+ },
+ {
+ "epoch": 32.68501529051988,
+ "grad_norm": 0.18983198702335358,
+ "learning_rate": 0.0006,
+ "loss": 3.718855381011963,
+ "step": 2353
+ },
+ {
+ "epoch": 32.69899519440804,
+ "grad_norm": 0.2080942839384079,
+ "learning_rate": 0.0006,
+ "loss": 3.7111258506774902,
+ "step": 2354
+ },
+ {
+ "epoch": 32.7129750982962,
+ "grad_norm": 0.23633413016796112,
+ "learning_rate": 0.0006,
+ "loss": 3.709766149520874,
+ "step": 2355
+ },
+ {
+ "epoch": 32.72695500218436,
+ "grad_norm": 0.2723144590854645,
+ "learning_rate": 0.0006,
+ "loss": 3.745850086212158,
+ "step": 2356
+ },
+ {
+ "epoch": 32.74093490607252,
+ "grad_norm": 0.29774025082588196,
+ "learning_rate": 0.0006,
+ "loss": 3.733771324157715,
+ "step": 2357
+ },
+ {
+ "epoch": 32.75491480996068,
+ "grad_norm": 0.25976699590682983,
+ "learning_rate": 0.0006,
+ "loss": 3.734194278717041,
+ "step": 2358
+ },
+ {
+ "epoch": 32.768894713848844,
+ "grad_norm": 0.20038039982318878,
+ "learning_rate": 0.0006,
+ "loss": 3.735656261444092,
+ "step": 2359
+ },
+ {
+ "epoch": 32.782874617737,
+ "grad_norm": 0.19745637476444244,
+ "learning_rate": 0.0006,
+ "loss": 3.7335894107818604,
+ "step": 2360
+ },
+ {
+ "epoch": 32.796854521625164,
+ "grad_norm": 0.22022396326065063,
+ "learning_rate": 0.0006,
+ "loss": 3.708998680114746,
+ "step": 2361
+ },
+ {
+ "epoch": 32.81083442551333,
+ "grad_norm": 0.24754752218723297,
+ "learning_rate": 0.0006,
+ "loss": 3.7616286277770996,
+ "step": 2362
+ },
+ {
+ "epoch": 32.824814329401484,
+ "grad_norm": 0.26438358426094055,
+ "learning_rate": 0.0006,
+ "loss": 3.737079620361328,
+ "step": 2363
+ },
+ {
+ "epoch": 32.83879423328965,
+ "grad_norm": 0.2507241666316986,
+ "learning_rate": 0.0006,
+ "loss": 3.708500385284424,
+ "step": 2364
+ },
+ {
+ "epoch": 32.8527741371778,
+ "grad_norm": 0.25688016414642334,
+ "learning_rate": 0.0006,
+ "loss": 3.7389419078826904,
+ "step": 2365
+ },
+ {
+ "epoch": 32.86675404106597,
+ "grad_norm": 0.257447749376297,
+ "learning_rate": 0.0006,
+ "loss": 3.7253334522247314,
+ "step": 2366
+ },
+ {
+ "epoch": 32.88073394495413,
+ "grad_norm": 0.2621215879917145,
+ "learning_rate": 0.0006,
+ "loss": 3.773163318634033,
+ "step": 2367
+ },
+ {
+ "epoch": 32.89471384884229,
+ "grad_norm": 0.23554839193820953,
+ "learning_rate": 0.0006,
+ "loss": 3.7534430027008057,
+ "step": 2368
+ },
+ {
+ "epoch": 32.90869375273045,
+ "grad_norm": 0.19698940217494965,
+ "learning_rate": 0.0006,
+ "loss": 3.7094414234161377,
+ "step": 2369
+ },
+ {
+ "epoch": 32.92267365661861,
+ "grad_norm": 0.21380476653575897,
+ "learning_rate": 0.0006,
+ "loss": 3.7666497230529785,
+ "step": 2370
+ },
+ {
+ "epoch": 32.93665356050677,
+ "grad_norm": 0.20876452326774597,
+ "learning_rate": 0.0006,
+ "loss": 3.7467992305755615,
+ "step": 2371
+ },
+ {
+ "epoch": 32.95063346439493,
+ "grad_norm": 0.1989884227514267,
+ "learning_rate": 0.0006,
+ "loss": 3.749878168106079,
+ "step": 2372
+ },
+ {
+ "epoch": 32.964613368283096,
+ "grad_norm": 0.19089168310165405,
+ "learning_rate": 0.0006,
+ "loss": 3.7211015224456787,
+ "step": 2373
+ },
+ {
+ "epoch": 32.97859327217125,
+ "grad_norm": 0.1962461918592453,
+ "learning_rate": 0.0006,
+ "loss": 3.728684425354004,
+ "step": 2374
+ },
+ {
+ "epoch": 32.992573176059416,
+ "grad_norm": 0.22518110275268555,
+ "learning_rate": 0.0006,
+ "loss": 3.7361507415771484,
+ "step": 2375
+ },
+ {
+ "epoch": 33.0,
+ "grad_norm": 0.26704078912734985,
+ "learning_rate": 0.0006,
+ "loss": 3.7478318214416504,
+ "step": 2376
+ },
+ {
+ "epoch": 33.0,
+ "eval_loss": 4.024221897125244,
+ "eval_runtime": 43.9826,
+ "eval_samples_per_second": 55.522,
+ "eval_steps_per_second": 3.479,
+ "step": 2376
+ },
+ {
+ "epoch": 33.01397990388816,
+ "grad_norm": 0.23387742042541504,
+ "learning_rate": 0.0006,
+ "loss": 3.7043614387512207,
+ "step": 2377
+ },
+ {
+ "epoch": 33.02795980777632,
+ "grad_norm": 0.21334673464298248,
+ "learning_rate": 0.0006,
+ "loss": 3.6714677810668945,
+ "step": 2378
+ },
+ {
+ "epoch": 33.04193971166448,
+ "grad_norm": 0.2608581483364105,
+ "learning_rate": 0.0006,
+ "loss": 3.678460121154785,
+ "step": 2379
+ },
+ {
+ "epoch": 33.05591961555265,
+ "grad_norm": 0.31364381313323975,
+ "learning_rate": 0.0006,
+ "loss": 3.6771793365478516,
+ "step": 2380
+ },
+ {
+ "epoch": 33.0698995194408,
+ "grad_norm": 0.31785935163497925,
+ "learning_rate": 0.0006,
+ "loss": 3.7248926162719727,
+ "step": 2381
+ },
+ {
+ "epoch": 33.083879423328966,
+ "grad_norm": 0.29244646430015564,
+ "learning_rate": 0.0006,
+ "loss": 3.677882194519043,
+ "step": 2382
+ },
+ {
+ "epoch": 33.09785932721712,
+ "grad_norm": 0.23943741619586945,
+ "learning_rate": 0.0006,
+ "loss": 3.7365124225616455,
+ "step": 2383
+ },
+ {
+ "epoch": 33.111839231105286,
+ "grad_norm": 0.2547394931316376,
+ "learning_rate": 0.0006,
+ "loss": 3.7031357288360596,
+ "step": 2384
+ },
+ {
+ "epoch": 33.12581913499345,
+ "grad_norm": 0.2696659564971924,
+ "learning_rate": 0.0006,
+ "loss": 3.6904754638671875,
+ "step": 2385
+ },
+ {
+ "epoch": 33.139799038881605,
+ "grad_norm": 0.24271385371685028,
+ "learning_rate": 0.0006,
+ "loss": 3.7137649059295654,
+ "step": 2386
+ },
+ {
+ "epoch": 33.15377894276977,
+ "grad_norm": 0.23435993492603302,
+ "learning_rate": 0.0006,
+ "loss": 3.707383632659912,
+ "step": 2387
+ },
+ {
+ "epoch": 33.16775884665793,
+ "grad_norm": 0.21428440511226654,
+ "learning_rate": 0.0006,
+ "loss": 3.7148897647857666,
+ "step": 2388
+ },
+ {
+ "epoch": 33.18173875054609,
+ "grad_norm": 0.22420962154865265,
+ "learning_rate": 0.0006,
+ "loss": 3.710111141204834,
+ "step": 2389
+ },
+ {
+ "epoch": 33.19571865443425,
+ "grad_norm": 0.26222777366638184,
+ "learning_rate": 0.0006,
+ "loss": 3.677438259124756,
+ "step": 2390
+ },
+ {
+ "epoch": 33.20969855832241,
+ "grad_norm": 0.29910165071487427,
+ "learning_rate": 0.0006,
+ "loss": 3.6895523071289062,
+ "step": 2391
+ },
+ {
+ "epoch": 33.22367846221057,
+ "grad_norm": 0.2615569531917572,
+ "learning_rate": 0.0006,
+ "loss": 3.7339906692504883,
+ "step": 2392
+ },
+ {
+ "epoch": 33.237658366098735,
+ "grad_norm": 0.23396961390972137,
+ "learning_rate": 0.0006,
+ "loss": 3.7179932594299316,
+ "step": 2393
+ },
+ {
+ "epoch": 33.25163826998689,
+ "grad_norm": 0.24844495952129364,
+ "learning_rate": 0.0006,
+ "loss": 3.7191576957702637,
+ "step": 2394
+ },
+ {
+ "epoch": 33.265618173875055,
+ "grad_norm": 0.2306993454694748,
+ "learning_rate": 0.0006,
+ "loss": 3.7172658443450928,
+ "step": 2395
+ },
+ {
+ "epoch": 33.27959807776322,
+ "grad_norm": 0.24935221672058105,
+ "learning_rate": 0.0006,
+ "loss": 3.6917519569396973,
+ "step": 2396
+ },
+ {
+ "epoch": 33.293577981651374,
+ "grad_norm": 0.2522840201854706,
+ "learning_rate": 0.0006,
+ "loss": 3.7263593673706055,
+ "step": 2397
+ },
+ {
+ "epoch": 33.30755788553954,
+ "grad_norm": 0.26411181688308716,
+ "learning_rate": 0.0006,
+ "loss": 3.6981635093688965,
+ "step": 2398
+ },
+ {
+ "epoch": 33.3215377894277,
+ "grad_norm": 0.22396239638328552,
+ "learning_rate": 0.0006,
+ "loss": 3.713247299194336,
+ "step": 2399
+ },
+ {
+ "epoch": 33.33551769331586,
+ "grad_norm": 0.20579157769680023,
+ "learning_rate": 0.0006,
+ "loss": 3.7058467864990234,
+ "step": 2400
+ },
+ {
+ "epoch": 33.34949759720402,
+ "grad_norm": 0.20103922486305237,
+ "learning_rate": 0.0006,
+ "loss": 3.700924873352051,
+ "step": 2401
+ },
+ {
+ "epoch": 33.36347750109218,
+ "grad_norm": 0.19964663684368134,
+ "learning_rate": 0.0006,
+ "loss": 3.6985437870025635,
+ "step": 2402
+ },
+ {
+ "epoch": 33.37745740498034,
+ "grad_norm": 0.20860575139522552,
+ "learning_rate": 0.0006,
+ "loss": 3.7480058670043945,
+ "step": 2403
+ },
+ {
+ "epoch": 33.391437308868504,
+ "grad_norm": 0.19043605029582977,
+ "learning_rate": 0.0006,
+ "loss": 3.6952016353607178,
+ "step": 2404
+ },
+ {
+ "epoch": 33.40541721275666,
+ "grad_norm": 0.1968909204006195,
+ "learning_rate": 0.0006,
+ "loss": 3.69362735748291,
+ "step": 2405
+ },
+ {
+ "epoch": 33.419397116644824,
+ "grad_norm": 0.23492494225502014,
+ "learning_rate": 0.0006,
+ "loss": 3.707993984222412,
+ "step": 2406
+ },
+ {
+ "epoch": 33.43337702053299,
+ "grad_norm": 0.23970453441143036,
+ "learning_rate": 0.0006,
+ "loss": 3.707731246948242,
+ "step": 2407
+ },
+ {
+ "epoch": 33.44735692442114,
+ "grad_norm": 0.2515844404697418,
+ "learning_rate": 0.0006,
+ "loss": 3.723824977874756,
+ "step": 2408
+ },
+ {
+ "epoch": 33.46133682830931,
+ "grad_norm": 0.2343570590019226,
+ "learning_rate": 0.0006,
+ "loss": 3.7068886756896973,
+ "step": 2409
+ },
+ {
+ "epoch": 33.47531673219746,
+ "grad_norm": 0.23419860005378723,
+ "learning_rate": 0.0006,
+ "loss": 3.6964287757873535,
+ "step": 2410
+ },
+ {
+ "epoch": 33.489296636085626,
+ "grad_norm": 0.21280375123023987,
+ "learning_rate": 0.0006,
+ "loss": 3.7020950317382812,
+ "step": 2411
+ },
+ {
+ "epoch": 33.50327653997379,
+ "grad_norm": 0.2061092108488083,
+ "learning_rate": 0.0006,
+ "loss": 3.750861406326294,
+ "step": 2412
+ },
+ {
+ "epoch": 33.517256443861946,
+ "grad_norm": 0.19693219661712646,
+ "learning_rate": 0.0006,
+ "loss": 3.717020034790039,
+ "step": 2413
+ },
+ {
+ "epoch": 33.53123634775011,
+ "grad_norm": 0.18199551105499268,
+ "learning_rate": 0.0006,
+ "loss": 3.7242612838745117,
+ "step": 2414
+ },
+ {
+ "epoch": 33.54521625163827,
+ "grad_norm": 0.20131248235702515,
+ "learning_rate": 0.0006,
+ "loss": 3.6758954524993896,
+ "step": 2415
+ },
+ {
+ "epoch": 33.55919615552643,
+ "grad_norm": 0.2219412475824356,
+ "learning_rate": 0.0006,
+ "loss": 3.707927703857422,
+ "step": 2416
+ },
+ {
+ "epoch": 33.57317605941459,
+ "grad_norm": 0.22541435062885284,
+ "learning_rate": 0.0006,
+ "loss": 3.696967601776123,
+ "step": 2417
+ },
+ {
+ "epoch": 33.58715596330275,
+ "grad_norm": 0.20367272198200226,
+ "learning_rate": 0.0006,
+ "loss": 3.730795383453369,
+ "step": 2418
+ },
+ {
+ "epoch": 33.60113586719091,
+ "grad_norm": 0.20861074328422546,
+ "learning_rate": 0.0006,
+ "loss": 3.707066535949707,
+ "step": 2419
+ },
+ {
+ "epoch": 33.615115771079076,
+ "grad_norm": 0.20570263266563416,
+ "learning_rate": 0.0006,
+ "loss": 3.730602502822876,
+ "step": 2420
+ },
+ {
+ "epoch": 33.62909567496723,
+ "grad_norm": 0.21318231523036957,
+ "learning_rate": 0.0006,
+ "loss": 3.7073278427124023,
+ "step": 2421
+ },
+ {
+ "epoch": 33.643075578855395,
+ "grad_norm": 0.2142639458179474,
+ "learning_rate": 0.0006,
+ "loss": 3.718470573425293,
+ "step": 2422
+ },
+ {
+ "epoch": 33.65705548274356,
+ "grad_norm": 0.19620704650878906,
+ "learning_rate": 0.0006,
+ "loss": 3.716036319732666,
+ "step": 2423
+ },
+ {
+ "epoch": 33.671035386631715,
+ "grad_norm": 0.19308267533779144,
+ "learning_rate": 0.0006,
+ "loss": 3.734597682952881,
+ "step": 2424
+ },
+ {
+ "epoch": 33.68501529051988,
+ "grad_norm": 0.19453389942646027,
+ "learning_rate": 0.0006,
+ "loss": 3.726262092590332,
+ "step": 2425
+ },
+ {
+ "epoch": 33.69899519440804,
+ "grad_norm": 0.20405639708042145,
+ "learning_rate": 0.0006,
+ "loss": 3.678340435028076,
+ "step": 2426
+ },
+ {
+ "epoch": 33.7129750982962,
+ "grad_norm": 0.19525611400604248,
+ "learning_rate": 0.0006,
+ "loss": 3.723907470703125,
+ "step": 2427
+ },
+ {
+ "epoch": 33.72695500218436,
+ "grad_norm": 0.19390441477298737,
+ "learning_rate": 0.0006,
+ "loss": 3.707897186279297,
+ "step": 2428
+ },
+ {
+ "epoch": 33.74093490607252,
+ "grad_norm": 0.2032899558544159,
+ "learning_rate": 0.0006,
+ "loss": 3.735041618347168,
+ "step": 2429
+ },
+ {
+ "epoch": 33.75491480996068,
+ "grad_norm": 0.2134784460067749,
+ "learning_rate": 0.0006,
+ "loss": 3.674978017807007,
+ "step": 2430
+ },
+ {
+ "epoch": 33.768894713848844,
+ "grad_norm": 0.24691973626613617,
+ "learning_rate": 0.0006,
+ "loss": 3.7028675079345703,
+ "step": 2431
+ },
+ {
+ "epoch": 33.782874617737,
+ "grad_norm": 0.2272702008485794,
+ "learning_rate": 0.0006,
+ "loss": 3.7277941703796387,
+ "step": 2432
+ },
+ {
+ "epoch": 33.796854521625164,
+ "grad_norm": 0.20052100718021393,
+ "learning_rate": 0.0006,
+ "loss": 3.7146830558776855,
+ "step": 2433
+ },
+ {
+ "epoch": 33.81083442551333,
+ "grad_norm": 0.1958577185869217,
+ "learning_rate": 0.0006,
+ "loss": 3.6936864852905273,
+ "step": 2434
+ },
+ {
+ "epoch": 33.824814329401484,
+ "grad_norm": 0.191860631108284,
+ "learning_rate": 0.0006,
+ "loss": 3.7451858520507812,
+ "step": 2435
+ },
+ {
+ "epoch": 33.83879423328965,
+ "grad_norm": 0.20961424708366394,
+ "learning_rate": 0.0006,
+ "loss": 3.722400665283203,
+ "step": 2436
+ },
+ {
+ "epoch": 33.8527741371778,
+ "grad_norm": 0.19784288108348846,
+ "learning_rate": 0.0006,
+ "loss": 3.712474822998047,
+ "step": 2437
+ },
+ {
+ "epoch": 33.86675404106597,
+ "grad_norm": 0.18645426630973816,
+ "learning_rate": 0.0006,
+ "loss": 3.7054500579833984,
+ "step": 2438
+ },
+ {
+ "epoch": 33.88073394495413,
+ "grad_norm": 0.19622360169887543,
+ "learning_rate": 0.0006,
+ "loss": 3.7010550498962402,
+ "step": 2439
+ },
+ {
+ "epoch": 33.89471384884229,
+ "grad_norm": 0.20283745229244232,
+ "learning_rate": 0.0006,
+ "loss": 3.7252519130706787,
+ "step": 2440
+ },
+ {
+ "epoch": 33.90869375273045,
+ "grad_norm": 0.18671709299087524,
+ "learning_rate": 0.0006,
+ "loss": 3.6932945251464844,
+ "step": 2441
+ },
+ {
+ "epoch": 33.92267365661861,
+ "grad_norm": 0.17953112721443176,
+ "learning_rate": 0.0006,
+ "loss": 3.7453854084014893,
+ "step": 2442
+ },
+ {
+ "epoch": 33.93665356050677,
+ "grad_norm": 0.1945437788963318,
+ "learning_rate": 0.0006,
+ "loss": 3.722881317138672,
+ "step": 2443
+ },
+ {
+ "epoch": 33.95063346439493,
+ "grad_norm": 0.18414495885372162,
+ "learning_rate": 0.0006,
+ "loss": 3.7402591705322266,
+ "step": 2444
+ },
+ {
+ "epoch": 33.964613368283096,
+ "grad_norm": 0.1936541497707367,
+ "learning_rate": 0.0006,
+ "loss": 3.720057964324951,
+ "step": 2445
+ },
+ {
+ "epoch": 33.97859327217125,
+ "grad_norm": 0.20177008211612701,
+ "learning_rate": 0.0006,
+ "loss": 3.6983802318573,
+ "step": 2446
+ },
+ {
+ "epoch": 33.992573176059416,
+ "grad_norm": 0.18977557122707367,
+ "learning_rate": 0.0006,
+ "loss": 3.7202203273773193,
+ "step": 2447
+ },
+ {
+ "epoch": 34.0,
+ "grad_norm": 0.220163956284523,
+ "learning_rate": 0.0006,
+ "loss": 3.72540283203125,
+ "step": 2448
+ },
+ {
+ "epoch": 34.0,
+ "eval_loss": 4.009343147277832,
+ "eval_runtime": 44.1825,
+ "eval_samples_per_second": 55.271,
+ "eval_steps_per_second": 3.463,
+ "step": 2448
+ },
+ {
+ "epoch": 34.01397990388816,
+ "grad_norm": 0.19843372702598572,
+ "learning_rate": 0.0006,
+ "loss": 3.664431571960449,
+ "step": 2449
+ },
+ {
+ "epoch": 34.02795980777632,
+ "grad_norm": 0.20413008332252502,
+ "learning_rate": 0.0006,
+ "loss": 3.699094533920288,
+ "step": 2450
+ },
+ {
+ "epoch": 34.04193971166448,
+ "grad_norm": 0.22086848318576813,
+ "learning_rate": 0.0006,
+ "loss": 3.681825637817383,
+ "step": 2451
+ },
+ {
+ "epoch": 34.05591961555265,
+ "grad_norm": 0.20753061771392822,
+ "learning_rate": 0.0006,
+ "loss": 3.677116870880127,
+ "step": 2452
+ },
+ {
+ "epoch": 34.0698995194408,
+ "grad_norm": 0.21835783123970032,
+ "learning_rate": 0.0006,
+ "loss": 3.7079062461853027,
+ "step": 2453
+ },
+ {
+ "epoch": 34.083879423328966,
+ "grad_norm": 0.2244357019662857,
+ "learning_rate": 0.0006,
+ "loss": 3.69844913482666,
+ "step": 2454
+ },
+ {
+ "epoch": 34.09785932721712,
+ "grad_norm": 0.2238784283399582,
+ "learning_rate": 0.0006,
+ "loss": 3.6835570335388184,
+ "step": 2455
+ },
+ {
+ "epoch": 34.111839231105286,
+ "grad_norm": 0.24816176295280457,
+ "learning_rate": 0.0006,
+ "loss": 3.6832966804504395,
+ "step": 2456
+ },
+ {
+ "epoch": 34.12581913499345,
+ "grad_norm": 0.2445257306098938,
+ "learning_rate": 0.0006,
+ "loss": 3.7190022468566895,
+ "step": 2457
+ },
+ {
+ "epoch": 34.139799038881605,
+ "grad_norm": 0.24510814249515533,
+ "learning_rate": 0.0006,
+ "loss": 3.678098201751709,
+ "step": 2458
+ },
+ {
+ "epoch": 34.15377894276977,
+ "grad_norm": 0.2550753653049469,
+ "learning_rate": 0.0006,
+ "loss": 3.69335675239563,
+ "step": 2459
+ },
+ {
+ "epoch": 34.16775884665793,
+ "grad_norm": 0.2435017228126526,
+ "learning_rate": 0.0006,
+ "loss": 3.70463228225708,
+ "step": 2460
+ },
+ {
+ "epoch": 34.18173875054609,
+ "grad_norm": 0.26441144943237305,
+ "learning_rate": 0.0006,
+ "loss": 3.6757068634033203,
+ "step": 2461
+ },
+ {
+ "epoch": 34.19571865443425,
+ "grad_norm": 0.2737993001937866,
+ "learning_rate": 0.0006,
+ "loss": 3.6510863304138184,
+ "step": 2462
+ },
+ {
+ "epoch": 34.20969855832241,
+ "grad_norm": 0.24625736474990845,
+ "learning_rate": 0.0006,
+ "loss": 3.707612991333008,
+ "step": 2463
+ },
+ {
+ "epoch": 34.22367846221057,
+ "grad_norm": 0.22222039103507996,
+ "learning_rate": 0.0006,
+ "loss": 3.7145133018493652,
+ "step": 2464
+ },
+ {
+ "epoch": 34.237658366098735,
+ "grad_norm": 0.2173531949520111,
+ "learning_rate": 0.0006,
+ "loss": 3.685112476348877,
+ "step": 2465
+ },
+ {
+ "epoch": 34.25163826998689,
+ "grad_norm": 0.23102006316184998,
+ "learning_rate": 0.0006,
+ "loss": 3.6742453575134277,
+ "step": 2466
+ },
+ {
+ "epoch": 34.265618173875055,
+ "grad_norm": 0.22287188470363617,
+ "learning_rate": 0.0006,
+ "loss": 3.7030534744262695,
+ "step": 2467
+ },
+ {
+ "epoch": 34.27959807776322,
+ "grad_norm": 0.20377251505851746,
+ "learning_rate": 0.0006,
+ "loss": 3.6866259574890137,
+ "step": 2468
+ },
+ {
+ "epoch": 34.293577981651374,
+ "grad_norm": 0.19867438077926636,
+ "learning_rate": 0.0006,
+ "loss": 3.70395565032959,
+ "step": 2469
+ },
+ {
+ "epoch": 34.30755788553954,
+ "grad_norm": 0.2014918178319931,
+ "learning_rate": 0.0006,
+ "loss": 3.660795211791992,
+ "step": 2470
+ },
+ {
+ "epoch": 34.3215377894277,
+ "grad_norm": 0.20981402695178986,
+ "learning_rate": 0.0006,
+ "loss": 3.7045323848724365,
+ "step": 2471
+ },
+ {
+ "epoch": 34.33551769331586,
+ "grad_norm": 0.20968124270439148,
+ "learning_rate": 0.0006,
+ "loss": 3.7113170623779297,
+ "step": 2472
+ },
+ {
+ "epoch": 34.34949759720402,
+ "grad_norm": 0.2214043140411377,
+ "learning_rate": 0.0006,
+ "loss": 3.7330074310302734,
+ "step": 2473
+ },
+ {
+ "epoch": 34.36347750109218,
+ "grad_norm": 0.21231533586978912,
+ "learning_rate": 0.0006,
+ "loss": 3.6706933975219727,
+ "step": 2474
+ },
+ {
+ "epoch": 34.37745740498034,
+ "grad_norm": 0.2022094875574112,
+ "learning_rate": 0.0006,
+ "loss": 3.7230453491210938,
+ "step": 2475
+ },
+ {
+ "epoch": 34.391437308868504,
+ "grad_norm": 0.2281145304441452,
+ "learning_rate": 0.0006,
+ "loss": 3.7197465896606445,
+ "step": 2476
+ },
+ {
+ "epoch": 34.40541721275666,
+ "grad_norm": 0.2147362381219864,
+ "learning_rate": 0.0006,
+ "loss": 3.7092337608337402,
+ "step": 2477
+ },
+ {
+ "epoch": 34.419397116644824,
+ "grad_norm": 0.19984203577041626,
+ "learning_rate": 0.0006,
+ "loss": 3.6939496994018555,
+ "step": 2478
+ },
+ {
+ "epoch": 34.43337702053299,
+ "grad_norm": 0.21088480949401855,
+ "learning_rate": 0.0006,
+ "loss": 3.6942667961120605,
+ "step": 2479
+ },
+ {
+ "epoch": 34.44735692442114,
+ "grad_norm": 0.20444616675376892,
+ "learning_rate": 0.0006,
+ "loss": 3.718186378479004,
+ "step": 2480
+ },
+ {
+ "epoch": 34.46133682830931,
+ "grad_norm": 0.19133952260017395,
+ "learning_rate": 0.0006,
+ "loss": 3.697197437286377,
+ "step": 2481
+ },
+ {
+ "epoch": 34.47531673219746,
+ "grad_norm": 0.2219255417585373,
+ "learning_rate": 0.0006,
+ "loss": 3.684386730194092,
+ "step": 2482
+ },
+ {
+ "epoch": 34.489296636085626,
+ "grad_norm": 0.2480643391609192,
+ "learning_rate": 0.0006,
+ "loss": 3.6656622886657715,
+ "step": 2483
+ },
+ {
+ "epoch": 34.50327653997379,
+ "grad_norm": 0.22907346487045288,
+ "learning_rate": 0.0006,
+ "loss": 3.741391897201538,
+ "step": 2484
+ },
+ {
+ "epoch": 34.517256443861946,
+ "grad_norm": 0.20277173817157745,
+ "learning_rate": 0.0006,
+ "loss": 3.7062582969665527,
+ "step": 2485
+ },
+ {
+ "epoch": 34.53123634775011,
+ "grad_norm": 0.21411100029945374,
+ "learning_rate": 0.0006,
+ "loss": 3.691784381866455,
+ "step": 2486
+ },
+ {
+ "epoch": 34.54521625163827,
+ "grad_norm": 0.20261600613594055,
+ "learning_rate": 0.0006,
+ "loss": 3.6855502128601074,
+ "step": 2487
+ },
+ {
+ "epoch": 34.55919615552643,
+ "grad_norm": 0.23913109302520752,
+ "learning_rate": 0.0006,
+ "loss": 3.670754909515381,
+ "step": 2488
+ },
+ {
+ "epoch": 34.57317605941459,
+ "grad_norm": 0.24427077174186707,
+ "learning_rate": 0.0006,
+ "loss": 3.700611114501953,
+ "step": 2489
+ },
+ {
+ "epoch": 34.58715596330275,
+ "grad_norm": 0.20305761694908142,
+ "learning_rate": 0.0006,
+ "loss": 3.7284226417541504,
+ "step": 2490
+ },
+ {
+ "epoch": 34.60113586719091,
+ "grad_norm": 0.20398905873298645,
+ "learning_rate": 0.0006,
+ "loss": 3.6860880851745605,
+ "step": 2491
+ },
+ {
+ "epoch": 34.615115771079076,
+ "grad_norm": 0.21016651391983032,
+ "learning_rate": 0.0006,
+ "loss": 3.7366015911102295,
+ "step": 2492
+ },
+ {
+ "epoch": 34.62909567496723,
+ "grad_norm": 0.22279402613639832,
+ "learning_rate": 0.0006,
+ "loss": 3.7024295330047607,
+ "step": 2493
+ },
+ {
+ "epoch": 34.643075578855395,
+ "grad_norm": 0.25080347061157227,
+ "learning_rate": 0.0006,
+ "loss": 3.68355655670166,
+ "step": 2494
+ },
+ {
+ "epoch": 34.65705548274356,
+ "grad_norm": 0.2702971398830414,
+ "learning_rate": 0.0006,
+ "loss": 3.7400612831115723,
+ "step": 2495
+ },
+ {
+ "epoch": 34.671035386631715,
+ "grad_norm": 0.299398273229599,
+ "learning_rate": 0.0006,
+ "loss": 3.7160325050354004,
+ "step": 2496
+ },
+ {
+ "epoch": 34.68501529051988,
+ "grad_norm": 0.29151082038879395,
+ "learning_rate": 0.0006,
+ "loss": 3.7124147415161133,
+ "step": 2497
+ },
+ {
+ "epoch": 34.69899519440804,
+ "grad_norm": 0.23828288912773132,
+ "learning_rate": 0.0006,
+ "loss": 3.7181267738342285,
+ "step": 2498
+ },
+ {
+ "epoch": 34.7129750982962,
+ "grad_norm": 0.21776588261127472,
+ "learning_rate": 0.0006,
+ "loss": 3.6811792850494385,
+ "step": 2499
+ },
+ {
+ "epoch": 34.72695500218436,
+ "grad_norm": 0.2318469136953354,
+ "learning_rate": 0.0006,
+ "loss": 3.698467254638672,
+ "step": 2500
+ },
+ {
+ "epoch": 34.74093490607252,
+ "grad_norm": 0.22341546416282654,
+ "learning_rate": 0.0006,
+ "loss": 3.7406411170959473,
+ "step": 2501
+ },
+ {
+ "epoch": 34.75491480996068,
+ "grad_norm": 0.20676901936531067,
+ "learning_rate": 0.0006,
+ "loss": 3.6914243698120117,
+ "step": 2502
+ },
+ {
+ "epoch": 34.768894713848844,
+ "grad_norm": 0.20459024608135223,
+ "learning_rate": 0.0006,
+ "loss": 3.713369607925415,
+ "step": 2503
+ },
+ {
+ "epoch": 34.782874617737,
+ "grad_norm": 0.22369320690631866,
+ "learning_rate": 0.0006,
+ "loss": 3.697587490081787,
+ "step": 2504
+ },
+ {
+ "epoch": 34.796854521625164,
+ "grad_norm": 0.2393338829278946,
+ "learning_rate": 0.0006,
+ "loss": 3.7171854972839355,
+ "step": 2505
+ },
+ {
+ "epoch": 34.81083442551333,
+ "grad_norm": 0.23756961524486542,
+ "learning_rate": 0.0006,
+ "loss": 3.6969614028930664,
+ "step": 2506
+ },
+ {
+ "epoch": 34.824814329401484,
+ "grad_norm": 0.22761376202106476,
+ "learning_rate": 0.0006,
+ "loss": 3.722501754760742,
+ "step": 2507
+ },
+ {
+ "epoch": 34.83879423328965,
+ "grad_norm": 0.23564888536930084,
+ "learning_rate": 0.0006,
+ "loss": 3.714003086090088,
+ "step": 2508
+ },
+ {
+ "epoch": 34.8527741371778,
+ "grad_norm": 0.22197313606739044,
+ "learning_rate": 0.0006,
+ "loss": 3.7107110023498535,
+ "step": 2509
+ },
+ {
+ "epoch": 34.86675404106597,
+ "grad_norm": 0.20199328660964966,
+ "learning_rate": 0.0006,
+ "loss": 3.7167551517486572,
+ "step": 2510
+ },
+ {
+ "epoch": 34.88073394495413,
+ "grad_norm": 0.19569700956344604,
+ "learning_rate": 0.0006,
+ "loss": 3.679098129272461,
+ "step": 2511
+ },
+ {
+ "epoch": 34.89471384884229,
+ "grad_norm": 0.21320141851902008,
+ "learning_rate": 0.0006,
+ "loss": 3.733187675476074,
+ "step": 2512
+ },
+ {
+ "epoch": 34.90869375273045,
+ "grad_norm": 0.20074625313282013,
+ "learning_rate": 0.0006,
+ "loss": 3.713339328765869,
+ "step": 2513
+ },
+ {
+ "epoch": 34.92267365661861,
+ "grad_norm": 0.20249252021312714,
+ "learning_rate": 0.0006,
+ "loss": 3.680785655975342,
+ "step": 2514
+ },
+ {
+ "epoch": 34.93665356050677,
+ "grad_norm": 0.22165577113628387,
+ "learning_rate": 0.0006,
+ "loss": 3.696131706237793,
+ "step": 2515
+ },
+ {
+ "epoch": 34.95063346439493,
+ "grad_norm": 0.20769749581813812,
+ "learning_rate": 0.0006,
+ "loss": 3.6910316944122314,
+ "step": 2516
+ },
+ {
+ "epoch": 34.964613368283096,
+ "grad_norm": 0.20857223868370056,
+ "learning_rate": 0.0006,
+ "loss": 3.7327451705932617,
+ "step": 2517
+ },
+ {
+ "epoch": 34.97859327217125,
+ "grad_norm": 0.19155766069889069,
+ "learning_rate": 0.0006,
+ "loss": 3.705609083175659,
+ "step": 2518
+ },
+ {
+ "epoch": 34.992573176059416,
+ "grad_norm": 0.17890529334545135,
+ "learning_rate": 0.0006,
+ "loss": 3.6844797134399414,
+ "step": 2519
+ },
+ {
+ "epoch": 35.0,
+ "grad_norm": 0.2053528130054474,
+ "learning_rate": 0.0006,
+ "loss": 3.6942501068115234,
+ "step": 2520
+ },
+ {
+ "epoch": 35.0,
+ "eval_loss": 3.998469591140747,
+ "eval_runtime": 43.9147,
+ "eval_samples_per_second": 55.608,
+ "eval_steps_per_second": 3.484,
+ "step": 2520
+ },
+ {
+ "epoch": 35.01397990388816,
+ "grad_norm": 0.2288869470357895,
+ "learning_rate": 0.0006,
+ "loss": 3.6966426372528076,
+ "step": 2521
+ },
+ {
+ "epoch": 35.02795980777632,
+ "grad_norm": 0.25702035427093506,
+ "learning_rate": 0.0006,
+ "loss": 3.6622562408447266,
+ "step": 2522
+ },
+ {
+ "epoch": 35.04193971166448,
+ "grad_norm": 0.254422128200531,
+ "learning_rate": 0.0006,
+ "loss": 3.690046548843384,
+ "step": 2523
+ },
+ {
+ "epoch": 35.05591961555265,
+ "grad_norm": 0.24177077412605286,
+ "learning_rate": 0.0006,
+ "loss": 3.685335874557495,
+ "step": 2524
+ },
+ {
+ "epoch": 35.0698995194408,
+ "grad_norm": 0.23959586024284363,
+ "learning_rate": 0.0006,
+ "loss": 3.6534650325775146,
+ "step": 2525
+ },
+ {
+ "epoch": 35.083879423328966,
+ "grad_norm": 0.23474839329719543,
+ "learning_rate": 0.0006,
+ "loss": 3.7092814445495605,
+ "step": 2526
+ },
+ {
+ "epoch": 35.09785932721712,
+ "grad_norm": 0.23240867257118225,
+ "learning_rate": 0.0006,
+ "loss": 3.6819097995758057,
+ "step": 2527
+ },
+ {
+ "epoch": 35.111839231105286,
+ "grad_norm": 0.26267048716545105,
+ "learning_rate": 0.0006,
+ "loss": 3.6566696166992188,
+ "step": 2528
+ },
+ {
+ "epoch": 35.12581913499345,
+ "grad_norm": 0.27070754766464233,
+ "learning_rate": 0.0006,
+ "loss": 3.676304340362549,
+ "step": 2529
+ },
+ {
+ "epoch": 35.139799038881605,
+ "grad_norm": 0.25297826528549194,
+ "learning_rate": 0.0006,
+ "loss": 3.65259051322937,
+ "step": 2530
+ },
+ {
+ "epoch": 35.15377894276977,
+ "grad_norm": 0.22776272892951965,
+ "learning_rate": 0.0006,
+ "loss": 3.6813838481903076,
+ "step": 2531
+ },
+ {
+ "epoch": 35.16775884665793,
+ "grad_norm": 0.2288261204957962,
+ "learning_rate": 0.0006,
+ "loss": 3.6916379928588867,
+ "step": 2532
+ },
+ {
+ "epoch": 35.18173875054609,
+ "grad_norm": 0.20445892214775085,
+ "learning_rate": 0.0006,
+ "loss": 3.6550145149230957,
+ "step": 2533
+ },
+ {
+ "epoch": 35.19571865443425,
+ "grad_norm": 0.20298904180526733,
+ "learning_rate": 0.0006,
+ "loss": 3.704042434692383,
+ "step": 2534
+ },
+ {
+ "epoch": 35.20969855832241,
+ "grad_norm": 0.2264423668384552,
+ "learning_rate": 0.0006,
+ "loss": 3.646308183670044,
+ "step": 2535
+ },
+ {
+ "epoch": 35.22367846221057,
+ "grad_norm": 0.21537378430366516,
+ "learning_rate": 0.0006,
+ "loss": 3.686048984527588,
+ "step": 2536
+ },
+ {
+ "epoch": 35.237658366098735,
+ "grad_norm": 0.19820059835910797,
+ "learning_rate": 0.0006,
+ "loss": 3.6993050575256348,
+ "step": 2537
+ },
+ {
+ "epoch": 35.25163826998689,
+ "grad_norm": 0.19485290348529816,
+ "learning_rate": 0.0006,
+ "loss": 3.6507070064544678,
+ "step": 2538
+ },
+ {
+ "epoch": 35.265618173875055,
+ "grad_norm": 0.21234364807605743,
+ "learning_rate": 0.0006,
+ "loss": 3.6913719177246094,
+ "step": 2539
+ },
+ {
+ "epoch": 35.27959807776322,
+ "grad_norm": 0.19834300875663757,
+ "learning_rate": 0.0006,
+ "loss": 3.6793041229248047,
+ "step": 2540
+ },
+ {
+ "epoch": 35.293577981651374,
+ "grad_norm": 0.1969013512134552,
+ "learning_rate": 0.0006,
+ "loss": 3.7063517570495605,
+ "step": 2541
+ },
+ {
+ "epoch": 35.30755788553954,
+ "grad_norm": 0.196136936545372,
+ "learning_rate": 0.0006,
+ "loss": 3.679825782775879,
+ "step": 2542
+ },
+ {
+ "epoch": 35.3215377894277,
+ "grad_norm": 0.20465479791164398,
+ "learning_rate": 0.0006,
+ "loss": 3.698906421661377,
+ "step": 2543
+ },
+ {
+ "epoch": 35.33551769331586,
+ "grad_norm": 0.204293355345726,
+ "learning_rate": 0.0006,
+ "loss": 3.728549003601074,
+ "step": 2544
+ },
+ {
+ "epoch": 35.34949759720402,
+ "grad_norm": 0.18861903250217438,
+ "learning_rate": 0.0006,
+ "loss": 3.687018632888794,
+ "step": 2545
+ },
+ {
+ "epoch": 35.36347750109218,
+ "grad_norm": 0.19066226482391357,
+ "learning_rate": 0.0006,
+ "loss": 3.667919158935547,
+ "step": 2546
+ },
+ {
+ "epoch": 35.37745740498034,
+ "grad_norm": 0.19985736906528473,
+ "learning_rate": 0.0006,
+ "loss": 3.6697773933410645,
+ "step": 2547
+ },
+ {
+ "epoch": 35.391437308868504,
+ "grad_norm": 0.20669348537921906,
+ "learning_rate": 0.0006,
+ "loss": 3.6718077659606934,
+ "step": 2548
+ },
+ {
+ "epoch": 35.40541721275666,
+ "grad_norm": 0.22164477407932281,
+ "learning_rate": 0.0006,
+ "loss": 3.692106246948242,
+ "step": 2549
+ },
+ {
+ "epoch": 35.419397116644824,
+ "grad_norm": 0.20884688198566437,
+ "learning_rate": 0.0006,
+ "loss": 3.714324712753296,
+ "step": 2550
+ },
+ {
+ "epoch": 35.43337702053299,
+ "grad_norm": 0.21811005473136902,
+ "learning_rate": 0.0006,
+ "loss": 3.678694725036621,
+ "step": 2551
+ },
+ {
+ "epoch": 35.44735692442114,
+ "grad_norm": 0.2427632063627243,
+ "learning_rate": 0.0006,
+ "loss": 3.6584935188293457,
+ "step": 2552
+ },
+ {
+ "epoch": 35.46133682830931,
+ "grad_norm": 0.2584928572177887,
+ "learning_rate": 0.0006,
+ "loss": 3.694148063659668,
+ "step": 2553
+ },
+ {
+ "epoch": 35.47531673219746,
+ "grad_norm": 0.2594548761844635,
+ "learning_rate": 0.0006,
+ "loss": 3.690629005432129,
+ "step": 2554
+ },
+ {
+ "epoch": 35.489296636085626,
+ "grad_norm": 0.2521844208240509,
+ "learning_rate": 0.0006,
+ "loss": 3.6949915885925293,
+ "step": 2555
+ },
+ {
+ "epoch": 35.50327653997379,
+ "grad_norm": 0.2284533679485321,
+ "learning_rate": 0.0006,
+ "loss": 3.6822848320007324,
+ "step": 2556
+ },
+ {
+ "epoch": 35.517256443861946,
+ "grad_norm": 0.2350241094827652,
+ "learning_rate": 0.0006,
+ "loss": 3.6841659545898438,
+ "step": 2557
+ },
+ {
+ "epoch": 35.53123634775011,
+ "grad_norm": 0.22496885061264038,
+ "learning_rate": 0.0006,
+ "loss": 3.676447629928589,
+ "step": 2558
+ },
+ {
+ "epoch": 35.54521625163827,
+ "grad_norm": 0.24326276779174805,
+ "learning_rate": 0.0006,
+ "loss": 3.681678533554077,
+ "step": 2559
+ },
+ {
+ "epoch": 35.55919615552643,
+ "grad_norm": 0.26298362016677856,
+ "learning_rate": 0.0006,
+ "loss": 3.6877617835998535,
+ "step": 2560
+ },
+ {
+ "epoch": 35.57317605941459,
+ "grad_norm": 0.2507239282131195,
+ "learning_rate": 0.0006,
+ "loss": 3.7089176177978516,
+ "step": 2561
+ },
+ {
+ "epoch": 35.58715596330275,
+ "grad_norm": 0.2276458442211151,
+ "learning_rate": 0.0006,
+ "loss": 3.705570936203003,
+ "step": 2562
+ },
+ {
+ "epoch": 35.60113586719091,
+ "grad_norm": 0.23317085206508636,
+ "learning_rate": 0.0006,
+ "loss": 3.6772396564483643,
+ "step": 2563
+ },
+ {
+ "epoch": 35.615115771079076,
+ "grad_norm": 0.23301710188388824,
+ "learning_rate": 0.0006,
+ "loss": 3.694855213165283,
+ "step": 2564
+ },
+ {
+ "epoch": 35.62909567496723,
+ "grad_norm": 0.2170179933309555,
+ "learning_rate": 0.0006,
+ "loss": 3.7095537185668945,
+ "step": 2565
+ },
+ {
+ "epoch": 35.643075578855395,
+ "grad_norm": 0.21211965382099152,
+ "learning_rate": 0.0006,
+ "loss": 3.670109272003174,
+ "step": 2566
+ },
+ {
+ "epoch": 35.65705548274356,
+ "grad_norm": 0.21052585542201996,
+ "learning_rate": 0.0006,
+ "loss": 3.6576027870178223,
+ "step": 2567
+ },
+ {
+ "epoch": 35.671035386631715,
+ "grad_norm": 0.21556039154529572,
+ "learning_rate": 0.0006,
+ "loss": 3.6870639324188232,
+ "step": 2568
+ },
+ {
+ "epoch": 35.68501529051988,
+ "grad_norm": 0.2246469408273697,
+ "learning_rate": 0.0006,
+ "loss": 3.675652503967285,
+ "step": 2569
+ },
+ {
+ "epoch": 35.69899519440804,
+ "grad_norm": 0.21891754865646362,
+ "learning_rate": 0.0006,
+ "loss": 3.692298650741577,
+ "step": 2570
+ },
+ {
+ "epoch": 35.7129750982962,
+ "grad_norm": 0.18774104118347168,
+ "learning_rate": 0.0006,
+ "loss": 3.681035041809082,
+ "step": 2571
+ },
+ {
+ "epoch": 35.72695500218436,
+ "grad_norm": 0.19461573660373688,
+ "learning_rate": 0.0006,
+ "loss": 3.7007932662963867,
+ "step": 2572
+ },
+ {
+ "epoch": 35.74093490607252,
+ "grad_norm": 0.25579094886779785,
+ "learning_rate": 0.0006,
+ "loss": 3.724409580230713,
+ "step": 2573
+ },
+ {
+ "epoch": 35.75491480996068,
+ "grad_norm": 0.27635645866394043,
+ "learning_rate": 0.0006,
+ "loss": 3.68107271194458,
+ "step": 2574
+ },
+ {
+ "epoch": 35.768894713848844,
+ "grad_norm": 0.2233380675315857,
+ "learning_rate": 0.0006,
+ "loss": 3.7123913764953613,
+ "step": 2575
+ },
+ {
+ "epoch": 35.782874617737,
+ "grad_norm": 0.19383835792541504,
+ "learning_rate": 0.0006,
+ "loss": 3.6948328018188477,
+ "step": 2576
+ },
+ {
+ "epoch": 35.796854521625164,
+ "grad_norm": 0.18138426542282104,
+ "learning_rate": 0.0006,
+ "loss": 3.6837103366851807,
+ "step": 2577
+ },
+ {
+ "epoch": 35.81083442551333,
+ "grad_norm": 0.18680135905742645,
+ "learning_rate": 0.0006,
+ "loss": 3.7106502056121826,
+ "step": 2578
+ },
+ {
+ "epoch": 35.824814329401484,
+ "grad_norm": 0.19226312637329102,
+ "learning_rate": 0.0006,
+ "loss": 3.69488787651062,
+ "step": 2579
+ },
+ {
+ "epoch": 35.83879423328965,
+ "grad_norm": 0.19224657118320465,
+ "learning_rate": 0.0006,
+ "loss": 3.7103662490844727,
+ "step": 2580
+ },
+ {
+ "epoch": 35.8527741371778,
+ "grad_norm": 0.18991880118846893,
+ "learning_rate": 0.0006,
+ "loss": 3.7154245376586914,
+ "step": 2581
+ },
+ {
+ "epoch": 35.86675404106597,
+ "grad_norm": 0.2036849409341812,
+ "learning_rate": 0.0006,
+ "loss": 3.723738193511963,
+ "step": 2582
+ },
+ {
+ "epoch": 35.88073394495413,
+ "grad_norm": 0.24730375409126282,
+ "learning_rate": 0.0006,
+ "loss": 3.6830549240112305,
+ "step": 2583
+ },
+ {
+ "epoch": 35.89471384884229,
+ "grad_norm": 0.26552343368530273,
+ "learning_rate": 0.0006,
+ "loss": 3.7025017738342285,
+ "step": 2584
+ },
+ {
+ "epoch": 35.90869375273045,
+ "grad_norm": 0.2621893286705017,
+ "learning_rate": 0.0006,
+ "loss": 3.697399854660034,
+ "step": 2585
+ },
+ {
+ "epoch": 35.92267365661861,
+ "grad_norm": 0.2320089191198349,
+ "learning_rate": 0.0006,
+ "loss": 3.722207546234131,
+ "step": 2586
+ },
+ {
+ "epoch": 35.93665356050677,
+ "grad_norm": 0.1848745346069336,
+ "learning_rate": 0.0006,
+ "loss": 3.711249351501465,
+ "step": 2587
+ },
+ {
+ "epoch": 35.95063346439493,
+ "grad_norm": 0.24218113720417023,
+ "learning_rate": 0.0006,
+ "loss": 3.698894500732422,
+ "step": 2588
+ },
+ {
+ "epoch": 35.964613368283096,
+ "grad_norm": 0.29338452219963074,
+ "learning_rate": 0.0006,
+ "loss": 3.7470521926879883,
+ "step": 2589
+ },
+ {
+ "epoch": 35.97859327217125,
+ "grad_norm": 0.2804136276245117,
+ "learning_rate": 0.0006,
+ "loss": 3.750649929046631,
+ "step": 2590
+ },
+ {
+ "epoch": 35.992573176059416,
+ "grad_norm": 0.26404470205307007,
+ "learning_rate": 0.0006,
+ "loss": 3.6995797157287598,
+ "step": 2591
+ },
+ {
+ "epoch": 36.0,
+ "grad_norm": 0.27446141839027405,
+ "learning_rate": 0.0006,
+ "loss": 3.715768814086914,
+ "step": 2592
+ },
+ {
+ "epoch": 36.0,
+ "eval_loss": 4.007599830627441,
+ "eval_runtime": 44.0149,
+ "eval_samples_per_second": 55.481,
+ "eval_steps_per_second": 3.476,
+ "step": 2592
+ },
+ {
+ "epoch": 36.01397990388816,
+ "grad_norm": 0.2365594208240509,
+ "learning_rate": 0.0006,
+ "loss": 3.6529457569122314,
+ "step": 2593
+ },
+ {
+ "epoch": 36.02795980777632,
+ "grad_norm": 0.24824099242687225,
+ "learning_rate": 0.0006,
+ "loss": 3.6703386306762695,
+ "step": 2594
+ },
+ {
+ "epoch": 36.04193971166448,
+ "grad_norm": 0.26802200078964233,
+ "learning_rate": 0.0006,
+ "loss": 3.688307762145996,
+ "step": 2595
+ },
+ {
+ "epoch": 36.05591961555265,
+ "grad_norm": 0.2552911341190338,
+ "learning_rate": 0.0006,
+ "loss": 3.681797981262207,
+ "step": 2596
+ },
+ {
+ "epoch": 36.0698995194408,
+ "grad_norm": 0.254991739988327,
+ "learning_rate": 0.0006,
+ "loss": 3.644087791442871,
+ "step": 2597
+ },
+ {
+ "epoch": 36.083879423328966,
+ "grad_norm": 0.2496735155582428,
+ "learning_rate": 0.0006,
+ "loss": 3.644047737121582,
+ "step": 2598
+ },
+ {
+ "epoch": 36.09785932721712,
+ "grad_norm": 0.23637443780899048,
+ "learning_rate": 0.0006,
+ "loss": 3.684454917907715,
+ "step": 2599
+ },
+ {
+ "epoch": 36.111839231105286,
+ "grad_norm": 0.22065003216266632,
+ "learning_rate": 0.0006,
+ "loss": 3.661752700805664,
+ "step": 2600
+ },
+ {
+ "epoch": 36.12581913499345,
+ "grad_norm": 0.2292395532131195,
+ "learning_rate": 0.0006,
+ "loss": 3.6709558963775635,
+ "step": 2601
+ },
+ {
+ "epoch": 36.139799038881605,
+ "grad_norm": 0.22295089066028595,
+ "learning_rate": 0.0006,
+ "loss": 3.642230987548828,
+ "step": 2602
+ },
+ {
+ "epoch": 36.15377894276977,
+ "grad_norm": 0.2220531553030014,
+ "learning_rate": 0.0006,
+ "loss": 3.653268814086914,
+ "step": 2603
+ },
+ {
+ "epoch": 36.16775884665793,
+ "grad_norm": 0.21605174243450165,
+ "learning_rate": 0.0006,
+ "loss": 3.6791329383850098,
+ "step": 2604
+ },
+ {
+ "epoch": 36.18173875054609,
+ "grad_norm": 0.20932699739933014,
+ "learning_rate": 0.0006,
+ "loss": 3.6496856212615967,
+ "step": 2605
+ },
+ {
+ "epoch": 36.19571865443425,
+ "grad_norm": 0.20941385626792908,
+ "learning_rate": 0.0006,
+ "loss": 3.6445729732513428,
+ "step": 2606
+ },
+ {
+ "epoch": 36.20969855832241,
+ "grad_norm": 0.1987197995185852,
+ "learning_rate": 0.0006,
+ "loss": 3.6481809616088867,
+ "step": 2607
+ },
+ {
+ "epoch": 36.22367846221057,
+ "grad_norm": 0.19054439663887024,
+ "learning_rate": 0.0006,
+ "loss": 3.66894268989563,
+ "step": 2608
+ },
+ {
+ "epoch": 36.237658366098735,
+ "grad_norm": 0.19940806925296783,
+ "learning_rate": 0.0006,
+ "loss": 3.7123427391052246,
+ "step": 2609
+ },
+ {
+ "epoch": 36.25163826998689,
+ "grad_norm": 0.22157685458660126,
+ "learning_rate": 0.0006,
+ "loss": 3.6707541942596436,
+ "step": 2610
+ },
+ {
+ "epoch": 36.265618173875055,
+ "grad_norm": 0.2362316995859146,
+ "learning_rate": 0.0006,
+ "loss": 3.6906795501708984,
+ "step": 2611
+ },
+ {
+ "epoch": 36.27959807776322,
+ "grad_norm": 0.24560341238975525,
+ "learning_rate": 0.0006,
+ "loss": 3.668379783630371,
+ "step": 2612
+ },
+ {
+ "epoch": 36.293577981651374,
+ "grad_norm": 0.22814054787158966,
+ "learning_rate": 0.0006,
+ "loss": 3.665527820587158,
+ "step": 2613
+ },
+ {
+ "epoch": 36.30755788553954,
+ "grad_norm": 0.2156696617603302,
+ "learning_rate": 0.0006,
+ "loss": 3.673835277557373,
+ "step": 2614
+ },
+ {
+ "epoch": 36.3215377894277,
+ "grad_norm": 0.20152772963047028,
+ "learning_rate": 0.0006,
+ "loss": 3.6512670516967773,
+ "step": 2615
+ },
+ {
+ "epoch": 36.33551769331586,
+ "grad_norm": 0.22466860711574554,
+ "learning_rate": 0.0006,
+ "loss": 3.6877706050872803,
+ "step": 2616
+ },
+ {
+ "epoch": 36.34949759720402,
+ "grad_norm": 0.21688112616539001,
+ "learning_rate": 0.0006,
+ "loss": 3.6895859241485596,
+ "step": 2617
+ },
+ {
+ "epoch": 36.36347750109218,
+ "grad_norm": 0.19836577773094177,
+ "learning_rate": 0.0006,
+ "loss": 3.6658992767333984,
+ "step": 2618
+ },
+ {
+ "epoch": 36.37745740498034,
+ "grad_norm": 0.1995069831609726,
+ "learning_rate": 0.0006,
+ "loss": 3.677614450454712,
+ "step": 2619
+ },
+ {
+ "epoch": 36.391437308868504,
+ "grad_norm": 0.21234792470932007,
+ "learning_rate": 0.0006,
+ "loss": 3.6971967220306396,
+ "step": 2620
+ },
+ {
+ "epoch": 36.40541721275666,
+ "grad_norm": 0.20898285508155823,
+ "learning_rate": 0.0006,
+ "loss": 3.6936516761779785,
+ "step": 2621
+ },
+ {
+ "epoch": 36.419397116644824,
+ "grad_norm": 0.2115008533000946,
+ "learning_rate": 0.0006,
+ "loss": 3.6674065589904785,
+ "step": 2622
+ },
+ {
+ "epoch": 36.43337702053299,
+ "grad_norm": 0.2041143774986267,
+ "learning_rate": 0.0006,
+ "loss": 3.6455483436584473,
+ "step": 2623
+ },
+ {
+ "epoch": 36.44735692442114,
+ "grad_norm": 0.1966932713985443,
+ "learning_rate": 0.0006,
+ "loss": 3.6938109397888184,
+ "step": 2624
+ },
+ {
+ "epoch": 36.46133682830931,
+ "grad_norm": 0.20062223076820374,
+ "learning_rate": 0.0006,
+ "loss": 3.6775765419006348,
+ "step": 2625
+ },
+ {
+ "epoch": 36.47531673219746,
+ "grad_norm": 0.20610390603542328,
+ "learning_rate": 0.0006,
+ "loss": 3.6835384368896484,
+ "step": 2626
+ },
+ {
+ "epoch": 36.489296636085626,
+ "grad_norm": 0.20481473207473755,
+ "learning_rate": 0.0006,
+ "loss": 3.6794047355651855,
+ "step": 2627
+ },
+ {
+ "epoch": 36.50327653997379,
+ "grad_norm": 0.18964581191539764,
+ "learning_rate": 0.0006,
+ "loss": 3.7035841941833496,
+ "step": 2628
+ },
+ {
+ "epoch": 36.517256443861946,
+ "grad_norm": 0.2029343545436859,
+ "learning_rate": 0.0006,
+ "loss": 3.6667590141296387,
+ "step": 2629
+ },
+ {
+ "epoch": 36.53123634775011,
+ "grad_norm": 0.23656968772411346,
+ "learning_rate": 0.0006,
+ "loss": 3.6974546909332275,
+ "step": 2630
+ },
+ {
+ "epoch": 36.54521625163827,
+ "grad_norm": 0.23401431739330292,
+ "learning_rate": 0.0006,
+ "loss": 3.668936252593994,
+ "step": 2631
+ },
+ {
+ "epoch": 36.55919615552643,
+ "grad_norm": 0.22258102893829346,
+ "learning_rate": 0.0006,
+ "loss": 3.667977809906006,
+ "step": 2632
+ },
+ {
+ "epoch": 36.57317605941459,
+ "grad_norm": 0.20849554240703583,
+ "learning_rate": 0.0006,
+ "loss": 3.6674845218658447,
+ "step": 2633
+ },
+ {
+ "epoch": 36.58715596330275,
+ "grad_norm": 0.20684309303760529,
+ "learning_rate": 0.0006,
+ "loss": 3.6828644275665283,
+ "step": 2634
+ },
+ {
+ "epoch": 36.60113586719091,
+ "grad_norm": 0.19114233553409576,
+ "learning_rate": 0.0006,
+ "loss": 3.7084832191467285,
+ "step": 2635
+ },
+ {
+ "epoch": 36.615115771079076,
+ "grad_norm": 0.20382429659366608,
+ "learning_rate": 0.0006,
+ "loss": 3.68354868888855,
+ "step": 2636
+ },
+ {
+ "epoch": 36.62909567496723,
+ "grad_norm": 0.22526590526103973,
+ "learning_rate": 0.0006,
+ "loss": 3.684112310409546,
+ "step": 2637
+ },
+ {
+ "epoch": 36.643075578855395,
+ "grad_norm": 0.20735391974449158,
+ "learning_rate": 0.0006,
+ "loss": 3.67702054977417,
+ "step": 2638
+ },
+ {
+ "epoch": 36.65705548274356,
+ "grad_norm": 0.18549653887748718,
+ "learning_rate": 0.0006,
+ "loss": 3.6840810775756836,
+ "step": 2639
+ },
+ {
+ "epoch": 36.671035386631715,
+ "grad_norm": 0.1805262714624405,
+ "learning_rate": 0.0006,
+ "loss": 3.688119411468506,
+ "step": 2640
+ },
+ {
+ "epoch": 36.68501529051988,
+ "grad_norm": 0.17545704543590546,
+ "learning_rate": 0.0006,
+ "loss": 3.6477861404418945,
+ "step": 2641
+ },
+ {
+ "epoch": 36.69899519440804,
+ "grad_norm": 0.1772221326828003,
+ "learning_rate": 0.0006,
+ "loss": 3.6935806274414062,
+ "step": 2642
+ },
+ {
+ "epoch": 36.7129750982962,
+ "grad_norm": 0.18701671063899994,
+ "learning_rate": 0.0006,
+ "loss": 3.6820428371429443,
+ "step": 2643
+ },
+ {
+ "epoch": 36.72695500218436,
+ "grad_norm": 0.2057863473892212,
+ "learning_rate": 0.0006,
+ "loss": 3.669762134552002,
+ "step": 2644
+ },
+ {
+ "epoch": 36.74093490607252,
+ "grad_norm": 0.2565848231315613,
+ "learning_rate": 0.0006,
+ "loss": 3.717599391937256,
+ "step": 2645
+ },
+ {
+ "epoch": 36.75491480996068,
+ "grad_norm": 0.24362123012542725,
+ "learning_rate": 0.0006,
+ "loss": 3.671900987625122,
+ "step": 2646
+ },
+ {
+ "epoch": 36.768894713848844,
+ "grad_norm": 0.19606009125709534,
+ "learning_rate": 0.0006,
+ "loss": 3.6782546043395996,
+ "step": 2647
+ },
+ {
+ "epoch": 36.782874617737,
+ "grad_norm": 0.1948748379945755,
+ "learning_rate": 0.0006,
+ "loss": 3.6823501586914062,
+ "step": 2648
+ },
+ {
+ "epoch": 36.796854521625164,
+ "grad_norm": 0.22289852797985077,
+ "learning_rate": 0.0006,
+ "loss": 3.693469762802124,
+ "step": 2649
+ },
+ {
+ "epoch": 36.81083442551333,
+ "grad_norm": 0.24751701951026917,
+ "learning_rate": 0.0006,
+ "loss": 3.700678825378418,
+ "step": 2650
+ },
+ {
+ "epoch": 36.824814329401484,
+ "grad_norm": 0.28663966059684753,
+ "learning_rate": 0.0006,
+ "loss": 3.6960878372192383,
+ "step": 2651
+ },
+ {
+ "epoch": 36.83879423328965,
+ "grad_norm": 0.3288552165031433,
+ "learning_rate": 0.0006,
+ "loss": 3.7255043983459473,
+ "step": 2652
+ },
+ {
+ "epoch": 36.8527741371778,
+ "grad_norm": 0.3555443286895752,
+ "learning_rate": 0.0006,
+ "loss": 3.725308418273926,
+ "step": 2653
+ },
+ {
+ "epoch": 36.86675404106597,
+ "grad_norm": 0.3204147219657898,
+ "learning_rate": 0.0006,
+ "loss": 3.7137985229492188,
+ "step": 2654
+ },
+ {
+ "epoch": 36.88073394495413,
+ "grad_norm": 0.2944706976413727,
+ "learning_rate": 0.0006,
+ "loss": 3.7032840251922607,
+ "step": 2655
+ },
+ {
+ "epoch": 36.89471384884229,
+ "grad_norm": 0.2845679223537445,
+ "learning_rate": 0.0006,
+ "loss": 3.6840004920959473,
+ "step": 2656
+ },
+ {
+ "epoch": 36.90869375273045,
+ "grad_norm": 0.2815704047679901,
+ "learning_rate": 0.0006,
+ "loss": 3.6958417892456055,
+ "step": 2657
+ },
+ {
+ "epoch": 36.92267365661861,
+ "grad_norm": 0.2733481228351593,
+ "learning_rate": 0.0006,
+ "loss": 3.677690029144287,
+ "step": 2658
+ },
+ {
+ "epoch": 36.93665356050677,
+ "grad_norm": 0.29572054743766785,
+ "learning_rate": 0.0006,
+ "loss": 3.6983718872070312,
+ "step": 2659
+ },
+ {
+ "epoch": 36.95063346439493,
+ "grad_norm": 0.2487923800945282,
+ "learning_rate": 0.0006,
+ "loss": 3.7041163444519043,
+ "step": 2660
+ },
+ {
+ "epoch": 36.964613368283096,
+ "grad_norm": 0.2541966438293457,
+ "learning_rate": 0.0006,
+ "loss": 3.7038979530334473,
+ "step": 2661
+ },
+ {
+ "epoch": 36.97859327217125,
+ "grad_norm": 0.2441335767507553,
+ "learning_rate": 0.0006,
+ "loss": 3.717966079711914,
+ "step": 2662
+ },
+ {
+ "epoch": 36.992573176059416,
+ "grad_norm": 0.2304554283618927,
+ "learning_rate": 0.0006,
+ "loss": 3.671098232269287,
+ "step": 2663
+ },
+ {
+ "epoch": 37.0,
+ "grad_norm": 0.2346591204404831,
+ "learning_rate": 0.0006,
+ "loss": 3.680298089981079,
+ "step": 2664
+ },
+ {
+ "epoch": 37.0,
+ "eval_loss": 3.9944777488708496,
+ "eval_runtime": 43.9862,
+ "eval_samples_per_second": 55.517,
+ "eval_steps_per_second": 3.478,
+ "step": 2664
+ },
+ {
+ "epoch": 37.01397990388816,
+ "grad_norm": 0.22970618307590485,
+ "learning_rate": 0.0006,
+ "loss": 3.6835923194885254,
+ "step": 2665
+ },
+ {
+ "epoch": 37.02795980777632,
+ "grad_norm": 0.25463759899139404,
+ "learning_rate": 0.0006,
+ "loss": 3.658339023590088,
+ "step": 2666
+ },
+ {
+ "epoch": 37.04193971166448,
+ "grad_norm": 0.2520577311515808,
+ "learning_rate": 0.0006,
+ "loss": 3.6275506019592285,
+ "step": 2667
+ },
+ {
+ "epoch": 37.05591961555265,
+ "grad_norm": 0.22698813676834106,
+ "learning_rate": 0.0006,
+ "loss": 3.65043568611145,
+ "step": 2668
+ },
+ {
+ "epoch": 37.0698995194408,
+ "grad_norm": 0.21133972704410553,
+ "learning_rate": 0.0006,
+ "loss": 3.6262078285217285,
+ "step": 2669
+ },
+ {
+ "epoch": 37.083879423328966,
+ "grad_norm": 0.21940460801124573,
+ "learning_rate": 0.0006,
+ "loss": 3.6709489822387695,
+ "step": 2670
+ },
+ {
+ "epoch": 37.09785932721712,
+ "grad_norm": 0.21897517144680023,
+ "learning_rate": 0.0006,
+ "loss": 3.6621508598327637,
+ "step": 2671
+ },
+ {
+ "epoch": 37.111839231105286,
+ "grad_norm": 0.2270219624042511,
+ "learning_rate": 0.0006,
+ "loss": 3.6334924697875977,
+ "step": 2672
+ },
+ {
+ "epoch": 37.12581913499345,
+ "grad_norm": 0.22082042694091797,
+ "learning_rate": 0.0006,
+ "loss": 3.662209987640381,
+ "step": 2673
+ },
+ {
+ "epoch": 37.139799038881605,
+ "grad_norm": 0.19931960105895996,
+ "learning_rate": 0.0006,
+ "loss": 3.6655359268188477,
+ "step": 2674
+ },
+ {
+ "epoch": 37.15377894276977,
+ "grad_norm": 0.21451307833194733,
+ "learning_rate": 0.0006,
+ "loss": 3.656287670135498,
+ "step": 2675
+ },
+ {
+ "epoch": 37.16775884665793,
+ "grad_norm": 0.2131514698266983,
+ "learning_rate": 0.0006,
+ "loss": 3.635054111480713,
+ "step": 2676
+ },
+ {
+ "epoch": 37.18173875054609,
+ "grad_norm": 0.20425808429718018,
+ "learning_rate": 0.0006,
+ "loss": 3.67653226852417,
+ "step": 2677
+ },
+ {
+ "epoch": 37.19571865443425,
+ "grad_norm": 0.19423379004001617,
+ "learning_rate": 0.0006,
+ "loss": 3.6827316284179688,
+ "step": 2678
+ },
+ {
+ "epoch": 37.20969855832241,
+ "grad_norm": 0.1954883486032486,
+ "learning_rate": 0.0006,
+ "loss": 3.658092498779297,
+ "step": 2679
+ },
+ {
+ "epoch": 37.22367846221057,
+ "grad_norm": 0.21153928339481354,
+ "learning_rate": 0.0006,
+ "loss": 3.6675186157226562,
+ "step": 2680
+ },
+ {
+ "epoch": 37.237658366098735,
+ "grad_norm": 0.2032976895570755,
+ "learning_rate": 0.0006,
+ "loss": 3.6725759506225586,
+ "step": 2681
+ },
+ {
+ "epoch": 37.25163826998689,
+ "grad_norm": 0.19839346408843994,
+ "learning_rate": 0.0006,
+ "loss": 3.660851240158081,
+ "step": 2682
+ },
+ {
+ "epoch": 37.265618173875055,
+ "grad_norm": 0.1884699910879135,
+ "learning_rate": 0.0006,
+ "loss": 3.6653623580932617,
+ "step": 2683
+ },
+ {
+ "epoch": 37.27959807776322,
+ "grad_norm": 0.19558705389499664,
+ "learning_rate": 0.0006,
+ "loss": 3.648016929626465,
+ "step": 2684
+ },
+ {
+ "epoch": 37.293577981651374,
+ "grad_norm": 0.19453682005405426,
+ "learning_rate": 0.0006,
+ "loss": 3.6804773807525635,
+ "step": 2685
+ },
+ {
+ "epoch": 37.30755788553954,
+ "grad_norm": 0.1901177167892456,
+ "learning_rate": 0.0006,
+ "loss": 3.6533353328704834,
+ "step": 2686
+ },
+ {
+ "epoch": 37.3215377894277,
+ "grad_norm": 0.19425596296787262,
+ "learning_rate": 0.0006,
+ "loss": 3.665745735168457,
+ "step": 2687
+ },
+ {
+ "epoch": 37.33551769331586,
+ "grad_norm": 0.17583411931991577,
+ "learning_rate": 0.0006,
+ "loss": 3.679112434387207,
+ "step": 2688
+ },
+ {
+ "epoch": 37.34949759720402,
+ "grad_norm": 0.19667863845825195,
+ "learning_rate": 0.0006,
+ "loss": 3.6650352478027344,
+ "step": 2689
+ },
+ {
+ "epoch": 37.36347750109218,
+ "grad_norm": 0.22803270816802979,
+ "learning_rate": 0.0006,
+ "loss": 3.6658573150634766,
+ "step": 2690
+ },
+ {
+ "epoch": 37.37745740498034,
+ "grad_norm": 0.20589298009872437,
+ "learning_rate": 0.0006,
+ "loss": 3.6587300300598145,
+ "step": 2691
+ },
+ {
+ "epoch": 37.391437308868504,
+ "grad_norm": 0.1946951299905777,
+ "learning_rate": 0.0006,
+ "loss": 3.6515092849731445,
+ "step": 2692
+ },
+ {
+ "epoch": 37.40541721275666,
+ "grad_norm": 0.19029614329338074,
+ "learning_rate": 0.0006,
+ "loss": 3.6383113861083984,
+ "step": 2693
+ },
+ {
+ "epoch": 37.419397116644824,
+ "grad_norm": 0.1944548338651657,
+ "learning_rate": 0.0006,
+ "loss": 3.7017135620117188,
+ "step": 2694
+ },
+ {
+ "epoch": 37.43337702053299,
+ "grad_norm": 0.19482386112213135,
+ "learning_rate": 0.0006,
+ "loss": 3.6791775226593018,
+ "step": 2695
+ },
+ {
+ "epoch": 37.44735692442114,
+ "grad_norm": 0.23276680707931519,
+ "learning_rate": 0.0006,
+ "loss": 3.672245979309082,
+ "step": 2696
+ },
+ {
+ "epoch": 37.46133682830931,
+ "grad_norm": 0.22267542779445648,
+ "learning_rate": 0.0006,
+ "loss": 3.683380365371704,
+ "step": 2697
+ },
+ {
+ "epoch": 37.47531673219746,
+ "grad_norm": 0.1942203938961029,
+ "learning_rate": 0.0006,
+ "loss": 3.6760759353637695,
+ "step": 2698
+ },
+ {
+ "epoch": 37.489296636085626,
+ "grad_norm": 0.21212540566921234,
+ "learning_rate": 0.0006,
+ "loss": 3.660719633102417,
+ "step": 2699
+ },
+ {
+ "epoch": 37.50327653997379,
+ "grad_norm": 0.2365427315235138,
+ "learning_rate": 0.0006,
+ "loss": 3.6727194786071777,
+ "step": 2700
+ },
+ {
+ "epoch": 37.517256443861946,
+ "grad_norm": 0.2379675805568695,
+ "learning_rate": 0.0006,
+ "loss": 3.6691598892211914,
+ "step": 2701
+ },
+ {
+ "epoch": 37.53123634775011,
+ "grad_norm": 0.22142401337623596,
+ "learning_rate": 0.0006,
+ "loss": 3.6882128715515137,
+ "step": 2702
+ },
+ {
+ "epoch": 37.54521625163827,
+ "grad_norm": 0.19993607699871063,
+ "learning_rate": 0.0006,
+ "loss": 3.6651787757873535,
+ "step": 2703
+ },
+ {
+ "epoch": 37.55919615552643,
+ "grad_norm": 0.19934895634651184,
+ "learning_rate": 0.0006,
+ "loss": 3.6680638790130615,
+ "step": 2704
+ },
+ {
+ "epoch": 37.57317605941459,
+ "grad_norm": 0.21202369034290314,
+ "learning_rate": 0.0006,
+ "loss": 3.697615623474121,
+ "step": 2705
+ },
+ {
+ "epoch": 37.58715596330275,
+ "grad_norm": 0.1994577795267105,
+ "learning_rate": 0.0006,
+ "loss": 3.688243865966797,
+ "step": 2706
+ },
+ {
+ "epoch": 37.60113586719091,
+ "grad_norm": 0.20365118980407715,
+ "learning_rate": 0.0006,
+ "loss": 3.6615519523620605,
+ "step": 2707
+ },
+ {
+ "epoch": 37.615115771079076,
+ "grad_norm": 0.22466035187244415,
+ "learning_rate": 0.0006,
+ "loss": 3.703111171722412,
+ "step": 2708
+ },
+ {
+ "epoch": 37.62909567496723,
+ "grad_norm": 0.21140407025814056,
+ "learning_rate": 0.0006,
+ "loss": 3.6744728088378906,
+ "step": 2709
+ },
+ {
+ "epoch": 37.643075578855395,
+ "grad_norm": 0.22220195829868317,
+ "learning_rate": 0.0006,
+ "loss": 3.671501874923706,
+ "step": 2710
+ },
+ {
+ "epoch": 37.65705548274356,
+ "grad_norm": 0.23279480636119843,
+ "learning_rate": 0.0006,
+ "loss": 3.6962859630584717,
+ "step": 2711
+ },
+ {
+ "epoch": 37.671035386631715,
+ "grad_norm": 0.23284408450126648,
+ "learning_rate": 0.0006,
+ "loss": 3.670231342315674,
+ "step": 2712
+ },
+ {
+ "epoch": 37.68501529051988,
+ "grad_norm": 0.21935738623142242,
+ "learning_rate": 0.0006,
+ "loss": 3.6908650398254395,
+ "step": 2713
+ },
+ {
+ "epoch": 37.69899519440804,
+ "grad_norm": 0.2072262167930603,
+ "learning_rate": 0.0006,
+ "loss": 3.7204506397247314,
+ "step": 2714
+ },
+ {
+ "epoch": 37.7129750982962,
+ "grad_norm": 0.22547709941864014,
+ "learning_rate": 0.0006,
+ "loss": 3.6740894317626953,
+ "step": 2715
+ },
+ {
+ "epoch": 37.72695500218436,
+ "grad_norm": 0.2460414469242096,
+ "learning_rate": 0.0006,
+ "loss": 3.6938390731811523,
+ "step": 2716
+ },
+ {
+ "epoch": 37.74093490607252,
+ "grad_norm": 0.24756456911563873,
+ "learning_rate": 0.0006,
+ "loss": 3.692173480987549,
+ "step": 2717
+ },
+ {
+ "epoch": 37.75491480996068,
+ "grad_norm": 0.20149244368076324,
+ "learning_rate": 0.0006,
+ "loss": 3.6677675247192383,
+ "step": 2718
+ },
+ {
+ "epoch": 37.768894713848844,
+ "grad_norm": 0.19834814965724945,
+ "learning_rate": 0.0006,
+ "loss": 3.6717336177825928,
+ "step": 2719
+ },
+ {
+ "epoch": 37.782874617737,
+ "grad_norm": 0.22929978370666504,
+ "learning_rate": 0.0006,
+ "loss": 3.6818275451660156,
+ "step": 2720
+ },
+ {
+ "epoch": 37.796854521625164,
+ "grad_norm": 0.23674434423446655,
+ "learning_rate": 0.0006,
+ "loss": 3.689767360687256,
+ "step": 2721
+ },
+ {
+ "epoch": 37.81083442551333,
+ "grad_norm": 0.22798952460289001,
+ "learning_rate": 0.0006,
+ "loss": 3.6928915977478027,
+ "step": 2722
+ },
+ {
+ "epoch": 37.824814329401484,
+ "grad_norm": 0.2270302027463913,
+ "learning_rate": 0.0006,
+ "loss": 3.6884233951568604,
+ "step": 2723
+ },
+ {
+ "epoch": 37.83879423328965,
+ "grad_norm": 0.23563820123672485,
+ "learning_rate": 0.0006,
+ "loss": 3.6962456703186035,
+ "step": 2724
+ },
+ {
+ "epoch": 37.8527741371778,
+ "grad_norm": 0.2240045815706253,
+ "learning_rate": 0.0006,
+ "loss": 3.6985082626342773,
+ "step": 2725
+ },
+ {
+ "epoch": 37.86675404106597,
+ "grad_norm": 0.21541155874729156,
+ "learning_rate": 0.0006,
+ "loss": 3.6960105895996094,
+ "step": 2726
+ },
+ {
+ "epoch": 37.88073394495413,
+ "grad_norm": 0.23257222771644592,
+ "learning_rate": 0.0006,
+ "loss": 3.667404890060425,
+ "step": 2727
+ },
+ {
+ "epoch": 37.89471384884229,
+ "grad_norm": 0.226792573928833,
+ "learning_rate": 0.0006,
+ "loss": 3.6549744606018066,
+ "step": 2728
+ },
+ {
+ "epoch": 37.90869375273045,
+ "grad_norm": 0.18993401527404785,
+ "learning_rate": 0.0006,
+ "loss": 3.6772334575653076,
+ "step": 2729
+ },
+ {
+ "epoch": 37.92267365661861,
+ "grad_norm": 0.20936095714569092,
+ "learning_rate": 0.0006,
+ "loss": 3.671116352081299,
+ "step": 2730
+ },
+ {
+ "epoch": 37.93665356050677,
+ "grad_norm": 0.2203974425792694,
+ "learning_rate": 0.0006,
+ "loss": 3.6549739837646484,
+ "step": 2731
+ },
+ {
+ "epoch": 37.95063346439493,
+ "grad_norm": 0.19504620134830475,
+ "learning_rate": 0.0006,
+ "loss": 3.6755447387695312,
+ "step": 2732
+ },
+ {
+ "epoch": 37.964613368283096,
+ "grad_norm": 0.2025984674692154,
+ "learning_rate": 0.0006,
+ "loss": 3.678955554962158,
+ "step": 2733
+ },
+ {
+ "epoch": 37.97859327217125,
+ "grad_norm": 0.21556107699871063,
+ "learning_rate": 0.0006,
+ "loss": 3.6680502891540527,
+ "step": 2734
+ },
+ {
+ "epoch": 37.992573176059416,
+ "grad_norm": 0.21011291444301605,
+ "learning_rate": 0.0006,
+ "loss": 3.672039031982422,
+ "step": 2735
+ },
+ {
+ "epoch": 38.0,
+ "grad_norm": 0.23710957169532776,
+ "learning_rate": 0.0006,
+ "loss": 3.6326794624328613,
+ "step": 2736
+ },
+ {
+ "epoch": 38.0,
+ "eval_loss": 3.990501880645752,
+ "eval_runtime": 43.8951,
+ "eval_samples_per_second": 55.633,
+ "eval_steps_per_second": 3.486,
+ "step": 2736
+ },
+ {
+ "epoch": 38.01397990388816,
+ "grad_norm": 0.20711326599121094,
+ "learning_rate": 0.0006,
+ "loss": 3.6364657878875732,
+ "step": 2737
+ },
+ {
+ "epoch": 38.02795980777632,
+ "grad_norm": 0.2250880002975464,
+ "learning_rate": 0.0006,
+ "loss": 3.637646436691284,
+ "step": 2738
+ },
+ {
+ "epoch": 38.04193971166448,
+ "grad_norm": 0.2448352724313736,
+ "learning_rate": 0.0006,
+ "loss": 3.63557767868042,
+ "step": 2739
+ },
+ {
+ "epoch": 38.05591961555265,
+ "grad_norm": 0.23031368851661682,
+ "learning_rate": 0.0006,
+ "loss": 3.627117395401001,
+ "step": 2740
+ },
+ {
+ "epoch": 38.0698995194408,
+ "grad_norm": 0.2045450210571289,
+ "learning_rate": 0.0006,
+ "loss": 3.6594958305358887,
+ "step": 2741
+ },
+ {
+ "epoch": 38.083879423328966,
+ "grad_norm": 0.21253496408462524,
+ "learning_rate": 0.0006,
+ "loss": 3.65494441986084,
+ "step": 2742
+ },
+ {
+ "epoch": 38.09785932721712,
+ "grad_norm": 0.20196112990379333,
+ "learning_rate": 0.0006,
+ "loss": 3.645289421081543,
+ "step": 2743
+ },
+ {
+ "epoch": 38.111839231105286,
+ "grad_norm": 0.20258229970932007,
+ "learning_rate": 0.0006,
+ "loss": 3.6698505878448486,
+ "step": 2744
+ },
+ {
+ "epoch": 38.12581913499345,
+ "grad_norm": 0.22182606160640717,
+ "learning_rate": 0.0006,
+ "loss": 3.6427698135375977,
+ "step": 2745
+ },
+ {
+ "epoch": 38.139799038881605,
+ "grad_norm": 0.21281519532203674,
+ "learning_rate": 0.0006,
+ "loss": 3.668337345123291,
+ "step": 2746
+ },
+ {
+ "epoch": 38.15377894276977,
+ "grad_norm": 0.21680216491222382,
+ "learning_rate": 0.0006,
+ "loss": 3.6362109184265137,
+ "step": 2747
+ },
+ {
+ "epoch": 38.16775884665793,
+ "grad_norm": 0.24396903812885284,
+ "learning_rate": 0.0006,
+ "loss": 3.660510540008545,
+ "step": 2748
+ },
+ {
+ "epoch": 38.18173875054609,
+ "grad_norm": 0.2546434700489044,
+ "learning_rate": 0.0006,
+ "loss": 3.6562418937683105,
+ "step": 2749
+ },
+ {
+ "epoch": 38.19571865443425,
+ "grad_norm": 0.22705447673797607,
+ "learning_rate": 0.0006,
+ "loss": 3.6801514625549316,
+ "step": 2750
+ },
+ {
+ "epoch": 38.20969855832241,
+ "grad_norm": 0.21516330540180206,
+ "learning_rate": 0.0006,
+ "loss": 3.6633429527282715,
+ "step": 2751
+ },
+ {
+ "epoch": 38.22367846221057,
+ "grad_norm": 0.20895853638648987,
+ "learning_rate": 0.0006,
+ "loss": 3.619896411895752,
+ "step": 2752
+ },
+ {
+ "epoch": 38.237658366098735,
+ "grad_norm": 0.21183325350284576,
+ "learning_rate": 0.0006,
+ "loss": 3.639491558074951,
+ "step": 2753
+ },
+ {
+ "epoch": 38.25163826998689,
+ "grad_norm": 0.21439522504806519,
+ "learning_rate": 0.0006,
+ "loss": 3.671931028366089,
+ "step": 2754
+ },
+ {
+ "epoch": 38.265618173875055,
+ "grad_norm": 0.2017785906791687,
+ "learning_rate": 0.0006,
+ "loss": 3.639533519744873,
+ "step": 2755
+ },
+ {
+ "epoch": 38.27959807776322,
+ "grad_norm": 0.20015068352222443,
+ "learning_rate": 0.0006,
+ "loss": 3.654262065887451,
+ "step": 2756
+ },
+ {
+ "epoch": 38.293577981651374,
+ "grad_norm": 0.21518948674201965,
+ "learning_rate": 0.0006,
+ "loss": 3.649919033050537,
+ "step": 2757
+ },
+ {
+ "epoch": 38.30755788553954,
+ "grad_norm": 0.21994580328464508,
+ "learning_rate": 0.0006,
+ "loss": 3.6756131649017334,
+ "step": 2758
+ },
+ {
+ "epoch": 38.3215377894277,
+ "grad_norm": 0.2053978443145752,
+ "learning_rate": 0.0006,
+ "loss": 3.651520252227783,
+ "step": 2759
+ },
+ {
+ "epoch": 38.33551769331586,
+ "grad_norm": 0.2066337615251541,
+ "learning_rate": 0.0006,
+ "loss": 3.6404507160186768,
+ "step": 2760
+ },
+ {
+ "epoch": 38.34949759720402,
+ "grad_norm": 0.20898301899433136,
+ "learning_rate": 0.0006,
+ "loss": 3.637200355529785,
+ "step": 2761
+ },
+ {
+ "epoch": 38.36347750109218,
+ "grad_norm": 0.19212259352207184,
+ "learning_rate": 0.0006,
+ "loss": 3.68394136428833,
+ "step": 2762
+ },
+ {
+ "epoch": 38.37745740498034,
+ "grad_norm": 0.2011883556842804,
+ "learning_rate": 0.0006,
+ "loss": 3.6494975090026855,
+ "step": 2763
+ },
+ {
+ "epoch": 38.391437308868504,
+ "grad_norm": 0.23072998225688934,
+ "learning_rate": 0.0006,
+ "loss": 3.6644320487976074,
+ "step": 2764
+ },
+ {
+ "epoch": 38.40541721275666,
+ "grad_norm": 0.2195347547531128,
+ "learning_rate": 0.0006,
+ "loss": 3.6666269302368164,
+ "step": 2765
+ },
+ {
+ "epoch": 38.419397116644824,
+ "grad_norm": 0.19820117950439453,
+ "learning_rate": 0.0006,
+ "loss": 3.690683364868164,
+ "step": 2766
+ },
+ {
+ "epoch": 38.43337702053299,
+ "grad_norm": 0.20381149649620056,
+ "learning_rate": 0.0006,
+ "loss": 3.6647756099700928,
+ "step": 2767
+ },
+ {
+ "epoch": 38.44735692442114,
+ "grad_norm": 0.19477297365665436,
+ "learning_rate": 0.0006,
+ "loss": 3.6419155597686768,
+ "step": 2768
+ },
+ {
+ "epoch": 38.46133682830931,
+ "grad_norm": 0.20118845999240875,
+ "learning_rate": 0.0006,
+ "loss": 3.678511142730713,
+ "step": 2769
+ },
+ {
+ "epoch": 38.47531673219746,
+ "grad_norm": 0.19538167119026184,
+ "learning_rate": 0.0006,
+ "loss": 3.632112503051758,
+ "step": 2770
+ },
+ {
+ "epoch": 38.489296636085626,
+ "grad_norm": 0.18136411905288696,
+ "learning_rate": 0.0006,
+ "loss": 3.6631078720092773,
+ "step": 2771
+ },
+ {
+ "epoch": 38.50327653997379,
+ "grad_norm": 0.1993526667356491,
+ "learning_rate": 0.0006,
+ "loss": 3.6800379753112793,
+ "step": 2772
+ },
+ {
+ "epoch": 38.517256443861946,
+ "grad_norm": 0.21409109234809875,
+ "learning_rate": 0.0006,
+ "loss": 3.6355738639831543,
+ "step": 2773
+ },
+ {
+ "epoch": 38.53123634775011,
+ "grad_norm": 0.20932911336421967,
+ "learning_rate": 0.0006,
+ "loss": 3.6639811992645264,
+ "step": 2774
+ },
+ {
+ "epoch": 38.54521625163827,
+ "grad_norm": 0.22266243398189545,
+ "learning_rate": 0.0006,
+ "loss": 3.6927733421325684,
+ "step": 2775
+ },
+ {
+ "epoch": 38.55919615552643,
+ "grad_norm": 0.22916539013385773,
+ "learning_rate": 0.0006,
+ "loss": 3.6381587982177734,
+ "step": 2776
+ },
+ {
+ "epoch": 38.57317605941459,
+ "grad_norm": 0.21507245302200317,
+ "learning_rate": 0.0006,
+ "loss": 3.6724753379821777,
+ "step": 2777
+ },
+ {
+ "epoch": 38.58715596330275,
+ "grad_norm": 0.21132487058639526,
+ "learning_rate": 0.0006,
+ "loss": 3.68450927734375,
+ "step": 2778
+ },
+ {
+ "epoch": 38.60113586719091,
+ "grad_norm": 0.2323923259973526,
+ "learning_rate": 0.0006,
+ "loss": 3.6917476654052734,
+ "step": 2779
+ },
+ {
+ "epoch": 38.615115771079076,
+ "grad_norm": 0.2862907648086548,
+ "learning_rate": 0.0006,
+ "loss": 3.6832518577575684,
+ "step": 2780
+ },
+ {
+ "epoch": 38.62909567496723,
+ "grad_norm": 0.28132742643356323,
+ "learning_rate": 0.0006,
+ "loss": 3.6619668006896973,
+ "step": 2781
+ },
+ {
+ "epoch": 38.643075578855395,
+ "grad_norm": 0.24933350086212158,
+ "learning_rate": 0.0006,
+ "loss": 3.6342711448669434,
+ "step": 2782
+ },
+ {
+ "epoch": 38.65705548274356,
+ "grad_norm": 0.23482646048069,
+ "learning_rate": 0.0006,
+ "loss": 3.667548656463623,
+ "step": 2783
+ },
+ {
+ "epoch": 38.671035386631715,
+ "grad_norm": 0.2529793083667755,
+ "learning_rate": 0.0006,
+ "loss": 3.6613709926605225,
+ "step": 2784
+ },
+ {
+ "epoch": 38.68501529051988,
+ "grad_norm": 0.2306097447872162,
+ "learning_rate": 0.0006,
+ "loss": 3.653153419494629,
+ "step": 2785
+ },
+ {
+ "epoch": 38.69899519440804,
+ "grad_norm": 0.21787869930267334,
+ "learning_rate": 0.0006,
+ "loss": 3.6991848945617676,
+ "step": 2786
+ },
+ {
+ "epoch": 38.7129750982962,
+ "grad_norm": 0.24818190932273865,
+ "learning_rate": 0.0006,
+ "loss": 3.664022445678711,
+ "step": 2787
+ },
+ {
+ "epoch": 38.72695500218436,
+ "grad_norm": 0.23205995559692383,
+ "learning_rate": 0.0006,
+ "loss": 3.656064987182617,
+ "step": 2788
+ },
+ {
+ "epoch": 38.74093490607252,
+ "grad_norm": 0.2268102467060089,
+ "learning_rate": 0.0006,
+ "loss": 3.678421974182129,
+ "step": 2789
+ },
+ {
+ "epoch": 38.75491480996068,
+ "grad_norm": 0.22549907863140106,
+ "learning_rate": 0.0006,
+ "loss": 3.6483302116394043,
+ "step": 2790
+ },
+ {
+ "epoch": 38.768894713848844,
+ "grad_norm": 0.2293119877576828,
+ "learning_rate": 0.0006,
+ "loss": 3.646825075149536,
+ "step": 2791
+ },
+ {
+ "epoch": 38.782874617737,
+ "grad_norm": 0.21879418194293976,
+ "learning_rate": 0.0006,
+ "loss": 3.682124614715576,
+ "step": 2792
+ },
+ {
+ "epoch": 38.796854521625164,
+ "grad_norm": 0.22012849152088165,
+ "learning_rate": 0.0006,
+ "loss": 3.6590089797973633,
+ "step": 2793
+ },
+ {
+ "epoch": 38.81083442551333,
+ "grad_norm": 0.2449142336845398,
+ "learning_rate": 0.0006,
+ "loss": 3.7053747177124023,
+ "step": 2794
+ },
+ {
+ "epoch": 38.824814329401484,
+ "grad_norm": 0.2677161395549774,
+ "learning_rate": 0.0006,
+ "loss": 3.666144371032715,
+ "step": 2795
+ },
+ {
+ "epoch": 38.83879423328965,
+ "grad_norm": 0.2654981315135956,
+ "learning_rate": 0.0006,
+ "loss": 3.637512683868408,
+ "step": 2796
+ },
+ {
+ "epoch": 38.8527741371778,
+ "grad_norm": 0.23169654607772827,
+ "learning_rate": 0.0006,
+ "loss": 3.6885948181152344,
+ "step": 2797
+ },
+ {
+ "epoch": 38.86675404106597,
+ "grad_norm": 0.22195108234882355,
+ "learning_rate": 0.0006,
+ "loss": 3.6597604751586914,
+ "step": 2798
+ },
+ {
+ "epoch": 38.88073394495413,
+ "grad_norm": 0.23703525960445404,
+ "learning_rate": 0.0006,
+ "loss": 3.6808712482452393,
+ "step": 2799
+ },
+ {
+ "epoch": 38.89471384884229,
+ "grad_norm": 0.24711088836193085,
+ "learning_rate": 0.0006,
+ "loss": 3.733792781829834,
+ "step": 2800
+ },
+ {
+ "epoch": 38.90869375273045,
+ "grad_norm": 0.216362863779068,
+ "learning_rate": 0.0006,
+ "loss": 3.670599937438965,
+ "step": 2801
+ },
+ {
+ "epoch": 38.92267365661861,
+ "grad_norm": 0.19483810663223267,
+ "learning_rate": 0.0006,
+ "loss": 3.6965198516845703,
+ "step": 2802
+ },
+ {
+ "epoch": 38.93665356050677,
+ "grad_norm": 0.1941208392381668,
+ "learning_rate": 0.0006,
+ "loss": 3.678022861480713,
+ "step": 2803
+ },
+ {
+ "epoch": 38.95063346439493,
+ "grad_norm": 0.1919465959072113,
+ "learning_rate": 0.0006,
+ "loss": 3.6763226985931396,
+ "step": 2804
+ },
+ {
+ "epoch": 38.964613368283096,
+ "grad_norm": 0.2003280073404312,
+ "learning_rate": 0.0006,
+ "loss": 3.670313835144043,
+ "step": 2805
+ },
+ {
+ "epoch": 38.97859327217125,
+ "grad_norm": 0.198478564620018,
+ "learning_rate": 0.0006,
+ "loss": 3.675569772720337,
+ "step": 2806
+ },
+ {
+ "epoch": 38.992573176059416,
+ "grad_norm": 0.23692303895950317,
+ "learning_rate": 0.0006,
+ "loss": 3.696561336517334,
+ "step": 2807
+ },
+ {
+ "epoch": 39.0,
+ "grad_norm": 0.3208145797252655,
+ "learning_rate": 0.0006,
+ "loss": 3.6791436672210693,
+ "step": 2808
+ },
+ {
+ "epoch": 39.0,
+ "eval_loss": 4.0079450607299805,
+ "eval_runtime": 43.8573,
+ "eval_samples_per_second": 55.681,
+ "eval_steps_per_second": 3.489,
+ "step": 2808
+ },
+ {
+ "epoch": 39.01397990388816,
+ "grad_norm": 0.28338733315467834,
+ "learning_rate": 0.0006,
+ "loss": 3.6277060508728027,
+ "step": 2809
+ },
+ {
+ "epoch": 39.02795980777632,
+ "grad_norm": 0.22057899832725525,
+ "learning_rate": 0.0006,
+ "loss": 3.6132822036743164,
+ "step": 2810
+ },
+ {
+ "epoch": 39.04193971166448,
+ "grad_norm": 0.20630282163619995,
+ "learning_rate": 0.0006,
+ "loss": 3.6143927574157715,
+ "step": 2811
+ },
+ {
+ "epoch": 39.05591961555265,
+ "grad_norm": 0.2178523689508438,
+ "learning_rate": 0.0006,
+ "loss": 3.6304664611816406,
+ "step": 2812
+ },
+ {
+ "epoch": 39.0698995194408,
+ "grad_norm": 0.19613824784755707,
+ "learning_rate": 0.0006,
+ "loss": 3.6137919425964355,
+ "step": 2813
+ },
+ {
+ "epoch": 39.083879423328966,
+ "grad_norm": 0.2047276794910431,
+ "learning_rate": 0.0006,
+ "loss": 3.6854846477508545,
+ "step": 2814
+ },
+ {
+ "epoch": 39.09785932721712,
+ "grad_norm": 0.20082715153694153,
+ "learning_rate": 0.0006,
+ "loss": 3.632091522216797,
+ "step": 2815
+ },
+ {
+ "epoch": 39.111839231105286,
+ "grad_norm": 0.21746563911437988,
+ "learning_rate": 0.0006,
+ "loss": 3.640477180480957,
+ "step": 2816
+ },
+ {
+ "epoch": 39.12581913499345,
+ "grad_norm": 0.2128882110118866,
+ "learning_rate": 0.0006,
+ "loss": 3.643984317779541,
+ "step": 2817
+ },
+ {
+ "epoch": 39.139799038881605,
+ "grad_norm": 0.2110479772090912,
+ "learning_rate": 0.0006,
+ "loss": 3.6328823566436768,
+ "step": 2818
+ },
+ {
+ "epoch": 39.15377894276977,
+ "grad_norm": 0.22304436564445496,
+ "learning_rate": 0.0006,
+ "loss": 3.6669845581054688,
+ "step": 2819
+ },
+ {
+ "epoch": 39.16775884665793,
+ "grad_norm": 0.22310666739940643,
+ "learning_rate": 0.0006,
+ "loss": 3.609743595123291,
+ "step": 2820
+ },
+ {
+ "epoch": 39.18173875054609,
+ "grad_norm": 0.21002045273780823,
+ "learning_rate": 0.0006,
+ "loss": 3.601900815963745,
+ "step": 2821
+ },
+ {
+ "epoch": 39.19571865443425,
+ "grad_norm": 0.20531952381134033,
+ "learning_rate": 0.0006,
+ "loss": 3.6405060291290283,
+ "step": 2822
+ },
+ {
+ "epoch": 39.20969855832241,
+ "grad_norm": 0.20646385848522186,
+ "learning_rate": 0.0006,
+ "loss": 3.669617176055908,
+ "step": 2823
+ },
+ {
+ "epoch": 39.22367846221057,
+ "grad_norm": 0.2553980350494385,
+ "learning_rate": 0.0006,
+ "loss": 3.642709255218506,
+ "step": 2824
+ },
+ {
+ "epoch": 39.237658366098735,
+ "grad_norm": 0.2753220498561859,
+ "learning_rate": 0.0006,
+ "loss": 3.668405055999756,
+ "step": 2825
+ },
+ {
+ "epoch": 39.25163826998689,
+ "grad_norm": 0.2425055354833603,
+ "learning_rate": 0.0006,
+ "loss": 3.659559726715088,
+ "step": 2826
+ },
+ {
+ "epoch": 39.265618173875055,
+ "grad_norm": 0.2199426293373108,
+ "learning_rate": 0.0006,
+ "loss": 3.6466197967529297,
+ "step": 2827
+ },
+ {
+ "epoch": 39.27959807776322,
+ "grad_norm": 0.221355602145195,
+ "learning_rate": 0.0006,
+ "loss": 3.639418125152588,
+ "step": 2828
+ },
+ {
+ "epoch": 39.293577981651374,
+ "grad_norm": 0.20777100324630737,
+ "learning_rate": 0.0006,
+ "loss": 3.68102765083313,
+ "step": 2829
+ },
+ {
+ "epoch": 39.30755788553954,
+ "grad_norm": 0.20557557046413422,
+ "learning_rate": 0.0006,
+ "loss": 3.663064956665039,
+ "step": 2830
+ },
+ {
+ "epoch": 39.3215377894277,
+ "grad_norm": 0.2385585904121399,
+ "learning_rate": 0.0006,
+ "loss": 3.6598849296569824,
+ "step": 2831
+ },
+ {
+ "epoch": 39.33551769331586,
+ "grad_norm": 0.25222650170326233,
+ "learning_rate": 0.0006,
+ "loss": 3.635199546813965,
+ "step": 2832
+ },
+ {
+ "epoch": 39.34949759720402,
+ "grad_norm": 0.22894687950611115,
+ "learning_rate": 0.0006,
+ "loss": 3.6100258827209473,
+ "step": 2833
+ },
+ {
+ "epoch": 39.36347750109218,
+ "grad_norm": 0.22945865988731384,
+ "learning_rate": 0.0006,
+ "loss": 3.63069748878479,
+ "step": 2834
+ },
+ {
+ "epoch": 39.37745740498034,
+ "grad_norm": 0.2466309368610382,
+ "learning_rate": 0.0006,
+ "loss": 3.6615123748779297,
+ "step": 2835
+ },
+ {
+ "epoch": 39.391437308868504,
+ "grad_norm": 0.23845571279525757,
+ "learning_rate": 0.0006,
+ "loss": 3.655045509338379,
+ "step": 2836
+ },
+ {
+ "epoch": 39.40541721275666,
+ "grad_norm": 0.20273560285568237,
+ "learning_rate": 0.0006,
+ "loss": 3.6497647762298584,
+ "step": 2837
+ },
+ {
+ "epoch": 39.419397116644824,
+ "grad_norm": 0.19820313155651093,
+ "learning_rate": 0.0006,
+ "loss": 3.6728386878967285,
+ "step": 2838
+ },
+ {
+ "epoch": 39.43337702053299,
+ "grad_norm": 0.21581435203552246,
+ "learning_rate": 0.0006,
+ "loss": 3.660247325897217,
+ "step": 2839
+ },
+ {
+ "epoch": 39.44735692442114,
+ "grad_norm": 0.20559731125831604,
+ "learning_rate": 0.0006,
+ "loss": 3.6244559288024902,
+ "step": 2840
+ },
+ {
+ "epoch": 39.46133682830931,
+ "grad_norm": 0.22041910886764526,
+ "learning_rate": 0.0006,
+ "loss": 3.6577587127685547,
+ "step": 2841
+ },
+ {
+ "epoch": 39.47531673219746,
+ "grad_norm": 0.1966651976108551,
+ "learning_rate": 0.0006,
+ "loss": 3.673975944519043,
+ "step": 2842
+ },
+ {
+ "epoch": 39.489296636085626,
+ "grad_norm": 0.19127163290977478,
+ "learning_rate": 0.0006,
+ "loss": 3.7022414207458496,
+ "step": 2843
+ },
+ {
+ "epoch": 39.50327653997379,
+ "grad_norm": 0.20260316133499146,
+ "learning_rate": 0.0006,
+ "loss": 3.6155128479003906,
+ "step": 2844
+ },
+ {
+ "epoch": 39.517256443861946,
+ "grad_norm": 0.2302546352148056,
+ "learning_rate": 0.0006,
+ "loss": 3.670212984085083,
+ "step": 2845
+ },
+ {
+ "epoch": 39.53123634775011,
+ "grad_norm": 0.2512998878955841,
+ "learning_rate": 0.0006,
+ "loss": 3.6257572174072266,
+ "step": 2846
+ },
+ {
+ "epoch": 39.54521625163827,
+ "grad_norm": 0.24780063331127167,
+ "learning_rate": 0.0006,
+ "loss": 3.6458964347839355,
+ "step": 2847
+ },
+ {
+ "epoch": 39.55919615552643,
+ "grad_norm": 0.21305061876773834,
+ "learning_rate": 0.0006,
+ "loss": 3.666834831237793,
+ "step": 2848
+ },
+ {
+ "epoch": 39.57317605941459,
+ "grad_norm": 0.20699542760849,
+ "learning_rate": 0.0006,
+ "loss": 3.660571813583374,
+ "step": 2849
+ },
+ {
+ "epoch": 39.58715596330275,
+ "grad_norm": 0.20799173414707184,
+ "learning_rate": 0.0006,
+ "loss": 3.649744987487793,
+ "step": 2850
+ },
+ {
+ "epoch": 39.60113586719091,
+ "grad_norm": 0.20118695497512817,
+ "learning_rate": 0.0006,
+ "loss": 3.663865089416504,
+ "step": 2851
+ },
+ {
+ "epoch": 39.615115771079076,
+ "grad_norm": 0.2019277960062027,
+ "learning_rate": 0.0006,
+ "loss": 3.6600584983825684,
+ "step": 2852
+ },
+ {
+ "epoch": 39.62909567496723,
+ "grad_norm": 0.2093067765235901,
+ "learning_rate": 0.0006,
+ "loss": 3.6926870346069336,
+ "step": 2853
+ },
+ {
+ "epoch": 39.643075578855395,
+ "grad_norm": 0.2280927449464798,
+ "learning_rate": 0.0006,
+ "loss": 3.677157402038574,
+ "step": 2854
+ },
+ {
+ "epoch": 39.65705548274356,
+ "grad_norm": 0.219201922416687,
+ "learning_rate": 0.0006,
+ "loss": 3.6763858795166016,
+ "step": 2855
+ },
+ {
+ "epoch": 39.671035386631715,
+ "grad_norm": 0.2132134735584259,
+ "learning_rate": 0.0006,
+ "loss": 3.6853187084198,
+ "step": 2856
+ },
+ {
+ "epoch": 39.68501529051988,
+ "grad_norm": 0.1979551613330841,
+ "learning_rate": 0.0006,
+ "loss": 3.633850574493408,
+ "step": 2857
+ },
+ {
+ "epoch": 39.69899519440804,
+ "grad_norm": 0.2181098908185959,
+ "learning_rate": 0.0006,
+ "loss": 3.671356201171875,
+ "step": 2858
+ },
+ {
+ "epoch": 39.7129750982962,
+ "grad_norm": 0.21820145845413208,
+ "learning_rate": 0.0006,
+ "loss": 3.640101432800293,
+ "step": 2859
+ },
+ {
+ "epoch": 39.72695500218436,
+ "grad_norm": 0.22734931111335754,
+ "learning_rate": 0.0006,
+ "loss": 3.6326088905334473,
+ "step": 2860
+ },
+ {
+ "epoch": 39.74093490607252,
+ "grad_norm": 0.2407236248254776,
+ "learning_rate": 0.0006,
+ "loss": 3.665416955947876,
+ "step": 2861
+ },
+ {
+ "epoch": 39.75491480996068,
+ "grad_norm": 0.2507246434688568,
+ "learning_rate": 0.0006,
+ "loss": 3.6996266841888428,
+ "step": 2862
+ },
+ {
+ "epoch": 39.768894713848844,
+ "grad_norm": 0.2273668497800827,
+ "learning_rate": 0.0006,
+ "loss": 3.6786417961120605,
+ "step": 2863
+ },
+ {
+ "epoch": 39.782874617737,
+ "grad_norm": 0.20584821701049805,
+ "learning_rate": 0.0006,
+ "loss": 3.6539974212646484,
+ "step": 2864
+ },
+ {
+ "epoch": 39.796854521625164,
+ "grad_norm": 0.2327643632888794,
+ "learning_rate": 0.0006,
+ "loss": 3.681267738342285,
+ "step": 2865
+ },
+ {
+ "epoch": 39.81083442551333,
+ "grad_norm": 0.24243171513080597,
+ "learning_rate": 0.0006,
+ "loss": 3.6814589500427246,
+ "step": 2866
+ },
+ {
+ "epoch": 39.824814329401484,
+ "grad_norm": 0.21462969481945038,
+ "learning_rate": 0.0006,
+ "loss": 3.681321620941162,
+ "step": 2867
+ },
+ {
+ "epoch": 39.83879423328965,
+ "grad_norm": 0.20973211526870728,
+ "learning_rate": 0.0006,
+ "loss": 3.636986017227173,
+ "step": 2868
+ },
+ {
+ "epoch": 39.8527741371778,
+ "grad_norm": 0.20357508957386017,
+ "learning_rate": 0.0006,
+ "loss": 3.6664552688598633,
+ "step": 2869
+ },
+ {
+ "epoch": 39.86675404106597,
+ "grad_norm": 0.20389088988304138,
+ "learning_rate": 0.0006,
+ "loss": 3.6685709953308105,
+ "step": 2870
+ },
+ {
+ "epoch": 39.88073394495413,
+ "grad_norm": 0.21024158596992493,
+ "learning_rate": 0.0006,
+ "loss": 3.650658130645752,
+ "step": 2871
+ },
+ {
+ "epoch": 39.89471384884229,
+ "grad_norm": 0.19477778673171997,
+ "learning_rate": 0.0006,
+ "loss": 3.664834976196289,
+ "step": 2872
+ },
+ {
+ "epoch": 39.90869375273045,
+ "grad_norm": 0.22345365583896637,
+ "learning_rate": 0.0006,
+ "loss": 3.6652634143829346,
+ "step": 2873
+ },
+ {
+ "epoch": 39.92267365661861,
+ "grad_norm": 0.206041157245636,
+ "learning_rate": 0.0006,
+ "loss": 3.6649513244628906,
+ "step": 2874
+ },
+ {
+ "epoch": 39.93665356050677,
+ "grad_norm": 0.18524570763111115,
+ "learning_rate": 0.0006,
+ "loss": 3.665579080581665,
+ "step": 2875
+ },
+ {
+ "epoch": 39.95063346439493,
+ "grad_norm": 0.17730890214443207,
+ "learning_rate": 0.0006,
+ "loss": 3.6372880935668945,
+ "step": 2876
+ },
+ {
+ "epoch": 39.964613368283096,
+ "grad_norm": 0.213678777217865,
+ "learning_rate": 0.0006,
+ "loss": 3.681305408477783,
+ "step": 2877
+ },
+ {
+ "epoch": 39.97859327217125,
+ "grad_norm": 0.2595686614513397,
+ "learning_rate": 0.0006,
+ "loss": 3.6660351753234863,
+ "step": 2878
+ },
+ {
+ "epoch": 39.992573176059416,
+ "grad_norm": 0.22678600251674652,
+ "learning_rate": 0.0006,
+ "loss": 3.681619644165039,
+ "step": 2879
+ },
+ {
+ "epoch": 40.0,
+ "grad_norm": 0.2294030636548996,
+ "learning_rate": 0.0006,
+ "loss": 3.654366970062256,
+ "step": 2880
+ },
+ {
+ "epoch": 40.0,
+ "eval_loss": 3.9810431003570557,
+ "eval_runtime": 43.832,
+ "eval_samples_per_second": 55.713,
+ "eval_steps_per_second": 3.491,
+ "step": 2880
+ },
+ {
+ "epoch": 40.01397990388816,
+ "grad_norm": 0.220590278506279,
+ "learning_rate": 0.0006,
+ "loss": 3.6346259117126465,
+ "step": 2881
+ },
+ {
+ "epoch": 40.02795980777632,
+ "grad_norm": 0.2568257749080658,
+ "learning_rate": 0.0006,
+ "loss": 3.64436674118042,
+ "step": 2882
+ },
+ {
+ "epoch": 40.04193971166448,
+ "grad_norm": 0.2869258224964142,
+ "learning_rate": 0.0006,
+ "loss": 3.613316059112549,
+ "step": 2883
+ },
+ {
+ "epoch": 40.05591961555265,
+ "grad_norm": 0.3005172908306122,
+ "learning_rate": 0.0006,
+ "loss": 3.607339859008789,
+ "step": 2884
+ },
+ {
+ "epoch": 40.0698995194408,
+ "grad_norm": 0.28642305731773376,
+ "learning_rate": 0.0006,
+ "loss": 3.65151047706604,
+ "step": 2885
+ },
+ {
+ "epoch": 40.083879423328966,
+ "grad_norm": 0.24176034331321716,
+ "learning_rate": 0.0006,
+ "loss": 3.633742332458496,
+ "step": 2886
+ },
+ {
+ "epoch": 40.09785932721712,
+ "grad_norm": 0.2139386385679245,
+ "learning_rate": 0.0006,
+ "loss": 3.614245653152466,
+ "step": 2887
+ },
+ {
+ "epoch": 40.111839231105286,
+ "grad_norm": 0.28025752305984497,
+ "learning_rate": 0.0006,
+ "loss": 3.6415746212005615,
+ "step": 2888
+ },
+ {
+ "epoch": 40.12581913499345,
+ "grad_norm": 0.28534311056137085,
+ "learning_rate": 0.0006,
+ "loss": 3.6302027702331543,
+ "step": 2889
+ },
+ {
+ "epoch": 40.139799038881605,
+ "grad_norm": 0.26842808723449707,
+ "learning_rate": 0.0006,
+ "loss": 3.657480239868164,
+ "step": 2890
+ },
+ {
+ "epoch": 40.15377894276977,
+ "grad_norm": 0.25235965847969055,
+ "learning_rate": 0.0006,
+ "loss": 3.6843931674957275,
+ "step": 2891
+ },
+ {
+ "epoch": 40.16775884665793,
+ "grad_norm": 0.22192128002643585,
+ "learning_rate": 0.0006,
+ "loss": 3.6374592781066895,
+ "step": 2892
+ },
+ {
+ "epoch": 40.18173875054609,
+ "grad_norm": 0.21524523198604584,
+ "learning_rate": 0.0006,
+ "loss": 3.6052589416503906,
+ "step": 2893
+ },
+ {
+ "epoch": 40.19571865443425,
+ "grad_norm": 0.21011514961719513,
+ "learning_rate": 0.0006,
+ "loss": 3.62197208404541,
+ "step": 2894
+ },
+ {
+ "epoch": 40.20969855832241,
+ "grad_norm": 0.23187001049518585,
+ "learning_rate": 0.0006,
+ "loss": 3.6505377292633057,
+ "step": 2895
+ },
+ {
+ "epoch": 40.22367846221057,
+ "grad_norm": 0.21962887048721313,
+ "learning_rate": 0.0006,
+ "loss": 3.594991683959961,
+ "step": 2896
+ },
+ {
+ "epoch": 40.237658366098735,
+ "grad_norm": 0.23299361765384674,
+ "learning_rate": 0.0006,
+ "loss": 3.6370339393615723,
+ "step": 2897
+ },
+ {
+ "epoch": 40.25163826998689,
+ "grad_norm": 0.22504881024360657,
+ "learning_rate": 0.0006,
+ "loss": 3.6173815727233887,
+ "step": 2898
+ },
+ {
+ "epoch": 40.265618173875055,
+ "grad_norm": 0.21678344905376434,
+ "learning_rate": 0.0006,
+ "loss": 3.6231422424316406,
+ "step": 2899
+ },
+ {
+ "epoch": 40.27959807776322,
+ "grad_norm": 0.2184615284204483,
+ "learning_rate": 0.0006,
+ "loss": 3.6552987098693848,
+ "step": 2900
+ },
+ {
+ "epoch": 40.293577981651374,
+ "grad_norm": 0.2145485281944275,
+ "learning_rate": 0.0006,
+ "loss": 3.628025531768799,
+ "step": 2901
+ },
+ {
+ "epoch": 40.30755788553954,
+ "grad_norm": 0.21119336783885956,
+ "learning_rate": 0.0006,
+ "loss": 3.6511590480804443,
+ "step": 2902
+ },
+ {
+ "epoch": 40.3215377894277,
+ "grad_norm": 0.2158869504928589,
+ "learning_rate": 0.0006,
+ "loss": 3.6302051544189453,
+ "step": 2903
+ },
+ {
+ "epoch": 40.33551769331586,
+ "grad_norm": 0.22736455500125885,
+ "learning_rate": 0.0006,
+ "loss": 3.6678733825683594,
+ "step": 2904
+ },
+ {
+ "epoch": 40.34949759720402,
+ "grad_norm": 0.22723783552646637,
+ "learning_rate": 0.0006,
+ "loss": 3.632068634033203,
+ "step": 2905
+ },
+ {
+ "epoch": 40.36347750109218,
+ "grad_norm": 0.20606189966201782,
+ "learning_rate": 0.0006,
+ "loss": 3.6534624099731445,
+ "step": 2906
+ },
+ {
+ "epoch": 40.37745740498034,
+ "grad_norm": 0.21033786237239838,
+ "learning_rate": 0.0006,
+ "loss": 3.6194064617156982,
+ "step": 2907
+ },
+ {
+ "epoch": 40.391437308868504,
+ "grad_norm": 0.2175762951374054,
+ "learning_rate": 0.0006,
+ "loss": 3.637385368347168,
+ "step": 2908
+ },
+ {
+ "epoch": 40.40541721275666,
+ "grad_norm": 0.21063381433486938,
+ "learning_rate": 0.0006,
+ "loss": 3.656857967376709,
+ "step": 2909
+ },
+ {
+ "epoch": 40.419397116644824,
+ "grad_norm": 0.19982226192951202,
+ "learning_rate": 0.0006,
+ "loss": 3.655738353729248,
+ "step": 2910
+ },
+ {
+ "epoch": 40.43337702053299,
+ "grad_norm": 0.20608870685100555,
+ "learning_rate": 0.0006,
+ "loss": 3.6521377563476562,
+ "step": 2911
+ },
+ {
+ "epoch": 40.44735692442114,
+ "grad_norm": 0.19817334413528442,
+ "learning_rate": 0.0006,
+ "loss": 3.61527681350708,
+ "step": 2912
+ },
+ {
+ "epoch": 40.46133682830931,
+ "grad_norm": 0.20407769083976746,
+ "learning_rate": 0.0006,
+ "loss": 3.6668765544891357,
+ "step": 2913
+ },
+ {
+ "epoch": 40.47531673219746,
+ "grad_norm": 0.19874799251556396,
+ "learning_rate": 0.0006,
+ "loss": 3.6748533248901367,
+ "step": 2914
+ },
+ {
+ "epoch": 40.489296636085626,
+ "grad_norm": 0.1979510486125946,
+ "learning_rate": 0.0006,
+ "loss": 3.6141977310180664,
+ "step": 2915
+ },
+ {
+ "epoch": 40.50327653997379,
+ "grad_norm": 0.19811518490314484,
+ "learning_rate": 0.0006,
+ "loss": 3.6391215324401855,
+ "step": 2916
+ },
+ {
+ "epoch": 40.517256443861946,
+ "grad_norm": 0.20208898186683655,
+ "learning_rate": 0.0006,
+ "loss": 3.664179801940918,
+ "step": 2917
+ },
+ {
+ "epoch": 40.53123634775011,
+ "grad_norm": 0.22063760459423065,
+ "learning_rate": 0.0006,
+ "loss": 3.645388126373291,
+ "step": 2918
+ },
+ {
+ "epoch": 40.54521625163827,
+ "grad_norm": 0.23420891165733337,
+ "learning_rate": 0.0006,
+ "loss": 3.6424708366394043,
+ "step": 2919
+ },
+ {
+ "epoch": 40.55919615552643,
+ "grad_norm": 0.2263612151145935,
+ "learning_rate": 0.0006,
+ "loss": 3.6649224758148193,
+ "step": 2920
+ },
+ {
+ "epoch": 40.57317605941459,
+ "grad_norm": 0.22745433449745178,
+ "learning_rate": 0.0006,
+ "loss": 3.631586790084839,
+ "step": 2921
+ },
+ {
+ "epoch": 40.58715596330275,
+ "grad_norm": 0.22413238883018494,
+ "learning_rate": 0.0006,
+ "loss": 3.6666674613952637,
+ "step": 2922
+ },
+ {
+ "epoch": 40.60113586719091,
+ "grad_norm": 0.2178265005350113,
+ "learning_rate": 0.0006,
+ "loss": 3.6002111434936523,
+ "step": 2923
+ },
+ {
+ "epoch": 40.615115771079076,
+ "grad_norm": 0.21822521090507507,
+ "learning_rate": 0.0006,
+ "loss": 3.6538329124450684,
+ "step": 2924
+ },
+ {
+ "epoch": 40.62909567496723,
+ "grad_norm": 0.21728558838367462,
+ "learning_rate": 0.0006,
+ "loss": 3.651254653930664,
+ "step": 2925
+ },
+ {
+ "epoch": 40.643075578855395,
+ "grad_norm": 0.22377707064151764,
+ "learning_rate": 0.0006,
+ "loss": 3.6505789756774902,
+ "step": 2926
+ },
+ {
+ "epoch": 40.65705548274356,
+ "grad_norm": 0.2035706788301468,
+ "learning_rate": 0.0006,
+ "loss": 3.6471967697143555,
+ "step": 2927
+ },
+ {
+ "epoch": 40.671035386631715,
+ "grad_norm": 0.2011154741048813,
+ "learning_rate": 0.0006,
+ "loss": 3.6582741737365723,
+ "step": 2928
+ },
+ {
+ "epoch": 40.68501529051988,
+ "grad_norm": 0.23812712728977203,
+ "learning_rate": 0.0006,
+ "loss": 3.6388421058654785,
+ "step": 2929
+ },
+ {
+ "epoch": 40.69899519440804,
+ "grad_norm": 0.2117796689271927,
+ "learning_rate": 0.0006,
+ "loss": 3.688337802886963,
+ "step": 2930
+ },
+ {
+ "epoch": 40.7129750982962,
+ "grad_norm": 0.18440942466259003,
+ "learning_rate": 0.0006,
+ "loss": 3.6409997940063477,
+ "step": 2931
+ },
+ {
+ "epoch": 40.72695500218436,
+ "grad_norm": 0.19005917012691498,
+ "learning_rate": 0.0006,
+ "loss": 3.6760218143463135,
+ "step": 2932
+ },
+ {
+ "epoch": 40.74093490607252,
+ "grad_norm": 0.19982726871967316,
+ "learning_rate": 0.0006,
+ "loss": 3.6375021934509277,
+ "step": 2933
+ },
+ {
+ "epoch": 40.75491480996068,
+ "grad_norm": 0.19240257143974304,
+ "learning_rate": 0.0006,
+ "loss": 3.636807918548584,
+ "step": 2934
+ },
+ {
+ "epoch": 40.768894713848844,
+ "grad_norm": 0.20563434064388275,
+ "learning_rate": 0.0006,
+ "loss": 3.6667532920837402,
+ "step": 2935
+ },
+ {
+ "epoch": 40.782874617737,
+ "grad_norm": 0.26531776785850525,
+ "learning_rate": 0.0006,
+ "loss": 3.6332945823669434,
+ "step": 2936
+ },
+ {
+ "epoch": 40.796854521625164,
+ "grad_norm": 0.2766861021518707,
+ "learning_rate": 0.0006,
+ "loss": 3.6645212173461914,
+ "step": 2937
+ },
+ {
+ "epoch": 40.81083442551333,
+ "grad_norm": 0.235750213265419,
+ "learning_rate": 0.0006,
+ "loss": 3.67067813873291,
+ "step": 2938
+ },
+ {
+ "epoch": 40.824814329401484,
+ "grad_norm": 0.20778773725032806,
+ "learning_rate": 0.0006,
+ "loss": 3.6565768718719482,
+ "step": 2939
+ },
+ {
+ "epoch": 40.83879423328965,
+ "grad_norm": 0.187322199344635,
+ "learning_rate": 0.0006,
+ "loss": 3.620129346847534,
+ "step": 2940
+ },
+ {
+ "epoch": 40.8527741371778,
+ "grad_norm": 0.20576219260692596,
+ "learning_rate": 0.0006,
+ "loss": 3.6700220108032227,
+ "step": 2941
+ },
+ {
+ "epoch": 40.86675404106597,
+ "grad_norm": 0.2197345495223999,
+ "learning_rate": 0.0006,
+ "loss": 3.709311008453369,
+ "step": 2942
+ },
+ {
+ "epoch": 40.88073394495413,
+ "grad_norm": 0.20205345749855042,
+ "learning_rate": 0.0006,
+ "loss": 3.6646361351013184,
+ "step": 2943
+ },
+ {
+ "epoch": 40.89471384884229,
+ "grad_norm": 0.20026250183582306,
+ "learning_rate": 0.0006,
+ "loss": 3.6639604568481445,
+ "step": 2944
+ },
+ {
+ "epoch": 40.90869375273045,
+ "grad_norm": 0.224214106798172,
+ "learning_rate": 0.0006,
+ "loss": 3.6669654846191406,
+ "step": 2945
+ },
+ {
+ "epoch": 40.92267365661861,
+ "grad_norm": 0.2155972272157669,
+ "learning_rate": 0.0006,
+ "loss": 3.6494603157043457,
+ "step": 2946
+ },
+ {
+ "epoch": 40.93665356050677,
+ "grad_norm": 0.23038871586322784,
+ "learning_rate": 0.0006,
+ "loss": 3.6368541717529297,
+ "step": 2947
+ },
+ {
+ "epoch": 40.95063346439493,
+ "grad_norm": 0.2001815289258957,
+ "learning_rate": 0.0006,
+ "loss": 3.711174249649048,
+ "step": 2948
+ },
+ {
+ "epoch": 40.964613368283096,
+ "grad_norm": 0.20428860187530518,
+ "learning_rate": 0.0006,
+ "loss": 3.6342315673828125,
+ "step": 2949
+ },
+ {
+ "epoch": 40.97859327217125,
+ "grad_norm": 0.20724134147167206,
+ "learning_rate": 0.0006,
+ "loss": 3.679375171661377,
+ "step": 2950
+ },
+ {
+ "epoch": 40.992573176059416,
+ "grad_norm": 0.20723849534988403,
+ "learning_rate": 0.0006,
+ "loss": 3.6477675437927246,
+ "step": 2951
+ },
+ {
+ "epoch": 41.0,
+ "grad_norm": 0.23891447484493256,
+ "learning_rate": 0.0006,
+ "loss": 3.632950782775879,
+ "step": 2952
+ },
+ {
+ "epoch": 41.0,
+ "eval_loss": 3.9871256351470947,
+ "eval_runtime": 43.8367,
+ "eval_samples_per_second": 55.707,
+ "eval_steps_per_second": 3.49,
+ "step": 2952
+ },
+ {
+ "epoch": 41.01397990388816,
+ "grad_norm": 0.2258434295654297,
+ "learning_rate": 0.0006,
+ "loss": 3.631239414215088,
+ "step": 2953
+ },
+ {
+ "epoch": 41.02795980777632,
+ "grad_norm": 0.24932795763015747,
+ "learning_rate": 0.0006,
+ "loss": 3.601083517074585,
+ "step": 2954
+ },
+ {
+ "epoch": 41.04193971166448,
+ "grad_norm": 0.2688388228416443,
+ "learning_rate": 0.0006,
+ "loss": 3.655724048614502,
+ "step": 2955
+ },
+ {
+ "epoch": 41.05591961555265,
+ "grad_norm": 0.23880694806575775,
+ "learning_rate": 0.0006,
+ "loss": 3.617628812789917,
+ "step": 2956
+ },
+ {
+ "epoch": 41.0698995194408,
+ "grad_norm": 0.23784616589546204,
+ "learning_rate": 0.0006,
+ "loss": 3.6309127807617188,
+ "step": 2957
+ },
+ {
+ "epoch": 41.083879423328966,
+ "grad_norm": 0.22609511017799377,
+ "learning_rate": 0.0006,
+ "loss": 3.6138553619384766,
+ "step": 2958
+ },
+ {
+ "epoch": 41.09785932721712,
+ "grad_norm": 0.22936329245567322,
+ "learning_rate": 0.0006,
+ "loss": 3.6620094776153564,
+ "step": 2959
+ },
+ {
+ "epoch": 41.111839231105286,
+ "grad_norm": 0.23354190587997437,
+ "learning_rate": 0.0006,
+ "loss": 3.59959077835083,
+ "step": 2960
+ },
+ {
+ "epoch": 41.12581913499345,
+ "grad_norm": 0.2496265172958374,
+ "learning_rate": 0.0006,
+ "loss": 3.588359832763672,
+ "step": 2961
+ },
+ {
+ "epoch": 41.139799038881605,
+ "grad_norm": 0.23618635535240173,
+ "learning_rate": 0.0006,
+ "loss": 3.6341018676757812,
+ "step": 2962
+ },
+ {
+ "epoch": 41.15377894276977,
+ "grad_norm": 0.23724640905857086,
+ "learning_rate": 0.0006,
+ "loss": 3.6170616149902344,
+ "step": 2963
+ },
+ {
+ "epoch": 41.16775884665793,
+ "grad_norm": 0.20944789052009583,
+ "learning_rate": 0.0006,
+ "loss": 3.6158995628356934,
+ "step": 2964
+ },
+ {
+ "epoch": 41.18173875054609,
+ "grad_norm": 0.2089492678642273,
+ "learning_rate": 0.0006,
+ "loss": 3.586538314819336,
+ "step": 2965
+ },
+ {
+ "epoch": 41.19571865443425,
+ "grad_norm": 0.2370915710926056,
+ "learning_rate": 0.0006,
+ "loss": 3.599236011505127,
+ "step": 2966
+ },
+ {
+ "epoch": 41.20969855832241,
+ "grad_norm": 0.25749558210372925,
+ "learning_rate": 0.0006,
+ "loss": 3.631399154663086,
+ "step": 2967
+ },
+ {
+ "epoch": 41.22367846221057,
+ "grad_norm": 0.24754776060581207,
+ "learning_rate": 0.0006,
+ "loss": 3.6503920555114746,
+ "step": 2968
+ },
+ {
+ "epoch": 41.237658366098735,
+ "grad_norm": 0.22060903906822205,
+ "learning_rate": 0.0006,
+ "loss": 3.671673536300659,
+ "step": 2969
+ },
+ {
+ "epoch": 41.25163826998689,
+ "grad_norm": 0.19416594505310059,
+ "learning_rate": 0.0006,
+ "loss": 3.6158413887023926,
+ "step": 2970
+ },
+ {
+ "epoch": 41.265618173875055,
+ "grad_norm": 0.22596411406993866,
+ "learning_rate": 0.0006,
+ "loss": 3.64003849029541,
+ "step": 2971
+ },
+ {
+ "epoch": 41.27959807776322,
+ "grad_norm": 0.26785415410995483,
+ "learning_rate": 0.0006,
+ "loss": 3.642327308654785,
+ "step": 2972
+ },
+ {
+ "epoch": 41.293577981651374,
+ "grad_norm": 0.2988710403442383,
+ "learning_rate": 0.0006,
+ "loss": 3.6018929481506348,
+ "step": 2973
+ },
+ {
+ "epoch": 41.30755788553954,
+ "grad_norm": 0.2428133338689804,
+ "learning_rate": 0.0006,
+ "loss": 3.645270824432373,
+ "step": 2974
+ },
+ {
+ "epoch": 41.3215377894277,
+ "grad_norm": 0.20330320298671722,
+ "learning_rate": 0.0006,
+ "loss": 3.625495433807373,
+ "step": 2975
+ },
+ {
+ "epoch": 41.33551769331586,
+ "grad_norm": 0.2267787605524063,
+ "learning_rate": 0.0006,
+ "loss": 3.6469204425811768,
+ "step": 2976
+ },
+ {
+ "epoch": 41.34949759720402,
+ "grad_norm": 0.20702822506427765,
+ "learning_rate": 0.0006,
+ "loss": 3.644191265106201,
+ "step": 2977
+ },
+ {
+ "epoch": 41.36347750109218,
+ "grad_norm": 0.19693221151828766,
+ "learning_rate": 0.0006,
+ "loss": 3.591794967651367,
+ "step": 2978
+ },
+ {
+ "epoch": 41.37745740498034,
+ "grad_norm": 0.21193185448646545,
+ "learning_rate": 0.0006,
+ "loss": 3.6283936500549316,
+ "step": 2979
+ },
+ {
+ "epoch": 41.391437308868504,
+ "grad_norm": 0.20953163504600525,
+ "learning_rate": 0.0006,
+ "loss": 3.617565155029297,
+ "step": 2980
+ },
+ {
+ "epoch": 41.40541721275666,
+ "grad_norm": 0.21839819848537445,
+ "learning_rate": 0.0006,
+ "loss": 3.621209144592285,
+ "step": 2981
+ },
+ {
+ "epoch": 41.419397116644824,
+ "grad_norm": 0.2152671068906784,
+ "learning_rate": 0.0006,
+ "loss": 3.643197536468506,
+ "step": 2982
+ },
+ {
+ "epoch": 41.43337702053299,
+ "grad_norm": 0.2507486641407013,
+ "learning_rate": 0.0006,
+ "loss": 3.657499313354492,
+ "step": 2983
+ },
+ {
+ "epoch": 41.44735692442114,
+ "grad_norm": 0.24695388972759247,
+ "learning_rate": 0.0006,
+ "loss": 3.62170672416687,
+ "step": 2984
+ },
+ {
+ "epoch": 41.46133682830931,
+ "grad_norm": 0.22652822732925415,
+ "learning_rate": 0.0006,
+ "loss": 3.64322566986084,
+ "step": 2985
+ },
+ {
+ "epoch": 41.47531673219746,
+ "grad_norm": 0.2575881779193878,
+ "learning_rate": 0.0006,
+ "loss": 3.659621477127075,
+ "step": 2986
+ },
+ {
+ "epoch": 41.489296636085626,
+ "grad_norm": 0.24162672460079193,
+ "learning_rate": 0.0006,
+ "loss": 3.6527223587036133,
+ "step": 2987
+ },
+ {
+ "epoch": 41.50327653997379,
+ "grad_norm": 0.20930497348308563,
+ "learning_rate": 0.0006,
+ "loss": 3.6412787437438965,
+ "step": 2988
+ },
+ {
+ "epoch": 41.517256443861946,
+ "grad_norm": 0.20480819046497345,
+ "learning_rate": 0.0006,
+ "loss": 3.614767074584961,
+ "step": 2989
+ },
+ {
+ "epoch": 41.53123634775011,
+ "grad_norm": 0.20015820860862732,
+ "learning_rate": 0.0006,
+ "loss": 3.6512045860290527,
+ "step": 2990
+ },
+ {
+ "epoch": 41.54521625163827,
+ "grad_norm": 0.20220743119716644,
+ "learning_rate": 0.0006,
+ "loss": 3.6732325553894043,
+ "step": 2991
+ },
+ {
+ "epoch": 41.55919615552643,
+ "grad_norm": 0.20505326986312866,
+ "learning_rate": 0.0006,
+ "loss": 3.6374664306640625,
+ "step": 2992
+ },
+ {
+ "epoch": 41.57317605941459,
+ "grad_norm": 0.19423344731330872,
+ "learning_rate": 0.0006,
+ "loss": 3.6564126014709473,
+ "step": 2993
+ },
+ {
+ "epoch": 41.58715596330275,
+ "grad_norm": 0.19284583628177643,
+ "learning_rate": 0.0006,
+ "loss": 3.6460509300231934,
+ "step": 2994
+ },
+ {
+ "epoch": 41.60113586719091,
+ "grad_norm": 0.18488959968090057,
+ "learning_rate": 0.0006,
+ "loss": 3.632859468460083,
+ "step": 2995
+ },
+ {
+ "epoch": 41.615115771079076,
+ "grad_norm": 0.18816296756267548,
+ "learning_rate": 0.0006,
+ "loss": 3.5958361625671387,
+ "step": 2996
+ },
+ {
+ "epoch": 41.62909567496723,
+ "grad_norm": 0.18987809121608734,
+ "learning_rate": 0.0006,
+ "loss": 3.6330695152282715,
+ "step": 2997
+ },
+ {
+ "epoch": 41.643075578855395,
+ "grad_norm": 0.18999919295310974,
+ "learning_rate": 0.0006,
+ "loss": 3.6486730575561523,
+ "step": 2998
+ },
+ {
+ "epoch": 41.65705548274356,
+ "grad_norm": 0.20190183818340302,
+ "learning_rate": 0.0006,
+ "loss": 3.6564230918884277,
+ "step": 2999
+ },
+ {
+ "epoch": 41.671035386631715,
+ "grad_norm": 0.20331363379955292,
+ "learning_rate": 0.0006,
+ "loss": 3.6789698600769043,
+ "step": 3000
+ },
+ {
+ "epoch": 41.68501529051988,
+ "grad_norm": 0.21599505841732025,
+ "learning_rate": 0.0006,
+ "loss": 3.6544511318206787,
+ "step": 3001
+ },
+ {
+ "epoch": 41.69899519440804,
+ "grad_norm": 0.21123184263706207,
+ "learning_rate": 0.0006,
+ "loss": 3.6506948471069336,
+ "step": 3002
+ },
+ {
+ "epoch": 41.7129750982962,
+ "grad_norm": 0.21337002515792847,
+ "learning_rate": 0.0006,
+ "loss": 3.676854372024536,
+ "step": 3003
+ },
+ {
+ "epoch": 41.72695500218436,
+ "grad_norm": 0.22567597031593323,
+ "learning_rate": 0.0006,
+ "loss": 3.6467485427856445,
+ "step": 3004
+ },
+ {
+ "epoch": 41.74093490607252,
+ "grad_norm": 0.22923491895198822,
+ "learning_rate": 0.0006,
+ "loss": 3.663224697113037,
+ "step": 3005
+ },
+ {
+ "epoch": 41.75491480996068,
+ "grad_norm": 0.21511489152908325,
+ "learning_rate": 0.0006,
+ "loss": 3.6290054321289062,
+ "step": 3006
+ },
+ {
+ "epoch": 41.768894713848844,
+ "grad_norm": 0.23855915665626526,
+ "learning_rate": 0.0006,
+ "loss": 3.631225109100342,
+ "step": 3007
+ },
+ {
+ "epoch": 41.782874617737,
+ "grad_norm": 0.22771067917346954,
+ "learning_rate": 0.0006,
+ "loss": 3.652575731277466,
+ "step": 3008
+ },
+ {
+ "epoch": 41.796854521625164,
+ "grad_norm": 0.2006237953901291,
+ "learning_rate": 0.0006,
+ "loss": 3.6883468627929688,
+ "step": 3009
+ },
+ {
+ "epoch": 41.81083442551333,
+ "grad_norm": 0.21182459592819214,
+ "learning_rate": 0.0006,
+ "loss": 3.6443567276000977,
+ "step": 3010
+ },
+ {
+ "epoch": 41.824814329401484,
+ "grad_norm": 0.21083690226078033,
+ "learning_rate": 0.0006,
+ "loss": 3.66660475730896,
+ "step": 3011
+ },
+ {
+ "epoch": 41.83879423328965,
+ "grad_norm": 0.21232296526432037,
+ "learning_rate": 0.0006,
+ "loss": 3.6436524391174316,
+ "step": 3012
+ },
+ {
+ "epoch": 41.8527741371778,
+ "grad_norm": 0.2089361697435379,
+ "learning_rate": 0.0006,
+ "loss": 3.648113250732422,
+ "step": 3013
+ },
+ {
+ "epoch": 41.86675404106597,
+ "grad_norm": 0.21517033874988556,
+ "learning_rate": 0.0006,
+ "loss": 3.6382269859313965,
+ "step": 3014
+ },
+ {
+ "epoch": 41.88073394495413,
+ "grad_norm": 0.1930733323097229,
+ "learning_rate": 0.0006,
+ "loss": 3.639441967010498,
+ "step": 3015
+ },
+ {
+ "epoch": 41.89471384884229,
+ "grad_norm": 0.18282832205295563,
+ "learning_rate": 0.0006,
+ "loss": 3.652860164642334,
+ "step": 3016
+ },
+ {
+ "epoch": 41.90869375273045,
+ "grad_norm": 0.18649716675281525,
+ "learning_rate": 0.0006,
+ "loss": 3.6335558891296387,
+ "step": 3017
+ },
+ {
+ "epoch": 41.92267365661861,
+ "grad_norm": 0.18873754143714905,
+ "learning_rate": 0.0006,
+ "loss": 3.6743149757385254,
+ "step": 3018
+ },
+ {
+ "epoch": 41.93665356050677,
+ "grad_norm": 0.1937907189130783,
+ "learning_rate": 0.0006,
+ "loss": 3.6749300956726074,
+ "step": 3019
+ },
+ {
+ "epoch": 41.95063346439493,
+ "grad_norm": 0.20620854198932648,
+ "learning_rate": 0.0006,
+ "loss": 3.6591262817382812,
+ "step": 3020
+ },
+ {
+ "epoch": 41.964613368283096,
+ "grad_norm": 0.18541009724140167,
+ "learning_rate": 0.0006,
+ "loss": 3.647010326385498,
+ "step": 3021
+ },
+ {
+ "epoch": 41.97859327217125,
+ "grad_norm": 0.19224928319454193,
+ "learning_rate": 0.0006,
+ "loss": 3.629920482635498,
+ "step": 3022
+ },
+ {
+ "epoch": 41.992573176059416,
+ "grad_norm": 0.21286419034004211,
+ "learning_rate": 0.0006,
+ "loss": 3.6516964435577393,
+ "step": 3023
+ },
+ {
+ "epoch": 42.0,
+ "grad_norm": 0.24787360429763794,
+ "learning_rate": 0.0006,
+ "loss": 3.6378865242004395,
+ "step": 3024
+ },
+ {
+ "epoch": 42.0,
+ "eval_loss": 3.9910318851470947,
+ "eval_runtime": 43.7914,
+ "eval_samples_per_second": 55.764,
+ "eval_steps_per_second": 3.494,
+ "step": 3024
+ },
+ {
+ "epoch": 42.01397990388816,
+ "grad_norm": 0.21036255359649658,
+ "learning_rate": 0.0006,
+ "loss": 3.6604344844818115,
+ "step": 3025
+ },
+ {
+ "epoch": 42.02795980777632,
+ "grad_norm": 0.22240597009658813,
+ "learning_rate": 0.0006,
+ "loss": 3.6160645484924316,
+ "step": 3026
+ },
+ {
+ "epoch": 42.04193971166448,
+ "grad_norm": 0.2487850785255432,
+ "learning_rate": 0.0006,
+ "loss": 3.6293773651123047,
+ "step": 3027
+ },
+ {
+ "epoch": 42.05591961555265,
+ "grad_norm": 0.27058133482933044,
+ "learning_rate": 0.0006,
+ "loss": 3.5827436447143555,
+ "step": 3028
+ },
+ {
+ "epoch": 42.0698995194408,
+ "grad_norm": 0.25001782178878784,
+ "learning_rate": 0.0006,
+ "loss": 3.5833029747009277,
+ "step": 3029
+ },
+ {
+ "epoch": 42.083879423328966,
+ "grad_norm": 0.23811939358711243,
+ "learning_rate": 0.0006,
+ "loss": 3.605585813522339,
+ "step": 3030
+ },
+ {
+ "epoch": 42.09785932721712,
+ "grad_norm": 0.23279601335525513,
+ "learning_rate": 0.0006,
+ "loss": 3.607205867767334,
+ "step": 3031
+ },
+ {
+ "epoch": 42.111839231105286,
+ "grad_norm": 0.24410508573055267,
+ "learning_rate": 0.0006,
+ "loss": 3.621175765991211,
+ "step": 3032
+ },
+ {
+ "epoch": 42.12581913499345,
+ "grad_norm": 0.24782028794288635,
+ "learning_rate": 0.0006,
+ "loss": 3.6236867904663086,
+ "step": 3033
+ },
+ {
+ "epoch": 42.139799038881605,
+ "grad_norm": 0.2301972657442093,
+ "learning_rate": 0.0006,
+ "loss": 3.603853464126587,
+ "step": 3034
+ },
+ {
+ "epoch": 42.15377894276977,
+ "grad_norm": 0.21988637745380402,
+ "learning_rate": 0.0006,
+ "loss": 3.600142002105713,
+ "step": 3035
+ },
+ {
+ "epoch": 42.16775884665793,
+ "grad_norm": 0.22623786330223083,
+ "learning_rate": 0.0006,
+ "loss": 3.61971116065979,
+ "step": 3036
+ },
+ {
+ "epoch": 42.18173875054609,
+ "grad_norm": 0.21844688057899475,
+ "learning_rate": 0.0006,
+ "loss": 3.61320161819458,
+ "step": 3037
+ },
+ {
+ "epoch": 42.19571865443425,
+ "grad_norm": 0.20444536209106445,
+ "learning_rate": 0.0006,
+ "loss": 3.6179633140563965,
+ "step": 3038
+ },
+ {
+ "epoch": 42.20969855832241,
+ "grad_norm": 0.22862036526203156,
+ "learning_rate": 0.0006,
+ "loss": 3.605433940887451,
+ "step": 3039
+ },
+ {
+ "epoch": 42.22367846221057,
+ "grad_norm": 0.2906605005264282,
+ "learning_rate": 0.0006,
+ "loss": 3.6279449462890625,
+ "step": 3040
+ },
+ {
+ "epoch": 42.237658366098735,
+ "grad_norm": 0.29074418544769287,
+ "learning_rate": 0.0006,
+ "loss": 3.5959763526916504,
+ "step": 3041
+ },
+ {
+ "epoch": 42.25163826998689,
+ "grad_norm": 0.1994444876909256,
+ "learning_rate": 0.0006,
+ "loss": 3.5858588218688965,
+ "step": 3042
+ },
+ {
+ "epoch": 42.265618173875055,
+ "grad_norm": 0.20793452858924866,
+ "learning_rate": 0.0006,
+ "loss": 3.604630470275879,
+ "step": 3043
+ },
+ {
+ "epoch": 42.27959807776322,
+ "grad_norm": 0.2119535505771637,
+ "learning_rate": 0.0006,
+ "loss": 3.6287126541137695,
+ "step": 3044
+ },
+ {
+ "epoch": 42.293577981651374,
+ "grad_norm": 0.21092535555362701,
+ "learning_rate": 0.0006,
+ "loss": 3.646294593811035,
+ "step": 3045
+ },
+ {
+ "epoch": 42.30755788553954,
+ "grad_norm": 0.21474479138851166,
+ "learning_rate": 0.0006,
+ "loss": 3.6364355087280273,
+ "step": 3046
+ },
+ {
+ "epoch": 42.3215377894277,
+ "grad_norm": 0.21100781857967377,
+ "learning_rate": 0.0006,
+ "loss": 3.622528553009033,
+ "step": 3047
+ },
+ {
+ "epoch": 42.33551769331586,
+ "grad_norm": 0.20739853382110596,
+ "learning_rate": 0.0006,
+ "loss": 3.6261959075927734,
+ "step": 3048
+ },
+ {
+ "epoch": 42.34949759720402,
+ "grad_norm": 0.22264131903648376,
+ "learning_rate": 0.0006,
+ "loss": 3.6195173263549805,
+ "step": 3049
+ },
+ {
+ "epoch": 42.36347750109218,
+ "grad_norm": 0.23696285486221313,
+ "learning_rate": 0.0006,
+ "loss": 3.631103515625,
+ "step": 3050
+ },
+ {
+ "epoch": 42.37745740498034,
+ "grad_norm": 0.2124902606010437,
+ "learning_rate": 0.0006,
+ "loss": 3.6490437984466553,
+ "step": 3051
+ },
+ {
+ "epoch": 42.391437308868504,
+ "grad_norm": 0.18831083178520203,
+ "learning_rate": 0.0006,
+ "loss": 3.628459930419922,
+ "step": 3052
+ },
+ {
+ "epoch": 42.40541721275666,
+ "grad_norm": 0.20390060544013977,
+ "learning_rate": 0.0006,
+ "loss": 3.6348538398742676,
+ "step": 3053
+ },
+ {
+ "epoch": 42.419397116644824,
+ "grad_norm": 0.2205851823091507,
+ "learning_rate": 0.0006,
+ "loss": 3.6286797523498535,
+ "step": 3054
+ },
+ {
+ "epoch": 42.43337702053299,
+ "grad_norm": 0.21518434584140778,
+ "learning_rate": 0.0006,
+ "loss": 3.5918965339660645,
+ "step": 3055
+ },
+ {
+ "epoch": 42.44735692442114,
+ "grad_norm": 0.2342296987771988,
+ "learning_rate": 0.0006,
+ "loss": 3.6364407539367676,
+ "step": 3056
+ },
+ {
+ "epoch": 42.46133682830931,
+ "grad_norm": 0.2304094135761261,
+ "learning_rate": 0.0006,
+ "loss": 3.6561477184295654,
+ "step": 3057
+ },
+ {
+ "epoch": 42.47531673219746,
+ "grad_norm": 0.20882441103458405,
+ "learning_rate": 0.0006,
+ "loss": 3.611250638961792,
+ "step": 3058
+ },
+ {
+ "epoch": 42.489296636085626,
+ "grad_norm": 0.24346643686294556,
+ "learning_rate": 0.0006,
+ "loss": 3.580082416534424,
+ "step": 3059
+ },
+ {
+ "epoch": 42.50327653997379,
+ "grad_norm": 0.260711133480072,
+ "learning_rate": 0.0006,
+ "loss": 3.6179792881011963,
+ "step": 3060
+ },
+ {
+ "epoch": 42.517256443861946,
+ "grad_norm": 0.21223759651184082,
+ "learning_rate": 0.0006,
+ "loss": 3.6153154373168945,
+ "step": 3061
+ },
+ {
+ "epoch": 42.53123634775011,
+ "grad_norm": 0.21429137885570526,
+ "learning_rate": 0.0006,
+ "loss": 3.6003379821777344,
+ "step": 3062
+ },
+ {
+ "epoch": 42.54521625163827,
+ "grad_norm": 0.23659434914588928,
+ "learning_rate": 0.0006,
+ "loss": 3.6540589332580566,
+ "step": 3063
+ },
+ {
+ "epoch": 42.55919615552643,
+ "grad_norm": 0.280344158411026,
+ "learning_rate": 0.0006,
+ "loss": 3.6406192779541016,
+ "step": 3064
+ },
+ {
+ "epoch": 42.57317605941459,
+ "grad_norm": 0.2903953194618225,
+ "learning_rate": 0.0006,
+ "loss": 3.643479824066162,
+ "step": 3065
+ },
+ {
+ "epoch": 42.58715596330275,
+ "grad_norm": 0.24958311021327972,
+ "learning_rate": 0.0006,
+ "loss": 3.6320221424102783,
+ "step": 3066
+ },
+ {
+ "epoch": 42.60113586719091,
+ "grad_norm": 0.22525225579738617,
+ "learning_rate": 0.0006,
+ "loss": 3.641676425933838,
+ "step": 3067
+ },
+ {
+ "epoch": 42.615115771079076,
+ "grad_norm": 0.23025161027908325,
+ "learning_rate": 0.0006,
+ "loss": 3.6465210914611816,
+ "step": 3068
+ },
+ {
+ "epoch": 42.62909567496723,
+ "grad_norm": 0.21947328746318817,
+ "learning_rate": 0.0006,
+ "loss": 3.667877435684204,
+ "step": 3069
+ },
+ {
+ "epoch": 42.643075578855395,
+ "grad_norm": 0.22809366881847382,
+ "learning_rate": 0.0006,
+ "loss": 3.663166046142578,
+ "step": 3070
+ },
+ {
+ "epoch": 42.65705548274356,
+ "grad_norm": 0.21938708424568176,
+ "learning_rate": 0.0006,
+ "loss": 3.619001865386963,
+ "step": 3071
+ },
+ {
+ "epoch": 42.671035386631715,
+ "grad_norm": 0.231620192527771,
+ "learning_rate": 0.0006,
+ "loss": 3.652332305908203,
+ "step": 3072
+ },
+ {
+ "epoch": 42.68501529051988,
+ "grad_norm": 0.23683936893939972,
+ "learning_rate": 0.0006,
+ "loss": 3.6633410453796387,
+ "step": 3073
+ },
+ {
+ "epoch": 42.69899519440804,
+ "grad_norm": 0.23752044141292572,
+ "learning_rate": 0.0006,
+ "loss": 3.646064281463623,
+ "step": 3074
+ },
+ {
+ "epoch": 42.7129750982962,
+ "grad_norm": 0.23041971027851105,
+ "learning_rate": 0.0006,
+ "loss": 3.6431851387023926,
+ "step": 3075
+ },
+ {
+ "epoch": 42.72695500218436,
+ "grad_norm": 0.220438614487648,
+ "learning_rate": 0.0006,
+ "loss": 3.6499950885772705,
+ "step": 3076
+ },
+ {
+ "epoch": 42.74093490607252,
+ "grad_norm": 0.24297107756137848,
+ "learning_rate": 0.0006,
+ "loss": 3.6655125617980957,
+ "step": 3077
+ },
+ {
+ "epoch": 42.75491480996068,
+ "grad_norm": 0.21835893392562866,
+ "learning_rate": 0.0006,
+ "loss": 3.61672043800354,
+ "step": 3078
+ },
+ {
+ "epoch": 42.768894713848844,
+ "grad_norm": 0.22490793466567993,
+ "learning_rate": 0.0006,
+ "loss": 3.652825355529785,
+ "step": 3079
+ },
+ {
+ "epoch": 42.782874617737,
+ "grad_norm": 0.2246086746454239,
+ "learning_rate": 0.0006,
+ "loss": 3.6290056705474854,
+ "step": 3080
+ },
+ {
+ "epoch": 42.796854521625164,
+ "grad_norm": 0.21527042984962463,
+ "learning_rate": 0.0006,
+ "loss": 3.6587281227111816,
+ "step": 3081
+ },
+ {
+ "epoch": 42.81083442551333,
+ "grad_norm": 0.19586899876594543,
+ "learning_rate": 0.0006,
+ "loss": 3.639626979827881,
+ "step": 3082
+ },
+ {
+ "epoch": 42.824814329401484,
+ "grad_norm": 0.20881155133247375,
+ "learning_rate": 0.0006,
+ "loss": 3.6305861473083496,
+ "step": 3083
+ },
+ {
+ "epoch": 42.83879423328965,
+ "grad_norm": 0.20094981789588928,
+ "learning_rate": 0.0006,
+ "loss": 3.609614849090576,
+ "step": 3084
+ },
+ {
+ "epoch": 42.8527741371778,
+ "grad_norm": 0.21786150336265564,
+ "learning_rate": 0.0006,
+ "loss": 3.6423556804656982,
+ "step": 3085
+ },
+ {
+ "epoch": 42.86675404106597,
+ "grad_norm": 0.24493595957756042,
+ "learning_rate": 0.0006,
+ "loss": 3.631321668624878,
+ "step": 3086
+ },
+ {
+ "epoch": 42.88073394495413,
+ "grad_norm": 0.2437327355146408,
+ "learning_rate": 0.0006,
+ "loss": 3.6624178886413574,
+ "step": 3087
+ },
+ {
+ "epoch": 42.89471384884229,
+ "grad_norm": 0.21020543575286865,
+ "learning_rate": 0.0006,
+ "loss": 3.6567513942718506,
+ "step": 3088
+ },
+ {
+ "epoch": 42.90869375273045,
+ "grad_norm": 0.18977083265781403,
+ "learning_rate": 0.0006,
+ "loss": 3.6268601417541504,
+ "step": 3089
+ },
+ {
+ "epoch": 42.92267365661861,
+ "grad_norm": 0.2211192399263382,
+ "learning_rate": 0.0006,
+ "loss": 3.6690402030944824,
+ "step": 3090
+ },
+ {
+ "epoch": 42.93665356050677,
+ "grad_norm": 0.2695990204811096,
+ "learning_rate": 0.0006,
+ "loss": 3.667701244354248,
+ "step": 3091
+ },
+ {
+ "epoch": 42.95063346439493,
+ "grad_norm": 0.25910887122154236,
+ "learning_rate": 0.0006,
+ "loss": 3.627504587173462,
+ "step": 3092
+ },
+ {
+ "epoch": 42.964613368283096,
+ "grad_norm": 0.2466248720884323,
+ "learning_rate": 0.0006,
+ "loss": 3.6462182998657227,
+ "step": 3093
+ },
+ {
+ "epoch": 42.97859327217125,
+ "grad_norm": 0.22997038066387177,
+ "learning_rate": 0.0006,
+ "loss": 3.647430896759033,
+ "step": 3094
+ },
+ {
+ "epoch": 42.992573176059416,
+ "grad_norm": 0.1989113837480545,
+ "learning_rate": 0.0006,
+ "loss": 3.6502084732055664,
+ "step": 3095
+ },
+ {
+ "epoch": 43.0,
+ "grad_norm": 0.22976496815681458,
+ "learning_rate": 0.0006,
+ "loss": 3.6963884830474854,
+ "step": 3096
+ },
+ {
+ "epoch": 43.0,
+ "eval_loss": 3.9656779766082764,
+ "eval_runtime": 43.9281,
+ "eval_samples_per_second": 55.591,
+ "eval_steps_per_second": 3.483,
+ "step": 3096
+ },
+ {
+ "epoch": 43.01397990388816,
+ "grad_norm": 0.2862325608730316,
+ "learning_rate": 0.0006,
+ "loss": 3.581247568130493,
+ "step": 3097
+ },
+ {
+ "epoch": 43.02795980777632,
+ "grad_norm": 0.3867015540599823,
+ "learning_rate": 0.0006,
+ "loss": 3.611076593399048,
+ "step": 3098
+ },
+ {
+ "epoch": 43.04193971166448,
+ "grad_norm": 0.4139448404312134,
+ "learning_rate": 0.0006,
+ "loss": 3.625164031982422,
+ "step": 3099
+ },
+ {
+ "epoch": 43.05591961555265,
+ "grad_norm": 0.292407363653183,
+ "learning_rate": 0.0006,
+ "loss": 3.615546703338623,
+ "step": 3100
+ },
+ {
+ "epoch": 43.0698995194408,
+ "grad_norm": 0.24272124469280243,
+ "learning_rate": 0.0006,
+ "loss": 3.5965943336486816,
+ "step": 3101
+ },
+ {
+ "epoch": 43.083879423328966,
+ "grad_norm": 0.2761254608631134,
+ "learning_rate": 0.0006,
+ "loss": 3.605706214904785,
+ "step": 3102
+ },
+ {
+ "epoch": 43.09785932721712,
+ "grad_norm": 0.25232183933258057,
+ "learning_rate": 0.0006,
+ "loss": 3.6252012252807617,
+ "step": 3103
+ },
+ {
+ "epoch": 43.111839231105286,
+ "grad_norm": 0.248970165848732,
+ "learning_rate": 0.0006,
+ "loss": 3.6028337478637695,
+ "step": 3104
+ },
+ {
+ "epoch": 43.12581913499345,
+ "grad_norm": 0.22088921070098877,
+ "learning_rate": 0.0006,
+ "loss": 3.591614007949829,
+ "step": 3105
+ },
+ {
+ "epoch": 43.139799038881605,
+ "grad_norm": 0.21528655290603638,
+ "learning_rate": 0.0006,
+ "loss": 3.6237306594848633,
+ "step": 3106
+ },
+ {
+ "epoch": 43.15377894276977,
+ "grad_norm": 0.22799135744571686,
+ "learning_rate": 0.0006,
+ "loss": 3.5968847274780273,
+ "step": 3107
+ },
+ {
+ "epoch": 43.16775884665793,
+ "grad_norm": 0.23102127015590668,
+ "learning_rate": 0.0006,
+ "loss": 3.6046414375305176,
+ "step": 3108
+ },
+ {
+ "epoch": 43.18173875054609,
+ "grad_norm": 0.22876501083374023,
+ "learning_rate": 0.0006,
+ "loss": 3.635608196258545,
+ "step": 3109
+ },
+ {
+ "epoch": 43.19571865443425,
+ "grad_norm": 0.24920420348644257,
+ "learning_rate": 0.0006,
+ "loss": 3.628662109375,
+ "step": 3110
+ },
+ {
+ "epoch": 43.20969855832241,
+ "grad_norm": 0.2527749538421631,
+ "learning_rate": 0.0006,
+ "loss": 3.6109046936035156,
+ "step": 3111
+ },
+ {
+ "epoch": 43.22367846221057,
+ "grad_norm": 0.22529229521751404,
+ "learning_rate": 0.0006,
+ "loss": 3.6536030769348145,
+ "step": 3112
+ },
+ {
+ "epoch": 43.237658366098735,
+ "grad_norm": 0.20031821727752686,
+ "learning_rate": 0.0006,
+ "loss": 3.6328792572021484,
+ "step": 3113
+ },
+ {
+ "epoch": 43.25163826998689,
+ "grad_norm": 0.21075189113616943,
+ "learning_rate": 0.0006,
+ "loss": 3.6200530529022217,
+ "step": 3114
+ },
+ {
+ "epoch": 43.265618173875055,
+ "grad_norm": 0.21164856851100922,
+ "learning_rate": 0.0006,
+ "loss": 3.6276001930236816,
+ "step": 3115
+ },
+ {
+ "epoch": 43.27959807776322,
+ "grad_norm": 0.19306758046150208,
+ "learning_rate": 0.0006,
+ "loss": 3.608675956726074,
+ "step": 3116
+ },
+ {
+ "epoch": 43.293577981651374,
+ "grad_norm": 0.20288796722888947,
+ "learning_rate": 0.0006,
+ "loss": 3.6057004928588867,
+ "step": 3117
+ },
+ {
+ "epoch": 43.30755788553954,
+ "grad_norm": 0.1901484876871109,
+ "learning_rate": 0.0006,
+ "loss": 3.6191725730895996,
+ "step": 3118
+ },
+ {
+ "epoch": 43.3215377894277,
+ "grad_norm": 0.19438181817531586,
+ "learning_rate": 0.0006,
+ "loss": 3.5814337730407715,
+ "step": 3119
+ },
+ {
+ "epoch": 43.33551769331586,
+ "grad_norm": 0.19924484193325043,
+ "learning_rate": 0.0006,
+ "loss": 3.6168713569641113,
+ "step": 3120
+ },
+ {
+ "epoch": 43.34949759720402,
+ "grad_norm": 0.20757409930229187,
+ "learning_rate": 0.0006,
+ "loss": 3.6281509399414062,
+ "step": 3121
+ },
+ {
+ "epoch": 43.36347750109218,
+ "grad_norm": 0.22500184178352356,
+ "learning_rate": 0.0006,
+ "loss": 3.635101795196533,
+ "step": 3122
+ },
+ {
+ "epoch": 43.37745740498034,
+ "grad_norm": 0.22061555087566376,
+ "learning_rate": 0.0006,
+ "loss": 3.630622386932373,
+ "step": 3123
+ },
+ {
+ "epoch": 43.391437308868504,
+ "grad_norm": 0.2094152420759201,
+ "learning_rate": 0.0006,
+ "loss": 3.581803798675537,
+ "step": 3124
+ },
+ {
+ "epoch": 43.40541721275666,
+ "grad_norm": 0.19607678055763245,
+ "learning_rate": 0.0006,
+ "loss": 3.6149864196777344,
+ "step": 3125
+ },
+ {
+ "epoch": 43.419397116644824,
+ "grad_norm": 0.18985028564929962,
+ "learning_rate": 0.0006,
+ "loss": 3.6338040828704834,
+ "step": 3126
+ },
+ {
+ "epoch": 43.43337702053299,
+ "grad_norm": 0.20490778982639313,
+ "learning_rate": 0.0006,
+ "loss": 3.63275146484375,
+ "step": 3127
+ },
+ {
+ "epoch": 43.44735692442114,
+ "grad_norm": 0.24385297298431396,
+ "learning_rate": 0.0006,
+ "loss": 3.6412134170532227,
+ "step": 3128
+ },
+ {
+ "epoch": 43.46133682830931,
+ "grad_norm": 0.243601992726326,
+ "learning_rate": 0.0006,
+ "loss": 3.594238758087158,
+ "step": 3129
+ },
+ {
+ "epoch": 43.47531673219746,
+ "grad_norm": 0.21314913034439087,
+ "learning_rate": 0.0006,
+ "loss": 3.5962629318237305,
+ "step": 3130
+ },
+ {
+ "epoch": 43.489296636085626,
+ "grad_norm": 0.20499329268932343,
+ "learning_rate": 0.0006,
+ "loss": 3.61600923538208,
+ "step": 3131
+ },
+ {
+ "epoch": 43.50327653997379,
+ "grad_norm": 0.20199540257453918,
+ "learning_rate": 0.0006,
+ "loss": 3.638469934463501,
+ "step": 3132
+ },
+ {
+ "epoch": 43.517256443861946,
+ "grad_norm": 0.19932983815670013,
+ "learning_rate": 0.0006,
+ "loss": 3.619145393371582,
+ "step": 3133
+ },
+ {
+ "epoch": 43.53123634775011,
+ "grad_norm": 0.20401954650878906,
+ "learning_rate": 0.0006,
+ "loss": 3.643700122833252,
+ "step": 3134
+ },
+ {
+ "epoch": 43.54521625163827,
+ "grad_norm": 0.20784904062747955,
+ "learning_rate": 0.0006,
+ "loss": 3.619272232055664,
+ "step": 3135
+ },
+ {
+ "epoch": 43.55919615552643,
+ "grad_norm": 0.21003122627735138,
+ "learning_rate": 0.0006,
+ "loss": 3.629542827606201,
+ "step": 3136
+ },
+ {
+ "epoch": 43.57317605941459,
+ "grad_norm": 0.2220298945903778,
+ "learning_rate": 0.0006,
+ "loss": 3.655543804168701,
+ "step": 3137
+ },
+ {
+ "epoch": 43.58715596330275,
+ "grad_norm": 0.21159163117408752,
+ "learning_rate": 0.0006,
+ "loss": 3.6092495918273926,
+ "step": 3138
+ },
+ {
+ "epoch": 43.60113586719091,
+ "grad_norm": 0.19462746381759644,
+ "learning_rate": 0.0006,
+ "loss": 3.6447129249572754,
+ "step": 3139
+ },
+ {
+ "epoch": 43.615115771079076,
+ "grad_norm": 0.20523829758167267,
+ "learning_rate": 0.0006,
+ "loss": 3.6292669773101807,
+ "step": 3140
+ },
+ {
+ "epoch": 43.62909567496723,
+ "grad_norm": 0.2172321230173111,
+ "learning_rate": 0.0006,
+ "loss": 3.6144580841064453,
+ "step": 3141
+ },
+ {
+ "epoch": 43.643075578855395,
+ "grad_norm": 0.21751564741134644,
+ "learning_rate": 0.0006,
+ "loss": 3.6381068229675293,
+ "step": 3142
+ },
+ {
+ "epoch": 43.65705548274356,
+ "grad_norm": 0.1914236694574356,
+ "learning_rate": 0.0006,
+ "loss": 3.6392078399658203,
+ "step": 3143
+ },
+ {
+ "epoch": 43.671035386631715,
+ "grad_norm": 0.19792547821998596,
+ "learning_rate": 0.0006,
+ "loss": 3.6394457817077637,
+ "step": 3144
+ },
+ {
+ "epoch": 43.68501529051988,
+ "grad_norm": 0.2106214165687561,
+ "learning_rate": 0.0006,
+ "loss": 3.626147747039795,
+ "step": 3145
+ },
+ {
+ "epoch": 43.69899519440804,
+ "grad_norm": 0.21802955865859985,
+ "learning_rate": 0.0006,
+ "loss": 3.63372802734375,
+ "step": 3146
+ },
+ {
+ "epoch": 43.7129750982962,
+ "grad_norm": 0.21498727798461914,
+ "learning_rate": 0.0006,
+ "loss": 3.6193063259124756,
+ "step": 3147
+ },
+ {
+ "epoch": 43.72695500218436,
+ "grad_norm": 0.2176690250635147,
+ "learning_rate": 0.0006,
+ "loss": 3.6431519985198975,
+ "step": 3148
+ },
+ {
+ "epoch": 43.74093490607252,
+ "grad_norm": 0.26883506774902344,
+ "learning_rate": 0.0006,
+ "loss": 3.6216721534729004,
+ "step": 3149
+ },
+ {
+ "epoch": 43.75491480996068,
+ "grad_norm": 0.23485299944877625,
+ "learning_rate": 0.0006,
+ "loss": 3.6361191272735596,
+ "step": 3150
+ },
+ {
+ "epoch": 43.768894713848844,
+ "grad_norm": 0.20496341586112976,
+ "learning_rate": 0.0006,
+ "loss": 3.6258792877197266,
+ "step": 3151
+ },
+ {
+ "epoch": 43.782874617737,
+ "grad_norm": 0.21792510151863098,
+ "learning_rate": 0.0006,
+ "loss": 3.6522839069366455,
+ "step": 3152
+ },
+ {
+ "epoch": 43.796854521625164,
+ "grad_norm": 0.2589452564716339,
+ "learning_rate": 0.0006,
+ "loss": 3.651235580444336,
+ "step": 3153
+ },
+ {
+ "epoch": 43.81083442551333,
+ "grad_norm": 0.24883611500263214,
+ "learning_rate": 0.0006,
+ "loss": 3.6382546424865723,
+ "step": 3154
+ },
+ {
+ "epoch": 43.824814329401484,
+ "grad_norm": 0.22466720640659332,
+ "learning_rate": 0.0006,
+ "loss": 3.6232261657714844,
+ "step": 3155
+ },
+ {
+ "epoch": 43.83879423328965,
+ "grad_norm": 0.19477292895317078,
+ "learning_rate": 0.0006,
+ "loss": 3.6350135803222656,
+ "step": 3156
+ },
+ {
+ "epoch": 43.8527741371778,
+ "grad_norm": 0.20302540063858032,
+ "learning_rate": 0.0006,
+ "loss": 3.638143539428711,
+ "step": 3157
+ },
+ {
+ "epoch": 43.86675404106597,
+ "grad_norm": 0.2112276554107666,
+ "learning_rate": 0.0006,
+ "loss": 3.6415610313415527,
+ "step": 3158
+ },
+ {
+ "epoch": 43.88073394495413,
+ "grad_norm": 0.20544779300689697,
+ "learning_rate": 0.0006,
+ "loss": 3.6437134742736816,
+ "step": 3159
+ },
+ {
+ "epoch": 43.89471384884229,
+ "grad_norm": 0.2320292890071869,
+ "learning_rate": 0.0006,
+ "loss": 3.6178359985351562,
+ "step": 3160
+ },
+ {
+ "epoch": 43.90869375273045,
+ "grad_norm": 0.25862693786621094,
+ "learning_rate": 0.0006,
+ "loss": 3.618229389190674,
+ "step": 3161
+ },
+ {
+ "epoch": 43.92267365661861,
+ "grad_norm": 0.2741934061050415,
+ "learning_rate": 0.0006,
+ "loss": 3.6046690940856934,
+ "step": 3162
+ },
+ {
+ "epoch": 43.93665356050677,
+ "grad_norm": 0.24312593042850494,
+ "learning_rate": 0.0006,
+ "loss": 3.5835556983947754,
+ "step": 3163
+ },
+ {
+ "epoch": 43.95063346439493,
+ "grad_norm": 0.22174517810344696,
+ "learning_rate": 0.0006,
+ "loss": 3.6505162715911865,
+ "step": 3164
+ },
+ {
+ "epoch": 43.964613368283096,
+ "grad_norm": 0.22016975283622742,
+ "learning_rate": 0.0006,
+ "loss": 3.6385562419891357,
+ "step": 3165
+ },
+ {
+ "epoch": 43.97859327217125,
+ "grad_norm": 0.23034313321113586,
+ "learning_rate": 0.0006,
+ "loss": 3.6345865726470947,
+ "step": 3166
+ },
+ {
+ "epoch": 43.992573176059416,
+ "grad_norm": 0.21236231923103333,
+ "learning_rate": 0.0006,
+ "loss": 3.6337084770202637,
+ "step": 3167
+ },
+ {
+ "epoch": 44.0,
+ "grad_norm": 0.2344549298286438,
+ "learning_rate": 0.0006,
+ "loss": 3.677978515625,
+ "step": 3168
+ },
+ {
+ "epoch": 44.0,
+ "eval_loss": 3.9817888736724854,
+ "eval_runtime": 44.4396,
+ "eval_samples_per_second": 54.951,
+ "eval_steps_per_second": 3.443,
+ "step": 3168
+ },
+ {
+ "epoch": 44.01397990388816,
+ "grad_norm": 0.19790801405906677,
+ "learning_rate": 0.0006,
+ "loss": 3.590817451477051,
+ "step": 3169
+ },
+ {
+ "epoch": 44.02795980777632,
+ "grad_norm": 0.22922387719154358,
+ "learning_rate": 0.0006,
+ "loss": 3.643888473510742,
+ "step": 3170
+ },
+ {
+ "epoch": 44.04193971166448,
+ "grad_norm": 0.24750149250030518,
+ "learning_rate": 0.0006,
+ "loss": 3.596278667449951,
+ "step": 3171
+ },
+ {
+ "epoch": 44.05591961555265,
+ "grad_norm": 0.2511967420578003,
+ "learning_rate": 0.0006,
+ "loss": 3.6138253211975098,
+ "step": 3172
+ },
+ {
+ "epoch": 44.0698995194408,
+ "grad_norm": 0.2530326843261719,
+ "learning_rate": 0.0006,
+ "loss": 3.5710060596466064,
+ "step": 3173
+ },
+ {
+ "epoch": 44.083879423328966,
+ "grad_norm": 0.2629041373729706,
+ "learning_rate": 0.0006,
+ "loss": 3.61676025390625,
+ "step": 3174
+ },
+ {
+ "epoch": 44.09785932721712,
+ "grad_norm": 0.27373939752578735,
+ "learning_rate": 0.0006,
+ "loss": 3.613091230392456,
+ "step": 3175
+ },
+ {
+ "epoch": 44.111839231105286,
+ "grad_norm": 0.24354346096515656,
+ "learning_rate": 0.0006,
+ "loss": 3.6133360862731934,
+ "step": 3176
+ },
+ {
+ "epoch": 44.12581913499345,
+ "grad_norm": 0.21540892124176025,
+ "learning_rate": 0.0006,
+ "loss": 3.6367645263671875,
+ "step": 3177
+ },
+ {
+ "epoch": 44.139799038881605,
+ "grad_norm": 0.22251278162002563,
+ "learning_rate": 0.0006,
+ "loss": 3.6266322135925293,
+ "step": 3178
+ },
+ {
+ "epoch": 44.15377894276977,
+ "grad_norm": 0.26196029782295227,
+ "learning_rate": 0.0006,
+ "loss": 3.616487979888916,
+ "step": 3179
+ },
+ {
+ "epoch": 44.16775884665793,
+ "grad_norm": 0.2614341080188751,
+ "learning_rate": 0.0006,
+ "loss": 3.5902786254882812,
+ "step": 3180
+ },
+ {
+ "epoch": 44.18173875054609,
+ "grad_norm": 0.23517177999019623,
+ "learning_rate": 0.0006,
+ "loss": 3.610124111175537,
+ "step": 3181
+ },
+ {
+ "epoch": 44.19571865443425,
+ "grad_norm": 0.20091469585895538,
+ "learning_rate": 0.0006,
+ "loss": 3.5861713886260986,
+ "step": 3182
+ },
+ {
+ "epoch": 44.20969855832241,
+ "grad_norm": 0.19659830629825592,
+ "learning_rate": 0.0006,
+ "loss": 3.6157889366149902,
+ "step": 3183
+ },
+ {
+ "epoch": 44.22367846221057,
+ "grad_norm": 0.20690861344337463,
+ "learning_rate": 0.0006,
+ "loss": 3.5710649490356445,
+ "step": 3184
+ },
+ {
+ "epoch": 44.237658366098735,
+ "grad_norm": 0.2478247433900833,
+ "learning_rate": 0.0006,
+ "loss": 3.609031915664673,
+ "step": 3185
+ },
+ {
+ "epoch": 44.25163826998689,
+ "grad_norm": 0.2678471505641937,
+ "learning_rate": 0.0006,
+ "loss": 3.6412887573242188,
+ "step": 3186
+ },
+ {
+ "epoch": 44.265618173875055,
+ "grad_norm": 0.21856079995632172,
+ "learning_rate": 0.0006,
+ "loss": 3.6113123893737793,
+ "step": 3187
+ },
+ {
+ "epoch": 44.27959807776322,
+ "grad_norm": 0.23104850947856903,
+ "learning_rate": 0.0006,
+ "loss": 3.6022086143493652,
+ "step": 3188
+ },
+ {
+ "epoch": 44.293577981651374,
+ "grad_norm": 0.2380223423242569,
+ "learning_rate": 0.0006,
+ "loss": 3.598735809326172,
+ "step": 3189
+ },
+ {
+ "epoch": 44.30755788553954,
+ "grad_norm": 0.23005320131778717,
+ "learning_rate": 0.0006,
+ "loss": 3.595881938934326,
+ "step": 3190
+ },
+ {
+ "epoch": 44.3215377894277,
+ "grad_norm": 0.23327432572841644,
+ "learning_rate": 0.0006,
+ "loss": 3.6198601722717285,
+ "step": 3191
+ },
+ {
+ "epoch": 44.33551769331586,
+ "grad_norm": 0.2272268831729889,
+ "learning_rate": 0.0006,
+ "loss": 3.6135387420654297,
+ "step": 3192
+ },
+ {
+ "epoch": 44.34949759720402,
+ "grad_norm": 0.2518279552459717,
+ "learning_rate": 0.0006,
+ "loss": 3.6084556579589844,
+ "step": 3193
+ },
+ {
+ "epoch": 44.36347750109218,
+ "grad_norm": 0.27668607234954834,
+ "learning_rate": 0.0006,
+ "loss": 3.644430160522461,
+ "step": 3194
+ },
+ {
+ "epoch": 44.37745740498034,
+ "grad_norm": 0.26110342144966125,
+ "learning_rate": 0.0006,
+ "loss": 3.64072322845459,
+ "step": 3195
+ },
+ {
+ "epoch": 44.391437308868504,
+ "grad_norm": 0.22767964005470276,
+ "learning_rate": 0.0006,
+ "loss": 3.5570502281188965,
+ "step": 3196
+ },
+ {
+ "epoch": 44.40541721275666,
+ "grad_norm": 0.2199093997478485,
+ "learning_rate": 0.0006,
+ "loss": 3.558889150619507,
+ "step": 3197
+ },
+ {
+ "epoch": 44.419397116644824,
+ "grad_norm": 0.21653494238853455,
+ "learning_rate": 0.0006,
+ "loss": 3.6215333938598633,
+ "step": 3198
+ },
+ {
+ "epoch": 44.43337702053299,
+ "grad_norm": 0.1958773136138916,
+ "learning_rate": 0.0006,
+ "loss": 3.588468551635742,
+ "step": 3199
+ },
+ {
+ "epoch": 44.44735692442114,
+ "grad_norm": 0.20205403864383698,
+ "learning_rate": 0.0006,
+ "loss": 3.6109578609466553,
+ "step": 3200
+ },
+ {
+ "epoch": 44.46133682830931,
+ "grad_norm": 0.19632115960121155,
+ "learning_rate": 0.0006,
+ "loss": 3.634315013885498,
+ "step": 3201
+ },
+ {
+ "epoch": 44.47531673219746,
+ "grad_norm": 0.19327203929424286,
+ "learning_rate": 0.0006,
+ "loss": 3.6335930824279785,
+ "step": 3202
+ },
+ {
+ "epoch": 44.489296636085626,
+ "grad_norm": 0.19743897020816803,
+ "learning_rate": 0.0006,
+ "loss": 3.6164016723632812,
+ "step": 3203
+ },
+ {
+ "epoch": 44.50327653997379,
+ "grad_norm": 0.20413564145565033,
+ "learning_rate": 0.0006,
+ "loss": 3.663613796234131,
+ "step": 3204
+ },
+ {
+ "epoch": 44.517256443861946,
+ "grad_norm": 0.2057798206806183,
+ "learning_rate": 0.0006,
+ "loss": 3.625131130218506,
+ "step": 3205
+ },
+ {
+ "epoch": 44.53123634775011,
+ "grad_norm": 0.20076915621757507,
+ "learning_rate": 0.0006,
+ "loss": 3.6362178325653076,
+ "step": 3206
+ },
+ {
+ "epoch": 44.54521625163827,
+ "grad_norm": 0.2381955236196518,
+ "learning_rate": 0.0006,
+ "loss": 3.621263265609741,
+ "step": 3207
+ },
+ {
+ "epoch": 44.55919615552643,
+ "grad_norm": 0.27008768916130066,
+ "learning_rate": 0.0006,
+ "loss": 3.6133322715759277,
+ "step": 3208
+ },
+ {
+ "epoch": 44.57317605941459,
+ "grad_norm": 0.25677573680877686,
+ "learning_rate": 0.0006,
+ "loss": 3.6210851669311523,
+ "step": 3209
+ },
+ {
+ "epoch": 44.58715596330275,
+ "grad_norm": 0.21022997796535492,
+ "learning_rate": 0.0006,
+ "loss": 3.626483917236328,
+ "step": 3210
+ },
+ {
+ "epoch": 44.60113586719091,
+ "grad_norm": 0.19918566942214966,
+ "learning_rate": 0.0006,
+ "loss": 3.6321091651916504,
+ "step": 3211
+ },
+ {
+ "epoch": 44.615115771079076,
+ "grad_norm": 0.2114727795124054,
+ "learning_rate": 0.0006,
+ "loss": 3.5767595767974854,
+ "step": 3212
+ },
+ {
+ "epoch": 44.62909567496723,
+ "grad_norm": 0.20968441665172577,
+ "learning_rate": 0.0006,
+ "loss": 3.6040430068969727,
+ "step": 3213
+ },
+ {
+ "epoch": 44.643075578855395,
+ "grad_norm": 0.19996227324008942,
+ "learning_rate": 0.0006,
+ "loss": 3.6688590049743652,
+ "step": 3214
+ },
+ {
+ "epoch": 44.65705548274356,
+ "grad_norm": 0.19998830556869507,
+ "learning_rate": 0.0006,
+ "loss": 3.6349434852600098,
+ "step": 3215
+ },
+ {
+ "epoch": 44.671035386631715,
+ "grad_norm": 0.20812496542930603,
+ "learning_rate": 0.0006,
+ "loss": 3.6363840103149414,
+ "step": 3216
+ },
+ {
+ "epoch": 44.68501529051988,
+ "grad_norm": 0.1988825500011444,
+ "learning_rate": 0.0006,
+ "loss": 3.6180496215820312,
+ "step": 3217
+ },
+ {
+ "epoch": 44.69899519440804,
+ "grad_norm": 0.2114664614200592,
+ "learning_rate": 0.0006,
+ "loss": 3.6362106800079346,
+ "step": 3218
+ },
+ {
+ "epoch": 44.7129750982962,
+ "grad_norm": 0.19847962260246277,
+ "learning_rate": 0.0006,
+ "loss": 3.618500232696533,
+ "step": 3219
+ },
+ {
+ "epoch": 44.72695500218436,
+ "grad_norm": 0.19903887808322906,
+ "learning_rate": 0.0006,
+ "loss": 3.6360888481140137,
+ "step": 3220
+ },
+ {
+ "epoch": 44.74093490607252,
+ "grad_norm": 0.21198545396327972,
+ "learning_rate": 0.0006,
+ "loss": 3.6347005367279053,
+ "step": 3221
+ },
+ {
+ "epoch": 44.75491480996068,
+ "grad_norm": 0.18334898352622986,
+ "learning_rate": 0.0006,
+ "loss": 3.6160783767700195,
+ "step": 3222
+ },
+ {
+ "epoch": 44.768894713848844,
+ "grad_norm": 0.19260665774345398,
+ "learning_rate": 0.0006,
+ "loss": 3.6322834491729736,
+ "step": 3223
+ },
+ {
+ "epoch": 44.782874617737,
+ "grad_norm": 0.2084558755159378,
+ "learning_rate": 0.0006,
+ "loss": 3.615227699279785,
+ "step": 3224
+ },
+ {
+ "epoch": 44.796854521625164,
+ "grad_norm": 0.24538686871528625,
+ "learning_rate": 0.0006,
+ "loss": 3.6387081146240234,
+ "step": 3225
+ },
+ {
+ "epoch": 44.81083442551333,
+ "grad_norm": 0.23291894793510437,
+ "learning_rate": 0.0006,
+ "loss": 3.6245408058166504,
+ "step": 3226
+ },
+ {
+ "epoch": 44.824814329401484,
+ "grad_norm": 0.20715969800949097,
+ "learning_rate": 0.0006,
+ "loss": 3.633620262145996,
+ "step": 3227
+ },
+ {
+ "epoch": 44.83879423328965,
+ "grad_norm": 0.20866821706295013,
+ "learning_rate": 0.0006,
+ "loss": 3.613438129425049,
+ "step": 3228
+ },
+ {
+ "epoch": 44.8527741371778,
+ "grad_norm": 0.2048904299736023,
+ "learning_rate": 0.0006,
+ "loss": 3.668807029724121,
+ "step": 3229
+ },
+ {
+ "epoch": 44.86675404106597,
+ "grad_norm": 0.2073894739151001,
+ "learning_rate": 0.0006,
+ "loss": 3.6000914573669434,
+ "step": 3230
+ },
+ {
+ "epoch": 44.88073394495413,
+ "grad_norm": 0.22017404437065125,
+ "learning_rate": 0.0006,
+ "loss": 3.6024718284606934,
+ "step": 3231
+ },
+ {
+ "epoch": 44.89471384884229,
+ "grad_norm": 0.23971669375896454,
+ "learning_rate": 0.0006,
+ "loss": 3.6339516639709473,
+ "step": 3232
+ },
+ {
+ "epoch": 44.90869375273045,
+ "grad_norm": 0.2258273959159851,
+ "learning_rate": 0.0006,
+ "loss": 3.6480093002319336,
+ "step": 3233
+ },
+ {
+ "epoch": 44.92267365661861,
+ "grad_norm": 0.22079502046108246,
+ "learning_rate": 0.0006,
+ "loss": 3.643446922302246,
+ "step": 3234
+ },
+ {
+ "epoch": 44.93665356050677,
+ "grad_norm": 0.22109337151050568,
+ "learning_rate": 0.0006,
+ "loss": 3.5975499153137207,
+ "step": 3235
+ },
+ {
+ "epoch": 44.95063346439493,
+ "grad_norm": 0.20142309367656708,
+ "learning_rate": 0.0006,
+ "loss": 3.6057305335998535,
+ "step": 3236
+ },
+ {
+ "epoch": 44.964613368283096,
+ "grad_norm": 0.20089569687843323,
+ "learning_rate": 0.0006,
+ "loss": 3.5900750160217285,
+ "step": 3237
+ },
+ {
+ "epoch": 44.97859327217125,
+ "grad_norm": 0.19860075414180756,
+ "learning_rate": 0.0006,
+ "loss": 3.5954184532165527,
+ "step": 3238
+ },
+ {
+ "epoch": 44.992573176059416,
+ "grad_norm": 0.19166013598442078,
+ "learning_rate": 0.0006,
+ "loss": 3.6568803787231445,
+ "step": 3239
+ },
+ {
+ "epoch": 45.0,
+ "grad_norm": 0.22416932880878448,
+ "learning_rate": 0.0006,
+ "loss": 3.6483092308044434,
+ "step": 3240
+ },
+ {
+ "epoch": 45.0,
+ "eval_loss": 3.9821224212646484,
+ "eval_runtime": 44.5415,
+ "eval_samples_per_second": 54.825,
+ "eval_steps_per_second": 3.435,
+ "step": 3240
+ },
+ {
+ "epoch": 45.01397990388816,
+ "grad_norm": 0.2107669562101364,
+ "learning_rate": 0.0006,
+ "loss": 3.5858099460601807,
+ "step": 3241
+ },
+ {
+ "epoch": 45.02795980777632,
+ "grad_norm": 0.20831939578056335,
+ "learning_rate": 0.0006,
+ "loss": 3.5793800354003906,
+ "step": 3242
+ },
+ {
+ "epoch": 45.04193971166448,
+ "grad_norm": 0.2169167846441269,
+ "learning_rate": 0.0006,
+ "loss": 3.601961135864258,
+ "step": 3243
+ },
+ {
+ "epoch": 45.05591961555265,
+ "grad_norm": 0.22451531887054443,
+ "learning_rate": 0.0006,
+ "loss": 3.586371898651123,
+ "step": 3244
+ },
+ {
+ "epoch": 45.0698995194408,
+ "grad_norm": 0.2187003344297409,
+ "learning_rate": 0.0006,
+ "loss": 3.58760929107666,
+ "step": 3245
+ },
+ {
+ "epoch": 45.083879423328966,
+ "grad_norm": 0.22805631160736084,
+ "learning_rate": 0.0006,
+ "loss": 3.554107904434204,
+ "step": 3246
+ },
+ {
+ "epoch": 45.09785932721712,
+ "grad_norm": 0.2573186159133911,
+ "learning_rate": 0.0006,
+ "loss": 3.5815420150756836,
+ "step": 3247
+ },
+ {
+ "epoch": 45.111839231105286,
+ "grad_norm": 0.25940126180648804,
+ "learning_rate": 0.0006,
+ "loss": 3.5754308700561523,
+ "step": 3248
+ },
+ {
+ "epoch": 45.12581913499345,
+ "grad_norm": 0.23834384977817535,
+ "learning_rate": 0.0006,
+ "loss": 3.5857350826263428,
+ "step": 3249
+ },
+ {
+ "epoch": 45.139799038881605,
+ "grad_norm": 0.23342885076999664,
+ "learning_rate": 0.0006,
+ "loss": 3.6116228103637695,
+ "step": 3250
+ },
+ {
+ "epoch": 45.15377894276977,
+ "grad_norm": 0.23284269869327545,
+ "learning_rate": 0.0006,
+ "loss": 3.5778629779815674,
+ "step": 3251
+ },
+ {
+ "epoch": 45.16775884665793,
+ "grad_norm": 0.30510780215263367,
+ "learning_rate": 0.0006,
+ "loss": 3.5888915061950684,
+ "step": 3252
+ },
+ {
+ "epoch": 45.18173875054609,
+ "grad_norm": 0.3462519645690918,
+ "learning_rate": 0.0006,
+ "loss": 3.5955758094787598,
+ "step": 3253
+ },
+ {
+ "epoch": 45.19571865443425,
+ "grad_norm": 0.2795974314212799,
+ "learning_rate": 0.0006,
+ "loss": 3.6222946643829346,
+ "step": 3254
+ },
+ {
+ "epoch": 45.20969855832241,
+ "grad_norm": 0.24624103307724,
+ "learning_rate": 0.0006,
+ "loss": 3.63046932220459,
+ "step": 3255
+ },
+ {
+ "epoch": 45.22367846221057,
+ "grad_norm": 0.23007310926914215,
+ "learning_rate": 0.0006,
+ "loss": 3.652526378631592,
+ "step": 3256
+ },
+ {
+ "epoch": 45.237658366098735,
+ "grad_norm": 0.21325333416461945,
+ "learning_rate": 0.0006,
+ "loss": 3.5960049629211426,
+ "step": 3257
+ },
+ {
+ "epoch": 45.25163826998689,
+ "grad_norm": 0.22697314620018005,
+ "learning_rate": 0.0006,
+ "loss": 3.5723695755004883,
+ "step": 3258
+ },
+ {
+ "epoch": 45.265618173875055,
+ "grad_norm": 0.21900491416454315,
+ "learning_rate": 0.0006,
+ "loss": 3.613572120666504,
+ "step": 3259
+ },
+ {
+ "epoch": 45.27959807776322,
+ "grad_norm": 0.21030694246292114,
+ "learning_rate": 0.0006,
+ "loss": 3.5830235481262207,
+ "step": 3260
+ },
+ {
+ "epoch": 45.293577981651374,
+ "grad_norm": 0.20229968428611755,
+ "learning_rate": 0.0006,
+ "loss": 3.620349884033203,
+ "step": 3261
+ },
+ {
+ "epoch": 45.30755788553954,
+ "grad_norm": 0.21611201763153076,
+ "learning_rate": 0.0006,
+ "loss": 3.5937819480895996,
+ "step": 3262
+ },
+ {
+ "epoch": 45.3215377894277,
+ "grad_norm": 0.21876764297485352,
+ "learning_rate": 0.0006,
+ "loss": 3.6180777549743652,
+ "step": 3263
+ },
+ {
+ "epoch": 45.33551769331586,
+ "grad_norm": 0.200356587767601,
+ "learning_rate": 0.0006,
+ "loss": 3.6140146255493164,
+ "step": 3264
+ },
+ {
+ "epoch": 45.34949759720402,
+ "grad_norm": 0.19151835143566132,
+ "learning_rate": 0.0006,
+ "loss": 3.607077121734619,
+ "step": 3265
+ },
+ {
+ "epoch": 45.36347750109218,
+ "grad_norm": 0.1994648575782776,
+ "learning_rate": 0.0006,
+ "loss": 3.646780490875244,
+ "step": 3266
+ },
+ {
+ "epoch": 45.37745740498034,
+ "grad_norm": 0.23145829141139984,
+ "learning_rate": 0.0006,
+ "loss": 3.624591588973999,
+ "step": 3267
+ },
+ {
+ "epoch": 45.391437308868504,
+ "grad_norm": 0.23608829081058502,
+ "learning_rate": 0.0006,
+ "loss": 3.598904609680176,
+ "step": 3268
+ },
+ {
+ "epoch": 45.40541721275666,
+ "grad_norm": 0.22254547476768494,
+ "learning_rate": 0.0006,
+ "loss": 3.581087827682495,
+ "step": 3269
+ },
+ {
+ "epoch": 45.419397116644824,
+ "grad_norm": 0.21640023589134216,
+ "learning_rate": 0.0006,
+ "loss": 3.5961151123046875,
+ "step": 3270
+ },
+ {
+ "epoch": 45.43337702053299,
+ "grad_norm": 0.2252444475889206,
+ "learning_rate": 0.0006,
+ "loss": 3.590231418609619,
+ "step": 3271
+ },
+ {
+ "epoch": 45.44735692442114,
+ "grad_norm": 0.23785367608070374,
+ "learning_rate": 0.0006,
+ "loss": 3.615896701812744,
+ "step": 3272
+ },
+ {
+ "epoch": 45.46133682830931,
+ "grad_norm": 0.2509191036224365,
+ "learning_rate": 0.0006,
+ "loss": 3.6413722038269043,
+ "step": 3273
+ },
+ {
+ "epoch": 45.47531673219746,
+ "grad_norm": 0.23734210431575775,
+ "learning_rate": 0.0006,
+ "loss": 3.608898639678955,
+ "step": 3274
+ },
+ {
+ "epoch": 45.489296636085626,
+ "grad_norm": 0.19802412390708923,
+ "learning_rate": 0.0006,
+ "loss": 3.5957250595092773,
+ "step": 3275
+ },
+ {
+ "epoch": 45.50327653997379,
+ "grad_norm": 0.20621423423290253,
+ "learning_rate": 0.0006,
+ "loss": 3.607945442199707,
+ "step": 3276
+ },
+ {
+ "epoch": 45.517256443861946,
+ "grad_norm": 0.225870743393898,
+ "learning_rate": 0.0006,
+ "loss": 3.641449451446533,
+ "step": 3277
+ },
+ {
+ "epoch": 45.53123634775011,
+ "grad_norm": 0.21482397615909576,
+ "learning_rate": 0.0006,
+ "loss": 3.61629581451416,
+ "step": 3278
+ },
+ {
+ "epoch": 45.54521625163827,
+ "grad_norm": 0.21159376204013824,
+ "learning_rate": 0.0006,
+ "loss": 3.5977988243103027,
+ "step": 3279
+ },
+ {
+ "epoch": 45.55919615552643,
+ "grad_norm": 0.2031678408384323,
+ "learning_rate": 0.0006,
+ "loss": 3.629343032836914,
+ "step": 3280
+ },
+ {
+ "epoch": 45.57317605941459,
+ "grad_norm": 0.1827101707458496,
+ "learning_rate": 0.0006,
+ "loss": 3.6161365509033203,
+ "step": 3281
+ },
+ {
+ "epoch": 45.58715596330275,
+ "grad_norm": 0.21884584426879883,
+ "learning_rate": 0.0006,
+ "loss": 3.6131834983825684,
+ "step": 3282
+ },
+ {
+ "epoch": 45.60113586719091,
+ "grad_norm": 0.21764980256557465,
+ "learning_rate": 0.0006,
+ "loss": 3.612516164779663,
+ "step": 3283
+ },
+ {
+ "epoch": 45.615115771079076,
+ "grad_norm": 0.22257080674171448,
+ "learning_rate": 0.0006,
+ "loss": 3.63425874710083,
+ "step": 3284
+ },
+ {
+ "epoch": 45.62909567496723,
+ "grad_norm": 0.2419128566980362,
+ "learning_rate": 0.0006,
+ "loss": 3.602997064590454,
+ "step": 3285
+ },
+ {
+ "epoch": 45.643075578855395,
+ "grad_norm": 0.20856884121894836,
+ "learning_rate": 0.0006,
+ "loss": 3.597352981567383,
+ "step": 3286
+ },
+ {
+ "epoch": 45.65705548274356,
+ "grad_norm": 0.20298589766025543,
+ "learning_rate": 0.0006,
+ "loss": 3.5961315631866455,
+ "step": 3287
+ },
+ {
+ "epoch": 45.671035386631715,
+ "grad_norm": 0.19006133079528809,
+ "learning_rate": 0.0006,
+ "loss": 3.6314568519592285,
+ "step": 3288
+ },
+ {
+ "epoch": 45.68501529051988,
+ "grad_norm": 0.20886142551898956,
+ "learning_rate": 0.0006,
+ "loss": 3.6200413703918457,
+ "step": 3289
+ },
+ {
+ "epoch": 45.69899519440804,
+ "grad_norm": 0.18085862696170807,
+ "learning_rate": 0.0006,
+ "loss": 3.6273961067199707,
+ "step": 3290
+ },
+ {
+ "epoch": 45.7129750982962,
+ "grad_norm": 0.18651945888996124,
+ "learning_rate": 0.0006,
+ "loss": 3.6490976810455322,
+ "step": 3291
+ },
+ {
+ "epoch": 45.72695500218436,
+ "grad_norm": 0.19668170809745789,
+ "learning_rate": 0.0006,
+ "loss": 3.610409736633301,
+ "step": 3292
+ },
+ {
+ "epoch": 45.74093490607252,
+ "grad_norm": 0.19865764677524567,
+ "learning_rate": 0.0006,
+ "loss": 3.614025115966797,
+ "step": 3293
+ },
+ {
+ "epoch": 45.75491480996068,
+ "grad_norm": 0.20814085006713867,
+ "learning_rate": 0.0006,
+ "loss": 3.6220510005950928,
+ "step": 3294
+ },
+ {
+ "epoch": 45.768894713848844,
+ "grad_norm": 0.20996463298797607,
+ "learning_rate": 0.0006,
+ "loss": 3.5754218101501465,
+ "step": 3295
+ },
+ {
+ "epoch": 45.782874617737,
+ "grad_norm": 0.1987130492925644,
+ "learning_rate": 0.0006,
+ "loss": 3.614746570587158,
+ "step": 3296
+ },
+ {
+ "epoch": 45.796854521625164,
+ "grad_norm": 0.23048028349876404,
+ "learning_rate": 0.0006,
+ "loss": 3.602620840072632,
+ "step": 3297
+ },
+ {
+ "epoch": 45.81083442551333,
+ "grad_norm": 0.21877387166023254,
+ "learning_rate": 0.0006,
+ "loss": 3.6294198036193848,
+ "step": 3298
+ },
+ {
+ "epoch": 45.824814329401484,
+ "grad_norm": 0.20007763803005219,
+ "learning_rate": 0.0006,
+ "loss": 3.630868434906006,
+ "step": 3299
+ },
+ {
+ "epoch": 45.83879423328965,
+ "grad_norm": 0.200496107339859,
+ "learning_rate": 0.0006,
+ "loss": 3.5972986221313477,
+ "step": 3300
+ },
+ {
+ "epoch": 45.8527741371778,
+ "grad_norm": 0.20494480431079865,
+ "learning_rate": 0.0006,
+ "loss": 3.61934494972229,
+ "step": 3301
+ },
+ {
+ "epoch": 45.86675404106597,
+ "grad_norm": 0.21374984085559845,
+ "learning_rate": 0.0006,
+ "loss": 3.6236257553100586,
+ "step": 3302
+ },
+ {
+ "epoch": 45.88073394495413,
+ "grad_norm": 0.22020408511161804,
+ "learning_rate": 0.0006,
+ "loss": 3.6030755043029785,
+ "step": 3303
+ },
+ {
+ "epoch": 45.89471384884229,
+ "grad_norm": 0.2239987701177597,
+ "learning_rate": 0.0006,
+ "loss": 3.6778974533081055,
+ "step": 3304
+ },
+ {
+ "epoch": 45.90869375273045,
+ "grad_norm": 0.22156383097171783,
+ "learning_rate": 0.0006,
+ "loss": 3.6186561584472656,
+ "step": 3305
+ },
+ {
+ "epoch": 45.92267365661861,
+ "grad_norm": 0.2264711856842041,
+ "learning_rate": 0.0006,
+ "loss": 3.6349918842315674,
+ "step": 3306
+ },
+ {
+ "epoch": 45.93665356050677,
+ "grad_norm": 0.2287975549697876,
+ "learning_rate": 0.0006,
+ "loss": 3.600268840789795,
+ "step": 3307
+ },
+ {
+ "epoch": 45.95063346439493,
+ "grad_norm": 0.22459761798381805,
+ "learning_rate": 0.0006,
+ "loss": 3.6029114723205566,
+ "step": 3308
+ },
+ {
+ "epoch": 45.964613368283096,
+ "grad_norm": 0.2430959790945053,
+ "learning_rate": 0.0006,
+ "loss": 3.6781656742095947,
+ "step": 3309
+ },
+ {
+ "epoch": 45.97859327217125,
+ "grad_norm": 0.2718662619590759,
+ "learning_rate": 0.0006,
+ "loss": 3.606778144836426,
+ "step": 3310
+ },
+ {
+ "epoch": 45.992573176059416,
+ "grad_norm": 0.27250170707702637,
+ "learning_rate": 0.0006,
+ "loss": 3.6142611503601074,
+ "step": 3311
+ },
+ {
+ "epoch": 46.0,
+ "grad_norm": 0.26663821935653687,
+ "learning_rate": 0.0006,
+ "loss": 3.6367483139038086,
+ "step": 3312
+ },
+ {
+ "epoch": 46.0,
+ "eval_loss": 3.9835095405578613,
+ "eval_runtime": 44.6504,
+ "eval_samples_per_second": 54.692,
+ "eval_steps_per_second": 3.427,
+ "step": 3312
+ },
+ {
+ "epoch": 46.01397990388816,
+ "grad_norm": 0.22670713067054749,
+ "learning_rate": 0.0006,
+ "loss": 3.5553648471832275,
+ "step": 3313
+ },
+ {
+ "epoch": 46.02795980777632,
+ "grad_norm": 0.2759886384010315,
+ "learning_rate": 0.0006,
+ "loss": 3.595186948776245,
+ "step": 3314
+ },
+ {
+ "epoch": 46.04193971166448,
+ "grad_norm": 0.31634145975112915,
+ "learning_rate": 0.0006,
+ "loss": 3.5805907249450684,
+ "step": 3315
+ },
+ {
+ "epoch": 46.05591961555265,
+ "grad_norm": 0.3097986578941345,
+ "learning_rate": 0.0006,
+ "loss": 3.593407154083252,
+ "step": 3316
+ },
+ {
+ "epoch": 46.0698995194408,
+ "grad_norm": 0.24616138637065887,
+ "learning_rate": 0.0006,
+ "loss": 3.606736898422241,
+ "step": 3317
+ },
+ {
+ "epoch": 46.083879423328966,
+ "grad_norm": 0.22210408747196198,
+ "learning_rate": 0.0006,
+ "loss": 3.59546160697937,
+ "step": 3318
+ },
+ {
+ "epoch": 46.09785932721712,
+ "grad_norm": 0.2429778128862381,
+ "learning_rate": 0.0006,
+ "loss": 3.5900321006774902,
+ "step": 3319
+ },
+ {
+ "epoch": 46.111839231105286,
+ "grad_norm": 0.22875761985778809,
+ "learning_rate": 0.0006,
+ "loss": 3.5793521404266357,
+ "step": 3320
+ },
+ {
+ "epoch": 46.12581913499345,
+ "grad_norm": 0.21508760750293732,
+ "learning_rate": 0.0006,
+ "loss": 3.5462498664855957,
+ "step": 3321
+ },
+ {
+ "epoch": 46.139799038881605,
+ "grad_norm": 0.23590944707393646,
+ "learning_rate": 0.0006,
+ "loss": 3.6247925758361816,
+ "step": 3322
+ },
+ {
+ "epoch": 46.15377894276977,
+ "grad_norm": 0.22288036346435547,
+ "learning_rate": 0.0006,
+ "loss": 3.6063995361328125,
+ "step": 3323
+ },
+ {
+ "epoch": 46.16775884665793,
+ "grad_norm": 0.20460885763168335,
+ "learning_rate": 0.0006,
+ "loss": 3.5744826793670654,
+ "step": 3324
+ },
+ {
+ "epoch": 46.18173875054609,
+ "grad_norm": 0.20172059535980225,
+ "learning_rate": 0.0006,
+ "loss": 3.5827057361602783,
+ "step": 3325
+ },
+ {
+ "epoch": 46.19571865443425,
+ "grad_norm": 0.2268448770046234,
+ "learning_rate": 0.0006,
+ "loss": 3.5801379680633545,
+ "step": 3326
+ },
+ {
+ "epoch": 46.20969855832241,
+ "grad_norm": 0.2244444191455841,
+ "learning_rate": 0.0006,
+ "loss": 3.5790224075317383,
+ "step": 3327
+ },
+ {
+ "epoch": 46.22367846221057,
+ "grad_norm": 0.20954380929470062,
+ "learning_rate": 0.0006,
+ "loss": 3.5979342460632324,
+ "step": 3328
+ },
+ {
+ "epoch": 46.237658366098735,
+ "grad_norm": 0.21395887434482574,
+ "learning_rate": 0.0006,
+ "loss": 3.6015186309814453,
+ "step": 3329
+ },
+ {
+ "epoch": 46.25163826998689,
+ "grad_norm": 0.23200181126594543,
+ "learning_rate": 0.0006,
+ "loss": 3.5904979705810547,
+ "step": 3330
+ },
+ {
+ "epoch": 46.265618173875055,
+ "grad_norm": 0.20558731257915497,
+ "learning_rate": 0.0006,
+ "loss": 3.5745811462402344,
+ "step": 3331
+ },
+ {
+ "epoch": 46.27959807776322,
+ "grad_norm": 0.1973227560520172,
+ "learning_rate": 0.0006,
+ "loss": 3.588560104370117,
+ "step": 3332
+ },
+ {
+ "epoch": 46.293577981651374,
+ "grad_norm": 0.2137945592403412,
+ "learning_rate": 0.0006,
+ "loss": 3.606064796447754,
+ "step": 3333
+ },
+ {
+ "epoch": 46.30755788553954,
+ "grad_norm": 0.2082151472568512,
+ "learning_rate": 0.0006,
+ "loss": 3.569392442703247,
+ "step": 3334
+ },
+ {
+ "epoch": 46.3215377894277,
+ "grad_norm": 0.2151029258966446,
+ "learning_rate": 0.0006,
+ "loss": 3.6016604900360107,
+ "step": 3335
+ },
+ {
+ "epoch": 46.33551769331586,
+ "grad_norm": 0.2256474643945694,
+ "learning_rate": 0.0006,
+ "loss": 3.571319580078125,
+ "step": 3336
+ },
+ {
+ "epoch": 46.34949759720402,
+ "grad_norm": 0.21454207599163055,
+ "learning_rate": 0.0006,
+ "loss": 3.6028685569763184,
+ "step": 3337
+ },
+ {
+ "epoch": 46.36347750109218,
+ "grad_norm": 0.21864144504070282,
+ "learning_rate": 0.0006,
+ "loss": 3.6146860122680664,
+ "step": 3338
+ },
+ {
+ "epoch": 46.37745740498034,
+ "grad_norm": 0.24512453377246857,
+ "learning_rate": 0.0006,
+ "loss": 3.614696502685547,
+ "step": 3339
+ },
+ {
+ "epoch": 46.391437308868504,
+ "grad_norm": 0.26355695724487305,
+ "learning_rate": 0.0006,
+ "loss": 3.6124234199523926,
+ "step": 3340
+ },
+ {
+ "epoch": 46.40541721275666,
+ "grad_norm": 0.2778678834438324,
+ "learning_rate": 0.0006,
+ "loss": 3.6075634956359863,
+ "step": 3341
+ },
+ {
+ "epoch": 46.419397116644824,
+ "grad_norm": 0.2626822292804718,
+ "learning_rate": 0.0006,
+ "loss": 3.59267520904541,
+ "step": 3342
+ },
+ {
+ "epoch": 46.43337702053299,
+ "grad_norm": 0.2211887091398239,
+ "learning_rate": 0.0006,
+ "loss": 3.606135606765747,
+ "step": 3343
+ },
+ {
+ "epoch": 46.44735692442114,
+ "grad_norm": 0.20117639005184174,
+ "learning_rate": 0.0006,
+ "loss": 3.566512107849121,
+ "step": 3344
+ },
+ {
+ "epoch": 46.46133682830931,
+ "grad_norm": 0.20202599465847015,
+ "learning_rate": 0.0006,
+ "loss": 3.603398561477661,
+ "step": 3345
+ },
+ {
+ "epoch": 46.47531673219746,
+ "grad_norm": 0.22238481044769287,
+ "learning_rate": 0.0006,
+ "loss": 3.599888324737549,
+ "step": 3346
+ },
+ {
+ "epoch": 46.489296636085626,
+ "grad_norm": 0.23298178613185883,
+ "learning_rate": 0.0006,
+ "loss": 3.6135406494140625,
+ "step": 3347
+ },
+ {
+ "epoch": 46.50327653997379,
+ "grad_norm": 0.21998152136802673,
+ "learning_rate": 0.0006,
+ "loss": 3.6022939682006836,
+ "step": 3348
+ },
+ {
+ "epoch": 46.517256443861946,
+ "grad_norm": 0.22595210373401642,
+ "learning_rate": 0.0006,
+ "loss": 3.605905532836914,
+ "step": 3349
+ },
+ {
+ "epoch": 46.53123634775011,
+ "grad_norm": 0.23549678921699524,
+ "learning_rate": 0.0006,
+ "loss": 3.606264591217041,
+ "step": 3350
+ },
+ {
+ "epoch": 46.54521625163827,
+ "grad_norm": 0.2075573205947876,
+ "learning_rate": 0.0006,
+ "loss": 3.580575942993164,
+ "step": 3351
+ },
+ {
+ "epoch": 46.55919615552643,
+ "grad_norm": 0.19052642583847046,
+ "learning_rate": 0.0006,
+ "loss": 3.618326187133789,
+ "step": 3352
+ },
+ {
+ "epoch": 46.57317605941459,
+ "grad_norm": 0.20372900366783142,
+ "learning_rate": 0.0006,
+ "loss": 3.5817952156066895,
+ "step": 3353
+ },
+ {
+ "epoch": 46.58715596330275,
+ "grad_norm": 0.20024648308753967,
+ "learning_rate": 0.0006,
+ "loss": 3.6128273010253906,
+ "step": 3354
+ },
+ {
+ "epoch": 46.60113586719091,
+ "grad_norm": 0.20892181992530823,
+ "learning_rate": 0.0006,
+ "loss": 3.6173012256622314,
+ "step": 3355
+ },
+ {
+ "epoch": 46.615115771079076,
+ "grad_norm": 0.20254571735858917,
+ "learning_rate": 0.0006,
+ "loss": 3.5924699306488037,
+ "step": 3356
+ },
+ {
+ "epoch": 46.62909567496723,
+ "grad_norm": 0.20290599763393402,
+ "learning_rate": 0.0006,
+ "loss": 3.6134514808654785,
+ "step": 3357
+ },
+ {
+ "epoch": 46.643075578855395,
+ "grad_norm": 0.23314513266086578,
+ "learning_rate": 0.0006,
+ "loss": 3.604102611541748,
+ "step": 3358
+ },
+ {
+ "epoch": 46.65705548274356,
+ "grad_norm": 0.2352486401796341,
+ "learning_rate": 0.0006,
+ "loss": 3.6210808753967285,
+ "step": 3359
+ },
+ {
+ "epoch": 46.671035386631715,
+ "grad_norm": 0.2289503663778305,
+ "learning_rate": 0.0006,
+ "loss": 3.596968650817871,
+ "step": 3360
+ },
+ {
+ "epoch": 46.68501529051988,
+ "grad_norm": 0.19971057772636414,
+ "learning_rate": 0.0006,
+ "loss": 3.5973198413848877,
+ "step": 3361
+ },
+ {
+ "epoch": 46.69899519440804,
+ "grad_norm": 0.21000619232654572,
+ "learning_rate": 0.0006,
+ "loss": 3.607048511505127,
+ "step": 3362
+ },
+ {
+ "epoch": 46.7129750982962,
+ "grad_norm": 0.22295686602592468,
+ "learning_rate": 0.0006,
+ "loss": 3.6323728561401367,
+ "step": 3363
+ },
+ {
+ "epoch": 46.72695500218436,
+ "grad_norm": 0.21939052641391754,
+ "learning_rate": 0.0006,
+ "loss": 3.6073317527770996,
+ "step": 3364
+ },
+ {
+ "epoch": 46.74093490607252,
+ "grad_norm": 0.2192271202802658,
+ "learning_rate": 0.0006,
+ "loss": 3.6396851539611816,
+ "step": 3365
+ },
+ {
+ "epoch": 46.75491480996068,
+ "grad_norm": 0.20871607959270477,
+ "learning_rate": 0.0006,
+ "loss": 3.613509178161621,
+ "step": 3366
+ },
+ {
+ "epoch": 46.768894713848844,
+ "grad_norm": 0.1837828904390335,
+ "learning_rate": 0.0006,
+ "loss": 3.604039192199707,
+ "step": 3367
+ },
+ {
+ "epoch": 46.782874617737,
+ "grad_norm": 0.1904219537973404,
+ "learning_rate": 0.0006,
+ "loss": 3.6065895557403564,
+ "step": 3368
+ },
+ {
+ "epoch": 46.796854521625164,
+ "grad_norm": 0.19873572885990143,
+ "learning_rate": 0.0006,
+ "loss": 3.5927226543426514,
+ "step": 3369
+ },
+ {
+ "epoch": 46.81083442551333,
+ "grad_norm": 0.18319591879844666,
+ "learning_rate": 0.0006,
+ "loss": 3.6114919185638428,
+ "step": 3370
+ },
+ {
+ "epoch": 46.824814329401484,
+ "grad_norm": 0.19832435250282288,
+ "learning_rate": 0.0006,
+ "loss": 3.613637924194336,
+ "step": 3371
+ },
+ {
+ "epoch": 46.83879423328965,
+ "grad_norm": 0.21506333351135254,
+ "learning_rate": 0.0006,
+ "loss": 3.6116209030151367,
+ "step": 3372
+ },
+ {
+ "epoch": 46.8527741371778,
+ "grad_norm": 0.20374484360218048,
+ "learning_rate": 0.0006,
+ "loss": 3.5923004150390625,
+ "step": 3373
+ },
+ {
+ "epoch": 46.86675404106597,
+ "grad_norm": 0.19743360579013824,
+ "learning_rate": 0.0006,
+ "loss": 3.599381685256958,
+ "step": 3374
+ },
+ {
+ "epoch": 46.88073394495413,
+ "grad_norm": 0.20996616780757904,
+ "learning_rate": 0.0006,
+ "loss": 3.624969959259033,
+ "step": 3375
+ },
+ {
+ "epoch": 46.89471384884229,
+ "grad_norm": 0.22336791455745697,
+ "learning_rate": 0.0006,
+ "loss": 3.6152467727661133,
+ "step": 3376
+ },
+ {
+ "epoch": 46.90869375273045,
+ "grad_norm": 0.2337532341480255,
+ "learning_rate": 0.0006,
+ "loss": 3.6198863983154297,
+ "step": 3377
+ },
+ {
+ "epoch": 46.92267365661861,
+ "grad_norm": 0.23823462426662445,
+ "learning_rate": 0.0006,
+ "loss": 3.6411237716674805,
+ "step": 3378
+ },
+ {
+ "epoch": 46.93665356050677,
+ "grad_norm": 0.2521338164806366,
+ "learning_rate": 0.0006,
+ "loss": 3.621544122695923,
+ "step": 3379
+ },
+ {
+ "epoch": 46.95063346439493,
+ "grad_norm": 0.253682941198349,
+ "learning_rate": 0.0006,
+ "loss": 3.6570887565612793,
+ "step": 3380
+ },
+ {
+ "epoch": 46.964613368283096,
+ "grad_norm": 0.23392300307750702,
+ "learning_rate": 0.0006,
+ "loss": 3.669538974761963,
+ "step": 3381
+ },
+ {
+ "epoch": 46.97859327217125,
+ "grad_norm": 0.2154092937707901,
+ "learning_rate": 0.0006,
+ "loss": 3.6184825897216797,
+ "step": 3382
+ },
+ {
+ "epoch": 46.992573176059416,
+ "grad_norm": 0.1909833699464798,
+ "learning_rate": 0.0006,
+ "loss": 3.647658348083496,
+ "step": 3383
+ },
+ {
+ "epoch": 47.0,
+ "grad_norm": 0.2226407378911972,
+ "learning_rate": 0.0006,
+ "loss": 3.6413815021514893,
+ "step": 3384
+ },
+ {
+ "epoch": 47.0,
+ "eval_loss": 3.98313570022583,
+ "eval_runtime": 44.7152,
+ "eval_samples_per_second": 54.612,
+ "eval_steps_per_second": 3.422,
+ "step": 3384
+ },
+ {
+ "epoch": 47.01397990388816,
+ "grad_norm": 0.20830968022346497,
+ "learning_rate": 0.0006,
+ "loss": 3.5652623176574707,
+ "step": 3385
+ },
+ {
+ "epoch": 47.02795980777632,
+ "grad_norm": 0.18953651189804077,
+ "learning_rate": 0.0006,
+ "loss": 3.570180654525757,
+ "step": 3386
+ },
+ {
+ "epoch": 47.04193971166448,
+ "grad_norm": 0.20167700946331024,
+ "learning_rate": 0.0006,
+ "loss": 3.5623056888580322,
+ "step": 3387
+ },
+ {
+ "epoch": 47.05591961555265,
+ "grad_norm": 0.21554343402385712,
+ "learning_rate": 0.0006,
+ "loss": 3.549492835998535,
+ "step": 3388
+ },
+ {
+ "epoch": 47.0698995194408,
+ "grad_norm": 0.2232149988412857,
+ "learning_rate": 0.0006,
+ "loss": 3.584181785583496,
+ "step": 3389
+ },
+ {
+ "epoch": 47.083879423328966,
+ "grad_norm": 0.23489049077033997,
+ "learning_rate": 0.0006,
+ "loss": 3.581028461456299,
+ "step": 3390
+ },
+ {
+ "epoch": 47.09785932721712,
+ "grad_norm": 0.22486020624637604,
+ "learning_rate": 0.0006,
+ "loss": 3.600348949432373,
+ "step": 3391
+ },
+ {
+ "epoch": 47.111839231105286,
+ "grad_norm": 0.22932346165180206,
+ "learning_rate": 0.0006,
+ "loss": 3.5600457191467285,
+ "step": 3392
+ },
+ {
+ "epoch": 47.12581913499345,
+ "grad_norm": 0.2179419994354248,
+ "learning_rate": 0.0006,
+ "loss": 3.560136079788208,
+ "step": 3393
+ },
+ {
+ "epoch": 47.139799038881605,
+ "grad_norm": 0.2438054382801056,
+ "learning_rate": 0.0006,
+ "loss": 3.5955698490142822,
+ "step": 3394
+ },
+ {
+ "epoch": 47.15377894276977,
+ "grad_norm": 0.2652001976966858,
+ "learning_rate": 0.0006,
+ "loss": 3.5942912101745605,
+ "step": 3395
+ },
+ {
+ "epoch": 47.16775884665793,
+ "grad_norm": 0.270924836397171,
+ "learning_rate": 0.0006,
+ "loss": 3.5733351707458496,
+ "step": 3396
+ },
+ {
+ "epoch": 47.18173875054609,
+ "grad_norm": 0.28365132212638855,
+ "learning_rate": 0.0006,
+ "loss": 3.6042075157165527,
+ "step": 3397
+ },
+ {
+ "epoch": 47.19571865443425,
+ "grad_norm": 0.29530975222587585,
+ "learning_rate": 0.0006,
+ "loss": 3.588935375213623,
+ "step": 3398
+ },
+ {
+ "epoch": 47.20969855832241,
+ "grad_norm": 0.2658918797969818,
+ "learning_rate": 0.0006,
+ "loss": 3.5944671630859375,
+ "step": 3399
+ },
+ {
+ "epoch": 47.22367846221057,
+ "grad_norm": 0.24076500535011292,
+ "learning_rate": 0.0006,
+ "loss": 3.5853185653686523,
+ "step": 3400
+ },
+ {
+ "epoch": 47.237658366098735,
+ "grad_norm": 0.23032112419605255,
+ "learning_rate": 0.0006,
+ "loss": 3.620483875274658,
+ "step": 3401
+ },
+ {
+ "epoch": 47.25163826998689,
+ "grad_norm": 0.23124775290489197,
+ "learning_rate": 0.0006,
+ "loss": 3.6032004356384277,
+ "step": 3402
+ },
+ {
+ "epoch": 47.265618173875055,
+ "grad_norm": 0.21960225701332092,
+ "learning_rate": 0.0006,
+ "loss": 3.6079649925231934,
+ "step": 3403
+ },
+ {
+ "epoch": 47.27959807776322,
+ "grad_norm": 0.236652672290802,
+ "learning_rate": 0.0006,
+ "loss": 3.582645893096924,
+ "step": 3404
+ },
+ {
+ "epoch": 47.293577981651374,
+ "grad_norm": 0.2600267231464386,
+ "learning_rate": 0.0006,
+ "loss": 3.6067757606506348,
+ "step": 3405
+ },
+ {
+ "epoch": 47.30755788553954,
+ "grad_norm": 0.2337152659893036,
+ "learning_rate": 0.0006,
+ "loss": 3.5912275314331055,
+ "step": 3406
+ },
+ {
+ "epoch": 47.3215377894277,
+ "grad_norm": 0.21887873113155365,
+ "learning_rate": 0.0006,
+ "loss": 3.6008896827697754,
+ "step": 3407
+ },
+ {
+ "epoch": 47.33551769331586,
+ "grad_norm": 0.20265911519527435,
+ "learning_rate": 0.0006,
+ "loss": 3.5820152759552,
+ "step": 3408
+ },
+ {
+ "epoch": 47.34949759720402,
+ "grad_norm": 0.2005501389503479,
+ "learning_rate": 0.0006,
+ "loss": 3.604556083679199,
+ "step": 3409
+ },
+ {
+ "epoch": 47.36347750109218,
+ "grad_norm": 0.20682275295257568,
+ "learning_rate": 0.0006,
+ "loss": 3.584531307220459,
+ "step": 3410
+ },
+ {
+ "epoch": 47.37745740498034,
+ "grad_norm": 0.23283354938030243,
+ "learning_rate": 0.0006,
+ "loss": 3.59186053276062,
+ "step": 3411
+ },
+ {
+ "epoch": 47.391437308868504,
+ "grad_norm": 0.23033356666564941,
+ "learning_rate": 0.0006,
+ "loss": 3.5944037437438965,
+ "step": 3412
+ },
+ {
+ "epoch": 47.40541721275666,
+ "grad_norm": 0.21714402735233307,
+ "learning_rate": 0.0006,
+ "loss": 3.5834851264953613,
+ "step": 3413
+ },
+ {
+ "epoch": 47.419397116644824,
+ "grad_norm": 0.2138672024011612,
+ "learning_rate": 0.0006,
+ "loss": 3.6313700675964355,
+ "step": 3414
+ },
+ {
+ "epoch": 47.43337702053299,
+ "grad_norm": 0.23200160264968872,
+ "learning_rate": 0.0006,
+ "loss": 3.6112399101257324,
+ "step": 3415
+ },
+ {
+ "epoch": 47.44735692442114,
+ "grad_norm": 0.2632092833518982,
+ "learning_rate": 0.0006,
+ "loss": 3.6099038124084473,
+ "step": 3416
+ },
+ {
+ "epoch": 47.46133682830931,
+ "grad_norm": 0.23115520179271698,
+ "learning_rate": 0.0006,
+ "loss": 3.6060497760772705,
+ "step": 3417
+ },
+ {
+ "epoch": 47.47531673219746,
+ "grad_norm": 0.2596223056316376,
+ "learning_rate": 0.0006,
+ "loss": 3.5749685764312744,
+ "step": 3418
+ },
+ {
+ "epoch": 47.489296636085626,
+ "grad_norm": 0.27893415093421936,
+ "learning_rate": 0.0006,
+ "loss": 3.584045886993408,
+ "step": 3419
+ },
+ {
+ "epoch": 47.50327653997379,
+ "grad_norm": 0.23112469911575317,
+ "learning_rate": 0.0006,
+ "loss": 3.595407485961914,
+ "step": 3420
+ },
+ {
+ "epoch": 47.517256443861946,
+ "grad_norm": 0.23562486469745636,
+ "learning_rate": 0.0006,
+ "loss": 3.5657241344451904,
+ "step": 3421
+ },
+ {
+ "epoch": 47.53123634775011,
+ "grad_norm": 0.23366105556488037,
+ "learning_rate": 0.0006,
+ "loss": 3.624885082244873,
+ "step": 3422
+ },
+ {
+ "epoch": 47.54521625163827,
+ "grad_norm": 0.24383248388767242,
+ "learning_rate": 0.0006,
+ "loss": 3.638352394104004,
+ "step": 3423
+ },
+ {
+ "epoch": 47.55919615552643,
+ "grad_norm": 0.26388120651245117,
+ "learning_rate": 0.0006,
+ "loss": 3.614579200744629,
+ "step": 3424
+ },
+ {
+ "epoch": 47.57317605941459,
+ "grad_norm": 0.23676545917987823,
+ "learning_rate": 0.0006,
+ "loss": 3.609004259109497,
+ "step": 3425
+ },
+ {
+ "epoch": 47.58715596330275,
+ "grad_norm": 0.227967768907547,
+ "learning_rate": 0.0006,
+ "loss": 3.626171827316284,
+ "step": 3426
+ },
+ {
+ "epoch": 47.60113586719091,
+ "grad_norm": 0.23786529898643494,
+ "learning_rate": 0.0006,
+ "loss": 3.6205172538757324,
+ "step": 3427
+ },
+ {
+ "epoch": 47.615115771079076,
+ "grad_norm": 0.2599100172519684,
+ "learning_rate": 0.0006,
+ "loss": 3.6178271770477295,
+ "step": 3428
+ },
+ {
+ "epoch": 47.62909567496723,
+ "grad_norm": 0.2591858208179474,
+ "learning_rate": 0.0006,
+ "loss": 3.600297451019287,
+ "step": 3429
+ },
+ {
+ "epoch": 47.643075578855395,
+ "grad_norm": 0.2234215885400772,
+ "learning_rate": 0.0006,
+ "loss": 3.623141288757324,
+ "step": 3430
+ },
+ {
+ "epoch": 47.65705548274356,
+ "grad_norm": 0.23395098745822906,
+ "learning_rate": 0.0006,
+ "loss": 3.6243159770965576,
+ "step": 3431
+ },
+ {
+ "epoch": 47.671035386631715,
+ "grad_norm": 0.25706854462623596,
+ "learning_rate": 0.0006,
+ "loss": 3.5933618545532227,
+ "step": 3432
+ },
+ {
+ "epoch": 47.68501529051988,
+ "grad_norm": 0.22468037903308868,
+ "learning_rate": 0.0006,
+ "loss": 3.6048693656921387,
+ "step": 3433
+ },
+ {
+ "epoch": 47.69899519440804,
+ "grad_norm": 0.22432644665241241,
+ "learning_rate": 0.0006,
+ "loss": 3.604891777038574,
+ "step": 3434
+ },
+ {
+ "epoch": 47.7129750982962,
+ "grad_norm": 0.2278960943222046,
+ "learning_rate": 0.0006,
+ "loss": 3.610567092895508,
+ "step": 3435
+ },
+ {
+ "epoch": 47.72695500218436,
+ "grad_norm": 0.20652735233306885,
+ "learning_rate": 0.0006,
+ "loss": 3.60245418548584,
+ "step": 3436
+ },
+ {
+ "epoch": 47.74093490607252,
+ "grad_norm": 0.2141297310590744,
+ "learning_rate": 0.0006,
+ "loss": 3.5712027549743652,
+ "step": 3437
+ },
+ {
+ "epoch": 47.75491480996068,
+ "grad_norm": 0.23282566666603088,
+ "learning_rate": 0.0006,
+ "loss": 3.573568820953369,
+ "step": 3438
+ },
+ {
+ "epoch": 47.768894713848844,
+ "grad_norm": 0.21718674898147583,
+ "learning_rate": 0.0006,
+ "loss": 3.602047920227051,
+ "step": 3439
+ },
+ {
+ "epoch": 47.782874617737,
+ "grad_norm": 0.19592095911502838,
+ "learning_rate": 0.0006,
+ "loss": 3.6046957969665527,
+ "step": 3440
+ },
+ {
+ "epoch": 47.796854521625164,
+ "grad_norm": 0.21548260748386383,
+ "learning_rate": 0.0006,
+ "loss": 3.5808444023132324,
+ "step": 3441
+ },
+ {
+ "epoch": 47.81083442551333,
+ "grad_norm": 0.21945662796497345,
+ "learning_rate": 0.0006,
+ "loss": 3.6044554710388184,
+ "step": 3442
+ },
+ {
+ "epoch": 47.824814329401484,
+ "grad_norm": 0.20777440071105957,
+ "learning_rate": 0.0006,
+ "loss": 3.5991361141204834,
+ "step": 3443
+ },
+ {
+ "epoch": 47.83879423328965,
+ "grad_norm": 0.21566642820835114,
+ "learning_rate": 0.0006,
+ "loss": 3.6272850036621094,
+ "step": 3444
+ },
+ {
+ "epoch": 47.8527741371778,
+ "grad_norm": 0.22365771234035492,
+ "learning_rate": 0.0006,
+ "loss": 3.6323323249816895,
+ "step": 3445
+ },
+ {
+ "epoch": 47.86675404106597,
+ "grad_norm": 0.20193088054656982,
+ "learning_rate": 0.0006,
+ "loss": 3.5938191413879395,
+ "step": 3446
+ },
+ {
+ "epoch": 47.88073394495413,
+ "grad_norm": 0.20968061685562134,
+ "learning_rate": 0.0006,
+ "loss": 3.616640329360962,
+ "step": 3447
+ },
+ {
+ "epoch": 47.89471384884229,
+ "grad_norm": 0.20275580883026123,
+ "learning_rate": 0.0006,
+ "loss": 3.5769052505493164,
+ "step": 3448
+ },
+ {
+ "epoch": 47.90869375273045,
+ "grad_norm": 0.237605020403862,
+ "learning_rate": 0.0006,
+ "loss": 3.6221203804016113,
+ "step": 3449
+ },
+ {
+ "epoch": 47.92267365661861,
+ "grad_norm": 0.2820972502231598,
+ "learning_rate": 0.0006,
+ "loss": 3.5977487564086914,
+ "step": 3450
+ },
+ {
+ "epoch": 47.93665356050677,
+ "grad_norm": 0.23722891509532928,
+ "learning_rate": 0.0006,
+ "loss": 3.5963053703308105,
+ "step": 3451
+ },
+ {
+ "epoch": 47.95063346439493,
+ "grad_norm": 0.21471276879310608,
+ "learning_rate": 0.0006,
+ "loss": 3.6234917640686035,
+ "step": 3452
+ },
+ {
+ "epoch": 47.964613368283096,
+ "grad_norm": 0.2139028012752533,
+ "learning_rate": 0.0006,
+ "loss": 3.640500545501709,
+ "step": 3453
+ },
+ {
+ "epoch": 47.97859327217125,
+ "grad_norm": 0.1966913342475891,
+ "learning_rate": 0.0006,
+ "loss": 3.5856776237487793,
+ "step": 3454
+ },
+ {
+ "epoch": 47.992573176059416,
+ "grad_norm": 0.2375730276107788,
+ "learning_rate": 0.0006,
+ "loss": 3.6126937866210938,
+ "step": 3455
+ },
+ {
+ "epoch": 48.0,
+ "grad_norm": 0.2772855758666992,
+ "learning_rate": 0.0006,
+ "loss": 3.6041951179504395,
+ "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/mask15-l2r50-fulle-lm/checkpoint-3456/training_args.bin b/runs/mask15-l2r50-fulle-lm/checkpoint-3456/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..43721c50815fe94f90cb043bf545b8f7bd9afc38
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-3456/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:a0b8d7bb9ac952b1abed3bd1e5c8f6ebd20daa957b3a85688954f8df03be6eb9
+size 4856
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-3744/chat_template.jinja b/runs/mask15-l2r50-fulle-lm/checkpoint-3744/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/mask15-l2r50-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/mask15-l2r50-fulle-lm/checkpoint-3744/config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-3744/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..1b4ac3c550d6003148026765eba4cb1512b216c9
--- /dev/null
+++ b/runs/mask15-l2r50-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": 151672
+}
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-3744/generation_config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-3744/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..5cd15fe1269fd505cfdefe9b3e9989dacd9f68f4
--- /dev/null
+++ b/runs/mask15-l2r50-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/mask15-l2r50-fulle-lm/checkpoint-3744/model.safetensors b/runs/mask15-l2r50-fulle-lm/checkpoint-3744/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..c64d68572e8319763c5a56128835b7d468789788
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-3744/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:2bc360a48b6ff601c0faba35c62f07d4a45d4d7318f1e6375ad75ac8d7b311ac
+size 583358280
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-3744/optimizer.pt b/runs/mask15-l2r50-fulle-lm/checkpoint-3744/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..4ce8a467fd1545003a62e23bbccc1237b7046682
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-3744/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:4e7d8e768e09dff48bba605d2ea42b17461f72569925d578e1a46c3597a65ccc
+size 1166829434
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-3744/rng_state_0.pth b/runs/mask15-l2r50-fulle-lm/checkpoint-3744/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..e76db839cf4718db38bf66181dcf9dbddf935d53
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-3744/rng_state_0.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:eef7f7d2633975396d4f3fd0b419a62e578fbb1d468519240e4a3c5eada04a02
+size 14512
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-3744/rng_state_1.pth b/runs/mask15-l2r50-fulle-lm/checkpoint-3744/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..952c4ad3d1bbefc1a51233924fc24a270bd00200
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-3744/rng_state_1.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:9bda863cab74d69bc1434458afe894fafac1b15a6cfa54cefbd687851cfc0940
+size 14512
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-3744/scheduler.pt b/runs/mask15-l2r50-fulle-lm/checkpoint-3744/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..20b086465f72e318302a946aa7b4256ef216a798
--- /dev/null
+++ b/runs/mask15-l2r50-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/mask15-l2r50-fulle-lm/checkpoint-3744/tokenizer.json b/runs/mask15-l2r50-fulle-lm/checkpoint-3744/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..6226bf25372d1a86dbd704ec75d2129960f1ba88
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-3744/tokenizer.json
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:9245fe3cb2d40f9ed8d5d8ddd1d58701ba2a236beec08f656162281673f30560
+size 11424264
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-3744/tokenizer_config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-3744/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..01bc9676576e8cf62a08a9db166d6c5bab1d6727
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-3744/tokenizer_config.json
@@ -0,0 +1,20 @@
+{
+ "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|>",
+ "<|mask|>"
+ ],
+ "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/mask15-l2r50-fulle-lm/checkpoint-3744/trainer_state.json b/runs/mask15-l2r50-fulle-lm/checkpoint-3744/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..7c606341fc6d5f226f0a8c526329861af37a6f74
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-3744/trainer_state.json
@@ -0,0 +1,26650 @@
+{
+ "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": 9.807971954345703,
+ "learning_rate": 0.0,
+ "loss": 11.989814758300781,
+ "step": 1
+ },
+ {
+ "epoch": 0.027959807776321538,
+ "grad_norm": 9.834383010864258,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 11.993022918701172,
+ "step": 2
+ },
+ {
+ "epoch": 0.04193971166448231,
+ "grad_norm": 9.482470512390137,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 11.854345321655273,
+ "step": 3
+ },
+ {
+ "epoch": 0.055919615552643076,
+ "grad_norm": 7.678808689117432,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 11.618255615234375,
+ "step": 4
+ },
+ {
+ "epoch": 0.06989951944080385,
+ "grad_norm": 6.011275291442871,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 11.351423263549805,
+ "step": 5
+ },
+ {
+ "epoch": 0.08387942332896461,
+ "grad_norm": 5.244393825531006,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 11.128631591796875,
+ "step": 6
+ },
+ {
+ "epoch": 0.09785932721712538,
+ "grad_norm": 4.577618598937988,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 10.921937942504883,
+ "step": 7
+ },
+ {
+ "epoch": 0.11183923110528615,
+ "grad_norm": 4.03810453414917,
+ "learning_rate": 4.2e-05,
+ "loss": 10.742650985717773,
+ "step": 8
+ },
+ {
+ "epoch": 0.1258191349934469,
+ "grad_norm": 3.657679796218872,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 10.600778579711914,
+ "step": 9
+ },
+ {
+ "epoch": 0.1397990388816077,
+ "grad_norm": 3.352902889251709,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 10.489639282226562,
+ "step": 10
+ },
+ {
+ "epoch": 0.15377894276976845,
+ "grad_norm": 3.1162633895874023,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 10.417770385742188,
+ "step": 11
+ },
+ {
+ "epoch": 0.16775884665792923,
+ "grad_norm": 3.0402638912200928,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 10.35334587097168,
+ "step": 12
+ },
+ {
+ "epoch": 0.18173875054608998,
+ "grad_norm": 3.030630111694336,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 10.306867599487305,
+ "step": 13
+ },
+ {
+ "epoch": 0.19571865443425077,
+ "grad_norm": 3.035292148590088,
+ "learning_rate": 7.8e-05,
+ "loss": 10.26003646850586,
+ "step": 14
+ },
+ {
+ "epoch": 0.20969855832241152,
+ "grad_norm": 3.0125675201416016,
+ "learning_rate": 8.4e-05,
+ "loss": 10.219265937805176,
+ "step": 15
+ },
+ {
+ "epoch": 0.2236784622105723,
+ "grad_norm": 2.9998886585235596,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 10.161077499389648,
+ "step": 16
+ },
+ {
+ "epoch": 0.23765836609873306,
+ "grad_norm": 2.9411966800689697,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 10.107423782348633,
+ "step": 17
+ },
+ {
+ "epoch": 0.2516382699868938,
+ "grad_norm": 2.88081955909729,
+ "learning_rate": 0.000102,
+ "loss": 10.04700756072998,
+ "step": 18
+ },
+ {
+ "epoch": 0.2656181738750546,
+ "grad_norm": 2.8219687938690186,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 9.981185913085938,
+ "step": 19
+ },
+ {
+ "epoch": 0.2795980777632154,
+ "grad_norm": 2.79306960105896,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 9.89747142791748,
+ "step": 20
+ },
+ {
+ "epoch": 0.29357798165137616,
+ "grad_norm": 2.7314443588256836,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 9.829219818115234,
+ "step": 21
+ },
+ {
+ "epoch": 0.3075578855395369,
+ "grad_norm": 2.6923747062683105,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 9.747566223144531,
+ "step": 22
+ },
+ {
+ "epoch": 0.3215377894276977,
+ "grad_norm": 2.650602340698242,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 9.66455078125,
+ "step": 23
+ },
+ {
+ "epoch": 0.33551769331585846,
+ "grad_norm": 2.606977701187134,
+ "learning_rate": 0.000138,
+ "loss": 9.582326889038086,
+ "step": 24
+ },
+ {
+ "epoch": 0.34949759720401924,
+ "grad_norm": 2.567256212234497,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 9.492591857910156,
+ "step": 25
+ },
+ {
+ "epoch": 0.36347750109217997,
+ "grad_norm": 2.520740509033203,
+ "learning_rate": 0.00015,
+ "loss": 9.396563529968262,
+ "step": 26
+ },
+ {
+ "epoch": 0.37745740498034075,
+ "grad_norm": 2.471588611602783,
+ "learning_rate": 0.000156,
+ "loss": 9.303571701049805,
+ "step": 27
+ },
+ {
+ "epoch": 0.39143730886850153,
+ "grad_norm": 2.4341530799865723,
+ "learning_rate": 0.000162,
+ "loss": 9.191819190979004,
+ "step": 28
+ },
+ {
+ "epoch": 0.4054172127566623,
+ "grad_norm": 2.369244337081909,
+ "learning_rate": 0.000168,
+ "loss": 9.092012405395508,
+ "step": 29
+ },
+ {
+ "epoch": 0.41939711664482304,
+ "grad_norm": 2.28625226020813,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 8.984567642211914,
+ "step": 30
+ },
+ {
+ "epoch": 0.4333770205329838,
+ "grad_norm": 2.2082231044769287,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 8.889009475708008,
+ "step": 31
+ },
+ {
+ "epoch": 0.4473569244211446,
+ "grad_norm": 2.1429483890533447,
+ "learning_rate": 0.000186,
+ "loss": 8.778556823730469,
+ "step": 32
+ },
+ {
+ "epoch": 0.4613368283093054,
+ "grad_norm": 2.0937352180480957,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 8.661166191101074,
+ "step": 33
+ },
+ {
+ "epoch": 0.4753167321974661,
+ "grad_norm": 2.040790557861328,
+ "learning_rate": 0.000198,
+ "loss": 8.550382614135742,
+ "step": 34
+ },
+ {
+ "epoch": 0.4892966360856269,
+ "grad_norm": 1.93914794921875,
+ "learning_rate": 0.000204,
+ "loss": 8.463907241821289,
+ "step": 35
+ },
+ {
+ "epoch": 0.5032765399737876,
+ "grad_norm": 1.8624178171157837,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 8.3438720703125,
+ "step": 36
+ },
+ {
+ "epoch": 0.5172564438619485,
+ "grad_norm": 1.8107167482376099,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 8.21871566772461,
+ "step": 37
+ },
+ {
+ "epoch": 0.5312363477501092,
+ "grad_norm": 1.717979073524475,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 8.113494873046875,
+ "step": 38
+ },
+ {
+ "epoch": 0.54521625163827,
+ "grad_norm": 1.668742060661316,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 8.006099700927734,
+ "step": 39
+ },
+ {
+ "epoch": 0.5591961555264308,
+ "grad_norm": 1.6147786378860474,
+ "learning_rate": 0.000234,
+ "loss": 7.911509037017822,
+ "step": 40
+ },
+ {
+ "epoch": 0.5731760594145915,
+ "grad_norm": 1.535750150680542,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 7.822839736938477,
+ "step": 41
+ },
+ {
+ "epoch": 0.5871559633027523,
+ "grad_norm": 1.4700065851211548,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 7.713842868804932,
+ "step": 42
+ },
+ {
+ "epoch": 0.601135867190913,
+ "grad_norm": 1.39020574092865,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 7.6040191650390625,
+ "step": 43
+ },
+ {
+ "epoch": 0.6151157710790738,
+ "grad_norm": 1.2875399589538574,
+ "learning_rate": 0.000258,
+ "loss": 7.550642013549805,
+ "step": 44
+ },
+ {
+ "epoch": 0.6290956749672346,
+ "grad_norm": 1.2094247341156006,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 7.460824012756348,
+ "step": 45
+ },
+ {
+ "epoch": 0.6430755788553953,
+ "grad_norm": 1.126452088356018,
+ "learning_rate": 0.00027,
+ "loss": 7.380537986755371,
+ "step": 46
+ },
+ {
+ "epoch": 0.6570554827435562,
+ "grad_norm": 1.0313163995742798,
+ "learning_rate": 0.000276,
+ "loss": 7.286153793334961,
+ "step": 47
+ },
+ {
+ "epoch": 0.6710353866317169,
+ "grad_norm": 0.9172859787940979,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 7.2064714431762695,
+ "step": 48
+ },
+ {
+ "epoch": 0.6850152905198776,
+ "grad_norm": 0.8148201107978821,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 7.158207416534424,
+ "step": 49
+ },
+ {
+ "epoch": 0.6989951944080385,
+ "grad_norm": 0.650123119354248,
+ "learning_rate": 0.000294,
+ "loss": 7.108791828155518,
+ "step": 50
+ },
+ {
+ "epoch": 0.7129750982961992,
+ "grad_norm": 0.5437585711479187,
+ "learning_rate": 0.0003,
+ "loss": 7.083050727844238,
+ "step": 51
+ },
+ {
+ "epoch": 0.7269550021843599,
+ "grad_norm": 0.46762895584106445,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 7.058027267456055,
+ "step": 52
+ },
+ {
+ "epoch": 0.7409349060725208,
+ "grad_norm": 0.47947561740875244,
+ "learning_rate": 0.000312,
+ "loss": 7.015172958374023,
+ "step": 53
+ },
+ {
+ "epoch": 0.7549148099606815,
+ "grad_norm": 0.7546492218971252,
+ "learning_rate": 0.000318,
+ "loss": 7.024629592895508,
+ "step": 54
+ },
+ {
+ "epoch": 0.7688947138488423,
+ "grad_norm": 0.6153718829154968,
+ "learning_rate": 0.000324,
+ "loss": 7.026667594909668,
+ "step": 55
+ },
+ {
+ "epoch": 0.7828746177370031,
+ "grad_norm": 0.3359069228172302,
+ "learning_rate": 0.00033,
+ "loss": 7.008166313171387,
+ "step": 56
+ },
+ {
+ "epoch": 0.7968545216251638,
+ "grad_norm": 0.48906823992729187,
+ "learning_rate": 0.000336,
+ "loss": 7.019716262817383,
+ "step": 57
+ },
+ {
+ "epoch": 0.8108344255133246,
+ "grad_norm": 0.5525421500205994,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 7.02108097076416,
+ "step": 58
+ },
+ {
+ "epoch": 0.8248143294014854,
+ "grad_norm": 0.3103712201118469,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 7.003164768218994,
+ "step": 59
+ },
+ {
+ "epoch": 0.8387942332896461,
+ "grad_norm": 0.4431874752044678,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 7.003463268280029,
+ "step": 60
+ },
+ {
+ "epoch": 0.8527741371778069,
+ "grad_norm": 0.4291120767593384,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 6.96931791305542,
+ "step": 61
+ },
+ {
+ "epoch": 0.8667540410659677,
+ "grad_norm": 0.6566054224967957,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 6.989445686340332,
+ "step": 62
+ },
+ {
+ "epoch": 0.8807339449541285,
+ "grad_norm": 0.20663189888000488,
+ "learning_rate": 0.000372,
+ "loss": 6.9669342041015625,
+ "step": 63
+ },
+ {
+ "epoch": 0.8947138488422892,
+ "grad_norm": 0.6242535710334778,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 6.949883460998535,
+ "step": 64
+ },
+ {
+ "epoch": 0.9086937527304499,
+ "grad_norm": 0.6984224915504456,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 6.955153465270996,
+ "step": 65
+ },
+ {
+ "epoch": 0.9226736566186108,
+ "grad_norm": 0.6328083872795105,
+ "learning_rate": 0.00039,
+ "loss": 6.965421676635742,
+ "step": 66
+ },
+ {
+ "epoch": 0.9366535605067715,
+ "grad_norm": 1.213352918624878,
+ "learning_rate": 0.000396,
+ "loss": 6.9454345703125,
+ "step": 67
+ },
+ {
+ "epoch": 0.9506334643949322,
+ "grad_norm": 0.9221940636634827,
+ "learning_rate": 0.000402,
+ "loss": 6.923908233642578,
+ "step": 68
+ },
+ {
+ "epoch": 0.9646133682830931,
+ "grad_norm": 0.6825450658798218,
+ "learning_rate": 0.000408,
+ "loss": 6.910131454467773,
+ "step": 69
+ },
+ {
+ "epoch": 0.9785932721712538,
+ "grad_norm": 0.5690162181854248,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 6.89891242980957,
+ "step": 70
+ },
+ {
+ "epoch": 0.9925731760594146,
+ "grad_norm": 0.4320870041847229,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 6.896081924438477,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.31632405519485474,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 6.897444725036621,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 7.757839679718018,
+ "eval_runtime": 43.8338,
+ "eval_samples_per_second": 55.71,
+ "eval_steps_per_second": 3.49,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139799038881607,
+ "grad_norm": 0.3789916932582855,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 6.877245903015137,
+ "step": 73
+ },
+ {
+ "epoch": 1.0279598077763215,
+ "grad_norm": 0.9167932868003845,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 6.921600341796875,
+ "step": 74
+ },
+ {
+ "epoch": 1.0419397116644824,
+ "grad_norm": 0.581188440322876,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 6.861001968383789,
+ "step": 75
+ },
+ {
+ "epoch": 1.0559196155526431,
+ "grad_norm": 0.4179714024066925,
+ "learning_rate": 0.00045,
+ "loss": 6.875657081604004,
+ "step": 76
+ },
+ {
+ "epoch": 1.0698995194408039,
+ "grad_norm": 1.0669957399368286,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 6.857122421264648,
+ "step": 77
+ },
+ {
+ "epoch": 1.0838794233289646,
+ "grad_norm": 0.27855145931243896,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 6.828852653503418,
+ "step": 78
+ },
+ {
+ "epoch": 1.0978593272171253,
+ "grad_norm": 0.7192047834396362,
+ "learning_rate": 0.000468,
+ "loss": 6.870839595794678,
+ "step": 79
+ },
+ {
+ "epoch": 1.1118392311052863,
+ "grad_norm": 0.5583325624465942,
+ "learning_rate": 0.000474,
+ "loss": 6.8497514724731445,
+ "step": 80
+ },
+ {
+ "epoch": 1.125819134993447,
+ "grad_norm": 0.3001925051212311,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 6.858528137207031,
+ "step": 81
+ },
+ {
+ "epoch": 1.1397990388816077,
+ "grad_norm": 0.2408239096403122,
+ "learning_rate": 0.000486,
+ "loss": 6.83231258392334,
+ "step": 82
+ },
+ {
+ "epoch": 1.1537789427697684,
+ "grad_norm": 0.28230324387550354,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 6.815476894378662,
+ "step": 83
+ },
+ {
+ "epoch": 1.1677588466579292,
+ "grad_norm": 0.3247123658657074,
+ "learning_rate": 0.000498,
+ "loss": 6.780126094818115,
+ "step": 84
+ },
+ {
+ "epoch": 1.18173875054609,
+ "grad_norm": 0.25713011622428894,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 6.7798309326171875,
+ "step": 85
+ },
+ {
+ "epoch": 1.1957186544342508,
+ "grad_norm": 0.5386835932731628,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 6.791745185852051,
+ "step": 86
+ },
+ {
+ "epoch": 1.2096985583224116,
+ "grad_norm": 0.2226393222808838,
+ "learning_rate": 0.000516,
+ "loss": 6.7826972007751465,
+ "step": 87
+ },
+ {
+ "epoch": 1.2236784622105723,
+ "grad_norm": 0.4338362216949463,
+ "learning_rate": 0.000522,
+ "loss": 6.805043697357178,
+ "step": 88
+ },
+ {
+ "epoch": 1.237658366098733,
+ "grad_norm": 0.2953208386898041,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 6.768434524536133,
+ "step": 89
+ },
+ {
+ "epoch": 1.2516382699868938,
+ "grad_norm": 0.13453717529773712,
+ "learning_rate": 0.000534,
+ "loss": 6.773697376251221,
+ "step": 90
+ },
+ {
+ "epoch": 1.2656181738750547,
+ "grad_norm": 0.35774412751197815,
+ "learning_rate": 0.00054,
+ "loss": 6.766414642333984,
+ "step": 91
+ },
+ {
+ "epoch": 1.2795980777632154,
+ "grad_norm": 0.4669720530509949,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 6.754847526550293,
+ "step": 92
+ },
+ {
+ "epoch": 1.2935779816513762,
+ "grad_norm": 0.13806621730327606,
+ "learning_rate": 0.000552,
+ "loss": 6.746858596801758,
+ "step": 93
+ },
+ {
+ "epoch": 1.307557885539537,
+ "grad_norm": 0.3280332386493683,
+ "learning_rate": 0.000558,
+ "loss": 6.715662956237793,
+ "step": 94
+ },
+ {
+ "epoch": 1.3215377894276976,
+ "grad_norm": 0.4689937233924866,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 6.734938144683838,
+ "step": 95
+ },
+ {
+ "epoch": 1.3355176933158583,
+ "grad_norm": 0.35371264815330505,
+ "learning_rate": 0.00057,
+ "loss": 6.748386383056641,
+ "step": 96
+ },
+ {
+ "epoch": 1.3494975972040193,
+ "grad_norm": 0.15232303738594055,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 6.705557823181152,
+ "step": 97
+ },
+ {
+ "epoch": 1.36347750109218,
+ "grad_norm": 0.30132821202278137,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 6.7199859619140625,
+ "step": 98
+ },
+ {
+ "epoch": 1.3774574049803407,
+ "grad_norm": 0.42174842953681946,
+ "learning_rate": 0.000588,
+ "loss": 6.715370178222656,
+ "step": 99
+ },
+ {
+ "epoch": 1.3914373088685015,
+ "grad_norm": 0.6257228851318359,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 6.707026958465576,
+ "step": 100
+ },
+ {
+ "epoch": 1.4054172127566624,
+ "grad_norm": 0.4551195800304413,
+ "learning_rate": 0.0006,
+ "loss": 6.7078423500061035,
+ "step": 101
+ },
+ {
+ "epoch": 1.4193971166448232,
+ "grad_norm": 0.41940346360206604,
+ "learning_rate": 0.0006,
+ "loss": 6.6959357261657715,
+ "step": 102
+ },
+ {
+ "epoch": 1.4333770205329839,
+ "grad_norm": 0.32251718640327454,
+ "learning_rate": 0.0006,
+ "loss": 6.689168930053711,
+ "step": 103
+ },
+ {
+ "epoch": 1.4473569244211446,
+ "grad_norm": 0.2992720305919647,
+ "learning_rate": 0.0006,
+ "loss": 6.680738925933838,
+ "step": 104
+ },
+ {
+ "epoch": 1.4613368283093053,
+ "grad_norm": 0.3228456974029541,
+ "learning_rate": 0.0006,
+ "loss": 6.672350883483887,
+ "step": 105
+ },
+ {
+ "epoch": 1.475316732197466,
+ "grad_norm": 0.24954743683338165,
+ "learning_rate": 0.0006,
+ "loss": 6.653716087341309,
+ "step": 106
+ },
+ {
+ "epoch": 1.4892966360856268,
+ "grad_norm": 0.30740687251091003,
+ "learning_rate": 0.0006,
+ "loss": 6.676583290100098,
+ "step": 107
+ },
+ {
+ "epoch": 1.5032765399737875,
+ "grad_norm": 0.24950599670410156,
+ "learning_rate": 0.0006,
+ "loss": 6.656691551208496,
+ "step": 108
+ },
+ {
+ "epoch": 1.5172564438619485,
+ "grad_norm": 0.24293005466461182,
+ "learning_rate": 0.0006,
+ "loss": 6.640995979309082,
+ "step": 109
+ },
+ {
+ "epoch": 1.5312363477501092,
+ "grad_norm": 0.30167272686958313,
+ "learning_rate": 0.0006,
+ "loss": 6.647380352020264,
+ "step": 110
+ },
+ {
+ "epoch": 1.5452162516382701,
+ "grad_norm": 0.4424632787704468,
+ "learning_rate": 0.0006,
+ "loss": 6.6548261642456055,
+ "step": 111
+ },
+ {
+ "epoch": 1.5591961555264309,
+ "grad_norm": 0.5295748114585876,
+ "learning_rate": 0.0006,
+ "loss": 6.64370059967041,
+ "step": 112
+ },
+ {
+ "epoch": 1.5731760594145916,
+ "grad_norm": 0.6829339265823364,
+ "learning_rate": 0.0006,
+ "loss": 6.654196739196777,
+ "step": 113
+ },
+ {
+ "epoch": 1.5871559633027523,
+ "grad_norm": 0.6534460186958313,
+ "learning_rate": 0.0006,
+ "loss": 6.675765037536621,
+ "step": 114
+ },
+ {
+ "epoch": 1.601135867190913,
+ "grad_norm": 0.6172244548797607,
+ "learning_rate": 0.0006,
+ "loss": 6.631234169006348,
+ "step": 115
+ },
+ {
+ "epoch": 1.6151157710790738,
+ "grad_norm": 0.5650008320808411,
+ "learning_rate": 0.0006,
+ "loss": 6.654262542724609,
+ "step": 116
+ },
+ {
+ "epoch": 1.6290956749672345,
+ "grad_norm": 0.3890475928783417,
+ "learning_rate": 0.0006,
+ "loss": 6.627526760101318,
+ "step": 117
+ },
+ {
+ "epoch": 1.6430755788553952,
+ "grad_norm": 0.6409873366355896,
+ "learning_rate": 0.0006,
+ "loss": 6.619794845581055,
+ "step": 118
+ },
+ {
+ "epoch": 1.6570554827435562,
+ "grad_norm": 0.5052326321601868,
+ "learning_rate": 0.0006,
+ "loss": 6.612556457519531,
+ "step": 119
+ },
+ {
+ "epoch": 1.671035386631717,
+ "grad_norm": 0.5001237988471985,
+ "learning_rate": 0.0006,
+ "loss": 6.577266693115234,
+ "step": 120
+ },
+ {
+ "epoch": 1.6850152905198776,
+ "grad_norm": 0.5328938364982605,
+ "learning_rate": 0.0006,
+ "loss": 6.59553337097168,
+ "step": 121
+ },
+ {
+ "epoch": 1.6989951944080386,
+ "grad_norm": 0.3568951189517975,
+ "learning_rate": 0.0006,
+ "loss": 6.602717399597168,
+ "step": 122
+ },
+ {
+ "epoch": 1.7129750982961993,
+ "grad_norm": 0.4017309546470642,
+ "learning_rate": 0.0006,
+ "loss": 6.589657783508301,
+ "step": 123
+ },
+ {
+ "epoch": 1.72695500218436,
+ "grad_norm": 0.21432629227638245,
+ "learning_rate": 0.0006,
+ "loss": 6.586555480957031,
+ "step": 124
+ },
+ {
+ "epoch": 1.7409349060725208,
+ "grad_norm": 0.21038052439689636,
+ "learning_rate": 0.0006,
+ "loss": 6.576569557189941,
+ "step": 125
+ },
+ {
+ "epoch": 1.7549148099606815,
+ "grad_norm": 0.23074904084205627,
+ "learning_rate": 0.0006,
+ "loss": 6.5880632400512695,
+ "step": 126
+ },
+ {
+ "epoch": 1.7688947138488422,
+ "grad_norm": 0.42963048815727234,
+ "learning_rate": 0.0006,
+ "loss": 6.603862762451172,
+ "step": 127
+ },
+ {
+ "epoch": 1.782874617737003,
+ "grad_norm": 0.361331045627594,
+ "learning_rate": 0.0006,
+ "loss": 6.579834938049316,
+ "step": 128
+ },
+ {
+ "epoch": 1.7968545216251637,
+ "grad_norm": 0.4951060712337494,
+ "learning_rate": 0.0006,
+ "loss": 6.570443630218506,
+ "step": 129
+ },
+ {
+ "epoch": 1.8108344255133246,
+ "grad_norm": 0.2258434295654297,
+ "learning_rate": 0.0006,
+ "loss": 6.5664777755737305,
+ "step": 130
+ },
+ {
+ "epoch": 1.8248143294014854,
+ "grad_norm": 0.2922155559062958,
+ "learning_rate": 0.0006,
+ "loss": 6.561326503753662,
+ "step": 131
+ },
+ {
+ "epoch": 1.838794233289646,
+ "grad_norm": 0.19068220257759094,
+ "learning_rate": 0.0006,
+ "loss": 6.528727054595947,
+ "step": 132
+ },
+ {
+ "epoch": 1.852774137177807,
+ "grad_norm": 0.2122010439634323,
+ "learning_rate": 0.0006,
+ "loss": 6.535636901855469,
+ "step": 133
+ },
+ {
+ "epoch": 1.8667540410659678,
+ "grad_norm": 0.25760164856910706,
+ "learning_rate": 0.0006,
+ "loss": 6.530498504638672,
+ "step": 134
+ },
+ {
+ "epoch": 1.8807339449541285,
+ "grad_norm": 0.1761016845703125,
+ "learning_rate": 0.0006,
+ "loss": 6.514466285705566,
+ "step": 135
+ },
+ {
+ "epoch": 1.8947138488422892,
+ "grad_norm": 0.2250051498413086,
+ "learning_rate": 0.0006,
+ "loss": 6.521268844604492,
+ "step": 136
+ },
+ {
+ "epoch": 1.90869375273045,
+ "grad_norm": 0.34458497166633606,
+ "learning_rate": 0.0006,
+ "loss": 6.512831687927246,
+ "step": 137
+ },
+ {
+ "epoch": 1.9226736566186107,
+ "grad_norm": 0.3468617796897888,
+ "learning_rate": 0.0006,
+ "loss": 6.515641689300537,
+ "step": 138
+ },
+ {
+ "epoch": 1.9366535605067714,
+ "grad_norm": 0.5051495432853699,
+ "learning_rate": 0.0006,
+ "loss": 6.5147905349731445,
+ "step": 139
+ },
+ {
+ "epoch": 1.9506334643949321,
+ "grad_norm": 0.7106727361679077,
+ "learning_rate": 0.0006,
+ "loss": 6.519277572631836,
+ "step": 140
+ },
+ {
+ "epoch": 1.964613368283093,
+ "grad_norm": 0.8881394267082214,
+ "learning_rate": 0.0006,
+ "loss": 6.526865482330322,
+ "step": 141
+ },
+ {
+ "epoch": 1.9785932721712538,
+ "grad_norm": 0.5552834272384644,
+ "learning_rate": 0.0006,
+ "loss": 6.469970226287842,
+ "step": 142
+ },
+ {
+ "epoch": 1.9925731760594148,
+ "grad_norm": 0.6903126835823059,
+ "learning_rate": 0.0006,
+ "loss": 6.476300239562988,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.47679027915000916,
+ "learning_rate": 0.0006,
+ "loss": 6.463827133178711,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 7.388528823852539,
+ "eval_runtime": 44.2519,
+ "eval_samples_per_second": 55.184,
+ "eval_steps_per_second": 3.457,
+ "step": 144
+ },
+ {
+ "epoch": 2.0139799038881607,
+ "grad_norm": 0.4719221293926239,
+ "learning_rate": 0.0006,
+ "loss": 6.480956077575684,
+ "step": 145
+ },
+ {
+ "epoch": 2.0279598077763215,
+ "grad_norm": 0.41137924790382385,
+ "learning_rate": 0.0006,
+ "loss": 6.449707984924316,
+ "step": 146
+ },
+ {
+ "epoch": 2.041939711664482,
+ "grad_norm": 0.4237765371799469,
+ "learning_rate": 0.0006,
+ "loss": 6.467435836791992,
+ "step": 147
+ },
+ {
+ "epoch": 2.055919615552643,
+ "grad_norm": 0.44081810116767883,
+ "learning_rate": 0.0006,
+ "loss": 6.436868667602539,
+ "step": 148
+ },
+ {
+ "epoch": 2.0698995194408036,
+ "grad_norm": 0.4163798391819,
+ "learning_rate": 0.0006,
+ "loss": 6.4642014503479,
+ "step": 149
+ },
+ {
+ "epoch": 2.083879423328965,
+ "grad_norm": 0.3831583261489868,
+ "learning_rate": 0.0006,
+ "loss": 6.454092025756836,
+ "step": 150
+ },
+ {
+ "epoch": 2.0978593272171255,
+ "grad_norm": 0.37721413373947144,
+ "learning_rate": 0.0006,
+ "loss": 6.426377296447754,
+ "step": 151
+ },
+ {
+ "epoch": 2.1118392311052863,
+ "grad_norm": 0.3323550224304199,
+ "learning_rate": 0.0006,
+ "loss": 6.421375274658203,
+ "step": 152
+ },
+ {
+ "epoch": 2.125819134993447,
+ "grad_norm": 0.47739624977111816,
+ "learning_rate": 0.0006,
+ "loss": 6.412004470825195,
+ "step": 153
+ },
+ {
+ "epoch": 2.1397990388816077,
+ "grad_norm": 0.8530274629592896,
+ "learning_rate": 0.0006,
+ "loss": 6.410468578338623,
+ "step": 154
+ },
+ {
+ "epoch": 2.1537789427697684,
+ "grad_norm": 0.6420364379882812,
+ "learning_rate": 0.0006,
+ "loss": 6.413525581359863,
+ "step": 155
+ },
+ {
+ "epoch": 2.167758846657929,
+ "grad_norm": 0.5005049109458923,
+ "learning_rate": 0.0006,
+ "loss": 6.401463508605957,
+ "step": 156
+ },
+ {
+ "epoch": 2.18173875054609,
+ "grad_norm": 0.3614683449268341,
+ "learning_rate": 0.0006,
+ "loss": 6.390063285827637,
+ "step": 157
+ },
+ {
+ "epoch": 2.1957186544342506,
+ "grad_norm": 0.595215380191803,
+ "learning_rate": 0.0006,
+ "loss": 6.369806289672852,
+ "step": 158
+ },
+ {
+ "epoch": 2.2096985583224114,
+ "grad_norm": 0.5700321793556213,
+ "learning_rate": 0.0006,
+ "loss": 6.368378639221191,
+ "step": 159
+ },
+ {
+ "epoch": 2.2236784622105725,
+ "grad_norm": 0.36273983120918274,
+ "learning_rate": 0.0006,
+ "loss": 6.366860389709473,
+ "step": 160
+ },
+ {
+ "epoch": 2.2376583660987333,
+ "grad_norm": 0.2850998342037201,
+ "learning_rate": 0.0006,
+ "loss": 6.352144718170166,
+ "step": 161
+ },
+ {
+ "epoch": 2.251638269986894,
+ "grad_norm": 0.38558584451675415,
+ "learning_rate": 0.0006,
+ "loss": 6.375765800476074,
+ "step": 162
+ },
+ {
+ "epoch": 2.2656181738750547,
+ "grad_norm": 0.34809231758117676,
+ "learning_rate": 0.0006,
+ "loss": 6.350445747375488,
+ "step": 163
+ },
+ {
+ "epoch": 2.2795980777632154,
+ "grad_norm": 0.5211818814277649,
+ "learning_rate": 0.0006,
+ "loss": 6.354585647583008,
+ "step": 164
+ },
+ {
+ "epoch": 2.293577981651376,
+ "grad_norm": 1.0809133052825928,
+ "learning_rate": 0.0006,
+ "loss": 6.3752007484436035,
+ "step": 165
+ },
+ {
+ "epoch": 2.307557885539537,
+ "grad_norm": 0.8293641209602356,
+ "learning_rate": 0.0006,
+ "loss": 6.35113525390625,
+ "step": 166
+ },
+ {
+ "epoch": 2.3215377894276976,
+ "grad_norm": 0.3428577780723572,
+ "learning_rate": 0.0006,
+ "loss": 6.334470748901367,
+ "step": 167
+ },
+ {
+ "epoch": 2.3355176933158583,
+ "grad_norm": 0.7587600946426392,
+ "learning_rate": 0.0006,
+ "loss": 6.353979587554932,
+ "step": 168
+ },
+ {
+ "epoch": 2.349497597204019,
+ "grad_norm": 0.4227249026298523,
+ "learning_rate": 0.0006,
+ "loss": 6.34018611907959,
+ "step": 169
+ },
+ {
+ "epoch": 2.36347750109218,
+ "grad_norm": 0.4226846694946289,
+ "learning_rate": 0.0006,
+ "loss": 6.290019989013672,
+ "step": 170
+ },
+ {
+ "epoch": 2.3774574049803405,
+ "grad_norm": 0.38412365317344666,
+ "learning_rate": 0.0006,
+ "loss": 6.309510231018066,
+ "step": 171
+ },
+ {
+ "epoch": 2.3914373088685017,
+ "grad_norm": 0.45698508620262146,
+ "learning_rate": 0.0006,
+ "loss": 6.283290863037109,
+ "step": 172
+ },
+ {
+ "epoch": 2.4054172127566624,
+ "grad_norm": 0.7575915455818176,
+ "learning_rate": 0.0006,
+ "loss": 6.306073188781738,
+ "step": 173
+ },
+ {
+ "epoch": 2.419397116644823,
+ "grad_norm": 0.695123553276062,
+ "learning_rate": 0.0006,
+ "loss": 6.308144569396973,
+ "step": 174
+ },
+ {
+ "epoch": 2.433377020532984,
+ "grad_norm": 0.5035743117332458,
+ "learning_rate": 0.0006,
+ "loss": 6.282073974609375,
+ "step": 175
+ },
+ {
+ "epoch": 2.4473569244211446,
+ "grad_norm": 0.3158020079135895,
+ "learning_rate": 0.0006,
+ "loss": 6.282169342041016,
+ "step": 176
+ },
+ {
+ "epoch": 2.4613368283093053,
+ "grad_norm": 0.4829689860343933,
+ "learning_rate": 0.0006,
+ "loss": 6.264578819274902,
+ "step": 177
+ },
+ {
+ "epoch": 2.475316732197466,
+ "grad_norm": 0.3992770314216614,
+ "learning_rate": 0.0006,
+ "loss": 6.228628158569336,
+ "step": 178
+ },
+ {
+ "epoch": 2.489296636085627,
+ "grad_norm": 0.40887606143951416,
+ "learning_rate": 0.0006,
+ "loss": 6.230792045593262,
+ "step": 179
+ },
+ {
+ "epoch": 2.5032765399737875,
+ "grad_norm": 0.3540310263633728,
+ "learning_rate": 0.0006,
+ "loss": 6.222573280334473,
+ "step": 180
+ },
+ {
+ "epoch": 2.5172564438619487,
+ "grad_norm": 0.496219664812088,
+ "learning_rate": 0.0006,
+ "loss": 6.212109565734863,
+ "step": 181
+ },
+ {
+ "epoch": 2.5312363477501094,
+ "grad_norm": 0.435173898935318,
+ "learning_rate": 0.0006,
+ "loss": 6.221210479736328,
+ "step": 182
+ },
+ {
+ "epoch": 2.54521625163827,
+ "grad_norm": 0.5364007949829102,
+ "learning_rate": 0.0006,
+ "loss": 6.217929840087891,
+ "step": 183
+ },
+ {
+ "epoch": 2.559196155526431,
+ "grad_norm": 0.5946390628814697,
+ "learning_rate": 0.0006,
+ "loss": 6.189267158508301,
+ "step": 184
+ },
+ {
+ "epoch": 2.5731760594145916,
+ "grad_norm": 0.41621312499046326,
+ "learning_rate": 0.0006,
+ "loss": 6.182415008544922,
+ "step": 185
+ },
+ {
+ "epoch": 2.5871559633027523,
+ "grad_norm": 0.5442072749137878,
+ "learning_rate": 0.0006,
+ "loss": 6.150757789611816,
+ "step": 186
+ },
+ {
+ "epoch": 2.601135867190913,
+ "grad_norm": 0.727843165397644,
+ "learning_rate": 0.0006,
+ "loss": 6.146082878112793,
+ "step": 187
+ },
+ {
+ "epoch": 2.615115771079074,
+ "grad_norm": 0.8898891806602478,
+ "learning_rate": 0.0006,
+ "loss": 6.190483093261719,
+ "step": 188
+ },
+ {
+ "epoch": 2.6290956749672345,
+ "grad_norm": 0.5173947215080261,
+ "learning_rate": 0.0006,
+ "loss": 6.151251792907715,
+ "step": 189
+ },
+ {
+ "epoch": 2.6430755788553952,
+ "grad_norm": 0.6476729512214661,
+ "learning_rate": 0.0006,
+ "loss": 6.154841423034668,
+ "step": 190
+ },
+ {
+ "epoch": 2.657055482743556,
+ "grad_norm": 0.3538810908794403,
+ "learning_rate": 0.0006,
+ "loss": 6.103879928588867,
+ "step": 191
+ },
+ {
+ "epoch": 2.6710353866317167,
+ "grad_norm": 0.4773508310317993,
+ "learning_rate": 0.0006,
+ "loss": 6.118101119995117,
+ "step": 192
+ },
+ {
+ "epoch": 2.6850152905198774,
+ "grad_norm": 0.29213786125183105,
+ "learning_rate": 0.0006,
+ "loss": 6.108916282653809,
+ "step": 193
+ },
+ {
+ "epoch": 2.6989951944080386,
+ "grad_norm": 0.40800607204437256,
+ "learning_rate": 0.0006,
+ "loss": 6.113438606262207,
+ "step": 194
+ },
+ {
+ "epoch": 2.7129750982961993,
+ "grad_norm": 0.31157299876213074,
+ "learning_rate": 0.0006,
+ "loss": 6.101809501647949,
+ "step": 195
+ },
+ {
+ "epoch": 2.72695500218436,
+ "grad_norm": 0.28660309314727783,
+ "learning_rate": 0.0006,
+ "loss": 6.075886249542236,
+ "step": 196
+ },
+ {
+ "epoch": 2.7409349060725208,
+ "grad_norm": 0.3810449540615082,
+ "learning_rate": 0.0006,
+ "loss": 6.053257942199707,
+ "step": 197
+ },
+ {
+ "epoch": 2.7549148099606815,
+ "grad_norm": 0.21741755306720734,
+ "learning_rate": 0.0006,
+ "loss": 6.013825416564941,
+ "step": 198
+ },
+ {
+ "epoch": 2.7688947138488422,
+ "grad_norm": 0.2777678966522217,
+ "learning_rate": 0.0006,
+ "loss": 6.054204940795898,
+ "step": 199
+ },
+ {
+ "epoch": 2.782874617737003,
+ "grad_norm": 0.28503066301345825,
+ "learning_rate": 0.0006,
+ "loss": 6.035628318786621,
+ "step": 200
+ },
+ {
+ "epoch": 2.7968545216251637,
+ "grad_norm": 0.41954755783081055,
+ "learning_rate": 0.0006,
+ "loss": 6.028354644775391,
+ "step": 201
+ },
+ {
+ "epoch": 2.810834425513325,
+ "grad_norm": 0.8785563111305237,
+ "learning_rate": 0.0006,
+ "loss": 6.055761337280273,
+ "step": 202
+ },
+ {
+ "epoch": 2.8248143294014856,
+ "grad_norm": 1.7459558248519897,
+ "learning_rate": 0.0006,
+ "loss": 6.11599588394165,
+ "step": 203
+ },
+ {
+ "epoch": 2.8387942332896463,
+ "grad_norm": 0.5725523233413696,
+ "learning_rate": 0.0006,
+ "loss": 6.024280548095703,
+ "step": 204
+ },
+ {
+ "epoch": 2.852774137177807,
+ "grad_norm": 0.5913150906562805,
+ "learning_rate": 0.0006,
+ "loss": 6.050281524658203,
+ "step": 205
+ },
+ {
+ "epoch": 2.8667540410659678,
+ "grad_norm": 0.5929384827613831,
+ "learning_rate": 0.0006,
+ "loss": 6.041121482849121,
+ "step": 206
+ },
+ {
+ "epoch": 2.8807339449541285,
+ "grad_norm": 0.5650724768638611,
+ "learning_rate": 0.0006,
+ "loss": 6.004258155822754,
+ "step": 207
+ },
+ {
+ "epoch": 2.894713848842289,
+ "grad_norm": 0.3420545756816864,
+ "learning_rate": 0.0006,
+ "loss": 5.983296871185303,
+ "step": 208
+ },
+ {
+ "epoch": 2.90869375273045,
+ "grad_norm": 0.2960914075374603,
+ "learning_rate": 0.0006,
+ "loss": 5.988578796386719,
+ "step": 209
+ },
+ {
+ "epoch": 2.9226736566186107,
+ "grad_norm": 0.3252662718296051,
+ "learning_rate": 0.0006,
+ "loss": 5.99103307723999,
+ "step": 210
+ },
+ {
+ "epoch": 2.9366535605067714,
+ "grad_norm": 0.4851132929325104,
+ "learning_rate": 0.0006,
+ "loss": 6.0028977394104,
+ "step": 211
+ },
+ {
+ "epoch": 2.950633464394932,
+ "grad_norm": 0.5639995336532593,
+ "learning_rate": 0.0006,
+ "loss": 5.965080738067627,
+ "step": 212
+ },
+ {
+ "epoch": 2.964613368283093,
+ "grad_norm": 0.4514601230621338,
+ "learning_rate": 0.0006,
+ "loss": 5.961450576782227,
+ "step": 213
+ },
+ {
+ "epoch": 2.9785932721712536,
+ "grad_norm": 0.5397921800613403,
+ "learning_rate": 0.0006,
+ "loss": 5.965290546417236,
+ "step": 214
+ },
+ {
+ "epoch": 2.9925731760594148,
+ "grad_norm": 0.4735587239265442,
+ "learning_rate": 0.0006,
+ "loss": 5.952754497528076,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.32061058282852173,
+ "learning_rate": 0.0006,
+ "loss": 5.961667060852051,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 6.8517303466796875,
+ "eval_runtime": 44.03,
+ "eval_samples_per_second": 55.462,
+ "eval_steps_per_second": 3.475,
+ "step": 216
+ },
+ {
+ "epoch": 3.0139799038881607,
+ "grad_norm": 0.3537784814834595,
+ "learning_rate": 0.0006,
+ "loss": 5.928008079528809,
+ "step": 217
+ },
+ {
+ "epoch": 3.0279598077763215,
+ "grad_norm": 0.40713080763816833,
+ "learning_rate": 0.0006,
+ "loss": 5.9150800704956055,
+ "step": 218
+ },
+ {
+ "epoch": 3.041939711664482,
+ "grad_norm": 0.2548826336860657,
+ "learning_rate": 0.0006,
+ "loss": 5.919757843017578,
+ "step": 219
+ },
+ {
+ "epoch": 3.055919615552643,
+ "grad_norm": 0.2818543016910553,
+ "learning_rate": 0.0006,
+ "loss": 5.913688659667969,
+ "step": 220
+ },
+ {
+ "epoch": 3.0698995194408036,
+ "grad_norm": 0.4196692705154419,
+ "learning_rate": 0.0006,
+ "loss": 5.8675336837768555,
+ "step": 221
+ },
+ {
+ "epoch": 3.083879423328965,
+ "grad_norm": 0.35272282361984253,
+ "learning_rate": 0.0006,
+ "loss": 5.878874778747559,
+ "step": 222
+ },
+ {
+ "epoch": 3.0978593272171255,
+ "grad_norm": 0.3254282772541046,
+ "learning_rate": 0.0006,
+ "loss": 5.8823041915893555,
+ "step": 223
+ },
+ {
+ "epoch": 3.1118392311052863,
+ "grad_norm": 0.4052561819553375,
+ "learning_rate": 0.0006,
+ "loss": 5.867744445800781,
+ "step": 224
+ },
+ {
+ "epoch": 3.125819134993447,
+ "grad_norm": 0.31246256828308105,
+ "learning_rate": 0.0006,
+ "loss": 5.886094093322754,
+ "step": 225
+ },
+ {
+ "epoch": 3.1397990388816077,
+ "grad_norm": 0.3479118347167969,
+ "learning_rate": 0.0006,
+ "loss": 5.850762367248535,
+ "step": 226
+ },
+ {
+ "epoch": 3.1537789427697684,
+ "grad_norm": 0.5037238597869873,
+ "learning_rate": 0.0006,
+ "loss": 5.844175815582275,
+ "step": 227
+ },
+ {
+ "epoch": 3.167758846657929,
+ "grad_norm": 0.6271815896034241,
+ "learning_rate": 0.0006,
+ "loss": 5.871790885925293,
+ "step": 228
+ },
+ {
+ "epoch": 3.18173875054609,
+ "grad_norm": 0.43838298320770264,
+ "learning_rate": 0.0006,
+ "loss": 5.844024658203125,
+ "step": 229
+ },
+ {
+ "epoch": 3.1957186544342506,
+ "grad_norm": 0.4755159616470337,
+ "learning_rate": 0.0006,
+ "loss": 5.846892356872559,
+ "step": 230
+ },
+ {
+ "epoch": 3.2096985583224114,
+ "grad_norm": 0.5229779481887817,
+ "learning_rate": 0.0006,
+ "loss": 5.827000617980957,
+ "step": 231
+ },
+ {
+ "epoch": 3.2236784622105725,
+ "grad_norm": 0.8264499306678772,
+ "learning_rate": 0.0006,
+ "loss": 5.867050647735596,
+ "step": 232
+ },
+ {
+ "epoch": 3.2376583660987333,
+ "grad_norm": 1.0607538223266602,
+ "learning_rate": 0.0006,
+ "loss": 5.877876281738281,
+ "step": 233
+ },
+ {
+ "epoch": 3.251638269986894,
+ "grad_norm": 0.7656505703926086,
+ "learning_rate": 0.0006,
+ "loss": 5.86760139465332,
+ "step": 234
+ },
+ {
+ "epoch": 3.2656181738750547,
+ "grad_norm": 0.7940183281898499,
+ "learning_rate": 0.0006,
+ "loss": 5.861355781555176,
+ "step": 235
+ },
+ {
+ "epoch": 3.2795980777632154,
+ "grad_norm": 0.45171424746513367,
+ "learning_rate": 0.0006,
+ "loss": 5.799808502197266,
+ "step": 236
+ },
+ {
+ "epoch": 3.293577981651376,
+ "grad_norm": 0.6174989342689514,
+ "learning_rate": 0.0006,
+ "loss": 5.8585920333862305,
+ "step": 237
+ },
+ {
+ "epoch": 3.307557885539537,
+ "grad_norm": 0.5341290831565857,
+ "learning_rate": 0.0006,
+ "loss": 5.8116044998168945,
+ "step": 238
+ },
+ {
+ "epoch": 3.3215377894276976,
+ "grad_norm": 0.3938343822956085,
+ "learning_rate": 0.0006,
+ "loss": 5.83797550201416,
+ "step": 239
+ },
+ {
+ "epoch": 3.3355176933158583,
+ "grad_norm": 0.5106972455978394,
+ "learning_rate": 0.0006,
+ "loss": 5.832303047180176,
+ "step": 240
+ },
+ {
+ "epoch": 3.349497597204019,
+ "grad_norm": 0.3791428506374359,
+ "learning_rate": 0.0006,
+ "loss": 5.794981956481934,
+ "step": 241
+ },
+ {
+ "epoch": 3.36347750109218,
+ "grad_norm": 0.42287978529930115,
+ "learning_rate": 0.0006,
+ "loss": 5.788144111633301,
+ "step": 242
+ },
+ {
+ "epoch": 3.3774574049803405,
+ "grad_norm": 0.27334436774253845,
+ "learning_rate": 0.0006,
+ "loss": 5.771070957183838,
+ "step": 243
+ },
+ {
+ "epoch": 3.3914373088685017,
+ "grad_norm": 0.2470470368862152,
+ "learning_rate": 0.0006,
+ "loss": 5.755998611450195,
+ "step": 244
+ },
+ {
+ "epoch": 3.4054172127566624,
+ "grad_norm": 0.3043915033340454,
+ "learning_rate": 0.0006,
+ "loss": 5.779492378234863,
+ "step": 245
+ },
+ {
+ "epoch": 3.419397116644823,
+ "grad_norm": 0.2960112988948822,
+ "learning_rate": 0.0006,
+ "loss": 5.750328063964844,
+ "step": 246
+ },
+ {
+ "epoch": 3.433377020532984,
+ "grad_norm": 0.3046723008155823,
+ "learning_rate": 0.0006,
+ "loss": 5.776517868041992,
+ "step": 247
+ },
+ {
+ "epoch": 3.4473569244211446,
+ "grad_norm": 0.22461780905723572,
+ "learning_rate": 0.0006,
+ "loss": 5.760989665985107,
+ "step": 248
+ },
+ {
+ "epoch": 3.4613368283093053,
+ "grad_norm": 0.24625757336616516,
+ "learning_rate": 0.0006,
+ "loss": 5.759706497192383,
+ "step": 249
+ },
+ {
+ "epoch": 3.475316732197466,
+ "grad_norm": 0.18207131326198578,
+ "learning_rate": 0.0006,
+ "loss": 5.747040748596191,
+ "step": 250
+ },
+ {
+ "epoch": 3.489296636085627,
+ "grad_norm": 0.16473834216594696,
+ "learning_rate": 0.0006,
+ "loss": 5.761577606201172,
+ "step": 251
+ },
+ {
+ "epoch": 3.5032765399737875,
+ "grad_norm": 0.25155773758888245,
+ "learning_rate": 0.0006,
+ "loss": 5.696502208709717,
+ "step": 252
+ },
+ {
+ "epoch": 3.5172564438619487,
+ "grad_norm": 0.24115674197673798,
+ "learning_rate": 0.0006,
+ "loss": 5.676957130432129,
+ "step": 253
+ },
+ {
+ "epoch": 3.5312363477501094,
+ "grad_norm": 0.40912172198295593,
+ "learning_rate": 0.0006,
+ "loss": 5.695090293884277,
+ "step": 254
+ },
+ {
+ "epoch": 3.54521625163827,
+ "grad_norm": 0.6727662682533264,
+ "learning_rate": 0.0006,
+ "loss": 5.722194671630859,
+ "step": 255
+ },
+ {
+ "epoch": 3.559196155526431,
+ "grad_norm": 0.8450719118118286,
+ "learning_rate": 0.0006,
+ "loss": 5.764680862426758,
+ "step": 256
+ },
+ {
+ "epoch": 3.5731760594145916,
+ "grad_norm": 0.9916183352470398,
+ "learning_rate": 0.0006,
+ "loss": 5.754530429840088,
+ "step": 257
+ },
+ {
+ "epoch": 3.5871559633027523,
+ "grad_norm": 1.041922688484192,
+ "learning_rate": 0.0006,
+ "loss": 5.781468391418457,
+ "step": 258
+ },
+ {
+ "epoch": 3.601135867190913,
+ "grad_norm": 0.972039520740509,
+ "learning_rate": 0.0006,
+ "loss": 5.760323524475098,
+ "step": 259
+ },
+ {
+ "epoch": 3.615115771079074,
+ "grad_norm": 0.6802462935447693,
+ "learning_rate": 0.0006,
+ "loss": 5.750064849853516,
+ "step": 260
+ },
+ {
+ "epoch": 3.6290956749672345,
+ "grad_norm": 0.48553529381752014,
+ "learning_rate": 0.0006,
+ "loss": 5.7464094161987305,
+ "step": 261
+ },
+ {
+ "epoch": 3.6430755788553952,
+ "grad_norm": 0.4066704213619232,
+ "learning_rate": 0.0006,
+ "loss": 5.719789505004883,
+ "step": 262
+ },
+ {
+ "epoch": 3.657055482743556,
+ "grad_norm": 0.3300860822200775,
+ "learning_rate": 0.0006,
+ "loss": 5.719920635223389,
+ "step": 263
+ },
+ {
+ "epoch": 3.6710353866317167,
+ "grad_norm": 0.3286679983139038,
+ "learning_rate": 0.0006,
+ "loss": 5.723465919494629,
+ "step": 264
+ },
+ {
+ "epoch": 3.6850152905198774,
+ "grad_norm": 0.27653390169143677,
+ "learning_rate": 0.0006,
+ "loss": 5.713820457458496,
+ "step": 265
+ },
+ {
+ "epoch": 3.6989951944080386,
+ "grad_norm": 0.26138055324554443,
+ "learning_rate": 0.0006,
+ "loss": 5.683221817016602,
+ "step": 266
+ },
+ {
+ "epoch": 3.7129750982961993,
+ "grad_norm": 0.23706290125846863,
+ "learning_rate": 0.0006,
+ "loss": 5.6896867752075195,
+ "step": 267
+ },
+ {
+ "epoch": 3.72695500218436,
+ "grad_norm": 0.2751729190349579,
+ "learning_rate": 0.0006,
+ "loss": 5.710301876068115,
+ "step": 268
+ },
+ {
+ "epoch": 3.7409349060725208,
+ "grad_norm": 0.255393385887146,
+ "learning_rate": 0.0006,
+ "loss": 5.687932968139648,
+ "step": 269
+ },
+ {
+ "epoch": 3.7549148099606815,
+ "grad_norm": 0.21453925967216492,
+ "learning_rate": 0.0006,
+ "loss": 5.68234395980835,
+ "step": 270
+ },
+ {
+ "epoch": 3.7688947138488422,
+ "grad_norm": 0.21771012246608734,
+ "learning_rate": 0.0006,
+ "loss": 5.683980464935303,
+ "step": 271
+ },
+ {
+ "epoch": 3.782874617737003,
+ "grad_norm": 0.1884593963623047,
+ "learning_rate": 0.0006,
+ "loss": 5.662779808044434,
+ "step": 272
+ },
+ {
+ "epoch": 3.7968545216251637,
+ "grad_norm": 0.20429612696170807,
+ "learning_rate": 0.0006,
+ "loss": 5.650941848754883,
+ "step": 273
+ },
+ {
+ "epoch": 3.810834425513325,
+ "grad_norm": 0.22586797177791595,
+ "learning_rate": 0.0006,
+ "loss": 5.639376640319824,
+ "step": 274
+ },
+ {
+ "epoch": 3.8248143294014856,
+ "grad_norm": 0.19651705026626587,
+ "learning_rate": 0.0006,
+ "loss": 5.612030029296875,
+ "step": 275
+ },
+ {
+ "epoch": 3.8387942332896463,
+ "grad_norm": 0.2125253826379776,
+ "learning_rate": 0.0006,
+ "loss": 5.622836589813232,
+ "step": 276
+ },
+ {
+ "epoch": 3.852774137177807,
+ "grad_norm": 0.2905234694480896,
+ "learning_rate": 0.0006,
+ "loss": 5.624594688415527,
+ "step": 277
+ },
+ {
+ "epoch": 3.8667540410659678,
+ "grad_norm": 0.2718426585197449,
+ "learning_rate": 0.0006,
+ "loss": 5.619892120361328,
+ "step": 278
+ },
+ {
+ "epoch": 3.8807339449541285,
+ "grad_norm": 0.26481127738952637,
+ "learning_rate": 0.0006,
+ "loss": 5.612496852874756,
+ "step": 279
+ },
+ {
+ "epoch": 3.894713848842289,
+ "grad_norm": 0.2876453399658203,
+ "learning_rate": 0.0006,
+ "loss": 5.59157133102417,
+ "step": 280
+ },
+ {
+ "epoch": 3.90869375273045,
+ "grad_norm": 0.22829554975032806,
+ "learning_rate": 0.0006,
+ "loss": 5.5884199142456055,
+ "step": 281
+ },
+ {
+ "epoch": 3.9226736566186107,
+ "grad_norm": 0.22852344810962677,
+ "learning_rate": 0.0006,
+ "loss": 5.618719100952148,
+ "step": 282
+ },
+ {
+ "epoch": 3.9366535605067714,
+ "grad_norm": 0.37366563081741333,
+ "learning_rate": 0.0006,
+ "loss": 5.611738204956055,
+ "step": 283
+ },
+ {
+ "epoch": 3.950633464394932,
+ "grad_norm": 0.5650382041931152,
+ "learning_rate": 0.0006,
+ "loss": 5.606371879577637,
+ "step": 284
+ },
+ {
+ "epoch": 3.964613368283093,
+ "grad_norm": 0.5960066914558411,
+ "learning_rate": 0.0006,
+ "loss": 5.595022201538086,
+ "step": 285
+ },
+ {
+ "epoch": 3.9785932721712536,
+ "grad_norm": 0.3561663031578064,
+ "learning_rate": 0.0006,
+ "loss": 5.581035614013672,
+ "step": 286
+ },
+ {
+ "epoch": 3.9925731760594148,
+ "grad_norm": 0.44699913263320923,
+ "learning_rate": 0.0006,
+ "loss": 5.568033218383789,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.42783990502357483,
+ "learning_rate": 0.0006,
+ "loss": 5.571993827819824,
+ "step": 288
+ },
+ {
+ "epoch": 4.0,
+ "eval_loss": 6.349016189575195,
+ "eval_runtime": 44.3326,
+ "eval_samples_per_second": 55.084,
+ "eval_steps_per_second": 3.451,
+ "step": 288
+ },
+ {
+ "epoch": 4.013979903888161,
+ "grad_norm": 0.41305896639823914,
+ "learning_rate": 0.0006,
+ "loss": 5.562954902648926,
+ "step": 289
+ },
+ {
+ "epoch": 4.0279598077763215,
+ "grad_norm": 0.3966459035873413,
+ "learning_rate": 0.0006,
+ "loss": 5.5671916007995605,
+ "step": 290
+ },
+ {
+ "epoch": 4.041939711664482,
+ "grad_norm": 0.4846104085445404,
+ "learning_rate": 0.0006,
+ "loss": 5.548027038574219,
+ "step": 291
+ },
+ {
+ "epoch": 4.055919615552643,
+ "grad_norm": 0.5916333794593811,
+ "learning_rate": 0.0006,
+ "loss": 5.5900068283081055,
+ "step": 292
+ },
+ {
+ "epoch": 4.069899519440804,
+ "grad_norm": 0.5973889231681824,
+ "learning_rate": 0.0006,
+ "loss": 5.537594795227051,
+ "step": 293
+ },
+ {
+ "epoch": 4.083879423328964,
+ "grad_norm": 0.4190494418144226,
+ "learning_rate": 0.0006,
+ "loss": 5.534749984741211,
+ "step": 294
+ },
+ {
+ "epoch": 4.097859327217125,
+ "grad_norm": 0.5956901907920837,
+ "learning_rate": 0.0006,
+ "loss": 5.554540634155273,
+ "step": 295
+ },
+ {
+ "epoch": 4.111839231105286,
+ "grad_norm": 0.8257920742034912,
+ "learning_rate": 0.0006,
+ "loss": 5.5728068351745605,
+ "step": 296
+ },
+ {
+ "epoch": 4.1258191349934465,
+ "grad_norm": 0.7241750955581665,
+ "learning_rate": 0.0006,
+ "loss": 5.5643815994262695,
+ "step": 297
+ },
+ {
+ "epoch": 4.139799038881607,
+ "grad_norm": 0.45730507373809814,
+ "learning_rate": 0.0006,
+ "loss": 5.554225921630859,
+ "step": 298
+ },
+ {
+ "epoch": 4.153778942769769,
+ "grad_norm": 0.5166977643966675,
+ "learning_rate": 0.0006,
+ "loss": 5.540790557861328,
+ "step": 299
+ },
+ {
+ "epoch": 4.16775884665793,
+ "grad_norm": 0.433237761259079,
+ "learning_rate": 0.0006,
+ "loss": 5.536884784698486,
+ "step": 300
+ },
+ {
+ "epoch": 4.18173875054609,
+ "grad_norm": 0.3369830250740051,
+ "learning_rate": 0.0006,
+ "loss": 5.532837867736816,
+ "step": 301
+ },
+ {
+ "epoch": 4.195718654434251,
+ "grad_norm": 0.33091458678245544,
+ "learning_rate": 0.0006,
+ "loss": 5.547643661499023,
+ "step": 302
+ },
+ {
+ "epoch": 4.209698558322412,
+ "grad_norm": 0.36462724208831787,
+ "learning_rate": 0.0006,
+ "loss": 5.525021076202393,
+ "step": 303
+ },
+ {
+ "epoch": 4.2236784622105725,
+ "grad_norm": 0.3342771530151367,
+ "learning_rate": 0.0006,
+ "loss": 5.512082099914551,
+ "step": 304
+ },
+ {
+ "epoch": 4.237658366098733,
+ "grad_norm": 0.26784762740135193,
+ "learning_rate": 0.0006,
+ "loss": 5.488072395324707,
+ "step": 305
+ },
+ {
+ "epoch": 4.251638269986894,
+ "grad_norm": 0.25986987352371216,
+ "learning_rate": 0.0006,
+ "loss": 5.4960455894470215,
+ "step": 306
+ },
+ {
+ "epoch": 4.265618173875055,
+ "grad_norm": 0.24595795571804047,
+ "learning_rate": 0.0006,
+ "loss": 5.513367176055908,
+ "step": 307
+ },
+ {
+ "epoch": 4.279598077763215,
+ "grad_norm": 0.2224857211112976,
+ "learning_rate": 0.0006,
+ "loss": 5.465205192565918,
+ "step": 308
+ },
+ {
+ "epoch": 4.293577981651376,
+ "grad_norm": 0.26799243688583374,
+ "learning_rate": 0.0006,
+ "loss": 5.476632118225098,
+ "step": 309
+ },
+ {
+ "epoch": 4.307557885539537,
+ "grad_norm": 0.20443417131900787,
+ "learning_rate": 0.0006,
+ "loss": 5.442601203918457,
+ "step": 310
+ },
+ {
+ "epoch": 4.321537789427698,
+ "grad_norm": 0.2275059074163437,
+ "learning_rate": 0.0006,
+ "loss": 5.453519344329834,
+ "step": 311
+ },
+ {
+ "epoch": 4.335517693315858,
+ "grad_norm": 0.2860901951789856,
+ "learning_rate": 0.0006,
+ "loss": 5.439424514770508,
+ "step": 312
+ },
+ {
+ "epoch": 4.349497597204019,
+ "grad_norm": 0.3378142714500427,
+ "learning_rate": 0.0006,
+ "loss": 5.476953983306885,
+ "step": 313
+ },
+ {
+ "epoch": 4.36347750109218,
+ "grad_norm": 0.3487110733985901,
+ "learning_rate": 0.0006,
+ "loss": 5.47003698348999,
+ "step": 314
+ },
+ {
+ "epoch": 4.3774574049803405,
+ "grad_norm": 0.3655227720737457,
+ "learning_rate": 0.0006,
+ "loss": 5.454250812530518,
+ "step": 315
+ },
+ {
+ "epoch": 4.391437308868501,
+ "grad_norm": 0.3754786252975464,
+ "learning_rate": 0.0006,
+ "loss": 5.475249290466309,
+ "step": 316
+ },
+ {
+ "epoch": 4.405417212756662,
+ "grad_norm": 0.42494088411331177,
+ "learning_rate": 0.0006,
+ "loss": 5.4552459716796875,
+ "step": 317
+ },
+ {
+ "epoch": 4.419397116644823,
+ "grad_norm": 0.4914703667163849,
+ "learning_rate": 0.0006,
+ "loss": 5.431845188140869,
+ "step": 318
+ },
+ {
+ "epoch": 4.433377020532983,
+ "grad_norm": 0.42470860481262207,
+ "learning_rate": 0.0006,
+ "loss": 5.454581260681152,
+ "step": 319
+ },
+ {
+ "epoch": 4.447356924421145,
+ "grad_norm": 0.3828011155128479,
+ "learning_rate": 0.0006,
+ "loss": 5.435178756713867,
+ "step": 320
+ },
+ {
+ "epoch": 4.461336828309306,
+ "grad_norm": 0.47256892919540405,
+ "learning_rate": 0.0006,
+ "loss": 5.428861618041992,
+ "step": 321
+ },
+ {
+ "epoch": 4.4753167321974665,
+ "grad_norm": 0.5665146708488464,
+ "learning_rate": 0.0006,
+ "loss": 5.424633026123047,
+ "step": 322
+ },
+ {
+ "epoch": 4.489296636085627,
+ "grad_norm": 0.48146721720695496,
+ "learning_rate": 0.0006,
+ "loss": 5.4577860832214355,
+ "step": 323
+ },
+ {
+ "epoch": 4.503276539973788,
+ "grad_norm": 0.3378535509109497,
+ "learning_rate": 0.0006,
+ "loss": 5.422727108001709,
+ "step": 324
+ },
+ {
+ "epoch": 4.517256443861949,
+ "grad_norm": 0.41981473565101624,
+ "learning_rate": 0.0006,
+ "loss": 5.418993949890137,
+ "step": 325
+ },
+ {
+ "epoch": 4.531236347750109,
+ "grad_norm": 0.39389684796333313,
+ "learning_rate": 0.0006,
+ "loss": 5.41835880279541,
+ "step": 326
+ },
+ {
+ "epoch": 4.54521625163827,
+ "grad_norm": 0.5912176370620728,
+ "learning_rate": 0.0006,
+ "loss": 5.40073299407959,
+ "step": 327
+ },
+ {
+ "epoch": 4.559196155526431,
+ "grad_norm": 0.6877487897872925,
+ "learning_rate": 0.0006,
+ "loss": 5.445301055908203,
+ "step": 328
+ },
+ {
+ "epoch": 4.573176059414592,
+ "grad_norm": 0.580555260181427,
+ "learning_rate": 0.0006,
+ "loss": 5.431069374084473,
+ "step": 329
+ },
+ {
+ "epoch": 4.587155963302752,
+ "grad_norm": 0.5974457859992981,
+ "learning_rate": 0.0006,
+ "loss": 5.422694206237793,
+ "step": 330
+ },
+ {
+ "epoch": 4.601135867190913,
+ "grad_norm": 0.722481906414032,
+ "learning_rate": 0.0006,
+ "loss": 5.447752952575684,
+ "step": 331
+ },
+ {
+ "epoch": 4.615115771079074,
+ "grad_norm": 0.7687886953353882,
+ "learning_rate": 0.0006,
+ "loss": 5.437956809997559,
+ "step": 332
+ },
+ {
+ "epoch": 4.6290956749672345,
+ "grad_norm": 0.7368173003196716,
+ "learning_rate": 0.0006,
+ "loss": 5.4367241859436035,
+ "step": 333
+ },
+ {
+ "epoch": 4.643075578855395,
+ "grad_norm": 0.6650524139404297,
+ "learning_rate": 0.0006,
+ "loss": 5.4288434982299805,
+ "step": 334
+ },
+ {
+ "epoch": 4.657055482743556,
+ "grad_norm": 0.4997614920139313,
+ "learning_rate": 0.0006,
+ "loss": 5.412769317626953,
+ "step": 335
+ },
+ {
+ "epoch": 4.671035386631717,
+ "grad_norm": 0.44208982586860657,
+ "learning_rate": 0.0006,
+ "loss": 5.42405366897583,
+ "step": 336
+ },
+ {
+ "epoch": 4.685015290519877,
+ "grad_norm": 0.39510273933410645,
+ "learning_rate": 0.0006,
+ "loss": 5.402547836303711,
+ "step": 337
+ },
+ {
+ "epoch": 4.698995194408038,
+ "grad_norm": 0.44970476627349854,
+ "learning_rate": 0.0006,
+ "loss": 5.377168655395508,
+ "step": 338
+ },
+ {
+ "epoch": 4.712975098296199,
+ "grad_norm": 0.3902331590652466,
+ "learning_rate": 0.0006,
+ "loss": 5.401622772216797,
+ "step": 339
+ },
+ {
+ "epoch": 4.72695500218436,
+ "grad_norm": 0.33485135436058044,
+ "learning_rate": 0.0006,
+ "loss": 5.397945880889893,
+ "step": 340
+ },
+ {
+ "epoch": 4.740934906072521,
+ "grad_norm": 0.29062309861183167,
+ "learning_rate": 0.0006,
+ "loss": 5.356175422668457,
+ "step": 341
+ },
+ {
+ "epoch": 4.754914809960681,
+ "grad_norm": 0.23617377877235413,
+ "learning_rate": 0.0006,
+ "loss": 5.388517379760742,
+ "step": 342
+ },
+ {
+ "epoch": 4.768894713848843,
+ "grad_norm": 0.2704737186431885,
+ "learning_rate": 0.0006,
+ "loss": 5.3746137619018555,
+ "step": 343
+ },
+ {
+ "epoch": 4.782874617737003,
+ "grad_norm": 0.20488551259040833,
+ "learning_rate": 0.0006,
+ "loss": 5.3754472732543945,
+ "step": 344
+ },
+ {
+ "epoch": 4.796854521625164,
+ "grad_norm": 0.2007082849740982,
+ "learning_rate": 0.0006,
+ "loss": 5.3538618087768555,
+ "step": 345
+ },
+ {
+ "epoch": 4.810834425513325,
+ "grad_norm": 0.21732935309410095,
+ "learning_rate": 0.0006,
+ "loss": 5.351774215698242,
+ "step": 346
+ },
+ {
+ "epoch": 4.824814329401486,
+ "grad_norm": 0.1944841742515564,
+ "learning_rate": 0.0006,
+ "loss": 5.357545852661133,
+ "step": 347
+ },
+ {
+ "epoch": 4.838794233289646,
+ "grad_norm": 0.1953933835029602,
+ "learning_rate": 0.0006,
+ "loss": 5.321681022644043,
+ "step": 348
+ },
+ {
+ "epoch": 4.852774137177807,
+ "grad_norm": 0.1743433028459549,
+ "learning_rate": 0.0006,
+ "loss": 5.340302467346191,
+ "step": 349
+ },
+ {
+ "epoch": 4.866754041065968,
+ "grad_norm": 0.19655466079711914,
+ "learning_rate": 0.0006,
+ "loss": 5.325471878051758,
+ "step": 350
+ },
+ {
+ "epoch": 4.8807339449541285,
+ "grad_norm": 0.15761791169643402,
+ "learning_rate": 0.0006,
+ "loss": 5.3453240394592285,
+ "step": 351
+ },
+ {
+ "epoch": 4.894713848842289,
+ "grad_norm": 0.19164425134658813,
+ "learning_rate": 0.0006,
+ "loss": 5.315583229064941,
+ "step": 352
+ },
+ {
+ "epoch": 4.90869375273045,
+ "grad_norm": 0.28084540367126465,
+ "learning_rate": 0.0006,
+ "loss": 5.309171676635742,
+ "step": 353
+ },
+ {
+ "epoch": 4.922673656618611,
+ "grad_norm": 0.4681853652000427,
+ "learning_rate": 0.0006,
+ "loss": 5.318211078643799,
+ "step": 354
+ },
+ {
+ "epoch": 4.936653560506771,
+ "grad_norm": 0.6417295932769775,
+ "learning_rate": 0.0006,
+ "loss": 5.309263706207275,
+ "step": 355
+ },
+ {
+ "epoch": 4.950633464394932,
+ "grad_norm": 0.501312792301178,
+ "learning_rate": 0.0006,
+ "loss": 5.321534156799316,
+ "step": 356
+ },
+ {
+ "epoch": 4.964613368283093,
+ "grad_norm": 0.47502145171165466,
+ "learning_rate": 0.0006,
+ "loss": 5.323659896850586,
+ "step": 357
+ },
+ {
+ "epoch": 4.978593272171254,
+ "grad_norm": 0.5366594791412354,
+ "learning_rate": 0.0006,
+ "loss": 5.327367782592773,
+ "step": 358
+ },
+ {
+ "epoch": 4.992573176059414,
+ "grad_norm": 0.6986395120620728,
+ "learning_rate": 0.0006,
+ "loss": 5.311097145080566,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.6626625657081604,
+ "learning_rate": 0.0006,
+ "loss": 5.337558269500732,
+ "step": 360
+ },
+ {
+ "epoch": 5.0,
+ "eval_loss": 5.929230690002441,
+ "eval_runtime": 44.5268,
+ "eval_samples_per_second": 54.843,
+ "eval_steps_per_second": 3.436,
+ "step": 360
+ },
+ {
+ "epoch": 5.013979903888161,
+ "grad_norm": 0.7383704781532288,
+ "learning_rate": 0.0006,
+ "loss": 5.315563678741455,
+ "step": 361
+ },
+ {
+ "epoch": 5.0279598077763215,
+ "grad_norm": 0.7730138301849365,
+ "learning_rate": 0.0006,
+ "loss": 5.324905872344971,
+ "step": 362
+ },
+ {
+ "epoch": 5.041939711664482,
+ "grad_norm": 0.8170825839042664,
+ "learning_rate": 0.0006,
+ "loss": 5.350251197814941,
+ "step": 363
+ },
+ {
+ "epoch": 5.055919615552643,
+ "grad_norm": 0.6950958371162415,
+ "learning_rate": 0.0006,
+ "loss": 5.338744163513184,
+ "step": 364
+ },
+ {
+ "epoch": 5.069899519440804,
+ "grad_norm": 0.5582894086837769,
+ "learning_rate": 0.0006,
+ "loss": 5.340539932250977,
+ "step": 365
+ },
+ {
+ "epoch": 5.083879423328964,
+ "grad_norm": 0.4772159159183502,
+ "learning_rate": 0.0006,
+ "loss": 5.344161033630371,
+ "step": 366
+ },
+ {
+ "epoch": 5.097859327217125,
+ "grad_norm": 0.5432839393615723,
+ "learning_rate": 0.0006,
+ "loss": 5.312403678894043,
+ "step": 367
+ },
+ {
+ "epoch": 5.111839231105286,
+ "grad_norm": 0.4944784641265869,
+ "learning_rate": 0.0006,
+ "loss": 5.30281925201416,
+ "step": 368
+ },
+ {
+ "epoch": 5.1258191349934465,
+ "grad_norm": 0.4298315942287445,
+ "learning_rate": 0.0006,
+ "loss": 5.29564094543457,
+ "step": 369
+ },
+ {
+ "epoch": 5.139799038881607,
+ "grad_norm": 0.349889874458313,
+ "learning_rate": 0.0006,
+ "loss": 5.287062644958496,
+ "step": 370
+ },
+ {
+ "epoch": 5.153778942769769,
+ "grad_norm": 0.2823719084262848,
+ "learning_rate": 0.0006,
+ "loss": 5.28826904296875,
+ "step": 371
+ },
+ {
+ "epoch": 5.16775884665793,
+ "grad_norm": 0.32975050806999207,
+ "learning_rate": 0.0006,
+ "loss": 5.256399631500244,
+ "step": 372
+ },
+ {
+ "epoch": 5.18173875054609,
+ "grad_norm": 0.2963952124118805,
+ "learning_rate": 0.0006,
+ "loss": 5.273757457733154,
+ "step": 373
+ },
+ {
+ "epoch": 5.195718654434251,
+ "grad_norm": 0.21345984935760498,
+ "learning_rate": 0.0006,
+ "loss": 5.274978160858154,
+ "step": 374
+ },
+ {
+ "epoch": 5.209698558322412,
+ "grad_norm": 0.2363101840019226,
+ "learning_rate": 0.0006,
+ "loss": 5.261585235595703,
+ "step": 375
+ },
+ {
+ "epoch": 5.2236784622105725,
+ "grad_norm": 0.19626963138580322,
+ "learning_rate": 0.0006,
+ "loss": 5.259700298309326,
+ "step": 376
+ },
+ {
+ "epoch": 5.237658366098733,
+ "grad_norm": 0.21083571016788483,
+ "learning_rate": 0.0006,
+ "loss": 5.233585357666016,
+ "step": 377
+ },
+ {
+ "epoch": 5.251638269986894,
+ "grad_norm": 0.2273513823747635,
+ "learning_rate": 0.0006,
+ "loss": 5.231740474700928,
+ "step": 378
+ },
+ {
+ "epoch": 5.265618173875055,
+ "grad_norm": 0.18299247324466705,
+ "learning_rate": 0.0006,
+ "loss": 5.251256465911865,
+ "step": 379
+ },
+ {
+ "epoch": 5.279598077763215,
+ "grad_norm": 0.19578224420547485,
+ "learning_rate": 0.0006,
+ "loss": 5.230329513549805,
+ "step": 380
+ },
+ {
+ "epoch": 5.293577981651376,
+ "grad_norm": 0.20308879017829895,
+ "learning_rate": 0.0006,
+ "loss": 5.243951797485352,
+ "step": 381
+ },
+ {
+ "epoch": 5.307557885539537,
+ "grad_norm": 0.21053212881088257,
+ "learning_rate": 0.0006,
+ "loss": 5.210272789001465,
+ "step": 382
+ },
+ {
+ "epoch": 5.321537789427698,
+ "grad_norm": 0.21852520108222961,
+ "learning_rate": 0.0006,
+ "loss": 5.215418815612793,
+ "step": 383
+ },
+ {
+ "epoch": 5.335517693315858,
+ "grad_norm": 0.24872010946273804,
+ "learning_rate": 0.0006,
+ "loss": 5.225139617919922,
+ "step": 384
+ },
+ {
+ "epoch": 5.349497597204019,
+ "grad_norm": 0.27780187129974365,
+ "learning_rate": 0.0006,
+ "loss": 5.241010665893555,
+ "step": 385
+ },
+ {
+ "epoch": 5.36347750109218,
+ "grad_norm": 0.261767715215683,
+ "learning_rate": 0.0006,
+ "loss": 5.230723857879639,
+ "step": 386
+ },
+ {
+ "epoch": 5.3774574049803405,
+ "grad_norm": 0.2111261785030365,
+ "learning_rate": 0.0006,
+ "loss": 5.1848602294921875,
+ "step": 387
+ },
+ {
+ "epoch": 5.391437308868501,
+ "grad_norm": 0.24325387179851532,
+ "learning_rate": 0.0006,
+ "loss": 5.180911064147949,
+ "step": 388
+ },
+ {
+ "epoch": 5.405417212756662,
+ "grad_norm": 0.19542962312698364,
+ "learning_rate": 0.0006,
+ "loss": 5.189907073974609,
+ "step": 389
+ },
+ {
+ "epoch": 5.419397116644823,
+ "grad_norm": 0.20489346981048584,
+ "learning_rate": 0.0006,
+ "loss": 5.184634208679199,
+ "step": 390
+ },
+ {
+ "epoch": 5.433377020532983,
+ "grad_norm": 0.2753409147262573,
+ "learning_rate": 0.0006,
+ "loss": 5.190083026885986,
+ "step": 391
+ },
+ {
+ "epoch": 5.447356924421145,
+ "grad_norm": 0.3758019208908081,
+ "learning_rate": 0.0006,
+ "loss": 5.189423561096191,
+ "step": 392
+ },
+ {
+ "epoch": 5.461336828309306,
+ "grad_norm": 0.4425095021724701,
+ "learning_rate": 0.0006,
+ "loss": 5.17152214050293,
+ "step": 393
+ },
+ {
+ "epoch": 5.4753167321974665,
+ "grad_norm": 0.39721858501434326,
+ "learning_rate": 0.0006,
+ "loss": 5.189178466796875,
+ "step": 394
+ },
+ {
+ "epoch": 5.489296636085627,
+ "grad_norm": 0.43441957235336304,
+ "learning_rate": 0.0006,
+ "loss": 5.1823577880859375,
+ "step": 395
+ },
+ {
+ "epoch": 5.503276539973788,
+ "grad_norm": 0.3583861291408539,
+ "learning_rate": 0.0006,
+ "loss": 5.160187721252441,
+ "step": 396
+ },
+ {
+ "epoch": 5.517256443861949,
+ "grad_norm": 0.323290079832077,
+ "learning_rate": 0.0006,
+ "loss": 5.113046646118164,
+ "step": 397
+ },
+ {
+ "epoch": 5.531236347750109,
+ "grad_norm": 0.3049418330192566,
+ "learning_rate": 0.0006,
+ "loss": 5.172209739685059,
+ "step": 398
+ },
+ {
+ "epoch": 5.54521625163827,
+ "grad_norm": 0.3253744840621948,
+ "learning_rate": 0.0006,
+ "loss": 5.1970720291137695,
+ "step": 399
+ },
+ {
+ "epoch": 5.559196155526431,
+ "grad_norm": 0.3232555091381073,
+ "learning_rate": 0.0006,
+ "loss": 5.173195838928223,
+ "step": 400
+ },
+ {
+ "epoch": 5.573176059414592,
+ "grad_norm": 0.33751845359802246,
+ "learning_rate": 0.0006,
+ "loss": 5.137526988983154,
+ "step": 401
+ },
+ {
+ "epoch": 5.587155963302752,
+ "grad_norm": 0.45970913767814636,
+ "learning_rate": 0.0006,
+ "loss": 5.123377799987793,
+ "step": 402
+ },
+ {
+ "epoch": 5.601135867190913,
+ "grad_norm": 0.5383784770965576,
+ "learning_rate": 0.0006,
+ "loss": 5.154180526733398,
+ "step": 403
+ },
+ {
+ "epoch": 5.615115771079074,
+ "grad_norm": 0.45765912532806396,
+ "learning_rate": 0.0006,
+ "loss": 5.1485209465026855,
+ "step": 404
+ },
+ {
+ "epoch": 5.6290956749672345,
+ "grad_norm": 0.5079503059387207,
+ "learning_rate": 0.0006,
+ "loss": 5.158293724060059,
+ "step": 405
+ },
+ {
+ "epoch": 5.643075578855395,
+ "grad_norm": 0.4860183894634247,
+ "learning_rate": 0.0006,
+ "loss": 5.1610212326049805,
+ "step": 406
+ },
+ {
+ "epoch": 5.657055482743556,
+ "grad_norm": 0.4065648913383484,
+ "learning_rate": 0.0006,
+ "loss": 5.1260786056518555,
+ "step": 407
+ },
+ {
+ "epoch": 5.671035386631717,
+ "grad_norm": 0.39606142044067383,
+ "learning_rate": 0.0006,
+ "loss": 5.1598711013793945,
+ "step": 408
+ },
+ {
+ "epoch": 5.685015290519877,
+ "grad_norm": 0.4705151319503784,
+ "learning_rate": 0.0006,
+ "loss": 5.166455268859863,
+ "step": 409
+ },
+ {
+ "epoch": 5.698995194408038,
+ "grad_norm": 0.5040799379348755,
+ "learning_rate": 0.0006,
+ "loss": 5.1408209800720215,
+ "step": 410
+ },
+ {
+ "epoch": 5.712975098296199,
+ "grad_norm": 0.5012556910514832,
+ "learning_rate": 0.0006,
+ "loss": 5.144109725952148,
+ "step": 411
+ },
+ {
+ "epoch": 5.72695500218436,
+ "grad_norm": 0.44301411509513855,
+ "learning_rate": 0.0006,
+ "loss": 5.155509948730469,
+ "step": 412
+ },
+ {
+ "epoch": 5.740934906072521,
+ "grad_norm": 0.36632269620895386,
+ "learning_rate": 0.0006,
+ "loss": 5.123111248016357,
+ "step": 413
+ },
+ {
+ "epoch": 5.754914809960681,
+ "grad_norm": 0.2980524003505707,
+ "learning_rate": 0.0006,
+ "loss": 5.1355719566345215,
+ "step": 414
+ },
+ {
+ "epoch": 5.768894713848843,
+ "grad_norm": 0.3441782295703888,
+ "learning_rate": 0.0006,
+ "loss": 5.132327079772949,
+ "step": 415
+ },
+ {
+ "epoch": 5.782874617737003,
+ "grad_norm": 0.4150780737400055,
+ "learning_rate": 0.0006,
+ "loss": 5.148543357849121,
+ "step": 416
+ },
+ {
+ "epoch": 5.796854521625164,
+ "grad_norm": 0.48417383432388306,
+ "learning_rate": 0.0006,
+ "loss": 5.104989528656006,
+ "step": 417
+ },
+ {
+ "epoch": 5.810834425513325,
+ "grad_norm": 0.3216031491756439,
+ "learning_rate": 0.0006,
+ "loss": 5.0926127433776855,
+ "step": 418
+ },
+ {
+ "epoch": 5.824814329401486,
+ "grad_norm": 0.2821158468723297,
+ "learning_rate": 0.0006,
+ "loss": 5.112299919128418,
+ "step": 419
+ },
+ {
+ "epoch": 5.838794233289646,
+ "grad_norm": 0.29821011424064636,
+ "learning_rate": 0.0006,
+ "loss": 5.091662406921387,
+ "step": 420
+ },
+ {
+ "epoch": 5.852774137177807,
+ "grad_norm": 0.30570563673973083,
+ "learning_rate": 0.0006,
+ "loss": 5.137539863586426,
+ "step": 421
+ },
+ {
+ "epoch": 5.866754041065968,
+ "grad_norm": 0.4029594957828522,
+ "learning_rate": 0.0006,
+ "loss": 5.112751007080078,
+ "step": 422
+ },
+ {
+ "epoch": 5.8807339449541285,
+ "grad_norm": 0.3878514766693115,
+ "learning_rate": 0.0006,
+ "loss": 5.094973564147949,
+ "step": 423
+ },
+ {
+ "epoch": 5.894713848842289,
+ "grad_norm": 0.31936126947402954,
+ "learning_rate": 0.0006,
+ "loss": 5.081070899963379,
+ "step": 424
+ },
+ {
+ "epoch": 5.90869375273045,
+ "grad_norm": 0.3309082090854645,
+ "learning_rate": 0.0006,
+ "loss": 5.06803560256958,
+ "step": 425
+ },
+ {
+ "epoch": 5.922673656618611,
+ "grad_norm": 0.27830439805984497,
+ "learning_rate": 0.0006,
+ "loss": 5.044766426086426,
+ "step": 426
+ },
+ {
+ "epoch": 5.936653560506771,
+ "grad_norm": 0.3301011919975281,
+ "learning_rate": 0.0006,
+ "loss": 5.093942165374756,
+ "step": 427
+ },
+ {
+ "epoch": 5.950633464394932,
+ "grad_norm": 0.40845948457717896,
+ "learning_rate": 0.0006,
+ "loss": 5.0889458656311035,
+ "step": 428
+ },
+ {
+ "epoch": 5.964613368283093,
+ "grad_norm": 0.4412153959274292,
+ "learning_rate": 0.0006,
+ "loss": 5.064834117889404,
+ "step": 429
+ },
+ {
+ "epoch": 5.978593272171254,
+ "grad_norm": 0.3592590093612671,
+ "learning_rate": 0.0006,
+ "loss": 5.066648006439209,
+ "step": 430
+ },
+ {
+ "epoch": 5.992573176059414,
+ "grad_norm": 0.3952840268611908,
+ "learning_rate": 0.0006,
+ "loss": 5.066549301147461,
+ "step": 431
+ },
+ {
+ "epoch": 6.0,
+ "grad_norm": 0.38878682255744934,
+ "learning_rate": 0.0006,
+ "loss": 5.0354323387146,
+ "step": 432
+ },
+ {
+ "epoch": 6.0,
+ "eval_loss": 5.473907947540283,
+ "eval_runtime": 44.5121,
+ "eval_samples_per_second": 54.861,
+ "eval_steps_per_second": 3.437,
+ "step": 432
+ },
+ {
+ "epoch": 6.013979903888161,
+ "grad_norm": 0.42730140686035156,
+ "learning_rate": 0.0006,
+ "loss": 5.048557281494141,
+ "step": 433
+ },
+ {
+ "epoch": 6.0279598077763215,
+ "grad_norm": 0.32713913917541504,
+ "learning_rate": 0.0006,
+ "loss": 5.041255950927734,
+ "step": 434
+ },
+ {
+ "epoch": 6.041939711664482,
+ "grad_norm": 0.32520365715026855,
+ "learning_rate": 0.0006,
+ "loss": 5.043124198913574,
+ "step": 435
+ },
+ {
+ "epoch": 6.055919615552643,
+ "grad_norm": 0.2941839098930359,
+ "learning_rate": 0.0006,
+ "loss": 5.0407304763793945,
+ "step": 436
+ },
+ {
+ "epoch": 6.069899519440804,
+ "grad_norm": 0.3088819682598114,
+ "learning_rate": 0.0006,
+ "loss": 5.020771026611328,
+ "step": 437
+ },
+ {
+ "epoch": 6.083879423328964,
+ "grad_norm": 0.34334254264831543,
+ "learning_rate": 0.0006,
+ "loss": 5.0260009765625,
+ "step": 438
+ },
+ {
+ "epoch": 6.097859327217125,
+ "grad_norm": 0.33016136288642883,
+ "learning_rate": 0.0006,
+ "loss": 4.994412899017334,
+ "step": 439
+ },
+ {
+ "epoch": 6.111839231105286,
+ "grad_norm": 0.2527366280555725,
+ "learning_rate": 0.0006,
+ "loss": 4.997830390930176,
+ "step": 440
+ },
+ {
+ "epoch": 6.1258191349934465,
+ "grad_norm": 0.24742509424686432,
+ "learning_rate": 0.0006,
+ "loss": 5.017087936401367,
+ "step": 441
+ },
+ {
+ "epoch": 6.139799038881607,
+ "grad_norm": 0.22578303515911102,
+ "learning_rate": 0.0006,
+ "loss": 5.000683784484863,
+ "step": 442
+ },
+ {
+ "epoch": 6.153778942769769,
+ "grad_norm": 0.21213896572589874,
+ "learning_rate": 0.0006,
+ "loss": 4.993280410766602,
+ "step": 443
+ },
+ {
+ "epoch": 6.16775884665793,
+ "grad_norm": 0.22559592127799988,
+ "learning_rate": 0.0006,
+ "loss": 5.005735874176025,
+ "step": 444
+ },
+ {
+ "epoch": 6.18173875054609,
+ "grad_norm": 0.18574322760105133,
+ "learning_rate": 0.0006,
+ "loss": 4.996601104736328,
+ "step": 445
+ },
+ {
+ "epoch": 6.195718654434251,
+ "grad_norm": 0.1793852299451828,
+ "learning_rate": 0.0006,
+ "loss": 4.977394104003906,
+ "step": 446
+ },
+ {
+ "epoch": 6.209698558322412,
+ "grad_norm": 0.1851297914981842,
+ "learning_rate": 0.0006,
+ "loss": 4.983541488647461,
+ "step": 447
+ },
+ {
+ "epoch": 6.2236784622105725,
+ "grad_norm": 0.2045268565416336,
+ "learning_rate": 0.0006,
+ "loss": 4.992830276489258,
+ "step": 448
+ },
+ {
+ "epoch": 6.237658366098733,
+ "grad_norm": 0.21707463264465332,
+ "learning_rate": 0.0006,
+ "loss": 4.998589515686035,
+ "step": 449
+ },
+ {
+ "epoch": 6.251638269986894,
+ "grad_norm": 0.2805860638618469,
+ "learning_rate": 0.0006,
+ "loss": 4.973134517669678,
+ "step": 450
+ },
+ {
+ "epoch": 6.265618173875055,
+ "grad_norm": 0.33102089166641235,
+ "learning_rate": 0.0006,
+ "loss": 4.957348823547363,
+ "step": 451
+ },
+ {
+ "epoch": 6.279598077763215,
+ "grad_norm": 0.3763096034526825,
+ "learning_rate": 0.0006,
+ "loss": 5.0133256912231445,
+ "step": 452
+ },
+ {
+ "epoch": 6.293577981651376,
+ "grad_norm": 0.4676196575164795,
+ "learning_rate": 0.0006,
+ "loss": 4.972289562225342,
+ "step": 453
+ },
+ {
+ "epoch": 6.307557885539537,
+ "grad_norm": 0.6158978343009949,
+ "learning_rate": 0.0006,
+ "loss": 4.989326477050781,
+ "step": 454
+ },
+ {
+ "epoch": 6.321537789427698,
+ "grad_norm": 0.537460446357727,
+ "learning_rate": 0.0006,
+ "loss": 5.0210676193237305,
+ "step": 455
+ },
+ {
+ "epoch": 6.335517693315858,
+ "grad_norm": 0.5342532396316528,
+ "learning_rate": 0.0006,
+ "loss": 4.988524436950684,
+ "step": 456
+ },
+ {
+ "epoch": 6.349497597204019,
+ "grad_norm": 0.5736384987831116,
+ "learning_rate": 0.0006,
+ "loss": 4.977508068084717,
+ "step": 457
+ },
+ {
+ "epoch": 6.36347750109218,
+ "grad_norm": 0.6656201481819153,
+ "learning_rate": 0.0006,
+ "loss": 5.047934055328369,
+ "step": 458
+ },
+ {
+ "epoch": 6.3774574049803405,
+ "grad_norm": 0.6388342380523682,
+ "learning_rate": 0.0006,
+ "loss": 5.017617225646973,
+ "step": 459
+ },
+ {
+ "epoch": 6.391437308868501,
+ "grad_norm": 0.6620904207229614,
+ "learning_rate": 0.0006,
+ "loss": 5.032195091247559,
+ "step": 460
+ },
+ {
+ "epoch": 6.405417212756662,
+ "grad_norm": 0.693274974822998,
+ "learning_rate": 0.0006,
+ "loss": 5.02433967590332,
+ "step": 461
+ },
+ {
+ "epoch": 6.419397116644823,
+ "grad_norm": 0.6888924241065979,
+ "learning_rate": 0.0006,
+ "loss": 5.010735511779785,
+ "step": 462
+ },
+ {
+ "epoch": 6.433377020532983,
+ "grad_norm": 0.7181721925735474,
+ "learning_rate": 0.0006,
+ "loss": 5.049690246582031,
+ "step": 463
+ },
+ {
+ "epoch": 6.447356924421145,
+ "grad_norm": 0.7225117087364197,
+ "learning_rate": 0.0006,
+ "loss": 5.031939506530762,
+ "step": 464
+ },
+ {
+ "epoch": 6.461336828309306,
+ "grad_norm": 0.5268304347991943,
+ "learning_rate": 0.0006,
+ "loss": 5.01638126373291,
+ "step": 465
+ },
+ {
+ "epoch": 6.4753167321974665,
+ "grad_norm": 0.38218435645103455,
+ "learning_rate": 0.0006,
+ "loss": 4.997034072875977,
+ "step": 466
+ },
+ {
+ "epoch": 6.489296636085627,
+ "grad_norm": 0.3576396703720093,
+ "learning_rate": 0.0006,
+ "loss": 5.006804943084717,
+ "step": 467
+ },
+ {
+ "epoch": 6.503276539973788,
+ "grad_norm": 0.3305981755256653,
+ "learning_rate": 0.0006,
+ "loss": 4.994671821594238,
+ "step": 468
+ },
+ {
+ "epoch": 6.517256443861949,
+ "grad_norm": 0.3254900574684143,
+ "learning_rate": 0.0006,
+ "loss": 4.9747490882873535,
+ "step": 469
+ },
+ {
+ "epoch": 6.531236347750109,
+ "grad_norm": 0.2655033469200134,
+ "learning_rate": 0.0006,
+ "loss": 5.002863883972168,
+ "step": 470
+ },
+ {
+ "epoch": 6.54521625163827,
+ "grad_norm": 0.2620532810688019,
+ "learning_rate": 0.0006,
+ "loss": 4.9813337326049805,
+ "step": 471
+ },
+ {
+ "epoch": 6.559196155526431,
+ "grad_norm": 0.22128869593143463,
+ "learning_rate": 0.0006,
+ "loss": 4.978368759155273,
+ "step": 472
+ },
+ {
+ "epoch": 6.573176059414592,
+ "grad_norm": 0.22638699412345886,
+ "learning_rate": 0.0006,
+ "loss": 4.944509029388428,
+ "step": 473
+ },
+ {
+ "epoch": 6.587155963302752,
+ "grad_norm": 0.20720207691192627,
+ "learning_rate": 0.0006,
+ "loss": 4.98404598236084,
+ "step": 474
+ },
+ {
+ "epoch": 6.601135867190913,
+ "grad_norm": 0.21577289700508118,
+ "learning_rate": 0.0006,
+ "loss": 4.958878040313721,
+ "step": 475
+ },
+ {
+ "epoch": 6.615115771079074,
+ "grad_norm": 0.22453972697257996,
+ "learning_rate": 0.0006,
+ "loss": 4.935467720031738,
+ "step": 476
+ },
+ {
+ "epoch": 6.6290956749672345,
+ "grad_norm": 0.20757712423801422,
+ "learning_rate": 0.0006,
+ "loss": 4.943334579467773,
+ "step": 477
+ },
+ {
+ "epoch": 6.643075578855395,
+ "grad_norm": 0.22808043658733368,
+ "learning_rate": 0.0006,
+ "loss": 4.936544418334961,
+ "step": 478
+ },
+ {
+ "epoch": 6.657055482743556,
+ "grad_norm": 0.2193756401538849,
+ "learning_rate": 0.0006,
+ "loss": 4.938162326812744,
+ "step": 479
+ },
+ {
+ "epoch": 6.671035386631717,
+ "grad_norm": 0.19677500426769257,
+ "learning_rate": 0.0006,
+ "loss": 4.9026713371276855,
+ "step": 480
+ },
+ {
+ "epoch": 6.685015290519877,
+ "grad_norm": 0.17271658778190613,
+ "learning_rate": 0.0006,
+ "loss": 4.912519454956055,
+ "step": 481
+ },
+ {
+ "epoch": 6.698995194408038,
+ "grad_norm": 0.17551499605178833,
+ "learning_rate": 0.0006,
+ "loss": 4.929941177368164,
+ "step": 482
+ },
+ {
+ "epoch": 6.712975098296199,
+ "grad_norm": 0.1582687348127365,
+ "learning_rate": 0.0006,
+ "loss": 4.908967971801758,
+ "step": 483
+ },
+ {
+ "epoch": 6.72695500218436,
+ "grad_norm": 0.1593410074710846,
+ "learning_rate": 0.0006,
+ "loss": 4.901554107666016,
+ "step": 484
+ },
+ {
+ "epoch": 6.740934906072521,
+ "grad_norm": 0.16746895015239716,
+ "learning_rate": 0.0006,
+ "loss": 4.917915344238281,
+ "step": 485
+ },
+ {
+ "epoch": 6.754914809960681,
+ "grad_norm": 0.17066062986850739,
+ "learning_rate": 0.0006,
+ "loss": 4.912853240966797,
+ "step": 486
+ },
+ {
+ "epoch": 6.768894713848843,
+ "grad_norm": 0.16727769374847412,
+ "learning_rate": 0.0006,
+ "loss": 4.895434856414795,
+ "step": 487
+ },
+ {
+ "epoch": 6.782874617737003,
+ "grad_norm": 0.1784558743238449,
+ "learning_rate": 0.0006,
+ "loss": 4.8805341720581055,
+ "step": 488
+ },
+ {
+ "epoch": 6.796854521625164,
+ "grad_norm": 0.176686093211174,
+ "learning_rate": 0.0006,
+ "loss": 4.855296611785889,
+ "step": 489
+ },
+ {
+ "epoch": 6.810834425513325,
+ "grad_norm": 0.21577849984169006,
+ "learning_rate": 0.0006,
+ "loss": 4.885506629943848,
+ "step": 490
+ },
+ {
+ "epoch": 6.824814329401486,
+ "grad_norm": 0.27615776658058167,
+ "learning_rate": 0.0006,
+ "loss": 4.913756847381592,
+ "step": 491
+ },
+ {
+ "epoch": 6.838794233289646,
+ "grad_norm": 0.3653675615787506,
+ "learning_rate": 0.0006,
+ "loss": 4.880918979644775,
+ "step": 492
+ },
+ {
+ "epoch": 6.852774137177807,
+ "grad_norm": 0.41473883390426636,
+ "learning_rate": 0.0006,
+ "loss": 4.894164562225342,
+ "step": 493
+ },
+ {
+ "epoch": 6.866754041065968,
+ "grad_norm": 0.45850715041160583,
+ "learning_rate": 0.0006,
+ "loss": 4.907922744750977,
+ "step": 494
+ },
+ {
+ "epoch": 6.8807339449541285,
+ "grad_norm": 0.4675290882587433,
+ "learning_rate": 0.0006,
+ "loss": 4.883112907409668,
+ "step": 495
+ },
+ {
+ "epoch": 6.894713848842289,
+ "grad_norm": 0.45795994997024536,
+ "learning_rate": 0.0006,
+ "loss": 4.897843360900879,
+ "step": 496
+ },
+ {
+ "epoch": 6.90869375273045,
+ "grad_norm": 0.46130508184432983,
+ "learning_rate": 0.0006,
+ "loss": 4.890612602233887,
+ "step": 497
+ },
+ {
+ "epoch": 6.922673656618611,
+ "grad_norm": 0.44783803820610046,
+ "learning_rate": 0.0006,
+ "loss": 4.880192756652832,
+ "step": 498
+ },
+ {
+ "epoch": 6.936653560506771,
+ "grad_norm": 0.35361284017562866,
+ "learning_rate": 0.0006,
+ "loss": 4.840778350830078,
+ "step": 499
+ },
+ {
+ "epoch": 6.950633464394932,
+ "grad_norm": 0.34027689695358276,
+ "learning_rate": 0.0006,
+ "loss": 4.871222496032715,
+ "step": 500
+ },
+ {
+ "epoch": 6.964613368283093,
+ "grad_norm": 0.30228909850120544,
+ "learning_rate": 0.0006,
+ "loss": 4.868077278137207,
+ "step": 501
+ },
+ {
+ "epoch": 6.978593272171254,
+ "grad_norm": 0.27706998586654663,
+ "learning_rate": 0.0006,
+ "loss": 4.895936012268066,
+ "step": 502
+ },
+ {
+ "epoch": 6.992573176059414,
+ "grad_norm": 0.3516870439052582,
+ "learning_rate": 0.0006,
+ "loss": 4.824636459350586,
+ "step": 503
+ },
+ {
+ "epoch": 7.0,
+ "grad_norm": 0.36831387877464294,
+ "learning_rate": 0.0006,
+ "loss": 4.874397277832031,
+ "step": 504
+ },
+ {
+ "epoch": 7.0,
+ "eval_loss": 5.176281452178955,
+ "eval_runtime": 44.2386,
+ "eval_samples_per_second": 55.201,
+ "eval_steps_per_second": 3.459,
+ "step": 504
+ },
+ {
+ "epoch": 7.013979903888161,
+ "grad_norm": 0.4265240430831909,
+ "learning_rate": 0.0006,
+ "loss": 4.814333438873291,
+ "step": 505
+ },
+ {
+ "epoch": 7.0279598077763215,
+ "grad_norm": 0.5126975774765015,
+ "learning_rate": 0.0006,
+ "loss": 4.852343559265137,
+ "step": 506
+ },
+ {
+ "epoch": 7.041939711664482,
+ "grad_norm": 0.43080806732177734,
+ "learning_rate": 0.0006,
+ "loss": 4.843439102172852,
+ "step": 507
+ },
+ {
+ "epoch": 7.055919615552643,
+ "grad_norm": 0.43170198798179626,
+ "learning_rate": 0.0006,
+ "loss": 4.845984935760498,
+ "step": 508
+ },
+ {
+ "epoch": 7.069899519440804,
+ "grad_norm": 0.5640552043914795,
+ "learning_rate": 0.0006,
+ "loss": 4.840991973876953,
+ "step": 509
+ },
+ {
+ "epoch": 7.083879423328964,
+ "grad_norm": 0.540381133556366,
+ "learning_rate": 0.0006,
+ "loss": 4.801316738128662,
+ "step": 510
+ },
+ {
+ "epoch": 7.097859327217125,
+ "grad_norm": 0.5412097573280334,
+ "learning_rate": 0.0006,
+ "loss": 4.886598587036133,
+ "step": 511
+ },
+ {
+ "epoch": 7.111839231105286,
+ "grad_norm": 0.630648136138916,
+ "learning_rate": 0.0006,
+ "loss": 4.849774360656738,
+ "step": 512
+ },
+ {
+ "epoch": 7.1258191349934465,
+ "grad_norm": 0.569952130317688,
+ "learning_rate": 0.0006,
+ "loss": 4.870607376098633,
+ "step": 513
+ },
+ {
+ "epoch": 7.139799038881607,
+ "grad_norm": 0.42051541805267334,
+ "learning_rate": 0.0006,
+ "loss": 4.83833122253418,
+ "step": 514
+ },
+ {
+ "epoch": 7.153778942769769,
+ "grad_norm": 0.3930990397930145,
+ "learning_rate": 0.0006,
+ "loss": 4.853984355926514,
+ "step": 515
+ },
+ {
+ "epoch": 7.16775884665793,
+ "grad_norm": 0.512886106967926,
+ "learning_rate": 0.0006,
+ "loss": 4.815458297729492,
+ "step": 516
+ },
+ {
+ "epoch": 7.18173875054609,
+ "grad_norm": 0.42580172419548035,
+ "learning_rate": 0.0006,
+ "loss": 4.825312614440918,
+ "step": 517
+ },
+ {
+ "epoch": 7.195718654434251,
+ "grad_norm": 0.31628182530403137,
+ "learning_rate": 0.0006,
+ "loss": 4.806377410888672,
+ "step": 518
+ },
+ {
+ "epoch": 7.209698558322412,
+ "grad_norm": 0.3109956681728363,
+ "learning_rate": 0.0006,
+ "loss": 4.819339752197266,
+ "step": 519
+ },
+ {
+ "epoch": 7.2236784622105725,
+ "grad_norm": 0.2740071415901184,
+ "learning_rate": 0.0006,
+ "loss": 4.81319522857666,
+ "step": 520
+ },
+ {
+ "epoch": 7.237658366098733,
+ "grad_norm": 0.26441165804862976,
+ "learning_rate": 0.0006,
+ "loss": 4.8107380867004395,
+ "step": 521
+ },
+ {
+ "epoch": 7.251638269986894,
+ "grad_norm": 0.2496110051870346,
+ "learning_rate": 0.0006,
+ "loss": 4.785193920135498,
+ "step": 522
+ },
+ {
+ "epoch": 7.265618173875055,
+ "grad_norm": 0.2565560042858124,
+ "learning_rate": 0.0006,
+ "loss": 4.802750587463379,
+ "step": 523
+ },
+ {
+ "epoch": 7.279598077763215,
+ "grad_norm": 0.2126980572938919,
+ "learning_rate": 0.0006,
+ "loss": 4.763580322265625,
+ "step": 524
+ },
+ {
+ "epoch": 7.293577981651376,
+ "grad_norm": 0.2169921100139618,
+ "learning_rate": 0.0006,
+ "loss": 4.756124973297119,
+ "step": 525
+ },
+ {
+ "epoch": 7.307557885539537,
+ "grad_norm": 0.2372167706489563,
+ "learning_rate": 0.0006,
+ "loss": 4.786888599395752,
+ "step": 526
+ },
+ {
+ "epoch": 7.321537789427698,
+ "grad_norm": 0.2124386429786682,
+ "learning_rate": 0.0006,
+ "loss": 4.777996063232422,
+ "step": 527
+ },
+ {
+ "epoch": 7.335517693315858,
+ "grad_norm": 0.18585442006587982,
+ "learning_rate": 0.0006,
+ "loss": 4.770537853240967,
+ "step": 528
+ },
+ {
+ "epoch": 7.349497597204019,
+ "grad_norm": 0.20515340566635132,
+ "learning_rate": 0.0006,
+ "loss": 4.769230842590332,
+ "step": 529
+ },
+ {
+ "epoch": 7.36347750109218,
+ "grad_norm": 0.19906704127788544,
+ "learning_rate": 0.0006,
+ "loss": 4.752581596374512,
+ "step": 530
+ },
+ {
+ "epoch": 7.3774574049803405,
+ "grad_norm": 0.2030428946018219,
+ "learning_rate": 0.0006,
+ "loss": 4.7353715896606445,
+ "step": 531
+ },
+ {
+ "epoch": 7.391437308868501,
+ "grad_norm": 0.17820630967617035,
+ "learning_rate": 0.0006,
+ "loss": 4.742705345153809,
+ "step": 532
+ },
+ {
+ "epoch": 7.405417212756662,
+ "grad_norm": 0.17642682790756226,
+ "learning_rate": 0.0006,
+ "loss": 4.752669334411621,
+ "step": 533
+ },
+ {
+ "epoch": 7.419397116644823,
+ "grad_norm": 0.18088409304618835,
+ "learning_rate": 0.0006,
+ "loss": 4.734611511230469,
+ "step": 534
+ },
+ {
+ "epoch": 7.433377020532983,
+ "grad_norm": 0.20897020399570465,
+ "learning_rate": 0.0006,
+ "loss": 4.756442070007324,
+ "step": 535
+ },
+ {
+ "epoch": 7.447356924421145,
+ "grad_norm": 0.23166777193546295,
+ "learning_rate": 0.0006,
+ "loss": 4.712922096252441,
+ "step": 536
+ },
+ {
+ "epoch": 7.461336828309306,
+ "grad_norm": 0.2205347716808319,
+ "learning_rate": 0.0006,
+ "loss": 4.75001335144043,
+ "step": 537
+ },
+ {
+ "epoch": 7.4753167321974665,
+ "grad_norm": 0.23868022859096527,
+ "learning_rate": 0.0006,
+ "loss": 4.726134300231934,
+ "step": 538
+ },
+ {
+ "epoch": 7.489296636085627,
+ "grad_norm": 0.2861441373825073,
+ "learning_rate": 0.0006,
+ "loss": 4.754112243652344,
+ "step": 539
+ },
+ {
+ "epoch": 7.503276539973788,
+ "grad_norm": 0.28980305790901184,
+ "learning_rate": 0.0006,
+ "loss": 4.716021537780762,
+ "step": 540
+ },
+ {
+ "epoch": 7.517256443861949,
+ "grad_norm": 0.2784835696220398,
+ "learning_rate": 0.0006,
+ "loss": 4.713929176330566,
+ "step": 541
+ },
+ {
+ "epoch": 7.531236347750109,
+ "grad_norm": 0.2962653934955597,
+ "learning_rate": 0.0006,
+ "loss": 4.711845397949219,
+ "step": 542
+ },
+ {
+ "epoch": 7.54521625163827,
+ "grad_norm": 0.3333161175251007,
+ "learning_rate": 0.0006,
+ "loss": 4.709834575653076,
+ "step": 543
+ },
+ {
+ "epoch": 7.559196155526431,
+ "grad_norm": 0.35304850339889526,
+ "learning_rate": 0.0006,
+ "loss": 4.732914924621582,
+ "step": 544
+ },
+ {
+ "epoch": 7.573176059414592,
+ "grad_norm": 0.4165869355201721,
+ "learning_rate": 0.0006,
+ "loss": 4.716190338134766,
+ "step": 545
+ },
+ {
+ "epoch": 7.587155963302752,
+ "grad_norm": 0.4878059923648834,
+ "learning_rate": 0.0006,
+ "loss": 4.723773002624512,
+ "step": 546
+ },
+ {
+ "epoch": 7.601135867190913,
+ "grad_norm": 0.36643707752227783,
+ "learning_rate": 0.0006,
+ "loss": 4.721458911895752,
+ "step": 547
+ },
+ {
+ "epoch": 7.615115771079074,
+ "grad_norm": 0.4046908915042877,
+ "learning_rate": 0.0006,
+ "loss": 4.715397834777832,
+ "step": 548
+ },
+ {
+ "epoch": 7.6290956749672345,
+ "grad_norm": 0.44426342844963074,
+ "learning_rate": 0.0006,
+ "loss": 4.737357139587402,
+ "step": 549
+ },
+ {
+ "epoch": 7.643075578855395,
+ "grad_norm": 0.4181079864501953,
+ "learning_rate": 0.0006,
+ "loss": 4.731383800506592,
+ "step": 550
+ },
+ {
+ "epoch": 7.657055482743556,
+ "grad_norm": 0.3486088216304779,
+ "learning_rate": 0.0006,
+ "loss": 4.728029727935791,
+ "step": 551
+ },
+ {
+ "epoch": 7.671035386631717,
+ "grad_norm": 0.37150970101356506,
+ "learning_rate": 0.0006,
+ "loss": 4.7083210945129395,
+ "step": 552
+ },
+ {
+ "epoch": 7.685015290519877,
+ "grad_norm": 0.43324410915374756,
+ "learning_rate": 0.0006,
+ "loss": 4.728720664978027,
+ "step": 553
+ },
+ {
+ "epoch": 7.698995194408038,
+ "grad_norm": 0.5026620626449585,
+ "learning_rate": 0.0006,
+ "loss": 4.698156356811523,
+ "step": 554
+ },
+ {
+ "epoch": 7.712975098296199,
+ "grad_norm": 0.4873499274253845,
+ "learning_rate": 0.0006,
+ "loss": 4.7169952392578125,
+ "step": 555
+ },
+ {
+ "epoch": 7.72695500218436,
+ "grad_norm": 0.4285493791103363,
+ "learning_rate": 0.0006,
+ "loss": 4.6877241134643555,
+ "step": 556
+ },
+ {
+ "epoch": 7.740934906072521,
+ "grad_norm": 0.5179854035377502,
+ "learning_rate": 0.0006,
+ "loss": 4.704267501831055,
+ "step": 557
+ },
+ {
+ "epoch": 7.754914809960681,
+ "grad_norm": 0.4642147421836853,
+ "learning_rate": 0.0006,
+ "loss": 4.695004463195801,
+ "step": 558
+ },
+ {
+ "epoch": 7.768894713848843,
+ "grad_norm": 0.47149503231048584,
+ "learning_rate": 0.0006,
+ "loss": 4.694338798522949,
+ "step": 559
+ },
+ {
+ "epoch": 7.782874617737003,
+ "grad_norm": 0.5422149300575256,
+ "learning_rate": 0.0006,
+ "loss": 4.749478340148926,
+ "step": 560
+ },
+ {
+ "epoch": 7.796854521625164,
+ "grad_norm": 0.4360728859901428,
+ "learning_rate": 0.0006,
+ "loss": 4.685191631317139,
+ "step": 561
+ },
+ {
+ "epoch": 7.810834425513325,
+ "grad_norm": 0.4243801534175873,
+ "learning_rate": 0.0006,
+ "loss": 4.69228458404541,
+ "step": 562
+ },
+ {
+ "epoch": 7.824814329401486,
+ "grad_norm": 0.40380290150642395,
+ "learning_rate": 0.0006,
+ "loss": 4.690923690795898,
+ "step": 563
+ },
+ {
+ "epoch": 7.838794233289646,
+ "grad_norm": 0.4352976381778717,
+ "learning_rate": 0.0006,
+ "loss": 4.720489978790283,
+ "step": 564
+ },
+ {
+ "epoch": 7.852774137177807,
+ "grad_norm": 0.44634920358657837,
+ "learning_rate": 0.0006,
+ "loss": 4.683789253234863,
+ "step": 565
+ },
+ {
+ "epoch": 7.866754041065968,
+ "grad_norm": 0.3818186819553375,
+ "learning_rate": 0.0006,
+ "loss": 4.696887016296387,
+ "step": 566
+ },
+ {
+ "epoch": 7.8807339449541285,
+ "grad_norm": 0.35270464420318604,
+ "learning_rate": 0.0006,
+ "loss": 4.715676307678223,
+ "step": 567
+ },
+ {
+ "epoch": 7.894713848842289,
+ "grad_norm": 0.249756321310997,
+ "learning_rate": 0.0006,
+ "loss": 4.672721862792969,
+ "step": 568
+ },
+ {
+ "epoch": 7.90869375273045,
+ "grad_norm": 0.25097888708114624,
+ "learning_rate": 0.0006,
+ "loss": 4.663518905639648,
+ "step": 569
+ },
+ {
+ "epoch": 7.922673656618611,
+ "grad_norm": 0.26563209295272827,
+ "learning_rate": 0.0006,
+ "loss": 4.675405025482178,
+ "step": 570
+ },
+ {
+ "epoch": 7.936653560506771,
+ "grad_norm": 0.26451292634010315,
+ "learning_rate": 0.0006,
+ "loss": 4.651235103607178,
+ "step": 571
+ },
+ {
+ "epoch": 7.950633464394932,
+ "grad_norm": 0.24185842275619507,
+ "learning_rate": 0.0006,
+ "loss": 4.671639919281006,
+ "step": 572
+ },
+ {
+ "epoch": 7.964613368283093,
+ "grad_norm": 0.21506108343601227,
+ "learning_rate": 0.0006,
+ "loss": 4.665352821350098,
+ "step": 573
+ },
+ {
+ "epoch": 7.978593272171254,
+ "grad_norm": 0.24365705251693726,
+ "learning_rate": 0.0006,
+ "loss": 4.663162708282471,
+ "step": 574
+ },
+ {
+ "epoch": 7.992573176059414,
+ "grad_norm": 0.24251042306423187,
+ "learning_rate": 0.0006,
+ "loss": 4.666633605957031,
+ "step": 575
+ },
+ {
+ "epoch": 8.0,
+ "grad_norm": 0.24187657237052917,
+ "learning_rate": 0.0006,
+ "loss": 4.63957405090332,
+ "step": 576
+ },
+ {
+ "epoch": 8.0,
+ "eval_loss": 4.923156261444092,
+ "eval_runtime": 44.1587,
+ "eval_samples_per_second": 55.301,
+ "eval_steps_per_second": 3.465,
+ "step": 576
+ },
+ {
+ "epoch": 8.013979903888162,
+ "grad_norm": 0.21323645114898682,
+ "learning_rate": 0.0006,
+ "loss": 4.636347770690918,
+ "step": 577
+ },
+ {
+ "epoch": 8.027959807776321,
+ "grad_norm": 0.2325759083032608,
+ "learning_rate": 0.0006,
+ "loss": 4.60684871673584,
+ "step": 578
+ },
+ {
+ "epoch": 8.041939711664483,
+ "grad_norm": 0.26741257309913635,
+ "learning_rate": 0.0006,
+ "loss": 4.647780418395996,
+ "step": 579
+ },
+ {
+ "epoch": 8.055919615552643,
+ "grad_norm": 0.285720556974411,
+ "learning_rate": 0.0006,
+ "loss": 4.629637718200684,
+ "step": 580
+ },
+ {
+ "epoch": 8.069899519440805,
+ "grad_norm": 0.2453618347644806,
+ "learning_rate": 0.0006,
+ "loss": 4.62420654296875,
+ "step": 581
+ },
+ {
+ "epoch": 8.083879423328964,
+ "grad_norm": 0.19662636518478394,
+ "learning_rate": 0.0006,
+ "loss": 4.593767166137695,
+ "step": 582
+ },
+ {
+ "epoch": 8.097859327217126,
+ "grad_norm": 0.22731931507587433,
+ "learning_rate": 0.0006,
+ "loss": 4.627089023590088,
+ "step": 583
+ },
+ {
+ "epoch": 8.111839231105286,
+ "grad_norm": 0.24452590942382812,
+ "learning_rate": 0.0006,
+ "loss": 4.613677024841309,
+ "step": 584
+ },
+ {
+ "epoch": 8.125819134993447,
+ "grad_norm": 0.2952791154384613,
+ "learning_rate": 0.0006,
+ "loss": 4.604985237121582,
+ "step": 585
+ },
+ {
+ "epoch": 8.139799038881607,
+ "grad_norm": 0.3184696137905121,
+ "learning_rate": 0.0006,
+ "loss": 4.589205741882324,
+ "step": 586
+ },
+ {
+ "epoch": 8.153778942769769,
+ "grad_norm": 0.2948093116283417,
+ "learning_rate": 0.0006,
+ "loss": 4.605442047119141,
+ "step": 587
+ },
+ {
+ "epoch": 8.167758846657929,
+ "grad_norm": 0.2450508326292038,
+ "learning_rate": 0.0006,
+ "loss": 4.615349292755127,
+ "step": 588
+ },
+ {
+ "epoch": 8.18173875054609,
+ "grad_norm": 0.25664836168289185,
+ "learning_rate": 0.0006,
+ "loss": 4.592251777648926,
+ "step": 589
+ },
+ {
+ "epoch": 8.19571865443425,
+ "grad_norm": 0.24479512870311737,
+ "learning_rate": 0.0006,
+ "loss": 4.6145920753479,
+ "step": 590
+ },
+ {
+ "epoch": 8.209698558322412,
+ "grad_norm": 0.24395205080509186,
+ "learning_rate": 0.0006,
+ "loss": 4.600954055786133,
+ "step": 591
+ },
+ {
+ "epoch": 8.223678462210572,
+ "grad_norm": 0.21804189682006836,
+ "learning_rate": 0.0006,
+ "loss": 4.607785224914551,
+ "step": 592
+ },
+ {
+ "epoch": 8.237658366098733,
+ "grad_norm": 0.20951785147190094,
+ "learning_rate": 0.0006,
+ "loss": 4.58140754699707,
+ "step": 593
+ },
+ {
+ "epoch": 8.251638269986893,
+ "grad_norm": 0.20415149629116058,
+ "learning_rate": 0.0006,
+ "loss": 4.593405723571777,
+ "step": 594
+ },
+ {
+ "epoch": 8.265618173875055,
+ "grad_norm": 0.19210249185562134,
+ "learning_rate": 0.0006,
+ "loss": 4.603294372558594,
+ "step": 595
+ },
+ {
+ "epoch": 8.279598077763215,
+ "grad_norm": 0.20719751715660095,
+ "learning_rate": 0.0006,
+ "loss": 4.55255651473999,
+ "step": 596
+ },
+ {
+ "epoch": 8.293577981651376,
+ "grad_norm": 0.20101022720336914,
+ "learning_rate": 0.0006,
+ "loss": 4.5928192138671875,
+ "step": 597
+ },
+ {
+ "epoch": 8.307557885539538,
+ "grad_norm": 0.19254222512245178,
+ "learning_rate": 0.0006,
+ "loss": 4.590397834777832,
+ "step": 598
+ },
+ {
+ "epoch": 8.321537789427698,
+ "grad_norm": 0.23234105110168457,
+ "learning_rate": 0.0006,
+ "loss": 4.5987677574157715,
+ "step": 599
+ },
+ {
+ "epoch": 8.33551769331586,
+ "grad_norm": 0.2537451982498169,
+ "learning_rate": 0.0006,
+ "loss": 4.543115615844727,
+ "step": 600
+ },
+ {
+ "epoch": 8.349497597204019,
+ "grad_norm": 0.29171040654182434,
+ "learning_rate": 0.0006,
+ "loss": 4.597387313842773,
+ "step": 601
+ },
+ {
+ "epoch": 8.36347750109218,
+ "grad_norm": 0.3035930097103119,
+ "learning_rate": 0.0006,
+ "loss": 4.566247463226318,
+ "step": 602
+ },
+ {
+ "epoch": 8.37745740498034,
+ "grad_norm": 0.2826756238937378,
+ "learning_rate": 0.0006,
+ "loss": 4.57047176361084,
+ "step": 603
+ },
+ {
+ "epoch": 8.391437308868502,
+ "grad_norm": 0.2959657609462738,
+ "learning_rate": 0.0006,
+ "loss": 4.582820892333984,
+ "step": 604
+ },
+ {
+ "epoch": 8.405417212756662,
+ "grad_norm": 0.3180356025695801,
+ "learning_rate": 0.0006,
+ "loss": 4.5573272705078125,
+ "step": 605
+ },
+ {
+ "epoch": 8.419397116644824,
+ "grad_norm": 0.3617221713066101,
+ "learning_rate": 0.0006,
+ "loss": 4.593079090118408,
+ "step": 606
+ },
+ {
+ "epoch": 8.433377020532983,
+ "grad_norm": 0.35198062658309937,
+ "learning_rate": 0.0006,
+ "loss": 4.615298271179199,
+ "step": 607
+ },
+ {
+ "epoch": 8.447356924421145,
+ "grad_norm": 0.3944903314113617,
+ "learning_rate": 0.0006,
+ "loss": 4.561809539794922,
+ "step": 608
+ },
+ {
+ "epoch": 8.461336828309305,
+ "grad_norm": 0.4525868594646454,
+ "learning_rate": 0.0006,
+ "loss": 4.613105773925781,
+ "step": 609
+ },
+ {
+ "epoch": 8.475316732197467,
+ "grad_norm": 0.4915139079093933,
+ "learning_rate": 0.0006,
+ "loss": 4.566202163696289,
+ "step": 610
+ },
+ {
+ "epoch": 8.489296636085626,
+ "grad_norm": 0.49231988191604614,
+ "learning_rate": 0.0006,
+ "loss": 4.556222915649414,
+ "step": 611
+ },
+ {
+ "epoch": 8.503276539973788,
+ "grad_norm": 0.43036946654319763,
+ "learning_rate": 0.0006,
+ "loss": 4.55517578125,
+ "step": 612
+ },
+ {
+ "epoch": 8.517256443861948,
+ "grad_norm": 0.42405328154563904,
+ "learning_rate": 0.0006,
+ "loss": 4.574039936065674,
+ "step": 613
+ },
+ {
+ "epoch": 8.53123634775011,
+ "grad_norm": 0.3955961763858795,
+ "learning_rate": 0.0006,
+ "loss": 4.6082611083984375,
+ "step": 614
+ },
+ {
+ "epoch": 8.54521625163827,
+ "grad_norm": 0.4377101957798004,
+ "learning_rate": 0.0006,
+ "loss": 4.555740833282471,
+ "step": 615
+ },
+ {
+ "epoch": 8.55919615552643,
+ "grad_norm": 0.4601984918117523,
+ "learning_rate": 0.0006,
+ "loss": 4.553995132446289,
+ "step": 616
+ },
+ {
+ "epoch": 8.57317605941459,
+ "grad_norm": 0.42025700211524963,
+ "learning_rate": 0.0006,
+ "loss": 4.567340850830078,
+ "step": 617
+ },
+ {
+ "epoch": 8.587155963302752,
+ "grad_norm": 0.35569432377815247,
+ "learning_rate": 0.0006,
+ "loss": 4.570140361785889,
+ "step": 618
+ },
+ {
+ "epoch": 8.601135867190912,
+ "grad_norm": 0.37940406799316406,
+ "learning_rate": 0.0006,
+ "loss": 4.581291198730469,
+ "step": 619
+ },
+ {
+ "epoch": 8.615115771079074,
+ "grad_norm": 0.3658490777015686,
+ "learning_rate": 0.0006,
+ "loss": 4.55476188659668,
+ "step": 620
+ },
+ {
+ "epoch": 8.629095674967235,
+ "grad_norm": 0.2908247113227844,
+ "learning_rate": 0.0006,
+ "loss": 4.564087867736816,
+ "step": 621
+ },
+ {
+ "epoch": 8.643075578855395,
+ "grad_norm": 0.29961925745010376,
+ "learning_rate": 0.0006,
+ "loss": 4.556543350219727,
+ "step": 622
+ },
+ {
+ "epoch": 8.657055482743557,
+ "grad_norm": 0.3144846558570862,
+ "learning_rate": 0.0006,
+ "loss": 4.553670883178711,
+ "step": 623
+ },
+ {
+ "epoch": 8.671035386631717,
+ "grad_norm": 0.2845900356769562,
+ "learning_rate": 0.0006,
+ "loss": 4.567296981811523,
+ "step": 624
+ },
+ {
+ "epoch": 8.685015290519878,
+ "grad_norm": 0.253591388463974,
+ "learning_rate": 0.0006,
+ "loss": 4.554507255554199,
+ "step": 625
+ },
+ {
+ "epoch": 8.698995194408038,
+ "grad_norm": 0.2563088536262512,
+ "learning_rate": 0.0006,
+ "loss": 4.542218208312988,
+ "step": 626
+ },
+ {
+ "epoch": 8.7129750982962,
+ "grad_norm": 0.26058217883110046,
+ "learning_rate": 0.0006,
+ "loss": 4.535512447357178,
+ "step": 627
+ },
+ {
+ "epoch": 8.72695500218436,
+ "grad_norm": 0.20749829709529877,
+ "learning_rate": 0.0006,
+ "loss": 4.516959190368652,
+ "step": 628
+ },
+ {
+ "epoch": 8.740934906072521,
+ "grad_norm": 0.2034810334444046,
+ "learning_rate": 0.0006,
+ "loss": 4.55794095993042,
+ "step": 629
+ },
+ {
+ "epoch": 8.754914809960681,
+ "grad_norm": 0.18418121337890625,
+ "learning_rate": 0.0006,
+ "loss": 4.5421247482299805,
+ "step": 630
+ },
+ {
+ "epoch": 8.768894713848843,
+ "grad_norm": 0.20551933348178864,
+ "learning_rate": 0.0006,
+ "loss": 4.50805139541626,
+ "step": 631
+ },
+ {
+ "epoch": 8.782874617737003,
+ "grad_norm": 0.21615999937057495,
+ "learning_rate": 0.0006,
+ "loss": 4.520708084106445,
+ "step": 632
+ },
+ {
+ "epoch": 8.796854521625164,
+ "grad_norm": 0.24864810705184937,
+ "learning_rate": 0.0006,
+ "loss": 4.509330749511719,
+ "step": 633
+ },
+ {
+ "epoch": 8.810834425513324,
+ "grad_norm": 0.2573665380477905,
+ "learning_rate": 0.0006,
+ "loss": 4.531505584716797,
+ "step": 634
+ },
+ {
+ "epoch": 8.824814329401486,
+ "grad_norm": 0.22452878952026367,
+ "learning_rate": 0.0006,
+ "loss": 4.529216289520264,
+ "step": 635
+ },
+ {
+ "epoch": 8.838794233289645,
+ "grad_norm": 0.19727355241775513,
+ "learning_rate": 0.0006,
+ "loss": 4.519906520843506,
+ "step": 636
+ },
+ {
+ "epoch": 8.852774137177807,
+ "grad_norm": 0.19937913119792938,
+ "learning_rate": 0.0006,
+ "loss": 4.536892414093018,
+ "step": 637
+ },
+ {
+ "epoch": 8.866754041065967,
+ "grad_norm": 0.2070389986038208,
+ "learning_rate": 0.0006,
+ "loss": 4.51191520690918,
+ "step": 638
+ },
+ {
+ "epoch": 8.880733944954128,
+ "grad_norm": 0.2293873429298401,
+ "learning_rate": 0.0006,
+ "loss": 4.505377769470215,
+ "step": 639
+ },
+ {
+ "epoch": 8.89471384884229,
+ "grad_norm": 0.21285250782966614,
+ "learning_rate": 0.0006,
+ "loss": 4.5138959884643555,
+ "step": 640
+ },
+ {
+ "epoch": 8.90869375273045,
+ "grad_norm": 0.19487562775611877,
+ "learning_rate": 0.0006,
+ "loss": 4.506108283996582,
+ "step": 641
+ },
+ {
+ "epoch": 8.922673656618612,
+ "grad_norm": 0.21986965835094452,
+ "learning_rate": 0.0006,
+ "loss": 4.506397247314453,
+ "step": 642
+ },
+ {
+ "epoch": 8.936653560506771,
+ "grad_norm": 0.20763885974884033,
+ "learning_rate": 0.0006,
+ "loss": 4.508007049560547,
+ "step": 643
+ },
+ {
+ "epoch": 8.950633464394933,
+ "grad_norm": 0.22858479619026184,
+ "learning_rate": 0.0006,
+ "loss": 4.520846366882324,
+ "step": 644
+ },
+ {
+ "epoch": 8.964613368283093,
+ "grad_norm": 0.23923712968826294,
+ "learning_rate": 0.0006,
+ "loss": 4.535306930541992,
+ "step": 645
+ },
+ {
+ "epoch": 8.978593272171254,
+ "grad_norm": 0.23717579245567322,
+ "learning_rate": 0.0006,
+ "loss": 4.485929489135742,
+ "step": 646
+ },
+ {
+ "epoch": 8.992573176059414,
+ "grad_norm": 0.24033977091312408,
+ "learning_rate": 0.0006,
+ "loss": 4.508999824523926,
+ "step": 647
+ },
+ {
+ "epoch": 9.0,
+ "grad_norm": 0.22432062029838562,
+ "learning_rate": 0.0006,
+ "loss": 4.473136901855469,
+ "step": 648
+ },
+ {
+ "epoch": 9.0,
+ "eval_loss": 4.735903263092041,
+ "eval_runtime": 44.2163,
+ "eval_samples_per_second": 55.228,
+ "eval_steps_per_second": 3.46,
+ "step": 648
+ },
+ {
+ "epoch": 9.013979903888162,
+ "grad_norm": 0.22491489350795746,
+ "learning_rate": 0.0006,
+ "loss": 4.468614101409912,
+ "step": 649
+ },
+ {
+ "epoch": 9.027959807776321,
+ "grad_norm": 0.255759060382843,
+ "learning_rate": 0.0006,
+ "loss": 4.516196250915527,
+ "step": 650
+ },
+ {
+ "epoch": 9.041939711664483,
+ "grad_norm": 0.2591100335121155,
+ "learning_rate": 0.0006,
+ "loss": 4.478276252746582,
+ "step": 651
+ },
+ {
+ "epoch": 9.055919615552643,
+ "grad_norm": 0.30472296476364136,
+ "learning_rate": 0.0006,
+ "loss": 4.479726791381836,
+ "step": 652
+ },
+ {
+ "epoch": 9.069899519440805,
+ "grad_norm": 0.2840559780597687,
+ "learning_rate": 0.0006,
+ "loss": 4.4437384605407715,
+ "step": 653
+ },
+ {
+ "epoch": 9.083879423328964,
+ "grad_norm": 0.2695577144622803,
+ "learning_rate": 0.0006,
+ "loss": 4.476065635681152,
+ "step": 654
+ },
+ {
+ "epoch": 9.097859327217126,
+ "grad_norm": 0.27912381291389465,
+ "learning_rate": 0.0006,
+ "loss": 4.484747409820557,
+ "step": 655
+ },
+ {
+ "epoch": 9.111839231105286,
+ "grad_norm": 0.3091907501220703,
+ "learning_rate": 0.0006,
+ "loss": 4.449443817138672,
+ "step": 656
+ },
+ {
+ "epoch": 9.125819134993447,
+ "grad_norm": 0.30756646394729614,
+ "learning_rate": 0.0006,
+ "loss": 4.496490001678467,
+ "step": 657
+ },
+ {
+ "epoch": 9.139799038881607,
+ "grad_norm": 0.305698037147522,
+ "learning_rate": 0.0006,
+ "loss": 4.466765880584717,
+ "step": 658
+ },
+ {
+ "epoch": 9.153778942769769,
+ "grad_norm": 0.3031201660633087,
+ "learning_rate": 0.0006,
+ "loss": 4.462430953979492,
+ "step": 659
+ },
+ {
+ "epoch": 9.167758846657929,
+ "grad_norm": 0.32725608348846436,
+ "learning_rate": 0.0006,
+ "loss": 4.479879379272461,
+ "step": 660
+ },
+ {
+ "epoch": 9.18173875054609,
+ "grad_norm": 0.31773585081100464,
+ "learning_rate": 0.0006,
+ "loss": 4.473912239074707,
+ "step": 661
+ },
+ {
+ "epoch": 9.19571865443425,
+ "grad_norm": 0.30025365948677063,
+ "learning_rate": 0.0006,
+ "loss": 4.476703643798828,
+ "step": 662
+ },
+ {
+ "epoch": 9.209698558322412,
+ "grad_norm": 0.3177371025085449,
+ "learning_rate": 0.0006,
+ "loss": 4.439765930175781,
+ "step": 663
+ },
+ {
+ "epoch": 9.223678462210572,
+ "grad_norm": 0.3060745894908905,
+ "learning_rate": 0.0006,
+ "loss": 4.487849235534668,
+ "step": 664
+ },
+ {
+ "epoch": 9.237658366098733,
+ "grad_norm": 0.33287373185157776,
+ "learning_rate": 0.0006,
+ "loss": 4.443496227264404,
+ "step": 665
+ },
+ {
+ "epoch": 9.251638269986893,
+ "grad_norm": 0.3758000433444977,
+ "learning_rate": 0.0006,
+ "loss": 4.478017330169678,
+ "step": 666
+ },
+ {
+ "epoch": 9.265618173875055,
+ "grad_norm": 0.32124510407447815,
+ "learning_rate": 0.0006,
+ "loss": 4.4092206954956055,
+ "step": 667
+ },
+ {
+ "epoch": 9.279598077763215,
+ "grad_norm": 0.2786794602870941,
+ "learning_rate": 0.0006,
+ "loss": 4.432734489440918,
+ "step": 668
+ },
+ {
+ "epoch": 9.293577981651376,
+ "grad_norm": 0.35042962431907654,
+ "learning_rate": 0.0006,
+ "loss": 4.462737083435059,
+ "step": 669
+ },
+ {
+ "epoch": 9.307557885539538,
+ "grad_norm": 0.4080469310283661,
+ "learning_rate": 0.0006,
+ "loss": 4.429462432861328,
+ "step": 670
+ },
+ {
+ "epoch": 9.321537789427698,
+ "grad_norm": 0.465158075094223,
+ "learning_rate": 0.0006,
+ "loss": 4.465776443481445,
+ "step": 671
+ },
+ {
+ "epoch": 9.33551769331586,
+ "grad_norm": 0.44833582639694214,
+ "learning_rate": 0.0006,
+ "loss": 4.454195976257324,
+ "step": 672
+ },
+ {
+ "epoch": 9.349497597204019,
+ "grad_norm": 0.451052188873291,
+ "learning_rate": 0.0006,
+ "loss": 4.456139087677002,
+ "step": 673
+ },
+ {
+ "epoch": 9.36347750109218,
+ "grad_norm": 0.3759656250476837,
+ "learning_rate": 0.0006,
+ "loss": 4.461119651794434,
+ "step": 674
+ },
+ {
+ "epoch": 9.37745740498034,
+ "grad_norm": 0.514560341835022,
+ "learning_rate": 0.0006,
+ "loss": 4.49595832824707,
+ "step": 675
+ },
+ {
+ "epoch": 9.391437308868502,
+ "grad_norm": 0.5650647282600403,
+ "learning_rate": 0.0006,
+ "loss": 4.461362838745117,
+ "step": 676
+ },
+ {
+ "epoch": 9.405417212756662,
+ "grad_norm": 0.4218835234642029,
+ "learning_rate": 0.0006,
+ "loss": 4.469146728515625,
+ "step": 677
+ },
+ {
+ "epoch": 9.419397116644824,
+ "grad_norm": 0.4169512689113617,
+ "learning_rate": 0.0006,
+ "loss": 4.470132827758789,
+ "step": 678
+ },
+ {
+ "epoch": 9.433377020532983,
+ "grad_norm": 0.3772219717502594,
+ "learning_rate": 0.0006,
+ "loss": 4.4742608070373535,
+ "step": 679
+ },
+ {
+ "epoch": 9.447356924421145,
+ "grad_norm": 0.35755908489227295,
+ "learning_rate": 0.0006,
+ "loss": 4.461928367614746,
+ "step": 680
+ },
+ {
+ "epoch": 9.461336828309305,
+ "grad_norm": 0.3141227662563324,
+ "learning_rate": 0.0006,
+ "loss": 4.491983413696289,
+ "step": 681
+ },
+ {
+ "epoch": 9.475316732197467,
+ "grad_norm": 0.282461017370224,
+ "learning_rate": 0.0006,
+ "loss": 4.460200309753418,
+ "step": 682
+ },
+ {
+ "epoch": 9.489296636085626,
+ "grad_norm": 0.27174389362335205,
+ "learning_rate": 0.0006,
+ "loss": 4.416125297546387,
+ "step": 683
+ },
+ {
+ "epoch": 9.503276539973788,
+ "grad_norm": 0.24570637941360474,
+ "learning_rate": 0.0006,
+ "loss": 4.4451093673706055,
+ "step": 684
+ },
+ {
+ "epoch": 9.517256443861948,
+ "grad_norm": 0.2741486132144928,
+ "learning_rate": 0.0006,
+ "loss": 4.453263282775879,
+ "step": 685
+ },
+ {
+ "epoch": 9.53123634775011,
+ "grad_norm": 0.24753718078136444,
+ "learning_rate": 0.0006,
+ "loss": 4.483033180236816,
+ "step": 686
+ },
+ {
+ "epoch": 9.54521625163827,
+ "grad_norm": 0.24288412928581238,
+ "learning_rate": 0.0006,
+ "loss": 4.452961444854736,
+ "step": 687
+ },
+ {
+ "epoch": 9.55919615552643,
+ "grad_norm": 0.21554753184318542,
+ "learning_rate": 0.0006,
+ "loss": 4.476005554199219,
+ "step": 688
+ },
+ {
+ "epoch": 9.57317605941459,
+ "grad_norm": 0.22775942087173462,
+ "learning_rate": 0.0006,
+ "loss": 4.4479193687438965,
+ "step": 689
+ },
+ {
+ "epoch": 9.587155963302752,
+ "grad_norm": 0.2610701024532318,
+ "learning_rate": 0.0006,
+ "loss": 4.474987506866455,
+ "step": 690
+ },
+ {
+ "epoch": 9.601135867190912,
+ "grad_norm": 0.2394690215587616,
+ "learning_rate": 0.0006,
+ "loss": 4.444857597351074,
+ "step": 691
+ },
+ {
+ "epoch": 9.615115771079074,
+ "grad_norm": 0.20868559181690216,
+ "learning_rate": 0.0006,
+ "loss": 4.4220709800720215,
+ "step": 692
+ },
+ {
+ "epoch": 9.629095674967235,
+ "grad_norm": 0.21869882941246033,
+ "learning_rate": 0.0006,
+ "loss": 4.451737403869629,
+ "step": 693
+ },
+ {
+ "epoch": 9.643075578855395,
+ "grad_norm": 0.1802823394536972,
+ "learning_rate": 0.0006,
+ "loss": 4.409085273742676,
+ "step": 694
+ },
+ {
+ "epoch": 9.657055482743557,
+ "grad_norm": 0.17046281695365906,
+ "learning_rate": 0.0006,
+ "loss": 4.424643516540527,
+ "step": 695
+ },
+ {
+ "epoch": 9.671035386631717,
+ "grad_norm": 0.19561922550201416,
+ "learning_rate": 0.0006,
+ "loss": 4.412302017211914,
+ "step": 696
+ },
+ {
+ "epoch": 9.685015290519878,
+ "grad_norm": 0.21928799152374268,
+ "learning_rate": 0.0006,
+ "loss": 4.427582263946533,
+ "step": 697
+ },
+ {
+ "epoch": 9.698995194408038,
+ "grad_norm": 0.244873046875,
+ "learning_rate": 0.0006,
+ "loss": 4.431827545166016,
+ "step": 698
+ },
+ {
+ "epoch": 9.7129750982962,
+ "grad_norm": 0.2799488604068756,
+ "learning_rate": 0.0006,
+ "loss": 4.407991409301758,
+ "step": 699
+ },
+ {
+ "epoch": 9.72695500218436,
+ "grad_norm": 0.2699538767337799,
+ "learning_rate": 0.0006,
+ "loss": 4.412313461303711,
+ "step": 700
+ },
+ {
+ "epoch": 9.740934906072521,
+ "grad_norm": 0.22293835878372192,
+ "learning_rate": 0.0006,
+ "loss": 4.423369884490967,
+ "step": 701
+ },
+ {
+ "epoch": 9.754914809960681,
+ "grad_norm": 0.21554361283779144,
+ "learning_rate": 0.0006,
+ "loss": 4.42026948928833,
+ "step": 702
+ },
+ {
+ "epoch": 9.768894713848843,
+ "grad_norm": 0.22135840356349945,
+ "learning_rate": 0.0006,
+ "loss": 4.400010108947754,
+ "step": 703
+ },
+ {
+ "epoch": 9.782874617737003,
+ "grad_norm": 0.2169952541589737,
+ "learning_rate": 0.0006,
+ "loss": 4.394582271575928,
+ "step": 704
+ },
+ {
+ "epoch": 9.796854521625164,
+ "grad_norm": 0.18913042545318604,
+ "learning_rate": 0.0006,
+ "loss": 4.395880699157715,
+ "step": 705
+ },
+ {
+ "epoch": 9.810834425513324,
+ "grad_norm": 0.191524475812912,
+ "learning_rate": 0.0006,
+ "loss": 4.378962516784668,
+ "step": 706
+ },
+ {
+ "epoch": 9.824814329401486,
+ "grad_norm": 0.20057640969753265,
+ "learning_rate": 0.0006,
+ "loss": 4.431066513061523,
+ "step": 707
+ },
+ {
+ "epoch": 9.838794233289645,
+ "grad_norm": 0.21670377254486084,
+ "learning_rate": 0.0006,
+ "loss": 4.364682197570801,
+ "step": 708
+ },
+ {
+ "epoch": 9.852774137177807,
+ "grad_norm": 0.21653099358081818,
+ "learning_rate": 0.0006,
+ "loss": 4.4050445556640625,
+ "step": 709
+ },
+ {
+ "epoch": 9.866754041065967,
+ "grad_norm": 0.2217673808336258,
+ "learning_rate": 0.0006,
+ "loss": 4.423664093017578,
+ "step": 710
+ },
+ {
+ "epoch": 9.880733944954128,
+ "grad_norm": 0.251078337430954,
+ "learning_rate": 0.0006,
+ "loss": 4.405768394470215,
+ "step": 711
+ },
+ {
+ "epoch": 9.89471384884229,
+ "grad_norm": 0.28962627053260803,
+ "learning_rate": 0.0006,
+ "loss": 4.421207427978516,
+ "step": 712
+ },
+ {
+ "epoch": 9.90869375273045,
+ "grad_norm": 0.3478074371814728,
+ "learning_rate": 0.0006,
+ "loss": 4.414942741394043,
+ "step": 713
+ },
+ {
+ "epoch": 9.922673656618612,
+ "grad_norm": 0.40396368503570557,
+ "learning_rate": 0.0006,
+ "loss": 4.415163993835449,
+ "step": 714
+ },
+ {
+ "epoch": 9.936653560506771,
+ "grad_norm": 0.3689858019351959,
+ "learning_rate": 0.0006,
+ "loss": 4.381345272064209,
+ "step": 715
+ },
+ {
+ "epoch": 9.950633464394933,
+ "grad_norm": 0.344868004322052,
+ "learning_rate": 0.0006,
+ "loss": 4.433088302612305,
+ "step": 716
+ },
+ {
+ "epoch": 9.964613368283093,
+ "grad_norm": 0.37976378202438354,
+ "learning_rate": 0.0006,
+ "loss": 4.431371212005615,
+ "step": 717
+ },
+ {
+ "epoch": 9.978593272171254,
+ "grad_norm": 0.4354130029678345,
+ "learning_rate": 0.0006,
+ "loss": 4.434148788452148,
+ "step": 718
+ },
+ {
+ "epoch": 9.992573176059414,
+ "grad_norm": 0.35859373211860657,
+ "learning_rate": 0.0006,
+ "loss": 4.428055763244629,
+ "step": 719
+ },
+ {
+ "epoch": 10.0,
+ "grad_norm": 0.3365023732185364,
+ "learning_rate": 0.0006,
+ "loss": 4.3888654708862305,
+ "step": 720
+ },
+ {
+ "epoch": 10.0,
+ "eval_loss": 4.638620853424072,
+ "eval_runtime": 44.3054,
+ "eval_samples_per_second": 55.117,
+ "eval_steps_per_second": 3.453,
+ "step": 720
+ },
+ {
+ "epoch": 10.013979903888162,
+ "grad_norm": 0.3267960250377655,
+ "learning_rate": 0.0006,
+ "loss": 4.386068344116211,
+ "step": 721
+ },
+ {
+ "epoch": 10.027959807776321,
+ "grad_norm": 0.33440953493118286,
+ "learning_rate": 0.0006,
+ "loss": 4.397515296936035,
+ "step": 722
+ },
+ {
+ "epoch": 10.041939711664483,
+ "grad_norm": 0.30047518014907837,
+ "learning_rate": 0.0006,
+ "loss": 4.398358345031738,
+ "step": 723
+ },
+ {
+ "epoch": 10.055919615552643,
+ "grad_norm": 0.2912217378616333,
+ "learning_rate": 0.0006,
+ "loss": 4.341166973114014,
+ "step": 724
+ },
+ {
+ "epoch": 10.069899519440805,
+ "grad_norm": 0.3199564218521118,
+ "learning_rate": 0.0006,
+ "loss": 4.388717174530029,
+ "step": 725
+ },
+ {
+ "epoch": 10.083879423328964,
+ "grad_norm": 0.2765582799911499,
+ "learning_rate": 0.0006,
+ "loss": 4.392992973327637,
+ "step": 726
+ },
+ {
+ "epoch": 10.097859327217126,
+ "grad_norm": 0.27138450741767883,
+ "learning_rate": 0.0006,
+ "loss": 4.382307529449463,
+ "step": 727
+ },
+ {
+ "epoch": 10.111839231105286,
+ "grad_norm": 0.29230645298957825,
+ "learning_rate": 0.0006,
+ "loss": 4.357486724853516,
+ "step": 728
+ },
+ {
+ "epoch": 10.125819134993447,
+ "grad_norm": 0.3127598464488983,
+ "learning_rate": 0.0006,
+ "loss": 4.39072322845459,
+ "step": 729
+ },
+ {
+ "epoch": 10.139799038881607,
+ "grad_norm": 0.3230913281440735,
+ "learning_rate": 0.0006,
+ "loss": 4.35037899017334,
+ "step": 730
+ },
+ {
+ "epoch": 10.153778942769769,
+ "grad_norm": 0.333675354719162,
+ "learning_rate": 0.0006,
+ "loss": 4.378030776977539,
+ "step": 731
+ },
+ {
+ "epoch": 10.167758846657929,
+ "grad_norm": 0.30325770378112793,
+ "learning_rate": 0.0006,
+ "loss": 4.372736930847168,
+ "step": 732
+ },
+ {
+ "epoch": 10.18173875054609,
+ "grad_norm": 0.2888163924217224,
+ "learning_rate": 0.0006,
+ "loss": 4.397604942321777,
+ "step": 733
+ },
+ {
+ "epoch": 10.19571865443425,
+ "grad_norm": 0.3378832936286926,
+ "learning_rate": 0.0006,
+ "loss": 4.395705223083496,
+ "step": 734
+ },
+ {
+ "epoch": 10.209698558322412,
+ "grad_norm": 0.30980268120765686,
+ "learning_rate": 0.0006,
+ "loss": 4.3861212730407715,
+ "step": 735
+ },
+ {
+ "epoch": 10.223678462210572,
+ "grad_norm": 0.2965783178806305,
+ "learning_rate": 0.0006,
+ "loss": 4.394898414611816,
+ "step": 736
+ },
+ {
+ "epoch": 10.237658366098733,
+ "grad_norm": 0.2818217873573303,
+ "learning_rate": 0.0006,
+ "loss": 4.36171817779541,
+ "step": 737
+ },
+ {
+ "epoch": 10.251638269986893,
+ "grad_norm": 0.2418123185634613,
+ "learning_rate": 0.0006,
+ "loss": 4.370945930480957,
+ "step": 738
+ },
+ {
+ "epoch": 10.265618173875055,
+ "grad_norm": 0.22372810542583466,
+ "learning_rate": 0.0006,
+ "loss": 4.354825973510742,
+ "step": 739
+ },
+ {
+ "epoch": 10.279598077763215,
+ "grad_norm": 0.238066166639328,
+ "learning_rate": 0.0006,
+ "loss": 4.376237392425537,
+ "step": 740
+ },
+ {
+ "epoch": 10.293577981651376,
+ "grad_norm": 0.22352449595928192,
+ "learning_rate": 0.0006,
+ "loss": 4.317084312438965,
+ "step": 741
+ },
+ {
+ "epoch": 10.307557885539538,
+ "grad_norm": 0.21685205399990082,
+ "learning_rate": 0.0006,
+ "loss": 4.335271835327148,
+ "step": 742
+ },
+ {
+ "epoch": 10.321537789427698,
+ "grad_norm": 0.19584694504737854,
+ "learning_rate": 0.0006,
+ "loss": 4.357963562011719,
+ "step": 743
+ },
+ {
+ "epoch": 10.33551769331586,
+ "grad_norm": 0.20373336970806122,
+ "learning_rate": 0.0006,
+ "loss": 4.401963233947754,
+ "step": 744
+ },
+ {
+ "epoch": 10.349497597204019,
+ "grad_norm": 0.2247837632894516,
+ "learning_rate": 0.0006,
+ "loss": 4.357202529907227,
+ "step": 745
+ },
+ {
+ "epoch": 10.36347750109218,
+ "grad_norm": 0.2416863739490509,
+ "learning_rate": 0.0006,
+ "loss": 4.364739418029785,
+ "step": 746
+ },
+ {
+ "epoch": 10.37745740498034,
+ "grad_norm": 0.22281162440776825,
+ "learning_rate": 0.0006,
+ "loss": 4.351607799530029,
+ "step": 747
+ },
+ {
+ "epoch": 10.391437308868502,
+ "grad_norm": 0.20751096308231354,
+ "learning_rate": 0.0006,
+ "loss": 4.370017051696777,
+ "step": 748
+ },
+ {
+ "epoch": 10.405417212756662,
+ "grad_norm": 0.19178363680839539,
+ "learning_rate": 0.0006,
+ "loss": 4.360328674316406,
+ "step": 749
+ },
+ {
+ "epoch": 10.419397116644824,
+ "grad_norm": 0.20534078776836395,
+ "learning_rate": 0.0006,
+ "loss": 4.3735432624816895,
+ "step": 750
+ },
+ {
+ "epoch": 10.433377020532983,
+ "grad_norm": 0.20533937215805054,
+ "learning_rate": 0.0006,
+ "loss": 4.326902389526367,
+ "step": 751
+ },
+ {
+ "epoch": 10.447356924421145,
+ "grad_norm": 0.22057875990867615,
+ "learning_rate": 0.0006,
+ "loss": 4.360934257507324,
+ "step": 752
+ },
+ {
+ "epoch": 10.461336828309305,
+ "grad_norm": 0.25568997859954834,
+ "learning_rate": 0.0006,
+ "loss": 4.345063209533691,
+ "step": 753
+ },
+ {
+ "epoch": 10.475316732197467,
+ "grad_norm": 0.31471487879753113,
+ "learning_rate": 0.0006,
+ "loss": 4.324014186859131,
+ "step": 754
+ },
+ {
+ "epoch": 10.489296636085626,
+ "grad_norm": 0.2716822624206543,
+ "learning_rate": 0.0006,
+ "loss": 4.318459510803223,
+ "step": 755
+ },
+ {
+ "epoch": 10.503276539973788,
+ "grad_norm": 0.19552019238471985,
+ "learning_rate": 0.0006,
+ "loss": 4.3367509841918945,
+ "step": 756
+ },
+ {
+ "epoch": 10.517256443861948,
+ "grad_norm": 0.22822986543178558,
+ "learning_rate": 0.0006,
+ "loss": 4.328935623168945,
+ "step": 757
+ },
+ {
+ "epoch": 10.53123634775011,
+ "grad_norm": 0.22282928228378296,
+ "learning_rate": 0.0006,
+ "loss": 4.358272552490234,
+ "step": 758
+ },
+ {
+ "epoch": 10.54521625163827,
+ "grad_norm": 0.23303352296352386,
+ "learning_rate": 0.0006,
+ "loss": 4.336641311645508,
+ "step": 759
+ },
+ {
+ "epoch": 10.55919615552643,
+ "grad_norm": 0.29474690556526184,
+ "learning_rate": 0.0006,
+ "loss": 4.343188285827637,
+ "step": 760
+ },
+ {
+ "epoch": 10.57317605941459,
+ "grad_norm": 0.36269059777259827,
+ "learning_rate": 0.0006,
+ "loss": 4.313019752502441,
+ "step": 761
+ },
+ {
+ "epoch": 10.587155963302752,
+ "grad_norm": 0.3742978870868683,
+ "learning_rate": 0.0006,
+ "loss": 4.361410140991211,
+ "step": 762
+ },
+ {
+ "epoch": 10.601135867190912,
+ "grad_norm": 0.34412163496017456,
+ "learning_rate": 0.0006,
+ "loss": 4.321324825286865,
+ "step": 763
+ },
+ {
+ "epoch": 10.615115771079074,
+ "grad_norm": 0.3464587926864624,
+ "learning_rate": 0.0006,
+ "loss": 4.341907501220703,
+ "step": 764
+ },
+ {
+ "epoch": 10.629095674967235,
+ "grad_norm": 0.3318136930465698,
+ "learning_rate": 0.0006,
+ "loss": 4.329099655151367,
+ "step": 765
+ },
+ {
+ "epoch": 10.643075578855395,
+ "grad_norm": 0.31292903423309326,
+ "learning_rate": 0.0006,
+ "loss": 4.332015037536621,
+ "step": 766
+ },
+ {
+ "epoch": 10.657055482743557,
+ "grad_norm": 0.2904847264289856,
+ "learning_rate": 0.0006,
+ "loss": 4.341764450073242,
+ "step": 767
+ },
+ {
+ "epoch": 10.671035386631717,
+ "grad_norm": 0.3287692666053772,
+ "learning_rate": 0.0006,
+ "loss": 4.342329025268555,
+ "step": 768
+ },
+ {
+ "epoch": 10.685015290519878,
+ "grad_norm": 0.3115365207195282,
+ "learning_rate": 0.0006,
+ "loss": 4.3530073165893555,
+ "step": 769
+ },
+ {
+ "epoch": 10.698995194408038,
+ "grad_norm": 0.24133864045143127,
+ "learning_rate": 0.0006,
+ "loss": 4.321497917175293,
+ "step": 770
+ },
+ {
+ "epoch": 10.7129750982962,
+ "grad_norm": 0.24658630788326263,
+ "learning_rate": 0.0006,
+ "loss": 4.32669734954834,
+ "step": 771
+ },
+ {
+ "epoch": 10.72695500218436,
+ "grad_norm": 0.2342129647731781,
+ "learning_rate": 0.0006,
+ "loss": 4.345459461212158,
+ "step": 772
+ },
+ {
+ "epoch": 10.740934906072521,
+ "grad_norm": 0.23360829055309296,
+ "learning_rate": 0.0006,
+ "loss": 4.33249568939209,
+ "step": 773
+ },
+ {
+ "epoch": 10.754914809960681,
+ "grad_norm": 0.24314677715301514,
+ "learning_rate": 0.0006,
+ "loss": 4.30499792098999,
+ "step": 774
+ },
+ {
+ "epoch": 10.768894713848843,
+ "grad_norm": 0.22105181217193604,
+ "learning_rate": 0.0006,
+ "loss": 4.33706521987915,
+ "step": 775
+ },
+ {
+ "epoch": 10.782874617737003,
+ "grad_norm": 0.23307174444198608,
+ "learning_rate": 0.0006,
+ "loss": 4.320387840270996,
+ "step": 776
+ },
+ {
+ "epoch": 10.796854521625164,
+ "grad_norm": 0.24946169555187225,
+ "learning_rate": 0.0006,
+ "loss": 4.316012382507324,
+ "step": 777
+ },
+ {
+ "epoch": 10.810834425513324,
+ "grad_norm": 0.26023536920547485,
+ "learning_rate": 0.0006,
+ "loss": 4.315193176269531,
+ "step": 778
+ },
+ {
+ "epoch": 10.824814329401486,
+ "grad_norm": 0.2688547968864441,
+ "learning_rate": 0.0006,
+ "loss": 4.3243255615234375,
+ "step": 779
+ },
+ {
+ "epoch": 10.838794233289645,
+ "grad_norm": 0.28188297152519226,
+ "learning_rate": 0.0006,
+ "loss": 4.3202972412109375,
+ "step": 780
+ },
+ {
+ "epoch": 10.852774137177807,
+ "grad_norm": 0.2890053689479828,
+ "learning_rate": 0.0006,
+ "loss": 4.318799018859863,
+ "step": 781
+ },
+ {
+ "epoch": 10.866754041065967,
+ "grad_norm": 0.2914353013038635,
+ "learning_rate": 0.0006,
+ "loss": 4.314262390136719,
+ "step": 782
+ },
+ {
+ "epoch": 10.880733944954128,
+ "grad_norm": 0.3145572543144226,
+ "learning_rate": 0.0006,
+ "loss": 4.339262008666992,
+ "step": 783
+ },
+ {
+ "epoch": 10.89471384884229,
+ "grad_norm": 0.323062002658844,
+ "learning_rate": 0.0006,
+ "loss": 4.354856491088867,
+ "step": 784
+ },
+ {
+ "epoch": 10.90869375273045,
+ "grad_norm": 0.32741227746009827,
+ "learning_rate": 0.0006,
+ "loss": 4.325577735900879,
+ "step": 785
+ },
+ {
+ "epoch": 10.922673656618612,
+ "grad_norm": 0.2855733036994934,
+ "learning_rate": 0.0006,
+ "loss": 4.324419021606445,
+ "step": 786
+ },
+ {
+ "epoch": 10.936653560506771,
+ "grad_norm": 0.2969444990158081,
+ "learning_rate": 0.0006,
+ "loss": 4.320681095123291,
+ "step": 787
+ },
+ {
+ "epoch": 10.950633464394933,
+ "grad_norm": 0.28108111023902893,
+ "learning_rate": 0.0006,
+ "loss": 4.32673454284668,
+ "step": 788
+ },
+ {
+ "epoch": 10.964613368283093,
+ "grad_norm": 0.2537972629070282,
+ "learning_rate": 0.0006,
+ "loss": 4.3197021484375,
+ "step": 789
+ },
+ {
+ "epoch": 10.978593272171254,
+ "grad_norm": 0.2354544699192047,
+ "learning_rate": 0.0006,
+ "loss": 4.3354973793029785,
+ "step": 790
+ },
+ {
+ "epoch": 10.992573176059414,
+ "grad_norm": 0.26195117831230164,
+ "learning_rate": 0.0006,
+ "loss": 4.3172526359558105,
+ "step": 791
+ },
+ {
+ "epoch": 11.0,
+ "grad_norm": 0.27089616656303406,
+ "learning_rate": 0.0006,
+ "loss": 4.324293613433838,
+ "step": 792
+ },
+ {
+ "epoch": 11.0,
+ "eval_loss": 4.531813621520996,
+ "eval_runtime": 44.1656,
+ "eval_samples_per_second": 55.292,
+ "eval_steps_per_second": 3.464,
+ "step": 792
+ },
+ {
+ "epoch": 11.013979903888162,
+ "grad_norm": 0.2526339590549469,
+ "learning_rate": 0.0006,
+ "loss": 4.287600517272949,
+ "step": 793
+ },
+ {
+ "epoch": 11.027959807776321,
+ "grad_norm": 0.24318458139896393,
+ "learning_rate": 0.0006,
+ "loss": 4.268078327178955,
+ "step": 794
+ },
+ {
+ "epoch": 11.041939711664483,
+ "grad_norm": 0.2450830638408661,
+ "learning_rate": 0.0006,
+ "loss": 4.265467643737793,
+ "step": 795
+ },
+ {
+ "epoch": 11.055919615552643,
+ "grad_norm": 0.23963099718093872,
+ "learning_rate": 0.0006,
+ "loss": 4.267931938171387,
+ "step": 796
+ },
+ {
+ "epoch": 11.069899519440805,
+ "grad_norm": 0.2488657534122467,
+ "learning_rate": 0.0006,
+ "loss": 4.30262565612793,
+ "step": 797
+ },
+ {
+ "epoch": 11.083879423328964,
+ "grad_norm": 0.2319781631231308,
+ "learning_rate": 0.0006,
+ "loss": 4.28665828704834,
+ "step": 798
+ },
+ {
+ "epoch": 11.097859327217126,
+ "grad_norm": 0.2425263375043869,
+ "learning_rate": 0.0006,
+ "loss": 4.284830570220947,
+ "step": 799
+ },
+ {
+ "epoch": 11.111839231105286,
+ "grad_norm": 0.23096567392349243,
+ "learning_rate": 0.0006,
+ "loss": 4.2817206382751465,
+ "step": 800
+ },
+ {
+ "epoch": 11.125819134993447,
+ "grad_norm": 0.2846364676952362,
+ "learning_rate": 0.0006,
+ "loss": 4.276104927062988,
+ "step": 801
+ },
+ {
+ "epoch": 11.139799038881607,
+ "grad_norm": 0.2984965741634369,
+ "learning_rate": 0.0006,
+ "loss": 4.2909650802612305,
+ "step": 802
+ },
+ {
+ "epoch": 11.153778942769769,
+ "grad_norm": 0.2841213643550873,
+ "learning_rate": 0.0006,
+ "loss": 4.283358097076416,
+ "step": 803
+ },
+ {
+ "epoch": 11.167758846657929,
+ "grad_norm": 0.29192933440208435,
+ "learning_rate": 0.0006,
+ "loss": 4.267040729522705,
+ "step": 804
+ },
+ {
+ "epoch": 11.18173875054609,
+ "grad_norm": 0.3254184126853943,
+ "learning_rate": 0.0006,
+ "loss": 4.301564693450928,
+ "step": 805
+ },
+ {
+ "epoch": 11.19571865443425,
+ "grad_norm": 0.3347095847129822,
+ "learning_rate": 0.0006,
+ "loss": 4.271395683288574,
+ "step": 806
+ },
+ {
+ "epoch": 11.209698558322412,
+ "grad_norm": 0.25609350204467773,
+ "learning_rate": 0.0006,
+ "loss": 4.2963056564331055,
+ "step": 807
+ },
+ {
+ "epoch": 11.223678462210572,
+ "grad_norm": 0.29272061586380005,
+ "learning_rate": 0.0006,
+ "loss": 4.298416614532471,
+ "step": 808
+ },
+ {
+ "epoch": 11.237658366098733,
+ "grad_norm": 0.32179465889930725,
+ "learning_rate": 0.0006,
+ "loss": 4.294036865234375,
+ "step": 809
+ },
+ {
+ "epoch": 11.251638269986893,
+ "grad_norm": 0.3336549401283264,
+ "learning_rate": 0.0006,
+ "loss": 4.291993141174316,
+ "step": 810
+ },
+ {
+ "epoch": 11.265618173875055,
+ "grad_norm": 0.32273536920547485,
+ "learning_rate": 0.0006,
+ "loss": 4.311004638671875,
+ "step": 811
+ },
+ {
+ "epoch": 11.279598077763215,
+ "grad_norm": 0.3575087785720825,
+ "learning_rate": 0.0006,
+ "loss": 4.300217628479004,
+ "step": 812
+ },
+ {
+ "epoch": 11.293577981651376,
+ "grad_norm": 0.3332885205745697,
+ "learning_rate": 0.0006,
+ "loss": 4.278337478637695,
+ "step": 813
+ },
+ {
+ "epoch": 11.307557885539538,
+ "grad_norm": 0.31440407037734985,
+ "learning_rate": 0.0006,
+ "loss": 4.273826599121094,
+ "step": 814
+ },
+ {
+ "epoch": 11.321537789427698,
+ "grad_norm": 0.29822009801864624,
+ "learning_rate": 0.0006,
+ "loss": 4.284292221069336,
+ "step": 815
+ },
+ {
+ "epoch": 11.33551769331586,
+ "grad_norm": 0.30695512890815735,
+ "learning_rate": 0.0006,
+ "loss": 4.2831926345825195,
+ "step": 816
+ },
+ {
+ "epoch": 11.349497597204019,
+ "grad_norm": 0.30576950311660767,
+ "learning_rate": 0.0006,
+ "loss": 4.277133464813232,
+ "step": 817
+ },
+ {
+ "epoch": 11.36347750109218,
+ "grad_norm": 0.2859647870063782,
+ "learning_rate": 0.0006,
+ "loss": 4.3130106925964355,
+ "step": 818
+ },
+ {
+ "epoch": 11.37745740498034,
+ "grad_norm": 0.32417574524879456,
+ "learning_rate": 0.0006,
+ "loss": 4.310303211212158,
+ "step": 819
+ },
+ {
+ "epoch": 11.391437308868502,
+ "grad_norm": 0.3512463867664337,
+ "learning_rate": 0.0006,
+ "loss": 4.287015438079834,
+ "step": 820
+ },
+ {
+ "epoch": 11.405417212756662,
+ "grad_norm": 0.32578620314598083,
+ "learning_rate": 0.0006,
+ "loss": 4.2957940101623535,
+ "step": 821
+ },
+ {
+ "epoch": 11.419397116644824,
+ "grad_norm": 0.287949800491333,
+ "learning_rate": 0.0006,
+ "loss": 4.2881879806518555,
+ "step": 822
+ },
+ {
+ "epoch": 11.433377020532983,
+ "grad_norm": 0.28048595786094666,
+ "learning_rate": 0.0006,
+ "loss": 4.274960517883301,
+ "step": 823
+ },
+ {
+ "epoch": 11.447356924421145,
+ "grad_norm": 0.2541540563106537,
+ "learning_rate": 0.0006,
+ "loss": 4.261083602905273,
+ "step": 824
+ },
+ {
+ "epoch": 11.461336828309305,
+ "grad_norm": 0.2348361313343048,
+ "learning_rate": 0.0006,
+ "loss": 4.271036148071289,
+ "step": 825
+ },
+ {
+ "epoch": 11.475316732197467,
+ "grad_norm": 0.20913535356521606,
+ "learning_rate": 0.0006,
+ "loss": 4.307661056518555,
+ "step": 826
+ },
+ {
+ "epoch": 11.489296636085626,
+ "grad_norm": 0.22298868000507355,
+ "learning_rate": 0.0006,
+ "loss": 4.26902961730957,
+ "step": 827
+ },
+ {
+ "epoch": 11.503276539973788,
+ "grad_norm": 0.22752761840820312,
+ "learning_rate": 0.0006,
+ "loss": 4.305529594421387,
+ "step": 828
+ },
+ {
+ "epoch": 11.517256443861948,
+ "grad_norm": 0.2149917483329773,
+ "learning_rate": 0.0006,
+ "loss": 4.25134801864624,
+ "step": 829
+ },
+ {
+ "epoch": 11.53123634775011,
+ "grad_norm": 0.21085695922374725,
+ "learning_rate": 0.0006,
+ "loss": 4.266982078552246,
+ "step": 830
+ },
+ {
+ "epoch": 11.54521625163827,
+ "grad_norm": 0.21586747467517853,
+ "learning_rate": 0.0006,
+ "loss": 4.235255718231201,
+ "step": 831
+ },
+ {
+ "epoch": 11.55919615552643,
+ "grad_norm": 0.2520856559276581,
+ "learning_rate": 0.0006,
+ "loss": 4.283442497253418,
+ "step": 832
+ },
+ {
+ "epoch": 11.57317605941459,
+ "grad_norm": 0.2825471758842468,
+ "learning_rate": 0.0006,
+ "loss": 4.234672546386719,
+ "step": 833
+ },
+ {
+ "epoch": 11.587155963302752,
+ "grad_norm": 0.27437824010849,
+ "learning_rate": 0.0006,
+ "loss": 4.246068000793457,
+ "step": 834
+ },
+ {
+ "epoch": 11.601135867190912,
+ "grad_norm": 0.2596757411956787,
+ "learning_rate": 0.0006,
+ "loss": 4.278448104858398,
+ "step": 835
+ },
+ {
+ "epoch": 11.615115771079074,
+ "grad_norm": 0.25663474202156067,
+ "learning_rate": 0.0006,
+ "loss": 4.308779716491699,
+ "step": 836
+ },
+ {
+ "epoch": 11.629095674967235,
+ "grad_norm": 0.2546203136444092,
+ "learning_rate": 0.0006,
+ "loss": 4.261247634887695,
+ "step": 837
+ },
+ {
+ "epoch": 11.643075578855395,
+ "grad_norm": 0.24722838401794434,
+ "learning_rate": 0.0006,
+ "loss": 4.275888442993164,
+ "step": 838
+ },
+ {
+ "epoch": 11.657055482743557,
+ "grad_norm": 0.3022806644439697,
+ "learning_rate": 0.0006,
+ "loss": 4.2572407722473145,
+ "step": 839
+ },
+ {
+ "epoch": 11.671035386631717,
+ "grad_norm": 0.31170839071273804,
+ "learning_rate": 0.0006,
+ "loss": 4.26992654800415,
+ "step": 840
+ },
+ {
+ "epoch": 11.685015290519878,
+ "grad_norm": 0.31362825632095337,
+ "learning_rate": 0.0006,
+ "loss": 4.2354655265808105,
+ "step": 841
+ },
+ {
+ "epoch": 11.698995194408038,
+ "grad_norm": 0.28741633892059326,
+ "learning_rate": 0.0006,
+ "loss": 4.263496398925781,
+ "step": 842
+ },
+ {
+ "epoch": 11.7129750982962,
+ "grad_norm": 0.2492494285106659,
+ "learning_rate": 0.0006,
+ "loss": 4.26463508605957,
+ "step": 843
+ },
+ {
+ "epoch": 11.72695500218436,
+ "grad_norm": 0.24324660003185272,
+ "learning_rate": 0.0006,
+ "loss": 4.245428085327148,
+ "step": 844
+ },
+ {
+ "epoch": 11.740934906072521,
+ "grad_norm": 0.23591114580631256,
+ "learning_rate": 0.0006,
+ "loss": 4.249845504760742,
+ "step": 845
+ },
+ {
+ "epoch": 11.754914809960681,
+ "grad_norm": 0.2202281504869461,
+ "learning_rate": 0.0006,
+ "loss": 4.245006084442139,
+ "step": 846
+ },
+ {
+ "epoch": 11.768894713848843,
+ "grad_norm": 0.22117942571640015,
+ "learning_rate": 0.0006,
+ "loss": 4.27812385559082,
+ "step": 847
+ },
+ {
+ "epoch": 11.782874617737003,
+ "grad_norm": 0.26361414790153503,
+ "learning_rate": 0.0006,
+ "loss": 4.250475883483887,
+ "step": 848
+ },
+ {
+ "epoch": 11.796854521625164,
+ "grad_norm": 0.2820321321487427,
+ "learning_rate": 0.0006,
+ "loss": 4.265835762023926,
+ "step": 849
+ },
+ {
+ "epoch": 11.810834425513324,
+ "grad_norm": 0.2078961282968521,
+ "learning_rate": 0.0006,
+ "loss": 4.251298904418945,
+ "step": 850
+ },
+ {
+ "epoch": 11.824814329401486,
+ "grad_norm": 0.21548646688461304,
+ "learning_rate": 0.0006,
+ "loss": 4.288539886474609,
+ "step": 851
+ },
+ {
+ "epoch": 11.838794233289645,
+ "grad_norm": 0.22719401121139526,
+ "learning_rate": 0.0006,
+ "loss": 4.252035140991211,
+ "step": 852
+ },
+ {
+ "epoch": 11.852774137177807,
+ "grad_norm": 0.21628320217132568,
+ "learning_rate": 0.0006,
+ "loss": 4.268622398376465,
+ "step": 853
+ },
+ {
+ "epoch": 11.866754041065967,
+ "grad_norm": 0.20855145156383514,
+ "learning_rate": 0.0006,
+ "loss": 4.253366470336914,
+ "step": 854
+ },
+ {
+ "epoch": 11.880733944954128,
+ "grad_norm": 0.2091914266347885,
+ "learning_rate": 0.0006,
+ "loss": 4.237805366516113,
+ "step": 855
+ },
+ {
+ "epoch": 11.89471384884229,
+ "grad_norm": 0.2000127136707306,
+ "learning_rate": 0.0006,
+ "loss": 4.268559455871582,
+ "step": 856
+ },
+ {
+ "epoch": 11.90869375273045,
+ "grad_norm": 0.21080894768238068,
+ "learning_rate": 0.0006,
+ "loss": 4.208702087402344,
+ "step": 857
+ },
+ {
+ "epoch": 11.922673656618612,
+ "grad_norm": 0.22125796973705292,
+ "learning_rate": 0.0006,
+ "loss": 4.250210762023926,
+ "step": 858
+ },
+ {
+ "epoch": 11.936653560506771,
+ "grad_norm": 0.25905469059944153,
+ "learning_rate": 0.0006,
+ "loss": 4.2263593673706055,
+ "step": 859
+ },
+ {
+ "epoch": 11.950633464394933,
+ "grad_norm": 0.29970306158065796,
+ "learning_rate": 0.0006,
+ "loss": 4.250848770141602,
+ "step": 860
+ },
+ {
+ "epoch": 11.964613368283093,
+ "grad_norm": 0.28155168890953064,
+ "learning_rate": 0.0006,
+ "loss": 4.272709369659424,
+ "step": 861
+ },
+ {
+ "epoch": 11.978593272171254,
+ "grad_norm": 0.23396113514900208,
+ "learning_rate": 0.0006,
+ "loss": 4.2674970626831055,
+ "step": 862
+ },
+ {
+ "epoch": 11.992573176059414,
+ "grad_norm": 0.23619577288627625,
+ "learning_rate": 0.0006,
+ "loss": 4.240267753601074,
+ "step": 863
+ },
+ {
+ "epoch": 12.0,
+ "grad_norm": 0.2779577076435089,
+ "learning_rate": 0.0006,
+ "loss": 4.267625331878662,
+ "step": 864
+ },
+ {
+ "epoch": 12.0,
+ "eval_loss": 4.437657356262207,
+ "eval_runtime": 44.4959,
+ "eval_samples_per_second": 54.881,
+ "eval_steps_per_second": 3.439,
+ "step": 864
+ },
+ {
+ "epoch": 12.013979903888162,
+ "grad_norm": 0.2948288321495056,
+ "learning_rate": 0.0006,
+ "loss": 4.232182502746582,
+ "step": 865
+ },
+ {
+ "epoch": 12.027959807776321,
+ "grad_norm": 0.3715663254261017,
+ "learning_rate": 0.0006,
+ "loss": 4.233771324157715,
+ "step": 866
+ },
+ {
+ "epoch": 12.041939711664483,
+ "grad_norm": 0.38358673453330994,
+ "learning_rate": 0.0006,
+ "loss": 4.208967685699463,
+ "step": 867
+ },
+ {
+ "epoch": 12.055919615552643,
+ "grad_norm": 0.3314538896083832,
+ "learning_rate": 0.0006,
+ "loss": 4.230685234069824,
+ "step": 868
+ },
+ {
+ "epoch": 12.069899519440805,
+ "grad_norm": 0.34171539545059204,
+ "learning_rate": 0.0006,
+ "loss": 4.231358528137207,
+ "step": 869
+ },
+ {
+ "epoch": 12.083879423328964,
+ "grad_norm": 0.3253359794616699,
+ "learning_rate": 0.0006,
+ "loss": 4.276405334472656,
+ "step": 870
+ },
+ {
+ "epoch": 12.097859327217126,
+ "grad_norm": 0.29008302092552185,
+ "learning_rate": 0.0006,
+ "loss": 4.232935905456543,
+ "step": 871
+ },
+ {
+ "epoch": 12.111839231105286,
+ "grad_norm": 0.28490355610847473,
+ "learning_rate": 0.0006,
+ "loss": 4.238036632537842,
+ "step": 872
+ },
+ {
+ "epoch": 12.125819134993447,
+ "grad_norm": 0.28446322679519653,
+ "learning_rate": 0.0006,
+ "loss": 4.210229873657227,
+ "step": 873
+ },
+ {
+ "epoch": 12.139799038881607,
+ "grad_norm": 0.29664531350135803,
+ "learning_rate": 0.0006,
+ "loss": 4.221309185028076,
+ "step": 874
+ },
+ {
+ "epoch": 12.153778942769769,
+ "grad_norm": 0.3083505928516388,
+ "learning_rate": 0.0006,
+ "loss": 4.221837997436523,
+ "step": 875
+ },
+ {
+ "epoch": 12.167758846657929,
+ "grad_norm": 0.3282921314239502,
+ "learning_rate": 0.0006,
+ "loss": 4.236713409423828,
+ "step": 876
+ },
+ {
+ "epoch": 12.18173875054609,
+ "grad_norm": 0.3603622615337372,
+ "learning_rate": 0.0006,
+ "loss": 4.245080947875977,
+ "step": 877
+ },
+ {
+ "epoch": 12.19571865443425,
+ "grad_norm": 0.38070905208587646,
+ "learning_rate": 0.0006,
+ "loss": 4.240756988525391,
+ "step": 878
+ },
+ {
+ "epoch": 12.209698558322412,
+ "grad_norm": 0.34479081630706787,
+ "learning_rate": 0.0006,
+ "loss": 4.200998306274414,
+ "step": 879
+ },
+ {
+ "epoch": 12.223678462210572,
+ "grad_norm": 0.3006879389286041,
+ "learning_rate": 0.0006,
+ "loss": 4.23531436920166,
+ "step": 880
+ },
+ {
+ "epoch": 12.237658366098733,
+ "grad_norm": 0.36835649609565735,
+ "learning_rate": 0.0006,
+ "loss": 4.229718208312988,
+ "step": 881
+ },
+ {
+ "epoch": 12.251638269986893,
+ "grad_norm": 0.4386984407901764,
+ "learning_rate": 0.0006,
+ "loss": 4.241188049316406,
+ "step": 882
+ },
+ {
+ "epoch": 12.265618173875055,
+ "grad_norm": 0.4442787170410156,
+ "learning_rate": 0.0006,
+ "loss": 4.239102840423584,
+ "step": 883
+ },
+ {
+ "epoch": 12.279598077763215,
+ "grad_norm": 0.324411541223526,
+ "learning_rate": 0.0006,
+ "loss": 4.198982238769531,
+ "step": 884
+ },
+ {
+ "epoch": 12.293577981651376,
+ "grad_norm": 0.2824151813983917,
+ "learning_rate": 0.0006,
+ "loss": 4.248816967010498,
+ "step": 885
+ },
+ {
+ "epoch": 12.307557885539538,
+ "grad_norm": 0.31407129764556885,
+ "learning_rate": 0.0006,
+ "loss": 4.2371320724487305,
+ "step": 886
+ },
+ {
+ "epoch": 12.321537789427698,
+ "grad_norm": 0.32920050621032715,
+ "learning_rate": 0.0006,
+ "loss": 4.210432052612305,
+ "step": 887
+ },
+ {
+ "epoch": 12.33551769331586,
+ "grad_norm": 0.315231055021286,
+ "learning_rate": 0.0006,
+ "loss": 4.219416618347168,
+ "step": 888
+ },
+ {
+ "epoch": 12.349497597204019,
+ "grad_norm": 0.30932050943374634,
+ "learning_rate": 0.0006,
+ "loss": 4.225022315979004,
+ "step": 889
+ },
+ {
+ "epoch": 12.36347750109218,
+ "grad_norm": 0.30242064595222473,
+ "learning_rate": 0.0006,
+ "loss": 4.2738518714904785,
+ "step": 890
+ },
+ {
+ "epoch": 12.37745740498034,
+ "grad_norm": 0.2926250994205475,
+ "learning_rate": 0.0006,
+ "loss": 4.231094837188721,
+ "step": 891
+ },
+ {
+ "epoch": 12.391437308868502,
+ "grad_norm": 0.2541215717792511,
+ "learning_rate": 0.0006,
+ "loss": 4.211821556091309,
+ "step": 892
+ },
+ {
+ "epoch": 12.405417212756662,
+ "grad_norm": 0.23693418502807617,
+ "learning_rate": 0.0006,
+ "loss": 4.208099365234375,
+ "step": 893
+ },
+ {
+ "epoch": 12.419397116644824,
+ "grad_norm": 0.22063226997852325,
+ "learning_rate": 0.0006,
+ "loss": 4.211234092712402,
+ "step": 894
+ },
+ {
+ "epoch": 12.433377020532983,
+ "grad_norm": 0.21536271274089813,
+ "learning_rate": 0.0006,
+ "loss": 4.199228286743164,
+ "step": 895
+ },
+ {
+ "epoch": 12.447356924421145,
+ "grad_norm": 0.243179589509964,
+ "learning_rate": 0.0006,
+ "loss": 4.204344749450684,
+ "step": 896
+ },
+ {
+ "epoch": 12.461336828309305,
+ "grad_norm": 0.2299746423959732,
+ "learning_rate": 0.0006,
+ "loss": 4.1565752029418945,
+ "step": 897
+ },
+ {
+ "epoch": 12.475316732197467,
+ "grad_norm": 0.2286847084760666,
+ "learning_rate": 0.0006,
+ "loss": 4.242953777313232,
+ "step": 898
+ },
+ {
+ "epoch": 12.489296636085626,
+ "grad_norm": 0.19463586807250977,
+ "learning_rate": 0.0006,
+ "loss": 4.214809417724609,
+ "step": 899
+ },
+ {
+ "epoch": 12.503276539973788,
+ "grad_norm": 0.1978398710489273,
+ "learning_rate": 0.0006,
+ "loss": 4.159815311431885,
+ "step": 900
+ },
+ {
+ "epoch": 12.517256443861948,
+ "grad_norm": 0.23177850246429443,
+ "learning_rate": 0.0006,
+ "loss": 4.2069902420043945,
+ "step": 901
+ },
+ {
+ "epoch": 12.53123634775011,
+ "grad_norm": 0.2408912032842636,
+ "learning_rate": 0.0006,
+ "loss": 4.206778526306152,
+ "step": 902
+ },
+ {
+ "epoch": 12.54521625163827,
+ "grad_norm": 0.21839919686317444,
+ "learning_rate": 0.0006,
+ "loss": 4.197076320648193,
+ "step": 903
+ },
+ {
+ "epoch": 12.55919615552643,
+ "grad_norm": 0.2053343504667282,
+ "learning_rate": 0.0006,
+ "loss": 4.21247673034668,
+ "step": 904
+ },
+ {
+ "epoch": 12.57317605941459,
+ "grad_norm": 0.19943439960479736,
+ "learning_rate": 0.0006,
+ "loss": 4.176966667175293,
+ "step": 905
+ },
+ {
+ "epoch": 12.587155963302752,
+ "grad_norm": 0.2012074887752533,
+ "learning_rate": 0.0006,
+ "loss": 4.210303783416748,
+ "step": 906
+ },
+ {
+ "epoch": 12.601135867190912,
+ "grad_norm": 0.22240376472473145,
+ "learning_rate": 0.0006,
+ "loss": 4.200625896453857,
+ "step": 907
+ },
+ {
+ "epoch": 12.615115771079074,
+ "grad_norm": 0.21729710698127747,
+ "learning_rate": 0.0006,
+ "loss": 4.2001953125,
+ "step": 908
+ },
+ {
+ "epoch": 12.629095674967235,
+ "grad_norm": 0.22470413148403168,
+ "learning_rate": 0.0006,
+ "loss": 4.197505950927734,
+ "step": 909
+ },
+ {
+ "epoch": 12.643075578855395,
+ "grad_norm": 0.23776157200336456,
+ "learning_rate": 0.0006,
+ "loss": 4.235603332519531,
+ "step": 910
+ },
+ {
+ "epoch": 12.657055482743557,
+ "grad_norm": 0.20616604387760162,
+ "learning_rate": 0.0006,
+ "loss": 4.193584442138672,
+ "step": 911
+ },
+ {
+ "epoch": 12.671035386631717,
+ "grad_norm": 0.1913922131061554,
+ "learning_rate": 0.0006,
+ "loss": 4.209191799163818,
+ "step": 912
+ },
+ {
+ "epoch": 12.685015290519878,
+ "grad_norm": 0.19427193701267242,
+ "learning_rate": 0.0006,
+ "loss": 4.219709396362305,
+ "step": 913
+ },
+ {
+ "epoch": 12.698995194408038,
+ "grad_norm": 0.20976558327674866,
+ "learning_rate": 0.0006,
+ "loss": 4.210859298706055,
+ "step": 914
+ },
+ {
+ "epoch": 12.7129750982962,
+ "grad_norm": 0.21571609377861023,
+ "learning_rate": 0.0006,
+ "loss": 4.189394950866699,
+ "step": 915
+ },
+ {
+ "epoch": 12.72695500218436,
+ "grad_norm": 0.2152620255947113,
+ "learning_rate": 0.0006,
+ "loss": 4.223589897155762,
+ "step": 916
+ },
+ {
+ "epoch": 12.740934906072521,
+ "grad_norm": 0.21867749094963074,
+ "learning_rate": 0.0006,
+ "loss": 4.198590278625488,
+ "step": 917
+ },
+ {
+ "epoch": 12.754914809960681,
+ "grad_norm": 0.22300855815410614,
+ "learning_rate": 0.0006,
+ "loss": 4.188891410827637,
+ "step": 918
+ },
+ {
+ "epoch": 12.768894713848843,
+ "grad_norm": 0.22197802364826202,
+ "learning_rate": 0.0006,
+ "loss": 4.190221309661865,
+ "step": 919
+ },
+ {
+ "epoch": 12.782874617737003,
+ "grad_norm": 0.20003341138362885,
+ "learning_rate": 0.0006,
+ "loss": 4.215453147888184,
+ "step": 920
+ },
+ {
+ "epoch": 12.796854521625164,
+ "grad_norm": 0.19887958467006683,
+ "learning_rate": 0.0006,
+ "loss": 4.18174934387207,
+ "step": 921
+ },
+ {
+ "epoch": 12.810834425513324,
+ "grad_norm": 0.20945803821086884,
+ "learning_rate": 0.0006,
+ "loss": 4.234947204589844,
+ "step": 922
+ },
+ {
+ "epoch": 12.824814329401486,
+ "grad_norm": 0.2253490388393402,
+ "learning_rate": 0.0006,
+ "loss": 4.2177228927612305,
+ "step": 923
+ },
+ {
+ "epoch": 12.838794233289645,
+ "grad_norm": 0.247610405087471,
+ "learning_rate": 0.0006,
+ "loss": 4.2013139724731445,
+ "step": 924
+ },
+ {
+ "epoch": 12.852774137177807,
+ "grad_norm": 0.2792088985443115,
+ "learning_rate": 0.0006,
+ "loss": 4.204774379730225,
+ "step": 925
+ },
+ {
+ "epoch": 12.866754041065967,
+ "grad_norm": 0.2839066982269287,
+ "learning_rate": 0.0006,
+ "loss": 4.186254978179932,
+ "step": 926
+ },
+ {
+ "epoch": 12.880733944954128,
+ "grad_norm": 0.2793181836605072,
+ "learning_rate": 0.0006,
+ "loss": 4.172411918640137,
+ "step": 927
+ },
+ {
+ "epoch": 12.89471384884229,
+ "grad_norm": 0.29506033658981323,
+ "learning_rate": 0.0006,
+ "loss": 4.202878475189209,
+ "step": 928
+ },
+ {
+ "epoch": 12.90869375273045,
+ "grad_norm": 0.2799845039844513,
+ "learning_rate": 0.0006,
+ "loss": 4.1563310623168945,
+ "step": 929
+ },
+ {
+ "epoch": 12.922673656618612,
+ "grad_norm": 0.23972125351428986,
+ "learning_rate": 0.0006,
+ "loss": 4.224601745605469,
+ "step": 930
+ },
+ {
+ "epoch": 12.936653560506771,
+ "grad_norm": 0.21558353304862976,
+ "learning_rate": 0.0006,
+ "loss": 4.167957305908203,
+ "step": 931
+ },
+ {
+ "epoch": 12.950633464394933,
+ "grad_norm": 0.21800188720226288,
+ "learning_rate": 0.0006,
+ "loss": 4.1746039390563965,
+ "step": 932
+ },
+ {
+ "epoch": 12.964613368283093,
+ "grad_norm": 0.2086547315120697,
+ "learning_rate": 0.0006,
+ "loss": 4.188137054443359,
+ "step": 933
+ },
+ {
+ "epoch": 12.978593272171254,
+ "grad_norm": 0.2174186110496521,
+ "learning_rate": 0.0006,
+ "loss": 4.184014320373535,
+ "step": 934
+ },
+ {
+ "epoch": 12.992573176059414,
+ "grad_norm": 0.22755110263824463,
+ "learning_rate": 0.0006,
+ "loss": 4.180912017822266,
+ "step": 935
+ },
+ {
+ "epoch": 13.0,
+ "grad_norm": 0.2735324203968048,
+ "learning_rate": 0.0006,
+ "loss": 4.201578617095947,
+ "step": 936
+ },
+ {
+ "epoch": 13.0,
+ "eval_loss": 4.396903038024902,
+ "eval_runtime": 44.5664,
+ "eval_samples_per_second": 54.795,
+ "eval_steps_per_second": 3.433,
+ "step": 936
+ },
+ {
+ "epoch": 13.013979903888162,
+ "grad_norm": 0.27577832341194153,
+ "learning_rate": 0.0006,
+ "loss": 4.149985313415527,
+ "step": 937
+ },
+ {
+ "epoch": 13.027959807776321,
+ "grad_norm": 0.25817009806632996,
+ "learning_rate": 0.0006,
+ "loss": 4.1526103019714355,
+ "step": 938
+ },
+ {
+ "epoch": 13.041939711664483,
+ "grad_norm": 0.24564379453659058,
+ "learning_rate": 0.0006,
+ "loss": 4.1661152839660645,
+ "step": 939
+ },
+ {
+ "epoch": 13.055919615552643,
+ "grad_norm": 0.2465466856956482,
+ "learning_rate": 0.0006,
+ "loss": 4.152953624725342,
+ "step": 940
+ },
+ {
+ "epoch": 13.069899519440805,
+ "grad_norm": 0.22702018916606903,
+ "learning_rate": 0.0006,
+ "loss": 4.145125389099121,
+ "step": 941
+ },
+ {
+ "epoch": 13.083879423328964,
+ "grad_norm": 0.24350613355636597,
+ "learning_rate": 0.0006,
+ "loss": 4.163095474243164,
+ "step": 942
+ },
+ {
+ "epoch": 13.097859327217126,
+ "grad_norm": 0.2504431903362274,
+ "learning_rate": 0.0006,
+ "loss": 4.136016845703125,
+ "step": 943
+ },
+ {
+ "epoch": 13.111839231105286,
+ "grad_norm": 0.24968865513801575,
+ "learning_rate": 0.0006,
+ "loss": 4.163487911224365,
+ "step": 944
+ },
+ {
+ "epoch": 13.125819134993447,
+ "grad_norm": 0.27164196968078613,
+ "learning_rate": 0.0006,
+ "loss": 4.1194353103637695,
+ "step": 945
+ },
+ {
+ "epoch": 13.139799038881607,
+ "grad_norm": 0.28127020597457886,
+ "learning_rate": 0.0006,
+ "loss": 4.184807300567627,
+ "step": 946
+ },
+ {
+ "epoch": 13.153778942769769,
+ "grad_norm": 0.24574966728687286,
+ "learning_rate": 0.0006,
+ "loss": 4.154998779296875,
+ "step": 947
+ },
+ {
+ "epoch": 13.167758846657929,
+ "grad_norm": 0.22310060262680054,
+ "learning_rate": 0.0006,
+ "loss": 4.182928085327148,
+ "step": 948
+ },
+ {
+ "epoch": 13.18173875054609,
+ "grad_norm": 0.2539508640766144,
+ "learning_rate": 0.0006,
+ "loss": 4.176900386810303,
+ "step": 949
+ },
+ {
+ "epoch": 13.19571865443425,
+ "grad_norm": 0.30925488471984863,
+ "learning_rate": 0.0006,
+ "loss": 4.1760711669921875,
+ "step": 950
+ },
+ {
+ "epoch": 13.209698558322412,
+ "grad_norm": 0.3842967450618744,
+ "learning_rate": 0.0006,
+ "loss": 4.1830949783325195,
+ "step": 951
+ },
+ {
+ "epoch": 13.223678462210572,
+ "grad_norm": 0.35950011014938354,
+ "learning_rate": 0.0006,
+ "loss": 4.131983757019043,
+ "step": 952
+ },
+ {
+ "epoch": 13.237658366098733,
+ "grad_norm": 0.29913705587387085,
+ "learning_rate": 0.0006,
+ "loss": 4.166984558105469,
+ "step": 953
+ },
+ {
+ "epoch": 13.251638269986893,
+ "grad_norm": 0.32008400559425354,
+ "learning_rate": 0.0006,
+ "loss": 4.156482696533203,
+ "step": 954
+ },
+ {
+ "epoch": 13.265618173875055,
+ "grad_norm": 0.3186642825603485,
+ "learning_rate": 0.0006,
+ "loss": 4.1661057472229,
+ "step": 955
+ },
+ {
+ "epoch": 13.279598077763215,
+ "grad_norm": 0.3194582462310791,
+ "learning_rate": 0.0006,
+ "loss": 4.169328689575195,
+ "step": 956
+ },
+ {
+ "epoch": 13.293577981651376,
+ "grad_norm": 0.3133867084980011,
+ "learning_rate": 0.0006,
+ "loss": 4.165459632873535,
+ "step": 957
+ },
+ {
+ "epoch": 13.307557885539538,
+ "grad_norm": 0.3232237696647644,
+ "learning_rate": 0.0006,
+ "loss": 4.2107439041137695,
+ "step": 958
+ },
+ {
+ "epoch": 13.321537789427698,
+ "grad_norm": 0.3133196234703064,
+ "learning_rate": 0.0006,
+ "loss": 4.184182167053223,
+ "step": 959
+ },
+ {
+ "epoch": 13.33551769331586,
+ "grad_norm": 0.296129435300827,
+ "learning_rate": 0.0006,
+ "loss": 4.168312072753906,
+ "step": 960
+ },
+ {
+ "epoch": 13.349497597204019,
+ "grad_norm": 0.2685348391532898,
+ "learning_rate": 0.0006,
+ "loss": 4.159984588623047,
+ "step": 961
+ },
+ {
+ "epoch": 13.36347750109218,
+ "grad_norm": 0.2644975781440735,
+ "learning_rate": 0.0006,
+ "loss": 4.164909362792969,
+ "step": 962
+ },
+ {
+ "epoch": 13.37745740498034,
+ "grad_norm": 0.2712913155555725,
+ "learning_rate": 0.0006,
+ "loss": 4.158056259155273,
+ "step": 963
+ },
+ {
+ "epoch": 13.391437308868502,
+ "grad_norm": 0.2687259316444397,
+ "learning_rate": 0.0006,
+ "loss": 4.182924270629883,
+ "step": 964
+ },
+ {
+ "epoch": 13.405417212756662,
+ "grad_norm": 0.25640392303466797,
+ "learning_rate": 0.0006,
+ "loss": 4.153351783752441,
+ "step": 965
+ },
+ {
+ "epoch": 13.419397116644824,
+ "grad_norm": 0.2646305561065674,
+ "learning_rate": 0.0006,
+ "loss": 4.18464469909668,
+ "step": 966
+ },
+ {
+ "epoch": 13.433377020532983,
+ "grad_norm": 0.24206851422786713,
+ "learning_rate": 0.0006,
+ "loss": 4.127564430236816,
+ "step": 967
+ },
+ {
+ "epoch": 13.447356924421145,
+ "grad_norm": 0.23800471425056458,
+ "learning_rate": 0.0006,
+ "loss": 4.163488388061523,
+ "step": 968
+ },
+ {
+ "epoch": 13.461336828309305,
+ "grad_norm": 0.22957314550876617,
+ "learning_rate": 0.0006,
+ "loss": 4.178133964538574,
+ "step": 969
+ },
+ {
+ "epoch": 13.475316732197467,
+ "grad_norm": 0.22867488861083984,
+ "learning_rate": 0.0006,
+ "loss": 4.159056186676025,
+ "step": 970
+ },
+ {
+ "epoch": 13.489296636085626,
+ "grad_norm": 0.21737419068813324,
+ "learning_rate": 0.0006,
+ "loss": 4.138628005981445,
+ "step": 971
+ },
+ {
+ "epoch": 13.503276539973788,
+ "grad_norm": 0.2319175899028778,
+ "learning_rate": 0.0006,
+ "loss": 4.14644718170166,
+ "step": 972
+ },
+ {
+ "epoch": 13.517256443861948,
+ "grad_norm": 0.2572193443775177,
+ "learning_rate": 0.0006,
+ "loss": 4.175213813781738,
+ "step": 973
+ },
+ {
+ "epoch": 13.53123634775011,
+ "grad_norm": 0.23483099043369293,
+ "learning_rate": 0.0006,
+ "loss": 4.133171558380127,
+ "step": 974
+ },
+ {
+ "epoch": 13.54521625163827,
+ "grad_norm": 0.2071552872657776,
+ "learning_rate": 0.0006,
+ "loss": 4.13730525970459,
+ "step": 975
+ },
+ {
+ "epoch": 13.55919615552643,
+ "grad_norm": 0.23074553906917572,
+ "learning_rate": 0.0006,
+ "loss": 4.175051689147949,
+ "step": 976
+ },
+ {
+ "epoch": 13.57317605941459,
+ "grad_norm": 0.2480078786611557,
+ "learning_rate": 0.0006,
+ "loss": 4.167630672454834,
+ "step": 977
+ },
+ {
+ "epoch": 13.587155963302752,
+ "grad_norm": 0.23444348573684692,
+ "learning_rate": 0.0006,
+ "loss": 4.141780853271484,
+ "step": 978
+ },
+ {
+ "epoch": 13.601135867190912,
+ "grad_norm": 0.2227829396724701,
+ "learning_rate": 0.0006,
+ "loss": 4.157566547393799,
+ "step": 979
+ },
+ {
+ "epoch": 13.615115771079074,
+ "grad_norm": 0.21478354930877686,
+ "learning_rate": 0.0006,
+ "loss": 4.131053447723389,
+ "step": 980
+ },
+ {
+ "epoch": 13.629095674967235,
+ "grad_norm": 0.1978664994239807,
+ "learning_rate": 0.0006,
+ "loss": 4.123660564422607,
+ "step": 981
+ },
+ {
+ "epoch": 13.643075578855395,
+ "grad_norm": 0.19980201125144958,
+ "learning_rate": 0.0006,
+ "loss": 4.174160480499268,
+ "step": 982
+ },
+ {
+ "epoch": 13.657055482743557,
+ "grad_norm": 0.19815555214881897,
+ "learning_rate": 0.0006,
+ "loss": 4.181703090667725,
+ "step": 983
+ },
+ {
+ "epoch": 13.671035386631717,
+ "grad_norm": 0.19524012506008148,
+ "learning_rate": 0.0006,
+ "loss": 4.163766860961914,
+ "step": 984
+ },
+ {
+ "epoch": 13.685015290519878,
+ "grad_norm": 0.2286096215248108,
+ "learning_rate": 0.0006,
+ "loss": 4.172213554382324,
+ "step": 985
+ },
+ {
+ "epoch": 13.698995194408038,
+ "grad_norm": 0.2210782766342163,
+ "learning_rate": 0.0006,
+ "loss": 4.187033653259277,
+ "step": 986
+ },
+ {
+ "epoch": 13.7129750982962,
+ "grad_norm": 0.21874216198921204,
+ "learning_rate": 0.0006,
+ "loss": 4.125125885009766,
+ "step": 987
+ },
+ {
+ "epoch": 13.72695500218436,
+ "grad_norm": 0.22848057746887207,
+ "learning_rate": 0.0006,
+ "loss": 4.153496742248535,
+ "step": 988
+ },
+ {
+ "epoch": 13.740934906072521,
+ "grad_norm": 0.2250450700521469,
+ "learning_rate": 0.0006,
+ "loss": 4.149165630340576,
+ "step": 989
+ },
+ {
+ "epoch": 13.754914809960681,
+ "grad_norm": 0.21443772315979004,
+ "learning_rate": 0.0006,
+ "loss": 4.1528825759887695,
+ "step": 990
+ },
+ {
+ "epoch": 13.768894713848843,
+ "grad_norm": 0.21927927434444427,
+ "learning_rate": 0.0006,
+ "loss": 4.146831512451172,
+ "step": 991
+ },
+ {
+ "epoch": 13.782874617737003,
+ "grad_norm": 0.2413124144077301,
+ "learning_rate": 0.0006,
+ "loss": 4.136909008026123,
+ "step": 992
+ },
+ {
+ "epoch": 13.796854521625164,
+ "grad_norm": 0.2603479325771332,
+ "learning_rate": 0.0006,
+ "loss": 4.12525749206543,
+ "step": 993
+ },
+ {
+ "epoch": 13.810834425513324,
+ "grad_norm": 0.26246970891952515,
+ "learning_rate": 0.0006,
+ "loss": 4.114049434661865,
+ "step": 994
+ },
+ {
+ "epoch": 13.824814329401486,
+ "grad_norm": 0.27031877636909485,
+ "learning_rate": 0.0006,
+ "loss": 4.1646552085876465,
+ "step": 995
+ },
+ {
+ "epoch": 13.838794233289645,
+ "grad_norm": 0.2499857395887375,
+ "learning_rate": 0.0006,
+ "loss": 4.139284133911133,
+ "step": 996
+ },
+ {
+ "epoch": 13.852774137177807,
+ "grad_norm": 0.22026537358760834,
+ "learning_rate": 0.0006,
+ "loss": 4.142191410064697,
+ "step": 997
+ },
+ {
+ "epoch": 13.866754041065967,
+ "grad_norm": 0.23738551139831543,
+ "learning_rate": 0.0006,
+ "loss": 4.1422882080078125,
+ "step": 998
+ },
+ {
+ "epoch": 13.880733944954128,
+ "grad_norm": 0.2416357398033142,
+ "learning_rate": 0.0006,
+ "loss": 4.14063835144043,
+ "step": 999
+ },
+ {
+ "epoch": 13.89471384884229,
+ "grad_norm": 0.33822184801101685,
+ "learning_rate": 0.0006,
+ "loss": 4.12839412689209,
+ "step": 1000
+ },
+ {
+ "epoch": 13.90869375273045,
+ "grad_norm": 0.3409678339958191,
+ "learning_rate": 0.0006,
+ "loss": 4.145351886749268,
+ "step": 1001
+ },
+ {
+ "epoch": 13.922673656618612,
+ "grad_norm": 0.2467597872018814,
+ "learning_rate": 0.0006,
+ "loss": 4.155339241027832,
+ "step": 1002
+ },
+ {
+ "epoch": 13.936653560506771,
+ "grad_norm": 0.2314649075269699,
+ "learning_rate": 0.0006,
+ "loss": 4.130176067352295,
+ "step": 1003
+ },
+ {
+ "epoch": 13.950633464394933,
+ "grad_norm": 0.23701290786266327,
+ "learning_rate": 0.0006,
+ "loss": 4.19205379486084,
+ "step": 1004
+ },
+ {
+ "epoch": 13.964613368283093,
+ "grad_norm": 0.2466491460800171,
+ "learning_rate": 0.0006,
+ "loss": 4.118908882141113,
+ "step": 1005
+ },
+ {
+ "epoch": 13.978593272171254,
+ "grad_norm": 0.23746836185455322,
+ "learning_rate": 0.0006,
+ "loss": 4.16111946105957,
+ "step": 1006
+ },
+ {
+ "epoch": 13.992573176059414,
+ "grad_norm": 0.24497751891613007,
+ "learning_rate": 0.0006,
+ "loss": 4.148624420166016,
+ "step": 1007
+ },
+ {
+ "epoch": 14.0,
+ "grad_norm": 0.25735899806022644,
+ "learning_rate": 0.0006,
+ "loss": 4.12002420425415,
+ "step": 1008
+ },
+ {
+ "epoch": 14.0,
+ "eval_loss": 4.335351467132568,
+ "eval_runtime": 44.0523,
+ "eval_samples_per_second": 55.434,
+ "eval_steps_per_second": 3.473,
+ "step": 1008
+ },
+ {
+ "epoch": 14.013979903888162,
+ "grad_norm": 0.24570082128047943,
+ "learning_rate": 0.0006,
+ "loss": 4.1036176681518555,
+ "step": 1009
+ },
+ {
+ "epoch": 14.027959807776321,
+ "grad_norm": 0.2525855302810669,
+ "learning_rate": 0.0006,
+ "loss": 4.142077445983887,
+ "step": 1010
+ },
+ {
+ "epoch": 14.041939711664483,
+ "grad_norm": 0.2701111435890198,
+ "learning_rate": 0.0006,
+ "loss": 4.096988677978516,
+ "step": 1011
+ },
+ {
+ "epoch": 14.055919615552643,
+ "grad_norm": 0.28173309564590454,
+ "learning_rate": 0.0006,
+ "loss": 4.148448944091797,
+ "step": 1012
+ },
+ {
+ "epoch": 14.069899519440805,
+ "grad_norm": 0.2651294469833374,
+ "learning_rate": 0.0006,
+ "loss": 4.121731281280518,
+ "step": 1013
+ },
+ {
+ "epoch": 14.083879423328964,
+ "grad_norm": 0.21160121262073517,
+ "learning_rate": 0.0006,
+ "loss": 4.108980178833008,
+ "step": 1014
+ },
+ {
+ "epoch": 14.097859327217126,
+ "grad_norm": 0.24786953628063202,
+ "learning_rate": 0.0006,
+ "loss": 4.133942604064941,
+ "step": 1015
+ },
+ {
+ "epoch": 14.111839231105286,
+ "grad_norm": 0.2722747027873993,
+ "learning_rate": 0.0006,
+ "loss": 4.115242958068848,
+ "step": 1016
+ },
+ {
+ "epoch": 14.125819134993447,
+ "grad_norm": 0.273360013961792,
+ "learning_rate": 0.0006,
+ "loss": 4.059296607971191,
+ "step": 1017
+ },
+ {
+ "epoch": 14.139799038881607,
+ "grad_norm": 0.2541784942150116,
+ "learning_rate": 0.0006,
+ "loss": 4.118365287780762,
+ "step": 1018
+ },
+ {
+ "epoch": 14.153778942769769,
+ "grad_norm": 0.23806381225585938,
+ "learning_rate": 0.0006,
+ "loss": 4.102812767028809,
+ "step": 1019
+ },
+ {
+ "epoch": 14.167758846657929,
+ "grad_norm": 0.2541005313396454,
+ "learning_rate": 0.0006,
+ "loss": 4.093264579772949,
+ "step": 1020
+ },
+ {
+ "epoch": 14.18173875054609,
+ "grad_norm": 0.2619539499282837,
+ "learning_rate": 0.0006,
+ "loss": 4.114917278289795,
+ "step": 1021
+ },
+ {
+ "epoch": 14.19571865443425,
+ "grad_norm": 0.2466963529586792,
+ "learning_rate": 0.0006,
+ "loss": 4.098258972167969,
+ "step": 1022
+ },
+ {
+ "epoch": 14.209698558322412,
+ "grad_norm": 0.24341611564159393,
+ "learning_rate": 0.0006,
+ "loss": 4.109346389770508,
+ "step": 1023
+ },
+ {
+ "epoch": 14.223678462210572,
+ "grad_norm": 0.23977765440940857,
+ "learning_rate": 0.0006,
+ "loss": 4.106716156005859,
+ "step": 1024
+ },
+ {
+ "epoch": 14.237658366098733,
+ "grad_norm": 0.253528356552124,
+ "learning_rate": 0.0006,
+ "loss": 4.102226257324219,
+ "step": 1025
+ },
+ {
+ "epoch": 14.251638269986893,
+ "grad_norm": 0.26954543590545654,
+ "learning_rate": 0.0006,
+ "loss": 4.107413291931152,
+ "step": 1026
+ },
+ {
+ "epoch": 14.265618173875055,
+ "grad_norm": 0.2610514760017395,
+ "learning_rate": 0.0006,
+ "loss": 4.110824108123779,
+ "step": 1027
+ },
+ {
+ "epoch": 14.279598077763215,
+ "grad_norm": 0.2579168677330017,
+ "learning_rate": 0.0006,
+ "loss": 4.082438945770264,
+ "step": 1028
+ },
+ {
+ "epoch": 14.293577981651376,
+ "grad_norm": 0.26916536688804626,
+ "learning_rate": 0.0006,
+ "loss": 4.075734615325928,
+ "step": 1029
+ },
+ {
+ "epoch": 14.307557885539538,
+ "grad_norm": 0.2998618185520172,
+ "learning_rate": 0.0006,
+ "loss": 4.088419437408447,
+ "step": 1030
+ },
+ {
+ "epoch": 14.321537789427698,
+ "grad_norm": 0.3162737190723419,
+ "learning_rate": 0.0006,
+ "loss": 4.125833034515381,
+ "step": 1031
+ },
+ {
+ "epoch": 14.33551769331586,
+ "grad_norm": 0.318601131439209,
+ "learning_rate": 0.0006,
+ "loss": 4.077424049377441,
+ "step": 1032
+ },
+ {
+ "epoch": 14.349497597204019,
+ "grad_norm": 0.32113415002822876,
+ "learning_rate": 0.0006,
+ "loss": 4.113360404968262,
+ "step": 1033
+ },
+ {
+ "epoch": 14.36347750109218,
+ "grad_norm": 0.3150886297225952,
+ "learning_rate": 0.0006,
+ "loss": 4.100013732910156,
+ "step": 1034
+ },
+ {
+ "epoch": 14.37745740498034,
+ "grad_norm": 0.29279956221580505,
+ "learning_rate": 0.0006,
+ "loss": 4.136394500732422,
+ "step": 1035
+ },
+ {
+ "epoch": 14.391437308868502,
+ "grad_norm": 0.28532543778419495,
+ "learning_rate": 0.0006,
+ "loss": 4.138948440551758,
+ "step": 1036
+ },
+ {
+ "epoch": 14.405417212756662,
+ "grad_norm": 0.2825978398323059,
+ "learning_rate": 0.0006,
+ "loss": 4.112217903137207,
+ "step": 1037
+ },
+ {
+ "epoch": 14.419397116644824,
+ "grad_norm": 0.2891198694705963,
+ "learning_rate": 0.0006,
+ "loss": 4.102682113647461,
+ "step": 1038
+ },
+ {
+ "epoch": 14.433377020532983,
+ "grad_norm": 0.2917391061782837,
+ "learning_rate": 0.0006,
+ "loss": 4.120752811431885,
+ "step": 1039
+ },
+ {
+ "epoch": 14.447356924421145,
+ "grad_norm": 0.2589806914329529,
+ "learning_rate": 0.0006,
+ "loss": 4.130519390106201,
+ "step": 1040
+ },
+ {
+ "epoch": 14.461336828309305,
+ "grad_norm": 0.2674788534641266,
+ "learning_rate": 0.0006,
+ "loss": 4.130382537841797,
+ "step": 1041
+ },
+ {
+ "epoch": 14.475316732197467,
+ "grad_norm": 0.2820362150669098,
+ "learning_rate": 0.0006,
+ "loss": 4.13947868347168,
+ "step": 1042
+ },
+ {
+ "epoch": 14.489296636085626,
+ "grad_norm": 0.2650109529495239,
+ "learning_rate": 0.0006,
+ "loss": 4.130346775054932,
+ "step": 1043
+ },
+ {
+ "epoch": 14.503276539973788,
+ "grad_norm": 0.29137638211250305,
+ "learning_rate": 0.0006,
+ "loss": 4.055751800537109,
+ "step": 1044
+ },
+ {
+ "epoch": 14.517256443861948,
+ "grad_norm": 0.3232433497905731,
+ "learning_rate": 0.0006,
+ "loss": 4.114810943603516,
+ "step": 1045
+ },
+ {
+ "epoch": 14.53123634775011,
+ "grad_norm": 0.2724473476409912,
+ "learning_rate": 0.0006,
+ "loss": 4.088351249694824,
+ "step": 1046
+ },
+ {
+ "epoch": 14.54521625163827,
+ "grad_norm": 0.23994430899620056,
+ "learning_rate": 0.0006,
+ "loss": 4.110936164855957,
+ "step": 1047
+ },
+ {
+ "epoch": 14.55919615552643,
+ "grad_norm": 0.2422720044851303,
+ "learning_rate": 0.0006,
+ "loss": 4.132844924926758,
+ "step": 1048
+ },
+ {
+ "epoch": 14.57317605941459,
+ "grad_norm": 0.21148815751075745,
+ "learning_rate": 0.0006,
+ "loss": 4.102499961853027,
+ "step": 1049
+ },
+ {
+ "epoch": 14.587155963302752,
+ "grad_norm": 0.22221639752388,
+ "learning_rate": 0.0006,
+ "loss": 4.126241683959961,
+ "step": 1050
+ },
+ {
+ "epoch": 14.601135867190912,
+ "grad_norm": 0.2538735866546631,
+ "learning_rate": 0.0006,
+ "loss": 4.116817951202393,
+ "step": 1051
+ },
+ {
+ "epoch": 14.615115771079074,
+ "grad_norm": 0.2555900514125824,
+ "learning_rate": 0.0006,
+ "loss": 4.106309413909912,
+ "step": 1052
+ },
+ {
+ "epoch": 14.629095674967235,
+ "grad_norm": 0.24753783643245697,
+ "learning_rate": 0.0006,
+ "loss": 4.1015119552612305,
+ "step": 1053
+ },
+ {
+ "epoch": 14.643075578855395,
+ "grad_norm": 0.238885298371315,
+ "learning_rate": 0.0006,
+ "loss": 4.120419502258301,
+ "step": 1054
+ },
+ {
+ "epoch": 14.657055482743557,
+ "grad_norm": 0.22693610191345215,
+ "learning_rate": 0.0006,
+ "loss": 4.084968566894531,
+ "step": 1055
+ },
+ {
+ "epoch": 14.671035386631717,
+ "grad_norm": 0.2100025862455368,
+ "learning_rate": 0.0006,
+ "loss": 4.108001708984375,
+ "step": 1056
+ },
+ {
+ "epoch": 14.685015290519878,
+ "grad_norm": 0.20437054336071014,
+ "learning_rate": 0.0006,
+ "loss": 4.151417255401611,
+ "step": 1057
+ },
+ {
+ "epoch": 14.698995194408038,
+ "grad_norm": 0.1926720291376114,
+ "learning_rate": 0.0006,
+ "loss": 4.091334342956543,
+ "step": 1058
+ },
+ {
+ "epoch": 14.7129750982962,
+ "grad_norm": 0.2120140641927719,
+ "learning_rate": 0.0006,
+ "loss": 4.111706256866455,
+ "step": 1059
+ },
+ {
+ "epoch": 14.72695500218436,
+ "grad_norm": 0.22877076268196106,
+ "learning_rate": 0.0006,
+ "loss": 4.123166084289551,
+ "step": 1060
+ },
+ {
+ "epoch": 14.740934906072521,
+ "grad_norm": 0.22149473428726196,
+ "learning_rate": 0.0006,
+ "loss": 4.099740028381348,
+ "step": 1061
+ },
+ {
+ "epoch": 14.754914809960681,
+ "grad_norm": 0.2351604402065277,
+ "learning_rate": 0.0006,
+ "loss": 4.066174507141113,
+ "step": 1062
+ },
+ {
+ "epoch": 14.768894713848843,
+ "grad_norm": 0.22895802557468414,
+ "learning_rate": 0.0006,
+ "loss": 4.101897239685059,
+ "step": 1063
+ },
+ {
+ "epoch": 14.782874617737003,
+ "grad_norm": 0.22050750255584717,
+ "learning_rate": 0.0006,
+ "loss": 4.122953414916992,
+ "step": 1064
+ },
+ {
+ "epoch": 14.796854521625164,
+ "grad_norm": 0.23255324363708496,
+ "learning_rate": 0.0006,
+ "loss": 4.11297607421875,
+ "step": 1065
+ },
+ {
+ "epoch": 14.810834425513324,
+ "grad_norm": 0.24522703886032104,
+ "learning_rate": 0.0006,
+ "loss": 4.131030082702637,
+ "step": 1066
+ },
+ {
+ "epoch": 14.824814329401486,
+ "grad_norm": 0.2492702752351761,
+ "learning_rate": 0.0006,
+ "loss": 4.076324939727783,
+ "step": 1067
+ },
+ {
+ "epoch": 14.838794233289645,
+ "grad_norm": 0.24410948157310486,
+ "learning_rate": 0.0006,
+ "loss": 4.109020709991455,
+ "step": 1068
+ },
+ {
+ "epoch": 14.852774137177807,
+ "grad_norm": 0.2463168203830719,
+ "learning_rate": 0.0006,
+ "loss": 4.135679244995117,
+ "step": 1069
+ },
+ {
+ "epoch": 14.866754041065967,
+ "grad_norm": 0.2563146650791168,
+ "learning_rate": 0.0006,
+ "loss": 4.0958027839660645,
+ "step": 1070
+ },
+ {
+ "epoch": 14.880733944954128,
+ "grad_norm": 0.261167049407959,
+ "learning_rate": 0.0006,
+ "loss": 4.114803314208984,
+ "step": 1071
+ },
+ {
+ "epoch": 14.89471384884229,
+ "grad_norm": 0.2593795955181122,
+ "learning_rate": 0.0006,
+ "loss": 4.1210618019104,
+ "step": 1072
+ },
+ {
+ "epoch": 14.90869375273045,
+ "grad_norm": 0.27184173464775085,
+ "learning_rate": 0.0006,
+ "loss": 4.095145225524902,
+ "step": 1073
+ },
+ {
+ "epoch": 14.922673656618612,
+ "grad_norm": 0.25289732217788696,
+ "learning_rate": 0.0006,
+ "loss": 4.107388973236084,
+ "step": 1074
+ },
+ {
+ "epoch": 14.936653560506771,
+ "grad_norm": 0.2176840454339981,
+ "learning_rate": 0.0006,
+ "loss": 4.105966567993164,
+ "step": 1075
+ },
+ {
+ "epoch": 14.950633464394933,
+ "grad_norm": 0.20930173993110657,
+ "learning_rate": 0.0006,
+ "loss": 4.126853942871094,
+ "step": 1076
+ },
+ {
+ "epoch": 14.964613368283093,
+ "grad_norm": 0.20850051939487457,
+ "learning_rate": 0.0006,
+ "loss": 4.074934959411621,
+ "step": 1077
+ },
+ {
+ "epoch": 14.978593272171254,
+ "grad_norm": 0.21987544000148773,
+ "learning_rate": 0.0006,
+ "loss": 4.123321533203125,
+ "step": 1078
+ },
+ {
+ "epoch": 14.992573176059414,
+ "grad_norm": 0.23821689188480377,
+ "learning_rate": 0.0006,
+ "loss": 4.082647323608398,
+ "step": 1079
+ },
+ {
+ "epoch": 15.0,
+ "grad_norm": 0.2590881288051605,
+ "learning_rate": 0.0006,
+ "loss": 4.113482475280762,
+ "step": 1080
+ },
+ {
+ "epoch": 15.0,
+ "eval_loss": 4.286936283111572,
+ "eval_runtime": 44.2665,
+ "eval_samples_per_second": 55.166,
+ "eval_steps_per_second": 3.456,
+ "step": 1080
+ },
+ {
+ "epoch": 15.013979903888162,
+ "grad_norm": 0.27885961532592773,
+ "learning_rate": 0.0006,
+ "loss": 4.0825958251953125,
+ "step": 1081
+ },
+ {
+ "epoch": 15.027959807776321,
+ "grad_norm": 0.2751246690750122,
+ "learning_rate": 0.0006,
+ "loss": 4.049782752990723,
+ "step": 1082
+ },
+ {
+ "epoch": 15.041939711664483,
+ "grad_norm": 0.25238561630249023,
+ "learning_rate": 0.0006,
+ "loss": 4.067366600036621,
+ "step": 1083
+ },
+ {
+ "epoch": 15.055919615552643,
+ "grad_norm": 0.27481040358543396,
+ "learning_rate": 0.0006,
+ "loss": 4.089946746826172,
+ "step": 1084
+ },
+ {
+ "epoch": 15.069899519440805,
+ "grad_norm": 0.2666703164577484,
+ "learning_rate": 0.0006,
+ "loss": 4.071957588195801,
+ "step": 1085
+ },
+ {
+ "epoch": 15.083879423328964,
+ "grad_norm": 0.2532065212726593,
+ "learning_rate": 0.0006,
+ "loss": 4.091561794281006,
+ "step": 1086
+ },
+ {
+ "epoch": 15.097859327217126,
+ "grad_norm": 0.23562374711036682,
+ "learning_rate": 0.0006,
+ "loss": 4.074953079223633,
+ "step": 1087
+ },
+ {
+ "epoch": 15.111839231105286,
+ "grad_norm": 0.2498065084218979,
+ "learning_rate": 0.0006,
+ "loss": 4.056004047393799,
+ "step": 1088
+ },
+ {
+ "epoch": 15.125819134993447,
+ "grad_norm": 0.257046639919281,
+ "learning_rate": 0.0006,
+ "loss": 4.044149875640869,
+ "step": 1089
+ },
+ {
+ "epoch": 15.139799038881607,
+ "grad_norm": 0.2417808622121811,
+ "learning_rate": 0.0006,
+ "loss": 4.071811676025391,
+ "step": 1090
+ },
+ {
+ "epoch": 15.153778942769769,
+ "grad_norm": 0.24742013216018677,
+ "learning_rate": 0.0006,
+ "loss": 4.081482887268066,
+ "step": 1091
+ },
+ {
+ "epoch": 15.167758846657929,
+ "grad_norm": 0.2610231637954712,
+ "learning_rate": 0.0006,
+ "loss": 4.06953763961792,
+ "step": 1092
+ },
+ {
+ "epoch": 15.18173875054609,
+ "grad_norm": 0.24688200652599335,
+ "learning_rate": 0.0006,
+ "loss": 4.079700469970703,
+ "step": 1093
+ },
+ {
+ "epoch": 15.19571865443425,
+ "grad_norm": 0.2650167942047119,
+ "learning_rate": 0.0006,
+ "loss": 4.082088947296143,
+ "step": 1094
+ },
+ {
+ "epoch": 15.209698558322412,
+ "grad_norm": 0.25913330912590027,
+ "learning_rate": 0.0006,
+ "loss": 4.081713676452637,
+ "step": 1095
+ },
+ {
+ "epoch": 15.223678462210572,
+ "grad_norm": 0.2547631561756134,
+ "learning_rate": 0.0006,
+ "loss": 4.073573112487793,
+ "step": 1096
+ },
+ {
+ "epoch": 15.237658366098733,
+ "grad_norm": 0.2732609510421753,
+ "learning_rate": 0.0006,
+ "loss": 4.10186767578125,
+ "step": 1097
+ },
+ {
+ "epoch": 15.251638269986893,
+ "grad_norm": 0.2990017533302307,
+ "learning_rate": 0.0006,
+ "loss": 4.085466384887695,
+ "step": 1098
+ },
+ {
+ "epoch": 15.265618173875055,
+ "grad_norm": 0.30252209305763245,
+ "learning_rate": 0.0006,
+ "loss": 4.077337265014648,
+ "step": 1099
+ },
+ {
+ "epoch": 15.279598077763215,
+ "grad_norm": 0.30046045780181885,
+ "learning_rate": 0.0006,
+ "loss": 4.0895891189575195,
+ "step": 1100
+ },
+ {
+ "epoch": 15.293577981651376,
+ "grad_norm": 0.2779843211174011,
+ "learning_rate": 0.0006,
+ "loss": 4.060354709625244,
+ "step": 1101
+ },
+ {
+ "epoch": 15.307557885539538,
+ "grad_norm": 0.26914986968040466,
+ "learning_rate": 0.0006,
+ "loss": 4.07314395904541,
+ "step": 1102
+ },
+ {
+ "epoch": 15.321537789427698,
+ "grad_norm": 0.24605873227119446,
+ "learning_rate": 0.0006,
+ "loss": 4.051377296447754,
+ "step": 1103
+ },
+ {
+ "epoch": 15.33551769331586,
+ "grad_norm": 0.25634095072746277,
+ "learning_rate": 0.0006,
+ "loss": 4.082427024841309,
+ "step": 1104
+ },
+ {
+ "epoch": 15.349497597204019,
+ "grad_norm": 0.2888158857822418,
+ "learning_rate": 0.0006,
+ "loss": 4.074253082275391,
+ "step": 1105
+ },
+ {
+ "epoch": 15.36347750109218,
+ "grad_norm": 0.2758261561393738,
+ "learning_rate": 0.0006,
+ "loss": 4.08344841003418,
+ "step": 1106
+ },
+ {
+ "epoch": 15.37745740498034,
+ "grad_norm": 0.26937270164489746,
+ "learning_rate": 0.0006,
+ "loss": 4.063424587249756,
+ "step": 1107
+ },
+ {
+ "epoch": 15.391437308868502,
+ "grad_norm": 0.2739955484867096,
+ "learning_rate": 0.0006,
+ "loss": 4.08005952835083,
+ "step": 1108
+ },
+ {
+ "epoch": 15.405417212756662,
+ "grad_norm": 0.2635386288166046,
+ "learning_rate": 0.0006,
+ "loss": 4.087360382080078,
+ "step": 1109
+ },
+ {
+ "epoch": 15.419397116644824,
+ "grad_norm": 0.2619768977165222,
+ "learning_rate": 0.0006,
+ "loss": 4.072653770446777,
+ "step": 1110
+ },
+ {
+ "epoch": 15.433377020532983,
+ "grad_norm": 0.24154804646968842,
+ "learning_rate": 0.0006,
+ "loss": 4.084464073181152,
+ "step": 1111
+ },
+ {
+ "epoch": 15.447356924421145,
+ "grad_norm": 0.24236027896404266,
+ "learning_rate": 0.0006,
+ "loss": 4.078777313232422,
+ "step": 1112
+ },
+ {
+ "epoch": 15.461336828309305,
+ "grad_norm": 0.24653038382530212,
+ "learning_rate": 0.0006,
+ "loss": 4.075024604797363,
+ "step": 1113
+ },
+ {
+ "epoch": 15.475316732197467,
+ "grad_norm": 0.27106523513793945,
+ "learning_rate": 0.0006,
+ "loss": 4.060937881469727,
+ "step": 1114
+ },
+ {
+ "epoch": 15.489296636085626,
+ "grad_norm": 0.25109633803367615,
+ "learning_rate": 0.0006,
+ "loss": 4.081971168518066,
+ "step": 1115
+ },
+ {
+ "epoch": 15.503276539973788,
+ "grad_norm": 0.23452287912368774,
+ "learning_rate": 0.0006,
+ "loss": 4.0762834548950195,
+ "step": 1116
+ },
+ {
+ "epoch": 15.517256443861948,
+ "grad_norm": 0.25415024161338806,
+ "learning_rate": 0.0006,
+ "loss": 4.069386959075928,
+ "step": 1117
+ },
+ {
+ "epoch": 15.53123634775011,
+ "grad_norm": 0.25448229908943176,
+ "learning_rate": 0.0006,
+ "loss": 4.075098514556885,
+ "step": 1118
+ },
+ {
+ "epoch": 15.54521625163827,
+ "grad_norm": 0.25679755210876465,
+ "learning_rate": 0.0006,
+ "loss": 4.097431182861328,
+ "step": 1119
+ },
+ {
+ "epoch": 15.55919615552643,
+ "grad_norm": 0.25973212718963623,
+ "learning_rate": 0.0006,
+ "loss": 4.058948516845703,
+ "step": 1120
+ },
+ {
+ "epoch": 15.57317605941459,
+ "grad_norm": 0.24511456489562988,
+ "learning_rate": 0.0006,
+ "loss": 4.092263698577881,
+ "step": 1121
+ },
+ {
+ "epoch": 15.587155963302752,
+ "grad_norm": 0.22949442267417908,
+ "learning_rate": 0.0006,
+ "loss": 4.0526604652404785,
+ "step": 1122
+ },
+ {
+ "epoch": 15.601135867190912,
+ "grad_norm": 0.22486285865306854,
+ "learning_rate": 0.0006,
+ "loss": 4.051939010620117,
+ "step": 1123
+ },
+ {
+ "epoch": 15.615115771079074,
+ "grad_norm": 0.22183601558208466,
+ "learning_rate": 0.0006,
+ "loss": 4.065430641174316,
+ "step": 1124
+ },
+ {
+ "epoch": 15.629095674967235,
+ "grad_norm": 0.2531328797340393,
+ "learning_rate": 0.0006,
+ "loss": 4.069165229797363,
+ "step": 1125
+ },
+ {
+ "epoch": 15.643075578855395,
+ "grad_norm": 0.24403320252895355,
+ "learning_rate": 0.0006,
+ "loss": 4.055041790008545,
+ "step": 1126
+ },
+ {
+ "epoch": 15.657055482743557,
+ "grad_norm": 0.24504756927490234,
+ "learning_rate": 0.0006,
+ "loss": 4.035850524902344,
+ "step": 1127
+ },
+ {
+ "epoch": 15.671035386631717,
+ "grad_norm": 0.23812057077884674,
+ "learning_rate": 0.0006,
+ "loss": 4.049278259277344,
+ "step": 1128
+ },
+ {
+ "epoch": 15.685015290519878,
+ "grad_norm": 0.23694153130054474,
+ "learning_rate": 0.0006,
+ "loss": 4.065816402435303,
+ "step": 1129
+ },
+ {
+ "epoch": 15.698995194408038,
+ "grad_norm": 0.23252786695957184,
+ "learning_rate": 0.0006,
+ "loss": 4.05952262878418,
+ "step": 1130
+ },
+ {
+ "epoch": 15.7129750982962,
+ "grad_norm": 0.2243805080652237,
+ "learning_rate": 0.0006,
+ "loss": 4.058291435241699,
+ "step": 1131
+ },
+ {
+ "epoch": 15.72695500218436,
+ "grad_norm": 0.2200988084077835,
+ "learning_rate": 0.0006,
+ "loss": 4.040788650512695,
+ "step": 1132
+ },
+ {
+ "epoch": 15.740934906072521,
+ "grad_norm": 0.21460631489753723,
+ "learning_rate": 0.0006,
+ "loss": 4.072552680969238,
+ "step": 1133
+ },
+ {
+ "epoch": 15.754914809960681,
+ "grad_norm": 0.2056441456079483,
+ "learning_rate": 0.0006,
+ "loss": 4.059467315673828,
+ "step": 1134
+ },
+ {
+ "epoch": 15.768894713848843,
+ "grad_norm": 0.2068045437335968,
+ "learning_rate": 0.0006,
+ "loss": 4.063803195953369,
+ "step": 1135
+ },
+ {
+ "epoch": 15.782874617737003,
+ "grad_norm": 0.21307601034641266,
+ "learning_rate": 0.0006,
+ "loss": 4.093092918395996,
+ "step": 1136
+ },
+ {
+ "epoch": 15.796854521625164,
+ "grad_norm": 0.20729634165763855,
+ "learning_rate": 0.0006,
+ "loss": 4.066030502319336,
+ "step": 1137
+ },
+ {
+ "epoch": 15.810834425513324,
+ "grad_norm": 0.2097514122724533,
+ "learning_rate": 0.0006,
+ "loss": 4.077326774597168,
+ "step": 1138
+ },
+ {
+ "epoch": 15.824814329401486,
+ "grad_norm": 0.21884000301361084,
+ "learning_rate": 0.0006,
+ "loss": 4.0595598220825195,
+ "step": 1139
+ },
+ {
+ "epoch": 15.838794233289645,
+ "grad_norm": 0.22220250964164734,
+ "learning_rate": 0.0006,
+ "loss": 4.061574459075928,
+ "step": 1140
+ },
+ {
+ "epoch": 15.852774137177807,
+ "grad_norm": 0.23189949989318848,
+ "learning_rate": 0.0006,
+ "loss": 4.0504045486450195,
+ "step": 1141
+ },
+ {
+ "epoch": 15.866754041065967,
+ "grad_norm": 0.226649671792984,
+ "learning_rate": 0.0006,
+ "loss": 4.060986518859863,
+ "step": 1142
+ },
+ {
+ "epoch": 15.880733944954128,
+ "grad_norm": 0.2456834763288498,
+ "learning_rate": 0.0006,
+ "loss": 4.038525581359863,
+ "step": 1143
+ },
+ {
+ "epoch": 15.89471384884229,
+ "grad_norm": 0.2818352282047272,
+ "learning_rate": 0.0006,
+ "loss": 4.062709331512451,
+ "step": 1144
+ },
+ {
+ "epoch": 15.90869375273045,
+ "grad_norm": 0.2850170135498047,
+ "learning_rate": 0.0006,
+ "loss": 4.0683274269104,
+ "step": 1145
+ },
+ {
+ "epoch": 15.922673656618612,
+ "grad_norm": 0.27691730856895447,
+ "learning_rate": 0.0006,
+ "loss": 4.076540470123291,
+ "step": 1146
+ },
+ {
+ "epoch": 15.936653560506771,
+ "grad_norm": 0.2685548961162567,
+ "learning_rate": 0.0006,
+ "loss": 4.048116683959961,
+ "step": 1147
+ },
+ {
+ "epoch": 15.950633464394933,
+ "grad_norm": 0.2452288419008255,
+ "learning_rate": 0.0006,
+ "loss": 4.06640625,
+ "step": 1148
+ },
+ {
+ "epoch": 15.964613368283093,
+ "grad_norm": 0.2601441740989685,
+ "learning_rate": 0.0006,
+ "loss": 4.073277473449707,
+ "step": 1149
+ },
+ {
+ "epoch": 15.978593272171254,
+ "grad_norm": 0.2748197913169861,
+ "learning_rate": 0.0006,
+ "loss": 4.0332536697387695,
+ "step": 1150
+ },
+ {
+ "epoch": 15.992573176059414,
+ "grad_norm": 0.27249959111213684,
+ "learning_rate": 0.0006,
+ "loss": 3.9952516555786133,
+ "step": 1151
+ },
+ {
+ "epoch": 16.0,
+ "grad_norm": 0.3475601375102997,
+ "learning_rate": 0.0006,
+ "loss": 4.040761947631836,
+ "step": 1152
+ },
+ {
+ "epoch": 16.0,
+ "eval_loss": 4.237997531890869,
+ "eval_runtime": 43.8692,
+ "eval_samples_per_second": 55.665,
+ "eval_steps_per_second": 3.488,
+ "step": 1152
+ },
+ {
+ "epoch": 16.01397990388816,
+ "grad_norm": 0.3365611433982849,
+ "learning_rate": 0.0006,
+ "loss": 4.031302452087402,
+ "step": 1153
+ },
+ {
+ "epoch": 16.027959807776323,
+ "grad_norm": 0.3020530641078949,
+ "learning_rate": 0.0006,
+ "loss": 4.036273956298828,
+ "step": 1154
+ },
+ {
+ "epoch": 16.041939711664483,
+ "grad_norm": 0.25277993083000183,
+ "learning_rate": 0.0006,
+ "loss": 4.007067680358887,
+ "step": 1155
+ },
+ {
+ "epoch": 16.055919615552643,
+ "grad_norm": 0.24762840569019318,
+ "learning_rate": 0.0006,
+ "loss": 4.046561241149902,
+ "step": 1156
+ },
+ {
+ "epoch": 16.069899519440803,
+ "grad_norm": 0.25236397981643677,
+ "learning_rate": 0.0006,
+ "loss": 4.061616897583008,
+ "step": 1157
+ },
+ {
+ "epoch": 16.083879423328966,
+ "grad_norm": 0.22789105772972107,
+ "learning_rate": 0.0006,
+ "loss": 4.010061740875244,
+ "step": 1158
+ },
+ {
+ "epoch": 16.097859327217126,
+ "grad_norm": 0.21866244077682495,
+ "learning_rate": 0.0006,
+ "loss": 4.0181097984313965,
+ "step": 1159
+ },
+ {
+ "epoch": 16.111839231105286,
+ "grad_norm": 0.21889029443264008,
+ "learning_rate": 0.0006,
+ "loss": 4.012239456176758,
+ "step": 1160
+ },
+ {
+ "epoch": 16.125819134993446,
+ "grad_norm": 0.23002485930919647,
+ "learning_rate": 0.0006,
+ "loss": 4.034092426300049,
+ "step": 1161
+ },
+ {
+ "epoch": 16.13979903888161,
+ "grad_norm": 0.2271798551082611,
+ "learning_rate": 0.0006,
+ "loss": 4.026222229003906,
+ "step": 1162
+ },
+ {
+ "epoch": 16.15377894276977,
+ "grad_norm": 0.238200843334198,
+ "learning_rate": 0.0006,
+ "loss": 4.044692039489746,
+ "step": 1163
+ },
+ {
+ "epoch": 16.16775884665793,
+ "grad_norm": 0.2281467169523239,
+ "learning_rate": 0.0006,
+ "loss": 4.032305717468262,
+ "step": 1164
+ },
+ {
+ "epoch": 16.18173875054609,
+ "grad_norm": 0.2213946431875229,
+ "learning_rate": 0.0006,
+ "loss": 4.048737525939941,
+ "step": 1165
+ },
+ {
+ "epoch": 16.195718654434252,
+ "grad_norm": 0.26638558506965637,
+ "learning_rate": 0.0006,
+ "loss": 4.006335258483887,
+ "step": 1166
+ },
+ {
+ "epoch": 16.209698558322412,
+ "grad_norm": 0.2780219316482544,
+ "learning_rate": 0.0006,
+ "loss": 4.049234390258789,
+ "step": 1167
+ },
+ {
+ "epoch": 16.22367846221057,
+ "grad_norm": 0.27425870299339294,
+ "learning_rate": 0.0006,
+ "loss": 4.017177104949951,
+ "step": 1168
+ },
+ {
+ "epoch": 16.23765836609873,
+ "grad_norm": 0.2596667408943176,
+ "learning_rate": 0.0006,
+ "loss": 4.022942543029785,
+ "step": 1169
+ },
+ {
+ "epoch": 16.251638269986895,
+ "grad_norm": 0.26972314715385437,
+ "learning_rate": 0.0006,
+ "loss": 4.035310745239258,
+ "step": 1170
+ },
+ {
+ "epoch": 16.265618173875055,
+ "grad_norm": 0.2677772045135498,
+ "learning_rate": 0.0006,
+ "loss": 4.0280561447143555,
+ "step": 1171
+ },
+ {
+ "epoch": 16.279598077763215,
+ "grad_norm": 0.25433358550071716,
+ "learning_rate": 0.0006,
+ "loss": 4.03616189956665,
+ "step": 1172
+ },
+ {
+ "epoch": 16.293577981651374,
+ "grad_norm": 0.2583644688129425,
+ "learning_rate": 0.0006,
+ "loss": 4.073624134063721,
+ "step": 1173
+ },
+ {
+ "epoch": 16.307557885539538,
+ "grad_norm": 0.25437524914741516,
+ "learning_rate": 0.0006,
+ "loss": 4.057926654815674,
+ "step": 1174
+ },
+ {
+ "epoch": 16.321537789427698,
+ "grad_norm": 0.2819201350212097,
+ "learning_rate": 0.0006,
+ "loss": 4.020838737487793,
+ "step": 1175
+ },
+ {
+ "epoch": 16.335517693315857,
+ "grad_norm": 0.32689282298088074,
+ "learning_rate": 0.0006,
+ "loss": 4.062448501586914,
+ "step": 1176
+ },
+ {
+ "epoch": 16.34949759720402,
+ "grad_norm": 0.33002278208732605,
+ "learning_rate": 0.0006,
+ "loss": 4.052059173583984,
+ "step": 1177
+ },
+ {
+ "epoch": 16.36347750109218,
+ "grad_norm": 0.32472696900367737,
+ "learning_rate": 0.0006,
+ "loss": 4.042375564575195,
+ "step": 1178
+ },
+ {
+ "epoch": 16.37745740498034,
+ "grad_norm": 0.35279813408851624,
+ "learning_rate": 0.0006,
+ "loss": 4.028722763061523,
+ "step": 1179
+ },
+ {
+ "epoch": 16.3914373088685,
+ "grad_norm": 0.3243204951286316,
+ "learning_rate": 0.0006,
+ "loss": 4.045693874359131,
+ "step": 1180
+ },
+ {
+ "epoch": 16.405417212756664,
+ "grad_norm": 0.32171115279197693,
+ "learning_rate": 0.0006,
+ "loss": 4.018350124359131,
+ "step": 1181
+ },
+ {
+ "epoch": 16.419397116644824,
+ "grad_norm": 0.31459906697273254,
+ "learning_rate": 0.0006,
+ "loss": 4.039547443389893,
+ "step": 1182
+ },
+ {
+ "epoch": 16.433377020532983,
+ "grad_norm": 0.35038673877716064,
+ "learning_rate": 0.0006,
+ "loss": 4.005928039550781,
+ "step": 1183
+ },
+ {
+ "epoch": 16.447356924421143,
+ "grad_norm": 0.34110963344573975,
+ "learning_rate": 0.0006,
+ "loss": 4.042272090911865,
+ "step": 1184
+ },
+ {
+ "epoch": 16.461336828309307,
+ "grad_norm": 0.33760902285575867,
+ "learning_rate": 0.0006,
+ "loss": 4.02886962890625,
+ "step": 1185
+ },
+ {
+ "epoch": 16.475316732197467,
+ "grad_norm": 0.3162464499473572,
+ "learning_rate": 0.0006,
+ "loss": 4.059924125671387,
+ "step": 1186
+ },
+ {
+ "epoch": 16.489296636085626,
+ "grad_norm": 0.2667233645915985,
+ "learning_rate": 0.0006,
+ "loss": 4.069073677062988,
+ "step": 1187
+ },
+ {
+ "epoch": 16.503276539973786,
+ "grad_norm": 0.22626568377017975,
+ "learning_rate": 0.0006,
+ "loss": 4.044912338256836,
+ "step": 1188
+ },
+ {
+ "epoch": 16.51725644386195,
+ "grad_norm": 0.203303262591362,
+ "learning_rate": 0.0006,
+ "loss": 4.025210380554199,
+ "step": 1189
+ },
+ {
+ "epoch": 16.53123634775011,
+ "grad_norm": 0.2108820080757141,
+ "learning_rate": 0.0006,
+ "loss": 4.035998821258545,
+ "step": 1190
+ },
+ {
+ "epoch": 16.54521625163827,
+ "grad_norm": 0.20451335608959198,
+ "learning_rate": 0.0006,
+ "loss": 4.043377876281738,
+ "step": 1191
+ },
+ {
+ "epoch": 16.55919615552643,
+ "grad_norm": 0.23348836600780487,
+ "learning_rate": 0.0006,
+ "loss": 4.033735275268555,
+ "step": 1192
+ },
+ {
+ "epoch": 16.573176059414592,
+ "grad_norm": 0.24438607692718506,
+ "learning_rate": 0.0006,
+ "loss": 4.071747779846191,
+ "step": 1193
+ },
+ {
+ "epoch": 16.587155963302752,
+ "grad_norm": 0.24233631789684296,
+ "learning_rate": 0.0006,
+ "loss": 4.0138702392578125,
+ "step": 1194
+ },
+ {
+ "epoch": 16.601135867190912,
+ "grad_norm": 0.21625740826129913,
+ "learning_rate": 0.0006,
+ "loss": 4.013422012329102,
+ "step": 1195
+ },
+ {
+ "epoch": 16.615115771079076,
+ "grad_norm": 0.22447720170021057,
+ "learning_rate": 0.0006,
+ "loss": 4.056326866149902,
+ "step": 1196
+ },
+ {
+ "epoch": 16.629095674967235,
+ "grad_norm": 0.21899616718292236,
+ "learning_rate": 0.0006,
+ "loss": 4.006134033203125,
+ "step": 1197
+ },
+ {
+ "epoch": 16.643075578855395,
+ "grad_norm": 0.191362664103508,
+ "learning_rate": 0.0006,
+ "loss": 4.036748886108398,
+ "step": 1198
+ },
+ {
+ "epoch": 16.657055482743555,
+ "grad_norm": 0.20203463733196259,
+ "learning_rate": 0.0006,
+ "loss": 4.006264686584473,
+ "step": 1199
+ },
+ {
+ "epoch": 16.67103538663172,
+ "grad_norm": 0.20209139585494995,
+ "learning_rate": 0.0006,
+ "loss": 4.059018135070801,
+ "step": 1200
+ },
+ {
+ "epoch": 16.68501529051988,
+ "grad_norm": 0.20811820030212402,
+ "learning_rate": 0.0006,
+ "loss": 4.054325103759766,
+ "step": 1201
+ },
+ {
+ "epoch": 16.698995194408038,
+ "grad_norm": 0.22448928654193878,
+ "learning_rate": 0.0006,
+ "loss": 3.996121406555176,
+ "step": 1202
+ },
+ {
+ "epoch": 16.712975098296198,
+ "grad_norm": 0.21692240238189697,
+ "learning_rate": 0.0006,
+ "loss": 4.042046546936035,
+ "step": 1203
+ },
+ {
+ "epoch": 16.72695500218436,
+ "grad_norm": 0.20688563585281372,
+ "learning_rate": 0.0006,
+ "loss": 4.002251625061035,
+ "step": 1204
+ },
+ {
+ "epoch": 16.74093490607252,
+ "grad_norm": 0.1835535764694214,
+ "learning_rate": 0.0006,
+ "loss": 4.02545166015625,
+ "step": 1205
+ },
+ {
+ "epoch": 16.75491480996068,
+ "grad_norm": 0.20532558858394623,
+ "learning_rate": 0.0006,
+ "loss": 4.039333343505859,
+ "step": 1206
+ },
+ {
+ "epoch": 16.76889471384884,
+ "grad_norm": 0.2214215099811554,
+ "learning_rate": 0.0006,
+ "loss": 4.037858486175537,
+ "step": 1207
+ },
+ {
+ "epoch": 16.782874617737004,
+ "grad_norm": 0.24926038086414337,
+ "learning_rate": 0.0006,
+ "loss": 4.024799346923828,
+ "step": 1208
+ },
+ {
+ "epoch": 16.796854521625164,
+ "grad_norm": 0.26057952642440796,
+ "learning_rate": 0.0006,
+ "loss": 4.042788505554199,
+ "step": 1209
+ },
+ {
+ "epoch": 16.810834425513324,
+ "grad_norm": 0.2501208782196045,
+ "learning_rate": 0.0006,
+ "loss": 4.051809310913086,
+ "step": 1210
+ },
+ {
+ "epoch": 16.824814329401484,
+ "grad_norm": 0.21760012209415436,
+ "learning_rate": 0.0006,
+ "loss": 4.063589096069336,
+ "step": 1211
+ },
+ {
+ "epoch": 16.838794233289647,
+ "grad_norm": 0.2243622988462448,
+ "learning_rate": 0.0006,
+ "loss": 4.008829593658447,
+ "step": 1212
+ },
+ {
+ "epoch": 16.852774137177807,
+ "grad_norm": 0.2399163395166397,
+ "learning_rate": 0.0006,
+ "loss": 4.013262748718262,
+ "step": 1213
+ },
+ {
+ "epoch": 16.866754041065967,
+ "grad_norm": 0.23187831044197083,
+ "learning_rate": 0.0006,
+ "loss": 4.023053169250488,
+ "step": 1214
+ },
+ {
+ "epoch": 16.88073394495413,
+ "grad_norm": 0.23723892867565155,
+ "learning_rate": 0.0006,
+ "loss": 3.991321563720703,
+ "step": 1215
+ },
+ {
+ "epoch": 16.89471384884229,
+ "grad_norm": 0.21766342222690582,
+ "learning_rate": 0.0006,
+ "loss": 4.0250773429870605,
+ "step": 1216
+ },
+ {
+ "epoch": 16.90869375273045,
+ "grad_norm": 0.20715023577213287,
+ "learning_rate": 0.0006,
+ "loss": 4.063642978668213,
+ "step": 1217
+ },
+ {
+ "epoch": 16.92267365661861,
+ "grad_norm": 0.20165133476257324,
+ "learning_rate": 0.0006,
+ "loss": 3.9951367378234863,
+ "step": 1218
+ },
+ {
+ "epoch": 16.936653560506773,
+ "grad_norm": 0.19956178963184357,
+ "learning_rate": 0.0006,
+ "loss": 4.025641441345215,
+ "step": 1219
+ },
+ {
+ "epoch": 16.950633464394933,
+ "grad_norm": 0.2175494134426117,
+ "learning_rate": 0.0006,
+ "loss": 4.030346393585205,
+ "step": 1220
+ },
+ {
+ "epoch": 16.964613368283093,
+ "grad_norm": 0.22365593910217285,
+ "learning_rate": 0.0006,
+ "loss": 4.018105506896973,
+ "step": 1221
+ },
+ {
+ "epoch": 16.978593272171253,
+ "grad_norm": 0.21251538395881653,
+ "learning_rate": 0.0006,
+ "loss": 4.023580074310303,
+ "step": 1222
+ },
+ {
+ "epoch": 16.992573176059416,
+ "grad_norm": 0.2230125218629837,
+ "learning_rate": 0.0006,
+ "loss": 4.001980304718018,
+ "step": 1223
+ },
+ {
+ "epoch": 17.0,
+ "grad_norm": 0.24261972308158875,
+ "learning_rate": 0.0006,
+ "loss": 4.081348896026611,
+ "step": 1224
+ },
+ {
+ "epoch": 17.0,
+ "eval_loss": 4.225194931030273,
+ "eval_runtime": 44.247,
+ "eval_samples_per_second": 55.19,
+ "eval_steps_per_second": 3.458,
+ "step": 1224
+ },
+ {
+ "epoch": 17.01397990388816,
+ "grad_norm": 0.2438880205154419,
+ "learning_rate": 0.0006,
+ "loss": 4.0164794921875,
+ "step": 1225
+ },
+ {
+ "epoch": 17.027959807776323,
+ "grad_norm": 0.22459383308887482,
+ "learning_rate": 0.0006,
+ "loss": 3.991623878479004,
+ "step": 1226
+ },
+ {
+ "epoch": 17.041939711664483,
+ "grad_norm": 0.25021040439605713,
+ "learning_rate": 0.0006,
+ "loss": 4.003020286560059,
+ "step": 1227
+ },
+ {
+ "epoch": 17.055919615552643,
+ "grad_norm": 0.30358025431632996,
+ "learning_rate": 0.0006,
+ "loss": 3.980921983718872,
+ "step": 1228
+ },
+ {
+ "epoch": 17.069899519440803,
+ "grad_norm": 0.27313271164894104,
+ "learning_rate": 0.0006,
+ "loss": 3.992398977279663,
+ "step": 1229
+ },
+ {
+ "epoch": 17.083879423328966,
+ "grad_norm": 0.2293211966753006,
+ "learning_rate": 0.0006,
+ "loss": 4.02568244934082,
+ "step": 1230
+ },
+ {
+ "epoch": 17.097859327217126,
+ "grad_norm": 0.2363300621509552,
+ "learning_rate": 0.0006,
+ "loss": 3.977229356765747,
+ "step": 1231
+ },
+ {
+ "epoch": 17.111839231105286,
+ "grad_norm": 0.2809674143791199,
+ "learning_rate": 0.0006,
+ "loss": 3.9720497131347656,
+ "step": 1232
+ },
+ {
+ "epoch": 17.125819134993446,
+ "grad_norm": 0.2913855016231537,
+ "learning_rate": 0.0006,
+ "loss": 3.979529857635498,
+ "step": 1233
+ },
+ {
+ "epoch": 17.13979903888161,
+ "grad_norm": 0.2920287251472473,
+ "learning_rate": 0.0006,
+ "loss": 3.9678473472595215,
+ "step": 1234
+ },
+ {
+ "epoch": 17.15377894276977,
+ "grad_norm": 0.2521543502807617,
+ "learning_rate": 0.0006,
+ "loss": 3.9912607669830322,
+ "step": 1235
+ },
+ {
+ "epoch": 17.16775884665793,
+ "grad_norm": 0.22844268381595612,
+ "learning_rate": 0.0006,
+ "loss": 3.9898228645324707,
+ "step": 1236
+ },
+ {
+ "epoch": 17.18173875054609,
+ "grad_norm": 0.2199884057044983,
+ "learning_rate": 0.0006,
+ "loss": 4.0050740242004395,
+ "step": 1237
+ },
+ {
+ "epoch": 17.195718654434252,
+ "grad_norm": 0.23072892427444458,
+ "learning_rate": 0.0006,
+ "loss": 3.9957475662231445,
+ "step": 1238
+ },
+ {
+ "epoch": 17.209698558322412,
+ "grad_norm": 0.2034899890422821,
+ "learning_rate": 0.0006,
+ "loss": 3.9672317504882812,
+ "step": 1239
+ },
+ {
+ "epoch": 17.22367846221057,
+ "grad_norm": 0.21826180815696716,
+ "learning_rate": 0.0006,
+ "loss": 3.98543119430542,
+ "step": 1240
+ },
+ {
+ "epoch": 17.23765836609873,
+ "grad_norm": 0.21203237771987915,
+ "learning_rate": 0.0006,
+ "loss": 3.9971959590911865,
+ "step": 1241
+ },
+ {
+ "epoch": 17.251638269986895,
+ "grad_norm": 0.22139234840869904,
+ "learning_rate": 0.0006,
+ "loss": 4.017539978027344,
+ "step": 1242
+ },
+ {
+ "epoch": 17.265618173875055,
+ "grad_norm": 0.21553276479244232,
+ "learning_rate": 0.0006,
+ "loss": 3.98740553855896,
+ "step": 1243
+ },
+ {
+ "epoch": 17.279598077763215,
+ "grad_norm": 0.23259080946445465,
+ "learning_rate": 0.0006,
+ "loss": 3.9963035583496094,
+ "step": 1244
+ },
+ {
+ "epoch": 17.293577981651374,
+ "grad_norm": 0.2527932822704315,
+ "learning_rate": 0.0006,
+ "loss": 4.0202956199646,
+ "step": 1245
+ },
+ {
+ "epoch": 17.307557885539538,
+ "grad_norm": 0.28669068217277527,
+ "learning_rate": 0.0006,
+ "loss": 3.9947609901428223,
+ "step": 1246
+ },
+ {
+ "epoch": 17.321537789427698,
+ "grad_norm": 0.341602623462677,
+ "learning_rate": 0.0006,
+ "loss": 3.997032642364502,
+ "step": 1247
+ },
+ {
+ "epoch": 17.335517693315857,
+ "grad_norm": 0.3364104926586151,
+ "learning_rate": 0.0006,
+ "loss": 3.9881834983825684,
+ "step": 1248
+ },
+ {
+ "epoch": 17.34949759720402,
+ "grad_norm": 0.2979278266429901,
+ "learning_rate": 0.0006,
+ "loss": 4.045898914337158,
+ "step": 1249
+ },
+ {
+ "epoch": 17.36347750109218,
+ "grad_norm": 0.2857462465763092,
+ "learning_rate": 0.0006,
+ "loss": 4.0085272789001465,
+ "step": 1250
+ },
+ {
+ "epoch": 17.37745740498034,
+ "grad_norm": 0.2689058780670166,
+ "learning_rate": 0.0006,
+ "loss": 4.021465301513672,
+ "step": 1251
+ },
+ {
+ "epoch": 17.3914373088685,
+ "grad_norm": 0.24943363666534424,
+ "learning_rate": 0.0006,
+ "loss": 4.003451347351074,
+ "step": 1252
+ },
+ {
+ "epoch": 17.405417212756664,
+ "grad_norm": 0.2635347843170166,
+ "learning_rate": 0.0006,
+ "loss": 3.9837827682495117,
+ "step": 1253
+ },
+ {
+ "epoch": 17.419397116644824,
+ "grad_norm": 0.29126450419425964,
+ "learning_rate": 0.0006,
+ "loss": 3.9857311248779297,
+ "step": 1254
+ },
+ {
+ "epoch": 17.433377020532983,
+ "grad_norm": 0.3166918456554413,
+ "learning_rate": 0.0006,
+ "loss": 3.9842967987060547,
+ "step": 1255
+ },
+ {
+ "epoch": 17.447356924421143,
+ "grad_norm": 0.27869969606399536,
+ "learning_rate": 0.0006,
+ "loss": 4.012607574462891,
+ "step": 1256
+ },
+ {
+ "epoch": 17.461336828309307,
+ "grad_norm": 0.23719419538974762,
+ "learning_rate": 0.0006,
+ "loss": 3.981034755706787,
+ "step": 1257
+ },
+ {
+ "epoch": 17.475316732197467,
+ "grad_norm": 0.22687610983848572,
+ "learning_rate": 0.0006,
+ "loss": 4.011059761047363,
+ "step": 1258
+ },
+ {
+ "epoch": 17.489296636085626,
+ "grad_norm": 0.22034095227718353,
+ "learning_rate": 0.0006,
+ "loss": 4.015044689178467,
+ "step": 1259
+ },
+ {
+ "epoch": 17.503276539973786,
+ "grad_norm": 0.21208405494689941,
+ "learning_rate": 0.0006,
+ "loss": 4.003793716430664,
+ "step": 1260
+ },
+ {
+ "epoch": 17.51725644386195,
+ "grad_norm": 0.21759214997291565,
+ "learning_rate": 0.0006,
+ "loss": 3.978652238845825,
+ "step": 1261
+ },
+ {
+ "epoch": 17.53123634775011,
+ "grad_norm": 0.22481068968772888,
+ "learning_rate": 0.0006,
+ "loss": 4.034845352172852,
+ "step": 1262
+ },
+ {
+ "epoch": 17.54521625163827,
+ "grad_norm": 0.20376387238502502,
+ "learning_rate": 0.0006,
+ "loss": 3.990541934967041,
+ "step": 1263
+ },
+ {
+ "epoch": 17.55919615552643,
+ "grad_norm": 0.20459355413913727,
+ "learning_rate": 0.0006,
+ "loss": 4.006990432739258,
+ "step": 1264
+ },
+ {
+ "epoch": 17.573176059414592,
+ "grad_norm": 0.19306913018226624,
+ "learning_rate": 0.0006,
+ "loss": 3.993408679962158,
+ "step": 1265
+ },
+ {
+ "epoch": 17.587155963302752,
+ "grad_norm": 0.20727239549160004,
+ "learning_rate": 0.0006,
+ "loss": 3.988016128540039,
+ "step": 1266
+ },
+ {
+ "epoch": 17.601135867190912,
+ "grad_norm": 0.20213133096694946,
+ "learning_rate": 0.0006,
+ "loss": 4.0120368003845215,
+ "step": 1267
+ },
+ {
+ "epoch": 17.615115771079076,
+ "grad_norm": 0.21074117720127106,
+ "learning_rate": 0.0006,
+ "loss": 4.048871040344238,
+ "step": 1268
+ },
+ {
+ "epoch": 17.629095674967235,
+ "grad_norm": 0.2074330598115921,
+ "learning_rate": 0.0006,
+ "loss": 3.997509002685547,
+ "step": 1269
+ },
+ {
+ "epoch": 17.643075578855395,
+ "grad_norm": 0.20383669435977936,
+ "learning_rate": 0.0006,
+ "loss": 4.0028839111328125,
+ "step": 1270
+ },
+ {
+ "epoch": 17.657055482743555,
+ "grad_norm": 0.2060765027999878,
+ "learning_rate": 0.0006,
+ "loss": 3.998032331466675,
+ "step": 1271
+ },
+ {
+ "epoch": 17.67103538663172,
+ "grad_norm": 0.21851404011249542,
+ "learning_rate": 0.0006,
+ "loss": 3.9928741455078125,
+ "step": 1272
+ },
+ {
+ "epoch": 17.68501529051988,
+ "grad_norm": 0.24324250221252441,
+ "learning_rate": 0.0006,
+ "loss": 3.9896507263183594,
+ "step": 1273
+ },
+ {
+ "epoch": 17.698995194408038,
+ "grad_norm": 0.25584331154823303,
+ "learning_rate": 0.0006,
+ "loss": 4.010485649108887,
+ "step": 1274
+ },
+ {
+ "epoch": 17.712975098296198,
+ "grad_norm": 0.2490610033273697,
+ "learning_rate": 0.0006,
+ "loss": 3.9906954765319824,
+ "step": 1275
+ },
+ {
+ "epoch": 17.72695500218436,
+ "grad_norm": 0.24241414666175842,
+ "learning_rate": 0.0006,
+ "loss": 4.016420364379883,
+ "step": 1276
+ },
+ {
+ "epoch": 17.74093490607252,
+ "grad_norm": 0.2222128063440323,
+ "learning_rate": 0.0006,
+ "loss": 4.009827136993408,
+ "step": 1277
+ },
+ {
+ "epoch": 17.75491480996068,
+ "grad_norm": 0.23119516670703888,
+ "learning_rate": 0.0006,
+ "loss": 4.0034589767456055,
+ "step": 1278
+ },
+ {
+ "epoch": 17.76889471384884,
+ "grad_norm": 0.24596457183361053,
+ "learning_rate": 0.0006,
+ "loss": 4.003161907196045,
+ "step": 1279
+ },
+ {
+ "epoch": 17.782874617737004,
+ "grad_norm": 0.2607562839984894,
+ "learning_rate": 0.0006,
+ "loss": 3.9894633293151855,
+ "step": 1280
+ },
+ {
+ "epoch": 17.796854521625164,
+ "grad_norm": 0.28706878423690796,
+ "learning_rate": 0.0006,
+ "loss": 4.005712985992432,
+ "step": 1281
+ },
+ {
+ "epoch": 17.810834425513324,
+ "grad_norm": 0.27178290486335754,
+ "learning_rate": 0.0006,
+ "loss": 3.9784536361694336,
+ "step": 1282
+ },
+ {
+ "epoch": 17.824814329401484,
+ "grad_norm": 0.27962708473205566,
+ "learning_rate": 0.0006,
+ "loss": 4.012705326080322,
+ "step": 1283
+ },
+ {
+ "epoch": 17.838794233289647,
+ "grad_norm": 0.29147693514823914,
+ "learning_rate": 0.0006,
+ "loss": 4.0159783363342285,
+ "step": 1284
+ },
+ {
+ "epoch": 17.852774137177807,
+ "grad_norm": 0.2841821312904358,
+ "learning_rate": 0.0006,
+ "loss": 4.011552810668945,
+ "step": 1285
+ },
+ {
+ "epoch": 17.866754041065967,
+ "grad_norm": 0.24924969673156738,
+ "learning_rate": 0.0006,
+ "loss": 3.992421865463257,
+ "step": 1286
+ },
+ {
+ "epoch": 17.88073394495413,
+ "grad_norm": 0.24850749969482422,
+ "learning_rate": 0.0006,
+ "loss": 3.974897861480713,
+ "step": 1287
+ },
+ {
+ "epoch": 17.89471384884229,
+ "grad_norm": 0.2409554123878479,
+ "learning_rate": 0.0006,
+ "loss": 4.002941131591797,
+ "step": 1288
+ },
+ {
+ "epoch": 17.90869375273045,
+ "grad_norm": 0.2656126320362091,
+ "learning_rate": 0.0006,
+ "loss": 3.9804210662841797,
+ "step": 1289
+ },
+ {
+ "epoch": 17.92267365661861,
+ "grad_norm": 0.28210243582725525,
+ "learning_rate": 0.0006,
+ "loss": 4.007192134857178,
+ "step": 1290
+ },
+ {
+ "epoch": 17.936653560506773,
+ "grad_norm": 0.28427553176879883,
+ "learning_rate": 0.0006,
+ "loss": 3.9739556312561035,
+ "step": 1291
+ },
+ {
+ "epoch": 17.950633464394933,
+ "grad_norm": 0.28893420100212097,
+ "learning_rate": 0.0006,
+ "loss": 4.004766941070557,
+ "step": 1292
+ },
+ {
+ "epoch": 17.964613368283093,
+ "grad_norm": 0.2831471562385559,
+ "learning_rate": 0.0006,
+ "loss": 3.984936237335205,
+ "step": 1293
+ },
+ {
+ "epoch": 17.978593272171253,
+ "grad_norm": 0.2518300712108612,
+ "learning_rate": 0.0006,
+ "loss": 4.002814292907715,
+ "step": 1294
+ },
+ {
+ "epoch": 17.992573176059416,
+ "grad_norm": 0.24264675378799438,
+ "learning_rate": 0.0006,
+ "loss": 3.998900890350342,
+ "step": 1295
+ },
+ {
+ "epoch": 18.0,
+ "grad_norm": 0.24474996328353882,
+ "learning_rate": 0.0006,
+ "loss": 3.974229335784912,
+ "step": 1296
+ },
+ {
+ "epoch": 18.0,
+ "eval_loss": 4.195685863494873,
+ "eval_runtime": 44.0709,
+ "eval_samples_per_second": 55.411,
+ "eval_steps_per_second": 3.472,
+ "step": 1296
+ },
+ {
+ "epoch": 18.01397990388816,
+ "grad_norm": 0.2553016245365143,
+ "learning_rate": 0.0006,
+ "loss": 3.9522247314453125,
+ "step": 1297
+ },
+ {
+ "epoch": 18.027959807776323,
+ "grad_norm": 0.22350727021694183,
+ "learning_rate": 0.0006,
+ "loss": 3.9850122928619385,
+ "step": 1298
+ },
+ {
+ "epoch": 18.041939711664483,
+ "grad_norm": 0.23935550451278687,
+ "learning_rate": 0.0006,
+ "loss": 3.9758832454681396,
+ "step": 1299
+ },
+ {
+ "epoch": 18.055919615552643,
+ "grad_norm": 0.23868797719478607,
+ "learning_rate": 0.0006,
+ "loss": 3.9567959308624268,
+ "step": 1300
+ },
+ {
+ "epoch": 18.069899519440803,
+ "grad_norm": 0.23102357983589172,
+ "learning_rate": 0.0006,
+ "loss": 3.9399867057800293,
+ "step": 1301
+ },
+ {
+ "epoch": 18.083879423328966,
+ "grad_norm": 0.23706983029842377,
+ "learning_rate": 0.0006,
+ "loss": 3.993434190750122,
+ "step": 1302
+ },
+ {
+ "epoch": 18.097859327217126,
+ "grad_norm": 0.22207573056221008,
+ "learning_rate": 0.0006,
+ "loss": 3.993436574935913,
+ "step": 1303
+ },
+ {
+ "epoch": 18.111839231105286,
+ "grad_norm": 0.23975296318531036,
+ "learning_rate": 0.0006,
+ "loss": 3.981943368911743,
+ "step": 1304
+ },
+ {
+ "epoch": 18.125819134993446,
+ "grad_norm": 0.2520582675933838,
+ "learning_rate": 0.0006,
+ "loss": 3.965493679046631,
+ "step": 1305
+ },
+ {
+ "epoch": 18.13979903888161,
+ "grad_norm": 0.2230956256389618,
+ "learning_rate": 0.0006,
+ "loss": 3.9360928535461426,
+ "step": 1306
+ },
+ {
+ "epoch": 18.15377894276977,
+ "grad_norm": 0.22527500987052917,
+ "learning_rate": 0.0006,
+ "loss": 3.9814581871032715,
+ "step": 1307
+ },
+ {
+ "epoch": 18.16775884665793,
+ "grad_norm": 0.22389626502990723,
+ "learning_rate": 0.0006,
+ "loss": 3.961590051651001,
+ "step": 1308
+ },
+ {
+ "epoch": 18.18173875054609,
+ "grad_norm": 0.22279471158981323,
+ "learning_rate": 0.0006,
+ "loss": 3.952338695526123,
+ "step": 1309
+ },
+ {
+ "epoch": 18.195718654434252,
+ "grad_norm": 0.24635115265846252,
+ "learning_rate": 0.0006,
+ "loss": 3.9693849086761475,
+ "step": 1310
+ },
+ {
+ "epoch": 18.209698558322412,
+ "grad_norm": 0.2757279872894287,
+ "learning_rate": 0.0006,
+ "loss": 3.9956700801849365,
+ "step": 1311
+ },
+ {
+ "epoch": 18.22367846221057,
+ "grad_norm": 0.2619115710258484,
+ "learning_rate": 0.0006,
+ "loss": 3.948878765106201,
+ "step": 1312
+ },
+ {
+ "epoch": 18.23765836609873,
+ "grad_norm": 0.22853828966617584,
+ "learning_rate": 0.0006,
+ "loss": 3.9545674324035645,
+ "step": 1313
+ },
+ {
+ "epoch": 18.251638269986895,
+ "grad_norm": 0.22904761135578156,
+ "learning_rate": 0.0006,
+ "loss": 3.947535991668701,
+ "step": 1314
+ },
+ {
+ "epoch": 18.265618173875055,
+ "grad_norm": 0.23592644929885864,
+ "learning_rate": 0.0006,
+ "loss": 3.971926212310791,
+ "step": 1315
+ },
+ {
+ "epoch": 18.279598077763215,
+ "grad_norm": 0.22120243310928345,
+ "learning_rate": 0.0006,
+ "loss": 3.9471049308776855,
+ "step": 1316
+ },
+ {
+ "epoch": 18.293577981651374,
+ "grad_norm": 0.20308749377727509,
+ "learning_rate": 0.0006,
+ "loss": 3.967449188232422,
+ "step": 1317
+ },
+ {
+ "epoch": 18.307557885539538,
+ "grad_norm": 0.20013529062271118,
+ "learning_rate": 0.0006,
+ "loss": 3.966151237487793,
+ "step": 1318
+ },
+ {
+ "epoch": 18.321537789427698,
+ "grad_norm": 0.20635221898555756,
+ "learning_rate": 0.0006,
+ "loss": 3.9908885955810547,
+ "step": 1319
+ },
+ {
+ "epoch": 18.335517693315857,
+ "grad_norm": 0.2232237160205841,
+ "learning_rate": 0.0006,
+ "loss": 3.9488768577575684,
+ "step": 1320
+ },
+ {
+ "epoch": 18.34949759720402,
+ "grad_norm": 0.21916444599628448,
+ "learning_rate": 0.0006,
+ "loss": 3.973428726196289,
+ "step": 1321
+ },
+ {
+ "epoch": 18.36347750109218,
+ "grad_norm": 0.20427337288856506,
+ "learning_rate": 0.0006,
+ "loss": 3.969332695007324,
+ "step": 1322
+ },
+ {
+ "epoch": 18.37745740498034,
+ "grad_norm": 0.20138131082057953,
+ "learning_rate": 0.0006,
+ "loss": 3.9651856422424316,
+ "step": 1323
+ },
+ {
+ "epoch": 18.3914373088685,
+ "grad_norm": 0.18918880820274353,
+ "learning_rate": 0.0006,
+ "loss": 3.9772281646728516,
+ "step": 1324
+ },
+ {
+ "epoch": 18.405417212756664,
+ "grad_norm": 0.1860039383172989,
+ "learning_rate": 0.0006,
+ "loss": 3.9289052486419678,
+ "step": 1325
+ },
+ {
+ "epoch": 18.419397116644824,
+ "grad_norm": 0.19541646540164948,
+ "learning_rate": 0.0006,
+ "loss": 3.9527673721313477,
+ "step": 1326
+ },
+ {
+ "epoch": 18.433377020532983,
+ "grad_norm": 0.206914022564888,
+ "learning_rate": 0.0006,
+ "loss": 3.99316143989563,
+ "step": 1327
+ },
+ {
+ "epoch": 18.447356924421143,
+ "grad_norm": 0.209097757935524,
+ "learning_rate": 0.0006,
+ "loss": 3.978130340576172,
+ "step": 1328
+ },
+ {
+ "epoch": 18.461336828309307,
+ "grad_norm": 0.22163373231887817,
+ "learning_rate": 0.0006,
+ "loss": 3.951460361480713,
+ "step": 1329
+ },
+ {
+ "epoch": 18.475316732197467,
+ "grad_norm": 0.21446120738983154,
+ "learning_rate": 0.0006,
+ "loss": 3.963571071624756,
+ "step": 1330
+ },
+ {
+ "epoch": 18.489296636085626,
+ "grad_norm": 0.2341388761997223,
+ "learning_rate": 0.0006,
+ "loss": 4.010684013366699,
+ "step": 1331
+ },
+ {
+ "epoch": 18.503276539973786,
+ "grad_norm": 0.2433937042951584,
+ "learning_rate": 0.0006,
+ "loss": 3.987537384033203,
+ "step": 1332
+ },
+ {
+ "epoch": 18.51725644386195,
+ "grad_norm": 0.24916228652000427,
+ "learning_rate": 0.0006,
+ "loss": 3.953075647354126,
+ "step": 1333
+ },
+ {
+ "epoch": 18.53123634775011,
+ "grad_norm": 0.24542421102523804,
+ "learning_rate": 0.0006,
+ "loss": 3.9510841369628906,
+ "step": 1334
+ },
+ {
+ "epoch": 18.54521625163827,
+ "grad_norm": 0.2393690049648285,
+ "learning_rate": 0.0006,
+ "loss": 3.981747627258301,
+ "step": 1335
+ },
+ {
+ "epoch": 18.55919615552643,
+ "grad_norm": 0.22806711494922638,
+ "learning_rate": 0.0006,
+ "loss": 3.9714856147766113,
+ "step": 1336
+ },
+ {
+ "epoch": 18.573176059414592,
+ "grad_norm": 0.21948303282260895,
+ "learning_rate": 0.0006,
+ "loss": 3.9429898262023926,
+ "step": 1337
+ },
+ {
+ "epoch": 18.587155963302752,
+ "grad_norm": 0.21575778722763062,
+ "learning_rate": 0.0006,
+ "loss": 3.9639933109283447,
+ "step": 1338
+ },
+ {
+ "epoch": 18.601135867190912,
+ "grad_norm": 0.23370565474033356,
+ "learning_rate": 0.0006,
+ "loss": 3.9819254875183105,
+ "step": 1339
+ },
+ {
+ "epoch": 18.615115771079076,
+ "grad_norm": 0.2613106369972229,
+ "learning_rate": 0.0006,
+ "loss": 3.9654669761657715,
+ "step": 1340
+ },
+ {
+ "epoch": 18.629095674967235,
+ "grad_norm": 0.26682716608047485,
+ "learning_rate": 0.0006,
+ "loss": 3.9832968711853027,
+ "step": 1341
+ },
+ {
+ "epoch": 18.643075578855395,
+ "grad_norm": 0.24331490695476532,
+ "learning_rate": 0.0006,
+ "loss": 3.9926600456237793,
+ "step": 1342
+ },
+ {
+ "epoch": 18.657055482743555,
+ "grad_norm": 0.2459341287612915,
+ "learning_rate": 0.0006,
+ "loss": 3.9508986473083496,
+ "step": 1343
+ },
+ {
+ "epoch": 18.67103538663172,
+ "grad_norm": 0.26395753026008606,
+ "learning_rate": 0.0006,
+ "loss": 3.961359977722168,
+ "step": 1344
+ },
+ {
+ "epoch": 18.68501529051988,
+ "grad_norm": 0.26049068570137024,
+ "learning_rate": 0.0006,
+ "loss": 3.9763245582580566,
+ "step": 1345
+ },
+ {
+ "epoch": 18.698995194408038,
+ "grad_norm": 0.24018602073192596,
+ "learning_rate": 0.0006,
+ "loss": 3.951780319213867,
+ "step": 1346
+ },
+ {
+ "epoch": 18.712975098296198,
+ "grad_norm": 0.23886290192604065,
+ "learning_rate": 0.0006,
+ "loss": 3.9883017539978027,
+ "step": 1347
+ },
+ {
+ "epoch": 18.72695500218436,
+ "grad_norm": 0.2293774038553238,
+ "learning_rate": 0.0006,
+ "loss": 3.9852685928344727,
+ "step": 1348
+ },
+ {
+ "epoch": 18.74093490607252,
+ "grad_norm": 0.22172975540161133,
+ "learning_rate": 0.0006,
+ "loss": 3.967550277709961,
+ "step": 1349
+ },
+ {
+ "epoch": 18.75491480996068,
+ "grad_norm": 0.2170475423336029,
+ "learning_rate": 0.0006,
+ "loss": 3.9570775032043457,
+ "step": 1350
+ },
+ {
+ "epoch": 18.76889471384884,
+ "grad_norm": 0.21458806097507477,
+ "learning_rate": 0.0006,
+ "loss": 3.9461212158203125,
+ "step": 1351
+ },
+ {
+ "epoch": 18.782874617737004,
+ "grad_norm": 0.21101507544517517,
+ "learning_rate": 0.0006,
+ "loss": 3.984398365020752,
+ "step": 1352
+ },
+ {
+ "epoch": 18.796854521625164,
+ "grad_norm": 0.23480583727359772,
+ "learning_rate": 0.0006,
+ "loss": 3.950312614440918,
+ "step": 1353
+ },
+ {
+ "epoch": 18.810834425513324,
+ "grad_norm": 0.24728581309318542,
+ "learning_rate": 0.0006,
+ "loss": 3.9572393894195557,
+ "step": 1354
+ },
+ {
+ "epoch": 18.824814329401484,
+ "grad_norm": 0.26063451170921326,
+ "learning_rate": 0.0006,
+ "loss": 3.9653234481811523,
+ "step": 1355
+ },
+ {
+ "epoch": 18.838794233289647,
+ "grad_norm": 0.24679961800575256,
+ "learning_rate": 0.0006,
+ "loss": 3.9560108184814453,
+ "step": 1356
+ },
+ {
+ "epoch": 18.852774137177807,
+ "grad_norm": 0.23199526965618134,
+ "learning_rate": 0.0006,
+ "loss": 3.9948246479034424,
+ "step": 1357
+ },
+ {
+ "epoch": 18.866754041065967,
+ "grad_norm": 0.22619125247001648,
+ "learning_rate": 0.0006,
+ "loss": 3.9783573150634766,
+ "step": 1358
+ },
+ {
+ "epoch": 18.88073394495413,
+ "grad_norm": 0.25499874353408813,
+ "learning_rate": 0.0006,
+ "loss": 3.9674575328826904,
+ "step": 1359
+ },
+ {
+ "epoch": 18.89471384884229,
+ "grad_norm": 0.23961037397384644,
+ "learning_rate": 0.0006,
+ "loss": 3.969209909439087,
+ "step": 1360
+ },
+ {
+ "epoch": 18.90869375273045,
+ "grad_norm": 0.21039162576198578,
+ "learning_rate": 0.0006,
+ "loss": 3.978661060333252,
+ "step": 1361
+ },
+ {
+ "epoch": 18.92267365661861,
+ "grad_norm": 0.2297026664018631,
+ "learning_rate": 0.0006,
+ "loss": 3.9483046531677246,
+ "step": 1362
+ },
+ {
+ "epoch": 18.936653560506773,
+ "grad_norm": 0.26367098093032837,
+ "learning_rate": 0.0006,
+ "loss": 3.927133560180664,
+ "step": 1363
+ },
+ {
+ "epoch": 18.950633464394933,
+ "grad_norm": 0.26893147826194763,
+ "learning_rate": 0.0006,
+ "loss": 3.957932710647583,
+ "step": 1364
+ },
+ {
+ "epoch": 18.964613368283093,
+ "grad_norm": 0.27092233300209045,
+ "learning_rate": 0.0006,
+ "loss": 3.976621150970459,
+ "step": 1365
+ },
+ {
+ "epoch": 18.978593272171253,
+ "grad_norm": 0.2672635018825531,
+ "learning_rate": 0.0006,
+ "loss": 3.9577765464782715,
+ "step": 1366
+ },
+ {
+ "epoch": 18.992573176059416,
+ "grad_norm": 0.2721385359764099,
+ "learning_rate": 0.0006,
+ "loss": 3.986100196838379,
+ "step": 1367
+ },
+ {
+ "epoch": 19.0,
+ "grad_norm": 0.27648621797561646,
+ "learning_rate": 0.0006,
+ "loss": 3.9942402839660645,
+ "step": 1368
+ },
+ {
+ "epoch": 19.0,
+ "eval_loss": 4.180216312408447,
+ "eval_runtime": 44.0079,
+ "eval_samples_per_second": 55.49,
+ "eval_steps_per_second": 3.477,
+ "step": 1368
+ },
+ {
+ "epoch": 19.01397990388816,
+ "grad_norm": 0.2563098073005676,
+ "learning_rate": 0.0006,
+ "loss": 3.9267354011535645,
+ "step": 1369
+ },
+ {
+ "epoch": 19.027959807776323,
+ "grad_norm": 0.2531425952911377,
+ "learning_rate": 0.0006,
+ "loss": 3.9273324012756348,
+ "step": 1370
+ },
+ {
+ "epoch": 19.041939711664483,
+ "grad_norm": 0.27485427260398865,
+ "learning_rate": 0.0006,
+ "loss": 3.9542183876037598,
+ "step": 1371
+ },
+ {
+ "epoch": 19.055919615552643,
+ "grad_norm": 0.27509891986846924,
+ "learning_rate": 0.0006,
+ "loss": 3.921940326690674,
+ "step": 1372
+ },
+ {
+ "epoch": 19.069899519440803,
+ "grad_norm": 0.28154096007347107,
+ "learning_rate": 0.0006,
+ "loss": 3.926743984222412,
+ "step": 1373
+ },
+ {
+ "epoch": 19.083879423328966,
+ "grad_norm": 0.2749912738800049,
+ "learning_rate": 0.0006,
+ "loss": 3.9257748126983643,
+ "step": 1374
+ },
+ {
+ "epoch": 19.097859327217126,
+ "grad_norm": 0.26168501377105713,
+ "learning_rate": 0.0006,
+ "loss": 3.9403202533721924,
+ "step": 1375
+ },
+ {
+ "epoch": 19.111839231105286,
+ "grad_norm": 0.23410023748874664,
+ "learning_rate": 0.0006,
+ "loss": 3.935378313064575,
+ "step": 1376
+ },
+ {
+ "epoch": 19.125819134993446,
+ "grad_norm": 0.25790470838546753,
+ "learning_rate": 0.0006,
+ "loss": 3.946147918701172,
+ "step": 1377
+ },
+ {
+ "epoch": 19.13979903888161,
+ "grad_norm": 0.26704177260398865,
+ "learning_rate": 0.0006,
+ "loss": 3.9511594772338867,
+ "step": 1378
+ },
+ {
+ "epoch": 19.15377894276977,
+ "grad_norm": 0.2560667097568512,
+ "learning_rate": 0.0006,
+ "loss": 3.915806531906128,
+ "step": 1379
+ },
+ {
+ "epoch": 19.16775884665793,
+ "grad_norm": 0.24684149026870728,
+ "learning_rate": 0.0006,
+ "loss": 3.9162003993988037,
+ "step": 1380
+ },
+ {
+ "epoch": 19.18173875054609,
+ "grad_norm": 0.2097567766904831,
+ "learning_rate": 0.0006,
+ "loss": 3.915739059448242,
+ "step": 1381
+ },
+ {
+ "epoch": 19.195718654434252,
+ "grad_norm": 0.21646849811077118,
+ "learning_rate": 0.0006,
+ "loss": 3.9097084999084473,
+ "step": 1382
+ },
+ {
+ "epoch": 19.209698558322412,
+ "grad_norm": 0.20626980066299438,
+ "learning_rate": 0.0006,
+ "loss": 3.9541783332824707,
+ "step": 1383
+ },
+ {
+ "epoch": 19.22367846221057,
+ "grad_norm": 0.23362718522548676,
+ "learning_rate": 0.0006,
+ "loss": 3.950096845626831,
+ "step": 1384
+ },
+ {
+ "epoch": 19.23765836609873,
+ "grad_norm": 0.25402209162712097,
+ "learning_rate": 0.0006,
+ "loss": 3.927671432495117,
+ "step": 1385
+ },
+ {
+ "epoch": 19.251638269986895,
+ "grad_norm": 0.23714083433151245,
+ "learning_rate": 0.0006,
+ "loss": 3.939765453338623,
+ "step": 1386
+ },
+ {
+ "epoch": 19.265618173875055,
+ "grad_norm": 0.20895546674728394,
+ "learning_rate": 0.0006,
+ "loss": 3.9384806156158447,
+ "step": 1387
+ },
+ {
+ "epoch": 19.279598077763215,
+ "grad_norm": 0.21374300122261047,
+ "learning_rate": 0.0006,
+ "loss": 3.9523749351501465,
+ "step": 1388
+ },
+ {
+ "epoch": 19.293577981651374,
+ "grad_norm": 0.210394486784935,
+ "learning_rate": 0.0006,
+ "loss": 3.9540798664093018,
+ "step": 1389
+ },
+ {
+ "epoch": 19.307557885539538,
+ "grad_norm": 0.20646725594997406,
+ "learning_rate": 0.0006,
+ "loss": 3.9514098167419434,
+ "step": 1390
+ },
+ {
+ "epoch": 19.321537789427698,
+ "grad_norm": 0.21477538347244263,
+ "learning_rate": 0.0006,
+ "loss": 3.9369924068450928,
+ "step": 1391
+ },
+ {
+ "epoch": 19.335517693315857,
+ "grad_norm": 0.20431505143642426,
+ "learning_rate": 0.0006,
+ "loss": 3.9389796257019043,
+ "step": 1392
+ },
+ {
+ "epoch": 19.34949759720402,
+ "grad_norm": 0.19575877487659454,
+ "learning_rate": 0.0006,
+ "loss": 3.935976028442383,
+ "step": 1393
+ },
+ {
+ "epoch": 19.36347750109218,
+ "grad_norm": 0.20720405876636505,
+ "learning_rate": 0.0006,
+ "loss": 3.9670963287353516,
+ "step": 1394
+ },
+ {
+ "epoch": 19.37745740498034,
+ "grad_norm": 0.2173967957496643,
+ "learning_rate": 0.0006,
+ "loss": 3.903940439224243,
+ "step": 1395
+ },
+ {
+ "epoch": 19.3914373088685,
+ "grad_norm": 0.2180529683828354,
+ "learning_rate": 0.0006,
+ "loss": 3.8716301918029785,
+ "step": 1396
+ },
+ {
+ "epoch": 19.405417212756664,
+ "grad_norm": 0.20666591823101044,
+ "learning_rate": 0.0006,
+ "loss": 3.930936813354492,
+ "step": 1397
+ },
+ {
+ "epoch": 19.419397116644824,
+ "grad_norm": 0.20353034138679504,
+ "learning_rate": 0.0006,
+ "loss": 3.926954746246338,
+ "step": 1398
+ },
+ {
+ "epoch": 19.433377020532983,
+ "grad_norm": 0.22333289682865143,
+ "learning_rate": 0.0006,
+ "loss": 3.947504997253418,
+ "step": 1399
+ },
+ {
+ "epoch": 19.447356924421143,
+ "grad_norm": 0.21787697076797485,
+ "learning_rate": 0.0006,
+ "loss": 3.9325344562530518,
+ "step": 1400
+ },
+ {
+ "epoch": 19.461336828309307,
+ "grad_norm": 0.22805874049663544,
+ "learning_rate": 0.0006,
+ "loss": 3.9640727043151855,
+ "step": 1401
+ },
+ {
+ "epoch": 19.475316732197467,
+ "grad_norm": 0.22396457195281982,
+ "learning_rate": 0.0006,
+ "loss": 3.9537901878356934,
+ "step": 1402
+ },
+ {
+ "epoch": 19.489296636085626,
+ "grad_norm": 0.2333047240972519,
+ "learning_rate": 0.0006,
+ "loss": 3.935609817504883,
+ "step": 1403
+ },
+ {
+ "epoch": 19.503276539973786,
+ "grad_norm": 0.25063616037368774,
+ "learning_rate": 0.0006,
+ "loss": 3.9659228324890137,
+ "step": 1404
+ },
+ {
+ "epoch": 19.51725644386195,
+ "grad_norm": 0.29074087738990784,
+ "learning_rate": 0.0006,
+ "loss": 3.9552183151245117,
+ "step": 1405
+ },
+ {
+ "epoch": 19.53123634775011,
+ "grad_norm": 0.34876152873039246,
+ "learning_rate": 0.0006,
+ "loss": 3.976163387298584,
+ "step": 1406
+ },
+ {
+ "epoch": 19.54521625163827,
+ "grad_norm": 0.35026612877845764,
+ "learning_rate": 0.0006,
+ "loss": 3.961186408996582,
+ "step": 1407
+ },
+ {
+ "epoch": 19.55919615552643,
+ "grad_norm": 0.3199564218521118,
+ "learning_rate": 0.0006,
+ "loss": 3.9366297721862793,
+ "step": 1408
+ },
+ {
+ "epoch": 19.573176059414592,
+ "grad_norm": 0.2976185977458954,
+ "learning_rate": 0.0006,
+ "loss": 3.9502010345458984,
+ "step": 1409
+ },
+ {
+ "epoch": 19.587155963302752,
+ "grad_norm": 0.2951911687850952,
+ "learning_rate": 0.0006,
+ "loss": 3.9427943229675293,
+ "step": 1410
+ },
+ {
+ "epoch": 19.601135867190912,
+ "grad_norm": 0.27918702363967896,
+ "learning_rate": 0.0006,
+ "loss": 3.963700532913208,
+ "step": 1411
+ },
+ {
+ "epoch": 19.615115771079076,
+ "grad_norm": 0.26197490096092224,
+ "learning_rate": 0.0006,
+ "loss": 3.9636964797973633,
+ "step": 1412
+ },
+ {
+ "epoch": 19.629095674967235,
+ "grad_norm": 0.24242281913757324,
+ "learning_rate": 0.0006,
+ "loss": 3.961815595626831,
+ "step": 1413
+ },
+ {
+ "epoch": 19.643075578855395,
+ "grad_norm": 0.2606375515460968,
+ "learning_rate": 0.0006,
+ "loss": 3.946643352508545,
+ "step": 1414
+ },
+ {
+ "epoch": 19.657055482743555,
+ "grad_norm": 0.23353353142738342,
+ "learning_rate": 0.0006,
+ "loss": 3.973155975341797,
+ "step": 1415
+ },
+ {
+ "epoch": 19.67103538663172,
+ "grad_norm": 0.22872662544250488,
+ "learning_rate": 0.0006,
+ "loss": 3.9528894424438477,
+ "step": 1416
+ },
+ {
+ "epoch": 19.68501529051988,
+ "grad_norm": 0.24678432941436768,
+ "learning_rate": 0.0006,
+ "loss": 3.9313249588012695,
+ "step": 1417
+ },
+ {
+ "epoch": 19.698995194408038,
+ "grad_norm": 0.23895515501499176,
+ "learning_rate": 0.0006,
+ "loss": 3.944082498550415,
+ "step": 1418
+ },
+ {
+ "epoch": 19.712975098296198,
+ "grad_norm": 0.23649105429649353,
+ "learning_rate": 0.0006,
+ "loss": 3.962069034576416,
+ "step": 1419
+ },
+ {
+ "epoch": 19.72695500218436,
+ "grad_norm": 0.22031061351299286,
+ "learning_rate": 0.0006,
+ "loss": 3.912972927093506,
+ "step": 1420
+ },
+ {
+ "epoch": 19.74093490607252,
+ "grad_norm": 0.20231695473194122,
+ "learning_rate": 0.0006,
+ "loss": 3.964531421661377,
+ "step": 1421
+ },
+ {
+ "epoch": 19.75491480996068,
+ "grad_norm": 0.19980913400650024,
+ "learning_rate": 0.0006,
+ "loss": 3.9452600479125977,
+ "step": 1422
+ },
+ {
+ "epoch": 19.76889471384884,
+ "grad_norm": 0.21768775582313538,
+ "learning_rate": 0.0006,
+ "loss": 3.9214301109313965,
+ "step": 1423
+ },
+ {
+ "epoch": 19.782874617737004,
+ "grad_norm": 0.21287119388580322,
+ "learning_rate": 0.0006,
+ "loss": 3.9416494369506836,
+ "step": 1424
+ },
+ {
+ "epoch": 19.796854521625164,
+ "grad_norm": 0.21399827301502228,
+ "learning_rate": 0.0006,
+ "loss": 3.971010208129883,
+ "step": 1425
+ },
+ {
+ "epoch": 19.810834425513324,
+ "grad_norm": 0.1957658976316452,
+ "learning_rate": 0.0006,
+ "loss": 3.936331272125244,
+ "step": 1426
+ },
+ {
+ "epoch": 19.824814329401484,
+ "grad_norm": 0.19341488182544708,
+ "learning_rate": 0.0006,
+ "loss": 3.9321448802948,
+ "step": 1427
+ },
+ {
+ "epoch": 19.838794233289647,
+ "grad_norm": 0.18405723571777344,
+ "learning_rate": 0.0006,
+ "loss": 3.939542293548584,
+ "step": 1428
+ },
+ {
+ "epoch": 19.852774137177807,
+ "grad_norm": 0.19672836363315582,
+ "learning_rate": 0.0006,
+ "loss": 3.939652919769287,
+ "step": 1429
+ },
+ {
+ "epoch": 19.866754041065967,
+ "grad_norm": 0.1998940259218216,
+ "learning_rate": 0.0006,
+ "loss": 3.932892322540283,
+ "step": 1430
+ },
+ {
+ "epoch": 19.88073394495413,
+ "grad_norm": 0.2307668924331665,
+ "learning_rate": 0.0006,
+ "loss": 3.9402761459350586,
+ "step": 1431
+ },
+ {
+ "epoch": 19.89471384884229,
+ "grad_norm": 0.2531987726688385,
+ "learning_rate": 0.0006,
+ "loss": 3.9153199195861816,
+ "step": 1432
+ },
+ {
+ "epoch": 19.90869375273045,
+ "grad_norm": 0.2299388349056244,
+ "learning_rate": 0.0006,
+ "loss": 3.9569954872131348,
+ "step": 1433
+ },
+ {
+ "epoch": 19.92267365661861,
+ "grad_norm": 0.2503527104854584,
+ "learning_rate": 0.0006,
+ "loss": 3.9469428062438965,
+ "step": 1434
+ },
+ {
+ "epoch": 19.936653560506773,
+ "grad_norm": 0.25390249490737915,
+ "learning_rate": 0.0006,
+ "loss": 3.941803455352783,
+ "step": 1435
+ },
+ {
+ "epoch": 19.950633464394933,
+ "grad_norm": 0.2288687825202942,
+ "learning_rate": 0.0006,
+ "loss": 3.9385883808135986,
+ "step": 1436
+ },
+ {
+ "epoch": 19.964613368283093,
+ "grad_norm": 0.2231096774339676,
+ "learning_rate": 0.0006,
+ "loss": 3.9255237579345703,
+ "step": 1437
+ },
+ {
+ "epoch": 19.978593272171253,
+ "grad_norm": 0.20729343593120575,
+ "learning_rate": 0.0006,
+ "loss": 3.9443163871765137,
+ "step": 1438
+ },
+ {
+ "epoch": 19.992573176059416,
+ "grad_norm": 0.197743758559227,
+ "learning_rate": 0.0006,
+ "loss": 3.925455093383789,
+ "step": 1439
+ },
+ {
+ "epoch": 20.0,
+ "grad_norm": 0.23943661153316498,
+ "learning_rate": 0.0006,
+ "loss": 3.9458866119384766,
+ "step": 1440
+ },
+ {
+ "epoch": 20.0,
+ "eval_loss": 4.144192218780518,
+ "eval_runtime": 44.0278,
+ "eval_samples_per_second": 55.465,
+ "eval_steps_per_second": 3.475,
+ "step": 1440
+ },
+ {
+ "epoch": 20.01397990388816,
+ "grad_norm": 0.2032143622636795,
+ "learning_rate": 0.0006,
+ "loss": 3.9151499271392822,
+ "step": 1441
+ },
+ {
+ "epoch": 20.027959807776323,
+ "grad_norm": 0.20164789259433746,
+ "learning_rate": 0.0006,
+ "loss": 3.874115228652954,
+ "step": 1442
+ },
+ {
+ "epoch": 20.041939711664483,
+ "grad_norm": 0.20796619355678558,
+ "learning_rate": 0.0006,
+ "loss": 3.9090776443481445,
+ "step": 1443
+ },
+ {
+ "epoch": 20.055919615552643,
+ "grad_norm": 0.1999918520450592,
+ "learning_rate": 0.0006,
+ "loss": 3.926563262939453,
+ "step": 1444
+ },
+ {
+ "epoch": 20.069899519440803,
+ "grad_norm": 0.204790860414505,
+ "learning_rate": 0.0006,
+ "loss": 3.9088830947875977,
+ "step": 1445
+ },
+ {
+ "epoch": 20.083879423328966,
+ "grad_norm": 0.21507175266742706,
+ "learning_rate": 0.0006,
+ "loss": 3.916504383087158,
+ "step": 1446
+ },
+ {
+ "epoch": 20.097859327217126,
+ "grad_norm": 0.2398025095462799,
+ "learning_rate": 0.0006,
+ "loss": 3.9128990173339844,
+ "step": 1447
+ },
+ {
+ "epoch": 20.111839231105286,
+ "grad_norm": 0.26037144660949707,
+ "learning_rate": 0.0006,
+ "loss": 3.9125187397003174,
+ "step": 1448
+ },
+ {
+ "epoch": 20.125819134993446,
+ "grad_norm": 0.25564828515052795,
+ "learning_rate": 0.0006,
+ "loss": 3.891867160797119,
+ "step": 1449
+ },
+ {
+ "epoch": 20.13979903888161,
+ "grad_norm": 0.2767223119735718,
+ "learning_rate": 0.0006,
+ "loss": 3.9202775955200195,
+ "step": 1450
+ },
+ {
+ "epoch": 20.15377894276977,
+ "grad_norm": 0.27696558833122253,
+ "learning_rate": 0.0006,
+ "loss": 3.9231314659118652,
+ "step": 1451
+ },
+ {
+ "epoch": 20.16775884665793,
+ "grad_norm": 0.3054044246673584,
+ "learning_rate": 0.0006,
+ "loss": 3.918138027191162,
+ "step": 1452
+ },
+ {
+ "epoch": 20.18173875054609,
+ "grad_norm": 0.3018973171710968,
+ "learning_rate": 0.0006,
+ "loss": 3.890678882598877,
+ "step": 1453
+ },
+ {
+ "epoch": 20.195718654434252,
+ "grad_norm": 0.306232750415802,
+ "learning_rate": 0.0006,
+ "loss": 3.920753002166748,
+ "step": 1454
+ },
+ {
+ "epoch": 20.209698558322412,
+ "grad_norm": 0.29593729972839355,
+ "learning_rate": 0.0006,
+ "loss": 3.9455509185791016,
+ "step": 1455
+ },
+ {
+ "epoch": 20.22367846221057,
+ "grad_norm": 0.2937646210193634,
+ "learning_rate": 0.0006,
+ "loss": 3.9227709770202637,
+ "step": 1456
+ },
+ {
+ "epoch": 20.23765836609873,
+ "grad_norm": 0.26380231976509094,
+ "learning_rate": 0.0006,
+ "loss": 3.9097609519958496,
+ "step": 1457
+ },
+ {
+ "epoch": 20.251638269986895,
+ "grad_norm": 0.24992692470550537,
+ "learning_rate": 0.0006,
+ "loss": 3.9393627643585205,
+ "step": 1458
+ },
+ {
+ "epoch": 20.265618173875055,
+ "grad_norm": 0.270219087600708,
+ "learning_rate": 0.0006,
+ "loss": 3.929330348968506,
+ "step": 1459
+ },
+ {
+ "epoch": 20.279598077763215,
+ "grad_norm": 0.2860020399093628,
+ "learning_rate": 0.0006,
+ "loss": 3.8947913646698,
+ "step": 1460
+ },
+ {
+ "epoch": 20.293577981651374,
+ "grad_norm": 0.27494579553604126,
+ "learning_rate": 0.0006,
+ "loss": 3.9105992317199707,
+ "step": 1461
+ },
+ {
+ "epoch": 20.307557885539538,
+ "grad_norm": 0.26467713713645935,
+ "learning_rate": 0.0006,
+ "loss": 3.914632797241211,
+ "step": 1462
+ },
+ {
+ "epoch": 20.321537789427698,
+ "grad_norm": 0.25747713446617126,
+ "learning_rate": 0.0006,
+ "loss": 3.919846534729004,
+ "step": 1463
+ },
+ {
+ "epoch": 20.335517693315857,
+ "grad_norm": 0.24027711153030396,
+ "learning_rate": 0.0006,
+ "loss": 3.904740810394287,
+ "step": 1464
+ },
+ {
+ "epoch": 20.34949759720402,
+ "grad_norm": 0.24682414531707764,
+ "learning_rate": 0.0006,
+ "loss": 3.9190149307250977,
+ "step": 1465
+ },
+ {
+ "epoch": 20.36347750109218,
+ "grad_norm": 0.2619759440422058,
+ "learning_rate": 0.0006,
+ "loss": 3.9488329887390137,
+ "step": 1466
+ },
+ {
+ "epoch": 20.37745740498034,
+ "grad_norm": 0.2632448971271515,
+ "learning_rate": 0.0006,
+ "loss": 3.9216647148132324,
+ "step": 1467
+ },
+ {
+ "epoch": 20.3914373088685,
+ "grad_norm": 0.27569764852523804,
+ "learning_rate": 0.0006,
+ "loss": 3.9178895950317383,
+ "step": 1468
+ },
+ {
+ "epoch": 20.405417212756664,
+ "grad_norm": 0.2611774802207947,
+ "learning_rate": 0.0006,
+ "loss": 3.933730125427246,
+ "step": 1469
+ },
+ {
+ "epoch": 20.419397116644824,
+ "grad_norm": 0.2839447557926178,
+ "learning_rate": 0.0006,
+ "loss": 3.9261364936828613,
+ "step": 1470
+ },
+ {
+ "epoch": 20.433377020532983,
+ "grad_norm": 0.29006227850914,
+ "learning_rate": 0.0006,
+ "loss": 3.9157633781433105,
+ "step": 1471
+ },
+ {
+ "epoch": 20.447356924421143,
+ "grad_norm": 0.2809498906135559,
+ "learning_rate": 0.0006,
+ "loss": 3.9211745262145996,
+ "step": 1472
+ },
+ {
+ "epoch": 20.461336828309307,
+ "grad_norm": 0.27859532833099365,
+ "learning_rate": 0.0006,
+ "loss": 3.9115967750549316,
+ "step": 1473
+ },
+ {
+ "epoch": 20.475316732197467,
+ "grad_norm": 0.29114410281181335,
+ "learning_rate": 0.0006,
+ "loss": 3.9024441242218018,
+ "step": 1474
+ },
+ {
+ "epoch": 20.489296636085626,
+ "grad_norm": 0.2686930000782013,
+ "learning_rate": 0.0006,
+ "loss": 3.9497199058532715,
+ "step": 1475
+ },
+ {
+ "epoch": 20.503276539973786,
+ "grad_norm": 0.24120540916919708,
+ "learning_rate": 0.0006,
+ "loss": 3.9218955039978027,
+ "step": 1476
+ },
+ {
+ "epoch": 20.51725644386195,
+ "grad_norm": 0.23689547181129456,
+ "learning_rate": 0.0006,
+ "loss": 3.9410176277160645,
+ "step": 1477
+ },
+ {
+ "epoch": 20.53123634775011,
+ "grad_norm": 0.26382362842559814,
+ "learning_rate": 0.0006,
+ "loss": 3.8880343437194824,
+ "step": 1478
+ },
+ {
+ "epoch": 20.54521625163827,
+ "grad_norm": 0.21628661453723907,
+ "learning_rate": 0.0006,
+ "loss": 3.892622470855713,
+ "step": 1479
+ },
+ {
+ "epoch": 20.55919615552643,
+ "grad_norm": 0.19896996021270752,
+ "learning_rate": 0.0006,
+ "loss": 3.938734769821167,
+ "step": 1480
+ },
+ {
+ "epoch": 20.573176059414592,
+ "grad_norm": 0.20232494175434113,
+ "learning_rate": 0.0006,
+ "loss": 3.9197006225585938,
+ "step": 1481
+ },
+ {
+ "epoch": 20.587155963302752,
+ "grad_norm": 0.21807828545570374,
+ "learning_rate": 0.0006,
+ "loss": 3.9195618629455566,
+ "step": 1482
+ },
+ {
+ "epoch": 20.601135867190912,
+ "grad_norm": 0.21778680384159088,
+ "learning_rate": 0.0006,
+ "loss": 3.913395404815674,
+ "step": 1483
+ },
+ {
+ "epoch": 20.615115771079076,
+ "grad_norm": 0.21015185117721558,
+ "learning_rate": 0.0006,
+ "loss": 3.8858234882354736,
+ "step": 1484
+ },
+ {
+ "epoch": 20.629095674967235,
+ "grad_norm": 0.20131368935108185,
+ "learning_rate": 0.0006,
+ "loss": 3.927213430404663,
+ "step": 1485
+ },
+ {
+ "epoch": 20.643075578855395,
+ "grad_norm": 0.20746243000030518,
+ "learning_rate": 0.0006,
+ "loss": 3.913198471069336,
+ "step": 1486
+ },
+ {
+ "epoch": 20.657055482743555,
+ "grad_norm": 0.2024548053741455,
+ "learning_rate": 0.0006,
+ "loss": 3.923048257827759,
+ "step": 1487
+ },
+ {
+ "epoch": 20.67103538663172,
+ "grad_norm": 0.19735988974571228,
+ "learning_rate": 0.0006,
+ "loss": 3.9136500358581543,
+ "step": 1488
+ },
+ {
+ "epoch": 20.68501529051988,
+ "grad_norm": 0.19781625270843506,
+ "learning_rate": 0.0006,
+ "loss": 3.883793592453003,
+ "step": 1489
+ },
+ {
+ "epoch": 20.698995194408038,
+ "grad_norm": 0.1911996454000473,
+ "learning_rate": 0.0006,
+ "loss": 3.9078567028045654,
+ "step": 1490
+ },
+ {
+ "epoch": 20.712975098296198,
+ "grad_norm": 0.1989123821258545,
+ "learning_rate": 0.0006,
+ "loss": 3.9314043521881104,
+ "step": 1491
+ },
+ {
+ "epoch": 20.72695500218436,
+ "grad_norm": 0.18839342892169952,
+ "learning_rate": 0.0006,
+ "loss": 3.8955953121185303,
+ "step": 1492
+ },
+ {
+ "epoch": 20.74093490607252,
+ "grad_norm": 0.1944834142923355,
+ "learning_rate": 0.0006,
+ "loss": 3.9272377490997314,
+ "step": 1493
+ },
+ {
+ "epoch": 20.75491480996068,
+ "grad_norm": 0.20829126238822937,
+ "learning_rate": 0.0006,
+ "loss": 3.878857374191284,
+ "step": 1494
+ },
+ {
+ "epoch": 20.76889471384884,
+ "grad_norm": 0.21438424289226532,
+ "learning_rate": 0.0006,
+ "loss": 3.9155564308166504,
+ "step": 1495
+ },
+ {
+ "epoch": 20.782874617737004,
+ "grad_norm": 0.22309324145317078,
+ "learning_rate": 0.0006,
+ "loss": 3.9281692504882812,
+ "step": 1496
+ },
+ {
+ "epoch": 20.796854521625164,
+ "grad_norm": 0.2053767591714859,
+ "learning_rate": 0.0006,
+ "loss": 3.9096317291259766,
+ "step": 1497
+ },
+ {
+ "epoch": 20.810834425513324,
+ "grad_norm": 0.20429186522960663,
+ "learning_rate": 0.0006,
+ "loss": 3.9184865951538086,
+ "step": 1498
+ },
+ {
+ "epoch": 20.824814329401484,
+ "grad_norm": 0.21983473002910614,
+ "learning_rate": 0.0006,
+ "loss": 3.9130771160125732,
+ "step": 1499
+ },
+ {
+ "epoch": 20.838794233289647,
+ "grad_norm": 0.21649539470672607,
+ "learning_rate": 0.0006,
+ "loss": 3.921581268310547,
+ "step": 1500
+ },
+ {
+ "epoch": 20.852774137177807,
+ "grad_norm": 0.19645053148269653,
+ "learning_rate": 0.0006,
+ "loss": 3.966360092163086,
+ "step": 1501
+ },
+ {
+ "epoch": 20.866754041065967,
+ "grad_norm": 0.2126782387495041,
+ "learning_rate": 0.0006,
+ "loss": 3.9004554748535156,
+ "step": 1502
+ },
+ {
+ "epoch": 20.88073394495413,
+ "grad_norm": 0.22359658777713776,
+ "learning_rate": 0.0006,
+ "loss": 3.92336368560791,
+ "step": 1503
+ },
+ {
+ "epoch": 20.89471384884229,
+ "grad_norm": 0.2334042638540268,
+ "learning_rate": 0.0006,
+ "loss": 3.9188671112060547,
+ "step": 1504
+ },
+ {
+ "epoch": 20.90869375273045,
+ "grad_norm": 0.24595916271209717,
+ "learning_rate": 0.0006,
+ "loss": 3.9348371028900146,
+ "step": 1505
+ },
+ {
+ "epoch": 20.92267365661861,
+ "grad_norm": 0.24177910387516022,
+ "learning_rate": 0.0006,
+ "loss": 3.8796424865722656,
+ "step": 1506
+ },
+ {
+ "epoch": 20.936653560506773,
+ "grad_norm": 0.24193289875984192,
+ "learning_rate": 0.0006,
+ "loss": 3.892627716064453,
+ "step": 1507
+ },
+ {
+ "epoch": 20.950633464394933,
+ "grad_norm": 0.252849280834198,
+ "learning_rate": 0.0006,
+ "loss": 3.9300179481506348,
+ "step": 1508
+ },
+ {
+ "epoch": 20.964613368283093,
+ "grad_norm": 0.24933326244354248,
+ "learning_rate": 0.0006,
+ "loss": 3.9597225189208984,
+ "step": 1509
+ },
+ {
+ "epoch": 20.978593272171253,
+ "grad_norm": 0.23850969970226288,
+ "learning_rate": 0.0006,
+ "loss": 3.9027397632598877,
+ "step": 1510
+ },
+ {
+ "epoch": 20.992573176059416,
+ "grad_norm": 0.23298311233520508,
+ "learning_rate": 0.0006,
+ "loss": 3.9024105072021484,
+ "step": 1511
+ },
+ {
+ "epoch": 21.0,
+ "grad_norm": 0.2467455416917801,
+ "learning_rate": 0.0006,
+ "loss": 3.915929079055786,
+ "step": 1512
+ },
+ {
+ "epoch": 21.0,
+ "eval_loss": 4.136331081390381,
+ "eval_runtime": 43.9468,
+ "eval_samples_per_second": 55.567,
+ "eval_steps_per_second": 3.481,
+ "step": 1512
+ },
+ {
+ "epoch": 21.01397990388816,
+ "grad_norm": 0.2195885181427002,
+ "learning_rate": 0.0006,
+ "loss": 3.873412847518921,
+ "step": 1513
+ },
+ {
+ "epoch": 21.027959807776323,
+ "grad_norm": 0.24250614643096924,
+ "learning_rate": 0.0006,
+ "loss": 3.882302761077881,
+ "step": 1514
+ },
+ {
+ "epoch": 21.041939711664483,
+ "grad_norm": 0.249113991856575,
+ "learning_rate": 0.0006,
+ "loss": 3.9112048149108887,
+ "step": 1515
+ },
+ {
+ "epoch": 21.055919615552643,
+ "grad_norm": 0.25365301966667175,
+ "learning_rate": 0.0006,
+ "loss": 3.8625712394714355,
+ "step": 1516
+ },
+ {
+ "epoch": 21.069899519440803,
+ "grad_norm": 0.2218591272830963,
+ "learning_rate": 0.0006,
+ "loss": 3.876072406768799,
+ "step": 1517
+ },
+ {
+ "epoch": 21.083879423328966,
+ "grad_norm": 0.238582581281662,
+ "learning_rate": 0.0006,
+ "loss": 3.862060546875,
+ "step": 1518
+ },
+ {
+ "epoch": 21.097859327217126,
+ "grad_norm": 0.25051242113113403,
+ "learning_rate": 0.0006,
+ "loss": 3.905315399169922,
+ "step": 1519
+ },
+ {
+ "epoch": 21.111839231105286,
+ "grad_norm": 0.2391843944787979,
+ "learning_rate": 0.0006,
+ "loss": 3.909144401550293,
+ "step": 1520
+ },
+ {
+ "epoch": 21.125819134993446,
+ "grad_norm": 0.230543315410614,
+ "learning_rate": 0.0006,
+ "loss": 3.8856799602508545,
+ "step": 1521
+ },
+ {
+ "epoch": 21.13979903888161,
+ "grad_norm": 0.24165484309196472,
+ "learning_rate": 0.0006,
+ "loss": 3.893883228302002,
+ "step": 1522
+ },
+ {
+ "epoch": 21.15377894276977,
+ "grad_norm": 0.24657143652439117,
+ "learning_rate": 0.0006,
+ "loss": 3.901129722595215,
+ "step": 1523
+ },
+ {
+ "epoch": 21.16775884665793,
+ "grad_norm": 0.2659998834133148,
+ "learning_rate": 0.0006,
+ "loss": 3.910468101501465,
+ "step": 1524
+ },
+ {
+ "epoch": 21.18173875054609,
+ "grad_norm": 0.2673095166683197,
+ "learning_rate": 0.0006,
+ "loss": 3.917454242706299,
+ "step": 1525
+ },
+ {
+ "epoch": 21.195718654434252,
+ "grad_norm": 0.22122322022914886,
+ "learning_rate": 0.0006,
+ "loss": 3.9017257690429688,
+ "step": 1526
+ },
+ {
+ "epoch": 21.209698558322412,
+ "grad_norm": 0.21882867813110352,
+ "learning_rate": 0.0006,
+ "loss": 3.8605496883392334,
+ "step": 1527
+ },
+ {
+ "epoch": 21.22367846221057,
+ "grad_norm": 0.22335563600063324,
+ "learning_rate": 0.0006,
+ "loss": 3.88120174407959,
+ "step": 1528
+ },
+ {
+ "epoch": 21.23765836609873,
+ "grad_norm": 0.22973211109638214,
+ "learning_rate": 0.0006,
+ "loss": 3.8636834621429443,
+ "step": 1529
+ },
+ {
+ "epoch": 21.251638269986895,
+ "grad_norm": 0.2410288006067276,
+ "learning_rate": 0.0006,
+ "loss": 3.8698177337646484,
+ "step": 1530
+ },
+ {
+ "epoch": 21.265618173875055,
+ "grad_norm": 0.2454768717288971,
+ "learning_rate": 0.0006,
+ "loss": 3.905341148376465,
+ "step": 1531
+ },
+ {
+ "epoch": 21.279598077763215,
+ "grad_norm": 0.2271580696105957,
+ "learning_rate": 0.0006,
+ "loss": 3.864063262939453,
+ "step": 1532
+ },
+ {
+ "epoch": 21.293577981651374,
+ "grad_norm": 0.2200947403907776,
+ "learning_rate": 0.0006,
+ "loss": 3.8889589309692383,
+ "step": 1533
+ },
+ {
+ "epoch": 21.307557885539538,
+ "grad_norm": 0.2180824875831604,
+ "learning_rate": 0.0006,
+ "loss": 3.8873472213745117,
+ "step": 1534
+ },
+ {
+ "epoch": 21.321537789427698,
+ "grad_norm": 0.214975506067276,
+ "learning_rate": 0.0006,
+ "loss": 3.882307529449463,
+ "step": 1535
+ },
+ {
+ "epoch": 21.335517693315857,
+ "grad_norm": 0.21411260962486267,
+ "learning_rate": 0.0006,
+ "loss": 3.8861560821533203,
+ "step": 1536
+ },
+ {
+ "epoch": 21.34949759720402,
+ "grad_norm": 0.22635889053344727,
+ "learning_rate": 0.0006,
+ "loss": 3.9174342155456543,
+ "step": 1537
+ },
+ {
+ "epoch": 21.36347750109218,
+ "grad_norm": 0.22700625658035278,
+ "learning_rate": 0.0006,
+ "loss": 3.890416383743286,
+ "step": 1538
+ },
+ {
+ "epoch": 21.37745740498034,
+ "grad_norm": 0.2106025069952011,
+ "learning_rate": 0.0006,
+ "loss": 3.8672406673431396,
+ "step": 1539
+ },
+ {
+ "epoch": 21.3914373088685,
+ "grad_norm": 0.22994661331176758,
+ "learning_rate": 0.0006,
+ "loss": 3.893190383911133,
+ "step": 1540
+ },
+ {
+ "epoch": 21.405417212756664,
+ "grad_norm": 0.24701105058193207,
+ "learning_rate": 0.0006,
+ "loss": 3.898078441619873,
+ "step": 1541
+ },
+ {
+ "epoch": 21.419397116644824,
+ "grad_norm": 0.26914113759994507,
+ "learning_rate": 0.0006,
+ "loss": 3.905871868133545,
+ "step": 1542
+ },
+ {
+ "epoch": 21.433377020532983,
+ "grad_norm": 0.2904224097728729,
+ "learning_rate": 0.0006,
+ "loss": 3.8919103145599365,
+ "step": 1543
+ },
+ {
+ "epoch": 21.447356924421143,
+ "grad_norm": 0.2911844551563263,
+ "learning_rate": 0.0006,
+ "loss": 3.9073286056518555,
+ "step": 1544
+ },
+ {
+ "epoch": 21.461336828309307,
+ "grad_norm": 0.2742345929145813,
+ "learning_rate": 0.0006,
+ "loss": 3.9075546264648438,
+ "step": 1545
+ },
+ {
+ "epoch": 21.475316732197467,
+ "grad_norm": 0.2341093122959137,
+ "learning_rate": 0.0006,
+ "loss": 3.9232025146484375,
+ "step": 1546
+ },
+ {
+ "epoch": 21.489296636085626,
+ "grad_norm": 0.22808541357517242,
+ "learning_rate": 0.0006,
+ "loss": 3.9168174266815186,
+ "step": 1547
+ },
+ {
+ "epoch": 21.503276539973786,
+ "grad_norm": 0.23049889504909515,
+ "learning_rate": 0.0006,
+ "loss": 3.8850595951080322,
+ "step": 1548
+ },
+ {
+ "epoch": 21.51725644386195,
+ "grad_norm": 0.21519650518894196,
+ "learning_rate": 0.0006,
+ "loss": 3.891313076019287,
+ "step": 1549
+ },
+ {
+ "epoch": 21.53123634775011,
+ "grad_norm": 0.20999883115291595,
+ "learning_rate": 0.0006,
+ "loss": 3.894439220428467,
+ "step": 1550
+ },
+ {
+ "epoch": 21.54521625163827,
+ "grad_norm": 0.19641105830669403,
+ "learning_rate": 0.0006,
+ "loss": 3.894871473312378,
+ "step": 1551
+ },
+ {
+ "epoch": 21.55919615552643,
+ "grad_norm": 0.19108249247074127,
+ "learning_rate": 0.0006,
+ "loss": 3.905968189239502,
+ "step": 1552
+ },
+ {
+ "epoch": 21.573176059414592,
+ "grad_norm": 0.20222234725952148,
+ "learning_rate": 0.0006,
+ "loss": 3.90565824508667,
+ "step": 1553
+ },
+ {
+ "epoch": 21.587155963302752,
+ "grad_norm": 0.20620177686214447,
+ "learning_rate": 0.0006,
+ "loss": 3.9103245735168457,
+ "step": 1554
+ },
+ {
+ "epoch": 21.601135867190912,
+ "grad_norm": 0.2149713784456253,
+ "learning_rate": 0.0006,
+ "loss": 3.8864927291870117,
+ "step": 1555
+ },
+ {
+ "epoch": 21.615115771079076,
+ "grad_norm": 0.2354084551334381,
+ "learning_rate": 0.0006,
+ "loss": 3.905095100402832,
+ "step": 1556
+ },
+ {
+ "epoch": 21.629095674967235,
+ "grad_norm": 0.23949941992759705,
+ "learning_rate": 0.0006,
+ "loss": 3.901803493499756,
+ "step": 1557
+ },
+ {
+ "epoch": 21.643075578855395,
+ "grad_norm": 0.22914277017116547,
+ "learning_rate": 0.0006,
+ "loss": 3.876044273376465,
+ "step": 1558
+ },
+ {
+ "epoch": 21.657055482743555,
+ "grad_norm": 0.2363225370645523,
+ "learning_rate": 0.0006,
+ "loss": 3.910841703414917,
+ "step": 1559
+ },
+ {
+ "epoch": 21.67103538663172,
+ "grad_norm": 0.2635626792907715,
+ "learning_rate": 0.0006,
+ "loss": 3.847407579421997,
+ "step": 1560
+ },
+ {
+ "epoch": 21.68501529051988,
+ "grad_norm": 0.2499786615371704,
+ "learning_rate": 0.0006,
+ "loss": 3.8667140007019043,
+ "step": 1561
+ },
+ {
+ "epoch": 21.698995194408038,
+ "grad_norm": 0.21609611809253693,
+ "learning_rate": 0.0006,
+ "loss": 3.895470142364502,
+ "step": 1562
+ },
+ {
+ "epoch": 21.712975098296198,
+ "grad_norm": 0.2466774582862854,
+ "learning_rate": 0.0006,
+ "loss": 3.8853235244750977,
+ "step": 1563
+ },
+ {
+ "epoch": 21.72695500218436,
+ "grad_norm": 0.23791883885860443,
+ "learning_rate": 0.0006,
+ "loss": 3.899418354034424,
+ "step": 1564
+ },
+ {
+ "epoch": 21.74093490607252,
+ "grad_norm": 0.2048920840024948,
+ "learning_rate": 0.0006,
+ "loss": 3.8992419242858887,
+ "step": 1565
+ },
+ {
+ "epoch": 21.75491480996068,
+ "grad_norm": 0.22266621887683868,
+ "learning_rate": 0.0006,
+ "loss": 3.885765552520752,
+ "step": 1566
+ },
+ {
+ "epoch": 21.76889471384884,
+ "grad_norm": 0.2508748769760132,
+ "learning_rate": 0.0006,
+ "loss": 3.8797037601470947,
+ "step": 1567
+ },
+ {
+ "epoch": 21.782874617737004,
+ "grad_norm": 0.27245673537254333,
+ "learning_rate": 0.0006,
+ "loss": 3.8743176460266113,
+ "step": 1568
+ },
+ {
+ "epoch": 21.796854521625164,
+ "grad_norm": 0.25503191351890564,
+ "learning_rate": 0.0006,
+ "loss": 3.868906259536743,
+ "step": 1569
+ },
+ {
+ "epoch": 21.810834425513324,
+ "grad_norm": 0.22984394431114197,
+ "learning_rate": 0.0006,
+ "loss": 3.9051015377044678,
+ "step": 1570
+ },
+ {
+ "epoch": 21.824814329401484,
+ "grad_norm": 0.2411898821592331,
+ "learning_rate": 0.0006,
+ "loss": 3.8911490440368652,
+ "step": 1571
+ },
+ {
+ "epoch": 21.838794233289647,
+ "grad_norm": 0.22609318792819977,
+ "learning_rate": 0.0006,
+ "loss": 3.894839286804199,
+ "step": 1572
+ },
+ {
+ "epoch": 21.852774137177807,
+ "grad_norm": 0.21904583275318146,
+ "learning_rate": 0.0006,
+ "loss": 3.9314537048339844,
+ "step": 1573
+ },
+ {
+ "epoch": 21.866754041065967,
+ "grad_norm": 0.21869723498821259,
+ "learning_rate": 0.0006,
+ "loss": 3.9141433238983154,
+ "step": 1574
+ },
+ {
+ "epoch": 21.88073394495413,
+ "grad_norm": 0.21682019531726837,
+ "learning_rate": 0.0006,
+ "loss": 3.867898464202881,
+ "step": 1575
+ },
+ {
+ "epoch": 21.89471384884229,
+ "grad_norm": 0.2211964726448059,
+ "learning_rate": 0.0006,
+ "loss": 3.8892226219177246,
+ "step": 1576
+ },
+ {
+ "epoch": 21.90869375273045,
+ "grad_norm": 0.2097381353378296,
+ "learning_rate": 0.0006,
+ "loss": 3.9194154739379883,
+ "step": 1577
+ },
+ {
+ "epoch": 21.92267365661861,
+ "grad_norm": 0.21229565143585205,
+ "learning_rate": 0.0006,
+ "loss": 3.924694538116455,
+ "step": 1578
+ },
+ {
+ "epoch": 21.936653560506773,
+ "grad_norm": 0.2186083346605301,
+ "learning_rate": 0.0006,
+ "loss": 3.904440402984619,
+ "step": 1579
+ },
+ {
+ "epoch": 21.950633464394933,
+ "grad_norm": 0.21112321317195892,
+ "learning_rate": 0.0006,
+ "loss": 3.905674934387207,
+ "step": 1580
+ },
+ {
+ "epoch": 21.964613368283093,
+ "grad_norm": 0.20867373049259186,
+ "learning_rate": 0.0006,
+ "loss": 3.8761563301086426,
+ "step": 1581
+ },
+ {
+ "epoch": 21.978593272171253,
+ "grad_norm": 0.21640732884407043,
+ "learning_rate": 0.0006,
+ "loss": 3.871950149536133,
+ "step": 1582
+ },
+ {
+ "epoch": 21.992573176059416,
+ "grad_norm": 0.21920442581176758,
+ "learning_rate": 0.0006,
+ "loss": 3.8853464126586914,
+ "step": 1583
+ },
+ {
+ "epoch": 22.0,
+ "grad_norm": 0.24132665991783142,
+ "learning_rate": 0.0006,
+ "loss": 3.9012184143066406,
+ "step": 1584
+ },
+ {
+ "epoch": 22.0,
+ "eval_loss": 4.108598232269287,
+ "eval_runtime": 44.0434,
+ "eval_samples_per_second": 55.445,
+ "eval_steps_per_second": 3.474,
+ "step": 1584
+ },
+ {
+ "epoch": 22.01397990388816,
+ "grad_norm": 0.21989449858665466,
+ "learning_rate": 0.0006,
+ "loss": 3.8657469749450684,
+ "step": 1585
+ },
+ {
+ "epoch": 22.027959807776323,
+ "grad_norm": 0.20416802167892456,
+ "learning_rate": 0.0006,
+ "loss": 3.8682117462158203,
+ "step": 1586
+ },
+ {
+ "epoch": 22.041939711664483,
+ "grad_norm": 0.20651975274085999,
+ "learning_rate": 0.0006,
+ "loss": 3.8501222133636475,
+ "step": 1587
+ },
+ {
+ "epoch": 22.055919615552643,
+ "grad_norm": 0.22987176477909088,
+ "learning_rate": 0.0006,
+ "loss": 3.8830955028533936,
+ "step": 1588
+ },
+ {
+ "epoch": 22.069899519440803,
+ "grad_norm": 0.23308858275413513,
+ "learning_rate": 0.0006,
+ "loss": 3.8659040927886963,
+ "step": 1589
+ },
+ {
+ "epoch": 22.083879423328966,
+ "grad_norm": 0.2144266963005066,
+ "learning_rate": 0.0006,
+ "loss": 3.8311047554016113,
+ "step": 1590
+ },
+ {
+ "epoch": 22.097859327217126,
+ "grad_norm": 0.2052636295557022,
+ "learning_rate": 0.0006,
+ "loss": 3.8700156211853027,
+ "step": 1591
+ },
+ {
+ "epoch": 22.111839231105286,
+ "grad_norm": 0.22792384028434753,
+ "learning_rate": 0.0006,
+ "loss": 3.8799097537994385,
+ "step": 1592
+ },
+ {
+ "epoch": 22.125819134993446,
+ "grad_norm": 0.2533944249153137,
+ "learning_rate": 0.0006,
+ "loss": 3.874959945678711,
+ "step": 1593
+ },
+ {
+ "epoch": 22.13979903888161,
+ "grad_norm": 0.27126258611679077,
+ "learning_rate": 0.0006,
+ "loss": 3.863774299621582,
+ "step": 1594
+ },
+ {
+ "epoch": 22.15377894276977,
+ "grad_norm": 0.2634040415287018,
+ "learning_rate": 0.0006,
+ "loss": 3.8876869678497314,
+ "step": 1595
+ },
+ {
+ "epoch": 22.16775884665793,
+ "grad_norm": 0.267987459897995,
+ "learning_rate": 0.0006,
+ "loss": 3.871776819229126,
+ "step": 1596
+ },
+ {
+ "epoch": 22.18173875054609,
+ "grad_norm": 0.2972337305545807,
+ "learning_rate": 0.0006,
+ "loss": 3.8453969955444336,
+ "step": 1597
+ },
+ {
+ "epoch": 22.195718654434252,
+ "grad_norm": 0.3012159764766693,
+ "learning_rate": 0.0006,
+ "loss": 3.8774254322052,
+ "step": 1598
+ },
+ {
+ "epoch": 22.209698558322412,
+ "grad_norm": 0.27275875210762024,
+ "learning_rate": 0.0006,
+ "loss": 3.8558950424194336,
+ "step": 1599
+ },
+ {
+ "epoch": 22.22367846221057,
+ "grad_norm": 0.2817993462085724,
+ "learning_rate": 0.0006,
+ "loss": 3.872211217880249,
+ "step": 1600
+ },
+ {
+ "epoch": 22.23765836609873,
+ "grad_norm": 0.28823208808898926,
+ "learning_rate": 0.0006,
+ "loss": 3.847616672515869,
+ "step": 1601
+ },
+ {
+ "epoch": 22.251638269986895,
+ "grad_norm": 0.2646387815475464,
+ "learning_rate": 0.0006,
+ "loss": 3.8993802070617676,
+ "step": 1602
+ },
+ {
+ "epoch": 22.265618173875055,
+ "grad_norm": 0.27664077281951904,
+ "learning_rate": 0.0006,
+ "loss": 3.858553409576416,
+ "step": 1603
+ },
+ {
+ "epoch": 22.279598077763215,
+ "grad_norm": 0.27708905935287476,
+ "learning_rate": 0.0006,
+ "loss": 3.8691039085388184,
+ "step": 1604
+ },
+ {
+ "epoch": 22.293577981651374,
+ "grad_norm": 0.3045521378517151,
+ "learning_rate": 0.0006,
+ "loss": 3.8721439838409424,
+ "step": 1605
+ },
+ {
+ "epoch": 22.307557885539538,
+ "grad_norm": 0.3481914699077606,
+ "learning_rate": 0.0006,
+ "loss": 3.894503593444824,
+ "step": 1606
+ },
+ {
+ "epoch": 22.321537789427698,
+ "grad_norm": 0.3298046588897705,
+ "learning_rate": 0.0006,
+ "loss": 3.8420844078063965,
+ "step": 1607
+ },
+ {
+ "epoch": 22.335517693315857,
+ "grad_norm": 0.24967724084854126,
+ "learning_rate": 0.0006,
+ "loss": 3.8892619609832764,
+ "step": 1608
+ },
+ {
+ "epoch": 22.34949759720402,
+ "grad_norm": 0.22645241022109985,
+ "learning_rate": 0.0006,
+ "loss": 3.873265504837036,
+ "step": 1609
+ },
+ {
+ "epoch": 22.36347750109218,
+ "grad_norm": 0.22813954949378967,
+ "learning_rate": 0.0006,
+ "loss": 3.8658013343811035,
+ "step": 1610
+ },
+ {
+ "epoch": 22.37745740498034,
+ "grad_norm": 0.23825274407863617,
+ "learning_rate": 0.0006,
+ "loss": 3.885456085205078,
+ "step": 1611
+ },
+ {
+ "epoch": 22.3914373088685,
+ "grad_norm": 0.23612336814403534,
+ "learning_rate": 0.0006,
+ "loss": 3.851841449737549,
+ "step": 1612
+ },
+ {
+ "epoch": 22.405417212756664,
+ "grad_norm": 0.23851265013217926,
+ "learning_rate": 0.0006,
+ "loss": 3.8711647987365723,
+ "step": 1613
+ },
+ {
+ "epoch": 22.419397116644824,
+ "grad_norm": 0.22977286577224731,
+ "learning_rate": 0.0006,
+ "loss": 3.848539113998413,
+ "step": 1614
+ },
+ {
+ "epoch": 22.433377020532983,
+ "grad_norm": 0.20970143377780914,
+ "learning_rate": 0.0006,
+ "loss": 3.8709521293640137,
+ "step": 1615
+ },
+ {
+ "epoch": 22.447356924421143,
+ "grad_norm": 0.20714804530143738,
+ "learning_rate": 0.0006,
+ "loss": 3.875060558319092,
+ "step": 1616
+ },
+ {
+ "epoch": 22.461336828309307,
+ "grad_norm": 0.18881355226039886,
+ "learning_rate": 0.0006,
+ "loss": 3.8744640350341797,
+ "step": 1617
+ },
+ {
+ "epoch": 22.475316732197467,
+ "grad_norm": 0.1928759068250656,
+ "learning_rate": 0.0006,
+ "loss": 3.867971420288086,
+ "step": 1618
+ },
+ {
+ "epoch": 22.489296636085626,
+ "grad_norm": 0.18614749610424042,
+ "learning_rate": 0.0006,
+ "loss": 3.8738222122192383,
+ "step": 1619
+ },
+ {
+ "epoch": 22.503276539973786,
+ "grad_norm": 0.18614931404590607,
+ "learning_rate": 0.0006,
+ "loss": 3.8470513820648193,
+ "step": 1620
+ },
+ {
+ "epoch": 22.51725644386195,
+ "grad_norm": 0.17805059254169464,
+ "learning_rate": 0.0006,
+ "loss": 3.866396903991699,
+ "step": 1621
+ },
+ {
+ "epoch": 22.53123634775011,
+ "grad_norm": 0.16941314935684204,
+ "learning_rate": 0.0006,
+ "loss": 3.856832265853882,
+ "step": 1622
+ },
+ {
+ "epoch": 22.54521625163827,
+ "grad_norm": 0.1802310198545456,
+ "learning_rate": 0.0006,
+ "loss": 3.885653018951416,
+ "step": 1623
+ },
+ {
+ "epoch": 22.55919615552643,
+ "grad_norm": 0.1854856163263321,
+ "learning_rate": 0.0006,
+ "loss": 3.8779640197753906,
+ "step": 1624
+ },
+ {
+ "epoch": 22.573176059414592,
+ "grad_norm": 0.18765869736671448,
+ "learning_rate": 0.0006,
+ "loss": 3.8449032306671143,
+ "step": 1625
+ },
+ {
+ "epoch": 22.587155963302752,
+ "grad_norm": 0.1907789707183838,
+ "learning_rate": 0.0006,
+ "loss": 3.863029718399048,
+ "step": 1626
+ },
+ {
+ "epoch": 22.601135867190912,
+ "grad_norm": 0.19285395741462708,
+ "learning_rate": 0.0006,
+ "loss": 3.880145788192749,
+ "step": 1627
+ },
+ {
+ "epoch": 22.615115771079076,
+ "grad_norm": 0.19229751825332642,
+ "learning_rate": 0.0006,
+ "loss": 3.8521225452423096,
+ "step": 1628
+ },
+ {
+ "epoch": 22.629095674967235,
+ "grad_norm": 0.191694438457489,
+ "learning_rate": 0.0006,
+ "loss": 3.899827003479004,
+ "step": 1629
+ },
+ {
+ "epoch": 22.643075578855395,
+ "grad_norm": 0.20143048465251923,
+ "learning_rate": 0.0006,
+ "loss": 3.862064838409424,
+ "step": 1630
+ },
+ {
+ "epoch": 22.657055482743555,
+ "grad_norm": 0.1959840953350067,
+ "learning_rate": 0.0006,
+ "loss": 3.8955392837524414,
+ "step": 1631
+ },
+ {
+ "epoch": 22.67103538663172,
+ "grad_norm": 0.21454884111881256,
+ "learning_rate": 0.0006,
+ "loss": 3.8503167629241943,
+ "step": 1632
+ },
+ {
+ "epoch": 22.68501529051988,
+ "grad_norm": 0.21748484671115875,
+ "learning_rate": 0.0006,
+ "loss": 3.897134304046631,
+ "step": 1633
+ },
+ {
+ "epoch": 22.698995194408038,
+ "grad_norm": 0.21204186975955963,
+ "learning_rate": 0.0006,
+ "loss": 3.9292588233947754,
+ "step": 1634
+ },
+ {
+ "epoch": 22.712975098296198,
+ "grad_norm": 0.2112748771905899,
+ "learning_rate": 0.0006,
+ "loss": 3.89798641204834,
+ "step": 1635
+ },
+ {
+ "epoch": 22.72695500218436,
+ "grad_norm": 0.188576802611351,
+ "learning_rate": 0.0006,
+ "loss": 3.85627818107605,
+ "step": 1636
+ },
+ {
+ "epoch": 22.74093490607252,
+ "grad_norm": 0.17755994200706482,
+ "learning_rate": 0.0006,
+ "loss": 3.8480074405670166,
+ "step": 1637
+ },
+ {
+ "epoch": 22.75491480996068,
+ "grad_norm": 0.18037520349025726,
+ "learning_rate": 0.0006,
+ "loss": 3.8800172805786133,
+ "step": 1638
+ },
+ {
+ "epoch": 22.76889471384884,
+ "grad_norm": 0.19205765426158905,
+ "learning_rate": 0.0006,
+ "loss": 3.8658275604248047,
+ "step": 1639
+ },
+ {
+ "epoch": 22.782874617737004,
+ "grad_norm": 0.21801964938640594,
+ "learning_rate": 0.0006,
+ "loss": 3.8999452590942383,
+ "step": 1640
+ },
+ {
+ "epoch": 22.796854521625164,
+ "grad_norm": 0.23586086928844452,
+ "learning_rate": 0.0006,
+ "loss": 3.8660664558410645,
+ "step": 1641
+ },
+ {
+ "epoch": 22.810834425513324,
+ "grad_norm": 0.22289055585861206,
+ "learning_rate": 0.0006,
+ "loss": 3.86102557182312,
+ "step": 1642
+ },
+ {
+ "epoch": 22.824814329401484,
+ "grad_norm": 0.20695745944976807,
+ "learning_rate": 0.0006,
+ "loss": 3.8336222171783447,
+ "step": 1643
+ },
+ {
+ "epoch": 22.838794233289647,
+ "grad_norm": 0.2157406210899353,
+ "learning_rate": 0.0006,
+ "loss": 3.8923370838165283,
+ "step": 1644
+ },
+ {
+ "epoch": 22.852774137177807,
+ "grad_norm": 0.2326202690601349,
+ "learning_rate": 0.0006,
+ "loss": 3.8841443061828613,
+ "step": 1645
+ },
+ {
+ "epoch": 22.866754041065967,
+ "grad_norm": 0.2228803187608719,
+ "learning_rate": 0.0006,
+ "loss": 3.8791375160217285,
+ "step": 1646
+ },
+ {
+ "epoch": 22.88073394495413,
+ "grad_norm": 0.228999063372612,
+ "learning_rate": 0.0006,
+ "loss": 3.9005866050720215,
+ "step": 1647
+ },
+ {
+ "epoch": 22.89471384884229,
+ "grad_norm": 0.19673815369606018,
+ "learning_rate": 0.0006,
+ "loss": 3.8954291343688965,
+ "step": 1648
+ },
+ {
+ "epoch": 22.90869375273045,
+ "grad_norm": 0.1862584501504898,
+ "learning_rate": 0.0006,
+ "loss": 3.8591439723968506,
+ "step": 1649
+ },
+ {
+ "epoch": 22.92267365661861,
+ "grad_norm": 0.21360838413238525,
+ "learning_rate": 0.0006,
+ "loss": 3.862949848175049,
+ "step": 1650
+ },
+ {
+ "epoch": 22.936653560506773,
+ "grad_norm": 0.22538702189922333,
+ "learning_rate": 0.0006,
+ "loss": 3.8466529846191406,
+ "step": 1651
+ },
+ {
+ "epoch": 22.950633464394933,
+ "grad_norm": 0.21452727913856506,
+ "learning_rate": 0.0006,
+ "loss": 3.890007495880127,
+ "step": 1652
+ },
+ {
+ "epoch": 22.964613368283093,
+ "grad_norm": 0.21283482015132904,
+ "learning_rate": 0.0006,
+ "loss": 3.8820929527282715,
+ "step": 1653
+ },
+ {
+ "epoch": 22.978593272171253,
+ "grad_norm": 0.2035825103521347,
+ "learning_rate": 0.0006,
+ "loss": 3.8663241863250732,
+ "step": 1654
+ },
+ {
+ "epoch": 22.992573176059416,
+ "grad_norm": 0.22431661188602448,
+ "learning_rate": 0.0006,
+ "loss": 3.88238525390625,
+ "step": 1655
+ },
+ {
+ "epoch": 23.0,
+ "grad_norm": 0.2619943916797638,
+ "learning_rate": 0.0006,
+ "loss": 3.8482635021209717,
+ "step": 1656
+ },
+ {
+ "epoch": 23.0,
+ "eval_loss": 4.099980354309082,
+ "eval_runtime": 44.1311,
+ "eval_samples_per_second": 55.335,
+ "eval_steps_per_second": 3.467,
+ "step": 1656
+ },
+ {
+ "epoch": 23.01397990388816,
+ "grad_norm": 0.24712848663330078,
+ "learning_rate": 0.0006,
+ "loss": 3.836700916290283,
+ "step": 1657
+ },
+ {
+ "epoch": 23.027959807776323,
+ "grad_norm": 0.28568798303604126,
+ "learning_rate": 0.0006,
+ "loss": 3.8523952960968018,
+ "step": 1658
+ },
+ {
+ "epoch": 23.041939711664483,
+ "grad_norm": 0.2999744415283203,
+ "learning_rate": 0.0006,
+ "loss": 3.8229494094848633,
+ "step": 1659
+ },
+ {
+ "epoch": 23.055919615552643,
+ "grad_norm": 0.32080450654029846,
+ "learning_rate": 0.0006,
+ "loss": 3.8562774658203125,
+ "step": 1660
+ },
+ {
+ "epoch": 23.069899519440803,
+ "grad_norm": 0.293468177318573,
+ "learning_rate": 0.0006,
+ "loss": 3.889139175415039,
+ "step": 1661
+ },
+ {
+ "epoch": 23.083879423328966,
+ "grad_norm": 0.2605799436569214,
+ "learning_rate": 0.0006,
+ "loss": 3.838681221008301,
+ "step": 1662
+ },
+ {
+ "epoch": 23.097859327217126,
+ "grad_norm": 0.2656237483024597,
+ "learning_rate": 0.0006,
+ "loss": 3.8603532314300537,
+ "step": 1663
+ },
+ {
+ "epoch": 23.111839231105286,
+ "grad_norm": 0.27163293957710266,
+ "learning_rate": 0.0006,
+ "loss": 3.846987009048462,
+ "step": 1664
+ },
+ {
+ "epoch": 23.125819134993446,
+ "grad_norm": 0.2719763517379761,
+ "learning_rate": 0.0006,
+ "loss": 3.805354595184326,
+ "step": 1665
+ },
+ {
+ "epoch": 23.13979903888161,
+ "grad_norm": 0.25786274671554565,
+ "learning_rate": 0.0006,
+ "loss": 3.8486907482147217,
+ "step": 1666
+ },
+ {
+ "epoch": 23.15377894276977,
+ "grad_norm": 0.2675692141056061,
+ "learning_rate": 0.0006,
+ "loss": 3.816493511199951,
+ "step": 1667
+ },
+ {
+ "epoch": 23.16775884665793,
+ "grad_norm": 0.2711698114871979,
+ "learning_rate": 0.0006,
+ "loss": 3.851863384246826,
+ "step": 1668
+ },
+ {
+ "epoch": 23.18173875054609,
+ "grad_norm": 0.2588968873023987,
+ "learning_rate": 0.0006,
+ "loss": 3.860816717147827,
+ "step": 1669
+ },
+ {
+ "epoch": 23.195718654434252,
+ "grad_norm": 0.2458600401878357,
+ "learning_rate": 0.0006,
+ "loss": 3.8058223724365234,
+ "step": 1670
+ },
+ {
+ "epoch": 23.209698558322412,
+ "grad_norm": 0.22014005482196808,
+ "learning_rate": 0.0006,
+ "loss": 3.8686985969543457,
+ "step": 1671
+ },
+ {
+ "epoch": 23.22367846221057,
+ "grad_norm": 0.22450537979602814,
+ "learning_rate": 0.0006,
+ "loss": 3.8379364013671875,
+ "step": 1672
+ },
+ {
+ "epoch": 23.23765836609873,
+ "grad_norm": 0.22132326662540436,
+ "learning_rate": 0.0006,
+ "loss": 3.8873870372772217,
+ "step": 1673
+ },
+ {
+ "epoch": 23.251638269986895,
+ "grad_norm": 0.20994804799556732,
+ "learning_rate": 0.0006,
+ "loss": 3.821415424346924,
+ "step": 1674
+ },
+ {
+ "epoch": 23.265618173875055,
+ "grad_norm": 0.2040853649377823,
+ "learning_rate": 0.0006,
+ "loss": 3.831658124923706,
+ "step": 1675
+ },
+ {
+ "epoch": 23.279598077763215,
+ "grad_norm": 0.20878618955612183,
+ "learning_rate": 0.0006,
+ "loss": 3.838672637939453,
+ "step": 1676
+ },
+ {
+ "epoch": 23.293577981651374,
+ "grad_norm": 0.19974198937416077,
+ "learning_rate": 0.0006,
+ "loss": 3.8442561626434326,
+ "step": 1677
+ },
+ {
+ "epoch": 23.307557885539538,
+ "grad_norm": 0.20523984730243683,
+ "learning_rate": 0.0006,
+ "loss": 3.846139907836914,
+ "step": 1678
+ },
+ {
+ "epoch": 23.321537789427698,
+ "grad_norm": 0.2045847624540329,
+ "learning_rate": 0.0006,
+ "loss": 3.8597474098205566,
+ "step": 1679
+ },
+ {
+ "epoch": 23.335517693315857,
+ "grad_norm": 0.20957441627979279,
+ "learning_rate": 0.0006,
+ "loss": 3.8493881225585938,
+ "step": 1680
+ },
+ {
+ "epoch": 23.34949759720402,
+ "grad_norm": 0.2069379836320877,
+ "learning_rate": 0.0006,
+ "loss": 3.8510046005249023,
+ "step": 1681
+ },
+ {
+ "epoch": 23.36347750109218,
+ "grad_norm": 0.19627872109413147,
+ "learning_rate": 0.0006,
+ "loss": 3.844618320465088,
+ "step": 1682
+ },
+ {
+ "epoch": 23.37745740498034,
+ "grad_norm": 0.19599434733390808,
+ "learning_rate": 0.0006,
+ "loss": 3.8245465755462646,
+ "step": 1683
+ },
+ {
+ "epoch": 23.3914373088685,
+ "grad_norm": 0.2035072147846222,
+ "learning_rate": 0.0006,
+ "loss": 3.854422092437744,
+ "step": 1684
+ },
+ {
+ "epoch": 23.405417212756664,
+ "grad_norm": 0.21836814284324646,
+ "learning_rate": 0.0006,
+ "loss": 3.83512282371521,
+ "step": 1685
+ },
+ {
+ "epoch": 23.419397116644824,
+ "grad_norm": 0.22844630479812622,
+ "learning_rate": 0.0006,
+ "loss": 3.8744301795959473,
+ "step": 1686
+ },
+ {
+ "epoch": 23.433377020532983,
+ "grad_norm": 0.2259359359741211,
+ "learning_rate": 0.0006,
+ "loss": 3.8460323810577393,
+ "step": 1687
+ },
+ {
+ "epoch": 23.447356924421143,
+ "grad_norm": 0.24440120160579681,
+ "learning_rate": 0.0006,
+ "loss": 3.8543787002563477,
+ "step": 1688
+ },
+ {
+ "epoch": 23.461336828309307,
+ "grad_norm": 0.25063708424568176,
+ "learning_rate": 0.0006,
+ "loss": 3.851004123687744,
+ "step": 1689
+ },
+ {
+ "epoch": 23.475316732197467,
+ "grad_norm": 0.25515618920326233,
+ "learning_rate": 0.0006,
+ "loss": 3.8685030937194824,
+ "step": 1690
+ },
+ {
+ "epoch": 23.489296636085626,
+ "grad_norm": 0.23961050808429718,
+ "learning_rate": 0.0006,
+ "loss": 3.866792678833008,
+ "step": 1691
+ },
+ {
+ "epoch": 23.503276539973786,
+ "grad_norm": 0.20880955457687378,
+ "learning_rate": 0.0006,
+ "loss": 3.8416638374328613,
+ "step": 1692
+ },
+ {
+ "epoch": 23.51725644386195,
+ "grad_norm": 0.1989721804857254,
+ "learning_rate": 0.0006,
+ "loss": 3.8608641624450684,
+ "step": 1693
+ },
+ {
+ "epoch": 23.53123634775011,
+ "grad_norm": 0.207577183842659,
+ "learning_rate": 0.0006,
+ "loss": 3.8431811332702637,
+ "step": 1694
+ },
+ {
+ "epoch": 23.54521625163827,
+ "grad_norm": 0.20844359695911407,
+ "learning_rate": 0.0006,
+ "loss": 3.882844924926758,
+ "step": 1695
+ },
+ {
+ "epoch": 23.55919615552643,
+ "grad_norm": 0.22511139512062073,
+ "learning_rate": 0.0006,
+ "loss": 3.866156578063965,
+ "step": 1696
+ },
+ {
+ "epoch": 23.573176059414592,
+ "grad_norm": 0.21648484468460083,
+ "learning_rate": 0.0006,
+ "loss": 3.87117075920105,
+ "step": 1697
+ },
+ {
+ "epoch": 23.587155963302752,
+ "grad_norm": 0.2081802636384964,
+ "learning_rate": 0.0006,
+ "loss": 3.828132152557373,
+ "step": 1698
+ },
+ {
+ "epoch": 23.601135867190912,
+ "grad_norm": 0.2017381489276886,
+ "learning_rate": 0.0006,
+ "loss": 3.839737892150879,
+ "step": 1699
+ },
+ {
+ "epoch": 23.615115771079076,
+ "grad_norm": 0.2025786191225052,
+ "learning_rate": 0.0006,
+ "loss": 3.8787710666656494,
+ "step": 1700
+ },
+ {
+ "epoch": 23.629095674967235,
+ "grad_norm": 0.21394102275371552,
+ "learning_rate": 0.0006,
+ "loss": 3.824047088623047,
+ "step": 1701
+ },
+ {
+ "epoch": 23.643075578855395,
+ "grad_norm": 0.20749174058437347,
+ "learning_rate": 0.0006,
+ "loss": 3.877009153366089,
+ "step": 1702
+ },
+ {
+ "epoch": 23.657055482743555,
+ "grad_norm": 0.2132839858531952,
+ "learning_rate": 0.0006,
+ "loss": 3.844214916229248,
+ "step": 1703
+ },
+ {
+ "epoch": 23.67103538663172,
+ "grad_norm": 0.22408637404441833,
+ "learning_rate": 0.0006,
+ "loss": 3.8570785522460938,
+ "step": 1704
+ },
+ {
+ "epoch": 23.68501529051988,
+ "grad_norm": 0.2275897115468979,
+ "learning_rate": 0.0006,
+ "loss": 3.8599512577056885,
+ "step": 1705
+ },
+ {
+ "epoch": 23.698995194408038,
+ "grad_norm": 0.2230614721775055,
+ "learning_rate": 0.0006,
+ "loss": 3.86374568939209,
+ "step": 1706
+ },
+ {
+ "epoch": 23.712975098296198,
+ "grad_norm": 0.21873739361763,
+ "learning_rate": 0.0006,
+ "loss": 3.8530168533325195,
+ "step": 1707
+ },
+ {
+ "epoch": 23.72695500218436,
+ "grad_norm": 0.24418923258781433,
+ "learning_rate": 0.0006,
+ "loss": 3.8410465717315674,
+ "step": 1708
+ },
+ {
+ "epoch": 23.74093490607252,
+ "grad_norm": 0.24894575774669647,
+ "learning_rate": 0.0006,
+ "loss": 3.8386030197143555,
+ "step": 1709
+ },
+ {
+ "epoch": 23.75491480996068,
+ "grad_norm": 0.221230611205101,
+ "learning_rate": 0.0006,
+ "loss": 3.8116674423217773,
+ "step": 1710
+ },
+ {
+ "epoch": 23.76889471384884,
+ "grad_norm": 0.20560568571090698,
+ "learning_rate": 0.0006,
+ "loss": 3.8634426593780518,
+ "step": 1711
+ },
+ {
+ "epoch": 23.782874617737004,
+ "grad_norm": 0.20450648665428162,
+ "learning_rate": 0.0006,
+ "loss": 3.8690528869628906,
+ "step": 1712
+ },
+ {
+ "epoch": 23.796854521625164,
+ "grad_norm": 0.18996809422969818,
+ "learning_rate": 0.0006,
+ "loss": 3.8484325408935547,
+ "step": 1713
+ },
+ {
+ "epoch": 23.810834425513324,
+ "grad_norm": 0.20165087282657623,
+ "learning_rate": 0.0006,
+ "loss": 3.8823161125183105,
+ "step": 1714
+ },
+ {
+ "epoch": 23.824814329401484,
+ "grad_norm": 0.21149255335330963,
+ "learning_rate": 0.0006,
+ "loss": 3.8833112716674805,
+ "step": 1715
+ },
+ {
+ "epoch": 23.838794233289647,
+ "grad_norm": 0.21254824101924896,
+ "learning_rate": 0.0006,
+ "loss": 3.8414595127105713,
+ "step": 1716
+ },
+ {
+ "epoch": 23.852774137177807,
+ "grad_norm": 0.21313664317131042,
+ "learning_rate": 0.0006,
+ "loss": 3.8732268810272217,
+ "step": 1717
+ },
+ {
+ "epoch": 23.866754041065967,
+ "grad_norm": 0.21635662019252777,
+ "learning_rate": 0.0006,
+ "loss": 3.861222743988037,
+ "step": 1718
+ },
+ {
+ "epoch": 23.88073394495413,
+ "grad_norm": 0.20612190663814545,
+ "learning_rate": 0.0006,
+ "loss": 3.821854591369629,
+ "step": 1719
+ },
+ {
+ "epoch": 23.89471384884229,
+ "grad_norm": 0.1975104659795761,
+ "learning_rate": 0.0006,
+ "loss": 3.8815202713012695,
+ "step": 1720
+ },
+ {
+ "epoch": 23.90869375273045,
+ "grad_norm": 0.20893609523773193,
+ "learning_rate": 0.0006,
+ "loss": 3.8581607341766357,
+ "step": 1721
+ },
+ {
+ "epoch": 23.92267365661861,
+ "grad_norm": 0.2125461846590042,
+ "learning_rate": 0.0006,
+ "loss": 3.839498281478882,
+ "step": 1722
+ },
+ {
+ "epoch": 23.936653560506773,
+ "grad_norm": 0.19985878467559814,
+ "learning_rate": 0.0006,
+ "loss": 3.856555223464966,
+ "step": 1723
+ },
+ {
+ "epoch": 23.950633464394933,
+ "grad_norm": 0.1922348290681839,
+ "learning_rate": 0.0006,
+ "loss": 3.8956782817840576,
+ "step": 1724
+ },
+ {
+ "epoch": 23.964613368283093,
+ "grad_norm": 0.2191949337720871,
+ "learning_rate": 0.0006,
+ "loss": 3.8582406044006348,
+ "step": 1725
+ },
+ {
+ "epoch": 23.978593272171253,
+ "grad_norm": 0.2569248676300049,
+ "learning_rate": 0.0006,
+ "loss": 3.855678081512451,
+ "step": 1726
+ },
+ {
+ "epoch": 23.992573176059416,
+ "grad_norm": 0.2641172409057617,
+ "learning_rate": 0.0006,
+ "loss": 3.8426473140716553,
+ "step": 1727
+ },
+ {
+ "epoch": 24.0,
+ "grad_norm": 0.29637208580970764,
+ "learning_rate": 0.0006,
+ "loss": 3.843040704727173,
+ "step": 1728
+ },
+ {
+ "epoch": 24.0,
+ "eval_loss": 4.075617790222168,
+ "eval_runtime": 43.9795,
+ "eval_samples_per_second": 55.526,
+ "eval_steps_per_second": 3.479,
+ "step": 1728
+ },
+ {
+ "epoch": 24.01397990388816,
+ "grad_norm": 0.2804758548736572,
+ "learning_rate": 0.0006,
+ "loss": 3.819150924682617,
+ "step": 1729
+ },
+ {
+ "epoch": 24.027959807776323,
+ "grad_norm": 0.2796347141265869,
+ "learning_rate": 0.0006,
+ "loss": 3.8400537967681885,
+ "step": 1730
+ },
+ {
+ "epoch": 24.041939711664483,
+ "grad_norm": 0.28388649225234985,
+ "learning_rate": 0.0006,
+ "loss": 3.844595432281494,
+ "step": 1731
+ },
+ {
+ "epoch": 24.055919615552643,
+ "grad_norm": 0.2944681942462921,
+ "learning_rate": 0.0006,
+ "loss": 3.8048014640808105,
+ "step": 1732
+ },
+ {
+ "epoch": 24.069899519440803,
+ "grad_norm": 0.2956784665584564,
+ "learning_rate": 0.0006,
+ "loss": 3.8488049507141113,
+ "step": 1733
+ },
+ {
+ "epoch": 24.083879423328966,
+ "grad_norm": 0.2822059392929077,
+ "learning_rate": 0.0006,
+ "loss": 3.850322723388672,
+ "step": 1734
+ },
+ {
+ "epoch": 24.097859327217126,
+ "grad_norm": 0.3012927174568176,
+ "learning_rate": 0.0006,
+ "loss": 3.8748154640197754,
+ "step": 1735
+ },
+ {
+ "epoch": 24.111839231105286,
+ "grad_norm": 0.28868764638900757,
+ "learning_rate": 0.0006,
+ "loss": 3.8282783031463623,
+ "step": 1736
+ },
+ {
+ "epoch": 24.125819134993446,
+ "grad_norm": 0.277203768491745,
+ "learning_rate": 0.0006,
+ "loss": 3.8462908267974854,
+ "step": 1737
+ },
+ {
+ "epoch": 24.13979903888161,
+ "grad_norm": 0.2654508948326111,
+ "learning_rate": 0.0006,
+ "loss": 3.8043856620788574,
+ "step": 1738
+ },
+ {
+ "epoch": 24.15377894276977,
+ "grad_norm": 0.24425740540027618,
+ "learning_rate": 0.0006,
+ "loss": 3.8284308910369873,
+ "step": 1739
+ },
+ {
+ "epoch": 24.16775884665793,
+ "grad_norm": 0.24407348036766052,
+ "learning_rate": 0.0006,
+ "loss": 3.8489203453063965,
+ "step": 1740
+ },
+ {
+ "epoch": 24.18173875054609,
+ "grad_norm": 0.2387724369764328,
+ "learning_rate": 0.0006,
+ "loss": 3.8240389823913574,
+ "step": 1741
+ },
+ {
+ "epoch": 24.195718654434252,
+ "grad_norm": 0.2832290232181549,
+ "learning_rate": 0.0006,
+ "loss": 3.869053363800049,
+ "step": 1742
+ },
+ {
+ "epoch": 24.209698558322412,
+ "grad_norm": 0.26501718163490295,
+ "learning_rate": 0.0006,
+ "loss": 3.8624343872070312,
+ "step": 1743
+ },
+ {
+ "epoch": 24.22367846221057,
+ "grad_norm": 0.24234668910503387,
+ "learning_rate": 0.0006,
+ "loss": 3.823103904724121,
+ "step": 1744
+ },
+ {
+ "epoch": 24.23765836609873,
+ "grad_norm": 0.24160076677799225,
+ "learning_rate": 0.0006,
+ "loss": 3.8174376487731934,
+ "step": 1745
+ },
+ {
+ "epoch": 24.251638269986895,
+ "grad_norm": 0.2447604238986969,
+ "learning_rate": 0.0006,
+ "loss": 3.8345441818237305,
+ "step": 1746
+ },
+ {
+ "epoch": 24.265618173875055,
+ "grad_norm": 0.22864456474781036,
+ "learning_rate": 0.0006,
+ "loss": 3.833101272583008,
+ "step": 1747
+ },
+ {
+ "epoch": 24.279598077763215,
+ "grad_norm": 0.20429204404354095,
+ "learning_rate": 0.0006,
+ "loss": 3.8055219650268555,
+ "step": 1748
+ },
+ {
+ "epoch": 24.293577981651374,
+ "grad_norm": 0.21538510918617249,
+ "learning_rate": 0.0006,
+ "loss": 3.7929327487945557,
+ "step": 1749
+ },
+ {
+ "epoch": 24.307557885539538,
+ "grad_norm": 0.2189008593559265,
+ "learning_rate": 0.0006,
+ "loss": 3.852264881134033,
+ "step": 1750
+ },
+ {
+ "epoch": 24.321537789427698,
+ "grad_norm": 0.2228662073612213,
+ "learning_rate": 0.0006,
+ "loss": 3.831088066101074,
+ "step": 1751
+ },
+ {
+ "epoch": 24.335517693315857,
+ "grad_norm": 0.2039937973022461,
+ "learning_rate": 0.0006,
+ "loss": 3.8358256816864014,
+ "step": 1752
+ },
+ {
+ "epoch": 24.34949759720402,
+ "grad_norm": 0.19247715175151825,
+ "learning_rate": 0.0006,
+ "loss": 3.8077402114868164,
+ "step": 1753
+ },
+ {
+ "epoch": 24.36347750109218,
+ "grad_norm": 0.18301935493946075,
+ "learning_rate": 0.0006,
+ "loss": 3.81380033493042,
+ "step": 1754
+ },
+ {
+ "epoch": 24.37745740498034,
+ "grad_norm": 0.19325268268585205,
+ "learning_rate": 0.0006,
+ "loss": 3.8447322845458984,
+ "step": 1755
+ },
+ {
+ "epoch": 24.3914373088685,
+ "grad_norm": 0.2007269263267517,
+ "learning_rate": 0.0006,
+ "loss": 3.82779860496521,
+ "step": 1756
+ },
+ {
+ "epoch": 24.405417212756664,
+ "grad_norm": 0.20567037165164948,
+ "learning_rate": 0.0006,
+ "loss": 3.800354480743408,
+ "step": 1757
+ },
+ {
+ "epoch": 24.419397116644824,
+ "grad_norm": 0.22553028166294098,
+ "learning_rate": 0.0006,
+ "loss": 3.7910406589508057,
+ "step": 1758
+ },
+ {
+ "epoch": 24.433377020532983,
+ "grad_norm": 0.22697079181671143,
+ "learning_rate": 0.0006,
+ "loss": 3.857635974884033,
+ "step": 1759
+ },
+ {
+ "epoch": 24.447356924421143,
+ "grad_norm": 0.22090297937393188,
+ "learning_rate": 0.0006,
+ "loss": 3.8112804889678955,
+ "step": 1760
+ },
+ {
+ "epoch": 24.461336828309307,
+ "grad_norm": 0.24325518310070038,
+ "learning_rate": 0.0006,
+ "loss": 3.822084426879883,
+ "step": 1761
+ },
+ {
+ "epoch": 24.475316732197467,
+ "grad_norm": 0.2702929377555847,
+ "learning_rate": 0.0006,
+ "loss": 3.8307600021362305,
+ "step": 1762
+ },
+ {
+ "epoch": 24.489296636085626,
+ "grad_norm": 0.2699742317199707,
+ "learning_rate": 0.0006,
+ "loss": 3.8479247093200684,
+ "step": 1763
+ },
+ {
+ "epoch": 24.503276539973786,
+ "grad_norm": 0.2526061236858368,
+ "learning_rate": 0.0006,
+ "loss": 3.8615071773529053,
+ "step": 1764
+ },
+ {
+ "epoch": 24.51725644386195,
+ "grad_norm": 0.2633848190307617,
+ "learning_rate": 0.0006,
+ "loss": 3.8412697315216064,
+ "step": 1765
+ },
+ {
+ "epoch": 24.53123634775011,
+ "grad_norm": 0.2711184024810791,
+ "learning_rate": 0.0006,
+ "loss": 3.83647084236145,
+ "step": 1766
+ },
+ {
+ "epoch": 24.54521625163827,
+ "grad_norm": 0.2691243588924408,
+ "learning_rate": 0.0006,
+ "loss": 3.8489012718200684,
+ "step": 1767
+ },
+ {
+ "epoch": 24.55919615552643,
+ "grad_norm": 0.2580898404121399,
+ "learning_rate": 0.0006,
+ "loss": 3.8464407920837402,
+ "step": 1768
+ },
+ {
+ "epoch": 24.573176059414592,
+ "grad_norm": 0.21342119574546814,
+ "learning_rate": 0.0006,
+ "loss": 3.8279383182525635,
+ "step": 1769
+ },
+ {
+ "epoch": 24.587155963302752,
+ "grad_norm": 0.22102399170398712,
+ "learning_rate": 0.0006,
+ "loss": 3.841676712036133,
+ "step": 1770
+ },
+ {
+ "epoch": 24.601135867190912,
+ "grad_norm": 0.2882173955440521,
+ "learning_rate": 0.0006,
+ "loss": 3.825528383255005,
+ "step": 1771
+ },
+ {
+ "epoch": 24.615115771079076,
+ "grad_norm": 0.3403635323047638,
+ "learning_rate": 0.0006,
+ "loss": 3.8282246589660645,
+ "step": 1772
+ },
+ {
+ "epoch": 24.629095674967235,
+ "grad_norm": 0.32192692160606384,
+ "learning_rate": 0.0006,
+ "loss": 3.8411307334899902,
+ "step": 1773
+ },
+ {
+ "epoch": 24.643075578855395,
+ "grad_norm": 0.2534109055995941,
+ "learning_rate": 0.0006,
+ "loss": 3.843007802963257,
+ "step": 1774
+ },
+ {
+ "epoch": 24.657055482743555,
+ "grad_norm": 0.25483962893486023,
+ "learning_rate": 0.0006,
+ "loss": 3.848358154296875,
+ "step": 1775
+ },
+ {
+ "epoch": 24.67103538663172,
+ "grad_norm": 0.25175443291664124,
+ "learning_rate": 0.0006,
+ "loss": 3.8232598304748535,
+ "step": 1776
+ },
+ {
+ "epoch": 24.68501529051988,
+ "grad_norm": 0.20538510382175446,
+ "learning_rate": 0.0006,
+ "loss": 3.857635498046875,
+ "step": 1777
+ },
+ {
+ "epoch": 24.698995194408038,
+ "grad_norm": 0.240861177444458,
+ "learning_rate": 0.0006,
+ "loss": 3.83717679977417,
+ "step": 1778
+ },
+ {
+ "epoch": 24.712975098296198,
+ "grad_norm": 0.23646967113018036,
+ "learning_rate": 0.0006,
+ "loss": 3.81032133102417,
+ "step": 1779
+ },
+ {
+ "epoch": 24.72695500218436,
+ "grad_norm": 0.2164423167705536,
+ "learning_rate": 0.0006,
+ "loss": 3.807878255844116,
+ "step": 1780
+ },
+ {
+ "epoch": 24.74093490607252,
+ "grad_norm": 0.21160705387592316,
+ "learning_rate": 0.0006,
+ "loss": 3.870394468307495,
+ "step": 1781
+ },
+ {
+ "epoch": 24.75491480996068,
+ "grad_norm": 0.20284807682037354,
+ "learning_rate": 0.0006,
+ "loss": 3.842154026031494,
+ "step": 1782
+ },
+ {
+ "epoch": 24.76889471384884,
+ "grad_norm": 0.20738485455513,
+ "learning_rate": 0.0006,
+ "loss": 3.8347136974334717,
+ "step": 1783
+ },
+ {
+ "epoch": 24.782874617737004,
+ "grad_norm": 0.20253778994083405,
+ "learning_rate": 0.0006,
+ "loss": 3.814948320388794,
+ "step": 1784
+ },
+ {
+ "epoch": 24.796854521625164,
+ "grad_norm": 0.20567010343074799,
+ "learning_rate": 0.0006,
+ "loss": 3.8354592323303223,
+ "step": 1785
+ },
+ {
+ "epoch": 24.810834425513324,
+ "grad_norm": 0.20639720559120178,
+ "learning_rate": 0.0006,
+ "loss": 3.8336033821105957,
+ "step": 1786
+ },
+ {
+ "epoch": 24.824814329401484,
+ "grad_norm": 0.19978247582912445,
+ "learning_rate": 0.0006,
+ "loss": 3.8209140300750732,
+ "step": 1787
+ },
+ {
+ "epoch": 24.838794233289647,
+ "grad_norm": 0.20628373324871063,
+ "learning_rate": 0.0006,
+ "loss": 3.8372955322265625,
+ "step": 1788
+ },
+ {
+ "epoch": 24.852774137177807,
+ "grad_norm": 0.2266162782907486,
+ "learning_rate": 0.0006,
+ "loss": 3.850994110107422,
+ "step": 1789
+ },
+ {
+ "epoch": 24.866754041065967,
+ "grad_norm": 0.22567765414714813,
+ "learning_rate": 0.0006,
+ "loss": 3.8552165031433105,
+ "step": 1790
+ },
+ {
+ "epoch": 24.88073394495413,
+ "grad_norm": 0.228011354804039,
+ "learning_rate": 0.0006,
+ "loss": 3.8310747146606445,
+ "step": 1791
+ },
+ {
+ "epoch": 24.89471384884229,
+ "grad_norm": 0.23706914484500885,
+ "learning_rate": 0.0006,
+ "loss": 3.8369603157043457,
+ "step": 1792
+ },
+ {
+ "epoch": 24.90869375273045,
+ "grad_norm": 0.22669097781181335,
+ "learning_rate": 0.0006,
+ "loss": 3.8443825244903564,
+ "step": 1793
+ },
+ {
+ "epoch": 24.92267365661861,
+ "grad_norm": 0.2051001936197281,
+ "learning_rate": 0.0006,
+ "loss": 3.7938501834869385,
+ "step": 1794
+ },
+ {
+ "epoch": 24.936653560506773,
+ "grad_norm": 0.2091219276189804,
+ "learning_rate": 0.0006,
+ "loss": 3.8167076110839844,
+ "step": 1795
+ },
+ {
+ "epoch": 24.950633464394933,
+ "grad_norm": 0.20517204701900482,
+ "learning_rate": 0.0006,
+ "loss": 3.852670669555664,
+ "step": 1796
+ },
+ {
+ "epoch": 24.964613368283093,
+ "grad_norm": 0.19916993379592896,
+ "learning_rate": 0.0006,
+ "loss": 3.8410873413085938,
+ "step": 1797
+ },
+ {
+ "epoch": 24.978593272171253,
+ "grad_norm": 0.21313942968845367,
+ "learning_rate": 0.0006,
+ "loss": 3.8383948802948,
+ "step": 1798
+ },
+ {
+ "epoch": 24.992573176059416,
+ "grad_norm": 0.21042990684509277,
+ "learning_rate": 0.0006,
+ "loss": 3.8623173236846924,
+ "step": 1799
+ },
+ {
+ "epoch": 25.0,
+ "grad_norm": 0.23052045702934265,
+ "learning_rate": 0.0006,
+ "loss": 3.8646674156188965,
+ "step": 1800
+ },
+ {
+ "epoch": 25.0,
+ "eval_loss": 4.081690311431885,
+ "eval_runtime": 44.036,
+ "eval_samples_per_second": 55.455,
+ "eval_steps_per_second": 3.474,
+ "step": 1800
+ },
+ {
+ "epoch": 25.01397990388816,
+ "grad_norm": 0.22068746387958527,
+ "learning_rate": 0.0006,
+ "loss": 3.8002820014953613,
+ "step": 1801
+ },
+ {
+ "epoch": 25.027959807776323,
+ "grad_norm": 0.20711193978786469,
+ "learning_rate": 0.0006,
+ "loss": 3.787785768508911,
+ "step": 1802
+ },
+ {
+ "epoch": 25.041939711664483,
+ "grad_norm": 0.20659677684307098,
+ "learning_rate": 0.0006,
+ "loss": 3.80245304107666,
+ "step": 1803
+ },
+ {
+ "epoch": 25.055919615552643,
+ "grad_norm": 0.22891797125339508,
+ "learning_rate": 0.0006,
+ "loss": 3.784543514251709,
+ "step": 1804
+ },
+ {
+ "epoch": 25.069899519440803,
+ "grad_norm": 0.23679181933403015,
+ "learning_rate": 0.0006,
+ "loss": 3.8311429023742676,
+ "step": 1805
+ },
+ {
+ "epoch": 25.083879423328966,
+ "grad_norm": 0.2548872232437134,
+ "learning_rate": 0.0006,
+ "loss": 3.8047211170196533,
+ "step": 1806
+ },
+ {
+ "epoch": 25.097859327217126,
+ "grad_norm": 0.26181501150131226,
+ "learning_rate": 0.0006,
+ "loss": 3.837508201599121,
+ "step": 1807
+ },
+ {
+ "epoch": 25.111839231105286,
+ "grad_norm": 0.2548452913761139,
+ "learning_rate": 0.0006,
+ "loss": 3.831544876098633,
+ "step": 1808
+ },
+ {
+ "epoch": 25.125819134993446,
+ "grad_norm": 0.26177605986595154,
+ "learning_rate": 0.0006,
+ "loss": 3.805346965789795,
+ "step": 1809
+ },
+ {
+ "epoch": 25.13979903888161,
+ "grad_norm": 0.2608112394809723,
+ "learning_rate": 0.0006,
+ "loss": 3.8040924072265625,
+ "step": 1810
+ },
+ {
+ "epoch": 25.15377894276977,
+ "grad_norm": 0.2586037814617157,
+ "learning_rate": 0.0006,
+ "loss": 3.8102216720581055,
+ "step": 1811
+ },
+ {
+ "epoch": 25.16775884665793,
+ "grad_norm": 0.26258161664009094,
+ "learning_rate": 0.0006,
+ "loss": 3.8152549266815186,
+ "step": 1812
+ },
+ {
+ "epoch": 25.18173875054609,
+ "grad_norm": 0.2803022265434265,
+ "learning_rate": 0.0006,
+ "loss": 3.82576584815979,
+ "step": 1813
+ },
+ {
+ "epoch": 25.195718654434252,
+ "grad_norm": 0.2618221938610077,
+ "learning_rate": 0.0006,
+ "loss": 3.817220687866211,
+ "step": 1814
+ },
+ {
+ "epoch": 25.209698558322412,
+ "grad_norm": 0.23283469676971436,
+ "learning_rate": 0.0006,
+ "loss": 3.7999041080474854,
+ "step": 1815
+ },
+ {
+ "epoch": 25.22367846221057,
+ "grad_norm": 0.20110781490802765,
+ "learning_rate": 0.0006,
+ "loss": 3.783228874206543,
+ "step": 1816
+ },
+ {
+ "epoch": 25.23765836609873,
+ "grad_norm": 0.2231830358505249,
+ "learning_rate": 0.0006,
+ "loss": 3.8032913208007812,
+ "step": 1817
+ },
+ {
+ "epoch": 25.251638269986895,
+ "grad_norm": 0.21807286143302917,
+ "learning_rate": 0.0006,
+ "loss": 3.817028045654297,
+ "step": 1818
+ },
+ {
+ "epoch": 25.265618173875055,
+ "grad_norm": 0.22710664570331573,
+ "learning_rate": 0.0006,
+ "loss": 3.8201727867126465,
+ "step": 1819
+ },
+ {
+ "epoch": 25.279598077763215,
+ "grad_norm": 0.22299866378307343,
+ "learning_rate": 0.0006,
+ "loss": 3.8198719024658203,
+ "step": 1820
+ },
+ {
+ "epoch": 25.293577981651374,
+ "grad_norm": 0.20886564254760742,
+ "learning_rate": 0.0006,
+ "loss": 3.792414665222168,
+ "step": 1821
+ },
+ {
+ "epoch": 25.307557885539538,
+ "grad_norm": 0.20887352526187897,
+ "learning_rate": 0.0006,
+ "loss": 3.7634057998657227,
+ "step": 1822
+ },
+ {
+ "epoch": 25.321537789427698,
+ "grad_norm": 0.24560041725635529,
+ "learning_rate": 0.0006,
+ "loss": 3.79359769821167,
+ "step": 1823
+ },
+ {
+ "epoch": 25.335517693315857,
+ "grad_norm": 0.22767415642738342,
+ "learning_rate": 0.0006,
+ "loss": 3.8313469886779785,
+ "step": 1824
+ },
+ {
+ "epoch": 25.34949759720402,
+ "grad_norm": 0.21617893874645233,
+ "learning_rate": 0.0006,
+ "loss": 3.77200984954834,
+ "step": 1825
+ },
+ {
+ "epoch": 25.36347750109218,
+ "grad_norm": 0.21010833978652954,
+ "learning_rate": 0.0006,
+ "loss": 3.8042140007019043,
+ "step": 1826
+ },
+ {
+ "epoch": 25.37745740498034,
+ "grad_norm": 0.24087965488433838,
+ "learning_rate": 0.0006,
+ "loss": 3.8260979652404785,
+ "step": 1827
+ },
+ {
+ "epoch": 25.3914373088685,
+ "grad_norm": 0.2735275626182556,
+ "learning_rate": 0.0006,
+ "loss": 3.8499274253845215,
+ "step": 1828
+ },
+ {
+ "epoch": 25.405417212756664,
+ "grad_norm": 0.24831001460552216,
+ "learning_rate": 0.0006,
+ "loss": 3.8146448135375977,
+ "step": 1829
+ },
+ {
+ "epoch": 25.419397116644824,
+ "grad_norm": 0.21822866797447205,
+ "learning_rate": 0.0006,
+ "loss": 3.7845146656036377,
+ "step": 1830
+ },
+ {
+ "epoch": 25.433377020532983,
+ "grad_norm": 0.19948813319206238,
+ "learning_rate": 0.0006,
+ "loss": 3.823997974395752,
+ "step": 1831
+ },
+ {
+ "epoch": 25.447356924421143,
+ "grad_norm": 0.18342702090740204,
+ "learning_rate": 0.0006,
+ "loss": 3.8201193809509277,
+ "step": 1832
+ },
+ {
+ "epoch": 25.461336828309307,
+ "grad_norm": 0.19377560913562775,
+ "learning_rate": 0.0006,
+ "loss": 3.8069632053375244,
+ "step": 1833
+ },
+ {
+ "epoch": 25.475316732197467,
+ "grad_norm": 0.22348709404468536,
+ "learning_rate": 0.0006,
+ "loss": 3.7918643951416016,
+ "step": 1834
+ },
+ {
+ "epoch": 25.489296636085626,
+ "grad_norm": 0.24484702944755554,
+ "learning_rate": 0.0006,
+ "loss": 3.85046124458313,
+ "step": 1835
+ },
+ {
+ "epoch": 25.503276539973786,
+ "grad_norm": 0.2493520826101303,
+ "learning_rate": 0.0006,
+ "loss": 3.8043932914733887,
+ "step": 1836
+ },
+ {
+ "epoch": 25.51725644386195,
+ "grad_norm": 0.21509641408920288,
+ "learning_rate": 0.0006,
+ "loss": 3.8064627647399902,
+ "step": 1837
+ },
+ {
+ "epoch": 25.53123634775011,
+ "grad_norm": 0.21912820637226105,
+ "learning_rate": 0.0006,
+ "loss": 3.850588321685791,
+ "step": 1838
+ },
+ {
+ "epoch": 25.54521625163827,
+ "grad_norm": 0.28400927782058716,
+ "learning_rate": 0.0006,
+ "loss": 3.79818058013916,
+ "step": 1839
+ },
+ {
+ "epoch": 25.55919615552643,
+ "grad_norm": 0.32193225622177124,
+ "learning_rate": 0.0006,
+ "loss": 3.836275815963745,
+ "step": 1840
+ },
+ {
+ "epoch": 25.573176059414592,
+ "grad_norm": 0.2902325987815857,
+ "learning_rate": 0.0006,
+ "loss": 3.8080005645751953,
+ "step": 1841
+ },
+ {
+ "epoch": 25.587155963302752,
+ "grad_norm": 0.21759532392024994,
+ "learning_rate": 0.0006,
+ "loss": 3.8233771324157715,
+ "step": 1842
+ },
+ {
+ "epoch": 25.601135867190912,
+ "grad_norm": 0.19645214080810547,
+ "learning_rate": 0.0006,
+ "loss": 3.838881015777588,
+ "step": 1843
+ },
+ {
+ "epoch": 25.615115771079076,
+ "grad_norm": 0.19322903454303741,
+ "learning_rate": 0.0006,
+ "loss": 3.7870054244995117,
+ "step": 1844
+ },
+ {
+ "epoch": 25.629095674967235,
+ "grad_norm": 0.2074001580476761,
+ "learning_rate": 0.0006,
+ "loss": 3.8239974975585938,
+ "step": 1845
+ },
+ {
+ "epoch": 25.643075578855395,
+ "grad_norm": 0.2166101336479187,
+ "learning_rate": 0.0006,
+ "loss": 3.8290855884552,
+ "step": 1846
+ },
+ {
+ "epoch": 25.657055482743555,
+ "grad_norm": 0.23738539218902588,
+ "learning_rate": 0.0006,
+ "loss": 3.7993364334106445,
+ "step": 1847
+ },
+ {
+ "epoch": 25.67103538663172,
+ "grad_norm": 0.23882314562797546,
+ "learning_rate": 0.0006,
+ "loss": 3.802586078643799,
+ "step": 1848
+ },
+ {
+ "epoch": 25.68501529051988,
+ "grad_norm": 0.24168142676353455,
+ "learning_rate": 0.0006,
+ "loss": 3.8303489685058594,
+ "step": 1849
+ },
+ {
+ "epoch": 25.698995194408038,
+ "grad_norm": 0.22423343360424042,
+ "learning_rate": 0.0006,
+ "loss": 3.836228370666504,
+ "step": 1850
+ },
+ {
+ "epoch": 25.712975098296198,
+ "grad_norm": 0.23816974461078644,
+ "learning_rate": 0.0006,
+ "loss": 3.8380274772644043,
+ "step": 1851
+ },
+ {
+ "epoch": 25.72695500218436,
+ "grad_norm": 0.22465108335018158,
+ "learning_rate": 0.0006,
+ "loss": 3.8496339321136475,
+ "step": 1852
+ },
+ {
+ "epoch": 25.74093490607252,
+ "grad_norm": 0.20792442560195923,
+ "learning_rate": 0.0006,
+ "loss": 3.797853946685791,
+ "step": 1853
+ },
+ {
+ "epoch": 25.75491480996068,
+ "grad_norm": 0.20770230889320374,
+ "learning_rate": 0.0006,
+ "loss": 3.842322826385498,
+ "step": 1854
+ },
+ {
+ "epoch": 25.76889471384884,
+ "grad_norm": 0.1928192526102066,
+ "learning_rate": 0.0006,
+ "loss": 3.836540699005127,
+ "step": 1855
+ },
+ {
+ "epoch": 25.782874617737004,
+ "grad_norm": 0.19045178592205048,
+ "learning_rate": 0.0006,
+ "loss": 3.7758889198303223,
+ "step": 1856
+ },
+ {
+ "epoch": 25.796854521625164,
+ "grad_norm": 0.205548495054245,
+ "learning_rate": 0.0006,
+ "loss": 3.8244709968566895,
+ "step": 1857
+ },
+ {
+ "epoch": 25.810834425513324,
+ "grad_norm": 0.20968270301818848,
+ "learning_rate": 0.0006,
+ "loss": 3.8376216888427734,
+ "step": 1858
+ },
+ {
+ "epoch": 25.824814329401484,
+ "grad_norm": 0.18917354941368103,
+ "learning_rate": 0.0006,
+ "loss": 3.8497915267944336,
+ "step": 1859
+ },
+ {
+ "epoch": 25.838794233289647,
+ "grad_norm": 0.2050701528787613,
+ "learning_rate": 0.0006,
+ "loss": 3.819628953933716,
+ "step": 1860
+ },
+ {
+ "epoch": 25.852774137177807,
+ "grad_norm": 0.1981319785118103,
+ "learning_rate": 0.0006,
+ "loss": 3.8007922172546387,
+ "step": 1861
+ },
+ {
+ "epoch": 25.866754041065967,
+ "grad_norm": 0.19055861234664917,
+ "learning_rate": 0.0006,
+ "loss": 3.8304519653320312,
+ "step": 1862
+ },
+ {
+ "epoch": 25.88073394495413,
+ "grad_norm": 0.19255517423152924,
+ "learning_rate": 0.0006,
+ "loss": 3.833280563354492,
+ "step": 1863
+ },
+ {
+ "epoch": 25.89471384884229,
+ "grad_norm": 0.19059430062770844,
+ "learning_rate": 0.0006,
+ "loss": 3.813796281814575,
+ "step": 1864
+ },
+ {
+ "epoch": 25.90869375273045,
+ "grad_norm": 0.18581309914588928,
+ "learning_rate": 0.0006,
+ "loss": 3.8211798667907715,
+ "step": 1865
+ },
+ {
+ "epoch": 25.92267365661861,
+ "grad_norm": 0.20181003212928772,
+ "learning_rate": 0.0006,
+ "loss": 3.8380484580993652,
+ "step": 1866
+ },
+ {
+ "epoch": 25.936653560506773,
+ "grad_norm": 0.22334498167037964,
+ "learning_rate": 0.0006,
+ "loss": 3.8294434547424316,
+ "step": 1867
+ },
+ {
+ "epoch": 25.950633464394933,
+ "grad_norm": 0.20456703007221222,
+ "learning_rate": 0.0006,
+ "loss": 3.819223642349243,
+ "step": 1868
+ },
+ {
+ "epoch": 25.964613368283093,
+ "grad_norm": 0.1885606348514557,
+ "learning_rate": 0.0006,
+ "loss": 3.8110103607177734,
+ "step": 1869
+ },
+ {
+ "epoch": 25.978593272171253,
+ "grad_norm": 0.18862110376358032,
+ "learning_rate": 0.0006,
+ "loss": 3.788691997528076,
+ "step": 1870
+ },
+ {
+ "epoch": 25.992573176059416,
+ "grad_norm": 0.19802744686603546,
+ "learning_rate": 0.0006,
+ "loss": 3.8423619270324707,
+ "step": 1871
+ },
+ {
+ "epoch": 26.0,
+ "grad_norm": 0.23762032389640808,
+ "learning_rate": 0.0006,
+ "loss": 3.7848567962646484,
+ "step": 1872
+ },
+ {
+ "epoch": 26.0,
+ "eval_loss": 4.054965019226074,
+ "eval_runtime": 44.2423,
+ "eval_samples_per_second": 55.196,
+ "eval_steps_per_second": 3.458,
+ "step": 1872
+ },
+ {
+ "epoch": 26.01397990388816,
+ "grad_norm": 0.21533054113388062,
+ "learning_rate": 0.0006,
+ "loss": 3.8123154640197754,
+ "step": 1873
+ },
+ {
+ "epoch": 26.027959807776323,
+ "grad_norm": 0.25094854831695557,
+ "learning_rate": 0.0006,
+ "loss": 3.7847447395324707,
+ "step": 1874
+ },
+ {
+ "epoch": 26.041939711664483,
+ "grad_norm": 0.24042077362537384,
+ "learning_rate": 0.0006,
+ "loss": 3.8033599853515625,
+ "step": 1875
+ },
+ {
+ "epoch": 26.055919615552643,
+ "grad_norm": 0.2425149381160736,
+ "learning_rate": 0.0006,
+ "loss": 3.7828550338745117,
+ "step": 1876
+ },
+ {
+ "epoch": 26.069899519440803,
+ "grad_norm": 0.2300514280796051,
+ "learning_rate": 0.0006,
+ "loss": 3.750882148742676,
+ "step": 1877
+ },
+ {
+ "epoch": 26.083879423328966,
+ "grad_norm": 0.2513943612575531,
+ "learning_rate": 0.0006,
+ "loss": 3.800323963165283,
+ "step": 1878
+ },
+ {
+ "epoch": 26.097859327217126,
+ "grad_norm": 0.2536966800689697,
+ "learning_rate": 0.0006,
+ "loss": 3.8198962211608887,
+ "step": 1879
+ },
+ {
+ "epoch": 26.111839231105286,
+ "grad_norm": 0.24483931064605713,
+ "learning_rate": 0.0006,
+ "loss": 3.825563907623291,
+ "step": 1880
+ },
+ {
+ "epoch": 26.125819134993446,
+ "grad_norm": 0.2502584755420685,
+ "learning_rate": 0.0006,
+ "loss": 3.78756046295166,
+ "step": 1881
+ },
+ {
+ "epoch": 26.13979903888161,
+ "grad_norm": 0.2695745527744293,
+ "learning_rate": 0.0006,
+ "loss": 3.8205409049987793,
+ "step": 1882
+ },
+ {
+ "epoch": 26.15377894276977,
+ "grad_norm": 0.2873472273349762,
+ "learning_rate": 0.0006,
+ "loss": 3.7880778312683105,
+ "step": 1883
+ },
+ {
+ "epoch": 26.16775884665793,
+ "grad_norm": 0.28609949350357056,
+ "learning_rate": 0.0006,
+ "loss": 3.788517951965332,
+ "step": 1884
+ },
+ {
+ "epoch": 26.18173875054609,
+ "grad_norm": 0.28352269530296326,
+ "learning_rate": 0.0006,
+ "loss": 3.778015613555908,
+ "step": 1885
+ },
+ {
+ "epoch": 26.195718654434252,
+ "grad_norm": 0.27055084705352783,
+ "learning_rate": 0.0006,
+ "loss": 3.7857203483581543,
+ "step": 1886
+ },
+ {
+ "epoch": 26.209698558322412,
+ "grad_norm": 0.255647748708725,
+ "learning_rate": 0.0006,
+ "loss": 3.791355609893799,
+ "step": 1887
+ },
+ {
+ "epoch": 26.22367846221057,
+ "grad_norm": 0.22624439001083374,
+ "learning_rate": 0.0006,
+ "loss": 3.7624831199645996,
+ "step": 1888
+ },
+ {
+ "epoch": 26.23765836609873,
+ "grad_norm": 0.2283596396446228,
+ "learning_rate": 0.0006,
+ "loss": 3.8052897453308105,
+ "step": 1889
+ },
+ {
+ "epoch": 26.251638269986895,
+ "grad_norm": 0.2336510866880417,
+ "learning_rate": 0.0006,
+ "loss": 3.789015054702759,
+ "step": 1890
+ },
+ {
+ "epoch": 26.265618173875055,
+ "grad_norm": 0.24107608199119568,
+ "learning_rate": 0.0006,
+ "loss": 3.756551742553711,
+ "step": 1891
+ },
+ {
+ "epoch": 26.279598077763215,
+ "grad_norm": 0.22438564896583557,
+ "learning_rate": 0.0006,
+ "loss": 3.797952651977539,
+ "step": 1892
+ },
+ {
+ "epoch": 26.293577981651374,
+ "grad_norm": 0.24594341218471527,
+ "learning_rate": 0.0006,
+ "loss": 3.7925708293914795,
+ "step": 1893
+ },
+ {
+ "epoch": 26.307557885539538,
+ "grad_norm": 0.23314352333545685,
+ "learning_rate": 0.0006,
+ "loss": 3.792447328567505,
+ "step": 1894
+ },
+ {
+ "epoch": 26.321537789427698,
+ "grad_norm": 0.20870383083820343,
+ "learning_rate": 0.0006,
+ "loss": 3.7888340950012207,
+ "step": 1895
+ },
+ {
+ "epoch": 26.335517693315857,
+ "grad_norm": 0.206504687666893,
+ "learning_rate": 0.0006,
+ "loss": 3.7856602668762207,
+ "step": 1896
+ },
+ {
+ "epoch": 26.34949759720402,
+ "grad_norm": 0.20193266868591309,
+ "learning_rate": 0.0006,
+ "loss": 3.810800552368164,
+ "step": 1897
+ },
+ {
+ "epoch": 26.36347750109218,
+ "grad_norm": 0.2143869698047638,
+ "learning_rate": 0.0006,
+ "loss": 3.818742275238037,
+ "step": 1898
+ },
+ {
+ "epoch": 26.37745740498034,
+ "grad_norm": 0.21388593316078186,
+ "learning_rate": 0.0006,
+ "loss": 3.7576632499694824,
+ "step": 1899
+ },
+ {
+ "epoch": 26.3914373088685,
+ "grad_norm": 0.1933414787054062,
+ "learning_rate": 0.0006,
+ "loss": 3.802579879760742,
+ "step": 1900
+ },
+ {
+ "epoch": 26.405417212756664,
+ "grad_norm": 0.18144549429416656,
+ "learning_rate": 0.0006,
+ "loss": 3.7830452919006348,
+ "step": 1901
+ },
+ {
+ "epoch": 26.419397116644824,
+ "grad_norm": 0.20027601718902588,
+ "learning_rate": 0.0006,
+ "loss": 3.8112521171569824,
+ "step": 1902
+ },
+ {
+ "epoch": 26.433377020532983,
+ "grad_norm": 0.19402910768985748,
+ "learning_rate": 0.0006,
+ "loss": 3.778012990951538,
+ "step": 1903
+ },
+ {
+ "epoch": 26.447356924421143,
+ "grad_norm": 0.19020743668079376,
+ "learning_rate": 0.0006,
+ "loss": 3.823355197906494,
+ "step": 1904
+ },
+ {
+ "epoch": 26.461336828309307,
+ "grad_norm": 0.1885242760181427,
+ "learning_rate": 0.0006,
+ "loss": 3.782108783721924,
+ "step": 1905
+ },
+ {
+ "epoch": 26.475316732197467,
+ "grad_norm": 0.2024235874414444,
+ "learning_rate": 0.0006,
+ "loss": 3.810448408126831,
+ "step": 1906
+ },
+ {
+ "epoch": 26.489296636085626,
+ "grad_norm": 0.21408027410507202,
+ "learning_rate": 0.0006,
+ "loss": 3.8185606002807617,
+ "step": 1907
+ },
+ {
+ "epoch": 26.503276539973786,
+ "grad_norm": 0.22810906171798706,
+ "learning_rate": 0.0006,
+ "loss": 3.8052706718444824,
+ "step": 1908
+ },
+ {
+ "epoch": 26.51725644386195,
+ "grad_norm": 0.21328197419643402,
+ "learning_rate": 0.0006,
+ "loss": 3.7858219146728516,
+ "step": 1909
+ },
+ {
+ "epoch": 26.53123634775011,
+ "grad_norm": 0.20843173563480377,
+ "learning_rate": 0.0006,
+ "loss": 3.8069310188293457,
+ "step": 1910
+ },
+ {
+ "epoch": 26.54521625163827,
+ "grad_norm": 0.2072986662387848,
+ "learning_rate": 0.0006,
+ "loss": 3.794975996017456,
+ "step": 1911
+ },
+ {
+ "epoch": 26.55919615552643,
+ "grad_norm": 0.2203216850757599,
+ "learning_rate": 0.0006,
+ "loss": 3.8070101737976074,
+ "step": 1912
+ },
+ {
+ "epoch": 26.573176059414592,
+ "grad_norm": 0.23449191451072693,
+ "learning_rate": 0.0006,
+ "loss": 3.828695774078369,
+ "step": 1913
+ },
+ {
+ "epoch": 26.587155963302752,
+ "grad_norm": 0.2222008854150772,
+ "learning_rate": 0.0006,
+ "loss": 3.781275749206543,
+ "step": 1914
+ },
+ {
+ "epoch": 26.601135867190912,
+ "grad_norm": 0.22328314185142517,
+ "learning_rate": 0.0006,
+ "loss": 3.7953736782073975,
+ "step": 1915
+ },
+ {
+ "epoch": 26.615115771079076,
+ "grad_norm": 0.2377961128950119,
+ "learning_rate": 0.0006,
+ "loss": 3.8428916931152344,
+ "step": 1916
+ },
+ {
+ "epoch": 26.629095674967235,
+ "grad_norm": 0.2546147108078003,
+ "learning_rate": 0.0006,
+ "loss": 3.7940590381622314,
+ "step": 1917
+ },
+ {
+ "epoch": 26.643075578855395,
+ "grad_norm": 0.24234509468078613,
+ "learning_rate": 0.0006,
+ "loss": 3.802234172821045,
+ "step": 1918
+ },
+ {
+ "epoch": 26.657055482743555,
+ "grad_norm": 0.21294651925563812,
+ "learning_rate": 0.0006,
+ "loss": 3.8159232139587402,
+ "step": 1919
+ },
+ {
+ "epoch": 26.67103538663172,
+ "grad_norm": 0.20008964836597443,
+ "learning_rate": 0.0006,
+ "loss": 3.796949863433838,
+ "step": 1920
+ },
+ {
+ "epoch": 26.68501529051988,
+ "grad_norm": 0.21031023561954498,
+ "learning_rate": 0.0006,
+ "loss": 3.8015570640563965,
+ "step": 1921
+ },
+ {
+ "epoch": 26.698995194408038,
+ "grad_norm": 0.2185603827238083,
+ "learning_rate": 0.0006,
+ "loss": 3.8022537231445312,
+ "step": 1922
+ },
+ {
+ "epoch": 26.712975098296198,
+ "grad_norm": 0.22957198321819305,
+ "learning_rate": 0.0006,
+ "loss": 3.7859907150268555,
+ "step": 1923
+ },
+ {
+ "epoch": 26.72695500218436,
+ "grad_norm": 0.23779156804084778,
+ "learning_rate": 0.0006,
+ "loss": 3.830345630645752,
+ "step": 1924
+ },
+ {
+ "epoch": 26.74093490607252,
+ "grad_norm": 0.23577193915843964,
+ "learning_rate": 0.0006,
+ "loss": 3.777338981628418,
+ "step": 1925
+ },
+ {
+ "epoch": 26.75491480996068,
+ "grad_norm": 0.2521933913230896,
+ "learning_rate": 0.0006,
+ "loss": 3.8215396404266357,
+ "step": 1926
+ },
+ {
+ "epoch": 26.76889471384884,
+ "grad_norm": 0.25050726532936096,
+ "learning_rate": 0.0006,
+ "loss": 3.817509651184082,
+ "step": 1927
+ },
+ {
+ "epoch": 26.782874617737004,
+ "grad_norm": 0.24442453682422638,
+ "learning_rate": 0.0006,
+ "loss": 3.8033013343811035,
+ "step": 1928
+ },
+ {
+ "epoch": 26.796854521625164,
+ "grad_norm": 0.2280828058719635,
+ "learning_rate": 0.0006,
+ "loss": 3.798625946044922,
+ "step": 1929
+ },
+ {
+ "epoch": 26.810834425513324,
+ "grad_norm": 0.23072117567062378,
+ "learning_rate": 0.0006,
+ "loss": 3.8109097480773926,
+ "step": 1930
+ },
+ {
+ "epoch": 26.824814329401484,
+ "grad_norm": 0.2690806984901428,
+ "learning_rate": 0.0006,
+ "loss": 3.7707223892211914,
+ "step": 1931
+ },
+ {
+ "epoch": 26.838794233289647,
+ "grad_norm": 0.24973517656326294,
+ "learning_rate": 0.0006,
+ "loss": 3.7788357734680176,
+ "step": 1932
+ },
+ {
+ "epoch": 26.852774137177807,
+ "grad_norm": 0.24221451580524445,
+ "learning_rate": 0.0006,
+ "loss": 3.8083114624023438,
+ "step": 1933
+ },
+ {
+ "epoch": 26.866754041065967,
+ "grad_norm": 0.23499037325382233,
+ "learning_rate": 0.0006,
+ "loss": 3.845512866973877,
+ "step": 1934
+ },
+ {
+ "epoch": 26.88073394495413,
+ "grad_norm": 0.2172643095254898,
+ "learning_rate": 0.0006,
+ "loss": 3.8171584606170654,
+ "step": 1935
+ },
+ {
+ "epoch": 26.89471384884229,
+ "grad_norm": 0.19935013353824615,
+ "learning_rate": 0.0006,
+ "loss": 3.808596611022949,
+ "step": 1936
+ },
+ {
+ "epoch": 26.90869375273045,
+ "grad_norm": 0.2077745944261551,
+ "learning_rate": 0.0006,
+ "loss": 3.842836856842041,
+ "step": 1937
+ },
+ {
+ "epoch": 26.92267365661861,
+ "grad_norm": 0.20017282664775848,
+ "learning_rate": 0.0006,
+ "loss": 3.791734457015991,
+ "step": 1938
+ },
+ {
+ "epoch": 26.936653560506773,
+ "grad_norm": 0.2082037627696991,
+ "learning_rate": 0.0006,
+ "loss": 3.7987842559814453,
+ "step": 1939
+ },
+ {
+ "epoch": 26.950633464394933,
+ "grad_norm": 0.21100632846355438,
+ "learning_rate": 0.0006,
+ "loss": 3.8033156394958496,
+ "step": 1940
+ },
+ {
+ "epoch": 26.964613368283093,
+ "grad_norm": 0.2091331034898758,
+ "learning_rate": 0.0006,
+ "loss": 3.8250908851623535,
+ "step": 1941
+ },
+ {
+ "epoch": 26.978593272171253,
+ "grad_norm": 0.19728544354438782,
+ "learning_rate": 0.0006,
+ "loss": 3.7934365272521973,
+ "step": 1942
+ },
+ {
+ "epoch": 26.992573176059416,
+ "grad_norm": 0.19266465306282043,
+ "learning_rate": 0.0006,
+ "loss": 3.8095879554748535,
+ "step": 1943
+ },
+ {
+ "epoch": 27.0,
+ "grad_norm": 0.2264554500579834,
+ "learning_rate": 0.0006,
+ "loss": 3.840135335922241,
+ "step": 1944
+ },
+ {
+ "epoch": 27.0,
+ "eval_loss": 4.046233654022217,
+ "eval_runtime": 44.0648,
+ "eval_samples_per_second": 55.418,
+ "eval_steps_per_second": 3.472,
+ "step": 1944
+ },
+ {
+ "epoch": 27.01397990388816,
+ "grad_norm": 0.24101831018924713,
+ "learning_rate": 0.0006,
+ "loss": 3.7463197708129883,
+ "step": 1945
+ },
+ {
+ "epoch": 27.027959807776323,
+ "grad_norm": 0.2917300760746002,
+ "learning_rate": 0.0006,
+ "loss": 3.769083261489868,
+ "step": 1946
+ },
+ {
+ "epoch": 27.041939711664483,
+ "grad_norm": 0.30864080786705017,
+ "learning_rate": 0.0006,
+ "loss": 3.7774248123168945,
+ "step": 1947
+ },
+ {
+ "epoch": 27.055919615552643,
+ "grad_norm": 0.28574317693710327,
+ "learning_rate": 0.0006,
+ "loss": 3.759530544281006,
+ "step": 1948
+ },
+ {
+ "epoch": 27.069899519440803,
+ "grad_norm": 0.23381628096103668,
+ "learning_rate": 0.0006,
+ "loss": 3.764347791671753,
+ "step": 1949
+ },
+ {
+ "epoch": 27.083879423328966,
+ "grad_norm": 0.2717961072921753,
+ "learning_rate": 0.0006,
+ "loss": 3.785306692123413,
+ "step": 1950
+ },
+ {
+ "epoch": 27.097859327217126,
+ "grad_norm": 0.2753375470638275,
+ "learning_rate": 0.0006,
+ "loss": 3.7511696815490723,
+ "step": 1951
+ },
+ {
+ "epoch": 27.111839231105286,
+ "grad_norm": 0.260250061750412,
+ "learning_rate": 0.0006,
+ "loss": 3.7775721549987793,
+ "step": 1952
+ },
+ {
+ "epoch": 27.125819134993446,
+ "grad_norm": 0.2462741732597351,
+ "learning_rate": 0.0006,
+ "loss": 3.775203227996826,
+ "step": 1953
+ },
+ {
+ "epoch": 27.13979903888161,
+ "grad_norm": 0.23599569499492645,
+ "learning_rate": 0.0006,
+ "loss": 3.7580947875976562,
+ "step": 1954
+ },
+ {
+ "epoch": 27.15377894276977,
+ "grad_norm": 0.21749968826770782,
+ "learning_rate": 0.0006,
+ "loss": 3.778254985809326,
+ "step": 1955
+ },
+ {
+ "epoch": 27.16775884665793,
+ "grad_norm": 0.22210343182086945,
+ "learning_rate": 0.0006,
+ "loss": 3.734727144241333,
+ "step": 1956
+ },
+ {
+ "epoch": 27.18173875054609,
+ "grad_norm": 0.23376141488552094,
+ "learning_rate": 0.0006,
+ "loss": 3.7892181873321533,
+ "step": 1957
+ },
+ {
+ "epoch": 27.195718654434252,
+ "grad_norm": 0.21751847863197327,
+ "learning_rate": 0.0006,
+ "loss": 3.801621913909912,
+ "step": 1958
+ },
+ {
+ "epoch": 27.209698558322412,
+ "grad_norm": 0.22995133697986603,
+ "learning_rate": 0.0006,
+ "loss": 3.8031363487243652,
+ "step": 1959
+ },
+ {
+ "epoch": 27.22367846221057,
+ "grad_norm": 0.22716350853443146,
+ "learning_rate": 0.0006,
+ "loss": 3.7591521739959717,
+ "step": 1960
+ },
+ {
+ "epoch": 27.23765836609873,
+ "grad_norm": 0.20819596946239471,
+ "learning_rate": 0.0006,
+ "loss": 3.7988929748535156,
+ "step": 1961
+ },
+ {
+ "epoch": 27.251638269986895,
+ "grad_norm": 0.19861504435539246,
+ "learning_rate": 0.0006,
+ "loss": 3.7752838134765625,
+ "step": 1962
+ },
+ {
+ "epoch": 27.265618173875055,
+ "grad_norm": 0.1959371268749237,
+ "learning_rate": 0.0006,
+ "loss": 3.7707290649414062,
+ "step": 1963
+ },
+ {
+ "epoch": 27.279598077763215,
+ "grad_norm": 0.18772225081920624,
+ "learning_rate": 0.0006,
+ "loss": 3.7714555263519287,
+ "step": 1964
+ },
+ {
+ "epoch": 27.293577981651374,
+ "grad_norm": 0.20839282870292664,
+ "learning_rate": 0.0006,
+ "loss": 3.7857258319854736,
+ "step": 1965
+ },
+ {
+ "epoch": 27.307557885539538,
+ "grad_norm": 0.22521957755088806,
+ "learning_rate": 0.0006,
+ "loss": 3.776909351348877,
+ "step": 1966
+ },
+ {
+ "epoch": 27.321537789427698,
+ "grad_norm": 0.19533076882362366,
+ "learning_rate": 0.0006,
+ "loss": 3.8152523040771484,
+ "step": 1967
+ },
+ {
+ "epoch": 27.335517693315857,
+ "grad_norm": 0.18678881227970123,
+ "learning_rate": 0.0006,
+ "loss": 3.751555919647217,
+ "step": 1968
+ },
+ {
+ "epoch": 27.34949759720402,
+ "grad_norm": 0.18257129192352295,
+ "learning_rate": 0.0006,
+ "loss": 3.7701754570007324,
+ "step": 1969
+ },
+ {
+ "epoch": 27.36347750109218,
+ "grad_norm": 0.18191468715667725,
+ "learning_rate": 0.0006,
+ "loss": 3.817451238632202,
+ "step": 1970
+ },
+ {
+ "epoch": 27.37745740498034,
+ "grad_norm": 0.18665607273578644,
+ "learning_rate": 0.0006,
+ "loss": 3.78645658493042,
+ "step": 1971
+ },
+ {
+ "epoch": 27.3914373088685,
+ "grad_norm": 0.19604510068893433,
+ "learning_rate": 0.0006,
+ "loss": 3.7735626697540283,
+ "step": 1972
+ },
+ {
+ "epoch": 27.405417212756664,
+ "grad_norm": 0.20136640965938568,
+ "learning_rate": 0.0006,
+ "loss": 3.77310848236084,
+ "step": 1973
+ },
+ {
+ "epoch": 27.419397116644824,
+ "grad_norm": 0.19314947724342346,
+ "learning_rate": 0.0006,
+ "loss": 3.8084068298339844,
+ "step": 1974
+ },
+ {
+ "epoch": 27.433377020532983,
+ "grad_norm": 0.20761604607105255,
+ "learning_rate": 0.0006,
+ "loss": 3.80732798576355,
+ "step": 1975
+ },
+ {
+ "epoch": 27.447356924421143,
+ "grad_norm": 0.2239987850189209,
+ "learning_rate": 0.0006,
+ "loss": 3.7950329780578613,
+ "step": 1976
+ },
+ {
+ "epoch": 27.461336828309307,
+ "grad_norm": 0.22146444022655487,
+ "learning_rate": 0.0006,
+ "loss": 3.7957234382629395,
+ "step": 1977
+ },
+ {
+ "epoch": 27.475316732197467,
+ "grad_norm": 0.23218585550785065,
+ "learning_rate": 0.0006,
+ "loss": 3.806377410888672,
+ "step": 1978
+ },
+ {
+ "epoch": 27.489296636085626,
+ "grad_norm": 0.23549026250839233,
+ "learning_rate": 0.0006,
+ "loss": 3.7833383083343506,
+ "step": 1979
+ },
+ {
+ "epoch": 27.503276539973786,
+ "grad_norm": 0.24219457805156708,
+ "learning_rate": 0.0006,
+ "loss": 3.8154187202453613,
+ "step": 1980
+ },
+ {
+ "epoch": 27.51725644386195,
+ "grad_norm": 0.23703953623771667,
+ "learning_rate": 0.0006,
+ "loss": 3.7846405506134033,
+ "step": 1981
+ },
+ {
+ "epoch": 27.53123634775011,
+ "grad_norm": 0.23596109449863434,
+ "learning_rate": 0.0006,
+ "loss": 3.7698163986206055,
+ "step": 1982
+ },
+ {
+ "epoch": 27.54521625163827,
+ "grad_norm": 0.23073506355285645,
+ "learning_rate": 0.0006,
+ "loss": 3.8114185333251953,
+ "step": 1983
+ },
+ {
+ "epoch": 27.55919615552643,
+ "grad_norm": 0.24761143326759338,
+ "learning_rate": 0.0006,
+ "loss": 3.7548117637634277,
+ "step": 1984
+ },
+ {
+ "epoch": 27.573176059414592,
+ "grad_norm": 0.2834068238735199,
+ "learning_rate": 0.0006,
+ "loss": 3.7990212440490723,
+ "step": 1985
+ },
+ {
+ "epoch": 27.587155963302752,
+ "grad_norm": 0.29774922132492065,
+ "learning_rate": 0.0006,
+ "loss": 3.7845072746276855,
+ "step": 1986
+ },
+ {
+ "epoch": 27.601135867190912,
+ "grad_norm": 0.2732089161872864,
+ "learning_rate": 0.0006,
+ "loss": 3.8050694465637207,
+ "step": 1987
+ },
+ {
+ "epoch": 27.615115771079076,
+ "grad_norm": 0.24433180689811707,
+ "learning_rate": 0.0006,
+ "loss": 3.762704372406006,
+ "step": 1988
+ },
+ {
+ "epoch": 27.629095674967235,
+ "grad_norm": 0.21340419352054596,
+ "learning_rate": 0.0006,
+ "loss": 3.826023817062378,
+ "step": 1989
+ },
+ {
+ "epoch": 27.643075578855395,
+ "grad_norm": 0.22518761456012726,
+ "learning_rate": 0.0006,
+ "loss": 3.7823970317840576,
+ "step": 1990
+ },
+ {
+ "epoch": 27.657055482743555,
+ "grad_norm": 0.2196940928697586,
+ "learning_rate": 0.0006,
+ "loss": 3.787463426589966,
+ "step": 1991
+ },
+ {
+ "epoch": 27.67103538663172,
+ "grad_norm": 0.21906471252441406,
+ "learning_rate": 0.0006,
+ "loss": 3.7856104373931885,
+ "step": 1992
+ },
+ {
+ "epoch": 27.68501529051988,
+ "grad_norm": 0.2280956357717514,
+ "learning_rate": 0.0006,
+ "loss": 3.7829794883728027,
+ "step": 1993
+ },
+ {
+ "epoch": 27.698995194408038,
+ "grad_norm": 0.22567005455493927,
+ "learning_rate": 0.0006,
+ "loss": 3.762316942214966,
+ "step": 1994
+ },
+ {
+ "epoch": 27.712975098296198,
+ "grad_norm": 0.21703341603279114,
+ "learning_rate": 0.0006,
+ "loss": 3.772535800933838,
+ "step": 1995
+ },
+ {
+ "epoch": 27.72695500218436,
+ "grad_norm": 0.20586732029914856,
+ "learning_rate": 0.0006,
+ "loss": 3.775930881500244,
+ "step": 1996
+ },
+ {
+ "epoch": 27.74093490607252,
+ "grad_norm": 0.2126319408416748,
+ "learning_rate": 0.0006,
+ "loss": 3.793353796005249,
+ "step": 1997
+ },
+ {
+ "epoch": 27.75491480996068,
+ "grad_norm": 0.19664280116558075,
+ "learning_rate": 0.0006,
+ "loss": 3.7721195220947266,
+ "step": 1998
+ },
+ {
+ "epoch": 27.76889471384884,
+ "grad_norm": 0.17695854604244232,
+ "learning_rate": 0.0006,
+ "loss": 3.7931227684020996,
+ "step": 1999
+ },
+ {
+ "epoch": 27.782874617737004,
+ "grad_norm": 0.1899620145559311,
+ "learning_rate": 0.0006,
+ "loss": 3.798692226409912,
+ "step": 2000
+ },
+ {
+ "epoch": 27.796854521625164,
+ "grad_norm": 0.20334762334823608,
+ "learning_rate": 0.0006,
+ "loss": 3.774670124053955,
+ "step": 2001
+ },
+ {
+ "epoch": 27.810834425513324,
+ "grad_norm": 0.21150588989257812,
+ "learning_rate": 0.0006,
+ "loss": 3.803859233856201,
+ "step": 2002
+ },
+ {
+ "epoch": 27.824814329401484,
+ "grad_norm": 0.20425523817539215,
+ "learning_rate": 0.0006,
+ "loss": 3.810410976409912,
+ "step": 2003
+ },
+ {
+ "epoch": 27.838794233289647,
+ "grad_norm": 0.20468413829803467,
+ "learning_rate": 0.0006,
+ "loss": 3.800917625427246,
+ "step": 2004
+ },
+ {
+ "epoch": 27.852774137177807,
+ "grad_norm": 0.2113286256790161,
+ "learning_rate": 0.0006,
+ "loss": 3.7581989765167236,
+ "step": 2005
+ },
+ {
+ "epoch": 27.866754041065967,
+ "grad_norm": 0.2098054736852646,
+ "learning_rate": 0.0006,
+ "loss": 3.7921502590179443,
+ "step": 2006
+ },
+ {
+ "epoch": 27.88073394495413,
+ "grad_norm": 0.21701586246490479,
+ "learning_rate": 0.0006,
+ "loss": 3.8166770935058594,
+ "step": 2007
+ },
+ {
+ "epoch": 27.89471384884229,
+ "grad_norm": 0.2086625099182129,
+ "learning_rate": 0.0006,
+ "loss": 3.7732229232788086,
+ "step": 2008
+ },
+ {
+ "epoch": 27.90869375273045,
+ "grad_norm": 0.2186812162399292,
+ "learning_rate": 0.0006,
+ "loss": 3.8067402839660645,
+ "step": 2009
+ },
+ {
+ "epoch": 27.92267365661861,
+ "grad_norm": 0.2168985903263092,
+ "learning_rate": 0.0006,
+ "loss": 3.798159122467041,
+ "step": 2010
+ },
+ {
+ "epoch": 27.936653560506773,
+ "grad_norm": 0.23713620007038116,
+ "learning_rate": 0.0006,
+ "loss": 3.7958693504333496,
+ "step": 2011
+ },
+ {
+ "epoch": 27.950633464394933,
+ "grad_norm": 0.23592841625213623,
+ "learning_rate": 0.0006,
+ "loss": 3.795126438140869,
+ "step": 2012
+ },
+ {
+ "epoch": 27.964613368283093,
+ "grad_norm": 0.22210197150707245,
+ "learning_rate": 0.0006,
+ "loss": 3.791013240814209,
+ "step": 2013
+ },
+ {
+ "epoch": 27.978593272171253,
+ "grad_norm": 0.23190008103847504,
+ "learning_rate": 0.0006,
+ "loss": 3.813408374786377,
+ "step": 2014
+ },
+ {
+ "epoch": 27.992573176059416,
+ "grad_norm": 0.22158131003379822,
+ "learning_rate": 0.0006,
+ "loss": 3.7975716590881348,
+ "step": 2015
+ },
+ {
+ "epoch": 28.0,
+ "grad_norm": 0.2300519198179245,
+ "learning_rate": 0.0006,
+ "loss": 3.776214838027954,
+ "step": 2016
+ },
+ {
+ "epoch": 28.0,
+ "eval_loss": 4.04406213760376,
+ "eval_runtime": 44.0285,
+ "eval_samples_per_second": 55.464,
+ "eval_steps_per_second": 3.475,
+ "step": 2016
+ },
+ {
+ "epoch": 28.01397990388816,
+ "grad_norm": 0.21007688343524933,
+ "learning_rate": 0.0006,
+ "loss": 3.7366907596588135,
+ "step": 2017
+ },
+ {
+ "epoch": 28.027959807776323,
+ "grad_norm": 0.1941644549369812,
+ "learning_rate": 0.0006,
+ "loss": 3.744373321533203,
+ "step": 2018
+ },
+ {
+ "epoch": 28.041939711664483,
+ "grad_norm": 0.21308493614196777,
+ "learning_rate": 0.0006,
+ "loss": 3.7650012969970703,
+ "step": 2019
+ },
+ {
+ "epoch": 28.055919615552643,
+ "grad_norm": 0.20114868879318237,
+ "learning_rate": 0.0006,
+ "loss": 3.7652382850646973,
+ "step": 2020
+ },
+ {
+ "epoch": 28.069899519440803,
+ "grad_norm": 0.20266319811344147,
+ "learning_rate": 0.0006,
+ "loss": 3.7710442543029785,
+ "step": 2021
+ },
+ {
+ "epoch": 28.083879423328966,
+ "grad_norm": 0.205102801322937,
+ "learning_rate": 0.0006,
+ "loss": 3.7515463829040527,
+ "step": 2022
+ },
+ {
+ "epoch": 28.097859327217126,
+ "grad_norm": 0.22002041339874268,
+ "learning_rate": 0.0006,
+ "loss": 3.762019157409668,
+ "step": 2023
+ },
+ {
+ "epoch": 28.111839231105286,
+ "grad_norm": 0.2063235342502594,
+ "learning_rate": 0.0006,
+ "loss": 3.765453338623047,
+ "step": 2024
+ },
+ {
+ "epoch": 28.125819134993446,
+ "grad_norm": 0.19145619869232178,
+ "learning_rate": 0.0006,
+ "loss": 3.769411325454712,
+ "step": 2025
+ },
+ {
+ "epoch": 28.13979903888161,
+ "grad_norm": 0.19308455288410187,
+ "learning_rate": 0.0006,
+ "loss": 3.8009989261627197,
+ "step": 2026
+ },
+ {
+ "epoch": 28.15377894276977,
+ "grad_norm": 0.220510333776474,
+ "learning_rate": 0.0006,
+ "loss": 3.7582602500915527,
+ "step": 2027
+ },
+ {
+ "epoch": 28.16775884665793,
+ "grad_norm": 0.22855883836746216,
+ "learning_rate": 0.0006,
+ "loss": 3.803917407989502,
+ "step": 2028
+ },
+ {
+ "epoch": 28.18173875054609,
+ "grad_norm": 0.24206340312957764,
+ "learning_rate": 0.0006,
+ "loss": 3.764101028442383,
+ "step": 2029
+ },
+ {
+ "epoch": 28.195718654434252,
+ "grad_norm": 0.23973612487316132,
+ "learning_rate": 0.0006,
+ "loss": 3.787308931350708,
+ "step": 2030
+ },
+ {
+ "epoch": 28.209698558322412,
+ "grad_norm": 0.21400697529315948,
+ "learning_rate": 0.0006,
+ "loss": 3.7706117630004883,
+ "step": 2031
+ },
+ {
+ "epoch": 28.22367846221057,
+ "grad_norm": 0.21983976662158966,
+ "learning_rate": 0.0006,
+ "loss": 3.772731304168701,
+ "step": 2032
+ },
+ {
+ "epoch": 28.23765836609873,
+ "grad_norm": 0.22427113354206085,
+ "learning_rate": 0.0006,
+ "loss": 3.7724413871765137,
+ "step": 2033
+ },
+ {
+ "epoch": 28.251638269986895,
+ "grad_norm": 0.23665079474449158,
+ "learning_rate": 0.0006,
+ "loss": 3.769845962524414,
+ "step": 2034
+ },
+ {
+ "epoch": 28.265618173875055,
+ "grad_norm": 0.22663180530071259,
+ "learning_rate": 0.0006,
+ "loss": 3.764380931854248,
+ "step": 2035
+ },
+ {
+ "epoch": 28.279598077763215,
+ "grad_norm": 0.21094927191734314,
+ "learning_rate": 0.0006,
+ "loss": 3.7598326206207275,
+ "step": 2036
+ },
+ {
+ "epoch": 28.293577981651374,
+ "grad_norm": 0.20419518649578094,
+ "learning_rate": 0.0006,
+ "loss": 3.7737207412719727,
+ "step": 2037
+ },
+ {
+ "epoch": 28.307557885539538,
+ "grad_norm": 0.2171909660100937,
+ "learning_rate": 0.0006,
+ "loss": 3.7499468326568604,
+ "step": 2038
+ },
+ {
+ "epoch": 28.321537789427698,
+ "grad_norm": 0.22749298810958862,
+ "learning_rate": 0.0006,
+ "loss": 3.767536163330078,
+ "step": 2039
+ },
+ {
+ "epoch": 28.335517693315857,
+ "grad_norm": 0.22821909189224243,
+ "learning_rate": 0.0006,
+ "loss": 3.744386672973633,
+ "step": 2040
+ },
+ {
+ "epoch": 28.34949759720402,
+ "grad_norm": 0.2227880209684372,
+ "learning_rate": 0.0006,
+ "loss": 3.72955322265625,
+ "step": 2041
+ },
+ {
+ "epoch": 28.36347750109218,
+ "grad_norm": 0.22204327583312988,
+ "learning_rate": 0.0006,
+ "loss": 3.793854236602783,
+ "step": 2042
+ },
+ {
+ "epoch": 28.37745740498034,
+ "grad_norm": 0.21621409058570862,
+ "learning_rate": 0.0006,
+ "loss": 3.775379180908203,
+ "step": 2043
+ },
+ {
+ "epoch": 28.3914373088685,
+ "grad_norm": 0.2439221441745758,
+ "learning_rate": 0.0006,
+ "loss": 3.727464199066162,
+ "step": 2044
+ },
+ {
+ "epoch": 28.405417212756664,
+ "grad_norm": 0.24408605694770813,
+ "learning_rate": 0.0006,
+ "loss": 3.761747360229492,
+ "step": 2045
+ },
+ {
+ "epoch": 28.419397116644824,
+ "grad_norm": 0.26118648052215576,
+ "learning_rate": 0.0006,
+ "loss": 3.7587313652038574,
+ "step": 2046
+ },
+ {
+ "epoch": 28.433377020532983,
+ "grad_norm": 0.25948166847229004,
+ "learning_rate": 0.0006,
+ "loss": 3.7698440551757812,
+ "step": 2047
+ },
+ {
+ "epoch": 28.447356924421143,
+ "grad_norm": 0.26413780450820923,
+ "learning_rate": 0.0006,
+ "loss": 3.799107551574707,
+ "step": 2048
+ },
+ {
+ "epoch": 28.461336828309307,
+ "grad_norm": 0.2687148153781891,
+ "learning_rate": 0.0006,
+ "loss": 3.7564382553100586,
+ "step": 2049
+ },
+ {
+ "epoch": 28.475316732197467,
+ "grad_norm": 0.2676694691181183,
+ "learning_rate": 0.0006,
+ "loss": 3.754267692565918,
+ "step": 2050
+ },
+ {
+ "epoch": 28.489296636085626,
+ "grad_norm": 0.27275168895721436,
+ "learning_rate": 0.0006,
+ "loss": 3.802988052368164,
+ "step": 2051
+ },
+ {
+ "epoch": 28.503276539973786,
+ "grad_norm": 0.28783538937568665,
+ "learning_rate": 0.0006,
+ "loss": 3.762540817260742,
+ "step": 2052
+ },
+ {
+ "epoch": 28.51725644386195,
+ "grad_norm": 0.2628997266292572,
+ "learning_rate": 0.0006,
+ "loss": 3.7933349609375,
+ "step": 2053
+ },
+ {
+ "epoch": 28.53123634775011,
+ "grad_norm": 0.2498515099287033,
+ "learning_rate": 0.0006,
+ "loss": 3.7773094177246094,
+ "step": 2054
+ },
+ {
+ "epoch": 28.54521625163827,
+ "grad_norm": 0.22625942528247833,
+ "learning_rate": 0.0006,
+ "loss": 3.803457021713257,
+ "step": 2055
+ },
+ {
+ "epoch": 28.55919615552643,
+ "grad_norm": 0.21488751471042633,
+ "learning_rate": 0.0006,
+ "loss": 3.78924560546875,
+ "step": 2056
+ },
+ {
+ "epoch": 28.573176059414592,
+ "grad_norm": 0.22041267156600952,
+ "learning_rate": 0.0006,
+ "loss": 3.79361629486084,
+ "step": 2057
+ },
+ {
+ "epoch": 28.587155963302752,
+ "grad_norm": 0.23164816200733185,
+ "learning_rate": 0.0006,
+ "loss": 3.735037326812744,
+ "step": 2058
+ },
+ {
+ "epoch": 28.601135867190912,
+ "grad_norm": 0.22371916472911835,
+ "learning_rate": 0.0006,
+ "loss": 3.731417179107666,
+ "step": 2059
+ },
+ {
+ "epoch": 28.615115771079076,
+ "grad_norm": 0.2280314862728119,
+ "learning_rate": 0.0006,
+ "loss": 3.796154499053955,
+ "step": 2060
+ },
+ {
+ "epoch": 28.629095674967235,
+ "grad_norm": 0.21386604011058807,
+ "learning_rate": 0.0006,
+ "loss": 3.778648614883423,
+ "step": 2061
+ },
+ {
+ "epoch": 28.643075578855395,
+ "grad_norm": 0.20433050394058228,
+ "learning_rate": 0.0006,
+ "loss": 3.772826910018921,
+ "step": 2062
+ },
+ {
+ "epoch": 28.657055482743555,
+ "grad_norm": 0.2049262523651123,
+ "learning_rate": 0.0006,
+ "loss": 3.7410364151000977,
+ "step": 2063
+ },
+ {
+ "epoch": 28.67103538663172,
+ "grad_norm": 0.22041259706020355,
+ "learning_rate": 0.0006,
+ "loss": 3.796724319458008,
+ "step": 2064
+ },
+ {
+ "epoch": 28.68501529051988,
+ "grad_norm": 0.2018800675868988,
+ "learning_rate": 0.0006,
+ "loss": 3.775252342224121,
+ "step": 2065
+ },
+ {
+ "epoch": 28.698995194408038,
+ "grad_norm": 0.2159280925989151,
+ "learning_rate": 0.0006,
+ "loss": 3.766021251678467,
+ "step": 2066
+ },
+ {
+ "epoch": 28.712975098296198,
+ "grad_norm": 0.2072775512933731,
+ "learning_rate": 0.0006,
+ "loss": 3.765397548675537,
+ "step": 2067
+ },
+ {
+ "epoch": 28.72695500218436,
+ "grad_norm": 0.19592848420143127,
+ "learning_rate": 0.0006,
+ "loss": 3.8151614665985107,
+ "step": 2068
+ },
+ {
+ "epoch": 28.74093490607252,
+ "grad_norm": 0.19266322255134583,
+ "learning_rate": 0.0006,
+ "loss": 3.774945020675659,
+ "step": 2069
+ },
+ {
+ "epoch": 28.75491480996068,
+ "grad_norm": 0.19442392885684967,
+ "learning_rate": 0.0006,
+ "loss": 3.816283702850342,
+ "step": 2070
+ },
+ {
+ "epoch": 28.76889471384884,
+ "grad_norm": 0.19080746173858643,
+ "learning_rate": 0.0006,
+ "loss": 3.7784247398376465,
+ "step": 2071
+ },
+ {
+ "epoch": 28.782874617737004,
+ "grad_norm": 0.20150451362133026,
+ "learning_rate": 0.0006,
+ "loss": 3.7710249423980713,
+ "step": 2072
+ },
+ {
+ "epoch": 28.796854521625164,
+ "grad_norm": 0.1835816204547882,
+ "learning_rate": 0.0006,
+ "loss": 3.750032901763916,
+ "step": 2073
+ },
+ {
+ "epoch": 28.810834425513324,
+ "grad_norm": 0.1855502873659134,
+ "learning_rate": 0.0006,
+ "loss": 3.7276318073272705,
+ "step": 2074
+ },
+ {
+ "epoch": 28.824814329401484,
+ "grad_norm": 0.18683169782161713,
+ "learning_rate": 0.0006,
+ "loss": 3.7516555786132812,
+ "step": 2075
+ },
+ {
+ "epoch": 28.838794233289647,
+ "grad_norm": 0.2034577578306198,
+ "learning_rate": 0.0006,
+ "loss": 3.749875068664551,
+ "step": 2076
+ },
+ {
+ "epoch": 28.852774137177807,
+ "grad_norm": 0.2234230488538742,
+ "learning_rate": 0.0006,
+ "loss": 3.791429042816162,
+ "step": 2077
+ },
+ {
+ "epoch": 28.866754041065967,
+ "grad_norm": 0.25600525736808777,
+ "learning_rate": 0.0006,
+ "loss": 3.7769298553466797,
+ "step": 2078
+ },
+ {
+ "epoch": 28.88073394495413,
+ "grad_norm": 0.2741529643535614,
+ "learning_rate": 0.0006,
+ "loss": 3.771848201751709,
+ "step": 2079
+ },
+ {
+ "epoch": 28.89471384884229,
+ "grad_norm": 0.2710304260253906,
+ "learning_rate": 0.0006,
+ "loss": 3.8235626220703125,
+ "step": 2080
+ },
+ {
+ "epoch": 28.90869375273045,
+ "grad_norm": 0.25497519969940186,
+ "learning_rate": 0.0006,
+ "loss": 3.811288595199585,
+ "step": 2081
+ },
+ {
+ "epoch": 28.92267365661861,
+ "grad_norm": 0.25689464807510376,
+ "learning_rate": 0.0006,
+ "loss": 3.7848939895629883,
+ "step": 2082
+ },
+ {
+ "epoch": 28.936653560506773,
+ "grad_norm": 0.2794921398162842,
+ "learning_rate": 0.0006,
+ "loss": 3.7836732864379883,
+ "step": 2083
+ },
+ {
+ "epoch": 28.950633464394933,
+ "grad_norm": 0.24730202555656433,
+ "learning_rate": 0.0006,
+ "loss": 3.7703347206115723,
+ "step": 2084
+ },
+ {
+ "epoch": 28.964613368283093,
+ "grad_norm": 0.21078833937644958,
+ "learning_rate": 0.0006,
+ "loss": 3.7521653175354004,
+ "step": 2085
+ },
+ {
+ "epoch": 28.978593272171253,
+ "grad_norm": 0.2188870757818222,
+ "learning_rate": 0.0006,
+ "loss": 3.769604206085205,
+ "step": 2086
+ },
+ {
+ "epoch": 28.992573176059416,
+ "grad_norm": 0.20447929203510284,
+ "learning_rate": 0.0006,
+ "loss": 3.7842764854431152,
+ "step": 2087
+ },
+ {
+ "epoch": 29.0,
+ "grad_norm": 0.21607689559459686,
+ "learning_rate": 0.0006,
+ "loss": 3.7428855895996094,
+ "step": 2088
+ },
+ {
+ "epoch": 29.0,
+ "eval_loss": 4.0355753898620605,
+ "eval_runtime": 44.1435,
+ "eval_samples_per_second": 55.32,
+ "eval_steps_per_second": 3.466,
+ "step": 2088
+ },
+ {
+ "epoch": 29.01397990388816,
+ "grad_norm": 0.21270133554935455,
+ "learning_rate": 0.0006,
+ "loss": 3.7548413276672363,
+ "step": 2089
+ },
+ {
+ "epoch": 29.027959807776323,
+ "grad_norm": 0.21576301753520966,
+ "learning_rate": 0.0006,
+ "loss": 3.754613161087036,
+ "step": 2090
+ },
+ {
+ "epoch": 29.041939711664483,
+ "grad_norm": 0.2162923663854599,
+ "learning_rate": 0.0006,
+ "loss": 3.755772590637207,
+ "step": 2091
+ },
+ {
+ "epoch": 29.055919615552643,
+ "grad_norm": 0.22236663103103638,
+ "learning_rate": 0.0006,
+ "loss": 3.743497848510742,
+ "step": 2092
+ },
+ {
+ "epoch": 29.069899519440803,
+ "grad_norm": 0.2391042858362198,
+ "learning_rate": 0.0006,
+ "loss": 3.749204158782959,
+ "step": 2093
+ },
+ {
+ "epoch": 29.083879423328966,
+ "grad_norm": 0.23387965559959412,
+ "learning_rate": 0.0006,
+ "loss": 3.7286791801452637,
+ "step": 2094
+ },
+ {
+ "epoch": 29.097859327217126,
+ "grad_norm": 0.23677746951580048,
+ "learning_rate": 0.0006,
+ "loss": 3.755279541015625,
+ "step": 2095
+ },
+ {
+ "epoch": 29.111839231105286,
+ "grad_norm": 0.22771087288856506,
+ "learning_rate": 0.0006,
+ "loss": 3.722566604614258,
+ "step": 2096
+ },
+ {
+ "epoch": 29.125819134993446,
+ "grad_norm": 0.2132875621318817,
+ "learning_rate": 0.0006,
+ "loss": 3.748939037322998,
+ "step": 2097
+ },
+ {
+ "epoch": 29.13979903888161,
+ "grad_norm": 0.2033746838569641,
+ "learning_rate": 0.0006,
+ "loss": 3.7393670082092285,
+ "step": 2098
+ },
+ {
+ "epoch": 29.15377894276977,
+ "grad_norm": 0.1997237652540207,
+ "learning_rate": 0.0006,
+ "loss": 3.718498945236206,
+ "step": 2099
+ },
+ {
+ "epoch": 29.16775884665793,
+ "grad_norm": 0.19102543592453003,
+ "learning_rate": 0.0006,
+ "loss": 3.748950719833374,
+ "step": 2100
+ },
+ {
+ "epoch": 29.18173875054609,
+ "grad_norm": 0.19801580905914307,
+ "learning_rate": 0.0006,
+ "loss": 3.7123501300811768,
+ "step": 2101
+ },
+ {
+ "epoch": 29.195718654434252,
+ "grad_norm": 0.20186249911785126,
+ "learning_rate": 0.0006,
+ "loss": 3.7632713317871094,
+ "step": 2102
+ },
+ {
+ "epoch": 29.209698558322412,
+ "grad_norm": 0.22725415229797363,
+ "learning_rate": 0.0006,
+ "loss": 3.753506660461426,
+ "step": 2103
+ },
+ {
+ "epoch": 29.22367846221057,
+ "grad_norm": 0.23138119280338287,
+ "learning_rate": 0.0006,
+ "loss": 3.753282070159912,
+ "step": 2104
+ },
+ {
+ "epoch": 29.23765836609873,
+ "grad_norm": 0.23171944916248322,
+ "learning_rate": 0.0006,
+ "loss": 3.73783540725708,
+ "step": 2105
+ },
+ {
+ "epoch": 29.251638269986895,
+ "grad_norm": 0.2166522741317749,
+ "learning_rate": 0.0006,
+ "loss": 3.778803825378418,
+ "step": 2106
+ },
+ {
+ "epoch": 29.265618173875055,
+ "grad_norm": 0.2009056806564331,
+ "learning_rate": 0.0006,
+ "loss": 3.738290786743164,
+ "step": 2107
+ },
+ {
+ "epoch": 29.279598077763215,
+ "grad_norm": 0.19451597332954407,
+ "learning_rate": 0.0006,
+ "loss": 3.7553348541259766,
+ "step": 2108
+ },
+ {
+ "epoch": 29.293577981651374,
+ "grad_norm": 0.19246742129325867,
+ "learning_rate": 0.0006,
+ "loss": 3.7321622371673584,
+ "step": 2109
+ },
+ {
+ "epoch": 29.307557885539538,
+ "grad_norm": 0.18917441368103027,
+ "learning_rate": 0.0006,
+ "loss": 3.7408928871154785,
+ "step": 2110
+ },
+ {
+ "epoch": 29.321537789427698,
+ "grad_norm": 0.19067776203155518,
+ "learning_rate": 0.0006,
+ "loss": 3.780052900314331,
+ "step": 2111
+ },
+ {
+ "epoch": 29.335517693315857,
+ "grad_norm": 0.18849676847457886,
+ "learning_rate": 0.0006,
+ "loss": 3.749375820159912,
+ "step": 2112
+ },
+ {
+ "epoch": 29.34949759720402,
+ "grad_norm": 0.19713285565376282,
+ "learning_rate": 0.0006,
+ "loss": 3.7128982543945312,
+ "step": 2113
+ },
+ {
+ "epoch": 29.36347750109218,
+ "grad_norm": 0.196336030960083,
+ "learning_rate": 0.0006,
+ "loss": 3.7528390884399414,
+ "step": 2114
+ },
+ {
+ "epoch": 29.37745740498034,
+ "grad_norm": 0.19574350118637085,
+ "learning_rate": 0.0006,
+ "loss": 3.7105777263641357,
+ "step": 2115
+ },
+ {
+ "epoch": 29.3914373088685,
+ "grad_norm": 0.20396539568901062,
+ "learning_rate": 0.0006,
+ "loss": 3.782249927520752,
+ "step": 2116
+ },
+ {
+ "epoch": 29.405417212756664,
+ "grad_norm": 0.24702422320842743,
+ "learning_rate": 0.0006,
+ "loss": 3.7685647010803223,
+ "step": 2117
+ },
+ {
+ "epoch": 29.419397116644824,
+ "grad_norm": 0.2729755640029907,
+ "learning_rate": 0.0006,
+ "loss": 3.7731213569641113,
+ "step": 2118
+ },
+ {
+ "epoch": 29.433377020532983,
+ "grad_norm": 0.29240545630455017,
+ "learning_rate": 0.0006,
+ "loss": 3.770162343978882,
+ "step": 2119
+ },
+ {
+ "epoch": 29.447356924421143,
+ "grad_norm": 0.2469114065170288,
+ "learning_rate": 0.0006,
+ "loss": 3.764681339263916,
+ "step": 2120
+ },
+ {
+ "epoch": 29.461336828309307,
+ "grad_norm": 0.19837401807308197,
+ "learning_rate": 0.0006,
+ "loss": 3.7600088119506836,
+ "step": 2121
+ },
+ {
+ "epoch": 29.475316732197467,
+ "grad_norm": 0.21266621351242065,
+ "learning_rate": 0.0006,
+ "loss": 3.769454002380371,
+ "step": 2122
+ },
+ {
+ "epoch": 29.489296636085626,
+ "grad_norm": 0.25908344984054565,
+ "learning_rate": 0.0006,
+ "loss": 3.7230491638183594,
+ "step": 2123
+ },
+ {
+ "epoch": 29.503276539973786,
+ "grad_norm": 0.2914169728755951,
+ "learning_rate": 0.0006,
+ "loss": 3.767849922180176,
+ "step": 2124
+ },
+ {
+ "epoch": 29.51725644386195,
+ "grad_norm": 0.2796176075935364,
+ "learning_rate": 0.0006,
+ "loss": 3.741734266281128,
+ "step": 2125
+ },
+ {
+ "epoch": 29.53123634775011,
+ "grad_norm": 0.276309996843338,
+ "learning_rate": 0.0006,
+ "loss": 3.8001914024353027,
+ "step": 2126
+ },
+ {
+ "epoch": 29.54521625163827,
+ "grad_norm": 0.26512834429740906,
+ "learning_rate": 0.0006,
+ "loss": 3.7741384506225586,
+ "step": 2127
+ },
+ {
+ "epoch": 29.55919615552643,
+ "grad_norm": 0.26514101028442383,
+ "learning_rate": 0.0006,
+ "loss": 3.7466959953308105,
+ "step": 2128
+ },
+ {
+ "epoch": 29.573176059414592,
+ "grad_norm": 0.24121330678462982,
+ "learning_rate": 0.0006,
+ "loss": 3.759542465209961,
+ "step": 2129
+ },
+ {
+ "epoch": 29.587155963302752,
+ "grad_norm": 0.2264087200164795,
+ "learning_rate": 0.0006,
+ "loss": 3.791344165802002,
+ "step": 2130
+ },
+ {
+ "epoch": 29.601135867190912,
+ "grad_norm": 0.21915403008460999,
+ "learning_rate": 0.0006,
+ "loss": 3.7540485858917236,
+ "step": 2131
+ },
+ {
+ "epoch": 29.615115771079076,
+ "grad_norm": 0.20453961193561554,
+ "learning_rate": 0.0006,
+ "loss": 3.765617609024048,
+ "step": 2132
+ },
+ {
+ "epoch": 29.629095674967235,
+ "grad_norm": 0.2194051444530487,
+ "learning_rate": 0.0006,
+ "loss": 3.7664294242858887,
+ "step": 2133
+ },
+ {
+ "epoch": 29.643075578855395,
+ "grad_norm": 0.21926000714302063,
+ "learning_rate": 0.0006,
+ "loss": 3.7551684379577637,
+ "step": 2134
+ },
+ {
+ "epoch": 29.657055482743555,
+ "grad_norm": 0.20835602283477783,
+ "learning_rate": 0.0006,
+ "loss": 3.7654306888580322,
+ "step": 2135
+ },
+ {
+ "epoch": 29.67103538663172,
+ "grad_norm": 0.23094356060028076,
+ "learning_rate": 0.0006,
+ "loss": 3.7847180366516113,
+ "step": 2136
+ },
+ {
+ "epoch": 29.68501529051988,
+ "grad_norm": 0.23871271312236786,
+ "learning_rate": 0.0006,
+ "loss": 3.789036273956299,
+ "step": 2137
+ },
+ {
+ "epoch": 29.698995194408038,
+ "grad_norm": 0.22263272106647491,
+ "learning_rate": 0.0006,
+ "loss": 3.7677512168884277,
+ "step": 2138
+ },
+ {
+ "epoch": 29.712975098296198,
+ "grad_norm": 0.2293892651796341,
+ "learning_rate": 0.0006,
+ "loss": 3.777097225189209,
+ "step": 2139
+ },
+ {
+ "epoch": 29.72695500218436,
+ "grad_norm": 0.21068568527698517,
+ "learning_rate": 0.0006,
+ "loss": 3.785336494445801,
+ "step": 2140
+ },
+ {
+ "epoch": 29.74093490607252,
+ "grad_norm": 0.19600282609462738,
+ "learning_rate": 0.0006,
+ "loss": 3.7363505363464355,
+ "step": 2141
+ },
+ {
+ "epoch": 29.75491480996068,
+ "grad_norm": 0.20053936541080475,
+ "learning_rate": 0.0006,
+ "loss": 3.753859043121338,
+ "step": 2142
+ },
+ {
+ "epoch": 29.76889471384884,
+ "grad_norm": 0.22790539264678955,
+ "learning_rate": 0.0006,
+ "loss": 3.749492645263672,
+ "step": 2143
+ },
+ {
+ "epoch": 29.782874617737004,
+ "grad_norm": 0.26042407751083374,
+ "learning_rate": 0.0006,
+ "loss": 3.7905430793762207,
+ "step": 2144
+ },
+ {
+ "epoch": 29.796854521625164,
+ "grad_norm": 0.2753683626651764,
+ "learning_rate": 0.0006,
+ "loss": 3.756442070007324,
+ "step": 2145
+ },
+ {
+ "epoch": 29.810834425513324,
+ "grad_norm": 0.2795007526874542,
+ "learning_rate": 0.0006,
+ "loss": 3.7691903114318848,
+ "step": 2146
+ },
+ {
+ "epoch": 29.824814329401484,
+ "grad_norm": 0.2461438924074173,
+ "learning_rate": 0.0006,
+ "loss": 3.7573065757751465,
+ "step": 2147
+ },
+ {
+ "epoch": 29.838794233289647,
+ "grad_norm": 0.21051941812038422,
+ "learning_rate": 0.0006,
+ "loss": 3.7540078163146973,
+ "step": 2148
+ },
+ {
+ "epoch": 29.852774137177807,
+ "grad_norm": 0.197485089302063,
+ "learning_rate": 0.0006,
+ "loss": 3.734403133392334,
+ "step": 2149
+ },
+ {
+ "epoch": 29.866754041065967,
+ "grad_norm": 0.203064426779747,
+ "learning_rate": 0.0006,
+ "loss": 3.7888364791870117,
+ "step": 2150
+ },
+ {
+ "epoch": 29.88073394495413,
+ "grad_norm": 0.2000301480293274,
+ "learning_rate": 0.0006,
+ "loss": 3.7444958686828613,
+ "step": 2151
+ },
+ {
+ "epoch": 29.89471384884229,
+ "grad_norm": 0.20492053031921387,
+ "learning_rate": 0.0006,
+ "loss": 3.7878224849700928,
+ "step": 2152
+ },
+ {
+ "epoch": 29.90869375273045,
+ "grad_norm": 0.22565388679504395,
+ "learning_rate": 0.0006,
+ "loss": 3.7539188861846924,
+ "step": 2153
+ },
+ {
+ "epoch": 29.92267365661861,
+ "grad_norm": 0.20258226990699768,
+ "learning_rate": 0.0006,
+ "loss": 3.7491893768310547,
+ "step": 2154
+ },
+ {
+ "epoch": 29.936653560506773,
+ "grad_norm": 0.20028717815876007,
+ "learning_rate": 0.0006,
+ "loss": 3.7497997283935547,
+ "step": 2155
+ },
+ {
+ "epoch": 29.950633464394933,
+ "grad_norm": 0.2246360331773758,
+ "learning_rate": 0.0006,
+ "loss": 3.773930788040161,
+ "step": 2156
+ },
+ {
+ "epoch": 29.964613368283093,
+ "grad_norm": 0.22432482242584229,
+ "learning_rate": 0.0006,
+ "loss": 3.7926344871520996,
+ "step": 2157
+ },
+ {
+ "epoch": 29.978593272171253,
+ "grad_norm": 0.2165718674659729,
+ "learning_rate": 0.0006,
+ "loss": 3.7436647415161133,
+ "step": 2158
+ },
+ {
+ "epoch": 29.992573176059416,
+ "grad_norm": 0.20629167556762695,
+ "learning_rate": 0.0006,
+ "loss": 3.7619552612304688,
+ "step": 2159
+ },
+ {
+ "epoch": 30.0,
+ "grad_norm": 0.24264708161354065,
+ "learning_rate": 0.0006,
+ "loss": 3.772679328918457,
+ "step": 2160
+ },
+ {
+ "epoch": 30.0,
+ "eval_loss": 4.024484634399414,
+ "eval_runtime": 44.3611,
+ "eval_samples_per_second": 55.048,
+ "eval_steps_per_second": 3.449,
+ "step": 2160
+ },
+ {
+ "epoch": 30.01397990388816,
+ "grad_norm": 0.2373432070016861,
+ "learning_rate": 0.0006,
+ "loss": 3.7423200607299805,
+ "step": 2161
+ },
+ {
+ "epoch": 30.027959807776323,
+ "grad_norm": 0.26835134625434875,
+ "learning_rate": 0.0006,
+ "loss": 3.7215471267700195,
+ "step": 2162
+ },
+ {
+ "epoch": 30.041939711664483,
+ "grad_norm": 0.2743220329284668,
+ "learning_rate": 0.0006,
+ "loss": 3.7190256118774414,
+ "step": 2163
+ },
+ {
+ "epoch": 30.055919615552643,
+ "grad_norm": 0.2292490005493164,
+ "learning_rate": 0.0006,
+ "loss": 3.731855869293213,
+ "step": 2164
+ },
+ {
+ "epoch": 30.069899519440803,
+ "grad_norm": 0.22704607248306274,
+ "learning_rate": 0.0006,
+ "loss": 3.7649693489074707,
+ "step": 2165
+ },
+ {
+ "epoch": 30.083879423328966,
+ "grad_norm": 0.23255930840969086,
+ "learning_rate": 0.0006,
+ "loss": 3.7547781467437744,
+ "step": 2166
+ },
+ {
+ "epoch": 30.097859327217126,
+ "grad_norm": 0.2068684846162796,
+ "learning_rate": 0.0006,
+ "loss": 3.7343382835388184,
+ "step": 2167
+ },
+ {
+ "epoch": 30.111839231105286,
+ "grad_norm": 0.22523464262485504,
+ "learning_rate": 0.0006,
+ "loss": 3.7304530143737793,
+ "step": 2168
+ },
+ {
+ "epoch": 30.125819134993446,
+ "grad_norm": 0.24650199711322784,
+ "learning_rate": 0.0006,
+ "loss": 3.7414379119873047,
+ "step": 2169
+ },
+ {
+ "epoch": 30.13979903888161,
+ "grad_norm": 0.2392522394657135,
+ "learning_rate": 0.0006,
+ "loss": 3.754481792449951,
+ "step": 2170
+ },
+ {
+ "epoch": 30.15377894276977,
+ "grad_norm": 0.21174749732017517,
+ "learning_rate": 0.0006,
+ "loss": 3.7249929904937744,
+ "step": 2171
+ },
+ {
+ "epoch": 30.16775884665793,
+ "grad_norm": 0.20847836136817932,
+ "learning_rate": 0.0006,
+ "loss": 3.7146458625793457,
+ "step": 2172
+ },
+ {
+ "epoch": 30.18173875054609,
+ "grad_norm": 0.22131472826004028,
+ "learning_rate": 0.0006,
+ "loss": 3.7569539546966553,
+ "step": 2173
+ },
+ {
+ "epoch": 30.195718654434252,
+ "grad_norm": 0.23528096079826355,
+ "learning_rate": 0.0006,
+ "loss": 3.743435859680176,
+ "step": 2174
+ },
+ {
+ "epoch": 30.209698558322412,
+ "grad_norm": 0.2382429540157318,
+ "learning_rate": 0.0006,
+ "loss": 3.745307445526123,
+ "step": 2175
+ },
+ {
+ "epoch": 30.22367846221057,
+ "grad_norm": 0.2477114498615265,
+ "learning_rate": 0.0006,
+ "loss": 3.742305278778076,
+ "step": 2176
+ },
+ {
+ "epoch": 30.23765836609873,
+ "grad_norm": 0.24507801234722137,
+ "learning_rate": 0.0006,
+ "loss": 3.733564853668213,
+ "step": 2177
+ },
+ {
+ "epoch": 30.251638269986895,
+ "grad_norm": 0.2266329675912857,
+ "learning_rate": 0.0006,
+ "loss": 3.747429370880127,
+ "step": 2178
+ },
+ {
+ "epoch": 30.265618173875055,
+ "grad_norm": 0.22146396338939667,
+ "learning_rate": 0.0006,
+ "loss": 3.738630533218384,
+ "step": 2179
+ },
+ {
+ "epoch": 30.279598077763215,
+ "grad_norm": 0.20202279090881348,
+ "learning_rate": 0.0006,
+ "loss": 3.74582839012146,
+ "step": 2180
+ },
+ {
+ "epoch": 30.293577981651374,
+ "grad_norm": 0.20591886341571808,
+ "learning_rate": 0.0006,
+ "loss": 3.792062997817993,
+ "step": 2181
+ },
+ {
+ "epoch": 30.307557885539538,
+ "grad_norm": 0.21744129061698914,
+ "learning_rate": 0.0006,
+ "loss": 3.7389049530029297,
+ "step": 2182
+ },
+ {
+ "epoch": 30.321537789427698,
+ "grad_norm": 0.22641272842884064,
+ "learning_rate": 0.0006,
+ "loss": 3.756775140762329,
+ "step": 2183
+ },
+ {
+ "epoch": 30.335517693315857,
+ "grad_norm": 0.22433501482009888,
+ "learning_rate": 0.0006,
+ "loss": 3.764744758605957,
+ "step": 2184
+ },
+ {
+ "epoch": 30.34949759720402,
+ "grad_norm": 0.20184539258480072,
+ "learning_rate": 0.0006,
+ "loss": 3.747469902038574,
+ "step": 2185
+ },
+ {
+ "epoch": 30.36347750109218,
+ "grad_norm": 0.20864923298358917,
+ "learning_rate": 0.0006,
+ "loss": 3.7472925186157227,
+ "step": 2186
+ },
+ {
+ "epoch": 30.37745740498034,
+ "grad_norm": 0.22537396848201752,
+ "learning_rate": 0.0006,
+ "loss": 3.7194581031799316,
+ "step": 2187
+ },
+ {
+ "epoch": 30.3914373088685,
+ "grad_norm": 0.23159919679164886,
+ "learning_rate": 0.0006,
+ "loss": 3.7124292850494385,
+ "step": 2188
+ },
+ {
+ "epoch": 30.405417212756664,
+ "grad_norm": 0.24334494769573212,
+ "learning_rate": 0.0006,
+ "loss": 3.7769203186035156,
+ "step": 2189
+ },
+ {
+ "epoch": 30.419397116644824,
+ "grad_norm": 0.3031228482723236,
+ "learning_rate": 0.0006,
+ "loss": 3.762169361114502,
+ "step": 2190
+ },
+ {
+ "epoch": 30.433377020532983,
+ "grad_norm": 0.29114583134651184,
+ "learning_rate": 0.0006,
+ "loss": 3.76554799079895,
+ "step": 2191
+ },
+ {
+ "epoch": 30.447356924421143,
+ "grad_norm": 0.26824963092803955,
+ "learning_rate": 0.0006,
+ "loss": 3.732962131500244,
+ "step": 2192
+ },
+ {
+ "epoch": 30.461336828309307,
+ "grad_norm": 0.3026561141014099,
+ "learning_rate": 0.0006,
+ "loss": 3.7567975521087646,
+ "step": 2193
+ },
+ {
+ "epoch": 30.475316732197467,
+ "grad_norm": 0.27224525809288025,
+ "learning_rate": 0.0006,
+ "loss": 3.7856051921844482,
+ "step": 2194
+ },
+ {
+ "epoch": 30.489296636085626,
+ "grad_norm": 0.24295508861541748,
+ "learning_rate": 0.0006,
+ "loss": 3.7514901161193848,
+ "step": 2195
+ },
+ {
+ "epoch": 30.503276539973786,
+ "grad_norm": 0.24435290694236755,
+ "learning_rate": 0.0006,
+ "loss": 3.715973138809204,
+ "step": 2196
+ },
+ {
+ "epoch": 30.51725644386195,
+ "grad_norm": 0.2298959195613861,
+ "learning_rate": 0.0006,
+ "loss": 3.7960405349731445,
+ "step": 2197
+ },
+ {
+ "epoch": 30.53123634775011,
+ "grad_norm": 0.20313066244125366,
+ "learning_rate": 0.0006,
+ "loss": 3.7377915382385254,
+ "step": 2198
+ },
+ {
+ "epoch": 30.54521625163827,
+ "grad_norm": 0.2018895149230957,
+ "learning_rate": 0.0006,
+ "loss": 3.6980559825897217,
+ "step": 2199
+ },
+ {
+ "epoch": 30.55919615552643,
+ "grad_norm": 0.20048382878303528,
+ "learning_rate": 0.0006,
+ "loss": 3.7474141120910645,
+ "step": 2200
+ },
+ {
+ "epoch": 30.573176059414592,
+ "grad_norm": 0.19821316003799438,
+ "learning_rate": 0.0006,
+ "loss": 3.7668564319610596,
+ "step": 2201
+ },
+ {
+ "epoch": 30.587155963302752,
+ "grad_norm": 0.21467992663383484,
+ "learning_rate": 0.0006,
+ "loss": 3.7636144161224365,
+ "step": 2202
+ },
+ {
+ "epoch": 30.601135867190912,
+ "grad_norm": 0.20192000269889832,
+ "learning_rate": 0.0006,
+ "loss": 3.745736837387085,
+ "step": 2203
+ },
+ {
+ "epoch": 30.615115771079076,
+ "grad_norm": 0.2078823447227478,
+ "learning_rate": 0.0006,
+ "loss": 3.726665496826172,
+ "step": 2204
+ },
+ {
+ "epoch": 30.629095674967235,
+ "grad_norm": 0.22535845637321472,
+ "learning_rate": 0.0006,
+ "loss": 3.745058059692383,
+ "step": 2205
+ },
+ {
+ "epoch": 30.643075578855395,
+ "grad_norm": 0.22277814149856567,
+ "learning_rate": 0.0006,
+ "loss": 3.7488319873809814,
+ "step": 2206
+ },
+ {
+ "epoch": 30.657055482743555,
+ "grad_norm": 0.20940838754177094,
+ "learning_rate": 0.0006,
+ "loss": 3.7395732402801514,
+ "step": 2207
+ },
+ {
+ "epoch": 30.67103538663172,
+ "grad_norm": 0.21384629607200623,
+ "learning_rate": 0.0006,
+ "loss": 3.7275657653808594,
+ "step": 2208
+ },
+ {
+ "epoch": 30.68501529051988,
+ "grad_norm": 0.18796643614768982,
+ "learning_rate": 0.0006,
+ "loss": 3.743420124053955,
+ "step": 2209
+ },
+ {
+ "epoch": 30.698995194408038,
+ "grad_norm": 0.213258296251297,
+ "learning_rate": 0.0006,
+ "loss": 3.7227492332458496,
+ "step": 2210
+ },
+ {
+ "epoch": 30.712975098296198,
+ "grad_norm": 0.22714753448963165,
+ "learning_rate": 0.0006,
+ "loss": 3.7301113605499268,
+ "step": 2211
+ },
+ {
+ "epoch": 30.72695500218436,
+ "grad_norm": 0.21657656133174896,
+ "learning_rate": 0.0006,
+ "loss": 3.7336206436157227,
+ "step": 2212
+ },
+ {
+ "epoch": 30.74093490607252,
+ "grad_norm": 0.19550828635692596,
+ "learning_rate": 0.0006,
+ "loss": 3.7367351055145264,
+ "step": 2213
+ },
+ {
+ "epoch": 30.75491480996068,
+ "grad_norm": 0.17011769115924835,
+ "learning_rate": 0.0006,
+ "loss": 3.7401928901672363,
+ "step": 2214
+ },
+ {
+ "epoch": 30.76889471384884,
+ "grad_norm": 0.19110196828842163,
+ "learning_rate": 0.0006,
+ "loss": 3.7496562004089355,
+ "step": 2215
+ },
+ {
+ "epoch": 30.782874617737004,
+ "grad_norm": 0.20054543018341064,
+ "learning_rate": 0.0006,
+ "loss": 3.7532992362976074,
+ "step": 2216
+ },
+ {
+ "epoch": 30.796854521625164,
+ "grad_norm": 0.20667670667171478,
+ "learning_rate": 0.0006,
+ "loss": 3.746974468231201,
+ "step": 2217
+ },
+ {
+ "epoch": 30.810834425513324,
+ "grad_norm": 0.19850662350654602,
+ "learning_rate": 0.0006,
+ "loss": 3.7566256523132324,
+ "step": 2218
+ },
+ {
+ "epoch": 30.824814329401484,
+ "grad_norm": 0.19666457176208496,
+ "learning_rate": 0.0006,
+ "loss": 3.7356925010681152,
+ "step": 2219
+ },
+ {
+ "epoch": 30.838794233289647,
+ "grad_norm": 0.20022115111351013,
+ "learning_rate": 0.0006,
+ "loss": 3.768794536590576,
+ "step": 2220
+ },
+ {
+ "epoch": 30.852774137177807,
+ "grad_norm": 0.225278839468956,
+ "learning_rate": 0.0006,
+ "loss": 3.730262279510498,
+ "step": 2221
+ },
+ {
+ "epoch": 30.866754041065967,
+ "grad_norm": 0.2155608832836151,
+ "learning_rate": 0.0006,
+ "loss": 3.758157968521118,
+ "step": 2222
+ },
+ {
+ "epoch": 30.88073394495413,
+ "grad_norm": 0.20914921164512634,
+ "learning_rate": 0.0006,
+ "loss": 3.7290844917297363,
+ "step": 2223
+ },
+ {
+ "epoch": 30.89471384884229,
+ "grad_norm": 0.21579554677009583,
+ "learning_rate": 0.0006,
+ "loss": 3.7666125297546387,
+ "step": 2224
+ },
+ {
+ "epoch": 30.90869375273045,
+ "grad_norm": 0.22606384754180908,
+ "learning_rate": 0.0006,
+ "loss": 3.7396788597106934,
+ "step": 2225
+ },
+ {
+ "epoch": 30.92267365661861,
+ "grad_norm": 0.22218658030033112,
+ "learning_rate": 0.0006,
+ "loss": 3.7363057136535645,
+ "step": 2226
+ },
+ {
+ "epoch": 30.936653560506773,
+ "grad_norm": 0.2107125222682953,
+ "learning_rate": 0.0006,
+ "loss": 3.7402844429016113,
+ "step": 2227
+ },
+ {
+ "epoch": 30.950633464394933,
+ "grad_norm": 0.2143280804157257,
+ "learning_rate": 0.0006,
+ "loss": 3.7715706825256348,
+ "step": 2228
+ },
+ {
+ "epoch": 30.964613368283093,
+ "grad_norm": 0.20918118953704834,
+ "learning_rate": 0.0006,
+ "loss": 3.783510446548462,
+ "step": 2229
+ },
+ {
+ "epoch": 30.978593272171253,
+ "grad_norm": 0.2184133678674698,
+ "learning_rate": 0.0006,
+ "loss": 3.729846954345703,
+ "step": 2230
+ },
+ {
+ "epoch": 30.992573176059416,
+ "grad_norm": 0.20314796268939972,
+ "learning_rate": 0.0006,
+ "loss": 3.753312110900879,
+ "step": 2231
+ },
+ {
+ "epoch": 31.0,
+ "grad_norm": 0.21582408249378204,
+ "learning_rate": 0.0006,
+ "loss": 3.7653090953826904,
+ "step": 2232
+ },
+ {
+ "epoch": 31.0,
+ "eval_loss": 4.030437469482422,
+ "eval_runtime": 43.8529,
+ "eval_samples_per_second": 55.686,
+ "eval_steps_per_second": 3.489,
+ "step": 2232
+ },
+ {
+ "epoch": 31.01397990388816,
+ "grad_norm": 0.214233860373497,
+ "learning_rate": 0.0006,
+ "loss": 3.7179880142211914,
+ "step": 2233
+ },
+ {
+ "epoch": 31.027959807776323,
+ "grad_norm": 0.24621504545211792,
+ "learning_rate": 0.0006,
+ "loss": 3.712569236755371,
+ "step": 2234
+ },
+ {
+ "epoch": 31.041939711664483,
+ "grad_norm": 0.24189279973506927,
+ "learning_rate": 0.0006,
+ "loss": 3.7503058910369873,
+ "step": 2235
+ },
+ {
+ "epoch": 31.055919615552643,
+ "grad_norm": 0.22872278094291687,
+ "learning_rate": 0.0006,
+ "loss": 3.7386386394500732,
+ "step": 2236
+ },
+ {
+ "epoch": 31.069899519440803,
+ "grad_norm": 0.25036823749542236,
+ "learning_rate": 0.0006,
+ "loss": 3.710566997528076,
+ "step": 2237
+ },
+ {
+ "epoch": 31.083879423328966,
+ "grad_norm": 0.2506193220615387,
+ "learning_rate": 0.0006,
+ "loss": 3.7270963191986084,
+ "step": 2238
+ },
+ {
+ "epoch": 31.097859327217126,
+ "grad_norm": 0.24819663166999817,
+ "learning_rate": 0.0006,
+ "loss": 3.716430425643921,
+ "step": 2239
+ },
+ {
+ "epoch": 31.111839231105286,
+ "grad_norm": 0.27226534485816956,
+ "learning_rate": 0.0006,
+ "loss": 3.704428195953369,
+ "step": 2240
+ },
+ {
+ "epoch": 31.125819134993446,
+ "grad_norm": 0.27718204259872437,
+ "learning_rate": 0.0006,
+ "loss": 3.7309701442718506,
+ "step": 2241
+ },
+ {
+ "epoch": 31.13979903888161,
+ "grad_norm": 0.27272021770477295,
+ "learning_rate": 0.0006,
+ "loss": 3.7325143814086914,
+ "step": 2242
+ },
+ {
+ "epoch": 31.15377894276977,
+ "grad_norm": 0.2666020095348358,
+ "learning_rate": 0.0006,
+ "loss": 3.715268611907959,
+ "step": 2243
+ },
+ {
+ "epoch": 31.16775884665793,
+ "grad_norm": 0.258543461561203,
+ "learning_rate": 0.0006,
+ "loss": 3.7336134910583496,
+ "step": 2244
+ },
+ {
+ "epoch": 31.18173875054609,
+ "grad_norm": 0.2528740167617798,
+ "learning_rate": 0.0006,
+ "loss": 3.724491596221924,
+ "step": 2245
+ },
+ {
+ "epoch": 31.195718654434252,
+ "grad_norm": 0.2659667730331421,
+ "learning_rate": 0.0006,
+ "loss": 3.7144742012023926,
+ "step": 2246
+ },
+ {
+ "epoch": 31.209698558322412,
+ "grad_norm": 0.26563164591789246,
+ "learning_rate": 0.0006,
+ "loss": 3.741182327270508,
+ "step": 2247
+ },
+ {
+ "epoch": 31.22367846221057,
+ "grad_norm": 0.26326918601989746,
+ "learning_rate": 0.0006,
+ "loss": 3.7306275367736816,
+ "step": 2248
+ },
+ {
+ "epoch": 31.23765836609873,
+ "grad_norm": 0.23020948469638824,
+ "learning_rate": 0.0006,
+ "loss": 3.7212486267089844,
+ "step": 2249
+ },
+ {
+ "epoch": 31.251638269986895,
+ "grad_norm": 0.21207433938980103,
+ "learning_rate": 0.0006,
+ "loss": 3.6914258003234863,
+ "step": 2250
+ },
+ {
+ "epoch": 31.265618173875055,
+ "grad_norm": 0.2392292022705078,
+ "learning_rate": 0.0006,
+ "loss": 3.7117457389831543,
+ "step": 2251
+ },
+ {
+ "epoch": 31.279598077763215,
+ "grad_norm": 0.22084997594356537,
+ "learning_rate": 0.0006,
+ "loss": 3.728043794631958,
+ "step": 2252
+ },
+ {
+ "epoch": 31.293577981651374,
+ "grad_norm": 0.20818188786506653,
+ "learning_rate": 0.0006,
+ "loss": 3.751762866973877,
+ "step": 2253
+ },
+ {
+ "epoch": 31.307557885539538,
+ "grad_norm": 0.21866194903850555,
+ "learning_rate": 0.0006,
+ "loss": 3.72676420211792,
+ "step": 2254
+ },
+ {
+ "epoch": 31.321537789427698,
+ "grad_norm": 0.20727522671222687,
+ "learning_rate": 0.0006,
+ "loss": 3.735708236694336,
+ "step": 2255
+ },
+ {
+ "epoch": 31.335517693315857,
+ "grad_norm": 0.20655220746994019,
+ "learning_rate": 0.0006,
+ "loss": 3.714116096496582,
+ "step": 2256
+ },
+ {
+ "epoch": 31.34949759720402,
+ "grad_norm": 0.21738854050636292,
+ "learning_rate": 0.0006,
+ "loss": 3.731657028198242,
+ "step": 2257
+ },
+ {
+ "epoch": 31.36347750109218,
+ "grad_norm": 0.20758475363254547,
+ "learning_rate": 0.0006,
+ "loss": 3.7378528118133545,
+ "step": 2258
+ },
+ {
+ "epoch": 31.37745740498034,
+ "grad_norm": 0.20107139647006989,
+ "learning_rate": 0.0006,
+ "loss": 3.748572826385498,
+ "step": 2259
+ },
+ {
+ "epoch": 31.3914373088685,
+ "grad_norm": 0.18707452714443207,
+ "learning_rate": 0.0006,
+ "loss": 3.7237391471862793,
+ "step": 2260
+ },
+ {
+ "epoch": 31.405417212756664,
+ "grad_norm": 0.20745301246643066,
+ "learning_rate": 0.0006,
+ "loss": 3.734435558319092,
+ "step": 2261
+ },
+ {
+ "epoch": 31.419397116644824,
+ "grad_norm": 0.20793399214744568,
+ "learning_rate": 0.0006,
+ "loss": 3.7639012336730957,
+ "step": 2262
+ },
+ {
+ "epoch": 31.433377020532983,
+ "grad_norm": 0.20193757116794586,
+ "learning_rate": 0.0006,
+ "loss": 3.754117727279663,
+ "step": 2263
+ },
+ {
+ "epoch": 31.447356924421143,
+ "grad_norm": 0.1912323236465454,
+ "learning_rate": 0.0006,
+ "loss": 3.728111982345581,
+ "step": 2264
+ },
+ {
+ "epoch": 31.461336828309307,
+ "grad_norm": 0.19441582262516022,
+ "learning_rate": 0.0006,
+ "loss": 3.7533278465270996,
+ "step": 2265
+ },
+ {
+ "epoch": 31.475316732197467,
+ "grad_norm": 0.19807079434394836,
+ "learning_rate": 0.0006,
+ "loss": 3.7351698875427246,
+ "step": 2266
+ },
+ {
+ "epoch": 31.489296636085626,
+ "grad_norm": 0.20373263955116272,
+ "learning_rate": 0.0006,
+ "loss": 3.714097023010254,
+ "step": 2267
+ },
+ {
+ "epoch": 31.503276539973786,
+ "grad_norm": 0.21868768334388733,
+ "learning_rate": 0.0006,
+ "loss": 3.736743688583374,
+ "step": 2268
+ },
+ {
+ "epoch": 31.51725644386195,
+ "grad_norm": 0.20767922699451447,
+ "learning_rate": 0.0006,
+ "loss": 3.7097702026367188,
+ "step": 2269
+ },
+ {
+ "epoch": 31.53123634775011,
+ "grad_norm": 0.18425600230693817,
+ "learning_rate": 0.0006,
+ "loss": 3.7349140644073486,
+ "step": 2270
+ },
+ {
+ "epoch": 31.54521625163827,
+ "grad_norm": 0.18813826143741608,
+ "learning_rate": 0.0006,
+ "loss": 3.7023448944091797,
+ "step": 2271
+ },
+ {
+ "epoch": 31.55919615552643,
+ "grad_norm": 0.1892116516828537,
+ "learning_rate": 0.0006,
+ "loss": 3.7170143127441406,
+ "step": 2272
+ },
+ {
+ "epoch": 31.573176059414592,
+ "grad_norm": 0.2067834585905075,
+ "learning_rate": 0.0006,
+ "loss": 3.7312588691711426,
+ "step": 2273
+ },
+ {
+ "epoch": 31.587155963302752,
+ "grad_norm": 0.204023078083992,
+ "learning_rate": 0.0006,
+ "loss": 3.7399091720581055,
+ "step": 2274
+ },
+ {
+ "epoch": 31.601135867190912,
+ "grad_norm": 0.20245152711868286,
+ "learning_rate": 0.0006,
+ "loss": 3.7259416580200195,
+ "step": 2275
+ },
+ {
+ "epoch": 31.615115771079076,
+ "grad_norm": 0.21125490963459015,
+ "learning_rate": 0.0006,
+ "loss": 3.7217836380004883,
+ "step": 2276
+ },
+ {
+ "epoch": 31.629095674967235,
+ "grad_norm": 0.2093241959810257,
+ "learning_rate": 0.0006,
+ "loss": 3.707627773284912,
+ "step": 2277
+ },
+ {
+ "epoch": 31.643075578855395,
+ "grad_norm": 0.19290480017662048,
+ "learning_rate": 0.0006,
+ "loss": 3.7467126846313477,
+ "step": 2278
+ },
+ {
+ "epoch": 31.657055482743555,
+ "grad_norm": 0.1853940635919571,
+ "learning_rate": 0.0006,
+ "loss": 3.7565581798553467,
+ "step": 2279
+ },
+ {
+ "epoch": 31.67103538663172,
+ "grad_norm": 0.18917642533779144,
+ "learning_rate": 0.0006,
+ "loss": 3.7286229133605957,
+ "step": 2280
+ },
+ {
+ "epoch": 31.68501529051988,
+ "grad_norm": 0.2094079703092575,
+ "learning_rate": 0.0006,
+ "loss": 3.7297096252441406,
+ "step": 2281
+ },
+ {
+ "epoch": 31.698995194408038,
+ "grad_norm": 0.20020027458667755,
+ "learning_rate": 0.0006,
+ "loss": 3.7565250396728516,
+ "step": 2282
+ },
+ {
+ "epoch": 31.712975098296198,
+ "grad_norm": 0.19156186282634735,
+ "learning_rate": 0.0006,
+ "loss": 3.7401509284973145,
+ "step": 2283
+ },
+ {
+ "epoch": 31.72695500218436,
+ "grad_norm": 0.19176368415355682,
+ "learning_rate": 0.0006,
+ "loss": 3.751206398010254,
+ "step": 2284
+ },
+ {
+ "epoch": 31.74093490607252,
+ "grad_norm": 0.18351277709007263,
+ "learning_rate": 0.0006,
+ "loss": 3.752984046936035,
+ "step": 2285
+ },
+ {
+ "epoch": 31.75491480996068,
+ "grad_norm": 0.1879221349954605,
+ "learning_rate": 0.0006,
+ "loss": 3.7156834602355957,
+ "step": 2286
+ },
+ {
+ "epoch": 31.76889471384884,
+ "grad_norm": 0.19232559204101562,
+ "learning_rate": 0.0006,
+ "loss": 3.732879638671875,
+ "step": 2287
+ },
+ {
+ "epoch": 31.782874617737004,
+ "grad_norm": 0.18484069406986237,
+ "learning_rate": 0.0006,
+ "loss": 3.7489013671875,
+ "step": 2288
+ },
+ {
+ "epoch": 31.796854521625164,
+ "grad_norm": 0.20705144107341766,
+ "learning_rate": 0.0006,
+ "loss": 3.7214112281799316,
+ "step": 2289
+ },
+ {
+ "epoch": 31.810834425513324,
+ "grad_norm": 0.23424774408340454,
+ "learning_rate": 0.0006,
+ "loss": 3.714550256729126,
+ "step": 2290
+ },
+ {
+ "epoch": 31.824814329401484,
+ "grad_norm": 0.24061693251132965,
+ "learning_rate": 0.0006,
+ "loss": 3.717336654663086,
+ "step": 2291
+ },
+ {
+ "epoch": 31.838794233289647,
+ "grad_norm": 0.23156678676605225,
+ "learning_rate": 0.0006,
+ "loss": 3.7345399856567383,
+ "step": 2292
+ },
+ {
+ "epoch": 31.852774137177807,
+ "grad_norm": 0.2256302684545517,
+ "learning_rate": 0.0006,
+ "loss": 3.7596092224121094,
+ "step": 2293
+ },
+ {
+ "epoch": 31.866754041065967,
+ "grad_norm": 0.2118781954050064,
+ "learning_rate": 0.0006,
+ "loss": 3.725433588027954,
+ "step": 2294
+ },
+ {
+ "epoch": 31.88073394495413,
+ "grad_norm": 0.1874573826789856,
+ "learning_rate": 0.0006,
+ "loss": 3.738901138305664,
+ "step": 2295
+ },
+ {
+ "epoch": 31.89471384884229,
+ "grad_norm": 0.2062024176120758,
+ "learning_rate": 0.0006,
+ "loss": 3.7439217567443848,
+ "step": 2296
+ },
+ {
+ "epoch": 31.90869375273045,
+ "grad_norm": 0.19886671006679535,
+ "learning_rate": 0.0006,
+ "loss": 3.7583155632019043,
+ "step": 2297
+ },
+ {
+ "epoch": 31.92267365661861,
+ "grad_norm": 0.2079734355211258,
+ "learning_rate": 0.0006,
+ "loss": 3.7251501083374023,
+ "step": 2298
+ },
+ {
+ "epoch": 31.936653560506773,
+ "grad_norm": 0.19710204005241394,
+ "learning_rate": 0.0006,
+ "loss": 3.765778064727783,
+ "step": 2299
+ },
+ {
+ "epoch": 31.950633464394933,
+ "grad_norm": 0.1949392408132553,
+ "learning_rate": 0.0006,
+ "loss": 3.7634787559509277,
+ "step": 2300
+ },
+ {
+ "epoch": 31.964613368283093,
+ "grad_norm": 0.21466250717639923,
+ "learning_rate": 0.0006,
+ "loss": 3.7673215866088867,
+ "step": 2301
+ },
+ {
+ "epoch": 31.978593272171253,
+ "grad_norm": 0.21624267101287842,
+ "learning_rate": 0.0006,
+ "loss": 3.7617220878601074,
+ "step": 2302
+ },
+ {
+ "epoch": 31.992573176059416,
+ "grad_norm": 0.22880229353904724,
+ "learning_rate": 0.0006,
+ "loss": 3.7190351486206055,
+ "step": 2303
+ },
+ {
+ "epoch": 32.0,
+ "grad_norm": 0.23227518796920776,
+ "learning_rate": 0.0006,
+ "loss": 3.740169048309326,
+ "step": 2304
+ },
+ {
+ "epoch": 32.0,
+ "eval_loss": 4.017981052398682,
+ "eval_runtime": 44.4134,
+ "eval_samples_per_second": 54.983,
+ "eval_steps_per_second": 3.445,
+ "step": 2304
+ },
+ {
+ "epoch": 32.01397990388816,
+ "grad_norm": 0.1893721967935562,
+ "learning_rate": 0.0006,
+ "loss": 3.71738338470459,
+ "step": 2305
+ },
+ {
+ "epoch": 32.02795980777632,
+ "grad_norm": 0.23771171271800995,
+ "learning_rate": 0.0006,
+ "loss": 3.71402645111084,
+ "step": 2306
+ },
+ {
+ "epoch": 32.04193971166448,
+ "grad_norm": 0.26343807578086853,
+ "learning_rate": 0.0006,
+ "loss": 3.6926395893096924,
+ "step": 2307
+ },
+ {
+ "epoch": 32.05591961555265,
+ "grad_norm": 0.25092509388923645,
+ "learning_rate": 0.0006,
+ "loss": 3.715243339538574,
+ "step": 2308
+ },
+ {
+ "epoch": 32.0698995194408,
+ "grad_norm": 0.23148509860038757,
+ "learning_rate": 0.0006,
+ "loss": 3.690734386444092,
+ "step": 2309
+ },
+ {
+ "epoch": 32.083879423328966,
+ "grad_norm": 0.23314623534679413,
+ "learning_rate": 0.0006,
+ "loss": 3.6980109214782715,
+ "step": 2310
+ },
+ {
+ "epoch": 32.09785932721712,
+ "grad_norm": 0.2210417091846466,
+ "learning_rate": 0.0006,
+ "loss": 3.7395730018615723,
+ "step": 2311
+ },
+ {
+ "epoch": 32.111839231105286,
+ "grad_norm": 0.20263685286045074,
+ "learning_rate": 0.0006,
+ "loss": 3.678412914276123,
+ "step": 2312
+ },
+ {
+ "epoch": 32.12581913499345,
+ "grad_norm": 0.20412251353263855,
+ "learning_rate": 0.0006,
+ "loss": 3.688762903213501,
+ "step": 2313
+ },
+ {
+ "epoch": 32.139799038881605,
+ "grad_norm": 0.2041679322719574,
+ "learning_rate": 0.0006,
+ "loss": 3.7231521606445312,
+ "step": 2314
+ },
+ {
+ "epoch": 32.15377894276977,
+ "grad_norm": 0.23270174860954285,
+ "learning_rate": 0.0006,
+ "loss": 3.7102620601654053,
+ "step": 2315
+ },
+ {
+ "epoch": 32.16775884665793,
+ "grad_norm": 0.25470519065856934,
+ "learning_rate": 0.0006,
+ "loss": 3.7353053092956543,
+ "step": 2316
+ },
+ {
+ "epoch": 32.18173875054609,
+ "grad_norm": 0.2930106222629547,
+ "learning_rate": 0.0006,
+ "loss": 3.7418713569641113,
+ "step": 2317
+ },
+ {
+ "epoch": 32.19571865443425,
+ "grad_norm": 0.3181219696998596,
+ "learning_rate": 0.0006,
+ "loss": 3.6716184616088867,
+ "step": 2318
+ },
+ {
+ "epoch": 32.20969855832241,
+ "grad_norm": 0.2752978801727295,
+ "learning_rate": 0.0006,
+ "loss": 3.70334792137146,
+ "step": 2319
+ },
+ {
+ "epoch": 32.22367846221057,
+ "grad_norm": 0.28381186723709106,
+ "learning_rate": 0.0006,
+ "loss": 3.719794750213623,
+ "step": 2320
+ },
+ {
+ "epoch": 32.237658366098735,
+ "grad_norm": 0.3287750482559204,
+ "learning_rate": 0.0006,
+ "loss": 3.7363362312316895,
+ "step": 2321
+ },
+ {
+ "epoch": 32.25163826998689,
+ "grad_norm": 0.32669803500175476,
+ "learning_rate": 0.0006,
+ "loss": 3.739394426345825,
+ "step": 2322
+ },
+ {
+ "epoch": 32.265618173875055,
+ "grad_norm": 0.27423885464668274,
+ "learning_rate": 0.0006,
+ "loss": 3.7381205558776855,
+ "step": 2323
+ },
+ {
+ "epoch": 32.27959807776322,
+ "grad_norm": 0.2594660818576813,
+ "learning_rate": 0.0006,
+ "loss": 3.698683738708496,
+ "step": 2324
+ },
+ {
+ "epoch": 32.293577981651374,
+ "grad_norm": 0.2785511016845703,
+ "learning_rate": 0.0006,
+ "loss": 3.688774824142456,
+ "step": 2325
+ },
+ {
+ "epoch": 32.30755788553954,
+ "grad_norm": 0.2690320611000061,
+ "learning_rate": 0.0006,
+ "loss": 3.7209150791168213,
+ "step": 2326
+ },
+ {
+ "epoch": 32.3215377894277,
+ "grad_norm": 0.23331770300865173,
+ "learning_rate": 0.0006,
+ "loss": 3.682931423187256,
+ "step": 2327
+ },
+ {
+ "epoch": 32.33551769331586,
+ "grad_norm": 0.22380802035331726,
+ "learning_rate": 0.0006,
+ "loss": 3.720445156097412,
+ "step": 2328
+ },
+ {
+ "epoch": 32.34949759720402,
+ "grad_norm": 0.2065964937210083,
+ "learning_rate": 0.0006,
+ "loss": 3.705427885055542,
+ "step": 2329
+ },
+ {
+ "epoch": 32.36347750109218,
+ "grad_norm": 0.20701853930950165,
+ "learning_rate": 0.0006,
+ "loss": 3.7078697681427,
+ "step": 2330
+ },
+ {
+ "epoch": 32.37745740498034,
+ "grad_norm": 0.2063559591770172,
+ "learning_rate": 0.0006,
+ "loss": 3.745004653930664,
+ "step": 2331
+ },
+ {
+ "epoch": 32.391437308868504,
+ "grad_norm": 0.19377011060714722,
+ "learning_rate": 0.0006,
+ "loss": 3.713808059692383,
+ "step": 2332
+ },
+ {
+ "epoch": 32.40541721275666,
+ "grad_norm": 0.19260725378990173,
+ "learning_rate": 0.0006,
+ "loss": 3.717043876647949,
+ "step": 2333
+ },
+ {
+ "epoch": 32.419397116644824,
+ "grad_norm": 0.20792821049690247,
+ "learning_rate": 0.0006,
+ "loss": 3.68632173538208,
+ "step": 2334
+ },
+ {
+ "epoch": 32.43337702053299,
+ "grad_norm": 0.22278444468975067,
+ "learning_rate": 0.0006,
+ "loss": 3.7345821857452393,
+ "step": 2335
+ },
+ {
+ "epoch": 32.44735692442114,
+ "grad_norm": 0.22533579170703888,
+ "learning_rate": 0.0006,
+ "loss": 3.7224173545837402,
+ "step": 2336
+ },
+ {
+ "epoch": 32.46133682830931,
+ "grad_norm": 0.20228394865989685,
+ "learning_rate": 0.0006,
+ "loss": 3.748530149459839,
+ "step": 2337
+ },
+ {
+ "epoch": 32.47531673219746,
+ "grad_norm": 0.19944614171981812,
+ "learning_rate": 0.0006,
+ "loss": 3.707085371017456,
+ "step": 2338
+ },
+ {
+ "epoch": 32.489296636085626,
+ "grad_norm": 0.19856145977973938,
+ "learning_rate": 0.0006,
+ "loss": 3.6898274421691895,
+ "step": 2339
+ },
+ {
+ "epoch": 32.50327653997379,
+ "grad_norm": 0.20734605193138123,
+ "learning_rate": 0.0006,
+ "loss": 3.7511792182922363,
+ "step": 2340
+ },
+ {
+ "epoch": 32.517256443861946,
+ "grad_norm": 0.19489309191703796,
+ "learning_rate": 0.0006,
+ "loss": 3.736445426940918,
+ "step": 2341
+ },
+ {
+ "epoch": 32.53123634775011,
+ "grad_norm": 0.18899282813072205,
+ "learning_rate": 0.0006,
+ "loss": 3.727325916290283,
+ "step": 2342
+ },
+ {
+ "epoch": 32.54521625163827,
+ "grad_norm": 0.19670401513576508,
+ "learning_rate": 0.0006,
+ "loss": 3.7326102256774902,
+ "step": 2343
+ },
+ {
+ "epoch": 32.55919615552643,
+ "grad_norm": 0.20061780512332916,
+ "learning_rate": 0.0006,
+ "loss": 3.698716402053833,
+ "step": 2344
+ },
+ {
+ "epoch": 32.57317605941459,
+ "grad_norm": 0.1991659700870514,
+ "learning_rate": 0.0006,
+ "loss": 3.6913180351257324,
+ "step": 2345
+ },
+ {
+ "epoch": 32.58715596330275,
+ "grad_norm": 0.18856225907802582,
+ "learning_rate": 0.0006,
+ "loss": 3.7130961418151855,
+ "step": 2346
+ },
+ {
+ "epoch": 32.60113586719091,
+ "grad_norm": 0.1983972191810608,
+ "learning_rate": 0.0006,
+ "loss": 3.7530808448791504,
+ "step": 2347
+ },
+ {
+ "epoch": 32.615115771079076,
+ "grad_norm": 0.2037997543811798,
+ "learning_rate": 0.0006,
+ "loss": 3.7076587677001953,
+ "step": 2348
+ },
+ {
+ "epoch": 32.62909567496723,
+ "grad_norm": 0.21008458733558655,
+ "learning_rate": 0.0006,
+ "loss": 3.7379021644592285,
+ "step": 2349
+ },
+ {
+ "epoch": 32.643075578855395,
+ "grad_norm": 0.2129313349723816,
+ "learning_rate": 0.0006,
+ "loss": 3.7031373977661133,
+ "step": 2350
+ },
+ {
+ "epoch": 32.65705548274356,
+ "grad_norm": 0.18756245076656342,
+ "learning_rate": 0.0006,
+ "loss": 3.7066285610198975,
+ "step": 2351
+ },
+ {
+ "epoch": 32.671035386631715,
+ "grad_norm": 0.17946591973304749,
+ "learning_rate": 0.0006,
+ "loss": 3.73781681060791,
+ "step": 2352
+ },
+ {
+ "epoch": 32.68501529051988,
+ "grad_norm": 0.18983198702335358,
+ "learning_rate": 0.0006,
+ "loss": 3.718855381011963,
+ "step": 2353
+ },
+ {
+ "epoch": 32.69899519440804,
+ "grad_norm": 0.2080942839384079,
+ "learning_rate": 0.0006,
+ "loss": 3.7111258506774902,
+ "step": 2354
+ },
+ {
+ "epoch": 32.7129750982962,
+ "grad_norm": 0.23633413016796112,
+ "learning_rate": 0.0006,
+ "loss": 3.709766149520874,
+ "step": 2355
+ },
+ {
+ "epoch": 32.72695500218436,
+ "grad_norm": 0.2723144590854645,
+ "learning_rate": 0.0006,
+ "loss": 3.745850086212158,
+ "step": 2356
+ },
+ {
+ "epoch": 32.74093490607252,
+ "grad_norm": 0.29774025082588196,
+ "learning_rate": 0.0006,
+ "loss": 3.733771324157715,
+ "step": 2357
+ },
+ {
+ "epoch": 32.75491480996068,
+ "grad_norm": 0.25976699590682983,
+ "learning_rate": 0.0006,
+ "loss": 3.734194278717041,
+ "step": 2358
+ },
+ {
+ "epoch": 32.768894713848844,
+ "grad_norm": 0.20038039982318878,
+ "learning_rate": 0.0006,
+ "loss": 3.735656261444092,
+ "step": 2359
+ },
+ {
+ "epoch": 32.782874617737,
+ "grad_norm": 0.19745637476444244,
+ "learning_rate": 0.0006,
+ "loss": 3.7335894107818604,
+ "step": 2360
+ },
+ {
+ "epoch": 32.796854521625164,
+ "grad_norm": 0.22022396326065063,
+ "learning_rate": 0.0006,
+ "loss": 3.708998680114746,
+ "step": 2361
+ },
+ {
+ "epoch": 32.81083442551333,
+ "grad_norm": 0.24754752218723297,
+ "learning_rate": 0.0006,
+ "loss": 3.7616286277770996,
+ "step": 2362
+ },
+ {
+ "epoch": 32.824814329401484,
+ "grad_norm": 0.26438358426094055,
+ "learning_rate": 0.0006,
+ "loss": 3.737079620361328,
+ "step": 2363
+ },
+ {
+ "epoch": 32.83879423328965,
+ "grad_norm": 0.2507241666316986,
+ "learning_rate": 0.0006,
+ "loss": 3.708500385284424,
+ "step": 2364
+ },
+ {
+ "epoch": 32.8527741371778,
+ "grad_norm": 0.25688016414642334,
+ "learning_rate": 0.0006,
+ "loss": 3.7389419078826904,
+ "step": 2365
+ },
+ {
+ "epoch": 32.86675404106597,
+ "grad_norm": 0.257447749376297,
+ "learning_rate": 0.0006,
+ "loss": 3.7253334522247314,
+ "step": 2366
+ },
+ {
+ "epoch": 32.88073394495413,
+ "grad_norm": 0.2621215879917145,
+ "learning_rate": 0.0006,
+ "loss": 3.773163318634033,
+ "step": 2367
+ },
+ {
+ "epoch": 32.89471384884229,
+ "grad_norm": 0.23554839193820953,
+ "learning_rate": 0.0006,
+ "loss": 3.7534430027008057,
+ "step": 2368
+ },
+ {
+ "epoch": 32.90869375273045,
+ "grad_norm": 0.19698940217494965,
+ "learning_rate": 0.0006,
+ "loss": 3.7094414234161377,
+ "step": 2369
+ },
+ {
+ "epoch": 32.92267365661861,
+ "grad_norm": 0.21380476653575897,
+ "learning_rate": 0.0006,
+ "loss": 3.7666497230529785,
+ "step": 2370
+ },
+ {
+ "epoch": 32.93665356050677,
+ "grad_norm": 0.20876452326774597,
+ "learning_rate": 0.0006,
+ "loss": 3.7467992305755615,
+ "step": 2371
+ },
+ {
+ "epoch": 32.95063346439493,
+ "grad_norm": 0.1989884227514267,
+ "learning_rate": 0.0006,
+ "loss": 3.749878168106079,
+ "step": 2372
+ },
+ {
+ "epoch": 32.964613368283096,
+ "grad_norm": 0.19089168310165405,
+ "learning_rate": 0.0006,
+ "loss": 3.7211015224456787,
+ "step": 2373
+ },
+ {
+ "epoch": 32.97859327217125,
+ "grad_norm": 0.1962461918592453,
+ "learning_rate": 0.0006,
+ "loss": 3.728684425354004,
+ "step": 2374
+ },
+ {
+ "epoch": 32.992573176059416,
+ "grad_norm": 0.22518110275268555,
+ "learning_rate": 0.0006,
+ "loss": 3.7361507415771484,
+ "step": 2375
+ },
+ {
+ "epoch": 33.0,
+ "grad_norm": 0.26704078912734985,
+ "learning_rate": 0.0006,
+ "loss": 3.7478318214416504,
+ "step": 2376
+ },
+ {
+ "epoch": 33.0,
+ "eval_loss": 4.024221897125244,
+ "eval_runtime": 43.9826,
+ "eval_samples_per_second": 55.522,
+ "eval_steps_per_second": 3.479,
+ "step": 2376
+ },
+ {
+ "epoch": 33.01397990388816,
+ "grad_norm": 0.23387742042541504,
+ "learning_rate": 0.0006,
+ "loss": 3.7043614387512207,
+ "step": 2377
+ },
+ {
+ "epoch": 33.02795980777632,
+ "grad_norm": 0.21334673464298248,
+ "learning_rate": 0.0006,
+ "loss": 3.6714677810668945,
+ "step": 2378
+ },
+ {
+ "epoch": 33.04193971166448,
+ "grad_norm": 0.2608581483364105,
+ "learning_rate": 0.0006,
+ "loss": 3.678460121154785,
+ "step": 2379
+ },
+ {
+ "epoch": 33.05591961555265,
+ "grad_norm": 0.31364381313323975,
+ "learning_rate": 0.0006,
+ "loss": 3.6771793365478516,
+ "step": 2380
+ },
+ {
+ "epoch": 33.0698995194408,
+ "grad_norm": 0.31785935163497925,
+ "learning_rate": 0.0006,
+ "loss": 3.7248926162719727,
+ "step": 2381
+ },
+ {
+ "epoch": 33.083879423328966,
+ "grad_norm": 0.29244646430015564,
+ "learning_rate": 0.0006,
+ "loss": 3.677882194519043,
+ "step": 2382
+ },
+ {
+ "epoch": 33.09785932721712,
+ "grad_norm": 0.23943741619586945,
+ "learning_rate": 0.0006,
+ "loss": 3.7365124225616455,
+ "step": 2383
+ },
+ {
+ "epoch": 33.111839231105286,
+ "grad_norm": 0.2547394931316376,
+ "learning_rate": 0.0006,
+ "loss": 3.7031357288360596,
+ "step": 2384
+ },
+ {
+ "epoch": 33.12581913499345,
+ "grad_norm": 0.2696659564971924,
+ "learning_rate": 0.0006,
+ "loss": 3.6904754638671875,
+ "step": 2385
+ },
+ {
+ "epoch": 33.139799038881605,
+ "grad_norm": 0.24271385371685028,
+ "learning_rate": 0.0006,
+ "loss": 3.7137649059295654,
+ "step": 2386
+ },
+ {
+ "epoch": 33.15377894276977,
+ "grad_norm": 0.23435993492603302,
+ "learning_rate": 0.0006,
+ "loss": 3.707383632659912,
+ "step": 2387
+ },
+ {
+ "epoch": 33.16775884665793,
+ "grad_norm": 0.21428440511226654,
+ "learning_rate": 0.0006,
+ "loss": 3.7148897647857666,
+ "step": 2388
+ },
+ {
+ "epoch": 33.18173875054609,
+ "grad_norm": 0.22420962154865265,
+ "learning_rate": 0.0006,
+ "loss": 3.710111141204834,
+ "step": 2389
+ },
+ {
+ "epoch": 33.19571865443425,
+ "grad_norm": 0.26222777366638184,
+ "learning_rate": 0.0006,
+ "loss": 3.677438259124756,
+ "step": 2390
+ },
+ {
+ "epoch": 33.20969855832241,
+ "grad_norm": 0.29910165071487427,
+ "learning_rate": 0.0006,
+ "loss": 3.6895523071289062,
+ "step": 2391
+ },
+ {
+ "epoch": 33.22367846221057,
+ "grad_norm": 0.2615569531917572,
+ "learning_rate": 0.0006,
+ "loss": 3.7339906692504883,
+ "step": 2392
+ },
+ {
+ "epoch": 33.237658366098735,
+ "grad_norm": 0.23396961390972137,
+ "learning_rate": 0.0006,
+ "loss": 3.7179932594299316,
+ "step": 2393
+ },
+ {
+ "epoch": 33.25163826998689,
+ "grad_norm": 0.24844495952129364,
+ "learning_rate": 0.0006,
+ "loss": 3.7191576957702637,
+ "step": 2394
+ },
+ {
+ "epoch": 33.265618173875055,
+ "grad_norm": 0.2306993454694748,
+ "learning_rate": 0.0006,
+ "loss": 3.7172658443450928,
+ "step": 2395
+ },
+ {
+ "epoch": 33.27959807776322,
+ "grad_norm": 0.24935221672058105,
+ "learning_rate": 0.0006,
+ "loss": 3.6917519569396973,
+ "step": 2396
+ },
+ {
+ "epoch": 33.293577981651374,
+ "grad_norm": 0.2522840201854706,
+ "learning_rate": 0.0006,
+ "loss": 3.7263593673706055,
+ "step": 2397
+ },
+ {
+ "epoch": 33.30755788553954,
+ "grad_norm": 0.26411181688308716,
+ "learning_rate": 0.0006,
+ "loss": 3.6981635093688965,
+ "step": 2398
+ },
+ {
+ "epoch": 33.3215377894277,
+ "grad_norm": 0.22396239638328552,
+ "learning_rate": 0.0006,
+ "loss": 3.713247299194336,
+ "step": 2399
+ },
+ {
+ "epoch": 33.33551769331586,
+ "grad_norm": 0.20579157769680023,
+ "learning_rate": 0.0006,
+ "loss": 3.7058467864990234,
+ "step": 2400
+ },
+ {
+ "epoch": 33.34949759720402,
+ "grad_norm": 0.20103922486305237,
+ "learning_rate": 0.0006,
+ "loss": 3.700924873352051,
+ "step": 2401
+ },
+ {
+ "epoch": 33.36347750109218,
+ "grad_norm": 0.19964663684368134,
+ "learning_rate": 0.0006,
+ "loss": 3.6985437870025635,
+ "step": 2402
+ },
+ {
+ "epoch": 33.37745740498034,
+ "grad_norm": 0.20860575139522552,
+ "learning_rate": 0.0006,
+ "loss": 3.7480058670043945,
+ "step": 2403
+ },
+ {
+ "epoch": 33.391437308868504,
+ "grad_norm": 0.19043605029582977,
+ "learning_rate": 0.0006,
+ "loss": 3.6952016353607178,
+ "step": 2404
+ },
+ {
+ "epoch": 33.40541721275666,
+ "grad_norm": 0.1968909204006195,
+ "learning_rate": 0.0006,
+ "loss": 3.69362735748291,
+ "step": 2405
+ },
+ {
+ "epoch": 33.419397116644824,
+ "grad_norm": 0.23492494225502014,
+ "learning_rate": 0.0006,
+ "loss": 3.707993984222412,
+ "step": 2406
+ },
+ {
+ "epoch": 33.43337702053299,
+ "grad_norm": 0.23970453441143036,
+ "learning_rate": 0.0006,
+ "loss": 3.707731246948242,
+ "step": 2407
+ },
+ {
+ "epoch": 33.44735692442114,
+ "grad_norm": 0.2515844404697418,
+ "learning_rate": 0.0006,
+ "loss": 3.723824977874756,
+ "step": 2408
+ },
+ {
+ "epoch": 33.46133682830931,
+ "grad_norm": 0.2343570590019226,
+ "learning_rate": 0.0006,
+ "loss": 3.7068886756896973,
+ "step": 2409
+ },
+ {
+ "epoch": 33.47531673219746,
+ "grad_norm": 0.23419860005378723,
+ "learning_rate": 0.0006,
+ "loss": 3.6964287757873535,
+ "step": 2410
+ },
+ {
+ "epoch": 33.489296636085626,
+ "grad_norm": 0.21280375123023987,
+ "learning_rate": 0.0006,
+ "loss": 3.7020950317382812,
+ "step": 2411
+ },
+ {
+ "epoch": 33.50327653997379,
+ "grad_norm": 0.2061092108488083,
+ "learning_rate": 0.0006,
+ "loss": 3.750861406326294,
+ "step": 2412
+ },
+ {
+ "epoch": 33.517256443861946,
+ "grad_norm": 0.19693219661712646,
+ "learning_rate": 0.0006,
+ "loss": 3.717020034790039,
+ "step": 2413
+ },
+ {
+ "epoch": 33.53123634775011,
+ "grad_norm": 0.18199551105499268,
+ "learning_rate": 0.0006,
+ "loss": 3.7242612838745117,
+ "step": 2414
+ },
+ {
+ "epoch": 33.54521625163827,
+ "grad_norm": 0.20131248235702515,
+ "learning_rate": 0.0006,
+ "loss": 3.6758954524993896,
+ "step": 2415
+ },
+ {
+ "epoch": 33.55919615552643,
+ "grad_norm": 0.2219412475824356,
+ "learning_rate": 0.0006,
+ "loss": 3.707927703857422,
+ "step": 2416
+ },
+ {
+ "epoch": 33.57317605941459,
+ "grad_norm": 0.22541435062885284,
+ "learning_rate": 0.0006,
+ "loss": 3.696967601776123,
+ "step": 2417
+ },
+ {
+ "epoch": 33.58715596330275,
+ "grad_norm": 0.20367272198200226,
+ "learning_rate": 0.0006,
+ "loss": 3.730795383453369,
+ "step": 2418
+ },
+ {
+ "epoch": 33.60113586719091,
+ "grad_norm": 0.20861074328422546,
+ "learning_rate": 0.0006,
+ "loss": 3.707066535949707,
+ "step": 2419
+ },
+ {
+ "epoch": 33.615115771079076,
+ "grad_norm": 0.20570263266563416,
+ "learning_rate": 0.0006,
+ "loss": 3.730602502822876,
+ "step": 2420
+ },
+ {
+ "epoch": 33.62909567496723,
+ "grad_norm": 0.21318231523036957,
+ "learning_rate": 0.0006,
+ "loss": 3.7073278427124023,
+ "step": 2421
+ },
+ {
+ "epoch": 33.643075578855395,
+ "grad_norm": 0.2142639458179474,
+ "learning_rate": 0.0006,
+ "loss": 3.718470573425293,
+ "step": 2422
+ },
+ {
+ "epoch": 33.65705548274356,
+ "grad_norm": 0.19620704650878906,
+ "learning_rate": 0.0006,
+ "loss": 3.716036319732666,
+ "step": 2423
+ },
+ {
+ "epoch": 33.671035386631715,
+ "grad_norm": 0.19308267533779144,
+ "learning_rate": 0.0006,
+ "loss": 3.734597682952881,
+ "step": 2424
+ },
+ {
+ "epoch": 33.68501529051988,
+ "grad_norm": 0.19453389942646027,
+ "learning_rate": 0.0006,
+ "loss": 3.726262092590332,
+ "step": 2425
+ },
+ {
+ "epoch": 33.69899519440804,
+ "grad_norm": 0.20405639708042145,
+ "learning_rate": 0.0006,
+ "loss": 3.678340435028076,
+ "step": 2426
+ },
+ {
+ "epoch": 33.7129750982962,
+ "grad_norm": 0.19525611400604248,
+ "learning_rate": 0.0006,
+ "loss": 3.723907470703125,
+ "step": 2427
+ },
+ {
+ "epoch": 33.72695500218436,
+ "grad_norm": 0.19390441477298737,
+ "learning_rate": 0.0006,
+ "loss": 3.707897186279297,
+ "step": 2428
+ },
+ {
+ "epoch": 33.74093490607252,
+ "grad_norm": 0.2032899558544159,
+ "learning_rate": 0.0006,
+ "loss": 3.735041618347168,
+ "step": 2429
+ },
+ {
+ "epoch": 33.75491480996068,
+ "grad_norm": 0.2134784460067749,
+ "learning_rate": 0.0006,
+ "loss": 3.674978017807007,
+ "step": 2430
+ },
+ {
+ "epoch": 33.768894713848844,
+ "grad_norm": 0.24691973626613617,
+ "learning_rate": 0.0006,
+ "loss": 3.7028675079345703,
+ "step": 2431
+ },
+ {
+ "epoch": 33.782874617737,
+ "grad_norm": 0.2272702008485794,
+ "learning_rate": 0.0006,
+ "loss": 3.7277941703796387,
+ "step": 2432
+ },
+ {
+ "epoch": 33.796854521625164,
+ "grad_norm": 0.20052100718021393,
+ "learning_rate": 0.0006,
+ "loss": 3.7146830558776855,
+ "step": 2433
+ },
+ {
+ "epoch": 33.81083442551333,
+ "grad_norm": 0.1958577185869217,
+ "learning_rate": 0.0006,
+ "loss": 3.6936864852905273,
+ "step": 2434
+ },
+ {
+ "epoch": 33.824814329401484,
+ "grad_norm": 0.191860631108284,
+ "learning_rate": 0.0006,
+ "loss": 3.7451858520507812,
+ "step": 2435
+ },
+ {
+ "epoch": 33.83879423328965,
+ "grad_norm": 0.20961424708366394,
+ "learning_rate": 0.0006,
+ "loss": 3.722400665283203,
+ "step": 2436
+ },
+ {
+ "epoch": 33.8527741371778,
+ "grad_norm": 0.19784288108348846,
+ "learning_rate": 0.0006,
+ "loss": 3.712474822998047,
+ "step": 2437
+ },
+ {
+ "epoch": 33.86675404106597,
+ "grad_norm": 0.18645426630973816,
+ "learning_rate": 0.0006,
+ "loss": 3.7054500579833984,
+ "step": 2438
+ },
+ {
+ "epoch": 33.88073394495413,
+ "grad_norm": 0.19622360169887543,
+ "learning_rate": 0.0006,
+ "loss": 3.7010550498962402,
+ "step": 2439
+ },
+ {
+ "epoch": 33.89471384884229,
+ "grad_norm": 0.20283745229244232,
+ "learning_rate": 0.0006,
+ "loss": 3.7252519130706787,
+ "step": 2440
+ },
+ {
+ "epoch": 33.90869375273045,
+ "grad_norm": 0.18671709299087524,
+ "learning_rate": 0.0006,
+ "loss": 3.6932945251464844,
+ "step": 2441
+ },
+ {
+ "epoch": 33.92267365661861,
+ "grad_norm": 0.17953112721443176,
+ "learning_rate": 0.0006,
+ "loss": 3.7453854084014893,
+ "step": 2442
+ },
+ {
+ "epoch": 33.93665356050677,
+ "grad_norm": 0.1945437788963318,
+ "learning_rate": 0.0006,
+ "loss": 3.722881317138672,
+ "step": 2443
+ },
+ {
+ "epoch": 33.95063346439493,
+ "grad_norm": 0.18414495885372162,
+ "learning_rate": 0.0006,
+ "loss": 3.7402591705322266,
+ "step": 2444
+ },
+ {
+ "epoch": 33.964613368283096,
+ "grad_norm": 0.1936541497707367,
+ "learning_rate": 0.0006,
+ "loss": 3.720057964324951,
+ "step": 2445
+ },
+ {
+ "epoch": 33.97859327217125,
+ "grad_norm": 0.20177008211612701,
+ "learning_rate": 0.0006,
+ "loss": 3.6983802318573,
+ "step": 2446
+ },
+ {
+ "epoch": 33.992573176059416,
+ "grad_norm": 0.18977557122707367,
+ "learning_rate": 0.0006,
+ "loss": 3.7202203273773193,
+ "step": 2447
+ },
+ {
+ "epoch": 34.0,
+ "grad_norm": 0.220163956284523,
+ "learning_rate": 0.0006,
+ "loss": 3.72540283203125,
+ "step": 2448
+ },
+ {
+ "epoch": 34.0,
+ "eval_loss": 4.009343147277832,
+ "eval_runtime": 44.1825,
+ "eval_samples_per_second": 55.271,
+ "eval_steps_per_second": 3.463,
+ "step": 2448
+ },
+ {
+ "epoch": 34.01397990388816,
+ "grad_norm": 0.19843372702598572,
+ "learning_rate": 0.0006,
+ "loss": 3.664431571960449,
+ "step": 2449
+ },
+ {
+ "epoch": 34.02795980777632,
+ "grad_norm": 0.20413008332252502,
+ "learning_rate": 0.0006,
+ "loss": 3.699094533920288,
+ "step": 2450
+ },
+ {
+ "epoch": 34.04193971166448,
+ "grad_norm": 0.22086848318576813,
+ "learning_rate": 0.0006,
+ "loss": 3.681825637817383,
+ "step": 2451
+ },
+ {
+ "epoch": 34.05591961555265,
+ "grad_norm": 0.20753061771392822,
+ "learning_rate": 0.0006,
+ "loss": 3.677116870880127,
+ "step": 2452
+ },
+ {
+ "epoch": 34.0698995194408,
+ "grad_norm": 0.21835783123970032,
+ "learning_rate": 0.0006,
+ "loss": 3.7079062461853027,
+ "step": 2453
+ },
+ {
+ "epoch": 34.083879423328966,
+ "grad_norm": 0.2244357019662857,
+ "learning_rate": 0.0006,
+ "loss": 3.69844913482666,
+ "step": 2454
+ },
+ {
+ "epoch": 34.09785932721712,
+ "grad_norm": 0.2238784283399582,
+ "learning_rate": 0.0006,
+ "loss": 3.6835570335388184,
+ "step": 2455
+ },
+ {
+ "epoch": 34.111839231105286,
+ "grad_norm": 0.24816176295280457,
+ "learning_rate": 0.0006,
+ "loss": 3.6832966804504395,
+ "step": 2456
+ },
+ {
+ "epoch": 34.12581913499345,
+ "grad_norm": 0.2445257306098938,
+ "learning_rate": 0.0006,
+ "loss": 3.7190022468566895,
+ "step": 2457
+ },
+ {
+ "epoch": 34.139799038881605,
+ "grad_norm": 0.24510814249515533,
+ "learning_rate": 0.0006,
+ "loss": 3.678098201751709,
+ "step": 2458
+ },
+ {
+ "epoch": 34.15377894276977,
+ "grad_norm": 0.2550753653049469,
+ "learning_rate": 0.0006,
+ "loss": 3.69335675239563,
+ "step": 2459
+ },
+ {
+ "epoch": 34.16775884665793,
+ "grad_norm": 0.2435017228126526,
+ "learning_rate": 0.0006,
+ "loss": 3.70463228225708,
+ "step": 2460
+ },
+ {
+ "epoch": 34.18173875054609,
+ "grad_norm": 0.26441144943237305,
+ "learning_rate": 0.0006,
+ "loss": 3.6757068634033203,
+ "step": 2461
+ },
+ {
+ "epoch": 34.19571865443425,
+ "grad_norm": 0.2737993001937866,
+ "learning_rate": 0.0006,
+ "loss": 3.6510863304138184,
+ "step": 2462
+ },
+ {
+ "epoch": 34.20969855832241,
+ "grad_norm": 0.24625736474990845,
+ "learning_rate": 0.0006,
+ "loss": 3.707612991333008,
+ "step": 2463
+ },
+ {
+ "epoch": 34.22367846221057,
+ "grad_norm": 0.22222039103507996,
+ "learning_rate": 0.0006,
+ "loss": 3.7145133018493652,
+ "step": 2464
+ },
+ {
+ "epoch": 34.237658366098735,
+ "grad_norm": 0.2173531949520111,
+ "learning_rate": 0.0006,
+ "loss": 3.685112476348877,
+ "step": 2465
+ },
+ {
+ "epoch": 34.25163826998689,
+ "grad_norm": 0.23102006316184998,
+ "learning_rate": 0.0006,
+ "loss": 3.6742453575134277,
+ "step": 2466
+ },
+ {
+ "epoch": 34.265618173875055,
+ "grad_norm": 0.22287188470363617,
+ "learning_rate": 0.0006,
+ "loss": 3.7030534744262695,
+ "step": 2467
+ },
+ {
+ "epoch": 34.27959807776322,
+ "grad_norm": 0.20377251505851746,
+ "learning_rate": 0.0006,
+ "loss": 3.6866259574890137,
+ "step": 2468
+ },
+ {
+ "epoch": 34.293577981651374,
+ "grad_norm": 0.19867438077926636,
+ "learning_rate": 0.0006,
+ "loss": 3.70395565032959,
+ "step": 2469
+ },
+ {
+ "epoch": 34.30755788553954,
+ "grad_norm": 0.2014918178319931,
+ "learning_rate": 0.0006,
+ "loss": 3.660795211791992,
+ "step": 2470
+ },
+ {
+ "epoch": 34.3215377894277,
+ "grad_norm": 0.20981402695178986,
+ "learning_rate": 0.0006,
+ "loss": 3.7045323848724365,
+ "step": 2471
+ },
+ {
+ "epoch": 34.33551769331586,
+ "grad_norm": 0.20968124270439148,
+ "learning_rate": 0.0006,
+ "loss": 3.7113170623779297,
+ "step": 2472
+ },
+ {
+ "epoch": 34.34949759720402,
+ "grad_norm": 0.2214043140411377,
+ "learning_rate": 0.0006,
+ "loss": 3.7330074310302734,
+ "step": 2473
+ },
+ {
+ "epoch": 34.36347750109218,
+ "grad_norm": 0.21231533586978912,
+ "learning_rate": 0.0006,
+ "loss": 3.6706933975219727,
+ "step": 2474
+ },
+ {
+ "epoch": 34.37745740498034,
+ "grad_norm": 0.2022094875574112,
+ "learning_rate": 0.0006,
+ "loss": 3.7230453491210938,
+ "step": 2475
+ },
+ {
+ "epoch": 34.391437308868504,
+ "grad_norm": 0.2281145304441452,
+ "learning_rate": 0.0006,
+ "loss": 3.7197465896606445,
+ "step": 2476
+ },
+ {
+ "epoch": 34.40541721275666,
+ "grad_norm": 0.2147362381219864,
+ "learning_rate": 0.0006,
+ "loss": 3.7092337608337402,
+ "step": 2477
+ },
+ {
+ "epoch": 34.419397116644824,
+ "grad_norm": 0.19984203577041626,
+ "learning_rate": 0.0006,
+ "loss": 3.6939496994018555,
+ "step": 2478
+ },
+ {
+ "epoch": 34.43337702053299,
+ "grad_norm": 0.21088480949401855,
+ "learning_rate": 0.0006,
+ "loss": 3.6942667961120605,
+ "step": 2479
+ },
+ {
+ "epoch": 34.44735692442114,
+ "grad_norm": 0.20444616675376892,
+ "learning_rate": 0.0006,
+ "loss": 3.718186378479004,
+ "step": 2480
+ },
+ {
+ "epoch": 34.46133682830931,
+ "grad_norm": 0.19133952260017395,
+ "learning_rate": 0.0006,
+ "loss": 3.697197437286377,
+ "step": 2481
+ },
+ {
+ "epoch": 34.47531673219746,
+ "grad_norm": 0.2219255417585373,
+ "learning_rate": 0.0006,
+ "loss": 3.684386730194092,
+ "step": 2482
+ },
+ {
+ "epoch": 34.489296636085626,
+ "grad_norm": 0.2480643391609192,
+ "learning_rate": 0.0006,
+ "loss": 3.6656622886657715,
+ "step": 2483
+ },
+ {
+ "epoch": 34.50327653997379,
+ "grad_norm": 0.22907346487045288,
+ "learning_rate": 0.0006,
+ "loss": 3.741391897201538,
+ "step": 2484
+ },
+ {
+ "epoch": 34.517256443861946,
+ "grad_norm": 0.20277173817157745,
+ "learning_rate": 0.0006,
+ "loss": 3.7062582969665527,
+ "step": 2485
+ },
+ {
+ "epoch": 34.53123634775011,
+ "grad_norm": 0.21411100029945374,
+ "learning_rate": 0.0006,
+ "loss": 3.691784381866455,
+ "step": 2486
+ },
+ {
+ "epoch": 34.54521625163827,
+ "grad_norm": 0.20261600613594055,
+ "learning_rate": 0.0006,
+ "loss": 3.6855502128601074,
+ "step": 2487
+ },
+ {
+ "epoch": 34.55919615552643,
+ "grad_norm": 0.23913109302520752,
+ "learning_rate": 0.0006,
+ "loss": 3.670754909515381,
+ "step": 2488
+ },
+ {
+ "epoch": 34.57317605941459,
+ "grad_norm": 0.24427077174186707,
+ "learning_rate": 0.0006,
+ "loss": 3.700611114501953,
+ "step": 2489
+ },
+ {
+ "epoch": 34.58715596330275,
+ "grad_norm": 0.20305761694908142,
+ "learning_rate": 0.0006,
+ "loss": 3.7284226417541504,
+ "step": 2490
+ },
+ {
+ "epoch": 34.60113586719091,
+ "grad_norm": 0.20398905873298645,
+ "learning_rate": 0.0006,
+ "loss": 3.6860880851745605,
+ "step": 2491
+ },
+ {
+ "epoch": 34.615115771079076,
+ "grad_norm": 0.21016651391983032,
+ "learning_rate": 0.0006,
+ "loss": 3.7366015911102295,
+ "step": 2492
+ },
+ {
+ "epoch": 34.62909567496723,
+ "grad_norm": 0.22279402613639832,
+ "learning_rate": 0.0006,
+ "loss": 3.7024295330047607,
+ "step": 2493
+ },
+ {
+ "epoch": 34.643075578855395,
+ "grad_norm": 0.25080347061157227,
+ "learning_rate": 0.0006,
+ "loss": 3.68355655670166,
+ "step": 2494
+ },
+ {
+ "epoch": 34.65705548274356,
+ "grad_norm": 0.2702971398830414,
+ "learning_rate": 0.0006,
+ "loss": 3.7400612831115723,
+ "step": 2495
+ },
+ {
+ "epoch": 34.671035386631715,
+ "grad_norm": 0.299398273229599,
+ "learning_rate": 0.0006,
+ "loss": 3.7160325050354004,
+ "step": 2496
+ },
+ {
+ "epoch": 34.68501529051988,
+ "grad_norm": 0.29151082038879395,
+ "learning_rate": 0.0006,
+ "loss": 3.7124147415161133,
+ "step": 2497
+ },
+ {
+ "epoch": 34.69899519440804,
+ "grad_norm": 0.23828288912773132,
+ "learning_rate": 0.0006,
+ "loss": 3.7181267738342285,
+ "step": 2498
+ },
+ {
+ "epoch": 34.7129750982962,
+ "grad_norm": 0.21776588261127472,
+ "learning_rate": 0.0006,
+ "loss": 3.6811792850494385,
+ "step": 2499
+ },
+ {
+ "epoch": 34.72695500218436,
+ "grad_norm": 0.2318469136953354,
+ "learning_rate": 0.0006,
+ "loss": 3.698467254638672,
+ "step": 2500
+ },
+ {
+ "epoch": 34.74093490607252,
+ "grad_norm": 0.22341546416282654,
+ "learning_rate": 0.0006,
+ "loss": 3.7406411170959473,
+ "step": 2501
+ },
+ {
+ "epoch": 34.75491480996068,
+ "grad_norm": 0.20676901936531067,
+ "learning_rate": 0.0006,
+ "loss": 3.6914243698120117,
+ "step": 2502
+ },
+ {
+ "epoch": 34.768894713848844,
+ "grad_norm": 0.20459024608135223,
+ "learning_rate": 0.0006,
+ "loss": 3.713369607925415,
+ "step": 2503
+ },
+ {
+ "epoch": 34.782874617737,
+ "grad_norm": 0.22369320690631866,
+ "learning_rate": 0.0006,
+ "loss": 3.697587490081787,
+ "step": 2504
+ },
+ {
+ "epoch": 34.796854521625164,
+ "grad_norm": 0.2393338829278946,
+ "learning_rate": 0.0006,
+ "loss": 3.7171854972839355,
+ "step": 2505
+ },
+ {
+ "epoch": 34.81083442551333,
+ "grad_norm": 0.23756961524486542,
+ "learning_rate": 0.0006,
+ "loss": 3.6969614028930664,
+ "step": 2506
+ },
+ {
+ "epoch": 34.824814329401484,
+ "grad_norm": 0.22761376202106476,
+ "learning_rate": 0.0006,
+ "loss": 3.722501754760742,
+ "step": 2507
+ },
+ {
+ "epoch": 34.83879423328965,
+ "grad_norm": 0.23564888536930084,
+ "learning_rate": 0.0006,
+ "loss": 3.714003086090088,
+ "step": 2508
+ },
+ {
+ "epoch": 34.8527741371778,
+ "grad_norm": 0.22197313606739044,
+ "learning_rate": 0.0006,
+ "loss": 3.7107110023498535,
+ "step": 2509
+ },
+ {
+ "epoch": 34.86675404106597,
+ "grad_norm": 0.20199328660964966,
+ "learning_rate": 0.0006,
+ "loss": 3.7167551517486572,
+ "step": 2510
+ },
+ {
+ "epoch": 34.88073394495413,
+ "grad_norm": 0.19569700956344604,
+ "learning_rate": 0.0006,
+ "loss": 3.679098129272461,
+ "step": 2511
+ },
+ {
+ "epoch": 34.89471384884229,
+ "grad_norm": 0.21320141851902008,
+ "learning_rate": 0.0006,
+ "loss": 3.733187675476074,
+ "step": 2512
+ },
+ {
+ "epoch": 34.90869375273045,
+ "grad_norm": 0.20074625313282013,
+ "learning_rate": 0.0006,
+ "loss": 3.713339328765869,
+ "step": 2513
+ },
+ {
+ "epoch": 34.92267365661861,
+ "grad_norm": 0.20249252021312714,
+ "learning_rate": 0.0006,
+ "loss": 3.680785655975342,
+ "step": 2514
+ },
+ {
+ "epoch": 34.93665356050677,
+ "grad_norm": 0.22165577113628387,
+ "learning_rate": 0.0006,
+ "loss": 3.696131706237793,
+ "step": 2515
+ },
+ {
+ "epoch": 34.95063346439493,
+ "grad_norm": 0.20769749581813812,
+ "learning_rate": 0.0006,
+ "loss": 3.6910316944122314,
+ "step": 2516
+ },
+ {
+ "epoch": 34.964613368283096,
+ "grad_norm": 0.20857223868370056,
+ "learning_rate": 0.0006,
+ "loss": 3.7327451705932617,
+ "step": 2517
+ },
+ {
+ "epoch": 34.97859327217125,
+ "grad_norm": 0.19155766069889069,
+ "learning_rate": 0.0006,
+ "loss": 3.705609083175659,
+ "step": 2518
+ },
+ {
+ "epoch": 34.992573176059416,
+ "grad_norm": 0.17890529334545135,
+ "learning_rate": 0.0006,
+ "loss": 3.6844797134399414,
+ "step": 2519
+ },
+ {
+ "epoch": 35.0,
+ "grad_norm": 0.2053528130054474,
+ "learning_rate": 0.0006,
+ "loss": 3.6942501068115234,
+ "step": 2520
+ },
+ {
+ "epoch": 35.0,
+ "eval_loss": 3.998469591140747,
+ "eval_runtime": 43.9147,
+ "eval_samples_per_second": 55.608,
+ "eval_steps_per_second": 3.484,
+ "step": 2520
+ },
+ {
+ "epoch": 35.01397990388816,
+ "grad_norm": 0.2288869470357895,
+ "learning_rate": 0.0006,
+ "loss": 3.6966426372528076,
+ "step": 2521
+ },
+ {
+ "epoch": 35.02795980777632,
+ "grad_norm": 0.25702035427093506,
+ "learning_rate": 0.0006,
+ "loss": 3.6622562408447266,
+ "step": 2522
+ },
+ {
+ "epoch": 35.04193971166448,
+ "grad_norm": 0.254422128200531,
+ "learning_rate": 0.0006,
+ "loss": 3.690046548843384,
+ "step": 2523
+ },
+ {
+ "epoch": 35.05591961555265,
+ "grad_norm": 0.24177077412605286,
+ "learning_rate": 0.0006,
+ "loss": 3.685335874557495,
+ "step": 2524
+ },
+ {
+ "epoch": 35.0698995194408,
+ "grad_norm": 0.23959586024284363,
+ "learning_rate": 0.0006,
+ "loss": 3.6534650325775146,
+ "step": 2525
+ },
+ {
+ "epoch": 35.083879423328966,
+ "grad_norm": 0.23474839329719543,
+ "learning_rate": 0.0006,
+ "loss": 3.7092814445495605,
+ "step": 2526
+ },
+ {
+ "epoch": 35.09785932721712,
+ "grad_norm": 0.23240867257118225,
+ "learning_rate": 0.0006,
+ "loss": 3.6819097995758057,
+ "step": 2527
+ },
+ {
+ "epoch": 35.111839231105286,
+ "grad_norm": 0.26267048716545105,
+ "learning_rate": 0.0006,
+ "loss": 3.6566696166992188,
+ "step": 2528
+ },
+ {
+ "epoch": 35.12581913499345,
+ "grad_norm": 0.27070754766464233,
+ "learning_rate": 0.0006,
+ "loss": 3.676304340362549,
+ "step": 2529
+ },
+ {
+ "epoch": 35.139799038881605,
+ "grad_norm": 0.25297826528549194,
+ "learning_rate": 0.0006,
+ "loss": 3.65259051322937,
+ "step": 2530
+ },
+ {
+ "epoch": 35.15377894276977,
+ "grad_norm": 0.22776272892951965,
+ "learning_rate": 0.0006,
+ "loss": 3.6813838481903076,
+ "step": 2531
+ },
+ {
+ "epoch": 35.16775884665793,
+ "grad_norm": 0.2288261204957962,
+ "learning_rate": 0.0006,
+ "loss": 3.6916379928588867,
+ "step": 2532
+ },
+ {
+ "epoch": 35.18173875054609,
+ "grad_norm": 0.20445892214775085,
+ "learning_rate": 0.0006,
+ "loss": 3.6550145149230957,
+ "step": 2533
+ },
+ {
+ "epoch": 35.19571865443425,
+ "grad_norm": 0.20298904180526733,
+ "learning_rate": 0.0006,
+ "loss": 3.704042434692383,
+ "step": 2534
+ },
+ {
+ "epoch": 35.20969855832241,
+ "grad_norm": 0.2264423668384552,
+ "learning_rate": 0.0006,
+ "loss": 3.646308183670044,
+ "step": 2535
+ },
+ {
+ "epoch": 35.22367846221057,
+ "grad_norm": 0.21537378430366516,
+ "learning_rate": 0.0006,
+ "loss": 3.686048984527588,
+ "step": 2536
+ },
+ {
+ "epoch": 35.237658366098735,
+ "grad_norm": 0.19820059835910797,
+ "learning_rate": 0.0006,
+ "loss": 3.6993050575256348,
+ "step": 2537
+ },
+ {
+ "epoch": 35.25163826998689,
+ "grad_norm": 0.19485290348529816,
+ "learning_rate": 0.0006,
+ "loss": 3.6507070064544678,
+ "step": 2538
+ },
+ {
+ "epoch": 35.265618173875055,
+ "grad_norm": 0.21234364807605743,
+ "learning_rate": 0.0006,
+ "loss": 3.6913719177246094,
+ "step": 2539
+ },
+ {
+ "epoch": 35.27959807776322,
+ "grad_norm": 0.19834300875663757,
+ "learning_rate": 0.0006,
+ "loss": 3.6793041229248047,
+ "step": 2540
+ },
+ {
+ "epoch": 35.293577981651374,
+ "grad_norm": 0.1969013512134552,
+ "learning_rate": 0.0006,
+ "loss": 3.7063517570495605,
+ "step": 2541
+ },
+ {
+ "epoch": 35.30755788553954,
+ "grad_norm": 0.196136936545372,
+ "learning_rate": 0.0006,
+ "loss": 3.679825782775879,
+ "step": 2542
+ },
+ {
+ "epoch": 35.3215377894277,
+ "grad_norm": 0.20465479791164398,
+ "learning_rate": 0.0006,
+ "loss": 3.698906421661377,
+ "step": 2543
+ },
+ {
+ "epoch": 35.33551769331586,
+ "grad_norm": 0.204293355345726,
+ "learning_rate": 0.0006,
+ "loss": 3.728549003601074,
+ "step": 2544
+ },
+ {
+ "epoch": 35.34949759720402,
+ "grad_norm": 0.18861903250217438,
+ "learning_rate": 0.0006,
+ "loss": 3.687018632888794,
+ "step": 2545
+ },
+ {
+ "epoch": 35.36347750109218,
+ "grad_norm": 0.19066226482391357,
+ "learning_rate": 0.0006,
+ "loss": 3.667919158935547,
+ "step": 2546
+ },
+ {
+ "epoch": 35.37745740498034,
+ "grad_norm": 0.19985736906528473,
+ "learning_rate": 0.0006,
+ "loss": 3.6697773933410645,
+ "step": 2547
+ },
+ {
+ "epoch": 35.391437308868504,
+ "grad_norm": 0.20669348537921906,
+ "learning_rate": 0.0006,
+ "loss": 3.6718077659606934,
+ "step": 2548
+ },
+ {
+ "epoch": 35.40541721275666,
+ "grad_norm": 0.22164477407932281,
+ "learning_rate": 0.0006,
+ "loss": 3.692106246948242,
+ "step": 2549
+ },
+ {
+ "epoch": 35.419397116644824,
+ "grad_norm": 0.20884688198566437,
+ "learning_rate": 0.0006,
+ "loss": 3.714324712753296,
+ "step": 2550
+ },
+ {
+ "epoch": 35.43337702053299,
+ "grad_norm": 0.21811005473136902,
+ "learning_rate": 0.0006,
+ "loss": 3.678694725036621,
+ "step": 2551
+ },
+ {
+ "epoch": 35.44735692442114,
+ "grad_norm": 0.2427632063627243,
+ "learning_rate": 0.0006,
+ "loss": 3.6584935188293457,
+ "step": 2552
+ },
+ {
+ "epoch": 35.46133682830931,
+ "grad_norm": 0.2584928572177887,
+ "learning_rate": 0.0006,
+ "loss": 3.694148063659668,
+ "step": 2553
+ },
+ {
+ "epoch": 35.47531673219746,
+ "grad_norm": 0.2594548761844635,
+ "learning_rate": 0.0006,
+ "loss": 3.690629005432129,
+ "step": 2554
+ },
+ {
+ "epoch": 35.489296636085626,
+ "grad_norm": 0.2521844208240509,
+ "learning_rate": 0.0006,
+ "loss": 3.6949915885925293,
+ "step": 2555
+ },
+ {
+ "epoch": 35.50327653997379,
+ "grad_norm": 0.2284533679485321,
+ "learning_rate": 0.0006,
+ "loss": 3.6822848320007324,
+ "step": 2556
+ },
+ {
+ "epoch": 35.517256443861946,
+ "grad_norm": 0.2350241094827652,
+ "learning_rate": 0.0006,
+ "loss": 3.6841659545898438,
+ "step": 2557
+ },
+ {
+ "epoch": 35.53123634775011,
+ "grad_norm": 0.22496885061264038,
+ "learning_rate": 0.0006,
+ "loss": 3.676447629928589,
+ "step": 2558
+ },
+ {
+ "epoch": 35.54521625163827,
+ "grad_norm": 0.24326276779174805,
+ "learning_rate": 0.0006,
+ "loss": 3.681678533554077,
+ "step": 2559
+ },
+ {
+ "epoch": 35.55919615552643,
+ "grad_norm": 0.26298362016677856,
+ "learning_rate": 0.0006,
+ "loss": 3.6877617835998535,
+ "step": 2560
+ },
+ {
+ "epoch": 35.57317605941459,
+ "grad_norm": 0.2507239282131195,
+ "learning_rate": 0.0006,
+ "loss": 3.7089176177978516,
+ "step": 2561
+ },
+ {
+ "epoch": 35.58715596330275,
+ "grad_norm": 0.2276458442211151,
+ "learning_rate": 0.0006,
+ "loss": 3.705570936203003,
+ "step": 2562
+ },
+ {
+ "epoch": 35.60113586719091,
+ "grad_norm": 0.23317085206508636,
+ "learning_rate": 0.0006,
+ "loss": 3.6772396564483643,
+ "step": 2563
+ },
+ {
+ "epoch": 35.615115771079076,
+ "grad_norm": 0.23301710188388824,
+ "learning_rate": 0.0006,
+ "loss": 3.694855213165283,
+ "step": 2564
+ },
+ {
+ "epoch": 35.62909567496723,
+ "grad_norm": 0.2170179933309555,
+ "learning_rate": 0.0006,
+ "loss": 3.7095537185668945,
+ "step": 2565
+ },
+ {
+ "epoch": 35.643075578855395,
+ "grad_norm": 0.21211965382099152,
+ "learning_rate": 0.0006,
+ "loss": 3.670109272003174,
+ "step": 2566
+ },
+ {
+ "epoch": 35.65705548274356,
+ "grad_norm": 0.21052585542201996,
+ "learning_rate": 0.0006,
+ "loss": 3.6576027870178223,
+ "step": 2567
+ },
+ {
+ "epoch": 35.671035386631715,
+ "grad_norm": 0.21556039154529572,
+ "learning_rate": 0.0006,
+ "loss": 3.6870639324188232,
+ "step": 2568
+ },
+ {
+ "epoch": 35.68501529051988,
+ "grad_norm": 0.2246469408273697,
+ "learning_rate": 0.0006,
+ "loss": 3.675652503967285,
+ "step": 2569
+ },
+ {
+ "epoch": 35.69899519440804,
+ "grad_norm": 0.21891754865646362,
+ "learning_rate": 0.0006,
+ "loss": 3.692298650741577,
+ "step": 2570
+ },
+ {
+ "epoch": 35.7129750982962,
+ "grad_norm": 0.18774104118347168,
+ "learning_rate": 0.0006,
+ "loss": 3.681035041809082,
+ "step": 2571
+ },
+ {
+ "epoch": 35.72695500218436,
+ "grad_norm": 0.19461573660373688,
+ "learning_rate": 0.0006,
+ "loss": 3.7007932662963867,
+ "step": 2572
+ },
+ {
+ "epoch": 35.74093490607252,
+ "grad_norm": 0.25579094886779785,
+ "learning_rate": 0.0006,
+ "loss": 3.724409580230713,
+ "step": 2573
+ },
+ {
+ "epoch": 35.75491480996068,
+ "grad_norm": 0.27635645866394043,
+ "learning_rate": 0.0006,
+ "loss": 3.68107271194458,
+ "step": 2574
+ },
+ {
+ "epoch": 35.768894713848844,
+ "grad_norm": 0.2233380675315857,
+ "learning_rate": 0.0006,
+ "loss": 3.7123913764953613,
+ "step": 2575
+ },
+ {
+ "epoch": 35.782874617737,
+ "grad_norm": 0.19383835792541504,
+ "learning_rate": 0.0006,
+ "loss": 3.6948328018188477,
+ "step": 2576
+ },
+ {
+ "epoch": 35.796854521625164,
+ "grad_norm": 0.18138426542282104,
+ "learning_rate": 0.0006,
+ "loss": 3.6837103366851807,
+ "step": 2577
+ },
+ {
+ "epoch": 35.81083442551333,
+ "grad_norm": 0.18680135905742645,
+ "learning_rate": 0.0006,
+ "loss": 3.7106502056121826,
+ "step": 2578
+ },
+ {
+ "epoch": 35.824814329401484,
+ "grad_norm": 0.19226312637329102,
+ "learning_rate": 0.0006,
+ "loss": 3.69488787651062,
+ "step": 2579
+ },
+ {
+ "epoch": 35.83879423328965,
+ "grad_norm": 0.19224657118320465,
+ "learning_rate": 0.0006,
+ "loss": 3.7103662490844727,
+ "step": 2580
+ },
+ {
+ "epoch": 35.8527741371778,
+ "grad_norm": 0.18991880118846893,
+ "learning_rate": 0.0006,
+ "loss": 3.7154245376586914,
+ "step": 2581
+ },
+ {
+ "epoch": 35.86675404106597,
+ "grad_norm": 0.2036849409341812,
+ "learning_rate": 0.0006,
+ "loss": 3.723738193511963,
+ "step": 2582
+ },
+ {
+ "epoch": 35.88073394495413,
+ "grad_norm": 0.24730375409126282,
+ "learning_rate": 0.0006,
+ "loss": 3.6830549240112305,
+ "step": 2583
+ },
+ {
+ "epoch": 35.89471384884229,
+ "grad_norm": 0.26552343368530273,
+ "learning_rate": 0.0006,
+ "loss": 3.7025017738342285,
+ "step": 2584
+ },
+ {
+ "epoch": 35.90869375273045,
+ "grad_norm": 0.2621893286705017,
+ "learning_rate": 0.0006,
+ "loss": 3.697399854660034,
+ "step": 2585
+ },
+ {
+ "epoch": 35.92267365661861,
+ "grad_norm": 0.2320089191198349,
+ "learning_rate": 0.0006,
+ "loss": 3.722207546234131,
+ "step": 2586
+ },
+ {
+ "epoch": 35.93665356050677,
+ "grad_norm": 0.1848745346069336,
+ "learning_rate": 0.0006,
+ "loss": 3.711249351501465,
+ "step": 2587
+ },
+ {
+ "epoch": 35.95063346439493,
+ "grad_norm": 0.24218113720417023,
+ "learning_rate": 0.0006,
+ "loss": 3.698894500732422,
+ "step": 2588
+ },
+ {
+ "epoch": 35.964613368283096,
+ "grad_norm": 0.29338452219963074,
+ "learning_rate": 0.0006,
+ "loss": 3.7470521926879883,
+ "step": 2589
+ },
+ {
+ "epoch": 35.97859327217125,
+ "grad_norm": 0.2804136276245117,
+ "learning_rate": 0.0006,
+ "loss": 3.750649929046631,
+ "step": 2590
+ },
+ {
+ "epoch": 35.992573176059416,
+ "grad_norm": 0.26404470205307007,
+ "learning_rate": 0.0006,
+ "loss": 3.6995797157287598,
+ "step": 2591
+ },
+ {
+ "epoch": 36.0,
+ "grad_norm": 0.27446141839027405,
+ "learning_rate": 0.0006,
+ "loss": 3.715768814086914,
+ "step": 2592
+ },
+ {
+ "epoch": 36.0,
+ "eval_loss": 4.007599830627441,
+ "eval_runtime": 44.0149,
+ "eval_samples_per_second": 55.481,
+ "eval_steps_per_second": 3.476,
+ "step": 2592
+ },
+ {
+ "epoch": 36.01397990388816,
+ "grad_norm": 0.2365594208240509,
+ "learning_rate": 0.0006,
+ "loss": 3.6529457569122314,
+ "step": 2593
+ },
+ {
+ "epoch": 36.02795980777632,
+ "grad_norm": 0.24824099242687225,
+ "learning_rate": 0.0006,
+ "loss": 3.6703386306762695,
+ "step": 2594
+ },
+ {
+ "epoch": 36.04193971166448,
+ "grad_norm": 0.26802200078964233,
+ "learning_rate": 0.0006,
+ "loss": 3.688307762145996,
+ "step": 2595
+ },
+ {
+ "epoch": 36.05591961555265,
+ "grad_norm": 0.2552911341190338,
+ "learning_rate": 0.0006,
+ "loss": 3.681797981262207,
+ "step": 2596
+ },
+ {
+ "epoch": 36.0698995194408,
+ "grad_norm": 0.254991739988327,
+ "learning_rate": 0.0006,
+ "loss": 3.644087791442871,
+ "step": 2597
+ },
+ {
+ "epoch": 36.083879423328966,
+ "grad_norm": 0.2496735155582428,
+ "learning_rate": 0.0006,
+ "loss": 3.644047737121582,
+ "step": 2598
+ },
+ {
+ "epoch": 36.09785932721712,
+ "grad_norm": 0.23637443780899048,
+ "learning_rate": 0.0006,
+ "loss": 3.684454917907715,
+ "step": 2599
+ },
+ {
+ "epoch": 36.111839231105286,
+ "grad_norm": 0.22065003216266632,
+ "learning_rate": 0.0006,
+ "loss": 3.661752700805664,
+ "step": 2600
+ },
+ {
+ "epoch": 36.12581913499345,
+ "grad_norm": 0.2292395532131195,
+ "learning_rate": 0.0006,
+ "loss": 3.6709558963775635,
+ "step": 2601
+ },
+ {
+ "epoch": 36.139799038881605,
+ "grad_norm": 0.22295089066028595,
+ "learning_rate": 0.0006,
+ "loss": 3.642230987548828,
+ "step": 2602
+ },
+ {
+ "epoch": 36.15377894276977,
+ "grad_norm": 0.2220531553030014,
+ "learning_rate": 0.0006,
+ "loss": 3.653268814086914,
+ "step": 2603
+ },
+ {
+ "epoch": 36.16775884665793,
+ "grad_norm": 0.21605174243450165,
+ "learning_rate": 0.0006,
+ "loss": 3.6791329383850098,
+ "step": 2604
+ },
+ {
+ "epoch": 36.18173875054609,
+ "grad_norm": 0.20932699739933014,
+ "learning_rate": 0.0006,
+ "loss": 3.6496856212615967,
+ "step": 2605
+ },
+ {
+ "epoch": 36.19571865443425,
+ "grad_norm": 0.20941385626792908,
+ "learning_rate": 0.0006,
+ "loss": 3.6445729732513428,
+ "step": 2606
+ },
+ {
+ "epoch": 36.20969855832241,
+ "grad_norm": 0.1987197995185852,
+ "learning_rate": 0.0006,
+ "loss": 3.6481809616088867,
+ "step": 2607
+ },
+ {
+ "epoch": 36.22367846221057,
+ "grad_norm": 0.19054439663887024,
+ "learning_rate": 0.0006,
+ "loss": 3.66894268989563,
+ "step": 2608
+ },
+ {
+ "epoch": 36.237658366098735,
+ "grad_norm": 0.19940806925296783,
+ "learning_rate": 0.0006,
+ "loss": 3.7123427391052246,
+ "step": 2609
+ },
+ {
+ "epoch": 36.25163826998689,
+ "grad_norm": 0.22157685458660126,
+ "learning_rate": 0.0006,
+ "loss": 3.6707541942596436,
+ "step": 2610
+ },
+ {
+ "epoch": 36.265618173875055,
+ "grad_norm": 0.2362316995859146,
+ "learning_rate": 0.0006,
+ "loss": 3.6906795501708984,
+ "step": 2611
+ },
+ {
+ "epoch": 36.27959807776322,
+ "grad_norm": 0.24560341238975525,
+ "learning_rate": 0.0006,
+ "loss": 3.668379783630371,
+ "step": 2612
+ },
+ {
+ "epoch": 36.293577981651374,
+ "grad_norm": 0.22814054787158966,
+ "learning_rate": 0.0006,
+ "loss": 3.665527820587158,
+ "step": 2613
+ },
+ {
+ "epoch": 36.30755788553954,
+ "grad_norm": 0.2156696617603302,
+ "learning_rate": 0.0006,
+ "loss": 3.673835277557373,
+ "step": 2614
+ },
+ {
+ "epoch": 36.3215377894277,
+ "grad_norm": 0.20152772963047028,
+ "learning_rate": 0.0006,
+ "loss": 3.6512670516967773,
+ "step": 2615
+ },
+ {
+ "epoch": 36.33551769331586,
+ "grad_norm": 0.22466860711574554,
+ "learning_rate": 0.0006,
+ "loss": 3.6877706050872803,
+ "step": 2616
+ },
+ {
+ "epoch": 36.34949759720402,
+ "grad_norm": 0.21688112616539001,
+ "learning_rate": 0.0006,
+ "loss": 3.6895859241485596,
+ "step": 2617
+ },
+ {
+ "epoch": 36.36347750109218,
+ "grad_norm": 0.19836577773094177,
+ "learning_rate": 0.0006,
+ "loss": 3.6658992767333984,
+ "step": 2618
+ },
+ {
+ "epoch": 36.37745740498034,
+ "grad_norm": 0.1995069831609726,
+ "learning_rate": 0.0006,
+ "loss": 3.677614450454712,
+ "step": 2619
+ },
+ {
+ "epoch": 36.391437308868504,
+ "grad_norm": 0.21234792470932007,
+ "learning_rate": 0.0006,
+ "loss": 3.6971967220306396,
+ "step": 2620
+ },
+ {
+ "epoch": 36.40541721275666,
+ "grad_norm": 0.20898285508155823,
+ "learning_rate": 0.0006,
+ "loss": 3.6936516761779785,
+ "step": 2621
+ },
+ {
+ "epoch": 36.419397116644824,
+ "grad_norm": 0.2115008533000946,
+ "learning_rate": 0.0006,
+ "loss": 3.6674065589904785,
+ "step": 2622
+ },
+ {
+ "epoch": 36.43337702053299,
+ "grad_norm": 0.2041143774986267,
+ "learning_rate": 0.0006,
+ "loss": 3.6455483436584473,
+ "step": 2623
+ },
+ {
+ "epoch": 36.44735692442114,
+ "grad_norm": 0.1966932713985443,
+ "learning_rate": 0.0006,
+ "loss": 3.6938109397888184,
+ "step": 2624
+ },
+ {
+ "epoch": 36.46133682830931,
+ "grad_norm": 0.20062223076820374,
+ "learning_rate": 0.0006,
+ "loss": 3.6775765419006348,
+ "step": 2625
+ },
+ {
+ "epoch": 36.47531673219746,
+ "grad_norm": 0.20610390603542328,
+ "learning_rate": 0.0006,
+ "loss": 3.6835384368896484,
+ "step": 2626
+ },
+ {
+ "epoch": 36.489296636085626,
+ "grad_norm": 0.20481473207473755,
+ "learning_rate": 0.0006,
+ "loss": 3.6794047355651855,
+ "step": 2627
+ },
+ {
+ "epoch": 36.50327653997379,
+ "grad_norm": 0.18964581191539764,
+ "learning_rate": 0.0006,
+ "loss": 3.7035841941833496,
+ "step": 2628
+ },
+ {
+ "epoch": 36.517256443861946,
+ "grad_norm": 0.2029343545436859,
+ "learning_rate": 0.0006,
+ "loss": 3.6667590141296387,
+ "step": 2629
+ },
+ {
+ "epoch": 36.53123634775011,
+ "grad_norm": 0.23656968772411346,
+ "learning_rate": 0.0006,
+ "loss": 3.6974546909332275,
+ "step": 2630
+ },
+ {
+ "epoch": 36.54521625163827,
+ "grad_norm": 0.23401431739330292,
+ "learning_rate": 0.0006,
+ "loss": 3.668936252593994,
+ "step": 2631
+ },
+ {
+ "epoch": 36.55919615552643,
+ "grad_norm": 0.22258102893829346,
+ "learning_rate": 0.0006,
+ "loss": 3.667977809906006,
+ "step": 2632
+ },
+ {
+ "epoch": 36.57317605941459,
+ "grad_norm": 0.20849554240703583,
+ "learning_rate": 0.0006,
+ "loss": 3.6674845218658447,
+ "step": 2633
+ },
+ {
+ "epoch": 36.58715596330275,
+ "grad_norm": 0.20684309303760529,
+ "learning_rate": 0.0006,
+ "loss": 3.6828644275665283,
+ "step": 2634
+ },
+ {
+ "epoch": 36.60113586719091,
+ "grad_norm": 0.19114233553409576,
+ "learning_rate": 0.0006,
+ "loss": 3.7084832191467285,
+ "step": 2635
+ },
+ {
+ "epoch": 36.615115771079076,
+ "grad_norm": 0.20382429659366608,
+ "learning_rate": 0.0006,
+ "loss": 3.68354868888855,
+ "step": 2636
+ },
+ {
+ "epoch": 36.62909567496723,
+ "grad_norm": 0.22526590526103973,
+ "learning_rate": 0.0006,
+ "loss": 3.684112310409546,
+ "step": 2637
+ },
+ {
+ "epoch": 36.643075578855395,
+ "grad_norm": 0.20735391974449158,
+ "learning_rate": 0.0006,
+ "loss": 3.67702054977417,
+ "step": 2638
+ },
+ {
+ "epoch": 36.65705548274356,
+ "grad_norm": 0.18549653887748718,
+ "learning_rate": 0.0006,
+ "loss": 3.6840810775756836,
+ "step": 2639
+ },
+ {
+ "epoch": 36.671035386631715,
+ "grad_norm": 0.1805262714624405,
+ "learning_rate": 0.0006,
+ "loss": 3.688119411468506,
+ "step": 2640
+ },
+ {
+ "epoch": 36.68501529051988,
+ "grad_norm": 0.17545704543590546,
+ "learning_rate": 0.0006,
+ "loss": 3.6477861404418945,
+ "step": 2641
+ },
+ {
+ "epoch": 36.69899519440804,
+ "grad_norm": 0.1772221326828003,
+ "learning_rate": 0.0006,
+ "loss": 3.6935806274414062,
+ "step": 2642
+ },
+ {
+ "epoch": 36.7129750982962,
+ "grad_norm": 0.18701671063899994,
+ "learning_rate": 0.0006,
+ "loss": 3.6820428371429443,
+ "step": 2643
+ },
+ {
+ "epoch": 36.72695500218436,
+ "grad_norm": 0.2057863473892212,
+ "learning_rate": 0.0006,
+ "loss": 3.669762134552002,
+ "step": 2644
+ },
+ {
+ "epoch": 36.74093490607252,
+ "grad_norm": 0.2565848231315613,
+ "learning_rate": 0.0006,
+ "loss": 3.717599391937256,
+ "step": 2645
+ },
+ {
+ "epoch": 36.75491480996068,
+ "grad_norm": 0.24362123012542725,
+ "learning_rate": 0.0006,
+ "loss": 3.671900987625122,
+ "step": 2646
+ },
+ {
+ "epoch": 36.768894713848844,
+ "grad_norm": 0.19606009125709534,
+ "learning_rate": 0.0006,
+ "loss": 3.6782546043395996,
+ "step": 2647
+ },
+ {
+ "epoch": 36.782874617737,
+ "grad_norm": 0.1948748379945755,
+ "learning_rate": 0.0006,
+ "loss": 3.6823501586914062,
+ "step": 2648
+ },
+ {
+ "epoch": 36.796854521625164,
+ "grad_norm": 0.22289852797985077,
+ "learning_rate": 0.0006,
+ "loss": 3.693469762802124,
+ "step": 2649
+ },
+ {
+ "epoch": 36.81083442551333,
+ "grad_norm": 0.24751701951026917,
+ "learning_rate": 0.0006,
+ "loss": 3.700678825378418,
+ "step": 2650
+ },
+ {
+ "epoch": 36.824814329401484,
+ "grad_norm": 0.28663966059684753,
+ "learning_rate": 0.0006,
+ "loss": 3.6960878372192383,
+ "step": 2651
+ },
+ {
+ "epoch": 36.83879423328965,
+ "grad_norm": 0.3288552165031433,
+ "learning_rate": 0.0006,
+ "loss": 3.7255043983459473,
+ "step": 2652
+ },
+ {
+ "epoch": 36.8527741371778,
+ "grad_norm": 0.3555443286895752,
+ "learning_rate": 0.0006,
+ "loss": 3.725308418273926,
+ "step": 2653
+ },
+ {
+ "epoch": 36.86675404106597,
+ "grad_norm": 0.3204147219657898,
+ "learning_rate": 0.0006,
+ "loss": 3.7137985229492188,
+ "step": 2654
+ },
+ {
+ "epoch": 36.88073394495413,
+ "grad_norm": 0.2944706976413727,
+ "learning_rate": 0.0006,
+ "loss": 3.7032840251922607,
+ "step": 2655
+ },
+ {
+ "epoch": 36.89471384884229,
+ "grad_norm": 0.2845679223537445,
+ "learning_rate": 0.0006,
+ "loss": 3.6840004920959473,
+ "step": 2656
+ },
+ {
+ "epoch": 36.90869375273045,
+ "grad_norm": 0.2815704047679901,
+ "learning_rate": 0.0006,
+ "loss": 3.6958417892456055,
+ "step": 2657
+ },
+ {
+ "epoch": 36.92267365661861,
+ "grad_norm": 0.2733481228351593,
+ "learning_rate": 0.0006,
+ "loss": 3.677690029144287,
+ "step": 2658
+ },
+ {
+ "epoch": 36.93665356050677,
+ "grad_norm": 0.29572054743766785,
+ "learning_rate": 0.0006,
+ "loss": 3.6983718872070312,
+ "step": 2659
+ },
+ {
+ "epoch": 36.95063346439493,
+ "grad_norm": 0.2487923800945282,
+ "learning_rate": 0.0006,
+ "loss": 3.7041163444519043,
+ "step": 2660
+ },
+ {
+ "epoch": 36.964613368283096,
+ "grad_norm": 0.2541966438293457,
+ "learning_rate": 0.0006,
+ "loss": 3.7038979530334473,
+ "step": 2661
+ },
+ {
+ "epoch": 36.97859327217125,
+ "grad_norm": 0.2441335767507553,
+ "learning_rate": 0.0006,
+ "loss": 3.717966079711914,
+ "step": 2662
+ },
+ {
+ "epoch": 36.992573176059416,
+ "grad_norm": 0.2304554283618927,
+ "learning_rate": 0.0006,
+ "loss": 3.671098232269287,
+ "step": 2663
+ },
+ {
+ "epoch": 37.0,
+ "grad_norm": 0.2346591204404831,
+ "learning_rate": 0.0006,
+ "loss": 3.680298089981079,
+ "step": 2664
+ },
+ {
+ "epoch": 37.0,
+ "eval_loss": 3.9944777488708496,
+ "eval_runtime": 43.9862,
+ "eval_samples_per_second": 55.517,
+ "eval_steps_per_second": 3.478,
+ "step": 2664
+ },
+ {
+ "epoch": 37.01397990388816,
+ "grad_norm": 0.22970618307590485,
+ "learning_rate": 0.0006,
+ "loss": 3.6835923194885254,
+ "step": 2665
+ },
+ {
+ "epoch": 37.02795980777632,
+ "grad_norm": 0.25463759899139404,
+ "learning_rate": 0.0006,
+ "loss": 3.658339023590088,
+ "step": 2666
+ },
+ {
+ "epoch": 37.04193971166448,
+ "grad_norm": 0.2520577311515808,
+ "learning_rate": 0.0006,
+ "loss": 3.6275506019592285,
+ "step": 2667
+ },
+ {
+ "epoch": 37.05591961555265,
+ "grad_norm": 0.22698813676834106,
+ "learning_rate": 0.0006,
+ "loss": 3.65043568611145,
+ "step": 2668
+ },
+ {
+ "epoch": 37.0698995194408,
+ "grad_norm": 0.21133972704410553,
+ "learning_rate": 0.0006,
+ "loss": 3.6262078285217285,
+ "step": 2669
+ },
+ {
+ "epoch": 37.083879423328966,
+ "grad_norm": 0.21940460801124573,
+ "learning_rate": 0.0006,
+ "loss": 3.6709489822387695,
+ "step": 2670
+ },
+ {
+ "epoch": 37.09785932721712,
+ "grad_norm": 0.21897517144680023,
+ "learning_rate": 0.0006,
+ "loss": 3.6621508598327637,
+ "step": 2671
+ },
+ {
+ "epoch": 37.111839231105286,
+ "grad_norm": 0.2270219624042511,
+ "learning_rate": 0.0006,
+ "loss": 3.6334924697875977,
+ "step": 2672
+ },
+ {
+ "epoch": 37.12581913499345,
+ "grad_norm": 0.22082042694091797,
+ "learning_rate": 0.0006,
+ "loss": 3.662209987640381,
+ "step": 2673
+ },
+ {
+ "epoch": 37.139799038881605,
+ "grad_norm": 0.19931960105895996,
+ "learning_rate": 0.0006,
+ "loss": 3.6655359268188477,
+ "step": 2674
+ },
+ {
+ "epoch": 37.15377894276977,
+ "grad_norm": 0.21451307833194733,
+ "learning_rate": 0.0006,
+ "loss": 3.656287670135498,
+ "step": 2675
+ },
+ {
+ "epoch": 37.16775884665793,
+ "grad_norm": 0.2131514698266983,
+ "learning_rate": 0.0006,
+ "loss": 3.635054111480713,
+ "step": 2676
+ },
+ {
+ "epoch": 37.18173875054609,
+ "grad_norm": 0.20425808429718018,
+ "learning_rate": 0.0006,
+ "loss": 3.67653226852417,
+ "step": 2677
+ },
+ {
+ "epoch": 37.19571865443425,
+ "grad_norm": 0.19423379004001617,
+ "learning_rate": 0.0006,
+ "loss": 3.6827316284179688,
+ "step": 2678
+ },
+ {
+ "epoch": 37.20969855832241,
+ "grad_norm": 0.1954883486032486,
+ "learning_rate": 0.0006,
+ "loss": 3.658092498779297,
+ "step": 2679
+ },
+ {
+ "epoch": 37.22367846221057,
+ "grad_norm": 0.21153928339481354,
+ "learning_rate": 0.0006,
+ "loss": 3.6675186157226562,
+ "step": 2680
+ },
+ {
+ "epoch": 37.237658366098735,
+ "grad_norm": 0.2032976895570755,
+ "learning_rate": 0.0006,
+ "loss": 3.6725759506225586,
+ "step": 2681
+ },
+ {
+ "epoch": 37.25163826998689,
+ "grad_norm": 0.19839346408843994,
+ "learning_rate": 0.0006,
+ "loss": 3.660851240158081,
+ "step": 2682
+ },
+ {
+ "epoch": 37.265618173875055,
+ "grad_norm": 0.1884699910879135,
+ "learning_rate": 0.0006,
+ "loss": 3.6653623580932617,
+ "step": 2683
+ },
+ {
+ "epoch": 37.27959807776322,
+ "grad_norm": 0.19558705389499664,
+ "learning_rate": 0.0006,
+ "loss": 3.648016929626465,
+ "step": 2684
+ },
+ {
+ "epoch": 37.293577981651374,
+ "grad_norm": 0.19453682005405426,
+ "learning_rate": 0.0006,
+ "loss": 3.6804773807525635,
+ "step": 2685
+ },
+ {
+ "epoch": 37.30755788553954,
+ "grad_norm": 0.1901177167892456,
+ "learning_rate": 0.0006,
+ "loss": 3.6533353328704834,
+ "step": 2686
+ },
+ {
+ "epoch": 37.3215377894277,
+ "grad_norm": 0.19425596296787262,
+ "learning_rate": 0.0006,
+ "loss": 3.665745735168457,
+ "step": 2687
+ },
+ {
+ "epoch": 37.33551769331586,
+ "grad_norm": 0.17583411931991577,
+ "learning_rate": 0.0006,
+ "loss": 3.679112434387207,
+ "step": 2688
+ },
+ {
+ "epoch": 37.34949759720402,
+ "grad_norm": 0.19667863845825195,
+ "learning_rate": 0.0006,
+ "loss": 3.6650352478027344,
+ "step": 2689
+ },
+ {
+ "epoch": 37.36347750109218,
+ "grad_norm": 0.22803270816802979,
+ "learning_rate": 0.0006,
+ "loss": 3.6658573150634766,
+ "step": 2690
+ },
+ {
+ "epoch": 37.37745740498034,
+ "grad_norm": 0.20589298009872437,
+ "learning_rate": 0.0006,
+ "loss": 3.6587300300598145,
+ "step": 2691
+ },
+ {
+ "epoch": 37.391437308868504,
+ "grad_norm": 0.1946951299905777,
+ "learning_rate": 0.0006,
+ "loss": 3.6515092849731445,
+ "step": 2692
+ },
+ {
+ "epoch": 37.40541721275666,
+ "grad_norm": 0.19029614329338074,
+ "learning_rate": 0.0006,
+ "loss": 3.6383113861083984,
+ "step": 2693
+ },
+ {
+ "epoch": 37.419397116644824,
+ "grad_norm": 0.1944548338651657,
+ "learning_rate": 0.0006,
+ "loss": 3.7017135620117188,
+ "step": 2694
+ },
+ {
+ "epoch": 37.43337702053299,
+ "grad_norm": 0.19482386112213135,
+ "learning_rate": 0.0006,
+ "loss": 3.6791775226593018,
+ "step": 2695
+ },
+ {
+ "epoch": 37.44735692442114,
+ "grad_norm": 0.23276680707931519,
+ "learning_rate": 0.0006,
+ "loss": 3.672245979309082,
+ "step": 2696
+ },
+ {
+ "epoch": 37.46133682830931,
+ "grad_norm": 0.22267542779445648,
+ "learning_rate": 0.0006,
+ "loss": 3.683380365371704,
+ "step": 2697
+ },
+ {
+ "epoch": 37.47531673219746,
+ "grad_norm": 0.1942203938961029,
+ "learning_rate": 0.0006,
+ "loss": 3.6760759353637695,
+ "step": 2698
+ },
+ {
+ "epoch": 37.489296636085626,
+ "grad_norm": 0.21212540566921234,
+ "learning_rate": 0.0006,
+ "loss": 3.660719633102417,
+ "step": 2699
+ },
+ {
+ "epoch": 37.50327653997379,
+ "grad_norm": 0.2365427315235138,
+ "learning_rate": 0.0006,
+ "loss": 3.6727194786071777,
+ "step": 2700
+ },
+ {
+ "epoch": 37.517256443861946,
+ "grad_norm": 0.2379675805568695,
+ "learning_rate": 0.0006,
+ "loss": 3.6691598892211914,
+ "step": 2701
+ },
+ {
+ "epoch": 37.53123634775011,
+ "grad_norm": 0.22142401337623596,
+ "learning_rate": 0.0006,
+ "loss": 3.6882128715515137,
+ "step": 2702
+ },
+ {
+ "epoch": 37.54521625163827,
+ "grad_norm": 0.19993607699871063,
+ "learning_rate": 0.0006,
+ "loss": 3.6651787757873535,
+ "step": 2703
+ },
+ {
+ "epoch": 37.55919615552643,
+ "grad_norm": 0.19934895634651184,
+ "learning_rate": 0.0006,
+ "loss": 3.6680638790130615,
+ "step": 2704
+ },
+ {
+ "epoch": 37.57317605941459,
+ "grad_norm": 0.21202369034290314,
+ "learning_rate": 0.0006,
+ "loss": 3.697615623474121,
+ "step": 2705
+ },
+ {
+ "epoch": 37.58715596330275,
+ "grad_norm": 0.1994577795267105,
+ "learning_rate": 0.0006,
+ "loss": 3.688243865966797,
+ "step": 2706
+ },
+ {
+ "epoch": 37.60113586719091,
+ "grad_norm": 0.20365118980407715,
+ "learning_rate": 0.0006,
+ "loss": 3.6615519523620605,
+ "step": 2707
+ },
+ {
+ "epoch": 37.615115771079076,
+ "grad_norm": 0.22466035187244415,
+ "learning_rate": 0.0006,
+ "loss": 3.703111171722412,
+ "step": 2708
+ },
+ {
+ "epoch": 37.62909567496723,
+ "grad_norm": 0.21140407025814056,
+ "learning_rate": 0.0006,
+ "loss": 3.6744728088378906,
+ "step": 2709
+ },
+ {
+ "epoch": 37.643075578855395,
+ "grad_norm": 0.22220195829868317,
+ "learning_rate": 0.0006,
+ "loss": 3.671501874923706,
+ "step": 2710
+ },
+ {
+ "epoch": 37.65705548274356,
+ "grad_norm": 0.23279480636119843,
+ "learning_rate": 0.0006,
+ "loss": 3.6962859630584717,
+ "step": 2711
+ },
+ {
+ "epoch": 37.671035386631715,
+ "grad_norm": 0.23284408450126648,
+ "learning_rate": 0.0006,
+ "loss": 3.670231342315674,
+ "step": 2712
+ },
+ {
+ "epoch": 37.68501529051988,
+ "grad_norm": 0.21935738623142242,
+ "learning_rate": 0.0006,
+ "loss": 3.6908650398254395,
+ "step": 2713
+ },
+ {
+ "epoch": 37.69899519440804,
+ "grad_norm": 0.2072262167930603,
+ "learning_rate": 0.0006,
+ "loss": 3.7204506397247314,
+ "step": 2714
+ },
+ {
+ "epoch": 37.7129750982962,
+ "grad_norm": 0.22547709941864014,
+ "learning_rate": 0.0006,
+ "loss": 3.6740894317626953,
+ "step": 2715
+ },
+ {
+ "epoch": 37.72695500218436,
+ "grad_norm": 0.2460414469242096,
+ "learning_rate": 0.0006,
+ "loss": 3.6938390731811523,
+ "step": 2716
+ },
+ {
+ "epoch": 37.74093490607252,
+ "grad_norm": 0.24756456911563873,
+ "learning_rate": 0.0006,
+ "loss": 3.692173480987549,
+ "step": 2717
+ },
+ {
+ "epoch": 37.75491480996068,
+ "grad_norm": 0.20149244368076324,
+ "learning_rate": 0.0006,
+ "loss": 3.6677675247192383,
+ "step": 2718
+ },
+ {
+ "epoch": 37.768894713848844,
+ "grad_norm": 0.19834814965724945,
+ "learning_rate": 0.0006,
+ "loss": 3.6717336177825928,
+ "step": 2719
+ },
+ {
+ "epoch": 37.782874617737,
+ "grad_norm": 0.22929978370666504,
+ "learning_rate": 0.0006,
+ "loss": 3.6818275451660156,
+ "step": 2720
+ },
+ {
+ "epoch": 37.796854521625164,
+ "grad_norm": 0.23674434423446655,
+ "learning_rate": 0.0006,
+ "loss": 3.689767360687256,
+ "step": 2721
+ },
+ {
+ "epoch": 37.81083442551333,
+ "grad_norm": 0.22798952460289001,
+ "learning_rate": 0.0006,
+ "loss": 3.6928915977478027,
+ "step": 2722
+ },
+ {
+ "epoch": 37.824814329401484,
+ "grad_norm": 0.2270302027463913,
+ "learning_rate": 0.0006,
+ "loss": 3.6884233951568604,
+ "step": 2723
+ },
+ {
+ "epoch": 37.83879423328965,
+ "grad_norm": 0.23563820123672485,
+ "learning_rate": 0.0006,
+ "loss": 3.6962456703186035,
+ "step": 2724
+ },
+ {
+ "epoch": 37.8527741371778,
+ "grad_norm": 0.2240045815706253,
+ "learning_rate": 0.0006,
+ "loss": 3.6985082626342773,
+ "step": 2725
+ },
+ {
+ "epoch": 37.86675404106597,
+ "grad_norm": 0.21541155874729156,
+ "learning_rate": 0.0006,
+ "loss": 3.6960105895996094,
+ "step": 2726
+ },
+ {
+ "epoch": 37.88073394495413,
+ "grad_norm": 0.23257222771644592,
+ "learning_rate": 0.0006,
+ "loss": 3.667404890060425,
+ "step": 2727
+ },
+ {
+ "epoch": 37.89471384884229,
+ "grad_norm": 0.226792573928833,
+ "learning_rate": 0.0006,
+ "loss": 3.6549744606018066,
+ "step": 2728
+ },
+ {
+ "epoch": 37.90869375273045,
+ "grad_norm": 0.18993401527404785,
+ "learning_rate": 0.0006,
+ "loss": 3.6772334575653076,
+ "step": 2729
+ },
+ {
+ "epoch": 37.92267365661861,
+ "grad_norm": 0.20936095714569092,
+ "learning_rate": 0.0006,
+ "loss": 3.671116352081299,
+ "step": 2730
+ },
+ {
+ "epoch": 37.93665356050677,
+ "grad_norm": 0.2203974425792694,
+ "learning_rate": 0.0006,
+ "loss": 3.6549739837646484,
+ "step": 2731
+ },
+ {
+ "epoch": 37.95063346439493,
+ "grad_norm": 0.19504620134830475,
+ "learning_rate": 0.0006,
+ "loss": 3.6755447387695312,
+ "step": 2732
+ },
+ {
+ "epoch": 37.964613368283096,
+ "grad_norm": 0.2025984674692154,
+ "learning_rate": 0.0006,
+ "loss": 3.678955554962158,
+ "step": 2733
+ },
+ {
+ "epoch": 37.97859327217125,
+ "grad_norm": 0.21556107699871063,
+ "learning_rate": 0.0006,
+ "loss": 3.6680502891540527,
+ "step": 2734
+ },
+ {
+ "epoch": 37.992573176059416,
+ "grad_norm": 0.21011291444301605,
+ "learning_rate": 0.0006,
+ "loss": 3.672039031982422,
+ "step": 2735
+ },
+ {
+ "epoch": 38.0,
+ "grad_norm": 0.23710957169532776,
+ "learning_rate": 0.0006,
+ "loss": 3.6326794624328613,
+ "step": 2736
+ },
+ {
+ "epoch": 38.0,
+ "eval_loss": 3.990501880645752,
+ "eval_runtime": 43.8951,
+ "eval_samples_per_second": 55.633,
+ "eval_steps_per_second": 3.486,
+ "step": 2736
+ },
+ {
+ "epoch": 38.01397990388816,
+ "grad_norm": 0.20711326599121094,
+ "learning_rate": 0.0006,
+ "loss": 3.6364657878875732,
+ "step": 2737
+ },
+ {
+ "epoch": 38.02795980777632,
+ "grad_norm": 0.2250880002975464,
+ "learning_rate": 0.0006,
+ "loss": 3.637646436691284,
+ "step": 2738
+ },
+ {
+ "epoch": 38.04193971166448,
+ "grad_norm": 0.2448352724313736,
+ "learning_rate": 0.0006,
+ "loss": 3.63557767868042,
+ "step": 2739
+ },
+ {
+ "epoch": 38.05591961555265,
+ "grad_norm": 0.23031368851661682,
+ "learning_rate": 0.0006,
+ "loss": 3.627117395401001,
+ "step": 2740
+ },
+ {
+ "epoch": 38.0698995194408,
+ "grad_norm": 0.2045450210571289,
+ "learning_rate": 0.0006,
+ "loss": 3.6594958305358887,
+ "step": 2741
+ },
+ {
+ "epoch": 38.083879423328966,
+ "grad_norm": 0.21253496408462524,
+ "learning_rate": 0.0006,
+ "loss": 3.65494441986084,
+ "step": 2742
+ },
+ {
+ "epoch": 38.09785932721712,
+ "grad_norm": 0.20196112990379333,
+ "learning_rate": 0.0006,
+ "loss": 3.645289421081543,
+ "step": 2743
+ },
+ {
+ "epoch": 38.111839231105286,
+ "grad_norm": 0.20258229970932007,
+ "learning_rate": 0.0006,
+ "loss": 3.6698505878448486,
+ "step": 2744
+ },
+ {
+ "epoch": 38.12581913499345,
+ "grad_norm": 0.22182606160640717,
+ "learning_rate": 0.0006,
+ "loss": 3.6427698135375977,
+ "step": 2745
+ },
+ {
+ "epoch": 38.139799038881605,
+ "grad_norm": 0.21281519532203674,
+ "learning_rate": 0.0006,
+ "loss": 3.668337345123291,
+ "step": 2746
+ },
+ {
+ "epoch": 38.15377894276977,
+ "grad_norm": 0.21680216491222382,
+ "learning_rate": 0.0006,
+ "loss": 3.6362109184265137,
+ "step": 2747
+ },
+ {
+ "epoch": 38.16775884665793,
+ "grad_norm": 0.24396903812885284,
+ "learning_rate": 0.0006,
+ "loss": 3.660510540008545,
+ "step": 2748
+ },
+ {
+ "epoch": 38.18173875054609,
+ "grad_norm": 0.2546434700489044,
+ "learning_rate": 0.0006,
+ "loss": 3.6562418937683105,
+ "step": 2749
+ },
+ {
+ "epoch": 38.19571865443425,
+ "grad_norm": 0.22705447673797607,
+ "learning_rate": 0.0006,
+ "loss": 3.6801514625549316,
+ "step": 2750
+ },
+ {
+ "epoch": 38.20969855832241,
+ "grad_norm": 0.21516330540180206,
+ "learning_rate": 0.0006,
+ "loss": 3.6633429527282715,
+ "step": 2751
+ },
+ {
+ "epoch": 38.22367846221057,
+ "grad_norm": 0.20895853638648987,
+ "learning_rate": 0.0006,
+ "loss": 3.619896411895752,
+ "step": 2752
+ },
+ {
+ "epoch": 38.237658366098735,
+ "grad_norm": 0.21183325350284576,
+ "learning_rate": 0.0006,
+ "loss": 3.639491558074951,
+ "step": 2753
+ },
+ {
+ "epoch": 38.25163826998689,
+ "grad_norm": 0.21439522504806519,
+ "learning_rate": 0.0006,
+ "loss": 3.671931028366089,
+ "step": 2754
+ },
+ {
+ "epoch": 38.265618173875055,
+ "grad_norm": 0.2017785906791687,
+ "learning_rate": 0.0006,
+ "loss": 3.639533519744873,
+ "step": 2755
+ },
+ {
+ "epoch": 38.27959807776322,
+ "grad_norm": 0.20015068352222443,
+ "learning_rate": 0.0006,
+ "loss": 3.654262065887451,
+ "step": 2756
+ },
+ {
+ "epoch": 38.293577981651374,
+ "grad_norm": 0.21518948674201965,
+ "learning_rate": 0.0006,
+ "loss": 3.649919033050537,
+ "step": 2757
+ },
+ {
+ "epoch": 38.30755788553954,
+ "grad_norm": 0.21994580328464508,
+ "learning_rate": 0.0006,
+ "loss": 3.6756131649017334,
+ "step": 2758
+ },
+ {
+ "epoch": 38.3215377894277,
+ "grad_norm": 0.2053978443145752,
+ "learning_rate": 0.0006,
+ "loss": 3.651520252227783,
+ "step": 2759
+ },
+ {
+ "epoch": 38.33551769331586,
+ "grad_norm": 0.2066337615251541,
+ "learning_rate": 0.0006,
+ "loss": 3.6404507160186768,
+ "step": 2760
+ },
+ {
+ "epoch": 38.34949759720402,
+ "grad_norm": 0.20898301899433136,
+ "learning_rate": 0.0006,
+ "loss": 3.637200355529785,
+ "step": 2761
+ },
+ {
+ "epoch": 38.36347750109218,
+ "grad_norm": 0.19212259352207184,
+ "learning_rate": 0.0006,
+ "loss": 3.68394136428833,
+ "step": 2762
+ },
+ {
+ "epoch": 38.37745740498034,
+ "grad_norm": 0.2011883556842804,
+ "learning_rate": 0.0006,
+ "loss": 3.6494975090026855,
+ "step": 2763
+ },
+ {
+ "epoch": 38.391437308868504,
+ "grad_norm": 0.23072998225688934,
+ "learning_rate": 0.0006,
+ "loss": 3.6644320487976074,
+ "step": 2764
+ },
+ {
+ "epoch": 38.40541721275666,
+ "grad_norm": 0.2195347547531128,
+ "learning_rate": 0.0006,
+ "loss": 3.6666269302368164,
+ "step": 2765
+ },
+ {
+ "epoch": 38.419397116644824,
+ "grad_norm": 0.19820117950439453,
+ "learning_rate": 0.0006,
+ "loss": 3.690683364868164,
+ "step": 2766
+ },
+ {
+ "epoch": 38.43337702053299,
+ "grad_norm": 0.20381149649620056,
+ "learning_rate": 0.0006,
+ "loss": 3.6647756099700928,
+ "step": 2767
+ },
+ {
+ "epoch": 38.44735692442114,
+ "grad_norm": 0.19477297365665436,
+ "learning_rate": 0.0006,
+ "loss": 3.6419155597686768,
+ "step": 2768
+ },
+ {
+ "epoch": 38.46133682830931,
+ "grad_norm": 0.20118845999240875,
+ "learning_rate": 0.0006,
+ "loss": 3.678511142730713,
+ "step": 2769
+ },
+ {
+ "epoch": 38.47531673219746,
+ "grad_norm": 0.19538167119026184,
+ "learning_rate": 0.0006,
+ "loss": 3.632112503051758,
+ "step": 2770
+ },
+ {
+ "epoch": 38.489296636085626,
+ "grad_norm": 0.18136411905288696,
+ "learning_rate": 0.0006,
+ "loss": 3.6631078720092773,
+ "step": 2771
+ },
+ {
+ "epoch": 38.50327653997379,
+ "grad_norm": 0.1993526667356491,
+ "learning_rate": 0.0006,
+ "loss": 3.6800379753112793,
+ "step": 2772
+ },
+ {
+ "epoch": 38.517256443861946,
+ "grad_norm": 0.21409109234809875,
+ "learning_rate": 0.0006,
+ "loss": 3.6355738639831543,
+ "step": 2773
+ },
+ {
+ "epoch": 38.53123634775011,
+ "grad_norm": 0.20932911336421967,
+ "learning_rate": 0.0006,
+ "loss": 3.6639811992645264,
+ "step": 2774
+ },
+ {
+ "epoch": 38.54521625163827,
+ "grad_norm": 0.22266243398189545,
+ "learning_rate": 0.0006,
+ "loss": 3.6927733421325684,
+ "step": 2775
+ },
+ {
+ "epoch": 38.55919615552643,
+ "grad_norm": 0.22916539013385773,
+ "learning_rate": 0.0006,
+ "loss": 3.6381587982177734,
+ "step": 2776
+ },
+ {
+ "epoch": 38.57317605941459,
+ "grad_norm": 0.21507245302200317,
+ "learning_rate": 0.0006,
+ "loss": 3.6724753379821777,
+ "step": 2777
+ },
+ {
+ "epoch": 38.58715596330275,
+ "grad_norm": 0.21132487058639526,
+ "learning_rate": 0.0006,
+ "loss": 3.68450927734375,
+ "step": 2778
+ },
+ {
+ "epoch": 38.60113586719091,
+ "grad_norm": 0.2323923259973526,
+ "learning_rate": 0.0006,
+ "loss": 3.6917476654052734,
+ "step": 2779
+ },
+ {
+ "epoch": 38.615115771079076,
+ "grad_norm": 0.2862907648086548,
+ "learning_rate": 0.0006,
+ "loss": 3.6832518577575684,
+ "step": 2780
+ },
+ {
+ "epoch": 38.62909567496723,
+ "grad_norm": 0.28132742643356323,
+ "learning_rate": 0.0006,
+ "loss": 3.6619668006896973,
+ "step": 2781
+ },
+ {
+ "epoch": 38.643075578855395,
+ "grad_norm": 0.24933350086212158,
+ "learning_rate": 0.0006,
+ "loss": 3.6342711448669434,
+ "step": 2782
+ },
+ {
+ "epoch": 38.65705548274356,
+ "grad_norm": 0.23482646048069,
+ "learning_rate": 0.0006,
+ "loss": 3.667548656463623,
+ "step": 2783
+ },
+ {
+ "epoch": 38.671035386631715,
+ "grad_norm": 0.2529793083667755,
+ "learning_rate": 0.0006,
+ "loss": 3.6613709926605225,
+ "step": 2784
+ },
+ {
+ "epoch": 38.68501529051988,
+ "grad_norm": 0.2306097447872162,
+ "learning_rate": 0.0006,
+ "loss": 3.653153419494629,
+ "step": 2785
+ },
+ {
+ "epoch": 38.69899519440804,
+ "grad_norm": 0.21787869930267334,
+ "learning_rate": 0.0006,
+ "loss": 3.6991848945617676,
+ "step": 2786
+ },
+ {
+ "epoch": 38.7129750982962,
+ "grad_norm": 0.24818190932273865,
+ "learning_rate": 0.0006,
+ "loss": 3.664022445678711,
+ "step": 2787
+ },
+ {
+ "epoch": 38.72695500218436,
+ "grad_norm": 0.23205995559692383,
+ "learning_rate": 0.0006,
+ "loss": 3.656064987182617,
+ "step": 2788
+ },
+ {
+ "epoch": 38.74093490607252,
+ "grad_norm": 0.2268102467060089,
+ "learning_rate": 0.0006,
+ "loss": 3.678421974182129,
+ "step": 2789
+ },
+ {
+ "epoch": 38.75491480996068,
+ "grad_norm": 0.22549907863140106,
+ "learning_rate": 0.0006,
+ "loss": 3.6483302116394043,
+ "step": 2790
+ },
+ {
+ "epoch": 38.768894713848844,
+ "grad_norm": 0.2293119877576828,
+ "learning_rate": 0.0006,
+ "loss": 3.646825075149536,
+ "step": 2791
+ },
+ {
+ "epoch": 38.782874617737,
+ "grad_norm": 0.21879418194293976,
+ "learning_rate": 0.0006,
+ "loss": 3.682124614715576,
+ "step": 2792
+ },
+ {
+ "epoch": 38.796854521625164,
+ "grad_norm": 0.22012849152088165,
+ "learning_rate": 0.0006,
+ "loss": 3.6590089797973633,
+ "step": 2793
+ },
+ {
+ "epoch": 38.81083442551333,
+ "grad_norm": 0.2449142336845398,
+ "learning_rate": 0.0006,
+ "loss": 3.7053747177124023,
+ "step": 2794
+ },
+ {
+ "epoch": 38.824814329401484,
+ "grad_norm": 0.2677161395549774,
+ "learning_rate": 0.0006,
+ "loss": 3.666144371032715,
+ "step": 2795
+ },
+ {
+ "epoch": 38.83879423328965,
+ "grad_norm": 0.2654981315135956,
+ "learning_rate": 0.0006,
+ "loss": 3.637512683868408,
+ "step": 2796
+ },
+ {
+ "epoch": 38.8527741371778,
+ "grad_norm": 0.23169654607772827,
+ "learning_rate": 0.0006,
+ "loss": 3.6885948181152344,
+ "step": 2797
+ },
+ {
+ "epoch": 38.86675404106597,
+ "grad_norm": 0.22195108234882355,
+ "learning_rate": 0.0006,
+ "loss": 3.6597604751586914,
+ "step": 2798
+ },
+ {
+ "epoch": 38.88073394495413,
+ "grad_norm": 0.23703525960445404,
+ "learning_rate": 0.0006,
+ "loss": 3.6808712482452393,
+ "step": 2799
+ },
+ {
+ "epoch": 38.89471384884229,
+ "grad_norm": 0.24711088836193085,
+ "learning_rate": 0.0006,
+ "loss": 3.733792781829834,
+ "step": 2800
+ },
+ {
+ "epoch": 38.90869375273045,
+ "grad_norm": 0.216362863779068,
+ "learning_rate": 0.0006,
+ "loss": 3.670599937438965,
+ "step": 2801
+ },
+ {
+ "epoch": 38.92267365661861,
+ "grad_norm": 0.19483810663223267,
+ "learning_rate": 0.0006,
+ "loss": 3.6965198516845703,
+ "step": 2802
+ },
+ {
+ "epoch": 38.93665356050677,
+ "grad_norm": 0.1941208392381668,
+ "learning_rate": 0.0006,
+ "loss": 3.678022861480713,
+ "step": 2803
+ },
+ {
+ "epoch": 38.95063346439493,
+ "grad_norm": 0.1919465959072113,
+ "learning_rate": 0.0006,
+ "loss": 3.6763226985931396,
+ "step": 2804
+ },
+ {
+ "epoch": 38.964613368283096,
+ "grad_norm": 0.2003280073404312,
+ "learning_rate": 0.0006,
+ "loss": 3.670313835144043,
+ "step": 2805
+ },
+ {
+ "epoch": 38.97859327217125,
+ "grad_norm": 0.198478564620018,
+ "learning_rate": 0.0006,
+ "loss": 3.675569772720337,
+ "step": 2806
+ },
+ {
+ "epoch": 38.992573176059416,
+ "grad_norm": 0.23692303895950317,
+ "learning_rate": 0.0006,
+ "loss": 3.696561336517334,
+ "step": 2807
+ },
+ {
+ "epoch": 39.0,
+ "grad_norm": 0.3208145797252655,
+ "learning_rate": 0.0006,
+ "loss": 3.6791436672210693,
+ "step": 2808
+ },
+ {
+ "epoch": 39.0,
+ "eval_loss": 4.0079450607299805,
+ "eval_runtime": 43.8573,
+ "eval_samples_per_second": 55.681,
+ "eval_steps_per_second": 3.489,
+ "step": 2808
+ },
+ {
+ "epoch": 39.01397990388816,
+ "grad_norm": 0.28338733315467834,
+ "learning_rate": 0.0006,
+ "loss": 3.6277060508728027,
+ "step": 2809
+ },
+ {
+ "epoch": 39.02795980777632,
+ "grad_norm": 0.22057899832725525,
+ "learning_rate": 0.0006,
+ "loss": 3.6132822036743164,
+ "step": 2810
+ },
+ {
+ "epoch": 39.04193971166448,
+ "grad_norm": 0.20630282163619995,
+ "learning_rate": 0.0006,
+ "loss": 3.6143927574157715,
+ "step": 2811
+ },
+ {
+ "epoch": 39.05591961555265,
+ "grad_norm": 0.2178523689508438,
+ "learning_rate": 0.0006,
+ "loss": 3.6304664611816406,
+ "step": 2812
+ },
+ {
+ "epoch": 39.0698995194408,
+ "grad_norm": 0.19613824784755707,
+ "learning_rate": 0.0006,
+ "loss": 3.6137919425964355,
+ "step": 2813
+ },
+ {
+ "epoch": 39.083879423328966,
+ "grad_norm": 0.2047276794910431,
+ "learning_rate": 0.0006,
+ "loss": 3.6854846477508545,
+ "step": 2814
+ },
+ {
+ "epoch": 39.09785932721712,
+ "grad_norm": 0.20082715153694153,
+ "learning_rate": 0.0006,
+ "loss": 3.632091522216797,
+ "step": 2815
+ },
+ {
+ "epoch": 39.111839231105286,
+ "grad_norm": 0.21746563911437988,
+ "learning_rate": 0.0006,
+ "loss": 3.640477180480957,
+ "step": 2816
+ },
+ {
+ "epoch": 39.12581913499345,
+ "grad_norm": 0.2128882110118866,
+ "learning_rate": 0.0006,
+ "loss": 3.643984317779541,
+ "step": 2817
+ },
+ {
+ "epoch": 39.139799038881605,
+ "grad_norm": 0.2110479772090912,
+ "learning_rate": 0.0006,
+ "loss": 3.6328823566436768,
+ "step": 2818
+ },
+ {
+ "epoch": 39.15377894276977,
+ "grad_norm": 0.22304436564445496,
+ "learning_rate": 0.0006,
+ "loss": 3.6669845581054688,
+ "step": 2819
+ },
+ {
+ "epoch": 39.16775884665793,
+ "grad_norm": 0.22310666739940643,
+ "learning_rate": 0.0006,
+ "loss": 3.609743595123291,
+ "step": 2820
+ },
+ {
+ "epoch": 39.18173875054609,
+ "grad_norm": 0.21002045273780823,
+ "learning_rate": 0.0006,
+ "loss": 3.601900815963745,
+ "step": 2821
+ },
+ {
+ "epoch": 39.19571865443425,
+ "grad_norm": 0.20531952381134033,
+ "learning_rate": 0.0006,
+ "loss": 3.6405060291290283,
+ "step": 2822
+ },
+ {
+ "epoch": 39.20969855832241,
+ "grad_norm": 0.20646385848522186,
+ "learning_rate": 0.0006,
+ "loss": 3.669617176055908,
+ "step": 2823
+ },
+ {
+ "epoch": 39.22367846221057,
+ "grad_norm": 0.2553980350494385,
+ "learning_rate": 0.0006,
+ "loss": 3.642709255218506,
+ "step": 2824
+ },
+ {
+ "epoch": 39.237658366098735,
+ "grad_norm": 0.2753220498561859,
+ "learning_rate": 0.0006,
+ "loss": 3.668405055999756,
+ "step": 2825
+ },
+ {
+ "epoch": 39.25163826998689,
+ "grad_norm": 0.2425055354833603,
+ "learning_rate": 0.0006,
+ "loss": 3.659559726715088,
+ "step": 2826
+ },
+ {
+ "epoch": 39.265618173875055,
+ "grad_norm": 0.2199426293373108,
+ "learning_rate": 0.0006,
+ "loss": 3.6466197967529297,
+ "step": 2827
+ },
+ {
+ "epoch": 39.27959807776322,
+ "grad_norm": 0.221355602145195,
+ "learning_rate": 0.0006,
+ "loss": 3.639418125152588,
+ "step": 2828
+ },
+ {
+ "epoch": 39.293577981651374,
+ "grad_norm": 0.20777100324630737,
+ "learning_rate": 0.0006,
+ "loss": 3.68102765083313,
+ "step": 2829
+ },
+ {
+ "epoch": 39.30755788553954,
+ "grad_norm": 0.20557557046413422,
+ "learning_rate": 0.0006,
+ "loss": 3.663064956665039,
+ "step": 2830
+ },
+ {
+ "epoch": 39.3215377894277,
+ "grad_norm": 0.2385585904121399,
+ "learning_rate": 0.0006,
+ "loss": 3.6598849296569824,
+ "step": 2831
+ },
+ {
+ "epoch": 39.33551769331586,
+ "grad_norm": 0.25222650170326233,
+ "learning_rate": 0.0006,
+ "loss": 3.635199546813965,
+ "step": 2832
+ },
+ {
+ "epoch": 39.34949759720402,
+ "grad_norm": 0.22894687950611115,
+ "learning_rate": 0.0006,
+ "loss": 3.6100258827209473,
+ "step": 2833
+ },
+ {
+ "epoch": 39.36347750109218,
+ "grad_norm": 0.22945865988731384,
+ "learning_rate": 0.0006,
+ "loss": 3.63069748878479,
+ "step": 2834
+ },
+ {
+ "epoch": 39.37745740498034,
+ "grad_norm": 0.2466309368610382,
+ "learning_rate": 0.0006,
+ "loss": 3.6615123748779297,
+ "step": 2835
+ },
+ {
+ "epoch": 39.391437308868504,
+ "grad_norm": 0.23845571279525757,
+ "learning_rate": 0.0006,
+ "loss": 3.655045509338379,
+ "step": 2836
+ },
+ {
+ "epoch": 39.40541721275666,
+ "grad_norm": 0.20273560285568237,
+ "learning_rate": 0.0006,
+ "loss": 3.6497647762298584,
+ "step": 2837
+ },
+ {
+ "epoch": 39.419397116644824,
+ "grad_norm": 0.19820313155651093,
+ "learning_rate": 0.0006,
+ "loss": 3.6728386878967285,
+ "step": 2838
+ },
+ {
+ "epoch": 39.43337702053299,
+ "grad_norm": 0.21581435203552246,
+ "learning_rate": 0.0006,
+ "loss": 3.660247325897217,
+ "step": 2839
+ },
+ {
+ "epoch": 39.44735692442114,
+ "grad_norm": 0.20559731125831604,
+ "learning_rate": 0.0006,
+ "loss": 3.6244559288024902,
+ "step": 2840
+ },
+ {
+ "epoch": 39.46133682830931,
+ "grad_norm": 0.22041910886764526,
+ "learning_rate": 0.0006,
+ "loss": 3.6577587127685547,
+ "step": 2841
+ },
+ {
+ "epoch": 39.47531673219746,
+ "grad_norm": 0.1966651976108551,
+ "learning_rate": 0.0006,
+ "loss": 3.673975944519043,
+ "step": 2842
+ },
+ {
+ "epoch": 39.489296636085626,
+ "grad_norm": 0.19127163290977478,
+ "learning_rate": 0.0006,
+ "loss": 3.7022414207458496,
+ "step": 2843
+ },
+ {
+ "epoch": 39.50327653997379,
+ "grad_norm": 0.20260316133499146,
+ "learning_rate": 0.0006,
+ "loss": 3.6155128479003906,
+ "step": 2844
+ },
+ {
+ "epoch": 39.517256443861946,
+ "grad_norm": 0.2302546352148056,
+ "learning_rate": 0.0006,
+ "loss": 3.670212984085083,
+ "step": 2845
+ },
+ {
+ "epoch": 39.53123634775011,
+ "grad_norm": 0.2512998878955841,
+ "learning_rate": 0.0006,
+ "loss": 3.6257572174072266,
+ "step": 2846
+ },
+ {
+ "epoch": 39.54521625163827,
+ "grad_norm": 0.24780063331127167,
+ "learning_rate": 0.0006,
+ "loss": 3.6458964347839355,
+ "step": 2847
+ },
+ {
+ "epoch": 39.55919615552643,
+ "grad_norm": 0.21305061876773834,
+ "learning_rate": 0.0006,
+ "loss": 3.666834831237793,
+ "step": 2848
+ },
+ {
+ "epoch": 39.57317605941459,
+ "grad_norm": 0.20699542760849,
+ "learning_rate": 0.0006,
+ "loss": 3.660571813583374,
+ "step": 2849
+ },
+ {
+ "epoch": 39.58715596330275,
+ "grad_norm": 0.20799173414707184,
+ "learning_rate": 0.0006,
+ "loss": 3.649744987487793,
+ "step": 2850
+ },
+ {
+ "epoch": 39.60113586719091,
+ "grad_norm": 0.20118695497512817,
+ "learning_rate": 0.0006,
+ "loss": 3.663865089416504,
+ "step": 2851
+ },
+ {
+ "epoch": 39.615115771079076,
+ "grad_norm": 0.2019277960062027,
+ "learning_rate": 0.0006,
+ "loss": 3.6600584983825684,
+ "step": 2852
+ },
+ {
+ "epoch": 39.62909567496723,
+ "grad_norm": 0.2093067765235901,
+ "learning_rate": 0.0006,
+ "loss": 3.6926870346069336,
+ "step": 2853
+ },
+ {
+ "epoch": 39.643075578855395,
+ "grad_norm": 0.2280927449464798,
+ "learning_rate": 0.0006,
+ "loss": 3.677157402038574,
+ "step": 2854
+ },
+ {
+ "epoch": 39.65705548274356,
+ "grad_norm": 0.219201922416687,
+ "learning_rate": 0.0006,
+ "loss": 3.6763858795166016,
+ "step": 2855
+ },
+ {
+ "epoch": 39.671035386631715,
+ "grad_norm": 0.2132134735584259,
+ "learning_rate": 0.0006,
+ "loss": 3.6853187084198,
+ "step": 2856
+ },
+ {
+ "epoch": 39.68501529051988,
+ "grad_norm": 0.1979551613330841,
+ "learning_rate": 0.0006,
+ "loss": 3.633850574493408,
+ "step": 2857
+ },
+ {
+ "epoch": 39.69899519440804,
+ "grad_norm": 0.2181098908185959,
+ "learning_rate": 0.0006,
+ "loss": 3.671356201171875,
+ "step": 2858
+ },
+ {
+ "epoch": 39.7129750982962,
+ "grad_norm": 0.21820145845413208,
+ "learning_rate": 0.0006,
+ "loss": 3.640101432800293,
+ "step": 2859
+ },
+ {
+ "epoch": 39.72695500218436,
+ "grad_norm": 0.22734931111335754,
+ "learning_rate": 0.0006,
+ "loss": 3.6326088905334473,
+ "step": 2860
+ },
+ {
+ "epoch": 39.74093490607252,
+ "grad_norm": 0.2407236248254776,
+ "learning_rate": 0.0006,
+ "loss": 3.665416955947876,
+ "step": 2861
+ },
+ {
+ "epoch": 39.75491480996068,
+ "grad_norm": 0.2507246434688568,
+ "learning_rate": 0.0006,
+ "loss": 3.6996266841888428,
+ "step": 2862
+ },
+ {
+ "epoch": 39.768894713848844,
+ "grad_norm": 0.2273668497800827,
+ "learning_rate": 0.0006,
+ "loss": 3.6786417961120605,
+ "step": 2863
+ },
+ {
+ "epoch": 39.782874617737,
+ "grad_norm": 0.20584821701049805,
+ "learning_rate": 0.0006,
+ "loss": 3.6539974212646484,
+ "step": 2864
+ },
+ {
+ "epoch": 39.796854521625164,
+ "grad_norm": 0.2327643632888794,
+ "learning_rate": 0.0006,
+ "loss": 3.681267738342285,
+ "step": 2865
+ },
+ {
+ "epoch": 39.81083442551333,
+ "grad_norm": 0.24243171513080597,
+ "learning_rate": 0.0006,
+ "loss": 3.6814589500427246,
+ "step": 2866
+ },
+ {
+ "epoch": 39.824814329401484,
+ "grad_norm": 0.21462969481945038,
+ "learning_rate": 0.0006,
+ "loss": 3.681321620941162,
+ "step": 2867
+ },
+ {
+ "epoch": 39.83879423328965,
+ "grad_norm": 0.20973211526870728,
+ "learning_rate": 0.0006,
+ "loss": 3.636986017227173,
+ "step": 2868
+ },
+ {
+ "epoch": 39.8527741371778,
+ "grad_norm": 0.20357508957386017,
+ "learning_rate": 0.0006,
+ "loss": 3.6664552688598633,
+ "step": 2869
+ },
+ {
+ "epoch": 39.86675404106597,
+ "grad_norm": 0.20389088988304138,
+ "learning_rate": 0.0006,
+ "loss": 3.6685709953308105,
+ "step": 2870
+ },
+ {
+ "epoch": 39.88073394495413,
+ "grad_norm": 0.21024158596992493,
+ "learning_rate": 0.0006,
+ "loss": 3.650658130645752,
+ "step": 2871
+ },
+ {
+ "epoch": 39.89471384884229,
+ "grad_norm": 0.19477778673171997,
+ "learning_rate": 0.0006,
+ "loss": 3.664834976196289,
+ "step": 2872
+ },
+ {
+ "epoch": 39.90869375273045,
+ "grad_norm": 0.22345365583896637,
+ "learning_rate": 0.0006,
+ "loss": 3.6652634143829346,
+ "step": 2873
+ },
+ {
+ "epoch": 39.92267365661861,
+ "grad_norm": 0.206041157245636,
+ "learning_rate": 0.0006,
+ "loss": 3.6649513244628906,
+ "step": 2874
+ },
+ {
+ "epoch": 39.93665356050677,
+ "grad_norm": 0.18524570763111115,
+ "learning_rate": 0.0006,
+ "loss": 3.665579080581665,
+ "step": 2875
+ },
+ {
+ "epoch": 39.95063346439493,
+ "grad_norm": 0.17730890214443207,
+ "learning_rate": 0.0006,
+ "loss": 3.6372880935668945,
+ "step": 2876
+ },
+ {
+ "epoch": 39.964613368283096,
+ "grad_norm": 0.213678777217865,
+ "learning_rate": 0.0006,
+ "loss": 3.681305408477783,
+ "step": 2877
+ },
+ {
+ "epoch": 39.97859327217125,
+ "grad_norm": 0.2595686614513397,
+ "learning_rate": 0.0006,
+ "loss": 3.6660351753234863,
+ "step": 2878
+ },
+ {
+ "epoch": 39.992573176059416,
+ "grad_norm": 0.22678600251674652,
+ "learning_rate": 0.0006,
+ "loss": 3.681619644165039,
+ "step": 2879
+ },
+ {
+ "epoch": 40.0,
+ "grad_norm": 0.2294030636548996,
+ "learning_rate": 0.0006,
+ "loss": 3.654366970062256,
+ "step": 2880
+ },
+ {
+ "epoch": 40.0,
+ "eval_loss": 3.9810431003570557,
+ "eval_runtime": 43.832,
+ "eval_samples_per_second": 55.713,
+ "eval_steps_per_second": 3.491,
+ "step": 2880
+ },
+ {
+ "epoch": 40.01397990388816,
+ "grad_norm": 0.220590278506279,
+ "learning_rate": 0.0006,
+ "loss": 3.6346259117126465,
+ "step": 2881
+ },
+ {
+ "epoch": 40.02795980777632,
+ "grad_norm": 0.2568257749080658,
+ "learning_rate": 0.0006,
+ "loss": 3.64436674118042,
+ "step": 2882
+ },
+ {
+ "epoch": 40.04193971166448,
+ "grad_norm": 0.2869258224964142,
+ "learning_rate": 0.0006,
+ "loss": 3.613316059112549,
+ "step": 2883
+ },
+ {
+ "epoch": 40.05591961555265,
+ "grad_norm": 0.3005172908306122,
+ "learning_rate": 0.0006,
+ "loss": 3.607339859008789,
+ "step": 2884
+ },
+ {
+ "epoch": 40.0698995194408,
+ "grad_norm": 0.28642305731773376,
+ "learning_rate": 0.0006,
+ "loss": 3.65151047706604,
+ "step": 2885
+ },
+ {
+ "epoch": 40.083879423328966,
+ "grad_norm": 0.24176034331321716,
+ "learning_rate": 0.0006,
+ "loss": 3.633742332458496,
+ "step": 2886
+ },
+ {
+ "epoch": 40.09785932721712,
+ "grad_norm": 0.2139386385679245,
+ "learning_rate": 0.0006,
+ "loss": 3.614245653152466,
+ "step": 2887
+ },
+ {
+ "epoch": 40.111839231105286,
+ "grad_norm": 0.28025752305984497,
+ "learning_rate": 0.0006,
+ "loss": 3.6415746212005615,
+ "step": 2888
+ },
+ {
+ "epoch": 40.12581913499345,
+ "grad_norm": 0.28534311056137085,
+ "learning_rate": 0.0006,
+ "loss": 3.6302027702331543,
+ "step": 2889
+ },
+ {
+ "epoch": 40.139799038881605,
+ "grad_norm": 0.26842808723449707,
+ "learning_rate": 0.0006,
+ "loss": 3.657480239868164,
+ "step": 2890
+ },
+ {
+ "epoch": 40.15377894276977,
+ "grad_norm": 0.25235965847969055,
+ "learning_rate": 0.0006,
+ "loss": 3.6843931674957275,
+ "step": 2891
+ },
+ {
+ "epoch": 40.16775884665793,
+ "grad_norm": 0.22192128002643585,
+ "learning_rate": 0.0006,
+ "loss": 3.6374592781066895,
+ "step": 2892
+ },
+ {
+ "epoch": 40.18173875054609,
+ "grad_norm": 0.21524523198604584,
+ "learning_rate": 0.0006,
+ "loss": 3.6052589416503906,
+ "step": 2893
+ },
+ {
+ "epoch": 40.19571865443425,
+ "grad_norm": 0.21011514961719513,
+ "learning_rate": 0.0006,
+ "loss": 3.62197208404541,
+ "step": 2894
+ },
+ {
+ "epoch": 40.20969855832241,
+ "grad_norm": 0.23187001049518585,
+ "learning_rate": 0.0006,
+ "loss": 3.6505377292633057,
+ "step": 2895
+ },
+ {
+ "epoch": 40.22367846221057,
+ "grad_norm": 0.21962887048721313,
+ "learning_rate": 0.0006,
+ "loss": 3.594991683959961,
+ "step": 2896
+ },
+ {
+ "epoch": 40.237658366098735,
+ "grad_norm": 0.23299361765384674,
+ "learning_rate": 0.0006,
+ "loss": 3.6370339393615723,
+ "step": 2897
+ },
+ {
+ "epoch": 40.25163826998689,
+ "grad_norm": 0.22504881024360657,
+ "learning_rate": 0.0006,
+ "loss": 3.6173815727233887,
+ "step": 2898
+ },
+ {
+ "epoch": 40.265618173875055,
+ "grad_norm": 0.21678344905376434,
+ "learning_rate": 0.0006,
+ "loss": 3.6231422424316406,
+ "step": 2899
+ },
+ {
+ "epoch": 40.27959807776322,
+ "grad_norm": 0.2184615284204483,
+ "learning_rate": 0.0006,
+ "loss": 3.6552987098693848,
+ "step": 2900
+ },
+ {
+ "epoch": 40.293577981651374,
+ "grad_norm": 0.2145485281944275,
+ "learning_rate": 0.0006,
+ "loss": 3.628025531768799,
+ "step": 2901
+ },
+ {
+ "epoch": 40.30755788553954,
+ "grad_norm": 0.21119336783885956,
+ "learning_rate": 0.0006,
+ "loss": 3.6511590480804443,
+ "step": 2902
+ },
+ {
+ "epoch": 40.3215377894277,
+ "grad_norm": 0.2158869504928589,
+ "learning_rate": 0.0006,
+ "loss": 3.6302051544189453,
+ "step": 2903
+ },
+ {
+ "epoch": 40.33551769331586,
+ "grad_norm": 0.22736455500125885,
+ "learning_rate": 0.0006,
+ "loss": 3.6678733825683594,
+ "step": 2904
+ },
+ {
+ "epoch": 40.34949759720402,
+ "grad_norm": 0.22723783552646637,
+ "learning_rate": 0.0006,
+ "loss": 3.632068634033203,
+ "step": 2905
+ },
+ {
+ "epoch": 40.36347750109218,
+ "grad_norm": 0.20606189966201782,
+ "learning_rate": 0.0006,
+ "loss": 3.6534624099731445,
+ "step": 2906
+ },
+ {
+ "epoch": 40.37745740498034,
+ "grad_norm": 0.21033786237239838,
+ "learning_rate": 0.0006,
+ "loss": 3.6194064617156982,
+ "step": 2907
+ },
+ {
+ "epoch": 40.391437308868504,
+ "grad_norm": 0.2175762951374054,
+ "learning_rate": 0.0006,
+ "loss": 3.637385368347168,
+ "step": 2908
+ },
+ {
+ "epoch": 40.40541721275666,
+ "grad_norm": 0.21063381433486938,
+ "learning_rate": 0.0006,
+ "loss": 3.656857967376709,
+ "step": 2909
+ },
+ {
+ "epoch": 40.419397116644824,
+ "grad_norm": 0.19982226192951202,
+ "learning_rate": 0.0006,
+ "loss": 3.655738353729248,
+ "step": 2910
+ },
+ {
+ "epoch": 40.43337702053299,
+ "grad_norm": 0.20608870685100555,
+ "learning_rate": 0.0006,
+ "loss": 3.6521377563476562,
+ "step": 2911
+ },
+ {
+ "epoch": 40.44735692442114,
+ "grad_norm": 0.19817334413528442,
+ "learning_rate": 0.0006,
+ "loss": 3.61527681350708,
+ "step": 2912
+ },
+ {
+ "epoch": 40.46133682830931,
+ "grad_norm": 0.20407769083976746,
+ "learning_rate": 0.0006,
+ "loss": 3.6668765544891357,
+ "step": 2913
+ },
+ {
+ "epoch": 40.47531673219746,
+ "grad_norm": 0.19874799251556396,
+ "learning_rate": 0.0006,
+ "loss": 3.6748533248901367,
+ "step": 2914
+ },
+ {
+ "epoch": 40.489296636085626,
+ "grad_norm": 0.1979510486125946,
+ "learning_rate": 0.0006,
+ "loss": 3.6141977310180664,
+ "step": 2915
+ },
+ {
+ "epoch": 40.50327653997379,
+ "grad_norm": 0.19811518490314484,
+ "learning_rate": 0.0006,
+ "loss": 3.6391215324401855,
+ "step": 2916
+ },
+ {
+ "epoch": 40.517256443861946,
+ "grad_norm": 0.20208898186683655,
+ "learning_rate": 0.0006,
+ "loss": 3.664179801940918,
+ "step": 2917
+ },
+ {
+ "epoch": 40.53123634775011,
+ "grad_norm": 0.22063760459423065,
+ "learning_rate": 0.0006,
+ "loss": 3.645388126373291,
+ "step": 2918
+ },
+ {
+ "epoch": 40.54521625163827,
+ "grad_norm": 0.23420891165733337,
+ "learning_rate": 0.0006,
+ "loss": 3.6424708366394043,
+ "step": 2919
+ },
+ {
+ "epoch": 40.55919615552643,
+ "grad_norm": 0.2263612151145935,
+ "learning_rate": 0.0006,
+ "loss": 3.6649224758148193,
+ "step": 2920
+ },
+ {
+ "epoch": 40.57317605941459,
+ "grad_norm": 0.22745433449745178,
+ "learning_rate": 0.0006,
+ "loss": 3.631586790084839,
+ "step": 2921
+ },
+ {
+ "epoch": 40.58715596330275,
+ "grad_norm": 0.22413238883018494,
+ "learning_rate": 0.0006,
+ "loss": 3.6666674613952637,
+ "step": 2922
+ },
+ {
+ "epoch": 40.60113586719091,
+ "grad_norm": 0.2178265005350113,
+ "learning_rate": 0.0006,
+ "loss": 3.6002111434936523,
+ "step": 2923
+ },
+ {
+ "epoch": 40.615115771079076,
+ "grad_norm": 0.21822521090507507,
+ "learning_rate": 0.0006,
+ "loss": 3.6538329124450684,
+ "step": 2924
+ },
+ {
+ "epoch": 40.62909567496723,
+ "grad_norm": 0.21728558838367462,
+ "learning_rate": 0.0006,
+ "loss": 3.651254653930664,
+ "step": 2925
+ },
+ {
+ "epoch": 40.643075578855395,
+ "grad_norm": 0.22377707064151764,
+ "learning_rate": 0.0006,
+ "loss": 3.6505789756774902,
+ "step": 2926
+ },
+ {
+ "epoch": 40.65705548274356,
+ "grad_norm": 0.2035706788301468,
+ "learning_rate": 0.0006,
+ "loss": 3.6471967697143555,
+ "step": 2927
+ },
+ {
+ "epoch": 40.671035386631715,
+ "grad_norm": 0.2011154741048813,
+ "learning_rate": 0.0006,
+ "loss": 3.6582741737365723,
+ "step": 2928
+ },
+ {
+ "epoch": 40.68501529051988,
+ "grad_norm": 0.23812712728977203,
+ "learning_rate": 0.0006,
+ "loss": 3.6388421058654785,
+ "step": 2929
+ },
+ {
+ "epoch": 40.69899519440804,
+ "grad_norm": 0.2117796689271927,
+ "learning_rate": 0.0006,
+ "loss": 3.688337802886963,
+ "step": 2930
+ },
+ {
+ "epoch": 40.7129750982962,
+ "grad_norm": 0.18440942466259003,
+ "learning_rate": 0.0006,
+ "loss": 3.6409997940063477,
+ "step": 2931
+ },
+ {
+ "epoch": 40.72695500218436,
+ "grad_norm": 0.19005917012691498,
+ "learning_rate": 0.0006,
+ "loss": 3.6760218143463135,
+ "step": 2932
+ },
+ {
+ "epoch": 40.74093490607252,
+ "grad_norm": 0.19982726871967316,
+ "learning_rate": 0.0006,
+ "loss": 3.6375021934509277,
+ "step": 2933
+ },
+ {
+ "epoch": 40.75491480996068,
+ "grad_norm": 0.19240257143974304,
+ "learning_rate": 0.0006,
+ "loss": 3.636807918548584,
+ "step": 2934
+ },
+ {
+ "epoch": 40.768894713848844,
+ "grad_norm": 0.20563434064388275,
+ "learning_rate": 0.0006,
+ "loss": 3.6667532920837402,
+ "step": 2935
+ },
+ {
+ "epoch": 40.782874617737,
+ "grad_norm": 0.26531776785850525,
+ "learning_rate": 0.0006,
+ "loss": 3.6332945823669434,
+ "step": 2936
+ },
+ {
+ "epoch": 40.796854521625164,
+ "grad_norm": 0.2766861021518707,
+ "learning_rate": 0.0006,
+ "loss": 3.6645212173461914,
+ "step": 2937
+ },
+ {
+ "epoch": 40.81083442551333,
+ "grad_norm": 0.235750213265419,
+ "learning_rate": 0.0006,
+ "loss": 3.67067813873291,
+ "step": 2938
+ },
+ {
+ "epoch": 40.824814329401484,
+ "grad_norm": 0.20778773725032806,
+ "learning_rate": 0.0006,
+ "loss": 3.6565768718719482,
+ "step": 2939
+ },
+ {
+ "epoch": 40.83879423328965,
+ "grad_norm": 0.187322199344635,
+ "learning_rate": 0.0006,
+ "loss": 3.620129346847534,
+ "step": 2940
+ },
+ {
+ "epoch": 40.8527741371778,
+ "grad_norm": 0.20576219260692596,
+ "learning_rate": 0.0006,
+ "loss": 3.6700220108032227,
+ "step": 2941
+ },
+ {
+ "epoch": 40.86675404106597,
+ "grad_norm": 0.2197345495223999,
+ "learning_rate": 0.0006,
+ "loss": 3.709311008453369,
+ "step": 2942
+ },
+ {
+ "epoch": 40.88073394495413,
+ "grad_norm": 0.20205345749855042,
+ "learning_rate": 0.0006,
+ "loss": 3.6646361351013184,
+ "step": 2943
+ },
+ {
+ "epoch": 40.89471384884229,
+ "grad_norm": 0.20026250183582306,
+ "learning_rate": 0.0006,
+ "loss": 3.6639604568481445,
+ "step": 2944
+ },
+ {
+ "epoch": 40.90869375273045,
+ "grad_norm": 0.224214106798172,
+ "learning_rate": 0.0006,
+ "loss": 3.6669654846191406,
+ "step": 2945
+ },
+ {
+ "epoch": 40.92267365661861,
+ "grad_norm": 0.2155972272157669,
+ "learning_rate": 0.0006,
+ "loss": 3.6494603157043457,
+ "step": 2946
+ },
+ {
+ "epoch": 40.93665356050677,
+ "grad_norm": 0.23038871586322784,
+ "learning_rate": 0.0006,
+ "loss": 3.6368541717529297,
+ "step": 2947
+ },
+ {
+ "epoch": 40.95063346439493,
+ "grad_norm": 0.2001815289258957,
+ "learning_rate": 0.0006,
+ "loss": 3.711174249649048,
+ "step": 2948
+ },
+ {
+ "epoch": 40.964613368283096,
+ "grad_norm": 0.20428860187530518,
+ "learning_rate": 0.0006,
+ "loss": 3.6342315673828125,
+ "step": 2949
+ },
+ {
+ "epoch": 40.97859327217125,
+ "grad_norm": 0.20724134147167206,
+ "learning_rate": 0.0006,
+ "loss": 3.679375171661377,
+ "step": 2950
+ },
+ {
+ "epoch": 40.992573176059416,
+ "grad_norm": 0.20723849534988403,
+ "learning_rate": 0.0006,
+ "loss": 3.6477675437927246,
+ "step": 2951
+ },
+ {
+ "epoch": 41.0,
+ "grad_norm": 0.23891447484493256,
+ "learning_rate": 0.0006,
+ "loss": 3.632950782775879,
+ "step": 2952
+ },
+ {
+ "epoch": 41.0,
+ "eval_loss": 3.9871256351470947,
+ "eval_runtime": 43.8367,
+ "eval_samples_per_second": 55.707,
+ "eval_steps_per_second": 3.49,
+ "step": 2952
+ },
+ {
+ "epoch": 41.01397990388816,
+ "grad_norm": 0.2258434295654297,
+ "learning_rate": 0.0006,
+ "loss": 3.631239414215088,
+ "step": 2953
+ },
+ {
+ "epoch": 41.02795980777632,
+ "grad_norm": 0.24932795763015747,
+ "learning_rate": 0.0006,
+ "loss": 3.601083517074585,
+ "step": 2954
+ },
+ {
+ "epoch": 41.04193971166448,
+ "grad_norm": 0.2688388228416443,
+ "learning_rate": 0.0006,
+ "loss": 3.655724048614502,
+ "step": 2955
+ },
+ {
+ "epoch": 41.05591961555265,
+ "grad_norm": 0.23880694806575775,
+ "learning_rate": 0.0006,
+ "loss": 3.617628812789917,
+ "step": 2956
+ },
+ {
+ "epoch": 41.0698995194408,
+ "grad_norm": 0.23784616589546204,
+ "learning_rate": 0.0006,
+ "loss": 3.6309127807617188,
+ "step": 2957
+ },
+ {
+ "epoch": 41.083879423328966,
+ "grad_norm": 0.22609511017799377,
+ "learning_rate": 0.0006,
+ "loss": 3.6138553619384766,
+ "step": 2958
+ },
+ {
+ "epoch": 41.09785932721712,
+ "grad_norm": 0.22936329245567322,
+ "learning_rate": 0.0006,
+ "loss": 3.6620094776153564,
+ "step": 2959
+ },
+ {
+ "epoch": 41.111839231105286,
+ "grad_norm": 0.23354190587997437,
+ "learning_rate": 0.0006,
+ "loss": 3.59959077835083,
+ "step": 2960
+ },
+ {
+ "epoch": 41.12581913499345,
+ "grad_norm": 0.2496265172958374,
+ "learning_rate": 0.0006,
+ "loss": 3.588359832763672,
+ "step": 2961
+ },
+ {
+ "epoch": 41.139799038881605,
+ "grad_norm": 0.23618635535240173,
+ "learning_rate": 0.0006,
+ "loss": 3.6341018676757812,
+ "step": 2962
+ },
+ {
+ "epoch": 41.15377894276977,
+ "grad_norm": 0.23724640905857086,
+ "learning_rate": 0.0006,
+ "loss": 3.6170616149902344,
+ "step": 2963
+ },
+ {
+ "epoch": 41.16775884665793,
+ "grad_norm": 0.20944789052009583,
+ "learning_rate": 0.0006,
+ "loss": 3.6158995628356934,
+ "step": 2964
+ },
+ {
+ "epoch": 41.18173875054609,
+ "grad_norm": 0.2089492678642273,
+ "learning_rate": 0.0006,
+ "loss": 3.586538314819336,
+ "step": 2965
+ },
+ {
+ "epoch": 41.19571865443425,
+ "grad_norm": 0.2370915710926056,
+ "learning_rate": 0.0006,
+ "loss": 3.599236011505127,
+ "step": 2966
+ },
+ {
+ "epoch": 41.20969855832241,
+ "grad_norm": 0.25749558210372925,
+ "learning_rate": 0.0006,
+ "loss": 3.631399154663086,
+ "step": 2967
+ },
+ {
+ "epoch": 41.22367846221057,
+ "grad_norm": 0.24754776060581207,
+ "learning_rate": 0.0006,
+ "loss": 3.6503920555114746,
+ "step": 2968
+ },
+ {
+ "epoch": 41.237658366098735,
+ "grad_norm": 0.22060903906822205,
+ "learning_rate": 0.0006,
+ "loss": 3.671673536300659,
+ "step": 2969
+ },
+ {
+ "epoch": 41.25163826998689,
+ "grad_norm": 0.19416594505310059,
+ "learning_rate": 0.0006,
+ "loss": 3.6158413887023926,
+ "step": 2970
+ },
+ {
+ "epoch": 41.265618173875055,
+ "grad_norm": 0.22596411406993866,
+ "learning_rate": 0.0006,
+ "loss": 3.64003849029541,
+ "step": 2971
+ },
+ {
+ "epoch": 41.27959807776322,
+ "grad_norm": 0.26785415410995483,
+ "learning_rate": 0.0006,
+ "loss": 3.642327308654785,
+ "step": 2972
+ },
+ {
+ "epoch": 41.293577981651374,
+ "grad_norm": 0.2988710403442383,
+ "learning_rate": 0.0006,
+ "loss": 3.6018929481506348,
+ "step": 2973
+ },
+ {
+ "epoch": 41.30755788553954,
+ "grad_norm": 0.2428133338689804,
+ "learning_rate": 0.0006,
+ "loss": 3.645270824432373,
+ "step": 2974
+ },
+ {
+ "epoch": 41.3215377894277,
+ "grad_norm": 0.20330320298671722,
+ "learning_rate": 0.0006,
+ "loss": 3.625495433807373,
+ "step": 2975
+ },
+ {
+ "epoch": 41.33551769331586,
+ "grad_norm": 0.2267787605524063,
+ "learning_rate": 0.0006,
+ "loss": 3.6469204425811768,
+ "step": 2976
+ },
+ {
+ "epoch": 41.34949759720402,
+ "grad_norm": 0.20702822506427765,
+ "learning_rate": 0.0006,
+ "loss": 3.644191265106201,
+ "step": 2977
+ },
+ {
+ "epoch": 41.36347750109218,
+ "grad_norm": 0.19693221151828766,
+ "learning_rate": 0.0006,
+ "loss": 3.591794967651367,
+ "step": 2978
+ },
+ {
+ "epoch": 41.37745740498034,
+ "grad_norm": 0.21193185448646545,
+ "learning_rate": 0.0006,
+ "loss": 3.6283936500549316,
+ "step": 2979
+ },
+ {
+ "epoch": 41.391437308868504,
+ "grad_norm": 0.20953163504600525,
+ "learning_rate": 0.0006,
+ "loss": 3.617565155029297,
+ "step": 2980
+ },
+ {
+ "epoch": 41.40541721275666,
+ "grad_norm": 0.21839819848537445,
+ "learning_rate": 0.0006,
+ "loss": 3.621209144592285,
+ "step": 2981
+ },
+ {
+ "epoch": 41.419397116644824,
+ "grad_norm": 0.2152671068906784,
+ "learning_rate": 0.0006,
+ "loss": 3.643197536468506,
+ "step": 2982
+ },
+ {
+ "epoch": 41.43337702053299,
+ "grad_norm": 0.2507486641407013,
+ "learning_rate": 0.0006,
+ "loss": 3.657499313354492,
+ "step": 2983
+ },
+ {
+ "epoch": 41.44735692442114,
+ "grad_norm": 0.24695388972759247,
+ "learning_rate": 0.0006,
+ "loss": 3.62170672416687,
+ "step": 2984
+ },
+ {
+ "epoch": 41.46133682830931,
+ "grad_norm": 0.22652822732925415,
+ "learning_rate": 0.0006,
+ "loss": 3.64322566986084,
+ "step": 2985
+ },
+ {
+ "epoch": 41.47531673219746,
+ "grad_norm": 0.2575881779193878,
+ "learning_rate": 0.0006,
+ "loss": 3.659621477127075,
+ "step": 2986
+ },
+ {
+ "epoch": 41.489296636085626,
+ "grad_norm": 0.24162672460079193,
+ "learning_rate": 0.0006,
+ "loss": 3.6527223587036133,
+ "step": 2987
+ },
+ {
+ "epoch": 41.50327653997379,
+ "grad_norm": 0.20930497348308563,
+ "learning_rate": 0.0006,
+ "loss": 3.6412787437438965,
+ "step": 2988
+ },
+ {
+ "epoch": 41.517256443861946,
+ "grad_norm": 0.20480819046497345,
+ "learning_rate": 0.0006,
+ "loss": 3.614767074584961,
+ "step": 2989
+ },
+ {
+ "epoch": 41.53123634775011,
+ "grad_norm": 0.20015820860862732,
+ "learning_rate": 0.0006,
+ "loss": 3.6512045860290527,
+ "step": 2990
+ },
+ {
+ "epoch": 41.54521625163827,
+ "grad_norm": 0.20220743119716644,
+ "learning_rate": 0.0006,
+ "loss": 3.6732325553894043,
+ "step": 2991
+ },
+ {
+ "epoch": 41.55919615552643,
+ "grad_norm": 0.20505326986312866,
+ "learning_rate": 0.0006,
+ "loss": 3.6374664306640625,
+ "step": 2992
+ },
+ {
+ "epoch": 41.57317605941459,
+ "grad_norm": 0.19423344731330872,
+ "learning_rate": 0.0006,
+ "loss": 3.6564126014709473,
+ "step": 2993
+ },
+ {
+ "epoch": 41.58715596330275,
+ "grad_norm": 0.19284583628177643,
+ "learning_rate": 0.0006,
+ "loss": 3.6460509300231934,
+ "step": 2994
+ },
+ {
+ "epoch": 41.60113586719091,
+ "grad_norm": 0.18488959968090057,
+ "learning_rate": 0.0006,
+ "loss": 3.632859468460083,
+ "step": 2995
+ },
+ {
+ "epoch": 41.615115771079076,
+ "grad_norm": 0.18816296756267548,
+ "learning_rate": 0.0006,
+ "loss": 3.5958361625671387,
+ "step": 2996
+ },
+ {
+ "epoch": 41.62909567496723,
+ "grad_norm": 0.18987809121608734,
+ "learning_rate": 0.0006,
+ "loss": 3.6330695152282715,
+ "step": 2997
+ },
+ {
+ "epoch": 41.643075578855395,
+ "grad_norm": 0.18999919295310974,
+ "learning_rate": 0.0006,
+ "loss": 3.6486730575561523,
+ "step": 2998
+ },
+ {
+ "epoch": 41.65705548274356,
+ "grad_norm": 0.20190183818340302,
+ "learning_rate": 0.0006,
+ "loss": 3.6564230918884277,
+ "step": 2999
+ },
+ {
+ "epoch": 41.671035386631715,
+ "grad_norm": 0.20331363379955292,
+ "learning_rate": 0.0006,
+ "loss": 3.6789698600769043,
+ "step": 3000
+ },
+ {
+ "epoch": 41.68501529051988,
+ "grad_norm": 0.21599505841732025,
+ "learning_rate": 0.0006,
+ "loss": 3.6544511318206787,
+ "step": 3001
+ },
+ {
+ "epoch": 41.69899519440804,
+ "grad_norm": 0.21123184263706207,
+ "learning_rate": 0.0006,
+ "loss": 3.6506948471069336,
+ "step": 3002
+ },
+ {
+ "epoch": 41.7129750982962,
+ "grad_norm": 0.21337002515792847,
+ "learning_rate": 0.0006,
+ "loss": 3.676854372024536,
+ "step": 3003
+ },
+ {
+ "epoch": 41.72695500218436,
+ "grad_norm": 0.22567597031593323,
+ "learning_rate": 0.0006,
+ "loss": 3.6467485427856445,
+ "step": 3004
+ },
+ {
+ "epoch": 41.74093490607252,
+ "grad_norm": 0.22923491895198822,
+ "learning_rate": 0.0006,
+ "loss": 3.663224697113037,
+ "step": 3005
+ },
+ {
+ "epoch": 41.75491480996068,
+ "grad_norm": 0.21511489152908325,
+ "learning_rate": 0.0006,
+ "loss": 3.6290054321289062,
+ "step": 3006
+ },
+ {
+ "epoch": 41.768894713848844,
+ "grad_norm": 0.23855915665626526,
+ "learning_rate": 0.0006,
+ "loss": 3.631225109100342,
+ "step": 3007
+ },
+ {
+ "epoch": 41.782874617737,
+ "grad_norm": 0.22771067917346954,
+ "learning_rate": 0.0006,
+ "loss": 3.652575731277466,
+ "step": 3008
+ },
+ {
+ "epoch": 41.796854521625164,
+ "grad_norm": 0.2006237953901291,
+ "learning_rate": 0.0006,
+ "loss": 3.6883468627929688,
+ "step": 3009
+ },
+ {
+ "epoch": 41.81083442551333,
+ "grad_norm": 0.21182459592819214,
+ "learning_rate": 0.0006,
+ "loss": 3.6443567276000977,
+ "step": 3010
+ },
+ {
+ "epoch": 41.824814329401484,
+ "grad_norm": 0.21083690226078033,
+ "learning_rate": 0.0006,
+ "loss": 3.66660475730896,
+ "step": 3011
+ },
+ {
+ "epoch": 41.83879423328965,
+ "grad_norm": 0.21232296526432037,
+ "learning_rate": 0.0006,
+ "loss": 3.6436524391174316,
+ "step": 3012
+ },
+ {
+ "epoch": 41.8527741371778,
+ "grad_norm": 0.2089361697435379,
+ "learning_rate": 0.0006,
+ "loss": 3.648113250732422,
+ "step": 3013
+ },
+ {
+ "epoch": 41.86675404106597,
+ "grad_norm": 0.21517033874988556,
+ "learning_rate": 0.0006,
+ "loss": 3.6382269859313965,
+ "step": 3014
+ },
+ {
+ "epoch": 41.88073394495413,
+ "grad_norm": 0.1930733323097229,
+ "learning_rate": 0.0006,
+ "loss": 3.639441967010498,
+ "step": 3015
+ },
+ {
+ "epoch": 41.89471384884229,
+ "grad_norm": 0.18282832205295563,
+ "learning_rate": 0.0006,
+ "loss": 3.652860164642334,
+ "step": 3016
+ },
+ {
+ "epoch": 41.90869375273045,
+ "grad_norm": 0.18649716675281525,
+ "learning_rate": 0.0006,
+ "loss": 3.6335558891296387,
+ "step": 3017
+ },
+ {
+ "epoch": 41.92267365661861,
+ "grad_norm": 0.18873754143714905,
+ "learning_rate": 0.0006,
+ "loss": 3.6743149757385254,
+ "step": 3018
+ },
+ {
+ "epoch": 41.93665356050677,
+ "grad_norm": 0.1937907189130783,
+ "learning_rate": 0.0006,
+ "loss": 3.6749300956726074,
+ "step": 3019
+ },
+ {
+ "epoch": 41.95063346439493,
+ "grad_norm": 0.20620854198932648,
+ "learning_rate": 0.0006,
+ "loss": 3.6591262817382812,
+ "step": 3020
+ },
+ {
+ "epoch": 41.964613368283096,
+ "grad_norm": 0.18541009724140167,
+ "learning_rate": 0.0006,
+ "loss": 3.647010326385498,
+ "step": 3021
+ },
+ {
+ "epoch": 41.97859327217125,
+ "grad_norm": 0.19224928319454193,
+ "learning_rate": 0.0006,
+ "loss": 3.629920482635498,
+ "step": 3022
+ },
+ {
+ "epoch": 41.992573176059416,
+ "grad_norm": 0.21286419034004211,
+ "learning_rate": 0.0006,
+ "loss": 3.6516964435577393,
+ "step": 3023
+ },
+ {
+ "epoch": 42.0,
+ "grad_norm": 0.24787360429763794,
+ "learning_rate": 0.0006,
+ "loss": 3.6378865242004395,
+ "step": 3024
+ },
+ {
+ "epoch": 42.0,
+ "eval_loss": 3.9910318851470947,
+ "eval_runtime": 43.7914,
+ "eval_samples_per_second": 55.764,
+ "eval_steps_per_second": 3.494,
+ "step": 3024
+ },
+ {
+ "epoch": 42.01397990388816,
+ "grad_norm": 0.21036255359649658,
+ "learning_rate": 0.0006,
+ "loss": 3.6604344844818115,
+ "step": 3025
+ },
+ {
+ "epoch": 42.02795980777632,
+ "grad_norm": 0.22240597009658813,
+ "learning_rate": 0.0006,
+ "loss": 3.6160645484924316,
+ "step": 3026
+ },
+ {
+ "epoch": 42.04193971166448,
+ "grad_norm": 0.2487850785255432,
+ "learning_rate": 0.0006,
+ "loss": 3.6293773651123047,
+ "step": 3027
+ },
+ {
+ "epoch": 42.05591961555265,
+ "grad_norm": 0.27058133482933044,
+ "learning_rate": 0.0006,
+ "loss": 3.5827436447143555,
+ "step": 3028
+ },
+ {
+ "epoch": 42.0698995194408,
+ "grad_norm": 0.25001782178878784,
+ "learning_rate": 0.0006,
+ "loss": 3.5833029747009277,
+ "step": 3029
+ },
+ {
+ "epoch": 42.083879423328966,
+ "grad_norm": 0.23811939358711243,
+ "learning_rate": 0.0006,
+ "loss": 3.605585813522339,
+ "step": 3030
+ },
+ {
+ "epoch": 42.09785932721712,
+ "grad_norm": 0.23279601335525513,
+ "learning_rate": 0.0006,
+ "loss": 3.607205867767334,
+ "step": 3031
+ },
+ {
+ "epoch": 42.111839231105286,
+ "grad_norm": 0.24410508573055267,
+ "learning_rate": 0.0006,
+ "loss": 3.621175765991211,
+ "step": 3032
+ },
+ {
+ "epoch": 42.12581913499345,
+ "grad_norm": 0.24782028794288635,
+ "learning_rate": 0.0006,
+ "loss": 3.6236867904663086,
+ "step": 3033
+ },
+ {
+ "epoch": 42.139799038881605,
+ "grad_norm": 0.2301972657442093,
+ "learning_rate": 0.0006,
+ "loss": 3.603853464126587,
+ "step": 3034
+ },
+ {
+ "epoch": 42.15377894276977,
+ "grad_norm": 0.21988637745380402,
+ "learning_rate": 0.0006,
+ "loss": 3.600142002105713,
+ "step": 3035
+ },
+ {
+ "epoch": 42.16775884665793,
+ "grad_norm": 0.22623786330223083,
+ "learning_rate": 0.0006,
+ "loss": 3.61971116065979,
+ "step": 3036
+ },
+ {
+ "epoch": 42.18173875054609,
+ "grad_norm": 0.21844688057899475,
+ "learning_rate": 0.0006,
+ "loss": 3.61320161819458,
+ "step": 3037
+ },
+ {
+ "epoch": 42.19571865443425,
+ "grad_norm": 0.20444536209106445,
+ "learning_rate": 0.0006,
+ "loss": 3.6179633140563965,
+ "step": 3038
+ },
+ {
+ "epoch": 42.20969855832241,
+ "grad_norm": 0.22862036526203156,
+ "learning_rate": 0.0006,
+ "loss": 3.605433940887451,
+ "step": 3039
+ },
+ {
+ "epoch": 42.22367846221057,
+ "grad_norm": 0.2906605005264282,
+ "learning_rate": 0.0006,
+ "loss": 3.6279449462890625,
+ "step": 3040
+ },
+ {
+ "epoch": 42.237658366098735,
+ "grad_norm": 0.29074418544769287,
+ "learning_rate": 0.0006,
+ "loss": 3.5959763526916504,
+ "step": 3041
+ },
+ {
+ "epoch": 42.25163826998689,
+ "grad_norm": 0.1994444876909256,
+ "learning_rate": 0.0006,
+ "loss": 3.5858588218688965,
+ "step": 3042
+ },
+ {
+ "epoch": 42.265618173875055,
+ "grad_norm": 0.20793452858924866,
+ "learning_rate": 0.0006,
+ "loss": 3.604630470275879,
+ "step": 3043
+ },
+ {
+ "epoch": 42.27959807776322,
+ "grad_norm": 0.2119535505771637,
+ "learning_rate": 0.0006,
+ "loss": 3.6287126541137695,
+ "step": 3044
+ },
+ {
+ "epoch": 42.293577981651374,
+ "grad_norm": 0.21092535555362701,
+ "learning_rate": 0.0006,
+ "loss": 3.646294593811035,
+ "step": 3045
+ },
+ {
+ "epoch": 42.30755788553954,
+ "grad_norm": 0.21474479138851166,
+ "learning_rate": 0.0006,
+ "loss": 3.6364355087280273,
+ "step": 3046
+ },
+ {
+ "epoch": 42.3215377894277,
+ "grad_norm": 0.21100781857967377,
+ "learning_rate": 0.0006,
+ "loss": 3.622528553009033,
+ "step": 3047
+ },
+ {
+ "epoch": 42.33551769331586,
+ "grad_norm": 0.20739853382110596,
+ "learning_rate": 0.0006,
+ "loss": 3.6261959075927734,
+ "step": 3048
+ },
+ {
+ "epoch": 42.34949759720402,
+ "grad_norm": 0.22264131903648376,
+ "learning_rate": 0.0006,
+ "loss": 3.6195173263549805,
+ "step": 3049
+ },
+ {
+ "epoch": 42.36347750109218,
+ "grad_norm": 0.23696285486221313,
+ "learning_rate": 0.0006,
+ "loss": 3.631103515625,
+ "step": 3050
+ },
+ {
+ "epoch": 42.37745740498034,
+ "grad_norm": 0.2124902606010437,
+ "learning_rate": 0.0006,
+ "loss": 3.6490437984466553,
+ "step": 3051
+ },
+ {
+ "epoch": 42.391437308868504,
+ "grad_norm": 0.18831083178520203,
+ "learning_rate": 0.0006,
+ "loss": 3.628459930419922,
+ "step": 3052
+ },
+ {
+ "epoch": 42.40541721275666,
+ "grad_norm": 0.20390060544013977,
+ "learning_rate": 0.0006,
+ "loss": 3.6348538398742676,
+ "step": 3053
+ },
+ {
+ "epoch": 42.419397116644824,
+ "grad_norm": 0.2205851823091507,
+ "learning_rate": 0.0006,
+ "loss": 3.6286797523498535,
+ "step": 3054
+ },
+ {
+ "epoch": 42.43337702053299,
+ "grad_norm": 0.21518434584140778,
+ "learning_rate": 0.0006,
+ "loss": 3.5918965339660645,
+ "step": 3055
+ },
+ {
+ "epoch": 42.44735692442114,
+ "grad_norm": 0.2342296987771988,
+ "learning_rate": 0.0006,
+ "loss": 3.6364407539367676,
+ "step": 3056
+ },
+ {
+ "epoch": 42.46133682830931,
+ "grad_norm": 0.2304094135761261,
+ "learning_rate": 0.0006,
+ "loss": 3.6561477184295654,
+ "step": 3057
+ },
+ {
+ "epoch": 42.47531673219746,
+ "grad_norm": 0.20882441103458405,
+ "learning_rate": 0.0006,
+ "loss": 3.611250638961792,
+ "step": 3058
+ },
+ {
+ "epoch": 42.489296636085626,
+ "grad_norm": 0.24346643686294556,
+ "learning_rate": 0.0006,
+ "loss": 3.580082416534424,
+ "step": 3059
+ },
+ {
+ "epoch": 42.50327653997379,
+ "grad_norm": 0.260711133480072,
+ "learning_rate": 0.0006,
+ "loss": 3.6179792881011963,
+ "step": 3060
+ },
+ {
+ "epoch": 42.517256443861946,
+ "grad_norm": 0.21223759651184082,
+ "learning_rate": 0.0006,
+ "loss": 3.6153154373168945,
+ "step": 3061
+ },
+ {
+ "epoch": 42.53123634775011,
+ "grad_norm": 0.21429137885570526,
+ "learning_rate": 0.0006,
+ "loss": 3.6003379821777344,
+ "step": 3062
+ },
+ {
+ "epoch": 42.54521625163827,
+ "grad_norm": 0.23659434914588928,
+ "learning_rate": 0.0006,
+ "loss": 3.6540589332580566,
+ "step": 3063
+ },
+ {
+ "epoch": 42.55919615552643,
+ "grad_norm": 0.280344158411026,
+ "learning_rate": 0.0006,
+ "loss": 3.6406192779541016,
+ "step": 3064
+ },
+ {
+ "epoch": 42.57317605941459,
+ "grad_norm": 0.2903953194618225,
+ "learning_rate": 0.0006,
+ "loss": 3.643479824066162,
+ "step": 3065
+ },
+ {
+ "epoch": 42.58715596330275,
+ "grad_norm": 0.24958311021327972,
+ "learning_rate": 0.0006,
+ "loss": 3.6320221424102783,
+ "step": 3066
+ },
+ {
+ "epoch": 42.60113586719091,
+ "grad_norm": 0.22525225579738617,
+ "learning_rate": 0.0006,
+ "loss": 3.641676425933838,
+ "step": 3067
+ },
+ {
+ "epoch": 42.615115771079076,
+ "grad_norm": 0.23025161027908325,
+ "learning_rate": 0.0006,
+ "loss": 3.6465210914611816,
+ "step": 3068
+ },
+ {
+ "epoch": 42.62909567496723,
+ "grad_norm": 0.21947328746318817,
+ "learning_rate": 0.0006,
+ "loss": 3.667877435684204,
+ "step": 3069
+ },
+ {
+ "epoch": 42.643075578855395,
+ "grad_norm": 0.22809366881847382,
+ "learning_rate": 0.0006,
+ "loss": 3.663166046142578,
+ "step": 3070
+ },
+ {
+ "epoch": 42.65705548274356,
+ "grad_norm": 0.21938708424568176,
+ "learning_rate": 0.0006,
+ "loss": 3.619001865386963,
+ "step": 3071
+ },
+ {
+ "epoch": 42.671035386631715,
+ "grad_norm": 0.231620192527771,
+ "learning_rate": 0.0006,
+ "loss": 3.652332305908203,
+ "step": 3072
+ },
+ {
+ "epoch": 42.68501529051988,
+ "grad_norm": 0.23683936893939972,
+ "learning_rate": 0.0006,
+ "loss": 3.6633410453796387,
+ "step": 3073
+ },
+ {
+ "epoch": 42.69899519440804,
+ "grad_norm": 0.23752044141292572,
+ "learning_rate": 0.0006,
+ "loss": 3.646064281463623,
+ "step": 3074
+ },
+ {
+ "epoch": 42.7129750982962,
+ "grad_norm": 0.23041971027851105,
+ "learning_rate": 0.0006,
+ "loss": 3.6431851387023926,
+ "step": 3075
+ },
+ {
+ "epoch": 42.72695500218436,
+ "grad_norm": 0.220438614487648,
+ "learning_rate": 0.0006,
+ "loss": 3.6499950885772705,
+ "step": 3076
+ },
+ {
+ "epoch": 42.74093490607252,
+ "grad_norm": 0.24297107756137848,
+ "learning_rate": 0.0006,
+ "loss": 3.6655125617980957,
+ "step": 3077
+ },
+ {
+ "epoch": 42.75491480996068,
+ "grad_norm": 0.21835893392562866,
+ "learning_rate": 0.0006,
+ "loss": 3.61672043800354,
+ "step": 3078
+ },
+ {
+ "epoch": 42.768894713848844,
+ "grad_norm": 0.22490793466567993,
+ "learning_rate": 0.0006,
+ "loss": 3.652825355529785,
+ "step": 3079
+ },
+ {
+ "epoch": 42.782874617737,
+ "grad_norm": 0.2246086746454239,
+ "learning_rate": 0.0006,
+ "loss": 3.6290056705474854,
+ "step": 3080
+ },
+ {
+ "epoch": 42.796854521625164,
+ "grad_norm": 0.21527042984962463,
+ "learning_rate": 0.0006,
+ "loss": 3.6587281227111816,
+ "step": 3081
+ },
+ {
+ "epoch": 42.81083442551333,
+ "grad_norm": 0.19586899876594543,
+ "learning_rate": 0.0006,
+ "loss": 3.639626979827881,
+ "step": 3082
+ },
+ {
+ "epoch": 42.824814329401484,
+ "grad_norm": 0.20881155133247375,
+ "learning_rate": 0.0006,
+ "loss": 3.6305861473083496,
+ "step": 3083
+ },
+ {
+ "epoch": 42.83879423328965,
+ "grad_norm": 0.20094981789588928,
+ "learning_rate": 0.0006,
+ "loss": 3.609614849090576,
+ "step": 3084
+ },
+ {
+ "epoch": 42.8527741371778,
+ "grad_norm": 0.21786150336265564,
+ "learning_rate": 0.0006,
+ "loss": 3.6423556804656982,
+ "step": 3085
+ },
+ {
+ "epoch": 42.86675404106597,
+ "grad_norm": 0.24493595957756042,
+ "learning_rate": 0.0006,
+ "loss": 3.631321668624878,
+ "step": 3086
+ },
+ {
+ "epoch": 42.88073394495413,
+ "grad_norm": 0.2437327355146408,
+ "learning_rate": 0.0006,
+ "loss": 3.6624178886413574,
+ "step": 3087
+ },
+ {
+ "epoch": 42.89471384884229,
+ "grad_norm": 0.21020543575286865,
+ "learning_rate": 0.0006,
+ "loss": 3.6567513942718506,
+ "step": 3088
+ },
+ {
+ "epoch": 42.90869375273045,
+ "grad_norm": 0.18977083265781403,
+ "learning_rate": 0.0006,
+ "loss": 3.6268601417541504,
+ "step": 3089
+ },
+ {
+ "epoch": 42.92267365661861,
+ "grad_norm": 0.2211192399263382,
+ "learning_rate": 0.0006,
+ "loss": 3.6690402030944824,
+ "step": 3090
+ },
+ {
+ "epoch": 42.93665356050677,
+ "grad_norm": 0.2695990204811096,
+ "learning_rate": 0.0006,
+ "loss": 3.667701244354248,
+ "step": 3091
+ },
+ {
+ "epoch": 42.95063346439493,
+ "grad_norm": 0.25910887122154236,
+ "learning_rate": 0.0006,
+ "loss": 3.627504587173462,
+ "step": 3092
+ },
+ {
+ "epoch": 42.964613368283096,
+ "grad_norm": 0.2466248720884323,
+ "learning_rate": 0.0006,
+ "loss": 3.6462182998657227,
+ "step": 3093
+ },
+ {
+ "epoch": 42.97859327217125,
+ "grad_norm": 0.22997038066387177,
+ "learning_rate": 0.0006,
+ "loss": 3.647430896759033,
+ "step": 3094
+ },
+ {
+ "epoch": 42.992573176059416,
+ "grad_norm": 0.1989113837480545,
+ "learning_rate": 0.0006,
+ "loss": 3.6502084732055664,
+ "step": 3095
+ },
+ {
+ "epoch": 43.0,
+ "grad_norm": 0.22976496815681458,
+ "learning_rate": 0.0006,
+ "loss": 3.6963884830474854,
+ "step": 3096
+ },
+ {
+ "epoch": 43.0,
+ "eval_loss": 3.9656779766082764,
+ "eval_runtime": 43.9281,
+ "eval_samples_per_second": 55.591,
+ "eval_steps_per_second": 3.483,
+ "step": 3096
+ },
+ {
+ "epoch": 43.01397990388816,
+ "grad_norm": 0.2862325608730316,
+ "learning_rate": 0.0006,
+ "loss": 3.581247568130493,
+ "step": 3097
+ },
+ {
+ "epoch": 43.02795980777632,
+ "grad_norm": 0.3867015540599823,
+ "learning_rate": 0.0006,
+ "loss": 3.611076593399048,
+ "step": 3098
+ },
+ {
+ "epoch": 43.04193971166448,
+ "grad_norm": 0.4139448404312134,
+ "learning_rate": 0.0006,
+ "loss": 3.625164031982422,
+ "step": 3099
+ },
+ {
+ "epoch": 43.05591961555265,
+ "grad_norm": 0.292407363653183,
+ "learning_rate": 0.0006,
+ "loss": 3.615546703338623,
+ "step": 3100
+ },
+ {
+ "epoch": 43.0698995194408,
+ "grad_norm": 0.24272124469280243,
+ "learning_rate": 0.0006,
+ "loss": 3.5965943336486816,
+ "step": 3101
+ },
+ {
+ "epoch": 43.083879423328966,
+ "grad_norm": 0.2761254608631134,
+ "learning_rate": 0.0006,
+ "loss": 3.605706214904785,
+ "step": 3102
+ },
+ {
+ "epoch": 43.09785932721712,
+ "grad_norm": 0.25232183933258057,
+ "learning_rate": 0.0006,
+ "loss": 3.6252012252807617,
+ "step": 3103
+ },
+ {
+ "epoch": 43.111839231105286,
+ "grad_norm": 0.248970165848732,
+ "learning_rate": 0.0006,
+ "loss": 3.6028337478637695,
+ "step": 3104
+ },
+ {
+ "epoch": 43.12581913499345,
+ "grad_norm": 0.22088921070098877,
+ "learning_rate": 0.0006,
+ "loss": 3.591614007949829,
+ "step": 3105
+ },
+ {
+ "epoch": 43.139799038881605,
+ "grad_norm": 0.21528655290603638,
+ "learning_rate": 0.0006,
+ "loss": 3.6237306594848633,
+ "step": 3106
+ },
+ {
+ "epoch": 43.15377894276977,
+ "grad_norm": 0.22799135744571686,
+ "learning_rate": 0.0006,
+ "loss": 3.5968847274780273,
+ "step": 3107
+ },
+ {
+ "epoch": 43.16775884665793,
+ "grad_norm": 0.23102127015590668,
+ "learning_rate": 0.0006,
+ "loss": 3.6046414375305176,
+ "step": 3108
+ },
+ {
+ "epoch": 43.18173875054609,
+ "grad_norm": 0.22876501083374023,
+ "learning_rate": 0.0006,
+ "loss": 3.635608196258545,
+ "step": 3109
+ },
+ {
+ "epoch": 43.19571865443425,
+ "grad_norm": 0.24920420348644257,
+ "learning_rate": 0.0006,
+ "loss": 3.628662109375,
+ "step": 3110
+ },
+ {
+ "epoch": 43.20969855832241,
+ "grad_norm": 0.2527749538421631,
+ "learning_rate": 0.0006,
+ "loss": 3.6109046936035156,
+ "step": 3111
+ },
+ {
+ "epoch": 43.22367846221057,
+ "grad_norm": 0.22529229521751404,
+ "learning_rate": 0.0006,
+ "loss": 3.6536030769348145,
+ "step": 3112
+ },
+ {
+ "epoch": 43.237658366098735,
+ "grad_norm": 0.20031821727752686,
+ "learning_rate": 0.0006,
+ "loss": 3.6328792572021484,
+ "step": 3113
+ },
+ {
+ "epoch": 43.25163826998689,
+ "grad_norm": 0.21075189113616943,
+ "learning_rate": 0.0006,
+ "loss": 3.6200530529022217,
+ "step": 3114
+ },
+ {
+ "epoch": 43.265618173875055,
+ "grad_norm": 0.21164856851100922,
+ "learning_rate": 0.0006,
+ "loss": 3.6276001930236816,
+ "step": 3115
+ },
+ {
+ "epoch": 43.27959807776322,
+ "grad_norm": 0.19306758046150208,
+ "learning_rate": 0.0006,
+ "loss": 3.608675956726074,
+ "step": 3116
+ },
+ {
+ "epoch": 43.293577981651374,
+ "grad_norm": 0.20288796722888947,
+ "learning_rate": 0.0006,
+ "loss": 3.6057004928588867,
+ "step": 3117
+ },
+ {
+ "epoch": 43.30755788553954,
+ "grad_norm": 0.1901484876871109,
+ "learning_rate": 0.0006,
+ "loss": 3.6191725730895996,
+ "step": 3118
+ },
+ {
+ "epoch": 43.3215377894277,
+ "grad_norm": 0.19438181817531586,
+ "learning_rate": 0.0006,
+ "loss": 3.5814337730407715,
+ "step": 3119
+ },
+ {
+ "epoch": 43.33551769331586,
+ "grad_norm": 0.19924484193325043,
+ "learning_rate": 0.0006,
+ "loss": 3.6168713569641113,
+ "step": 3120
+ },
+ {
+ "epoch": 43.34949759720402,
+ "grad_norm": 0.20757409930229187,
+ "learning_rate": 0.0006,
+ "loss": 3.6281509399414062,
+ "step": 3121
+ },
+ {
+ "epoch": 43.36347750109218,
+ "grad_norm": 0.22500184178352356,
+ "learning_rate": 0.0006,
+ "loss": 3.635101795196533,
+ "step": 3122
+ },
+ {
+ "epoch": 43.37745740498034,
+ "grad_norm": 0.22061555087566376,
+ "learning_rate": 0.0006,
+ "loss": 3.630622386932373,
+ "step": 3123
+ },
+ {
+ "epoch": 43.391437308868504,
+ "grad_norm": 0.2094152420759201,
+ "learning_rate": 0.0006,
+ "loss": 3.581803798675537,
+ "step": 3124
+ },
+ {
+ "epoch": 43.40541721275666,
+ "grad_norm": 0.19607678055763245,
+ "learning_rate": 0.0006,
+ "loss": 3.6149864196777344,
+ "step": 3125
+ },
+ {
+ "epoch": 43.419397116644824,
+ "grad_norm": 0.18985028564929962,
+ "learning_rate": 0.0006,
+ "loss": 3.6338040828704834,
+ "step": 3126
+ },
+ {
+ "epoch": 43.43337702053299,
+ "grad_norm": 0.20490778982639313,
+ "learning_rate": 0.0006,
+ "loss": 3.63275146484375,
+ "step": 3127
+ },
+ {
+ "epoch": 43.44735692442114,
+ "grad_norm": 0.24385297298431396,
+ "learning_rate": 0.0006,
+ "loss": 3.6412134170532227,
+ "step": 3128
+ },
+ {
+ "epoch": 43.46133682830931,
+ "grad_norm": 0.243601992726326,
+ "learning_rate": 0.0006,
+ "loss": 3.594238758087158,
+ "step": 3129
+ },
+ {
+ "epoch": 43.47531673219746,
+ "grad_norm": 0.21314913034439087,
+ "learning_rate": 0.0006,
+ "loss": 3.5962629318237305,
+ "step": 3130
+ },
+ {
+ "epoch": 43.489296636085626,
+ "grad_norm": 0.20499329268932343,
+ "learning_rate": 0.0006,
+ "loss": 3.61600923538208,
+ "step": 3131
+ },
+ {
+ "epoch": 43.50327653997379,
+ "grad_norm": 0.20199540257453918,
+ "learning_rate": 0.0006,
+ "loss": 3.638469934463501,
+ "step": 3132
+ },
+ {
+ "epoch": 43.517256443861946,
+ "grad_norm": 0.19932983815670013,
+ "learning_rate": 0.0006,
+ "loss": 3.619145393371582,
+ "step": 3133
+ },
+ {
+ "epoch": 43.53123634775011,
+ "grad_norm": 0.20401954650878906,
+ "learning_rate": 0.0006,
+ "loss": 3.643700122833252,
+ "step": 3134
+ },
+ {
+ "epoch": 43.54521625163827,
+ "grad_norm": 0.20784904062747955,
+ "learning_rate": 0.0006,
+ "loss": 3.619272232055664,
+ "step": 3135
+ },
+ {
+ "epoch": 43.55919615552643,
+ "grad_norm": 0.21003122627735138,
+ "learning_rate": 0.0006,
+ "loss": 3.629542827606201,
+ "step": 3136
+ },
+ {
+ "epoch": 43.57317605941459,
+ "grad_norm": 0.2220298945903778,
+ "learning_rate": 0.0006,
+ "loss": 3.655543804168701,
+ "step": 3137
+ },
+ {
+ "epoch": 43.58715596330275,
+ "grad_norm": 0.21159163117408752,
+ "learning_rate": 0.0006,
+ "loss": 3.6092495918273926,
+ "step": 3138
+ },
+ {
+ "epoch": 43.60113586719091,
+ "grad_norm": 0.19462746381759644,
+ "learning_rate": 0.0006,
+ "loss": 3.6447129249572754,
+ "step": 3139
+ },
+ {
+ "epoch": 43.615115771079076,
+ "grad_norm": 0.20523829758167267,
+ "learning_rate": 0.0006,
+ "loss": 3.6292669773101807,
+ "step": 3140
+ },
+ {
+ "epoch": 43.62909567496723,
+ "grad_norm": 0.2172321230173111,
+ "learning_rate": 0.0006,
+ "loss": 3.6144580841064453,
+ "step": 3141
+ },
+ {
+ "epoch": 43.643075578855395,
+ "grad_norm": 0.21751564741134644,
+ "learning_rate": 0.0006,
+ "loss": 3.6381068229675293,
+ "step": 3142
+ },
+ {
+ "epoch": 43.65705548274356,
+ "grad_norm": 0.1914236694574356,
+ "learning_rate": 0.0006,
+ "loss": 3.6392078399658203,
+ "step": 3143
+ },
+ {
+ "epoch": 43.671035386631715,
+ "grad_norm": 0.19792547821998596,
+ "learning_rate": 0.0006,
+ "loss": 3.6394457817077637,
+ "step": 3144
+ },
+ {
+ "epoch": 43.68501529051988,
+ "grad_norm": 0.2106214165687561,
+ "learning_rate": 0.0006,
+ "loss": 3.626147747039795,
+ "step": 3145
+ },
+ {
+ "epoch": 43.69899519440804,
+ "grad_norm": 0.21802955865859985,
+ "learning_rate": 0.0006,
+ "loss": 3.63372802734375,
+ "step": 3146
+ },
+ {
+ "epoch": 43.7129750982962,
+ "grad_norm": 0.21498727798461914,
+ "learning_rate": 0.0006,
+ "loss": 3.6193063259124756,
+ "step": 3147
+ },
+ {
+ "epoch": 43.72695500218436,
+ "grad_norm": 0.2176690250635147,
+ "learning_rate": 0.0006,
+ "loss": 3.6431519985198975,
+ "step": 3148
+ },
+ {
+ "epoch": 43.74093490607252,
+ "grad_norm": 0.26883506774902344,
+ "learning_rate": 0.0006,
+ "loss": 3.6216721534729004,
+ "step": 3149
+ },
+ {
+ "epoch": 43.75491480996068,
+ "grad_norm": 0.23485299944877625,
+ "learning_rate": 0.0006,
+ "loss": 3.6361191272735596,
+ "step": 3150
+ },
+ {
+ "epoch": 43.768894713848844,
+ "grad_norm": 0.20496341586112976,
+ "learning_rate": 0.0006,
+ "loss": 3.6258792877197266,
+ "step": 3151
+ },
+ {
+ "epoch": 43.782874617737,
+ "grad_norm": 0.21792510151863098,
+ "learning_rate": 0.0006,
+ "loss": 3.6522839069366455,
+ "step": 3152
+ },
+ {
+ "epoch": 43.796854521625164,
+ "grad_norm": 0.2589452564716339,
+ "learning_rate": 0.0006,
+ "loss": 3.651235580444336,
+ "step": 3153
+ },
+ {
+ "epoch": 43.81083442551333,
+ "grad_norm": 0.24883611500263214,
+ "learning_rate": 0.0006,
+ "loss": 3.6382546424865723,
+ "step": 3154
+ },
+ {
+ "epoch": 43.824814329401484,
+ "grad_norm": 0.22466720640659332,
+ "learning_rate": 0.0006,
+ "loss": 3.6232261657714844,
+ "step": 3155
+ },
+ {
+ "epoch": 43.83879423328965,
+ "grad_norm": 0.19477292895317078,
+ "learning_rate": 0.0006,
+ "loss": 3.6350135803222656,
+ "step": 3156
+ },
+ {
+ "epoch": 43.8527741371778,
+ "grad_norm": 0.20302540063858032,
+ "learning_rate": 0.0006,
+ "loss": 3.638143539428711,
+ "step": 3157
+ },
+ {
+ "epoch": 43.86675404106597,
+ "grad_norm": 0.2112276554107666,
+ "learning_rate": 0.0006,
+ "loss": 3.6415610313415527,
+ "step": 3158
+ },
+ {
+ "epoch": 43.88073394495413,
+ "grad_norm": 0.20544779300689697,
+ "learning_rate": 0.0006,
+ "loss": 3.6437134742736816,
+ "step": 3159
+ },
+ {
+ "epoch": 43.89471384884229,
+ "grad_norm": 0.2320292890071869,
+ "learning_rate": 0.0006,
+ "loss": 3.6178359985351562,
+ "step": 3160
+ },
+ {
+ "epoch": 43.90869375273045,
+ "grad_norm": 0.25862693786621094,
+ "learning_rate": 0.0006,
+ "loss": 3.618229389190674,
+ "step": 3161
+ },
+ {
+ "epoch": 43.92267365661861,
+ "grad_norm": 0.2741934061050415,
+ "learning_rate": 0.0006,
+ "loss": 3.6046690940856934,
+ "step": 3162
+ },
+ {
+ "epoch": 43.93665356050677,
+ "grad_norm": 0.24312593042850494,
+ "learning_rate": 0.0006,
+ "loss": 3.5835556983947754,
+ "step": 3163
+ },
+ {
+ "epoch": 43.95063346439493,
+ "grad_norm": 0.22174517810344696,
+ "learning_rate": 0.0006,
+ "loss": 3.6505162715911865,
+ "step": 3164
+ },
+ {
+ "epoch": 43.964613368283096,
+ "grad_norm": 0.22016975283622742,
+ "learning_rate": 0.0006,
+ "loss": 3.6385562419891357,
+ "step": 3165
+ },
+ {
+ "epoch": 43.97859327217125,
+ "grad_norm": 0.23034313321113586,
+ "learning_rate": 0.0006,
+ "loss": 3.6345865726470947,
+ "step": 3166
+ },
+ {
+ "epoch": 43.992573176059416,
+ "grad_norm": 0.21236231923103333,
+ "learning_rate": 0.0006,
+ "loss": 3.6337084770202637,
+ "step": 3167
+ },
+ {
+ "epoch": 44.0,
+ "grad_norm": 0.2344549298286438,
+ "learning_rate": 0.0006,
+ "loss": 3.677978515625,
+ "step": 3168
+ },
+ {
+ "epoch": 44.0,
+ "eval_loss": 3.9817888736724854,
+ "eval_runtime": 44.4396,
+ "eval_samples_per_second": 54.951,
+ "eval_steps_per_second": 3.443,
+ "step": 3168
+ },
+ {
+ "epoch": 44.01397990388816,
+ "grad_norm": 0.19790801405906677,
+ "learning_rate": 0.0006,
+ "loss": 3.590817451477051,
+ "step": 3169
+ },
+ {
+ "epoch": 44.02795980777632,
+ "grad_norm": 0.22922387719154358,
+ "learning_rate": 0.0006,
+ "loss": 3.643888473510742,
+ "step": 3170
+ },
+ {
+ "epoch": 44.04193971166448,
+ "grad_norm": 0.24750149250030518,
+ "learning_rate": 0.0006,
+ "loss": 3.596278667449951,
+ "step": 3171
+ },
+ {
+ "epoch": 44.05591961555265,
+ "grad_norm": 0.2511967420578003,
+ "learning_rate": 0.0006,
+ "loss": 3.6138253211975098,
+ "step": 3172
+ },
+ {
+ "epoch": 44.0698995194408,
+ "grad_norm": 0.2530326843261719,
+ "learning_rate": 0.0006,
+ "loss": 3.5710060596466064,
+ "step": 3173
+ },
+ {
+ "epoch": 44.083879423328966,
+ "grad_norm": 0.2629041373729706,
+ "learning_rate": 0.0006,
+ "loss": 3.61676025390625,
+ "step": 3174
+ },
+ {
+ "epoch": 44.09785932721712,
+ "grad_norm": 0.27373939752578735,
+ "learning_rate": 0.0006,
+ "loss": 3.613091230392456,
+ "step": 3175
+ },
+ {
+ "epoch": 44.111839231105286,
+ "grad_norm": 0.24354346096515656,
+ "learning_rate": 0.0006,
+ "loss": 3.6133360862731934,
+ "step": 3176
+ },
+ {
+ "epoch": 44.12581913499345,
+ "grad_norm": 0.21540892124176025,
+ "learning_rate": 0.0006,
+ "loss": 3.6367645263671875,
+ "step": 3177
+ },
+ {
+ "epoch": 44.139799038881605,
+ "grad_norm": 0.22251278162002563,
+ "learning_rate": 0.0006,
+ "loss": 3.6266322135925293,
+ "step": 3178
+ },
+ {
+ "epoch": 44.15377894276977,
+ "grad_norm": 0.26196029782295227,
+ "learning_rate": 0.0006,
+ "loss": 3.616487979888916,
+ "step": 3179
+ },
+ {
+ "epoch": 44.16775884665793,
+ "grad_norm": 0.2614341080188751,
+ "learning_rate": 0.0006,
+ "loss": 3.5902786254882812,
+ "step": 3180
+ },
+ {
+ "epoch": 44.18173875054609,
+ "grad_norm": 0.23517177999019623,
+ "learning_rate": 0.0006,
+ "loss": 3.610124111175537,
+ "step": 3181
+ },
+ {
+ "epoch": 44.19571865443425,
+ "grad_norm": 0.20091469585895538,
+ "learning_rate": 0.0006,
+ "loss": 3.5861713886260986,
+ "step": 3182
+ },
+ {
+ "epoch": 44.20969855832241,
+ "grad_norm": 0.19659830629825592,
+ "learning_rate": 0.0006,
+ "loss": 3.6157889366149902,
+ "step": 3183
+ },
+ {
+ "epoch": 44.22367846221057,
+ "grad_norm": 0.20690861344337463,
+ "learning_rate": 0.0006,
+ "loss": 3.5710649490356445,
+ "step": 3184
+ },
+ {
+ "epoch": 44.237658366098735,
+ "grad_norm": 0.2478247433900833,
+ "learning_rate": 0.0006,
+ "loss": 3.609031915664673,
+ "step": 3185
+ },
+ {
+ "epoch": 44.25163826998689,
+ "grad_norm": 0.2678471505641937,
+ "learning_rate": 0.0006,
+ "loss": 3.6412887573242188,
+ "step": 3186
+ },
+ {
+ "epoch": 44.265618173875055,
+ "grad_norm": 0.21856079995632172,
+ "learning_rate": 0.0006,
+ "loss": 3.6113123893737793,
+ "step": 3187
+ },
+ {
+ "epoch": 44.27959807776322,
+ "grad_norm": 0.23104850947856903,
+ "learning_rate": 0.0006,
+ "loss": 3.6022086143493652,
+ "step": 3188
+ },
+ {
+ "epoch": 44.293577981651374,
+ "grad_norm": 0.2380223423242569,
+ "learning_rate": 0.0006,
+ "loss": 3.598735809326172,
+ "step": 3189
+ },
+ {
+ "epoch": 44.30755788553954,
+ "grad_norm": 0.23005320131778717,
+ "learning_rate": 0.0006,
+ "loss": 3.595881938934326,
+ "step": 3190
+ },
+ {
+ "epoch": 44.3215377894277,
+ "grad_norm": 0.23327432572841644,
+ "learning_rate": 0.0006,
+ "loss": 3.6198601722717285,
+ "step": 3191
+ },
+ {
+ "epoch": 44.33551769331586,
+ "grad_norm": 0.2272268831729889,
+ "learning_rate": 0.0006,
+ "loss": 3.6135387420654297,
+ "step": 3192
+ },
+ {
+ "epoch": 44.34949759720402,
+ "grad_norm": 0.2518279552459717,
+ "learning_rate": 0.0006,
+ "loss": 3.6084556579589844,
+ "step": 3193
+ },
+ {
+ "epoch": 44.36347750109218,
+ "grad_norm": 0.27668607234954834,
+ "learning_rate": 0.0006,
+ "loss": 3.644430160522461,
+ "step": 3194
+ },
+ {
+ "epoch": 44.37745740498034,
+ "grad_norm": 0.26110342144966125,
+ "learning_rate": 0.0006,
+ "loss": 3.64072322845459,
+ "step": 3195
+ },
+ {
+ "epoch": 44.391437308868504,
+ "grad_norm": 0.22767964005470276,
+ "learning_rate": 0.0006,
+ "loss": 3.5570502281188965,
+ "step": 3196
+ },
+ {
+ "epoch": 44.40541721275666,
+ "grad_norm": 0.2199093997478485,
+ "learning_rate": 0.0006,
+ "loss": 3.558889150619507,
+ "step": 3197
+ },
+ {
+ "epoch": 44.419397116644824,
+ "grad_norm": 0.21653494238853455,
+ "learning_rate": 0.0006,
+ "loss": 3.6215333938598633,
+ "step": 3198
+ },
+ {
+ "epoch": 44.43337702053299,
+ "grad_norm": 0.1958773136138916,
+ "learning_rate": 0.0006,
+ "loss": 3.588468551635742,
+ "step": 3199
+ },
+ {
+ "epoch": 44.44735692442114,
+ "grad_norm": 0.20205403864383698,
+ "learning_rate": 0.0006,
+ "loss": 3.6109578609466553,
+ "step": 3200
+ },
+ {
+ "epoch": 44.46133682830931,
+ "grad_norm": 0.19632115960121155,
+ "learning_rate": 0.0006,
+ "loss": 3.634315013885498,
+ "step": 3201
+ },
+ {
+ "epoch": 44.47531673219746,
+ "grad_norm": 0.19327203929424286,
+ "learning_rate": 0.0006,
+ "loss": 3.6335930824279785,
+ "step": 3202
+ },
+ {
+ "epoch": 44.489296636085626,
+ "grad_norm": 0.19743897020816803,
+ "learning_rate": 0.0006,
+ "loss": 3.6164016723632812,
+ "step": 3203
+ },
+ {
+ "epoch": 44.50327653997379,
+ "grad_norm": 0.20413564145565033,
+ "learning_rate": 0.0006,
+ "loss": 3.663613796234131,
+ "step": 3204
+ },
+ {
+ "epoch": 44.517256443861946,
+ "grad_norm": 0.2057798206806183,
+ "learning_rate": 0.0006,
+ "loss": 3.625131130218506,
+ "step": 3205
+ },
+ {
+ "epoch": 44.53123634775011,
+ "grad_norm": 0.20076915621757507,
+ "learning_rate": 0.0006,
+ "loss": 3.6362178325653076,
+ "step": 3206
+ },
+ {
+ "epoch": 44.54521625163827,
+ "grad_norm": 0.2381955236196518,
+ "learning_rate": 0.0006,
+ "loss": 3.621263265609741,
+ "step": 3207
+ },
+ {
+ "epoch": 44.55919615552643,
+ "grad_norm": 0.27008768916130066,
+ "learning_rate": 0.0006,
+ "loss": 3.6133322715759277,
+ "step": 3208
+ },
+ {
+ "epoch": 44.57317605941459,
+ "grad_norm": 0.25677573680877686,
+ "learning_rate": 0.0006,
+ "loss": 3.6210851669311523,
+ "step": 3209
+ },
+ {
+ "epoch": 44.58715596330275,
+ "grad_norm": 0.21022997796535492,
+ "learning_rate": 0.0006,
+ "loss": 3.626483917236328,
+ "step": 3210
+ },
+ {
+ "epoch": 44.60113586719091,
+ "grad_norm": 0.19918566942214966,
+ "learning_rate": 0.0006,
+ "loss": 3.6321091651916504,
+ "step": 3211
+ },
+ {
+ "epoch": 44.615115771079076,
+ "grad_norm": 0.2114727795124054,
+ "learning_rate": 0.0006,
+ "loss": 3.5767595767974854,
+ "step": 3212
+ },
+ {
+ "epoch": 44.62909567496723,
+ "grad_norm": 0.20968441665172577,
+ "learning_rate": 0.0006,
+ "loss": 3.6040430068969727,
+ "step": 3213
+ },
+ {
+ "epoch": 44.643075578855395,
+ "grad_norm": 0.19996227324008942,
+ "learning_rate": 0.0006,
+ "loss": 3.6688590049743652,
+ "step": 3214
+ },
+ {
+ "epoch": 44.65705548274356,
+ "grad_norm": 0.19998830556869507,
+ "learning_rate": 0.0006,
+ "loss": 3.6349434852600098,
+ "step": 3215
+ },
+ {
+ "epoch": 44.671035386631715,
+ "grad_norm": 0.20812496542930603,
+ "learning_rate": 0.0006,
+ "loss": 3.6363840103149414,
+ "step": 3216
+ },
+ {
+ "epoch": 44.68501529051988,
+ "grad_norm": 0.1988825500011444,
+ "learning_rate": 0.0006,
+ "loss": 3.6180496215820312,
+ "step": 3217
+ },
+ {
+ "epoch": 44.69899519440804,
+ "grad_norm": 0.2114664614200592,
+ "learning_rate": 0.0006,
+ "loss": 3.6362106800079346,
+ "step": 3218
+ },
+ {
+ "epoch": 44.7129750982962,
+ "grad_norm": 0.19847962260246277,
+ "learning_rate": 0.0006,
+ "loss": 3.618500232696533,
+ "step": 3219
+ },
+ {
+ "epoch": 44.72695500218436,
+ "grad_norm": 0.19903887808322906,
+ "learning_rate": 0.0006,
+ "loss": 3.6360888481140137,
+ "step": 3220
+ },
+ {
+ "epoch": 44.74093490607252,
+ "grad_norm": 0.21198545396327972,
+ "learning_rate": 0.0006,
+ "loss": 3.6347005367279053,
+ "step": 3221
+ },
+ {
+ "epoch": 44.75491480996068,
+ "grad_norm": 0.18334898352622986,
+ "learning_rate": 0.0006,
+ "loss": 3.6160783767700195,
+ "step": 3222
+ },
+ {
+ "epoch": 44.768894713848844,
+ "grad_norm": 0.19260665774345398,
+ "learning_rate": 0.0006,
+ "loss": 3.6322834491729736,
+ "step": 3223
+ },
+ {
+ "epoch": 44.782874617737,
+ "grad_norm": 0.2084558755159378,
+ "learning_rate": 0.0006,
+ "loss": 3.615227699279785,
+ "step": 3224
+ },
+ {
+ "epoch": 44.796854521625164,
+ "grad_norm": 0.24538686871528625,
+ "learning_rate": 0.0006,
+ "loss": 3.6387081146240234,
+ "step": 3225
+ },
+ {
+ "epoch": 44.81083442551333,
+ "grad_norm": 0.23291894793510437,
+ "learning_rate": 0.0006,
+ "loss": 3.6245408058166504,
+ "step": 3226
+ },
+ {
+ "epoch": 44.824814329401484,
+ "grad_norm": 0.20715969800949097,
+ "learning_rate": 0.0006,
+ "loss": 3.633620262145996,
+ "step": 3227
+ },
+ {
+ "epoch": 44.83879423328965,
+ "grad_norm": 0.20866821706295013,
+ "learning_rate": 0.0006,
+ "loss": 3.613438129425049,
+ "step": 3228
+ },
+ {
+ "epoch": 44.8527741371778,
+ "grad_norm": 0.2048904299736023,
+ "learning_rate": 0.0006,
+ "loss": 3.668807029724121,
+ "step": 3229
+ },
+ {
+ "epoch": 44.86675404106597,
+ "grad_norm": 0.2073894739151001,
+ "learning_rate": 0.0006,
+ "loss": 3.6000914573669434,
+ "step": 3230
+ },
+ {
+ "epoch": 44.88073394495413,
+ "grad_norm": 0.22017404437065125,
+ "learning_rate": 0.0006,
+ "loss": 3.6024718284606934,
+ "step": 3231
+ },
+ {
+ "epoch": 44.89471384884229,
+ "grad_norm": 0.23971669375896454,
+ "learning_rate": 0.0006,
+ "loss": 3.6339516639709473,
+ "step": 3232
+ },
+ {
+ "epoch": 44.90869375273045,
+ "grad_norm": 0.2258273959159851,
+ "learning_rate": 0.0006,
+ "loss": 3.6480093002319336,
+ "step": 3233
+ },
+ {
+ "epoch": 44.92267365661861,
+ "grad_norm": 0.22079502046108246,
+ "learning_rate": 0.0006,
+ "loss": 3.643446922302246,
+ "step": 3234
+ },
+ {
+ "epoch": 44.93665356050677,
+ "grad_norm": 0.22109337151050568,
+ "learning_rate": 0.0006,
+ "loss": 3.5975499153137207,
+ "step": 3235
+ },
+ {
+ "epoch": 44.95063346439493,
+ "grad_norm": 0.20142309367656708,
+ "learning_rate": 0.0006,
+ "loss": 3.6057305335998535,
+ "step": 3236
+ },
+ {
+ "epoch": 44.964613368283096,
+ "grad_norm": 0.20089569687843323,
+ "learning_rate": 0.0006,
+ "loss": 3.5900750160217285,
+ "step": 3237
+ },
+ {
+ "epoch": 44.97859327217125,
+ "grad_norm": 0.19860075414180756,
+ "learning_rate": 0.0006,
+ "loss": 3.5954184532165527,
+ "step": 3238
+ },
+ {
+ "epoch": 44.992573176059416,
+ "grad_norm": 0.19166013598442078,
+ "learning_rate": 0.0006,
+ "loss": 3.6568803787231445,
+ "step": 3239
+ },
+ {
+ "epoch": 45.0,
+ "grad_norm": 0.22416932880878448,
+ "learning_rate": 0.0006,
+ "loss": 3.6483092308044434,
+ "step": 3240
+ },
+ {
+ "epoch": 45.0,
+ "eval_loss": 3.9821224212646484,
+ "eval_runtime": 44.5415,
+ "eval_samples_per_second": 54.825,
+ "eval_steps_per_second": 3.435,
+ "step": 3240
+ },
+ {
+ "epoch": 45.01397990388816,
+ "grad_norm": 0.2107669562101364,
+ "learning_rate": 0.0006,
+ "loss": 3.5858099460601807,
+ "step": 3241
+ },
+ {
+ "epoch": 45.02795980777632,
+ "grad_norm": 0.20831939578056335,
+ "learning_rate": 0.0006,
+ "loss": 3.5793800354003906,
+ "step": 3242
+ },
+ {
+ "epoch": 45.04193971166448,
+ "grad_norm": 0.2169167846441269,
+ "learning_rate": 0.0006,
+ "loss": 3.601961135864258,
+ "step": 3243
+ },
+ {
+ "epoch": 45.05591961555265,
+ "grad_norm": 0.22451531887054443,
+ "learning_rate": 0.0006,
+ "loss": 3.586371898651123,
+ "step": 3244
+ },
+ {
+ "epoch": 45.0698995194408,
+ "grad_norm": 0.2187003344297409,
+ "learning_rate": 0.0006,
+ "loss": 3.58760929107666,
+ "step": 3245
+ },
+ {
+ "epoch": 45.083879423328966,
+ "grad_norm": 0.22805631160736084,
+ "learning_rate": 0.0006,
+ "loss": 3.554107904434204,
+ "step": 3246
+ },
+ {
+ "epoch": 45.09785932721712,
+ "grad_norm": 0.2573186159133911,
+ "learning_rate": 0.0006,
+ "loss": 3.5815420150756836,
+ "step": 3247
+ },
+ {
+ "epoch": 45.111839231105286,
+ "grad_norm": 0.25940126180648804,
+ "learning_rate": 0.0006,
+ "loss": 3.5754308700561523,
+ "step": 3248
+ },
+ {
+ "epoch": 45.12581913499345,
+ "grad_norm": 0.23834384977817535,
+ "learning_rate": 0.0006,
+ "loss": 3.5857350826263428,
+ "step": 3249
+ },
+ {
+ "epoch": 45.139799038881605,
+ "grad_norm": 0.23342885076999664,
+ "learning_rate": 0.0006,
+ "loss": 3.6116228103637695,
+ "step": 3250
+ },
+ {
+ "epoch": 45.15377894276977,
+ "grad_norm": 0.23284269869327545,
+ "learning_rate": 0.0006,
+ "loss": 3.5778629779815674,
+ "step": 3251
+ },
+ {
+ "epoch": 45.16775884665793,
+ "grad_norm": 0.30510780215263367,
+ "learning_rate": 0.0006,
+ "loss": 3.5888915061950684,
+ "step": 3252
+ },
+ {
+ "epoch": 45.18173875054609,
+ "grad_norm": 0.3462519645690918,
+ "learning_rate": 0.0006,
+ "loss": 3.5955758094787598,
+ "step": 3253
+ },
+ {
+ "epoch": 45.19571865443425,
+ "grad_norm": 0.2795974314212799,
+ "learning_rate": 0.0006,
+ "loss": 3.6222946643829346,
+ "step": 3254
+ },
+ {
+ "epoch": 45.20969855832241,
+ "grad_norm": 0.24624103307724,
+ "learning_rate": 0.0006,
+ "loss": 3.63046932220459,
+ "step": 3255
+ },
+ {
+ "epoch": 45.22367846221057,
+ "grad_norm": 0.23007310926914215,
+ "learning_rate": 0.0006,
+ "loss": 3.652526378631592,
+ "step": 3256
+ },
+ {
+ "epoch": 45.237658366098735,
+ "grad_norm": 0.21325333416461945,
+ "learning_rate": 0.0006,
+ "loss": 3.5960049629211426,
+ "step": 3257
+ },
+ {
+ "epoch": 45.25163826998689,
+ "grad_norm": 0.22697314620018005,
+ "learning_rate": 0.0006,
+ "loss": 3.5723695755004883,
+ "step": 3258
+ },
+ {
+ "epoch": 45.265618173875055,
+ "grad_norm": 0.21900491416454315,
+ "learning_rate": 0.0006,
+ "loss": 3.613572120666504,
+ "step": 3259
+ },
+ {
+ "epoch": 45.27959807776322,
+ "grad_norm": 0.21030694246292114,
+ "learning_rate": 0.0006,
+ "loss": 3.5830235481262207,
+ "step": 3260
+ },
+ {
+ "epoch": 45.293577981651374,
+ "grad_norm": 0.20229968428611755,
+ "learning_rate": 0.0006,
+ "loss": 3.620349884033203,
+ "step": 3261
+ },
+ {
+ "epoch": 45.30755788553954,
+ "grad_norm": 0.21611201763153076,
+ "learning_rate": 0.0006,
+ "loss": 3.5937819480895996,
+ "step": 3262
+ },
+ {
+ "epoch": 45.3215377894277,
+ "grad_norm": 0.21876764297485352,
+ "learning_rate": 0.0006,
+ "loss": 3.6180777549743652,
+ "step": 3263
+ },
+ {
+ "epoch": 45.33551769331586,
+ "grad_norm": 0.200356587767601,
+ "learning_rate": 0.0006,
+ "loss": 3.6140146255493164,
+ "step": 3264
+ },
+ {
+ "epoch": 45.34949759720402,
+ "grad_norm": 0.19151835143566132,
+ "learning_rate": 0.0006,
+ "loss": 3.607077121734619,
+ "step": 3265
+ },
+ {
+ "epoch": 45.36347750109218,
+ "grad_norm": 0.1994648575782776,
+ "learning_rate": 0.0006,
+ "loss": 3.646780490875244,
+ "step": 3266
+ },
+ {
+ "epoch": 45.37745740498034,
+ "grad_norm": 0.23145829141139984,
+ "learning_rate": 0.0006,
+ "loss": 3.624591588973999,
+ "step": 3267
+ },
+ {
+ "epoch": 45.391437308868504,
+ "grad_norm": 0.23608829081058502,
+ "learning_rate": 0.0006,
+ "loss": 3.598904609680176,
+ "step": 3268
+ },
+ {
+ "epoch": 45.40541721275666,
+ "grad_norm": 0.22254547476768494,
+ "learning_rate": 0.0006,
+ "loss": 3.581087827682495,
+ "step": 3269
+ },
+ {
+ "epoch": 45.419397116644824,
+ "grad_norm": 0.21640023589134216,
+ "learning_rate": 0.0006,
+ "loss": 3.5961151123046875,
+ "step": 3270
+ },
+ {
+ "epoch": 45.43337702053299,
+ "grad_norm": 0.2252444475889206,
+ "learning_rate": 0.0006,
+ "loss": 3.590231418609619,
+ "step": 3271
+ },
+ {
+ "epoch": 45.44735692442114,
+ "grad_norm": 0.23785367608070374,
+ "learning_rate": 0.0006,
+ "loss": 3.615896701812744,
+ "step": 3272
+ },
+ {
+ "epoch": 45.46133682830931,
+ "grad_norm": 0.2509191036224365,
+ "learning_rate": 0.0006,
+ "loss": 3.6413722038269043,
+ "step": 3273
+ },
+ {
+ "epoch": 45.47531673219746,
+ "grad_norm": 0.23734210431575775,
+ "learning_rate": 0.0006,
+ "loss": 3.608898639678955,
+ "step": 3274
+ },
+ {
+ "epoch": 45.489296636085626,
+ "grad_norm": 0.19802412390708923,
+ "learning_rate": 0.0006,
+ "loss": 3.5957250595092773,
+ "step": 3275
+ },
+ {
+ "epoch": 45.50327653997379,
+ "grad_norm": 0.20621423423290253,
+ "learning_rate": 0.0006,
+ "loss": 3.607945442199707,
+ "step": 3276
+ },
+ {
+ "epoch": 45.517256443861946,
+ "grad_norm": 0.225870743393898,
+ "learning_rate": 0.0006,
+ "loss": 3.641449451446533,
+ "step": 3277
+ },
+ {
+ "epoch": 45.53123634775011,
+ "grad_norm": 0.21482397615909576,
+ "learning_rate": 0.0006,
+ "loss": 3.61629581451416,
+ "step": 3278
+ },
+ {
+ "epoch": 45.54521625163827,
+ "grad_norm": 0.21159376204013824,
+ "learning_rate": 0.0006,
+ "loss": 3.5977988243103027,
+ "step": 3279
+ },
+ {
+ "epoch": 45.55919615552643,
+ "grad_norm": 0.2031678408384323,
+ "learning_rate": 0.0006,
+ "loss": 3.629343032836914,
+ "step": 3280
+ },
+ {
+ "epoch": 45.57317605941459,
+ "grad_norm": 0.1827101707458496,
+ "learning_rate": 0.0006,
+ "loss": 3.6161365509033203,
+ "step": 3281
+ },
+ {
+ "epoch": 45.58715596330275,
+ "grad_norm": 0.21884584426879883,
+ "learning_rate": 0.0006,
+ "loss": 3.6131834983825684,
+ "step": 3282
+ },
+ {
+ "epoch": 45.60113586719091,
+ "grad_norm": 0.21764980256557465,
+ "learning_rate": 0.0006,
+ "loss": 3.612516164779663,
+ "step": 3283
+ },
+ {
+ "epoch": 45.615115771079076,
+ "grad_norm": 0.22257080674171448,
+ "learning_rate": 0.0006,
+ "loss": 3.63425874710083,
+ "step": 3284
+ },
+ {
+ "epoch": 45.62909567496723,
+ "grad_norm": 0.2419128566980362,
+ "learning_rate": 0.0006,
+ "loss": 3.602997064590454,
+ "step": 3285
+ },
+ {
+ "epoch": 45.643075578855395,
+ "grad_norm": 0.20856884121894836,
+ "learning_rate": 0.0006,
+ "loss": 3.597352981567383,
+ "step": 3286
+ },
+ {
+ "epoch": 45.65705548274356,
+ "grad_norm": 0.20298589766025543,
+ "learning_rate": 0.0006,
+ "loss": 3.5961315631866455,
+ "step": 3287
+ },
+ {
+ "epoch": 45.671035386631715,
+ "grad_norm": 0.19006133079528809,
+ "learning_rate": 0.0006,
+ "loss": 3.6314568519592285,
+ "step": 3288
+ },
+ {
+ "epoch": 45.68501529051988,
+ "grad_norm": 0.20886142551898956,
+ "learning_rate": 0.0006,
+ "loss": 3.6200413703918457,
+ "step": 3289
+ },
+ {
+ "epoch": 45.69899519440804,
+ "grad_norm": 0.18085862696170807,
+ "learning_rate": 0.0006,
+ "loss": 3.6273961067199707,
+ "step": 3290
+ },
+ {
+ "epoch": 45.7129750982962,
+ "grad_norm": 0.18651945888996124,
+ "learning_rate": 0.0006,
+ "loss": 3.6490976810455322,
+ "step": 3291
+ },
+ {
+ "epoch": 45.72695500218436,
+ "grad_norm": 0.19668170809745789,
+ "learning_rate": 0.0006,
+ "loss": 3.610409736633301,
+ "step": 3292
+ },
+ {
+ "epoch": 45.74093490607252,
+ "grad_norm": 0.19865764677524567,
+ "learning_rate": 0.0006,
+ "loss": 3.614025115966797,
+ "step": 3293
+ },
+ {
+ "epoch": 45.75491480996068,
+ "grad_norm": 0.20814085006713867,
+ "learning_rate": 0.0006,
+ "loss": 3.6220510005950928,
+ "step": 3294
+ },
+ {
+ "epoch": 45.768894713848844,
+ "grad_norm": 0.20996463298797607,
+ "learning_rate": 0.0006,
+ "loss": 3.5754218101501465,
+ "step": 3295
+ },
+ {
+ "epoch": 45.782874617737,
+ "grad_norm": 0.1987130492925644,
+ "learning_rate": 0.0006,
+ "loss": 3.614746570587158,
+ "step": 3296
+ },
+ {
+ "epoch": 45.796854521625164,
+ "grad_norm": 0.23048028349876404,
+ "learning_rate": 0.0006,
+ "loss": 3.602620840072632,
+ "step": 3297
+ },
+ {
+ "epoch": 45.81083442551333,
+ "grad_norm": 0.21877387166023254,
+ "learning_rate": 0.0006,
+ "loss": 3.6294198036193848,
+ "step": 3298
+ },
+ {
+ "epoch": 45.824814329401484,
+ "grad_norm": 0.20007763803005219,
+ "learning_rate": 0.0006,
+ "loss": 3.630868434906006,
+ "step": 3299
+ },
+ {
+ "epoch": 45.83879423328965,
+ "grad_norm": 0.200496107339859,
+ "learning_rate": 0.0006,
+ "loss": 3.5972986221313477,
+ "step": 3300
+ },
+ {
+ "epoch": 45.8527741371778,
+ "grad_norm": 0.20494480431079865,
+ "learning_rate": 0.0006,
+ "loss": 3.61934494972229,
+ "step": 3301
+ },
+ {
+ "epoch": 45.86675404106597,
+ "grad_norm": 0.21374984085559845,
+ "learning_rate": 0.0006,
+ "loss": 3.6236257553100586,
+ "step": 3302
+ },
+ {
+ "epoch": 45.88073394495413,
+ "grad_norm": 0.22020408511161804,
+ "learning_rate": 0.0006,
+ "loss": 3.6030755043029785,
+ "step": 3303
+ },
+ {
+ "epoch": 45.89471384884229,
+ "grad_norm": 0.2239987701177597,
+ "learning_rate": 0.0006,
+ "loss": 3.6778974533081055,
+ "step": 3304
+ },
+ {
+ "epoch": 45.90869375273045,
+ "grad_norm": 0.22156383097171783,
+ "learning_rate": 0.0006,
+ "loss": 3.6186561584472656,
+ "step": 3305
+ },
+ {
+ "epoch": 45.92267365661861,
+ "grad_norm": 0.2264711856842041,
+ "learning_rate": 0.0006,
+ "loss": 3.6349918842315674,
+ "step": 3306
+ },
+ {
+ "epoch": 45.93665356050677,
+ "grad_norm": 0.2287975549697876,
+ "learning_rate": 0.0006,
+ "loss": 3.600268840789795,
+ "step": 3307
+ },
+ {
+ "epoch": 45.95063346439493,
+ "grad_norm": 0.22459761798381805,
+ "learning_rate": 0.0006,
+ "loss": 3.6029114723205566,
+ "step": 3308
+ },
+ {
+ "epoch": 45.964613368283096,
+ "grad_norm": 0.2430959790945053,
+ "learning_rate": 0.0006,
+ "loss": 3.6781656742095947,
+ "step": 3309
+ },
+ {
+ "epoch": 45.97859327217125,
+ "grad_norm": 0.2718662619590759,
+ "learning_rate": 0.0006,
+ "loss": 3.606778144836426,
+ "step": 3310
+ },
+ {
+ "epoch": 45.992573176059416,
+ "grad_norm": 0.27250170707702637,
+ "learning_rate": 0.0006,
+ "loss": 3.6142611503601074,
+ "step": 3311
+ },
+ {
+ "epoch": 46.0,
+ "grad_norm": 0.26663821935653687,
+ "learning_rate": 0.0006,
+ "loss": 3.6367483139038086,
+ "step": 3312
+ },
+ {
+ "epoch": 46.0,
+ "eval_loss": 3.9835095405578613,
+ "eval_runtime": 44.6504,
+ "eval_samples_per_second": 54.692,
+ "eval_steps_per_second": 3.427,
+ "step": 3312
+ },
+ {
+ "epoch": 46.01397990388816,
+ "grad_norm": 0.22670713067054749,
+ "learning_rate": 0.0006,
+ "loss": 3.5553648471832275,
+ "step": 3313
+ },
+ {
+ "epoch": 46.02795980777632,
+ "grad_norm": 0.2759886384010315,
+ "learning_rate": 0.0006,
+ "loss": 3.595186948776245,
+ "step": 3314
+ },
+ {
+ "epoch": 46.04193971166448,
+ "grad_norm": 0.31634145975112915,
+ "learning_rate": 0.0006,
+ "loss": 3.5805907249450684,
+ "step": 3315
+ },
+ {
+ "epoch": 46.05591961555265,
+ "grad_norm": 0.3097986578941345,
+ "learning_rate": 0.0006,
+ "loss": 3.593407154083252,
+ "step": 3316
+ },
+ {
+ "epoch": 46.0698995194408,
+ "grad_norm": 0.24616138637065887,
+ "learning_rate": 0.0006,
+ "loss": 3.606736898422241,
+ "step": 3317
+ },
+ {
+ "epoch": 46.083879423328966,
+ "grad_norm": 0.22210408747196198,
+ "learning_rate": 0.0006,
+ "loss": 3.59546160697937,
+ "step": 3318
+ },
+ {
+ "epoch": 46.09785932721712,
+ "grad_norm": 0.2429778128862381,
+ "learning_rate": 0.0006,
+ "loss": 3.5900321006774902,
+ "step": 3319
+ },
+ {
+ "epoch": 46.111839231105286,
+ "grad_norm": 0.22875761985778809,
+ "learning_rate": 0.0006,
+ "loss": 3.5793521404266357,
+ "step": 3320
+ },
+ {
+ "epoch": 46.12581913499345,
+ "grad_norm": 0.21508760750293732,
+ "learning_rate": 0.0006,
+ "loss": 3.5462498664855957,
+ "step": 3321
+ },
+ {
+ "epoch": 46.139799038881605,
+ "grad_norm": 0.23590944707393646,
+ "learning_rate": 0.0006,
+ "loss": 3.6247925758361816,
+ "step": 3322
+ },
+ {
+ "epoch": 46.15377894276977,
+ "grad_norm": 0.22288036346435547,
+ "learning_rate": 0.0006,
+ "loss": 3.6063995361328125,
+ "step": 3323
+ },
+ {
+ "epoch": 46.16775884665793,
+ "grad_norm": 0.20460885763168335,
+ "learning_rate": 0.0006,
+ "loss": 3.5744826793670654,
+ "step": 3324
+ },
+ {
+ "epoch": 46.18173875054609,
+ "grad_norm": 0.20172059535980225,
+ "learning_rate": 0.0006,
+ "loss": 3.5827057361602783,
+ "step": 3325
+ },
+ {
+ "epoch": 46.19571865443425,
+ "grad_norm": 0.2268448770046234,
+ "learning_rate": 0.0006,
+ "loss": 3.5801379680633545,
+ "step": 3326
+ },
+ {
+ "epoch": 46.20969855832241,
+ "grad_norm": 0.2244444191455841,
+ "learning_rate": 0.0006,
+ "loss": 3.5790224075317383,
+ "step": 3327
+ },
+ {
+ "epoch": 46.22367846221057,
+ "grad_norm": 0.20954380929470062,
+ "learning_rate": 0.0006,
+ "loss": 3.5979342460632324,
+ "step": 3328
+ },
+ {
+ "epoch": 46.237658366098735,
+ "grad_norm": 0.21395887434482574,
+ "learning_rate": 0.0006,
+ "loss": 3.6015186309814453,
+ "step": 3329
+ },
+ {
+ "epoch": 46.25163826998689,
+ "grad_norm": 0.23200181126594543,
+ "learning_rate": 0.0006,
+ "loss": 3.5904979705810547,
+ "step": 3330
+ },
+ {
+ "epoch": 46.265618173875055,
+ "grad_norm": 0.20558731257915497,
+ "learning_rate": 0.0006,
+ "loss": 3.5745811462402344,
+ "step": 3331
+ },
+ {
+ "epoch": 46.27959807776322,
+ "grad_norm": 0.1973227560520172,
+ "learning_rate": 0.0006,
+ "loss": 3.588560104370117,
+ "step": 3332
+ },
+ {
+ "epoch": 46.293577981651374,
+ "grad_norm": 0.2137945592403412,
+ "learning_rate": 0.0006,
+ "loss": 3.606064796447754,
+ "step": 3333
+ },
+ {
+ "epoch": 46.30755788553954,
+ "grad_norm": 0.2082151472568512,
+ "learning_rate": 0.0006,
+ "loss": 3.569392442703247,
+ "step": 3334
+ },
+ {
+ "epoch": 46.3215377894277,
+ "grad_norm": 0.2151029258966446,
+ "learning_rate": 0.0006,
+ "loss": 3.6016604900360107,
+ "step": 3335
+ },
+ {
+ "epoch": 46.33551769331586,
+ "grad_norm": 0.2256474643945694,
+ "learning_rate": 0.0006,
+ "loss": 3.571319580078125,
+ "step": 3336
+ },
+ {
+ "epoch": 46.34949759720402,
+ "grad_norm": 0.21454207599163055,
+ "learning_rate": 0.0006,
+ "loss": 3.6028685569763184,
+ "step": 3337
+ },
+ {
+ "epoch": 46.36347750109218,
+ "grad_norm": 0.21864144504070282,
+ "learning_rate": 0.0006,
+ "loss": 3.6146860122680664,
+ "step": 3338
+ },
+ {
+ "epoch": 46.37745740498034,
+ "grad_norm": 0.24512453377246857,
+ "learning_rate": 0.0006,
+ "loss": 3.614696502685547,
+ "step": 3339
+ },
+ {
+ "epoch": 46.391437308868504,
+ "grad_norm": 0.26355695724487305,
+ "learning_rate": 0.0006,
+ "loss": 3.6124234199523926,
+ "step": 3340
+ },
+ {
+ "epoch": 46.40541721275666,
+ "grad_norm": 0.2778678834438324,
+ "learning_rate": 0.0006,
+ "loss": 3.6075634956359863,
+ "step": 3341
+ },
+ {
+ "epoch": 46.419397116644824,
+ "grad_norm": 0.2626822292804718,
+ "learning_rate": 0.0006,
+ "loss": 3.59267520904541,
+ "step": 3342
+ },
+ {
+ "epoch": 46.43337702053299,
+ "grad_norm": 0.2211887091398239,
+ "learning_rate": 0.0006,
+ "loss": 3.606135606765747,
+ "step": 3343
+ },
+ {
+ "epoch": 46.44735692442114,
+ "grad_norm": 0.20117639005184174,
+ "learning_rate": 0.0006,
+ "loss": 3.566512107849121,
+ "step": 3344
+ },
+ {
+ "epoch": 46.46133682830931,
+ "grad_norm": 0.20202599465847015,
+ "learning_rate": 0.0006,
+ "loss": 3.603398561477661,
+ "step": 3345
+ },
+ {
+ "epoch": 46.47531673219746,
+ "grad_norm": 0.22238481044769287,
+ "learning_rate": 0.0006,
+ "loss": 3.599888324737549,
+ "step": 3346
+ },
+ {
+ "epoch": 46.489296636085626,
+ "grad_norm": 0.23298178613185883,
+ "learning_rate": 0.0006,
+ "loss": 3.6135406494140625,
+ "step": 3347
+ },
+ {
+ "epoch": 46.50327653997379,
+ "grad_norm": 0.21998152136802673,
+ "learning_rate": 0.0006,
+ "loss": 3.6022939682006836,
+ "step": 3348
+ },
+ {
+ "epoch": 46.517256443861946,
+ "grad_norm": 0.22595210373401642,
+ "learning_rate": 0.0006,
+ "loss": 3.605905532836914,
+ "step": 3349
+ },
+ {
+ "epoch": 46.53123634775011,
+ "grad_norm": 0.23549678921699524,
+ "learning_rate": 0.0006,
+ "loss": 3.606264591217041,
+ "step": 3350
+ },
+ {
+ "epoch": 46.54521625163827,
+ "grad_norm": 0.2075573205947876,
+ "learning_rate": 0.0006,
+ "loss": 3.580575942993164,
+ "step": 3351
+ },
+ {
+ "epoch": 46.55919615552643,
+ "grad_norm": 0.19052642583847046,
+ "learning_rate": 0.0006,
+ "loss": 3.618326187133789,
+ "step": 3352
+ },
+ {
+ "epoch": 46.57317605941459,
+ "grad_norm": 0.20372900366783142,
+ "learning_rate": 0.0006,
+ "loss": 3.5817952156066895,
+ "step": 3353
+ },
+ {
+ "epoch": 46.58715596330275,
+ "grad_norm": 0.20024648308753967,
+ "learning_rate": 0.0006,
+ "loss": 3.6128273010253906,
+ "step": 3354
+ },
+ {
+ "epoch": 46.60113586719091,
+ "grad_norm": 0.20892181992530823,
+ "learning_rate": 0.0006,
+ "loss": 3.6173012256622314,
+ "step": 3355
+ },
+ {
+ "epoch": 46.615115771079076,
+ "grad_norm": 0.20254571735858917,
+ "learning_rate": 0.0006,
+ "loss": 3.5924699306488037,
+ "step": 3356
+ },
+ {
+ "epoch": 46.62909567496723,
+ "grad_norm": 0.20290599763393402,
+ "learning_rate": 0.0006,
+ "loss": 3.6134514808654785,
+ "step": 3357
+ },
+ {
+ "epoch": 46.643075578855395,
+ "grad_norm": 0.23314513266086578,
+ "learning_rate": 0.0006,
+ "loss": 3.604102611541748,
+ "step": 3358
+ },
+ {
+ "epoch": 46.65705548274356,
+ "grad_norm": 0.2352486401796341,
+ "learning_rate": 0.0006,
+ "loss": 3.6210808753967285,
+ "step": 3359
+ },
+ {
+ "epoch": 46.671035386631715,
+ "grad_norm": 0.2289503663778305,
+ "learning_rate": 0.0006,
+ "loss": 3.596968650817871,
+ "step": 3360
+ },
+ {
+ "epoch": 46.68501529051988,
+ "grad_norm": 0.19971057772636414,
+ "learning_rate": 0.0006,
+ "loss": 3.5973198413848877,
+ "step": 3361
+ },
+ {
+ "epoch": 46.69899519440804,
+ "grad_norm": 0.21000619232654572,
+ "learning_rate": 0.0006,
+ "loss": 3.607048511505127,
+ "step": 3362
+ },
+ {
+ "epoch": 46.7129750982962,
+ "grad_norm": 0.22295686602592468,
+ "learning_rate": 0.0006,
+ "loss": 3.6323728561401367,
+ "step": 3363
+ },
+ {
+ "epoch": 46.72695500218436,
+ "grad_norm": 0.21939052641391754,
+ "learning_rate": 0.0006,
+ "loss": 3.6073317527770996,
+ "step": 3364
+ },
+ {
+ "epoch": 46.74093490607252,
+ "grad_norm": 0.2192271202802658,
+ "learning_rate": 0.0006,
+ "loss": 3.6396851539611816,
+ "step": 3365
+ },
+ {
+ "epoch": 46.75491480996068,
+ "grad_norm": 0.20871607959270477,
+ "learning_rate": 0.0006,
+ "loss": 3.613509178161621,
+ "step": 3366
+ },
+ {
+ "epoch": 46.768894713848844,
+ "grad_norm": 0.1837828904390335,
+ "learning_rate": 0.0006,
+ "loss": 3.604039192199707,
+ "step": 3367
+ },
+ {
+ "epoch": 46.782874617737,
+ "grad_norm": 0.1904219537973404,
+ "learning_rate": 0.0006,
+ "loss": 3.6065895557403564,
+ "step": 3368
+ },
+ {
+ "epoch": 46.796854521625164,
+ "grad_norm": 0.19873572885990143,
+ "learning_rate": 0.0006,
+ "loss": 3.5927226543426514,
+ "step": 3369
+ },
+ {
+ "epoch": 46.81083442551333,
+ "grad_norm": 0.18319591879844666,
+ "learning_rate": 0.0006,
+ "loss": 3.6114919185638428,
+ "step": 3370
+ },
+ {
+ "epoch": 46.824814329401484,
+ "grad_norm": 0.19832435250282288,
+ "learning_rate": 0.0006,
+ "loss": 3.613637924194336,
+ "step": 3371
+ },
+ {
+ "epoch": 46.83879423328965,
+ "grad_norm": 0.21506333351135254,
+ "learning_rate": 0.0006,
+ "loss": 3.6116209030151367,
+ "step": 3372
+ },
+ {
+ "epoch": 46.8527741371778,
+ "grad_norm": 0.20374484360218048,
+ "learning_rate": 0.0006,
+ "loss": 3.5923004150390625,
+ "step": 3373
+ },
+ {
+ "epoch": 46.86675404106597,
+ "grad_norm": 0.19743360579013824,
+ "learning_rate": 0.0006,
+ "loss": 3.599381685256958,
+ "step": 3374
+ },
+ {
+ "epoch": 46.88073394495413,
+ "grad_norm": 0.20996616780757904,
+ "learning_rate": 0.0006,
+ "loss": 3.624969959259033,
+ "step": 3375
+ },
+ {
+ "epoch": 46.89471384884229,
+ "grad_norm": 0.22336791455745697,
+ "learning_rate": 0.0006,
+ "loss": 3.6152467727661133,
+ "step": 3376
+ },
+ {
+ "epoch": 46.90869375273045,
+ "grad_norm": 0.2337532341480255,
+ "learning_rate": 0.0006,
+ "loss": 3.6198863983154297,
+ "step": 3377
+ },
+ {
+ "epoch": 46.92267365661861,
+ "grad_norm": 0.23823462426662445,
+ "learning_rate": 0.0006,
+ "loss": 3.6411237716674805,
+ "step": 3378
+ },
+ {
+ "epoch": 46.93665356050677,
+ "grad_norm": 0.2521338164806366,
+ "learning_rate": 0.0006,
+ "loss": 3.621544122695923,
+ "step": 3379
+ },
+ {
+ "epoch": 46.95063346439493,
+ "grad_norm": 0.253682941198349,
+ "learning_rate": 0.0006,
+ "loss": 3.6570887565612793,
+ "step": 3380
+ },
+ {
+ "epoch": 46.964613368283096,
+ "grad_norm": 0.23392300307750702,
+ "learning_rate": 0.0006,
+ "loss": 3.669538974761963,
+ "step": 3381
+ },
+ {
+ "epoch": 46.97859327217125,
+ "grad_norm": 0.2154092937707901,
+ "learning_rate": 0.0006,
+ "loss": 3.6184825897216797,
+ "step": 3382
+ },
+ {
+ "epoch": 46.992573176059416,
+ "grad_norm": 0.1909833699464798,
+ "learning_rate": 0.0006,
+ "loss": 3.647658348083496,
+ "step": 3383
+ },
+ {
+ "epoch": 47.0,
+ "grad_norm": 0.2226407378911972,
+ "learning_rate": 0.0006,
+ "loss": 3.6413815021514893,
+ "step": 3384
+ },
+ {
+ "epoch": 47.0,
+ "eval_loss": 3.98313570022583,
+ "eval_runtime": 44.7152,
+ "eval_samples_per_second": 54.612,
+ "eval_steps_per_second": 3.422,
+ "step": 3384
+ },
+ {
+ "epoch": 47.01397990388816,
+ "grad_norm": 0.20830968022346497,
+ "learning_rate": 0.0006,
+ "loss": 3.5652623176574707,
+ "step": 3385
+ },
+ {
+ "epoch": 47.02795980777632,
+ "grad_norm": 0.18953651189804077,
+ "learning_rate": 0.0006,
+ "loss": 3.570180654525757,
+ "step": 3386
+ },
+ {
+ "epoch": 47.04193971166448,
+ "grad_norm": 0.20167700946331024,
+ "learning_rate": 0.0006,
+ "loss": 3.5623056888580322,
+ "step": 3387
+ },
+ {
+ "epoch": 47.05591961555265,
+ "grad_norm": 0.21554343402385712,
+ "learning_rate": 0.0006,
+ "loss": 3.549492835998535,
+ "step": 3388
+ },
+ {
+ "epoch": 47.0698995194408,
+ "grad_norm": 0.2232149988412857,
+ "learning_rate": 0.0006,
+ "loss": 3.584181785583496,
+ "step": 3389
+ },
+ {
+ "epoch": 47.083879423328966,
+ "grad_norm": 0.23489049077033997,
+ "learning_rate": 0.0006,
+ "loss": 3.581028461456299,
+ "step": 3390
+ },
+ {
+ "epoch": 47.09785932721712,
+ "grad_norm": 0.22486020624637604,
+ "learning_rate": 0.0006,
+ "loss": 3.600348949432373,
+ "step": 3391
+ },
+ {
+ "epoch": 47.111839231105286,
+ "grad_norm": 0.22932346165180206,
+ "learning_rate": 0.0006,
+ "loss": 3.5600457191467285,
+ "step": 3392
+ },
+ {
+ "epoch": 47.12581913499345,
+ "grad_norm": 0.2179419994354248,
+ "learning_rate": 0.0006,
+ "loss": 3.560136079788208,
+ "step": 3393
+ },
+ {
+ "epoch": 47.139799038881605,
+ "grad_norm": 0.2438054382801056,
+ "learning_rate": 0.0006,
+ "loss": 3.5955698490142822,
+ "step": 3394
+ },
+ {
+ "epoch": 47.15377894276977,
+ "grad_norm": 0.2652001976966858,
+ "learning_rate": 0.0006,
+ "loss": 3.5942912101745605,
+ "step": 3395
+ },
+ {
+ "epoch": 47.16775884665793,
+ "grad_norm": 0.270924836397171,
+ "learning_rate": 0.0006,
+ "loss": 3.5733351707458496,
+ "step": 3396
+ },
+ {
+ "epoch": 47.18173875054609,
+ "grad_norm": 0.28365132212638855,
+ "learning_rate": 0.0006,
+ "loss": 3.6042075157165527,
+ "step": 3397
+ },
+ {
+ "epoch": 47.19571865443425,
+ "grad_norm": 0.29530975222587585,
+ "learning_rate": 0.0006,
+ "loss": 3.588935375213623,
+ "step": 3398
+ },
+ {
+ "epoch": 47.20969855832241,
+ "grad_norm": 0.2658918797969818,
+ "learning_rate": 0.0006,
+ "loss": 3.5944671630859375,
+ "step": 3399
+ },
+ {
+ "epoch": 47.22367846221057,
+ "grad_norm": 0.24076500535011292,
+ "learning_rate": 0.0006,
+ "loss": 3.5853185653686523,
+ "step": 3400
+ },
+ {
+ "epoch": 47.237658366098735,
+ "grad_norm": 0.23032112419605255,
+ "learning_rate": 0.0006,
+ "loss": 3.620483875274658,
+ "step": 3401
+ },
+ {
+ "epoch": 47.25163826998689,
+ "grad_norm": 0.23124775290489197,
+ "learning_rate": 0.0006,
+ "loss": 3.6032004356384277,
+ "step": 3402
+ },
+ {
+ "epoch": 47.265618173875055,
+ "grad_norm": 0.21960225701332092,
+ "learning_rate": 0.0006,
+ "loss": 3.6079649925231934,
+ "step": 3403
+ },
+ {
+ "epoch": 47.27959807776322,
+ "grad_norm": 0.236652672290802,
+ "learning_rate": 0.0006,
+ "loss": 3.582645893096924,
+ "step": 3404
+ },
+ {
+ "epoch": 47.293577981651374,
+ "grad_norm": 0.2600267231464386,
+ "learning_rate": 0.0006,
+ "loss": 3.6067757606506348,
+ "step": 3405
+ },
+ {
+ "epoch": 47.30755788553954,
+ "grad_norm": 0.2337152659893036,
+ "learning_rate": 0.0006,
+ "loss": 3.5912275314331055,
+ "step": 3406
+ },
+ {
+ "epoch": 47.3215377894277,
+ "grad_norm": 0.21887873113155365,
+ "learning_rate": 0.0006,
+ "loss": 3.6008896827697754,
+ "step": 3407
+ },
+ {
+ "epoch": 47.33551769331586,
+ "grad_norm": 0.20265911519527435,
+ "learning_rate": 0.0006,
+ "loss": 3.5820152759552,
+ "step": 3408
+ },
+ {
+ "epoch": 47.34949759720402,
+ "grad_norm": 0.2005501389503479,
+ "learning_rate": 0.0006,
+ "loss": 3.604556083679199,
+ "step": 3409
+ },
+ {
+ "epoch": 47.36347750109218,
+ "grad_norm": 0.20682275295257568,
+ "learning_rate": 0.0006,
+ "loss": 3.584531307220459,
+ "step": 3410
+ },
+ {
+ "epoch": 47.37745740498034,
+ "grad_norm": 0.23283354938030243,
+ "learning_rate": 0.0006,
+ "loss": 3.59186053276062,
+ "step": 3411
+ },
+ {
+ "epoch": 47.391437308868504,
+ "grad_norm": 0.23033356666564941,
+ "learning_rate": 0.0006,
+ "loss": 3.5944037437438965,
+ "step": 3412
+ },
+ {
+ "epoch": 47.40541721275666,
+ "grad_norm": 0.21714402735233307,
+ "learning_rate": 0.0006,
+ "loss": 3.5834851264953613,
+ "step": 3413
+ },
+ {
+ "epoch": 47.419397116644824,
+ "grad_norm": 0.2138672024011612,
+ "learning_rate": 0.0006,
+ "loss": 3.6313700675964355,
+ "step": 3414
+ },
+ {
+ "epoch": 47.43337702053299,
+ "grad_norm": 0.23200160264968872,
+ "learning_rate": 0.0006,
+ "loss": 3.6112399101257324,
+ "step": 3415
+ },
+ {
+ "epoch": 47.44735692442114,
+ "grad_norm": 0.2632092833518982,
+ "learning_rate": 0.0006,
+ "loss": 3.6099038124084473,
+ "step": 3416
+ },
+ {
+ "epoch": 47.46133682830931,
+ "grad_norm": 0.23115520179271698,
+ "learning_rate": 0.0006,
+ "loss": 3.6060497760772705,
+ "step": 3417
+ },
+ {
+ "epoch": 47.47531673219746,
+ "grad_norm": 0.2596223056316376,
+ "learning_rate": 0.0006,
+ "loss": 3.5749685764312744,
+ "step": 3418
+ },
+ {
+ "epoch": 47.489296636085626,
+ "grad_norm": 0.27893415093421936,
+ "learning_rate": 0.0006,
+ "loss": 3.584045886993408,
+ "step": 3419
+ },
+ {
+ "epoch": 47.50327653997379,
+ "grad_norm": 0.23112469911575317,
+ "learning_rate": 0.0006,
+ "loss": 3.595407485961914,
+ "step": 3420
+ },
+ {
+ "epoch": 47.517256443861946,
+ "grad_norm": 0.23562486469745636,
+ "learning_rate": 0.0006,
+ "loss": 3.5657241344451904,
+ "step": 3421
+ },
+ {
+ "epoch": 47.53123634775011,
+ "grad_norm": 0.23366105556488037,
+ "learning_rate": 0.0006,
+ "loss": 3.624885082244873,
+ "step": 3422
+ },
+ {
+ "epoch": 47.54521625163827,
+ "grad_norm": 0.24383248388767242,
+ "learning_rate": 0.0006,
+ "loss": 3.638352394104004,
+ "step": 3423
+ },
+ {
+ "epoch": 47.55919615552643,
+ "grad_norm": 0.26388120651245117,
+ "learning_rate": 0.0006,
+ "loss": 3.614579200744629,
+ "step": 3424
+ },
+ {
+ "epoch": 47.57317605941459,
+ "grad_norm": 0.23676545917987823,
+ "learning_rate": 0.0006,
+ "loss": 3.609004259109497,
+ "step": 3425
+ },
+ {
+ "epoch": 47.58715596330275,
+ "grad_norm": 0.227967768907547,
+ "learning_rate": 0.0006,
+ "loss": 3.626171827316284,
+ "step": 3426
+ },
+ {
+ "epoch": 47.60113586719091,
+ "grad_norm": 0.23786529898643494,
+ "learning_rate": 0.0006,
+ "loss": 3.6205172538757324,
+ "step": 3427
+ },
+ {
+ "epoch": 47.615115771079076,
+ "grad_norm": 0.2599100172519684,
+ "learning_rate": 0.0006,
+ "loss": 3.6178271770477295,
+ "step": 3428
+ },
+ {
+ "epoch": 47.62909567496723,
+ "grad_norm": 0.2591858208179474,
+ "learning_rate": 0.0006,
+ "loss": 3.600297451019287,
+ "step": 3429
+ },
+ {
+ "epoch": 47.643075578855395,
+ "grad_norm": 0.2234215885400772,
+ "learning_rate": 0.0006,
+ "loss": 3.623141288757324,
+ "step": 3430
+ },
+ {
+ "epoch": 47.65705548274356,
+ "grad_norm": 0.23395098745822906,
+ "learning_rate": 0.0006,
+ "loss": 3.6243159770965576,
+ "step": 3431
+ },
+ {
+ "epoch": 47.671035386631715,
+ "grad_norm": 0.25706854462623596,
+ "learning_rate": 0.0006,
+ "loss": 3.5933618545532227,
+ "step": 3432
+ },
+ {
+ "epoch": 47.68501529051988,
+ "grad_norm": 0.22468037903308868,
+ "learning_rate": 0.0006,
+ "loss": 3.6048693656921387,
+ "step": 3433
+ },
+ {
+ "epoch": 47.69899519440804,
+ "grad_norm": 0.22432644665241241,
+ "learning_rate": 0.0006,
+ "loss": 3.604891777038574,
+ "step": 3434
+ },
+ {
+ "epoch": 47.7129750982962,
+ "grad_norm": 0.2278960943222046,
+ "learning_rate": 0.0006,
+ "loss": 3.610567092895508,
+ "step": 3435
+ },
+ {
+ "epoch": 47.72695500218436,
+ "grad_norm": 0.20652735233306885,
+ "learning_rate": 0.0006,
+ "loss": 3.60245418548584,
+ "step": 3436
+ },
+ {
+ "epoch": 47.74093490607252,
+ "grad_norm": 0.2141297310590744,
+ "learning_rate": 0.0006,
+ "loss": 3.5712027549743652,
+ "step": 3437
+ },
+ {
+ "epoch": 47.75491480996068,
+ "grad_norm": 0.23282566666603088,
+ "learning_rate": 0.0006,
+ "loss": 3.573568820953369,
+ "step": 3438
+ },
+ {
+ "epoch": 47.768894713848844,
+ "grad_norm": 0.21718674898147583,
+ "learning_rate": 0.0006,
+ "loss": 3.602047920227051,
+ "step": 3439
+ },
+ {
+ "epoch": 47.782874617737,
+ "grad_norm": 0.19592095911502838,
+ "learning_rate": 0.0006,
+ "loss": 3.6046957969665527,
+ "step": 3440
+ },
+ {
+ "epoch": 47.796854521625164,
+ "grad_norm": 0.21548260748386383,
+ "learning_rate": 0.0006,
+ "loss": 3.5808444023132324,
+ "step": 3441
+ },
+ {
+ "epoch": 47.81083442551333,
+ "grad_norm": 0.21945662796497345,
+ "learning_rate": 0.0006,
+ "loss": 3.6044554710388184,
+ "step": 3442
+ },
+ {
+ "epoch": 47.824814329401484,
+ "grad_norm": 0.20777440071105957,
+ "learning_rate": 0.0006,
+ "loss": 3.5991361141204834,
+ "step": 3443
+ },
+ {
+ "epoch": 47.83879423328965,
+ "grad_norm": 0.21566642820835114,
+ "learning_rate": 0.0006,
+ "loss": 3.6272850036621094,
+ "step": 3444
+ },
+ {
+ "epoch": 47.8527741371778,
+ "grad_norm": 0.22365771234035492,
+ "learning_rate": 0.0006,
+ "loss": 3.6323323249816895,
+ "step": 3445
+ },
+ {
+ "epoch": 47.86675404106597,
+ "grad_norm": 0.20193088054656982,
+ "learning_rate": 0.0006,
+ "loss": 3.5938191413879395,
+ "step": 3446
+ },
+ {
+ "epoch": 47.88073394495413,
+ "grad_norm": 0.20968061685562134,
+ "learning_rate": 0.0006,
+ "loss": 3.616640329360962,
+ "step": 3447
+ },
+ {
+ "epoch": 47.89471384884229,
+ "grad_norm": 0.20275580883026123,
+ "learning_rate": 0.0006,
+ "loss": 3.5769052505493164,
+ "step": 3448
+ },
+ {
+ "epoch": 47.90869375273045,
+ "grad_norm": 0.237605020403862,
+ "learning_rate": 0.0006,
+ "loss": 3.6221203804016113,
+ "step": 3449
+ },
+ {
+ "epoch": 47.92267365661861,
+ "grad_norm": 0.2820972502231598,
+ "learning_rate": 0.0006,
+ "loss": 3.5977487564086914,
+ "step": 3450
+ },
+ {
+ "epoch": 47.93665356050677,
+ "grad_norm": 0.23722891509532928,
+ "learning_rate": 0.0006,
+ "loss": 3.5963053703308105,
+ "step": 3451
+ },
+ {
+ "epoch": 47.95063346439493,
+ "grad_norm": 0.21471276879310608,
+ "learning_rate": 0.0006,
+ "loss": 3.6234917640686035,
+ "step": 3452
+ },
+ {
+ "epoch": 47.964613368283096,
+ "grad_norm": 0.2139028012752533,
+ "learning_rate": 0.0006,
+ "loss": 3.640500545501709,
+ "step": 3453
+ },
+ {
+ "epoch": 47.97859327217125,
+ "grad_norm": 0.1966913342475891,
+ "learning_rate": 0.0006,
+ "loss": 3.5856776237487793,
+ "step": 3454
+ },
+ {
+ "epoch": 47.992573176059416,
+ "grad_norm": 0.2375730276107788,
+ "learning_rate": 0.0006,
+ "loss": 3.6126937866210938,
+ "step": 3455
+ },
+ {
+ "epoch": 48.0,
+ "grad_norm": 0.2772855758666992,
+ "learning_rate": 0.0006,
+ "loss": 3.6041951179504395,
+ "step": 3456
+ },
+ {
+ "epoch": 48.0,
+ "eval_loss": 3.971400499343872,
+ "eval_runtime": 45.4792,
+ "eval_samples_per_second": 53.695,
+ "eval_steps_per_second": 3.364,
+ "step": 3456
+ },
+ {
+ "epoch": 48.01397990388816,
+ "grad_norm": 0.2269497811794281,
+ "learning_rate": 0.0006,
+ "loss": 3.525441884994507,
+ "step": 3457
+ },
+ {
+ "epoch": 48.02795980777632,
+ "grad_norm": 0.2080184519290924,
+ "learning_rate": 0.0006,
+ "loss": 3.5727145671844482,
+ "step": 3458
+ },
+ {
+ "epoch": 48.04193971166448,
+ "grad_norm": 0.21827049553394318,
+ "learning_rate": 0.0006,
+ "loss": 3.5799875259399414,
+ "step": 3459
+ },
+ {
+ "epoch": 48.05591961555265,
+ "grad_norm": 0.2173643410205841,
+ "learning_rate": 0.0006,
+ "loss": 3.587097406387329,
+ "step": 3460
+ },
+ {
+ "epoch": 48.0698995194408,
+ "grad_norm": 0.23125280439853668,
+ "learning_rate": 0.0006,
+ "loss": 3.593235969543457,
+ "step": 3461
+ },
+ {
+ "epoch": 48.083879423328966,
+ "grad_norm": 0.2235819697380066,
+ "learning_rate": 0.0006,
+ "loss": 3.5724973678588867,
+ "step": 3462
+ },
+ {
+ "epoch": 48.09785932721712,
+ "grad_norm": 0.2329849898815155,
+ "learning_rate": 0.0006,
+ "loss": 3.5689549446105957,
+ "step": 3463
+ },
+ {
+ "epoch": 48.111839231105286,
+ "grad_norm": 0.21178825199604034,
+ "learning_rate": 0.0006,
+ "loss": 3.5522305965423584,
+ "step": 3464
+ },
+ {
+ "epoch": 48.12581913499345,
+ "grad_norm": 0.22026701271533966,
+ "learning_rate": 0.0006,
+ "loss": 3.5622801780700684,
+ "step": 3465
+ },
+ {
+ "epoch": 48.139799038881605,
+ "grad_norm": 0.23427478969097137,
+ "learning_rate": 0.0006,
+ "loss": 3.6076972484588623,
+ "step": 3466
+ },
+ {
+ "epoch": 48.15377894276977,
+ "grad_norm": 0.22437651455402374,
+ "learning_rate": 0.0006,
+ "loss": 3.5898380279541016,
+ "step": 3467
+ },
+ {
+ "epoch": 48.16775884665793,
+ "grad_norm": 0.22911588847637177,
+ "learning_rate": 0.0006,
+ "loss": 3.584866523742676,
+ "step": 3468
+ },
+ {
+ "epoch": 48.18173875054609,
+ "grad_norm": 0.21358130872249603,
+ "learning_rate": 0.0006,
+ "loss": 3.581397533416748,
+ "step": 3469
+ },
+ {
+ "epoch": 48.19571865443425,
+ "grad_norm": 0.2102762758731842,
+ "learning_rate": 0.0006,
+ "loss": 3.6218419075012207,
+ "step": 3470
+ },
+ {
+ "epoch": 48.20969855832241,
+ "grad_norm": 0.22417177259922028,
+ "learning_rate": 0.0006,
+ "loss": 3.5875539779663086,
+ "step": 3471
+ },
+ {
+ "epoch": 48.22367846221057,
+ "grad_norm": 0.2096744030714035,
+ "learning_rate": 0.0006,
+ "loss": 3.6017215251922607,
+ "step": 3472
+ },
+ {
+ "epoch": 48.237658366098735,
+ "grad_norm": 0.18693844974040985,
+ "learning_rate": 0.0006,
+ "loss": 3.590221405029297,
+ "step": 3473
+ },
+ {
+ "epoch": 48.25163826998689,
+ "grad_norm": 0.21102994680404663,
+ "learning_rate": 0.0006,
+ "loss": 3.5685019493103027,
+ "step": 3474
+ },
+ {
+ "epoch": 48.265618173875055,
+ "grad_norm": 0.20756356418132782,
+ "learning_rate": 0.0006,
+ "loss": 3.577427387237549,
+ "step": 3475
+ },
+ {
+ "epoch": 48.27959807776322,
+ "grad_norm": 0.20425064861774445,
+ "learning_rate": 0.0006,
+ "loss": 3.602522134780884,
+ "step": 3476
+ },
+ {
+ "epoch": 48.293577981651374,
+ "grad_norm": 0.1976020187139511,
+ "learning_rate": 0.0006,
+ "loss": 3.5847134590148926,
+ "step": 3477
+ },
+ {
+ "epoch": 48.30755788553954,
+ "grad_norm": 0.19685129821300507,
+ "learning_rate": 0.0006,
+ "loss": 3.5638442039489746,
+ "step": 3478
+ },
+ {
+ "epoch": 48.3215377894277,
+ "grad_norm": 0.19657646119594574,
+ "learning_rate": 0.0006,
+ "loss": 3.5669779777526855,
+ "step": 3479
+ },
+ {
+ "epoch": 48.33551769331586,
+ "grad_norm": 0.19855819642543793,
+ "learning_rate": 0.0006,
+ "loss": 3.5712571144104004,
+ "step": 3480
+ },
+ {
+ "epoch": 48.34949759720402,
+ "grad_norm": 0.19961503148078918,
+ "learning_rate": 0.0006,
+ "loss": 3.5869312286376953,
+ "step": 3481
+ },
+ {
+ "epoch": 48.36347750109218,
+ "grad_norm": 0.19302639365196228,
+ "learning_rate": 0.0006,
+ "loss": 3.571394920349121,
+ "step": 3482
+ },
+ {
+ "epoch": 48.37745740498034,
+ "grad_norm": 0.1953866183757782,
+ "learning_rate": 0.0006,
+ "loss": 3.556633234024048,
+ "step": 3483
+ },
+ {
+ "epoch": 48.391437308868504,
+ "grad_norm": 0.20028206706047058,
+ "learning_rate": 0.0006,
+ "loss": 3.5559535026550293,
+ "step": 3484
+ },
+ {
+ "epoch": 48.40541721275666,
+ "grad_norm": 0.2286558896303177,
+ "learning_rate": 0.0006,
+ "loss": 3.6052510738372803,
+ "step": 3485
+ },
+ {
+ "epoch": 48.419397116644824,
+ "grad_norm": 0.21764399111270905,
+ "learning_rate": 0.0006,
+ "loss": 3.5955848693847656,
+ "step": 3486
+ },
+ {
+ "epoch": 48.43337702053299,
+ "grad_norm": 0.2257501780986786,
+ "learning_rate": 0.0006,
+ "loss": 3.586179256439209,
+ "step": 3487
+ },
+ {
+ "epoch": 48.44735692442114,
+ "grad_norm": 0.23023653030395508,
+ "learning_rate": 0.0006,
+ "loss": 3.593329906463623,
+ "step": 3488
+ },
+ {
+ "epoch": 48.46133682830931,
+ "grad_norm": 0.21283918619155884,
+ "learning_rate": 0.0006,
+ "loss": 3.5909814834594727,
+ "step": 3489
+ },
+ {
+ "epoch": 48.47531673219746,
+ "grad_norm": 0.2143639773130417,
+ "learning_rate": 0.0006,
+ "loss": 3.61320161819458,
+ "step": 3490
+ },
+ {
+ "epoch": 48.489296636085626,
+ "grad_norm": 0.2138844132423401,
+ "learning_rate": 0.0006,
+ "loss": 3.556607246398926,
+ "step": 3491
+ },
+ {
+ "epoch": 48.50327653997379,
+ "grad_norm": 0.22122617065906525,
+ "learning_rate": 0.0006,
+ "loss": 3.629208564758301,
+ "step": 3492
+ },
+ {
+ "epoch": 48.517256443861946,
+ "grad_norm": 0.22430218756198883,
+ "learning_rate": 0.0006,
+ "loss": 3.61891508102417,
+ "step": 3493
+ },
+ {
+ "epoch": 48.53123634775011,
+ "grad_norm": 0.23830844461917877,
+ "learning_rate": 0.0006,
+ "loss": 3.5818424224853516,
+ "step": 3494
+ },
+ {
+ "epoch": 48.54521625163827,
+ "grad_norm": 0.23596757650375366,
+ "learning_rate": 0.0006,
+ "loss": 3.609959602355957,
+ "step": 3495
+ },
+ {
+ "epoch": 48.55919615552643,
+ "grad_norm": 0.22046151757240295,
+ "learning_rate": 0.0006,
+ "loss": 3.585991382598877,
+ "step": 3496
+ },
+ {
+ "epoch": 48.57317605941459,
+ "grad_norm": 0.22838662564754486,
+ "learning_rate": 0.0006,
+ "loss": 3.6047747135162354,
+ "step": 3497
+ },
+ {
+ "epoch": 48.58715596330275,
+ "grad_norm": 0.22605256736278534,
+ "learning_rate": 0.0006,
+ "loss": 3.584585428237915,
+ "step": 3498
+ },
+ {
+ "epoch": 48.60113586719091,
+ "grad_norm": 0.22761467099189758,
+ "learning_rate": 0.0006,
+ "loss": 3.5680465698242188,
+ "step": 3499
+ },
+ {
+ "epoch": 48.615115771079076,
+ "grad_norm": 0.20537005364894867,
+ "learning_rate": 0.0006,
+ "loss": 3.5822806358337402,
+ "step": 3500
+ },
+ {
+ "epoch": 48.62909567496723,
+ "grad_norm": 0.21871088445186615,
+ "learning_rate": 0.0006,
+ "loss": 3.5643906593322754,
+ "step": 3501
+ },
+ {
+ "epoch": 48.643075578855395,
+ "grad_norm": 0.2291785329580307,
+ "learning_rate": 0.0006,
+ "loss": 3.6313328742980957,
+ "step": 3502
+ },
+ {
+ "epoch": 48.65705548274356,
+ "grad_norm": 0.2437039464712143,
+ "learning_rate": 0.0006,
+ "loss": 3.588334083557129,
+ "step": 3503
+ },
+ {
+ "epoch": 48.671035386631715,
+ "grad_norm": 0.23070715367794037,
+ "learning_rate": 0.0006,
+ "loss": 3.611356258392334,
+ "step": 3504
+ },
+ {
+ "epoch": 48.68501529051988,
+ "grad_norm": 0.23983895778656006,
+ "learning_rate": 0.0006,
+ "loss": 3.5953967571258545,
+ "step": 3505
+ },
+ {
+ "epoch": 48.69899519440804,
+ "grad_norm": 0.2283167690038681,
+ "learning_rate": 0.0006,
+ "loss": 3.605307102203369,
+ "step": 3506
+ },
+ {
+ "epoch": 48.7129750982962,
+ "grad_norm": 0.20861059427261353,
+ "learning_rate": 0.0006,
+ "loss": 3.598266363143921,
+ "step": 3507
+ },
+ {
+ "epoch": 48.72695500218436,
+ "grad_norm": 0.20209547877311707,
+ "learning_rate": 0.0006,
+ "loss": 3.6022191047668457,
+ "step": 3508
+ },
+ {
+ "epoch": 48.74093490607252,
+ "grad_norm": 0.19089370965957642,
+ "learning_rate": 0.0006,
+ "loss": 3.628640651702881,
+ "step": 3509
+ },
+ {
+ "epoch": 48.75491480996068,
+ "grad_norm": 0.18544727563858032,
+ "learning_rate": 0.0006,
+ "loss": 3.6204819679260254,
+ "step": 3510
+ },
+ {
+ "epoch": 48.768894713848844,
+ "grad_norm": 0.18295186758041382,
+ "learning_rate": 0.0006,
+ "loss": 3.5899410247802734,
+ "step": 3511
+ },
+ {
+ "epoch": 48.782874617737,
+ "grad_norm": 0.1953844279050827,
+ "learning_rate": 0.0006,
+ "loss": 3.581699848175049,
+ "step": 3512
+ },
+ {
+ "epoch": 48.796854521625164,
+ "grad_norm": 0.195505291223526,
+ "learning_rate": 0.0006,
+ "loss": 3.6046862602233887,
+ "step": 3513
+ },
+ {
+ "epoch": 48.81083442551333,
+ "grad_norm": 0.19805945456027985,
+ "learning_rate": 0.0006,
+ "loss": 3.609510898590088,
+ "step": 3514
+ },
+ {
+ "epoch": 48.824814329401484,
+ "grad_norm": 0.18694287538528442,
+ "learning_rate": 0.0006,
+ "loss": 3.580693483352661,
+ "step": 3515
+ },
+ {
+ "epoch": 48.83879423328965,
+ "grad_norm": 0.19227269291877747,
+ "learning_rate": 0.0006,
+ "loss": 3.6174416542053223,
+ "step": 3516
+ },
+ {
+ "epoch": 48.8527741371778,
+ "grad_norm": 0.1966937631368637,
+ "learning_rate": 0.0006,
+ "loss": 3.616194248199463,
+ "step": 3517
+ },
+ {
+ "epoch": 48.86675404106597,
+ "grad_norm": 0.20755162835121155,
+ "learning_rate": 0.0006,
+ "loss": 3.594695568084717,
+ "step": 3518
+ },
+ {
+ "epoch": 48.88073394495413,
+ "grad_norm": 0.2012479156255722,
+ "learning_rate": 0.0006,
+ "loss": 3.6069273948669434,
+ "step": 3519
+ },
+ {
+ "epoch": 48.89471384884229,
+ "grad_norm": 0.19260065257549286,
+ "learning_rate": 0.0006,
+ "loss": 3.573819160461426,
+ "step": 3520
+ },
+ {
+ "epoch": 48.90869375273045,
+ "grad_norm": 0.19911104440689087,
+ "learning_rate": 0.0006,
+ "loss": 3.632185459136963,
+ "step": 3521
+ },
+ {
+ "epoch": 48.92267365661861,
+ "grad_norm": 0.22266048192977905,
+ "learning_rate": 0.0006,
+ "loss": 3.607295513153076,
+ "step": 3522
+ },
+ {
+ "epoch": 48.93665356050677,
+ "grad_norm": 0.2542882561683655,
+ "learning_rate": 0.0006,
+ "loss": 3.6014773845672607,
+ "step": 3523
+ },
+ {
+ "epoch": 48.95063346439493,
+ "grad_norm": 0.2878575026988983,
+ "learning_rate": 0.0006,
+ "loss": 3.5825531482696533,
+ "step": 3524
+ },
+ {
+ "epoch": 48.964613368283096,
+ "grad_norm": 0.3157055675983429,
+ "learning_rate": 0.0006,
+ "loss": 3.5986037254333496,
+ "step": 3525
+ },
+ {
+ "epoch": 48.97859327217125,
+ "grad_norm": 0.2815262973308563,
+ "learning_rate": 0.0006,
+ "loss": 3.6099600791931152,
+ "step": 3526
+ },
+ {
+ "epoch": 48.992573176059416,
+ "grad_norm": 0.22102823853492737,
+ "learning_rate": 0.0006,
+ "loss": 3.5859827995300293,
+ "step": 3527
+ },
+ {
+ "epoch": 49.0,
+ "grad_norm": 0.24937094748020172,
+ "learning_rate": 0.0006,
+ "loss": 3.622842311859131,
+ "step": 3528
+ },
+ {
+ "epoch": 49.0,
+ "eval_loss": 3.977067232131958,
+ "eval_runtime": 45.5503,
+ "eval_samples_per_second": 53.611,
+ "eval_steps_per_second": 3.359,
+ "step": 3528
+ },
+ {
+ "epoch": 49.01397990388816,
+ "grad_norm": 0.25072216987609863,
+ "learning_rate": 0.0006,
+ "loss": 3.590653419494629,
+ "step": 3529
+ },
+ {
+ "epoch": 49.02795980777632,
+ "grad_norm": 0.2611052989959717,
+ "learning_rate": 0.0006,
+ "loss": 3.5504279136657715,
+ "step": 3530
+ },
+ {
+ "epoch": 49.04193971166448,
+ "grad_norm": 0.2547961473464966,
+ "learning_rate": 0.0006,
+ "loss": 3.5797581672668457,
+ "step": 3531
+ },
+ {
+ "epoch": 49.05591961555265,
+ "grad_norm": 0.25674310326576233,
+ "learning_rate": 0.0006,
+ "loss": 3.557278871536255,
+ "step": 3532
+ },
+ {
+ "epoch": 49.0698995194408,
+ "grad_norm": 0.25511929392814636,
+ "learning_rate": 0.0006,
+ "loss": 3.5788025856018066,
+ "step": 3533
+ },
+ {
+ "epoch": 49.083879423328966,
+ "grad_norm": 0.22920994460582733,
+ "learning_rate": 0.0006,
+ "loss": 3.580489158630371,
+ "step": 3534
+ },
+ {
+ "epoch": 49.09785932721712,
+ "grad_norm": 0.23436492681503296,
+ "learning_rate": 0.0006,
+ "loss": 3.5603699684143066,
+ "step": 3535
+ },
+ {
+ "epoch": 49.111839231105286,
+ "grad_norm": 0.2542382776737213,
+ "learning_rate": 0.0006,
+ "loss": 3.5937037467956543,
+ "step": 3536
+ },
+ {
+ "epoch": 49.12581913499345,
+ "grad_norm": 0.26718273758888245,
+ "learning_rate": 0.0006,
+ "loss": 3.6032168865203857,
+ "step": 3537
+ },
+ {
+ "epoch": 49.139799038881605,
+ "grad_norm": 0.2406773865222931,
+ "learning_rate": 0.0006,
+ "loss": 3.5737085342407227,
+ "step": 3538
+ },
+ {
+ "epoch": 49.15377894276977,
+ "grad_norm": 0.23408754169940948,
+ "learning_rate": 0.0006,
+ "loss": 3.592543601989746,
+ "step": 3539
+ },
+ {
+ "epoch": 49.16775884665793,
+ "grad_norm": 0.22974351048469543,
+ "learning_rate": 0.0006,
+ "loss": 3.543618679046631,
+ "step": 3540
+ },
+ {
+ "epoch": 49.18173875054609,
+ "grad_norm": 0.23479530215263367,
+ "learning_rate": 0.0006,
+ "loss": 3.547590732574463,
+ "step": 3541
+ },
+ {
+ "epoch": 49.19571865443425,
+ "grad_norm": 0.2100638598203659,
+ "learning_rate": 0.0006,
+ "loss": 3.6027469635009766,
+ "step": 3542
+ },
+ {
+ "epoch": 49.20969855832241,
+ "grad_norm": 0.20239035785198212,
+ "learning_rate": 0.0006,
+ "loss": 3.598567008972168,
+ "step": 3543
+ },
+ {
+ "epoch": 49.22367846221057,
+ "grad_norm": 0.20480065047740936,
+ "learning_rate": 0.0006,
+ "loss": 3.591038227081299,
+ "step": 3544
+ },
+ {
+ "epoch": 49.237658366098735,
+ "grad_norm": 0.20439887046813965,
+ "learning_rate": 0.0006,
+ "loss": 3.555039405822754,
+ "step": 3545
+ },
+ {
+ "epoch": 49.25163826998689,
+ "grad_norm": 0.21245788037776947,
+ "learning_rate": 0.0006,
+ "loss": 3.5772666931152344,
+ "step": 3546
+ },
+ {
+ "epoch": 49.265618173875055,
+ "grad_norm": 0.1993357390165329,
+ "learning_rate": 0.0006,
+ "loss": 3.5847411155700684,
+ "step": 3547
+ },
+ {
+ "epoch": 49.27959807776322,
+ "grad_norm": 0.22550229728221893,
+ "learning_rate": 0.0006,
+ "loss": 3.5679750442504883,
+ "step": 3548
+ },
+ {
+ "epoch": 49.293577981651374,
+ "grad_norm": 0.2383355349302292,
+ "learning_rate": 0.0006,
+ "loss": 3.57085919380188,
+ "step": 3549
+ },
+ {
+ "epoch": 49.30755788553954,
+ "grad_norm": 0.23968911170959473,
+ "learning_rate": 0.0006,
+ "loss": 3.557415246963501,
+ "step": 3550
+ },
+ {
+ "epoch": 49.3215377894277,
+ "grad_norm": 0.21453262865543365,
+ "learning_rate": 0.0006,
+ "loss": 3.5763611793518066,
+ "step": 3551
+ },
+ {
+ "epoch": 49.33551769331586,
+ "grad_norm": 0.20380273461341858,
+ "learning_rate": 0.0006,
+ "loss": 3.552011013031006,
+ "step": 3552
+ },
+ {
+ "epoch": 49.34949759720402,
+ "grad_norm": 0.19719970226287842,
+ "learning_rate": 0.0006,
+ "loss": 3.5719075202941895,
+ "step": 3553
+ },
+ {
+ "epoch": 49.36347750109218,
+ "grad_norm": 0.19018089771270752,
+ "learning_rate": 0.0006,
+ "loss": 3.5843467712402344,
+ "step": 3554
+ },
+ {
+ "epoch": 49.37745740498034,
+ "grad_norm": 0.18369099497795105,
+ "learning_rate": 0.0006,
+ "loss": 3.561741352081299,
+ "step": 3555
+ },
+ {
+ "epoch": 49.391437308868504,
+ "grad_norm": 0.2070280760526657,
+ "learning_rate": 0.0006,
+ "loss": 3.590721607208252,
+ "step": 3556
+ },
+ {
+ "epoch": 49.40541721275666,
+ "grad_norm": 0.23287905752658844,
+ "learning_rate": 0.0006,
+ "loss": 3.617081642150879,
+ "step": 3557
+ },
+ {
+ "epoch": 49.419397116644824,
+ "grad_norm": 0.21877793967723846,
+ "learning_rate": 0.0006,
+ "loss": 3.547166347503662,
+ "step": 3558
+ },
+ {
+ "epoch": 49.43337702053299,
+ "grad_norm": 0.21105137467384338,
+ "learning_rate": 0.0006,
+ "loss": 3.593552350997925,
+ "step": 3559
+ },
+ {
+ "epoch": 49.44735692442114,
+ "grad_norm": 0.24940872192382812,
+ "learning_rate": 0.0006,
+ "loss": 3.599729537963867,
+ "step": 3560
+ },
+ {
+ "epoch": 49.46133682830931,
+ "grad_norm": 0.26952996850013733,
+ "learning_rate": 0.0006,
+ "loss": 3.5915074348449707,
+ "step": 3561
+ },
+ {
+ "epoch": 49.47531673219746,
+ "grad_norm": 0.25706353783607483,
+ "learning_rate": 0.0006,
+ "loss": 3.587472915649414,
+ "step": 3562
+ },
+ {
+ "epoch": 49.489296636085626,
+ "grad_norm": 0.23666661977767944,
+ "learning_rate": 0.0006,
+ "loss": 3.561340808868408,
+ "step": 3563
+ },
+ {
+ "epoch": 49.50327653997379,
+ "grad_norm": 0.22524063289165497,
+ "learning_rate": 0.0006,
+ "loss": 3.587310314178467,
+ "step": 3564
+ },
+ {
+ "epoch": 49.517256443861946,
+ "grad_norm": 0.22991003096103668,
+ "learning_rate": 0.0006,
+ "loss": 3.56671142578125,
+ "step": 3565
+ },
+ {
+ "epoch": 49.53123634775011,
+ "grad_norm": 0.23067602515220642,
+ "learning_rate": 0.0006,
+ "loss": 3.578601837158203,
+ "step": 3566
+ },
+ {
+ "epoch": 49.54521625163827,
+ "grad_norm": 0.2133914828300476,
+ "learning_rate": 0.0006,
+ "loss": 3.593726873397827,
+ "step": 3567
+ },
+ {
+ "epoch": 49.55919615552643,
+ "grad_norm": 0.21879160404205322,
+ "learning_rate": 0.0006,
+ "loss": 3.5833992958068848,
+ "step": 3568
+ },
+ {
+ "epoch": 49.57317605941459,
+ "grad_norm": 0.2116270661354065,
+ "learning_rate": 0.0006,
+ "loss": 3.575761079788208,
+ "step": 3569
+ },
+ {
+ "epoch": 49.58715596330275,
+ "grad_norm": 0.19506660103797913,
+ "learning_rate": 0.0006,
+ "loss": 3.5600461959838867,
+ "step": 3570
+ },
+ {
+ "epoch": 49.60113586719091,
+ "grad_norm": 0.21305067837238312,
+ "learning_rate": 0.0006,
+ "loss": 3.5717577934265137,
+ "step": 3571
+ },
+ {
+ "epoch": 49.615115771079076,
+ "grad_norm": 0.21184347569942474,
+ "learning_rate": 0.0006,
+ "loss": 3.608819007873535,
+ "step": 3572
+ },
+ {
+ "epoch": 49.62909567496723,
+ "grad_norm": 0.22302201390266418,
+ "learning_rate": 0.0006,
+ "loss": 3.5871644020080566,
+ "step": 3573
+ },
+ {
+ "epoch": 49.643075578855395,
+ "grad_norm": 0.21942365169525146,
+ "learning_rate": 0.0006,
+ "loss": 3.596029043197632,
+ "step": 3574
+ },
+ {
+ "epoch": 49.65705548274356,
+ "grad_norm": 0.2627110481262207,
+ "learning_rate": 0.0006,
+ "loss": 3.5900766849517822,
+ "step": 3575
+ },
+ {
+ "epoch": 49.671035386631715,
+ "grad_norm": 0.28253448009490967,
+ "learning_rate": 0.0006,
+ "loss": 3.599386215209961,
+ "step": 3576
+ },
+ {
+ "epoch": 49.68501529051988,
+ "grad_norm": 0.24279426038265228,
+ "learning_rate": 0.0006,
+ "loss": 3.580909013748169,
+ "step": 3577
+ },
+ {
+ "epoch": 49.69899519440804,
+ "grad_norm": 0.22092898190021515,
+ "learning_rate": 0.0006,
+ "loss": 3.6043782234191895,
+ "step": 3578
+ },
+ {
+ "epoch": 49.7129750982962,
+ "grad_norm": 0.23356051743030548,
+ "learning_rate": 0.0006,
+ "loss": 3.6103105545043945,
+ "step": 3579
+ },
+ {
+ "epoch": 49.72695500218436,
+ "grad_norm": 0.24508118629455566,
+ "learning_rate": 0.0006,
+ "loss": 3.612980365753174,
+ "step": 3580
+ },
+ {
+ "epoch": 49.74093490607252,
+ "grad_norm": 0.2501833438873291,
+ "learning_rate": 0.0006,
+ "loss": 3.6111063957214355,
+ "step": 3581
+ },
+ {
+ "epoch": 49.75491480996068,
+ "grad_norm": 0.2263427972793579,
+ "learning_rate": 0.0006,
+ "loss": 3.5709285736083984,
+ "step": 3582
+ },
+ {
+ "epoch": 49.768894713848844,
+ "grad_norm": 0.19881728291511536,
+ "learning_rate": 0.0006,
+ "loss": 3.5836503505706787,
+ "step": 3583
+ },
+ {
+ "epoch": 49.782874617737,
+ "grad_norm": 0.22516517341136932,
+ "learning_rate": 0.0006,
+ "loss": 3.5797667503356934,
+ "step": 3584
+ },
+ {
+ "epoch": 49.796854521625164,
+ "grad_norm": 0.22347061336040497,
+ "learning_rate": 0.0006,
+ "loss": 3.6245951652526855,
+ "step": 3585
+ },
+ {
+ "epoch": 49.81083442551333,
+ "grad_norm": 0.2062593549489975,
+ "learning_rate": 0.0006,
+ "loss": 3.607572317123413,
+ "step": 3586
+ },
+ {
+ "epoch": 49.824814329401484,
+ "grad_norm": 0.20671074092388153,
+ "learning_rate": 0.0006,
+ "loss": 3.5671472549438477,
+ "step": 3587
+ },
+ {
+ "epoch": 49.83879423328965,
+ "grad_norm": 0.19981902837753296,
+ "learning_rate": 0.0006,
+ "loss": 3.6084837913513184,
+ "step": 3588
+ },
+ {
+ "epoch": 49.8527741371778,
+ "grad_norm": 0.2004556804895401,
+ "learning_rate": 0.0006,
+ "loss": 3.631455898284912,
+ "step": 3589
+ },
+ {
+ "epoch": 49.86675404106597,
+ "grad_norm": 0.20990414917469025,
+ "learning_rate": 0.0006,
+ "loss": 3.6017699241638184,
+ "step": 3590
+ },
+ {
+ "epoch": 49.88073394495413,
+ "grad_norm": 0.19016146659851074,
+ "learning_rate": 0.0006,
+ "loss": 3.6110801696777344,
+ "step": 3591
+ },
+ {
+ "epoch": 49.89471384884229,
+ "grad_norm": 0.2015834003686905,
+ "learning_rate": 0.0006,
+ "loss": 3.58852481842041,
+ "step": 3592
+ },
+ {
+ "epoch": 49.90869375273045,
+ "grad_norm": 0.205678328871727,
+ "learning_rate": 0.0006,
+ "loss": 3.581789970397949,
+ "step": 3593
+ },
+ {
+ "epoch": 49.92267365661861,
+ "grad_norm": 0.20975211262702942,
+ "learning_rate": 0.0006,
+ "loss": 3.6126320362091064,
+ "step": 3594
+ },
+ {
+ "epoch": 49.93665356050677,
+ "grad_norm": 0.20510081946849823,
+ "learning_rate": 0.0006,
+ "loss": 3.5970656871795654,
+ "step": 3595
+ },
+ {
+ "epoch": 49.95063346439493,
+ "grad_norm": 0.19842886924743652,
+ "learning_rate": 0.0006,
+ "loss": 3.6055545806884766,
+ "step": 3596
+ },
+ {
+ "epoch": 49.964613368283096,
+ "grad_norm": 0.20551791787147522,
+ "learning_rate": 0.0006,
+ "loss": 3.5861949920654297,
+ "step": 3597
+ },
+ {
+ "epoch": 49.97859327217125,
+ "grad_norm": 0.21147456765174866,
+ "learning_rate": 0.0006,
+ "loss": 3.585934638977051,
+ "step": 3598
+ },
+ {
+ "epoch": 49.992573176059416,
+ "grad_norm": 0.21793442964553833,
+ "learning_rate": 0.0006,
+ "loss": 3.5956411361694336,
+ "step": 3599
+ },
+ {
+ "epoch": 50.0,
+ "grad_norm": 0.24623161554336548,
+ "learning_rate": 0.0006,
+ "loss": 3.623453140258789,
+ "step": 3600
+ },
+ {
+ "epoch": 50.0,
+ "eval_loss": 3.9807891845703125,
+ "eval_runtime": 45.7708,
+ "eval_samples_per_second": 53.353,
+ "eval_steps_per_second": 3.343,
+ "step": 3600
+ },
+ {
+ "epoch": 50.01397990388816,
+ "grad_norm": 0.22322626411914825,
+ "learning_rate": 0.0006,
+ "loss": 3.5475401878356934,
+ "step": 3601
+ },
+ {
+ "epoch": 50.02795980777632,
+ "grad_norm": 0.21957066655158997,
+ "learning_rate": 0.0006,
+ "loss": 3.5616683959960938,
+ "step": 3602
+ },
+ {
+ "epoch": 50.04193971166448,
+ "grad_norm": 0.22030551731586456,
+ "learning_rate": 0.0006,
+ "loss": 3.56367826461792,
+ "step": 3603
+ },
+ {
+ "epoch": 50.05591961555265,
+ "grad_norm": 0.21536092460155487,
+ "learning_rate": 0.0006,
+ "loss": 3.5613503456115723,
+ "step": 3604
+ },
+ {
+ "epoch": 50.0698995194408,
+ "grad_norm": 0.22454269230365753,
+ "learning_rate": 0.0006,
+ "loss": 3.5348987579345703,
+ "step": 3605
+ },
+ {
+ "epoch": 50.083879423328966,
+ "grad_norm": 0.2281617820262909,
+ "learning_rate": 0.0006,
+ "loss": 3.5722241401672363,
+ "step": 3606
+ },
+ {
+ "epoch": 50.09785932721712,
+ "grad_norm": 0.23318710923194885,
+ "learning_rate": 0.0006,
+ "loss": 3.559063673019409,
+ "step": 3607
+ },
+ {
+ "epoch": 50.111839231105286,
+ "grad_norm": 0.2277889847755432,
+ "learning_rate": 0.0006,
+ "loss": 3.5632925033569336,
+ "step": 3608
+ },
+ {
+ "epoch": 50.12581913499345,
+ "grad_norm": 0.2317705601453781,
+ "learning_rate": 0.0006,
+ "loss": 3.5835886001586914,
+ "step": 3609
+ },
+ {
+ "epoch": 50.139799038881605,
+ "grad_norm": 0.21388863027095795,
+ "learning_rate": 0.0006,
+ "loss": 3.5976145267486572,
+ "step": 3610
+ },
+ {
+ "epoch": 50.15377894276977,
+ "grad_norm": 0.2070954293012619,
+ "learning_rate": 0.0006,
+ "loss": 3.5486221313476562,
+ "step": 3611
+ },
+ {
+ "epoch": 50.16775884665793,
+ "grad_norm": 0.21602077782154083,
+ "learning_rate": 0.0006,
+ "loss": 3.5897607803344727,
+ "step": 3612
+ },
+ {
+ "epoch": 50.18173875054609,
+ "grad_norm": 0.21106162667274475,
+ "learning_rate": 0.0006,
+ "loss": 3.5587167739868164,
+ "step": 3613
+ },
+ {
+ "epoch": 50.19571865443425,
+ "grad_norm": 0.2047950178384781,
+ "learning_rate": 0.0006,
+ "loss": 3.576798915863037,
+ "step": 3614
+ },
+ {
+ "epoch": 50.20969855832241,
+ "grad_norm": 0.2204097956418991,
+ "learning_rate": 0.0006,
+ "loss": 3.5466837882995605,
+ "step": 3615
+ },
+ {
+ "epoch": 50.22367846221057,
+ "grad_norm": 0.2220875471830368,
+ "learning_rate": 0.0006,
+ "loss": 3.5722036361694336,
+ "step": 3616
+ },
+ {
+ "epoch": 50.237658366098735,
+ "grad_norm": 0.2250797003507614,
+ "learning_rate": 0.0006,
+ "loss": 3.566347122192383,
+ "step": 3617
+ },
+ {
+ "epoch": 50.25163826998689,
+ "grad_norm": 0.22837485373020172,
+ "learning_rate": 0.0006,
+ "loss": 3.5673274993896484,
+ "step": 3618
+ },
+ {
+ "epoch": 50.265618173875055,
+ "grad_norm": 0.2281104475259781,
+ "learning_rate": 0.0006,
+ "loss": 3.5543737411499023,
+ "step": 3619
+ },
+ {
+ "epoch": 50.27959807776322,
+ "grad_norm": 0.2052381932735443,
+ "learning_rate": 0.0006,
+ "loss": 3.566401958465576,
+ "step": 3620
+ },
+ {
+ "epoch": 50.293577981651374,
+ "grad_norm": 0.2125921994447708,
+ "learning_rate": 0.0006,
+ "loss": 3.5467424392700195,
+ "step": 3621
+ },
+ {
+ "epoch": 50.30755788553954,
+ "grad_norm": 0.22641244530677795,
+ "learning_rate": 0.0006,
+ "loss": 3.548497200012207,
+ "step": 3622
+ },
+ {
+ "epoch": 50.3215377894277,
+ "grad_norm": 0.23039482533931732,
+ "learning_rate": 0.0006,
+ "loss": 3.5948381423950195,
+ "step": 3623
+ },
+ {
+ "epoch": 50.33551769331586,
+ "grad_norm": 0.22753404080867767,
+ "learning_rate": 0.0006,
+ "loss": 3.541825532913208,
+ "step": 3624
+ },
+ {
+ "epoch": 50.34949759720402,
+ "grad_norm": 0.2528170347213745,
+ "learning_rate": 0.0006,
+ "loss": 3.5937235355377197,
+ "step": 3625
+ },
+ {
+ "epoch": 50.36347750109218,
+ "grad_norm": 0.25434595346450806,
+ "learning_rate": 0.0006,
+ "loss": 3.5779776573181152,
+ "step": 3626
+ },
+ {
+ "epoch": 50.37745740498034,
+ "grad_norm": 0.22519059479236603,
+ "learning_rate": 0.0006,
+ "loss": 3.5456271171569824,
+ "step": 3627
+ },
+ {
+ "epoch": 50.391437308868504,
+ "grad_norm": 0.2077232301235199,
+ "learning_rate": 0.0006,
+ "loss": 3.5693111419677734,
+ "step": 3628
+ },
+ {
+ "epoch": 50.40541721275666,
+ "grad_norm": 0.20925411581993103,
+ "learning_rate": 0.0006,
+ "loss": 3.6063997745513916,
+ "step": 3629
+ },
+ {
+ "epoch": 50.419397116644824,
+ "grad_norm": 0.2114555686712265,
+ "learning_rate": 0.0006,
+ "loss": 3.5676894187927246,
+ "step": 3630
+ },
+ {
+ "epoch": 50.43337702053299,
+ "grad_norm": 0.23759354650974274,
+ "learning_rate": 0.0006,
+ "loss": 3.5465126037597656,
+ "step": 3631
+ },
+ {
+ "epoch": 50.44735692442114,
+ "grad_norm": 0.23809516429901123,
+ "learning_rate": 0.0006,
+ "loss": 3.571600914001465,
+ "step": 3632
+ },
+ {
+ "epoch": 50.46133682830931,
+ "grad_norm": 0.20501303672790527,
+ "learning_rate": 0.0006,
+ "loss": 3.573550224304199,
+ "step": 3633
+ },
+ {
+ "epoch": 50.47531673219746,
+ "grad_norm": 0.21562306582927704,
+ "learning_rate": 0.0006,
+ "loss": 3.5625600814819336,
+ "step": 3634
+ },
+ {
+ "epoch": 50.489296636085626,
+ "grad_norm": 0.20469479262828827,
+ "learning_rate": 0.0006,
+ "loss": 3.5737175941467285,
+ "step": 3635
+ },
+ {
+ "epoch": 50.50327653997379,
+ "grad_norm": 0.2078634798526764,
+ "learning_rate": 0.0006,
+ "loss": 3.5691545009613037,
+ "step": 3636
+ },
+ {
+ "epoch": 50.517256443861946,
+ "grad_norm": 0.20340897142887115,
+ "learning_rate": 0.0006,
+ "loss": 3.583918571472168,
+ "step": 3637
+ },
+ {
+ "epoch": 50.53123634775011,
+ "grad_norm": 0.2006944715976715,
+ "learning_rate": 0.0006,
+ "loss": 3.596034049987793,
+ "step": 3638
+ },
+ {
+ "epoch": 50.54521625163827,
+ "grad_norm": 0.19281257688999176,
+ "learning_rate": 0.0006,
+ "loss": 3.5993080139160156,
+ "step": 3639
+ },
+ {
+ "epoch": 50.55919615552643,
+ "grad_norm": 0.19528807699680328,
+ "learning_rate": 0.0006,
+ "loss": 3.6108102798461914,
+ "step": 3640
+ },
+ {
+ "epoch": 50.57317605941459,
+ "grad_norm": 0.19329112768173218,
+ "learning_rate": 0.0006,
+ "loss": 3.5964512825012207,
+ "step": 3641
+ },
+ {
+ "epoch": 50.58715596330275,
+ "grad_norm": 0.1928209513425827,
+ "learning_rate": 0.0006,
+ "loss": 3.5927724838256836,
+ "step": 3642
+ },
+ {
+ "epoch": 50.60113586719091,
+ "grad_norm": 0.20212236046791077,
+ "learning_rate": 0.0006,
+ "loss": 3.5778708457946777,
+ "step": 3643
+ },
+ {
+ "epoch": 50.615115771079076,
+ "grad_norm": 0.22244620323181152,
+ "learning_rate": 0.0006,
+ "loss": 3.6219539642333984,
+ "step": 3644
+ },
+ {
+ "epoch": 50.62909567496723,
+ "grad_norm": 0.2659119963645935,
+ "learning_rate": 0.0006,
+ "loss": 3.578831195831299,
+ "step": 3645
+ },
+ {
+ "epoch": 50.643075578855395,
+ "grad_norm": 0.2837344706058502,
+ "learning_rate": 0.0006,
+ "loss": 3.587677240371704,
+ "step": 3646
+ },
+ {
+ "epoch": 50.65705548274356,
+ "grad_norm": 0.26747965812683105,
+ "learning_rate": 0.0006,
+ "loss": 3.611286163330078,
+ "step": 3647
+ },
+ {
+ "epoch": 50.671035386631715,
+ "grad_norm": 0.24604788422584534,
+ "learning_rate": 0.0006,
+ "loss": 3.5740575790405273,
+ "step": 3648
+ },
+ {
+ "epoch": 50.68501529051988,
+ "grad_norm": 0.2379457652568817,
+ "learning_rate": 0.0006,
+ "loss": 3.5997209548950195,
+ "step": 3649
+ },
+ {
+ "epoch": 50.69899519440804,
+ "grad_norm": 0.2296321839094162,
+ "learning_rate": 0.0006,
+ "loss": 3.5975162982940674,
+ "step": 3650
+ },
+ {
+ "epoch": 50.7129750982962,
+ "grad_norm": 0.22054627537727356,
+ "learning_rate": 0.0006,
+ "loss": 3.5821738243103027,
+ "step": 3651
+ },
+ {
+ "epoch": 50.72695500218436,
+ "grad_norm": 0.22114980220794678,
+ "learning_rate": 0.0006,
+ "loss": 3.5769970417022705,
+ "step": 3652
+ },
+ {
+ "epoch": 50.74093490607252,
+ "grad_norm": 0.21389314532279968,
+ "learning_rate": 0.0006,
+ "loss": 3.5952796936035156,
+ "step": 3653
+ },
+ {
+ "epoch": 50.75491480996068,
+ "grad_norm": 0.21069210767745972,
+ "learning_rate": 0.0006,
+ "loss": 3.5884671211242676,
+ "step": 3654
+ },
+ {
+ "epoch": 50.768894713848844,
+ "grad_norm": 0.22028805315494537,
+ "learning_rate": 0.0006,
+ "loss": 3.593442440032959,
+ "step": 3655
+ },
+ {
+ "epoch": 50.782874617737,
+ "grad_norm": 0.21296948194503784,
+ "learning_rate": 0.0006,
+ "loss": 3.5656774044036865,
+ "step": 3656
+ },
+ {
+ "epoch": 50.796854521625164,
+ "grad_norm": 0.19871588051319122,
+ "learning_rate": 0.0006,
+ "loss": 3.5939064025878906,
+ "step": 3657
+ },
+ {
+ "epoch": 50.81083442551333,
+ "grad_norm": 0.19523470103740692,
+ "learning_rate": 0.0006,
+ "loss": 3.5806071758270264,
+ "step": 3658
+ },
+ {
+ "epoch": 50.824814329401484,
+ "grad_norm": 0.18718191981315613,
+ "learning_rate": 0.0006,
+ "loss": 3.5903120040893555,
+ "step": 3659
+ },
+ {
+ "epoch": 50.83879423328965,
+ "grad_norm": 0.18796689808368683,
+ "learning_rate": 0.0006,
+ "loss": 3.5799593925476074,
+ "step": 3660
+ },
+ {
+ "epoch": 50.8527741371778,
+ "grad_norm": 0.21794569492340088,
+ "learning_rate": 0.0006,
+ "loss": 3.5712361335754395,
+ "step": 3661
+ },
+ {
+ "epoch": 50.86675404106597,
+ "grad_norm": 0.2374759465456009,
+ "learning_rate": 0.0006,
+ "loss": 3.602503776550293,
+ "step": 3662
+ },
+ {
+ "epoch": 50.88073394495413,
+ "grad_norm": 0.20213527977466583,
+ "learning_rate": 0.0006,
+ "loss": 3.5756399631500244,
+ "step": 3663
+ },
+ {
+ "epoch": 50.89471384884229,
+ "grad_norm": 0.1875160187482834,
+ "learning_rate": 0.0006,
+ "loss": 3.625436305999756,
+ "step": 3664
+ },
+ {
+ "epoch": 50.90869375273045,
+ "grad_norm": 0.19908255338668823,
+ "learning_rate": 0.0006,
+ "loss": 3.592522621154785,
+ "step": 3665
+ },
+ {
+ "epoch": 50.92267365661861,
+ "grad_norm": 0.20776167511940002,
+ "learning_rate": 0.0006,
+ "loss": 3.5777883529663086,
+ "step": 3666
+ },
+ {
+ "epoch": 50.93665356050677,
+ "grad_norm": 0.19510093331336975,
+ "learning_rate": 0.0006,
+ "loss": 3.587306022644043,
+ "step": 3667
+ },
+ {
+ "epoch": 50.95063346439493,
+ "grad_norm": 0.2180490493774414,
+ "learning_rate": 0.0006,
+ "loss": 3.5855464935302734,
+ "step": 3668
+ },
+ {
+ "epoch": 50.964613368283096,
+ "grad_norm": 0.19967055320739746,
+ "learning_rate": 0.0006,
+ "loss": 3.609689235687256,
+ "step": 3669
+ },
+ {
+ "epoch": 50.97859327217125,
+ "grad_norm": 0.2081584632396698,
+ "learning_rate": 0.0006,
+ "loss": 3.625236749649048,
+ "step": 3670
+ },
+ {
+ "epoch": 50.992573176059416,
+ "grad_norm": 0.2312266230583191,
+ "learning_rate": 0.0006,
+ "loss": 3.5977330207824707,
+ "step": 3671
+ },
+ {
+ "epoch": 51.0,
+ "grad_norm": 0.2464766502380371,
+ "learning_rate": 0.0006,
+ "loss": 3.610635995864868,
+ "step": 3672
+ },
+ {
+ "epoch": 51.0,
+ "eval_loss": 3.9810166358947754,
+ "eval_runtime": 45.5851,
+ "eval_samples_per_second": 53.57,
+ "eval_steps_per_second": 3.356,
+ "step": 3672
+ },
+ {
+ "epoch": 51.01397990388816,
+ "grad_norm": 0.22583232820034027,
+ "learning_rate": 0.0006,
+ "loss": 3.547168016433716,
+ "step": 3673
+ },
+ {
+ "epoch": 51.02795980777632,
+ "grad_norm": 0.23001070320606232,
+ "learning_rate": 0.0006,
+ "loss": 3.546207904815674,
+ "step": 3674
+ },
+ {
+ "epoch": 51.04193971166448,
+ "grad_norm": 0.21891392767429352,
+ "learning_rate": 0.0006,
+ "loss": 3.564371109008789,
+ "step": 3675
+ },
+ {
+ "epoch": 51.05591961555265,
+ "grad_norm": 0.22195076942443848,
+ "learning_rate": 0.0006,
+ "loss": 3.538297414779663,
+ "step": 3676
+ },
+ {
+ "epoch": 51.0698995194408,
+ "grad_norm": 0.24688288569450378,
+ "learning_rate": 0.0006,
+ "loss": 3.5705811977386475,
+ "step": 3677
+ },
+ {
+ "epoch": 51.083879423328966,
+ "grad_norm": 0.2731003165245056,
+ "learning_rate": 0.0006,
+ "loss": 3.530763626098633,
+ "step": 3678
+ },
+ {
+ "epoch": 51.09785932721712,
+ "grad_norm": 0.27474021911621094,
+ "learning_rate": 0.0006,
+ "loss": 3.5559208393096924,
+ "step": 3679
+ },
+ {
+ "epoch": 51.111839231105286,
+ "grad_norm": 0.26311439275741577,
+ "learning_rate": 0.0006,
+ "loss": 3.5698819160461426,
+ "step": 3680
+ },
+ {
+ "epoch": 51.12581913499345,
+ "grad_norm": 0.21895965933799744,
+ "learning_rate": 0.0006,
+ "loss": 3.567232370376587,
+ "step": 3681
+ },
+ {
+ "epoch": 51.139799038881605,
+ "grad_norm": 0.19598282873630524,
+ "learning_rate": 0.0006,
+ "loss": 3.6033718585968018,
+ "step": 3682
+ },
+ {
+ "epoch": 51.15377894276977,
+ "grad_norm": 0.2183268666267395,
+ "learning_rate": 0.0006,
+ "loss": 3.5599026679992676,
+ "step": 3683
+ },
+ {
+ "epoch": 51.16775884665793,
+ "grad_norm": 0.22657731175422668,
+ "learning_rate": 0.0006,
+ "loss": 3.532038688659668,
+ "step": 3684
+ },
+ {
+ "epoch": 51.18173875054609,
+ "grad_norm": 0.21979935467243195,
+ "learning_rate": 0.0006,
+ "loss": 3.544640064239502,
+ "step": 3685
+ },
+ {
+ "epoch": 51.19571865443425,
+ "grad_norm": 0.20581361651420593,
+ "learning_rate": 0.0006,
+ "loss": 3.579803466796875,
+ "step": 3686
+ },
+ {
+ "epoch": 51.20969855832241,
+ "grad_norm": 0.22677212953567505,
+ "learning_rate": 0.0006,
+ "loss": 3.576796054840088,
+ "step": 3687
+ },
+ {
+ "epoch": 51.22367846221057,
+ "grad_norm": 0.2599104940891266,
+ "learning_rate": 0.0006,
+ "loss": 3.5657899379730225,
+ "step": 3688
+ },
+ {
+ "epoch": 51.237658366098735,
+ "grad_norm": 0.23320309817790985,
+ "learning_rate": 0.0006,
+ "loss": 3.5537824630737305,
+ "step": 3689
+ },
+ {
+ "epoch": 51.25163826998689,
+ "grad_norm": 0.2345186471939087,
+ "learning_rate": 0.0006,
+ "loss": 3.5699901580810547,
+ "step": 3690
+ },
+ {
+ "epoch": 51.265618173875055,
+ "grad_norm": 0.24723312258720398,
+ "learning_rate": 0.0006,
+ "loss": 3.553495168685913,
+ "step": 3691
+ },
+ {
+ "epoch": 51.27959807776322,
+ "grad_norm": 0.24195604026317596,
+ "learning_rate": 0.0006,
+ "loss": 3.6008248329162598,
+ "step": 3692
+ },
+ {
+ "epoch": 51.293577981651374,
+ "grad_norm": 0.23011726140975952,
+ "learning_rate": 0.0006,
+ "loss": 3.5842812061309814,
+ "step": 3693
+ },
+ {
+ "epoch": 51.30755788553954,
+ "grad_norm": 0.23412185907363892,
+ "learning_rate": 0.0006,
+ "loss": 3.5648040771484375,
+ "step": 3694
+ },
+ {
+ "epoch": 51.3215377894277,
+ "grad_norm": 0.22911828756332397,
+ "learning_rate": 0.0006,
+ "loss": 3.5599000453948975,
+ "step": 3695
+ },
+ {
+ "epoch": 51.33551769331586,
+ "grad_norm": 0.20045386254787445,
+ "learning_rate": 0.0006,
+ "loss": 3.559370517730713,
+ "step": 3696
+ },
+ {
+ "epoch": 51.34949759720402,
+ "grad_norm": 0.24723322689533234,
+ "learning_rate": 0.0006,
+ "loss": 3.5734081268310547,
+ "step": 3697
+ },
+ {
+ "epoch": 51.36347750109218,
+ "grad_norm": 0.28003066778182983,
+ "learning_rate": 0.0006,
+ "loss": 3.574591636657715,
+ "step": 3698
+ },
+ {
+ "epoch": 51.37745740498034,
+ "grad_norm": 0.27969157695770264,
+ "learning_rate": 0.0006,
+ "loss": 3.5703907012939453,
+ "step": 3699
+ },
+ {
+ "epoch": 51.391437308868504,
+ "grad_norm": 0.2352922111749649,
+ "learning_rate": 0.0006,
+ "loss": 3.540452480316162,
+ "step": 3700
+ },
+ {
+ "epoch": 51.40541721275666,
+ "grad_norm": 0.21332240104675293,
+ "learning_rate": 0.0006,
+ "loss": 3.5883522033691406,
+ "step": 3701
+ },
+ {
+ "epoch": 51.419397116644824,
+ "grad_norm": 0.2021809071302414,
+ "learning_rate": 0.0006,
+ "loss": 3.567544460296631,
+ "step": 3702
+ },
+ {
+ "epoch": 51.43337702053299,
+ "grad_norm": 0.23054654896259308,
+ "learning_rate": 0.0006,
+ "loss": 3.5927062034606934,
+ "step": 3703
+ },
+ {
+ "epoch": 51.44735692442114,
+ "grad_norm": 0.22398747503757477,
+ "learning_rate": 0.0006,
+ "loss": 3.5977213382720947,
+ "step": 3704
+ },
+ {
+ "epoch": 51.46133682830931,
+ "grad_norm": 0.2021128088235855,
+ "learning_rate": 0.0006,
+ "loss": 3.585836887359619,
+ "step": 3705
+ },
+ {
+ "epoch": 51.47531673219746,
+ "grad_norm": 0.23031292855739594,
+ "learning_rate": 0.0006,
+ "loss": 3.532315731048584,
+ "step": 3706
+ },
+ {
+ "epoch": 51.489296636085626,
+ "grad_norm": 0.26744455099105835,
+ "learning_rate": 0.0006,
+ "loss": 3.585782289505005,
+ "step": 3707
+ },
+ {
+ "epoch": 51.50327653997379,
+ "grad_norm": 0.2508980929851532,
+ "learning_rate": 0.0006,
+ "loss": 3.550276279449463,
+ "step": 3708
+ },
+ {
+ "epoch": 51.517256443861946,
+ "grad_norm": 0.2180585265159607,
+ "learning_rate": 0.0006,
+ "loss": 3.566798210144043,
+ "step": 3709
+ },
+ {
+ "epoch": 51.53123634775011,
+ "grad_norm": 0.18508869409561157,
+ "learning_rate": 0.0006,
+ "loss": 3.5295116901397705,
+ "step": 3710
+ },
+ {
+ "epoch": 51.54521625163827,
+ "grad_norm": 0.19017672538757324,
+ "learning_rate": 0.0006,
+ "loss": 3.5932717323303223,
+ "step": 3711
+ },
+ {
+ "epoch": 51.55919615552643,
+ "grad_norm": 0.2228020876646042,
+ "learning_rate": 0.0006,
+ "loss": 3.5660648345947266,
+ "step": 3712
+ },
+ {
+ "epoch": 51.57317605941459,
+ "grad_norm": 0.22948148846626282,
+ "learning_rate": 0.0006,
+ "loss": 3.5785627365112305,
+ "step": 3713
+ },
+ {
+ "epoch": 51.58715596330275,
+ "grad_norm": 0.2438911497592926,
+ "learning_rate": 0.0006,
+ "loss": 3.5885257720947266,
+ "step": 3714
+ },
+ {
+ "epoch": 51.60113586719091,
+ "grad_norm": 0.25012296438217163,
+ "learning_rate": 0.0006,
+ "loss": 3.577232599258423,
+ "step": 3715
+ },
+ {
+ "epoch": 51.615115771079076,
+ "grad_norm": 0.27102336287498474,
+ "learning_rate": 0.0006,
+ "loss": 3.5600078105926514,
+ "step": 3716
+ },
+ {
+ "epoch": 51.62909567496723,
+ "grad_norm": 0.26425355672836304,
+ "learning_rate": 0.0006,
+ "loss": 3.5694093704223633,
+ "step": 3717
+ },
+ {
+ "epoch": 51.643075578855395,
+ "grad_norm": 0.24292822182178497,
+ "learning_rate": 0.0006,
+ "loss": 3.5774331092834473,
+ "step": 3718
+ },
+ {
+ "epoch": 51.65705548274356,
+ "grad_norm": 0.22668084502220154,
+ "learning_rate": 0.0006,
+ "loss": 3.5912742614746094,
+ "step": 3719
+ },
+ {
+ "epoch": 51.671035386631715,
+ "grad_norm": 0.2090575248003006,
+ "learning_rate": 0.0006,
+ "loss": 3.5473170280456543,
+ "step": 3720
+ },
+ {
+ "epoch": 51.68501529051988,
+ "grad_norm": 0.22276616096496582,
+ "learning_rate": 0.0006,
+ "loss": 3.6076784133911133,
+ "step": 3721
+ },
+ {
+ "epoch": 51.69899519440804,
+ "grad_norm": 0.22105294466018677,
+ "learning_rate": 0.0006,
+ "loss": 3.5820791721343994,
+ "step": 3722
+ },
+ {
+ "epoch": 51.7129750982962,
+ "grad_norm": 0.19231240451335907,
+ "learning_rate": 0.0006,
+ "loss": 3.6017708778381348,
+ "step": 3723
+ },
+ {
+ "epoch": 51.72695500218436,
+ "grad_norm": 0.2050354927778244,
+ "learning_rate": 0.0006,
+ "loss": 3.5967769622802734,
+ "step": 3724
+ },
+ {
+ "epoch": 51.74093490607252,
+ "grad_norm": 0.19779305160045624,
+ "learning_rate": 0.0006,
+ "loss": 3.597214698791504,
+ "step": 3725
+ },
+ {
+ "epoch": 51.75491480996068,
+ "grad_norm": 0.22394844889640808,
+ "learning_rate": 0.0006,
+ "loss": 3.574063301086426,
+ "step": 3726
+ },
+ {
+ "epoch": 51.768894713848844,
+ "grad_norm": 0.2262638807296753,
+ "learning_rate": 0.0006,
+ "loss": 3.5754079818725586,
+ "step": 3727
+ },
+ {
+ "epoch": 51.782874617737,
+ "grad_norm": 0.2168288677930832,
+ "learning_rate": 0.0006,
+ "loss": 3.6079599857330322,
+ "step": 3728
+ },
+ {
+ "epoch": 51.796854521625164,
+ "grad_norm": 0.2035517394542694,
+ "learning_rate": 0.0006,
+ "loss": 3.5948667526245117,
+ "step": 3729
+ },
+ {
+ "epoch": 51.81083442551333,
+ "grad_norm": 0.20529425144195557,
+ "learning_rate": 0.0006,
+ "loss": 3.5589542388916016,
+ "step": 3730
+ },
+ {
+ "epoch": 51.824814329401484,
+ "grad_norm": 0.2464100867509842,
+ "learning_rate": 0.0006,
+ "loss": 3.5947155952453613,
+ "step": 3731
+ },
+ {
+ "epoch": 51.83879423328965,
+ "grad_norm": 0.28043219447135925,
+ "learning_rate": 0.0006,
+ "loss": 3.6102852821350098,
+ "step": 3732
+ },
+ {
+ "epoch": 51.8527741371778,
+ "grad_norm": 0.2879013121128082,
+ "learning_rate": 0.0006,
+ "loss": 3.5903573036193848,
+ "step": 3733
+ },
+ {
+ "epoch": 51.86675404106597,
+ "grad_norm": 0.2532044053077698,
+ "learning_rate": 0.0006,
+ "loss": 3.5704729557037354,
+ "step": 3734
+ },
+ {
+ "epoch": 51.88073394495413,
+ "grad_norm": 0.25126248598098755,
+ "learning_rate": 0.0006,
+ "loss": 3.5449633598327637,
+ "step": 3735
+ },
+ {
+ "epoch": 51.89471384884229,
+ "grad_norm": 0.2494364082813263,
+ "learning_rate": 0.0006,
+ "loss": 3.5825607776641846,
+ "step": 3736
+ },
+ {
+ "epoch": 51.90869375273045,
+ "grad_norm": 0.24867761135101318,
+ "learning_rate": 0.0006,
+ "loss": 3.5998034477233887,
+ "step": 3737
+ },
+ {
+ "epoch": 51.92267365661861,
+ "grad_norm": 0.2552012801170349,
+ "learning_rate": 0.0006,
+ "loss": 3.5487377643585205,
+ "step": 3738
+ },
+ {
+ "epoch": 51.93665356050677,
+ "grad_norm": 0.2243119329214096,
+ "learning_rate": 0.0006,
+ "loss": 3.6081466674804688,
+ "step": 3739
+ },
+ {
+ "epoch": 51.95063346439493,
+ "grad_norm": 0.2106700837612152,
+ "learning_rate": 0.0006,
+ "loss": 3.607586622238159,
+ "step": 3740
+ },
+ {
+ "epoch": 51.964613368283096,
+ "grad_norm": 0.2207096666097641,
+ "learning_rate": 0.0006,
+ "loss": 3.6094579696655273,
+ "step": 3741
+ },
+ {
+ "epoch": 51.97859327217125,
+ "grad_norm": 0.2310071736574173,
+ "learning_rate": 0.0006,
+ "loss": 3.5837807655334473,
+ "step": 3742
+ },
+ {
+ "epoch": 51.992573176059416,
+ "grad_norm": 0.258770614862442,
+ "learning_rate": 0.0006,
+ "loss": 3.639329433441162,
+ "step": 3743
+ },
+ {
+ "epoch": 52.0,
+ "grad_norm": 0.24004915356636047,
+ "learning_rate": 0.0006,
+ "loss": 3.6178512573242188,
+ "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/mask15-l2r50-fulle-lm/checkpoint-3744/training_args.bin b/runs/mask15-l2r50-fulle-lm/checkpoint-3744/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..43721c50815fe94f90cb043bf545b8f7bd9afc38
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-3744/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:a0b8d7bb9ac952b1abed3bd1e5c8f6ebd20daa957b3a85688954f8df03be6eb9
+size 4856
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-4032/chat_template.jinja b/runs/mask15-l2r50-fulle-lm/checkpoint-4032/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/mask15-l2r50-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/mask15-l2r50-fulle-lm/checkpoint-4032/config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-4032/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..1b4ac3c550d6003148026765eba4cb1512b216c9
--- /dev/null
+++ b/runs/mask15-l2r50-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": 151672
+}
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-4032/generation_config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-4032/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..5cd15fe1269fd505cfdefe9b3e9989dacd9f68f4
--- /dev/null
+++ b/runs/mask15-l2r50-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/mask15-l2r50-fulle-lm/checkpoint-4032/model.safetensors b/runs/mask15-l2r50-fulle-lm/checkpoint-4032/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..4ac68630643e8df5906a0b80f70548b6b8eccc10
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-4032/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:a2e226109f41a474d033a31e28895ebaa67ea53e2563e4385d59bb7c612c0b88
+size 583358280
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-4032/optimizer.pt b/runs/mask15-l2r50-fulle-lm/checkpoint-4032/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..5207fd4a6f0cf24db3b0e913655fb94197eeb3f3
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-4032/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:9efff755491071bb368762d42c66dd4750cde47d50746ecaf1c1572e10aab14e
+size 1166829434
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-4032/rng_state_0.pth b/runs/mask15-l2r50-fulle-lm/checkpoint-4032/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..191668dcbcc047b2ce56e1375bf04f20c10dfe47
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-4032/rng_state_0.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:8563e76c06d23e5032c6929f65003a38d7bacf615690ad595b215b45009a0599
+size 14512
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-4032/rng_state_1.pth b/runs/mask15-l2r50-fulle-lm/checkpoint-4032/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..1c1cb1190322ff4da7e9bd78231ef29d0aad3236
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-4032/rng_state_1.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:43a1cfbe46ac066c6a8b25092e857cf2ac280a800b30445fb8376622afbcc536
+size 14512
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-4032/scheduler.pt b/runs/mask15-l2r50-fulle-lm/checkpoint-4032/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..5da96a3852815ab990f23f4b91093acc83e76469
--- /dev/null
+++ b/runs/mask15-l2r50-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/mask15-l2r50-fulle-lm/checkpoint-4032/tokenizer.json b/runs/mask15-l2r50-fulle-lm/checkpoint-4032/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..6226bf25372d1a86dbd704ec75d2129960f1ba88
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-4032/tokenizer.json
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:9245fe3cb2d40f9ed8d5d8ddd1d58701ba2a236beec08f656162281673f30560
+size 11424264
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-4032/tokenizer_config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-4032/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..01bc9676576e8cf62a08a9db166d6c5bab1d6727
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-4032/tokenizer_config.json
@@ -0,0 +1,20 @@
+{
+ "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|>",
+ "<|mask|>"
+ ],
+ "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/mask15-l2r50-fulle-lm/checkpoint-4032/trainer_state.json b/runs/mask15-l2r50-fulle-lm/checkpoint-4032/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..81f30b3cf89a2e087d90167f185553e9262cdda4
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-4032/trainer_state.json
@@ -0,0 +1,28698 @@
+{
+ "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": 9.807971954345703,
+ "learning_rate": 0.0,
+ "loss": 11.989814758300781,
+ "step": 1
+ },
+ {
+ "epoch": 0.027959807776321538,
+ "grad_norm": 9.834383010864258,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 11.993022918701172,
+ "step": 2
+ },
+ {
+ "epoch": 0.04193971166448231,
+ "grad_norm": 9.482470512390137,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 11.854345321655273,
+ "step": 3
+ },
+ {
+ "epoch": 0.055919615552643076,
+ "grad_norm": 7.678808689117432,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 11.618255615234375,
+ "step": 4
+ },
+ {
+ "epoch": 0.06989951944080385,
+ "grad_norm": 6.011275291442871,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 11.351423263549805,
+ "step": 5
+ },
+ {
+ "epoch": 0.08387942332896461,
+ "grad_norm": 5.244393825531006,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 11.128631591796875,
+ "step": 6
+ },
+ {
+ "epoch": 0.09785932721712538,
+ "grad_norm": 4.577618598937988,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 10.921937942504883,
+ "step": 7
+ },
+ {
+ "epoch": 0.11183923110528615,
+ "grad_norm": 4.03810453414917,
+ "learning_rate": 4.2e-05,
+ "loss": 10.742650985717773,
+ "step": 8
+ },
+ {
+ "epoch": 0.1258191349934469,
+ "grad_norm": 3.657679796218872,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 10.600778579711914,
+ "step": 9
+ },
+ {
+ "epoch": 0.1397990388816077,
+ "grad_norm": 3.352902889251709,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 10.489639282226562,
+ "step": 10
+ },
+ {
+ "epoch": 0.15377894276976845,
+ "grad_norm": 3.1162633895874023,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 10.417770385742188,
+ "step": 11
+ },
+ {
+ "epoch": 0.16775884665792923,
+ "grad_norm": 3.0402638912200928,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 10.35334587097168,
+ "step": 12
+ },
+ {
+ "epoch": 0.18173875054608998,
+ "grad_norm": 3.030630111694336,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 10.306867599487305,
+ "step": 13
+ },
+ {
+ "epoch": 0.19571865443425077,
+ "grad_norm": 3.035292148590088,
+ "learning_rate": 7.8e-05,
+ "loss": 10.26003646850586,
+ "step": 14
+ },
+ {
+ "epoch": 0.20969855832241152,
+ "grad_norm": 3.0125675201416016,
+ "learning_rate": 8.4e-05,
+ "loss": 10.219265937805176,
+ "step": 15
+ },
+ {
+ "epoch": 0.2236784622105723,
+ "grad_norm": 2.9998886585235596,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 10.161077499389648,
+ "step": 16
+ },
+ {
+ "epoch": 0.23765836609873306,
+ "grad_norm": 2.9411966800689697,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 10.107423782348633,
+ "step": 17
+ },
+ {
+ "epoch": 0.2516382699868938,
+ "grad_norm": 2.88081955909729,
+ "learning_rate": 0.000102,
+ "loss": 10.04700756072998,
+ "step": 18
+ },
+ {
+ "epoch": 0.2656181738750546,
+ "grad_norm": 2.8219687938690186,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 9.981185913085938,
+ "step": 19
+ },
+ {
+ "epoch": 0.2795980777632154,
+ "grad_norm": 2.79306960105896,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 9.89747142791748,
+ "step": 20
+ },
+ {
+ "epoch": 0.29357798165137616,
+ "grad_norm": 2.7314443588256836,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 9.829219818115234,
+ "step": 21
+ },
+ {
+ "epoch": 0.3075578855395369,
+ "grad_norm": 2.6923747062683105,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 9.747566223144531,
+ "step": 22
+ },
+ {
+ "epoch": 0.3215377894276977,
+ "grad_norm": 2.650602340698242,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 9.66455078125,
+ "step": 23
+ },
+ {
+ "epoch": 0.33551769331585846,
+ "grad_norm": 2.606977701187134,
+ "learning_rate": 0.000138,
+ "loss": 9.582326889038086,
+ "step": 24
+ },
+ {
+ "epoch": 0.34949759720401924,
+ "grad_norm": 2.567256212234497,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 9.492591857910156,
+ "step": 25
+ },
+ {
+ "epoch": 0.36347750109217997,
+ "grad_norm": 2.520740509033203,
+ "learning_rate": 0.00015,
+ "loss": 9.396563529968262,
+ "step": 26
+ },
+ {
+ "epoch": 0.37745740498034075,
+ "grad_norm": 2.471588611602783,
+ "learning_rate": 0.000156,
+ "loss": 9.303571701049805,
+ "step": 27
+ },
+ {
+ "epoch": 0.39143730886850153,
+ "grad_norm": 2.4341530799865723,
+ "learning_rate": 0.000162,
+ "loss": 9.191819190979004,
+ "step": 28
+ },
+ {
+ "epoch": 0.4054172127566623,
+ "grad_norm": 2.369244337081909,
+ "learning_rate": 0.000168,
+ "loss": 9.092012405395508,
+ "step": 29
+ },
+ {
+ "epoch": 0.41939711664482304,
+ "grad_norm": 2.28625226020813,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 8.984567642211914,
+ "step": 30
+ },
+ {
+ "epoch": 0.4333770205329838,
+ "grad_norm": 2.2082231044769287,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 8.889009475708008,
+ "step": 31
+ },
+ {
+ "epoch": 0.4473569244211446,
+ "grad_norm": 2.1429483890533447,
+ "learning_rate": 0.000186,
+ "loss": 8.778556823730469,
+ "step": 32
+ },
+ {
+ "epoch": 0.4613368283093054,
+ "grad_norm": 2.0937352180480957,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 8.661166191101074,
+ "step": 33
+ },
+ {
+ "epoch": 0.4753167321974661,
+ "grad_norm": 2.040790557861328,
+ "learning_rate": 0.000198,
+ "loss": 8.550382614135742,
+ "step": 34
+ },
+ {
+ "epoch": 0.4892966360856269,
+ "grad_norm": 1.93914794921875,
+ "learning_rate": 0.000204,
+ "loss": 8.463907241821289,
+ "step": 35
+ },
+ {
+ "epoch": 0.5032765399737876,
+ "grad_norm": 1.8624178171157837,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 8.3438720703125,
+ "step": 36
+ },
+ {
+ "epoch": 0.5172564438619485,
+ "grad_norm": 1.8107167482376099,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 8.21871566772461,
+ "step": 37
+ },
+ {
+ "epoch": 0.5312363477501092,
+ "grad_norm": 1.717979073524475,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 8.113494873046875,
+ "step": 38
+ },
+ {
+ "epoch": 0.54521625163827,
+ "grad_norm": 1.668742060661316,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 8.006099700927734,
+ "step": 39
+ },
+ {
+ "epoch": 0.5591961555264308,
+ "grad_norm": 1.6147786378860474,
+ "learning_rate": 0.000234,
+ "loss": 7.911509037017822,
+ "step": 40
+ },
+ {
+ "epoch": 0.5731760594145915,
+ "grad_norm": 1.535750150680542,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 7.822839736938477,
+ "step": 41
+ },
+ {
+ "epoch": 0.5871559633027523,
+ "grad_norm": 1.4700065851211548,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 7.713842868804932,
+ "step": 42
+ },
+ {
+ "epoch": 0.601135867190913,
+ "grad_norm": 1.39020574092865,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 7.6040191650390625,
+ "step": 43
+ },
+ {
+ "epoch": 0.6151157710790738,
+ "grad_norm": 1.2875399589538574,
+ "learning_rate": 0.000258,
+ "loss": 7.550642013549805,
+ "step": 44
+ },
+ {
+ "epoch": 0.6290956749672346,
+ "grad_norm": 1.2094247341156006,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 7.460824012756348,
+ "step": 45
+ },
+ {
+ "epoch": 0.6430755788553953,
+ "grad_norm": 1.126452088356018,
+ "learning_rate": 0.00027,
+ "loss": 7.380537986755371,
+ "step": 46
+ },
+ {
+ "epoch": 0.6570554827435562,
+ "grad_norm": 1.0313163995742798,
+ "learning_rate": 0.000276,
+ "loss": 7.286153793334961,
+ "step": 47
+ },
+ {
+ "epoch": 0.6710353866317169,
+ "grad_norm": 0.9172859787940979,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 7.2064714431762695,
+ "step": 48
+ },
+ {
+ "epoch": 0.6850152905198776,
+ "grad_norm": 0.8148201107978821,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 7.158207416534424,
+ "step": 49
+ },
+ {
+ "epoch": 0.6989951944080385,
+ "grad_norm": 0.650123119354248,
+ "learning_rate": 0.000294,
+ "loss": 7.108791828155518,
+ "step": 50
+ },
+ {
+ "epoch": 0.7129750982961992,
+ "grad_norm": 0.5437585711479187,
+ "learning_rate": 0.0003,
+ "loss": 7.083050727844238,
+ "step": 51
+ },
+ {
+ "epoch": 0.7269550021843599,
+ "grad_norm": 0.46762895584106445,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 7.058027267456055,
+ "step": 52
+ },
+ {
+ "epoch": 0.7409349060725208,
+ "grad_norm": 0.47947561740875244,
+ "learning_rate": 0.000312,
+ "loss": 7.015172958374023,
+ "step": 53
+ },
+ {
+ "epoch": 0.7549148099606815,
+ "grad_norm": 0.7546492218971252,
+ "learning_rate": 0.000318,
+ "loss": 7.024629592895508,
+ "step": 54
+ },
+ {
+ "epoch": 0.7688947138488423,
+ "grad_norm": 0.6153718829154968,
+ "learning_rate": 0.000324,
+ "loss": 7.026667594909668,
+ "step": 55
+ },
+ {
+ "epoch": 0.7828746177370031,
+ "grad_norm": 0.3359069228172302,
+ "learning_rate": 0.00033,
+ "loss": 7.008166313171387,
+ "step": 56
+ },
+ {
+ "epoch": 0.7968545216251638,
+ "grad_norm": 0.48906823992729187,
+ "learning_rate": 0.000336,
+ "loss": 7.019716262817383,
+ "step": 57
+ },
+ {
+ "epoch": 0.8108344255133246,
+ "grad_norm": 0.5525421500205994,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 7.02108097076416,
+ "step": 58
+ },
+ {
+ "epoch": 0.8248143294014854,
+ "grad_norm": 0.3103712201118469,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 7.003164768218994,
+ "step": 59
+ },
+ {
+ "epoch": 0.8387942332896461,
+ "grad_norm": 0.4431874752044678,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 7.003463268280029,
+ "step": 60
+ },
+ {
+ "epoch": 0.8527741371778069,
+ "grad_norm": 0.4291120767593384,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 6.96931791305542,
+ "step": 61
+ },
+ {
+ "epoch": 0.8667540410659677,
+ "grad_norm": 0.6566054224967957,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 6.989445686340332,
+ "step": 62
+ },
+ {
+ "epoch": 0.8807339449541285,
+ "grad_norm": 0.20663189888000488,
+ "learning_rate": 0.000372,
+ "loss": 6.9669342041015625,
+ "step": 63
+ },
+ {
+ "epoch": 0.8947138488422892,
+ "grad_norm": 0.6242535710334778,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 6.949883460998535,
+ "step": 64
+ },
+ {
+ "epoch": 0.9086937527304499,
+ "grad_norm": 0.6984224915504456,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 6.955153465270996,
+ "step": 65
+ },
+ {
+ "epoch": 0.9226736566186108,
+ "grad_norm": 0.6328083872795105,
+ "learning_rate": 0.00039,
+ "loss": 6.965421676635742,
+ "step": 66
+ },
+ {
+ "epoch": 0.9366535605067715,
+ "grad_norm": 1.213352918624878,
+ "learning_rate": 0.000396,
+ "loss": 6.9454345703125,
+ "step": 67
+ },
+ {
+ "epoch": 0.9506334643949322,
+ "grad_norm": 0.9221940636634827,
+ "learning_rate": 0.000402,
+ "loss": 6.923908233642578,
+ "step": 68
+ },
+ {
+ "epoch": 0.9646133682830931,
+ "grad_norm": 0.6825450658798218,
+ "learning_rate": 0.000408,
+ "loss": 6.910131454467773,
+ "step": 69
+ },
+ {
+ "epoch": 0.9785932721712538,
+ "grad_norm": 0.5690162181854248,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 6.89891242980957,
+ "step": 70
+ },
+ {
+ "epoch": 0.9925731760594146,
+ "grad_norm": 0.4320870041847229,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 6.896081924438477,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.31632405519485474,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 6.897444725036621,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 7.757839679718018,
+ "eval_runtime": 43.8338,
+ "eval_samples_per_second": 55.71,
+ "eval_steps_per_second": 3.49,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139799038881607,
+ "grad_norm": 0.3789916932582855,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 6.877245903015137,
+ "step": 73
+ },
+ {
+ "epoch": 1.0279598077763215,
+ "grad_norm": 0.9167932868003845,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 6.921600341796875,
+ "step": 74
+ },
+ {
+ "epoch": 1.0419397116644824,
+ "grad_norm": 0.581188440322876,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 6.861001968383789,
+ "step": 75
+ },
+ {
+ "epoch": 1.0559196155526431,
+ "grad_norm": 0.4179714024066925,
+ "learning_rate": 0.00045,
+ "loss": 6.875657081604004,
+ "step": 76
+ },
+ {
+ "epoch": 1.0698995194408039,
+ "grad_norm": 1.0669957399368286,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 6.857122421264648,
+ "step": 77
+ },
+ {
+ "epoch": 1.0838794233289646,
+ "grad_norm": 0.27855145931243896,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 6.828852653503418,
+ "step": 78
+ },
+ {
+ "epoch": 1.0978593272171253,
+ "grad_norm": 0.7192047834396362,
+ "learning_rate": 0.000468,
+ "loss": 6.870839595794678,
+ "step": 79
+ },
+ {
+ "epoch": 1.1118392311052863,
+ "grad_norm": 0.5583325624465942,
+ "learning_rate": 0.000474,
+ "loss": 6.8497514724731445,
+ "step": 80
+ },
+ {
+ "epoch": 1.125819134993447,
+ "grad_norm": 0.3001925051212311,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 6.858528137207031,
+ "step": 81
+ },
+ {
+ "epoch": 1.1397990388816077,
+ "grad_norm": 0.2408239096403122,
+ "learning_rate": 0.000486,
+ "loss": 6.83231258392334,
+ "step": 82
+ },
+ {
+ "epoch": 1.1537789427697684,
+ "grad_norm": 0.28230324387550354,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 6.815476894378662,
+ "step": 83
+ },
+ {
+ "epoch": 1.1677588466579292,
+ "grad_norm": 0.3247123658657074,
+ "learning_rate": 0.000498,
+ "loss": 6.780126094818115,
+ "step": 84
+ },
+ {
+ "epoch": 1.18173875054609,
+ "grad_norm": 0.25713011622428894,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 6.7798309326171875,
+ "step": 85
+ },
+ {
+ "epoch": 1.1957186544342508,
+ "grad_norm": 0.5386835932731628,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 6.791745185852051,
+ "step": 86
+ },
+ {
+ "epoch": 1.2096985583224116,
+ "grad_norm": 0.2226393222808838,
+ "learning_rate": 0.000516,
+ "loss": 6.7826972007751465,
+ "step": 87
+ },
+ {
+ "epoch": 1.2236784622105723,
+ "grad_norm": 0.4338362216949463,
+ "learning_rate": 0.000522,
+ "loss": 6.805043697357178,
+ "step": 88
+ },
+ {
+ "epoch": 1.237658366098733,
+ "grad_norm": 0.2953208386898041,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 6.768434524536133,
+ "step": 89
+ },
+ {
+ "epoch": 1.2516382699868938,
+ "grad_norm": 0.13453717529773712,
+ "learning_rate": 0.000534,
+ "loss": 6.773697376251221,
+ "step": 90
+ },
+ {
+ "epoch": 1.2656181738750547,
+ "grad_norm": 0.35774412751197815,
+ "learning_rate": 0.00054,
+ "loss": 6.766414642333984,
+ "step": 91
+ },
+ {
+ "epoch": 1.2795980777632154,
+ "grad_norm": 0.4669720530509949,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 6.754847526550293,
+ "step": 92
+ },
+ {
+ "epoch": 1.2935779816513762,
+ "grad_norm": 0.13806621730327606,
+ "learning_rate": 0.000552,
+ "loss": 6.746858596801758,
+ "step": 93
+ },
+ {
+ "epoch": 1.307557885539537,
+ "grad_norm": 0.3280332386493683,
+ "learning_rate": 0.000558,
+ "loss": 6.715662956237793,
+ "step": 94
+ },
+ {
+ "epoch": 1.3215377894276976,
+ "grad_norm": 0.4689937233924866,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 6.734938144683838,
+ "step": 95
+ },
+ {
+ "epoch": 1.3355176933158583,
+ "grad_norm": 0.35371264815330505,
+ "learning_rate": 0.00057,
+ "loss": 6.748386383056641,
+ "step": 96
+ },
+ {
+ "epoch": 1.3494975972040193,
+ "grad_norm": 0.15232303738594055,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 6.705557823181152,
+ "step": 97
+ },
+ {
+ "epoch": 1.36347750109218,
+ "grad_norm": 0.30132821202278137,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 6.7199859619140625,
+ "step": 98
+ },
+ {
+ "epoch": 1.3774574049803407,
+ "grad_norm": 0.42174842953681946,
+ "learning_rate": 0.000588,
+ "loss": 6.715370178222656,
+ "step": 99
+ },
+ {
+ "epoch": 1.3914373088685015,
+ "grad_norm": 0.6257228851318359,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 6.707026958465576,
+ "step": 100
+ },
+ {
+ "epoch": 1.4054172127566624,
+ "grad_norm": 0.4551195800304413,
+ "learning_rate": 0.0006,
+ "loss": 6.7078423500061035,
+ "step": 101
+ },
+ {
+ "epoch": 1.4193971166448232,
+ "grad_norm": 0.41940346360206604,
+ "learning_rate": 0.0006,
+ "loss": 6.6959357261657715,
+ "step": 102
+ },
+ {
+ "epoch": 1.4333770205329839,
+ "grad_norm": 0.32251718640327454,
+ "learning_rate": 0.0006,
+ "loss": 6.689168930053711,
+ "step": 103
+ },
+ {
+ "epoch": 1.4473569244211446,
+ "grad_norm": 0.2992720305919647,
+ "learning_rate": 0.0006,
+ "loss": 6.680738925933838,
+ "step": 104
+ },
+ {
+ "epoch": 1.4613368283093053,
+ "grad_norm": 0.3228456974029541,
+ "learning_rate": 0.0006,
+ "loss": 6.672350883483887,
+ "step": 105
+ },
+ {
+ "epoch": 1.475316732197466,
+ "grad_norm": 0.24954743683338165,
+ "learning_rate": 0.0006,
+ "loss": 6.653716087341309,
+ "step": 106
+ },
+ {
+ "epoch": 1.4892966360856268,
+ "grad_norm": 0.30740687251091003,
+ "learning_rate": 0.0006,
+ "loss": 6.676583290100098,
+ "step": 107
+ },
+ {
+ "epoch": 1.5032765399737875,
+ "grad_norm": 0.24950599670410156,
+ "learning_rate": 0.0006,
+ "loss": 6.656691551208496,
+ "step": 108
+ },
+ {
+ "epoch": 1.5172564438619485,
+ "grad_norm": 0.24293005466461182,
+ "learning_rate": 0.0006,
+ "loss": 6.640995979309082,
+ "step": 109
+ },
+ {
+ "epoch": 1.5312363477501092,
+ "grad_norm": 0.30167272686958313,
+ "learning_rate": 0.0006,
+ "loss": 6.647380352020264,
+ "step": 110
+ },
+ {
+ "epoch": 1.5452162516382701,
+ "grad_norm": 0.4424632787704468,
+ "learning_rate": 0.0006,
+ "loss": 6.6548261642456055,
+ "step": 111
+ },
+ {
+ "epoch": 1.5591961555264309,
+ "grad_norm": 0.5295748114585876,
+ "learning_rate": 0.0006,
+ "loss": 6.64370059967041,
+ "step": 112
+ },
+ {
+ "epoch": 1.5731760594145916,
+ "grad_norm": 0.6829339265823364,
+ "learning_rate": 0.0006,
+ "loss": 6.654196739196777,
+ "step": 113
+ },
+ {
+ "epoch": 1.5871559633027523,
+ "grad_norm": 0.6534460186958313,
+ "learning_rate": 0.0006,
+ "loss": 6.675765037536621,
+ "step": 114
+ },
+ {
+ "epoch": 1.601135867190913,
+ "grad_norm": 0.6172244548797607,
+ "learning_rate": 0.0006,
+ "loss": 6.631234169006348,
+ "step": 115
+ },
+ {
+ "epoch": 1.6151157710790738,
+ "grad_norm": 0.5650008320808411,
+ "learning_rate": 0.0006,
+ "loss": 6.654262542724609,
+ "step": 116
+ },
+ {
+ "epoch": 1.6290956749672345,
+ "grad_norm": 0.3890475928783417,
+ "learning_rate": 0.0006,
+ "loss": 6.627526760101318,
+ "step": 117
+ },
+ {
+ "epoch": 1.6430755788553952,
+ "grad_norm": 0.6409873366355896,
+ "learning_rate": 0.0006,
+ "loss": 6.619794845581055,
+ "step": 118
+ },
+ {
+ "epoch": 1.6570554827435562,
+ "grad_norm": 0.5052326321601868,
+ "learning_rate": 0.0006,
+ "loss": 6.612556457519531,
+ "step": 119
+ },
+ {
+ "epoch": 1.671035386631717,
+ "grad_norm": 0.5001237988471985,
+ "learning_rate": 0.0006,
+ "loss": 6.577266693115234,
+ "step": 120
+ },
+ {
+ "epoch": 1.6850152905198776,
+ "grad_norm": 0.5328938364982605,
+ "learning_rate": 0.0006,
+ "loss": 6.59553337097168,
+ "step": 121
+ },
+ {
+ "epoch": 1.6989951944080386,
+ "grad_norm": 0.3568951189517975,
+ "learning_rate": 0.0006,
+ "loss": 6.602717399597168,
+ "step": 122
+ },
+ {
+ "epoch": 1.7129750982961993,
+ "grad_norm": 0.4017309546470642,
+ "learning_rate": 0.0006,
+ "loss": 6.589657783508301,
+ "step": 123
+ },
+ {
+ "epoch": 1.72695500218436,
+ "grad_norm": 0.21432629227638245,
+ "learning_rate": 0.0006,
+ "loss": 6.586555480957031,
+ "step": 124
+ },
+ {
+ "epoch": 1.7409349060725208,
+ "grad_norm": 0.21038052439689636,
+ "learning_rate": 0.0006,
+ "loss": 6.576569557189941,
+ "step": 125
+ },
+ {
+ "epoch": 1.7549148099606815,
+ "grad_norm": 0.23074904084205627,
+ "learning_rate": 0.0006,
+ "loss": 6.5880632400512695,
+ "step": 126
+ },
+ {
+ "epoch": 1.7688947138488422,
+ "grad_norm": 0.42963048815727234,
+ "learning_rate": 0.0006,
+ "loss": 6.603862762451172,
+ "step": 127
+ },
+ {
+ "epoch": 1.782874617737003,
+ "grad_norm": 0.361331045627594,
+ "learning_rate": 0.0006,
+ "loss": 6.579834938049316,
+ "step": 128
+ },
+ {
+ "epoch": 1.7968545216251637,
+ "grad_norm": 0.4951060712337494,
+ "learning_rate": 0.0006,
+ "loss": 6.570443630218506,
+ "step": 129
+ },
+ {
+ "epoch": 1.8108344255133246,
+ "grad_norm": 0.2258434295654297,
+ "learning_rate": 0.0006,
+ "loss": 6.5664777755737305,
+ "step": 130
+ },
+ {
+ "epoch": 1.8248143294014854,
+ "grad_norm": 0.2922155559062958,
+ "learning_rate": 0.0006,
+ "loss": 6.561326503753662,
+ "step": 131
+ },
+ {
+ "epoch": 1.838794233289646,
+ "grad_norm": 0.19068220257759094,
+ "learning_rate": 0.0006,
+ "loss": 6.528727054595947,
+ "step": 132
+ },
+ {
+ "epoch": 1.852774137177807,
+ "grad_norm": 0.2122010439634323,
+ "learning_rate": 0.0006,
+ "loss": 6.535636901855469,
+ "step": 133
+ },
+ {
+ "epoch": 1.8667540410659678,
+ "grad_norm": 0.25760164856910706,
+ "learning_rate": 0.0006,
+ "loss": 6.530498504638672,
+ "step": 134
+ },
+ {
+ "epoch": 1.8807339449541285,
+ "grad_norm": 0.1761016845703125,
+ "learning_rate": 0.0006,
+ "loss": 6.514466285705566,
+ "step": 135
+ },
+ {
+ "epoch": 1.8947138488422892,
+ "grad_norm": 0.2250051498413086,
+ "learning_rate": 0.0006,
+ "loss": 6.521268844604492,
+ "step": 136
+ },
+ {
+ "epoch": 1.90869375273045,
+ "grad_norm": 0.34458497166633606,
+ "learning_rate": 0.0006,
+ "loss": 6.512831687927246,
+ "step": 137
+ },
+ {
+ "epoch": 1.9226736566186107,
+ "grad_norm": 0.3468617796897888,
+ "learning_rate": 0.0006,
+ "loss": 6.515641689300537,
+ "step": 138
+ },
+ {
+ "epoch": 1.9366535605067714,
+ "grad_norm": 0.5051495432853699,
+ "learning_rate": 0.0006,
+ "loss": 6.5147905349731445,
+ "step": 139
+ },
+ {
+ "epoch": 1.9506334643949321,
+ "grad_norm": 0.7106727361679077,
+ "learning_rate": 0.0006,
+ "loss": 6.519277572631836,
+ "step": 140
+ },
+ {
+ "epoch": 1.964613368283093,
+ "grad_norm": 0.8881394267082214,
+ "learning_rate": 0.0006,
+ "loss": 6.526865482330322,
+ "step": 141
+ },
+ {
+ "epoch": 1.9785932721712538,
+ "grad_norm": 0.5552834272384644,
+ "learning_rate": 0.0006,
+ "loss": 6.469970226287842,
+ "step": 142
+ },
+ {
+ "epoch": 1.9925731760594148,
+ "grad_norm": 0.6903126835823059,
+ "learning_rate": 0.0006,
+ "loss": 6.476300239562988,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.47679027915000916,
+ "learning_rate": 0.0006,
+ "loss": 6.463827133178711,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 7.388528823852539,
+ "eval_runtime": 44.2519,
+ "eval_samples_per_second": 55.184,
+ "eval_steps_per_second": 3.457,
+ "step": 144
+ },
+ {
+ "epoch": 2.0139799038881607,
+ "grad_norm": 0.4719221293926239,
+ "learning_rate": 0.0006,
+ "loss": 6.480956077575684,
+ "step": 145
+ },
+ {
+ "epoch": 2.0279598077763215,
+ "grad_norm": 0.41137924790382385,
+ "learning_rate": 0.0006,
+ "loss": 6.449707984924316,
+ "step": 146
+ },
+ {
+ "epoch": 2.041939711664482,
+ "grad_norm": 0.4237765371799469,
+ "learning_rate": 0.0006,
+ "loss": 6.467435836791992,
+ "step": 147
+ },
+ {
+ "epoch": 2.055919615552643,
+ "grad_norm": 0.44081810116767883,
+ "learning_rate": 0.0006,
+ "loss": 6.436868667602539,
+ "step": 148
+ },
+ {
+ "epoch": 2.0698995194408036,
+ "grad_norm": 0.4163798391819,
+ "learning_rate": 0.0006,
+ "loss": 6.4642014503479,
+ "step": 149
+ },
+ {
+ "epoch": 2.083879423328965,
+ "grad_norm": 0.3831583261489868,
+ "learning_rate": 0.0006,
+ "loss": 6.454092025756836,
+ "step": 150
+ },
+ {
+ "epoch": 2.0978593272171255,
+ "grad_norm": 0.37721413373947144,
+ "learning_rate": 0.0006,
+ "loss": 6.426377296447754,
+ "step": 151
+ },
+ {
+ "epoch": 2.1118392311052863,
+ "grad_norm": 0.3323550224304199,
+ "learning_rate": 0.0006,
+ "loss": 6.421375274658203,
+ "step": 152
+ },
+ {
+ "epoch": 2.125819134993447,
+ "grad_norm": 0.47739624977111816,
+ "learning_rate": 0.0006,
+ "loss": 6.412004470825195,
+ "step": 153
+ },
+ {
+ "epoch": 2.1397990388816077,
+ "grad_norm": 0.8530274629592896,
+ "learning_rate": 0.0006,
+ "loss": 6.410468578338623,
+ "step": 154
+ },
+ {
+ "epoch": 2.1537789427697684,
+ "grad_norm": 0.6420364379882812,
+ "learning_rate": 0.0006,
+ "loss": 6.413525581359863,
+ "step": 155
+ },
+ {
+ "epoch": 2.167758846657929,
+ "grad_norm": 0.5005049109458923,
+ "learning_rate": 0.0006,
+ "loss": 6.401463508605957,
+ "step": 156
+ },
+ {
+ "epoch": 2.18173875054609,
+ "grad_norm": 0.3614683449268341,
+ "learning_rate": 0.0006,
+ "loss": 6.390063285827637,
+ "step": 157
+ },
+ {
+ "epoch": 2.1957186544342506,
+ "grad_norm": 0.595215380191803,
+ "learning_rate": 0.0006,
+ "loss": 6.369806289672852,
+ "step": 158
+ },
+ {
+ "epoch": 2.2096985583224114,
+ "grad_norm": 0.5700321793556213,
+ "learning_rate": 0.0006,
+ "loss": 6.368378639221191,
+ "step": 159
+ },
+ {
+ "epoch": 2.2236784622105725,
+ "grad_norm": 0.36273983120918274,
+ "learning_rate": 0.0006,
+ "loss": 6.366860389709473,
+ "step": 160
+ },
+ {
+ "epoch": 2.2376583660987333,
+ "grad_norm": 0.2850998342037201,
+ "learning_rate": 0.0006,
+ "loss": 6.352144718170166,
+ "step": 161
+ },
+ {
+ "epoch": 2.251638269986894,
+ "grad_norm": 0.38558584451675415,
+ "learning_rate": 0.0006,
+ "loss": 6.375765800476074,
+ "step": 162
+ },
+ {
+ "epoch": 2.2656181738750547,
+ "grad_norm": 0.34809231758117676,
+ "learning_rate": 0.0006,
+ "loss": 6.350445747375488,
+ "step": 163
+ },
+ {
+ "epoch": 2.2795980777632154,
+ "grad_norm": 0.5211818814277649,
+ "learning_rate": 0.0006,
+ "loss": 6.354585647583008,
+ "step": 164
+ },
+ {
+ "epoch": 2.293577981651376,
+ "grad_norm": 1.0809133052825928,
+ "learning_rate": 0.0006,
+ "loss": 6.3752007484436035,
+ "step": 165
+ },
+ {
+ "epoch": 2.307557885539537,
+ "grad_norm": 0.8293641209602356,
+ "learning_rate": 0.0006,
+ "loss": 6.35113525390625,
+ "step": 166
+ },
+ {
+ "epoch": 2.3215377894276976,
+ "grad_norm": 0.3428577780723572,
+ "learning_rate": 0.0006,
+ "loss": 6.334470748901367,
+ "step": 167
+ },
+ {
+ "epoch": 2.3355176933158583,
+ "grad_norm": 0.7587600946426392,
+ "learning_rate": 0.0006,
+ "loss": 6.353979587554932,
+ "step": 168
+ },
+ {
+ "epoch": 2.349497597204019,
+ "grad_norm": 0.4227249026298523,
+ "learning_rate": 0.0006,
+ "loss": 6.34018611907959,
+ "step": 169
+ },
+ {
+ "epoch": 2.36347750109218,
+ "grad_norm": 0.4226846694946289,
+ "learning_rate": 0.0006,
+ "loss": 6.290019989013672,
+ "step": 170
+ },
+ {
+ "epoch": 2.3774574049803405,
+ "grad_norm": 0.38412365317344666,
+ "learning_rate": 0.0006,
+ "loss": 6.309510231018066,
+ "step": 171
+ },
+ {
+ "epoch": 2.3914373088685017,
+ "grad_norm": 0.45698508620262146,
+ "learning_rate": 0.0006,
+ "loss": 6.283290863037109,
+ "step": 172
+ },
+ {
+ "epoch": 2.4054172127566624,
+ "grad_norm": 0.7575915455818176,
+ "learning_rate": 0.0006,
+ "loss": 6.306073188781738,
+ "step": 173
+ },
+ {
+ "epoch": 2.419397116644823,
+ "grad_norm": 0.695123553276062,
+ "learning_rate": 0.0006,
+ "loss": 6.308144569396973,
+ "step": 174
+ },
+ {
+ "epoch": 2.433377020532984,
+ "grad_norm": 0.5035743117332458,
+ "learning_rate": 0.0006,
+ "loss": 6.282073974609375,
+ "step": 175
+ },
+ {
+ "epoch": 2.4473569244211446,
+ "grad_norm": 0.3158020079135895,
+ "learning_rate": 0.0006,
+ "loss": 6.282169342041016,
+ "step": 176
+ },
+ {
+ "epoch": 2.4613368283093053,
+ "grad_norm": 0.4829689860343933,
+ "learning_rate": 0.0006,
+ "loss": 6.264578819274902,
+ "step": 177
+ },
+ {
+ "epoch": 2.475316732197466,
+ "grad_norm": 0.3992770314216614,
+ "learning_rate": 0.0006,
+ "loss": 6.228628158569336,
+ "step": 178
+ },
+ {
+ "epoch": 2.489296636085627,
+ "grad_norm": 0.40887606143951416,
+ "learning_rate": 0.0006,
+ "loss": 6.230792045593262,
+ "step": 179
+ },
+ {
+ "epoch": 2.5032765399737875,
+ "grad_norm": 0.3540310263633728,
+ "learning_rate": 0.0006,
+ "loss": 6.222573280334473,
+ "step": 180
+ },
+ {
+ "epoch": 2.5172564438619487,
+ "grad_norm": 0.496219664812088,
+ "learning_rate": 0.0006,
+ "loss": 6.212109565734863,
+ "step": 181
+ },
+ {
+ "epoch": 2.5312363477501094,
+ "grad_norm": 0.435173898935318,
+ "learning_rate": 0.0006,
+ "loss": 6.221210479736328,
+ "step": 182
+ },
+ {
+ "epoch": 2.54521625163827,
+ "grad_norm": 0.5364007949829102,
+ "learning_rate": 0.0006,
+ "loss": 6.217929840087891,
+ "step": 183
+ },
+ {
+ "epoch": 2.559196155526431,
+ "grad_norm": 0.5946390628814697,
+ "learning_rate": 0.0006,
+ "loss": 6.189267158508301,
+ "step": 184
+ },
+ {
+ "epoch": 2.5731760594145916,
+ "grad_norm": 0.41621312499046326,
+ "learning_rate": 0.0006,
+ "loss": 6.182415008544922,
+ "step": 185
+ },
+ {
+ "epoch": 2.5871559633027523,
+ "grad_norm": 0.5442072749137878,
+ "learning_rate": 0.0006,
+ "loss": 6.150757789611816,
+ "step": 186
+ },
+ {
+ "epoch": 2.601135867190913,
+ "grad_norm": 0.727843165397644,
+ "learning_rate": 0.0006,
+ "loss": 6.146082878112793,
+ "step": 187
+ },
+ {
+ "epoch": 2.615115771079074,
+ "grad_norm": 0.8898891806602478,
+ "learning_rate": 0.0006,
+ "loss": 6.190483093261719,
+ "step": 188
+ },
+ {
+ "epoch": 2.6290956749672345,
+ "grad_norm": 0.5173947215080261,
+ "learning_rate": 0.0006,
+ "loss": 6.151251792907715,
+ "step": 189
+ },
+ {
+ "epoch": 2.6430755788553952,
+ "grad_norm": 0.6476729512214661,
+ "learning_rate": 0.0006,
+ "loss": 6.154841423034668,
+ "step": 190
+ },
+ {
+ "epoch": 2.657055482743556,
+ "grad_norm": 0.3538810908794403,
+ "learning_rate": 0.0006,
+ "loss": 6.103879928588867,
+ "step": 191
+ },
+ {
+ "epoch": 2.6710353866317167,
+ "grad_norm": 0.4773508310317993,
+ "learning_rate": 0.0006,
+ "loss": 6.118101119995117,
+ "step": 192
+ },
+ {
+ "epoch": 2.6850152905198774,
+ "grad_norm": 0.29213786125183105,
+ "learning_rate": 0.0006,
+ "loss": 6.108916282653809,
+ "step": 193
+ },
+ {
+ "epoch": 2.6989951944080386,
+ "grad_norm": 0.40800607204437256,
+ "learning_rate": 0.0006,
+ "loss": 6.113438606262207,
+ "step": 194
+ },
+ {
+ "epoch": 2.7129750982961993,
+ "grad_norm": 0.31157299876213074,
+ "learning_rate": 0.0006,
+ "loss": 6.101809501647949,
+ "step": 195
+ },
+ {
+ "epoch": 2.72695500218436,
+ "grad_norm": 0.28660309314727783,
+ "learning_rate": 0.0006,
+ "loss": 6.075886249542236,
+ "step": 196
+ },
+ {
+ "epoch": 2.7409349060725208,
+ "grad_norm": 0.3810449540615082,
+ "learning_rate": 0.0006,
+ "loss": 6.053257942199707,
+ "step": 197
+ },
+ {
+ "epoch": 2.7549148099606815,
+ "grad_norm": 0.21741755306720734,
+ "learning_rate": 0.0006,
+ "loss": 6.013825416564941,
+ "step": 198
+ },
+ {
+ "epoch": 2.7688947138488422,
+ "grad_norm": 0.2777678966522217,
+ "learning_rate": 0.0006,
+ "loss": 6.054204940795898,
+ "step": 199
+ },
+ {
+ "epoch": 2.782874617737003,
+ "grad_norm": 0.28503066301345825,
+ "learning_rate": 0.0006,
+ "loss": 6.035628318786621,
+ "step": 200
+ },
+ {
+ "epoch": 2.7968545216251637,
+ "grad_norm": 0.41954755783081055,
+ "learning_rate": 0.0006,
+ "loss": 6.028354644775391,
+ "step": 201
+ },
+ {
+ "epoch": 2.810834425513325,
+ "grad_norm": 0.8785563111305237,
+ "learning_rate": 0.0006,
+ "loss": 6.055761337280273,
+ "step": 202
+ },
+ {
+ "epoch": 2.8248143294014856,
+ "grad_norm": 1.7459558248519897,
+ "learning_rate": 0.0006,
+ "loss": 6.11599588394165,
+ "step": 203
+ },
+ {
+ "epoch": 2.8387942332896463,
+ "grad_norm": 0.5725523233413696,
+ "learning_rate": 0.0006,
+ "loss": 6.024280548095703,
+ "step": 204
+ },
+ {
+ "epoch": 2.852774137177807,
+ "grad_norm": 0.5913150906562805,
+ "learning_rate": 0.0006,
+ "loss": 6.050281524658203,
+ "step": 205
+ },
+ {
+ "epoch": 2.8667540410659678,
+ "grad_norm": 0.5929384827613831,
+ "learning_rate": 0.0006,
+ "loss": 6.041121482849121,
+ "step": 206
+ },
+ {
+ "epoch": 2.8807339449541285,
+ "grad_norm": 0.5650724768638611,
+ "learning_rate": 0.0006,
+ "loss": 6.004258155822754,
+ "step": 207
+ },
+ {
+ "epoch": 2.894713848842289,
+ "grad_norm": 0.3420545756816864,
+ "learning_rate": 0.0006,
+ "loss": 5.983296871185303,
+ "step": 208
+ },
+ {
+ "epoch": 2.90869375273045,
+ "grad_norm": 0.2960914075374603,
+ "learning_rate": 0.0006,
+ "loss": 5.988578796386719,
+ "step": 209
+ },
+ {
+ "epoch": 2.9226736566186107,
+ "grad_norm": 0.3252662718296051,
+ "learning_rate": 0.0006,
+ "loss": 5.99103307723999,
+ "step": 210
+ },
+ {
+ "epoch": 2.9366535605067714,
+ "grad_norm": 0.4851132929325104,
+ "learning_rate": 0.0006,
+ "loss": 6.0028977394104,
+ "step": 211
+ },
+ {
+ "epoch": 2.950633464394932,
+ "grad_norm": 0.5639995336532593,
+ "learning_rate": 0.0006,
+ "loss": 5.965080738067627,
+ "step": 212
+ },
+ {
+ "epoch": 2.964613368283093,
+ "grad_norm": 0.4514601230621338,
+ "learning_rate": 0.0006,
+ "loss": 5.961450576782227,
+ "step": 213
+ },
+ {
+ "epoch": 2.9785932721712536,
+ "grad_norm": 0.5397921800613403,
+ "learning_rate": 0.0006,
+ "loss": 5.965290546417236,
+ "step": 214
+ },
+ {
+ "epoch": 2.9925731760594148,
+ "grad_norm": 0.4735587239265442,
+ "learning_rate": 0.0006,
+ "loss": 5.952754497528076,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.32061058282852173,
+ "learning_rate": 0.0006,
+ "loss": 5.961667060852051,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 6.8517303466796875,
+ "eval_runtime": 44.03,
+ "eval_samples_per_second": 55.462,
+ "eval_steps_per_second": 3.475,
+ "step": 216
+ },
+ {
+ "epoch": 3.0139799038881607,
+ "grad_norm": 0.3537784814834595,
+ "learning_rate": 0.0006,
+ "loss": 5.928008079528809,
+ "step": 217
+ },
+ {
+ "epoch": 3.0279598077763215,
+ "grad_norm": 0.40713080763816833,
+ "learning_rate": 0.0006,
+ "loss": 5.9150800704956055,
+ "step": 218
+ },
+ {
+ "epoch": 3.041939711664482,
+ "grad_norm": 0.2548826336860657,
+ "learning_rate": 0.0006,
+ "loss": 5.919757843017578,
+ "step": 219
+ },
+ {
+ "epoch": 3.055919615552643,
+ "grad_norm": 0.2818543016910553,
+ "learning_rate": 0.0006,
+ "loss": 5.913688659667969,
+ "step": 220
+ },
+ {
+ "epoch": 3.0698995194408036,
+ "grad_norm": 0.4196692705154419,
+ "learning_rate": 0.0006,
+ "loss": 5.8675336837768555,
+ "step": 221
+ },
+ {
+ "epoch": 3.083879423328965,
+ "grad_norm": 0.35272282361984253,
+ "learning_rate": 0.0006,
+ "loss": 5.878874778747559,
+ "step": 222
+ },
+ {
+ "epoch": 3.0978593272171255,
+ "grad_norm": 0.3254282772541046,
+ "learning_rate": 0.0006,
+ "loss": 5.8823041915893555,
+ "step": 223
+ },
+ {
+ "epoch": 3.1118392311052863,
+ "grad_norm": 0.4052561819553375,
+ "learning_rate": 0.0006,
+ "loss": 5.867744445800781,
+ "step": 224
+ },
+ {
+ "epoch": 3.125819134993447,
+ "grad_norm": 0.31246256828308105,
+ "learning_rate": 0.0006,
+ "loss": 5.886094093322754,
+ "step": 225
+ },
+ {
+ "epoch": 3.1397990388816077,
+ "grad_norm": 0.3479118347167969,
+ "learning_rate": 0.0006,
+ "loss": 5.850762367248535,
+ "step": 226
+ },
+ {
+ "epoch": 3.1537789427697684,
+ "grad_norm": 0.5037238597869873,
+ "learning_rate": 0.0006,
+ "loss": 5.844175815582275,
+ "step": 227
+ },
+ {
+ "epoch": 3.167758846657929,
+ "grad_norm": 0.6271815896034241,
+ "learning_rate": 0.0006,
+ "loss": 5.871790885925293,
+ "step": 228
+ },
+ {
+ "epoch": 3.18173875054609,
+ "grad_norm": 0.43838298320770264,
+ "learning_rate": 0.0006,
+ "loss": 5.844024658203125,
+ "step": 229
+ },
+ {
+ "epoch": 3.1957186544342506,
+ "grad_norm": 0.4755159616470337,
+ "learning_rate": 0.0006,
+ "loss": 5.846892356872559,
+ "step": 230
+ },
+ {
+ "epoch": 3.2096985583224114,
+ "grad_norm": 0.5229779481887817,
+ "learning_rate": 0.0006,
+ "loss": 5.827000617980957,
+ "step": 231
+ },
+ {
+ "epoch": 3.2236784622105725,
+ "grad_norm": 0.8264499306678772,
+ "learning_rate": 0.0006,
+ "loss": 5.867050647735596,
+ "step": 232
+ },
+ {
+ "epoch": 3.2376583660987333,
+ "grad_norm": 1.0607538223266602,
+ "learning_rate": 0.0006,
+ "loss": 5.877876281738281,
+ "step": 233
+ },
+ {
+ "epoch": 3.251638269986894,
+ "grad_norm": 0.7656505703926086,
+ "learning_rate": 0.0006,
+ "loss": 5.86760139465332,
+ "step": 234
+ },
+ {
+ "epoch": 3.2656181738750547,
+ "grad_norm": 0.7940183281898499,
+ "learning_rate": 0.0006,
+ "loss": 5.861355781555176,
+ "step": 235
+ },
+ {
+ "epoch": 3.2795980777632154,
+ "grad_norm": 0.45171424746513367,
+ "learning_rate": 0.0006,
+ "loss": 5.799808502197266,
+ "step": 236
+ },
+ {
+ "epoch": 3.293577981651376,
+ "grad_norm": 0.6174989342689514,
+ "learning_rate": 0.0006,
+ "loss": 5.8585920333862305,
+ "step": 237
+ },
+ {
+ "epoch": 3.307557885539537,
+ "grad_norm": 0.5341290831565857,
+ "learning_rate": 0.0006,
+ "loss": 5.8116044998168945,
+ "step": 238
+ },
+ {
+ "epoch": 3.3215377894276976,
+ "grad_norm": 0.3938343822956085,
+ "learning_rate": 0.0006,
+ "loss": 5.83797550201416,
+ "step": 239
+ },
+ {
+ "epoch": 3.3355176933158583,
+ "grad_norm": 0.5106972455978394,
+ "learning_rate": 0.0006,
+ "loss": 5.832303047180176,
+ "step": 240
+ },
+ {
+ "epoch": 3.349497597204019,
+ "grad_norm": 0.3791428506374359,
+ "learning_rate": 0.0006,
+ "loss": 5.794981956481934,
+ "step": 241
+ },
+ {
+ "epoch": 3.36347750109218,
+ "grad_norm": 0.42287978529930115,
+ "learning_rate": 0.0006,
+ "loss": 5.788144111633301,
+ "step": 242
+ },
+ {
+ "epoch": 3.3774574049803405,
+ "grad_norm": 0.27334436774253845,
+ "learning_rate": 0.0006,
+ "loss": 5.771070957183838,
+ "step": 243
+ },
+ {
+ "epoch": 3.3914373088685017,
+ "grad_norm": 0.2470470368862152,
+ "learning_rate": 0.0006,
+ "loss": 5.755998611450195,
+ "step": 244
+ },
+ {
+ "epoch": 3.4054172127566624,
+ "grad_norm": 0.3043915033340454,
+ "learning_rate": 0.0006,
+ "loss": 5.779492378234863,
+ "step": 245
+ },
+ {
+ "epoch": 3.419397116644823,
+ "grad_norm": 0.2960112988948822,
+ "learning_rate": 0.0006,
+ "loss": 5.750328063964844,
+ "step": 246
+ },
+ {
+ "epoch": 3.433377020532984,
+ "grad_norm": 0.3046723008155823,
+ "learning_rate": 0.0006,
+ "loss": 5.776517868041992,
+ "step": 247
+ },
+ {
+ "epoch": 3.4473569244211446,
+ "grad_norm": 0.22461780905723572,
+ "learning_rate": 0.0006,
+ "loss": 5.760989665985107,
+ "step": 248
+ },
+ {
+ "epoch": 3.4613368283093053,
+ "grad_norm": 0.24625757336616516,
+ "learning_rate": 0.0006,
+ "loss": 5.759706497192383,
+ "step": 249
+ },
+ {
+ "epoch": 3.475316732197466,
+ "grad_norm": 0.18207131326198578,
+ "learning_rate": 0.0006,
+ "loss": 5.747040748596191,
+ "step": 250
+ },
+ {
+ "epoch": 3.489296636085627,
+ "grad_norm": 0.16473834216594696,
+ "learning_rate": 0.0006,
+ "loss": 5.761577606201172,
+ "step": 251
+ },
+ {
+ "epoch": 3.5032765399737875,
+ "grad_norm": 0.25155773758888245,
+ "learning_rate": 0.0006,
+ "loss": 5.696502208709717,
+ "step": 252
+ },
+ {
+ "epoch": 3.5172564438619487,
+ "grad_norm": 0.24115674197673798,
+ "learning_rate": 0.0006,
+ "loss": 5.676957130432129,
+ "step": 253
+ },
+ {
+ "epoch": 3.5312363477501094,
+ "grad_norm": 0.40912172198295593,
+ "learning_rate": 0.0006,
+ "loss": 5.695090293884277,
+ "step": 254
+ },
+ {
+ "epoch": 3.54521625163827,
+ "grad_norm": 0.6727662682533264,
+ "learning_rate": 0.0006,
+ "loss": 5.722194671630859,
+ "step": 255
+ },
+ {
+ "epoch": 3.559196155526431,
+ "grad_norm": 0.8450719118118286,
+ "learning_rate": 0.0006,
+ "loss": 5.764680862426758,
+ "step": 256
+ },
+ {
+ "epoch": 3.5731760594145916,
+ "grad_norm": 0.9916183352470398,
+ "learning_rate": 0.0006,
+ "loss": 5.754530429840088,
+ "step": 257
+ },
+ {
+ "epoch": 3.5871559633027523,
+ "grad_norm": 1.041922688484192,
+ "learning_rate": 0.0006,
+ "loss": 5.781468391418457,
+ "step": 258
+ },
+ {
+ "epoch": 3.601135867190913,
+ "grad_norm": 0.972039520740509,
+ "learning_rate": 0.0006,
+ "loss": 5.760323524475098,
+ "step": 259
+ },
+ {
+ "epoch": 3.615115771079074,
+ "grad_norm": 0.6802462935447693,
+ "learning_rate": 0.0006,
+ "loss": 5.750064849853516,
+ "step": 260
+ },
+ {
+ "epoch": 3.6290956749672345,
+ "grad_norm": 0.48553529381752014,
+ "learning_rate": 0.0006,
+ "loss": 5.7464094161987305,
+ "step": 261
+ },
+ {
+ "epoch": 3.6430755788553952,
+ "grad_norm": 0.4066704213619232,
+ "learning_rate": 0.0006,
+ "loss": 5.719789505004883,
+ "step": 262
+ },
+ {
+ "epoch": 3.657055482743556,
+ "grad_norm": 0.3300860822200775,
+ "learning_rate": 0.0006,
+ "loss": 5.719920635223389,
+ "step": 263
+ },
+ {
+ "epoch": 3.6710353866317167,
+ "grad_norm": 0.3286679983139038,
+ "learning_rate": 0.0006,
+ "loss": 5.723465919494629,
+ "step": 264
+ },
+ {
+ "epoch": 3.6850152905198774,
+ "grad_norm": 0.27653390169143677,
+ "learning_rate": 0.0006,
+ "loss": 5.713820457458496,
+ "step": 265
+ },
+ {
+ "epoch": 3.6989951944080386,
+ "grad_norm": 0.26138055324554443,
+ "learning_rate": 0.0006,
+ "loss": 5.683221817016602,
+ "step": 266
+ },
+ {
+ "epoch": 3.7129750982961993,
+ "grad_norm": 0.23706290125846863,
+ "learning_rate": 0.0006,
+ "loss": 5.6896867752075195,
+ "step": 267
+ },
+ {
+ "epoch": 3.72695500218436,
+ "grad_norm": 0.2751729190349579,
+ "learning_rate": 0.0006,
+ "loss": 5.710301876068115,
+ "step": 268
+ },
+ {
+ "epoch": 3.7409349060725208,
+ "grad_norm": 0.255393385887146,
+ "learning_rate": 0.0006,
+ "loss": 5.687932968139648,
+ "step": 269
+ },
+ {
+ "epoch": 3.7549148099606815,
+ "grad_norm": 0.21453925967216492,
+ "learning_rate": 0.0006,
+ "loss": 5.68234395980835,
+ "step": 270
+ },
+ {
+ "epoch": 3.7688947138488422,
+ "grad_norm": 0.21771012246608734,
+ "learning_rate": 0.0006,
+ "loss": 5.683980464935303,
+ "step": 271
+ },
+ {
+ "epoch": 3.782874617737003,
+ "grad_norm": 0.1884593963623047,
+ "learning_rate": 0.0006,
+ "loss": 5.662779808044434,
+ "step": 272
+ },
+ {
+ "epoch": 3.7968545216251637,
+ "grad_norm": 0.20429612696170807,
+ "learning_rate": 0.0006,
+ "loss": 5.650941848754883,
+ "step": 273
+ },
+ {
+ "epoch": 3.810834425513325,
+ "grad_norm": 0.22586797177791595,
+ "learning_rate": 0.0006,
+ "loss": 5.639376640319824,
+ "step": 274
+ },
+ {
+ "epoch": 3.8248143294014856,
+ "grad_norm": 0.19651705026626587,
+ "learning_rate": 0.0006,
+ "loss": 5.612030029296875,
+ "step": 275
+ },
+ {
+ "epoch": 3.8387942332896463,
+ "grad_norm": 0.2125253826379776,
+ "learning_rate": 0.0006,
+ "loss": 5.622836589813232,
+ "step": 276
+ },
+ {
+ "epoch": 3.852774137177807,
+ "grad_norm": 0.2905234694480896,
+ "learning_rate": 0.0006,
+ "loss": 5.624594688415527,
+ "step": 277
+ },
+ {
+ "epoch": 3.8667540410659678,
+ "grad_norm": 0.2718426585197449,
+ "learning_rate": 0.0006,
+ "loss": 5.619892120361328,
+ "step": 278
+ },
+ {
+ "epoch": 3.8807339449541285,
+ "grad_norm": 0.26481127738952637,
+ "learning_rate": 0.0006,
+ "loss": 5.612496852874756,
+ "step": 279
+ },
+ {
+ "epoch": 3.894713848842289,
+ "grad_norm": 0.2876453399658203,
+ "learning_rate": 0.0006,
+ "loss": 5.59157133102417,
+ "step": 280
+ },
+ {
+ "epoch": 3.90869375273045,
+ "grad_norm": 0.22829554975032806,
+ "learning_rate": 0.0006,
+ "loss": 5.5884199142456055,
+ "step": 281
+ },
+ {
+ "epoch": 3.9226736566186107,
+ "grad_norm": 0.22852344810962677,
+ "learning_rate": 0.0006,
+ "loss": 5.618719100952148,
+ "step": 282
+ },
+ {
+ "epoch": 3.9366535605067714,
+ "grad_norm": 0.37366563081741333,
+ "learning_rate": 0.0006,
+ "loss": 5.611738204956055,
+ "step": 283
+ },
+ {
+ "epoch": 3.950633464394932,
+ "grad_norm": 0.5650382041931152,
+ "learning_rate": 0.0006,
+ "loss": 5.606371879577637,
+ "step": 284
+ },
+ {
+ "epoch": 3.964613368283093,
+ "grad_norm": 0.5960066914558411,
+ "learning_rate": 0.0006,
+ "loss": 5.595022201538086,
+ "step": 285
+ },
+ {
+ "epoch": 3.9785932721712536,
+ "grad_norm": 0.3561663031578064,
+ "learning_rate": 0.0006,
+ "loss": 5.581035614013672,
+ "step": 286
+ },
+ {
+ "epoch": 3.9925731760594148,
+ "grad_norm": 0.44699913263320923,
+ "learning_rate": 0.0006,
+ "loss": 5.568033218383789,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.42783990502357483,
+ "learning_rate": 0.0006,
+ "loss": 5.571993827819824,
+ "step": 288
+ },
+ {
+ "epoch": 4.0,
+ "eval_loss": 6.349016189575195,
+ "eval_runtime": 44.3326,
+ "eval_samples_per_second": 55.084,
+ "eval_steps_per_second": 3.451,
+ "step": 288
+ },
+ {
+ "epoch": 4.013979903888161,
+ "grad_norm": 0.41305896639823914,
+ "learning_rate": 0.0006,
+ "loss": 5.562954902648926,
+ "step": 289
+ },
+ {
+ "epoch": 4.0279598077763215,
+ "grad_norm": 0.3966459035873413,
+ "learning_rate": 0.0006,
+ "loss": 5.5671916007995605,
+ "step": 290
+ },
+ {
+ "epoch": 4.041939711664482,
+ "grad_norm": 0.4846104085445404,
+ "learning_rate": 0.0006,
+ "loss": 5.548027038574219,
+ "step": 291
+ },
+ {
+ "epoch": 4.055919615552643,
+ "grad_norm": 0.5916333794593811,
+ "learning_rate": 0.0006,
+ "loss": 5.5900068283081055,
+ "step": 292
+ },
+ {
+ "epoch": 4.069899519440804,
+ "grad_norm": 0.5973889231681824,
+ "learning_rate": 0.0006,
+ "loss": 5.537594795227051,
+ "step": 293
+ },
+ {
+ "epoch": 4.083879423328964,
+ "grad_norm": 0.4190494418144226,
+ "learning_rate": 0.0006,
+ "loss": 5.534749984741211,
+ "step": 294
+ },
+ {
+ "epoch": 4.097859327217125,
+ "grad_norm": 0.5956901907920837,
+ "learning_rate": 0.0006,
+ "loss": 5.554540634155273,
+ "step": 295
+ },
+ {
+ "epoch": 4.111839231105286,
+ "grad_norm": 0.8257920742034912,
+ "learning_rate": 0.0006,
+ "loss": 5.5728068351745605,
+ "step": 296
+ },
+ {
+ "epoch": 4.1258191349934465,
+ "grad_norm": 0.7241750955581665,
+ "learning_rate": 0.0006,
+ "loss": 5.5643815994262695,
+ "step": 297
+ },
+ {
+ "epoch": 4.139799038881607,
+ "grad_norm": 0.45730507373809814,
+ "learning_rate": 0.0006,
+ "loss": 5.554225921630859,
+ "step": 298
+ },
+ {
+ "epoch": 4.153778942769769,
+ "grad_norm": 0.5166977643966675,
+ "learning_rate": 0.0006,
+ "loss": 5.540790557861328,
+ "step": 299
+ },
+ {
+ "epoch": 4.16775884665793,
+ "grad_norm": 0.433237761259079,
+ "learning_rate": 0.0006,
+ "loss": 5.536884784698486,
+ "step": 300
+ },
+ {
+ "epoch": 4.18173875054609,
+ "grad_norm": 0.3369830250740051,
+ "learning_rate": 0.0006,
+ "loss": 5.532837867736816,
+ "step": 301
+ },
+ {
+ "epoch": 4.195718654434251,
+ "grad_norm": 0.33091458678245544,
+ "learning_rate": 0.0006,
+ "loss": 5.547643661499023,
+ "step": 302
+ },
+ {
+ "epoch": 4.209698558322412,
+ "grad_norm": 0.36462724208831787,
+ "learning_rate": 0.0006,
+ "loss": 5.525021076202393,
+ "step": 303
+ },
+ {
+ "epoch": 4.2236784622105725,
+ "grad_norm": 0.3342771530151367,
+ "learning_rate": 0.0006,
+ "loss": 5.512082099914551,
+ "step": 304
+ },
+ {
+ "epoch": 4.237658366098733,
+ "grad_norm": 0.26784762740135193,
+ "learning_rate": 0.0006,
+ "loss": 5.488072395324707,
+ "step": 305
+ },
+ {
+ "epoch": 4.251638269986894,
+ "grad_norm": 0.25986987352371216,
+ "learning_rate": 0.0006,
+ "loss": 5.4960455894470215,
+ "step": 306
+ },
+ {
+ "epoch": 4.265618173875055,
+ "grad_norm": 0.24595795571804047,
+ "learning_rate": 0.0006,
+ "loss": 5.513367176055908,
+ "step": 307
+ },
+ {
+ "epoch": 4.279598077763215,
+ "grad_norm": 0.2224857211112976,
+ "learning_rate": 0.0006,
+ "loss": 5.465205192565918,
+ "step": 308
+ },
+ {
+ "epoch": 4.293577981651376,
+ "grad_norm": 0.26799243688583374,
+ "learning_rate": 0.0006,
+ "loss": 5.476632118225098,
+ "step": 309
+ },
+ {
+ "epoch": 4.307557885539537,
+ "grad_norm": 0.20443417131900787,
+ "learning_rate": 0.0006,
+ "loss": 5.442601203918457,
+ "step": 310
+ },
+ {
+ "epoch": 4.321537789427698,
+ "grad_norm": 0.2275059074163437,
+ "learning_rate": 0.0006,
+ "loss": 5.453519344329834,
+ "step": 311
+ },
+ {
+ "epoch": 4.335517693315858,
+ "grad_norm": 0.2860901951789856,
+ "learning_rate": 0.0006,
+ "loss": 5.439424514770508,
+ "step": 312
+ },
+ {
+ "epoch": 4.349497597204019,
+ "grad_norm": 0.3378142714500427,
+ "learning_rate": 0.0006,
+ "loss": 5.476953983306885,
+ "step": 313
+ },
+ {
+ "epoch": 4.36347750109218,
+ "grad_norm": 0.3487110733985901,
+ "learning_rate": 0.0006,
+ "loss": 5.47003698348999,
+ "step": 314
+ },
+ {
+ "epoch": 4.3774574049803405,
+ "grad_norm": 0.3655227720737457,
+ "learning_rate": 0.0006,
+ "loss": 5.454250812530518,
+ "step": 315
+ },
+ {
+ "epoch": 4.391437308868501,
+ "grad_norm": 0.3754786252975464,
+ "learning_rate": 0.0006,
+ "loss": 5.475249290466309,
+ "step": 316
+ },
+ {
+ "epoch": 4.405417212756662,
+ "grad_norm": 0.42494088411331177,
+ "learning_rate": 0.0006,
+ "loss": 5.4552459716796875,
+ "step": 317
+ },
+ {
+ "epoch": 4.419397116644823,
+ "grad_norm": 0.4914703667163849,
+ "learning_rate": 0.0006,
+ "loss": 5.431845188140869,
+ "step": 318
+ },
+ {
+ "epoch": 4.433377020532983,
+ "grad_norm": 0.42470860481262207,
+ "learning_rate": 0.0006,
+ "loss": 5.454581260681152,
+ "step": 319
+ },
+ {
+ "epoch": 4.447356924421145,
+ "grad_norm": 0.3828011155128479,
+ "learning_rate": 0.0006,
+ "loss": 5.435178756713867,
+ "step": 320
+ },
+ {
+ "epoch": 4.461336828309306,
+ "grad_norm": 0.47256892919540405,
+ "learning_rate": 0.0006,
+ "loss": 5.428861618041992,
+ "step": 321
+ },
+ {
+ "epoch": 4.4753167321974665,
+ "grad_norm": 0.5665146708488464,
+ "learning_rate": 0.0006,
+ "loss": 5.424633026123047,
+ "step": 322
+ },
+ {
+ "epoch": 4.489296636085627,
+ "grad_norm": 0.48146721720695496,
+ "learning_rate": 0.0006,
+ "loss": 5.4577860832214355,
+ "step": 323
+ },
+ {
+ "epoch": 4.503276539973788,
+ "grad_norm": 0.3378535509109497,
+ "learning_rate": 0.0006,
+ "loss": 5.422727108001709,
+ "step": 324
+ },
+ {
+ "epoch": 4.517256443861949,
+ "grad_norm": 0.41981473565101624,
+ "learning_rate": 0.0006,
+ "loss": 5.418993949890137,
+ "step": 325
+ },
+ {
+ "epoch": 4.531236347750109,
+ "grad_norm": 0.39389684796333313,
+ "learning_rate": 0.0006,
+ "loss": 5.41835880279541,
+ "step": 326
+ },
+ {
+ "epoch": 4.54521625163827,
+ "grad_norm": 0.5912176370620728,
+ "learning_rate": 0.0006,
+ "loss": 5.40073299407959,
+ "step": 327
+ },
+ {
+ "epoch": 4.559196155526431,
+ "grad_norm": 0.6877487897872925,
+ "learning_rate": 0.0006,
+ "loss": 5.445301055908203,
+ "step": 328
+ },
+ {
+ "epoch": 4.573176059414592,
+ "grad_norm": 0.580555260181427,
+ "learning_rate": 0.0006,
+ "loss": 5.431069374084473,
+ "step": 329
+ },
+ {
+ "epoch": 4.587155963302752,
+ "grad_norm": 0.5974457859992981,
+ "learning_rate": 0.0006,
+ "loss": 5.422694206237793,
+ "step": 330
+ },
+ {
+ "epoch": 4.601135867190913,
+ "grad_norm": 0.722481906414032,
+ "learning_rate": 0.0006,
+ "loss": 5.447752952575684,
+ "step": 331
+ },
+ {
+ "epoch": 4.615115771079074,
+ "grad_norm": 0.7687886953353882,
+ "learning_rate": 0.0006,
+ "loss": 5.437956809997559,
+ "step": 332
+ },
+ {
+ "epoch": 4.6290956749672345,
+ "grad_norm": 0.7368173003196716,
+ "learning_rate": 0.0006,
+ "loss": 5.4367241859436035,
+ "step": 333
+ },
+ {
+ "epoch": 4.643075578855395,
+ "grad_norm": 0.6650524139404297,
+ "learning_rate": 0.0006,
+ "loss": 5.4288434982299805,
+ "step": 334
+ },
+ {
+ "epoch": 4.657055482743556,
+ "grad_norm": 0.4997614920139313,
+ "learning_rate": 0.0006,
+ "loss": 5.412769317626953,
+ "step": 335
+ },
+ {
+ "epoch": 4.671035386631717,
+ "grad_norm": 0.44208982586860657,
+ "learning_rate": 0.0006,
+ "loss": 5.42405366897583,
+ "step": 336
+ },
+ {
+ "epoch": 4.685015290519877,
+ "grad_norm": 0.39510273933410645,
+ "learning_rate": 0.0006,
+ "loss": 5.402547836303711,
+ "step": 337
+ },
+ {
+ "epoch": 4.698995194408038,
+ "grad_norm": 0.44970476627349854,
+ "learning_rate": 0.0006,
+ "loss": 5.377168655395508,
+ "step": 338
+ },
+ {
+ "epoch": 4.712975098296199,
+ "grad_norm": 0.3902331590652466,
+ "learning_rate": 0.0006,
+ "loss": 5.401622772216797,
+ "step": 339
+ },
+ {
+ "epoch": 4.72695500218436,
+ "grad_norm": 0.33485135436058044,
+ "learning_rate": 0.0006,
+ "loss": 5.397945880889893,
+ "step": 340
+ },
+ {
+ "epoch": 4.740934906072521,
+ "grad_norm": 0.29062309861183167,
+ "learning_rate": 0.0006,
+ "loss": 5.356175422668457,
+ "step": 341
+ },
+ {
+ "epoch": 4.754914809960681,
+ "grad_norm": 0.23617377877235413,
+ "learning_rate": 0.0006,
+ "loss": 5.388517379760742,
+ "step": 342
+ },
+ {
+ "epoch": 4.768894713848843,
+ "grad_norm": 0.2704737186431885,
+ "learning_rate": 0.0006,
+ "loss": 5.3746137619018555,
+ "step": 343
+ },
+ {
+ "epoch": 4.782874617737003,
+ "grad_norm": 0.20488551259040833,
+ "learning_rate": 0.0006,
+ "loss": 5.3754472732543945,
+ "step": 344
+ },
+ {
+ "epoch": 4.796854521625164,
+ "grad_norm": 0.2007082849740982,
+ "learning_rate": 0.0006,
+ "loss": 5.3538618087768555,
+ "step": 345
+ },
+ {
+ "epoch": 4.810834425513325,
+ "grad_norm": 0.21732935309410095,
+ "learning_rate": 0.0006,
+ "loss": 5.351774215698242,
+ "step": 346
+ },
+ {
+ "epoch": 4.824814329401486,
+ "grad_norm": 0.1944841742515564,
+ "learning_rate": 0.0006,
+ "loss": 5.357545852661133,
+ "step": 347
+ },
+ {
+ "epoch": 4.838794233289646,
+ "grad_norm": 0.1953933835029602,
+ "learning_rate": 0.0006,
+ "loss": 5.321681022644043,
+ "step": 348
+ },
+ {
+ "epoch": 4.852774137177807,
+ "grad_norm": 0.1743433028459549,
+ "learning_rate": 0.0006,
+ "loss": 5.340302467346191,
+ "step": 349
+ },
+ {
+ "epoch": 4.866754041065968,
+ "grad_norm": 0.19655466079711914,
+ "learning_rate": 0.0006,
+ "loss": 5.325471878051758,
+ "step": 350
+ },
+ {
+ "epoch": 4.8807339449541285,
+ "grad_norm": 0.15761791169643402,
+ "learning_rate": 0.0006,
+ "loss": 5.3453240394592285,
+ "step": 351
+ },
+ {
+ "epoch": 4.894713848842289,
+ "grad_norm": 0.19164425134658813,
+ "learning_rate": 0.0006,
+ "loss": 5.315583229064941,
+ "step": 352
+ },
+ {
+ "epoch": 4.90869375273045,
+ "grad_norm": 0.28084540367126465,
+ "learning_rate": 0.0006,
+ "loss": 5.309171676635742,
+ "step": 353
+ },
+ {
+ "epoch": 4.922673656618611,
+ "grad_norm": 0.4681853652000427,
+ "learning_rate": 0.0006,
+ "loss": 5.318211078643799,
+ "step": 354
+ },
+ {
+ "epoch": 4.936653560506771,
+ "grad_norm": 0.6417295932769775,
+ "learning_rate": 0.0006,
+ "loss": 5.309263706207275,
+ "step": 355
+ },
+ {
+ "epoch": 4.950633464394932,
+ "grad_norm": 0.501312792301178,
+ "learning_rate": 0.0006,
+ "loss": 5.321534156799316,
+ "step": 356
+ },
+ {
+ "epoch": 4.964613368283093,
+ "grad_norm": 0.47502145171165466,
+ "learning_rate": 0.0006,
+ "loss": 5.323659896850586,
+ "step": 357
+ },
+ {
+ "epoch": 4.978593272171254,
+ "grad_norm": 0.5366594791412354,
+ "learning_rate": 0.0006,
+ "loss": 5.327367782592773,
+ "step": 358
+ },
+ {
+ "epoch": 4.992573176059414,
+ "grad_norm": 0.6986395120620728,
+ "learning_rate": 0.0006,
+ "loss": 5.311097145080566,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.6626625657081604,
+ "learning_rate": 0.0006,
+ "loss": 5.337558269500732,
+ "step": 360
+ },
+ {
+ "epoch": 5.0,
+ "eval_loss": 5.929230690002441,
+ "eval_runtime": 44.5268,
+ "eval_samples_per_second": 54.843,
+ "eval_steps_per_second": 3.436,
+ "step": 360
+ },
+ {
+ "epoch": 5.013979903888161,
+ "grad_norm": 0.7383704781532288,
+ "learning_rate": 0.0006,
+ "loss": 5.315563678741455,
+ "step": 361
+ },
+ {
+ "epoch": 5.0279598077763215,
+ "grad_norm": 0.7730138301849365,
+ "learning_rate": 0.0006,
+ "loss": 5.324905872344971,
+ "step": 362
+ },
+ {
+ "epoch": 5.041939711664482,
+ "grad_norm": 0.8170825839042664,
+ "learning_rate": 0.0006,
+ "loss": 5.350251197814941,
+ "step": 363
+ },
+ {
+ "epoch": 5.055919615552643,
+ "grad_norm": 0.6950958371162415,
+ "learning_rate": 0.0006,
+ "loss": 5.338744163513184,
+ "step": 364
+ },
+ {
+ "epoch": 5.069899519440804,
+ "grad_norm": 0.5582894086837769,
+ "learning_rate": 0.0006,
+ "loss": 5.340539932250977,
+ "step": 365
+ },
+ {
+ "epoch": 5.083879423328964,
+ "grad_norm": 0.4772159159183502,
+ "learning_rate": 0.0006,
+ "loss": 5.344161033630371,
+ "step": 366
+ },
+ {
+ "epoch": 5.097859327217125,
+ "grad_norm": 0.5432839393615723,
+ "learning_rate": 0.0006,
+ "loss": 5.312403678894043,
+ "step": 367
+ },
+ {
+ "epoch": 5.111839231105286,
+ "grad_norm": 0.4944784641265869,
+ "learning_rate": 0.0006,
+ "loss": 5.30281925201416,
+ "step": 368
+ },
+ {
+ "epoch": 5.1258191349934465,
+ "grad_norm": 0.4298315942287445,
+ "learning_rate": 0.0006,
+ "loss": 5.29564094543457,
+ "step": 369
+ },
+ {
+ "epoch": 5.139799038881607,
+ "grad_norm": 0.349889874458313,
+ "learning_rate": 0.0006,
+ "loss": 5.287062644958496,
+ "step": 370
+ },
+ {
+ "epoch": 5.153778942769769,
+ "grad_norm": 0.2823719084262848,
+ "learning_rate": 0.0006,
+ "loss": 5.28826904296875,
+ "step": 371
+ },
+ {
+ "epoch": 5.16775884665793,
+ "grad_norm": 0.32975050806999207,
+ "learning_rate": 0.0006,
+ "loss": 5.256399631500244,
+ "step": 372
+ },
+ {
+ "epoch": 5.18173875054609,
+ "grad_norm": 0.2963952124118805,
+ "learning_rate": 0.0006,
+ "loss": 5.273757457733154,
+ "step": 373
+ },
+ {
+ "epoch": 5.195718654434251,
+ "grad_norm": 0.21345984935760498,
+ "learning_rate": 0.0006,
+ "loss": 5.274978160858154,
+ "step": 374
+ },
+ {
+ "epoch": 5.209698558322412,
+ "grad_norm": 0.2363101840019226,
+ "learning_rate": 0.0006,
+ "loss": 5.261585235595703,
+ "step": 375
+ },
+ {
+ "epoch": 5.2236784622105725,
+ "grad_norm": 0.19626963138580322,
+ "learning_rate": 0.0006,
+ "loss": 5.259700298309326,
+ "step": 376
+ },
+ {
+ "epoch": 5.237658366098733,
+ "grad_norm": 0.21083571016788483,
+ "learning_rate": 0.0006,
+ "loss": 5.233585357666016,
+ "step": 377
+ },
+ {
+ "epoch": 5.251638269986894,
+ "grad_norm": 0.2273513823747635,
+ "learning_rate": 0.0006,
+ "loss": 5.231740474700928,
+ "step": 378
+ },
+ {
+ "epoch": 5.265618173875055,
+ "grad_norm": 0.18299247324466705,
+ "learning_rate": 0.0006,
+ "loss": 5.251256465911865,
+ "step": 379
+ },
+ {
+ "epoch": 5.279598077763215,
+ "grad_norm": 0.19578224420547485,
+ "learning_rate": 0.0006,
+ "loss": 5.230329513549805,
+ "step": 380
+ },
+ {
+ "epoch": 5.293577981651376,
+ "grad_norm": 0.20308879017829895,
+ "learning_rate": 0.0006,
+ "loss": 5.243951797485352,
+ "step": 381
+ },
+ {
+ "epoch": 5.307557885539537,
+ "grad_norm": 0.21053212881088257,
+ "learning_rate": 0.0006,
+ "loss": 5.210272789001465,
+ "step": 382
+ },
+ {
+ "epoch": 5.321537789427698,
+ "grad_norm": 0.21852520108222961,
+ "learning_rate": 0.0006,
+ "loss": 5.215418815612793,
+ "step": 383
+ },
+ {
+ "epoch": 5.335517693315858,
+ "grad_norm": 0.24872010946273804,
+ "learning_rate": 0.0006,
+ "loss": 5.225139617919922,
+ "step": 384
+ },
+ {
+ "epoch": 5.349497597204019,
+ "grad_norm": 0.27780187129974365,
+ "learning_rate": 0.0006,
+ "loss": 5.241010665893555,
+ "step": 385
+ },
+ {
+ "epoch": 5.36347750109218,
+ "grad_norm": 0.261767715215683,
+ "learning_rate": 0.0006,
+ "loss": 5.230723857879639,
+ "step": 386
+ },
+ {
+ "epoch": 5.3774574049803405,
+ "grad_norm": 0.2111261785030365,
+ "learning_rate": 0.0006,
+ "loss": 5.1848602294921875,
+ "step": 387
+ },
+ {
+ "epoch": 5.391437308868501,
+ "grad_norm": 0.24325387179851532,
+ "learning_rate": 0.0006,
+ "loss": 5.180911064147949,
+ "step": 388
+ },
+ {
+ "epoch": 5.405417212756662,
+ "grad_norm": 0.19542962312698364,
+ "learning_rate": 0.0006,
+ "loss": 5.189907073974609,
+ "step": 389
+ },
+ {
+ "epoch": 5.419397116644823,
+ "grad_norm": 0.20489346981048584,
+ "learning_rate": 0.0006,
+ "loss": 5.184634208679199,
+ "step": 390
+ },
+ {
+ "epoch": 5.433377020532983,
+ "grad_norm": 0.2753409147262573,
+ "learning_rate": 0.0006,
+ "loss": 5.190083026885986,
+ "step": 391
+ },
+ {
+ "epoch": 5.447356924421145,
+ "grad_norm": 0.3758019208908081,
+ "learning_rate": 0.0006,
+ "loss": 5.189423561096191,
+ "step": 392
+ },
+ {
+ "epoch": 5.461336828309306,
+ "grad_norm": 0.4425095021724701,
+ "learning_rate": 0.0006,
+ "loss": 5.17152214050293,
+ "step": 393
+ },
+ {
+ "epoch": 5.4753167321974665,
+ "grad_norm": 0.39721858501434326,
+ "learning_rate": 0.0006,
+ "loss": 5.189178466796875,
+ "step": 394
+ },
+ {
+ "epoch": 5.489296636085627,
+ "grad_norm": 0.43441957235336304,
+ "learning_rate": 0.0006,
+ "loss": 5.1823577880859375,
+ "step": 395
+ },
+ {
+ "epoch": 5.503276539973788,
+ "grad_norm": 0.3583861291408539,
+ "learning_rate": 0.0006,
+ "loss": 5.160187721252441,
+ "step": 396
+ },
+ {
+ "epoch": 5.517256443861949,
+ "grad_norm": 0.323290079832077,
+ "learning_rate": 0.0006,
+ "loss": 5.113046646118164,
+ "step": 397
+ },
+ {
+ "epoch": 5.531236347750109,
+ "grad_norm": 0.3049418330192566,
+ "learning_rate": 0.0006,
+ "loss": 5.172209739685059,
+ "step": 398
+ },
+ {
+ "epoch": 5.54521625163827,
+ "grad_norm": 0.3253744840621948,
+ "learning_rate": 0.0006,
+ "loss": 5.1970720291137695,
+ "step": 399
+ },
+ {
+ "epoch": 5.559196155526431,
+ "grad_norm": 0.3232555091381073,
+ "learning_rate": 0.0006,
+ "loss": 5.173195838928223,
+ "step": 400
+ },
+ {
+ "epoch": 5.573176059414592,
+ "grad_norm": 0.33751845359802246,
+ "learning_rate": 0.0006,
+ "loss": 5.137526988983154,
+ "step": 401
+ },
+ {
+ "epoch": 5.587155963302752,
+ "grad_norm": 0.45970913767814636,
+ "learning_rate": 0.0006,
+ "loss": 5.123377799987793,
+ "step": 402
+ },
+ {
+ "epoch": 5.601135867190913,
+ "grad_norm": 0.5383784770965576,
+ "learning_rate": 0.0006,
+ "loss": 5.154180526733398,
+ "step": 403
+ },
+ {
+ "epoch": 5.615115771079074,
+ "grad_norm": 0.45765912532806396,
+ "learning_rate": 0.0006,
+ "loss": 5.1485209465026855,
+ "step": 404
+ },
+ {
+ "epoch": 5.6290956749672345,
+ "grad_norm": 0.5079503059387207,
+ "learning_rate": 0.0006,
+ "loss": 5.158293724060059,
+ "step": 405
+ },
+ {
+ "epoch": 5.643075578855395,
+ "grad_norm": 0.4860183894634247,
+ "learning_rate": 0.0006,
+ "loss": 5.1610212326049805,
+ "step": 406
+ },
+ {
+ "epoch": 5.657055482743556,
+ "grad_norm": 0.4065648913383484,
+ "learning_rate": 0.0006,
+ "loss": 5.1260786056518555,
+ "step": 407
+ },
+ {
+ "epoch": 5.671035386631717,
+ "grad_norm": 0.39606142044067383,
+ "learning_rate": 0.0006,
+ "loss": 5.1598711013793945,
+ "step": 408
+ },
+ {
+ "epoch": 5.685015290519877,
+ "grad_norm": 0.4705151319503784,
+ "learning_rate": 0.0006,
+ "loss": 5.166455268859863,
+ "step": 409
+ },
+ {
+ "epoch": 5.698995194408038,
+ "grad_norm": 0.5040799379348755,
+ "learning_rate": 0.0006,
+ "loss": 5.1408209800720215,
+ "step": 410
+ },
+ {
+ "epoch": 5.712975098296199,
+ "grad_norm": 0.5012556910514832,
+ "learning_rate": 0.0006,
+ "loss": 5.144109725952148,
+ "step": 411
+ },
+ {
+ "epoch": 5.72695500218436,
+ "grad_norm": 0.44301411509513855,
+ "learning_rate": 0.0006,
+ "loss": 5.155509948730469,
+ "step": 412
+ },
+ {
+ "epoch": 5.740934906072521,
+ "grad_norm": 0.36632269620895386,
+ "learning_rate": 0.0006,
+ "loss": 5.123111248016357,
+ "step": 413
+ },
+ {
+ "epoch": 5.754914809960681,
+ "grad_norm": 0.2980524003505707,
+ "learning_rate": 0.0006,
+ "loss": 5.1355719566345215,
+ "step": 414
+ },
+ {
+ "epoch": 5.768894713848843,
+ "grad_norm": 0.3441782295703888,
+ "learning_rate": 0.0006,
+ "loss": 5.132327079772949,
+ "step": 415
+ },
+ {
+ "epoch": 5.782874617737003,
+ "grad_norm": 0.4150780737400055,
+ "learning_rate": 0.0006,
+ "loss": 5.148543357849121,
+ "step": 416
+ },
+ {
+ "epoch": 5.796854521625164,
+ "grad_norm": 0.48417383432388306,
+ "learning_rate": 0.0006,
+ "loss": 5.104989528656006,
+ "step": 417
+ },
+ {
+ "epoch": 5.810834425513325,
+ "grad_norm": 0.3216031491756439,
+ "learning_rate": 0.0006,
+ "loss": 5.0926127433776855,
+ "step": 418
+ },
+ {
+ "epoch": 5.824814329401486,
+ "grad_norm": 0.2821158468723297,
+ "learning_rate": 0.0006,
+ "loss": 5.112299919128418,
+ "step": 419
+ },
+ {
+ "epoch": 5.838794233289646,
+ "grad_norm": 0.29821011424064636,
+ "learning_rate": 0.0006,
+ "loss": 5.091662406921387,
+ "step": 420
+ },
+ {
+ "epoch": 5.852774137177807,
+ "grad_norm": 0.30570563673973083,
+ "learning_rate": 0.0006,
+ "loss": 5.137539863586426,
+ "step": 421
+ },
+ {
+ "epoch": 5.866754041065968,
+ "grad_norm": 0.4029594957828522,
+ "learning_rate": 0.0006,
+ "loss": 5.112751007080078,
+ "step": 422
+ },
+ {
+ "epoch": 5.8807339449541285,
+ "grad_norm": 0.3878514766693115,
+ "learning_rate": 0.0006,
+ "loss": 5.094973564147949,
+ "step": 423
+ },
+ {
+ "epoch": 5.894713848842289,
+ "grad_norm": 0.31936126947402954,
+ "learning_rate": 0.0006,
+ "loss": 5.081070899963379,
+ "step": 424
+ },
+ {
+ "epoch": 5.90869375273045,
+ "grad_norm": 0.3309082090854645,
+ "learning_rate": 0.0006,
+ "loss": 5.06803560256958,
+ "step": 425
+ },
+ {
+ "epoch": 5.922673656618611,
+ "grad_norm": 0.27830439805984497,
+ "learning_rate": 0.0006,
+ "loss": 5.044766426086426,
+ "step": 426
+ },
+ {
+ "epoch": 5.936653560506771,
+ "grad_norm": 0.3301011919975281,
+ "learning_rate": 0.0006,
+ "loss": 5.093942165374756,
+ "step": 427
+ },
+ {
+ "epoch": 5.950633464394932,
+ "grad_norm": 0.40845948457717896,
+ "learning_rate": 0.0006,
+ "loss": 5.0889458656311035,
+ "step": 428
+ },
+ {
+ "epoch": 5.964613368283093,
+ "grad_norm": 0.4412153959274292,
+ "learning_rate": 0.0006,
+ "loss": 5.064834117889404,
+ "step": 429
+ },
+ {
+ "epoch": 5.978593272171254,
+ "grad_norm": 0.3592590093612671,
+ "learning_rate": 0.0006,
+ "loss": 5.066648006439209,
+ "step": 430
+ },
+ {
+ "epoch": 5.992573176059414,
+ "grad_norm": 0.3952840268611908,
+ "learning_rate": 0.0006,
+ "loss": 5.066549301147461,
+ "step": 431
+ },
+ {
+ "epoch": 6.0,
+ "grad_norm": 0.38878682255744934,
+ "learning_rate": 0.0006,
+ "loss": 5.0354323387146,
+ "step": 432
+ },
+ {
+ "epoch": 6.0,
+ "eval_loss": 5.473907947540283,
+ "eval_runtime": 44.5121,
+ "eval_samples_per_second": 54.861,
+ "eval_steps_per_second": 3.437,
+ "step": 432
+ },
+ {
+ "epoch": 6.013979903888161,
+ "grad_norm": 0.42730140686035156,
+ "learning_rate": 0.0006,
+ "loss": 5.048557281494141,
+ "step": 433
+ },
+ {
+ "epoch": 6.0279598077763215,
+ "grad_norm": 0.32713913917541504,
+ "learning_rate": 0.0006,
+ "loss": 5.041255950927734,
+ "step": 434
+ },
+ {
+ "epoch": 6.041939711664482,
+ "grad_norm": 0.32520365715026855,
+ "learning_rate": 0.0006,
+ "loss": 5.043124198913574,
+ "step": 435
+ },
+ {
+ "epoch": 6.055919615552643,
+ "grad_norm": 0.2941839098930359,
+ "learning_rate": 0.0006,
+ "loss": 5.0407304763793945,
+ "step": 436
+ },
+ {
+ "epoch": 6.069899519440804,
+ "grad_norm": 0.3088819682598114,
+ "learning_rate": 0.0006,
+ "loss": 5.020771026611328,
+ "step": 437
+ },
+ {
+ "epoch": 6.083879423328964,
+ "grad_norm": 0.34334254264831543,
+ "learning_rate": 0.0006,
+ "loss": 5.0260009765625,
+ "step": 438
+ },
+ {
+ "epoch": 6.097859327217125,
+ "grad_norm": 0.33016136288642883,
+ "learning_rate": 0.0006,
+ "loss": 4.994412899017334,
+ "step": 439
+ },
+ {
+ "epoch": 6.111839231105286,
+ "grad_norm": 0.2527366280555725,
+ "learning_rate": 0.0006,
+ "loss": 4.997830390930176,
+ "step": 440
+ },
+ {
+ "epoch": 6.1258191349934465,
+ "grad_norm": 0.24742509424686432,
+ "learning_rate": 0.0006,
+ "loss": 5.017087936401367,
+ "step": 441
+ },
+ {
+ "epoch": 6.139799038881607,
+ "grad_norm": 0.22578303515911102,
+ "learning_rate": 0.0006,
+ "loss": 5.000683784484863,
+ "step": 442
+ },
+ {
+ "epoch": 6.153778942769769,
+ "grad_norm": 0.21213896572589874,
+ "learning_rate": 0.0006,
+ "loss": 4.993280410766602,
+ "step": 443
+ },
+ {
+ "epoch": 6.16775884665793,
+ "grad_norm": 0.22559592127799988,
+ "learning_rate": 0.0006,
+ "loss": 5.005735874176025,
+ "step": 444
+ },
+ {
+ "epoch": 6.18173875054609,
+ "grad_norm": 0.18574322760105133,
+ "learning_rate": 0.0006,
+ "loss": 4.996601104736328,
+ "step": 445
+ },
+ {
+ "epoch": 6.195718654434251,
+ "grad_norm": 0.1793852299451828,
+ "learning_rate": 0.0006,
+ "loss": 4.977394104003906,
+ "step": 446
+ },
+ {
+ "epoch": 6.209698558322412,
+ "grad_norm": 0.1851297914981842,
+ "learning_rate": 0.0006,
+ "loss": 4.983541488647461,
+ "step": 447
+ },
+ {
+ "epoch": 6.2236784622105725,
+ "grad_norm": 0.2045268565416336,
+ "learning_rate": 0.0006,
+ "loss": 4.992830276489258,
+ "step": 448
+ },
+ {
+ "epoch": 6.237658366098733,
+ "grad_norm": 0.21707463264465332,
+ "learning_rate": 0.0006,
+ "loss": 4.998589515686035,
+ "step": 449
+ },
+ {
+ "epoch": 6.251638269986894,
+ "grad_norm": 0.2805860638618469,
+ "learning_rate": 0.0006,
+ "loss": 4.973134517669678,
+ "step": 450
+ },
+ {
+ "epoch": 6.265618173875055,
+ "grad_norm": 0.33102089166641235,
+ "learning_rate": 0.0006,
+ "loss": 4.957348823547363,
+ "step": 451
+ },
+ {
+ "epoch": 6.279598077763215,
+ "grad_norm": 0.3763096034526825,
+ "learning_rate": 0.0006,
+ "loss": 5.0133256912231445,
+ "step": 452
+ },
+ {
+ "epoch": 6.293577981651376,
+ "grad_norm": 0.4676196575164795,
+ "learning_rate": 0.0006,
+ "loss": 4.972289562225342,
+ "step": 453
+ },
+ {
+ "epoch": 6.307557885539537,
+ "grad_norm": 0.6158978343009949,
+ "learning_rate": 0.0006,
+ "loss": 4.989326477050781,
+ "step": 454
+ },
+ {
+ "epoch": 6.321537789427698,
+ "grad_norm": 0.537460446357727,
+ "learning_rate": 0.0006,
+ "loss": 5.0210676193237305,
+ "step": 455
+ },
+ {
+ "epoch": 6.335517693315858,
+ "grad_norm": 0.5342532396316528,
+ "learning_rate": 0.0006,
+ "loss": 4.988524436950684,
+ "step": 456
+ },
+ {
+ "epoch": 6.349497597204019,
+ "grad_norm": 0.5736384987831116,
+ "learning_rate": 0.0006,
+ "loss": 4.977508068084717,
+ "step": 457
+ },
+ {
+ "epoch": 6.36347750109218,
+ "grad_norm": 0.6656201481819153,
+ "learning_rate": 0.0006,
+ "loss": 5.047934055328369,
+ "step": 458
+ },
+ {
+ "epoch": 6.3774574049803405,
+ "grad_norm": 0.6388342380523682,
+ "learning_rate": 0.0006,
+ "loss": 5.017617225646973,
+ "step": 459
+ },
+ {
+ "epoch": 6.391437308868501,
+ "grad_norm": 0.6620904207229614,
+ "learning_rate": 0.0006,
+ "loss": 5.032195091247559,
+ "step": 460
+ },
+ {
+ "epoch": 6.405417212756662,
+ "grad_norm": 0.693274974822998,
+ "learning_rate": 0.0006,
+ "loss": 5.02433967590332,
+ "step": 461
+ },
+ {
+ "epoch": 6.419397116644823,
+ "grad_norm": 0.6888924241065979,
+ "learning_rate": 0.0006,
+ "loss": 5.010735511779785,
+ "step": 462
+ },
+ {
+ "epoch": 6.433377020532983,
+ "grad_norm": 0.7181721925735474,
+ "learning_rate": 0.0006,
+ "loss": 5.049690246582031,
+ "step": 463
+ },
+ {
+ "epoch": 6.447356924421145,
+ "grad_norm": 0.7225117087364197,
+ "learning_rate": 0.0006,
+ "loss": 5.031939506530762,
+ "step": 464
+ },
+ {
+ "epoch": 6.461336828309306,
+ "grad_norm": 0.5268304347991943,
+ "learning_rate": 0.0006,
+ "loss": 5.01638126373291,
+ "step": 465
+ },
+ {
+ "epoch": 6.4753167321974665,
+ "grad_norm": 0.38218435645103455,
+ "learning_rate": 0.0006,
+ "loss": 4.997034072875977,
+ "step": 466
+ },
+ {
+ "epoch": 6.489296636085627,
+ "grad_norm": 0.3576396703720093,
+ "learning_rate": 0.0006,
+ "loss": 5.006804943084717,
+ "step": 467
+ },
+ {
+ "epoch": 6.503276539973788,
+ "grad_norm": 0.3305981755256653,
+ "learning_rate": 0.0006,
+ "loss": 4.994671821594238,
+ "step": 468
+ },
+ {
+ "epoch": 6.517256443861949,
+ "grad_norm": 0.3254900574684143,
+ "learning_rate": 0.0006,
+ "loss": 4.9747490882873535,
+ "step": 469
+ },
+ {
+ "epoch": 6.531236347750109,
+ "grad_norm": 0.2655033469200134,
+ "learning_rate": 0.0006,
+ "loss": 5.002863883972168,
+ "step": 470
+ },
+ {
+ "epoch": 6.54521625163827,
+ "grad_norm": 0.2620532810688019,
+ "learning_rate": 0.0006,
+ "loss": 4.9813337326049805,
+ "step": 471
+ },
+ {
+ "epoch": 6.559196155526431,
+ "grad_norm": 0.22128869593143463,
+ "learning_rate": 0.0006,
+ "loss": 4.978368759155273,
+ "step": 472
+ },
+ {
+ "epoch": 6.573176059414592,
+ "grad_norm": 0.22638699412345886,
+ "learning_rate": 0.0006,
+ "loss": 4.944509029388428,
+ "step": 473
+ },
+ {
+ "epoch": 6.587155963302752,
+ "grad_norm": 0.20720207691192627,
+ "learning_rate": 0.0006,
+ "loss": 4.98404598236084,
+ "step": 474
+ },
+ {
+ "epoch": 6.601135867190913,
+ "grad_norm": 0.21577289700508118,
+ "learning_rate": 0.0006,
+ "loss": 4.958878040313721,
+ "step": 475
+ },
+ {
+ "epoch": 6.615115771079074,
+ "grad_norm": 0.22453972697257996,
+ "learning_rate": 0.0006,
+ "loss": 4.935467720031738,
+ "step": 476
+ },
+ {
+ "epoch": 6.6290956749672345,
+ "grad_norm": 0.20757712423801422,
+ "learning_rate": 0.0006,
+ "loss": 4.943334579467773,
+ "step": 477
+ },
+ {
+ "epoch": 6.643075578855395,
+ "grad_norm": 0.22808043658733368,
+ "learning_rate": 0.0006,
+ "loss": 4.936544418334961,
+ "step": 478
+ },
+ {
+ "epoch": 6.657055482743556,
+ "grad_norm": 0.2193756401538849,
+ "learning_rate": 0.0006,
+ "loss": 4.938162326812744,
+ "step": 479
+ },
+ {
+ "epoch": 6.671035386631717,
+ "grad_norm": 0.19677500426769257,
+ "learning_rate": 0.0006,
+ "loss": 4.9026713371276855,
+ "step": 480
+ },
+ {
+ "epoch": 6.685015290519877,
+ "grad_norm": 0.17271658778190613,
+ "learning_rate": 0.0006,
+ "loss": 4.912519454956055,
+ "step": 481
+ },
+ {
+ "epoch": 6.698995194408038,
+ "grad_norm": 0.17551499605178833,
+ "learning_rate": 0.0006,
+ "loss": 4.929941177368164,
+ "step": 482
+ },
+ {
+ "epoch": 6.712975098296199,
+ "grad_norm": 0.1582687348127365,
+ "learning_rate": 0.0006,
+ "loss": 4.908967971801758,
+ "step": 483
+ },
+ {
+ "epoch": 6.72695500218436,
+ "grad_norm": 0.1593410074710846,
+ "learning_rate": 0.0006,
+ "loss": 4.901554107666016,
+ "step": 484
+ },
+ {
+ "epoch": 6.740934906072521,
+ "grad_norm": 0.16746895015239716,
+ "learning_rate": 0.0006,
+ "loss": 4.917915344238281,
+ "step": 485
+ },
+ {
+ "epoch": 6.754914809960681,
+ "grad_norm": 0.17066062986850739,
+ "learning_rate": 0.0006,
+ "loss": 4.912853240966797,
+ "step": 486
+ },
+ {
+ "epoch": 6.768894713848843,
+ "grad_norm": 0.16727769374847412,
+ "learning_rate": 0.0006,
+ "loss": 4.895434856414795,
+ "step": 487
+ },
+ {
+ "epoch": 6.782874617737003,
+ "grad_norm": 0.1784558743238449,
+ "learning_rate": 0.0006,
+ "loss": 4.8805341720581055,
+ "step": 488
+ },
+ {
+ "epoch": 6.796854521625164,
+ "grad_norm": 0.176686093211174,
+ "learning_rate": 0.0006,
+ "loss": 4.855296611785889,
+ "step": 489
+ },
+ {
+ "epoch": 6.810834425513325,
+ "grad_norm": 0.21577849984169006,
+ "learning_rate": 0.0006,
+ "loss": 4.885506629943848,
+ "step": 490
+ },
+ {
+ "epoch": 6.824814329401486,
+ "grad_norm": 0.27615776658058167,
+ "learning_rate": 0.0006,
+ "loss": 4.913756847381592,
+ "step": 491
+ },
+ {
+ "epoch": 6.838794233289646,
+ "grad_norm": 0.3653675615787506,
+ "learning_rate": 0.0006,
+ "loss": 4.880918979644775,
+ "step": 492
+ },
+ {
+ "epoch": 6.852774137177807,
+ "grad_norm": 0.41473883390426636,
+ "learning_rate": 0.0006,
+ "loss": 4.894164562225342,
+ "step": 493
+ },
+ {
+ "epoch": 6.866754041065968,
+ "grad_norm": 0.45850715041160583,
+ "learning_rate": 0.0006,
+ "loss": 4.907922744750977,
+ "step": 494
+ },
+ {
+ "epoch": 6.8807339449541285,
+ "grad_norm": 0.4675290882587433,
+ "learning_rate": 0.0006,
+ "loss": 4.883112907409668,
+ "step": 495
+ },
+ {
+ "epoch": 6.894713848842289,
+ "grad_norm": 0.45795994997024536,
+ "learning_rate": 0.0006,
+ "loss": 4.897843360900879,
+ "step": 496
+ },
+ {
+ "epoch": 6.90869375273045,
+ "grad_norm": 0.46130508184432983,
+ "learning_rate": 0.0006,
+ "loss": 4.890612602233887,
+ "step": 497
+ },
+ {
+ "epoch": 6.922673656618611,
+ "grad_norm": 0.44783803820610046,
+ "learning_rate": 0.0006,
+ "loss": 4.880192756652832,
+ "step": 498
+ },
+ {
+ "epoch": 6.936653560506771,
+ "grad_norm": 0.35361284017562866,
+ "learning_rate": 0.0006,
+ "loss": 4.840778350830078,
+ "step": 499
+ },
+ {
+ "epoch": 6.950633464394932,
+ "grad_norm": 0.34027689695358276,
+ "learning_rate": 0.0006,
+ "loss": 4.871222496032715,
+ "step": 500
+ },
+ {
+ "epoch": 6.964613368283093,
+ "grad_norm": 0.30228909850120544,
+ "learning_rate": 0.0006,
+ "loss": 4.868077278137207,
+ "step": 501
+ },
+ {
+ "epoch": 6.978593272171254,
+ "grad_norm": 0.27706998586654663,
+ "learning_rate": 0.0006,
+ "loss": 4.895936012268066,
+ "step": 502
+ },
+ {
+ "epoch": 6.992573176059414,
+ "grad_norm": 0.3516870439052582,
+ "learning_rate": 0.0006,
+ "loss": 4.824636459350586,
+ "step": 503
+ },
+ {
+ "epoch": 7.0,
+ "grad_norm": 0.36831387877464294,
+ "learning_rate": 0.0006,
+ "loss": 4.874397277832031,
+ "step": 504
+ },
+ {
+ "epoch": 7.0,
+ "eval_loss": 5.176281452178955,
+ "eval_runtime": 44.2386,
+ "eval_samples_per_second": 55.201,
+ "eval_steps_per_second": 3.459,
+ "step": 504
+ },
+ {
+ "epoch": 7.013979903888161,
+ "grad_norm": 0.4265240430831909,
+ "learning_rate": 0.0006,
+ "loss": 4.814333438873291,
+ "step": 505
+ },
+ {
+ "epoch": 7.0279598077763215,
+ "grad_norm": 0.5126975774765015,
+ "learning_rate": 0.0006,
+ "loss": 4.852343559265137,
+ "step": 506
+ },
+ {
+ "epoch": 7.041939711664482,
+ "grad_norm": 0.43080806732177734,
+ "learning_rate": 0.0006,
+ "loss": 4.843439102172852,
+ "step": 507
+ },
+ {
+ "epoch": 7.055919615552643,
+ "grad_norm": 0.43170198798179626,
+ "learning_rate": 0.0006,
+ "loss": 4.845984935760498,
+ "step": 508
+ },
+ {
+ "epoch": 7.069899519440804,
+ "grad_norm": 0.5640552043914795,
+ "learning_rate": 0.0006,
+ "loss": 4.840991973876953,
+ "step": 509
+ },
+ {
+ "epoch": 7.083879423328964,
+ "grad_norm": 0.540381133556366,
+ "learning_rate": 0.0006,
+ "loss": 4.801316738128662,
+ "step": 510
+ },
+ {
+ "epoch": 7.097859327217125,
+ "grad_norm": 0.5412097573280334,
+ "learning_rate": 0.0006,
+ "loss": 4.886598587036133,
+ "step": 511
+ },
+ {
+ "epoch": 7.111839231105286,
+ "grad_norm": 0.630648136138916,
+ "learning_rate": 0.0006,
+ "loss": 4.849774360656738,
+ "step": 512
+ },
+ {
+ "epoch": 7.1258191349934465,
+ "grad_norm": 0.569952130317688,
+ "learning_rate": 0.0006,
+ "loss": 4.870607376098633,
+ "step": 513
+ },
+ {
+ "epoch": 7.139799038881607,
+ "grad_norm": 0.42051541805267334,
+ "learning_rate": 0.0006,
+ "loss": 4.83833122253418,
+ "step": 514
+ },
+ {
+ "epoch": 7.153778942769769,
+ "grad_norm": 0.3930990397930145,
+ "learning_rate": 0.0006,
+ "loss": 4.853984355926514,
+ "step": 515
+ },
+ {
+ "epoch": 7.16775884665793,
+ "grad_norm": 0.512886106967926,
+ "learning_rate": 0.0006,
+ "loss": 4.815458297729492,
+ "step": 516
+ },
+ {
+ "epoch": 7.18173875054609,
+ "grad_norm": 0.42580172419548035,
+ "learning_rate": 0.0006,
+ "loss": 4.825312614440918,
+ "step": 517
+ },
+ {
+ "epoch": 7.195718654434251,
+ "grad_norm": 0.31628182530403137,
+ "learning_rate": 0.0006,
+ "loss": 4.806377410888672,
+ "step": 518
+ },
+ {
+ "epoch": 7.209698558322412,
+ "grad_norm": 0.3109956681728363,
+ "learning_rate": 0.0006,
+ "loss": 4.819339752197266,
+ "step": 519
+ },
+ {
+ "epoch": 7.2236784622105725,
+ "grad_norm": 0.2740071415901184,
+ "learning_rate": 0.0006,
+ "loss": 4.81319522857666,
+ "step": 520
+ },
+ {
+ "epoch": 7.237658366098733,
+ "grad_norm": 0.26441165804862976,
+ "learning_rate": 0.0006,
+ "loss": 4.8107380867004395,
+ "step": 521
+ },
+ {
+ "epoch": 7.251638269986894,
+ "grad_norm": 0.2496110051870346,
+ "learning_rate": 0.0006,
+ "loss": 4.785193920135498,
+ "step": 522
+ },
+ {
+ "epoch": 7.265618173875055,
+ "grad_norm": 0.2565560042858124,
+ "learning_rate": 0.0006,
+ "loss": 4.802750587463379,
+ "step": 523
+ },
+ {
+ "epoch": 7.279598077763215,
+ "grad_norm": 0.2126980572938919,
+ "learning_rate": 0.0006,
+ "loss": 4.763580322265625,
+ "step": 524
+ },
+ {
+ "epoch": 7.293577981651376,
+ "grad_norm": 0.2169921100139618,
+ "learning_rate": 0.0006,
+ "loss": 4.756124973297119,
+ "step": 525
+ },
+ {
+ "epoch": 7.307557885539537,
+ "grad_norm": 0.2372167706489563,
+ "learning_rate": 0.0006,
+ "loss": 4.786888599395752,
+ "step": 526
+ },
+ {
+ "epoch": 7.321537789427698,
+ "grad_norm": 0.2124386429786682,
+ "learning_rate": 0.0006,
+ "loss": 4.777996063232422,
+ "step": 527
+ },
+ {
+ "epoch": 7.335517693315858,
+ "grad_norm": 0.18585442006587982,
+ "learning_rate": 0.0006,
+ "loss": 4.770537853240967,
+ "step": 528
+ },
+ {
+ "epoch": 7.349497597204019,
+ "grad_norm": 0.20515340566635132,
+ "learning_rate": 0.0006,
+ "loss": 4.769230842590332,
+ "step": 529
+ },
+ {
+ "epoch": 7.36347750109218,
+ "grad_norm": 0.19906704127788544,
+ "learning_rate": 0.0006,
+ "loss": 4.752581596374512,
+ "step": 530
+ },
+ {
+ "epoch": 7.3774574049803405,
+ "grad_norm": 0.2030428946018219,
+ "learning_rate": 0.0006,
+ "loss": 4.7353715896606445,
+ "step": 531
+ },
+ {
+ "epoch": 7.391437308868501,
+ "grad_norm": 0.17820630967617035,
+ "learning_rate": 0.0006,
+ "loss": 4.742705345153809,
+ "step": 532
+ },
+ {
+ "epoch": 7.405417212756662,
+ "grad_norm": 0.17642682790756226,
+ "learning_rate": 0.0006,
+ "loss": 4.752669334411621,
+ "step": 533
+ },
+ {
+ "epoch": 7.419397116644823,
+ "grad_norm": 0.18088409304618835,
+ "learning_rate": 0.0006,
+ "loss": 4.734611511230469,
+ "step": 534
+ },
+ {
+ "epoch": 7.433377020532983,
+ "grad_norm": 0.20897020399570465,
+ "learning_rate": 0.0006,
+ "loss": 4.756442070007324,
+ "step": 535
+ },
+ {
+ "epoch": 7.447356924421145,
+ "grad_norm": 0.23166777193546295,
+ "learning_rate": 0.0006,
+ "loss": 4.712922096252441,
+ "step": 536
+ },
+ {
+ "epoch": 7.461336828309306,
+ "grad_norm": 0.2205347716808319,
+ "learning_rate": 0.0006,
+ "loss": 4.75001335144043,
+ "step": 537
+ },
+ {
+ "epoch": 7.4753167321974665,
+ "grad_norm": 0.23868022859096527,
+ "learning_rate": 0.0006,
+ "loss": 4.726134300231934,
+ "step": 538
+ },
+ {
+ "epoch": 7.489296636085627,
+ "grad_norm": 0.2861441373825073,
+ "learning_rate": 0.0006,
+ "loss": 4.754112243652344,
+ "step": 539
+ },
+ {
+ "epoch": 7.503276539973788,
+ "grad_norm": 0.28980305790901184,
+ "learning_rate": 0.0006,
+ "loss": 4.716021537780762,
+ "step": 540
+ },
+ {
+ "epoch": 7.517256443861949,
+ "grad_norm": 0.2784835696220398,
+ "learning_rate": 0.0006,
+ "loss": 4.713929176330566,
+ "step": 541
+ },
+ {
+ "epoch": 7.531236347750109,
+ "grad_norm": 0.2962653934955597,
+ "learning_rate": 0.0006,
+ "loss": 4.711845397949219,
+ "step": 542
+ },
+ {
+ "epoch": 7.54521625163827,
+ "grad_norm": 0.3333161175251007,
+ "learning_rate": 0.0006,
+ "loss": 4.709834575653076,
+ "step": 543
+ },
+ {
+ "epoch": 7.559196155526431,
+ "grad_norm": 0.35304850339889526,
+ "learning_rate": 0.0006,
+ "loss": 4.732914924621582,
+ "step": 544
+ },
+ {
+ "epoch": 7.573176059414592,
+ "grad_norm": 0.4165869355201721,
+ "learning_rate": 0.0006,
+ "loss": 4.716190338134766,
+ "step": 545
+ },
+ {
+ "epoch": 7.587155963302752,
+ "grad_norm": 0.4878059923648834,
+ "learning_rate": 0.0006,
+ "loss": 4.723773002624512,
+ "step": 546
+ },
+ {
+ "epoch": 7.601135867190913,
+ "grad_norm": 0.36643707752227783,
+ "learning_rate": 0.0006,
+ "loss": 4.721458911895752,
+ "step": 547
+ },
+ {
+ "epoch": 7.615115771079074,
+ "grad_norm": 0.4046908915042877,
+ "learning_rate": 0.0006,
+ "loss": 4.715397834777832,
+ "step": 548
+ },
+ {
+ "epoch": 7.6290956749672345,
+ "grad_norm": 0.44426342844963074,
+ "learning_rate": 0.0006,
+ "loss": 4.737357139587402,
+ "step": 549
+ },
+ {
+ "epoch": 7.643075578855395,
+ "grad_norm": 0.4181079864501953,
+ "learning_rate": 0.0006,
+ "loss": 4.731383800506592,
+ "step": 550
+ },
+ {
+ "epoch": 7.657055482743556,
+ "grad_norm": 0.3486088216304779,
+ "learning_rate": 0.0006,
+ "loss": 4.728029727935791,
+ "step": 551
+ },
+ {
+ "epoch": 7.671035386631717,
+ "grad_norm": 0.37150970101356506,
+ "learning_rate": 0.0006,
+ "loss": 4.7083210945129395,
+ "step": 552
+ },
+ {
+ "epoch": 7.685015290519877,
+ "grad_norm": 0.43324410915374756,
+ "learning_rate": 0.0006,
+ "loss": 4.728720664978027,
+ "step": 553
+ },
+ {
+ "epoch": 7.698995194408038,
+ "grad_norm": 0.5026620626449585,
+ "learning_rate": 0.0006,
+ "loss": 4.698156356811523,
+ "step": 554
+ },
+ {
+ "epoch": 7.712975098296199,
+ "grad_norm": 0.4873499274253845,
+ "learning_rate": 0.0006,
+ "loss": 4.7169952392578125,
+ "step": 555
+ },
+ {
+ "epoch": 7.72695500218436,
+ "grad_norm": 0.4285493791103363,
+ "learning_rate": 0.0006,
+ "loss": 4.6877241134643555,
+ "step": 556
+ },
+ {
+ "epoch": 7.740934906072521,
+ "grad_norm": 0.5179854035377502,
+ "learning_rate": 0.0006,
+ "loss": 4.704267501831055,
+ "step": 557
+ },
+ {
+ "epoch": 7.754914809960681,
+ "grad_norm": 0.4642147421836853,
+ "learning_rate": 0.0006,
+ "loss": 4.695004463195801,
+ "step": 558
+ },
+ {
+ "epoch": 7.768894713848843,
+ "grad_norm": 0.47149503231048584,
+ "learning_rate": 0.0006,
+ "loss": 4.694338798522949,
+ "step": 559
+ },
+ {
+ "epoch": 7.782874617737003,
+ "grad_norm": 0.5422149300575256,
+ "learning_rate": 0.0006,
+ "loss": 4.749478340148926,
+ "step": 560
+ },
+ {
+ "epoch": 7.796854521625164,
+ "grad_norm": 0.4360728859901428,
+ "learning_rate": 0.0006,
+ "loss": 4.685191631317139,
+ "step": 561
+ },
+ {
+ "epoch": 7.810834425513325,
+ "grad_norm": 0.4243801534175873,
+ "learning_rate": 0.0006,
+ "loss": 4.69228458404541,
+ "step": 562
+ },
+ {
+ "epoch": 7.824814329401486,
+ "grad_norm": 0.40380290150642395,
+ "learning_rate": 0.0006,
+ "loss": 4.690923690795898,
+ "step": 563
+ },
+ {
+ "epoch": 7.838794233289646,
+ "grad_norm": 0.4352976381778717,
+ "learning_rate": 0.0006,
+ "loss": 4.720489978790283,
+ "step": 564
+ },
+ {
+ "epoch": 7.852774137177807,
+ "grad_norm": 0.44634920358657837,
+ "learning_rate": 0.0006,
+ "loss": 4.683789253234863,
+ "step": 565
+ },
+ {
+ "epoch": 7.866754041065968,
+ "grad_norm": 0.3818186819553375,
+ "learning_rate": 0.0006,
+ "loss": 4.696887016296387,
+ "step": 566
+ },
+ {
+ "epoch": 7.8807339449541285,
+ "grad_norm": 0.35270464420318604,
+ "learning_rate": 0.0006,
+ "loss": 4.715676307678223,
+ "step": 567
+ },
+ {
+ "epoch": 7.894713848842289,
+ "grad_norm": 0.249756321310997,
+ "learning_rate": 0.0006,
+ "loss": 4.672721862792969,
+ "step": 568
+ },
+ {
+ "epoch": 7.90869375273045,
+ "grad_norm": 0.25097888708114624,
+ "learning_rate": 0.0006,
+ "loss": 4.663518905639648,
+ "step": 569
+ },
+ {
+ "epoch": 7.922673656618611,
+ "grad_norm": 0.26563209295272827,
+ "learning_rate": 0.0006,
+ "loss": 4.675405025482178,
+ "step": 570
+ },
+ {
+ "epoch": 7.936653560506771,
+ "grad_norm": 0.26451292634010315,
+ "learning_rate": 0.0006,
+ "loss": 4.651235103607178,
+ "step": 571
+ },
+ {
+ "epoch": 7.950633464394932,
+ "grad_norm": 0.24185842275619507,
+ "learning_rate": 0.0006,
+ "loss": 4.671639919281006,
+ "step": 572
+ },
+ {
+ "epoch": 7.964613368283093,
+ "grad_norm": 0.21506108343601227,
+ "learning_rate": 0.0006,
+ "loss": 4.665352821350098,
+ "step": 573
+ },
+ {
+ "epoch": 7.978593272171254,
+ "grad_norm": 0.24365705251693726,
+ "learning_rate": 0.0006,
+ "loss": 4.663162708282471,
+ "step": 574
+ },
+ {
+ "epoch": 7.992573176059414,
+ "grad_norm": 0.24251042306423187,
+ "learning_rate": 0.0006,
+ "loss": 4.666633605957031,
+ "step": 575
+ },
+ {
+ "epoch": 8.0,
+ "grad_norm": 0.24187657237052917,
+ "learning_rate": 0.0006,
+ "loss": 4.63957405090332,
+ "step": 576
+ },
+ {
+ "epoch": 8.0,
+ "eval_loss": 4.923156261444092,
+ "eval_runtime": 44.1587,
+ "eval_samples_per_second": 55.301,
+ "eval_steps_per_second": 3.465,
+ "step": 576
+ },
+ {
+ "epoch": 8.013979903888162,
+ "grad_norm": 0.21323645114898682,
+ "learning_rate": 0.0006,
+ "loss": 4.636347770690918,
+ "step": 577
+ },
+ {
+ "epoch": 8.027959807776321,
+ "grad_norm": 0.2325759083032608,
+ "learning_rate": 0.0006,
+ "loss": 4.60684871673584,
+ "step": 578
+ },
+ {
+ "epoch": 8.041939711664483,
+ "grad_norm": 0.26741257309913635,
+ "learning_rate": 0.0006,
+ "loss": 4.647780418395996,
+ "step": 579
+ },
+ {
+ "epoch": 8.055919615552643,
+ "grad_norm": 0.285720556974411,
+ "learning_rate": 0.0006,
+ "loss": 4.629637718200684,
+ "step": 580
+ },
+ {
+ "epoch": 8.069899519440805,
+ "grad_norm": 0.2453618347644806,
+ "learning_rate": 0.0006,
+ "loss": 4.62420654296875,
+ "step": 581
+ },
+ {
+ "epoch": 8.083879423328964,
+ "grad_norm": 0.19662636518478394,
+ "learning_rate": 0.0006,
+ "loss": 4.593767166137695,
+ "step": 582
+ },
+ {
+ "epoch": 8.097859327217126,
+ "grad_norm": 0.22731931507587433,
+ "learning_rate": 0.0006,
+ "loss": 4.627089023590088,
+ "step": 583
+ },
+ {
+ "epoch": 8.111839231105286,
+ "grad_norm": 0.24452590942382812,
+ "learning_rate": 0.0006,
+ "loss": 4.613677024841309,
+ "step": 584
+ },
+ {
+ "epoch": 8.125819134993447,
+ "grad_norm": 0.2952791154384613,
+ "learning_rate": 0.0006,
+ "loss": 4.604985237121582,
+ "step": 585
+ },
+ {
+ "epoch": 8.139799038881607,
+ "grad_norm": 0.3184696137905121,
+ "learning_rate": 0.0006,
+ "loss": 4.589205741882324,
+ "step": 586
+ },
+ {
+ "epoch": 8.153778942769769,
+ "grad_norm": 0.2948093116283417,
+ "learning_rate": 0.0006,
+ "loss": 4.605442047119141,
+ "step": 587
+ },
+ {
+ "epoch": 8.167758846657929,
+ "grad_norm": 0.2450508326292038,
+ "learning_rate": 0.0006,
+ "loss": 4.615349292755127,
+ "step": 588
+ },
+ {
+ "epoch": 8.18173875054609,
+ "grad_norm": 0.25664836168289185,
+ "learning_rate": 0.0006,
+ "loss": 4.592251777648926,
+ "step": 589
+ },
+ {
+ "epoch": 8.19571865443425,
+ "grad_norm": 0.24479512870311737,
+ "learning_rate": 0.0006,
+ "loss": 4.6145920753479,
+ "step": 590
+ },
+ {
+ "epoch": 8.209698558322412,
+ "grad_norm": 0.24395205080509186,
+ "learning_rate": 0.0006,
+ "loss": 4.600954055786133,
+ "step": 591
+ },
+ {
+ "epoch": 8.223678462210572,
+ "grad_norm": 0.21804189682006836,
+ "learning_rate": 0.0006,
+ "loss": 4.607785224914551,
+ "step": 592
+ },
+ {
+ "epoch": 8.237658366098733,
+ "grad_norm": 0.20951785147190094,
+ "learning_rate": 0.0006,
+ "loss": 4.58140754699707,
+ "step": 593
+ },
+ {
+ "epoch": 8.251638269986893,
+ "grad_norm": 0.20415149629116058,
+ "learning_rate": 0.0006,
+ "loss": 4.593405723571777,
+ "step": 594
+ },
+ {
+ "epoch": 8.265618173875055,
+ "grad_norm": 0.19210249185562134,
+ "learning_rate": 0.0006,
+ "loss": 4.603294372558594,
+ "step": 595
+ },
+ {
+ "epoch": 8.279598077763215,
+ "grad_norm": 0.20719751715660095,
+ "learning_rate": 0.0006,
+ "loss": 4.55255651473999,
+ "step": 596
+ },
+ {
+ "epoch": 8.293577981651376,
+ "grad_norm": 0.20101022720336914,
+ "learning_rate": 0.0006,
+ "loss": 4.5928192138671875,
+ "step": 597
+ },
+ {
+ "epoch": 8.307557885539538,
+ "grad_norm": 0.19254222512245178,
+ "learning_rate": 0.0006,
+ "loss": 4.590397834777832,
+ "step": 598
+ },
+ {
+ "epoch": 8.321537789427698,
+ "grad_norm": 0.23234105110168457,
+ "learning_rate": 0.0006,
+ "loss": 4.5987677574157715,
+ "step": 599
+ },
+ {
+ "epoch": 8.33551769331586,
+ "grad_norm": 0.2537451982498169,
+ "learning_rate": 0.0006,
+ "loss": 4.543115615844727,
+ "step": 600
+ },
+ {
+ "epoch": 8.349497597204019,
+ "grad_norm": 0.29171040654182434,
+ "learning_rate": 0.0006,
+ "loss": 4.597387313842773,
+ "step": 601
+ },
+ {
+ "epoch": 8.36347750109218,
+ "grad_norm": 0.3035930097103119,
+ "learning_rate": 0.0006,
+ "loss": 4.566247463226318,
+ "step": 602
+ },
+ {
+ "epoch": 8.37745740498034,
+ "grad_norm": 0.2826756238937378,
+ "learning_rate": 0.0006,
+ "loss": 4.57047176361084,
+ "step": 603
+ },
+ {
+ "epoch": 8.391437308868502,
+ "grad_norm": 0.2959657609462738,
+ "learning_rate": 0.0006,
+ "loss": 4.582820892333984,
+ "step": 604
+ },
+ {
+ "epoch": 8.405417212756662,
+ "grad_norm": 0.3180356025695801,
+ "learning_rate": 0.0006,
+ "loss": 4.5573272705078125,
+ "step": 605
+ },
+ {
+ "epoch": 8.419397116644824,
+ "grad_norm": 0.3617221713066101,
+ "learning_rate": 0.0006,
+ "loss": 4.593079090118408,
+ "step": 606
+ },
+ {
+ "epoch": 8.433377020532983,
+ "grad_norm": 0.35198062658309937,
+ "learning_rate": 0.0006,
+ "loss": 4.615298271179199,
+ "step": 607
+ },
+ {
+ "epoch": 8.447356924421145,
+ "grad_norm": 0.3944903314113617,
+ "learning_rate": 0.0006,
+ "loss": 4.561809539794922,
+ "step": 608
+ },
+ {
+ "epoch": 8.461336828309305,
+ "grad_norm": 0.4525868594646454,
+ "learning_rate": 0.0006,
+ "loss": 4.613105773925781,
+ "step": 609
+ },
+ {
+ "epoch": 8.475316732197467,
+ "grad_norm": 0.4915139079093933,
+ "learning_rate": 0.0006,
+ "loss": 4.566202163696289,
+ "step": 610
+ },
+ {
+ "epoch": 8.489296636085626,
+ "grad_norm": 0.49231988191604614,
+ "learning_rate": 0.0006,
+ "loss": 4.556222915649414,
+ "step": 611
+ },
+ {
+ "epoch": 8.503276539973788,
+ "grad_norm": 0.43036946654319763,
+ "learning_rate": 0.0006,
+ "loss": 4.55517578125,
+ "step": 612
+ },
+ {
+ "epoch": 8.517256443861948,
+ "grad_norm": 0.42405328154563904,
+ "learning_rate": 0.0006,
+ "loss": 4.574039936065674,
+ "step": 613
+ },
+ {
+ "epoch": 8.53123634775011,
+ "grad_norm": 0.3955961763858795,
+ "learning_rate": 0.0006,
+ "loss": 4.6082611083984375,
+ "step": 614
+ },
+ {
+ "epoch": 8.54521625163827,
+ "grad_norm": 0.4377101957798004,
+ "learning_rate": 0.0006,
+ "loss": 4.555740833282471,
+ "step": 615
+ },
+ {
+ "epoch": 8.55919615552643,
+ "grad_norm": 0.4601984918117523,
+ "learning_rate": 0.0006,
+ "loss": 4.553995132446289,
+ "step": 616
+ },
+ {
+ "epoch": 8.57317605941459,
+ "grad_norm": 0.42025700211524963,
+ "learning_rate": 0.0006,
+ "loss": 4.567340850830078,
+ "step": 617
+ },
+ {
+ "epoch": 8.587155963302752,
+ "grad_norm": 0.35569432377815247,
+ "learning_rate": 0.0006,
+ "loss": 4.570140361785889,
+ "step": 618
+ },
+ {
+ "epoch": 8.601135867190912,
+ "grad_norm": 0.37940406799316406,
+ "learning_rate": 0.0006,
+ "loss": 4.581291198730469,
+ "step": 619
+ },
+ {
+ "epoch": 8.615115771079074,
+ "grad_norm": 0.3658490777015686,
+ "learning_rate": 0.0006,
+ "loss": 4.55476188659668,
+ "step": 620
+ },
+ {
+ "epoch": 8.629095674967235,
+ "grad_norm": 0.2908247113227844,
+ "learning_rate": 0.0006,
+ "loss": 4.564087867736816,
+ "step": 621
+ },
+ {
+ "epoch": 8.643075578855395,
+ "grad_norm": 0.29961925745010376,
+ "learning_rate": 0.0006,
+ "loss": 4.556543350219727,
+ "step": 622
+ },
+ {
+ "epoch": 8.657055482743557,
+ "grad_norm": 0.3144846558570862,
+ "learning_rate": 0.0006,
+ "loss": 4.553670883178711,
+ "step": 623
+ },
+ {
+ "epoch": 8.671035386631717,
+ "grad_norm": 0.2845900356769562,
+ "learning_rate": 0.0006,
+ "loss": 4.567296981811523,
+ "step": 624
+ },
+ {
+ "epoch": 8.685015290519878,
+ "grad_norm": 0.253591388463974,
+ "learning_rate": 0.0006,
+ "loss": 4.554507255554199,
+ "step": 625
+ },
+ {
+ "epoch": 8.698995194408038,
+ "grad_norm": 0.2563088536262512,
+ "learning_rate": 0.0006,
+ "loss": 4.542218208312988,
+ "step": 626
+ },
+ {
+ "epoch": 8.7129750982962,
+ "grad_norm": 0.26058217883110046,
+ "learning_rate": 0.0006,
+ "loss": 4.535512447357178,
+ "step": 627
+ },
+ {
+ "epoch": 8.72695500218436,
+ "grad_norm": 0.20749829709529877,
+ "learning_rate": 0.0006,
+ "loss": 4.516959190368652,
+ "step": 628
+ },
+ {
+ "epoch": 8.740934906072521,
+ "grad_norm": 0.2034810334444046,
+ "learning_rate": 0.0006,
+ "loss": 4.55794095993042,
+ "step": 629
+ },
+ {
+ "epoch": 8.754914809960681,
+ "grad_norm": 0.18418121337890625,
+ "learning_rate": 0.0006,
+ "loss": 4.5421247482299805,
+ "step": 630
+ },
+ {
+ "epoch": 8.768894713848843,
+ "grad_norm": 0.20551933348178864,
+ "learning_rate": 0.0006,
+ "loss": 4.50805139541626,
+ "step": 631
+ },
+ {
+ "epoch": 8.782874617737003,
+ "grad_norm": 0.21615999937057495,
+ "learning_rate": 0.0006,
+ "loss": 4.520708084106445,
+ "step": 632
+ },
+ {
+ "epoch": 8.796854521625164,
+ "grad_norm": 0.24864810705184937,
+ "learning_rate": 0.0006,
+ "loss": 4.509330749511719,
+ "step": 633
+ },
+ {
+ "epoch": 8.810834425513324,
+ "grad_norm": 0.2573665380477905,
+ "learning_rate": 0.0006,
+ "loss": 4.531505584716797,
+ "step": 634
+ },
+ {
+ "epoch": 8.824814329401486,
+ "grad_norm": 0.22452878952026367,
+ "learning_rate": 0.0006,
+ "loss": 4.529216289520264,
+ "step": 635
+ },
+ {
+ "epoch": 8.838794233289645,
+ "grad_norm": 0.19727355241775513,
+ "learning_rate": 0.0006,
+ "loss": 4.519906520843506,
+ "step": 636
+ },
+ {
+ "epoch": 8.852774137177807,
+ "grad_norm": 0.19937913119792938,
+ "learning_rate": 0.0006,
+ "loss": 4.536892414093018,
+ "step": 637
+ },
+ {
+ "epoch": 8.866754041065967,
+ "grad_norm": 0.2070389986038208,
+ "learning_rate": 0.0006,
+ "loss": 4.51191520690918,
+ "step": 638
+ },
+ {
+ "epoch": 8.880733944954128,
+ "grad_norm": 0.2293873429298401,
+ "learning_rate": 0.0006,
+ "loss": 4.505377769470215,
+ "step": 639
+ },
+ {
+ "epoch": 8.89471384884229,
+ "grad_norm": 0.21285250782966614,
+ "learning_rate": 0.0006,
+ "loss": 4.5138959884643555,
+ "step": 640
+ },
+ {
+ "epoch": 8.90869375273045,
+ "grad_norm": 0.19487562775611877,
+ "learning_rate": 0.0006,
+ "loss": 4.506108283996582,
+ "step": 641
+ },
+ {
+ "epoch": 8.922673656618612,
+ "grad_norm": 0.21986965835094452,
+ "learning_rate": 0.0006,
+ "loss": 4.506397247314453,
+ "step": 642
+ },
+ {
+ "epoch": 8.936653560506771,
+ "grad_norm": 0.20763885974884033,
+ "learning_rate": 0.0006,
+ "loss": 4.508007049560547,
+ "step": 643
+ },
+ {
+ "epoch": 8.950633464394933,
+ "grad_norm": 0.22858479619026184,
+ "learning_rate": 0.0006,
+ "loss": 4.520846366882324,
+ "step": 644
+ },
+ {
+ "epoch": 8.964613368283093,
+ "grad_norm": 0.23923712968826294,
+ "learning_rate": 0.0006,
+ "loss": 4.535306930541992,
+ "step": 645
+ },
+ {
+ "epoch": 8.978593272171254,
+ "grad_norm": 0.23717579245567322,
+ "learning_rate": 0.0006,
+ "loss": 4.485929489135742,
+ "step": 646
+ },
+ {
+ "epoch": 8.992573176059414,
+ "grad_norm": 0.24033977091312408,
+ "learning_rate": 0.0006,
+ "loss": 4.508999824523926,
+ "step": 647
+ },
+ {
+ "epoch": 9.0,
+ "grad_norm": 0.22432062029838562,
+ "learning_rate": 0.0006,
+ "loss": 4.473136901855469,
+ "step": 648
+ },
+ {
+ "epoch": 9.0,
+ "eval_loss": 4.735903263092041,
+ "eval_runtime": 44.2163,
+ "eval_samples_per_second": 55.228,
+ "eval_steps_per_second": 3.46,
+ "step": 648
+ },
+ {
+ "epoch": 9.013979903888162,
+ "grad_norm": 0.22491489350795746,
+ "learning_rate": 0.0006,
+ "loss": 4.468614101409912,
+ "step": 649
+ },
+ {
+ "epoch": 9.027959807776321,
+ "grad_norm": 0.255759060382843,
+ "learning_rate": 0.0006,
+ "loss": 4.516196250915527,
+ "step": 650
+ },
+ {
+ "epoch": 9.041939711664483,
+ "grad_norm": 0.2591100335121155,
+ "learning_rate": 0.0006,
+ "loss": 4.478276252746582,
+ "step": 651
+ },
+ {
+ "epoch": 9.055919615552643,
+ "grad_norm": 0.30472296476364136,
+ "learning_rate": 0.0006,
+ "loss": 4.479726791381836,
+ "step": 652
+ },
+ {
+ "epoch": 9.069899519440805,
+ "grad_norm": 0.2840559780597687,
+ "learning_rate": 0.0006,
+ "loss": 4.4437384605407715,
+ "step": 653
+ },
+ {
+ "epoch": 9.083879423328964,
+ "grad_norm": 0.2695577144622803,
+ "learning_rate": 0.0006,
+ "loss": 4.476065635681152,
+ "step": 654
+ },
+ {
+ "epoch": 9.097859327217126,
+ "grad_norm": 0.27912381291389465,
+ "learning_rate": 0.0006,
+ "loss": 4.484747409820557,
+ "step": 655
+ },
+ {
+ "epoch": 9.111839231105286,
+ "grad_norm": 0.3091907501220703,
+ "learning_rate": 0.0006,
+ "loss": 4.449443817138672,
+ "step": 656
+ },
+ {
+ "epoch": 9.125819134993447,
+ "grad_norm": 0.30756646394729614,
+ "learning_rate": 0.0006,
+ "loss": 4.496490001678467,
+ "step": 657
+ },
+ {
+ "epoch": 9.139799038881607,
+ "grad_norm": 0.305698037147522,
+ "learning_rate": 0.0006,
+ "loss": 4.466765880584717,
+ "step": 658
+ },
+ {
+ "epoch": 9.153778942769769,
+ "grad_norm": 0.3031201660633087,
+ "learning_rate": 0.0006,
+ "loss": 4.462430953979492,
+ "step": 659
+ },
+ {
+ "epoch": 9.167758846657929,
+ "grad_norm": 0.32725608348846436,
+ "learning_rate": 0.0006,
+ "loss": 4.479879379272461,
+ "step": 660
+ },
+ {
+ "epoch": 9.18173875054609,
+ "grad_norm": 0.31773585081100464,
+ "learning_rate": 0.0006,
+ "loss": 4.473912239074707,
+ "step": 661
+ },
+ {
+ "epoch": 9.19571865443425,
+ "grad_norm": 0.30025365948677063,
+ "learning_rate": 0.0006,
+ "loss": 4.476703643798828,
+ "step": 662
+ },
+ {
+ "epoch": 9.209698558322412,
+ "grad_norm": 0.3177371025085449,
+ "learning_rate": 0.0006,
+ "loss": 4.439765930175781,
+ "step": 663
+ },
+ {
+ "epoch": 9.223678462210572,
+ "grad_norm": 0.3060745894908905,
+ "learning_rate": 0.0006,
+ "loss": 4.487849235534668,
+ "step": 664
+ },
+ {
+ "epoch": 9.237658366098733,
+ "grad_norm": 0.33287373185157776,
+ "learning_rate": 0.0006,
+ "loss": 4.443496227264404,
+ "step": 665
+ },
+ {
+ "epoch": 9.251638269986893,
+ "grad_norm": 0.3758000433444977,
+ "learning_rate": 0.0006,
+ "loss": 4.478017330169678,
+ "step": 666
+ },
+ {
+ "epoch": 9.265618173875055,
+ "grad_norm": 0.32124510407447815,
+ "learning_rate": 0.0006,
+ "loss": 4.4092206954956055,
+ "step": 667
+ },
+ {
+ "epoch": 9.279598077763215,
+ "grad_norm": 0.2786794602870941,
+ "learning_rate": 0.0006,
+ "loss": 4.432734489440918,
+ "step": 668
+ },
+ {
+ "epoch": 9.293577981651376,
+ "grad_norm": 0.35042962431907654,
+ "learning_rate": 0.0006,
+ "loss": 4.462737083435059,
+ "step": 669
+ },
+ {
+ "epoch": 9.307557885539538,
+ "grad_norm": 0.4080469310283661,
+ "learning_rate": 0.0006,
+ "loss": 4.429462432861328,
+ "step": 670
+ },
+ {
+ "epoch": 9.321537789427698,
+ "grad_norm": 0.465158075094223,
+ "learning_rate": 0.0006,
+ "loss": 4.465776443481445,
+ "step": 671
+ },
+ {
+ "epoch": 9.33551769331586,
+ "grad_norm": 0.44833582639694214,
+ "learning_rate": 0.0006,
+ "loss": 4.454195976257324,
+ "step": 672
+ },
+ {
+ "epoch": 9.349497597204019,
+ "grad_norm": 0.451052188873291,
+ "learning_rate": 0.0006,
+ "loss": 4.456139087677002,
+ "step": 673
+ },
+ {
+ "epoch": 9.36347750109218,
+ "grad_norm": 0.3759656250476837,
+ "learning_rate": 0.0006,
+ "loss": 4.461119651794434,
+ "step": 674
+ },
+ {
+ "epoch": 9.37745740498034,
+ "grad_norm": 0.514560341835022,
+ "learning_rate": 0.0006,
+ "loss": 4.49595832824707,
+ "step": 675
+ },
+ {
+ "epoch": 9.391437308868502,
+ "grad_norm": 0.5650647282600403,
+ "learning_rate": 0.0006,
+ "loss": 4.461362838745117,
+ "step": 676
+ },
+ {
+ "epoch": 9.405417212756662,
+ "grad_norm": 0.4218835234642029,
+ "learning_rate": 0.0006,
+ "loss": 4.469146728515625,
+ "step": 677
+ },
+ {
+ "epoch": 9.419397116644824,
+ "grad_norm": 0.4169512689113617,
+ "learning_rate": 0.0006,
+ "loss": 4.470132827758789,
+ "step": 678
+ },
+ {
+ "epoch": 9.433377020532983,
+ "grad_norm": 0.3772219717502594,
+ "learning_rate": 0.0006,
+ "loss": 4.4742608070373535,
+ "step": 679
+ },
+ {
+ "epoch": 9.447356924421145,
+ "grad_norm": 0.35755908489227295,
+ "learning_rate": 0.0006,
+ "loss": 4.461928367614746,
+ "step": 680
+ },
+ {
+ "epoch": 9.461336828309305,
+ "grad_norm": 0.3141227662563324,
+ "learning_rate": 0.0006,
+ "loss": 4.491983413696289,
+ "step": 681
+ },
+ {
+ "epoch": 9.475316732197467,
+ "grad_norm": 0.282461017370224,
+ "learning_rate": 0.0006,
+ "loss": 4.460200309753418,
+ "step": 682
+ },
+ {
+ "epoch": 9.489296636085626,
+ "grad_norm": 0.27174389362335205,
+ "learning_rate": 0.0006,
+ "loss": 4.416125297546387,
+ "step": 683
+ },
+ {
+ "epoch": 9.503276539973788,
+ "grad_norm": 0.24570637941360474,
+ "learning_rate": 0.0006,
+ "loss": 4.4451093673706055,
+ "step": 684
+ },
+ {
+ "epoch": 9.517256443861948,
+ "grad_norm": 0.2741486132144928,
+ "learning_rate": 0.0006,
+ "loss": 4.453263282775879,
+ "step": 685
+ },
+ {
+ "epoch": 9.53123634775011,
+ "grad_norm": 0.24753718078136444,
+ "learning_rate": 0.0006,
+ "loss": 4.483033180236816,
+ "step": 686
+ },
+ {
+ "epoch": 9.54521625163827,
+ "grad_norm": 0.24288412928581238,
+ "learning_rate": 0.0006,
+ "loss": 4.452961444854736,
+ "step": 687
+ },
+ {
+ "epoch": 9.55919615552643,
+ "grad_norm": 0.21554753184318542,
+ "learning_rate": 0.0006,
+ "loss": 4.476005554199219,
+ "step": 688
+ },
+ {
+ "epoch": 9.57317605941459,
+ "grad_norm": 0.22775942087173462,
+ "learning_rate": 0.0006,
+ "loss": 4.4479193687438965,
+ "step": 689
+ },
+ {
+ "epoch": 9.587155963302752,
+ "grad_norm": 0.2610701024532318,
+ "learning_rate": 0.0006,
+ "loss": 4.474987506866455,
+ "step": 690
+ },
+ {
+ "epoch": 9.601135867190912,
+ "grad_norm": 0.2394690215587616,
+ "learning_rate": 0.0006,
+ "loss": 4.444857597351074,
+ "step": 691
+ },
+ {
+ "epoch": 9.615115771079074,
+ "grad_norm": 0.20868559181690216,
+ "learning_rate": 0.0006,
+ "loss": 4.4220709800720215,
+ "step": 692
+ },
+ {
+ "epoch": 9.629095674967235,
+ "grad_norm": 0.21869882941246033,
+ "learning_rate": 0.0006,
+ "loss": 4.451737403869629,
+ "step": 693
+ },
+ {
+ "epoch": 9.643075578855395,
+ "grad_norm": 0.1802823394536972,
+ "learning_rate": 0.0006,
+ "loss": 4.409085273742676,
+ "step": 694
+ },
+ {
+ "epoch": 9.657055482743557,
+ "grad_norm": 0.17046281695365906,
+ "learning_rate": 0.0006,
+ "loss": 4.424643516540527,
+ "step": 695
+ },
+ {
+ "epoch": 9.671035386631717,
+ "grad_norm": 0.19561922550201416,
+ "learning_rate": 0.0006,
+ "loss": 4.412302017211914,
+ "step": 696
+ },
+ {
+ "epoch": 9.685015290519878,
+ "grad_norm": 0.21928799152374268,
+ "learning_rate": 0.0006,
+ "loss": 4.427582263946533,
+ "step": 697
+ },
+ {
+ "epoch": 9.698995194408038,
+ "grad_norm": 0.244873046875,
+ "learning_rate": 0.0006,
+ "loss": 4.431827545166016,
+ "step": 698
+ },
+ {
+ "epoch": 9.7129750982962,
+ "grad_norm": 0.2799488604068756,
+ "learning_rate": 0.0006,
+ "loss": 4.407991409301758,
+ "step": 699
+ },
+ {
+ "epoch": 9.72695500218436,
+ "grad_norm": 0.2699538767337799,
+ "learning_rate": 0.0006,
+ "loss": 4.412313461303711,
+ "step": 700
+ },
+ {
+ "epoch": 9.740934906072521,
+ "grad_norm": 0.22293835878372192,
+ "learning_rate": 0.0006,
+ "loss": 4.423369884490967,
+ "step": 701
+ },
+ {
+ "epoch": 9.754914809960681,
+ "grad_norm": 0.21554361283779144,
+ "learning_rate": 0.0006,
+ "loss": 4.42026948928833,
+ "step": 702
+ },
+ {
+ "epoch": 9.768894713848843,
+ "grad_norm": 0.22135840356349945,
+ "learning_rate": 0.0006,
+ "loss": 4.400010108947754,
+ "step": 703
+ },
+ {
+ "epoch": 9.782874617737003,
+ "grad_norm": 0.2169952541589737,
+ "learning_rate": 0.0006,
+ "loss": 4.394582271575928,
+ "step": 704
+ },
+ {
+ "epoch": 9.796854521625164,
+ "grad_norm": 0.18913042545318604,
+ "learning_rate": 0.0006,
+ "loss": 4.395880699157715,
+ "step": 705
+ },
+ {
+ "epoch": 9.810834425513324,
+ "grad_norm": 0.191524475812912,
+ "learning_rate": 0.0006,
+ "loss": 4.378962516784668,
+ "step": 706
+ },
+ {
+ "epoch": 9.824814329401486,
+ "grad_norm": 0.20057640969753265,
+ "learning_rate": 0.0006,
+ "loss": 4.431066513061523,
+ "step": 707
+ },
+ {
+ "epoch": 9.838794233289645,
+ "grad_norm": 0.21670377254486084,
+ "learning_rate": 0.0006,
+ "loss": 4.364682197570801,
+ "step": 708
+ },
+ {
+ "epoch": 9.852774137177807,
+ "grad_norm": 0.21653099358081818,
+ "learning_rate": 0.0006,
+ "loss": 4.4050445556640625,
+ "step": 709
+ },
+ {
+ "epoch": 9.866754041065967,
+ "grad_norm": 0.2217673808336258,
+ "learning_rate": 0.0006,
+ "loss": 4.423664093017578,
+ "step": 710
+ },
+ {
+ "epoch": 9.880733944954128,
+ "grad_norm": 0.251078337430954,
+ "learning_rate": 0.0006,
+ "loss": 4.405768394470215,
+ "step": 711
+ },
+ {
+ "epoch": 9.89471384884229,
+ "grad_norm": 0.28962627053260803,
+ "learning_rate": 0.0006,
+ "loss": 4.421207427978516,
+ "step": 712
+ },
+ {
+ "epoch": 9.90869375273045,
+ "grad_norm": 0.3478074371814728,
+ "learning_rate": 0.0006,
+ "loss": 4.414942741394043,
+ "step": 713
+ },
+ {
+ "epoch": 9.922673656618612,
+ "grad_norm": 0.40396368503570557,
+ "learning_rate": 0.0006,
+ "loss": 4.415163993835449,
+ "step": 714
+ },
+ {
+ "epoch": 9.936653560506771,
+ "grad_norm": 0.3689858019351959,
+ "learning_rate": 0.0006,
+ "loss": 4.381345272064209,
+ "step": 715
+ },
+ {
+ "epoch": 9.950633464394933,
+ "grad_norm": 0.344868004322052,
+ "learning_rate": 0.0006,
+ "loss": 4.433088302612305,
+ "step": 716
+ },
+ {
+ "epoch": 9.964613368283093,
+ "grad_norm": 0.37976378202438354,
+ "learning_rate": 0.0006,
+ "loss": 4.431371212005615,
+ "step": 717
+ },
+ {
+ "epoch": 9.978593272171254,
+ "grad_norm": 0.4354130029678345,
+ "learning_rate": 0.0006,
+ "loss": 4.434148788452148,
+ "step": 718
+ },
+ {
+ "epoch": 9.992573176059414,
+ "grad_norm": 0.35859373211860657,
+ "learning_rate": 0.0006,
+ "loss": 4.428055763244629,
+ "step": 719
+ },
+ {
+ "epoch": 10.0,
+ "grad_norm": 0.3365023732185364,
+ "learning_rate": 0.0006,
+ "loss": 4.3888654708862305,
+ "step": 720
+ },
+ {
+ "epoch": 10.0,
+ "eval_loss": 4.638620853424072,
+ "eval_runtime": 44.3054,
+ "eval_samples_per_second": 55.117,
+ "eval_steps_per_second": 3.453,
+ "step": 720
+ },
+ {
+ "epoch": 10.013979903888162,
+ "grad_norm": 0.3267960250377655,
+ "learning_rate": 0.0006,
+ "loss": 4.386068344116211,
+ "step": 721
+ },
+ {
+ "epoch": 10.027959807776321,
+ "grad_norm": 0.33440953493118286,
+ "learning_rate": 0.0006,
+ "loss": 4.397515296936035,
+ "step": 722
+ },
+ {
+ "epoch": 10.041939711664483,
+ "grad_norm": 0.30047518014907837,
+ "learning_rate": 0.0006,
+ "loss": 4.398358345031738,
+ "step": 723
+ },
+ {
+ "epoch": 10.055919615552643,
+ "grad_norm": 0.2912217378616333,
+ "learning_rate": 0.0006,
+ "loss": 4.341166973114014,
+ "step": 724
+ },
+ {
+ "epoch": 10.069899519440805,
+ "grad_norm": 0.3199564218521118,
+ "learning_rate": 0.0006,
+ "loss": 4.388717174530029,
+ "step": 725
+ },
+ {
+ "epoch": 10.083879423328964,
+ "grad_norm": 0.2765582799911499,
+ "learning_rate": 0.0006,
+ "loss": 4.392992973327637,
+ "step": 726
+ },
+ {
+ "epoch": 10.097859327217126,
+ "grad_norm": 0.27138450741767883,
+ "learning_rate": 0.0006,
+ "loss": 4.382307529449463,
+ "step": 727
+ },
+ {
+ "epoch": 10.111839231105286,
+ "grad_norm": 0.29230645298957825,
+ "learning_rate": 0.0006,
+ "loss": 4.357486724853516,
+ "step": 728
+ },
+ {
+ "epoch": 10.125819134993447,
+ "grad_norm": 0.3127598464488983,
+ "learning_rate": 0.0006,
+ "loss": 4.39072322845459,
+ "step": 729
+ },
+ {
+ "epoch": 10.139799038881607,
+ "grad_norm": 0.3230913281440735,
+ "learning_rate": 0.0006,
+ "loss": 4.35037899017334,
+ "step": 730
+ },
+ {
+ "epoch": 10.153778942769769,
+ "grad_norm": 0.333675354719162,
+ "learning_rate": 0.0006,
+ "loss": 4.378030776977539,
+ "step": 731
+ },
+ {
+ "epoch": 10.167758846657929,
+ "grad_norm": 0.30325770378112793,
+ "learning_rate": 0.0006,
+ "loss": 4.372736930847168,
+ "step": 732
+ },
+ {
+ "epoch": 10.18173875054609,
+ "grad_norm": 0.2888163924217224,
+ "learning_rate": 0.0006,
+ "loss": 4.397604942321777,
+ "step": 733
+ },
+ {
+ "epoch": 10.19571865443425,
+ "grad_norm": 0.3378832936286926,
+ "learning_rate": 0.0006,
+ "loss": 4.395705223083496,
+ "step": 734
+ },
+ {
+ "epoch": 10.209698558322412,
+ "grad_norm": 0.30980268120765686,
+ "learning_rate": 0.0006,
+ "loss": 4.3861212730407715,
+ "step": 735
+ },
+ {
+ "epoch": 10.223678462210572,
+ "grad_norm": 0.2965783178806305,
+ "learning_rate": 0.0006,
+ "loss": 4.394898414611816,
+ "step": 736
+ },
+ {
+ "epoch": 10.237658366098733,
+ "grad_norm": 0.2818217873573303,
+ "learning_rate": 0.0006,
+ "loss": 4.36171817779541,
+ "step": 737
+ },
+ {
+ "epoch": 10.251638269986893,
+ "grad_norm": 0.2418123185634613,
+ "learning_rate": 0.0006,
+ "loss": 4.370945930480957,
+ "step": 738
+ },
+ {
+ "epoch": 10.265618173875055,
+ "grad_norm": 0.22372810542583466,
+ "learning_rate": 0.0006,
+ "loss": 4.354825973510742,
+ "step": 739
+ },
+ {
+ "epoch": 10.279598077763215,
+ "grad_norm": 0.238066166639328,
+ "learning_rate": 0.0006,
+ "loss": 4.376237392425537,
+ "step": 740
+ },
+ {
+ "epoch": 10.293577981651376,
+ "grad_norm": 0.22352449595928192,
+ "learning_rate": 0.0006,
+ "loss": 4.317084312438965,
+ "step": 741
+ },
+ {
+ "epoch": 10.307557885539538,
+ "grad_norm": 0.21685205399990082,
+ "learning_rate": 0.0006,
+ "loss": 4.335271835327148,
+ "step": 742
+ },
+ {
+ "epoch": 10.321537789427698,
+ "grad_norm": 0.19584694504737854,
+ "learning_rate": 0.0006,
+ "loss": 4.357963562011719,
+ "step": 743
+ },
+ {
+ "epoch": 10.33551769331586,
+ "grad_norm": 0.20373336970806122,
+ "learning_rate": 0.0006,
+ "loss": 4.401963233947754,
+ "step": 744
+ },
+ {
+ "epoch": 10.349497597204019,
+ "grad_norm": 0.2247837632894516,
+ "learning_rate": 0.0006,
+ "loss": 4.357202529907227,
+ "step": 745
+ },
+ {
+ "epoch": 10.36347750109218,
+ "grad_norm": 0.2416863739490509,
+ "learning_rate": 0.0006,
+ "loss": 4.364739418029785,
+ "step": 746
+ },
+ {
+ "epoch": 10.37745740498034,
+ "grad_norm": 0.22281162440776825,
+ "learning_rate": 0.0006,
+ "loss": 4.351607799530029,
+ "step": 747
+ },
+ {
+ "epoch": 10.391437308868502,
+ "grad_norm": 0.20751096308231354,
+ "learning_rate": 0.0006,
+ "loss": 4.370017051696777,
+ "step": 748
+ },
+ {
+ "epoch": 10.405417212756662,
+ "grad_norm": 0.19178363680839539,
+ "learning_rate": 0.0006,
+ "loss": 4.360328674316406,
+ "step": 749
+ },
+ {
+ "epoch": 10.419397116644824,
+ "grad_norm": 0.20534078776836395,
+ "learning_rate": 0.0006,
+ "loss": 4.3735432624816895,
+ "step": 750
+ },
+ {
+ "epoch": 10.433377020532983,
+ "grad_norm": 0.20533937215805054,
+ "learning_rate": 0.0006,
+ "loss": 4.326902389526367,
+ "step": 751
+ },
+ {
+ "epoch": 10.447356924421145,
+ "grad_norm": 0.22057875990867615,
+ "learning_rate": 0.0006,
+ "loss": 4.360934257507324,
+ "step": 752
+ },
+ {
+ "epoch": 10.461336828309305,
+ "grad_norm": 0.25568997859954834,
+ "learning_rate": 0.0006,
+ "loss": 4.345063209533691,
+ "step": 753
+ },
+ {
+ "epoch": 10.475316732197467,
+ "grad_norm": 0.31471487879753113,
+ "learning_rate": 0.0006,
+ "loss": 4.324014186859131,
+ "step": 754
+ },
+ {
+ "epoch": 10.489296636085626,
+ "grad_norm": 0.2716822624206543,
+ "learning_rate": 0.0006,
+ "loss": 4.318459510803223,
+ "step": 755
+ },
+ {
+ "epoch": 10.503276539973788,
+ "grad_norm": 0.19552019238471985,
+ "learning_rate": 0.0006,
+ "loss": 4.3367509841918945,
+ "step": 756
+ },
+ {
+ "epoch": 10.517256443861948,
+ "grad_norm": 0.22822986543178558,
+ "learning_rate": 0.0006,
+ "loss": 4.328935623168945,
+ "step": 757
+ },
+ {
+ "epoch": 10.53123634775011,
+ "grad_norm": 0.22282928228378296,
+ "learning_rate": 0.0006,
+ "loss": 4.358272552490234,
+ "step": 758
+ },
+ {
+ "epoch": 10.54521625163827,
+ "grad_norm": 0.23303352296352386,
+ "learning_rate": 0.0006,
+ "loss": 4.336641311645508,
+ "step": 759
+ },
+ {
+ "epoch": 10.55919615552643,
+ "grad_norm": 0.29474690556526184,
+ "learning_rate": 0.0006,
+ "loss": 4.343188285827637,
+ "step": 760
+ },
+ {
+ "epoch": 10.57317605941459,
+ "grad_norm": 0.36269059777259827,
+ "learning_rate": 0.0006,
+ "loss": 4.313019752502441,
+ "step": 761
+ },
+ {
+ "epoch": 10.587155963302752,
+ "grad_norm": 0.3742978870868683,
+ "learning_rate": 0.0006,
+ "loss": 4.361410140991211,
+ "step": 762
+ },
+ {
+ "epoch": 10.601135867190912,
+ "grad_norm": 0.34412163496017456,
+ "learning_rate": 0.0006,
+ "loss": 4.321324825286865,
+ "step": 763
+ },
+ {
+ "epoch": 10.615115771079074,
+ "grad_norm": 0.3464587926864624,
+ "learning_rate": 0.0006,
+ "loss": 4.341907501220703,
+ "step": 764
+ },
+ {
+ "epoch": 10.629095674967235,
+ "grad_norm": 0.3318136930465698,
+ "learning_rate": 0.0006,
+ "loss": 4.329099655151367,
+ "step": 765
+ },
+ {
+ "epoch": 10.643075578855395,
+ "grad_norm": 0.31292903423309326,
+ "learning_rate": 0.0006,
+ "loss": 4.332015037536621,
+ "step": 766
+ },
+ {
+ "epoch": 10.657055482743557,
+ "grad_norm": 0.2904847264289856,
+ "learning_rate": 0.0006,
+ "loss": 4.341764450073242,
+ "step": 767
+ },
+ {
+ "epoch": 10.671035386631717,
+ "grad_norm": 0.3287692666053772,
+ "learning_rate": 0.0006,
+ "loss": 4.342329025268555,
+ "step": 768
+ },
+ {
+ "epoch": 10.685015290519878,
+ "grad_norm": 0.3115365207195282,
+ "learning_rate": 0.0006,
+ "loss": 4.3530073165893555,
+ "step": 769
+ },
+ {
+ "epoch": 10.698995194408038,
+ "grad_norm": 0.24133864045143127,
+ "learning_rate": 0.0006,
+ "loss": 4.321497917175293,
+ "step": 770
+ },
+ {
+ "epoch": 10.7129750982962,
+ "grad_norm": 0.24658630788326263,
+ "learning_rate": 0.0006,
+ "loss": 4.32669734954834,
+ "step": 771
+ },
+ {
+ "epoch": 10.72695500218436,
+ "grad_norm": 0.2342129647731781,
+ "learning_rate": 0.0006,
+ "loss": 4.345459461212158,
+ "step": 772
+ },
+ {
+ "epoch": 10.740934906072521,
+ "grad_norm": 0.23360829055309296,
+ "learning_rate": 0.0006,
+ "loss": 4.33249568939209,
+ "step": 773
+ },
+ {
+ "epoch": 10.754914809960681,
+ "grad_norm": 0.24314677715301514,
+ "learning_rate": 0.0006,
+ "loss": 4.30499792098999,
+ "step": 774
+ },
+ {
+ "epoch": 10.768894713848843,
+ "grad_norm": 0.22105181217193604,
+ "learning_rate": 0.0006,
+ "loss": 4.33706521987915,
+ "step": 775
+ },
+ {
+ "epoch": 10.782874617737003,
+ "grad_norm": 0.23307174444198608,
+ "learning_rate": 0.0006,
+ "loss": 4.320387840270996,
+ "step": 776
+ },
+ {
+ "epoch": 10.796854521625164,
+ "grad_norm": 0.24946169555187225,
+ "learning_rate": 0.0006,
+ "loss": 4.316012382507324,
+ "step": 777
+ },
+ {
+ "epoch": 10.810834425513324,
+ "grad_norm": 0.26023536920547485,
+ "learning_rate": 0.0006,
+ "loss": 4.315193176269531,
+ "step": 778
+ },
+ {
+ "epoch": 10.824814329401486,
+ "grad_norm": 0.2688547968864441,
+ "learning_rate": 0.0006,
+ "loss": 4.3243255615234375,
+ "step": 779
+ },
+ {
+ "epoch": 10.838794233289645,
+ "grad_norm": 0.28188297152519226,
+ "learning_rate": 0.0006,
+ "loss": 4.3202972412109375,
+ "step": 780
+ },
+ {
+ "epoch": 10.852774137177807,
+ "grad_norm": 0.2890053689479828,
+ "learning_rate": 0.0006,
+ "loss": 4.318799018859863,
+ "step": 781
+ },
+ {
+ "epoch": 10.866754041065967,
+ "grad_norm": 0.2914353013038635,
+ "learning_rate": 0.0006,
+ "loss": 4.314262390136719,
+ "step": 782
+ },
+ {
+ "epoch": 10.880733944954128,
+ "grad_norm": 0.3145572543144226,
+ "learning_rate": 0.0006,
+ "loss": 4.339262008666992,
+ "step": 783
+ },
+ {
+ "epoch": 10.89471384884229,
+ "grad_norm": 0.323062002658844,
+ "learning_rate": 0.0006,
+ "loss": 4.354856491088867,
+ "step": 784
+ },
+ {
+ "epoch": 10.90869375273045,
+ "grad_norm": 0.32741227746009827,
+ "learning_rate": 0.0006,
+ "loss": 4.325577735900879,
+ "step": 785
+ },
+ {
+ "epoch": 10.922673656618612,
+ "grad_norm": 0.2855733036994934,
+ "learning_rate": 0.0006,
+ "loss": 4.324419021606445,
+ "step": 786
+ },
+ {
+ "epoch": 10.936653560506771,
+ "grad_norm": 0.2969444990158081,
+ "learning_rate": 0.0006,
+ "loss": 4.320681095123291,
+ "step": 787
+ },
+ {
+ "epoch": 10.950633464394933,
+ "grad_norm": 0.28108111023902893,
+ "learning_rate": 0.0006,
+ "loss": 4.32673454284668,
+ "step": 788
+ },
+ {
+ "epoch": 10.964613368283093,
+ "grad_norm": 0.2537972629070282,
+ "learning_rate": 0.0006,
+ "loss": 4.3197021484375,
+ "step": 789
+ },
+ {
+ "epoch": 10.978593272171254,
+ "grad_norm": 0.2354544699192047,
+ "learning_rate": 0.0006,
+ "loss": 4.3354973793029785,
+ "step": 790
+ },
+ {
+ "epoch": 10.992573176059414,
+ "grad_norm": 0.26195117831230164,
+ "learning_rate": 0.0006,
+ "loss": 4.3172526359558105,
+ "step": 791
+ },
+ {
+ "epoch": 11.0,
+ "grad_norm": 0.27089616656303406,
+ "learning_rate": 0.0006,
+ "loss": 4.324293613433838,
+ "step": 792
+ },
+ {
+ "epoch": 11.0,
+ "eval_loss": 4.531813621520996,
+ "eval_runtime": 44.1656,
+ "eval_samples_per_second": 55.292,
+ "eval_steps_per_second": 3.464,
+ "step": 792
+ },
+ {
+ "epoch": 11.013979903888162,
+ "grad_norm": 0.2526339590549469,
+ "learning_rate": 0.0006,
+ "loss": 4.287600517272949,
+ "step": 793
+ },
+ {
+ "epoch": 11.027959807776321,
+ "grad_norm": 0.24318458139896393,
+ "learning_rate": 0.0006,
+ "loss": 4.268078327178955,
+ "step": 794
+ },
+ {
+ "epoch": 11.041939711664483,
+ "grad_norm": 0.2450830638408661,
+ "learning_rate": 0.0006,
+ "loss": 4.265467643737793,
+ "step": 795
+ },
+ {
+ "epoch": 11.055919615552643,
+ "grad_norm": 0.23963099718093872,
+ "learning_rate": 0.0006,
+ "loss": 4.267931938171387,
+ "step": 796
+ },
+ {
+ "epoch": 11.069899519440805,
+ "grad_norm": 0.2488657534122467,
+ "learning_rate": 0.0006,
+ "loss": 4.30262565612793,
+ "step": 797
+ },
+ {
+ "epoch": 11.083879423328964,
+ "grad_norm": 0.2319781631231308,
+ "learning_rate": 0.0006,
+ "loss": 4.28665828704834,
+ "step": 798
+ },
+ {
+ "epoch": 11.097859327217126,
+ "grad_norm": 0.2425263375043869,
+ "learning_rate": 0.0006,
+ "loss": 4.284830570220947,
+ "step": 799
+ },
+ {
+ "epoch": 11.111839231105286,
+ "grad_norm": 0.23096567392349243,
+ "learning_rate": 0.0006,
+ "loss": 4.2817206382751465,
+ "step": 800
+ },
+ {
+ "epoch": 11.125819134993447,
+ "grad_norm": 0.2846364676952362,
+ "learning_rate": 0.0006,
+ "loss": 4.276104927062988,
+ "step": 801
+ },
+ {
+ "epoch": 11.139799038881607,
+ "grad_norm": 0.2984965741634369,
+ "learning_rate": 0.0006,
+ "loss": 4.2909650802612305,
+ "step": 802
+ },
+ {
+ "epoch": 11.153778942769769,
+ "grad_norm": 0.2841213643550873,
+ "learning_rate": 0.0006,
+ "loss": 4.283358097076416,
+ "step": 803
+ },
+ {
+ "epoch": 11.167758846657929,
+ "grad_norm": 0.29192933440208435,
+ "learning_rate": 0.0006,
+ "loss": 4.267040729522705,
+ "step": 804
+ },
+ {
+ "epoch": 11.18173875054609,
+ "grad_norm": 0.3254184126853943,
+ "learning_rate": 0.0006,
+ "loss": 4.301564693450928,
+ "step": 805
+ },
+ {
+ "epoch": 11.19571865443425,
+ "grad_norm": 0.3347095847129822,
+ "learning_rate": 0.0006,
+ "loss": 4.271395683288574,
+ "step": 806
+ },
+ {
+ "epoch": 11.209698558322412,
+ "grad_norm": 0.25609350204467773,
+ "learning_rate": 0.0006,
+ "loss": 4.2963056564331055,
+ "step": 807
+ },
+ {
+ "epoch": 11.223678462210572,
+ "grad_norm": 0.29272061586380005,
+ "learning_rate": 0.0006,
+ "loss": 4.298416614532471,
+ "step": 808
+ },
+ {
+ "epoch": 11.237658366098733,
+ "grad_norm": 0.32179465889930725,
+ "learning_rate": 0.0006,
+ "loss": 4.294036865234375,
+ "step": 809
+ },
+ {
+ "epoch": 11.251638269986893,
+ "grad_norm": 0.3336549401283264,
+ "learning_rate": 0.0006,
+ "loss": 4.291993141174316,
+ "step": 810
+ },
+ {
+ "epoch": 11.265618173875055,
+ "grad_norm": 0.32273536920547485,
+ "learning_rate": 0.0006,
+ "loss": 4.311004638671875,
+ "step": 811
+ },
+ {
+ "epoch": 11.279598077763215,
+ "grad_norm": 0.3575087785720825,
+ "learning_rate": 0.0006,
+ "loss": 4.300217628479004,
+ "step": 812
+ },
+ {
+ "epoch": 11.293577981651376,
+ "grad_norm": 0.3332885205745697,
+ "learning_rate": 0.0006,
+ "loss": 4.278337478637695,
+ "step": 813
+ },
+ {
+ "epoch": 11.307557885539538,
+ "grad_norm": 0.31440407037734985,
+ "learning_rate": 0.0006,
+ "loss": 4.273826599121094,
+ "step": 814
+ },
+ {
+ "epoch": 11.321537789427698,
+ "grad_norm": 0.29822009801864624,
+ "learning_rate": 0.0006,
+ "loss": 4.284292221069336,
+ "step": 815
+ },
+ {
+ "epoch": 11.33551769331586,
+ "grad_norm": 0.30695512890815735,
+ "learning_rate": 0.0006,
+ "loss": 4.2831926345825195,
+ "step": 816
+ },
+ {
+ "epoch": 11.349497597204019,
+ "grad_norm": 0.30576950311660767,
+ "learning_rate": 0.0006,
+ "loss": 4.277133464813232,
+ "step": 817
+ },
+ {
+ "epoch": 11.36347750109218,
+ "grad_norm": 0.2859647870063782,
+ "learning_rate": 0.0006,
+ "loss": 4.3130106925964355,
+ "step": 818
+ },
+ {
+ "epoch": 11.37745740498034,
+ "grad_norm": 0.32417574524879456,
+ "learning_rate": 0.0006,
+ "loss": 4.310303211212158,
+ "step": 819
+ },
+ {
+ "epoch": 11.391437308868502,
+ "grad_norm": 0.3512463867664337,
+ "learning_rate": 0.0006,
+ "loss": 4.287015438079834,
+ "step": 820
+ },
+ {
+ "epoch": 11.405417212756662,
+ "grad_norm": 0.32578620314598083,
+ "learning_rate": 0.0006,
+ "loss": 4.2957940101623535,
+ "step": 821
+ },
+ {
+ "epoch": 11.419397116644824,
+ "grad_norm": 0.287949800491333,
+ "learning_rate": 0.0006,
+ "loss": 4.2881879806518555,
+ "step": 822
+ },
+ {
+ "epoch": 11.433377020532983,
+ "grad_norm": 0.28048595786094666,
+ "learning_rate": 0.0006,
+ "loss": 4.274960517883301,
+ "step": 823
+ },
+ {
+ "epoch": 11.447356924421145,
+ "grad_norm": 0.2541540563106537,
+ "learning_rate": 0.0006,
+ "loss": 4.261083602905273,
+ "step": 824
+ },
+ {
+ "epoch": 11.461336828309305,
+ "grad_norm": 0.2348361313343048,
+ "learning_rate": 0.0006,
+ "loss": 4.271036148071289,
+ "step": 825
+ },
+ {
+ "epoch": 11.475316732197467,
+ "grad_norm": 0.20913535356521606,
+ "learning_rate": 0.0006,
+ "loss": 4.307661056518555,
+ "step": 826
+ },
+ {
+ "epoch": 11.489296636085626,
+ "grad_norm": 0.22298868000507355,
+ "learning_rate": 0.0006,
+ "loss": 4.26902961730957,
+ "step": 827
+ },
+ {
+ "epoch": 11.503276539973788,
+ "grad_norm": 0.22752761840820312,
+ "learning_rate": 0.0006,
+ "loss": 4.305529594421387,
+ "step": 828
+ },
+ {
+ "epoch": 11.517256443861948,
+ "grad_norm": 0.2149917483329773,
+ "learning_rate": 0.0006,
+ "loss": 4.25134801864624,
+ "step": 829
+ },
+ {
+ "epoch": 11.53123634775011,
+ "grad_norm": 0.21085695922374725,
+ "learning_rate": 0.0006,
+ "loss": 4.266982078552246,
+ "step": 830
+ },
+ {
+ "epoch": 11.54521625163827,
+ "grad_norm": 0.21586747467517853,
+ "learning_rate": 0.0006,
+ "loss": 4.235255718231201,
+ "step": 831
+ },
+ {
+ "epoch": 11.55919615552643,
+ "grad_norm": 0.2520856559276581,
+ "learning_rate": 0.0006,
+ "loss": 4.283442497253418,
+ "step": 832
+ },
+ {
+ "epoch": 11.57317605941459,
+ "grad_norm": 0.2825471758842468,
+ "learning_rate": 0.0006,
+ "loss": 4.234672546386719,
+ "step": 833
+ },
+ {
+ "epoch": 11.587155963302752,
+ "grad_norm": 0.27437824010849,
+ "learning_rate": 0.0006,
+ "loss": 4.246068000793457,
+ "step": 834
+ },
+ {
+ "epoch": 11.601135867190912,
+ "grad_norm": 0.2596757411956787,
+ "learning_rate": 0.0006,
+ "loss": 4.278448104858398,
+ "step": 835
+ },
+ {
+ "epoch": 11.615115771079074,
+ "grad_norm": 0.25663474202156067,
+ "learning_rate": 0.0006,
+ "loss": 4.308779716491699,
+ "step": 836
+ },
+ {
+ "epoch": 11.629095674967235,
+ "grad_norm": 0.2546203136444092,
+ "learning_rate": 0.0006,
+ "loss": 4.261247634887695,
+ "step": 837
+ },
+ {
+ "epoch": 11.643075578855395,
+ "grad_norm": 0.24722838401794434,
+ "learning_rate": 0.0006,
+ "loss": 4.275888442993164,
+ "step": 838
+ },
+ {
+ "epoch": 11.657055482743557,
+ "grad_norm": 0.3022806644439697,
+ "learning_rate": 0.0006,
+ "loss": 4.2572407722473145,
+ "step": 839
+ },
+ {
+ "epoch": 11.671035386631717,
+ "grad_norm": 0.31170839071273804,
+ "learning_rate": 0.0006,
+ "loss": 4.26992654800415,
+ "step": 840
+ },
+ {
+ "epoch": 11.685015290519878,
+ "grad_norm": 0.31362825632095337,
+ "learning_rate": 0.0006,
+ "loss": 4.2354655265808105,
+ "step": 841
+ },
+ {
+ "epoch": 11.698995194408038,
+ "grad_norm": 0.28741633892059326,
+ "learning_rate": 0.0006,
+ "loss": 4.263496398925781,
+ "step": 842
+ },
+ {
+ "epoch": 11.7129750982962,
+ "grad_norm": 0.2492494285106659,
+ "learning_rate": 0.0006,
+ "loss": 4.26463508605957,
+ "step": 843
+ },
+ {
+ "epoch": 11.72695500218436,
+ "grad_norm": 0.24324660003185272,
+ "learning_rate": 0.0006,
+ "loss": 4.245428085327148,
+ "step": 844
+ },
+ {
+ "epoch": 11.740934906072521,
+ "grad_norm": 0.23591114580631256,
+ "learning_rate": 0.0006,
+ "loss": 4.249845504760742,
+ "step": 845
+ },
+ {
+ "epoch": 11.754914809960681,
+ "grad_norm": 0.2202281504869461,
+ "learning_rate": 0.0006,
+ "loss": 4.245006084442139,
+ "step": 846
+ },
+ {
+ "epoch": 11.768894713848843,
+ "grad_norm": 0.22117942571640015,
+ "learning_rate": 0.0006,
+ "loss": 4.27812385559082,
+ "step": 847
+ },
+ {
+ "epoch": 11.782874617737003,
+ "grad_norm": 0.26361414790153503,
+ "learning_rate": 0.0006,
+ "loss": 4.250475883483887,
+ "step": 848
+ },
+ {
+ "epoch": 11.796854521625164,
+ "grad_norm": 0.2820321321487427,
+ "learning_rate": 0.0006,
+ "loss": 4.265835762023926,
+ "step": 849
+ },
+ {
+ "epoch": 11.810834425513324,
+ "grad_norm": 0.2078961282968521,
+ "learning_rate": 0.0006,
+ "loss": 4.251298904418945,
+ "step": 850
+ },
+ {
+ "epoch": 11.824814329401486,
+ "grad_norm": 0.21548646688461304,
+ "learning_rate": 0.0006,
+ "loss": 4.288539886474609,
+ "step": 851
+ },
+ {
+ "epoch": 11.838794233289645,
+ "grad_norm": 0.22719401121139526,
+ "learning_rate": 0.0006,
+ "loss": 4.252035140991211,
+ "step": 852
+ },
+ {
+ "epoch": 11.852774137177807,
+ "grad_norm": 0.21628320217132568,
+ "learning_rate": 0.0006,
+ "loss": 4.268622398376465,
+ "step": 853
+ },
+ {
+ "epoch": 11.866754041065967,
+ "grad_norm": 0.20855145156383514,
+ "learning_rate": 0.0006,
+ "loss": 4.253366470336914,
+ "step": 854
+ },
+ {
+ "epoch": 11.880733944954128,
+ "grad_norm": 0.2091914266347885,
+ "learning_rate": 0.0006,
+ "loss": 4.237805366516113,
+ "step": 855
+ },
+ {
+ "epoch": 11.89471384884229,
+ "grad_norm": 0.2000127136707306,
+ "learning_rate": 0.0006,
+ "loss": 4.268559455871582,
+ "step": 856
+ },
+ {
+ "epoch": 11.90869375273045,
+ "grad_norm": 0.21080894768238068,
+ "learning_rate": 0.0006,
+ "loss": 4.208702087402344,
+ "step": 857
+ },
+ {
+ "epoch": 11.922673656618612,
+ "grad_norm": 0.22125796973705292,
+ "learning_rate": 0.0006,
+ "loss": 4.250210762023926,
+ "step": 858
+ },
+ {
+ "epoch": 11.936653560506771,
+ "grad_norm": 0.25905469059944153,
+ "learning_rate": 0.0006,
+ "loss": 4.2263593673706055,
+ "step": 859
+ },
+ {
+ "epoch": 11.950633464394933,
+ "grad_norm": 0.29970306158065796,
+ "learning_rate": 0.0006,
+ "loss": 4.250848770141602,
+ "step": 860
+ },
+ {
+ "epoch": 11.964613368283093,
+ "grad_norm": 0.28155168890953064,
+ "learning_rate": 0.0006,
+ "loss": 4.272709369659424,
+ "step": 861
+ },
+ {
+ "epoch": 11.978593272171254,
+ "grad_norm": 0.23396113514900208,
+ "learning_rate": 0.0006,
+ "loss": 4.2674970626831055,
+ "step": 862
+ },
+ {
+ "epoch": 11.992573176059414,
+ "grad_norm": 0.23619577288627625,
+ "learning_rate": 0.0006,
+ "loss": 4.240267753601074,
+ "step": 863
+ },
+ {
+ "epoch": 12.0,
+ "grad_norm": 0.2779577076435089,
+ "learning_rate": 0.0006,
+ "loss": 4.267625331878662,
+ "step": 864
+ },
+ {
+ "epoch": 12.0,
+ "eval_loss": 4.437657356262207,
+ "eval_runtime": 44.4959,
+ "eval_samples_per_second": 54.881,
+ "eval_steps_per_second": 3.439,
+ "step": 864
+ },
+ {
+ "epoch": 12.013979903888162,
+ "grad_norm": 0.2948288321495056,
+ "learning_rate": 0.0006,
+ "loss": 4.232182502746582,
+ "step": 865
+ },
+ {
+ "epoch": 12.027959807776321,
+ "grad_norm": 0.3715663254261017,
+ "learning_rate": 0.0006,
+ "loss": 4.233771324157715,
+ "step": 866
+ },
+ {
+ "epoch": 12.041939711664483,
+ "grad_norm": 0.38358673453330994,
+ "learning_rate": 0.0006,
+ "loss": 4.208967685699463,
+ "step": 867
+ },
+ {
+ "epoch": 12.055919615552643,
+ "grad_norm": 0.3314538896083832,
+ "learning_rate": 0.0006,
+ "loss": 4.230685234069824,
+ "step": 868
+ },
+ {
+ "epoch": 12.069899519440805,
+ "grad_norm": 0.34171539545059204,
+ "learning_rate": 0.0006,
+ "loss": 4.231358528137207,
+ "step": 869
+ },
+ {
+ "epoch": 12.083879423328964,
+ "grad_norm": 0.3253359794616699,
+ "learning_rate": 0.0006,
+ "loss": 4.276405334472656,
+ "step": 870
+ },
+ {
+ "epoch": 12.097859327217126,
+ "grad_norm": 0.29008302092552185,
+ "learning_rate": 0.0006,
+ "loss": 4.232935905456543,
+ "step": 871
+ },
+ {
+ "epoch": 12.111839231105286,
+ "grad_norm": 0.28490355610847473,
+ "learning_rate": 0.0006,
+ "loss": 4.238036632537842,
+ "step": 872
+ },
+ {
+ "epoch": 12.125819134993447,
+ "grad_norm": 0.28446322679519653,
+ "learning_rate": 0.0006,
+ "loss": 4.210229873657227,
+ "step": 873
+ },
+ {
+ "epoch": 12.139799038881607,
+ "grad_norm": 0.29664531350135803,
+ "learning_rate": 0.0006,
+ "loss": 4.221309185028076,
+ "step": 874
+ },
+ {
+ "epoch": 12.153778942769769,
+ "grad_norm": 0.3083505928516388,
+ "learning_rate": 0.0006,
+ "loss": 4.221837997436523,
+ "step": 875
+ },
+ {
+ "epoch": 12.167758846657929,
+ "grad_norm": 0.3282921314239502,
+ "learning_rate": 0.0006,
+ "loss": 4.236713409423828,
+ "step": 876
+ },
+ {
+ "epoch": 12.18173875054609,
+ "grad_norm": 0.3603622615337372,
+ "learning_rate": 0.0006,
+ "loss": 4.245080947875977,
+ "step": 877
+ },
+ {
+ "epoch": 12.19571865443425,
+ "grad_norm": 0.38070905208587646,
+ "learning_rate": 0.0006,
+ "loss": 4.240756988525391,
+ "step": 878
+ },
+ {
+ "epoch": 12.209698558322412,
+ "grad_norm": 0.34479081630706787,
+ "learning_rate": 0.0006,
+ "loss": 4.200998306274414,
+ "step": 879
+ },
+ {
+ "epoch": 12.223678462210572,
+ "grad_norm": 0.3006879389286041,
+ "learning_rate": 0.0006,
+ "loss": 4.23531436920166,
+ "step": 880
+ },
+ {
+ "epoch": 12.237658366098733,
+ "grad_norm": 0.36835649609565735,
+ "learning_rate": 0.0006,
+ "loss": 4.229718208312988,
+ "step": 881
+ },
+ {
+ "epoch": 12.251638269986893,
+ "grad_norm": 0.4386984407901764,
+ "learning_rate": 0.0006,
+ "loss": 4.241188049316406,
+ "step": 882
+ },
+ {
+ "epoch": 12.265618173875055,
+ "grad_norm": 0.4442787170410156,
+ "learning_rate": 0.0006,
+ "loss": 4.239102840423584,
+ "step": 883
+ },
+ {
+ "epoch": 12.279598077763215,
+ "grad_norm": 0.324411541223526,
+ "learning_rate": 0.0006,
+ "loss": 4.198982238769531,
+ "step": 884
+ },
+ {
+ "epoch": 12.293577981651376,
+ "grad_norm": 0.2824151813983917,
+ "learning_rate": 0.0006,
+ "loss": 4.248816967010498,
+ "step": 885
+ },
+ {
+ "epoch": 12.307557885539538,
+ "grad_norm": 0.31407129764556885,
+ "learning_rate": 0.0006,
+ "loss": 4.2371320724487305,
+ "step": 886
+ },
+ {
+ "epoch": 12.321537789427698,
+ "grad_norm": 0.32920050621032715,
+ "learning_rate": 0.0006,
+ "loss": 4.210432052612305,
+ "step": 887
+ },
+ {
+ "epoch": 12.33551769331586,
+ "grad_norm": 0.315231055021286,
+ "learning_rate": 0.0006,
+ "loss": 4.219416618347168,
+ "step": 888
+ },
+ {
+ "epoch": 12.349497597204019,
+ "grad_norm": 0.30932050943374634,
+ "learning_rate": 0.0006,
+ "loss": 4.225022315979004,
+ "step": 889
+ },
+ {
+ "epoch": 12.36347750109218,
+ "grad_norm": 0.30242064595222473,
+ "learning_rate": 0.0006,
+ "loss": 4.2738518714904785,
+ "step": 890
+ },
+ {
+ "epoch": 12.37745740498034,
+ "grad_norm": 0.2926250994205475,
+ "learning_rate": 0.0006,
+ "loss": 4.231094837188721,
+ "step": 891
+ },
+ {
+ "epoch": 12.391437308868502,
+ "grad_norm": 0.2541215717792511,
+ "learning_rate": 0.0006,
+ "loss": 4.211821556091309,
+ "step": 892
+ },
+ {
+ "epoch": 12.405417212756662,
+ "grad_norm": 0.23693418502807617,
+ "learning_rate": 0.0006,
+ "loss": 4.208099365234375,
+ "step": 893
+ },
+ {
+ "epoch": 12.419397116644824,
+ "grad_norm": 0.22063226997852325,
+ "learning_rate": 0.0006,
+ "loss": 4.211234092712402,
+ "step": 894
+ },
+ {
+ "epoch": 12.433377020532983,
+ "grad_norm": 0.21536271274089813,
+ "learning_rate": 0.0006,
+ "loss": 4.199228286743164,
+ "step": 895
+ },
+ {
+ "epoch": 12.447356924421145,
+ "grad_norm": 0.243179589509964,
+ "learning_rate": 0.0006,
+ "loss": 4.204344749450684,
+ "step": 896
+ },
+ {
+ "epoch": 12.461336828309305,
+ "grad_norm": 0.2299746423959732,
+ "learning_rate": 0.0006,
+ "loss": 4.1565752029418945,
+ "step": 897
+ },
+ {
+ "epoch": 12.475316732197467,
+ "grad_norm": 0.2286847084760666,
+ "learning_rate": 0.0006,
+ "loss": 4.242953777313232,
+ "step": 898
+ },
+ {
+ "epoch": 12.489296636085626,
+ "grad_norm": 0.19463586807250977,
+ "learning_rate": 0.0006,
+ "loss": 4.214809417724609,
+ "step": 899
+ },
+ {
+ "epoch": 12.503276539973788,
+ "grad_norm": 0.1978398710489273,
+ "learning_rate": 0.0006,
+ "loss": 4.159815311431885,
+ "step": 900
+ },
+ {
+ "epoch": 12.517256443861948,
+ "grad_norm": 0.23177850246429443,
+ "learning_rate": 0.0006,
+ "loss": 4.2069902420043945,
+ "step": 901
+ },
+ {
+ "epoch": 12.53123634775011,
+ "grad_norm": 0.2408912032842636,
+ "learning_rate": 0.0006,
+ "loss": 4.206778526306152,
+ "step": 902
+ },
+ {
+ "epoch": 12.54521625163827,
+ "grad_norm": 0.21839919686317444,
+ "learning_rate": 0.0006,
+ "loss": 4.197076320648193,
+ "step": 903
+ },
+ {
+ "epoch": 12.55919615552643,
+ "grad_norm": 0.2053343504667282,
+ "learning_rate": 0.0006,
+ "loss": 4.21247673034668,
+ "step": 904
+ },
+ {
+ "epoch": 12.57317605941459,
+ "grad_norm": 0.19943439960479736,
+ "learning_rate": 0.0006,
+ "loss": 4.176966667175293,
+ "step": 905
+ },
+ {
+ "epoch": 12.587155963302752,
+ "grad_norm": 0.2012074887752533,
+ "learning_rate": 0.0006,
+ "loss": 4.210303783416748,
+ "step": 906
+ },
+ {
+ "epoch": 12.601135867190912,
+ "grad_norm": 0.22240376472473145,
+ "learning_rate": 0.0006,
+ "loss": 4.200625896453857,
+ "step": 907
+ },
+ {
+ "epoch": 12.615115771079074,
+ "grad_norm": 0.21729710698127747,
+ "learning_rate": 0.0006,
+ "loss": 4.2001953125,
+ "step": 908
+ },
+ {
+ "epoch": 12.629095674967235,
+ "grad_norm": 0.22470413148403168,
+ "learning_rate": 0.0006,
+ "loss": 4.197505950927734,
+ "step": 909
+ },
+ {
+ "epoch": 12.643075578855395,
+ "grad_norm": 0.23776157200336456,
+ "learning_rate": 0.0006,
+ "loss": 4.235603332519531,
+ "step": 910
+ },
+ {
+ "epoch": 12.657055482743557,
+ "grad_norm": 0.20616604387760162,
+ "learning_rate": 0.0006,
+ "loss": 4.193584442138672,
+ "step": 911
+ },
+ {
+ "epoch": 12.671035386631717,
+ "grad_norm": 0.1913922131061554,
+ "learning_rate": 0.0006,
+ "loss": 4.209191799163818,
+ "step": 912
+ },
+ {
+ "epoch": 12.685015290519878,
+ "grad_norm": 0.19427193701267242,
+ "learning_rate": 0.0006,
+ "loss": 4.219709396362305,
+ "step": 913
+ },
+ {
+ "epoch": 12.698995194408038,
+ "grad_norm": 0.20976558327674866,
+ "learning_rate": 0.0006,
+ "loss": 4.210859298706055,
+ "step": 914
+ },
+ {
+ "epoch": 12.7129750982962,
+ "grad_norm": 0.21571609377861023,
+ "learning_rate": 0.0006,
+ "loss": 4.189394950866699,
+ "step": 915
+ },
+ {
+ "epoch": 12.72695500218436,
+ "grad_norm": 0.2152620255947113,
+ "learning_rate": 0.0006,
+ "loss": 4.223589897155762,
+ "step": 916
+ },
+ {
+ "epoch": 12.740934906072521,
+ "grad_norm": 0.21867749094963074,
+ "learning_rate": 0.0006,
+ "loss": 4.198590278625488,
+ "step": 917
+ },
+ {
+ "epoch": 12.754914809960681,
+ "grad_norm": 0.22300855815410614,
+ "learning_rate": 0.0006,
+ "loss": 4.188891410827637,
+ "step": 918
+ },
+ {
+ "epoch": 12.768894713848843,
+ "grad_norm": 0.22197802364826202,
+ "learning_rate": 0.0006,
+ "loss": 4.190221309661865,
+ "step": 919
+ },
+ {
+ "epoch": 12.782874617737003,
+ "grad_norm": 0.20003341138362885,
+ "learning_rate": 0.0006,
+ "loss": 4.215453147888184,
+ "step": 920
+ },
+ {
+ "epoch": 12.796854521625164,
+ "grad_norm": 0.19887958467006683,
+ "learning_rate": 0.0006,
+ "loss": 4.18174934387207,
+ "step": 921
+ },
+ {
+ "epoch": 12.810834425513324,
+ "grad_norm": 0.20945803821086884,
+ "learning_rate": 0.0006,
+ "loss": 4.234947204589844,
+ "step": 922
+ },
+ {
+ "epoch": 12.824814329401486,
+ "grad_norm": 0.2253490388393402,
+ "learning_rate": 0.0006,
+ "loss": 4.2177228927612305,
+ "step": 923
+ },
+ {
+ "epoch": 12.838794233289645,
+ "grad_norm": 0.247610405087471,
+ "learning_rate": 0.0006,
+ "loss": 4.2013139724731445,
+ "step": 924
+ },
+ {
+ "epoch": 12.852774137177807,
+ "grad_norm": 0.2792088985443115,
+ "learning_rate": 0.0006,
+ "loss": 4.204774379730225,
+ "step": 925
+ },
+ {
+ "epoch": 12.866754041065967,
+ "grad_norm": 0.2839066982269287,
+ "learning_rate": 0.0006,
+ "loss": 4.186254978179932,
+ "step": 926
+ },
+ {
+ "epoch": 12.880733944954128,
+ "grad_norm": 0.2793181836605072,
+ "learning_rate": 0.0006,
+ "loss": 4.172411918640137,
+ "step": 927
+ },
+ {
+ "epoch": 12.89471384884229,
+ "grad_norm": 0.29506033658981323,
+ "learning_rate": 0.0006,
+ "loss": 4.202878475189209,
+ "step": 928
+ },
+ {
+ "epoch": 12.90869375273045,
+ "grad_norm": 0.2799845039844513,
+ "learning_rate": 0.0006,
+ "loss": 4.1563310623168945,
+ "step": 929
+ },
+ {
+ "epoch": 12.922673656618612,
+ "grad_norm": 0.23972125351428986,
+ "learning_rate": 0.0006,
+ "loss": 4.224601745605469,
+ "step": 930
+ },
+ {
+ "epoch": 12.936653560506771,
+ "grad_norm": 0.21558353304862976,
+ "learning_rate": 0.0006,
+ "loss": 4.167957305908203,
+ "step": 931
+ },
+ {
+ "epoch": 12.950633464394933,
+ "grad_norm": 0.21800188720226288,
+ "learning_rate": 0.0006,
+ "loss": 4.1746039390563965,
+ "step": 932
+ },
+ {
+ "epoch": 12.964613368283093,
+ "grad_norm": 0.2086547315120697,
+ "learning_rate": 0.0006,
+ "loss": 4.188137054443359,
+ "step": 933
+ },
+ {
+ "epoch": 12.978593272171254,
+ "grad_norm": 0.2174186110496521,
+ "learning_rate": 0.0006,
+ "loss": 4.184014320373535,
+ "step": 934
+ },
+ {
+ "epoch": 12.992573176059414,
+ "grad_norm": 0.22755110263824463,
+ "learning_rate": 0.0006,
+ "loss": 4.180912017822266,
+ "step": 935
+ },
+ {
+ "epoch": 13.0,
+ "grad_norm": 0.2735324203968048,
+ "learning_rate": 0.0006,
+ "loss": 4.201578617095947,
+ "step": 936
+ },
+ {
+ "epoch": 13.0,
+ "eval_loss": 4.396903038024902,
+ "eval_runtime": 44.5664,
+ "eval_samples_per_second": 54.795,
+ "eval_steps_per_second": 3.433,
+ "step": 936
+ },
+ {
+ "epoch": 13.013979903888162,
+ "grad_norm": 0.27577832341194153,
+ "learning_rate": 0.0006,
+ "loss": 4.149985313415527,
+ "step": 937
+ },
+ {
+ "epoch": 13.027959807776321,
+ "grad_norm": 0.25817009806632996,
+ "learning_rate": 0.0006,
+ "loss": 4.1526103019714355,
+ "step": 938
+ },
+ {
+ "epoch": 13.041939711664483,
+ "grad_norm": 0.24564379453659058,
+ "learning_rate": 0.0006,
+ "loss": 4.1661152839660645,
+ "step": 939
+ },
+ {
+ "epoch": 13.055919615552643,
+ "grad_norm": 0.2465466856956482,
+ "learning_rate": 0.0006,
+ "loss": 4.152953624725342,
+ "step": 940
+ },
+ {
+ "epoch": 13.069899519440805,
+ "grad_norm": 0.22702018916606903,
+ "learning_rate": 0.0006,
+ "loss": 4.145125389099121,
+ "step": 941
+ },
+ {
+ "epoch": 13.083879423328964,
+ "grad_norm": 0.24350613355636597,
+ "learning_rate": 0.0006,
+ "loss": 4.163095474243164,
+ "step": 942
+ },
+ {
+ "epoch": 13.097859327217126,
+ "grad_norm": 0.2504431903362274,
+ "learning_rate": 0.0006,
+ "loss": 4.136016845703125,
+ "step": 943
+ },
+ {
+ "epoch": 13.111839231105286,
+ "grad_norm": 0.24968865513801575,
+ "learning_rate": 0.0006,
+ "loss": 4.163487911224365,
+ "step": 944
+ },
+ {
+ "epoch": 13.125819134993447,
+ "grad_norm": 0.27164196968078613,
+ "learning_rate": 0.0006,
+ "loss": 4.1194353103637695,
+ "step": 945
+ },
+ {
+ "epoch": 13.139799038881607,
+ "grad_norm": 0.28127020597457886,
+ "learning_rate": 0.0006,
+ "loss": 4.184807300567627,
+ "step": 946
+ },
+ {
+ "epoch": 13.153778942769769,
+ "grad_norm": 0.24574966728687286,
+ "learning_rate": 0.0006,
+ "loss": 4.154998779296875,
+ "step": 947
+ },
+ {
+ "epoch": 13.167758846657929,
+ "grad_norm": 0.22310060262680054,
+ "learning_rate": 0.0006,
+ "loss": 4.182928085327148,
+ "step": 948
+ },
+ {
+ "epoch": 13.18173875054609,
+ "grad_norm": 0.2539508640766144,
+ "learning_rate": 0.0006,
+ "loss": 4.176900386810303,
+ "step": 949
+ },
+ {
+ "epoch": 13.19571865443425,
+ "grad_norm": 0.30925488471984863,
+ "learning_rate": 0.0006,
+ "loss": 4.1760711669921875,
+ "step": 950
+ },
+ {
+ "epoch": 13.209698558322412,
+ "grad_norm": 0.3842967450618744,
+ "learning_rate": 0.0006,
+ "loss": 4.1830949783325195,
+ "step": 951
+ },
+ {
+ "epoch": 13.223678462210572,
+ "grad_norm": 0.35950011014938354,
+ "learning_rate": 0.0006,
+ "loss": 4.131983757019043,
+ "step": 952
+ },
+ {
+ "epoch": 13.237658366098733,
+ "grad_norm": 0.29913705587387085,
+ "learning_rate": 0.0006,
+ "loss": 4.166984558105469,
+ "step": 953
+ },
+ {
+ "epoch": 13.251638269986893,
+ "grad_norm": 0.32008400559425354,
+ "learning_rate": 0.0006,
+ "loss": 4.156482696533203,
+ "step": 954
+ },
+ {
+ "epoch": 13.265618173875055,
+ "grad_norm": 0.3186642825603485,
+ "learning_rate": 0.0006,
+ "loss": 4.1661057472229,
+ "step": 955
+ },
+ {
+ "epoch": 13.279598077763215,
+ "grad_norm": 0.3194582462310791,
+ "learning_rate": 0.0006,
+ "loss": 4.169328689575195,
+ "step": 956
+ },
+ {
+ "epoch": 13.293577981651376,
+ "grad_norm": 0.3133867084980011,
+ "learning_rate": 0.0006,
+ "loss": 4.165459632873535,
+ "step": 957
+ },
+ {
+ "epoch": 13.307557885539538,
+ "grad_norm": 0.3232237696647644,
+ "learning_rate": 0.0006,
+ "loss": 4.2107439041137695,
+ "step": 958
+ },
+ {
+ "epoch": 13.321537789427698,
+ "grad_norm": 0.3133196234703064,
+ "learning_rate": 0.0006,
+ "loss": 4.184182167053223,
+ "step": 959
+ },
+ {
+ "epoch": 13.33551769331586,
+ "grad_norm": 0.296129435300827,
+ "learning_rate": 0.0006,
+ "loss": 4.168312072753906,
+ "step": 960
+ },
+ {
+ "epoch": 13.349497597204019,
+ "grad_norm": 0.2685348391532898,
+ "learning_rate": 0.0006,
+ "loss": 4.159984588623047,
+ "step": 961
+ },
+ {
+ "epoch": 13.36347750109218,
+ "grad_norm": 0.2644975781440735,
+ "learning_rate": 0.0006,
+ "loss": 4.164909362792969,
+ "step": 962
+ },
+ {
+ "epoch": 13.37745740498034,
+ "grad_norm": 0.2712913155555725,
+ "learning_rate": 0.0006,
+ "loss": 4.158056259155273,
+ "step": 963
+ },
+ {
+ "epoch": 13.391437308868502,
+ "grad_norm": 0.2687259316444397,
+ "learning_rate": 0.0006,
+ "loss": 4.182924270629883,
+ "step": 964
+ },
+ {
+ "epoch": 13.405417212756662,
+ "grad_norm": 0.25640392303466797,
+ "learning_rate": 0.0006,
+ "loss": 4.153351783752441,
+ "step": 965
+ },
+ {
+ "epoch": 13.419397116644824,
+ "grad_norm": 0.2646305561065674,
+ "learning_rate": 0.0006,
+ "loss": 4.18464469909668,
+ "step": 966
+ },
+ {
+ "epoch": 13.433377020532983,
+ "grad_norm": 0.24206851422786713,
+ "learning_rate": 0.0006,
+ "loss": 4.127564430236816,
+ "step": 967
+ },
+ {
+ "epoch": 13.447356924421145,
+ "grad_norm": 0.23800471425056458,
+ "learning_rate": 0.0006,
+ "loss": 4.163488388061523,
+ "step": 968
+ },
+ {
+ "epoch": 13.461336828309305,
+ "grad_norm": 0.22957314550876617,
+ "learning_rate": 0.0006,
+ "loss": 4.178133964538574,
+ "step": 969
+ },
+ {
+ "epoch": 13.475316732197467,
+ "grad_norm": 0.22867488861083984,
+ "learning_rate": 0.0006,
+ "loss": 4.159056186676025,
+ "step": 970
+ },
+ {
+ "epoch": 13.489296636085626,
+ "grad_norm": 0.21737419068813324,
+ "learning_rate": 0.0006,
+ "loss": 4.138628005981445,
+ "step": 971
+ },
+ {
+ "epoch": 13.503276539973788,
+ "grad_norm": 0.2319175899028778,
+ "learning_rate": 0.0006,
+ "loss": 4.14644718170166,
+ "step": 972
+ },
+ {
+ "epoch": 13.517256443861948,
+ "grad_norm": 0.2572193443775177,
+ "learning_rate": 0.0006,
+ "loss": 4.175213813781738,
+ "step": 973
+ },
+ {
+ "epoch": 13.53123634775011,
+ "grad_norm": 0.23483099043369293,
+ "learning_rate": 0.0006,
+ "loss": 4.133171558380127,
+ "step": 974
+ },
+ {
+ "epoch": 13.54521625163827,
+ "grad_norm": 0.2071552872657776,
+ "learning_rate": 0.0006,
+ "loss": 4.13730525970459,
+ "step": 975
+ },
+ {
+ "epoch": 13.55919615552643,
+ "grad_norm": 0.23074553906917572,
+ "learning_rate": 0.0006,
+ "loss": 4.175051689147949,
+ "step": 976
+ },
+ {
+ "epoch": 13.57317605941459,
+ "grad_norm": 0.2480078786611557,
+ "learning_rate": 0.0006,
+ "loss": 4.167630672454834,
+ "step": 977
+ },
+ {
+ "epoch": 13.587155963302752,
+ "grad_norm": 0.23444348573684692,
+ "learning_rate": 0.0006,
+ "loss": 4.141780853271484,
+ "step": 978
+ },
+ {
+ "epoch": 13.601135867190912,
+ "grad_norm": 0.2227829396724701,
+ "learning_rate": 0.0006,
+ "loss": 4.157566547393799,
+ "step": 979
+ },
+ {
+ "epoch": 13.615115771079074,
+ "grad_norm": 0.21478354930877686,
+ "learning_rate": 0.0006,
+ "loss": 4.131053447723389,
+ "step": 980
+ },
+ {
+ "epoch": 13.629095674967235,
+ "grad_norm": 0.1978664994239807,
+ "learning_rate": 0.0006,
+ "loss": 4.123660564422607,
+ "step": 981
+ },
+ {
+ "epoch": 13.643075578855395,
+ "grad_norm": 0.19980201125144958,
+ "learning_rate": 0.0006,
+ "loss": 4.174160480499268,
+ "step": 982
+ },
+ {
+ "epoch": 13.657055482743557,
+ "grad_norm": 0.19815555214881897,
+ "learning_rate": 0.0006,
+ "loss": 4.181703090667725,
+ "step": 983
+ },
+ {
+ "epoch": 13.671035386631717,
+ "grad_norm": 0.19524012506008148,
+ "learning_rate": 0.0006,
+ "loss": 4.163766860961914,
+ "step": 984
+ },
+ {
+ "epoch": 13.685015290519878,
+ "grad_norm": 0.2286096215248108,
+ "learning_rate": 0.0006,
+ "loss": 4.172213554382324,
+ "step": 985
+ },
+ {
+ "epoch": 13.698995194408038,
+ "grad_norm": 0.2210782766342163,
+ "learning_rate": 0.0006,
+ "loss": 4.187033653259277,
+ "step": 986
+ },
+ {
+ "epoch": 13.7129750982962,
+ "grad_norm": 0.21874216198921204,
+ "learning_rate": 0.0006,
+ "loss": 4.125125885009766,
+ "step": 987
+ },
+ {
+ "epoch": 13.72695500218436,
+ "grad_norm": 0.22848057746887207,
+ "learning_rate": 0.0006,
+ "loss": 4.153496742248535,
+ "step": 988
+ },
+ {
+ "epoch": 13.740934906072521,
+ "grad_norm": 0.2250450700521469,
+ "learning_rate": 0.0006,
+ "loss": 4.149165630340576,
+ "step": 989
+ },
+ {
+ "epoch": 13.754914809960681,
+ "grad_norm": 0.21443772315979004,
+ "learning_rate": 0.0006,
+ "loss": 4.1528825759887695,
+ "step": 990
+ },
+ {
+ "epoch": 13.768894713848843,
+ "grad_norm": 0.21927927434444427,
+ "learning_rate": 0.0006,
+ "loss": 4.146831512451172,
+ "step": 991
+ },
+ {
+ "epoch": 13.782874617737003,
+ "grad_norm": 0.2413124144077301,
+ "learning_rate": 0.0006,
+ "loss": 4.136909008026123,
+ "step": 992
+ },
+ {
+ "epoch": 13.796854521625164,
+ "grad_norm": 0.2603479325771332,
+ "learning_rate": 0.0006,
+ "loss": 4.12525749206543,
+ "step": 993
+ },
+ {
+ "epoch": 13.810834425513324,
+ "grad_norm": 0.26246970891952515,
+ "learning_rate": 0.0006,
+ "loss": 4.114049434661865,
+ "step": 994
+ },
+ {
+ "epoch": 13.824814329401486,
+ "grad_norm": 0.27031877636909485,
+ "learning_rate": 0.0006,
+ "loss": 4.1646552085876465,
+ "step": 995
+ },
+ {
+ "epoch": 13.838794233289645,
+ "grad_norm": 0.2499857395887375,
+ "learning_rate": 0.0006,
+ "loss": 4.139284133911133,
+ "step": 996
+ },
+ {
+ "epoch": 13.852774137177807,
+ "grad_norm": 0.22026537358760834,
+ "learning_rate": 0.0006,
+ "loss": 4.142191410064697,
+ "step": 997
+ },
+ {
+ "epoch": 13.866754041065967,
+ "grad_norm": 0.23738551139831543,
+ "learning_rate": 0.0006,
+ "loss": 4.1422882080078125,
+ "step": 998
+ },
+ {
+ "epoch": 13.880733944954128,
+ "grad_norm": 0.2416357398033142,
+ "learning_rate": 0.0006,
+ "loss": 4.14063835144043,
+ "step": 999
+ },
+ {
+ "epoch": 13.89471384884229,
+ "grad_norm": 0.33822184801101685,
+ "learning_rate": 0.0006,
+ "loss": 4.12839412689209,
+ "step": 1000
+ },
+ {
+ "epoch": 13.90869375273045,
+ "grad_norm": 0.3409678339958191,
+ "learning_rate": 0.0006,
+ "loss": 4.145351886749268,
+ "step": 1001
+ },
+ {
+ "epoch": 13.922673656618612,
+ "grad_norm": 0.2467597872018814,
+ "learning_rate": 0.0006,
+ "loss": 4.155339241027832,
+ "step": 1002
+ },
+ {
+ "epoch": 13.936653560506771,
+ "grad_norm": 0.2314649075269699,
+ "learning_rate": 0.0006,
+ "loss": 4.130176067352295,
+ "step": 1003
+ },
+ {
+ "epoch": 13.950633464394933,
+ "grad_norm": 0.23701290786266327,
+ "learning_rate": 0.0006,
+ "loss": 4.19205379486084,
+ "step": 1004
+ },
+ {
+ "epoch": 13.964613368283093,
+ "grad_norm": 0.2466491460800171,
+ "learning_rate": 0.0006,
+ "loss": 4.118908882141113,
+ "step": 1005
+ },
+ {
+ "epoch": 13.978593272171254,
+ "grad_norm": 0.23746836185455322,
+ "learning_rate": 0.0006,
+ "loss": 4.16111946105957,
+ "step": 1006
+ },
+ {
+ "epoch": 13.992573176059414,
+ "grad_norm": 0.24497751891613007,
+ "learning_rate": 0.0006,
+ "loss": 4.148624420166016,
+ "step": 1007
+ },
+ {
+ "epoch": 14.0,
+ "grad_norm": 0.25735899806022644,
+ "learning_rate": 0.0006,
+ "loss": 4.12002420425415,
+ "step": 1008
+ },
+ {
+ "epoch": 14.0,
+ "eval_loss": 4.335351467132568,
+ "eval_runtime": 44.0523,
+ "eval_samples_per_second": 55.434,
+ "eval_steps_per_second": 3.473,
+ "step": 1008
+ },
+ {
+ "epoch": 14.013979903888162,
+ "grad_norm": 0.24570082128047943,
+ "learning_rate": 0.0006,
+ "loss": 4.1036176681518555,
+ "step": 1009
+ },
+ {
+ "epoch": 14.027959807776321,
+ "grad_norm": 0.2525855302810669,
+ "learning_rate": 0.0006,
+ "loss": 4.142077445983887,
+ "step": 1010
+ },
+ {
+ "epoch": 14.041939711664483,
+ "grad_norm": 0.2701111435890198,
+ "learning_rate": 0.0006,
+ "loss": 4.096988677978516,
+ "step": 1011
+ },
+ {
+ "epoch": 14.055919615552643,
+ "grad_norm": 0.28173309564590454,
+ "learning_rate": 0.0006,
+ "loss": 4.148448944091797,
+ "step": 1012
+ },
+ {
+ "epoch": 14.069899519440805,
+ "grad_norm": 0.2651294469833374,
+ "learning_rate": 0.0006,
+ "loss": 4.121731281280518,
+ "step": 1013
+ },
+ {
+ "epoch": 14.083879423328964,
+ "grad_norm": 0.21160121262073517,
+ "learning_rate": 0.0006,
+ "loss": 4.108980178833008,
+ "step": 1014
+ },
+ {
+ "epoch": 14.097859327217126,
+ "grad_norm": 0.24786953628063202,
+ "learning_rate": 0.0006,
+ "loss": 4.133942604064941,
+ "step": 1015
+ },
+ {
+ "epoch": 14.111839231105286,
+ "grad_norm": 0.2722747027873993,
+ "learning_rate": 0.0006,
+ "loss": 4.115242958068848,
+ "step": 1016
+ },
+ {
+ "epoch": 14.125819134993447,
+ "grad_norm": 0.273360013961792,
+ "learning_rate": 0.0006,
+ "loss": 4.059296607971191,
+ "step": 1017
+ },
+ {
+ "epoch": 14.139799038881607,
+ "grad_norm": 0.2541784942150116,
+ "learning_rate": 0.0006,
+ "loss": 4.118365287780762,
+ "step": 1018
+ },
+ {
+ "epoch": 14.153778942769769,
+ "grad_norm": 0.23806381225585938,
+ "learning_rate": 0.0006,
+ "loss": 4.102812767028809,
+ "step": 1019
+ },
+ {
+ "epoch": 14.167758846657929,
+ "grad_norm": 0.2541005313396454,
+ "learning_rate": 0.0006,
+ "loss": 4.093264579772949,
+ "step": 1020
+ },
+ {
+ "epoch": 14.18173875054609,
+ "grad_norm": 0.2619539499282837,
+ "learning_rate": 0.0006,
+ "loss": 4.114917278289795,
+ "step": 1021
+ },
+ {
+ "epoch": 14.19571865443425,
+ "grad_norm": 0.2466963529586792,
+ "learning_rate": 0.0006,
+ "loss": 4.098258972167969,
+ "step": 1022
+ },
+ {
+ "epoch": 14.209698558322412,
+ "grad_norm": 0.24341611564159393,
+ "learning_rate": 0.0006,
+ "loss": 4.109346389770508,
+ "step": 1023
+ },
+ {
+ "epoch": 14.223678462210572,
+ "grad_norm": 0.23977765440940857,
+ "learning_rate": 0.0006,
+ "loss": 4.106716156005859,
+ "step": 1024
+ },
+ {
+ "epoch": 14.237658366098733,
+ "grad_norm": 0.253528356552124,
+ "learning_rate": 0.0006,
+ "loss": 4.102226257324219,
+ "step": 1025
+ },
+ {
+ "epoch": 14.251638269986893,
+ "grad_norm": 0.26954543590545654,
+ "learning_rate": 0.0006,
+ "loss": 4.107413291931152,
+ "step": 1026
+ },
+ {
+ "epoch": 14.265618173875055,
+ "grad_norm": 0.2610514760017395,
+ "learning_rate": 0.0006,
+ "loss": 4.110824108123779,
+ "step": 1027
+ },
+ {
+ "epoch": 14.279598077763215,
+ "grad_norm": 0.2579168677330017,
+ "learning_rate": 0.0006,
+ "loss": 4.082438945770264,
+ "step": 1028
+ },
+ {
+ "epoch": 14.293577981651376,
+ "grad_norm": 0.26916536688804626,
+ "learning_rate": 0.0006,
+ "loss": 4.075734615325928,
+ "step": 1029
+ },
+ {
+ "epoch": 14.307557885539538,
+ "grad_norm": 0.2998618185520172,
+ "learning_rate": 0.0006,
+ "loss": 4.088419437408447,
+ "step": 1030
+ },
+ {
+ "epoch": 14.321537789427698,
+ "grad_norm": 0.3162737190723419,
+ "learning_rate": 0.0006,
+ "loss": 4.125833034515381,
+ "step": 1031
+ },
+ {
+ "epoch": 14.33551769331586,
+ "grad_norm": 0.318601131439209,
+ "learning_rate": 0.0006,
+ "loss": 4.077424049377441,
+ "step": 1032
+ },
+ {
+ "epoch": 14.349497597204019,
+ "grad_norm": 0.32113415002822876,
+ "learning_rate": 0.0006,
+ "loss": 4.113360404968262,
+ "step": 1033
+ },
+ {
+ "epoch": 14.36347750109218,
+ "grad_norm": 0.3150886297225952,
+ "learning_rate": 0.0006,
+ "loss": 4.100013732910156,
+ "step": 1034
+ },
+ {
+ "epoch": 14.37745740498034,
+ "grad_norm": 0.29279956221580505,
+ "learning_rate": 0.0006,
+ "loss": 4.136394500732422,
+ "step": 1035
+ },
+ {
+ "epoch": 14.391437308868502,
+ "grad_norm": 0.28532543778419495,
+ "learning_rate": 0.0006,
+ "loss": 4.138948440551758,
+ "step": 1036
+ },
+ {
+ "epoch": 14.405417212756662,
+ "grad_norm": 0.2825978398323059,
+ "learning_rate": 0.0006,
+ "loss": 4.112217903137207,
+ "step": 1037
+ },
+ {
+ "epoch": 14.419397116644824,
+ "grad_norm": 0.2891198694705963,
+ "learning_rate": 0.0006,
+ "loss": 4.102682113647461,
+ "step": 1038
+ },
+ {
+ "epoch": 14.433377020532983,
+ "grad_norm": 0.2917391061782837,
+ "learning_rate": 0.0006,
+ "loss": 4.120752811431885,
+ "step": 1039
+ },
+ {
+ "epoch": 14.447356924421145,
+ "grad_norm": 0.2589806914329529,
+ "learning_rate": 0.0006,
+ "loss": 4.130519390106201,
+ "step": 1040
+ },
+ {
+ "epoch": 14.461336828309305,
+ "grad_norm": 0.2674788534641266,
+ "learning_rate": 0.0006,
+ "loss": 4.130382537841797,
+ "step": 1041
+ },
+ {
+ "epoch": 14.475316732197467,
+ "grad_norm": 0.2820362150669098,
+ "learning_rate": 0.0006,
+ "loss": 4.13947868347168,
+ "step": 1042
+ },
+ {
+ "epoch": 14.489296636085626,
+ "grad_norm": 0.2650109529495239,
+ "learning_rate": 0.0006,
+ "loss": 4.130346775054932,
+ "step": 1043
+ },
+ {
+ "epoch": 14.503276539973788,
+ "grad_norm": 0.29137638211250305,
+ "learning_rate": 0.0006,
+ "loss": 4.055751800537109,
+ "step": 1044
+ },
+ {
+ "epoch": 14.517256443861948,
+ "grad_norm": 0.3232433497905731,
+ "learning_rate": 0.0006,
+ "loss": 4.114810943603516,
+ "step": 1045
+ },
+ {
+ "epoch": 14.53123634775011,
+ "grad_norm": 0.2724473476409912,
+ "learning_rate": 0.0006,
+ "loss": 4.088351249694824,
+ "step": 1046
+ },
+ {
+ "epoch": 14.54521625163827,
+ "grad_norm": 0.23994430899620056,
+ "learning_rate": 0.0006,
+ "loss": 4.110936164855957,
+ "step": 1047
+ },
+ {
+ "epoch": 14.55919615552643,
+ "grad_norm": 0.2422720044851303,
+ "learning_rate": 0.0006,
+ "loss": 4.132844924926758,
+ "step": 1048
+ },
+ {
+ "epoch": 14.57317605941459,
+ "grad_norm": 0.21148815751075745,
+ "learning_rate": 0.0006,
+ "loss": 4.102499961853027,
+ "step": 1049
+ },
+ {
+ "epoch": 14.587155963302752,
+ "grad_norm": 0.22221639752388,
+ "learning_rate": 0.0006,
+ "loss": 4.126241683959961,
+ "step": 1050
+ },
+ {
+ "epoch": 14.601135867190912,
+ "grad_norm": 0.2538735866546631,
+ "learning_rate": 0.0006,
+ "loss": 4.116817951202393,
+ "step": 1051
+ },
+ {
+ "epoch": 14.615115771079074,
+ "grad_norm": 0.2555900514125824,
+ "learning_rate": 0.0006,
+ "loss": 4.106309413909912,
+ "step": 1052
+ },
+ {
+ "epoch": 14.629095674967235,
+ "grad_norm": 0.24753783643245697,
+ "learning_rate": 0.0006,
+ "loss": 4.1015119552612305,
+ "step": 1053
+ },
+ {
+ "epoch": 14.643075578855395,
+ "grad_norm": 0.238885298371315,
+ "learning_rate": 0.0006,
+ "loss": 4.120419502258301,
+ "step": 1054
+ },
+ {
+ "epoch": 14.657055482743557,
+ "grad_norm": 0.22693610191345215,
+ "learning_rate": 0.0006,
+ "loss": 4.084968566894531,
+ "step": 1055
+ },
+ {
+ "epoch": 14.671035386631717,
+ "grad_norm": 0.2100025862455368,
+ "learning_rate": 0.0006,
+ "loss": 4.108001708984375,
+ "step": 1056
+ },
+ {
+ "epoch": 14.685015290519878,
+ "grad_norm": 0.20437054336071014,
+ "learning_rate": 0.0006,
+ "loss": 4.151417255401611,
+ "step": 1057
+ },
+ {
+ "epoch": 14.698995194408038,
+ "grad_norm": 0.1926720291376114,
+ "learning_rate": 0.0006,
+ "loss": 4.091334342956543,
+ "step": 1058
+ },
+ {
+ "epoch": 14.7129750982962,
+ "grad_norm": 0.2120140641927719,
+ "learning_rate": 0.0006,
+ "loss": 4.111706256866455,
+ "step": 1059
+ },
+ {
+ "epoch": 14.72695500218436,
+ "grad_norm": 0.22877076268196106,
+ "learning_rate": 0.0006,
+ "loss": 4.123166084289551,
+ "step": 1060
+ },
+ {
+ "epoch": 14.740934906072521,
+ "grad_norm": 0.22149473428726196,
+ "learning_rate": 0.0006,
+ "loss": 4.099740028381348,
+ "step": 1061
+ },
+ {
+ "epoch": 14.754914809960681,
+ "grad_norm": 0.2351604402065277,
+ "learning_rate": 0.0006,
+ "loss": 4.066174507141113,
+ "step": 1062
+ },
+ {
+ "epoch": 14.768894713848843,
+ "grad_norm": 0.22895802557468414,
+ "learning_rate": 0.0006,
+ "loss": 4.101897239685059,
+ "step": 1063
+ },
+ {
+ "epoch": 14.782874617737003,
+ "grad_norm": 0.22050750255584717,
+ "learning_rate": 0.0006,
+ "loss": 4.122953414916992,
+ "step": 1064
+ },
+ {
+ "epoch": 14.796854521625164,
+ "grad_norm": 0.23255324363708496,
+ "learning_rate": 0.0006,
+ "loss": 4.11297607421875,
+ "step": 1065
+ },
+ {
+ "epoch": 14.810834425513324,
+ "grad_norm": 0.24522703886032104,
+ "learning_rate": 0.0006,
+ "loss": 4.131030082702637,
+ "step": 1066
+ },
+ {
+ "epoch": 14.824814329401486,
+ "grad_norm": 0.2492702752351761,
+ "learning_rate": 0.0006,
+ "loss": 4.076324939727783,
+ "step": 1067
+ },
+ {
+ "epoch": 14.838794233289645,
+ "grad_norm": 0.24410948157310486,
+ "learning_rate": 0.0006,
+ "loss": 4.109020709991455,
+ "step": 1068
+ },
+ {
+ "epoch": 14.852774137177807,
+ "grad_norm": 0.2463168203830719,
+ "learning_rate": 0.0006,
+ "loss": 4.135679244995117,
+ "step": 1069
+ },
+ {
+ "epoch": 14.866754041065967,
+ "grad_norm": 0.2563146650791168,
+ "learning_rate": 0.0006,
+ "loss": 4.0958027839660645,
+ "step": 1070
+ },
+ {
+ "epoch": 14.880733944954128,
+ "grad_norm": 0.261167049407959,
+ "learning_rate": 0.0006,
+ "loss": 4.114803314208984,
+ "step": 1071
+ },
+ {
+ "epoch": 14.89471384884229,
+ "grad_norm": 0.2593795955181122,
+ "learning_rate": 0.0006,
+ "loss": 4.1210618019104,
+ "step": 1072
+ },
+ {
+ "epoch": 14.90869375273045,
+ "grad_norm": 0.27184173464775085,
+ "learning_rate": 0.0006,
+ "loss": 4.095145225524902,
+ "step": 1073
+ },
+ {
+ "epoch": 14.922673656618612,
+ "grad_norm": 0.25289732217788696,
+ "learning_rate": 0.0006,
+ "loss": 4.107388973236084,
+ "step": 1074
+ },
+ {
+ "epoch": 14.936653560506771,
+ "grad_norm": 0.2176840454339981,
+ "learning_rate": 0.0006,
+ "loss": 4.105966567993164,
+ "step": 1075
+ },
+ {
+ "epoch": 14.950633464394933,
+ "grad_norm": 0.20930173993110657,
+ "learning_rate": 0.0006,
+ "loss": 4.126853942871094,
+ "step": 1076
+ },
+ {
+ "epoch": 14.964613368283093,
+ "grad_norm": 0.20850051939487457,
+ "learning_rate": 0.0006,
+ "loss": 4.074934959411621,
+ "step": 1077
+ },
+ {
+ "epoch": 14.978593272171254,
+ "grad_norm": 0.21987544000148773,
+ "learning_rate": 0.0006,
+ "loss": 4.123321533203125,
+ "step": 1078
+ },
+ {
+ "epoch": 14.992573176059414,
+ "grad_norm": 0.23821689188480377,
+ "learning_rate": 0.0006,
+ "loss": 4.082647323608398,
+ "step": 1079
+ },
+ {
+ "epoch": 15.0,
+ "grad_norm": 0.2590881288051605,
+ "learning_rate": 0.0006,
+ "loss": 4.113482475280762,
+ "step": 1080
+ },
+ {
+ "epoch": 15.0,
+ "eval_loss": 4.286936283111572,
+ "eval_runtime": 44.2665,
+ "eval_samples_per_second": 55.166,
+ "eval_steps_per_second": 3.456,
+ "step": 1080
+ },
+ {
+ "epoch": 15.013979903888162,
+ "grad_norm": 0.27885961532592773,
+ "learning_rate": 0.0006,
+ "loss": 4.0825958251953125,
+ "step": 1081
+ },
+ {
+ "epoch": 15.027959807776321,
+ "grad_norm": 0.2751246690750122,
+ "learning_rate": 0.0006,
+ "loss": 4.049782752990723,
+ "step": 1082
+ },
+ {
+ "epoch": 15.041939711664483,
+ "grad_norm": 0.25238561630249023,
+ "learning_rate": 0.0006,
+ "loss": 4.067366600036621,
+ "step": 1083
+ },
+ {
+ "epoch": 15.055919615552643,
+ "grad_norm": 0.27481040358543396,
+ "learning_rate": 0.0006,
+ "loss": 4.089946746826172,
+ "step": 1084
+ },
+ {
+ "epoch": 15.069899519440805,
+ "grad_norm": 0.2666703164577484,
+ "learning_rate": 0.0006,
+ "loss": 4.071957588195801,
+ "step": 1085
+ },
+ {
+ "epoch": 15.083879423328964,
+ "grad_norm": 0.2532065212726593,
+ "learning_rate": 0.0006,
+ "loss": 4.091561794281006,
+ "step": 1086
+ },
+ {
+ "epoch": 15.097859327217126,
+ "grad_norm": 0.23562374711036682,
+ "learning_rate": 0.0006,
+ "loss": 4.074953079223633,
+ "step": 1087
+ },
+ {
+ "epoch": 15.111839231105286,
+ "grad_norm": 0.2498065084218979,
+ "learning_rate": 0.0006,
+ "loss": 4.056004047393799,
+ "step": 1088
+ },
+ {
+ "epoch": 15.125819134993447,
+ "grad_norm": 0.257046639919281,
+ "learning_rate": 0.0006,
+ "loss": 4.044149875640869,
+ "step": 1089
+ },
+ {
+ "epoch": 15.139799038881607,
+ "grad_norm": 0.2417808622121811,
+ "learning_rate": 0.0006,
+ "loss": 4.071811676025391,
+ "step": 1090
+ },
+ {
+ "epoch": 15.153778942769769,
+ "grad_norm": 0.24742013216018677,
+ "learning_rate": 0.0006,
+ "loss": 4.081482887268066,
+ "step": 1091
+ },
+ {
+ "epoch": 15.167758846657929,
+ "grad_norm": 0.2610231637954712,
+ "learning_rate": 0.0006,
+ "loss": 4.06953763961792,
+ "step": 1092
+ },
+ {
+ "epoch": 15.18173875054609,
+ "grad_norm": 0.24688200652599335,
+ "learning_rate": 0.0006,
+ "loss": 4.079700469970703,
+ "step": 1093
+ },
+ {
+ "epoch": 15.19571865443425,
+ "grad_norm": 0.2650167942047119,
+ "learning_rate": 0.0006,
+ "loss": 4.082088947296143,
+ "step": 1094
+ },
+ {
+ "epoch": 15.209698558322412,
+ "grad_norm": 0.25913330912590027,
+ "learning_rate": 0.0006,
+ "loss": 4.081713676452637,
+ "step": 1095
+ },
+ {
+ "epoch": 15.223678462210572,
+ "grad_norm": 0.2547631561756134,
+ "learning_rate": 0.0006,
+ "loss": 4.073573112487793,
+ "step": 1096
+ },
+ {
+ "epoch": 15.237658366098733,
+ "grad_norm": 0.2732609510421753,
+ "learning_rate": 0.0006,
+ "loss": 4.10186767578125,
+ "step": 1097
+ },
+ {
+ "epoch": 15.251638269986893,
+ "grad_norm": 0.2990017533302307,
+ "learning_rate": 0.0006,
+ "loss": 4.085466384887695,
+ "step": 1098
+ },
+ {
+ "epoch": 15.265618173875055,
+ "grad_norm": 0.30252209305763245,
+ "learning_rate": 0.0006,
+ "loss": 4.077337265014648,
+ "step": 1099
+ },
+ {
+ "epoch": 15.279598077763215,
+ "grad_norm": 0.30046045780181885,
+ "learning_rate": 0.0006,
+ "loss": 4.0895891189575195,
+ "step": 1100
+ },
+ {
+ "epoch": 15.293577981651376,
+ "grad_norm": 0.2779843211174011,
+ "learning_rate": 0.0006,
+ "loss": 4.060354709625244,
+ "step": 1101
+ },
+ {
+ "epoch": 15.307557885539538,
+ "grad_norm": 0.26914986968040466,
+ "learning_rate": 0.0006,
+ "loss": 4.07314395904541,
+ "step": 1102
+ },
+ {
+ "epoch": 15.321537789427698,
+ "grad_norm": 0.24605873227119446,
+ "learning_rate": 0.0006,
+ "loss": 4.051377296447754,
+ "step": 1103
+ },
+ {
+ "epoch": 15.33551769331586,
+ "grad_norm": 0.25634095072746277,
+ "learning_rate": 0.0006,
+ "loss": 4.082427024841309,
+ "step": 1104
+ },
+ {
+ "epoch": 15.349497597204019,
+ "grad_norm": 0.2888158857822418,
+ "learning_rate": 0.0006,
+ "loss": 4.074253082275391,
+ "step": 1105
+ },
+ {
+ "epoch": 15.36347750109218,
+ "grad_norm": 0.2758261561393738,
+ "learning_rate": 0.0006,
+ "loss": 4.08344841003418,
+ "step": 1106
+ },
+ {
+ "epoch": 15.37745740498034,
+ "grad_norm": 0.26937270164489746,
+ "learning_rate": 0.0006,
+ "loss": 4.063424587249756,
+ "step": 1107
+ },
+ {
+ "epoch": 15.391437308868502,
+ "grad_norm": 0.2739955484867096,
+ "learning_rate": 0.0006,
+ "loss": 4.08005952835083,
+ "step": 1108
+ },
+ {
+ "epoch": 15.405417212756662,
+ "grad_norm": 0.2635386288166046,
+ "learning_rate": 0.0006,
+ "loss": 4.087360382080078,
+ "step": 1109
+ },
+ {
+ "epoch": 15.419397116644824,
+ "grad_norm": 0.2619768977165222,
+ "learning_rate": 0.0006,
+ "loss": 4.072653770446777,
+ "step": 1110
+ },
+ {
+ "epoch": 15.433377020532983,
+ "grad_norm": 0.24154804646968842,
+ "learning_rate": 0.0006,
+ "loss": 4.084464073181152,
+ "step": 1111
+ },
+ {
+ "epoch": 15.447356924421145,
+ "grad_norm": 0.24236027896404266,
+ "learning_rate": 0.0006,
+ "loss": 4.078777313232422,
+ "step": 1112
+ },
+ {
+ "epoch": 15.461336828309305,
+ "grad_norm": 0.24653038382530212,
+ "learning_rate": 0.0006,
+ "loss": 4.075024604797363,
+ "step": 1113
+ },
+ {
+ "epoch": 15.475316732197467,
+ "grad_norm": 0.27106523513793945,
+ "learning_rate": 0.0006,
+ "loss": 4.060937881469727,
+ "step": 1114
+ },
+ {
+ "epoch": 15.489296636085626,
+ "grad_norm": 0.25109633803367615,
+ "learning_rate": 0.0006,
+ "loss": 4.081971168518066,
+ "step": 1115
+ },
+ {
+ "epoch": 15.503276539973788,
+ "grad_norm": 0.23452287912368774,
+ "learning_rate": 0.0006,
+ "loss": 4.0762834548950195,
+ "step": 1116
+ },
+ {
+ "epoch": 15.517256443861948,
+ "grad_norm": 0.25415024161338806,
+ "learning_rate": 0.0006,
+ "loss": 4.069386959075928,
+ "step": 1117
+ },
+ {
+ "epoch": 15.53123634775011,
+ "grad_norm": 0.25448229908943176,
+ "learning_rate": 0.0006,
+ "loss": 4.075098514556885,
+ "step": 1118
+ },
+ {
+ "epoch": 15.54521625163827,
+ "grad_norm": 0.25679755210876465,
+ "learning_rate": 0.0006,
+ "loss": 4.097431182861328,
+ "step": 1119
+ },
+ {
+ "epoch": 15.55919615552643,
+ "grad_norm": 0.25973212718963623,
+ "learning_rate": 0.0006,
+ "loss": 4.058948516845703,
+ "step": 1120
+ },
+ {
+ "epoch": 15.57317605941459,
+ "grad_norm": 0.24511456489562988,
+ "learning_rate": 0.0006,
+ "loss": 4.092263698577881,
+ "step": 1121
+ },
+ {
+ "epoch": 15.587155963302752,
+ "grad_norm": 0.22949442267417908,
+ "learning_rate": 0.0006,
+ "loss": 4.0526604652404785,
+ "step": 1122
+ },
+ {
+ "epoch": 15.601135867190912,
+ "grad_norm": 0.22486285865306854,
+ "learning_rate": 0.0006,
+ "loss": 4.051939010620117,
+ "step": 1123
+ },
+ {
+ "epoch": 15.615115771079074,
+ "grad_norm": 0.22183601558208466,
+ "learning_rate": 0.0006,
+ "loss": 4.065430641174316,
+ "step": 1124
+ },
+ {
+ "epoch": 15.629095674967235,
+ "grad_norm": 0.2531328797340393,
+ "learning_rate": 0.0006,
+ "loss": 4.069165229797363,
+ "step": 1125
+ },
+ {
+ "epoch": 15.643075578855395,
+ "grad_norm": 0.24403320252895355,
+ "learning_rate": 0.0006,
+ "loss": 4.055041790008545,
+ "step": 1126
+ },
+ {
+ "epoch": 15.657055482743557,
+ "grad_norm": 0.24504756927490234,
+ "learning_rate": 0.0006,
+ "loss": 4.035850524902344,
+ "step": 1127
+ },
+ {
+ "epoch": 15.671035386631717,
+ "grad_norm": 0.23812057077884674,
+ "learning_rate": 0.0006,
+ "loss": 4.049278259277344,
+ "step": 1128
+ },
+ {
+ "epoch": 15.685015290519878,
+ "grad_norm": 0.23694153130054474,
+ "learning_rate": 0.0006,
+ "loss": 4.065816402435303,
+ "step": 1129
+ },
+ {
+ "epoch": 15.698995194408038,
+ "grad_norm": 0.23252786695957184,
+ "learning_rate": 0.0006,
+ "loss": 4.05952262878418,
+ "step": 1130
+ },
+ {
+ "epoch": 15.7129750982962,
+ "grad_norm": 0.2243805080652237,
+ "learning_rate": 0.0006,
+ "loss": 4.058291435241699,
+ "step": 1131
+ },
+ {
+ "epoch": 15.72695500218436,
+ "grad_norm": 0.2200988084077835,
+ "learning_rate": 0.0006,
+ "loss": 4.040788650512695,
+ "step": 1132
+ },
+ {
+ "epoch": 15.740934906072521,
+ "grad_norm": 0.21460631489753723,
+ "learning_rate": 0.0006,
+ "loss": 4.072552680969238,
+ "step": 1133
+ },
+ {
+ "epoch": 15.754914809960681,
+ "grad_norm": 0.2056441456079483,
+ "learning_rate": 0.0006,
+ "loss": 4.059467315673828,
+ "step": 1134
+ },
+ {
+ "epoch": 15.768894713848843,
+ "grad_norm": 0.2068045437335968,
+ "learning_rate": 0.0006,
+ "loss": 4.063803195953369,
+ "step": 1135
+ },
+ {
+ "epoch": 15.782874617737003,
+ "grad_norm": 0.21307601034641266,
+ "learning_rate": 0.0006,
+ "loss": 4.093092918395996,
+ "step": 1136
+ },
+ {
+ "epoch": 15.796854521625164,
+ "grad_norm": 0.20729634165763855,
+ "learning_rate": 0.0006,
+ "loss": 4.066030502319336,
+ "step": 1137
+ },
+ {
+ "epoch": 15.810834425513324,
+ "grad_norm": 0.2097514122724533,
+ "learning_rate": 0.0006,
+ "loss": 4.077326774597168,
+ "step": 1138
+ },
+ {
+ "epoch": 15.824814329401486,
+ "grad_norm": 0.21884000301361084,
+ "learning_rate": 0.0006,
+ "loss": 4.0595598220825195,
+ "step": 1139
+ },
+ {
+ "epoch": 15.838794233289645,
+ "grad_norm": 0.22220250964164734,
+ "learning_rate": 0.0006,
+ "loss": 4.061574459075928,
+ "step": 1140
+ },
+ {
+ "epoch": 15.852774137177807,
+ "grad_norm": 0.23189949989318848,
+ "learning_rate": 0.0006,
+ "loss": 4.0504045486450195,
+ "step": 1141
+ },
+ {
+ "epoch": 15.866754041065967,
+ "grad_norm": 0.226649671792984,
+ "learning_rate": 0.0006,
+ "loss": 4.060986518859863,
+ "step": 1142
+ },
+ {
+ "epoch": 15.880733944954128,
+ "grad_norm": 0.2456834763288498,
+ "learning_rate": 0.0006,
+ "loss": 4.038525581359863,
+ "step": 1143
+ },
+ {
+ "epoch": 15.89471384884229,
+ "grad_norm": 0.2818352282047272,
+ "learning_rate": 0.0006,
+ "loss": 4.062709331512451,
+ "step": 1144
+ },
+ {
+ "epoch": 15.90869375273045,
+ "grad_norm": 0.2850170135498047,
+ "learning_rate": 0.0006,
+ "loss": 4.0683274269104,
+ "step": 1145
+ },
+ {
+ "epoch": 15.922673656618612,
+ "grad_norm": 0.27691730856895447,
+ "learning_rate": 0.0006,
+ "loss": 4.076540470123291,
+ "step": 1146
+ },
+ {
+ "epoch": 15.936653560506771,
+ "grad_norm": 0.2685548961162567,
+ "learning_rate": 0.0006,
+ "loss": 4.048116683959961,
+ "step": 1147
+ },
+ {
+ "epoch": 15.950633464394933,
+ "grad_norm": 0.2452288419008255,
+ "learning_rate": 0.0006,
+ "loss": 4.06640625,
+ "step": 1148
+ },
+ {
+ "epoch": 15.964613368283093,
+ "grad_norm": 0.2601441740989685,
+ "learning_rate": 0.0006,
+ "loss": 4.073277473449707,
+ "step": 1149
+ },
+ {
+ "epoch": 15.978593272171254,
+ "grad_norm": 0.2748197913169861,
+ "learning_rate": 0.0006,
+ "loss": 4.0332536697387695,
+ "step": 1150
+ },
+ {
+ "epoch": 15.992573176059414,
+ "grad_norm": 0.27249959111213684,
+ "learning_rate": 0.0006,
+ "loss": 3.9952516555786133,
+ "step": 1151
+ },
+ {
+ "epoch": 16.0,
+ "grad_norm": 0.3475601375102997,
+ "learning_rate": 0.0006,
+ "loss": 4.040761947631836,
+ "step": 1152
+ },
+ {
+ "epoch": 16.0,
+ "eval_loss": 4.237997531890869,
+ "eval_runtime": 43.8692,
+ "eval_samples_per_second": 55.665,
+ "eval_steps_per_second": 3.488,
+ "step": 1152
+ },
+ {
+ "epoch": 16.01397990388816,
+ "grad_norm": 0.3365611433982849,
+ "learning_rate": 0.0006,
+ "loss": 4.031302452087402,
+ "step": 1153
+ },
+ {
+ "epoch": 16.027959807776323,
+ "grad_norm": 0.3020530641078949,
+ "learning_rate": 0.0006,
+ "loss": 4.036273956298828,
+ "step": 1154
+ },
+ {
+ "epoch": 16.041939711664483,
+ "grad_norm": 0.25277993083000183,
+ "learning_rate": 0.0006,
+ "loss": 4.007067680358887,
+ "step": 1155
+ },
+ {
+ "epoch": 16.055919615552643,
+ "grad_norm": 0.24762840569019318,
+ "learning_rate": 0.0006,
+ "loss": 4.046561241149902,
+ "step": 1156
+ },
+ {
+ "epoch": 16.069899519440803,
+ "grad_norm": 0.25236397981643677,
+ "learning_rate": 0.0006,
+ "loss": 4.061616897583008,
+ "step": 1157
+ },
+ {
+ "epoch": 16.083879423328966,
+ "grad_norm": 0.22789105772972107,
+ "learning_rate": 0.0006,
+ "loss": 4.010061740875244,
+ "step": 1158
+ },
+ {
+ "epoch": 16.097859327217126,
+ "grad_norm": 0.21866244077682495,
+ "learning_rate": 0.0006,
+ "loss": 4.0181097984313965,
+ "step": 1159
+ },
+ {
+ "epoch": 16.111839231105286,
+ "grad_norm": 0.21889029443264008,
+ "learning_rate": 0.0006,
+ "loss": 4.012239456176758,
+ "step": 1160
+ },
+ {
+ "epoch": 16.125819134993446,
+ "grad_norm": 0.23002485930919647,
+ "learning_rate": 0.0006,
+ "loss": 4.034092426300049,
+ "step": 1161
+ },
+ {
+ "epoch": 16.13979903888161,
+ "grad_norm": 0.2271798551082611,
+ "learning_rate": 0.0006,
+ "loss": 4.026222229003906,
+ "step": 1162
+ },
+ {
+ "epoch": 16.15377894276977,
+ "grad_norm": 0.238200843334198,
+ "learning_rate": 0.0006,
+ "loss": 4.044692039489746,
+ "step": 1163
+ },
+ {
+ "epoch": 16.16775884665793,
+ "grad_norm": 0.2281467169523239,
+ "learning_rate": 0.0006,
+ "loss": 4.032305717468262,
+ "step": 1164
+ },
+ {
+ "epoch": 16.18173875054609,
+ "grad_norm": 0.2213946431875229,
+ "learning_rate": 0.0006,
+ "loss": 4.048737525939941,
+ "step": 1165
+ },
+ {
+ "epoch": 16.195718654434252,
+ "grad_norm": 0.26638558506965637,
+ "learning_rate": 0.0006,
+ "loss": 4.006335258483887,
+ "step": 1166
+ },
+ {
+ "epoch": 16.209698558322412,
+ "grad_norm": 0.2780219316482544,
+ "learning_rate": 0.0006,
+ "loss": 4.049234390258789,
+ "step": 1167
+ },
+ {
+ "epoch": 16.22367846221057,
+ "grad_norm": 0.27425870299339294,
+ "learning_rate": 0.0006,
+ "loss": 4.017177104949951,
+ "step": 1168
+ },
+ {
+ "epoch": 16.23765836609873,
+ "grad_norm": 0.2596667408943176,
+ "learning_rate": 0.0006,
+ "loss": 4.022942543029785,
+ "step": 1169
+ },
+ {
+ "epoch": 16.251638269986895,
+ "grad_norm": 0.26972314715385437,
+ "learning_rate": 0.0006,
+ "loss": 4.035310745239258,
+ "step": 1170
+ },
+ {
+ "epoch": 16.265618173875055,
+ "grad_norm": 0.2677772045135498,
+ "learning_rate": 0.0006,
+ "loss": 4.0280561447143555,
+ "step": 1171
+ },
+ {
+ "epoch": 16.279598077763215,
+ "grad_norm": 0.25433358550071716,
+ "learning_rate": 0.0006,
+ "loss": 4.03616189956665,
+ "step": 1172
+ },
+ {
+ "epoch": 16.293577981651374,
+ "grad_norm": 0.2583644688129425,
+ "learning_rate": 0.0006,
+ "loss": 4.073624134063721,
+ "step": 1173
+ },
+ {
+ "epoch": 16.307557885539538,
+ "grad_norm": 0.25437524914741516,
+ "learning_rate": 0.0006,
+ "loss": 4.057926654815674,
+ "step": 1174
+ },
+ {
+ "epoch": 16.321537789427698,
+ "grad_norm": 0.2819201350212097,
+ "learning_rate": 0.0006,
+ "loss": 4.020838737487793,
+ "step": 1175
+ },
+ {
+ "epoch": 16.335517693315857,
+ "grad_norm": 0.32689282298088074,
+ "learning_rate": 0.0006,
+ "loss": 4.062448501586914,
+ "step": 1176
+ },
+ {
+ "epoch": 16.34949759720402,
+ "grad_norm": 0.33002278208732605,
+ "learning_rate": 0.0006,
+ "loss": 4.052059173583984,
+ "step": 1177
+ },
+ {
+ "epoch": 16.36347750109218,
+ "grad_norm": 0.32472696900367737,
+ "learning_rate": 0.0006,
+ "loss": 4.042375564575195,
+ "step": 1178
+ },
+ {
+ "epoch": 16.37745740498034,
+ "grad_norm": 0.35279813408851624,
+ "learning_rate": 0.0006,
+ "loss": 4.028722763061523,
+ "step": 1179
+ },
+ {
+ "epoch": 16.3914373088685,
+ "grad_norm": 0.3243204951286316,
+ "learning_rate": 0.0006,
+ "loss": 4.045693874359131,
+ "step": 1180
+ },
+ {
+ "epoch": 16.405417212756664,
+ "grad_norm": 0.32171115279197693,
+ "learning_rate": 0.0006,
+ "loss": 4.018350124359131,
+ "step": 1181
+ },
+ {
+ "epoch": 16.419397116644824,
+ "grad_norm": 0.31459906697273254,
+ "learning_rate": 0.0006,
+ "loss": 4.039547443389893,
+ "step": 1182
+ },
+ {
+ "epoch": 16.433377020532983,
+ "grad_norm": 0.35038673877716064,
+ "learning_rate": 0.0006,
+ "loss": 4.005928039550781,
+ "step": 1183
+ },
+ {
+ "epoch": 16.447356924421143,
+ "grad_norm": 0.34110963344573975,
+ "learning_rate": 0.0006,
+ "loss": 4.042272090911865,
+ "step": 1184
+ },
+ {
+ "epoch": 16.461336828309307,
+ "grad_norm": 0.33760902285575867,
+ "learning_rate": 0.0006,
+ "loss": 4.02886962890625,
+ "step": 1185
+ },
+ {
+ "epoch": 16.475316732197467,
+ "grad_norm": 0.3162464499473572,
+ "learning_rate": 0.0006,
+ "loss": 4.059924125671387,
+ "step": 1186
+ },
+ {
+ "epoch": 16.489296636085626,
+ "grad_norm": 0.2667233645915985,
+ "learning_rate": 0.0006,
+ "loss": 4.069073677062988,
+ "step": 1187
+ },
+ {
+ "epoch": 16.503276539973786,
+ "grad_norm": 0.22626568377017975,
+ "learning_rate": 0.0006,
+ "loss": 4.044912338256836,
+ "step": 1188
+ },
+ {
+ "epoch": 16.51725644386195,
+ "grad_norm": 0.203303262591362,
+ "learning_rate": 0.0006,
+ "loss": 4.025210380554199,
+ "step": 1189
+ },
+ {
+ "epoch": 16.53123634775011,
+ "grad_norm": 0.2108820080757141,
+ "learning_rate": 0.0006,
+ "loss": 4.035998821258545,
+ "step": 1190
+ },
+ {
+ "epoch": 16.54521625163827,
+ "grad_norm": 0.20451335608959198,
+ "learning_rate": 0.0006,
+ "loss": 4.043377876281738,
+ "step": 1191
+ },
+ {
+ "epoch": 16.55919615552643,
+ "grad_norm": 0.23348836600780487,
+ "learning_rate": 0.0006,
+ "loss": 4.033735275268555,
+ "step": 1192
+ },
+ {
+ "epoch": 16.573176059414592,
+ "grad_norm": 0.24438607692718506,
+ "learning_rate": 0.0006,
+ "loss": 4.071747779846191,
+ "step": 1193
+ },
+ {
+ "epoch": 16.587155963302752,
+ "grad_norm": 0.24233631789684296,
+ "learning_rate": 0.0006,
+ "loss": 4.0138702392578125,
+ "step": 1194
+ },
+ {
+ "epoch": 16.601135867190912,
+ "grad_norm": 0.21625740826129913,
+ "learning_rate": 0.0006,
+ "loss": 4.013422012329102,
+ "step": 1195
+ },
+ {
+ "epoch": 16.615115771079076,
+ "grad_norm": 0.22447720170021057,
+ "learning_rate": 0.0006,
+ "loss": 4.056326866149902,
+ "step": 1196
+ },
+ {
+ "epoch": 16.629095674967235,
+ "grad_norm": 0.21899616718292236,
+ "learning_rate": 0.0006,
+ "loss": 4.006134033203125,
+ "step": 1197
+ },
+ {
+ "epoch": 16.643075578855395,
+ "grad_norm": 0.191362664103508,
+ "learning_rate": 0.0006,
+ "loss": 4.036748886108398,
+ "step": 1198
+ },
+ {
+ "epoch": 16.657055482743555,
+ "grad_norm": 0.20203463733196259,
+ "learning_rate": 0.0006,
+ "loss": 4.006264686584473,
+ "step": 1199
+ },
+ {
+ "epoch": 16.67103538663172,
+ "grad_norm": 0.20209139585494995,
+ "learning_rate": 0.0006,
+ "loss": 4.059018135070801,
+ "step": 1200
+ },
+ {
+ "epoch": 16.68501529051988,
+ "grad_norm": 0.20811820030212402,
+ "learning_rate": 0.0006,
+ "loss": 4.054325103759766,
+ "step": 1201
+ },
+ {
+ "epoch": 16.698995194408038,
+ "grad_norm": 0.22448928654193878,
+ "learning_rate": 0.0006,
+ "loss": 3.996121406555176,
+ "step": 1202
+ },
+ {
+ "epoch": 16.712975098296198,
+ "grad_norm": 0.21692240238189697,
+ "learning_rate": 0.0006,
+ "loss": 4.042046546936035,
+ "step": 1203
+ },
+ {
+ "epoch": 16.72695500218436,
+ "grad_norm": 0.20688563585281372,
+ "learning_rate": 0.0006,
+ "loss": 4.002251625061035,
+ "step": 1204
+ },
+ {
+ "epoch": 16.74093490607252,
+ "grad_norm": 0.1835535764694214,
+ "learning_rate": 0.0006,
+ "loss": 4.02545166015625,
+ "step": 1205
+ },
+ {
+ "epoch": 16.75491480996068,
+ "grad_norm": 0.20532558858394623,
+ "learning_rate": 0.0006,
+ "loss": 4.039333343505859,
+ "step": 1206
+ },
+ {
+ "epoch": 16.76889471384884,
+ "grad_norm": 0.2214215099811554,
+ "learning_rate": 0.0006,
+ "loss": 4.037858486175537,
+ "step": 1207
+ },
+ {
+ "epoch": 16.782874617737004,
+ "grad_norm": 0.24926038086414337,
+ "learning_rate": 0.0006,
+ "loss": 4.024799346923828,
+ "step": 1208
+ },
+ {
+ "epoch": 16.796854521625164,
+ "grad_norm": 0.26057952642440796,
+ "learning_rate": 0.0006,
+ "loss": 4.042788505554199,
+ "step": 1209
+ },
+ {
+ "epoch": 16.810834425513324,
+ "grad_norm": 0.2501208782196045,
+ "learning_rate": 0.0006,
+ "loss": 4.051809310913086,
+ "step": 1210
+ },
+ {
+ "epoch": 16.824814329401484,
+ "grad_norm": 0.21760012209415436,
+ "learning_rate": 0.0006,
+ "loss": 4.063589096069336,
+ "step": 1211
+ },
+ {
+ "epoch": 16.838794233289647,
+ "grad_norm": 0.2243622988462448,
+ "learning_rate": 0.0006,
+ "loss": 4.008829593658447,
+ "step": 1212
+ },
+ {
+ "epoch": 16.852774137177807,
+ "grad_norm": 0.2399163395166397,
+ "learning_rate": 0.0006,
+ "loss": 4.013262748718262,
+ "step": 1213
+ },
+ {
+ "epoch": 16.866754041065967,
+ "grad_norm": 0.23187831044197083,
+ "learning_rate": 0.0006,
+ "loss": 4.023053169250488,
+ "step": 1214
+ },
+ {
+ "epoch": 16.88073394495413,
+ "grad_norm": 0.23723892867565155,
+ "learning_rate": 0.0006,
+ "loss": 3.991321563720703,
+ "step": 1215
+ },
+ {
+ "epoch": 16.89471384884229,
+ "grad_norm": 0.21766342222690582,
+ "learning_rate": 0.0006,
+ "loss": 4.0250773429870605,
+ "step": 1216
+ },
+ {
+ "epoch": 16.90869375273045,
+ "grad_norm": 0.20715023577213287,
+ "learning_rate": 0.0006,
+ "loss": 4.063642978668213,
+ "step": 1217
+ },
+ {
+ "epoch": 16.92267365661861,
+ "grad_norm": 0.20165133476257324,
+ "learning_rate": 0.0006,
+ "loss": 3.9951367378234863,
+ "step": 1218
+ },
+ {
+ "epoch": 16.936653560506773,
+ "grad_norm": 0.19956178963184357,
+ "learning_rate": 0.0006,
+ "loss": 4.025641441345215,
+ "step": 1219
+ },
+ {
+ "epoch": 16.950633464394933,
+ "grad_norm": 0.2175494134426117,
+ "learning_rate": 0.0006,
+ "loss": 4.030346393585205,
+ "step": 1220
+ },
+ {
+ "epoch": 16.964613368283093,
+ "grad_norm": 0.22365593910217285,
+ "learning_rate": 0.0006,
+ "loss": 4.018105506896973,
+ "step": 1221
+ },
+ {
+ "epoch": 16.978593272171253,
+ "grad_norm": 0.21251538395881653,
+ "learning_rate": 0.0006,
+ "loss": 4.023580074310303,
+ "step": 1222
+ },
+ {
+ "epoch": 16.992573176059416,
+ "grad_norm": 0.2230125218629837,
+ "learning_rate": 0.0006,
+ "loss": 4.001980304718018,
+ "step": 1223
+ },
+ {
+ "epoch": 17.0,
+ "grad_norm": 0.24261972308158875,
+ "learning_rate": 0.0006,
+ "loss": 4.081348896026611,
+ "step": 1224
+ },
+ {
+ "epoch": 17.0,
+ "eval_loss": 4.225194931030273,
+ "eval_runtime": 44.247,
+ "eval_samples_per_second": 55.19,
+ "eval_steps_per_second": 3.458,
+ "step": 1224
+ },
+ {
+ "epoch": 17.01397990388816,
+ "grad_norm": 0.2438880205154419,
+ "learning_rate": 0.0006,
+ "loss": 4.0164794921875,
+ "step": 1225
+ },
+ {
+ "epoch": 17.027959807776323,
+ "grad_norm": 0.22459383308887482,
+ "learning_rate": 0.0006,
+ "loss": 3.991623878479004,
+ "step": 1226
+ },
+ {
+ "epoch": 17.041939711664483,
+ "grad_norm": 0.25021040439605713,
+ "learning_rate": 0.0006,
+ "loss": 4.003020286560059,
+ "step": 1227
+ },
+ {
+ "epoch": 17.055919615552643,
+ "grad_norm": 0.30358025431632996,
+ "learning_rate": 0.0006,
+ "loss": 3.980921983718872,
+ "step": 1228
+ },
+ {
+ "epoch": 17.069899519440803,
+ "grad_norm": 0.27313271164894104,
+ "learning_rate": 0.0006,
+ "loss": 3.992398977279663,
+ "step": 1229
+ },
+ {
+ "epoch": 17.083879423328966,
+ "grad_norm": 0.2293211966753006,
+ "learning_rate": 0.0006,
+ "loss": 4.02568244934082,
+ "step": 1230
+ },
+ {
+ "epoch": 17.097859327217126,
+ "grad_norm": 0.2363300621509552,
+ "learning_rate": 0.0006,
+ "loss": 3.977229356765747,
+ "step": 1231
+ },
+ {
+ "epoch": 17.111839231105286,
+ "grad_norm": 0.2809674143791199,
+ "learning_rate": 0.0006,
+ "loss": 3.9720497131347656,
+ "step": 1232
+ },
+ {
+ "epoch": 17.125819134993446,
+ "grad_norm": 0.2913855016231537,
+ "learning_rate": 0.0006,
+ "loss": 3.979529857635498,
+ "step": 1233
+ },
+ {
+ "epoch": 17.13979903888161,
+ "grad_norm": 0.2920287251472473,
+ "learning_rate": 0.0006,
+ "loss": 3.9678473472595215,
+ "step": 1234
+ },
+ {
+ "epoch": 17.15377894276977,
+ "grad_norm": 0.2521543502807617,
+ "learning_rate": 0.0006,
+ "loss": 3.9912607669830322,
+ "step": 1235
+ },
+ {
+ "epoch": 17.16775884665793,
+ "grad_norm": 0.22844268381595612,
+ "learning_rate": 0.0006,
+ "loss": 3.9898228645324707,
+ "step": 1236
+ },
+ {
+ "epoch": 17.18173875054609,
+ "grad_norm": 0.2199884057044983,
+ "learning_rate": 0.0006,
+ "loss": 4.0050740242004395,
+ "step": 1237
+ },
+ {
+ "epoch": 17.195718654434252,
+ "grad_norm": 0.23072892427444458,
+ "learning_rate": 0.0006,
+ "loss": 3.9957475662231445,
+ "step": 1238
+ },
+ {
+ "epoch": 17.209698558322412,
+ "grad_norm": 0.2034899890422821,
+ "learning_rate": 0.0006,
+ "loss": 3.9672317504882812,
+ "step": 1239
+ },
+ {
+ "epoch": 17.22367846221057,
+ "grad_norm": 0.21826180815696716,
+ "learning_rate": 0.0006,
+ "loss": 3.98543119430542,
+ "step": 1240
+ },
+ {
+ "epoch": 17.23765836609873,
+ "grad_norm": 0.21203237771987915,
+ "learning_rate": 0.0006,
+ "loss": 3.9971959590911865,
+ "step": 1241
+ },
+ {
+ "epoch": 17.251638269986895,
+ "grad_norm": 0.22139234840869904,
+ "learning_rate": 0.0006,
+ "loss": 4.017539978027344,
+ "step": 1242
+ },
+ {
+ "epoch": 17.265618173875055,
+ "grad_norm": 0.21553276479244232,
+ "learning_rate": 0.0006,
+ "loss": 3.98740553855896,
+ "step": 1243
+ },
+ {
+ "epoch": 17.279598077763215,
+ "grad_norm": 0.23259080946445465,
+ "learning_rate": 0.0006,
+ "loss": 3.9963035583496094,
+ "step": 1244
+ },
+ {
+ "epoch": 17.293577981651374,
+ "grad_norm": 0.2527932822704315,
+ "learning_rate": 0.0006,
+ "loss": 4.0202956199646,
+ "step": 1245
+ },
+ {
+ "epoch": 17.307557885539538,
+ "grad_norm": 0.28669068217277527,
+ "learning_rate": 0.0006,
+ "loss": 3.9947609901428223,
+ "step": 1246
+ },
+ {
+ "epoch": 17.321537789427698,
+ "grad_norm": 0.341602623462677,
+ "learning_rate": 0.0006,
+ "loss": 3.997032642364502,
+ "step": 1247
+ },
+ {
+ "epoch": 17.335517693315857,
+ "grad_norm": 0.3364104926586151,
+ "learning_rate": 0.0006,
+ "loss": 3.9881834983825684,
+ "step": 1248
+ },
+ {
+ "epoch": 17.34949759720402,
+ "grad_norm": 0.2979278266429901,
+ "learning_rate": 0.0006,
+ "loss": 4.045898914337158,
+ "step": 1249
+ },
+ {
+ "epoch": 17.36347750109218,
+ "grad_norm": 0.2857462465763092,
+ "learning_rate": 0.0006,
+ "loss": 4.0085272789001465,
+ "step": 1250
+ },
+ {
+ "epoch": 17.37745740498034,
+ "grad_norm": 0.2689058780670166,
+ "learning_rate": 0.0006,
+ "loss": 4.021465301513672,
+ "step": 1251
+ },
+ {
+ "epoch": 17.3914373088685,
+ "grad_norm": 0.24943363666534424,
+ "learning_rate": 0.0006,
+ "loss": 4.003451347351074,
+ "step": 1252
+ },
+ {
+ "epoch": 17.405417212756664,
+ "grad_norm": 0.2635347843170166,
+ "learning_rate": 0.0006,
+ "loss": 3.9837827682495117,
+ "step": 1253
+ },
+ {
+ "epoch": 17.419397116644824,
+ "grad_norm": 0.29126450419425964,
+ "learning_rate": 0.0006,
+ "loss": 3.9857311248779297,
+ "step": 1254
+ },
+ {
+ "epoch": 17.433377020532983,
+ "grad_norm": 0.3166918456554413,
+ "learning_rate": 0.0006,
+ "loss": 3.9842967987060547,
+ "step": 1255
+ },
+ {
+ "epoch": 17.447356924421143,
+ "grad_norm": 0.27869969606399536,
+ "learning_rate": 0.0006,
+ "loss": 4.012607574462891,
+ "step": 1256
+ },
+ {
+ "epoch": 17.461336828309307,
+ "grad_norm": 0.23719419538974762,
+ "learning_rate": 0.0006,
+ "loss": 3.981034755706787,
+ "step": 1257
+ },
+ {
+ "epoch": 17.475316732197467,
+ "grad_norm": 0.22687610983848572,
+ "learning_rate": 0.0006,
+ "loss": 4.011059761047363,
+ "step": 1258
+ },
+ {
+ "epoch": 17.489296636085626,
+ "grad_norm": 0.22034095227718353,
+ "learning_rate": 0.0006,
+ "loss": 4.015044689178467,
+ "step": 1259
+ },
+ {
+ "epoch": 17.503276539973786,
+ "grad_norm": 0.21208405494689941,
+ "learning_rate": 0.0006,
+ "loss": 4.003793716430664,
+ "step": 1260
+ },
+ {
+ "epoch": 17.51725644386195,
+ "grad_norm": 0.21759214997291565,
+ "learning_rate": 0.0006,
+ "loss": 3.978652238845825,
+ "step": 1261
+ },
+ {
+ "epoch": 17.53123634775011,
+ "grad_norm": 0.22481068968772888,
+ "learning_rate": 0.0006,
+ "loss": 4.034845352172852,
+ "step": 1262
+ },
+ {
+ "epoch": 17.54521625163827,
+ "grad_norm": 0.20376387238502502,
+ "learning_rate": 0.0006,
+ "loss": 3.990541934967041,
+ "step": 1263
+ },
+ {
+ "epoch": 17.55919615552643,
+ "grad_norm": 0.20459355413913727,
+ "learning_rate": 0.0006,
+ "loss": 4.006990432739258,
+ "step": 1264
+ },
+ {
+ "epoch": 17.573176059414592,
+ "grad_norm": 0.19306913018226624,
+ "learning_rate": 0.0006,
+ "loss": 3.993408679962158,
+ "step": 1265
+ },
+ {
+ "epoch": 17.587155963302752,
+ "grad_norm": 0.20727239549160004,
+ "learning_rate": 0.0006,
+ "loss": 3.988016128540039,
+ "step": 1266
+ },
+ {
+ "epoch": 17.601135867190912,
+ "grad_norm": 0.20213133096694946,
+ "learning_rate": 0.0006,
+ "loss": 4.0120368003845215,
+ "step": 1267
+ },
+ {
+ "epoch": 17.615115771079076,
+ "grad_norm": 0.21074117720127106,
+ "learning_rate": 0.0006,
+ "loss": 4.048871040344238,
+ "step": 1268
+ },
+ {
+ "epoch": 17.629095674967235,
+ "grad_norm": 0.2074330598115921,
+ "learning_rate": 0.0006,
+ "loss": 3.997509002685547,
+ "step": 1269
+ },
+ {
+ "epoch": 17.643075578855395,
+ "grad_norm": 0.20383669435977936,
+ "learning_rate": 0.0006,
+ "loss": 4.0028839111328125,
+ "step": 1270
+ },
+ {
+ "epoch": 17.657055482743555,
+ "grad_norm": 0.2060765027999878,
+ "learning_rate": 0.0006,
+ "loss": 3.998032331466675,
+ "step": 1271
+ },
+ {
+ "epoch": 17.67103538663172,
+ "grad_norm": 0.21851404011249542,
+ "learning_rate": 0.0006,
+ "loss": 3.9928741455078125,
+ "step": 1272
+ },
+ {
+ "epoch": 17.68501529051988,
+ "grad_norm": 0.24324250221252441,
+ "learning_rate": 0.0006,
+ "loss": 3.9896507263183594,
+ "step": 1273
+ },
+ {
+ "epoch": 17.698995194408038,
+ "grad_norm": 0.25584331154823303,
+ "learning_rate": 0.0006,
+ "loss": 4.010485649108887,
+ "step": 1274
+ },
+ {
+ "epoch": 17.712975098296198,
+ "grad_norm": 0.2490610033273697,
+ "learning_rate": 0.0006,
+ "loss": 3.9906954765319824,
+ "step": 1275
+ },
+ {
+ "epoch": 17.72695500218436,
+ "grad_norm": 0.24241414666175842,
+ "learning_rate": 0.0006,
+ "loss": 4.016420364379883,
+ "step": 1276
+ },
+ {
+ "epoch": 17.74093490607252,
+ "grad_norm": 0.2222128063440323,
+ "learning_rate": 0.0006,
+ "loss": 4.009827136993408,
+ "step": 1277
+ },
+ {
+ "epoch": 17.75491480996068,
+ "grad_norm": 0.23119516670703888,
+ "learning_rate": 0.0006,
+ "loss": 4.0034589767456055,
+ "step": 1278
+ },
+ {
+ "epoch": 17.76889471384884,
+ "grad_norm": 0.24596457183361053,
+ "learning_rate": 0.0006,
+ "loss": 4.003161907196045,
+ "step": 1279
+ },
+ {
+ "epoch": 17.782874617737004,
+ "grad_norm": 0.2607562839984894,
+ "learning_rate": 0.0006,
+ "loss": 3.9894633293151855,
+ "step": 1280
+ },
+ {
+ "epoch": 17.796854521625164,
+ "grad_norm": 0.28706878423690796,
+ "learning_rate": 0.0006,
+ "loss": 4.005712985992432,
+ "step": 1281
+ },
+ {
+ "epoch": 17.810834425513324,
+ "grad_norm": 0.27178290486335754,
+ "learning_rate": 0.0006,
+ "loss": 3.9784536361694336,
+ "step": 1282
+ },
+ {
+ "epoch": 17.824814329401484,
+ "grad_norm": 0.27962708473205566,
+ "learning_rate": 0.0006,
+ "loss": 4.012705326080322,
+ "step": 1283
+ },
+ {
+ "epoch": 17.838794233289647,
+ "grad_norm": 0.29147693514823914,
+ "learning_rate": 0.0006,
+ "loss": 4.0159783363342285,
+ "step": 1284
+ },
+ {
+ "epoch": 17.852774137177807,
+ "grad_norm": 0.2841821312904358,
+ "learning_rate": 0.0006,
+ "loss": 4.011552810668945,
+ "step": 1285
+ },
+ {
+ "epoch": 17.866754041065967,
+ "grad_norm": 0.24924969673156738,
+ "learning_rate": 0.0006,
+ "loss": 3.992421865463257,
+ "step": 1286
+ },
+ {
+ "epoch": 17.88073394495413,
+ "grad_norm": 0.24850749969482422,
+ "learning_rate": 0.0006,
+ "loss": 3.974897861480713,
+ "step": 1287
+ },
+ {
+ "epoch": 17.89471384884229,
+ "grad_norm": 0.2409554123878479,
+ "learning_rate": 0.0006,
+ "loss": 4.002941131591797,
+ "step": 1288
+ },
+ {
+ "epoch": 17.90869375273045,
+ "grad_norm": 0.2656126320362091,
+ "learning_rate": 0.0006,
+ "loss": 3.9804210662841797,
+ "step": 1289
+ },
+ {
+ "epoch": 17.92267365661861,
+ "grad_norm": 0.28210243582725525,
+ "learning_rate": 0.0006,
+ "loss": 4.007192134857178,
+ "step": 1290
+ },
+ {
+ "epoch": 17.936653560506773,
+ "grad_norm": 0.28427553176879883,
+ "learning_rate": 0.0006,
+ "loss": 3.9739556312561035,
+ "step": 1291
+ },
+ {
+ "epoch": 17.950633464394933,
+ "grad_norm": 0.28893420100212097,
+ "learning_rate": 0.0006,
+ "loss": 4.004766941070557,
+ "step": 1292
+ },
+ {
+ "epoch": 17.964613368283093,
+ "grad_norm": 0.2831471562385559,
+ "learning_rate": 0.0006,
+ "loss": 3.984936237335205,
+ "step": 1293
+ },
+ {
+ "epoch": 17.978593272171253,
+ "grad_norm": 0.2518300712108612,
+ "learning_rate": 0.0006,
+ "loss": 4.002814292907715,
+ "step": 1294
+ },
+ {
+ "epoch": 17.992573176059416,
+ "grad_norm": 0.24264675378799438,
+ "learning_rate": 0.0006,
+ "loss": 3.998900890350342,
+ "step": 1295
+ },
+ {
+ "epoch": 18.0,
+ "grad_norm": 0.24474996328353882,
+ "learning_rate": 0.0006,
+ "loss": 3.974229335784912,
+ "step": 1296
+ },
+ {
+ "epoch": 18.0,
+ "eval_loss": 4.195685863494873,
+ "eval_runtime": 44.0709,
+ "eval_samples_per_second": 55.411,
+ "eval_steps_per_second": 3.472,
+ "step": 1296
+ },
+ {
+ "epoch": 18.01397990388816,
+ "grad_norm": 0.2553016245365143,
+ "learning_rate": 0.0006,
+ "loss": 3.9522247314453125,
+ "step": 1297
+ },
+ {
+ "epoch": 18.027959807776323,
+ "grad_norm": 0.22350727021694183,
+ "learning_rate": 0.0006,
+ "loss": 3.9850122928619385,
+ "step": 1298
+ },
+ {
+ "epoch": 18.041939711664483,
+ "grad_norm": 0.23935550451278687,
+ "learning_rate": 0.0006,
+ "loss": 3.9758832454681396,
+ "step": 1299
+ },
+ {
+ "epoch": 18.055919615552643,
+ "grad_norm": 0.23868797719478607,
+ "learning_rate": 0.0006,
+ "loss": 3.9567959308624268,
+ "step": 1300
+ },
+ {
+ "epoch": 18.069899519440803,
+ "grad_norm": 0.23102357983589172,
+ "learning_rate": 0.0006,
+ "loss": 3.9399867057800293,
+ "step": 1301
+ },
+ {
+ "epoch": 18.083879423328966,
+ "grad_norm": 0.23706983029842377,
+ "learning_rate": 0.0006,
+ "loss": 3.993434190750122,
+ "step": 1302
+ },
+ {
+ "epoch": 18.097859327217126,
+ "grad_norm": 0.22207573056221008,
+ "learning_rate": 0.0006,
+ "loss": 3.993436574935913,
+ "step": 1303
+ },
+ {
+ "epoch": 18.111839231105286,
+ "grad_norm": 0.23975296318531036,
+ "learning_rate": 0.0006,
+ "loss": 3.981943368911743,
+ "step": 1304
+ },
+ {
+ "epoch": 18.125819134993446,
+ "grad_norm": 0.2520582675933838,
+ "learning_rate": 0.0006,
+ "loss": 3.965493679046631,
+ "step": 1305
+ },
+ {
+ "epoch": 18.13979903888161,
+ "grad_norm": 0.2230956256389618,
+ "learning_rate": 0.0006,
+ "loss": 3.9360928535461426,
+ "step": 1306
+ },
+ {
+ "epoch": 18.15377894276977,
+ "grad_norm": 0.22527500987052917,
+ "learning_rate": 0.0006,
+ "loss": 3.9814581871032715,
+ "step": 1307
+ },
+ {
+ "epoch": 18.16775884665793,
+ "grad_norm": 0.22389626502990723,
+ "learning_rate": 0.0006,
+ "loss": 3.961590051651001,
+ "step": 1308
+ },
+ {
+ "epoch": 18.18173875054609,
+ "grad_norm": 0.22279471158981323,
+ "learning_rate": 0.0006,
+ "loss": 3.952338695526123,
+ "step": 1309
+ },
+ {
+ "epoch": 18.195718654434252,
+ "grad_norm": 0.24635115265846252,
+ "learning_rate": 0.0006,
+ "loss": 3.9693849086761475,
+ "step": 1310
+ },
+ {
+ "epoch": 18.209698558322412,
+ "grad_norm": 0.2757279872894287,
+ "learning_rate": 0.0006,
+ "loss": 3.9956700801849365,
+ "step": 1311
+ },
+ {
+ "epoch": 18.22367846221057,
+ "grad_norm": 0.2619115710258484,
+ "learning_rate": 0.0006,
+ "loss": 3.948878765106201,
+ "step": 1312
+ },
+ {
+ "epoch": 18.23765836609873,
+ "grad_norm": 0.22853828966617584,
+ "learning_rate": 0.0006,
+ "loss": 3.9545674324035645,
+ "step": 1313
+ },
+ {
+ "epoch": 18.251638269986895,
+ "grad_norm": 0.22904761135578156,
+ "learning_rate": 0.0006,
+ "loss": 3.947535991668701,
+ "step": 1314
+ },
+ {
+ "epoch": 18.265618173875055,
+ "grad_norm": 0.23592644929885864,
+ "learning_rate": 0.0006,
+ "loss": 3.971926212310791,
+ "step": 1315
+ },
+ {
+ "epoch": 18.279598077763215,
+ "grad_norm": 0.22120243310928345,
+ "learning_rate": 0.0006,
+ "loss": 3.9471049308776855,
+ "step": 1316
+ },
+ {
+ "epoch": 18.293577981651374,
+ "grad_norm": 0.20308749377727509,
+ "learning_rate": 0.0006,
+ "loss": 3.967449188232422,
+ "step": 1317
+ },
+ {
+ "epoch": 18.307557885539538,
+ "grad_norm": 0.20013529062271118,
+ "learning_rate": 0.0006,
+ "loss": 3.966151237487793,
+ "step": 1318
+ },
+ {
+ "epoch": 18.321537789427698,
+ "grad_norm": 0.20635221898555756,
+ "learning_rate": 0.0006,
+ "loss": 3.9908885955810547,
+ "step": 1319
+ },
+ {
+ "epoch": 18.335517693315857,
+ "grad_norm": 0.2232237160205841,
+ "learning_rate": 0.0006,
+ "loss": 3.9488768577575684,
+ "step": 1320
+ },
+ {
+ "epoch": 18.34949759720402,
+ "grad_norm": 0.21916444599628448,
+ "learning_rate": 0.0006,
+ "loss": 3.973428726196289,
+ "step": 1321
+ },
+ {
+ "epoch": 18.36347750109218,
+ "grad_norm": 0.20427337288856506,
+ "learning_rate": 0.0006,
+ "loss": 3.969332695007324,
+ "step": 1322
+ },
+ {
+ "epoch": 18.37745740498034,
+ "grad_norm": 0.20138131082057953,
+ "learning_rate": 0.0006,
+ "loss": 3.9651856422424316,
+ "step": 1323
+ },
+ {
+ "epoch": 18.3914373088685,
+ "grad_norm": 0.18918880820274353,
+ "learning_rate": 0.0006,
+ "loss": 3.9772281646728516,
+ "step": 1324
+ },
+ {
+ "epoch": 18.405417212756664,
+ "grad_norm": 0.1860039383172989,
+ "learning_rate": 0.0006,
+ "loss": 3.9289052486419678,
+ "step": 1325
+ },
+ {
+ "epoch": 18.419397116644824,
+ "grad_norm": 0.19541646540164948,
+ "learning_rate": 0.0006,
+ "loss": 3.9527673721313477,
+ "step": 1326
+ },
+ {
+ "epoch": 18.433377020532983,
+ "grad_norm": 0.206914022564888,
+ "learning_rate": 0.0006,
+ "loss": 3.99316143989563,
+ "step": 1327
+ },
+ {
+ "epoch": 18.447356924421143,
+ "grad_norm": 0.209097757935524,
+ "learning_rate": 0.0006,
+ "loss": 3.978130340576172,
+ "step": 1328
+ },
+ {
+ "epoch": 18.461336828309307,
+ "grad_norm": 0.22163373231887817,
+ "learning_rate": 0.0006,
+ "loss": 3.951460361480713,
+ "step": 1329
+ },
+ {
+ "epoch": 18.475316732197467,
+ "grad_norm": 0.21446120738983154,
+ "learning_rate": 0.0006,
+ "loss": 3.963571071624756,
+ "step": 1330
+ },
+ {
+ "epoch": 18.489296636085626,
+ "grad_norm": 0.2341388761997223,
+ "learning_rate": 0.0006,
+ "loss": 4.010684013366699,
+ "step": 1331
+ },
+ {
+ "epoch": 18.503276539973786,
+ "grad_norm": 0.2433937042951584,
+ "learning_rate": 0.0006,
+ "loss": 3.987537384033203,
+ "step": 1332
+ },
+ {
+ "epoch": 18.51725644386195,
+ "grad_norm": 0.24916228652000427,
+ "learning_rate": 0.0006,
+ "loss": 3.953075647354126,
+ "step": 1333
+ },
+ {
+ "epoch": 18.53123634775011,
+ "grad_norm": 0.24542421102523804,
+ "learning_rate": 0.0006,
+ "loss": 3.9510841369628906,
+ "step": 1334
+ },
+ {
+ "epoch": 18.54521625163827,
+ "grad_norm": 0.2393690049648285,
+ "learning_rate": 0.0006,
+ "loss": 3.981747627258301,
+ "step": 1335
+ },
+ {
+ "epoch": 18.55919615552643,
+ "grad_norm": 0.22806711494922638,
+ "learning_rate": 0.0006,
+ "loss": 3.9714856147766113,
+ "step": 1336
+ },
+ {
+ "epoch": 18.573176059414592,
+ "grad_norm": 0.21948303282260895,
+ "learning_rate": 0.0006,
+ "loss": 3.9429898262023926,
+ "step": 1337
+ },
+ {
+ "epoch": 18.587155963302752,
+ "grad_norm": 0.21575778722763062,
+ "learning_rate": 0.0006,
+ "loss": 3.9639933109283447,
+ "step": 1338
+ },
+ {
+ "epoch": 18.601135867190912,
+ "grad_norm": 0.23370565474033356,
+ "learning_rate": 0.0006,
+ "loss": 3.9819254875183105,
+ "step": 1339
+ },
+ {
+ "epoch": 18.615115771079076,
+ "grad_norm": 0.2613106369972229,
+ "learning_rate": 0.0006,
+ "loss": 3.9654669761657715,
+ "step": 1340
+ },
+ {
+ "epoch": 18.629095674967235,
+ "grad_norm": 0.26682716608047485,
+ "learning_rate": 0.0006,
+ "loss": 3.9832968711853027,
+ "step": 1341
+ },
+ {
+ "epoch": 18.643075578855395,
+ "grad_norm": 0.24331490695476532,
+ "learning_rate": 0.0006,
+ "loss": 3.9926600456237793,
+ "step": 1342
+ },
+ {
+ "epoch": 18.657055482743555,
+ "grad_norm": 0.2459341287612915,
+ "learning_rate": 0.0006,
+ "loss": 3.9508986473083496,
+ "step": 1343
+ },
+ {
+ "epoch": 18.67103538663172,
+ "grad_norm": 0.26395753026008606,
+ "learning_rate": 0.0006,
+ "loss": 3.961359977722168,
+ "step": 1344
+ },
+ {
+ "epoch": 18.68501529051988,
+ "grad_norm": 0.26049068570137024,
+ "learning_rate": 0.0006,
+ "loss": 3.9763245582580566,
+ "step": 1345
+ },
+ {
+ "epoch": 18.698995194408038,
+ "grad_norm": 0.24018602073192596,
+ "learning_rate": 0.0006,
+ "loss": 3.951780319213867,
+ "step": 1346
+ },
+ {
+ "epoch": 18.712975098296198,
+ "grad_norm": 0.23886290192604065,
+ "learning_rate": 0.0006,
+ "loss": 3.9883017539978027,
+ "step": 1347
+ },
+ {
+ "epoch": 18.72695500218436,
+ "grad_norm": 0.2293774038553238,
+ "learning_rate": 0.0006,
+ "loss": 3.9852685928344727,
+ "step": 1348
+ },
+ {
+ "epoch": 18.74093490607252,
+ "grad_norm": 0.22172975540161133,
+ "learning_rate": 0.0006,
+ "loss": 3.967550277709961,
+ "step": 1349
+ },
+ {
+ "epoch": 18.75491480996068,
+ "grad_norm": 0.2170475423336029,
+ "learning_rate": 0.0006,
+ "loss": 3.9570775032043457,
+ "step": 1350
+ },
+ {
+ "epoch": 18.76889471384884,
+ "grad_norm": 0.21458806097507477,
+ "learning_rate": 0.0006,
+ "loss": 3.9461212158203125,
+ "step": 1351
+ },
+ {
+ "epoch": 18.782874617737004,
+ "grad_norm": 0.21101507544517517,
+ "learning_rate": 0.0006,
+ "loss": 3.984398365020752,
+ "step": 1352
+ },
+ {
+ "epoch": 18.796854521625164,
+ "grad_norm": 0.23480583727359772,
+ "learning_rate": 0.0006,
+ "loss": 3.950312614440918,
+ "step": 1353
+ },
+ {
+ "epoch": 18.810834425513324,
+ "grad_norm": 0.24728581309318542,
+ "learning_rate": 0.0006,
+ "loss": 3.9572393894195557,
+ "step": 1354
+ },
+ {
+ "epoch": 18.824814329401484,
+ "grad_norm": 0.26063451170921326,
+ "learning_rate": 0.0006,
+ "loss": 3.9653234481811523,
+ "step": 1355
+ },
+ {
+ "epoch": 18.838794233289647,
+ "grad_norm": 0.24679961800575256,
+ "learning_rate": 0.0006,
+ "loss": 3.9560108184814453,
+ "step": 1356
+ },
+ {
+ "epoch": 18.852774137177807,
+ "grad_norm": 0.23199526965618134,
+ "learning_rate": 0.0006,
+ "loss": 3.9948246479034424,
+ "step": 1357
+ },
+ {
+ "epoch": 18.866754041065967,
+ "grad_norm": 0.22619125247001648,
+ "learning_rate": 0.0006,
+ "loss": 3.9783573150634766,
+ "step": 1358
+ },
+ {
+ "epoch": 18.88073394495413,
+ "grad_norm": 0.25499874353408813,
+ "learning_rate": 0.0006,
+ "loss": 3.9674575328826904,
+ "step": 1359
+ },
+ {
+ "epoch": 18.89471384884229,
+ "grad_norm": 0.23961037397384644,
+ "learning_rate": 0.0006,
+ "loss": 3.969209909439087,
+ "step": 1360
+ },
+ {
+ "epoch": 18.90869375273045,
+ "grad_norm": 0.21039162576198578,
+ "learning_rate": 0.0006,
+ "loss": 3.978661060333252,
+ "step": 1361
+ },
+ {
+ "epoch": 18.92267365661861,
+ "grad_norm": 0.2297026664018631,
+ "learning_rate": 0.0006,
+ "loss": 3.9483046531677246,
+ "step": 1362
+ },
+ {
+ "epoch": 18.936653560506773,
+ "grad_norm": 0.26367098093032837,
+ "learning_rate": 0.0006,
+ "loss": 3.927133560180664,
+ "step": 1363
+ },
+ {
+ "epoch": 18.950633464394933,
+ "grad_norm": 0.26893147826194763,
+ "learning_rate": 0.0006,
+ "loss": 3.957932710647583,
+ "step": 1364
+ },
+ {
+ "epoch": 18.964613368283093,
+ "grad_norm": 0.27092233300209045,
+ "learning_rate": 0.0006,
+ "loss": 3.976621150970459,
+ "step": 1365
+ },
+ {
+ "epoch": 18.978593272171253,
+ "grad_norm": 0.2672635018825531,
+ "learning_rate": 0.0006,
+ "loss": 3.9577765464782715,
+ "step": 1366
+ },
+ {
+ "epoch": 18.992573176059416,
+ "grad_norm": 0.2721385359764099,
+ "learning_rate": 0.0006,
+ "loss": 3.986100196838379,
+ "step": 1367
+ },
+ {
+ "epoch": 19.0,
+ "grad_norm": 0.27648621797561646,
+ "learning_rate": 0.0006,
+ "loss": 3.9942402839660645,
+ "step": 1368
+ },
+ {
+ "epoch": 19.0,
+ "eval_loss": 4.180216312408447,
+ "eval_runtime": 44.0079,
+ "eval_samples_per_second": 55.49,
+ "eval_steps_per_second": 3.477,
+ "step": 1368
+ },
+ {
+ "epoch": 19.01397990388816,
+ "grad_norm": 0.2563098073005676,
+ "learning_rate": 0.0006,
+ "loss": 3.9267354011535645,
+ "step": 1369
+ },
+ {
+ "epoch": 19.027959807776323,
+ "grad_norm": 0.2531425952911377,
+ "learning_rate": 0.0006,
+ "loss": 3.9273324012756348,
+ "step": 1370
+ },
+ {
+ "epoch": 19.041939711664483,
+ "grad_norm": 0.27485427260398865,
+ "learning_rate": 0.0006,
+ "loss": 3.9542183876037598,
+ "step": 1371
+ },
+ {
+ "epoch": 19.055919615552643,
+ "grad_norm": 0.27509891986846924,
+ "learning_rate": 0.0006,
+ "loss": 3.921940326690674,
+ "step": 1372
+ },
+ {
+ "epoch": 19.069899519440803,
+ "grad_norm": 0.28154096007347107,
+ "learning_rate": 0.0006,
+ "loss": 3.926743984222412,
+ "step": 1373
+ },
+ {
+ "epoch": 19.083879423328966,
+ "grad_norm": 0.2749912738800049,
+ "learning_rate": 0.0006,
+ "loss": 3.9257748126983643,
+ "step": 1374
+ },
+ {
+ "epoch": 19.097859327217126,
+ "grad_norm": 0.26168501377105713,
+ "learning_rate": 0.0006,
+ "loss": 3.9403202533721924,
+ "step": 1375
+ },
+ {
+ "epoch": 19.111839231105286,
+ "grad_norm": 0.23410023748874664,
+ "learning_rate": 0.0006,
+ "loss": 3.935378313064575,
+ "step": 1376
+ },
+ {
+ "epoch": 19.125819134993446,
+ "grad_norm": 0.25790470838546753,
+ "learning_rate": 0.0006,
+ "loss": 3.946147918701172,
+ "step": 1377
+ },
+ {
+ "epoch": 19.13979903888161,
+ "grad_norm": 0.26704177260398865,
+ "learning_rate": 0.0006,
+ "loss": 3.9511594772338867,
+ "step": 1378
+ },
+ {
+ "epoch": 19.15377894276977,
+ "grad_norm": 0.2560667097568512,
+ "learning_rate": 0.0006,
+ "loss": 3.915806531906128,
+ "step": 1379
+ },
+ {
+ "epoch": 19.16775884665793,
+ "grad_norm": 0.24684149026870728,
+ "learning_rate": 0.0006,
+ "loss": 3.9162003993988037,
+ "step": 1380
+ },
+ {
+ "epoch": 19.18173875054609,
+ "grad_norm": 0.2097567766904831,
+ "learning_rate": 0.0006,
+ "loss": 3.915739059448242,
+ "step": 1381
+ },
+ {
+ "epoch": 19.195718654434252,
+ "grad_norm": 0.21646849811077118,
+ "learning_rate": 0.0006,
+ "loss": 3.9097084999084473,
+ "step": 1382
+ },
+ {
+ "epoch": 19.209698558322412,
+ "grad_norm": 0.20626980066299438,
+ "learning_rate": 0.0006,
+ "loss": 3.9541783332824707,
+ "step": 1383
+ },
+ {
+ "epoch": 19.22367846221057,
+ "grad_norm": 0.23362718522548676,
+ "learning_rate": 0.0006,
+ "loss": 3.950096845626831,
+ "step": 1384
+ },
+ {
+ "epoch": 19.23765836609873,
+ "grad_norm": 0.25402209162712097,
+ "learning_rate": 0.0006,
+ "loss": 3.927671432495117,
+ "step": 1385
+ },
+ {
+ "epoch": 19.251638269986895,
+ "grad_norm": 0.23714083433151245,
+ "learning_rate": 0.0006,
+ "loss": 3.939765453338623,
+ "step": 1386
+ },
+ {
+ "epoch": 19.265618173875055,
+ "grad_norm": 0.20895546674728394,
+ "learning_rate": 0.0006,
+ "loss": 3.9384806156158447,
+ "step": 1387
+ },
+ {
+ "epoch": 19.279598077763215,
+ "grad_norm": 0.21374300122261047,
+ "learning_rate": 0.0006,
+ "loss": 3.9523749351501465,
+ "step": 1388
+ },
+ {
+ "epoch": 19.293577981651374,
+ "grad_norm": 0.210394486784935,
+ "learning_rate": 0.0006,
+ "loss": 3.9540798664093018,
+ "step": 1389
+ },
+ {
+ "epoch": 19.307557885539538,
+ "grad_norm": 0.20646725594997406,
+ "learning_rate": 0.0006,
+ "loss": 3.9514098167419434,
+ "step": 1390
+ },
+ {
+ "epoch": 19.321537789427698,
+ "grad_norm": 0.21477538347244263,
+ "learning_rate": 0.0006,
+ "loss": 3.9369924068450928,
+ "step": 1391
+ },
+ {
+ "epoch": 19.335517693315857,
+ "grad_norm": 0.20431505143642426,
+ "learning_rate": 0.0006,
+ "loss": 3.9389796257019043,
+ "step": 1392
+ },
+ {
+ "epoch": 19.34949759720402,
+ "grad_norm": 0.19575877487659454,
+ "learning_rate": 0.0006,
+ "loss": 3.935976028442383,
+ "step": 1393
+ },
+ {
+ "epoch": 19.36347750109218,
+ "grad_norm": 0.20720405876636505,
+ "learning_rate": 0.0006,
+ "loss": 3.9670963287353516,
+ "step": 1394
+ },
+ {
+ "epoch": 19.37745740498034,
+ "grad_norm": 0.2173967957496643,
+ "learning_rate": 0.0006,
+ "loss": 3.903940439224243,
+ "step": 1395
+ },
+ {
+ "epoch": 19.3914373088685,
+ "grad_norm": 0.2180529683828354,
+ "learning_rate": 0.0006,
+ "loss": 3.8716301918029785,
+ "step": 1396
+ },
+ {
+ "epoch": 19.405417212756664,
+ "grad_norm": 0.20666591823101044,
+ "learning_rate": 0.0006,
+ "loss": 3.930936813354492,
+ "step": 1397
+ },
+ {
+ "epoch": 19.419397116644824,
+ "grad_norm": 0.20353034138679504,
+ "learning_rate": 0.0006,
+ "loss": 3.926954746246338,
+ "step": 1398
+ },
+ {
+ "epoch": 19.433377020532983,
+ "grad_norm": 0.22333289682865143,
+ "learning_rate": 0.0006,
+ "loss": 3.947504997253418,
+ "step": 1399
+ },
+ {
+ "epoch": 19.447356924421143,
+ "grad_norm": 0.21787697076797485,
+ "learning_rate": 0.0006,
+ "loss": 3.9325344562530518,
+ "step": 1400
+ },
+ {
+ "epoch": 19.461336828309307,
+ "grad_norm": 0.22805874049663544,
+ "learning_rate": 0.0006,
+ "loss": 3.9640727043151855,
+ "step": 1401
+ },
+ {
+ "epoch": 19.475316732197467,
+ "grad_norm": 0.22396457195281982,
+ "learning_rate": 0.0006,
+ "loss": 3.9537901878356934,
+ "step": 1402
+ },
+ {
+ "epoch": 19.489296636085626,
+ "grad_norm": 0.2333047240972519,
+ "learning_rate": 0.0006,
+ "loss": 3.935609817504883,
+ "step": 1403
+ },
+ {
+ "epoch": 19.503276539973786,
+ "grad_norm": 0.25063616037368774,
+ "learning_rate": 0.0006,
+ "loss": 3.9659228324890137,
+ "step": 1404
+ },
+ {
+ "epoch": 19.51725644386195,
+ "grad_norm": 0.29074087738990784,
+ "learning_rate": 0.0006,
+ "loss": 3.9552183151245117,
+ "step": 1405
+ },
+ {
+ "epoch": 19.53123634775011,
+ "grad_norm": 0.34876152873039246,
+ "learning_rate": 0.0006,
+ "loss": 3.976163387298584,
+ "step": 1406
+ },
+ {
+ "epoch": 19.54521625163827,
+ "grad_norm": 0.35026612877845764,
+ "learning_rate": 0.0006,
+ "loss": 3.961186408996582,
+ "step": 1407
+ },
+ {
+ "epoch": 19.55919615552643,
+ "grad_norm": 0.3199564218521118,
+ "learning_rate": 0.0006,
+ "loss": 3.9366297721862793,
+ "step": 1408
+ },
+ {
+ "epoch": 19.573176059414592,
+ "grad_norm": 0.2976185977458954,
+ "learning_rate": 0.0006,
+ "loss": 3.9502010345458984,
+ "step": 1409
+ },
+ {
+ "epoch": 19.587155963302752,
+ "grad_norm": 0.2951911687850952,
+ "learning_rate": 0.0006,
+ "loss": 3.9427943229675293,
+ "step": 1410
+ },
+ {
+ "epoch": 19.601135867190912,
+ "grad_norm": 0.27918702363967896,
+ "learning_rate": 0.0006,
+ "loss": 3.963700532913208,
+ "step": 1411
+ },
+ {
+ "epoch": 19.615115771079076,
+ "grad_norm": 0.26197490096092224,
+ "learning_rate": 0.0006,
+ "loss": 3.9636964797973633,
+ "step": 1412
+ },
+ {
+ "epoch": 19.629095674967235,
+ "grad_norm": 0.24242281913757324,
+ "learning_rate": 0.0006,
+ "loss": 3.961815595626831,
+ "step": 1413
+ },
+ {
+ "epoch": 19.643075578855395,
+ "grad_norm": 0.2606375515460968,
+ "learning_rate": 0.0006,
+ "loss": 3.946643352508545,
+ "step": 1414
+ },
+ {
+ "epoch": 19.657055482743555,
+ "grad_norm": 0.23353353142738342,
+ "learning_rate": 0.0006,
+ "loss": 3.973155975341797,
+ "step": 1415
+ },
+ {
+ "epoch": 19.67103538663172,
+ "grad_norm": 0.22872662544250488,
+ "learning_rate": 0.0006,
+ "loss": 3.9528894424438477,
+ "step": 1416
+ },
+ {
+ "epoch": 19.68501529051988,
+ "grad_norm": 0.24678432941436768,
+ "learning_rate": 0.0006,
+ "loss": 3.9313249588012695,
+ "step": 1417
+ },
+ {
+ "epoch": 19.698995194408038,
+ "grad_norm": 0.23895515501499176,
+ "learning_rate": 0.0006,
+ "loss": 3.944082498550415,
+ "step": 1418
+ },
+ {
+ "epoch": 19.712975098296198,
+ "grad_norm": 0.23649105429649353,
+ "learning_rate": 0.0006,
+ "loss": 3.962069034576416,
+ "step": 1419
+ },
+ {
+ "epoch": 19.72695500218436,
+ "grad_norm": 0.22031061351299286,
+ "learning_rate": 0.0006,
+ "loss": 3.912972927093506,
+ "step": 1420
+ },
+ {
+ "epoch": 19.74093490607252,
+ "grad_norm": 0.20231695473194122,
+ "learning_rate": 0.0006,
+ "loss": 3.964531421661377,
+ "step": 1421
+ },
+ {
+ "epoch": 19.75491480996068,
+ "grad_norm": 0.19980913400650024,
+ "learning_rate": 0.0006,
+ "loss": 3.9452600479125977,
+ "step": 1422
+ },
+ {
+ "epoch": 19.76889471384884,
+ "grad_norm": 0.21768775582313538,
+ "learning_rate": 0.0006,
+ "loss": 3.9214301109313965,
+ "step": 1423
+ },
+ {
+ "epoch": 19.782874617737004,
+ "grad_norm": 0.21287119388580322,
+ "learning_rate": 0.0006,
+ "loss": 3.9416494369506836,
+ "step": 1424
+ },
+ {
+ "epoch": 19.796854521625164,
+ "grad_norm": 0.21399827301502228,
+ "learning_rate": 0.0006,
+ "loss": 3.971010208129883,
+ "step": 1425
+ },
+ {
+ "epoch": 19.810834425513324,
+ "grad_norm": 0.1957658976316452,
+ "learning_rate": 0.0006,
+ "loss": 3.936331272125244,
+ "step": 1426
+ },
+ {
+ "epoch": 19.824814329401484,
+ "grad_norm": 0.19341488182544708,
+ "learning_rate": 0.0006,
+ "loss": 3.9321448802948,
+ "step": 1427
+ },
+ {
+ "epoch": 19.838794233289647,
+ "grad_norm": 0.18405723571777344,
+ "learning_rate": 0.0006,
+ "loss": 3.939542293548584,
+ "step": 1428
+ },
+ {
+ "epoch": 19.852774137177807,
+ "grad_norm": 0.19672836363315582,
+ "learning_rate": 0.0006,
+ "loss": 3.939652919769287,
+ "step": 1429
+ },
+ {
+ "epoch": 19.866754041065967,
+ "grad_norm": 0.1998940259218216,
+ "learning_rate": 0.0006,
+ "loss": 3.932892322540283,
+ "step": 1430
+ },
+ {
+ "epoch": 19.88073394495413,
+ "grad_norm": 0.2307668924331665,
+ "learning_rate": 0.0006,
+ "loss": 3.9402761459350586,
+ "step": 1431
+ },
+ {
+ "epoch": 19.89471384884229,
+ "grad_norm": 0.2531987726688385,
+ "learning_rate": 0.0006,
+ "loss": 3.9153199195861816,
+ "step": 1432
+ },
+ {
+ "epoch": 19.90869375273045,
+ "grad_norm": 0.2299388349056244,
+ "learning_rate": 0.0006,
+ "loss": 3.9569954872131348,
+ "step": 1433
+ },
+ {
+ "epoch": 19.92267365661861,
+ "grad_norm": 0.2503527104854584,
+ "learning_rate": 0.0006,
+ "loss": 3.9469428062438965,
+ "step": 1434
+ },
+ {
+ "epoch": 19.936653560506773,
+ "grad_norm": 0.25390249490737915,
+ "learning_rate": 0.0006,
+ "loss": 3.941803455352783,
+ "step": 1435
+ },
+ {
+ "epoch": 19.950633464394933,
+ "grad_norm": 0.2288687825202942,
+ "learning_rate": 0.0006,
+ "loss": 3.9385883808135986,
+ "step": 1436
+ },
+ {
+ "epoch": 19.964613368283093,
+ "grad_norm": 0.2231096774339676,
+ "learning_rate": 0.0006,
+ "loss": 3.9255237579345703,
+ "step": 1437
+ },
+ {
+ "epoch": 19.978593272171253,
+ "grad_norm": 0.20729343593120575,
+ "learning_rate": 0.0006,
+ "loss": 3.9443163871765137,
+ "step": 1438
+ },
+ {
+ "epoch": 19.992573176059416,
+ "grad_norm": 0.197743758559227,
+ "learning_rate": 0.0006,
+ "loss": 3.925455093383789,
+ "step": 1439
+ },
+ {
+ "epoch": 20.0,
+ "grad_norm": 0.23943661153316498,
+ "learning_rate": 0.0006,
+ "loss": 3.9458866119384766,
+ "step": 1440
+ },
+ {
+ "epoch": 20.0,
+ "eval_loss": 4.144192218780518,
+ "eval_runtime": 44.0278,
+ "eval_samples_per_second": 55.465,
+ "eval_steps_per_second": 3.475,
+ "step": 1440
+ },
+ {
+ "epoch": 20.01397990388816,
+ "grad_norm": 0.2032143622636795,
+ "learning_rate": 0.0006,
+ "loss": 3.9151499271392822,
+ "step": 1441
+ },
+ {
+ "epoch": 20.027959807776323,
+ "grad_norm": 0.20164789259433746,
+ "learning_rate": 0.0006,
+ "loss": 3.874115228652954,
+ "step": 1442
+ },
+ {
+ "epoch": 20.041939711664483,
+ "grad_norm": 0.20796619355678558,
+ "learning_rate": 0.0006,
+ "loss": 3.9090776443481445,
+ "step": 1443
+ },
+ {
+ "epoch": 20.055919615552643,
+ "grad_norm": 0.1999918520450592,
+ "learning_rate": 0.0006,
+ "loss": 3.926563262939453,
+ "step": 1444
+ },
+ {
+ "epoch": 20.069899519440803,
+ "grad_norm": 0.204790860414505,
+ "learning_rate": 0.0006,
+ "loss": 3.9088830947875977,
+ "step": 1445
+ },
+ {
+ "epoch": 20.083879423328966,
+ "grad_norm": 0.21507175266742706,
+ "learning_rate": 0.0006,
+ "loss": 3.916504383087158,
+ "step": 1446
+ },
+ {
+ "epoch": 20.097859327217126,
+ "grad_norm": 0.2398025095462799,
+ "learning_rate": 0.0006,
+ "loss": 3.9128990173339844,
+ "step": 1447
+ },
+ {
+ "epoch": 20.111839231105286,
+ "grad_norm": 0.26037144660949707,
+ "learning_rate": 0.0006,
+ "loss": 3.9125187397003174,
+ "step": 1448
+ },
+ {
+ "epoch": 20.125819134993446,
+ "grad_norm": 0.25564828515052795,
+ "learning_rate": 0.0006,
+ "loss": 3.891867160797119,
+ "step": 1449
+ },
+ {
+ "epoch": 20.13979903888161,
+ "grad_norm": 0.2767223119735718,
+ "learning_rate": 0.0006,
+ "loss": 3.9202775955200195,
+ "step": 1450
+ },
+ {
+ "epoch": 20.15377894276977,
+ "grad_norm": 0.27696558833122253,
+ "learning_rate": 0.0006,
+ "loss": 3.9231314659118652,
+ "step": 1451
+ },
+ {
+ "epoch": 20.16775884665793,
+ "grad_norm": 0.3054044246673584,
+ "learning_rate": 0.0006,
+ "loss": 3.918138027191162,
+ "step": 1452
+ },
+ {
+ "epoch": 20.18173875054609,
+ "grad_norm": 0.3018973171710968,
+ "learning_rate": 0.0006,
+ "loss": 3.890678882598877,
+ "step": 1453
+ },
+ {
+ "epoch": 20.195718654434252,
+ "grad_norm": 0.306232750415802,
+ "learning_rate": 0.0006,
+ "loss": 3.920753002166748,
+ "step": 1454
+ },
+ {
+ "epoch": 20.209698558322412,
+ "grad_norm": 0.29593729972839355,
+ "learning_rate": 0.0006,
+ "loss": 3.9455509185791016,
+ "step": 1455
+ },
+ {
+ "epoch": 20.22367846221057,
+ "grad_norm": 0.2937646210193634,
+ "learning_rate": 0.0006,
+ "loss": 3.9227709770202637,
+ "step": 1456
+ },
+ {
+ "epoch": 20.23765836609873,
+ "grad_norm": 0.26380231976509094,
+ "learning_rate": 0.0006,
+ "loss": 3.9097609519958496,
+ "step": 1457
+ },
+ {
+ "epoch": 20.251638269986895,
+ "grad_norm": 0.24992692470550537,
+ "learning_rate": 0.0006,
+ "loss": 3.9393627643585205,
+ "step": 1458
+ },
+ {
+ "epoch": 20.265618173875055,
+ "grad_norm": 0.270219087600708,
+ "learning_rate": 0.0006,
+ "loss": 3.929330348968506,
+ "step": 1459
+ },
+ {
+ "epoch": 20.279598077763215,
+ "grad_norm": 0.2860020399093628,
+ "learning_rate": 0.0006,
+ "loss": 3.8947913646698,
+ "step": 1460
+ },
+ {
+ "epoch": 20.293577981651374,
+ "grad_norm": 0.27494579553604126,
+ "learning_rate": 0.0006,
+ "loss": 3.9105992317199707,
+ "step": 1461
+ },
+ {
+ "epoch": 20.307557885539538,
+ "grad_norm": 0.26467713713645935,
+ "learning_rate": 0.0006,
+ "loss": 3.914632797241211,
+ "step": 1462
+ },
+ {
+ "epoch": 20.321537789427698,
+ "grad_norm": 0.25747713446617126,
+ "learning_rate": 0.0006,
+ "loss": 3.919846534729004,
+ "step": 1463
+ },
+ {
+ "epoch": 20.335517693315857,
+ "grad_norm": 0.24027711153030396,
+ "learning_rate": 0.0006,
+ "loss": 3.904740810394287,
+ "step": 1464
+ },
+ {
+ "epoch": 20.34949759720402,
+ "grad_norm": 0.24682414531707764,
+ "learning_rate": 0.0006,
+ "loss": 3.9190149307250977,
+ "step": 1465
+ },
+ {
+ "epoch": 20.36347750109218,
+ "grad_norm": 0.2619759440422058,
+ "learning_rate": 0.0006,
+ "loss": 3.9488329887390137,
+ "step": 1466
+ },
+ {
+ "epoch": 20.37745740498034,
+ "grad_norm": 0.2632448971271515,
+ "learning_rate": 0.0006,
+ "loss": 3.9216647148132324,
+ "step": 1467
+ },
+ {
+ "epoch": 20.3914373088685,
+ "grad_norm": 0.27569764852523804,
+ "learning_rate": 0.0006,
+ "loss": 3.9178895950317383,
+ "step": 1468
+ },
+ {
+ "epoch": 20.405417212756664,
+ "grad_norm": 0.2611774802207947,
+ "learning_rate": 0.0006,
+ "loss": 3.933730125427246,
+ "step": 1469
+ },
+ {
+ "epoch": 20.419397116644824,
+ "grad_norm": 0.2839447557926178,
+ "learning_rate": 0.0006,
+ "loss": 3.9261364936828613,
+ "step": 1470
+ },
+ {
+ "epoch": 20.433377020532983,
+ "grad_norm": 0.29006227850914,
+ "learning_rate": 0.0006,
+ "loss": 3.9157633781433105,
+ "step": 1471
+ },
+ {
+ "epoch": 20.447356924421143,
+ "grad_norm": 0.2809498906135559,
+ "learning_rate": 0.0006,
+ "loss": 3.9211745262145996,
+ "step": 1472
+ },
+ {
+ "epoch": 20.461336828309307,
+ "grad_norm": 0.27859532833099365,
+ "learning_rate": 0.0006,
+ "loss": 3.9115967750549316,
+ "step": 1473
+ },
+ {
+ "epoch": 20.475316732197467,
+ "grad_norm": 0.29114410281181335,
+ "learning_rate": 0.0006,
+ "loss": 3.9024441242218018,
+ "step": 1474
+ },
+ {
+ "epoch": 20.489296636085626,
+ "grad_norm": 0.2686930000782013,
+ "learning_rate": 0.0006,
+ "loss": 3.9497199058532715,
+ "step": 1475
+ },
+ {
+ "epoch": 20.503276539973786,
+ "grad_norm": 0.24120540916919708,
+ "learning_rate": 0.0006,
+ "loss": 3.9218955039978027,
+ "step": 1476
+ },
+ {
+ "epoch": 20.51725644386195,
+ "grad_norm": 0.23689547181129456,
+ "learning_rate": 0.0006,
+ "loss": 3.9410176277160645,
+ "step": 1477
+ },
+ {
+ "epoch": 20.53123634775011,
+ "grad_norm": 0.26382362842559814,
+ "learning_rate": 0.0006,
+ "loss": 3.8880343437194824,
+ "step": 1478
+ },
+ {
+ "epoch": 20.54521625163827,
+ "grad_norm": 0.21628661453723907,
+ "learning_rate": 0.0006,
+ "loss": 3.892622470855713,
+ "step": 1479
+ },
+ {
+ "epoch": 20.55919615552643,
+ "grad_norm": 0.19896996021270752,
+ "learning_rate": 0.0006,
+ "loss": 3.938734769821167,
+ "step": 1480
+ },
+ {
+ "epoch": 20.573176059414592,
+ "grad_norm": 0.20232494175434113,
+ "learning_rate": 0.0006,
+ "loss": 3.9197006225585938,
+ "step": 1481
+ },
+ {
+ "epoch": 20.587155963302752,
+ "grad_norm": 0.21807828545570374,
+ "learning_rate": 0.0006,
+ "loss": 3.9195618629455566,
+ "step": 1482
+ },
+ {
+ "epoch": 20.601135867190912,
+ "grad_norm": 0.21778680384159088,
+ "learning_rate": 0.0006,
+ "loss": 3.913395404815674,
+ "step": 1483
+ },
+ {
+ "epoch": 20.615115771079076,
+ "grad_norm": 0.21015185117721558,
+ "learning_rate": 0.0006,
+ "loss": 3.8858234882354736,
+ "step": 1484
+ },
+ {
+ "epoch": 20.629095674967235,
+ "grad_norm": 0.20131368935108185,
+ "learning_rate": 0.0006,
+ "loss": 3.927213430404663,
+ "step": 1485
+ },
+ {
+ "epoch": 20.643075578855395,
+ "grad_norm": 0.20746243000030518,
+ "learning_rate": 0.0006,
+ "loss": 3.913198471069336,
+ "step": 1486
+ },
+ {
+ "epoch": 20.657055482743555,
+ "grad_norm": 0.2024548053741455,
+ "learning_rate": 0.0006,
+ "loss": 3.923048257827759,
+ "step": 1487
+ },
+ {
+ "epoch": 20.67103538663172,
+ "grad_norm": 0.19735988974571228,
+ "learning_rate": 0.0006,
+ "loss": 3.9136500358581543,
+ "step": 1488
+ },
+ {
+ "epoch": 20.68501529051988,
+ "grad_norm": 0.19781625270843506,
+ "learning_rate": 0.0006,
+ "loss": 3.883793592453003,
+ "step": 1489
+ },
+ {
+ "epoch": 20.698995194408038,
+ "grad_norm": 0.1911996454000473,
+ "learning_rate": 0.0006,
+ "loss": 3.9078567028045654,
+ "step": 1490
+ },
+ {
+ "epoch": 20.712975098296198,
+ "grad_norm": 0.1989123821258545,
+ "learning_rate": 0.0006,
+ "loss": 3.9314043521881104,
+ "step": 1491
+ },
+ {
+ "epoch": 20.72695500218436,
+ "grad_norm": 0.18839342892169952,
+ "learning_rate": 0.0006,
+ "loss": 3.8955953121185303,
+ "step": 1492
+ },
+ {
+ "epoch": 20.74093490607252,
+ "grad_norm": 0.1944834142923355,
+ "learning_rate": 0.0006,
+ "loss": 3.9272377490997314,
+ "step": 1493
+ },
+ {
+ "epoch": 20.75491480996068,
+ "grad_norm": 0.20829126238822937,
+ "learning_rate": 0.0006,
+ "loss": 3.878857374191284,
+ "step": 1494
+ },
+ {
+ "epoch": 20.76889471384884,
+ "grad_norm": 0.21438424289226532,
+ "learning_rate": 0.0006,
+ "loss": 3.9155564308166504,
+ "step": 1495
+ },
+ {
+ "epoch": 20.782874617737004,
+ "grad_norm": 0.22309324145317078,
+ "learning_rate": 0.0006,
+ "loss": 3.9281692504882812,
+ "step": 1496
+ },
+ {
+ "epoch": 20.796854521625164,
+ "grad_norm": 0.2053767591714859,
+ "learning_rate": 0.0006,
+ "loss": 3.9096317291259766,
+ "step": 1497
+ },
+ {
+ "epoch": 20.810834425513324,
+ "grad_norm": 0.20429186522960663,
+ "learning_rate": 0.0006,
+ "loss": 3.9184865951538086,
+ "step": 1498
+ },
+ {
+ "epoch": 20.824814329401484,
+ "grad_norm": 0.21983473002910614,
+ "learning_rate": 0.0006,
+ "loss": 3.9130771160125732,
+ "step": 1499
+ },
+ {
+ "epoch": 20.838794233289647,
+ "grad_norm": 0.21649539470672607,
+ "learning_rate": 0.0006,
+ "loss": 3.921581268310547,
+ "step": 1500
+ },
+ {
+ "epoch": 20.852774137177807,
+ "grad_norm": 0.19645053148269653,
+ "learning_rate": 0.0006,
+ "loss": 3.966360092163086,
+ "step": 1501
+ },
+ {
+ "epoch": 20.866754041065967,
+ "grad_norm": 0.2126782387495041,
+ "learning_rate": 0.0006,
+ "loss": 3.9004554748535156,
+ "step": 1502
+ },
+ {
+ "epoch": 20.88073394495413,
+ "grad_norm": 0.22359658777713776,
+ "learning_rate": 0.0006,
+ "loss": 3.92336368560791,
+ "step": 1503
+ },
+ {
+ "epoch": 20.89471384884229,
+ "grad_norm": 0.2334042638540268,
+ "learning_rate": 0.0006,
+ "loss": 3.9188671112060547,
+ "step": 1504
+ },
+ {
+ "epoch": 20.90869375273045,
+ "grad_norm": 0.24595916271209717,
+ "learning_rate": 0.0006,
+ "loss": 3.9348371028900146,
+ "step": 1505
+ },
+ {
+ "epoch": 20.92267365661861,
+ "grad_norm": 0.24177910387516022,
+ "learning_rate": 0.0006,
+ "loss": 3.8796424865722656,
+ "step": 1506
+ },
+ {
+ "epoch": 20.936653560506773,
+ "grad_norm": 0.24193289875984192,
+ "learning_rate": 0.0006,
+ "loss": 3.892627716064453,
+ "step": 1507
+ },
+ {
+ "epoch": 20.950633464394933,
+ "grad_norm": 0.252849280834198,
+ "learning_rate": 0.0006,
+ "loss": 3.9300179481506348,
+ "step": 1508
+ },
+ {
+ "epoch": 20.964613368283093,
+ "grad_norm": 0.24933326244354248,
+ "learning_rate": 0.0006,
+ "loss": 3.9597225189208984,
+ "step": 1509
+ },
+ {
+ "epoch": 20.978593272171253,
+ "grad_norm": 0.23850969970226288,
+ "learning_rate": 0.0006,
+ "loss": 3.9027397632598877,
+ "step": 1510
+ },
+ {
+ "epoch": 20.992573176059416,
+ "grad_norm": 0.23298311233520508,
+ "learning_rate": 0.0006,
+ "loss": 3.9024105072021484,
+ "step": 1511
+ },
+ {
+ "epoch": 21.0,
+ "grad_norm": 0.2467455416917801,
+ "learning_rate": 0.0006,
+ "loss": 3.915929079055786,
+ "step": 1512
+ },
+ {
+ "epoch": 21.0,
+ "eval_loss": 4.136331081390381,
+ "eval_runtime": 43.9468,
+ "eval_samples_per_second": 55.567,
+ "eval_steps_per_second": 3.481,
+ "step": 1512
+ },
+ {
+ "epoch": 21.01397990388816,
+ "grad_norm": 0.2195885181427002,
+ "learning_rate": 0.0006,
+ "loss": 3.873412847518921,
+ "step": 1513
+ },
+ {
+ "epoch": 21.027959807776323,
+ "grad_norm": 0.24250614643096924,
+ "learning_rate": 0.0006,
+ "loss": 3.882302761077881,
+ "step": 1514
+ },
+ {
+ "epoch": 21.041939711664483,
+ "grad_norm": 0.249113991856575,
+ "learning_rate": 0.0006,
+ "loss": 3.9112048149108887,
+ "step": 1515
+ },
+ {
+ "epoch": 21.055919615552643,
+ "grad_norm": 0.25365301966667175,
+ "learning_rate": 0.0006,
+ "loss": 3.8625712394714355,
+ "step": 1516
+ },
+ {
+ "epoch": 21.069899519440803,
+ "grad_norm": 0.2218591272830963,
+ "learning_rate": 0.0006,
+ "loss": 3.876072406768799,
+ "step": 1517
+ },
+ {
+ "epoch": 21.083879423328966,
+ "grad_norm": 0.238582581281662,
+ "learning_rate": 0.0006,
+ "loss": 3.862060546875,
+ "step": 1518
+ },
+ {
+ "epoch": 21.097859327217126,
+ "grad_norm": 0.25051242113113403,
+ "learning_rate": 0.0006,
+ "loss": 3.905315399169922,
+ "step": 1519
+ },
+ {
+ "epoch": 21.111839231105286,
+ "grad_norm": 0.2391843944787979,
+ "learning_rate": 0.0006,
+ "loss": 3.909144401550293,
+ "step": 1520
+ },
+ {
+ "epoch": 21.125819134993446,
+ "grad_norm": 0.230543315410614,
+ "learning_rate": 0.0006,
+ "loss": 3.8856799602508545,
+ "step": 1521
+ },
+ {
+ "epoch": 21.13979903888161,
+ "grad_norm": 0.24165484309196472,
+ "learning_rate": 0.0006,
+ "loss": 3.893883228302002,
+ "step": 1522
+ },
+ {
+ "epoch": 21.15377894276977,
+ "grad_norm": 0.24657143652439117,
+ "learning_rate": 0.0006,
+ "loss": 3.901129722595215,
+ "step": 1523
+ },
+ {
+ "epoch": 21.16775884665793,
+ "grad_norm": 0.2659998834133148,
+ "learning_rate": 0.0006,
+ "loss": 3.910468101501465,
+ "step": 1524
+ },
+ {
+ "epoch": 21.18173875054609,
+ "grad_norm": 0.2673095166683197,
+ "learning_rate": 0.0006,
+ "loss": 3.917454242706299,
+ "step": 1525
+ },
+ {
+ "epoch": 21.195718654434252,
+ "grad_norm": 0.22122322022914886,
+ "learning_rate": 0.0006,
+ "loss": 3.9017257690429688,
+ "step": 1526
+ },
+ {
+ "epoch": 21.209698558322412,
+ "grad_norm": 0.21882867813110352,
+ "learning_rate": 0.0006,
+ "loss": 3.8605496883392334,
+ "step": 1527
+ },
+ {
+ "epoch": 21.22367846221057,
+ "grad_norm": 0.22335563600063324,
+ "learning_rate": 0.0006,
+ "loss": 3.88120174407959,
+ "step": 1528
+ },
+ {
+ "epoch": 21.23765836609873,
+ "grad_norm": 0.22973211109638214,
+ "learning_rate": 0.0006,
+ "loss": 3.8636834621429443,
+ "step": 1529
+ },
+ {
+ "epoch": 21.251638269986895,
+ "grad_norm": 0.2410288006067276,
+ "learning_rate": 0.0006,
+ "loss": 3.8698177337646484,
+ "step": 1530
+ },
+ {
+ "epoch": 21.265618173875055,
+ "grad_norm": 0.2454768717288971,
+ "learning_rate": 0.0006,
+ "loss": 3.905341148376465,
+ "step": 1531
+ },
+ {
+ "epoch": 21.279598077763215,
+ "grad_norm": 0.2271580696105957,
+ "learning_rate": 0.0006,
+ "loss": 3.864063262939453,
+ "step": 1532
+ },
+ {
+ "epoch": 21.293577981651374,
+ "grad_norm": 0.2200947403907776,
+ "learning_rate": 0.0006,
+ "loss": 3.8889589309692383,
+ "step": 1533
+ },
+ {
+ "epoch": 21.307557885539538,
+ "grad_norm": 0.2180824875831604,
+ "learning_rate": 0.0006,
+ "loss": 3.8873472213745117,
+ "step": 1534
+ },
+ {
+ "epoch": 21.321537789427698,
+ "grad_norm": 0.214975506067276,
+ "learning_rate": 0.0006,
+ "loss": 3.882307529449463,
+ "step": 1535
+ },
+ {
+ "epoch": 21.335517693315857,
+ "grad_norm": 0.21411260962486267,
+ "learning_rate": 0.0006,
+ "loss": 3.8861560821533203,
+ "step": 1536
+ },
+ {
+ "epoch": 21.34949759720402,
+ "grad_norm": 0.22635889053344727,
+ "learning_rate": 0.0006,
+ "loss": 3.9174342155456543,
+ "step": 1537
+ },
+ {
+ "epoch": 21.36347750109218,
+ "grad_norm": 0.22700625658035278,
+ "learning_rate": 0.0006,
+ "loss": 3.890416383743286,
+ "step": 1538
+ },
+ {
+ "epoch": 21.37745740498034,
+ "grad_norm": 0.2106025069952011,
+ "learning_rate": 0.0006,
+ "loss": 3.8672406673431396,
+ "step": 1539
+ },
+ {
+ "epoch": 21.3914373088685,
+ "grad_norm": 0.22994661331176758,
+ "learning_rate": 0.0006,
+ "loss": 3.893190383911133,
+ "step": 1540
+ },
+ {
+ "epoch": 21.405417212756664,
+ "grad_norm": 0.24701105058193207,
+ "learning_rate": 0.0006,
+ "loss": 3.898078441619873,
+ "step": 1541
+ },
+ {
+ "epoch": 21.419397116644824,
+ "grad_norm": 0.26914113759994507,
+ "learning_rate": 0.0006,
+ "loss": 3.905871868133545,
+ "step": 1542
+ },
+ {
+ "epoch": 21.433377020532983,
+ "grad_norm": 0.2904224097728729,
+ "learning_rate": 0.0006,
+ "loss": 3.8919103145599365,
+ "step": 1543
+ },
+ {
+ "epoch": 21.447356924421143,
+ "grad_norm": 0.2911844551563263,
+ "learning_rate": 0.0006,
+ "loss": 3.9073286056518555,
+ "step": 1544
+ },
+ {
+ "epoch": 21.461336828309307,
+ "grad_norm": 0.2742345929145813,
+ "learning_rate": 0.0006,
+ "loss": 3.9075546264648438,
+ "step": 1545
+ },
+ {
+ "epoch": 21.475316732197467,
+ "grad_norm": 0.2341093122959137,
+ "learning_rate": 0.0006,
+ "loss": 3.9232025146484375,
+ "step": 1546
+ },
+ {
+ "epoch": 21.489296636085626,
+ "grad_norm": 0.22808541357517242,
+ "learning_rate": 0.0006,
+ "loss": 3.9168174266815186,
+ "step": 1547
+ },
+ {
+ "epoch": 21.503276539973786,
+ "grad_norm": 0.23049889504909515,
+ "learning_rate": 0.0006,
+ "loss": 3.8850595951080322,
+ "step": 1548
+ },
+ {
+ "epoch": 21.51725644386195,
+ "grad_norm": 0.21519650518894196,
+ "learning_rate": 0.0006,
+ "loss": 3.891313076019287,
+ "step": 1549
+ },
+ {
+ "epoch": 21.53123634775011,
+ "grad_norm": 0.20999883115291595,
+ "learning_rate": 0.0006,
+ "loss": 3.894439220428467,
+ "step": 1550
+ },
+ {
+ "epoch": 21.54521625163827,
+ "grad_norm": 0.19641105830669403,
+ "learning_rate": 0.0006,
+ "loss": 3.894871473312378,
+ "step": 1551
+ },
+ {
+ "epoch": 21.55919615552643,
+ "grad_norm": 0.19108249247074127,
+ "learning_rate": 0.0006,
+ "loss": 3.905968189239502,
+ "step": 1552
+ },
+ {
+ "epoch": 21.573176059414592,
+ "grad_norm": 0.20222234725952148,
+ "learning_rate": 0.0006,
+ "loss": 3.90565824508667,
+ "step": 1553
+ },
+ {
+ "epoch": 21.587155963302752,
+ "grad_norm": 0.20620177686214447,
+ "learning_rate": 0.0006,
+ "loss": 3.9103245735168457,
+ "step": 1554
+ },
+ {
+ "epoch": 21.601135867190912,
+ "grad_norm": 0.2149713784456253,
+ "learning_rate": 0.0006,
+ "loss": 3.8864927291870117,
+ "step": 1555
+ },
+ {
+ "epoch": 21.615115771079076,
+ "grad_norm": 0.2354084551334381,
+ "learning_rate": 0.0006,
+ "loss": 3.905095100402832,
+ "step": 1556
+ },
+ {
+ "epoch": 21.629095674967235,
+ "grad_norm": 0.23949941992759705,
+ "learning_rate": 0.0006,
+ "loss": 3.901803493499756,
+ "step": 1557
+ },
+ {
+ "epoch": 21.643075578855395,
+ "grad_norm": 0.22914277017116547,
+ "learning_rate": 0.0006,
+ "loss": 3.876044273376465,
+ "step": 1558
+ },
+ {
+ "epoch": 21.657055482743555,
+ "grad_norm": 0.2363225370645523,
+ "learning_rate": 0.0006,
+ "loss": 3.910841703414917,
+ "step": 1559
+ },
+ {
+ "epoch": 21.67103538663172,
+ "grad_norm": 0.2635626792907715,
+ "learning_rate": 0.0006,
+ "loss": 3.847407579421997,
+ "step": 1560
+ },
+ {
+ "epoch": 21.68501529051988,
+ "grad_norm": 0.2499786615371704,
+ "learning_rate": 0.0006,
+ "loss": 3.8667140007019043,
+ "step": 1561
+ },
+ {
+ "epoch": 21.698995194408038,
+ "grad_norm": 0.21609611809253693,
+ "learning_rate": 0.0006,
+ "loss": 3.895470142364502,
+ "step": 1562
+ },
+ {
+ "epoch": 21.712975098296198,
+ "grad_norm": 0.2466774582862854,
+ "learning_rate": 0.0006,
+ "loss": 3.8853235244750977,
+ "step": 1563
+ },
+ {
+ "epoch": 21.72695500218436,
+ "grad_norm": 0.23791883885860443,
+ "learning_rate": 0.0006,
+ "loss": 3.899418354034424,
+ "step": 1564
+ },
+ {
+ "epoch": 21.74093490607252,
+ "grad_norm": 0.2048920840024948,
+ "learning_rate": 0.0006,
+ "loss": 3.8992419242858887,
+ "step": 1565
+ },
+ {
+ "epoch": 21.75491480996068,
+ "grad_norm": 0.22266621887683868,
+ "learning_rate": 0.0006,
+ "loss": 3.885765552520752,
+ "step": 1566
+ },
+ {
+ "epoch": 21.76889471384884,
+ "grad_norm": 0.2508748769760132,
+ "learning_rate": 0.0006,
+ "loss": 3.8797037601470947,
+ "step": 1567
+ },
+ {
+ "epoch": 21.782874617737004,
+ "grad_norm": 0.27245673537254333,
+ "learning_rate": 0.0006,
+ "loss": 3.8743176460266113,
+ "step": 1568
+ },
+ {
+ "epoch": 21.796854521625164,
+ "grad_norm": 0.25503191351890564,
+ "learning_rate": 0.0006,
+ "loss": 3.868906259536743,
+ "step": 1569
+ },
+ {
+ "epoch": 21.810834425513324,
+ "grad_norm": 0.22984394431114197,
+ "learning_rate": 0.0006,
+ "loss": 3.9051015377044678,
+ "step": 1570
+ },
+ {
+ "epoch": 21.824814329401484,
+ "grad_norm": 0.2411898821592331,
+ "learning_rate": 0.0006,
+ "loss": 3.8911490440368652,
+ "step": 1571
+ },
+ {
+ "epoch": 21.838794233289647,
+ "grad_norm": 0.22609318792819977,
+ "learning_rate": 0.0006,
+ "loss": 3.894839286804199,
+ "step": 1572
+ },
+ {
+ "epoch": 21.852774137177807,
+ "grad_norm": 0.21904583275318146,
+ "learning_rate": 0.0006,
+ "loss": 3.9314537048339844,
+ "step": 1573
+ },
+ {
+ "epoch": 21.866754041065967,
+ "grad_norm": 0.21869723498821259,
+ "learning_rate": 0.0006,
+ "loss": 3.9141433238983154,
+ "step": 1574
+ },
+ {
+ "epoch": 21.88073394495413,
+ "grad_norm": 0.21682019531726837,
+ "learning_rate": 0.0006,
+ "loss": 3.867898464202881,
+ "step": 1575
+ },
+ {
+ "epoch": 21.89471384884229,
+ "grad_norm": 0.2211964726448059,
+ "learning_rate": 0.0006,
+ "loss": 3.8892226219177246,
+ "step": 1576
+ },
+ {
+ "epoch": 21.90869375273045,
+ "grad_norm": 0.2097381353378296,
+ "learning_rate": 0.0006,
+ "loss": 3.9194154739379883,
+ "step": 1577
+ },
+ {
+ "epoch": 21.92267365661861,
+ "grad_norm": 0.21229565143585205,
+ "learning_rate": 0.0006,
+ "loss": 3.924694538116455,
+ "step": 1578
+ },
+ {
+ "epoch": 21.936653560506773,
+ "grad_norm": 0.2186083346605301,
+ "learning_rate": 0.0006,
+ "loss": 3.904440402984619,
+ "step": 1579
+ },
+ {
+ "epoch": 21.950633464394933,
+ "grad_norm": 0.21112321317195892,
+ "learning_rate": 0.0006,
+ "loss": 3.905674934387207,
+ "step": 1580
+ },
+ {
+ "epoch": 21.964613368283093,
+ "grad_norm": 0.20867373049259186,
+ "learning_rate": 0.0006,
+ "loss": 3.8761563301086426,
+ "step": 1581
+ },
+ {
+ "epoch": 21.978593272171253,
+ "grad_norm": 0.21640732884407043,
+ "learning_rate": 0.0006,
+ "loss": 3.871950149536133,
+ "step": 1582
+ },
+ {
+ "epoch": 21.992573176059416,
+ "grad_norm": 0.21920442581176758,
+ "learning_rate": 0.0006,
+ "loss": 3.8853464126586914,
+ "step": 1583
+ },
+ {
+ "epoch": 22.0,
+ "grad_norm": 0.24132665991783142,
+ "learning_rate": 0.0006,
+ "loss": 3.9012184143066406,
+ "step": 1584
+ },
+ {
+ "epoch": 22.0,
+ "eval_loss": 4.108598232269287,
+ "eval_runtime": 44.0434,
+ "eval_samples_per_second": 55.445,
+ "eval_steps_per_second": 3.474,
+ "step": 1584
+ },
+ {
+ "epoch": 22.01397990388816,
+ "grad_norm": 0.21989449858665466,
+ "learning_rate": 0.0006,
+ "loss": 3.8657469749450684,
+ "step": 1585
+ },
+ {
+ "epoch": 22.027959807776323,
+ "grad_norm": 0.20416802167892456,
+ "learning_rate": 0.0006,
+ "loss": 3.8682117462158203,
+ "step": 1586
+ },
+ {
+ "epoch": 22.041939711664483,
+ "grad_norm": 0.20651975274085999,
+ "learning_rate": 0.0006,
+ "loss": 3.8501222133636475,
+ "step": 1587
+ },
+ {
+ "epoch": 22.055919615552643,
+ "grad_norm": 0.22987176477909088,
+ "learning_rate": 0.0006,
+ "loss": 3.8830955028533936,
+ "step": 1588
+ },
+ {
+ "epoch": 22.069899519440803,
+ "grad_norm": 0.23308858275413513,
+ "learning_rate": 0.0006,
+ "loss": 3.8659040927886963,
+ "step": 1589
+ },
+ {
+ "epoch": 22.083879423328966,
+ "grad_norm": 0.2144266963005066,
+ "learning_rate": 0.0006,
+ "loss": 3.8311047554016113,
+ "step": 1590
+ },
+ {
+ "epoch": 22.097859327217126,
+ "grad_norm": 0.2052636295557022,
+ "learning_rate": 0.0006,
+ "loss": 3.8700156211853027,
+ "step": 1591
+ },
+ {
+ "epoch": 22.111839231105286,
+ "grad_norm": 0.22792384028434753,
+ "learning_rate": 0.0006,
+ "loss": 3.8799097537994385,
+ "step": 1592
+ },
+ {
+ "epoch": 22.125819134993446,
+ "grad_norm": 0.2533944249153137,
+ "learning_rate": 0.0006,
+ "loss": 3.874959945678711,
+ "step": 1593
+ },
+ {
+ "epoch": 22.13979903888161,
+ "grad_norm": 0.27126258611679077,
+ "learning_rate": 0.0006,
+ "loss": 3.863774299621582,
+ "step": 1594
+ },
+ {
+ "epoch": 22.15377894276977,
+ "grad_norm": 0.2634040415287018,
+ "learning_rate": 0.0006,
+ "loss": 3.8876869678497314,
+ "step": 1595
+ },
+ {
+ "epoch": 22.16775884665793,
+ "grad_norm": 0.267987459897995,
+ "learning_rate": 0.0006,
+ "loss": 3.871776819229126,
+ "step": 1596
+ },
+ {
+ "epoch": 22.18173875054609,
+ "grad_norm": 0.2972337305545807,
+ "learning_rate": 0.0006,
+ "loss": 3.8453969955444336,
+ "step": 1597
+ },
+ {
+ "epoch": 22.195718654434252,
+ "grad_norm": 0.3012159764766693,
+ "learning_rate": 0.0006,
+ "loss": 3.8774254322052,
+ "step": 1598
+ },
+ {
+ "epoch": 22.209698558322412,
+ "grad_norm": 0.27275875210762024,
+ "learning_rate": 0.0006,
+ "loss": 3.8558950424194336,
+ "step": 1599
+ },
+ {
+ "epoch": 22.22367846221057,
+ "grad_norm": 0.2817993462085724,
+ "learning_rate": 0.0006,
+ "loss": 3.872211217880249,
+ "step": 1600
+ },
+ {
+ "epoch": 22.23765836609873,
+ "grad_norm": 0.28823208808898926,
+ "learning_rate": 0.0006,
+ "loss": 3.847616672515869,
+ "step": 1601
+ },
+ {
+ "epoch": 22.251638269986895,
+ "grad_norm": 0.2646387815475464,
+ "learning_rate": 0.0006,
+ "loss": 3.8993802070617676,
+ "step": 1602
+ },
+ {
+ "epoch": 22.265618173875055,
+ "grad_norm": 0.27664077281951904,
+ "learning_rate": 0.0006,
+ "loss": 3.858553409576416,
+ "step": 1603
+ },
+ {
+ "epoch": 22.279598077763215,
+ "grad_norm": 0.27708905935287476,
+ "learning_rate": 0.0006,
+ "loss": 3.8691039085388184,
+ "step": 1604
+ },
+ {
+ "epoch": 22.293577981651374,
+ "grad_norm": 0.3045521378517151,
+ "learning_rate": 0.0006,
+ "loss": 3.8721439838409424,
+ "step": 1605
+ },
+ {
+ "epoch": 22.307557885539538,
+ "grad_norm": 0.3481914699077606,
+ "learning_rate": 0.0006,
+ "loss": 3.894503593444824,
+ "step": 1606
+ },
+ {
+ "epoch": 22.321537789427698,
+ "grad_norm": 0.3298046588897705,
+ "learning_rate": 0.0006,
+ "loss": 3.8420844078063965,
+ "step": 1607
+ },
+ {
+ "epoch": 22.335517693315857,
+ "grad_norm": 0.24967724084854126,
+ "learning_rate": 0.0006,
+ "loss": 3.8892619609832764,
+ "step": 1608
+ },
+ {
+ "epoch": 22.34949759720402,
+ "grad_norm": 0.22645241022109985,
+ "learning_rate": 0.0006,
+ "loss": 3.873265504837036,
+ "step": 1609
+ },
+ {
+ "epoch": 22.36347750109218,
+ "grad_norm": 0.22813954949378967,
+ "learning_rate": 0.0006,
+ "loss": 3.8658013343811035,
+ "step": 1610
+ },
+ {
+ "epoch": 22.37745740498034,
+ "grad_norm": 0.23825274407863617,
+ "learning_rate": 0.0006,
+ "loss": 3.885456085205078,
+ "step": 1611
+ },
+ {
+ "epoch": 22.3914373088685,
+ "grad_norm": 0.23612336814403534,
+ "learning_rate": 0.0006,
+ "loss": 3.851841449737549,
+ "step": 1612
+ },
+ {
+ "epoch": 22.405417212756664,
+ "grad_norm": 0.23851265013217926,
+ "learning_rate": 0.0006,
+ "loss": 3.8711647987365723,
+ "step": 1613
+ },
+ {
+ "epoch": 22.419397116644824,
+ "grad_norm": 0.22977286577224731,
+ "learning_rate": 0.0006,
+ "loss": 3.848539113998413,
+ "step": 1614
+ },
+ {
+ "epoch": 22.433377020532983,
+ "grad_norm": 0.20970143377780914,
+ "learning_rate": 0.0006,
+ "loss": 3.8709521293640137,
+ "step": 1615
+ },
+ {
+ "epoch": 22.447356924421143,
+ "grad_norm": 0.20714804530143738,
+ "learning_rate": 0.0006,
+ "loss": 3.875060558319092,
+ "step": 1616
+ },
+ {
+ "epoch": 22.461336828309307,
+ "grad_norm": 0.18881355226039886,
+ "learning_rate": 0.0006,
+ "loss": 3.8744640350341797,
+ "step": 1617
+ },
+ {
+ "epoch": 22.475316732197467,
+ "grad_norm": 0.1928759068250656,
+ "learning_rate": 0.0006,
+ "loss": 3.867971420288086,
+ "step": 1618
+ },
+ {
+ "epoch": 22.489296636085626,
+ "grad_norm": 0.18614749610424042,
+ "learning_rate": 0.0006,
+ "loss": 3.8738222122192383,
+ "step": 1619
+ },
+ {
+ "epoch": 22.503276539973786,
+ "grad_norm": 0.18614931404590607,
+ "learning_rate": 0.0006,
+ "loss": 3.8470513820648193,
+ "step": 1620
+ },
+ {
+ "epoch": 22.51725644386195,
+ "grad_norm": 0.17805059254169464,
+ "learning_rate": 0.0006,
+ "loss": 3.866396903991699,
+ "step": 1621
+ },
+ {
+ "epoch": 22.53123634775011,
+ "grad_norm": 0.16941314935684204,
+ "learning_rate": 0.0006,
+ "loss": 3.856832265853882,
+ "step": 1622
+ },
+ {
+ "epoch": 22.54521625163827,
+ "grad_norm": 0.1802310198545456,
+ "learning_rate": 0.0006,
+ "loss": 3.885653018951416,
+ "step": 1623
+ },
+ {
+ "epoch": 22.55919615552643,
+ "grad_norm": 0.1854856163263321,
+ "learning_rate": 0.0006,
+ "loss": 3.8779640197753906,
+ "step": 1624
+ },
+ {
+ "epoch": 22.573176059414592,
+ "grad_norm": 0.18765869736671448,
+ "learning_rate": 0.0006,
+ "loss": 3.8449032306671143,
+ "step": 1625
+ },
+ {
+ "epoch": 22.587155963302752,
+ "grad_norm": 0.1907789707183838,
+ "learning_rate": 0.0006,
+ "loss": 3.863029718399048,
+ "step": 1626
+ },
+ {
+ "epoch": 22.601135867190912,
+ "grad_norm": 0.19285395741462708,
+ "learning_rate": 0.0006,
+ "loss": 3.880145788192749,
+ "step": 1627
+ },
+ {
+ "epoch": 22.615115771079076,
+ "grad_norm": 0.19229751825332642,
+ "learning_rate": 0.0006,
+ "loss": 3.8521225452423096,
+ "step": 1628
+ },
+ {
+ "epoch": 22.629095674967235,
+ "grad_norm": 0.191694438457489,
+ "learning_rate": 0.0006,
+ "loss": 3.899827003479004,
+ "step": 1629
+ },
+ {
+ "epoch": 22.643075578855395,
+ "grad_norm": 0.20143048465251923,
+ "learning_rate": 0.0006,
+ "loss": 3.862064838409424,
+ "step": 1630
+ },
+ {
+ "epoch": 22.657055482743555,
+ "grad_norm": 0.1959840953350067,
+ "learning_rate": 0.0006,
+ "loss": 3.8955392837524414,
+ "step": 1631
+ },
+ {
+ "epoch": 22.67103538663172,
+ "grad_norm": 0.21454884111881256,
+ "learning_rate": 0.0006,
+ "loss": 3.8503167629241943,
+ "step": 1632
+ },
+ {
+ "epoch": 22.68501529051988,
+ "grad_norm": 0.21748484671115875,
+ "learning_rate": 0.0006,
+ "loss": 3.897134304046631,
+ "step": 1633
+ },
+ {
+ "epoch": 22.698995194408038,
+ "grad_norm": 0.21204186975955963,
+ "learning_rate": 0.0006,
+ "loss": 3.9292588233947754,
+ "step": 1634
+ },
+ {
+ "epoch": 22.712975098296198,
+ "grad_norm": 0.2112748771905899,
+ "learning_rate": 0.0006,
+ "loss": 3.89798641204834,
+ "step": 1635
+ },
+ {
+ "epoch": 22.72695500218436,
+ "grad_norm": 0.188576802611351,
+ "learning_rate": 0.0006,
+ "loss": 3.85627818107605,
+ "step": 1636
+ },
+ {
+ "epoch": 22.74093490607252,
+ "grad_norm": 0.17755994200706482,
+ "learning_rate": 0.0006,
+ "loss": 3.8480074405670166,
+ "step": 1637
+ },
+ {
+ "epoch": 22.75491480996068,
+ "grad_norm": 0.18037520349025726,
+ "learning_rate": 0.0006,
+ "loss": 3.8800172805786133,
+ "step": 1638
+ },
+ {
+ "epoch": 22.76889471384884,
+ "grad_norm": 0.19205765426158905,
+ "learning_rate": 0.0006,
+ "loss": 3.8658275604248047,
+ "step": 1639
+ },
+ {
+ "epoch": 22.782874617737004,
+ "grad_norm": 0.21801964938640594,
+ "learning_rate": 0.0006,
+ "loss": 3.8999452590942383,
+ "step": 1640
+ },
+ {
+ "epoch": 22.796854521625164,
+ "grad_norm": 0.23586086928844452,
+ "learning_rate": 0.0006,
+ "loss": 3.8660664558410645,
+ "step": 1641
+ },
+ {
+ "epoch": 22.810834425513324,
+ "grad_norm": 0.22289055585861206,
+ "learning_rate": 0.0006,
+ "loss": 3.86102557182312,
+ "step": 1642
+ },
+ {
+ "epoch": 22.824814329401484,
+ "grad_norm": 0.20695745944976807,
+ "learning_rate": 0.0006,
+ "loss": 3.8336222171783447,
+ "step": 1643
+ },
+ {
+ "epoch": 22.838794233289647,
+ "grad_norm": 0.2157406210899353,
+ "learning_rate": 0.0006,
+ "loss": 3.8923370838165283,
+ "step": 1644
+ },
+ {
+ "epoch": 22.852774137177807,
+ "grad_norm": 0.2326202690601349,
+ "learning_rate": 0.0006,
+ "loss": 3.8841443061828613,
+ "step": 1645
+ },
+ {
+ "epoch": 22.866754041065967,
+ "grad_norm": 0.2228803187608719,
+ "learning_rate": 0.0006,
+ "loss": 3.8791375160217285,
+ "step": 1646
+ },
+ {
+ "epoch": 22.88073394495413,
+ "grad_norm": 0.228999063372612,
+ "learning_rate": 0.0006,
+ "loss": 3.9005866050720215,
+ "step": 1647
+ },
+ {
+ "epoch": 22.89471384884229,
+ "grad_norm": 0.19673815369606018,
+ "learning_rate": 0.0006,
+ "loss": 3.8954291343688965,
+ "step": 1648
+ },
+ {
+ "epoch": 22.90869375273045,
+ "grad_norm": 0.1862584501504898,
+ "learning_rate": 0.0006,
+ "loss": 3.8591439723968506,
+ "step": 1649
+ },
+ {
+ "epoch": 22.92267365661861,
+ "grad_norm": 0.21360838413238525,
+ "learning_rate": 0.0006,
+ "loss": 3.862949848175049,
+ "step": 1650
+ },
+ {
+ "epoch": 22.936653560506773,
+ "grad_norm": 0.22538702189922333,
+ "learning_rate": 0.0006,
+ "loss": 3.8466529846191406,
+ "step": 1651
+ },
+ {
+ "epoch": 22.950633464394933,
+ "grad_norm": 0.21452727913856506,
+ "learning_rate": 0.0006,
+ "loss": 3.890007495880127,
+ "step": 1652
+ },
+ {
+ "epoch": 22.964613368283093,
+ "grad_norm": 0.21283482015132904,
+ "learning_rate": 0.0006,
+ "loss": 3.8820929527282715,
+ "step": 1653
+ },
+ {
+ "epoch": 22.978593272171253,
+ "grad_norm": 0.2035825103521347,
+ "learning_rate": 0.0006,
+ "loss": 3.8663241863250732,
+ "step": 1654
+ },
+ {
+ "epoch": 22.992573176059416,
+ "grad_norm": 0.22431661188602448,
+ "learning_rate": 0.0006,
+ "loss": 3.88238525390625,
+ "step": 1655
+ },
+ {
+ "epoch": 23.0,
+ "grad_norm": 0.2619943916797638,
+ "learning_rate": 0.0006,
+ "loss": 3.8482635021209717,
+ "step": 1656
+ },
+ {
+ "epoch": 23.0,
+ "eval_loss": 4.099980354309082,
+ "eval_runtime": 44.1311,
+ "eval_samples_per_second": 55.335,
+ "eval_steps_per_second": 3.467,
+ "step": 1656
+ },
+ {
+ "epoch": 23.01397990388816,
+ "grad_norm": 0.24712848663330078,
+ "learning_rate": 0.0006,
+ "loss": 3.836700916290283,
+ "step": 1657
+ },
+ {
+ "epoch": 23.027959807776323,
+ "grad_norm": 0.28568798303604126,
+ "learning_rate": 0.0006,
+ "loss": 3.8523952960968018,
+ "step": 1658
+ },
+ {
+ "epoch": 23.041939711664483,
+ "grad_norm": 0.2999744415283203,
+ "learning_rate": 0.0006,
+ "loss": 3.8229494094848633,
+ "step": 1659
+ },
+ {
+ "epoch": 23.055919615552643,
+ "grad_norm": 0.32080450654029846,
+ "learning_rate": 0.0006,
+ "loss": 3.8562774658203125,
+ "step": 1660
+ },
+ {
+ "epoch": 23.069899519440803,
+ "grad_norm": 0.293468177318573,
+ "learning_rate": 0.0006,
+ "loss": 3.889139175415039,
+ "step": 1661
+ },
+ {
+ "epoch": 23.083879423328966,
+ "grad_norm": 0.2605799436569214,
+ "learning_rate": 0.0006,
+ "loss": 3.838681221008301,
+ "step": 1662
+ },
+ {
+ "epoch": 23.097859327217126,
+ "grad_norm": 0.2656237483024597,
+ "learning_rate": 0.0006,
+ "loss": 3.8603532314300537,
+ "step": 1663
+ },
+ {
+ "epoch": 23.111839231105286,
+ "grad_norm": 0.27163293957710266,
+ "learning_rate": 0.0006,
+ "loss": 3.846987009048462,
+ "step": 1664
+ },
+ {
+ "epoch": 23.125819134993446,
+ "grad_norm": 0.2719763517379761,
+ "learning_rate": 0.0006,
+ "loss": 3.805354595184326,
+ "step": 1665
+ },
+ {
+ "epoch": 23.13979903888161,
+ "grad_norm": 0.25786274671554565,
+ "learning_rate": 0.0006,
+ "loss": 3.8486907482147217,
+ "step": 1666
+ },
+ {
+ "epoch": 23.15377894276977,
+ "grad_norm": 0.2675692141056061,
+ "learning_rate": 0.0006,
+ "loss": 3.816493511199951,
+ "step": 1667
+ },
+ {
+ "epoch": 23.16775884665793,
+ "grad_norm": 0.2711698114871979,
+ "learning_rate": 0.0006,
+ "loss": 3.851863384246826,
+ "step": 1668
+ },
+ {
+ "epoch": 23.18173875054609,
+ "grad_norm": 0.2588968873023987,
+ "learning_rate": 0.0006,
+ "loss": 3.860816717147827,
+ "step": 1669
+ },
+ {
+ "epoch": 23.195718654434252,
+ "grad_norm": 0.2458600401878357,
+ "learning_rate": 0.0006,
+ "loss": 3.8058223724365234,
+ "step": 1670
+ },
+ {
+ "epoch": 23.209698558322412,
+ "grad_norm": 0.22014005482196808,
+ "learning_rate": 0.0006,
+ "loss": 3.8686985969543457,
+ "step": 1671
+ },
+ {
+ "epoch": 23.22367846221057,
+ "grad_norm": 0.22450537979602814,
+ "learning_rate": 0.0006,
+ "loss": 3.8379364013671875,
+ "step": 1672
+ },
+ {
+ "epoch": 23.23765836609873,
+ "grad_norm": 0.22132326662540436,
+ "learning_rate": 0.0006,
+ "loss": 3.8873870372772217,
+ "step": 1673
+ },
+ {
+ "epoch": 23.251638269986895,
+ "grad_norm": 0.20994804799556732,
+ "learning_rate": 0.0006,
+ "loss": 3.821415424346924,
+ "step": 1674
+ },
+ {
+ "epoch": 23.265618173875055,
+ "grad_norm": 0.2040853649377823,
+ "learning_rate": 0.0006,
+ "loss": 3.831658124923706,
+ "step": 1675
+ },
+ {
+ "epoch": 23.279598077763215,
+ "grad_norm": 0.20878618955612183,
+ "learning_rate": 0.0006,
+ "loss": 3.838672637939453,
+ "step": 1676
+ },
+ {
+ "epoch": 23.293577981651374,
+ "grad_norm": 0.19974198937416077,
+ "learning_rate": 0.0006,
+ "loss": 3.8442561626434326,
+ "step": 1677
+ },
+ {
+ "epoch": 23.307557885539538,
+ "grad_norm": 0.20523984730243683,
+ "learning_rate": 0.0006,
+ "loss": 3.846139907836914,
+ "step": 1678
+ },
+ {
+ "epoch": 23.321537789427698,
+ "grad_norm": 0.2045847624540329,
+ "learning_rate": 0.0006,
+ "loss": 3.8597474098205566,
+ "step": 1679
+ },
+ {
+ "epoch": 23.335517693315857,
+ "grad_norm": 0.20957441627979279,
+ "learning_rate": 0.0006,
+ "loss": 3.8493881225585938,
+ "step": 1680
+ },
+ {
+ "epoch": 23.34949759720402,
+ "grad_norm": 0.2069379836320877,
+ "learning_rate": 0.0006,
+ "loss": 3.8510046005249023,
+ "step": 1681
+ },
+ {
+ "epoch": 23.36347750109218,
+ "grad_norm": 0.19627872109413147,
+ "learning_rate": 0.0006,
+ "loss": 3.844618320465088,
+ "step": 1682
+ },
+ {
+ "epoch": 23.37745740498034,
+ "grad_norm": 0.19599434733390808,
+ "learning_rate": 0.0006,
+ "loss": 3.8245465755462646,
+ "step": 1683
+ },
+ {
+ "epoch": 23.3914373088685,
+ "grad_norm": 0.2035072147846222,
+ "learning_rate": 0.0006,
+ "loss": 3.854422092437744,
+ "step": 1684
+ },
+ {
+ "epoch": 23.405417212756664,
+ "grad_norm": 0.21836814284324646,
+ "learning_rate": 0.0006,
+ "loss": 3.83512282371521,
+ "step": 1685
+ },
+ {
+ "epoch": 23.419397116644824,
+ "grad_norm": 0.22844630479812622,
+ "learning_rate": 0.0006,
+ "loss": 3.8744301795959473,
+ "step": 1686
+ },
+ {
+ "epoch": 23.433377020532983,
+ "grad_norm": 0.2259359359741211,
+ "learning_rate": 0.0006,
+ "loss": 3.8460323810577393,
+ "step": 1687
+ },
+ {
+ "epoch": 23.447356924421143,
+ "grad_norm": 0.24440120160579681,
+ "learning_rate": 0.0006,
+ "loss": 3.8543787002563477,
+ "step": 1688
+ },
+ {
+ "epoch": 23.461336828309307,
+ "grad_norm": 0.25063708424568176,
+ "learning_rate": 0.0006,
+ "loss": 3.851004123687744,
+ "step": 1689
+ },
+ {
+ "epoch": 23.475316732197467,
+ "grad_norm": 0.25515618920326233,
+ "learning_rate": 0.0006,
+ "loss": 3.8685030937194824,
+ "step": 1690
+ },
+ {
+ "epoch": 23.489296636085626,
+ "grad_norm": 0.23961050808429718,
+ "learning_rate": 0.0006,
+ "loss": 3.866792678833008,
+ "step": 1691
+ },
+ {
+ "epoch": 23.503276539973786,
+ "grad_norm": 0.20880955457687378,
+ "learning_rate": 0.0006,
+ "loss": 3.8416638374328613,
+ "step": 1692
+ },
+ {
+ "epoch": 23.51725644386195,
+ "grad_norm": 0.1989721804857254,
+ "learning_rate": 0.0006,
+ "loss": 3.8608641624450684,
+ "step": 1693
+ },
+ {
+ "epoch": 23.53123634775011,
+ "grad_norm": 0.207577183842659,
+ "learning_rate": 0.0006,
+ "loss": 3.8431811332702637,
+ "step": 1694
+ },
+ {
+ "epoch": 23.54521625163827,
+ "grad_norm": 0.20844359695911407,
+ "learning_rate": 0.0006,
+ "loss": 3.882844924926758,
+ "step": 1695
+ },
+ {
+ "epoch": 23.55919615552643,
+ "grad_norm": 0.22511139512062073,
+ "learning_rate": 0.0006,
+ "loss": 3.866156578063965,
+ "step": 1696
+ },
+ {
+ "epoch": 23.573176059414592,
+ "grad_norm": 0.21648484468460083,
+ "learning_rate": 0.0006,
+ "loss": 3.87117075920105,
+ "step": 1697
+ },
+ {
+ "epoch": 23.587155963302752,
+ "grad_norm": 0.2081802636384964,
+ "learning_rate": 0.0006,
+ "loss": 3.828132152557373,
+ "step": 1698
+ },
+ {
+ "epoch": 23.601135867190912,
+ "grad_norm": 0.2017381489276886,
+ "learning_rate": 0.0006,
+ "loss": 3.839737892150879,
+ "step": 1699
+ },
+ {
+ "epoch": 23.615115771079076,
+ "grad_norm": 0.2025786191225052,
+ "learning_rate": 0.0006,
+ "loss": 3.8787710666656494,
+ "step": 1700
+ },
+ {
+ "epoch": 23.629095674967235,
+ "grad_norm": 0.21394102275371552,
+ "learning_rate": 0.0006,
+ "loss": 3.824047088623047,
+ "step": 1701
+ },
+ {
+ "epoch": 23.643075578855395,
+ "grad_norm": 0.20749174058437347,
+ "learning_rate": 0.0006,
+ "loss": 3.877009153366089,
+ "step": 1702
+ },
+ {
+ "epoch": 23.657055482743555,
+ "grad_norm": 0.2132839858531952,
+ "learning_rate": 0.0006,
+ "loss": 3.844214916229248,
+ "step": 1703
+ },
+ {
+ "epoch": 23.67103538663172,
+ "grad_norm": 0.22408637404441833,
+ "learning_rate": 0.0006,
+ "loss": 3.8570785522460938,
+ "step": 1704
+ },
+ {
+ "epoch": 23.68501529051988,
+ "grad_norm": 0.2275897115468979,
+ "learning_rate": 0.0006,
+ "loss": 3.8599512577056885,
+ "step": 1705
+ },
+ {
+ "epoch": 23.698995194408038,
+ "grad_norm": 0.2230614721775055,
+ "learning_rate": 0.0006,
+ "loss": 3.86374568939209,
+ "step": 1706
+ },
+ {
+ "epoch": 23.712975098296198,
+ "grad_norm": 0.21873739361763,
+ "learning_rate": 0.0006,
+ "loss": 3.8530168533325195,
+ "step": 1707
+ },
+ {
+ "epoch": 23.72695500218436,
+ "grad_norm": 0.24418923258781433,
+ "learning_rate": 0.0006,
+ "loss": 3.8410465717315674,
+ "step": 1708
+ },
+ {
+ "epoch": 23.74093490607252,
+ "grad_norm": 0.24894575774669647,
+ "learning_rate": 0.0006,
+ "loss": 3.8386030197143555,
+ "step": 1709
+ },
+ {
+ "epoch": 23.75491480996068,
+ "grad_norm": 0.221230611205101,
+ "learning_rate": 0.0006,
+ "loss": 3.8116674423217773,
+ "step": 1710
+ },
+ {
+ "epoch": 23.76889471384884,
+ "grad_norm": 0.20560568571090698,
+ "learning_rate": 0.0006,
+ "loss": 3.8634426593780518,
+ "step": 1711
+ },
+ {
+ "epoch": 23.782874617737004,
+ "grad_norm": 0.20450648665428162,
+ "learning_rate": 0.0006,
+ "loss": 3.8690528869628906,
+ "step": 1712
+ },
+ {
+ "epoch": 23.796854521625164,
+ "grad_norm": 0.18996809422969818,
+ "learning_rate": 0.0006,
+ "loss": 3.8484325408935547,
+ "step": 1713
+ },
+ {
+ "epoch": 23.810834425513324,
+ "grad_norm": 0.20165087282657623,
+ "learning_rate": 0.0006,
+ "loss": 3.8823161125183105,
+ "step": 1714
+ },
+ {
+ "epoch": 23.824814329401484,
+ "grad_norm": 0.21149255335330963,
+ "learning_rate": 0.0006,
+ "loss": 3.8833112716674805,
+ "step": 1715
+ },
+ {
+ "epoch": 23.838794233289647,
+ "grad_norm": 0.21254824101924896,
+ "learning_rate": 0.0006,
+ "loss": 3.8414595127105713,
+ "step": 1716
+ },
+ {
+ "epoch": 23.852774137177807,
+ "grad_norm": 0.21313664317131042,
+ "learning_rate": 0.0006,
+ "loss": 3.8732268810272217,
+ "step": 1717
+ },
+ {
+ "epoch": 23.866754041065967,
+ "grad_norm": 0.21635662019252777,
+ "learning_rate": 0.0006,
+ "loss": 3.861222743988037,
+ "step": 1718
+ },
+ {
+ "epoch": 23.88073394495413,
+ "grad_norm": 0.20612190663814545,
+ "learning_rate": 0.0006,
+ "loss": 3.821854591369629,
+ "step": 1719
+ },
+ {
+ "epoch": 23.89471384884229,
+ "grad_norm": 0.1975104659795761,
+ "learning_rate": 0.0006,
+ "loss": 3.8815202713012695,
+ "step": 1720
+ },
+ {
+ "epoch": 23.90869375273045,
+ "grad_norm": 0.20893609523773193,
+ "learning_rate": 0.0006,
+ "loss": 3.8581607341766357,
+ "step": 1721
+ },
+ {
+ "epoch": 23.92267365661861,
+ "grad_norm": 0.2125461846590042,
+ "learning_rate": 0.0006,
+ "loss": 3.839498281478882,
+ "step": 1722
+ },
+ {
+ "epoch": 23.936653560506773,
+ "grad_norm": 0.19985878467559814,
+ "learning_rate": 0.0006,
+ "loss": 3.856555223464966,
+ "step": 1723
+ },
+ {
+ "epoch": 23.950633464394933,
+ "grad_norm": 0.1922348290681839,
+ "learning_rate": 0.0006,
+ "loss": 3.8956782817840576,
+ "step": 1724
+ },
+ {
+ "epoch": 23.964613368283093,
+ "grad_norm": 0.2191949337720871,
+ "learning_rate": 0.0006,
+ "loss": 3.8582406044006348,
+ "step": 1725
+ },
+ {
+ "epoch": 23.978593272171253,
+ "grad_norm": 0.2569248676300049,
+ "learning_rate": 0.0006,
+ "loss": 3.855678081512451,
+ "step": 1726
+ },
+ {
+ "epoch": 23.992573176059416,
+ "grad_norm": 0.2641172409057617,
+ "learning_rate": 0.0006,
+ "loss": 3.8426473140716553,
+ "step": 1727
+ },
+ {
+ "epoch": 24.0,
+ "grad_norm": 0.29637208580970764,
+ "learning_rate": 0.0006,
+ "loss": 3.843040704727173,
+ "step": 1728
+ },
+ {
+ "epoch": 24.0,
+ "eval_loss": 4.075617790222168,
+ "eval_runtime": 43.9795,
+ "eval_samples_per_second": 55.526,
+ "eval_steps_per_second": 3.479,
+ "step": 1728
+ },
+ {
+ "epoch": 24.01397990388816,
+ "grad_norm": 0.2804758548736572,
+ "learning_rate": 0.0006,
+ "loss": 3.819150924682617,
+ "step": 1729
+ },
+ {
+ "epoch": 24.027959807776323,
+ "grad_norm": 0.2796347141265869,
+ "learning_rate": 0.0006,
+ "loss": 3.8400537967681885,
+ "step": 1730
+ },
+ {
+ "epoch": 24.041939711664483,
+ "grad_norm": 0.28388649225234985,
+ "learning_rate": 0.0006,
+ "loss": 3.844595432281494,
+ "step": 1731
+ },
+ {
+ "epoch": 24.055919615552643,
+ "grad_norm": 0.2944681942462921,
+ "learning_rate": 0.0006,
+ "loss": 3.8048014640808105,
+ "step": 1732
+ },
+ {
+ "epoch": 24.069899519440803,
+ "grad_norm": 0.2956784665584564,
+ "learning_rate": 0.0006,
+ "loss": 3.8488049507141113,
+ "step": 1733
+ },
+ {
+ "epoch": 24.083879423328966,
+ "grad_norm": 0.2822059392929077,
+ "learning_rate": 0.0006,
+ "loss": 3.850322723388672,
+ "step": 1734
+ },
+ {
+ "epoch": 24.097859327217126,
+ "grad_norm": 0.3012927174568176,
+ "learning_rate": 0.0006,
+ "loss": 3.8748154640197754,
+ "step": 1735
+ },
+ {
+ "epoch": 24.111839231105286,
+ "grad_norm": 0.28868764638900757,
+ "learning_rate": 0.0006,
+ "loss": 3.8282783031463623,
+ "step": 1736
+ },
+ {
+ "epoch": 24.125819134993446,
+ "grad_norm": 0.277203768491745,
+ "learning_rate": 0.0006,
+ "loss": 3.8462908267974854,
+ "step": 1737
+ },
+ {
+ "epoch": 24.13979903888161,
+ "grad_norm": 0.2654508948326111,
+ "learning_rate": 0.0006,
+ "loss": 3.8043856620788574,
+ "step": 1738
+ },
+ {
+ "epoch": 24.15377894276977,
+ "grad_norm": 0.24425740540027618,
+ "learning_rate": 0.0006,
+ "loss": 3.8284308910369873,
+ "step": 1739
+ },
+ {
+ "epoch": 24.16775884665793,
+ "grad_norm": 0.24407348036766052,
+ "learning_rate": 0.0006,
+ "loss": 3.8489203453063965,
+ "step": 1740
+ },
+ {
+ "epoch": 24.18173875054609,
+ "grad_norm": 0.2387724369764328,
+ "learning_rate": 0.0006,
+ "loss": 3.8240389823913574,
+ "step": 1741
+ },
+ {
+ "epoch": 24.195718654434252,
+ "grad_norm": 0.2832290232181549,
+ "learning_rate": 0.0006,
+ "loss": 3.869053363800049,
+ "step": 1742
+ },
+ {
+ "epoch": 24.209698558322412,
+ "grad_norm": 0.26501718163490295,
+ "learning_rate": 0.0006,
+ "loss": 3.8624343872070312,
+ "step": 1743
+ },
+ {
+ "epoch": 24.22367846221057,
+ "grad_norm": 0.24234668910503387,
+ "learning_rate": 0.0006,
+ "loss": 3.823103904724121,
+ "step": 1744
+ },
+ {
+ "epoch": 24.23765836609873,
+ "grad_norm": 0.24160076677799225,
+ "learning_rate": 0.0006,
+ "loss": 3.8174376487731934,
+ "step": 1745
+ },
+ {
+ "epoch": 24.251638269986895,
+ "grad_norm": 0.2447604238986969,
+ "learning_rate": 0.0006,
+ "loss": 3.8345441818237305,
+ "step": 1746
+ },
+ {
+ "epoch": 24.265618173875055,
+ "grad_norm": 0.22864456474781036,
+ "learning_rate": 0.0006,
+ "loss": 3.833101272583008,
+ "step": 1747
+ },
+ {
+ "epoch": 24.279598077763215,
+ "grad_norm": 0.20429204404354095,
+ "learning_rate": 0.0006,
+ "loss": 3.8055219650268555,
+ "step": 1748
+ },
+ {
+ "epoch": 24.293577981651374,
+ "grad_norm": 0.21538510918617249,
+ "learning_rate": 0.0006,
+ "loss": 3.7929327487945557,
+ "step": 1749
+ },
+ {
+ "epoch": 24.307557885539538,
+ "grad_norm": 0.2189008593559265,
+ "learning_rate": 0.0006,
+ "loss": 3.852264881134033,
+ "step": 1750
+ },
+ {
+ "epoch": 24.321537789427698,
+ "grad_norm": 0.2228662073612213,
+ "learning_rate": 0.0006,
+ "loss": 3.831088066101074,
+ "step": 1751
+ },
+ {
+ "epoch": 24.335517693315857,
+ "grad_norm": 0.2039937973022461,
+ "learning_rate": 0.0006,
+ "loss": 3.8358256816864014,
+ "step": 1752
+ },
+ {
+ "epoch": 24.34949759720402,
+ "grad_norm": 0.19247715175151825,
+ "learning_rate": 0.0006,
+ "loss": 3.8077402114868164,
+ "step": 1753
+ },
+ {
+ "epoch": 24.36347750109218,
+ "grad_norm": 0.18301935493946075,
+ "learning_rate": 0.0006,
+ "loss": 3.81380033493042,
+ "step": 1754
+ },
+ {
+ "epoch": 24.37745740498034,
+ "grad_norm": 0.19325268268585205,
+ "learning_rate": 0.0006,
+ "loss": 3.8447322845458984,
+ "step": 1755
+ },
+ {
+ "epoch": 24.3914373088685,
+ "grad_norm": 0.2007269263267517,
+ "learning_rate": 0.0006,
+ "loss": 3.82779860496521,
+ "step": 1756
+ },
+ {
+ "epoch": 24.405417212756664,
+ "grad_norm": 0.20567037165164948,
+ "learning_rate": 0.0006,
+ "loss": 3.800354480743408,
+ "step": 1757
+ },
+ {
+ "epoch": 24.419397116644824,
+ "grad_norm": 0.22553028166294098,
+ "learning_rate": 0.0006,
+ "loss": 3.7910406589508057,
+ "step": 1758
+ },
+ {
+ "epoch": 24.433377020532983,
+ "grad_norm": 0.22697079181671143,
+ "learning_rate": 0.0006,
+ "loss": 3.857635974884033,
+ "step": 1759
+ },
+ {
+ "epoch": 24.447356924421143,
+ "grad_norm": 0.22090297937393188,
+ "learning_rate": 0.0006,
+ "loss": 3.8112804889678955,
+ "step": 1760
+ },
+ {
+ "epoch": 24.461336828309307,
+ "grad_norm": 0.24325518310070038,
+ "learning_rate": 0.0006,
+ "loss": 3.822084426879883,
+ "step": 1761
+ },
+ {
+ "epoch": 24.475316732197467,
+ "grad_norm": 0.2702929377555847,
+ "learning_rate": 0.0006,
+ "loss": 3.8307600021362305,
+ "step": 1762
+ },
+ {
+ "epoch": 24.489296636085626,
+ "grad_norm": 0.2699742317199707,
+ "learning_rate": 0.0006,
+ "loss": 3.8479247093200684,
+ "step": 1763
+ },
+ {
+ "epoch": 24.503276539973786,
+ "grad_norm": 0.2526061236858368,
+ "learning_rate": 0.0006,
+ "loss": 3.8615071773529053,
+ "step": 1764
+ },
+ {
+ "epoch": 24.51725644386195,
+ "grad_norm": 0.2633848190307617,
+ "learning_rate": 0.0006,
+ "loss": 3.8412697315216064,
+ "step": 1765
+ },
+ {
+ "epoch": 24.53123634775011,
+ "grad_norm": 0.2711184024810791,
+ "learning_rate": 0.0006,
+ "loss": 3.83647084236145,
+ "step": 1766
+ },
+ {
+ "epoch": 24.54521625163827,
+ "grad_norm": 0.2691243588924408,
+ "learning_rate": 0.0006,
+ "loss": 3.8489012718200684,
+ "step": 1767
+ },
+ {
+ "epoch": 24.55919615552643,
+ "grad_norm": 0.2580898404121399,
+ "learning_rate": 0.0006,
+ "loss": 3.8464407920837402,
+ "step": 1768
+ },
+ {
+ "epoch": 24.573176059414592,
+ "grad_norm": 0.21342119574546814,
+ "learning_rate": 0.0006,
+ "loss": 3.8279383182525635,
+ "step": 1769
+ },
+ {
+ "epoch": 24.587155963302752,
+ "grad_norm": 0.22102399170398712,
+ "learning_rate": 0.0006,
+ "loss": 3.841676712036133,
+ "step": 1770
+ },
+ {
+ "epoch": 24.601135867190912,
+ "grad_norm": 0.2882173955440521,
+ "learning_rate": 0.0006,
+ "loss": 3.825528383255005,
+ "step": 1771
+ },
+ {
+ "epoch": 24.615115771079076,
+ "grad_norm": 0.3403635323047638,
+ "learning_rate": 0.0006,
+ "loss": 3.8282246589660645,
+ "step": 1772
+ },
+ {
+ "epoch": 24.629095674967235,
+ "grad_norm": 0.32192692160606384,
+ "learning_rate": 0.0006,
+ "loss": 3.8411307334899902,
+ "step": 1773
+ },
+ {
+ "epoch": 24.643075578855395,
+ "grad_norm": 0.2534109055995941,
+ "learning_rate": 0.0006,
+ "loss": 3.843007802963257,
+ "step": 1774
+ },
+ {
+ "epoch": 24.657055482743555,
+ "grad_norm": 0.25483962893486023,
+ "learning_rate": 0.0006,
+ "loss": 3.848358154296875,
+ "step": 1775
+ },
+ {
+ "epoch": 24.67103538663172,
+ "grad_norm": 0.25175443291664124,
+ "learning_rate": 0.0006,
+ "loss": 3.8232598304748535,
+ "step": 1776
+ },
+ {
+ "epoch": 24.68501529051988,
+ "grad_norm": 0.20538510382175446,
+ "learning_rate": 0.0006,
+ "loss": 3.857635498046875,
+ "step": 1777
+ },
+ {
+ "epoch": 24.698995194408038,
+ "grad_norm": 0.240861177444458,
+ "learning_rate": 0.0006,
+ "loss": 3.83717679977417,
+ "step": 1778
+ },
+ {
+ "epoch": 24.712975098296198,
+ "grad_norm": 0.23646967113018036,
+ "learning_rate": 0.0006,
+ "loss": 3.81032133102417,
+ "step": 1779
+ },
+ {
+ "epoch": 24.72695500218436,
+ "grad_norm": 0.2164423167705536,
+ "learning_rate": 0.0006,
+ "loss": 3.807878255844116,
+ "step": 1780
+ },
+ {
+ "epoch": 24.74093490607252,
+ "grad_norm": 0.21160705387592316,
+ "learning_rate": 0.0006,
+ "loss": 3.870394468307495,
+ "step": 1781
+ },
+ {
+ "epoch": 24.75491480996068,
+ "grad_norm": 0.20284807682037354,
+ "learning_rate": 0.0006,
+ "loss": 3.842154026031494,
+ "step": 1782
+ },
+ {
+ "epoch": 24.76889471384884,
+ "grad_norm": 0.20738485455513,
+ "learning_rate": 0.0006,
+ "loss": 3.8347136974334717,
+ "step": 1783
+ },
+ {
+ "epoch": 24.782874617737004,
+ "grad_norm": 0.20253778994083405,
+ "learning_rate": 0.0006,
+ "loss": 3.814948320388794,
+ "step": 1784
+ },
+ {
+ "epoch": 24.796854521625164,
+ "grad_norm": 0.20567010343074799,
+ "learning_rate": 0.0006,
+ "loss": 3.8354592323303223,
+ "step": 1785
+ },
+ {
+ "epoch": 24.810834425513324,
+ "grad_norm": 0.20639720559120178,
+ "learning_rate": 0.0006,
+ "loss": 3.8336033821105957,
+ "step": 1786
+ },
+ {
+ "epoch": 24.824814329401484,
+ "grad_norm": 0.19978247582912445,
+ "learning_rate": 0.0006,
+ "loss": 3.8209140300750732,
+ "step": 1787
+ },
+ {
+ "epoch": 24.838794233289647,
+ "grad_norm": 0.20628373324871063,
+ "learning_rate": 0.0006,
+ "loss": 3.8372955322265625,
+ "step": 1788
+ },
+ {
+ "epoch": 24.852774137177807,
+ "grad_norm": 0.2266162782907486,
+ "learning_rate": 0.0006,
+ "loss": 3.850994110107422,
+ "step": 1789
+ },
+ {
+ "epoch": 24.866754041065967,
+ "grad_norm": 0.22567765414714813,
+ "learning_rate": 0.0006,
+ "loss": 3.8552165031433105,
+ "step": 1790
+ },
+ {
+ "epoch": 24.88073394495413,
+ "grad_norm": 0.228011354804039,
+ "learning_rate": 0.0006,
+ "loss": 3.8310747146606445,
+ "step": 1791
+ },
+ {
+ "epoch": 24.89471384884229,
+ "grad_norm": 0.23706914484500885,
+ "learning_rate": 0.0006,
+ "loss": 3.8369603157043457,
+ "step": 1792
+ },
+ {
+ "epoch": 24.90869375273045,
+ "grad_norm": 0.22669097781181335,
+ "learning_rate": 0.0006,
+ "loss": 3.8443825244903564,
+ "step": 1793
+ },
+ {
+ "epoch": 24.92267365661861,
+ "grad_norm": 0.2051001936197281,
+ "learning_rate": 0.0006,
+ "loss": 3.7938501834869385,
+ "step": 1794
+ },
+ {
+ "epoch": 24.936653560506773,
+ "grad_norm": 0.2091219276189804,
+ "learning_rate": 0.0006,
+ "loss": 3.8167076110839844,
+ "step": 1795
+ },
+ {
+ "epoch": 24.950633464394933,
+ "grad_norm": 0.20517204701900482,
+ "learning_rate": 0.0006,
+ "loss": 3.852670669555664,
+ "step": 1796
+ },
+ {
+ "epoch": 24.964613368283093,
+ "grad_norm": 0.19916993379592896,
+ "learning_rate": 0.0006,
+ "loss": 3.8410873413085938,
+ "step": 1797
+ },
+ {
+ "epoch": 24.978593272171253,
+ "grad_norm": 0.21313942968845367,
+ "learning_rate": 0.0006,
+ "loss": 3.8383948802948,
+ "step": 1798
+ },
+ {
+ "epoch": 24.992573176059416,
+ "grad_norm": 0.21042990684509277,
+ "learning_rate": 0.0006,
+ "loss": 3.8623173236846924,
+ "step": 1799
+ },
+ {
+ "epoch": 25.0,
+ "grad_norm": 0.23052045702934265,
+ "learning_rate": 0.0006,
+ "loss": 3.8646674156188965,
+ "step": 1800
+ },
+ {
+ "epoch": 25.0,
+ "eval_loss": 4.081690311431885,
+ "eval_runtime": 44.036,
+ "eval_samples_per_second": 55.455,
+ "eval_steps_per_second": 3.474,
+ "step": 1800
+ },
+ {
+ "epoch": 25.01397990388816,
+ "grad_norm": 0.22068746387958527,
+ "learning_rate": 0.0006,
+ "loss": 3.8002820014953613,
+ "step": 1801
+ },
+ {
+ "epoch": 25.027959807776323,
+ "grad_norm": 0.20711193978786469,
+ "learning_rate": 0.0006,
+ "loss": 3.787785768508911,
+ "step": 1802
+ },
+ {
+ "epoch": 25.041939711664483,
+ "grad_norm": 0.20659677684307098,
+ "learning_rate": 0.0006,
+ "loss": 3.80245304107666,
+ "step": 1803
+ },
+ {
+ "epoch": 25.055919615552643,
+ "grad_norm": 0.22891797125339508,
+ "learning_rate": 0.0006,
+ "loss": 3.784543514251709,
+ "step": 1804
+ },
+ {
+ "epoch": 25.069899519440803,
+ "grad_norm": 0.23679181933403015,
+ "learning_rate": 0.0006,
+ "loss": 3.8311429023742676,
+ "step": 1805
+ },
+ {
+ "epoch": 25.083879423328966,
+ "grad_norm": 0.2548872232437134,
+ "learning_rate": 0.0006,
+ "loss": 3.8047211170196533,
+ "step": 1806
+ },
+ {
+ "epoch": 25.097859327217126,
+ "grad_norm": 0.26181501150131226,
+ "learning_rate": 0.0006,
+ "loss": 3.837508201599121,
+ "step": 1807
+ },
+ {
+ "epoch": 25.111839231105286,
+ "grad_norm": 0.2548452913761139,
+ "learning_rate": 0.0006,
+ "loss": 3.831544876098633,
+ "step": 1808
+ },
+ {
+ "epoch": 25.125819134993446,
+ "grad_norm": 0.26177605986595154,
+ "learning_rate": 0.0006,
+ "loss": 3.805346965789795,
+ "step": 1809
+ },
+ {
+ "epoch": 25.13979903888161,
+ "grad_norm": 0.2608112394809723,
+ "learning_rate": 0.0006,
+ "loss": 3.8040924072265625,
+ "step": 1810
+ },
+ {
+ "epoch": 25.15377894276977,
+ "grad_norm": 0.2586037814617157,
+ "learning_rate": 0.0006,
+ "loss": 3.8102216720581055,
+ "step": 1811
+ },
+ {
+ "epoch": 25.16775884665793,
+ "grad_norm": 0.26258161664009094,
+ "learning_rate": 0.0006,
+ "loss": 3.8152549266815186,
+ "step": 1812
+ },
+ {
+ "epoch": 25.18173875054609,
+ "grad_norm": 0.2803022265434265,
+ "learning_rate": 0.0006,
+ "loss": 3.82576584815979,
+ "step": 1813
+ },
+ {
+ "epoch": 25.195718654434252,
+ "grad_norm": 0.2618221938610077,
+ "learning_rate": 0.0006,
+ "loss": 3.817220687866211,
+ "step": 1814
+ },
+ {
+ "epoch": 25.209698558322412,
+ "grad_norm": 0.23283469676971436,
+ "learning_rate": 0.0006,
+ "loss": 3.7999041080474854,
+ "step": 1815
+ },
+ {
+ "epoch": 25.22367846221057,
+ "grad_norm": 0.20110781490802765,
+ "learning_rate": 0.0006,
+ "loss": 3.783228874206543,
+ "step": 1816
+ },
+ {
+ "epoch": 25.23765836609873,
+ "grad_norm": 0.2231830358505249,
+ "learning_rate": 0.0006,
+ "loss": 3.8032913208007812,
+ "step": 1817
+ },
+ {
+ "epoch": 25.251638269986895,
+ "grad_norm": 0.21807286143302917,
+ "learning_rate": 0.0006,
+ "loss": 3.817028045654297,
+ "step": 1818
+ },
+ {
+ "epoch": 25.265618173875055,
+ "grad_norm": 0.22710664570331573,
+ "learning_rate": 0.0006,
+ "loss": 3.8201727867126465,
+ "step": 1819
+ },
+ {
+ "epoch": 25.279598077763215,
+ "grad_norm": 0.22299866378307343,
+ "learning_rate": 0.0006,
+ "loss": 3.8198719024658203,
+ "step": 1820
+ },
+ {
+ "epoch": 25.293577981651374,
+ "grad_norm": 0.20886564254760742,
+ "learning_rate": 0.0006,
+ "loss": 3.792414665222168,
+ "step": 1821
+ },
+ {
+ "epoch": 25.307557885539538,
+ "grad_norm": 0.20887352526187897,
+ "learning_rate": 0.0006,
+ "loss": 3.7634057998657227,
+ "step": 1822
+ },
+ {
+ "epoch": 25.321537789427698,
+ "grad_norm": 0.24560041725635529,
+ "learning_rate": 0.0006,
+ "loss": 3.79359769821167,
+ "step": 1823
+ },
+ {
+ "epoch": 25.335517693315857,
+ "grad_norm": 0.22767415642738342,
+ "learning_rate": 0.0006,
+ "loss": 3.8313469886779785,
+ "step": 1824
+ },
+ {
+ "epoch": 25.34949759720402,
+ "grad_norm": 0.21617893874645233,
+ "learning_rate": 0.0006,
+ "loss": 3.77200984954834,
+ "step": 1825
+ },
+ {
+ "epoch": 25.36347750109218,
+ "grad_norm": 0.21010833978652954,
+ "learning_rate": 0.0006,
+ "loss": 3.8042140007019043,
+ "step": 1826
+ },
+ {
+ "epoch": 25.37745740498034,
+ "grad_norm": 0.24087965488433838,
+ "learning_rate": 0.0006,
+ "loss": 3.8260979652404785,
+ "step": 1827
+ },
+ {
+ "epoch": 25.3914373088685,
+ "grad_norm": 0.2735275626182556,
+ "learning_rate": 0.0006,
+ "loss": 3.8499274253845215,
+ "step": 1828
+ },
+ {
+ "epoch": 25.405417212756664,
+ "grad_norm": 0.24831001460552216,
+ "learning_rate": 0.0006,
+ "loss": 3.8146448135375977,
+ "step": 1829
+ },
+ {
+ "epoch": 25.419397116644824,
+ "grad_norm": 0.21822866797447205,
+ "learning_rate": 0.0006,
+ "loss": 3.7845146656036377,
+ "step": 1830
+ },
+ {
+ "epoch": 25.433377020532983,
+ "grad_norm": 0.19948813319206238,
+ "learning_rate": 0.0006,
+ "loss": 3.823997974395752,
+ "step": 1831
+ },
+ {
+ "epoch": 25.447356924421143,
+ "grad_norm": 0.18342702090740204,
+ "learning_rate": 0.0006,
+ "loss": 3.8201193809509277,
+ "step": 1832
+ },
+ {
+ "epoch": 25.461336828309307,
+ "grad_norm": 0.19377560913562775,
+ "learning_rate": 0.0006,
+ "loss": 3.8069632053375244,
+ "step": 1833
+ },
+ {
+ "epoch": 25.475316732197467,
+ "grad_norm": 0.22348709404468536,
+ "learning_rate": 0.0006,
+ "loss": 3.7918643951416016,
+ "step": 1834
+ },
+ {
+ "epoch": 25.489296636085626,
+ "grad_norm": 0.24484702944755554,
+ "learning_rate": 0.0006,
+ "loss": 3.85046124458313,
+ "step": 1835
+ },
+ {
+ "epoch": 25.503276539973786,
+ "grad_norm": 0.2493520826101303,
+ "learning_rate": 0.0006,
+ "loss": 3.8043932914733887,
+ "step": 1836
+ },
+ {
+ "epoch": 25.51725644386195,
+ "grad_norm": 0.21509641408920288,
+ "learning_rate": 0.0006,
+ "loss": 3.8064627647399902,
+ "step": 1837
+ },
+ {
+ "epoch": 25.53123634775011,
+ "grad_norm": 0.21912820637226105,
+ "learning_rate": 0.0006,
+ "loss": 3.850588321685791,
+ "step": 1838
+ },
+ {
+ "epoch": 25.54521625163827,
+ "grad_norm": 0.28400927782058716,
+ "learning_rate": 0.0006,
+ "loss": 3.79818058013916,
+ "step": 1839
+ },
+ {
+ "epoch": 25.55919615552643,
+ "grad_norm": 0.32193225622177124,
+ "learning_rate": 0.0006,
+ "loss": 3.836275815963745,
+ "step": 1840
+ },
+ {
+ "epoch": 25.573176059414592,
+ "grad_norm": 0.2902325987815857,
+ "learning_rate": 0.0006,
+ "loss": 3.8080005645751953,
+ "step": 1841
+ },
+ {
+ "epoch": 25.587155963302752,
+ "grad_norm": 0.21759532392024994,
+ "learning_rate": 0.0006,
+ "loss": 3.8233771324157715,
+ "step": 1842
+ },
+ {
+ "epoch": 25.601135867190912,
+ "grad_norm": 0.19645214080810547,
+ "learning_rate": 0.0006,
+ "loss": 3.838881015777588,
+ "step": 1843
+ },
+ {
+ "epoch": 25.615115771079076,
+ "grad_norm": 0.19322903454303741,
+ "learning_rate": 0.0006,
+ "loss": 3.7870054244995117,
+ "step": 1844
+ },
+ {
+ "epoch": 25.629095674967235,
+ "grad_norm": 0.2074001580476761,
+ "learning_rate": 0.0006,
+ "loss": 3.8239974975585938,
+ "step": 1845
+ },
+ {
+ "epoch": 25.643075578855395,
+ "grad_norm": 0.2166101336479187,
+ "learning_rate": 0.0006,
+ "loss": 3.8290855884552,
+ "step": 1846
+ },
+ {
+ "epoch": 25.657055482743555,
+ "grad_norm": 0.23738539218902588,
+ "learning_rate": 0.0006,
+ "loss": 3.7993364334106445,
+ "step": 1847
+ },
+ {
+ "epoch": 25.67103538663172,
+ "grad_norm": 0.23882314562797546,
+ "learning_rate": 0.0006,
+ "loss": 3.802586078643799,
+ "step": 1848
+ },
+ {
+ "epoch": 25.68501529051988,
+ "grad_norm": 0.24168142676353455,
+ "learning_rate": 0.0006,
+ "loss": 3.8303489685058594,
+ "step": 1849
+ },
+ {
+ "epoch": 25.698995194408038,
+ "grad_norm": 0.22423343360424042,
+ "learning_rate": 0.0006,
+ "loss": 3.836228370666504,
+ "step": 1850
+ },
+ {
+ "epoch": 25.712975098296198,
+ "grad_norm": 0.23816974461078644,
+ "learning_rate": 0.0006,
+ "loss": 3.8380274772644043,
+ "step": 1851
+ },
+ {
+ "epoch": 25.72695500218436,
+ "grad_norm": 0.22465108335018158,
+ "learning_rate": 0.0006,
+ "loss": 3.8496339321136475,
+ "step": 1852
+ },
+ {
+ "epoch": 25.74093490607252,
+ "grad_norm": 0.20792442560195923,
+ "learning_rate": 0.0006,
+ "loss": 3.797853946685791,
+ "step": 1853
+ },
+ {
+ "epoch": 25.75491480996068,
+ "grad_norm": 0.20770230889320374,
+ "learning_rate": 0.0006,
+ "loss": 3.842322826385498,
+ "step": 1854
+ },
+ {
+ "epoch": 25.76889471384884,
+ "grad_norm": 0.1928192526102066,
+ "learning_rate": 0.0006,
+ "loss": 3.836540699005127,
+ "step": 1855
+ },
+ {
+ "epoch": 25.782874617737004,
+ "grad_norm": 0.19045178592205048,
+ "learning_rate": 0.0006,
+ "loss": 3.7758889198303223,
+ "step": 1856
+ },
+ {
+ "epoch": 25.796854521625164,
+ "grad_norm": 0.205548495054245,
+ "learning_rate": 0.0006,
+ "loss": 3.8244709968566895,
+ "step": 1857
+ },
+ {
+ "epoch": 25.810834425513324,
+ "grad_norm": 0.20968270301818848,
+ "learning_rate": 0.0006,
+ "loss": 3.8376216888427734,
+ "step": 1858
+ },
+ {
+ "epoch": 25.824814329401484,
+ "grad_norm": 0.18917354941368103,
+ "learning_rate": 0.0006,
+ "loss": 3.8497915267944336,
+ "step": 1859
+ },
+ {
+ "epoch": 25.838794233289647,
+ "grad_norm": 0.2050701528787613,
+ "learning_rate": 0.0006,
+ "loss": 3.819628953933716,
+ "step": 1860
+ },
+ {
+ "epoch": 25.852774137177807,
+ "grad_norm": 0.1981319785118103,
+ "learning_rate": 0.0006,
+ "loss": 3.8007922172546387,
+ "step": 1861
+ },
+ {
+ "epoch": 25.866754041065967,
+ "grad_norm": 0.19055861234664917,
+ "learning_rate": 0.0006,
+ "loss": 3.8304519653320312,
+ "step": 1862
+ },
+ {
+ "epoch": 25.88073394495413,
+ "grad_norm": 0.19255517423152924,
+ "learning_rate": 0.0006,
+ "loss": 3.833280563354492,
+ "step": 1863
+ },
+ {
+ "epoch": 25.89471384884229,
+ "grad_norm": 0.19059430062770844,
+ "learning_rate": 0.0006,
+ "loss": 3.813796281814575,
+ "step": 1864
+ },
+ {
+ "epoch": 25.90869375273045,
+ "grad_norm": 0.18581309914588928,
+ "learning_rate": 0.0006,
+ "loss": 3.8211798667907715,
+ "step": 1865
+ },
+ {
+ "epoch": 25.92267365661861,
+ "grad_norm": 0.20181003212928772,
+ "learning_rate": 0.0006,
+ "loss": 3.8380484580993652,
+ "step": 1866
+ },
+ {
+ "epoch": 25.936653560506773,
+ "grad_norm": 0.22334498167037964,
+ "learning_rate": 0.0006,
+ "loss": 3.8294434547424316,
+ "step": 1867
+ },
+ {
+ "epoch": 25.950633464394933,
+ "grad_norm": 0.20456703007221222,
+ "learning_rate": 0.0006,
+ "loss": 3.819223642349243,
+ "step": 1868
+ },
+ {
+ "epoch": 25.964613368283093,
+ "grad_norm": 0.1885606348514557,
+ "learning_rate": 0.0006,
+ "loss": 3.8110103607177734,
+ "step": 1869
+ },
+ {
+ "epoch": 25.978593272171253,
+ "grad_norm": 0.18862110376358032,
+ "learning_rate": 0.0006,
+ "loss": 3.788691997528076,
+ "step": 1870
+ },
+ {
+ "epoch": 25.992573176059416,
+ "grad_norm": 0.19802744686603546,
+ "learning_rate": 0.0006,
+ "loss": 3.8423619270324707,
+ "step": 1871
+ },
+ {
+ "epoch": 26.0,
+ "grad_norm": 0.23762032389640808,
+ "learning_rate": 0.0006,
+ "loss": 3.7848567962646484,
+ "step": 1872
+ },
+ {
+ "epoch": 26.0,
+ "eval_loss": 4.054965019226074,
+ "eval_runtime": 44.2423,
+ "eval_samples_per_second": 55.196,
+ "eval_steps_per_second": 3.458,
+ "step": 1872
+ },
+ {
+ "epoch": 26.01397990388816,
+ "grad_norm": 0.21533054113388062,
+ "learning_rate": 0.0006,
+ "loss": 3.8123154640197754,
+ "step": 1873
+ },
+ {
+ "epoch": 26.027959807776323,
+ "grad_norm": 0.25094854831695557,
+ "learning_rate": 0.0006,
+ "loss": 3.7847447395324707,
+ "step": 1874
+ },
+ {
+ "epoch": 26.041939711664483,
+ "grad_norm": 0.24042077362537384,
+ "learning_rate": 0.0006,
+ "loss": 3.8033599853515625,
+ "step": 1875
+ },
+ {
+ "epoch": 26.055919615552643,
+ "grad_norm": 0.2425149381160736,
+ "learning_rate": 0.0006,
+ "loss": 3.7828550338745117,
+ "step": 1876
+ },
+ {
+ "epoch": 26.069899519440803,
+ "grad_norm": 0.2300514280796051,
+ "learning_rate": 0.0006,
+ "loss": 3.750882148742676,
+ "step": 1877
+ },
+ {
+ "epoch": 26.083879423328966,
+ "grad_norm": 0.2513943612575531,
+ "learning_rate": 0.0006,
+ "loss": 3.800323963165283,
+ "step": 1878
+ },
+ {
+ "epoch": 26.097859327217126,
+ "grad_norm": 0.2536966800689697,
+ "learning_rate": 0.0006,
+ "loss": 3.8198962211608887,
+ "step": 1879
+ },
+ {
+ "epoch": 26.111839231105286,
+ "grad_norm": 0.24483931064605713,
+ "learning_rate": 0.0006,
+ "loss": 3.825563907623291,
+ "step": 1880
+ },
+ {
+ "epoch": 26.125819134993446,
+ "grad_norm": 0.2502584755420685,
+ "learning_rate": 0.0006,
+ "loss": 3.78756046295166,
+ "step": 1881
+ },
+ {
+ "epoch": 26.13979903888161,
+ "grad_norm": 0.2695745527744293,
+ "learning_rate": 0.0006,
+ "loss": 3.8205409049987793,
+ "step": 1882
+ },
+ {
+ "epoch": 26.15377894276977,
+ "grad_norm": 0.2873472273349762,
+ "learning_rate": 0.0006,
+ "loss": 3.7880778312683105,
+ "step": 1883
+ },
+ {
+ "epoch": 26.16775884665793,
+ "grad_norm": 0.28609949350357056,
+ "learning_rate": 0.0006,
+ "loss": 3.788517951965332,
+ "step": 1884
+ },
+ {
+ "epoch": 26.18173875054609,
+ "grad_norm": 0.28352269530296326,
+ "learning_rate": 0.0006,
+ "loss": 3.778015613555908,
+ "step": 1885
+ },
+ {
+ "epoch": 26.195718654434252,
+ "grad_norm": 0.27055084705352783,
+ "learning_rate": 0.0006,
+ "loss": 3.7857203483581543,
+ "step": 1886
+ },
+ {
+ "epoch": 26.209698558322412,
+ "grad_norm": 0.255647748708725,
+ "learning_rate": 0.0006,
+ "loss": 3.791355609893799,
+ "step": 1887
+ },
+ {
+ "epoch": 26.22367846221057,
+ "grad_norm": 0.22624439001083374,
+ "learning_rate": 0.0006,
+ "loss": 3.7624831199645996,
+ "step": 1888
+ },
+ {
+ "epoch": 26.23765836609873,
+ "grad_norm": 0.2283596396446228,
+ "learning_rate": 0.0006,
+ "loss": 3.8052897453308105,
+ "step": 1889
+ },
+ {
+ "epoch": 26.251638269986895,
+ "grad_norm": 0.2336510866880417,
+ "learning_rate": 0.0006,
+ "loss": 3.789015054702759,
+ "step": 1890
+ },
+ {
+ "epoch": 26.265618173875055,
+ "grad_norm": 0.24107608199119568,
+ "learning_rate": 0.0006,
+ "loss": 3.756551742553711,
+ "step": 1891
+ },
+ {
+ "epoch": 26.279598077763215,
+ "grad_norm": 0.22438564896583557,
+ "learning_rate": 0.0006,
+ "loss": 3.797952651977539,
+ "step": 1892
+ },
+ {
+ "epoch": 26.293577981651374,
+ "grad_norm": 0.24594341218471527,
+ "learning_rate": 0.0006,
+ "loss": 3.7925708293914795,
+ "step": 1893
+ },
+ {
+ "epoch": 26.307557885539538,
+ "grad_norm": 0.23314352333545685,
+ "learning_rate": 0.0006,
+ "loss": 3.792447328567505,
+ "step": 1894
+ },
+ {
+ "epoch": 26.321537789427698,
+ "grad_norm": 0.20870383083820343,
+ "learning_rate": 0.0006,
+ "loss": 3.7888340950012207,
+ "step": 1895
+ },
+ {
+ "epoch": 26.335517693315857,
+ "grad_norm": 0.206504687666893,
+ "learning_rate": 0.0006,
+ "loss": 3.7856602668762207,
+ "step": 1896
+ },
+ {
+ "epoch": 26.34949759720402,
+ "grad_norm": 0.20193266868591309,
+ "learning_rate": 0.0006,
+ "loss": 3.810800552368164,
+ "step": 1897
+ },
+ {
+ "epoch": 26.36347750109218,
+ "grad_norm": 0.2143869698047638,
+ "learning_rate": 0.0006,
+ "loss": 3.818742275238037,
+ "step": 1898
+ },
+ {
+ "epoch": 26.37745740498034,
+ "grad_norm": 0.21388593316078186,
+ "learning_rate": 0.0006,
+ "loss": 3.7576632499694824,
+ "step": 1899
+ },
+ {
+ "epoch": 26.3914373088685,
+ "grad_norm": 0.1933414787054062,
+ "learning_rate": 0.0006,
+ "loss": 3.802579879760742,
+ "step": 1900
+ },
+ {
+ "epoch": 26.405417212756664,
+ "grad_norm": 0.18144549429416656,
+ "learning_rate": 0.0006,
+ "loss": 3.7830452919006348,
+ "step": 1901
+ },
+ {
+ "epoch": 26.419397116644824,
+ "grad_norm": 0.20027601718902588,
+ "learning_rate": 0.0006,
+ "loss": 3.8112521171569824,
+ "step": 1902
+ },
+ {
+ "epoch": 26.433377020532983,
+ "grad_norm": 0.19402910768985748,
+ "learning_rate": 0.0006,
+ "loss": 3.778012990951538,
+ "step": 1903
+ },
+ {
+ "epoch": 26.447356924421143,
+ "grad_norm": 0.19020743668079376,
+ "learning_rate": 0.0006,
+ "loss": 3.823355197906494,
+ "step": 1904
+ },
+ {
+ "epoch": 26.461336828309307,
+ "grad_norm": 0.1885242760181427,
+ "learning_rate": 0.0006,
+ "loss": 3.782108783721924,
+ "step": 1905
+ },
+ {
+ "epoch": 26.475316732197467,
+ "grad_norm": 0.2024235874414444,
+ "learning_rate": 0.0006,
+ "loss": 3.810448408126831,
+ "step": 1906
+ },
+ {
+ "epoch": 26.489296636085626,
+ "grad_norm": 0.21408027410507202,
+ "learning_rate": 0.0006,
+ "loss": 3.8185606002807617,
+ "step": 1907
+ },
+ {
+ "epoch": 26.503276539973786,
+ "grad_norm": 0.22810906171798706,
+ "learning_rate": 0.0006,
+ "loss": 3.8052706718444824,
+ "step": 1908
+ },
+ {
+ "epoch": 26.51725644386195,
+ "grad_norm": 0.21328197419643402,
+ "learning_rate": 0.0006,
+ "loss": 3.7858219146728516,
+ "step": 1909
+ },
+ {
+ "epoch": 26.53123634775011,
+ "grad_norm": 0.20843173563480377,
+ "learning_rate": 0.0006,
+ "loss": 3.8069310188293457,
+ "step": 1910
+ },
+ {
+ "epoch": 26.54521625163827,
+ "grad_norm": 0.2072986662387848,
+ "learning_rate": 0.0006,
+ "loss": 3.794975996017456,
+ "step": 1911
+ },
+ {
+ "epoch": 26.55919615552643,
+ "grad_norm": 0.2203216850757599,
+ "learning_rate": 0.0006,
+ "loss": 3.8070101737976074,
+ "step": 1912
+ },
+ {
+ "epoch": 26.573176059414592,
+ "grad_norm": 0.23449191451072693,
+ "learning_rate": 0.0006,
+ "loss": 3.828695774078369,
+ "step": 1913
+ },
+ {
+ "epoch": 26.587155963302752,
+ "grad_norm": 0.2222008854150772,
+ "learning_rate": 0.0006,
+ "loss": 3.781275749206543,
+ "step": 1914
+ },
+ {
+ "epoch": 26.601135867190912,
+ "grad_norm": 0.22328314185142517,
+ "learning_rate": 0.0006,
+ "loss": 3.7953736782073975,
+ "step": 1915
+ },
+ {
+ "epoch": 26.615115771079076,
+ "grad_norm": 0.2377961128950119,
+ "learning_rate": 0.0006,
+ "loss": 3.8428916931152344,
+ "step": 1916
+ },
+ {
+ "epoch": 26.629095674967235,
+ "grad_norm": 0.2546147108078003,
+ "learning_rate": 0.0006,
+ "loss": 3.7940590381622314,
+ "step": 1917
+ },
+ {
+ "epoch": 26.643075578855395,
+ "grad_norm": 0.24234509468078613,
+ "learning_rate": 0.0006,
+ "loss": 3.802234172821045,
+ "step": 1918
+ },
+ {
+ "epoch": 26.657055482743555,
+ "grad_norm": 0.21294651925563812,
+ "learning_rate": 0.0006,
+ "loss": 3.8159232139587402,
+ "step": 1919
+ },
+ {
+ "epoch": 26.67103538663172,
+ "grad_norm": 0.20008964836597443,
+ "learning_rate": 0.0006,
+ "loss": 3.796949863433838,
+ "step": 1920
+ },
+ {
+ "epoch": 26.68501529051988,
+ "grad_norm": 0.21031023561954498,
+ "learning_rate": 0.0006,
+ "loss": 3.8015570640563965,
+ "step": 1921
+ },
+ {
+ "epoch": 26.698995194408038,
+ "grad_norm": 0.2185603827238083,
+ "learning_rate": 0.0006,
+ "loss": 3.8022537231445312,
+ "step": 1922
+ },
+ {
+ "epoch": 26.712975098296198,
+ "grad_norm": 0.22957198321819305,
+ "learning_rate": 0.0006,
+ "loss": 3.7859907150268555,
+ "step": 1923
+ },
+ {
+ "epoch": 26.72695500218436,
+ "grad_norm": 0.23779156804084778,
+ "learning_rate": 0.0006,
+ "loss": 3.830345630645752,
+ "step": 1924
+ },
+ {
+ "epoch": 26.74093490607252,
+ "grad_norm": 0.23577193915843964,
+ "learning_rate": 0.0006,
+ "loss": 3.777338981628418,
+ "step": 1925
+ },
+ {
+ "epoch": 26.75491480996068,
+ "grad_norm": 0.2521933913230896,
+ "learning_rate": 0.0006,
+ "loss": 3.8215396404266357,
+ "step": 1926
+ },
+ {
+ "epoch": 26.76889471384884,
+ "grad_norm": 0.25050726532936096,
+ "learning_rate": 0.0006,
+ "loss": 3.817509651184082,
+ "step": 1927
+ },
+ {
+ "epoch": 26.782874617737004,
+ "grad_norm": 0.24442453682422638,
+ "learning_rate": 0.0006,
+ "loss": 3.8033013343811035,
+ "step": 1928
+ },
+ {
+ "epoch": 26.796854521625164,
+ "grad_norm": 0.2280828058719635,
+ "learning_rate": 0.0006,
+ "loss": 3.798625946044922,
+ "step": 1929
+ },
+ {
+ "epoch": 26.810834425513324,
+ "grad_norm": 0.23072117567062378,
+ "learning_rate": 0.0006,
+ "loss": 3.8109097480773926,
+ "step": 1930
+ },
+ {
+ "epoch": 26.824814329401484,
+ "grad_norm": 0.2690806984901428,
+ "learning_rate": 0.0006,
+ "loss": 3.7707223892211914,
+ "step": 1931
+ },
+ {
+ "epoch": 26.838794233289647,
+ "grad_norm": 0.24973517656326294,
+ "learning_rate": 0.0006,
+ "loss": 3.7788357734680176,
+ "step": 1932
+ },
+ {
+ "epoch": 26.852774137177807,
+ "grad_norm": 0.24221451580524445,
+ "learning_rate": 0.0006,
+ "loss": 3.8083114624023438,
+ "step": 1933
+ },
+ {
+ "epoch": 26.866754041065967,
+ "grad_norm": 0.23499037325382233,
+ "learning_rate": 0.0006,
+ "loss": 3.845512866973877,
+ "step": 1934
+ },
+ {
+ "epoch": 26.88073394495413,
+ "grad_norm": 0.2172643095254898,
+ "learning_rate": 0.0006,
+ "loss": 3.8171584606170654,
+ "step": 1935
+ },
+ {
+ "epoch": 26.89471384884229,
+ "grad_norm": 0.19935013353824615,
+ "learning_rate": 0.0006,
+ "loss": 3.808596611022949,
+ "step": 1936
+ },
+ {
+ "epoch": 26.90869375273045,
+ "grad_norm": 0.2077745944261551,
+ "learning_rate": 0.0006,
+ "loss": 3.842836856842041,
+ "step": 1937
+ },
+ {
+ "epoch": 26.92267365661861,
+ "grad_norm": 0.20017282664775848,
+ "learning_rate": 0.0006,
+ "loss": 3.791734457015991,
+ "step": 1938
+ },
+ {
+ "epoch": 26.936653560506773,
+ "grad_norm": 0.2082037627696991,
+ "learning_rate": 0.0006,
+ "loss": 3.7987842559814453,
+ "step": 1939
+ },
+ {
+ "epoch": 26.950633464394933,
+ "grad_norm": 0.21100632846355438,
+ "learning_rate": 0.0006,
+ "loss": 3.8033156394958496,
+ "step": 1940
+ },
+ {
+ "epoch": 26.964613368283093,
+ "grad_norm": 0.2091331034898758,
+ "learning_rate": 0.0006,
+ "loss": 3.8250908851623535,
+ "step": 1941
+ },
+ {
+ "epoch": 26.978593272171253,
+ "grad_norm": 0.19728544354438782,
+ "learning_rate": 0.0006,
+ "loss": 3.7934365272521973,
+ "step": 1942
+ },
+ {
+ "epoch": 26.992573176059416,
+ "grad_norm": 0.19266465306282043,
+ "learning_rate": 0.0006,
+ "loss": 3.8095879554748535,
+ "step": 1943
+ },
+ {
+ "epoch": 27.0,
+ "grad_norm": 0.2264554500579834,
+ "learning_rate": 0.0006,
+ "loss": 3.840135335922241,
+ "step": 1944
+ },
+ {
+ "epoch": 27.0,
+ "eval_loss": 4.046233654022217,
+ "eval_runtime": 44.0648,
+ "eval_samples_per_second": 55.418,
+ "eval_steps_per_second": 3.472,
+ "step": 1944
+ },
+ {
+ "epoch": 27.01397990388816,
+ "grad_norm": 0.24101831018924713,
+ "learning_rate": 0.0006,
+ "loss": 3.7463197708129883,
+ "step": 1945
+ },
+ {
+ "epoch": 27.027959807776323,
+ "grad_norm": 0.2917300760746002,
+ "learning_rate": 0.0006,
+ "loss": 3.769083261489868,
+ "step": 1946
+ },
+ {
+ "epoch": 27.041939711664483,
+ "grad_norm": 0.30864080786705017,
+ "learning_rate": 0.0006,
+ "loss": 3.7774248123168945,
+ "step": 1947
+ },
+ {
+ "epoch": 27.055919615552643,
+ "grad_norm": 0.28574317693710327,
+ "learning_rate": 0.0006,
+ "loss": 3.759530544281006,
+ "step": 1948
+ },
+ {
+ "epoch": 27.069899519440803,
+ "grad_norm": 0.23381628096103668,
+ "learning_rate": 0.0006,
+ "loss": 3.764347791671753,
+ "step": 1949
+ },
+ {
+ "epoch": 27.083879423328966,
+ "grad_norm": 0.2717961072921753,
+ "learning_rate": 0.0006,
+ "loss": 3.785306692123413,
+ "step": 1950
+ },
+ {
+ "epoch": 27.097859327217126,
+ "grad_norm": 0.2753375470638275,
+ "learning_rate": 0.0006,
+ "loss": 3.7511696815490723,
+ "step": 1951
+ },
+ {
+ "epoch": 27.111839231105286,
+ "grad_norm": 0.260250061750412,
+ "learning_rate": 0.0006,
+ "loss": 3.7775721549987793,
+ "step": 1952
+ },
+ {
+ "epoch": 27.125819134993446,
+ "grad_norm": 0.2462741732597351,
+ "learning_rate": 0.0006,
+ "loss": 3.775203227996826,
+ "step": 1953
+ },
+ {
+ "epoch": 27.13979903888161,
+ "grad_norm": 0.23599569499492645,
+ "learning_rate": 0.0006,
+ "loss": 3.7580947875976562,
+ "step": 1954
+ },
+ {
+ "epoch": 27.15377894276977,
+ "grad_norm": 0.21749968826770782,
+ "learning_rate": 0.0006,
+ "loss": 3.778254985809326,
+ "step": 1955
+ },
+ {
+ "epoch": 27.16775884665793,
+ "grad_norm": 0.22210343182086945,
+ "learning_rate": 0.0006,
+ "loss": 3.734727144241333,
+ "step": 1956
+ },
+ {
+ "epoch": 27.18173875054609,
+ "grad_norm": 0.23376141488552094,
+ "learning_rate": 0.0006,
+ "loss": 3.7892181873321533,
+ "step": 1957
+ },
+ {
+ "epoch": 27.195718654434252,
+ "grad_norm": 0.21751847863197327,
+ "learning_rate": 0.0006,
+ "loss": 3.801621913909912,
+ "step": 1958
+ },
+ {
+ "epoch": 27.209698558322412,
+ "grad_norm": 0.22995133697986603,
+ "learning_rate": 0.0006,
+ "loss": 3.8031363487243652,
+ "step": 1959
+ },
+ {
+ "epoch": 27.22367846221057,
+ "grad_norm": 0.22716350853443146,
+ "learning_rate": 0.0006,
+ "loss": 3.7591521739959717,
+ "step": 1960
+ },
+ {
+ "epoch": 27.23765836609873,
+ "grad_norm": 0.20819596946239471,
+ "learning_rate": 0.0006,
+ "loss": 3.7988929748535156,
+ "step": 1961
+ },
+ {
+ "epoch": 27.251638269986895,
+ "grad_norm": 0.19861504435539246,
+ "learning_rate": 0.0006,
+ "loss": 3.7752838134765625,
+ "step": 1962
+ },
+ {
+ "epoch": 27.265618173875055,
+ "grad_norm": 0.1959371268749237,
+ "learning_rate": 0.0006,
+ "loss": 3.7707290649414062,
+ "step": 1963
+ },
+ {
+ "epoch": 27.279598077763215,
+ "grad_norm": 0.18772225081920624,
+ "learning_rate": 0.0006,
+ "loss": 3.7714555263519287,
+ "step": 1964
+ },
+ {
+ "epoch": 27.293577981651374,
+ "grad_norm": 0.20839282870292664,
+ "learning_rate": 0.0006,
+ "loss": 3.7857258319854736,
+ "step": 1965
+ },
+ {
+ "epoch": 27.307557885539538,
+ "grad_norm": 0.22521957755088806,
+ "learning_rate": 0.0006,
+ "loss": 3.776909351348877,
+ "step": 1966
+ },
+ {
+ "epoch": 27.321537789427698,
+ "grad_norm": 0.19533076882362366,
+ "learning_rate": 0.0006,
+ "loss": 3.8152523040771484,
+ "step": 1967
+ },
+ {
+ "epoch": 27.335517693315857,
+ "grad_norm": 0.18678881227970123,
+ "learning_rate": 0.0006,
+ "loss": 3.751555919647217,
+ "step": 1968
+ },
+ {
+ "epoch": 27.34949759720402,
+ "grad_norm": 0.18257129192352295,
+ "learning_rate": 0.0006,
+ "loss": 3.7701754570007324,
+ "step": 1969
+ },
+ {
+ "epoch": 27.36347750109218,
+ "grad_norm": 0.18191468715667725,
+ "learning_rate": 0.0006,
+ "loss": 3.817451238632202,
+ "step": 1970
+ },
+ {
+ "epoch": 27.37745740498034,
+ "grad_norm": 0.18665607273578644,
+ "learning_rate": 0.0006,
+ "loss": 3.78645658493042,
+ "step": 1971
+ },
+ {
+ "epoch": 27.3914373088685,
+ "grad_norm": 0.19604510068893433,
+ "learning_rate": 0.0006,
+ "loss": 3.7735626697540283,
+ "step": 1972
+ },
+ {
+ "epoch": 27.405417212756664,
+ "grad_norm": 0.20136640965938568,
+ "learning_rate": 0.0006,
+ "loss": 3.77310848236084,
+ "step": 1973
+ },
+ {
+ "epoch": 27.419397116644824,
+ "grad_norm": 0.19314947724342346,
+ "learning_rate": 0.0006,
+ "loss": 3.8084068298339844,
+ "step": 1974
+ },
+ {
+ "epoch": 27.433377020532983,
+ "grad_norm": 0.20761604607105255,
+ "learning_rate": 0.0006,
+ "loss": 3.80732798576355,
+ "step": 1975
+ },
+ {
+ "epoch": 27.447356924421143,
+ "grad_norm": 0.2239987850189209,
+ "learning_rate": 0.0006,
+ "loss": 3.7950329780578613,
+ "step": 1976
+ },
+ {
+ "epoch": 27.461336828309307,
+ "grad_norm": 0.22146444022655487,
+ "learning_rate": 0.0006,
+ "loss": 3.7957234382629395,
+ "step": 1977
+ },
+ {
+ "epoch": 27.475316732197467,
+ "grad_norm": 0.23218585550785065,
+ "learning_rate": 0.0006,
+ "loss": 3.806377410888672,
+ "step": 1978
+ },
+ {
+ "epoch": 27.489296636085626,
+ "grad_norm": 0.23549026250839233,
+ "learning_rate": 0.0006,
+ "loss": 3.7833383083343506,
+ "step": 1979
+ },
+ {
+ "epoch": 27.503276539973786,
+ "grad_norm": 0.24219457805156708,
+ "learning_rate": 0.0006,
+ "loss": 3.8154187202453613,
+ "step": 1980
+ },
+ {
+ "epoch": 27.51725644386195,
+ "grad_norm": 0.23703953623771667,
+ "learning_rate": 0.0006,
+ "loss": 3.7846405506134033,
+ "step": 1981
+ },
+ {
+ "epoch": 27.53123634775011,
+ "grad_norm": 0.23596109449863434,
+ "learning_rate": 0.0006,
+ "loss": 3.7698163986206055,
+ "step": 1982
+ },
+ {
+ "epoch": 27.54521625163827,
+ "grad_norm": 0.23073506355285645,
+ "learning_rate": 0.0006,
+ "loss": 3.8114185333251953,
+ "step": 1983
+ },
+ {
+ "epoch": 27.55919615552643,
+ "grad_norm": 0.24761143326759338,
+ "learning_rate": 0.0006,
+ "loss": 3.7548117637634277,
+ "step": 1984
+ },
+ {
+ "epoch": 27.573176059414592,
+ "grad_norm": 0.2834068238735199,
+ "learning_rate": 0.0006,
+ "loss": 3.7990212440490723,
+ "step": 1985
+ },
+ {
+ "epoch": 27.587155963302752,
+ "grad_norm": 0.29774922132492065,
+ "learning_rate": 0.0006,
+ "loss": 3.7845072746276855,
+ "step": 1986
+ },
+ {
+ "epoch": 27.601135867190912,
+ "grad_norm": 0.2732089161872864,
+ "learning_rate": 0.0006,
+ "loss": 3.8050694465637207,
+ "step": 1987
+ },
+ {
+ "epoch": 27.615115771079076,
+ "grad_norm": 0.24433180689811707,
+ "learning_rate": 0.0006,
+ "loss": 3.762704372406006,
+ "step": 1988
+ },
+ {
+ "epoch": 27.629095674967235,
+ "grad_norm": 0.21340419352054596,
+ "learning_rate": 0.0006,
+ "loss": 3.826023817062378,
+ "step": 1989
+ },
+ {
+ "epoch": 27.643075578855395,
+ "grad_norm": 0.22518761456012726,
+ "learning_rate": 0.0006,
+ "loss": 3.7823970317840576,
+ "step": 1990
+ },
+ {
+ "epoch": 27.657055482743555,
+ "grad_norm": 0.2196940928697586,
+ "learning_rate": 0.0006,
+ "loss": 3.787463426589966,
+ "step": 1991
+ },
+ {
+ "epoch": 27.67103538663172,
+ "grad_norm": 0.21906471252441406,
+ "learning_rate": 0.0006,
+ "loss": 3.7856104373931885,
+ "step": 1992
+ },
+ {
+ "epoch": 27.68501529051988,
+ "grad_norm": 0.2280956357717514,
+ "learning_rate": 0.0006,
+ "loss": 3.7829794883728027,
+ "step": 1993
+ },
+ {
+ "epoch": 27.698995194408038,
+ "grad_norm": 0.22567005455493927,
+ "learning_rate": 0.0006,
+ "loss": 3.762316942214966,
+ "step": 1994
+ },
+ {
+ "epoch": 27.712975098296198,
+ "grad_norm": 0.21703341603279114,
+ "learning_rate": 0.0006,
+ "loss": 3.772535800933838,
+ "step": 1995
+ },
+ {
+ "epoch": 27.72695500218436,
+ "grad_norm": 0.20586732029914856,
+ "learning_rate": 0.0006,
+ "loss": 3.775930881500244,
+ "step": 1996
+ },
+ {
+ "epoch": 27.74093490607252,
+ "grad_norm": 0.2126319408416748,
+ "learning_rate": 0.0006,
+ "loss": 3.793353796005249,
+ "step": 1997
+ },
+ {
+ "epoch": 27.75491480996068,
+ "grad_norm": 0.19664280116558075,
+ "learning_rate": 0.0006,
+ "loss": 3.7721195220947266,
+ "step": 1998
+ },
+ {
+ "epoch": 27.76889471384884,
+ "grad_norm": 0.17695854604244232,
+ "learning_rate": 0.0006,
+ "loss": 3.7931227684020996,
+ "step": 1999
+ },
+ {
+ "epoch": 27.782874617737004,
+ "grad_norm": 0.1899620145559311,
+ "learning_rate": 0.0006,
+ "loss": 3.798692226409912,
+ "step": 2000
+ },
+ {
+ "epoch": 27.796854521625164,
+ "grad_norm": 0.20334762334823608,
+ "learning_rate": 0.0006,
+ "loss": 3.774670124053955,
+ "step": 2001
+ },
+ {
+ "epoch": 27.810834425513324,
+ "grad_norm": 0.21150588989257812,
+ "learning_rate": 0.0006,
+ "loss": 3.803859233856201,
+ "step": 2002
+ },
+ {
+ "epoch": 27.824814329401484,
+ "grad_norm": 0.20425523817539215,
+ "learning_rate": 0.0006,
+ "loss": 3.810410976409912,
+ "step": 2003
+ },
+ {
+ "epoch": 27.838794233289647,
+ "grad_norm": 0.20468413829803467,
+ "learning_rate": 0.0006,
+ "loss": 3.800917625427246,
+ "step": 2004
+ },
+ {
+ "epoch": 27.852774137177807,
+ "grad_norm": 0.2113286256790161,
+ "learning_rate": 0.0006,
+ "loss": 3.7581989765167236,
+ "step": 2005
+ },
+ {
+ "epoch": 27.866754041065967,
+ "grad_norm": 0.2098054736852646,
+ "learning_rate": 0.0006,
+ "loss": 3.7921502590179443,
+ "step": 2006
+ },
+ {
+ "epoch": 27.88073394495413,
+ "grad_norm": 0.21701586246490479,
+ "learning_rate": 0.0006,
+ "loss": 3.8166770935058594,
+ "step": 2007
+ },
+ {
+ "epoch": 27.89471384884229,
+ "grad_norm": 0.2086625099182129,
+ "learning_rate": 0.0006,
+ "loss": 3.7732229232788086,
+ "step": 2008
+ },
+ {
+ "epoch": 27.90869375273045,
+ "grad_norm": 0.2186812162399292,
+ "learning_rate": 0.0006,
+ "loss": 3.8067402839660645,
+ "step": 2009
+ },
+ {
+ "epoch": 27.92267365661861,
+ "grad_norm": 0.2168985903263092,
+ "learning_rate": 0.0006,
+ "loss": 3.798159122467041,
+ "step": 2010
+ },
+ {
+ "epoch": 27.936653560506773,
+ "grad_norm": 0.23713620007038116,
+ "learning_rate": 0.0006,
+ "loss": 3.7958693504333496,
+ "step": 2011
+ },
+ {
+ "epoch": 27.950633464394933,
+ "grad_norm": 0.23592841625213623,
+ "learning_rate": 0.0006,
+ "loss": 3.795126438140869,
+ "step": 2012
+ },
+ {
+ "epoch": 27.964613368283093,
+ "grad_norm": 0.22210197150707245,
+ "learning_rate": 0.0006,
+ "loss": 3.791013240814209,
+ "step": 2013
+ },
+ {
+ "epoch": 27.978593272171253,
+ "grad_norm": 0.23190008103847504,
+ "learning_rate": 0.0006,
+ "loss": 3.813408374786377,
+ "step": 2014
+ },
+ {
+ "epoch": 27.992573176059416,
+ "grad_norm": 0.22158131003379822,
+ "learning_rate": 0.0006,
+ "loss": 3.7975716590881348,
+ "step": 2015
+ },
+ {
+ "epoch": 28.0,
+ "grad_norm": 0.2300519198179245,
+ "learning_rate": 0.0006,
+ "loss": 3.776214838027954,
+ "step": 2016
+ },
+ {
+ "epoch": 28.0,
+ "eval_loss": 4.04406213760376,
+ "eval_runtime": 44.0285,
+ "eval_samples_per_second": 55.464,
+ "eval_steps_per_second": 3.475,
+ "step": 2016
+ },
+ {
+ "epoch": 28.01397990388816,
+ "grad_norm": 0.21007688343524933,
+ "learning_rate": 0.0006,
+ "loss": 3.7366907596588135,
+ "step": 2017
+ },
+ {
+ "epoch": 28.027959807776323,
+ "grad_norm": 0.1941644549369812,
+ "learning_rate": 0.0006,
+ "loss": 3.744373321533203,
+ "step": 2018
+ },
+ {
+ "epoch": 28.041939711664483,
+ "grad_norm": 0.21308493614196777,
+ "learning_rate": 0.0006,
+ "loss": 3.7650012969970703,
+ "step": 2019
+ },
+ {
+ "epoch": 28.055919615552643,
+ "grad_norm": 0.20114868879318237,
+ "learning_rate": 0.0006,
+ "loss": 3.7652382850646973,
+ "step": 2020
+ },
+ {
+ "epoch": 28.069899519440803,
+ "grad_norm": 0.20266319811344147,
+ "learning_rate": 0.0006,
+ "loss": 3.7710442543029785,
+ "step": 2021
+ },
+ {
+ "epoch": 28.083879423328966,
+ "grad_norm": 0.205102801322937,
+ "learning_rate": 0.0006,
+ "loss": 3.7515463829040527,
+ "step": 2022
+ },
+ {
+ "epoch": 28.097859327217126,
+ "grad_norm": 0.22002041339874268,
+ "learning_rate": 0.0006,
+ "loss": 3.762019157409668,
+ "step": 2023
+ },
+ {
+ "epoch": 28.111839231105286,
+ "grad_norm": 0.2063235342502594,
+ "learning_rate": 0.0006,
+ "loss": 3.765453338623047,
+ "step": 2024
+ },
+ {
+ "epoch": 28.125819134993446,
+ "grad_norm": 0.19145619869232178,
+ "learning_rate": 0.0006,
+ "loss": 3.769411325454712,
+ "step": 2025
+ },
+ {
+ "epoch": 28.13979903888161,
+ "grad_norm": 0.19308455288410187,
+ "learning_rate": 0.0006,
+ "loss": 3.8009989261627197,
+ "step": 2026
+ },
+ {
+ "epoch": 28.15377894276977,
+ "grad_norm": 0.220510333776474,
+ "learning_rate": 0.0006,
+ "loss": 3.7582602500915527,
+ "step": 2027
+ },
+ {
+ "epoch": 28.16775884665793,
+ "grad_norm": 0.22855883836746216,
+ "learning_rate": 0.0006,
+ "loss": 3.803917407989502,
+ "step": 2028
+ },
+ {
+ "epoch": 28.18173875054609,
+ "grad_norm": 0.24206340312957764,
+ "learning_rate": 0.0006,
+ "loss": 3.764101028442383,
+ "step": 2029
+ },
+ {
+ "epoch": 28.195718654434252,
+ "grad_norm": 0.23973612487316132,
+ "learning_rate": 0.0006,
+ "loss": 3.787308931350708,
+ "step": 2030
+ },
+ {
+ "epoch": 28.209698558322412,
+ "grad_norm": 0.21400697529315948,
+ "learning_rate": 0.0006,
+ "loss": 3.7706117630004883,
+ "step": 2031
+ },
+ {
+ "epoch": 28.22367846221057,
+ "grad_norm": 0.21983976662158966,
+ "learning_rate": 0.0006,
+ "loss": 3.772731304168701,
+ "step": 2032
+ },
+ {
+ "epoch": 28.23765836609873,
+ "grad_norm": 0.22427113354206085,
+ "learning_rate": 0.0006,
+ "loss": 3.7724413871765137,
+ "step": 2033
+ },
+ {
+ "epoch": 28.251638269986895,
+ "grad_norm": 0.23665079474449158,
+ "learning_rate": 0.0006,
+ "loss": 3.769845962524414,
+ "step": 2034
+ },
+ {
+ "epoch": 28.265618173875055,
+ "grad_norm": 0.22663180530071259,
+ "learning_rate": 0.0006,
+ "loss": 3.764380931854248,
+ "step": 2035
+ },
+ {
+ "epoch": 28.279598077763215,
+ "grad_norm": 0.21094927191734314,
+ "learning_rate": 0.0006,
+ "loss": 3.7598326206207275,
+ "step": 2036
+ },
+ {
+ "epoch": 28.293577981651374,
+ "grad_norm": 0.20419518649578094,
+ "learning_rate": 0.0006,
+ "loss": 3.7737207412719727,
+ "step": 2037
+ },
+ {
+ "epoch": 28.307557885539538,
+ "grad_norm": 0.2171909660100937,
+ "learning_rate": 0.0006,
+ "loss": 3.7499468326568604,
+ "step": 2038
+ },
+ {
+ "epoch": 28.321537789427698,
+ "grad_norm": 0.22749298810958862,
+ "learning_rate": 0.0006,
+ "loss": 3.767536163330078,
+ "step": 2039
+ },
+ {
+ "epoch": 28.335517693315857,
+ "grad_norm": 0.22821909189224243,
+ "learning_rate": 0.0006,
+ "loss": 3.744386672973633,
+ "step": 2040
+ },
+ {
+ "epoch": 28.34949759720402,
+ "grad_norm": 0.2227880209684372,
+ "learning_rate": 0.0006,
+ "loss": 3.72955322265625,
+ "step": 2041
+ },
+ {
+ "epoch": 28.36347750109218,
+ "grad_norm": 0.22204327583312988,
+ "learning_rate": 0.0006,
+ "loss": 3.793854236602783,
+ "step": 2042
+ },
+ {
+ "epoch": 28.37745740498034,
+ "grad_norm": 0.21621409058570862,
+ "learning_rate": 0.0006,
+ "loss": 3.775379180908203,
+ "step": 2043
+ },
+ {
+ "epoch": 28.3914373088685,
+ "grad_norm": 0.2439221441745758,
+ "learning_rate": 0.0006,
+ "loss": 3.727464199066162,
+ "step": 2044
+ },
+ {
+ "epoch": 28.405417212756664,
+ "grad_norm": 0.24408605694770813,
+ "learning_rate": 0.0006,
+ "loss": 3.761747360229492,
+ "step": 2045
+ },
+ {
+ "epoch": 28.419397116644824,
+ "grad_norm": 0.26118648052215576,
+ "learning_rate": 0.0006,
+ "loss": 3.7587313652038574,
+ "step": 2046
+ },
+ {
+ "epoch": 28.433377020532983,
+ "grad_norm": 0.25948166847229004,
+ "learning_rate": 0.0006,
+ "loss": 3.7698440551757812,
+ "step": 2047
+ },
+ {
+ "epoch": 28.447356924421143,
+ "grad_norm": 0.26413780450820923,
+ "learning_rate": 0.0006,
+ "loss": 3.799107551574707,
+ "step": 2048
+ },
+ {
+ "epoch": 28.461336828309307,
+ "grad_norm": 0.2687148153781891,
+ "learning_rate": 0.0006,
+ "loss": 3.7564382553100586,
+ "step": 2049
+ },
+ {
+ "epoch": 28.475316732197467,
+ "grad_norm": 0.2676694691181183,
+ "learning_rate": 0.0006,
+ "loss": 3.754267692565918,
+ "step": 2050
+ },
+ {
+ "epoch": 28.489296636085626,
+ "grad_norm": 0.27275168895721436,
+ "learning_rate": 0.0006,
+ "loss": 3.802988052368164,
+ "step": 2051
+ },
+ {
+ "epoch": 28.503276539973786,
+ "grad_norm": 0.28783538937568665,
+ "learning_rate": 0.0006,
+ "loss": 3.762540817260742,
+ "step": 2052
+ },
+ {
+ "epoch": 28.51725644386195,
+ "grad_norm": 0.2628997266292572,
+ "learning_rate": 0.0006,
+ "loss": 3.7933349609375,
+ "step": 2053
+ },
+ {
+ "epoch": 28.53123634775011,
+ "grad_norm": 0.2498515099287033,
+ "learning_rate": 0.0006,
+ "loss": 3.7773094177246094,
+ "step": 2054
+ },
+ {
+ "epoch": 28.54521625163827,
+ "grad_norm": 0.22625942528247833,
+ "learning_rate": 0.0006,
+ "loss": 3.803457021713257,
+ "step": 2055
+ },
+ {
+ "epoch": 28.55919615552643,
+ "grad_norm": 0.21488751471042633,
+ "learning_rate": 0.0006,
+ "loss": 3.78924560546875,
+ "step": 2056
+ },
+ {
+ "epoch": 28.573176059414592,
+ "grad_norm": 0.22041267156600952,
+ "learning_rate": 0.0006,
+ "loss": 3.79361629486084,
+ "step": 2057
+ },
+ {
+ "epoch": 28.587155963302752,
+ "grad_norm": 0.23164816200733185,
+ "learning_rate": 0.0006,
+ "loss": 3.735037326812744,
+ "step": 2058
+ },
+ {
+ "epoch": 28.601135867190912,
+ "grad_norm": 0.22371916472911835,
+ "learning_rate": 0.0006,
+ "loss": 3.731417179107666,
+ "step": 2059
+ },
+ {
+ "epoch": 28.615115771079076,
+ "grad_norm": 0.2280314862728119,
+ "learning_rate": 0.0006,
+ "loss": 3.796154499053955,
+ "step": 2060
+ },
+ {
+ "epoch": 28.629095674967235,
+ "grad_norm": 0.21386604011058807,
+ "learning_rate": 0.0006,
+ "loss": 3.778648614883423,
+ "step": 2061
+ },
+ {
+ "epoch": 28.643075578855395,
+ "grad_norm": 0.20433050394058228,
+ "learning_rate": 0.0006,
+ "loss": 3.772826910018921,
+ "step": 2062
+ },
+ {
+ "epoch": 28.657055482743555,
+ "grad_norm": 0.2049262523651123,
+ "learning_rate": 0.0006,
+ "loss": 3.7410364151000977,
+ "step": 2063
+ },
+ {
+ "epoch": 28.67103538663172,
+ "grad_norm": 0.22041259706020355,
+ "learning_rate": 0.0006,
+ "loss": 3.796724319458008,
+ "step": 2064
+ },
+ {
+ "epoch": 28.68501529051988,
+ "grad_norm": 0.2018800675868988,
+ "learning_rate": 0.0006,
+ "loss": 3.775252342224121,
+ "step": 2065
+ },
+ {
+ "epoch": 28.698995194408038,
+ "grad_norm": 0.2159280925989151,
+ "learning_rate": 0.0006,
+ "loss": 3.766021251678467,
+ "step": 2066
+ },
+ {
+ "epoch": 28.712975098296198,
+ "grad_norm": 0.2072775512933731,
+ "learning_rate": 0.0006,
+ "loss": 3.765397548675537,
+ "step": 2067
+ },
+ {
+ "epoch": 28.72695500218436,
+ "grad_norm": 0.19592848420143127,
+ "learning_rate": 0.0006,
+ "loss": 3.8151614665985107,
+ "step": 2068
+ },
+ {
+ "epoch": 28.74093490607252,
+ "grad_norm": 0.19266322255134583,
+ "learning_rate": 0.0006,
+ "loss": 3.774945020675659,
+ "step": 2069
+ },
+ {
+ "epoch": 28.75491480996068,
+ "grad_norm": 0.19442392885684967,
+ "learning_rate": 0.0006,
+ "loss": 3.816283702850342,
+ "step": 2070
+ },
+ {
+ "epoch": 28.76889471384884,
+ "grad_norm": 0.19080746173858643,
+ "learning_rate": 0.0006,
+ "loss": 3.7784247398376465,
+ "step": 2071
+ },
+ {
+ "epoch": 28.782874617737004,
+ "grad_norm": 0.20150451362133026,
+ "learning_rate": 0.0006,
+ "loss": 3.7710249423980713,
+ "step": 2072
+ },
+ {
+ "epoch": 28.796854521625164,
+ "grad_norm": 0.1835816204547882,
+ "learning_rate": 0.0006,
+ "loss": 3.750032901763916,
+ "step": 2073
+ },
+ {
+ "epoch": 28.810834425513324,
+ "grad_norm": 0.1855502873659134,
+ "learning_rate": 0.0006,
+ "loss": 3.7276318073272705,
+ "step": 2074
+ },
+ {
+ "epoch": 28.824814329401484,
+ "grad_norm": 0.18683169782161713,
+ "learning_rate": 0.0006,
+ "loss": 3.7516555786132812,
+ "step": 2075
+ },
+ {
+ "epoch": 28.838794233289647,
+ "grad_norm": 0.2034577578306198,
+ "learning_rate": 0.0006,
+ "loss": 3.749875068664551,
+ "step": 2076
+ },
+ {
+ "epoch": 28.852774137177807,
+ "grad_norm": 0.2234230488538742,
+ "learning_rate": 0.0006,
+ "loss": 3.791429042816162,
+ "step": 2077
+ },
+ {
+ "epoch": 28.866754041065967,
+ "grad_norm": 0.25600525736808777,
+ "learning_rate": 0.0006,
+ "loss": 3.7769298553466797,
+ "step": 2078
+ },
+ {
+ "epoch": 28.88073394495413,
+ "grad_norm": 0.2741529643535614,
+ "learning_rate": 0.0006,
+ "loss": 3.771848201751709,
+ "step": 2079
+ },
+ {
+ "epoch": 28.89471384884229,
+ "grad_norm": 0.2710304260253906,
+ "learning_rate": 0.0006,
+ "loss": 3.8235626220703125,
+ "step": 2080
+ },
+ {
+ "epoch": 28.90869375273045,
+ "grad_norm": 0.25497519969940186,
+ "learning_rate": 0.0006,
+ "loss": 3.811288595199585,
+ "step": 2081
+ },
+ {
+ "epoch": 28.92267365661861,
+ "grad_norm": 0.25689464807510376,
+ "learning_rate": 0.0006,
+ "loss": 3.7848939895629883,
+ "step": 2082
+ },
+ {
+ "epoch": 28.936653560506773,
+ "grad_norm": 0.2794921398162842,
+ "learning_rate": 0.0006,
+ "loss": 3.7836732864379883,
+ "step": 2083
+ },
+ {
+ "epoch": 28.950633464394933,
+ "grad_norm": 0.24730202555656433,
+ "learning_rate": 0.0006,
+ "loss": 3.7703347206115723,
+ "step": 2084
+ },
+ {
+ "epoch": 28.964613368283093,
+ "grad_norm": 0.21078833937644958,
+ "learning_rate": 0.0006,
+ "loss": 3.7521653175354004,
+ "step": 2085
+ },
+ {
+ "epoch": 28.978593272171253,
+ "grad_norm": 0.2188870757818222,
+ "learning_rate": 0.0006,
+ "loss": 3.769604206085205,
+ "step": 2086
+ },
+ {
+ "epoch": 28.992573176059416,
+ "grad_norm": 0.20447929203510284,
+ "learning_rate": 0.0006,
+ "loss": 3.7842764854431152,
+ "step": 2087
+ },
+ {
+ "epoch": 29.0,
+ "grad_norm": 0.21607689559459686,
+ "learning_rate": 0.0006,
+ "loss": 3.7428855895996094,
+ "step": 2088
+ },
+ {
+ "epoch": 29.0,
+ "eval_loss": 4.0355753898620605,
+ "eval_runtime": 44.1435,
+ "eval_samples_per_second": 55.32,
+ "eval_steps_per_second": 3.466,
+ "step": 2088
+ },
+ {
+ "epoch": 29.01397990388816,
+ "grad_norm": 0.21270133554935455,
+ "learning_rate": 0.0006,
+ "loss": 3.7548413276672363,
+ "step": 2089
+ },
+ {
+ "epoch": 29.027959807776323,
+ "grad_norm": 0.21576301753520966,
+ "learning_rate": 0.0006,
+ "loss": 3.754613161087036,
+ "step": 2090
+ },
+ {
+ "epoch": 29.041939711664483,
+ "grad_norm": 0.2162923663854599,
+ "learning_rate": 0.0006,
+ "loss": 3.755772590637207,
+ "step": 2091
+ },
+ {
+ "epoch": 29.055919615552643,
+ "grad_norm": 0.22236663103103638,
+ "learning_rate": 0.0006,
+ "loss": 3.743497848510742,
+ "step": 2092
+ },
+ {
+ "epoch": 29.069899519440803,
+ "grad_norm": 0.2391042858362198,
+ "learning_rate": 0.0006,
+ "loss": 3.749204158782959,
+ "step": 2093
+ },
+ {
+ "epoch": 29.083879423328966,
+ "grad_norm": 0.23387965559959412,
+ "learning_rate": 0.0006,
+ "loss": 3.7286791801452637,
+ "step": 2094
+ },
+ {
+ "epoch": 29.097859327217126,
+ "grad_norm": 0.23677746951580048,
+ "learning_rate": 0.0006,
+ "loss": 3.755279541015625,
+ "step": 2095
+ },
+ {
+ "epoch": 29.111839231105286,
+ "grad_norm": 0.22771087288856506,
+ "learning_rate": 0.0006,
+ "loss": 3.722566604614258,
+ "step": 2096
+ },
+ {
+ "epoch": 29.125819134993446,
+ "grad_norm": 0.2132875621318817,
+ "learning_rate": 0.0006,
+ "loss": 3.748939037322998,
+ "step": 2097
+ },
+ {
+ "epoch": 29.13979903888161,
+ "grad_norm": 0.2033746838569641,
+ "learning_rate": 0.0006,
+ "loss": 3.7393670082092285,
+ "step": 2098
+ },
+ {
+ "epoch": 29.15377894276977,
+ "grad_norm": 0.1997237652540207,
+ "learning_rate": 0.0006,
+ "loss": 3.718498945236206,
+ "step": 2099
+ },
+ {
+ "epoch": 29.16775884665793,
+ "grad_norm": 0.19102543592453003,
+ "learning_rate": 0.0006,
+ "loss": 3.748950719833374,
+ "step": 2100
+ },
+ {
+ "epoch": 29.18173875054609,
+ "grad_norm": 0.19801580905914307,
+ "learning_rate": 0.0006,
+ "loss": 3.7123501300811768,
+ "step": 2101
+ },
+ {
+ "epoch": 29.195718654434252,
+ "grad_norm": 0.20186249911785126,
+ "learning_rate": 0.0006,
+ "loss": 3.7632713317871094,
+ "step": 2102
+ },
+ {
+ "epoch": 29.209698558322412,
+ "grad_norm": 0.22725415229797363,
+ "learning_rate": 0.0006,
+ "loss": 3.753506660461426,
+ "step": 2103
+ },
+ {
+ "epoch": 29.22367846221057,
+ "grad_norm": 0.23138119280338287,
+ "learning_rate": 0.0006,
+ "loss": 3.753282070159912,
+ "step": 2104
+ },
+ {
+ "epoch": 29.23765836609873,
+ "grad_norm": 0.23171944916248322,
+ "learning_rate": 0.0006,
+ "loss": 3.73783540725708,
+ "step": 2105
+ },
+ {
+ "epoch": 29.251638269986895,
+ "grad_norm": 0.2166522741317749,
+ "learning_rate": 0.0006,
+ "loss": 3.778803825378418,
+ "step": 2106
+ },
+ {
+ "epoch": 29.265618173875055,
+ "grad_norm": 0.2009056806564331,
+ "learning_rate": 0.0006,
+ "loss": 3.738290786743164,
+ "step": 2107
+ },
+ {
+ "epoch": 29.279598077763215,
+ "grad_norm": 0.19451597332954407,
+ "learning_rate": 0.0006,
+ "loss": 3.7553348541259766,
+ "step": 2108
+ },
+ {
+ "epoch": 29.293577981651374,
+ "grad_norm": 0.19246742129325867,
+ "learning_rate": 0.0006,
+ "loss": 3.7321622371673584,
+ "step": 2109
+ },
+ {
+ "epoch": 29.307557885539538,
+ "grad_norm": 0.18917441368103027,
+ "learning_rate": 0.0006,
+ "loss": 3.7408928871154785,
+ "step": 2110
+ },
+ {
+ "epoch": 29.321537789427698,
+ "grad_norm": 0.19067776203155518,
+ "learning_rate": 0.0006,
+ "loss": 3.780052900314331,
+ "step": 2111
+ },
+ {
+ "epoch": 29.335517693315857,
+ "grad_norm": 0.18849676847457886,
+ "learning_rate": 0.0006,
+ "loss": 3.749375820159912,
+ "step": 2112
+ },
+ {
+ "epoch": 29.34949759720402,
+ "grad_norm": 0.19713285565376282,
+ "learning_rate": 0.0006,
+ "loss": 3.7128982543945312,
+ "step": 2113
+ },
+ {
+ "epoch": 29.36347750109218,
+ "grad_norm": 0.196336030960083,
+ "learning_rate": 0.0006,
+ "loss": 3.7528390884399414,
+ "step": 2114
+ },
+ {
+ "epoch": 29.37745740498034,
+ "grad_norm": 0.19574350118637085,
+ "learning_rate": 0.0006,
+ "loss": 3.7105777263641357,
+ "step": 2115
+ },
+ {
+ "epoch": 29.3914373088685,
+ "grad_norm": 0.20396539568901062,
+ "learning_rate": 0.0006,
+ "loss": 3.782249927520752,
+ "step": 2116
+ },
+ {
+ "epoch": 29.405417212756664,
+ "grad_norm": 0.24702422320842743,
+ "learning_rate": 0.0006,
+ "loss": 3.7685647010803223,
+ "step": 2117
+ },
+ {
+ "epoch": 29.419397116644824,
+ "grad_norm": 0.2729755640029907,
+ "learning_rate": 0.0006,
+ "loss": 3.7731213569641113,
+ "step": 2118
+ },
+ {
+ "epoch": 29.433377020532983,
+ "grad_norm": 0.29240545630455017,
+ "learning_rate": 0.0006,
+ "loss": 3.770162343978882,
+ "step": 2119
+ },
+ {
+ "epoch": 29.447356924421143,
+ "grad_norm": 0.2469114065170288,
+ "learning_rate": 0.0006,
+ "loss": 3.764681339263916,
+ "step": 2120
+ },
+ {
+ "epoch": 29.461336828309307,
+ "grad_norm": 0.19837401807308197,
+ "learning_rate": 0.0006,
+ "loss": 3.7600088119506836,
+ "step": 2121
+ },
+ {
+ "epoch": 29.475316732197467,
+ "grad_norm": 0.21266621351242065,
+ "learning_rate": 0.0006,
+ "loss": 3.769454002380371,
+ "step": 2122
+ },
+ {
+ "epoch": 29.489296636085626,
+ "grad_norm": 0.25908344984054565,
+ "learning_rate": 0.0006,
+ "loss": 3.7230491638183594,
+ "step": 2123
+ },
+ {
+ "epoch": 29.503276539973786,
+ "grad_norm": 0.2914169728755951,
+ "learning_rate": 0.0006,
+ "loss": 3.767849922180176,
+ "step": 2124
+ },
+ {
+ "epoch": 29.51725644386195,
+ "grad_norm": 0.2796176075935364,
+ "learning_rate": 0.0006,
+ "loss": 3.741734266281128,
+ "step": 2125
+ },
+ {
+ "epoch": 29.53123634775011,
+ "grad_norm": 0.276309996843338,
+ "learning_rate": 0.0006,
+ "loss": 3.8001914024353027,
+ "step": 2126
+ },
+ {
+ "epoch": 29.54521625163827,
+ "grad_norm": 0.26512834429740906,
+ "learning_rate": 0.0006,
+ "loss": 3.7741384506225586,
+ "step": 2127
+ },
+ {
+ "epoch": 29.55919615552643,
+ "grad_norm": 0.26514101028442383,
+ "learning_rate": 0.0006,
+ "loss": 3.7466959953308105,
+ "step": 2128
+ },
+ {
+ "epoch": 29.573176059414592,
+ "grad_norm": 0.24121330678462982,
+ "learning_rate": 0.0006,
+ "loss": 3.759542465209961,
+ "step": 2129
+ },
+ {
+ "epoch": 29.587155963302752,
+ "grad_norm": 0.2264087200164795,
+ "learning_rate": 0.0006,
+ "loss": 3.791344165802002,
+ "step": 2130
+ },
+ {
+ "epoch": 29.601135867190912,
+ "grad_norm": 0.21915403008460999,
+ "learning_rate": 0.0006,
+ "loss": 3.7540485858917236,
+ "step": 2131
+ },
+ {
+ "epoch": 29.615115771079076,
+ "grad_norm": 0.20453961193561554,
+ "learning_rate": 0.0006,
+ "loss": 3.765617609024048,
+ "step": 2132
+ },
+ {
+ "epoch": 29.629095674967235,
+ "grad_norm": 0.2194051444530487,
+ "learning_rate": 0.0006,
+ "loss": 3.7664294242858887,
+ "step": 2133
+ },
+ {
+ "epoch": 29.643075578855395,
+ "grad_norm": 0.21926000714302063,
+ "learning_rate": 0.0006,
+ "loss": 3.7551684379577637,
+ "step": 2134
+ },
+ {
+ "epoch": 29.657055482743555,
+ "grad_norm": 0.20835602283477783,
+ "learning_rate": 0.0006,
+ "loss": 3.7654306888580322,
+ "step": 2135
+ },
+ {
+ "epoch": 29.67103538663172,
+ "grad_norm": 0.23094356060028076,
+ "learning_rate": 0.0006,
+ "loss": 3.7847180366516113,
+ "step": 2136
+ },
+ {
+ "epoch": 29.68501529051988,
+ "grad_norm": 0.23871271312236786,
+ "learning_rate": 0.0006,
+ "loss": 3.789036273956299,
+ "step": 2137
+ },
+ {
+ "epoch": 29.698995194408038,
+ "grad_norm": 0.22263272106647491,
+ "learning_rate": 0.0006,
+ "loss": 3.7677512168884277,
+ "step": 2138
+ },
+ {
+ "epoch": 29.712975098296198,
+ "grad_norm": 0.2293892651796341,
+ "learning_rate": 0.0006,
+ "loss": 3.777097225189209,
+ "step": 2139
+ },
+ {
+ "epoch": 29.72695500218436,
+ "grad_norm": 0.21068568527698517,
+ "learning_rate": 0.0006,
+ "loss": 3.785336494445801,
+ "step": 2140
+ },
+ {
+ "epoch": 29.74093490607252,
+ "grad_norm": 0.19600282609462738,
+ "learning_rate": 0.0006,
+ "loss": 3.7363505363464355,
+ "step": 2141
+ },
+ {
+ "epoch": 29.75491480996068,
+ "grad_norm": 0.20053936541080475,
+ "learning_rate": 0.0006,
+ "loss": 3.753859043121338,
+ "step": 2142
+ },
+ {
+ "epoch": 29.76889471384884,
+ "grad_norm": 0.22790539264678955,
+ "learning_rate": 0.0006,
+ "loss": 3.749492645263672,
+ "step": 2143
+ },
+ {
+ "epoch": 29.782874617737004,
+ "grad_norm": 0.26042407751083374,
+ "learning_rate": 0.0006,
+ "loss": 3.7905430793762207,
+ "step": 2144
+ },
+ {
+ "epoch": 29.796854521625164,
+ "grad_norm": 0.2753683626651764,
+ "learning_rate": 0.0006,
+ "loss": 3.756442070007324,
+ "step": 2145
+ },
+ {
+ "epoch": 29.810834425513324,
+ "grad_norm": 0.2795007526874542,
+ "learning_rate": 0.0006,
+ "loss": 3.7691903114318848,
+ "step": 2146
+ },
+ {
+ "epoch": 29.824814329401484,
+ "grad_norm": 0.2461438924074173,
+ "learning_rate": 0.0006,
+ "loss": 3.7573065757751465,
+ "step": 2147
+ },
+ {
+ "epoch": 29.838794233289647,
+ "grad_norm": 0.21051941812038422,
+ "learning_rate": 0.0006,
+ "loss": 3.7540078163146973,
+ "step": 2148
+ },
+ {
+ "epoch": 29.852774137177807,
+ "grad_norm": 0.197485089302063,
+ "learning_rate": 0.0006,
+ "loss": 3.734403133392334,
+ "step": 2149
+ },
+ {
+ "epoch": 29.866754041065967,
+ "grad_norm": 0.203064426779747,
+ "learning_rate": 0.0006,
+ "loss": 3.7888364791870117,
+ "step": 2150
+ },
+ {
+ "epoch": 29.88073394495413,
+ "grad_norm": 0.2000301480293274,
+ "learning_rate": 0.0006,
+ "loss": 3.7444958686828613,
+ "step": 2151
+ },
+ {
+ "epoch": 29.89471384884229,
+ "grad_norm": 0.20492053031921387,
+ "learning_rate": 0.0006,
+ "loss": 3.7878224849700928,
+ "step": 2152
+ },
+ {
+ "epoch": 29.90869375273045,
+ "grad_norm": 0.22565388679504395,
+ "learning_rate": 0.0006,
+ "loss": 3.7539188861846924,
+ "step": 2153
+ },
+ {
+ "epoch": 29.92267365661861,
+ "grad_norm": 0.20258226990699768,
+ "learning_rate": 0.0006,
+ "loss": 3.7491893768310547,
+ "step": 2154
+ },
+ {
+ "epoch": 29.936653560506773,
+ "grad_norm": 0.20028717815876007,
+ "learning_rate": 0.0006,
+ "loss": 3.7497997283935547,
+ "step": 2155
+ },
+ {
+ "epoch": 29.950633464394933,
+ "grad_norm": 0.2246360331773758,
+ "learning_rate": 0.0006,
+ "loss": 3.773930788040161,
+ "step": 2156
+ },
+ {
+ "epoch": 29.964613368283093,
+ "grad_norm": 0.22432482242584229,
+ "learning_rate": 0.0006,
+ "loss": 3.7926344871520996,
+ "step": 2157
+ },
+ {
+ "epoch": 29.978593272171253,
+ "grad_norm": 0.2165718674659729,
+ "learning_rate": 0.0006,
+ "loss": 3.7436647415161133,
+ "step": 2158
+ },
+ {
+ "epoch": 29.992573176059416,
+ "grad_norm": 0.20629167556762695,
+ "learning_rate": 0.0006,
+ "loss": 3.7619552612304688,
+ "step": 2159
+ },
+ {
+ "epoch": 30.0,
+ "grad_norm": 0.24264708161354065,
+ "learning_rate": 0.0006,
+ "loss": 3.772679328918457,
+ "step": 2160
+ },
+ {
+ "epoch": 30.0,
+ "eval_loss": 4.024484634399414,
+ "eval_runtime": 44.3611,
+ "eval_samples_per_second": 55.048,
+ "eval_steps_per_second": 3.449,
+ "step": 2160
+ },
+ {
+ "epoch": 30.01397990388816,
+ "grad_norm": 0.2373432070016861,
+ "learning_rate": 0.0006,
+ "loss": 3.7423200607299805,
+ "step": 2161
+ },
+ {
+ "epoch": 30.027959807776323,
+ "grad_norm": 0.26835134625434875,
+ "learning_rate": 0.0006,
+ "loss": 3.7215471267700195,
+ "step": 2162
+ },
+ {
+ "epoch": 30.041939711664483,
+ "grad_norm": 0.2743220329284668,
+ "learning_rate": 0.0006,
+ "loss": 3.7190256118774414,
+ "step": 2163
+ },
+ {
+ "epoch": 30.055919615552643,
+ "grad_norm": 0.2292490005493164,
+ "learning_rate": 0.0006,
+ "loss": 3.731855869293213,
+ "step": 2164
+ },
+ {
+ "epoch": 30.069899519440803,
+ "grad_norm": 0.22704607248306274,
+ "learning_rate": 0.0006,
+ "loss": 3.7649693489074707,
+ "step": 2165
+ },
+ {
+ "epoch": 30.083879423328966,
+ "grad_norm": 0.23255930840969086,
+ "learning_rate": 0.0006,
+ "loss": 3.7547781467437744,
+ "step": 2166
+ },
+ {
+ "epoch": 30.097859327217126,
+ "grad_norm": 0.2068684846162796,
+ "learning_rate": 0.0006,
+ "loss": 3.7343382835388184,
+ "step": 2167
+ },
+ {
+ "epoch": 30.111839231105286,
+ "grad_norm": 0.22523464262485504,
+ "learning_rate": 0.0006,
+ "loss": 3.7304530143737793,
+ "step": 2168
+ },
+ {
+ "epoch": 30.125819134993446,
+ "grad_norm": 0.24650199711322784,
+ "learning_rate": 0.0006,
+ "loss": 3.7414379119873047,
+ "step": 2169
+ },
+ {
+ "epoch": 30.13979903888161,
+ "grad_norm": 0.2392522394657135,
+ "learning_rate": 0.0006,
+ "loss": 3.754481792449951,
+ "step": 2170
+ },
+ {
+ "epoch": 30.15377894276977,
+ "grad_norm": 0.21174749732017517,
+ "learning_rate": 0.0006,
+ "loss": 3.7249929904937744,
+ "step": 2171
+ },
+ {
+ "epoch": 30.16775884665793,
+ "grad_norm": 0.20847836136817932,
+ "learning_rate": 0.0006,
+ "loss": 3.7146458625793457,
+ "step": 2172
+ },
+ {
+ "epoch": 30.18173875054609,
+ "grad_norm": 0.22131472826004028,
+ "learning_rate": 0.0006,
+ "loss": 3.7569539546966553,
+ "step": 2173
+ },
+ {
+ "epoch": 30.195718654434252,
+ "grad_norm": 0.23528096079826355,
+ "learning_rate": 0.0006,
+ "loss": 3.743435859680176,
+ "step": 2174
+ },
+ {
+ "epoch": 30.209698558322412,
+ "grad_norm": 0.2382429540157318,
+ "learning_rate": 0.0006,
+ "loss": 3.745307445526123,
+ "step": 2175
+ },
+ {
+ "epoch": 30.22367846221057,
+ "grad_norm": 0.2477114498615265,
+ "learning_rate": 0.0006,
+ "loss": 3.742305278778076,
+ "step": 2176
+ },
+ {
+ "epoch": 30.23765836609873,
+ "grad_norm": 0.24507801234722137,
+ "learning_rate": 0.0006,
+ "loss": 3.733564853668213,
+ "step": 2177
+ },
+ {
+ "epoch": 30.251638269986895,
+ "grad_norm": 0.2266329675912857,
+ "learning_rate": 0.0006,
+ "loss": 3.747429370880127,
+ "step": 2178
+ },
+ {
+ "epoch": 30.265618173875055,
+ "grad_norm": 0.22146396338939667,
+ "learning_rate": 0.0006,
+ "loss": 3.738630533218384,
+ "step": 2179
+ },
+ {
+ "epoch": 30.279598077763215,
+ "grad_norm": 0.20202279090881348,
+ "learning_rate": 0.0006,
+ "loss": 3.74582839012146,
+ "step": 2180
+ },
+ {
+ "epoch": 30.293577981651374,
+ "grad_norm": 0.20591886341571808,
+ "learning_rate": 0.0006,
+ "loss": 3.792062997817993,
+ "step": 2181
+ },
+ {
+ "epoch": 30.307557885539538,
+ "grad_norm": 0.21744129061698914,
+ "learning_rate": 0.0006,
+ "loss": 3.7389049530029297,
+ "step": 2182
+ },
+ {
+ "epoch": 30.321537789427698,
+ "grad_norm": 0.22641272842884064,
+ "learning_rate": 0.0006,
+ "loss": 3.756775140762329,
+ "step": 2183
+ },
+ {
+ "epoch": 30.335517693315857,
+ "grad_norm": 0.22433501482009888,
+ "learning_rate": 0.0006,
+ "loss": 3.764744758605957,
+ "step": 2184
+ },
+ {
+ "epoch": 30.34949759720402,
+ "grad_norm": 0.20184539258480072,
+ "learning_rate": 0.0006,
+ "loss": 3.747469902038574,
+ "step": 2185
+ },
+ {
+ "epoch": 30.36347750109218,
+ "grad_norm": 0.20864923298358917,
+ "learning_rate": 0.0006,
+ "loss": 3.7472925186157227,
+ "step": 2186
+ },
+ {
+ "epoch": 30.37745740498034,
+ "grad_norm": 0.22537396848201752,
+ "learning_rate": 0.0006,
+ "loss": 3.7194581031799316,
+ "step": 2187
+ },
+ {
+ "epoch": 30.3914373088685,
+ "grad_norm": 0.23159919679164886,
+ "learning_rate": 0.0006,
+ "loss": 3.7124292850494385,
+ "step": 2188
+ },
+ {
+ "epoch": 30.405417212756664,
+ "grad_norm": 0.24334494769573212,
+ "learning_rate": 0.0006,
+ "loss": 3.7769203186035156,
+ "step": 2189
+ },
+ {
+ "epoch": 30.419397116644824,
+ "grad_norm": 0.3031228482723236,
+ "learning_rate": 0.0006,
+ "loss": 3.762169361114502,
+ "step": 2190
+ },
+ {
+ "epoch": 30.433377020532983,
+ "grad_norm": 0.29114583134651184,
+ "learning_rate": 0.0006,
+ "loss": 3.76554799079895,
+ "step": 2191
+ },
+ {
+ "epoch": 30.447356924421143,
+ "grad_norm": 0.26824963092803955,
+ "learning_rate": 0.0006,
+ "loss": 3.732962131500244,
+ "step": 2192
+ },
+ {
+ "epoch": 30.461336828309307,
+ "grad_norm": 0.3026561141014099,
+ "learning_rate": 0.0006,
+ "loss": 3.7567975521087646,
+ "step": 2193
+ },
+ {
+ "epoch": 30.475316732197467,
+ "grad_norm": 0.27224525809288025,
+ "learning_rate": 0.0006,
+ "loss": 3.7856051921844482,
+ "step": 2194
+ },
+ {
+ "epoch": 30.489296636085626,
+ "grad_norm": 0.24295508861541748,
+ "learning_rate": 0.0006,
+ "loss": 3.7514901161193848,
+ "step": 2195
+ },
+ {
+ "epoch": 30.503276539973786,
+ "grad_norm": 0.24435290694236755,
+ "learning_rate": 0.0006,
+ "loss": 3.715973138809204,
+ "step": 2196
+ },
+ {
+ "epoch": 30.51725644386195,
+ "grad_norm": 0.2298959195613861,
+ "learning_rate": 0.0006,
+ "loss": 3.7960405349731445,
+ "step": 2197
+ },
+ {
+ "epoch": 30.53123634775011,
+ "grad_norm": 0.20313066244125366,
+ "learning_rate": 0.0006,
+ "loss": 3.7377915382385254,
+ "step": 2198
+ },
+ {
+ "epoch": 30.54521625163827,
+ "grad_norm": 0.2018895149230957,
+ "learning_rate": 0.0006,
+ "loss": 3.6980559825897217,
+ "step": 2199
+ },
+ {
+ "epoch": 30.55919615552643,
+ "grad_norm": 0.20048382878303528,
+ "learning_rate": 0.0006,
+ "loss": 3.7474141120910645,
+ "step": 2200
+ },
+ {
+ "epoch": 30.573176059414592,
+ "grad_norm": 0.19821316003799438,
+ "learning_rate": 0.0006,
+ "loss": 3.7668564319610596,
+ "step": 2201
+ },
+ {
+ "epoch": 30.587155963302752,
+ "grad_norm": 0.21467992663383484,
+ "learning_rate": 0.0006,
+ "loss": 3.7636144161224365,
+ "step": 2202
+ },
+ {
+ "epoch": 30.601135867190912,
+ "grad_norm": 0.20192000269889832,
+ "learning_rate": 0.0006,
+ "loss": 3.745736837387085,
+ "step": 2203
+ },
+ {
+ "epoch": 30.615115771079076,
+ "grad_norm": 0.2078823447227478,
+ "learning_rate": 0.0006,
+ "loss": 3.726665496826172,
+ "step": 2204
+ },
+ {
+ "epoch": 30.629095674967235,
+ "grad_norm": 0.22535845637321472,
+ "learning_rate": 0.0006,
+ "loss": 3.745058059692383,
+ "step": 2205
+ },
+ {
+ "epoch": 30.643075578855395,
+ "grad_norm": 0.22277814149856567,
+ "learning_rate": 0.0006,
+ "loss": 3.7488319873809814,
+ "step": 2206
+ },
+ {
+ "epoch": 30.657055482743555,
+ "grad_norm": 0.20940838754177094,
+ "learning_rate": 0.0006,
+ "loss": 3.7395732402801514,
+ "step": 2207
+ },
+ {
+ "epoch": 30.67103538663172,
+ "grad_norm": 0.21384629607200623,
+ "learning_rate": 0.0006,
+ "loss": 3.7275657653808594,
+ "step": 2208
+ },
+ {
+ "epoch": 30.68501529051988,
+ "grad_norm": 0.18796643614768982,
+ "learning_rate": 0.0006,
+ "loss": 3.743420124053955,
+ "step": 2209
+ },
+ {
+ "epoch": 30.698995194408038,
+ "grad_norm": 0.213258296251297,
+ "learning_rate": 0.0006,
+ "loss": 3.7227492332458496,
+ "step": 2210
+ },
+ {
+ "epoch": 30.712975098296198,
+ "grad_norm": 0.22714753448963165,
+ "learning_rate": 0.0006,
+ "loss": 3.7301113605499268,
+ "step": 2211
+ },
+ {
+ "epoch": 30.72695500218436,
+ "grad_norm": 0.21657656133174896,
+ "learning_rate": 0.0006,
+ "loss": 3.7336206436157227,
+ "step": 2212
+ },
+ {
+ "epoch": 30.74093490607252,
+ "grad_norm": 0.19550828635692596,
+ "learning_rate": 0.0006,
+ "loss": 3.7367351055145264,
+ "step": 2213
+ },
+ {
+ "epoch": 30.75491480996068,
+ "grad_norm": 0.17011769115924835,
+ "learning_rate": 0.0006,
+ "loss": 3.7401928901672363,
+ "step": 2214
+ },
+ {
+ "epoch": 30.76889471384884,
+ "grad_norm": 0.19110196828842163,
+ "learning_rate": 0.0006,
+ "loss": 3.7496562004089355,
+ "step": 2215
+ },
+ {
+ "epoch": 30.782874617737004,
+ "grad_norm": 0.20054543018341064,
+ "learning_rate": 0.0006,
+ "loss": 3.7532992362976074,
+ "step": 2216
+ },
+ {
+ "epoch": 30.796854521625164,
+ "grad_norm": 0.20667670667171478,
+ "learning_rate": 0.0006,
+ "loss": 3.746974468231201,
+ "step": 2217
+ },
+ {
+ "epoch": 30.810834425513324,
+ "grad_norm": 0.19850662350654602,
+ "learning_rate": 0.0006,
+ "loss": 3.7566256523132324,
+ "step": 2218
+ },
+ {
+ "epoch": 30.824814329401484,
+ "grad_norm": 0.19666457176208496,
+ "learning_rate": 0.0006,
+ "loss": 3.7356925010681152,
+ "step": 2219
+ },
+ {
+ "epoch": 30.838794233289647,
+ "grad_norm": 0.20022115111351013,
+ "learning_rate": 0.0006,
+ "loss": 3.768794536590576,
+ "step": 2220
+ },
+ {
+ "epoch": 30.852774137177807,
+ "grad_norm": 0.225278839468956,
+ "learning_rate": 0.0006,
+ "loss": 3.730262279510498,
+ "step": 2221
+ },
+ {
+ "epoch": 30.866754041065967,
+ "grad_norm": 0.2155608832836151,
+ "learning_rate": 0.0006,
+ "loss": 3.758157968521118,
+ "step": 2222
+ },
+ {
+ "epoch": 30.88073394495413,
+ "grad_norm": 0.20914921164512634,
+ "learning_rate": 0.0006,
+ "loss": 3.7290844917297363,
+ "step": 2223
+ },
+ {
+ "epoch": 30.89471384884229,
+ "grad_norm": 0.21579554677009583,
+ "learning_rate": 0.0006,
+ "loss": 3.7666125297546387,
+ "step": 2224
+ },
+ {
+ "epoch": 30.90869375273045,
+ "grad_norm": 0.22606384754180908,
+ "learning_rate": 0.0006,
+ "loss": 3.7396788597106934,
+ "step": 2225
+ },
+ {
+ "epoch": 30.92267365661861,
+ "grad_norm": 0.22218658030033112,
+ "learning_rate": 0.0006,
+ "loss": 3.7363057136535645,
+ "step": 2226
+ },
+ {
+ "epoch": 30.936653560506773,
+ "grad_norm": 0.2107125222682953,
+ "learning_rate": 0.0006,
+ "loss": 3.7402844429016113,
+ "step": 2227
+ },
+ {
+ "epoch": 30.950633464394933,
+ "grad_norm": 0.2143280804157257,
+ "learning_rate": 0.0006,
+ "loss": 3.7715706825256348,
+ "step": 2228
+ },
+ {
+ "epoch": 30.964613368283093,
+ "grad_norm": 0.20918118953704834,
+ "learning_rate": 0.0006,
+ "loss": 3.783510446548462,
+ "step": 2229
+ },
+ {
+ "epoch": 30.978593272171253,
+ "grad_norm": 0.2184133678674698,
+ "learning_rate": 0.0006,
+ "loss": 3.729846954345703,
+ "step": 2230
+ },
+ {
+ "epoch": 30.992573176059416,
+ "grad_norm": 0.20314796268939972,
+ "learning_rate": 0.0006,
+ "loss": 3.753312110900879,
+ "step": 2231
+ },
+ {
+ "epoch": 31.0,
+ "grad_norm": 0.21582408249378204,
+ "learning_rate": 0.0006,
+ "loss": 3.7653090953826904,
+ "step": 2232
+ },
+ {
+ "epoch": 31.0,
+ "eval_loss": 4.030437469482422,
+ "eval_runtime": 43.8529,
+ "eval_samples_per_second": 55.686,
+ "eval_steps_per_second": 3.489,
+ "step": 2232
+ },
+ {
+ "epoch": 31.01397990388816,
+ "grad_norm": 0.214233860373497,
+ "learning_rate": 0.0006,
+ "loss": 3.7179880142211914,
+ "step": 2233
+ },
+ {
+ "epoch": 31.027959807776323,
+ "grad_norm": 0.24621504545211792,
+ "learning_rate": 0.0006,
+ "loss": 3.712569236755371,
+ "step": 2234
+ },
+ {
+ "epoch": 31.041939711664483,
+ "grad_norm": 0.24189279973506927,
+ "learning_rate": 0.0006,
+ "loss": 3.7503058910369873,
+ "step": 2235
+ },
+ {
+ "epoch": 31.055919615552643,
+ "grad_norm": 0.22872278094291687,
+ "learning_rate": 0.0006,
+ "loss": 3.7386386394500732,
+ "step": 2236
+ },
+ {
+ "epoch": 31.069899519440803,
+ "grad_norm": 0.25036823749542236,
+ "learning_rate": 0.0006,
+ "loss": 3.710566997528076,
+ "step": 2237
+ },
+ {
+ "epoch": 31.083879423328966,
+ "grad_norm": 0.2506193220615387,
+ "learning_rate": 0.0006,
+ "loss": 3.7270963191986084,
+ "step": 2238
+ },
+ {
+ "epoch": 31.097859327217126,
+ "grad_norm": 0.24819663166999817,
+ "learning_rate": 0.0006,
+ "loss": 3.716430425643921,
+ "step": 2239
+ },
+ {
+ "epoch": 31.111839231105286,
+ "grad_norm": 0.27226534485816956,
+ "learning_rate": 0.0006,
+ "loss": 3.704428195953369,
+ "step": 2240
+ },
+ {
+ "epoch": 31.125819134993446,
+ "grad_norm": 0.27718204259872437,
+ "learning_rate": 0.0006,
+ "loss": 3.7309701442718506,
+ "step": 2241
+ },
+ {
+ "epoch": 31.13979903888161,
+ "grad_norm": 0.27272021770477295,
+ "learning_rate": 0.0006,
+ "loss": 3.7325143814086914,
+ "step": 2242
+ },
+ {
+ "epoch": 31.15377894276977,
+ "grad_norm": 0.2666020095348358,
+ "learning_rate": 0.0006,
+ "loss": 3.715268611907959,
+ "step": 2243
+ },
+ {
+ "epoch": 31.16775884665793,
+ "grad_norm": 0.258543461561203,
+ "learning_rate": 0.0006,
+ "loss": 3.7336134910583496,
+ "step": 2244
+ },
+ {
+ "epoch": 31.18173875054609,
+ "grad_norm": 0.2528740167617798,
+ "learning_rate": 0.0006,
+ "loss": 3.724491596221924,
+ "step": 2245
+ },
+ {
+ "epoch": 31.195718654434252,
+ "grad_norm": 0.2659667730331421,
+ "learning_rate": 0.0006,
+ "loss": 3.7144742012023926,
+ "step": 2246
+ },
+ {
+ "epoch": 31.209698558322412,
+ "grad_norm": 0.26563164591789246,
+ "learning_rate": 0.0006,
+ "loss": 3.741182327270508,
+ "step": 2247
+ },
+ {
+ "epoch": 31.22367846221057,
+ "grad_norm": 0.26326918601989746,
+ "learning_rate": 0.0006,
+ "loss": 3.7306275367736816,
+ "step": 2248
+ },
+ {
+ "epoch": 31.23765836609873,
+ "grad_norm": 0.23020948469638824,
+ "learning_rate": 0.0006,
+ "loss": 3.7212486267089844,
+ "step": 2249
+ },
+ {
+ "epoch": 31.251638269986895,
+ "grad_norm": 0.21207433938980103,
+ "learning_rate": 0.0006,
+ "loss": 3.6914258003234863,
+ "step": 2250
+ },
+ {
+ "epoch": 31.265618173875055,
+ "grad_norm": 0.2392292022705078,
+ "learning_rate": 0.0006,
+ "loss": 3.7117457389831543,
+ "step": 2251
+ },
+ {
+ "epoch": 31.279598077763215,
+ "grad_norm": 0.22084997594356537,
+ "learning_rate": 0.0006,
+ "loss": 3.728043794631958,
+ "step": 2252
+ },
+ {
+ "epoch": 31.293577981651374,
+ "grad_norm": 0.20818188786506653,
+ "learning_rate": 0.0006,
+ "loss": 3.751762866973877,
+ "step": 2253
+ },
+ {
+ "epoch": 31.307557885539538,
+ "grad_norm": 0.21866194903850555,
+ "learning_rate": 0.0006,
+ "loss": 3.72676420211792,
+ "step": 2254
+ },
+ {
+ "epoch": 31.321537789427698,
+ "grad_norm": 0.20727522671222687,
+ "learning_rate": 0.0006,
+ "loss": 3.735708236694336,
+ "step": 2255
+ },
+ {
+ "epoch": 31.335517693315857,
+ "grad_norm": 0.20655220746994019,
+ "learning_rate": 0.0006,
+ "loss": 3.714116096496582,
+ "step": 2256
+ },
+ {
+ "epoch": 31.34949759720402,
+ "grad_norm": 0.21738854050636292,
+ "learning_rate": 0.0006,
+ "loss": 3.731657028198242,
+ "step": 2257
+ },
+ {
+ "epoch": 31.36347750109218,
+ "grad_norm": 0.20758475363254547,
+ "learning_rate": 0.0006,
+ "loss": 3.7378528118133545,
+ "step": 2258
+ },
+ {
+ "epoch": 31.37745740498034,
+ "grad_norm": 0.20107139647006989,
+ "learning_rate": 0.0006,
+ "loss": 3.748572826385498,
+ "step": 2259
+ },
+ {
+ "epoch": 31.3914373088685,
+ "grad_norm": 0.18707452714443207,
+ "learning_rate": 0.0006,
+ "loss": 3.7237391471862793,
+ "step": 2260
+ },
+ {
+ "epoch": 31.405417212756664,
+ "grad_norm": 0.20745301246643066,
+ "learning_rate": 0.0006,
+ "loss": 3.734435558319092,
+ "step": 2261
+ },
+ {
+ "epoch": 31.419397116644824,
+ "grad_norm": 0.20793399214744568,
+ "learning_rate": 0.0006,
+ "loss": 3.7639012336730957,
+ "step": 2262
+ },
+ {
+ "epoch": 31.433377020532983,
+ "grad_norm": 0.20193757116794586,
+ "learning_rate": 0.0006,
+ "loss": 3.754117727279663,
+ "step": 2263
+ },
+ {
+ "epoch": 31.447356924421143,
+ "grad_norm": 0.1912323236465454,
+ "learning_rate": 0.0006,
+ "loss": 3.728111982345581,
+ "step": 2264
+ },
+ {
+ "epoch": 31.461336828309307,
+ "grad_norm": 0.19441582262516022,
+ "learning_rate": 0.0006,
+ "loss": 3.7533278465270996,
+ "step": 2265
+ },
+ {
+ "epoch": 31.475316732197467,
+ "grad_norm": 0.19807079434394836,
+ "learning_rate": 0.0006,
+ "loss": 3.7351698875427246,
+ "step": 2266
+ },
+ {
+ "epoch": 31.489296636085626,
+ "grad_norm": 0.20373263955116272,
+ "learning_rate": 0.0006,
+ "loss": 3.714097023010254,
+ "step": 2267
+ },
+ {
+ "epoch": 31.503276539973786,
+ "grad_norm": 0.21868768334388733,
+ "learning_rate": 0.0006,
+ "loss": 3.736743688583374,
+ "step": 2268
+ },
+ {
+ "epoch": 31.51725644386195,
+ "grad_norm": 0.20767922699451447,
+ "learning_rate": 0.0006,
+ "loss": 3.7097702026367188,
+ "step": 2269
+ },
+ {
+ "epoch": 31.53123634775011,
+ "grad_norm": 0.18425600230693817,
+ "learning_rate": 0.0006,
+ "loss": 3.7349140644073486,
+ "step": 2270
+ },
+ {
+ "epoch": 31.54521625163827,
+ "grad_norm": 0.18813826143741608,
+ "learning_rate": 0.0006,
+ "loss": 3.7023448944091797,
+ "step": 2271
+ },
+ {
+ "epoch": 31.55919615552643,
+ "grad_norm": 0.1892116516828537,
+ "learning_rate": 0.0006,
+ "loss": 3.7170143127441406,
+ "step": 2272
+ },
+ {
+ "epoch": 31.573176059414592,
+ "grad_norm": 0.2067834585905075,
+ "learning_rate": 0.0006,
+ "loss": 3.7312588691711426,
+ "step": 2273
+ },
+ {
+ "epoch": 31.587155963302752,
+ "grad_norm": 0.204023078083992,
+ "learning_rate": 0.0006,
+ "loss": 3.7399091720581055,
+ "step": 2274
+ },
+ {
+ "epoch": 31.601135867190912,
+ "grad_norm": 0.20245152711868286,
+ "learning_rate": 0.0006,
+ "loss": 3.7259416580200195,
+ "step": 2275
+ },
+ {
+ "epoch": 31.615115771079076,
+ "grad_norm": 0.21125490963459015,
+ "learning_rate": 0.0006,
+ "loss": 3.7217836380004883,
+ "step": 2276
+ },
+ {
+ "epoch": 31.629095674967235,
+ "grad_norm": 0.2093241959810257,
+ "learning_rate": 0.0006,
+ "loss": 3.707627773284912,
+ "step": 2277
+ },
+ {
+ "epoch": 31.643075578855395,
+ "grad_norm": 0.19290480017662048,
+ "learning_rate": 0.0006,
+ "loss": 3.7467126846313477,
+ "step": 2278
+ },
+ {
+ "epoch": 31.657055482743555,
+ "grad_norm": 0.1853940635919571,
+ "learning_rate": 0.0006,
+ "loss": 3.7565581798553467,
+ "step": 2279
+ },
+ {
+ "epoch": 31.67103538663172,
+ "grad_norm": 0.18917642533779144,
+ "learning_rate": 0.0006,
+ "loss": 3.7286229133605957,
+ "step": 2280
+ },
+ {
+ "epoch": 31.68501529051988,
+ "grad_norm": 0.2094079703092575,
+ "learning_rate": 0.0006,
+ "loss": 3.7297096252441406,
+ "step": 2281
+ },
+ {
+ "epoch": 31.698995194408038,
+ "grad_norm": 0.20020027458667755,
+ "learning_rate": 0.0006,
+ "loss": 3.7565250396728516,
+ "step": 2282
+ },
+ {
+ "epoch": 31.712975098296198,
+ "grad_norm": 0.19156186282634735,
+ "learning_rate": 0.0006,
+ "loss": 3.7401509284973145,
+ "step": 2283
+ },
+ {
+ "epoch": 31.72695500218436,
+ "grad_norm": 0.19176368415355682,
+ "learning_rate": 0.0006,
+ "loss": 3.751206398010254,
+ "step": 2284
+ },
+ {
+ "epoch": 31.74093490607252,
+ "grad_norm": 0.18351277709007263,
+ "learning_rate": 0.0006,
+ "loss": 3.752984046936035,
+ "step": 2285
+ },
+ {
+ "epoch": 31.75491480996068,
+ "grad_norm": 0.1879221349954605,
+ "learning_rate": 0.0006,
+ "loss": 3.7156834602355957,
+ "step": 2286
+ },
+ {
+ "epoch": 31.76889471384884,
+ "grad_norm": 0.19232559204101562,
+ "learning_rate": 0.0006,
+ "loss": 3.732879638671875,
+ "step": 2287
+ },
+ {
+ "epoch": 31.782874617737004,
+ "grad_norm": 0.18484069406986237,
+ "learning_rate": 0.0006,
+ "loss": 3.7489013671875,
+ "step": 2288
+ },
+ {
+ "epoch": 31.796854521625164,
+ "grad_norm": 0.20705144107341766,
+ "learning_rate": 0.0006,
+ "loss": 3.7214112281799316,
+ "step": 2289
+ },
+ {
+ "epoch": 31.810834425513324,
+ "grad_norm": 0.23424774408340454,
+ "learning_rate": 0.0006,
+ "loss": 3.714550256729126,
+ "step": 2290
+ },
+ {
+ "epoch": 31.824814329401484,
+ "grad_norm": 0.24061693251132965,
+ "learning_rate": 0.0006,
+ "loss": 3.717336654663086,
+ "step": 2291
+ },
+ {
+ "epoch": 31.838794233289647,
+ "grad_norm": 0.23156678676605225,
+ "learning_rate": 0.0006,
+ "loss": 3.7345399856567383,
+ "step": 2292
+ },
+ {
+ "epoch": 31.852774137177807,
+ "grad_norm": 0.2256302684545517,
+ "learning_rate": 0.0006,
+ "loss": 3.7596092224121094,
+ "step": 2293
+ },
+ {
+ "epoch": 31.866754041065967,
+ "grad_norm": 0.2118781954050064,
+ "learning_rate": 0.0006,
+ "loss": 3.725433588027954,
+ "step": 2294
+ },
+ {
+ "epoch": 31.88073394495413,
+ "grad_norm": 0.1874573826789856,
+ "learning_rate": 0.0006,
+ "loss": 3.738901138305664,
+ "step": 2295
+ },
+ {
+ "epoch": 31.89471384884229,
+ "grad_norm": 0.2062024176120758,
+ "learning_rate": 0.0006,
+ "loss": 3.7439217567443848,
+ "step": 2296
+ },
+ {
+ "epoch": 31.90869375273045,
+ "grad_norm": 0.19886671006679535,
+ "learning_rate": 0.0006,
+ "loss": 3.7583155632019043,
+ "step": 2297
+ },
+ {
+ "epoch": 31.92267365661861,
+ "grad_norm": 0.2079734355211258,
+ "learning_rate": 0.0006,
+ "loss": 3.7251501083374023,
+ "step": 2298
+ },
+ {
+ "epoch": 31.936653560506773,
+ "grad_norm": 0.19710204005241394,
+ "learning_rate": 0.0006,
+ "loss": 3.765778064727783,
+ "step": 2299
+ },
+ {
+ "epoch": 31.950633464394933,
+ "grad_norm": 0.1949392408132553,
+ "learning_rate": 0.0006,
+ "loss": 3.7634787559509277,
+ "step": 2300
+ },
+ {
+ "epoch": 31.964613368283093,
+ "grad_norm": 0.21466250717639923,
+ "learning_rate": 0.0006,
+ "loss": 3.7673215866088867,
+ "step": 2301
+ },
+ {
+ "epoch": 31.978593272171253,
+ "grad_norm": 0.21624267101287842,
+ "learning_rate": 0.0006,
+ "loss": 3.7617220878601074,
+ "step": 2302
+ },
+ {
+ "epoch": 31.992573176059416,
+ "grad_norm": 0.22880229353904724,
+ "learning_rate": 0.0006,
+ "loss": 3.7190351486206055,
+ "step": 2303
+ },
+ {
+ "epoch": 32.0,
+ "grad_norm": 0.23227518796920776,
+ "learning_rate": 0.0006,
+ "loss": 3.740169048309326,
+ "step": 2304
+ },
+ {
+ "epoch": 32.0,
+ "eval_loss": 4.017981052398682,
+ "eval_runtime": 44.4134,
+ "eval_samples_per_second": 54.983,
+ "eval_steps_per_second": 3.445,
+ "step": 2304
+ },
+ {
+ "epoch": 32.01397990388816,
+ "grad_norm": 0.1893721967935562,
+ "learning_rate": 0.0006,
+ "loss": 3.71738338470459,
+ "step": 2305
+ },
+ {
+ "epoch": 32.02795980777632,
+ "grad_norm": 0.23771171271800995,
+ "learning_rate": 0.0006,
+ "loss": 3.71402645111084,
+ "step": 2306
+ },
+ {
+ "epoch": 32.04193971166448,
+ "grad_norm": 0.26343807578086853,
+ "learning_rate": 0.0006,
+ "loss": 3.6926395893096924,
+ "step": 2307
+ },
+ {
+ "epoch": 32.05591961555265,
+ "grad_norm": 0.25092509388923645,
+ "learning_rate": 0.0006,
+ "loss": 3.715243339538574,
+ "step": 2308
+ },
+ {
+ "epoch": 32.0698995194408,
+ "grad_norm": 0.23148509860038757,
+ "learning_rate": 0.0006,
+ "loss": 3.690734386444092,
+ "step": 2309
+ },
+ {
+ "epoch": 32.083879423328966,
+ "grad_norm": 0.23314623534679413,
+ "learning_rate": 0.0006,
+ "loss": 3.6980109214782715,
+ "step": 2310
+ },
+ {
+ "epoch": 32.09785932721712,
+ "grad_norm": 0.2210417091846466,
+ "learning_rate": 0.0006,
+ "loss": 3.7395730018615723,
+ "step": 2311
+ },
+ {
+ "epoch": 32.111839231105286,
+ "grad_norm": 0.20263685286045074,
+ "learning_rate": 0.0006,
+ "loss": 3.678412914276123,
+ "step": 2312
+ },
+ {
+ "epoch": 32.12581913499345,
+ "grad_norm": 0.20412251353263855,
+ "learning_rate": 0.0006,
+ "loss": 3.688762903213501,
+ "step": 2313
+ },
+ {
+ "epoch": 32.139799038881605,
+ "grad_norm": 0.2041679322719574,
+ "learning_rate": 0.0006,
+ "loss": 3.7231521606445312,
+ "step": 2314
+ },
+ {
+ "epoch": 32.15377894276977,
+ "grad_norm": 0.23270174860954285,
+ "learning_rate": 0.0006,
+ "loss": 3.7102620601654053,
+ "step": 2315
+ },
+ {
+ "epoch": 32.16775884665793,
+ "grad_norm": 0.25470519065856934,
+ "learning_rate": 0.0006,
+ "loss": 3.7353053092956543,
+ "step": 2316
+ },
+ {
+ "epoch": 32.18173875054609,
+ "grad_norm": 0.2930106222629547,
+ "learning_rate": 0.0006,
+ "loss": 3.7418713569641113,
+ "step": 2317
+ },
+ {
+ "epoch": 32.19571865443425,
+ "grad_norm": 0.3181219696998596,
+ "learning_rate": 0.0006,
+ "loss": 3.6716184616088867,
+ "step": 2318
+ },
+ {
+ "epoch": 32.20969855832241,
+ "grad_norm": 0.2752978801727295,
+ "learning_rate": 0.0006,
+ "loss": 3.70334792137146,
+ "step": 2319
+ },
+ {
+ "epoch": 32.22367846221057,
+ "grad_norm": 0.28381186723709106,
+ "learning_rate": 0.0006,
+ "loss": 3.719794750213623,
+ "step": 2320
+ },
+ {
+ "epoch": 32.237658366098735,
+ "grad_norm": 0.3287750482559204,
+ "learning_rate": 0.0006,
+ "loss": 3.7363362312316895,
+ "step": 2321
+ },
+ {
+ "epoch": 32.25163826998689,
+ "grad_norm": 0.32669803500175476,
+ "learning_rate": 0.0006,
+ "loss": 3.739394426345825,
+ "step": 2322
+ },
+ {
+ "epoch": 32.265618173875055,
+ "grad_norm": 0.27423885464668274,
+ "learning_rate": 0.0006,
+ "loss": 3.7381205558776855,
+ "step": 2323
+ },
+ {
+ "epoch": 32.27959807776322,
+ "grad_norm": 0.2594660818576813,
+ "learning_rate": 0.0006,
+ "loss": 3.698683738708496,
+ "step": 2324
+ },
+ {
+ "epoch": 32.293577981651374,
+ "grad_norm": 0.2785511016845703,
+ "learning_rate": 0.0006,
+ "loss": 3.688774824142456,
+ "step": 2325
+ },
+ {
+ "epoch": 32.30755788553954,
+ "grad_norm": 0.2690320611000061,
+ "learning_rate": 0.0006,
+ "loss": 3.7209150791168213,
+ "step": 2326
+ },
+ {
+ "epoch": 32.3215377894277,
+ "grad_norm": 0.23331770300865173,
+ "learning_rate": 0.0006,
+ "loss": 3.682931423187256,
+ "step": 2327
+ },
+ {
+ "epoch": 32.33551769331586,
+ "grad_norm": 0.22380802035331726,
+ "learning_rate": 0.0006,
+ "loss": 3.720445156097412,
+ "step": 2328
+ },
+ {
+ "epoch": 32.34949759720402,
+ "grad_norm": 0.2065964937210083,
+ "learning_rate": 0.0006,
+ "loss": 3.705427885055542,
+ "step": 2329
+ },
+ {
+ "epoch": 32.36347750109218,
+ "grad_norm": 0.20701853930950165,
+ "learning_rate": 0.0006,
+ "loss": 3.7078697681427,
+ "step": 2330
+ },
+ {
+ "epoch": 32.37745740498034,
+ "grad_norm": 0.2063559591770172,
+ "learning_rate": 0.0006,
+ "loss": 3.745004653930664,
+ "step": 2331
+ },
+ {
+ "epoch": 32.391437308868504,
+ "grad_norm": 0.19377011060714722,
+ "learning_rate": 0.0006,
+ "loss": 3.713808059692383,
+ "step": 2332
+ },
+ {
+ "epoch": 32.40541721275666,
+ "grad_norm": 0.19260725378990173,
+ "learning_rate": 0.0006,
+ "loss": 3.717043876647949,
+ "step": 2333
+ },
+ {
+ "epoch": 32.419397116644824,
+ "grad_norm": 0.20792821049690247,
+ "learning_rate": 0.0006,
+ "loss": 3.68632173538208,
+ "step": 2334
+ },
+ {
+ "epoch": 32.43337702053299,
+ "grad_norm": 0.22278444468975067,
+ "learning_rate": 0.0006,
+ "loss": 3.7345821857452393,
+ "step": 2335
+ },
+ {
+ "epoch": 32.44735692442114,
+ "grad_norm": 0.22533579170703888,
+ "learning_rate": 0.0006,
+ "loss": 3.7224173545837402,
+ "step": 2336
+ },
+ {
+ "epoch": 32.46133682830931,
+ "grad_norm": 0.20228394865989685,
+ "learning_rate": 0.0006,
+ "loss": 3.748530149459839,
+ "step": 2337
+ },
+ {
+ "epoch": 32.47531673219746,
+ "grad_norm": 0.19944614171981812,
+ "learning_rate": 0.0006,
+ "loss": 3.707085371017456,
+ "step": 2338
+ },
+ {
+ "epoch": 32.489296636085626,
+ "grad_norm": 0.19856145977973938,
+ "learning_rate": 0.0006,
+ "loss": 3.6898274421691895,
+ "step": 2339
+ },
+ {
+ "epoch": 32.50327653997379,
+ "grad_norm": 0.20734605193138123,
+ "learning_rate": 0.0006,
+ "loss": 3.7511792182922363,
+ "step": 2340
+ },
+ {
+ "epoch": 32.517256443861946,
+ "grad_norm": 0.19489309191703796,
+ "learning_rate": 0.0006,
+ "loss": 3.736445426940918,
+ "step": 2341
+ },
+ {
+ "epoch": 32.53123634775011,
+ "grad_norm": 0.18899282813072205,
+ "learning_rate": 0.0006,
+ "loss": 3.727325916290283,
+ "step": 2342
+ },
+ {
+ "epoch": 32.54521625163827,
+ "grad_norm": 0.19670401513576508,
+ "learning_rate": 0.0006,
+ "loss": 3.7326102256774902,
+ "step": 2343
+ },
+ {
+ "epoch": 32.55919615552643,
+ "grad_norm": 0.20061780512332916,
+ "learning_rate": 0.0006,
+ "loss": 3.698716402053833,
+ "step": 2344
+ },
+ {
+ "epoch": 32.57317605941459,
+ "grad_norm": 0.1991659700870514,
+ "learning_rate": 0.0006,
+ "loss": 3.6913180351257324,
+ "step": 2345
+ },
+ {
+ "epoch": 32.58715596330275,
+ "grad_norm": 0.18856225907802582,
+ "learning_rate": 0.0006,
+ "loss": 3.7130961418151855,
+ "step": 2346
+ },
+ {
+ "epoch": 32.60113586719091,
+ "grad_norm": 0.1983972191810608,
+ "learning_rate": 0.0006,
+ "loss": 3.7530808448791504,
+ "step": 2347
+ },
+ {
+ "epoch": 32.615115771079076,
+ "grad_norm": 0.2037997543811798,
+ "learning_rate": 0.0006,
+ "loss": 3.7076587677001953,
+ "step": 2348
+ },
+ {
+ "epoch": 32.62909567496723,
+ "grad_norm": 0.21008458733558655,
+ "learning_rate": 0.0006,
+ "loss": 3.7379021644592285,
+ "step": 2349
+ },
+ {
+ "epoch": 32.643075578855395,
+ "grad_norm": 0.2129313349723816,
+ "learning_rate": 0.0006,
+ "loss": 3.7031373977661133,
+ "step": 2350
+ },
+ {
+ "epoch": 32.65705548274356,
+ "grad_norm": 0.18756245076656342,
+ "learning_rate": 0.0006,
+ "loss": 3.7066285610198975,
+ "step": 2351
+ },
+ {
+ "epoch": 32.671035386631715,
+ "grad_norm": 0.17946591973304749,
+ "learning_rate": 0.0006,
+ "loss": 3.73781681060791,
+ "step": 2352
+ },
+ {
+ "epoch": 32.68501529051988,
+ "grad_norm": 0.18983198702335358,
+ "learning_rate": 0.0006,
+ "loss": 3.718855381011963,
+ "step": 2353
+ },
+ {
+ "epoch": 32.69899519440804,
+ "grad_norm": 0.2080942839384079,
+ "learning_rate": 0.0006,
+ "loss": 3.7111258506774902,
+ "step": 2354
+ },
+ {
+ "epoch": 32.7129750982962,
+ "grad_norm": 0.23633413016796112,
+ "learning_rate": 0.0006,
+ "loss": 3.709766149520874,
+ "step": 2355
+ },
+ {
+ "epoch": 32.72695500218436,
+ "grad_norm": 0.2723144590854645,
+ "learning_rate": 0.0006,
+ "loss": 3.745850086212158,
+ "step": 2356
+ },
+ {
+ "epoch": 32.74093490607252,
+ "grad_norm": 0.29774025082588196,
+ "learning_rate": 0.0006,
+ "loss": 3.733771324157715,
+ "step": 2357
+ },
+ {
+ "epoch": 32.75491480996068,
+ "grad_norm": 0.25976699590682983,
+ "learning_rate": 0.0006,
+ "loss": 3.734194278717041,
+ "step": 2358
+ },
+ {
+ "epoch": 32.768894713848844,
+ "grad_norm": 0.20038039982318878,
+ "learning_rate": 0.0006,
+ "loss": 3.735656261444092,
+ "step": 2359
+ },
+ {
+ "epoch": 32.782874617737,
+ "grad_norm": 0.19745637476444244,
+ "learning_rate": 0.0006,
+ "loss": 3.7335894107818604,
+ "step": 2360
+ },
+ {
+ "epoch": 32.796854521625164,
+ "grad_norm": 0.22022396326065063,
+ "learning_rate": 0.0006,
+ "loss": 3.708998680114746,
+ "step": 2361
+ },
+ {
+ "epoch": 32.81083442551333,
+ "grad_norm": 0.24754752218723297,
+ "learning_rate": 0.0006,
+ "loss": 3.7616286277770996,
+ "step": 2362
+ },
+ {
+ "epoch": 32.824814329401484,
+ "grad_norm": 0.26438358426094055,
+ "learning_rate": 0.0006,
+ "loss": 3.737079620361328,
+ "step": 2363
+ },
+ {
+ "epoch": 32.83879423328965,
+ "grad_norm": 0.2507241666316986,
+ "learning_rate": 0.0006,
+ "loss": 3.708500385284424,
+ "step": 2364
+ },
+ {
+ "epoch": 32.8527741371778,
+ "grad_norm": 0.25688016414642334,
+ "learning_rate": 0.0006,
+ "loss": 3.7389419078826904,
+ "step": 2365
+ },
+ {
+ "epoch": 32.86675404106597,
+ "grad_norm": 0.257447749376297,
+ "learning_rate": 0.0006,
+ "loss": 3.7253334522247314,
+ "step": 2366
+ },
+ {
+ "epoch": 32.88073394495413,
+ "grad_norm": 0.2621215879917145,
+ "learning_rate": 0.0006,
+ "loss": 3.773163318634033,
+ "step": 2367
+ },
+ {
+ "epoch": 32.89471384884229,
+ "grad_norm": 0.23554839193820953,
+ "learning_rate": 0.0006,
+ "loss": 3.7534430027008057,
+ "step": 2368
+ },
+ {
+ "epoch": 32.90869375273045,
+ "grad_norm": 0.19698940217494965,
+ "learning_rate": 0.0006,
+ "loss": 3.7094414234161377,
+ "step": 2369
+ },
+ {
+ "epoch": 32.92267365661861,
+ "grad_norm": 0.21380476653575897,
+ "learning_rate": 0.0006,
+ "loss": 3.7666497230529785,
+ "step": 2370
+ },
+ {
+ "epoch": 32.93665356050677,
+ "grad_norm": 0.20876452326774597,
+ "learning_rate": 0.0006,
+ "loss": 3.7467992305755615,
+ "step": 2371
+ },
+ {
+ "epoch": 32.95063346439493,
+ "grad_norm": 0.1989884227514267,
+ "learning_rate": 0.0006,
+ "loss": 3.749878168106079,
+ "step": 2372
+ },
+ {
+ "epoch": 32.964613368283096,
+ "grad_norm": 0.19089168310165405,
+ "learning_rate": 0.0006,
+ "loss": 3.7211015224456787,
+ "step": 2373
+ },
+ {
+ "epoch": 32.97859327217125,
+ "grad_norm": 0.1962461918592453,
+ "learning_rate": 0.0006,
+ "loss": 3.728684425354004,
+ "step": 2374
+ },
+ {
+ "epoch": 32.992573176059416,
+ "grad_norm": 0.22518110275268555,
+ "learning_rate": 0.0006,
+ "loss": 3.7361507415771484,
+ "step": 2375
+ },
+ {
+ "epoch": 33.0,
+ "grad_norm": 0.26704078912734985,
+ "learning_rate": 0.0006,
+ "loss": 3.7478318214416504,
+ "step": 2376
+ },
+ {
+ "epoch": 33.0,
+ "eval_loss": 4.024221897125244,
+ "eval_runtime": 43.9826,
+ "eval_samples_per_second": 55.522,
+ "eval_steps_per_second": 3.479,
+ "step": 2376
+ },
+ {
+ "epoch": 33.01397990388816,
+ "grad_norm": 0.23387742042541504,
+ "learning_rate": 0.0006,
+ "loss": 3.7043614387512207,
+ "step": 2377
+ },
+ {
+ "epoch": 33.02795980777632,
+ "grad_norm": 0.21334673464298248,
+ "learning_rate": 0.0006,
+ "loss": 3.6714677810668945,
+ "step": 2378
+ },
+ {
+ "epoch": 33.04193971166448,
+ "grad_norm": 0.2608581483364105,
+ "learning_rate": 0.0006,
+ "loss": 3.678460121154785,
+ "step": 2379
+ },
+ {
+ "epoch": 33.05591961555265,
+ "grad_norm": 0.31364381313323975,
+ "learning_rate": 0.0006,
+ "loss": 3.6771793365478516,
+ "step": 2380
+ },
+ {
+ "epoch": 33.0698995194408,
+ "grad_norm": 0.31785935163497925,
+ "learning_rate": 0.0006,
+ "loss": 3.7248926162719727,
+ "step": 2381
+ },
+ {
+ "epoch": 33.083879423328966,
+ "grad_norm": 0.29244646430015564,
+ "learning_rate": 0.0006,
+ "loss": 3.677882194519043,
+ "step": 2382
+ },
+ {
+ "epoch": 33.09785932721712,
+ "grad_norm": 0.23943741619586945,
+ "learning_rate": 0.0006,
+ "loss": 3.7365124225616455,
+ "step": 2383
+ },
+ {
+ "epoch": 33.111839231105286,
+ "grad_norm": 0.2547394931316376,
+ "learning_rate": 0.0006,
+ "loss": 3.7031357288360596,
+ "step": 2384
+ },
+ {
+ "epoch": 33.12581913499345,
+ "grad_norm": 0.2696659564971924,
+ "learning_rate": 0.0006,
+ "loss": 3.6904754638671875,
+ "step": 2385
+ },
+ {
+ "epoch": 33.139799038881605,
+ "grad_norm": 0.24271385371685028,
+ "learning_rate": 0.0006,
+ "loss": 3.7137649059295654,
+ "step": 2386
+ },
+ {
+ "epoch": 33.15377894276977,
+ "grad_norm": 0.23435993492603302,
+ "learning_rate": 0.0006,
+ "loss": 3.707383632659912,
+ "step": 2387
+ },
+ {
+ "epoch": 33.16775884665793,
+ "grad_norm": 0.21428440511226654,
+ "learning_rate": 0.0006,
+ "loss": 3.7148897647857666,
+ "step": 2388
+ },
+ {
+ "epoch": 33.18173875054609,
+ "grad_norm": 0.22420962154865265,
+ "learning_rate": 0.0006,
+ "loss": 3.710111141204834,
+ "step": 2389
+ },
+ {
+ "epoch": 33.19571865443425,
+ "grad_norm": 0.26222777366638184,
+ "learning_rate": 0.0006,
+ "loss": 3.677438259124756,
+ "step": 2390
+ },
+ {
+ "epoch": 33.20969855832241,
+ "grad_norm": 0.29910165071487427,
+ "learning_rate": 0.0006,
+ "loss": 3.6895523071289062,
+ "step": 2391
+ },
+ {
+ "epoch": 33.22367846221057,
+ "grad_norm": 0.2615569531917572,
+ "learning_rate": 0.0006,
+ "loss": 3.7339906692504883,
+ "step": 2392
+ },
+ {
+ "epoch": 33.237658366098735,
+ "grad_norm": 0.23396961390972137,
+ "learning_rate": 0.0006,
+ "loss": 3.7179932594299316,
+ "step": 2393
+ },
+ {
+ "epoch": 33.25163826998689,
+ "grad_norm": 0.24844495952129364,
+ "learning_rate": 0.0006,
+ "loss": 3.7191576957702637,
+ "step": 2394
+ },
+ {
+ "epoch": 33.265618173875055,
+ "grad_norm": 0.2306993454694748,
+ "learning_rate": 0.0006,
+ "loss": 3.7172658443450928,
+ "step": 2395
+ },
+ {
+ "epoch": 33.27959807776322,
+ "grad_norm": 0.24935221672058105,
+ "learning_rate": 0.0006,
+ "loss": 3.6917519569396973,
+ "step": 2396
+ },
+ {
+ "epoch": 33.293577981651374,
+ "grad_norm": 0.2522840201854706,
+ "learning_rate": 0.0006,
+ "loss": 3.7263593673706055,
+ "step": 2397
+ },
+ {
+ "epoch": 33.30755788553954,
+ "grad_norm": 0.26411181688308716,
+ "learning_rate": 0.0006,
+ "loss": 3.6981635093688965,
+ "step": 2398
+ },
+ {
+ "epoch": 33.3215377894277,
+ "grad_norm": 0.22396239638328552,
+ "learning_rate": 0.0006,
+ "loss": 3.713247299194336,
+ "step": 2399
+ },
+ {
+ "epoch": 33.33551769331586,
+ "grad_norm": 0.20579157769680023,
+ "learning_rate": 0.0006,
+ "loss": 3.7058467864990234,
+ "step": 2400
+ },
+ {
+ "epoch": 33.34949759720402,
+ "grad_norm": 0.20103922486305237,
+ "learning_rate": 0.0006,
+ "loss": 3.700924873352051,
+ "step": 2401
+ },
+ {
+ "epoch": 33.36347750109218,
+ "grad_norm": 0.19964663684368134,
+ "learning_rate": 0.0006,
+ "loss": 3.6985437870025635,
+ "step": 2402
+ },
+ {
+ "epoch": 33.37745740498034,
+ "grad_norm": 0.20860575139522552,
+ "learning_rate": 0.0006,
+ "loss": 3.7480058670043945,
+ "step": 2403
+ },
+ {
+ "epoch": 33.391437308868504,
+ "grad_norm": 0.19043605029582977,
+ "learning_rate": 0.0006,
+ "loss": 3.6952016353607178,
+ "step": 2404
+ },
+ {
+ "epoch": 33.40541721275666,
+ "grad_norm": 0.1968909204006195,
+ "learning_rate": 0.0006,
+ "loss": 3.69362735748291,
+ "step": 2405
+ },
+ {
+ "epoch": 33.419397116644824,
+ "grad_norm": 0.23492494225502014,
+ "learning_rate": 0.0006,
+ "loss": 3.707993984222412,
+ "step": 2406
+ },
+ {
+ "epoch": 33.43337702053299,
+ "grad_norm": 0.23970453441143036,
+ "learning_rate": 0.0006,
+ "loss": 3.707731246948242,
+ "step": 2407
+ },
+ {
+ "epoch": 33.44735692442114,
+ "grad_norm": 0.2515844404697418,
+ "learning_rate": 0.0006,
+ "loss": 3.723824977874756,
+ "step": 2408
+ },
+ {
+ "epoch": 33.46133682830931,
+ "grad_norm": 0.2343570590019226,
+ "learning_rate": 0.0006,
+ "loss": 3.7068886756896973,
+ "step": 2409
+ },
+ {
+ "epoch": 33.47531673219746,
+ "grad_norm": 0.23419860005378723,
+ "learning_rate": 0.0006,
+ "loss": 3.6964287757873535,
+ "step": 2410
+ },
+ {
+ "epoch": 33.489296636085626,
+ "grad_norm": 0.21280375123023987,
+ "learning_rate": 0.0006,
+ "loss": 3.7020950317382812,
+ "step": 2411
+ },
+ {
+ "epoch": 33.50327653997379,
+ "grad_norm": 0.2061092108488083,
+ "learning_rate": 0.0006,
+ "loss": 3.750861406326294,
+ "step": 2412
+ },
+ {
+ "epoch": 33.517256443861946,
+ "grad_norm": 0.19693219661712646,
+ "learning_rate": 0.0006,
+ "loss": 3.717020034790039,
+ "step": 2413
+ },
+ {
+ "epoch": 33.53123634775011,
+ "grad_norm": 0.18199551105499268,
+ "learning_rate": 0.0006,
+ "loss": 3.7242612838745117,
+ "step": 2414
+ },
+ {
+ "epoch": 33.54521625163827,
+ "grad_norm": 0.20131248235702515,
+ "learning_rate": 0.0006,
+ "loss": 3.6758954524993896,
+ "step": 2415
+ },
+ {
+ "epoch": 33.55919615552643,
+ "grad_norm": 0.2219412475824356,
+ "learning_rate": 0.0006,
+ "loss": 3.707927703857422,
+ "step": 2416
+ },
+ {
+ "epoch": 33.57317605941459,
+ "grad_norm": 0.22541435062885284,
+ "learning_rate": 0.0006,
+ "loss": 3.696967601776123,
+ "step": 2417
+ },
+ {
+ "epoch": 33.58715596330275,
+ "grad_norm": 0.20367272198200226,
+ "learning_rate": 0.0006,
+ "loss": 3.730795383453369,
+ "step": 2418
+ },
+ {
+ "epoch": 33.60113586719091,
+ "grad_norm": 0.20861074328422546,
+ "learning_rate": 0.0006,
+ "loss": 3.707066535949707,
+ "step": 2419
+ },
+ {
+ "epoch": 33.615115771079076,
+ "grad_norm": 0.20570263266563416,
+ "learning_rate": 0.0006,
+ "loss": 3.730602502822876,
+ "step": 2420
+ },
+ {
+ "epoch": 33.62909567496723,
+ "grad_norm": 0.21318231523036957,
+ "learning_rate": 0.0006,
+ "loss": 3.7073278427124023,
+ "step": 2421
+ },
+ {
+ "epoch": 33.643075578855395,
+ "grad_norm": 0.2142639458179474,
+ "learning_rate": 0.0006,
+ "loss": 3.718470573425293,
+ "step": 2422
+ },
+ {
+ "epoch": 33.65705548274356,
+ "grad_norm": 0.19620704650878906,
+ "learning_rate": 0.0006,
+ "loss": 3.716036319732666,
+ "step": 2423
+ },
+ {
+ "epoch": 33.671035386631715,
+ "grad_norm": 0.19308267533779144,
+ "learning_rate": 0.0006,
+ "loss": 3.734597682952881,
+ "step": 2424
+ },
+ {
+ "epoch": 33.68501529051988,
+ "grad_norm": 0.19453389942646027,
+ "learning_rate": 0.0006,
+ "loss": 3.726262092590332,
+ "step": 2425
+ },
+ {
+ "epoch": 33.69899519440804,
+ "grad_norm": 0.20405639708042145,
+ "learning_rate": 0.0006,
+ "loss": 3.678340435028076,
+ "step": 2426
+ },
+ {
+ "epoch": 33.7129750982962,
+ "grad_norm": 0.19525611400604248,
+ "learning_rate": 0.0006,
+ "loss": 3.723907470703125,
+ "step": 2427
+ },
+ {
+ "epoch": 33.72695500218436,
+ "grad_norm": 0.19390441477298737,
+ "learning_rate": 0.0006,
+ "loss": 3.707897186279297,
+ "step": 2428
+ },
+ {
+ "epoch": 33.74093490607252,
+ "grad_norm": 0.2032899558544159,
+ "learning_rate": 0.0006,
+ "loss": 3.735041618347168,
+ "step": 2429
+ },
+ {
+ "epoch": 33.75491480996068,
+ "grad_norm": 0.2134784460067749,
+ "learning_rate": 0.0006,
+ "loss": 3.674978017807007,
+ "step": 2430
+ },
+ {
+ "epoch": 33.768894713848844,
+ "grad_norm": 0.24691973626613617,
+ "learning_rate": 0.0006,
+ "loss": 3.7028675079345703,
+ "step": 2431
+ },
+ {
+ "epoch": 33.782874617737,
+ "grad_norm": 0.2272702008485794,
+ "learning_rate": 0.0006,
+ "loss": 3.7277941703796387,
+ "step": 2432
+ },
+ {
+ "epoch": 33.796854521625164,
+ "grad_norm": 0.20052100718021393,
+ "learning_rate": 0.0006,
+ "loss": 3.7146830558776855,
+ "step": 2433
+ },
+ {
+ "epoch": 33.81083442551333,
+ "grad_norm": 0.1958577185869217,
+ "learning_rate": 0.0006,
+ "loss": 3.6936864852905273,
+ "step": 2434
+ },
+ {
+ "epoch": 33.824814329401484,
+ "grad_norm": 0.191860631108284,
+ "learning_rate": 0.0006,
+ "loss": 3.7451858520507812,
+ "step": 2435
+ },
+ {
+ "epoch": 33.83879423328965,
+ "grad_norm": 0.20961424708366394,
+ "learning_rate": 0.0006,
+ "loss": 3.722400665283203,
+ "step": 2436
+ },
+ {
+ "epoch": 33.8527741371778,
+ "grad_norm": 0.19784288108348846,
+ "learning_rate": 0.0006,
+ "loss": 3.712474822998047,
+ "step": 2437
+ },
+ {
+ "epoch": 33.86675404106597,
+ "grad_norm": 0.18645426630973816,
+ "learning_rate": 0.0006,
+ "loss": 3.7054500579833984,
+ "step": 2438
+ },
+ {
+ "epoch": 33.88073394495413,
+ "grad_norm": 0.19622360169887543,
+ "learning_rate": 0.0006,
+ "loss": 3.7010550498962402,
+ "step": 2439
+ },
+ {
+ "epoch": 33.89471384884229,
+ "grad_norm": 0.20283745229244232,
+ "learning_rate": 0.0006,
+ "loss": 3.7252519130706787,
+ "step": 2440
+ },
+ {
+ "epoch": 33.90869375273045,
+ "grad_norm": 0.18671709299087524,
+ "learning_rate": 0.0006,
+ "loss": 3.6932945251464844,
+ "step": 2441
+ },
+ {
+ "epoch": 33.92267365661861,
+ "grad_norm": 0.17953112721443176,
+ "learning_rate": 0.0006,
+ "loss": 3.7453854084014893,
+ "step": 2442
+ },
+ {
+ "epoch": 33.93665356050677,
+ "grad_norm": 0.1945437788963318,
+ "learning_rate": 0.0006,
+ "loss": 3.722881317138672,
+ "step": 2443
+ },
+ {
+ "epoch": 33.95063346439493,
+ "grad_norm": 0.18414495885372162,
+ "learning_rate": 0.0006,
+ "loss": 3.7402591705322266,
+ "step": 2444
+ },
+ {
+ "epoch": 33.964613368283096,
+ "grad_norm": 0.1936541497707367,
+ "learning_rate": 0.0006,
+ "loss": 3.720057964324951,
+ "step": 2445
+ },
+ {
+ "epoch": 33.97859327217125,
+ "grad_norm": 0.20177008211612701,
+ "learning_rate": 0.0006,
+ "loss": 3.6983802318573,
+ "step": 2446
+ },
+ {
+ "epoch": 33.992573176059416,
+ "grad_norm": 0.18977557122707367,
+ "learning_rate": 0.0006,
+ "loss": 3.7202203273773193,
+ "step": 2447
+ },
+ {
+ "epoch": 34.0,
+ "grad_norm": 0.220163956284523,
+ "learning_rate": 0.0006,
+ "loss": 3.72540283203125,
+ "step": 2448
+ },
+ {
+ "epoch": 34.0,
+ "eval_loss": 4.009343147277832,
+ "eval_runtime": 44.1825,
+ "eval_samples_per_second": 55.271,
+ "eval_steps_per_second": 3.463,
+ "step": 2448
+ },
+ {
+ "epoch": 34.01397990388816,
+ "grad_norm": 0.19843372702598572,
+ "learning_rate": 0.0006,
+ "loss": 3.664431571960449,
+ "step": 2449
+ },
+ {
+ "epoch": 34.02795980777632,
+ "grad_norm": 0.20413008332252502,
+ "learning_rate": 0.0006,
+ "loss": 3.699094533920288,
+ "step": 2450
+ },
+ {
+ "epoch": 34.04193971166448,
+ "grad_norm": 0.22086848318576813,
+ "learning_rate": 0.0006,
+ "loss": 3.681825637817383,
+ "step": 2451
+ },
+ {
+ "epoch": 34.05591961555265,
+ "grad_norm": 0.20753061771392822,
+ "learning_rate": 0.0006,
+ "loss": 3.677116870880127,
+ "step": 2452
+ },
+ {
+ "epoch": 34.0698995194408,
+ "grad_norm": 0.21835783123970032,
+ "learning_rate": 0.0006,
+ "loss": 3.7079062461853027,
+ "step": 2453
+ },
+ {
+ "epoch": 34.083879423328966,
+ "grad_norm": 0.2244357019662857,
+ "learning_rate": 0.0006,
+ "loss": 3.69844913482666,
+ "step": 2454
+ },
+ {
+ "epoch": 34.09785932721712,
+ "grad_norm": 0.2238784283399582,
+ "learning_rate": 0.0006,
+ "loss": 3.6835570335388184,
+ "step": 2455
+ },
+ {
+ "epoch": 34.111839231105286,
+ "grad_norm": 0.24816176295280457,
+ "learning_rate": 0.0006,
+ "loss": 3.6832966804504395,
+ "step": 2456
+ },
+ {
+ "epoch": 34.12581913499345,
+ "grad_norm": 0.2445257306098938,
+ "learning_rate": 0.0006,
+ "loss": 3.7190022468566895,
+ "step": 2457
+ },
+ {
+ "epoch": 34.139799038881605,
+ "grad_norm": 0.24510814249515533,
+ "learning_rate": 0.0006,
+ "loss": 3.678098201751709,
+ "step": 2458
+ },
+ {
+ "epoch": 34.15377894276977,
+ "grad_norm": 0.2550753653049469,
+ "learning_rate": 0.0006,
+ "loss": 3.69335675239563,
+ "step": 2459
+ },
+ {
+ "epoch": 34.16775884665793,
+ "grad_norm": 0.2435017228126526,
+ "learning_rate": 0.0006,
+ "loss": 3.70463228225708,
+ "step": 2460
+ },
+ {
+ "epoch": 34.18173875054609,
+ "grad_norm": 0.26441144943237305,
+ "learning_rate": 0.0006,
+ "loss": 3.6757068634033203,
+ "step": 2461
+ },
+ {
+ "epoch": 34.19571865443425,
+ "grad_norm": 0.2737993001937866,
+ "learning_rate": 0.0006,
+ "loss": 3.6510863304138184,
+ "step": 2462
+ },
+ {
+ "epoch": 34.20969855832241,
+ "grad_norm": 0.24625736474990845,
+ "learning_rate": 0.0006,
+ "loss": 3.707612991333008,
+ "step": 2463
+ },
+ {
+ "epoch": 34.22367846221057,
+ "grad_norm": 0.22222039103507996,
+ "learning_rate": 0.0006,
+ "loss": 3.7145133018493652,
+ "step": 2464
+ },
+ {
+ "epoch": 34.237658366098735,
+ "grad_norm": 0.2173531949520111,
+ "learning_rate": 0.0006,
+ "loss": 3.685112476348877,
+ "step": 2465
+ },
+ {
+ "epoch": 34.25163826998689,
+ "grad_norm": 0.23102006316184998,
+ "learning_rate": 0.0006,
+ "loss": 3.6742453575134277,
+ "step": 2466
+ },
+ {
+ "epoch": 34.265618173875055,
+ "grad_norm": 0.22287188470363617,
+ "learning_rate": 0.0006,
+ "loss": 3.7030534744262695,
+ "step": 2467
+ },
+ {
+ "epoch": 34.27959807776322,
+ "grad_norm": 0.20377251505851746,
+ "learning_rate": 0.0006,
+ "loss": 3.6866259574890137,
+ "step": 2468
+ },
+ {
+ "epoch": 34.293577981651374,
+ "grad_norm": 0.19867438077926636,
+ "learning_rate": 0.0006,
+ "loss": 3.70395565032959,
+ "step": 2469
+ },
+ {
+ "epoch": 34.30755788553954,
+ "grad_norm": 0.2014918178319931,
+ "learning_rate": 0.0006,
+ "loss": 3.660795211791992,
+ "step": 2470
+ },
+ {
+ "epoch": 34.3215377894277,
+ "grad_norm": 0.20981402695178986,
+ "learning_rate": 0.0006,
+ "loss": 3.7045323848724365,
+ "step": 2471
+ },
+ {
+ "epoch": 34.33551769331586,
+ "grad_norm": 0.20968124270439148,
+ "learning_rate": 0.0006,
+ "loss": 3.7113170623779297,
+ "step": 2472
+ },
+ {
+ "epoch": 34.34949759720402,
+ "grad_norm": 0.2214043140411377,
+ "learning_rate": 0.0006,
+ "loss": 3.7330074310302734,
+ "step": 2473
+ },
+ {
+ "epoch": 34.36347750109218,
+ "grad_norm": 0.21231533586978912,
+ "learning_rate": 0.0006,
+ "loss": 3.6706933975219727,
+ "step": 2474
+ },
+ {
+ "epoch": 34.37745740498034,
+ "grad_norm": 0.2022094875574112,
+ "learning_rate": 0.0006,
+ "loss": 3.7230453491210938,
+ "step": 2475
+ },
+ {
+ "epoch": 34.391437308868504,
+ "grad_norm": 0.2281145304441452,
+ "learning_rate": 0.0006,
+ "loss": 3.7197465896606445,
+ "step": 2476
+ },
+ {
+ "epoch": 34.40541721275666,
+ "grad_norm": 0.2147362381219864,
+ "learning_rate": 0.0006,
+ "loss": 3.7092337608337402,
+ "step": 2477
+ },
+ {
+ "epoch": 34.419397116644824,
+ "grad_norm": 0.19984203577041626,
+ "learning_rate": 0.0006,
+ "loss": 3.6939496994018555,
+ "step": 2478
+ },
+ {
+ "epoch": 34.43337702053299,
+ "grad_norm": 0.21088480949401855,
+ "learning_rate": 0.0006,
+ "loss": 3.6942667961120605,
+ "step": 2479
+ },
+ {
+ "epoch": 34.44735692442114,
+ "grad_norm": 0.20444616675376892,
+ "learning_rate": 0.0006,
+ "loss": 3.718186378479004,
+ "step": 2480
+ },
+ {
+ "epoch": 34.46133682830931,
+ "grad_norm": 0.19133952260017395,
+ "learning_rate": 0.0006,
+ "loss": 3.697197437286377,
+ "step": 2481
+ },
+ {
+ "epoch": 34.47531673219746,
+ "grad_norm": 0.2219255417585373,
+ "learning_rate": 0.0006,
+ "loss": 3.684386730194092,
+ "step": 2482
+ },
+ {
+ "epoch": 34.489296636085626,
+ "grad_norm": 0.2480643391609192,
+ "learning_rate": 0.0006,
+ "loss": 3.6656622886657715,
+ "step": 2483
+ },
+ {
+ "epoch": 34.50327653997379,
+ "grad_norm": 0.22907346487045288,
+ "learning_rate": 0.0006,
+ "loss": 3.741391897201538,
+ "step": 2484
+ },
+ {
+ "epoch": 34.517256443861946,
+ "grad_norm": 0.20277173817157745,
+ "learning_rate": 0.0006,
+ "loss": 3.7062582969665527,
+ "step": 2485
+ },
+ {
+ "epoch": 34.53123634775011,
+ "grad_norm": 0.21411100029945374,
+ "learning_rate": 0.0006,
+ "loss": 3.691784381866455,
+ "step": 2486
+ },
+ {
+ "epoch": 34.54521625163827,
+ "grad_norm": 0.20261600613594055,
+ "learning_rate": 0.0006,
+ "loss": 3.6855502128601074,
+ "step": 2487
+ },
+ {
+ "epoch": 34.55919615552643,
+ "grad_norm": 0.23913109302520752,
+ "learning_rate": 0.0006,
+ "loss": 3.670754909515381,
+ "step": 2488
+ },
+ {
+ "epoch": 34.57317605941459,
+ "grad_norm": 0.24427077174186707,
+ "learning_rate": 0.0006,
+ "loss": 3.700611114501953,
+ "step": 2489
+ },
+ {
+ "epoch": 34.58715596330275,
+ "grad_norm": 0.20305761694908142,
+ "learning_rate": 0.0006,
+ "loss": 3.7284226417541504,
+ "step": 2490
+ },
+ {
+ "epoch": 34.60113586719091,
+ "grad_norm": 0.20398905873298645,
+ "learning_rate": 0.0006,
+ "loss": 3.6860880851745605,
+ "step": 2491
+ },
+ {
+ "epoch": 34.615115771079076,
+ "grad_norm": 0.21016651391983032,
+ "learning_rate": 0.0006,
+ "loss": 3.7366015911102295,
+ "step": 2492
+ },
+ {
+ "epoch": 34.62909567496723,
+ "grad_norm": 0.22279402613639832,
+ "learning_rate": 0.0006,
+ "loss": 3.7024295330047607,
+ "step": 2493
+ },
+ {
+ "epoch": 34.643075578855395,
+ "grad_norm": 0.25080347061157227,
+ "learning_rate": 0.0006,
+ "loss": 3.68355655670166,
+ "step": 2494
+ },
+ {
+ "epoch": 34.65705548274356,
+ "grad_norm": 0.2702971398830414,
+ "learning_rate": 0.0006,
+ "loss": 3.7400612831115723,
+ "step": 2495
+ },
+ {
+ "epoch": 34.671035386631715,
+ "grad_norm": 0.299398273229599,
+ "learning_rate": 0.0006,
+ "loss": 3.7160325050354004,
+ "step": 2496
+ },
+ {
+ "epoch": 34.68501529051988,
+ "grad_norm": 0.29151082038879395,
+ "learning_rate": 0.0006,
+ "loss": 3.7124147415161133,
+ "step": 2497
+ },
+ {
+ "epoch": 34.69899519440804,
+ "grad_norm": 0.23828288912773132,
+ "learning_rate": 0.0006,
+ "loss": 3.7181267738342285,
+ "step": 2498
+ },
+ {
+ "epoch": 34.7129750982962,
+ "grad_norm": 0.21776588261127472,
+ "learning_rate": 0.0006,
+ "loss": 3.6811792850494385,
+ "step": 2499
+ },
+ {
+ "epoch": 34.72695500218436,
+ "grad_norm": 0.2318469136953354,
+ "learning_rate": 0.0006,
+ "loss": 3.698467254638672,
+ "step": 2500
+ },
+ {
+ "epoch": 34.74093490607252,
+ "grad_norm": 0.22341546416282654,
+ "learning_rate": 0.0006,
+ "loss": 3.7406411170959473,
+ "step": 2501
+ },
+ {
+ "epoch": 34.75491480996068,
+ "grad_norm": 0.20676901936531067,
+ "learning_rate": 0.0006,
+ "loss": 3.6914243698120117,
+ "step": 2502
+ },
+ {
+ "epoch": 34.768894713848844,
+ "grad_norm": 0.20459024608135223,
+ "learning_rate": 0.0006,
+ "loss": 3.713369607925415,
+ "step": 2503
+ },
+ {
+ "epoch": 34.782874617737,
+ "grad_norm": 0.22369320690631866,
+ "learning_rate": 0.0006,
+ "loss": 3.697587490081787,
+ "step": 2504
+ },
+ {
+ "epoch": 34.796854521625164,
+ "grad_norm": 0.2393338829278946,
+ "learning_rate": 0.0006,
+ "loss": 3.7171854972839355,
+ "step": 2505
+ },
+ {
+ "epoch": 34.81083442551333,
+ "grad_norm": 0.23756961524486542,
+ "learning_rate": 0.0006,
+ "loss": 3.6969614028930664,
+ "step": 2506
+ },
+ {
+ "epoch": 34.824814329401484,
+ "grad_norm": 0.22761376202106476,
+ "learning_rate": 0.0006,
+ "loss": 3.722501754760742,
+ "step": 2507
+ },
+ {
+ "epoch": 34.83879423328965,
+ "grad_norm": 0.23564888536930084,
+ "learning_rate": 0.0006,
+ "loss": 3.714003086090088,
+ "step": 2508
+ },
+ {
+ "epoch": 34.8527741371778,
+ "grad_norm": 0.22197313606739044,
+ "learning_rate": 0.0006,
+ "loss": 3.7107110023498535,
+ "step": 2509
+ },
+ {
+ "epoch": 34.86675404106597,
+ "grad_norm": 0.20199328660964966,
+ "learning_rate": 0.0006,
+ "loss": 3.7167551517486572,
+ "step": 2510
+ },
+ {
+ "epoch": 34.88073394495413,
+ "grad_norm": 0.19569700956344604,
+ "learning_rate": 0.0006,
+ "loss": 3.679098129272461,
+ "step": 2511
+ },
+ {
+ "epoch": 34.89471384884229,
+ "grad_norm": 0.21320141851902008,
+ "learning_rate": 0.0006,
+ "loss": 3.733187675476074,
+ "step": 2512
+ },
+ {
+ "epoch": 34.90869375273045,
+ "grad_norm": 0.20074625313282013,
+ "learning_rate": 0.0006,
+ "loss": 3.713339328765869,
+ "step": 2513
+ },
+ {
+ "epoch": 34.92267365661861,
+ "grad_norm": 0.20249252021312714,
+ "learning_rate": 0.0006,
+ "loss": 3.680785655975342,
+ "step": 2514
+ },
+ {
+ "epoch": 34.93665356050677,
+ "grad_norm": 0.22165577113628387,
+ "learning_rate": 0.0006,
+ "loss": 3.696131706237793,
+ "step": 2515
+ },
+ {
+ "epoch": 34.95063346439493,
+ "grad_norm": 0.20769749581813812,
+ "learning_rate": 0.0006,
+ "loss": 3.6910316944122314,
+ "step": 2516
+ },
+ {
+ "epoch": 34.964613368283096,
+ "grad_norm": 0.20857223868370056,
+ "learning_rate": 0.0006,
+ "loss": 3.7327451705932617,
+ "step": 2517
+ },
+ {
+ "epoch": 34.97859327217125,
+ "grad_norm": 0.19155766069889069,
+ "learning_rate": 0.0006,
+ "loss": 3.705609083175659,
+ "step": 2518
+ },
+ {
+ "epoch": 34.992573176059416,
+ "grad_norm": 0.17890529334545135,
+ "learning_rate": 0.0006,
+ "loss": 3.6844797134399414,
+ "step": 2519
+ },
+ {
+ "epoch": 35.0,
+ "grad_norm": 0.2053528130054474,
+ "learning_rate": 0.0006,
+ "loss": 3.6942501068115234,
+ "step": 2520
+ },
+ {
+ "epoch": 35.0,
+ "eval_loss": 3.998469591140747,
+ "eval_runtime": 43.9147,
+ "eval_samples_per_second": 55.608,
+ "eval_steps_per_second": 3.484,
+ "step": 2520
+ },
+ {
+ "epoch": 35.01397990388816,
+ "grad_norm": 0.2288869470357895,
+ "learning_rate": 0.0006,
+ "loss": 3.6966426372528076,
+ "step": 2521
+ },
+ {
+ "epoch": 35.02795980777632,
+ "grad_norm": 0.25702035427093506,
+ "learning_rate": 0.0006,
+ "loss": 3.6622562408447266,
+ "step": 2522
+ },
+ {
+ "epoch": 35.04193971166448,
+ "grad_norm": 0.254422128200531,
+ "learning_rate": 0.0006,
+ "loss": 3.690046548843384,
+ "step": 2523
+ },
+ {
+ "epoch": 35.05591961555265,
+ "grad_norm": 0.24177077412605286,
+ "learning_rate": 0.0006,
+ "loss": 3.685335874557495,
+ "step": 2524
+ },
+ {
+ "epoch": 35.0698995194408,
+ "grad_norm": 0.23959586024284363,
+ "learning_rate": 0.0006,
+ "loss": 3.6534650325775146,
+ "step": 2525
+ },
+ {
+ "epoch": 35.083879423328966,
+ "grad_norm": 0.23474839329719543,
+ "learning_rate": 0.0006,
+ "loss": 3.7092814445495605,
+ "step": 2526
+ },
+ {
+ "epoch": 35.09785932721712,
+ "grad_norm": 0.23240867257118225,
+ "learning_rate": 0.0006,
+ "loss": 3.6819097995758057,
+ "step": 2527
+ },
+ {
+ "epoch": 35.111839231105286,
+ "grad_norm": 0.26267048716545105,
+ "learning_rate": 0.0006,
+ "loss": 3.6566696166992188,
+ "step": 2528
+ },
+ {
+ "epoch": 35.12581913499345,
+ "grad_norm": 0.27070754766464233,
+ "learning_rate": 0.0006,
+ "loss": 3.676304340362549,
+ "step": 2529
+ },
+ {
+ "epoch": 35.139799038881605,
+ "grad_norm": 0.25297826528549194,
+ "learning_rate": 0.0006,
+ "loss": 3.65259051322937,
+ "step": 2530
+ },
+ {
+ "epoch": 35.15377894276977,
+ "grad_norm": 0.22776272892951965,
+ "learning_rate": 0.0006,
+ "loss": 3.6813838481903076,
+ "step": 2531
+ },
+ {
+ "epoch": 35.16775884665793,
+ "grad_norm": 0.2288261204957962,
+ "learning_rate": 0.0006,
+ "loss": 3.6916379928588867,
+ "step": 2532
+ },
+ {
+ "epoch": 35.18173875054609,
+ "grad_norm": 0.20445892214775085,
+ "learning_rate": 0.0006,
+ "loss": 3.6550145149230957,
+ "step": 2533
+ },
+ {
+ "epoch": 35.19571865443425,
+ "grad_norm": 0.20298904180526733,
+ "learning_rate": 0.0006,
+ "loss": 3.704042434692383,
+ "step": 2534
+ },
+ {
+ "epoch": 35.20969855832241,
+ "grad_norm": 0.2264423668384552,
+ "learning_rate": 0.0006,
+ "loss": 3.646308183670044,
+ "step": 2535
+ },
+ {
+ "epoch": 35.22367846221057,
+ "grad_norm": 0.21537378430366516,
+ "learning_rate": 0.0006,
+ "loss": 3.686048984527588,
+ "step": 2536
+ },
+ {
+ "epoch": 35.237658366098735,
+ "grad_norm": 0.19820059835910797,
+ "learning_rate": 0.0006,
+ "loss": 3.6993050575256348,
+ "step": 2537
+ },
+ {
+ "epoch": 35.25163826998689,
+ "grad_norm": 0.19485290348529816,
+ "learning_rate": 0.0006,
+ "loss": 3.6507070064544678,
+ "step": 2538
+ },
+ {
+ "epoch": 35.265618173875055,
+ "grad_norm": 0.21234364807605743,
+ "learning_rate": 0.0006,
+ "loss": 3.6913719177246094,
+ "step": 2539
+ },
+ {
+ "epoch": 35.27959807776322,
+ "grad_norm": 0.19834300875663757,
+ "learning_rate": 0.0006,
+ "loss": 3.6793041229248047,
+ "step": 2540
+ },
+ {
+ "epoch": 35.293577981651374,
+ "grad_norm": 0.1969013512134552,
+ "learning_rate": 0.0006,
+ "loss": 3.7063517570495605,
+ "step": 2541
+ },
+ {
+ "epoch": 35.30755788553954,
+ "grad_norm": 0.196136936545372,
+ "learning_rate": 0.0006,
+ "loss": 3.679825782775879,
+ "step": 2542
+ },
+ {
+ "epoch": 35.3215377894277,
+ "grad_norm": 0.20465479791164398,
+ "learning_rate": 0.0006,
+ "loss": 3.698906421661377,
+ "step": 2543
+ },
+ {
+ "epoch": 35.33551769331586,
+ "grad_norm": 0.204293355345726,
+ "learning_rate": 0.0006,
+ "loss": 3.728549003601074,
+ "step": 2544
+ },
+ {
+ "epoch": 35.34949759720402,
+ "grad_norm": 0.18861903250217438,
+ "learning_rate": 0.0006,
+ "loss": 3.687018632888794,
+ "step": 2545
+ },
+ {
+ "epoch": 35.36347750109218,
+ "grad_norm": 0.19066226482391357,
+ "learning_rate": 0.0006,
+ "loss": 3.667919158935547,
+ "step": 2546
+ },
+ {
+ "epoch": 35.37745740498034,
+ "grad_norm": 0.19985736906528473,
+ "learning_rate": 0.0006,
+ "loss": 3.6697773933410645,
+ "step": 2547
+ },
+ {
+ "epoch": 35.391437308868504,
+ "grad_norm": 0.20669348537921906,
+ "learning_rate": 0.0006,
+ "loss": 3.6718077659606934,
+ "step": 2548
+ },
+ {
+ "epoch": 35.40541721275666,
+ "grad_norm": 0.22164477407932281,
+ "learning_rate": 0.0006,
+ "loss": 3.692106246948242,
+ "step": 2549
+ },
+ {
+ "epoch": 35.419397116644824,
+ "grad_norm": 0.20884688198566437,
+ "learning_rate": 0.0006,
+ "loss": 3.714324712753296,
+ "step": 2550
+ },
+ {
+ "epoch": 35.43337702053299,
+ "grad_norm": 0.21811005473136902,
+ "learning_rate": 0.0006,
+ "loss": 3.678694725036621,
+ "step": 2551
+ },
+ {
+ "epoch": 35.44735692442114,
+ "grad_norm": 0.2427632063627243,
+ "learning_rate": 0.0006,
+ "loss": 3.6584935188293457,
+ "step": 2552
+ },
+ {
+ "epoch": 35.46133682830931,
+ "grad_norm": 0.2584928572177887,
+ "learning_rate": 0.0006,
+ "loss": 3.694148063659668,
+ "step": 2553
+ },
+ {
+ "epoch": 35.47531673219746,
+ "grad_norm": 0.2594548761844635,
+ "learning_rate": 0.0006,
+ "loss": 3.690629005432129,
+ "step": 2554
+ },
+ {
+ "epoch": 35.489296636085626,
+ "grad_norm": 0.2521844208240509,
+ "learning_rate": 0.0006,
+ "loss": 3.6949915885925293,
+ "step": 2555
+ },
+ {
+ "epoch": 35.50327653997379,
+ "grad_norm": 0.2284533679485321,
+ "learning_rate": 0.0006,
+ "loss": 3.6822848320007324,
+ "step": 2556
+ },
+ {
+ "epoch": 35.517256443861946,
+ "grad_norm": 0.2350241094827652,
+ "learning_rate": 0.0006,
+ "loss": 3.6841659545898438,
+ "step": 2557
+ },
+ {
+ "epoch": 35.53123634775011,
+ "grad_norm": 0.22496885061264038,
+ "learning_rate": 0.0006,
+ "loss": 3.676447629928589,
+ "step": 2558
+ },
+ {
+ "epoch": 35.54521625163827,
+ "grad_norm": 0.24326276779174805,
+ "learning_rate": 0.0006,
+ "loss": 3.681678533554077,
+ "step": 2559
+ },
+ {
+ "epoch": 35.55919615552643,
+ "grad_norm": 0.26298362016677856,
+ "learning_rate": 0.0006,
+ "loss": 3.6877617835998535,
+ "step": 2560
+ },
+ {
+ "epoch": 35.57317605941459,
+ "grad_norm": 0.2507239282131195,
+ "learning_rate": 0.0006,
+ "loss": 3.7089176177978516,
+ "step": 2561
+ },
+ {
+ "epoch": 35.58715596330275,
+ "grad_norm": 0.2276458442211151,
+ "learning_rate": 0.0006,
+ "loss": 3.705570936203003,
+ "step": 2562
+ },
+ {
+ "epoch": 35.60113586719091,
+ "grad_norm": 0.23317085206508636,
+ "learning_rate": 0.0006,
+ "loss": 3.6772396564483643,
+ "step": 2563
+ },
+ {
+ "epoch": 35.615115771079076,
+ "grad_norm": 0.23301710188388824,
+ "learning_rate": 0.0006,
+ "loss": 3.694855213165283,
+ "step": 2564
+ },
+ {
+ "epoch": 35.62909567496723,
+ "grad_norm": 0.2170179933309555,
+ "learning_rate": 0.0006,
+ "loss": 3.7095537185668945,
+ "step": 2565
+ },
+ {
+ "epoch": 35.643075578855395,
+ "grad_norm": 0.21211965382099152,
+ "learning_rate": 0.0006,
+ "loss": 3.670109272003174,
+ "step": 2566
+ },
+ {
+ "epoch": 35.65705548274356,
+ "grad_norm": 0.21052585542201996,
+ "learning_rate": 0.0006,
+ "loss": 3.6576027870178223,
+ "step": 2567
+ },
+ {
+ "epoch": 35.671035386631715,
+ "grad_norm": 0.21556039154529572,
+ "learning_rate": 0.0006,
+ "loss": 3.6870639324188232,
+ "step": 2568
+ },
+ {
+ "epoch": 35.68501529051988,
+ "grad_norm": 0.2246469408273697,
+ "learning_rate": 0.0006,
+ "loss": 3.675652503967285,
+ "step": 2569
+ },
+ {
+ "epoch": 35.69899519440804,
+ "grad_norm": 0.21891754865646362,
+ "learning_rate": 0.0006,
+ "loss": 3.692298650741577,
+ "step": 2570
+ },
+ {
+ "epoch": 35.7129750982962,
+ "grad_norm": 0.18774104118347168,
+ "learning_rate": 0.0006,
+ "loss": 3.681035041809082,
+ "step": 2571
+ },
+ {
+ "epoch": 35.72695500218436,
+ "grad_norm": 0.19461573660373688,
+ "learning_rate": 0.0006,
+ "loss": 3.7007932662963867,
+ "step": 2572
+ },
+ {
+ "epoch": 35.74093490607252,
+ "grad_norm": 0.25579094886779785,
+ "learning_rate": 0.0006,
+ "loss": 3.724409580230713,
+ "step": 2573
+ },
+ {
+ "epoch": 35.75491480996068,
+ "grad_norm": 0.27635645866394043,
+ "learning_rate": 0.0006,
+ "loss": 3.68107271194458,
+ "step": 2574
+ },
+ {
+ "epoch": 35.768894713848844,
+ "grad_norm": 0.2233380675315857,
+ "learning_rate": 0.0006,
+ "loss": 3.7123913764953613,
+ "step": 2575
+ },
+ {
+ "epoch": 35.782874617737,
+ "grad_norm": 0.19383835792541504,
+ "learning_rate": 0.0006,
+ "loss": 3.6948328018188477,
+ "step": 2576
+ },
+ {
+ "epoch": 35.796854521625164,
+ "grad_norm": 0.18138426542282104,
+ "learning_rate": 0.0006,
+ "loss": 3.6837103366851807,
+ "step": 2577
+ },
+ {
+ "epoch": 35.81083442551333,
+ "grad_norm": 0.18680135905742645,
+ "learning_rate": 0.0006,
+ "loss": 3.7106502056121826,
+ "step": 2578
+ },
+ {
+ "epoch": 35.824814329401484,
+ "grad_norm": 0.19226312637329102,
+ "learning_rate": 0.0006,
+ "loss": 3.69488787651062,
+ "step": 2579
+ },
+ {
+ "epoch": 35.83879423328965,
+ "grad_norm": 0.19224657118320465,
+ "learning_rate": 0.0006,
+ "loss": 3.7103662490844727,
+ "step": 2580
+ },
+ {
+ "epoch": 35.8527741371778,
+ "grad_norm": 0.18991880118846893,
+ "learning_rate": 0.0006,
+ "loss": 3.7154245376586914,
+ "step": 2581
+ },
+ {
+ "epoch": 35.86675404106597,
+ "grad_norm": 0.2036849409341812,
+ "learning_rate": 0.0006,
+ "loss": 3.723738193511963,
+ "step": 2582
+ },
+ {
+ "epoch": 35.88073394495413,
+ "grad_norm": 0.24730375409126282,
+ "learning_rate": 0.0006,
+ "loss": 3.6830549240112305,
+ "step": 2583
+ },
+ {
+ "epoch": 35.89471384884229,
+ "grad_norm": 0.26552343368530273,
+ "learning_rate": 0.0006,
+ "loss": 3.7025017738342285,
+ "step": 2584
+ },
+ {
+ "epoch": 35.90869375273045,
+ "grad_norm": 0.2621893286705017,
+ "learning_rate": 0.0006,
+ "loss": 3.697399854660034,
+ "step": 2585
+ },
+ {
+ "epoch": 35.92267365661861,
+ "grad_norm": 0.2320089191198349,
+ "learning_rate": 0.0006,
+ "loss": 3.722207546234131,
+ "step": 2586
+ },
+ {
+ "epoch": 35.93665356050677,
+ "grad_norm": 0.1848745346069336,
+ "learning_rate": 0.0006,
+ "loss": 3.711249351501465,
+ "step": 2587
+ },
+ {
+ "epoch": 35.95063346439493,
+ "grad_norm": 0.24218113720417023,
+ "learning_rate": 0.0006,
+ "loss": 3.698894500732422,
+ "step": 2588
+ },
+ {
+ "epoch": 35.964613368283096,
+ "grad_norm": 0.29338452219963074,
+ "learning_rate": 0.0006,
+ "loss": 3.7470521926879883,
+ "step": 2589
+ },
+ {
+ "epoch": 35.97859327217125,
+ "grad_norm": 0.2804136276245117,
+ "learning_rate": 0.0006,
+ "loss": 3.750649929046631,
+ "step": 2590
+ },
+ {
+ "epoch": 35.992573176059416,
+ "grad_norm": 0.26404470205307007,
+ "learning_rate": 0.0006,
+ "loss": 3.6995797157287598,
+ "step": 2591
+ },
+ {
+ "epoch": 36.0,
+ "grad_norm": 0.27446141839027405,
+ "learning_rate": 0.0006,
+ "loss": 3.715768814086914,
+ "step": 2592
+ },
+ {
+ "epoch": 36.0,
+ "eval_loss": 4.007599830627441,
+ "eval_runtime": 44.0149,
+ "eval_samples_per_second": 55.481,
+ "eval_steps_per_second": 3.476,
+ "step": 2592
+ },
+ {
+ "epoch": 36.01397990388816,
+ "grad_norm": 0.2365594208240509,
+ "learning_rate": 0.0006,
+ "loss": 3.6529457569122314,
+ "step": 2593
+ },
+ {
+ "epoch": 36.02795980777632,
+ "grad_norm": 0.24824099242687225,
+ "learning_rate": 0.0006,
+ "loss": 3.6703386306762695,
+ "step": 2594
+ },
+ {
+ "epoch": 36.04193971166448,
+ "grad_norm": 0.26802200078964233,
+ "learning_rate": 0.0006,
+ "loss": 3.688307762145996,
+ "step": 2595
+ },
+ {
+ "epoch": 36.05591961555265,
+ "grad_norm": 0.2552911341190338,
+ "learning_rate": 0.0006,
+ "loss": 3.681797981262207,
+ "step": 2596
+ },
+ {
+ "epoch": 36.0698995194408,
+ "grad_norm": 0.254991739988327,
+ "learning_rate": 0.0006,
+ "loss": 3.644087791442871,
+ "step": 2597
+ },
+ {
+ "epoch": 36.083879423328966,
+ "grad_norm": 0.2496735155582428,
+ "learning_rate": 0.0006,
+ "loss": 3.644047737121582,
+ "step": 2598
+ },
+ {
+ "epoch": 36.09785932721712,
+ "grad_norm": 0.23637443780899048,
+ "learning_rate": 0.0006,
+ "loss": 3.684454917907715,
+ "step": 2599
+ },
+ {
+ "epoch": 36.111839231105286,
+ "grad_norm": 0.22065003216266632,
+ "learning_rate": 0.0006,
+ "loss": 3.661752700805664,
+ "step": 2600
+ },
+ {
+ "epoch": 36.12581913499345,
+ "grad_norm": 0.2292395532131195,
+ "learning_rate": 0.0006,
+ "loss": 3.6709558963775635,
+ "step": 2601
+ },
+ {
+ "epoch": 36.139799038881605,
+ "grad_norm": 0.22295089066028595,
+ "learning_rate": 0.0006,
+ "loss": 3.642230987548828,
+ "step": 2602
+ },
+ {
+ "epoch": 36.15377894276977,
+ "grad_norm": 0.2220531553030014,
+ "learning_rate": 0.0006,
+ "loss": 3.653268814086914,
+ "step": 2603
+ },
+ {
+ "epoch": 36.16775884665793,
+ "grad_norm": 0.21605174243450165,
+ "learning_rate": 0.0006,
+ "loss": 3.6791329383850098,
+ "step": 2604
+ },
+ {
+ "epoch": 36.18173875054609,
+ "grad_norm": 0.20932699739933014,
+ "learning_rate": 0.0006,
+ "loss": 3.6496856212615967,
+ "step": 2605
+ },
+ {
+ "epoch": 36.19571865443425,
+ "grad_norm": 0.20941385626792908,
+ "learning_rate": 0.0006,
+ "loss": 3.6445729732513428,
+ "step": 2606
+ },
+ {
+ "epoch": 36.20969855832241,
+ "grad_norm": 0.1987197995185852,
+ "learning_rate": 0.0006,
+ "loss": 3.6481809616088867,
+ "step": 2607
+ },
+ {
+ "epoch": 36.22367846221057,
+ "grad_norm": 0.19054439663887024,
+ "learning_rate": 0.0006,
+ "loss": 3.66894268989563,
+ "step": 2608
+ },
+ {
+ "epoch": 36.237658366098735,
+ "grad_norm": 0.19940806925296783,
+ "learning_rate": 0.0006,
+ "loss": 3.7123427391052246,
+ "step": 2609
+ },
+ {
+ "epoch": 36.25163826998689,
+ "grad_norm": 0.22157685458660126,
+ "learning_rate": 0.0006,
+ "loss": 3.6707541942596436,
+ "step": 2610
+ },
+ {
+ "epoch": 36.265618173875055,
+ "grad_norm": 0.2362316995859146,
+ "learning_rate": 0.0006,
+ "loss": 3.6906795501708984,
+ "step": 2611
+ },
+ {
+ "epoch": 36.27959807776322,
+ "grad_norm": 0.24560341238975525,
+ "learning_rate": 0.0006,
+ "loss": 3.668379783630371,
+ "step": 2612
+ },
+ {
+ "epoch": 36.293577981651374,
+ "grad_norm": 0.22814054787158966,
+ "learning_rate": 0.0006,
+ "loss": 3.665527820587158,
+ "step": 2613
+ },
+ {
+ "epoch": 36.30755788553954,
+ "grad_norm": 0.2156696617603302,
+ "learning_rate": 0.0006,
+ "loss": 3.673835277557373,
+ "step": 2614
+ },
+ {
+ "epoch": 36.3215377894277,
+ "grad_norm": 0.20152772963047028,
+ "learning_rate": 0.0006,
+ "loss": 3.6512670516967773,
+ "step": 2615
+ },
+ {
+ "epoch": 36.33551769331586,
+ "grad_norm": 0.22466860711574554,
+ "learning_rate": 0.0006,
+ "loss": 3.6877706050872803,
+ "step": 2616
+ },
+ {
+ "epoch": 36.34949759720402,
+ "grad_norm": 0.21688112616539001,
+ "learning_rate": 0.0006,
+ "loss": 3.6895859241485596,
+ "step": 2617
+ },
+ {
+ "epoch": 36.36347750109218,
+ "grad_norm": 0.19836577773094177,
+ "learning_rate": 0.0006,
+ "loss": 3.6658992767333984,
+ "step": 2618
+ },
+ {
+ "epoch": 36.37745740498034,
+ "grad_norm": 0.1995069831609726,
+ "learning_rate": 0.0006,
+ "loss": 3.677614450454712,
+ "step": 2619
+ },
+ {
+ "epoch": 36.391437308868504,
+ "grad_norm": 0.21234792470932007,
+ "learning_rate": 0.0006,
+ "loss": 3.6971967220306396,
+ "step": 2620
+ },
+ {
+ "epoch": 36.40541721275666,
+ "grad_norm": 0.20898285508155823,
+ "learning_rate": 0.0006,
+ "loss": 3.6936516761779785,
+ "step": 2621
+ },
+ {
+ "epoch": 36.419397116644824,
+ "grad_norm": 0.2115008533000946,
+ "learning_rate": 0.0006,
+ "loss": 3.6674065589904785,
+ "step": 2622
+ },
+ {
+ "epoch": 36.43337702053299,
+ "grad_norm": 0.2041143774986267,
+ "learning_rate": 0.0006,
+ "loss": 3.6455483436584473,
+ "step": 2623
+ },
+ {
+ "epoch": 36.44735692442114,
+ "grad_norm": 0.1966932713985443,
+ "learning_rate": 0.0006,
+ "loss": 3.6938109397888184,
+ "step": 2624
+ },
+ {
+ "epoch": 36.46133682830931,
+ "grad_norm": 0.20062223076820374,
+ "learning_rate": 0.0006,
+ "loss": 3.6775765419006348,
+ "step": 2625
+ },
+ {
+ "epoch": 36.47531673219746,
+ "grad_norm": 0.20610390603542328,
+ "learning_rate": 0.0006,
+ "loss": 3.6835384368896484,
+ "step": 2626
+ },
+ {
+ "epoch": 36.489296636085626,
+ "grad_norm": 0.20481473207473755,
+ "learning_rate": 0.0006,
+ "loss": 3.6794047355651855,
+ "step": 2627
+ },
+ {
+ "epoch": 36.50327653997379,
+ "grad_norm": 0.18964581191539764,
+ "learning_rate": 0.0006,
+ "loss": 3.7035841941833496,
+ "step": 2628
+ },
+ {
+ "epoch": 36.517256443861946,
+ "grad_norm": 0.2029343545436859,
+ "learning_rate": 0.0006,
+ "loss": 3.6667590141296387,
+ "step": 2629
+ },
+ {
+ "epoch": 36.53123634775011,
+ "grad_norm": 0.23656968772411346,
+ "learning_rate": 0.0006,
+ "loss": 3.6974546909332275,
+ "step": 2630
+ },
+ {
+ "epoch": 36.54521625163827,
+ "grad_norm": 0.23401431739330292,
+ "learning_rate": 0.0006,
+ "loss": 3.668936252593994,
+ "step": 2631
+ },
+ {
+ "epoch": 36.55919615552643,
+ "grad_norm": 0.22258102893829346,
+ "learning_rate": 0.0006,
+ "loss": 3.667977809906006,
+ "step": 2632
+ },
+ {
+ "epoch": 36.57317605941459,
+ "grad_norm": 0.20849554240703583,
+ "learning_rate": 0.0006,
+ "loss": 3.6674845218658447,
+ "step": 2633
+ },
+ {
+ "epoch": 36.58715596330275,
+ "grad_norm": 0.20684309303760529,
+ "learning_rate": 0.0006,
+ "loss": 3.6828644275665283,
+ "step": 2634
+ },
+ {
+ "epoch": 36.60113586719091,
+ "grad_norm": 0.19114233553409576,
+ "learning_rate": 0.0006,
+ "loss": 3.7084832191467285,
+ "step": 2635
+ },
+ {
+ "epoch": 36.615115771079076,
+ "grad_norm": 0.20382429659366608,
+ "learning_rate": 0.0006,
+ "loss": 3.68354868888855,
+ "step": 2636
+ },
+ {
+ "epoch": 36.62909567496723,
+ "grad_norm": 0.22526590526103973,
+ "learning_rate": 0.0006,
+ "loss": 3.684112310409546,
+ "step": 2637
+ },
+ {
+ "epoch": 36.643075578855395,
+ "grad_norm": 0.20735391974449158,
+ "learning_rate": 0.0006,
+ "loss": 3.67702054977417,
+ "step": 2638
+ },
+ {
+ "epoch": 36.65705548274356,
+ "grad_norm": 0.18549653887748718,
+ "learning_rate": 0.0006,
+ "loss": 3.6840810775756836,
+ "step": 2639
+ },
+ {
+ "epoch": 36.671035386631715,
+ "grad_norm": 0.1805262714624405,
+ "learning_rate": 0.0006,
+ "loss": 3.688119411468506,
+ "step": 2640
+ },
+ {
+ "epoch": 36.68501529051988,
+ "grad_norm": 0.17545704543590546,
+ "learning_rate": 0.0006,
+ "loss": 3.6477861404418945,
+ "step": 2641
+ },
+ {
+ "epoch": 36.69899519440804,
+ "grad_norm": 0.1772221326828003,
+ "learning_rate": 0.0006,
+ "loss": 3.6935806274414062,
+ "step": 2642
+ },
+ {
+ "epoch": 36.7129750982962,
+ "grad_norm": 0.18701671063899994,
+ "learning_rate": 0.0006,
+ "loss": 3.6820428371429443,
+ "step": 2643
+ },
+ {
+ "epoch": 36.72695500218436,
+ "grad_norm": 0.2057863473892212,
+ "learning_rate": 0.0006,
+ "loss": 3.669762134552002,
+ "step": 2644
+ },
+ {
+ "epoch": 36.74093490607252,
+ "grad_norm": 0.2565848231315613,
+ "learning_rate": 0.0006,
+ "loss": 3.717599391937256,
+ "step": 2645
+ },
+ {
+ "epoch": 36.75491480996068,
+ "grad_norm": 0.24362123012542725,
+ "learning_rate": 0.0006,
+ "loss": 3.671900987625122,
+ "step": 2646
+ },
+ {
+ "epoch": 36.768894713848844,
+ "grad_norm": 0.19606009125709534,
+ "learning_rate": 0.0006,
+ "loss": 3.6782546043395996,
+ "step": 2647
+ },
+ {
+ "epoch": 36.782874617737,
+ "grad_norm": 0.1948748379945755,
+ "learning_rate": 0.0006,
+ "loss": 3.6823501586914062,
+ "step": 2648
+ },
+ {
+ "epoch": 36.796854521625164,
+ "grad_norm": 0.22289852797985077,
+ "learning_rate": 0.0006,
+ "loss": 3.693469762802124,
+ "step": 2649
+ },
+ {
+ "epoch": 36.81083442551333,
+ "grad_norm": 0.24751701951026917,
+ "learning_rate": 0.0006,
+ "loss": 3.700678825378418,
+ "step": 2650
+ },
+ {
+ "epoch": 36.824814329401484,
+ "grad_norm": 0.28663966059684753,
+ "learning_rate": 0.0006,
+ "loss": 3.6960878372192383,
+ "step": 2651
+ },
+ {
+ "epoch": 36.83879423328965,
+ "grad_norm": 0.3288552165031433,
+ "learning_rate": 0.0006,
+ "loss": 3.7255043983459473,
+ "step": 2652
+ },
+ {
+ "epoch": 36.8527741371778,
+ "grad_norm": 0.3555443286895752,
+ "learning_rate": 0.0006,
+ "loss": 3.725308418273926,
+ "step": 2653
+ },
+ {
+ "epoch": 36.86675404106597,
+ "grad_norm": 0.3204147219657898,
+ "learning_rate": 0.0006,
+ "loss": 3.7137985229492188,
+ "step": 2654
+ },
+ {
+ "epoch": 36.88073394495413,
+ "grad_norm": 0.2944706976413727,
+ "learning_rate": 0.0006,
+ "loss": 3.7032840251922607,
+ "step": 2655
+ },
+ {
+ "epoch": 36.89471384884229,
+ "grad_norm": 0.2845679223537445,
+ "learning_rate": 0.0006,
+ "loss": 3.6840004920959473,
+ "step": 2656
+ },
+ {
+ "epoch": 36.90869375273045,
+ "grad_norm": 0.2815704047679901,
+ "learning_rate": 0.0006,
+ "loss": 3.6958417892456055,
+ "step": 2657
+ },
+ {
+ "epoch": 36.92267365661861,
+ "grad_norm": 0.2733481228351593,
+ "learning_rate": 0.0006,
+ "loss": 3.677690029144287,
+ "step": 2658
+ },
+ {
+ "epoch": 36.93665356050677,
+ "grad_norm": 0.29572054743766785,
+ "learning_rate": 0.0006,
+ "loss": 3.6983718872070312,
+ "step": 2659
+ },
+ {
+ "epoch": 36.95063346439493,
+ "grad_norm": 0.2487923800945282,
+ "learning_rate": 0.0006,
+ "loss": 3.7041163444519043,
+ "step": 2660
+ },
+ {
+ "epoch": 36.964613368283096,
+ "grad_norm": 0.2541966438293457,
+ "learning_rate": 0.0006,
+ "loss": 3.7038979530334473,
+ "step": 2661
+ },
+ {
+ "epoch": 36.97859327217125,
+ "grad_norm": 0.2441335767507553,
+ "learning_rate": 0.0006,
+ "loss": 3.717966079711914,
+ "step": 2662
+ },
+ {
+ "epoch": 36.992573176059416,
+ "grad_norm": 0.2304554283618927,
+ "learning_rate": 0.0006,
+ "loss": 3.671098232269287,
+ "step": 2663
+ },
+ {
+ "epoch": 37.0,
+ "grad_norm": 0.2346591204404831,
+ "learning_rate": 0.0006,
+ "loss": 3.680298089981079,
+ "step": 2664
+ },
+ {
+ "epoch": 37.0,
+ "eval_loss": 3.9944777488708496,
+ "eval_runtime": 43.9862,
+ "eval_samples_per_second": 55.517,
+ "eval_steps_per_second": 3.478,
+ "step": 2664
+ },
+ {
+ "epoch": 37.01397990388816,
+ "grad_norm": 0.22970618307590485,
+ "learning_rate": 0.0006,
+ "loss": 3.6835923194885254,
+ "step": 2665
+ },
+ {
+ "epoch": 37.02795980777632,
+ "grad_norm": 0.25463759899139404,
+ "learning_rate": 0.0006,
+ "loss": 3.658339023590088,
+ "step": 2666
+ },
+ {
+ "epoch": 37.04193971166448,
+ "grad_norm": 0.2520577311515808,
+ "learning_rate": 0.0006,
+ "loss": 3.6275506019592285,
+ "step": 2667
+ },
+ {
+ "epoch": 37.05591961555265,
+ "grad_norm": 0.22698813676834106,
+ "learning_rate": 0.0006,
+ "loss": 3.65043568611145,
+ "step": 2668
+ },
+ {
+ "epoch": 37.0698995194408,
+ "grad_norm": 0.21133972704410553,
+ "learning_rate": 0.0006,
+ "loss": 3.6262078285217285,
+ "step": 2669
+ },
+ {
+ "epoch": 37.083879423328966,
+ "grad_norm": 0.21940460801124573,
+ "learning_rate": 0.0006,
+ "loss": 3.6709489822387695,
+ "step": 2670
+ },
+ {
+ "epoch": 37.09785932721712,
+ "grad_norm": 0.21897517144680023,
+ "learning_rate": 0.0006,
+ "loss": 3.6621508598327637,
+ "step": 2671
+ },
+ {
+ "epoch": 37.111839231105286,
+ "grad_norm": 0.2270219624042511,
+ "learning_rate": 0.0006,
+ "loss": 3.6334924697875977,
+ "step": 2672
+ },
+ {
+ "epoch": 37.12581913499345,
+ "grad_norm": 0.22082042694091797,
+ "learning_rate": 0.0006,
+ "loss": 3.662209987640381,
+ "step": 2673
+ },
+ {
+ "epoch": 37.139799038881605,
+ "grad_norm": 0.19931960105895996,
+ "learning_rate": 0.0006,
+ "loss": 3.6655359268188477,
+ "step": 2674
+ },
+ {
+ "epoch": 37.15377894276977,
+ "grad_norm": 0.21451307833194733,
+ "learning_rate": 0.0006,
+ "loss": 3.656287670135498,
+ "step": 2675
+ },
+ {
+ "epoch": 37.16775884665793,
+ "grad_norm": 0.2131514698266983,
+ "learning_rate": 0.0006,
+ "loss": 3.635054111480713,
+ "step": 2676
+ },
+ {
+ "epoch": 37.18173875054609,
+ "grad_norm": 0.20425808429718018,
+ "learning_rate": 0.0006,
+ "loss": 3.67653226852417,
+ "step": 2677
+ },
+ {
+ "epoch": 37.19571865443425,
+ "grad_norm": 0.19423379004001617,
+ "learning_rate": 0.0006,
+ "loss": 3.6827316284179688,
+ "step": 2678
+ },
+ {
+ "epoch": 37.20969855832241,
+ "grad_norm": 0.1954883486032486,
+ "learning_rate": 0.0006,
+ "loss": 3.658092498779297,
+ "step": 2679
+ },
+ {
+ "epoch": 37.22367846221057,
+ "grad_norm": 0.21153928339481354,
+ "learning_rate": 0.0006,
+ "loss": 3.6675186157226562,
+ "step": 2680
+ },
+ {
+ "epoch": 37.237658366098735,
+ "grad_norm": 0.2032976895570755,
+ "learning_rate": 0.0006,
+ "loss": 3.6725759506225586,
+ "step": 2681
+ },
+ {
+ "epoch": 37.25163826998689,
+ "grad_norm": 0.19839346408843994,
+ "learning_rate": 0.0006,
+ "loss": 3.660851240158081,
+ "step": 2682
+ },
+ {
+ "epoch": 37.265618173875055,
+ "grad_norm": 0.1884699910879135,
+ "learning_rate": 0.0006,
+ "loss": 3.6653623580932617,
+ "step": 2683
+ },
+ {
+ "epoch": 37.27959807776322,
+ "grad_norm": 0.19558705389499664,
+ "learning_rate": 0.0006,
+ "loss": 3.648016929626465,
+ "step": 2684
+ },
+ {
+ "epoch": 37.293577981651374,
+ "grad_norm": 0.19453682005405426,
+ "learning_rate": 0.0006,
+ "loss": 3.6804773807525635,
+ "step": 2685
+ },
+ {
+ "epoch": 37.30755788553954,
+ "grad_norm": 0.1901177167892456,
+ "learning_rate": 0.0006,
+ "loss": 3.6533353328704834,
+ "step": 2686
+ },
+ {
+ "epoch": 37.3215377894277,
+ "grad_norm": 0.19425596296787262,
+ "learning_rate": 0.0006,
+ "loss": 3.665745735168457,
+ "step": 2687
+ },
+ {
+ "epoch": 37.33551769331586,
+ "grad_norm": 0.17583411931991577,
+ "learning_rate": 0.0006,
+ "loss": 3.679112434387207,
+ "step": 2688
+ },
+ {
+ "epoch": 37.34949759720402,
+ "grad_norm": 0.19667863845825195,
+ "learning_rate": 0.0006,
+ "loss": 3.6650352478027344,
+ "step": 2689
+ },
+ {
+ "epoch": 37.36347750109218,
+ "grad_norm": 0.22803270816802979,
+ "learning_rate": 0.0006,
+ "loss": 3.6658573150634766,
+ "step": 2690
+ },
+ {
+ "epoch": 37.37745740498034,
+ "grad_norm": 0.20589298009872437,
+ "learning_rate": 0.0006,
+ "loss": 3.6587300300598145,
+ "step": 2691
+ },
+ {
+ "epoch": 37.391437308868504,
+ "grad_norm": 0.1946951299905777,
+ "learning_rate": 0.0006,
+ "loss": 3.6515092849731445,
+ "step": 2692
+ },
+ {
+ "epoch": 37.40541721275666,
+ "grad_norm": 0.19029614329338074,
+ "learning_rate": 0.0006,
+ "loss": 3.6383113861083984,
+ "step": 2693
+ },
+ {
+ "epoch": 37.419397116644824,
+ "grad_norm": 0.1944548338651657,
+ "learning_rate": 0.0006,
+ "loss": 3.7017135620117188,
+ "step": 2694
+ },
+ {
+ "epoch": 37.43337702053299,
+ "grad_norm": 0.19482386112213135,
+ "learning_rate": 0.0006,
+ "loss": 3.6791775226593018,
+ "step": 2695
+ },
+ {
+ "epoch": 37.44735692442114,
+ "grad_norm": 0.23276680707931519,
+ "learning_rate": 0.0006,
+ "loss": 3.672245979309082,
+ "step": 2696
+ },
+ {
+ "epoch": 37.46133682830931,
+ "grad_norm": 0.22267542779445648,
+ "learning_rate": 0.0006,
+ "loss": 3.683380365371704,
+ "step": 2697
+ },
+ {
+ "epoch": 37.47531673219746,
+ "grad_norm": 0.1942203938961029,
+ "learning_rate": 0.0006,
+ "loss": 3.6760759353637695,
+ "step": 2698
+ },
+ {
+ "epoch": 37.489296636085626,
+ "grad_norm": 0.21212540566921234,
+ "learning_rate": 0.0006,
+ "loss": 3.660719633102417,
+ "step": 2699
+ },
+ {
+ "epoch": 37.50327653997379,
+ "grad_norm": 0.2365427315235138,
+ "learning_rate": 0.0006,
+ "loss": 3.6727194786071777,
+ "step": 2700
+ },
+ {
+ "epoch": 37.517256443861946,
+ "grad_norm": 0.2379675805568695,
+ "learning_rate": 0.0006,
+ "loss": 3.6691598892211914,
+ "step": 2701
+ },
+ {
+ "epoch": 37.53123634775011,
+ "grad_norm": 0.22142401337623596,
+ "learning_rate": 0.0006,
+ "loss": 3.6882128715515137,
+ "step": 2702
+ },
+ {
+ "epoch": 37.54521625163827,
+ "grad_norm": 0.19993607699871063,
+ "learning_rate": 0.0006,
+ "loss": 3.6651787757873535,
+ "step": 2703
+ },
+ {
+ "epoch": 37.55919615552643,
+ "grad_norm": 0.19934895634651184,
+ "learning_rate": 0.0006,
+ "loss": 3.6680638790130615,
+ "step": 2704
+ },
+ {
+ "epoch": 37.57317605941459,
+ "grad_norm": 0.21202369034290314,
+ "learning_rate": 0.0006,
+ "loss": 3.697615623474121,
+ "step": 2705
+ },
+ {
+ "epoch": 37.58715596330275,
+ "grad_norm": 0.1994577795267105,
+ "learning_rate": 0.0006,
+ "loss": 3.688243865966797,
+ "step": 2706
+ },
+ {
+ "epoch": 37.60113586719091,
+ "grad_norm": 0.20365118980407715,
+ "learning_rate": 0.0006,
+ "loss": 3.6615519523620605,
+ "step": 2707
+ },
+ {
+ "epoch": 37.615115771079076,
+ "grad_norm": 0.22466035187244415,
+ "learning_rate": 0.0006,
+ "loss": 3.703111171722412,
+ "step": 2708
+ },
+ {
+ "epoch": 37.62909567496723,
+ "grad_norm": 0.21140407025814056,
+ "learning_rate": 0.0006,
+ "loss": 3.6744728088378906,
+ "step": 2709
+ },
+ {
+ "epoch": 37.643075578855395,
+ "grad_norm": 0.22220195829868317,
+ "learning_rate": 0.0006,
+ "loss": 3.671501874923706,
+ "step": 2710
+ },
+ {
+ "epoch": 37.65705548274356,
+ "grad_norm": 0.23279480636119843,
+ "learning_rate": 0.0006,
+ "loss": 3.6962859630584717,
+ "step": 2711
+ },
+ {
+ "epoch": 37.671035386631715,
+ "grad_norm": 0.23284408450126648,
+ "learning_rate": 0.0006,
+ "loss": 3.670231342315674,
+ "step": 2712
+ },
+ {
+ "epoch": 37.68501529051988,
+ "grad_norm": 0.21935738623142242,
+ "learning_rate": 0.0006,
+ "loss": 3.6908650398254395,
+ "step": 2713
+ },
+ {
+ "epoch": 37.69899519440804,
+ "grad_norm": 0.2072262167930603,
+ "learning_rate": 0.0006,
+ "loss": 3.7204506397247314,
+ "step": 2714
+ },
+ {
+ "epoch": 37.7129750982962,
+ "grad_norm": 0.22547709941864014,
+ "learning_rate": 0.0006,
+ "loss": 3.6740894317626953,
+ "step": 2715
+ },
+ {
+ "epoch": 37.72695500218436,
+ "grad_norm": 0.2460414469242096,
+ "learning_rate": 0.0006,
+ "loss": 3.6938390731811523,
+ "step": 2716
+ },
+ {
+ "epoch": 37.74093490607252,
+ "grad_norm": 0.24756456911563873,
+ "learning_rate": 0.0006,
+ "loss": 3.692173480987549,
+ "step": 2717
+ },
+ {
+ "epoch": 37.75491480996068,
+ "grad_norm": 0.20149244368076324,
+ "learning_rate": 0.0006,
+ "loss": 3.6677675247192383,
+ "step": 2718
+ },
+ {
+ "epoch": 37.768894713848844,
+ "grad_norm": 0.19834814965724945,
+ "learning_rate": 0.0006,
+ "loss": 3.6717336177825928,
+ "step": 2719
+ },
+ {
+ "epoch": 37.782874617737,
+ "grad_norm": 0.22929978370666504,
+ "learning_rate": 0.0006,
+ "loss": 3.6818275451660156,
+ "step": 2720
+ },
+ {
+ "epoch": 37.796854521625164,
+ "grad_norm": 0.23674434423446655,
+ "learning_rate": 0.0006,
+ "loss": 3.689767360687256,
+ "step": 2721
+ },
+ {
+ "epoch": 37.81083442551333,
+ "grad_norm": 0.22798952460289001,
+ "learning_rate": 0.0006,
+ "loss": 3.6928915977478027,
+ "step": 2722
+ },
+ {
+ "epoch": 37.824814329401484,
+ "grad_norm": 0.2270302027463913,
+ "learning_rate": 0.0006,
+ "loss": 3.6884233951568604,
+ "step": 2723
+ },
+ {
+ "epoch": 37.83879423328965,
+ "grad_norm": 0.23563820123672485,
+ "learning_rate": 0.0006,
+ "loss": 3.6962456703186035,
+ "step": 2724
+ },
+ {
+ "epoch": 37.8527741371778,
+ "grad_norm": 0.2240045815706253,
+ "learning_rate": 0.0006,
+ "loss": 3.6985082626342773,
+ "step": 2725
+ },
+ {
+ "epoch": 37.86675404106597,
+ "grad_norm": 0.21541155874729156,
+ "learning_rate": 0.0006,
+ "loss": 3.6960105895996094,
+ "step": 2726
+ },
+ {
+ "epoch": 37.88073394495413,
+ "grad_norm": 0.23257222771644592,
+ "learning_rate": 0.0006,
+ "loss": 3.667404890060425,
+ "step": 2727
+ },
+ {
+ "epoch": 37.89471384884229,
+ "grad_norm": 0.226792573928833,
+ "learning_rate": 0.0006,
+ "loss": 3.6549744606018066,
+ "step": 2728
+ },
+ {
+ "epoch": 37.90869375273045,
+ "grad_norm": 0.18993401527404785,
+ "learning_rate": 0.0006,
+ "loss": 3.6772334575653076,
+ "step": 2729
+ },
+ {
+ "epoch": 37.92267365661861,
+ "grad_norm": 0.20936095714569092,
+ "learning_rate": 0.0006,
+ "loss": 3.671116352081299,
+ "step": 2730
+ },
+ {
+ "epoch": 37.93665356050677,
+ "grad_norm": 0.2203974425792694,
+ "learning_rate": 0.0006,
+ "loss": 3.6549739837646484,
+ "step": 2731
+ },
+ {
+ "epoch": 37.95063346439493,
+ "grad_norm": 0.19504620134830475,
+ "learning_rate": 0.0006,
+ "loss": 3.6755447387695312,
+ "step": 2732
+ },
+ {
+ "epoch": 37.964613368283096,
+ "grad_norm": 0.2025984674692154,
+ "learning_rate": 0.0006,
+ "loss": 3.678955554962158,
+ "step": 2733
+ },
+ {
+ "epoch": 37.97859327217125,
+ "grad_norm": 0.21556107699871063,
+ "learning_rate": 0.0006,
+ "loss": 3.6680502891540527,
+ "step": 2734
+ },
+ {
+ "epoch": 37.992573176059416,
+ "grad_norm": 0.21011291444301605,
+ "learning_rate": 0.0006,
+ "loss": 3.672039031982422,
+ "step": 2735
+ },
+ {
+ "epoch": 38.0,
+ "grad_norm": 0.23710957169532776,
+ "learning_rate": 0.0006,
+ "loss": 3.6326794624328613,
+ "step": 2736
+ },
+ {
+ "epoch": 38.0,
+ "eval_loss": 3.990501880645752,
+ "eval_runtime": 43.8951,
+ "eval_samples_per_second": 55.633,
+ "eval_steps_per_second": 3.486,
+ "step": 2736
+ },
+ {
+ "epoch": 38.01397990388816,
+ "grad_norm": 0.20711326599121094,
+ "learning_rate": 0.0006,
+ "loss": 3.6364657878875732,
+ "step": 2737
+ },
+ {
+ "epoch": 38.02795980777632,
+ "grad_norm": 0.2250880002975464,
+ "learning_rate": 0.0006,
+ "loss": 3.637646436691284,
+ "step": 2738
+ },
+ {
+ "epoch": 38.04193971166448,
+ "grad_norm": 0.2448352724313736,
+ "learning_rate": 0.0006,
+ "loss": 3.63557767868042,
+ "step": 2739
+ },
+ {
+ "epoch": 38.05591961555265,
+ "grad_norm": 0.23031368851661682,
+ "learning_rate": 0.0006,
+ "loss": 3.627117395401001,
+ "step": 2740
+ },
+ {
+ "epoch": 38.0698995194408,
+ "grad_norm": 0.2045450210571289,
+ "learning_rate": 0.0006,
+ "loss": 3.6594958305358887,
+ "step": 2741
+ },
+ {
+ "epoch": 38.083879423328966,
+ "grad_norm": 0.21253496408462524,
+ "learning_rate": 0.0006,
+ "loss": 3.65494441986084,
+ "step": 2742
+ },
+ {
+ "epoch": 38.09785932721712,
+ "grad_norm": 0.20196112990379333,
+ "learning_rate": 0.0006,
+ "loss": 3.645289421081543,
+ "step": 2743
+ },
+ {
+ "epoch": 38.111839231105286,
+ "grad_norm": 0.20258229970932007,
+ "learning_rate": 0.0006,
+ "loss": 3.6698505878448486,
+ "step": 2744
+ },
+ {
+ "epoch": 38.12581913499345,
+ "grad_norm": 0.22182606160640717,
+ "learning_rate": 0.0006,
+ "loss": 3.6427698135375977,
+ "step": 2745
+ },
+ {
+ "epoch": 38.139799038881605,
+ "grad_norm": 0.21281519532203674,
+ "learning_rate": 0.0006,
+ "loss": 3.668337345123291,
+ "step": 2746
+ },
+ {
+ "epoch": 38.15377894276977,
+ "grad_norm": 0.21680216491222382,
+ "learning_rate": 0.0006,
+ "loss": 3.6362109184265137,
+ "step": 2747
+ },
+ {
+ "epoch": 38.16775884665793,
+ "grad_norm": 0.24396903812885284,
+ "learning_rate": 0.0006,
+ "loss": 3.660510540008545,
+ "step": 2748
+ },
+ {
+ "epoch": 38.18173875054609,
+ "grad_norm": 0.2546434700489044,
+ "learning_rate": 0.0006,
+ "loss": 3.6562418937683105,
+ "step": 2749
+ },
+ {
+ "epoch": 38.19571865443425,
+ "grad_norm": 0.22705447673797607,
+ "learning_rate": 0.0006,
+ "loss": 3.6801514625549316,
+ "step": 2750
+ },
+ {
+ "epoch": 38.20969855832241,
+ "grad_norm": 0.21516330540180206,
+ "learning_rate": 0.0006,
+ "loss": 3.6633429527282715,
+ "step": 2751
+ },
+ {
+ "epoch": 38.22367846221057,
+ "grad_norm": 0.20895853638648987,
+ "learning_rate": 0.0006,
+ "loss": 3.619896411895752,
+ "step": 2752
+ },
+ {
+ "epoch": 38.237658366098735,
+ "grad_norm": 0.21183325350284576,
+ "learning_rate": 0.0006,
+ "loss": 3.639491558074951,
+ "step": 2753
+ },
+ {
+ "epoch": 38.25163826998689,
+ "grad_norm": 0.21439522504806519,
+ "learning_rate": 0.0006,
+ "loss": 3.671931028366089,
+ "step": 2754
+ },
+ {
+ "epoch": 38.265618173875055,
+ "grad_norm": 0.2017785906791687,
+ "learning_rate": 0.0006,
+ "loss": 3.639533519744873,
+ "step": 2755
+ },
+ {
+ "epoch": 38.27959807776322,
+ "grad_norm": 0.20015068352222443,
+ "learning_rate": 0.0006,
+ "loss": 3.654262065887451,
+ "step": 2756
+ },
+ {
+ "epoch": 38.293577981651374,
+ "grad_norm": 0.21518948674201965,
+ "learning_rate": 0.0006,
+ "loss": 3.649919033050537,
+ "step": 2757
+ },
+ {
+ "epoch": 38.30755788553954,
+ "grad_norm": 0.21994580328464508,
+ "learning_rate": 0.0006,
+ "loss": 3.6756131649017334,
+ "step": 2758
+ },
+ {
+ "epoch": 38.3215377894277,
+ "grad_norm": 0.2053978443145752,
+ "learning_rate": 0.0006,
+ "loss": 3.651520252227783,
+ "step": 2759
+ },
+ {
+ "epoch": 38.33551769331586,
+ "grad_norm": 0.2066337615251541,
+ "learning_rate": 0.0006,
+ "loss": 3.6404507160186768,
+ "step": 2760
+ },
+ {
+ "epoch": 38.34949759720402,
+ "grad_norm": 0.20898301899433136,
+ "learning_rate": 0.0006,
+ "loss": 3.637200355529785,
+ "step": 2761
+ },
+ {
+ "epoch": 38.36347750109218,
+ "grad_norm": 0.19212259352207184,
+ "learning_rate": 0.0006,
+ "loss": 3.68394136428833,
+ "step": 2762
+ },
+ {
+ "epoch": 38.37745740498034,
+ "grad_norm": 0.2011883556842804,
+ "learning_rate": 0.0006,
+ "loss": 3.6494975090026855,
+ "step": 2763
+ },
+ {
+ "epoch": 38.391437308868504,
+ "grad_norm": 0.23072998225688934,
+ "learning_rate": 0.0006,
+ "loss": 3.6644320487976074,
+ "step": 2764
+ },
+ {
+ "epoch": 38.40541721275666,
+ "grad_norm": 0.2195347547531128,
+ "learning_rate": 0.0006,
+ "loss": 3.6666269302368164,
+ "step": 2765
+ },
+ {
+ "epoch": 38.419397116644824,
+ "grad_norm": 0.19820117950439453,
+ "learning_rate": 0.0006,
+ "loss": 3.690683364868164,
+ "step": 2766
+ },
+ {
+ "epoch": 38.43337702053299,
+ "grad_norm": 0.20381149649620056,
+ "learning_rate": 0.0006,
+ "loss": 3.6647756099700928,
+ "step": 2767
+ },
+ {
+ "epoch": 38.44735692442114,
+ "grad_norm": 0.19477297365665436,
+ "learning_rate": 0.0006,
+ "loss": 3.6419155597686768,
+ "step": 2768
+ },
+ {
+ "epoch": 38.46133682830931,
+ "grad_norm": 0.20118845999240875,
+ "learning_rate": 0.0006,
+ "loss": 3.678511142730713,
+ "step": 2769
+ },
+ {
+ "epoch": 38.47531673219746,
+ "grad_norm": 0.19538167119026184,
+ "learning_rate": 0.0006,
+ "loss": 3.632112503051758,
+ "step": 2770
+ },
+ {
+ "epoch": 38.489296636085626,
+ "grad_norm": 0.18136411905288696,
+ "learning_rate": 0.0006,
+ "loss": 3.6631078720092773,
+ "step": 2771
+ },
+ {
+ "epoch": 38.50327653997379,
+ "grad_norm": 0.1993526667356491,
+ "learning_rate": 0.0006,
+ "loss": 3.6800379753112793,
+ "step": 2772
+ },
+ {
+ "epoch": 38.517256443861946,
+ "grad_norm": 0.21409109234809875,
+ "learning_rate": 0.0006,
+ "loss": 3.6355738639831543,
+ "step": 2773
+ },
+ {
+ "epoch": 38.53123634775011,
+ "grad_norm": 0.20932911336421967,
+ "learning_rate": 0.0006,
+ "loss": 3.6639811992645264,
+ "step": 2774
+ },
+ {
+ "epoch": 38.54521625163827,
+ "grad_norm": 0.22266243398189545,
+ "learning_rate": 0.0006,
+ "loss": 3.6927733421325684,
+ "step": 2775
+ },
+ {
+ "epoch": 38.55919615552643,
+ "grad_norm": 0.22916539013385773,
+ "learning_rate": 0.0006,
+ "loss": 3.6381587982177734,
+ "step": 2776
+ },
+ {
+ "epoch": 38.57317605941459,
+ "grad_norm": 0.21507245302200317,
+ "learning_rate": 0.0006,
+ "loss": 3.6724753379821777,
+ "step": 2777
+ },
+ {
+ "epoch": 38.58715596330275,
+ "grad_norm": 0.21132487058639526,
+ "learning_rate": 0.0006,
+ "loss": 3.68450927734375,
+ "step": 2778
+ },
+ {
+ "epoch": 38.60113586719091,
+ "grad_norm": 0.2323923259973526,
+ "learning_rate": 0.0006,
+ "loss": 3.6917476654052734,
+ "step": 2779
+ },
+ {
+ "epoch": 38.615115771079076,
+ "grad_norm": 0.2862907648086548,
+ "learning_rate": 0.0006,
+ "loss": 3.6832518577575684,
+ "step": 2780
+ },
+ {
+ "epoch": 38.62909567496723,
+ "grad_norm": 0.28132742643356323,
+ "learning_rate": 0.0006,
+ "loss": 3.6619668006896973,
+ "step": 2781
+ },
+ {
+ "epoch": 38.643075578855395,
+ "grad_norm": 0.24933350086212158,
+ "learning_rate": 0.0006,
+ "loss": 3.6342711448669434,
+ "step": 2782
+ },
+ {
+ "epoch": 38.65705548274356,
+ "grad_norm": 0.23482646048069,
+ "learning_rate": 0.0006,
+ "loss": 3.667548656463623,
+ "step": 2783
+ },
+ {
+ "epoch": 38.671035386631715,
+ "grad_norm": 0.2529793083667755,
+ "learning_rate": 0.0006,
+ "loss": 3.6613709926605225,
+ "step": 2784
+ },
+ {
+ "epoch": 38.68501529051988,
+ "grad_norm": 0.2306097447872162,
+ "learning_rate": 0.0006,
+ "loss": 3.653153419494629,
+ "step": 2785
+ },
+ {
+ "epoch": 38.69899519440804,
+ "grad_norm": 0.21787869930267334,
+ "learning_rate": 0.0006,
+ "loss": 3.6991848945617676,
+ "step": 2786
+ },
+ {
+ "epoch": 38.7129750982962,
+ "grad_norm": 0.24818190932273865,
+ "learning_rate": 0.0006,
+ "loss": 3.664022445678711,
+ "step": 2787
+ },
+ {
+ "epoch": 38.72695500218436,
+ "grad_norm": 0.23205995559692383,
+ "learning_rate": 0.0006,
+ "loss": 3.656064987182617,
+ "step": 2788
+ },
+ {
+ "epoch": 38.74093490607252,
+ "grad_norm": 0.2268102467060089,
+ "learning_rate": 0.0006,
+ "loss": 3.678421974182129,
+ "step": 2789
+ },
+ {
+ "epoch": 38.75491480996068,
+ "grad_norm": 0.22549907863140106,
+ "learning_rate": 0.0006,
+ "loss": 3.6483302116394043,
+ "step": 2790
+ },
+ {
+ "epoch": 38.768894713848844,
+ "grad_norm": 0.2293119877576828,
+ "learning_rate": 0.0006,
+ "loss": 3.646825075149536,
+ "step": 2791
+ },
+ {
+ "epoch": 38.782874617737,
+ "grad_norm": 0.21879418194293976,
+ "learning_rate": 0.0006,
+ "loss": 3.682124614715576,
+ "step": 2792
+ },
+ {
+ "epoch": 38.796854521625164,
+ "grad_norm": 0.22012849152088165,
+ "learning_rate": 0.0006,
+ "loss": 3.6590089797973633,
+ "step": 2793
+ },
+ {
+ "epoch": 38.81083442551333,
+ "grad_norm": 0.2449142336845398,
+ "learning_rate": 0.0006,
+ "loss": 3.7053747177124023,
+ "step": 2794
+ },
+ {
+ "epoch": 38.824814329401484,
+ "grad_norm": 0.2677161395549774,
+ "learning_rate": 0.0006,
+ "loss": 3.666144371032715,
+ "step": 2795
+ },
+ {
+ "epoch": 38.83879423328965,
+ "grad_norm": 0.2654981315135956,
+ "learning_rate": 0.0006,
+ "loss": 3.637512683868408,
+ "step": 2796
+ },
+ {
+ "epoch": 38.8527741371778,
+ "grad_norm": 0.23169654607772827,
+ "learning_rate": 0.0006,
+ "loss": 3.6885948181152344,
+ "step": 2797
+ },
+ {
+ "epoch": 38.86675404106597,
+ "grad_norm": 0.22195108234882355,
+ "learning_rate": 0.0006,
+ "loss": 3.6597604751586914,
+ "step": 2798
+ },
+ {
+ "epoch": 38.88073394495413,
+ "grad_norm": 0.23703525960445404,
+ "learning_rate": 0.0006,
+ "loss": 3.6808712482452393,
+ "step": 2799
+ },
+ {
+ "epoch": 38.89471384884229,
+ "grad_norm": 0.24711088836193085,
+ "learning_rate": 0.0006,
+ "loss": 3.733792781829834,
+ "step": 2800
+ },
+ {
+ "epoch": 38.90869375273045,
+ "grad_norm": 0.216362863779068,
+ "learning_rate": 0.0006,
+ "loss": 3.670599937438965,
+ "step": 2801
+ },
+ {
+ "epoch": 38.92267365661861,
+ "grad_norm": 0.19483810663223267,
+ "learning_rate": 0.0006,
+ "loss": 3.6965198516845703,
+ "step": 2802
+ },
+ {
+ "epoch": 38.93665356050677,
+ "grad_norm": 0.1941208392381668,
+ "learning_rate": 0.0006,
+ "loss": 3.678022861480713,
+ "step": 2803
+ },
+ {
+ "epoch": 38.95063346439493,
+ "grad_norm": 0.1919465959072113,
+ "learning_rate": 0.0006,
+ "loss": 3.6763226985931396,
+ "step": 2804
+ },
+ {
+ "epoch": 38.964613368283096,
+ "grad_norm": 0.2003280073404312,
+ "learning_rate": 0.0006,
+ "loss": 3.670313835144043,
+ "step": 2805
+ },
+ {
+ "epoch": 38.97859327217125,
+ "grad_norm": 0.198478564620018,
+ "learning_rate": 0.0006,
+ "loss": 3.675569772720337,
+ "step": 2806
+ },
+ {
+ "epoch": 38.992573176059416,
+ "grad_norm": 0.23692303895950317,
+ "learning_rate": 0.0006,
+ "loss": 3.696561336517334,
+ "step": 2807
+ },
+ {
+ "epoch": 39.0,
+ "grad_norm": 0.3208145797252655,
+ "learning_rate": 0.0006,
+ "loss": 3.6791436672210693,
+ "step": 2808
+ },
+ {
+ "epoch": 39.0,
+ "eval_loss": 4.0079450607299805,
+ "eval_runtime": 43.8573,
+ "eval_samples_per_second": 55.681,
+ "eval_steps_per_second": 3.489,
+ "step": 2808
+ },
+ {
+ "epoch": 39.01397990388816,
+ "grad_norm": 0.28338733315467834,
+ "learning_rate": 0.0006,
+ "loss": 3.6277060508728027,
+ "step": 2809
+ },
+ {
+ "epoch": 39.02795980777632,
+ "grad_norm": 0.22057899832725525,
+ "learning_rate": 0.0006,
+ "loss": 3.6132822036743164,
+ "step": 2810
+ },
+ {
+ "epoch": 39.04193971166448,
+ "grad_norm": 0.20630282163619995,
+ "learning_rate": 0.0006,
+ "loss": 3.6143927574157715,
+ "step": 2811
+ },
+ {
+ "epoch": 39.05591961555265,
+ "grad_norm": 0.2178523689508438,
+ "learning_rate": 0.0006,
+ "loss": 3.6304664611816406,
+ "step": 2812
+ },
+ {
+ "epoch": 39.0698995194408,
+ "grad_norm": 0.19613824784755707,
+ "learning_rate": 0.0006,
+ "loss": 3.6137919425964355,
+ "step": 2813
+ },
+ {
+ "epoch": 39.083879423328966,
+ "grad_norm": 0.2047276794910431,
+ "learning_rate": 0.0006,
+ "loss": 3.6854846477508545,
+ "step": 2814
+ },
+ {
+ "epoch": 39.09785932721712,
+ "grad_norm": 0.20082715153694153,
+ "learning_rate": 0.0006,
+ "loss": 3.632091522216797,
+ "step": 2815
+ },
+ {
+ "epoch": 39.111839231105286,
+ "grad_norm": 0.21746563911437988,
+ "learning_rate": 0.0006,
+ "loss": 3.640477180480957,
+ "step": 2816
+ },
+ {
+ "epoch": 39.12581913499345,
+ "grad_norm": 0.2128882110118866,
+ "learning_rate": 0.0006,
+ "loss": 3.643984317779541,
+ "step": 2817
+ },
+ {
+ "epoch": 39.139799038881605,
+ "grad_norm": 0.2110479772090912,
+ "learning_rate": 0.0006,
+ "loss": 3.6328823566436768,
+ "step": 2818
+ },
+ {
+ "epoch": 39.15377894276977,
+ "grad_norm": 0.22304436564445496,
+ "learning_rate": 0.0006,
+ "loss": 3.6669845581054688,
+ "step": 2819
+ },
+ {
+ "epoch": 39.16775884665793,
+ "grad_norm": 0.22310666739940643,
+ "learning_rate": 0.0006,
+ "loss": 3.609743595123291,
+ "step": 2820
+ },
+ {
+ "epoch": 39.18173875054609,
+ "grad_norm": 0.21002045273780823,
+ "learning_rate": 0.0006,
+ "loss": 3.601900815963745,
+ "step": 2821
+ },
+ {
+ "epoch": 39.19571865443425,
+ "grad_norm": 0.20531952381134033,
+ "learning_rate": 0.0006,
+ "loss": 3.6405060291290283,
+ "step": 2822
+ },
+ {
+ "epoch": 39.20969855832241,
+ "grad_norm": 0.20646385848522186,
+ "learning_rate": 0.0006,
+ "loss": 3.669617176055908,
+ "step": 2823
+ },
+ {
+ "epoch": 39.22367846221057,
+ "grad_norm": 0.2553980350494385,
+ "learning_rate": 0.0006,
+ "loss": 3.642709255218506,
+ "step": 2824
+ },
+ {
+ "epoch": 39.237658366098735,
+ "grad_norm": 0.2753220498561859,
+ "learning_rate": 0.0006,
+ "loss": 3.668405055999756,
+ "step": 2825
+ },
+ {
+ "epoch": 39.25163826998689,
+ "grad_norm": 0.2425055354833603,
+ "learning_rate": 0.0006,
+ "loss": 3.659559726715088,
+ "step": 2826
+ },
+ {
+ "epoch": 39.265618173875055,
+ "grad_norm": 0.2199426293373108,
+ "learning_rate": 0.0006,
+ "loss": 3.6466197967529297,
+ "step": 2827
+ },
+ {
+ "epoch": 39.27959807776322,
+ "grad_norm": 0.221355602145195,
+ "learning_rate": 0.0006,
+ "loss": 3.639418125152588,
+ "step": 2828
+ },
+ {
+ "epoch": 39.293577981651374,
+ "grad_norm": 0.20777100324630737,
+ "learning_rate": 0.0006,
+ "loss": 3.68102765083313,
+ "step": 2829
+ },
+ {
+ "epoch": 39.30755788553954,
+ "grad_norm": 0.20557557046413422,
+ "learning_rate": 0.0006,
+ "loss": 3.663064956665039,
+ "step": 2830
+ },
+ {
+ "epoch": 39.3215377894277,
+ "grad_norm": 0.2385585904121399,
+ "learning_rate": 0.0006,
+ "loss": 3.6598849296569824,
+ "step": 2831
+ },
+ {
+ "epoch": 39.33551769331586,
+ "grad_norm": 0.25222650170326233,
+ "learning_rate": 0.0006,
+ "loss": 3.635199546813965,
+ "step": 2832
+ },
+ {
+ "epoch": 39.34949759720402,
+ "grad_norm": 0.22894687950611115,
+ "learning_rate": 0.0006,
+ "loss": 3.6100258827209473,
+ "step": 2833
+ },
+ {
+ "epoch": 39.36347750109218,
+ "grad_norm": 0.22945865988731384,
+ "learning_rate": 0.0006,
+ "loss": 3.63069748878479,
+ "step": 2834
+ },
+ {
+ "epoch": 39.37745740498034,
+ "grad_norm": 0.2466309368610382,
+ "learning_rate": 0.0006,
+ "loss": 3.6615123748779297,
+ "step": 2835
+ },
+ {
+ "epoch": 39.391437308868504,
+ "grad_norm": 0.23845571279525757,
+ "learning_rate": 0.0006,
+ "loss": 3.655045509338379,
+ "step": 2836
+ },
+ {
+ "epoch": 39.40541721275666,
+ "grad_norm": 0.20273560285568237,
+ "learning_rate": 0.0006,
+ "loss": 3.6497647762298584,
+ "step": 2837
+ },
+ {
+ "epoch": 39.419397116644824,
+ "grad_norm": 0.19820313155651093,
+ "learning_rate": 0.0006,
+ "loss": 3.6728386878967285,
+ "step": 2838
+ },
+ {
+ "epoch": 39.43337702053299,
+ "grad_norm": 0.21581435203552246,
+ "learning_rate": 0.0006,
+ "loss": 3.660247325897217,
+ "step": 2839
+ },
+ {
+ "epoch": 39.44735692442114,
+ "grad_norm": 0.20559731125831604,
+ "learning_rate": 0.0006,
+ "loss": 3.6244559288024902,
+ "step": 2840
+ },
+ {
+ "epoch": 39.46133682830931,
+ "grad_norm": 0.22041910886764526,
+ "learning_rate": 0.0006,
+ "loss": 3.6577587127685547,
+ "step": 2841
+ },
+ {
+ "epoch": 39.47531673219746,
+ "grad_norm": 0.1966651976108551,
+ "learning_rate": 0.0006,
+ "loss": 3.673975944519043,
+ "step": 2842
+ },
+ {
+ "epoch": 39.489296636085626,
+ "grad_norm": 0.19127163290977478,
+ "learning_rate": 0.0006,
+ "loss": 3.7022414207458496,
+ "step": 2843
+ },
+ {
+ "epoch": 39.50327653997379,
+ "grad_norm": 0.20260316133499146,
+ "learning_rate": 0.0006,
+ "loss": 3.6155128479003906,
+ "step": 2844
+ },
+ {
+ "epoch": 39.517256443861946,
+ "grad_norm": 0.2302546352148056,
+ "learning_rate": 0.0006,
+ "loss": 3.670212984085083,
+ "step": 2845
+ },
+ {
+ "epoch": 39.53123634775011,
+ "grad_norm": 0.2512998878955841,
+ "learning_rate": 0.0006,
+ "loss": 3.6257572174072266,
+ "step": 2846
+ },
+ {
+ "epoch": 39.54521625163827,
+ "grad_norm": 0.24780063331127167,
+ "learning_rate": 0.0006,
+ "loss": 3.6458964347839355,
+ "step": 2847
+ },
+ {
+ "epoch": 39.55919615552643,
+ "grad_norm": 0.21305061876773834,
+ "learning_rate": 0.0006,
+ "loss": 3.666834831237793,
+ "step": 2848
+ },
+ {
+ "epoch": 39.57317605941459,
+ "grad_norm": 0.20699542760849,
+ "learning_rate": 0.0006,
+ "loss": 3.660571813583374,
+ "step": 2849
+ },
+ {
+ "epoch": 39.58715596330275,
+ "grad_norm": 0.20799173414707184,
+ "learning_rate": 0.0006,
+ "loss": 3.649744987487793,
+ "step": 2850
+ },
+ {
+ "epoch": 39.60113586719091,
+ "grad_norm": 0.20118695497512817,
+ "learning_rate": 0.0006,
+ "loss": 3.663865089416504,
+ "step": 2851
+ },
+ {
+ "epoch": 39.615115771079076,
+ "grad_norm": 0.2019277960062027,
+ "learning_rate": 0.0006,
+ "loss": 3.6600584983825684,
+ "step": 2852
+ },
+ {
+ "epoch": 39.62909567496723,
+ "grad_norm": 0.2093067765235901,
+ "learning_rate": 0.0006,
+ "loss": 3.6926870346069336,
+ "step": 2853
+ },
+ {
+ "epoch": 39.643075578855395,
+ "grad_norm": 0.2280927449464798,
+ "learning_rate": 0.0006,
+ "loss": 3.677157402038574,
+ "step": 2854
+ },
+ {
+ "epoch": 39.65705548274356,
+ "grad_norm": 0.219201922416687,
+ "learning_rate": 0.0006,
+ "loss": 3.6763858795166016,
+ "step": 2855
+ },
+ {
+ "epoch": 39.671035386631715,
+ "grad_norm": 0.2132134735584259,
+ "learning_rate": 0.0006,
+ "loss": 3.6853187084198,
+ "step": 2856
+ },
+ {
+ "epoch": 39.68501529051988,
+ "grad_norm": 0.1979551613330841,
+ "learning_rate": 0.0006,
+ "loss": 3.633850574493408,
+ "step": 2857
+ },
+ {
+ "epoch": 39.69899519440804,
+ "grad_norm": 0.2181098908185959,
+ "learning_rate": 0.0006,
+ "loss": 3.671356201171875,
+ "step": 2858
+ },
+ {
+ "epoch": 39.7129750982962,
+ "grad_norm": 0.21820145845413208,
+ "learning_rate": 0.0006,
+ "loss": 3.640101432800293,
+ "step": 2859
+ },
+ {
+ "epoch": 39.72695500218436,
+ "grad_norm": 0.22734931111335754,
+ "learning_rate": 0.0006,
+ "loss": 3.6326088905334473,
+ "step": 2860
+ },
+ {
+ "epoch": 39.74093490607252,
+ "grad_norm": 0.2407236248254776,
+ "learning_rate": 0.0006,
+ "loss": 3.665416955947876,
+ "step": 2861
+ },
+ {
+ "epoch": 39.75491480996068,
+ "grad_norm": 0.2507246434688568,
+ "learning_rate": 0.0006,
+ "loss": 3.6996266841888428,
+ "step": 2862
+ },
+ {
+ "epoch": 39.768894713848844,
+ "grad_norm": 0.2273668497800827,
+ "learning_rate": 0.0006,
+ "loss": 3.6786417961120605,
+ "step": 2863
+ },
+ {
+ "epoch": 39.782874617737,
+ "grad_norm": 0.20584821701049805,
+ "learning_rate": 0.0006,
+ "loss": 3.6539974212646484,
+ "step": 2864
+ },
+ {
+ "epoch": 39.796854521625164,
+ "grad_norm": 0.2327643632888794,
+ "learning_rate": 0.0006,
+ "loss": 3.681267738342285,
+ "step": 2865
+ },
+ {
+ "epoch": 39.81083442551333,
+ "grad_norm": 0.24243171513080597,
+ "learning_rate": 0.0006,
+ "loss": 3.6814589500427246,
+ "step": 2866
+ },
+ {
+ "epoch": 39.824814329401484,
+ "grad_norm": 0.21462969481945038,
+ "learning_rate": 0.0006,
+ "loss": 3.681321620941162,
+ "step": 2867
+ },
+ {
+ "epoch": 39.83879423328965,
+ "grad_norm": 0.20973211526870728,
+ "learning_rate": 0.0006,
+ "loss": 3.636986017227173,
+ "step": 2868
+ },
+ {
+ "epoch": 39.8527741371778,
+ "grad_norm": 0.20357508957386017,
+ "learning_rate": 0.0006,
+ "loss": 3.6664552688598633,
+ "step": 2869
+ },
+ {
+ "epoch": 39.86675404106597,
+ "grad_norm": 0.20389088988304138,
+ "learning_rate": 0.0006,
+ "loss": 3.6685709953308105,
+ "step": 2870
+ },
+ {
+ "epoch": 39.88073394495413,
+ "grad_norm": 0.21024158596992493,
+ "learning_rate": 0.0006,
+ "loss": 3.650658130645752,
+ "step": 2871
+ },
+ {
+ "epoch": 39.89471384884229,
+ "grad_norm": 0.19477778673171997,
+ "learning_rate": 0.0006,
+ "loss": 3.664834976196289,
+ "step": 2872
+ },
+ {
+ "epoch": 39.90869375273045,
+ "grad_norm": 0.22345365583896637,
+ "learning_rate": 0.0006,
+ "loss": 3.6652634143829346,
+ "step": 2873
+ },
+ {
+ "epoch": 39.92267365661861,
+ "grad_norm": 0.206041157245636,
+ "learning_rate": 0.0006,
+ "loss": 3.6649513244628906,
+ "step": 2874
+ },
+ {
+ "epoch": 39.93665356050677,
+ "grad_norm": 0.18524570763111115,
+ "learning_rate": 0.0006,
+ "loss": 3.665579080581665,
+ "step": 2875
+ },
+ {
+ "epoch": 39.95063346439493,
+ "grad_norm": 0.17730890214443207,
+ "learning_rate": 0.0006,
+ "loss": 3.6372880935668945,
+ "step": 2876
+ },
+ {
+ "epoch": 39.964613368283096,
+ "grad_norm": 0.213678777217865,
+ "learning_rate": 0.0006,
+ "loss": 3.681305408477783,
+ "step": 2877
+ },
+ {
+ "epoch": 39.97859327217125,
+ "grad_norm": 0.2595686614513397,
+ "learning_rate": 0.0006,
+ "loss": 3.6660351753234863,
+ "step": 2878
+ },
+ {
+ "epoch": 39.992573176059416,
+ "grad_norm": 0.22678600251674652,
+ "learning_rate": 0.0006,
+ "loss": 3.681619644165039,
+ "step": 2879
+ },
+ {
+ "epoch": 40.0,
+ "grad_norm": 0.2294030636548996,
+ "learning_rate": 0.0006,
+ "loss": 3.654366970062256,
+ "step": 2880
+ },
+ {
+ "epoch": 40.0,
+ "eval_loss": 3.9810431003570557,
+ "eval_runtime": 43.832,
+ "eval_samples_per_second": 55.713,
+ "eval_steps_per_second": 3.491,
+ "step": 2880
+ },
+ {
+ "epoch": 40.01397990388816,
+ "grad_norm": 0.220590278506279,
+ "learning_rate": 0.0006,
+ "loss": 3.6346259117126465,
+ "step": 2881
+ },
+ {
+ "epoch": 40.02795980777632,
+ "grad_norm": 0.2568257749080658,
+ "learning_rate": 0.0006,
+ "loss": 3.64436674118042,
+ "step": 2882
+ },
+ {
+ "epoch": 40.04193971166448,
+ "grad_norm": 0.2869258224964142,
+ "learning_rate": 0.0006,
+ "loss": 3.613316059112549,
+ "step": 2883
+ },
+ {
+ "epoch": 40.05591961555265,
+ "grad_norm": 0.3005172908306122,
+ "learning_rate": 0.0006,
+ "loss": 3.607339859008789,
+ "step": 2884
+ },
+ {
+ "epoch": 40.0698995194408,
+ "grad_norm": 0.28642305731773376,
+ "learning_rate": 0.0006,
+ "loss": 3.65151047706604,
+ "step": 2885
+ },
+ {
+ "epoch": 40.083879423328966,
+ "grad_norm": 0.24176034331321716,
+ "learning_rate": 0.0006,
+ "loss": 3.633742332458496,
+ "step": 2886
+ },
+ {
+ "epoch": 40.09785932721712,
+ "grad_norm": 0.2139386385679245,
+ "learning_rate": 0.0006,
+ "loss": 3.614245653152466,
+ "step": 2887
+ },
+ {
+ "epoch": 40.111839231105286,
+ "grad_norm": 0.28025752305984497,
+ "learning_rate": 0.0006,
+ "loss": 3.6415746212005615,
+ "step": 2888
+ },
+ {
+ "epoch": 40.12581913499345,
+ "grad_norm": 0.28534311056137085,
+ "learning_rate": 0.0006,
+ "loss": 3.6302027702331543,
+ "step": 2889
+ },
+ {
+ "epoch": 40.139799038881605,
+ "grad_norm": 0.26842808723449707,
+ "learning_rate": 0.0006,
+ "loss": 3.657480239868164,
+ "step": 2890
+ },
+ {
+ "epoch": 40.15377894276977,
+ "grad_norm": 0.25235965847969055,
+ "learning_rate": 0.0006,
+ "loss": 3.6843931674957275,
+ "step": 2891
+ },
+ {
+ "epoch": 40.16775884665793,
+ "grad_norm": 0.22192128002643585,
+ "learning_rate": 0.0006,
+ "loss": 3.6374592781066895,
+ "step": 2892
+ },
+ {
+ "epoch": 40.18173875054609,
+ "grad_norm": 0.21524523198604584,
+ "learning_rate": 0.0006,
+ "loss": 3.6052589416503906,
+ "step": 2893
+ },
+ {
+ "epoch": 40.19571865443425,
+ "grad_norm": 0.21011514961719513,
+ "learning_rate": 0.0006,
+ "loss": 3.62197208404541,
+ "step": 2894
+ },
+ {
+ "epoch": 40.20969855832241,
+ "grad_norm": 0.23187001049518585,
+ "learning_rate": 0.0006,
+ "loss": 3.6505377292633057,
+ "step": 2895
+ },
+ {
+ "epoch": 40.22367846221057,
+ "grad_norm": 0.21962887048721313,
+ "learning_rate": 0.0006,
+ "loss": 3.594991683959961,
+ "step": 2896
+ },
+ {
+ "epoch": 40.237658366098735,
+ "grad_norm": 0.23299361765384674,
+ "learning_rate": 0.0006,
+ "loss": 3.6370339393615723,
+ "step": 2897
+ },
+ {
+ "epoch": 40.25163826998689,
+ "grad_norm": 0.22504881024360657,
+ "learning_rate": 0.0006,
+ "loss": 3.6173815727233887,
+ "step": 2898
+ },
+ {
+ "epoch": 40.265618173875055,
+ "grad_norm": 0.21678344905376434,
+ "learning_rate": 0.0006,
+ "loss": 3.6231422424316406,
+ "step": 2899
+ },
+ {
+ "epoch": 40.27959807776322,
+ "grad_norm": 0.2184615284204483,
+ "learning_rate": 0.0006,
+ "loss": 3.6552987098693848,
+ "step": 2900
+ },
+ {
+ "epoch": 40.293577981651374,
+ "grad_norm": 0.2145485281944275,
+ "learning_rate": 0.0006,
+ "loss": 3.628025531768799,
+ "step": 2901
+ },
+ {
+ "epoch": 40.30755788553954,
+ "grad_norm": 0.21119336783885956,
+ "learning_rate": 0.0006,
+ "loss": 3.6511590480804443,
+ "step": 2902
+ },
+ {
+ "epoch": 40.3215377894277,
+ "grad_norm": 0.2158869504928589,
+ "learning_rate": 0.0006,
+ "loss": 3.6302051544189453,
+ "step": 2903
+ },
+ {
+ "epoch": 40.33551769331586,
+ "grad_norm": 0.22736455500125885,
+ "learning_rate": 0.0006,
+ "loss": 3.6678733825683594,
+ "step": 2904
+ },
+ {
+ "epoch": 40.34949759720402,
+ "grad_norm": 0.22723783552646637,
+ "learning_rate": 0.0006,
+ "loss": 3.632068634033203,
+ "step": 2905
+ },
+ {
+ "epoch": 40.36347750109218,
+ "grad_norm": 0.20606189966201782,
+ "learning_rate": 0.0006,
+ "loss": 3.6534624099731445,
+ "step": 2906
+ },
+ {
+ "epoch": 40.37745740498034,
+ "grad_norm": 0.21033786237239838,
+ "learning_rate": 0.0006,
+ "loss": 3.6194064617156982,
+ "step": 2907
+ },
+ {
+ "epoch": 40.391437308868504,
+ "grad_norm": 0.2175762951374054,
+ "learning_rate": 0.0006,
+ "loss": 3.637385368347168,
+ "step": 2908
+ },
+ {
+ "epoch": 40.40541721275666,
+ "grad_norm": 0.21063381433486938,
+ "learning_rate": 0.0006,
+ "loss": 3.656857967376709,
+ "step": 2909
+ },
+ {
+ "epoch": 40.419397116644824,
+ "grad_norm": 0.19982226192951202,
+ "learning_rate": 0.0006,
+ "loss": 3.655738353729248,
+ "step": 2910
+ },
+ {
+ "epoch": 40.43337702053299,
+ "grad_norm": 0.20608870685100555,
+ "learning_rate": 0.0006,
+ "loss": 3.6521377563476562,
+ "step": 2911
+ },
+ {
+ "epoch": 40.44735692442114,
+ "grad_norm": 0.19817334413528442,
+ "learning_rate": 0.0006,
+ "loss": 3.61527681350708,
+ "step": 2912
+ },
+ {
+ "epoch": 40.46133682830931,
+ "grad_norm": 0.20407769083976746,
+ "learning_rate": 0.0006,
+ "loss": 3.6668765544891357,
+ "step": 2913
+ },
+ {
+ "epoch": 40.47531673219746,
+ "grad_norm": 0.19874799251556396,
+ "learning_rate": 0.0006,
+ "loss": 3.6748533248901367,
+ "step": 2914
+ },
+ {
+ "epoch": 40.489296636085626,
+ "grad_norm": 0.1979510486125946,
+ "learning_rate": 0.0006,
+ "loss": 3.6141977310180664,
+ "step": 2915
+ },
+ {
+ "epoch": 40.50327653997379,
+ "grad_norm": 0.19811518490314484,
+ "learning_rate": 0.0006,
+ "loss": 3.6391215324401855,
+ "step": 2916
+ },
+ {
+ "epoch": 40.517256443861946,
+ "grad_norm": 0.20208898186683655,
+ "learning_rate": 0.0006,
+ "loss": 3.664179801940918,
+ "step": 2917
+ },
+ {
+ "epoch": 40.53123634775011,
+ "grad_norm": 0.22063760459423065,
+ "learning_rate": 0.0006,
+ "loss": 3.645388126373291,
+ "step": 2918
+ },
+ {
+ "epoch": 40.54521625163827,
+ "grad_norm": 0.23420891165733337,
+ "learning_rate": 0.0006,
+ "loss": 3.6424708366394043,
+ "step": 2919
+ },
+ {
+ "epoch": 40.55919615552643,
+ "grad_norm": 0.2263612151145935,
+ "learning_rate": 0.0006,
+ "loss": 3.6649224758148193,
+ "step": 2920
+ },
+ {
+ "epoch": 40.57317605941459,
+ "grad_norm": 0.22745433449745178,
+ "learning_rate": 0.0006,
+ "loss": 3.631586790084839,
+ "step": 2921
+ },
+ {
+ "epoch": 40.58715596330275,
+ "grad_norm": 0.22413238883018494,
+ "learning_rate": 0.0006,
+ "loss": 3.6666674613952637,
+ "step": 2922
+ },
+ {
+ "epoch": 40.60113586719091,
+ "grad_norm": 0.2178265005350113,
+ "learning_rate": 0.0006,
+ "loss": 3.6002111434936523,
+ "step": 2923
+ },
+ {
+ "epoch": 40.615115771079076,
+ "grad_norm": 0.21822521090507507,
+ "learning_rate": 0.0006,
+ "loss": 3.6538329124450684,
+ "step": 2924
+ },
+ {
+ "epoch": 40.62909567496723,
+ "grad_norm": 0.21728558838367462,
+ "learning_rate": 0.0006,
+ "loss": 3.651254653930664,
+ "step": 2925
+ },
+ {
+ "epoch": 40.643075578855395,
+ "grad_norm": 0.22377707064151764,
+ "learning_rate": 0.0006,
+ "loss": 3.6505789756774902,
+ "step": 2926
+ },
+ {
+ "epoch": 40.65705548274356,
+ "grad_norm": 0.2035706788301468,
+ "learning_rate": 0.0006,
+ "loss": 3.6471967697143555,
+ "step": 2927
+ },
+ {
+ "epoch": 40.671035386631715,
+ "grad_norm": 0.2011154741048813,
+ "learning_rate": 0.0006,
+ "loss": 3.6582741737365723,
+ "step": 2928
+ },
+ {
+ "epoch": 40.68501529051988,
+ "grad_norm": 0.23812712728977203,
+ "learning_rate": 0.0006,
+ "loss": 3.6388421058654785,
+ "step": 2929
+ },
+ {
+ "epoch": 40.69899519440804,
+ "grad_norm": 0.2117796689271927,
+ "learning_rate": 0.0006,
+ "loss": 3.688337802886963,
+ "step": 2930
+ },
+ {
+ "epoch": 40.7129750982962,
+ "grad_norm": 0.18440942466259003,
+ "learning_rate": 0.0006,
+ "loss": 3.6409997940063477,
+ "step": 2931
+ },
+ {
+ "epoch": 40.72695500218436,
+ "grad_norm": 0.19005917012691498,
+ "learning_rate": 0.0006,
+ "loss": 3.6760218143463135,
+ "step": 2932
+ },
+ {
+ "epoch": 40.74093490607252,
+ "grad_norm": 0.19982726871967316,
+ "learning_rate": 0.0006,
+ "loss": 3.6375021934509277,
+ "step": 2933
+ },
+ {
+ "epoch": 40.75491480996068,
+ "grad_norm": 0.19240257143974304,
+ "learning_rate": 0.0006,
+ "loss": 3.636807918548584,
+ "step": 2934
+ },
+ {
+ "epoch": 40.768894713848844,
+ "grad_norm": 0.20563434064388275,
+ "learning_rate": 0.0006,
+ "loss": 3.6667532920837402,
+ "step": 2935
+ },
+ {
+ "epoch": 40.782874617737,
+ "grad_norm": 0.26531776785850525,
+ "learning_rate": 0.0006,
+ "loss": 3.6332945823669434,
+ "step": 2936
+ },
+ {
+ "epoch": 40.796854521625164,
+ "grad_norm": 0.2766861021518707,
+ "learning_rate": 0.0006,
+ "loss": 3.6645212173461914,
+ "step": 2937
+ },
+ {
+ "epoch": 40.81083442551333,
+ "grad_norm": 0.235750213265419,
+ "learning_rate": 0.0006,
+ "loss": 3.67067813873291,
+ "step": 2938
+ },
+ {
+ "epoch": 40.824814329401484,
+ "grad_norm": 0.20778773725032806,
+ "learning_rate": 0.0006,
+ "loss": 3.6565768718719482,
+ "step": 2939
+ },
+ {
+ "epoch": 40.83879423328965,
+ "grad_norm": 0.187322199344635,
+ "learning_rate": 0.0006,
+ "loss": 3.620129346847534,
+ "step": 2940
+ },
+ {
+ "epoch": 40.8527741371778,
+ "grad_norm": 0.20576219260692596,
+ "learning_rate": 0.0006,
+ "loss": 3.6700220108032227,
+ "step": 2941
+ },
+ {
+ "epoch": 40.86675404106597,
+ "grad_norm": 0.2197345495223999,
+ "learning_rate": 0.0006,
+ "loss": 3.709311008453369,
+ "step": 2942
+ },
+ {
+ "epoch": 40.88073394495413,
+ "grad_norm": 0.20205345749855042,
+ "learning_rate": 0.0006,
+ "loss": 3.6646361351013184,
+ "step": 2943
+ },
+ {
+ "epoch": 40.89471384884229,
+ "grad_norm": 0.20026250183582306,
+ "learning_rate": 0.0006,
+ "loss": 3.6639604568481445,
+ "step": 2944
+ },
+ {
+ "epoch": 40.90869375273045,
+ "grad_norm": 0.224214106798172,
+ "learning_rate": 0.0006,
+ "loss": 3.6669654846191406,
+ "step": 2945
+ },
+ {
+ "epoch": 40.92267365661861,
+ "grad_norm": 0.2155972272157669,
+ "learning_rate": 0.0006,
+ "loss": 3.6494603157043457,
+ "step": 2946
+ },
+ {
+ "epoch": 40.93665356050677,
+ "grad_norm": 0.23038871586322784,
+ "learning_rate": 0.0006,
+ "loss": 3.6368541717529297,
+ "step": 2947
+ },
+ {
+ "epoch": 40.95063346439493,
+ "grad_norm": 0.2001815289258957,
+ "learning_rate": 0.0006,
+ "loss": 3.711174249649048,
+ "step": 2948
+ },
+ {
+ "epoch": 40.964613368283096,
+ "grad_norm": 0.20428860187530518,
+ "learning_rate": 0.0006,
+ "loss": 3.6342315673828125,
+ "step": 2949
+ },
+ {
+ "epoch": 40.97859327217125,
+ "grad_norm": 0.20724134147167206,
+ "learning_rate": 0.0006,
+ "loss": 3.679375171661377,
+ "step": 2950
+ },
+ {
+ "epoch": 40.992573176059416,
+ "grad_norm": 0.20723849534988403,
+ "learning_rate": 0.0006,
+ "loss": 3.6477675437927246,
+ "step": 2951
+ },
+ {
+ "epoch": 41.0,
+ "grad_norm": 0.23891447484493256,
+ "learning_rate": 0.0006,
+ "loss": 3.632950782775879,
+ "step": 2952
+ },
+ {
+ "epoch": 41.0,
+ "eval_loss": 3.9871256351470947,
+ "eval_runtime": 43.8367,
+ "eval_samples_per_second": 55.707,
+ "eval_steps_per_second": 3.49,
+ "step": 2952
+ },
+ {
+ "epoch": 41.01397990388816,
+ "grad_norm": 0.2258434295654297,
+ "learning_rate": 0.0006,
+ "loss": 3.631239414215088,
+ "step": 2953
+ },
+ {
+ "epoch": 41.02795980777632,
+ "grad_norm": 0.24932795763015747,
+ "learning_rate": 0.0006,
+ "loss": 3.601083517074585,
+ "step": 2954
+ },
+ {
+ "epoch": 41.04193971166448,
+ "grad_norm": 0.2688388228416443,
+ "learning_rate": 0.0006,
+ "loss": 3.655724048614502,
+ "step": 2955
+ },
+ {
+ "epoch": 41.05591961555265,
+ "grad_norm": 0.23880694806575775,
+ "learning_rate": 0.0006,
+ "loss": 3.617628812789917,
+ "step": 2956
+ },
+ {
+ "epoch": 41.0698995194408,
+ "grad_norm": 0.23784616589546204,
+ "learning_rate": 0.0006,
+ "loss": 3.6309127807617188,
+ "step": 2957
+ },
+ {
+ "epoch": 41.083879423328966,
+ "grad_norm": 0.22609511017799377,
+ "learning_rate": 0.0006,
+ "loss": 3.6138553619384766,
+ "step": 2958
+ },
+ {
+ "epoch": 41.09785932721712,
+ "grad_norm": 0.22936329245567322,
+ "learning_rate": 0.0006,
+ "loss": 3.6620094776153564,
+ "step": 2959
+ },
+ {
+ "epoch": 41.111839231105286,
+ "grad_norm": 0.23354190587997437,
+ "learning_rate": 0.0006,
+ "loss": 3.59959077835083,
+ "step": 2960
+ },
+ {
+ "epoch": 41.12581913499345,
+ "grad_norm": 0.2496265172958374,
+ "learning_rate": 0.0006,
+ "loss": 3.588359832763672,
+ "step": 2961
+ },
+ {
+ "epoch": 41.139799038881605,
+ "grad_norm": 0.23618635535240173,
+ "learning_rate": 0.0006,
+ "loss": 3.6341018676757812,
+ "step": 2962
+ },
+ {
+ "epoch": 41.15377894276977,
+ "grad_norm": 0.23724640905857086,
+ "learning_rate": 0.0006,
+ "loss": 3.6170616149902344,
+ "step": 2963
+ },
+ {
+ "epoch": 41.16775884665793,
+ "grad_norm": 0.20944789052009583,
+ "learning_rate": 0.0006,
+ "loss": 3.6158995628356934,
+ "step": 2964
+ },
+ {
+ "epoch": 41.18173875054609,
+ "grad_norm": 0.2089492678642273,
+ "learning_rate": 0.0006,
+ "loss": 3.586538314819336,
+ "step": 2965
+ },
+ {
+ "epoch": 41.19571865443425,
+ "grad_norm": 0.2370915710926056,
+ "learning_rate": 0.0006,
+ "loss": 3.599236011505127,
+ "step": 2966
+ },
+ {
+ "epoch": 41.20969855832241,
+ "grad_norm": 0.25749558210372925,
+ "learning_rate": 0.0006,
+ "loss": 3.631399154663086,
+ "step": 2967
+ },
+ {
+ "epoch": 41.22367846221057,
+ "grad_norm": 0.24754776060581207,
+ "learning_rate": 0.0006,
+ "loss": 3.6503920555114746,
+ "step": 2968
+ },
+ {
+ "epoch": 41.237658366098735,
+ "grad_norm": 0.22060903906822205,
+ "learning_rate": 0.0006,
+ "loss": 3.671673536300659,
+ "step": 2969
+ },
+ {
+ "epoch": 41.25163826998689,
+ "grad_norm": 0.19416594505310059,
+ "learning_rate": 0.0006,
+ "loss": 3.6158413887023926,
+ "step": 2970
+ },
+ {
+ "epoch": 41.265618173875055,
+ "grad_norm": 0.22596411406993866,
+ "learning_rate": 0.0006,
+ "loss": 3.64003849029541,
+ "step": 2971
+ },
+ {
+ "epoch": 41.27959807776322,
+ "grad_norm": 0.26785415410995483,
+ "learning_rate": 0.0006,
+ "loss": 3.642327308654785,
+ "step": 2972
+ },
+ {
+ "epoch": 41.293577981651374,
+ "grad_norm": 0.2988710403442383,
+ "learning_rate": 0.0006,
+ "loss": 3.6018929481506348,
+ "step": 2973
+ },
+ {
+ "epoch": 41.30755788553954,
+ "grad_norm": 0.2428133338689804,
+ "learning_rate": 0.0006,
+ "loss": 3.645270824432373,
+ "step": 2974
+ },
+ {
+ "epoch": 41.3215377894277,
+ "grad_norm": 0.20330320298671722,
+ "learning_rate": 0.0006,
+ "loss": 3.625495433807373,
+ "step": 2975
+ },
+ {
+ "epoch": 41.33551769331586,
+ "grad_norm": 0.2267787605524063,
+ "learning_rate": 0.0006,
+ "loss": 3.6469204425811768,
+ "step": 2976
+ },
+ {
+ "epoch": 41.34949759720402,
+ "grad_norm": 0.20702822506427765,
+ "learning_rate": 0.0006,
+ "loss": 3.644191265106201,
+ "step": 2977
+ },
+ {
+ "epoch": 41.36347750109218,
+ "grad_norm": 0.19693221151828766,
+ "learning_rate": 0.0006,
+ "loss": 3.591794967651367,
+ "step": 2978
+ },
+ {
+ "epoch": 41.37745740498034,
+ "grad_norm": 0.21193185448646545,
+ "learning_rate": 0.0006,
+ "loss": 3.6283936500549316,
+ "step": 2979
+ },
+ {
+ "epoch": 41.391437308868504,
+ "grad_norm": 0.20953163504600525,
+ "learning_rate": 0.0006,
+ "loss": 3.617565155029297,
+ "step": 2980
+ },
+ {
+ "epoch": 41.40541721275666,
+ "grad_norm": 0.21839819848537445,
+ "learning_rate": 0.0006,
+ "loss": 3.621209144592285,
+ "step": 2981
+ },
+ {
+ "epoch": 41.419397116644824,
+ "grad_norm": 0.2152671068906784,
+ "learning_rate": 0.0006,
+ "loss": 3.643197536468506,
+ "step": 2982
+ },
+ {
+ "epoch": 41.43337702053299,
+ "grad_norm": 0.2507486641407013,
+ "learning_rate": 0.0006,
+ "loss": 3.657499313354492,
+ "step": 2983
+ },
+ {
+ "epoch": 41.44735692442114,
+ "grad_norm": 0.24695388972759247,
+ "learning_rate": 0.0006,
+ "loss": 3.62170672416687,
+ "step": 2984
+ },
+ {
+ "epoch": 41.46133682830931,
+ "grad_norm": 0.22652822732925415,
+ "learning_rate": 0.0006,
+ "loss": 3.64322566986084,
+ "step": 2985
+ },
+ {
+ "epoch": 41.47531673219746,
+ "grad_norm": 0.2575881779193878,
+ "learning_rate": 0.0006,
+ "loss": 3.659621477127075,
+ "step": 2986
+ },
+ {
+ "epoch": 41.489296636085626,
+ "grad_norm": 0.24162672460079193,
+ "learning_rate": 0.0006,
+ "loss": 3.6527223587036133,
+ "step": 2987
+ },
+ {
+ "epoch": 41.50327653997379,
+ "grad_norm": 0.20930497348308563,
+ "learning_rate": 0.0006,
+ "loss": 3.6412787437438965,
+ "step": 2988
+ },
+ {
+ "epoch": 41.517256443861946,
+ "grad_norm": 0.20480819046497345,
+ "learning_rate": 0.0006,
+ "loss": 3.614767074584961,
+ "step": 2989
+ },
+ {
+ "epoch": 41.53123634775011,
+ "grad_norm": 0.20015820860862732,
+ "learning_rate": 0.0006,
+ "loss": 3.6512045860290527,
+ "step": 2990
+ },
+ {
+ "epoch": 41.54521625163827,
+ "grad_norm": 0.20220743119716644,
+ "learning_rate": 0.0006,
+ "loss": 3.6732325553894043,
+ "step": 2991
+ },
+ {
+ "epoch": 41.55919615552643,
+ "grad_norm": 0.20505326986312866,
+ "learning_rate": 0.0006,
+ "loss": 3.6374664306640625,
+ "step": 2992
+ },
+ {
+ "epoch": 41.57317605941459,
+ "grad_norm": 0.19423344731330872,
+ "learning_rate": 0.0006,
+ "loss": 3.6564126014709473,
+ "step": 2993
+ },
+ {
+ "epoch": 41.58715596330275,
+ "grad_norm": 0.19284583628177643,
+ "learning_rate": 0.0006,
+ "loss": 3.6460509300231934,
+ "step": 2994
+ },
+ {
+ "epoch": 41.60113586719091,
+ "grad_norm": 0.18488959968090057,
+ "learning_rate": 0.0006,
+ "loss": 3.632859468460083,
+ "step": 2995
+ },
+ {
+ "epoch": 41.615115771079076,
+ "grad_norm": 0.18816296756267548,
+ "learning_rate": 0.0006,
+ "loss": 3.5958361625671387,
+ "step": 2996
+ },
+ {
+ "epoch": 41.62909567496723,
+ "grad_norm": 0.18987809121608734,
+ "learning_rate": 0.0006,
+ "loss": 3.6330695152282715,
+ "step": 2997
+ },
+ {
+ "epoch": 41.643075578855395,
+ "grad_norm": 0.18999919295310974,
+ "learning_rate": 0.0006,
+ "loss": 3.6486730575561523,
+ "step": 2998
+ },
+ {
+ "epoch": 41.65705548274356,
+ "grad_norm": 0.20190183818340302,
+ "learning_rate": 0.0006,
+ "loss": 3.6564230918884277,
+ "step": 2999
+ },
+ {
+ "epoch": 41.671035386631715,
+ "grad_norm": 0.20331363379955292,
+ "learning_rate": 0.0006,
+ "loss": 3.6789698600769043,
+ "step": 3000
+ },
+ {
+ "epoch": 41.68501529051988,
+ "grad_norm": 0.21599505841732025,
+ "learning_rate": 0.0006,
+ "loss": 3.6544511318206787,
+ "step": 3001
+ },
+ {
+ "epoch": 41.69899519440804,
+ "grad_norm": 0.21123184263706207,
+ "learning_rate": 0.0006,
+ "loss": 3.6506948471069336,
+ "step": 3002
+ },
+ {
+ "epoch": 41.7129750982962,
+ "grad_norm": 0.21337002515792847,
+ "learning_rate": 0.0006,
+ "loss": 3.676854372024536,
+ "step": 3003
+ },
+ {
+ "epoch": 41.72695500218436,
+ "grad_norm": 0.22567597031593323,
+ "learning_rate": 0.0006,
+ "loss": 3.6467485427856445,
+ "step": 3004
+ },
+ {
+ "epoch": 41.74093490607252,
+ "grad_norm": 0.22923491895198822,
+ "learning_rate": 0.0006,
+ "loss": 3.663224697113037,
+ "step": 3005
+ },
+ {
+ "epoch": 41.75491480996068,
+ "grad_norm": 0.21511489152908325,
+ "learning_rate": 0.0006,
+ "loss": 3.6290054321289062,
+ "step": 3006
+ },
+ {
+ "epoch": 41.768894713848844,
+ "grad_norm": 0.23855915665626526,
+ "learning_rate": 0.0006,
+ "loss": 3.631225109100342,
+ "step": 3007
+ },
+ {
+ "epoch": 41.782874617737,
+ "grad_norm": 0.22771067917346954,
+ "learning_rate": 0.0006,
+ "loss": 3.652575731277466,
+ "step": 3008
+ },
+ {
+ "epoch": 41.796854521625164,
+ "grad_norm": 0.2006237953901291,
+ "learning_rate": 0.0006,
+ "loss": 3.6883468627929688,
+ "step": 3009
+ },
+ {
+ "epoch": 41.81083442551333,
+ "grad_norm": 0.21182459592819214,
+ "learning_rate": 0.0006,
+ "loss": 3.6443567276000977,
+ "step": 3010
+ },
+ {
+ "epoch": 41.824814329401484,
+ "grad_norm": 0.21083690226078033,
+ "learning_rate": 0.0006,
+ "loss": 3.66660475730896,
+ "step": 3011
+ },
+ {
+ "epoch": 41.83879423328965,
+ "grad_norm": 0.21232296526432037,
+ "learning_rate": 0.0006,
+ "loss": 3.6436524391174316,
+ "step": 3012
+ },
+ {
+ "epoch": 41.8527741371778,
+ "grad_norm": 0.2089361697435379,
+ "learning_rate": 0.0006,
+ "loss": 3.648113250732422,
+ "step": 3013
+ },
+ {
+ "epoch": 41.86675404106597,
+ "grad_norm": 0.21517033874988556,
+ "learning_rate": 0.0006,
+ "loss": 3.6382269859313965,
+ "step": 3014
+ },
+ {
+ "epoch": 41.88073394495413,
+ "grad_norm": 0.1930733323097229,
+ "learning_rate": 0.0006,
+ "loss": 3.639441967010498,
+ "step": 3015
+ },
+ {
+ "epoch": 41.89471384884229,
+ "grad_norm": 0.18282832205295563,
+ "learning_rate": 0.0006,
+ "loss": 3.652860164642334,
+ "step": 3016
+ },
+ {
+ "epoch": 41.90869375273045,
+ "grad_norm": 0.18649716675281525,
+ "learning_rate": 0.0006,
+ "loss": 3.6335558891296387,
+ "step": 3017
+ },
+ {
+ "epoch": 41.92267365661861,
+ "grad_norm": 0.18873754143714905,
+ "learning_rate": 0.0006,
+ "loss": 3.6743149757385254,
+ "step": 3018
+ },
+ {
+ "epoch": 41.93665356050677,
+ "grad_norm": 0.1937907189130783,
+ "learning_rate": 0.0006,
+ "loss": 3.6749300956726074,
+ "step": 3019
+ },
+ {
+ "epoch": 41.95063346439493,
+ "grad_norm": 0.20620854198932648,
+ "learning_rate": 0.0006,
+ "loss": 3.6591262817382812,
+ "step": 3020
+ },
+ {
+ "epoch": 41.964613368283096,
+ "grad_norm": 0.18541009724140167,
+ "learning_rate": 0.0006,
+ "loss": 3.647010326385498,
+ "step": 3021
+ },
+ {
+ "epoch": 41.97859327217125,
+ "grad_norm": 0.19224928319454193,
+ "learning_rate": 0.0006,
+ "loss": 3.629920482635498,
+ "step": 3022
+ },
+ {
+ "epoch": 41.992573176059416,
+ "grad_norm": 0.21286419034004211,
+ "learning_rate": 0.0006,
+ "loss": 3.6516964435577393,
+ "step": 3023
+ },
+ {
+ "epoch": 42.0,
+ "grad_norm": 0.24787360429763794,
+ "learning_rate": 0.0006,
+ "loss": 3.6378865242004395,
+ "step": 3024
+ },
+ {
+ "epoch": 42.0,
+ "eval_loss": 3.9910318851470947,
+ "eval_runtime": 43.7914,
+ "eval_samples_per_second": 55.764,
+ "eval_steps_per_second": 3.494,
+ "step": 3024
+ },
+ {
+ "epoch": 42.01397990388816,
+ "grad_norm": 0.21036255359649658,
+ "learning_rate": 0.0006,
+ "loss": 3.6604344844818115,
+ "step": 3025
+ },
+ {
+ "epoch": 42.02795980777632,
+ "grad_norm": 0.22240597009658813,
+ "learning_rate": 0.0006,
+ "loss": 3.6160645484924316,
+ "step": 3026
+ },
+ {
+ "epoch": 42.04193971166448,
+ "grad_norm": 0.2487850785255432,
+ "learning_rate": 0.0006,
+ "loss": 3.6293773651123047,
+ "step": 3027
+ },
+ {
+ "epoch": 42.05591961555265,
+ "grad_norm": 0.27058133482933044,
+ "learning_rate": 0.0006,
+ "loss": 3.5827436447143555,
+ "step": 3028
+ },
+ {
+ "epoch": 42.0698995194408,
+ "grad_norm": 0.25001782178878784,
+ "learning_rate": 0.0006,
+ "loss": 3.5833029747009277,
+ "step": 3029
+ },
+ {
+ "epoch": 42.083879423328966,
+ "grad_norm": 0.23811939358711243,
+ "learning_rate": 0.0006,
+ "loss": 3.605585813522339,
+ "step": 3030
+ },
+ {
+ "epoch": 42.09785932721712,
+ "grad_norm": 0.23279601335525513,
+ "learning_rate": 0.0006,
+ "loss": 3.607205867767334,
+ "step": 3031
+ },
+ {
+ "epoch": 42.111839231105286,
+ "grad_norm": 0.24410508573055267,
+ "learning_rate": 0.0006,
+ "loss": 3.621175765991211,
+ "step": 3032
+ },
+ {
+ "epoch": 42.12581913499345,
+ "grad_norm": 0.24782028794288635,
+ "learning_rate": 0.0006,
+ "loss": 3.6236867904663086,
+ "step": 3033
+ },
+ {
+ "epoch": 42.139799038881605,
+ "grad_norm": 0.2301972657442093,
+ "learning_rate": 0.0006,
+ "loss": 3.603853464126587,
+ "step": 3034
+ },
+ {
+ "epoch": 42.15377894276977,
+ "grad_norm": 0.21988637745380402,
+ "learning_rate": 0.0006,
+ "loss": 3.600142002105713,
+ "step": 3035
+ },
+ {
+ "epoch": 42.16775884665793,
+ "grad_norm": 0.22623786330223083,
+ "learning_rate": 0.0006,
+ "loss": 3.61971116065979,
+ "step": 3036
+ },
+ {
+ "epoch": 42.18173875054609,
+ "grad_norm": 0.21844688057899475,
+ "learning_rate": 0.0006,
+ "loss": 3.61320161819458,
+ "step": 3037
+ },
+ {
+ "epoch": 42.19571865443425,
+ "grad_norm": 0.20444536209106445,
+ "learning_rate": 0.0006,
+ "loss": 3.6179633140563965,
+ "step": 3038
+ },
+ {
+ "epoch": 42.20969855832241,
+ "grad_norm": 0.22862036526203156,
+ "learning_rate": 0.0006,
+ "loss": 3.605433940887451,
+ "step": 3039
+ },
+ {
+ "epoch": 42.22367846221057,
+ "grad_norm": 0.2906605005264282,
+ "learning_rate": 0.0006,
+ "loss": 3.6279449462890625,
+ "step": 3040
+ },
+ {
+ "epoch": 42.237658366098735,
+ "grad_norm": 0.29074418544769287,
+ "learning_rate": 0.0006,
+ "loss": 3.5959763526916504,
+ "step": 3041
+ },
+ {
+ "epoch": 42.25163826998689,
+ "grad_norm": 0.1994444876909256,
+ "learning_rate": 0.0006,
+ "loss": 3.5858588218688965,
+ "step": 3042
+ },
+ {
+ "epoch": 42.265618173875055,
+ "grad_norm": 0.20793452858924866,
+ "learning_rate": 0.0006,
+ "loss": 3.604630470275879,
+ "step": 3043
+ },
+ {
+ "epoch": 42.27959807776322,
+ "grad_norm": 0.2119535505771637,
+ "learning_rate": 0.0006,
+ "loss": 3.6287126541137695,
+ "step": 3044
+ },
+ {
+ "epoch": 42.293577981651374,
+ "grad_norm": 0.21092535555362701,
+ "learning_rate": 0.0006,
+ "loss": 3.646294593811035,
+ "step": 3045
+ },
+ {
+ "epoch": 42.30755788553954,
+ "grad_norm": 0.21474479138851166,
+ "learning_rate": 0.0006,
+ "loss": 3.6364355087280273,
+ "step": 3046
+ },
+ {
+ "epoch": 42.3215377894277,
+ "grad_norm": 0.21100781857967377,
+ "learning_rate": 0.0006,
+ "loss": 3.622528553009033,
+ "step": 3047
+ },
+ {
+ "epoch": 42.33551769331586,
+ "grad_norm": 0.20739853382110596,
+ "learning_rate": 0.0006,
+ "loss": 3.6261959075927734,
+ "step": 3048
+ },
+ {
+ "epoch": 42.34949759720402,
+ "grad_norm": 0.22264131903648376,
+ "learning_rate": 0.0006,
+ "loss": 3.6195173263549805,
+ "step": 3049
+ },
+ {
+ "epoch": 42.36347750109218,
+ "grad_norm": 0.23696285486221313,
+ "learning_rate": 0.0006,
+ "loss": 3.631103515625,
+ "step": 3050
+ },
+ {
+ "epoch": 42.37745740498034,
+ "grad_norm": 0.2124902606010437,
+ "learning_rate": 0.0006,
+ "loss": 3.6490437984466553,
+ "step": 3051
+ },
+ {
+ "epoch": 42.391437308868504,
+ "grad_norm": 0.18831083178520203,
+ "learning_rate": 0.0006,
+ "loss": 3.628459930419922,
+ "step": 3052
+ },
+ {
+ "epoch": 42.40541721275666,
+ "grad_norm": 0.20390060544013977,
+ "learning_rate": 0.0006,
+ "loss": 3.6348538398742676,
+ "step": 3053
+ },
+ {
+ "epoch": 42.419397116644824,
+ "grad_norm": 0.2205851823091507,
+ "learning_rate": 0.0006,
+ "loss": 3.6286797523498535,
+ "step": 3054
+ },
+ {
+ "epoch": 42.43337702053299,
+ "grad_norm": 0.21518434584140778,
+ "learning_rate": 0.0006,
+ "loss": 3.5918965339660645,
+ "step": 3055
+ },
+ {
+ "epoch": 42.44735692442114,
+ "grad_norm": 0.2342296987771988,
+ "learning_rate": 0.0006,
+ "loss": 3.6364407539367676,
+ "step": 3056
+ },
+ {
+ "epoch": 42.46133682830931,
+ "grad_norm": 0.2304094135761261,
+ "learning_rate": 0.0006,
+ "loss": 3.6561477184295654,
+ "step": 3057
+ },
+ {
+ "epoch": 42.47531673219746,
+ "grad_norm": 0.20882441103458405,
+ "learning_rate": 0.0006,
+ "loss": 3.611250638961792,
+ "step": 3058
+ },
+ {
+ "epoch": 42.489296636085626,
+ "grad_norm": 0.24346643686294556,
+ "learning_rate": 0.0006,
+ "loss": 3.580082416534424,
+ "step": 3059
+ },
+ {
+ "epoch": 42.50327653997379,
+ "grad_norm": 0.260711133480072,
+ "learning_rate": 0.0006,
+ "loss": 3.6179792881011963,
+ "step": 3060
+ },
+ {
+ "epoch": 42.517256443861946,
+ "grad_norm": 0.21223759651184082,
+ "learning_rate": 0.0006,
+ "loss": 3.6153154373168945,
+ "step": 3061
+ },
+ {
+ "epoch": 42.53123634775011,
+ "grad_norm": 0.21429137885570526,
+ "learning_rate": 0.0006,
+ "loss": 3.6003379821777344,
+ "step": 3062
+ },
+ {
+ "epoch": 42.54521625163827,
+ "grad_norm": 0.23659434914588928,
+ "learning_rate": 0.0006,
+ "loss": 3.6540589332580566,
+ "step": 3063
+ },
+ {
+ "epoch": 42.55919615552643,
+ "grad_norm": 0.280344158411026,
+ "learning_rate": 0.0006,
+ "loss": 3.6406192779541016,
+ "step": 3064
+ },
+ {
+ "epoch": 42.57317605941459,
+ "grad_norm": 0.2903953194618225,
+ "learning_rate": 0.0006,
+ "loss": 3.643479824066162,
+ "step": 3065
+ },
+ {
+ "epoch": 42.58715596330275,
+ "grad_norm": 0.24958311021327972,
+ "learning_rate": 0.0006,
+ "loss": 3.6320221424102783,
+ "step": 3066
+ },
+ {
+ "epoch": 42.60113586719091,
+ "grad_norm": 0.22525225579738617,
+ "learning_rate": 0.0006,
+ "loss": 3.641676425933838,
+ "step": 3067
+ },
+ {
+ "epoch": 42.615115771079076,
+ "grad_norm": 0.23025161027908325,
+ "learning_rate": 0.0006,
+ "loss": 3.6465210914611816,
+ "step": 3068
+ },
+ {
+ "epoch": 42.62909567496723,
+ "grad_norm": 0.21947328746318817,
+ "learning_rate": 0.0006,
+ "loss": 3.667877435684204,
+ "step": 3069
+ },
+ {
+ "epoch": 42.643075578855395,
+ "grad_norm": 0.22809366881847382,
+ "learning_rate": 0.0006,
+ "loss": 3.663166046142578,
+ "step": 3070
+ },
+ {
+ "epoch": 42.65705548274356,
+ "grad_norm": 0.21938708424568176,
+ "learning_rate": 0.0006,
+ "loss": 3.619001865386963,
+ "step": 3071
+ },
+ {
+ "epoch": 42.671035386631715,
+ "grad_norm": 0.231620192527771,
+ "learning_rate": 0.0006,
+ "loss": 3.652332305908203,
+ "step": 3072
+ },
+ {
+ "epoch": 42.68501529051988,
+ "grad_norm": 0.23683936893939972,
+ "learning_rate": 0.0006,
+ "loss": 3.6633410453796387,
+ "step": 3073
+ },
+ {
+ "epoch": 42.69899519440804,
+ "grad_norm": 0.23752044141292572,
+ "learning_rate": 0.0006,
+ "loss": 3.646064281463623,
+ "step": 3074
+ },
+ {
+ "epoch": 42.7129750982962,
+ "grad_norm": 0.23041971027851105,
+ "learning_rate": 0.0006,
+ "loss": 3.6431851387023926,
+ "step": 3075
+ },
+ {
+ "epoch": 42.72695500218436,
+ "grad_norm": 0.220438614487648,
+ "learning_rate": 0.0006,
+ "loss": 3.6499950885772705,
+ "step": 3076
+ },
+ {
+ "epoch": 42.74093490607252,
+ "grad_norm": 0.24297107756137848,
+ "learning_rate": 0.0006,
+ "loss": 3.6655125617980957,
+ "step": 3077
+ },
+ {
+ "epoch": 42.75491480996068,
+ "grad_norm": 0.21835893392562866,
+ "learning_rate": 0.0006,
+ "loss": 3.61672043800354,
+ "step": 3078
+ },
+ {
+ "epoch": 42.768894713848844,
+ "grad_norm": 0.22490793466567993,
+ "learning_rate": 0.0006,
+ "loss": 3.652825355529785,
+ "step": 3079
+ },
+ {
+ "epoch": 42.782874617737,
+ "grad_norm": 0.2246086746454239,
+ "learning_rate": 0.0006,
+ "loss": 3.6290056705474854,
+ "step": 3080
+ },
+ {
+ "epoch": 42.796854521625164,
+ "grad_norm": 0.21527042984962463,
+ "learning_rate": 0.0006,
+ "loss": 3.6587281227111816,
+ "step": 3081
+ },
+ {
+ "epoch": 42.81083442551333,
+ "grad_norm": 0.19586899876594543,
+ "learning_rate": 0.0006,
+ "loss": 3.639626979827881,
+ "step": 3082
+ },
+ {
+ "epoch": 42.824814329401484,
+ "grad_norm": 0.20881155133247375,
+ "learning_rate": 0.0006,
+ "loss": 3.6305861473083496,
+ "step": 3083
+ },
+ {
+ "epoch": 42.83879423328965,
+ "grad_norm": 0.20094981789588928,
+ "learning_rate": 0.0006,
+ "loss": 3.609614849090576,
+ "step": 3084
+ },
+ {
+ "epoch": 42.8527741371778,
+ "grad_norm": 0.21786150336265564,
+ "learning_rate": 0.0006,
+ "loss": 3.6423556804656982,
+ "step": 3085
+ },
+ {
+ "epoch": 42.86675404106597,
+ "grad_norm": 0.24493595957756042,
+ "learning_rate": 0.0006,
+ "loss": 3.631321668624878,
+ "step": 3086
+ },
+ {
+ "epoch": 42.88073394495413,
+ "grad_norm": 0.2437327355146408,
+ "learning_rate": 0.0006,
+ "loss": 3.6624178886413574,
+ "step": 3087
+ },
+ {
+ "epoch": 42.89471384884229,
+ "grad_norm": 0.21020543575286865,
+ "learning_rate": 0.0006,
+ "loss": 3.6567513942718506,
+ "step": 3088
+ },
+ {
+ "epoch": 42.90869375273045,
+ "grad_norm": 0.18977083265781403,
+ "learning_rate": 0.0006,
+ "loss": 3.6268601417541504,
+ "step": 3089
+ },
+ {
+ "epoch": 42.92267365661861,
+ "grad_norm": 0.2211192399263382,
+ "learning_rate": 0.0006,
+ "loss": 3.6690402030944824,
+ "step": 3090
+ },
+ {
+ "epoch": 42.93665356050677,
+ "grad_norm": 0.2695990204811096,
+ "learning_rate": 0.0006,
+ "loss": 3.667701244354248,
+ "step": 3091
+ },
+ {
+ "epoch": 42.95063346439493,
+ "grad_norm": 0.25910887122154236,
+ "learning_rate": 0.0006,
+ "loss": 3.627504587173462,
+ "step": 3092
+ },
+ {
+ "epoch": 42.964613368283096,
+ "grad_norm": 0.2466248720884323,
+ "learning_rate": 0.0006,
+ "loss": 3.6462182998657227,
+ "step": 3093
+ },
+ {
+ "epoch": 42.97859327217125,
+ "grad_norm": 0.22997038066387177,
+ "learning_rate": 0.0006,
+ "loss": 3.647430896759033,
+ "step": 3094
+ },
+ {
+ "epoch": 42.992573176059416,
+ "grad_norm": 0.1989113837480545,
+ "learning_rate": 0.0006,
+ "loss": 3.6502084732055664,
+ "step": 3095
+ },
+ {
+ "epoch": 43.0,
+ "grad_norm": 0.22976496815681458,
+ "learning_rate": 0.0006,
+ "loss": 3.6963884830474854,
+ "step": 3096
+ },
+ {
+ "epoch": 43.0,
+ "eval_loss": 3.9656779766082764,
+ "eval_runtime": 43.9281,
+ "eval_samples_per_second": 55.591,
+ "eval_steps_per_second": 3.483,
+ "step": 3096
+ },
+ {
+ "epoch": 43.01397990388816,
+ "grad_norm": 0.2862325608730316,
+ "learning_rate": 0.0006,
+ "loss": 3.581247568130493,
+ "step": 3097
+ },
+ {
+ "epoch": 43.02795980777632,
+ "grad_norm": 0.3867015540599823,
+ "learning_rate": 0.0006,
+ "loss": 3.611076593399048,
+ "step": 3098
+ },
+ {
+ "epoch": 43.04193971166448,
+ "grad_norm": 0.4139448404312134,
+ "learning_rate": 0.0006,
+ "loss": 3.625164031982422,
+ "step": 3099
+ },
+ {
+ "epoch": 43.05591961555265,
+ "grad_norm": 0.292407363653183,
+ "learning_rate": 0.0006,
+ "loss": 3.615546703338623,
+ "step": 3100
+ },
+ {
+ "epoch": 43.0698995194408,
+ "grad_norm": 0.24272124469280243,
+ "learning_rate": 0.0006,
+ "loss": 3.5965943336486816,
+ "step": 3101
+ },
+ {
+ "epoch": 43.083879423328966,
+ "grad_norm": 0.2761254608631134,
+ "learning_rate": 0.0006,
+ "loss": 3.605706214904785,
+ "step": 3102
+ },
+ {
+ "epoch": 43.09785932721712,
+ "grad_norm": 0.25232183933258057,
+ "learning_rate": 0.0006,
+ "loss": 3.6252012252807617,
+ "step": 3103
+ },
+ {
+ "epoch": 43.111839231105286,
+ "grad_norm": 0.248970165848732,
+ "learning_rate": 0.0006,
+ "loss": 3.6028337478637695,
+ "step": 3104
+ },
+ {
+ "epoch": 43.12581913499345,
+ "grad_norm": 0.22088921070098877,
+ "learning_rate": 0.0006,
+ "loss": 3.591614007949829,
+ "step": 3105
+ },
+ {
+ "epoch": 43.139799038881605,
+ "grad_norm": 0.21528655290603638,
+ "learning_rate": 0.0006,
+ "loss": 3.6237306594848633,
+ "step": 3106
+ },
+ {
+ "epoch": 43.15377894276977,
+ "grad_norm": 0.22799135744571686,
+ "learning_rate": 0.0006,
+ "loss": 3.5968847274780273,
+ "step": 3107
+ },
+ {
+ "epoch": 43.16775884665793,
+ "grad_norm": 0.23102127015590668,
+ "learning_rate": 0.0006,
+ "loss": 3.6046414375305176,
+ "step": 3108
+ },
+ {
+ "epoch": 43.18173875054609,
+ "grad_norm": 0.22876501083374023,
+ "learning_rate": 0.0006,
+ "loss": 3.635608196258545,
+ "step": 3109
+ },
+ {
+ "epoch": 43.19571865443425,
+ "grad_norm": 0.24920420348644257,
+ "learning_rate": 0.0006,
+ "loss": 3.628662109375,
+ "step": 3110
+ },
+ {
+ "epoch": 43.20969855832241,
+ "grad_norm": 0.2527749538421631,
+ "learning_rate": 0.0006,
+ "loss": 3.6109046936035156,
+ "step": 3111
+ },
+ {
+ "epoch": 43.22367846221057,
+ "grad_norm": 0.22529229521751404,
+ "learning_rate": 0.0006,
+ "loss": 3.6536030769348145,
+ "step": 3112
+ },
+ {
+ "epoch": 43.237658366098735,
+ "grad_norm": 0.20031821727752686,
+ "learning_rate": 0.0006,
+ "loss": 3.6328792572021484,
+ "step": 3113
+ },
+ {
+ "epoch": 43.25163826998689,
+ "grad_norm": 0.21075189113616943,
+ "learning_rate": 0.0006,
+ "loss": 3.6200530529022217,
+ "step": 3114
+ },
+ {
+ "epoch": 43.265618173875055,
+ "grad_norm": 0.21164856851100922,
+ "learning_rate": 0.0006,
+ "loss": 3.6276001930236816,
+ "step": 3115
+ },
+ {
+ "epoch": 43.27959807776322,
+ "grad_norm": 0.19306758046150208,
+ "learning_rate": 0.0006,
+ "loss": 3.608675956726074,
+ "step": 3116
+ },
+ {
+ "epoch": 43.293577981651374,
+ "grad_norm": 0.20288796722888947,
+ "learning_rate": 0.0006,
+ "loss": 3.6057004928588867,
+ "step": 3117
+ },
+ {
+ "epoch": 43.30755788553954,
+ "grad_norm": 0.1901484876871109,
+ "learning_rate": 0.0006,
+ "loss": 3.6191725730895996,
+ "step": 3118
+ },
+ {
+ "epoch": 43.3215377894277,
+ "grad_norm": 0.19438181817531586,
+ "learning_rate": 0.0006,
+ "loss": 3.5814337730407715,
+ "step": 3119
+ },
+ {
+ "epoch": 43.33551769331586,
+ "grad_norm": 0.19924484193325043,
+ "learning_rate": 0.0006,
+ "loss": 3.6168713569641113,
+ "step": 3120
+ },
+ {
+ "epoch": 43.34949759720402,
+ "grad_norm": 0.20757409930229187,
+ "learning_rate": 0.0006,
+ "loss": 3.6281509399414062,
+ "step": 3121
+ },
+ {
+ "epoch": 43.36347750109218,
+ "grad_norm": 0.22500184178352356,
+ "learning_rate": 0.0006,
+ "loss": 3.635101795196533,
+ "step": 3122
+ },
+ {
+ "epoch": 43.37745740498034,
+ "grad_norm": 0.22061555087566376,
+ "learning_rate": 0.0006,
+ "loss": 3.630622386932373,
+ "step": 3123
+ },
+ {
+ "epoch": 43.391437308868504,
+ "grad_norm": 0.2094152420759201,
+ "learning_rate": 0.0006,
+ "loss": 3.581803798675537,
+ "step": 3124
+ },
+ {
+ "epoch": 43.40541721275666,
+ "grad_norm": 0.19607678055763245,
+ "learning_rate": 0.0006,
+ "loss": 3.6149864196777344,
+ "step": 3125
+ },
+ {
+ "epoch": 43.419397116644824,
+ "grad_norm": 0.18985028564929962,
+ "learning_rate": 0.0006,
+ "loss": 3.6338040828704834,
+ "step": 3126
+ },
+ {
+ "epoch": 43.43337702053299,
+ "grad_norm": 0.20490778982639313,
+ "learning_rate": 0.0006,
+ "loss": 3.63275146484375,
+ "step": 3127
+ },
+ {
+ "epoch": 43.44735692442114,
+ "grad_norm": 0.24385297298431396,
+ "learning_rate": 0.0006,
+ "loss": 3.6412134170532227,
+ "step": 3128
+ },
+ {
+ "epoch": 43.46133682830931,
+ "grad_norm": 0.243601992726326,
+ "learning_rate": 0.0006,
+ "loss": 3.594238758087158,
+ "step": 3129
+ },
+ {
+ "epoch": 43.47531673219746,
+ "grad_norm": 0.21314913034439087,
+ "learning_rate": 0.0006,
+ "loss": 3.5962629318237305,
+ "step": 3130
+ },
+ {
+ "epoch": 43.489296636085626,
+ "grad_norm": 0.20499329268932343,
+ "learning_rate": 0.0006,
+ "loss": 3.61600923538208,
+ "step": 3131
+ },
+ {
+ "epoch": 43.50327653997379,
+ "grad_norm": 0.20199540257453918,
+ "learning_rate": 0.0006,
+ "loss": 3.638469934463501,
+ "step": 3132
+ },
+ {
+ "epoch": 43.517256443861946,
+ "grad_norm": 0.19932983815670013,
+ "learning_rate": 0.0006,
+ "loss": 3.619145393371582,
+ "step": 3133
+ },
+ {
+ "epoch": 43.53123634775011,
+ "grad_norm": 0.20401954650878906,
+ "learning_rate": 0.0006,
+ "loss": 3.643700122833252,
+ "step": 3134
+ },
+ {
+ "epoch": 43.54521625163827,
+ "grad_norm": 0.20784904062747955,
+ "learning_rate": 0.0006,
+ "loss": 3.619272232055664,
+ "step": 3135
+ },
+ {
+ "epoch": 43.55919615552643,
+ "grad_norm": 0.21003122627735138,
+ "learning_rate": 0.0006,
+ "loss": 3.629542827606201,
+ "step": 3136
+ },
+ {
+ "epoch": 43.57317605941459,
+ "grad_norm": 0.2220298945903778,
+ "learning_rate": 0.0006,
+ "loss": 3.655543804168701,
+ "step": 3137
+ },
+ {
+ "epoch": 43.58715596330275,
+ "grad_norm": 0.21159163117408752,
+ "learning_rate": 0.0006,
+ "loss": 3.6092495918273926,
+ "step": 3138
+ },
+ {
+ "epoch": 43.60113586719091,
+ "grad_norm": 0.19462746381759644,
+ "learning_rate": 0.0006,
+ "loss": 3.6447129249572754,
+ "step": 3139
+ },
+ {
+ "epoch": 43.615115771079076,
+ "grad_norm": 0.20523829758167267,
+ "learning_rate": 0.0006,
+ "loss": 3.6292669773101807,
+ "step": 3140
+ },
+ {
+ "epoch": 43.62909567496723,
+ "grad_norm": 0.2172321230173111,
+ "learning_rate": 0.0006,
+ "loss": 3.6144580841064453,
+ "step": 3141
+ },
+ {
+ "epoch": 43.643075578855395,
+ "grad_norm": 0.21751564741134644,
+ "learning_rate": 0.0006,
+ "loss": 3.6381068229675293,
+ "step": 3142
+ },
+ {
+ "epoch": 43.65705548274356,
+ "grad_norm": 0.1914236694574356,
+ "learning_rate": 0.0006,
+ "loss": 3.6392078399658203,
+ "step": 3143
+ },
+ {
+ "epoch": 43.671035386631715,
+ "grad_norm": 0.19792547821998596,
+ "learning_rate": 0.0006,
+ "loss": 3.6394457817077637,
+ "step": 3144
+ },
+ {
+ "epoch": 43.68501529051988,
+ "grad_norm": 0.2106214165687561,
+ "learning_rate": 0.0006,
+ "loss": 3.626147747039795,
+ "step": 3145
+ },
+ {
+ "epoch": 43.69899519440804,
+ "grad_norm": 0.21802955865859985,
+ "learning_rate": 0.0006,
+ "loss": 3.63372802734375,
+ "step": 3146
+ },
+ {
+ "epoch": 43.7129750982962,
+ "grad_norm": 0.21498727798461914,
+ "learning_rate": 0.0006,
+ "loss": 3.6193063259124756,
+ "step": 3147
+ },
+ {
+ "epoch": 43.72695500218436,
+ "grad_norm": 0.2176690250635147,
+ "learning_rate": 0.0006,
+ "loss": 3.6431519985198975,
+ "step": 3148
+ },
+ {
+ "epoch": 43.74093490607252,
+ "grad_norm": 0.26883506774902344,
+ "learning_rate": 0.0006,
+ "loss": 3.6216721534729004,
+ "step": 3149
+ },
+ {
+ "epoch": 43.75491480996068,
+ "grad_norm": 0.23485299944877625,
+ "learning_rate": 0.0006,
+ "loss": 3.6361191272735596,
+ "step": 3150
+ },
+ {
+ "epoch": 43.768894713848844,
+ "grad_norm": 0.20496341586112976,
+ "learning_rate": 0.0006,
+ "loss": 3.6258792877197266,
+ "step": 3151
+ },
+ {
+ "epoch": 43.782874617737,
+ "grad_norm": 0.21792510151863098,
+ "learning_rate": 0.0006,
+ "loss": 3.6522839069366455,
+ "step": 3152
+ },
+ {
+ "epoch": 43.796854521625164,
+ "grad_norm": 0.2589452564716339,
+ "learning_rate": 0.0006,
+ "loss": 3.651235580444336,
+ "step": 3153
+ },
+ {
+ "epoch": 43.81083442551333,
+ "grad_norm": 0.24883611500263214,
+ "learning_rate": 0.0006,
+ "loss": 3.6382546424865723,
+ "step": 3154
+ },
+ {
+ "epoch": 43.824814329401484,
+ "grad_norm": 0.22466720640659332,
+ "learning_rate": 0.0006,
+ "loss": 3.6232261657714844,
+ "step": 3155
+ },
+ {
+ "epoch": 43.83879423328965,
+ "grad_norm": 0.19477292895317078,
+ "learning_rate": 0.0006,
+ "loss": 3.6350135803222656,
+ "step": 3156
+ },
+ {
+ "epoch": 43.8527741371778,
+ "grad_norm": 0.20302540063858032,
+ "learning_rate": 0.0006,
+ "loss": 3.638143539428711,
+ "step": 3157
+ },
+ {
+ "epoch": 43.86675404106597,
+ "grad_norm": 0.2112276554107666,
+ "learning_rate": 0.0006,
+ "loss": 3.6415610313415527,
+ "step": 3158
+ },
+ {
+ "epoch": 43.88073394495413,
+ "grad_norm": 0.20544779300689697,
+ "learning_rate": 0.0006,
+ "loss": 3.6437134742736816,
+ "step": 3159
+ },
+ {
+ "epoch": 43.89471384884229,
+ "grad_norm": 0.2320292890071869,
+ "learning_rate": 0.0006,
+ "loss": 3.6178359985351562,
+ "step": 3160
+ },
+ {
+ "epoch": 43.90869375273045,
+ "grad_norm": 0.25862693786621094,
+ "learning_rate": 0.0006,
+ "loss": 3.618229389190674,
+ "step": 3161
+ },
+ {
+ "epoch": 43.92267365661861,
+ "grad_norm": 0.2741934061050415,
+ "learning_rate": 0.0006,
+ "loss": 3.6046690940856934,
+ "step": 3162
+ },
+ {
+ "epoch": 43.93665356050677,
+ "grad_norm": 0.24312593042850494,
+ "learning_rate": 0.0006,
+ "loss": 3.5835556983947754,
+ "step": 3163
+ },
+ {
+ "epoch": 43.95063346439493,
+ "grad_norm": 0.22174517810344696,
+ "learning_rate": 0.0006,
+ "loss": 3.6505162715911865,
+ "step": 3164
+ },
+ {
+ "epoch": 43.964613368283096,
+ "grad_norm": 0.22016975283622742,
+ "learning_rate": 0.0006,
+ "loss": 3.6385562419891357,
+ "step": 3165
+ },
+ {
+ "epoch": 43.97859327217125,
+ "grad_norm": 0.23034313321113586,
+ "learning_rate": 0.0006,
+ "loss": 3.6345865726470947,
+ "step": 3166
+ },
+ {
+ "epoch": 43.992573176059416,
+ "grad_norm": 0.21236231923103333,
+ "learning_rate": 0.0006,
+ "loss": 3.6337084770202637,
+ "step": 3167
+ },
+ {
+ "epoch": 44.0,
+ "grad_norm": 0.2344549298286438,
+ "learning_rate": 0.0006,
+ "loss": 3.677978515625,
+ "step": 3168
+ },
+ {
+ "epoch": 44.0,
+ "eval_loss": 3.9817888736724854,
+ "eval_runtime": 44.4396,
+ "eval_samples_per_second": 54.951,
+ "eval_steps_per_second": 3.443,
+ "step": 3168
+ },
+ {
+ "epoch": 44.01397990388816,
+ "grad_norm": 0.19790801405906677,
+ "learning_rate": 0.0006,
+ "loss": 3.590817451477051,
+ "step": 3169
+ },
+ {
+ "epoch": 44.02795980777632,
+ "grad_norm": 0.22922387719154358,
+ "learning_rate": 0.0006,
+ "loss": 3.643888473510742,
+ "step": 3170
+ },
+ {
+ "epoch": 44.04193971166448,
+ "grad_norm": 0.24750149250030518,
+ "learning_rate": 0.0006,
+ "loss": 3.596278667449951,
+ "step": 3171
+ },
+ {
+ "epoch": 44.05591961555265,
+ "grad_norm": 0.2511967420578003,
+ "learning_rate": 0.0006,
+ "loss": 3.6138253211975098,
+ "step": 3172
+ },
+ {
+ "epoch": 44.0698995194408,
+ "grad_norm": 0.2530326843261719,
+ "learning_rate": 0.0006,
+ "loss": 3.5710060596466064,
+ "step": 3173
+ },
+ {
+ "epoch": 44.083879423328966,
+ "grad_norm": 0.2629041373729706,
+ "learning_rate": 0.0006,
+ "loss": 3.61676025390625,
+ "step": 3174
+ },
+ {
+ "epoch": 44.09785932721712,
+ "grad_norm": 0.27373939752578735,
+ "learning_rate": 0.0006,
+ "loss": 3.613091230392456,
+ "step": 3175
+ },
+ {
+ "epoch": 44.111839231105286,
+ "grad_norm": 0.24354346096515656,
+ "learning_rate": 0.0006,
+ "loss": 3.6133360862731934,
+ "step": 3176
+ },
+ {
+ "epoch": 44.12581913499345,
+ "grad_norm": 0.21540892124176025,
+ "learning_rate": 0.0006,
+ "loss": 3.6367645263671875,
+ "step": 3177
+ },
+ {
+ "epoch": 44.139799038881605,
+ "grad_norm": 0.22251278162002563,
+ "learning_rate": 0.0006,
+ "loss": 3.6266322135925293,
+ "step": 3178
+ },
+ {
+ "epoch": 44.15377894276977,
+ "grad_norm": 0.26196029782295227,
+ "learning_rate": 0.0006,
+ "loss": 3.616487979888916,
+ "step": 3179
+ },
+ {
+ "epoch": 44.16775884665793,
+ "grad_norm": 0.2614341080188751,
+ "learning_rate": 0.0006,
+ "loss": 3.5902786254882812,
+ "step": 3180
+ },
+ {
+ "epoch": 44.18173875054609,
+ "grad_norm": 0.23517177999019623,
+ "learning_rate": 0.0006,
+ "loss": 3.610124111175537,
+ "step": 3181
+ },
+ {
+ "epoch": 44.19571865443425,
+ "grad_norm": 0.20091469585895538,
+ "learning_rate": 0.0006,
+ "loss": 3.5861713886260986,
+ "step": 3182
+ },
+ {
+ "epoch": 44.20969855832241,
+ "grad_norm": 0.19659830629825592,
+ "learning_rate": 0.0006,
+ "loss": 3.6157889366149902,
+ "step": 3183
+ },
+ {
+ "epoch": 44.22367846221057,
+ "grad_norm": 0.20690861344337463,
+ "learning_rate": 0.0006,
+ "loss": 3.5710649490356445,
+ "step": 3184
+ },
+ {
+ "epoch": 44.237658366098735,
+ "grad_norm": 0.2478247433900833,
+ "learning_rate": 0.0006,
+ "loss": 3.609031915664673,
+ "step": 3185
+ },
+ {
+ "epoch": 44.25163826998689,
+ "grad_norm": 0.2678471505641937,
+ "learning_rate": 0.0006,
+ "loss": 3.6412887573242188,
+ "step": 3186
+ },
+ {
+ "epoch": 44.265618173875055,
+ "grad_norm": 0.21856079995632172,
+ "learning_rate": 0.0006,
+ "loss": 3.6113123893737793,
+ "step": 3187
+ },
+ {
+ "epoch": 44.27959807776322,
+ "grad_norm": 0.23104850947856903,
+ "learning_rate": 0.0006,
+ "loss": 3.6022086143493652,
+ "step": 3188
+ },
+ {
+ "epoch": 44.293577981651374,
+ "grad_norm": 0.2380223423242569,
+ "learning_rate": 0.0006,
+ "loss": 3.598735809326172,
+ "step": 3189
+ },
+ {
+ "epoch": 44.30755788553954,
+ "grad_norm": 0.23005320131778717,
+ "learning_rate": 0.0006,
+ "loss": 3.595881938934326,
+ "step": 3190
+ },
+ {
+ "epoch": 44.3215377894277,
+ "grad_norm": 0.23327432572841644,
+ "learning_rate": 0.0006,
+ "loss": 3.6198601722717285,
+ "step": 3191
+ },
+ {
+ "epoch": 44.33551769331586,
+ "grad_norm": 0.2272268831729889,
+ "learning_rate": 0.0006,
+ "loss": 3.6135387420654297,
+ "step": 3192
+ },
+ {
+ "epoch": 44.34949759720402,
+ "grad_norm": 0.2518279552459717,
+ "learning_rate": 0.0006,
+ "loss": 3.6084556579589844,
+ "step": 3193
+ },
+ {
+ "epoch": 44.36347750109218,
+ "grad_norm": 0.27668607234954834,
+ "learning_rate": 0.0006,
+ "loss": 3.644430160522461,
+ "step": 3194
+ },
+ {
+ "epoch": 44.37745740498034,
+ "grad_norm": 0.26110342144966125,
+ "learning_rate": 0.0006,
+ "loss": 3.64072322845459,
+ "step": 3195
+ },
+ {
+ "epoch": 44.391437308868504,
+ "grad_norm": 0.22767964005470276,
+ "learning_rate": 0.0006,
+ "loss": 3.5570502281188965,
+ "step": 3196
+ },
+ {
+ "epoch": 44.40541721275666,
+ "grad_norm": 0.2199093997478485,
+ "learning_rate": 0.0006,
+ "loss": 3.558889150619507,
+ "step": 3197
+ },
+ {
+ "epoch": 44.419397116644824,
+ "grad_norm": 0.21653494238853455,
+ "learning_rate": 0.0006,
+ "loss": 3.6215333938598633,
+ "step": 3198
+ },
+ {
+ "epoch": 44.43337702053299,
+ "grad_norm": 0.1958773136138916,
+ "learning_rate": 0.0006,
+ "loss": 3.588468551635742,
+ "step": 3199
+ },
+ {
+ "epoch": 44.44735692442114,
+ "grad_norm": 0.20205403864383698,
+ "learning_rate": 0.0006,
+ "loss": 3.6109578609466553,
+ "step": 3200
+ },
+ {
+ "epoch": 44.46133682830931,
+ "grad_norm": 0.19632115960121155,
+ "learning_rate": 0.0006,
+ "loss": 3.634315013885498,
+ "step": 3201
+ },
+ {
+ "epoch": 44.47531673219746,
+ "grad_norm": 0.19327203929424286,
+ "learning_rate": 0.0006,
+ "loss": 3.6335930824279785,
+ "step": 3202
+ },
+ {
+ "epoch": 44.489296636085626,
+ "grad_norm": 0.19743897020816803,
+ "learning_rate": 0.0006,
+ "loss": 3.6164016723632812,
+ "step": 3203
+ },
+ {
+ "epoch": 44.50327653997379,
+ "grad_norm": 0.20413564145565033,
+ "learning_rate": 0.0006,
+ "loss": 3.663613796234131,
+ "step": 3204
+ },
+ {
+ "epoch": 44.517256443861946,
+ "grad_norm": 0.2057798206806183,
+ "learning_rate": 0.0006,
+ "loss": 3.625131130218506,
+ "step": 3205
+ },
+ {
+ "epoch": 44.53123634775011,
+ "grad_norm": 0.20076915621757507,
+ "learning_rate": 0.0006,
+ "loss": 3.6362178325653076,
+ "step": 3206
+ },
+ {
+ "epoch": 44.54521625163827,
+ "grad_norm": 0.2381955236196518,
+ "learning_rate": 0.0006,
+ "loss": 3.621263265609741,
+ "step": 3207
+ },
+ {
+ "epoch": 44.55919615552643,
+ "grad_norm": 0.27008768916130066,
+ "learning_rate": 0.0006,
+ "loss": 3.6133322715759277,
+ "step": 3208
+ },
+ {
+ "epoch": 44.57317605941459,
+ "grad_norm": 0.25677573680877686,
+ "learning_rate": 0.0006,
+ "loss": 3.6210851669311523,
+ "step": 3209
+ },
+ {
+ "epoch": 44.58715596330275,
+ "grad_norm": 0.21022997796535492,
+ "learning_rate": 0.0006,
+ "loss": 3.626483917236328,
+ "step": 3210
+ },
+ {
+ "epoch": 44.60113586719091,
+ "grad_norm": 0.19918566942214966,
+ "learning_rate": 0.0006,
+ "loss": 3.6321091651916504,
+ "step": 3211
+ },
+ {
+ "epoch": 44.615115771079076,
+ "grad_norm": 0.2114727795124054,
+ "learning_rate": 0.0006,
+ "loss": 3.5767595767974854,
+ "step": 3212
+ },
+ {
+ "epoch": 44.62909567496723,
+ "grad_norm": 0.20968441665172577,
+ "learning_rate": 0.0006,
+ "loss": 3.6040430068969727,
+ "step": 3213
+ },
+ {
+ "epoch": 44.643075578855395,
+ "grad_norm": 0.19996227324008942,
+ "learning_rate": 0.0006,
+ "loss": 3.6688590049743652,
+ "step": 3214
+ },
+ {
+ "epoch": 44.65705548274356,
+ "grad_norm": 0.19998830556869507,
+ "learning_rate": 0.0006,
+ "loss": 3.6349434852600098,
+ "step": 3215
+ },
+ {
+ "epoch": 44.671035386631715,
+ "grad_norm": 0.20812496542930603,
+ "learning_rate": 0.0006,
+ "loss": 3.6363840103149414,
+ "step": 3216
+ },
+ {
+ "epoch": 44.68501529051988,
+ "grad_norm": 0.1988825500011444,
+ "learning_rate": 0.0006,
+ "loss": 3.6180496215820312,
+ "step": 3217
+ },
+ {
+ "epoch": 44.69899519440804,
+ "grad_norm": 0.2114664614200592,
+ "learning_rate": 0.0006,
+ "loss": 3.6362106800079346,
+ "step": 3218
+ },
+ {
+ "epoch": 44.7129750982962,
+ "grad_norm": 0.19847962260246277,
+ "learning_rate": 0.0006,
+ "loss": 3.618500232696533,
+ "step": 3219
+ },
+ {
+ "epoch": 44.72695500218436,
+ "grad_norm": 0.19903887808322906,
+ "learning_rate": 0.0006,
+ "loss": 3.6360888481140137,
+ "step": 3220
+ },
+ {
+ "epoch": 44.74093490607252,
+ "grad_norm": 0.21198545396327972,
+ "learning_rate": 0.0006,
+ "loss": 3.6347005367279053,
+ "step": 3221
+ },
+ {
+ "epoch": 44.75491480996068,
+ "grad_norm": 0.18334898352622986,
+ "learning_rate": 0.0006,
+ "loss": 3.6160783767700195,
+ "step": 3222
+ },
+ {
+ "epoch": 44.768894713848844,
+ "grad_norm": 0.19260665774345398,
+ "learning_rate": 0.0006,
+ "loss": 3.6322834491729736,
+ "step": 3223
+ },
+ {
+ "epoch": 44.782874617737,
+ "grad_norm": 0.2084558755159378,
+ "learning_rate": 0.0006,
+ "loss": 3.615227699279785,
+ "step": 3224
+ },
+ {
+ "epoch": 44.796854521625164,
+ "grad_norm": 0.24538686871528625,
+ "learning_rate": 0.0006,
+ "loss": 3.6387081146240234,
+ "step": 3225
+ },
+ {
+ "epoch": 44.81083442551333,
+ "grad_norm": 0.23291894793510437,
+ "learning_rate": 0.0006,
+ "loss": 3.6245408058166504,
+ "step": 3226
+ },
+ {
+ "epoch": 44.824814329401484,
+ "grad_norm": 0.20715969800949097,
+ "learning_rate": 0.0006,
+ "loss": 3.633620262145996,
+ "step": 3227
+ },
+ {
+ "epoch": 44.83879423328965,
+ "grad_norm": 0.20866821706295013,
+ "learning_rate": 0.0006,
+ "loss": 3.613438129425049,
+ "step": 3228
+ },
+ {
+ "epoch": 44.8527741371778,
+ "grad_norm": 0.2048904299736023,
+ "learning_rate": 0.0006,
+ "loss": 3.668807029724121,
+ "step": 3229
+ },
+ {
+ "epoch": 44.86675404106597,
+ "grad_norm": 0.2073894739151001,
+ "learning_rate": 0.0006,
+ "loss": 3.6000914573669434,
+ "step": 3230
+ },
+ {
+ "epoch": 44.88073394495413,
+ "grad_norm": 0.22017404437065125,
+ "learning_rate": 0.0006,
+ "loss": 3.6024718284606934,
+ "step": 3231
+ },
+ {
+ "epoch": 44.89471384884229,
+ "grad_norm": 0.23971669375896454,
+ "learning_rate": 0.0006,
+ "loss": 3.6339516639709473,
+ "step": 3232
+ },
+ {
+ "epoch": 44.90869375273045,
+ "grad_norm": 0.2258273959159851,
+ "learning_rate": 0.0006,
+ "loss": 3.6480093002319336,
+ "step": 3233
+ },
+ {
+ "epoch": 44.92267365661861,
+ "grad_norm": 0.22079502046108246,
+ "learning_rate": 0.0006,
+ "loss": 3.643446922302246,
+ "step": 3234
+ },
+ {
+ "epoch": 44.93665356050677,
+ "grad_norm": 0.22109337151050568,
+ "learning_rate": 0.0006,
+ "loss": 3.5975499153137207,
+ "step": 3235
+ },
+ {
+ "epoch": 44.95063346439493,
+ "grad_norm": 0.20142309367656708,
+ "learning_rate": 0.0006,
+ "loss": 3.6057305335998535,
+ "step": 3236
+ },
+ {
+ "epoch": 44.964613368283096,
+ "grad_norm": 0.20089569687843323,
+ "learning_rate": 0.0006,
+ "loss": 3.5900750160217285,
+ "step": 3237
+ },
+ {
+ "epoch": 44.97859327217125,
+ "grad_norm": 0.19860075414180756,
+ "learning_rate": 0.0006,
+ "loss": 3.5954184532165527,
+ "step": 3238
+ },
+ {
+ "epoch": 44.992573176059416,
+ "grad_norm": 0.19166013598442078,
+ "learning_rate": 0.0006,
+ "loss": 3.6568803787231445,
+ "step": 3239
+ },
+ {
+ "epoch": 45.0,
+ "grad_norm": 0.22416932880878448,
+ "learning_rate": 0.0006,
+ "loss": 3.6483092308044434,
+ "step": 3240
+ },
+ {
+ "epoch": 45.0,
+ "eval_loss": 3.9821224212646484,
+ "eval_runtime": 44.5415,
+ "eval_samples_per_second": 54.825,
+ "eval_steps_per_second": 3.435,
+ "step": 3240
+ },
+ {
+ "epoch": 45.01397990388816,
+ "grad_norm": 0.2107669562101364,
+ "learning_rate": 0.0006,
+ "loss": 3.5858099460601807,
+ "step": 3241
+ },
+ {
+ "epoch": 45.02795980777632,
+ "grad_norm": 0.20831939578056335,
+ "learning_rate": 0.0006,
+ "loss": 3.5793800354003906,
+ "step": 3242
+ },
+ {
+ "epoch": 45.04193971166448,
+ "grad_norm": 0.2169167846441269,
+ "learning_rate": 0.0006,
+ "loss": 3.601961135864258,
+ "step": 3243
+ },
+ {
+ "epoch": 45.05591961555265,
+ "grad_norm": 0.22451531887054443,
+ "learning_rate": 0.0006,
+ "loss": 3.586371898651123,
+ "step": 3244
+ },
+ {
+ "epoch": 45.0698995194408,
+ "grad_norm": 0.2187003344297409,
+ "learning_rate": 0.0006,
+ "loss": 3.58760929107666,
+ "step": 3245
+ },
+ {
+ "epoch": 45.083879423328966,
+ "grad_norm": 0.22805631160736084,
+ "learning_rate": 0.0006,
+ "loss": 3.554107904434204,
+ "step": 3246
+ },
+ {
+ "epoch": 45.09785932721712,
+ "grad_norm": 0.2573186159133911,
+ "learning_rate": 0.0006,
+ "loss": 3.5815420150756836,
+ "step": 3247
+ },
+ {
+ "epoch": 45.111839231105286,
+ "grad_norm": 0.25940126180648804,
+ "learning_rate": 0.0006,
+ "loss": 3.5754308700561523,
+ "step": 3248
+ },
+ {
+ "epoch": 45.12581913499345,
+ "grad_norm": 0.23834384977817535,
+ "learning_rate": 0.0006,
+ "loss": 3.5857350826263428,
+ "step": 3249
+ },
+ {
+ "epoch": 45.139799038881605,
+ "grad_norm": 0.23342885076999664,
+ "learning_rate": 0.0006,
+ "loss": 3.6116228103637695,
+ "step": 3250
+ },
+ {
+ "epoch": 45.15377894276977,
+ "grad_norm": 0.23284269869327545,
+ "learning_rate": 0.0006,
+ "loss": 3.5778629779815674,
+ "step": 3251
+ },
+ {
+ "epoch": 45.16775884665793,
+ "grad_norm": 0.30510780215263367,
+ "learning_rate": 0.0006,
+ "loss": 3.5888915061950684,
+ "step": 3252
+ },
+ {
+ "epoch": 45.18173875054609,
+ "grad_norm": 0.3462519645690918,
+ "learning_rate": 0.0006,
+ "loss": 3.5955758094787598,
+ "step": 3253
+ },
+ {
+ "epoch": 45.19571865443425,
+ "grad_norm": 0.2795974314212799,
+ "learning_rate": 0.0006,
+ "loss": 3.6222946643829346,
+ "step": 3254
+ },
+ {
+ "epoch": 45.20969855832241,
+ "grad_norm": 0.24624103307724,
+ "learning_rate": 0.0006,
+ "loss": 3.63046932220459,
+ "step": 3255
+ },
+ {
+ "epoch": 45.22367846221057,
+ "grad_norm": 0.23007310926914215,
+ "learning_rate": 0.0006,
+ "loss": 3.652526378631592,
+ "step": 3256
+ },
+ {
+ "epoch": 45.237658366098735,
+ "grad_norm": 0.21325333416461945,
+ "learning_rate": 0.0006,
+ "loss": 3.5960049629211426,
+ "step": 3257
+ },
+ {
+ "epoch": 45.25163826998689,
+ "grad_norm": 0.22697314620018005,
+ "learning_rate": 0.0006,
+ "loss": 3.5723695755004883,
+ "step": 3258
+ },
+ {
+ "epoch": 45.265618173875055,
+ "grad_norm": 0.21900491416454315,
+ "learning_rate": 0.0006,
+ "loss": 3.613572120666504,
+ "step": 3259
+ },
+ {
+ "epoch": 45.27959807776322,
+ "grad_norm": 0.21030694246292114,
+ "learning_rate": 0.0006,
+ "loss": 3.5830235481262207,
+ "step": 3260
+ },
+ {
+ "epoch": 45.293577981651374,
+ "grad_norm": 0.20229968428611755,
+ "learning_rate": 0.0006,
+ "loss": 3.620349884033203,
+ "step": 3261
+ },
+ {
+ "epoch": 45.30755788553954,
+ "grad_norm": 0.21611201763153076,
+ "learning_rate": 0.0006,
+ "loss": 3.5937819480895996,
+ "step": 3262
+ },
+ {
+ "epoch": 45.3215377894277,
+ "grad_norm": 0.21876764297485352,
+ "learning_rate": 0.0006,
+ "loss": 3.6180777549743652,
+ "step": 3263
+ },
+ {
+ "epoch": 45.33551769331586,
+ "grad_norm": 0.200356587767601,
+ "learning_rate": 0.0006,
+ "loss": 3.6140146255493164,
+ "step": 3264
+ },
+ {
+ "epoch": 45.34949759720402,
+ "grad_norm": 0.19151835143566132,
+ "learning_rate": 0.0006,
+ "loss": 3.607077121734619,
+ "step": 3265
+ },
+ {
+ "epoch": 45.36347750109218,
+ "grad_norm": 0.1994648575782776,
+ "learning_rate": 0.0006,
+ "loss": 3.646780490875244,
+ "step": 3266
+ },
+ {
+ "epoch": 45.37745740498034,
+ "grad_norm": 0.23145829141139984,
+ "learning_rate": 0.0006,
+ "loss": 3.624591588973999,
+ "step": 3267
+ },
+ {
+ "epoch": 45.391437308868504,
+ "grad_norm": 0.23608829081058502,
+ "learning_rate": 0.0006,
+ "loss": 3.598904609680176,
+ "step": 3268
+ },
+ {
+ "epoch": 45.40541721275666,
+ "grad_norm": 0.22254547476768494,
+ "learning_rate": 0.0006,
+ "loss": 3.581087827682495,
+ "step": 3269
+ },
+ {
+ "epoch": 45.419397116644824,
+ "grad_norm": 0.21640023589134216,
+ "learning_rate": 0.0006,
+ "loss": 3.5961151123046875,
+ "step": 3270
+ },
+ {
+ "epoch": 45.43337702053299,
+ "grad_norm": 0.2252444475889206,
+ "learning_rate": 0.0006,
+ "loss": 3.590231418609619,
+ "step": 3271
+ },
+ {
+ "epoch": 45.44735692442114,
+ "grad_norm": 0.23785367608070374,
+ "learning_rate": 0.0006,
+ "loss": 3.615896701812744,
+ "step": 3272
+ },
+ {
+ "epoch": 45.46133682830931,
+ "grad_norm": 0.2509191036224365,
+ "learning_rate": 0.0006,
+ "loss": 3.6413722038269043,
+ "step": 3273
+ },
+ {
+ "epoch": 45.47531673219746,
+ "grad_norm": 0.23734210431575775,
+ "learning_rate": 0.0006,
+ "loss": 3.608898639678955,
+ "step": 3274
+ },
+ {
+ "epoch": 45.489296636085626,
+ "grad_norm": 0.19802412390708923,
+ "learning_rate": 0.0006,
+ "loss": 3.5957250595092773,
+ "step": 3275
+ },
+ {
+ "epoch": 45.50327653997379,
+ "grad_norm": 0.20621423423290253,
+ "learning_rate": 0.0006,
+ "loss": 3.607945442199707,
+ "step": 3276
+ },
+ {
+ "epoch": 45.517256443861946,
+ "grad_norm": 0.225870743393898,
+ "learning_rate": 0.0006,
+ "loss": 3.641449451446533,
+ "step": 3277
+ },
+ {
+ "epoch": 45.53123634775011,
+ "grad_norm": 0.21482397615909576,
+ "learning_rate": 0.0006,
+ "loss": 3.61629581451416,
+ "step": 3278
+ },
+ {
+ "epoch": 45.54521625163827,
+ "grad_norm": 0.21159376204013824,
+ "learning_rate": 0.0006,
+ "loss": 3.5977988243103027,
+ "step": 3279
+ },
+ {
+ "epoch": 45.55919615552643,
+ "grad_norm": 0.2031678408384323,
+ "learning_rate": 0.0006,
+ "loss": 3.629343032836914,
+ "step": 3280
+ },
+ {
+ "epoch": 45.57317605941459,
+ "grad_norm": 0.1827101707458496,
+ "learning_rate": 0.0006,
+ "loss": 3.6161365509033203,
+ "step": 3281
+ },
+ {
+ "epoch": 45.58715596330275,
+ "grad_norm": 0.21884584426879883,
+ "learning_rate": 0.0006,
+ "loss": 3.6131834983825684,
+ "step": 3282
+ },
+ {
+ "epoch": 45.60113586719091,
+ "grad_norm": 0.21764980256557465,
+ "learning_rate": 0.0006,
+ "loss": 3.612516164779663,
+ "step": 3283
+ },
+ {
+ "epoch": 45.615115771079076,
+ "grad_norm": 0.22257080674171448,
+ "learning_rate": 0.0006,
+ "loss": 3.63425874710083,
+ "step": 3284
+ },
+ {
+ "epoch": 45.62909567496723,
+ "grad_norm": 0.2419128566980362,
+ "learning_rate": 0.0006,
+ "loss": 3.602997064590454,
+ "step": 3285
+ },
+ {
+ "epoch": 45.643075578855395,
+ "grad_norm": 0.20856884121894836,
+ "learning_rate": 0.0006,
+ "loss": 3.597352981567383,
+ "step": 3286
+ },
+ {
+ "epoch": 45.65705548274356,
+ "grad_norm": 0.20298589766025543,
+ "learning_rate": 0.0006,
+ "loss": 3.5961315631866455,
+ "step": 3287
+ },
+ {
+ "epoch": 45.671035386631715,
+ "grad_norm": 0.19006133079528809,
+ "learning_rate": 0.0006,
+ "loss": 3.6314568519592285,
+ "step": 3288
+ },
+ {
+ "epoch": 45.68501529051988,
+ "grad_norm": 0.20886142551898956,
+ "learning_rate": 0.0006,
+ "loss": 3.6200413703918457,
+ "step": 3289
+ },
+ {
+ "epoch": 45.69899519440804,
+ "grad_norm": 0.18085862696170807,
+ "learning_rate": 0.0006,
+ "loss": 3.6273961067199707,
+ "step": 3290
+ },
+ {
+ "epoch": 45.7129750982962,
+ "grad_norm": 0.18651945888996124,
+ "learning_rate": 0.0006,
+ "loss": 3.6490976810455322,
+ "step": 3291
+ },
+ {
+ "epoch": 45.72695500218436,
+ "grad_norm": 0.19668170809745789,
+ "learning_rate": 0.0006,
+ "loss": 3.610409736633301,
+ "step": 3292
+ },
+ {
+ "epoch": 45.74093490607252,
+ "grad_norm": 0.19865764677524567,
+ "learning_rate": 0.0006,
+ "loss": 3.614025115966797,
+ "step": 3293
+ },
+ {
+ "epoch": 45.75491480996068,
+ "grad_norm": 0.20814085006713867,
+ "learning_rate": 0.0006,
+ "loss": 3.6220510005950928,
+ "step": 3294
+ },
+ {
+ "epoch": 45.768894713848844,
+ "grad_norm": 0.20996463298797607,
+ "learning_rate": 0.0006,
+ "loss": 3.5754218101501465,
+ "step": 3295
+ },
+ {
+ "epoch": 45.782874617737,
+ "grad_norm": 0.1987130492925644,
+ "learning_rate": 0.0006,
+ "loss": 3.614746570587158,
+ "step": 3296
+ },
+ {
+ "epoch": 45.796854521625164,
+ "grad_norm": 0.23048028349876404,
+ "learning_rate": 0.0006,
+ "loss": 3.602620840072632,
+ "step": 3297
+ },
+ {
+ "epoch": 45.81083442551333,
+ "grad_norm": 0.21877387166023254,
+ "learning_rate": 0.0006,
+ "loss": 3.6294198036193848,
+ "step": 3298
+ },
+ {
+ "epoch": 45.824814329401484,
+ "grad_norm": 0.20007763803005219,
+ "learning_rate": 0.0006,
+ "loss": 3.630868434906006,
+ "step": 3299
+ },
+ {
+ "epoch": 45.83879423328965,
+ "grad_norm": 0.200496107339859,
+ "learning_rate": 0.0006,
+ "loss": 3.5972986221313477,
+ "step": 3300
+ },
+ {
+ "epoch": 45.8527741371778,
+ "grad_norm": 0.20494480431079865,
+ "learning_rate": 0.0006,
+ "loss": 3.61934494972229,
+ "step": 3301
+ },
+ {
+ "epoch": 45.86675404106597,
+ "grad_norm": 0.21374984085559845,
+ "learning_rate": 0.0006,
+ "loss": 3.6236257553100586,
+ "step": 3302
+ },
+ {
+ "epoch": 45.88073394495413,
+ "grad_norm": 0.22020408511161804,
+ "learning_rate": 0.0006,
+ "loss": 3.6030755043029785,
+ "step": 3303
+ },
+ {
+ "epoch": 45.89471384884229,
+ "grad_norm": 0.2239987701177597,
+ "learning_rate": 0.0006,
+ "loss": 3.6778974533081055,
+ "step": 3304
+ },
+ {
+ "epoch": 45.90869375273045,
+ "grad_norm": 0.22156383097171783,
+ "learning_rate": 0.0006,
+ "loss": 3.6186561584472656,
+ "step": 3305
+ },
+ {
+ "epoch": 45.92267365661861,
+ "grad_norm": 0.2264711856842041,
+ "learning_rate": 0.0006,
+ "loss": 3.6349918842315674,
+ "step": 3306
+ },
+ {
+ "epoch": 45.93665356050677,
+ "grad_norm": 0.2287975549697876,
+ "learning_rate": 0.0006,
+ "loss": 3.600268840789795,
+ "step": 3307
+ },
+ {
+ "epoch": 45.95063346439493,
+ "grad_norm": 0.22459761798381805,
+ "learning_rate": 0.0006,
+ "loss": 3.6029114723205566,
+ "step": 3308
+ },
+ {
+ "epoch": 45.964613368283096,
+ "grad_norm": 0.2430959790945053,
+ "learning_rate": 0.0006,
+ "loss": 3.6781656742095947,
+ "step": 3309
+ },
+ {
+ "epoch": 45.97859327217125,
+ "grad_norm": 0.2718662619590759,
+ "learning_rate": 0.0006,
+ "loss": 3.606778144836426,
+ "step": 3310
+ },
+ {
+ "epoch": 45.992573176059416,
+ "grad_norm": 0.27250170707702637,
+ "learning_rate": 0.0006,
+ "loss": 3.6142611503601074,
+ "step": 3311
+ },
+ {
+ "epoch": 46.0,
+ "grad_norm": 0.26663821935653687,
+ "learning_rate": 0.0006,
+ "loss": 3.6367483139038086,
+ "step": 3312
+ },
+ {
+ "epoch": 46.0,
+ "eval_loss": 3.9835095405578613,
+ "eval_runtime": 44.6504,
+ "eval_samples_per_second": 54.692,
+ "eval_steps_per_second": 3.427,
+ "step": 3312
+ },
+ {
+ "epoch": 46.01397990388816,
+ "grad_norm": 0.22670713067054749,
+ "learning_rate": 0.0006,
+ "loss": 3.5553648471832275,
+ "step": 3313
+ },
+ {
+ "epoch": 46.02795980777632,
+ "grad_norm": 0.2759886384010315,
+ "learning_rate": 0.0006,
+ "loss": 3.595186948776245,
+ "step": 3314
+ },
+ {
+ "epoch": 46.04193971166448,
+ "grad_norm": 0.31634145975112915,
+ "learning_rate": 0.0006,
+ "loss": 3.5805907249450684,
+ "step": 3315
+ },
+ {
+ "epoch": 46.05591961555265,
+ "grad_norm": 0.3097986578941345,
+ "learning_rate": 0.0006,
+ "loss": 3.593407154083252,
+ "step": 3316
+ },
+ {
+ "epoch": 46.0698995194408,
+ "grad_norm": 0.24616138637065887,
+ "learning_rate": 0.0006,
+ "loss": 3.606736898422241,
+ "step": 3317
+ },
+ {
+ "epoch": 46.083879423328966,
+ "grad_norm": 0.22210408747196198,
+ "learning_rate": 0.0006,
+ "loss": 3.59546160697937,
+ "step": 3318
+ },
+ {
+ "epoch": 46.09785932721712,
+ "grad_norm": 0.2429778128862381,
+ "learning_rate": 0.0006,
+ "loss": 3.5900321006774902,
+ "step": 3319
+ },
+ {
+ "epoch": 46.111839231105286,
+ "grad_norm": 0.22875761985778809,
+ "learning_rate": 0.0006,
+ "loss": 3.5793521404266357,
+ "step": 3320
+ },
+ {
+ "epoch": 46.12581913499345,
+ "grad_norm": 0.21508760750293732,
+ "learning_rate": 0.0006,
+ "loss": 3.5462498664855957,
+ "step": 3321
+ },
+ {
+ "epoch": 46.139799038881605,
+ "grad_norm": 0.23590944707393646,
+ "learning_rate": 0.0006,
+ "loss": 3.6247925758361816,
+ "step": 3322
+ },
+ {
+ "epoch": 46.15377894276977,
+ "grad_norm": 0.22288036346435547,
+ "learning_rate": 0.0006,
+ "loss": 3.6063995361328125,
+ "step": 3323
+ },
+ {
+ "epoch": 46.16775884665793,
+ "grad_norm": 0.20460885763168335,
+ "learning_rate": 0.0006,
+ "loss": 3.5744826793670654,
+ "step": 3324
+ },
+ {
+ "epoch": 46.18173875054609,
+ "grad_norm": 0.20172059535980225,
+ "learning_rate": 0.0006,
+ "loss": 3.5827057361602783,
+ "step": 3325
+ },
+ {
+ "epoch": 46.19571865443425,
+ "grad_norm": 0.2268448770046234,
+ "learning_rate": 0.0006,
+ "loss": 3.5801379680633545,
+ "step": 3326
+ },
+ {
+ "epoch": 46.20969855832241,
+ "grad_norm": 0.2244444191455841,
+ "learning_rate": 0.0006,
+ "loss": 3.5790224075317383,
+ "step": 3327
+ },
+ {
+ "epoch": 46.22367846221057,
+ "grad_norm": 0.20954380929470062,
+ "learning_rate": 0.0006,
+ "loss": 3.5979342460632324,
+ "step": 3328
+ },
+ {
+ "epoch": 46.237658366098735,
+ "grad_norm": 0.21395887434482574,
+ "learning_rate": 0.0006,
+ "loss": 3.6015186309814453,
+ "step": 3329
+ },
+ {
+ "epoch": 46.25163826998689,
+ "grad_norm": 0.23200181126594543,
+ "learning_rate": 0.0006,
+ "loss": 3.5904979705810547,
+ "step": 3330
+ },
+ {
+ "epoch": 46.265618173875055,
+ "grad_norm": 0.20558731257915497,
+ "learning_rate": 0.0006,
+ "loss": 3.5745811462402344,
+ "step": 3331
+ },
+ {
+ "epoch": 46.27959807776322,
+ "grad_norm": 0.1973227560520172,
+ "learning_rate": 0.0006,
+ "loss": 3.588560104370117,
+ "step": 3332
+ },
+ {
+ "epoch": 46.293577981651374,
+ "grad_norm": 0.2137945592403412,
+ "learning_rate": 0.0006,
+ "loss": 3.606064796447754,
+ "step": 3333
+ },
+ {
+ "epoch": 46.30755788553954,
+ "grad_norm": 0.2082151472568512,
+ "learning_rate": 0.0006,
+ "loss": 3.569392442703247,
+ "step": 3334
+ },
+ {
+ "epoch": 46.3215377894277,
+ "grad_norm": 0.2151029258966446,
+ "learning_rate": 0.0006,
+ "loss": 3.6016604900360107,
+ "step": 3335
+ },
+ {
+ "epoch": 46.33551769331586,
+ "grad_norm": 0.2256474643945694,
+ "learning_rate": 0.0006,
+ "loss": 3.571319580078125,
+ "step": 3336
+ },
+ {
+ "epoch": 46.34949759720402,
+ "grad_norm": 0.21454207599163055,
+ "learning_rate": 0.0006,
+ "loss": 3.6028685569763184,
+ "step": 3337
+ },
+ {
+ "epoch": 46.36347750109218,
+ "grad_norm": 0.21864144504070282,
+ "learning_rate": 0.0006,
+ "loss": 3.6146860122680664,
+ "step": 3338
+ },
+ {
+ "epoch": 46.37745740498034,
+ "grad_norm": 0.24512453377246857,
+ "learning_rate": 0.0006,
+ "loss": 3.614696502685547,
+ "step": 3339
+ },
+ {
+ "epoch": 46.391437308868504,
+ "grad_norm": 0.26355695724487305,
+ "learning_rate": 0.0006,
+ "loss": 3.6124234199523926,
+ "step": 3340
+ },
+ {
+ "epoch": 46.40541721275666,
+ "grad_norm": 0.2778678834438324,
+ "learning_rate": 0.0006,
+ "loss": 3.6075634956359863,
+ "step": 3341
+ },
+ {
+ "epoch": 46.419397116644824,
+ "grad_norm": 0.2626822292804718,
+ "learning_rate": 0.0006,
+ "loss": 3.59267520904541,
+ "step": 3342
+ },
+ {
+ "epoch": 46.43337702053299,
+ "grad_norm": 0.2211887091398239,
+ "learning_rate": 0.0006,
+ "loss": 3.606135606765747,
+ "step": 3343
+ },
+ {
+ "epoch": 46.44735692442114,
+ "grad_norm": 0.20117639005184174,
+ "learning_rate": 0.0006,
+ "loss": 3.566512107849121,
+ "step": 3344
+ },
+ {
+ "epoch": 46.46133682830931,
+ "grad_norm": 0.20202599465847015,
+ "learning_rate": 0.0006,
+ "loss": 3.603398561477661,
+ "step": 3345
+ },
+ {
+ "epoch": 46.47531673219746,
+ "grad_norm": 0.22238481044769287,
+ "learning_rate": 0.0006,
+ "loss": 3.599888324737549,
+ "step": 3346
+ },
+ {
+ "epoch": 46.489296636085626,
+ "grad_norm": 0.23298178613185883,
+ "learning_rate": 0.0006,
+ "loss": 3.6135406494140625,
+ "step": 3347
+ },
+ {
+ "epoch": 46.50327653997379,
+ "grad_norm": 0.21998152136802673,
+ "learning_rate": 0.0006,
+ "loss": 3.6022939682006836,
+ "step": 3348
+ },
+ {
+ "epoch": 46.517256443861946,
+ "grad_norm": 0.22595210373401642,
+ "learning_rate": 0.0006,
+ "loss": 3.605905532836914,
+ "step": 3349
+ },
+ {
+ "epoch": 46.53123634775011,
+ "grad_norm": 0.23549678921699524,
+ "learning_rate": 0.0006,
+ "loss": 3.606264591217041,
+ "step": 3350
+ },
+ {
+ "epoch": 46.54521625163827,
+ "grad_norm": 0.2075573205947876,
+ "learning_rate": 0.0006,
+ "loss": 3.580575942993164,
+ "step": 3351
+ },
+ {
+ "epoch": 46.55919615552643,
+ "grad_norm": 0.19052642583847046,
+ "learning_rate": 0.0006,
+ "loss": 3.618326187133789,
+ "step": 3352
+ },
+ {
+ "epoch": 46.57317605941459,
+ "grad_norm": 0.20372900366783142,
+ "learning_rate": 0.0006,
+ "loss": 3.5817952156066895,
+ "step": 3353
+ },
+ {
+ "epoch": 46.58715596330275,
+ "grad_norm": 0.20024648308753967,
+ "learning_rate": 0.0006,
+ "loss": 3.6128273010253906,
+ "step": 3354
+ },
+ {
+ "epoch": 46.60113586719091,
+ "grad_norm": 0.20892181992530823,
+ "learning_rate": 0.0006,
+ "loss": 3.6173012256622314,
+ "step": 3355
+ },
+ {
+ "epoch": 46.615115771079076,
+ "grad_norm": 0.20254571735858917,
+ "learning_rate": 0.0006,
+ "loss": 3.5924699306488037,
+ "step": 3356
+ },
+ {
+ "epoch": 46.62909567496723,
+ "grad_norm": 0.20290599763393402,
+ "learning_rate": 0.0006,
+ "loss": 3.6134514808654785,
+ "step": 3357
+ },
+ {
+ "epoch": 46.643075578855395,
+ "grad_norm": 0.23314513266086578,
+ "learning_rate": 0.0006,
+ "loss": 3.604102611541748,
+ "step": 3358
+ },
+ {
+ "epoch": 46.65705548274356,
+ "grad_norm": 0.2352486401796341,
+ "learning_rate": 0.0006,
+ "loss": 3.6210808753967285,
+ "step": 3359
+ },
+ {
+ "epoch": 46.671035386631715,
+ "grad_norm": 0.2289503663778305,
+ "learning_rate": 0.0006,
+ "loss": 3.596968650817871,
+ "step": 3360
+ },
+ {
+ "epoch": 46.68501529051988,
+ "grad_norm": 0.19971057772636414,
+ "learning_rate": 0.0006,
+ "loss": 3.5973198413848877,
+ "step": 3361
+ },
+ {
+ "epoch": 46.69899519440804,
+ "grad_norm": 0.21000619232654572,
+ "learning_rate": 0.0006,
+ "loss": 3.607048511505127,
+ "step": 3362
+ },
+ {
+ "epoch": 46.7129750982962,
+ "grad_norm": 0.22295686602592468,
+ "learning_rate": 0.0006,
+ "loss": 3.6323728561401367,
+ "step": 3363
+ },
+ {
+ "epoch": 46.72695500218436,
+ "grad_norm": 0.21939052641391754,
+ "learning_rate": 0.0006,
+ "loss": 3.6073317527770996,
+ "step": 3364
+ },
+ {
+ "epoch": 46.74093490607252,
+ "grad_norm": 0.2192271202802658,
+ "learning_rate": 0.0006,
+ "loss": 3.6396851539611816,
+ "step": 3365
+ },
+ {
+ "epoch": 46.75491480996068,
+ "grad_norm": 0.20871607959270477,
+ "learning_rate": 0.0006,
+ "loss": 3.613509178161621,
+ "step": 3366
+ },
+ {
+ "epoch": 46.768894713848844,
+ "grad_norm": 0.1837828904390335,
+ "learning_rate": 0.0006,
+ "loss": 3.604039192199707,
+ "step": 3367
+ },
+ {
+ "epoch": 46.782874617737,
+ "grad_norm": 0.1904219537973404,
+ "learning_rate": 0.0006,
+ "loss": 3.6065895557403564,
+ "step": 3368
+ },
+ {
+ "epoch": 46.796854521625164,
+ "grad_norm": 0.19873572885990143,
+ "learning_rate": 0.0006,
+ "loss": 3.5927226543426514,
+ "step": 3369
+ },
+ {
+ "epoch": 46.81083442551333,
+ "grad_norm": 0.18319591879844666,
+ "learning_rate": 0.0006,
+ "loss": 3.6114919185638428,
+ "step": 3370
+ },
+ {
+ "epoch": 46.824814329401484,
+ "grad_norm": 0.19832435250282288,
+ "learning_rate": 0.0006,
+ "loss": 3.613637924194336,
+ "step": 3371
+ },
+ {
+ "epoch": 46.83879423328965,
+ "grad_norm": 0.21506333351135254,
+ "learning_rate": 0.0006,
+ "loss": 3.6116209030151367,
+ "step": 3372
+ },
+ {
+ "epoch": 46.8527741371778,
+ "grad_norm": 0.20374484360218048,
+ "learning_rate": 0.0006,
+ "loss": 3.5923004150390625,
+ "step": 3373
+ },
+ {
+ "epoch": 46.86675404106597,
+ "grad_norm": 0.19743360579013824,
+ "learning_rate": 0.0006,
+ "loss": 3.599381685256958,
+ "step": 3374
+ },
+ {
+ "epoch": 46.88073394495413,
+ "grad_norm": 0.20996616780757904,
+ "learning_rate": 0.0006,
+ "loss": 3.624969959259033,
+ "step": 3375
+ },
+ {
+ "epoch": 46.89471384884229,
+ "grad_norm": 0.22336791455745697,
+ "learning_rate": 0.0006,
+ "loss": 3.6152467727661133,
+ "step": 3376
+ },
+ {
+ "epoch": 46.90869375273045,
+ "grad_norm": 0.2337532341480255,
+ "learning_rate": 0.0006,
+ "loss": 3.6198863983154297,
+ "step": 3377
+ },
+ {
+ "epoch": 46.92267365661861,
+ "grad_norm": 0.23823462426662445,
+ "learning_rate": 0.0006,
+ "loss": 3.6411237716674805,
+ "step": 3378
+ },
+ {
+ "epoch": 46.93665356050677,
+ "grad_norm": 0.2521338164806366,
+ "learning_rate": 0.0006,
+ "loss": 3.621544122695923,
+ "step": 3379
+ },
+ {
+ "epoch": 46.95063346439493,
+ "grad_norm": 0.253682941198349,
+ "learning_rate": 0.0006,
+ "loss": 3.6570887565612793,
+ "step": 3380
+ },
+ {
+ "epoch": 46.964613368283096,
+ "grad_norm": 0.23392300307750702,
+ "learning_rate": 0.0006,
+ "loss": 3.669538974761963,
+ "step": 3381
+ },
+ {
+ "epoch": 46.97859327217125,
+ "grad_norm": 0.2154092937707901,
+ "learning_rate": 0.0006,
+ "loss": 3.6184825897216797,
+ "step": 3382
+ },
+ {
+ "epoch": 46.992573176059416,
+ "grad_norm": 0.1909833699464798,
+ "learning_rate": 0.0006,
+ "loss": 3.647658348083496,
+ "step": 3383
+ },
+ {
+ "epoch": 47.0,
+ "grad_norm": 0.2226407378911972,
+ "learning_rate": 0.0006,
+ "loss": 3.6413815021514893,
+ "step": 3384
+ },
+ {
+ "epoch": 47.0,
+ "eval_loss": 3.98313570022583,
+ "eval_runtime": 44.7152,
+ "eval_samples_per_second": 54.612,
+ "eval_steps_per_second": 3.422,
+ "step": 3384
+ },
+ {
+ "epoch": 47.01397990388816,
+ "grad_norm": 0.20830968022346497,
+ "learning_rate": 0.0006,
+ "loss": 3.5652623176574707,
+ "step": 3385
+ },
+ {
+ "epoch": 47.02795980777632,
+ "grad_norm": 0.18953651189804077,
+ "learning_rate": 0.0006,
+ "loss": 3.570180654525757,
+ "step": 3386
+ },
+ {
+ "epoch": 47.04193971166448,
+ "grad_norm": 0.20167700946331024,
+ "learning_rate": 0.0006,
+ "loss": 3.5623056888580322,
+ "step": 3387
+ },
+ {
+ "epoch": 47.05591961555265,
+ "grad_norm": 0.21554343402385712,
+ "learning_rate": 0.0006,
+ "loss": 3.549492835998535,
+ "step": 3388
+ },
+ {
+ "epoch": 47.0698995194408,
+ "grad_norm": 0.2232149988412857,
+ "learning_rate": 0.0006,
+ "loss": 3.584181785583496,
+ "step": 3389
+ },
+ {
+ "epoch": 47.083879423328966,
+ "grad_norm": 0.23489049077033997,
+ "learning_rate": 0.0006,
+ "loss": 3.581028461456299,
+ "step": 3390
+ },
+ {
+ "epoch": 47.09785932721712,
+ "grad_norm": 0.22486020624637604,
+ "learning_rate": 0.0006,
+ "loss": 3.600348949432373,
+ "step": 3391
+ },
+ {
+ "epoch": 47.111839231105286,
+ "grad_norm": 0.22932346165180206,
+ "learning_rate": 0.0006,
+ "loss": 3.5600457191467285,
+ "step": 3392
+ },
+ {
+ "epoch": 47.12581913499345,
+ "grad_norm": 0.2179419994354248,
+ "learning_rate": 0.0006,
+ "loss": 3.560136079788208,
+ "step": 3393
+ },
+ {
+ "epoch": 47.139799038881605,
+ "grad_norm": 0.2438054382801056,
+ "learning_rate": 0.0006,
+ "loss": 3.5955698490142822,
+ "step": 3394
+ },
+ {
+ "epoch": 47.15377894276977,
+ "grad_norm": 0.2652001976966858,
+ "learning_rate": 0.0006,
+ "loss": 3.5942912101745605,
+ "step": 3395
+ },
+ {
+ "epoch": 47.16775884665793,
+ "grad_norm": 0.270924836397171,
+ "learning_rate": 0.0006,
+ "loss": 3.5733351707458496,
+ "step": 3396
+ },
+ {
+ "epoch": 47.18173875054609,
+ "grad_norm": 0.28365132212638855,
+ "learning_rate": 0.0006,
+ "loss": 3.6042075157165527,
+ "step": 3397
+ },
+ {
+ "epoch": 47.19571865443425,
+ "grad_norm": 0.29530975222587585,
+ "learning_rate": 0.0006,
+ "loss": 3.588935375213623,
+ "step": 3398
+ },
+ {
+ "epoch": 47.20969855832241,
+ "grad_norm": 0.2658918797969818,
+ "learning_rate": 0.0006,
+ "loss": 3.5944671630859375,
+ "step": 3399
+ },
+ {
+ "epoch": 47.22367846221057,
+ "grad_norm": 0.24076500535011292,
+ "learning_rate": 0.0006,
+ "loss": 3.5853185653686523,
+ "step": 3400
+ },
+ {
+ "epoch": 47.237658366098735,
+ "grad_norm": 0.23032112419605255,
+ "learning_rate": 0.0006,
+ "loss": 3.620483875274658,
+ "step": 3401
+ },
+ {
+ "epoch": 47.25163826998689,
+ "grad_norm": 0.23124775290489197,
+ "learning_rate": 0.0006,
+ "loss": 3.6032004356384277,
+ "step": 3402
+ },
+ {
+ "epoch": 47.265618173875055,
+ "grad_norm": 0.21960225701332092,
+ "learning_rate": 0.0006,
+ "loss": 3.6079649925231934,
+ "step": 3403
+ },
+ {
+ "epoch": 47.27959807776322,
+ "grad_norm": 0.236652672290802,
+ "learning_rate": 0.0006,
+ "loss": 3.582645893096924,
+ "step": 3404
+ },
+ {
+ "epoch": 47.293577981651374,
+ "grad_norm": 0.2600267231464386,
+ "learning_rate": 0.0006,
+ "loss": 3.6067757606506348,
+ "step": 3405
+ },
+ {
+ "epoch": 47.30755788553954,
+ "grad_norm": 0.2337152659893036,
+ "learning_rate": 0.0006,
+ "loss": 3.5912275314331055,
+ "step": 3406
+ },
+ {
+ "epoch": 47.3215377894277,
+ "grad_norm": 0.21887873113155365,
+ "learning_rate": 0.0006,
+ "loss": 3.6008896827697754,
+ "step": 3407
+ },
+ {
+ "epoch": 47.33551769331586,
+ "grad_norm": 0.20265911519527435,
+ "learning_rate": 0.0006,
+ "loss": 3.5820152759552,
+ "step": 3408
+ },
+ {
+ "epoch": 47.34949759720402,
+ "grad_norm": 0.2005501389503479,
+ "learning_rate": 0.0006,
+ "loss": 3.604556083679199,
+ "step": 3409
+ },
+ {
+ "epoch": 47.36347750109218,
+ "grad_norm": 0.20682275295257568,
+ "learning_rate": 0.0006,
+ "loss": 3.584531307220459,
+ "step": 3410
+ },
+ {
+ "epoch": 47.37745740498034,
+ "grad_norm": 0.23283354938030243,
+ "learning_rate": 0.0006,
+ "loss": 3.59186053276062,
+ "step": 3411
+ },
+ {
+ "epoch": 47.391437308868504,
+ "grad_norm": 0.23033356666564941,
+ "learning_rate": 0.0006,
+ "loss": 3.5944037437438965,
+ "step": 3412
+ },
+ {
+ "epoch": 47.40541721275666,
+ "grad_norm": 0.21714402735233307,
+ "learning_rate": 0.0006,
+ "loss": 3.5834851264953613,
+ "step": 3413
+ },
+ {
+ "epoch": 47.419397116644824,
+ "grad_norm": 0.2138672024011612,
+ "learning_rate": 0.0006,
+ "loss": 3.6313700675964355,
+ "step": 3414
+ },
+ {
+ "epoch": 47.43337702053299,
+ "grad_norm": 0.23200160264968872,
+ "learning_rate": 0.0006,
+ "loss": 3.6112399101257324,
+ "step": 3415
+ },
+ {
+ "epoch": 47.44735692442114,
+ "grad_norm": 0.2632092833518982,
+ "learning_rate": 0.0006,
+ "loss": 3.6099038124084473,
+ "step": 3416
+ },
+ {
+ "epoch": 47.46133682830931,
+ "grad_norm": 0.23115520179271698,
+ "learning_rate": 0.0006,
+ "loss": 3.6060497760772705,
+ "step": 3417
+ },
+ {
+ "epoch": 47.47531673219746,
+ "grad_norm": 0.2596223056316376,
+ "learning_rate": 0.0006,
+ "loss": 3.5749685764312744,
+ "step": 3418
+ },
+ {
+ "epoch": 47.489296636085626,
+ "grad_norm": 0.27893415093421936,
+ "learning_rate": 0.0006,
+ "loss": 3.584045886993408,
+ "step": 3419
+ },
+ {
+ "epoch": 47.50327653997379,
+ "grad_norm": 0.23112469911575317,
+ "learning_rate": 0.0006,
+ "loss": 3.595407485961914,
+ "step": 3420
+ },
+ {
+ "epoch": 47.517256443861946,
+ "grad_norm": 0.23562486469745636,
+ "learning_rate": 0.0006,
+ "loss": 3.5657241344451904,
+ "step": 3421
+ },
+ {
+ "epoch": 47.53123634775011,
+ "grad_norm": 0.23366105556488037,
+ "learning_rate": 0.0006,
+ "loss": 3.624885082244873,
+ "step": 3422
+ },
+ {
+ "epoch": 47.54521625163827,
+ "grad_norm": 0.24383248388767242,
+ "learning_rate": 0.0006,
+ "loss": 3.638352394104004,
+ "step": 3423
+ },
+ {
+ "epoch": 47.55919615552643,
+ "grad_norm": 0.26388120651245117,
+ "learning_rate": 0.0006,
+ "loss": 3.614579200744629,
+ "step": 3424
+ },
+ {
+ "epoch": 47.57317605941459,
+ "grad_norm": 0.23676545917987823,
+ "learning_rate": 0.0006,
+ "loss": 3.609004259109497,
+ "step": 3425
+ },
+ {
+ "epoch": 47.58715596330275,
+ "grad_norm": 0.227967768907547,
+ "learning_rate": 0.0006,
+ "loss": 3.626171827316284,
+ "step": 3426
+ },
+ {
+ "epoch": 47.60113586719091,
+ "grad_norm": 0.23786529898643494,
+ "learning_rate": 0.0006,
+ "loss": 3.6205172538757324,
+ "step": 3427
+ },
+ {
+ "epoch": 47.615115771079076,
+ "grad_norm": 0.2599100172519684,
+ "learning_rate": 0.0006,
+ "loss": 3.6178271770477295,
+ "step": 3428
+ },
+ {
+ "epoch": 47.62909567496723,
+ "grad_norm": 0.2591858208179474,
+ "learning_rate": 0.0006,
+ "loss": 3.600297451019287,
+ "step": 3429
+ },
+ {
+ "epoch": 47.643075578855395,
+ "grad_norm": 0.2234215885400772,
+ "learning_rate": 0.0006,
+ "loss": 3.623141288757324,
+ "step": 3430
+ },
+ {
+ "epoch": 47.65705548274356,
+ "grad_norm": 0.23395098745822906,
+ "learning_rate": 0.0006,
+ "loss": 3.6243159770965576,
+ "step": 3431
+ },
+ {
+ "epoch": 47.671035386631715,
+ "grad_norm": 0.25706854462623596,
+ "learning_rate": 0.0006,
+ "loss": 3.5933618545532227,
+ "step": 3432
+ },
+ {
+ "epoch": 47.68501529051988,
+ "grad_norm": 0.22468037903308868,
+ "learning_rate": 0.0006,
+ "loss": 3.6048693656921387,
+ "step": 3433
+ },
+ {
+ "epoch": 47.69899519440804,
+ "grad_norm": 0.22432644665241241,
+ "learning_rate": 0.0006,
+ "loss": 3.604891777038574,
+ "step": 3434
+ },
+ {
+ "epoch": 47.7129750982962,
+ "grad_norm": 0.2278960943222046,
+ "learning_rate": 0.0006,
+ "loss": 3.610567092895508,
+ "step": 3435
+ },
+ {
+ "epoch": 47.72695500218436,
+ "grad_norm": 0.20652735233306885,
+ "learning_rate": 0.0006,
+ "loss": 3.60245418548584,
+ "step": 3436
+ },
+ {
+ "epoch": 47.74093490607252,
+ "grad_norm": 0.2141297310590744,
+ "learning_rate": 0.0006,
+ "loss": 3.5712027549743652,
+ "step": 3437
+ },
+ {
+ "epoch": 47.75491480996068,
+ "grad_norm": 0.23282566666603088,
+ "learning_rate": 0.0006,
+ "loss": 3.573568820953369,
+ "step": 3438
+ },
+ {
+ "epoch": 47.768894713848844,
+ "grad_norm": 0.21718674898147583,
+ "learning_rate": 0.0006,
+ "loss": 3.602047920227051,
+ "step": 3439
+ },
+ {
+ "epoch": 47.782874617737,
+ "grad_norm": 0.19592095911502838,
+ "learning_rate": 0.0006,
+ "loss": 3.6046957969665527,
+ "step": 3440
+ },
+ {
+ "epoch": 47.796854521625164,
+ "grad_norm": 0.21548260748386383,
+ "learning_rate": 0.0006,
+ "loss": 3.5808444023132324,
+ "step": 3441
+ },
+ {
+ "epoch": 47.81083442551333,
+ "grad_norm": 0.21945662796497345,
+ "learning_rate": 0.0006,
+ "loss": 3.6044554710388184,
+ "step": 3442
+ },
+ {
+ "epoch": 47.824814329401484,
+ "grad_norm": 0.20777440071105957,
+ "learning_rate": 0.0006,
+ "loss": 3.5991361141204834,
+ "step": 3443
+ },
+ {
+ "epoch": 47.83879423328965,
+ "grad_norm": 0.21566642820835114,
+ "learning_rate": 0.0006,
+ "loss": 3.6272850036621094,
+ "step": 3444
+ },
+ {
+ "epoch": 47.8527741371778,
+ "grad_norm": 0.22365771234035492,
+ "learning_rate": 0.0006,
+ "loss": 3.6323323249816895,
+ "step": 3445
+ },
+ {
+ "epoch": 47.86675404106597,
+ "grad_norm": 0.20193088054656982,
+ "learning_rate": 0.0006,
+ "loss": 3.5938191413879395,
+ "step": 3446
+ },
+ {
+ "epoch": 47.88073394495413,
+ "grad_norm": 0.20968061685562134,
+ "learning_rate": 0.0006,
+ "loss": 3.616640329360962,
+ "step": 3447
+ },
+ {
+ "epoch": 47.89471384884229,
+ "grad_norm": 0.20275580883026123,
+ "learning_rate": 0.0006,
+ "loss": 3.5769052505493164,
+ "step": 3448
+ },
+ {
+ "epoch": 47.90869375273045,
+ "grad_norm": 0.237605020403862,
+ "learning_rate": 0.0006,
+ "loss": 3.6221203804016113,
+ "step": 3449
+ },
+ {
+ "epoch": 47.92267365661861,
+ "grad_norm": 0.2820972502231598,
+ "learning_rate": 0.0006,
+ "loss": 3.5977487564086914,
+ "step": 3450
+ },
+ {
+ "epoch": 47.93665356050677,
+ "grad_norm": 0.23722891509532928,
+ "learning_rate": 0.0006,
+ "loss": 3.5963053703308105,
+ "step": 3451
+ },
+ {
+ "epoch": 47.95063346439493,
+ "grad_norm": 0.21471276879310608,
+ "learning_rate": 0.0006,
+ "loss": 3.6234917640686035,
+ "step": 3452
+ },
+ {
+ "epoch": 47.964613368283096,
+ "grad_norm": 0.2139028012752533,
+ "learning_rate": 0.0006,
+ "loss": 3.640500545501709,
+ "step": 3453
+ },
+ {
+ "epoch": 47.97859327217125,
+ "grad_norm": 0.1966913342475891,
+ "learning_rate": 0.0006,
+ "loss": 3.5856776237487793,
+ "step": 3454
+ },
+ {
+ "epoch": 47.992573176059416,
+ "grad_norm": 0.2375730276107788,
+ "learning_rate": 0.0006,
+ "loss": 3.6126937866210938,
+ "step": 3455
+ },
+ {
+ "epoch": 48.0,
+ "grad_norm": 0.2772855758666992,
+ "learning_rate": 0.0006,
+ "loss": 3.6041951179504395,
+ "step": 3456
+ },
+ {
+ "epoch": 48.0,
+ "eval_loss": 3.971400499343872,
+ "eval_runtime": 45.4792,
+ "eval_samples_per_second": 53.695,
+ "eval_steps_per_second": 3.364,
+ "step": 3456
+ },
+ {
+ "epoch": 48.01397990388816,
+ "grad_norm": 0.2269497811794281,
+ "learning_rate": 0.0006,
+ "loss": 3.525441884994507,
+ "step": 3457
+ },
+ {
+ "epoch": 48.02795980777632,
+ "grad_norm": 0.2080184519290924,
+ "learning_rate": 0.0006,
+ "loss": 3.5727145671844482,
+ "step": 3458
+ },
+ {
+ "epoch": 48.04193971166448,
+ "grad_norm": 0.21827049553394318,
+ "learning_rate": 0.0006,
+ "loss": 3.5799875259399414,
+ "step": 3459
+ },
+ {
+ "epoch": 48.05591961555265,
+ "grad_norm": 0.2173643410205841,
+ "learning_rate": 0.0006,
+ "loss": 3.587097406387329,
+ "step": 3460
+ },
+ {
+ "epoch": 48.0698995194408,
+ "grad_norm": 0.23125280439853668,
+ "learning_rate": 0.0006,
+ "loss": 3.593235969543457,
+ "step": 3461
+ },
+ {
+ "epoch": 48.083879423328966,
+ "grad_norm": 0.2235819697380066,
+ "learning_rate": 0.0006,
+ "loss": 3.5724973678588867,
+ "step": 3462
+ },
+ {
+ "epoch": 48.09785932721712,
+ "grad_norm": 0.2329849898815155,
+ "learning_rate": 0.0006,
+ "loss": 3.5689549446105957,
+ "step": 3463
+ },
+ {
+ "epoch": 48.111839231105286,
+ "grad_norm": 0.21178825199604034,
+ "learning_rate": 0.0006,
+ "loss": 3.5522305965423584,
+ "step": 3464
+ },
+ {
+ "epoch": 48.12581913499345,
+ "grad_norm": 0.22026701271533966,
+ "learning_rate": 0.0006,
+ "loss": 3.5622801780700684,
+ "step": 3465
+ },
+ {
+ "epoch": 48.139799038881605,
+ "grad_norm": 0.23427478969097137,
+ "learning_rate": 0.0006,
+ "loss": 3.6076972484588623,
+ "step": 3466
+ },
+ {
+ "epoch": 48.15377894276977,
+ "grad_norm": 0.22437651455402374,
+ "learning_rate": 0.0006,
+ "loss": 3.5898380279541016,
+ "step": 3467
+ },
+ {
+ "epoch": 48.16775884665793,
+ "grad_norm": 0.22911588847637177,
+ "learning_rate": 0.0006,
+ "loss": 3.584866523742676,
+ "step": 3468
+ },
+ {
+ "epoch": 48.18173875054609,
+ "grad_norm": 0.21358130872249603,
+ "learning_rate": 0.0006,
+ "loss": 3.581397533416748,
+ "step": 3469
+ },
+ {
+ "epoch": 48.19571865443425,
+ "grad_norm": 0.2102762758731842,
+ "learning_rate": 0.0006,
+ "loss": 3.6218419075012207,
+ "step": 3470
+ },
+ {
+ "epoch": 48.20969855832241,
+ "grad_norm": 0.22417177259922028,
+ "learning_rate": 0.0006,
+ "loss": 3.5875539779663086,
+ "step": 3471
+ },
+ {
+ "epoch": 48.22367846221057,
+ "grad_norm": 0.2096744030714035,
+ "learning_rate": 0.0006,
+ "loss": 3.6017215251922607,
+ "step": 3472
+ },
+ {
+ "epoch": 48.237658366098735,
+ "grad_norm": 0.18693844974040985,
+ "learning_rate": 0.0006,
+ "loss": 3.590221405029297,
+ "step": 3473
+ },
+ {
+ "epoch": 48.25163826998689,
+ "grad_norm": 0.21102994680404663,
+ "learning_rate": 0.0006,
+ "loss": 3.5685019493103027,
+ "step": 3474
+ },
+ {
+ "epoch": 48.265618173875055,
+ "grad_norm": 0.20756356418132782,
+ "learning_rate": 0.0006,
+ "loss": 3.577427387237549,
+ "step": 3475
+ },
+ {
+ "epoch": 48.27959807776322,
+ "grad_norm": 0.20425064861774445,
+ "learning_rate": 0.0006,
+ "loss": 3.602522134780884,
+ "step": 3476
+ },
+ {
+ "epoch": 48.293577981651374,
+ "grad_norm": 0.1976020187139511,
+ "learning_rate": 0.0006,
+ "loss": 3.5847134590148926,
+ "step": 3477
+ },
+ {
+ "epoch": 48.30755788553954,
+ "grad_norm": 0.19685129821300507,
+ "learning_rate": 0.0006,
+ "loss": 3.5638442039489746,
+ "step": 3478
+ },
+ {
+ "epoch": 48.3215377894277,
+ "grad_norm": 0.19657646119594574,
+ "learning_rate": 0.0006,
+ "loss": 3.5669779777526855,
+ "step": 3479
+ },
+ {
+ "epoch": 48.33551769331586,
+ "grad_norm": 0.19855819642543793,
+ "learning_rate": 0.0006,
+ "loss": 3.5712571144104004,
+ "step": 3480
+ },
+ {
+ "epoch": 48.34949759720402,
+ "grad_norm": 0.19961503148078918,
+ "learning_rate": 0.0006,
+ "loss": 3.5869312286376953,
+ "step": 3481
+ },
+ {
+ "epoch": 48.36347750109218,
+ "grad_norm": 0.19302639365196228,
+ "learning_rate": 0.0006,
+ "loss": 3.571394920349121,
+ "step": 3482
+ },
+ {
+ "epoch": 48.37745740498034,
+ "grad_norm": 0.1953866183757782,
+ "learning_rate": 0.0006,
+ "loss": 3.556633234024048,
+ "step": 3483
+ },
+ {
+ "epoch": 48.391437308868504,
+ "grad_norm": 0.20028206706047058,
+ "learning_rate": 0.0006,
+ "loss": 3.5559535026550293,
+ "step": 3484
+ },
+ {
+ "epoch": 48.40541721275666,
+ "grad_norm": 0.2286558896303177,
+ "learning_rate": 0.0006,
+ "loss": 3.6052510738372803,
+ "step": 3485
+ },
+ {
+ "epoch": 48.419397116644824,
+ "grad_norm": 0.21764399111270905,
+ "learning_rate": 0.0006,
+ "loss": 3.5955848693847656,
+ "step": 3486
+ },
+ {
+ "epoch": 48.43337702053299,
+ "grad_norm": 0.2257501780986786,
+ "learning_rate": 0.0006,
+ "loss": 3.586179256439209,
+ "step": 3487
+ },
+ {
+ "epoch": 48.44735692442114,
+ "grad_norm": 0.23023653030395508,
+ "learning_rate": 0.0006,
+ "loss": 3.593329906463623,
+ "step": 3488
+ },
+ {
+ "epoch": 48.46133682830931,
+ "grad_norm": 0.21283918619155884,
+ "learning_rate": 0.0006,
+ "loss": 3.5909814834594727,
+ "step": 3489
+ },
+ {
+ "epoch": 48.47531673219746,
+ "grad_norm": 0.2143639773130417,
+ "learning_rate": 0.0006,
+ "loss": 3.61320161819458,
+ "step": 3490
+ },
+ {
+ "epoch": 48.489296636085626,
+ "grad_norm": 0.2138844132423401,
+ "learning_rate": 0.0006,
+ "loss": 3.556607246398926,
+ "step": 3491
+ },
+ {
+ "epoch": 48.50327653997379,
+ "grad_norm": 0.22122617065906525,
+ "learning_rate": 0.0006,
+ "loss": 3.629208564758301,
+ "step": 3492
+ },
+ {
+ "epoch": 48.517256443861946,
+ "grad_norm": 0.22430218756198883,
+ "learning_rate": 0.0006,
+ "loss": 3.61891508102417,
+ "step": 3493
+ },
+ {
+ "epoch": 48.53123634775011,
+ "grad_norm": 0.23830844461917877,
+ "learning_rate": 0.0006,
+ "loss": 3.5818424224853516,
+ "step": 3494
+ },
+ {
+ "epoch": 48.54521625163827,
+ "grad_norm": 0.23596757650375366,
+ "learning_rate": 0.0006,
+ "loss": 3.609959602355957,
+ "step": 3495
+ },
+ {
+ "epoch": 48.55919615552643,
+ "grad_norm": 0.22046151757240295,
+ "learning_rate": 0.0006,
+ "loss": 3.585991382598877,
+ "step": 3496
+ },
+ {
+ "epoch": 48.57317605941459,
+ "grad_norm": 0.22838662564754486,
+ "learning_rate": 0.0006,
+ "loss": 3.6047747135162354,
+ "step": 3497
+ },
+ {
+ "epoch": 48.58715596330275,
+ "grad_norm": 0.22605256736278534,
+ "learning_rate": 0.0006,
+ "loss": 3.584585428237915,
+ "step": 3498
+ },
+ {
+ "epoch": 48.60113586719091,
+ "grad_norm": 0.22761467099189758,
+ "learning_rate": 0.0006,
+ "loss": 3.5680465698242188,
+ "step": 3499
+ },
+ {
+ "epoch": 48.615115771079076,
+ "grad_norm": 0.20537005364894867,
+ "learning_rate": 0.0006,
+ "loss": 3.5822806358337402,
+ "step": 3500
+ },
+ {
+ "epoch": 48.62909567496723,
+ "grad_norm": 0.21871088445186615,
+ "learning_rate": 0.0006,
+ "loss": 3.5643906593322754,
+ "step": 3501
+ },
+ {
+ "epoch": 48.643075578855395,
+ "grad_norm": 0.2291785329580307,
+ "learning_rate": 0.0006,
+ "loss": 3.6313328742980957,
+ "step": 3502
+ },
+ {
+ "epoch": 48.65705548274356,
+ "grad_norm": 0.2437039464712143,
+ "learning_rate": 0.0006,
+ "loss": 3.588334083557129,
+ "step": 3503
+ },
+ {
+ "epoch": 48.671035386631715,
+ "grad_norm": 0.23070715367794037,
+ "learning_rate": 0.0006,
+ "loss": 3.611356258392334,
+ "step": 3504
+ },
+ {
+ "epoch": 48.68501529051988,
+ "grad_norm": 0.23983895778656006,
+ "learning_rate": 0.0006,
+ "loss": 3.5953967571258545,
+ "step": 3505
+ },
+ {
+ "epoch": 48.69899519440804,
+ "grad_norm": 0.2283167690038681,
+ "learning_rate": 0.0006,
+ "loss": 3.605307102203369,
+ "step": 3506
+ },
+ {
+ "epoch": 48.7129750982962,
+ "grad_norm": 0.20861059427261353,
+ "learning_rate": 0.0006,
+ "loss": 3.598266363143921,
+ "step": 3507
+ },
+ {
+ "epoch": 48.72695500218436,
+ "grad_norm": 0.20209547877311707,
+ "learning_rate": 0.0006,
+ "loss": 3.6022191047668457,
+ "step": 3508
+ },
+ {
+ "epoch": 48.74093490607252,
+ "grad_norm": 0.19089370965957642,
+ "learning_rate": 0.0006,
+ "loss": 3.628640651702881,
+ "step": 3509
+ },
+ {
+ "epoch": 48.75491480996068,
+ "grad_norm": 0.18544727563858032,
+ "learning_rate": 0.0006,
+ "loss": 3.6204819679260254,
+ "step": 3510
+ },
+ {
+ "epoch": 48.768894713848844,
+ "grad_norm": 0.18295186758041382,
+ "learning_rate": 0.0006,
+ "loss": 3.5899410247802734,
+ "step": 3511
+ },
+ {
+ "epoch": 48.782874617737,
+ "grad_norm": 0.1953844279050827,
+ "learning_rate": 0.0006,
+ "loss": 3.581699848175049,
+ "step": 3512
+ },
+ {
+ "epoch": 48.796854521625164,
+ "grad_norm": 0.195505291223526,
+ "learning_rate": 0.0006,
+ "loss": 3.6046862602233887,
+ "step": 3513
+ },
+ {
+ "epoch": 48.81083442551333,
+ "grad_norm": 0.19805945456027985,
+ "learning_rate": 0.0006,
+ "loss": 3.609510898590088,
+ "step": 3514
+ },
+ {
+ "epoch": 48.824814329401484,
+ "grad_norm": 0.18694287538528442,
+ "learning_rate": 0.0006,
+ "loss": 3.580693483352661,
+ "step": 3515
+ },
+ {
+ "epoch": 48.83879423328965,
+ "grad_norm": 0.19227269291877747,
+ "learning_rate": 0.0006,
+ "loss": 3.6174416542053223,
+ "step": 3516
+ },
+ {
+ "epoch": 48.8527741371778,
+ "grad_norm": 0.1966937631368637,
+ "learning_rate": 0.0006,
+ "loss": 3.616194248199463,
+ "step": 3517
+ },
+ {
+ "epoch": 48.86675404106597,
+ "grad_norm": 0.20755162835121155,
+ "learning_rate": 0.0006,
+ "loss": 3.594695568084717,
+ "step": 3518
+ },
+ {
+ "epoch": 48.88073394495413,
+ "grad_norm": 0.2012479156255722,
+ "learning_rate": 0.0006,
+ "loss": 3.6069273948669434,
+ "step": 3519
+ },
+ {
+ "epoch": 48.89471384884229,
+ "grad_norm": 0.19260065257549286,
+ "learning_rate": 0.0006,
+ "loss": 3.573819160461426,
+ "step": 3520
+ },
+ {
+ "epoch": 48.90869375273045,
+ "grad_norm": 0.19911104440689087,
+ "learning_rate": 0.0006,
+ "loss": 3.632185459136963,
+ "step": 3521
+ },
+ {
+ "epoch": 48.92267365661861,
+ "grad_norm": 0.22266048192977905,
+ "learning_rate": 0.0006,
+ "loss": 3.607295513153076,
+ "step": 3522
+ },
+ {
+ "epoch": 48.93665356050677,
+ "grad_norm": 0.2542882561683655,
+ "learning_rate": 0.0006,
+ "loss": 3.6014773845672607,
+ "step": 3523
+ },
+ {
+ "epoch": 48.95063346439493,
+ "grad_norm": 0.2878575026988983,
+ "learning_rate": 0.0006,
+ "loss": 3.5825531482696533,
+ "step": 3524
+ },
+ {
+ "epoch": 48.964613368283096,
+ "grad_norm": 0.3157055675983429,
+ "learning_rate": 0.0006,
+ "loss": 3.5986037254333496,
+ "step": 3525
+ },
+ {
+ "epoch": 48.97859327217125,
+ "grad_norm": 0.2815262973308563,
+ "learning_rate": 0.0006,
+ "loss": 3.6099600791931152,
+ "step": 3526
+ },
+ {
+ "epoch": 48.992573176059416,
+ "grad_norm": 0.22102823853492737,
+ "learning_rate": 0.0006,
+ "loss": 3.5859827995300293,
+ "step": 3527
+ },
+ {
+ "epoch": 49.0,
+ "grad_norm": 0.24937094748020172,
+ "learning_rate": 0.0006,
+ "loss": 3.622842311859131,
+ "step": 3528
+ },
+ {
+ "epoch": 49.0,
+ "eval_loss": 3.977067232131958,
+ "eval_runtime": 45.5503,
+ "eval_samples_per_second": 53.611,
+ "eval_steps_per_second": 3.359,
+ "step": 3528
+ },
+ {
+ "epoch": 49.01397990388816,
+ "grad_norm": 0.25072216987609863,
+ "learning_rate": 0.0006,
+ "loss": 3.590653419494629,
+ "step": 3529
+ },
+ {
+ "epoch": 49.02795980777632,
+ "grad_norm": 0.2611052989959717,
+ "learning_rate": 0.0006,
+ "loss": 3.5504279136657715,
+ "step": 3530
+ },
+ {
+ "epoch": 49.04193971166448,
+ "grad_norm": 0.2547961473464966,
+ "learning_rate": 0.0006,
+ "loss": 3.5797581672668457,
+ "step": 3531
+ },
+ {
+ "epoch": 49.05591961555265,
+ "grad_norm": 0.25674310326576233,
+ "learning_rate": 0.0006,
+ "loss": 3.557278871536255,
+ "step": 3532
+ },
+ {
+ "epoch": 49.0698995194408,
+ "grad_norm": 0.25511929392814636,
+ "learning_rate": 0.0006,
+ "loss": 3.5788025856018066,
+ "step": 3533
+ },
+ {
+ "epoch": 49.083879423328966,
+ "grad_norm": 0.22920994460582733,
+ "learning_rate": 0.0006,
+ "loss": 3.580489158630371,
+ "step": 3534
+ },
+ {
+ "epoch": 49.09785932721712,
+ "grad_norm": 0.23436492681503296,
+ "learning_rate": 0.0006,
+ "loss": 3.5603699684143066,
+ "step": 3535
+ },
+ {
+ "epoch": 49.111839231105286,
+ "grad_norm": 0.2542382776737213,
+ "learning_rate": 0.0006,
+ "loss": 3.5937037467956543,
+ "step": 3536
+ },
+ {
+ "epoch": 49.12581913499345,
+ "grad_norm": 0.26718273758888245,
+ "learning_rate": 0.0006,
+ "loss": 3.6032168865203857,
+ "step": 3537
+ },
+ {
+ "epoch": 49.139799038881605,
+ "grad_norm": 0.2406773865222931,
+ "learning_rate": 0.0006,
+ "loss": 3.5737085342407227,
+ "step": 3538
+ },
+ {
+ "epoch": 49.15377894276977,
+ "grad_norm": 0.23408754169940948,
+ "learning_rate": 0.0006,
+ "loss": 3.592543601989746,
+ "step": 3539
+ },
+ {
+ "epoch": 49.16775884665793,
+ "grad_norm": 0.22974351048469543,
+ "learning_rate": 0.0006,
+ "loss": 3.543618679046631,
+ "step": 3540
+ },
+ {
+ "epoch": 49.18173875054609,
+ "grad_norm": 0.23479530215263367,
+ "learning_rate": 0.0006,
+ "loss": 3.547590732574463,
+ "step": 3541
+ },
+ {
+ "epoch": 49.19571865443425,
+ "grad_norm": 0.2100638598203659,
+ "learning_rate": 0.0006,
+ "loss": 3.6027469635009766,
+ "step": 3542
+ },
+ {
+ "epoch": 49.20969855832241,
+ "grad_norm": 0.20239035785198212,
+ "learning_rate": 0.0006,
+ "loss": 3.598567008972168,
+ "step": 3543
+ },
+ {
+ "epoch": 49.22367846221057,
+ "grad_norm": 0.20480065047740936,
+ "learning_rate": 0.0006,
+ "loss": 3.591038227081299,
+ "step": 3544
+ },
+ {
+ "epoch": 49.237658366098735,
+ "grad_norm": 0.20439887046813965,
+ "learning_rate": 0.0006,
+ "loss": 3.555039405822754,
+ "step": 3545
+ },
+ {
+ "epoch": 49.25163826998689,
+ "grad_norm": 0.21245788037776947,
+ "learning_rate": 0.0006,
+ "loss": 3.5772666931152344,
+ "step": 3546
+ },
+ {
+ "epoch": 49.265618173875055,
+ "grad_norm": 0.1993357390165329,
+ "learning_rate": 0.0006,
+ "loss": 3.5847411155700684,
+ "step": 3547
+ },
+ {
+ "epoch": 49.27959807776322,
+ "grad_norm": 0.22550229728221893,
+ "learning_rate": 0.0006,
+ "loss": 3.5679750442504883,
+ "step": 3548
+ },
+ {
+ "epoch": 49.293577981651374,
+ "grad_norm": 0.2383355349302292,
+ "learning_rate": 0.0006,
+ "loss": 3.57085919380188,
+ "step": 3549
+ },
+ {
+ "epoch": 49.30755788553954,
+ "grad_norm": 0.23968911170959473,
+ "learning_rate": 0.0006,
+ "loss": 3.557415246963501,
+ "step": 3550
+ },
+ {
+ "epoch": 49.3215377894277,
+ "grad_norm": 0.21453262865543365,
+ "learning_rate": 0.0006,
+ "loss": 3.5763611793518066,
+ "step": 3551
+ },
+ {
+ "epoch": 49.33551769331586,
+ "grad_norm": 0.20380273461341858,
+ "learning_rate": 0.0006,
+ "loss": 3.552011013031006,
+ "step": 3552
+ },
+ {
+ "epoch": 49.34949759720402,
+ "grad_norm": 0.19719970226287842,
+ "learning_rate": 0.0006,
+ "loss": 3.5719075202941895,
+ "step": 3553
+ },
+ {
+ "epoch": 49.36347750109218,
+ "grad_norm": 0.19018089771270752,
+ "learning_rate": 0.0006,
+ "loss": 3.5843467712402344,
+ "step": 3554
+ },
+ {
+ "epoch": 49.37745740498034,
+ "grad_norm": 0.18369099497795105,
+ "learning_rate": 0.0006,
+ "loss": 3.561741352081299,
+ "step": 3555
+ },
+ {
+ "epoch": 49.391437308868504,
+ "grad_norm": 0.2070280760526657,
+ "learning_rate": 0.0006,
+ "loss": 3.590721607208252,
+ "step": 3556
+ },
+ {
+ "epoch": 49.40541721275666,
+ "grad_norm": 0.23287905752658844,
+ "learning_rate": 0.0006,
+ "loss": 3.617081642150879,
+ "step": 3557
+ },
+ {
+ "epoch": 49.419397116644824,
+ "grad_norm": 0.21877793967723846,
+ "learning_rate": 0.0006,
+ "loss": 3.547166347503662,
+ "step": 3558
+ },
+ {
+ "epoch": 49.43337702053299,
+ "grad_norm": 0.21105137467384338,
+ "learning_rate": 0.0006,
+ "loss": 3.593552350997925,
+ "step": 3559
+ },
+ {
+ "epoch": 49.44735692442114,
+ "grad_norm": 0.24940872192382812,
+ "learning_rate": 0.0006,
+ "loss": 3.599729537963867,
+ "step": 3560
+ },
+ {
+ "epoch": 49.46133682830931,
+ "grad_norm": 0.26952996850013733,
+ "learning_rate": 0.0006,
+ "loss": 3.5915074348449707,
+ "step": 3561
+ },
+ {
+ "epoch": 49.47531673219746,
+ "grad_norm": 0.25706353783607483,
+ "learning_rate": 0.0006,
+ "loss": 3.587472915649414,
+ "step": 3562
+ },
+ {
+ "epoch": 49.489296636085626,
+ "grad_norm": 0.23666661977767944,
+ "learning_rate": 0.0006,
+ "loss": 3.561340808868408,
+ "step": 3563
+ },
+ {
+ "epoch": 49.50327653997379,
+ "grad_norm": 0.22524063289165497,
+ "learning_rate": 0.0006,
+ "loss": 3.587310314178467,
+ "step": 3564
+ },
+ {
+ "epoch": 49.517256443861946,
+ "grad_norm": 0.22991003096103668,
+ "learning_rate": 0.0006,
+ "loss": 3.56671142578125,
+ "step": 3565
+ },
+ {
+ "epoch": 49.53123634775011,
+ "grad_norm": 0.23067602515220642,
+ "learning_rate": 0.0006,
+ "loss": 3.578601837158203,
+ "step": 3566
+ },
+ {
+ "epoch": 49.54521625163827,
+ "grad_norm": 0.2133914828300476,
+ "learning_rate": 0.0006,
+ "loss": 3.593726873397827,
+ "step": 3567
+ },
+ {
+ "epoch": 49.55919615552643,
+ "grad_norm": 0.21879160404205322,
+ "learning_rate": 0.0006,
+ "loss": 3.5833992958068848,
+ "step": 3568
+ },
+ {
+ "epoch": 49.57317605941459,
+ "grad_norm": 0.2116270661354065,
+ "learning_rate": 0.0006,
+ "loss": 3.575761079788208,
+ "step": 3569
+ },
+ {
+ "epoch": 49.58715596330275,
+ "grad_norm": 0.19506660103797913,
+ "learning_rate": 0.0006,
+ "loss": 3.5600461959838867,
+ "step": 3570
+ },
+ {
+ "epoch": 49.60113586719091,
+ "grad_norm": 0.21305067837238312,
+ "learning_rate": 0.0006,
+ "loss": 3.5717577934265137,
+ "step": 3571
+ },
+ {
+ "epoch": 49.615115771079076,
+ "grad_norm": 0.21184347569942474,
+ "learning_rate": 0.0006,
+ "loss": 3.608819007873535,
+ "step": 3572
+ },
+ {
+ "epoch": 49.62909567496723,
+ "grad_norm": 0.22302201390266418,
+ "learning_rate": 0.0006,
+ "loss": 3.5871644020080566,
+ "step": 3573
+ },
+ {
+ "epoch": 49.643075578855395,
+ "grad_norm": 0.21942365169525146,
+ "learning_rate": 0.0006,
+ "loss": 3.596029043197632,
+ "step": 3574
+ },
+ {
+ "epoch": 49.65705548274356,
+ "grad_norm": 0.2627110481262207,
+ "learning_rate": 0.0006,
+ "loss": 3.5900766849517822,
+ "step": 3575
+ },
+ {
+ "epoch": 49.671035386631715,
+ "grad_norm": 0.28253448009490967,
+ "learning_rate": 0.0006,
+ "loss": 3.599386215209961,
+ "step": 3576
+ },
+ {
+ "epoch": 49.68501529051988,
+ "grad_norm": 0.24279426038265228,
+ "learning_rate": 0.0006,
+ "loss": 3.580909013748169,
+ "step": 3577
+ },
+ {
+ "epoch": 49.69899519440804,
+ "grad_norm": 0.22092898190021515,
+ "learning_rate": 0.0006,
+ "loss": 3.6043782234191895,
+ "step": 3578
+ },
+ {
+ "epoch": 49.7129750982962,
+ "grad_norm": 0.23356051743030548,
+ "learning_rate": 0.0006,
+ "loss": 3.6103105545043945,
+ "step": 3579
+ },
+ {
+ "epoch": 49.72695500218436,
+ "grad_norm": 0.24508118629455566,
+ "learning_rate": 0.0006,
+ "loss": 3.612980365753174,
+ "step": 3580
+ },
+ {
+ "epoch": 49.74093490607252,
+ "grad_norm": 0.2501833438873291,
+ "learning_rate": 0.0006,
+ "loss": 3.6111063957214355,
+ "step": 3581
+ },
+ {
+ "epoch": 49.75491480996068,
+ "grad_norm": 0.2263427972793579,
+ "learning_rate": 0.0006,
+ "loss": 3.5709285736083984,
+ "step": 3582
+ },
+ {
+ "epoch": 49.768894713848844,
+ "grad_norm": 0.19881728291511536,
+ "learning_rate": 0.0006,
+ "loss": 3.5836503505706787,
+ "step": 3583
+ },
+ {
+ "epoch": 49.782874617737,
+ "grad_norm": 0.22516517341136932,
+ "learning_rate": 0.0006,
+ "loss": 3.5797667503356934,
+ "step": 3584
+ },
+ {
+ "epoch": 49.796854521625164,
+ "grad_norm": 0.22347061336040497,
+ "learning_rate": 0.0006,
+ "loss": 3.6245951652526855,
+ "step": 3585
+ },
+ {
+ "epoch": 49.81083442551333,
+ "grad_norm": 0.2062593549489975,
+ "learning_rate": 0.0006,
+ "loss": 3.607572317123413,
+ "step": 3586
+ },
+ {
+ "epoch": 49.824814329401484,
+ "grad_norm": 0.20671074092388153,
+ "learning_rate": 0.0006,
+ "loss": 3.5671472549438477,
+ "step": 3587
+ },
+ {
+ "epoch": 49.83879423328965,
+ "grad_norm": 0.19981902837753296,
+ "learning_rate": 0.0006,
+ "loss": 3.6084837913513184,
+ "step": 3588
+ },
+ {
+ "epoch": 49.8527741371778,
+ "grad_norm": 0.2004556804895401,
+ "learning_rate": 0.0006,
+ "loss": 3.631455898284912,
+ "step": 3589
+ },
+ {
+ "epoch": 49.86675404106597,
+ "grad_norm": 0.20990414917469025,
+ "learning_rate": 0.0006,
+ "loss": 3.6017699241638184,
+ "step": 3590
+ },
+ {
+ "epoch": 49.88073394495413,
+ "grad_norm": 0.19016146659851074,
+ "learning_rate": 0.0006,
+ "loss": 3.6110801696777344,
+ "step": 3591
+ },
+ {
+ "epoch": 49.89471384884229,
+ "grad_norm": 0.2015834003686905,
+ "learning_rate": 0.0006,
+ "loss": 3.58852481842041,
+ "step": 3592
+ },
+ {
+ "epoch": 49.90869375273045,
+ "grad_norm": 0.205678328871727,
+ "learning_rate": 0.0006,
+ "loss": 3.581789970397949,
+ "step": 3593
+ },
+ {
+ "epoch": 49.92267365661861,
+ "grad_norm": 0.20975211262702942,
+ "learning_rate": 0.0006,
+ "loss": 3.6126320362091064,
+ "step": 3594
+ },
+ {
+ "epoch": 49.93665356050677,
+ "grad_norm": 0.20510081946849823,
+ "learning_rate": 0.0006,
+ "loss": 3.5970656871795654,
+ "step": 3595
+ },
+ {
+ "epoch": 49.95063346439493,
+ "grad_norm": 0.19842886924743652,
+ "learning_rate": 0.0006,
+ "loss": 3.6055545806884766,
+ "step": 3596
+ },
+ {
+ "epoch": 49.964613368283096,
+ "grad_norm": 0.20551791787147522,
+ "learning_rate": 0.0006,
+ "loss": 3.5861949920654297,
+ "step": 3597
+ },
+ {
+ "epoch": 49.97859327217125,
+ "grad_norm": 0.21147456765174866,
+ "learning_rate": 0.0006,
+ "loss": 3.585934638977051,
+ "step": 3598
+ },
+ {
+ "epoch": 49.992573176059416,
+ "grad_norm": 0.21793442964553833,
+ "learning_rate": 0.0006,
+ "loss": 3.5956411361694336,
+ "step": 3599
+ },
+ {
+ "epoch": 50.0,
+ "grad_norm": 0.24623161554336548,
+ "learning_rate": 0.0006,
+ "loss": 3.623453140258789,
+ "step": 3600
+ },
+ {
+ "epoch": 50.0,
+ "eval_loss": 3.9807891845703125,
+ "eval_runtime": 45.7708,
+ "eval_samples_per_second": 53.353,
+ "eval_steps_per_second": 3.343,
+ "step": 3600
+ },
+ {
+ "epoch": 50.01397990388816,
+ "grad_norm": 0.22322626411914825,
+ "learning_rate": 0.0006,
+ "loss": 3.5475401878356934,
+ "step": 3601
+ },
+ {
+ "epoch": 50.02795980777632,
+ "grad_norm": 0.21957066655158997,
+ "learning_rate": 0.0006,
+ "loss": 3.5616683959960938,
+ "step": 3602
+ },
+ {
+ "epoch": 50.04193971166448,
+ "grad_norm": 0.22030551731586456,
+ "learning_rate": 0.0006,
+ "loss": 3.56367826461792,
+ "step": 3603
+ },
+ {
+ "epoch": 50.05591961555265,
+ "grad_norm": 0.21536092460155487,
+ "learning_rate": 0.0006,
+ "loss": 3.5613503456115723,
+ "step": 3604
+ },
+ {
+ "epoch": 50.0698995194408,
+ "grad_norm": 0.22454269230365753,
+ "learning_rate": 0.0006,
+ "loss": 3.5348987579345703,
+ "step": 3605
+ },
+ {
+ "epoch": 50.083879423328966,
+ "grad_norm": 0.2281617820262909,
+ "learning_rate": 0.0006,
+ "loss": 3.5722241401672363,
+ "step": 3606
+ },
+ {
+ "epoch": 50.09785932721712,
+ "grad_norm": 0.23318710923194885,
+ "learning_rate": 0.0006,
+ "loss": 3.559063673019409,
+ "step": 3607
+ },
+ {
+ "epoch": 50.111839231105286,
+ "grad_norm": 0.2277889847755432,
+ "learning_rate": 0.0006,
+ "loss": 3.5632925033569336,
+ "step": 3608
+ },
+ {
+ "epoch": 50.12581913499345,
+ "grad_norm": 0.2317705601453781,
+ "learning_rate": 0.0006,
+ "loss": 3.5835886001586914,
+ "step": 3609
+ },
+ {
+ "epoch": 50.139799038881605,
+ "grad_norm": 0.21388863027095795,
+ "learning_rate": 0.0006,
+ "loss": 3.5976145267486572,
+ "step": 3610
+ },
+ {
+ "epoch": 50.15377894276977,
+ "grad_norm": 0.2070954293012619,
+ "learning_rate": 0.0006,
+ "loss": 3.5486221313476562,
+ "step": 3611
+ },
+ {
+ "epoch": 50.16775884665793,
+ "grad_norm": 0.21602077782154083,
+ "learning_rate": 0.0006,
+ "loss": 3.5897607803344727,
+ "step": 3612
+ },
+ {
+ "epoch": 50.18173875054609,
+ "grad_norm": 0.21106162667274475,
+ "learning_rate": 0.0006,
+ "loss": 3.5587167739868164,
+ "step": 3613
+ },
+ {
+ "epoch": 50.19571865443425,
+ "grad_norm": 0.2047950178384781,
+ "learning_rate": 0.0006,
+ "loss": 3.576798915863037,
+ "step": 3614
+ },
+ {
+ "epoch": 50.20969855832241,
+ "grad_norm": 0.2204097956418991,
+ "learning_rate": 0.0006,
+ "loss": 3.5466837882995605,
+ "step": 3615
+ },
+ {
+ "epoch": 50.22367846221057,
+ "grad_norm": 0.2220875471830368,
+ "learning_rate": 0.0006,
+ "loss": 3.5722036361694336,
+ "step": 3616
+ },
+ {
+ "epoch": 50.237658366098735,
+ "grad_norm": 0.2250797003507614,
+ "learning_rate": 0.0006,
+ "loss": 3.566347122192383,
+ "step": 3617
+ },
+ {
+ "epoch": 50.25163826998689,
+ "grad_norm": 0.22837485373020172,
+ "learning_rate": 0.0006,
+ "loss": 3.5673274993896484,
+ "step": 3618
+ },
+ {
+ "epoch": 50.265618173875055,
+ "grad_norm": 0.2281104475259781,
+ "learning_rate": 0.0006,
+ "loss": 3.5543737411499023,
+ "step": 3619
+ },
+ {
+ "epoch": 50.27959807776322,
+ "grad_norm": 0.2052381932735443,
+ "learning_rate": 0.0006,
+ "loss": 3.566401958465576,
+ "step": 3620
+ },
+ {
+ "epoch": 50.293577981651374,
+ "grad_norm": 0.2125921994447708,
+ "learning_rate": 0.0006,
+ "loss": 3.5467424392700195,
+ "step": 3621
+ },
+ {
+ "epoch": 50.30755788553954,
+ "grad_norm": 0.22641244530677795,
+ "learning_rate": 0.0006,
+ "loss": 3.548497200012207,
+ "step": 3622
+ },
+ {
+ "epoch": 50.3215377894277,
+ "grad_norm": 0.23039482533931732,
+ "learning_rate": 0.0006,
+ "loss": 3.5948381423950195,
+ "step": 3623
+ },
+ {
+ "epoch": 50.33551769331586,
+ "grad_norm": 0.22753404080867767,
+ "learning_rate": 0.0006,
+ "loss": 3.541825532913208,
+ "step": 3624
+ },
+ {
+ "epoch": 50.34949759720402,
+ "grad_norm": 0.2528170347213745,
+ "learning_rate": 0.0006,
+ "loss": 3.5937235355377197,
+ "step": 3625
+ },
+ {
+ "epoch": 50.36347750109218,
+ "grad_norm": 0.25434595346450806,
+ "learning_rate": 0.0006,
+ "loss": 3.5779776573181152,
+ "step": 3626
+ },
+ {
+ "epoch": 50.37745740498034,
+ "grad_norm": 0.22519059479236603,
+ "learning_rate": 0.0006,
+ "loss": 3.5456271171569824,
+ "step": 3627
+ },
+ {
+ "epoch": 50.391437308868504,
+ "grad_norm": 0.2077232301235199,
+ "learning_rate": 0.0006,
+ "loss": 3.5693111419677734,
+ "step": 3628
+ },
+ {
+ "epoch": 50.40541721275666,
+ "grad_norm": 0.20925411581993103,
+ "learning_rate": 0.0006,
+ "loss": 3.6063997745513916,
+ "step": 3629
+ },
+ {
+ "epoch": 50.419397116644824,
+ "grad_norm": 0.2114555686712265,
+ "learning_rate": 0.0006,
+ "loss": 3.5676894187927246,
+ "step": 3630
+ },
+ {
+ "epoch": 50.43337702053299,
+ "grad_norm": 0.23759354650974274,
+ "learning_rate": 0.0006,
+ "loss": 3.5465126037597656,
+ "step": 3631
+ },
+ {
+ "epoch": 50.44735692442114,
+ "grad_norm": 0.23809516429901123,
+ "learning_rate": 0.0006,
+ "loss": 3.571600914001465,
+ "step": 3632
+ },
+ {
+ "epoch": 50.46133682830931,
+ "grad_norm": 0.20501303672790527,
+ "learning_rate": 0.0006,
+ "loss": 3.573550224304199,
+ "step": 3633
+ },
+ {
+ "epoch": 50.47531673219746,
+ "grad_norm": 0.21562306582927704,
+ "learning_rate": 0.0006,
+ "loss": 3.5625600814819336,
+ "step": 3634
+ },
+ {
+ "epoch": 50.489296636085626,
+ "grad_norm": 0.20469479262828827,
+ "learning_rate": 0.0006,
+ "loss": 3.5737175941467285,
+ "step": 3635
+ },
+ {
+ "epoch": 50.50327653997379,
+ "grad_norm": 0.2078634798526764,
+ "learning_rate": 0.0006,
+ "loss": 3.5691545009613037,
+ "step": 3636
+ },
+ {
+ "epoch": 50.517256443861946,
+ "grad_norm": 0.20340897142887115,
+ "learning_rate": 0.0006,
+ "loss": 3.583918571472168,
+ "step": 3637
+ },
+ {
+ "epoch": 50.53123634775011,
+ "grad_norm": 0.2006944715976715,
+ "learning_rate": 0.0006,
+ "loss": 3.596034049987793,
+ "step": 3638
+ },
+ {
+ "epoch": 50.54521625163827,
+ "grad_norm": 0.19281257688999176,
+ "learning_rate": 0.0006,
+ "loss": 3.5993080139160156,
+ "step": 3639
+ },
+ {
+ "epoch": 50.55919615552643,
+ "grad_norm": 0.19528807699680328,
+ "learning_rate": 0.0006,
+ "loss": 3.6108102798461914,
+ "step": 3640
+ },
+ {
+ "epoch": 50.57317605941459,
+ "grad_norm": 0.19329112768173218,
+ "learning_rate": 0.0006,
+ "loss": 3.5964512825012207,
+ "step": 3641
+ },
+ {
+ "epoch": 50.58715596330275,
+ "grad_norm": 0.1928209513425827,
+ "learning_rate": 0.0006,
+ "loss": 3.5927724838256836,
+ "step": 3642
+ },
+ {
+ "epoch": 50.60113586719091,
+ "grad_norm": 0.20212236046791077,
+ "learning_rate": 0.0006,
+ "loss": 3.5778708457946777,
+ "step": 3643
+ },
+ {
+ "epoch": 50.615115771079076,
+ "grad_norm": 0.22244620323181152,
+ "learning_rate": 0.0006,
+ "loss": 3.6219539642333984,
+ "step": 3644
+ },
+ {
+ "epoch": 50.62909567496723,
+ "grad_norm": 0.2659119963645935,
+ "learning_rate": 0.0006,
+ "loss": 3.578831195831299,
+ "step": 3645
+ },
+ {
+ "epoch": 50.643075578855395,
+ "grad_norm": 0.2837344706058502,
+ "learning_rate": 0.0006,
+ "loss": 3.587677240371704,
+ "step": 3646
+ },
+ {
+ "epoch": 50.65705548274356,
+ "grad_norm": 0.26747965812683105,
+ "learning_rate": 0.0006,
+ "loss": 3.611286163330078,
+ "step": 3647
+ },
+ {
+ "epoch": 50.671035386631715,
+ "grad_norm": 0.24604788422584534,
+ "learning_rate": 0.0006,
+ "loss": 3.5740575790405273,
+ "step": 3648
+ },
+ {
+ "epoch": 50.68501529051988,
+ "grad_norm": 0.2379457652568817,
+ "learning_rate": 0.0006,
+ "loss": 3.5997209548950195,
+ "step": 3649
+ },
+ {
+ "epoch": 50.69899519440804,
+ "grad_norm": 0.2296321839094162,
+ "learning_rate": 0.0006,
+ "loss": 3.5975162982940674,
+ "step": 3650
+ },
+ {
+ "epoch": 50.7129750982962,
+ "grad_norm": 0.22054627537727356,
+ "learning_rate": 0.0006,
+ "loss": 3.5821738243103027,
+ "step": 3651
+ },
+ {
+ "epoch": 50.72695500218436,
+ "grad_norm": 0.22114980220794678,
+ "learning_rate": 0.0006,
+ "loss": 3.5769970417022705,
+ "step": 3652
+ },
+ {
+ "epoch": 50.74093490607252,
+ "grad_norm": 0.21389314532279968,
+ "learning_rate": 0.0006,
+ "loss": 3.5952796936035156,
+ "step": 3653
+ },
+ {
+ "epoch": 50.75491480996068,
+ "grad_norm": 0.21069210767745972,
+ "learning_rate": 0.0006,
+ "loss": 3.5884671211242676,
+ "step": 3654
+ },
+ {
+ "epoch": 50.768894713848844,
+ "grad_norm": 0.22028805315494537,
+ "learning_rate": 0.0006,
+ "loss": 3.593442440032959,
+ "step": 3655
+ },
+ {
+ "epoch": 50.782874617737,
+ "grad_norm": 0.21296948194503784,
+ "learning_rate": 0.0006,
+ "loss": 3.5656774044036865,
+ "step": 3656
+ },
+ {
+ "epoch": 50.796854521625164,
+ "grad_norm": 0.19871588051319122,
+ "learning_rate": 0.0006,
+ "loss": 3.5939064025878906,
+ "step": 3657
+ },
+ {
+ "epoch": 50.81083442551333,
+ "grad_norm": 0.19523470103740692,
+ "learning_rate": 0.0006,
+ "loss": 3.5806071758270264,
+ "step": 3658
+ },
+ {
+ "epoch": 50.824814329401484,
+ "grad_norm": 0.18718191981315613,
+ "learning_rate": 0.0006,
+ "loss": 3.5903120040893555,
+ "step": 3659
+ },
+ {
+ "epoch": 50.83879423328965,
+ "grad_norm": 0.18796689808368683,
+ "learning_rate": 0.0006,
+ "loss": 3.5799593925476074,
+ "step": 3660
+ },
+ {
+ "epoch": 50.8527741371778,
+ "grad_norm": 0.21794569492340088,
+ "learning_rate": 0.0006,
+ "loss": 3.5712361335754395,
+ "step": 3661
+ },
+ {
+ "epoch": 50.86675404106597,
+ "grad_norm": 0.2374759465456009,
+ "learning_rate": 0.0006,
+ "loss": 3.602503776550293,
+ "step": 3662
+ },
+ {
+ "epoch": 50.88073394495413,
+ "grad_norm": 0.20213527977466583,
+ "learning_rate": 0.0006,
+ "loss": 3.5756399631500244,
+ "step": 3663
+ },
+ {
+ "epoch": 50.89471384884229,
+ "grad_norm": 0.1875160187482834,
+ "learning_rate": 0.0006,
+ "loss": 3.625436305999756,
+ "step": 3664
+ },
+ {
+ "epoch": 50.90869375273045,
+ "grad_norm": 0.19908255338668823,
+ "learning_rate": 0.0006,
+ "loss": 3.592522621154785,
+ "step": 3665
+ },
+ {
+ "epoch": 50.92267365661861,
+ "grad_norm": 0.20776167511940002,
+ "learning_rate": 0.0006,
+ "loss": 3.5777883529663086,
+ "step": 3666
+ },
+ {
+ "epoch": 50.93665356050677,
+ "grad_norm": 0.19510093331336975,
+ "learning_rate": 0.0006,
+ "loss": 3.587306022644043,
+ "step": 3667
+ },
+ {
+ "epoch": 50.95063346439493,
+ "grad_norm": 0.2180490493774414,
+ "learning_rate": 0.0006,
+ "loss": 3.5855464935302734,
+ "step": 3668
+ },
+ {
+ "epoch": 50.964613368283096,
+ "grad_norm": 0.19967055320739746,
+ "learning_rate": 0.0006,
+ "loss": 3.609689235687256,
+ "step": 3669
+ },
+ {
+ "epoch": 50.97859327217125,
+ "grad_norm": 0.2081584632396698,
+ "learning_rate": 0.0006,
+ "loss": 3.625236749649048,
+ "step": 3670
+ },
+ {
+ "epoch": 50.992573176059416,
+ "grad_norm": 0.2312266230583191,
+ "learning_rate": 0.0006,
+ "loss": 3.5977330207824707,
+ "step": 3671
+ },
+ {
+ "epoch": 51.0,
+ "grad_norm": 0.2464766502380371,
+ "learning_rate": 0.0006,
+ "loss": 3.610635995864868,
+ "step": 3672
+ },
+ {
+ "epoch": 51.0,
+ "eval_loss": 3.9810166358947754,
+ "eval_runtime": 45.5851,
+ "eval_samples_per_second": 53.57,
+ "eval_steps_per_second": 3.356,
+ "step": 3672
+ },
+ {
+ "epoch": 51.01397990388816,
+ "grad_norm": 0.22583232820034027,
+ "learning_rate": 0.0006,
+ "loss": 3.547168016433716,
+ "step": 3673
+ },
+ {
+ "epoch": 51.02795980777632,
+ "grad_norm": 0.23001070320606232,
+ "learning_rate": 0.0006,
+ "loss": 3.546207904815674,
+ "step": 3674
+ },
+ {
+ "epoch": 51.04193971166448,
+ "grad_norm": 0.21891392767429352,
+ "learning_rate": 0.0006,
+ "loss": 3.564371109008789,
+ "step": 3675
+ },
+ {
+ "epoch": 51.05591961555265,
+ "grad_norm": 0.22195076942443848,
+ "learning_rate": 0.0006,
+ "loss": 3.538297414779663,
+ "step": 3676
+ },
+ {
+ "epoch": 51.0698995194408,
+ "grad_norm": 0.24688288569450378,
+ "learning_rate": 0.0006,
+ "loss": 3.5705811977386475,
+ "step": 3677
+ },
+ {
+ "epoch": 51.083879423328966,
+ "grad_norm": 0.2731003165245056,
+ "learning_rate": 0.0006,
+ "loss": 3.530763626098633,
+ "step": 3678
+ },
+ {
+ "epoch": 51.09785932721712,
+ "grad_norm": 0.27474021911621094,
+ "learning_rate": 0.0006,
+ "loss": 3.5559208393096924,
+ "step": 3679
+ },
+ {
+ "epoch": 51.111839231105286,
+ "grad_norm": 0.26311439275741577,
+ "learning_rate": 0.0006,
+ "loss": 3.5698819160461426,
+ "step": 3680
+ },
+ {
+ "epoch": 51.12581913499345,
+ "grad_norm": 0.21895965933799744,
+ "learning_rate": 0.0006,
+ "loss": 3.567232370376587,
+ "step": 3681
+ },
+ {
+ "epoch": 51.139799038881605,
+ "grad_norm": 0.19598282873630524,
+ "learning_rate": 0.0006,
+ "loss": 3.6033718585968018,
+ "step": 3682
+ },
+ {
+ "epoch": 51.15377894276977,
+ "grad_norm": 0.2183268666267395,
+ "learning_rate": 0.0006,
+ "loss": 3.5599026679992676,
+ "step": 3683
+ },
+ {
+ "epoch": 51.16775884665793,
+ "grad_norm": 0.22657731175422668,
+ "learning_rate": 0.0006,
+ "loss": 3.532038688659668,
+ "step": 3684
+ },
+ {
+ "epoch": 51.18173875054609,
+ "grad_norm": 0.21979935467243195,
+ "learning_rate": 0.0006,
+ "loss": 3.544640064239502,
+ "step": 3685
+ },
+ {
+ "epoch": 51.19571865443425,
+ "grad_norm": 0.20581361651420593,
+ "learning_rate": 0.0006,
+ "loss": 3.579803466796875,
+ "step": 3686
+ },
+ {
+ "epoch": 51.20969855832241,
+ "grad_norm": 0.22677212953567505,
+ "learning_rate": 0.0006,
+ "loss": 3.576796054840088,
+ "step": 3687
+ },
+ {
+ "epoch": 51.22367846221057,
+ "grad_norm": 0.2599104940891266,
+ "learning_rate": 0.0006,
+ "loss": 3.5657899379730225,
+ "step": 3688
+ },
+ {
+ "epoch": 51.237658366098735,
+ "grad_norm": 0.23320309817790985,
+ "learning_rate": 0.0006,
+ "loss": 3.5537824630737305,
+ "step": 3689
+ },
+ {
+ "epoch": 51.25163826998689,
+ "grad_norm": 0.2345186471939087,
+ "learning_rate": 0.0006,
+ "loss": 3.5699901580810547,
+ "step": 3690
+ },
+ {
+ "epoch": 51.265618173875055,
+ "grad_norm": 0.24723312258720398,
+ "learning_rate": 0.0006,
+ "loss": 3.553495168685913,
+ "step": 3691
+ },
+ {
+ "epoch": 51.27959807776322,
+ "grad_norm": 0.24195604026317596,
+ "learning_rate": 0.0006,
+ "loss": 3.6008248329162598,
+ "step": 3692
+ },
+ {
+ "epoch": 51.293577981651374,
+ "grad_norm": 0.23011726140975952,
+ "learning_rate": 0.0006,
+ "loss": 3.5842812061309814,
+ "step": 3693
+ },
+ {
+ "epoch": 51.30755788553954,
+ "grad_norm": 0.23412185907363892,
+ "learning_rate": 0.0006,
+ "loss": 3.5648040771484375,
+ "step": 3694
+ },
+ {
+ "epoch": 51.3215377894277,
+ "grad_norm": 0.22911828756332397,
+ "learning_rate": 0.0006,
+ "loss": 3.5599000453948975,
+ "step": 3695
+ },
+ {
+ "epoch": 51.33551769331586,
+ "grad_norm": 0.20045386254787445,
+ "learning_rate": 0.0006,
+ "loss": 3.559370517730713,
+ "step": 3696
+ },
+ {
+ "epoch": 51.34949759720402,
+ "grad_norm": 0.24723322689533234,
+ "learning_rate": 0.0006,
+ "loss": 3.5734081268310547,
+ "step": 3697
+ },
+ {
+ "epoch": 51.36347750109218,
+ "grad_norm": 0.28003066778182983,
+ "learning_rate": 0.0006,
+ "loss": 3.574591636657715,
+ "step": 3698
+ },
+ {
+ "epoch": 51.37745740498034,
+ "grad_norm": 0.27969157695770264,
+ "learning_rate": 0.0006,
+ "loss": 3.5703907012939453,
+ "step": 3699
+ },
+ {
+ "epoch": 51.391437308868504,
+ "grad_norm": 0.2352922111749649,
+ "learning_rate": 0.0006,
+ "loss": 3.540452480316162,
+ "step": 3700
+ },
+ {
+ "epoch": 51.40541721275666,
+ "grad_norm": 0.21332240104675293,
+ "learning_rate": 0.0006,
+ "loss": 3.5883522033691406,
+ "step": 3701
+ },
+ {
+ "epoch": 51.419397116644824,
+ "grad_norm": 0.2021809071302414,
+ "learning_rate": 0.0006,
+ "loss": 3.567544460296631,
+ "step": 3702
+ },
+ {
+ "epoch": 51.43337702053299,
+ "grad_norm": 0.23054654896259308,
+ "learning_rate": 0.0006,
+ "loss": 3.5927062034606934,
+ "step": 3703
+ },
+ {
+ "epoch": 51.44735692442114,
+ "grad_norm": 0.22398747503757477,
+ "learning_rate": 0.0006,
+ "loss": 3.5977213382720947,
+ "step": 3704
+ },
+ {
+ "epoch": 51.46133682830931,
+ "grad_norm": 0.2021128088235855,
+ "learning_rate": 0.0006,
+ "loss": 3.585836887359619,
+ "step": 3705
+ },
+ {
+ "epoch": 51.47531673219746,
+ "grad_norm": 0.23031292855739594,
+ "learning_rate": 0.0006,
+ "loss": 3.532315731048584,
+ "step": 3706
+ },
+ {
+ "epoch": 51.489296636085626,
+ "grad_norm": 0.26744455099105835,
+ "learning_rate": 0.0006,
+ "loss": 3.585782289505005,
+ "step": 3707
+ },
+ {
+ "epoch": 51.50327653997379,
+ "grad_norm": 0.2508980929851532,
+ "learning_rate": 0.0006,
+ "loss": 3.550276279449463,
+ "step": 3708
+ },
+ {
+ "epoch": 51.517256443861946,
+ "grad_norm": 0.2180585265159607,
+ "learning_rate": 0.0006,
+ "loss": 3.566798210144043,
+ "step": 3709
+ },
+ {
+ "epoch": 51.53123634775011,
+ "grad_norm": 0.18508869409561157,
+ "learning_rate": 0.0006,
+ "loss": 3.5295116901397705,
+ "step": 3710
+ },
+ {
+ "epoch": 51.54521625163827,
+ "grad_norm": 0.19017672538757324,
+ "learning_rate": 0.0006,
+ "loss": 3.5932717323303223,
+ "step": 3711
+ },
+ {
+ "epoch": 51.55919615552643,
+ "grad_norm": 0.2228020876646042,
+ "learning_rate": 0.0006,
+ "loss": 3.5660648345947266,
+ "step": 3712
+ },
+ {
+ "epoch": 51.57317605941459,
+ "grad_norm": 0.22948148846626282,
+ "learning_rate": 0.0006,
+ "loss": 3.5785627365112305,
+ "step": 3713
+ },
+ {
+ "epoch": 51.58715596330275,
+ "grad_norm": 0.2438911497592926,
+ "learning_rate": 0.0006,
+ "loss": 3.5885257720947266,
+ "step": 3714
+ },
+ {
+ "epoch": 51.60113586719091,
+ "grad_norm": 0.25012296438217163,
+ "learning_rate": 0.0006,
+ "loss": 3.577232599258423,
+ "step": 3715
+ },
+ {
+ "epoch": 51.615115771079076,
+ "grad_norm": 0.27102336287498474,
+ "learning_rate": 0.0006,
+ "loss": 3.5600078105926514,
+ "step": 3716
+ },
+ {
+ "epoch": 51.62909567496723,
+ "grad_norm": 0.26425355672836304,
+ "learning_rate": 0.0006,
+ "loss": 3.5694093704223633,
+ "step": 3717
+ },
+ {
+ "epoch": 51.643075578855395,
+ "grad_norm": 0.24292822182178497,
+ "learning_rate": 0.0006,
+ "loss": 3.5774331092834473,
+ "step": 3718
+ },
+ {
+ "epoch": 51.65705548274356,
+ "grad_norm": 0.22668084502220154,
+ "learning_rate": 0.0006,
+ "loss": 3.5912742614746094,
+ "step": 3719
+ },
+ {
+ "epoch": 51.671035386631715,
+ "grad_norm": 0.2090575248003006,
+ "learning_rate": 0.0006,
+ "loss": 3.5473170280456543,
+ "step": 3720
+ },
+ {
+ "epoch": 51.68501529051988,
+ "grad_norm": 0.22276616096496582,
+ "learning_rate": 0.0006,
+ "loss": 3.6076784133911133,
+ "step": 3721
+ },
+ {
+ "epoch": 51.69899519440804,
+ "grad_norm": 0.22105294466018677,
+ "learning_rate": 0.0006,
+ "loss": 3.5820791721343994,
+ "step": 3722
+ },
+ {
+ "epoch": 51.7129750982962,
+ "grad_norm": 0.19231240451335907,
+ "learning_rate": 0.0006,
+ "loss": 3.6017708778381348,
+ "step": 3723
+ },
+ {
+ "epoch": 51.72695500218436,
+ "grad_norm": 0.2050354927778244,
+ "learning_rate": 0.0006,
+ "loss": 3.5967769622802734,
+ "step": 3724
+ },
+ {
+ "epoch": 51.74093490607252,
+ "grad_norm": 0.19779305160045624,
+ "learning_rate": 0.0006,
+ "loss": 3.597214698791504,
+ "step": 3725
+ },
+ {
+ "epoch": 51.75491480996068,
+ "grad_norm": 0.22394844889640808,
+ "learning_rate": 0.0006,
+ "loss": 3.574063301086426,
+ "step": 3726
+ },
+ {
+ "epoch": 51.768894713848844,
+ "grad_norm": 0.2262638807296753,
+ "learning_rate": 0.0006,
+ "loss": 3.5754079818725586,
+ "step": 3727
+ },
+ {
+ "epoch": 51.782874617737,
+ "grad_norm": 0.2168288677930832,
+ "learning_rate": 0.0006,
+ "loss": 3.6079599857330322,
+ "step": 3728
+ },
+ {
+ "epoch": 51.796854521625164,
+ "grad_norm": 0.2035517394542694,
+ "learning_rate": 0.0006,
+ "loss": 3.5948667526245117,
+ "step": 3729
+ },
+ {
+ "epoch": 51.81083442551333,
+ "grad_norm": 0.20529425144195557,
+ "learning_rate": 0.0006,
+ "loss": 3.5589542388916016,
+ "step": 3730
+ },
+ {
+ "epoch": 51.824814329401484,
+ "grad_norm": 0.2464100867509842,
+ "learning_rate": 0.0006,
+ "loss": 3.5947155952453613,
+ "step": 3731
+ },
+ {
+ "epoch": 51.83879423328965,
+ "grad_norm": 0.28043219447135925,
+ "learning_rate": 0.0006,
+ "loss": 3.6102852821350098,
+ "step": 3732
+ },
+ {
+ "epoch": 51.8527741371778,
+ "grad_norm": 0.2879013121128082,
+ "learning_rate": 0.0006,
+ "loss": 3.5903573036193848,
+ "step": 3733
+ },
+ {
+ "epoch": 51.86675404106597,
+ "grad_norm": 0.2532044053077698,
+ "learning_rate": 0.0006,
+ "loss": 3.5704729557037354,
+ "step": 3734
+ },
+ {
+ "epoch": 51.88073394495413,
+ "grad_norm": 0.25126248598098755,
+ "learning_rate": 0.0006,
+ "loss": 3.5449633598327637,
+ "step": 3735
+ },
+ {
+ "epoch": 51.89471384884229,
+ "grad_norm": 0.2494364082813263,
+ "learning_rate": 0.0006,
+ "loss": 3.5825607776641846,
+ "step": 3736
+ },
+ {
+ "epoch": 51.90869375273045,
+ "grad_norm": 0.24867761135101318,
+ "learning_rate": 0.0006,
+ "loss": 3.5998034477233887,
+ "step": 3737
+ },
+ {
+ "epoch": 51.92267365661861,
+ "grad_norm": 0.2552012801170349,
+ "learning_rate": 0.0006,
+ "loss": 3.5487377643585205,
+ "step": 3738
+ },
+ {
+ "epoch": 51.93665356050677,
+ "grad_norm": 0.2243119329214096,
+ "learning_rate": 0.0006,
+ "loss": 3.6081466674804688,
+ "step": 3739
+ },
+ {
+ "epoch": 51.95063346439493,
+ "grad_norm": 0.2106700837612152,
+ "learning_rate": 0.0006,
+ "loss": 3.607586622238159,
+ "step": 3740
+ },
+ {
+ "epoch": 51.964613368283096,
+ "grad_norm": 0.2207096666097641,
+ "learning_rate": 0.0006,
+ "loss": 3.6094579696655273,
+ "step": 3741
+ },
+ {
+ "epoch": 51.97859327217125,
+ "grad_norm": 0.2310071736574173,
+ "learning_rate": 0.0006,
+ "loss": 3.5837807655334473,
+ "step": 3742
+ },
+ {
+ "epoch": 51.992573176059416,
+ "grad_norm": 0.258770614862442,
+ "learning_rate": 0.0006,
+ "loss": 3.639329433441162,
+ "step": 3743
+ },
+ {
+ "epoch": 52.0,
+ "grad_norm": 0.24004915356636047,
+ "learning_rate": 0.0006,
+ "loss": 3.6178512573242188,
+ "step": 3744
+ },
+ {
+ "epoch": 52.0,
+ "eval_loss": 3.97371244430542,
+ "eval_runtime": 46.1923,
+ "eval_samples_per_second": 52.866,
+ "eval_steps_per_second": 3.312,
+ "step": 3744
+ },
+ {
+ "epoch": 52.01397990388816,
+ "grad_norm": 0.21953323483467102,
+ "learning_rate": 0.0006,
+ "loss": 3.5929579734802246,
+ "step": 3745
+ },
+ {
+ "epoch": 52.02795980777632,
+ "grad_norm": 0.25547415018081665,
+ "learning_rate": 0.0006,
+ "loss": 3.5762600898742676,
+ "step": 3746
+ },
+ {
+ "epoch": 52.04193971166448,
+ "grad_norm": 0.28905144333839417,
+ "learning_rate": 0.0006,
+ "loss": 3.5794596672058105,
+ "step": 3747
+ },
+ {
+ "epoch": 52.05591961555265,
+ "grad_norm": 0.2618118226528168,
+ "learning_rate": 0.0006,
+ "loss": 3.543205499649048,
+ "step": 3748
+ },
+ {
+ "epoch": 52.0698995194408,
+ "grad_norm": 0.2288745492696762,
+ "learning_rate": 0.0006,
+ "loss": 3.562770366668701,
+ "step": 3749
+ },
+ {
+ "epoch": 52.083879423328966,
+ "grad_norm": 0.25327110290527344,
+ "learning_rate": 0.0006,
+ "loss": 3.5405054092407227,
+ "step": 3750
+ },
+ {
+ "epoch": 52.09785932721712,
+ "grad_norm": 0.2721746861934662,
+ "learning_rate": 0.0006,
+ "loss": 3.5650479793548584,
+ "step": 3751
+ },
+ {
+ "epoch": 52.111839231105286,
+ "grad_norm": 0.2890555262565613,
+ "learning_rate": 0.0006,
+ "loss": 3.556122303009033,
+ "step": 3752
+ },
+ {
+ "epoch": 52.12581913499345,
+ "grad_norm": 0.30541476607322693,
+ "learning_rate": 0.0006,
+ "loss": 3.544271469116211,
+ "step": 3753
+ },
+ {
+ "epoch": 52.139799038881605,
+ "grad_norm": 0.2555760443210602,
+ "learning_rate": 0.0006,
+ "loss": 3.5452728271484375,
+ "step": 3754
+ },
+ {
+ "epoch": 52.15377894276977,
+ "grad_norm": 0.2653098404407501,
+ "learning_rate": 0.0006,
+ "loss": 3.57212495803833,
+ "step": 3755
+ },
+ {
+ "epoch": 52.16775884665793,
+ "grad_norm": 0.2479168176651001,
+ "learning_rate": 0.0006,
+ "loss": 3.5893373489379883,
+ "step": 3756
+ },
+ {
+ "epoch": 52.18173875054609,
+ "grad_norm": 0.21718256175518036,
+ "learning_rate": 0.0006,
+ "loss": 3.5616965293884277,
+ "step": 3757
+ },
+ {
+ "epoch": 52.19571865443425,
+ "grad_norm": 0.22033235430717468,
+ "learning_rate": 0.0006,
+ "loss": 3.566401481628418,
+ "step": 3758
+ },
+ {
+ "epoch": 52.20969855832241,
+ "grad_norm": 0.2401825189590454,
+ "learning_rate": 0.0006,
+ "loss": 3.547682762145996,
+ "step": 3759
+ },
+ {
+ "epoch": 52.22367846221057,
+ "grad_norm": 0.24496418237686157,
+ "learning_rate": 0.0006,
+ "loss": 3.5405421257019043,
+ "step": 3760
+ },
+ {
+ "epoch": 52.237658366098735,
+ "grad_norm": 0.2311883270740509,
+ "learning_rate": 0.0006,
+ "loss": 3.5709781646728516,
+ "step": 3761
+ },
+ {
+ "epoch": 52.25163826998689,
+ "grad_norm": 0.20850200951099396,
+ "learning_rate": 0.0006,
+ "loss": 3.5563712120056152,
+ "step": 3762
+ },
+ {
+ "epoch": 52.265618173875055,
+ "grad_norm": 0.2073400765657425,
+ "learning_rate": 0.0006,
+ "loss": 3.542343854904175,
+ "step": 3763
+ },
+ {
+ "epoch": 52.27959807776322,
+ "grad_norm": 0.21886718273162842,
+ "learning_rate": 0.0006,
+ "loss": 3.5633034706115723,
+ "step": 3764
+ },
+ {
+ "epoch": 52.293577981651374,
+ "grad_norm": 0.2218562215566635,
+ "learning_rate": 0.0006,
+ "loss": 3.5644288063049316,
+ "step": 3765
+ },
+ {
+ "epoch": 52.30755788553954,
+ "grad_norm": 0.22043557465076447,
+ "learning_rate": 0.0006,
+ "loss": 3.564373731613159,
+ "step": 3766
+ },
+ {
+ "epoch": 52.3215377894277,
+ "grad_norm": 0.2095082402229309,
+ "learning_rate": 0.0006,
+ "loss": 3.5336289405822754,
+ "step": 3767
+ },
+ {
+ "epoch": 52.33551769331586,
+ "grad_norm": 0.21115876734256744,
+ "learning_rate": 0.0006,
+ "loss": 3.5761165618896484,
+ "step": 3768
+ },
+ {
+ "epoch": 52.34949759720402,
+ "grad_norm": 0.21558400988578796,
+ "learning_rate": 0.0006,
+ "loss": 3.573495388031006,
+ "step": 3769
+ },
+ {
+ "epoch": 52.36347750109218,
+ "grad_norm": 0.213745579123497,
+ "learning_rate": 0.0006,
+ "loss": 3.572171211242676,
+ "step": 3770
+ },
+ {
+ "epoch": 52.37745740498034,
+ "grad_norm": 0.1926180124282837,
+ "learning_rate": 0.0006,
+ "loss": 3.532592535018921,
+ "step": 3771
+ },
+ {
+ "epoch": 52.391437308868504,
+ "grad_norm": 0.1993863731622696,
+ "learning_rate": 0.0006,
+ "loss": 3.551880359649658,
+ "step": 3772
+ },
+ {
+ "epoch": 52.40541721275666,
+ "grad_norm": 0.2018740326166153,
+ "learning_rate": 0.0006,
+ "loss": 3.557328701019287,
+ "step": 3773
+ },
+ {
+ "epoch": 52.419397116644824,
+ "grad_norm": 0.19035610556602478,
+ "learning_rate": 0.0006,
+ "loss": 3.600301504135132,
+ "step": 3774
+ },
+ {
+ "epoch": 52.43337702053299,
+ "grad_norm": 0.20069538056850433,
+ "learning_rate": 0.0006,
+ "loss": 3.5938944816589355,
+ "step": 3775
+ },
+ {
+ "epoch": 52.44735692442114,
+ "grad_norm": 0.21255625784397125,
+ "learning_rate": 0.0006,
+ "loss": 3.561086893081665,
+ "step": 3776
+ },
+ {
+ "epoch": 52.46133682830931,
+ "grad_norm": 0.20132070779800415,
+ "learning_rate": 0.0006,
+ "loss": 3.5525574684143066,
+ "step": 3777
+ },
+ {
+ "epoch": 52.47531673219746,
+ "grad_norm": 0.20152916014194489,
+ "learning_rate": 0.0006,
+ "loss": 3.5697402954101562,
+ "step": 3778
+ },
+ {
+ "epoch": 52.489296636085626,
+ "grad_norm": 0.1984269767999649,
+ "learning_rate": 0.0006,
+ "loss": 3.5686168670654297,
+ "step": 3779
+ },
+ {
+ "epoch": 52.50327653997379,
+ "grad_norm": 0.212612584233284,
+ "learning_rate": 0.0006,
+ "loss": 3.5522124767303467,
+ "step": 3780
+ },
+ {
+ "epoch": 52.517256443861946,
+ "grad_norm": 0.21382521092891693,
+ "learning_rate": 0.0006,
+ "loss": 3.5692944526672363,
+ "step": 3781
+ },
+ {
+ "epoch": 52.53123634775011,
+ "grad_norm": 0.2118486911058426,
+ "learning_rate": 0.0006,
+ "loss": 3.562495708465576,
+ "step": 3782
+ },
+ {
+ "epoch": 52.54521625163827,
+ "grad_norm": 0.22253486514091492,
+ "learning_rate": 0.0006,
+ "loss": 3.5709781646728516,
+ "step": 3783
+ },
+ {
+ "epoch": 52.55919615552643,
+ "grad_norm": 0.23701436817646027,
+ "learning_rate": 0.0006,
+ "loss": 3.548953056335449,
+ "step": 3784
+ },
+ {
+ "epoch": 52.57317605941459,
+ "grad_norm": 0.21345193684101105,
+ "learning_rate": 0.0006,
+ "loss": 3.543029308319092,
+ "step": 3785
+ },
+ {
+ "epoch": 52.58715596330275,
+ "grad_norm": 0.1854170262813568,
+ "learning_rate": 0.0006,
+ "loss": 3.5490989685058594,
+ "step": 3786
+ },
+ {
+ "epoch": 52.60113586719091,
+ "grad_norm": 0.23733633756637573,
+ "learning_rate": 0.0006,
+ "loss": 3.5800132751464844,
+ "step": 3787
+ },
+ {
+ "epoch": 52.615115771079076,
+ "grad_norm": 0.26175495982170105,
+ "learning_rate": 0.0006,
+ "loss": 3.562596321105957,
+ "step": 3788
+ },
+ {
+ "epoch": 52.62909567496723,
+ "grad_norm": 0.23134057223796844,
+ "learning_rate": 0.0006,
+ "loss": 3.5685765743255615,
+ "step": 3789
+ },
+ {
+ "epoch": 52.643075578855395,
+ "grad_norm": 0.1974988877773285,
+ "learning_rate": 0.0006,
+ "loss": 3.570517063140869,
+ "step": 3790
+ },
+ {
+ "epoch": 52.65705548274356,
+ "grad_norm": 0.20049697160720825,
+ "learning_rate": 0.0006,
+ "loss": 3.573286533355713,
+ "step": 3791
+ },
+ {
+ "epoch": 52.671035386631715,
+ "grad_norm": 0.1956445872783661,
+ "learning_rate": 0.0006,
+ "loss": 3.565880537033081,
+ "step": 3792
+ },
+ {
+ "epoch": 52.68501529051988,
+ "grad_norm": 0.2082354575395584,
+ "learning_rate": 0.0006,
+ "loss": 3.587278366088867,
+ "step": 3793
+ },
+ {
+ "epoch": 52.69899519440804,
+ "grad_norm": 0.20923161506652832,
+ "learning_rate": 0.0006,
+ "loss": 3.569469451904297,
+ "step": 3794
+ },
+ {
+ "epoch": 52.7129750982962,
+ "grad_norm": 0.20482848584651947,
+ "learning_rate": 0.0006,
+ "loss": 3.5826265811920166,
+ "step": 3795
+ },
+ {
+ "epoch": 52.72695500218436,
+ "grad_norm": 0.20411530137062073,
+ "learning_rate": 0.0006,
+ "loss": 3.5870275497436523,
+ "step": 3796
+ },
+ {
+ "epoch": 52.74093490607252,
+ "grad_norm": 0.2205485701560974,
+ "learning_rate": 0.0006,
+ "loss": 3.58900785446167,
+ "step": 3797
+ },
+ {
+ "epoch": 52.75491480996068,
+ "grad_norm": 0.21134008467197418,
+ "learning_rate": 0.0006,
+ "loss": 3.591036558151245,
+ "step": 3798
+ },
+ {
+ "epoch": 52.768894713848844,
+ "grad_norm": 0.20001831650733948,
+ "learning_rate": 0.0006,
+ "loss": 3.5670390129089355,
+ "step": 3799
+ },
+ {
+ "epoch": 52.782874617737,
+ "grad_norm": 0.2175939679145813,
+ "learning_rate": 0.0006,
+ "loss": 3.594132423400879,
+ "step": 3800
+ },
+ {
+ "epoch": 52.796854521625164,
+ "grad_norm": 0.22054694592952728,
+ "learning_rate": 0.0006,
+ "loss": 3.5565545558929443,
+ "step": 3801
+ },
+ {
+ "epoch": 52.81083442551333,
+ "grad_norm": 0.22901731729507446,
+ "learning_rate": 0.0006,
+ "loss": 3.5837020874023438,
+ "step": 3802
+ },
+ {
+ "epoch": 52.824814329401484,
+ "grad_norm": 0.22492778301239014,
+ "learning_rate": 0.0006,
+ "loss": 3.608218193054199,
+ "step": 3803
+ },
+ {
+ "epoch": 52.83879423328965,
+ "grad_norm": 0.21645256876945496,
+ "learning_rate": 0.0006,
+ "loss": 3.5839202404022217,
+ "step": 3804
+ },
+ {
+ "epoch": 52.8527741371778,
+ "grad_norm": 0.19680161774158478,
+ "learning_rate": 0.0006,
+ "loss": 3.568756580352783,
+ "step": 3805
+ },
+ {
+ "epoch": 52.86675404106597,
+ "grad_norm": 0.2084486186504364,
+ "learning_rate": 0.0006,
+ "loss": 3.580197811126709,
+ "step": 3806
+ },
+ {
+ "epoch": 52.88073394495413,
+ "grad_norm": 0.19380393624305725,
+ "learning_rate": 0.0006,
+ "loss": 3.5871198177337646,
+ "step": 3807
+ },
+ {
+ "epoch": 52.89471384884229,
+ "grad_norm": 0.1962910294532776,
+ "learning_rate": 0.0006,
+ "loss": 3.5878777503967285,
+ "step": 3808
+ },
+ {
+ "epoch": 52.90869375273045,
+ "grad_norm": 0.23292803764343262,
+ "learning_rate": 0.0006,
+ "loss": 3.574855327606201,
+ "step": 3809
+ },
+ {
+ "epoch": 52.92267365661861,
+ "grad_norm": 0.26974233984947205,
+ "learning_rate": 0.0006,
+ "loss": 3.5731749534606934,
+ "step": 3810
+ },
+ {
+ "epoch": 52.93665356050677,
+ "grad_norm": 0.26665496826171875,
+ "learning_rate": 0.0006,
+ "loss": 3.552717685699463,
+ "step": 3811
+ },
+ {
+ "epoch": 52.95063346439493,
+ "grad_norm": 0.24156489968299866,
+ "learning_rate": 0.0006,
+ "loss": 3.581787109375,
+ "step": 3812
+ },
+ {
+ "epoch": 52.964613368283096,
+ "grad_norm": 0.22062325477600098,
+ "learning_rate": 0.0006,
+ "loss": 3.578994035720825,
+ "step": 3813
+ },
+ {
+ "epoch": 52.97859327217125,
+ "grad_norm": 0.19949151575565338,
+ "learning_rate": 0.0006,
+ "loss": 3.6157355308532715,
+ "step": 3814
+ },
+ {
+ "epoch": 52.992573176059416,
+ "grad_norm": 0.2157975435256958,
+ "learning_rate": 0.0006,
+ "loss": 3.5677759647369385,
+ "step": 3815
+ },
+ {
+ "epoch": 53.0,
+ "grad_norm": 0.23285679519176483,
+ "learning_rate": 0.0006,
+ "loss": 3.5541789531707764,
+ "step": 3816
+ },
+ {
+ "epoch": 53.0,
+ "eval_loss": 3.9737255573272705,
+ "eval_runtime": 46.0304,
+ "eval_samples_per_second": 53.052,
+ "eval_steps_per_second": 3.324,
+ "step": 3816
+ },
+ {
+ "epoch": 53.01397990388816,
+ "grad_norm": 0.212715283036232,
+ "learning_rate": 0.0006,
+ "loss": 3.5475640296936035,
+ "step": 3817
+ },
+ {
+ "epoch": 53.02795980777632,
+ "grad_norm": 0.24556505680084229,
+ "learning_rate": 0.0006,
+ "loss": 3.5197463035583496,
+ "step": 3818
+ },
+ {
+ "epoch": 53.04193971166448,
+ "grad_norm": 0.2898217737674713,
+ "learning_rate": 0.0006,
+ "loss": 3.527390956878662,
+ "step": 3819
+ },
+ {
+ "epoch": 53.05591961555265,
+ "grad_norm": 0.26151803135871887,
+ "learning_rate": 0.0006,
+ "loss": 3.5462024211883545,
+ "step": 3820
+ },
+ {
+ "epoch": 53.0698995194408,
+ "grad_norm": 0.24648059904575348,
+ "learning_rate": 0.0006,
+ "loss": 3.5584919452667236,
+ "step": 3821
+ },
+ {
+ "epoch": 53.083879423328966,
+ "grad_norm": 0.22295059263706207,
+ "learning_rate": 0.0006,
+ "loss": 3.517195701599121,
+ "step": 3822
+ },
+ {
+ "epoch": 53.09785932721712,
+ "grad_norm": 0.2206476330757141,
+ "learning_rate": 0.0006,
+ "loss": 3.570678234100342,
+ "step": 3823
+ },
+ {
+ "epoch": 53.111839231105286,
+ "grad_norm": 0.22069714963436127,
+ "learning_rate": 0.0006,
+ "loss": 3.5707359313964844,
+ "step": 3824
+ },
+ {
+ "epoch": 53.12581913499345,
+ "grad_norm": 0.21850740909576416,
+ "learning_rate": 0.0006,
+ "loss": 3.5730209350585938,
+ "step": 3825
+ },
+ {
+ "epoch": 53.139799038881605,
+ "grad_norm": 0.21554340422153473,
+ "learning_rate": 0.0006,
+ "loss": 3.5578367710113525,
+ "step": 3826
+ },
+ {
+ "epoch": 53.15377894276977,
+ "grad_norm": 0.21678747236728668,
+ "learning_rate": 0.0006,
+ "loss": 3.5603280067443848,
+ "step": 3827
+ },
+ {
+ "epoch": 53.16775884665793,
+ "grad_norm": 0.22017014026641846,
+ "learning_rate": 0.0006,
+ "loss": 3.577760696411133,
+ "step": 3828
+ },
+ {
+ "epoch": 53.18173875054609,
+ "grad_norm": 0.20485524833202362,
+ "learning_rate": 0.0006,
+ "loss": 3.574751853942871,
+ "step": 3829
+ },
+ {
+ "epoch": 53.19571865443425,
+ "grad_norm": 0.22951237857341766,
+ "learning_rate": 0.0006,
+ "loss": 3.5464377403259277,
+ "step": 3830
+ },
+ {
+ "epoch": 53.20969855832241,
+ "grad_norm": 0.2343965619802475,
+ "learning_rate": 0.0006,
+ "loss": 3.516113758087158,
+ "step": 3831
+ },
+ {
+ "epoch": 53.22367846221057,
+ "grad_norm": 0.24002069234848022,
+ "learning_rate": 0.0006,
+ "loss": 3.564629554748535,
+ "step": 3832
+ },
+ {
+ "epoch": 53.237658366098735,
+ "grad_norm": 0.23933765292167664,
+ "learning_rate": 0.0006,
+ "loss": 3.5518507957458496,
+ "step": 3833
+ },
+ {
+ "epoch": 53.25163826998689,
+ "grad_norm": 0.2188953459262848,
+ "learning_rate": 0.0006,
+ "loss": 3.5341856479644775,
+ "step": 3834
+ },
+ {
+ "epoch": 53.265618173875055,
+ "grad_norm": 0.22629091143608093,
+ "learning_rate": 0.0006,
+ "loss": 3.5479273796081543,
+ "step": 3835
+ },
+ {
+ "epoch": 53.27959807776322,
+ "grad_norm": 0.2386554479598999,
+ "learning_rate": 0.0006,
+ "loss": 3.6097445487976074,
+ "step": 3836
+ },
+ {
+ "epoch": 53.293577981651374,
+ "grad_norm": 0.23003390431404114,
+ "learning_rate": 0.0006,
+ "loss": 3.5435304641723633,
+ "step": 3837
+ },
+ {
+ "epoch": 53.30755788553954,
+ "grad_norm": 0.248053640127182,
+ "learning_rate": 0.0006,
+ "loss": 3.545290470123291,
+ "step": 3838
+ },
+ {
+ "epoch": 53.3215377894277,
+ "grad_norm": 0.23945583403110504,
+ "learning_rate": 0.0006,
+ "loss": 3.570158004760742,
+ "step": 3839
+ },
+ {
+ "epoch": 53.33551769331586,
+ "grad_norm": 0.22801059484481812,
+ "learning_rate": 0.0006,
+ "loss": 3.5600779056549072,
+ "step": 3840
+ },
+ {
+ "epoch": 53.34949759720402,
+ "grad_norm": 0.2303777039051056,
+ "learning_rate": 0.0006,
+ "loss": 3.576674222946167,
+ "step": 3841
+ },
+ {
+ "epoch": 53.36347750109218,
+ "grad_norm": 0.23318468034267426,
+ "learning_rate": 0.0006,
+ "loss": 3.5705552101135254,
+ "step": 3842
+ },
+ {
+ "epoch": 53.37745740498034,
+ "grad_norm": 0.2435566782951355,
+ "learning_rate": 0.0006,
+ "loss": 3.576536178588867,
+ "step": 3843
+ },
+ {
+ "epoch": 53.391437308868504,
+ "grad_norm": 0.2857200503349304,
+ "learning_rate": 0.0006,
+ "loss": 3.535977363586426,
+ "step": 3844
+ },
+ {
+ "epoch": 53.40541721275666,
+ "grad_norm": 0.2640133500099182,
+ "learning_rate": 0.0006,
+ "loss": 3.547731399536133,
+ "step": 3845
+ },
+ {
+ "epoch": 53.419397116644824,
+ "grad_norm": 0.22218745946884155,
+ "learning_rate": 0.0006,
+ "loss": 3.5798351764678955,
+ "step": 3846
+ },
+ {
+ "epoch": 53.43337702053299,
+ "grad_norm": 0.2537193298339844,
+ "learning_rate": 0.0006,
+ "loss": 3.5289204120635986,
+ "step": 3847
+ },
+ {
+ "epoch": 53.44735692442114,
+ "grad_norm": 0.28360968828201294,
+ "learning_rate": 0.0006,
+ "loss": 3.5503361225128174,
+ "step": 3848
+ },
+ {
+ "epoch": 53.46133682830931,
+ "grad_norm": 0.2892421782016754,
+ "learning_rate": 0.0006,
+ "loss": 3.5675411224365234,
+ "step": 3849
+ },
+ {
+ "epoch": 53.47531673219746,
+ "grad_norm": 0.28305584192276,
+ "learning_rate": 0.0006,
+ "loss": 3.573280096054077,
+ "step": 3850
+ },
+ {
+ "epoch": 53.489296636085626,
+ "grad_norm": 0.24628037214279175,
+ "learning_rate": 0.0006,
+ "loss": 3.5215024948120117,
+ "step": 3851
+ },
+ {
+ "epoch": 53.50327653997379,
+ "grad_norm": 0.2463715672492981,
+ "learning_rate": 0.0006,
+ "loss": 3.5790698528289795,
+ "step": 3852
+ },
+ {
+ "epoch": 53.517256443861946,
+ "grad_norm": 0.2646636664867401,
+ "learning_rate": 0.0006,
+ "loss": 3.589735269546509,
+ "step": 3853
+ },
+ {
+ "epoch": 53.53123634775011,
+ "grad_norm": 0.27668821811676025,
+ "learning_rate": 0.0006,
+ "loss": 3.5690393447875977,
+ "step": 3854
+ },
+ {
+ "epoch": 53.54521625163827,
+ "grad_norm": 0.2630347013473511,
+ "learning_rate": 0.0006,
+ "loss": 3.5846545696258545,
+ "step": 3855
+ },
+ {
+ "epoch": 53.55919615552643,
+ "grad_norm": 0.27177906036376953,
+ "learning_rate": 0.0006,
+ "loss": 3.5431671142578125,
+ "step": 3856
+ },
+ {
+ "epoch": 53.57317605941459,
+ "grad_norm": 0.27125081419944763,
+ "learning_rate": 0.0006,
+ "loss": 3.5905215740203857,
+ "step": 3857
+ },
+ {
+ "epoch": 53.58715596330275,
+ "grad_norm": 0.24802975356578827,
+ "learning_rate": 0.0006,
+ "loss": 3.5472917556762695,
+ "step": 3858
+ },
+ {
+ "epoch": 53.60113586719091,
+ "grad_norm": 0.23812460899353027,
+ "learning_rate": 0.0006,
+ "loss": 3.5917325019836426,
+ "step": 3859
+ },
+ {
+ "epoch": 53.615115771079076,
+ "grad_norm": 0.2597416937351227,
+ "learning_rate": 0.0006,
+ "loss": 3.5515074729919434,
+ "step": 3860
+ },
+ {
+ "epoch": 53.62909567496723,
+ "grad_norm": 0.24389132857322693,
+ "learning_rate": 0.0006,
+ "loss": 3.578125476837158,
+ "step": 3861
+ },
+ {
+ "epoch": 53.643075578855395,
+ "grad_norm": 0.23878274857997894,
+ "learning_rate": 0.0006,
+ "loss": 3.5612001419067383,
+ "step": 3862
+ },
+ {
+ "epoch": 53.65705548274356,
+ "grad_norm": 0.23248082399368286,
+ "learning_rate": 0.0006,
+ "loss": 3.5651350021362305,
+ "step": 3863
+ },
+ {
+ "epoch": 53.671035386631715,
+ "grad_norm": 0.22560833394527435,
+ "learning_rate": 0.0006,
+ "loss": 3.58971905708313,
+ "step": 3864
+ },
+ {
+ "epoch": 53.68501529051988,
+ "grad_norm": 0.22092120349407196,
+ "learning_rate": 0.0006,
+ "loss": 3.5567374229431152,
+ "step": 3865
+ },
+ {
+ "epoch": 53.69899519440804,
+ "grad_norm": 0.20171885192394257,
+ "learning_rate": 0.0006,
+ "loss": 3.5868449211120605,
+ "step": 3866
+ },
+ {
+ "epoch": 53.7129750982962,
+ "grad_norm": 0.2051871120929718,
+ "learning_rate": 0.0006,
+ "loss": 3.5853161811828613,
+ "step": 3867
+ },
+ {
+ "epoch": 53.72695500218436,
+ "grad_norm": 0.1912045031785965,
+ "learning_rate": 0.0006,
+ "loss": 3.5901622772216797,
+ "step": 3868
+ },
+ {
+ "epoch": 53.74093490607252,
+ "grad_norm": 0.20817188918590546,
+ "learning_rate": 0.0006,
+ "loss": 3.5759787559509277,
+ "step": 3869
+ },
+ {
+ "epoch": 53.75491480996068,
+ "grad_norm": 0.2157917469739914,
+ "learning_rate": 0.0006,
+ "loss": 3.5438575744628906,
+ "step": 3870
+ },
+ {
+ "epoch": 53.768894713848844,
+ "grad_norm": 0.2332053929567337,
+ "learning_rate": 0.0006,
+ "loss": 3.587697982788086,
+ "step": 3871
+ },
+ {
+ "epoch": 53.782874617737,
+ "grad_norm": 0.22700314223766327,
+ "learning_rate": 0.0006,
+ "loss": 3.586625337600708,
+ "step": 3872
+ },
+ {
+ "epoch": 53.796854521625164,
+ "grad_norm": 0.20737017691135406,
+ "learning_rate": 0.0006,
+ "loss": 3.552398204803467,
+ "step": 3873
+ },
+ {
+ "epoch": 53.81083442551333,
+ "grad_norm": 0.20355650782585144,
+ "learning_rate": 0.0006,
+ "loss": 3.5734331607818604,
+ "step": 3874
+ },
+ {
+ "epoch": 53.824814329401484,
+ "grad_norm": 0.18868018686771393,
+ "learning_rate": 0.0006,
+ "loss": 3.582509756088257,
+ "step": 3875
+ },
+ {
+ "epoch": 53.83879423328965,
+ "grad_norm": 0.20373275876045227,
+ "learning_rate": 0.0006,
+ "loss": 3.559354782104492,
+ "step": 3876
+ },
+ {
+ "epoch": 53.8527741371778,
+ "grad_norm": 0.1988871544599533,
+ "learning_rate": 0.0006,
+ "loss": 3.5575170516967773,
+ "step": 3877
+ },
+ {
+ "epoch": 53.86675404106597,
+ "grad_norm": 0.19602873921394348,
+ "learning_rate": 0.0006,
+ "loss": 3.5500855445861816,
+ "step": 3878
+ },
+ {
+ "epoch": 53.88073394495413,
+ "grad_norm": 0.201382577419281,
+ "learning_rate": 0.0006,
+ "loss": 3.563499927520752,
+ "step": 3879
+ },
+ {
+ "epoch": 53.89471384884229,
+ "grad_norm": 0.19682180881500244,
+ "learning_rate": 0.0006,
+ "loss": 3.586855888366699,
+ "step": 3880
+ },
+ {
+ "epoch": 53.90869375273045,
+ "grad_norm": 0.19423548877239227,
+ "learning_rate": 0.0006,
+ "loss": 3.5840401649475098,
+ "step": 3881
+ },
+ {
+ "epoch": 53.92267365661861,
+ "grad_norm": 0.1970449835062027,
+ "learning_rate": 0.0006,
+ "loss": 3.554568290710449,
+ "step": 3882
+ },
+ {
+ "epoch": 53.93665356050677,
+ "grad_norm": 0.20274291932582855,
+ "learning_rate": 0.0006,
+ "loss": 3.5928239822387695,
+ "step": 3883
+ },
+ {
+ "epoch": 53.95063346439493,
+ "grad_norm": 0.18485035002231598,
+ "learning_rate": 0.0006,
+ "loss": 3.576934337615967,
+ "step": 3884
+ },
+ {
+ "epoch": 53.964613368283096,
+ "grad_norm": 0.18437646329402924,
+ "learning_rate": 0.0006,
+ "loss": 3.574990749359131,
+ "step": 3885
+ },
+ {
+ "epoch": 53.97859327217125,
+ "grad_norm": 0.18616823852062225,
+ "learning_rate": 0.0006,
+ "loss": 3.5566892623901367,
+ "step": 3886
+ },
+ {
+ "epoch": 53.992573176059416,
+ "grad_norm": 0.19502122700214386,
+ "learning_rate": 0.0006,
+ "loss": 3.604814052581787,
+ "step": 3887
+ },
+ {
+ "epoch": 54.0,
+ "grad_norm": 0.2657789885997772,
+ "learning_rate": 0.0006,
+ "loss": 3.5094165802001953,
+ "step": 3888
+ },
+ {
+ "epoch": 54.0,
+ "eval_loss": 3.965742349624634,
+ "eval_runtime": 45.5851,
+ "eval_samples_per_second": 53.57,
+ "eval_steps_per_second": 3.356,
+ "step": 3888
+ },
+ {
+ "epoch": 54.01397990388816,
+ "grad_norm": 0.27879253029823303,
+ "learning_rate": 0.0006,
+ "loss": 3.565103530883789,
+ "step": 3889
+ },
+ {
+ "epoch": 54.02795980777632,
+ "grad_norm": 0.2959246337413788,
+ "learning_rate": 0.0006,
+ "loss": 3.5378212928771973,
+ "step": 3890
+ },
+ {
+ "epoch": 54.04193971166448,
+ "grad_norm": 0.32719552516937256,
+ "learning_rate": 0.0006,
+ "loss": 3.5566751956939697,
+ "step": 3891
+ },
+ {
+ "epoch": 54.05591961555265,
+ "grad_norm": 0.36854541301727295,
+ "learning_rate": 0.0006,
+ "loss": 3.5363879203796387,
+ "step": 3892
+ },
+ {
+ "epoch": 54.0698995194408,
+ "grad_norm": 0.34325551986694336,
+ "learning_rate": 0.0006,
+ "loss": 3.5306153297424316,
+ "step": 3893
+ },
+ {
+ "epoch": 54.083879423328966,
+ "grad_norm": 0.2798653244972229,
+ "learning_rate": 0.0006,
+ "loss": 3.5642261505126953,
+ "step": 3894
+ },
+ {
+ "epoch": 54.09785932721712,
+ "grad_norm": 0.24857765436172485,
+ "learning_rate": 0.0006,
+ "loss": 3.50216007232666,
+ "step": 3895
+ },
+ {
+ "epoch": 54.111839231105286,
+ "grad_norm": 0.2943299114704132,
+ "learning_rate": 0.0006,
+ "loss": 3.524904251098633,
+ "step": 3896
+ },
+ {
+ "epoch": 54.12581913499345,
+ "grad_norm": 0.2791048586368561,
+ "learning_rate": 0.0006,
+ "loss": 3.56490421295166,
+ "step": 3897
+ },
+ {
+ "epoch": 54.139799038881605,
+ "grad_norm": 0.2781159579753876,
+ "learning_rate": 0.0006,
+ "loss": 3.536180019378662,
+ "step": 3898
+ },
+ {
+ "epoch": 54.15377894276977,
+ "grad_norm": 0.30359897017478943,
+ "learning_rate": 0.0006,
+ "loss": 3.546919345855713,
+ "step": 3899
+ },
+ {
+ "epoch": 54.16775884665793,
+ "grad_norm": 0.2738530933856964,
+ "learning_rate": 0.0006,
+ "loss": 3.547968864440918,
+ "step": 3900
+ },
+ {
+ "epoch": 54.18173875054609,
+ "grad_norm": 0.24783718585968018,
+ "learning_rate": 0.0006,
+ "loss": 3.5802721977233887,
+ "step": 3901
+ },
+ {
+ "epoch": 54.19571865443425,
+ "grad_norm": 0.2544802725315094,
+ "learning_rate": 0.0006,
+ "loss": 3.5556836128234863,
+ "step": 3902
+ },
+ {
+ "epoch": 54.20969855832241,
+ "grad_norm": 0.26695969700813293,
+ "learning_rate": 0.0006,
+ "loss": 3.534266471862793,
+ "step": 3903
+ },
+ {
+ "epoch": 54.22367846221057,
+ "grad_norm": 0.24152538180351257,
+ "learning_rate": 0.0006,
+ "loss": 3.534069538116455,
+ "step": 3904
+ },
+ {
+ "epoch": 54.237658366098735,
+ "grad_norm": 0.21859917044639587,
+ "learning_rate": 0.0006,
+ "loss": 3.535362958908081,
+ "step": 3905
+ },
+ {
+ "epoch": 54.25163826998689,
+ "grad_norm": 0.24676479399204254,
+ "learning_rate": 0.0006,
+ "loss": 3.567283868789673,
+ "step": 3906
+ },
+ {
+ "epoch": 54.265618173875055,
+ "grad_norm": 0.26998138427734375,
+ "learning_rate": 0.0006,
+ "loss": 3.518892765045166,
+ "step": 3907
+ },
+ {
+ "epoch": 54.27959807776322,
+ "grad_norm": 0.30108749866485596,
+ "learning_rate": 0.0006,
+ "loss": 3.5865135192871094,
+ "step": 3908
+ },
+ {
+ "epoch": 54.293577981651374,
+ "grad_norm": 0.31310492753982544,
+ "learning_rate": 0.0006,
+ "loss": 3.546637535095215,
+ "step": 3909
+ },
+ {
+ "epoch": 54.30755788553954,
+ "grad_norm": 0.2994784712791443,
+ "learning_rate": 0.0006,
+ "loss": 3.5441226959228516,
+ "step": 3910
+ },
+ {
+ "epoch": 54.3215377894277,
+ "grad_norm": 0.25010061264038086,
+ "learning_rate": 0.0006,
+ "loss": 3.5619735717773438,
+ "step": 3911
+ },
+ {
+ "epoch": 54.33551769331586,
+ "grad_norm": 0.253129780292511,
+ "learning_rate": 0.0006,
+ "loss": 3.530210494995117,
+ "step": 3912
+ },
+ {
+ "epoch": 54.34949759720402,
+ "grad_norm": 0.2652498781681061,
+ "learning_rate": 0.0006,
+ "loss": 3.534478187561035,
+ "step": 3913
+ },
+ {
+ "epoch": 54.36347750109218,
+ "grad_norm": 0.250503808259964,
+ "learning_rate": 0.0006,
+ "loss": 3.545886516571045,
+ "step": 3914
+ },
+ {
+ "epoch": 54.37745740498034,
+ "grad_norm": 0.22186073660850525,
+ "learning_rate": 0.0006,
+ "loss": 3.5884604454040527,
+ "step": 3915
+ },
+ {
+ "epoch": 54.391437308868504,
+ "grad_norm": 0.21128980815410614,
+ "learning_rate": 0.0006,
+ "loss": 3.527862548828125,
+ "step": 3916
+ },
+ {
+ "epoch": 54.40541721275666,
+ "grad_norm": 0.23184002935886383,
+ "learning_rate": 0.0006,
+ "loss": 3.5599637031555176,
+ "step": 3917
+ },
+ {
+ "epoch": 54.419397116644824,
+ "grad_norm": 0.23710627853870392,
+ "learning_rate": 0.0006,
+ "loss": 3.54667329788208,
+ "step": 3918
+ },
+ {
+ "epoch": 54.43337702053299,
+ "grad_norm": 0.2314598113298416,
+ "learning_rate": 0.0006,
+ "loss": 3.518406391143799,
+ "step": 3919
+ },
+ {
+ "epoch": 54.44735692442114,
+ "grad_norm": 0.21623452007770538,
+ "learning_rate": 0.0006,
+ "loss": 3.5749731063842773,
+ "step": 3920
+ },
+ {
+ "epoch": 54.46133682830931,
+ "grad_norm": 0.22832012176513672,
+ "learning_rate": 0.0006,
+ "loss": 3.57436466217041,
+ "step": 3921
+ },
+ {
+ "epoch": 54.47531673219746,
+ "grad_norm": 0.2184043526649475,
+ "learning_rate": 0.0006,
+ "loss": 3.578040838241577,
+ "step": 3922
+ },
+ {
+ "epoch": 54.489296636085626,
+ "grad_norm": 0.2302335649728775,
+ "learning_rate": 0.0006,
+ "loss": 3.5646257400512695,
+ "step": 3923
+ },
+ {
+ "epoch": 54.50327653997379,
+ "grad_norm": 0.21635375916957855,
+ "learning_rate": 0.0006,
+ "loss": 3.546786308288574,
+ "step": 3924
+ },
+ {
+ "epoch": 54.517256443861946,
+ "grad_norm": 0.22332443296909332,
+ "learning_rate": 0.0006,
+ "loss": 3.5804502964019775,
+ "step": 3925
+ },
+ {
+ "epoch": 54.53123634775011,
+ "grad_norm": 0.21662919223308563,
+ "learning_rate": 0.0006,
+ "loss": 3.567797899246216,
+ "step": 3926
+ },
+ {
+ "epoch": 54.54521625163827,
+ "grad_norm": 0.21345169842243195,
+ "learning_rate": 0.0006,
+ "loss": 3.5746283531188965,
+ "step": 3927
+ },
+ {
+ "epoch": 54.55919615552643,
+ "grad_norm": 0.2111794501543045,
+ "learning_rate": 0.0006,
+ "loss": 3.5626277923583984,
+ "step": 3928
+ },
+ {
+ "epoch": 54.57317605941459,
+ "grad_norm": 0.22575712203979492,
+ "learning_rate": 0.0006,
+ "loss": 3.5856311321258545,
+ "step": 3929
+ },
+ {
+ "epoch": 54.58715596330275,
+ "grad_norm": 0.22963617742061615,
+ "learning_rate": 0.0006,
+ "loss": 3.584038257598877,
+ "step": 3930
+ },
+ {
+ "epoch": 54.60113586719091,
+ "grad_norm": 0.21805310249328613,
+ "learning_rate": 0.0006,
+ "loss": 3.5603089332580566,
+ "step": 3931
+ },
+ {
+ "epoch": 54.615115771079076,
+ "grad_norm": 0.22830283641815186,
+ "learning_rate": 0.0006,
+ "loss": 3.5533390045166016,
+ "step": 3932
+ },
+ {
+ "epoch": 54.62909567496723,
+ "grad_norm": 0.24158291518688202,
+ "learning_rate": 0.0006,
+ "loss": 3.5437779426574707,
+ "step": 3933
+ },
+ {
+ "epoch": 54.643075578855395,
+ "grad_norm": 0.22687768936157227,
+ "learning_rate": 0.0006,
+ "loss": 3.566315174102783,
+ "step": 3934
+ },
+ {
+ "epoch": 54.65705548274356,
+ "grad_norm": 0.21220184862613678,
+ "learning_rate": 0.0006,
+ "loss": 3.5772881507873535,
+ "step": 3935
+ },
+ {
+ "epoch": 54.671035386631715,
+ "grad_norm": 0.19508333504199982,
+ "learning_rate": 0.0006,
+ "loss": 3.5213584899902344,
+ "step": 3936
+ },
+ {
+ "epoch": 54.68501529051988,
+ "grad_norm": 0.199599027633667,
+ "learning_rate": 0.0006,
+ "loss": 3.553925037384033,
+ "step": 3937
+ },
+ {
+ "epoch": 54.69899519440804,
+ "grad_norm": 0.2063189297914505,
+ "learning_rate": 0.0006,
+ "loss": 3.5706050395965576,
+ "step": 3938
+ },
+ {
+ "epoch": 54.7129750982962,
+ "grad_norm": 0.2056119441986084,
+ "learning_rate": 0.0006,
+ "loss": 3.557199478149414,
+ "step": 3939
+ },
+ {
+ "epoch": 54.72695500218436,
+ "grad_norm": 0.2192074954509735,
+ "learning_rate": 0.0006,
+ "loss": 3.5869479179382324,
+ "step": 3940
+ },
+ {
+ "epoch": 54.74093490607252,
+ "grad_norm": 0.19796597957611084,
+ "learning_rate": 0.0006,
+ "loss": 3.559929609298706,
+ "step": 3941
+ },
+ {
+ "epoch": 54.75491480996068,
+ "grad_norm": 0.19003179669380188,
+ "learning_rate": 0.0006,
+ "loss": 3.5481486320495605,
+ "step": 3942
+ },
+ {
+ "epoch": 54.768894713848844,
+ "grad_norm": 0.189231738448143,
+ "learning_rate": 0.0006,
+ "loss": 3.5603561401367188,
+ "step": 3943
+ },
+ {
+ "epoch": 54.782874617737,
+ "grad_norm": 0.20949427783489227,
+ "learning_rate": 0.0006,
+ "loss": 3.567026138305664,
+ "step": 3944
+ },
+ {
+ "epoch": 54.796854521625164,
+ "grad_norm": 0.21650178730487823,
+ "learning_rate": 0.0006,
+ "loss": 3.5981621742248535,
+ "step": 3945
+ },
+ {
+ "epoch": 54.81083442551333,
+ "grad_norm": 0.21941770613193512,
+ "learning_rate": 0.0006,
+ "loss": 3.590226173400879,
+ "step": 3946
+ },
+ {
+ "epoch": 54.824814329401484,
+ "grad_norm": 0.2169734537601471,
+ "learning_rate": 0.0006,
+ "loss": 3.592764139175415,
+ "step": 3947
+ },
+ {
+ "epoch": 54.83879423328965,
+ "grad_norm": 0.20309467613697052,
+ "learning_rate": 0.0006,
+ "loss": 3.5706393718719482,
+ "step": 3948
+ },
+ {
+ "epoch": 54.8527741371778,
+ "grad_norm": 0.21803754568099976,
+ "learning_rate": 0.0006,
+ "loss": 3.5816526412963867,
+ "step": 3949
+ },
+ {
+ "epoch": 54.86675404106597,
+ "grad_norm": 0.22217069566249847,
+ "learning_rate": 0.0006,
+ "loss": 3.5895018577575684,
+ "step": 3950
+ },
+ {
+ "epoch": 54.88073394495413,
+ "grad_norm": 0.21204866468906403,
+ "learning_rate": 0.0006,
+ "loss": 3.5574231147766113,
+ "step": 3951
+ },
+ {
+ "epoch": 54.89471384884229,
+ "grad_norm": 0.2173423171043396,
+ "learning_rate": 0.0006,
+ "loss": 3.564763069152832,
+ "step": 3952
+ },
+ {
+ "epoch": 54.90869375273045,
+ "grad_norm": 0.2039082646369934,
+ "learning_rate": 0.0006,
+ "loss": 3.59708309173584,
+ "step": 3953
+ },
+ {
+ "epoch": 54.92267365661861,
+ "grad_norm": 0.20248384773731232,
+ "learning_rate": 0.0006,
+ "loss": 3.587890148162842,
+ "step": 3954
+ },
+ {
+ "epoch": 54.93665356050677,
+ "grad_norm": 0.20693068206310272,
+ "learning_rate": 0.0006,
+ "loss": 3.5569000244140625,
+ "step": 3955
+ },
+ {
+ "epoch": 54.95063346439493,
+ "grad_norm": 0.2109357714653015,
+ "learning_rate": 0.0006,
+ "loss": 3.552126884460449,
+ "step": 3956
+ },
+ {
+ "epoch": 54.964613368283096,
+ "grad_norm": 0.2278970628976822,
+ "learning_rate": 0.0006,
+ "loss": 3.564998149871826,
+ "step": 3957
+ },
+ {
+ "epoch": 54.97859327217125,
+ "grad_norm": 0.21663756668567657,
+ "learning_rate": 0.0006,
+ "loss": 3.571608543395996,
+ "step": 3958
+ },
+ {
+ "epoch": 54.992573176059416,
+ "grad_norm": 0.19653232395648956,
+ "learning_rate": 0.0006,
+ "loss": 3.5885231494903564,
+ "step": 3959
+ },
+ {
+ "epoch": 55.0,
+ "grad_norm": 0.21956856548786163,
+ "learning_rate": 0.0006,
+ "loss": 3.4966204166412354,
+ "step": 3960
+ },
+ {
+ "epoch": 55.0,
+ "eval_loss": 3.972649097442627,
+ "eval_runtime": 45.2298,
+ "eval_samples_per_second": 53.991,
+ "eval_steps_per_second": 3.383,
+ "step": 3960
+ },
+ {
+ "epoch": 55.01397990388816,
+ "grad_norm": 0.22733832895755768,
+ "learning_rate": 0.0006,
+ "loss": 3.546975612640381,
+ "step": 3961
+ },
+ {
+ "epoch": 55.02795980777632,
+ "grad_norm": 0.25451111793518066,
+ "learning_rate": 0.0006,
+ "loss": 3.54240083694458,
+ "step": 3962
+ },
+ {
+ "epoch": 55.04193971166448,
+ "grad_norm": 0.2394949048757553,
+ "learning_rate": 0.0006,
+ "loss": 3.5492677688598633,
+ "step": 3963
+ },
+ {
+ "epoch": 55.05591961555265,
+ "grad_norm": 0.2306671440601349,
+ "learning_rate": 0.0006,
+ "loss": 3.524200916290283,
+ "step": 3964
+ },
+ {
+ "epoch": 55.0698995194408,
+ "grad_norm": 0.2307029813528061,
+ "learning_rate": 0.0006,
+ "loss": 3.509249687194824,
+ "step": 3965
+ },
+ {
+ "epoch": 55.083879423328966,
+ "grad_norm": 0.24812111258506775,
+ "learning_rate": 0.0006,
+ "loss": 3.5500473976135254,
+ "step": 3966
+ },
+ {
+ "epoch": 55.09785932721712,
+ "grad_norm": 0.28564271330833435,
+ "learning_rate": 0.0006,
+ "loss": 3.5178303718566895,
+ "step": 3967
+ },
+ {
+ "epoch": 55.111839231105286,
+ "grad_norm": 0.26979005336761475,
+ "learning_rate": 0.0006,
+ "loss": 3.5306806564331055,
+ "step": 3968
+ },
+ {
+ "epoch": 55.12581913499345,
+ "grad_norm": 0.24274848401546478,
+ "learning_rate": 0.0006,
+ "loss": 3.5758519172668457,
+ "step": 3969
+ },
+ {
+ "epoch": 55.139799038881605,
+ "grad_norm": 0.2560444474220276,
+ "learning_rate": 0.0006,
+ "loss": 3.5417323112487793,
+ "step": 3970
+ },
+ {
+ "epoch": 55.15377894276977,
+ "grad_norm": 0.2553671598434448,
+ "learning_rate": 0.0006,
+ "loss": 3.5258004665374756,
+ "step": 3971
+ },
+ {
+ "epoch": 55.16775884665793,
+ "grad_norm": 0.2170111984014511,
+ "learning_rate": 0.0006,
+ "loss": 3.514847755432129,
+ "step": 3972
+ },
+ {
+ "epoch": 55.18173875054609,
+ "grad_norm": 0.20854522287845612,
+ "learning_rate": 0.0006,
+ "loss": 3.5248336791992188,
+ "step": 3973
+ },
+ {
+ "epoch": 55.19571865443425,
+ "grad_norm": 0.21873287856578827,
+ "learning_rate": 0.0006,
+ "loss": 3.5468008518218994,
+ "step": 3974
+ },
+ {
+ "epoch": 55.20969855832241,
+ "grad_norm": 0.21194154024124146,
+ "learning_rate": 0.0006,
+ "loss": 3.568512439727783,
+ "step": 3975
+ },
+ {
+ "epoch": 55.22367846221057,
+ "grad_norm": 0.23534680902957916,
+ "learning_rate": 0.0006,
+ "loss": 3.5285420417785645,
+ "step": 3976
+ },
+ {
+ "epoch": 55.237658366098735,
+ "grad_norm": 0.22674795985221863,
+ "learning_rate": 0.0006,
+ "loss": 3.5399436950683594,
+ "step": 3977
+ },
+ {
+ "epoch": 55.25163826998689,
+ "grad_norm": 0.2248486578464508,
+ "learning_rate": 0.0006,
+ "loss": 3.5241036415100098,
+ "step": 3978
+ },
+ {
+ "epoch": 55.265618173875055,
+ "grad_norm": 0.241151362657547,
+ "learning_rate": 0.0006,
+ "loss": 3.547079086303711,
+ "step": 3979
+ },
+ {
+ "epoch": 55.27959807776322,
+ "grad_norm": 0.2783249318599701,
+ "learning_rate": 0.0006,
+ "loss": 3.5442988872528076,
+ "step": 3980
+ },
+ {
+ "epoch": 55.293577981651374,
+ "grad_norm": 0.2743528485298157,
+ "learning_rate": 0.0006,
+ "loss": 3.529618978500366,
+ "step": 3981
+ },
+ {
+ "epoch": 55.30755788553954,
+ "grad_norm": 0.23901724815368652,
+ "learning_rate": 0.0006,
+ "loss": 3.5379443168640137,
+ "step": 3982
+ },
+ {
+ "epoch": 55.3215377894277,
+ "grad_norm": 0.22758841514587402,
+ "learning_rate": 0.0006,
+ "loss": 3.5446794033050537,
+ "step": 3983
+ },
+ {
+ "epoch": 55.33551769331586,
+ "grad_norm": 0.22634629905223846,
+ "learning_rate": 0.0006,
+ "loss": 3.521944522857666,
+ "step": 3984
+ },
+ {
+ "epoch": 55.34949759720402,
+ "grad_norm": 0.23372086882591248,
+ "learning_rate": 0.0006,
+ "loss": 3.565023899078369,
+ "step": 3985
+ },
+ {
+ "epoch": 55.36347750109218,
+ "grad_norm": 0.24722231924533844,
+ "learning_rate": 0.0006,
+ "loss": 3.535661220550537,
+ "step": 3986
+ },
+ {
+ "epoch": 55.37745740498034,
+ "grad_norm": 0.21684594452381134,
+ "learning_rate": 0.0006,
+ "loss": 3.59070086479187,
+ "step": 3987
+ },
+ {
+ "epoch": 55.391437308868504,
+ "grad_norm": 0.186308816075325,
+ "learning_rate": 0.0006,
+ "loss": 3.5373833179473877,
+ "step": 3988
+ },
+ {
+ "epoch": 55.40541721275666,
+ "grad_norm": 0.2240687608718872,
+ "learning_rate": 0.0006,
+ "loss": 3.613295555114746,
+ "step": 3989
+ },
+ {
+ "epoch": 55.419397116644824,
+ "grad_norm": 0.25724494457244873,
+ "learning_rate": 0.0006,
+ "loss": 3.581005096435547,
+ "step": 3990
+ },
+ {
+ "epoch": 55.43337702053299,
+ "grad_norm": 0.24023419618606567,
+ "learning_rate": 0.0006,
+ "loss": 3.563951015472412,
+ "step": 3991
+ },
+ {
+ "epoch": 55.44735692442114,
+ "grad_norm": 0.21473391354084015,
+ "learning_rate": 0.0006,
+ "loss": 3.5444185733795166,
+ "step": 3992
+ },
+ {
+ "epoch": 55.46133682830931,
+ "grad_norm": 0.20466852188110352,
+ "learning_rate": 0.0006,
+ "loss": 3.5585713386535645,
+ "step": 3993
+ },
+ {
+ "epoch": 55.47531673219746,
+ "grad_norm": 0.20925740897655487,
+ "learning_rate": 0.0006,
+ "loss": 3.5656747817993164,
+ "step": 3994
+ },
+ {
+ "epoch": 55.489296636085626,
+ "grad_norm": 0.2309556007385254,
+ "learning_rate": 0.0006,
+ "loss": 3.5653891563415527,
+ "step": 3995
+ },
+ {
+ "epoch": 55.50327653997379,
+ "grad_norm": 0.24270877242088318,
+ "learning_rate": 0.0006,
+ "loss": 3.5275917053222656,
+ "step": 3996
+ },
+ {
+ "epoch": 55.517256443861946,
+ "grad_norm": 0.22749851644039154,
+ "learning_rate": 0.0006,
+ "loss": 3.5392730236053467,
+ "step": 3997
+ },
+ {
+ "epoch": 55.53123634775011,
+ "grad_norm": 0.21618196368217468,
+ "learning_rate": 0.0006,
+ "loss": 3.5581812858581543,
+ "step": 3998
+ },
+ {
+ "epoch": 55.54521625163827,
+ "grad_norm": 0.22232134640216827,
+ "learning_rate": 0.0006,
+ "loss": 3.5340118408203125,
+ "step": 3999
+ },
+ {
+ "epoch": 55.55919615552643,
+ "grad_norm": 0.24543501436710358,
+ "learning_rate": 0.0006,
+ "loss": 3.572153329849243,
+ "step": 4000
+ },
+ {
+ "epoch": 55.57317605941459,
+ "grad_norm": 0.2385311722755432,
+ "learning_rate": 0.0006,
+ "loss": 3.5366618633270264,
+ "step": 4001
+ },
+ {
+ "epoch": 55.58715596330275,
+ "grad_norm": 0.27977821230888367,
+ "learning_rate": 0.0006,
+ "loss": 3.5788960456848145,
+ "step": 4002
+ },
+ {
+ "epoch": 55.60113586719091,
+ "grad_norm": 0.2929013967514038,
+ "learning_rate": 0.0006,
+ "loss": 3.61065936088562,
+ "step": 4003
+ },
+ {
+ "epoch": 55.615115771079076,
+ "grad_norm": 0.27820730209350586,
+ "learning_rate": 0.0006,
+ "loss": 3.538694381713867,
+ "step": 4004
+ },
+ {
+ "epoch": 55.62909567496723,
+ "grad_norm": 0.24188996851444244,
+ "learning_rate": 0.0006,
+ "loss": 3.571709632873535,
+ "step": 4005
+ },
+ {
+ "epoch": 55.643075578855395,
+ "grad_norm": 0.21659360826015472,
+ "learning_rate": 0.0006,
+ "loss": 3.5431199073791504,
+ "step": 4006
+ },
+ {
+ "epoch": 55.65705548274356,
+ "grad_norm": 0.23356232047080994,
+ "learning_rate": 0.0006,
+ "loss": 3.5664005279541016,
+ "step": 4007
+ },
+ {
+ "epoch": 55.671035386631715,
+ "grad_norm": 0.21523472666740417,
+ "learning_rate": 0.0006,
+ "loss": 3.575711250305176,
+ "step": 4008
+ },
+ {
+ "epoch": 55.68501529051988,
+ "grad_norm": 0.22101815044879913,
+ "learning_rate": 0.0006,
+ "loss": 3.5843849182128906,
+ "step": 4009
+ },
+ {
+ "epoch": 55.69899519440804,
+ "grad_norm": 0.24153906106948853,
+ "learning_rate": 0.0006,
+ "loss": 3.5737733840942383,
+ "step": 4010
+ },
+ {
+ "epoch": 55.7129750982962,
+ "grad_norm": 0.2181350439786911,
+ "learning_rate": 0.0006,
+ "loss": 3.582613945007324,
+ "step": 4011
+ },
+ {
+ "epoch": 55.72695500218436,
+ "grad_norm": 0.21046742796897888,
+ "learning_rate": 0.0006,
+ "loss": 3.5380563735961914,
+ "step": 4012
+ },
+ {
+ "epoch": 55.74093490607252,
+ "grad_norm": 0.23996953666210175,
+ "learning_rate": 0.0006,
+ "loss": 3.57753849029541,
+ "step": 4013
+ },
+ {
+ "epoch": 55.75491480996068,
+ "grad_norm": 0.24543973803520203,
+ "learning_rate": 0.0006,
+ "loss": 3.578747272491455,
+ "step": 4014
+ },
+ {
+ "epoch": 55.768894713848844,
+ "grad_norm": 0.23597940802574158,
+ "learning_rate": 0.0006,
+ "loss": 3.5816988945007324,
+ "step": 4015
+ },
+ {
+ "epoch": 55.782874617737,
+ "grad_norm": 0.237411230802536,
+ "learning_rate": 0.0006,
+ "loss": 3.5659806728363037,
+ "step": 4016
+ },
+ {
+ "epoch": 55.796854521625164,
+ "grad_norm": 0.23947440087795258,
+ "learning_rate": 0.0006,
+ "loss": 3.545125961303711,
+ "step": 4017
+ },
+ {
+ "epoch": 55.81083442551333,
+ "grad_norm": 0.21562735736370087,
+ "learning_rate": 0.0006,
+ "loss": 3.5571303367614746,
+ "step": 4018
+ },
+ {
+ "epoch": 55.824814329401484,
+ "grad_norm": 0.21958434581756592,
+ "learning_rate": 0.0006,
+ "loss": 3.5243420600891113,
+ "step": 4019
+ },
+ {
+ "epoch": 55.83879423328965,
+ "grad_norm": 0.23856471478939056,
+ "learning_rate": 0.0006,
+ "loss": 3.586078643798828,
+ "step": 4020
+ },
+ {
+ "epoch": 55.8527741371778,
+ "grad_norm": 0.20703551173210144,
+ "learning_rate": 0.0006,
+ "loss": 3.5503201484680176,
+ "step": 4021
+ },
+ {
+ "epoch": 55.86675404106597,
+ "grad_norm": 0.21183231472969055,
+ "learning_rate": 0.0006,
+ "loss": 3.5873844623565674,
+ "step": 4022
+ },
+ {
+ "epoch": 55.88073394495413,
+ "grad_norm": 0.2129688709974289,
+ "learning_rate": 0.0006,
+ "loss": 3.582061290740967,
+ "step": 4023
+ },
+ {
+ "epoch": 55.89471384884229,
+ "grad_norm": 0.2122214287519455,
+ "learning_rate": 0.0006,
+ "loss": 3.547175884246826,
+ "step": 4024
+ },
+ {
+ "epoch": 55.90869375273045,
+ "grad_norm": 0.214874267578125,
+ "learning_rate": 0.0006,
+ "loss": 3.5322279930114746,
+ "step": 4025
+ },
+ {
+ "epoch": 55.92267365661861,
+ "grad_norm": 0.24104614555835724,
+ "learning_rate": 0.0006,
+ "loss": 3.5742111206054688,
+ "step": 4026
+ },
+ {
+ "epoch": 55.93665356050677,
+ "grad_norm": 0.2257685512304306,
+ "learning_rate": 0.0006,
+ "loss": 3.5686793327331543,
+ "step": 4027
+ },
+ {
+ "epoch": 55.95063346439493,
+ "grad_norm": 0.2170567363500595,
+ "learning_rate": 0.0006,
+ "loss": 3.5670571327209473,
+ "step": 4028
+ },
+ {
+ "epoch": 55.964613368283096,
+ "grad_norm": 0.2003280222415924,
+ "learning_rate": 0.0006,
+ "loss": 3.533921718597412,
+ "step": 4029
+ },
+ {
+ "epoch": 55.97859327217125,
+ "grad_norm": 0.21483278274536133,
+ "learning_rate": 0.0006,
+ "loss": 3.539720058441162,
+ "step": 4030
+ },
+ {
+ "epoch": 55.992573176059416,
+ "grad_norm": 0.26908108592033386,
+ "learning_rate": 0.0006,
+ "loss": 3.575934886932373,
+ "step": 4031
+ },
+ {
+ "epoch": 56.0,
+ "grad_norm": 0.30002665519714355,
+ "learning_rate": 0.0006,
+ "loss": 3.5702414512634277,
+ "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/mask15-l2r50-fulle-lm/checkpoint-4032/training_args.bin b/runs/mask15-l2r50-fulle-lm/checkpoint-4032/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..43721c50815fe94f90cb043bf545b8f7bd9afc38
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-4032/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:a0b8d7bb9ac952b1abed3bd1e5c8f6ebd20daa957b3a85688954f8df03be6eb9
+size 4856
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-4320/chat_template.jinja b/runs/mask15-l2r50-fulle-lm/checkpoint-4320/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/mask15-l2r50-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/mask15-l2r50-fulle-lm/checkpoint-4320/config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-4320/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..1b4ac3c550d6003148026765eba4cb1512b216c9
--- /dev/null
+++ b/runs/mask15-l2r50-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": 151672
+}
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-4320/generation_config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-4320/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..5cd15fe1269fd505cfdefe9b3e9989dacd9f68f4
--- /dev/null
+++ b/runs/mask15-l2r50-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/mask15-l2r50-fulle-lm/checkpoint-4320/model.safetensors b/runs/mask15-l2r50-fulle-lm/checkpoint-4320/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..33b8cfd15a6e9ec007449442bc304e874b24b2d1
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-4320/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:8573d617a766f12e9ad939782e3c7e9b174c00ba7a73cb67c92676c2996f0de3
+size 583358280
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-4320/optimizer.pt b/runs/mask15-l2r50-fulle-lm/checkpoint-4320/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..f24f50f42197d9b928448764a693ca12da91b266
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-4320/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:a60df949bf8b65e237f99f72ed69422320966f7f643e2aee4af98d17439434b0
+size 1166829434
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-4320/rng_state_0.pth b/runs/mask15-l2r50-fulle-lm/checkpoint-4320/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..c256005493a3df894a240f1b9c8a9bda4f77c4b5
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-4320/rng_state_0.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:4678cd6c9cd6c2f064975a6e9935a8800be1e8ade4385f744bc4743a61e0ecf9
+size 14512
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-4320/rng_state_1.pth b/runs/mask15-l2r50-fulle-lm/checkpoint-4320/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..a9f42fa043d740c01faded73fffce6c7f27d7749
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-4320/rng_state_1.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:a7d0d396878f9276df58e7b671ae6792f519596b0bbe33226b130cfeb14fc366
+size 14512
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-4320/scheduler.pt b/runs/mask15-l2r50-fulle-lm/checkpoint-4320/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..8304bf8d1ccccae077ecc7e6e66bba8073475ac5
--- /dev/null
+++ b/runs/mask15-l2r50-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/mask15-l2r50-fulle-lm/checkpoint-4320/tokenizer.json b/runs/mask15-l2r50-fulle-lm/checkpoint-4320/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..6226bf25372d1a86dbd704ec75d2129960f1ba88
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-4320/tokenizer.json
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:9245fe3cb2d40f9ed8d5d8ddd1d58701ba2a236beec08f656162281673f30560
+size 11424264
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-4320/tokenizer_config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-4320/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..01bc9676576e8cf62a08a9db166d6c5bab1d6727
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-4320/tokenizer_config.json
@@ -0,0 +1,20 @@
+{
+ "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|>",
+ "<|mask|>"
+ ],
+ "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/mask15-l2r50-fulle-lm/checkpoint-4320/trainer_state.json b/runs/mask15-l2r50-fulle-lm/checkpoint-4320/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..861642776c3baf8d7bb38890f18484ea2e37be05
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-4320/trainer_state.json
@@ -0,0 +1,30746 @@
+{
+ "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": 9.807971954345703,
+ "learning_rate": 0.0,
+ "loss": 11.989814758300781,
+ "step": 1
+ },
+ {
+ "epoch": 0.027959807776321538,
+ "grad_norm": 9.834383010864258,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 11.993022918701172,
+ "step": 2
+ },
+ {
+ "epoch": 0.04193971166448231,
+ "grad_norm": 9.482470512390137,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 11.854345321655273,
+ "step": 3
+ },
+ {
+ "epoch": 0.055919615552643076,
+ "grad_norm": 7.678808689117432,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 11.618255615234375,
+ "step": 4
+ },
+ {
+ "epoch": 0.06989951944080385,
+ "grad_norm": 6.011275291442871,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 11.351423263549805,
+ "step": 5
+ },
+ {
+ "epoch": 0.08387942332896461,
+ "grad_norm": 5.244393825531006,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 11.128631591796875,
+ "step": 6
+ },
+ {
+ "epoch": 0.09785932721712538,
+ "grad_norm": 4.577618598937988,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 10.921937942504883,
+ "step": 7
+ },
+ {
+ "epoch": 0.11183923110528615,
+ "grad_norm": 4.03810453414917,
+ "learning_rate": 4.2e-05,
+ "loss": 10.742650985717773,
+ "step": 8
+ },
+ {
+ "epoch": 0.1258191349934469,
+ "grad_norm": 3.657679796218872,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 10.600778579711914,
+ "step": 9
+ },
+ {
+ "epoch": 0.1397990388816077,
+ "grad_norm": 3.352902889251709,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 10.489639282226562,
+ "step": 10
+ },
+ {
+ "epoch": 0.15377894276976845,
+ "grad_norm": 3.1162633895874023,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 10.417770385742188,
+ "step": 11
+ },
+ {
+ "epoch": 0.16775884665792923,
+ "grad_norm": 3.0402638912200928,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 10.35334587097168,
+ "step": 12
+ },
+ {
+ "epoch": 0.18173875054608998,
+ "grad_norm": 3.030630111694336,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 10.306867599487305,
+ "step": 13
+ },
+ {
+ "epoch": 0.19571865443425077,
+ "grad_norm": 3.035292148590088,
+ "learning_rate": 7.8e-05,
+ "loss": 10.26003646850586,
+ "step": 14
+ },
+ {
+ "epoch": 0.20969855832241152,
+ "grad_norm": 3.0125675201416016,
+ "learning_rate": 8.4e-05,
+ "loss": 10.219265937805176,
+ "step": 15
+ },
+ {
+ "epoch": 0.2236784622105723,
+ "grad_norm": 2.9998886585235596,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 10.161077499389648,
+ "step": 16
+ },
+ {
+ "epoch": 0.23765836609873306,
+ "grad_norm": 2.9411966800689697,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 10.107423782348633,
+ "step": 17
+ },
+ {
+ "epoch": 0.2516382699868938,
+ "grad_norm": 2.88081955909729,
+ "learning_rate": 0.000102,
+ "loss": 10.04700756072998,
+ "step": 18
+ },
+ {
+ "epoch": 0.2656181738750546,
+ "grad_norm": 2.8219687938690186,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 9.981185913085938,
+ "step": 19
+ },
+ {
+ "epoch": 0.2795980777632154,
+ "grad_norm": 2.79306960105896,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 9.89747142791748,
+ "step": 20
+ },
+ {
+ "epoch": 0.29357798165137616,
+ "grad_norm": 2.7314443588256836,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 9.829219818115234,
+ "step": 21
+ },
+ {
+ "epoch": 0.3075578855395369,
+ "grad_norm": 2.6923747062683105,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 9.747566223144531,
+ "step": 22
+ },
+ {
+ "epoch": 0.3215377894276977,
+ "grad_norm": 2.650602340698242,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 9.66455078125,
+ "step": 23
+ },
+ {
+ "epoch": 0.33551769331585846,
+ "grad_norm": 2.606977701187134,
+ "learning_rate": 0.000138,
+ "loss": 9.582326889038086,
+ "step": 24
+ },
+ {
+ "epoch": 0.34949759720401924,
+ "grad_norm": 2.567256212234497,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 9.492591857910156,
+ "step": 25
+ },
+ {
+ "epoch": 0.36347750109217997,
+ "grad_norm": 2.520740509033203,
+ "learning_rate": 0.00015,
+ "loss": 9.396563529968262,
+ "step": 26
+ },
+ {
+ "epoch": 0.37745740498034075,
+ "grad_norm": 2.471588611602783,
+ "learning_rate": 0.000156,
+ "loss": 9.303571701049805,
+ "step": 27
+ },
+ {
+ "epoch": 0.39143730886850153,
+ "grad_norm": 2.4341530799865723,
+ "learning_rate": 0.000162,
+ "loss": 9.191819190979004,
+ "step": 28
+ },
+ {
+ "epoch": 0.4054172127566623,
+ "grad_norm": 2.369244337081909,
+ "learning_rate": 0.000168,
+ "loss": 9.092012405395508,
+ "step": 29
+ },
+ {
+ "epoch": 0.41939711664482304,
+ "grad_norm": 2.28625226020813,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 8.984567642211914,
+ "step": 30
+ },
+ {
+ "epoch": 0.4333770205329838,
+ "grad_norm": 2.2082231044769287,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 8.889009475708008,
+ "step": 31
+ },
+ {
+ "epoch": 0.4473569244211446,
+ "grad_norm": 2.1429483890533447,
+ "learning_rate": 0.000186,
+ "loss": 8.778556823730469,
+ "step": 32
+ },
+ {
+ "epoch": 0.4613368283093054,
+ "grad_norm": 2.0937352180480957,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 8.661166191101074,
+ "step": 33
+ },
+ {
+ "epoch": 0.4753167321974661,
+ "grad_norm": 2.040790557861328,
+ "learning_rate": 0.000198,
+ "loss": 8.550382614135742,
+ "step": 34
+ },
+ {
+ "epoch": 0.4892966360856269,
+ "grad_norm": 1.93914794921875,
+ "learning_rate": 0.000204,
+ "loss": 8.463907241821289,
+ "step": 35
+ },
+ {
+ "epoch": 0.5032765399737876,
+ "grad_norm": 1.8624178171157837,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 8.3438720703125,
+ "step": 36
+ },
+ {
+ "epoch": 0.5172564438619485,
+ "grad_norm": 1.8107167482376099,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 8.21871566772461,
+ "step": 37
+ },
+ {
+ "epoch": 0.5312363477501092,
+ "grad_norm": 1.717979073524475,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 8.113494873046875,
+ "step": 38
+ },
+ {
+ "epoch": 0.54521625163827,
+ "grad_norm": 1.668742060661316,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 8.006099700927734,
+ "step": 39
+ },
+ {
+ "epoch": 0.5591961555264308,
+ "grad_norm": 1.6147786378860474,
+ "learning_rate": 0.000234,
+ "loss": 7.911509037017822,
+ "step": 40
+ },
+ {
+ "epoch": 0.5731760594145915,
+ "grad_norm": 1.535750150680542,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 7.822839736938477,
+ "step": 41
+ },
+ {
+ "epoch": 0.5871559633027523,
+ "grad_norm": 1.4700065851211548,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 7.713842868804932,
+ "step": 42
+ },
+ {
+ "epoch": 0.601135867190913,
+ "grad_norm": 1.39020574092865,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 7.6040191650390625,
+ "step": 43
+ },
+ {
+ "epoch": 0.6151157710790738,
+ "grad_norm": 1.2875399589538574,
+ "learning_rate": 0.000258,
+ "loss": 7.550642013549805,
+ "step": 44
+ },
+ {
+ "epoch": 0.6290956749672346,
+ "grad_norm": 1.2094247341156006,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 7.460824012756348,
+ "step": 45
+ },
+ {
+ "epoch": 0.6430755788553953,
+ "grad_norm": 1.126452088356018,
+ "learning_rate": 0.00027,
+ "loss": 7.380537986755371,
+ "step": 46
+ },
+ {
+ "epoch": 0.6570554827435562,
+ "grad_norm": 1.0313163995742798,
+ "learning_rate": 0.000276,
+ "loss": 7.286153793334961,
+ "step": 47
+ },
+ {
+ "epoch": 0.6710353866317169,
+ "grad_norm": 0.9172859787940979,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 7.2064714431762695,
+ "step": 48
+ },
+ {
+ "epoch": 0.6850152905198776,
+ "grad_norm": 0.8148201107978821,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 7.158207416534424,
+ "step": 49
+ },
+ {
+ "epoch": 0.6989951944080385,
+ "grad_norm": 0.650123119354248,
+ "learning_rate": 0.000294,
+ "loss": 7.108791828155518,
+ "step": 50
+ },
+ {
+ "epoch": 0.7129750982961992,
+ "grad_norm": 0.5437585711479187,
+ "learning_rate": 0.0003,
+ "loss": 7.083050727844238,
+ "step": 51
+ },
+ {
+ "epoch": 0.7269550021843599,
+ "grad_norm": 0.46762895584106445,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 7.058027267456055,
+ "step": 52
+ },
+ {
+ "epoch": 0.7409349060725208,
+ "grad_norm": 0.47947561740875244,
+ "learning_rate": 0.000312,
+ "loss": 7.015172958374023,
+ "step": 53
+ },
+ {
+ "epoch": 0.7549148099606815,
+ "grad_norm": 0.7546492218971252,
+ "learning_rate": 0.000318,
+ "loss": 7.024629592895508,
+ "step": 54
+ },
+ {
+ "epoch": 0.7688947138488423,
+ "grad_norm": 0.6153718829154968,
+ "learning_rate": 0.000324,
+ "loss": 7.026667594909668,
+ "step": 55
+ },
+ {
+ "epoch": 0.7828746177370031,
+ "grad_norm": 0.3359069228172302,
+ "learning_rate": 0.00033,
+ "loss": 7.008166313171387,
+ "step": 56
+ },
+ {
+ "epoch": 0.7968545216251638,
+ "grad_norm": 0.48906823992729187,
+ "learning_rate": 0.000336,
+ "loss": 7.019716262817383,
+ "step": 57
+ },
+ {
+ "epoch": 0.8108344255133246,
+ "grad_norm": 0.5525421500205994,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 7.02108097076416,
+ "step": 58
+ },
+ {
+ "epoch": 0.8248143294014854,
+ "grad_norm": 0.3103712201118469,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 7.003164768218994,
+ "step": 59
+ },
+ {
+ "epoch": 0.8387942332896461,
+ "grad_norm": 0.4431874752044678,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 7.003463268280029,
+ "step": 60
+ },
+ {
+ "epoch": 0.8527741371778069,
+ "grad_norm": 0.4291120767593384,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 6.96931791305542,
+ "step": 61
+ },
+ {
+ "epoch": 0.8667540410659677,
+ "grad_norm": 0.6566054224967957,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 6.989445686340332,
+ "step": 62
+ },
+ {
+ "epoch": 0.8807339449541285,
+ "grad_norm": 0.20663189888000488,
+ "learning_rate": 0.000372,
+ "loss": 6.9669342041015625,
+ "step": 63
+ },
+ {
+ "epoch": 0.8947138488422892,
+ "grad_norm": 0.6242535710334778,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 6.949883460998535,
+ "step": 64
+ },
+ {
+ "epoch": 0.9086937527304499,
+ "grad_norm": 0.6984224915504456,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 6.955153465270996,
+ "step": 65
+ },
+ {
+ "epoch": 0.9226736566186108,
+ "grad_norm": 0.6328083872795105,
+ "learning_rate": 0.00039,
+ "loss": 6.965421676635742,
+ "step": 66
+ },
+ {
+ "epoch": 0.9366535605067715,
+ "grad_norm": 1.213352918624878,
+ "learning_rate": 0.000396,
+ "loss": 6.9454345703125,
+ "step": 67
+ },
+ {
+ "epoch": 0.9506334643949322,
+ "grad_norm": 0.9221940636634827,
+ "learning_rate": 0.000402,
+ "loss": 6.923908233642578,
+ "step": 68
+ },
+ {
+ "epoch": 0.9646133682830931,
+ "grad_norm": 0.6825450658798218,
+ "learning_rate": 0.000408,
+ "loss": 6.910131454467773,
+ "step": 69
+ },
+ {
+ "epoch": 0.9785932721712538,
+ "grad_norm": 0.5690162181854248,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 6.89891242980957,
+ "step": 70
+ },
+ {
+ "epoch": 0.9925731760594146,
+ "grad_norm": 0.4320870041847229,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 6.896081924438477,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.31632405519485474,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 6.897444725036621,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 7.757839679718018,
+ "eval_runtime": 43.8338,
+ "eval_samples_per_second": 55.71,
+ "eval_steps_per_second": 3.49,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139799038881607,
+ "grad_norm": 0.3789916932582855,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 6.877245903015137,
+ "step": 73
+ },
+ {
+ "epoch": 1.0279598077763215,
+ "grad_norm": 0.9167932868003845,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 6.921600341796875,
+ "step": 74
+ },
+ {
+ "epoch": 1.0419397116644824,
+ "grad_norm": 0.581188440322876,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 6.861001968383789,
+ "step": 75
+ },
+ {
+ "epoch": 1.0559196155526431,
+ "grad_norm": 0.4179714024066925,
+ "learning_rate": 0.00045,
+ "loss": 6.875657081604004,
+ "step": 76
+ },
+ {
+ "epoch": 1.0698995194408039,
+ "grad_norm": 1.0669957399368286,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 6.857122421264648,
+ "step": 77
+ },
+ {
+ "epoch": 1.0838794233289646,
+ "grad_norm": 0.27855145931243896,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 6.828852653503418,
+ "step": 78
+ },
+ {
+ "epoch": 1.0978593272171253,
+ "grad_norm": 0.7192047834396362,
+ "learning_rate": 0.000468,
+ "loss": 6.870839595794678,
+ "step": 79
+ },
+ {
+ "epoch": 1.1118392311052863,
+ "grad_norm": 0.5583325624465942,
+ "learning_rate": 0.000474,
+ "loss": 6.8497514724731445,
+ "step": 80
+ },
+ {
+ "epoch": 1.125819134993447,
+ "grad_norm": 0.3001925051212311,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 6.858528137207031,
+ "step": 81
+ },
+ {
+ "epoch": 1.1397990388816077,
+ "grad_norm": 0.2408239096403122,
+ "learning_rate": 0.000486,
+ "loss": 6.83231258392334,
+ "step": 82
+ },
+ {
+ "epoch": 1.1537789427697684,
+ "grad_norm": 0.28230324387550354,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 6.815476894378662,
+ "step": 83
+ },
+ {
+ "epoch": 1.1677588466579292,
+ "grad_norm": 0.3247123658657074,
+ "learning_rate": 0.000498,
+ "loss": 6.780126094818115,
+ "step": 84
+ },
+ {
+ "epoch": 1.18173875054609,
+ "grad_norm": 0.25713011622428894,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 6.7798309326171875,
+ "step": 85
+ },
+ {
+ "epoch": 1.1957186544342508,
+ "grad_norm": 0.5386835932731628,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 6.791745185852051,
+ "step": 86
+ },
+ {
+ "epoch": 1.2096985583224116,
+ "grad_norm": 0.2226393222808838,
+ "learning_rate": 0.000516,
+ "loss": 6.7826972007751465,
+ "step": 87
+ },
+ {
+ "epoch": 1.2236784622105723,
+ "grad_norm": 0.4338362216949463,
+ "learning_rate": 0.000522,
+ "loss": 6.805043697357178,
+ "step": 88
+ },
+ {
+ "epoch": 1.237658366098733,
+ "grad_norm": 0.2953208386898041,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 6.768434524536133,
+ "step": 89
+ },
+ {
+ "epoch": 1.2516382699868938,
+ "grad_norm": 0.13453717529773712,
+ "learning_rate": 0.000534,
+ "loss": 6.773697376251221,
+ "step": 90
+ },
+ {
+ "epoch": 1.2656181738750547,
+ "grad_norm": 0.35774412751197815,
+ "learning_rate": 0.00054,
+ "loss": 6.766414642333984,
+ "step": 91
+ },
+ {
+ "epoch": 1.2795980777632154,
+ "grad_norm": 0.4669720530509949,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 6.754847526550293,
+ "step": 92
+ },
+ {
+ "epoch": 1.2935779816513762,
+ "grad_norm": 0.13806621730327606,
+ "learning_rate": 0.000552,
+ "loss": 6.746858596801758,
+ "step": 93
+ },
+ {
+ "epoch": 1.307557885539537,
+ "grad_norm": 0.3280332386493683,
+ "learning_rate": 0.000558,
+ "loss": 6.715662956237793,
+ "step": 94
+ },
+ {
+ "epoch": 1.3215377894276976,
+ "grad_norm": 0.4689937233924866,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 6.734938144683838,
+ "step": 95
+ },
+ {
+ "epoch": 1.3355176933158583,
+ "grad_norm": 0.35371264815330505,
+ "learning_rate": 0.00057,
+ "loss": 6.748386383056641,
+ "step": 96
+ },
+ {
+ "epoch": 1.3494975972040193,
+ "grad_norm": 0.15232303738594055,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 6.705557823181152,
+ "step": 97
+ },
+ {
+ "epoch": 1.36347750109218,
+ "grad_norm": 0.30132821202278137,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 6.7199859619140625,
+ "step": 98
+ },
+ {
+ "epoch": 1.3774574049803407,
+ "grad_norm": 0.42174842953681946,
+ "learning_rate": 0.000588,
+ "loss": 6.715370178222656,
+ "step": 99
+ },
+ {
+ "epoch": 1.3914373088685015,
+ "grad_norm": 0.6257228851318359,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 6.707026958465576,
+ "step": 100
+ },
+ {
+ "epoch": 1.4054172127566624,
+ "grad_norm": 0.4551195800304413,
+ "learning_rate": 0.0006,
+ "loss": 6.7078423500061035,
+ "step": 101
+ },
+ {
+ "epoch": 1.4193971166448232,
+ "grad_norm": 0.41940346360206604,
+ "learning_rate": 0.0006,
+ "loss": 6.6959357261657715,
+ "step": 102
+ },
+ {
+ "epoch": 1.4333770205329839,
+ "grad_norm": 0.32251718640327454,
+ "learning_rate": 0.0006,
+ "loss": 6.689168930053711,
+ "step": 103
+ },
+ {
+ "epoch": 1.4473569244211446,
+ "grad_norm": 0.2992720305919647,
+ "learning_rate": 0.0006,
+ "loss": 6.680738925933838,
+ "step": 104
+ },
+ {
+ "epoch": 1.4613368283093053,
+ "grad_norm": 0.3228456974029541,
+ "learning_rate": 0.0006,
+ "loss": 6.672350883483887,
+ "step": 105
+ },
+ {
+ "epoch": 1.475316732197466,
+ "grad_norm": 0.24954743683338165,
+ "learning_rate": 0.0006,
+ "loss": 6.653716087341309,
+ "step": 106
+ },
+ {
+ "epoch": 1.4892966360856268,
+ "grad_norm": 0.30740687251091003,
+ "learning_rate": 0.0006,
+ "loss": 6.676583290100098,
+ "step": 107
+ },
+ {
+ "epoch": 1.5032765399737875,
+ "grad_norm": 0.24950599670410156,
+ "learning_rate": 0.0006,
+ "loss": 6.656691551208496,
+ "step": 108
+ },
+ {
+ "epoch": 1.5172564438619485,
+ "grad_norm": 0.24293005466461182,
+ "learning_rate": 0.0006,
+ "loss": 6.640995979309082,
+ "step": 109
+ },
+ {
+ "epoch": 1.5312363477501092,
+ "grad_norm": 0.30167272686958313,
+ "learning_rate": 0.0006,
+ "loss": 6.647380352020264,
+ "step": 110
+ },
+ {
+ "epoch": 1.5452162516382701,
+ "grad_norm": 0.4424632787704468,
+ "learning_rate": 0.0006,
+ "loss": 6.6548261642456055,
+ "step": 111
+ },
+ {
+ "epoch": 1.5591961555264309,
+ "grad_norm": 0.5295748114585876,
+ "learning_rate": 0.0006,
+ "loss": 6.64370059967041,
+ "step": 112
+ },
+ {
+ "epoch": 1.5731760594145916,
+ "grad_norm": 0.6829339265823364,
+ "learning_rate": 0.0006,
+ "loss": 6.654196739196777,
+ "step": 113
+ },
+ {
+ "epoch": 1.5871559633027523,
+ "grad_norm": 0.6534460186958313,
+ "learning_rate": 0.0006,
+ "loss": 6.675765037536621,
+ "step": 114
+ },
+ {
+ "epoch": 1.601135867190913,
+ "grad_norm": 0.6172244548797607,
+ "learning_rate": 0.0006,
+ "loss": 6.631234169006348,
+ "step": 115
+ },
+ {
+ "epoch": 1.6151157710790738,
+ "grad_norm": 0.5650008320808411,
+ "learning_rate": 0.0006,
+ "loss": 6.654262542724609,
+ "step": 116
+ },
+ {
+ "epoch": 1.6290956749672345,
+ "grad_norm": 0.3890475928783417,
+ "learning_rate": 0.0006,
+ "loss": 6.627526760101318,
+ "step": 117
+ },
+ {
+ "epoch": 1.6430755788553952,
+ "grad_norm": 0.6409873366355896,
+ "learning_rate": 0.0006,
+ "loss": 6.619794845581055,
+ "step": 118
+ },
+ {
+ "epoch": 1.6570554827435562,
+ "grad_norm": 0.5052326321601868,
+ "learning_rate": 0.0006,
+ "loss": 6.612556457519531,
+ "step": 119
+ },
+ {
+ "epoch": 1.671035386631717,
+ "grad_norm": 0.5001237988471985,
+ "learning_rate": 0.0006,
+ "loss": 6.577266693115234,
+ "step": 120
+ },
+ {
+ "epoch": 1.6850152905198776,
+ "grad_norm": 0.5328938364982605,
+ "learning_rate": 0.0006,
+ "loss": 6.59553337097168,
+ "step": 121
+ },
+ {
+ "epoch": 1.6989951944080386,
+ "grad_norm": 0.3568951189517975,
+ "learning_rate": 0.0006,
+ "loss": 6.602717399597168,
+ "step": 122
+ },
+ {
+ "epoch": 1.7129750982961993,
+ "grad_norm": 0.4017309546470642,
+ "learning_rate": 0.0006,
+ "loss": 6.589657783508301,
+ "step": 123
+ },
+ {
+ "epoch": 1.72695500218436,
+ "grad_norm": 0.21432629227638245,
+ "learning_rate": 0.0006,
+ "loss": 6.586555480957031,
+ "step": 124
+ },
+ {
+ "epoch": 1.7409349060725208,
+ "grad_norm": 0.21038052439689636,
+ "learning_rate": 0.0006,
+ "loss": 6.576569557189941,
+ "step": 125
+ },
+ {
+ "epoch": 1.7549148099606815,
+ "grad_norm": 0.23074904084205627,
+ "learning_rate": 0.0006,
+ "loss": 6.5880632400512695,
+ "step": 126
+ },
+ {
+ "epoch": 1.7688947138488422,
+ "grad_norm": 0.42963048815727234,
+ "learning_rate": 0.0006,
+ "loss": 6.603862762451172,
+ "step": 127
+ },
+ {
+ "epoch": 1.782874617737003,
+ "grad_norm": 0.361331045627594,
+ "learning_rate": 0.0006,
+ "loss": 6.579834938049316,
+ "step": 128
+ },
+ {
+ "epoch": 1.7968545216251637,
+ "grad_norm": 0.4951060712337494,
+ "learning_rate": 0.0006,
+ "loss": 6.570443630218506,
+ "step": 129
+ },
+ {
+ "epoch": 1.8108344255133246,
+ "grad_norm": 0.2258434295654297,
+ "learning_rate": 0.0006,
+ "loss": 6.5664777755737305,
+ "step": 130
+ },
+ {
+ "epoch": 1.8248143294014854,
+ "grad_norm": 0.2922155559062958,
+ "learning_rate": 0.0006,
+ "loss": 6.561326503753662,
+ "step": 131
+ },
+ {
+ "epoch": 1.838794233289646,
+ "grad_norm": 0.19068220257759094,
+ "learning_rate": 0.0006,
+ "loss": 6.528727054595947,
+ "step": 132
+ },
+ {
+ "epoch": 1.852774137177807,
+ "grad_norm": 0.2122010439634323,
+ "learning_rate": 0.0006,
+ "loss": 6.535636901855469,
+ "step": 133
+ },
+ {
+ "epoch": 1.8667540410659678,
+ "grad_norm": 0.25760164856910706,
+ "learning_rate": 0.0006,
+ "loss": 6.530498504638672,
+ "step": 134
+ },
+ {
+ "epoch": 1.8807339449541285,
+ "grad_norm": 0.1761016845703125,
+ "learning_rate": 0.0006,
+ "loss": 6.514466285705566,
+ "step": 135
+ },
+ {
+ "epoch": 1.8947138488422892,
+ "grad_norm": 0.2250051498413086,
+ "learning_rate": 0.0006,
+ "loss": 6.521268844604492,
+ "step": 136
+ },
+ {
+ "epoch": 1.90869375273045,
+ "grad_norm": 0.34458497166633606,
+ "learning_rate": 0.0006,
+ "loss": 6.512831687927246,
+ "step": 137
+ },
+ {
+ "epoch": 1.9226736566186107,
+ "grad_norm": 0.3468617796897888,
+ "learning_rate": 0.0006,
+ "loss": 6.515641689300537,
+ "step": 138
+ },
+ {
+ "epoch": 1.9366535605067714,
+ "grad_norm": 0.5051495432853699,
+ "learning_rate": 0.0006,
+ "loss": 6.5147905349731445,
+ "step": 139
+ },
+ {
+ "epoch": 1.9506334643949321,
+ "grad_norm": 0.7106727361679077,
+ "learning_rate": 0.0006,
+ "loss": 6.519277572631836,
+ "step": 140
+ },
+ {
+ "epoch": 1.964613368283093,
+ "grad_norm": 0.8881394267082214,
+ "learning_rate": 0.0006,
+ "loss": 6.526865482330322,
+ "step": 141
+ },
+ {
+ "epoch": 1.9785932721712538,
+ "grad_norm": 0.5552834272384644,
+ "learning_rate": 0.0006,
+ "loss": 6.469970226287842,
+ "step": 142
+ },
+ {
+ "epoch": 1.9925731760594148,
+ "grad_norm": 0.6903126835823059,
+ "learning_rate": 0.0006,
+ "loss": 6.476300239562988,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.47679027915000916,
+ "learning_rate": 0.0006,
+ "loss": 6.463827133178711,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 7.388528823852539,
+ "eval_runtime": 44.2519,
+ "eval_samples_per_second": 55.184,
+ "eval_steps_per_second": 3.457,
+ "step": 144
+ },
+ {
+ "epoch": 2.0139799038881607,
+ "grad_norm": 0.4719221293926239,
+ "learning_rate": 0.0006,
+ "loss": 6.480956077575684,
+ "step": 145
+ },
+ {
+ "epoch": 2.0279598077763215,
+ "grad_norm": 0.41137924790382385,
+ "learning_rate": 0.0006,
+ "loss": 6.449707984924316,
+ "step": 146
+ },
+ {
+ "epoch": 2.041939711664482,
+ "grad_norm": 0.4237765371799469,
+ "learning_rate": 0.0006,
+ "loss": 6.467435836791992,
+ "step": 147
+ },
+ {
+ "epoch": 2.055919615552643,
+ "grad_norm": 0.44081810116767883,
+ "learning_rate": 0.0006,
+ "loss": 6.436868667602539,
+ "step": 148
+ },
+ {
+ "epoch": 2.0698995194408036,
+ "grad_norm": 0.4163798391819,
+ "learning_rate": 0.0006,
+ "loss": 6.4642014503479,
+ "step": 149
+ },
+ {
+ "epoch": 2.083879423328965,
+ "grad_norm": 0.3831583261489868,
+ "learning_rate": 0.0006,
+ "loss": 6.454092025756836,
+ "step": 150
+ },
+ {
+ "epoch": 2.0978593272171255,
+ "grad_norm": 0.37721413373947144,
+ "learning_rate": 0.0006,
+ "loss": 6.426377296447754,
+ "step": 151
+ },
+ {
+ "epoch": 2.1118392311052863,
+ "grad_norm": 0.3323550224304199,
+ "learning_rate": 0.0006,
+ "loss": 6.421375274658203,
+ "step": 152
+ },
+ {
+ "epoch": 2.125819134993447,
+ "grad_norm": 0.47739624977111816,
+ "learning_rate": 0.0006,
+ "loss": 6.412004470825195,
+ "step": 153
+ },
+ {
+ "epoch": 2.1397990388816077,
+ "grad_norm": 0.8530274629592896,
+ "learning_rate": 0.0006,
+ "loss": 6.410468578338623,
+ "step": 154
+ },
+ {
+ "epoch": 2.1537789427697684,
+ "grad_norm": 0.6420364379882812,
+ "learning_rate": 0.0006,
+ "loss": 6.413525581359863,
+ "step": 155
+ },
+ {
+ "epoch": 2.167758846657929,
+ "grad_norm": 0.5005049109458923,
+ "learning_rate": 0.0006,
+ "loss": 6.401463508605957,
+ "step": 156
+ },
+ {
+ "epoch": 2.18173875054609,
+ "grad_norm": 0.3614683449268341,
+ "learning_rate": 0.0006,
+ "loss": 6.390063285827637,
+ "step": 157
+ },
+ {
+ "epoch": 2.1957186544342506,
+ "grad_norm": 0.595215380191803,
+ "learning_rate": 0.0006,
+ "loss": 6.369806289672852,
+ "step": 158
+ },
+ {
+ "epoch": 2.2096985583224114,
+ "grad_norm": 0.5700321793556213,
+ "learning_rate": 0.0006,
+ "loss": 6.368378639221191,
+ "step": 159
+ },
+ {
+ "epoch": 2.2236784622105725,
+ "grad_norm": 0.36273983120918274,
+ "learning_rate": 0.0006,
+ "loss": 6.366860389709473,
+ "step": 160
+ },
+ {
+ "epoch": 2.2376583660987333,
+ "grad_norm": 0.2850998342037201,
+ "learning_rate": 0.0006,
+ "loss": 6.352144718170166,
+ "step": 161
+ },
+ {
+ "epoch": 2.251638269986894,
+ "grad_norm": 0.38558584451675415,
+ "learning_rate": 0.0006,
+ "loss": 6.375765800476074,
+ "step": 162
+ },
+ {
+ "epoch": 2.2656181738750547,
+ "grad_norm": 0.34809231758117676,
+ "learning_rate": 0.0006,
+ "loss": 6.350445747375488,
+ "step": 163
+ },
+ {
+ "epoch": 2.2795980777632154,
+ "grad_norm": 0.5211818814277649,
+ "learning_rate": 0.0006,
+ "loss": 6.354585647583008,
+ "step": 164
+ },
+ {
+ "epoch": 2.293577981651376,
+ "grad_norm": 1.0809133052825928,
+ "learning_rate": 0.0006,
+ "loss": 6.3752007484436035,
+ "step": 165
+ },
+ {
+ "epoch": 2.307557885539537,
+ "grad_norm": 0.8293641209602356,
+ "learning_rate": 0.0006,
+ "loss": 6.35113525390625,
+ "step": 166
+ },
+ {
+ "epoch": 2.3215377894276976,
+ "grad_norm": 0.3428577780723572,
+ "learning_rate": 0.0006,
+ "loss": 6.334470748901367,
+ "step": 167
+ },
+ {
+ "epoch": 2.3355176933158583,
+ "grad_norm": 0.7587600946426392,
+ "learning_rate": 0.0006,
+ "loss": 6.353979587554932,
+ "step": 168
+ },
+ {
+ "epoch": 2.349497597204019,
+ "grad_norm": 0.4227249026298523,
+ "learning_rate": 0.0006,
+ "loss": 6.34018611907959,
+ "step": 169
+ },
+ {
+ "epoch": 2.36347750109218,
+ "grad_norm": 0.4226846694946289,
+ "learning_rate": 0.0006,
+ "loss": 6.290019989013672,
+ "step": 170
+ },
+ {
+ "epoch": 2.3774574049803405,
+ "grad_norm": 0.38412365317344666,
+ "learning_rate": 0.0006,
+ "loss": 6.309510231018066,
+ "step": 171
+ },
+ {
+ "epoch": 2.3914373088685017,
+ "grad_norm": 0.45698508620262146,
+ "learning_rate": 0.0006,
+ "loss": 6.283290863037109,
+ "step": 172
+ },
+ {
+ "epoch": 2.4054172127566624,
+ "grad_norm": 0.7575915455818176,
+ "learning_rate": 0.0006,
+ "loss": 6.306073188781738,
+ "step": 173
+ },
+ {
+ "epoch": 2.419397116644823,
+ "grad_norm": 0.695123553276062,
+ "learning_rate": 0.0006,
+ "loss": 6.308144569396973,
+ "step": 174
+ },
+ {
+ "epoch": 2.433377020532984,
+ "grad_norm": 0.5035743117332458,
+ "learning_rate": 0.0006,
+ "loss": 6.282073974609375,
+ "step": 175
+ },
+ {
+ "epoch": 2.4473569244211446,
+ "grad_norm": 0.3158020079135895,
+ "learning_rate": 0.0006,
+ "loss": 6.282169342041016,
+ "step": 176
+ },
+ {
+ "epoch": 2.4613368283093053,
+ "grad_norm": 0.4829689860343933,
+ "learning_rate": 0.0006,
+ "loss": 6.264578819274902,
+ "step": 177
+ },
+ {
+ "epoch": 2.475316732197466,
+ "grad_norm": 0.3992770314216614,
+ "learning_rate": 0.0006,
+ "loss": 6.228628158569336,
+ "step": 178
+ },
+ {
+ "epoch": 2.489296636085627,
+ "grad_norm": 0.40887606143951416,
+ "learning_rate": 0.0006,
+ "loss": 6.230792045593262,
+ "step": 179
+ },
+ {
+ "epoch": 2.5032765399737875,
+ "grad_norm": 0.3540310263633728,
+ "learning_rate": 0.0006,
+ "loss": 6.222573280334473,
+ "step": 180
+ },
+ {
+ "epoch": 2.5172564438619487,
+ "grad_norm": 0.496219664812088,
+ "learning_rate": 0.0006,
+ "loss": 6.212109565734863,
+ "step": 181
+ },
+ {
+ "epoch": 2.5312363477501094,
+ "grad_norm": 0.435173898935318,
+ "learning_rate": 0.0006,
+ "loss": 6.221210479736328,
+ "step": 182
+ },
+ {
+ "epoch": 2.54521625163827,
+ "grad_norm": 0.5364007949829102,
+ "learning_rate": 0.0006,
+ "loss": 6.217929840087891,
+ "step": 183
+ },
+ {
+ "epoch": 2.559196155526431,
+ "grad_norm": 0.5946390628814697,
+ "learning_rate": 0.0006,
+ "loss": 6.189267158508301,
+ "step": 184
+ },
+ {
+ "epoch": 2.5731760594145916,
+ "grad_norm": 0.41621312499046326,
+ "learning_rate": 0.0006,
+ "loss": 6.182415008544922,
+ "step": 185
+ },
+ {
+ "epoch": 2.5871559633027523,
+ "grad_norm": 0.5442072749137878,
+ "learning_rate": 0.0006,
+ "loss": 6.150757789611816,
+ "step": 186
+ },
+ {
+ "epoch": 2.601135867190913,
+ "grad_norm": 0.727843165397644,
+ "learning_rate": 0.0006,
+ "loss": 6.146082878112793,
+ "step": 187
+ },
+ {
+ "epoch": 2.615115771079074,
+ "grad_norm": 0.8898891806602478,
+ "learning_rate": 0.0006,
+ "loss": 6.190483093261719,
+ "step": 188
+ },
+ {
+ "epoch": 2.6290956749672345,
+ "grad_norm": 0.5173947215080261,
+ "learning_rate": 0.0006,
+ "loss": 6.151251792907715,
+ "step": 189
+ },
+ {
+ "epoch": 2.6430755788553952,
+ "grad_norm": 0.6476729512214661,
+ "learning_rate": 0.0006,
+ "loss": 6.154841423034668,
+ "step": 190
+ },
+ {
+ "epoch": 2.657055482743556,
+ "grad_norm": 0.3538810908794403,
+ "learning_rate": 0.0006,
+ "loss": 6.103879928588867,
+ "step": 191
+ },
+ {
+ "epoch": 2.6710353866317167,
+ "grad_norm": 0.4773508310317993,
+ "learning_rate": 0.0006,
+ "loss": 6.118101119995117,
+ "step": 192
+ },
+ {
+ "epoch": 2.6850152905198774,
+ "grad_norm": 0.29213786125183105,
+ "learning_rate": 0.0006,
+ "loss": 6.108916282653809,
+ "step": 193
+ },
+ {
+ "epoch": 2.6989951944080386,
+ "grad_norm": 0.40800607204437256,
+ "learning_rate": 0.0006,
+ "loss": 6.113438606262207,
+ "step": 194
+ },
+ {
+ "epoch": 2.7129750982961993,
+ "grad_norm": 0.31157299876213074,
+ "learning_rate": 0.0006,
+ "loss": 6.101809501647949,
+ "step": 195
+ },
+ {
+ "epoch": 2.72695500218436,
+ "grad_norm": 0.28660309314727783,
+ "learning_rate": 0.0006,
+ "loss": 6.075886249542236,
+ "step": 196
+ },
+ {
+ "epoch": 2.7409349060725208,
+ "grad_norm": 0.3810449540615082,
+ "learning_rate": 0.0006,
+ "loss": 6.053257942199707,
+ "step": 197
+ },
+ {
+ "epoch": 2.7549148099606815,
+ "grad_norm": 0.21741755306720734,
+ "learning_rate": 0.0006,
+ "loss": 6.013825416564941,
+ "step": 198
+ },
+ {
+ "epoch": 2.7688947138488422,
+ "grad_norm": 0.2777678966522217,
+ "learning_rate": 0.0006,
+ "loss": 6.054204940795898,
+ "step": 199
+ },
+ {
+ "epoch": 2.782874617737003,
+ "grad_norm": 0.28503066301345825,
+ "learning_rate": 0.0006,
+ "loss": 6.035628318786621,
+ "step": 200
+ },
+ {
+ "epoch": 2.7968545216251637,
+ "grad_norm": 0.41954755783081055,
+ "learning_rate": 0.0006,
+ "loss": 6.028354644775391,
+ "step": 201
+ },
+ {
+ "epoch": 2.810834425513325,
+ "grad_norm": 0.8785563111305237,
+ "learning_rate": 0.0006,
+ "loss": 6.055761337280273,
+ "step": 202
+ },
+ {
+ "epoch": 2.8248143294014856,
+ "grad_norm": 1.7459558248519897,
+ "learning_rate": 0.0006,
+ "loss": 6.11599588394165,
+ "step": 203
+ },
+ {
+ "epoch": 2.8387942332896463,
+ "grad_norm": 0.5725523233413696,
+ "learning_rate": 0.0006,
+ "loss": 6.024280548095703,
+ "step": 204
+ },
+ {
+ "epoch": 2.852774137177807,
+ "grad_norm": 0.5913150906562805,
+ "learning_rate": 0.0006,
+ "loss": 6.050281524658203,
+ "step": 205
+ },
+ {
+ "epoch": 2.8667540410659678,
+ "grad_norm": 0.5929384827613831,
+ "learning_rate": 0.0006,
+ "loss": 6.041121482849121,
+ "step": 206
+ },
+ {
+ "epoch": 2.8807339449541285,
+ "grad_norm": 0.5650724768638611,
+ "learning_rate": 0.0006,
+ "loss": 6.004258155822754,
+ "step": 207
+ },
+ {
+ "epoch": 2.894713848842289,
+ "grad_norm": 0.3420545756816864,
+ "learning_rate": 0.0006,
+ "loss": 5.983296871185303,
+ "step": 208
+ },
+ {
+ "epoch": 2.90869375273045,
+ "grad_norm": 0.2960914075374603,
+ "learning_rate": 0.0006,
+ "loss": 5.988578796386719,
+ "step": 209
+ },
+ {
+ "epoch": 2.9226736566186107,
+ "grad_norm": 0.3252662718296051,
+ "learning_rate": 0.0006,
+ "loss": 5.99103307723999,
+ "step": 210
+ },
+ {
+ "epoch": 2.9366535605067714,
+ "grad_norm": 0.4851132929325104,
+ "learning_rate": 0.0006,
+ "loss": 6.0028977394104,
+ "step": 211
+ },
+ {
+ "epoch": 2.950633464394932,
+ "grad_norm": 0.5639995336532593,
+ "learning_rate": 0.0006,
+ "loss": 5.965080738067627,
+ "step": 212
+ },
+ {
+ "epoch": 2.964613368283093,
+ "grad_norm": 0.4514601230621338,
+ "learning_rate": 0.0006,
+ "loss": 5.961450576782227,
+ "step": 213
+ },
+ {
+ "epoch": 2.9785932721712536,
+ "grad_norm": 0.5397921800613403,
+ "learning_rate": 0.0006,
+ "loss": 5.965290546417236,
+ "step": 214
+ },
+ {
+ "epoch": 2.9925731760594148,
+ "grad_norm": 0.4735587239265442,
+ "learning_rate": 0.0006,
+ "loss": 5.952754497528076,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.32061058282852173,
+ "learning_rate": 0.0006,
+ "loss": 5.961667060852051,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 6.8517303466796875,
+ "eval_runtime": 44.03,
+ "eval_samples_per_second": 55.462,
+ "eval_steps_per_second": 3.475,
+ "step": 216
+ },
+ {
+ "epoch": 3.0139799038881607,
+ "grad_norm": 0.3537784814834595,
+ "learning_rate": 0.0006,
+ "loss": 5.928008079528809,
+ "step": 217
+ },
+ {
+ "epoch": 3.0279598077763215,
+ "grad_norm": 0.40713080763816833,
+ "learning_rate": 0.0006,
+ "loss": 5.9150800704956055,
+ "step": 218
+ },
+ {
+ "epoch": 3.041939711664482,
+ "grad_norm": 0.2548826336860657,
+ "learning_rate": 0.0006,
+ "loss": 5.919757843017578,
+ "step": 219
+ },
+ {
+ "epoch": 3.055919615552643,
+ "grad_norm": 0.2818543016910553,
+ "learning_rate": 0.0006,
+ "loss": 5.913688659667969,
+ "step": 220
+ },
+ {
+ "epoch": 3.0698995194408036,
+ "grad_norm": 0.4196692705154419,
+ "learning_rate": 0.0006,
+ "loss": 5.8675336837768555,
+ "step": 221
+ },
+ {
+ "epoch": 3.083879423328965,
+ "grad_norm": 0.35272282361984253,
+ "learning_rate": 0.0006,
+ "loss": 5.878874778747559,
+ "step": 222
+ },
+ {
+ "epoch": 3.0978593272171255,
+ "grad_norm": 0.3254282772541046,
+ "learning_rate": 0.0006,
+ "loss": 5.8823041915893555,
+ "step": 223
+ },
+ {
+ "epoch": 3.1118392311052863,
+ "grad_norm": 0.4052561819553375,
+ "learning_rate": 0.0006,
+ "loss": 5.867744445800781,
+ "step": 224
+ },
+ {
+ "epoch": 3.125819134993447,
+ "grad_norm": 0.31246256828308105,
+ "learning_rate": 0.0006,
+ "loss": 5.886094093322754,
+ "step": 225
+ },
+ {
+ "epoch": 3.1397990388816077,
+ "grad_norm": 0.3479118347167969,
+ "learning_rate": 0.0006,
+ "loss": 5.850762367248535,
+ "step": 226
+ },
+ {
+ "epoch": 3.1537789427697684,
+ "grad_norm": 0.5037238597869873,
+ "learning_rate": 0.0006,
+ "loss": 5.844175815582275,
+ "step": 227
+ },
+ {
+ "epoch": 3.167758846657929,
+ "grad_norm": 0.6271815896034241,
+ "learning_rate": 0.0006,
+ "loss": 5.871790885925293,
+ "step": 228
+ },
+ {
+ "epoch": 3.18173875054609,
+ "grad_norm": 0.43838298320770264,
+ "learning_rate": 0.0006,
+ "loss": 5.844024658203125,
+ "step": 229
+ },
+ {
+ "epoch": 3.1957186544342506,
+ "grad_norm": 0.4755159616470337,
+ "learning_rate": 0.0006,
+ "loss": 5.846892356872559,
+ "step": 230
+ },
+ {
+ "epoch": 3.2096985583224114,
+ "grad_norm": 0.5229779481887817,
+ "learning_rate": 0.0006,
+ "loss": 5.827000617980957,
+ "step": 231
+ },
+ {
+ "epoch": 3.2236784622105725,
+ "grad_norm": 0.8264499306678772,
+ "learning_rate": 0.0006,
+ "loss": 5.867050647735596,
+ "step": 232
+ },
+ {
+ "epoch": 3.2376583660987333,
+ "grad_norm": 1.0607538223266602,
+ "learning_rate": 0.0006,
+ "loss": 5.877876281738281,
+ "step": 233
+ },
+ {
+ "epoch": 3.251638269986894,
+ "grad_norm": 0.7656505703926086,
+ "learning_rate": 0.0006,
+ "loss": 5.86760139465332,
+ "step": 234
+ },
+ {
+ "epoch": 3.2656181738750547,
+ "grad_norm": 0.7940183281898499,
+ "learning_rate": 0.0006,
+ "loss": 5.861355781555176,
+ "step": 235
+ },
+ {
+ "epoch": 3.2795980777632154,
+ "grad_norm": 0.45171424746513367,
+ "learning_rate": 0.0006,
+ "loss": 5.799808502197266,
+ "step": 236
+ },
+ {
+ "epoch": 3.293577981651376,
+ "grad_norm": 0.6174989342689514,
+ "learning_rate": 0.0006,
+ "loss": 5.8585920333862305,
+ "step": 237
+ },
+ {
+ "epoch": 3.307557885539537,
+ "grad_norm": 0.5341290831565857,
+ "learning_rate": 0.0006,
+ "loss": 5.8116044998168945,
+ "step": 238
+ },
+ {
+ "epoch": 3.3215377894276976,
+ "grad_norm": 0.3938343822956085,
+ "learning_rate": 0.0006,
+ "loss": 5.83797550201416,
+ "step": 239
+ },
+ {
+ "epoch": 3.3355176933158583,
+ "grad_norm": 0.5106972455978394,
+ "learning_rate": 0.0006,
+ "loss": 5.832303047180176,
+ "step": 240
+ },
+ {
+ "epoch": 3.349497597204019,
+ "grad_norm": 0.3791428506374359,
+ "learning_rate": 0.0006,
+ "loss": 5.794981956481934,
+ "step": 241
+ },
+ {
+ "epoch": 3.36347750109218,
+ "grad_norm": 0.42287978529930115,
+ "learning_rate": 0.0006,
+ "loss": 5.788144111633301,
+ "step": 242
+ },
+ {
+ "epoch": 3.3774574049803405,
+ "grad_norm": 0.27334436774253845,
+ "learning_rate": 0.0006,
+ "loss": 5.771070957183838,
+ "step": 243
+ },
+ {
+ "epoch": 3.3914373088685017,
+ "grad_norm": 0.2470470368862152,
+ "learning_rate": 0.0006,
+ "loss": 5.755998611450195,
+ "step": 244
+ },
+ {
+ "epoch": 3.4054172127566624,
+ "grad_norm": 0.3043915033340454,
+ "learning_rate": 0.0006,
+ "loss": 5.779492378234863,
+ "step": 245
+ },
+ {
+ "epoch": 3.419397116644823,
+ "grad_norm": 0.2960112988948822,
+ "learning_rate": 0.0006,
+ "loss": 5.750328063964844,
+ "step": 246
+ },
+ {
+ "epoch": 3.433377020532984,
+ "grad_norm": 0.3046723008155823,
+ "learning_rate": 0.0006,
+ "loss": 5.776517868041992,
+ "step": 247
+ },
+ {
+ "epoch": 3.4473569244211446,
+ "grad_norm": 0.22461780905723572,
+ "learning_rate": 0.0006,
+ "loss": 5.760989665985107,
+ "step": 248
+ },
+ {
+ "epoch": 3.4613368283093053,
+ "grad_norm": 0.24625757336616516,
+ "learning_rate": 0.0006,
+ "loss": 5.759706497192383,
+ "step": 249
+ },
+ {
+ "epoch": 3.475316732197466,
+ "grad_norm": 0.18207131326198578,
+ "learning_rate": 0.0006,
+ "loss": 5.747040748596191,
+ "step": 250
+ },
+ {
+ "epoch": 3.489296636085627,
+ "grad_norm": 0.16473834216594696,
+ "learning_rate": 0.0006,
+ "loss": 5.761577606201172,
+ "step": 251
+ },
+ {
+ "epoch": 3.5032765399737875,
+ "grad_norm": 0.25155773758888245,
+ "learning_rate": 0.0006,
+ "loss": 5.696502208709717,
+ "step": 252
+ },
+ {
+ "epoch": 3.5172564438619487,
+ "grad_norm": 0.24115674197673798,
+ "learning_rate": 0.0006,
+ "loss": 5.676957130432129,
+ "step": 253
+ },
+ {
+ "epoch": 3.5312363477501094,
+ "grad_norm": 0.40912172198295593,
+ "learning_rate": 0.0006,
+ "loss": 5.695090293884277,
+ "step": 254
+ },
+ {
+ "epoch": 3.54521625163827,
+ "grad_norm": 0.6727662682533264,
+ "learning_rate": 0.0006,
+ "loss": 5.722194671630859,
+ "step": 255
+ },
+ {
+ "epoch": 3.559196155526431,
+ "grad_norm": 0.8450719118118286,
+ "learning_rate": 0.0006,
+ "loss": 5.764680862426758,
+ "step": 256
+ },
+ {
+ "epoch": 3.5731760594145916,
+ "grad_norm": 0.9916183352470398,
+ "learning_rate": 0.0006,
+ "loss": 5.754530429840088,
+ "step": 257
+ },
+ {
+ "epoch": 3.5871559633027523,
+ "grad_norm": 1.041922688484192,
+ "learning_rate": 0.0006,
+ "loss": 5.781468391418457,
+ "step": 258
+ },
+ {
+ "epoch": 3.601135867190913,
+ "grad_norm": 0.972039520740509,
+ "learning_rate": 0.0006,
+ "loss": 5.760323524475098,
+ "step": 259
+ },
+ {
+ "epoch": 3.615115771079074,
+ "grad_norm": 0.6802462935447693,
+ "learning_rate": 0.0006,
+ "loss": 5.750064849853516,
+ "step": 260
+ },
+ {
+ "epoch": 3.6290956749672345,
+ "grad_norm": 0.48553529381752014,
+ "learning_rate": 0.0006,
+ "loss": 5.7464094161987305,
+ "step": 261
+ },
+ {
+ "epoch": 3.6430755788553952,
+ "grad_norm": 0.4066704213619232,
+ "learning_rate": 0.0006,
+ "loss": 5.719789505004883,
+ "step": 262
+ },
+ {
+ "epoch": 3.657055482743556,
+ "grad_norm": 0.3300860822200775,
+ "learning_rate": 0.0006,
+ "loss": 5.719920635223389,
+ "step": 263
+ },
+ {
+ "epoch": 3.6710353866317167,
+ "grad_norm": 0.3286679983139038,
+ "learning_rate": 0.0006,
+ "loss": 5.723465919494629,
+ "step": 264
+ },
+ {
+ "epoch": 3.6850152905198774,
+ "grad_norm": 0.27653390169143677,
+ "learning_rate": 0.0006,
+ "loss": 5.713820457458496,
+ "step": 265
+ },
+ {
+ "epoch": 3.6989951944080386,
+ "grad_norm": 0.26138055324554443,
+ "learning_rate": 0.0006,
+ "loss": 5.683221817016602,
+ "step": 266
+ },
+ {
+ "epoch": 3.7129750982961993,
+ "grad_norm": 0.23706290125846863,
+ "learning_rate": 0.0006,
+ "loss": 5.6896867752075195,
+ "step": 267
+ },
+ {
+ "epoch": 3.72695500218436,
+ "grad_norm": 0.2751729190349579,
+ "learning_rate": 0.0006,
+ "loss": 5.710301876068115,
+ "step": 268
+ },
+ {
+ "epoch": 3.7409349060725208,
+ "grad_norm": 0.255393385887146,
+ "learning_rate": 0.0006,
+ "loss": 5.687932968139648,
+ "step": 269
+ },
+ {
+ "epoch": 3.7549148099606815,
+ "grad_norm": 0.21453925967216492,
+ "learning_rate": 0.0006,
+ "loss": 5.68234395980835,
+ "step": 270
+ },
+ {
+ "epoch": 3.7688947138488422,
+ "grad_norm": 0.21771012246608734,
+ "learning_rate": 0.0006,
+ "loss": 5.683980464935303,
+ "step": 271
+ },
+ {
+ "epoch": 3.782874617737003,
+ "grad_norm": 0.1884593963623047,
+ "learning_rate": 0.0006,
+ "loss": 5.662779808044434,
+ "step": 272
+ },
+ {
+ "epoch": 3.7968545216251637,
+ "grad_norm": 0.20429612696170807,
+ "learning_rate": 0.0006,
+ "loss": 5.650941848754883,
+ "step": 273
+ },
+ {
+ "epoch": 3.810834425513325,
+ "grad_norm": 0.22586797177791595,
+ "learning_rate": 0.0006,
+ "loss": 5.639376640319824,
+ "step": 274
+ },
+ {
+ "epoch": 3.8248143294014856,
+ "grad_norm": 0.19651705026626587,
+ "learning_rate": 0.0006,
+ "loss": 5.612030029296875,
+ "step": 275
+ },
+ {
+ "epoch": 3.8387942332896463,
+ "grad_norm": 0.2125253826379776,
+ "learning_rate": 0.0006,
+ "loss": 5.622836589813232,
+ "step": 276
+ },
+ {
+ "epoch": 3.852774137177807,
+ "grad_norm": 0.2905234694480896,
+ "learning_rate": 0.0006,
+ "loss": 5.624594688415527,
+ "step": 277
+ },
+ {
+ "epoch": 3.8667540410659678,
+ "grad_norm": 0.2718426585197449,
+ "learning_rate": 0.0006,
+ "loss": 5.619892120361328,
+ "step": 278
+ },
+ {
+ "epoch": 3.8807339449541285,
+ "grad_norm": 0.26481127738952637,
+ "learning_rate": 0.0006,
+ "loss": 5.612496852874756,
+ "step": 279
+ },
+ {
+ "epoch": 3.894713848842289,
+ "grad_norm": 0.2876453399658203,
+ "learning_rate": 0.0006,
+ "loss": 5.59157133102417,
+ "step": 280
+ },
+ {
+ "epoch": 3.90869375273045,
+ "grad_norm": 0.22829554975032806,
+ "learning_rate": 0.0006,
+ "loss": 5.5884199142456055,
+ "step": 281
+ },
+ {
+ "epoch": 3.9226736566186107,
+ "grad_norm": 0.22852344810962677,
+ "learning_rate": 0.0006,
+ "loss": 5.618719100952148,
+ "step": 282
+ },
+ {
+ "epoch": 3.9366535605067714,
+ "grad_norm": 0.37366563081741333,
+ "learning_rate": 0.0006,
+ "loss": 5.611738204956055,
+ "step": 283
+ },
+ {
+ "epoch": 3.950633464394932,
+ "grad_norm": 0.5650382041931152,
+ "learning_rate": 0.0006,
+ "loss": 5.606371879577637,
+ "step": 284
+ },
+ {
+ "epoch": 3.964613368283093,
+ "grad_norm": 0.5960066914558411,
+ "learning_rate": 0.0006,
+ "loss": 5.595022201538086,
+ "step": 285
+ },
+ {
+ "epoch": 3.9785932721712536,
+ "grad_norm": 0.3561663031578064,
+ "learning_rate": 0.0006,
+ "loss": 5.581035614013672,
+ "step": 286
+ },
+ {
+ "epoch": 3.9925731760594148,
+ "grad_norm": 0.44699913263320923,
+ "learning_rate": 0.0006,
+ "loss": 5.568033218383789,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.42783990502357483,
+ "learning_rate": 0.0006,
+ "loss": 5.571993827819824,
+ "step": 288
+ },
+ {
+ "epoch": 4.0,
+ "eval_loss": 6.349016189575195,
+ "eval_runtime": 44.3326,
+ "eval_samples_per_second": 55.084,
+ "eval_steps_per_second": 3.451,
+ "step": 288
+ },
+ {
+ "epoch": 4.013979903888161,
+ "grad_norm": 0.41305896639823914,
+ "learning_rate": 0.0006,
+ "loss": 5.562954902648926,
+ "step": 289
+ },
+ {
+ "epoch": 4.0279598077763215,
+ "grad_norm": 0.3966459035873413,
+ "learning_rate": 0.0006,
+ "loss": 5.5671916007995605,
+ "step": 290
+ },
+ {
+ "epoch": 4.041939711664482,
+ "grad_norm": 0.4846104085445404,
+ "learning_rate": 0.0006,
+ "loss": 5.548027038574219,
+ "step": 291
+ },
+ {
+ "epoch": 4.055919615552643,
+ "grad_norm": 0.5916333794593811,
+ "learning_rate": 0.0006,
+ "loss": 5.5900068283081055,
+ "step": 292
+ },
+ {
+ "epoch": 4.069899519440804,
+ "grad_norm": 0.5973889231681824,
+ "learning_rate": 0.0006,
+ "loss": 5.537594795227051,
+ "step": 293
+ },
+ {
+ "epoch": 4.083879423328964,
+ "grad_norm": 0.4190494418144226,
+ "learning_rate": 0.0006,
+ "loss": 5.534749984741211,
+ "step": 294
+ },
+ {
+ "epoch": 4.097859327217125,
+ "grad_norm": 0.5956901907920837,
+ "learning_rate": 0.0006,
+ "loss": 5.554540634155273,
+ "step": 295
+ },
+ {
+ "epoch": 4.111839231105286,
+ "grad_norm": 0.8257920742034912,
+ "learning_rate": 0.0006,
+ "loss": 5.5728068351745605,
+ "step": 296
+ },
+ {
+ "epoch": 4.1258191349934465,
+ "grad_norm": 0.7241750955581665,
+ "learning_rate": 0.0006,
+ "loss": 5.5643815994262695,
+ "step": 297
+ },
+ {
+ "epoch": 4.139799038881607,
+ "grad_norm": 0.45730507373809814,
+ "learning_rate": 0.0006,
+ "loss": 5.554225921630859,
+ "step": 298
+ },
+ {
+ "epoch": 4.153778942769769,
+ "grad_norm": 0.5166977643966675,
+ "learning_rate": 0.0006,
+ "loss": 5.540790557861328,
+ "step": 299
+ },
+ {
+ "epoch": 4.16775884665793,
+ "grad_norm": 0.433237761259079,
+ "learning_rate": 0.0006,
+ "loss": 5.536884784698486,
+ "step": 300
+ },
+ {
+ "epoch": 4.18173875054609,
+ "grad_norm": 0.3369830250740051,
+ "learning_rate": 0.0006,
+ "loss": 5.532837867736816,
+ "step": 301
+ },
+ {
+ "epoch": 4.195718654434251,
+ "grad_norm": 0.33091458678245544,
+ "learning_rate": 0.0006,
+ "loss": 5.547643661499023,
+ "step": 302
+ },
+ {
+ "epoch": 4.209698558322412,
+ "grad_norm": 0.36462724208831787,
+ "learning_rate": 0.0006,
+ "loss": 5.525021076202393,
+ "step": 303
+ },
+ {
+ "epoch": 4.2236784622105725,
+ "grad_norm": 0.3342771530151367,
+ "learning_rate": 0.0006,
+ "loss": 5.512082099914551,
+ "step": 304
+ },
+ {
+ "epoch": 4.237658366098733,
+ "grad_norm": 0.26784762740135193,
+ "learning_rate": 0.0006,
+ "loss": 5.488072395324707,
+ "step": 305
+ },
+ {
+ "epoch": 4.251638269986894,
+ "grad_norm": 0.25986987352371216,
+ "learning_rate": 0.0006,
+ "loss": 5.4960455894470215,
+ "step": 306
+ },
+ {
+ "epoch": 4.265618173875055,
+ "grad_norm": 0.24595795571804047,
+ "learning_rate": 0.0006,
+ "loss": 5.513367176055908,
+ "step": 307
+ },
+ {
+ "epoch": 4.279598077763215,
+ "grad_norm": 0.2224857211112976,
+ "learning_rate": 0.0006,
+ "loss": 5.465205192565918,
+ "step": 308
+ },
+ {
+ "epoch": 4.293577981651376,
+ "grad_norm": 0.26799243688583374,
+ "learning_rate": 0.0006,
+ "loss": 5.476632118225098,
+ "step": 309
+ },
+ {
+ "epoch": 4.307557885539537,
+ "grad_norm": 0.20443417131900787,
+ "learning_rate": 0.0006,
+ "loss": 5.442601203918457,
+ "step": 310
+ },
+ {
+ "epoch": 4.321537789427698,
+ "grad_norm": 0.2275059074163437,
+ "learning_rate": 0.0006,
+ "loss": 5.453519344329834,
+ "step": 311
+ },
+ {
+ "epoch": 4.335517693315858,
+ "grad_norm": 0.2860901951789856,
+ "learning_rate": 0.0006,
+ "loss": 5.439424514770508,
+ "step": 312
+ },
+ {
+ "epoch": 4.349497597204019,
+ "grad_norm": 0.3378142714500427,
+ "learning_rate": 0.0006,
+ "loss": 5.476953983306885,
+ "step": 313
+ },
+ {
+ "epoch": 4.36347750109218,
+ "grad_norm": 0.3487110733985901,
+ "learning_rate": 0.0006,
+ "loss": 5.47003698348999,
+ "step": 314
+ },
+ {
+ "epoch": 4.3774574049803405,
+ "grad_norm": 0.3655227720737457,
+ "learning_rate": 0.0006,
+ "loss": 5.454250812530518,
+ "step": 315
+ },
+ {
+ "epoch": 4.391437308868501,
+ "grad_norm": 0.3754786252975464,
+ "learning_rate": 0.0006,
+ "loss": 5.475249290466309,
+ "step": 316
+ },
+ {
+ "epoch": 4.405417212756662,
+ "grad_norm": 0.42494088411331177,
+ "learning_rate": 0.0006,
+ "loss": 5.4552459716796875,
+ "step": 317
+ },
+ {
+ "epoch": 4.419397116644823,
+ "grad_norm": 0.4914703667163849,
+ "learning_rate": 0.0006,
+ "loss": 5.431845188140869,
+ "step": 318
+ },
+ {
+ "epoch": 4.433377020532983,
+ "grad_norm": 0.42470860481262207,
+ "learning_rate": 0.0006,
+ "loss": 5.454581260681152,
+ "step": 319
+ },
+ {
+ "epoch": 4.447356924421145,
+ "grad_norm": 0.3828011155128479,
+ "learning_rate": 0.0006,
+ "loss": 5.435178756713867,
+ "step": 320
+ },
+ {
+ "epoch": 4.461336828309306,
+ "grad_norm": 0.47256892919540405,
+ "learning_rate": 0.0006,
+ "loss": 5.428861618041992,
+ "step": 321
+ },
+ {
+ "epoch": 4.4753167321974665,
+ "grad_norm": 0.5665146708488464,
+ "learning_rate": 0.0006,
+ "loss": 5.424633026123047,
+ "step": 322
+ },
+ {
+ "epoch": 4.489296636085627,
+ "grad_norm": 0.48146721720695496,
+ "learning_rate": 0.0006,
+ "loss": 5.4577860832214355,
+ "step": 323
+ },
+ {
+ "epoch": 4.503276539973788,
+ "grad_norm": 0.3378535509109497,
+ "learning_rate": 0.0006,
+ "loss": 5.422727108001709,
+ "step": 324
+ },
+ {
+ "epoch": 4.517256443861949,
+ "grad_norm": 0.41981473565101624,
+ "learning_rate": 0.0006,
+ "loss": 5.418993949890137,
+ "step": 325
+ },
+ {
+ "epoch": 4.531236347750109,
+ "grad_norm": 0.39389684796333313,
+ "learning_rate": 0.0006,
+ "loss": 5.41835880279541,
+ "step": 326
+ },
+ {
+ "epoch": 4.54521625163827,
+ "grad_norm": 0.5912176370620728,
+ "learning_rate": 0.0006,
+ "loss": 5.40073299407959,
+ "step": 327
+ },
+ {
+ "epoch": 4.559196155526431,
+ "grad_norm": 0.6877487897872925,
+ "learning_rate": 0.0006,
+ "loss": 5.445301055908203,
+ "step": 328
+ },
+ {
+ "epoch": 4.573176059414592,
+ "grad_norm": 0.580555260181427,
+ "learning_rate": 0.0006,
+ "loss": 5.431069374084473,
+ "step": 329
+ },
+ {
+ "epoch": 4.587155963302752,
+ "grad_norm": 0.5974457859992981,
+ "learning_rate": 0.0006,
+ "loss": 5.422694206237793,
+ "step": 330
+ },
+ {
+ "epoch": 4.601135867190913,
+ "grad_norm": 0.722481906414032,
+ "learning_rate": 0.0006,
+ "loss": 5.447752952575684,
+ "step": 331
+ },
+ {
+ "epoch": 4.615115771079074,
+ "grad_norm": 0.7687886953353882,
+ "learning_rate": 0.0006,
+ "loss": 5.437956809997559,
+ "step": 332
+ },
+ {
+ "epoch": 4.6290956749672345,
+ "grad_norm": 0.7368173003196716,
+ "learning_rate": 0.0006,
+ "loss": 5.4367241859436035,
+ "step": 333
+ },
+ {
+ "epoch": 4.643075578855395,
+ "grad_norm": 0.6650524139404297,
+ "learning_rate": 0.0006,
+ "loss": 5.4288434982299805,
+ "step": 334
+ },
+ {
+ "epoch": 4.657055482743556,
+ "grad_norm": 0.4997614920139313,
+ "learning_rate": 0.0006,
+ "loss": 5.412769317626953,
+ "step": 335
+ },
+ {
+ "epoch": 4.671035386631717,
+ "grad_norm": 0.44208982586860657,
+ "learning_rate": 0.0006,
+ "loss": 5.42405366897583,
+ "step": 336
+ },
+ {
+ "epoch": 4.685015290519877,
+ "grad_norm": 0.39510273933410645,
+ "learning_rate": 0.0006,
+ "loss": 5.402547836303711,
+ "step": 337
+ },
+ {
+ "epoch": 4.698995194408038,
+ "grad_norm": 0.44970476627349854,
+ "learning_rate": 0.0006,
+ "loss": 5.377168655395508,
+ "step": 338
+ },
+ {
+ "epoch": 4.712975098296199,
+ "grad_norm": 0.3902331590652466,
+ "learning_rate": 0.0006,
+ "loss": 5.401622772216797,
+ "step": 339
+ },
+ {
+ "epoch": 4.72695500218436,
+ "grad_norm": 0.33485135436058044,
+ "learning_rate": 0.0006,
+ "loss": 5.397945880889893,
+ "step": 340
+ },
+ {
+ "epoch": 4.740934906072521,
+ "grad_norm": 0.29062309861183167,
+ "learning_rate": 0.0006,
+ "loss": 5.356175422668457,
+ "step": 341
+ },
+ {
+ "epoch": 4.754914809960681,
+ "grad_norm": 0.23617377877235413,
+ "learning_rate": 0.0006,
+ "loss": 5.388517379760742,
+ "step": 342
+ },
+ {
+ "epoch": 4.768894713848843,
+ "grad_norm": 0.2704737186431885,
+ "learning_rate": 0.0006,
+ "loss": 5.3746137619018555,
+ "step": 343
+ },
+ {
+ "epoch": 4.782874617737003,
+ "grad_norm": 0.20488551259040833,
+ "learning_rate": 0.0006,
+ "loss": 5.3754472732543945,
+ "step": 344
+ },
+ {
+ "epoch": 4.796854521625164,
+ "grad_norm": 0.2007082849740982,
+ "learning_rate": 0.0006,
+ "loss": 5.3538618087768555,
+ "step": 345
+ },
+ {
+ "epoch": 4.810834425513325,
+ "grad_norm": 0.21732935309410095,
+ "learning_rate": 0.0006,
+ "loss": 5.351774215698242,
+ "step": 346
+ },
+ {
+ "epoch": 4.824814329401486,
+ "grad_norm": 0.1944841742515564,
+ "learning_rate": 0.0006,
+ "loss": 5.357545852661133,
+ "step": 347
+ },
+ {
+ "epoch": 4.838794233289646,
+ "grad_norm": 0.1953933835029602,
+ "learning_rate": 0.0006,
+ "loss": 5.321681022644043,
+ "step": 348
+ },
+ {
+ "epoch": 4.852774137177807,
+ "grad_norm": 0.1743433028459549,
+ "learning_rate": 0.0006,
+ "loss": 5.340302467346191,
+ "step": 349
+ },
+ {
+ "epoch": 4.866754041065968,
+ "grad_norm": 0.19655466079711914,
+ "learning_rate": 0.0006,
+ "loss": 5.325471878051758,
+ "step": 350
+ },
+ {
+ "epoch": 4.8807339449541285,
+ "grad_norm": 0.15761791169643402,
+ "learning_rate": 0.0006,
+ "loss": 5.3453240394592285,
+ "step": 351
+ },
+ {
+ "epoch": 4.894713848842289,
+ "grad_norm": 0.19164425134658813,
+ "learning_rate": 0.0006,
+ "loss": 5.315583229064941,
+ "step": 352
+ },
+ {
+ "epoch": 4.90869375273045,
+ "grad_norm": 0.28084540367126465,
+ "learning_rate": 0.0006,
+ "loss": 5.309171676635742,
+ "step": 353
+ },
+ {
+ "epoch": 4.922673656618611,
+ "grad_norm": 0.4681853652000427,
+ "learning_rate": 0.0006,
+ "loss": 5.318211078643799,
+ "step": 354
+ },
+ {
+ "epoch": 4.936653560506771,
+ "grad_norm": 0.6417295932769775,
+ "learning_rate": 0.0006,
+ "loss": 5.309263706207275,
+ "step": 355
+ },
+ {
+ "epoch": 4.950633464394932,
+ "grad_norm": 0.501312792301178,
+ "learning_rate": 0.0006,
+ "loss": 5.321534156799316,
+ "step": 356
+ },
+ {
+ "epoch": 4.964613368283093,
+ "grad_norm": 0.47502145171165466,
+ "learning_rate": 0.0006,
+ "loss": 5.323659896850586,
+ "step": 357
+ },
+ {
+ "epoch": 4.978593272171254,
+ "grad_norm": 0.5366594791412354,
+ "learning_rate": 0.0006,
+ "loss": 5.327367782592773,
+ "step": 358
+ },
+ {
+ "epoch": 4.992573176059414,
+ "grad_norm": 0.6986395120620728,
+ "learning_rate": 0.0006,
+ "loss": 5.311097145080566,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.6626625657081604,
+ "learning_rate": 0.0006,
+ "loss": 5.337558269500732,
+ "step": 360
+ },
+ {
+ "epoch": 5.0,
+ "eval_loss": 5.929230690002441,
+ "eval_runtime": 44.5268,
+ "eval_samples_per_second": 54.843,
+ "eval_steps_per_second": 3.436,
+ "step": 360
+ },
+ {
+ "epoch": 5.013979903888161,
+ "grad_norm": 0.7383704781532288,
+ "learning_rate": 0.0006,
+ "loss": 5.315563678741455,
+ "step": 361
+ },
+ {
+ "epoch": 5.0279598077763215,
+ "grad_norm": 0.7730138301849365,
+ "learning_rate": 0.0006,
+ "loss": 5.324905872344971,
+ "step": 362
+ },
+ {
+ "epoch": 5.041939711664482,
+ "grad_norm": 0.8170825839042664,
+ "learning_rate": 0.0006,
+ "loss": 5.350251197814941,
+ "step": 363
+ },
+ {
+ "epoch": 5.055919615552643,
+ "grad_norm": 0.6950958371162415,
+ "learning_rate": 0.0006,
+ "loss": 5.338744163513184,
+ "step": 364
+ },
+ {
+ "epoch": 5.069899519440804,
+ "grad_norm": 0.5582894086837769,
+ "learning_rate": 0.0006,
+ "loss": 5.340539932250977,
+ "step": 365
+ },
+ {
+ "epoch": 5.083879423328964,
+ "grad_norm": 0.4772159159183502,
+ "learning_rate": 0.0006,
+ "loss": 5.344161033630371,
+ "step": 366
+ },
+ {
+ "epoch": 5.097859327217125,
+ "grad_norm": 0.5432839393615723,
+ "learning_rate": 0.0006,
+ "loss": 5.312403678894043,
+ "step": 367
+ },
+ {
+ "epoch": 5.111839231105286,
+ "grad_norm": 0.4944784641265869,
+ "learning_rate": 0.0006,
+ "loss": 5.30281925201416,
+ "step": 368
+ },
+ {
+ "epoch": 5.1258191349934465,
+ "grad_norm": 0.4298315942287445,
+ "learning_rate": 0.0006,
+ "loss": 5.29564094543457,
+ "step": 369
+ },
+ {
+ "epoch": 5.139799038881607,
+ "grad_norm": 0.349889874458313,
+ "learning_rate": 0.0006,
+ "loss": 5.287062644958496,
+ "step": 370
+ },
+ {
+ "epoch": 5.153778942769769,
+ "grad_norm": 0.2823719084262848,
+ "learning_rate": 0.0006,
+ "loss": 5.28826904296875,
+ "step": 371
+ },
+ {
+ "epoch": 5.16775884665793,
+ "grad_norm": 0.32975050806999207,
+ "learning_rate": 0.0006,
+ "loss": 5.256399631500244,
+ "step": 372
+ },
+ {
+ "epoch": 5.18173875054609,
+ "grad_norm": 0.2963952124118805,
+ "learning_rate": 0.0006,
+ "loss": 5.273757457733154,
+ "step": 373
+ },
+ {
+ "epoch": 5.195718654434251,
+ "grad_norm": 0.21345984935760498,
+ "learning_rate": 0.0006,
+ "loss": 5.274978160858154,
+ "step": 374
+ },
+ {
+ "epoch": 5.209698558322412,
+ "grad_norm": 0.2363101840019226,
+ "learning_rate": 0.0006,
+ "loss": 5.261585235595703,
+ "step": 375
+ },
+ {
+ "epoch": 5.2236784622105725,
+ "grad_norm": 0.19626963138580322,
+ "learning_rate": 0.0006,
+ "loss": 5.259700298309326,
+ "step": 376
+ },
+ {
+ "epoch": 5.237658366098733,
+ "grad_norm": 0.21083571016788483,
+ "learning_rate": 0.0006,
+ "loss": 5.233585357666016,
+ "step": 377
+ },
+ {
+ "epoch": 5.251638269986894,
+ "grad_norm": 0.2273513823747635,
+ "learning_rate": 0.0006,
+ "loss": 5.231740474700928,
+ "step": 378
+ },
+ {
+ "epoch": 5.265618173875055,
+ "grad_norm": 0.18299247324466705,
+ "learning_rate": 0.0006,
+ "loss": 5.251256465911865,
+ "step": 379
+ },
+ {
+ "epoch": 5.279598077763215,
+ "grad_norm": 0.19578224420547485,
+ "learning_rate": 0.0006,
+ "loss": 5.230329513549805,
+ "step": 380
+ },
+ {
+ "epoch": 5.293577981651376,
+ "grad_norm": 0.20308879017829895,
+ "learning_rate": 0.0006,
+ "loss": 5.243951797485352,
+ "step": 381
+ },
+ {
+ "epoch": 5.307557885539537,
+ "grad_norm": 0.21053212881088257,
+ "learning_rate": 0.0006,
+ "loss": 5.210272789001465,
+ "step": 382
+ },
+ {
+ "epoch": 5.321537789427698,
+ "grad_norm": 0.21852520108222961,
+ "learning_rate": 0.0006,
+ "loss": 5.215418815612793,
+ "step": 383
+ },
+ {
+ "epoch": 5.335517693315858,
+ "grad_norm": 0.24872010946273804,
+ "learning_rate": 0.0006,
+ "loss": 5.225139617919922,
+ "step": 384
+ },
+ {
+ "epoch": 5.349497597204019,
+ "grad_norm": 0.27780187129974365,
+ "learning_rate": 0.0006,
+ "loss": 5.241010665893555,
+ "step": 385
+ },
+ {
+ "epoch": 5.36347750109218,
+ "grad_norm": 0.261767715215683,
+ "learning_rate": 0.0006,
+ "loss": 5.230723857879639,
+ "step": 386
+ },
+ {
+ "epoch": 5.3774574049803405,
+ "grad_norm": 0.2111261785030365,
+ "learning_rate": 0.0006,
+ "loss": 5.1848602294921875,
+ "step": 387
+ },
+ {
+ "epoch": 5.391437308868501,
+ "grad_norm": 0.24325387179851532,
+ "learning_rate": 0.0006,
+ "loss": 5.180911064147949,
+ "step": 388
+ },
+ {
+ "epoch": 5.405417212756662,
+ "grad_norm": 0.19542962312698364,
+ "learning_rate": 0.0006,
+ "loss": 5.189907073974609,
+ "step": 389
+ },
+ {
+ "epoch": 5.419397116644823,
+ "grad_norm": 0.20489346981048584,
+ "learning_rate": 0.0006,
+ "loss": 5.184634208679199,
+ "step": 390
+ },
+ {
+ "epoch": 5.433377020532983,
+ "grad_norm": 0.2753409147262573,
+ "learning_rate": 0.0006,
+ "loss": 5.190083026885986,
+ "step": 391
+ },
+ {
+ "epoch": 5.447356924421145,
+ "grad_norm": 0.3758019208908081,
+ "learning_rate": 0.0006,
+ "loss": 5.189423561096191,
+ "step": 392
+ },
+ {
+ "epoch": 5.461336828309306,
+ "grad_norm": 0.4425095021724701,
+ "learning_rate": 0.0006,
+ "loss": 5.17152214050293,
+ "step": 393
+ },
+ {
+ "epoch": 5.4753167321974665,
+ "grad_norm": 0.39721858501434326,
+ "learning_rate": 0.0006,
+ "loss": 5.189178466796875,
+ "step": 394
+ },
+ {
+ "epoch": 5.489296636085627,
+ "grad_norm": 0.43441957235336304,
+ "learning_rate": 0.0006,
+ "loss": 5.1823577880859375,
+ "step": 395
+ },
+ {
+ "epoch": 5.503276539973788,
+ "grad_norm": 0.3583861291408539,
+ "learning_rate": 0.0006,
+ "loss": 5.160187721252441,
+ "step": 396
+ },
+ {
+ "epoch": 5.517256443861949,
+ "grad_norm": 0.323290079832077,
+ "learning_rate": 0.0006,
+ "loss": 5.113046646118164,
+ "step": 397
+ },
+ {
+ "epoch": 5.531236347750109,
+ "grad_norm": 0.3049418330192566,
+ "learning_rate": 0.0006,
+ "loss": 5.172209739685059,
+ "step": 398
+ },
+ {
+ "epoch": 5.54521625163827,
+ "grad_norm": 0.3253744840621948,
+ "learning_rate": 0.0006,
+ "loss": 5.1970720291137695,
+ "step": 399
+ },
+ {
+ "epoch": 5.559196155526431,
+ "grad_norm": 0.3232555091381073,
+ "learning_rate": 0.0006,
+ "loss": 5.173195838928223,
+ "step": 400
+ },
+ {
+ "epoch": 5.573176059414592,
+ "grad_norm": 0.33751845359802246,
+ "learning_rate": 0.0006,
+ "loss": 5.137526988983154,
+ "step": 401
+ },
+ {
+ "epoch": 5.587155963302752,
+ "grad_norm": 0.45970913767814636,
+ "learning_rate": 0.0006,
+ "loss": 5.123377799987793,
+ "step": 402
+ },
+ {
+ "epoch": 5.601135867190913,
+ "grad_norm": 0.5383784770965576,
+ "learning_rate": 0.0006,
+ "loss": 5.154180526733398,
+ "step": 403
+ },
+ {
+ "epoch": 5.615115771079074,
+ "grad_norm": 0.45765912532806396,
+ "learning_rate": 0.0006,
+ "loss": 5.1485209465026855,
+ "step": 404
+ },
+ {
+ "epoch": 5.6290956749672345,
+ "grad_norm": 0.5079503059387207,
+ "learning_rate": 0.0006,
+ "loss": 5.158293724060059,
+ "step": 405
+ },
+ {
+ "epoch": 5.643075578855395,
+ "grad_norm": 0.4860183894634247,
+ "learning_rate": 0.0006,
+ "loss": 5.1610212326049805,
+ "step": 406
+ },
+ {
+ "epoch": 5.657055482743556,
+ "grad_norm": 0.4065648913383484,
+ "learning_rate": 0.0006,
+ "loss": 5.1260786056518555,
+ "step": 407
+ },
+ {
+ "epoch": 5.671035386631717,
+ "grad_norm": 0.39606142044067383,
+ "learning_rate": 0.0006,
+ "loss": 5.1598711013793945,
+ "step": 408
+ },
+ {
+ "epoch": 5.685015290519877,
+ "grad_norm": 0.4705151319503784,
+ "learning_rate": 0.0006,
+ "loss": 5.166455268859863,
+ "step": 409
+ },
+ {
+ "epoch": 5.698995194408038,
+ "grad_norm": 0.5040799379348755,
+ "learning_rate": 0.0006,
+ "loss": 5.1408209800720215,
+ "step": 410
+ },
+ {
+ "epoch": 5.712975098296199,
+ "grad_norm": 0.5012556910514832,
+ "learning_rate": 0.0006,
+ "loss": 5.144109725952148,
+ "step": 411
+ },
+ {
+ "epoch": 5.72695500218436,
+ "grad_norm": 0.44301411509513855,
+ "learning_rate": 0.0006,
+ "loss": 5.155509948730469,
+ "step": 412
+ },
+ {
+ "epoch": 5.740934906072521,
+ "grad_norm": 0.36632269620895386,
+ "learning_rate": 0.0006,
+ "loss": 5.123111248016357,
+ "step": 413
+ },
+ {
+ "epoch": 5.754914809960681,
+ "grad_norm": 0.2980524003505707,
+ "learning_rate": 0.0006,
+ "loss": 5.1355719566345215,
+ "step": 414
+ },
+ {
+ "epoch": 5.768894713848843,
+ "grad_norm": 0.3441782295703888,
+ "learning_rate": 0.0006,
+ "loss": 5.132327079772949,
+ "step": 415
+ },
+ {
+ "epoch": 5.782874617737003,
+ "grad_norm": 0.4150780737400055,
+ "learning_rate": 0.0006,
+ "loss": 5.148543357849121,
+ "step": 416
+ },
+ {
+ "epoch": 5.796854521625164,
+ "grad_norm": 0.48417383432388306,
+ "learning_rate": 0.0006,
+ "loss": 5.104989528656006,
+ "step": 417
+ },
+ {
+ "epoch": 5.810834425513325,
+ "grad_norm": 0.3216031491756439,
+ "learning_rate": 0.0006,
+ "loss": 5.0926127433776855,
+ "step": 418
+ },
+ {
+ "epoch": 5.824814329401486,
+ "grad_norm": 0.2821158468723297,
+ "learning_rate": 0.0006,
+ "loss": 5.112299919128418,
+ "step": 419
+ },
+ {
+ "epoch": 5.838794233289646,
+ "grad_norm": 0.29821011424064636,
+ "learning_rate": 0.0006,
+ "loss": 5.091662406921387,
+ "step": 420
+ },
+ {
+ "epoch": 5.852774137177807,
+ "grad_norm": 0.30570563673973083,
+ "learning_rate": 0.0006,
+ "loss": 5.137539863586426,
+ "step": 421
+ },
+ {
+ "epoch": 5.866754041065968,
+ "grad_norm": 0.4029594957828522,
+ "learning_rate": 0.0006,
+ "loss": 5.112751007080078,
+ "step": 422
+ },
+ {
+ "epoch": 5.8807339449541285,
+ "grad_norm": 0.3878514766693115,
+ "learning_rate": 0.0006,
+ "loss": 5.094973564147949,
+ "step": 423
+ },
+ {
+ "epoch": 5.894713848842289,
+ "grad_norm": 0.31936126947402954,
+ "learning_rate": 0.0006,
+ "loss": 5.081070899963379,
+ "step": 424
+ },
+ {
+ "epoch": 5.90869375273045,
+ "grad_norm": 0.3309082090854645,
+ "learning_rate": 0.0006,
+ "loss": 5.06803560256958,
+ "step": 425
+ },
+ {
+ "epoch": 5.922673656618611,
+ "grad_norm": 0.27830439805984497,
+ "learning_rate": 0.0006,
+ "loss": 5.044766426086426,
+ "step": 426
+ },
+ {
+ "epoch": 5.936653560506771,
+ "grad_norm": 0.3301011919975281,
+ "learning_rate": 0.0006,
+ "loss": 5.093942165374756,
+ "step": 427
+ },
+ {
+ "epoch": 5.950633464394932,
+ "grad_norm": 0.40845948457717896,
+ "learning_rate": 0.0006,
+ "loss": 5.0889458656311035,
+ "step": 428
+ },
+ {
+ "epoch": 5.964613368283093,
+ "grad_norm": 0.4412153959274292,
+ "learning_rate": 0.0006,
+ "loss": 5.064834117889404,
+ "step": 429
+ },
+ {
+ "epoch": 5.978593272171254,
+ "grad_norm": 0.3592590093612671,
+ "learning_rate": 0.0006,
+ "loss": 5.066648006439209,
+ "step": 430
+ },
+ {
+ "epoch": 5.992573176059414,
+ "grad_norm": 0.3952840268611908,
+ "learning_rate": 0.0006,
+ "loss": 5.066549301147461,
+ "step": 431
+ },
+ {
+ "epoch": 6.0,
+ "grad_norm": 0.38878682255744934,
+ "learning_rate": 0.0006,
+ "loss": 5.0354323387146,
+ "step": 432
+ },
+ {
+ "epoch": 6.0,
+ "eval_loss": 5.473907947540283,
+ "eval_runtime": 44.5121,
+ "eval_samples_per_second": 54.861,
+ "eval_steps_per_second": 3.437,
+ "step": 432
+ },
+ {
+ "epoch": 6.013979903888161,
+ "grad_norm": 0.42730140686035156,
+ "learning_rate": 0.0006,
+ "loss": 5.048557281494141,
+ "step": 433
+ },
+ {
+ "epoch": 6.0279598077763215,
+ "grad_norm": 0.32713913917541504,
+ "learning_rate": 0.0006,
+ "loss": 5.041255950927734,
+ "step": 434
+ },
+ {
+ "epoch": 6.041939711664482,
+ "grad_norm": 0.32520365715026855,
+ "learning_rate": 0.0006,
+ "loss": 5.043124198913574,
+ "step": 435
+ },
+ {
+ "epoch": 6.055919615552643,
+ "grad_norm": 0.2941839098930359,
+ "learning_rate": 0.0006,
+ "loss": 5.0407304763793945,
+ "step": 436
+ },
+ {
+ "epoch": 6.069899519440804,
+ "grad_norm": 0.3088819682598114,
+ "learning_rate": 0.0006,
+ "loss": 5.020771026611328,
+ "step": 437
+ },
+ {
+ "epoch": 6.083879423328964,
+ "grad_norm": 0.34334254264831543,
+ "learning_rate": 0.0006,
+ "loss": 5.0260009765625,
+ "step": 438
+ },
+ {
+ "epoch": 6.097859327217125,
+ "grad_norm": 0.33016136288642883,
+ "learning_rate": 0.0006,
+ "loss": 4.994412899017334,
+ "step": 439
+ },
+ {
+ "epoch": 6.111839231105286,
+ "grad_norm": 0.2527366280555725,
+ "learning_rate": 0.0006,
+ "loss": 4.997830390930176,
+ "step": 440
+ },
+ {
+ "epoch": 6.1258191349934465,
+ "grad_norm": 0.24742509424686432,
+ "learning_rate": 0.0006,
+ "loss": 5.017087936401367,
+ "step": 441
+ },
+ {
+ "epoch": 6.139799038881607,
+ "grad_norm": 0.22578303515911102,
+ "learning_rate": 0.0006,
+ "loss": 5.000683784484863,
+ "step": 442
+ },
+ {
+ "epoch": 6.153778942769769,
+ "grad_norm": 0.21213896572589874,
+ "learning_rate": 0.0006,
+ "loss": 4.993280410766602,
+ "step": 443
+ },
+ {
+ "epoch": 6.16775884665793,
+ "grad_norm": 0.22559592127799988,
+ "learning_rate": 0.0006,
+ "loss": 5.005735874176025,
+ "step": 444
+ },
+ {
+ "epoch": 6.18173875054609,
+ "grad_norm": 0.18574322760105133,
+ "learning_rate": 0.0006,
+ "loss": 4.996601104736328,
+ "step": 445
+ },
+ {
+ "epoch": 6.195718654434251,
+ "grad_norm": 0.1793852299451828,
+ "learning_rate": 0.0006,
+ "loss": 4.977394104003906,
+ "step": 446
+ },
+ {
+ "epoch": 6.209698558322412,
+ "grad_norm": 0.1851297914981842,
+ "learning_rate": 0.0006,
+ "loss": 4.983541488647461,
+ "step": 447
+ },
+ {
+ "epoch": 6.2236784622105725,
+ "grad_norm": 0.2045268565416336,
+ "learning_rate": 0.0006,
+ "loss": 4.992830276489258,
+ "step": 448
+ },
+ {
+ "epoch": 6.237658366098733,
+ "grad_norm": 0.21707463264465332,
+ "learning_rate": 0.0006,
+ "loss": 4.998589515686035,
+ "step": 449
+ },
+ {
+ "epoch": 6.251638269986894,
+ "grad_norm": 0.2805860638618469,
+ "learning_rate": 0.0006,
+ "loss": 4.973134517669678,
+ "step": 450
+ },
+ {
+ "epoch": 6.265618173875055,
+ "grad_norm": 0.33102089166641235,
+ "learning_rate": 0.0006,
+ "loss": 4.957348823547363,
+ "step": 451
+ },
+ {
+ "epoch": 6.279598077763215,
+ "grad_norm": 0.3763096034526825,
+ "learning_rate": 0.0006,
+ "loss": 5.0133256912231445,
+ "step": 452
+ },
+ {
+ "epoch": 6.293577981651376,
+ "grad_norm": 0.4676196575164795,
+ "learning_rate": 0.0006,
+ "loss": 4.972289562225342,
+ "step": 453
+ },
+ {
+ "epoch": 6.307557885539537,
+ "grad_norm": 0.6158978343009949,
+ "learning_rate": 0.0006,
+ "loss": 4.989326477050781,
+ "step": 454
+ },
+ {
+ "epoch": 6.321537789427698,
+ "grad_norm": 0.537460446357727,
+ "learning_rate": 0.0006,
+ "loss": 5.0210676193237305,
+ "step": 455
+ },
+ {
+ "epoch": 6.335517693315858,
+ "grad_norm": 0.5342532396316528,
+ "learning_rate": 0.0006,
+ "loss": 4.988524436950684,
+ "step": 456
+ },
+ {
+ "epoch": 6.349497597204019,
+ "grad_norm": 0.5736384987831116,
+ "learning_rate": 0.0006,
+ "loss": 4.977508068084717,
+ "step": 457
+ },
+ {
+ "epoch": 6.36347750109218,
+ "grad_norm": 0.6656201481819153,
+ "learning_rate": 0.0006,
+ "loss": 5.047934055328369,
+ "step": 458
+ },
+ {
+ "epoch": 6.3774574049803405,
+ "grad_norm": 0.6388342380523682,
+ "learning_rate": 0.0006,
+ "loss": 5.017617225646973,
+ "step": 459
+ },
+ {
+ "epoch": 6.391437308868501,
+ "grad_norm": 0.6620904207229614,
+ "learning_rate": 0.0006,
+ "loss": 5.032195091247559,
+ "step": 460
+ },
+ {
+ "epoch": 6.405417212756662,
+ "grad_norm": 0.693274974822998,
+ "learning_rate": 0.0006,
+ "loss": 5.02433967590332,
+ "step": 461
+ },
+ {
+ "epoch": 6.419397116644823,
+ "grad_norm": 0.6888924241065979,
+ "learning_rate": 0.0006,
+ "loss": 5.010735511779785,
+ "step": 462
+ },
+ {
+ "epoch": 6.433377020532983,
+ "grad_norm": 0.7181721925735474,
+ "learning_rate": 0.0006,
+ "loss": 5.049690246582031,
+ "step": 463
+ },
+ {
+ "epoch": 6.447356924421145,
+ "grad_norm": 0.7225117087364197,
+ "learning_rate": 0.0006,
+ "loss": 5.031939506530762,
+ "step": 464
+ },
+ {
+ "epoch": 6.461336828309306,
+ "grad_norm": 0.5268304347991943,
+ "learning_rate": 0.0006,
+ "loss": 5.01638126373291,
+ "step": 465
+ },
+ {
+ "epoch": 6.4753167321974665,
+ "grad_norm": 0.38218435645103455,
+ "learning_rate": 0.0006,
+ "loss": 4.997034072875977,
+ "step": 466
+ },
+ {
+ "epoch": 6.489296636085627,
+ "grad_norm": 0.3576396703720093,
+ "learning_rate": 0.0006,
+ "loss": 5.006804943084717,
+ "step": 467
+ },
+ {
+ "epoch": 6.503276539973788,
+ "grad_norm": 0.3305981755256653,
+ "learning_rate": 0.0006,
+ "loss": 4.994671821594238,
+ "step": 468
+ },
+ {
+ "epoch": 6.517256443861949,
+ "grad_norm": 0.3254900574684143,
+ "learning_rate": 0.0006,
+ "loss": 4.9747490882873535,
+ "step": 469
+ },
+ {
+ "epoch": 6.531236347750109,
+ "grad_norm": 0.2655033469200134,
+ "learning_rate": 0.0006,
+ "loss": 5.002863883972168,
+ "step": 470
+ },
+ {
+ "epoch": 6.54521625163827,
+ "grad_norm": 0.2620532810688019,
+ "learning_rate": 0.0006,
+ "loss": 4.9813337326049805,
+ "step": 471
+ },
+ {
+ "epoch": 6.559196155526431,
+ "grad_norm": 0.22128869593143463,
+ "learning_rate": 0.0006,
+ "loss": 4.978368759155273,
+ "step": 472
+ },
+ {
+ "epoch": 6.573176059414592,
+ "grad_norm": 0.22638699412345886,
+ "learning_rate": 0.0006,
+ "loss": 4.944509029388428,
+ "step": 473
+ },
+ {
+ "epoch": 6.587155963302752,
+ "grad_norm": 0.20720207691192627,
+ "learning_rate": 0.0006,
+ "loss": 4.98404598236084,
+ "step": 474
+ },
+ {
+ "epoch": 6.601135867190913,
+ "grad_norm": 0.21577289700508118,
+ "learning_rate": 0.0006,
+ "loss": 4.958878040313721,
+ "step": 475
+ },
+ {
+ "epoch": 6.615115771079074,
+ "grad_norm": 0.22453972697257996,
+ "learning_rate": 0.0006,
+ "loss": 4.935467720031738,
+ "step": 476
+ },
+ {
+ "epoch": 6.6290956749672345,
+ "grad_norm": 0.20757712423801422,
+ "learning_rate": 0.0006,
+ "loss": 4.943334579467773,
+ "step": 477
+ },
+ {
+ "epoch": 6.643075578855395,
+ "grad_norm": 0.22808043658733368,
+ "learning_rate": 0.0006,
+ "loss": 4.936544418334961,
+ "step": 478
+ },
+ {
+ "epoch": 6.657055482743556,
+ "grad_norm": 0.2193756401538849,
+ "learning_rate": 0.0006,
+ "loss": 4.938162326812744,
+ "step": 479
+ },
+ {
+ "epoch": 6.671035386631717,
+ "grad_norm": 0.19677500426769257,
+ "learning_rate": 0.0006,
+ "loss": 4.9026713371276855,
+ "step": 480
+ },
+ {
+ "epoch": 6.685015290519877,
+ "grad_norm": 0.17271658778190613,
+ "learning_rate": 0.0006,
+ "loss": 4.912519454956055,
+ "step": 481
+ },
+ {
+ "epoch": 6.698995194408038,
+ "grad_norm": 0.17551499605178833,
+ "learning_rate": 0.0006,
+ "loss": 4.929941177368164,
+ "step": 482
+ },
+ {
+ "epoch": 6.712975098296199,
+ "grad_norm": 0.1582687348127365,
+ "learning_rate": 0.0006,
+ "loss": 4.908967971801758,
+ "step": 483
+ },
+ {
+ "epoch": 6.72695500218436,
+ "grad_norm": 0.1593410074710846,
+ "learning_rate": 0.0006,
+ "loss": 4.901554107666016,
+ "step": 484
+ },
+ {
+ "epoch": 6.740934906072521,
+ "grad_norm": 0.16746895015239716,
+ "learning_rate": 0.0006,
+ "loss": 4.917915344238281,
+ "step": 485
+ },
+ {
+ "epoch": 6.754914809960681,
+ "grad_norm": 0.17066062986850739,
+ "learning_rate": 0.0006,
+ "loss": 4.912853240966797,
+ "step": 486
+ },
+ {
+ "epoch": 6.768894713848843,
+ "grad_norm": 0.16727769374847412,
+ "learning_rate": 0.0006,
+ "loss": 4.895434856414795,
+ "step": 487
+ },
+ {
+ "epoch": 6.782874617737003,
+ "grad_norm": 0.1784558743238449,
+ "learning_rate": 0.0006,
+ "loss": 4.8805341720581055,
+ "step": 488
+ },
+ {
+ "epoch": 6.796854521625164,
+ "grad_norm": 0.176686093211174,
+ "learning_rate": 0.0006,
+ "loss": 4.855296611785889,
+ "step": 489
+ },
+ {
+ "epoch": 6.810834425513325,
+ "grad_norm": 0.21577849984169006,
+ "learning_rate": 0.0006,
+ "loss": 4.885506629943848,
+ "step": 490
+ },
+ {
+ "epoch": 6.824814329401486,
+ "grad_norm": 0.27615776658058167,
+ "learning_rate": 0.0006,
+ "loss": 4.913756847381592,
+ "step": 491
+ },
+ {
+ "epoch": 6.838794233289646,
+ "grad_norm": 0.3653675615787506,
+ "learning_rate": 0.0006,
+ "loss": 4.880918979644775,
+ "step": 492
+ },
+ {
+ "epoch": 6.852774137177807,
+ "grad_norm": 0.41473883390426636,
+ "learning_rate": 0.0006,
+ "loss": 4.894164562225342,
+ "step": 493
+ },
+ {
+ "epoch": 6.866754041065968,
+ "grad_norm": 0.45850715041160583,
+ "learning_rate": 0.0006,
+ "loss": 4.907922744750977,
+ "step": 494
+ },
+ {
+ "epoch": 6.8807339449541285,
+ "grad_norm": 0.4675290882587433,
+ "learning_rate": 0.0006,
+ "loss": 4.883112907409668,
+ "step": 495
+ },
+ {
+ "epoch": 6.894713848842289,
+ "grad_norm": 0.45795994997024536,
+ "learning_rate": 0.0006,
+ "loss": 4.897843360900879,
+ "step": 496
+ },
+ {
+ "epoch": 6.90869375273045,
+ "grad_norm": 0.46130508184432983,
+ "learning_rate": 0.0006,
+ "loss": 4.890612602233887,
+ "step": 497
+ },
+ {
+ "epoch": 6.922673656618611,
+ "grad_norm": 0.44783803820610046,
+ "learning_rate": 0.0006,
+ "loss": 4.880192756652832,
+ "step": 498
+ },
+ {
+ "epoch": 6.936653560506771,
+ "grad_norm": 0.35361284017562866,
+ "learning_rate": 0.0006,
+ "loss": 4.840778350830078,
+ "step": 499
+ },
+ {
+ "epoch": 6.950633464394932,
+ "grad_norm": 0.34027689695358276,
+ "learning_rate": 0.0006,
+ "loss": 4.871222496032715,
+ "step": 500
+ },
+ {
+ "epoch": 6.964613368283093,
+ "grad_norm": 0.30228909850120544,
+ "learning_rate": 0.0006,
+ "loss": 4.868077278137207,
+ "step": 501
+ },
+ {
+ "epoch": 6.978593272171254,
+ "grad_norm": 0.27706998586654663,
+ "learning_rate": 0.0006,
+ "loss": 4.895936012268066,
+ "step": 502
+ },
+ {
+ "epoch": 6.992573176059414,
+ "grad_norm": 0.3516870439052582,
+ "learning_rate": 0.0006,
+ "loss": 4.824636459350586,
+ "step": 503
+ },
+ {
+ "epoch": 7.0,
+ "grad_norm": 0.36831387877464294,
+ "learning_rate": 0.0006,
+ "loss": 4.874397277832031,
+ "step": 504
+ },
+ {
+ "epoch": 7.0,
+ "eval_loss": 5.176281452178955,
+ "eval_runtime": 44.2386,
+ "eval_samples_per_second": 55.201,
+ "eval_steps_per_second": 3.459,
+ "step": 504
+ },
+ {
+ "epoch": 7.013979903888161,
+ "grad_norm": 0.4265240430831909,
+ "learning_rate": 0.0006,
+ "loss": 4.814333438873291,
+ "step": 505
+ },
+ {
+ "epoch": 7.0279598077763215,
+ "grad_norm": 0.5126975774765015,
+ "learning_rate": 0.0006,
+ "loss": 4.852343559265137,
+ "step": 506
+ },
+ {
+ "epoch": 7.041939711664482,
+ "grad_norm": 0.43080806732177734,
+ "learning_rate": 0.0006,
+ "loss": 4.843439102172852,
+ "step": 507
+ },
+ {
+ "epoch": 7.055919615552643,
+ "grad_norm": 0.43170198798179626,
+ "learning_rate": 0.0006,
+ "loss": 4.845984935760498,
+ "step": 508
+ },
+ {
+ "epoch": 7.069899519440804,
+ "grad_norm": 0.5640552043914795,
+ "learning_rate": 0.0006,
+ "loss": 4.840991973876953,
+ "step": 509
+ },
+ {
+ "epoch": 7.083879423328964,
+ "grad_norm": 0.540381133556366,
+ "learning_rate": 0.0006,
+ "loss": 4.801316738128662,
+ "step": 510
+ },
+ {
+ "epoch": 7.097859327217125,
+ "grad_norm": 0.5412097573280334,
+ "learning_rate": 0.0006,
+ "loss": 4.886598587036133,
+ "step": 511
+ },
+ {
+ "epoch": 7.111839231105286,
+ "grad_norm": 0.630648136138916,
+ "learning_rate": 0.0006,
+ "loss": 4.849774360656738,
+ "step": 512
+ },
+ {
+ "epoch": 7.1258191349934465,
+ "grad_norm": 0.569952130317688,
+ "learning_rate": 0.0006,
+ "loss": 4.870607376098633,
+ "step": 513
+ },
+ {
+ "epoch": 7.139799038881607,
+ "grad_norm": 0.42051541805267334,
+ "learning_rate": 0.0006,
+ "loss": 4.83833122253418,
+ "step": 514
+ },
+ {
+ "epoch": 7.153778942769769,
+ "grad_norm": 0.3930990397930145,
+ "learning_rate": 0.0006,
+ "loss": 4.853984355926514,
+ "step": 515
+ },
+ {
+ "epoch": 7.16775884665793,
+ "grad_norm": 0.512886106967926,
+ "learning_rate": 0.0006,
+ "loss": 4.815458297729492,
+ "step": 516
+ },
+ {
+ "epoch": 7.18173875054609,
+ "grad_norm": 0.42580172419548035,
+ "learning_rate": 0.0006,
+ "loss": 4.825312614440918,
+ "step": 517
+ },
+ {
+ "epoch": 7.195718654434251,
+ "grad_norm": 0.31628182530403137,
+ "learning_rate": 0.0006,
+ "loss": 4.806377410888672,
+ "step": 518
+ },
+ {
+ "epoch": 7.209698558322412,
+ "grad_norm": 0.3109956681728363,
+ "learning_rate": 0.0006,
+ "loss": 4.819339752197266,
+ "step": 519
+ },
+ {
+ "epoch": 7.2236784622105725,
+ "grad_norm": 0.2740071415901184,
+ "learning_rate": 0.0006,
+ "loss": 4.81319522857666,
+ "step": 520
+ },
+ {
+ "epoch": 7.237658366098733,
+ "grad_norm": 0.26441165804862976,
+ "learning_rate": 0.0006,
+ "loss": 4.8107380867004395,
+ "step": 521
+ },
+ {
+ "epoch": 7.251638269986894,
+ "grad_norm": 0.2496110051870346,
+ "learning_rate": 0.0006,
+ "loss": 4.785193920135498,
+ "step": 522
+ },
+ {
+ "epoch": 7.265618173875055,
+ "grad_norm": 0.2565560042858124,
+ "learning_rate": 0.0006,
+ "loss": 4.802750587463379,
+ "step": 523
+ },
+ {
+ "epoch": 7.279598077763215,
+ "grad_norm": 0.2126980572938919,
+ "learning_rate": 0.0006,
+ "loss": 4.763580322265625,
+ "step": 524
+ },
+ {
+ "epoch": 7.293577981651376,
+ "grad_norm": 0.2169921100139618,
+ "learning_rate": 0.0006,
+ "loss": 4.756124973297119,
+ "step": 525
+ },
+ {
+ "epoch": 7.307557885539537,
+ "grad_norm": 0.2372167706489563,
+ "learning_rate": 0.0006,
+ "loss": 4.786888599395752,
+ "step": 526
+ },
+ {
+ "epoch": 7.321537789427698,
+ "grad_norm": 0.2124386429786682,
+ "learning_rate": 0.0006,
+ "loss": 4.777996063232422,
+ "step": 527
+ },
+ {
+ "epoch": 7.335517693315858,
+ "grad_norm": 0.18585442006587982,
+ "learning_rate": 0.0006,
+ "loss": 4.770537853240967,
+ "step": 528
+ },
+ {
+ "epoch": 7.349497597204019,
+ "grad_norm": 0.20515340566635132,
+ "learning_rate": 0.0006,
+ "loss": 4.769230842590332,
+ "step": 529
+ },
+ {
+ "epoch": 7.36347750109218,
+ "grad_norm": 0.19906704127788544,
+ "learning_rate": 0.0006,
+ "loss": 4.752581596374512,
+ "step": 530
+ },
+ {
+ "epoch": 7.3774574049803405,
+ "grad_norm": 0.2030428946018219,
+ "learning_rate": 0.0006,
+ "loss": 4.7353715896606445,
+ "step": 531
+ },
+ {
+ "epoch": 7.391437308868501,
+ "grad_norm": 0.17820630967617035,
+ "learning_rate": 0.0006,
+ "loss": 4.742705345153809,
+ "step": 532
+ },
+ {
+ "epoch": 7.405417212756662,
+ "grad_norm": 0.17642682790756226,
+ "learning_rate": 0.0006,
+ "loss": 4.752669334411621,
+ "step": 533
+ },
+ {
+ "epoch": 7.419397116644823,
+ "grad_norm": 0.18088409304618835,
+ "learning_rate": 0.0006,
+ "loss": 4.734611511230469,
+ "step": 534
+ },
+ {
+ "epoch": 7.433377020532983,
+ "grad_norm": 0.20897020399570465,
+ "learning_rate": 0.0006,
+ "loss": 4.756442070007324,
+ "step": 535
+ },
+ {
+ "epoch": 7.447356924421145,
+ "grad_norm": 0.23166777193546295,
+ "learning_rate": 0.0006,
+ "loss": 4.712922096252441,
+ "step": 536
+ },
+ {
+ "epoch": 7.461336828309306,
+ "grad_norm": 0.2205347716808319,
+ "learning_rate": 0.0006,
+ "loss": 4.75001335144043,
+ "step": 537
+ },
+ {
+ "epoch": 7.4753167321974665,
+ "grad_norm": 0.23868022859096527,
+ "learning_rate": 0.0006,
+ "loss": 4.726134300231934,
+ "step": 538
+ },
+ {
+ "epoch": 7.489296636085627,
+ "grad_norm": 0.2861441373825073,
+ "learning_rate": 0.0006,
+ "loss": 4.754112243652344,
+ "step": 539
+ },
+ {
+ "epoch": 7.503276539973788,
+ "grad_norm": 0.28980305790901184,
+ "learning_rate": 0.0006,
+ "loss": 4.716021537780762,
+ "step": 540
+ },
+ {
+ "epoch": 7.517256443861949,
+ "grad_norm": 0.2784835696220398,
+ "learning_rate": 0.0006,
+ "loss": 4.713929176330566,
+ "step": 541
+ },
+ {
+ "epoch": 7.531236347750109,
+ "grad_norm": 0.2962653934955597,
+ "learning_rate": 0.0006,
+ "loss": 4.711845397949219,
+ "step": 542
+ },
+ {
+ "epoch": 7.54521625163827,
+ "grad_norm": 0.3333161175251007,
+ "learning_rate": 0.0006,
+ "loss": 4.709834575653076,
+ "step": 543
+ },
+ {
+ "epoch": 7.559196155526431,
+ "grad_norm": 0.35304850339889526,
+ "learning_rate": 0.0006,
+ "loss": 4.732914924621582,
+ "step": 544
+ },
+ {
+ "epoch": 7.573176059414592,
+ "grad_norm": 0.4165869355201721,
+ "learning_rate": 0.0006,
+ "loss": 4.716190338134766,
+ "step": 545
+ },
+ {
+ "epoch": 7.587155963302752,
+ "grad_norm": 0.4878059923648834,
+ "learning_rate": 0.0006,
+ "loss": 4.723773002624512,
+ "step": 546
+ },
+ {
+ "epoch": 7.601135867190913,
+ "grad_norm": 0.36643707752227783,
+ "learning_rate": 0.0006,
+ "loss": 4.721458911895752,
+ "step": 547
+ },
+ {
+ "epoch": 7.615115771079074,
+ "grad_norm": 0.4046908915042877,
+ "learning_rate": 0.0006,
+ "loss": 4.715397834777832,
+ "step": 548
+ },
+ {
+ "epoch": 7.6290956749672345,
+ "grad_norm": 0.44426342844963074,
+ "learning_rate": 0.0006,
+ "loss": 4.737357139587402,
+ "step": 549
+ },
+ {
+ "epoch": 7.643075578855395,
+ "grad_norm": 0.4181079864501953,
+ "learning_rate": 0.0006,
+ "loss": 4.731383800506592,
+ "step": 550
+ },
+ {
+ "epoch": 7.657055482743556,
+ "grad_norm": 0.3486088216304779,
+ "learning_rate": 0.0006,
+ "loss": 4.728029727935791,
+ "step": 551
+ },
+ {
+ "epoch": 7.671035386631717,
+ "grad_norm": 0.37150970101356506,
+ "learning_rate": 0.0006,
+ "loss": 4.7083210945129395,
+ "step": 552
+ },
+ {
+ "epoch": 7.685015290519877,
+ "grad_norm": 0.43324410915374756,
+ "learning_rate": 0.0006,
+ "loss": 4.728720664978027,
+ "step": 553
+ },
+ {
+ "epoch": 7.698995194408038,
+ "grad_norm": 0.5026620626449585,
+ "learning_rate": 0.0006,
+ "loss": 4.698156356811523,
+ "step": 554
+ },
+ {
+ "epoch": 7.712975098296199,
+ "grad_norm": 0.4873499274253845,
+ "learning_rate": 0.0006,
+ "loss": 4.7169952392578125,
+ "step": 555
+ },
+ {
+ "epoch": 7.72695500218436,
+ "grad_norm": 0.4285493791103363,
+ "learning_rate": 0.0006,
+ "loss": 4.6877241134643555,
+ "step": 556
+ },
+ {
+ "epoch": 7.740934906072521,
+ "grad_norm": 0.5179854035377502,
+ "learning_rate": 0.0006,
+ "loss": 4.704267501831055,
+ "step": 557
+ },
+ {
+ "epoch": 7.754914809960681,
+ "grad_norm": 0.4642147421836853,
+ "learning_rate": 0.0006,
+ "loss": 4.695004463195801,
+ "step": 558
+ },
+ {
+ "epoch": 7.768894713848843,
+ "grad_norm": 0.47149503231048584,
+ "learning_rate": 0.0006,
+ "loss": 4.694338798522949,
+ "step": 559
+ },
+ {
+ "epoch": 7.782874617737003,
+ "grad_norm": 0.5422149300575256,
+ "learning_rate": 0.0006,
+ "loss": 4.749478340148926,
+ "step": 560
+ },
+ {
+ "epoch": 7.796854521625164,
+ "grad_norm": 0.4360728859901428,
+ "learning_rate": 0.0006,
+ "loss": 4.685191631317139,
+ "step": 561
+ },
+ {
+ "epoch": 7.810834425513325,
+ "grad_norm": 0.4243801534175873,
+ "learning_rate": 0.0006,
+ "loss": 4.69228458404541,
+ "step": 562
+ },
+ {
+ "epoch": 7.824814329401486,
+ "grad_norm": 0.40380290150642395,
+ "learning_rate": 0.0006,
+ "loss": 4.690923690795898,
+ "step": 563
+ },
+ {
+ "epoch": 7.838794233289646,
+ "grad_norm": 0.4352976381778717,
+ "learning_rate": 0.0006,
+ "loss": 4.720489978790283,
+ "step": 564
+ },
+ {
+ "epoch": 7.852774137177807,
+ "grad_norm": 0.44634920358657837,
+ "learning_rate": 0.0006,
+ "loss": 4.683789253234863,
+ "step": 565
+ },
+ {
+ "epoch": 7.866754041065968,
+ "grad_norm": 0.3818186819553375,
+ "learning_rate": 0.0006,
+ "loss": 4.696887016296387,
+ "step": 566
+ },
+ {
+ "epoch": 7.8807339449541285,
+ "grad_norm": 0.35270464420318604,
+ "learning_rate": 0.0006,
+ "loss": 4.715676307678223,
+ "step": 567
+ },
+ {
+ "epoch": 7.894713848842289,
+ "grad_norm": 0.249756321310997,
+ "learning_rate": 0.0006,
+ "loss": 4.672721862792969,
+ "step": 568
+ },
+ {
+ "epoch": 7.90869375273045,
+ "grad_norm": 0.25097888708114624,
+ "learning_rate": 0.0006,
+ "loss": 4.663518905639648,
+ "step": 569
+ },
+ {
+ "epoch": 7.922673656618611,
+ "grad_norm": 0.26563209295272827,
+ "learning_rate": 0.0006,
+ "loss": 4.675405025482178,
+ "step": 570
+ },
+ {
+ "epoch": 7.936653560506771,
+ "grad_norm": 0.26451292634010315,
+ "learning_rate": 0.0006,
+ "loss": 4.651235103607178,
+ "step": 571
+ },
+ {
+ "epoch": 7.950633464394932,
+ "grad_norm": 0.24185842275619507,
+ "learning_rate": 0.0006,
+ "loss": 4.671639919281006,
+ "step": 572
+ },
+ {
+ "epoch": 7.964613368283093,
+ "grad_norm": 0.21506108343601227,
+ "learning_rate": 0.0006,
+ "loss": 4.665352821350098,
+ "step": 573
+ },
+ {
+ "epoch": 7.978593272171254,
+ "grad_norm": 0.24365705251693726,
+ "learning_rate": 0.0006,
+ "loss": 4.663162708282471,
+ "step": 574
+ },
+ {
+ "epoch": 7.992573176059414,
+ "grad_norm": 0.24251042306423187,
+ "learning_rate": 0.0006,
+ "loss": 4.666633605957031,
+ "step": 575
+ },
+ {
+ "epoch": 8.0,
+ "grad_norm": 0.24187657237052917,
+ "learning_rate": 0.0006,
+ "loss": 4.63957405090332,
+ "step": 576
+ },
+ {
+ "epoch": 8.0,
+ "eval_loss": 4.923156261444092,
+ "eval_runtime": 44.1587,
+ "eval_samples_per_second": 55.301,
+ "eval_steps_per_second": 3.465,
+ "step": 576
+ },
+ {
+ "epoch": 8.013979903888162,
+ "grad_norm": 0.21323645114898682,
+ "learning_rate": 0.0006,
+ "loss": 4.636347770690918,
+ "step": 577
+ },
+ {
+ "epoch": 8.027959807776321,
+ "grad_norm": 0.2325759083032608,
+ "learning_rate": 0.0006,
+ "loss": 4.60684871673584,
+ "step": 578
+ },
+ {
+ "epoch": 8.041939711664483,
+ "grad_norm": 0.26741257309913635,
+ "learning_rate": 0.0006,
+ "loss": 4.647780418395996,
+ "step": 579
+ },
+ {
+ "epoch": 8.055919615552643,
+ "grad_norm": 0.285720556974411,
+ "learning_rate": 0.0006,
+ "loss": 4.629637718200684,
+ "step": 580
+ },
+ {
+ "epoch": 8.069899519440805,
+ "grad_norm": 0.2453618347644806,
+ "learning_rate": 0.0006,
+ "loss": 4.62420654296875,
+ "step": 581
+ },
+ {
+ "epoch": 8.083879423328964,
+ "grad_norm": 0.19662636518478394,
+ "learning_rate": 0.0006,
+ "loss": 4.593767166137695,
+ "step": 582
+ },
+ {
+ "epoch": 8.097859327217126,
+ "grad_norm": 0.22731931507587433,
+ "learning_rate": 0.0006,
+ "loss": 4.627089023590088,
+ "step": 583
+ },
+ {
+ "epoch": 8.111839231105286,
+ "grad_norm": 0.24452590942382812,
+ "learning_rate": 0.0006,
+ "loss": 4.613677024841309,
+ "step": 584
+ },
+ {
+ "epoch": 8.125819134993447,
+ "grad_norm": 0.2952791154384613,
+ "learning_rate": 0.0006,
+ "loss": 4.604985237121582,
+ "step": 585
+ },
+ {
+ "epoch": 8.139799038881607,
+ "grad_norm": 0.3184696137905121,
+ "learning_rate": 0.0006,
+ "loss": 4.589205741882324,
+ "step": 586
+ },
+ {
+ "epoch": 8.153778942769769,
+ "grad_norm": 0.2948093116283417,
+ "learning_rate": 0.0006,
+ "loss": 4.605442047119141,
+ "step": 587
+ },
+ {
+ "epoch": 8.167758846657929,
+ "grad_norm": 0.2450508326292038,
+ "learning_rate": 0.0006,
+ "loss": 4.615349292755127,
+ "step": 588
+ },
+ {
+ "epoch": 8.18173875054609,
+ "grad_norm": 0.25664836168289185,
+ "learning_rate": 0.0006,
+ "loss": 4.592251777648926,
+ "step": 589
+ },
+ {
+ "epoch": 8.19571865443425,
+ "grad_norm": 0.24479512870311737,
+ "learning_rate": 0.0006,
+ "loss": 4.6145920753479,
+ "step": 590
+ },
+ {
+ "epoch": 8.209698558322412,
+ "grad_norm": 0.24395205080509186,
+ "learning_rate": 0.0006,
+ "loss": 4.600954055786133,
+ "step": 591
+ },
+ {
+ "epoch": 8.223678462210572,
+ "grad_norm": 0.21804189682006836,
+ "learning_rate": 0.0006,
+ "loss": 4.607785224914551,
+ "step": 592
+ },
+ {
+ "epoch": 8.237658366098733,
+ "grad_norm": 0.20951785147190094,
+ "learning_rate": 0.0006,
+ "loss": 4.58140754699707,
+ "step": 593
+ },
+ {
+ "epoch": 8.251638269986893,
+ "grad_norm": 0.20415149629116058,
+ "learning_rate": 0.0006,
+ "loss": 4.593405723571777,
+ "step": 594
+ },
+ {
+ "epoch": 8.265618173875055,
+ "grad_norm": 0.19210249185562134,
+ "learning_rate": 0.0006,
+ "loss": 4.603294372558594,
+ "step": 595
+ },
+ {
+ "epoch": 8.279598077763215,
+ "grad_norm": 0.20719751715660095,
+ "learning_rate": 0.0006,
+ "loss": 4.55255651473999,
+ "step": 596
+ },
+ {
+ "epoch": 8.293577981651376,
+ "grad_norm": 0.20101022720336914,
+ "learning_rate": 0.0006,
+ "loss": 4.5928192138671875,
+ "step": 597
+ },
+ {
+ "epoch": 8.307557885539538,
+ "grad_norm": 0.19254222512245178,
+ "learning_rate": 0.0006,
+ "loss": 4.590397834777832,
+ "step": 598
+ },
+ {
+ "epoch": 8.321537789427698,
+ "grad_norm": 0.23234105110168457,
+ "learning_rate": 0.0006,
+ "loss": 4.5987677574157715,
+ "step": 599
+ },
+ {
+ "epoch": 8.33551769331586,
+ "grad_norm": 0.2537451982498169,
+ "learning_rate": 0.0006,
+ "loss": 4.543115615844727,
+ "step": 600
+ },
+ {
+ "epoch": 8.349497597204019,
+ "grad_norm": 0.29171040654182434,
+ "learning_rate": 0.0006,
+ "loss": 4.597387313842773,
+ "step": 601
+ },
+ {
+ "epoch": 8.36347750109218,
+ "grad_norm": 0.3035930097103119,
+ "learning_rate": 0.0006,
+ "loss": 4.566247463226318,
+ "step": 602
+ },
+ {
+ "epoch": 8.37745740498034,
+ "grad_norm": 0.2826756238937378,
+ "learning_rate": 0.0006,
+ "loss": 4.57047176361084,
+ "step": 603
+ },
+ {
+ "epoch": 8.391437308868502,
+ "grad_norm": 0.2959657609462738,
+ "learning_rate": 0.0006,
+ "loss": 4.582820892333984,
+ "step": 604
+ },
+ {
+ "epoch": 8.405417212756662,
+ "grad_norm": 0.3180356025695801,
+ "learning_rate": 0.0006,
+ "loss": 4.5573272705078125,
+ "step": 605
+ },
+ {
+ "epoch": 8.419397116644824,
+ "grad_norm": 0.3617221713066101,
+ "learning_rate": 0.0006,
+ "loss": 4.593079090118408,
+ "step": 606
+ },
+ {
+ "epoch": 8.433377020532983,
+ "grad_norm": 0.35198062658309937,
+ "learning_rate": 0.0006,
+ "loss": 4.615298271179199,
+ "step": 607
+ },
+ {
+ "epoch": 8.447356924421145,
+ "grad_norm": 0.3944903314113617,
+ "learning_rate": 0.0006,
+ "loss": 4.561809539794922,
+ "step": 608
+ },
+ {
+ "epoch": 8.461336828309305,
+ "grad_norm": 0.4525868594646454,
+ "learning_rate": 0.0006,
+ "loss": 4.613105773925781,
+ "step": 609
+ },
+ {
+ "epoch": 8.475316732197467,
+ "grad_norm": 0.4915139079093933,
+ "learning_rate": 0.0006,
+ "loss": 4.566202163696289,
+ "step": 610
+ },
+ {
+ "epoch": 8.489296636085626,
+ "grad_norm": 0.49231988191604614,
+ "learning_rate": 0.0006,
+ "loss": 4.556222915649414,
+ "step": 611
+ },
+ {
+ "epoch": 8.503276539973788,
+ "grad_norm": 0.43036946654319763,
+ "learning_rate": 0.0006,
+ "loss": 4.55517578125,
+ "step": 612
+ },
+ {
+ "epoch": 8.517256443861948,
+ "grad_norm": 0.42405328154563904,
+ "learning_rate": 0.0006,
+ "loss": 4.574039936065674,
+ "step": 613
+ },
+ {
+ "epoch": 8.53123634775011,
+ "grad_norm": 0.3955961763858795,
+ "learning_rate": 0.0006,
+ "loss": 4.6082611083984375,
+ "step": 614
+ },
+ {
+ "epoch": 8.54521625163827,
+ "grad_norm": 0.4377101957798004,
+ "learning_rate": 0.0006,
+ "loss": 4.555740833282471,
+ "step": 615
+ },
+ {
+ "epoch": 8.55919615552643,
+ "grad_norm": 0.4601984918117523,
+ "learning_rate": 0.0006,
+ "loss": 4.553995132446289,
+ "step": 616
+ },
+ {
+ "epoch": 8.57317605941459,
+ "grad_norm": 0.42025700211524963,
+ "learning_rate": 0.0006,
+ "loss": 4.567340850830078,
+ "step": 617
+ },
+ {
+ "epoch": 8.587155963302752,
+ "grad_norm": 0.35569432377815247,
+ "learning_rate": 0.0006,
+ "loss": 4.570140361785889,
+ "step": 618
+ },
+ {
+ "epoch": 8.601135867190912,
+ "grad_norm": 0.37940406799316406,
+ "learning_rate": 0.0006,
+ "loss": 4.581291198730469,
+ "step": 619
+ },
+ {
+ "epoch": 8.615115771079074,
+ "grad_norm": 0.3658490777015686,
+ "learning_rate": 0.0006,
+ "loss": 4.55476188659668,
+ "step": 620
+ },
+ {
+ "epoch": 8.629095674967235,
+ "grad_norm": 0.2908247113227844,
+ "learning_rate": 0.0006,
+ "loss": 4.564087867736816,
+ "step": 621
+ },
+ {
+ "epoch": 8.643075578855395,
+ "grad_norm": 0.29961925745010376,
+ "learning_rate": 0.0006,
+ "loss": 4.556543350219727,
+ "step": 622
+ },
+ {
+ "epoch": 8.657055482743557,
+ "grad_norm": 0.3144846558570862,
+ "learning_rate": 0.0006,
+ "loss": 4.553670883178711,
+ "step": 623
+ },
+ {
+ "epoch": 8.671035386631717,
+ "grad_norm": 0.2845900356769562,
+ "learning_rate": 0.0006,
+ "loss": 4.567296981811523,
+ "step": 624
+ },
+ {
+ "epoch": 8.685015290519878,
+ "grad_norm": 0.253591388463974,
+ "learning_rate": 0.0006,
+ "loss": 4.554507255554199,
+ "step": 625
+ },
+ {
+ "epoch": 8.698995194408038,
+ "grad_norm": 0.2563088536262512,
+ "learning_rate": 0.0006,
+ "loss": 4.542218208312988,
+ "step": 626
+ },
+ {
+ "epoch": 8.7129750982962,
+ "grad_norm": 0.26058217883110046,
+ "learning_rate": 0.0006,
+ "loss": 4.535512447357178,
+ "step": 627
+ },
+ {
+ "epoch": 8.72695500218436,
+ "grad_norm": 0.20749829709529877,
+ "learning_rate": 0.0006,
+ "loss": 4.516959190368652,
+ "step": 628
+ },
+ {
+ "epoch": 8.740934906072521,
+ "grad_norm": 0.2034810334444046,
+ "learning_rate": 0.0006,
+ "loss": 4.55794095993042,
+ "step": 629
+ },
+ {
+ "epoch": 8.754914809960681,
+ "grad_norm": 0.18418121337890625,
+ "learning_rate": 0.0006,
+ "loss": 4.5421247482299805,
+ "step": 630
+ },
+ {
+ "epoch": 8.768894713848843,
+ "grad_norm": 0.20551933348178864,
+ "learning_rate": 0.0006,
+ "loss": 4.50805139541626,
+ "step": 631
+ },
+ {
+ "epoch": 8.782874617737003,
+ "grad_norm": 0.21615999937057495,
+ "learning_rate": 0.0006,
+ "loss": 4.520708084106445,
+ "step": 632
+ },
+ {
+ "epoch": 8.796854521625164,
+ "grad_norm": 0.24864810705184937,
+ "learning_rate": 0.0006,
+ "loss": 4.509330749511719,
+ "step": 633
+ },
+ {
+ "epoch": 8.810834425513324,
+ "grad_norm": 0.2573665380477905,
+ "learning_rate": 0.0006,
+ "loss": 4.531505584716797,
+ "step": 634
+ },
+ {
+ "epoch": 8.824814329401486,
+ "grad_norm": 0.22452878952026367,
+ "learning_rate": 0.0006,
+ "loss": 4.529216289520264,
+ "step": 635
+ },
+ {
+ "epoch": 8.838794233289645,
+ "grad_norm": 0.19727355241775513,
+ "learning_rate": 0.0006,
+ "loss": 4.519906520843506,
+ "step": 636
+ },
+ {
+ "epoch": 8.852774137177807,
+ "grad_norm": 0.19937913119792938,
+ "learning_rate": 0.0006,
+ "loss": 4.536892414093018,
+ "step": 637
+ },
+ {
+ "epoch": 8.866754041065967,
+ "grad_norm": 0.2070389986038208,
+ "learning_rate": 0.0006,
+ "loss": 4.51191520690918,
+ "step": 638
+ },
+ {
+ "epoch": 8.880733944954128,
+ "grad_norm": 0.2293873429298401,
+ "learning_rate": 0.0006,
+ "loss": 4.505377769470215,
+ "step": 639
+ },
+ {
+ "epoch": 8.89471384884229,
+ "grad_norm": 0.21285250782966614,
+ "learning_rate": 0.0006,
+ "loss": 4.5138959884643555,
+ "step": 640
+ },
+ {
+ "epoch": 8.90869375273045,
+ "grad_norm": 0.19487562775611877,
+ "learning_rate": 0.0006,
+ "loss": 4.506108283996582,
+ "step": 641
+ },
+ {
+ "epoch": 8.922673656618612,
+ "grad_norm": 0.21986965835094452,
+ "learning_rate": 0.0006,
+ "loss": 4.506397247314453,
+ "step": 642
+ },
+ {
+ "epoch": 8.936653560506771,
+ "grad_norm": 0.20763885974884033,
+ "learning_rate": 0.0006,
+ "loss": 4.508007049560547,
+ "step": 643
+ },
+ {
+ "epoch": 8.950633464394933,
+ "grad_norm": 0.22858479619026184,
+ "learning_rate": 0.0006,
+ "loss": 4.520846366882324,
+ "step": 644
+ },
+ {
+ "epoch": 8.964613368283093,
+ "grad_norm": 0.23923712968826294,
+ "learning_rate": 0.0006,
+ "loss": 4.535306930541992,
+ "step": 645
+ },
+ {
+ "epoch": 8.978593272171254,
+ "grad_norm": 0.23717579245567322,
+ "learning_rate": 0.0006,
+ "loss": 4.485929489135742,
+ "step": 646
+ },
+ {
+ "epoch": 8.992573176059414,
+ "grad_norm": 0.24033977091312408,
+ "learning_rate": 0.0006,
+ "loss": 4.508999824523926,
+ "step": 647
+ },
+ {
+ "epoch": 9.0,
+ "grad_norm": 0.22432062029838562,
+ "learning_rate": 0.0006,
+ "loss": 4.473136901855469,
+ "step": 648
+ },
+ {
+ "epoch": 9.0,
+ "eval_loss": 4.735903263092041,
+ "eval_runtime": 44.2163,
+ "eval_samples_per_second": 55.228,
+ "eval_steps_per_second": 3.46,
+ "step": 648
+ },
+ {
+ "epoch": 9.013979903888162,
+ "grad_norm": 0.22491489350795746,
+ "learning_rate": 0.0006,
+ "loss": 4.468614101409912,
+ "step": 649
+ },
+ {
+ "epoch": 9.027959807776321,
+ "grad_norm": 0.255759060382843,
+ "learning_rate": 0.0006,
+ "loss": 4.516196250915527,
+ "step": 650
+ },
+ {
+ "epoch": 9.041939711664483,
+ "grad_norm": 0.2591100335121155,
+ "learning_rate": 0.0006,
+ "loss": 4.478276252746582,
+ "step": 651
+ },
+ {
+ "epoch": 9.055919615552643,
+ "grad_norm": 0.30472296476364136,
+ "learning_rate": 0.0006,
+ "loss": 4.479726791381836,
+ "step": 652
+ },
+ {
+ "epoch": 9.069899519440805,
+ "grad_norm": 0.2840559780597687,
+ "learning_rate": 0.0006,
+ "loss": 4.4437384605407715,
+ "step": 653
+ },
+ {
+ "epoch": 9.083879423328964,
+ "grad_norm": 0.2695577144622803,
+ "learning_rate": 0.0006,
+ "loss": 4.476065635681152,
+ "step": 654
+ },
+ {
+ "epoch": 9.097859327217126,
+ "grad_norm": 0.27912381291389465,
+ "learning_rate": 0.0006,
+ "loss": 4.484747409820557,
+ "step": 655
+ },
+ {
+ "epoch": 9.111839231105286,
+ "grad_norm": 0.3091907501220703,
+ "learning_rate": 0.0006,
+ "loss": 4.449443817138672,
+ "step": 656
+ },
+ {
+ "epoch": 9.125819134993447,
+ "grad_norm": 0.30756646394729614,
+ "learning_rate": 0.0006,
+ "loss": 4.496490001678467,
+ "step": 657
+ },
+ {
+ "epoch": 9.139799038881607,
+ "grad_norm": 0.305698037147522,
+ "learning_rate": 0.0006,
+ "loss": 4.466765880584717,
+ "step": 658
+ },
+ {
+ "epoch": 9.153778942769769,
+ "grad_norm": 0.3031201660633087,
+ "learning_rate": 0.0006,
+ "loss": 4.462430953979492,
+ "step": 659
+ },
+ {
+ "epoch": 9.167758846657929,
+ "grad_norm": 0.32725608348846436,
+ "learning_rate": 0.0006,
+ "loss": 4.479879379272461,
+ "step": 660
+ },
+ {
+ "epoch": 9.18173875054609,
+ "grad_norm": 0.31773585081100464,
+ "learning_rate": 0.0006,
+ "loss": 4.473912239074707,
+ "step": 661
+ },
+ {
+ "epoch": 9.19571865443425,
+ "grad_norm": 0.30025365948677063,
+ "learning_rate": 0.0006,
+ "loss": 4.476703643798828,
+ "step": 662
+ },
+ {
+ "epoch": 9.209698558322412,
+ "grad_norm": 0.3177371025085449,
+ "learning_rate": 0.0006,
+ "loss": 4.439765930175781,
+ "step": 663
+ },
+ {
+ "epoch": 9.223678462210572,
+ "grad_norm": 0.3060745894908905,
+ "learning_rate": 0.0006,
+ "loss": 4.487849235534668,
+ "step": 664
+ },
+ {
+ "epoch": 9.237658366098733,
+ "grad_norm": 0.33287373185157776,
+ "learning_rate": 0.0006,
+ "loss": 4.443496227264404,
+ "step": 665
+ },
+ {
+ "epoch": 9.251638269986893,
+ "grad_norm": 0.3758000433444977,
+ "learning_rate": 0.0006,
+ "loss": 4.478017330169678,
+ "step": 666
+ },
+ {
+ "epoch": 9.265618173875055,
+ "grad_norm": 0.32124510407447815,
+ "learning_rate": 0.0006,
+ "loss": 4.4092206954956055,
+ "step": 667
+ },
+ {
+ "epoch": 9.279598077763215,
+ "grad_norm": 0.2786794602870941,
+ "learning_rate": 0.0006,
+ "loss": 4.432734489440918,
+ "step": 668
+ },
+ {
+ "epoch": 9.293577981651376,
+ "grad_norm": 0.35042962431907654,
+ "learning_rate": 0.0006,
+ "loss": 4.462737083435059,
+ "step": 669
+ },
+ {
+ "epoch": 9.307557885539538,
+ "grad_norm": 0.4080469310283661,
+ "learning_rate": 0.0006,
+ "loss": 4.429462432861328,
+ "step": 670
+ },
+ {
+ "epoch": 9.321537789427698,
+ "grad_norm": 0.465158075094223,
+ "learning_rate": 0.0006,
+ "loss": 4.465776443481445,
+ "step": 671
+ },
+ {
+ "epoch": 9.33551769331586,
+ "grad_norm": 0.44833582639694214,
+ "learning_rate": 0.0006,
+ "loss": 4.454195976257324,
+ "step": 672
+ },
+ {
+ "epoch": 9.349497597204019,
+ "grad_norm": 0.451052188873291,
+ "learning_rate": 0.0006,
+ "loss": 4.456139087677002,
+ "step": 673
+ },
+ {
+ "epoch": 9.36347750109218,
+ "grad_norm": 0.3759656250476837,
+ "learning_rate": 0.0006,
+ "loss": 4.461119651794434,
+ "step": 674
+ },
+ {
+ "epoch": 9.37745740498034,
+ "grad_norm": 0.514560341835022,
+ "learning_rate": 0.0006,
+ "loss": 4.49595832824707,
+ "step": 675
+ },
+ {
+ "epoch": 9.391437308868502,
+ "grad_norm": 0.5650647282600403,
+ "learning_rate": 0.0006,
+ "loss": 4.461362838745117,
+ "step": 676
+ },
+ {
+ "epoch": 9.405417212756662,
+ "grad_norm": 0.4218835234642029,
+ "learning_rate": 0.0006,
+ "loss": 4.469146728515625,
+ "step": 677
+ },
+ {
+ "epoch": 9.419397116644824,
+ "grad_norm": 0.4169512689113617,
+ "learning_rate": 0.0006,
+ "loss": 4.470132827758789,
+ "step": 678
+ },
+ {
+ "epoch": 9.433377020532983,
+ "grad_norm": 0.3772219717502594,
+ "learning_rate": 0.0006,
+ "loss": 4.4742608070373535,
+ "step": 679
+ },
+ {
+ "epoch": 9.447356924421145,
+ "grad_norm": 0.35755908489227295,
+ "learning_rate": 0.0006,
+ "loss": 4.461928367614746,
+ "step": 680
+ },
+ {
+ "epoch": 9.461336828309305,
+ "grad_norm": 0.3141227662563324,
+ "learning_rate": 0.0006,
+ "loss": 4.491983413696289,
+ "step": 681
+ },
+ {
+ "epoch": 9.475316732197467,
+ "grad_norm": 0.282461017370224,
+ "learning_rate": 0.0006,
+ "loss": 4.460200309753418,
+ "step": 682
+ },
+ {
+ "epoch": 9.489296636085626,
+ "grad_norm": 0.27174389362335205,
+ "learning_rate": 0.0006,
+ "loss": 4.416125297546387,
+ "step": 683
+ },
+ {
+ "epoch": 9.503276539973788,
+ "grad_norm": 0.24570637941360474,
+ "learning_rate": 0.0006,
+ "loss": 4.4451093673706055,
+ "step": 684
+ },
+ {
+ "epoch": 9.517256443861948,
+ "grad_norm": 0.2741486132144928,
+ "learning_rate": 0.0006,
+ "loss": 4.453263282775879,
+ "step": 685
+ },
+ {
+ "epoch": 9.53123634775011,
+ "grad_norm": 0.24753718078136444,
+ "learning_rate": 0.0006,
+ "loss": 4.483033180236816,
+ "step": 686
+ },
+ {
+ "epoch": 9.54521625163827,
+ "grad_norm": 0.24288412928581238,
+ "learning_rate": 0.0006,
+ "loss": 4.452961444854736,
+ "step": 687
+ },
+ {
+ "epoch": 9.55919615552643,
+ "grad_norm": 0.21554753184318542,
+ "learning_rate": 0.0006,
+ "loss": 4.476005554199219,
+ "step": 688
+ },
+ {
+ "epoch": 9.57317605941459,
+ "grad_norm": 0.22775942087173462,
+ "learning_rate": 0.0006,
+ "loss": 4.4479193687438965,
+ "step": 689
+ },
+ {
+ "epoch": 9.587155963302752,
+ "grad_norm": 0.2610701024532318,
+ "learning_rate": 0.0006,
+ "loss": 4.474987506866455,
+ "step": 690
+ },
+ {
+ "epoch": 9.601135867190912,
+ "grad_norm": 0.2394690215587616,
+ "learning_rate": 0.0006,
+ "loss": 4.444857597351074,
+ "step": 691
+ },
+ {
+ "epoch": 9.615115771079074,
+ "grad_norm": 0.20868559181690216,
+ "learning_rate": 0.0006,
+ "loss": 4.4220709800720215,
+ "step": 692
+ },
+ {
+ "epoch": 9.629095674967235,
+ "grad_norm": 0.21869882941246033,
+ "learning_rate": 0.0006,
+ "loss": 4.451737403869629,
+ "step": 693
+ },
+ {
+ "epoch": 9.643075578855395,
+ "grad_norm": 0.1802823394536972,
+ "learning_rate": 0.0006,
+ "loss": 4.409085273742676,
+ "step": 694
+ },
+ {
+ "epoch": 9.657055482743557,
+ "grad_norm": 0.17046281695365906,
+ "learning_rate": 0.0006,
+ "loss": 4.424643516540527,
+ "step": 695
+ },
+ {
+ "epoch": 9.671035386631717,
+ "grad_norm": 0.19561922550201416,
+ "learning_rate": 0.0006,
+ "loss": 4.412302017211914,
+ "step": 696
+ },
+ {
+ "epoch": 9.685015290519878,
+ "grad_norm": 0.21928799152374268,
+ "learning_rate": 0.0006,
+ "loss": 4.427582263946533,
+ "step": 697
+ },
+ {
+ "epoch": 9.698995194408038,
+ "grad_norm": 0.244873046875,
+ "learning_rate": 0.0006,
+ "loss": 4.431827545166016,
+ "step": 698
+ },
+ {
+ "epoch": 9.7129750982962,
+ "grad_norm": 0.2799488604068756,
+ "learning_rate": 0.0006,
+ "loss": 4.407991409301758,
+ "step": 699
+ },
+ {
+ "epoch": 9.72695500218436,
+ "grad_norm": 0.2699538767337799,
+ "learning_rate": 0.0006,
+ "loss": 4.412313461303711,
+ "step": 700
+ },
+ {
+ "epoch": 9.740934906072521,
+ "grad_norm": 0.22293835878372192,
+ "learning_rate": 0.0006,
+ "loss": 4.423369884490967,
+ "step": 701
+ },
+ {
+ "epoch": 9.754914809960681,
+ "grad_norm": 0.21554361283779144,
+ "learning_rate": 0.0006,
+ "loss": 4.42026948928833,
+ "step": 702
+ },
+ {
+ "epoch": 9.768894713848843,
+ "grad_norm": 0.22135840356349945,
+ "learning_rate": 0.0006,
+ "loss": 4.400010108947754,
+ "step": 703
+ },
+ {
+ "epoch": 9.782874617737003,
+ "grad_norm": 0.2169952541589737,
+ "learning_rate": 0.0006,
+ "loss": 4.394582271575928,
+ "step": 704
+ },
+ {
+ "epoch": 9.796854521625164,
+ "grad_norm": 0.18913042545318604,
+ "learning_rate": 0.0006,
+ "loss": 4.395880699157715,
+ "step": 705
+ },
+ {
+ "epoch": 9.810834425513324,
+ "grad_norm": 0.191524475812912,
+ "learning_rate": 0.0006,
+ "loss": 4.378962516784668,
+ "step": 706
+ },
+ {
+ "epoch": 9.824814329401486,
+ "grad_norm": 0.20057640969753265,
+ "learning_rate": 0.0006,
+ "loss": 4.431066513061523,
+ "step": 707
+ },
+ {
+ "epoch": 9.838794233289645,
+ "grad_norm": 0.21670377254486084,
+ "learning_rate": 0.0006,
+ "loss": 4.364682197570801,
+ "step": 708
+ },
+ {
+ "epoch": 9.852774137177807,
+ "grad_norm": 0.21653099358081818,
+ "learning_rate": 0.0006,
+ "loss": 4.4050445556640625,
+ "step": 709
+ },
+ {
+ "epoch": 9.866754041065967,
+ "grad_norm": 0.2217673808336258,
+ "learning_rate": 0.0006,
+ "loss": 4.423664093017578,
+ "step": 710
+ },
+ {
+ "epoch": 9.880733944954128,
+ "grad_norm": 0.251078337430954,
+ "learning_rate": 0.0006,
+ "loss": 4.405768394470215,
+ "step": 711
+ },
+ {
+ "epoch": 9.89471384884229,
+ "grad_norm": 0.28962627053260803,
+ "learning_rate": 0.0006,
+ "loss": 4.421207427978516,
+ "step": 712
+ },
+ {
+ "epoch": 9.90869375273045,
+ "grad_norm": 0.3478074371814728,
+ "learning_rate": 0.0006,
+ "loss": 4.414942741394043,
+ "step": 713
+ },
+ {
+ "epoch": 9.922673656618612,
+ "grad_norm": 0.40396368503570557,
+ "learning_rate": 0.0006,
+ "loss": 4.415163993835449,
+ "step": 714
+ },
+ {
+ "epoch": 9.936653560506771,
+ "grad_norm": 0.3689858019351959,
+ "learning_rate": 0.0006,
+ "loss": 4.381345272064209,
+ "step": 715
+ },
+ {
+ "epoch": 9.950633464394933,
+ "grad_norm": 0.344868004322052,
+ "learning_rate": 0.0006,
+ "loss": 4.433088302612305,
+ "step": 716
+ },
+ {
+ "epoch": 9.964613368283093,
+ "grad_norm": 0.37976378202438354,
+ "learning_rate": 0.0006,
+ "loss": 4.431371212005615,
+ "step": 717
+ },
+ {
+ "epoch": 9.978593272171254,
+ "grad_norm": 0.4354130029678345,
+ "learning_rate": 0.0006,
+ "loss": 4.434148788452148,
+ "step": 718
+ },
+ {
+ "epoch": 9.992573176059414,
+ "grad_norm": 0.35859373211860657,
+ "learning_rate": 0.0006,
+ "loss": 4.428055763244629,
+ "step": 719
+ },
+ {
+ "epoch": 10.0,
+ "grad_norm": 0.3365023732185364,
+ "learning_rate": 0.0006,
+ "loss": 4.3888654708862305,
+ "step": 720
+ },
+ {
+ "epoch": 10.0,
+ "eval_loss": 4.638620853424072,
+ "eval_runtime": 44.3054,
+ "eval_samples_per_second": 55.117,
+ "eval_steps_per_second": 3.453,
+ "step": 720
+ },
+ {
+ "epoch": 10.013979903888162,
+ "grad_norm": 0.3267960250377655,
+ "learning_rate": 0.0006,
+ "loss": 4.386068344116211,
+ "step": 721
+ },
+ {
+ "epoch": 10.027959807776321,
+ "grad_norm": 0.33440953493118286,
+ "learning_rate": 0.0006,
+ "loss": 4.397515296936035,
+ "step": 722
+ },
+ {
+ "epoch": 10.041939711664483,
+ "grad_norm": 0.30047518014907837,
+ "learning_rate": 0.0006,
+ "loss": 4.398358345031738,
+ "step": 723
+ },
+ {
+ "epoch": 10.055919615552643,
+ "grad_norm": 0.2912217378616333,
+ "learning_rate": 0.0006,
+ "loss": 4.341166973114014,
+ "step": 724
+ },
+ {
+ "epoch": 10.069899519440805,
+ "grad_norm": 0.3199564218521118,
+ "learning_rate": 0.0006,
+ "loss": 4.388717174530029,
+ "step": 725
+ },
+ {
+ "epoch": 10.083879423328964,
+ "grad_norm": 0.2765582799911499,
+ "learning_rate": 0.0006,
+ "loss": 4.392992973327637,
+ "step": 726
+ },
+ {
+ "epoch": 10.097859327217126,
+ "grad_norm": 0.27138450741767883,
+ "learning_rate": 0.0006,
+ "loss": 4.382307529449463,
+ "step": 727
+ },
+ {
+ "epoch": 10.111839231105286,
+ "grad_norm": 0.29230645298957825,
+ "learning_rate": 0.0006,
+ "loss": 4.357486724853516,
+ "step": 728
+ },
+ {
+ "epoch": 10.125819134993447,
+ "grad_norm": 0.3127598464488983,
+ "learning_rate": 0.0006,
+ "loss": 4.39072322845459,
+ "step": 729
+ },
+ {
+ "epoch": 10.139799038881607,
+ "grad_norm": 0.3230913281440735,
+ "learning_rate": 0.0006,
+ "loss": 4.35037899017334,
+ "step": 730
+ },
+ {
+ "epoch": 10.153778942769769,
+ "grad_norm": 0.333675354719162,
+ "learning_rate": 0.0006,
+ "loss": 4.378030776977539,
+ "step": 731
+ },
+ {
+ "epoch": 10.167758846657929,
+ "grad_norm": 0.30325770378112793,
+ "learning_rate": 0.0006,
+ "loss": 4.372736930847168,
+ "step": 732
+ },
+ {
+ "epoch": 10.18173875054609,
+ "grad_norm": 0.2888163924217224,
+ "learning_rate": 0.0006,
+ "loss": 4.397604942321777,
+ "step": 733
+ },
+ {
+ "epoch": 10.19571865443425,
+ "grad_norm": 0.3378832936286926,
+ "learning_rate": 0.0006,
+ "loss": 4.395705223083496,
+ "step": 734
+ },
+ {
+ "epoch": 10.209698558322412,
+ "grad_norm": 0.30980268120765686,
+ "learning_rate": 0.0006,
+ "loss": 4.3861212730407715,
+ "step": 735
+ },
+ {
+ "epoch": 10.223678462210572,
+ "grad_norm": 0.2965783178806305,
+ "learning_rate": 0.0006,
+ "loss": 4.394898414611816,
+ "step": 736
+ },
+ {
+ "epoch": 10.237658366098733,
+ "grad_norm": 0.2818217873573303,
+ "learning_rate": 0.0006,
+ "loss": 4.36171817779541,
+ "step": 737
+ },
+ {
+ "epoch": 10.251638269986893,
+ "grad_norm": 0.2418123185634613,
+ "learning_rate": 0.0006,
+ "loss": 4.370945930480957,
+ "step": 738
+ },
+ {
+ "epoch": 10.265618173875055,
+ "grad_norm": 0.22372810542583466,
+ "learning_rate": 0.0006,
+ "loss": 4.354825973510742,
+ "step": 739
+ },
+ {
+ "epoch": 10.279598077763215,
+ "grad_norm": 0.238066166639328,
+ "learning_rate": 0.0006,
+ "loss": 4.376237392425537,
+ "step": 740
+ },
+ {
+ "epoch": 10.293577981651376,
+ "grad_norm": 0.22352449595928192,
+ "learning_rate": 0.0006,
+ "loss": 4.317084312438965,
+ "step": 741
+ },
+ {
+ "epoch": 10.307557885539538,
+ "grad_norm": 0.21685205399990082,
+ "learning_rate": 0.0006,
+ "loss": 4.335271835327148,
+ "step": 742
+ },
+ {
+ "epoch": 10.321537789427698,
+ "grad_norm": 0.19584694504737854,
+ "learning_rate": 0.0006,
+ "loss": 4.357963562011719,
+ "step": 743
+ },
+ {
+ "epoch": 10.33551769331586,
+ "grad_norm": 0.20373336970806122,
+ "learning_rate": 0.0006,
+ "loss": 4.401963233947754,
+ "step": 744
+ },
+ {
+ "epoch": 10.349497597204019,
+ "grad_norm": 0.2247837632894516,
+ "learning_rate": 0.0006,
+ "loss": 4.357202529907227,
+ "step": 745
+ },
+ {
+ "epoch": 10.36347750109218,
+ "grad_norm": 0.2416863739490509,
+ "learning_rate": 0.0006,
+ "loss": 4.364739418029785,
+ "step": 746
+ },
+ {
+ "epoch": 10.37745740498034,
+ "grad_norm": 0.22281162440776825,
+ "learning_rate": 0.0006,
+ "loss": 4.351607799530029,
+ "step": 747
+ },
+ {
+ "epoch": 10.391437308868502,
+ "grad_norm": 0.20751096308231354,
+ "learning_rate": 0.0006,
+ "loss": 4.370017051696777,
+ "step": 748
+ },
+ {
+ "epoch": 10.405417212756662,
+ "grad_norm": 0.19178363680839539,
+ "learning_rate": 0.0006,
+ "loss": 4.360328674316406,
+ "step": 749
+ },
+ {
+ "epoch": 10.419397116644824,
+ "grad_norm": 0.20534078776836395,
+ "learning_rate": 0.0006,
+ "loss": 4.3735432624816895,
+ "step": 750
+ },
+ {
+ "epoch": 10.433377020532983,
+ "grad_norm": 0.20533937215805054,
+ "learning_rate": 0.0006,
+ "loss": 4.326902389526367,
+ "step": 751
+ },
+ {
+ "epoch": 10.447356924421145,
+ "grad_norm": 0.22057875990867615,
+ "learning_rate": 0.0006,
+ "loss": 4.360934257507324,
+ "step": 752
+ },
+ {
+ "epoch": 10.461336828309305,
+ "grad_norm": 0.25568997859954834,
+ "learning_rate": 0.0006,
+ "loss": 4.345063209533691,
+ "step": 753
+ },
+ {
+ "epoch": 10.475316732197467,
+ "grad_norm": 0.31471487879753113,
+ "learning_rate": 0.0006,
+ "loss": 4.324014186859131,
+ "step": 754
+ },
+ {
+ "epoch": 10.489296636085626,
+ "grad_norm": 0.2716822624206543,
+ "learning_rate": 0.0006,
+ "loss": 4.318459510803223,
+ "step": 755
+ },
+ {
+ "epoch": 10.503276539973788,
+ "grad_norm": 0.19552019238471985,
+ "learning_rate": 0.0006,
+ "loss": 4.3367509841918945,
+ "step": 756
+ },
+ {
+ "epoch": 10.517256443861948,
+ "grad_norm": 0.22822986543178558,
+ "learning_rate": 0.0006,
+ "loss": 4.328935623168945,
+ "step": 757
+ },
+ {
+ "epoch": 10.53123634775011,
+ "grad_norm": 0.22282928228378296,
+ "learning_rate": 0.0006,
+ "loss": 4.358272552490234,
+ "step": 758
+ },
+ {
+ "epoch": 10.54521625163827,
+ "grad_norm": 0.23303352296352386,
+ "learning_rate": 0.0006,
+ "loss": 4.336641311645508,
+ "step": 759
+ },
+ {
+ "epoch": 10.55919615552643,
+ "grad_norm": 0.29474690556526184,
+ "learning_rate": 0.0006,
+ "loss": 4.343188285827637,
+ "step": 760
+ },
+ {
+ "epoch": 10.57317605941459,
+ "grad_norm": 0.36269059777259827,
+ "learning_rate": 0.0006,
+ "loss": 4.313019752502441,
+ "step": 761
+ },
+ {
+ "epoch": 10.587155963302752,
+ "grad_norm": 0.3742978870868683,
+ "learning_rate": 0.0006,
+ "loss": 4.361410140991211,
+ "step": 762
+ },
+ {
+ "epoch": 10.601135867190912,
+ "grad_norm": 0.34412163496017456,
+ "learning_rate": 0.0006,
+ "loss": 4.321324825286865,
+ "step": 763
+ },
+ {
+ "epoch": 10.615115771079074,
+ "grad_norm": 0.3464587926864624,
+ "learning_rate": 0.0006,
+ "loss": 4.341907501220703,
+ "step": 764
+ },
+ {
+ "epoch": 10.629095674967235,
+ "grad_norm": 0.3318136930465698,
+ "learning_rate": 0.0006,
+ "loss": 4.329099655151367,
+ "step": 765
+ },
+ {
+ "epoch": 10.643075578855395,
+ "grad_norm": 0.31292903423309326,
+ "learning_rate": 0.0006,
+ "loss": 4.332015037536621,
+ "step": 766
+ },
+ {
+ "epoch": 10.657055482743557,
+ "grad_norm": 0.2904847264289856,
+ "learning_rate": 0.0006,
+ "loss": 4.341764450073242,
+ "step": 767
+ },
+ {
+ "epoch": 10.671035386631717,
+ "grad_norm": 0.3287692666053772,
+ "learning_rate": 0.0006,
+ "loss": 4.342329025268555,
+ "step": 768
+ },
+ {
+ "epoch": 10.685015290519878,
+ "grad_norm": 0.3115365207195282,
+ "learning_rate": 0.0006,
+ "loss": 4.3530073165893555,
+ "step": 769
+ },
+ {
+ "epoch": 10.698995194408038,
+ "grad_norm": 0.24133864045143127,
+ "learning_rate": 0.0006,
+ "loss": 4.321497917175293,
+ "step": 770
+ },
+ {
+ "epoch": 10.7129750982962,
+ "grad_norm": 0.24658630788326263,
+ "learning_rate": 0.0006,
+ "loss": 4.32669734954834,
+ "step": 771
+ },
+ {
+ "epoch": 10.72695500218436,
+ "grad_norm": 0.2342129647731781,
+ "learning_rate": 0.0006,
+ "loss": 4.345459461212158,
+ "step": 772
+ },
+ {
+ "epoch": 10.740934906072521,
+ "grad_norm": 0.23360829055309296,
+ "learning_rate": 0.0006,
+ "loss": 4.33249568939209,
+ "step": 773
+ },
+ {
+ "epoch": 10.754914809960681,
+ "grad_norm": 0.24314677715301514,
+ "learning_rate": 0.0006,
+ "loss": 4.30499792098999,
+ "step": 774
+ },
+ {
+ "epoch": 10.768894713848843,
+ "grad_norm": 0.22105181217193604,
+ "learning_rate": 0.0006,
+ "loss": 4.33706521987915,
+ "step": 775
+ },
+ {
+ "epoch": 10.782874617737003,
+ "grad_norm": 0.23307174444198608,
+ "learning_rate": 0.0006,
+ "loss": 4.320387840270996,
+ "step": 776
+ },
+ {
+ "epoch": 10.796854521625164,
+ "grad_norm": 0.24946169555187225,
+ "learning_rate": 0.0006,
+ "loss": 4.316012382507324,
+ "step": 777
+ },
+ {
+ "epoch": 10.810834425513324,
+ "grad_norm": 0.26023536920547485,
+ "learning_rate": 0.0006,
+ "loss": 4.315193176269531,
+ "step": 778
+ },
+ {
+ "epoch": 10.824814329401486,
+ "grad_norm": 0.2688547968864441,
+ "learning_rate": 0.0006,
+ "loss": 4.3243255615234375,
+ "step": 779
+ },
+ {
+ "epoch": 10.838794233289645,
+ "grad_norm": 0.28188297152519226,
+ "learning_rate": 0.0006,
+ "loss": 4.3202972412109375,
+ "step": 780
+ },
+ {
+ "epoch": 10.852774137177807,
+ "grad_norm": 0.2890053689479828,
+ "learning_rate": 0.0006,
+ "loss": 4.318799018859863,
+ "step": 781
+ },
+ {
+ "epoch": 10.866754041065967,
+ "grad_norm": 0.2914353013038635,
+ "learning_rate": 0.0006,
+ "loss": 4.314262390136719,
+ "step": 782
+ },
+ {
+ "epoch": 10.880733944954128,
+ "grad_norm": 0.3145572543144226,
+ "learning_rate": 0.0006,
+ "loss": 4.339262008666992,
+ "step": 783
+ },
+ {
+ "epoch": 10.89471384884229,
+ "grad_norm": 0.323062002658844,
+ "learning_rate": 0.0006,
+ "loss": 4.354856491088867,
+ "step": 784
+ },
+ {
+ "epoch": 10.90869375273045,
+ "grad_norm": 0.32741227746009827,
+ "learning_rate": 0.0006,
+ "loss": 4.325577735900879,
+ "step": 785
+ },
+ {
+ "epoch": 10.922673656618612,
+ "grad_norm": 0.2855733036994934,
+ "learning_rate": 0.0006,
+ "loss": 4.324419021606445,
+ "step": 786
+ },
+ {
+ "epoch": 10.936653560506771,
+ "grad_norm": 0.2969444990158081,
+ "learning_rate": 0.0006,
+ "loss": 4.320681095123291,
+ "step": 787
+ },
+ {
+ "epoch": 10.950633464394933,
+ "grad_norm": 0.28108111023902893,
+ "learning_rate": 0.0006,
+ "loss": 4.32673454284668,
+ "step": 788
+ },
+ {
+ "epoch": 10.964613368283093,
+ "grad_norm": 0.2537972629070282,
+ "learning_rate": 0.0006,
+ "loss": 4.3197021484375,
+ "step": 789
+ },
+ {
+ "epoch": 10.978593272171254,
+ "grad_norm": 0.2354544699192047,
+ "learning_rate": 0.0006,
+ "loss": 4.3354973793029785,
+ "step": 790
+ },
+ {
+ "epoch": 10.992573176059414,
+ "grad_norm": 0.26195117831230164,
+ "learning_rate": 0.0006,
+ "loss": 4.3172526359558105,
+ "step": 791
+ },
+ {
+ "epoch": 11.0,
+ "grad_norm": 0.27089616656303406,
+ "learning_rate": 0.0006,
+ "loss": 4.324293613433838,
+ "step": 792
+ },
+ {
+ "epoch": 11.0,
+ "eval_loss": 4.531813621520996,
+ "eval_runtime": 44.1656,
+ "eval_samples_per_second": 55.292,
+ "eval_steps_per_second": 3.464,
+ "step": 792
+ },
+ {
+ "epoch": 11.013979903888162,
+ "grad_norm": 0.2526339590549469,
+ "learning_rate": 0.0006,
+ "loss": 4.287600517272949,
+ "step": 793
+ },
+ {
+ "epoch": 11.027959807776321,
+ "grad_norm": 0.24318458139896393,
+ "learning_rate": 0.0006,
+ "loss": 4.268078327178955,
+ "step": 794
+ },
+ {
+ "epoch": 11.041939711664483,
+ "grad_norm": 0.2450830638408661,
+ "learning_rate": 0.0006,
+ "loss": 4.265467643737793,
+ "step": 795
+ },
+ {
+ "epoch": 11.055919615552643,
+ "grad_norm": 0.23963099718093872,
+ "learning_rate": 0.0006,
+ "loss": 4.267931938171387,
+ "step": 796
+ },
+ {
+ "epoch": 11.069899519440805,
+ "grad_norm": 0.2488657534122467,
+ "learning_rate": 0.0006,
+ "loss": 4.30262565612793,
+ "step": 797
+ },
+ {
+ "epoch": 11.083879423328964,
+ "grad_norm": 0.2319781631231308,
+ "learning_rate": 0.0006,
+ "loss": 4.28665828704834,
+ "step": 798
+ },
+ {
+ "epoch": 11.097859327217126,
+ "grad_norm": 0.2425263375043869,
+ "learning_rate": 0.0006,
+ "loss": 4.284830570220947,
+ "step": 799
+ },
+ {
+ "epoch": 11.111839231105286,
+ "grad_norm": 0.23096567392349243,
+ "learning_rate": 0.0006,
+ "loss": 4.2817206382751465,
+ "step": 800
+ },
+ {
+ "epoch": 11.125819134993447,
+ "grad_norm": 0.2846364676952362,
+ "learning_rate": 0.0006,
+ "loss": 4.276104927062988,
+ "step": 801
+ },
+ {
+ "epoch": 11.139799038881607,
+ "grad_norm": 0.2984965741634369,
+ "learning_rate": 0.0006,
+ "loss": 4.2909650802612305,
+ "step": 802
+ },
+ {
+ "epoch": 11.153778942769769,
+ "grad_norm": 0.2841213643550873,
+ "learning_rate": 0.0006,
+ "loss": 4.283358097076416,
+ "step": 803
+ },
+ {
+ "epoch": 11.167758846657929,
+ "grad_norm": 0.29192933440208435,
+ "learning_rate": 0.0006,
+ "loss": 4.267040729522705,
+ "step": 804
+ },
+ {
+ "epoch": 11.18173875054609,
+ "grad_norm": 0.3254184126853943,
+ "learning_rate": 0.0006,
+ "loss": 4.301564693450928,
+ "step": 805
+ },
+ {
+ "epoch": 11.19571865443425,
+ "grad_norm": 0.3347095847129822,
+ "learning_rate": 0.0006,
+ "loss": 4.271395683288574,
+ "step": 806
+ },
+ {
+ "epoch": 11.209698558322412,
+ "grad_norm": 0.25609350204467773,
+ "learning_rate": 0.0006,
+ "loss": 4.2963056564331055,
+ "step": 807
+ },
+ {
+ "epoch": 11.223678462210572,
+ "grad_norm": 0.29272061586380005,
+ "learning_rate": 0.0006,
+ "loss": 4.298416614532471,
+ "step": 808
+ },
+ {
+ "epoch": 11.237658366098733,
+ "grad_norm": 0.32179465889930725,
+ "learning_rate": 0.0006,
+ "loss": 4.294036865234375,
+ "step": 809
+ },
+ {
+ "epoch": 11.251638269986893,
+ "grad_norm": 0.3336549401283264,
+ "learning_rate": 0.0006,
+ "loss": 4.291993141174316,
+ "step": 810
+ },
+ {
+ "epoch": 11.265618173875055,
+ "grad_norm": 0.32273536920547485,
+ "learning_rate": 0.0006,
+ "loss": 4.311004638671875,
+ "step": 811
+ },
+ {
+ "epoch": 11.279598077763215,
+ "grad_norm": 0.3575087785720825,
+ "learning_rate": 0.0006,
+ "loss": 4.300217628479004,
+ "step": 812
+ },
+ {
+ "epoch": 11.293577981651376,
+ "grad_norm": 0.3332885205745697,
+ "learning_rate": 0.0006,
+ "loss": 4.278337478637695,
+ "step": 813
+ },
+ {
+ "epoch": 11.307557885539538,
+ "grad_norm": 0.31440407037734985,
+ "learning_rate": 0.0006,
+ "loss": 4.273826599121094,
+ "step": 814
+ },
+ {
+ "epoch": 11.321537789427698,
+ "grad_norm": 0.29822009801864624,
+ "learning_rate": 0.0006,
+ "loss": 4.284292221069336,
+ "step": 815
+ },
+ {
+ "epoch": 11.33551769331586,
+ "grad_norm": 0.30695512890815735,
+ "learning_rate": 0.0006,
+ "loss": 4.2831926345825195,
+ "step": 816
+ },
+ {
+ "epoch": 11.349497597204019,
+ "grad_norm": 0.30576950311660767,
+ "learning_rate": 0.0006,
+ "loss": 4.277133464813232,
+ "step": 817
+ },
+ {
+ "epoch": 11.36347750109218,
+ "grad_norm": 0.2859647870063782,
+ "learning_rate": 0.0006,
+ "loss": 4.3130106925964355,
+ "step": 818
+ },
+ {
+ "epoch": 11.37745740498034,
+ "grad_norm": 0.32417574524879456,
+ "learning_rate": 0.0006,
+ "loss": 4.310303211212158,
+ "step": 819
+ },
+ {
+ "epoch": 11.391437308868502,
+ "grad_norm": 0.3512463867664337,
+ "learning_rate": 0.0006,
+ "loss": 4.287015438079834,
+ "step": 820
+ },
+ {
+ "epoch": 11.405417212756662,
+ "grad_norm": 0.32578620314598083,
+ "learning_rate": 0.0006,
+ "loss": 4.2957940101623535,
+ "step": 821
+ },
+ {
+ "epoch": 11.419397116644824,
+ "grad_norm": 0.287949800491333,
+ "learning_rate": 0.0006,
+ "loss": 4.2881879806518555,
+ "step": 822
+ },
+ {
+ "epoch": 11.433377020532983,
+ "grad_norm": 0.28048595786094666,
+ "learning_rate": 0.0006,
+ "loss": 4.274960517883301,
+ "step": 823
+ },
+ {
+ "epoch": 11.447356924421145,
+ "grad_norm": 0.2541540563106537,
+ "learning_rate": 0.0006,
+ "loss": 4.261083602905273,
+ "step": 824
+ },
+ {
+ "epoch": 11.461336828309305,
+ "grad_norm": 0.2348361313343048,
+ "learning_rate": 0.0006,
+ "loss": 4.271036148071289,
+ "step": 825
+ },
+ {
+ "epoch": 11.475316732197467,
+ "grad_norm": 0.20913535356521606,
+ "learning_rate": 0.0006,
+ "loss": 4.307661056518555,
+ "step": 826
+ },
+ {
+ "epoch": 11.489296636085626,
+ "grad_norm": 0.22298868000507355,
+ "learning_rate": 0.0006,
+ "loss": 4.26902961730957,
+ "step": 827
+ },
+ {
+ "epoch": 11.503276539973788,
+ "grad_norm": 0.22752761840820312,
+ "learning_rate": 0.0006,
+ "loss": 4.305529594421387,
+ "step": 828
+ },
+ {
+ "epoch": 11.517256443861948,
+ "grad_norm": 0.2149917483329773,
+ "learning_rate": 0.0006,
+ "loss": 4.25134801864624,
+ "step": 829
+ },
+ {
+ "epoch": 11.53123634775011,
+ "grad_norm": 0.21085695922374725,
+ "learning_rate": 0.0006,
+ "loss": 4.266982078552246,
+ "step": 830
+ },
+ {
+ "epoch": 11.54521625163827,
+ "grad_norm": 0.21586747467517853,
+ "learning_rate": 0.0006,
+ "loss": 4.235255718231201,
+ "step": 831
+ },
+ {
+ "epoch": 11.55919615552643,
+ "grad_norm": 0.2520856559276581,
+ "learning_rate": 0.0006,
+ "loss": 4.283442497253418,
+ "step": 832
+ },
+ {
+ "epoch": 11.57317605941459,
+ "grad_norm": 0.2825471758842468,
+ "learning_rate": 0.0006,
+ "loss": 4.234672546386719,
+ "step": 833
+ },
+ {
+ "epoch": 11.587155963302752,
+ "grad_norm": 0.27437824010849,
+ "learning_rate": 0.0006,
+ "loss": 4.246068000793457,
+ "step": 834
+ },
+ {
+ "epoch": 11.601135867190912,
+ "grad_norm": 0.2596757411956787,
+ "learning_rate": 0.0006,
+ "loss": 4.278448104858398,
+ "step": 835
+ },
+ {
+ "epoch": 11.615115771079074,
+ "grad_norm": 0.25663474202156067,
+ "learning_rate": 0.0006,
+ "loss": 4.308779716491699,
+ "step": 836
+ },
+ {
+ "epoch": 11.629095674967235,
+ "grad_norm": 0.2546203136444092,
+ "learning_rate": 0.0006,
+ "loss": 4.261247634887695,
+ "step": 837
+ },
+ {
+ "epoch": 11.643075578855395,
+ "grad_norm": 0.24722838401794434,
+ "learning_rate": 0.0006,
+ "loss": 4.275888442993164,
+ "step": 838
+ },
+ {
+ "epoch": 11.657055482743557,
+ "grad_norm": 0.3022806644439697,
+ "learning_rate": 0.0006,
+ "loss": 4.2572407722473145,
+ "step": 839
+ },
+ {
+ "epoch": 11.671035386631717,
+ "grad_norm": 0.31170839071273804,
+ "learning_rate": 0.0006,
+ "loss": 4.26992654800415,
+ "step": 840
+ },
+ {
+ "epoch": 11.685015290519878,
+ "grad_norm": 0.31362825632095337,
+ "learning_rate": 0.0006,
+ "loss": 4.2354655265808105,
+ "step": 841
+ },
+ {
+ "epoch": 11.698995194408038,
+ "grad_norm": 0.28741633892059326,
+ "learning_rate": 0.0006,
+ "loss": 4.263496398925781,
+ "step": 842
+ },
+ {
+ "epoch": 11.7129750982962,
+ "grad_norm": 0.2492494285106659,
+ "learning_rate": 0.0006,
+ "loss": 4.26463508605957,
+ "step": 843
+ },
+ {
+ "epoch": 11.72695500218436,
+ "grad_norm": 0.24324660003185272,
+ "learning_rate": 0.0006,
+ "loss": 4.245428085327148,
+ "step": 844
+ },
+ {
+ "epoch": 11.740934906072521,
+ "grad_norm": 0.23591114580631256,
+ "learning_rate": 0.0006,
+ "loss": 4.249845504760742,
+ "step": 845
+ },
+ {
+ "epoch": 11.754914809960681,
+ "grad_norm": 0.2202281504869461,
+ "learning_rate": 0.0006,
+ "loss": 4.245006084442139,
+ "step": 846
+ },
+ {
+ "epoch": 11.768894713848843,
+ "grad_norm": 0.22117942571640015,
+ "learning_rate": 0.0006,
+ "loss": 4.27812385559082,
+ "step": 847
+ },
+ {
+ "epoch": 11.782874617737003,
+ "grad_norm": 0.26361414790153503,
+ "learning_rate": 0.0006,
+ "loss": 4.250475883483887,
+ "step": 848
+ },
+ {
+ "epoch": 11.796854521625164,
+ "grad_norm": 0.2820321321487427,
+ "learning_rate": 0.0006,
+ "loss": 4.265835762023926,
+ "step": 849
+ },
+ {
+ "epoch": 11.810834425513324,
+ "grad_norm": 0.2078961282968521,
+ "learning_rate": 0.0006,
+ "loss": 4.251298904418945,
+ "step": 850
+ },
+ {
+ "epoch": 11.824814329401486,
+ "grad_norm": 0.21548646688461304,
+ "learning_rate": 0.0006,
+ "loss": 4.288539886474609,
+ "step": 851
+ },
+ {
+ "epoch": 11.838794233289645,
+ "grad_norm": 0.22719401121139526,
+ "learning_rate": 0.0006,
+ "loss": 4.252035140991211,
+ "step": 852
+ },
+ {
+ "epoch": 11.852774137177807,
+ "grad_norm": 0.21628320217132568,
+ "learning_rate": 0.0006,
+ "loss": 4.268622398376465,
+ "step": 853
+ },
+ {
+ "epoch": 11.866754041065967,
+ "grad_norm": 0.20855145156383514,
+ "learning_rate": 0.0006,
+ "loss": 4.253366470336914,
+ "step": 854
+ },
+ {
+ "epoch": 11.880733944954128,
+ "grad_norm": 0.2091914266347885,
+ "learning_rate": 0.0006,
+ "loss": 4.237805366516113,
+ "step": 855
+ },
+ {
+ "epoch": 11.89471384884229,
+ "grad_norm": 0.2000127136707306,
+ "learning_rate": 0.0006,
+ "loss": 4.268559455871582,
+ "step": 856
+ },
+ {
+ "epoch": 11.90869375273045,
+ "grad_norm": 0.21080894768238068,
+ "learning_rate": 0.0006,
+ "loss": 4.208702087402344,
+ "step": 857
+ },
+ {
+ "epoch": 11.922673656618612,
+ "grad_norm": 0.22125796973705292,
+ "learning_rate": 0.0006,
+ "loss": 4.250210762023926,
+ "step": 858
+ },
+ {
+ "epoch": 11.936653560506771,
+ "grad_norm": 0.25905469059944153,
+ "learning_rate": 0.0006,
+ "loss": 4.2263593673706055,
+ "step": 859
+ },
+ {
+ "epoch": 11.950633464394933,
+ "grad_norm": 0.29970306158065796,
+ "learning_rate": 0.0006,
+ "loss": 4.250848770141602,
+ "step": 860
+ },
+ {
+ "epoch": 11.964613368283093,
+ "grad_norm": 0.28155168890953064,
+ "learning_rate": 0.0006,
+ "loss": 4.272709369659424,
+ "step": 861
+ },
+ {
+ "epoch": 11.978593272171254,
+ "grad_norm": 0.23396113514900208,
+ "learning_rate": 0.0006,
+ "loss": 4.2674970626831055,
+ "step": 862
+ },
+ {
+ "epoch": 11.992573176059414,
+ "grad_norm": 0.23619577288627625,
+ "learning_rate": 0.0006,
+ "loss": 4.240267753601074,
+ "step": 863
+ },
+ {
+ "epoch": 12.0,
+ "grad_norm": 0.2779577076435089,
+ "learning_rate": 0.0006,
+ "loss": 4.267625331878662,
+ "step": 864
+ },
+ {
+ "epoch": 12.0,
+ "eval_loss": 4.437657356262207,
+ "eval_runtime": 44.4959,
+ "eval_samples_per_second": 54.881,
+ "eval_steps_per_second": 3.439,
+ "step": 864
+ },
+ {
+ "epoch": 12.013979903888162,
+ "grad_norm": 0.2948288321495056,
+ "learning_rate": 0.0006,
+ "loss": 4.232182502746582,
+ "step": 865
+ },
+ {
+ "epoch": 12.027959807776321,
+ "grad_norm": 0.3715663254261017,
+ "learning_rate": 0.0006,
+ "loss": 4.233771324157715,
+ "step": 866
+ },
+ {
+ "epoch": 12.041939711664483,
+ "grad_norm": 0.38358673453330994,
+ "learning_rate": 0.0006,
+ "loss": 4.208967685699463,
+ "step": 867
+ },
+ {
+ "epoch": 12.055919615552643,
+ "grad_norm": 0.3314538896083832,
+ "learning_rate": 0.0006,
+ "loss": 4.230685234069824,
+ "step": 868
+ },
+ {
+ "epoch": 12.069899519440805,
+ "grad_norm": 0.34171539545059204,
+ "learning_rate": 0.0006,
+ "loss": 4.231358528137207,
+ "step": 869
+ },
+ {
+ "epoch": 12.083879423328964,
+ "grad_norm": 0.3253359794616699,
+ "learning_rate": 0.0006,
+ "loss": 4.276405334472656,
+ "step": 870
+ },
+ {
+ "epoch": 12.097859327217126,
+ "grad_norm": 0.29008302092552185,
+ "learning_rate": 0.0006,
+ "loss": 4.232935905456543,
+ "step": 871
+ },
+ {
+ "epoch": 12.111839231105286,
+ "grad_norm": 0.28490355610847473,
+ "learning_rate": 0.0006,
+ "loss": 4.238036632537842,
+ "step": 872
+ },
+ {
+ "epoch": 12.125819134993447,
+ "grad_norm": 0.28446322679519653,
+ "learning_rate": 0.0006,
+ "loss": 4.210229873657227,
+ "step": 873
+ },
+ {
+ "epoch": 12.139799038881607,
+ "grad_norm": 0.29664531350135803,
+ "learning_rate": 0.0006,
+ "loss": 4.221309185028076,
+ "step": 874
+ },
+ {
+ "epoch": 12.153778942769769,
+ "grad_norm": 0.3083505928516388,
+ "learning_rate": 0.0006,
+ "loss": 4.221837997436523,
+ "step": 875
+ },
+ {
+ "epoch": 12.167758846657929,
+ "grad_norm": 0.3282921314239502,
+ "learning_rate": 0.0006,
+ "loss": 4.236713409423828,
+ "step": 876
+ },
+ {
+ "epoch": 12.18173875054609,
+ "grad_norm": 0.3603622615337372,
+ "learning_rate": 0.0006,
+ "loss": 4.245080947875977,
+ "step": 877
+ },
+ {
+ "epoch": 12.19571865443425,
+ "grad_norm": 0.38070905208587646,
+ "learning_rate": 0.0006,
+ "loss": 4.240756988525391,
+ "step": 878
+ },
+ {
+ "epoch": 12.209698558322412,
+ "grad_norm": 0.34479081630706787,
+ "learning_rate": 0.0006,
+ "loss": 4.200998306274414,
+ "step": 879
+ },
+ {
+ "epoch": 12.223678462210572,
+ "grad_norm": 0.3006879389286041,
+ "learning_rate": 0.0006,
+ "loss": 4.23531436920166,
+ "step": 880
+ },
+ {
+ "epoch": 12.237658366098733,
+ "grad_norm": 0.36835649609565735,
+ "learning_rate": 0.0006,
+ "loss": 4.229718208312988,
+ "step": 881
+ },
+ {
+ "epoch": 12.251638269986893,
+ "grad_norm": 0.4386984407901764,
+ "learning_rate": 0.0006,
+ "loss": 4.241188049316406,
+ "step": 882
+ },
+ {
+ "epoch": 12.265618173875055,
+ "grad_norm": 0.4442787170410156,
+ "learning_rate": 0.0006,
+ "loss": 4.239102840423584,
+ "step": 883
+ },
+ {
+ "epoch": 12.279598077763215,
+ "grad_norm": 0.324411541223526,
+ "learning_rate": 0.0006,
+ "loss": 4.198982238769531,
+ "step": 884
+ },
+ {
+ "epoch": 12.293577981651376,
+ "grad_norm": 0.2824151813983917,
+ "learning_rate": 0.0006,
+ "loss": 4.248816967010498,
+ "step": 885
+ },
+ {
+ "epoch": 12.307557885539538,
+ "grad_norm": 0.31407129764556885,
+ "learning_rate": 0.0006,
+ "loss": 4.2371320724487305,
+ "step": 886
+ },
+ {
+ "epoch": 12.321537789427698,
+ "grad_norm": 0.32920050621032715,
+ "learning_rate": 0.0006,
+ "loss": 4.210432052612305,
+ "step": 887
+ },
+ {
+ "epoch": 12.33551769331586,
+ "grad_norm": 0.315231055021286,
+ "learning_rate": 0.0006,
+ "loss": 4.219416618347168,
+ "step": 888
+ },
+ {
+ "epoch": 12.349497597204019,
+ "grad_norm": 0.30932050943374634,
+ "learning_rate": 0.0006,
+ "loss": 4.225022315979004,
+ "step": 889
+ },
+ {
+ "epoch": 12.36347750109218,
+ "grad_norm": 0.30242064595222473,
+ "learning_rate": 0.0006,
+ "loss": 4.2738518714904785,
+ "step": 890
+ },
+ {
+ "epoch": 12.37745740498034,
+ "grad_norm": 0.2926250994205475,
+ "learning_rate": 0.0006,
+ "loss": 4.231094837188721,
+ "step": 891
+ },
+ {
+ "epoch": 12.391437308868502,
+ "grad_norm": 0.2541215717792511,
+ "learning_rate": 0.0006,
+ "loss": 4.211821556091309,
+ "step": 892
+ },
+ {
+ "epoch": 12.405417212756662,
+ "grad_norm": 0.23693418502807617,
+ "learning_rate": 0.0006,
+ "loss": 4.208099365234375,
+ "step": 893
+ },
+ {
+ "epoch": 12.419397116644824,
+ "grad_norm": 0.22063226997852325,
+ "learning_rate": 0.0006,
+ "loss": 4.211234092712402,
+ "step": 894
+ },
+ {
+ "epoch": 12.433377020532983,
+ "grad_norm": 0.21536271274089813,
+ "learning_rate": 0.0006,
+ "loss": 4.199228286743164,
+ "step": 895
+ },
+ {
+ "epoch": 12.447356924421145,
+ "grad_norm": 0.243179589509964,
+ "learning_rate": 0.0006,
+ "loss": 4.204344749450684,
+ "step": 896
+ },
+ {
+ "epoch": 12.461336828309305,
+ "grad_norm": 0.2299746423959732,
+ "learning_rate": 0.0006,
+ "loss": 4.1565752029418945,
+ "step": 897
+ },
+ {
+ "epoch": 12.475316732197467,
+ "grad_norm": 0.2286847084760666,
+ "learning_rate": 0.0006,
+ "loss": 4.242953777313232,
+ "step": 898
+ },
+ {
+ "epoch": 12.489296636085626,
+ "grad_norm": 0.19463586807250977,
+ "learning_rate": 0.0006,
+ "loss": 4.214809417724609,
+ "step": 899
+ },
+ {
+ "epoch": 12.503276539973788,
+ "grad_norm": 0.1978398710489273,
+ "learning_rate": 0.0006,
+ "loss": 4.159815311431885,
+ "step": 900
+ },
+ {
+ "epoch": 12.517256443861948,
+ "grad_norm": 0.23177850246429443,
+ "learning_rate": 0.0006,
+ "loss": 4.2069902420043945,
+ "step": 901
+ },
+ {
+ "epoch": 12.53123634775011,
+ "grad_norm": 0.2408912032842636,
+ "learning_rate": 0.0006,
+ "loss": 4.206778526306152,
+ "step": 902
+ },
+ {
+ "epoch": 12.54521625163827,
+ "grad_norm": 0.21839919686317444,
+ "learning_rate": 0.0006,
+ "loss": 4.197076320648193,
+ "step": 903
+ },
+ {
+ "epoch": 12.55919615552643,
+ "grad_norm": 0.2053343504667282,
+ "learning_rate": 0.0006,
+ "loss": 4.21247673034668,
+ "step": 904
+ },
+ {
+ "epoch": 12.57317605941459,
+ "grad_norm": 0.19943439960479736,
+ "learning_rate": 0.0006,
+ "loss": 4.176966667175293,
+ "step": 905
+ },
+ {
+ "epoch": 12.587155963302752,
+ "grad_norm": 0.2012074887752533,
+ "learning_rate": 0.0006,
+ "loss": 4.210303783416748,
+ "step": 906
+ },
+ {
+ "epoch": 12.601135867190912,
+ "grad_norm": 0.22240376472473145,
+ "learning_rate": 0.0006,
+ "loss": 4.200625896453857,
+ "step": 907
+ },
+ {
+ "epoch": 12.615115771079074,
+ "grad_norm": 0.21729710698127747,
+ "learning_rate": 0.0006,
+ "loss": 4.2001953125,
+ "step": 908
+ },
+ {
+ "epoch": 12.629095674967235,
+ "grad_norm": 0.22470413148403168,
+ "learning_rate": 0.0006,
+ "loss": 4.197505950927734,
+ "step": 909
+ },
+ {
+ "epoch": 12.643075578855395,
+ "grad_norm": 0.23776157200336456,
+ "learning_rate": 0.0006,
+ "loss": 4.235603332519531,
+ "step": 910
+ },
+ {
+ "epoch": 12.657055482743557,
+ "grad_norm": 0.20616604387760162,
+ "learning_rate": 0.0006,
+ "loss": 4.193584442138672,
+ "step": 911
+ },
+ {
+ "epoch": 12.671035386631717,
+ "grad_norm": 0.1913922131061554,
+ "learning_rate": 0.0006,
+ "loss": 4.209191799163818,
+ "step": 912
+ },
+ {
+ "epoch": 12.685015290519878,
+ "grad_norm": 0.19427193701267242,
+ "learning_rate": 0.0006,
+ "loss": 4.219709396362305,
+ "step": 913
+ },
+ {
+ "epoch": 12.698995194408038,
+ "grad_norm": 0.20976558327674866,
+ "learning_rate": 0.0006,
+ "loss": 4.210859298706055,
+ "step": 914
+ },
+ {
+ "epoch": 12.7129750982962,
+ "grad_norm": 0.21571609377861023,
+ "learning_rate": 0.0006,
+ "loss": 4.189394950866699,
+ "step": 915
+ },
+ {
+ "epoch": 12.72695500218436,
+ "grad_norm": 0.2152620255947113,
+ "learning_rate": 0.0006,
+ "loss": 4.223589897155762,
+ "step": 916
+ },
+ {
+ "epoch": 12.740934906072521,
+ "grad_norm": 0.21867749094963074,
+ "learning_rate": 0.0006,
+ "loss": 4.198590278625488,
+ "step": 917
+ },
+ {
+ "epoch": 12.754914809960681,
+ "grad_norm": 0.22300855815410614,
+ "learning_rate": 0.0006,
+ "loss": 4.188891410827637,
+ "step": 918
+ },
+ {
+ "epoch": 12.768894713848843,
+ "grad_norm": 0.22197802364826202,
+ "learning_rate": 0.0006,
+ "loss": 4.190221309661865,
+ "step": 919
+ },
+ {
+ "epoch": 12.782874617737003,
+ "grad_norm": 0.20003341138362885,
+ "learning_rate": 0.0006,
+ "loss": 4.215453147888184,
+ "step": 920
+ },
+ {
+ "epoch": 12.796854521625164,
+ "grad_norm": 0.19887958467006683,
+ "learning_rate": 0.0006,
+ "loss": 4.18174934387207,
+ "step": 921
+ },
+ {
+ "epoch": 12.810834425513324,
+ "grad_norm": 0.20945803821086884,
+ "learning_rate": 0.0006,
+ "loss": 4.234947204589844,
+ "step": 922
+ },
+ {
+ "epoch": 12.824814329401486,
+ "grad_norm": 0.2253490388393402,
+ "learning_rate": 0.0006,
+ "loss": 4.2177228927612305,
+ "step": 923
+ },
+ {
+ "epoch": 12.838794233289645,
+ "grad_norm": 0.247610405087471,
+ "learning_rate": 0.0006,
+ "loss": 4.2013139724731445,
+ "step": 924
+ },
+ {
+ "epoch": 12.852774137177807,
+ "grad_norm": 0.2792088985443115,
+ "learning_rate": 0.0006,
+ "loss": 4.204774379730225,
+ "step": 925
+ },
+ {
+ "epoch": 12.866754041065967,
+ "grad_norm": 0.2839066982269287,
+ "learning_rate": 0.0006,
+ "loss": 4.186254978179932,
+ "step": 926
+ },
+ {
+ "epoch": 12.880733944954128,
+ "grad_norm": 0.2793181836605072,
+ "learning_rate": 0.0006,
+ "loss": 4.172411918640137,
+ "step": 927
+ },
+ {
+ "epoch": 12.89471384884229,
+ "grad_norm": 0.29506033658981323,
+ "learning_rate": 0.0006,
+ "loss": 4.202878475189209,
+ "step": 928
+ },
+ {
+ "epoch": 12.90869375273045,
+ "grad_norm": 0.2799845039844513,
+ "learning_rate": 0.0006,
+ "loss": 4.1563310623168945,
+ "step": 929
+ },
+ {
+ "epoch": 12.922673656618612,
+ "grad_norm": 0.23972125351428986,
+ "learning_rate": 0.0006,
+ "loss": 4.224601745605469,
+ "step": 930
+ },
+ {
+ "epoch": 12.936653560506771,
+ "grad_norm": 0.21558353304862976,
+ "learning_rate": 0.0006,
+ "loss": 4.167957305908203,
+ "step": 931
+ },
+ {
+ "epoch": 12.950633464394933,
+ "grad_norm": 0.21800188720226288,
+ "learning_rate": 0.0006,
+ "loss": 4.1746039390563965,
+ "step": 932
+ },
+ {
+ "epoch": 12.964613368283093,
+ "grad_norm": 0.2086547315120697,
+ "learning_rate": 0.0006,
+ "loss": 4.188137054443359,
+ "step": 933
+ },
+ {
+ "epoch": 12.978593272171254,
+ "grad_norm": 0.2174186110496521,
+ "learning_rate": 0.0006,
+ "loss": 4.184014320373535,
+ "step": 934
+ },
+ {
+ "epoch": 12.992573176059414,
+ "grad_norm": 0.22755110263824463,
+ "learning_rate": 0.0006,
+ "loss": 4.180912017822266,
+ "step": 935
+ },
+ {
+ "epoch": 13.0,
+ "grad_norm": 0.2735324203968048,
+ "learning_rate": 0.0006,
+ "loss": 4.201578617095947,
+ "step": 936
+ },
+ {
+ "epoch": 13.0,
+ "eval_loss": 4.396903038024902,
+ "eval_runtime": 44.5664,
+ "eval_samples_per_second": 54.795,
+ "eval_steps_per_second": 3.433,
+ "step": 936
+ },
+ {
+ "epoch": 13.013979903888162,
+ "grad_norm": 0.27577832341194153,
+ "learning_rate": 0.0006,
+ "loss": 4.149985313415527,
+ "step": 937
+ },
+ {
+ "epoch": 13.027959807776321,
+ "grad_norm": 0.25817009806632996,
+ "learning_rate": 0.0006,
+ "loss": 4.1526103019714355,
+ "step": 938
+ },
+ {
+ "epoch": 13.041939711664483,
+ "grad_norm": 0.24564379453659058,
+ "learning_rate": 0.0006,
+ "loss": 4.1661152839660645,
+ "step": 939
+ },
+ {
+ "epoch": 13.055919615552643,
+ "grad_norm": 0.2465466856956482,
+ "learning_rate": 0.0006,
+ "loss": 4.152953624725342,
+ "step": 940
+ },
+ {
+ "epoch": 13.069899519440805,
+ "grad_norm": 0.22702018916606903,
+ "learning_rate": 0.0006,
+ "loss": 4.145125389099121,
+ "step": 941
+ },
+ {
+ "epoch": 13.083879423328964,
+ "grad_norm": 0.24350613355636597,
+ "learning_rate": 0.0006,
+ "loss": 4.163095474243164,
+ "step": 942
+ },
+ {
+ "epoch": 13.097859327217126,
+ "grad_norm": 0.2504431903362274,
+ "learning_rate": 0.0006,
+ "loss": 4.136016845703125,
+ "step": 943
+ },
+ {
+ "epoch": 13.111839231105286,
+ "grad_norm": 0.24968865513801575,
+ "learning_rate": 0.0006,
+ "loss": 4.163487911224365,
+ "step": 944
+ },
+ {
+ "epoch": 13.125819134993447,
+ "grad_norm": 0.27164196968078613,
+ "learning_rate": 0.0006,
+ "loss": 4.1194353103637695,
+ "step": 945
+ },
+ {
+ "epoch": 13.139799038881607,
+ "grad_norm": 0.28127020597457886,
+ "learning_rate": 0.0006,
+ "loss": 4.184807300567627,
+ "step": 946
+ },
+ {
+ "epoch": 13.153778942769769,
+ "grad_norm": 0.24574966728687286,
+ "learning_rate": 0.0006,
+ "loss": 4.154998779296875,
+ "step": 947
+ },
+ {
+ "epoch": 13.167758846657929,
+ "grad_norm": 0.22310060262680054,
+ "learning_rate": 0.0006,
+ "loss": 4.182928085327148,
+ "step": 948
+ },
+ {
+ "epoch": 13.18173875054609,
+ "grad_norm": 0.2539508640766144,
+ "learning_rate": 0.0006,
+ "loss": 4.176900386810303,
+ "step": 949
+ },
+ {
+ "epoch": 13.19571865443425,
+ "grad_norm": 0.30925488471984863,
+ "learning_rate": 0.0006,
+ "loss": 4.1760711669921875,
+ "step": 950
+ },
+ {
+ "epoch": 13.209698558322412,
+ "grad_norm": 0.3842967450618744,
+ "learning_rate": 0.0006,
+ "loss": 4.1830949783325195,
+ "step": 951
+ },
+ {
+ "epoch": 13.223678462210572,
+ "grad_norm": 0.35950011014938354,
+ "learning_rate": 0.0006,
+ "loss": 4.131983757019043,
+ "step": 952
+ },
+ {
+ "epoch": 13.237658366098733,
+ "grad_norm": 0.29913705587387085,
+ "learning_rate": 0.0006,
+ "loss": 4.166984558105469,
+ "step": 953
+ },
+ {
+ "epoch": 13.251638269986893,
+ "grad_norm": 0.32008400559425354,
+ "learning_rate": 0.0006,
+ "loss": 4.156482696533203,
+ "step": 954
+ },
+ {
+ "epoch": 13.265618173875055,
+ "grad_norm": 0.3186642825603485,
+ "learning_rate": 0.0006,
+ "loss": 4.1661057472229,
+ "step": 955
+ },
+ {
+ "epoch": 13.279598077763215,
+ "grad_norm": 0.3194582462310791,
+ "learning_rate": 0.0006,
+ "loss": 4.169328689575195,
+ "step": 956
+ },
+ {
+ "epoch": 13.293577981651376,
+ "grad_norm": 0.3133867084980011,
+ "learning_rate": 0.0006,
+ "loss": 4.165459632873535,
+ "step": 957
+ },
+ {
+ "epoch": 13.307557885539538,
+ "grad_norm": 0.3232237696647644,
+ "learning_rate": 0.0006,
+ "loss": 4.2107439041137695,
+ "step": 958
+ },
+ {
+ "epoch": 13.321537789427698,
+ "grad_norm": 0.3133196234703064,
+ "learning_rate": 0.0006,
+ "loss": 4.184182167053223,
+ "step": 959
+ },
+ {
+ "epoch": 13.33551769331586,
+ "grad_norm": 0.296129435300827,
+ "learning_rate": 0.0006,
+ "loss": 4.168312072753906,
+ "step": 960
+ },
+ {
+ "epoch": 13.349497597204019,
+ "grad_norm": 0.2685348391532898,
+ "learning_rate": 0.0006,
+ "loss": 4.159984588623047,
+ "step": 961
+ },
+ {
+ "epoch": 13.36347750109218,
+ "grad_norm": 0.2644975781440735,
+ "learning_rate": 0.0006,
+ "loss": 4.164909362792969,
+ "step": 962
+ },
+ {
+ "epoch": 13.37745740498034,
+ "grad_norm": 0.2712913155555725,
+ "learning_rate": 0.0006,
+ "loss": 4.158056259155273,
+ "step": 963
+ },
+ {
+ "epoch": 13.391437308868502,
+ "grad_norm": 0.2687259316444397,
+ "learning_rate": 0.0006,
+ "loss": 4.182924270629883,
+ "step": 964
+ },
+ {
+ "epoch": 13.405417212756662,
+ "grad_norm": 0.25640392303466797,
+ "learning_rate": 0.0006,
+ "loss": 4.153351783752441,
+ "step": 965
+ },
+ {
+ "epoch": 13.419397116644824,
+ "grad_norm": 0.2646305561065674,
+ "learning_rate": 0.0006,
+ "loss": 4.18464469909668,
+ "step": 966
+ },
+ {
+ "epoch": 13.433377020532983,
+ "grad_norm": 0.24206851422786713,
+ "learning_rate": 0.0006,
+ "loss": 4.127564430236816,
+ "step": 967
+ },
+ {
+ "epoch": 13.447356924421145,
+ "grad_norm": 0.23800471425056458,
+ "learning_rate": 0.0006,
+ "loss": 4.163488388061523,
+ "step": 968
+ },
+ {
+ "epoch": 13.461336828309305,
+ "grad_norm": 0.22957314550876617,
+ "learning_rate": 0.0006,
+ "loss": 4.178133964538574,
+ "step": 969
+ },
+ {
+ "epoch": 13.475316732197467,
+ "grad_norm": 0.22867488861083984,
+ "learning_rate": 0.0006,
+ "loss": 4.159056186676025,
+ "step": 970
+ },
+ {
+ "epoch": 13.489296636085626,
+ "grad_norm": 0.21737419068813324,
+ "learning_rate": 0.0006,
+ "loss": 4.138628005981445,
+ "step": 971
+ },
+ {
+ "epoch": 13.503276539973788,
+ "grad_norm": 0.2319175899028778,
+ "learning_rate": 0.0006,
+ "loss": 4.14644718170166,
+ "step": 972
+ },
+ {
+ "epoch": 13.517256443861948,
+ "grad_norm": 0.2572193443775177,
+ "learning_rate": 0.0006,
+ "loss": 4.175213813781738,
+ "step": 973
+ },
+ {
+ "epoch": 13.53123634775011,
+ "grad_norm": 0.23483099043369293,
+ "learning_rate": 0.0006,
+ "loss": 4.133171558380127,
+ "step": 974
+ },
+ {
+ "epoch": 13.54521625163827,
+ "grad_norm": 0.2071552872657776,
+ "learning_rate": 0.0006,
+ "loss": 4.13730525970459,
+ "step": 975
+ },
+ {
+ "epoch": 13.55919615552643,
+ "grad_norm": 0.23074553906917572,
+ "learning_rate": 0.0006,
+ "loss": 4.175051689147949,
+ "step": 976
+ },
+ {
+ "epoch": 13.57317605941459,
+ "grad_norm": 0.2480078786611557,
+ "learning_rate": 0.0006,
+ "loss": 4.167630672454834,
+ "step": 977
+ },
+ {
+ "epoch": 13.587155963302752,
+ "grad_norm": 0.23444348573684692,
+ "learning_rate": 0.0006,
+ "loss": 4.141780853271484,
+ "step": 978
+ },
+ {
+ "epoch": 13.601135867190912,
+ "grad_norm": 0.2227829396724701,
+ "learning_rate": 0.0006,
+ "loss": 4.157566547393799,
+ "step": 979
+ },
+ {
+ "epoch": 13.615115771079074,
+ "grad_norm": 0.21478354930877686,
+ "learning_rate": 0.0006,
+ "loss": 4.131053447723389,
+ "step": 980
+ },
+ {
+ "epoch": 13.629095674967235,
+ "grad_norm": 0.1978664994239807,
+ "learning_rate": 0.0006,
+ "loss": 4.123660564422607,
+ "step": 981
+ },
+ {
+ "epoch": 13.643075578855395,
+ "grad_norm": 0.19980201125144958,
+ "learning_rate": 0.0006,
+ "loss": 4.174160480499268,
+ "step": 982
+ },
+ {
+ "epoch": 13.657055482743557,
+ "grad_norm": 0.19815555214881897,
+ "learning_rate": 0.0006,
+ "loss": 4.181703090667725,
+ "step": 983
+ },
+ {
+ "epoch": 13.671035386631717,
+ "grad_norm": 0.19524012506008148,
+ "learning_rate": 0.0006,
+ "loss": 4.163766860961914,
+ "step": 984
+ },
+ {
+ "epoch": 13.685015290519878,
+ "grad_norm": 0.2286096215248108,
+ "learning_rate": 0.0006,
+ "loss": 4.172213554382324,
+ "step": 985
+ },
+ {
+ "epoch": 13.698995194408038,
+ "grad_norm": 0.2210782766342163,
+ "learning_rate": 0.0006,
+ "loss": 4.187033653259277,
+ "step": 986
+ },
+ {
+ "epoch": 13.7129750982962,
+ "grad_norm": 0.21874216198921204,
+ "learning_rate": 0.0006,
+ "loss": 4.125125885009766,
+ "step": 987
+ },
+ {
+ "epoch": 13.72695500218436,
+ "grad_norm": 0.22848057746887207,
+ "learning_rate": 0.0006,
+ "loss": 4.153496742248535,
+ "step": 988
+ },
+ {
+ "epoch": 13.740934906072521,
+ "grad_norm": 0.2250450700521469,
+ "learning_rate": 0.0006,
+ "loss": 4.149165630340576,
+ "step": 989
+ },
+ {
+ "epoch": 13.754914809960681,
+ "grad_norm": 0.21443772315979004,
+ "learning_rate": 0.0006,
+ "loss": 4.1528825759887695,
+ "step": 990
+ },
+ {
+ "epoch": 13.768894713848843,
+ "grad_norm": 0.21927927434444427,
+ "learning_rate": 0.0006,
+ "loss": 4.146831512451172,
+ "step": 991
+ },
+ {
+ "epoch": 13.782874617737003,
+ "grad_norm": 0.2413124144077301,
+ "learning_rate": 0.0006,
+ "loss": 4.136909008026123,
+ "step": 992
+ },
+ {
+ "epoch": 13.796854521625164,
+ "grad_norm": 0.2603479325771332,
+ "learning_rate": 0.0006,
+ "loss": 4.12525749206543,
+ "step": 993
+ },
+ {
+ "epoch": 13.810834425513324,
+ "grad_norm": 0.26246970891952515,
+ "learning_rate": 0.0006,
+ "loss": 4.114049434661865,
+ "step": 994
+ },
+ {
+ "epoch": 13.824814329401486,
+ "grad_norm": 0.27031877636909485,
+ "learning_rate": 0.0006,
+ "loss": 4.1646552085876465,
+ "step": 995
+ },
+ {
+ "epoch": 13.838794233289645,
+ "grad_norm": 0.2499857395887375,
+ "learning_rate": 0.0006,
+ "loss": 4.139284133911133,
+ "step": 996
+ },
+ {
+ "epoch": 13.852774137177807,
+ "grad_norm": 0.22026537358760834,
+ "learning_rate": 0.0006,
+ "loss": 4.142191410064697,
+ "step": 997
+ },
+ {
+ "epoch": 13.866754041065967,
+ "grad_norm": 0.23738551139831543,
+ "learning_rate": 0.0006,
+ "loss": 4.1422882080078125,
+ "step": 998
+ },
+ {
+ "epoch": 13.880733944954128,
+ "grad_norm": 0.2416357398033142,
+ "learning_rate": 0.0006,
+ "loss": 4.14063835144043,
+ "step": 999
+ },
+ {
+ "epoch": 13.89471384884229,
+ "grad_norm": 0.33822184801101685,
+ "learning_rate": 0.0006,
+ "loss": 4.12839412689209,
+ "step": 1000
+ },
+ {
+ "epoch": 13.90869375273045,
+ "grad_norm": 0.3409678339958191,
+ "learning_rate": 0.0006,
+ "loss": 4.145351886749268,
+ "step": 1001
+ },
+ {
+ "epoch": 13.922673656618612,
+ "grad_norm": 0.2467597872018814,
+ "learning_rate": 0.0006,
+ "loss": 4.155339241027832,
+ "step": 1002
+ },
+ {
+ "epoch": 13.936653560506771,
+ "grad_norm": 0.2314649075269699,
+ "learning_rate": 0.0006,
+ "loss": 4.130176067352295,
+ "step": 1003
+ },
+ {
+ "epoch": 13.950633464394933,
+ "grad_norm": 0.23701290786266327,
+ "learning_rate": 0.0006,
+ "loss": 4.19205379486084,
+ "step": 1004
+ },
+ {
+ "epoch": 13.964613368283093,
+ "grad_norm": 0.2466491460800171,
+ "learning_rate": 0.0006,
+ "loss": 4.118908882141113,
+ "step": 1005
+ },
+ {
+ "epoch": 13.978593272171254,
+ "grad_norm": 0.23746836185455322,
+ "learning_rate": 0.0006,
+ "loss": 4.16111946105957,
+ "step": 1006
+ },
+ {
+ "epoch": 13.992573176059414,
+ "grad_norm": 0.24497751891613007,
+ "learning_rate": 0.0006,
+ "loss": 4.148624420166016,
+ "step": 1007
+ },
+ {
+ "epoch": 14.0,
+ "grad_norm": 0.25735899806022644,
+ "learning_rate": 0.0006,
+ "loss": 4.12002420425415,
+ "step": 1008
+ },
+ {
+ "epoch": 14.0,
+ "eval_loss": 4.335351467132568,
+ "eval_runtime": 44.0523,
+ "eval_samples_per_second": 55.434,
+ "eval_steps_per_second": 3.473,
+ "step": 1008
+ },
+ {
+ "epoch": 14.013979903888162,
+ "grad_norm": 0.24570082128047943,
+ "learning_rate": 0.0006,
+ "loss": 4.1036176681518555,
+ "step": 1009
+ },
+ {
+ "epoch": 14.027959807776321,
+ "grad_norm": 0.2525855302810669,
+ "learning_rate": 0.0006,
+ "loss": 4.142077445983887,
+ "step": 1010
+ },
+ {
+ "epoch": 14.041939711664483,
+ "grad_norm": 0.2701111435890198,
+ "learning_rate": 0.0006,
+ "loss": 4.096988677978516,
+ "step": 1011
+ },
+ {
+ "epoch": 14.055919615552643,
+ "grad_norm": 0.28173309564590454,
+ "learning_rate": 0.0006,
+ "loss": 4.148448944091797,
+ "step": 1012
+ },
+ {
+ "epoch": 14.069899519440805,
+ "grad_norm": 0.2651294469833374,
+ "learning_rate": 0.0006,
+ "loss": 4.121731281280518,
+ "step": 1013
+ },
+ {
+ "epoch": 14.083879423328964,
+ "grad_norm": 0.21160121262073517,
+ "learning_rate": 0.0006,
+ "loss": 4.108980178833008,
+ "step": 1014
+ },
+ {
+ "epoch": 14.097859327217126,
+ "grad_norm": 0.24786953628063202,
+ "learning_rate": 0.0006,
+ "loss": 4.133942604064941,
+ "step": 1015
+ },
+ {
+ "epoch": 14.111839231105286,
+ "grad_norm": 0.2722747027873993,
+ "learning_rate": 0.0006,
+ "loss": 4.115242958068848,
+ "step": 1016
+ },
+ {
+ "epoch": 14.125819134993447,
+ "grad_norm": 0.273360013961792,
+ "learning_rate": 0.0006,
+ "loss": 4.059296607971191,
+ "step": 1017
+ },
+ {
+ "epoch": 14.139799038881607,
+ "grad_norm": 0.2541784942150116,
+ "learning_rate": 0.0006,
+ "loss": 4.118365287780762,
+ "step": 1018
+ },
+ {
+ "epoch": 14.153778942769769,
+ "grad_norm": 0.23806381225585938,
+ "learning_rate": 0.0006,
+ "loss": 4.102812767028809,
+ "step": 1019
+ },
+ {
+ "epoch": 14.167758846657929,
+ "grad_norm": 0.2541005313396454,
+ "learning_rate": 0.0006,
+ "loss": 4.093264579772949,
+ "step": 1020
+ },
+ {
+ "epoch": 14.18173875054609,
+ "grad_norm": 0.2619539499282837,
+ "learning_rate": 0.0006,
+ "loss": 4.114917278289795,
+ "step": 1021
+ },
+ {
+ "epoch": 14.19571865443425,
+ "grad_norm": 0.2466963529586792,
+ "learning_rate": 0.0006,
+ "loss": 4.098258972167969,
+ "step": 1022
+ },
+ {
+ "epoch": 14.209698558322412,
+ "grad_norm": 0.24341611564159393,
+ "learning_rate": 0.0006,
+ "loss": 4.109346389770508,
+ "step": 1023
+ },
+ {
+ "epoch": 14.223678462210572,
+ "grad_norm": 0.23977765440940857,
+ "learning_rate": 0.0006,
+ "loss": 4.106716156005859,
+ "step": 1024
+ },
+ {
+ "epoch": 14.237658366098733,
+ "grad_norm": 0.253528356552124,
+ "learning_rate": 0.0006,
+ "loss": 4.102226257324219,
+ "step": 1025
+ },
+ {
+ "epoch": 14.251638269986893,
+ "grad_norm": 0.26954543590545654,
+ "learning_rate": 0.0006,
+ "loss": 4.107413291931152,
+ "step": 1026
+ },
+ {
+ "epoch": 14.265618173875055,
+ "grad_norm": 0.2610514760017395,
+ "learning_rate": 0.0006,
+ "loss": 4.110824108123779,
+ "step": 1027
+ },
+ {
+ "epoch": 14.279598077763215,
+ "grad_norm": 0.2579168677330017,
+ "learning_rate": 0.0006,
+ "loss": 4.082438945770264,
+ "step": 1028
+ },
+ {
+ "epoch": 14.293577981651376,
+ "grad_norm": 0.26916536688804626,
+ "learning_rate": 0.0006,
+ "loss": 4.075734615325928,
+ "step": 1029
+ },
+ {
+ "epoch": 14.307557885539538,
+ "grad_norm": 0.2998618185520172,
+ "learning_rate": 0.0006,
+ "loss": 4.088419437408447,
+ "step": 1030
+ },
+ {
+ "epoch": 14.321537789427698,
+ "grad_norm": 0.3162737190723419,
+ "learning_rate": 0.0006,
+ "loss": 4.125833034515381,
+ "step": 1031
+ },
+ {
+ "epoch": 14.33551769331586,
+ "grad_norm": 0.318601131439209,
+ "learning_rate": 0.0006,
+ "loss": 4.077424049377441,
+ "step": 1032
+ },
+ {
+ "epoch": 14.349497597204019,
+ "grad_norm": 0.32113415002822876,
+ "learning_rate": 0.0006,
+ "loss": 4.113360404968262,
+ "step": 1033
+ },
+ {
+ "epoch": 14.36347750109218,
+ "grad_norm": 0.3150886297225952,
+ "learning_rate": 0.0006,
+ "loss": 4.100013732910156,
+ "step": 1034
+ },
+ {
+ "epoch": 14.37745740498034,
+ "grad_norm": 0.29279956221580505,
+ "learning_rate": 0.0006,
+ "loss": 4.136394500732422,
+ "step": 1035
+ },
+ {
+ "epoch": 14.391437308868502,
+ "grad_norm": 0.28532543778419495,
+ "learning_rate": 0.0006,
+ "loss": 4.138948440551758,
+ "step": 1036
+ },
+ {
+ "epoch": 14.405417212756662,
+ "grad_norm": 0.2825978398323059,
+ "learning_rate": 0.0006,
+ "loss": 4.112217903137207,
+ "step": 1037
+ },
+ {
+ "epoch": 14.419397116644824,
+ "grad_norm": 0.2891198694705963,
+ "learning_rate": 0.0006,
+ "loss": 4.102682113647461,
+ "step": 1038
+ },
+ {
+ "epoch": 14.433377020532983,
+ "grad_norm": 0.2917391061782837,
+ "learning_rate": 0.0006,
+ "loss": 4.120752811431885,
+ "step": 1039
+ },
+ {
+ "epoch": 14.447356924421145,
+ "grad_norm": 0.2589806914329529,
+ "learning_rate": 0.0006,
+ "loss": 4.130519390106201,
+ "step": 1040
+ },
+ {
+ "epoch": 14.461336828309305,
+ "grad_norm": 0.2674788534641266,
+ "learning_rate": 0.0006,
+ "loss": 4.130382537841797,
+ "step": 1041
+ },
+ {
+ "epoch": 14.475316732197467,
+ "grad_norm": 0.2820362150669098,
+ "learning_rate": 0.0006,
+ "loss": 4.13947868347168,
+ "step": 1042
+ },
+ {
+ "epoch": 14.489296636085626,
+ "grad_norm": 0.2650109529495239,
+ "learning_rate": 0.0006,
+ "loss": 4.130346775054932,
+ "step": 1043
+ },
+ {
+ "epoch": 14.503276539973788,
+ "grad_norm": 0.29137638211250305,
+ "learning_rate": 0.0006,
+ "loss": 4.055751800537109,
+ "step": 1044
+ },
+ {
+ "epoch": 14.517256443861948,
+ "grad_norm": 0.3232433497905731,
+ "learning_rate": 0.0006,
+ "loss": 4.114810943603516,
+ "step": 1045
+ },
+ {
+ "epoch": 14.53123634775011,
+ "grad_norm": 0.2724473476409912,
+ "learning_rate": 0.0006,
+ "loss": 4.088351249694824,
+ "step": 1046
+ },
+ {
+ "epoch": 14.54521625163827,
+ "grad_norm": 0.23994430899620056,
+ "learning_rate": 0.0006,
+ "loss": 4.110936164855957,
+ "step": 1047
+ },
+ {
+ "epoch": 14.55919615552643,
+ "grad_norm": 0.2422720044851303,
+ "learning_rate": 0.0006,
+ "loss": 4.132844924926758,
+ "step": 1048
+ },
+ {
+ "epoch": 14.57317605941459,
+ "grad_norm": 0.21148815751075745,
+ "learning_rate": 0.0006,
+ "loss": 4.102499961853027,
+ "step": 1049
+ },
+ {
+ "epoch": 14.587155963302752,
+ "grad_norm": 0.22221639752388,
+ "learning_rate": 0.0006,
+ "loss": 4.126241683959961,
+ "step": 1050
+ },
+ {
+ "epoch": 14.601135867190912,
+ "grad_norm": 0.2538735866546631,
+ "learning_rate": 0.0006,
+ "loss": 4.116817951202393,
+ "step": 1051
+ },
+ {
+ "epoch": 14.615115771079074,
+ "grad_norm": 0.2555900514125824,
+ "learning_rate": 0.0006,
+ "loss": 4.106309413909912,
+ "step": 1052
+ },
+ {
+ "epoch": 14.629095674967235,
+ "grad_norm": 0.24753783643245697,
+ "learning_rate": 0.0006,
+ "loss": 4.1015119552612305,
+ "step": 1053
+ },
+ {
+ "epoch": 14.643075578855395,
+ "grad_norm": 0.238885298371315,
+ "learning_rate": 0.0006,
+ "loss": 4.120419502258301,
+ "step": 1054
+ },
+ {
+ "epoch": 14.657055482743557,
+ "grad_norm": 0.22693610191345215,
+ "learning_rate": 0.0006,
+ "loss": 4.084968566894531,
+ "step": 1055
+ },
+ {
+ "epoch": 14.671035386631717,
+ "grad_norm": 0.2100025862455368,
+ "learning_rate": 0.0006,
+ "loss": 4.108001708984375,
+ "step": 1056
+ },
+ {
+ "epoch": 14.685015290519878,
+ "grad_norm": 0.20437054336071014,
+ "learning_rate": 0.0006,
+ "loss": 4.151417255401611,
+ "step": 1057
+ },
+ {
+ "epoch": 14.698995194408038,
+ "grad_norm": 0.1926720291376114,
+ "learning_rate": 0.0006,
+ "loss": 4.091334342956543,
+ "step": 1058
+ },
+ {
+ "epoch": 14.7129750982962,
+ "grad_norm": 0.2120140641927719,
+ "learning_rate": 0.0006,
+ "loss": 4.111706256866455,
+ "step": 1059
+ },
+ {
+ "epoch": 14.72695500218436,
+ "grad_norm": 0.22877076268196106,
+ "learning_rate": 0.0006,
+ "loss": 4.123166084289551,
+ "step": 1060
+ },
+ {
+ "epoch": 14.740934906072521,
+ "grad_norm": 0.22149473428726196,
+ "learning_rate": 0.0006,
+ "loss": 4.099740028381348,
+ "step": 1061
+ },
+ {
+ "epoch": 14.754914809960681,
+ "grad_norm": 0.2351604402065277,
+ "learning_rate": 0.0006,
+ "loss": 4.066174507141113,
+ "step": 1062
+ },
+ {
+ "epoch": 14.768894713848843,
+ "grad_norm": 0.22895802557468414,
+ "learning_rate": 0.0006,
+ "loss": 4.101897239685059,
+ "step": 1063
+ },
+ {
+ "epoch": 14.782874617737003,
+ "grad_norm": 0.22050750255584717,
+ "learning_rate": 0.0006,
+ "loss": 4.122953414916992,
+ "step": 1064
+ },
+ {
+ "epoch": 14.796854521625164,
+ "grad_norm": 0.23255324363708496,
+ "learning_rate": 0.0006,
+ "loss": 4.11297607421875,
+ "step": 1065
+ },
+ {
+ "epoch": 14.810834425513324,
+ "grad_norm": 0.24522703886032104,
+ "learning_rate": 0.0006,
+ "loss": 4.131030082702637,
+ "step": 1066
+ },
+ {
+ "epoch": 14.824814329401486,
+ "grad_norm": 0.2492702752351761,
+ "learning_rate": 0.0006,
+ "loss": 4.076324939727783,
+ "step": 1067
+ },
+ {
+ "epoch": 14.838794233289645,
+ "grad_norm": 0.24410948157310486,
+ "learning_rate": 0.0006,
+ "loss": 4.109020709991455,
+ "step": 1068
+ },
+ {
+ "epoch": 14.852774137177807,
+ "grad_norm": 0.2463168203830719,
+ "learning_rate": 0.0006,
+ "loss": 4.135679244995117,
+ "step": 1069
+ },
+ {
+ "epoch": 14.866754041065967,
+ "grad_norm": 0.2563146650791168,
+ "learning_rate": 0.0006,
+ "loss": 4.0958027839660645,
+ "step": 1070
+ },
+ {
+ "epoch": 14.880733944954128,
+ "grad_norm": 0.261167049407959,
+ "learning_rate": 0.0006,
+ "loss": 4.114803314208984,
+ "step": 1071
+ },
+ {
+ "epoch": 14.89471384884229,
+ "grad_norm": 0.2593795955181122,
+ "learning_rate": 0.0006,
+ "loss": 4.1210618019104,
+ "step": 1072
+ },
+ {
+ "epoch": 14.90869375273045,
+ "grad_norm": 0.27184173464775085,
+ "learning_rate": 0.0006,
+ "loss": 4.095145225524902,
+ "step": 1073
+ },
+ {
+ "epoch": 14.922673656618612,
+ "grad_norm": 0.25289732217788696,
+ "learning_rate": 0.0006,
+ "loss": 4.107388973236084,
+ "step": 1074
+ },
+ {
+ "epoch": 14.936653560506771,
+ "grad_norm": 0.2176840454339981,
+ "learning_rate": 0.0006,
+ "loss": 4.105966567993164,
+ "step": 1075
+ },
+ {
+ "epoch": 14.950633464394933,
+ "grad_norm": 0.20930173993110657,
+ "learning_rate": 0.0006,
+ "loss": 4.126853942871094,
+ "step": 1076
+ },
+ {
+ "epoch": 14.964613368283093,
+ "grad_norm": 0.20850051939487457,
+ "learning_rate": 0.0006,
+ "loss": 4.074934959411621,
+ "step": 1077
+ },
+ {
+ "epoch": 14.978593272171254,
+ "grad_norm": 0.21987544000148773,
+ "learning_rate": 0.0006,
+ "loss": 4.123321533203125,
+ "step": 1078
+ },
+ {
+ "epoch": 14.992573176059414,
+ "grad_norm": 0.23821689188480377,
+ "learning_rate": 0.0006,
+ "loss": 4.082647323608398,
+ "step": 1079
+ },
+ {
+ "epoch": 15.0,
+ "grad_norm": 0.2590881288051605,
+ "learning_rate": 0.0006,
+ "loss": 4.113482475280762,
+ "step": 1080
+ },
+ {
+ "epoch": 15.0,
+ "eval_loss": 4.286936283111572,
+ "eval_runtime": 44.2665,
+ "eval_samples_per_second": 55.166,
+ "eval_steps_per_second": 3.456,
+ "step": 1080
+ },
+ {
+ "epoch": 15.013979903888162,
+ "grad_norm": 0.27885961532592773,
+ "learning_rate": 0.0006,
+ "loss": 4.0825958251953125,
+ "step": 1081
+ },
+ {
+ "epoch": 15.027959807776321,
+ "grad_norm": 0.2751246690750122,
+ "learning_rate": 0.0006,
+ "loss": 4.049782752990723,
+ "step": 1082
+ },
+ {
+ "epoch": 15.041939711664483,
+ "grad_norm": 0.25238561630249023,
+ "learning_rate": 0.0006,
+ "loss": 4.067366600036621,
+ "step": 1083
+ },
+ {
+ "epoch": 15.055919615552643,
+ "grad_norm": 0.27481040358543396,
+ "learning_rate": 0.0006,
+ "loss": 4.089946746826172,
+ "step": 1084
+ },
+ {
+ "epoch": 15.069899519440805,
+ "grad_norm": 0.2666703164577484,
+ "learning_rate": 0.0006,
+ "loss": 4.071957588195801,
+ "step": 1085
+ },
+ {
+ "epoch": 15.083879423328964,
+ "grad_norm": 0.2532065212726593,
+ "learning_rate": 0.0006,
+ "loss": 4.091561794281006,
+ "step": 1086
+ },
+ {
+ "epoch": 15.097859327217126,
+ "grad_norm": 0.23562374711036682,
+ "learning_rate": 0.0006,
+ "loss": 4.074953079223633,
+ "step": 1087
+ },
+ {
+ "epoch": 15.111839231105286,
+ "grad_norm": 0.2498065084218979,
+ "learning_rate": 0.0006,
+ "loss": 4.056004047393799,
+ "step": 1088
+ },
+ {
+ "epoch": 15.125819134993447,
+ "grad_norm": 0.257046639919281,
+ "learning_rate": 0.0006,
+ "loss": 4.044149875640869,
+ "step": 1089
+ },
+ {
+ "epoch": 15.139799038881607,
+ "grad_norm": 0.2417808622121811,
+ "learning_rate": 0.0006,
+ "loss": 4.071811676025391,
+ "step": 1090
+ },
+ {
+ "epoch": 15.153778942769769,
+ "grad_norm": 0.24742013216018677,
+ "learning_rate": 0.0006,
+ "loss": 4.081482887268066,
+ "step": 1091
+ },
+ {
+ "epoch": 15.167758846657929,
+ "grad_norm": 0.2610231637954712,
+ "learning_rate": 0.0006,
+ "loss": 4.06953763961792,
+ "step": 1092
+ },
+ {
+ "epoch": 15.18173875054609,
+ "grad_norm": 0.24688200652599335,
+ "learning_rate": 0.0006,
+ "loss": 4.079700469970703,
+ "step": 1093
+ },
+ {
+ "epoch": 15.19571865443425,
+ "grad_norm": 0.2650167942047119,
+ "learning_rate": 0.0006,
+ "loss": 4.082088947296143,
+ "step": 1094
+ },
+ {
+ "epoch": 15.209698558322412,
+ "grad_norm": 0.25913330912590027,
+ "learning_rate": 0.0006,
+ "loss": 4.081713676452637,
+ "step": 1095
+ },
+ {
+ "epoch": 15.223678462210572,
+ "grad_norm": 0.2547631561756134,
+ "learning_rate": 0.0006,
+ "loss": 4.073573112487793,
+ "step": 1096
+ },
+ {
+ "epoch": 15.237658366098733,
+ "grad_norm": 0.2732609510421753,
+ "learning_rate": 0.0006,
+ "loss": 4.10186767578125,
+ "step": 1097
+ },
+ {
+ "epoch": 15.251638269986893,
+ "grad_norm": 0.2990017533302307,
+ "learning_rate": 0.0006,
+ "loss": 4.085466384887695,
+ "step": 1098
+ },
+ {
+ "epoch": 15.265618173875055,
+ "grad_norm": 0.30252209305763245,
+ "learning_rate": 0.0006,
+ "loss": 4.077337265014648,
+ "step": 1099
+ },
+ {
+ "epoch": 15.279598077763215,
+ "grad_norm": 0.30046045780181885,
+ "learning_rate": 0.0006,
+ "loss": 4.0895891189575195,
+ "step": 1100
+ },
+ {
+ "epoch": 15.293577981651376,
+ "grad_norm": 0.2779843211174011,
+ "learning_rate": 0.0006,
+ "loss": 4.060354709625244,
+ "step": 1101
+ },
+ {
+ "epoch": 15.307557885539538,
+ "grad_norm": 0.26914986968040466,
+ "learning_rate": 0.0006,
+ "loss": 4.07314395904541,
+ "step": 1102
+ },
+ {
+ "epoch": 15.321537789427698,
+ "grad_norm": 0.24605873227119446,
+ "learning_rate": 0.0006,
+ "loss": 4.051377296447754,
+ "step": 1103
+ },
+ {
+ "epoch": 15.33551769331586,
+ "grad_norm": 0.25634095072746277,
+ "learning_rate": 0.0006,
+ "loss": 4.082427024841309,
+ "step": 1104
+ },
+ {
+ "epoch": 15.349497597204019,
+ "grad_norm": 0.2888158857822418,
+ "learning_rate": 0.0006,
+ "loss": 4.074253082275391,
+ "step": 1105
+ },
+ {
+ "epoch": 15.36347750109218,
+ "grad_norm": 0.2758261561393738,
+ "learning_rate": 0.0006,
+ "loss": 4.08344841003418,
+ "step": 1106
+ },
+ {
+ "epoch": 15.37745740498034,
+ "grad_norm": 0.26937270164489746,
+ "learning_rate": 0.0006,
+ "loss": 4.063424587249756,
+ "step": 1107
+ },
+ {
+ "epoch": 15.391437308868502,
+ "grad_norm": 0.2739955484867096,
+ "learning_rate": 0.0006,
+ "loss": 4.08005952835083,
+ "step": 1108
+ },
+ {
+ "epoch": 15.405417212756662,
+ "grad_norm": 0.2635386288166046,
+ "learning_rate": 0.0006,
+ "loss": 4.087360382080078,
+ "step": 1109
+ },
+ {
+ "epoch": 15.419397116644824,
+ "grad_norm": 0.2619768977165222,
+ "learning_rate": 0.0006,
+ "loss": 4.072653770446777,
+ "step": 1110
+ },
+ {
+ "epoch": 15.433377020532983,
+ "grad_norm": 0.24154804646968842,
+ "learning_rate": 0.0006,
+ "loss": 4.084464073181152,
+ "step": 1111
+ },
+ {
+ "epoch": 15.447356924421145,
+ "grad_norm": 0.24236027896404266,
+ "learning_rate": 0.0006,
+ "loss": 4.078777313232422,
+ "step": 1112
+ },
+ {
+ "epoch": 15.461336828309305,
+ "grad_norm": 0.24653038382530212,
+ "learning_rate": 0.0006,
+ "loss": 4.075024604797363,
+ "step": 1113
+ },
+ {
+ "epoch": 15.475316732197467,
+ "grad_norm": 0.27106523513793945,
+ "learning_rate": 0.0006,
+ "loss": 4.060937881469727,
+ "step": 1114
+ },
+ {
+ "epoch": 15.489296636085626,
+ "grad_norm": 0.25109633803367615,
+ "learning_rate": 0.0006,
+ "loss": 4.081971168518066,
+ "step": 1115
+ },
+ {
+ "epoch": 15.503276539973788,
+ "grad_norm": 0.23452287912368774,
+ "learning_rate": 0.0006,
+ "loss": 4.0762834548950195,
+ "step": 1116
+ },
+ {
+ "epoch": 15.517256443861948,
+ "grad_norm": 0.25415024161338806,
+ "learning_rate": 0.0006,
+ "loss": 4.069386959075928,
+ "step": 1117
+ },
+ {
+ "epoch": 15.53123634775011,
+ "grad_norm": 0.25448229908943176,
+ "learning_rate": 0.0006,
+ "loss": 4.075098514556885,
+ "step": 1118
+ },
+ {
+ "epoch": 15.54521625163827,
+ "grad_norm": 0.25679755210876465,
+ "learning_rate": 0.0006,
+ "loss": 4.097431182861328,
+ "step": 1119
+ },
+ {
+ "epoch": 15.55919615552643,
+ "grad_norm": 0.25973212718963623,
+ "learning_rate": 0.0006,
+ "loss": 4.058948516845703,
+ "step": 1120
+ },
+ {
+ "epoch": 15.57317605941459,
+ "grad_norm": 0.24511456489562988,
+ "learning_rate": 0.0006,
+ "loss": 4.092263698577881,
+ "step": 1121
+ },
+ {
+ "epoch": 15.587155963302752,
+ "grad_norm": 0.22949442267417908,
+ "learning_rate": 0.0006,
+ "loss": 4.0526604652404785,
+ "step": 1122
+ },
+ {
+ "epoch": 15.601135867190912,
+ "grad_norm": 0.22486285865306854,
+ "learning_rate": 0.0006,
+ "loss": 4.051939010620117,
+ "step": 1123
+ },
+ {
+ "epoch": 15.615115771079074,
+ "grad_norm": 0.22183601558208466,
+ "learning_rate": 0.0006,
+ "loss": 4.065430641174316,
+ "step": 1124
+ },
+ {
+ "epoch": 15.629095674967235,
+ "grad_norm": 0.2531328797340393,
+ "learning_rate": 0.0006,
+ "loss": 4.069165229797363,
+ "step": 1125
+ },
+ {
+ "epoch": 15.643075578855395,
+ "grad_norm": 0.24403320252895355,
+ "learning_rate": 0.0006,
+ "loss": 4.055041790008545,
+ "step": 1126
+ },
+ {
+ "epoch": 15.657055482743557,
+ "grad_norm": 0.24504756927490234,
+ "learning_rate": 0.0006,
+ "loss": 4.035850524902344,
+ "step": 1127
+ },
+ {
+ "epoch": 15.671035386631717,
+ "grad_norm": 0.23812057077884674,
+ "learning_rate": 0.0006,
+ "loss": 4.049278259277344,
+ "step": 1128
+ },
+ {
+ "epoch": 15.685015290519878,
+ "grad_norm": 0.23694153130054474,
+ "learning_rate": 0.0006,
+ "loss": 4.065816402435303,
+ "step": 1129
+ },
+ {
+ "epoch": 15.698995194408038,
+ "grad_norm": 0.23252786695957184,
+ "learning_rate": 0.0006,
+ "loss": 4.05952262878418,
+ "step": 1130
+ },
+ {
+ "epoch": 15.7129750982962,
+ "grad_norm": 0.2243805080652237,
+ "learning_rate": 0.0006,
+ "loss": 4.058291435241699,
+ "step": 1131
+ },
+ {
+ "epoch": 15.72695500218436,
+ "grad_norm": 0.2200988084077835,
+ "learning_rate": 0.0006,
+ "loss": 4.040788650512695,
+ "step": 1132
+ },
+ {
+ "epoch": 15.740934906072521,
+ "grad_norm": 0.21460631489753723,
+ "learning_rate": 0.0006,
+ "loss": 4.072552680969238,
+ "step": 1133
+ },
+ {
+ "epoch": 15.754914809960681,
+ "grad_norm": 0.2056441456079483,
+ "learning_rate": 0.0006,
+ "loss": 4.059467315673828,
+ "step": 1134
+ },
+ {
+ "epoch": 15.768894713848843,
+ "grad_norm": 0.2068045437335968,
+ "learning_rate": 0.0006,
+ "loss": 4.063803195953369,
+ "step": 1135
+ },
+ {
+ "epoch": 15.782874617737003,
+ "grad_norm": 0.21307601034641266,
+ "learning_rate": 0.0006,
+ "loss": 4.093092918395996,
+ "step": 1136
+ },
+ {
+ "epoch": 15.796854521625164,
+ "grad_norm": 0.20729634165763855,
+ "learning_rate": 0.0006,
+ "loss": 4.066030502319336,
+ "step": 1137
+ },
+ {
+ "epoch": 15.810834425513324,
+ "grad_norm": 0.2097514122724533,
+ "learning_rate": 0.0006,
+ "loss": 4.077326774597168,
+ "step": 1138
+ },
+ {
+ "epoch": 15.824814329401486,
+ "grad_norm": 0.21884000301361084,
+ "learning_rate": 0.0006,
+ "loss": 4.0595598220825195,
+ "step": 1139
+ },
+ {
+ "epoch": 15.838794233289645,
+ "grad_norm": 0.22220250964164734,
+ "learning_rate": 0.0006,
+ "loss": 4.061574459075928,
+ "step": 1140
+ },
+ {
+ "epoch": 15.852774137177807,
+ "grad_norm": 0.23189949989318848,
+ "learning_rate": 0.0006,
+ "loss": 4.0504045486450195,
+ "step": 1141
+ },
+ {
+ "epoch": 15.866754041065967,
+ "grad_norm": 0.226649671792984,
+ "learning_rate": 0.0006,
+ "loss": 4.060986518859863,
+ "step": 1142
+ },
+ {
+ "epoch": 15.880733944954128,
+ "grad_norm": 0.2456834763288498,
+ "learning_rate": 0.0006,
+ "loss": 4.038525581359863,
+ "step": 1143
+ },
+ {
+ "epoch": 15.89471384884229,
+ "grad_norm": 0.2818352282047272,
+ "learning_rate": 0.0006,
+ "loss": 4.062709331512451,
+ "step": 1144
+ },
+ {
+ "epoch": 15.90869375273045,
+ "grad_norm": 0.2850170135498047,
+ "learning_rate": 0.0006,
+ "loss": 4.0683274269104,
+ "step": 1145
+ },
+ {
+ "epoch": 15.922673656618612,
+ "grad_norm": 0.27691730856895447,
+ "learning_rate": 0.0006,
+ "loss": 4.076540470123291,
+ "step": 1146
+ },
+ {
+ "epoch": 15.936653560506771,
+ "grad_norm": 0.2685548961162567,
+ "learning_rate": 0.0006,
+ "loss": 4.048116683959961,
+ "step": 1147
+ },
+ {
+ "epoch": 15.950633464394933,
+ "grad_norm": 0.2452288419008255,
+ "learning_rate": 0.0006,
+ "loss": 4.06640625,
+ "step": 1148
+ },
+ {
+ "epoch": 15.964613368283093,
+ "grad_norm": 0.2601441740989685,
+ "learning_rate": 0.0006,
+ "loss": 4.073277473449707,
+ "step": 1149
+ },
+ {
+ "epoch": 15.978593272171254,
+ "grad_norm": 0.2748197913169861,
+ "learning_rate": 0.0006,
+ "loss": 4.0332536697387695,
+ "step": 1150
+ },
+ {
+ "epoch": 15.992573176059414,
+ "grad_norm": 0.27249959111213684,
+ "learning_rate": 0.0006,
+ "loss": 3.9952516555786133,
+ "step": 1151
+ },
+ {
+ "epoch": 16.0,
+ "grad_norm": 0.3475601375102997,
+ "learning_rate": 0.0006,
+ "loss": 4.040761947631836,
+ "step": 1152
+ },
+ {
+ "epoch": 16.0,
+ "eval_loss": 4.237997531890869,
+ "eval_runtime": 43.8692,
+ "eval_samples_per_second": 55.665,
+ "eval_steps_per_second": 3.488,
+ "step": 1152
+ },
+ {
+ "epoch": 16.01397990388816,
+ "grad_norm": 0.3365611433982849,
+ "learning_rate": 0.0006,
+ "loss": 4.031302452087402,
+ "step": 1153
+ },
+ {
+ "epoch": 16.027959807776323,
+ "grad_norm": 0.3020530641078949,
+ "learning_rate": 0.0006,
+ "loss": 4.036273956298828,
+ "step": 1154
+ },
+ {
+ "epoch": 16.041939711664483,
+ "grad_norm": 0.25277993083000183,
+ "learning_rate": 0.0006,
+ "loss": 4.007067680358887,
+ "step": 1155
+ },
+ {
+ "epoch": 16.055919615552643,
+ "grad_norm": 0.24762840569019318,
+ "learning_rate": 0.0006,
+ "loss": 4.046561241149902,
+ "step": 1156
+ },
+ {
+ "epoch": 16.069899519440803,
+ "grad_norm": 0.25236397981643677,
+ "learning_rate": 0.0006,
+ "loss": 4.061616897583008,
+ "step": 1157
+ },
+ {
+ "epoch": 16.083879423328966,
+ "grad_norm": 0.22789105772972107,
+ "learning_rate": 0.0006,
+ "loss": 4.010061740875244,
+ "step": 1158
+ },
+ {
+ "epoch": 16.097859327217126,
+ "grad_norm": 0.21866244077682495,
+ "learning_rate": 0.0006,
+ "loss": 4.0181097984313965,
+ "step": 1159
+ },
+ {
+ "epoch": 16.111839231105286,
+ "grad_norm": 0.21889029443264008,
+ "learning_rate": 0.0006,
+ "loss": 4.012239456176758,
+ "step": 1160
+ },
+ {
+ "epoch": 16.125819134993446,
+ "grad_norm": 0.23002485930919647,
+ "learning_rate": 0.0006,
+ "loss": 4.034092426300049,
+ "step": 1161
+ },
+ {
+ "epoch": 16.13979903888161,
+ "grad_norm": 0.2271798551082611,
+ "learning_rate": 0.0006,
+ "loss": 4.026222229003906,
+ "step": 1162
+ },
+ {
+ "epoch": 16.15377894276977,
+ "grad_norm": 0.238200843334198,
+ "learning_rate": 0.0006,
+ "loss": 4.044692039489746,
+ "step": 1163
+ },
+ {
+ "epoch": 16.16775884665793,
+ "grad_norm": 0.2281467169523239,
+ "learning_rate": 0.0006,
+ "loss": 4.032305717468262,
+ "step": 1164
+ },
+ {
+ "epoch": 16.18173875054609,
+ "grad_norm": 0.2213946431875229,
+ "learning_rate": 0.0006,
+ "loss": 4.048737525939941,
+ "step": 1165
+ },
+ {
+ "epoch": 16.195718654434252,
+ "grad_norm": 0.26638558506965637,
+ "learning_rate": 0.0006,
+ "loss": 4.006335258483887,
+ "step": 1166
+ },
+ {
+ "epoch": 16.209698558322412,
+ "grad_norm": 0.2780219316482544,
+ "learning_rate": 0.0006,
+ "loss": 4.049234390258789,
+ "step": 1167
+ },
+ {
+ "epoch": 16.22367846221057,
+ "grad_norm": 0.27425870299339294,
+ "learning_rate": 0.0006,
+ "loss": 4.017177104949951,
+ "step": 1168
+ },
+ {
+ "epoch": 16.23765836609873,
+ "grad_norm": 0.2596667408943176,
+ "learning_rate": 0.0006,
+ "loss": 4.022942543029785,
+ "step": 1169
+ },
+ {
+ "epoch": 16.251638269986895,
+ "grad_norm": 0.26972314715385437,
+ "learning_rate": 0.0006,
+ "loss": 4.035310745239258,
+ "step": 1170
+ },
+ {
+ "epoch": 16.265618173875055,
+ "grad_norm": 0.2677772045135498,
+ "learning_rate": 0.0006,
+ "loss": 4.0280561447143555,
+ "step": 1171
+ },
+ {
+ "epoch": 16.279598077763215,
+ "grad_norm": 0.25433358550071716,
+ "learning_rate": 0.0006,
+ "loss": 4.03616189956665,
+ "step": 1172
+ },
+ {
+ "epoch": 16.293577981651374,
+ "grad_norm": 0.2583644688129425,
+ "learning_rate": 0.0006,
+ "loss": 4.073624134063721,
+ "step": 1173
+ },
+ {
+ "epoch": 16.307557885539538,
+ "grad_norm": 0.25437524914741516,
+ "learning_rate": 0.0006,
+ "loss": 4.057926654815674,
+ "step": 1174
+ },
+ {
+ "epoch": 16.321537789427698,
+ "grad_norm": 0.2819201350212097,
+ "learning_rate": 0.0006,
+ "loss": 4.020838737487793,
+ "step": 1175
+ },
+ {
+ "epoch": 16.335517693315857,
+ "grad_norm": 0.32689282298088074,
+ "learning_rate": 0.0006,
+ "loss": 4.062448501586914,
+ "step": 1176
+ },
+ {
+ "epoch": 16.34949759720402,
+ "grad_norm": 0.33002278208732605,
+ "learning_rate": 0.0006,
+ "loss": 4.052059173583984,
+ "step": 1177
+ },
+ {
+ "epoch": 16.36347750109218,
+ "grad_norm": 0.32472696900367737,
+ "learning_rate": 0.0006,
+ "loss": 4.042375564575195,
+ "step": 1178
+ },
+ {
+ "epoch": 16.37745740498034,
+ "grad_norm": 0.35279813408851624,
+ "learning_rate": 0.0006,
+ "loss": 4.028722763061523,
+ "step": 1179
+ },
+ {
+ "epoch": 16.3914373088685,
+ "grad_norm": 0.3243204951286316,
+ "learning_rate": 0.0006,
+ "loss": 4.045693874359131,
+ "step": 1180
+ },
+ {
+ "epoch": 16.405417212756664,
+ "grad_norm": 0.32171115279197693,
+ "learning_rate": 0.0006,
+ "loss": 4.018350124359131,
+ "step": 1181
+ },
+ {
+ "epoch": 16.419397116644824,
+ "grad_norm": 0.31459906697273254,
+ "learning_rate": 0.0006,
+ "loss": 4.039547443389893,
+ "step": 1182
+ },
+ {
+ "epoch": 16.433377020532983,
+ "grad_norm": 0.35038673877716064,
+ "learning_rate": 0.0006,
+ "loss": 4.005928039550781,
+ "step": 1183
+ },
+ {
+ "epoch": 16.447356924421143,
+ "grad_norm": 0.34110963344573975,
+ "learning_rate": 0.0006,
+ "loss": 4.042272090911865,
+ "step": 1184
+ },
+ {
+ "epoch": 16.461336828309307,
+ "grad_norm": 0.33760902285575867,
+ "learning_rate": 0.0006,
+ "loss": 4.02886962890625,
+ "step": 1185
+ },
+ {
+ "epoch": 16.475316732197467,
+ "grad_norm": 0.3162464499473572,
+ "learning_rate": 0.0006,
+ "loss": 4.059924125671387,
+ "step": 1186
+ },
+ {
+ "epoch": 16.489296636085626,
+ "grad_norm": 0.2667233645915985,
+ "learning_rate": 0.0006,
+ "loss": 4.069073677062988,
+ "step": 1187
+ },
+ {
+ "epoch": 16.503276539973786,
+ "grad_norm": 0.22626568377017975,
+ "learning_rate": 0.0006,
+ "loss": 4.044912338256836,
+ "step": 1188
+ },
+ {
+ "epoch": 16.51725644386195,
+ "grad_norm": 0.203303262591362,
+ "learning_rate": 0.0006,
+ "loss": 4.025210380554199,
+ "step": 1189
+ },
+ {
+ "epoch": 16.53123634775011,
+ "grad_norm": 0.2108820080757141,
+ "learning_rate": 0.0006,
+ "loss": 4.035998821258545,
+ "step": 1190
+ },
+ {
+ "epoch": 16.54521625163827,
+ "grad_norm": 0.20451335608959198,
+ "learning_rate": 0.0006,
+ "loss": 4.043377876281738,
+ "step": 1191
+ },
+ {
+ "epoch": 16.55919615552643,
+ "grad_norm": 0.23348836600780487,
+ "learning_rate": 0.0006,
+ "loss": 4.033735275268555,
+ "step": 1192
+ },
+ {
+ "epoch": 16.573176059414592,
+ "grad_norm": 0.24438607692718506,
+ "learning_rate": 0.0006,
+ "loss": 4.071747779846191,
+ "step": 1193
+ },
+ {
+ "epoch": 16.587155963302752,
+ "grad_norm": 0.24233631789684296,
+ "learning_rate": 0.0006,
+ "loss": 4.0138702392578125,
+ "step": 1194
+ },
+ {
+ "epoch": 16.601135867190912,
+ "grad_norm": 0.21625740826129913,
+ "learning_rate": 0.0006,
+ "loss": 4.013422012329102,
+ "step": 1195
+ },
+ {
+ "epoch": 16.615115771079076,
+ "grad_norm": 0.22447720170021057,
+ "learning_rate": 0.0006,
+ "loss": 4.056326866149902,
+ "step": 1196
+ },
+ {
+ "epoch": 16.629095674967235,
+ "grad_norm": 0.21899616718292236,
+ "learning_rate": 0.0006,
+ "loss": 4.006134033203125,
+ "step": 1197
+ },
+ {
+ "epoch": 16.643075578855395,
+ "grad_norm": 0.191362664103508,
+ "learning_rate": 0.0006,
+ "loss": 4.036748886108398,
+ "step": 1198
+ },
+ {
+ "epoch": 16.657055482743555,
+ "grad_norm": 0.20203463733196259,
+ "learning_rate": 0.0006,
+ "loss": 4.006264686584473,
+ "step": 1199
+ },
+ {
+ "epoch": 16.67103538663172,
+ "grad_norm": 0.20209139585494995,
+ "learning_rate": 0.0006,
+ "loss": 4.059018135070801,
+ "step": 1200
+ },
+ {
+ "epoch": 16.68501529051988,
+ "grad_norm": 0.20811820030212402,
+ "learning_rate": 0.0006,
+ "loss": 4.054325103759766,
+ "step": 1201
+ },
+ {
+ "epoch": 16.698995194408038,
+ "grad_norm": 0.22448928654193878,
+ "learning_rate": 0.0006,
+ "loss": 3.996121406555176,
+ "step": 1202
+ },
+ {
+ "epoch": 16.712975098296198,
+ "grad_norm": 0.21692240238189697,
+ "learning_rate": 0.0006,
+ "loss": 4.042046546936035,
+ "step": 1203
+ },
+ {
+ "epoch": 16.72695500218436,
+ "grad_norm": 0.20688563585281372,
+ "learning_rate": 0.0006,
+ "loss": 4.002251625061035,
+ "step": 1204
+ },
+ {
+ "epoch": 16.74093490607252,
+ "grad_norm": 0.1835535764694214,
+ "learning_rate": 0.0006,
+ "loss": 4.02545166015625,
+ "step": 1205
+ },
+ {
+ "epoch": 16.75491480996068,
+ "grad_norm": 0.20532558858394623,
+ "learning_rate": 0.0006,
+ "loss": 4.039333343505859,
+ "step": 1206
+ },
+ {
+ "epoch": 16.76889471384884,
+ "grad_norm": 0.2214215099811554,
+ "learning_rate": 0.0006,
+ "loss": 4.037858486175537,
+ "step": 1207
+ },
+ {
+ "epoch": 16.782874617737004,
+ "grad_norm": 0.24926038086414337,
+ "learning_rate": 0.0006,
+ "loss": 4.024799346923828,
+ "step": 1208
+ },
+ {
+ "epoch": 16.796854521625164,
+ "grad_norm": 0.26057952642440796,
+ "learning_rate": 0.0006,
+ "loss": 4.042788505554199,
+ "step": 1209
+ },
+ {
+ "epoch": 16.810834425513324,
+ "grad_norm": 0.2501208782196045,
+ "learning_rate": 0.0006,
+ "loss": 4.051809310913086,
+ "step": 1210
+ },
+ {
+ "epoch": 16.824814329401484,
+ "grad_norm": 0.21760012209415436,
+ "learning_rate": 0.0006,
+ "loss": 4.063589096069336,
+ "step": 1211
+ },
+ {
+ "epoch": 16.838794233289647,
+ "grad_norm": 0.2243622988462448,
+ "learning_rate": 0.0006,
+ "loss": 4.008829593658447,
+ "step": 1212
+ },
+ {
+ "epoch": 16.852774137177807,
+ "grad_norm": 0.2399163395166397,
+ "learning_rate": 0.0006,
+ "loss": 4.013262748718262,
+ "step": 1213
+ },
+ {
+ "epoch": 16.866754041065967,
+ "grad_norm": 0.23187831044197083,
+ "learning_rate": 0.0006,
+ "loss": 4.023053169250488,
+ "step": 1214
+ },
+ {
+ "epoch": 16.88073394495413,
+ "grad_norm": 0.23723892867565155,
+ "learning_rate": 0.0006,
+ "loss": 3.991321563720703,
+ "step": 1215
+ },
+ {
+ "epoch": 16.89471384884229,
+ "grad_norm": 0.21766342222690582,
+ "learning_rate": 0.0006,
+ "loss": 4.0250773429870605,
+ "step": 1216
+ },
+ {
+ "epoch": 16.90869375273045,
+ "grad_norm": 0.20715023577213287,
+ "learning_rate": 0.0006,
+ "loss": 4.063642978668213,
+ "step": 1217
+ },
+ {
+ "epoch": 16.92267365661861,
+ "grad_norm": 0.20165133476257324,
+ "learning_rate": 0.0006,
+ "loss": 3.9951367378234863,
+ "step": 1218
+ },
+ {
+ "epoch": 16.936653560506773,
+ "grad_norm": 0.19956178963184357,
+ "learning_rate": 0.0006,
+ "loss": 4.025641441345215,
+ "step": 1219
+ },
+ {
+ "epoch": 16.950633464394933,
+ "grad_norm": 0.2175494134426117,
+ "learning_rate": 0.0006,
+ "loss": 4.030346393585205,
+ "step": 1220
+ },
+ {
+ "epoch": 16.964613368283093,
+ "grad_norm": 0.22365593910217285,
+ "learning_rate": 0.0006,
+ "loss": 4.018105506896973,
+ "step": 1221
+ },
+ {
+ "epoch": 16.978593272171253,
+ "grad_norm": 0.21251538395881653,
+ "learning_rate": 0.0006,
+ "loss": 4.023580074310303,
+ "step": 1222
+ },
+ {
+ "epoch": 16.992573176059416,
+ "grad_norm": 0.2230125218629837,
+ "learning_rate": 0.0006,
+ "loss": 4.001980304718018,
+ "step": 1223
+ },
+ {
+ "epoch": 17.0,
+ "grad_norm": 0.24261972308158875,
+ "learning_rate": 0.0006,
+ "loss": 4.081348896026611,
+ "step": 1224
+ },
+ {
+ "epoch": 17.0,
+ "eval_loss": 4.225194931030273,
+ "eval_runtime": 44.247,
+ "eval_samples_per_second": 55.19,
+ "eval_steps_per_second": 3.458,
+ "step": 1224
+ },
+ {
+ "epoch": 17.01397990388816,
+ "grad_norm": 0.2438880205154419,
+ "learning_rate": 0.0006,
+ "loss": 4.0164794921875,
+ "step": 1225
+ },
+ {
+ "epoch": 17.027959807776323,
+ "grad_norm": 0.22459383308887482,
+ "learning_rate": 0.0006,
+ "loss": 3.991623878479004,
+ "step": 1226
+ },
+ {
+ "epoch": 17.041939711664483,
+ "grad_norm": 0.25021040439605713,
+ "learning_rate": 0.0006,
+ "loss": 4.003020286560059,
+ "step": 1227
+ },
+ {
+ "epoch": 17.055919615552643,
+ "grad_norm": 0.30358025431632996,
+ "learning_rate": 0.0006,
+ "loss": 3.980921983718872,
+ "step": 1228
+ },
+ {
+ "epoch": 17.069899519440803,
+ "grad_norm": 0.27313271164894104,
+ "learning_rate": 0.0006,
+ "loss": 3.992398977279663,
+ "step": 1229
+ },
+ {
+ "epoch": 17.083879423328966,
+ "grad_norm": 0.2293211966753006,
+ "learning_rate": 0.0006,
+ "loss": 4.02568244934082,
+ "step": 1230
+ },
+ {
+ "epoch": 17.097859327217126,
+ "grad_norm": 0.2363300621509552,
+ "learning_rate": 0.0006,
+ "loss": 3.977229356765747,
+ "step": 1231
+ },
+ {
+ "epoch": 17.111839231105286,
+ "grad_norm": 0.2809674143791199,
+ "learning_rate": 0.0006,
+ "loss": 3.9720497131347656,
+ "step": 1232
+ },
+ {
+ "epoch": 17.125819134993446,
+ "grad_norm": 0.2913855016231537,
+ "learning_rate": 0.0006,
+ "loss": 3.979529857635498,
+ "step": 1233
+ },
+ {
+ "epoch": 17.13979903888161,
+ "grad_norm": 0.2920287251472473,
+ "learning_rate": 0.0006,
+ "loss": 3.9678473472595215,
+ "step": 1234
+ },
+ {
+ "epoch": 17.15377894276977,
+ "grad_norm": 0.2521543502807617,
+ "learning_rate": 0.0006,
+ "loss": 3.9912607669830322,
+ "step": 1235
+ },
+ {
+ "epoch": 17.16775884665793,
+ "grad_norm": 0.22844268381595612,
+ "learning_rate": 0.0006,
+ "loss": 3.9898228645324707,
+ "step": 1236
+ },
+ {
+ "epoch": 17.18173875054609,
+ "grad_norm": 0.2199884057044983,
+ "learning_rate": 0.0006,
+ "loss": 4.0050740242004395,
+ "step": 1237
+ },
+ {
+ "epoch": 17.195718654434252,
+ "grad_norm": 0.23072892427444458,
+ "learning_rate": 0.0006,
+ "loss": 3.9957475662231445,
+ "step": 1238
+ },
+ {
+ "epoch": 17.209698558322412,
+ "grad_norm": 0.2034899890422821,
+ "learning_rate": 0.0006,
+ "loss": 3.9672317504882812,
+ "step": 1239
+ },
+ {
+ "epoch": 17.22367846221057,
+ "grad_norm": 0.21826180815696716,
+ "learning_rate": 0.0006,
+ "loss": 3.98543119430542,
+ "step": 1240
+ },
+ {
+ "epoch": 17.23765836609873,
+ "grad_norm": 0.21203237771987915,
+ "learning_rate": 0.0006,
+ "loss": 3.9971959590911865,
+ "step": 1241
+ },
+ {
+ "epoch": 17.251638269986895,
+ "grad_norm": 0.22139234840869904,
+ "learning_rate": 0.0006,
+ "loss": 4.017539978027344,
+ "step": 1242
+ },
+ {
+ "epoch": 17.265618173875055,
+ "grad_norm": 0.21553276479244232,
+ "learning_rate": 0.0006,
+ "loss": 3.98740553855896,
+ "step": 1243
+ },
+ {
+ "epoch": 17.279598077763215,
+ "grad_norm": 0.23259080946445465,
+ "learning_rate": 0.0006,
+ "loss": 3.9963035583496094,
+ "step": 1244
+ },
+ {
+ "epoch": 17.293577981651374,
+ "grad_norm": 0.2527932822704315,
+ "learning_rate": 0.0006,
+ "loss": 4.0202956199646,
+ "step": 1245
+ },
+ {
+ "epoch": 17.307557885539538,
+ "grad_norm": 0.28669068217277527,
+ "learning_rate": 0.0006,
+ "loss": 3.9947609901428223,
+ "step": 1246
+ },
+ {
+ "epoch": 17.321537789427698,
+ "grad_norm": 0.341602623462677,
+ "learning_rate": 0.0006,
+ "loss": 3.997032642364502,
+ "step": 1247
+ },
+ {
+ "epoch": 17.335517693315857,
+ "grad_norm": 0.3364104926586151,
+ "learning_rate": 0.0006,
+ "loss": 3.9881834983825684,
+ "step": 1248
+ },
+ {
+ "epoch": 17.34949759720402,
+ "grad_norm": 0.2979278266429901,
+ "learning_rate": 0.0006,
+ "loss": 4.045898914337158,
+ "step": 1249
+ },
+ {
+ "epoch": 17.36347750109218,
+ "grad_norm": 0.2857462465763092,
+ "learning_rate": 0.0006,
+ "loss": 4.0085272789001465,
+ "step": 1250
+ },
+ {
+ "epoch": 17.37745740498034,
+ "grad_norm": 0.2689058780670166,
+ "learning_rate": 0.0006,
+ "loss": 4.021465301513672,
+ "step": 1251
+ },
+ {
+ "epoch": 17.3914373088685,
+ "grad_norm": 0.24943363666534424,
+ "learning_rate": 0.0006,
+ "loss": 4.003451347351074,
+ "step": 1252
+ },
+ {
+ "epoch": 17.405417212756664,
+ "grad_norm": 0.2635347843170166,
+ "learning_rate": 0.0006,
+ "loss": 3.9837827682495117,
+ "step": 1253
+ },
+ {
+ "epoch": 17.419397116644824,
+ "grad_norm": 0.29126450419425964,
+ "learning_rate": 0.0006,
+ "loss": 3.9857311248779297,
+ "step": 1254
+ },
+ {
+ "epoch": 17.433377020532983,
+ "grad_norm": 0.3166918456554413,
+ "learning_rate": 0.0006,
+ "loss": 3.9842967987060547,
+ "step": 1255
+ },
+ {
+ "epoch": 17.447356924421143,
+ "grad_norm": 0.27869969606399536,
+ "learning_rate": 0.0006,
+ "loss": 4.012607574462891,
+ "step": 1256
+ },
+ {
+ "epoch": 17.461336828309307,
+ "grad_norm": 0.23719419538974762,
+ "learning_rate": 0.0006,
+ "loss": 3.981034755706787,
+ "step": 1257
+ },
+ {
+ "epoch": 17.475316732197467,
+ "grad_norm": 0.22687610983848572,
+ "learning_rate": 0.0006,
+ "loss": 4.011059761047363,
+ "step": 1258
+ },
+ {
+ "epoch": 17.489296636085626,
+ "grad_norm": 0.22034095227718353,
+ "learning_rate": 0.0006,
+ "loss": 4.015044689178467,
+ "step": 1259
+ },
+ {
+ "epoch": 17.503276539973786,
+ "grad_norm": 0.21208405494689941,
+ "learning_rate": 0.0006,
+ "loss": 4.003793716430664,
+ "step": 1260
+ },
+ {
+ "epoch": 17.51725644386195,
+ "grad_norm": 0.21759214997291565,
+ "learning_rate": 0.0006,
+ "loss": 3.978652238845825,
+ "step": 1261
+ },
+ {
+ "epoch": 17.53123634775011,
+ "grad_norm": 0.22481068968772888,
+ "learning_rate": 0.0006,
+ "loss": 4.034845352172852,
+ "step": 1262
+ },
+ {
+ "epoch": 17.54521625163827,
+ "grad_norm": 0.20376387238502502,
+ "learning_rate": 0.0006,
+ "loss": 3.990541934967041,
+ "step": 1263
+ },
+ {
+ "epoch": 17.55919615552643,
+ "grad_norm": 0.20459355413913727,
+ "learning_rate": 0.0006,
+ "loss": 4.006990432739258,
+ "step": 1264
+ },
+ {
+ "epoch": 17.573176059414592,
+ "grad_norm": 0.19306913018226624,
+ "learning_rate": 0.0006,
+ "loss": 3.993408679962158,
+ "step": 1265
+ },
+ {
+ "epoch": 17.587155963302752,
+ "grad_norm": 0.20727239549160004,
+ "learning_rate": 0.0006,
+ "loss": 3.988016128540039,
+ "step": 1266
+ },
+ {
+ "epoch": 17.601135867190912,
+ "grad_norm": 0.20213133096694946,
+ "learning_rate": 0.0006,
+ "loss": 4.0120368003845215,
+ "step": 1267
+ },
+ {
+ "epoch": 17.615115771079076,
+ "grad_norm": 0.21074117720127106,
+ "learning_rate": 0.0006,
+ "loss": 4.048871040344238,
+ "step": 1268
+ },
+ {
+ "epoch": 17.629095674967235,
+ "grad_norm": 0.2074330598115921,
+ "learning_rate": 0.0006,
+ "loss": 3.997509002685547,
+ "step": 1269
+ },
+ {
+ "epoch": 17.643075578855395,
+ "grad_norm": 0.20383669435977936,
+ "learning_rate": 0.0006,
+ "loss": 4.0028839111328125,
+ "step": 1270
+ },
+ {
+ "epoch": 17.657055482743555,
+ "grad_norm": 0.2060765027999878,
+ "learning_rate": 0.0006,
+ "loss": 3.998032331466675,
+ "step": 1271
+ },
+ {
+ "epoch": 17.67103538663172,
+ "grad_norm": 0.21851404011249542,
+ "learning_rate": 0.0006,
+ "loss": 3.9928741455078125,
+ "step": 1272
+ },
+ {
+ "epoch": 17.68501529051988,
+ "grad_norm": 0.24324250221252441,
+ "learning_rate": 0.0006,
+ "loss": 3.9896507263183594,
+ "step": 1273
+ },
+ {
+ "epoch": 17.698995194408038,
+ "grad_norm": 0.25584331154823303,
+ "learning_rate": 0.0006,
+ "loss": 4.010485649108887,
+ "step": 1274
+ },
+ {
+ "epoch": 17.712975098296198,
+ "grad_norm": 0.2490610033273697,
+ "learning_rate": 0.0006,
+ "loss": 3.9906954765319824,
+ "step": 1275
+ },
+ {
+ "epoch": 17.72695500218436,
+ "grad_norm": 0.24241414666175842,
+ "learning_rate": 0.0006,
+ "loss": 4.016420364379883,
+ "step": 1276
+ },
+ {
+ "epoch": 17.74093490607252,
+ "grad_norm": 0.2222128063440323,
+ "learning_rate": 0.0006,
+ "loss": 4.009827136993408,
+ "step": 1277
+ },
+ {
+ "epoch": 17.75491480996068,
+ "grad_norm": 0.23119516670703888,
+ "learning_rate": 0.0006,
+ "loss": 4.0034589767456055,
+ "step": 1278
+ },
+ {
+ "epoch": 17.76889471384884,
+ "grad_norm": 0.24596457183361053,
+ "learning_rate": 0.0006,
+ "loss": 4.003161907196045,
+ "step": 1279
+ },
+ {
+ "epoch": 17.782874617737004,
+ "grad_norm": 0.2607562839984894,
+ "learning_rate": 0.0006,
+ "loss": 3.9894633293151855,
+ "step": 1280
+ },
+ {
+ "epoch": 17.796854521625164,
+ "grad_norm": 0.28706878423690796,
+ "learning_rate": 0.0006,
+ "loss": 4.005712985992432,
+ "step": 1281
+ },
+ {
+ "epoch": 17.810834425513324,
+ "grad_norm": 0.27178290486335754,
+ "learning_rate": 0.0006,
+ "loss": 3.9784536361694336,
+ "step": 1282
+ },
+ {
+ "epoch": 17.824814329401484,
+ "grad_norm": 0.27962708473205566,
+ "learning_rate": 0.0006,
+ "loss": 4.012705326080322,
+ "step": 1283
+ },
+ {
+ "epoch": 17.838794233289647,
+ "grad_norm": 0.29147693514823914,
+ "learning_rate": 0.0006,
+ "loss": 4.0159783363342285,
+ "step": 1284
+ },
+ {
+ "epoch": 17.852774137177807,
+ "grad_norm": 0.2841821312904358,
+ "learning_rate": 0.0006,
+ "loss": 4.011552810668945,
+ "step": 1285
+ },
+ {
+ "epoch": 17.866754041065967,
+ "grad_norm": 0.24924969673156738,
+ "learning_rate": 0.0006,
+ "loss": 3.992421865463257,
+ "step": 1286
+ },
+ {
+ "epoch": 17.88073394495413,
+ "grad_norm": 0.24850749969482422,
+ "learning_rate": 0.0006,
+ "loss": 3.974897861480713,
+ "step": 1287
+ },
+ {
+ "epoch": 17.89471384884229,
+ "grad_norm": 0.2409554123878479,
+ "learning_rate": 0.0006,
+ "loss": 4.002941131591797,
+ "step": 1288
+ },
+ {
+ "epoch": 17.90869375273045,
+ "grad_norm": 0.2656126320362091,
+ "learning_rate": 0.0006,
+ "loss": 3.9804210662841797,
+ "step": 1289
+ },
+ {
+ "epoch": 17.92267365661861,
+ "grad_norm": 0.28210243582725525,
+ "learning_rate": 0.0006,
+ "loss": 4.007192134857178,
+ "step": 1290
+ },
+ {
+ "epoch": 17.936653560506773,
+ "grad_norm": 0.28427553176879883,
+ "learning_rate": 0.0006,
+ "loss": 3.9739556312561035,
+ "step": 1291
+ },
+ {
+ "epoch": 17.950633464394933,
+ "grad_norm": 0.28893420100212097,
+ "learning_rate": 0.0006,
+ "loss": 4.004766941070557,
+ "step": 1292
+ },
+ {
+ "epoch": 17.964613368283093,
+ "grad_norm": 0.2831471562385559,
+ "learning_rate": 0.0006,
+ "loss": 3.984936237335205,
+ "step": 1293
+ },
+ {
+ "epoch": 17.978593272171253,
+ "grad_norm": 0.2518300712108612,
+ "learning_rate": 0.0006,
+ "loss": 4.002814292907715,
+ "step": 1294
+ },
+ {
+ "epoch": 17.992573176059416,
+ "grad_norm": 0.24264675378799438,
+ "learning_rate": 0.0006,
+ "loss": 3.998900890350342,
+ "step": 1295
+ },
+ {
+ "epoch": 18.0,
+ "grad_norm": 0.24474996328353882,
+ "learning_rate": 0.0006,
+ "loss": 3.974229335784912,
+ "step": 1296
+ },
+ {
+ "epoch": 18.0,
+ "eval_loss": 4.195685863494873,
+ "eval_runtime": 44.0709,
+ "eval_samples_per_second": 55.411,
+ "eval_steps_per_second": 3.472,
+ "step": 1296
+ },
+ {
+ "epoch": 18.01397990388816,
+ "grad_norm": 0.2553016245365143,
+ "learning_rate": 0.0006,
+ "loss": 3.9522247314453125,
+ "step": 1297
+ },
+ {
+ "epoch": 18.027959807776323,
+ "grad_norm": 0.22350727021694183,
+ "learning_rate": 0.0006,
+ "loss": 3.9850122928619385,
+ "step": 1298
+ },
+ {
+ "epoch": 18.041939711664483,
+ "grad_norm": 0.23935550451278687,
+ "learning_rate": 0.0006,
+ "loss": 3.9758832454681396,
+ "step": 1299
+ },
+ {
+ "epoch": 18.055919615552643,
+ "grad_norm": 0.23868797719478607,
+ "learning_rate": 0.0006,
+ "loss": 3.9567959308624268,
+ "step": 1300
+ },
+ {
+ "epoch": 18.069899519440803,
+ "grad_norm": 0.23102357983589172,
+ "learning_rate": 0.0006,
+ "loss": 3.9399867057800293,
+ "step": 1301
+ },
+ {
+ "epoch": 18.083879423328966,
+ "grad_norm": 0.23706983029842377,
+ "learning_rate": 0.0006,
+ "loss": 3.993434190750122,
+ "step": 1302
+ },
+ {
+ "epoch": 18.097859327217126,
+ "grad_norm": 0.22207573056221008,
+ "learning_rate": 0.0006,
+ "loss": 3.993436574935913,
+ "step": 1303
+ },
+ {
+ "epoch": 18.111839231105286,
+ "grad_norm": 0.23975296318531036,
+ "learning_rate": 0.0006,
+ "loss": 3.981943368911743,
+ "step": 1304
+ },
+ {
+ "epoch": 18.125819134993446,
+ "grad_norm": 0.2520582675933838,
+ "learning_rate": 0.0006,
+ "loss": 3.965493679046631,
+ "step": 1305
+ },
+ {
+ "epoch": 18.13979903888161,
+ "grad_norm": 0.2230956256389618,
+ "learning_rate": 0.0006,
+ "loss": 3.9360928535461426,
+ "step": 1306
+ },
+ {
+ "epoch": 18.15377894276977,
+ "grad_norm": 0.22527500987052917,
+ "learning_rate": 0.0006,
+ "loss": 3.9814581871032715,
+ "step": 1307
+ },
+ {
+ "epoch": 18.16775884665793,
+ "grad_norm": 0.22389626502990723,
+ "learning_rate": 0.0006,
+ "loss": 3.961590051651001,
+ "step": 1308
+ },
+ {
+ "epoch": 18.18173875054609,
+ "grad_norm": 0.22279471158981323,
+ "learning_rate": 0.0006,
+ "loss": 3.952338695526123,
+ "step": 1309
+ },
+ {
+ "epoch": 18.195718654434252,
+ "grad_norm": 0.24635115265846252,
+ "learning_rate": 0.0006,
+ "loss": 3.9693849086761475,
+ "step": 1310
+ },
+ {
+ "epoch": 18.209698558322412,
+ "grad_norm": 0.2757279872894287,
+ "learning_rate": 0.0006,
+ "loss": 3.9956700801849365,
+ "step": 1311
+ },
+ {
+ "epoch": 18.22367846221057,
+ "grad_norm": 0.2619115710258484,
+ "learning_rate": 0.0006,
+ "loss": 3.948878765106201,
+ "step": 1312
+ },
+ {
+ "epoch": 18.23765836609873,
+ "grad_norm": 0.22853828966617584,
+ "learning_rate": 0.0006,
+ "loss": 3.9545674324035645,
+ "step": 1313
+ },
+ {
+ "epoch": 18.251638269986895,
+ "grad_norm": 0.22904761135578156,
+ "learning_rate": 0.0006,
+ "loss": 3.947535991668701,
+ "step": 1314
+ },
+ {
+ "epoch": 18.265618173875055,
+ "grad_norm": 0.23592644929885864,
+ "learning_rate": 0.0006,
+ "loss": 3.971926212310791,
+ "step": 1315
+ },
+ {
+ "epoch": 18.279598077763215,
+ "grad_norm": 0.22120243310928345,
+ "learning_rate": 0.0006,
+ "loss": 3.9471049308776855,
+ "step": 1316
+ },
+ {
+ "epoch": 18.293577981651374,
+ "grad_norm": 0.20308749377727509,
+ "learning_rate": 0.0006,
+ "loss": 3.967449188232422,
+ "step": 1317
+ },
+ {
+ "epoch": 18.307557885539538,
+ "grad_norm": 0.20013529062271118,
+ "learning_rate": 0.0006,
+ "loss": 3.966151237487793,
+ "step": 1318
+ },
+ {
+ "epoch": 18.321537789427698,
+ "grad_norm": 0.20635221898555756,
+ "learning_rate": 0.0006,
+ "loss": 3.9908885955810547,
+ "step": 1319
+ },
+ {
+ "epoch": 18.335517693315857,
+ "grad_norm": 0.2232237160205841,
+ "learning_rate": 0.0006,
+ "loss": 3.9488768577575684,
+ "step": 1320
+ },
+ {
+ "epoch": 18.34949759720402,
+ "grad_norm": 0.21916444599628448,
+ "learning_rate": 0.0006,
+ "loss": 3.973428726196289,
+ "step": 1321
+ },
+ {
+ "epoch": 18.36347750109218,
+ "grad_norm": 0.20427337288856506,
+ "learning_rate": 0.0006,
+ "loss": 3.969332695007324,
+ "step": 1322
+ },
+ {
+ "epoch": 18.37745740498034,
+ "grad_norm": 0.20138131082057953,
+ "learning_rate": 0.0006,
+ "loss": 3.9651856422424316,
+ "step": 1323
+ },
+ {
+ "epoch": 18.3914373088685,
+ "grad_norm": 0.18918880820274353,
+ "learning_rate": 0.0006,
+ "loss": 3.9772281646728516,
+ "step": 1324
+ },
+ {
+ "epoch": 18.405417212756664,
+ "grad_norm": 0.1860039383172989,
+ "learning_rate": 0.0006,
+ "loss": 3.9289052486419678,
+ "step": 1325
+ },
+ {
+ "epoch": 18.419397116644824,
+ "grad_norm": 0.19541646540164948,
+ "learning_rate": 0.0006,
+ "loss": 3.9527673721313477,
+ "step": 1326
+ },
+ {
+ "epoch": 18.433377020532983,
+ "grad_norm": 0.206914022564888,
+ "learning_rate": 0.0006,
+ "loss": 3.99316143989563,
+ "step": 1327
+ },
+ {
+ "epoch": 18.447356924421143,
+ "grad_norm": 0.209097757935524,
+ "learning_rate": 0.0006,
+ "loss": 3.978130340576172,
+ "step": 1328
+ },
+ {
+ "epoch": 18.461336828309307,
+ "grad_norm": 0.22163373231887817,
+ "learning_rate": 0.0006,
+ "loss": 3.951460361480713,
+ "step": 1329
+ },
+ {
+ "epoch": 18.475316732197467,
+ "grad_norm": 0.21446120738983154,
+ "learning_rate": 0.0006,
+ "loss": 3.963571071624756,
+ "step": 1330
+ },
+ {
+ "epoch": 18.489296636085626,
+ "grad_norm": 0.2341388761997223,
+ "learning_rate": 0.0006,
+ "loss": 4.010684013366699,
+ "step": 1331
+ },
+ {
+ "epoch": 18.503276539973786,
+ "grad_norm": 0.2433937042951584,
+ "learning_rate": 0.0006,
+ "loss": 3.987537384033203,
+ "step": 1332
+ },
+ {
+ "epoch": 18.51725644386195,
+ "grad_norm": 0.24916228652000427,
+ "learning_rate": 0.0006,
+ "loss": 3.953075647354126,
+ "step": 1333
+ },
+ {
+ "epoch": 18.53123634775011,
+ "grad_norm": 0.24542421102523804,
+ "learning_rate": 0.0006,
+ "loss": 3.9510841369628906,
+ "step": 1334
+ },
+ {
+ "epoch": 18.54521625163827,
+ "grad_norm": 0.2393690049648285,
+ "learning_rate": 0.0006,
+ "loss": 3.981747627258301,
+ "step": 1335
+ },
+ {
+ "epoch": 18.55919615552643,
+ "grad_norm": 0.22806711494922638,
+ "learning_rate": 0.0006,
+ "loss": 3.9714856147766113,
+ "step": 1336
+ },
+ {
+ "epoch": 18.573176059414592,
+ "grad_norm": 0.21948303282260895,
+ "learning_rate": 0.0006,
+ "loss": 3.9429898262023926,
+ "step": 1337
+ },
+ {
+ "epoch": 18.587155963302752,
+ "grad_norm": 0.21575778722763062,
+ "learning_rate": 0.0006,
+ "loss": 3.9639933109283447,
+ "step": 1338
+ },
+ {
+ "epoch": 18.601135867190912,
+ "grad_norm": 0.23370565474033356,
+ "learning_rate": 0.0006,
+ "loss": 3.9819254875183105,
+ "step": 1339
+ },
+ {
+ "epoch": 18.615115771079076,
+ "grad_norm": 0.2613106369972229,
+ "learning_rate": 0.0006,
+ "loss": 3.9654669761657715,
+ "step": 1340
+ },
+ {
+ "epoch": 18.629095674967235,
+ "grad_norm": 0.26682716608047485,
+ "learning_rate": 0.0006,
+ "loss": 3.9832968711853027,
+ "step": 1341
+ },
+ {
+ "epoch": 18.643075578855395,
+ "grad_norm": 0.24331490695476532,
+ "learning_rate": 0.0006,
+ "loss": 3.9926600456237793,
+ "step": 1342
+ },
+ {
+ "epoch": 18.657055482743555,
+ "grad_norm": 0.2459341287612915,
+ "learning_rate": 0.0006,
+ "loss": 3.9508986473083496,
+ "step": 1343
+ },
+ {
+ "epoch": 18.67103538663172,
+ "grad_norm": 0.26395753026008606,
+ "learning_rate": 0.0006,
+ "loss": 3.961359977722168,
+ "step": 1344
+ },
+ {
+ "epoch": 18.68501529051988,
+ "grad_norm": 0.26049068570137024,
+ "learning_rate": 0.0006,
+ "loss": 3.9763245582580566,
+ "step": 1345
+ },
+ {
+ "epoch": 18.698995194408038,
+ "grad_norm": 0.24018602073192596,
+ "learning_rate": 0.0006,
+ "loss": 3.951780319213867,
+ "step": 1346
+ },
+ {
+ "epoch": 18.712975098296198,
+ "grad_norm": 0.23886290192604065,
+ "learning_rate": 0.0006,
+ "loss": 3.9883017539978027,
+ "step": 1347
+ },
+ {
+ "epoch": 18.72695500218436,
+ "grad_norm": 0.2293774038553238,
+ "learning_rate": 0.0006,
+ "loss": 3.9852685928344727,
+ "step": 1348
+ },
+ {
+ "epoch": 18.74093490607252,
+ "grad_norm": 0.22172975540161133,
+ "learning_rate": 0.0006,
+ "loss": 3.967550277709961,
+ "step": 1349
+ },
+ {
+ "epoch": 18.75491480996068,
+ "grad_norm": 0.2170475423336029,
+ "learning_rate": 0.0006,
+ "loss": 3.9570775032043457,
+ "step": 1350
+ },
+ {
+ "epoch": 18.76889471384884,
+ "grad_norm": 0.21458806097507477,
+ "learning_rate": 0.0006,
+ "loss": 3.9461212158203125,
+ "step": 1351
+ },
+ {
+ "epoch": 18.782874617737004,
+ "grad_norm": 0.21101507544517517,
+ "learning_rate": 0.0006,
+ "loss": 3.984398365020752,
+ "step": 1352
+ },
+ {
+ "epoch": 18.796854521625164,
+ "grad_norm": 0.23480583727359772,
+ "learning_rate": 0.0006,
+ "loss": 3.950312614440918,
+ "step": 1353
+ },
+ {
+ "epoch": 18.810834425513324,
+ "grad_norm": 0.24728581309318542,
+ "learning_rate": 0.0006,
+ "loss": 3.9572393894195557,
+ "step": 1354
+ },
+ {
+ "epoch": 18.824814329401484,
+ "grad_norm": 0.26063451170921326,
+ "learning_rate": 0.0006,
+ "loss": 3.9653234481811523,
+ "step": 1355
+ },
+ {
+ "epoch": 18.838794233289647,
+ "grad_norm": 0.24679961800575256,
+ "learning_rate": 0.0006,
+ "loss": 3.9560108184814453,
+ "step": 1356
+ },
+ {
+ "epoch": 18.852774137177807,
+ "grad_norm": 0.23199526965618134,
+ "learning_rate": 0.0006,
+ "loss": 3.9948246479034424,
+ "step": 1357
+ },
+ {
+ "epoch": 18.866754041065967,
+ "grad_norm": 0.22619125247001648,
+ "learning_rate": 0.0006,
+ "loss": 3.9783573150634766,
+ "step": 1358
+ },
+ {
+ "epoch": 18.88073394495413,
+ "grad_norm": 0.25499874353408813,
+ "learning_rate": 0.0006,
+ "loss": 3.9674575328826904,
+ "step": 1359
+ },
+ {
+ "epoch": 18.89471384884229,
+ "grad_norm": 0.23961037397384644,
+ "learning_rate": 0.0006,
+ "loss": 3.969209909439087,
+ "step": 1360
+ },
+ {
+ "epoch": 18.90869375273045,
+ "grad_norm": 0.21039162576198578,
+ "learning_rate": 0.0006,
+ "loss": 3.978661060333252,
+ "step": 1361
+ },
+ {
+ "epoch": 18.92267365661861,
+ "grad_norm": 0.2297026664018631,
+ "learning_rate": 0.0006,
+ "loss": 3.9483046531677246,
+ "step": 1362
+ },
+ {
+ "epoch": 18.936653560506773,
+ "grad_norm": 0.26367098093032837,
+ "learning_rate": 0.0006,
+ "loss": 3.927133560180664,
+ "step": 1363
+ },
+ {
+ "epoch": 18.950633464394933,
+ "grad_norm": 0.26893147826194763,
+ "learning_rate": 0.0006,
+ "loss": 3.957932710647583,
+ "step": 1364
+ },
+ {
+ "epoch": 18.964613368283093,
+ "grad_norm": 0.27092233300209045,
+ "learning_rate": 0.0006,
+ "loss": 3.976621150970459,
+ "step": 1365
+ },
+ {
+ "epoch": 18.978593272171253,
+ "grad_norm": 0.2672635018825531,
+ "learning_rate": 0.0006,
+ "loss": 3.9577765464782715,
+ "step": 1366
+ },
+ {
+ "epoch": 18.992573176059416,
+ "grad_norm": 0.2721385359764099,
+ "learning_rate": 0.0006,
+ "loss": 3.986100196838379,
+ "step": 1367
+ },
+ {
+ "epoch": 19.0,
+ "grad_norm": 0.27648621797561646,
+ "learning_rate": 0.0006,
+ "loss": 3.9942402839660645,
+ "step": 1368
+ },
+ {
+ "epoch": 19.0,
+ "eval_loss": 4.180216312408447,
+ "eval_runtime": 44.0079,
+ "eval_samples_per_second": 55.49,
+ "eval_steps_per_second": 3.477,
+ "step": 1368
+ },
+ {
+ "epoch": 19.01397990388816,
+ "grad_norm": 0.2563098073005676,
+ "learning_rate": 0.0006,
+ "loss": 3.9267354011535645,
+ "step": 1369
+ },
+ {
+ "epoch": 19.027959807776323,
+ "grad_norm": 0.2531425952911377,
+ "learning_rate": 0.0006,
+ "loss": 3.9273324012756348,
+ "step": 1370
+ },
+ {
+ "epoch": 19.041939711664483,
+ "grad_norm": 0.27485427260398865,
+ "learning_rate": 0.0006,
+ "loss": 3.9542183876037598,
+ "step": 1371
+ },
+ {
+ "epoch": 19.055919615552643,
+ "grad_norm": 0.27509891986846924,
+ "learning_rate": 0.0006,
+ "loss": 3.921940326690674,
+ "step": 1372
+ },
+ {
+ "epoch": 19.069899519440803,
+ "grad_norm": 0.28154096007347107,
+ "learning_rate": 0.0006,
+ "loss": 3.926743984222412,
+ "step": 1373
+ },
+ {
+ "epoch": 19.083879423328966,
+ "grad_norm": 0.2749912738800049,
+ "learning_rate": 0.0006,
+ "loss": 3.9257748126983643,
+ "step": 1374
+ },
+ {
+ "epoch": 19.097859327217126,
+ "grad_norm": 0.26168501377105713,
+ "learning_rate": 0.0006,
+ "loss": 3.9403202533721924,
+ "step": 1375
+ },
+ {
+ "epoch": 19.111839231105286,
+ "grad_norm": 0.23410023748874664,
+ "learning_rate": 0.0006,
+ "loss": 3.935378313064575,
+ "step": 1376
+ },
+ {
+ "epoch": 19.125819134993446,
+ "grad_norm": 0.25790470838546753,
+ "learning_rate": 0.0006,
+ "loss": 3.946147918701172,
+ "step": 1377
+ },
+ {
+ "epoch": 19.13979903888161,
+ "grad_norm": 0.26704177260398865,
+ "learning_rate": 0.0006,
+ "loss": 3.9511594772338867,
+ "step": 1378
+ },
+ {
+ "epoch": 19.15377894276977,
+ "grad_norm": 0.2560667097568512,
+ "learning_rate": 0.0006,
+ "loss": 3.915806531906128,
+ "step": 1379
+ },
+ {
+ "epoch": 19.16775884665793,
+ "grad_norm": 0.24684149026870728,
+ "learning_rate": 0.0006,
+ "loss": 3.9162003993988037,
+ "step": 1380
+ },
+ {
+ "epoch": 19.18173875054609,
+ "grad_norm": 0.2097567766904831,
+ "learning_rate": 0.0006,
+ "loss": 3.915739059448242,
+ "step": 1381
+ },
+ {
+ "epoch": 19.195718654434252,
+ "grad_norm": 0.21646849811077118,
+ "learning_rate": 0.0006,
+ "loss": 3.9097084999084473,
+ "step": 1382
+ },
+ {
+ "epoch": 19.209698558322412,
+ "grad_norm": 0.20626980066299438,
+ "learning_rate": 0.0006,
+ "loss": 3.9541783332824707,
+ "step": 1383
+ },
+ {
+ "epoch": 19.22367846221057,
+ "grad_norm": 0.23362718522548676,
+ "learning_rate": 0.0006,
+ "loss": 3.950096845626831,
+ "step": 1384
+ },
+ {
+ "epoch": 19.23765836609873,
+ "grad_norm": 0.25402209162712097,
+ "learning_rate": 0.0006,
+ "loss": 3.927671432495117,
+ "step": 1385
+ },
+ {
+ "epoch": 19.251638269986895,
+ "grad_norm": 0.23714083433151245,
+ "learning_rate": 0.0006,
+ "loss": 3.939765453338623,
+ "step": 1386
+ },
+ {
+ "epoch": 19.265618173875055,
+ "grad_norm": 0.20895546674728394,
+ "learning_rate": 0.0006,
+ "loss": 3.9384806156158447,
+ "step": 1387
+ },
+ {
+ "epoch": 19.279598077763215,
+ "grad_norm": 0.21374300122261047,
+ "learning_rate": 0.0006,
+ "loss": 3.9523749351501465,
+ "step": 1388
+ },
+ {
+ "epoch": 19.293577981651374,
+ "grad_norm": 0.210394486784935,
+ "learning_rate": 0.0006,
+ "loss": 3.9540798664093018,
+ "step": 1389
+ },
+ {
+ "epoch": 19.307557885539538,
+ "grad_norm": 0.20646725594997406,
+ "learning_rate": 0.0006,
+ "loss": 3.9514098167419434,
+ "step": 1390
+ },
+ {
+ "epoch": 19.321537789427698,
+ "grad_norm": 0.21477538347244263,
+ "learning_rate": 0.0006,
+ "loss": 3.9369924068450928,
+ "step": 1391
+ },
+ {
+ "epoch": 19.335517693315857,
+ "grad_norm": 0.20431505143642426,
+ "learning_rate": 0.0006,
+ "loss": 3.9389796257019043,
+ "step": 1392
+ },
+ {
+ "epoch": 19.34949759720402,
+ "grad_norm": 0.19575877487659454,
+ "learning_rate": 0.0006,
+ "loss": 3.935976028442383,
+ "step": 1393
+ },
+ {
+ "epoch": 19.36347750109218,
+ "grad_norm": 0.20720405876636505,
+ "learning_rate": 0.0006,
+ "loss": 3.9670963287353516,
+ "step": 1394
+ },
+ {
+ "epoch": 19.37745740498034,
+ "grad_norm": 0.2173967957496643,
+ "learning_rate": 0.0006,
+ "loss": 3.903940439224243,
+ "step": 1395
+ },
+ {
+ "epoch": 19.3914373088685,
+ "grad_norm": 0.2180529683828354,
+ "learning_rate": 0.0006,
+ "loss": 3.8716301918029785,
+ "step": 1396
+ },
+ {
+ "epoch": 19.405417212756664,
+ "grad_norm": 0.20666591823101044,
+ "learning_rate": 0.0006,
+ "loss": 3.930936813354492,
+ "step": 1397
+ },
+ {
+ "epoch": 19.419397116644824,
+ "grad_norm": 0.20353034138679504,
+ "learning_rate": 0.0006,
+ "loss": 3.926954746246338,
+ "step": 1398
+ },
+ {
+ "epoch": 19.433377020532983,
+ "grad_norm": 0.22333289682865143,
+ "learning_rate": 0.0006,
+ "loss": 3.947504997253418,
+ "step": 1399
+ },
+ {
+ "epoch": 19.447356924421143,
+ "grad_norm": 0.21787697076797485,
+ "learning_rate": 0.0006,
+ "loss": 3.9325344562530518,
+ "step": 1400
+ },
+ {
+ "epoch": 19.461336828309307,
+ "grad_norm": 0.22805874049663544,
+ "learning_rate": 0.0006,
+ "loss": 3.9640727043151855,
+ "step": 1401
+ },
+ {
+ "epoch": 19.475316732197467,
+ "grad_norm": 0.22396457195281982,
+ "learning_rate": 0.0006,
+ "loss": 3.9537901878356934,
+ "step": 1402
+ },
+ {
+ "epoch": 19.489296636085626,
+ "grad_norm": 0.2333047240972519,
+ "learning_rate": 0.0006,
+ "loss": 3.935609817504883,
+ "step": 1403
+ },
+ {
+ "epoch": 19.503276539973786,
+ "grad_norm": 0.25063616037368774,
+ "learning_rate": 0.0006,
+ "loss": 3.9659228324890137,
+ "step": 1404
+ },
+ {
+ "epoch": 19.51725644386195,
+ "grad_norm": 0.29074087738990784,
+ "learning_rate": 0.0006,
+ "loss": 3.9552183151245117,
+ "step": 1405
+ },
+ {
+ "epoch": 19.53123634775011,
+ "grad_norm": 0.34876152873039246,
+ "learning_rate": 0.0006,
+ "loss": 3.976163387298584,
+ "step": 1406
+ },
+ {
+ "epoch": 19.54521625163827,
+ "grad_norm": 0.35026612877845764,
+ "learning_rate": 0.0006,
+ "loss": 3.961186408996582,
+ "step": 1407
+ },
+ {
+ "epoch": 19.55919615552643,
+ "grad_norm": 0.3199564218521118,
+ "learning_rate": 0.0006,
+ "loss": 3.9366297721862793,
+ "step": 1408
+ },
+ {
+ "epoch": 19.573176059414592,
+ "grad_norm": 0.2976185977458954,
+ "learning_rate": 0.0006,
+ "loss": 3.9502010345458984,
+ "step": 1409
+ },
+ {
+ "epoch": 19.587155963302752,
+ "grad_norm": 0.2951911687850952,
+ "learning_rate": 0.0006,
+ "loss": 3.9427943229675293,
+ "step": 1410
+ },
+ {
+ "epoch": 19.601135867190912,
+ "grad_norm": 0.27918702363967896,
+ "learning_rate": 0.0006,
+ "loss": 3.963700532913208,
+ "step": 1411
+ },
+ {
+ "epoch": 19.615115771079076,
+ "grad_norm": 0.26197490096092224,
+ "learning_rate": 0.0006,
+ "loss": 3.9636964797973633,
+ "step": 1412
+ },
+ {
+ "epoch": 19.629095674967235,
+ "grad_norm": 0.24242281913757324,
+ "learning_rate": 0.0006,
+ "loss": 3.961815595626831,
+ "step": 1413
+ },
+ {
+ "epoch": 19.643075578855395,
+ "grad_norm": 0.2606375515460968,
+ "learning_rate": 0.0006,
+ "loss": 3.946643352508545,
+ "step": 1414
+ },
+ {
+ "epoch": 19.657055482743555,
+ "grad_norm": 0.23353353142738342,
+ "learning_rate": 0.0006,
+ "loss": 3.973155975341797,
+ "step": 1415
+ },
+ {
+ "epoch": 19.67103538663172,
+ "grad_norm": 0.22872662544250488,
+ "learning_rate": 0.0006,
+ "loss": 3.9528894424438477,
+ "step": 1416
+ },
+ {
+ "epoch": 19.68501529051988,
+ "grad_norm": 0.24678432941436768,
+ "learning_rate": 0.0006,
+ "loss": 3.9313249588012695,
+ "step": 1417
+ },
+ {
+ "epoch": 19.698995194408038,
+ "grad_norm": 0.23895515501499176,
+ "learning_rate": 0.0006,
+ "loss": 3.944082498550415,
+ "step": 1418
+ },
+ {
+ "epoch": 19.712975098296198,
+ "grad_norm": 0.23649105429649353,
+ "learning_rate": 0.0006,
+ "loss": 3.962069034576416,
+ "step": 1419
+ },
+ {
+ "epoch": 19.72695500218436,
+ "grad_norm": 0.22031061351299286,
+ "learning_rate": 0.0006,
+ "loss": 3.912972927093506,
+ "step": 1420
+ },
+ {
+ "epoch": 19.74093490607252,
+ "grad_norm": 0.20231695473194122,
+ "learning_rate": 0.0006,
+ "loss": 3.964531421661377,
+ "step": 1421
+ },
+ {
+ "epoch": 19.75491480996068,
+ "grad_norm": 0.19980913400650024,
+ "learning_rate": 0.0006,
+ "loss": 3.9452600479125977,
+ "step": 1422
+ },
+ {
+ "epoch": 19.76889471384884,
+ "grad_norm": 0.21768775582313538,
+ "learning_rate": 0.0006,
+ "loss": 3.9214301109313965,
+ "step": 1423
+ },
+ {
+ "epoch": 19.782874617737004,
+ "grad_norm": 0.21287119388580322,
+ "learning_rate": 0.0006,
+ "loss": 3.9416494369506836,
+ "step": 1424
+ },
+ {
+ "epoch": 19.796854521625164,
+ "grad_norm": 0.21399827301502228,
+ "learning_rate": 0.0006,
+ "loss": 3.971010208129883,
+ "step": 1425
+ },
+ {
+ "epoch": 19.810834425513324,
+ "grad_norm": 0.1957658976316452,
+ "learning_rate": 0.0006,
+ "loss": 3.936331272125244,
+ "step": 1426
+ },
+ {
+ "epoch": 19.824814329401484,
+ "grad_norm": 0.19341488182544708,
+ "learning_rate": 0.0006,
+ "loss": 3.9321448802948,
+ "step": 1427
+ },
+ {
+ "epoch": 19.838794233289647,
+ "grad_norm": 0.18405723571777344,
+ "learning_rate": 0.0006,
+ "loss": 3.939542293548584,
+ "step": 1428
+ },
+ {
+ "epoch": 19.852774137177807,
+ "grad_norm": 0.19672836363315582,
+ "learning_rate": 0.0006,
+ "loss": 3.939652919769287,
+ "step": 1429
+ },
+ {
+ "epoch": 19.866754041065967,
+ "grad_norm": 0.1998940259218216,
+ "learning_rate": 0.0006,
+ "loss": 3.932892322540283,
+ "step": 1430
+ },
+ {
+ "epoch": 19.88073394495413,
+ "grad_norm": 0.2307668924331665,
+ "learning_rate": 0.0006,
+ "loss": 3.9402761459350586,
+ "step": 1431
+ },
+ {
+ "epoch": 19.89471384884229,
+ "grad_norm": 0.2531987726688385,
+ "learning_rate": 0.0006,
+ "loss": 3.9153199195861816,
+ "step": 1432
+ },
+ {
+ "epoch": 19.90869375273045,
+ "grad_norm": 0.2299388349056244,
+ "learning_rate": 0.0006,
+ "loss": 3.9569954872131348,
+ "step": 1433
+ },
+ {
+ "epoch": 19.92267365661861,
+ "grad_norm": 0.2503527104854584,
+ "learning_rate": 0.0006,
+ "loss": 3.9469428062438965,
+ "step": 1434
+ },
+ {
+ "epoch": 19.936653560506773,
+ "grad_norm": 0.25390249490737915,
+ "learning_rate": 0.0006,
+ "loss": 3.941803455352783,
+ "step": 1435
+ },
+ {
+ "epoch": 19.950633464394933,
+ "grad_norm": 0.2288687825202942,
+ "learning_rate": 0.0006,
+ "loss": 3.9385883808135986,
+ "step": 1436
+ },
+ {
+ "epoch": 19.964613368283093,
+ "grad_norm": 0.2231096774339676,
+ "learning_rate": 0.0006,
+ "loss": 3.9255237579345703,
+ "step": 1437
+ },
+ {
+ "epoch": 19.978593272171253,
+ "grad_norm": 0.20729343593120575,
+ "learning_rate": 0.0006,
+ "loss": 3.9443163871765137,
+ "step": 1438
+ },
+ {
+ "epoch": 19.992573176059416,
+ "grad_norm": 0.197743758559227,
+ "learning_rate": 0.0006,
+ "loss": 3.925455093383789,
+ "step": 1439
+ },
+ {
+ "epoch": 20.0,
+ "grad_norm": 0.23943661153316498,
+ "learning_rate": 0.0006,
+ "loss": 3.9458866119384766,
+ "step": 1440
+ },
+ {
+ "epoch": 20.0,
+ "eval_loss": 4.144192218780518,
+ "eval_runtime": 44.0278,
+ "eval_samples_per_second": 55.465,
+ "eval_steps_per_second": 3.475,
+ "step": 1440
+ },
+ {
+ "epoch": 20.01397990388816,
+ "grad_norm": 0.2032143622636795,
+ "learning_rate": 0.0006,
+ "loss": 3.9151499271392822,
+ "step": 1441
+ },
+ {
+ "epoch": 20.027959807776323,
+ "grad_norm": 0.20164789259433746,
+ "learning_rate": 0.0006,
+ "loss": 3.874115228652954,
+ "step": 1442
+ },
+ {
+ "epoch": 20.041939711664483,
+ "grad_norm": 0.20796619355678558,
+ "learning_rate": 0.0006,
+ "loss": 3.9090776443481445,
+ "step": 1443
+ },
+ {
+ "epoch": 20.055919615552643,
+ "grad_norm": 0.1999918520450592,
+ "learning_rate": 0.0006,
+ "loss": 3.926563262939453,
+ "step": 1444
+ },
+ {
+ "epoch": 20.069899519440803,
+ "grad_norm": 0.204790860414505,
+ "learning_rate": 0.0006,
+ "loss": 3.9088830947875977,
+ "step": 1445
+ },
+ {
+ "epoch": 20.083879423328966,
+ "grad_norm": 0.21507175266742706,
+ "learning_rate": 0.0006,
+ "loss": 3.916504383087158,
+ "step": 1446
+ },
+ {
+ "epoch": 20.097859327217126,
+ "grad_norm": 0.2398025095462799,
+ "learning_rate": 0.0006,
+ "loss": 3.9128990173339844,
+ "step": 1447
+ },
+ {
+ "epoch": 20.111839231105286,
+ "grad_norm": 0.26037144660949707,
+ "learning_rate": 0.0006,
+ "loss": 3.9125187397003174,
+ "step": 1448
+ },
+ {
+ "epoch": 20.125819134993446,
+ "grad_norm": 0.25564828515052795,
+ "learning_rate": 0.0006,
+ "loss": 3.891867160797119,
+ "step": 1449
+ },
+ {
+ "epoch": 20.13979903888161,
+ "grad_norm": 0.2767223119735718,
+ "learning_rate": 0.0006,
+ "loss": 3.9202775955200195,
+ "step": 1450
+ },
+ {
+ "epoch": 20.15377894276977,
+ "grad_norm": 0.27696558833122253,
+ "learning_rate": 0.0006,
+ "loss": 3.9231314659118652,
+ "step": 1451
+ },
+ {
+ "epoch": 20.16775884665793,
+ "grad_norm": 0.3054044246673584,
+ "learning_rate": 0.0006,
+ "loss": 3.918138027191162,
+ "step": 1452
+ },
+ {
+ "epoch": 20.18173875054609,
+ "grad_norm": 0.3018973171710968,
+ "learning_rate": 0.0006,
+ "loss": 3.890678882598877,
+ "step": 1453
+ },
+ {
+ "epoch": 20.195718654434252,
+ "grad_norm": 0.306232750415802,
+ "learning_rate": 0.0006,
+ "loss": 3.920753002166748,
+ "step": 1454
+ },
+ {
+ "epoch": 20.209698558322412,
+ "grad_norm": 0.29593729972839355,
+ "learning_rate": 0.0006,
+ "loss": 3.9455509185791016,
+ "step": 1455
+ },
+ {
+ "epoch": 20.22367846221057,
+ "grad_norm": 0.2937646210193634,
+ "learning_rate": 0.0006,
+ "loss": 3.9227709770202637,
+ "step": 1456
+ },
+ {
+ "epoch": 20.23765836609873,
+ "grad_norm": 0.26380231976509094,
+ "learning_rate": 0.0006,
+ "loss": 3.9097609519958496,
+ "step": 1457
+ },
+ {
+ "epoch": 20.251638269986895,
+ "grad_norm": 0.24992692470550537,
+ "learning_rate": 0.0006,
+ "loss": 3.9393627643585205,
+ "step": 1458
+ },
+ {
+ "epoch": 20.265618173875055,
+ "grad_norm": 0.270219087600708,
+ "learning_rate": 0.0006,
+ "loss": 3.929330348968506,
+ "step": 1459
+ },
+ {
+ "epoch": 20.279598077763215,
+ "grad_norm": 0.2860020399093628,
+ "learning_rate": 0.0006,
+ "loss": 3.8947913646698,
+ "step": 1460
+ },
+ {
+ "epoch": 20.293577981651374,
+ "grad_norm": 0.27494579553604126,
+ "learning_rate": 0.0006,
+ "loss": 3.9105992317199707,
+ "step": 1461
+ },
+ {
+ "epoch": 20.307557885539538,
+ "grad_norm": 0.26467713713645935,
+ "learning_rate": 0.0006,
+ "loss": 3.914632797241211,
+ "step": 1462
+ },
+ {
+ "epoch": 20.321537789427698,
+ "grad_norm": 0.25747713446617126,
+ "learning_rate": 0.0006,
+ "loss": 3.919846534729004,
+ "step": 1463
+ },
+ {
+ "epoch": 20.335517693315857,
+ "grad_norm": 0.24027711153030396,
+ "learning_rate": 0.0006,
+ "loss": 3.904740810394287,
+ "step": 1464
+ },
+ {
+ "epoch": 20.34949759720402,
+ "grad_norm": 0.24682414531707764,
+ "learning_rate": 0.0006,
+ "loss": 3.9190149307250977,
+ "step": 1465
+ },
+ {
+ "epoch": 20.36347750109218,
+ "grad_norm": 0.2619759440422058,
+ "learning_rate": 0.0006,
+ "loss": 3.9488329887390137,
+ "step": 1466
+ },
+ {
+ "epoch": 20.37745740498034,
+ "grad_norm": 0.2632448971271515,
+ "learning_rate": 0.0006,
+ "loss": 3.9216647148132324,
+ "step": 1467
+ },
+ {
+ "epoch": 20.3914373088685,
+ "grad_norm": 0.27569764852523804,
+ "learning_rate": 0.0006,
+ "loss": 3.9178895950317383,
+ "step": 1468
+ },
+ {
+ "epoch": 20.405417212756664,
+ "grad_norm": 0.2611774802207947,
+ "learning_rate": 0.0006,
+ "loss": 3.933730125427246,
+ "step": 1469
+ },
+ {
+ "epoch": 20.419397116644824,
+ "grad_norm": 0.2839447557926178,
+ "learning_rate": 0.0006,
+ "loss": 3.9261364936828613,
+ "step": 1470
+ },
+ {
+ "epoch": 20.433377020532983,
+ "grad_norm": 0.29006227850914,
+ "learning_rate": 0.0006,
+ "loss": 3.9157633781433105,
+ "step": 1471
+ },
+ {
+ "epoch": 20.447356924421143,
+ "grad_norm": 0.2809498906135559,
+ "learning_rate": 0.0006,
+ "loss": 3.9211745262145996,
+ "step": 1472
+ },
+ {
+ "epoch": 20.461336828309307,
+ "grad_norm": 0.27859532833099365,
+ "learning_rate": 0.0006,
+ "loss": 3.9115967750549316,
+ "step": 1473
+ },
+ {
+ "epoch": 20.475316732197467,
+ "grad_norm": 0.29114410281181335,
+ "learning_rate": 0.0006,
+ "loss": 3.9024441242218018,
+ "step": 1474
+ },
+ {
+ "epoch": 20.489296636085626,
+ "grad_norm": 0.2686930000782013,
+ "learning_rate": 0.0006,
+ "loss": 3.9497199058532715,
+ "step": 1475
+ },
+ {
+ "epoch": 20.503276539973786,
+ "grad_norm": 0.24120540916919708,
+ "learning_rate": 0.0006,
+ "loss": 3.9218955039978027,
+ "step": 1476
+ },
+ {
+ "epoch": 20.51725644386195,
+ "grad_norm": 0.23689547181129456,
+ "learning_rate": 0.0006,
+ "loss": 3.9410176277160645,
+ "step": 1477
+ },
+ {
+ "epoch": 20.53123634775011,
+ "grad_norm": 0.26382362842559814,
+ "learning_rate": 0.0006,
+ "loss": 3.8880343437194824,
+ "step": 1478
+ },
+ {
+ "epoch": 20.54521625163827,
+ "grad_norm": 0.21628661453723907,
+ "learning_rate": 0.0006,
+ "loss": 3.892622470855713,
+ "step": 1479
+ },
+ {
+ "epoch": 20.55919615552643,
+ "grad_norm": 0.19896996021270752,
+ "learning_rate": 0.0006,
+ "loss": 3.938734769821167,
+ "step": 1480
+ },
+ {
+ "epoch": 20.573176059414592,
+ "grad_norm": 0.20232494175434113,
+ "learning_rate": 0.0006,
+ "loss": 3.9197006225585938,
+ "step": 1481
+ },
+ {
+ "epoch": 20.587155963302752,
+ "grad_norm": 0.21807828545570374,
+ "learning_rate": 0.0006,
+ "loss": 3.9195618629455566,
+ "step": 1482
+ },
+ {
+ "epoch": 20.601135867190912,
+ "grad_norm": 0.21778680384159088,
+ "learning_rate": 0.0006,
+ "loss": 3.913395404815674,
+ "step": 1483
+ },
+ {
+ "epoch": 20.615115771079076,
+ "grad_norm": 0.21015185117721558,
+ "learning_rate": 0.0006,
+ "loss": 3.8858234882354736,
+ "step": 1484
+ },
+ {
+ "epoch": 20.629095674967235,
+ "grad_norm": 0.20131368935108185,
+ "learning_rate": 0.0006,
+ "loss": 3.927213430404663,
+ "step": 1485
+ },
+ {
+ "epoch": 20.643075578855395,
+ "grad_norm": 0.20746243000030518,
+ "learning_rate": 0.0006,
+ "loss": 3.913198471069336,
+ "step": 1486
+ },
+ {
+ "epoch": 20.657055482743555,
+ "grad_norm": 0.2024548053741455,
+ "learning_rate": 0.0006,
+ "loss": 3.923048257827759,
+ "step": 1487
+ },
+ {
+ "epoch": 20.67103538663172,
+ "grad_norm": 0.19735988974571228,
+ "learning_rate": 0.0006,
+ "loss": 3.9136500358581543,
+ "step": 1488
+ },
+ {
+ "epoch": 20.68501529051988,
+ "grad_norm": 0.19781625270843506,
+ "learning_rate": 0.0006,
+ "loss": 3.883793592453003,
+ "step": 1489
+ },
+ {
+ "epoch": 20.698995194408038,
+ "grad_norm": 0.1911996454000473,
+ "learning_rate": 0.0006,
+ "loss": 3.9078567028045654,
+ "step": 1490
+ },
+ {
+ "epoch": 20.712975098296198,
+ "grad_norm": 0.1989123821258545,
+ "learning_rate": 0.0006,
+ "loss": 3.9314043521881104,
+ "step": 1491
+ },
+ {
+ "epoch": 20.72695500218436,
+ "grad_norm": 0.18839342892169952,
+ "learning_rate": 0.0006,
+ "loss": 3.8955953121185303,
+ "step": 1492
+ },
+ {
+ "epoch": 20.74093490607252,
+ "grad_norm": 0.1944834142923355,
+ "learning_rate": 0.0006,
+ "loss": 3.9272377490997314,
+ "step": 1493
+ },
+ {
+ "epoch": 20.75491480996068,
+ "grad_norm": 0.20829126238822937,
+ "learning_rate": 0.0006,
+ "loss": 3.878857374191284,
+ "step": 1494
+ },
+ {
+ "epoch": 20.76889471384884,
+ "grad_norm": 0.21438424289226532,
+ "learning_rate": 0.0006,
+ "loss": 3.9155564308166504,
+ "step": 1495
+ },
+ {
+ "epoch": 20.782874617737004,
+ "grad_norm": 0.22309324145317078,
+ "learning_rate": 0.0006,
+ "loss": 3.9281692504882812,
+ "step": 1496
+ },
+ {
+ "epoch": 20.796854521625164,
+ "grad_norm": 0.2053767591714859,
+ "learning_rate": 0.0006,
+ "loss": 3.9096317291259766,
+ "step": 1497
+ },
+ {
+ "epoch": 20.810834425513324,
+ "grad_norm": 0.20429186522960663,
+ "learning_rate": 0.0006,
+ "loss": 3.9184865951538086,
+ "step": 1498
+ },
+ {
+ "epoch": 20.824814329401484,
+ "grad_norm": 0.21983473002910614,
+ "learning_rate": 0.0006,
+ "loss": 3.9130771160125732,
+ "step": 1499
+ },
+ {
+ "epoch": 20.838794233289647,
+ "grad_norm": 0.21649539470672607,
+ "learning_rate": 0.0006,
+ "loss": 3.921581268310547,
+ "step": 1500
+ },
+ {
+ "epoch": 20.852774137177807,
+ "grad_norm": 0.19645053148269653,
+ "learning_rate": 0.0006,
+ "loss": 3.966360092163086,
+ "step": 1501
+ },
+ {
+ "epoch": 20.866754041065967,
+ "grad_norm": 0.2126782387495041,
+ "learning_rate": 0.0006,
+ "loss": 3.9004554748535156,
+ "step": 1502
+ },
+ {
+ "epoch": 20.88073394495413,
+ "grad_norm": 0.22359658777713776,
+ "learning_rate": 0.0006,
+ "loss": 3.92336368560791,
+ "step": 1503
+ },
+ {
+ "epoch": 20.89471384884229,
+ "grad_norm": 0.2334042638540268,
+ "learning_rate": 0.0006,
+ "loss": 3.9188671112060547,
+ "step": 1504
+ },
+ {
+ "epoch": 20.90869375273045,
+ "grad_norm": 0.24595916271209717,
+ "learning_rate": 0.0006,
+ "loss": 3.9348371028900146,
+ "step": 1505
+ },
+ {
+ "epoch": 20.92267365661861,
+ "grad_norm": 0.24177910387516022,
+ "learning_rate": 0.0006,
+ "loss": 3.8796424865722656,
+ "step": 1506
+ },
+ {
+ "epoch": 20.936653560506773,
+ "grad_norm": 0.24193289875984192,
+ "learning_rate": 0.0006,
+ "loss": 3.892627716064453,
+ "step": 1507
+ },
+ {
+ "epoch": 20.950633464394933,
+ "grad_norm": 0.252849280834198,
+ "learning_rate": 0.0006,
+ "loss": 3.9300179481506348,
+ "step": 1508
+ },
+ {
+ "epoch": 20.964613368283093,
+ "grad_norm": 0.24933326244354248,
+ "learning_rate": 0.0006,
+ "loss": 3.9597225189208984,
+ "step": 1509
+ },
+ {
+ "epoch": 20.978593272171253,
+ "grad_norm": 0.23850969970226288,
+ "learning_rate": 0.0006,
+ "loss": 3.9027397632598877,
+ "step": 1510
+ },
+ {
+ "epoch": 20.992573176059416,
+ "grad_norm": 0.23298311233520508,
+ "learning_rate": 0.0006,
+ "loss": 3.9024105072021484,
+ "step": 1511
+ },
+ {
+ "epoch": 21.0,
+ "grad_norm": 0.2467455416917801,
+ "learning_rate": 0.0006,
+ "loss": 3.915929079055786,
+ "step": 1512
+ },
+ {
+ "epoch": 21.0,
+ "eval_loss": 4.136331081390381,
+ "eval_runtime": 43.9468,
+ "eval_samples_per_second": 55.567,
+ "eval_steps_per_second": 3.481,
+ "step": 1512
+ },
+ {
+ "epoch": 21.01397990388816,
+ "grad_norm": 0.2195885181427002,
+ "learning_rate": 0.0006,
+ "loss": 3.873412847518921,
+ "step": 1513
+ },
+ {
+ "epoch": 21.027959807776323,
+ "grad_norm": 0.24250614643096924,
+ "learning_rate": 0.0006,
+ "loss": 3.882302761077881,
+ "step": 1514
+ },
+ {
+ "epoch": 21.041939711664483,
+ "grad_norm": 0.249113991856575,
+ "learning_rate": 0.0006,
+ "loss": 3.9112048149108887,
+ "step": 1515
+ },
+ {
+ "epoch": 21.055919615552643,
+ "grad_norm": 0.25365301966667175,
+ "learning_rate": 0.0006,
+ "loss": 3.8625712394714355,
+ "step": 1516
+ },
+ {
+ "epoch": 21.069899519440803,
+ "grad_norm": 0.2218591272830963,
+ "learning_rate": 0.0006,
+ "loss": 3.876072406768799,
+ "step": 1517
+ },
+ {
+ "epoch": 21.083879423328966,
+ "grad_norm": 0.238582581281662,
+ "learning_rate": 0.0006,
+ "loss": 3.862060546875,
+ "step": 1518
+ },
+ {
+ "epoch": 21.097859327217126,
+ "grad_norm": 0.25051242113113403,
+ "learning_rate": 0.0006,
+ "loss": 3.905315399169922,
+ "step": 1519
+ },
+ {
+ "epoch": 21.111839231105286,
+ "grad_norm": 0.2391843944787979,
+ "learning_rate": 0.0006,
+ "loss": 3.909144401550293,
+ "step": 1520
+ },
+ {
+ "epoch": 21.125819134993446,
+ "grad_norm": 0.230543315410614,
+ "learning_rate": 0.0006,
+ "loss": 3.8856799602508545,
+ "step": 1521
+ },
+ {
+ "epoch": 21.13979903888161,
+ "grad_norm": 0.24165484309196472,
+ "learning_rate": 0.0006,
+ "loss": 3.893883228302002,
+ "step": 1522
+ },
+ {
+ "epoch": 21.15377894276977,
+ "grad_norm": 0.24657143652439117,
+ "learning_rate": 0.0006,
+ "loss": 3.901129722595215,
+ "step": 1523
+ },
+ {
+ "epoch": 21.16775884665793,
+ "grad_norm": 0.2659998834133148,
+ "learning_rate": 0.0006,
+ "loss": 3.910468101501465,
+ "step": 1524
+ },
+ {
+ "epoch": 21.18173875054609,
+ "grad_norm": 0.2673095166683197,
+ "learning_rate": 0.0006,
+ "loss": 3.917454242706299,
+ "step": 1525
+ },
+ {
+ "epoch": 21.195718654434252,
+ "grad_norm": 0.22122322022914886,
+ "learning_rate": 0.0006,
+ "loss": 3.9017257690429688,
+ "step": 1526
+ },
+ {
+ "epoch": 21.209698558322412,
+ "grad_norm": 0.21882867813110352,
+ "learning_rate": 0.0006,
+ "loss": 3.8605496883392334,
+ "step": 1527
+ },
+ {
+ "epoch": 21.22367846221057,
+ "grad_norm": 0.22335563600063324,
+ "learning_rate": 0.0006,
+ "loss": 3.88120174407959,
+ "step": 1528
+ },
+ {
+ "epoch": 21.23765836609873,
+ "grad_norm": 0.22973211109638214,
+ "learning_rate": 0.0006,
+ "loss": 3.8636834621429443,
+ "step": 1529
+ },
+ {
+ "epoch": 21.251638269986895,
+ "grad_norm": 0.2410288006067276,
+ "learning_rate": 0.0006,
+ "loss": 3.8698177337646484,
+ "step": 1530
+ },
+ {
+ "epoch": 21.265618173875055,
+ "grad_norm": 0.2454768717288971,
+ "learning_rate": 0.0006,
+ "loss": 3.905341148376465,
+ "step": 1531
+ },
+ {
+ "epoch": 21.279598077763215,
+ "grad_norm": 0.2271580696105957,
+ "learning_rate": 0.0006,
+ "loss": 3.864063262939453,
+ "step": 1532
+ },
+ {
+ "epoch": 21.293577981651374,
+ "grad_norm": 0.2200947403907776,
+ "learning_rate": 0.0006,
+ "loss": 3.8889589309692383,
+ "step": 1533
+ },
+ {
+ "epoch": 21.307557885539538,
+ "grad_norm": 0.2180824875831604,
+ "learning_rate": 0.0006,
+ "loss": 3.8873472213745117,
+ "step": 1534
+ },
+ {
+ "epoch": 21.321537789427698,
+ "grad_norm": 0.214975506067276,
+ "learning_rate": 0.0006,
+ "loss": 3.882307529449463,
+ "step": 1535
+ },
+ {
+ "epoch": 21.335517693315857,
+ "grad_norm": 0.21411260962486267,
+ "learning_rate": 0.0006,
+ "loss": 3.8861560821533203,
+ "step": 1536
+ },
+ {
+ "epoch": 21.34949759720402,
+ "grad_norm": 0.22635889053344727,
+ "learning_rate": 0.0006,
+ "loss": 3.9174342155456543,
+ "step": 1537
+ },
+ {
+ "epoch": 21.36347750109218,
+ "grad_norm": 0.22700625658035278,
+ "learning_rate": 0.0006,
+ "loss": 3.890416383743286,
+ "step": 1538
+ },
+ {
+ "epoch": 21.37745740498034,
+ "grad_norm": 0.2106025069952011,
+ "learning_rate": 0.0006,
+ "loss": 3.8672406673431396,
+ "step": 1539
+ },
+ {
+ "epoch": 21.3914373088685,
+ "grad_norm": 0.22994661331176758,
+ "learning_rate": 0.0006,
+ "loss": 3.893190383911133,
+ "step": 1540
+ },
+ {
+ "epoch": 21.405417212756664,
+ "grad_norm": 0.24701105058193207,
+ "learning_rate": 0.0006,
+ "loss": 3.898078441619873,
+ "step": 1541
+ },
+ {
+ "epoch": 21.419397116644824,
+ "grad_norm": 0.26914113759994507,
+ "learning_rate": 0.0006,
+ "loss": 3.905871868133545,
+ "step": 1542
+ },
+ {
+ "epoch": 21.433377020532983,
+ "grad_norm": 0.2904224097728729,
+ "learning_rate": 0.0006,
+ "loss": 3.8919103145599365,
+ "step": 1543
+ },
+ {
+ "epoch": 21.447356924421143,
+ "grad_norm": 0.2911844551563263,
+ "learning_rate": 0.0006,
+ "loss": 3.9073286056518555,
+ "step": 1544
+ },
+ {
+ "epoch": 21.461336828309307,
+ "grad_norm": 0.2742345929145813,
+ "learning_rate": 0.0006,
+ "loss": 3.9075546264648438,
+ "step": 1545
+ },
+ {
+ "epoch": 21.475316732197467,
+ "grad_norm": 0.2341093122959137,
+ "learning_rate": 0.0006,
+ "loss": 3.9232025146484375,
+ "step": 1546
+ },
+ {
+ "epoch": 21.489296636085626,
+ "grad_norm": 0.22808541357517242,
+ "learning_rate": 0.0006,
+ "loss": 3.9168174266815186,
+ "step": 1547
+ },
+ {
+ "epoch": 21.503276539973786,
+ "grad_norm": 0.23049889504909515,
+ "learning_rate": 0.0006,
+ "loss": 3.8850595951080322,
+ "step": 1548
+ },
+ {
+ "epoch": 21.51725644386195,
+ "grad_norm": 0.21519650518894196,
+ "learning_rate": 0.0006,
+ "loss": 3.891313076019287,
+ "step": 1549
+ },
+ {
+ "epoch": 21.53123634775011,
+ "grad_norm": 0.20999883115291595,
+ "learning_rate": 0.0006,
+ "loss": 3.894439220428467,
+ "step": 1550
+ },
+ {
+ "epoch": 21.54521625163827,
+ "grad_norm": 0.19641105830669403,
+ "learning_rate": 0.0006,
+ "loss": 3.894871473312378,
+ "step": 1551
+ },
+ {
+ "epoch": 21.55919615552643,
+ "grad_norm": 0.19108249247074127,
+ "learning_rate": 0.0006,
+ "loss": 3.905968189239502,
+ "step": 1552
+ },
+ {
+ "epoch": 21.573176059414592,
+ "grad_norm": 0.20222234725952148,
+ "learning_rate": 0.0006,
+ "loss": 3.90565824508667,
+ "step": 1553
+ },
+ {
+ "epoch": 21.587155963302752,
+ "grad_norm": 0.20620177686214447,
+ "learning_rate": 0.0006,
+ "loss": 3.9103245735168457,
+ "step": 1554
+ },
+ {
+ "epoch": 21.601135867190912,
+ "grad_norm": 0.2149713784456253,
+ "learning_rate": 0.0006,
+ "loss": 3.8864927291870117,
+ "step": 1555
+ },
+ {
+ "epoch": 21.615115771079076,
+ "grad_norm": 0.2354084551334381,
+ "learning_rate": 0.0006,
+ "loss": 3.905095100402832,
+ "step": 1556
+ },
+ {
+ "epoch": 21.629095674967235,
+ "grad_norm": 0.23949941992759705,
+ "learning_rate": 0.0006,
+ "loss": 3.901803493499756,
+ "step": 1557
+ },
+ {
+ "epoch": 21.643075578855395,
+ "grad_norm": 0.22914277017116547,
+ "learning_rate": 0.0006,
+ "loss": 3.876044273376465,
+ "step": 1558
+ },
+ {
+ "epoch": 21.657055482743555,
+ "grad_norm": 0.2363225370645523,
+ "learning_rate": 0.0006,
+ "loss": 3.910841703414917,
+ "step": 1559
+ },
+ {
+ "epoch": 21.67103538663172,
+ "grad_norm": 0.2635626792907715,
+ "learning_rate": 0.0006,
+ "loss": 3.847407579421997,
+ "step": 1560
+ },
+ {
+ "epoch": 21.68501529051988,
+ "grad_norm": 0.2499786615371704,
+ "learning_rate": 0.0006,
+ "loss": 3.8667140007019043,
+ "step": 1561
+ },
+ {
+ "epoch": 21.698995194408038,
+ "grad_norm": 0.21609611809253693,
+ "learning_rate": 0.0006,
+ "loss": 3.895470142364502,
+ "step": 1562
+ },
+ {
+ "epoch": 21.712975098296198,
+ "grad_norm": 0.2466774582862854,
+ "learning_rate": 0.0006,
+ "loss": 3.8853235244750977,
+ "step": 1563
+ },
+ {
+ "epoch": 21.72695500218436,
+ "grad_norm": 0.23791883885860443,
+ "learning_rate": 0.0006,
+ "loss": 3.899418354034424,
+ "step": 1564
+ },
+ {
+ "epoch": 21.74093490607252,
+ "grad_norm": 0.2048920840024948,
+ "learning_rate": 0.0006,
+ "loss": 3.8992419242858887,
+ "step": 1565
+ },
+ {
+ "epoch": 21.75491480996068,
+ "grad_norm": 0.22266621887683868,
+ "learning_rate": 0.0006,
+ "loss": 3.885765552520752,
+ "step": 1566
+ },
+ {
+ "epoch": 21.76889471384884,
+ "grad_norm": 0.2508748769760132,
+ "learning_rate": 0.0006,
+ "loss": 3.8797037601470947,
+ "step": 1567
+ },
+ {
+ "epoch": 21.782874617737004,
+ "grad_norm": 0.27245673537254333,
+ "learning_rate": 0.0006,
+ "loss": 3.8743176460266113,
+ "step": 1568
+ },
+ {
+ "epoch": 21.796854521625164,
+ "grad_norm": 0.25503191351890564,
+ "learning_rate": 0.0006,
+ "loss": 3.868906259536743,
+ "step": 1569
+ },
+ {
+ "epoch": 21.810834425513324,
+ "grad_norm": 0.22984394431114197,
+ "learning_rate": 0.0006,
+ "loss": 3.9051015377044678,
+ "step": 1570
+ },
+ {
+ "epoch": 21.824814329401484,
+ "grad_norm": 0.2411898821592331,
+ "learning_rate": 0.0006,
+ "loss": 3.8911490440368652,
+ "step": 1571
+ },
+ {
+ "epoch": 21.838794233289647,
+ "grad_norm": 0.22609318792819977,
+ "learning_rate": 0.0006,
+ "loss": 3.894839286804199,
+ "step": 1572
+ },
+ {
+ "epoch": 21.852774137177807,
+ "grad_norm": 0.21904583275318146,
+ "learning_rate": 0.0006,
+ "loss": 3.9314537048339844,
+ "step": 1573
+ },
+ {
+ "epoch": 21.866754041065967,
+ "grad_norm": 0.21869723498821259,
+ "learning_rate": 0.0006,
+ "loss": 3.9141433238983154,
+ "step": 1574
+ },
+ {
+ "epoch": 21.88073394495413,
+ "grad_norm": 0.21682019531726837,
+ "learning_rate": 0.0006,
+ "loss": 3.867898464202881,
+ "step": 1575
+ },
+ {
+ "epoch": 21.89471384884229,
+ "grad_norm": 0.2211964726448059,
+ "learning_rate": 0.0006,
+ "loss": 3.8892226219177246,
+ "step": 1576
+ },
+ {
+ "epoch": 21.90869375273045,
+ "grad_norm": 0.2097381353378296,
+ "learning_rate": 0.0006,
+ "loss": 3.9194154739379883,
+ "step": 1577
+ },
+ {
+ "epoch": 21.92267365661861,
+ "grad_norm": 0.21229565143585205,
+ "learning_rate": 0.0006,
+ "loss": 3.924694538116455,
+ "step": 1578
+ },
+ {
+ "epoch": 21.936653560506773,
+ "grad_norm": 0.2186083346605301,
+ "learning_rate": 0.0006,
+ "loss": 3.904440402984619,
+ "step": 1579
+ },
+ {
+ "epoch": 21.950633464394933,
+ "grad_norm": 0.21112321317195892,
+ "learning_rate": 0.0006,
+ "loss": 3.905674934387207,
+ "step": 1580
+ },
+ {
+ "epoch": 21.964613368283093,
+ "grad_norm": 0.20867373049259186,
+ "learning_rate": 0.0006,
+ "loss": 3.8761563301086426,
+ "step": 1581
+ },
+ {
+ "epoch": 21.978593272171253,
+ "grad_norm": 0.21640732884407043,
+ "learning_rate": 0.0006,
+ "loss": 3.871950149536133,
+ "step": 1582
+ },
+ {
+ "epoch": 21.992573176059416,
+ "grad_norm": 0.21920442581176758,
+ "learning_rate": 0.0006,
+ "loss": 3.8853464126586914,
+ "step": 1583
+ },
+ {
+ "epoch": 22.0,
+ "grad_norm": 0.24132665991783142,
+ "learning_rate": 0.0006,
+ "loss": 3.9012184143066406,
+ "step": 1584
+ },
+ {
+ "epoch": 22.0,
+ "eval_loss": 4.108598232269287,
+ "eval_runtime": 44.0434,
+ "eval_samples_per_second": 55.445,
+ "eval_steps_per_second": 3.474,
+ "step": 1584
+ },
+ {
+ "epoch": 22.01397990388816,
+ "grad_norm": 0.21989449858665466,
+ "learning_rate": 0.0006,
+ "loss": 3.8657469749450684,
+ "step": 1585
+ },
+ {
+ "epoch": 22.027959807776323,
+ "grad_norm": 0.20416802167892456,
+ "learning_rate": 0.0006,
+ "loss": 3.8682117462158203,
+ "step": 1586
+ },
+ {
+ "epoch": 22.041939711664483,
+ "grad_norm": 0.20651975274085999,
+ "learning_rate": 0.0006,
+ "loss": 3.8501222133636475,
+ "step": 1587
+ },
+ {
+ "epoch": 22.055919615552643,
+ "grad_norm": 0.22987176477909088,
+ "learning_rate": 0.0006,
+ "loss": 3.8830955028533936,
+ "step": 1588
+ },
+ {
+ "epoch": 22.069899519440803,
+ "grad_norm": 0.23308858275413513,
+ "learning_rate": 0.0006,
+ "loss": 3.8659040927886963,
+ "step": 1589
+ },
+ {
+ "epoch": 22.083879423328966,
+ "grad_norm": 0.2144266963005066,
+ "learning_rate": 0.0006,
+ "loss": 3.8311047554016113,
+ "step": 1590
+ },
+ {
+ "epoch": 22.097859327217126,
+ "grad_norm": 0.2052636295557022,
+ "learning_rate": 0.0006,
+ "loss": 3.8700156211853027,
+ "step": 1591
+ },
+ {
+ "epoch": 22.111839231105286,
+ "grad_norm": 0.22792384028434753,
+ "learning_rate": 0.0006,
+ "loss": 3.8799097537994385,
+ "step": 1592
+ },
+ {
+ "epoch": 22.125819134993446,
+ "grad_norm": 0.2533944249153137,
+ "learning_rate": 0.0006,
+ "loss": 3.874959945678711,
+ "step": 1593
+ },
+ {
+ "epoch": 22.13979903888161,
+ "grad_norm": 0.27126258611679077,
+ "learning_rate": 0.0006,
+ "loss": 3.863774299621582,
+ "step": 1594
+ },
+ {
+ "epoch": 22.15377894276977,
+ "grad_norm": 0.2634040415287018,
+ "learning_rate": 0.0006,
+ "loss": 3.8876869678497314,
+ "step": 1595
+ },
+ {
+ "epoch": 22.16775884665793,
+ "grad_norm": 0.267987459897995,
+ "learning_rate": 0.0006,
+ "loss": 3.871776819229126,
+ "step": 1596
+ },
+ {
+ "epoch": 22.18173875054609,
+ "grad_norm": 0.2972337305545807,
+ "learning_rate": 0.0006,
+ "loss": 3.8453969955444336,
+ "step": 1597
+ },
+ {
+ "epoch": 22.195718654434252,
+ "grad_norm": 0.3012159764766693,
+ "learning_rate": 0.0006,
+ "loss": 3.8774254322052,
+ "step": 1598
+ },
+ {
+ "epoch": 22.209698558322412,
+ "grad_norm": 0.27275875210762024,
+ "learning_rate": 0.0006,
+ "loss": 3.8558950424194336,
+ "step": 1599
+ },
+ {
+ "epoch": 22.22367846221057,
+ "grad_norm": 0.2817993462085724,
+ "learning_rate": 0.0006,
+ "loss": 3.872211217880249,
+ "step": 1600
+ },
+ {
+ "epoch": 22.23765836609873,
+ "grad_norm": 0.28823208808898926,
+ "learning_rate": 0.0006,
+ "loss": 3.847616672515869,
+ "step": 1601
+ },
+ {
+ "epoch": 22.251638269986895,
+ "grad_norm": 0.2646387815475464,
+ "learning_rate": 0.0006,
+ "loss": 3.8993802070617676,
+ "step": 1602
+ },
+ {
+ "epoch": 22.265618173875055,
+ "grad_norm": 0.27664077281951904,
+ "learning_rate": 0.0006,
+ "loss": 3.858553409576416,
+ "step": 1603
+ },
+ {
+ "epoch": 22.279598077763215,
+ "grad_norm": 0.27708905935287476,
+ "learning_rate": 0.0006,
+ "loss": 3.8691039085388184,
+ "step": 1604
+ },
+ {
+ "epoch": 22.293577981651374,
+ "grad_norm": 0.3045521378517151,
+ "learning_rate": 0.0006,
+ "loss": 3.8721439838409424,
+ "step": 1605
+ },
+ {
+ "epoch": 22.307557885539538,
+ "grad_norm": 0.3481914699077606,
+ "learning_rate": 0.0006,
+ "loss": 3.894503593444824,
+ "step": 1606
+ },
+ {
+ "epoch": 22.321537789427698,
+ "grad_norm": 0.3298046588897705,
+ "learning_rate": 0.0006,
+ "loss": 3.8420844078063965,
+ "step": 1607
+ },
+ {
+ "epoch": 22.335517693315857,
+ "grad_norm": 0.24967724084854126,
+ "learning_rate": 0.0006,
+ "loss": 3.8892619609832764,
+ "step": 1608
+ },
+ {
+ "epoch": 22.34949759720402,
+ "grad_norm": 0.22645241022109985,
+ "learning_rate": 0.0006,
+ "loss": 3.873265504837036,
+ "step": 1609
+ },
+ {
+ "epoch": 22.36347750109218,
+ "grad_norm": 0.22813954949378967,
+ "learning_rate": 0.0006,
+ "loss": 3.8658013343811035,
+ "step": 1610
+ },
+ {
+ "epoch": 22.37745740498034,
+ "grad_norm": 0.23825274407863617,
+ "learning_rate": 0.0006,
+ "loss": 3.885456085205078,
+ "step": 1611
+ },
+ {
+ "epoch": 22.3914373088685,
+ "grad_norm": 0.23612336814403534,
+ "learning_rate": 0.0006,
+ "loss": 3.851841449737549,
+ "step": 1612
+ },
+ {
+ "epoch": 22.405417212756664,
+ "grad_norm": 0.23851265013217926,
+ "learning_rate": 0.0006,
+ "loss": 3.8711647987365723,
+ "step": 1613
+ },
+ {
+ "epoch": 22.419397116644824,
+ "grad_norm": 0.22977286577224731,
+ "learning_rate": 0.0006,
+ "loss": 3.848539113998413,
+ "step": 1614
+ },
+ {
+ "epoch": 22.433377020532983,
+ "grad_norm": 0.20970143377780914,
+ "learning_rate": 0.0006,
+ "loss": 3.8709521293640137,
+ "step": 1615
+ },
+ {
+ "epoch": 22.447356924421143,
+ "grad_norm": 0.20714804530143738,
+ "learning_rate": 0.0006,
+ "loss": 3.875060558319092,
+ "step": 1616
+ },
+ {
+ "epoch": 22.461336828309307,
+ "grad_norm": 0.18881355226039886,
+ "learning_rate": 0.0006,
+ "loss": 3.8744640350341797,
+ "step": 1617
+ },
+ {
+ "epoch": 22.475316732197467,
+ "grad_norm": 0.1928759068250656,
+ "learning_rate": 0.0006,
+ "loss": 3.867971420288086,
+ "step": 1618
+ },
+ {
+ "epoch": 22.489296636085626,
+ "grad_norm": 0.18614749610424042,
+ "learning_rate": 0.0006,
+ "loss": 3.8738222122192383,
+ "step": 1619
+ },
+ {
+ "epoch": 22.503276539973786,
+ "grad_norm": 0.18614931404590607,
+ "learning_rate": 0.0006,
+ "loss": 3.8470513820648193,
+ "step": 1620
+ },
+ {
+ "epoch": 22.51725644386195,
+ "grad_norm": 0.17805059254169464,
+ "learning_rate": 0.0006,
+ "loss": 3.866396903991699,
+ "step": 1621
+ },
+ {
+ "epoch": 22.53123634775011,
+ "grad_norm": 0.16941314935684204,
+ "learning_rate": 0.0006,
+ "loss": 3.856832265853882,
+ "step": 1622
+ },
+ {
+ "epoch": 22.54521625163827,
+ "grad_norm": 0.1802310198545456,
+ "learning_rate": 0.0006,
+ "loss": 3.885653018951416,
+ "step": 1623
+ },
+ {
+ "epoch": 22.55919615552643,
+ "grad_norm": 0.1854856163263321,
+ "learning_rate": 0.0006,
+ "loss": 3.8779640197753906,
+ "step": 1624
+ },
+ {
+ "epoch": 22.573176059414592,
+ "grad_norm": 0.18765869736671448,
+ "learning_rate": 0.0006,
+ "loss": 3.8449032306671143,
+ "step": 1625
+ },
+ {
+ "epoch": 22.587155963302752,
+ "grad_norm": 0.1907789707183838,
+ "learning_rate": 0.0006,
+ "loss": 3.863029718399048,
+ "step": 1626
+ },
+ {
+ "epoch": 22.601135867190912,
+ "grad_norm": 0.19285395741462708,
+ "learning_rate": 0.0006,
+ "loss": 3.880145788192749,
+ "step": 1627
+ },
+ {
+ "epoch": 22.615115771079076,
+ "grad_norm": 0.19229751825332642,
+ "learning_rate": 0.0006,
+ "loss": 3.8521225452423096,
+ "step": 1628
+ },
+ {
+ "epoch": 22.629095674967235,
+ "grad_norm": 0.191694438457489,
+ "learning_rate": 0.0006,
+ "loss": 3.899827003479004,
+ "step": 1629
+ },
+ {
+ "epoch": 22.643075578855395,
+ "grad_norm": 0.20143048465251923,
+ "learning_rate": 0.0006,
+ "loss": 3.862064838409424,
+ "step": 1630
+ },
+ {
+ "epoch": 22.657055482743555,
+ "grad_norm": 0.1959840953350067,
+ "learning_rate": 0.0006,
+ "loss": 3.8955392837524414,
+ "step": 1631
+ },
+ {
+ "epoch": 22.67103538663172,
+ "grad_norm": 0.21454884111881256,
+ "learning_rate": 0.0006,
+ "loss": 3.8503167629241943,
+ "step": 1632
+ },
+ {
+ "epoch": 22.68501529051988,
+ "grad_norm": 0.21748484671115875,
+ "learning_rate": 0.0006,
+ "loss": 3.897134304046631,
+ "step": 1633
+ },
+ {
+ "epoch": 22.698995194408038,
+ "grad_norm": 0.21204186975955963,
+ "learning_rate": 0.0006,
+ "loss": 3.9292588233947754,
+ "step": 1634
+ },
+ {
+ "epoch": 22.712975098296198,
+ "grad_norm": 0.2112748771905899,
+ "learning_rate": 0.0006,
+ "loss": 3.89798641204834,
+ "step": 1635
+ },
+ {
+ "epoch": 22.72695500218436,
+ "grad_norm": 0.188576802611351,
+ "learning_rate": 0.0006,
+ "loss": 3.85627818107605,
+ "step": 1636
+ },
+ {
+ "epoch": 22.74093490607252,
+ "grad_norm": 0.17755994200706482,
+ "learning_rate": 0.0006,
+ "loss": 3.8480074405670166,
+ "step": 1637
+ },
+ {
+ "epoch": 22.75491480996068,
+ "grad_norm": 0.18037520349025726,
+ "learning_rate": 0.0006,
+ "loss": 3.8800172805786133,
+ "step": 1638
+ },
+ {
+ "epoch": 22.76889471384884,
+ "grad_norm": 0.19205765426158905,
+ "learning_rate": 0.0006,
+ "loss": 3.8658275604248047,
+ "step": 1639
+ },
+ {
+ "epoch": 22.782874617737004,
+ "grad_norm": 0.21801964938640594,
+ "learning_rate": 0.0006,
+ "loss": 3.8999452590942383,
+ "step": 1640
+ },
+ {
+ "epoch": 22.796854521625164,
+ "grad_norm": 0.23586086928844452,
+ "learning_rate": 0.0006,
+ "loss": 3.8660664558410645,
+ "step": 1641
+ },
+ {
+ "epoch": 22.810834425513324,
+ "grad_norm": 0.22289055585861206,
+ "learning_rate": 0.0006,
+ "loss": 3.86102557182312,
+ "step": 1642
+ },
+ {
+ "epoch": 22.824814329401484,
+ "grad_norm": 0.20695745944976807,
+ "learning_rate": 0.0006,
+ "loss": 3.8336222171783447,
+ "step": 1643
+ },
+ {
+ "epoch": 22.838794233289647,
+ "grad_norm": 0.2157406210899353,
+ "learning_rate": 0.0006,
+ "loss": 3.8923370838165283,
+ "step": 1644
+ },
+ {
+ "epoch": 22.852774137177807,
+ "grad_norm": 0.2326202690601349,
+ "learning_rate": 0.0006,
+ "loss": 3.8841443061828613,
+ "step": 1645
+ },
+ {
+ "epoch": 22.866754041065967,
+ "grad_norm": 0.2228803187608719,
+ "learning_rate": 0.0006,
+ "loss": 3.8791375160217285,
+ "step": 1646
+ },
+ {
+ "epoch": 22.88073394495413,
+ "grad_norm": 0.228999063372612,
+ "learning_rate": 0.0006,
+ "loss": 3.9005866050720215,
+ "step": 1647
+ },
+ {
+ "epoch": 22.89471384884229,
+ "grad_norm": 0.19673815369606018,
+ "learning_rate": 0.0006,
+ "loss": 3.8954291343688965,
+ "step": 1648
+ },
+ {
+ "epoch": 22.90869375273045,
+ "grad_norm": 0.1862584501504898,
+ "learning_rate": 0.0006,
+ "loss": 3.8591439723968506,
+ "step": 1649
+ },
+ {
+ "epoch": 22.92267365661861,
+ "grad_norm": 0.21360838413238525,
+ "learning_rate": 0.0006,
+ "loss": 3.862949848175049,
+ "step": 1650
+ },
+ {
+ "epoch": 22.936653560506773,
+ "grad_norm": 0.22538702189922333,
+ "learning_rate": 0.0006,
+ "loss": 3.8466529846191406,
+ "step": 1651
+ },
+ {
+ "epoch": 22.950633464394933,
+ "grad_norm": 0.21452727913856506,
+ "learning_rate": 0.0006,
+ "loss": 3.890007495880127,
+ "step": 1652
+ },
+ {
+ "epoch": 22.964613368283093,
+ "grad_norm": 0.21283482015132904,
+ "learning_rate": 0.0006,
+ "loss": 3.8820929527282715,
+ "step": 1653
+ },
+ {
+ "epoch": 22.978593272171253,
+ "grad_norm": 0.2035825103521347,
+ "learning_rate": 0.0006,
+ "loss": 3.8663241863250732,
+ "step": 1654
+ },
+ {
+ "epoch": 22.992573176059416,
+ "grad_norm": 0.22431661188602448,
+ "learning_rate": 0.0006,
+ "loss": 3.88238525390625,
+ "step": 1655
+ },
+ {
+ "epoch": 23.0,
+ "grad_norm": 0.2619943916797638,
+ "learning_rate": 0.0006,
+ "loss": 3.8482635021209717,
+ "step": 1656
+ },
+ {
+ "epoch": 23.0,
+ "eval_loss": 4.099980354309082,
+ "eval_runtime": 44.1311,
+ "eval_samples_per_second": 55.335,
+ "eval_steps_per_second": 3.467,
+ "step": 1656
+ },
+ {
+ "epoch": 23.01397990388816,
+ "grad_norm": 0.24712848663330078,
+ "learning_rate": 0.0006,
+ "loss": 3.836700916290283,
+ "step": 1657
+ },
+ {
+ "epoch": 23.027959807776323,
+ "grad_norm": 0.28568798303604126,
+ "learning_rate": 0.0006,
+ "loss": 3.8523952960968018,
+ "step": 1658
+ },
+ {
+ "epoch": 23.041939711664483,
+ "grad_norm": 0.2999744415283203,
+ "learning_rate": 0.0006,
+ "loss": 3.8229494094848633,
+ "step": 1659
+ },
+ {
+ "epoch": 23.055919615552643,
+ "grad_norm": 0.32080450654029846,
+ "learning_rate": 0.0006,
+ "loss": 3.8562774658203125,
+ "step": 1660
+ },
+ {
+ "epoch": 23.069899519440803,
+ "grad_norm": 0.293468177318573,
+ "learning_rate": 0.0006,
+ "loss": 3.889139175415039,
+ "step": 1661
+ },
+ {
+ "epoch": 23.083879423328966,
+ "grad_norm": 0.2605799436569214,
+ "learning_rate": 0.0006,
+ "loss": 3.838681221008301,
+ "step": 1662
+ },
+ {
+ "epoch": 23.097859327217126,
+ "grad_norm": 0.2656237483024597,
+ "learning_rate": 0.0006,
+ "loss": 3.8603532314300537,
+ "step": 1663
+ },
+ {
+ "epoch": 23.111839231105286,
+ "grad_norm": 0.27163293957710266,
+ "learning_rate": 0.0006,
+ "loss": 3.846987009048462,
+ "step": 1664
+ },
+ {
+ "epoch": 23.125819134993446,
+ "grad_norm": 0.2719763517379761,
+ "learning_rate": 0.0006,
+ "loss": 3.805354595184326,
+ "step": 1665
+ },
+ {
+ "epoch": 23.13979903888161,
+ "grad_norm": 0.25786274671554565,
+ "learning_rate": 0.0006,
+ "loss": 3.8486907482147217,
+ "step": 1666
+ },
+ {
+ "epoch": 23.15377894276977,
+ "grad_norm": 0.2675692141056061,
+ "learning_rate": 0.0006,
+ "loss": 3.816493511199951,
+ "step": 1667
+ },
+ {
+ "epoch": 23.16775884665793,
+ "grad_norm": 0.2711698114871979,
+ "learning_rate": 0.0006,
+ "loss": 3.851863384246826,
+ "step": 1668
+ },
+ {
+ "epoch": 23.18173875054609,
+ "grad_norm": 0.2588968873023987,
+ "learning_rate": 0.0006,
+ "loss": 3.860816717147827,
+ "step": 1669
+ },
+ {
+ "epoch": 23.195718654434252,
+ "grad_norm": 0.2458600401878357,
+ "learning_rate": 0.0006,
+ "loss": 3.8058223724365234,
+ "step": 1670
+ },
+ {
+ "epoch": 23.209698558322412,
+ "grad_norm": 0.22014005482196808,
+ "learning_rate": 0.0006,
+ "loss": 3.8686985969543457,
+ "step": 1671
+ },
+ {
+ "epoch": 23.22367846221057,
+ "grad_norm": 0.22450537979602814,
+ "learning_rate": 0.0006,
+ "loss": 3.8379364013671875,
+ "step": 1672
+ },
+ {
+ "epoch": 23.23765836609873,
+ "grad_norm": 0.22132326662540436,
+ "learning_rate": 0.0006,
+ "loss": 3.8873870372772217,
+ "step": 1673
+ },
+ {
+ "epoch": 23.251638269986895,
+ "grad_norm": 0.20994804799556732,
+ "learning_rate": 0.0006,
+ "loss": 3.821415424346924,
+ "step": 1674
+ },
+ {
+ "epoch": 23.265618173875055,
+ "grad_norm": 0.2040853649377823,
+ "learning_rate": 0.0006,
+ "loss": 3.831658124923706,
+ "step": 1675
+ },
+ {
+ "epoch": 23.279598077763215,
+ "grad_norm": 0.20878618955612183,
+ "learning_rate": 0.0006,
+ "loss": 3.838672637939453,
+ "step": 1676
+ },
+ {
+ "epoch": 23.293577981651374,
+ "grad_norm": 0.19974198937416077,
+ "learning_rate": 0.0006,
+ "loss": 3.8442561626434326,
+ "step": 1677
+ },
+ {
+ "epoch": 23.307557885539538,
+ "grad_norm": 0.20523984730243683,
+ "learning_rate": 0.0006,
+ "loss": 3.846139907836914,
+ "step": 1678
+ },
+ {
+ "epoch": 23.321537789427698,
+ "grad_norm": 0.2045847624540329,
+ "learning_rate": 0.0006,
+ "loss": 3.8597474098205566,
+ "step": 1679
+ },
+ {
+ "epoch": 23.335517693315857,
+ "grad_norm": 0.20957441627979279,
+ "learning_rate": 0.0006,
+ "loss": 3.8493881225585938,
+ "step": 1680
+ },
+ {
+ "epoch": 23.34949759720402,
+ "grad_norm": 0.2069379836320877,
+ "learning_rate": 0.0006,
+ "loss": 3.8510046005249023,
+ "step": 1681
+ },
+ {
+ "epoch": 23.36347750109218,
+ "grad_norm": 0.19627872109413147,
+ "learning_rate": 0.0006,
+ "loss": 3.844618320465088,
+ "step": 1682
+ },
+ {
+ "epoch": 23.37745740498034,
+ "grad_norm": 0.19599434733390808,
+ "learning_rate": 0.0006,
+ "loss": 3.8245465755462646,
+ "step": 1683
+ },
+ {
+ "epoch": 23.3914373088685,
+ "grad_norm": 0.2035072147846222,
+ "learning_rate": 0.0006,
+ "loss": 3.854422092437744,
+ "step": 1684
+ },
+ {
+ "epoch": 23.405417212756664,
+ "grad_norm": 0.21836814284324646,
+ "learning_rate": 0.0006,
+ "loss": 3.83512282371521,
+ "step": 1685
+ },
+ {
+ "epoch": 23.419397116644824,
+ "grad_norm": 0.22844630479812622,
+ "learning_rate": 0.0006,
+ "loss": 3.8744301795959473,
+ "step": 1686
+ },
+ {
+ "epoch": 23.433377020532983,
+ "grad_norm": 0.2259359359741211,
+ "learning_rate": 0.0006,
+ "loss": 3.8460323810577393,
+ "step": 1687
+ },
+ {
+ "epoch": 23.447356924421143,
+ "grad_norm": 0.24440120160579681,
+ "learning_rate": 0.0006,
+ "loss": 3.8543787002563477,
+ "step": 1688
+ },
+ {
+ "epoch": 23.461336828309307,
+ "grad_norm": 0.25063708424568176,
+ "learning_rate": 0.0006,
+ "loss": 3.851004123687744,
+ "step": 1689
+ },
+ {
+ "epoch": 23.475316732197467,
+ "grad_norm": 0.25515618920326233,
+ "learning_rate": 0.0006,
+ "loss": 3.8685030937194824,
+ "step": 1690
+ },
+ {
+ "epoch": 23.489296636085626,
+ "grad_norm": 0.23961050808429718,
+ "learning_rate": 0.0006,
+ "loss": 3.866792678833008,
+ "step": 1691
+ },
+ {
+ "epoch": 23.503276539973786,
+ "grad_norm": 0.20880955457687378,
+ "learning_rate": 0.0006,
+ "loss": 3.8416638374328613,
+ "step": 1692
+ },
+ {
+ "epoch": 23.51725644386195,
+ "grad_norm": 0.1989721804857254,
+ "learning_rate": 0.0006,
+ "loss": 3.8608641624450684,
+ "step": 1693
+ },
+ {
+ "epoch": 23.53123634775011,
+ "grad_norm": 0.207577183842659,
+ "learning_rate": 0.0006,
+ "loss": 3.8431811332702637,
+ "step": 1694
+ },
+ {
+ "epoch": 23.54521625163827,
+ "grad_norm": 0.20844359695911407,
+ "learning_rate": 0.0006,
+ "loss": 3.882844924926758,
+ "step": 1695
+ },
+ {
+ "epoch": 23.55919615552643,
+ "grad_norm": 0.22511139512062073,
+ "learning_rate": 0.0006,
+ "loss": 3.866156578063965,
+ "step": 1696
+ },
+ {
+ "epoch": 23.573176059414592,
+ "grad_norm": 0.21648484468460083,
+ "learning_rate": 0.0006,
+ "loss": 3.87117075920105,
+ "step": 1697
+ },
+ {
+ "epoch": 23.587155963302752,
+ "grad_norm": 0.2081802636384964,
+ "learning_rate": 0.0006,
+ "loss": 3.828132152557373,
+ "step": 1698
+ },
+ {
+ "epoch": 23.601135867190912,
+ "grad_norm": 0.2017381489276886,
+ "learning_rate": 0.0006,
+ "loss": 3.839737892150879,
+ "step": 1699
+ },
+ {
+ "epoch": 23.615115771079076,
+ "grad_norm": 0.2025786191225052,
+ "learning_rate": 0.0006,
+ "loss": 3.8787710666656494,
+ "step": 1700
+ },
+ {
+ "epoch": 23.629095674967235,
+ "grad_norm": 0.21394102275371552,
+ "learning_rate": 0.0006,
+ "loss": 3.824047088623047,
+ "step": 1701
+ },
+ {
+ "epoch": 23.643075578855395,
+ "grad_norm": 0.20749174058437347,
+ "learning_rate": 0.0006,
+ "loss": 3.877009153366089,
+ "step": 1702
+ },
+ {
+ "epoch": 23.657055482743555,
+ "grad_norm": 0.2132839858531952,
+ "learning_rate": 0.0006,
+ "loss": 3.844214916229248,
+ "step": 1703
+ },
+ {
+ "epoch": 23.67103538663172,
+ "grad_norm": 0.22408637404441833,
+ "learning_rate": 0.0006,
+ "loss": 3.8570785522460938,
+ "step": 1704
+ },
+ {
+ "epoch": 23.68501529051988,
+ "grad_norm": 0.2275897115468979,
+ "learning_rate": 0.0006,
+ "loss": 3.8599512577056885,
+ "step": 1705
+ },
+ {
+ "epoch": 23.698995194408038,
+ "grad_norm": 0.2230614721775055,
+ "learning_rate": 0.0006,
+ "loss": 3.86374568939209,
+ "step": 1706
+ },
+ {
+ "epoch": 23.712975098296198,
+ "grad_norm": 0.21873739361763,
+ "learning_rate": 0.0006,
+ "loss": 3.8530168533325195,
+ "step": 1707
+ },
+ {
+ "epoch": 23.72695500218436,
+ "grad_norm": 0.24418923258781433,
+ "learning_rate": 0.0006,
+ "loss": 3.8410465717315674,
+ "step": 1708
+ },
+ {
+ "epoch": 23.74093490607252,
+ "grad_norm": 0.24894575774669647,
+ "learning_rate": 0.0006,
+ "loss": 3.8386030197143555,
+ "step": 1709
+ },
+ {
+ "epoch": 23.75491480996068,
+ "grad_norm": 0.221230611205101,
+ "learning_rate": 0.0006,
+ "loss": 3.8116674423217773,
+ "step": 1710
+ },
+ {
+ "epoch": 23.76889471384884,
+ "grad_norm": 0.20560568571090698,
+ "learning_rate": 0.0006,
+ "loss": 3.8634426593780518,
+ "step": 1711
+ },
+ {
+ "epoch": 23.782874617737004,
+ "grad_norm": 0.20450648665428162,
+ "learning_rate": 0.0006,
+ "loss": 3.8690528869628906,
+ "step": 1712
+ },
+ {
+ "epoch": 23.796854521625164,
+ "grad_norm": 0.18996809422969818,
+ "learning_rate": 0.0006,
+ "loss": 3.8484325408935547,
+ "step": 1713
+ },
+ {
+ "epoch": 23.810834425513324,
+ "grad_norm": 0.20165087282657623,
+ "learning_rate": 0.0006,
+ "loss": 3.8823161125183105,
+ "step": 1714
+ },
+ {
+ "epoch": 23.824814329401484,
+ "grad_norm": 0.21149255335330963,
+ "learning_rate": 0.0006,
+ "loss": 3.8833112716674805,
+ "step": 1715
+ },
+ {
+ "epoch": 23.838794233289647,
+ "grad_norm": 0.21254824101924896,
+ "learning_rate": 0.0006,
+ "loss": 3.8414595127105713,
+ "step": 1716
+ },
+ {
+ "epoch": 23.852774137177807,
+ "grad_norm": 0.21313664317131042,
+ "learning_rate": 0.0006,
+ "loss": 3.8732268810272217,
+ "step": 1717
+ },
+ {
+ "epoch": 23.866754041065967,
+ "grad_norm": 0.21635662019252777,
+ "learning_rate": 0.0006,
+ "loss": 3.861222743988037,
+ "step": 1718
+ },
+ {
+ "epoch": 23.88073394495413,
+ "grad_norm": 0.20612190663814545,
+ "learning_rate": 0.0006,
+ "loss": 3.821854591369629,
+ "step": 1719
+ },
+ {
+ "epoch": 23.89471384884229,
+ "grad_norm": 0.1975104659795761,
+ "learning_rate": 0.0006,
+ "loss": 3.8815202713012695,
+ "step": 1720
+ },
+ {
+ "epoch": 23.90869375273045,
+ "grad_norm": 0.20893609523773193,
+ "learning_rate": 0.0006,
+ "loss": 3.8581607341766357,
+ "step": 1721
+ },
+ {
+ "epoch": 23.92267365661861,
+ "grad_norm": 0.2125461846590042,
+ "learning_rate": 0.0006,
+ "loss": 3.839498281478882,
+ "step": 1722
+ },
+ {
+ "epoch": 23.936653560506773,
+ "grad_norm": 0.19985878467559814,
+ "learning_rate": 0.0006,
+ "loss": 3.856555223464966,
+ "step": 1723
+ },
+ {
+ "epoch": 23.950633464394933,
+ "grad_norm": 0.1922348290681839,
+ "learning_rate": 0.0006,
+ "loss": 3.8956782817840576,
+ "step": 1724
+ },
+ {
+ "epoch": 23.964613368283093,
+ "grad_norm": 0.2191949337720871,
+ "learning_rate": 0.0006,
+ "loss": 3.8582406044006348,
+ "step": 1725
+ },
+ {
+ "epoch": 23.978593272171253,
+ "grad_norm": 0.2569248676300049,
+ "learning_rate": 0.0006,
+ "loss": 3.855678081512451,
+ "step": 1726
+ },
+ {
+ "epoch": 23.992573176059416,
+ "grad_norm": 0.2641172409057617,
+ "learning_rate": 0.0006,
+ "loss": 3.8426473140716553,
+ "step": 1727
+ },
+ {
+ "epoch": 24.0,
+ "grad_norm": 0.29637208580970764,
+ "learning_rate": 0.0006,
+ "loss": 3.843040704727173,
+ "step": 1728
+ },
+ {
+ "epoch": 24.0,
+ "eval_loss": 4.075617790222168,
+ "eval_runtime": 43.9795,
+ "eval_samples_per_second": 55.526,
+ "eval_steps_per_second": 3.479,
+ "step": 1728
+ },
+ {
+ "epoch": 24.01397990388816,
+ "grad_norm": 0.2804758548736572,
+ "learning_rate": 0.0006,
+ "loss": 3.819150924682617,
+ "step": 1729
+ },
+ {
+ "epoch": 24.027959807776323,
+ "grad_norm": 0.2796347141265869,
+ "learning_rate": 0.0006,
+ "loss": 3.8400537967681885,
+ "step": 1730
+ },
+ {
+ "epoch": 24.041939711664483,
+ "grad_norm": 0.28388649225234985,
+ "learning_rate": 0.0006,
+ "loss": 3.844595432281494,
+ "step": 1731
+ },
+ {
+ "epoch": 24.055919615552643,
+ "grad_norm": 0.2944681942462921,
+ "learning_rate": 0.0006,
+ "loss": 3.8048014640808105,
+ "step": 1732
+ },
+ {
+ "epoch": 24.069899519440803,
+ "grad_norm": 0.2956784665584564,
+ "learning_rate": 0.0006,
+ "loss": 3.8488049507141113,
+ "step": 1733
+ },
+ {
+ "epoch": 24.083879423328966,
+ "grad_norm": 0.2822059392929077,
+ "learning_rate": 0.0006,
+ "loss": 3.850322723388672,
+ "step": 1734
+ },
+ {
+ "epoch": 24.097859327217126,
+ "grad_norm": 0.3012927174568176,
+ "learning_rate": 0.0006,
+ "loss": 3.8748154640197754,
+ "step": 1735
+ },
+ {
+ "epoch": 24.111839231105286,
+ "grad_norm": 0.28868764638900757,
+ "learning_rate": 0.0006,
+ "loss": 3.8282783031463623,
+ "step": 1736
+ },
+ {
+ "epoch": 24.125819134993446,
+ "grad_norm": 0.277203768491745,
+ "learning_rate": 0.0006,
+ "loss": 3.8462908267974854,
+ "step": 1737
+ },
+ {
+ "epoch": 24.13979903888161,
+ "grad_norm": 0.2654508948326111,
+ "learning_rate": 0.0006,
+ "loss": 3.8043856620788574,
+ "step": 1738
+ },
+ {
+ "epoch": 24.15377894276977,
+ "grad_norm": 0.24425740540027618,
+ "learning_rate": 0.0006,
+ "loss": 3.8284308910369873,
+ "step": 1739
+ },
+ {
+ "epoch": 24.16775884665793,
+ "grad_norm": 0.24407348036766052,
+ "learning_rate": 0.0006,
+ "loss": 3.8489203453063965,
+ "step": 1740
+ },
+ {
+ "epoch": 24.18173875054609,
+ "grad_norm": 0.2387724369764328,
+ "learning_rate": 0.0006,
+ "loss": 3.8240389823913574,
+ "step": 1741
+ },
+ {
+ "epoch": 24.195718654434252,
+ "grad_norm": 0.2832290232181549,
+ "learning_rate": 0.0006,
+ "loss": 3.869053363800049,
+ "step": 1742
+ },
+ {
+ "epoch": 24.209698558322412,
+ "grad_norm": 0.26501718163490295,
+ "learning_rate": 0.0006,
+ "loss": 3.8624343872070312,
+ "step": 1743
+ },
+ {
+ "epoch": 24.22367846221057,
+ "grad_norm": 0.24234668910503387,
+ "learning_rate": 0.0006,
+ "loss": 3.823103904724121,
+ "step": 1744
+ },
+ {
+ "epoch": 24.23765836609873,
+ "grad_norm": 0.24160076677799225,
+ "learning_rate": 0.0006,
+ "loss": 3.8174376487731934,
+ "step": 1745
+ },
+ {
+ "epoch": 24.251638269986895,
+ "grad_norm": 0.2447604238986969,
+ "learning_rate": 0.0006,
+ "loss": 3.8345441818237305,
+ "step": 1746
+ },
+ {
+ "epoch": 24.265618173875055,
+ "grad_norm": 0.22864456474781036,
+ "learning_rate": 0.0006,
+ "loss": 3.833101272583008,
+ "step": 1747
+ },
+ {
+ "epoch": 24.279598077763215,
+ "grad_norm": 0.20429204404354095,
+ "learning_rate": 0.0006,
+ "loss": 3.8055219650268555,
+ "step": 1748
+ },
+ {
+ "epoch": 24.293577981651374,
+ "grad_norm": 0.21538510918617249,
+ "learning_rate": 0.0006,
+ "loss": 3.7929327487945557,
+ "step": 1749
+ },
+ {
+ "epoch": 24.307557885539538,
+ "grad_norm": 0.2189008593559265,
+ "learning_rate": 0.0006,
+ "loss": 3.852264881134033,
+ "step": 1750
+ },
+ {
+ "epoch": 24.321537789427698,
+ "grad_norm": 0.2228662073612213,
+ "learning_rate": 0.0006,
+ "loss": 3.831088066101074,
+ "step": 1751
+ },
+ {
+ "epoch": 24.335517693315857,
+ "grad_norm": 0.2039937973022461,
+ "learning_rate": 0.0006,
+ "loss": 3.8358256816864014,
+ "step": 1752
+ },
+ {
+ "epoch": 24.34949759720402,
+ "grad_norm": 0.19247715175151825,
+ "learning_rate": 0.0006,
+ "loss": 3.8077402114868164,
+ "step": 1753
+ },
+ {
+ "epoch": 24.36347750109218,
+ "grad_norm": 0.18301935493946075,
+ "learning_rate": 0.0006,
+ "loss": 3.81380033493042,
+ "step": 1754
+ },
+ {
+ "epoch": 24.37745740498034,
+ "grad_norm": 0.19325268268585205,
+ "learning_rate": 0.0006,
+ "loss": 3.8447322845458984,
+ "step": 1755
+ },
+ {
+ "epoch": 24.3914373088685,
+ "grad_norm": 0.2007269263267517,
+ "learning_rate": 0.0006,
+ "loss": 3.82779860496521,
+ "step": 1756
+ },
+ {
+ "epoch": 24.405417212756664,
+ "grad_norm": 0.20567037165164948,
+ "learning_rate": 0.0006,
+ "loss": 3.800354480743408,
+ "step": 1757
+ },
+ {
+ "epoch": 24.419397116644824,
+ "grad_norm": 0.22553028166294098,
+ "learning_rate": 0.0006,
+ "loss": 3.7910406589508057,
+ "step": 1758
+ },
+ {
+ "epoch": 24.433377020532983,
+ "grad_norm": 0.22697079181671143,
+ "learning_rate": 0.0006,
+ "loss": 3.857635974884033,
+ "step": 1759
+ },
+ {
+ "epoch": 24.447356924421143,
+ "grad_norm": 0.22090297937393188,
+ "learning_rate": 0.0006,
+ "loss": 3.8112804889678955,
+ "step": 1760
+ },
+ {
+ "epoch": 24.461336828309307,
+ "grad_norm": 0.24325518310070038,
+ "learning_rate": 0.0006,
+ "loss": 3.822084426879883,
+ "step": 1761
+ },
+ {
+ "epoch": 24.475316732197467,
+ "grad_norm": 0.2702929377555847,
+ "learning_rate": 0.0006,
+ "loss": 3.8307600021362305,
+ "step": 1762
+ },
+ {
+ "epoch": 24.489296636085626,
+ "grad_norm": 0.2699742317199707,
+ "learning_rate": 0.0006,
+ "loss": 3.8479247093200684,
+ "step": 1763
+ },
+ {
+ "epoch": 24.503276539973786,
+ "grad_norm": 0.2526061236858368,
+ "learning_rate": 0.0006,
+ "loss": 3.8615071773529053,
+ "step": 1764
+ },
+ {
+ "epoch": 24.51725644386195,
+ "grad_norm": 0.2633848190307617,
+ "learning_rate": 0.0006,
+ "loss": 3.8412697315216064,
+ "step": 1765
+ },
+ {
+ "epoch": 24.53123634775011,
+ "grad_norm": 0.2711184024810791,
+ "learning_rate": 0.0006,
+ "loss": 3.83647084236145,
+ "step": 1766
+ },
+ {
+ "epoch": 24.54521625163827,
+ "grad_norm": 0.2691243588924408,
+ "learning_rate": 0.0006,
+ "loss": 3.8489012718200684,
+ "step": 1767
+ },
+ {
+ "epoch": 24.55919615552643,
+ "grad_norm": 0.2580898404121399,
+ "learning_rate": 0.0006,
+ "loss": 3.8464407920837402,
+ "step": 1768
+ },
+ {
+ "epoch": 24.573176059414592,
+ "grad_norm": 0.21342119574546814,
+ "learning_rate": 0.0006,
+ "loss": 3.8279383182525635,
+ "step": 1769
+ },
+ {
+ "epoch": 24.587155963302752,
+ "grad_norm": 0.22102399170398712,
+ "learning_rate": 0.0006,
+ "loss": 3.841676712036133,
+ "step": 1770
+ },
+ {
+ "epoch": 24.601135867190912,
+ "grad_norm": 0.2882173955440521,
+ "learning_rate": 0.0006,
+ "loss": 3.825528383255005,
+ "step": 1771
+ },
+ {
+ "epoch": 24.615115771079076,
+ "grad_norm": 0.3403635323047638,
+ "learning_rate": 0.0006,
+ "loss": 3.8282246589660645,
+ "step": 1772
+ },
+ {
+ "epoch": 24.629095674967235,
+ "grad_norm": 0.32192692160606384,
+ "learning_rate": 0.0006,
+ "loss": 3.8411307334899902,
+ "step": 1773
+ },
+ {
+ "epoch": 24.643075578855395,
+ "grad_norm": 0.2534109055995941,
+ "learning_rate": 0.0006,
+ "loss": 3.843007802963257,
+ "step": 1774
+ },
+ {
+ "epoch": 24.657055482743555,
+ "grad_norm": 0.25483962893486023,
+ "learning_rate": 0.0006,
+ "loss": 3.848358154296875,
+ "step": 1775
+ },
+ {
+ "epoch": 24.67103538663172,
+ "grad_norm": 0.25175443291664124,
+ "learning_rate": 0.0006,
+ "loss": 3.8232598304748535,
+ "step": 1776
+ },
+ {
+ "epoch": 24.68501529051988,
+ "grad_norm": 0.20538510382175446,
+ "learning_rate": 0.0006,
+ "loss": 3.857635498046875,
+ "step": 1777
+ },
+ {
+ "epoch": 24.698995194408038,
+ "grad_norm": 0.240861177444458,
+ "learning_rate": 0.0006,
+ "loss": 3.83717679977417,
+ "step": 1778
+ },
+ {
+ "epoch": 24.712975098296198,
+ "grad_norm": 0.23646967113018036,
+ "learning_rate": 0.0006,
+ "loss": 3.81032133102417,
+ "step": 1779
+ },
+ {
+ "epoch": 24.72695500218436,
+ "grad_norm": 0.2164423167705536,
+ "learning_rate": 0.0006,
+ "loss": 3.807878255844116,
+ "step": 1780
+ },
+ {
+ "epoch": 24.74093490607252,
+ "grad_norm": 0.21160705387592316,
+ "learning_rate": 0.0006,
+ "loss": 3.870394468307495,
+ "step": 1781
+ },
+ {
+ "epoch": 24.75491480996068,
+ "grad_norm": 0.20284807682037354,
+ "learning_rate": 0.0006,
+ "loss": 3.842154026031494,
+ "step": 1782
+ },
+ {
+ "epoch": 24.76889471384884,
+ "grad_norm": 0.20738485455513,
+ "learning_rate": 0.0006,
+ "loss": 3.8347136974334717,
+ "step": 1783
+ },
+ {
+ "epoch": 24.782874617737004,
+ "grad_norm": 0.20253778994083405,
+ "learning_rate": 0.0006,
+ "loss": 3.814948320388794,
+ "step": 1784
+ },
+ {
+ "epoch": 24.796854521625164,
+ "grad_norm": 0.20567010343074799,
+ "learning_rate": 0.0006,
+ "loss": 3.8354592323303223,
+ "step": 1785
+ },
+ {
+ "epoch": 24.810834425513324,
+ "grad_norm": 0.20639720559120178,
+ "learning_rate": 0.0006,
+ "loss": 3.8336033821105957,
+ "step": 1786
+ },
+ {
+ "epoch": 24.824814329401484,
+ "grad_norm": 0.19978247582912445,
+ "learning_rate": 0.0006,
+ "loss": 3.8209140300750732,
+ "step": 1787
+ },
+ {
+ "epoch": 24.838794233289647,
+ "grad_norm": 0.20628373324871063,
+ "learning_rate": 0.0006,
+ "loss": 3.8372955322265625,
+ "step": 1788
+ },
+ {
+ "epoch": 24.852774137177807,
+ "grad_norm": 0.2266162782907486,
+ "learning_rate": 0.0006,
+ "loss": 3.850994110107422,
+ "step": 1789
+ },
+ {
+ "epoch": 24.866754041065967,
+ "grad_norm": 0.22567765414714813,
+ "learning_rate": 0.0006,
+ "loss": 3.8552165031433105,
+ "step": 1790
+ },
+ {
+ "epoch": 24.88073394495413,
+ "grad_norm": 0.228011354804039,
+ "learning_rate": 0.0006,
+ "loss": 3.8310747146606445,
+ "step": 1791
+ },
+ {
+ "epoch": 24.89471384884229,
+ "grad_norm": 0.23706914484500885,
+ "learning_rate": 0.0006,
+ "loss": 3.8369603157043457,
+ "step": 1792
+ },
+ {
+ "epoch": 24.90869375273045,
+ "grad_norm": 0.22669097781181335,
+ "learning_rate": 0.0006,
+ "loss": 3.8443825244903564,
+ "step": 1793
+ },
+ {
+ "epoch": 24.92267365661861,
+ "grad_norm": 0.2051001936197281,
+ "learning_rate": 0.0006,
+ "loss": 3.7938501834869385,
+ "step": 1794
+ },
+ {
+ "epoch": 24.936653560506773,
+ "grad_norm": 0.2091219276189804,
+ "learning_rate": 0.0006,
+ "loss": 3.8167076110839844,
+ "step": 1795
+ },
+ {
+ "epoch": 24.950633464394933,
+ "grad_norm": 0.20517204701900482,
+ "learning_rate": 0.0006,
+ "loss": 3.852670669555664,
+ "step": 1796
+ },
+ {
+ "epoch": 24.964613368283093,
+ "grad_norm": 0.19916993379592896,
+ "learning_rate": 0.0006,
+ "loss": 3.8410873413085938,
+ "step": 1797
+ },
+ {
+ "epoch": 24.978593272171253,
+ "grad_norm": 0.21313942968845367,
+ "learning_rate": 0.0006,
+ "loss": 3.8383948802948,
+ "step": 1798
+ },
+ {
+ "epoch": 24.992573176059416,
+ "grad_norm": 0.21042990684509277,
+ "learning_rate": 0.0006,
+ "loss": 3.8623173236846924,
+ "step": 1799
+ },
+ {
+ "epoch": 25.0,
+ "grad_norm": 0.23052045702934265,
+ "learning_rate": 0.0006,
+ "loss": 3.8646674156188965,
+ "step": 1800
+ },
+ {
+ "epoch": 25.0,
+ "eval_loss": 4.081690311431885,
+ "eval_runtime": 44.036,
+ "eval_samples_per_second": 55.455,
+ "eval_steps_per_second": 3.474,
+ "step": 1800
+ },
+ {
+ "epoch": 25.01397990388816,
+ "grad_norm": 0.22068746387958527,
+ "learning_rate": 0.0006,
+ "loss": 3.8002820014953613,
+ "step": 1801
+ },
+ {
+ "epoch": 25.027959807776323,
+ "grad_norm": 0.20711193978786469,
+ "learning_rate": 0.0006,
+ "loss": 3.787785768508911,
+ "step": 1802
+ },
+ {
+ "epoch": 25.041939711664483,
+ "grad_norm": 0.20659677684307098,
+ "learning_rate": 0.0006,
+ "loss": 3.80245304107666,
+ "step": 1803
+ },
+ {
+ "epoch": 25.055919615552643,
+ "grad_norm": 0.22891797125339508,
+ "learning_rate": 0.0006,
+ "loss": 3.784543514251709,
+ "step": 1804
+ },
+ {
+ "epoch": 25.069899519440803,
+ "grad_norm": 0.23679181933403015,
+ "learning_rate": 0.0006,
+ "loss": 3.8311429023742676,
+ "step": 1805
+ },
+ {
+ "epoch": 25.083879423328966,
+ "grad_norm": 0.2548872232437134,
+ "learning_rate": 0.0006,
+ "loss": 3.8047211170196533,
+ "step": 1806
+ },
+ {
+ "epoch": 25.097859327217126,
+ "grad_norm": 0.26181501150131226,
+ "learning_rate": 0.0006,
+ "loss": 3.837508201599121,
+ "step": 1807
+ },
+ {
+ "epoch": 25.111839231105286,
+ "grad_norm": 0.2548452913761139,
+ "learning_rate": 0.0006,
+ "loss": 3.831544876098633,
+ "step": 1808
+ },
+ {
+ "epoch": 25.125819134993446,
+ "grad_norm": 0.26177605986595154,
+ "learning_rate": 0.0006,
+ "loss": 3.805346965789795,
+ "step": 1809
+ },
+ {
+ "epoch": 25.13979903888161,
+ "grad_norm": 0.2608112394809723,
+ "learning_rate": 0.0006,
+ "loss": 3.8040924072265625,
+ "step": 1810
+ },
+ {
+ "epoch": 25.15377894276977,
+ "grad_norm": 0.2586037814617157,
+ "learning_rate": 0.0006,
+ "loss": 3.8102216720581055,
+ "step": 1811
+ },
+ {
+ "epoch": 25.16775884665793,
+ "grad_norm": 0.26258161664009094,
+ "learning_rate": 0.0006,
+ "loss": 3.8152549266815186,
+ "step": 1812
+ },
+ {
+ "epoch": 25.18173875054609,
+ "grad_norm": 0.2803022265434265,
+ "learning_rate": 0.0006,
+ "loss": 3.82576584815979,
+ "step": 1813
+ },
+ {
+ "epoch": 25.195718654434252,
+ "grad_norm": 0.2618221938610077,
+ "learning_rate": 0.0006,
+ "loss": 3.817220687866211,
+ "step": 1814
+ },
+ {
+ "epoch": 25.209698558322412,
+ "grad_norm": 0.23283469676971436,
+ "learning_rate": 0.0006,
+ "loss": 3.7999041080474854,
+ "step": 1815
+ },
+ {
+ "epoch": 25.22367846221057,
+ "grad_norm": 0.20110781490802765,
+ "learning_rate": 0.0006,
+ "loss": 3.783228874206543,
+ "step": 1816
+ },
+ {
+ "epoch": 25.23765836609873,
+ "grad_norm": 0.2231830358505249,
+ "learning_rate": 0.0006,
+ "loss": 3.8032913208007812,
+ "step": 1817
+ },
+ {
+ "epoch": 25.251638269986895,
+ "grad_norm": 0.21807286143302917,
+ "learning_rate": 0.0006,
+ "loss": 3.817028045654297,
+ "step": 1818
+ },
+ {
+ "epoch": 25.265618173875055,
+ "grad_norm": 0.22710664570331573,
+ "learning_rate": 0.0006,
+ "loss": 3.8201727867126465,
+ "step": 1819
+ },
+ {
+ "epoch": 25.279598077763215,
+ "grad_norm": 0.22299866378307343,
+ "learning_rate": 0.0006,
+ "loss": 3.8198719024658203,
+ "step": 1820
+ },
+ {
+ "epoch": 25.293577981651374,
+ "grad_norm": 0.20886564254760742,
+ "learning_rate": 0.0006,
+ "loss": 3.792414665222168,
+ "step": 1821
+ },
+ {
+ "epoch": 25.307557885539538,
+ "grad_norm": 0.20887352526187897,
+ "learning_rate": 0.0006,
+ "loss": 3.7634057998657227,
+ "step": 1822
+ },
+ {
+ "epoch": 25.321537789427698,
+ "grad_norm": 0.24560041725635529,
+ "learning_rate": 0.0006,
+ "loss": 3.79359769821167,
+ "step": 1823
+ },
+ {
+ "epoch": 25.335517693315857,
+ "grad_norm": 0.22767415642738342,
+ "learning_rate": 0.0006,
+ "loss": 3.8313469886779785,
+ "step": 1824
+ },
+ {
+ "epoch": 25.34949759720402,
+ "grad_norm": 0.21617893874645233,
+ "learning_rate": 0.0006,
+ "loss": 3.77200984954834,
+ "step": 1825
+ },
+ {
+ "epoch": 25.36347750109218,
+ "grad_norm": 0.21010833978652954,
+ "learning_rate": 0.0006,
+ "loss": 3.8042140007019043,
+ "step": 1826
+ },
+ {
+ "epoch": 25.37745740498034,
+ "grad_norm": 0.24087965488433838,
+ "learning_rate": 0.0006,
+ "loss": 3.8260979652404785,
+ "step": 1827
+ },
+ {
+ "epoch": 25.3914373088685,
+ "grad_norm": 0.2735275626182556,
+ "learning_rate": 0.0006,
+ "loss": 3.8499274253845215,
+ "step": 1828
+ },
+ {
+ "epoch": 25.405417212756664,
+ "grad_norm": 0.24831001460552216,
+ "learning_rate": 0.0006,
+ "loss": 3.8146448135375977,
+ "step": 1829
+ },
+ {
+ "epoch": 25.419397116644824,
+ "grad_norm": 0.21822866797447205,
+ "learning_rate": 0.0006,
+ "loss": 3.7845146656036377,
+ "step": 1830
+ },
+ {
+ "epoch": 25.433377020532983,
+ "grad_norm": 0.19948813319206238,
+ "learning_rate": 0.0006,
+ "loss": 3.823997974395752,
+ "step": 1831
+ },
+ {
+ "epoch": 25.447356924421143,
+ "grad_norm": 0.18342702090740204,
+ "learning_rate": 0.0006,
+ "loss": 3.8201193809509277,
+ "step": 1832
+ },
+ {
+ "epoch": 25.461336828309307,
+ "grad_norm": 0.19377560913562775,
+ "learning_rate": 0.0006,
+ "loss": 3.8069632053375244,
+ "step": 1833
+ },
+ {
+ "epoch": 25.475316732197467,
+ "grad_norm": 0.22348709404468536,
+ "learning_rate": 0.0006,
+ "loss": 3.7918643951416016,
+ "step": 1834
+ },
+ {
+ "epoch": 25.489296636085626,
+ "grad_norm": 0.24484702944755554,
+ "learning_rate": 0.0006,
+ "loss": 3.85046124458313,
+ "step": 1835
+ },
+ {
+ "epoch": 25.503276539973786,
+ "grad_norm": 0.2493520826101303,
+ "learning_rate": 0.0006,
+ "loss": 3.8043932914733887,
+ "step": 1836
+ },
+ {
+ "epoch": 25.51725644386195,
+ "grad_norm": 0.21509641408920288,
+ "learning_rate": 0.0006,
+ "loss": 3.8064627647399902,
+ "step": 1837
+ },
+ {
+ "epoch": 25.53123634775011,
+ "grad_norm": 0.21912820637226105,
+ "learning_rate": 0.0006,
+ "loss": 3.850588321685791,
+ "step": 1838
+ },
+ {
+ "epoch": 25.54521625163827,
+ "grad_norm": 0.28400927782058716,
+ "learning_rate": 0.0006,
+ "loss": 3.79818058013916,
+ "step": 1839
+ },
+ {
+ "epoch": 25.55919615552643,
+ "grad_norm": 0.32193225622177124,
+ "learning_rate": 0.0006,
+ "loss": 3.836275815963745,
+ "step": 1840
+ },
+ {
+ "epoch": 25.573176059414592,
+ "grad_norm": 0.2902325987815857,
+ "learning_rate": 0.0006,
+ "loss": 3.8080005645751953,
+ "step": 1841
+ },
+ {
+ "epoch": 25.587155963302752,
+ "grad_norm": 0.21759532392024994,
+ "learning_rate": 0.0006,
+ "loss": 3.8233771324157715,
+ "step": 1842
+ },
+ {
+ "epoch": 25.601135867190912,
+ "grad_norm": 0.19645214080810547,
+ "learning_rate": 0.0006,
+ "loss": 3.838881015777588,
+ "step": 1843
+ },
+ {
+ "epoch": 25.615115771079076,
+ "grad_norm": 0.19322903454303741,
+ "learning_rate": 0.0006,
+ "loss": 3.7870054244995117,
+ "step": 1844
+ },
+ {
+ "epoch": 25.629095674967235,
+ "grad_norm": 0.2074001580476761,
+ "learning_rate": 0.0006,
+ "loss": 3.8239974975585938,
+ "step": 1845
+ },
+ {
+ "epoch": 25.643075578855395,
+ "grad_norm": 0.2166101336479187,
+ "learning_rate": 0.0006,
+ "loss": 3.8290855884552,
+ "step": 1846
+ },
+ {
+ "epoch": 25.657055482743555,
+ "grad_norm": 0.23738539218902588,
+ "learning_rate": 0.0006,
+ "loss": 3.7993364334106445,
+ "step": 1847
+ },
+ {
+ "epoch": 25.67103538663172,
+ "grad_norm": 0.23882314562797546,
+ "learning_rate": 0.0006,
+ "loss": 3.802586078643799,
+ "step": 1848
+ },
+ {
+ "epoch": 25.68501529051988,
+ "grad_norm": 0.24168142676353455,
+ "learning_rate": 0.0006,
+ "loss": 3.8303489685058594,
+ "step": 1849
+ },
+ {
+ "epoch": 25.698995194408038,
+ "grad_norm": 0.22423343360424042,
+ "learning_rate": 0.0006,
+ "loss": 3.836228370666504,
+ "step": 1850
+ },
+ {
+ "epoch": 25.712975098296198,
+ "grad_norm": 0.23816974461078644,
+ "learning_rate": 0.0006,
+ "loss": 3.8380274772644043,
+ "step": 1851
+ },
+ {
+ "epoch": 25.72695500218436,
+ "grad_norm": 0.22465108335018158,
+ "learning_rate": 0.0006,
+ "loss": 3.8496339321136475,
+ "step": 1852
+ },
+ {
+ "epoch": 25.74093490607252,
+ "grad_norm": 0.20792442560195923,
+ "learning_rate": 0.0006,
+ "loss": 3.797853946685791,
+ "step": 1853
+ },
+ {
+ "epoch": 25.75491480996068,
+ "grad_norm": 0.20770230889320374,
+ "learning_rate": 0.0006,
+ "loss": 3.842322826385498,
+ "step": 1854
+ },
+ {
+ "epoch": 25.76889471384884,
+ "grad_norm": 0.1928192526102066,
+ "learning_rate": 0.0006,
+ "loss": 3.836540699005127,
+ "step": 1855
+ },
+ {
+ "epoch": 25.782874617737004,
+ "grad_norm": 0.19045178592205048,
+ "learning_rate": 0.0006,
+ "loss": 3.7758889198303223,
+ "step": 1856
+ },
+ {
+ "epoch": 25.796854521625164,
+ "grad_norm": 0.205548495054245,
+ "learning_rate": 0.0006,
+ "loss": 3.8244709968566895,
+ "step": 1857
+ },
+ {
+ "epoch": 25.810834425513324,
+ "grad_norm": 0.20968270301818848,
+ "learning_rate": 0.0006,
+ "loss": 3.8376216888427734,
+ "step": 1858
+ },
+ {
+ "epoch": 25.824814329401484,
+ "grad_norm": 0.18917354941368103,
+ "learning_rate": 0.0006,
+ "loss": 3.8497915267944336,
+ "step": 1859
+ },
+ {
+ "epoch": 25.838794233289647,
+ "grad_norm": 0.2050701528787613,
+ "learning_rate": 0.0006,
+ "loss": 3.819628953933716,
+ "step": 1860
+ },
+ {
+ "epoch": 25.852774137177807,
+ "grad_norm": 0.1981319785118103,
+ "learning_rate": 0.0006,
+ "loss": 3.8007922172546387,
+ "step": 1861
+ },
+ {
+ "epoch": 25.866754041065967,
+ "grad_norm": 0.19055861234664917,
+ "learning_rate": 0.0006,
+ "loss": 3.8304519653320312,
+ "step": 1862
+ },
+ {
+ "epoch": 25.88073394495413,
+ "grad_norm": 0.19255517423152924,
+ "learning_rate": 0.0006,
+ "loss": 3.833280563354492,
+ "step": 1863
+ },
+ {
+ "epoch": 25.89471384884229,
+ "grad_norm": 0.19059430062770844,
+ "learning_rate": 0.0006,
+ "loss": 3.813796281814575,
+ "step": 1864
+ },
+ {
+ "epoch": 25.90869375273045,
+ "grad_norm": 0.18581309914588928,
+ "learning_rate": 0.0006,
+ "loss": 3.8211798667907715,
+ "step": 1865
+ },
+ {
+ "epoch": 25.92267365661861,
+ "grad_norm": 0.20181003212928772,
+ "learning_rate": 0.0006,
+ "loss": 3.8380484580993652,
+ "step": 1866
+ },
+ {
+ "epoch": 25.936653560506773,
+ "grad_norm": 0.22334498167037964,
+ "learning_rate": 0.0006,
+ "loss": 3.8294434547424316,
+ "step": 1867
+ },
+ {
+ "epoch": 25.950633464394933,
+ "grad_norm": 0.20456703007221222,
+ "learning_rate": 0.0006,
+ "loss": 3.819223642349243,
+ "step": 1868
+ },
+ {
+ "epoch": 25.964613368283093,
+ "grad_norm": 0.1885606348514557,
+ "learning_rate": 0.0006,
+ "loss": 3.8110103607177734,
+ "step": 1869
+ },
+ {
+ "epoch": 25.978593272171253,
+ "grad_norm": 0.18862110376358032,
+ "learning_rate": 0.0006,
+ "loss": 3.788691997528076,
+ "step": 1870
+ },
+ {
+ "epoch": 25.992573176059416,
+ "grad_norm": 0.19802744686603546,
+ "learning_rate": 0.0006,
+ "loss": 3.8423619270324707,
+ "step": 1871
+ },
+ {
+ "epoch": 26.0,
+ "grad_norm": 0.23762032389640808,
+ "learning_rate": 0.0006,
+ "loss": 3.7848567962646484,
+ "step": 1872
+ },
+ {
+ "epoch": 26.0,
+ "eval_loss": 4.054965019226074,
+ "eval_runtime": 44.2423,
+ "eval_samples_per_second": 55.196,
+ "eval_steps_per_second": 3.458,
+ "step": 1872
+ },
+ {
+ "epoch": 26.01397990388816,
+ "grad_norm": 0.21533054113388062,
+ "learning_rate": 0.0006,
+ "loss": 3.8123154640197754,
+ "step": 1873
+ },
+ {
+ "epoch": 26.027959807776323,
+ "grad_norm": 0.25094854831695557,
+ "learning_rate": 0.0006,
+ "loss": 3.7847447395324707,
+ "step": 1874
+ },
+ {
+ "epoch": 26.041939711664483,
+ "grad_norm": 0.24042077362537384,
+ "learning_rate": 0.0006,
+ "loss": 3.8033599853515625,
+ "step": 1875
+ },
+ {
+ "epoch": 26.055919615552643,
+ "grad_norm": 0.2425149381160736,
+ "learning_rate": 0.0006,
+ "loss": 3.7828550338745117,
+ "step": 1876
+ },
+ {
+ "epoch": 26.069899519440803,
+ "grad_norm": 0.2300514280796051,
+ "learning_rate": 0.0006,
+ "loss": 3.750882148742676,
+ "step": 1877
+ },
+ {
+ "epoch": 26.083879423328966,
+ "grad_norm": 0.2513943612575531,
+ "learning_rate": 0.0006,
+ "loss": 3.800323963165283,
+ "step": 1878
+ },
+ {
+ "epoch": 26.097859327217126,
+ "grad_norm": 0.2536966800689697,
+ "learning_rate": 0.0006,
+ "loss": 3.8198962211608887,
+ "step": 1879
+ },
+ {
+ "epoch": 26.111839231105286,
+ "grad_norm": 0.24483931064605713,
+ "learning_rate": 0.0006,
+ "loss": 3.825563907623291,
+ "step": 1880
+ },
+ {
+ "epoch": 26.125819134993446,
+ "grad_norm": 0.2502584755420685,
+ "learning_rate": 0.0006,
+ "loss": 3.78756046295166,
+ "step": 1881
+ },
+ {
+ "epoch": 26.13979903888161,
+ "grad_norm": 0.2695745527744293,
+ "learning_rate": 0.0006,
+ "loss": 3.8205409049987793,
+ "step": 1882
+ },
+ {
+ "epoch": 26.15377894276977,
+ "grad_norm": 0.2873472273349762,
+ "learning_rate": 0.0006,
+ "loss": 3.7880778312683105,
+ "step": 1883
+ },
+ {
+ "epoch": 26.16775884665793,
+ "grad_norm": 0.28609949350357056,
+ "learning_rate": 0.0006,
+ "loss": 3.788517951965332,
+ "step": 1884
+ },
+ {
+ "epoch": 26.18173875054609,
+ "grad_norm": 0.28352269530296326,
+ "learning_rate": 0.0006,
+ "loss": 3.778015613555908,
+ "step": 1885
+ },
+ {
+ "epoch": 26.195718654434252,
+ "grad_norm": 0.27055084705352783,
+ "learning_rate": 0.0006,
+ "loss": 3.7857203483581543,
+ "step": 1886
+ },
+ {
+ "epoch": 26.209698558322412,
+ "grad_norm": 0.255647748708725,
+ "learning_rate": 0.0006,
+ "loss": 3.791355609893799,
+ "step": 1887
+ },
+ {
+ "epoch": 26.22367846221057,
+ "grad_norm": 0.22624439001083374,
+ "learning_rate": 0.0006,
+ "loss": 3.7624831199645996,
+ "step": 1888
+ },
+ {
+ "epoch": 26.23765836609873,
+ "grad_norm": 0.2283596396446228,
+ "learning_rate": 0.0006,
+ "loss": 3.8052897453308105,
+ "step": 1889
+ },
+ {
+ "epoch": 26.251638269986895,
+ "grad_norm": 0.2336510866880417,
+ "learning_rate": 0.0006,
+ "loss": 3.789015054702759,
+ "step": 1890
+ },
+ {
+ "epoch": 26.265618173875055,
+ "grad_norm": 0.24107608199119568,
+ "learning_rate": 0.0006,
+ "loss": 3.756551742553711,
+ "step": 1891
+ },
+ {
+ "epoch": 26.279598077763215,
+ "grad_norm": 0.22438564896583557,
+ "learning_rate": 0.0006,
+ "loss": 3.797952651977539,
+ "step": 1892
+ },
+ {
+ "epoch": 26.293577981651374,
+ "grad_norm": 0.24594341218471527,
+ "learning_rate": 0.0006,
+ "loss": 3.7925708293914795,
+ "step": 1893
+ },
+ {
+ "epoch": 26.307557885539538,
+ "grad_norm": 0.23314352333545685,
+ "learning_rate": 0.0006,
+ "loss": 3.792447328567505,
+ "step": 1894
+ },
+ {
+ "epoch": 26.321537789427698,
+ "grad_norm": 0.20870383083820343,
+ "learning_rate": 0.0006,
+ "loss": 3.7888340950012207,
+ "step": 1895
+ },
+ {
+ "epoch": 26.335517693315857,
+ "grad_norm": 0.206504687666893,
+ "learning_rate": 0.0006,
+ "loss": 3.7856602668762207,
+ "step": 1896
+ },
+ {
+ "epoch": 26.34949759720402,
+ "grad_norm": 0.20193266868591309,
+ "learning_rate": 0.0006,
+ "loss": 3.810800552368164,
+ "step": 1897
+ },
+ {
+ "epoch": 26.36347750109218,
+ "grad_norm": 0.2143869698047638,
+ "learning_rate": 0.0006,
+ "loss": 3.818742275238037,
+ "step": 1898
+ },
+ {
+ "epoch": 26.37745740498034,
+ "grad_norm": 0.21388593316078186,
+ "learning_rate": 0.0006,
+ "loss": 3.7576632499694824,
+ "step": 1899
+ },
+ {
+ "epoch": 26.3914373088685,
+ "grad_norm": 0.1933414787054062,
+ "learning_rate": 0.0006,
+ "loss": 3.802579879760742,
+ "step": 1900
+ },
+ {
+ "epoch": 26.405417212756664,
+ "grad_norm": 0.18144549429416656,
+ "learning_rate": 0.0006,
+ "loss": 3.7830452919006348,
+ "step": 1901
+ },
+ {
+ "epoch": 26.419397116644824,
+ "grad_norm": 0.20027601718902588,
+ "learning_rate": 0.0006,
+ "loss": 3.8112521171569824,
+ "step": 1902
+ },
+ {
+ "epoch": 26.433377020532983,
+ "grad_norm": 0.19402910768985748,
+ "learning_rate": 0.0006,
+ "loss": 3.778012990951538,
+ "step": 1903
+ },
+ {
+ "epoch": 26.447356924421143,
+ "grad_norm": 0.19020743668079376,
+ "learning_rate": 0.0006,
+ "loss": 3.823355197906494,
+ "step": 1904
+ },
+ {
+ "epoch": 26.461336828309307,
+ "grad_norm": 0.1885242760181427,
+ "learning_rate": 0.0006,
+ "loss": 3.782108783721924,
+ "step": 1905
+ },
+ {
+ "epoch": 26.475316732197467,
+ "grad_norm": 0.2024235874414444,
+ "learning_rate": 0.0006,
+ "loss": 3.810448408126831,
+ "step": 1906
+ },
+ {
+ "epoch": 26.489296636085626,
+ "grad_norm": 0.21408027410507202,
+ "learning_rate": 0.0006,
+ "loss": 3.8185606002807617,
+ "step": 1907
+ },
+ {
+ "epoch": 26.503276539973786,
+ "grad_norm": 0.22810906171798706,
+ "learning_rate": 0.0006,
+ "loss": 3.8052706718444824,
+ "step": 1908
+ },
+ {
+ "epoch": 26.51725644386195,
+ "grad_norm": 0.21328197419643402,
+ "learning_rate": 0.0006,
+ "loss": 3.7858219146728516,
+ "step": 1909
+ },
+ {
+ "epoch": 26.53123634775011,
+ "grad_norm": 0.20843173563480377,
+ "learning_rate": 0.0006,
+ "loss": 3.8069310188293457,
+ "step": 1910
+ },
+ {
+ "epoch": 26.54521625163827,
+ "grad_norm": 0.2072986662387848,
+ "learning_rate": 0.0006,
+ "loss": 3.794975996017456,
+ "step": 1911
+ },
+ {
+ "epoch": 26.55919615552643,
+ "grad_norm": 0.2203216850757599,
+ "learning_rate": 0.0006,
+ "loss": 3.8070101737976074,
+ "step": 1912
+ },
+ {
+ "epoch": 26.573176059414592,
+ "grad_norm": 0.23449191451072693,
+ "learning_rate": 0.0006,
+ "loss": 3.828695774078369,
+ "step": 1913
+ },
+ {
+ "epoch": 26.587155963302752,
+ "grad_norm": 0.2222008854150772,
+ "learning_rate": 0.0006,
+ "loss": 3.781275749206543,
+ "step": 1914
+ },
+ {
+ "epoch": 26.601135867190912,
+ "grad_norm": 0.22328314185142517,
+ "learning_rate": 0.0006,
+ "loss": 3.7953736782073975,
+ "step": 1915
+ },
+ {
+ "epoch": 26.615115771079076,
+ "grad_norm": 0.2377961128950119,
+ "learning_rate": 0.0006,
+ "loss": 3.8428916931152344,
+ "step": 1916
+ },
+ {
+ "epoch": 26.629095674967235,
+ "grad_norm": 0.2546147108078003,
+ "learning_rate": 0.0006,
+ "loss": 3.7940590381622314,
+ "step": 1917
+ },
+ {
+ "epoch": 26.643075578855395,
+ "grad_norm": 0.24234509468078613,
+ "learning_rate": 0.0006,
+ "loss": 3.802234172821045,
+ "step": 1918
+ },
+ {
+ "epoch": 26.657055482743555,
+ "grad_norm": 0.21294651925563812,
+ "learning_rate": 0.0006,
+ "loss": 3.8159232139587402,
+ "step": 1919
+ },
+ {
+ "epoch": 26.67103538663172,
+ "grad_norm": 0.20008964836597443,
+ "learning_rate": 0.0006,
+ "loss": 3.796949863433838,
+ "step": 1920
+ },
+ {
+ "epoch": 26.68501529051988,
+ "grad_norm": 0.21031023561954498,
+ "learning_rate": 0.0006,
+ "loss": 3.8015570640563965,
+ "step": 1921
+ },
+ {
+ "epoch": 26.698995194408038,
+ "grad_norm": 0.2185603827238083,
+ "learning_rate": 0.0006,
+ "loss": 3.8022537231445312,
+ "step": 1922
+ },
+ {
+ "epoch": 26.712975098296198,
+ "grad_norm": 0.22957198321819305,
+ "learning_rate": 0.0006,
+ "loss": 3.7859907150268555,
+ "step": 1923
+ },
+ {
+ "epoch": 26.72695500218436,
+ "grad_norm": 0.23779156804084778,
+ "learning_rate": 0.0006,
+ "loss": 3.830345630645752,
+ "step": 1924
+ },
+ {
+ "epoch": 26.74093490607252,
+ "grad_norm": 0.23577193915843964,
+ "learning_rate": 0.0006,
+ "loss": 3.777338981628418,
+ "step": 1925
+ },
+ {
+ "epoch": 26.75491480996068,
+ "grad_norm": 0.2521933913230896,
+ "learning_rate": 0.0006,
+ "loss": 3.8215396404266357,
+ "step": 1926
+ },
+ {
+ "epoch": 26.76889471384884,
+ "grad_norm": 0.25050726532936096,
+ "learning_rate": 0.0006,
+ "loss": 3.817509651184082,
+ "step": 1927
+ },
+ {
+ "epoch": 26.782874617737004,
+ "grad_norm": 0.24442453682422638,
+ "learning_rate": 0.0006,
+ "loss": 3.8033013343811035,
+ "step": 1928
+ },
+ {
+ "epoch": 26.796854521625164,
+ "grad_norm": 0.2280828058719635,
+ "learning_rate": 0.0006,
+ "loss": 3.798625946044922,
+ "step": 1929
+ },
+ {
+ "epoch": 26.810834425513324,
+ "grad_norm": 0.23072117567062378,
+ "learning_rate": 0.0006,
+ "loss": 3.8109097480773926,
+ "step": 1930
+ },
+ {
+ "epoch": 26.824814329401484,
+ "grad_norm": 0.2690806984901428,
+ "learning_rate": 0.0006,
+ "loss": 3.7707223892211914,
+ "step": 1931
+ },
+ {
+ "epoch": 26.838794233289647,
+ "grad_norm": 0.24973517656326294,
+ "learning_rate": 0.0006,
+ "loss": 3.7788357734680176,
+ "step": 1932
+ },
+ {
+ "epoch": 26.852774137177807,
+ "grad_norm": 0.24221451580524445,
+ "learning_rate": 0.0006,
+ "loss": 3.8083114624023438,
+ "step": 1933
+ },
+ {
+ "epoch": 26.866754041065967,
+ "grad_norm": 0.23499037325382233,
+ "learning_rate": 0.0006,
+ "loss": 3.845512866973877,
+ "step": 1934
+ },
+ {
+ "epoch": 26.88073394495413,
+ "grad_norm": 0.2172643095254898,
+ "learning_rate": 0.0006,
+ "loss": 3.8171584606170654,
+ "step": 1935
+ },
+ {
+ "epoch": 26.89471384884229,
+ "grad_norm": 0.19935013353824615,
+ "learning_rate": 0.0006,
+ "loss": 3.808596611022949,
+ "step": 1936
+ },
+ {
+ "epoch": 26.90869375273045,
+ "grad_norm": 0.2077745944261551,
+ "learning_rate": 0.0006,
+ "loss": 3.842836856842041,
+ "step": 1937
+ },
+ {
+ "epoch": 26.92267365661861,
+ "grad_norm": 0.20017282664775848,
+ "learning_rate": 0.0006,
+ "loss": 3.791734457015991,
+ "step": 1938
+ },
+ {
+ "epoch": 26.936653560506773,
+ "grad_norm": 0.2082037627696991,
+ "learning_rate": 0.0006,
+ "loss": 3.7987842559814453,
+ "step": 1939
+ },
+ {
+ "epoch": 26.950633464394933,
+ "grad_norm": 0.21100632846355438,
+ "learning_rate": 0.0006,
+ "loss": 3.8033156394958496,
+ "step": 1940
+ },
+ {
+ "epoch": 26.964613368283093,
+ "grad_norm": 0.2091331034898758,
+ "learning_rate": 0.0006,
+ "loss": 3.8250908851623535,
+ "step": 1941
+ },
+ {
+ "epoch": 26.978593272171253,
+ "grad_norm": 0.19728544354438782,
+ "learning_rate": 0.0006,
+ "loss": 3.7934365272521973,
+ "step": 1942
+ },
+ {
+ "epoch": 26.992573176059416,
+ "grad_norm": 0.19266465306282043,
+ "learning_rate": 0.0006,
+ "loss": 3.8095879554748535,
+ "step": 1943
+ },
+ {
+ "epoch": 27.0,
+ "grad_norm": 0.2264554500579834,
+ "learning_rate": 0.0006,
+ "loss": 3.840135335922241,
+ "step": 1944
+ },
+ {
+ "epoch": 27.0,
+ "eval_loss": 4.046233654022217,
+ "eval_runtime": 44.0648,
+ "eval_samples_per_second": 55.418,
+ "eval_steps_per_second": 3.472,
+ "step": 1944
+ },
+ {
+ "epoch": 27.01397990388816,
+ "grad_norm": 0.24101831018924713,
+ "learning_rate": 0.0006,
+ "loss": 3.7463197708129883,
+ "step": 1945
+ },
+ {
+ "epoch": 27.027959807776323,
+ "grad_norm": 0.2917300760746002,
+ "learning_rate": 0.0006,
+ "loss": 3.769083261489868,
+ "step": 1946
+ },
+ {
+ "epoch": 27.041939711664483,
+ "grad_norm": 0.30864080786705017,
+ "learning_rate": 0.0006,
+ "loss": 3.7774248123168945,
+ "step": 1947
+ },
+ {
+ "epoch": 27.055919615552643,
+ "grad_norm": 0.28574317693710327,
+ "learning_rate": 0.0006,
+ "loss": 3.759530544281006,
+ "step": 1948
+ },
+ {
+ "epoch": 27.069899519440803,
+ "grad_norm": 0.23381628096103668,
+ "learning_rate": 0.0006,
+ "loss": 3.764347791671753,
+ "step": 1949
+ },
+ {
+ "epoch": 27.083879423328966,
+ "grad_norm": 0.2717961072921753,
+ "learning_rate": 0.0006,
+ "loss": 3.785306692123413,
+ "step": 1950
+ },
+ {
+ "epoch": 27.097859327217126,
+ "grad_norm": 0.2753375470638275,
+ "learning_rate": 0.0006,
+ "loss": 3.7511696815490723,
+ "step": 1951
+ },
+ {
+ "epoch": 27.111839231105286,
+ "grad_norm": 0.260250061750412,
+ "learning_rate": 0.0006,
+ "loss": 3.7775721549987793,
+ "step": 1952
+ },
+ {
+ "epoch": 27.125819134993446,
+ "grad_norm": 0.2462741732597351,
+ "learning_rate": 0.0006,
+ "loss": 3.775203227996826,
+ "step": 1953
+ },
+ {
+ "epoch": 27.13979903888161,
+ "grad_norm": 0.23599569499492645,
+ "learning_rate": 0.0006,
+ "loss": 3.7580947875976562,
+ "step": 1954
+ },
+ {
+ "epoch": 27.15377894276977,
+ "grad_norm": 0.21749968826770782,
+ "learning_rate": 0.0006,
+ "loss": 3.778254985809326,
+ "step": 1955
+ },
+ {
+ "epoch": 27.16775884665793,
+ "grad_norm": 0.22210343182086945,
+ "learning_rate": 0.0006,
+ "loss": 3.734727144241333,
+ "step": 1956
+ },
+ {
+ "epoch": 27.18173875054609,
+ "grad_norm": 0.23376141488552094,
+ "learning_rate": 0.0006,
+ "loss": 3.7892181873321533,
+ "step": 1957
+ },
+ {
+ "epoch": 27.195718654434252,
+ "grad_norm": 0.21751847863197327,
+ "learning_rate": 0.0006,
+ "loss": 3.801621913909912,
+ "step": 1958
+ },
+ {
+ "epoch": 27.209698558322412,
+ "grad_norm": 0.22995133697986603,
+ "learning_rate": 0.0006,
+ "loss": 3.8031363487243652,
+ "step": 1959
+ },
+ {
+ "epoch": 27.22367846221057,
+ "grad_norm": 0.22716350853443146,
+ "learning_rate": 0.0006,
+ "loss": 3.7591521739959717,
+ "step": 1960
+ },
+ {
+ "epoch": 27.23765836609873,
+ "grad_norm": 0.20819596946239471,
+ "learning_rate": 0.0006,
+ "loss": 3.7988929748535156,
+ "step": 1961
+ },
+ {
+ "epoch": 27.251638269986895,
+ "grad_norm": 0.19861504435539246,
+ "learning_rate": 0.0006,
+ "loss": 3.7752838134765625,
+ "step": 1962
+ },
+ {
+ "epoch": 27.265618173875055,
+ "grad_norm": 0.1959371268749237,
+ "learning_rate": 0.0006,
+ "loss": 3.7707290649414062,
+ "step": 1963
+ },
+ {
+ "epoch": 27.279598077763215,
+ "grad_norm": 0.18772225081920624,
+ "learning_rate": 0.0006,
+ "loss": 3.7714555263519287,
+ "step": 1964
+ },
+ {
+ "epoch": 27.293577981651374,
+ "grad_norm": 0.20839282870292664,
+ "learning_rate": 0.0006,
+ "loss": 3.7857258319854736,
+ "step": 1965
+ },
+ {
+ "epoch": 27.307557885539538,
+ "grad_norm": 0.22521957755088806,
+ "learning_rate": 0.0006,
+ "loss": 3.776909351348877,
+ "step": 1966
+ },
+ {
+ "epoch": 27.321537789427698,
+ "grad_norm": 0.19533076882362366,
+ "learning_rate": 0.0006,
+ "loss": 3.8152523040771484,
+ "step": 1967
+ },
+ {
+ "epoch": 27.335517693315857,
+ "grad_norm": 0.18678881227970123,
+ "learning_rate": 0.0006,
+ "loss": 3.751555919647217,
+ "step": 1968
+ },
+ {
+ "epoch": 27.34949759720402,
+ "grad_norm": 0.18257129192352295,
+ "learning_rate": 0.0006,
+ "loss": 3.7701754570007324,
+ "step": 1969
+ },
+ {
+ "epoch": 27.36347750109218,
+ "grad_norm": 0.18191468715667725,
+ "learning_rate": 0.0006,
+ "loss": 3.817451238632202,
+ "step": 1970
+ },
+ {
+ "epoch": 27.37745740498034,
+ "grad_norm": 0.18665607273578644,
+ "learning_rate": 0.0006,
+ "loss": 3.78645658493042,
+ "step": 1971
+ },
+ {
+ "epoch": 27.3914373088685,
+ "grad_norm": 0.19604510068893433,
+ "learning_rate": 0.0006,
+ "loss": 3.7735626697540283,
+ "step": 1972
+ },
+ {
+ "epoch": 27.405417212756664,
+ "grad_norm": 0.20136640965938568,
+ "learning_rate": 0.0006,
+ "loss": 3.77310848236084,
+ "step": 1973
+ },
+ {
+ "epoch": 27.419397116644824,
+ "grad_norm": 0.19314947724342346,
+ "learning_rate": 0.0006,
+ "loss": 3.8084068298339844,
+ "step": 1974
+ },
+ {
+ "epoch": 27.433377020532983,
+ "grad_norm": 0.20761604607105255,
+ "learning_rate": 0.0006,
+ "loss": 3.80732798576355,
+ "step": 1975
+ },
+ {
+ "epoch": 27.447356924421143,
+ "grad_norm": 0.2239987850189209,
+ "learning_rate": 0.0006,
+ "loss": 3.7950329780578613,
+ "step": 1976
+ },
+ {
+ "epoch": 27.461336828309307,
+ "grad_norm": 0.22146444022655487,
+ "learning_rate": 0.0006,
+ "loss": 3.7957234382629395,
+ "step": 1977
+ },
+ {
+ "epoch": 27.475316732197467,
+ "grad_norm": 0.23218585550785065,
+ "learning_rate": 0.0006,
+ "loss": 3.806377410888672,
+ "step": 1978
+ },
+ {
+ "epoch": 27.489296636085626,
+ "grad_norm": 0.23549026250839233,
+ "learning_rate": 0.0006,
+ "loss": 3.7833383083343506,
+ "step": 1979
+ },
+ {
+ "epoch": 27.503276539973786,
+ "grad_norm": 0.24219457805156708,
+ "learning_rate": 0.0006,
+ "loss": 3.8154187202453613,
+ "step": 1980
+ },
+ {
+ "epoch": 27.51725644386195,
+ "grad_norm": 0.23703953623771667,
+ "learning_rate": 0.0006,
+ "loss": 3.7846405506134033,
+ "step": 1981
+ },
+ {
+ "epoch": 27.53123634775011,
+ "grad_norm": 0.23596109449863434,
+ "learning_rate": 0.0006,
+ "loss": 3.7698163986206055,
+ "step": 1982
+ },
+ {
+ "epoch": 27.54521625163827,
+ "grad_norm": 0.23073506355285645,
+ "learning_rate": 0.0006,
+ "loss": 3.8114185333251953,
+ "step": 1983
+ },
+ {
+ "epoch": 27.55919615552643,
+ "grad_norm": 0.24761143326759338,
+ "learning_rate": 0.0006,
+ "loss": 3.7548117637634277,
+ "step": 1984
+ },
+ {
+ "epoch": 27.573176059414592,
+ "grad_norm": 0.2834068238735199,
+ "learning_rate": 0.0006,
+ "loss": 3.7990212440490723,
+ "step": 1985
+ },
+ {
+ "epoch": 27.587155963302752,
+ "grad_norm": 0.29774922132492065,
+ "learning_rate": 0.0006,
+ "loss": 3.7845072746276855,
+ "step": 1986
+ },
+ {
+ "epoch": 27.601135867190912,
+ "grad_norm": 0.2732089161872864,
+ "learning_rate": 0.0006,
+ "loss": 3.8050694465637207,
+ "step": 1987
+ },
+ {
+ "epoch": 27.615115771079076,
+ "grad_norm": 0.24433180689811707,
+ "learning_rate": 0.0006,
+ "loss": 3.762704372406006,
+ "step": 1988
+ },
+ {
+ "epoch": 27.629095674967235,
+ "grad_norm": 0.21340419352054596,
+ "learning_rate": 0.0006,
+ "loss": 3.826023817062378,
+ "step": 1989
+ },
+ {
+ "epoch": 27.643075578855395,
+ "grad_norm": 0.22518761456012726,
+ "learning_rate": 0.0006,
+ "loss": 3.7823970317840576,
+ "step": 1990
+ },
+ {
+ "epoch": 27.657055482743555,
+ "grad_norm": 0.2196940928697586,
+ "learning_rate": 0.0006,
+ "loss": 3.787463426589966,
+ "step": 1991
+ },
+ {
+ "epoch": 27.67103538663172,
+ "grad_norm": 0.21906471252441406,
+ "learning_rate": 0.0006,
+ "loss": 3.7856104373931885,
+ "step": 1992
+ },
+ {
+ "epoch": 27.68501529051988,
+ "grad_norm": 0.2280956357717514,
+ "learning_rate": 0.0006,
+ "loss": 3.7829794883728027,
+ "step": 1993
+ },
+ {
+ "epoch": 27.698995194408038,
+ "grad_norm": 0.22567005455493927,
+ "learning_rate": 0.0006,
+ "loss": 3.762316942214966,
+ "step": 1994
+ },
+ {
+ "epoch": 27.712975098296198,
+ "grad_norm": 0.21703341603279114,
+ "learning_rate": 0.0006,
+ "loss": 3.772535800933838,
+ "step": 1995
+ },
+ {
+ "epoch": 27.72695500218436,
+ "grad_norm": 0.20586732029914856,
+ "learning_rate": 0.0006,
+ "loss": 3.775930881500244,
+ "step": 1996
+ },
+ {
+ "epoch": 27.74093490607252,
+ "grad_norm": 0.2126319408416748,
+ "learning_rate": 0.0006,
+ "loss": 3.793353796005249,
+ "step": 1997
+ },
+ {
+ "epoch": 27.75491480996068,
+ "grad_norm": 0.19664280116558075,
+ "learning_rate": 0.0006,
+ "loss": 3.7721195220947266,
+ "step": 1998
+ },
+ {
+ "epoch": 27.76889471384884,
+ "grad_norm": 0.17695854604244232,
+ "learning_rate": 0.0006,
+ "loss": 3.7931227684020996,
+ "step": 1999
+ },
+ {
+ "epoch": 27.782874617737004,
+ "grad_norm": 0.1899620145559311,
+ "learning_rate": 0.0006,
+ "loss": 3.798692226409912,
+ "step": 2000
+ },
+ {
+ "epoch": 27.796854521625164,
+ "grad_norm": 0.20334762334823608,
+ "learning_rate": 0.0006,
+ "loss": 3.774670124053955,
+ "step": 2001
+ },
+ {
+ "epoch": 27.810834425513324,
+ "grad_norm": 0.21150588989257812,
+ "learning_rate": 0.0006,
+ "loss": 3.803859233856201,
+ "step": 2002
+ },
+ {
+ "epoch": 27.824814329401484,
+ "grad_norm": 0.20425523817539215,
+ "learning_rate": 0.0006,
+ "loss": 3.810410976409912,
+ "step": 2003
+ },
+ {
+ "epoch": 27.838794233289647,
+ "grad_norm": 0.20468413829803467,
+ "learning_rate": 0.0006,
+ "loss": 3.800917625427246,
+ "step": 2004
+ },
+ {
+ "epoch": 27.852774137177807,
+ "grad_norm": 0.2113286256790161,
+ "learning_rate": 0.0006,
+ "loss": 3.7581989765167236,
+ "step": 2005
+ },
+ {
+ "epoch": 27.866754041065967,
+ "grad_norm": 0.2098054736852646,
+ "learning_rate": 0.0006,
+ "loss": 3.7921502590179443,
+ "step": 2006
+ },
+ {
+ "epoch": 27.88073394495413,
+ "grad_norm": 0.21701586246490479,
+ "learning_rate": 0.0006,
+ "loss": 3.8166770935058594,
+ "step": 2007
+ },
+ {
+ "epoch": 27.89471384884229,
+ "grad_norm": 0.2086625099182129,
+ "learning_rate": 0.0006,
+ "loss": 3.7732229232788086,
+ "step": 2008
+ },
+ {
+ "epoch": 27.90869375273045,
+ "grad_norm": 0.2186812162399292,
+ "learning_rate": 0.0006,
+ "loss": 3.8067402839660645,
+ "step": 2009
+ },
+ {
+ "epoch": 27.92267365661861,
+ "grad_norm": 0.2168985903263092,
+ "learning_rate": 0.0006,
+ "loss": 3.798159122467041,
+ "step": 2010
+ },
+ {
+ "epoch": 27.936653560506773,
+ "grad_norm": 0.23713620007038116,
+ "learning_rate": 0.0006,
+ "loss": 3.7958693504333496,
+ "step": 2011
+ },
+ {
+ "epoch": 27.950633464394933,
+ "grad_norm": 0.23592841625213623,
+ "learning_rate": 0.0006,
+ "loss": 3.795126438140869,
+ "step": 2012
+ },
+ {
+ "epoch": 27.964613368283093,
+ "grad_norm": 0.22210197150707245,
+ "learning_rate": 0.0006,
+ "loss": 3.791013240814209,
+ "step": 2013
+ },
+ {
+ "epoch": 27.978593272171253,
+ "grad_norm": 0.23190008103847504,
+ "learning_rate": 0.0006,
+ "loss": 3.813408374786377,
+ "step": 2014
+ },
+ {
+ "epoch": 27.992573176059416,
+ "grad_norm": 0.22158131003379822,
+ "learning_rate": 0.0006,
+ "loss": 3.7975716590881348,
+ "step": 2015
+ },
+ {
+ "epoch": 28.0,
+ "grad_norm": 0.2300519198179245,
+ "learning_rate": 0.0006,
+ "loss": 3.776214838027954,
+ "step": 2016
+ },
+ {
+ "epoch": 28.0,
+ "eval_loss": 4.04406213760376,
+ "eval_runtime": 44.0285,
+ "eval_samples_per_second": 55.464,
+ "eval_steps_per_second": 3.475,
+ "step": 2016
+ },
+ {
+ "epoch": 28.01397990388816,
+ "grad_norm": 0.21007688343524933,
+ "learning_rate": 0.0006,
+ "loss": 3.7366907596588135,
+ "step": 2017
+ },
+ {
+ "epoch": 28.027959807776323,
+ "grad_norm": 0.1941644549369812,
+ "learning_rate": 0.0006,
+ "loss": 3.744373321533203,
+ "step": 2018
+ },
+ {
+ "epoch": 28.041939711664483,
+ "grad_norm": 0.21308493614196777,
+ "learning_rate": 0.0006,
+ "loss": 3.7650012969970703,
+ "step": 2019
+ },
+ {
+ "epoch": 28.055919615552643,
+ "grad_norm": 0.20114868879318237,
+ "learning_rate": 0.0006,
+ "loss": 3.7652382850646973,
+ "step": 2020
+ },
+ {
+ "epoch": 28.069899519440803,
+ "grad_norm": 0.20266319811344147,
+ "learning_rate": 0.0006,
+ "loss": 3.7710442543029785,
+ "step": 2021
+ },
+ {
+ "epoch": 28.083879423328966,
+ "grad_norm": 0.205102801322937,
+ "learning_rate": 0.0006,
+ "loss": 3.7515463829040527,
+ "step": 2022
+ },
+ {
+ "epoch": 28.097859327217126,
+ "grad_norm": 0.22002041339874268,
+ "learning_rate": 0.0006,
+ "loss": 3.762019157409668,
+ "step": 2023
+ },
+ {
+ "epoch": 28.111839231105286,
+ "grad_norm": 0.2063235342502594,
+ "learning_rate": 0.0006,
+ "loss": 3.765453338623047,
+ "step": 2024
+ },
+ {
+ "epoch": 28.125819134993446,
+ "grad_norm": 0.19145619869232178,
+ "learning_rate": 0.0006,
+ "loss": 3.769411325454712,
+ "step": 2025
+ },
+ {
+ "epoch": 28.13979903888161,
+ "grad_norm": 0.19308455288410187,
+ "learning_rate": 0.0006,
+ "loss": 3.8009989261627197,
+ "step": 2026
+ },
+ {
+ "epoch": 28.15377894276977,
+ "grad_norm": 0.220510333776474,
+ "learning_rate": 0.0006,
+ "loss": 3.7582602500915527,
+ "step": 2027
+ },
+ {
+ "epoch": 28.16775884665793,
+ "grad_norm": 0.22855883836746216,
+ "learning_rate": 0.0006,
+ "loss": 3.803917407989502,
+ "step": 2028
+ },
+ {
+ "epoch": 28.18173875054609,
+ "grad_norm": 0.24206340312957764,
+ "learning_rate": 0.0006,
+ "loss": 3.764101028442383,
+ "step": 2029
+ },
+ {
+ "epoch": 28.195718654434252,
+ "grad_norm": 0.23973612487316132,
+ "learning_rate": 0.0006,
+ "loss": 3.787308931350708,
+ "step": 2030
+ },
+ {
+ "epoch": 28.209698558322412,
+ "grad_norm": 0.21400697529315948,
+ "learning_rate": 0.0006,
+ "loss": 3.7706117630004883,
+ "step": 2031
+ },
+ {
+ "epoch": 28.22367846221057,
+ "grad_norm": 0.21983976662158966,
+ "learning_rate": 0.0006,
+ "loss": 3.772731304168701,
+ "step": 2032
+ },
+ {
+ "epoch": 28.23765836609873,
+ "grad_norm": 0.22427113354206085,
+ "learning_rate": 0.0006,
+ "loss": 3.7724413871765137,
+ "step": 2033
+ },
+ {
+ "epoch": 28.251638269986895,
+ "grad_norm": 0.23665079474449158,
+ "learning_rate": 0.0006,
+ "loss": 3.769845962524414,
+ "step": 2034
+ },
+ {
+ "epoch": 28.265618173875055,
+ "grad_norm": 0.22663180530071259,
+ "learning_rate": 0.0006,
+ "loss": 3.764380931854248,
+ "step": 2035
+ },
+ {
+ "epoch": 28.279598077763215,
+ "grad_norm": 0.21094927191734314,
+ "learning_rate": 0.0006,
+ "loss": 3.7598326206207275,
+ "step": 2036
+ },
+ {
+ "epoch": 28.293577981651374,
+ "grad_norm": 0.20419518649578094,
+ "learning_rate": 0.0006,
+ "loss": 3.7737207412719727,
+ "step": 2037
+ },
+ {
+ "epoch": 28.307557885539538,
+ "grad_norm": 0.2171909660100937,
+ "learning_rate": 0.0006,
+ "loss": 3.7499468326568604,
+ "step": 2038
+ },
+ {
+ "epoch": 28.321537789427698,
+ "grad_norm": 0.22749298810958862,
+ "learning_rate": 0.0006,
+ "loss": 3.767536163330078,
+ "step": 2039
+ },
+ {
+ "epoch": 28.335517693315857,
+ "grad_norm": 0.22821909189224243,
+ "learning_rate": 0.0006,
+ "loss": 3.744386672973633,
+ "step": 2040
+ },
+ {
+ "epoch": 28.34949759720402,
+ "grad_norm": 0.2227880209684372,
+ "learning_rate": 0.0006,
+ "loss": 3.72955322265625,
+ "step": 2041
+ },
+ {
+ "epoch": 28.36347750109218,
+ "grad_norm": 0.22204327583312988,
+ "learning_rate": 0.0006,
+ "loss": 3.793854236602783,
+ "step": 2042
+ },
+ {
+ "epoch": 28.37745740498034,
+ "grad_norm": 0.21621409058570862,
+ "learning_rate": 0.0006,
+ "loss": 3.775379180908203,
+ "step": 2043
+ },
+ {
+ "epoch": 28.3914373088685,
+ "grad_norm": 0.2439221441745758,
+ "learning_rate": 0.0006,
+ "loss": 3.727464199066162,
+ "step": 2044
+ },
+ {
+ "epoch": 28.405417212756664,
+ "grad_norm": 0.24408605694770813,
+ "learning_rate": 0.0006,
+ "loss": 3.761747360229492,
+ "step": 2045
+ },
+ {
+ "epoch": 28.419397116644824,
+ "grad_norm": 0.26118648052215576,
+ "learning_rate": 0.0006,
+ "loss": 3.7587313652038574,
+ "step": 2046
+ },
+ {
+ "epoch": 28.433377020532983,
+ "grad_norm": 0.25948166847229004,
+ "learning_rate": 0.0006,
+ "loss": 3.7698440551757812,
+ "step": 2047
+ },
+ {
+ "epoch": 28.447356924421143,
+ "grad_norm": 0.26413780450820923,
+ "learning_rate": 0.0006,
+ "loss": 3.799107551574707,
+ "step": 2048
+ },
+ {
+ "epoch": 28.461336828309307,
+ "grad_norm": 0.2687148153781891,
+ "learning_rate": 0.0006,
+ "loss": 3.7564382553100586,
+ "step": 2049
+ },
+ {
+ "epoch": 28.475316732197467,
+ "grad_norm": 0.2676694691181183,
+ "learning_rate": 0.0006,
+ "loss": 3.754267692565918,
+ "step": 2050
+ },
+ {
+ "epoch": 28.489296636085626,
+ "grad_norm": 0.27275168895721436,
+ "learning_rate": 0.0006,
+ "loss": 3.802988052368164,
+ "step": 2051
+ },
+ {
+ "epoch": 28.503276539973786,
+ "grad_norm": 0.28783538937568665,
+ "learning_rate": 0.0006,
+ "loss": 3.762540817260742,
+ "step": 2052
+ },
+ {
+ "epoch": 28.51725644386195,
+ "grad_norm": 0.2628997266292572,
+ "learning_rate": 0.0006,
+ "loss": 3.7933349609375,
+ "step": 2053
+ },
+ {
+ "epoch": 28.53123634775011,
+ "grad_norm": 0.2498515099287033,
+ "learning_rate": 0.0006,
+ "loss": 3.7773094177246094,
+ "step": 2054
+ },
+ {
+ "epoch": 28.54521625163827,
+ "grad_norm": 0.22625942528247833,
+ "learning_rate": 0.0006,
+ "loss": 3.803457021713257,
+ "step": 2055
+ },
+ {
+ "epoch": 28.55919615552643,
+ "grad_norm": 0.21488751471042633,
+ "learning_rate": 0.0006,
+ "loss": 3.78924560546875,
+ "step": 2056
+ },
+ {
+ "epoch": 28.573176059414592,
+ "grad_norm": 0.22041267156600952,
+ "learning_rate": 0.0006,
+ "loss": 3.79361629486084,
+ "step": 2057
+ },
+ {
+ "epoch": 28.587155963302752,
+ "grad_norm": 0.23164816200733185,
+ "learning_rate": 0.0006,
+ "loss": 3.735037326812744,
+ "step": 2058
+ },
+ {
+ "epoch": 28.601135867190912,
+ "grad_norm": 0.22371916472911835,
+ "learning_rate": 0.0006,
+ "loss": 3.731417179107666,
+ "step": 2059
+ },
+ {
+ "epoch": 28.615115771079076,
+ "grad_norm": 0.2280314862728119,
+ "learning_rate": 0.0006,
+ "loss": 3.796154499053955,
+ "step": 2060
+ },
+ {
+ "epoch": 28.629095674967235,
+ "grad_norm": 0.21386604011058807,
+ "learning_rate": 0.0006,
+ "loss": 3.778648614883423,
+ "step": 2061
+ },
+ {
+ "epoch": 28.643075578855395,
+ "grad_norm": 0.20433050394058228,
+ "learning_rate": 0.0006,
+ "loss": 3.772826910018921,
+ "step": 2062
+ },
+ {
+ "epoch": 28.657055482743555,
+ "grad_norm": 0.2049262523651123,
+ "learning_rate": 0.0006,
+ "loss": 3.7410364151000977,
+ "step": 2063
+ },
+ {
+ "epoch": 28.67103538663172,
+ "grad_norm": 0.22041259706020355,
+ "learning_rate": 0.0006,
+ "loss": 3.796724319458008,
+ "step": 2064
+ },
+ {
+ "epoch": 28.68501529051988,
+ "grad_norm": 0.2018800675868988,
+ "learning_rate": 0.0006,
+ "loss": 3.775252342224121,
+ "step": 2065
+ },
+ {
+ "epoch": 28.698995194408038,
+ "grad_norm": 0.2159280925989151,
+ "learning_rate": 0.0006,
+ "loss": 3.766021251678467,
+ "step": 2066
+ },
+ {
+ "epoch": 28.712975098296198,
+ "grad_norm": 0.2072775512933731,
+ "learning_rate": 0.0006,
+ "loss": 3.765397548675537,
+ "step": 2067
+ },
+ {
+ "epoch": 28.72695500218436,
+ "grad_norm": 0.19592848420143127,
+ "learning_rate": 0.0006,
+ "loss": 3.8151614665985107,
+ "step": 2068
+ },
+ {
+ "epoch": 28.74093490607252,
+ "grad_norm": 0.19266322255134583,
+ "learning_rate": 0.0006,
+ "loss": 3.774945020675659,
+ "step": 2069
+ },
+ {
+ "epoch": 28.75491480996068,
+ "grad_norm": 0.19442392885684967,
+ "learning_rate": 0.0006,
+ "loss": 3.816283702850342,
+ "step": 2070
+ },
+ {
+ "epoch": 28.76889471384884,
+ "grad_norm": 0.19080746173858643,
+ "learning_rate": 0.0006,
+ "loss": 3.7784247398376465,
+ "step": 2071
+ },
+ {
+ "epoch": 28.782874617737004,
+ "grad_norm": 0.20150451362133026,
+ "learning_rate": 0.0006,
+ "loss": 3.7710249423980713,
+ "step": 2072
+ },
+ {
+ "epoch": 28.796854521625164,
+ "grad_norm": 0.1835816204547882,
+ "learning_rate": 0.0006,
+ "loss": 3.750032901763916,
+ "step": 2073
+ },
+ {
+ "epoch": 28.810834425513324,
+ "grad_norm": 0.1855502873659134,
+ "learning_rate": 0.0006,
+ "loss": 3.7276318073272705,
+ "step": 2074
+ },
+ {
+ "epoch": 28.824814329401484,
+ "grad_norm": 0.18683169782161713,
+ "learning_rate": 0.0006,
+ "loss": 3.7516555786132812,
+ "step": 2075
+ },
+ {
+ "epoch": 28.838794233289647,
+ "grad_norm": 0.2034577578306198,
+ "learning_rate": 0.0006,
+ "loss": 3.749875068664551,
+ "step": 2076
+ },
+ {
+ "epoch": 28.852774137177807,
+ "grad_norm": 0.2234230488538742,
+ "learning_rate": 0.0006,
+ "loss": 3.791429042816162,
+ "step": 2077
+ },
+ {
+ "epoch": 28.866754041065967,
+ "grad_norm": 0.25600525736808777,
+ "learning_rate": 0.0006,
+ "loss": 3.7769298553466797,
+ "step": 2078
+ },
+ {
+ "epoch": 28.88073394495413,
+ "grad_norm": 0.2741529643535614,
+ "learning_rate": 0.0006,
+ "loss": 3.771848201751709,
+ "step": 2079
+ },
+ {
+ "epoch": 28.89471384884229,
+ "grad_norm": 0.2710304260253906,
+ "learning_rate": 0.0006,
+ "loss": 3.8235626220703125,
+ "step": 2080
+ },
+ {
+ "epoch": 28.90869375273045,
+ "grad_norm": 0.25497519969940186,
+ "learning_rate": 0.0006,
+ "loss": 3.811288595199585,
+ "step": 2081
+ },
+ {
+ "epoch": 28.92267365661861,
+ "grad_norm": 0.25689464807510376,
+ "learning_rate": 0.0006,
+ "loss": 3.7848939895629883,
+ "step": 2082
+ },
+ {
+ "epoch": 28.936653560506773,
+ "grad_norm": 0.2794921398162842,
+ "learning_rate": 0.0006,
+ "loss": 3.7836732864379883,
+ "step": 2083
+ },
+ {
+ "epoch": 28.950633464394933,
+ "grad_norm": 0.24730202555656433,
+ "learning_rate": 0.0006,
+ "loss": 3.7703347206115723,
+ "step": 2084
+ },
+ {
+ "epoch": 28.964613368283093,
+ "grad_norm": 0.21078833937644958,
+ "learning_rate": 0.0006,
+ "loss": 3.7521653175354004,
+ "step": 2085
+ },
+ {
+ "epoch": 28.978593272171253,
+ "grad_norm": 0.2188870757818222,
+ "learning_rate": 0.0006,
+ "loss": 3.769604206085205,
+ "step": 2086
+ },
+ {
+ "epoch": 28.992573176059416,
+ "grad_norm": 0.20447929203510284,
+ "learning_rate": 0.0006,
+ "loss": 3.7842764854431152,
+ "step": 2087
+ },
+ {
+ "epoch": 29.0,
+ "grad_norm": 0.21607689559459686,
+ "learning_rate": 0.0006,
+ "loss": 3.7428855895996094,
+ "step": 2088
+ },
+ {
+ "epoch": 29.0,
+ "eval_loss": 4.0355753898620605,
+ "eval_runtime": 44.1435,
+ "eval_samples_per_second": 55.32,
+ "eval_steps_per_second": 3.466,
+ "step": 2088
+ },
+ {
+ "epoch": 29.01397990388816,
+ "grad_norm": 0.21270133554935455,
+ "learning_rate": 0.0006,
+ "loss": 3.7548413276672363,
+ "step": 2089
+ },
+ {
+ "epoch": 29.027959807776323,
+ "grad_norm": 0.21576301753520966,
+ "learning_rate": 0.0006,
+ "loss": 3.754613161087036,
+ "step": 2090
+ },
+ {
+ "epoch": 29.041939711664483,
+ "grad_norm": 0.2162923663854599,
+ "learning_rate": 0.0006,
+ "loss": 3.755772590637207,
+ "step": 2091
+ },
+ {
+ "epoch": 29.055919615552643,
+ "grad_norm": 0.22236663103103638,
+ "learning_rate": 0.0006,
+ "loss": 3.743497848510742,
+ "step": 2092
+ },
+ {
+ "epoch": 29.069899519440803,
+ "grad_norm": 0.2391042858362198,
+ "learning_rate": 0.0006,
+ "loss": 3.749204158782959,
+ "step": 2093
+ },
+ {
+ "epoch": 29.083879423328966,
+ "grad_norm": 0.23387965559959412,
+ "learning_rate": 0.0006,
+ "loss": 3.7286791801452637,
+ "step": 2094
+ },
+ {
+ "epoch": 29.097859327217126,
+ "grad_norm": 0.23677746951580048,
+ "learning_rate": 0.0006,
+ "loss": 3.755279541015625,
+ "step": 2095
+ },
+ {
+ "epoch": 29.111839231105286,
+ "grad_norm": 0.22771087288856506,
+ "learning_rate": 0.0006,
+ "loss": 3.722566604614258,
+ "step": 2096
+ },
+ {
+ "epoch": 29.125819134993446,
+ "grad_norm": 0.2132875621318817,
+ "learning_rate": 0.0006,
+ "loss": 3.748939037322998,
+ "step": 2097
+ },
+ {
+ "epoch": 29.13979903888161,
+ "grad_norm": 0.2033746838569641,
+ "learning_rate": 0.0006,
+ "loss": 3.7393670082092285,
+ "step": 2098
+ },
+ {
+ "epoch": 29.15377894276977,
+ "grad_norm": 0.1997237652540207,
+ "learning_rate": 0.0006,
+ "loss": 3.718498945236206,
+ "step": 2099
+ },
+ {
+ "epoch": 29.16775884665793,
+ "grad_norm": 0.19102543592453003,
+ "learning_rate": 0.0006,
+ "loss": 3.748950719833374,
+ "step": 2100
+ },
+ {
+ "epoch": 29.18173875054609,
+ "grad_norm": 0.19801580905914307,
+ "learning_rate": 0.0006,
+ "loss": 3.7123501300811768,
+ "step": 2101
+ },
+ {
+ "epoch": 29.195718654434252,
+ "grad_norm": 0.20186249911785126,
+ "learning_rate": 0.0006,
+ "loss": 3.7632713317871094,
+ "step": 2102
+ },
+ {
+ "epoch": 29.209698558322412,
+ "grad_norm": 0.22725415229797363,
+ "learning_rate": 0.0006,
+ "loss": 3.753506660461426,
+ "step": 2103
+ },
+ {
+ "epoch": 29.22367846221057,
+ "grad_norm": 0.23138119280338287,
+ "learning_rate": 0.0006,
+ "loss": 3.753282070159912,
+ "step": 2104
+ },
+ {
+ "epoch": 29.23765836609873,
+ "grad_norm": 0.23171944916248322,
+ "learning_rate": 0.0006,
+ "loss": 3.73783540725708,
+ "step": 2105
+ },
+ {
+ "epoch": 29.251638269986895,
+ "grad_norm": 0.2166522741317749,
+ "learning_rate": 0.0006,
+ "loss": 3.778803825378418,
+ "step": 2106
+ },
+ {
+ "epoch": 29.265618173875055,
+ "grad_norm": 0.2009056806564331,
+ "learning_rate": 0.0006,
+ "loss": 3.738290786743164,
+ "step": 2107
+ },
+ {
+ "epoch": 29.279598077763215,
+ "grad_norm": 0.19451597332954407,
+ "learning_rate": 0.0006,
+ "loss": 3.7553348541259766,
+ "step": 2108
+ },
+ {
+ "epoch": 29.293577981651374,
+ "grad_norm": 0.19246742129325867,
+ "learning_rate": 0.0006,
+ "loss": 3.7321622371673584,
+ "step": 2109
+ },
+ {
+ "epoch": 29.307557885539538,
+ "grad_norm": 0.18917441368103027,
+ "learning_rate": 0.0006,
+ "loss": 3.7408928871154785,
+ "step": 2110
+ },
+ {
+ "epoch": 29.321537789427698,
+ "grad_norm": 0.19067776203155518,
+ "learning_rate": 0.0006,
+ "loss": 3.780052900314331,
+ "step": 2111
+ },
+ {
+ "epoch": 29.335517693315857,
+ "grad_norm": 0.18849676847457886,
+ "learning_rate": 0.0006,
+ "loss": 3.749375820159912,
+ "step": 2112
+ },
+ {
+ "epoch": 29.34949759720402,
+ "grad_norm": 0.19713285565376282,
+ "learning_rate": 0.0006,
+ "loss": 3.7128982543945312,
+ "step": 2113
+ },
+ {
+ "epoch": 29.36347750109218,
+ "grad_norm": 0.196336030960083,
+ "learning_rate": 0.0006,
+ "loss": 3.7528390884399414,
+ "step": 2114
+ },
+ {
+ "epoch": 29.37745740498034,
+ "grad_norm": 0.19574350118637085,
+ "learning_rate": 0.0006,
+ "loss": 3.7105777263641357,
+ "step": 2115
+ },
+ {
+ "epoch": 29.3914373088685,
+ "grad_norm": 0.20396539568901062,
+ "learning_rate": 0.0006,
+ "loss": 3.782249927520752,
+ "step": 2116
+ },
+ {
+ "epoch": 29.405417212756664,
+ "grad_norm": 0.24702422320842743,
+ "learning_rate": 0.0006,
+ "loss": 3.7685647010803223,
+ "step": 2117
+ },
+ {
+ "epoch": 29.419397116644824,
+ "grad_norm": 0.2729755640029907,
+ "learning_rate": 0.0006,
+ "loss": 3.7731213569641113,
+ "step": 2118
+ },
+ {
+ "epoch": 29.433377020532983,
+ "grad_norm": 0.29240545630455017,
+ "learning_rate": 0.0006,
+ "loss": 3.770162343978882,
+ "step": 2119
+ },
+ {
+ "epoch": 29.447356924421143,
+ "grad_norm": 0.2469114065170288,
+ "learning_rate": 0.0006,
+ "loss": 3.764681339263916,
+ "step": 2120
+ },
+ {
+ "epoch": 29.461336828309307,
+ "grad_norm": 0.19837401807308197,
+ "learning_rate": 0.0006,
+ "loss": 3.7600088119506836,
+ "step": 2121
+ },
+ {
+ "epoch": 29.475316732197467,
+ "grad_norm": 0.21266621351242065,
+ "learning_rate": 0.0006,
+ "loss": 3.769454002380371,
+ "step": 2122
+ },
+ {
+ "epoch": 29.489296636085626,
+ "grad_norm": 0.25908344984054565,
+ "learning_rate": 0.0006,
+ "loss": 3.7230491638183594,
+ "step": 2123
+ },
+ {
+ "epoch": 29.503276539973786,
+ "grad_norm": 0.2914169728755951,
+ "learning_rate": 0.0006,
+ "loss": 3.767849922180176,
+ "step": 2124
+ },
+ {
+ "epoch": 29.51725644386195,
+ "grad_norm": 0.2796176075935364,
+ "learning_rate": 0.0006,
+ "loss": 3.741734266281128,
+ "step": 2125
+ },
+ {
+ "epoch": 29.53123634775011,
+ "grad_norm": 0.276309996843338,
+ "learning_rate": 0.0006,
+ "loss": 3.8001914024353027,
+ "step": 2126
+ },
+ {
+ "epoch": 29.54521625163827,
+ "grad_norm": 0.26512834429740906,
+ "learning_rate": 0.0006,
+ "loss": 3.7741384506225586,
+ "step": 2127
+ },
+ {
+ "epoch": 29.55919615552643,
+ "grad_norm": 0.26514101028442383,
+ "learning_rate": 0.0006,
+ "loss": 3.7466959953308105,
+ "step": 2128
+ },
+ {
+ "epoch": 29.573176059414592,
+ "grad_norm": 0.24121330678462982,
+ "learning_rate": 0.0006,
+ "loss": 3.759542465209961,
+ "step": 2129
+ },
+ {
+ "epoch": 29.587155963302752,
+ "grad_norm": 0.2264087200164795,
+ "learning_rate": 0.0006,
+ "loss": 3.791344165802002,
+ "step": 2130
+ },
+ {
+ "epoch": 29.601135867190912,
+ "grad_norm": 0.21915403008460999,
+ "learning_rate": 0.0006,
+ "loss": 3.7540485858917236,
+ "step": 2131
+ },
+ {
+ "epoch": 29.615115771079076,
+ "grad_norm": 0.20453961193561554,
+ "learning_rate": 0.0006,
+ "loss": 3.765617609024048,
+ "step": 2132
+ },
+ {
+ "epoch": 29.629095674967235,
+ "grad_norm": 0.2194051444530487,
+ "learning_rate": 0.0006,
+ "loss": 3.7664294242858887,
+ "step": 2133
+ },
+ {
+ "epoch": 29.643075578855395,
+ "grad_norm": 0.21926000714302063,
+ "learning_rate": 0.0006,
+ "loss": 3.7551684379577637,
+ "step": 2134
+ },
+ {
+ "epoch": 29.657055482743555,
+ "grad_norm": 0.20835602283477783,
+ "learning_rate": 0.0006,
+ "loss": 3.7654306888580322,
+ "step": 2135
+ },
+ {
+ "epoch": 29.67103538663172,
+ "grad_norm": 0.23094356060028076,
+ "learning_rate": 0.0006,
+ "loss": 3.7847180366516113,
+ "step": 2136
+ },
+ {
+ "epoch": 29.68501529051988,
+ "grad_norm": 0.23871271312236786,
+ "learning_rate": 0.0006,
+ "loss": 3.789036273956299,
+ "step": 2137
+ },
+ {
+ "epoch": 29.698995194408038,
+ "grad_norm": 0.22263272106647491,
+ "learning_rate": 0.0006,
+ "loss": 3.7677512168884277,
+ "step": 2138
+ },
+ {
+ "epoch": 29.712975098296198,
+ "grad_norm": 0.2293892651796341,
+ "learning_rate": 0.0006,
+ "loss": 3.777097225189209,
+ "step": 2139
+ },
+ {
+ "epoch": 29.72695500218436,
+ "grad_norm": 0.21068568527698517,
+ "learning_rate": 0.0006,
+ "loss": 3.785336494445801,
+ "step": 2140
+ },
+ {
+ "epoch": 29.74093490607252,
+ "grad_norm": 0.19600282609462738,
+ "learning_rate": 0.0006,
+ "loss": 3.7363505363464355,
+ "step": 2141
+ },
+ {
+ "epoch": 29.75491480996068,
+ "grad_norm": 0.20053936541080475,
+ "learning_rate": 0.0006,
+ "loss": 3.753859043121338,
+ "step": 2142
+ },
+ {
+ "epoch": 29.76889471384884,
+ "grad_norm": 0.22790539264678955,
+ "learning_rate": 0.0006,
+ "loss": 3.749492645263672,
+ "step": 2143
+ },
+ {
+ "epoch": 29.782874617737004,
+ "grad_norm": 0.26042407751083374,
+ "learning_rate": 0.0006,
+ "loss": 3.7905430793762207,
+ "step": 2144
+ },
+ {
+ "epoch": 29.796854521625164,
+ "grad_norm": 0.2753683626651764,
+ "learning_rate": 0.0006,
+ "loss": 3.756442070007324,
+ "step": 2145
+ },
+ {
+ "epoch": 29.810834425513324,
+ "grad_norm": 0.2795007526874542,
+ "learning_rate": 0.0006,
+ "loss": 3.7691903114318848,
+ "step": 2146
+ },
+ {
+ "epoch": 29.824814329401484,
+ "grad_norm": 0.2461438924074173,
+ "learning_rate": 0.0006,
+ "loss": 3.7573065757751465,
+ "step": 2147
+ },
+ {
+ "epoch": 29.838794233289647,
+ "grad_norm": 0.21051941812038422,
+ "learning_rate": 0.0006,
+ "loss": 3.7540078163146973,
+ "step": 2148
+ },
+ {
+ "epoch": 29.852774137177807,
+ "grad_norm": 0.197485089302063,
+ "learning_rate": 0.0006,
+ "loss": 3.734403133392334,
+ "step": 2149
+ },
+ {
+ "epoch": 29.866754041065967,
+ "grad_norm": 0.203064426779747,
+ "learning_rate": 0.0006,
+ "loss": 3.7888364791870117,
+ "step": 2150
+ },
+ {
+ "epoch": 29.88073394495413,
+ "grad_norm": 0.2000301480293274,
+ "learning_rate": 0.0006,
+ "loss": 3.7444958686828613,
+ "step": 2151
+ },
+ {
+ "epoch": 29.89471384884229,
+ "grad_norm": 0.20492053031921387,
+ "learning_rate": 0.0006,
+ "loss": 3.7878224849700928,
+ "step": 2152
+ },
+ {
+ "epoch": 29.90869375273045,
+ "grad_norm": 0.22565388679504395,
+ "learning_rate": 0.0006,
+ "loss": 3.7539188861846924,
+ "step": 2153
+ },
+ {
+ "epoch": 29.92267365661861,
+ "grad_norm": 0.20258226990699768,
+ "learning_rate": 0.0006,
+ "loss": 3.7491893768310547,
+ "step": 2154
+ },
+ {
+ "epoch": 29.936653560506773,
+ "grad_norm": 0.20028717815876007,
+ "learning_rate": 0.0006,
+ "loss": 3.7497997283935547,
+ "step": 2155
+ },
+ {
+ "epoch": 29.950633464394933,
+ "grad_norm": 0.2246360331773758,
+ "learning_rate": 0.0006,
+ "loss": 3.773930788040161,
+ "step": 2156
+ },
+ {
+ "epoch": 29.964613368283093,
+ "grad_norm": 0.22432482242584229,
+ "learning_rate": 0.0006,
+ "loss": 3.7926344871520996,
+ "step": 2157
+ },
+ {
+ "epoch": 29.978593272171253,
+ "grad_norm": 0.2165718674659729,
+ "learning_rate": 0.0006,
+ "loss": 3.7436647415161133,
+ "step": 2158
+ },
+ {
+ "epoch": 29.992573176059416,
+ "grad_norm": 0.20629167556762695,
+ "learning_rate": 0.0006,
+ "loss": 3.7619552612304688,
+ "step": 2159
+ },
+ {
+ "epoch": 30.0,
+ "grad_norm": 0.24264708161354065,
+ "learning_rate": 0.0006,
+ "loss": 3.772679328918457,
+ "step": 2160
+ },
+ {
+ "epoch": 30.0,
+ "eval_loss": 4.024484634399414,
+ "eval_runtime": 44.3611,
+ "eval_samples_per_second": 55.048,
+ "eval_steps_per_second": 3.449,
+ "step": 2160
+ },
+ {
+ "epoch": 30.01397990388816,
+ "grad_norm": 0.2373432070016861,
+ "learning_rate": 0.0006,
+ "loss": 3.7423200607299805,
+ "step": 2161
+ },
+ {
+ "epoch": 30.027959807776323,
+ "grad_norm": 0.26835134625434875,
+ "learning_rate": 0.0006,
+ "loss": 3.7215471267700195,
+ "step": 2162
+ },
+ {
+ "epoch": 30.041939711664483,
+ "grad_norm": 0.2743220329284668,
+ "learning_rate": 0.0006,
+ "loss": 3.7190256118774414,
+ "step": 2163
+ },
+ {
+ "epoch": 30.055919615552643,
+ "grad_norm": 0.2292490005493164,
+ "learning_rate": 0.0006,
+ "loss": 3.731855869293213,
+ "step": 2164
+ },
+ {
+ "epoch": 30.069899519440803,
+ "grad_norm": 0.22704607248306274,
+ "learning_rate": 0.0006,
+ "loss": 3.7649693489074707,
+ "step": 2165
+ },
+ {
+ "epoch": 30.083879423328966,
+ "grad_norm": 0.23255930840969086,
+ "learning_rate": 0.0006,
+ "loss": 3.7547781467437744,
+ "step": 2166
+ },
+ {
+ "epoch": 30.097859327217126,
+ "grad_norm": 0.2068684846162796,
+ "learning_rate": 0.0006,
+ "loss": 3.7343382835388184,
+ "step": 2167
+ },
+ {
+ "epoch": 30.111839231105286,
+ "grad_norm": 0.22523464262485504,
+ "learning_rate": 0.0006,
+ "loss": 3.7304530143737793,
+ "step": 2168
+ },
+ {
+ "epoch": 30.125819134993446,
+ "grad_norm": 0.24650199711322784,
+ "learning_rate": 0.0006,
+ "loss": 3.7414379119873047,
+ "step": 2169
+ },
+ {
+ "epoch": 30.13979903888161,
+ "grad_norm": 0.2392522394657135,
+ "learning_rate": 0.0006,
+ "loss": 3.754481792449951,
+ "step": 2170
+ },
+ {
+ "epoch": 30.15377894276977,
+ "grad_norm": 0.21174749732017517,
+ "learning_rate": 0.0006,
+ "loss": 3.7249929904937744,
+ "step": 2171
+ },
+ {
+ "epoch": 30.16775884665793,
+ "grad_norm": 0.20847836136817932,
+ "learning_rate": 0.0006,
+ "loss": 3.7146458625793457,
+ "step": 2172
+ },
+ {
+ "epoch": 30.18173875054609,
+ "grad_norm": 0.22131472826004028,
+ "learning_rate": 0.0006,
+ "loss": 3.7569539546966553,
+ "step": 2173
+ },
+ {
+ "epoch": 30.195718654434252,
+ "grad_norm": 0.23528096079826355,
+ "learning_rate": 0.0006,
+ "loss": 3.743435859680176,
+ "step": 2174
+ },
+ {
+ "epoch": 30.209698558322412,
+ "grad_norm": 0.2382429540157318,
+ "learning_rate": 0.0006,
+ "loss": 3.745307445526123,
+ "step": 2175
+ },
+ {
+ "epoch": 30.22367846221057,
+ "grad_norm": 0.2477114498615265,
+ "learning_rate": 0.0006,
+ "loss": 3.742305278778076,
+ "step": 2176
+ },
+ {
+ "epoch": 30.23765836609873,
+ "grad_norm": 0.24507801234722137,
+ "learning_rate": 0.0006,
+ "loss": 3.733564853668213,
+ "step": 2177
+ },
+ {
+ "epoch": 30.251638269986895,
+ "grad_norm": 0.2266329675912857,
+ "learning_rate": 0.0006,
+ "loss": 3.747429370880127,
+ "step": 2178
+ },
+ {
+ "epoch": 30.265618173875055,
+ "grad_norm": 0.22146396338939667,
+ "learning_rate": 0.0006,
+ "loss": 3.738630533218384,
+ "step": 2179
+ },
+ {
+ "epoch": 30.279598077763215,
+ "grad_norm": 0.20202279090881348,
+ "learning_rate": 0.0006,
+ "loss": 3.74582839012146,
+ "step": 2180
+ },
+ {
+ "epoch": 30.293577981651374,
+ "grad_norm": 0.20591886341571808,
+ "learning_rate": 0.0006,
+ "loss": 3.792062997817993,
+ "step": 2181
+ },
+ {
+ "epoch": 30.307557885539538,
+ "grad_norm": 0.21744129061698914,
+ "learning_rate": 0.0006,
+ "loss": 3.7389049530029297,
+ "step": 2182
+ },
+ {
+ "epoch": 30.321537789427698,
+ "grad_norm": 0.22641272842884064,
+ "learning_rate": 0.0006,
+ "loss": 3.756775140762329,
+ "step": 2183
+ },
+ {
+ "epoch": 30.335517693315857,
+ "grad_norm": 0.22433501482009888,
+ "learning_rate": 0.0006,
+ "loss": 3.764744758605957,
+ "step": 2184
+ },
+ {
+ "epoch": 30.34949759720402,
+ "grad_norm": 0.20184539258480072,
+ "learning_rate": 0.0006,
+ "loss": 3.747469902038574,
+ "step": 2185
+ },
+ {
+ "epoch": 30.36347750109218,
+ "grad_norm": 0.20864923298358917,
+ "learning_rate": 0.0006,
+ "loss": 3.7472925186157227,
+ "step": 2186
+ },
+ {
+ "epoch": 30.37745740498034,
+ "grad_norm": 0.22537396848201752,
+ "learning_rate": 0.0006,
+ "loss": 3.7194581031799316,
+ "step": 2187
+ },
+ {
+ "epoch": 30.3914373088685,
+ "grad_norm": 0.23159919679164886,
+ "learning_rate": 0.0006,
+ "loss": 3.7124292850494385,
+ "step": 2188
+ },
+ {
+ "epoch": 30.405417212756664,
+ "grad_norm": 0.24334494769573212,
+ "learning_rate": 0.0006,
+ "loss": 3.7769203186035156,
+ "step": 2189
+ },
+ {
+ "epoch": 30.419397116644824,
+ "grad_norm": 0.3031228482723236,
+ "learning_rate": 0.0006,
+ "loss": 3.762169361114502,
+ "step": 2190
+ },
+ {
+ "epoch": 30.433377020532983,
+ "grad_norm": 0.29114583134651184,
+ "learning_rate": 0.0006,
+ "loss": 3.76554799079895,
+ "step": 2191
+ },
+ {
+ "epoch": 30.447356924421143,
+ "grad_norm": 0.26824963092803955,
+ "learning_rate": 0.0006,
+ "loss": 3.732962131500244,
+ "step": 2192
+ },
+ {
+ "epoch": 30.461336828309307,
+ "grad_norm": 0.3026561141014099,
+ "learning_rate": 0.0006,
+ "loss": 3.7567975521087646,
+ "step": 2193
+ },
+ {
+ "epoch": 30.475316732197467,
+ "grad_norm": 0.27224525809288025,
+ "learning_rate": 0.0006,
+ "loss": 3.7856051921844482,
+ "step": 2194
+ },
+ {
+ "epoch": 30.489296636085626,
+ "grad_norm": 0.24295508861541748,
+ "learning_rate": 0.0006,
+ "loss": 3.7514901161193848,
+ "step": 2195
+ },
+ {
+ "epoch": 30.503276539973786,
+ "grad_norm": 0.24435290694236755,
+ "learning_rate": 0.0006,
+ "loss": 3.715973138809204,
+ "step": 2196
+ },
+ {
+ "epoch": 30.51725644386195,
+ "grad_norm": 0.2298959195613861,
+ "learning_rate": 0.0006,
+ "loss": 3.7960405349731445,
+ "step": 2197
+ },
+ {
+ "epoch": 30.53123634775011,
+ "grad_norm": 0.20313066244125366,
+ "learning_rate": 0.0006,
+ "loss": 3.7377915382385254,
+ "step": 2198
+ },
+ {
+ "epoch": 30.54521625163827,
+ "grad_norm": 0.2018895149230957,
+ "learning_rate": 0.0006,
+ "loss": 3.6980559825897217,
+ "step": 2199
+ },
+ {
+ "epoch": 30.55919615552643,
+ "grad_norm": 0.20048382878303528,
+ "learning_rate": 0.0006,
+ "loss": 3.7474141120910645,
+ "step": 2200
+ },
+ {
+ "epoch": 30.573176059414592,
+ "grad_norm": 0.19821316003799438,
+ "learning_rate": 0.0006,
+ "loss": 3.7668564319610596,
+ "step": 2201
+ },
+ {
+ "epoch": 30.587155963302752,
+ "grad_norm": 0.21467992663383484,
+ "learning_rate": 0.0006,
+ "loss": 3.7636144161224365,
+ "step": 2202
+ },
+ {
+ "epoch": 30.601135867190912,
+ "grad_norm": 0.20192000269889832,
+ "learning_rate": 0.0006,
+ "loss": 3.745736837387085,
+ "step": 2203
+ },
+ {
+ "epoch": 30.615115771079076,
+ "grad_norm": 0.2078823447227478,
+ "learning_rate": 0.0006,
+ "loss": 3.726665496826172,
+ "step": 2204
+ },
+ {
+ "epoch": 30.629095674967235,
+ "grad_norm": 0.22535845637321472,
+ "learning_rate": 0.0006,
+ "loss": 3.745058059692383,
+ "step": 2205
+ },
+ {
+ "epoch": 30.643075578855395,
+ "grad_norm": 0.22277814149856567,
+ "learning_rate": 0.0006,
+ "loss": 3.7488319873809814,
+ "step": 2206
+ },
+ {
+ "epoch": 30.657055482743555,
+ "grad_norm": 0.20940838754177094,
+ "learning_rate": 0.0006,
+ "loss": 3.7395732402801514,
+ "step": 2207
+ },
+ {
+ "epoch": 30.67103538663172,
+ "grad_norm": 0.21384629607200623,
+ "learning_rate": 0.0006,
+ "loss": 3.7275657653808594,
+ "step": 2208
+ },
+ {
+ "epoch": 30.68501529051988,
+ "grad_norm": 0.18796643614768982,
+ "learning_rate": 0.0006,
+ "loss": 3.743420124053955,
+ "step": 2209
+ },
+ {
+ "epoch": 30.698995194408038,
+ "grad_norm": 0.213258296251297,
+ "learning_rate": 0.0006,
+ "loss": 3.7227492332458496,
+ "step": 2210
+ },
+ {
+ "epoch": 30.712975098296198,
+ "grad_norm": 0.22714753448963165,
+ "learning_rate": 0.0006,
+ "loss": 3.7301113605499268,
+ "step": 2211
+ },
+ {
+ "epoch": 30.72695500218436,
+ "grad_norm": 0.21657656133174896,
+ "learning_rate": 0.0006,
+ "loss": 3.7336206436157227,
+ "step": 2212
+ },
+ {
+ "epoch": 30.74093490607252,
+ "grad_norm": 0.19550828635692596,
+ "learning_rate": 0.0006,
+ "loss": 3.7367351055145264,
+ "step": 2213
+ },
+ {
+ "epoch": 30.75491480996068,
+ "grad_norm": 0.17011769115924835,
+ "learning_rate": 0.0006,
+ "loss": 3.7401928901672363,
+ "step": 2214
+ },
+ {
+ "epoch": 30.76889471384884,
+ "grad_norm": 0.19110196828842163,
+ "learning_rate": 0.0006,
+ "loss": 3.7496562004089355,
+ "step": 2215
+ },
+ {
+ "epoch": 30.782874617737004,
+ "grad_norm": 0.20054543018341064,
+ "learning_rate": 0.0006,
+ "loss": 3.7532992362976074,
+ "step": 2216
+ },
+ {
+ "epoch": 30.796854521625164,
+ "grad_norm": 0.20667670667171478,
+ "learning_rate": 0.0006,
+ "loss": 3.746974468231201,
+ "step": 2217
+ },
+ {
+ "epoch": 30.810834425513324,
+ "grad_norm": 0.19850662350654602,
+ "learning_rate": 0.0006,
+ "loss": 3.7566256523132324,
+ "step": 2218
+ },
+ {
+ "epoch": 30.824814329401484,
+ "grad_norm": 0.19666457176208496,
+ "learning_rate": 0.0006,
+ "loss": 3.7356925010681152,
+ "step": 2219
+ },
+ {
+ "epoch": 30.838794233289647,
+ "grad_norm": 0.20022115111351013,
+ "learning_rate": 0.0006,
+ "loss": 3.768794536590576,
+ "step": 2220
+ },
+ {
+ "epoch": 30.852774137177807,
+ "grad_norm": 0.225278839468956,
+ "learning_rate": 0.0006,
+ "loss": 3.730262279510498,
+ "step": 2221
+ },
+ {
+ "epoch": 30.866754041065967,
+ "grad_norm": 0.2155608832836151,
+ "learning_rate": 0.0006,
+ "loss": 3.758157968521118,
+ "step": 2222
+ },
+ {
+ "epoch": 30.88073394495413,
+ "grad_norm": 0.20914921164512634,
+ "learning_rate": 0.0006,
+ "loss": 3.7290844917297363,
+ "step": 2223
+ },
+ {
+ "epoch": 30.89471384884229,
+ "grad_norm": 0.21579554677009583,
+ "learning_rate": 0.0006,
+ "loss": 3.7666125297546387,
+ "step": 2224
+ },
+ {
+ "epoch": 30.90869375273045,
+ "grad_norm": 0.22606384754180908,
+ "learning_rate": 0.0006,
+ "loss": 3.7396788597106934,
+ "step": 2225
+ },
+ {
+ "epoch": 30.92267365661861,
+ "grad_norm": 0.22218658030033112,
+ "learning_rate": 0.0006,
+ "loss": 3.7363057136535645,
+ "step": 2226
+ },
+ {
+ "epoch": 30.936653560506773,
+ "grad_norm": 0.2107125222682953,
+ "learning_rate": 0.0006,
+ "loss": 3.7402844429016113,
+ "step": 2227
+ },
+ {
+ "epoch": 30.950633464394933,
+ "grad_norm": 0.2143280804157257,
+ "learning_rate": 0.0006,
+ "loss": 3.7715706825256348,
+ "step": 2228
+ },
+ {
+ "epoch": 30.964613368283093,
+ "grad_norm": 0.20918118953704834,
+ "learning_rate": 0.0006,
+ "loss": 3.783510446548462,
+ "step": 2229
+ },
+ {
+ "epoch": 30.978593272171253,
+ "grad_norm": 0.2184133678674698,
+ "learning_rate": 0.0006,
+ "loss": 3.729846954345703,
+ "step": 2230
+ },
+ {
+ "epoch": 30.992573176059416,
+ "grad_norm": 0.20314796268939972,
+ "learning_rate": 0.0006,
+ "loss": 3.753312110900879,
+ "step": 2231
+ },
+ {
+ "epoch": 31.0,
+ "grad_norm": 0.21582408249378204,
+ "learning_rate": 0.0006,
+ "loss": 3.7653090953826904,
+ "step": 2232
+ },
+ {
+ "epoch": 31.0,
+ "eval_loss": 4.030437469482422,
+ "eval_runtime": 43.8529,
+ "eval_samples_per_second": 55.686,
+ "eval_steps_per_second": 3.489,
+ "step": 2232
+ },
+ {
+ "epoch": 31.01397990388816,
+ "grad_norm": 0.214233860373497,
+ "learning_rate": 0.0006,
+ "loss": 3.7179880142211914,
+ "step": 2233
+ },
+ {
+ "epoch": 31.027959807776323,
+ "grad_norm": 0.24621504545211792,
+ "learning_rate": 0.0006,
+ "loss": 3.712569236755371,
+ "step": 2234
+ },
+ {
+ "epoch": 31.041939711664483,
+ "grad_norm": 0.24189279973506927,
+ "learning_rate": 0.0006,
+ "loss": 3.7503058910369873,
+ "step": 2235
+ },
+ {
+ "epoch": 31.055919615552643,
+ "grad_norm": 0.22872278094291687,
+ "learning_rate": 0.0006,
+ "loss": 3.7386386394500732,
+ "step": 2236
+ },
+ {
+ "epoch": 31.069899519440803,
+ "grad_norm": 0.25036823749542236,
+ "learning_rate": 0.0006,
+ "loss": 3.710566997528076,
+ "step": 2237
+ },
+ {
+ "epoch": 31.083879423328966,
+ "grad_norm": 0.2506193220615387,
+ "learning_rate": 0.0006,
+ "loss": 3.7270963191986084,
+ "step": 2238
+ },
+ {
+ "epoch": 31.097859327217126,
+ "grad_norm": 0.24819663166999817,
+ "learning_rate": 0.0006,
+ "loss": 3.716430425643921,
+ "step": 2239
+ },
+ {
+ "epoch": 31.111839231105286,
+ "grad_norm": 0.27226534485816956,
+ "learning_rate": 0.0006,
+ "loss": 3.704428195953369,
+ "step": 2240
+ },
+ {
+ "epoch": 31.125819134993446,
+ "grad_norm": 0.27718204259872437,
+ "learning_rate": 0.0006,
+ "loss": 3.7309701442718506,
+ "step": 2241
+ },
+ {
+ "epoch": 31.13979903888161,
+ "grad_norm": 0.27272021770477295,
+ "learning_rate": 0.0006,
+ "loss": 3.7325143814086914,
+ "step": 2242
+ },
+ {
+ "epoch": 31.15377894276977,
+ "grad_norm": 0.2666020095348358,
+ "learning_rate": 0.0006,
+ "loss": 3.715268611907959,
+ "step": 2243
+ },
+ {
+ "epoch": 31.16775884665793,
+ "grad_norm": 0.258543461561203,
+ "learning_rate": 0.0006,
+ "loss": 3.7336134910583496,
+ "step": 2244
+ },
+ {
+ "epoch": 31.18173875054609,
+ "grad_norm": 0.2528740167617798,
+ "learning_rate": 0.0006,
+ "loss": 3.724491596221924,
+ "step": 2245
+ },
+ {
+ "epoch": 31.195718654434252,
+ "grad_norm": 0.2659667730331421,
+ "learning_rate": 0.0006,
+ "loss": 3.7144742012023926,
+ "step": 2246
+ },
+ {
+ "epoch": 31.209698558322412,
+ "grad_norm": 0.26563164591789246,
+ "learning_rate": 0.0006,
+ "loss": 3.741182327270508,
+ "step": 2247
+ },
+ {
+ "epoch": 31.22367846221057,
+ "grad_norm": 0.26326918601989746,
+ "learning_rate": 0.0006,
+ "loss": 3.7306275367736816,
+ "step": 2248
+ },
+ {
+ "epoch": 31.23765836609873,
+ "grad_norm": 0.23020948469638824,
+ "learning_rate": 0.0006,
+ "loss": 3.7212486267089844,
+ "step": 2249
+ },
+ {
+ "epoch": 31.251638269986895,
+ "grad_norm": 0.21207433938980103,
+ "learning_rate": 0.0006,
+ "loss": 3.6914258003234863,
+ "step": 2250
+ },
+ {
+ "epoch": 31.265618173875055,
+ "grad_norm": 0.2392292022705078,
+ "learning_rate": 0.0006,
+ "loss": 3.7117457389831543,
+ "step": 2251
+ },
+ {
+ "epoch": 31.279598077763215,
+ "grad_norm": 0.22084997594356537,
+ "learning_rate": 0.0006,
+ "loss": 3.728043794631958,
+ "step": 2252
+ },
+ {
+ "epoch": 31.293577981651374,
+ "grad_norm": 0.20818188786506653,
+ "learning_rate": 0.0006,
+ "loss": 3.751762866973877,
+ "step": 2253
+ },
+ {
+ "epoch": 31.307557885539538,
+ "grad_norm": 0.21866194903850555,
+ "learning_rate": 0.0006,
+ "loss": 3.72676420211792,
+ "step": 2254
+ },
+ {
+ "epoch": 31.321537789427698,
+ "grad_norm": 0.20727522671222687,
+ "learning_rate": 0.0006,
+ "loss": 3.735708236694336,
+ "step": 2255
+ },
+ {
+ "epoch": 31.335517693315857,
+ "grad_norm": 0.20655220746994019,
+ "learning_rate": 0.0006,
+ "loss": 3.714116096496582,
+ "step": 2256
+ },
+ {
+ "epoch": 31.34949759720402,
+ "grad_norm": 0.21738854050636292,
+ "learning_rate": 0.0006,
+ "loss": 3.731657028198242,
+ "step": 2257
+ },
+ {
+ "epoch": 31.36347750109218,
+ "grad_norm": 0.20758475363254547,
+ "learning_rate": 0.0006,
+ "loss": 3.7378528118133545,
+ "step": 2258
+ },
+ {
+ "epoch": 31.37745740498034,
+ "grad_norm": 0.20107139647006989,
+ "learning_rate": 0.0006,
+ "loss": 3.748572826385498,
+ "step": 2259
+ },
+ {
+ "epoch": 31.3914373088685,
+ "grad_norm": 0.18707452714443207,
+ "learning_rate": 0.0006,
+ "loss": 3.7237391471862793,
+ "step": 2260
+ },
+ {
+ "epoch": 31.405417212756664,
+ "grad_norm": 0.20745301246643066,
+ "learning_rate": 0.0006,
+ "loss": 3.734435558319092,
+ "step": 2261
+ },
+ {
+ "epoch": 31.419397116644824,
+ "grad_norm": 0.20793399214744568,
+ "learning_rate": 0.0006,
+ "loss": 3.7639012336730957,
+ "step": 2262
+ },
+ {
+ "epoch": 31.433377020532983,
+ "grad_norm": 0.20193757116794586,
+ "learning_rate": 0.0006,
+ "loss": 3.754117727279663,
+ "step": 2263
+ },
+ {
+ "epoch": 31.447356924421143,
+ "grad_norm": 0.1912323236465454,
+ "learning_rate": 0.0006,
+ "loss": 3.728111982345581,
+ "step": 2264
+ },
+ {
+ "epoch": 31.461336828309307,
+ "grad_norm": 0.19441582262516022,
+ "learning_rate": 0.0006,
+ "loss": 3.7533278465270996,
+ "step": 2265
+ },
+ {
+ "epoch": 31.475316732197467,
+ "grad_norm": 0.19807079434394836,
+ "learning_rate": 0.0006,
+ "loss": 3.7351698875427246,
+ "step": 2266
+ },
+ {
+ "epoch": 31.489296636085626,
+ "grad_norm": 0.20373263955116272,
+ "learning_rate": 0.0006,
+ "loss": 3.714097023010254,
+ "step": 2267
+ },
+ {
+ "epoch": 31.503276539973786,
+ "grad_norm": 0.21868768334388733,
+ "learning_rate": 0.0006,
+ "loss": 3.736743688583374,
+ "step": 2268
+ },
+ {
+ "epoch": 31.51725644386195,
+ "grad_norm": 0.20767922699451447,
+ "learning_rate": 0.0006,
+ "loss": 3.7097702026367188,
+ "step": 2269
+ },
+ {
+ "epoch": 31.53123634775011,
+ "grad_norm": 0.18425600230693817,
+ "learning_rate": 0.0006,
+ "loss": 3.7349140644073486,
+ "step": 2270
+ },
+ {
+ "epoch": 31.54521625163827,
+ "grad_norm": 0.18813826143741608,
+ "learning_rate": 0.0006,
+ "loss": 3.7023448944091797,
+ "step": 2271
+ },
+ {
+ "epoch": 31.55919615552643,
+ "grad_norm": 0.1892116516828537,
+ "learning_rate": 0.0006,
+ "loss": 3.7170143127441406,
+ "step": 2272
+ },
+ {
+ "epoch": 31.573176059414592,
+ "grad_norm": 0.2067834585905075,
+ "learning_rate": 0.0006,
+ "loss": 3.7312588691711426,
+ "step": 2273
+ },
+ {
+ "epoch": 31.587155963302752,
+ "grad_norm": 0.204023078083992,
+ "learning_rate": 0.0006,
+ "loss": 3.7399091720581055,
+ "step": 2274
+ },
+ {
+ "epoch": 31.601135867190912,
+ "grad_norm": 0.20245152711868286,
+ "learning_rate": 0.0006,
+ "loss": 3.7259416580200195,
+ "step": 2275
+ },
+ {
+ "epoch": 31.615115771079076,
+ "grad_norm": 0.21125490963459015,
+ "learning_rate": 0.0006,
+ "loss": 3.7217836380004883,
+ "step": 2276
+ },
+ {
+ "epoch": 31.629095674967235,
+ "grad_norm": 0.2093241959810257,
+ "learning_rate": 0.0006,
+ "loss": 3.707627773284912,
+ "step": 2277
+ },
+ {
+ "epoch": 31.643075578855395,
+ "grad_norm": 0.19290480017662048,
+ "learning_rate": 0.0006,
+ "loss": 3.7467126846313477,
+ "step": 2278
+ },
+ {
+ "epoch": 31.657055482743555,
+ "grad_norm": 0.1853940635919571,
+ "learning_rate": 0.0006,
+ "loss": 3.7565581798553467,
+ "step": 2279
+ },
+ {
+ "epoch": 31.67103538663172,
+ "grad_norm": 0.18917642533779144,
+ "learning_rate": 0.0006,
+ "loss": 3.7286229133605957,
+ "step": 2280
+ },
+ {
+ "epoch": 31.68501529051988,
+ "grad_norm": 0.2094079703092575,
+ "learning_rate": 0.0006,
+ "loss": 3.7297096252441406,
+ "step": 2281
+ },
+ {
+ "epoch": 31.698995194408038,
+ "grad_norm": 0.20020027458667755,
+ "learning_rate": 0.0006,
+ "loss": 3.7565250396728516,
+ "step": 2282
+ },
+ {
+ "epoch": 31.712975098296198,
+ "grad_norm": 0.19156186282634735,
+ "learning_rate": 0.0006,
+ "loss": 3.7401509284973145,
+ "step": 2283
+ },
+ {
+ "epoch": 31.72695500218436,
+ "grad_norm": 0.19176368415355682,
+ "learning_rate": 0.0006,
+ "loss": 3.751206398010254,
+ "step": 2284
+ },
+ {
+ "epoch": 31.74093490607252,
+ "grad_norm": 0.18351277709007263,
+ "learning_rate": 0.0006,
+ "loss": 3.752984046936035,
+ "step": 2285
+ },
+ {
+ "epoch": 31.75491480996068,
+ "grad_norm": 0.1879221349954605,
+ "learning_rate": 0.0006,
+ "loss": 3.7156834602355957,
+ "step": 2286
+ },
+ {
+ "epoch": 31.76889471384884,
+ "grad_norm": 0.19232559204101562,
+ "learning_rate": 0.0006,
+ "loss": 3.732879638671875,
+ "step": 2287
+ },
+ {
+ "epoch": 31.782874617737004,
+ "grad_norm": 0.18484069406986237,
+ "learning_rate": 0.0006,
+ "loss": 3.7489013671875,
+ "step": 2288
+ },
+ {
+ "epoch": 31.796854521625164,
+ "grad_norm": 0.20705144107341766,
+ "learning_rate": 0.0006,
+ "loss": 3.7214112281799316,
+ "step": 2289
+ },
+ {
+ "epoch": 31.810834425513324,
+ "grad_norm": 0.23424774408340454,
+ "learning_rate": 0.0006,
+ "loss": 3.714550256729126,
+ "step": 2290
+ },
+ {
+ "epoch": 31.824814329401484,
+ "grad_norm": 0.24061693251132965,
+ "learning_rate": 0.0006,
+ "loss": 3.717336654663086,
+ "step": 2291
+ },
+ {
+ "epoch": 31.838794233289647,
+ "grad_norm": 0.23156678676605225,
+ "learning_rate": 0.0006,
+ "loss": 3.7345399856567383,
+ "step": 2292
+ },
+ {
+ "epoch": 31.852774137177807,
+ "grad_norm": 0.2256302684545517,
+ "learning_rate": 0.0006,
+ "loss": 3.7596092224121094,
+ "step": 2293
+ },
+ {
+ "epoch": 31.866754041065967,
+ "grad_norm": 0.2118781954050064,
+ "learning_rate": 0.0006,
+ "loss": 3.725433588027954,
+ "step": 2294
+ },
+ {
+ "epoch": 31.88073394495413,
+ "grad_norm": 0.1874573826789856,
+ "learning_rate": 0.0006,
+ "loss": 3.738901138305664,
+ "step": 2295
+ },
+ {
+ "epoch": 31.89471384884229,
+ "grad_norm": 0.2062024176120758,
+ "learning_rate": 0.0006,
+ "loss": 3.7439217567443848,
+ "step": 2296
+ },
+ {
+ "epoch": 31.90869375273045,
+ "grad_norm": 0.19886671006679535,
+ "learning_rate": 0.0006,
+ "loss": 3.7583155632019043,
+ "step": 2297
+ },
+ {
+ "epoch": 31.92267365661861,
+ "grad_norm": 0.2079734355211258,
+ "learning_rate": 0.0006,
+ "loss": 3.7251501083374023,
+ "step": 2298
+ },
+ {
+ "epoch": 31.936653560506773,
+ "grad_norm": 0.19710204005241394,
+ "learning_rate": 0.0006,
+ "loss": 3.765778064727783,
+ "step": 2299
+ },
+ {
+ "epoch": 31.950633464394933,
+ "grad_norm": 0.1949392408132553,
+ "learning_rate": 0.0006,
+ "loss": 3.7634787559509277,
+ "step": 2300
+ },
+ {
+ "epoch": 31.964613368283093,
+ "grad_norm": 0.21466250717639923,
+ "learning_rate": 0.0006,
+ "loss": 3.7673215866088867,
+ "step": 2301
+ },
+ {
+ "epoch": 31.978593272171253,
+ "grad_norm": 0.21624267101287842,
+ "learning_rate": 0.0006,
+ "loss": 3.7617220878601074,
+ "step": 2302
+ },
+ {
+ "epoch": 31.992573176059416,
+ "grad_norm": 0.22880229353904724,
+ "learning_rate": 0.0006,
+ "loss": 3.7190351486206055,
+ "step": 2303
+ },
+ {
+ "epoch": 32.0,
+ "grad_norm": 0.23227518796920776,
+ "learning_rate": 0.0006,
+ "loss": 3.740169048309326,
+ "step": 2304
+ },
+ {
+ "epoch": 32.0,
+ "eval_loss": 4.017981052398682,
+ "eval_runtime": 44.4134,
+ "eval_samples_per_second": 54.983,
+ "eval_steps_per_second": 3.445,
+ "step": 2304
+ },
+ {
+ "epoch": 32.01397990388816,
+ "grad_norm": 0.1893721967935562,
+ "learning_rate": 0.0006,
+ "loss": 3.71738338470459,
+ "step": 2305
+ },
+ {
+ "epoch": 32.02795980777632,
+ "grad_norm": 0.23771171271800995,
+ "learning_rate": 0.0006,
+ "loss": 3.71402645111084,
+ "step": 2306
+ },
+ {
+ "epoch": 32.04193971166448,
+ "grad_norm": 0.26343807578086853,
+ "learning_rate": 0.0006,
+ "loss": 3.6926395893096924,
+ "step": 2307
+ },
+ {
+ "epoch": 32.05591961555265,
+ "grad_norm": 0.25092509388923645,
+ "learning_rate": 0.0006,
+ "loss": 3.715243339538574,
+ "step": 2308
+ },
+ {
+ "epoch": 32.0698995194408,
+ "grad_norm": 0.23148509860038757,
+ "learning_rate": 0.0006,
+ "loss": 3.690734386444092,
+ "step": 2309
+ },
+ {
+ "epoch": 32.083879423328966,
+ "grad_norm": 0.23314623534679413,
+ "learning_rate": 0.0006,
+ "loss": 3.6980109214782715,
+ "step": 2310
+ },
+ {
+ "epoch": 32.09785932721712,
+ "grad_norm": 0.2210417091846466,
+ "learning_rate": 0.0006,
+ "loss": 3.7395730018615723,
+ "step": 2311
+ },
+ {
+ "epoch": 32.111839231105286,
+ "grad_norm": 0.20263685286045074,
+ "learning_rate": 0.0006,
+ "loss": 3.678412914276123,
+ "step": 2312
+ },
+ {
+ "epoch": 32.12581913499345,
+ "grad_norm": 0.20412251353263855,
+ "learning_rate": 0.0006,
+ "loss": 3.688762903213501,
+ "step": 2313
+ },
+ {
+ "epoch": 32.139799038881605,
+ "grad_norm": 0.2041679322719574,
+ "learning_rate": 0.0006,
+ "loss": 3.7231521606445312,
+ "step": 2314
+ },
+ {
+ "epoch": 32.15377894276977,
+ "grad_norm": 0.23270174860954285,
+ "learning_rate": 0.0006,
+ "loss": 3.7102620601654053,
+ "step": 2315
+ },
+ {
+ "epoch": 32.16775884665793,
+ "grad_norm": 0.25470519065856934,
+ "learning_rate": 0.0006,
+ "loss": 3.7353053092956543,
+ "step": 2316
+ },
+ {
+ "epoch": 32.18173875054609,
+ "grad_norm": 0.2930106222629547,
+ "learning_rate": 0.0006,
+ "loss": 3.7418713569641113,
+ "step": 2317
+ },
+ {
+ "epoch": 32.19571865443425,
+ "grad_norm": 0.3181219696998596,
+ "learning_rate": 0.0006,
+ "loss": 3.6716184616088867,
+ "step": 2318
+ },
+ {
+ "epoch": 32.20969855832241,
+ "grad_norm": 0.2752978801727295,
+ "learning_rate": 0.0006,
+ "loss": 3.70334792137146,
+ "step": 2319
+ },
+ {
+ "epoch": 32.22367846221057,
+ "grad_norm": 0.28381186723709106,
+ "learning_rate": 0.0006,
+ "loss": 3.719794750213623,
+ "step": 2320
+ },
+ {
+ "epoch": 32.237658366098735,
+ "grad_norm": 0.3287750482559204,
+ "learning_rate": 0.0006,
+ "loss": 3.7363362312316895,
+ "step": 2321
+ },
+ {
+ "epoch": 32.25163826998689,
+ "grad_norm": 0.32669803500175476,
+ "learning_rate": 0.0006,
+ "loss": 3.739394426345825,
+ "step": 2322
+ },
+ {
+ "epoch": 32.265618173875055,
+ "grad_norm": 0.27423885464668274,
+ "learning_rate": 0.0006,
+ "loss": 3.7381205558776855,
+ "step": 2323
+ },
+ {
+ "epoch": 32.27959807776322,
+ "grad_norm": 0.2594660818576813,
+ "learning_rate": 0.0006,
+ "loss": 3.698683738708496,
+ "step": 2324
+ },
+ {
+ "epoch": 32.293577981651374,
+ "grad_norm": 0.2785511016845703,
+ "learning_rate": 0.0006,
+ "loss": 3.688774824142456,
+ "step": 2325
+ },
+ {
+ "epoch": 32.30755788553954,
+ "grad_norm": 0.2690320611000061,
+ "learning_rate": 0.0006,
+ "loss": 3.7209150791168213,
+ "step": 2326
+ },
+ {
+ "epoch": 32.3215377894277,
+ "grad_norm": 0.23331770300865173,
+ "learning_rate": 0.0006,
+ "loss": 3.682931423187256,
+ "step": 2327
+ },
+ {
+ "epoch": 32.33551769331586,
+ "grad_norm": 0.22380802035331726,
+ "learning_rate": 0.0006,
+ "loss": 3.720445156097412,
+ "step": 2328
+ },
+ {
+ "epoch": 32.34949759720402,
+ "grad_norm": 0.2065964937210083,
+ "learning_rate": 0.0006,
+ "loss": 3.705427885055542,
+ "step": 2329
+ },
+ {
+ "epoch": 32.36347750109218,
+ "grad_norm": 0.20701853930950165,
+ "learning_rate": 0.0006,
+ "loss": 3.7078697681427,
+ "step": 2330
+ },
+ {
+ "epoch": 32.37745740498034,
+ "grad_norm": 0.2063559591770172,
+ "learning_rate": 0.0006,
+ "loss": 3.745004653930664,
+ "step": 2331
+ },
+ {
+ "epoch": 32.391437308868504,
+ "grad_norm": 0.19377011060714722,
+ "learning_rate": 0.0006,
+ "loss": 3.713808059692383,
+ "step": 2332
+ },
+ {
+ "epoch": 32.40541721275666,
+ "grad_norm": 0.19260725378990173,
+ "learning_rate": 0.0006,
+ "loss": 3.717043876647949,
+ "step": 2333
+ },
+ {
+ "epoch": 32.419397116644824,
+ "grad_norm": 0.20792821049690247,
+ "learning_rate": 0.0006,
+ "loss": 3.68632173538208,
+ "step": 2334
+ },
+ {
+ "epoch": 32.43337702053299,
+ "grad_norm": 0.22278444468975067,
+ "learning_rate": 0.0006,
+ "loss": 3.7345821857452393,
+ "step": 2335
+ },
+ {
+ "epoch": 32.44735692442114,
+ "grad_norm": 0.22533579170703888,
+ "learning_rate": 0.0006,
+ "loss": 3.7224173545837402,
+ "step": 2336
+ },
+ {
+ "epoch": 32.46133682830931,
+ "grad_norm": 0.20228394865989685,
+ "learning_rate": 0.0006,
+ "loss": 3.748530149459839,
+ "step": 2337
+ },
+ {
+ "epoch": 32.47531673219746,
+ "grad_norm": 0.19944614171981812,
+ "learning_rate": 0.0006,
+ "loss": 3.707085371017456,
+ "step": 2338
+ },
+ {
+ "epoch": 32.489296636085626,
+ "grad_norm": 0.19856145977973938,
+ "learning_rate": 0.0006,
+ "loss": 3.6898274421691895,
+ "step": 2339
+ },
+ {
+ "epoch": 32.50327653997379,
+ "grad_norm": 0.20734605193138123,
+ "learning_rate": 0.0006,
+ "loss": 3.7511792182922363,
+ "step": 2340
+ },
+ {
+ "epoch": 32.517256443861946,
+ "grad_norm": 0.19489309191703796,
+ "learning_rate": 0.0006,
+ "loss": 3.736445426940918,
+ "step": 2341
+ },
+ {
+ "epoch": 32.53123634775011,
+ "grad_norm": 0.18899282813072205,
+ "learning_rate": 0.0006,
+ "loss": 3.727325916290283,
+ "step": 2342
+ },
+ {
+ "epoch": 32.54521625163827,
+ "grad_norm": 0.19670401513576508,
+ "learning_rate": 0.0006,
+ "loss": 3.7326102256774902,
+ "step": 2343
+ },
+ {
+ "epoch": 32.55919615552643,
+ "grad_norm": 0.20061780512332916,
+ "learning_rate": 0.0006,
+ "loss": 3.698716402053833,
+ "step": 2344
+ },
+ {
+ "epoch": 32.57317605941459,
+ "grad_norm": 0.1991659700870514,
+ "learning_rate": 0.0006,
+ "loss": 3.6913180351257324,
+ "step": 2345
+ },
+ {
+ "epoch": 32.58715596330275,
+ "grad_norm": 0.18856225907802582,
+ "learning_rate": 0.0006,
+ "loss": 3.7130961418151855,
+ "step": 2346
+ },
+ {
+ "epoch": 32.60113586719091,
+ "grad_norm": 0.1983972191810608,
+ "learning_rate": 0.0006,
+ "loss": 3.7530808448791504,
+ "step": 2347
+ },
+ {
+ "epoch": 32.615115771079076,
+ "grad_norm": 0.2037997543811798,
+ "learning_rate": 0.0006,
+ "loss": 3.7076587677001953,
+ "step": 2348
+ },
+ {
+ "epoch": 32.62909567496723,
+ "grad_norm": 0.21008458733558655,
+ "learning_rate": 0.0006,
+ "loss": 3.7379021644592285,
+ "step": 2349
+ },
+ {
+ "epoch": 32.643075578855395,
+ "grad_norm": 0.2129313349723816,
+ "learning_rate": 0.0006,
+ "loss": 3.7031373977661133,
+ "step": 2350
+ },
+ {
+ "epoch": 32.65705548274356,
+ "grad_norm": 0.18756245076656342,
+ "learning_rate": 0.0006,
+ "loss": 3.7066285610198975,
+ "step": 2351
+ },
+ {
+ "epoch": 32.671035386631715,
+ "grad_norm": 0.17946591973304749,
+ "learning_rate": 0.0006,
+ "loss": 3.73781681060791,
+ "step": 2352
+ },
+ {
+ "epoch": 32.68501529051988,
+ "grad_norm": 0.18983198702335358,
+ "learning_rate": 0.0006,
+ "loss": 3.718855381011963,
+ "step": 2353
+ },
+ {
+ "epoch": 32.69899519440804,
+ "grad_norm": 0.2080942839384079,
+ "learning_rate": 0.0006,
+ "loss": 3.7111258506774902,
+ "step": 2354
+ },
+ {
+ "epoch": 32.7129750982962,
+ "grad_norm": 0.23633413016796112,
+ "learning_rate": 0.0006,
+ "loss": 3.709766149520874,
+ "step": 2355
+ },
+ {
+ "epoch": 32.72695500218436,
+ "grad_norm": 0.2723144590854645,
+ "learning_rate": 0.0006,
+ "loss": 3.745850086212158,
+ "step": 2356
+ },
+ {
+ "epoch": 32.74093490607252,
+ "grad_norm": 0.29774025082588196,
+ "learning_rate": 0.0006,
+ "loss": 3.733771324157715,
+ "step": 2357
+ },
+ {
+ "epoch": 32.75491480996068,
+ "grad_norm": 0.25976699590682983,
+ "learning_rate": 0.0006,
+ "loss": 3.734194278717041,
+ "step": 2358
+ },
+ {
+ "epoch": 32.768894713848844,
+ "grad_norm": 0.20038039982318878,
+ "learning_rate": 0.0006,
+ "loss": 3.735656261444092,
+ "step": 2359
+ },
+ {
+ "epoch": 32.782874617737,
+ "grad_norm": 0.19745637476444244,
+ "learning_rate": 0.0006,
+ "loss": 3.7335894107818604,
+ "step": 2360
+ },
+ {
+ "epoch": 32.796854521625164,
+ "grad_norm": 0.22022396326065063,
+ "learning_rate": 0.0006,
+ "loss": 3.708998680114746,
+ "step": 2361
+ },
+ {
+ "epoch": 32.81083442551333,
+ "grad_norm": 0.24754752218723297,
+ "learning_rate": 0.0006,
+ "loss": 3.7616286277770996,
+ "step": 2362
+ },
+ {
+ "epoch": 32.824814329401484,
+ "grad_norm": 0.26438358426094055,
+ "learning_rate": 0.0006,
+ "loss": 3.737079620361328,
+ "step": 2363
+ },
+ {
+ "epoch": 32.83879423328965,
+ "grad_norm": 0.2507241666316986,
+ "learning_rate": 0.0006,
+ "loss": 3.708500385284424,
+ "step": 2364
+ },
+ {
+ "epoch": 32.8527741371778,
+ "grad_norm": 0.25688016414642334,
+ "learning_rate": 0.0006,
+ "loss": 3.7389419078826904,
+ "step": 2365
+ },
+ {
+ "epoch": 32.86675404106597,
+ "grad_norm": 0.257447749376297,
+ "learning_rate": 0.0006,
+ "loss": 3.7253334522247314,
+ "step": 2366
+ },
+ {
+ "epoch": 32.88073394495413,
+ "grad_norm": 0.2621215879917145,
+ "learning_rate": 0.0006,
+ "loss": 3.773163318634033,
+ "step": 2367
+ },
+ {
+ "epoch": 32.89471384884229,
+ "grad_norm": 0.23554839193820953,
+ "learning_rate": 0.0006,
+ "loss": 3.7534430027008057,
+ "step": 2368
+ },
+ {
+ "epoch": 32.90869375273045,
+ "grad_norm": 0.19698940217494965,
+ "learning_rate": 0.0006,
+ "loss": 3.7094414234161377,
+ "step": 2369
+ },
+ {
+ "epoch": 32.92267365661861,
+ "grad_norm": 0.21380476653575897,
+ "learning_rate": 0.0006,
+ "loss": 3.7666497230529785,
+ "step": 2370
+ },
+ {
+ "epoch": 32.93665356050677,
+ "grad_norm": 0.20876452326774597,
+ "learning_rate": 0.0006,
+ "loss": 3.7467992305755615,
+ "step": 2371
+ },
+ {
+ "epoch": 32.95063346439493,
+ "grad_norm": 0.1989884227514267,
+ "learning_rate": 0.0006,
+ "loss": 3.749878168106079,
+ "step": 2372
+ },
+ {
+ "epoch": 32.964613368283096,
+ "grad_norm": 0.19089168310165405,
+ "learning_rate": 0.0006,
+ "loss": 3.7211015224456787,
+ "step": 2373
+ },
+ {
+ "epoch": 32.97859327217125,
+ "grad_norm": 0.1962461918592453,
+ "learning_rate": 0.0006,
+ "loss": 3.728684425354004,
+ "step": 2374
+ },
+ {
+ "epoch": 32.992573176059416,
+ "grad_norm": 0.22518110275268555,
+ "learning_rate": 0.0006,
+ "loss": 3.7361507415771484,
+ "step": 2375
+ },
+ {
+ "epoch": 33.0,
+ "grad_norm": 0.26704078912734985,
+ "learning_rate": 0.0006,
+ "loss": 3.7478318214416504,
+ "step": 2376
+ },
+ {
+ "epoch": 33.0,
+ "eval_loss": 4.024221897125244,
+ "eval_runtime": 43.9826,
+ "eval_samples_per_second": 55.522,
+ "eval_steps_per_second": 3.479,
+ "step": 2376
+ },
+ {
+ "epoch": 33.01397990388816,
+ "grad_norm": 0.23387742042541504,
+ "learning_rate": 0.0006,
+ "loss": 3.7043614387512207,
+ "step": 2377
+ },
+ {
+ "epoch": 33.02795980777632,
+ "grad_norm": 0.21334673464298248,
+ "learning_rate": 0.0006,
+ "loss": 3.6714677810668945,
+ "step": 2378
+ },
+ {
+ "epoch": 33.04193971166448,
+ "grad_norm": 0.2608581483364105,
+ "learning_rate": 0.0006,
+ "loss": 3.678460121154785,
+ "step": 2379
+ },
+ {
+ "epoch": 33.05591961555265,
+ "grad_norm": 0.31364381313323975,
+ "learning_rate": 0.0006,
+ "loss": 3.6771793365478516,
+ "step": 2380
+ },
+ {
+ "epoch": 33.0698995194408,
+ "grad_norm": 0.31785935163497925,
+ "learning_rate": 0.0006,
+ "loss": 3.7248926162719727,
+ "step": 2381
+ },
+ {
+ "epoch": 33.083879423328966,
+ "grad_norm": 0.29244646430015564,
+ "learning_rate": 0.0006,
+ "loss": 3.677882194519043,
+ "step": 2382
+ },
+ {
+ "epoch": 33.09785932721712,
+ "grad_norm": 0.23943741619586945,
+ "learning_rate": 0.0006,
+ "loss": 3.7365124225616455,
+ "step": 2383
+ },
+ {
+ "epoch": 33.111839231105286,
+ "grad_norm": 0.2547394931316376,
+ "learning_rate": 0.0006,
+ "loss": 3.7031357288360596,
+ "step": 2384
+ },
+ {
+ "epoch": 33.12581913499345,
+ "grad_norm": 0.2696659564971924,
+ "learning_rate": 0.0006,
+ "loss": 3.6904754638671875,
+ "step": 2385
+ },
+ {
+ "epoch": 33.139799038881605,
+ "grad_norm": 0.24271385371685028,
+ "learning_rate": 0.0006,
+ "loss": 3.7137649059295654,
+ "step": 2386
+ },
+ {
+ "epoch": 33.15377894276977,
+ "grad_norm": 0.23435993492603302,
+ "learning_rate": 0.0006,
+ "loss": 3.707383632659912,
+ "step": 2387
+ },
+ {
+ "epoch": 33.16775884665793,
+ "grad_norm": 0.21428440511226654,
+ "learning_rate": 0.0006,
+ "loss": 3.7148897647857666,
+ "step": 2388
+ },
+ {
+ "epoch": 33.18173875054609,
+ "grad_norm": 0.22420962154865265,
+ "learning_rate": 0.0006,
+ "loss": 3.710111141204834,
+ "step": 2389
+ },
+ {
+ "epoch": 33.19571865443425,
+ "grad_norm": 0.26222777366638184,
+ "learning_rate": 0.0006,
+ "loss": 3.677438259124756,
+ "step": 2390
+ },
+ {
+ "epoch": 33.20969855832241,
+ "grad_norm": 0.29910165071487427,
+ "learning_rate": 0.0006,
+ "loss": 3.6895523071289062,
+ "step": 2391
+ },
+ {
+ "epoch": 33.22367846221057,
+ "grad_norm": 0.2615569531917572,
+ "learning_rate": 0.0006,
+ "loss": 3.7339906692504883,
+ "step": 2392
+ },
+ {
+ "epoch": 33.237658366098735,
+ "grad_norm": 0.23396961390972137,
+ "learning_rate": 0.0006,
+ "loss": 3.7179932594299316,
+ "step": 2393
+ },
+ {
+ "epoch": 33.25163826998689,
+ "grad_norm": 0.24844495952129364,
+ "learning_rate": 0.0006,
+ "loss": 3.7191576957702637,
+ "step": 2394
+ },
+ {
+ "epoch": 33.265618173875055,
+ "grad_norm": 0.2306993454694748,
+ "learning_rate": 0.0006,
+ "loss": 3.7172658443450928,
+ "step": 2395
+ },
+ {
+ "epoch": 33.27959807776322,
+ "grad_norm": 0.24935221672058105,
+ "learning_rate": 0.0006,
+ "loss": 3.6917519569396973,
+ "step": 2396
+ },
+ {
+ "epoch": 33.293577981651374,
+ "grad_norm": 0.2522840201854706,
+ "learning_rate": 0.0006,
+ "loss": 3.7263593673706055,
+ "step": 2397
+ },
+ {
+ "epoch": 33.30755788553954,
+ "grad_norm": 0.26411181688308716,
+ "learning_rate": 0.0006,
+ "loss": 3.6981635093688965,
+ "step": 2398
+ },
+ {
+ "epoch": 33.3215377894277,
+ "grad_norm": 0.22396239638328552,
+ "learning_rate": 0.0006,
+ "loss": 3.713247299194336,
+ "step": 2399
+ },
+ {
+ "epoch": 33.33551769331586,
+ "grad_norm": 0.20579157769680023,
+ "learning_rate": 0.0006,
+ "loss": 3.7058467864990234,
+ "step": 2400
+ },
+ {
+ "epoch": 33.34949759720402,
+ "grad_norm": 0.20103922486305237,
+ "learning_rate": 0.0006,
+ "loss": 3.700924873352051,
+ "step": 2401
+ },
+ {
+ "epoch": 33.36347750109218,
+ "grad_norm": 0.19964663684368134,
+ "learning_rate": 0.0006,
+ "loss": 3.6985437870025635,
+ "step": 2402
+ },
+ {
+ "epoch": 33.37745740498034,
+ "grad_norm": 0.20860575139522552,
+ "learning_rate": 0.0006,
+ "loss": 3.7480058670043945,
+ "step": 2403
+ },
+ {
+ "epoch": 33.391437308868504,
+ "grad_norm": 0.19043605029582977,
+ "learning_rate": 0.0006,
+ "loss": 3.6952016353607178,
+ "step": 2404
+ },
+ {
+ "epoch": 33.40541721275666,
+ "grad_norm": 0.1968909204006195,
+ "learning_rate": 0.0006,
+ "loss": 3.69362735748291,
+ "step": 2405
+ },
+ {
+ "epoch": 33.419397116644824,
+ "grad_norm": 0.23492494225502014,
+ "learning_rate": 0.0006,
+ "loss": 3.707993984222412,
+ "step": 2406
+ },
+ {
+ "epoch": 33.43337702053299,
+ "grad_norm": 0.23970453441143036,
+ "learning_rate": 0.0006,
+ "loss": 3.707731246948242,
+ "step": 2407
+ },
+ {
+ "epoch": 33.44735692442114,
+ "grad_norm": 0.2515844404697418,
+ "learning_rate": 0.0006,
+ "loss": 3.723824977874756,
+ "step": 2408
+ },
+ {
+ "epoch": 33.46133682830931,
+ "grad_norm": 0.2343570590019226,
+ "learning_rate": 0.0006,
+ "loss": 3.7068886756896973,
+ "step": 2409
+ },
+ {
+ "epoch": 33.47531673219746,
+ "grad_norm": 0.23419860005378723,
+ "learning_rate": 0.0006,
+ "loss": 3.6964287757873535,
+ "step": 2410
+ },
+ {
+ "epoch": 33.489296636085626,
+ "grad_norm": 0.21280375123023987,
+ "learning_rate": 0.0006,
+ "loss": 3.7020950317382812,
+ "step": 2411
+ },
+ {
+ "epoch": 33.50327653997379,
+ "grad_norm": 0.2061092108488083,
+ "learning_rate": 0.0006,
+ "loss": 3.750861406326294,
+ "step": 2412
+ },
+ {
+ "epoch": 33.517256443861946,
+ "grad_norm": 0.19693219661712646,
+ "learning_rate": 0.0006,
+ "loss": 3.717020034790039,
+ "step": 2413
+ },
+ {
+ "epoch": 33.53123634775011,
+ "grad_norm": 0.18199551105499268,
+ "learning_rate": 0.0006,
+ "loss": 3.7242612838745117,
+ "step": 2414
+ },
+ {
+ "epoch": 33.54521625163827,
+ "grad_norm": 0.20131248235702515,
+ "learning_rate": 0.0006,
+ "loss": 3.6758954524993896,
+ "step": 2415
+ },
+ {
+ "epoch": 33.55919615552643,
+ "grad_norm": 0.2219412475824356,
+ "learning_rate": 0.0006,
+ "loss": 3.707927703857422,
+ "step": 2416
+ },
+ {
+ "epoch": 33.57317605941459,
+ "grad_norm": 0.22541435062885284,
+ "learning_rate": 0.0006,
+ "loss": 3.696967601776123,
+ "step": 2417
+ },
+ {
+ "epoch": 33.58715596330275,
+ "grad_norm": 0.20367272198200226,
+ "learning_rate": 0.0006,
+ "loss": 3.730795383453369,
+ "step": 2418
+ },
+ {
+ "epoch": 33.60113586719091,
+ "grad_norm": 0.20861074328422546,
+ "learning_rate": 0.0006,
+ "loss": 3.707066535949707,
+ "step": 2419
+ },
+ {
+ "epoch": 33.615115771079076,
+ "grad_norm": 0.20570263266563416,
+ "learning_rate": 0.0006,
+ "loss": 3.730602502822876,
+ "step": 2420
+ },
+ {
+ "epoch": 33.62909567496723,
+ "grad_norm": 0.21318231523036957,
+ "learning_rate": 0.0006,
+ "loss": 3.7073278427124023,
+ "step": 2421
+ },
+ {
+ "epoch": 33.643075578855395,
+ "grad_norm": 0.2142639458179474,
+ "learning_rate": 0.0006,
+ "loss": 3.718470573425293,
+ "step": 2422
+ },
+ {
+ "epoch": 33.65705548274356,
+ "grad_norm": 0.19620704650878906,
+ "learning_rate": 0.0006,
+ "loss": 3.716036319732666,
+ "step": 2423
+ },
+ {
+ "epoch": 33.671035386631715,
+ "grad_norm": 0.19308267533779144,
+ "learning_rate": 0.0006,
+ "loss": 3.734597682952881,
+ "step": 2424
+ },
+ {
+ "epoch": 33.68501529051988,
+ "grad_norm": 0.19453389942646027,
+ "learning_rate": 0.0006,
+ "loss": 3.726262092590332,
+ "step": 2425
+ },
+ {
+ "epoch": 33.69899519440804,
+ "grad_norm": 0.20405639708042145,
+ "learning_rate": 0.0006,
+ "loss": 3.678340435028076,
+ "step": 2426
+ },
+ {
+ "epoch": 33.7129750982962,
+ "grad_norm": 0.19525611400604248,
+ "learning_rate": 0.0006,
+ "loss": 3.723907470703125,
+ "step": 2427
+ },
+ {
+ "epoch": 33.72695500218436,
+ "grad_norm": 0.19390441477298737,
+ "learning_rate": 0.0006,
+ "loss": 3.707897186279297,
+ "step": 2428
+ },
+ {
+ "epoch": 33.74093490607252,
+ "grad_norm": 0.2032899558544159,
+ "learning_rate": 0.0006,
+ "loss": 3.735041618347168,
+ "step": 2429
+ },
+ {
+ "epoch": 33.75491480996068,
+ "grad_norm": 0.2134784460067749,
+ "learning_rate": 0.0006,
+ "loss": 3.674978017807007,
+ "step": 2430
+ },
+ {
+ "epoch": 33.768894713848844,
+ "grad_norm": 0.24691973626613617,
+ "learning_rate": 0.0006,
+ "loss": 3.7028675079345703,
+ "step": 2431
+ },
+ {
+ "epoch": 33.782874617737,
+ "grad_norm": 0.2272702008485794,
+ "learning_rate": 0.0006,
+ "loss": 3.7277941703796387,
+ "step": 2432
+ },
+ {
+ "epoch": 33.796854521625164,
+ "grad_norm": 0.20052100718021393,
+ "learning_rate": 0.0006,
+ "loss": 3.7146830558776855,
+ "step": 2433
+ },
+ {
+ "epoch": 33.81083442551333,
+ "grad_norm": 0.1958577185869217,
+ "learning_rate": 0.0006,
+ "loss": 3.6936864852905273,
+ "step": 2434
+ },
+ {
+ "epoch": 33.824814329401484,
+ "grad_norm": 0.191860631108284,
+ "learning_rate": 0.0006,
+ "loss": 3.7451858520507812,
+ "step": 2435
+ },
+ {
+ "epoch": 33.83879423328965,
+ "grad_norm": 0.20961424708366394,
+ "learning_rate": 0.0006,
+ "loss": 3.722400665283203,
+ "step": 2436
+ },
+ {
+ "epoch": 33.8527741371778,
+ "grad_norm": 0.19784288108348846,
+ "learning_rate": 0.0006,
+ "loss": 3.712474822998047,
+ "step": 2437
+ },
+ {
+ "epoch": 33.86675404106597,
+ "grad_norm": 0.18645426630973816,
+ "learning_rate": 0.0006,
+ "loss": 3.7054500579833984,
+ "step": 2438
+ },
+ {
+ "epoch": 33.88073394495413,
+ "grad_norm": 0.19622360169887543,
+ "learning_rate": 0.0006,
+ "loss": 3.7010550498962402,
+ "step": 2439
+ },
+ {
+ "epoch": 33.89471384884229,
+ "grad_norm": 0.20283745229244232,
+ "learning_rate": 0.0006,
+ "loss": 3.7252519130706787,
+ "step": 2440
+ },
+ {
+ "epoch": 33.90869375273045,
+ "grad_norm": 0.18671709299087524,
+ "learning_rate": 0.0006,
+ "loss": 3.6932945251464844,
+ "step": 2441
+ },
+ {
+ "epoch": 33.92267365661861,
+ "grad_norm": 0.17953112721443176,
+ "learning_rate": 0.0006,
+ "loss": 3.7453854084014893,
+ "step": 2442
+ },
+ {
+ "epoch": 33.93665356050677,
+ "grad_norm": 0.1945437788963318,
+ "learning_rate": 0.0006,
+ "loss": 3.722881317138672,
+ "step": 2443
+ },
+ {
+ "epoch": 33.95063346439493,
+ "grad_norm": 0.18414495885372162,
+ "learning_rate": 0.0006,
+ "loss": 3.7402591705322266,
+ "step": 2444
+ },
+ {
+ "epoch": 33.964613368283096,
+ "grad_norm": 0.1936541497707367,
+ "learning_rate": 0.0006,
+ "loss": 3.720057964324951,
+ "step": 2445
+ },
+ {
+ "epoch": 33.97859327217125,
+ "grad_norm": 0.20177008211612701,
+ "learning_rate": 0.0006,
+ "loss": 3.6983802318573,
+ "step": 2446
+ },
+ {
+ "epoch": 33.992573176059416,
+ "grad_norm": 0.18977557122707367,
+ "learning_rate": 0.0006,
+ "loss": 3.7202203273773193,
+ "step": 2447
+ },
+ {
+ "epoch": 34.0,
+ "grad_norm": 0.220163956284523,
+ "learning_rate": 0.0006,
+ "loss": 3.72540283203125,
+ "step": 2448
+ },
+ {
+ "epoch": 34.0,
+ "eval_loss": 4.009343147277832,
+ "eval_runtime": 44.1825,
+ "eval_samples_per_second": 55.271,
+ "eval_steps_per_second": 3.463,
+ "step": 2448
+ },
+ {
+ "epoch": 34.01397990388816,
+ "grad_norm": 0.19843372702598572,
+ "learning_rate": 0.0006,
+ "loss": 3.664431571960449,
+ "step": 2449
+ },
+ {
+ "epoch": 34.02795980777632,
+ "grad_norm": 0.20413008332252502,
+ "learning_rate": 0.0006,
+ "loss": 3.699094533920288,
+ "step": 2450
+ },
+ {
+ "epoch": 34.04193971166448,
+ "grad_norm": 0.22086848318576813,
+ "learning_rate": 0.0006,
+ "loss": 3.681825637817383,
+ "step": 2451
+ },
+ {
+ "epoch": 34.05591961555265,
+ "grad_norm": 0.20753061771392822,
+ "learning_rate": 0.0006,
+ "loss": 3.677116870880127,
+ "step": 2452
+ },
+ {
+ "epoch": 34.0698995194408,
+ "grad_norm": 0.21835783123970032,
+ "learning_rate": 0.0006,
+ "loss": 3.7079062461853027,
+ "step": 2453
+ },
+ {
+ "epoch": 34.083879423328966,
+ "grad_norm": 0.2244357019662857,
+ "learning_rate": 0.0006,
+ "loss": 3.69844913482666,
+ "step": 2454
+ },
+ {
+ "epoch": 34.09785932721712,
+ "grad_norm": 0.2238784283399582,
+ "learning_rate": 0.0006,
+ "loss": 3.6835570335388184,
+ "step": 2455
+ },
+ {
+ "epoch": 34.111839231105286,
+ "grad_norm": 0.24816176295280457,
+ "learning_rate": 0.0006,
+ "loss": 3.6832966804504395,
+ "step": 2456
+ },
+ {
+ "epoch": 34.12581913499345,
+ "grad_norm": 0.2445257306098938,
+ "learning_rate": 0.0006,
+ "loss": 3.7190022468566895,
+ "step": 2457
+ },
+ {
+ "epoch": 34.139799038881605,
+ "grad_norm": 0.24510814249515533,
+ "learning_rate": 0.0006,
+ "loss": 3.678098201751709,
+ "step": 2458
+ },
+ {
+ "epoch": 34.15377894276977,
+ "grad_norm": 0.2550753653049469,
+ "learning_rate": 0.0006,
+ "loss": 3.69335675239563,
+ "step": 2459
+ },
+ {
+ "epoch": 34.16775884665793,
+ "grad_norm": 0.2435017228126526,
+ "learning_rate": 0.0006,
+ "loss": 3.70463228225708,
+ "step": 2460
+ },
+ {
+ "epoch": 34.18173875054609,
+ "grad_norm": 0.26441144943237305,
+ "learning_rate": 0.0006,
+ "loss": 3.6757068634033203,
+ "step": 2461
+ },
+ {
+ "epoch": 34.19571865443425,
+ "grad_norm": 0.2737993001937866,
+ "learning_rate": 0.0006,
+ "loss": 3.6510863304138184,
+ "step": 2462
+ },
+ {
+ "epoch": 34.20969855832241,
+ "grad_norm": 0.24625736474990845,
+ "learning_rate": 0.0006,
+ "loss": 3.707612991333008,
+ "step": 2463
+ },
+ {
+ "epoch": 34.22367846221057,
+ "grad_norm": 0.22222039103507996,
+ "learning_rate": 0.0006,
+ "loss": 3.7145133018493652,
+ "step": 2464
+ },
+ {
+ "epoch": 34.237658366098735,
+ "grad_norm": 0.2173531949520111,
+ "learning_rate": 0.0006,
+ "loss": 3.685112476348877,
+ "step": 2465
+ },
+ {
+ "epoch": 34.25163826998689,
+ "grad_norm": 0.23102006316184998,
+ "learning_rate": 0.0006,
+ "loss": 3.6742453575134277,
+ "step": 2466
+ },
+ {
+ "epoch": 34.265618173875055,
+ "grad_norm": 0.22287188470363617,
+ "learning_rate": 0.0006,
+ "loss": 3.7030534744262695,
+ "step": 2467
+ },
+ {
+ "epoch": 34.27959807776322,
+ "grad_norm": 0.20377251505851746,
+ "learning_rate": 0.0006,
+ "loss": 3.6866259574890137,
+ "step": 2468
+ },
+ {
+ "epoch": 34.293577981651374,
+ "grad_norm": 0.19867438077926636,
+ "learning_rate": 0.0006,
+ "loss": 3.70395565032959,
+ "step": 2469
+ },
+ {
+ "epoch": 34.30755788553954,
+ "grad_norm": 0.2014918178319931,
+ "learning_rate": 0.0006,
+ "loss": 3.660795211791992,
+ "step": 2470
+ },
+ {
+ "epoch": 34.3215377894277,
+ "grad_norm": 0.20981402695178986,
+ "learning_rate": 0.0006,
+ "loss": 3.7045323848724365,
+ "step": 2471
+ },
+ {
+ "epoch": 34.33551769331586,
+ "grad_norm": 0.20968124270439148,
+ "learning_rate": 0.0006,
+ "loss": 3.7113170623779297,
+ "step": 2472
+ },
+ {
+ "epoch": 34.34949759720402,
+ "grad_norm": 0.2214043140411377,
+ "learning_rate": 0.0006,
+ "loss": 3.7330074310302734,
+ "step": 2473
+ },
+ {
+ "epoch": 34.36347750109218,
+ "grad_norm": 0.21231533586978912,
+ "learning_rate": 0.0006,
+ "loss": 3.6706933975219727,
+ "step": 2474
+ },
+ {
+ "epoch": 34.37745740498034,
+ "grad_norm": 0.2022094875574112,
+ "learning_rate": 0.0006,
+ "loss": 3.7230453491210938,
+ "step": 2475
+ },
+ {
+ "epoch": 34.391437308868504,
+ "grad_norm": 0.2281145304441452,
+ "learning_rate": 0.0006,
+ "loss": 3.7197465896606445,
+ "step": 2476
+ },
+ {
+ "epoch": 34.40541721275666,
+ "grad_norm": 0.2147362381219864,
+ "learning_rate": 0.0006,
+ "loss": 3.7092337608337402,
+ "step": 2477
+ },
+ {
+ "epoch": 34.419397116644824,
+ "grad_norm": 0.19984203577041626,
+ "learning_rate": 0.0006,
+ "loss": 3.6939496994018555,
+ "step": 2478
+ },
+ {
+ "epoch": 34.43337702053299,
+ "grad_norm": 0.21088480949401855,
+ "learning_rate": 0.0006,
+ "loss": 3.6942667961120605,
+ "step": 2479
+ },
+ {
+ "epoch": 34.44735692442114,
+ "grad_norm": 0.20444616675376892,
+ "learning_rate": 0.0006,
+ "loss": 3.718186378479004,
+ "step": 2480
+ },
+ {
+ "epoch": 34.46133682830931,
+ "grad_norm": 0.19133952260017395,
+ "learning_rate": 0.0006,
+ "loss": 3.697197437286377,
+ "step": 2481
+ },
+ {
+ "epoch": 34.47531673219746,
+ "grad_norm": 0.2219255417585373,
+ "learning_rate": 0.0006,
+ "loss": 3.684386730194092,
+ "step": 2482
+ },
+ {
+ "epoch": 34.489296636085626,
+ "grad_norm": 0.2480643391609192,
+ "learning_rate": 0.0006,
+ "loss": 3.6656622886657715,
+ "step": 2483
+ },
+ {
+ "epoch": 34.50327653997379,
+ "grad_norm": 0.22907346487045288,
+ "learning_rate": 0.0006,
+ "loss": 3.741391897201538,
+ "step": 2484
+ },
+ {
+ "epoch": 34.517256443861946,
+ "grad_norm": 0.20277173817157745,
+ "learning_rate": 0.0006,
+ "loss": 3.7062582969665527,
+ "step": 2485
+ },
+ {
+ "epoch": 34.53123634775011,
+ "grad_norm": 0.21411100029945374,
+ "learning_rate": 0.0006,
+ "loss": 3.691784381866455,
+ "step": 2486
+ },
+ {
+ "epoch": 34.54521625163827,
+ "grad_norm": 0.20261600613594055,
+ "learning_rate": 0.0006,
+ "loss": 3.6855502128601074,
+ "step": 2487
+ },
+ {
+ "epoch": 34.55919615552643,
+ "grad_norm": 0.23913109302520752,
+ "learning_rate": 0.0006,
+ "loss": 3.670754909515381,
+ "step": 2488
+ },
+ {
+ "epoch": 34.57317605941459,
+ "grad_norm": 0.24427077174186707,
+ "learning_rate": 0.0006,
+ "loss": 3.700611114501953,
+ "step": 2489
+ },
+ {
+ "epoch": 34.58715596330275,
+ "grad_norm": 0.20305761694908142,
+ "learning_rate": 0.0006,
+ "loss": 3.7284226417541504,
+ "step": 2490
+ },
+ {
+ "epoch": 34.60113586719091,
+ "grad_norm": 0.20398905873298645,
+ "learning_rate": 0.0006,
+ "loss": 3.6860880851745605,
+ "step": 2491
+ },
+ {
+ "epoch": 34.615115771079076,
+ "grad_norm": 0.21016651391983032,
+ "learning_rate": 0.0006,
+ "loss": 3.7366015911102295,
+ "step": 2492
+ },
+ {
+ "epoch": 34.62909567496723,
+ "grad_norm": 0.22279402613639832,
+ "learning_rate": 0.0006,
+ "loss": 3.7024295330047607,
+ "step": 2493
+ },
+ {
+ "epoch": 34.643075578855395,
+ "grad_norm": 0.25080347061157227,
+ "learning_rate": 0.0006,
+ "loss": 3.68355655670166,
+ "step": 2494
+ },
+ {
+ "epoch": 34.65705548274356,
+ "grad_norm": 0.2702971398830414,
+ "learning_rate": 0.0006,
+ "loss": 3.7400612831115723,
+ "step": 2495
+ },
+ {
+ "epoch": 34.671035386631715,
+ "grad_norm": 0.299398273229599,
+ "learning_rate": 0.0006,
+ "loss": 3.7160325050354004,
+ "step": 2496
+ },
+ {
+ "epoch": 34.68501529051988,
+ "grad_norm": 0.29151082038879395,
+ "learning_rate": 0.0006,
+ "loss": 3.7124147415161133,
+ "step": 2497
+ },
+ {
+ "epoch": 34.69899519440804,
+ "grad_norm": 0.23828288912773132,
+ "learning_rate": 0.0006,
+ "loss": 3.7181267738342285,
+ "step": 2498
+ },
+ {
+ "epoch": 34.7129750982962,
+ "grad_norm": 0.21776588261127472,
+ "learning_rate": 0.0006,
+ "loss": 3.6811792850494385,
+ "step": 2499
+ },
+ {
+ "epoch": 34.72695500218436,
+ "grad_norm": 0.2318469136953354,
+ "learning_rate": 0.0006,
+ "loss": 3.698467254638672,
+ "step": 2500
+ },
+ {
+ "epoch": 34.74093490607252,
+ "grad_norm": 0.22341546416282654,
+ "learning_rate": 0.0006,
+ "loss": 3.7406411170959473,
+ "step": 2501
+ },
+ {
+ "epoch": 34.75491480996068,
+ "grad_norm": 0.20676901936531067,
+ "learning_rate": 0.0006,
+ "loss": 3.6914243698120117,
+ "step": 2502
+ },
+ {
+ "epoch": 34.768894713848844,
+ "grad_norm": 0.20459024608135223,
+ "learning_rate": 0.0006,
+ "loss": 3.713369607925415,
+ "step": 2503
+ },
+ {
+ "epoch": 34.782874617737,
+ "grad_norm": 0.22369320690631866,
+ "learning_rate": 0.0006,
+ "loss": 3.697587490081787,
+ "step": 2504
+ },
+ {
+ "epoch": 34.796854521625164,
+ "grad_norm": 0.2393338829278946,
+ "learning_rate": 0.0006,
+ "loss": 3.7171854972839355,
+ "step": 2505
+ },
+ {
+ "epoch": 34.81083442551333,
+ "grad_norm": 0.23756961524486542,
+ "learning_rate": 0.0006,
+ "loss": 3.6969614028930664,
+ "step": 2506
+ },
+ {
+ "epoch": 34.824814329401484,
+ "grad_norm": 0.22761376202106476,
+ "learning_rate": 0.0006,
+ "loss": 3.722501754760742,
+ "step": 2507
+ },
+ {
+ "epoch": 34.83879423328965,
+ "grad_norm": 0.23564888536930084,
+ "learning_rate": 0.0006,
+ "loss": 3.714003086090088,
+ "step": 2508
+ },
+ {
+ "epoch": 34.8527741371778,
+ "grad_norm": 0.22197313606739044,
+ "learning_rate": 0.0006,
+ "loss": 3.7107110023498535,
+ "step": 2509
+ },
+ {
+ "epoch": 34.86675404106597,
+ "grad_norm": 0.20199328660964966,
+ "learning_rate": 0.0006,
+ "loss": 3.7167551517486572,
+ "step": 2510
+ },
+ {
+ "epoch": 34.88073394495413,
+ "grad_norm": 0.19569700956344604,
+ "learning_rate": 0.0006,
+ "loss": 3.679098129272461,
+ "step": 2511
+ },
+ {
+ "epoch": 34.89471384884229,
+ "grad_norm": 0.21320141851902008,
+ "learning_rate": 0.0006,
+ "loss": 3.733187675476074,
+ "step": 2512
+ },
+ {
+ "epoch": 34.90869375273045,
+ "grad_norm": 0.20074625313282013,
+ "learning_rate": 0.0006,
+ "loss": 3.713339328765869,
+ "step": 2513
+ },
+ {
+ "epoch": 34.92267365661861,
+ "grad_norm": 0.20249252021312714,
+ "learning_rate": 0.0006,
+ "loss": 3.680785655975342,
+ "step": 2514
+ },
+ {
+ "epoch": 34.93665356050677,
+ "grad_norm": 0.22165577113628387,
+ "learning_rate": 0.0006,
+ "loss": 3.696131706237793,
+ "step": 2515
+ },
+ {
+ "epoch": 34.95063346439493,
+ "grad_norm": 0.20769749581813812,
+ "learning_rate": 0.0006,
+ "loss": 3.6910316944122314,
+ "step": 2516
+ },
+ {
+ "epoch": 34.964613368283096,
+ "grad_norm": 0.20857223868370056,
+ "learning_rate": 0.0006,
+ "loss": 3.7327451705932617,
+ "step": 2517
+ },
+ {
+ "epoch": 34.97859327217125,
+ "grad_norm": 0.19155766069889069,
+ "learning_rate": 0.0006,
+ "loss": 3.705609083175659,
+ "step": 2518
+ },
+ {
+ "epoch": 34.992573176059416,
+ "grad_norm": 0.17890529334545135,
+ "learning_rate": 0.0006,
+ "loss": 3.6844797134399414,
+ "step": 2519
+ },
+ {
+ "epoch": 35.0,
+ "grad_norm": 0.2053528130054474,
+ "learning_rate": 0.0006,
+ "loss": 3.6942501068115234,
+ "step": 2520
+ },
+ {
+ "epoch": 35.0,
+ "eval_loss": 3.998469591140747,
+ "eval_runtime": 43.9147,
+ "eval_samples_per_second": 55.608,
+ "eval_steps_per_second": 3.484,
+ "step": 2520
+ },
+ {
+ "epoch": 35.01397990388816,
+ "grad_norm": 0.2288869470357895,
+ "learning_rate": 0.0006,
+ "loss": 3.6966426372528076,
+ "step": 2521
+ },
+ {
+ "epoch": 35.02795980777632,
+ "grad_norm": 0.25702035427093506,
+ "learning_rate": 0.0006,
+ "loss": 3.6622562408447266,
+ "step": 2522
+ },
+ {
+ "epoch": 35.04193971166448,
+ "grad_norm": 0.254422128200531,
+ "learning_rate": 0.0006,
+ "loss": 3.690046548843384,
+ "step": 2523
+ },
+ {
+ "epoch": 35.05591961555265,
+ "grad_norm": 0.24177077412605286,
+ "learning_rate": 0.0006,
+ "loss": 3.685335874557495,
+ "step": 2524
+ },
+ {
+ "epoch": 35.0698995194408,
+ "grad_norm": 0.23959586024284363,
+ "learning_rate": 0.0006,
+ "loss": 3.6534650325775146,
+ "step": 2525
+ },
+ {
+ "epoch": 35.083879423328966,
+ "grad_norm": 0.23474839329719543,
+ "learning_rate": 0.0006,
+ "loss": 3.7092814445495605,
+ "step": 2526
+ },
+ {
+ "epoch": 35.09785932721712,
+ "grad_norm": 0.23240867257118225,
+ "learning_rate": 0.0006,
+ "loss": 3.6819097995758057,
+ "step": 2527
+ },
+ {
+ "epoch": 35.111839231105286,
+ "grad_norm": 0.26267048716545105,
+ "learning_rate": 0.0006,
+ "loss": 3.6566696166992188,
+ "step": 2528
+ },
+ {
+ "epoch": 35.12581913499345,
+ "grad_norm": 0.27070754766464233,
+ "learning_rate": 0.0006,
+ "loss": 3.676304340362549,
+ "step": 2529
+ },
+ {
+ "epoch": 35.139799038881605,
+ "grad_norm": 0.25297826528549194,
+ "learning_rate": 0.0006,
+ "loss": 3.65259051322937,
+ "step": 2530
+ },
+ {
+ "epoch": 35.15377894276977,
+ "grad_norm": 0.22776272892951965,
+ "learning_rate": 0.0006,
+ "loss": 3.6813838481903076,
+ "step": 2531
+ },
+ {
+ "epoch": 35.16775884665793,
+ "grad_norm": 0.2288261204957962,
+ "learning_rate": 0.0006,
+ "loss": 3.6916379928588867,
+ "step": 2532
+ },
+ {
+ "epoch": 35.18173875054609,
+ "grad_norm": 0.20445892214775085,
+ "learning_rate": 0.0006,
+ "loss": 3.6550145149230957,
+ "step": 2533
+ },
+ {
+ "epoch": 35.19571865443425,
+ "grad_norm": 0.20298904180526733,
+ "learning_rate": 0.0006,
+ "loss": 3.704042434692383,
+ "step": 2534
+ },
+ {
+ "epoch": 35.20969855832241,
+ "grad_norm": 0.2264423668384552,
+ "learning_rate": 0.0006,
+ "loss": 3.646308183670044,
+ "step": 2535
+ },
+ {
+ "epoch": 35.22367846221057,
+ "grad_norm": 0.21537378430366516,
+ "learning_rate": 0.0006,
+ "loss": 3.686048984527588,
+ "step": 2536
+ },
+ {
+ "epoch": 35.237658366098735,
+ "grad_norm": 0.19820059835910797,
+ "learning_rate": 0.0006,
+ "loss": 3.6993050575256348,
+ "step": 2537
+ },
+ {
+ "epoch": 35.25163826998689,
+ "grad_norm": 0.19485290348529816,
+ "learning_rate": 0.0006,
+ "loss": 3.6507070064544678,
+ "step": 2538
+ },
+ {
+ "epoch": 35.265618173875055,
+ "grad_norm": 0.21234364807605743,
+ "learning_rate": 0.0006,
+ "loss": 3.6913719177246094,
+ "step": 2539
+ },
+ {
+ "epoch": 35.27959807776322,
+ "grad_norm": 0.19834300875663757,
+ "learning_rate": 0.0006,
+ "loss": 3.6793041229248047,
+ "step": 2540
+ },
+ {
+ "epoch": 35.293577981651374,
+ "grad_norm": 0.1969013512134552,
+ "learning_rate": 0.0006,
+ "loss": 3.7063517570495605,
+ "step": 2541
+ },
+ {
+ "epoch": 35.30755788553954,
+ "grad_norm": 0.196136936545372,
+ "learning_rate": 0.0006,
+ "loss": 3.679825782775879,
+ "step": 2542
+ },
+ {
+ "epoch": 35.3215377894277,
+ "grad_norm": 0.20465479791164398,
+ "learning_rate": 0.0006,
+ "loss": 3.698906421661377,
+ "step": 2543
+ },
+ {
+ "epoch": 35.33551769331586,
+ "grad_norm": 0.204293355345726,
+ "learning_rate": 0.0006,
+ "loss": 3.728549003601074,
+ "step": 2544
+ },
+ {
+ "epoch": 35.34949759720402,
+ "grad_norm": 0.18861903250217438,
+ "learning_rate": 0.0006,
+ "loss": 3.687018632888794,
+ "step": 2545
+ },
+ {
+ "epoch": 35.36347750109218,
+ "grad_norm": 0.19066226482391357,
+ "learning_rate": 0.0006,
+ "loss": 3.667919158935547,
+ "step": 2546
+ },
+ {
+ "epoch": 35.37745740498034,
+ "grad_norm": 0.19985736906528473,
+ "learning_rate": 0.0006,
+ "loss": 3.6697773933410645,
+ "step": 2547
+ },
+ {
+ "epoch": 35.391437308868504,
+ "grad_norm": 0.20669348537921906,
+ "learning_rate": 0.0006,
+ "loss": 3.6718077659606934,
+ "step": 2548
+ },
+ {
+ "epoch": 35.40541721275666,
+ "grad_norm": 0.22164477407932281,
+ "learning_rate": 0.0006,
+ "loss": 3.692106246948242,
+ "step": 2549
+ },
+ {
+ "epoch": 35.419397116644824,
+ "grad_norm": 0.20884688198566437,
+ "learning_rate": 0.0006,
+ "loss": 3.714324712753296,
+ "step": 2550
+ },
+ {
+ "epoch": 35.43337702053299,
+ "grad_norm": 0.21811005473136902,
+ "learning_rate": 0.0006,
+ "loss": 3.678694725036621,
+ "step": 2551
+ },
+ {
+ "epoch": 35.44735692442114,
+ "grad_norm": 0.2427632063627243,
+ "learning_rate": 0.0006,
+ "loss": 3.6584935188293457,
+ "step": 2552
+ },
+ {
+ "epoch": 35.46133682830931,
+ "grad_norm": 0.2584928572177887,
+ "learning_rate": 0.0006,
+ "loss": 3.694148063659668,
+ "step": 2553
+ },
+ {
+ "epoch": 35.47531673219746,
+ "grad_norm": 0.2594548761844635,
+ "learning_rate": 0.0006,
+ "loss": 3.690629005432129,
+ "step": 2554
+ },
+ {
+ "epoch": 35.489296636085626,
+ "grad_norm": 0.2521844208240509,
+ "learning_rate": 0.0006,
+ "loss": 3.6949915885925293,
+ "step": 2555
+ },
+ {
+ "epoch": 35.50327653997379,
+ "grad_norm": 0.2284533679485321,
+ "learning_rate": 0.0006,
+ "loss": 3.6822848320007324,
+ "step": 2556
+ },
+ {
+ "epoch": 35.517256443861946,
+ "grad_norm": 0.2350241094827652,
+ "learning_rate": 0.0006,
+ "loss": 3.6841659545898438,
+ "step": 2557
+ },
+ {
+ "epoch": 35.53123634775011,
+ "grad_norm": 0.22496885061264038,
+ "learning_rate": 0.0006,
+ "loss": 3.676447629928589,
+ "step": 2558
+ },
+ {
+ "epoch": 35.54521625163827,
+ "grad_norm": 0.24326276779174805,
+ "learning_rate": 0.0006,
+ "loss": 3.681678533554077,
+ "step": 2559
+ },
+ {
+ "epoch": 35.55919615552643,
+ "grad_norm": 0.26298362016677856,
+ "learning_rate": 0.0006,
+ "loss": 3.6877617835998535,
+ "step": 2560
+ },
+ {
+ "epoch": 35.57317605941459,
+ "grad_norm": 0.2507239282131195,
+ "learning_rate": 0.0006,
+ "loss": 3.7089176177978516,
+ "step": 2561
+ },
+ {
+ "epoch": 35.58715596330275,
+ "grad_norm": 0.2276458442211151,
+ "learning_rate": 0.0006,
+ "loss": 3.705570936203003,
+ "step": 2562
+ },
+ {
+ "epoch": 35.60113586719091,
+ "grad_norm": 0.23317085206508636,
+ "learning_rate": 0.0006,
+ "loss": 3.6772396564483643,
+ "step": 2563
+ },
+ {
+ "epoch": 35.615115771079076,
+ "grad_norm": 0.23301710188388824,
+ "learning_rate": 0.0006,
+ "loss": 3.694855213165283,
+ "step": 2564
+ },
+ {
+ "epoch": 35.62909567496723,
+ "grad_norm": 0.2170179933309555,
+ "learning_rate": 0.0006,
+ "loss": 3.7095537185668945,
+ "step": 2565
+ },
+ {
+ "epoch": 35.643075578855395,
+ "grad_norm": 0.21211965382099152,
+ "learning_rate": 0.0006,
+ "loss": 3.670109272003174,
+ "step": 2566
+ },
+ {
+ "epoch": 35.65705548274356,
+ "grad_norm": 0.21052585542201996,
+ "learning_rate": 0.0006,
+ "loss": 3.6576027870178223,
+ "step": 2567
+ },
+ {
+ "epoch": 35.671035386631715,
+ "grad_norm": 0.21556039154529572,
+ "learning_rate": 0.0006,
+ "loss": 3.6870639324188232,
+ "step": 2568
+ },
+ {
+ "epoch": 35.68501529051988,
+ "grad_norm": 0.2246469408273697,
+ "learning_rate": 0.0006,
+ "loss": 3.675652503967285,
+ "step": 2569
+ },
+ {
+ "epoch": 35.69899519440804,
+ "grad_norm": 0.21891754865646362,
+ "learning_rate": 0.0006,
+ "loss": 3.692298650741577,
+ "step": 2570
+ },
+ {
+ "epoch": 35.7129750982962,
+ "grad_norm": 0.18774104118347168,
+ "learning_rate": 0.0006,
+ "loss": 3.681035041809082,
+ "step": 2571
+ },
+ {
+ "epoch": 35.72695500218436,
+ "grad_norm": 0.19461573660373688,
+ "learning_rate": 0.0006,
+ "loss": 3.7007932662963867,
+ "step": 2572
+ },
+ {
+ "epoch": 35.74093490607252,
+ "grad_norm": 0.25579094886779785,
+ "learning_rate": 0.0006,
+ "loss": 3.724409580230713,
+ "step": 2573
+ },
+ {
+ "epoch": 35.75491480996068,
+ "grad_norm": 0.27635645866394043,
+ "learning_rate": 0.0006,
+ "loss": 3.68107271194458,
+ "step": 2574
+ },
+ {
+ "epoch": 35.768894713848844,
+ "grad_norm": 0.2233380675315857,
+ "learning_rate": 0.0006,
+ "loss": 3.7123913764953613,
+ "step": 2575
+ },
+ {
+ "epoch": 35.782874617737,
+ "grad_norm": 0.19383835792541504,
+ "learning_rate": 0.0006,
+ "loss": 3.6948328018188477,
+ "step": 2576
+ },
+ {
+ "epoch": 35.796854521625164,
+ "grad_norm": 0.18138426542282104,
+ "learning_rate": 0.0006,
+ "loss": 3.6837103366851807,
+ "step": 2577
+ },
+ {
+ "epoch": 35.81083442551333,
+ "grad_norm": 0.18680135905742645,
+ "learning_rate": 0.0006,
+ "loss": 3.7106502056121826,
+ "step": 2578
+ },
+ {
+ "epoch": 35.824814329401484,
+ "grad_norm": 0.19226312637329102,
+ "learning_rate": 0.0006,
+ "loss": 3.69488787651062,
+ "step": 2579
+ },
+ {
+ "epoch": 35.83879423328965,
+ "grad_norm": 0.19224657118320465,
+ "learning_rate": 0.0006,
+ "loss": 3.7103662490844727,
+ "step": 2580
+ },
+ {
+ "epoch": 35.8527741371778,
+ "grad_norm": 0.18991880118846893,
+ "learning_rate": 0.0006,
+ "loss": 3.7154245376586914,
+ "step": 2581
+ },
+ {
+ "epoch": 35.86675404106597,
+ "grad_norm": 0.2036849409341812,
+ "learning_rate": 0.0006,
+ "loss": 3.723738193511963,
+ "step": 2582
+ },
+ {
+ "epoch": 35.88073394495413,
+ "grad_norm": 0.24730375409126282,
+ "learning_rate": 0.0006,
+ "loss": 3.6830549240112305,
+ "step": 2583
+ },
+ {
+ "epoch": 35.89471384884229,
+ "grad_norm": 0.26552343368530273,
+ "learning_rate": 0.0006,
+ "loss": 3.7025017738342285,
+ "step": 2584
+ },
+ {
+ "epoch": 35.90869375273045,
+ "grad_norm": 0.2621893286705017,
+ "learning_rate": 0.0006,
+ "loss": 3.697399854660034,
+ "step": 2585
+ },
+ {
+ "epoch": 35.92267365661861,
+ "grad_norm": 0.2320089191198349,
+ "learning_rate": 0.0006,
+ "loss": 3.722207546234131,
+ "step": 2586
+ },
+ {
+ "epoch": 35.93665356050677,
+ "grad_norm": 0.1848745346069336,
+ "learning_rate": 0.0006,
+ "loss": 3.711249351501465,
+ "step": 2587
+ },
+ {
+ "epoch": 35.95063346439493,
+ "grad_norm": 0.24218113720417023,
+ "learning_rate": 0.0006,
+ "loss": 3.698894500732422,
+ "step": 2588
+ },
+ {
+ "epoch": 35.964613368283096,
+ "grad_norm": 0.29338452219963074,
+ "learning_rate": 0.0006,
+ "loss": 3.7470521926879883,
+ "step": 2589
+ },
+ {
+ "epoch": 35.97859327217125,
+ "grad_norm": 0.2804136276245117,
+ "learning_rate": 0.0006,
+ "loss": 3.750649929046631,
+ "step": 2590
+ },
+ {
+ "epoch": 35.992573176059416,
+ "grad_norm": 0.26404470205307007,
+ "learning_rate": 0.0006,
+ "loss": 3.6995797157287598,
+ "step": 2591
+ },
+ {
+ "epoch": 36.0,
+ "grad_norm": 0.27446141839027405,
+ "learning_rate": 0.0006,
+ "loss": 3.715768814086914,
+ "step": 2592
+ },
+ {
+ "epoch": 36.0,
+ "eval_loss": 4.007599830627441,
+ "eval_runtime": 44.0149,
+ "eval_samples_per_second": 55.481,
+ "eval_steps_per_second": 3.476,
+ "step": 2592
+ },
+ {
+ "epoch": 36.01397990388816,
+ "grad_norm": 0.2365594208240509,
+ "learning_rate": 0.0006,
+ "loss": 3.6529457569122314,
+ "step": 2593
+ },
+ {
+ "epoch": 36.02795980777632,
+ "grad_norm": 0.24824099242687225,
+ "learning_rate": 0.0006,
+ "loss": 3.6703386306762695,
+ "step": 2594
+ },
+ {
+ "epoch": 36.04193971166448,
+ "grad_norm": 0.26802200078964233,
+ "learning_rate": 0.0006,
+ "loss": 3.688307762145996,
+ "step": 2595
+ },
+ {
+ "epoch": 36.05591961555265,
+ "grad_norm": 0.2552911341190338,
+ "learning_rate": 0.0006,
+ "loss": 3.681797981262207,
+ "step": 2596
+ },
+ {
+ "epoch": 36.0698995194408,
+ "grad_norm": 0.254991739988327,
+ "learning_rate": 0.0006,
+ "loss": 3.644087791442871,
+ "step": 2597
+ },
+ {
+ "epoch": 36.083879423328966,
+ "grad_norm": 0.2496735155582428,
+ "learning_rate": 0.0006,
+ "loss": 3.644047737121582,
+ "step": 2598
+ },
+ {
+ "epoch": 36.09785932721712,
+ "grad_norm": 0.23637443780899048,
+ "learning_rate": 0.0006,
+ "loss": 3.684454917907715,
+ "step": 2599
+ },
+ {
+ "epoch": 36.111839231105286,
+ "grad_norm": 0.22065003216266632,
+ "learning_rate": 0.0006,
+ "loss": 3.661752700805664,
+ "step": 2600
+ },
+ {
+ "epoch": 36.12581913499345,
+ "grad_norm": 0.2292395532131195,
+ "learning_rate": 0.0006,
+ "loss": 3.6709558963775635,
+ "step": 2601
+ },
+ {
+ "epoch": 36.139799038881605,
+ "grad_norm": 0.22295089066028595,
+ "learning_rate": 0.0006,
+ "loss": 3.642230987548828,
+ "step": 2602
+ },
+ {
+ "epoch": 36.15377894276977,
+ "grad_norm": 0.2220531553030014,
+ "learning_rate": 0.0006,
+ "loss": 3.653268814086914,
+ "step": 2603
+ },
+ {
+ "epoch": 36.16775884665793,
+ "grad_norm": 0.21605174243450165,
+ "learning_rate": 0.0006,
+ "loss": 3.6791329383850098,
+ "step": 2604
+ },
+ {
+ "epoch": 36.18173875054609,
+ "grad_norm": 0.20932699739933014,
+ "learning_rate": 0.0006,
+ "loss": 3.6496856212615967,
+ "step": 2605
+ },
+ {
+ "epoch": 36.19571865443425,
+ "grad_norm": 0.20941385626792908,
+ "learning_rate": 0.0006,
+ "loss": 3.6445729732513428,
+ "step": 2606
+ },
+ {
+ "epoch": 36.20969855832241,
+ "grad_norm": 0.1987197995185852,
+ "learning_rate": 0.0006,
+ "loss": 3.6481809616088867,
+ "step": 2607
+ },
+ {
+ "epoch": 36.22367846221057,
+ "grad_norm": 0.19054439663887024,
+ "learning_rate": 0.0006,
+ "loss": 3.66894268989563,
+ "step": 2608
+ },
+ {
+ "epoch": 36.237658366098735,
+ "grad_norm": 0.19940806925296783,
+ "learning_rate": 0.0006,
+ "loss": 3.7123427391052246,
+ "step": 2609
+ },
+ {
+ "epoch": 36.25163826998689,
+ "grad_norm": 0.22157685458660126,
+ "learning_rate": 0.0006,
+ "loss": 3.6707541942596436,
+ "step": 2610
+ },
+ {
+ "epoch": 36.265618173875055,
+ "grad_norm": 0.2362316995859146,
+ "learning_rate": 0.0006,
+ "loss": 3.6906795501708984,
+ "step": 2611
+ },
+ {
+ "epoch": 36.27959807776322,
+ "grad_norm": 0.24560341238975525,
+ "learning_rate": 0.0006,
+ "loss": 3.668379783630371,
+ "step": 2612
+ },
+ {
+ "epoch": 36.293577981651374,
+ "grad_norm": 0.22814054787158966,
+ "learning_rate": 0.0006,
+ "loss": 3.665527820587158,
+ "step": 2613
+ },
+ {
+ "epoch": 36.30755788553954,
+ "grad_norm": 0.2156696617603302,
+ "learning_rate": 0.0006,
+ "loss": 3.673835277557373,
+ "step": 2614
+ },
+ {
+ "epoch": 36.3215377894277,
+ "grad_norm": 0.20152772963047028,
+ "learning_rate": 0.0006,
+ "loss": 3.6512670516967773,
+ "step": 2615
+ },
+ {
+ "epoch": 36.33551769331586,
+ "grad_norm": 0.22466860711574554,
+ "learning_rate": 0.0006,
+ "loss": 3.6877706050872803,
+ "step": 2616
+ },
+ {
+ "epoch": 36.34949759720402,
+ "grad_norm": 0.21688112616539001,
+ "learning_rate": 0.0006,
+ "loss": 3.6895859241485596,
+ "step": 2617
+ },
+ {
+ "epoch": 36.36347750109218,
+ "grad_norm": 0.19836577773094177,
+ "learning_rate": 0.0006,
+ "loss": 3.6658992767333984,
+ "step": 2618
+ },
+ {
+ "epoch": 36.37745740498034,
+ "grad_norm": 0.1995069831609726,
+ "learning_rate": 0.0006,
+ "loss": 3.677614450454712,
+ "step": 2619
+ },
+ {
+ "epoch": 36.391437308868504,
+ "grad_norm": 0.21234792470932007,
+ "learning_rate": 0.0006,
+ "loss": 3.6971967220306396,
+ "step": 2620
+ },
+ {
+ "epoch": 36.40541721275666,
+ "grad_norm": 0.20898285508155823,
+ "learning_rate": 0.0006,
+ "loss": 3.6936516761779785,
+ "step": 2621
+ },
+ {
+ "epoch": 36.419397116644824,
+ "grad_norm": 0.2115008533000946,
+ "learning_rate": 0.0006,
+ "loss": 3.6674065589904785,
+ "step": 2622
+ },
+ {
+ "epoch": 36.43337702053299,
+ "grad_norm": 0.2041143774986267,
+ "learning_rate": 0.0006,
+ "loss": 3.6455483436584473,
+ "step": 2623
+ },
+ {
+ "epoch": 36.44735692442114,
+ "grad_norm": 0.1966932713985443,
+ "learning_rate": 0.0006,
+ "loss": 3.6938109397888184,
+ "step": 2624
+ },
+ {
+ "epoch": 36.46133682830931,
+ "grad_norm": 0.20062223076820374,
+ "learning_rate": 0.0006,
+ "loss": 3.6775765419006348,
+ "step": 2625
+ },
+ {
+ "epoch": 36.47531673219746,
+ "grad_norm": 0.20610390603542328,
+ "learning_rate": 0.0006,
+ "loss": 3.6835384368896484,
+ "step": 2626
+ },
+ {
+ "epoch": 36.489296636085626,
+ "grad_norm": 0.20481473207473755,
+ "learning_rate": 0.0006,
+ "loss": 3.6794047355651855,
+ "step": 2627
+ },
+ {
+ "epoch": 36.50327653997379,
+ "grad_norm": 0.18964581191539764,
+ "learning_rate": 0.0006,
+ "loss": 3.7035841941833496,
+ "step": 2628
+ },
+ {
+ "epoch": 36.517256443861946,
+ "grad_norm": 0.2029343545436859,
+ "learning_rate": 0.0006,
+ "loss": 3.6667590141296387,
+ "step": 2629
+ },
+ {
+ "epoch": 36.53123634775011,
+ "grad_norm": 0.23656968772411346,
+ "learning_rate": 0.0006,
+ "loss": 3.6974546909332275,
+ "step": 2630
+ },
+ {
+ "epoch": 36.54521625163827,
+ "grad_norm": 0.23401431739330292,
+ "learning_rate": 0.0006,
+ "loss": 3.668936252593994,
+ "step": 2631
+ },
+ {
+ "epoch": 36.55919615552643,
+ "grad_norm": 0.22258102893829346,
+ "learning_rate": 0.0006,
+ "loss": 3.667977809906006,
+ "step": 2632
+ },
+ {
+ "epoch": 36.57317605941459,
+ "grad_norm": 0.20849554240703583,
+ "learning_rate": 0.0006,
+ "loss": 3.6674845218658447,
+ "step": 2633
+ },
+ {
+ "epoch": 36.58715596330275,
+ "grad_norm": 0.20684309303760529,
+ "learning_rate": 0.0006,
+ "loss": 3.6828644275665283,
+ "step": 2634
+ },
+ {
+ "epoch": 36.60113586719091,
+ "grad_norm": 0.19114233553409576,
+ "learning_rate": 0.0006,
+ "loss": 3.7084832191467285,
+ "step": 2635
+ },
+ {
+ "epoch": 36.615115771079076,
+ "grad_norm": 0.20382429659366608,
+ "learning_rate": 0.0006,
+ "loss": 3.68354868888855,
+ "step": 2636
+ },
+ {
+ "epoch": 36.62909567496723,
+ "grad_norm": 0.22526590526103973,
+ "learning_rate": 0.0006,
+ "loss": 3.684112310409546,
+ "step": 2637
+ },
+ {
+ "epoch": 36.643075578855395,
+ "grad_norm": 0.20735391974449158,
+ "learning_rate": 0.0006,
+ "loss": 3.67702054977417,
+ "step": 2638
+ },
+ {
+ "epoch": 36.65705548274356,
+ "grad_norm": 0.18549653887748718,
+ "learning_rate": 0.0006,
+ "loss": 3.6840810775756836,
+ "step": 2639
+ },
+ {
+ "epoch": 36.671035386631715,
+ "grad_norm": 0.1805262714624405,
+ "learning_rate": 0.0006,
+ "loss": 3.688119411468506,
+ "step": 2640
+ },
+ {
+ "epoch": 36.68501529051988,
+ "grad_norm": 0.17545704543590546,
+ "learning_rate": 0.0006,
+ "loss": 3.6477861404418945,
+ "step": 2641
+ },
+ {
+ "epoch": 36.69899519440804,
+ "grad_norm": 0.1772221326828003,
+ "learning_rate": 0.0006,
+ "loss": 3.6935806274414062,
+ "step": 2642
+ },
+ {
+ "epoch": 36.7129750982962,
+ "grad_norm": 0.18701671063899994,
+ "learning_rate": 0.0006,
+ "loss": 3.6820428371429443,
+ "step": 2643
+ },
+ {
+ "epoch": 36.72695500218436,
+ "grad_norm": 0.2057863473892212,
+ "learning_rate": 0.0006,
+ "loss": 3.669762134552002,
+ "step": 2644
+ },
+ {
+ "epoch": 36.74093490607252,
+ "grad_norm": 0.2565848231315613,
+ "learning_rate": 0.0006,
+ "loss": 3.717599391937256,
+ "step": 2645
+ },
+ {
+ "epoch": 36.75491480996068,
+ "grad_norm": 0.24362123012542725,
+ "learning_rate": 0.0006,
+ "loss": 3.671900987625122,
+ "step": 2646
+ },
+ {
+ "epoch": 36.768894713848844,
+ "grad_norm": 0.19606009125709534,
+ "learning_rate": 0.0006,
+ "loss": 3.6782546043395996,
+ "step": 2647
+ },
+ {
+ "epoch": 36.782874617737,
+ "grad_norm": 0.1948748379945755,
+ "learning_rate": 0.0006,
+ "loss": 3.6823501586914062,
+ "step": 2648
+ },
+ {
+ "epoch": 36.796854521625164,
+ "grad_norm": 0.22289852797985077,
+ "learning_rate": 0.0006,
+ "loss": 3.693469762802124,
+ "step": 2649
+ },
+ {
+ "epoch": 36.81083442551333,
+ "grad_norm": 0.24751701951026917,
+ "learning_rate": 0.0006,
+ "loss": 3.700678825378418,
+ "step": 2650
+ },
+ {
+ "epoch": 36.824814329401484,
+ "grad_norm": 0.28663966059684753,
+ "learning_rate": 0.0006,
+ "loss": 3.6960878372192383,
+ "step": 2651
+ },
+ {
+ "epoch": 36.83879423328965,
+ "grad_norm": 0.3288552165031433,
+ "learning_rate": 0.0006,
+ "loss": 3.7255043983459473,
+ "step": 2652
+ },
+ {
+ "epoch": 36.8527741371778,
+ "grad_norm": 0.3555443286895752,
+ "learning_rate": 0.0006,
+ "loss": 3.725308418273926,
+ "step": 2653
+ },
+ {
+ "epoch": 36.86675404106597,
+ "grad_norm": 0.3204147219657898,
+ "learning_rate": 0.0006,
+ "loss": 3.7137985229492188,
+ "step": 2654
+ },
+ {
+ "epoch": 36.88073394495413,
+ "grad_norm": 0.2944706976413727,
+ "learning_rate": 0.0006,
+ "loss": 3.7032840251922607,
+ "step": 2655
+ },
+ {
+ "epoch": 36.89471384884229,
+ "grad_norm": 0.2845679223537445,
+ "learning_rate": 0.0006,
+ "loss": 3.6840004920959473,
+ "step": 2656
+ },
+ {
+ "epoch": 36.90869375273045,
+ "grad_norm": 0.2815704047679901,
+ "learning_rate": 0.0006,
+ "loss": 3.6958417892456055,
+ "step": 2657
+ },
+ {
+ "epoch": 36.92267365661861,
+ "grad_norm": 0.2733481228351593,
+ "learning_rate": 0.0006,
+ "loss": 3.677690029144287,
+ "step": 2658
+ },
+ {
+ "epoch": 36.93665356050677,
+ "grad_norm": 0.29572054743766785,
+ "learning_rate": 0.0006,
+ "loss": 3.6983718872070312,
+ "step": 2659
+ },
+ {
+ "epoch": 36.95063346439493,
+ "grad_norm": 0.2487923800945282,
+ "learning_rate": 0.0006,
+ "loss": 3.7041163444519043,
+ "step": 2660
+ },
+ {
+ "epoch": 36.964613368283096,
+ "grad_norm": 0.2541966438293457,
+ "learning_rate": 0.0006,
+ "loss": 3.7038979530334473,
+ "step": 2661
+ },
+ {
+ "epoch": 36.97859327217125,
+ "grad_norm": 0.2441335767507553,
+ "learning_rate": 0.0006,
+ "loss": 3.717966079711914,
+ "step": 2662
+ },
+ {
+ "epoch": 36.992573176059416,
+ "grad_norm": 0.2304554283618927,
+ "learning_rate": 0.0006,
+ "loss": 3.671098232269287,
+ "step": 2663
+ },
+ {
+ "epoch": 37.0,
+ "grad_norm": 0.2346591204404831,
+ "learning_rate": 0.0006,
+ "loss": 3.680298089981079,
+ "step": 2664
+ },
+ {
+ "epoch": 37.0,
+ "eval_loss": 3.9944777488708496,
+ "eval_runtime": 43.9862,
+ "eval_samples_per_second": 55.517,
+ "eval_steps_per_second": 3.478,
+ "step": 2664
+ },
+ {
+ "epoch": 37.01397990388816,
+ "grad_norm": 0.22970618307590485,
+ "learning_rate": 0.0006,
+ "loss": 3.6835923194885254,
+ "step": 2665
+ },
+ {
+ "epoch": 37.02795980777632,
+ "grad_norm": 0.25463759899139404,
+ "learning_rate": 0.0006,
+ "loss": 3.658339023590088,
+ "step": 2666
+ },
+ {
+ "epoch": 37.04193971166448,
+ "grad_norm": 0.2520577311515808,
+ "learning_rate": 0.0006,
+ "loss": 3.6275506019592285,
+ "step": 2667
+ },
+ {
+ "epoch": 37.05591961555265,
+ "grad_norm": 0.22698813676834106,
+ "learning_rate": 0.0006,
+ "loss": 3.65043568611145,
+ "step": 2668
+ },
+ {
+ "epoch": 37.0698995194408,
+ "grad_norm": 0.21133972704410553,
+ "learning_rate": 0.0006,
+ "loss": 3.6262078285217285,
+ "step": 2669
+ },
+ {
+ "epoch": 37.083879423328966,
+ "grad_norm": 0.21940460801124573,
+ "learning_rate": 0.0006,
+ "loss": 3.6709489822387695,
+ "step": 2670
+ },
+ {
+ "epoch": 37.09785932721712,
+ "grad_norm": 0.21897517144680023,
+ "learning_rate": 0.0006,
+ "loss": 3.6621508598327637,
+ "step": 2671
+ },
+ {
+ "epoch": 37.111839231105286,
+ "grad_norm": 0.2270219624042511,
+ "learning_rate": 0.0006,
+ "loss": 3.6334924697875977,
+ "step": 2672
+ },
+ {
+ "epoch": 37.12581913499345,
+ "grad_norm": 0.22082042694091797,
+ "learning_rate": 0.0006,
+ "loss": 3.662209987640381,
+ "step": 2673
+ },
+ {
+ "epoch": 37.139799038881605,
+ "grad_norm": 0.19931960105895996,
+ "learning_rate": 0.0006,
+ "loss": 3.6655359268188477,
+ "step": 2674
+ },
+ {
+ "epoch": 37.15377894276977,
+ "grad_norm": 0.21451307833194733,
+ "learning_rate": 0.0006,
+ "loss": 3.656287670135498,
+ "step": 2675
+ },
+ {
+ "epoch": 37.16775884665793,
+ "grad_norm": 0.2131514698266983,
+ "learning_rate": 0.0006,
+ "loss": 3.635054111480713,
+ "step": 2676
+ },
+ {
+ "epoch": 37.18173875054609,
+ "grad_norm": 0.20425808429718018,
+ "learning_rate": 0.0006,
+ "loss": 3.67653226852417,
+ "step": 2677
+ },
+ {
+ "epoch": 37.19571865443425,
+ "grad_norm": 0.19423379004001617,
+ "learning_rate": 0.0006,
+ "loss": 3.6827316284179688,
+ "step": 2678
+ },
+ {
+ "epoch": 37.20969855832241,
+ "grad_norm": 0.1954883486032486,
+ "learning_rate": 0.0006,
+ "loss": 3.658092498779297,
+ "step": 2679
+ },
+ {
+ "epoch": 37.22367846221057,
+ "grad_norm": 0.21153928339481354,
+ "learning_rate": 0.0006,
+ "loss": 3.6675186157226562,
+ "step": 2680
+ },
+ {
+ "epoch": 37.237658366098735,
+ "grad_norm": 0.2032976895570755,
+ "learning_rate": 0.0006,
+ "loss": 3.6725759506225586,
+ "step": 2681
+ },
+ {
+ "epoch": 37.25163826998689,
+ "grad_norm": 0.19839346408843994,
+ "learning_rate": 0.0006,
+ "loss": 3.660851240158081,
+ "step": 2682
+ },
+ {
+ "epoch": 37.265618173875055,
+ "grad_norm": 0.1884699910879135,
+ "learning_rate": 0.0006,
+ "loss": 3.6653623580932617,
+ "step": 2683
+ },
+ {
+ "epoch": 37.27959807776322,
+ "grad_norm": 0.19558705389499664,
+ "learning_rate": 0.0006,
+ "loss": 3.648016929626465,
+ "step": 2684
+ },
+ {
+ "epoch": 37.293577981651374,
+ "grad_norm": 0.19453682005405426,
+ "learning_rate": 0.0006,
+ "loss": 3.6804773807525635,
+ "step": 2685
+ },
+ {
+ "epoch": 37.30755788553954,
+ "grad_norm": 0.1901177167892456,
+ "learning_rate": 0.0006,
+ "loss": 3.6533353328704834,
+ "step": 2686
+ },
+ {
+ "epoch": 37.3215377894277,
+ "grad_norm": 0.19425596296787262,
+ "learning_rate": 0.0006,
+ "loss": 3.665745735168457,
+ "step": 2687
+ },
+ {
+ "epoch": 37.33551769331586,
+ "grad_norm": 0.17583411931991577,
+ "learning_rate": 0.0006,
+ "loss": 3.679112434387207,
+ "step": 2688
+ },
+ {
+ "epoch": 37.34949759720402,
+ "grad_norm": 0.19667863845825195,
+ "learning_rate": 0.0006,
+ "loss": 3.6650352478027344,
+ "step": 2689
+ },
+ {
+ "epoch": 37.36347750109218,
+ "grad_norm": 0.22803270816802979,
+ "learning_rate": 0.0006,
+ "loss": 3.6658573150634766,
+ "step": 2690
+ },
+ {
+ "epoch": 37.37745740498034,
+ "grad_norm": 0.20589298009872437,
+ "learning_rate": 0.0006,
+ "loss": 3.6587300300598145,
+ "step": 2691
+ },
+ {
+ "epoch": 37.391437308868504,
+ "grad_norm": 0.1946951299905777,
+ "learning_rate": 0.0006,
+ "loss": 3.6515092849731445,
+ "step": 2692
+ },
+ {
+ "epoch": 37.40541721275666,
+ "grad_norm": 0.19029614329338074,
+ "learning_rate": 0.0006,
+ "loss": 3.6383113861083984,
+ "step": 2693
+ },
+ {
+ "epoch": 37.419397116644824,
+ "grad_norm": 0.1944548338651657,
+ "learning_rate": 0.0006,
+ "loss": 3.7017135620117188,
+ "step": 2694
+ },
+ {
+ "epoch": 37.43337702053299,
+ "grad_norm": 0.19482386112213135,
+ "learning_rate": 0.0006,
+ "loss": 3.6791775226593018,
+ "step": 2695
+ },
+ {
+ "epoch": 37.44735692442114,
+ "grad_norm": 0.23276680707931519,
+ "learning_rate": 0.0006,
+ "loss": 3.672245979309082,
+ "step": 2696
+ },
+ {
+ "epoch": 37.46133682830931,
+ "grad_norm": 0.22267542779445648,
+ "learning_rate": 0.0006,
+ "loss": 3.683380365371704,
+ "step": 2697
+ },
+ {
+ "epoch": 37.47531673219746,
+ "grad_norm": 0.1942203938961029,
+ "learning_rate": 0.0006,
+ "loss": 3.6760759353637695,
+ "step": 2698
+ },
+ {
+ "epoch": 37.489296636085626,
+ "grad_norm": 0.21212540566921234,
+ "learning_rate": 0.0006,
+ "loss": 3.660719633102417,
+ "step": 2699
+ },
+ {
+ "epoch": 37.50327653997379,
+ "grad_norm": 0.2365427315235138,
+ "learning_rate": 0.0006,
+ "loss": 3.6727194786071777,
+ "step": 2700
+ },
+ {
+ "epoch": 37.517256443861946,
+ "grad_norm": 0.2379675805568695,
+ "learning_rate": 0.0006,
+ "loss": 3.6691598892211914,
+ "step": 2701
+ },
+ {
+ "epoch": 37.53123634775011,
+ "grad_norm": 0.22142401337623596,
+ "learning_rate": 0.0006,
+ "loss": 3.6882128715515137,
+ "step": 2702
+ },
+ {
+ "epoch": 37.54521625163827,
+ "grad_norm": 0.19993607699871063,
+ "learning_rate": 0.0006,
+ "loss": 3.6651787757873535,
+ "step": 2703
+ },
+ {
+ "epoch": 37.55919615552643,
+ "grad_norm": 0.19934895634651184,
+ "learning_rate": 0.0006,
+ "loss": 3.6680638790130615,
+ "step": 2704
+ },
+ {
+ "epoch": 37.57317605941459,
+ "grad_norm": 0.21202369034290314,
+ "learning_rate": 0.0006,
+ "loss": 3.697615623474121,
+ "step": 2705
+ },
+ {
+ "epoch": 37.58715596330275,
+ "grad_norm": 0.1994577795267105,
+ "learning_rate": 0.0006,
+ "loss": 3.688243865966797,
+ "step": 2706
+ },
+ {
+ "epoch": 37.60113586719091,
+ "grad_norm": 0.20365118980407715,
+ "learning_rate": 0.0006,
+ "loss": 3.6615519523620605,
+ "step": 2707
+ },
+ {
+ "epoch": 37.615115771079076,
+ "grad_norm": 0.22466035187244415,
+ "learning_rate": 0.0006,
+ "loss": 3.703111171722412,
+ "step": 2708
+ },
+ {
+ "epoch": 37.62909567496723,
+ "grad_norm": 0.21140407025814056,
+ "learning_rate": 0.0006,
+ "loss": 3.6744728088378906,
+ "step": 2709
+ },
+ {
+ "epoch": 37.643075578855395,
+ "grad_norm": 0.22220195829868317,
+ "learning_rate": 0.0006,
+ "loss": 3.671501874923706,
+ "step": 2710
+ },
+ {
+ "epoch": 37.65705548274356,
+ "grad_norm": 0.23279480636119843,
+ "learning_rate": 0.0006,
+ "loss": 3.6962859630584717,
+ "step": 2711
+ },
+ {
+ "epoch": 37.671035386631715,
+ "grad_norm": 0.23284408450126648,
+ "learning_rate": 0.0006,
+ "loss": 3.670231342315674,
+ "step": 2712
+ },
+ {
+ "epoch": 37.68501529051988,
+ "grad_norm": 0.21935738623142242,
+ "learning_rate": 0.0006,
+ "loss": 3.6908650398254395,
+ "step": 2713
+ },
+ {
+ "epoch": 37.69899519440804,
+ "grad_norm": 0.2072262167930603,
+ "learning_rate": 0.0006,
+ "loss": 3.7204506397247314,
+ "step": 2714
+ },
+ {
+ "epoch": 37.7129750982962,
+ "grad_norm": 0.22547709941864014,
+ "learning_rate": 0.0006,
+ "loss": 3.6740894317626953,
+ "step": 2715
+ },
+ {
+ "epoch": 37.72695500218436,
+ "grad_norm": 0.2460414469242096,
+ "learning_rate": 0.0006,
+ "loss": 3.6938390731811523,
+ "step": 2716
+ },
+ {
+ "epoch": 37.74093490607252,
+ "grad_norm": 0.24756456911563873,
+ "learning_rate": 0.0006,
+ "loss": 3.692173480987549,
+ "step": 2717
+ },
+ {
+ "epoch": 37.75491480996068,
+ "grad_norm": 0.20149244368076324,
+ "learning_rate": 0.0006,
+ "loss": 3.6677675247192383,
+ "step": 2718
+ },
+ {
+ "epoch": 37.768894713848844,
+ "grad_norm": 0.19834814965724945,
+ "learning_rate": 0.0006,
+ "loss": 3.6717336177825928,
+ "step": 2719
+ },
+ {
+ "epoch": 37.782874617737,
+ "grad_norm": 0.22929978370666504,
+ "learning_rate": 0.0006,
+ "loss": 3.6818275451660156,
+ "step": 2720
+ },
+ {
+ "epoch": 37.796854521625164,
+ "grad_norm": 0.23674434423446655,
+ "learning_rate": 0.0006,
+ "loss": 3.689767360687256,
+ "step": 2721
+ },
+ {
+ "epoch": 37.81083442551333,
+ "grad_norm": 0.22798952460289001,
+ "learning_rate": 0.0006,
+ "loss": 3.6928915977478027,
+ "step": 2722
+ },
+ {
+ "epoch": 37.824814329401484,
+ "grad_norm": 0.2270302027463913,
+ "learning_rate": 0.0006,
+ "loss": 3.6884233951568604,
+ "step": 2723
+ },
+ {
+ "epoch": 37.83879423328965,
+ "grad_norm": 0.23563820123672485,
+ "learning_rate": 0.0006,
+ "loss": 3.6962456703186035,
+ "step": 2724
+ },
+ {
+ "epoch": 37.8527741371778,
+ "grad_norm": 0.2240045815706253,
+ "learning_rate": 0.0006,
+ "loss": 3.6985082626342773,
+ "step": 2725
+ },
+ {
+ "epoch": 37.86675404106597,
+ "grad_norm": 0.21541155874729156,
+ "learning_rate": 0.0006,
+ "loss": 3.6960105895996094,
+ "step": 2726
+ },
+ {
+ "epoch": 37.88073394495413,
+ "grad_norm": 0.23257222771644592,
+ "learning_rate": 0.0006,
+ "loss": 3.667404890060425,
+ "step": 2727
+ },
+ {
+ "epoch": 37.89471384884229,
+ "grad_norm": 0.226792573928833,
+ "learning_rate": 0.0006,
+ "loss": 3.6549744606018066,
+ "step": 2728
+ },
+ {
+ "epoch": 37.90869375273045,
+ "grad_norm": 0.18993401527404785,
+ "learning_rate": 0.0006,
+ "loss": 3.6772334575653076,
+ "step": 2729
+ },
+ {
+ "epoch": 37.92267365661861,
+ "grad_norm": 0.20936095714569092,
+ "learning_rate": 0.0006,
+ "loss": 3.671116352081299,
+ "step": 2730
+ },
+ {
+ "epoch": 37.93665356050677,
+ "grad_norm": 0.2203974425792694,
+ "learning_rate": 0.0006,
+ "loss": 3.6549739837646484,
+ "step": 2731
+ },
+ {
+ "epoch": 37.95063346439493,
+ "grad_norm": 0.19504620134830475,
+ "learning_rate": 0.0006,
+ "loss": 3.6755447387695312,
+ "step": 2732
+ },
+ {
+ "epoch": 37.964613368283096,
+ "grad_norm": 0.2025984674692154,
+ "learning_rate": 0.0006,
+ "loss": 3.678955554962158,
+ "step": 2733
+ },
+ {
+ "epoch": 37.97859327217125,
+ "grad_norm": 0.21556107699871063,
+ "learning_rate": 0.0006,
+ "loss": 3.6680502891540527,
+ "step": 2734
+ },
+ {
+ "epoch": 37.992573176059416,
+ "grad_norm": 0.21011291444301605,
+ "learning_rate": 0.0006,
+ "loss": 3.672039031982422,
+ "step": 2735
+ },
+ {
+ "epoch": 38.0,
+ "grad_norm": 0.23710957169532776,
+ "learning_rate": 0.0006,
+ "loss": 3.6326794624328613,
+ "step": 2736
+ },
+ {
+ "epoch": 38.0,
+ "eval_loss": 3.990501880645752,
+ "eval_runtime": 43.8951,
+ "eval_samples_per_second": 55.633,
+ "eval_steps_per_second": 3.486,
+ "step": 2736
+ },
+ {
+ "epoch": 38.01397990388816,
+ "grad_norm": 0.20711326599121094,
+ "learning_rate": 0.0006,
+ "loss": 3.6364657878875732,
+ "step": 2737
+ },
+ {
+ "epoch": 38.02795980777632,
+ "grad_norm": 0.2250880002975464,
+ "learning_rate": 0.0006,
+ "loss": 3.637646436691284,
+ "step": 2738
+ },
+ {
+ "epoch": 38.04193971166448,
+ "grad_norm": 0.2448352724313736,
+ "learning_rate": 0.0006,
+ "loss": 3.63557767868042,
+ "step": 2739
+ },
+ {
+ "epoch": 38.05591961555265,
+ "grad_norm": 0.23031368851661682,
+ "learning_rate": 0.0006,
+ "loss": 3.627117395401001,
+ "step": 2740
+ },
+ {
+ "epoch": 38.0698995194408,
+ "grad_norm": 0.2045450210571289,
+ "learning_rate": 0.0006,
+ "loss": 3.6594958305358887,
+ "step": 2741
+ },
+ {
+ "epoch": 38.083879423328966,
+ "grad_norm": 0.21253496408462524,
+ "learning_rate": 0.0006,
+ "loss": 3.65494441986084,
+ "step": 2742
+ },
+ {
+ "epoch": 38.09785932721712,
+ "grad_norm": 0.20196112990379333,
+ "learning_rate": 0.0006,
+ "loss": 3.645289421081543,
+ "step": 2743
+ },
+ {
+ "epoch": 38.111839231105286,
+ "grad_norm": 0.20258229970932007,
+ "learning_rate": 0.0006,
+ "loss": 3.6698505878448486,
+ "step": 2744
+ },
+ {
+ "epoch": 38.12581913499345,
+ "grad_norm": 0.22182606160640717,
+ "learning_rate": 0.0006,
+ "loss": 3.6427698135375977,
+ "step": 2745
+ },
+ {
+ "epoch": 38.139799038881605,
+ "grad_norm": 0.21281519532203674,
+ "learning_rate": 0.0006,
+ "loss": 3.668337345123291,
+ "step": 2746
+ },
+ {
+ "epoch": 38.15377894276977,
+ "grad_norm": 0.21680216491222382,
+ "learning_rate": 0.0006,
+ "loss": 3.6362109184265137,
+ "step": 2747
+ },
+ {
+ "epoch": 38.16775884665793,
+ "grad_norm": 0.24396903812885284,
+ "learning_rate": 0.0006,
+ "loss": 3.660510540008545,
+ "step": 2748
+ },
+ {
+ "epoch": 38.18173875054609,
+ "grad_norm": 0.2546434700489044,
+ "learning_rate": 0.0006,
+ "loss": 3.6562418937683105,
+ "step": 2749
+ },
+ {
+ "epoch": 38.19571865443425,
+ "grad_norm": 0.22705447673797607,
+ "learning_rate": 0.0006,
+ "loss": 3.6801514625549316,
+ "step": 2750
+ },
+ {
+ "epoch": 38.20969855832241,
+ "grad_norm": 0.21516330540180206,
+ "learning_rate": 0.0006,
+ "loss": 3.6633429527282715,
+ "step": 2751
+ },
+ {
+ "epoch": 38.22367846221057,
+ "grad_norm": 0.20895853638648987,
+ "learning_rate": 0.0006,
+ "loss": 3.619896411895752,
+ "step": 2752
+ },
+ {
+ "epoch": 38.237658366098735,
+ "grad_norm": 0.21183325350284576,
+ "learning_rate": 0.0006,
+ "loss": 3.639491558074951,
+ "step": 2753
+ },
+ {
+ "epoch": 38.25163826998689,
+ "grad_norm": 0.21439522504806519,
+ "learning_rate": 0.0006,
+ "loss": 3.671931028366089,
+ "step": 2754
+ },
+ {
+ "epoch": 38.265618173875055,
+ "grad_norm": 0.2017785906791687,
+ "learning_rate": 0.0006,
+ "loss": 3.639533519744873,
+ "step": 2755
+ },
+ {
+ "epoch": 38.27959807776322,
+ "grad_norm": 0.20015068352222443,
+ "learning_rate": 0.0006,
+ "loss": 3.654262065887451,
+ "step": 2756
+ },
+ {
+ "epoch": 38.293577981651374,
+ "grad_norm": 0.21518948674201965,
+ "learning_rate": 0.0006,
+ "loss": 3.649919033050537,
+ "step": 2757
+ },
+ {
+ "epoch": 38.30755788553954,
+ "grad_norm": 0.21994580328464508,
+ "learning_rate": 0.0006,
+ "loss": 3.6756131649017334,
+ "step": 2758
+ },
+ {
+ "epoch": 38.3215377894277,
+ "grad_norm": 0.2053978443145752,
+ "learning_rate": 0.0006,
+ "loss": 3.651520252227783,
+ "step": 2759
+ },
+ {
+ "epoch": 38.33551769331586,
+ "grad_norm": 0.2066337615251541,
+ "learning_rate": 0.0006,
+ "loss": 3.6404507160186768,
+ "step": 2760
+ },
+ {
+ "epoch": 38.34949759720402,
+ "grad_norm": 0.20898301899433136,
+ "learning_rate": 0.0006,
+ "loss": 3.637200355529785,
+ "step": 2761
+ },
+ {
+ "epoch": 38.36347750109218,
+ "grad_norm": 0.19212259352207184,
+ "learning_rate": 0.0006,
+ "loss": 3.68394136428833,
+ "step": 2762
+ },
+ {
+ "epoch": 38.37745740498034,
+ "grad_norm": 0.2011883556842804,
+ "learning_rate": 0.0006,
+ "loss": 3.6494975090026855,
+ "step": 2763
+ },
+ {
+ "epoch": 38.391437308868504,
+ "grad_norm": 0.23072998225688934,
+ "learning_rate": 0.0006,
+ "loss": 3.6644320487976074,
+ "step": 2764
+ },
+ {
+ "epoch": 38.40541721275666,
+ "grad_norm": 0.2195347547531128,
+ "learning_rate": 0.0006,
+ "loss": 3.6666269302368164,
+ "step": 2765
+ },
+ {
+ "epoch": 38.419397116644824,
+ "grad_norm": 0.19820117950439453,
+ "learning_rate": 0.0006,
+ "loss": 3.690683364868164,
+ "step": 2766
+ },
+ {
+ "epoch": 38.43337702053299,
+ "grad_norm": 0.20381149649620056,
+ "learning_rate": 0.0006,
+ "loss": 3.6647756099700928,
+ "step": 2767
+ },
+ {
+ "epoch": 38.44735692442114,
+ "grad_norm": 0.19477297365665436,
+ "learning_rate": 0.0006,
+ "loss": 3.6419155597686768,
+ "step": 2768
+ },
+ {
+ "epoch": 38.46133682830931,
+ "grad_norm": 0.20118845999240875,
+ "learning_rate": 0.0006,
+ "loss": 3.678511142730713,
+ "step": 2769
+ },
+ {
+ "epoch": 38.47531673219746,
+ "grad_norm": 0.19538167119026184,
+ "learning_rate": 0.0006,
+ "loss": 3.632112503051758,
+ "step": 2770
+ },
+ {
+ "epoch": 38.489296636085626,
+ "grad_norm": 0.18136411905288696,
+ "learning_rate": 0.0006,
+ "loss": 3.6631078720092773,
+ "step": 2771
+ },
+ {
+ "epoch": 38.50327653997379,
+ "grad_norm": 0.1993526667356491,
+ "learning_rate": 0.0006,
+ "loss": 3.6800379753112793,
+ "step": 2772
+ },
+ {
+ "epoch": 38.517256443861946,
+ "grad_norm": 0.21409109234809875,
+ "learning_rate": 0.0006,
+ "loss": 3.6355738639831543,
+ "step": 2773
+ },
+ {
+ "epoch": 38.53123634775011,
+ "grad_norm": 0.20932911336421967,
+ "learning_rate": 0.0006,
+ "loss": 3.6639811992645264,
+ "step": 2774
+ },
+ {
+ "epoch": 38.54521625163827,
+ "grad_norm": 0.22266243398189545,
+ "learning_rate": 0.0006,
+ "loss": 3.6927733421325684,
+ "step": 2775
+ },
+ {
+ "epoch": 38.55919615552643,
+ "grad_norm": 0.22916539013385773,
+ "learning_rate": 0.0006,
+ "loss": 3.6381587982177734,
+ "step": 2776
+ },
+ {
+ "epoch": 38.57317605941459,
+ "grad_norm": 0.21507245302200317,
+ "learning_rate": 0.0006,
+ "loss": 3.6724753379821777,
+ "step": 2777
+ },
+ {
+ "epoch": 38.58715596330275,
+ "grad_norm": 0.21132487058639526,
+ "learning_rate": 0.0006,
+ "loss": 3.68450927734375,
+ "step": 2778
+ },
+ {
+ "epoch": 38.60113586719091,
+ "grad_norm": 0.2323923259973526,
+ "learning_rate": 0.0006,
+ "loss": 3.6917476654052734,
+ "step": 2779
+ },
+ {
+ "epoch": 38.615115771079076,
+ "grad_norm": 0.2862907648086548,
+ "learning_rate": 0.0006,
+ "loss": 3.6832518577575684,
+ "step": 2780
+ },
+ {
+ "epoch": 38.62909567496723,
+ "grad_norm": 0.28132742643356323,
+ "learning_rate": 0.0006,
+ "loss": 3.6619668006896973,
+ "step": 2781
+ },
+ {
+ "epoch": 38.643075578855395,
+ "grad_norm": 0.24933350086212158,
+ "learning_rate": 0.0006,
+ "loss": 3.6342711448669434,
+ "step": 2782
+ },
+ {
+ "epoch": 38.65705548274356,
+ "grad_norm": 0.23482646048069,
+ "learning_rate": 0.0006,
+ "loss": 3.667548656463623,
+ "step": 2783
+ },
+ {
+ "epoch": 38.671035386631715,
+ "grad_norm": 0.2529793083667755,
+ "learning_rate": 0.0006,
+ "loss": 3.6613709926605225,
+ "step": 2784
+ },
+ {
+ "epoch": 38.68501529051988,
+ "grad_norm": 0.2306097447872162,
+ "learning_rate": 0.0006,
+ "loss": 3.653153419494629,
+ "step": 2785
+ },
+ {
+ "epoch": 38.69899519440804,
+ "grad_norm": 0.21787869930267334,
+ "learning_rate": 0.0006,
+ "loss": 3.6991848945617676,
+ "step": 2786
+ },
+ {
+ "epoch": 38.7129750982962,
+ "grad_norm": 0.24818190932273865,
+ "learning_rate": 0.0006,
+ "loss": 3.664022445678711,
+ "step": 2787
+ },
+ {
+ "epoch": 38.72695500218436,
+ "grad_norm": 0.23205995559692383,
+ "learning_rate": 0.0006,
+ "loss": 3.656064987182617,
+ "step": 2788
+ },
+ {
+ "epoch": 38.74093490607252,
+ "grad_norm": 0.2268102467060089,
+ "learning_rate": 0.0006,
+ "loss": 3.678421974182129,
+ "step": 2789
+ },
+ {
+ "epoch": 38.75491480996068,
+ "grad_norm": 0.22549907863140106,
+ "learning_rate": 0.0006,
+ "loss": 3.6483302116394043,
+ "step": 2790
+ },
+ {
+ "epoch": 38.768894713848844,
+ "grad_norm": 0.2293119877576828,
+ "learning_rate": 0.0006,
+ "loss": 3.646825075149536,
+ "step": 2791
+ },
+ {
+ "epoch": 38.782874617737,
+ "grad_norm": 0.21879418194293976,
+ "learning_rate": 0.0006,
+ "loss": 3.682124614715576,
+ "step": 2792
+ },
+ {
+ "epoch": 38.796854521625164,
+ "grad_norm": 0.22012849152088165,
+ "learning_rate": 0.0006,
+ "loss": 3.6590089797973633,
+ "step": 2793
+ },
+ {
+ "epoch": 38.81083442551333,
+ "grad_norm": 0.2449142336845398,
+ "learning_rate": 0.0006,
+ "loss": 3.7053747177124023,
+ "step": 2794
+ },
+ {
+ "epoch": 38.824814329401484,
+ "grad_norm": 0.2677161395549774,
+ "learning_rate": 0.0006,
+ "loss": 3.666144371032715,
+ "step": 2795
+ },
+ {
+ "epoch": 38.83879423328965,
+ "grad_norm": 0.2654981315135956,
+ "learning_rate": 0.0006,
+ "loss": 3.637512683868408,
+ "step": 2796
+ },
+ {
+ "epoch": 38.8527741371778,
+ "grad_norm": 0.23169654607772827,
+ "learning_rate": 0.0006,
+ "loss": 3.6885948181152344,
+ "step": 2797
+ },
+ {
+ "epoch": 38.86675404106597,
+ "grad_norm": 0.22195108234882355,
+ "learning_rate": 0.0006,
+ "loss": 3.6597604751586914,
+ "step": 2798
+ },
+ {
+ "epoch": 38.88073394495413,
+ "grad_norm": 0.23703525960445404,
+ "learning_rate": 0.0006,
+ "loss": 3.6808712482452393,
+ "step": 2799
+ },
+ {
+ "epoch": 38.89471384884229,
+ "grad_norm": 0.24711088836193085,
+ "learning_rate": 0.0006,
+ "loss": 3.733792781829834,
+ "step": 2800
+ },
+ {
+ "epoch": 38.90869375273045,
+ "grad_norm": 0.216362863779068,
+ "learning_rate": 0.0006,
+ "loss": 3.670599937438965,
+ "step": 2801
+ },
+ {
+ "epoch": 38.92267365661861,
+ "grad_norm": 0.19483810663223267,
+ "learning_rate": 0.0006,
+ "loss": 3.6965198516845703,
+ "step": 2802
+ },
+ {
+ "epoch": 38.93665356050677,
+ "grad_norm": 0.1941208392381668,
+ "learning_rate": 0.0006,
+ "loss": 3.678022861480713,
+ "step": 2803
+ },
+ {
+ "epoch": 38.95063346439493,
+ "grad_norm": 0.1919465959072113,
+ "learning_rate": 0.0006,
+ "loss": 3.6763226985931396,
+ "step": 2804
+ },
+ {
+ "epoch": 38.964613368283096,
+ "grad_norm": 0.2003280073404312,
+ "learning_rate": 0.0006,
+ "loss": 3.670313835144043,
+ "step": 2805
+ },
+ {
+ "epoch": 38.97859327217125,
+ "grad_norm": 0.198478564620018,
+ "learning_rate": 0.0006,
+ "loss": 3.675569772720337,
+ "step": 2806
+ },
+ {
+ "epoch": 38.992573176059416,
+ "grad_norm": 0.23692303895950317,
+ "learning_rate": 0.0006,
+ "loss": 3.696561336517334,
+ "step": 2807
+ },
+ {
+ "epoch": 39.0,
+ "grad_norm": 0.3208145797252655,
+ "learning_rate": 0.0006,
+ "loss": 3.6791436672210693,
+ "step": 2808
+ },
+ {
+ "epoch": 39.0,
+ "eval_loss": 4.0079450607299805,
+ "eval_runtime": 43.8573,
+ "eval_samples_per_second": 55.681,
+ "eval_steps_per_second": 3.489,
+ "step": 2808
+ },
+ {
+ "epoch": 39.01397990388816,
+ "grad_norm": 0.28338733315467834,
+ "learning_rate": 0.0006,
+ "loss": 3.6277060508728027,
+ "step": 2809
+ },
+ {
+ "epoch": 39.02795980777632,
+ "grad_norm": 0.22057899832725525,
+ "learning_rate": 0.0006,
+ "loss": 3.6132822036743164,
+ "step": 2810
+ },
+ {
+ "epoch": 39.04193971166448,
+ "grad_norm": 0.20630282163619995,
+ "learning_rate": 0.0006,
+ "loss": 3.6143927574157715,
+ "step": 2811
+ },
+ {
+ "epoch": 39.05591961555265,
+ "grad_norm": 0.2178523689508438,
+ "learning_rate": 0.0006,
+ "loss": 3.6304664611816406,
+ "step": 2812
+ },
+ {
+ "epoch": 39.0698995194408,
+ "grad_norm": 0.19613824784755707,
+ "learning_rate": 0.0006,
+ "loss": 3.6137919425964355,
+ "step": 2813
+ },
+ {
+ "epoch": 39.083879423328966,
+ "grad_norm": 0.2047276794910431,
+ "learning_rate": 0.0006,
+ "loss": 3.6854846477508545,
+ "step": 2814
+ },
+ {
+ "epoch": 39.09785932721712,
+ "grad_norm": 0.20082715153694153,
+ "learning_rate": 0.0006,
+ "loss": 3.632091522216797,
+ "step": 2815
+ },
+ {
+ "epoch": 39.111839231105286,
+ "grad_norm": 0.21746563911437988,
+ "learning_rate": 0.0006,
+ "loss": 3.640477180480957,
+ "step": 2816
+ },
+ {
+ "epoch": 39.12581913499345,
+ "grad_norm": 0.2128882110118866,
+ "learning_rate": 0.0006,
+ "loss": 3.643984317779541,
+ "step": 2817
+ },
+ {
+ "epoch": 39.139799038881605,
+ "grad_norm": 0.2110479772090912,
+ "learning_rate": 0.0006,
+ "loss": 3.6328823566436768,
+ "step": 2818
+ },
+ {
+ "epoch": 39.15377894276977,
+ "grad_norm": 0.22304436564445496,
+ "learning_rate": 0.0006,
+ "loss": 3.6669845581054688,
+ "step": 2819
+ },
+ {
+ "epoch": 39.16775884665793,
+ "grad_norm": 0.22310666739940643,
+ "learning_rate": 0.0006,
+ "loss": 3.609743595123291,
+ "step": 2820
+ },
+ {
+ "epoch": 39.18173875054609,
+ "grad_norm": 0.21002045273780823,
+ "learning_rate": 0.0006,
+ "loss": 3.601900815963745,
+ "step": 2821
+ },
+ {
+ "epoch": 39.19571865443425,
+ "grad_norm": 0.20531952381134033,
+ "learning_rate": 0.0006,
+ "loss": 3.6405060291290283,
+ "step": 2822
+ },
+ {
+ "epoch": 39.20969855832241,
+ "grad_norm": 0.20646385848522186,
+ "learning_rate": 0.0006,
+ "loss": 3.669617176055908,
+ "step": 2823
+ },
+ {
+ "epoch": 39.22367846221057,
+ "grad_norm": 0.2553980350494385,
+ "learning_rate": 0.0006,
+ "loss": 3.642709255218506,
+ "step": 2824
+ },
+ {
+ "epoch": 39.237658366098735,
+ "grad_norm": 0.2753220498561859,
+ "learning_rate": 0.0006,
+ "loss": 3.668405055999756,
+ "step": 2825
+ },
+ {
+ "epoch": 39.25163826998689,
+ "grad_norm": 0.2425055354833603,
+ "learning_rate": 0.0006,
+ "loss": 3.659559726715088,
+ "step": 2826
+ },
+ {
+ "epoch": 39.265618173875055,
+ "grad_norm": 0.2199426293373108,
+ "learning_rate": 0.0006,
+ "loss": 3.6466197967529297,
+ "step": 2827
+ },
+ {
+ "epoch": 39.27959807776322,
+ "grad_norm": 0.221355602145195,
+ "learning_rate": 0.0006,
+ "loss": 3.639418125152588,
+ "step": 2828
+ },
+ {
+ "epoch": 39.293577981651374,
+ "grad_norm": 0.20777100324630737,
+ "learning_rate": 0.0006,
+ "loss": 3.68102765083313,
+ "step": 2829
+ },
+ {
+ "epoch": 39.30755788553954,
+ "grad_norm": 0.20557557046413422,
+ "learning_rate": 0.0006,
+ "loss": 3.663064956665039,
+ "step": 2830
+ },
+ {
+ "epoch": 39.3215377894277,
+ "grad_norm": 0.2385585904121399,
+ "learning_rate": 0.0006,
+ "loss": 3.6598849296569824,
+ "step": 2831
+ },
+ {
+ "epoch": 39.33551769331586,
+ "grad_norm": 0.25222650170326233,
+ "learning_rate": 0.0006,
+ "loss": 3.635199546813965,
+ "step": 2832
+ },
+ {
+ "epoch": 39.34949759720402,
+ "grad_norm": 0.22894687950611115,
+ "learning_rate": 0.0006,
+ "loss": 3.6100258827209473,
+ "step": 2833
+ },
+ {
+ "epoch": 39.36347750109218,
+ "grad_norm": 0.22945865988731384,
+ "learning_rate": 0.0006,
+ "loss": 3.63069748878479,
+ "step": 2834
+ },
+ {
+ "epoch": 39.37745740498034,
+ "grad_norm": 0.2466309368610382,
+ "learning_rate": 0.0006,
+ "loss": 3.6615123748779297,
+ "step": 2835
+ },
+ {
+ "epoch": 39.391437308868504,
+ "grad_norm": 0.23845571279525757,
+ "learning_rate": 0.0006,
+ "loss": 3.655045509338379,
+ "step": 2836
+ },
+ {
+ "epoch": 39.40541721275666,
+ "grad_norm": 0.20273560285568237,
+ "learning_rate": 0.0006,
+ "loss": 3.6497647762298584,
+ "step": 2837
+ },
+ {
+ "epoch": 39.419397116644824,
+ "grad_norm": 0.19820313155651093,
+ "learning_rate": 0.0006,
+ "loss": 3.6728386878967285,
+ "step": 2838
+ },
+ {
+ "epoch": 39.43337702053299,
+ "grad_norm": 0.21581435203552246,
+ "learning_rate": 0.0006,
+ "loss": 3.660247325897217,
+ "step": 2839
+ },
+ {
+ "epoch": 39.44735692442114,
+ "grad_norm": 0.20559731125831604,
+ "learning_rate": 0.0006,
+ "loss": 3.6244559288024902,
+ "step": 2840
+ },
+ {
+ "epoch": 39.46133682830931,
+ "grad_norm": 0.22041910886764526,
+ "learning_rate": 0.0006,
+ "loss": 3.6577587127685547,
+ "step": 2841
+ },
+ {
+ "epoch": 39.47531673219746,
+ "grad_norm": 0.1966651976108551,
+ "learning_rate": 0.0006,
+ "loss": 3.673975944519043,
+ "step": 2842
+ },
+ {
+ "epoch": 39.489296636085626,
+ "grad_norm": 0.19127163290977478,
+ "learning_rate": 0.0006,
+ "loss": 3.7022414207458496,
+ "step": 2843
+ },
+ {
+ "epoch": 39.50327653997379,
+ "grad_norm": 0.20260316133499146,
+ "learning_rate": 0.0006,
+ "loss": 3.6155128479003906,
+ "step": 2844
+ },
+ {
+ "epoch": 39.517256443861946,
+ "grad_norm": 0.2302546352148056,
+ "learning_rate": 0.0006,
+ "loss": 3.670212984085083,
+ "step": 2845
+ },
+ {
+ "epoch": 39.53123634775011,
+ "grad_norm": 0.2512998878955841,
+ "learning_rate": 0.0006,
+ "loss": 3.6257572174072266,
+ "step": 2846
+ },
+ {
+ "epoch": 39.54521625163827,
+ "grad_norm": 0.24780063331127167,
+ "learning_rate": 0.0006,
+ "loss": 3.6458964347839355,
+ "step": 2847
+ },
+ {
+ "epoch": 39.55919615552643,
+ "grad_norm": 0.21305061876773834,
+ "learning_rate": 0.0006,
+ "loss": 3.666834831237793,
+ "step": 2848
+ },
+ {
+ "epoch": 39.57317605941459,
+ "grad_norm": 0.20699542760849,
+ "learning_rate": 0.0006,
+ "loss": 3.660571813583374,
+ "step": 2849
+ },
+ {
+ "epoch": 39.58715596330275,
+ "grad_norm": 0.20799173414707184,
+ "learning_rate": 0.0006,
+ "loss": 3.649744987487793,
+ "step": 2850
+ },
+ {
+ "epoch": 39.60113586719091,
+ "grad_norm": 0.20118695497512817,
+ "learning_rate": 0.0006,
+ "loss": 3.663865089416504,
+ "step": 2851
+ },
+ {
+ "epoch": 39.615115771079076,
+ "grad_norm": 0.2019277960062027,
+ "learning_rate": 0.0006,
+ "loss": 3.6600584983825684,
+ "step": 2852
+ },
+ {
+ "epoch": 39.62909567496723,
+ "grad_norm": 0.2093067765235901,
+ "learning_rate": 0.0006,
+ "loss": 3.6926870346069336,
+ "step": 2853
+ },
+ {
+ "epoch": 39.643075578855395,
+ "grad_norm": 0.2280927449464798,
+ "learning_rate": 0.0006,
+ "loss": 3.677157402038574,
+ "step": 2854
+ },
+ {
+ "epoch": 39.65705548274356,
+ "grad_norm": 0.219201922416687,
+ "learning_rate": 0.0006,
+ "loss": 3.6763858795166016,
+ "step": 2855
+ },
+ {
+ "epoch": 39.671035386631715,
+ "grad_norm": 0.2132134735584259,
+ "learning_rate": 0.0006,
+ "loss": 3.6853187084198,
+ "step": 2856
+ },
+ {
+ "epoch": 39.68501529051988,
+ "grad_norm": 0.1979551613330841,
+ "learning_rate": 0.0006,
+ "loss": 3.633850574493408,
+ "step": 2857
+ },
+ {
+ "epoch": 39.69899519440804,
+ "grad_norm": 0.2181098908185959,
+ "learning_rate": 0.0006,
+ "loss": 3.671356201171875,
+ "step": 2858
+ },
+ {
+ "epoch": 39.7129750982962,
+ "grad_norm": 0.21820145845413208,
+ "learning_rate": 0.0006,
+ "loss": 3.640101432800293,
+ "step": 2859
+ },
+ {
+ "epoch": 39.72695500218436,
+ "grad_norm": 0.22734931111335754,
+ "learning_rate": 0.0006,
+ "loss": 3.6326088905334473,
+ "step": 2860
+ },
+ {
+ "epoch": 39.74093490607252,
+ "grad_norm": 0.2407236248254776,
+ "learning_rate": 0.0006,
+ "loss": 3.665416955947876,
+ "step": 2861
+ },
+ {
+ "epoch": 39.75491480996068,
+ "grad_norm": 0.2507246434688568,
+ "learning_rate": 0.0006,
+ "loss": 3.6996266841888428,
+ "step": 2862
+ },
+ {
+ "epoch": 39.768894713848844,
+ "grad_norm": 0.2273668497800827,
+ "learning_rate": 0.0006,
+ "loss": 3.6786417961120605,
+ "step": 2863
+ },
+ {
+ "epoch": 39.782874617737,
+ "grad_norm": 0.20584821701049805,
+ "learning_rate": 0.0006,
+ "loss": 3.6539974212646484,
+ "step": 2864
+ },
+ {
+ "epoch": 39.796854521625164,
+ "grad_norm": 0.2327643632888794,
+ "learning_rate": 0.0006,
+ "loss": 3.681267738342285,
+ "step": 2865
+ },
+ {
+ "epoch": 39.81083442551333,
+ "grad_norm": 0.24243171513080597,
+ "learning_rate": 0.0006,
+ "loss": 3.6814589500427246,
+ "step": 2866
+ },
+ {
+ "epoch": 39.824814329401484,
+ "grad_norm": 0.21462969481945038,
+ "learning_rate": 0.0006,
+ "loss": 3.681321620941162,
+ "step": 2867
+ },
+ {
+ "epoch": 39.83879423328965,
+ "grad_norm": 0.20973211526870728,
+ "learning_rate": 0.0006,
+ "loss": 3.636986017227173,
+ "step": 2868
+ },
+ {
+ "epoch": 39.8527741371778,
+ "grad_norm": 0.20357508957386017,
+ "learning_rate": 0.0006,
+ "loss": 3.6664552688598633,
+ "step": 2869
+ },
+ {
+ "epoch": 39.86675404106597,
+ "grad_norm": 0.20389088988304138,
+ "learning_rate": 0.0006,
+ "loss": 3.6685709953308105,
+ "step": 2870
+ },
+ {
+ "epoch": 39.88073394495413,
+ "grad_norm": 0.21024158596992493,
+ "learning_rate": 0.0006,
+ "loss": 3.650658130645752,
+ "step": 2871
+ },
+ {
+ "epoch": 39.89471384884229,
+ "grad_norm": 0.19477778673171997,
+ "learning_rate": 0.0006,
+ "loss": 3.664834976196289,
+ "step": 2872
+ },
+ {
+ "epoch": 39.90869375273045,
+ "grad_norm": 0.22345365583896637,
+ "learning_rate": 0.0006,
+ "loss": 3.6652634143829346,
+ "step": 2873
+ },
+ {
+ "epoch": 39.92267365661861,
+ "grad_norm": 0.206041157245636,
+ "learning_rate": 0.0006,
+ "loss": 3.6649513244628906,
+ "step": 2874
+ },
+ {
+ "epoch": 39.93665356050677,
+ "grad_norm": 0.18524570763111115,
+ "learning_rate": 0.0006,
+ "loss": 3.665579080581665,
+ "step": 2875
+ },
+ {
+ "epoch": 39.95063346439493,
+ "grad_norm": 0.17730890214443207,
+ "learning_rate": 0.0006,
+ "loss": 3.6372880935668945,
+ "step": 2876
+ },
+ {
+ "epoch": 39.964613368283096,
+ "grad_norm": 0.213678777217865,
+ "learning_rate": 0.0006,
+ "loss": 3.681305408477783,
+ "step": 2877
+ },
+ {
+ "epoch": 39.97859327217125,
+ "grad_norm": 0.2595686614513397,
+ "learning_rate": 0.0006,
+ "loss": 3.6660351753234863,
+ "step": 2878
+ },
+ {
+ "epoch": 39.992573176059416,
+ "grad_norm": 0.22678600251674652,
+ "learning_rate": 0.0006,
+ "loss": 3.681619644165039,
+ "step": 2879
+ },
+ {
+ "epoch": 40.0,
+ "grad_norm": 0.2294030636548996,
+ "learning_rate": 0.0006,
+ "loss": 3.654366970062256,
+ "step": 2880
+ },
+ {
+ "epoch": 40.0,
+ "eval_loss": 3.9810431003570557,
+ "eval_runtime": 43.832,
+ "eval_samples_per_second": 55.713,
+ "eval_steps_per_second": 3.491,
+ "step": 2880
+ },
+ {
+ "epoch": 40.01397990388816,
+ "grad_norm": 0.220590278506279,
+ "learning_rate": 0.0006,
+ "loss": 3.6346259117126465,
+ "step": 2881
+ },
+ {
+ "epoch": 40.02795980777632,
+ "grad_norm": 0.2568257749080658,
+ "learning_rate": 0.0006,
+ "loss": 3.64436674118042,
+ "step": 2882
+ },
+ {
+ "epoch": 40.04193971166448,
+ "grad_norm": 0.2869258224964142,
+ "learning_rate": 0.0006,
+ "loss": 3.613316059112549,
+ "step": 2883
+ },
+ {
+ "epoch": 40.05591961555265,
+ "grad_norm": 0.3005172908306122,
+ "learning_rate": 0.0006,
+ "loss": 3.607339859008789,
+ "step": 2884
+ },
+ {
+ "epoch": 40.0698995194408,
+ "grad_norm": 0.28642305731773376,
+ "learning_rate": 0.0006,
+ "loss": 3.65151047706604,
+ "step": 2885
+ },
+ {
+ "epoch": 40.083879423328966,
+ "grad_norm": 0.24176034331321716,
+ "learning_rate": 0.0006,
+ "loss": 3.633742332458496,
+ "step": 2886
+ },
+ {
+ "epoch": 40.09785932721712,
+ "grad_norm": 0.2139386385679245,
+ "learning_rate": 0.0006,
+ "loss": 3.614245653152466,
+ "step": 2887
+ },
+ {
+ "epoch": 40.111839231105286,
+ "grad_norm": 0.28025752305984497,
+ "learning_rate": 0.0006,
+ "loss": 3.6415746212005615,
+ "step": 2888
+ },
+ {
+ "epoch": 40.12581913499345,
+ "grad_norm": 0.28534311056137085,
+ "learning_rate": 0.0006,
+ "loss": 3.6302027702331543,
+ "step": 2889
+ },
+ {
+ "epoch": 40.139799038881605,
+ "grad_norm": 0.26842808723449707,
+ "learning_rate": 0.0006,
+ "loss": 3.657480239868164,
+ "step": 2890
+ },
+ {
+ "epoch": 40.15377894276977,
+ "grad_norm": 0.25235965847969055,
+ "learning_rate": 0.0006,
+ "loss": 3.6843931674957275,
+ "step": 2891
+ },
+ {
+ "epoch": 40.16775884665793,
+ "grad_norm": 0.22192128002643585,
+ "learning_rate": 0.0006,
+ "loss": 3.6374592781066895,
+ "step": 2892
+ },
+ {
+ "epoch": 40.18173875054609,
+ "grad_norm": 0.21524523198604584,
+ "learning_rate": 0.0006,
+ "loss": 3.6052589416503906,
+ "step": 2893
+ },
+ {
+ "epoch": 40.19571865443425,
+ "grad_norm": 0.21011514961719513,
+ "learning_rate": 0.0006,
+ "loss": 3.62197208404541,
+ "step": 2894
+ },
+ {
+ "epoch": 40.20969855832241,
+ "grad_norm": 0.23187001049518585,
+ "learning_rate": 0.0006,
+ "loss": 3.6505377292633057,
+ "step": 2895
+ },
+ {
+ "epoch": 40.22367846221057,
+ "grad_norm": 0.21962887048721313,
+ "learning_rate": 0.0006,
+ "loss": 3.594991683959961,
+ "step": 2896
+ },
+ {
+ "epoch": 40.237658366098735,
+ "grad_norm": 0.23299361765384674,
+ "learning_rate": 0.0006,
+ "loss": 3.6370339393615723,
+ "step": 2897
+ },
+ {
+ "epoch": 40.25163826998689,
+ "grad_norm": 0.22504881024360657,
+ "learning_rate": 0.0006,
+ "loss": 3.6173815727233887,
+ "step": 2898
+ },
+ {
+ "epoch": 40.265618173875055,
+ "grad_norm": 0.21678344905376434,
+ "learning_rate": 0.0006,
+ "loss": 3.6231422424316406,
+ "step": 2899
+ },
+ {
+ "epoch": 40.27959807776322,
+ "grad_norm": 0.2184615284204483,
+ "learning_rate": 0.0006,
+ "loss": 3.6552987098693848,
+ "step": 2900
+ },
+ {
+ "epoch": 40.293577981651374,
+ "grad_norm": 0.2145485281944275,
+ "learning_rate": 0.0006,
+ "loss": 3.628025531768799,
+ "step": 2901
+ },
+ {
+ "epoch": 40.30755788553954,
+ "grad_norm": 0.21119336783885956,
+ "learning_rate": 0.0006,
+ "loss": 3.6511590480804443,
+ "step": 2902
+ },
+ {
+ "epoch": 40.3215377894277,
+ "grad_norm": 0.2158869504928589,
+ "learning_rate": 0.0006,
+ "loss": 3.6302051544189453,
+ "step": 2903
+ },
+ {
+ "epoch": 40.33551769331586,
+ "grad_norm": 0.22736455500125885,
+ "learning_rate": 0.0006,
+ "loss": 3.6678733825683594,
+ "step": 2904
+ },
+ {
+ "epoch": 40.34949759720402,
+ "grad_norm": 0.22723783552646637,
+ "learning_rate": 0.0006,
+ "loss": 3.632068634033203,
+ "step": 2905
+ },
+ {
+ "epoch": 40.36347750109218,
+ "grad_norm": 0.20606189966201782,
+ "learning_rate": 0.0006,
+ "loss": 3.6534624099731445,
+ "step": 2906
+ },
+ {
+ "epoch": 40.37745740498034,
+ "grad_norm": 0.21033786237239838,
+ "learning_rate": 0.0006,
+ "loss": 3.6194064617156982,
+ "step": 2907
+ },
+ {
+ "epoch": 40.391437308868504,
+ "grad_norm": 0.2175762951374054,
+ "learning_rate": 0.0006,
+ "loss": 3.637385368347168,
+ "step": 2908
+ },
+ {
+ "epoch": 40.40541721275666,
+ "grad_norm": 0.21063381433486938,
+ "learning_rate": 0.0006,
+ "loss": 3.656857967376709,
+ "step": 2909
+ },
+ {
+ "epoch": 40.419397116644824,
+ "grad_norm": 0.19982226192951202,
+ "learning_rate": 0.0006,
+ "loss": 3.655738353729248,
+ "step": 2910
+ },
+ {
+ "epoch": 40.43337702053299,
+ "grad_norm": 0.20608870685100555,
+ "learning_rate": 0.0006,
+ "loss": 3.6521377563476562,
+ "step": 2911
+ },
+ {
+ "epoch": 40.44735692442114,
+ "grad_norm": 0.19817334413528442,
+ "learning_rate": 0.0006,
+ "loss": 3.61527681350708,
+ "step": 2912
+ },
+ {
+ "epoch": 40.46133682830931,
+ "grad_norm": 0.20407769083976746,
+ "learning_rate": 0.0006,
+ "loss": 3.6668765544891357,
+ "step": 2913
+ },
+ {
+ "epoch": 40.47531673219746,
+ "grad_norm": 0.19874799251556396,
+ "learning_rate": 0.0006,
+ "loss": 3.6748533248901367,
+ "step": 2914
+ },
+ {
+ "epoch": 40.489296636085626,
+ "grad_norm": 0.1979510486125946,
+ "learning_rate": 0.0006,
+ "loss": 3.6141977310180664,
+ "step": 2915
+ },
+ {
+ "epoch": 40.50327653997379,
+ "grad_norm": 0.19811518490314484,
+ "learning_rate": 0.0006,
+ "loss": 3.6391215324401855,
+ "step": 2916
+ },
+ {
+ "epoch": 40.517256443861946,
+ "grad_norm": 0.20208898186683655,
+ "learning_rate": 0.0006,
+ "loss": 3.664179801940918,
+ "step": 2917
+ },
+ {
+ "epoch": 40.53123634775011,
+ "grad_norm": 0.22063760459423065,
+ "learning_rate": 0.0006,
+ "loss": 3.645388126373291,
+ "step": 2918
+ },
+ {
+ "epoch": 40.54521625163827,
+ "grad_norm": 0.23420891165733337,
+ "learning_rate": 0.0006,
+ "loss": 3.6424708366394043,
+ "step": 2919
+ },
+ {
+ "epoch": 40.55919615552643,
+ "grad_norm": 0.2263612151145935,
+ "learning_rate": 0.0006,
+ "loss": 3.6649224758148193,
+ "step": 2920
+ },
+ {
+ "epoch": 40.57317605941459,
+ "grad_norm": 0.22745433449745178,
+ "learning_rate": 0.0006,
+ "loss": 3.631586790084839,
+ "step": 2921
+ },
+ {
+ "epoch": 40.58715596330275,
+ "grad_norm": 0.22413238883018494,
+ "learning_rate": 0.0006,
+ "loss": 3.6666674613952637,
+ "step": 2922
+ },
+ {
+ "epoch": 40.60113586719091,
+ "grad_norm": 0.2178265005350113,
+ "learning_rate": 0.0006,
+ "loss": 3.6002111434936523,
+ "step": 2923
+ },
+ {
+ "epoch": 40.615115771079076,
+ "grad_norm": 0.21822521090507507,
+ "learning_rate": 0.0006,
+ "loss": 3.6538329124450684,
+ "step": 2924
+ },
+ {
+ "epoch": 40.62909567496723,
+ "grad_norm": 0.21728558838367462,
+ "learning_rate": 0.0006,
+ "loss": 3.651254653930664,
+ "step": 2925
+ },
+ {
+ "epoch": 40.643075578855395,
+ "grad_norm": 0.22377707064151764,
+ "learning_rate": 0.0006,
+ "loss": 3.6505789756774902,
+ "step": 2926
+ },
+ {
+ "epoch": 40.65705548274356,
+ "grad_norm": 0.2035706788301468,
+ "learning_rate": 0.0006,
+ "loss": 3.6471967697143555,
+ "step": 2927
+ },
+ {
+ "epoch": 40.671035386631715,
+ "grad_norm": 0.2011154741048813,
+ "learning_rate": 0.0006,
+ "loss": 3.6582741737365723,
+ "step": 2928
+ },
+ {
+ "epoch": 40.68501529051988,
+ "grad_norm": 0.23812712728977203,
+ "learning_rate": 0.0006,
+ "loss": 3.6388421058654785,
+ "step": 2929
+ },
+ {
+ "epoch": 40.69899519440804,
+ "grad_norm": 0.2117796689271927,
+ "learning_rate": 0.0006,
+ "loss": 3.688337802886963,
+ "step": 2930
+ },
+ {
+ "epoch": 40.7129750982962,
+ "grad_norm": 0.18440942466259003,
+ "learning_rate": 0.0006,
+ "loss": 3.6409997940063477,
+ "step": 2931
+ },
+ {
+ "epoch": 40.72695500218436,
+ "grad_norm": 0.19005917012691498,
+ "learning_rate": 0.0006,
+ "loss": 3.6760218143463135,
+ "step": 2932
+ },
+ {
+ "epoch": 40.74093490607252,
+ "grad_norm": 0.19982726871967316,
+ "learning_rate": 0.0006,
+ "loss": 3.6375021934509277,
+ "step": 2933
+ },
+ {
+ "epoch": 40.75491480996068,
+ "grad_norm": 0.19240257143974304,
+ "learning_rate": 0.0006,
+ "loss": 3.636807918548584,
+ "step": 2934
+ },
+ {
+ "epoch": 40.768894713848844,
+ "grad_norm": 0.20563434064388275,
+ "learning_rate": 0.0006,
+ "loss": 3.6667532920837402,
+ "step": 2935
+ },
+ {
+ "epoch": 40.782874617737,
+ "grad_norm": 0.26531776785850525,
+ "learning_rate": 0.0006,
+ "loss": 3.6332945823669434,
+ "step": 2936
+ },
+ {
+ "epoch": 40.796854521625164,
+ "grad_norm": 0.2766861021518707,
+ "learning_rate": 0.0006,
+ "loss": 3.6645212173461914,
+ "step": 2937
+ },
+ {
+ "epoch": 40.81083442551333,
+ "grad_norm": 0.235750213265419,
+ "learning_rate": 0.0006,
+ "loss": 3.67067813873291,
+ "step": 2938
+ },
+ {
+ "epoch": 40.824814329401484,
+ "grad_norm": 0.20778773725032806,
+ "learning_rate": 0.0006,
+ "loss": 3.6565768718719482,
+ "step": 2939
+ },
+ {
+ "epoch": 40.83879423328965,
+ "grad_norm": 0.187322199344635,
+ "learning_rate": 0.0006,
+ "loss": 3.620129346847534,
+ "step": 2940
+ },
+ {
+ "epoch": 40.8527741371778,
+ "grad_norm": 0.20576219260692596,
+ "learning_rate": 0.0006,
+ "loss": 3.6700220108032227,
+ "step": 2941
+ },
+ {
+ "epoch": 40.86675404106597,
+ "grad_norm": 0.2197345495223999,
+ "learning_rate": 0.0006,
+ "loss": 3.709311008453369,
+ "step": 2942
+ },
+ {
+ "epoch": 40.88073394495413,
+ "grad_norm": 0.20205345749855042,
+ "learning_rate": 0.0006,
+ "loss": 3.6646361351013184,
+ "step": 2943
+ },
+ {
+ "epoch": 40.89471384884229,
+ "grad_norm": 0.20026250183582306,
+ "learning_rate": 0.0006,
+ "loss": 3.6639604568481445,
+ "step": 2944
+ },
+ {
+ "epoch": 40.90869375273045,
+ "grad_norm": 0.224214106798172,
+ "learning_rate": 0.0006,
+ "loss": 3.6669654846191406,
+ "step": 2945
+ },
+ {
+ "epoch": 40.92267365661861,
+ "grad_norm": 0.2155972272157669,
+ "learning_rate": 0.0006,
+ "loss": 3.6494603157043457,
+ "step": 2946
+ },
+ {
+ "epoch": 40.93665356050677,
+ "grad_norm": 0.23038871586322784,
+ "learning_rate": 0.0006,
+ "loss": 3.6368541717529297,
+ "step": 2947
+ },
+ {
+ "epoch": 40.95063346439493,
+ "grad_norm": 0.2001815289258957,
+ "learning_rate": 0.0006,
+ "loss": 3.711174249649048,
+ "step": 2948
+ },
+ {
+ "epoch": 40.964613368283096,
+ "grad_norm": 0.20428860187530518,
+ "learning_rate": 0.0006,
+ "loss": 3.6342315673828125,
+ "step": 2949
+ },
+ {
+ "epoch": 40.97859327217125,
+ "grad_norm": 0.20724134147167206,
+ "learning_rate": 0.0006,
+ "loss": 3.679375171661377,
+ "step": 2950
+ },
+ {
+ "epoch": 40.992573176059416,
+ "grad_norm": 0.20723849534988403,
+ "learning_rate": 0.0006,
+ "loss": 3.6477675437927246,
+ "step": 2951
+ },
+ {
+ "epoch": 41.0,
+ "grad_norm": 0.23891447484493256,
+ "learning_rate": 0.0006,
+ "loss": 3.632950782775879,
+ "step": 2952
+ },
+ {
+ "epoch": 41.0,
+ "eval_loss": 3.9871256351470947,
+ "eval_runtime": 43.8367,
+ "eval_samples_per_second": 55.707,
+ "eval_steps_per_second": 3.49,
+ "step": 2952
+ },
+ {
+ "epoch": 41.01397990388816,
+ "grad_norm": 0.2258434295654297,
+ "learning_rate": 0.0006,
+ "loss": 3.631239414215088,
+ "step": 2953
+ },
+ {
+ "epoch": 41.02795980777632,
+ "grad_norm": 0.24932795763015747,
+ "learning_rate": 0.0006,
+ "loss": 3.601083517074585,
+ "step": 2954
+ },
+ {
+ "epoch": 41.04193971166448,
+ "grad_norm": 0.2688388228416443,
+ "learning_rate": 0.0006,
+ "loss": 3.655724048614502,
+ "step": 2955
+ },
+ {
+ "epoch": 41.05591961555265,
+ "grad_norm": 0.23880694806575775,
+ "learning_rate": 0.0006,
+ "loss": 3.617628812789917,
+ "step": 2956
+ },
+ {
+ "epoch": 41.0698995194408,
+ "grad_norm": 0.23784616589546204,
+ "learning_rate": 0.0006,
+ "loss": 3.6309127807617188,
+ "step": 2957
+ },
+ {
+ "epoch": 41.083879423328966,
+ "grad_norm": 0.22609511017799377,
+ "learning_rate": 0.0006,
+ "loss": 3.6138553619384766,
+ "step": 2958
+ },
+ {
+ "epoch": 41.09785932721712,
+ "grad_norm": 0.22936329245567322,
+ "learning_rate": 0.0006,
+ "loss": 3.6620094776153564,
+ "step": 2959
+ },
+ {
+ "epoch": 41.111839231105286,
+ "grad_norm": 0.23354190587997437,
+ "learning_rate": 0.0006,
+ "loss": 3.59959077835083,
+ "step": 2960
+ },
+ {
+ "epoch": 41.12581913499345,
+ "grad_norm": 0.2496265172958374,
+ "learning_rate": 0.0006,
+ "loss": 3.588359832763672,
+ "step": 2961
+ },
+ {
+ "epoch": 41.139799038881605,
+ "grad_norm": 0.23618635535240173,
+ "learning_rate": 0.0006,
+ "loss": 3.6341018676757812,
+ "step": 2962
+ },
+ {
+ "epoch": 41.15377894276977,
+ "grad_norm": 0.23724640905857086,
+ "learning_rate": 0.0006,
+ "loss": 3.6170616149902344,
+ "step": 2963
+ },
+ {
+ "epoch": 41.16775884665793,
+ "grad_norm": 0.20944789052009583,
+ "learning_rate": 0.0006,
+ "loss": 3.6158995628356934,
+ "step": 2964
+ },
+ {
+ "epoch": 41.18173875054609,
+ "grad_norm": 0.2089492678642273,
+ "learning_rate": 0.0006,
+ "loss": 3.586538314819336,
+ "step": 2965
+ },
+ {
+ "epoch": 41.19571865443425,
+ "grad_norm": 0.2370915710926056,
+ "learning_rate": 0.0006,
+ "loss": 3.599236011505127,
+ "step": 2966
+ },
+ {
+ "epoch": 41.20969855832241,
+ "grad_norm": 0.25749558210372925,
+ "learning_rate": 0.0006,
+ "loss": 3.631399154663086,
+ "step": 2967
+ },
+ {
+ "epoch": 41.22367846221057,
+ "grad_norm": 0.24754776060581207,
+ "learning_rate": 0.0006,
+ "loss": 3.6503920555114746,
+ "step": 2968
+ },
+ {
+ "epoch": 41.237658366098735,
+ "grad_norm": 0.22060903906822205,
+ "learning_rate": 0.0006,
+ "loss": 3.671673536300659,
+ "step": 2969
+ },
+ {
+ "epoch": 41.25163826998689,
+ "grad_norm": 0.19416594505310059,
+ "learning_rate": 0.0006,
+ "loss": 3.6158413887023926,
+ "step": 2970
+ },
+ {
+ "epoch": 41.265618173875055,
+ "grad_norm": 0.22596411406993866,
+ "learning_rate": 0.0006,
+ "loss": 3.64003849029541,
+ "step": 2971
+ },
+ {
+ "epoch": 41.27959807776322,
+ "grad_norm": 0.26785415410995483,
+ "learning_rate": 0.0006,
+ "loss": 3.642327308654785,
+ "step": 2972
+ },
+ {
+ "epoch": 41.293577981651374,
+ "grad_norm": 0.2988710403442383,
+ "learning_rate": 0.0006,
+ "loss": 3.6018929481506348,
+ "step": 2973
+ },
+ {
+ "epoch": 41.30755788553954,
+ "grad_norm": 0.2428133338689804,
+ "learning_rate": 0.0006,
+ "loss": 3.645270824432373,
+ "step": 2974
+ },
+ {
+ "epoch": 41.3215377894277,
+ "grad_norm": 0.20330320298671722,
+ "learning_rate": 0.0006,
+ "loss": 3.625495433807373,
+ "step": 2975
+ },
+ {
+ "epoch": 41.33551769331586,
+ "grad_norm": 0.2267787605524063,
+ "learning_rate": 0.0006,
+ "loss": 3.6469204425811768,
+ "step": 2976
+ },
+ {
+ "epoch": 41.34949759720402,
+ "grad_norm": 0.20702822506427765,
+ "learning_rate": 0.0006,
+ "loss": 3.644191265106201,
+ "step": 2977
+ },
+ {
+ "epoch": 41.36347750109218,
+ "grad_norm": 0.19693221151828766,
+ "learning_rate": 0.0006,
+ "loss": 3.591794967651367,
+ "step": 2978
+ },
+ {
+ "epoch": 41.37745740498034,
+ "grad_norm": 0.21193185448646545,
+ "learning_rate": 0.0006,
+ "loss": 3.6283936500549316,
+ "step": 2979
+ },
+ {
+ "epoch": 41.391437308868504,
+ "grad_norm": 0.20953163504600525,
+ "learning_rate": 0.0006,
+ "loss": 3.617565155029297,
+ "step": 2980
+ },
+ {
+ "epoch": 41.40541721275666,
+ "grad_norm": 0.21839819848537445,
+ "learning_rate": 0.0006,
+ "loss": 3.621209144592285,
+ "step": 2981
+ },
+ {
+ "epoch": 41.419397116644824,
+ "grad_norm": 0.2152671068906784,
+ "learning_rate": 0.0006,
+ "loss": 3.643197536468506,
+ "step": 2982
+ },
+ {
+ "epoch": 41.43337702053299,
+ "grad_norm": 0.2507486641407013,
+ "learning_rate": 0.0006,
+ "loss": 3.657499313354492,
+ "step": 2983
+ },
+ {
+ "epoch": 41.44735692442114,
+ "grad_norm": 0.24695388972759247,
+ "learning_rate": 0.0006,
+ "loss": 3.62170672416687,
+ "step": 2984
+ },
+ {
+ "epoch": 41.46133682830931,
+ "grad_norm": 0.22652822732925415,
+ "learning_rate": 0.0006,
+ "loss": 3.64322566986084,
+ "step": 2985
+ },
+ {
+ "epoch": 41.47531673219746,
+ "grad_norm": 0.2575881779193878,
+ "learning_rate": 0.0006,
+ "loss": 3.659621477127075,
+ "step": 2986
+ },
+ {
+ "epoch": 41.489296636085626,
+ "grad_norm": 0.24162672460079193,
+ "learning_rate": 0.0006,
+ "loss": 3.6527223587036133,
+ "step": 2987
+ },
+ {
+ "epoch": 41.50327653997379,
+ "grad_norm": 0.20930497348308563,
+ "learning_rate": 0.0006,
+ "loss": 3.6412787437438965,
+ "step": 2988
+ },
+ {
+ "epoch": 41.517256443861946,
+ "grad_norm": 0.20480819046497345,
+ "learning_rate": 0.0006,
+ "loss": 3.614767074584961,
+ "step": 2989
+ },
+ {
+ "epoch": 41.53123634775011,
+ "grad_norm": 0.20015820860862732,
+ "learning_rate": 0.0006,
+ "loss": 3.6512045860290527,
+ "step": 2990
+ },
+ {
+ "epoch": 41.54521625163827,
+ "grad_norm": 0.20220743119716644,
+ "learning_rate": 0.0006,
+ "loss": 3.6732325553894043,
+ "step": 2991
+ },
+ {
+ "epoch": 41.55919615552643,
+ "grad_norm": 0.20505326986312866,
+ "learning_rate": 0.0006,
+ "loss": 3.6374664306640625,
+ "step": 2992
+ },
+ {
+ "epoch": 41.57317605941459,
+ "grad_norm": 0.19423344731330872,
+ "learning_rate": 0.0006,
+ "loss": 3.6564126014709473,
+ "step": 2993
+ },
+ {
+ "epoch": 41.58715596330275,
+ "grad_norm": 0.19284583628177643,
+ "learning_rate": 0.0006,
+ "loss": 3.6460509300231934,
+ "step": 2994
+ },
+ {
+ "epoch": 41.60113586719091,
+ "grad_norm": 0.18488959968090057,
+ "learning_rate": 0.0006,
+ "loss": 3.632859468460083,
+ "step": 2995
+ },
+ {
+ "epoch": 41.615115771079076,
+ "grad_norm": 0.18816296756267548,
+ "learning_rate": 0.0006,
+ "loss": 3.5958361625671387,
+ "step": 2996
+ },
+ {
+ "epoch": 41.62909567496723,
+ "grad_norm": 0.18987809121608734,
+ "learning_rate": 0.0006,
+ "loss": 3.6330695152282715,
+ "step": 2997
+ },
+ {
+ "epoch": 41.643075578855395,
+ "grad_norm": 0.18999919295310974,
+ "learning_rate": 0.0006,
+ "loss": 3.6486730575561523,
+ "step": 2998
+ },
+ {
+ "epoch": 41.65705548274356,
+ "grad_norm": 0.20190183818340302,
+ "learning_rate": 0.0006,
+ "loss": 3.6564230918884277,
+ "step": 2999
+ },
+ {
+ "epoch": 41.671035386631715,
+ "grad_norm": 0.20331363379955292,
+ "learning_rate": 0.0006,
+ "loss": 3.6789698600769043,
+ "step": 3000
+ },
+ {
+ "epoch": 41.68501529051988,
+ "grad_norm": 0.21599505841732025,
+ "learning_rate": 0.0006,
+ "loss": 3.6544511318206787,
+ "step": 3001
+ },
+ {
+ "epoch": 41.69899519440804,
+ "grad_norm": 0.21123184263706207,
+ "learning_rate": 0.0006,
+ "loss": 3.6506948471069336,
+ "step": 3002
+ },
+ {
+ "epoch": 41.7129750982962,
+ "grad_norm": 0.21337002515792847,
+ "learning_rate": 0.0006,
+ "loss": 3.676854372024536,
+ "step": 3003
+ },
+ {
+ "epoch": 41.72695500218436,
+ "grad_norm": 0.22567597031593323,
+ "learning_rate": 0.0006,
+ "loss": 3.6467485427856445,
+ "step": 3004
+ },
+ {
+ "epoch": 41.74093490607252,
+ "grad_norm": 0.22923491895198822,
+ "learning_rate": 0.0006,
+ "loss": 3.663224697113037,
+ "step": 3005
+ },
+ {
+ "epoch": 41.75491480996068,
+ "grad_norm": 0.21511489152908325,
+ "learning_rate": 0.0006,
+ "loss": 3.6290054321289062,
+ "step": 3006
+ },
+ {
+ "epoch": 41.768894713848844,
+ "grad_norm": 0.23855915665626526,
+ "learning_rate": 0.0006,
+ "loss": 3.631225109100342,
+ "step": 3007
+ },
+ {
+ "epoch": 41.782874617737,
+ "grad_norm": 0.22771067917346954,
+ "learning_rate": 0.0006,
+ "loss": 3.652575731277466,
+ "step": 3008
+ },
+ {
+ "epoch": 41.796854521625164,
+ "grad_norm": 0.2006237953901291,
+ "learning_rate": 0.0006,
+ "loss": 3.6883468627929688,
+ "step": 3009
+ },
+ {
+ "epoch": 41.81083442551333,
+ "grad_norm": 0.21182459592819214,
+ "learning_rate": 0.0006,
+ "loss": 3.6443567276000977,
+ "step": 3010
+ },
+ {
+ "epoch": 41.824814329401484,
+ "grad_norm": 0.21083690226078033,
+ "learning_rate": 0.0006,
+ "loss": 3.66660475730896,
+ "step": 3011
+ },
+ {
+ "epoch": 41.83879423328965,
+ "grad_norm": 0.21232296526432037,
+ "learning_rate": 0.0006,
+ "loss": 3.6436524391174316,
+ "step": 3012
+ },
+ {
+ "epoch": 41.8527741371778,
+ "grad_norm": 0.2089361697435379,
+ "learning_rate": 0.0006,
+ "loss": 3.648113250732422,
+ "step": 3013
+ },
+ {
+ "epoch": 41.86675404106597,
+ "grad_norm": 0.21517033874988556,
+ "learning_rate": 0.0006,
+ "loss": 3.6382269859313965,
+ "step": 3014
+ },
+ {
+ "epoch": 41.88073394495413,
+ "grad_norm": 0.1930733323097229,
+ "learning_rate": 0.0006,
+ "loss": 3.639441967010498,
+ "step": 3015
+ },
+ {
+ "epoch": 41.89471384884229,
+ "grad_norm": 0.18282832205295563,
+ "learning_rate": 0.0006,
+ "loss": 3.652860164642334,
+ "step": 3016
+ },
+ {
+ "epoch": 41.90869375273045,
+ "grad_norm": 0.18649716675281525,
+ "learning_rate": 0.0006,
+ "loss": 3.6335558891296387,
+ "step": 3017
+ },
+ {
+ "epoch": 41.92267365661861,
+ "grad_norm": 0.18873754143714905,
+ "learning_rate": 0.0006,
+ "loss": 3.6743149757385254,
+ "step": 3018
+ },
+ {
+ "epoch": 41.93665356050677,
+ "grad_norm": 0.1937907189130783,
+ "learning_rate": 0.0006,
+ "loss": 3.6749300956726074,
+ "step": 3019
+ },
+ {
+ "epoch": 41.95063346439493,
+ "grad_norm": 0.20620854198932648,
+ "learning_rate": 0.0006,
+ "loss": 3.6591262817382812,
+ "step": 3020
+ },
+ {
+ "epoch": 41.964613368283096,
+ "grad_norm": 0.18541009724140167,
+ "learning_rate": 0.0006,
+ "loss": 3.647010326385498,
+ "step": 3021
+ },
+ {
+ "epoch": 41.97859327217125,
+ "grad_norm": 0.19224928319454193,
+ "learning_rate": 0.0006,
+ "loss": 3.629920482635498,
+ "step": 3022
+ },
+ {
+ "epoch": 41.992573176059416,
+ "grad_norm": 0.21286419034004211,
+ "learning_rate": 0.0006,
+ "loss": 3.6516964435577393,
+ "step": 3023
+ },
+ {
+ "epoch": 42.0,
+ "grad_norm": 0.24787360429763794,
+ "learning_rate": 0.0006,
+ "loss": 3.6378865242004395,
+ "step": 3024
+ },
+ {
+ "epoch": 42.0,
+ "eval_loss": 3.9910318851470947,
+ "eval_runtime": 43.7914,
+ "eval_samples_per_second": 55.764,
+ "eval_steps_per_second": 3.494,
+ "step": 3024
+ },
+ {
+ "epoch": 42.01397990388816,
+ "grad_norm": 0.21036255359649658,
+ "learning_rate": 0.0006,
+ "loss": 3.6604344844818115,
+ "step": 3025
+ },
+ {
+ "epoch": 42.02795980777632,
+ "grad_norm": 0.22240597009658813,
+ "learning_rate": 0.0006,
+ "loss": 3.6160645484924316,
+ "step": 3026
+ },
+ {
+ "epoch": 42.04193971166448,
+ "grad_norm": 0.2487850785255432,
+ "learning_rate": 0.0006,
+ "loss": 3.6293773651123047,
+ "step": 3027
+ },
+ {
+ "epoch": 42.05591961555265,
+ "grad_norm": 0.27058133482933044,
+ "learning_rate": 0.0006,
+ "loss": 3.5827436447143555,
+ "step": 3028
+ },
+ {
+ "epoch": 42.0698995194408,
+ "grad_norm": 0.25001782178878784,
+ "learning_rate": 0.0006,
+ "loss": 3.5833029747009277,
+ "step": 3029
+ },
+ {
+ "epoch": 42.083879423328966,
+ "grad_norm": 0.23811939358711243,
+ "learning_rate": 0.0006,
+ "loss": 3.605585813522339,
+ "step": 3030
+ },
+ {
+ "epoch": 42.09785932721712,
+ "grad_norm": 0.23279601335525513,
+ "learning_rate": 0.0006,
+ "loss": 3.607205867767334,
+ "step": 3031
+ },
+ {
+ "epoch": 42.111839231105286,
+ "grad_norm": 0.24410508573055267,
+ "learning_rate": 0.0006,
+ "loss": 3.621175765991211,
+ "step": 3032
+ },
+ {
+ "epoch": 42.12581913499345,
+ "grad_norm": 0.24782028794288635,
+ "learning_rate": 0.0006,
+ "loss": 3.6236867904663086,
+ "step": 3033
+ },
+ {
+ "epoch": 42.139799038881605,
+ "grad_norm": 0.2301972657442093,
+ "learning_rate": 0.0006,
+ "loss": 3.603853464126587,
+ "step": 3034
+ },
+ {
+ "epoch": 42.15377894276977,
+ "grad_norm": 0.21988637745380402,
+ "learning_rate": 0.0006,
+ "loss": 3.600142002105713,
+ "step": 3035
+ },
+ {
+ "epoch": 42.16775884665793,
+ "grad_norm": 0.22623786330223083,
+ "learning_rate": 0.0006,
+ "loss": 3.61971116065979,
+ "step": 3036
+ },
+ {
+ "epoch": 42.18173875054609,
+ "grad_norm": 0.21844688057899475,
+ "learning_rate": 0.0006,
+ "loss": 3.61320161819458,
+ "step": 3037
+ },
+ {
+ "epoch": 42.19571865443425,
+ "grad_norm": 0.20444536209106445,
+ "learning_rate": 0.0006,
+ "loss": 3.6179633140563965,
+ "step": 3038
+ },
+ {
+ "epoch": 42.20969855832241,
+ "grad_norm": 0.22862036526203156,
+ "learning_rate": 0.0006,
+ "loss": 3.605433940887451,
+ "step": 3039
+ },
+ {
+ "epoch": 42.22367846221057,
+ "grad_norm": 0.2906605005264282,
+ "learning_rate": 0.0006,
+ "loss": 3.6279449462890625,
+ "step": 3040
+ },
+ {
+ "epoch": 42.237658366098735,
+ "grad_norm": 0.29074418544769287,
+ "learning_rate": 0.0006,
+ "loss": 3.5959763526916504,
+ "step": 3041
+ },
+ {
+ "epoch": 42.25163826998689,
+ "grad_norm": 0.1994444876909256,
+ "learning_rate": 0.0006,
+ "loss": 3.5858588218688965,
+ "step": 3042
+ },
+ {
+ "epoch": 42.265618173875055,
+ "grad_norm": 0.20793452858924866,
+ "learning_rate": 0.0006,
+ "loss": 3.604630470275879,
+ "step": 3043
+ },
+ {
+ "epoch": 42.27959807776322,
+ "grad_norm": 0.2119535505771637,
+ "learning_rate": 0.0006,
+ "loss": 3.6287126541137695,
+ "step": 3044
+ },
+ {
+ "epoch": 42.293577981651374,
+ "grad_norm": 0.21092535555362701,
+ "learning_rate": 0.0006,
+ "loss": 3.646294593811035,
+ "step": 3045
+ },
+ {
+ "epoch": 42.30755788553954,
+ "grad_norm": 0.21474479138851166,
+ "learning_rate": 0.0006,
+ "loss": 3.6364355087280273,
+ "step": 3046
+ },
+ {
+ "epoch": 42.3215377894277,
+ "grad_norm": 0.21100781857967377,
+ "learning_rate": 0.0006,
+ "loss": 3.622528553009033,
+ "step": 3047
+ },
+ {
+ "epoch": 42.33551769331586,
+ "grad_norm": 0.20739853382110596,
+ "learning_rate": 0.0006,
+ "loss": 3.6261959075927734,
+ "step": 3048
+ },
+ {
+ "epoch": 42.34949759720402,
+ "grad_norm": 0.22264131903648376,
+ "learning_rate": 0.0006,
+ "loss": 3.6195173263549805,
+ "step": 3049
+ },
+ {
+ "epoch": 42.36347750109218,
+ "grad_norm": 0.23696285486221313,
+ "learning_rate": 0.0006,
+ "loss": 3.631103515625,
+ "step": 3050
+ },
+ {
+ "epoch": 42.37745740498034,
+ "grad_norm": 0.2124902606010437,
+ "learning_rate": 0.0006,
+ "loss": 3.6490437984466553,
+ "step": 3051
+ },
+ {
+ "epoch": 42.391437308868504,
+ "grad_norm": 0.18831083178520203,
+ "learning_rate": 0.0006,
+ "loss": 3.628459930419922,
+ "step": 3052
+ },
+ {
+ "epoch": 42.40541721275666,
+ "grad_norm": 0.20390060544013977,
+ "learning_rate": 0.0006,
+ "loss": 3.6348538398742676,
+ "step": 3053
+ },
+ {
+ "epoch": 42.419397116644824,
+ "grad_norm": 0.2205851823091507,
+ "learning_rate": 0.0006,
+ "loss": 3.6286797523498535,
+ "step": 3054
+ },
+ {
+ "epoch": 42.43337702053299,
+ "grad_norm": 0.21518434584140778,
+ "learning_rate": 0.0006,
+ "loss": 3.5918965339660645,
+ "step": 3055
+ },
+ {
+ "epoch": 42.44735692442114,
+ "grad_norm": 0.2342296987771988,
+ "learning_rate": 0.0006,
+ "loss": 3.6364407539367676,
+ "step": 3056
+ },
+ {
+ "epoch": 42.46133682830931,
+ "grad_norm": 0.2304094135761261,
+ "learning_rate": 0.0006,
+ "loss": 3.6561477184295654,
+ "step": 3057
+ },
+ {
+ "epoch": 42.47531673219746,
+ "grad_norm": 0.20882441103458405,
+ "learning_rate": 0.0006,
+ "loss": 3.611250638961792,
+ "step": 3058
+ },
+ {
+ "epoch": 42.489296636085626,
+ "grad_norm": 0.24346643686294556,
+ "learning_rate": 0.0006,
+ "loss": 3.580082416534424,
+ "step": 3059
+ },
+ {
+ "epoch": 42.50327653997379,
+ "grad_norm": 0.260711133480072,
+ "learning_rate": 0.0006,
+ "loss": 3.6179792881011963,
+ "step": 3060
+ },
+ {
+ "epoch": 42.517256443861946,
+ "grad_norm": 0.21223759651184082,
+ "learning_rate": 0.0006,
+ "loss": 3.6153154373168945,
+ "step": 3061
+ },
+ {
+ "epoch": 42.53123634775011,
+ "grad_norm": 0.21429137885570526,
+ "learning_rate": 0.0006,
+ "loss": 3.6003379821777344,
+ "step": 3062
+ },
+ {
+ "epoch": 42.54521625163827,
+ "grad_norm": 0.23659434914588928,
+ "learning_rate": 0.0006,
+ "loss": 3.6540589332580566,
+ "step": 3063
+ },
+ {
+ "epoch": 42.55919615552643,
+ "grad_norm": 0.280344158411026,
+ "learning_rate": 0.0006,
+ "loss": 3.6406192779541016,
+ "step": 3064
+ },
+ {
+ "epoch": 42.57317605941459,
+ "grad_norm": 0.2903953194618225,
+ "learning_rate": 0.0006,
+ "loss": 3.643479824066162,
+ "step": 3065
+ },
+ {
+ "epoch": 42.58715596330275,
+ "grad_norm": 0.24958311021327972,
+ "learning_rate": 0.0006,
+ "loss": 3.6320221424102783,
+ "step": 3066
+ },
+ {
+ "epoch": 42.60113586719091,
+ "grad_norm": 0.22525225579738617,
+ "learning_rate": 0.0006,
+ "loss": 3.641676425933838,
+ "step": 3067
+ },
+ {
+ "epoch": 42.615115771079076,
+ "grad_norm": 0.23025161027908325,
+ "learning_rate": 0.0006,
+ "loss": 3.6465210914611816,
+ "step": 3068
+ },
+ {
+ "epoch": 42.62909567496723,
+ "grad_norm": 0.21947328746318817,
+ "learning_rate": 0.0006,
+ "loss": 3.667877435684204,
+ "step": 3069
+ },
+ {
+ "epoch": 42.643075578855395,
+ "grad_norm": 0.22809366881847382,
+ "learning_rate": 0.0006,
+ "loss": 3.663166046142578,
+ "step": 3070
+ },
+ {
+ "epoch": 42.65705548274356,
+ "grad_norm": 0.21938708424568176,
+ "learning_rate": 0.0006,
+ "loss": 3.619001865386963,
+ "step": 3071
+ },
+ {
+ "epoch": 42.671035386631715,
+ "grad_norm": 0.231620192527771,
+ "learning_rate": 0.0006,
+ "loss": 3.652332305908203,
+ "step": 3072
+ },
+ {
+ "epoch": 42.68501529051988,
+ "grad_norm": 0.23683936893939972,
+ "learning_rate": 0.0006,
+ "loss": 3.6633410453796387,
+ "step": 3073
+ },
+ {
+ "epoch": 42.69899519440804,
+ "grad_norm": 0.23752044141292572,
+ "learning_rate": 0.0006,
+ "loss": 3.646064281463623,
+ "step": 3074
+ },
+ {
+ "epoch": 42.7129750982962,
+ "grad_norm": 0.23041971027851105,
+ "learning_rate": 0.0006,
+ "loss": 3.6431851387023926,
+ "step": 3075
+ },
+ {
+ "epoch": 42.72695500218436,
+ "grad_norm": 0.220438614487648,
+ "learning_rate": 0.0006,
+ "loss": 3.6499950885772705,
+ "step": 3076
+ },
+ {
+ "epoch": 42.74093490607252,
+ "grad_norm": 0.24297107756137848,
+ "learning_rate": 0.0006,
+ "loss": 3.6655125617980957,
+ "step": 3077
+ },
+ {
+ "epoch": 42.75491480996068,
+ "grad_norm": 0.21835893392562866,
+ "learning_rate": 0.0006,
+ "loss": 3.61672043800354,
+ "step": 3078
+ },
+ {
+ "epoch": 42.768894713848844,
+ "grad_norm": 0.22490793466567993,
+ "learning_rate": 0.0006,
+ "loss": 3.652825355529785,
+ "step": 3079
+ },
+ {
+ "epoch": 42.782874617737,
+ "grad_norm": 0.2246086746454239,
+ "learning_rate": 0.0006,
+ "loss": 3.6290056705474854,
+ "step": 3080
+ },
+ {
+ "epoch": 42.796854521625164,
+ "grad_norm": 0.21527042984962463,
+ "learning_rate": 0.0006,
+ "loss": 3.6587281227111816,
+ "step": 3081
+ },
+ {
+ "epoch": 42.81083442551333,
+ "grad_norm": 0.19586899876594543,
+ "learning_rate": 0.0006,
+ "loss": 3.639626979827881,
+ "step": 3082
+ },
+ {
+ "epoch": 42.824814329401484,
+ "grad_norm": 0.20881155133247375,
+ "learning_rate": 0.0006,
+ "loss": 3.6305861473083496,
+ "step": 3083
+ },
+ {
+ "epoch": 42.83879423328965,
+ "grad_norm": 0.20094981789588928,
+ "learning_rate": 0.0006,
+ "loss": 3.609614849090576,
+ "step": 3084
+ },
+ {
+ "epoch": 42.8527741371778,
+ "grad_norm": 0.21786150336265564,
+ "learning_rate": 0.0006,
+ "loss": 3.6423556804656982,
+ "step": 3085
+ },
+ {
+ "epoch": 42.86675404106597,
+ "grad_norm": 0.24493595957756042,
+ "learning_rate": 0.0006,
+ "loss": 3.631321668624878,
+ "step": 3086
+ },
+ {
+ "epoch": 42.88073394495413,
+ "grad_norm": 0.2437327355146408,
+ "learning_rate": 0.0006,
+ "loss": 3.6624178886413574,
+ "step": 3087
+ },
+ {
+ "epoch": 42.89471384884229,
+ "grad_norm": 0.21020543575286865,
+ "learning_rate": 0.0006,
+ "loss": 3.6567513942718506,
+ "step": 3088
+ },
+ {
+ "epoch": 42.90869375273045,
+ "grad_norm": 0.18977083265781403,
+ "learning_rate": 0.0006,
+ "loss": 3.6268601417541504,
+ "step": 3089
+ },
+ {
+ "epoch": 42.92267365661861,
+ "grad_norm": 0.2211192399263382,
+ "learning_rate": 0.0006,
+ "loss": 3.6690402030944824,
+ "step": 3090
+ },
+ {
+ "epoch": 42.93665356050677,
+ "grad_norm": 0.2695990204811096,
+ "learning_rate": 0.0006,
+ "loss": 3.667701244354248,
+ "step": 3091
+ },
+ {
+ "epoch": 42.95063346439493,
+ "grad_norm": 0.25910887122154236,
+ "learning_rate": 0.0006,
+ "loss": 3.627504587173462,
+ "step": 3092
+ },
+ {
+ "epoch": 42.964613368283096,
+ "grad_norm": 0.2466248720884323,
+ "learning_rate": 0.0006,
+ "loss": 3.6462182998657227,
+ "step": 3093
+ },
+ {
+ "epoch": 42.97859327217125,
+ "grad_norm": 0.22997038066387177,
+ "learning_rate": 0.0006,
+ "loss": 3.647430896759033,
+ "step": 3094
+ },
+ {
+ "epoch": 42.992573176059416,
+ "grad_norm": 0.1989113837480545,
+ "learning_rate": 0.0006,
+ "loss": 3.6502084732055664,
+ "step": 3095
+ },
+ {
+ "epoch": 43.0,
+ "grad_norm": 0.22976496815681458,
+ "learning_rate": 0.0006,
+ "loss": 3.6963884830474854,
+ "step": 3096
+ },
+ {
+ "epoch": 43.0,
+ "eval_loss": 3.9656779766082764,
+ "eval_runtime": 43.9281,
+ "eval_samples_per_second": 55.591,
+ "eval_steps_per_second": 3.483,
+ "step": 3096
+ },
+ {
+ "epoch": 43.01397990388816,
+ "grad_norm": 0.2862325608730316,
+ "learning_rate": 0.0006,
+ "loss": 3.581247568130493,
+ "step": 3097
+ },
+ {
+ "epoch": 43.02795980777632,
+ "grad_norm": 0.3867015540599823,
+ "learning_rate": 0.0006,
+ "loss": 3.611076593399048,
+ "step": 3098
+ },
+ {
+ "epoch": 43.04193971166448,
+ "grad_norm": 0.4139448404312134,
+ "learning_rate": 0.0006,
+ "loss": 3.625164031982422,
+ "step": 3099
+ },
+ {
+ "epoch": 43.05591961555265,
+ "grad_norm": 0.292407363653183,
+ "learning_rate": 0.0006,
+ "loss": 3.615546703338623,
+ "step": 3100
+ },
+ {
+ "epoch": 43.0698995194408,
+ "grad_norm": 0.24272124469280243,
+ "learning_rate": 0.0006,
+ "loss": 3.5965943336486816,
+ "step": 3101
+ },
+ {
+ "epoch": 43.083879423328966,
+ "grad_norm": 0.2761254608631134,
+ "learning_rate": 0.0006,
+ "loss": 3.605706214904785,
+ "step": 3102
+ },
+ {
+ "epoch": 43.09785932721712,
+ "grad_norm": 0.25232183933258057,
+ "learning_rate": 0.0006,
+ "loss": 3.6252012252807617,
+ "step": 3103
+ },
+ {
+ "epoch": 43.111839231105286,
+ "grad_norm": 0.248970165848732,
+ "learning_rate": 0.0006,
+ "loss": 3.6028337478637695,
+ "step": 3104
+ },
+ {
+ "epoch": 43.12581913499345,
+ "grad_norm": 0.22088921070098877,
+ "learning_rate": 0.0006,
+ "loss": 3.591614007949829,
+ "step": 3105
+ },
+ {
+ "epoch": 43.139799038881605,
+ "grad_norm": 0.21528655290603638,
+ "learning_rate": 0.0006,
+ "loss": 3.6237306594848633,
+ "step": 3106
+ },
+ {
+ "epoch": 43.15377894276977,
+ "grad_norm": 0.22799135744571686,
+ "learning_rate": 0.0006,
+ "loss": 3.5968847274780273,
+ "step": 3107
+ },
+ {
+ "epoch": 43.16775884665793,
+ "grad_norm": 0.23102127015590668,
+ "learning_rate": 0.0006,
+ "loss": 3.6046414375305176,
+ "step": 3108
+ },
+ {
+ "epoch": 43.18173875054609,
+ "grad_norm": 0.22876501083374023,
+ "learning_rate": 0.0006,
+ "loss": 3.635608196258545,
+ "step": 3109
+ },
+ {
+ "epoch": 43.19571865443425,
+ "grad_norm": 0.24920420348644257,
+ "learning_rate": 0.0006,
+ "loss": 3.628662109375,
+ "step": 3110
+ },
+ {
+ "epoch": 43.20969855832241,
+ "grad_norm": 0.2527749538421631,
+ "learning_rate": 0.0006,
+ "loss": 3.6109046936035156,
+ "step": 3111
+ },
+ {
+ "epoch": 43.22367846221057,
+ "grad_norm": 0.22529229521751404,
+ "learning_rate": 0.0006,
+ "loss": 3.6536030769348145,
+ "step": 3112
+ },
+ {
+ "epoch": 43.237658366098735,
+ "grad_norm": 0.20031821727752686,
+ "learning_rate": 0.0006,
+ "loss": 3.6328792572021484,
+ "step": 3113
+ },
+ {
+ "epoch": 43.25163826998689,
+ "grad_norm": 0.21075189113616943,
+ "learning_rate": 0.0006,
+ "loss": 3.6200530529022217,
+ "step": 3114
+ },
+ {
+ "epoch": 43.265618173875055,
+ "grad_norm": 0.21164856851100922,
+ "learning_rate": 0.0006,
+ "loss": 3.6276001930236816,
+ "step": 3115
+ },
+ {
+ "epoch": 43.27959807776322,
+ "grad_norm": 0.19306758046150208,
+ "learning_rate": 0.0006,
+ "loss": 3.608675956726074,
+ "step": 3116
+ },
+ {
+ "epoch": 43.293577981651374,
+ "grad_norm": 0.20288796722888947,
+ "learning_rate": 0.0006,
+ "loss": 3.6057004928588867,
+ "step": 3117
+ },
+ {
+ "epoch": 43.30755788553954,
+ "grad_norm": 0.1901484876871109,
+ "learning_rate": 0.0006,
+ "loss": 3.6191725730895996,
+ "step": 3118
+ },
+ {
+ "epoch": 43.3215377894277,
+ "grad_norm": 0.19438181817531586,
+ "learning_rate": 0.0006,
+ "loss": 3.5814337730407715,
+ "step": 3119
+ },
+ {
+ "epoch": 43.33551769331586,
+ "grad_norm": 0.19924484193325043,
+ "learning_rate": 0.0006,
+ "loss": 3.6168713569641113,
+ "step": 3120
+ },
+ {
+ "epoch": 43.34949759720402,
+ "grad_norm": 0.20757409930229187,
+ "learning_rate": 0.0006,
+ "loss": 3.6281509399414062,
+ "step": 3121
+ },
+ {
+ "epoch": 43.36347750109218,
+ "grad_norm": 0.22500184178352356,
+ "learning_rate": 0.0006,
+ "loss": 3.635101795196533,
+ "step": 3122
+ },
+ {
+ "epoch": 43.37745740498034,
+ "grad_norm": 0.22061555087566376,
+ "learning_rate": 0.0006,
+ "loss": 3.630622386932373,
+ "step": 3123
+ },
+ {
+ "epoch": 43.391437308868504,
+ "grad_norm": 0.2094152420759201,
+ "learning_rate": 0.0006,
+ "loss": 3.581803798675537,
+ "step": 3124
+ },
+ {
+ "epoch": 43.40541721275666,
+ "grad_norm": 0.19607678055763245,
+ "learning_rate": 0.0006,
+ "loss": 3.6149864196777344,
+ "step": 3125
+ },
+ {
+ "epoch": 43.419397116644824,
+ "grad_norm": 0.18985028564929962,
+ "learning_rate": 0.0006,
+ "loss": 3.6338040828704834,
+ "step": 3126
+ },
+ {
+ "epoch": 43.43337702053299,
+ "grad_norm": 0.20490778982639313,
+ "learning_rate": 0.0006,
+ "loss": 3.63275146484375,
+ "step": 3127
+ },
+ {
+ "epoch": 43.44735692442114,
+ "grad_norm": 0.24385297298431396,
+ "learning_rate": 0.0006,
+ "loss": 3.6412134170532227,
+ "step": 3128
+ },
+ {
+ "epoch": 43.46133682830931,
+ "grad_norm": 0.243601992726326,
+ "learning_rate": 0.0006,
+ "loss": 3.594238758087158,
+ "step": 3129
+ },
+ {
+ "epoch": 43.47531673219746,
+ "grad_norm": 0.21314913034439087,
+ "learning_rate": 0.0006,
+ "loss": 3.5962629318237305,
+ "step": 3130
+ },
+ {
+ "epoch": 43.489296636085626,
+ "grad_norm": 0.20499329268932343,
+ "learning_rate": 0.0006,
+ "loss": 3.61600923538208,
+ "step": 3131
+ },
+ {
+ "epoch": 43.50327653997379,
+ "grad_norm": 0.20199540257453918,
+ "learning_rate": 0.0006,
+ "loss": 3.638469934463501,
+ "step": 3132
+ },
+ {
+ "epoch": 43.517256443861946,
+ "grad_norm": 0.19932983815670013,
+ "learning_rate": 0.0006,
+ "loss": 3.619145393371582,
+ "step": 3133
+ },
+ {
+ "epoch": 43.53123634775011,
+ "grad_norm": 0.20401954650878906,
+ "learning_rate": 0.0006,
+ "loss": 3.643700122833252,
+ "step": 3134
+ },
+ {
+ "epoch": 43.54521625163827,
+ "grad_norm": 0.20784904062747955,
+ "learning_rate": 0.0006,
+ "loss": 3.619272232055664,
+ "step": 3135
+ },
+ {
+ "epoch": 43.55919615552643,
+ "grad_norm": 0.21003122627735138,
+ "learning_rate": 0.0006,
+ "loss": 3.629542827606201,
+ "step": 3136
+ },
+ {
+ "epoch": 43.57317605941459,
+ "grad_norm": 0.2220298945903778,
+ "learning_rate": 0.0006,
+ "loss": 3.655543804168701,
+ "step": 3137
+ },
+ {
+ "epoch": 43.58715596330275,
+ "grad_norm": 0.21159163117408752,
+ "learning_rate": 0.0006,
+ "loss": 3.6092495918273926,
+ "step": 3138
+ },
+ {
+ "epoch": 43.60113586719091,
+ "grad_norm": 0.19462746381759644,
+ "learning_rate": 0.0006,
+ "loss": 3.6447129249572754,
+ "step": 3139
+ },
+ {
+ "epoch": 43.615115771079076,
+ "grad_norm": 0.20523829758167267,
+ "learning_rate": 0.0006,
+ "loss": 3.6292669773101807,
+ "step": 3140
+ },
+ {
+ "epoch": 43.62909567496723,
+ "grad_norm": 0.2172321230173111,
+ "learning_rate": 0.0006,
+ "loss": 3.6144580841064453,
+ "step": 3141
+ },
+ {
+ "epoch": 43.643075578855395,
+ "grad_norm": 0.21751564741134644,
+ "learning_rate": 0.0006,
+ "loss": 3.6381068229675293,
+ "step": 3142
+ },
+ {
+ "epoch": 43.65705548274356,
+ "grad_norm": 0.1914236694574356,
+ "learning_rate": 0.0006,
+ "loss": 3.6392078399658203,
+ "step": 3143
+ },
+ {
+ "epoch": 43.671035386631715,
+ "grad_norm": 0.19792547821998596,
+ "learning_rate": 0.0006,
+ "loss": 3.6394457817077637,
+ "step": 3144
+ },
+ {
+ "epoch": 43.68501529051988,
+ "grad_norm": 0.2106214165687561,
+ "learning_rate": 0.0006,
+ "loss": 3.626147747039795,
+ "step": 3145
+ },
+ {
+ "epoch": 43.69899519440804,
+ "grad_norm": 0.21802955865859985,
+ "learning_rate": 0.0006,
+ "loss": 3.63372802734375,
+ "step": 3146
+ },
+ {
+ "epoch": 43.7129750982962,
+ "grad_norm": 0.21498727798461914,
+ "learning_rate": 0.0006,
+ "loss": 3.6193063259124756,
+ "step": 3147
+ },
+ {
+ "epoch": 43.72695500218436,
+ "grad_norm": 0.2176690250635147,
+ "learning_rate": 0.0006,
+ "loss": 3.6431519985198975,
+ "step": 3148
+ },
+ {
+ "epoch": 43.74093490607252,
+ "grad_norm": 0.26883506774902344,
+ "learning_rate": 0.0006,
+ "loss": 3.6216721534729004,
+ "step": 3149
+ },
+ {
+ "epoch": 43.75491480996068,
+ "grad_norm": 0.23485299944877625,
+ "learning_rate": 0.0006,
+ "loss": 3.6361191272735596,
+ "step": 3150
+ },
+ {
+ "epoch": 43.768894713848844,
+ "grad_norm": 0.20496341586112976,
+ "learning_rate": 0.0006,
+ "loss": 3.6258792877197266,
+ "step": 3151
+ },
+ {
+ "epoch": 43.782874617737,
+ "grad_norm": 0.21792510151863098,
+ "learning_rate": 0.0006,
+ "loss": 3.6522839069366455,
+ "step": 3152
+ },
+ {
+ "epoch": 43.796854521625164,
+ "grad_norm": 0.2589452564716339,
+ "learning_rate": 0.0006,
+ "loss": 3.651235580444336,
+ "step": 3153
+ },
+ {
+ "epoch": 43.81083442551333,
+ "grad_norm": 0.24883611500263214,
+ "learning_rate": 0.0006,
+ "loss": 3.6382546424865723,
+ "step": 3154
+ },
+ {
+ "epoch": 43.824814329401484,
+ "grad_norm": 0.22466720640659332,
+ "learning_rate": 0.0006,
+ "loss": 3.6232261657714844,
+ "step": 3155
+ },
+ {
+ "epoch": 43.83879423328965,
+ "grad_norm": 0.19477292895317078,
+ "learning_rate": 0.0006,
+ "loss": 3.6350135803222656,
+ "step": 3156
+ },
+ {
+ "epoch": 43.8527741371778,
+ "grad_norm": 0.20302540063858032,
+ "learning_rate": 0.0006,
+ "loss": 3.638143539428711,
+ "step": 3157
+ },
+ {
+ "epoch": 43.86675404106597,
+ "grad_norm": 0.2112276554107666,
+ "learning_rate": 0.0006,
+ "loss": 3.6415610313415527,
+ "step": 3158
+ },
+ {
+ "epoch": 43.88073394495413,
+ "grad_norm": 0.20544779300689697,
+ "learning_rate": 0.0006,
+ "loss": 3.6437134742736816,
+ "step": 3159
+ },
+ {
+ "epoch": 43.89471384884229,
+ "grad_norm": 0.2320292890071869,
+ "learning_rate": 0.0006,
+ "loss": 3.6178359985351562,
+ "step": 3160
+ },
+ {
+ "epoch": 43.90869375273045,
+ "grad_norm": 0.25862693786621094,
+ "learning_rate": 0.0006,
+ "loss": 3.618229389190674,
+ "step": 3161
+ },
+ {
+ "epoch": 43.92267365661861,
+ "grad_norm": 0.2741934061050415,
+ "learning_rate": 0.0006,
+ "loss": 3.6046690940856934,
+ "step": 3162
+ },
+ {
+ "epoch": 43.93665356050677,
+ "grad_norm": 0.24312593042850494,
+ "learning_rate": 0.0006,
+ "loss": 3.5835556983947754,
+ "step": 3163
+ },
+ {
+ "epoch": 43.95063346439493,
+ "grad_norm": 0.22174517810344696,
+ "learning_rate": 0.0006,
+ "loss": 3.6505162715911865,
+ "step": 3164
+ },
+ {
+ "epoch": 43.964613368283096,
+ "grad_norm": 0.22016975283622742,
+ "learning_rate": 0.0006,
+ "loss": 3.6385562419891357,
+ "step": 3165
+ },
+ {
+ "epoch": 43.97859327217125,
+ "grad_norm": 0.23034313321113586,
+ "learning_rate": 0.0006,
+ "loss": 3.6345865726470947,
+ "step": 3166
+ },
+ {
+ "epoch": 43.992573176059416,
+ "grad_norm": 0.21236231923103333,
+ "learning_rate": 0.0006,
+ "loss": 3.6337084770202637,
+ "step": 3167
+ },
+ {
+ "epoch": 44.0,
+ "grad_norm": 0.2344549298286438,
+ "learning_rate": 0.0006,
+ "loss": 3.677978515625,
+ "step": 3168
+ },
+ {
+ "epoch": 44.0,
+ "eval_loss": 3.9817888736724854,
+ "eval_runtime": 44.4396,
+ "eval_samples_per_second": 54.951,
+ "eval_steps_per_second": 3.443,
+ "step": 3168
+ },
+ {
+ "epoch": 44.01397990388816,
+ "grad_norm": 0.19790801405906677,
+ "learning_rate": 0.0006,
+ "loss": 3.590817451477051,
+ "step": 3169
+ },
+ {
+ "epoch": 44.02795980777632,
+ "grad_norm": 0.22922387719154358,
+ "learning_rate": 0.0006,
+ "loss": 3.643888473510742,
+ "step": 3170
+ },
+ {
+ "epoch": 44.04193971166448,
+ "grad_norm": 0.24750149250030518,
+ "learning_rate": 0.0006,
+ "loss": 3.596278667449951,
+ "step": 3171
+ },
+ {
+ "epoch": 44.05591961555265,
+ "grad_norm": 0.2511967420578003,
+ "learning_rate": 0.0006,
+ "loss": 3.6138253211975098,
+ "step": 3172
+ },
+ {
+ "epoch": 44.0698995194408,
+ "grad_norm": 0.2530326843261719,
+ "learning_rate": 0.0006,
+ "loss": 3.5710060596466064,
+ "step": 3173
+ },
+ {
+ "epoch": 44.083879423328966,
+ "grad_norm": 0.2629041373729706,
+ "learning_rate": 0.0006,
+ "loss": 3.61676025390625,
+ "step": 3174
+ },
+ {
+ "epoch": 44.09785932721712,
+ "grad_norm": 0.27373939752578735,
+ "learning_rate": 0.0006,
+ "loss": 3.613091230392456,
+ "step": 3175
+ },
+ {
+ "epoch": 44.111839231105286,
+ "grad_norm": 0.24354346096515656,
+ "learning_rate": 0.0006,
+ "loss": 3.6133360862731934,
+ "step": 3176
+ },
+ {
+ "epoch": 44.12581913499345,
+ "grad_norm": 0.21540892124176025,
+ "learning_rate": 0.0006,
+ "loss": 3.6367645263671875,
+ "step": 3177
+ },
+ {
+ "epoch": 44.139799038881605,
+ "grad_norm": 0.22251278162002563,
+ "learning_rate": 0.0006,
+ "loss": 3.6266322135925293,
+ "step": 3178
+ },
+ {
+ "epoch": 44.15377894276977,
+ "grad_norm": 0.26196029782295227,
+ "learning_rate": 0.0006,
+ "loss": 3.616487979888916,
+ "step": 3179
+ },
+ {
+ "epoch": 44.16775884665793,
+ "grad_norm": 0.2614341080188751,
+ "learning_rate": 0.0006,
+ "loss": 3.5902786254882812,
+ "step": 3180
+ },
+ {
+ "epoch": 44.18173875054609,
+ "grad_norm": 0.23517177999019623,
+ "learning_rate": 0.0006,
+ "loss": 3.610124111175537,
+ "step": 3181
+ },
+ {
+ "epoch": 44.19571865443425,
+ "grad_norm": 0.20091469585895538,
+ "learning_rate": 0.0006,
+ "loss": 3.5861713886260986,
+ "step": 3182
+ },
+ {
+ "epoch": 44.20969855832241,
+ "grad_norm": 0.19659830629825592,
+ "learning_rate": 0.0006,
+ "loss": 3.6157889366149902,
+ "step": 3183
+ },
+ {
+ "epoch": 44.22367846221057,
+ "grad_norm": 0.20690861344337463,
+ "learning_rate": 0.0006,
+ "loss": 3.5710649490356445,
+ "step": 3184
+ },
+ {
+ "epoch": 44.237658366098735,
+ "grad_norm": 0.2478247433900833,
+ "learning_rate": 0.0006,
+ "loss": 3.609031915664673,
+ "step": 3185
+ },
+ {
+ "epoch": 44.25163826998689,
+ "grad_norm": 0.2678471505641937,
+ "learning_rate": 0.0006,
+ "loss": 3.6412887573242188,
+ "step": 3186
+ },
+ {
+ "epoch": 44.265618173875055,
+ "grad_norm": 0.21856079995632172,
+ "learning_rate": 0.0006,
+ "loss": 3.6113123893737793,
+ "step": 3187
+ },
+ {
+ "epoch": 44.27959807776322,
+ "grad_norm": 0.23104850947856903,
+ "learning_rate": 0.0006,
+ "loss": 3.6022086143493652,
+ "step": 3188
+ },
+ {
+ "epoch": 44.293577981651374,
+ "grad_norm": 0.2380223423242569,
+ "learning_rate": 0.0006,
+ "loss": 3.598735809326172,
+ "step": 3189
+ },
+ {
+ "epoch": 44.30755788553954,
+ "grad_norm": 0.23005320131778717,
+ "learning_rate": 0.0006,
+ "loss": 3.595881938934326,
+ "step": 3190
+ },
+ {
+ "epoch": 44.3215377894277,
+ "grad_norm": 0.23327432572841644,
+ "learning_rate": 0.0006,
+ "loss": 3.6198601722717285,
+ "step": 3191
+ },
+ {
+ "epoch": 44.33551769331586,
+ "grad_norm": 0.2272268831729889,
+ "learning_rate": 0.0006,
+ "loss": 3.6135387420654297,
+ "step": 3192
+ },
+ {
+ "epoch": 44.34949759720402,
+ "grad_norm": 0.2518279552459717,
+ "learning_rate": 0.0006,
+ "loss": 3.6084556579589844,
+ "step": 3193
+ },
+ {
+ "epoch": 44.36347750109218,
+ "grad_norm": 0.27668607234954834,
+ "learning_rate": 0.0006,
+ "loss": 3.644430160522461,
+ "step": 3194
+ },
+ {
+ "epoch": 44.37745740498034,
+ "grad_norm": 0.26110342144966125,
+ "learning_rate": 0.0006,
+ "loss": 3.64072322845459,
+ "step": 3195
+ },
+ {
+ "epoch": 44.391437308868504,
+ "grad_norm": 0.22767964005470276,
+ "learning_rate": 0.0006,
+ "loss": 3.5570502281188965,
+ "step": 3196
+ },
+ {
+ "epoch": 44.40541721275666,
+ "grad_norm": 0.2199093997478485,
+ "learning_rate": 0.0006,
+ "loss": 3.558889150619507,
+ "step": 3197
+ },
+ {
+ "epoch": 44.419397116644824,
+ "grad_norm": 0.21653494238853455,
+ "learning_rate": 0.0006,
+ "loss": 3.6215333938598633,
+ "step": 3198
+ },
+ {
+ "epoch": 44.43337702053299,
+ "grad_norm": 0.1958773136138916,
+ "learning_rate": 0.0006,
+ "loss": 3.588468551635742,
+ "step": 3199
+ },
+ {
+ "epoch": 44.44735692442114,
+ "grad_norm": 0.20205403864383698,
+ "learning_rate": 0.0006,
+ "loss": 3.6109578609466553,
+ "step": 3200
+ },
+ {
+ "epoch": 44.46133682830931,
+ "grad_norm": 0.19632115960121155,
+ "learning_rate": 0.0006,
+ "loss": 3.634315013885498,
+ "step": 3201
+ },
+ {
+ "epoch": 44.47531673219746,
+ "grad_norm": 0.19327203929424286,
+ "learning_rate": 0.0006,
+ "loss": 3.6335930824279785,
+ "step": 3202
+ },
+ {
+ "epoch": 44.489296636085626,
+ "grad_norm": 0.19743897020816803,
+ "learning_rate": 0.0006,
+ "loss": 3.6164016723632812,
+ "step": 3203
+ },
+ {
+ "epoch": 44.50327653997379,
+ "grad_norm": 0.20413564145565033,
+ "learning_rate": 0.0006,
+ "loss": 3.663613796234131,
+ "step": 3204
+ },
+ {
+ "epoch": 44.517256443861946,
+ "grad_norm": 0.2057798206806183,
+ "learning_rate": 0.0006,
+ "loss": 3.625131130218506,
+ "step": 3205
+ },
+ {
+ "epoch": 44.53123634775011,
+ "grad_norm": 0.20076915621757507,
+ "learning_rate": 0.0006,
+ "loss": 3.6362178325653076,
+ "step": 3206
+ },
+ {
+ "epoch": 44.54521625163827,
+ "grad_norm": 0.2381955236196518,
+ "learning_rate": 0.0006,
+ "loss": 3.621263265609741,
+ "step": 3207
+ },
+ {
+ "epoch": 44.55919615552643,
+ "grad_norm": 0.27008768916130066,
+ "learning_rate": 0.0006,
+ "loss": 3.6133322715759277,
+ "step": 3208
+ },
+ {
+ "epoch": 44.57317605941459,
+ "grad_norm": 0.25677573680877686,
+ "learning_rate": 0.0006,
+ "loss": 3.6210851669311523,
+ "step": 3209
+ },
+ {
+ "epoch": 44.58715596330275,
+ "grad_norm": 0.21022997796535492,
+ "learning_rate": 0.0006,
+ "loss": 3.626483917236328,
+ "step": 3210
+ },
+ {
+ "epoch": 44.60113586719091,
+ "grad_norm": 0.19918566942214966,
+ "learning_rate": 0.0006,
+ "loss": 3.6321091651916504,
+ "step": 3211
+ },
+ {
+ "epoch": 44.615115771079076,
+ "grad_norm": 0.2114727795124054,
+ "learning_rate": 0.0006,
+ "loss": 3.5767595767974854,
+ "step": 3212
+ },
+ {
+ "epoch": 44.62909567496723,
+ "grad_norm": 0.20968441665172577,
+ "learning_rate": 0.0006,
+ "loss": 3.6040430068969727,
+ "step": 3213
+ },
+ {
+ "epoch": 44.643075578855395,
+ "grad_norm": 0.19996227324008942,
+ "learning_rate": 0.0006,
+ "loss": 3.6688590049743652,
+ "step": 3214
+ },
+ {
+ "epoch": 44.65705548274356,
+ "grad_norm": 0.19998830556869507,
+ "learning_rate": 0.0006,
+ "loss": 3.6349434852600098,
+ "step": 3215
+ },
+ {
+ "epoch": 44.671035386631715,
+ "grad_norm": 0.20812496542930603,
+ "learning_rate": 0.0006,
+ "loss": 3.6363840103149414,
+ "step": 3216
+ },
+ {
+ "epoch": 44.68501529051988,
+ "grad_norm": 0.1988825500011444,
+ "learning_rate": 0.0006,
+ "loss": 3.6180496215820312,
+ "step": 3217
+ },
+ {
+ "epoch": 44.69899519440804,
+ "grad_norm": 0.2114664614200592,
+ "learning_rate": 0.0006,
+ "loss": 3.6362106800079346,
+ "step": 3218
+ },
+ {
+ "epoch": 44.7129750982962,
+ "grad_norm": 0.19847962260246277,
+ "learning_rate": 0.0006,
+ "loss": 3.618500232696533,
+ "step": 3219
+ },
+ {
+ "epoch": 44.72695500218436,
+ "grad_norm": 0.19903887808322906,
+ "learning_rate": 0.0006,
+ "loss": 3.6360888481140137,
+ "step": 3220
+ },
+ {
+ "epoch": 44.74093490607252,
+ "grad_norm": 0.21198545396327972,
+ "learning_rate": 0.0006,
+ "loss": 3.6347005367279053,
+ "step": 3221
+ },
+ {
+ "epoch": 44.75491480996068,
+ "grad_norm": 0.18334898352622986,
+ "learning_rate": 0.0006,
+ "loss": 3.6160783767700195,
+ "step": 3222
+ },
+ {
+ "epoch": 44.768894713848844,
+ "grad_norm": 0.19260665774345398,
+ "learning_rate": 0.0006,
+ "loss": 3.6322834491729736,
+ "step": 3223
+ },
+ {
+ "epoch": 44.782874617737,
+ "grad_norm": 0.2084558755159378,
+ "learning_rate": 0.0006,
+ "loss": 3.615227699279785,
+ "step": 3224
+ },
+ {
+ "epoch": 44.796854521625164,
+ "grad_norm": 0.24538686871528625,
+ "learning_rate": 0.0006,
+ "loss": 3.6387081146240234,
+ "step": 3225
+ },
+ {
+ "epoch": 44.81083442551333,
+ "grad_norm": 0.23291894793510437,
+ "learning_rate": 0.0006,
+ "loss": 3.6245408058166504,
+ "step": 3226
+ },
+ {
+ "epoch": 44.824814329401484,
+ "grad_norm": 0.20715969800949097,
+ "learning_rate": 0.0006,
+ "loss": 3.633620262145996,
+ "step": 3227
+ },
+ {
+ "epoch": 44.83879423328965,
+ "grad_norm": 0.20866821706295013,
+ "learning_rate": 0.0006,
+ "loss": 3.613438129425049,
+ "step": 3228
+ },
+ {
+ "epoch": 44.8527741371778,
+ "grad_norm": 0.2048904299736023,
+ "learning_rate": 0.0006,
+ "loss": 3.668807029724121,
+ "step": 3229
+ },
+ {
+ "epoch": 44.86675404106597,
+ "grad_norm": 0.2073894739151001,
+ "learning_rate": 0.0006,
+ "loss": 3.6000914573669434,
+ "step": 3230
+ },
+ {
+ "epoch": 44.88073394495413,
+ "grad_norm": 0.22017404437065125,
+ "learning_rate": 0.0006,
+ "loss": 3.6024718284606934,
+ "step": 3231
+ },
+ {
+ "epoch": 44.89471384884229,
+ "grad_norm": 0.23971669375896454,
+ "learning_rate": 0.0006,
+ "loss": 3.6339516639709473,
+ "step": 3232
+ },
+ {
+ "epoch": 44.90869375273045,
+ "grad_norm": 0.2258273959159851,
+ "learning_rate": 0.0006,
+ "loss": 3.6480093002319336,
+ "step": 3233
+ },
+ {
+ "epoch": 44.92267365661861,
+ "grad_norm": 0.22079502046108246,
+ "learning_rate": 0.0006,
+ "loss": 3.643446922302246,
+ "step": 3234
+ },
+ {
+ "epoch": 44.93665356050677,
+ "grad_norm": 0.22109337151050568,
+ "learning_rate": 0.0006,
+ "loss": 3.5975499153137207,
+ "step": 3235
+ },
+ {
+ "epoch": 44.95063346439493,
+ "grad_norm": 0.20142309367656708,
+ "learning_rate": 0.0006,
+ "loss": 3.6057305335998535,
+ "step": 3236
+ },
+ {
+ "epoch": 44.964613368283096,
+ "grad_norm": 0.20089569687843323,
+ "learning_rate": 0.0006,
+ "loss": 3.5900750160217285,
+ "step": 3237
+ },
+ {
+ "epoch": 44.97859327217125,
+ "grad_norm": 0.19860075414180756,
+ "learning_rate": 0.0006,
+ "loss": 3.5954184532165527,
+ "step": 3238
+ },
+ {
+ "epoch": 44.992573176059416,
+ "grad_norm": 0.19166013598442078,
+ "learning_rate": 0.0006,
+ "loss": 3.6568803787231445,
+ "step": 3239
+ },
+ {
+ "epoch": 45.0,
+ "grad_norm": 0.22416932880878448,
+ "learning_rate": 0.0006,
+ "loss": 3.6483092308044434,
+ "step": 3240
+ },
+ {
+ "epoch": 45.0,
+ "eval_loss": 3.9821224212646484,
+ "eval_runtime": 44.5415,
+ "eval_samples_per_second": 54.825,
+ "eval_steps_per_second": 3.435,
+ "step": 3240
+ },
+ {
+ "epoch": 45.01397990388816,
+ "grad_norm": 0.2107669562101364,
+ "learning_rate": 0.0006,
+ "loss": 3.5858099460601807,
+ "step": 3241
+ },
+ {
+ "epoch": 45.02795980777632,
+ "grad_norm": 0.20831939578056335,
+ "learning_rate": 0.0006,
+ "loss": 3.5793800354003906,
+ "step": 3242
+ },
+ {
+ "epoch": 45.04193971166448,
+ "grad_norm": 0.2169167846441269,
+ "learning_rate": 0.0006,
+ "loss": 3.601961135864258,
+ "step": 3243
+ },
+ {
+ "epoch": 45.05591961555265,
+ "grad_norm": 0.22451531887054443,
+ "learning_rate": 0.0006,
+ "loss": 3.586371898651123,
+ "step": 3244
+ },
+ {
+ "epoch": 45.0698995194408,
+ "grad_norm": 0.2187003344297409,
+ "learning_rate": 0.0006,
+ "loss": 3.58760929107666,
+ "step": 3245
+ },
+ {
+ "epoch": 45.083879423328966,
+ "grad_norm": 0.22805631160736084,
+ "learning_rate": 0.0006,
+ "loss": 3.554107904434204,
+ "step": 3246
+ },
+ {
+ "epoch": 45.09785932721712,
+ "grad_norm": 0.2573186159133911,
+ "learning_rate": 0.0006,
+ "loss": 3.5815420150756836,
+ "step": 3247
+ },
+ {
+ "epoch": 45.111839231105286,
+ "grad_norm": 0.25940126180648804,
+ "learning_rate": 0.0006,
+ "loss": 3.5754308700561523,
+ "step": 3248
+ },
+ {
+ "epoch": 45.12581913499345,
+ "grad_norm": 0.23834384977817535,
+ "learning_rate": 0.0006,
+ "loss": 3.5857350826263428,
+ "step": 3249
+ },
+ {
+ "epoch": 45.139799038881605,
+ "grad_norm": 0.23342885076999664,
+ "learning_rate": 0.0006,
+ "loss": 3.6116228103637695,
+ "step": 3250
+ },
+ {
+ "epoch": 45.15377894276977,
+ "grad_norm": 0.23284269869327545,
+ "learning_rate": 0.0006,
+ "loss": 3.5778629779815674,
+ "step": 3251
+ },
+ {
+ "epoch": 45.16775884665793,
+ "grad_norm": 0.30510780215263367,
+ "learning_rate": 0.0006,
+ "loss": 3.5888915061950684,
+ "step": 3252
+ },
+ {
+ "epoch": 45.18173875054609,
+ "grad_norm": 0.3462519645690918,
+ "learning_rate": 0.0006,
+ "loss": 3.5955758094787598,
+ "step": 3253
+ },
+ {
+ "epoch": 45.19571865443425,
+ "grad_norm": 0.2795974314212799,
+ "learning_rate": 0.0006,
+ "loss": 3.6222946643829346,
+ "step": 3254
+ },
+ {
+ "epoch": 45.20969855832241,
+ "grad_norm": 0.24624103307724,
+ "learning_rate": 0.0006,
+ "loss": 3.63046932220459,
+ "step": 3255
+ },
+ {
+ "epoch": 45.22367846221057,
+ "grad_norm": 0.23007310926914215,
+ "learning_rate": 0.0006,
+ "loss": 3.652526378631592,
+ "step": 3256
+ },
+ {
+ "epoch": 45.237658366098735,
+ "grad_norm": 0.21325333416461945,
+ "learning_rate": 0.0006,
+ "loss": 3.5960049629211426,
+ "step": 3257
+ },
+ {
+ "epoch": 45.25163826998689,
+ "grad_norm": 0.22697314620018005,
+ "learning_rate": 0.0006,
+ "loss": 3.5723695755004883,
+ "step": 3258
+ },
+ {
+ "epoch": 45.265618173875055,
+ "grad_norm": 0.21900491416454315,
+ "learning_rate": 0.0006,
+ "loss": 3.613572120666504,
+ "step": 3259
+ },
+ {
+ "epoch": 45.27959807776322,
+ "grad_norm": 0.21030694246292114,
+ "learning_rate": 0.0006,
+ "loss": 3.5830235481262207,
+ "step": 3260
+ },
+ {
+ "epoch": 45.293577981651374,
+ "grad_norm": 0.20229968428611755,
+ "learning_rate": 0.0006,
+ "loss": 3.620349884033203,
+ "step": 3261
+ },
+ {
+ "epoch": 45.30755788553954,
+ "grad_norm": 0.21611201763153076,
+ "learning_rate": 0.0006,
+ "loss": 3.5937819480895996,
+ "step": 3262
+ },
+ {
+ "epoch": 45.3215377894277,
+ "grad_norm": 0.21876764297485352,
+ "learning_rate": 0.0006,
+ "loss": 3.6180777549743652,
+ "step": 3263
+ },
+ {
+ "epoch": 45.33551769331586,
+ "grad_norm": 0.200356587767601,
+ "learning_rate": 0.0006,
+ "loss": 3.6140146255493164,
+ "step": 3264
+ },
+ {
+ "epoch": 45.34949759720402,
+ "grad_norm": 0.19151835143566132,
+ "learning_rate": 0.0006,
+ "loss": 3.607077121734619,
+ "step": 3265
+ },
+ {
+ "epoch": 45.36347750109218,
+ "grad_norm": 0.1994648575782776,
+ "learning_rate": 0.0006,
+ "loss": 3.646780490875244,
+ "step": 3266
+ },
+ {
+ "epoch": 45.37745740498034,
+ "grad_norm": 0.23145829141139984,
+ "learning_rate": 0.0006,
+ "loss": 3.624591588973999,
+ "step": 3267
+ },
+ {
+ "epoch": 45.391437308868504,
+ "grad_norm": 0.23608829081058502,
+ "learning_rate": 0.0006,
+ "loss": 3.598904609680176,
+ "step": 3268
+ },
+ {
+ "epoch": 45.40541721275666,
+ "grad_norm": 0.22254547476768494,
+ "learning_rate": 0.0006,
+ "loss": 3.581087827682495,
+ "step": 3269
+ },
+ {
+ "epoch": 45.419397116644824,
+ "grad_norm": 0.21640023589134216,
+ "learning_rate": 0.0006,
+ "loss": 3.5961151123046875,
+ "step": 3270
+ },
+ {
+ "epoch": 45.43337702053299,
+ "grad_norm": 0.2252444475889206,
+ "learning_rate": 0.0006,
+ "loss": 3.590231418609619,
+ "step": 3271
+ },
+ {
+ "epoch": 45.44735692442114,
+ "grad_norm": 0.23785367608070374,
+ "learning_rate": 0.0006,
+ "loss": 3.615896701812744,
+ "step": 3272
+ },
+ {
+ "epoch": 45.46133682830931,
+ "grad_norm": 0.2509191036224365,
+ "learning_rate": 0.0006,
+ "loss": 3.6413722038269043,
+ "step": 3273
+ },
+ {
+ "epoch": 45.47531673219746,
+ "grad_norm": 0.23734210431575775,
+ "learning_rate": 0.0006,
+ "loss": 3.608898639678955,
+ "step": 3274
+ },
+ {
+ "epoch": 45.489296636085626,
+ "grad_norm": 0.19802412390708923,
+ "learning_rate": 0.0006,
+ "loss": 3.5957250595092773,
+ "step": 3275
+ },
+ {
+ "epoch": 45.50327653997379,
+ "grad_norm": 0.20621423423290253,
+ "learning_rate": 0.0006,
+ "loss": 3.607945442199707,
+ "step": 3276
+ },
+ {
+ "epoch": 45.517256443861946,
+ "grad_norm": 0.225870743393898,
+ "learning_rate": 0.0006,
+ "loss": 3.641449451446533,
+ "step": 3277
+ },
+ {
+ "epoch": 45.53123634775011,
+ "grad_norm": 0.21482397615909576,
+ "learning_rate": 0.0006,
+ "loss": 3.61629581451416,
+ "step": 3278
+ },
+ {
+ "epoch": 45.54521625163827,
+ "grad_norm": 0.21159376204013824,
+ "learning_rate": 0.0006,
+ "loss": 3.5977988243103027,
+ "step": 3279
+ },
+ {
+ "epoch": 45.55919615552643,
+ "grad_norm": 0.2031678408384323,
+ "learning_rate": 0.0006,
+ "loss": 3.629343032836914,
+ "step": 3280
+ },
+ {
+ "epoch": 45.57317605941459,
+ "grad_norm": 0.1827101707458496,
+ "learning_rate": 0.0006,
+ "loss": 3.6161365509033203,
+ "step": 3281
+ },
+ {
+ "epoch": 45.58715596330275,
+ "grad_norm": 0.21884584426879883,
+ "learning_rate": 0.0006,
+ "loss": 3.6131834983825684,
+ "step": 3282
+ },
+ {
+ "epoch": 45.60113586719091,
+ "grad_norm": 0.21764980256557465,
+ "learning_rate": 0.0006,
+ "loss": 3.612516164779663,
+ "step": 3283
+ },
+ {
+ "epoch": 45.615115771079076,
+ "grad_norm": 0.22257080674171448,
+ "learning_rate": 0.0006,
+ "loss": 3.63425874710083,
+ "step": 3284
+ },
+ {
+ "epoch": 45.62909567496723,
+ "grad_norm": 0.2419128566980362,
+ "learning_rate": 0.0006,
+ "loss": 3.602997064590454,
+ "step": 3285
+ },
+ {
+ "epoch": 45.643075578855395,
+ "grad_norm": 0.20856884121894836,
+ "learning_rate": 0.0006,
+ "loss": 3.597352981567383,
+ "step": 3286
+ },
+ {
+ "epoch": 45.65705548274356,
+ "grad_norm": 0.20298589766025543,
+ "learning_rate": 0.0006,
+ "loss": 3.5961315631866455,
+ "step": 3287
+ },
+ {
+ "epoch": 45.671035386631715,
+ "grad_norm": 0.19006133079528809,
+ "learning_rate": 0.0006,
+ "loss": 3.6314568519592285,
+ "step": 3288
+ },
+ {
+ "epoch": 45.68501529051988,
+ "grad_norm": 0.20886142551898956,
+ "learning_rate": 0.0006,
+ "loss": 3.6200413703918457,
+ "step": 3289
+ },
+ {
+ "epoch": 45.69899519440804,
+ "grad_norm": 0.18085862696170807,
+ "learning_rate": 0.0006,
+ "loss": 3.6273961067199707,
+ "step": 3290
+ },
+ {
+ "epoch": 45.7129750982962,
+ "grad_norm": 0.18651945888996124,
+ "learning_rate": 0.0006,
+ "loss": 3.6490976810455322,
+ "step": 3291
+ },
+ {
+ "epoch": 45.72695500218436,
+ "grad_norm": 0.19668170809745789,
+ "learning_rate": 0.0006,
+ "loss": 3.610409736633301,
+ "step": 3292
+ },
+ {
+ "epoch": 45.74093490607252,
+ "grad_norm": 0.19865764677524567,
+ "learning_rate": 0.0006,
+ "loss": 3.614025115966797,
+ "step": 3293
+ },
+ {
+ "epoch": 45.75491480996068,
+ "grad_norm": 0.20814085006713867,
+ "learning_rate": 0.0006,
+ "loss": 3.6220510005950928,
+ "step": 3294
+ },
+ {
+ "epoch": 45.768894713848844,
+ "grad_norm": 0.20996463298797607,
+ "learning_rate": 0.0006,
+ "loss": 3.5754218101501465,
+ "step": 3295
+ },
+ {
+ "epoch": 45.782874617737,
+ "grad_norm": 0.1987130492925644,
+ "learning_rate": 0.0006,
+ "loss": 3.614746570587158,
+ "step": 3296
+ },
+ {
+ "epoch": 45.796854521625164,
+ "grad_norm": 0.23048028349876404,
+ "learning_rate": 0.0006,
+ "loss": 3.602620840072632,
+ "step": 3297
+ },
+ {
+ "epoch": 45.81083442551333,
+ "grad_norm": 0.21877387166023254,
+ "learning_rate": 0.0006,
+ "loss": 3.6294198036193848,
+ "step": 3298
+ },
+ {
+ "epoch": 45.824814329401484,
+ "grad_norm": 0.20007763803005219,
+ "learning_rate": 0.0006,
+ "loss": 3.630868434906006,
+ "step": 3299
+ },
+ {
+ "epoch": 45.83879423328965,
+ "grad_norm": 0.200496107339859,
+ "learning_rate": 0.0006,
+ "loss": 3.5972986221313477,
+ "step": 3300
+ },
+ {
+ "epoch": 45.8527741371778,
+ "grad_norm": 0.20494480431079865,
+ "learning_rate": 0.0006,
+ "loss": 3.61934494972229,
+ "step": 3301
+ },
+ {
+ "epoch": 45.86675404106597,
+ "grad_norm": 0.21374984085559845,
+ "learning_rate": 0.0006,
+ "loss": 3.6236257553100586,
+ "step": 3302
+ },
+ {
+ "epoch": 45.88073394495413,
+ "grad_norm": 0.22020408511161804,
+ "learning_rate": 0.0006,
+ "loss": 3.6030755043029785,
+ "step": 3303
+ },
+ {
+ "epoch": 45.89471384884229,
+ "grad_norm": 0.2239987701177597,
+ "learning_rate": 0.0006,
+ "loss": 3.6778974533081055,
+ "step": 3304
+ },
+ {
+ "epoch": 45.90869375273045,
+ "grad_norm": 0.22156383097171783,
+ "learning_rate": 0.0006,
+ "loss": 3.6186561584472656,
+ "step": 3305
+ },
+ {
+ "epoch": 45.92267365661861,
+ "grad_norm": 0.2264711856842041,
+ "learning_rate": 0.0006,
+ "loss": 3.6349918842315674,
+ "step": 3306
+ },
+ {
+ "epoch": 45.93665356050677,
+ "grad_norm": 0.2287975549697876,
+ "learning_rate": 0.0006,
+ "loss": 3.600268840789795,
+ "step": 3307
+ },
+ {
+ "epoch": 45.95063346439493,
+ "grad_norm": 0.22459761798381805,
+ "learning_rate": 0.0006,
+ "loss": 3.6029114723205566,
+ "step": 3308
+ },
+ {
+ "epoch": 45.964613368283096,
+ "grad_norm": 0.2430959790945053,
+ "learning_rate": 0.0006,
+ "loss": 3.6781656742095947,
+ "step": 3309
+ },
+ {
+ "epoch": 45.97859327217125,
+ "grad_norm": 0.2718662619590759,
+ "learning_rate": 0.0006,
+ "loss": 3.606778144836426,
+ "step": 3310
+ },
+ {
+ "epoch": 45.992573176059416,
+ "grad_norm": 0.27250170707702637,
+ "learning_rate": 0.0006,
+ "loss": 3.6142611503601074,
+ "step": 3311
+ },
+ {
+ "epoch": 46.0,
+ "grad_norm": 0.26663821935653687,
+ "learning_rate": 0.0006,
+ "loss": 3.6367483139038086,
+ "step": 3312
+ },
+ {
+ "epoch": 46.0,
+ "eval_loss": 3.9835095405578613,
+ "eval_runtime": 44.6504,
+ "eval_samples_per_second": 54.692,
+ "eval_steps_per_second": 3.427,
+ "step": 3312
+ },
+ {
+ "epoch": 46.01397990388816,
+ "grad_norm": 0.22670713067054749,
+ "learning_rate": 0.0006,
+ "loss": 3.5553648471832275,
+ "step": 3313
+ },
+ {
+ "epoch": 46.02795980777632,
+ "grad_norm": 0.2759886384010315,
+ "learning_rate": 0.0006,
+ "loss": 3.595186948776245,
+ "step": 3314
+ },
+ {
+ "epoch": 46.04193971166448,
+ "grad_norm": 0.31634145975112915,
+ "learning_rate": 0.0006,
+ "loss": 3.5805907249450684,
+ "step": 3315
+ },
+ {
+ "epoch": 46.05591961555265,
+ "grad_norm": 0.3097986578941345,
+ "learning_rate": 0.0006,
+ "loss": 3.593407154083252,
+ "step": 3316
+ },
+ {
+ "epoch": 46.0698995194408,
+ "grad_norm": 0.24616138637065887,
+ "learning_rate": 0.0006,
+ "loss": 3.606736898422241,
+ "step": 3317
+ },
+ {
+ "epoch": 46.083879423328966,
+ "grad_norm": 0.22210408747196198,
+ "learning_rate": 0.0006,
+ "loss": 3.59546160697937,
+ "step": 3318
+ },
+ {
+ "epoch": 46.09785932721712,
+ "grad_norm": 0.2429778128862381,
+ "learning_rate": 0.0006,
+ "loss": 3.5900321006774902,
+ "step": 3319
+ },
+ {
+ "epoch": 46.111839231105286,
+ "grad_norm": 0.22875761985778809,
+ "learning_rate": 0.0006,
+ "loss": 3.5793521404266357,
+ "step": 3320
+ },
+ {
+ "epoch": 46.12581913499345,
+ "grad_norm": 0.21508760750293732,
+ "learning_rate": 0.0006,
+ "loss": 3.5462498664855957,
+ "step": 3321
+ },
+ {
+ "epoch": 46.139799038881605,
+ "grad_norm": 0.23590944707393646,
+ "learning_rate": 0.0006,
+ "loss": 3.6247925758361816,
+ "step": 3322
+ },
+ {
+ "epoch": 46.15377894276977,
+ "grad_norm": 0.22288036346435547,
+ "learning_rate": 0.0006,
+ "loss": 3.6063995361328125,
+ "step": 3323
+ },
+ {
+ "epoch": 46.16775884665793,
+ "grad_norm": 0.20460885763168335,
+ "learning_rate": 0.0006,
+ "loss": 3.5744826793670654,
+ "step": 3324
+ },
+ {
+ "epoch": 46.18173875054609,
+ "grad_norm": 0.20172059535980225,
+ "learning_rate": 0.0006,
+ "loss": 3.5827057361602783,
+ "step": 3325
+ },
+ {
+ "epoch": 46.19571865443425,
+ "grad_norm": 0.2268448770046234,
+ "learning_rate": 0.0006,
+ "loss": 3.5801379680633545,
+ "step": 3326
+ },
+ {
+ "epoch": 46.20969855832241,
+ "grad_norm": 0.2244444191455841,
+ "learning_rate": 0.0006,
+ "loss": 3.5790224075317383,
+ "step": 3327
+ },
+ {
+ "epoch": 46.22367846221057,
+ "grad_norm": 0.20954380929470062,
+ "learning_rate": 0.0006,
+ "loss": 3.5979342460632324,
+ "step": 3328
+ },
+ {
+ "epoch": 46.237658366098735,
+ "grad_norm": 0.21395887434482574,
+ "learning_rate": 0.0006,
+ "loss": 3.6015186309814453,
+ "step": 3329
+ },
+ {
+ "epoch": 46.25163826998689,
+ "grad_norm": 0.23200181126594543,
+ "learning_rate": 0.0006,
+ "loss": 3.5904979705810547,
+ "step": 3330
+ },
+ {
+ "epoch": 46.265618173875055,
+ "grad_norm": 0.20558731257915497,
+ "learning_rate": 0.0006,
+ "loss": 3.5745811462402344,
+ "step": 3331
+ },
+ {
+ "epoch": 46.27959807776322,
+ "grad_norm": 0.1973227560520172,
+ "learning_rate": 0.0006,
+ "loss": 3.588560104370117,
+ "step": 3332
+ },
+ {
+ "epoch": 46.293577981651374,
+ "grad_norm": 0.2137945592403412,
+ "learning_rate": 0.0006,
+ "loss": 3.606064796447754,
+ "step": 3333
+ },
+ {
+ "epoch": 46.30755788553954,
+ "grad_norm": 0.2082151472568512,
+ "learning_rate": 0.0006,
+ "loss": 3.569392442703247,
+ "step": 3334
+ },
+ {
+ "epoch": 46.3215377894277,
+ "grad_norm": 0.2151029258966446,
+ "learning_rate": 0.0006,
+ "loss": 3.6016604900360107,
+ "step": 3335
+ },
+ {
+ "epoch": 46.33551769331586,
+ "grad_norm": 0.2256474643945694,
+ "learning_rate": 0.0006,
+ "loss": 3.571319580078125,
+ "step": 3336
+ },
+ {
+ "epoch": 46.34949759720402,
+ "grad_norm": 0.21454207599163055,
+ "learning_rate": 0.0006,
+ "loss": 3.6028685569763184,
+ "step": 3337
+ },
+ {
+ "epoch": 46.36347750109218,
+ "grad_norm": 0.21864144504070282,
+ "learning_rate": 0.0006,
+ "loss": 3.6146860122680664,
+ "step": 3338
+ },
+ {
+ "epoch": 46.37745740498034,
+ "grad_norm": 0.24512453377246857,
+ "learning_rate": 0.0006,
+ "loss": 3.614696502685547,
+ "step": 3339
+ },
+ {
+ "epoch": 46.391437308868504,
+ "grad_norm": 0.26355695724487305,
+ "learning_rate": 0.0006,
+ "loss": 3.6124234199523926,
+ "step": 3340
+ },
+ {
+ "epoch": 46.40541721275666,
+ "grad_norm": 0.2778678834438324,
+ "learning_rate": 0.0006,
+ "loss": 3.6075634956359863,
+ "step": 3341
+ },
+ {
+ "epoch": 46.419397116644824,
+ "grad_norm": 0.2626822292804718,
+ "learning_rate": 0.0006,
+ "loss": 3.59267520904541,
+ "step": 3342
+ },
+ {
+ "epoch": 46.43337702053299,
+ "grad_norm": 0.2211887091398239,
+ "learning_rate": 0.0006,
+ "loss": 3.606135606765747,
+ "step": 3343
+ },
+ {
+ "epoch": 46.44735692442114,
+ "grad_norm": 0.20117639005184174,
+ "learning_rate": 0.0006,
+ "loss": 3.566512107849121,
+ "step": 3344
+ },
+ {
+ "epoch": 46.46133682830931,
+ "grad_norm": 0.20202599465847015,
+ "learning_rate": 0.0006,
+ "loss": 3.603398561477661,
+ "step": 3345
+ },
+ {
+ "epoch": 46.47531673219746,
+ "grad_norm": 0.22238481044769287,
+ "learning_rate": 0.0006,
+ "loss": 3.599888324737549,
+ "step": 3346
+ },
+ {
+ "epoch": 46.489296636085626,
+ "grad_norm": 0.23298178613185883,
+ "learning_rate": 0.0006,
+ "loss": 3.6135406494140625,
+ "step": 3347
+ },
+ {
+ "epoch": 46.50327653997379,
+ "grad_norm": 0.21998152136802673,
+ "learning_rate": 0.0006,
+ "loss": 3.6022939682006836,
+ "step": 3348
+ },
+ {
+ "epoch": 46.517256443861946,
+ "grad_norm": 0.22595210373401642,
+ "learning_rate": 0.0006,
+ "loss": 3.605905532836914,
+ "step": 3349
+ },
+ {
+ "epoch": 46.53123634775011,
+ "grad_norm": 0.23549678921699524,
+ "learning_rate": 0.0006,
+ "loss": 3.606264591217041,
+ "step": 3350
+ },
+ {
+ "epoch": 46.54521625163827,
+ "grad_norm": 0.2075573205947876,
+ "learning_rate": 0.0006,
+ "loss": 3.580575942993164,
+ "step": 3351
+ },
+ {
+ "epoch": 46.55919615552643,
+ "grad_norm": 0.19052642583847046,
+ "learning_rate": 0.0006,
+ "loss": 3.618326187133789,
+ "step": 3352
+ },
+ {
+ "epoch": 46.57317605941459,
+ "grad_norm": 0.20372900366783142,
+ "learning_rate": 0.0006,
+ "loss": 3.5817952156066895,
+ "step": 3353
+ },
+ {
+ "epoch": 46.58715596330275,
+ "grad_norm": 0.20024648308753967,
+ "learning_rate": 0.0006,
+ "loss": 3.6128273010253906,
+ "step": 3354
+ },
+ {
+ "epoch": 46.60113586719091,
+ "grad_norm": 0.20892181992530823,
+ "learning_rate": 0.0006,
+ "loss": 3.6173012256622314,
+ "step": 3355
+ },
+ {
+ "epoch": 46.615115771079076,
+ "grad_norm": 0.20254571735858917,
+ "learning_rate": 0.0006,
+ "loss": 3.5924699306488037,
+ "step": 3356
+ },
+ {
+ "epoch": 46.62909567496723,
+ "grad_norm": 0.20290599763393402,
+ "learning_rate": 0.0006,
+ "loss": 3.6134514808654785,
+ "step": 3357
+ },
+ {
+ "epoch": 46.643075578855395,
+ "grad_norm": 0.23314513266086578,
+ "learning_rate": 0.0006,
+ "loss": 3.604102611541748,
+ "step": 3358
+ },
+ {
+ "epoch": 46.65705548274356,
+ "grad_norm": 0.2352486401796341,
+ "learning_rate": 0.0006,
+ "loss": 3.6210808753967285,
+ "step": 3359
+ },
+ {
+ "epoch": 46.671035386631715,
+ "grad_norm": 0.2289503663778305,
+ "learning_rate": 0.0006,
+ "loss": 3.596968650817871,
+ "step": 3360
+ },
+ {
+ "epoch": 46.68501529051988,
+ "grad_norm": 0.19971057772636414,
+ "learning_rate": 0.0006,
+ "loss": 3.5973198413848877,
+ "step": 3361
+ },
+ {
+ "epoch": 46.69899519440804,
+ "grad_norm": 0.21000619232654572,
+ "learning_rate": 0.0006,
+ "loss": 3.607048511505127,
+ "step": 3362
+ },
+ {
+ "epoch": 46.7129750982962,
+ "grad_norm": 0.22295686602592468,
+ "learning_rate": 0.0006,
+ "loss": 3.6323728561401367,
+ "step": 3363
+ },
+ {
+ "epoch": 46.72695500218436,
+ "grad_norm": 0.21939052641391754,
+ "learning_rate": 0.0006,
+ "loss": 3.6073317527770996,
+ "step": 3364
+ },
+ {
+ "epoch": 46.74093490607252,
+ "grad_norm": 0.2192271202802658,
+ "learning_rate": 0.0006,
+ "loss": 3.6396851539611816,
+ "step": 3365
+ },
+ {
+ "epoch": 46.75491480996068,
+ "grad_norm": 0.20871607959270477,
+ "learning_rate": 0.0006,
+ "loss": 3.613509178161621,
+ "step": 3366
+ },
+ {
+ "epoch": 46.768894713848844,
+ "grad_norm": 0.1837828904390335,
+ "learning_rate": 0.0006,
+ "loss": 3.604039192199707,
+ "step": 3367
+ },
+ {
+ "epoch": 46.782874617737,
+ "grad_norm": 0.1904219537973404,
+ "learning_rate": 0.0006,
+ "loss": 3.6065895557403564,
+ "step": 3368
+ },
+ {
+ "epoch": 46.796854521625164,
+ "grad_norm": 0.19873572885990143,
+ "learning_rate": 0.0006,
+ "loss": 3.5927226543426514,
+ "step": 3369
+ },
+ {
+ "epoch": 46.81083442551333,
+ "grad_norm": 0.18319591879844666,
+ "learning_rate": 0.0006,
+ "loss": 3.6114919185638428,
+ "step": 3370
+ },
+ {
+ "epoch": 46.824814329401484,
+ "grad_norm": 0.19832435250282288,
+ "learning_rate": 0.0006,
+ "loss": 3.613637924194336,
+ "step": 3371
+ },
+ {
+ "epoch": 46.83879423328965,
+ "grad_norm": 0.21506333351135254,
+ "learning_rate": 0.0006,
+ "loss": 3.6116209030151367,
+ "step": 3372
+ },
+ {
+ "epoch": 46.8527741371778,
+ "grad_norm": 0.20374484360218048,
+ "learning_rate": 0.0006,
+ "loss": 3.5923004150390625,
+ "step": 3373
+ },
+ {
+ "epoch": 46.86675404106597,
+ "grad_norm": 0.19743360579013824,
+ "learning_rate": 0.0006,
+ "loss": 3.599381685256958,
+ "step": 3374
+ },
+ {
+ "epoch": 46.88073394495413,
+ "grad_norm": 0.20996616780757904,
+ "learning_rate": 0.0006,
+ "loss": 3.624969959259033,
+ "step": 3375
+ },
+ {
+ "epoch": 46.89471384884229,
+ "grad_norm": 0.22336791455745697,
+ "learning_rate": 0.0006,
+ "loss": 3.6152467727661133,
+ "step": 3376
+ },
+ {
+ "epoch": 46.90869375273045,
+ "grad_norm": 0.2337532341480255,
+ "learning_rate": 0.0006,
+ "loss": 3.6198863983154297,
+ "step": 3377
+ },
+ {
+ "epoch": 46.92267365661861,
+ "grad_norm": 0.23823462426662445,
+ "learning_rate": 0.0006,
+ "loss": 3.6411237716674805,
+ "step": 3378
+ },
+ {
+ "epoch": 46.93665356050677,
+ "grad_norm": 0.2521338164806366,
+ "learning_rate": 0.0006,
+ "loss": 3.621544122695923,
+ "step": 3379
+ },
+ {
+ "epoch": 46.95063346439493,
+ "grad_norm": 0.253682941198349,
+ "learning_rate": 0.0006,
+ "loss": 3.6570887565612793,
+ "step": 3380
+ },
+ {
+ "epoch": 46.964613368283096,
+ "grad_norm": 0.23392300307750702,
+ "learning_rate": 0.0006,
+ "loss": 3.669538974761963,
+ "step": 3381
+ },
+ {
+ "epoch": 46.97859327217125,
+ "grad_norm": 0.2154092937707901,
+ "learning_rate": 0.0006,
+ "loss": 3.6184825897216797,
+ "step": 3382
+ },
+ {
+ "epoch": 46.992573176059416,
+ "grad_norm": 0.1909833699464798,
+ "learning_rate": 0.0006,
+ "loss": 3.647658348083496,
+ "step": 3383
+ },
+ {
+ "epoch": 47.0,
+ "grad_norm": 0.2226407378911972,
+ "learning_rate": 0.0006,
+ "loss": 3.6413815021514893,
+ "step": 3384
+ },
+ {
+ "epoch": 47.0,
+ "eval_loss": 3.98313570022583,
+ "eval_runtime": 44.7152,
+ "eval_samples_per_second": 54.612,
+ "eval_steps_per_second": 3.422,
+ "step": 3384
+ },
+ {
+ "epoch": 47.01397990388816,
+ "grad_norm": 0.20830968022346497,
+ "learning_rate": 0.0006,
+ "loss": 3.5652623176574707,
+ "step": 3385
+ },
+ {
+ "epoch": 47.02795980777632,
+ "grad_norm": 0.18953651189804077,
+ "learning_rate": 0.0006,
+ "loss": 3.570180654525757,
+ "step": 3386
+ },
+ {
+ "epoch": 47.04193971166448,
+ "grad_norm": 0.20167700946331024,
+ "learning_rate": 0.0006,
+ "loss": 3.5623056888580322,
+ "step": 3387
+ },
+ {
+ "epoch": 47.05591961555265,
+ "grad_norm": 0.21554343402385712,
+ "learning_rate": 0.0006,
+ "loss": 3.549492835998535,
+ "step": 3388
+ },
+ {
+ "epoch": 47.0698995194408,
+ "grad_norm": 0.2232149988412857,
+ "learning_rate": 0.0006,
+ "loss": 3.584181785583496,
+ "step": 3389
+ },
+ {
+ "epoch": 47.083879423328966,
+ "grad_norm": 0.23489049077033997,
+ "learning_rate": 0.0006,
+ "loss": 3.581028461456299,
+ "step": 3390
+ },
+ {
+ "epoch": 47.09785932721712,
+ "grad_norm": 0.22486020624637604,
+ "learning_rate": 0.0006,
+ "loss": 3.600348949432373,
+ "step": 3391
+ },
+ {
+ "epoch": 47.111839231105286,
+ "grad_norm": 0.22932346165180206,
+ "learning_rate": 0.0006,
+ "loss": 3.5600457191467285,
+ "step": 3392
+ },
+ {
+ "epoch": 47.12581913499345,
+ "grad_norm": 0.2179419994354248,
+ "learning_rate": 0.0006,
+ "loss": 3.560136079788208,
+ "step": 3393
+ },
+ {
+ "epoch": 47.139799038881605,
+ "grad_norm": 0.2438054382801056,
+ "learning_rate": 0.0006,
+ "loss": 3.5955698490142822,
+ "step": 3394
+ },
+ {
+ "epoch": 47.15377894276977,
+ "grad_norm": 0.2652001976966858,
+ "learning_rate": 0.0006,
+ "loss": 3.5942912101745605,
+ "step": 3395
+ },
+ {
+ "epoch": 47.16775884665793,
+ "grad_norm": 0.270924836397171,
+ "learning_rate": 0.0006,
+ "loss": 3.5733351707458496,
+ "step": 3396
+ },
+ {
+ "epoch": 47.18173875054609,
+ "grad_norm": 0.28365132212638855,
+ "learning_rate": 0.0006,
+ "loss": 3.6042075157165527,
+ "step": 3397
+ },
+ {
+ "epoch": 47.19571865443425,
+ "grad_norm": 0.29530975222587585,
+ "learning_rate": 0.0006,
+ "loss": 3.588935375213623,
+ "step": 3398
+ },
+ {
+ "epoch": 47.20969855832241,
+ "grad_norm": 0.2658918797969818,
+ "learning_rate": 0.0006,
+ "loss": 3.5944671630859375,
+ "step": 3399
+ },
+ {
+ "epoch": 47.22367846221057,
+ "grad_norm": 0.24076500535011292,
+ "learning_rate": 0.0006,
+ "loss": 3.5853185653686523,
+ "step": 3400
+ },
+ {
+ "epoch": 47.237658366098735,
+ "grad_norm": 0.23032112419605255,
+ "learning_rate": 0.0006,
+ "loss": 3.620483875274658,
+ "step": 3401
+ },
+ {
+ "epoch": 47.25163826998689,
+ "grad_norm": 0.23124775290489197,
+ "learning_rate": 0.0006,
+ "loss": 3.6032004356384277,
+ "step": 3402
+ },
+ {
+ "epoch": 47.265618173875055,
+ "grad_norm": 0.21960225701332092,
+ "learning_rate": 0.0006,
+ "loss": 3.6079649925231934,
+ "step": 3403
+ },
+ {
+ "epoch": 47.27959807776322,
+ "grad_norm": 0.236652672290802,
+ "learning_rate": 0.0006,
+ "loss": 3.582645893096924,
+ "step": 3404
+ },
+ {
+ "epoch": 47.293577981651374,
+ "grad_norm": 0.2600267231464386,
+ "learning_rate": 0.0006,
+ "loss": 3.6067757606506348,
+ "step": 3405
+ },
+ {
+ "epoch": 47.30755788553954,
+ "grad_norm": 0.2337152659893036,
+ "learning_rate": 0.0006,
+ "loss": 3.5912275314331055,
+ "step": 3406
+ },
+ {
+ "epoch": 47.3215377894277,
+ "grad_norm": 0.21887873113155365,
+ "learning_rate": 0.0006,
+ "loss": 3.6008896827697754,
+ "step": 3407
+ },
+ {
+ "epoch": 47.33551769331586,
+ "grad_norm": 0.20265911519527435,
+ "learning_rate": 0.0006,
+ "loss": 3.5820152759552,
+ "step": 3408
+ },
+ {
+ "epoch": 47.34949759720402,
+ "grad_norm": 0.2005501389503479,
+ "learning_rate": 0.0006,
+ "loss": 3.604556083679199,
+ "step": 3409
+ },
+ {
+ "epoch": 47.36347750109218,
+ "grad_norm": 0.20682275295257568,
+ "learning_rate": 0.0006,
+ "loss": 3.584531307220459,
+ "step": 3410
+ },
+ {
+ "epoch": 47.37745740498034,
+ "grad_norm": 0.23283354938030243,
+ "learning_rate": 0.0006,
+ "loss": 3.59186053276062,
+ "step": 3411
+ },
+ {
+ "epoch": 47.391437308868504,
+ "grad_norm": 0.23033356666564941,
+ "learning_rate": 0.0006,
+ "loss": 3.5944037437438965,
+ "step": 3412
+ },
+ {
+ "epoch": 47.40541721275666,
+ "grad_norm": 0.21714402735233307,
+ "learning_rate": 0.0006,
+ "loss": 3.5834851264953613,
+ "step": 3413
+ },
+ {
+ "epoch": 47.419397116644824,
+ "grad_norm": 0.2138672024011612,
+ "learning_rate": 0.0006,
+ "loss": 3.6313700675964355,
+ "step": 3414
+ },
+ {
+ "epoch": 47.43337702053299,
+ "grad_norm": 0.23200160264968872,
+ "learning_rate": 0.0006,
+ "loss": 3.6112399101257324,
+ "step": 3415
+ },
+ {
+ "epoch": 47.44735692442114,
+ "grad_norm": 0.2632092833518982,
+ "learning_rate": 0.0006,
+ "loss": 3.6099038124084473,
+ "step": 3416
+ },
+ {
+ "epoch": 47.46133682830931,
+ "grad_norm": 0.23115520179271698,
+ "learning_rate": 0.0006,
+ "loss": 3.6060497760772705,
+ "step": 3417
+ },
+ {
+ "epoch": 47.47531673219746,
+ "grad_norm": 0.2596223056316376,
+ "learning_rate": 0.0006,
+ "loss": 3.5749685764312744,
+ "step": 3418
+ },
+ {
+ "epoch": 47.489296636085626,
+ "grad_norm": 0.27893415093421936,
+ "learning_rate": 0.0006,
+ "loss": 3.584045886993408,
+ "step": 3419
+ },
+ {
+ "epoch": 47.50327653997379,
+ "grad_norm": 0.23112469911575317,
+ "learning_rate": 0.0006,
+ "loss": 3.595407485961914,
+ "step": 3420
+ },
+ {
+ "epoch": 47.517256443861946,
+ "grad_norm": 0.23562486469745636,
+ "learning_rate": 0.0006,
+ "loss": 3.5657241344451904,
+ "step": 3421
+ },
+ {
+ "epoch": 47.53123634775011,
+ "grad_norm": 0.23366105556488037,
+ "learning_rate": 0.0006,
+ "loss": 3.624885082244873,
+ "step": 3422
+ },
+ {
+ "epoch": 47.54521625163827,
+ "grad_norm": 0.24383248388767242,
+ "learning_rate": 0.0006,
+ "loss": 3.638352394104004,
+ "step": 3423
+ },
+ {
+ "epoch": 47.55919615552643,
+ "grad_norm": 0.26388120651245117,
+ "learning_rate": 0.0006,
+ "loss": 3.614579200744629,
+ "step": 3424
+ },
+ {
+ "epoch": 47.57317605941459,
+ "grad_norm": 0.23676545917987823,
+ "learning_rate": 0.0006,
+ "loss": 3.609004259109497,
+ "step": 3425
+ },
+ {
+ "epoch": 47.58715596330275,
+ "grad_norm": 0.227967768907547,
+ "learning_rate": 0.0006,
+ "loss": 3.626171827316284,
+ "step": 3426
+ },
+ {
+ "epoch": 47.60113586719091,
+ "grad_norm": 0.23786529898643494,
+ "learning_rate": 0.0006,
+ "loss": 3.6205172538757324,
+ "step": 3427
+ },
+ {
+ "epoch": 47.615115771079076,
+ "grad_norm": 0.2599100172519684,
+ "learning_rate": 0.0006,
+ "loss": 3.6178271770477295,
+ "step": 3428
+ },
+ {
+ "epoch": 47.62909567496723,
+ "grad_norm": 0.2591858208179474,
+ "learning_rate": 0.0006,
+ "loss": 3.600297451019287,
+ "step": 3429
+ },
+ {
+ "epoch": 47.643075578855395,
+ "grad_norm": 0.2234215885400772,
+ "learning_rate": 0.0006,
+ "loss": 3.623141288757324,
+ "step": 3430
+ },
+ {
+ "epoch": 47.65705548274356,
+ "grad_norm": 0.23395098745822906,
+ "learning_rate": 0.0006,
+ "loss": 3.6243159770965576,
+ "step": 3431
+ },
+ {
+ "epoch": 47.671035386631715,
+ "grad_norm": 0.25706854462623596,
+ "learning_rate": 0.0006,
+ "loss": 3.5933618545532227,
+ "step": 3432
+ },
+ {
+ "epoch": 47.68501529051988,
+ "grad_norm": 0.22468037903308868,
+ "learning_rate": 0.0006,
+ "loss": 3.6048693656921387,
+ "step": 3433
+ },
+ {
+ "epoch": 47.69899519440804,
+ "grad_norm": 0.22432644665241241,
+ "learning_rate": 0.0006,
+ "loss": 3.604891777038574,
+ "step": 3434
+ },
+ {
+ "epoch": 47.7129750982962,
+ "grad_norm": 0.2278960943222046,
+ "learning_rate": 0.0006,
+ "loss": 3.610567092895508,
+ "step": 3435
+ },
+ {
+ "epoch": 47.72695500218436,
+ "grad_norm": 0.20652735233306885,
+ "learning_rate": 0.0006,
+ "loss": 3.60245418548584,
+ "step": 3436
+ },
+ {
+ "epoch": 47.74093490607252,
+ "grad_norm": 0.2141297310590744,
+ "learning_rate": 0.0006,
+ "loss": 3.5712027549743652,
+ "step": 3437
+ },
+ {
+ "epoch": 47.75491480996068,
+ "grad_norm": 0.23282566666603088,
+ "learning_rate": 0.0006,
+ "loss": 3.573568820953369,
+ "step": 3438
+ },
+ {
+ "epoch": 47.768894713848844,
+ "grad_norm": 0.21718674898147583,
+ "learning_rate": 0.0006,
+ "loss": 3.602047920227051,
+ "step": 3439
+ },
+ {
+ "epoch": 47.782874617737,
+ "grad_norm": 0.19592095911502838,
+ "learning_rate": 0.0006,
+ "loss": 3.6046957969665527,
+ "step": 3440
+ },
+ {
+ "epoch": 47.796854521625164,
+ "grad_norm": 0.21548260748386383,
+ "learning_rate": 0.0006,
+ "loss": 3.5808444023132324,
+ "step": 3441
+ },
+ {
+ "epoch": 47.81083442551333,
+ "grad_norm": 0.21945662796497345,
+ "learning_rate": 0.0006,
+ "loss": 3.6044554710388184,
+ "step": 3442
+ },
+ {
+ "epoch": 47.824814329401484,
+ "grad_norm": 0.20777440071105957,
+ "learning_rate": 0.0006,
+ "loss": 3.5991361141204834,
+ "step": 3443
+ },
+ {
+ "epoch": 47.83879423328965,
+ "grad_norm": 0.21566642820835114,
+ "learning_rate": 0.0006,
+ "loss": 3.6272850036621094,
+ "step": 3444
+ },
+ {
+ "epoch": 47.8527741371778,
+ "grad_norm": 0.22365771234035492,
+ "learning_rate": 0.0006,
+ "loss": 3.6323323249816895,
+ "step": 3445
+ },
+ {
+ "epoch": 47.86675404106597,
+ "grad_norm": 0.20193088054656982,
+ "learning_rate": 0.0006,
+ "loss": 3.5938191413879395,
+ "step": 3446
+ },
+ {
+ "epoch": 47.88073394495413,
+ "grad_norm": 0.20968061685562134,
+ "learning_rate": 0.0006,
+ "loss": 3.616640329360962,
+ "step": 3447
+ },
+ {
+ "epoch": 47.89471384884229,
+ "grad_norm": 0.20275580883026123,
+ "learning_rate": 0.0006,
+ "loss": 3.5769052505493164,
+ "step": 3448
+ },
+ {
+ "epoch": 47.90869375273045,
+ "grad_norm": 0.237605020403862,
+ "learning_rate": 0.0006,
+ "loss": 3.6221203804016113,
+ "step": 3449
+ },
+ {
+ "epoch": 47.92267365661861,
+ "grad_norm": 0.2820972502231598,
+ "learning_rate": 0.0006,
+ "loss": 3.5977487564086914,
+ "step": 3450
+ },
+ {
+ "epoch": 47.93665356050677,
+ "grad_norm": 0.23722891509532928,
+ "learning_rate": 0.0006,
+ "loss": 3.5963053703308105,
+ "step": 3451
+ },
+ {
+ "epoch": 47.95063346439493,
+ "grad_norm": 0.21471276879310608,
+ "learning_rate": 0.0006,
+ "loss": 3.6234917640686035,
+ "step": 3452
+ },
+ {
+ "epoch": 47.964613368283096,
+ "grad_norm": 0.2139028012752533,
+ "learning_rate": 0.0006,
+ "loss": 3.640500545501709,
+ "step": 3453
+ },
+ {
+ "epoch": 47.97859327217125,
+ "grad_norm": 0.1966913342475891,
+ "learning_rate": 0.0006,
+ "loss": 3.5856776237487793,
+ "step": 3454
+ },
+ {
+ "epoch": 47.992573176059416,
+ "grad_norm": 0.2375730276107788,
+ "learning_rate": 0.0006,
+ "loss": 3.6126937866210938,
+ "step": 3455
+ },
+ {
+ "epoch": 48.0,
+ "grad_norm": 0.2772855758666992,
+ "learning_rate": 0.0006,
+ "loss": 3.6041951179504395,
+ "step": 3456
+ },
+ {
+ "epoch": 48.0,
+ "eval_loss": 3.971400499343872,
+ "eval_runtime": 45.4792,
+ "eval_samples_per_second": 53.695,
+ "eval_steps_per_second": 3.364,
+ "step": 3456
+ },
+ {
+ "epoch": 48.01397990388816,
+ "grad_norm": 0.2269497811794281,
+ "learning_rate": 0.0006,
+ "loss": 3.525441884994507,
+ "step": 3457
+ },
+ {
+ "epoch": 48.02795980777632,
+ "grad_norm": 0.2080184519290924,
+ "learning_rate": 0.0006,
+ "loss": 3.5727145671844482,
+ "step": 3458
+ },
+ {
+ "epoch": 48.04193971166448,
+ "grad_norm": 0.21827049553394318,
+ "learning_rate": 0.0006,
+ "loss": 3.5799875259399414,
+ "step": 3459
+ },
+ {
+ "epoch": 48.05591961555265,
+ "grad_norm": 0.2173643410205841,
+ "learning_rate": 0.0006,
+ "loss": 3.587097406387329,
+ "step": 3460
+ },
+ {
+ "epoch": 48.0698995194408,
+ "grad_norm": 0.23125280439853668,
+ "learning_rate": 0.0006,
+ "loss": 3.593235969543457,
+ "step": 3461
+ },
+ {
+ "epoch": 48.083879423328966,
+ "grad_norm": 0.2235819697380066,
+ "learning_rate": 0.0006,
+ "loss": 3.5724973678588867,
+ "step": 3462
+ },
+ {
+ "epoch": 48.09785932721712,
+ "grad_norm": 0.2329849898815155,
+ "learning_rate": 0.0006,
+ "loss": 3.5689549446105957,
+ "step": 3463
+ },
+ {
+ "epoch": 48.111839231105286,
+ "grad_norm": 0.21178825199604034,
+ "learning_rate": 0.0006,
+ "loss": 3.5522305965423584,
+ "step": 3464
+ },
+ {
+ "epoch": 48.12581913499345,
+ "grad_norm": 0.22026701271533966,
+ "learning_rate": 0.0006,
+ "loss": 3.5622801780700684,
+ "step": 3465
+ },
+ {
+ "epoch": 48.139799038881605,
+ "grad_norm": 0.23427478969097137,
+ "learning_rate": 0.0006,
+ "loss": 3.6076972484588623,
+ "step": 3466
+ },
+ {
+ "epoch": 48.15377894276977,
+ "grad_norm": 0.22437651455402374,
+ "learning_rate": 0.0006,
+ "loss": 3.5898380279541016,
+ "step": 3467
+ },
+ {
+ "epoch": 48.16775884665793,
+ "grad_norm": 0.22911588847637177,
+ "learning_rate": 0.0006,
+ "loss": 3.584866523742676,
+ "step": 3468
+ },
+ {
+ "epoch": 48.18173875054609,
+ "grad_norm": 0.21358130872249603,
+ "learning_rate": 0.0006,
+ "loss": 3.581397533416748,
+ "step": 3469
+ },
+ {
+ "epoch": 48.19571865443425,
+ "grad_norm": 0.2102762758731842,
+ "learning_rate": 0.0006,
+ "loss": 3.6218419075012207,
+ "step": 3470
+ },
+ {
+ "epoch": 48.20969855832241,
+ "grad_norm": 0.22417177259922028,
+ "learning_rate": 0.0006,
+ "loss": 3.5875539779663086,
+ "step": 3471
+ },
+ {
+ "epoch": 48.22367846221057,
+ "grad_norm": 0.2096744030714035,
+ "learning_rate": 0.0006,
+ "loss": 3.6017215251922607,
+ "step": 3472
+ },
+ {
+ "epoch": 48.237658366098735,
+ "grad_norm": 0.18693844974040985,
+ "learning_rate": 0.0006,
+ "loss": 3.590221405029297,
+ "step": 3473
+ },
+ {
+ "epoch": 48.25163826998689,
+ "grad_norm": 0.21102994680404663,
+ "learning_rate": 0.0006,
+ "loss": 3.5685019493103027,
+ "step": 3474
+ },
+ {
+ "epoch": 48.265618173875055,
+ "grad_norm": 0.20756356418132782,
+ "learning_rate": 0.0006,
+ "loss": 3.577427387237549,
+ "step": 3475
+ },
+ {
+ "epoch": 48.27959807776322,
+ "grad_norm": 0.20425064861774445,
+ "learning_rate": 0.0006,
+ "loss": 3.602522134780884,
+ "step": 3476
+ },
+ {
+ "epoch": 48.293577981651374,
+ "grad_norm": 0.1976020187139511,
+ "learning_rate": 0.0006,
+ "loss": 3.5847134590148926,
+ "step": 3477
+ },
+ {
+ "epoch": 48.30755788553954,
+ "grad_norm": 0.19685129821300507,
+ "learning_rate": 0.0006,
+ "loss": 3.5638442039489746,
+ "step": 3478
+ },
+ {
+ "epoch": 48.3215377894277,
+ "grad_norm": 0.19657646119594574,
+ "learning_rate": 0.0006,
+ "loss": 3.5669779777526855,
+ "step": 3479
+ },
+ {
+ "epoch": 48.33551769331586,
+ "grad_norm": 0.19855819642543793,
+ "learning_rate": 0.0006,
+ "loss": 3.5712571144104004,
+ "step": 3480
+ },
+ {
+ "epoch": 48.34949759720402,
+ "grad_norm": 0.19961503148078918,
+ "learning_rate": 0.0006,
+ "loss": 3.5869312286376953,
+ "step": 3481
+ },
+ {
+ "epoch": 48.36347750109218,
+ "grad_norm": 0.19302639365196228,
+ "learning_rate": 0.0006,
+ "loss": 3.571394920349121,
+ "step": 3482
+ },
+ {
+ "epoch": 48.37745740498034,
+ "grad_norm": 0.1953866183757782,
+ "learning_rate": 0.0006,
+ "loss": 3.556633234024048,
+ "step": 3483
+ },
+ {
+ "epoch": 48.391437308868504,
+ "grad_norm": 0.20028206706047058,
+ "learning_rate": 0.0006,
+ "loss": 3.5559535026550293,
+ "step": 3484
+ },
+ {
+ "epoch": 48.40541721275666,
+ "grad_norm": 0.2286558896303177,
+ "learning_rate": 0.0006,
+ "loss": 3.6052510738372803,
+ "step": 3485
+ },
+ {
+ "epoch": 48.419397116644824,
+ "grad_norm": 0.21764399111270905,
+ "learning_rate": 0.0006,
+ "loss": 3.5955848693847656,
+ "step": 3486
+ },
+ {
+ "epoch": 48.43337702053299,
+ "grad_norm": 0.2257501780986786,
+ "learning_rate": 0.0006,
+ "loss": 3.586179256439209,
+ "step": 3487
+ },
+ {
+ "epoch": 48.44735692442114,
+ "grad_norm": 0.23023653030395508,
+ "learning_rate": 0.0006,
+ "loss": 3.593329906463623,
+ "step": 3488
+ },
+ {
+ "epoch": 48.46133682830931,
+ "grad_norm": 0.21283918619155884,
+ "learning_rate": 0.0006,
+ "loss": 3.5909814834594727,
+ "step": 3489
+ },
+ {
+ "epoch": 48.47531673219746,
+ "grad_norm": 0.2143639773130417,
+ "learning_rate": 0.0006,
+ "loss": 3.61320161819458,
+ "step": 3490
+ },
+ {
+ "epoch": 48.489296636085626,
+ "grad_norm": 0.2138844132423401,
+ "learning_rate": 0.0006,
+ "loss": 3.556607246398926,
+ "step": 3491
+ },
+ {
+ "epoch": 48.50327653997379,
+ "grad_norm": 0.22122617065906525,
+ "learning_rate": 0.0006,
+ "loss": 3.629208564758301,
+ "step": 3492
+ },
+ {
+ "epoch": 48.517256443861946,
+ "grad_norm": 0.22430218756198883,
+ "learning_rate": 0.0006,
+ "loss": 3.61891508102417,
+ "step": 3493
+ },
+ {
+ "epoch": 48.53123634775011,
+ "grad_norm": 0.23830844461917877,
+ "learning_rate": 0.0006,
+ "loss": 3.5818424224853516,
+ "step": 3494
+ },
+ {
+ "epoch": 48.54521625163827,
+ "grad_norm": 0.23596757650375366,
+ "learning_rate": 0.0006,
+ "loss": 3.609959602355957,
+ "step": 3495
+ },
+ {
+ "epoch": 48.55919615552643,
+ "grad_norm": 0.22046151757240295,
+ "learning_rate": 0.0006,
+ "loss": 3.585991382598877,
+ "step": 3496
+ },
+ {
+ "epoch": 48.57317605941459,
+ "grad_norm": 0.22838662564754486,
+ "learning_rate": 0.0006,
+ "loss": 3.6047747135162354,
+ "step": 3497
+ },
+ {
+ "epoch": 48.58715596330275,
+ "grad_norm": 0.22605256736278534,
+ "learning_rate": 0.0006,
+ "loss": 3.584585428237915,
+ "step": 3498
+ },
+ {
+ "epoch": 48.60113586719091,
+ "grad_norm": 0.22761467099189758,
+ "learning_rate": 0.0006,
+ "loss": 3.5680465698242188,
+ "step": 3499
+ },
+ {
+ "epoch": 48.615115771079076,
+ "grad_norm": 0.20537005364894867,
+ "learning_rate": 0.0006,
+ "loss": 3.5822806358337402,
+ "step": 3500
+ },
+ {
+ "epoch": 48.62909567496723,
+ "grad_norm": 0.21871088445186615,
+ "learning_rate": 0.0006,
+ "loss": 3.5643906593322754,
+ "step": 3501
+ },
+ {
+ "epoch": 48.643075578855395,
+ "grad_norm": 0.2291785329580307,
+ "learning_rate": 0.0006,
+ "loss": 3.6313328742980957,
+ "step": 3502
+ },
+ {
+ "epoch": 48.65705548274356,
+ "grad_norm": 0.2437039464712143,
+ "learning_rate": 0.0006,
+ "loss": 3.588334083557129,
+ "step": 3503
+ },
+ {
+ "epoch": 48.671035386631715,
+ "grad_norm": 0.23070715367794037,
+ "learning_rate": 0.0006,
+ "loss": 3.611356258392334,
+ "step": 3504
+ },
+ {
+ "epoch": 48.68501529051988,
+ "grad_norm": 0.23983895778656006,
+ "learning_rate": 0.0006,
+ "loss": 3.5953967571258545,
+ "step": 3505
+ },
+ {
+ "epoch": 48.69899519440804,
+ "grad_norm": 0.2283167690038681,
+ "learning_rate": 0.0006,
+ "loss": 3.605307102203369,
+ "step": 3506
+ },
+ {
+ "epoch": 48.7129750982962,
+ "grad_norm": 0.20861059427261353,
+ "learning_rate": 0.0006,
+ "loss": 3.598266363143921,
+ "step": 3507
+ },
+ {
+ "epoch": 48.72695500218436,
+ "grad_norm": 0.20209547877311707,
+ "learning_rate": 0.0006,
+ "loss": 3.6022191047668457,
+ "step": 3508
+ },
+ {
+ "epoch": 48.74093490607252,
+ "grad_norm": 0.19089370965957642,
+ "learning_rate": 0.0006,
+ "loss": 3.628640651702881,
+ "step": 3509
+ },
+ {
+ "epoch": 48.75491480996068,
+ "grad_norm": 0.18544727563858032,
+ "learning_rate": 0.0006,
+ "loss": 3.6204819679260254,
+ "step": 3510
+ },
+ {
+ "epoch": 48.768894713848844,
+ "grad_norm": 0.18295186758041382,
+ "learning_rate": 0.0006,
+ "loss": 3.5899410247802734,
+ "step": 3511
+ },
+ {
+ "epoch": 48.782874617737,
+ "grad_norm": 0.1953844279050827,
+ "learning_rate": 0.0006,
+ "loss": 3.581699848175049,
+ "step": 3512
+ },
+ {
+ "epoch": 48.796854521625164,
+ "grad_norm": 0.195505291223526,
+ "learning_rate": 0.0006,
+ "loss": 3.6046862602233887,
+ "step": 3513
+ },
+ {
+ "epoch": 48.81083442551333,
+ "grad_norm": 0.19805945456027985,
+ "learning_rate": 0.0006,
+ "loss": 3.609510898590088,
+ "step": 3514
+ },
+ {
+ "epoch": 48.824814329401484,
+ "grad_norm": 0.18694287538528442,
+ "learning_rate": 0.0006,
+ "loss": 3.580693483352661,
+ "step": 3515
+ },
+ {
+ "epoch": 48.83879423328965,
+ "grad_norm": 0.19227269291877747,
+ "learning_rate": 0.0006,
+ "loss": 3.6174416542053223,
+ "step": 3516
+ },
+ {
+ "epoch": 48.8527741371778,
+ "grad_norm": 0.1966937631368637,
+ "learning_rate": 0.0006,
+ "loss": 3.616194248199463,
+ "step": 3517
+ },
+ {
+ "epoch": 48.86675404106597,
+ "grad_norm": 0.20755162835121155,
+ "learning_rate": 0.0006,
+ "loss": 3.594695568084717,
+ "step": 3518
+ },
+ {
+ "epoch": 48.88073394495413,
+ "grad_norm": 0.2012479156255722,
+ "learning_rate": 0.0006,
+ "loss": 3.6069273948669434,
+ "step": 3519
+ },
+ {
+ "epoch": 48.89471384884229,
+ "grad_norm": 0.19260065257549286,
+ "learning_rate": 0.0006,
+ "loss": 3.573819160461426,
+ "step": 3520
+ },
+ {
+ "epoch": 48.90869375273045,
+ "grad_norm": 0.19911104440689087,
+ "learning_rate": 0.0006,
+ "loss": 3.632185459136963,
+ "step": 3521
+ },
+ {
+ "epoch": 48.92267365661861,
+ "grad_norm": 0.22266048192977905,
+ "learning_rate": 0.0006,
+ "loss": 3.607295513153076,
+ "step": 3522
+ },
+ {
+ "epoch": 48.93665356050677,
+ "grad_norm": 0.2542882561683655,
+ "learning_rate": 0.0006,
+ "loss": 3.6014773845672607,
+ "step": 3523
+ },
+ {
+ "epoch": 48.95063346439493,
+ "grad_norm": 0.2878575026988983,
+ "learning_rate": 0.0006,
+ "loss": 3.5825531482696533,
+ "step": 3524
+ },
+ {
+ "epoch": 48.964613368283096,
+ "grad_norm": 0.3157055675983429,
+ "learning_rate": 0.0006,
+ "loss": 3.5986037254333496,
+ "step": 3525
+ },
+ {
+ "epoch": 48.97859327217125,
+ "grad_norm": 0.2815262973308563,
+ "learning_rate": 0.0006,
+ "loss": 3.6099600791931152,
+ "step": 3526
+ },
+ {
+ "epoch": 48.992573176059416,
+ "grad_norm": 0.22102823853492737,
+ "learning_rate": 0.0006,
+ "loss": 3.5859827995300293,
+ "step": 3527
+ },
+ {
+ "epoch": 49.0,
+ "grad_norm": 0.24937094748020172,
+ "learning_rate": 0.0006,
+ "loss": 3.622842311859131,
+ "step": 3528
+ },
+ {
+ "epoch": 49.0,
+ "eval_loss": 3.977067232131958,
+ "eval_runtime": 45.5503,
+ "eval_samples_per_second": 53.611,
+ "eval_steps_per_second": 3.359,
+ "step": 3528
+ },
+ {
+ "epoch": 49.01397990388816,
+ "grad_norm": 0.25072216987609863,
+ "learning_rate": 0.0006,
+ "loss": 3.590653419494629,
+ "step": 3529
+ },
+ {
+ "epoch": 49.02795980777632,
+ "grad_norm": 0.2611052989959717,
+ "learning_rate": 0.0006,
+ "loss": 3.5504279136657715,
+ "step": 3530
+ },
+ {
+ "epoch": 49.04193971166448,
+ "grad_norm": 0.2547961473464966,
+ "learning_rate": 0.0006,
+ "loss": 3.5797581672668457,
+ "step": 3531
+ },
+ {
+ "epoch": 49.05591961555265,
+ "grad_norm": 0.25674310326576233,
+ "learning_rate": 0.0006,
+ "loss": 3.557278871536255,
+ "step": 3532
+ },
+ {
+ "epoch": 49.0698995194408,
+ "grad_norm": 0.25511929392814636,
+ "learning_rate": 0.0006,
+ "loss": 3.5788025856018066,
+ "step": 3533
+ },
+ {
+ "epoch": 49.083879423328966,
+ "grad_norm": 0.22920994460582733,
+ "learning_rate": 0.0006,
+ "loss": 3.580489158630371,
+ "step": 3534
+ },
+ {
+ "epoch": 49.09785932721712,
+ "grad_norm": 0.23436492681503296,
+ "learning_rate": 0.0006,
+ "loss": 3.5603699684143066,
+ "step": 3535
+ },
+ {
+ "epoch": 49.111839231105286,
+ "grad_norm": 0.2542382776737213,
+ "learning_rate": 0.0006,
+ "loss": 3.5937037467956543,
+ "step": 3536
+ },
+ {
+ "epoch": 49.12581913499345,
+ "grad_norm": 0.26718273758888245,
+ "learning_rate": 0.0006,
+ "loss": 3.6032168865203857,
+ "step": 3537
+ },
+ {
+ "epoch": 49.139799038881605,
+ "grad_norm": 0.2406773865222931,
+ "learning_rate": 0.0006,
+ "loss": 3.5737085342407227,
+ "step": 3538
+ },
+ {
+ "epoch": 49.15377894276977,
+ "grad_norm": 0.23408754169940948,
+ "learning_rate": 0.0006,
+ "loss": 3.592543601989746,
+ "step": 3539
+ },
+ {
+ "epoch": 49.16775884665793,
+ "grad_norm": 0.22974351048469543,
+ "learning_rate": 0.0006,
+ "loss": 3.543618679046631,
+ "step": 3540
+ },
+ {
+ "epoch": 49.18173875054609,
+ "grad_norm": 0.23479530215263367,
+ "learning_rate": 0.0006,
+ "loss": 3.547590732574463,
+ "step": 3541
+ },
+ {
+ "epoch": 49.19571865443425,
+ "grad_norm": 0.2100638598203659,
+ "learning_rate": 0.0006,
+ "loss": 3.6027469635009766,
+ "step": 3542
+ },
+ {
+ "epoch": 49.20969855832241,
+ "grad_norm": 0.20239035785198212,
+ "learning_rate": 0.0006,
+ "loss": 3.598567008972168,
+ "step": 3543
+ },
+ {
+ "epoch": 49.22367846221057,
+ "grad_norm": 0.20480065047740936,
+ "learning_rate": 0.0006,
+ "loss": 3.591038227081299,
+ "step": 3544
+ },
+ {
+ "epoch": 49.237658366098735,
+ "grad_norm": 0.20439887046813965,
+ "learning_rate": 0.0006,
+ "loss": 3.555039405822754,
+ "step": 3545
+ },
+ {
+ "epoch": 49.25163826998689,
+ "grad_norm": 0.21245788037776947,
+ "learning_rate": 0.0006,
+ "loss": 3.5772666931152344,
+ "step": 3546
+ },
+ {
+ "epoch": 49.265618173875055,
+ "grad_norm": 0.1993357390165329,
+ "learning_rate": 0.0006,
+ "loss": 3.5847411155700684,
+ "step": 3547
+ },
+ {
+ "epoch": 49.27959807776322,
+ "grad_norm": 0.22550229728221893,
+ "learning_rate": 0.0006,
+ "loss": 3.5679750442504883,
+ "step": 3548
+ },
+ {
+ "epoch": 49.293577981651374,
+ "grad_norm": 0.2383355349302292,
+ "learning_rate": 0.0006,
+ "loss": 3.57085919380188,
+ "step": 3549
+ },
+ {
+ "epoch": 49.30755788553954,
+ "grad_norm": 0.23968911170959473,
+ "learning_rate": 0.0006,
+ "loss": 3.557415246963501,
+ "step": 3550
+ },
+ {
+ "epoch": 49.3215377894277,
+ "grad_norm": 0.21453262865543365,
+ "learning_rate": 0.0006,
+ "loss": 3.5763611793518066,
+ "step": 3551
+ },
+ {
+ "epoch": 49.33551769331586,
+ "grad_norm": 0.20380273461341858,
+ "learning_rate": 0.0006,
+ "loss": 3.552011013031006,
+ "step": 3552
+ },
+ {
+ "epoch": 49.34949759720402,
+ "grad_norm": 0.19719970226287842,
+ "learning_rate": 0.0006,
+ "loss": 3.5719075202941895,
+ "step": 3553
+ },
+ {
+ "epoch": 49.36347750109218,
+ "grad_norm": 0.19018089771270752,
+ "learning_rate": 0.0006,
+ "loss": 3.5843467712402344,
+ "step": 3554
+ },
+ {
+ "epoch": 49.37745740498034,
+ "grad_norm": 0.18369099497795105,
+ "learning_rate": 0.0006,
+ "loss": 3.561741352081299,
+ "step": 3555
+ },
+ {
+ "epoch": 49.391437308868504,
+ "grad_norm": 0.2070280760526657,
+ "learning_rate": 0.0006,
+ "loss": 3.590721607208252,
+ "step": 3556
+ },
+ {
+ "epoch": 49.40541721275666,
+ "grad_norm": 0.23287905752658844,
+ "learning_rate": 0.0006,
+ "loss": 3.617081642150879,
+ "step": 3557
+ },
+ {
+ "epoch": 49.419397116644824,
+ "grad_norm": 0.21877793967723846,
+ "learning_rate": 0.0006,
+ "loss": 3.547166347503662,
+ "step": 3558
+ },
+ {
+ "epoch": 49.43337702053299,
+ "grad_norm": 0.21105137467384338,
+ "learning_rate": 0.0006,
+ "loss": 3.593552350997925,
+ "step": 3559
+ },
+ {
+ "epoch": 49.44735692442114,
+ "grad_norm": 0.24940872192382812,
+ "learning_rate": 0.0006,
+ "loss": 3.599729537963867,
+ "step": 3560
+ },
+ {
+ "epoch": 49.46133682830931,
+ "grad_norm": 0.26952996850013733,
+ "learning_rate": 0.0006,
+ "loss": 3.5915074348449707,
+ "step": 3561
+ },
+ {
+ "epoch": 49.47531673219746,
+ "grad_norm": 0.25706353783607483,
+ "learning_rate": 0.0006,
+ "loss": 3.587472915649414,
+ "step": 3562
+ },
+ {
+ "epoch": 49.489296636085626,
+ "grad_norm": 0.23666661977767944,
+ "learning_rate": 0.0006,
+ "loss": 3.561340808868408,
+ "step": 3563
+ },
+ {
+ "epoch": 49.50327653997379,
+ "grad_norm": 0.22524063289165497,
+ "learning_rate": 0.0006,
+ "loss": 3.587310314178467,
+ "step": 3564
+ },
+ {
+ "epoch": 49.517256443861946,
+ "grad_norm": 0.22991003096103668,
+ "learning_rate": 0.0006,
+ "loss": 3.56671142578125,
+ "step": 3565
+ },
+ {
+ "epoch": 49.53123634775011,
+ "grad_norm": 0.23067602515220642,
+ "learning_rate": 0.0006,
+ "loss": 3.578601837158203,
+ "step": 3566
+ },
+ {
+ "epoch": 49.54521625163827,
+ "grad_norm": 0.2133914828300476,
+ "learning_rate": 0.0006,
+ "loss": 3.593726873397827,
+ "step": 3567
+ },
+ {
+ "epoch": 49.55919615552643,
+ "grad_norm": 0.21879160404205322,
+ "learning_rate": 0.0006,
+ "loss": 3.5833992958068848,
+ "step": 3568
+ },
+ {
+ "epoch": 49.57317605941459,
+ "grad_norm": 0.2116270661354065,
+ "learning_rate": 0.0006,
+ "loss": 3.575761079788208,
+ "step": 3569
+ },
+ {
+ "epoch": 49.58715596330275,
+ "grad_norm": 0.19506660103797913,
+ "learning_rate": 0.0006,
+ "loss": 3.5600461959838867,
+ "step": 3570
+ },
+ {
+ "epoch": 49.60113586719091,
+ "grad_norm": 0.21305067837238312,
+ "learning_rate": 0.0006,
+ "loss": 3.5717577934265137,
+ "step": 3571
+ },
+ {
+ "epoch": 49.615115771079076,
+ "grad_norm": 0.21184347569942474,
+ "learning_rate": 0.0006,
+ "loss": 3.608819007873535,
+ "step": 3572
+ },
+ {
+ "epoch": 49.62909567496723,
+ "grad_norm": 0.22302201390266418,
+ "learning_rate": 0.0006,
+ "loss": 3.5871644020080566,
+ "step": 3573
+ },
+ {
+ "epoch": 49.643075578855395,
+ "grad_norm": 0.21942365169525146,
+ "learning_rate": 0.0006,
+ "loss": 3.596029043197632,
+ "step": 3574
+ },
+ {
+ "epoch": 49.65705548274356,
+ "grad_norm": 0.2627110481262207,
+ "learning_rate": 0.0006,
+ "loss": 3.5900766849517822,
+ "step": 3575
+ },
+ {
+ "epoch": 49.671035386631715,
+ "grad_norm": 0.28253448009490967,
+ "learning_rate": 0.0006,
+ "loss": 3.599386215209961,
+ "step": 3576
+ },
+ {
+ "epoch": 49.68501529051988,
+ "grad_norm": 0.24279426038265228,
+ "learning_rate": 0.0006,
+ "loss": 3.580909013748169,
+ "step": 3577
+ },
+ {
+ "epoch": 49.69899519440804,
+ "grad_norm": 0.22092898190021515,
+ "learning_rate": 0.0006,
+ "loss": 3.6043782234191895,
+ "step": 3578
+ },
+ {
+ "epoch": 49.7129750982962,
+ "grad_norm": 0.23356051743030548,
+ "learning_rate": 0.0006,
+ "loss": 3.6103105545043945,
+ "step": 3579
+ },
+ {
+ "epoch": 49.72695500218436,
+ "grad_norm": 0.24508118629455566,
+ "learning_rate": 0.0006,
+ "loss": 3.612980365753174,
+ "step": 3580
+ },
+ {
+ "epoch": 49.74093490607252,
+ "grad_norm": 0.2501833438873291,
+ "learning_rate": 0.0006,
+ "loss": 3.6111063957214355,
+ "step": 3581
+ },
+ {
+ "epoch": 49.75491480996068,
+ "grad_norm": 0.2263427972793579,
+ "learning_rate": 0.0006,
+ "loss": 3.5709285736083984,
+ "step": 3582
+ },
+ {
+ "epoch": 49.768894713848844,
+ "grad_norm": 0.19881728291511536,
+ "learning_rate": 0.0006,
+ "loss": 3.5836503505706787,
+ "step": 3583
+ },
+ {
+ "epoch": 49.782874617737,
+ "grad_norm": 0.22516517341136932,
+ "learning_rate": 0.0006,
+ "loss": 3.5797667503356934,
+ "step": 3584
+ },
+ {
+ "epoch": 49.796854521625164,
+ "grad_norm": 0.22347061336040497,
+ "learning_rate": 0.0006,
+ "loss": 3.6245951652526855,
+ "step": 3585
+ },
+ {
+ "epoch": 49.81083442551333,
+ "grad_norm": 0.2062593549489975,
+ "learning_rate": 0.0006,
+ "loss": 3.607572317123413,
+ "step": 3586
+ },
+ {
+ "epoch": 49.824814329401484,
+ "grad_norm": 0.20671074092388153,
+ "learning_rate": 0.0006,
+ "loss": 3.5671472549438477,
+ "step": 3587
+ },
+ {
+ "epoch": 49.83879423328965,
+ "grad_norm": 0.19981902837753296,
+ "learning_rate": 0.0006,
+ "loss": 3.6084837913513184,
+ "step": 3588
+ },
+ {
+ "epoch": 49.8527741371778,
+ "grad_norm": 0.2004556804895401,
+ "learning_rate": 0.0006,
+ "loss": 3.631455898284912,
+ "step": 3589
+ },
+ {
+ "epoch": 49.86675404106597,
+ "grad_norm": 0.20990414917469025,
+ "learning_rate": 0.0006,
+ "loss": 3.6017699241638184,
+ "step": 3590
+ },
+ {
+ "epoch": 49.88073394495413,
+ "grad_norm": 0.19016146659851074,
+ "learning_rate": 0.0006,
+ "loss": 3.6110801696777344,
+ "step": 3591
+ },
+ {
+ "epoch": 49.89471384884229,
+ "grad_norm": 0.2015834003686905,
+ "learning_rate": 0.0006,
+ "loss": 3.58852481842041,
+ "step": 3592
+ },
+ {
+ "epoch": 49.90869375273045,
+ "grad_norm": 0.205678328871727,
+ "learning_rate": 0.0006,
+ "loss": 3.581789970397949,
+ "step": 3593
+ },
+ {
+ "epoch": 49.92267365661861,
+ "grad_norm": 0.20975211262702942,
+ "learning_rate": 0.0006,
+ "loss": 3.6126320362091064,
+ "step": 3594
+ },
+ {
+ "epoch": 49.93665356050677,
+ "grad_norm": 0.20510081946849823,
+ "learning_rate": 0.0006,
+ "loss": 3.5970656871795654,
+ "step": 3595
+ },
+ {
+ "epoch": 49.95063346439493,
+ "grad_norm": 0.19842886924743652,
+ "learning_rate": 0.0006,
+ "loss": 3.6055545806884766,
+ "step": 3596
+ },
+ {
+ "epoch": 49.964613368283096,
+ "grad_norm": 0.20551791787147522,
+ "learning_rate": 0.0006,
+ "loss": 3.5861949920654297,
+ "step": 3597
+ },
+ {
+ "epoch": 49.97859327217125,
+ "grad_norm": 0.21147456765174866,
+ "learning_rate": 0.0006,
+ "loss": 3.585934638977051,
+ "step": 3598
+ },
+ {
+ "epoch": 49.992573176059416,
+ "grad_norm": 0.21793442964553833,
+ "learning_rate": 0.0006,
+ "loss": 3.5956411361694336,
+ "step": 3599
+ },
+ {
+ "epoch": 50.0,
+ "grad_norm": 0.24623161554336548,
+ "learning_rate": 0.0006,
+ "loss": 3.623453140258789,
+ "step": 3600
+ },
+ {
+ "epoch": 50.0,
+ "eval_loss": 3.9807891845703125,
+ "eval_runtime": 45.7708,
+ "eval_samples_per_second": 53.353,
+ "eval_steps_per_second": 3.343,
+ "step": 3600
+ },
+ {
+ "epoch": 50.01397990388816,
+ "grad_norm": 0.22322626411914825,
+ "learning_rate": 0.0006,
+ "loss": 3.5475401878356934,
+ "step": 3601
+ },
+ {
+ "epoch": 50.02795980777632,
+ "grad_norm": 0.21957066655158997,
+ "learning_rate": 0.0006,
+ "loss": 3.5616683959960938,
+ "step": 3602
+ },
+ {
+ "epoch": 50.04193971166448,
+ "grad_norm": 0.22030551731586456,
+ "learning_rate": 0.0006,
+ "loss": 3.56367826461792,
+ "step": 3603
+ },
+ {
+ "epoch": 50.05591961555265,
+ "grad_norm": 0.21536092460155487,
+ "learning_rate": 0.0006,
+ "loss": 3.5613503456115723,
+ "step": 3604
+ },
+ {
+ "epoch": 50.0698995194408,
+ "grad_norm": 0.22454269230365753,
+ "learning_rate": 0.0006,
+ "loss": 3.5348987579345703,
+ "step": 3605
+ },
+ {
+ "epoch": 50.083879423328966,
+ "grad_norm": 0.2281617820262909,
+ "learning_rate": 0.0006,
+ "loss": 3.5722241401672363,
+ "step": 3606
+ },
+ {
+ "epoch": 50.09785932721712,
+ "grad_norm": 0.23318710923194885,
+ "learning_rate": 0.0006,
+ "loss": 3.559063673019409,
+ "step": 3607
+ },
+ {
+ "epoch": 50.111839231105286,
+ "grad_norm": 0.2277889847755432,
+ "learning_rate": 0.0006,
+ "loss": 3.5632925033569336,
+ "step": 3608
+ },
+ {
+ "epoch": 50.12581913499345,
+ "grad_norm": 0.2317705601453781,
+ "learning_rate": 0.0006,
+ "loss": 3.5835886001586914,
+ "step": 3609
+ },
+ {
+ "epoch": 50.139799038881605,
+ "grad_norm": 0.21388863027095795,
+ "learning_rate": 0.0006,
+ "loss": 3.5976145267486572,
+ "step": 3610
+ },
+ {
+ "epoch": 50.15377894276977,
+ "grad_norm": 0.2070954293012619,
+ "learning_rate": 0.0006,
+ "loss": 3.5486221313476562,
+ "step": 3611
+ },
+ {
+ "epoch": 50.16775884665793,
+ "grad_norm": 0.21602077782154083,
+ "learning_rate": 0.0006,
+ "loss": 3.5897607803344727,
+ "step": 3612
+ },
+ {
+ "epoch": 50.18173875054609,
+ "grad_norm": 0.21106162667274475,
+ "learning_rate": 0.0006,
+ "loss": 3.5587167739868164,
+ "step": 3613
+ },
+ {
+ "epoch": 50.19571865443425,
+ "grad_norm": 0.2047950178384781,
+ "learning_rate": 0.0006,
+ "loss": 3.576798915863037,
+ "step": 3614
+ },
+ {
+ "epoch": 50.20969855832241,
+ "grad_norm": 0.2204097956418991,
+ "learning_rate": 0.0006,
+ "loss": 3.5466837882995605,
+ "step": 3615
+ },
+ {
+ "epoch": 50.22367846221057,
+ "grad_norm": 0.2220875471830368,
+ "learning_rate": 0.0006,
+ "loss": 3.5722036361694336,
+ "step": 3616
+ },
+ {
+ "epoch": 50.237658366098735,
+ "grad_norm": 0.2250797003507614,
+ "learning_rate": 0.0006,
+ "loss": 3.566347122192383,
+ "step": 3617
+ },
+ {
+ "epoch": 50.25163826998689,
+ "grad_norm": 0.22837485373020172,
+ "learning_rate": 0.0006,
+ "loss": 3.5673274993896484,
+ "step": 3618
+ },
+ {
+ "epoch": 50.265618173875055,
+ "grad_norm": 0.2281104475259781,
+ "learning_rate": 0.0006,
+ "loss": 3.5543737411499023,
+ "step": 3619
+ },
+ {
+ "epoch": 50.27959807776322,
+ "grad_norm": 0.2052381932735443,
+ "learning_rate": 0.0006,
+ "loss": 3.566401958465576,
+ "step": 3620
+ },
+ {
+ "epoch": 50.293577981651374,
+ "grad_norm": 0.2125921994447708,
+ "learning_rate": 0.0006,
+ "loss": 3.5467424392700195,
+ "step": 3621
+ },
+ {
+ "epoch": 50.30755788553954,
+ "grad_norm": 0.22641244530677795,
+ "learning_rate": 0.0006,
+ "loss": 3.548497200012207,
+ "step": 3622
+ },
+ {
+ "epoch": 50.3215377894277,
+ "grad_norm": 0.23039482533931732,
+ "learning_rate": 0.0006,
+ "loss": 3.5948381423950195,
+ "step": 3623
+ },
+ {
+ "epoch": 50.33551769331586,
+ "grad_norm": 0.22753404080867767,
+ "learning_rate": 0.0006,
+ "loss": 3.541825532913208,
+ "step": 3624
+ },
+ {
+ "epoch": 50.34949759720402,
+ "grad_norm": 0.2528170347213745,
+ "learning_rate": 0.0006,
+ "loss": 3.5937235355377197,
+ "step": 3625
+ },
+ {
+ "epoch": 50.36347750109218,
+ "grad_norm": 0.25434595346450806,
+ "learning_rate": 0.0006,
+ "loss": 3.5779776573181152,
+ "step": 3626
+ },
+ {
+ "epoch": 50.37745740498034,
+ "grad_norm": 0.22519059479236603,
+ "learning_rate": 0.0006,
+ "loss": 3.5456271171569824,
+ "step": 3627
+ },
+ {
+ "epoch": 50.391437308868504,
+ "grad_norm": 0.2077232301235199,
+ "learning_rate": 0.0006,
+ "loss": 3.5693111419677734,
+ "step": 3628
+ },
+ {
+ "epoch": 50.40541721275666,
+ "grad_norm": 0.20925411581993103,
+ "learning_rate": 0.0006,
+ "loss": 3.6063997745513916,
+ "step": 3629
+ },
+ {
+ "epoch": 50.419397116644824,
+ "grad_norm": 0.2114555686712265,
+ "learning_rate": 0.0006,
+ "loss": 3.5676894187927246,
+ "step": 3630
+ },
+ {
+ "epoch": 50.43337702053299,
+ "grad_norm": 0.23759354650974274,
+ "learning_rate": 0.0006,
+ "loss": 3.5465126037597656,
+ "step": 3631
+ },
+ {
+ "epoch": 50.44735692442114,
+ "grad_norm": 0.23809516429901123,
+ "learning_rate": 0.0006,
+ "loss": 3.571600914001465,
+ "step": 3632
+ },
+ {
+ "epoch": 50.46133682830931,
+ "grad_norm": 0.20501303672790527,
+ "learning_rate": 0.0006,
+ "loss": 3.573550224304199,
+ "step": 3633
+ },
+ {
+ "epoch": 50.47531673219746,
+ "grad_norm": 0.21562306582927704,
+ "learning_rate": 0.0006,
+ "loss": 3.5625600814819336,
+ "step": 3634
+ },
+ {
+ "epoch": 50.489296636085626,
+ "grad_norm": 0.20469479262828827,
+ "learning_rate": 0.0006,
+ "loss": 3.5737175941467285,
+ "step": 3635
+ },
+ {
+ "epoch": 50.50327653997379,
+ "grad_norm": 0.2078634798526764,
+ "learning_rate": 0.0006,
+ "loss": 3.5691545009613037,
+ "step": 3636
+ },
+ {
+ "epoch": 50.517256443861946,
+ "grad_norm": 0.20340897142887115,
+ "learning_rate": 0.0006,
+ "loss": 3.583918571472168,
+ "step": 3637
+ },
+ {
+ "epoch": 50.53123634775011,
+ "grad_norm": 0.2006944715976715,
+ "learning_rate": 0.0006,
+ "loss": 3.596034049987793,
+ "step": 3638
+ },
+ {
+ "epoch": 50.54521625163827,
+ "grad_norm": 0.19281257688999176,
+ "learning_rate": 0.0006,
+ "loss": 3.5993080139160156,
+ "step": 3639
+ },
+ {
+ "epoch": 50.55919615552643,
+ "grad_norm": 0.19528807699680328,
+ "learning_rate": 0.0006,
+ "loss": 3.6108102798461914,
+ "step": 3640
+ },
+ {
+ "epoch": 50.57317605941459,
+ "grad_norm": 0.19329112768173218,
+ "learning_rate": 0.0006,
+ "loss": 3.5964512825012207,
+ "step": 3641
+ },
+ {
+ "epoch": 50.58715596330275,
+ "grad_norm": 0.1928209513425827,
+ "learning_rate": 0.0006,
+ "loss": 3.5927724838256836,
+ "step": 3642
+ },
+ {
+ "epoch": 50.60113586719091,
+ "grad_norm": 0.20212236046791077,
+ "learning_rate": 0.0006,
+ "loss": 3.5778708457946777,
+ "step": 3643
+ },
+ {
+ "epoch": 50.615115771079076,
+ "grad_norm": 0.22244620323181152,
+ "learning_rate": 0.0006,
+ "loss": 3.6219539642333984,
+ "step": 3644
+ },
+ {
+ "epoch": 50.62909567496723,
+ "grad_norm": 0.2659119963645935,
+ "learning_rate": 0.0006,
+ "loss": 3.578831195831299,
+ "step": 3645
+ },
+ {
+ "epoch": 50.643075578855395,
+ "grad_norm": 0.2837344706058502,
+ "learning_rate": 0.0006,
+ "loss": 3.587677240371704,
+ "step": 3646
+ },
+ {
+ "epoch": 50.65705548274356,
+ "grad_norm": 0.26747965812683105,
+ "learning_rate": 0.0006,
+ "loss": 3.611286163330078,
+ "step": 3647
+ },
+ {
+ "epoch": 50.671035386631715,
+ "grad_norm": 0.24604788422584534,
+ "learning_rate": 0.0006,
+ "loss": 3.5740575790405273,
+ "step": 3648
+ },
+ {
+ "epoch": 50.68501529051988,
+ "grad_norm": 0.2379457652568817,
+ "learning_rate": 0.0006,
+ "loss": 3.5997209548950195,
+ "step": 3649
+ },
+ {
+ "epoch": 50.69899519440804,
+ "grad_norm": 0.2296321839094162,
+ "learning_rate": 0.0006,
+ "loss": 3.5975162982940674,
+ "step": 3650
+ },
+ {
+ "epoch": 50.7129750982962,
+ "grad_norm": 0.22054627537727356,
+ "learning_rate": 0.0006,
+ "loss": 3.5821738243103027,
+ "step": 3651
+ },
+ {
+ "epoch": 50.72695500218436,
+ "grad_norm": 0.22114980220794678,
+ "learning_rate": 0.0006,
+ "loss": 3.5769970417022705,
+ "step": 3652
+ },
+ {
+ "epoch": 50.74093490607252,
+ "grad_norm": 0.21389314532279968,
+ "learning_rate": 0.0006,
+ "loss": 3.5952796936035156,
+ "step": 3653
+ },
+ {
+ "epoch": 50.75491480996068,
+ "grad_norm": 0.21069210767745972,
+ "learning_rate": 0.0006,
+ "loss": 3.5884671211242676,
+ "step": 3654
+ },
+ {
+ "epoch": 50.768894713848844,
+ "grad_norm": 0.22028805315494537,
+ "learning_rate": 0.0006,
+ "loss": 3.593442440032959,
+ "step": 3655
+ },
+ {
+ "epoch": 50.782874617737,
+ "grad_norm": 0.21296948194503784,
+ "learning_rate": 0.0006,
+ "loss": 3.5656774044036865,
+ "step": 3656
+ },
+ {
+ "epoch": 50.796854521625164,
+ "grad_norm": 0.19871588051319122,
+ "learning_rate": 0.0006,
+ "loss": 3.5939064025878906,
+ "step": 3657
+ },
+ {
+ "epoch": 50.81083442551333,
+ "grad_norm": 0.19523470103740692,
+ "learning_rate": 0.0006,
+ "loss": 3.5806071758270264,
+ "step": 3658
+ },
+ {
+ "epoch": 50.824814329401484,
+ "grad_norm": 0.18718191981315613,
+ "learning_rate": 0.0006,
+ "loss": 3.5903120040893555,
+ "step": 3659
+ },
+ {
+ "epoch": 50.83879423328965,
+ "grad_norm": 0.18796689808368683,
+ "learning_rate": 0.0006,
+ "loss": 3.5799593925476074,
+ "step": 3660
+ },
+ {
+ "epoch": 50.8527741371778,
+ "grad_norm": 0.21794569492340088,
+ "learning_rate": 0.0006,
+ "loss": 3.5712361335754395,
+ "step": 3661
+ },
+ {
+ "epoch": 50.86675404106597,
+ "grad_norm": 0.2374759465456009,
+ "learning_rate": 0.0006,
+ "loss": 3.602503776550293,
+ "step": 3662
+ },
+ {
+ "epoch": 50.88073394495413,
+ "grad_norm": 0.20213527977466583,
+ "learning_rate": 0.0006,
+ "loss": 3.5756399631500244,
+ "step": 3663
+ },
+ {
+ "epoch": 50.89471384884229,
+ "grad_norm": 0.1875160187482834,
+ "learning_rate": 0.0006,
+ "loss": 3.625436305999756,
+ "step": 3664
+ },
+ {
+ "epoch": 50.90869375273045,
+ "grad_norm": 0.19908255338668823,
+ "learning_rate": 0.0006,
+ "loss": 3.592522621154785,
+ "step": 3665
+ },
+ {
+ "epoch": 50.92267365661861,
+ "grad_norm": 0.20776167511940002,
+ "learning_rate": 0.0006,
+ "loss": 3.5777883529663086,
+ "step": 3666
+ },
+ {
+ "epoch": 50.93665356050677,
+ "grad_norm": 0.19510093331336975,
+ "learning_rate": 0.0006,
+ "loss": 3.587306022644043,
+ "step": 3667
+ },
+ {
+ "epoch": 50.95063346439493,
+ "grad_norm": 0.2180490493774414,
+ "learning_rate": 0.0006,
+ "loss": 3.5855464935302734,
+ "step": 3668
+ },
+ {
+ "epoch": 50.964613368283096,
+ "grad_norm": 0.19967055320739746,
+ "learning_rate": 0.0006,
+ "loss": 3.609689235687256,
+ "step": 3669
+ },
+ {
+ "epoch": 50.97859327217125,
+ "grad_norm": 0.2081584632396698,
+ "learning_rate": 0.0006,
+ "loss": 3.625236749649048,
+ "step": 3670
+ },
+ {
+ "epoch": 50.992573176059416,
+ "grad_norm": 0.2312266230583191,
+ "learning_rate": 0.0006,
+ "loss": 3.5977330207824707,
+ "step": 3671
+ },
+ {
+ "epoch": 51.0,
+ "grad_norm": 0.2464766502380371,
+ "learning_rate": 0.0006,
+ "loss": 3.610635995864868,
+ "step": 3672
+ },
+ {
+ "epoch": 51.0,
+ "eval_loss": 3.9810166358947754,
+ "eval_runtime": 45.5851,
+ "eval_samples_per_second": 53.57,
+ "eval_steps_per_second": 3.356,
+ "step": 3672
+ },
+ {
+ "epoch": 51.01397990388816,
+ "grad_norm": 0.22583232820034027,
+ "learning_rate": 0.0006,
+ "loss": 3.547168016433716,
+ "step": 3673
+ },
+ {
+ "epoch": 51.02795980777632,
+ "grad_norm": 0.23001070320606232,
+ "learning_rate": 0.0006,
+ "loss": 3.546207904815674,
+ "step": 3674
+ },
+ {
+ "epoch": 51.04193971166448,
+ "grad_norm": 0.21891392767429352,
+ "learning_rate": 0.0006,
+ "loss": 3.564371109008789,
+ "step": 3675
+ },
+ {
+ "epoch": 51.05591961555265,
+ "grad_norm": 0.22195076942443848,
+ "learning_rate": 0.0006,
+ "loss": 3.538297414779663,
+ "step": 3676
+ },
+ {
+ "epoch": 51.0698995194408,
+ "grad_norm": 0.24688288569450378,
+ "learning_rate": 0.0006,
+ "loss": 3.5705811977386475,
+ "step": 3677
+ },
+ {
+ "epoch": 51.083879423328966,
+ "grad_norm": 0.2731003165245056,
+ "learning_rate": 0.0006,
+ "loss": 3.530763626098633,
+ "step": 3678
+ },
+ {
+ "epoch": 51.09785932721712,
+ "grad_norm": 0.27474021911621094,
+ "learning_rate": 0.0006,
+ "loss": 3.5559208393096924,
+ "step": 3679
+ },
+ {
+ "epoch": 51.111839231105286,
+ "grad_norm": 0.26311439275741577,
+ "learning_rate": 0.0006,
+ "loss": 3.5698819160461426,
+ "step": 3680
+ },
+ {
+ "epoch": 51.12581913499345,
+ "grad_norm": 0.21895965933799744,
+ "learning_rate": 0.0006,
+ "loss": 3.567232370376587,
+ "step": 3681
+ },
+ {
+ "epoch": 51.139799038881605,
+ "grad_norm": 0.19598282873630524,
+ "learning_rate": 0.0006,
+ "loss": 3.6033718585968018,
+ "step": 3682
+ },
+ {
+ "epoch": 51.15377894276977,
+ "grad_norm": 0.2183268666267395,
+ "learning_rate": 0.0006,
+ "loss": 3.5599026679992676,
+ "step": 3683
+ },
+ {
+ "epoch": 51.16775884665793,
+ "grad_norm": 0.22657731175422668,
+ "learning_rate": 0.0006,
+ "loss": 3.532038688659668,
+ "step": 3684
+ },
+ {
+ "epoch": 51.18173875054609,
+ "grad_norm": 0.21979935467243195,
+ "learning_rate": 0.0006,
+ "loss": 3.544640064239502,
+ "step": 3685
+ },
+ {
+ "epoch": 51.19571865443425,
+ "grad_norm": 0.20581361651420593,
+ "learning_rate": 0.0006,
+ "loss": 3.579803466796875,
+ "step": 3686
+ },
+ {
+ "epoch": 51.20969855832241,
+ "grad_norm": 0.22677212953567505,
+ "learning_rate": 0.0006,
+ "loss": 3.576796054840088,
+ "step": 3687
+ },
+ {
+ "epoch": 51.22367846221057,
+ "grad_norm": 0.2599104940891266,
+ "learning_rate": 0.0006,
+ "loss": 3.5657899379730225,
+ "step": 3688
+ },
+ {
+ "epoch": 51.237658366098735,
+ "grad_norm": 0.23320309817790985,
+ "learning_rate": 0.0006,
+ "loss": 3.5537824630737305,
+ "step": 3689
+ },
+ {
+ "epoch": 51.25163826998689,
+ "grad_norm": 0.2345186471939087,
+ "learning_rate": 0.0006,
+ "loss": 3.5699901580810547,
+ "step": 3690
+ },
+ {
+ "epoch": 51.265618173875055,
+ "grad_norm": 0.24723312258720398,
+ "learning_rate": 0.0006,
+ "loss": 3.553495168685913,
+ "step": 3691
+ },
+ {
+ "epoch": 51.27959807776322,
+ "grad_norm": 0.24195604026317596,
+ "learning_rate": 0.0006,
+ "loss": 3.6008248329162598,
+ "step": 3692
+ },
+ {
+ "epoch": 51.293577981651374,
+ "grad_norm": 0.23011726140975952,
+ "learning_rate": 0.0006,
+ "loss": 3.5842812061309814,
+ "step": 3693
+ },
+ {
+ "epoch": 51.30755788553954,
+ "grad_norm": 0.23412185907363892,
+ "learning_rate": 0.0006,
+ "loss": 3.5648040771484375,
+ "step": 3694
+ },
+ {
+ "epoch": 51.3215377894277,
+ "grad_norm": 0.22911828756332397,
+ "learning_rate": 0.0006,
+ "loss": 3.5599000453948975,
+ "step": 3695
+ },
+ {
+ "epoch": 51.33551769331586,
+ "grad_norm": 0.20045386254787445,
+ "learning_rate": 0.0006,
+ "loss": 3.559370517730713,
+ "step": 3696
+ },
+ {
+ "epoch": 51.34949759720402,
+ "grad_norm": 0.24723322689533234,
+ "learning_rate": 0.0006,
+ "loss": 3.5734081268310547,
+ "step": 3697
+ },
+ {
+ "epoch": 51.36347750109218,
+ "grad_norm": 0.28003066778182983,
+ "learning_rate": 0.0006,
+ "loss": 3.574591636657715,
+ "step": 3698
+ },
+ {
+ "epoch": 51.37745740498034,
+ "grad_norm": 0.27969157695770264,
+ "learning_rate": 0.0006,
+ "loss": 3.5703907012939453,
+ "step": 3699
+ },
+ {
+ "epoch": 51.391437308868504,
+ "grad_norm": 0.2352922111749649,
+ "learning_rate": 0.0006,
+ "loss": 3.540452480316162,
+ "step": 3700
+ },
+ {
+ "epoch": 51.40541721275666,
+ "grad_norm": 0.21332240104675293,
+ "learning_rate": 0.0006,
+ "loss": 3.5883522033691406,
+ "step": 3701
+ },
+ {
+ "epoch": 51.419397116644824,
+ "grad_norm": 0.2021809071302414,
+ "learning_rate": 0.0006,
+ "loss": 3.567544460296631,
+ "step": 3702
+ },
+ {
+ "epoch": 51.43337702053299,
+ "grad_norm": 0.23054654896259308,
+ "learning_rate": 0.0006,
+ "loss": 3.5927062034606934,
+ "step": 3703
+ },
+ {
+ "epoch": 51.44735692442114,
+ "grad_norm": 0.22398747503757477,
+ "learning_rate": 0.0006,
+ "loss": 3.5977213382720947,
+ "step": 3704
+ },
+ {
+ "epoch": 51.46133682830931,
+ "grad_norm": 0.2021128088235855,
+ "learning_rate": 0.0006,
+ "loss": 3.585836887359619,
+ "step": 3705
+ },
+ {
+ "epoch": 51.47531673219746,
+ "grad_norm": 0.23031292855739594,
+ "learning_rate": 0.0006,
+ "loss": 3.532315731048584,
+ "step": 3706
+ },
+ {
+ "epoch": 51.489296636085626,
+ "grad_norm": 0.26744455099105835,
+ "learning_rate": 0.0006,
+ "loss": 3.585782289505005,
+ "step": 3707
+ },
+ {
+ "epoch": 51.50327653997379,
+ "grad_norm": 0.2508980929851532,
+ "learning_rate": 0.0006,
+ "loss": 3.550276279449463,
+ "step": 3708
+ },
+ {
+ "epoch": 51.517256443861946,
+ "grad_norm": 0.2180585265159607,
+ "learning_rate": 0.0006,
+ "loss": 3.566798210144043,
+ "step": 3709
+ },
+ {
+ "epoch": 51.53123634775011,
+ "grad_norm": 0.18508869409561157,
+ "learning_rate": 0.0006,
+ "loss": 3.5295116901397705,
+ "step": 3710
+ },
+ {
+ "epoch": 51.54521625163827,
+ "grad_norm": 0.19017672538757324,
+ "learning_rate": 0.0006,
+ "loss": 3.5932717323303223,
+ "step": 3711
+ },
+ {
+ "epoch": 51.55919615552643,
+ "grad_norm": 0.2228020876646042,
+ "learning_rate": 0.0006,
+ "loss": 3.5660648345947266,
+ "step": 3712
+ },
+ {
+ "epoch": 51.57317605941459,
+ "grad_norm": 0.22948148846626282,
+ "learning_rate": 0.0006,
+ "loss": 3.5785627365112305,
+ "step": 3713
+ },
+ {
+ "epoch": 51.58715596330275,
+ "grad_norm": 0.2438911497592926,
+ "learning_rate": 0.0006,
+ "loss": 3.5885257720947266,
+ "step": 3714
+ },
+ {
+ "epoch": 51.60113586719091,
+ "grad_norm": 0.25012296438217163,
+ "learning_rate": 0.0006,
+ "loss": 3.577232599258423,
+ "step": 3715
+ },
+ {
+ "epoch": 51.615115771079076,
+ "grad_norm": 0.27102336287498474,
+ "learning_rate": 0.0006,
+ "loss": 3.5600078105926514,
+ "step": 3716
+ },
+ {
+ "epoch": 51.62909567496723,
+ "grad_norm": 0.26425355672836304,
+ "learning_rate": 0.0006,
+ "loss": 3.5694093704223633,
+ "step": 3717
+ },
+ {
+ "epoch": 51.643075578855395,
+ "grad_norm": 0.24292822182178497,
+ "learning_rate": 0.0006,
+ "loss": 3.5774331092834473,
+ "step": 3718
+ },
+ {
+ "epoch": 51.65705548274356,
+ "grad_norm": 0.22668084502220154,
+ "learning_rate": 0.0006,
+ "loss": 3.5912742614746094,
+ "step": 3719
+ },
+ {
+ "epoch": 51.671035386631715,
+ "grad_norm": 0.2090575248003006,
+ "learning_rate": 0.0006,
+ "loss": 3.5473170280456543,
+ "step": 3720
+ },
+ {
+ "epoch": 51.68501529051988,
+ "grad_norm": 0.22276616096496582,
+ "learning_rate": 0.0006,
+ "loss": 3.6076784133911133,
+ "step": 3721
+ },
+ {
+ "epoch": 51.69899519440804,
+ "grad_norm": 0.22105294466018677,
+ "learning_rate": 0.0006,
+ "loss": 3.5820791721343994,
+ "step": 3722
+ },
+ {
+ "epoch": 51.7129750982962,
+ "grad_norm": 0.19231240451335907,
+ "learning_rate": 0.0006,
+ "loss": 3.6017708778381348,
+ "step": 3723
+ },
+ {
+ "epoch": 51.72695500218436,
+ "grad_norm": 0.2050354927778244,
+ "learning_rate": 0.0006,
+ "loss": 3.5967769622802734,
+ "step": 3724
+ },
+ {
+ "epoch": 51.74093490607252,
+ "grad_norm": 0.19779305160045624,
+ "learning_rate": 0.0006,
+ "loss": 3.597214698791504,
+ "step": 3725
+ },
+ {
+ "epoch": 51.75491480996068,
+ "grad_norm": 0.22394844889640808,
+ "learning_rate": 0.0006,
+ "loss": 3.574063301086426,
+ "step": 3726
+ },
+ {
+ "epoch": 51.768894713848844,
+ "grad_norm": 0.2262638807296753,
+ "learning_rate": 0.0006,
+ "loss": 3.5754079818725586,
+ "step": 3727
+ },
+ {
+ "epoch": 51.782874617737,
+ "grad_norm": 0.2168288677930832,
+ "learning_rate": 0.0006,
+ "loss": 3.6079599857330322,
+ "step": 3728
+ },
+ {
+ "epoch": 51.796854521625164,
+ "grad_norm": 0.2035517394542694,
+ "learning_rate": 0.0006,
+ "loss": 3.5948667526245117,
+ "step": 3729
+ },
+ {
+ "epoch": 51.81083442551333,
+ "grad_norm": 0.20529425144195557,
+ "learning_rate": 0.0006,
+ "loss": 3.5589542388916016,
+ "step": 3730
+ },
+ {
+ "epoch": 51.824814329401484,
+ "grad_norm": 0.2464100867509842,
+ "learning_rate": 0.0006,
+ "loss": 3.5947155952453613,
+ "step": 3731
+ },
+ {
+ "epoch": 51.83879423328965,
+ "grad_norm": 0.28043219447135925,
+ "learning_rate": 0.0006,
+ "loss": 3.6102852821350098,
+ "step": 3732
+ },
+ {
+ "epoch": 51.8527741371778,
+ "grad_norm": 0.2879013121128082,
+ "learning_rate": 0.0006,
+ "loss": 3.5903573036193848,
+ "step": 3733
+ },
+ {
+ "epoch": 51.86675404106597,
+ "grad_norm": 0.2532044053077698,
+ "learning_rate": 0.0006,
+ "loss": 3.5704729557037354,
+ "step": 3734
+ },
+ {
+ "epoch": 51.88073394495413,
+ "grad_norm": 0.25126248598098755,
+ "learning_rate": 0.0006,
+ "loss": 3.5449633598327637,
+ "step": 3735
+ },
+ {
+ "epoch": 51.89471384884229,
+ "grad_norm": 0.2494364082813263,
+ "learning_rate": 0.0006,
+ "loss": 3.5825607776641846,
+ "step": 3736
+ },
+ {
+ "epoch": 51.90869375273045,
+ "grad_norm": 0.24867761135101318,
+ "learning_rate": 0.0006,
+ "loss": 3.5998034477233887,
+ "step": 3737
+ },
+ {
+ "epoch": 51.92267365661861,
+ "grad_norm": 0.2552012801170349,
+ "learning_rate": 0.0006,
+ "loss": 3.5487377643585205,
+ "step": 3738
+ },
+ {
+ "epoch": 51.93665356050677,
+ "grad_norm": 0.2243119329214096,
+ "learning_rate": 0.0006,
+ "loss": 3.6081466674804688,
+ "step": 3739
+ },
+ {
+ "epoch": 51.95063346439493,
+ "grad_norm": 0.2106700837612152,
+ "learning_rate": 0.0006,
+ "loss": 3.607586622238159,
+ "step": 3740
+ },
+ {
+ "epoch": 51.964613368283096,
+ "grad_norm": 0.2207096666097641,
+ "learning_rate": 0.0006,
+ "loss": 3.6094579696655273,
+ "step": 3741
+ },
+ {
+ "epoch": 51.97859327217125,
+ "grad_norm": 0.2310071736574173,
+ "learning_rate": 0.0006,
+ "loss": 3.5837807655334473,
+ "step": 3742
+ },
+ {
+ "epoch": 51.992573176059416,
+ "grad_norm": 0.258770614862442,
+ "learning_rate": 0.0006,
+ "loss": 3.639329433441162,
+ "step": 3743
+ },
+ {
+ "epoch": 52.0,
+ "grad_norm": 0.24004915356636047,
+ "learning_rate": 0.0006,
+ "loss": 3.6178512573242188,
+ "step": 3744
+ },
+ {
+ "epoch": 52.0,
+ "eval_loss": 3.97371244430542,
+ "eval_runtime": 46.1923,
+ "eval_samples_per_second": 52.866,
+ "eval_steps_per_second": 3.312,
+ "step": 3744
+ },
+ {
+ "epoch": 52.01397990388816,
+ "grad_norm": 0.21953323483467102,
+ "learning_rate": 0.0006,
+ "loss": 3.5929579734802246,
+ "step": 3745
+ },
+ {
+ "epoch": 52.02795980777632,
+ "grad_norm": 0.25547415018081665,
+ "learning_rate": 0.0006,
+ "loss": 3.5762600898742676,
+ "step": 3746
+ },
+ {
+ "epoch": 52.04193971166448,
+ "grad_norm": 0.28905144333839417,
+ "learning_rate": 0.0006,
+ "loss": 3.5794596672058105,
+ "step": 3747
+ },
+ {
+ "epoch": 52.05591961555265,
+ "grad_norm": 0.2618118226528168,
+ "learning_rate": 0.0006,
+ "loss": 3.543205499649048,
+ "step": 3748
+ },
+ {
+ "epoch": 52.0698995194408,
+ "grad_norm": 0.2288745492696762,
+ "learning_rate": 0.0006,
+ "loss": 3.562770366668701,
+ "step": 3749
+ },
+ {
+ "epoch": 52.083879423328966,
+ "grad_norm": 0.25327110290527344,
+ "learning_rate": 0.0006,
+ "loss": 3.5405054092407227,
+ "step": 3750
+ },
+ {
+ "epoch": 52.09785932721712,
+ "grad_norm": 0.2721746861934662,
+ "learning_rate": 0.0006,
+ "loss": 3.5650479793548584,
+ "step": 3751
+ },
+ {
+ "epoch": 52.111839231105286,
+ "grad_norm": 0.2890555262565613,
+ "learning_rate": 0.0006,
+ "loss": 3.556122303009033,
+ "step": 3752
+ },
+ {
+ "epoch": 52.12581913499345,
+ "grad_norm": 0.30541476607322693,
+ "learning_rate": 0.0006,
+ "loss": 3.544271469116211,
+ "step": 3753
+ },
+ {
+ "epoch": 52.139799038881605,
+ "grad_norm": 0.2555760443210602,
+ "learning_rate": 0.0006,
+ "loss": 3.5452728271484375,
+ "step": 3754
+ },
+ {
+ "epoch": 52.15377894276977,
+ "grad_norm": 0.2653098404407501,
+ "learning_rate": 0.0006,
+ "loss": 3.57212495803833,
+ "step": 3755
+ },
+ {
+ "epoch": 52.16775884665793,
+ "grad_norm": 0.2479168176651001,
+ "learning_rate": 0.0006,
+ "loss": 3.5893373489379883,
+ "step": 3756
+ },
+ {
+ "epoch": 52.18173875054609,
+ "grad_norm": 0.21718256175518036,
+ "learning_rate": 0.0006,
+ "loss": 3.5616965293884277,
+ "step": 3757
+ },
+ {
+ "epoch": 52.19571865443425,
+ "grad_norm": 0.22033235430717468,
+ "learning_rate": 0.0006,
+ "loss": 3.566401481628418,
+ "step": 3758
+ },
+ {
+ "epoch": 52.20969855832241,
+ "grad_norm": 0.2401825189590454,
+ "learning_rate": 0.0006,
+ "loss": 3.547682762145996,
+ "step": 3759
+ },
+ {
+ "epoch": 52.22367846221057,
+ "grad_norm": 0.24496418237686157,
+ "learning_rate": 0.0006,
+ "loss": 3.5405421257019043,
+ "step": 3760
+ },
+ {
+ "epoch": 52.237658366098735,
+ "grad_norm": 0.2311883270740509,
+ "learning_rate": 0.0006,
+ "loss": 3.5709781646728516,
+ "step": 3761
+ },
+ {
+ "epoch": 52.25163826998689,
+ "grad_norm": 0.20850200951099396,
+ "learning_rate": 0.0006,
+ "loss": 3.5563712120056152,
+ "step": 3762
+ },
+ {
+ "epoch": 52.265618173875055,
+ "grad_norm": 0.2073400765657425,
+ "learning_rate": 0.0006,
+ "loss": 3.542343854904175,
+ "step": 3763
+ },
+ {
+ "epoch": 52.27959807776322,
+ "grad_norm": 0.21886718273162842,
+ "learning_rate": 0.0006,
+ "loss": 3.5633034706115723,
+ "step": 3764
+ },
+ {
+ "epoch": 52.293577981651374,
+ "grad_norm": 0.2218562215566635,
+ "learning_rate": 0.0006,
+ "loss": 3.5644288063049316,
+ "step": 3765
+ },
+ {
+ "epoch": 52.30755788553954,
+ "grad_norm": 0.22043557465076447,
+ "learning_rate": 0.0006,
+ "loss": 3.564373731613159,
+ "step": 3766
+ },
+ {
+ "epoch": 52.3215377894277,
+ "grad_norm": 0.2095082402229309,
+ "learning_rate": 0.0006,
+ "loss": 3.5336289405822754,
+ "step": 3767
+ },
+ {
+ "epoch": 52.33551769331586,
+ "grad_norm": 0.21115876734256744,
+ "learning_rate": 0.0006,
+ "loss": 3.5761165618896484,
+ "step": 3768
+ },
+ {
+ "epoch": 52.34949759720402,
+ "grad_norm": 0.21558400988578796,
+ "learning_rate": 0.0006,
+ "loss": 3.573495388031006,
+ "step": 3769
+ },
+ {
+ "epoch": 52.36347750109218,
+ "grad_norm": 0.213745579123497,
+ "learning_rate": 0.0006,
+ "loss": 3.572171211242676,
+ "step": 3770
+ },
+ {
+ "epoch": 52.37745740498034,
+ "grad_norm": 0.1926180124282837,
+ "learning_rate": 0.0006,
+ "loss": 3.532592535018921,
+ "step": 3771
+ },
+ {
+ "epoch": 52.391437308868504,
+ "grad_norm": 0.1993863731622696,
+ "learning_rate": 0.0006,
+ "loss": 3.551880359649658,
+ "step": 3772
+ },
+ {
+ "epoch": 52.40541721275666,
+ "grad_norm": 0.2018740326166153,
+ "learning_rate": 0.0006,
+ "loss": 3.557328701019287,
+ "step": 3773
+ },
+ {
+ "epoch": 52.419397116644824,
+ "grad_norm": 0.19035610556602478,
+ "learning_rate": 0.0006,
+ "loss": 3.600301504135132,
+ "step": 3774
+ },
+ {
+ "epoch": 52.43337702053299,
+ "grad_norm": 0.20069538056850433,
+ "learning_rate": 0.0006,
+ "loss": 3.5938944816589355,
+ "step": 3775
+ },
+ {
+ "epoch": 52.44735692442114,
+ "grad_norm": 0.21255625784397125,
+ "learning_rate": 0.0006,
+ "loss": 3.561086893081665,
+ "step": 3776
+ },
+ {
+ "epoch": 52.46133682830931,
+ "grad_norm": 0.20132070779800415,
+ "learning_rate": 0.0006,
+ "loss": 3.5525574684143066,
+ "step": 3777
+ },
+ {
+ "epoch": 52.47531673219746,
+ "grad_norm": 0.20152916014194489,
+ "learning_rate": 0.0006,
+ "loss": 3.5697402954101562,
+ "step": 3778
+ },
+ {
+ "epoch": 52.489296636085626,
+ "grad_norm": 0.1984269767999649,
+ "learning_rate": 0.0006,
+ "loss": 3.5686168670654297,
+ "step": 3779
+ },
+ {
+ "epoch": 52.50327653997379,
+ "grad_norm": 0.212612584233284,
+ "learning_rate": 0.0006,
+ "loss": 3.5522124767303467,
+ "step": 3780
+ },
+ {
+ "epoch": 52.517256443861946,
+ "grad_norm": 0.21382521092891693,
+ "learning_rate": 0.0006,
+ "loss": 3.5692944526672363,
+ "step": 3781
+ },
+ {
+ "epoch": 52.53123634775011,
+ "grad_norm": 0.2118486911058426,
+ "learning_rate": 0.0006,
+ "loss": 3.562495708465576,
+ "step": 3782
+ },
+ {
+ "epoch": 52.54521625163827,
+ "grad_norm": 0.22253486514091492,
+ "learning_rate": 0.0006,
+ "loss": 3.5709781646728516,
+ "step": 3783
+ },
+ {
+ "epoch": 52.55919615552643,
+ "grad_norm": 0.23701436817646027,
+ "learning_rate": 0.0006,
+ "loss": 3.548953056335449,
+ "step": 3784
+ },
+ {
+ "epoch": 52.57317605941459,
+ "grad_norm": 0.21345193684101105,
+ "learning_rate": 0.0006,
+ "loss": 3.543029308319092,
+ "step": 3785
+ },
+ {
+ "epoch": 52.58715596330275,
+ "grad_norm": 0.1854170262813568,
+ "learning_rate": 0.0006,
+ "loss": 3.5490989685058594,
+ "step": 3786
+ },
+ {
+ "epoch": 52.60113586719091,
+ "grad_norm": 0.23733633756637573,
+ "learning_rate": 0.0006,
+ "loss": 3.5800132751464844,
+ "step": 3787
+ },
+ {
+ "epoch": 52.615115771079076,
+ "grad_norm": 0.26175495982170105,
+ "learning_rate": 0.0006,
+ "loss": 3.562596321105957,
+ "step": 3788
+ },
+ {
+ "epoch": 52.62909567496723,
+ "grad_norm": 0.23134057223796844,
+ "learning_rate": 0.0006,
+ "loss": 3.5685765743255615,
+ "step": 3789
+ },
+ {
+ "epoch": 52.643075578855395,
+ "grad_norm": 0.1974988877773285,
+ "learning_rate": 0.0006,
+ "loss": 3.570517063140869,
+ "step": 3790
+ },
+ {
+ "epoch": 52.65705548274356,
+ "grad_norm": 0.20049697160720825,
+ "learning_rate": 0.0006,
+ "loss": 3.573286533355713,
+ "step": 3791
+ },
+ {
+ "epoch": 52.671035386631715,
+ "grad_norm": 0.1956445872783661,
+ "learning_rate": 0.0006,
+ "loss": 3.565880537033081,
+ "step": 3792
+ },
+ {
+ "epoch": 52.68501529051988,
+ "grad_norm": 0.2082354575395584,
+ "learning_rate": 0.0006,
+ "loss": 3.587278366088867,
+ "step": 3793
+ },
+ {
+ "epoch": 52.69899519440804,
+ "grad_norm": 0.20923161506652832,
+ "learning_rate": 0.0006,
+ "loss": 3.569469451904297,
+ "step": 3794
+ },
+ {
+ "epoch": 52.7129750982962,
+ "grad_norm": 0.20482848584651947,
+ "learning_rate": 0.0006,
+ "loss": 3.5826265811920166,
+ "step": 3795
+ },
+ {
+ "epoch": 52.72695500218436,
+ "grad_norm": 0.20411530137062073,
+ "learning_rate": 0.0006,
+ "loss": 3.5870275497436523,
+ "step": 3796
+ },
+ {
+ "epoch": 52.74093490607252,
+ "grad_norm": 0.2205485701560974,
+ "learning_rate": 0.0006,
+ "loss": 3.58900785446167,
+ "step": 3797
+ },
+ {
+ "epoch": 52.75491480996068,
+ "grad_norm": 0.21134008467197418,
+ "learning_rate": 0.0006,
+ "loss": 3.591036558151245,
+ "step": 3798
+ },
+ {
+ "epoch": 52.768894713848844,
+ "grad_norm": 0.20001831650733948,
+ "learning_rate": 0.0006,
+ "loss": 3.5670390129089355,
+ "step": 3799
+ },
+ {
+ "epoch": 52.782874617737,
+ "grad_norm": 0.2175939679145813,
+ "learning_rate": 0.0006,
+ "loss": 3.594132423400879,
+ "step": 3800
+ },
+ {
+ "epoch": 52.796854521625164,
+ "grad_norm": 0.22054694592952728,
+ "learning_rate": 0.0006,
+ "loss": 3.5565545558929443,
+ "step": 3801
+ },
+ {
+ "epoch": 52.81083442551333,
+ "grad_norm": 0.22901731729507446,
+ "learning_rate": 0.0006,
+ "loss": 3.5837020874023438,
+ "step": 3802
+ },
+ {
+ "epoch": 52.824814329401484,
+ "grad_norm": 0.22492778301239014,
+ "learning_rate": 0.0006,
+ "loss": 3.608218193054199,
+ "step": 3803
+ },
+ {
+ "epoch": 52.83879423328965,
+ "grad_norm": 0.21645256876945496,
+ "learning_rate": 0.0006,
+ "loss": 3.5839202404022217,
+ "step": 3804
+ },
+ {
+ "epoch": 52.8527741371778,
+ "grad_norm": 0.19680161774158478,
+ "learning_rate": 0.0006,
+ "loss": 3.568756580352783,
+ "step": 3805
+ },
+ {
+ "epoch": 52.86675404106597,
+ "grad_norm": 0.2084486186504364,
+ "learning_rate": 0.0006,
+ "loss": 3.580197811126709,
+ "step": 3806
+ },
+ {
+ "epoch": 52.88073394495413,
+ "grad_norm": 0.19380393624305725,
+ "learning_rate": 0.0006,
+ "loss": 3.5871198177337646,
+ "step": 3807
+ },
+ {
+ "epoch": 52.89471384884229,
+ "grad_norm": 0.1962910294532776,
+ "learning_rate": 0.0006,
+ "loss": 3.5878777503967285,
+ "step": 3808
+ },
+ {
+ "epoch": 52.90869375273045,
+ "grad_norm": 0.23292803764343262,
+ "learning_rate": 0.0006,
+ "loss": 3.574855327606201,
+ "step": 3809
+ },
+ {
+ "epoch": 52.92267365661861,
+ "grad_norm": 0.26974233984947205,
+ "learning_rate": 0.0006,
+ "loss": 3.5731749534606934,
+ "step": 3810
+ },
+ {
+ "epoch": 52.93665356050677,
+ "grad_norm": 0.26665496826171875,
+ "learning_rate": 0.0006,
+ "loss": 3.552717685699463,
+ "step": 3811
+ },
+ {
+ "epoch": 52.95063346439493,
+ "grad_norm": 0.24156489968299866,
+ "learning_rate": 0.0006,
+ "loss": 3.581787109375,
+ "step": 3812
+ },
+ {
+ "epoch": 52.964613368283096,
+ "grad_norm": 0.22062325477600098,
+ "learning_rate": 0.0006,
+ "loss": 3.578994035720825,
+ "step": 3813
+ },
+ {
+ "epoch": 52.97859327217125,
+ "grad_norm": 0.19949151575565338,
+ "learning_rate": 0.0006,
+ "loss": 3.6157355308532715,
+ "step": 3814
+ },
+ {
+ "epoch": 52.992573176059416,
+ "grad_norm": 0.2157975435256958,
+ "learning_rate": 0.0006,
+ "loss": 3.5677759647369385,
+ "step": 3815
+ },
+ {
+ "epoch": 53.0,
+ "grad_norm": 0.23285679519176483,
+ "learning_rate": 0.0006,
+ "loss": 3.5541789531707764,
+ "step": 3816
+ },
+ {
+ "epoch": 53.0,
+ "eval_loss": 3.9737255573272705,
+ "eval_runtime": 46.0304,
+ "eval_samples_per_second": 53.052,
+ "eval_steps_per_second": 3.324,
+ "step": 3816
+ },
+ {
+ "epoch": 53.01397990388816,
+ "grad_norm": 0.212715283036232,
+ "learning_rate": 0.0006,
+ "loss": 3.5475640296936035,
+ "step": 3817
+ },
+ {
+ "epoch": 53.02795980777632,
+ "grad_norm": 0.24556505680084229,
+ "learning_rate": 0.0006,
+ "loss": 3.5197463035583496,
+ "step": 3818
+ },
+ {
+ "epoch": 53.04193971166448,
+ "grad_norm": 0.2898217737674713,
+ "learning_rate": 0.0006,
+ "loss": 3.527390956878662,
+ "step": 3819
+ },
+ {
+ "epoch": 53.05591961555265,
+ "grad_norm": 0.26151803135871887,
+ "learning_rate": 0.0006,
+ "loss": 3.5462024211883545,
+ "step": 3820
+ },
+ {
+ "epoch": 53.0698995194408,
+ "grad_norm": 0.24648059904575348,
+ "learning_rate": 0.0006,
+ "loss": 3.5584919452667236,
+ "step": 3821
+ },
+ {
+ "epoch": 53.083879423328966,
+ "grad_norm": 0.22295059263706207,
+ "learning_rate": 0.0006,
+ "loss": 3.517195701599121,
+ "step": 3822
+ },
+ {
+ "epoch": 53.09785932721712,
+ "grad_norm": 0.2206476330757141,
+ "learning_rate": 0.0006,
+ "loss": 3.570678234100342,
+ "step": 3823
+ },
+ {
+ "epoch": 53.111839231105286,
+ "grad_norm": 0.22069714963436127,
+ "learning_rate": 0.0006,
+ "loss": 3.5707359313964844,
+ "step": 3824
+ },
+ {
+ "epoch": 53.12581913499345,
+ "grad_norm": 0.21850740909576416,
+ "learning_rate": 0.0006,
+ "loss": 3.5730209350585938,
+ "step": 3825
+ },
+ {
+ "epoch": 53.139799038881605,
+ "grad_norm": 0.21554340422153473,
+ "learning_rate": 0.0006,
+ "loss": 3.5578367710113525,
+ "step": 3826
+ },
+ {
+ "epoch": 53.15377894276977,
+ "grad_norm": 0.21678747236728668,
+ "learning_rate": 0.0006,
+ "loss": 3.5603280067443848,
+ "step": 3827
+ },
+ {
+ "epoch": 53.16775884665793,
+ "grad_norm": 0.22017014026641846,
+ "learning_rate": 0.0006,
+ "loss": 3.577760696411133,
+ "step": 3828
+ },
+ {
+ "epoch": 53.18173875054609,
+ "grad_norm": 0.20485524833202362,
+ "learning_rate": 0.0006,
+ "loss": 3.574751853942871,
+ "step": 3829
+ },
+ {
+ "epoch": 53.19571865443425,
+ "grad_norm": 0.22951237857341766,
+ "learning_rate": 0.0006,
+ "loss": 3.5464377403259277,
+ "step": 3830
+ },
+ {
+ "epoch": 53.20969855832241,
+ "grad_norm": 0.2343965619802475,
+ "learning_rate": 0.0006,
+ "loss": 3.516113758087158,
+ "step": 3831
+ },
+ {
+ "epoch": 53.22367846221057,
+ "grad_norm": 0.24002069234848022,
+ "learning_rate": 0.0006,
+ "loss": 3.564629554748535,
+ "step": 3832
+ },
+ {
+ "epoch": 53.237658366098735,
+ "grad_norm": 0.23933765292167664,
+ "learning_rate": 0.0006,
+ "loss": 3.5518507957458496,
+ "step": 3833
+ },
+ {
+ "epoch": 53.25163826998689,
+ "grad_norm": 0.2188953459262848,
+ "learning_rate": 0.0006,
+ "loss": 3.5341856479644775,
+ "step": 3834
+ },
+ {
+ "epoch": 53.265618173875055,
+ "grad_norm": 0.22629091143608093,
+ "learning_rate": 0.0006,
+ "loss": 3.5479273796081543,
+ "step": 3835
+ },
+ {
+ "epoch": 53.27959807776322,
+ "grad_norm": 0.2386554479598999,
+ "learning_rate": 0.0006,
+ "loss": 3.6097445487976074,
+ "step": 3836
+ },
+ {
+ "epoch": 53.293577981651374,
+ "grad_norm": 0.23003390431404114,
+ "learning_rate": 0.0006,
+ "loss": 3.5435304641723633,
+ "step": 3837
+ },
+ {
+ "epoch": 53.30755788553954,
+ "grad_norm": 0.248053640127182,
+ "learning_rate": 0.0006,
+ "loss": 3.545290470123291,
+ "step": 3838
+ },
+ {
+ "epoch": 53.3215377894277,
+ "grad_norm": 0.23945583403110504,
+ "learning_rate": 0.0006,
+ "loss": 3.570158004760742,
+ "step": 3839
+ },
+ {
+ "epoch": 53.33551769331586,
+ "grad_norm": 0.22801059484481812,
+ "learning_rate": 0.0006,
+ "loss": 3.5600779056549072,
+ "step": 3840
+ },
+ {
+ "epoch": 53.34949759720402,
+ "grad_norm": 0.2303777039051056,
+ "learning_rate": 0.0006,
+ "loss": 3.576674222946167,
+ "step": 3841
+ },
+ {
+ "epoch": 53.36347750109218,
+ "grad_norm": 0.23318468034267426,
+ "learning_rate": 0.0006,
+ "loss": 3.5705552101135254,
+ "step": 3842
+ },
+ {
+ "epoch": 53.37745740498034,
+ "grad_norm": 0.2435566782951355,
+ "learning_rate": 0.0006,
+ "loss": 3.576536178588867,
+ "step": 3843
+ },
+ {
+ "epoch": 53.391437308868504,
+ "grad_norm": 0.2857200503349304,
+ "learning_rate": 0.0006,
+ "loss": 3.535977363586426,
+ "step": 3844
+ },
+ {
+ "epoch": 53.40541721275666,
+ "grad_norm": 0.2640133500099182,
+ "learning_rate": 0.0006,
+ "loss": 3.547731399536133,
+ "step": 3845
+ },
+ {
+ "epoch": 53.419397116644824,
+ "grad_norm": 0.22218745946884155,
+ "learning_rate": 0.0006,
+ "loss": 3.5798351764678955,
+ "step": 3846
+ },
+ {
+ "epoch": 53.43337702053299,
+ "grad_norm": 0.2537193298339844,
+ "learning_rate": 0.0006,
+ "loss": 3.5289204120635986,
+ "step": 3847
+ },
+ {
+ "epoch": 53.44735692442114,
+ "grad_norm": 0.28360968828201294,
+ "learning_rate": 0.0006,
+ "loss": 3.5503361225128174,
+ "step": 3848
+ },
+ {
+ "epoch": 53.46133682830931,
+ "grad_norm": 0.2892421782016754,
+ "learning_rate": 0.0006,
+ "loss": 3.5675411224365234,
+ "step": 3849
+ },
+ {
+ "epoch": 53.47531673219746,
+ "grad_norm": 0.28305584192276,
+ "learning_rate": 0.0006,
+ "loss": 3.573280096054077,
+ "step": 3850
+ },
+ {
+ "epoch": 53.489296636085626,
+ "grad_norm": 0.24628037214279175,
+ "learning_rate": 0.0006,
+ "loss": 3.5215024948120117,
+ "step": 3851
+ },
+ {
+ "epoch": 53.50327653997379,
+ "grad_norm": 0.2463715672492981,
+ "learning_rate": 0.0006,
+ "loss": 3.5790698528289795,
+ "step": 3852
+ },
+ {
+ "epoch": 53.517256443861946,
+ "grad_norm": 0.2646636664867401,
+ "learning_rate": 0.0006,
+ "loss": 3.589735269546509,
+ "step": 3853
+ },
+ {
+ "epoch": 53.53123634775011,
+ "grad_norm": 0.27668821811676025,
+ "learning_rate": 0.0006,
+ "loss": 3.5690393447875977,
+ "step": 3854
+ },
+ {
+ "epoch": 53.54521625163827,
+ "grad_norm": 0.2630347013473511,
+ "learning_rate": 0.0006,
+ "loss": 3.5846545696258545,
+ "step": 3855
+ },
+ {
+ "epoch": 53.55919615552643,
+ "grad_norm": 0.27177906036376953,
+ "learning_rate": 0.0006,
+ "loss": 3.5431671142578125,
+ "step": 3856
+ },
+ {
+ "epoch": 53.57317605941459,
+ "grad_norm": 0.27125081419944763,
+ "learning_rate": 0.0006,
+ "loss": 3.5905215740203857,
+ "step": 3857
+ },
+ {
+ "epoch": 53.58715596330275,
+ "grad_norm": 0.24802975356578827,
+ "learning_rate": 0.0006,
+ "loss": 3.5472917556762695,
+ "step": 3858
+ },
+ {
+ "epoch": 53.60113586719091,
+ "grad_norm": 0.23812460899353027,
+ "learning_rate": 0.0006,
+ "loss": 3.5917325019836426,
+ "step": 3859
+ },
+ {
+ "epoch": 53.615115771079076,
+ "grad_norm": 0.2597416937351227,
+ "learning_rate": 0.0006,
+ "loss": 3.5515074729919434,
+ "step": 3860
+ },
+ {
+ "epoch": 53.62909567496723,
+ "grad_norm": 0.24389132857322693,
+ "learning_rate": 0.0006,
+ "loss": 3.578125476837158,
+ "step": 3861
+ },
+ {
+ "epoch": 53.643075578855395,
+ "grad_norm": 0.23878274857997894,
+ "learning_rate": 0.0006,
+ "loss": 3.5612001419067383,
+ "step": 3862
+ },
+ {
+ "epoch": 53.65705548274356,
+ "grad_norm": 0.23248082399368286,
+ "learning_rate": 0.0006,
+ "loss": 3.5651350021362305,
+ "step": 3863
+ },
+ {
+ "epoch": 53.671035386631715,
+ "grad_norm": 0.22560833394527435,
+ "learning_rate": 0.0006,
+ "loss": 3.58971905708313,
+ "step": 3864
+ },
+ {
+ "epoch": 53.68501529051988,
+ "grad_norm": 0.22092120349407196,
+ "learning_rate": 0.0006,
+ "loss": 3.5567374229431152,
+ "step": 3865
+ },
+ {
+ "epoch": 53.69899519440804,
+ "grad_norm": 0.20171885192394257,
+ "learning_rate": 0.0006,
+ "loss": 3.5868449211120605,
+ "step": 3866
+ },
+ {
+ "epoch": 53.7129750982962,
+ "grad_norm": 0.2051871120929718,
+ "learning_rate": 0.0006,
+ "loss": 3.5853161811828613,
+ "step": 3867
+ },
+ {
+ "epoch": 53.72695500218436,
+ "grad_norm": 0.1912045031785965,
+ "learning_rate": 0.0006,
+ "loss": 3.5901622772216797,
+ "step": 3868
+ },
+ {
+ "epoch": 53.74093490607252,
+ "grad_norm": 0.20817188918590546,
+ "learning_rate": 0.0006,
+ "loss": 3.5759787559509277,
+ "step": 3869
+ },
+ {
+ "epoch": 53.75491480996068,
+ "grad_norm": 0.2157917469739914,
+ "learning_rate": 0.0006,
+ "loss": 3.5438575744628906,
+ "step": 3870
+ },
+ {
+ "epoch": 53.768894713848844,
+ "grad_norm": 0.2332053929567337,
+ "learning_rate": 0.0006,
+ "loss": 3.587697982788086,
+ "step": 3871
+ },
+ {
+ "epoch": 53.782874617737,
+ "grad_norm": 0.22700314223766327,
+ "learning_rate": 0.0006,
+ "loss": 3.586625337600708,
+ "step": 3872
+ },
+ {
+ "epoch": 53.796854521625164,
+ "grad_norm": 0.20737017691135406,
+ "learning_rate": 0.0006,
+ "loss": 3.552398204803467,
+ "step": 3873
+ },
+ {
+ "epoch": 53.81083442551333,
+ "grad_norm": 0.20355650782585144,
+ "learning_rate": 0.0006,
+ "loss": 3.5734331607818604,
+ "step": 3874
+ },
+ {
+ "epoch": 53.824814329401484,
+ "grad_norm": 0.18868018686771393,
+ "learning_rate": 0.0006,
+ "loss": 3.582509756088257,
+ "step": 3875
+ },
+ {
+ "epoch": 53.83879423328965,
+ "grad_norm": 0.20373275876045227,
+ "learning_rate": 0.0006,
+ "loss": 3.559354782104492,
+ "step": 3876
+ },
+ {
+ "epoch": 53.8527741371778,
+ "grad_norm": 0.1988871544599533,
+ "learning_rate": 0.0006,
+ "loss": 3.5575170516967773,
+ "step": 3877
+ },
+ {
+ "epoch": 53.86675404106597,
+ "grad_norm": 0.19602873921394348,
+ "learning_rate": 0.0006,
+ "loss": 3.5500855445861816,
+ "step": 3878
+ },
+ {
+ "epoch": 53.88073394495413,
+ "grad_norm": 0.201382577419281,
+ "learning_rate": 0.0006,
+ "loss": 3.563499927520752,
+ "step": 3879
+ },
+ {
+ "epoch": 53.89471384884229,
+ "grad_norm": 0.19682180881500244,
+ "learning_rate": 0.0006,
+ "loss": 3.586855888366699,
+ "step": 3880
+ },
+ {
+ "epoch": 53.90869375273045,
+ "grad_norm": 0.19423548877239227,
+ "learning_rate": 0.0006,
+ "loss": 3.5840401649475098,
+ "step": 3881
+ },
+ {
+ "epoch": 53.92267365661861,
+ "grad_norm": 0.1970449835062027,
+ "learning_rate": 0.0006,
+ "loss": 3.554568290710449,
+ "step": 3882
+ },
+ {
+ "epoch": 53.93665356050677,
+ "grad_norm": 0.20274291932582855,
+ "learning_rate": 0.0006,
+ "loss": 3.5928239822387695,
+ "step": 3883
+ },
+ {
+ "epoch": 53.95063346439493,
+ "grad_norm": 0.18485035002231598,
+ "learning_rate": 0.0006,
+ "loss": 3.576934337615967,
+ "step": 3884
+ },
+ {
+ "epoch": 53.964613368283096,
+ "grad_norm": 0.18437646329402924,
+ "learning_rate": 0.0006,
+ "loss": 3.574990749359131,
+ "step": 3885
+ },
+ {
+ "epoch": 53.97859327217125,
+ "grad_norm": 0.18616823852062225,
+ "learning_rate": 0.0006,
+ "loss": 3.5566892623901367,
+ "step": 3886
+ },
+ {
+ "epoch": 53.992573176059416,
+ "grad_norm": 0.19502122700214386,
+ "learning_rate": 0.0006,
+ "loss": 3.604814052581787,
+ "step": 3887
+ },
+ {
+ "epoch": 54.0,
+ "grad_norm": 0.2657789885997772,
+ "learning_rate": 0.0006,
+ "loss": 3.5094165802001953,
+ "step": 3888
+ },
+ {
+ "epoch": 54.0,
+ "eval_loss": 3.965742349624634,
+ "eval_runtime": 45.5851,
+ "eval_samples_per_second": 53.57,
+ "eval_steps_per_second": 3.356,
+ "step": 3888
+ },
+ {
+ "epoch": 54.01397990388816,
+ "grad_norm": 0.27879253029823303,
+ "learning_rate": 0.0006,
+ "loss": 3.565103530883789,
+ "step": 3889
+ },
+ {
+ "epoch": 54.02795980777632,
+ "grad_norm": 0.2959246337413788,
+ "learning_rate": 0.0006,
+ "loss": 3.5378212928771973,
+ "step": 3890
+ },
+ {
+ "epoch": 54.04193971166448,
+ "grad_norm": 0.32719552516937256,
+ "learning_rate": 0.0006,
+ "loss": 3.5566751956939697,
+ "step": 3891
+ },
+ {
+ "epoch": 54.05591961555265,
+ "grad_norm": 0.36854541301727295,
+ "learning_rate": 0.0006,
+ "loss": 3.5363879203796387,
+ "step": 3892
+ },
+ {
+ "epoch": 54.0698995194408,
+ "grad_norm": 0.34325551986694336,
+ "learning_rate": 0.0006,
+ "loss": 3.5306153297424316,
+ "step": 3893
+ },
+ {
+ "epoch": 54.083879423328966,
+ "grad_norm": 0.2798653244972229,
+ "learning_rate": 0.0006,
+ "loss": 3.5642261505126953,
+ "step": 3894
+ },
+ {
+ "epoch": 54.09785932721712,
+ "grad_norm": 0.24857765436172485,
+ "learning_rate": 0.0006,
+ "loss": 3.50216007232666,
+ "step": 3895
+ },
+ {
+ "epoch": 54.111839231105286,
+ "grad_norm": 0.2943299114704132,
+ "learning_rate": 0.0006,
+ "loss": 3.524904251098633,
+ "step": 3896
+ },
+ {
+ "epoch": 54.12581913499345,
+ "grad_norm": 0.2791048586368561,
+ "learning_rate": 0.0006,
+ "loss": 3.56490421295166,
+ "step": 3897
+ },
+ {
+ "epoch": 54.139799038881605,
+ "grad_norm": 0.2781159579753876,
+ "learning_rate": 0.0006,
+ "loss": 3.536180019378662,
+ "step": 3898
+ },
+ {
+ "epoch": 54.15377894276977,
+ "grad_norm": 0.30359897017478943,
+ "learning_rate": 0.0006,
+ "loss": 3.546919345855713,
+ "step": 3899
+ },
+ {
+ "epoch": 54.16775884665793,
+ "grad_norm": 0.2738530933856964,
+ "learning_rate": 0.0006,
+ "loss": 3.547968864440918,
+ "step": 3900
+ },
+ {
+ "epoch": 54.18173875054609,
+ "grad_norm": 0.24783718585968018,
+ "learning_rate": 0.0006,
+ "loss": 3.5802721977233887,
+ "step": 3901
+ },
+ {
+ "epoch": 54.19571865443425,
+ "grad_norm": 0.2544802725315094,
+ "learning_rate": 0.0006,
+ "loss": 3.5556836128234863,
+ "step": 3902
+ },
+ {
+ "epoch": 54.20969855832241,
+ "grad_norm": 0.26695969700813293,
+ "learning_rate": 0.0006,
+ "loss": 3.534266471862793,
+ "step": 3903
+ },
+ {
+ "epoch": 54.22367846221057,
+ "grad_norm": 0.24152538180351257,
+ "learning_rate": 0.0006,
+ "loss": 3.534069538116455,
+ "step": 3904
+ },
+ {
+ "epoch": 54.237658366098735,
+ "grad_norm": 0.21859917044639587,
+ "learning_rate": 0.0006,
+ "loss": 3.535362958908081,
+ "step": 3905
+ },
+ {
+ "epoch": 54.25163826998689,
+ "grad_norm": 0.24676479399204254,
+ "learning_rate": 0.0006,
+ "loss": 3.567283868789673,
+ "step": 3906
+ },
+ {
+ "epoch": 54.265618173875055,
+ "grad_norm": 0.26998138427734375,
+ "learning_rate": 0.0006,
+ "loss": 3.518892765045166,
+ "step": 3907
+ },
+ {
+ "epoch": 54.27959807776322,
+ "grad_norm": 0.30108749866485596,
+ "learning_rate": 0.0006,
+ "loss": 3.5865135192871094,
+ "step": 3908
+ },
+ {
+ "epoch": 54.293577981651374,
+ "grad_norm": 0.31310492753982544,
+ "learning_rate": 0.0006,
+ "loss": 3.546637535095215,
+ "step": 3909
+ },
+ {
+ "epoch": 54.30755788553954,
+ "grad_norm": 0.2994784712791443,
+ "learning_rate": 0.0006,
+ "loss": 3.5441226959228516,
+ "step": 3910
+ },
+ {
+ "epoch": 54.3215377894277,
+ "grad_norm": 0.25010061264038086,
+ "learning_rate": 0.0006,
+ "loss": 3.5619735717773438,
+ "step": 3911
+ },
+ {
+ "epoch": 54.33551769331586,
+ "grad_norm": 0.253129780292511,
+ "learning_rate": 0.0006,
+ "loss": 3.530210494995117,
+ "step": 3912
+ },
+ {
+ "epoch": 54.34949759720402,
+ "grad_norm": 0.2652498781681061,
+ "learning_rate": 0.0006,
+ "loss": 3.534478187561035,
+ "step": 3913
+ },
+ {
+ "epoch": 54.36347750109218,
+ "grad_norm": 0.250503808259964,
+ "learning_rate": 0.0006,
+ "loss": 3.545886516571045,
+ "step": 3914
+ },
+ {
+ "epoch": 54.37745740498034,
+ "grad_norm": 0.22186073660850525,
+ "learning_rate": 0.0006,
+ "loss": 3.5884604454040527,
+ "step": 3915
+ },
+ {
+ "epoch": 54.391437308868504,
+ "grad_norm": 0.21128980815410614,
+ "learning_rate": 0.0006,
+ "loss": 3.527862548828125,
+ "step": 3916
+ },
+ {
+ "epoch": 54.40541721275666,
+ "grad_norm": 0.23184002935886383,
+ "learning_rate": 0.0006,
+ "loss": 3.5599637031555176,
+ "step": 3917
+ },
+ {
+ "epoch": 54.419397116644824,
+ "grad_norm": 0.23710627853870392,
+ "learning_rate": 0.0006,
+ "loss": 3.54667329788208,
+ "step": 3918
+ },
+ {
+ "epoch": 54.43337702053299,
+ "grad_norm": 0.2314598113298416,
+ "learning_rate": 0.0006,
+ "loss": 3.518406391143799,
+ "step": 3919
+ },
+ {
+ "epoch": 54.44735692442114,
+ "grad_norm": 0.21623452007770538,
+ "learning_rate": 0.0006,
+ "loss": 3.5749731063842773,
+ "step": 3920
+ },
+ {
+ "epoch": 54.46133682830931,
+ "grad_norm": 0.22832012176513672,
+ "learning_rate": 0.0006,
+ "loss": 3.57436466217041,
+ "step": 3921
+ },
+ {
+ "epoch": 54.47531673219746,
+ "grad_norm": 0.2184043526649475,
+ "learning_rate": 0.0006,
+ "loss": 3.578040838241577,
+ "step": 3922
+ },
+ {
+ "epoch": 54.489296636085626,
+ "grad_norm": 0.2302335649728775,
+ "learning_rate": 0.0006,
+ "loss": 3.5646257400512695,
+ "step": 3923
+ },
+ {
+ "epoch": 54.50327653997379,
+ "grad_norm": 0.21635375916957855,
+ "learning_rate": 0.0006,
+ "loss": 3.546786308288574,
+ "step": 3924
+ },
+ {
+ "epoch": 54.517256443861946,
+ "grad_norm": 0.22332443296909332,
+ "learning_rate": 0.0006,
+ "loss": 3.5804502964019775,
+ "step": 3925
+ },
+ {
+ "epoch": 54.53123634775011,
+ "grad_norm": 0.21662919223308563,
+ "learning_rate": 0.0006,
+ "loss": 3.567797899246216,
+ "step": 3926
+ },
+ {
+ "epoch": 54.54521625163827,
+ "grad_norm": 0.21345169842243195,
+ "learning_rate": 0.0006,
+ "loss": 3.5746283531188965,
+ "step": 3927
+ },
+ {
+ "epoch": 54.55919615552643,
+ "grad_norm": 0.2111794501543045,
+ "learning_rate": 0.0006,
+ "loss": 3.5626277923583984,
+ "step": 3928
+ },
+ {
+ "epoch": 54.57317605941459,
+ "grad_norm": 0.22575712203979492,
+ "learning_rate": 0.0006,
+ "loss": 3.5856311321258545,
+ "step": 3929
+ },
+ {
+ "epoch": 54.58715596330275,
+ "grad_norm": 0.22963617742061615,
+ "learning_rate": 0.0006,
+ "loss": 3.584038257598877,
+ "step": 3930
+ },
+ {
+ "epoch": 54.60113586719091,
+ "grad_norm": 0.21805310249328613,
+ "learning_rate": 0.0006,
+ "loss": 3.5603089332580566,
+ "step": 3931
+ },
+ {
+ "epoch": 54.615115771079076,
+ "grad_norm": 0.22830283641815186,
+ "learning_rate": 0.0006,
+ "loss": 3.5533390045166016,
+ "step": 3932
+ },
+ {
+ "epoch": 54.62909567496723,
+ "grad_norm": 0.24158291518688202,
+ "learning_rate": 0.0006,
+ "loss": 3.5437779426574707,
+ "step": 3933
+ },
+ {
+ "epoch": 54.643075578855395,
+ "grad_norm": 0.22687768936157227,
+ "learning_rate": 0.0006,
+ "loss": 3.566315174102783,
+ "step": 3934
+ },
+ {
+ "epoch": 54.65705548274356,
+ "grad_norm": 0.21220184862613678,
+ "learning_rate": 0.0006,
+ "loss": 3.5772881507873535,
+ "step": 3935
+ },
+ {
+ "epoch": 54.671035386631715,
+ "grad_norm": 0.19508333504199982,
+ "learning_rate": 0.0006,
+ "loss": 3.5213584899902344,
+ "step": 3936
+ },
+ {
+ "epoch": 54.68501529051988,
+ "grad_norm": 0.199599027633667,
+ "learning_rate": 0.0006,
+ "loss": 3.553925037384033,
+ "step": 3937
+ },
+ {
+ "epoch": 54.69899519440804,
+ "grad_norm": 0.2063189297914505,
+ "learning_rate": 0.0006,
+ "loss": 3.5706050395965576,
+ "step": 3938
+ },
+ {
+ "epoch": 54.7129750982962,
+ "grad_norm": 0.2056119441986084,
+ "learning_rate": 0.0006,
+ "loss": 3.557199478149414,
+ "step": 3939
+ },
+ {
+ "epoch": 54.72695500218436,
+ "grad_norm": 0.2192074954509735,
+ "learning_rate": 0.0006,
+ "loss": 3.5869479179382324,
+ "step": 3940
+ },
+ {
+ "epoch": 54.74093490607252,
+ "grad_norm": 0.19796597957611084,
+ "learning_rate": 0.0006,
+ "loss": 3.559929609298706,
+ "step": 3941
+ },
+ {
+ "epoch": 54.75491480996068,
+ "grad_norm": 0.19003179669380188,
+ "learning_rate": 0.0006,
+ "loss": 3.5481486320495605,
+ "step": 3942
+ },
+ {
+ "epoch": 54.768894713848844,
+ "grad_norm": 0.189231738448143,
+ "learning_rate": 0.0006,
+ "loss": 3.5603561401367188,
+ "step": 3943
+ },
+ {
+ "epoch": 54.782874617737,
+ "grad_norm": 0.20949427783489227,
+ "learning_rate": 0.0006,
+ "loss": 3.567026138305664,
+ "step": 3944
+ },
+ {
+ "epoch": 54.796854521625164,
+ "grad_norm": 0.21650178730487823,
+ "learning_rate": 0.0006,
+ "loss": 3.5981621742248535,
+ "step": 3945
+ },
+ {
+ "epoch": 54.81083442551333,
+ "grad_norm": 0.21941770613193512,
+ "learning_rate": 0.0006,
+ "loss": 3.590226173400879,
+ "step": 3946
+ },
+ {
+ "epoch": 54.824814329401484,
+ "grad_norm": 0.2169734537601471,
+ "learning_rate": 0.0006,
+ "loss": 3.592764139175415,
+ "step": 3947
+ },
+ {
+ "epoch": 54.83879423328965,
+ "grad_norm": 0.20309467613697052,
+ "learning_rate": 0.0006,
+ "loss": 3.5706393718719482,
+ "step": 3948
+ },
+ {
+ "epoch": 54.8527741371778,
+ "grad_norm": 0.21803754568099976,
+ "learning_rate": 0.0006,
+ "loss": 3.5816526412963867,
+ "step": 3949
+ },
+ {
+ "epoch": 54.86675404106597,
+ "grad_norm": 0.22217069566249847,
+ "learning_rate": 0.0006,
+ "loss": 3.5895018577575684,
+ "step": 3950
+ },
+ {
+ "epoch": 54.88073394495413,
+ "grad_norm": 0.21204866468906403,
+ "learning_rate": 0.0006,
+ "loss": 3.5574231147766113,
+ "step": 3951
+ },
+ {
+ "epoch": 54.89471384884229,
+ "grad_norm": 0.2173423171043396,
+ "learning_rate": 0.0006,
+ "loss": 3.564763069152832,
+ "step": 3952
+ },
+ {
+ "epoch": 54.90869375273045,
+ "grad_norm": 0.2039082646369934,
+ "learning_rate": 0.0006,
+ "loss": 3.59708309173584,
+ "step": 3953
+ },
+ {
+ "epoch": 54.92267365661861,
+ "grad_norm": 0.20248384773731232,
+ "learning_rate": 0.0006,
+ "loss": 3.587890148162842,
+ "step": 3954
+ },
+ {
+ "epoch": 54.93665356050677,
+ "grad_norm": 0.20693068206310272,
+ "learning_rate": 0.0006,
+ "loss": 3.5569000244140625,
+ "step": 3955
+ },
+ {
+ "epoch": 54.95063346439493,
+ "grad_norm": 0.2109357714653015,
+ "learning_rate": 0.0006,
+ "loss": 3.552126884460449,
+ "step": 3956
+ },
+ {
+ "epoch": 54.964613368283096,
+ "grad_norm": 0.2278970628976822,
+ "learning_rate": 0.0006,
+ "loss": 3.564998149871826,
+ "step": 3957
+ },
+ {
+ "epoch": 54.97859327217125,
+ "grad_norm": 0.21663756668567657,
+ "learning_rate": 0.0006,
+ "loss": 3.571608543395996,
+ "step": 3958
+ },
+ {
+ "epoch": 54.992573176059416,
+ "grad_norm": 0.19653232395648956,
+ "learning_rate": 0.0006,
+ "loss": 3.5885231494903564,
+ "step": 3959
+ },
+ {
+ "epoch": 55.0,
+ "grad_norm": 0.21956856548786163,
+ "learning_rate": 0.0006,
+ "loss": 3.4966204166412354,
+ "step": 3960
+ },
+ {
+ "epoch": 55.0,
+ "eval_loss": 3.972649097442627,
+ "eval_runtime": 45.2298,
+ "eval_samples_per_second": 53.991,
+ "eval_steps_per_second": 3.383,
+ "step": 3960
+ },
+ {
+ "epoch": 55.01397990388816,
+ "grad_norm": 0.22733832895755768,
+ "learning_rate": 0.0006,
+ "loss": 3.546975612640381,
+ "step": 3961
+ },
+ {
+ "epoch": 55.02795980777632,
+ "grad_norm": 0.25451111793518066,
+ "learning_rate": 0.0006,
+ "loss": 3.54240083694458,
+ "step": 3962
+ },
+ {
+ "epoch": 55.04193971166448,
+ "grad_norm": 0.2394949048757553,
+ "learning_rate": 0.0006,
+ "loss": 3.5492677688598633,
+ "step": 3963
+ },
+ {
+ "epoch": 55.05591961555265,
+ "grad_norm": 0.2306671440601349,
+ "learning_rate": 0.0006,
+ "loss": 3.524200916290283,
+ "step": 3964
+ },
+ {
+ "epoch": 55.0698995194408,
+ "grad_norm": 0.2307029813528061,
+ "learning_rate": 0.0006,
+ "loss": 3.509249687194824,
+ "step": 3965
+ },
+ {
+ "epoch": 55.083879423328966,
+ "grad_norm": 0.24812111258506775,
+ "learning_rate": 0.0006,
+ "loss": 3.5500473976135254,
+ "step": 3966
+ },
+ {
+ "epoch": 55.09785932721712,
+ "grad_norm": 0.28564271330833435,
+ "learning_rate": 0.0006,
+ "loss": 3.5178303718566895,
+ "step": 3967
+ },
+ {
+ "epoch": 55.111839231105286,
+ "grad_norm": 0.26979005336761475,
+ "learning_rate": 0.0006,
+ "loss": 3.5306806564331055,
+ "step": 3968
+ },
+ {
+ "epoch": 55.12581913499345,
+ "grad_norm": 0.24274848401546478,
+ "learning_rate": 0.0006,
+ "loss": 3.5758519172668457,
+ "step": 3969
+ },
+ {
+ "epoch": 55.139799038881605,
+ "grad_norm": 0.2560444474220276,
+ "learning_rate": 0.0006,
+ "loss": 3.5417323112487793,
+ "step": 3970
+ },
+ {
+ "epoch": 55.15377894276977,
+ "grad_norm": 0.2553671598434448,
+ "learning_rate": 0.0006,
+ "loss": 3.5258004665374756,
+ "step": 3971
+ },
+ {
+ "epoch": 55.16775884665793,
+ "grad_norm": 0.2170111984014511,
+ "learning_rate": 0.0006,
+ "loss": 3.514847755432129,
+ "step": 3972
+ },
+ {
+ "epoch": 55.18173875054609,
+ "grad_norm": 0.20854522287845612,
+ "learning_rate": 0.0006,
+ "loss": 3.5248336791992188,
+ "step": 3973
+ },
+ {
+ "epoch": 55.19571865443425,
+ "grad_norm": 0.21873287856578827,
+ "learning_rate": 0.0006,
+ "loss": 3.5468008518218994,
+ "step": 3974
+ },
+ {
+ "epoch": 55.20969855832241,
+ "grad_norm": 0.21194154024124146,
+ "learning_rate": 0.0006,
+ "loss": 3.568512439727783,
+ "step": 3975
+ },
+ {
+ "epoch": 55.22367846221057,
+ "grad_norm": 0.23534680902957916,
+ "learning_rate": 0.0006,
+ "loss": 3.5285420417785645,
+ "step": 3976
+ },
+ {
+ "epoch": 55.237658366098735,
+ "grad_norm": 0.22674795985221863,
+ "learning_rate": 0.0006,
+ "loss": 3.5399436950683594,
+ "step": 3977
+ },
+ {
+ "epoch": 55.25163826998689,
+ "grad_norm": 0.2248486578464508,
+ "learning_rate": 0.0006,
+ "loss": 3.5241036415100098,
+ "step": 3978
+ },
+ {
+ "epoch": 55.265618173875055,
+ "grad_norm": 0.241151362657547,
+ "learning_rate": 0.0006,
+ "loss": 3.547079086303711,
+ "step": 3979
+ },
+ {
+ "epoch": 55.27959807776322,
+ "grad_norm": 0.2783249318599701,
+ "learning_rate": 0.0006,
+ "loss": 3.5442988872528076,
+ "step": 3980
+ },
+ {
+ "epoch": 55.293577981651374,
+ "grad_norm": 0.2743528485298157,
+ "learning_rate": 0.0006,
+ "loss": 3.529618978500366,
+ "step": 3981
+ },
+ {
+ "epoch": 55.30755788553954,
+ "grad_norm": 0.23901724815368652,
+ "learning_rate": 0.0006,
+ "loss": 3.5379443168640137,
+ "step": 3982
+ },
+ {
+ "epoch": 55.3215377894277,
+ "grad_norm": 0.22758841514587402,
+ "learning_rate": 0.0006,
+ "loss": 3.5446794033050537,
+ "step": 3983
+ },
+ {
+ "epoch": 55.33551769331586,
+ "grad_norm": 0.22634629905223846,
+ "learning_rate": 0.0006,
+ "loss": 3.521944522857666,
+ "step": 3984
+ },
+ {
+ "epoch": 55.34949759720402,
+ "grad_norm": 0.23372086882591248,
+ "learning_rate": 0.0006,
+ "loss": 3.565023899078369,
+ "step": 3985
+ },
+ {
+ "epoch": 55.36347750109218,
+ "grad_norm": 0.24722231924533844,
+ "learning_rate": 0.0006,
+ "loss": 3.535661220550537,
+ "step": 3986
+ },
+ {
+ "epoch": 55.37745740498034,
+ "grad_norm": 0.21684594452381134,
+ "learning_rate": 0.0006,
+ "loss": 3.59070086479187,
+ "step": 3987
+ },
+ {
+ "epoch": 55.391437308868504,
+ "grad_norm": 0.186308816075325,
+ "learning_rate": 0.0006,
+ "loss": 3.5373833179473877,
+ "step": 3988
+ },
+ {
+ "epoch": 55.40541721275666,
+ "grad_norm": 0.2240687608718872,
+ "learning_rate": 0.0006,
+ "loss": 3.613295555114746,
+ "step": 3989
+ },
+ {
+ "epoch": 55.419397116644824,
+ "grad_norm": 0.25724494457244873,
+ "learning_rate": 0.0006,
+ "loss": 3.581005096435547,
+ "step": 3990
+ },
+ {
+ "epoch": 55.43337702053299,
+ "grad_norm": 0.24023419618606567,
+ "learning_rate": 0.0006,
+ "loss": 3.563951015472412,
+ "step": 3991
+ },
+ {
+ "epoch": 55.44735692442114,
+ "grad_norm": 0.21473391354084015,
+ "learning_rate": 0.0006,
+ "loss": 3.5444185733795166,
+ "step": 3992
+ },
+ {
+ "epoch": 55.46133682830931,
+ "grad_norm": 0.20466852188110352,
+ "learning_rate": 0.0006,
+ "loss": 3.5585713386535645,
+ "step": 3993
+ },
+ {
+ "epoch": 55.47531673219746,
+ "grad_norm": 0.20925740897655487,
+ "learning_rate": 0.0006,
+ "loss": 3.5656747817993164,
+ "step": 3994
+ },
+ {
+ "epoch": 55.489296636085626,
+ "grad_norm": 0.2309556007385254,
+ "learning_rate": 0.0006,
+ "loss": 3.5653891563415527,
+ "step": 3995
+ },
+ {
+ "epoch": 55.50327653997379,
+ "grad_norm": 0.24270877242088318,
+ "learning_rate": 0.0006,
+ "loss": 3.5275917053222656,
+ "step": 3996
+ },
+ {
+ "epoch": 55.517256443861946,
+ "grad_norm": 0.22749851644039154,
+ "learning_rate": 0.0006,
+ "loss": 3.5392730236053467,
+ "step": 3997
+ },
+ {
+ "epoch": 55.53123634775011,
+ "grad_norm": 0.21618196368217468,
+ "learning_rate": 0.0006,
+ "loss": 3.5581812858581543,
+ "step": 3998
+ },
+ {
+ "epoch": 55.54521625163827,
+ "grad_norm": 0.22232134640216827,
+ "learning_rate": 0.0006,
+ "loss": 3.5340118408203125,
+ "step": 3999
+ },
+ {
+ "epoch": 55.55919615552643,
+ "grad_norm": 0.24543501436710358,
+ "learning_rate": 0.0006,
+ "loss": 3.572153329849243,
+ "step": 4000
+ },
+ {
+ "epoch": 55.57317605941459,
+ "grad_norm": 0.2385311722755432,
+ "learning_rate": 0.0006,
+ "loss": 3.5366618633270264,
+ "step": 4001
+ },
+ {
+ "epoch": 55.58715596330275,
+ "grad_norm": 0.27977821230888367,
+ "learning_rate": 0.0006,
+ "loss": 3.5788960456848145,
+ "step": 4002
+ },
+ {
+ "epoch": 55.60113586719091,
+ "grad_norm": 0.2929013967514038,
+ "learning_rate": 0.0006,
+ "loss": 3.61065936088562,
+ "step": 4003
+ },
+ {
+ "epoch": 55.615115771079076,
+ "grad_norm": 0.27820730209350586,
+ "learning_rate": 0.0006,
+ "loss": 3.538694381713867,
+ "step": 4004
+ },
+ {
+ "epoch": 55.62909567496723,
+ "grad_norm": 0.24188996851444244,
+ "learning_rate": 0.0006,
+ "loss": 3.571709632873535,
+ "step": 4005
+ },
+ {
+ "epoch": 55.643075578855395,
+ "grad_norm": 0.21659360826015472,
+ "learning_rate": 0.0006,
+ "loss": 3.5431199073791504,
+ "step": 4006
+ },
+ {
+ "epoch": 55.65705548274356,
+ "grad_norm": 0.23356232047080994,
+ "learning_rate": 0.0006,
+ "loss": 3.5664005279541016,
+ "step": 4007
+ },
+ {
+ "epoch": 55.671035386631715,
+ "grad_norm": 0.21523472666740417,
+ "learning_rate": 0.0006,
+ "loss": 3.575711250305176,
+ "step": 4008
+ },
+ {
+ "epoch": 55.68501529051988,
+ "grad_norm": 0.22101815044879913,
+ "learning_rate": 0.0006,
+ "loss": 3.5843849182128906,
+ "step": 4009
+ },
+ {
+ "epoch": 55.69899519440804,
+ "grad_norm": 0.24153906106948853,
+ "learning_rate": 0.0006,
+ "loss": 3.5737733840942383,
+ "step": 4010
+ },
+ {
+ "epoch": 55.7129750982962,
+ "grad_norm": 0.2181350439786911,
+ "learning_rate": 0.0006,
+ "loss": 3.582613945007324,
+ "step": 4011
+ },
+ {
+ "epoch": 55.72695500218436,
+ "grad_norm": 0.21046742796897888,
+ "learning_rate": 0.0006,
+ "loss": 3.5380563735961914,
+ "step": 4012
+ },
+ {
+ "epoch": 55.74093490607252,
+ "grad_norm": 0.23996953666210175,
+ "learning_rate": 0.0006,
+ "loss": 3.57753849029541,
+ "step": 4013
+ },
+ {
+ "epoch": 55.75491480996068,
+ "grad_norm": 0.24543973803520203,
+ "learning_rate": 0.0006,
+ "loss": 3.578747272491455,
+ "step": 4014
+ },
+ {
+ "epoch": 55.768894713848844,
+ "grad_norm": 0.23597940802574158,
+ "learning_rate": 0.0006,
+ "loss": 3.5816988945007324,
+ "step": 4015
+ },
+ {
+ "epoch": 55.782874617737,
+ "grad_norm": 0.237411230802536,
+ "learning_rate": 0.0006,
+ "loss": 3.5659806728363037,
+ "step": 4016
+ },
+ {
+ "epoch": 55.796854521625164,
+ "grad_norm": 0.23947440087795258,
+ "learning_rate": 0.0006,
+ "loss": 3.545125961303711,
+ "step": 4017
+ },
+ {
+ "epoch": 55.81083442551333,
+ "grad_norm": 0.21562735736370087,
+ "learning_rate": 0.0006,
+ "loss": 3.5571303367614746,
+ "step": 4018
+ },
+ {
+ "epoch": 55.824814329401484,
+ "grad_norm": 0.21958434581756592,
+ "learning_rate": 0.0006,
+ "loss": 3.5243420600891113,
+ "step": 4019
+ },
+ {
+ "epoch": 55.83879423328965,
+ "grad_norm": 0.23856471478939056,
+ "learning_rate": 0.0006,
+ "loss": 3.586078643798828,
+ "step": 4020
+ },
+ {
+ "epoch": 55.8527741371778,
+ "grad_norm": 0.20703551173210144,
+ "learning_rate": 0.0006,
+ "loss": 3.5503201484680176,
+ "step": 4021
+ },
+ {
+ "epoch": 55.86675404106597,
+ "grad_norm": 0.21183231472969055,
+ "learning_rate": 0.0006,
+ "loss": 3.5873844623565674,
+ "step": 4022
+ },
+ {
+ "epoch": 55.88073394495413,
+ "grad_norm": 0.2129688709974289,
+ "learning_rate": 0.0006,
+ "loss": 3.582061290740967,
+ "step": 4023
+ },
+ {
+ "epoch": 55.89471384884229,
+ "grad_norm": 0.2122214287519455,
+ "learning_rate": 0.0006,
+ "loss": 3.547175884246826,
+ "step": 4024
+ },
+ {
+ "epoch": 55.90869375273045,
+ "grad_norm": 0.214874267578125,
+ "learning_rate": 0.0006,
+ "loss": 3.5322279930114746,
+ "step": 4025
+ },
+ {
+ "epoch": 55.92267365661861,
+ "grad_norm": 0.24104614555835724,
+ "learning_rate": 0.0006,
+ "loss": 3.5742111206054688,
+ "step": 4026
+ },
+ {
+ "epoch": 55.93665356050677,
+ "grad_norm": 0.2257685512304306,
+ "learning_rate": 0.0006,
+ "loss": 3.5686793327331543,
+ "step": 4027
+ },
+ {
+ "epoch": 55.95063346439493,
+ "grad_norm": 0.2170567363500595,
+ "learning_rate": 0.0006,
+ "loss": 3.5670571327209473,
+ "step": 4028
+ },
+ {
+ "epoch": 55.964613368283096,
+ "grad_norm": 0.2003280222415924,
+ "learning_rate": 0.0006,
+ "loss": 3.533921718597412,
+ "step": 4029
+ },
+ {
+ "epoch": 55.97859327217125,
+ "grad_norm": 0.21483278274536133,
+ "learning_rate": 0.0006,
+ "loss": 3.539720058441162,
+ "step": 4030
+ },
+ {
+ "epoch": 55.992573176059416,
+ "grad_norm": 0.26908108592033386,
+ "learning_rate": 0.0006,
+ "loss": 3.575934886932373,
+ "step": 4031
+ },
+ {
+ "epoch": 56.0,
+ "grad_norm": 0.30002665519714355,
+ "learning_rate": 0.0006,
+ "loss": 3.5702414512634277,
+ "step": 4032
+ },
+ {
+ "epoch": 56.0,
+ "eval_loss": 3.9834072589874268,
+ "eval_runtime": 46.2268,
+ "eval_samples_per_second": 52.826,
+ "eval_steps_per_second": 3.31,
+ "step": 4032
+ },
+ {
+ "epoch": 56.01397990388816,
+ "grad_norm": 0.25298207998275757,
+ "learning_rate": 0.0006,
+ "loss": 3.538151741027832,
+ "step": 4033
+ },
+ {
+ "epoch": 56.02795980777632,
+ "grad_norm": 0.2231103479862213,
+ "learning_rate": 0.0006,
+ "loss": 3.551466941833496,
+ "step": 4034
+ },
+ {
+ "epoch": 56.04193971166448,
+ "grad_norm": 0.2504221796989441,
+ "learning_rate": 0.0006,
+ "loss": 3.5361199378967285,
+ "step": 4035
+ },
+ {
+ "epoch": 56.05591961555265,
+ "grad_norm": 0.23491773009300232,
+ "learning_rate": 0.0006,
+ "loss": 3.549346446990967,
+ "step": 4036
+ },
+ {
+ "epoch": 56.0698995194408,
+ "grad_norm": 0.23068852722644806,
+ "learning_rate": 0.0006,
+ "loss": 3.5243453979492188,
+ "step": 4037
+ },
+ {
+ "epoch": 56.083879423328966,
+ "grad_norm": 0.22160249948501587,
+ "learning_rate": 0.0006,
+ "loss": 3.551191806793213,
+ "step": 4038
+ },
+ {
+ "epoch": 56.09785932721712,
+ "grad_norm": 0.2389034926891327,
+ "learning_rate": 0.0006,
+ "loss": 3.5358071327209473,
+ "step": 4039
+ },
+ {
+ "epoch": 56.111839231105286,
+ "grad_norm": 0.2552168071269989,
+ "learning_rate": 0.0006,
+ "loss": 3.564204692840576,
+ "step": 4040
+ },
+ {
+ "epoch": 56.12581913499345,
+ "grad_norm": 0.2802336812019348,
+ "learning_rate": 0.0006,
+ "loss": 3.540386438369751,
+ "step": 4041
+ },
+ {
+ "epoch": 56.139799038881605,
+ "grad_norm": 0.2564619779586792,
+ "learning_rate": 0.0006,
+ "loss": 3.544264554977417,
+ "step": 4042
+ },
+ {
+ "epoch": 56.15377894276977,
+ "grad_norm": 0.24272632598876953,
+ "learning_rate": 0.0006,
+ "loss": 3.509497880935669,
+ "step": 4043
+ },
+ {
+ "epoch": 56.16775884665793,
+ "grad_norm": 0.23981881141662598,
+ "learning_rate": 0.0006,
+ "loss": 3.551090955734253,
+ "step": 4044
+ },
+ {
+ "epoch": 56.18173875054609,
+ "grad_norm": 0.22418269515037537,
+ "learning_rate": 0.0006,
+ "loss": 3.558614492416382,
+ "step": 4045
+ },
+ {
+ "epoch": 56.19571865443425,
+ "grad_norm": 0.21792462468147278,
+ "learning_rate": 0.0006,
+ "loss": 3.540558338165283,
+ "step": 4046
+ },
+ {
+ "epoch": 56.20969855832241,
+ "grad_norm": 0.21248634159564972,
+ "learning_rate": 0.0006,
+ "loss": 3.5273942947387695,
+ "step": 4047
+ },
+ {
+ "epoch": 56.22367846221057,
+ "grad_norm": 0.1863572895526886,
+ "learning_rate": 0.0006,
+ "loss": 3.555302143096924,
+ "step": 4048
+ },
+ {
+ "epoch": 56.237658366098735,
+ "grad_norm": 0.21031822264194489,
+ "learning_rate": 0.0006,
+ "loss": 3.547515630722046,
+ "step": 4049
+ },
+ {
+ "epoch": 56.25163826998689,
+ "grad_norm": 0.19754044711589813,
+ "learning_rate": 0.0006,
+ "loss": 3.5476508140563965,
+ "step": 4050
+ },
+ {
+ "epoch": 56.265618173875055,
+ "grad_norm": 0.19707852602005005,
+ "learning_rate": 0.0006,
+ "loss": 3.506730794906616,
+ "step": 4051
+ },
+ {
+ "epoch": 56.27959807776322,
+ "grad_norm": 0.21011239290237427,
+ "learning_rate": 0.0006,
+ "loss": 3.51116681098938,
+ "step": 4052
+ },
+ {
+ "epoch": 56.293577981651374,
+ "grad_norm": 0.20281212031841278,
+ "learning_rate": 0.0006,
+ "loss": 3.549513816833496,
+ "step": 4053
+ },
+ {
+ "epoch": 56.30755788553954,
+ "grad_norm": 0.19198910892009735,
+ "learning_rate": 0.0006,
+ "loss": 3.5299534797668457,
+ "step": 4054
+ },
+ {
+ "epoch": 56.3215377894277,
+ "grad_norm": 0.1861368715763092,
+ "learning_rate": 0.0006,
+ "loss": 3.513909339904785,
+ "step": 4055
+ },
+ {
+ "epoch": 56.33551769331586,
+ "grad_norm": 0.20779506862163544,
+ "learning_rate": 0.0006,
+ "loss": 3.5528712272644043,
+ "step": 4056
+ },
+ {
+ "epoch": 56.34949759720402,
+ "grad_norm": 0.2229684591293335,
+ "learning_rate": 0.0006,
+ "loss": 3.518359661102295,
+ "step": 4057
+ },
+ {
+ "epoch": 56.36347750109218,
+ "grad_norm": 0.22998179495334625,
+ "learning_rate": 0.0006,
+ "loss": 3.5004091262817383,
+ "step": 4058
+ },
+ {
+ "epoch": 56.37745740498034,
+ "grad_norm": 0.2176709622144699,
+ "learning_rate": 0.0006,
+ "loss": 3.550295829772949,
+ "step": 4059
+ },
+ {
+ "epoch": 56.391437308868504,
+ "grad_norm": 0.19512872397899628,
+ "learning_rate": 0.0006,
+ "loss": 3.5305161476135254,
+ "step": 4060
+ },
+ {
+ "epoch": 56.40541721275666,
+ "grad_norm": 0.23127448558807373,
+ "learning_rate": 0.0006,
+ "loss": 3.5341286659240723,
+ "step": 4061
+ },
+ {
+ "epoch": 56.419397116644824,
+ "grad_norm": 0.20905959606170654,
+ "learning_rate": 0.0006,
+ "loss": 3.553912401199341,
+ "step": 4062
+ },
+ {
+ "epoch": 56.43337702053299,
+ "grad_norm": 0.23370878398418427,
+ "learning_rate": 0.0006,
+ "loss": 3.5700249671936035,
+ "step": 4063
+ },
+ {
+ "epoch": 56.44735692442114,
+ "grad_norm": 0.233205646276474,
+ "learning_rate": 0.0006,
+ "loss": 3.5184097290039062,
+ "step": 4064
+ },
+ {
+ "epoch": 56.46133682830931,
+ "grad_norm": 0.23928777873516083,
+ "learning_rate": 0.0006,
+ "loss": 3.535874366760254,
+ "step": 4065
+ },
+ {
+ "epoch": 56.47531673219746,
+ "grad_norm": 0.24950815737247467,
+ "learning_rate": 0.0006,
+ "loss": 3.508136749267578,
+ "step": 4066
+ },
+ {
+ "epoch": 56.489296636085626,
+ "grad_norm": 0.24821820855140686,
+ "learning_rate": 0.0006,
+ "loss": 3.5421361923217773,
+ "step": 4067
+ },
+ {
+ "epoch": 56.50327653997379,
+ "grad_norm": 0.2252482771873474,
+ "learning_rate": 0.0006,
+ "loss": 3.5516514778137207,
+ "step": 4068
+ },
+ {
+ "epoch": 56.517256443861946,
+ "grad_norm": 0.2238101363182068,
+ "learning_rate": 0.0006,
+ "loss": 3.567741632461548,
+ "step": 4069
+ },
+ {
+ "epoch": 56.53123634775011,
+ "grad_norm": 0.20759683847427368,
+ "learning_rate": 0.0006,
+ "loss": 3.544705390930176,
+ "step": 4070
+ },
+ {
+ "epoch": 56.54521625163827,
+ "grad_norm": 0.21918460726737976,
+ "learning_rate": 0.0006,
+ "loss": 3.5725836753845215,
+ "step": 4071
+ },
+ {
+ "epoch": 56.55919615552643,
+ "grad_norm": 0.22640042006969452,
+ "learning_rate": 0.0006,
+ "loss": 3.5447535514831543,
+ "step": 4072
+ },
+ {
+ "epoch": 56.57317605941459,
+ "grad_norm": 0.23130203783512115,
+ "learning_rate": 0.0006,
+ "loss": 3.5620853900909424,
+ "step": 4073
+ },
+ {
+ "epoch": 56.58715596330275,
+ "grad_norm": 0.2215641736984253,
+ "learning_rate": 0.0006,
+ "loss": 3.5416438579559326,
+ "step": 4074
+ },
+ {
+ "epoch": 56.60113586719091,
+ "grad_norm": 0.20106497406959534,
+ "learning_rate": 0.0006,
+ "loss": 3.537386178970337,
+ "step": 4075
+ },
+ {
+ "epoch": 56.615115771079076,
+ "grad_norm": 0.2045976221561432,
+ "learning_rate": 0.0006,
+ "loss": 3.555032730102539,
+ "step": 4076
+ },
+ {
+ "epoch": 56.62909567496723,
+ "grad_norm": 0.20097647607326508,
+ "learning_rate": 0.0006,
+ "loss": 3.559572458267212,
+ "step": 4077
+ },
+ {
+ "epoch": 56.643075578855395,
+ "grad_norm": 0.24158388376235962,
+ "learning_rate": 0.0006,
+ "loss": 3.56520938873291,
+ "step": 4078
+ },
+ {
+ "epoch": 56.65705548274356,
+ "grad_norm": 0.2687791585922241,
+ "learning_rate": 0.0006,
+ "loss": 3.545924663543701,
+ "step": 4079
+ },
+ {
+ "epoch": 56.671035386631715,
+ "grad_norm": 0.22466111183166504,
+ "learning_rate": 0.0006,
+ "loss": 3.5556845664978027,
+ "step": 4080
+ },
+ {
+ "epoch": 56.68501529051988,
+ "grad_norm": 0.2177814394235611,
+ "learning_rate": 0.0006,
+ "loss": 3.5799131393432617,
+ "step": 4081
+ },
+ {
+ "epoch": 56.69899519440804,
+ "grad_norm": 0.2700476050376892,
+ "learning_rate": 0.0006,
+ "loss": 3.5859055519104004,
+ "step": 4082
+ },
+ {
+ "epoch": 56.7129750982962,
+ "grad_norm": 0.28230178356170654,
+ "learning_rate": 0.0006,
+ "loss": 3.5733890533447266,
+ "step": 4083
+ },
+ {
+ "epoch": 56.72695500218436,
+ "grad_norm": 0.29298731684684753,
+ "learning_rate": 0.0006,
+ "loss": 3.556626319885254,
+ "step": 4084
+ },
+ {
+ "epoch": 56.74093490607252,
+ "grad_norm": 0.2818183898925781,
+ "learning_rate": 0.0006,
+ "loss": 3.5884718894958496,
+ "step": 4085
+ },
+ {
+ "epoch": 56.75491480996068,
+ "grad_norm": 0.24008697271347046,
+ "learning_rate": 0.0006,
+ "loss": 3.5464529991149902,
+ "step": 4086
+ },
+ {
+ "epoch": 56.768894713848844,
+ "grad_norm": 0.23406296968460083,
+ "learning_rate": 0.0006,
+ "loss": 3.5622801780700684,
+ "step": 4087
+ },
+ {
+ "epoch": 56.782874617737,
+ "grad_norm": 0.26089322566986084,
+ "learning_rate": 0.0006,
+ "loss": 3.5775020122528076,
+ "step": 4088
+ },
+ {
+ "epoch": 56.796854521625164,
+ "grad_norm": 0.2576654851436615,
+ "learning_rate": 0.0006,
+ "loss": 3.5543627738952637,
+ "step": 4089
+ },
+ {
+ "epoch": 56.81083442551333,
+ "grad_norm": 0.26576393842697144,
+ "learning_rate": 0.0006,
+ "loss": 3.546170711517334,
+ "step": 4090
+ },
+ {
+ "epoch": 56.824814329401484,
+ "grad_norm": 0.22380715608596802,
+ "learning_rate": 0.0006,
+ "loss": 3.5437729358673096,
+ "step": 4091
+ },
+ {
+ "epoch": 56.83879423328965,
+ "grad_norm": 0.20786714553833008,
+ "learning_rate": 0.0006,
+ "loss": 3.5951266288757324,
+ "step": 4092
+ },
+ {
+ "epoch": 56.8527741371778,
+ "grad_norm": 0.23177042603492737,
+ "learning_rate": 0.0006,
+ "loss": 3.549454689025879,
+ "step": 4093
+ },
+ {
+ "epoch": 56.86675404106597,
+ "grad_norm": 0.21466009318828583,
+ "learning_rate": 0.0006,
+ "loss": 3.5611233711242676,
+ "step": 4094
+ },
+ {
+ "epoch": 56.88073394495413,
+ "grad_norm": 0.20928414165973663,
+ "learning_rate": 0.0006,
+ "loss": 3.5550684928894043,
+ "step": 4095
+ },
+ {
+ "epoch": 56.89471384884229,
+ "grad_norm": 0.20727156102657318,
+ "learning_rate": 0.0006,
+ "loss": 3.552496910095215,
+ "step": 4096
+ },
+ {
+ "epoch": 56.90869375273045,
+ "grad_norm": 0.21370401978492737,
+ "learning_rate": 0.0006,
+ "loss": 3.5763869285583496,
+ "step": 4097
+ },
+ {
+ "epoch": 56.92267365661861,
+ "grad_norm": 0.22490337491035461,
+ "learning_rate": 0.0006,
+ "loss": 3.538986921310425,
+ "step": 4098
+ },
+ {
+ "epoch": 56.93665356050677,
+ "grad_norm": 0.23320236802101135,
+ "learning_rate": 0.0006,
+ "loss": 3.5514214038848877,
+ "step": 4099
+ },
+ {
+ "epoch": 56.95063346439493,
+ "grad_norm": 0.22050419449806213,
+ "learning_rate": 0.0006,
+ "loss": 3.5486960411071777,
+ "step": 4100
+ },
+ {
+ "epoch": 56.964613368283096,
+ "grad_norm": 0.2241443395614624,
+ "learning_rate": 0.0006,
+ "loss": 3.5858001708984375,
+ "step": 4101
+ },
+ {
+ "epoch": 56.97859327217125,
+ "grad_norm": 0.24904389679431915,
+ "learning_rate": 0.0006,
+ "loss": 3.586472511291504,
+ "step": 4102
+ },
+ {
+ "epoch": 56.992573176059416,
+ "grad_norm": 0.2333211451768875,
+ "learning_rate": 0.0006,
+ "loss": 3.5463132858276367,
+ "step": 4103
+ },
+ {
+ "epoch": 57.0,
+ "grad_norm": 0.24142783880233765,
+ "learning_rate": 0.0006,
+ "loss": 3.5642542839050293,
+ "step": 4104
+ },
+ {
+ "epoch": 57.0,
+ "eval_loss": 3.973973035812378,
+ "eval_runtime": 46.2906,
+ "eval_samples_per_second": 52.754,
+ "eval_steps_per_second": 3.305,
+ "step": 4104
+ },
+ {
+ "epoch": 57.01397990388816,
+ "grad_norm": 0.21989624202251434,
+ "learning_rate": 0.0006,
+ "loss": 3.539435863494873,
+ "step": 4105
+ },
+ {
+ "epoch": 57.02795980777632,
+ "grad_norm": 0.24061834812164307,
+ "learning_rate": 0.0006,
+ "loss": 3.5251410007476807,
+ "step": 4106
+ },
+ {
+ "epoch": 57.04193971166448,
+ "grad_norm": 0.2483278512954712,
+ "learning_rate": 0.0006,
+ "loss": 3.5104010105133057,
+ "step": 4107
+ },
+ {
+ "epoch": 57.05591961555265,
+ "grad_norm": 0.2717698812484741,
+ "learning_rate": 0.0006,
+ "loss": 3.5134170055389404,
+ "step": 4108
+ },
+ {
+ "epoch": 57.0698995194408,
+ "grad_norm": 0.27335646748542786,
+ "learning_rate": 0.0006,
+ "loss": 3.53574275970459,
+ "step": 4109
+ },
+ {
+ "epoch": 57.083879423328966,
+ "grad_norm": 0.2423052042722702,
+ "learning_rate": 0.0006,
+ "loss": 3.4960169792175293,
+ "step": 4110
+ },
+ {
+ "epoch": 57.09785932721712,
+ "grad_norm": 0.2241092175245285,
+ "learning_rate": 0.0006,
+ "loss": 3.5409107208251953,
+ "step": 4111
+ },
+ {
+ "epoch": 57.111839231105286,
+ "grad_norm": 0.23098452389240265,
+ "learning_rate": 0.0006,
+ "loss": 3.5326709747314453,
+ "step": 4112
+ },
+ {
+ "epoch": 57.12581913499345,
+ "grad_norm": 0.2500186562538147,
+ "learning_rate": 0.0006,
+ "loss": 3.509953498840332,
+ "step": 4113
+ },
+ {
+ "epoch": 57.139799038881605,
+ "grad_norm": 0.26994550228118896,
+ "learning_rate": 0.0006,
+ "loss": 3.560410499572754,
+ "step": 4114
+ },
+ {
+ "epoch": 57.15377894276977,
+ "grad_norm": 0.24950402975082397,
+ "learning_rate": 0.0006,
+ "loss": 3.517613649368286,
+ "step": 4115
+ },
+ {
+ "epoch": 57.16775884665793,
+ "grad_norm": 0.21742430329322815,
+ "learning_rate": 0.0006,
+ "loss": 3.531256675720215,
+ "step": 4116
+ },
+ {
+ "epoch": 57.18173875054609,
+ "grad_norm": 0.29069146513938904,
+ "learning_rate": 0.0006,
+ "loss": 3.5283756256103516,
+ "step": 4117
+ },
+ {
+ "epoch": 57.19571865443425,
+ "grad_norm": 0.2901996970176697,
+ "learning_rate": 0.0006,
+ "loss": 3.5460801124572754,
+ "step": 4118
+ },
+ {
+ "epoch": 57.20969855832241,
+ "grad_norm": 0.2534845471382141,
+ "learning_rate": 0.0006,
+ "loss": 3.515536308288574,
+ "step": 4119
+ },
+ {
+ "epoch": 57.22367846221057,
+ "grad_norm": 0.2352340817451477,
+ "learning_rate": 0.0006,
+ "loss": 3.5281717777252197,
+ "step": 4120
+ },
+ {
+ "epoch": 57.237658366098735,
+ "grad_norm": 0.2263645976781845,
+ "learning_rate": 0.0006,
+ "loss": 3.5629191398620605,
+ "step": 4121
+ },
+ {
+ "epoch": 57.25163826998689,
+ "grad_norm": 0.21413370966911316,
+ "learning_rate": 0.0006,
+ "loss": 3.5342142581939697,
+ "step": 4122
+ },
+ {
+ "epoch": 57.265618173875055,
+ "grad_norm": 0.1969698667526245,
+ "learning_rate": 0.0006,
+ "loss": 3.5467586517333984,
+ "step": 4123
+ },
+ {
+ "epoch": 57.27959807776322,
+ "grad_norm": 0.2106606364250183,
+ "learning_rate": 0.0006,
+ "loss": 3.5409536361694336,
+ "step": 4124
+ },
+ {
+ "epoch": 57.293577981651374,
+ "grad_norm": 0.21824438869953156,
+ "learning_rate": 0.0006,
+ "loss": 3.5246548652648926,
+ "step": 4125
+ },
+ {
+ "epoch": 57.30755788553954,
+ "grad_norm": 0.2147768884897232,
+ "learning_rate": 0.0006,
+ "loss": 3.5411794185638428,
+ "step": 4126
+ },
+ {
+ "epoch": 57.3215377894277,
+ "grad_norm": 0.21352852880954742,
+ "learning_rate": 0.0006,
+ "loss": 3.569387197494507,
+ "step": 4127
+ },
+ {
+ "epoch": 57.33551769331586,
+ "grad_norm": 0.20957978069782257,
+ "learning_rate": 0.0006,
+ "loss": 3.522695779800415,
+ "step": 4128
+ },
+ {
+ "epoch": 57.34949759720402,
+ "grad_norm": 0.2013026475906372,
+ "learning_rate": 0.0006,
+ "loss": 3.5485787391662598,
+ "step": 4129
+ },
+ {
+ "epoch": 57.36347750109218,
+ "grad_norm": 0.2260376214981079,
+ "learning_rate": 0.0006,
+ "loss": 3.547607421875,
+ "step": 4130
+ },
+ {
+ "epoch": 57.37745740498034,
+ "grad_norm": 0.22991685569286346,
+ "learning_rate": 0.0006,
+ "loss": 3.5464730262756348,
+ "step": 4131
+ },
+ {
+ "epoch": 57.391437308868504,
+ "grad_norm": 0.19638051092624664,
+ "learning_rate": 0.0006,
+ "loss": 3.54355525970459,
+ "step": 4132
+ },
+ {
+ "epoch": 57.40541721275666,
+ "grad_norm": 0.19450774788856506,
+ "learning_rate": 0.0006,
+ "loss": 3.5490050315856934,
+ "step": 4133
+ },
+ {
+ "epoch": 57.419397116644824,
+ "grad_norm": 0.21798551082611084,
+ "learning_rate": 0.0006,
+ "loss": 3.56355619430542,
+ "step": 4134
+ },
+ {
+ "epoch": 57.43337702053299,
+ "grad_norm": 0.2129846215248108,
+ "learning_rate": 0.0006,
+ "loss": 3.5607380867004395,
+ "step": 4135
+ },
+ {
+ "epoch": 57.44735692442114,
+ "grad_norm": 0.20589227974414825,
+ "learning_rate": 0.0006,
+ "loss": 3.523768663406372,
+ "step": 4136
+ },
+ {
+ "epoch": 57.46133682830931,
+ "grad_norm": 0.21841686964035034,
+ "learning_rate": 0.0006,
+ "loss": 3.5187885761260986,
+ "step": 4137
+ },
+ {
+ "epoch": 57.47531673219746,
+ "grad_norm": 0.2118791788816452,
+ "learning_rate": 0.0006,
+ "loss": 3.5271782875061035,
+ "step": 4138
+ },
+ {
+ "epoch": 57.489296636085626,
+ "grad_norm": 0.21905459463596344,
+ "learning_rate": 0.0006,
+ "loss": 3.546968460083008,
+ "step": 4139
+ },
+ {
+ "epoch": 57.50327653997379,
+ "grad_norm": 0.23899133503437042,
+ "learning_rate": 0.0006,
+ "loss": 3.5156688690185547,
+ "step": 4140
+ },
+ {
+ "epoch": 57.517256443861946,
+ "grad_norm": 0.23873545229434967,
+ "learning_rate": 0.0006,
+ "loss": 3.5271472930908203,
+ "step": 4141
+ },
+ {
+ "epoch": 57.53123634775011,
+ "grad_norm": 0.20691858232021332,
+ "learning_rate": 0.0006,
+ "loss": 3.552854537963867,
+ "step": 4142
+ },
+ {
+ "epoch": 57.54521625163827,
+ "grad_norm": 0.21962891519069672,
+ "learning_rate": 0.0006,
+ "loss": 3.5258498191833496,
+ "step": 4143
+ },
+ {
+ "epoch": 57.55919615552643,
+ "grad_norm": 0.21762165427207947,
+ "learning_rate": 0.0006,
+ "loss": 3.566831588745117,
+ "step": 4144
+ },
+ {
+ "epoch": 57.57317605941459,
+ "grad_norm": 0.19603654742240906,
+ "learning_rate": 0.0006,
+ "loss": 3.5393714904785156,
+ "step": 4145
+ },
+ {
+ "epoch": 57.58715596330275,
+ "grad_norm": 0.20347437262535095,
+ "learning_rate": 0.0006,
+ "loss": 3.538390874862671,
+ "step": 4146
+ },
+ {
+ "epoch": 57.60113586719091,
+ "grad_norm": 0.2179173231124878,
+ "learning_rate": 0.0006,
+ "loss": 3.566631317138672,
+ "step": 4147
+ },
+ {
+ "epoch": 57.615115771079076,
+ "grad_norm": 0.19678309559822083,
+ "learning_rate": 0.0006,
+ "loss": 3.5659375190734863,
+ "step": 4148
+ },
+ {
+ "epoch": 57.62909567496723,
+ "grad_norm": 0.20221677422523499,
+ "learning_rate": 0.0006,
+ "loss": 3.5679430961608887,
+ "step": 4149
+ },
+ {
+ "epoch": 57.643075578855395,
+ "grad_norm": 0.21337579190731049,
+ "learning_rate": 0.0006,
+ "loss": 3.5330681800842285,
+ "step": 4150
+ },
+ {
+ "epoch": 57.65705548274356,
+ "grad_norm": 0.2646789848804474,
+ "learning_rate": 0.0006,
+ "loss": 3.5216803550720215,
+ "step": 4151
+ },
+ {
+ "epoch": 57.671035386631715,
+ "grad_norm": 0.304950088262558,
+ "learning_rate": 0.0006,
+ "loss": 3.5570156574249268,
+ "step": 4152
+ },
+ {
+ "epoch": 57.68501529051988,
+ "grad_norm": 0.2739402651786804,
+ "learning_rate": 0.0006,
+ "loss": 3.5844314098358154,
+ "step": 4153
+ },
+ {
+ "epoch": 57.69899519440804,
+ "grad_norm": 0.19060099124908447,
+ "learning_rate": 0.0006,
+ "loss": 3.571052074432373,
+ "step": 4154
+ },
+ {
+ "epoch": 57.7129750982962,
+ "grad_norm": 0.2941007614135742,
+ "learning_rate": 0.0006,
+ "loss": 3.543100357055664,
+ "step": 4155
+ },
+ {
+ "epoch": 57.72695500218436,
+ "grad_norm": 0.34624332189559937,
+ "learning_rate": 0.0006,
+ "loss": 3.564270496368408,
+ "step": 4156
+ },
+ {
+ "epoch": 57.74093490607252,
+ "grad_norm": 0.30635201930999756,
+ "learning_rate": 0.0006,
+ "loss": 3.5390584468841553,
+ "step": 4157
+ },
+ {
+ "epoch": 57.75491480996068,
+ "grad_norm": 0.2204878330230713,
+ "learning_rate": 0.0006,
+ "loss": 3.5427281856536865,
+ "step": 4158
+ },
+ {
+ "epoch": 57.768894713848844,
+ "grad_norm": 0.20659378170967102,
+ "learning_rate": 0.0006,
+ "loss": 3.528977155685425,
+ "step": 4159
+ },
+ {
+ "epoch": 57.782874617737,
+ "grad_norm": 0.2281361073255539,
+ "learning_rate": 0.0006,
+ "loss": 3.5531792640686035,
+ "step": 4160
+ },
+ {
+ "epoch": 57.796854521625164,
+ "grad_norm": 0.22478239238262177,
+ "learning_rate": 0.0006,
+ "loss": 3.566704750061035,
+ "step": 4161
+ },
+ {
+ "epoch": 57.81083442551333,
+ "grad_norm": 0.20797103643417358,
+ "learning_rate": 0.0006,
+ "loss": 3.5684943199157715,
+ "step": 4162
+ },
+ {
+ "epoch": 57.824814329401484,
+ "grad_norm": 0.2108374983072281,
+ "learning_rate": 0.0006,
+ "loss": 3.5475950241088867,
+ "step": 4163
+ },
+ {
+ "epoch": 57.83879423328965,
+ "grad_norm": 0.2268034815788269,
+ "learning_rate": 0.0006,
+ "loss": 3.5456833839416504,
+ "step": 4164
+ },
+ {
+ "epoch": 57.8527741371778,
+ "grad_norm": 0.2131519913673401,
+ "learning_rate": 0.0006,
+ "loss": 3.5316243171691895,
+ "step": 4165
+ },
+ {
+ "epoch": 57.86675404106597,
+ "grad_norm": 0.20163841545581818,
+ "learning_rate": 0.0006,
+ "loss": 3.5320897102355957,
+ "step": 4166
+ },
+ {
+ "epoch": 57.88073394495413,
+ "grad_norm": 0.20961757004261017,
+ "learning_rate": 0.0006,
+ "loss": 3.5800695419311523,
+ "step": 4167
+ },
+ {
+ "epoch": 57.89471384884229,
+ "grad_norm": 0.2061416506767273,
+ "learning_rate": 0.0006,
+ "loss": 3.544395923614502,
+ "step": 4168
+ },
+ {
+ "epoch": 57.90869375273045,
+ "grad_norm": 0.20306318998336792,
+ "learning_rate": 0.0006,
+ "loss": 3.554436683654785,
+ "step": 4169
+ },
+ {
+ "epoch": 57.92267365661861,
+ "grad_norm": 0.20685963332653046,
+ "learning_rate": 0.0006,
+ "loss": 3.5614635944366455,
+ "step": 4170
+ },
+ {
+ "epoch": 57.93665356050677,
+ "grad_norm": 0.19938082993030548,
+ "learning_rate": 0.0006,
+ "loss": 3.578136920928955,
+ "step": 4171
+ },
+ {
+ "epoch": 57.95063346439493,
+ "grad_norm": 0.2150411158800125,
+ "learning_rate": 0.0006,
+ "loss": 3.5754270553588867,
+ "step": 4172
+ },
+ {
+ "epoch": 57.964613368283096,
+ "grad_norm": 0.23399604856967926,
+ "learning_rate": 0.0006,
+ "loss": 3.5553112030029297,
+ "step": 4173
+ },
+ {
+ "epoch": 57.97859327217125,
+ "grad_norm": 0.2496841847896576,
+ "learning_rate": 0.0006,
+ "loss": 3.5509696006774902,
+ "step": 4174
+ },
+ {
+ "epoch": 57.992573176059416,
+ "grad_norm": 0.23759980499744415,
+ "learning_rate": 0.0006,
+ "loss": 3.5806684494018555,
+ "step": 4175
+ },
+ {
+ "epoch": 58.0,
+ "grad_norm": 0.2494540512561798,
+ "learning_rate": 0.0006,
+ "loss": 3.541708469390869,
+ "step": 4176
+ },
+ {
+ "epoch": 58.0,
+ "eval_loss": 3.970658779144287,
+ "eval_runtime": 46.0262,
+ "eval_samples_per_second": 53.057,
+ "eval_steps_per_second": 3.324,
+ "step": 4176
+ },
+ {
+ "epoch": 58.01397990388816,
+ "grad_norm": 0.2053643763065338,
+ "learning_rate": 0.0006,
+ "loss": 3.5264205932617188,
+ "step": 4177
+ },
+ {
+ "epoch": 58.02795980777632,
+ "grad_norm": 0.20680591464042664,
+ "learning_rate": 0.0006,
+ "loss": 3.495445728302002,
+ "step": 4178
+ },
+ {
+ "epoch": 58.04193971166448,
+ "grad_norm": 0.22180874645709991,
+ "learning_rate": 0.0006,
+ "loss": 3.546283483505249,
+ "step": 4179
+ },
+ {
+ "epoch": 58.05591961555265,
+ "grad_norm": 0.24255339801311493,
+ "learning_rate": 0.0006,
+ "loss": 3.50639271736145,
+ "step": 4180
+ },
+ {
+ "epoch": 58.0698995194408,
+ "grad_norm": 0.2747100591659546,
+ "learning_rate": 0.0006,
+ "loss": 3.514240026473999,
+ "step": 4181
+ },
+ {
+ "epoch": 58.083879423328966,
+ "grad_norm": 0.27960914373397827,
+ "learning_rate": 0.0006,
+ "loss": 3.5614311695098877,
+ "step": 4182
+ },
+ {
+ "epoch": 58.09785932721712,
+ "grad_norm": 0.25837743282318115,
+ "learning_rate": 0.0006,
+ "loss": 3.533560276031494,
+ "step": 4183
+ },
+ {
+ "epoch": 58.111839231105286,
+ "grad_norm": 0.24635657668113708,
+ "learning_rate": 0.0006,
+ "loss": 3.4867968559265137,
+ "step": 4184
+ },
+ {
+ "epoch": 58.12581913499345,
+ "grad_norm": 0.31520891189575195,
+ "learning_rate": 0.0006,
+ "loss": 3.5131611824035645,
+ "step": 4185
+ },
+ {
+ "epoch": 58.139799038881605,
+ "grad_norm": 0.36781513690948486,
+ "learning_rate": 0.0006,
+ "loss": 3.5149288177490234,
+ "step": 4186
+ },
+ {
+ "epoch": 58.15377894276977,
+ "grad_norm": 0.32433459162712097,
+ "learning_rate": 0.0006,
+ "loss": 3.5485405921936035,
+ "step": 4187
+ },
+ {
+ "epoch": 58.16775884665793,
+ "grad_norm": 0.2532205283641815,
+ "learning_rate": 0.0006,
+ "loss": 3.4994513988494873,
+ "step": 4188
+ },
+ {
+ "epoch": 58.18173875054609,
+ "grad_norm": 0.29780858755111694,
+ "learning_rate": 0.0006,
+ "loss": 3.496187448501587,
+ "step": 4189
+ },
+ {
+ "epoch": 58.19571865443425,
+ "grad_norm": 0.2804715037345886,
+ "learning_rate": 0.0006,
+ "loss": 3.5210375785827637,
+ "step": 4190
+ },
+ {
+ "epoch": 58.20969855832241,
+ "grad_norm": 0.2186010330915451,
+ "learning_rate": 0.0006,
+ "loss": 3.5139119625091553,
+ "step": 4191
+ },
+ {
+ "epoch": 58.22367846221057,
+ "grad_norm": 0.21566270291805267,
+ "learning_rate": 0.0006,
+ "loss": 3.5011606216430664,
+ "step": 4192
+ },
+ {
+ "epoch": 58.237658366098735,
+ "grad_norm": 0.21042031049728394,
+ "learning_rate": 0.0006,
+ "loss": 3.52295184135437,
+ "step": 4193
+ },
+ {
+ "epoch": 58.25163826998689,
+ "grad_norm": 0.20117411017417908,
+ "learning_rate": 0.0006,
+ "loss": 3.54593563079834,
+ "step": 4194
+ },
+ {
+ "epoch": 58.265618173875055,
+ "grad_norm": 0.21747945249080658,
+ "learning_rate": 0.0006,
+ "loss": 3.5341522693634033,
+ "step": 4195
+ },
+ {
+ "epoch": 58.27959807776322,
+ "grad_norm": 0.266024649143219,
+ "learning_rate": 0.0006,
+ "loss": 3.536393165588379,
+ "step": 4196
+ },
+ {
+ "epoch": 58.293577981651374,
+ "grad_norm": 0.2577304542064667,
+ "learning_rate": 0.0006,
+ "loss": 3.557468891143799,
+ "step": 4197
+ },
+ {
+ "epoch": 58.30755788553954,
+ "grad_norm": 0.22055941820144653,
+ "learning_rate": 0.0006,
+ "loss": 3.5307652950286865,
+ "step": 4198
+ },
+ {
+ "epoch": 58.3215377894277,
+ "grad_norm": 0.22490856051445007,
+ "learning_rate": 0.0006,
+ "loss": 3.506265163421631,
+ "step": 4199
+ },
+ {
+ "epoch": 58.33551769331586,
+ "grad_norm": 0.23600345849990845,
+ "learning_rate": 0.0006,
+ "loss": 3.523414134979248,
+ "step": 4200
+ },
+ {
+ "epoch": 58.34949759720402,
+ "grad_norm": 0.24872642755508423,
+ "learning_rate": 0.0006,
+ "loss": 3.561278820037842,
+ "step": 4201
+ },
+ {
+ "epoch": 58.36347750109218,
+ "grad_norm": 0.2702998220920563,
+ "learning_rate": 0.0006,
+ "loss": 3.573561191558838,
+ "step": 4202
+ },
+ {
+ "epoch": 58.37745740498034,
+ "grad_norm": 0.2532080411911011,
+ "learning_rate": 0.0006,
+ "loss": 3.5476837158203125,
+ "step": 4203
+ },
+ {
+ "epoch": 58.391437308868504,
+ "grad_norm": 0.23641079664230347,
+ "learning_rate": 0.0006,
+ "loss": 3.5464468002319336,
+ "step": 4204
+ },
+ {
+ "epoch": 58.40541721275666,
+ "grad_norm": 0.29965463280677795,
+ "learning_rate": 0.0006,
+ "loss": 3.560166835784912,
+ "step": 4205
+ },
+ {
+ "epoch": 58.419397116644824,
+ "grad_norm": 0.2778814136981964,
+ "learning_rate": 0.0006,
+ "loss": 3.5363056659698486,
+ "step": 4206
+ },
+ {
+ "epoch": 58.43337702053299,
+ "grad_norm": 0.23625248670578003,
+ "learning_rate": 0.0006,
+ "loss": 3.5575437545776367,
+ "step": 4207
+ },
+ {
+ "epoch": 58.44735692442114,
+ "grad_norm": 0.2165721356868744,
+ "learning_rate": 0.0006,
+ "loss": 3.541654109954834,
+ "step": 4208
+ },
+ {
+ "epoch": 58.46133682830931,
+ "grad_norm": 0.2261950671672821,
+ "learning_rate": 0.0006,
+ "loss": 3.5462238788604736,
+ "step": 4209
+ },
+ {
+ "epoch": 58.47531673219746,
+ "grad_norm": 0.23496517539024353,
+ "learning_rate": 0.0006,
+ "loss": 3.510138988494873,
+ "step": 4210
+ },
+ {
+ "epoch": 58.489296636085626,
+ "grad_norm": 0.27041929960250854,
+ "learning_rate": 0.0006,
+ "loss": 3.527822971343994,
+ "step": 4211
+ },
+ {
+ "epoch": 58.50327653997379,
+ "grad_norm": 0.2594013512134552,
+ "learning_rate": 0.0006,
+ "loss": 3.5358262062072754,
+ "step": 4212
+ },
+ {
+ "epoch": 58.517256443861946,
+ "grad_norm": 0.23336786031723022,
+ "learning_rate": 0.0006,
+ "loss": 3.530122756958008,
+ "step": 4213
+ },
+ {
+ "epoch": 58.53123634775011,
+ "grad_norm": 0.21956655383110046,
+ "learning_rate": 0.0006,
+ "loss": 3.541039228439331,
+ "step": 4214
+ },
+ {
+ "epoch": 58.54521625163827,
+ "grad_norm": 0.22432804107666016,
+ "learning_rate": 0.0006,
+ "loss": 3.520948886871338,
+ "step": 4215
+ },
+ {
+ "epoch": 58.55919615552643,
+ "grad_norm": 0.21589893102645874,
+ "learning_rate": 0.0006,
+ "loss": 3.569808006286621,
+ "step": 4216
+ },
+ {
+ "epoch": 58.57317605941459,
+ "grad_norm": 0.20264557003974915,
+ "learning_rate": 0.0006,
+ "loss": 3.514918088912964,
+ "step": 4217
+ },
+ {
+ "epoch": 58.58715596330275,
+ "grad_norm": 0.20911480486392975,
+ "learning_rate": 0.0006,
+ "loss": 3.5340771675109863,
+ "step": 4218
+ },
+ {
+ "epoch": 58.60113586719091,
+ "grad_norm": 0.21068964898586273,
+ "learning_rate": 0.0006,
+ "loss": 3.5388903617858887,
+ "step": 4219
+ },
+ {
+ "epoch": 58.615115771079076,
+ "grad_norm": 0.19314789772033691,
+ "learning_rate": 0.0006,
+ "loss": 3.5405967235565186,
+ "step": 4220
+ },
+ {
+ "epoch": 58.62909567496723,
+ "grad_norm": 0.18347802758216858,
+ "learning_rate": 0.0006,
+ "loss": 3.5208020210266113,
+ "step": 4221
+ },
+ {
+ "epoch": 58.643075578855395,
+ "grad_norm": 0.2082843780517578,
+ "learning_rate": 0.0006,
+ "loss": 3.5454647541046143,
+ "step": 4222
+ },
+ {
+ "epoch": 58.65705548274356,
+ "grad_norm": 0.2049611210823059,
+ "learning_rate": 0.0006,
+ "loss": 3.529350996017456,
+ "step": 4223
+ },
+ {
+ "epoch": 58.671035386631715,
+ "grad_norm": 0.19259536266326904,
+ "learning_rate": 0.0006,
+ "loss": 3.5589945316314697,
+ "step": 4224
+ },
+ {
+ "epoch": 58.68501529051988,
+ "grad_norm": 0.19039863348007202,
+ "learning_rate": 0.0006,
+ "loss": 3.5593101978302,
+ "step": 4225
+ },
+ {
+ "epoch": 58.69899519440804,
+ "grad_norm": 0.21481311321258545,
+ "learning_rate": 0.0006,
+ "loss": 3.55385422706604,
+ "step": 4226
+ },
+ {
+ "epoch": 58.7129750982962,
+ "grad_norm": 0.2053634226322174,
+ "learning_rate": 0.0006,
+ "loss": 3.535224437713623,
+ "step": 4227
+ },
+ {
+ "epoch": 58.72695500218436,
+ "grad_norm": 0.21111956238746643,
+ "learning_rate": 0.0006,
+ "loss": 3.5208349227905273,
+ "step": 4228
+ },
+ {
+ "epoch": 58.74093490607252,
+ "grad_norm": 0.22069109976291656,
+ "learning_rate": 0.0006,
+ "loss": 3.5292487144470215,
+ "step": 4229
+ },
+ {
+ "epoch": 58.75491480996068,
+ "grad_norm": 0.22549185156822205,
+ "learning_rate": 0.0006,
+ "loss": 3.556830406188965,
+ "step": 4230
+ },
+ {
+ "epoch": 58.768894713848844,
+ "grad_norm": 0.22341859340667725,
+ "learning_rate": 0.0006,
+ "loss": 3.5573582649230957,
+ "step": 4231
+ },
+ {
+ "epoch": 58.782874617737,
+ "grad_norm": 0.20664502680301666,
+ "learning_rate": 0.0006,
+ "loss": 3.578657865524292,
+ "step": 4232
+ },
+ {
+ "epoch": 58.796854521625164,
+ "grad_norm": 0.19885236024856567,
+ "learning_rate": 0.0006,
+ "loss": 3.5604476928710938,
+ "step": 4233
+ },
+ {
+ "epoch": 58.81083442551333,
+ "grad_norm": 0.19446797668933868,
+ "learning_rate": 0.0006,
+ "loss": 3.5686912536621094,
+ "step": 4234
+ },
+ {
+ "epoch": 58.824814329401484,
+ "grad_norm": 0.20658083260059357,
+ "learning_rate": 0.0006,
+ "loss": 3.563167095184326,
+ "step": 4235
+ },
+ {
+ "epoch": 58.83879423328965,
+ "grad_norm": 0.21075408160686493,
+ "learning_rate": 0.0006,
+ "loss": 3.5597028732299805,
+ "step": 4236
+ },
+ {
+ "epoch": 58.8527741371778,
+ "grad_norm": 0.20652376115322113,
+ "learning_rate": 0.0006,
+ "loss": 3.5651087760925293,
+ "step": 4237
+ },
+ {
+ "epoch": 58.86675404106597,
+ "grad_norm": 0.2243892401456833,
+ "learning_rate": 0.0006,
+ "loss": 3.5442488193511963,
+ "step": 4238
+ },
+ {
+ "epoch": 58.88073394495413,
+ "grad_norm": 0.23486459255218506,
+ "learning_rate": 0.0006,
+ "loss": 3.545135974884033,
+ "step": 4239
+ },
+ {
+ "epoch": 58.89471384884229,
+ "grad_norm": 0.23100663721561432,
+ "learning_rate": 0.0006,
+ "loss": 3.57177734375,
+ "step": 4240
+ },
+ {
+ "epoch": 58.90869375273045,
+ "grad_norm": 0.2269909679889679,
+ "learning_rate": 0.0006,
+ "loss": 3.528768301010132,
+ "step": 4241
+ },
+ {
+ "epoch": 58.92267365661861,
+ "grad_norm": 0.20349252223968506,
+ "learning_rate": 0.0006,
+ "loss": 3.591031789779663,
+ "step": 4242
+ },
+ {
+ "epoch": 58.93665356050677,
+ "grad_norm": 0.21038702130317688,
+ "learning_rate": 0.0006,
+ "loss": 3.5696892738342285,
+ "step": 4243
+ },
+ {
+ "epoch": 58.95063346439493,
+ "grad_norm": 0.21356560289859772,
+ "learning_rate": 0.0006,
+ "loss": 3.5708963871002197,
+ "step": 4244
+ },
+ {
+ "epoch": 58.964613368283096,
+ "grad_norm": 0.20008863508701324,
+ "learning_rate": 0.0006,
+ "loss": 3.524749279022217,
+ "step": 4245
+ },
+ {
+ "epoch": 58.97859327217125,
+ "grad_norm": 0.20453840494155884,
+ "learning_rate": 0.0006,
+ "loss": 3.5677876472473145,
+ "step": 4246
+ },
+ {
+ "epoch": 58.992573176059416,
+ "grad_norm": 0.21549056470394135,
+ "learning_rate": 0.0006,
+ "loss": 3.550870418548584,
+ "step": 4247
+ },
+ {
+ "epoch": 59.0,
+ "grad_norm": 0.2592930793762207,
+ "learning_rate": 0.0006,
+ "loss": 3.550673484802246,
+ "step": 4248
+ },
+ {
+ "epoch": 59.0,
+ "eval_loss": 3.968780279159546,
+ "eval_runtime": 45.6246,
+ "eval_samples_per_second": 53.524,
+ "eval_steps_per_second": 3.353,
+ "step": 4248
+ },
+ {
+ "epoch": 59.01397990388816,
+ "grad_norm": 0.218043252825737,
+ "learning_rate": 0.0006,
+ "loss": 3.49605655670166,
+ "step": 4249
+ },
+ {
+ "epoch": 59.02795980777632,
+ "grad_norm": 0.25112417340278625,
+ "learning_rate": 0.0006,
+ "loss": 3.534919023513794,
+ "step": 4250
+ },
+ {
+ "epoch": 59.04193971166448,
+ "grad_norm": 0.2785079777240753,
+ "learning_rate": 0.0006,
+ "loss": 3.5425362586975098,
+ "step": 4251
+ },
+ {
+ "epoch": 59.05591961555265,
+ "grad_norm": 0.2667599618434906,
+ "learning_rate": 0.0006,
+ "loss": 3.4955453872680664,
+ "step": 4252
+ },
+ {
+ "epoch": 59.0698995194408,
+ "grad_norm": 0.24012432992458344,
+ "learning_rate": 0.0006,
+ "loss": 3.4949915409088135,
+ "step": 4253
+ },
+ {
+ "epoch": 59.083879423328966,
+ "grad_norm": 0.2502294182777405,
+ "learning_rate": 0.0006,
+ "loss": 3.5163769721984863,
+ "step": 4254
+ },
+ {
+ "epoch": 59.09785932721712,
+ "grad_norm": 0.28585609793663025,
+ "learning_rate": 0.0006,
+ "loss": 3.4852542877197266,
+ "step": 4255
+ },
+ {
+ "epoch": 59.111839231105286,
+ "grad_norm": 0.2815989553928375,
+ "learning_rate": 0.0006,
+ "loss": 3.4991462230682373,
+ "step": 4256
+ },
+ {
+ "epoch": 59.12581913499345,
+ "grad_norm": 0.22922837734222412,
+ "learning_rate": 0.0006,
+ "loss": 3.511322021484375,
+ "step": 4257
+ },
+ {
+ "epoch": 59.139799038881605,
+ "grad_norm": 0.24964241683483124,
+ "learning_rate": 0.0006,
+ "loss": 3.521056652069092,
+ "step": 4258
+ },
+ {
+ "epoch": 59.15377894276977,
+ "grad_norm": 0.27568385004997253,
+ "learning_rate": 0.0006,
+ "loss": 3.514004707336426,
+ "step": 4259
+ },
+ {
+ "epoch": 59.16775884665793,
+ "grad_norm": 0.2605166733264923,
+ "learning_rate": 0.0006,
+ "loss": 3.5132668018341064,
+ "step": 4260
+ },
+ {
+ "epoch": 59.18173875054609,
+ "grad_norm": 0.24248117208480835,
+ "learning_rate": 0.0006,
+ "loss": 3.5492095947265625,
+ "step": 4261
+ },
+ {
+ "epoch": 59.19571865443425,
+ "grad_norm": 0.26359522342681885,
+ "learning_rate": 0.0006,
+ "loss": 3.521390438079834,
+ "step": 4262
+ },
+ {
+ "epoch": 59.20969855832241,
+ "grad_norm": 0.262248694896698,
+ "learning_rate": 0.0006,
+ "loss": 3.556307315826416,
+ "step": 4263
+ },
+ {
+ "epoch": 59.22367846221057,
+ "grad_norm": 0.23514866828918457,
+ "learning_rate": 0.0006,
+ "loss": 3.4989941120147705,
+ "step": 4264
+ },
+ {
+ "epoch": 59.237658366098735,
+ "grad_norm": 0.22758382558822632,
+ "learning_rate": 0.0006,
+ "loss": 3.5307068824768066,
+ "step": 4265
+ },
+ {
+ "epoch": 59.25163826998689,
+ "grad_norm": 0.24037839472293854,
+ "learning_rate": 0.0006,
+ "loss": 3.495872974395752,
+ "step": 4266
+ },
+ {
+ "epoch": 59.265618173875055,
+ "grad_norm": 0.22763589024543762,
+ "learning_rate": 0.0006,
+ "loss": 3.54052472114563,
+ "step": 4267
+ },
+ {
+ "epoch": 59.27959807776322,
+ "grad_norm": 0.22400406002998352,
+ "learning_rate": 0.0006,
+ "loss": 3.498671054840088,
+ "step": 4268
+ },
+ {
+ "epoch": 59.293577981651374,
+ "grad_norm": 0.2326328009366989,
+ "learning_rate": 0.0006,
+ "loss": 3.559108257293701,
+ "step": 4269
+ },
+ {
+ "epoch": 59.30755788553954,
+ "grad_norm": 0.24426043033599854,
+ "learning_rate": 0.0006,
+ "loss": 3.5245609283447266,
+ "step": 4270
+ },
+ {
+ "epoch": 59.3215377894277,
+ "grad_norm": 0.2159317582845688,
+ "learning_rate": 0.0006,
+ "loss": 3.5189900398254395,
+ "step": 4271
+ },
+ {
+ "epoch": 59.33551769331586,
+ "grad_norm": 0.19148702919483185,
+ "learning_rate": 0.0006,
+ "loss": 3.548433303833008,
+ "step": 4272
+ },
+ {
+ "epoch": 59.34949759720402,
+ "grad_norm": 0.23349083960056305,
+ "learning_rate": 0.0006,
+ "loss": 3.5475196838378906,
+ "step": 4273
+ },
+ {
+ "epoch": 59.36347750109218,
+ "grad_norm": 0.24024079740047455,
+ "learning_rate": 0.0006,
+ "loss": 3.5172529220581055,
+ "step": 4274
+ },
+ {
+ "epoch": 59.37745740498034,
+ "grad_norm": 0.23772001266479492,
+ "learning_rate": 0.0006,
+ "loss": 3.5428695678710938,
+ "step": 4275
+ },
+ {
+ "epoch": 59.391437308868504,
+ "grad_norm": 0.21134959161281586,
+ "learning_rate": 0.0006,
+ "loss": 3.523099422454834,
+ "step": 4276
+ },
+ {
+ "epoch": 59.40541721275666,
+ "grad_norm": 0.20760025084018707,
+ "learning_rate": 0.0006,
+ "loss": 3.55435848236084,
+ "step": 4277
+ },
+ {
+ "epoch": 59.419397116644824,
+ "grad_norm": 0.21113243699073792,
+ "learning_rate": 0.0006,
+ "loss": 3.5355324745178223,
+ "step": 4278
+ },
+ {
+ "epoch": 59.43337702053299,
+ "grad_norm": 0.21604566276073456,
+ "learning_rate": 0.0006,
+ "loss": 3.5517663955688477,
+ "step": 4279
+ },
+ {
+ "epoch": 59.44735692442114,
+ "grad_norm": 0.19646669924259186,
+ "learning_rate": 0.0006,
+ "loss": 3.538435935974121,
+ "step": 4280
+ },
+ {
+ "epoch": 59.46133682830931,
+ "grad_norm": 0.20394550263881683,
+ "learning_rate": 0.0006,
+ "loss": 3.528444290161133,
+ "step": 4281
+ },
+ {
+ "epoch": 59.47531673219746,
+ "grad_norm": 0.24543620645999908,
+ "learning_rate": 0.0006,
+ "loss": 3.5355372428894043,
+ "step": 4282
+ },
+ {
+ "epoch": 59.489296636085626,
+ "grad_norm": 0.24048425257205963,
+ "learning_rate": 0.0006,
+ "loss": 3.521336078643799,
+ "step": 4283
+ },
+ {
+ "epoch": 59.50327653997379,
+ "grad_norm": 0.23630213737487793,
+ "learning_rate": 0.0006,
+ "loss": 3.556244373321533,
+ "step": 4284
+ },
+ {
+ "epoch": 59.517256443861946,
+ "grad_norm": 0.2791444659233093,
+ "learning_rate": 0.0006,
+ "loss": 3.5927138328552246,
+ "step": 4285
+ },
+ {
+ "epoch": 59.53123634775011,
+ "grad_norm": 0.30325770378112793,
+ "learning_rate": 0.0006,
+ "loss": 3.559296131134033,
+ "step": 4286
+ },
+ {
+ "epoch": 59.54521625163827,
+ "grad_norm": 0.2708670496940613,
+ "learning_rate": 0.0006,
+ "loss": 3.531050205230713,
+ "step": 4287
+ },
+ {
+ "epoch": 59.55919615552643,
+ "grad_norm": 0.23795515298843384,
+ "learning_rate": 0.0006,
+ "loss": 3.5365982055664062,
+ "step": 4288
+ },
+ {
+ "epoch": 59.57317605941459,
+ "grad_norm": 0.20949627459049225,
+ "learning_rate": 0.0006,
+ "loss": 3.5591273307800293,
+ "step": 4289
+ },
+ {
+ "epoch": 59.58715596330275,
+ "grad_norm": 0.21885769069194794,
+ "learning_rate": 0.0006,
+ "loss": 3.4965288639068604,
+ "step": 4290
+ },
+ {
+ "epoch": 59.60113586719091,
+ "grad_norm": 0.22365590929985046,
+ "learning_rate": 0.0006,
+ "loss": 3.538118362426758,
+ "step": 4291
+ },
+ {
+ "epoch": 59.615115771079076,
+ "grad_norm": 0.23178881406784058,
+ "learning_rate": 0.0006,
+ "loss": 3.515933036804199,
+ "step": 4292
+ },
+ {
+ "epoch": 59.62909567496723,
+ "grad_norm": 0.21539060771465302,
+ "learning_rate": 0.0006,
+ "loss": 3.54185152053833,
+ "step": 4293
+ },
+ {
+ "epoch": 59.643075578855395,
+ "grad_norm": 0.22033682465553284,
+ "learning_rate": 0.0006,
+ "loss": 3.526728630065918,
+ "step": 4294
+ },
+ {
+ "epoch": 59.65705548274356,
+ "grad_norm": 0.23003938794136047,
+ "learning_rate": 0.0006,
+ "loss": 3.555710792541504,
+ "step": 4295
+ },
+ {
+ "epoch": 59.671035386631715,
+ "grad_norm": 0.22887346148490906,
+ "learning_rate": 0.0006,
+ "loss": 3.580883502960205,
+ "step": 4296
+ },
+ {
+ "epoch": 59.68501529051988,
+ "grad_norm": 0.2147892713546753,
+ "learning_rate": 0.0006,
+ "loss": 3.5318822860717773,
+ "step": 4297
+ },
+ {
+ "epoch": 59.69899519440804,
+ "grad_norm": 0.22063598036766052,
+ "learning_rate": 0.0006,
+ "loss": 3.5179357528686523,
+ "step": 4298
+ },
+ {
+ "epoch": 59.7129750982962,
+ "grad_norm": 0.22569656372070312,
+ "learning_rate": 0.0006,
+ "loss": 3.583181381225586,
+ "step": 4299
+ },
+ {
+ "epoch": 59.72695500218436,
+ "grad_norm": 0.2252701222896576,
+ "learning_rate": 0.0006,
+ "loss": 3.5780375003814697,
+ "step": 4300
+ },
+ {
+ "epoch": 59.74093490607252,
+ "grad_norm": 0.2288130521774292,
+ "learning_rate": 0.0006,
+ "loss": 3.570399284362793,
+ "step": 4301
+ },
+ {
+ "epoch": 59.75491480996068,
+ "grad_norm": 0.21879231929779053,
+ "learning_rate": 0.0006,
+ "loss": 3.540292739868164,
+ "step": 4302
+ },
+ {
+ "epoch": 59.768894713848844,
+ "grad_norm": 0.20675964653491974,
+ "learning_rate": 0.0006,
+ "loss": 3.532649040222168,
+ "step": 4303
+ },
+ {
+ "epoch": 59.782874617737,
+ "grad_norm": 0.21810708940029144,
+ "learning_rate": 0.0006,
+ "loss": 3.5156657695770264,
+ "step": 4304
+ },
+ {
+ "epoch": 59.796854521625164,
+ "grad_norm": 0.22701260447502136,
+ "learning_rate": 0.0006,
+ "loss": 3.5535266399383545,
+ "step": 4305
+ },
+ {
+ "epoch": 59.81083442551333,
+ "grad_norm": 0.23433080315589905,
+ "learning_rate": 0.0006,
+ "loss": 3.5280754566192627,
+ "step": 4306
+ },
+ {
+ "epoch": 59.824814329401484,
+ "grad_norm": 0.2254341095685959,
+ "learning_rate": 0.0006,
+ "loss": 3.534045696258545,
+ "step": 4307
+ },
+ {
+ "epoch": 59.83879423328965,
+ "grad_norm": 0.21756123006343842,
+ "learning_rate": 0.0006,
+ "loss": 3.5621533393859863,
+ "step": 4308
+ },
+ {
+ "epoch": 59.8527741371778,
+ "grad_norm": 0.19731850922107697,
+ "learning_rate": 0.0006,
+ "loss": 3.536633253097534,
+ "step": 4309
+ },
+ {
+ "epoch": 59.86675404106597,
+ "grad_norm": 0.2260110229253769,
+ "learning_rate": 0.0006,
+ "loss": 3.5721538066864014,
+ "step": 4310
+ },
+ {
+ "epoch": 59.88073394495413,
+ "grad_norm": 0.22728438675403595,
+ "learning_rate": 0.0006,
+ "loss": 3.5576961040496826,
+ "step": 4311
+ },
+ {
+ "epoch": 59.89471384884229,
+ "grad_norm": 0.20675411820411682,
+ "learning_rate": 0.0006,
+ "loss": 3.5070700645446777,
+ "step": 4312
+ },
+ {
+ "epoch": 59.90869375273045,
+ "grad_norm": 0.22258996963500977,
+ "learning_rate": 0.0006,
+ "loss": 3.564357280731201,
+ "step": 4313
+ },
+ {
+ "epoch": 59.92267365661861,
+ "grad_norm": 0.2429998815059662,
+ "learning_rate": 0.0006,
+ "loss": 3.519744873046875,
+ "step": 4314
+ },
+ {
+ "epoch": 59.93665356050677,
+ "grad_norm": 0.2394791841506958,
+ "learning_rate": 0.0006,
+ "loss": 3.533292055130005,
+ "step": 4315
+ },
+ {
+ "epoch": 59.95063346439493,
+ "grad_norm": 0.20659418404102325,
+ "learning_rate": 0.0006,
+ "loss": 3.5475940704345703,
+ "step": 4316
+ },
+ {
+ "epoch": 59.964613368283096,
+ "grad_norm": 0.19679132103919983,
+ "learning_rate": 0.0006,
+ "loss": 3.5794930458068848,
+ "step": 4317
+ },
+ {
+ "epoch": 59.97859327217125,
+ "grad_norm": 0.2133002132177353,
+ "learning_rate": 0.0006,
+ "loss": 3.5506505966186523,
+ "step": 4318
+ },
+ {
+ "epoch": 59.992573176059416,
+ "grad_norm": 0.22383661568164825,
+ "learning_rate": 0.0006,
+ "loss": 3.547708511352539,
+ "step": 4319
+ },
+ {
+ "epoch": 60.0,
+ "grad_norm": 0.25744178891181946,
+ "learning_rate": 0.0006,
+ "loss": 3.5519227981567383,
+ "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/mask15-l2r50-fulle-lm/checkpoint-4320/training_args.bin b/runs/mask15-l2r50-fulle-lm/checkpoint-4320/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..43721c50815fe94f90cb043bf545b8f7bd9afc38
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-4320/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:a0b8d7bb9ac952b1abed3bd1e5c8f6ebd20daa957b3a85688954f8df03be6eb9
+size 4856
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-4608/chat_template.jinja b/runs/mask15-l2r50-fulle-lm/checkpoint-4608/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/mask15-l2r50-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/mask15-l2r50-fulle-lm/checkpoint-4608/config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-4608/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..1b4ac3c550d6003148026765eba4cb1512b216c9
--- /dev/null
+++ b/runs/mask15-l2r50-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": 151672
+}
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-4608/generation_config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-4608/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..5cd15fe1269fd505cfdefe9b3e9989dacd9f68f4
--- /dev/null
+++ b/runs/mask15-l2r50-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/mask15-l2r50-fulle-lm/checkpoint-4608/model.safetensors b/runs/mask15-l2r50-fulle-lm/checkpoint-4608/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..dfb728c1a68f46951a07946b872dc0417fac2759
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-4608/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:45a0f8fe53e0b2e7c7053c2c4b35a9433aa85223771b205991a221b395593df0
+size 583358280
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-4608/optimizer.pt b/runs/mask15-l2r50-fulle-lm/checkpoint-4608/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..a42cb5c2f0c9a2741193870149dfade9b83c60ca
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-4608/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:1b16fca141a0c2c9b98262884609a3e33b70c1ceeac07f2562f5af411d7c7e2c
+size 1166829434
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-4608/rng_state_0.pth b/runs/mask15-l2r50-fulle-lm/checkpoint-4608/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..7e3a177a94c904215eff8624bcfa73cde8607234
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-4608/rng_state_0.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:8c711a5617f10172f49739b01f69aa502e493df0bb016e024be6221b99dcde46
+size 14512
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-4608/rng_state_1.pth b/runs/mask15-l2r50-fulle-lm/checkpoint-4608/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..ebf3ab6103b373f338e1fafa5b695bcc86c6f271
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-4608/rng_state_1.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:9cf56b57cc60aa8a0945b2114d4b3e441636ee6c29132dc4a2dbb388614fa0cb
+size 14512
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-4608/scheduler.pt b/runs/mask15-l2r50-fulle-lm/checkpoint-4608/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..e577101181b24dfcc9b18d0a62144d06cb4b37c2
--- /dev/null
+++ b/runs/mask15-l2r50-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/mask15-l2r50-fulle-lm/checkpoint-4608/tokenizer.json b/runs/mask15-l2r50-fulle-lm/checkpoint-4608/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..6226bf25372d1a86dbd704ec75d2129960f1ba88
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-4608/tokenizer.json
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:9245fe3cb2d40f9ed8d5d8ddd1d58701ba2a236beec08f656162281673f30560
+size 11424264
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-4608/tokenizer_config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-4608/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..01bc9676576e8cf62a08a9db166d6c5bab1d6727
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-4608/tokenizer_config.json
@@ -0,0 +1,20 @@
+{
+ "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|>",
+ "<|mask|>"
+ ],
+ "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/mask15-l2r50-fulle-lm/checkpoint-4608/trainer_state.json b/runs/mask15-l2r50-fulle-lm/checkpoint-4608/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..726a03fbcf6082274abfe797b462fff25a2ded0a
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-4608/trainer_state.json
@@ -0,0 +1,32794 @@
+{
+ "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": 9.807971954345703,
+ "learning_rate": 0.0,
+ "loss": 11.989814758300781,
+ "step": 1
+ },
+ {
+ "epoch": 0.027959807776321538,
+ "grad_norm": 9.834383010864258,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 11.993022918701172,
+ "step": 2
+ },
+ {
+ "epoch": 0.04193971166448231,
+ "grad_norm": 9.482470512390137,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 11.854345321655273,
+ "step": 3
+ },
+ {
+ "epoch": 0.055919615552643076,
+ "grad_norm": 7.678808689117432,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 11.618255615234375,
+ "step": 4
+ },
+ {
+ "epoch": 0.06989951944080385,
+ "grad_norm": 6.011275291442871,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 11.351423263549805,
+ "step": 5
+ },
+ {
+ "epoch": 0.08387942332896461,
+ "grad_norm": 5.244393825531006,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 11.128631591796875,
+ "step": 6
+ },
+ {
+ "epoch": 0.09785932721712538,
+ "grad_norm": 4.577618598937988,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 10.921937942504883,
+ "step": 7
+ },
+ {
+ "epoch": 0.11183923110528615,
+ "grad_norm": 4.03810453414917,
+ "learning_rate": 4.2e-05,
+ "loss": 10.742650985717773,
+ "step": 8
+ },
+ {
+ "epoch": 0.1258191349934469,
+ "grad_norm": 3.657679796218872,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 10.600778579711914,
+ "step": 9
+ },
+ {
+ "epoch": 0.1397990388816077,
+ "grad_norm": 3.352902889251709,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 10.489639282226562,
+ "step": 10
+ },
+ {
+ "epoch": 0.15377894276976845,
+ "grad_norm": 3.1162633895874023,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 10.417770385742188,
+ "step": 11
+ },
+ {
+ "epoch": 0.16775884665792923,
+ "grad_norm": 3.0402638912200928,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 10.35334587097168,
+ "step": 12
+ },
+ {
+ "epoch": 0.18173875054608998,
+ "grad_norm": 3.030630111694336,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 10.306867599487305,
+ "step": 13
+ },
+ {
+ "epoch": 0.19571865443425077,
+ "grad_norm": 3.035292148590088,
+ "learning_rate": 7.8e-05,
+ "loss": 10.26003646850586,
+ "step": 14
+ },
+ {
+ "epoch": 0.20969855832241152,
+ "grad_norm": 3.0125675201416016,
+ "learning_rate": 8.4e-05,
+ "loss": 10.219265937805176,
+ "step": 15
+ },
+ {
+ "epoch": 0.2236784622105723,
+ "grad_norm": 2.9998886585235596,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 10.161077499389648,
+ "step": 16
+ },
+ {
+ "epoch": 0.23765836609873306,
+ "grad_norm": 2.9411966800689697,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 10.107423782348633,
+ "step": 17
+ },
+ {
+ "epoch": 0.2516382699868938,
+ "grad_norm": 2.88081955909729,
+ "learning_rate": 0.000102,
+ "loss": 10.04700756072998,
+ "step": 18
+ },
+ {
+ "epoch": 0.2656181738750546,
+ "grad_norm": 2.8219687938690186,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 9.981185913085938,
+ "step": 19
+ },
+ {
+ "epoch": 0.2795980777632154,
+ "grad_norm": 2.79306960105896,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 9.89747142791748,
+ "step": 20
+ },
+ {
+ "epoch": 0.29357798165137616,
+ "grad_norm": 2.7314443588256836,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 9.829219818115234,
+ "step": 21
+ },
+ {
+ "epoch": 0.3075578855395369,
+ "grad_norm": 2.6923747062683105,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 9.747566223144531,
+ "step": 22
+ },
+ {
+ "epoch": 0.3215377894276977,
+ "grad_norm": 2.650602340698242,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 9.66455078125,
+ "step": 23
+ },
+ {
+ "epoch": 0.33551769331585846,
+ "grad_norm": 2.606977701187134,
+ "learning_rate": 0.000138,
+ "loss": 9.582326889038086,
+ "step": 24
+ },
+ {
+ "epoch": 0.34949759720401924,
+ "grad_norm": 2.567256212234497,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 9.492591857910156,
+ "step": 25
+ },
+ {
+ "epoch": 0.36347750109217997,
+ "grad_norm": 2.520740509033203,
+ "learning_rate": 0.00015,
+ "loss": 9.396563529968262,
+ "step": 26
+ },
+ {
+ "epoch": 0.37745740498034075,
+ "grad_norm": 2.471588611602783,
+ "learning_rate": 0.000156,
+ "loss": 9.303571701049805,
+ "step": 27
+ },
+ {
+ "epoch": 0.39143730886850153,
+ "grad_norm": 2.4341530799865723,
+ "learning_rate": 0.000162,
+ "loss": 9.191819190979004,
+ "step": 28
+ },
+ {
+ "epoch": 0.4054172127566623,
+ "grad_norm": 2.369244337081909,
+ "learning_rate": 0.000168,
+ "loss": 9.092012405395508,
+ "step": 29
+ },
+ {
+ "epoch": 0.41939711664482304,
+ "grad_norm": 2.28625226020813,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 8.984567642211914,
+ "step": 30
+ },
+ {
+ "epoch": 0.4333770205329838,
+ "grad_norm": 2.2082231044769287,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 8.889009475708008,
+ "step": 31
+ },
+ {
+ "epoch": 0.4473569244211446,
+ "grad_norm": 2.1429483890533447,
+ "learning_rate": 0.000186,
+ "loss": 8.778556823730469,
+ "step": 32
+ },
+ {
+ "epoch": 0.4613368283093054,
+ "grad_norm": 2.0937352180480957,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 8.661166191101074,
+ "step": 33
+ },
+ {
+ "epoch": 0.4753167321974661,
+ "grad_norm": 2.040790557861328,
+ "learning_rate": 0.000198,
+ "loss": 8.550382614135742,
+ "step": 34
+ },
+ {
+ "epoch": 0.4892966360856269,
+ "grad_norm": 1.93914794921875,
+ "learning_rate": 0.000204,
+ "loss": 8.463907241821289,
+ "step": 35
+ },
+ {
+ "epoch": 0.5032765399737876,
+ "grad_norm": 1.8624178171157837,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 8.3438720703125,
+ "step": 36
+ },
+ {
+ "epoch": 0.5172564438619485,
+ "grad_norm": 1.8107167482376099,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 8.21871566772461,
+ "step": 37
+ },
+ {
+ "epoch": 0.5312363477501092,
+ "grad_norm": 1.717979073524475,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 8.113494873046875,
+ "step": 38
+ },
+ {
+ "epoch": 0.54521625163827,
+ "grad_norm": 1.668742060661316,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 8.006099700927734,
+ "step": 39
+ },
+ {
+ "epoch": 0.5591961555264308,
+ "grad_norm": 1.6147786378860474,
+ "learning_rate": 0.000234,
+ "loss": 7.911509037017822,
+ "step": 40
+ },
+ {
+ "epoch": 0.5731760594145915,
+ "grad_norm": 1.535750150680542,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 7.822839736938477,
+ "step": 41
+ },
+ {
+ "epoch": 0.5871559633027523,
+ "grad_norm": 1.4700065851211548,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 7.713842868804932,
+ "step": 42
+ },
+ {
+ "epoch": 0.601135867190913,
+ "grad_norm": 1.39020574092865,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 7.6040191650390625,
+ "step": 43
+ },
+ {
+ "epoch": 0.6151157710790738,
+ "grad_norm": 1.2875399589538574,
+ "learning_rate": 0.000258,
+ "loss": 7.550642013549805,
+ "step": 44
+ },
+ {
+ "epoch": 0.6290956749672346,
+ "grad_norm": 1.2094247341156006,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 7.460824012756348,
+ "step": 45
+ },
+ {
+ "epoch": 0.6430755788553953,
+ "grad_norm": 1.126452088356018,
+ "learning_rate": 0.00027,
+ "loss": 7.380537986755371,
+ "step": 46
+ },
+ {
+ "epoch": 0.6570554827435562,
+ "grad_norm": 1.0313163995742798,
+ "learning_rate": 0.000276,
+ "loss": 7.286153793334961,
+ "step": 47
+ },
+ {
+ "epoch": 0.6710353866317169,
+ "grad_norm": 0.9172859787940979,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 7.2064714431762695,
+ "step": 48
+ },
+ {
+ "epoch": 0.6850152905198776,
+ "grad_norm": 0.8148201107978821,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 7.158207416534424,
+ "step": 49
+ },
+ {
+ "epoch": 0.6989951944080385,
+ "grad_norm": 0.650123119354248,
+ "learning_rate": 0.000294,
+ "loss": 7.108791828155518,
+ "step": 50
+ },
+ {
+ "epoch": 0.7129750982961992,
+ "grad_norm": 0.5437585711479187,
+ "learning_rate": 0.0003,
+ "loss": 7.083050727844238,
+ "step": 51
+ },
+ {
+ "epoch": 0.7269550021843599,
+ "grad_norm": 0.46762895584106445,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 7.058027267456055,
+ "step": 52
+ },
+ {
+ "epoch": 0.7409349060725208,
+ "grad_norm": 0.47947561740875244,
+ "learning_rate": 0.000312,
+ "loss": 7.015172958374023,
+ "step": 53
+ },
+ {
+ "epoch": 0.7549148099606815,
+ "grad_norm": 0.7546492218971252,
+ "learning_rate": 0.000318,
+ "loss": 7.024629592895508,
+ "step": 54
+ },
+ {
+ "epoch": 0.7688947138488423,
+ "grad_norm": 0.6153718829154968,
+ "learning_rate": 0.000324,
+ "loss": 7.026667594909668,
+ "step": 55
+ },
+ {
+ "epoch": 0.7828746177370031,
+ "grad_norm": 0.3359069228172302,
+ "learning_rate": 0.00033,
+ "loss": 7.008166313171387,
+ "step": 56
+ },
+ {
+ "epoch": 0.7968545216251638,
+ "grad_norm": 0.48906823992729187,
+ "learning_rate": 0.000336,
+ "loss": 7.019716262817383,
+ "step": 57
+ },
+ {
+ "epoch": 0.8108344255133246,
+ "grad_norm": 0.5525421500205994,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 7.02108097076416,
+ "step": 58
+ },
+ {
+ "epoch": 0.8248143294014854,
+ "grad_norm": 0.3103712201118469,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 7.003164768218994,
+ "step": 59
+ },
+ {
+ "epoch": 0.8387942332896461,
+ "grad_norm": 0.4431874752044678,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 7.003463268280029,
+ "step": 60
+ },
+ {
+ "epoch": 0.8527741371778069,
+ "grad_norm": 0.4291120767593384,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 6.96931791305542,
+ "step": 61
+ },
+ {
+ "epoch": 0.8667540410659677,
+ "grad_norm": 0.6566054224967957,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 6.989445686340332,
+ "step": 62
+ },
+ {
+ "epoch": 0.8807339449541285,
+ "grad_norm": 0.20663189888000488,
+ "learning_rate": 0.000372,
+ "loss": 6.9669342041015625,
+ "step": 63
+ },
+ {
+ "epoch": 0.8947138488422892,
+ "grad_norm": 0.6242535710334778,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 6.949883460998535,
+ "step": 64
+ },
+ {
+ "epoch": 0.9086937527304499,
+ "grad_norm": 0.6984224915504456,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 6.955153465270996,
+ "step": 65
+ },
+ {
+ "epoch": 0.9226736566186108,
+ "grad_norm": 0.6328083872795105,
+ "learning_rate": 0.00039,
+ "loss": 6.965421676635742,
+ "step": 66
+ },
+ {
+ "epoch": 0.9366535605067715,
+ "grad_norm": 1.213352918624878,
+ "learning_rate": 0.000396,
+ "loss": 6.9454345703125,
+ "step": 67
+ },
+ {
+ "epoch": 0.9506334643949322,
+ "grad_norm": 0.9221940636634827,
+ "learning_rate": 0.000402,
+ "loss": 6.923908233642578,
+ "step": 68
+ },
+ {
+ "epoch": 0.9646133682830931,
+ "grad_norm": 0.6825450658798218,
+ "learning_rate": 0.000408,
+ "loss": 6.910131454467773,
+ "step": 69
+ },
+ {
+ "epoch": 0.9785932721712538,
+ "grad_norm": 0.5690162181854248,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 6.89891242980957,
+ "step": 70
+ },
+ {
+ "epoch": 0.9925731760594146,
+ "grad_norm": 0.4320870041847229,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 6.896081924438477,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.31632405519485474,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 6.897444725036621,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 7.757839679718018,
+ "eval_runtime": 43.8338,
+ "eval_samples_per_second": 55.71,
+ "eval_steps_per_second": 3.49,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139799038881607,
+ "grad_norm": 0.3789916932582855,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 6.877245903015137,
+ "step": 73
+ },
+ {
+ "epoch": 1.0279598077763215,
+ "grad_norm": 0.9167932868003845,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 6.921600341796875,
+ "step": 74
+ },
+ {
+ "epoch": 1.0419397116644824,
+ "grad_norm": 0.581188440322876,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 6.861001968383789,
+ "step": 75
+ },
+ {
+ "epoch": 1.0559196155526431,
+ "grad_norm": 0.4179714024066925,
+ "learning_rate": 0.00045,
+ "loss": 6.875657081604004,
+ "step": 76
+ },
+ {
+ "epoch": 1.0698995194408039,
+ "grad_norm": 1.0669957399368286,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 6.857122421264648,
+ "step": 77
+ },
+ {
+ "epoch": 1.0838794233289646,
+ "grad_norm": 0.27855145931243896,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 6.828852653503418,
+ "step": 78
+ },
+ {
+ "epoch": 1.0978593272171253,
+ "grad_norm": 0.7192047834396362,
+ "learning_rate": 0.000468,
+ "loss": 6.870839595794678,
+ "step": 79
+ },
+ {
+ "epoch": 1.1118392311052863,
+ "grad_norm": 0.5583325624465942,
+ "learning_rate": 0.000474,
+ "loss": 6.8497514724731445,
+ "step": 80
+ },
+ {
+ "epoch": 1.125819134993447,
+ "grad_norm": 0.3001925051212311,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 6.858528137207031,
+ "step": 81
+ },
+ {
+ "epoch": 1.1397990388816077,
+ "grad_norm": 0.2408239096403122,
+ "learning_rate": 0.000486,
+ "loss": 6.83231258392334,
+ "step": 82
+ },
+ {
+ "epoch": 1.1537789427697684,
+ "grad_norm": 0.28230324387550354,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 6.815476894378662,
+ "step": 83
+ },
+ {
+ "epoch": 1.1677588466579292,
+ "grad_norm": 0.3247123658657074,
+ "learning_rate": 0.000498,
+ "loss": 6.780126094818115,
+ "step": 84
+ },
+ {
+ "epoch": 1.18173875054609,
+ "grad_norm": 0.25713011622428894,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 6.7798309326171875,
+ "step": 85
+ },
+ {
+ "epoch": 1.1957186544342508,
+ "grad_norm": 0.5386835932731628,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 6.791745185852051,
+ "step": 86
+ },
+ {
+ "epoch": 1.2096985583224116,
+ "grad_norm": 0.2226393222808838,
+ "learning_rate": 0.000516,
+ "loss": 6.7826972007751465,
+ "step": 87
+ },
+ {
+ "epoch": 1.2236784622105723,
+ "grad_norm": 0.4338362216949463,
+ "learning_rate": 0.000522,
+ "loss": 6.805043697357178,
+ "step": 88
+ },
+ {
+ "epoch": 1.237658366098733,
+ "grad_norm": 0.2953208386898041,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 6.768434524536133,
+ "step": 89
+ },
+ {
+ "epoch": 1.2516382699868938,
+ "grad_norm": 0.13453717529773712,
+ "learning_rate": 0.000534,
+ "loss": 6.773697376251221,
+ "step": 90
+ },
+ {
+ "epoch": 1.2656181738750547,
+ "grad_norm": 0.35774412751197815,
+ "learning_rate": 0.00054,
+ "loss": 6.766414642333984,
+ "step": 91
+ },
+ {
+ "epoch": 1.2795980777632154,
+ "grad_norm": 0.4669720530509949,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 6.754847526550293,
+ "step": 92
+ },
+ {
+ "epoch": 1.2935779816513762,
+ "grad_norm": 0.13806621730327606,
+ "learning_rate": 0.000552,
+ "loss": 6.746858596801758,
+ "step": 93
+ },
+ {
+ "epoch": 1.307557885539537,
+ "grad_norm": 0.3280332386493683,
+ "learning_rate": 0.000558,
+ "loss": 6.715662956237793,
+ "step": 94
+ },
+ {
+ "epoch": 1.3215377894276976,
+ "grad_norm": 0.4689937233924866,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 6.734938144683838,
+ "step": 95
+ },
+ {
+ "epoch": 1.3355176933158583,
+ "grad_norm": 0.35371264815330505,
+ "learning_rate": 0.00057,
+ "loss": 6.748386383056641,
+ "step": 96
+ },
+ {
+ "epoch": 1.3494975972040193,
+ "grad_norm": 0.15232303738594055,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 6.705557823181152,
+ "step": 97
+ },
+ {
+ "epoch": 1.36347750109218,
+ "grad_norm": 0.30132821202278137,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 6.7199859619140625,
+ "step": 98
+ },
+ {
+ "epoch": 1.3774574049803407,
+ "grad_norm": 0.42174842953681946,
+ "learning_rate": 0.000588,
+ "loss": 6.715370178222656,
+ "step": 99
+ },
+ {
+ "epoch": 1.3914373088685015,
+ "grad_norm": 0.6257228851318359,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 6.707026958465576,
+ "step": 100
+ },
+ {
+ "epoch": 1.4054172127566624,
+ "grad_norm": 0.4551195800304413,
+ "learning_rate": 0.0006,
+ "loss": 6.7078423500061035,
+ "step": 101
+ },
+ {
+ "epoch": 1.4193971166448232,
+ "grad_norm": 0.41940346360206604,
+ "learning_rate": 0.0006,
+ "loss": 6.6959357261657715,
+ "step": 102
+ },
+ {
+ "epoch": 1.4333770205329839,
+ "grad_norm": 0.32251718640327454,
+ "learning_rate": 0.0006,
+ "loss": 6.689168930053711,
+ "step": 103
+ },
+ {
+ "epoch": 1.4473569244211446,
+ "grad_norm": 0.2992720305919647,
+ "learning_rate": 0.0006,
+ "loss": 6.680738925933838,
+ "step": 104
+ },
+ {
+ "epoch": 1.4613368283093053,
+ "grad_norm": 0.3228456974029541,
+ "learning_rate": 0.0006,
+ "loss": 6.672350883483887,
+ "step": 105
+ },
+ {
+ "epoch": 1.475316732197466,
+ "grad_norm": 0.24954743683338165,
+ "learning_rate": 0.0006,
+ "loss": 6.653716087341309,
+ "step": 106
+ },
+ {
+ "epoch": 1.4892966360856268,
+ "grad_norm": 0.30740687251091003,
+ "learning_rate": 0.0006,
+ "loss": 6.676583290100098,
+ "step": 107
+ },
+ {
+ "epoch": 1.5032765399737875,
+ "grad_norm": 0.24950599670410156,
+ "learning_rate": 0.0006,
+ "loss": 6.656691551208496,
+ "step": 108
+ },
+ {
+ "epoch": 1.5172564438619485,
+ "grad_norm": 0.24293005466461182,
+ "learning_rate": 0.0006,
+ "loss": 6.640995979309082,
+ "step": 109
+ },
+ {
+ "epoch": 1.5312363477501092,
+ "grad_norm": 0.30167272686958313,
+ "learning_rate": 0.0006,
+ "loss": 6.647380352020264,
+ "step": 110
+ },
+ {
+ "epoch": 1.5452162516382701,
+ "grad_norm": 0.4424632787704468,
+ "learning_rate": 0.0006,
+ "loss": 6.6548261642456055,
+ "step": 111
+ },
+ {
+ "epoch": 1.5591961555264309,
+ "grad_norm": 0.5295748114585876,
+ "learning_rate": 0.0006,
+ "loss": 6.64370059967041,
+ "step": 112
+ },
+ {
+ "epoch": 1.5731760594145916,
+ "grad_norm": 0.6829339265823364,
+ "learning_rate": 0.0006,
+ "loss": 6.654196739196777,
+ "step": 113
+ },
+ {
+ "epoch": 1.5871559633027523,
+ "grad_norm": 0.6534460186958313,
+ "learning_rate": 0.0006,
+ "loss": 6.675765037536621,
+ "step": 114
+ },
+ {
+ "epoch": 1.601135867190913,
+ "grad_norm": 0.6172244548797607,
+ "learning_rate": 0.0006,
+ "loss": 6.631234169006348,
+ "step": 115
+ },
+ {
+ "epoch": 1.6151157710790738,
+ "grad_norm": 0.5650008320808411,
+ "learning_rate": 0.0006,
+ "loss": 6.654262542724609,
+ "step": 116
+ },
+ {
+ "epoch": 1.6290956749672345,
+ "grad_norm": 0.3890475928783417,
+ "learning_rate": 0.0006,
+ "loss": 6.627526760101318,
+ "step": 117
+ },
+ {
+ "epoch": 1.6430755788553952,
+ "grad_norm": 0.6409873366355896,
+ "learning_rate": 0.0006,
+ "loss": 6.619794845581055,
+ "step": 118
+ },
+ {
+ "epoch": 1.6570554827435562,
+ "grad_norm": 0.5052326321601868,
+ "learning_rate": 0.0006,
+ "loss": 6.612556457519531,
+ "step": 119
+ },
+ {
+ "epoch": 1.671035386631717,
+ "grad_norm": 0.5001237988471985,
+ "learning_rate": 0.0006,
+ "loss": 6.577266693115234,
+ "step": 120
+ },
+ {
+ "epoch": 1.6850152905198776,
+ "grad_norm": 0.5328938364982605,
+ "learning_rate": 0.0006,
+ "loss": 6.59553337097168,
+ "step": 121
+ },
+ {
+ "epoch": 1.6989951944080386,
+ "grad_norm": 0.3568951189517975,
+ "learning_rate": 0.0006,
+ "loss": 6.602717399597168,
+ "step": 122
+ },
+ {
+ "epoch": 1.7129750982961993,
+ "grad_norm": 0.4017309546470642,
+ "learning_rate": 0.0006,
+ "loss": 6.589657783508301,
+ "step": 123
+ },
+ {
+ "epoch": 1.72695500218436,
+ "grad_norm": 0.21432629227638245,
+ "learning_rate": 0.0006,
+ "loss": 6.586555480957031,
+ "step": 124
+ },
+ {
+ "epoch": 1.7409349060725208,
+ "grad_norm": 0.21038052439689636,
+ "learning_rate": 0.0006,
+ "loss": 6.576569557189941,
+ "step": 125
+ },
+ {
+ "epoch": 1.7549148099606815,
+ "grad_norm": 0.23074904084205627,
+ "learning_rate": 0.0006,
+ "loss": 6.5880632400512695,
+ "step": 126
+ },
+ {
+ "epoch": 1.7688947138488422,
+ "grad_norm": 0.42963048815727234,
+ "learning_rate": 0.0006,
+ "loss": 6.603862762451172,
+ "step": 127
+ },
+ {
+ "epoch": 1.782874617737003,
+ "grad_norm": 0.361331045627594,
+ "learning_rate": 0.0006,
+ "loss": 6.579834938049316,
+ "step": 128
+ },
+ {
+ "epoch": 1.7968545216251637,
+ "grad_norm": 0.4951060712337494,
+ "learning_rate": 0.0006,
+ "loss": 6.570443630218506,
+ "step": 129
+ },
+ {
+ "epoch": 1.8108344255133246,
+ "grad_norm": 0.2258434295654297,
+ "learning_rate": 0.0006,
+ "loss": 6.5664777755737305,
+ "step": 130
+ },
+ {
+ "epoch": 1.8248143294014854,
+ "grad_norm": 0.2922155559062958,
+ "learning_rate": 0.0006,
+ "loss": 6.561326503753662,
+ "step": 131
+ },
+ {
+ "epoch": 1.838794233289646,
+ "grad_norm": 0.19068220257759094,
+ "learning_rate": 0.0006,
+ "loss": 6.528727054595947,
+ "step": 132
+ },
+ {
+ "epoch": 1.852774137177807,
+ "grad_norm": 0.2122010439634323,
+ "learning_rate": 0.0006,
+ "loss": 6.535636901855469,
+ "step": 133
+ },
+ {
+ "epoch": 1.8667540410659678,
+ "grad_norm": 0.25760164856910706,
+ "learning_rate": 0.0006,
+ "loss": 6.530498504638672,
+ "step": 134
+ },
+ {
+ "epoch": 1.8807339449541285,
+ "grad_norm": 0.1761016845703125,
+ "learning_rate": 0.0006,
+ "loss": 6.514466285705566,
+ "step": 135
+ },
+ {
+ "epoch": 1.8947138488422892,
+ "grad_norm": 0.2250051498413086,
+ "learning_rate": 0.0006,
+ "loss": 6.521268844604492,
+ "step": 136
+ },
+ {
+ "epoch": 1.90869375273045,
+ "grad_norm": 0.34458497166633606,
+ "learning_rate": 0.0006,
+ "loss": 6.512831687927246,
+ "step": 137
+ },
+ {
+ "epoch": 1.9226736566186107,
+ "grad_norm": 0.3468617796897888,
+ "learning_rate": 0.0006,
+ "loss": 6.515641689300537,
+ "step": 138
+ },
+ {
+ "epoch": 1.9366535605067714,
+ "grad_norm": 0.5051495432853699,
+ "learning_rate": 0.0006,
+ "loss": 6.5147905349731445,
+ "step": 139
+ },
+ {
+ "epoch": 1.9506334643949321,
+ "grad_norm": 0.7106727361679077,
+ "learning_rate": 0.0006,
+ "loss": 6.519277572631836,
+ "step": 140
+ },
+ {
+ "epoch": 1.964613368283093,
+ "grad_norm": 0.8881394267082214,
+ "learning_rate": 0.0006,
+ "loss": 6.526865482330322,
+ "step": 141
+ },
+ {
+ "epoch": 1.9785932721712538,
+ "grad_norm": 0.5552834272384644,
+ "learning_rate": 0.0006,
+ "loss": 6.469970226287842,
+ "step": 142
+ },
+ {
+ "epoch": 1.9925731760594148,
+ "grad_norm": 0.6903126835823059,
+ "learning_rate": 0.0006,
+ "loss": 6.476300239562988,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.47679027915000916,
+ "learning_rate": 0.0006,
+ "loss": 6.463827133178711,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 7.388528823852539,
+ "eval_runtime": 44.2519,
+ "eval_samples_per_second": 55.184,
+ "eval_steps_per_second": 3.457,
+ "step": 144
+ },
+ {
+ "epoch": 2.0139799038881607,
+ "grad_norm": 0.4719221293926239,
+ "learning_rate": 0.0006,
+ "loss": 6.480956077575684,
+ "step": 145
+ },
+ {
+ "epoch": 2.0279598077763215,
+ "grad_norm": 0.41137924790382385,
+ "learning_rate": 0.0006,
+ "loss": 6.449707984924316,
+ "step": 146
+ },
+ {
+ "epoch": 2.041939711664482,
+ "grad_norm": 0.4237765371799469,
+ "learning_rate": 0.0006,
+ "loss": 6.467435836791992,
+ "step": 147
+ },
+ {
+ "epoch": 2.055919615552643,
+ "grad_norm": 0.44081810116767883,
+ "learning_rate": 0.0006,
+ "loss": 6.436868667602539,
+ "step": 148
+ },
+ {
+ "epoch": 2.0698995194408036,
+ "grad_norm": 0.4163798391819,
+ "learning_rate": 0.0006,
+ "loss": 6.4642014503479,
+ "step": 149
+ },
+ {
+ "epoch": 2.083879423328965,
+ "grad_norm": 0.3831583261489868,
+ "learning_rate": 0.0006,
+ "loss": 6.454092025756836,
+ "step": 150
+ },
+ {
+ "epoch": 2.0978593272171255,
+ "grad_norm": 0.37721413373947144,
+ "learning_rate": 0.0006,
+ "loss": 6.426377296447754,
+ "step": 151
+ },
+ {
+ "epoch": 2.1118392311052863,
+ "grad_norm": 0.3323550224304199,
+ "learning_rate": 0.0006,
+ "loss": 6.421375274658203,
+ "step": 152
+ },
+ {
+ "epoch": 2.125819134993447,
+ "grad_norm": 0.47739624977111816,
+ "learning_rate": 0.0006,
+ "loss": 6.412004470825195,
+ "step": 153
+ },
+ {
+ "epoch": 2.1397990388816077,
+ "grad_norm": 0.8530274629592896,
+ "learning_rate": 0.0006,
+ "loss": 6.410468578338623,
+ "step": 154
+ },
+ {
+ "epoch": 2.1537789427697684,
+ "grad_norm": 0.6420364379882812,
+ "learning_rate": 0.0006,
+ "loss": 6.413525581359863,
+ "step": 155
+ },
+ {
+ "epoch": 2.167758846657929,
+ "grad_norm": 0.5005049109458923,
+ "learning_rate": 0.0006,
+ "loss": 6.401463508605957,
+ "step": 156
+ },
+ {
+ "epoch": 2.18173875054609,
+ "grad_norm": 0.3614683449268341,
+ "learning_rate": 0.0006,
+ "loss": 6.390063285827637,
+ "step": 157
+ },
+ {
+ "epoch": 2.1957186544342506,
+ "grad_norm": 0.595215380191803,
+ "learning_rate": 0.0006,
+ "loss": 6.369806289672852,
+ "step": 158
+ },
+ {
+ "epoch": 2.2096985583224114,
+ "grad_norm": 0.5700321793556213,
+ "learning_rate": 0.0006,
+ "loss": 6.368378639221191,
+ "step": 159
+ },
+ {
+ "epoch": 2.2236784622105725,
+ "grad_norm": 0.36273983120918274,
+ "learning_rate": 0.0006,
+ "loss": 6.366860389709473,
+ "step": 160
+ },
+ {
+ "epoch": 2.2376583660987333,
+ "grad_norm": 0.2850998342037201,
+ "learning_rate": 0.0006,
+ "loss": 6.352144718170166,
+ "step": 161
+ },
+ {
+ "epoch": 2.251638269986894,
+ "grad_norm": 0.38558584451675415,
+ "learning_rate": 0.0006,
+ "loss": 6.375765800476074,
+ "step": 162
+ },
+ {
+ "epoch": 2.2656181738750547,
+ "grad_norm": 0.34809231758117676,
+ "learning_rate": 0.0006,
+ "loss": 6.350445747375488,
+ "step": 163
+ },
+ {
+ "epoch": 2.2795980777632154,
+ "grad_norm": 0.5211818814277649,
+ "learning_rate": 0.0006,
+ "loss": 6.354585647583008,
+ "step": 164
+ },
+ {
+ "epoch": 2.293577981651376,
+ "grad_norm": 1.0809133052825928,
+ "learning_rate": 0.0006,
+ "loss": 6.3752007484436035,
+ "step": 165
+ },
+ {
+ "epoch": 2.307557885539537,
+ "grad_norm": 0.8293641209602356,
+ "learning_rate": 0.0006,
+ "loss": 6.35113525390625,
+ "step": 166
+ },
+ {
+ "epoch": 2.3215377894276976,
+ "grad_norm": 0.3428577780723572,
+ "learning_rate": 0.0006,
+ "loss": 6.334470748901367,
+ "step": 167
+ },
+ {
+ "epoch": 2.3355176933158583,
+ "grad_norm": 0.7587600946426392,
+ "learning_rate": 0.0006,
+ "loss": 6.353979587554932,
+ "step": 168
+ },
+ {
+ "epoch": 2.349497597204019,
+ "grad_norm": 0.4227249026298523,
+ "learning_rate": 0.0006,
+ "loss": 6.34018611907959,
+ "step": 169
+ },
+ {
+ "epoch": 2.36347750109218,
+ "grad_norm": 0.4226846694946289,
+ "learning_rate": 0.0006,
+ "loss": 6.290019989013672,
+ "step": 170
+ },
+ {
+ "epoch": 2.3774574049803405,
+ "grad_norm": 0.38412365317344666,
+ "learning_rate": 0.0006,
+ "loss": 6.309510231018066,
+ "step": 171
+ },
+ {
+ "epoch": 2.3914373088685017,
+ "grad_norm": 0.45698508620262146,
+ "learning_rate": 0.0006,
+ "loss": 6.283290863037109,
+ "step": 172
+ },
+ {
+ "epoch": 2.4054172127566624,
+ "grad_norm": 0.7575915455818176,
+ "learning_rate": 0.0006,
+ "loss": 6.306073188781738,
+ "step": 173
+ },
+ {
+ "epoch": 2.419397116644823,
+ "grad_norm": 0.695123553276062,
+ "learning_rate": 0.0006,
+ "loss": 6.308144569396973,
+ "step": 174
+ },
+ {
+ "epoch": 2.433377020532984,
+ "grad_norm": 0.5035743117332458,
+ "learning_rate": 0.0006,
+ "loss": 6.282073974609375,
+ "step": 175
+ },
+ {
+ "epoch": 2.4473569244211446,
+ "grad_norm": 0.3158020079135895,
+ "learning_rate": 0.0006,
+ "loss": 6.282169342041016,
+ "step": 176
+ },
+ {
+ "epoch": 2.4613368283093053,
+ "grad_norm": 0.4829689860343933,
+ "learning_rate": 0.0006,
+ "loss": 6.264578819274902,
+ "step": 177
+ },
+ {
+ "epoch": 2.475316732197466,
+ "grad_norm": 0.3992770314216614,
+ "learning_rate": 0.0006,
+ "loss": 6.228628158569336,
+ "step": 178
+ },
+ {
+ "epoch": 2.489296636085627,
+ "grad_norm": 0.40887606143951416,
+ "learning_rate": 0.0006,
+ "loss": 6.230792045593262,
+ "step": 179
+ },
+ {
+ "epoch": 2.5032765399737875,
+ "grad_norm": 0.3540310263633728,
+ "learning_rate": 0.0006,
+ "loss": 6.222573280334473,
+ "step": 180
+ },
+ {
+ "epoch": 2.5172564438619487,
+ "grad_norm": 0.496219664812088,
+ "learning_rate": 0.0006,
+ "loss": 6.212109565734863,
+ "step": 181
+ },
+ {
+ "epoch": 2.5312363477501094,
+ "grad_norm": 0.435173898935318,
+ "learning_rate": 0.0006,
+ "loss": 6.221210479736328,
+ "step": 182
+ },
+ {
+ "epoch": 2.54521625163827,
+ "grad_norm": 0.5364007949829102,
+ "learning_rate": 0.0006,
+ "loss": 6.217929840087891,
+ "step": 183
+ },
+ {
+ "epoch": 2.559196155526431,
+ "grad_norm": 0.5946390628814697,
+ "learning_rate": 0.0006,
+ "loss": 6.189267158508301,
+ "step": 184
+ },
+ {
+ "epoch": 2.5731760594145916,
+ "grad_norm": 0.41621312499046326,
+ "learning_rate": 0.0006,
+ "loss": 6.182415008544922,
+ "step": 185
+ },
+ {
+ "epoch": 2.5871559633027523,
+ "grad_norm": 0.5442072749137878,
+ "learning_rate": 0.0006,
+ "loss": 6.150757789611816,
+ "step": 186
+ },
+ {
+ "epoch": 2.601135867190913,
+ "grad_norm": 0.727843165397644,
+ "learning_rate": 0.0006,
+ "loss": 6.146082878112793,
+ "step": 187
+ },
+ {
+ "epoch": 2.615115771079074,
+ "grad_norm": 0.8898891806602478,
+ "learning_rate": 0.0006,
+ "loss": 6.190483093261719,
+ "step": 188
+ },
+ {
+ "epoch": 2.6290956749672345,
+ "grad_norm": 0.5173947215080261,
+ "learning_rate": 0.0006,
+ "loss": 6.151251792907715,
+ "step": 189
+ },
+ {
+ "epoch": 2.6430755788553952,
+ "grad_norm": 0.6476729512214661,
+ "learning_rate": 0.0006,
+ "loss": 6.154841423034668,
+ "step": 190
+ },
+ {
+ "epoch": 2.657055482743556,
+ "grad_norm": 0.3538810908794403,
+ "learning_rate": 0.0006,
+ "loss": 6.103879928588867,
+ "step": 191
+ },
+ {
+ "epoch": 2.6710353866317167,
+ "grad_norm": 0.4773508310317993,
+ "learning_rate": 0.0006,
+ "loss": 6.118101119995117,
+ "step": 192
+ },
+ {
+ "epoch": 2.6850152905198774,
+ "grad_norm": 0.29213786125183105,
+ "learning_rate": 0.0006,
+ "loss": 6.108916282653809,
+ "step": 193
+ },
+ {
+ "epoch": 2.6989951944080386,
+ "grad_norm": 0.40800607204437256,
+ "learning_rate": 0.0006,
+ "loss": 6.113438606262207,
+ "step": 194
+ },
+ {
+ "epoch": 2.7129750982961993,
+ "grad_norm": 0.31157299876213074,
+ "learning_rate": 0.0006,
+ "loss": 6.101809501647949,
+ "step": 195
+ },
+ {
+ "epoch": 2.72695500218436,
+ "grad_norm": 0.28660309314727783,
+ "learning_rate": 0.0006,
+ "loss": 6.075886249542236,
+ "step": 196
+ },
+ {
+ "epoch": 2.7409349060725208,
+ "grad_norm": 0.3810449540615082,
+ "learning_rate": 0.0006,
+ "loss": 6.053257942199707,
+ "step": 197
+ },
+ {
+ "epoch": 2.7549148099606815,
+ "grad_norm": 0.21741755306720734,
+ "learning_rate": 0.0006,
+ "loss": 6.013825416564941,
+ "step": 198
+ },
+ {
+ "epoch": 2.7688947138488422,
+ "grad_norm": 0.2777678966522217,
+ "learning_rate": 0.0006,
+ "loss": 6.054204940795898,
+ "step": 199
+ },
+ {
+ "epoch": 2.782874617737003,
+ "grad_norm": 0.28503066301345825,
+ "learning_rate": 0.0006,
+ "loss": 6.035628318786621,
+ "step": 200
+ },
+ {
+ "epoch": 2.7968545216251637,
+ "grad_norm": 0.41954755783081055,
+ "learning_rate": 0.0006,
+ "loss": 6.028354644775391,
+ "step": 201
+ },
+ {
+ "epoch": 2.810834425513325,
+ "grad_norm": 0.8785563111305237,
+ "learning_rate": 0.0006,
+ "loss": 6.055761337280273,
+ "step": 202
+ },
+ {
+ "epoch": 2.8248143294014856,
+ "grad_norm": 1.7459558248519897,
+ "learning_rate": 0.0006,
+ "loss": 6.11599588394165,
+ "step": 203
+ },
+ {
+ "epoch": 2.8387942332896463,
+ "grad_norm": 0.5725523233413696,
+ "learning_rate": 0.0006,
+ "loss": 6.024280548095703,
+ "step": 204
+ },
+ {
+ "epoch": 2.852774137177807,
+ "grad_norm": 0.5913150906562805,
+ "learning_rate": 0.0006,
+ "loss": 6.050281524658203,
+ "step": 205
+ },
+ {
+ "epoch": 2.8667540410659678,
+ "grad_norm": 0.5929384827613831,
+ "learning_rate": 0.0006,
+ "loss": 6.041121482849121,
+ "step": 206
+ },
+ {
+ "epoch": 2.8807339449541285,
+ "grad_norm": 0.5650724768638611,
+ "learning_rate": 0.0006,
+ "loss": 6.004258155822754,
+ "step": 207
+ },
+ {
+ "epoch": 2.894713848842289,
+ "grad_norm": 0.3420545756816864,
+ "learning_rate": 0.0006,
+ "loss": 5.983296871185303,
+ "step": 208
+ },
+ {
+ "epoch": 2.90869375273045,
+ "grad_norm": 0.2960914075374603,
+ "learning_rate": 0.0006,
+ "loss": 5.988578796386719,
+ "step": 209
+ },
+ {
+ "epoch": 2.9226736566186107,
+ "grad_norm": 0.3252662718296051,
+ "learning_rate": 0.0006,
+ "loss": 5.99103307723999,
+ "step": 210
+ },
+ {
+ "epoch": 2.9366535605067714,
+ "grad_norm": 0.4851132929325104,
+ "learning_rate": 0.0006,
+ "loss": 6.0028977394104,
+ "step": 211
+ },
+ {
+ "epoch": 2.950633464394932,
+ "grad_norm": 0.5639995336532593,
+ "learning_rate": 0.0006,
+ "loss": 5.965080738067627,
+ "step": 212
+ },
+ {
+ "epoch": 2.964613368283093,
+ "grad_norm": 0.4514601230621338,
+ "learning_rate": 0.0006,
+ "loss": 5.961450576782227,
+ "step": 213
+ },
+ {
+ "epoch": 2.9785932721712536,
+ "grad_norm": 0.5397921800613403,
+ "learning_rate": 0.0006,
+ "loss": 5.965290546417236,
+ "step": 214
+ },
+ {
+ "epoch": 2.9925731760594148,
+ "grad_norm": 0.4735587239265442,
+ "learning_rate": 0.0006,
+ "loss": 5.952754497528076,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.32061058282852173,
+ "learning_rate": 0.0006,
+ "loss": 5.961667060852051,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 6.8517303466796875,
+ "eval_runtime": 44.03,
+ "eval_samples_per_second": 55.462,
+ "eval_steps_per_second": 3.475,
+ "step": 216
+ },
+ {
+ "epoch": 3.0139799038881607,
+ "grad_norm": 0.3537784814834595,
+ "learning_rate": 0.0006,
+ "loss": 5.928008079528809,
+ "step": 217
+ },
+ {
+ "epoch": 3.0279598077763215,
+ "grad_norm": 0.40713080763816833,
+ "learning_rate": 0.0006,
+ "loss": 5.9150800704956055,
+ "step": 218
+ },
+ {
+ "epoch": 3.041939711664482,
+ "grad_norm": 0.2548826336860657,
+ "learning_rate": 0.0006,
+ "loss": 5.919757843017578,
+ "step": 219
+ },
+ {
+ "epoch": 3.055919615552643,
+ "grad_norm": 0.2818543016910553,
+ "learning_rate": 0.0006,
+ "loss": 5.913688659667969,
+ "step": 220
+ },
+ {
+ "epoch": 3.0698995194408036,
+ "grad_norm": 0.4196692705154419,
+ "learning_rate": 0.0006,
+ "loss": 5.8675336837768555,
+ "step": 221
+ },
+ {
+ "epoch": 3.083879423328965,
+ "grad_norm": 0.35272282361984253,
+ "learning_rate": 0.0006,
+ "loss": 5.878874778747559,
+ "step": 222
+ },
+ {
+ "epoch": 3.0978593272171255,
+ "grad_norm": 0.3254282772541046,
+ "learning_rate": 0.0006,
+ "loss": 5.8823041915893555,
+ "step": 223
+ },
+ {
+ "epoch": 3.1118392311052863,
+ "grad_norm": 0.4052561819553375,
+ "learning_rate": 0.0006,
+ "loss": 5.867744445800781,
+ "step": 224
+ },
+ {
+ "epoch": 3.125819134993447,
+ "grad_norm": 0.31246256828308105,
+ "learning_rate": 0.0006,
+ "loss": 5.886094093322754,
+ "step": 225
+ },
+ {
+ "epoch": 3.1397990388816077,
+ "grad_norm": 0.3479118347167969,
+ "learning_rate": 0.0006,
+ "loss": 5.850762367248535,
+ "step": 226
+ },
+ {
+ "epoch": 3.1537789427697684,
+ "grad_norm": 0.5037238597869873,
+ "learning_rate": 0.0006,
+ "loss": 5.844175815582275,
+ "step": 227
+ },
+ {
+ "epoch": 3.167758846657929,
+ "grad_norm": 0.6271815896034241,
+ "learning_rate": 0.0006,
+ "loss": 5.871790885925293,
+ "step": 228
+ },
+ {
+ "epoch": 3.18173875054609,
+ "grad_norm": 0.43838298320770264,
+ "learning_rate": 0.0006,
+ "loss": 5.844024658203125,
+ "step": 229
+ },
+ {
+ "epoch": 3.1957186544342506,
+ "grad_norm": 0.4755159616470337,
+ "learning_rate": 0.0006,
+ "loss": 5.846892356872559,
+ "step": 230
+ },
+ {
+ "epoch": 3.2096985583224114,
+ "grad_norm": 0.5229779481887817,
+ "learning_rate": 0.0006,
+ "loss": 5.827000617980957,
+ "step": 231
+ },
+ {
+ "epoch": 3.2236784622105725,
+ "grad_norm": 0.8264499306678772,
+ "learning_rate": 0.0006,
+ "loss": 5.867050647735596,
+ "step": 232
+ },
+ {
+ "epoch": 3.2376583660987333,
+ "grad_norm": 1.0607538223266602,
+ "learning_rate": 0.0006,
+ "loss": 5.877876281738281,
+ "step": 233
+ },
+ {
+ "epoch": 3.251638269986894,
+ "grad_norm": 0.7656505703926086,
+ "learning_rate": 0.0006,
+ "loss": 5.86760139465332,
+ "step": 234
+ },
+ {
+ "epoch": 3.2656181738750547,
+ "grad_norm": 0.7940183281898499,
+ "learning_rate": 0.0006,
+ "loss": 5.861355781555176,
+ "step": 235
+ },
+ {
+ "epoch": 3.2795980777632154,
+ "grad_norm": 0.45171424746513367,
+ "learning_rate": 0.0006,
+ "loss": 5.799808502197266,
+ "step": 236
+ },
+ {
+ "epoch": 3.293577981651376,
+ "grad_norm": 0.6174989342689514,
+ "learning_rate": 0.0006,
+ "loss": 5.8585920333862305,
+ "step": 237
+ },
+ {
+ "epoch": 3.307557885539537,
+ "grad_norm": 0.5341290831565857,
+ "learning_rate": 0.0006,
+ "loss": 5.8116044998168945,
+ "step": 238
+ },
+ {
+ "epoch": 3.3215377894276976,
+ "grad_norm": 0.3938343822956085,
+ "learning_rate": 0.0006,
+ "loss": 5.83797550201416,
+ "step": 239
+ },
+ {
+ "epoch": 3.3355176933158583,
+ "grad_norm": 0.5106972455978394,
+ "learning_rate": 0.0006,
+ "loss": 5.832303047180176,
+ "step": 240
+ },
+ {
+ "epoch": 3.349497597204019,
+ "grad_norm": 0.3791428506374359,
+ "learning_rate": 0.0006,
+ "loss": 5.794981956481934,
+ "step": 241
+ },
+ {
+ "epoch": 3.36347750109218,
+ "grad_norm": 0.42287978529930115,
+ "learning_rate": 0.0006,
+ "loss": 5.788144111633301,
+ "step": 242
+ },
+ {
+ "epoch": 3.3774574049803405,
+ "grad_norm": 0.27334436774253845,
+ "learning_rate": 0.0006,
+ "loss": 5.771070957183838,
+ "step": 243
+ },
+ {
+ "epoch": 3.3914373088685017,
+ "grad_norm": 0.2470470368862152,
+ "learning_rate": 0.0006,
+ "loss": 5.755998611450195,
+ "step": 244
+ },
+ {
+ "epoch": 3.4054172127566624,
+ "grad_norm": 0.3043915033340454,
+ "learning_rate": 0.0006,
+ "loss": 5.779492378234863,
+ "step": 245
+ },
+ {
+ "epoch": 3.419397116644823,
+ "grad_norm": 0.2960112988948822,
+ "learning_rate": 0.0006,
+ "loss": 5.750328063964844,
+ "step": 246
+ },
+ {
+ "epoch": 3.433377020532984,
+ "grad_norm": 0.3046723008155823,
+ "learning_rate": 0.0006,
+ "loss": 5.776517868041992,
+ "step": 247
+ },
+ {
+ "epoch": 3.4473569244211446,
+ "grad_norm": 0.22461780905723572,
+ "learning_rate": 0.0006,
+ "loss": 5.760989665985107,
+ "step": 248
+ },
+ {
+ "epoch": 3.4613368283093053,
+ "grad_norm": 0.24625757336616516,
+ "learning_rate": 0.0006,
+ "loss": 5.759706497192383,
+ "step": 249
+ },
+ {
+ "epoch": 3.475316732197466,
+ "grad_norm": 0.18207131326198578,
+ "learning_rate": 0.0006,
+ "loss": 5.747040748596191,
+ "step": 250
+ },
+ {
+ "epoch": 3.489296636085627,
+ "grad_norm": 0.16473834216594696,
+ "learning_rate": 0.0006,
+ "loss": 5.761577606201172,
+ "step": 251
+ },
+ {
+ "epoch": 3.5032765399737875,
+ "grad_norm": 0.25155773758888245,
+ "learning_rate": 0.0006,
+ "loss": 5.696502208709717,
+ "step": 252
+ },
+ {
+ "epoch": 3.5172564438619487,
+ "grad_norm": 0.24115674197673798,
+ "learning_rate": 0.0006,
+ "loss": 5.676957130432129,
+ "step": 253
+ },
+ {
+ "epoch": 3.5312363477501094,
+ "grad_norm": 0.40912172198295593,
+ "learning_rate": 0.0006,
+ "loss": 5.695090293884277,
+ "step": 254
+ },
+ {
+ "epoch": 3.54521625163827,
+ "grad_norm": 0.6727662682533264,
+ "learning_rate": 0.0006,
+ "loss": 5.722194671630859,
+ "step": 255
+ },
+ {
+ "epoch": 3.559196155526431,
+ "grad_norm": 0.8450719118118286,
+ "learning_rate": 0.0006,
+ "loss": 5.764680862426758,
+ "step": 256
+ },
+ {
+ "epoch": 3.5731760594145916,
+ "grad_norm": 0.9916183352470398,
+ "learning_rate": 0.0006,
+ "loss": 5.754530429840088,
+ "step": 257
+ },
+ {
+ "epoch": 3.5871559633027523,
+ "grad_norm": 1.041922688484192,
+ "learning_rate": 0.0006,
+ "loss": 5.781468391418457,
+ "step": 258
+ },
+ {
+ "epoch": 3.601135867190913,
+ "grad_norm": 0.972039520740509,
+ "learning_rate": 0.0006,
+ "loss": 5.760323524475098,
+ "step": 259
+ },
+ {
+ "epoch": 3.615115771079074,
+ "grad_norm": 0.6802462935447693,
+ "learning_rate": 0.0006,
+ "loss": 5.750064849853516,
+ "step": 260
+ },
+ {
+ "epoch": 3.6290956749672345,
+ "grad_norm": 0.48553529381752014,
+ "learning_rate": 0.0006,
+ "loss": 5.7464094161987305,
+ "step": 261
+ },
+ {
+ "epoch": 3.6430755788553952,
+ "grad_norm": 0.4066704213619232,
+ "learning_rate": 0.0006,
+ "loss": 5.719789505004883,
+ "step": 262
+ },
+ {
+ "epoch": 3.657055482743556,
+ "grad_norm": 0.3300860822200775,
+ "learning_rate": 0.0006,
+ "loss": 5.719920635223389,
+ "step": 263
+ },
+ {
+ "epoch": 3.6710353866317167,
+ "grad_norm": 0.3286679983139038,
+ "learning_rate": 0.0006,
+ "loss": 5.723465919494629,
+ "step": 264
+ },
+ {
+ "epoch": 3.6850152905198774,
+ "grad_norm": 0.27653390169143677,
+ "learning_rate": 0.0006,
+ "loss": 5.713820457458496,
+ "step": 265
+ },
+ {
+ "epoch": 3.6989951944080386,
+ "grad_norm": 0.26138055324554443,
+ "learning_rate": 0.0006,
+ "loss": 5.683221817016602,
+ "step": 266
+ },
+ {
+ "epoch": 3.7129750982961993,
+ "grad_norm": 0.23706290125846863,
+ "learning_rate": 0.0006,
+ "loss": 5.6896867752075195,
+ "step": 267
+ },
+ {
+ "epoch": 3.72695500218436,
+ "grad_norm": 0.2751729190349579,
+ "learning_rate": 0.0006,
+ "loss": 5.710301876068115,
+ "step": 268
+ },
+ {
+ "epoch": 3.7409349060725208,
+ "grad_norm": 0.255393385887146,
+ "learning_rate": 0.0006,
+ "loss": 5.687932968139648,
+ "step": 269
+ },
+ {
+ "epoch": 3.7549148099606815,
+ "grad_norm": 0.21453925967216492,
+ "learning_rate": 0.0006,
+ "loss": 5.68234395980835,
+ "step": 270
+ },
+ {
+ "epoch": 3.7688947138488422,
+ "grad_norm": 0.21771012246608734,
+ "learning_rate": 0.0006,
+ "loss": 5.683980464935303,
+ "step": 271
+ },
+ {
+ "epoch": 3.782874617737003,
+ "grad_norm": 0.1884593963623047,
+ "learning_rate": 0.0006,
+ "loss": 5.662779808044434,
+ "step": 272
+ },
+ {
+ "epoch": 3.7968545216251637,
+ "grad_norm": 0.20429612696170807,
+ "learning_rate": 0.0006,
+ "loss": 5.650941848754883,
+ "step": 273
+ },
+ {
+ "epoch": 3.810834425513325,
+ "grad_norm": 0.22586797177791595,
+ "learning_rate": 0.0006,
+ "loss": 5.639376640319824,
+ "step": 274
+ },
+ {
+ "epoch": 3.8248143294014856,
+ "grad_norm": 0.19651705026626587,
+ "learning_rate": 0.0006,
+ "loss": 5.612030029296875,
+ "step": 275
+ },
+ {
+ "epoch": 3.8387942332896463,
+ "grad_norm": 0.2125253826379776,
+ "learning_rate": 0.0006,
+ "loss": 5.622836589813232,
+ "step": 276
+ },
+ {
+ "epoch": 3.852774137177807,
+ "grad_norm": 0.2905234694480896,
+ "learning_rate": 0.0006,
+ "loss": 5.624594688415527,
+ "step": 277
+ },
+ {
+ "epoch": 3.8667540410659678,
+ "grad_norm": 0.2718426585197449,
+ "learning_rate": 0.0006,
+ "loss": 5.619892120361328,
+ "step": 278
+ },
+ {
+ "epoch": 3.8807339449541285,
+ "grad_norm": 0.26481127738952637,
+ "learning_rate": 0.0006,
+ "loss": 5.612496852874756,
+ "step": 279
+ },
+ {
+ "epoch": 3.894713848842289,
+ "grad_norm": 0.2876453399658203,
+ "learning_rate": 0.0006,
+ "loss": 5.59157133102417,
+ "step": 280
+ },
+ {
+ "epoch": 3.90869375273045,
+ "grad_norm": 0.22829554975032806,
+ "learning_rate": 0.0006,
+ "loss": 5.5884199142456055,
+ "step": 281
+ },
+ {
+ "epoch": 3.9226736566186107,
+ "grad_norm": 0.22852344810962677,
+ "learning_rate": 0.0006,
+ "loss": 5.618719100952148,
+ "step": 282
+ },
+ {
+ "epoch": 3.9366535605067714,
+ "grad_norm": 0.37366563081741333,
+ "learning_rate": 0.0006,
+ "loss": 5.611738204956055,
+ "step": 283
+ },
+ {
+ "epoch": 3.950633464394932,
+ "grad_norm": 0.5650382041931152,
+ "learning_rate": 0.0006,
+ "loss": 5.606371879577637,
+ "step": 284
+ },
+ {
+ "epoch": 3.964613368283093,
+ "grad_norm": 0.5960066914558411,
+ "learning_rate": 0.0006,
+ "loss": 5.595022201538086,
+ "step": 285
+ },
+ {
+ "epoch": 3.9785932721712536,
+ "grad_norm": 0.3561663031578064,
+ "learning_rate": 0.0006,
+ "loss": 5.581035614013672,
+ "step": 286
+ },
+ {
+ "epoch": 3.9925731760594148,
+ "grad_norm": 0.44699913263320923,
+ "learning_rate": 0.0006,
+ "loss": 5.568033218383789,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.42783990502357483,
+ "learning_rate": 0.0006,
+ "loss": 5.571993827819824,
+ "step": 288
+ },
+ {
+ "epoch": 4.0,
+ "eval_loss": 6.349016189575195,
+ "eval_runtime": 44.3326,
+ "eval_samples_per_second": 55.084,
+ "eval_steps_per_second": 3.451,
+ "step": 288
+ },
+ {
+ "epoch": 4.013979903888161,
+ "grad_norm": 0.41305896639823914,
+ "learning_rate": 0.0006,
+ "loss": 5.562954902648926,
+ "step": 289
+ },
+ {
+ "epoch": 4.0279598077763215,
+ "grad_norm": 0.3966459035873413,
+ "learning_rate": 0.0006,
+ "loss": 5.5671916007995605,
+ "step": 290
+ },
+ {
+ "epoch": 4.041939711664482,
+ "grad_norm": 0.4846104085445404,
+ "learning_rate": 0.0006,
+ "loss": 5.548027038574219,
+ "step": 291
+ },
+ {
+ "epoch": 4.055919615552643,
+ "grad_norm": 0.5916333794593811,
+ "learning_rate": 0.0006,
+ "loss": 5.5900068283081055,
+ "step": 292
+ },
+ {
+ "epoch": 4.069899519440804,
+ "grad_norm": 0.5973889231681824,
+ "learning_rate": 0.0006,
+ "loss": 5.537594795227051,
+ "step": 293
+ },
+ {
+ "epoch": 4.083879423328964,
+ "grad_norm": 0.4190494418144226,
+ "learning_rate": 0.0006,
+ "loss": 5.534749984741211,
+ "step": 294
+ },
+ {
+ "epoch": 4.097859327217125,
+ "grad_norm": 0.5956901907920837,
+ "learning_rate": 0.0006,
+ "loss": 5.554540634155273,
+ "step": 295
+ },
+ {
+ "epoch": 4.111839231105286,
+ "grad_norm": 0.8257920742034912,
+ "learning_rate": 0.0006,
+ "loss": 5.5728068351745605,
+ "step": 296
+ },
+ {
+ "epoch": 4.1258191349934465,
+ "grad_norm": 0.7241750955581665,
+ "learning_rate": 0.0006,
+ "loss": 5.5643815994262695,
+ "step": 297
+ },
+ {
+ "epoch": 4.139799038881607,
+ "grad_norm": 0.45730507373809814,
+ "learning_rate": 0.0006,
+ "loss": 5.554225921630859,
+ "step": 298
+ },
+ {
+ "epoch": 4.153778942769769,
+ "grad_norm": 0.5166977643966675,
+ "learning_rate": 0.0006,
+ "loss": 5.540790557861328,
+ "step": 299
+ },
+ {
+ "epoch": 4.16775884665793,
+ "grad_norm": 0.433237761259079,
+ "learning_rate": 0.0006,
+ "loss": 5.536884784698486,
+ "step": 300
+ },
+ {
+ "epoch": 4.18173875054609,
+ "grad_norm": 0.3369830250740051,
+ "learning_rate": 0.0006,
+ "loss": 5.532837867736816,
+ "step": 301
+ },
+ {
+ "epoch": 4.195718654434251,
+ "grad_norm": 0.33091458678245544,
+ "learning_rate": 0.0006,
+ "loss": 5.547643661499023,
+ "step": 302
+ },
+ {
+ "epoch": 4.209698558322412,
+ "grad_norm": 0.36462724208831787,
+ "learning_rate": 0.0006,
+ "loss": 5.525021076202393,
+ "step": 303
+ },
+ {
+ "epoch": 4.2236784622105725,
+ "grad_norm": 0.3342771530151367,
+ "learning_rate": 0.0006,
+ "loss": 5.512082099914551,
+ "step": 304
+ },
+ {
+ "epoch": 4.237658366098733,
+ "grad_norm": 0.26784762740135193,
+ "learning_rate": 0.0006,
+ "loss": 5.488072395324707,
+ "step": 305
+ },
+ {
+ "epoch": 4.251638269986894,
+ "grad_norm": 0.25986987352371216,
+ "learning_rate": 0.0006,
+ "loss": 5.4960455894470215,
+ "step": 306
+ },
+ {
+ "epoch": 4.265618173875055,
+ "grad_norm": 0.24595795571804047,
+ "learning_rate": 0.0006,
+ "loss": 5.513367176055908,
+ "step": 307
+ },
+ {
+ "epoch": 4.279598077763215,
+ "grad_norm": 0.2224857211112976,
+ "learning_rate": 0.0006,
+ "loss": 5.465205192565918,
+ "step": 308
+ },
+ {
+ "epoch": 4.293577981651376,
+ "grad_norm": 0.26799243688583374,
+ "learning_rate": 0.0006,
+ "loss": 5.476632118225098,
+ "step": 309
+ },
+ {
+ "epoch": 4.307557885539537,
+ "grad_norm": 0.20443417131900787,
+ "learning_rate": 0.0006,
+ "loss": 5.442601203918457,
+ "step": 310
+ },
+ {
+ "epoch": 4.321537789427698,
+ "grad_norm": 0.2275059074163437,
+ "learning_rate": 0.0006,
+ "loss": 5.453519344329834,
+ "step": 311
+ },
+ {
+ "epoch": 4.335517693315858,
+ "grad_norm": 0.2860901951789856,
+ "learning_rate": 0.0006,
+ "loss": 5.439424514770508,
+ "step": 312
+ },
+ {
+ "epoch": 4.349497597204019,
+ "grad_norm": 0.3378142714500427,
+ "learning_rate": 0.0006,
+ "loss": 5.476953983306885,
+ "step": 313
+ },
+ {
+ "epoch": 4.36347750109218,
+ "grad_norm": 0.3487110733985901,
+ "learning_rate": 0.0006,
+ "loss": 5.47003698348999,
+ "step": 314
+ },
+ {
+ "epoch": 4.3774574049803405,
+ "grad_norm": 0.3655227720737457,
+ "learning_rate": 0.0006,
+ "loss": 5.454250812530518,
+ "step": 315
+ },
+ {
+ "epoch": 4.391437308868501,
+ "grad_norm": 0.3754786252975464,
+ "learning_rate": 0.0006,
+ "loss": 5.475249290466309,
+ "step": 316
+ },
+ {
+ "epoch": 4.405417212756662,
+ "grad_norm": 0.42494088411331177,
+ "learning_rate": 0.0006,
+ "loss": 5.4552459716796875,
+ "step": 317
+ },
+ {
+ "epoch": 4.419397116644823,
+ "grad_norm": 0.4914703667163849,
+ "learning_rate": 0.0006,
+ "loss": 5.431845188140869,
+ "step": 318
+ },
+ {
+ "epoch": 4.433377020532983,
+ "grad_norm": 0.42470860481262207,
+ "learning_rate": 0.0006,
+ "loss": 5.454581260681152,
+ "step": 319
+ },
+ {
+ "epoch": 4.447356924421145,
+ "grad_norm": 0.3828011155128479,
+ "learning_rate": 0.0006,
+ "loss": 5.435178756713867,
+ "step": 320
+ },
+ {
+ "epoch": 4.461336828309306,
+ "grad_norm": 0.47256892919540405,
+ "learning_rate": 0.0006,
+ "loss": 5.428861618041992,
+ "step": 321
+ },
+ {
+ "epoch": 4.4753167321974665,
+ "grad_norm": 0.5665146708488464,
+ "learning_rate": 0.0006,
+ "loss": 5.424633026123047,
+ "step": 322
+ },
+ {
+ "epoch": 4.489296636085627,
+ "grad_norm": 0.48146721720695496,
+ "learning_rate": 0.0006,
+ "loss": 5.4577860832214355,
+ "step": 323
+ },
+ {
+ "epoch": 4.503276539973788,
+ "grad_norm": 0.3378535509109497,
+ "learning_rate": 0.0006,
+ "loss": 5.422727108001709,
+ "step": 324
+ },
+ {
+ "epoch": 4.517256443861949,
+ "grad_norm": 0.41981473565101624,
+ "learning_rate": 0.0006,
+ "loss": 5.418993949890137,
+ "step": 325
+ },
+ {
+ "epoch": 4.531236347750109,
+ "grad_norm": 0.39389684796333313,
+ "learning_rate": 0.0006,
+ "loss": 5.41835880279541,
+ "step": 326
+ },
+ {
+ "epoch": 4.54521625163827,
+ "grad_norm": 0.5912176370620728,
+ "learning_rate": 0.0006,
+ "loss": 5.40073299407959,
+ "step": 327
+ },
+ {
+ "epoch": 4.559196155526431,
+ "grad_norm": 0.6877487897872925,
+ "learning_rate": 0.0006,
+ "loss": 5.445301055908203,
+ "step": 328
+ },
+ {
+ "epoch": 4.573176059414592,
+ "grad_norm": 0.580555260181427,
+ "learning_rate": 0.0006,
+ "loss": 5.431069374084473,
+ "step": 329
+ },
+ {
+ "epoch": 4.587155963302752,
+ "grad_norm": 0.5974457859992981,
+ "learning_rate": 0.0006,
+ "loss": 5.422694206237793,
+ "step": 330
+ },
+ {
+ "epoch": 4.601135867190913,
+ "grad_norm": 0.722481906414032,
+ "learning_rate": 0.0006,
+ "loss": 5.447752952575684,
+ "step": 331
+ },
+ {
+ "epoch": 4.615115771079074,
+ "grad_norm": 0.7687886953353882,
+ "learning_rate": 0.0006,
+ "loss": 5.437956809997559,
+ "step": 332
+ },
+ {
+ "epoch": 4.6290956749672345,
+ "grad_norm": 0.7368173003196716,
+ "learning_rate": 0.0006,
+ "loss": 5.4367241859436035,
+ "step": 333
+ },
+ {
+ "epoch": 4.643075578855395,
+ "grad_norm": 0.6650524139404297,
+ "learning_rate": 0.0006,
+ "loss": 5.4288434982299805,
+ "step": 334
+ },
+ {
+ "epoch": 4.657055482743556,
+ "grad_norm": 0.4997614920139313,
+ "learning_rate": 0.0006,
+ "loss": 5.412769317626953,
+ "step": 335
+ },
+ {
+ "epoch": 4.671035386631717,
+ "grad_norm": 0.44208982586860657,
+ "learning_rate": 0.0006,
+ "loss": 5.42405366897583,
+ "step": 336
+ },
+ {
+ "epoch": 4.685015290519877,
+ "grad_norm": 0.39510273933410645,
+ "learning_rate": 0.0006,
+ "loss": 5.402547836303711,
+ "step": 337
+ },
+ {
+ "epoch": 4.698995194408038,
+ "grad_norm": 0.44970476627349854,
+ "learning_rate": 0.0006,
+ "loss": 5.377168655395508,
+ "step": 338
+ },
+ {
+ "epoch": 4.712975098296199,
+ "grad_norm": 0.3902331590652466,
+ "learning_rate": 0.0006,
+ "loss": 5.401622772216797,
+ "step": 339
+ },
+ {
+ "epoch": 4.72695500218436,
+ "grad_norm": 0.33485135436058044,
+ "learning_rate": 0.0006,
+ "loss": 5.397945880889893,
+ "step": 340
+ },
+ {
+ "epoch": 4.740934906072521,
+ "grad_norm": 0.29062309861183167,
+ "learning_rate": 0.0006,
+ "loss": 5.356175422668457,
+ "step": 341
+ },
+ {
+ "epoch": 4.754914809960681,
+ "grad_norm": 0.23617377877235413,
+ "learning_rate": 0.0006,
+ "loss": 5.388517379760742,
+ "step": 342
+ },
+ {
+ "epoch": 4.768894713848843,
+ "grad_norm": 0.2704737186431885,
+ "learning_rate": 0.0006,
+ "loss": 5.3746137619018555,
+ "step": 343
+ },
+ {
+ "epoch": 4.782874617737003,
+ "grad_norm": 0.20488551259040833,
+ "learning_rate": 0.0006,
+ "loss": 5.3754472732543945,
+ "step": 344
+ },
+ {
+ "epoch": 4.796854521625164,
+ "grad_norm": 0.2007082849740982,
+ "learning_rate": 0.0006,
+ "loss": 5.3538618087768555,
+ "step": 345
+ },
+ {
+ "epoch": 4.810834425513325,
+ "grad_norm": 0.21732935309410095,
+ "learning_rate": 0.0006,
+ "loss": 5.351774215698242,
+ "step": 346
+ },
+ {
+ "epoch": 4.824814329401486,
+ "grad_norm": 0.1944841742515564,
+ "learning_rate": 0.0006,
+ "loss": 5.357545852661133,
+ "step": 347
+ },
+ {
+ "epoch": 4.838794233289646,
+ "grad_norm": 0.1953933835029602,
+ "learning_rate": 0.0006,
+ "loss": 5.321681022644043,
+ "step": 348
+ },
+ {
+ "epoch": 4.852774137177807,
+ "grad_norm": 0.1743433028459549,
+ "learning_rate": 0.0006,
+ "loss": 5.340302467346191,
+ "step": 349
+ },
+ {
+ "epoch": 4.866754041065968,
+ "grad_norm": 0.19655466079711914,
+ "learning_rate": 0.0006,
+ "loss": 5.325471878051758,
+ "step": 350
+ },
+ {
+ "epoch": 4.8807339449541285,
+ "grad_norm": 0.15761791169643402,
+ "learning_rate": 0.0006,
+ "loss": 5.3453240394592285,
+ "step": 351
+ },
+ {
+ "epoch": 4.894713848842289,
+ "grad_norm": 0.19164425134658813,
+ "learning_rate": 0.0006,
+ "loss": 5.315583229064941,
+ "step": 352
+ },
+ {
+ "epoch": 4.90869375273045,
+ "grad_norm": 0.28084540367126465,
+ "learning_rate": 0.0006,
+ "loss": 5.309171676635742,
+ "step": 353
+ },
+ {
+ "epoch": 4.922673656618611,
+ "grad_norm": 0.4681853652000427,
+ "learning_rate": 0.0006,
+ "loss": 5.318211078643799,
+ "step": 354
+ },
+ {
+ "epoch": 4.936653560506771,
+ "grad_norm": 0.6417295932769775,
+ "learning_rate": 0.0006,
+ "loss": 5.309263706207275,
+ "step": 355
+ },
+ {
+ "epoch": 4.950633464394932,
+ "grad_norm": 0.501312792301178,
+ "learning_rate": 0.0006,
+ "loss": 5.321534156799316,
+ "step": 356
+ },
+ {
+ "epoch": 4.964613368283093,
+ "grad_norm": 0.47502145171165466,
+ "learning_rate": 0.0006,
+ "loss": 5.323659896850586,
+ "step": 357
+ },
+ {
+ "epoch": 4.978593272171254,
+ "grad_norm": 0.5366594791412354,
+ "learning_rate": 0.0006,
+ "loss": 5.327367782592773,
+ "step": 358
+ },
+ {
+ "epoch": 4.992573176059414,
+ "grad_norm": 0.6986395120620728,
+ "learning_rate": 0.0006,
+ "loss": 5.311097145080566,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.6626625657081604,
+ "learning_rate": 0.0006,
+ "loss": 5.337558269500732,
+ "step": 360
+ },
+ {
+ "epoch": 5.0,
+ "eval_loss": 5.929230690002441,
+ "eval_runtime": 44.5268,
+ "eval_samples_per_second": 54.843,
+ "eval_steps_per_second": 3.436,
+ "step": 360
+ },
+ {
+ "epoch": 5.013979903888161,
+ "grad_norm": 0.7383704781532288,
+ "learning_rate": 0.0006,
+ "loss": 5.315563678741455,
+ "step": 361
+ },
+ {
+ "epoch": 5.0279598077763215,
+ "grad_norm": 0.7730138301849365,
+ "learning_rate": 0.0006,
+ "loss": 5.324905872344971,
+ "step": 362
+ },
+ {
+ "epoch": 5.041939711664482,
+ "grad_norm": 0.8170825839042664,
+ "learning_rate": 0.0006,
+ "loss": 5.350251197814941,
+ "step": 363
+ },
+ {
+ "epoch": 5.055919615552643,
+ "grad_norm": 0.6950958371162415,
+ "learning_rate": 0.0006,
+ "loss": 5.338744163513184,
+ "step": 364
+ },
+ {
+ "epoch": 5.069899519440804,
+ "grad_norm": 0.5582894086837769,
+ "learning_rate": 0.0006,
+ "loss": 5.340539932250977,
+ "step": 365
+ },
+ {
+ "epoch": 5.083879423328964,
+ "grad_norm": 0.4772159159183502,
+ "learning_rate": 0.0006,
+ "loss": 5.344161033630371,
+ "step": 366
+ },
+ {
+ "epoch": 5.097859327217125,
+ "grad_norm": 0.5432839393615723,
+ "learning_rate": 0.0006,
+ "loss": 5.312403678894043,
+ "step": 367
+ },
+ {
+ "epoch": 5.111839231105286,
+ "grad_norm": 0.4944784641265869,
+ "learning_rate": 0.0006,
+ "loss": 5.30281925201416,
+ "step": 368
+ },
+ {
+ "epoch": 5.1258191349934465,
+ "grad_norm": 0.4298315942287445,
+ "learning_rate": 0.0006,
+ "loss": 5.29564094543457,
+ "step": 369
+ },
+ {
+ "epoch": 5.139799038881607,
+ "grad_norm": 0.349889874458313,
+ "learning_rate": 0.0006,
+ "loss": 5.287062644958496,
+ "step": 370
+ },
+ {
+ "epoch": 5.153778942769769,
+ "grad_norm": 0.2823719084262848,
+ "learning_rate": 0.0006,
+ "loss": 5.28826904296875,
+ "step": 371
+ },
+ {
+ "epoch": 5.16775884665793,
+ "grad_norm": 0.32975050806999207,
+ "learning_rate": 0.0006,
+ "loss": 5.256399631500244,
+ "step": 372
+ },
+ {
+ "epoch": 5.18173875054609,
+ "grad_norm": 0.2963952124118805,
+ "learning_rate": 0.0006,
+ "loss": 5.273757457733154,
+ "step": 373
+ },
+ {
+ "epoch": 5.195718654434251,
+ "grad_norm": 0.21345984935760498,
+ "learning_rate": 0.0006,
+ "loss": 5.274978160858154,
+ "step": 374
+ },
+ {
+ "epoch": 5.209698558322412,
+ "grad_norm": 0.2363101840019226,
+ "learning_rate": 0.0006,
+ "loss": 5.261585235595703,
+ "step": 375
+ },
+ {
+ "epoch": 5.2236784622105725,
+ "grad_norm": 0.19626963138580322,
+ "learning_rate": 0.0006,
+ "loss": 5.259700298309326,
+ "step": 376
+ },
+ {
+ "epoch": 5.237658366098733,
+ "grad_norm": 0.21083571016788483,
+ "learning_rate": 0.0006,
+ "loss": 5.233585357666016,
+ "step": 377
+ },
+ {
+ "epoch": 5.251638269986894,
+ "grad_norm": 0.2273513823747635,
+ "learning_rate": 0.0006,
+ "loss": 5.231740474700928,
+ "step": 378
+ },
+ {
+ "epoch": 5.265618173875055,
+ "grad_norm": 0.18299247324466705,
+ "learning_rate": 0.0006,
+ "loss": 5.251256465911865,
+ "step": 379
+ },
+ {
+ "epoch": 5.279598077763215,
+ "grad_norm": 0.19578224420547485,
+ "learning_rate": 0.0006,
+ "loss": 5.230329513549805,
+ "step": 380
+ },
+ {
+ "epoch": 5.293577981651376,
+ "grad_norm": 0.20308879017829895,
+ "learning_rate": 0.0006,
+ "loss": 5.243951797485352,
+ "step": 381
+ },
+ {
+ "epoch": 5.307557885539537,
+ "grad_norm": 0.21053212881088257,
+ "learning_rate": 0.0006,
+ "loss": 5.210272789001465,
+ "step": 382
+ },
+ {
+ "epoch": 5.321537789427698,
+ "grad_norm": 0.21852520108222961,
+ "learning_rate": 0.0006,
+ "loss": 5.215418815612793,
+ "step": 383
+ },
+ {
+ "epoch": 5.335517693315858,
+ "grad_norm": 0.24872010946273804,
+ "learning_rate": 0.0006,
+ "loss": 5.225139617919922,
+ "step": 384
+ },
+ {
+ "epoch": 5.349497597204019,
+ "grad_norm": 0.27780187129974365,
+ "learning_rate": 0.0006,
+ "loss": 5.241010665893555,
+ "step": 385
+ },
+ {
+ "epoch": 5.36347750109218,
+ "grad_norm": 0.261767715215683,
+ "learning_rate": 0.0006,
+ "loss": 5.230723857879639,
+ "step": 386
+ },
+ {
+ "epoch": 5.3774574049803405,
+ "grad_norm": 0.2111261785030365,
+ "learning_rate": 0.0006,
+ "loss": 5.1848602294921875,
+ "step": 387
+ },
+ {
+ "epoch": 5.391437308868501,
+ "grad_norm": 0.24325387179851532,
+ "learning_rate": 0.0006,
+ "loss": 5.180911064147949,
+ "step": 388
+ },
+ {
+ "epoch": 5.405417212756662,
+ "grad_norm": 0.19542962312698364,
+ "learning_rate": 0.0006,
+ "loss": 5.189907073974609,
+ "step": 389
+ },
+ {
+ "epoch": 5.419397116644823,
+ "grad_norm": 0.20489346981048584,
+ "learning_rate": 0.0006,
+ "loss": 5.184634208679199,
+ "step": 390
+ },
+ {
+ "epoch": 5.433377020532983,
+ "grad_norm": 0.2753409147262573,
+ "learning_rate": 0.0006,
+ "loss": 5.190083026885986,
+ "step": 391
+ },
+ {
+ "epoch": 5.447356924421145,
+ "grad_norm": 0.3758019208908081,
+ "learning_rate": 0.0006,
+ "loss": 5.189423561096191,
+ "step": 392
+ },
+ {
+ "epoch": 5.461336828309306,
+ "grad_norm": 0.4425095021724701,
+ "learning_rate": 0.0006,
+ "loss": 5.17152214050293,
+ "step": 393
+ },
+ {
+ "epoch": 5.4753167321974665,
+ "grad_norm": 0.39721858501434326,
+ "learning_rate": 0.0006,
+ "loss": 5.189178466796875,
+ "step": 394
+ },
+ {
+ "epoch": 5.489296636085627,
+ "grad_norm": 0.43441957235336304,
+ "learning_rate": 0.0006,
+ "loss": 5.1823577880859375,
+ "step": 395
+ },
+ {
+ "epoch": 5.503276539973788,
+ "grad_norm": 0.3583861291408539,
+ "learning_rate": 0.0006,
+ "loss": 5.160187721252441,
+ "step": 396
+ },
+ {
+ "epoch": 5.517256443861949,
+ "grad_norm": 0.323290079832077,
+ "learning_rate": 0.0006,
+ "loss": 5.113046646118164,
+ "step": 397
+ },
+ {
+ "epoch": 5.531236347750109,
+ "grad_norm": 0.3049418330192566,
+ "learning_rate": 0.0006,
+ "loss": 5.172209739685059,
+ "step": 398
+ },
+ {
+ "epoch": 5.54521625163827,
+ "grad_norm": 0.3253744840621948,
+ "learning_rate": 0.0006,
+ "loss": 5.1970720291137695,
+ "step": 399
+ },
+ {
+ "epoch": 5.559196155526431,
+ "grad_norm": 0.3232555091381073,
+ "learning_rate": 0.0006,
+ "loss": 5.173195838928223,
+ "step": 400
+ },
+ {
+ "epoch": 5.573176059414592,
+ "grad_norm": 0.33751845359802246,
+ "learning_rate": 0.0006,
+ "loss": 5.137526988983154,
+ "step": 401
+ },
+ {
+ "epoch": 5.587155963302752,
+ "grad_norm": 0.45970913767814636,
+ "learning_rate": 0.0006,
+ "loss": 5.123377799987793,
+ "step": 402
+ },
+ {
+ "epoch": 5.601135867190913,
+ "grad_norm": 0.5383784770965576,
+ "learning_rate": 0.0006,
+ "loss": 5.154180526733398,
+ "step": 403
+ },
+ {
+ "epoch": 5.615115771079074,
+ "grad_norm": 0.45765912532806396,
+ "learning_rate": 0.0006,
+ "loss": 5.1485209465026855,
+ "step": 404
+ },
+ {
+ "epoch": 5.6290956749672345,
+ "grad_norm": 0.5079503059387207,
+ "learning_rate": 0.0006,
+ "loss": 5.158293724060059,
+ "step": 405
+ },
+ {
+ "epoch": 5.643075578855395,
+ "grad_norm": 0.4860183894634247,
+ "learning_rate": 0.0006,
+ "loss": 5.1610212326049805,
+ "step": 406
+ },
+ {
+ "epoch": 5.657055482743556,
+ "grad_norm": 0.4065648913383484,
+ "learning_rate": 0.0006,
+ "loss": 5.1260786056518555,
+ "step": 407
+ },
+ {
+ "epoch": 5.671035386631717,
+ "grad_norm": 0.39606142044067383,
+ "learning_rate": 0.0006,
+ "loss": 5.1598711013793945,
+ "step": 408
+ },
+ {
+ "epoch": 5.685015290519877,
+ "grad_norm": 0.4705151319503784,
+ "learning_rate": 0.0006,
+ "loss": 5.166455268859863,
+ "step": 409
+ },
+ {
+ "epoch": 5.698995194408038,
+ "grad_norm": 0.5040799379348755,
+ "learning_rate": 0.0006,
+ "loss": 5.1408209800720215,
+ "step": 410
+ },
+ {
+ "epoch": 5.712975098296199,
+ "grad_norm": 0.5012556910514832,
+ "learning_rate": 0.0006,
+ "loss": 5.144109725952148,
+ "step": 411
+ },
+ {
+ "epoch": 5.72695500218436,
+ "grad_norm": 0.44301411509513855,
+ "learning_rate": 0.0006,
+ "loss": 5.155509948730469,
+ "step": 412
+ },
+ {
+ "epoch": 5.740934906072521,
+ "grad_norm": 0.36632269620895386,
+ "learning_rate": 0.0006,
+ "loss": 5.123111248016357,
+ "step": 413
+ },
+ {
+ "epoch": 5.754914809960681,
+ "grad_norm": 0.2980524003505707,
+ "learning_rate": 0.0006,
+ "loss": 5.1355719566345215,
+ "step": 414
+ },
+ {
+ "epoch": 5.768894713848843,
+ "grad_norm": 0.3441782295703888,
+ "learning_rate": 0.0006,
+ "loss": 5.132327079772949,
+ "step": 415
+ },
+ {
+ "epoch": 5.782874617737003,
+ "grad_norm": 0.4150780737400055,
+ "learning_rate": 0.0006,
+ "loss": 5.148543357849121,
+ "step": 416
+ },
+ {
+ "epoch": 5.796854521625164,
+ "grad_norm": 0.48417383432388306,
+ "learning_rate": 0.0006,
+ "loss": 5.104989528656006,
+ "step": 417
+ },
+ {
+ "epoch": 5.810834425513325,
+ "grad_norm": 0.3216031491756439,
+ "learning_rate": 0.0006,
+ "loss": 5.0926127433776855,
+ "step": 418
+ },
+ {
+ "epoch": 5.824814329401486,
+ "grad_norm": 0.2821158468723297,
+ "learning_rate": 0.0006,
+ "loss": 5.112299919128418,
+ "step": 419
+ },
+ {
+ "epoch": 5.838794233289646,
+ "grad_norm": 0.29821011424064636,
+ "learning_rate": 0.0006,
+ "loss": 5.091662406921387,
+ "step": 420
+ },
+ {
+ "epoch": 5.852774137177807,
+ "grad_norm": 0.30570563673973083,
+ "learning_rate": 0.0006,
+ "loss": 5.137539863586426,
+ "step": 421
+ },
+ {
+ "epoch": 5.866754041065968,
+ "grad_norm": 0.4029594957828522,
+ "learning_rate": 0.0006,
+ "loss": 5.112751007080078,
+ "step": 422
+ },
+ {
+ "epoch": 5.8807339449541285,
+ "grad_norm": 0.3878514766693115,
+ "learning_rate": 0.0006,
+ "loss": 5.094973564147949,
+ "step": 423
+ },
+ {
+ "epoch": 5.894713848842289,
+ "grad_norm": 0.31936126947402954,
+ "learning_rate": 0.0006,
+ "loss": 5.081070899963379,
+ "step": 424
+ },
+ {
+ "epoch": 5.90869375273045,
+ "grad_norm": 0.3309082090854645,
+ "learning_rate": 0.0006,
+ "loss": 5.06803560256958,
+ "step": 425
+ },
+ {
+ "epoch": 5.922673656618611,
+ "grad_norm": 0.27830439805984497,
+ "learning_rate": 0.0006,
+ "loss": 5.044766426086426,
+ "step": 426
+ },
+ {
+ "epoch": 5.936653560506771,
+ "grad_norm": 0.3301011919975281,
+ "learning_rate": 0.0006,
+ "loss": 5.093942165374756,
+ "step": 427
+ },
+ {
+ "epoch": 5.950633464394932,
+ "grad_norm": 0.40845948457717896,
+ "learning_rate": 0.0006,
+ "loss": 5.0889458656311035,
+ "step": 428
+ },
+ {
+ "epoch": 5.964613368283093,
+ "grad_norm": 0.4412153959274292,
+ "learning_rate": 0.0006,
+ "loss": 5.064834117889404,
+ "step": 429
+ },
+ {
+ "epoch": 5.978593272171254,
+ "grad_norm": 0.3592590093612671,
+ "learning_rate": 0.0006,
+ "loss": 5.066648006439209,
+ "step": 430
+ },
+ {
+ "epoch": 5.992573176059414,
+ "grad_norm": 0.3952840268611908,
+ "learning_rate": 0.0006,
+ "loss": 5.066549301147461,
+ "step": 431
+ },
+ {
+ "epoch": 6.0,
+ "grad_norm": 0.38878682255744934,
+ "learning_rate": 0.0006,
+ "loss": 5.0354323387146,
+ "step": 432
+ },
+ {
+ "epoch": 6.0,
+ "eval_loss": 5.473907947540283,
+ "eval_runtime": 44.5121,
+ "eval_samples_per_second": 54.861,
+ "eval_steps_per_second": 3.437,
+ "step": 432
+ },
+ {
+ "epoch": 6.013979903888161,
+ "grad_norm": 0.42730140686035156,
+ "learning_rate": 0.0006,
+ "loss": 5.048557281494141,
+ "step": 433
+ },
+ {
+ "epoch": 6.0279598077763215,
+ "grad_norm": 0.32713913917541504,
+ "learning_rate": 0.0006,
+ "loss": 5.041255950927734,
+ "step": 434
+ },
+ {
+ "epoch": 6.041939711664482,
+ "grad_norm": 0.32520365715026855,
+ "learning_rate": 0.0006,
+ "loss": 5.043124198913574,
+ "step": 435
+ },
+ {
+ "epoch": 6.055919615552643,
+ "grad_norm": 0.2941839098930359,
+ "learning_rate": 0.0006,
+ "loss": 5.0407304763793945,
+ "step": 436
+ },
+ {
+ "epoch": 6.069899519440804,
+ "grad_norm": 0.3088819682598114,
+ "learning_rate": 0.0006,
+ "loss": 5.020771026611328,
+ "step": 437
+ },
+ {
+ "epoch": 6.083879423328964,
+ "grad_norm": 0.34334254264831543,
+ "learning_rate": 0.0006,
+ "loss": 5.0260009765625,
+ "step": 438
+ },
+ {
+ "epoch": 6.097859327217125,
+ "grad_norm": 0.33016136288642883,
+ "learning_rate": 0.0006,
+ "loss": 4.994412899017334,
+ "step": 439
+ },
+ {
+ "epoch": 6.111839231105286,
+ "grad_norm": 0.2527366280555725,
+ "learning_rate": 0.0006,
+ "loss": 4.997830390930176,
+ "step": 440
+ },
+ {
+ "epoch": 6.1258191349934465,
+ "grad_norm": 0.24742509424686432,
+ "learning_rate": 0.0006,
+ "loss": 5.017087936401367,
+ "step": 441
+ },
+ {
+ "epoch": 6.139799038881607,
+ "grad_norm": 0.22578303515911102,
+ "learning_rate": 0.0006,
+ "loss": 5.000683784484863,
+ "step": 442
+ },
+ {
+ "epoch": 6.153778942769769,
+ "grad_norm": 0.21213896572589874,
+ "learning_rate": 0.0006,
+ "loss": 4.993280410766602,
+ "step": 443
+ },
+ {
+ "epoch": 6.16775884665793,
+ "grad_norm": 0.22559592127799988,
+ "learning_rate": 0.0006,
+ "loss": 5.005735874176025,
+ "step": 444
+ },
+ {
+ "epoch": 6.18173875054609,
+ "grad_norm": 0.18574322760105133,
+ "learning_rate": 0.0006,
+ "loss": 4.996601104736328,
+ "step": 445
+ },
+ {
+ "epoch": 6.195718654434251,
+ "grad_norm": 0.1793852299451828,
+ "learning_rate": 0.0006,
+ "loss": 4.977394104003906,
+ "step": 446
+ },
+ {
+ "epoch": 6.209698558322412,
+ "grad_norm": 0.1851297914981842,
+ "learning_rate": 0.0006,
+ "loss": 4.983541488647461,
+ "step": 447
+ },
+ {
+ "epoch": 6.2236784622105725,
+ "grad_norm": 0.2045268565416336,
+ "learning_rate": 0.0006,
+ "loss": 4.992830276489258,
+ "step": 448
+ },
+ {
+ "epoch": 6.237658366098733,
+ "grad_norm": 0.21707463264465332,
+ "learning_rate": 0.0006,
+ "loss": 4.998589515686035,
+ "step": 449
+ },
+ {
+ "epoch": 6.251638269986894,
+ "grad_norm": 0.2805860638618469,
+ "learning_rate": 0.0006,
+ "loss": 4.973134517669678,
+ "step": 450
+ },
+ {
+ "epoch": 6.265618173875055,
+ "grad_norm": 0.33102089166641235,
+ "learning_rate": 0.0006,
+ "loss": 4.957348823547363,
+ "step": 451
+ },
+ {
+ "epoch": 6.279598077763215,
+ "grad_norm": 0.3763096034526825,
+ "learning_rate": 0.0006,
+ "loss": 5.0133256912231445,
+ "step": 452
+ },
+ {
+ "epoch": 6.293577981651376,
+ "grad_norm": 0.4676196575164795,
+ "learning_rate": 0.0006,
+ "loss": 4.972289562225342,
+ "step": 453
+ },
+ {
+ "epoch": 6.307557885539537,
+ "grad_norm": 0.6158978343009949,
+ "learning_rate": 0.0006,
+ "loss": 4.989326477050781,
+ "step": 454
+ },
+ {
+ "epoch": 6.321537789427698,
+ "grad_norm": 0.537460446357727,
+ "learning_rate": 0.0006,
+ "loss": 5.0210676193237305,
+ "step": 455
+ },
+ {
+ "epoch": 6.335517693315858,
+ "grad_norm": 0.5342532396316528,
+ "learning_rate": 0.0006,
+ "loss": 4.988524436950684,
+ "step": 456
+ },
+ {
+ "epoch": 6.349497597204019,
+ "grad_norm": 0.5736384987831116,
+ "learning_rate": 0.0006,
+ "loss": 4.977508068084717,
+ "step": 457
+ },
+ {
+ "epoch": 6.36347750109218,
+ "grad_norm": 0.6656201481819153,
+ "learning_rate": 0.0006,
+ "loss": 5.047934055328369,
+ "step": 458
+ },
+ {
+ "epoch": 6.3774574049803405,
+ "grad_norm": 0.6388342380523682,
+ "learning_rate": 0.0006,
+ "loss": 5.017617225646973,
+ "step": 459
+ },
+ {
+ "epoch": 6.391437308868501,
+ "grad_norm": 0.6620904207229614,
+ "learning_rate": 0.0006,
+ "loss": 5.032195091247559,
+ "step": 460
+ },
+ {
+ "epoch": 6.405417212756662,
+ "grad_norm": 0.693274974822998,
+ "learning_rate": 0.0006,
+ "loss": 5.02433967590332,
+ "step": 461
+ },
+ {
+ "epoch": 6.419397116644823,
+ "grad_norm": 0.6888924241065979,
+ "learning_rate": 0.0006,
+ "loss": 5.010735511779785,
+ "step": 462
+ },
+ {
+ "epoch": 6.433377020532983,
+ "grad_norm": 0.7181721925735474,
+ "learning_rate": 0.0006,
+ "loss": 5.049690246582031,
+ "step": 463
+ },
+ {
+ "epoch": 6.447356924421145,
+ "grad_norm": 0.7225117087364197,
+ "learning_rate": 0.0006,
+ "loss": 5.031939506530762,
+ "step": 464
+ },
+ {
+ "epoch": 6.461336828309306,
+ "grad_norm": 0.5268304347991943,
+ "learning_rate": 0.0006,
+ "loss": 5.01638126373291,
+ "step": 465
+ },
+ {
+ "epoch": 6.4753167321974665,
+ "grad_norm": 0.38218435645103455,
+ "learning_rate": 0.0006,
+ "loss": 4.997034072875977,
+ "step": 466
+ },
+ {
+ "epoch": 6.489296636085627,
+ "grad_norm": 0.3576396703720093,
+ "learning_rate": 0.0006,
+ "loss": 5.006804943084717,
+ "step": 467
+ },
+ {
+ "epoch": 6.503276539973788,
+ "grad_norm": 0.3305981755256653,
+ "learning_rate": 0.0006,
+ "loss": 4.994671821594238,
+ "step": 468
+ },
+ {
+ "epoch": 6.517256443861949,
+ "grad_norm": 0.3254900574684143,
+ "learning_rate": 0.0006,
+ "loss": 4.9747490882873535,
+ "step": 469
+ },
+ {
+ "epoch": 6.531236347750109,
+ "grad_norm": 0.2655033469200134,
+ "learning_rate": 0.0006,
+ "loss": 5.002863883972168,
+ "step": 470
+ },
+ {
+ "epoch": 6.54521625163827,
+ "grad_norm": 0.2620532810688019,
+ "learning_rate": 0.0006,
+ "loss": 4.9813337326049805,
+ "step": 471
+ },
+ {
+ "epoch": 6.559196155526431,
+ "grad_norm": 0.22128869593143463,
+ "learning_rate": 0.0006,
+ "loss": 4.978368759155273,
+ "step": 472
+ },
+ {
+ "epoch": 6.573176059414592,
+ "grad_norm": 0.22638699412345886,
+ "learning_rate": 0.0006,
+ "loss": 4.944509029388428,
+ "step": 473
+ },
+ {
+ "epoch": 6.587155963302752,
+ "grad_norm": 0.20720207691192627,
+ "learning_rate": 0.0006,
+ "loss": 4.98404598236084,
+ "step": 474
+ },
+ {
+ "epoch": 6.601135867190913,
+ "grad_norm": 0.21577289700508118,
+ "learning_rate": 0.0006,
+ "loss": 4.958878040313721,
+ "step": 475
+ },
+ {
+ "epoch": 6.615115771079074,
+ "grad_norm": 0.22453972697257996,
+ "learning_rate": 0.0006,
+ "loss": 4.935467720031738,
+ "step": 476
+ },
+ {
+ "epoch": 6.6290956749672345,
+ "grad_norm": 0.20757712423801422,
+ "learning_rate": 0.0006,
+ "loss": 4.943334579467773,
+ "step": 477
+ },
+ {
+ "epoch": 6.643075578855395,
+ "grad_norm": 0.22808043658733368,
+ "learning_rate": 0.0006,
+ "loss": 4.936544418334961,
+ "step": 478
+ },
+ {
+ "epoch": 6.657055482743556,
+ "grad_norm": 0.2193756401538849,
+ "learning_rate": 0.0006,
+ "loss": 4.938162326812744,
+ "step": 479
+ },
+ {
+ "epoch": 6.671035386631717,
+ "grad_norm": 0.19677500426769257,
+ "learning_rate": 0.0006,
+ "loss": 4.9026713371276855,
+ "step": 480
+ },
+ {
+ "epoch": 6.685015290519877,
+ "grad_norm": 0.17271658778190613,
+ "learning_rate": 0.0006,
+ "loss": 4.912519454956055,
+ "step": 481
+ },
+ {
+ "epoch": 6.698995194408038,
+ "grad_norm": 0.17551499605178833,
+ "learning_rate": 0.0006,
+ "loss": 4.929941177368164,
+ "step": 482
+ },
+ {
+ "epoch": 6.712975098296199,
+ "grad_norm": 0.1582687348127365,
+ "learning_rate": 0.0006,
+ "loss": 4.908967971801758,
+ "step": 483
+ },
+ {
+ "epoch": 6.72695500218436,
+ "grad_norm": 0.1593410074710846,
+ "learning_rate": 0.0006,
+ "loss": 4.901554107666016,
+ "step": 484
+ },
+ {
+ "epoch": 6.740934906072521,
+ "grad_norm": 0.16746895015239716,
+ "learning_rate": 0.0006,
+ "loss": 4.917915344238281,
+ "step": 485
+ },
+ {
+ "epoch": 6.754914809960681,
+ "grad_norm": 0.17066062986850739,
+ "learning_rate": 0.0006,
+ "loss": 4.912853240966797,
+ "step": 486
+ },
+ {
+ "epoch": 6.768894713848843,
+ "grad_norm": 0.16727769374847412,
+ "learning_rate": 0.0006,
+ "loss": 4.895434856414795,
+ "step": 487
+ },
+ {
+ "epoch": 6.782874617737003,
+ "grad_norm": 0.1784558743238449,
+ "learning_rate": 0.0006,
+ "loss": 4.8805341720581055,
+ "step": 488
+ },
+ {
+ "epoch": 6.796854521625164,
+ "grad_norm": 0.176686093211174,
+ "learning_rate": 0.0006,
+ "loss": 4.855296611785889,
+ "step": 489
+ },
+ {
+ "epoch": 6.810834425513325,
+ "grad_norm": 0.21577849984169006,
+ "learning_rate": 0.0006,
+ "loss": 4.885506629943848,
+ "step": 490
+ },
+ {
+ "epoch": 6.824814329401486,
+ "grad_norm": 0.27615776658058167,
+ "learning_rate": 0.0006,
+ "loss": 4.913756847381592,
+ "step": 491
+ },
+ {
+ "epoch": 6.838794233289646,
+ "grad_norm": 0.3653675615787506,
+ "learning_rate": 0.0006,
+ "loss": 4.880918979644775,
+ "step": 492
+ },
+ {
+ "epoch": 6.852774137177807,
+ "grad_norm": 0.41473883390426636,
+ "learning_rate": 0.0006,
+ "loss": 4.894164562225342,
+ "step": 493
+ },
+ {
+ "epoch": 6.866754041065968,
+ "grad_norm": 0.45850715041160583,
+ "learning_rate": 0.0006,
+ "loss": 4.907922744750977,
+ "step": 494
+ },
+ {
+ "epoch": 6.8807339449541285,
+ "grad_norm": 0.4675290882587433,
+ "learning_rate": 0.0006,
+ "loss": 4.883112907409668,
+ "step": 495
+ },
+ {
+ "epoch": 6.894713848842289,
+ "grad_norm": 0.45795994997024536,
+ "learning_rate": 0.0006,
+ "loss": 4.897843360900879,
+ "step": 496
+ },
+ {
+ "epoch": 6.90869375273045,
+ "grad_norm": 0.46130508184432983,
+ "learning_rate": 0.0006,
+ "loss": 4.890612602233887,
+ "step": 497
+ },
+ {
+ "epoch": 6.922673656618611,
+ "grad_norm": 0.44783803820610046,
+ "learning_rate": 0.0006,
+ "loss": 4.880192756652832,
+ "step": 498
+ },
+ {
+ "epoch": 6.936653560506771,
+ "grad_norm": 0.35361284017562866,
+ "learning_rate": 0.0006,
+ "loss": 4.840778350830078,
+ "step": 499
+ },
+ {
+ "epoch": 6.950633464394932,
+ "grad_norm": 0.34027689695358276,
+ "learning_rate": 0.0006,
+ "loss": 4.871222496032715,
+ "step": 500
+ },
+ {
+ "epoch": 6.964613368283093,
+ "grad_norm": 0.30228909850120544,
+ "learning_rate": 0.0006,
+ "loss": 4.868077278137207,
+ "step": 501
+ },
+ {
+ "epoch": 6.978593272171254,
+ "grad_norm": 0.27706998586654663,
+ "learning_rate": 0.0006,
+ "loss": 4.895936012268066,
+ "step": 502
+ },
+ {
+ "epoch": 6.992573176059414,
+ "grad_norm": 0.3516870439052582,
+ "learning_rate": 0.0006,
+ "loss": 4.824636459350586,
+ "step": 503
+ },
+ {
+ "epoch": 7.0,
+ "grad_norm": 0.36831387877464294,
+ "learning_rate": 0.0006,
+ "loss": 4.874397277832031,
+ "step": 504
+ },
+ {
+ "epoch": 7.0,
+ "eval_loss": 5.176281452178955,
+ "eval_runtime": 44.2386,
+ "eval_samples_per_second": 55.201,
+ "eval_steps_per_second": 3.459,
+ "step": 504
+ },
+ {
+ "epoch": 7.013979903888161,
+ "grad_norm": 0.4265240430831909,
+ "learning_rate": 0.0006,
+ "loss": 4.814333438873291,
+ "step": 505
+ },
+ {
+ "epoch": 7.0279598077763215,
+ "grad_norm": 0.5126975774765015,
+ "learning_rate": 0.0006,
+ "loss": 4.852343559265137,
+ "step": 506
+ },
+ {
+ "epoch": 7.041939711664482,
+ "grad_norm": 0.43080806732177734,
+ "learning_rate": 0.0006,
+ "loss": 4.843439102172852,
+ "step": 507
+ },
+ {
+ "epoch": 7.055919615552643,
+ "grad_norm": 0.43170198798179626,
+ "learning_rate": 0.0006,
+ "loss": 4.845984935760498,
+ "step": 508
+ },
+ {
+ "epoch": 7.069899519440804,
+ "grad_norm": 0.5640552043914795,
+ "learning_rate": 0.0006,
+ "loss": 4.840991973876953,
+ "step": 509
+ },
+ {
+ "epoch": 7.083879423328964,
+ "grad_norm": 0.540381133556366,
+ "learning_rate": 0.0006,
+ "loss": 4.801316738128662,
+ "step": 510
+ },
+ {
+ "epoch": 7.097859327217125,
+ "grad_norm": 0.5412097573280334,
+ "learning_rate": 0.0006,
+ "loss": 4.886598587036133,
+ "step": 511
+ },
+ {
+ "epoch": 7.111839231105286,
+ "grad_norm": 0.630648136138916,
+ "learning_rate": 0.0006,
+ "loss": 4.849774360656738,
+ "step": 512
+ },
+ {
+ "epoch": 7.1258191349934465,
+ "grad_norm": 0.569952130317688,
+ "learning_rate": 0.0006,
+ "loss": 4.870607376098633,
+ "step": 513
+ },
+ {
+ "epoch": 7.139799038881607,
+ "grad_norm": 0.42051541805267334,
+ "learning_rate": 0.0006,
+ "loss": 4.83833122253418,
+ "step": 514
+ },
+ {
+ "epoch": 7.153778942769769,
+ "grad_norm": 0.3930990397930145,
+ "learning_rate": 0.0006,
+ "loss": 4.853984355926514,
+ "step": 515
+ },
+ {
+ "epoch": 7.16775884665793,
+ "grad_norm": 0.512886106967926,
+ "learning_rate": 0.0006,
+ "loss": 4.815458297729492,
+ "step": 516
+ },
+ {
+ "epoch": 7.18173875054609,
+ "grad_norm": 0.42580172419548035,
+ "learning_rate": 0.0006,
+ "loss": 4.825312614440918,
+ "step": 517
+ },
+ {
+ "epoch": 7.195718654434251,
+ "grad_norm": 0.31628182530403137,
+ "learning_rate": 0.0006,
+ "loss": 4.806377410888672,
+ "step": 518
+ },
+ {
+ "epoch": 7.209698558322412,
+ "grad_norm": 0.3109956681728363,
+ "learning_rate": 0.0006,
+ "loss": 4.819339752197266,
+ "step": 519
+ },
+ {
+ "epoch": 7.2236784622105725,
+ "grad_norm": 0.2740071415901184,
+ "learning_rate": 0.0006,
+ "loss": 4.81319522857666,
+ "step": 520
+ },
+ {
+ "epoch": 7.237658366098733,
+ "grad_norm": 0.26441165804862976,
+ "learning_rate": 0.0006,
+ "loss": 4.8107380867004395,
+ "step": 521
+ },
+ {
+ "epoch": 7.251638269986894,
+ "grad_norm": 0.2496110051870346,
+ "learning_rate": 0.0006,
+ "loss": 4.785193920135498,
+ "step": 522
+ },
+ {
+ "epoch": 7.265618173875055,
+ "grad_norm": 0.2565560042858124,
+ "learning_rate": 0.0006,
+ "loss": 4.802750587463379,
+ "step": 523
+ },
+ {
+ "epoch": 7.279598077763215,
+ "grad_norm": 0.2126980572938919,
+ "learning_rate": 0.0006,
+ "loss": 4.763580322265625,
+ "step": 524
+ },
+ {
+ "epoch": 7.293577981651376,
+ "grad_norm": 0.2169921100139618,
+ "learning_rate": 0.0006,
+ "loss": 4.756124973297119,
+ "step": 525
+ },
+ {
+ "epoch": 7.307557885539537,
+ "grad_norm": 0.2372167706489563,
+ "learning_rate": 0.0006,
+ "loss": 4.786888599395752,
+ "step": 526
+ },
+ {
+ "epoch": 7.321537789427698,
+ "grad_norm": 0.2124386429786682,
+ "learning_rate": 0.0006,
+ "loss": 4.777996063232422,
+ "step": 527
+ },
+ {
+ "epoch": 7.335517693315858,
+ "grad_norm": 0.18585442006587982,
+ "learning_rate": 0.0006,
+ "loss": 4.770537853240967,
+ "step": 528
+ },
+ {
+ "epoch": 7.349497597204019,
+ "grad_norm": 0.20515340566635132,
+ "learning_rate": 0.0006,
+ "loss": 4.769230842590332,
+ "step": 529
+ },
+ {
+ "epoch": 7.36347750109218,
+ "grad_norm": 0.19906704127788544,
+ "learning_rate": 0.0006,
+ "loss": 4.752581596374512,
+ "step": 530
+ },
+ {
+ "epoch": 7.3774574049803405,
+ "grad_norm": 0.2030428946018219,
+ "learning_rate": 0.0006,
+ "loss": 4.7353715896606445,
+ "step": 531
+ },
+ {
+ "epoch": 7.391437308868501,
+ "grad_norm": 0.17820630967617035,
+ "learning_rate": 0.0006,
+ "loss": 4.742705345153809,
+ "step": 532
+ },
+ {
+ "epoch": 7.405417212756662,
+ "grad_norm": 0.17642682790756226,
+ "learning_rate": 0.0006,
+ "loss": 4.752669334411621,
+ "step": 533
+ },
+ {
+ "epoch": 7.419397116644823,
+ "grad_norm": 0.18088409304618835,
+ "learning_rate": 0.0006,
+ "loss": 4.734611511230469,
+ "step": 534
+ },
+ {
+ "epoch": 7.433377020532983,
+ "grad_norm": 0.20897020399570465,
+ "learning_rate": 0.0006,
+ "loss": 4.756442070007324,
+ "step": 535
+ },
+ {
+ "epoch": 7.447356924421145,
+ "grad_norm": 0.23166777193546295,
+ "learning_rate": 0.0006,
+ "loss": 4.712922096252441,
+ "step": 536
+ },
+ {
+ "epoch": 7.461336828309306,
+ "grad_norm": 0.2205347716808319,
+ "learning_rate": 0.0006,
+ "loss": 4.75001335144043,
+ "step": 537
+ },
+ {
+ "epoch": 7.4753167321974665,
+ "grad_norm": 0.23868022859096527,
+ "learning_rate": 0.0006,
+ "loss": 4.726134300231934,
+ "step": 538
+ },
+ {
+ "epoch": 7.489296636085627,
+ "grad_norm": 0.2861441373825073,
+ "learning_rate": 0.0006,
+ "loss": 4.754112243652344,
+ "step": 539
+ },
+ {
+ "epoch": 7.503276539973788,
+ "grad_norm": 0.28980305790901184,
+ "learning_rate": 0.0006,
+ "loss": 4.716021537780762,
+ "step": 540
+ },
+ {
+ "epoch": 7.517256443861949,
+ "grad_norm": 0.2784835696220398,
+ "learning_rate": 0.0006,
+ "loss": 4.713929176330566,
+ "step": 541
+ },
+ {
+ "epoch": 7.531236347750109,
+ "grad_norm": 0.2962653934955597,
+ "learning_rate": 0.0006,
+ "loss": 4.711845397949219,
+ "step": 542
+ },
+ {
+ "epoch": 7.54521625163827,
+ "grad_norm": 0.3333161175251007,
+ "learning_rate": 0.0006,
+ "loss": 4.709834575653076,
+ "step": 543
+ },
+ {
+ "epoch": 7.559196155526431,
+ "grad_norm": 0.35304850339889526,
+ "learning_rate": 0.0006,
+ "loss": 4.732914924621582,
+ "step": 544
+ },
+ {
+ "epoch": 7.573176059414592,
+ "grad_norm": 0.4165869355201721,
+ "learning_rate": 0.0006,
+ "loss": 4.716190338134766,
+ "step": 545
+ },
+ {
+ "epoch": 7.587155963302752,
+ "grad_norm": 0.4878059923648834,
+ "learning_rate": 0.0006,
+ "loss": 4.723773002624512,
+ "step": 546
+ },
+ {
+ "epoch": 7.601135867190913,
+ "grad_norm": 0.36643707752227783,
+ "learning_rate": 0.0006,
+ "loss": 4.721458911895752,
+ "step": 547
+ },
+ {
+ "epoch": 7.615115771079074,
+ "grad_norm": 0.4046908915042877,
+ "learning_rate": 0.0006,
+ "loss": 4.715397834777832,
+ "step": 548
+ },
+ {
+ "epoch": 7.6290956749672345,
+ "grad_norm": 0.44426342844963074,
+ "learning_rate": 0.0006,
+ "loss": 4.737357139587402,
+ "step": 549
+ },
+ {
+ "epoch": 7.643075578855395,
+ "grad_norm": 0.4181079864501953,
+ "learning_rate": 0.0006,
+ "loss": 4.731383800506592,
+ "step": 550
+ },
+ {
+ "epoch": 7.657055482743556,
+ "grad_norm": 0.3486088216304779,
+ "learning_rate": 0.0006,
+ "loss": 4.728029727935791,
+ "step": 551
+ },
+ {
+ "epoch": 7.671035386631717,
+ "grad_norm": 0.37150970101356506,
+ "learning_rate": 0.0006,
+ "loss": 4.7083210945129395,
+ "step": 552
+ },
+ {
+ "epoch": 7.685015290519877,
+ "grad_norm": 0.43324410915374756,
+ "learning_rate": 0.0006,
+ "loss": 4.728720664978027,
+ "step": 553
+ },
+ {
+ "epoch": 7.698995194408038,
+ "grad_norm": 0.5026620626449585,
+ "learning_rate": 0.0006,
+ "loss": 4.698156356811523,
+ "step": 554
+ },
+ {
+ "epoch": 7.712975098296199,
+ "grad_norm": 0.4873499274253845,
+ "learning_rate": 0.0006,
+ "loss": 4.7169952392578125,
+ "step": 555
+ },
+ {
+ "epoch": 7.72695500218436,
+ "grad_norm": 0.4285493791103363,
+ "learning_rate": 0.0006,
+ "loss": 4.6877241134643555,
+ "step": 556
+ },
+ {
+ "epoch": 7.740934906072521,
+ "grad_norm": 0.5179854035377502,
+ "learning_rate": 0.0006,
+ "loss": 4.704267501831055,
+ "step": 557
+ },
+ {
+ "epoch": 7.754914809960681,
+ "grad_norm": 0.4642147421836853,
+ "learning_rate": 0.0006,
+ "loss": 4.695004463195801,
+ "step": 558
+ },
+ {
+ "epoch": 7.768894713848843,
+ "grad_norm": 0.47149503231048584,
+ "learning_rate": 0.0006,
+ "loss": 4.694338798522949,
+ "step": 559
+ },
+ {
+ "epoch": 7.782874617737003,
+ "grad_norm": 0.5422149300575256,
+ "learning_rate": 0.0006,
+ "loss": 4.749478340148926,
+ "step": 560
+ },
+ {
+ "epoch": 7.796854521625164,
+ "grad_norm": 0.4360728859901428,
+ "learning_rate": 0.0006,
+ "loss": 4.685191631317139,
+ "step": 561
+ },
+ {
+ "epoch": 7.810834425513325,
+ "grad_norm": 0.4243801534175873,
+ "learning_rate": 0.0006,
+ "loss": 4.69228458404541,
+ "step": 562
+ },
+ {
+ "epoch": 7.824814329401486,
+ "grad_norm": 0.40380290150642395,
+ "learning_rate": 0.0006,
+ "loss": 4.690923690795898,
+ "step": 563
+ },
+ {
+ "epoch": 7.838794233289646,
+ "grad_norm": 0.4352976381778717,
+ "learning_rate": 0.0006,
+ "loss": 4.720489978790283,
+ "step": 564
+ },
+ {
+ "epoch": 7.852774137177807,
+ "grad_norm": 0.44634920358657837,
+ "learning_rate": 0.0006,
+ "loss": 4.683789253234863,
+ "step": 565
+ },
+ {
+ "epoch": 7.866754041065968,
+ "grad_norm": 0.3818186819553375,
+ "learning_rate": 0.0006,
+ "loss": 4.696887016296387,
+ "step": 566
+ },
+ {
+ "epoch": 7.8807339449541285,
+ "grad_norm": 0.35270464420318604,
+ "learning_rate": 0.0006,
+ "loss": 4.715676307678223,
+ "step": 567
+ },
+ {
+ "epoch": 7.894713848842289,
+ "grad_norm": 0.249756321310997,
+ "learning_rate": 0.0006,
+ "loss": 4.672721862792969,
+ "step": 568
+ },
+ {
+ "epoch": 7.90869375273045,
+ "grad_norm": 0.25097888708114624,
+ "learning_rate": 0.0006,
+ "loss": 4.663518905639648,
+ "step": 569
+ },
+ {
+ "epoch": 7.922673656618611,
+ "grad_norm": 0.26563209295272827,
+ "learning_rate": 0.0006,
+ "loss": 4.675405025482178,
+ "step": 570
+ },
+ {
+ "epoch": 7.936653560506771,
+ "grad_norm": 0.26451292634010315,
+ "learning_rate": 0.0006,
+ "loss": 4.651235103607178,
+ "step": 571
+ },
+ {
+ "epoch": 7.950633464394932,
+ "grad_norm": 0.24185842275619507,
+ "learning_rate": 0.0006,
+ "loss": 4.671639919281006,
+ "step": 572
+ },
+ {
+ "epoch": 7.964613368283093,
+ "grad_norm": 0.21506108343601227,
+ "learning_rate": 0.0006,
+ "loss": 4.665352821350098,
+ "step": 573
+ },
+ {
+ "epoch": 7.978593272171254,
+ "grad_norm": 0.24365705251693726,
+ "learning_rate": 0.0006,
+ "loss": 4.663162708282471,
+ "step": 574
+ },
+ {
+ "epoch": 7.992573176059414,
+ "grad_norm": 0.24251042306423187,
+ "learning_rate": 0.0006,
+ "loss": 4.666633605957031,
+ "step": 575
+ },
+ {
+ "epoch": 8.0,
+ "grad_norm": 0.24187657237052917,
+ "learning_rate": 0.0006,
+ "loss": 4.63957405090332,
+ "step": 576
+ },
+ {
+ "epoch": 8.0,
+ "eval_loss": 4.923156261444092,
+ "eval_runtime": 44.1587,
+ "eval_samples_per_second": 55.301,
+ "eval_steps_per_second": 3.465,
+ "step": 576
+ },
+ {
+ "epoch": 8.013979903888162,
+ "grad_norm": 0.21323645114898682,
+ "learning_rate": 0.0006,
+ "loss": 4.636347770690918,
+ "step": 577
+ },
+ {
+ "epoch": 8.027959807776321,
+ "grad_norm": 0.2325759083032608,
+ "learning_rate": 0.0006,
+ "loss": 4.60684871673584,
+ "step": 578
+ },
+ {
+ "epoch": 8.041939711664483,
+ "grad_norm": 0.26741257309913635,
+ "learning_rate": 0.0006,
+ "loss": 4.647780418395996,
+ "step": 579
+ },
+ {
+ "epoch": 8.055919615552643,
+ "grad_norm": 0.285720556974411,
+ "learning_rate": 0.0006,
+ "loss": 4.629637718200684,
+ "step": 580
+ },
+ {
+ "epoch": 8.069899519440805,
+ "grad_norm": 0.2453618347644806,
+ "learning_rate": 0.0006,
+ "loss": 4.62420654296875,
+ "step": 581
+ },
+ {
+ "epoch": 8.083879423328964,
+ "grad_norm": 0.19662636518478394,
+ "learning_rate": 0.0006,
+ "loss": 4.593767166137695,
+ "step": 582
+ },
+ {
+ "epoch": 8.097859327217126,
+ "grad_norm": 0.22731931507587433,
+ "learning_rate": 0.0006,
+ "loss": 4.627089023590088,
+ "step": 583
+ },
+ {
+ "epoch": 8.111839231105286,
+ "grad_norm": 0.24452590942382812,
+ "learning_rate": 0.0006,
+ "loss": 4.613677024841309,
+ "step": 584
+ },
+ {
+ "epoch": 8.125819134993447,
+ "grad_norm": 0.2952791154384613,
+ "learning_rate": 0.0006,
+ "loss": 4.604985237121582,
+ "step": 585
+ },
+ {
+ "epoch": 8.139799038881607,
+ "grad_norm": 0.3184696137905121,
+ "learning_rate": 0.0006,
+ "loss": 4.589205741882324,
+ "step": 586
+ },
+ {
+ "epoch": 8.153778942769769,
+ "grad_norm": 0.2948093116283417,
+ "learning_rate": 0.0006,
+ "loss": 4.605442047119141,
+ "step": 587
+ },
+ {
+ "epoch": 8.167758846657929,
+ "grad_norm": 0.2450508326292038,
+ "learning_rate": 0.0006,
+ "loss": 4.615349292755127,
+ "step": 588
+ },
+ {
+ "epoch": 8.18173875054609,
+ "grad_norm": 0.25664836168289185,
+ "learning_rate": 0.0006,
+ "loss": 4.592251777648926,
+ "step": 589
+ },
+ {
+ "epoch": 8.19571865443425,
+ "grad_norm": 0.24479512870311737,
+ "learning_rate": 0.0006,
+ "loss": 4.6145920753479,
+ "step": 590
+ },
+ {
+ "epoch": 8.209698558322412,
+ "grad_norm": 0.24395205080509186,
+ "learning_rate": 0.0006,
+ "loss": 4.600954055786133,
+ "step": 591
+ },
+ {
+ "epoch": 8.223678462210572,
+ "grad_norm": 0.21804189682006836,
+ "learning_rate": 0.0006,
+ "loss": 4.607785224914551,
+ "step": 592
+ },
+ {
+ "epoch": 8.237658366098733,
+ "grad_norm": 0.20951785147190094,
+ "learning_rate": 0.0006,
+ "loss": 4.58140754699707,
+ "step": 593
+ },
+ {
+ "epoch": 8.251638269986893,
+ "grad_norm": 0.20415149629116058,
+ "learning_rate": 0.0006,
+ "loss": 4.593405723571777,
+ "step": 594
+ },
+ {
+ "epoch": 8.265618173875055,
+ "grad_norm": 0.19210249185562134,
+ "learning_rate": 0.0006,
+ "loss": 4.603294372558594,
+ "step": 595
+ },
+ {
+ "epoch": 8.279598077763215,
+ "grad_norm": 0.20719751715660095,
+ "learning_rate": 0.0006,
+ "loss": 4.55255651473999,
+ "step": 596
+ },
+ {
+ "epoch": 8.293577981651376,
+ "grad_norm": 0.20101022720336914,
+ "learning_rate": 0.0006,
+ "loss": 4.5928192138671875,
+ "step": 597
+ },
+ {
+ "epoch": 8.307557885539538,
+ "grad_norm": 0.19254222512245178,
+ "learning_rate": 0.0006,
+ "loss": 4.590397834777832,
+ "step": 598
+ },
+ {
+ "epoch": 8.321537789427698,
+ "grad_norm": 0.23234105110168457,
+ "learning_rate": 0.0006,
+ "loss": 4.5987677574157715,
+ "step": 599
+ },
+ {
+ "epoch": 8.33551769331586,
+ "grad_norm": 0.2537451982498169,
+ "learning_rate": 0.0006,
+ "loss": 4.543115615844727,
+ "step": 600
+ },
+ {
+ "epoch": 8.349497597204019,
+ "grad_norm": 0.29171040654182434,
+ "learning_rate": 0.0006,
+ "loss": 4.597387313842773,
+ "step": 601
+ },
+ {
+ "epoch": 8.36347750109218,
+ "grad_norm": 0.3035930097103119,
+ "learning_rate": 0.0006,
+ "loss": 4.566247463226318,
+ "step": 602
+ },
+ {
+ "epoch": 8.37745740498034,
+ "grad_norm": 0.2826756238937378,
+ "learning_rate": 0.0006,
+ "loss": 4.57047176361084,
+ "step": 603
+ },
+ {
+ "epoch": 8.391437308868502,
+ "grad_norm": 0.2959657609462738,
+ "learning_rate": 0.0006,
+ "loss": 4.582820892333984,
+ "step": 604
+ },
+ {
+ "epoch": 8.405417212756662,
+ "grad_norm": 0.3180356025695801,
+ "learning_rate": 0.0006,
+ "loss": 4.5573272705078125,
+ "step": 605
+ },
+ {
+ "epoch": 8.419397116644824,
+ "grad_norm": 0.3617221713066101,
+ "learning_rate": 0.0006,
+ "loss": 4.593079090118408,
+ "step": 606
+ },
+ {
+ "epoch": 8.433377020532983,
+ "grad_norm": 0.35198062658309937,
+ "learning_rate": 0.0006,
+ "loss": 4.615298271179199,
+ "step": 607
+ },
+ {
+ "epoch": 8.447356924421145,
+ "grad_norm": 0.3944903314113617,
+ "learning_rate": 0.0006,
+ "loss": 4.561809539794922,
+ "step": 608
+ },
+ {
+ "epoch": 8.461336828309305,
+ "grad_norm": 0.4525868594646454,
+ "learning_rate": 0.0006,
+ "loss": 4.613105773925781,
+ "step": 609
+ },
+ {
+ "epoch": 8.475316732197467,
+ "grad_norm": 0.4915139079093933,
+ "learning_rate": 0.0006,
+ "loss": 4.566202163696289,
+ "step": 610
+ },
+ {
+ "epoch": 8.489296636085626,
+ "grad_norm": 0.49231988191604614,
+ "learning_rate": 0.0006,
+ "loss": 4.556222915649414,
+ "step": 611
+ },
+ {
+ "epoch": 8.503276539973788,
+ "grad_norm": 0.43036946654319763,
+ "learning_rate": 0.0006,
+ "loss": 4.55517578125,
+ "step": 612
+ },
+ {
+ "epoch": 8.517256443861948,
+ "grad_norm": 0.42405328154563904,
+ "learning_rate": 0.0006,
+ "loss": 4.574039936065674,
+ "step": 613
+ },
+ {
+ "epoch": 8.53123634775011,
+ "grad_norm": 0.3955961763858795,
+ "learning_rate": 0.0006,
+ "loss": 4.6082611083984375,
+ "step": 614
+ },
+ {
+ "epoch": 8.54521625163827,
+ "grad_norm": 0.4377101957798004,
+ "learning_rate": 0.0006,
+ "loss": 4.555740833282471,
+ "step": 615
+ },
+ {
+ "epoch": 8.55919615552643,
+ "grad_norm": 0.4601984918117523,
+ "learning_rate": 0.0006,
+ "loss": 4.553995132446289,
+ "step": 616
+ },
+ {
+ "epoch": 8.57317605941459,
+ "grad_norm": 0.42025700211524963,
+ "learning_rate": 0.0006,
+ "loss": 4.567340850830078,
+ "step": 617
+ },
+ {
+ "epoch": 8.587155963302752,
+ "grad_norm": 0.35569432377815247,
+ "learning_rate": 0.0006,
+ "loss": 4.570140361785889,
+ "step": 618
+ },
+ {
+ "epoch": 8.601135867190912,
+ "grad_norm": 0.37940406799316406,
+ "learning_rate": 0.0006,
+ "loss": 4.581291198730469,
+ "step": 619
+ },
+ {
+ "epoch": 8.615115771079074,
+ "grad_norm": 0.3658490777015686,
+ "learning_rate": 0.0006,
+ "loss": 4.55476188659668,
+ "step": 620
+ },
+ {
+ "epoch": 8.629095674967235,
+ "grad_norm": 0.2908247113227844,
+ "learning_rate": 0.0006,
+ "loss": 4.564087867736816,
+ "step": 621
+ },
+ {
+ "epoch": 8.643075578855395,
+ "grad_norm": 0.29961925745010376,
+ "learning_rate": 0.0006,
+ "loss": 4.556543350219727,
+ "step": 622
+ },
+ {
+ "epoch": 8.657055482743557,
+ "grad_norm": 0.3144846558570862,
+ "learning_rate": 0.0006,
+ "loss": 4.553670883178711,
+ "step": 623
+ },
+ {
+ "epoch": 8.671035386631717,
+ "grad_norm": 0.2845900356769562,
+ "learning_rate": 0.0006,
+ "loss": 4.567296981811523,
+ "step": 624
+ },
+ {
+ "epoch": 8.685015290519878,
+ "grad_norm": 0.253591388463974,
+ "learning_rate": 0.0006,
+ "loss": 4.554507255554199,
+ "step": 625
+ },
+ {
+ "epoch": 8.698995194408038,
+ "grad_norm": 0.2563088536262512,
+ "learning_rate": 0.0006,
+ "loss": 4.542218208312988,
+ "step": 626
+ },
+ {
+ "epoch": 8.7129750982962,
+ "grad_norm": 0.26058217883110046,
+ "learning_rate": 0.0006,
+ "loss": 4.535512447357178,
+ "step": 627
+ },
+ {
+ "epoch": 8.72695500218436,
+ "grad_norm": 0.20749829709529877,
+ "learning_rate": 0.0006,
+ "loss": 4.516959190368652,
+ "step": 628
+ },
+ {
+ "epoch": 8.740934906072521,
+ "grad_norm": 0.2034810334444046,
+ "learning_rate": 0.0006,
+ "loss": 4.55794095993042,
+ "step": 629
+ },
+ {
+ "epoch": 8.754914809960681,
+ "grad_norm": 0.18418121337890625,
+ "learning_rate": 0.0006,
+ "loss": 4.5421247482299805,
+ "step": 630
+ },
+ {
+ "epoch": 8.768894713848843,
+ "grad_norm": 0.20551933348178864,
+ "learning_rate": 0.0006,
+ "loss": 4.50805139541626,
+ "step": 631
+ },
+ {
+ "epoch": 8.782874617737003,
+ "grad_norm": 0.21615999937057495,
+ "learning_rate": 0.0006,
+ "loss": 4.520708084106445,
+ "step": 632
+ },
+ {
+ "epoch": 8.796854521625164,
+ "grad_norm": 0.24864810705184937,
+ "learning_rate": 0.0006,
+ "loss": 4.509330749511719,
+ "step": 633
+ },
+ {
+ "epoch": 8.810834425513324,
+ "grad_norm": 0.2573665380477905,
+ "learning_rate": 0.0006,
+ "loss": 4.531505584716797,
+ "step": 634
+ },
+ {
+ "epoch": 8.824814329401486,
+ "grad_norm": 0.22452878952026367,
+ "learning_rate": 0.0006,
+ "loss": 4.529216289520264,
+ "step": 635
+ },
+ {
+ "epoch": 8.838794233289645,
+ "grad_norm": 0.19727355241775513,
+ "learning_rate": 0.0006,
+ "loss": 4.519906520843506,
+ "step": 636
+ },
+ {
+ "epoch": 8.852774137177807,
+ "grad_norm": 0.19937913119792938,
+ "learning_rate": 0.0006,
+ "loss": 4.536892414093018,
+ "step": 637
+ },
+ {
+ "epoch": 8.866754041065967,
+ "grad_norm": 0.2070389986038208,
+ "learning_rate": 0.0006,
+ "loss": 4.51191520690918,
+ "step": 638
+ },
+ {
+ "epoch": 8.880733944954128,
+ "grad_norm": 0.2293873429298401,
+ "learning_rate": 0.0006,
+ "loss": 4.505377769470215,
+ "step": 639
+ },
+ {
+ "epoch": 8.89471384884229,
+ "grad_norm": 0.21285250782966614,
+ "learning_rate": 0.0006,
+ "loss": 4.5138959884643555,
+ "step": 640
+ },
+ {
+ "epoch": 8.90869375273045,
+ "grad_norm": 0.19487562775611877,
+ "learning_rate": 0.0006,
+ "loss": 4.506108283996582,
+ "step": 641
+ },
+ {
+ "epoch": 8.922673656618612,
+ "grad_norm": 0.21986965835094452,
+ "learning_rate": 0.0006,
+ "loss": 4.506397247314453,
+ "step": 642
+ },
+ {
+ "epoch": 8.936653560506771,
+ "grad_norm": 0.20763885974884033,
+ "learning_rate": 0.0006,
+ "loss": 4.508007049560547,
+ "step": 643
+ },
+ {
+ "epoch": 8.950633464394933,
+ "grad_norm": 0.22858479619026184,
+ "learning_rate": 0.0006,
+ "loss": 4.520846366882324,
+ "step": 644
+ },
+ {
+ "epoch": 8.964613368283093,
+ "grad_norm": 0.23923712968826294,
+ "learning_rate": 0.0006,
+ "loss": 4.535306930541992,
+ "step": 645
+ },
+ {
+ "epoch": 8.978593272171254,
+ "grad_norm": 0.23717579245567322,
+ "learning_rate": 0.0006,
+ "loss": 4.485929489135742,
+ "step": 646
+ },
+ {
+ "epoch": 8.992573176059414,
+ "grad_norm": 0.24033977091312408,
+ "learning_rate": 0.0006,
+ "loss": 4.508999824523926,
+ "step": 647
+ },
+ {
+ "epoch": 9.0,
+ "grad_norm": 0.22432062029838562,
+ "learning_rate": 0.0006,
+ "loss": 4.473136901855469,
+ "step": 648
+ },
+ {
+ "epoch": 9.0,
+ "eval_loss": 4.735903263092041,
+ "eval_runtime": 44.2163,
+ "eval_samples_per_second": 55.228,
+ "eval_steps_per_second": 3.46,
+ "step": 648
+ },
+ {
+ "epoch": 9.013979903888162,
+ "grad_norm": 0.22491489350795746,
+ "learning_rate": 0.0006,
+ "loss": 4.468614101409912,
+ "step": 649
+ },
+ {
+ "epoch": 9.027959807776321,
+ "grad_norm": 0.255759060382843,
+ "learning_rate": 0.0006,
+ "loss": 4.516196250915527,
+ "step": 650
+ },
+ {
+ "epoch": 9.041939711664483,
+ "grad_norm": 0.2591100335121155,
+ "learning_rate": 0.0006,
+ "loss": 4.478276252746582,
+ "step": 651
+ },
+ {
+ "epoch": 9.055919615552643,
+ "grad_norm": 0.30472296476364136,
+ "learning_rate": 0.0006,
+ "loss": 4.479726791381836,
+ "step": 652
+ },
+ {
+ "epoch": 9.069899519440805,
+ "grad_norm": 0.2840559780597687,
+ "learning_rate": 0.0006,
+ "loss": 4.4437384605407715,
+ "step": 653
+ },
+ {
+ "epoch": 9.083879423328964,
+ "grad_norm": 0.2695577144622803,
+ "learning_rate": 0.0006,
+ "loss": 4.476065635681152,
+ "step": 654
+ },
+ {
+ "epoch": 9.097859327217126,
+ "grad_norm": 0.27912381291389465,
+ "learning_rate": 0.0006,
+ "loss": 4.484747409820557,
+ "step": 655
+ },
+ {
+ "epoch": 9.111839231105286,
+ "grad_norm": 0.3091907501220703,
+ "learning_rate": 0.0006,
+ "loss": 4.449443817138672,
+ "step": 656
+ },
+ {
+ "epoch": 9.125819134993447,
+ "grad_norm": 0.30756646394729614,
+ "learning_rate": 0.0006,
+ "loss": 4.496490001678467,
+ "step": 657
+ },
+ {
+ "epoch": 9.139799038881607,
+ "grad_norm": 0.305698037147522,
+ "learning_rate": 0.0006,
+ "loss": 4.466765880584717,
+ "step": 658
+ },
+ {
+ "epoch": 9.153778942769769,
+ "grad_norm": 0.3031201660633087,
+ "learning_rate": 0.0006,
+ "loss": 4.462430953979492,
+ "step": 659
+ },
+ {
+ "epoch": 9.167758846657929,
+ "grad_norm": 0.32725608348846436,
+ "learning_rate": 0.0006,
+ "loss": 4.479879379272461,
+ "step": 660
+ },
+ {
+ "epoch": 9.18173875054609,
+ "grad_norm": 0.31773585081100464,
+ "learning_rate": 0.0006,
+ "loss": 4.473912239074707,
+ "step": 661
+ },
+ {
+ "epoch": 9.19571865443425,
+ "grad_norm": 0.30025365948677063,
+ "learning_rate": 0.0006,
+ "loss": 4.476703643798828,
+ "step": 662
+ },
+ {
+ "epoch": 9.209698558322412,
+ "grad_norm": 0.3177371025085449,
+ "learning_rate": 0.0006,
+ "loss": 4.439765930175781,
+ "step": 663
+ },
+ {
+ "epoch": 9.223678462210572,
+ "grad_norm": 0.3060745894908905,
+ "learning_rate": 0.0006,
+ "loss": 4.487849235534668,
+ "step": 664
+ },
+ {
+ "epoch": 9.237658366098733,
+ "grad_norm": 0.33287373185157776,
+ "learning_rate": 0.0006,
+ "loss": 4.443496227264404,
+ "step": 665
+ },
+ {
+ "epoch": 9.251638269986893,
+ "grad_norm": 0.3758000433444977,
+ "learning_rate": 0.0006,
+ "loss": 4.478017330169678,
+ "step": 666
+ },
+ {
+ "epoch": 9.265618173875055,
+ "grad_norm": 0.32124510407447815,
+ "learning_rate": 0.0006,
+ "loss": 4.4092206954956055,
+ "step": 667
+ },
+ {
+ "epoch": 9.279598077763215,
+ "grad_norm": 0.2786794602870941,
+ "learning_rate": 0.0006,
+ "loss": 4.432734489440918,
+ "step": 668
+ },
+ {
+ "epoch": 9.293577981651376,
+ "grad_norm": 0.35042962431907654,
+ "learning_rate": 0.0006,
+ "loss": 4.462737083435059,
+ "step": 669
+ },
+ {
+ "epoch": 9.307557885539538,
+ "grad_norm": 0.4080469310283661,
+ "learning_rate": 0.0006,
+ "loss": 4.429462432861328,
+ "step": 670
+ },
+ {
+ "epoch": 9.321537789427698,
+ "grad_norm": 0.465158075094223,
+ "learning_rate": 0.0006,
+ "loss": 4.465776443481445,
+ "step": 671
+ },
+ {
+ "epoch": 9.33551769331586,
+ "grad_norm": 0.44833582639694214,
+ "learning_rate": 0.0006,
+ "loss": 4.454195976257324,
+ "step": 672
+ },
+ {
+ "epoch": 9.349497597204019,
+ "grad_norm": 0.451052188873291,
+ "learning_rate": 0.0006,
+ "loss": 4.456139087677002,
+ "step": 673
+ },
+ {
+ "epoch": 9.36347750109218,
+ "grad_norm": 0.3759656250476837,
+ "learning_rate": 0.0006,
+ "loss": 4.461119651794434,
+ "step": 674
+ },
+ {
+ "epoch": 9.37745740498034,
+ "grad_norm": 0.514560341835022,
+ "learning_rate": 0.0006,
+ "loss": 4.49595832824707,
+ "step": 675
+ },
+ {
+ "epoch": 9.391437308868502,
+ "grad_norm": 0.5650647282600403,
+ "learning_rate": 0.0006,
+ "loss": 4.461362838745117,
+ "step": 676
+ },
+ {
+ "epoch": 9.405417212756662,
+ "grad_norm": 0.4218835234642029,
+ "learning_rate": 0.0006,
+ "loss": 4.469146728515625,
+ "step": 677
+ },
+ {
+ "epoch": 9.419397116644824,
+ "grad_norm": 0.4169512689113617,
+ "learning_rate": 0.0006,
+ "loss": 4.470132827758789,
+ "step": 678
+ },
+ {
+ "epoch": 9.433377020532983,
+ "grad_norm": 0.3772219717502594,
+ "learning_rate": 0.0006,
+ "loss": 4.4742608070373535,
+ "step": 679
+ },
+ {
+ "epoch": 9.447356924421145,
+ "grad_norm": 0.35755908489227295,
+ "learning_rate": 0.0006,
+ "loss": 4.461928367614746,
+ "step": 680
+ },
+ {
+ "epoch": 9.461336828309305,
+ "grad_norm": 0.3141227662563324,
+ "learning_rate": 0.0006,
+ "loss": 4.491983413696289,
+ "step": 681
+ },
+ {
+ "epoch": 9.475316732197467,
+ "grad_norm": 0.282461017370224,
+ "learning_rate": 0.0006,
+ "loss": 4.460200309753418,
+ "step": 682
+ },
+ {
+ "epoch": 9.489296636085626,
+ "grad_norm": 0.27174389362335205,
+ "learning_rate": 0.0006,
+ "loss": 4.416125297546387,
+ "step": 683
+ },
+ {
+ "epoch": 9.503276539973788,
+ "grad_norm": 0.24570637941360474,
+ "learning_rate": 0.0006,
+ "loss": 4.4451093673706055,
+ "step": 684
+ },
+ {
+ "epoch": 9.517256443861948,
+ "grad_norm": 0.2741486132144928,
+ "learning_rate": 0.0006,
+ "loss": 4.453263282775879,
+ "step": 685
+ },
+ {
+ "epoch": 9.53123634775011,
+ "grad_norm": 0.24753718078136444,
+ "learning_rate": 0.0006,
+ "loss": 4.483033180236816,
+ "step": 686
+ },
+ {
+ "epoch": 9.54521625163827,
+ "grad_norm": 0.24288412928581238,
+ "learning_rate": 0.0006,
+ "loss": 4.452961444854736,
+ "step": 687
+ },
+ {
+ "epoch": 9.55919615552643,
+ "grad_norm": 0.21554753184318542,
+ "learning_rate": 0.0006,
+ "loss": 4.476005554199219,
+ "step": 688
+ },
+ {
+ "epoch": 9.57317605941459,
+ "grad_norm": 0.22775942087173462,
+ "learning_rate": 0.0006,
+ "loss": 4.4479193687438965,
+ "step": 689
+ },
+ {
+ "epoch": 9.587155963302752,
+ "grad_norm": 0.2610701024532318,
+ "learning_rate": 0.0006,
+ "loss": 4.474987506866455,
+ "step": 690
+ },
+ {
+ "epoch": 9.601135867190912,
+ "grad_norm": 0.2394690215587616,
+ "learning_rate": 0.0006,
+ "loss": 4.444857597351074,
+ "step": 691
+ },
+ {
+ "epoch": 9.615115771079074,
+ "grad_norm": 0.20868559181690216,
+ "learning_rate": 0.0006,
+ "loss": 4.4220709800720215,
+ "step": 692
+ },
+ {
+ "epoch": 9.629095674967235,
+ "grad_norm": 0.21869882941246033,
+ "learning_rate": 0.0006,
+ "loss": 4.451737403869629,
+ "step": 693
+ },
+ {
+ "epoch": 9.643075578855395,
+ "grad_norm": 0.1802823394536972,
+ "learning_rate": 0.0006,
+ "loss": 4.409085273742676,
+ "step": 694
+ },
+ {
+ "epoch": 9.657055482743557,
+ "grad_norm": 0.17046281695365906,
+ "learning_rate": 0.0006,
+ "loss": 4.424643516540527,
+ "step": 695
+ },
+ {
+ "epoch": 9.671035386631717,
+ "grad_norm": 0.19561922550201416,
+ "learning_rate": 0.0006,
+ "loss": 4.412302017211914,
+ "step": 696
+ },
+ {
+ "epoch": 9.685015290519878,
+ "grad_norm": 0.21928799152374268,
+ "learning_rate": 0.0006,
+ "loss": 4.427582263946533,
+ "step": 697
+ },
+ {
+ "epoch": 9.698995194408038,
+ "grad_norm": 0.244873046875,
+ "learning_rate": 0.0006,
+ "loss": 4.431827545166016,
+ "step": 698
+ },
+ {
+ "epoch": 9.7129750982962,
+ "grad_norm": 0.2799488604068756,
+ "learning_rate": 0.0006,
+ "loss": 4.407991409301758,
+ "step": 699
+ },
+ {
+ "epoch": 9.72695500218436,
+ "grad_norm": 0.2699538767337799,
+ "learning_rate": 0.0006,
+ "loss": 4.412313461303711,
+ "step": 700
+ },
+ {
+ "epoch": 9.740934906072521,
+ "grad_norm": 0.22293835878372192,
+ "learning_rate": 0.0006,
+ "loss": 4.423369884490967,
+ "step": 701
+ },
+ {
+ "epoch": 9.754914809960681,
+ "grad_norm": 0.21554361283779144,
+ "learning_rate": 0.0006,
+ "loss": 4.42026948928833,
+ "step": 702
+ },
+ {
+ "epoch": 9.768894713848843,
+ "grad_norm": 0.22135840356349945,
+ "learning_rate": 0.0006,
+ "loss": 4.400010108947754,
+ "step": 703
+ },
+ {
+ "epoch": 9.782874617737003,
+ "grad_norm": 0.2169952541589737,
+ "learning_rate": 0.0006,
+ "loss": 4.394582271575928,
+ "step": 704
+ },
+ {
+ "epoch": 9.796854521625164,
+ "grad_norm": 0.18913042545318604,
+ "learning_rate": 0.0006,
+ "loss": 4.395880699157715,
+ "step": 705
+ },
+ {
+ "epoch": 9.810834425513324,
+ "grad_norm": 0.191524475812912,
+ "learning_rate": 0.0006,
+ "loss": 4.378962516784668,
+ "step": 706
+ },
+ {
+ "epoch": 9.824814329401486,
+ "grad_norm": 0.20057640969753265,
+ "learning_rate": 0.0006,
+ "loss": 4.431066513061523,
+ "step": 707
+ },
+ {
+ "epoch": 9.838794233289645,
+ "grad_norm": 0.21670377254486084,
+ "learning_rate": 0.0006,
+ "loss": 4.364682197570801,
+ "step": 708
+ },
+ {
+ "epoch": 9.852774137177807,
+ "grad_norm": 0.21653099358081818,
+ "learning_rate": 0.0006,
+ "loss": 4.4050445556640625,
+ "step": 709
+ },
+ {
+ "epoch": 9.866754041065967,
+ "grad_norm": 0.2217673808336258,
+ "learning_rate": 0.0006,
+ "loss": 4.423664093017578,
+ "step": 710
+ },
+ {
+ "epoch": 9.880733944954128,
+ "grad_norm": 0.251078337430954,
+ "learning_rate": 0.0006,
+ "loss": 4.405768394470215,
+ "step": 711
+ },
+ {
+ "epoch": 9.89471384884229,
+ "grad_norm": 0.28962627053260803,
+ "learning_rate": 0.0006,
+ "loss": 4.421207427978516,
+ "step": 712
+ },
+ {
+ "epoch": 9.90869375273045,
+ "grad_norm": 0.3478074371814728,
+ "learning_rate": 0.0006,
+ "loss": 4.414942741394043,
+ "step": 713
+ },
+ {
+ "epoch": 9.922673656618612,
+ "grad_norm": 0.40396368503570557,
+ "learning_rate": 0.0006,
+ "loss": 4.415163993835449,
+ "step": 714
+ },
+ {
+ "epoch": 9.936653560506771,
+ "grad_norm": 0.3689858019351959,
+ "learning_rate": 0.0006,
+ "loss": 4.381345272064209,
+ "step": 715
+ },
+ {
+ "epoch": 9.950633464394933,
+ "grad_norm": 0.344868004322052,
+ "learning_rate": 0.0006,
+ "loss": 4.433088302612305,
+ "step": 716
+ },
+ {
+ "epoch": 9.964613368283093,
+ "grad_norm": 0.37976378202438354,
+ "learning_rate": 0.0006,
+ "loss": 4.431371212005615,
+ "step": 717
+ },
+ {
+ "epoch": 9.978593272171254,
+ "grad_norm": 0.4354130029678345,
+ "learning_rate": 0.0006,
+ "loss": 4.434148788452148,
+ "step": 718
+ },
+ {
+ "epoch": 9.992573176059414,
+ "grad_norm": 0.35859373211860657,
+ "learning_rate": 0.0006,
+ "loss": 4.428055763244629,
+ "step": 719
+ },
+ {
+ "epoch": 10.0,
+ "grad_norm": 0.3365023732185364,
+ "learning_rate": 0.0006,
+ "loss": 4.3888654708862305,
+ "step": 720
+ },
+ {
+ "epoch": 10.0,
+ "eval_loss": 4.638620853424072,
+ "eval_runtime": 44.3054,
+ "eval_samples_per_second": 55.117,
+ "eval_steps_per_second": 3.453,
+ "step": 720
+ },
+ {
+ "epoch": 10.013979903888162,
+ "grad_norm": 0.3267960250377655,
+ "learning_rate": 0.0006,
+ "loss": 4.386068344116211,
+ "step": 721
+ },
+ {
+ "epoch": 10.027959807776321,
+ "grad_norm": 0.33440953493118286,
+ "learning_rate": 0.0006,
+ "loss": 4.397515296936035,
+ "step": 722
+ },
+ {
+ "epoch": 10.041939711664483,
+ "grad_norm": 0.30047518014907837,
+ "learning_rate": 0.0006,
+ "loss": 4.398358345031738,
+ "step": 723
+ },
+ {
+ "epoch": 10.055919615552643,
+ "grad_norm": 0.2912217378616333,
+ "learning_rate": 0.0006,
+ "loss": 4.341166973114014,
+ "step": 724
+ },
+ {
+ "epoch": 10.069899519440805,
+ "grad_norm": 0.3199564218521118,
+ "learning_rate": 0.0006,
+ "loss": 4.388717174530029,
+ "step": 725
+ },
+ {
+ "epoch": 10.083879423328964,
+ "grad_norm": 0.2765582799911499,
+ "learning_rate": 0.0006,
+ "loss": 4.392992973327637,
+ "step": 726
+ },
+ {
+ "epoch": 10.097859327217126,
+ "grad_norm": 0.27138450741767883,
+ "learning_rate": 0.0006,
+ "loss": 4.382307529449463,
+ "step": 727
+ },
+ {
+ "epoch": 10.111839231105286,
+ "grad_norm": 0.29230645298957825,
+ "learning_rate": 0.0006,
+ "loss": 4.357486724853516,
+ "step": 728
+ },
+ {
+ "epoch": 10.125819134993447,
+ "grad_norm": 0.3127598464488983,
+ "learning_rate": 0.0006,
+ "loss": 4.39072322845459,
+ "step": 729
+ },
+ {
+ "epoch": 10.139799038881607,
+ "grad_norm": 0.3230913281440735,
+ "learning_rate": 0.0006,
+ "loss": 4.35037899017334,
+ "step": 730
+ },
+ {
+ "epoch": 10.153778942769769,
+ "grad_norm": 0.333675354719162,
+ "learning_rate": 0.0006,
+ "loss": 4.378030776977539,
+ "step": 731
+ },
+ {
+ "epoch": 10.167758846657929,
+ "grad_norm": 0.30325770378112793,
+ "learning_rate": 0.0006,
+ "loss": 4.372736930847168,
+ "step": 732
+ },
+ {
+ "epoch": 10.18173875054609,
+ "grad_norm": 0.2888163924217224,
+ "learning_rate": 0.0006,
+ "loss": 4.397604942321777,
+ "step": 733
+ },
+ {
+ "epoch": 10.19571865443425,
+ "grad_norm": 0.3378832936286926,
+ "learning_rate": 0.0006,
+ "loss": 4.395705223083496,
+ "step": 734
+ },
+ {
+ "epoch": 10.209698558322412,
+ "grad_norm": 0.30980268120765686,
+ "learning_rate": 0.0006,
+ "loss": 4.3861212730407715,
+ "step": 735
+ },
+ {
+ "epoch": 10.223678462210572,
+ "grad_norm": 0.2965783178806305,
+ "learning_rate": 0.0006,
+ "loss": 4.394898414611816,
+ "step": 736
+ },
+ {
+ "epoch": 10.237658366098733,
+ "grad_norm": 0.2818217873573303,
+ "learning_rate": 0.0006,
+ "loss": 4.36171817779541,
+ "step": 737
+ },
+ {
+ "epoch": 10.251638269986893,
+ "grad_norm": 0.2418123185634613,
+ "learning_rate": 0.0006,
+ "loss": 4.370945930480957,
+ "step": 738
+ },
+ {
+ "epoch": 10.265618173875055,
+ "grad_norm": 0.22372810542583466,
+ "learning_rate": 0.0006,
+ "loss": 4.354825973510742,
+ "step": 739
+ },
+ {
+ "epoch": 10.279598077763215,
+ "grad_norm": 0.238066166639328,
+ "learning_rate": 0.0006,
+ "loss": 4.376237392425537,
+ "step": 740
+ },
+ {
+ "epoch": 10.293577981651376,
+ "grad_norm": 0.22352449595928192,
+ "learning_rate": 0.0006,
+ "loss": 4.317084312438965,
+ "step": 741
+ },
+ {
+ "epoch": 10.307557885539538,
+ "grad_norm": 0.21685205399990082,
+ "learning_rate": 0.0006,
+ "loss": 4.335271835327148,
+ "step": 742
+ },
+ {
+ "epoch": 10.321537789427698,
+ "grad_norm": 0.19584694504737854,
+ "learning_rate": 0.0006,
+ "loss": 4.357963562011719,
+ "step": 743
+ },
+ {
+ "epoch": 10.33551769331586,
+ "grad_norm": 0.20373336970806122,
+ "learning_rate": 0.0006,
+ "loss": 4.401963233947754,
+ "step": 744
+ },
+ {
+ "epoch": 10.349497597204019,
+ "grad_norm": 0.2247837632894516,
+ "learning_rate": 0.0006,
+ "loss": 4.357202529907227,
+ "step": 745
+ },
+ {
+ "epoch": 10.36347750109218,
+ "grad_norm": 0.2416863739490509,
+ "learning_rate": 0.0006,
+ "loss": 4.364739418029785,
+ "step": 746
+ },
+ {
+ "epoch": 10.37745740498034,
+ "grad_norm": 0.22281162440776825,
+ "learning_rate": 0.0006,
+ "loss": 4.351607799530029,
+ "step": 747
+ },
+ {
+ "epoch": 10.391437308868502,
+ "grad_norm": 0.20751096308231354,
+ "learning_rate": 0.0006,
+ "loss": 4.370017051696777,
+ "step": 748
+ },
+ {
+ "epoch": 10.405417212756662,
+ "grad_norm": 0.19178363680839539,
+ "learning_rate": 0.0006,
+ "loss": 4.360328674316406,
+ "step": 749
+ },
+ {
+ "epoch": 10.419397116644824,
+ "grad_norm": 0.20534078776836395,
+ "learning_rate": 0.0006,
+ "loss": 4.3735432624816895,
+ "step": 750
+ },
+ {
+ "epoch": 10.433377020532983,
+ "grad_norm": 0.20533937215805054,
+ "learning_rate": 0.0006,
+ "loss": 4.326902389526367,
+ "step": 751
+ },
+ {
+ "epoch": 10.447356924421145,
+ "grad_norm": 0.22057875990867615,
+ "learning_rate": 0.0006,
+ "loss": 4.360934257507324,
+ "step": 752
+ },
+ {
+ "epoch": 10.461336828309305,
+ "grad_norm": 0.25568997859954834,
+ "learning_rate": 0.0006,
+ "loss": 4.345063209533691,
+ "step": 753
+ },
+ {
+ "epoch": 10.475316732197467,
+ "grad_norm": 0.31471487879753113,
+ "learning_rate": 0.0006,
+ "loss": 4.324014186859131,
+ "step": 754
+ },
+ {
+ "epoch": 10.489296636085626,
+ "grad_norm": 0.2716822624206543,
+ "learning_rate": 0.0006,
+ "loss": 4.318459510803223,
+ "step": 755
+ },
+ {
+ "epoch": 10.503276539973788,
+ "grad_norm": 0.19552019238471985,
+ "learning_rate": 0.0006,
+ "loss": 4.3367509841918945,
+ "step": 756
+ },
+ {
+ "epoch": 10.517256443861948,
+ "grad_norm": 0.22822986543178558,
+ "learning_rate": 0.0006,
+ "loss": 4.328935623168945,
+ "step": 757
+ },
+ {
+ "epoch": 10.53123634775011,
+ "grad_norm": 0.22282928228378296,
+ "learning_rate": 0.0006,
+ "loss": 4.358272552490234,
+ "step": 758
+ },
+ {
+ "epoch": 10.54521625163827,
+ "grad_norm": 0.23303352296352386,
+ "learning_rate": 0.0006,
+ "loss": 4.336641311645508,
+ "step": 759
+ },
+ {
+ "epoch": 10.55919615552643,
+ "grad_norm": 0.29474690556526184,
+ "learning_rate": 0.0006,
+ "loss": 4.343188285827637,
+ "step": 760
+ },
+ {
+ "epoch": 10.57317605941459,
+ "grad_norm": 0.36269059777259827,
+ "learning_rate": 0.0006,
+ "loss": 4.313019752502441,
+ "step": 761
+ },
+ {
+ "epoch": 10.587155963302752,
+ "grad_norm": 0.3742978870868683,
+ "learning_rate": 0.0006,
+ "loss": 4.361410140991211,
+ "step": 762
+ },
+ {
+ "epoch": 10.601135867190912,
+ "grad_norm": 0.34412163496017456,
+ "learning_rate": 0.0006,
+ "loss": 4.321324825286865,
+ "step": 763
+ },
+ {
+ "epoch": 10.615115771079074,
+ "grad_norm": 0.3464587926864624,
+ "learning_rate": 0.0006,
+ "loss": 4.341907501220703,
+ "step": 764
+ },
+ {
+ "epoch": 10.629095674967235,
+ "grad_norm": 0.3318136930465698,
+ "learning_rate": 0.0006,
+ "loss": 4.329099655151367,
+ "step": 765
+ },
+ {
+ "epoch": 10.643075578855395,
+ "grad_norm": 0.31292903423309326,
+ "learning_rate": 0.0006,
+ "loss": 4.332015037536621,
+ "step": 766
+ },
+ {
+ "epoch": 10.657055482743557,
+ "grad_norm": 0.2904847264289856,
+ "learning_rate": 0.0006,
+ "loss": 4.341764450073242,
+ "step": 767
+ },
+ {
+ "epoch": 10.671035386631717,
+ "grad_norm": 0.3287692666053772,
+ "learning_rate": 0.0006,
+ "loss": 4.342329025268555,
+ "step": 768
+ },
+ {
+ "epoch": 10.685015290519878,
+ "grad_norm": 0.3115365207195282,
+ "learning_rate": 0.0006,
+ "loss": 4.3530073165893555,
+ "step": 769
+ },
+ {
+ "epoch": 10.698995194408038,
+ "grad_norm": 0.24133864045143127,
+ "learning_rate": 0.0006,
+ "loss": 4.321497917175293,
+ "step": 770
+ },
+ {
+ "epoch": 10.7129750982962,
+ "grad_norm": 0.24658630788326263,
+ "learning_rate": 0.0006,
+ "loss": 4.32669734954834,
+ "step": 771
+ },
+ {
+ "epoch": 10.72695500218436,
+ "grad_norm": 0.2342129647731781,
+ "learning_rate": 0.0006,
+ "loss": 4.345459461212158,
+ "step": 772
+ },
+ {
+ "epoch": 10.740934906072521,
+ "grad_norm": 0.23360829055309296,
+ "learning_rate": 0.0006,
+ "loss": 4.33249568939209,
+ "step": 773
+ },
+ {
+ "epoch": 10.754914809960681,
+ "grad_norm": 0.24314677715301514,
+ "learning_rate": 0.0006,
+ "loss": 4.30499792098999,
+ "step": 774
+ },
+ {
+ "epoch": 10.768894713848843,
+ "grad_norm": 0.22105181217193604,
+ "learning_rate": 0.0006,
+ "loss": 4.33706521987915,
+ "step": 775
+ },
+ {
+ "epoch": 10.782874617737003,
+ "grad_norm": 0.23307174444198608,
+ "learning_rate": 0.0006,
+ "loss": 4.320387840270996,
+ "step": 776
+ },
+ {
+ "epoch": 10.796854521625164,
+ "grad_norm": 0.24946169555187225,
+ "learning_rate": 0.0006,
+ "loss": 4.316012382507324,
+ "step": 777
+ },
+ {
+ "epoch": 10.810834425513324,
+ "grad_norm": 0.26023536920547485,
+ "learning_rate": 0.0006,
+ "loss": 4.315193176269531,
+ "step": 778
+ },
+ {
+ "epoch": 10.824814329401486,
+ "grad_norm": 0.2688547968864441,
+ "learning_rate": 0.0006,
+ "loss": 4.3243255615234375,
+ "step": 779
+ },
+ {
+ "epoch": 10.838794233289645,
+ "grad_norm": 0.28188297152519226,
+ "learning_rate": 0.0006,
+ "loss": 4.3202972412109375,
+ "step": 780
+ },
+ {
+ "epoch": 10.852774137177807,
+ "grad_norm": 0.2890053689479828,
+ "learning_rate": 0.0006,
+ "loss": 4.318799018859863,
+ "step": 781
+ },
+ {
+ "epoch": 10.866754041065967,
+ "grad_norm": 0.2914353013038635,
+ "learning_rate": 0.0006,
+ "loss": 4.314262390136719,
+ "step": 782
+ },
+ {
+ "epoch": 10.880733944954128,
+ "grad_norm": 0.3145572543144226,
+ "learning_rate": 0.0006,
+ "loss": 4.339262008666992,
+ "step": 783
+ },
+ {
+ "epoch": 10.89471384884229,
+ "grad_norm": 0.323062002658844,
+ "learning_rate": 0.0006,
+ "loss": 4.354856491088867,
+ "step": 784
+ },
+ {
+ "epoch": 10.90869375273045,
+ "grad_norm": 0.32741227746009827,
+ "learning_rate": 0.0006,
+ "loss": 4.325577735900879,
+ "step": 785
+ },
+ {
+ "epoch": 10.922673656618612,
+ "grad_norm": 0.2855733036994934,
+ "learning_rate": 0.0006,
+ "loss": 4.324419021606445,
+ "step": 786
+ },
+ {
+ "epoch": 10.936653560506771,
+ "grad_norm": 0.2969444990158081,
+ "learning_rate": 0.0006,
+ "loss": 4.320681095123291,
+ "step": 787
+ },
+ {
+ "epoch": 10.950633464394933,
+ "grad_norm": 0.28108111023902893,
+ "learning_rate": 0.0006,
+ "loss": 4.32673454284668,
+ "step": 788
+ },
+ {
+ "epoch": 10.964613368283093,
+ "grad_norm": 0.2537972629070282,
+ "learning_rate": 0.0006,
+ "loss": 4.3197021484375,
+ "step": 789
+ },
+ {
+ "epoch": 10.978593272171254,
+ "grad_norm": 0.2354544699192047,
+ "learning_rate": 0.0006,
+ "loss": 4.3354973793029785,
+ "step": 790
+ },
+ {
+ "epoch": 10.992573176059414,
+ "grad_norm": 0.26195117831230164,
+ "learning_rate": 0.0006,
+ "loss": 4.3172526359558105,
+ "step": 791
+ },
+ {
+ "epoch": 11.0,
+ "grad_norm": 0.27089616656303406,
+ "learning_rate": 0.0006,
+ "loss": 4.324293613433838,
+ "step": 792
+ },
+ {
+ "epoch": 11.0,
+ "eval_loss": 4.531813621520996,
+ "eval_runtime": 44.1656,
+ "eval_samples_per_second": 55.292,
+ "eval_steps_per_second": 3.464,
+ "step": 792
+ },
+ {
+ "epoch": 11.013979903888162,
+ "grad_norm": 0.2526339590549469,
+ "learning_rate": 0.0006,
+ "loss": 4.287600517272949,
+ "step": 793
+ },
+ {
+ "epoch": 11.027959807776321,
+ "grad_norm": 0.24318458139896393,
+ "learning_rate": 0.0006,
+ "loss": 4.268078327178955,
+ "step": 794
+ },
+ {
+ "epoch": 11.041939711664483,
+ "grad_norm": 0.2450830638408661,
+ "learning_rate": 0.0006,
+ "loss": 4.265467643737793,
+ "step": 795
+ },
+ {
+ "epoch": 11.055919615552643,
+ "grad_norm": 0.23963099718093872,
+ "learning_rate": 0.0006,
+ "loss": 4.267931938171387,
+ "step": 796
+ },
+ {
+ "epoch": 11.069899519440805,
+ "grad_norm": 0.2488657534122467,
+ "learning_rate": 0.0006,
+ "loss": 4.30262565612793,
+ "step": 797
+ },
+ {
+ "epoch": 11.083879423328964,
+ "grad_norm": 0.2319781631231308,
+ "learning_rate": 0.0006,
+ "loss": 4.28665828704834,
+ "step": 798
+ },
+ {
+ "epoch": 11.097859327217126,
+ "grad_norm": 0.2425263375043869,
+ "learning_rate": 0.0006,
+ "loss": 4.284830570220947,
+ "step": 799
+ },
+ {
+ "epoch": 11.111839231105286,
+ "grad_norm": 0.23096567392349243,
+ "learning_rate": 0.0006,
+ "loss": 4.2817206382751465,
+ "step": 800
+ },
+ {
+ "epoch": 11.125819134993447,
+ "grad_norm": 0.2846364676952362,
+ "learning_rate": 0.0006,
+ "loss": 4.276104927062988,
+ "step": 801
+ },
+ {
+ "epoch": 11.139799038881607,
+ "grad_norm": 0.2984965741634369,
+ "learning_rate": 0.0006,
+ "loss": 4.2909650802612305,
+ "step": 802
+ },
+ {
+ "epoch": 11.153778942769769,
+ "grad_norm": 0.2841213643550873,
+ "learning_rate": 0.0006,
+ "loss": 4.283358097076416,
+ "step": 803
+ },
+ {
+ "epoch": 11.167758846657929,
+ "grad_norm": 0.29192933440208435,
+ "learning_rate": 0.0006,
+ "loss": 4.267040729522705,
+ "step": 804
+ },
+ {
+ "epoch": 11.18173875054609,
+ "grad_norm": 0.3254184126853943,
+ "learning_rate": 0.0006,
+ "loss": 4.301564693450928,
+ "step": 805
+ },
+ {
+ "epoch": 11.19571865443425,
+ "grad_norm": 0.3347095847129822,
+ "learning_rate": 0.0006,
+ "loss": 4.271395683288574,
+ "step": 806
+ },
+ {
+ "epoch": 11.209698558322412,
+ "grad_norm": 0.25609350204467773,
+ "learning_rate": 0.0006,
+ "loss": 4.2963056564331055,
+ "step": 807
+ },
+ {
+ "epoch": 11.223678462210572,
+ "grad_norm": 0.29272061586380005,
+ "learning_rate": 0.0006,
+ "loss": 4.298416614532471,
+ "step": 808
+ },
+ {
+ "epoch": 11.237658366098733,
+ "grad_norm": 0.32179465889930725,
+ "learning_rate": 0.0006,
+ "loss": 4.294036865234375,
+ "step": 809
+ },
+ {
+ "epoch": 11.251638269986893,
+ "grad_norm": 0.3336549401283264,
+ "learning_rate": 0.0006,
+ "loss": 4.291993141174316,
+ "step": 810
+ },
+ {
+ "epoch": 11.265618173875055,
+ "grad_norm": 0.32273536920547485,
+ "learning_rate": 0.0006,
+ "loss": 4.311004638671875,
+ "step": 811
+ },
+ {
+ "epoch": 11.279598077763215,
+ "grad_norm": 0.3575087785720825,
+ "learning_rate": 0.0006,
+ "loss": 4.300217628479004,
+ "step": 812
+ },
+ {
+ "epoch": 11.293577981651376,
+ "grad_norm": 0.3332885205745697,
+ "learning_rate": 0.0006,
+ "loss": 4.278337478637695,
+ "step": 813
+ },
+ {
+ "epoch": 11.307557885539538,
+ "grad_norm": 0.31440407037734985,
+ "learning_rate": 0.0006,
+ "loss": 4.273826599121094,
+ "step": 814
+ },
+ {
+ "epoch": 11.321537789427698,
+ "grad_norm": 0.29822009801864624,
+ "learning_rate": 0.0006,
+ "loss": 4.284292221069336,
+ "step": 815
+ },
+ {
+ "epoch": 11.33551769331586,
+ "grad_norm": 0.30695512890815735,
+ "learning_rate": 0.0006,
+ "loss": 4.2831926345825195,
+ "step": 816
+ },
+ {
+ "epoch": 11.349497597204019,
+ "grad_norm": 0.30576950311660767,
+ "learning_rate": 0.0006,
+ "loss": 4.277133464813232,
+ "step": 817
+ },
+ {
+ "epoch": 11.36347750109218,
+ "grad_norm": 0.2859647870063782,
+ "learning_rate": 0.0006,
+ "loss": 4.3130106925964355,
+ "step": 818
+ },
+ {
+ "epoch": 11.37745740498034,
+ "grad_norm": 0.32417574524879456,
+ "learning_rate": 0.0006,
+ "loss": 4.310303211212158,
+ "step": 819
+ },
+ {
+ "epoch": 11.391437308868502,
+ "grad_norm": 0.3512463867664337,
+ "learning_rate": 0.0006,
+ "loss": 4.287015438079834,
+ "step": 820
+ },
+ {
+ "epoch": 11.405417212756662,
+ "grad_norm": 0.32578620314598083,
+ "learning_rate": 0.0006,
+ "loss": 4.2957940101623535,
+ "step": 821
+ },
+ {
+ "epoch": 11.419397116644824,
+ "grad_norm": 0.287949800491333,
+ "learning_rate": 0.0006,
+ "loss": 4.2881879806518555,
+ "step": 822
+ },
+ {
+ "epoch": 11.433377020532983,
+ "grad_norm": 0.28048595786094666,
+ "learning_rate": 0.0006,
+ "loss": 4.274960517883301,
+ "step": 823
+ },
+ {
+ "epoch": 11.447356924421145,
+ "grad_norm": 0.2541540563106537,
+ "learning_rate": 0.0006,
+ "loss": 4.261083602905273,
+ "step": 824
+ },
+ {
+ "epoch": 11.461336828309305,
+ "grad_norm": 0.2348361313343048,
+ "learning_rate": 0.0006,
+ "loss": 4.271036148071289,
+ "step": 825
+ },
+ {
+ "epoch": 11.475316732197467,
+ "grad_norm": 0.20913535356521606,
+ "learning_rate": 0.0006,
+ "loss": 4.307661056518555,
+ "step": 826
+ },
+ {
+ "epoch": 11.489296636085626,
+ "grad_norm": 0.22298868000507355,
+ "learning_rate": 0.0006,
+ "loss": 4.26902961730957,
+ "step": 827
+ },
+ {
+ "epoch": 11.503276539973788,
+ "grad_norm": 0.22752761840820312,
+ "learning_rate": 0.0006,
+ "loss": 4.305529594421387,
+ "step": 828
+ },
+ {
+ "epoch": 11.517256443861948,
+ "grad_norm": 0.2149917483329773,
+ "learning_rate": 0.0006,
+ "loss": 4.25134801864624,
+ "step": 829
+ },
+ {
+ "epoch": 11.53123634775011,
+ "grad_norm": 0.21085695922374725,
+ "learning_rate": 0.0006,
+ "loss": 4.266982078552246,
+ "step": 830
+ },
+ {
+ "epoch": 11.54521625163827,
+ "grad_norm": 0.21586747467517853,
+ "learning_rate": 0.0006,
+ "loss": 4.235255718231201,
+ "step": 831
+ },
+ {
+ "epoch": 11.55919615552643,
+ "grad_norm": 0.2520856559276581,
+ "learning_rate": 0.0006,
+ "loss": 4.283442497253418,
+ "step": 832
+ },
+ {
+ "epoch": 11.57317605941459,
+ "grad_norm": 0.2825471758842468,
+ "learning_rate": 0.0006,
+ "loss": 4.234672546386719,
+ "step": 833
+ },
+ {
+ "epoch": 11.587155963302752,
+ "grad_norm": 0.27437824010849,
+ "learning_rate": 0.0006,
+ "loss": 4.246068000793457,
+ "step": 834
+ },
+ {
+ "epoch": 11.601135867190912,
+ "grad_norm": 0.2596757411956787,
+ "learning_rate": 0.0006,
+ "loss": 4.278448104858398,
+ "step": 835
+ },
+ {
+ "epoch": 11.615115771079074,
+ "grad_norm": 0.25663474202156067,
+ "learning_rate": 0.0006,
+ "loss": 4.308779716491699,
+ "step": 836
+ },
+ {
+ "epoch": 11.629095674967235,
+ "grad_norm": 0.2546203136444092,
+ "learning_rate": 0.0006,
+ "loss": 4.261247634887695,
+ "step": 837
+ },
+ {
+ "epoch": 11.643075578855395,
+ "grad_norm": 0.24722838401794434,
+ "learning_rate": 0.0006,
+ "loss": 4.275888442993164,
+ "step": 838
+ },
+ {
+ "epoch": 11.657055482743557,
+ "grad_norm": 0.3022806644439697,
+ "learning_rate": 0.0006,
+ "loss": 4.2572407722473145,
+ "step": 839
+ },
+ {
+ "epoch": 11.671035386631717,
+ "grad_norm": 0.31170839071273804,
+ "learning_rate": 0.0006,
+ "loss": 4.26992654800415,
+ "step": 840
+ },
+ {
+ "epoch": 11.685015290519878,
+ "grad_norm": 0.31362825632095337,
+ "learning_rate": 0.0006,
+ "loss": 4.2354655265808105,
+ "step": 841
+ },
+ {
+ "epoch": 11.698995194408038,
+ "grad_norm": 0.28741633892059326,
+ "learning_rate": 0.0006,
+ "loss": 4.263496398925781,
+ "step": 842
+ },
+ {
+ "epoch": 11.7129750982962,
+ "grad_norm": 0.2492494285106659,
+ "learning_rate": 0.0006,
+ "loss": 4.26463508605957,
+ "step": 843
+ },
+ {
+ "epoch": 11.72695500218436,
+ "grad_norm": 0.24324660003185272,
+ "learning_rate": 0.0006,
+ "loss": 4.245428085327148,
+ "step": 844
+ },
+ {
+ "epoch": 11.740934906072521,
+ "grad_norm": 0.23591114580631256,
+ "learning_rate": 0.0006,
+ "loss": 4.249845504760742,
+ "step": 845
+ },
+ {
+ "epoch": 11.754914809960681,
+ "grad_norm": 0.2202281504869461,
+ "learning_rate": 0.0006,
+ "loss": 4.245006084442139,
+ "step": 846
+ },
+ {
+ "epoch": 11.768894713848843,
+ "grad_norm": 0.22117942571640015,
+ "learning_rate": 0.0006,
+ "loss": 4.27812385559082,
+ "step": 847
+ },
+ {
+ "epoch": 11.782874617737003,
+ "grad_norm": 0.26361414790153503,
+ "learning_rate": 0.0006,
+ "loss": 4.250475883483887,
+ "step": 848
+ },
+ {
+ "epoch": 11.796854521625164,
+ "grad_norm": 0.2820321321487427,
+ "learning_rate": 0.0006,
+ "loss": 4.265835762023926,
+ "step": 849
+ },
+ {
+ "epoch": 11.810834425513324,
+ "grad_norm": 0.2078961282968521,
+ "learning_rate": 0.0006,
+ "loss": 4.251298904418945,
+ "step": 850
+ },
+ {
+ "epoch": 11.824814329401486,
+ "grad_norm": 0.21548646688461304,
+ "learning_rate": 0.0006,
+ "loss": 4.288539886474609,
+ "step": 851
+ },
+ {
+ "epoch": 11.838794233289645,
+ "grad_norm": 0.22719401121139526,
+ "learning_rate": 0.0006,
+ "loss": 4.252035140991211,
+ "step": 852
+ },
+ {
+ "epoch": 11.852774137177807,
+ "grad_norm": 0.21628320217132568,
+ "learning_rate": 0.0006,
+ "loss": 4.268622398376465,
+ "step": 853
+ },
+ {
+ "epoch": 11.866754041065967,
+ "grad_norm": 0.20855145156383514,
+ "learning_rate": 0.0006,
+ "loss": 4.253366470336914,
+ "step": 854
+ },
+ {
+ "epoch": 11.880733944954128,
+ "grad_norm": 0.2091914266347885,
+ "learning_rate": 0.0006,
+ "loss": 4.237805366516113,
+ "step": 855
+ },
+ {
+ "epoch": 11.89471384884229,
+ "grad_norm": 0.2000127136707306,
+ "learning_rate": 0.0006,
+ "loss": 4.268559455871582,
+ "step": 856
+ },
+ {
+ "epoch": 11.90869375273045,
+ "grad_norm": 0.21080894768238068,
+ "learning_rate": 0.0006,
+ "loss": 4.208702087402344,
+ "step": 857
+ },
+ {
+ "epoch": 11.922673656618612,
+ "grad_norm": 0.22125796973705292,
+ "learning_rate": 0.0006,
+ "loss": 4.250210762023926,
+ "step": 858
+ },
+ {
+ "epoch": 11.936653560506771,
+ "grad_norm": 0.25905469059944153,
+ "learning_rate": 0.0006,
+ "loss": 4.2263593673706055,
+ "step": 859
+ },
+ {
+ "epoch": 11.950633464394933,
+ "grad_norm": 0.29970306158065796,
+ "learning_rate": 0.0006,
+ "loss": 4.250848770141602,
+ "step": 860
+ },
+ {
+ "epoch": 11.964613368283093,
+ "grad_norm": 0.28155168890953064,
+ "learning_rate": 0.0006,
+ "loss": 4.272709369659424,
+ "step": 861
+ },
+ {
+ "epoch": 11.978593272171254,
+ "grad_norm": 0.23396113514900208,
+ "learning_rate": 0.0006,
+ "loss": 4.2674970626831055,
+ "step": 862
+ },
+ {
+ "epoch": 11.992573176059414,
+ "grad_norm": 0.23619577288627625,
+ "learning_rate": 0.0006,
+ "loss": 4.240267753601074,
+ "step": 863
+ },
+ {
+ "epoch": 12.0,
+ "grad_norm": 0.2779577076435089,
+ "learning_rate": 0.0006,
+ "loss": 4.267625331878662,
+ "step": 864
+ },
+ {
+ "epoch": 12.0,
+ "eval_loss": 4.437657356262207,
+ "eval_runtime": 44.4959,
+ "eval_samples_per_second": 54.881,
+ "eval_steps_per_second": 3.439,
+ "step": 864
+ },
+ {
+ "epoch": 12.013979903888162,
+ "grad_norm": 0.2948288321495056,
+ "learning_rate": 0.0006,
+ "loss": 4.232182502746582,
+ "step": 865
+ },
+ {
+ "epoch": 12.027959807776321,
+ "grad_norm": 0.3715663254261017,
+ "learning_rate": 0.0006,
+ "loss": 4.233771324157715,
+ "step": 866
+ },
+ {
+ "epoch": 12.041939711664483,
+ "grad_norm": 0.38358673453330994,
+ "learning_rate": 0.0006,
+ "loss": 4.208967685699463,
+ "step": 867
+ },
+ {
+ "epoch": 12.055919615552643,
+ "grad_norm": 0.3314538896083832,
+ "learning_rate": 0.0006,
+ "loss": 4.230685234069824,
+ "step": 868
+ },
+ {
+ "epoch": 12.069899519440805,
+ "grad_norm": 0.34171539545059204,
+ "learning_rate": 0.0006,
+ "loss": 4.231358528137207,
+ "step": 869
+ },
+ {
+ "epoch": 12.083879423328964,
+ "grad_norm": 0.3253359794616699,
+ "learning_rate": 0.0006,
+ "loss": 4.276405334472656,
+ "step": 870
+ },
+ {
+ "epoch": 12.097859327217126,
+ "grad_norm": 0.29008302092552185,
+ "learning_rate": 0.0006,
+ "loss": 4.232935905456543,
+ "step": 871
+ },
+ {
+ "epoch": 12.111839231105286,
+ "grad_norm": 0.28490355610847473,
+ "learning_rate": 0.0006,
+ "loss": 4.238036632537842,
+ "step": 872
+ },
+ {
+ "epoch": 12.125819134993447,
+ "grad_norm": 0.28446322679519653,
+ "learning_rate": 0.0006,
+ "loss": 4.210229873657227,
+ "step": 873
+ },
+ {
+ "epoch": 12.139799038881607,
+ "grad_norm": 0.29664531350135803,
+ "learning_rate": 0.0006,
+ "loss": 4.221309185028076,
+ "step": 874
+ },
+ {
+ "epoch": 12.153778942769769,
+ "grad_norm": 0.3083505928516388,
+ "learning_rate": 0.0006,
+ "loss": 4.221837997436523,
+ "step": 875
+ },
+ {
+ "epoch": 12.167758846657929,
+ "grad_norm": 0.3282921314239502,
+ "learning_rate": 0.0006,
+ "loss": 4.236713409423828,
+ "step": 876
+ },
+ {
+ "epoch": 12.18173875054609,
+ "grad_norm": 0.3603622615337372,
+ "learning_rate": 0.0006,
+ "loss": 4.245080947875977,
+ "step": 877
+ },
+ {
+ "epoch": 12.19571865443425,
+ "grad_norm": 0.38070905208587646,
+ "learning_rate": 0.0006,
+ "loss": 4.240756988525391,
+ "step": 878
+ },
+ {
+ "epoch": 12.209698558322412,
+ "grad_norm": 0.34479081630706787,
+ "learning_rate": 0.0006,
+ "loss": 4.200998306274414,
+ "step": 879
+ },
+ {
+ "epoch": 12.223678462210572,
+ "grad_norm": 0.3006879389286041,
+ "learning_rate": 0.0006,
+ "loss": 4.23531436920166,
+ "step": 880
+ },
+ {
+ "epoch": 12.237658366098733,
+ "grad_norm": 0.36835649609565735,
+ "learning_rate": 0.0006,
+ "loss": 4.229718208312988,
+ "step": 881
+ },
+ {
+ "epoch": 12.251638269986893,
+ "grad_norm": 0.4386984407901764,
+ "learning_rate": 0.0006,
+ "loss": 4.241188049316406,
+ "step": 882
+ },
+ {
+ "epoch": 12.265618173875055,
+ "grad_norm": 0.4442787170410156,
+ "learning_rate": 0.0006,
+ "loss": 4.239102840423584,
+ "step": 883
+ },
+ {
+ "epoch": 12.279598077763215,
+ "grad_norm": 0.324411541223526,
+ "learning_rate": 0.0006,
+ "loss": 4.198982238769531,
+ "step": 884
+ },
+ {
+ "epoch": 12.293577981651376,
+ "grad_norm": 0.2824151813983917,
+ "learning_rate": 0.0006,
+ "loss": 4.248816967010498,
+ "step": 885
+ },
+ {
+ "epoch": 12.307557885539538,
+ "grad_norm": 0.31407129764556885,
+ "learning_rate": 0.0006,
+ "loss": 4.2371320724487305,
+ "step": 886
+ },
+ {
+ "epoch": 12.321537789427698,
+ "grad_norm": 0.32920050621032715,
+ "learning_rate": 0.0006,
+ "loss": 4.210432052612305,
+ "step": 887
+ },
+ {
+ "epoch": 12.33551769331586,
+ "grad_norm": 0.315231055021286,
+ "learning_rate": 0.0006,
+ "loss": 4.219416618347168,
+ "step": 888
+ },
+ {
+ "epoch": 12.349497597204019,
+ "grad_norm": 0.30932050943374634,
+ "learning_rate": 0.0006,
+ "loss": 4.225022315979004,
+ "step": 889
+ },
+ {
+ "epoch": 12.36347750109218,
+ "grad_norm": 0.30242064595222473,
+ "learning_rate": 0.0006,
+ "loss": 4.2738518714904785,
+ "step": 890
+ },
+ {
+ "epoch": 12.37745740498034,
+ "grad_norm": 0.2926250994205475,
+ "learning_rate": 0.0006,
+ "loss": 4.231094837188721,
+ "step": 891
+ },
+ {
+ "epoch": 12.391437308868502,
+ "grad_norm": 0.2541215717792511,
+ "learning_rate": 0.0006,
+ "loss": 4.211821556091309,
+ "step": 892
+ },
+ {
+ "epoch": 12.405417212756662,
+ "grad_norm": 0.23693418502807617,
+ "learning_rate": 0.0006,
+ "loss": 4.208099365234375,
+ "step": 893
+ },
+ {
+ "epoch": 12.419397116644824,
+ "grad_norm": 0.22063226997852325,
+ "learning_rate": 0.0006,
+ "loss": 4.211234092712402,
+ "step": 894
+ },
+ {
+ "epoch": 12.433377020532983,
+ "grad_norm": 0.21536271274089813,
+ "learning_rate": 0.0006,
+ "loss": 4.199228286743164,
+ "step": 895
+ },
+ {
+ "epoch": 12.447356924421145,
+ "grad_norm": 0.243179589509964,
+ "learning_rate": 0.0006,
+ "loss": 4.204344749450684,
+ "step": 896
+ },
+ {
+ "epoch": 12.461336828309305,
+ "grad_norm": 0.2299746423959732,
+ "learning_rate": 0.0006,
+ "loss": 4.1565752029418945,
+ "step": 897
+ },
+ {
+ "epoch": 12.475316732197467,
+ "grad_norm": 0.2286847084760666,
+ "learning_rate": 0.0006,
+ "loss": 4.242953777313232,
+ "step": 898
+ },
+ {
+ "epoch": 12.489296636085626,
+ "grad_norm": 0.19463586807250977,
+ "learning_rate": 0.0006,
+ "loss": 4.214809417724609,
+ "step": 899
+ },
+ {
+ "epoch": 12.503276539973788,
+ "grad_norm": 0.1978398710489273,
+ "learning_rate": 0.0006,
+ "loss": 4.159815311431885,
+ "step": 900
+ },
+ {
+ "epoch": 12.517256443861948,
+ "grad_norm": 0.23177850246429443,
+ "learning_rate": 0.0006,
+ "loss": 4.2069902420043945,
+ "step": 901
+ },
+ {
+ "epoch": 12.53123634775011,
+ "grad_norm": 0.2408912032842636,
+ "learning_rate": 0.0006,
+ "loss": 4.206778526306152,
+ "step": 902
+ },
+ {
+ "epoch": 12.54521625163827,
+ "grad_norm": 0.21839919686317444,
+ "learning_rate": 0.0006,
+ "loss": 4.197076320648193,
+ "step": 903
+ },
+ {
+ "epoch": 12.55919615552643,
+ "grad_norm": 0.2053343504667282,
+ "learning_rate": 0.0006,
+ "loss": 4.21247673034668,
+ "step": 904
+ },
+ {
+ "epoch": 12.57317605941459,
+ "grad_norm": 0.19943439960479736,
+ "learning_rate": 0.0006,
+ "loss": 4.176966667175293,
+ "step": 905
+ },
+ {
+ "epoch": 12.587155963302752,
+ "grad_norm": 0.2012074887752533,
+ "learning_rate": 0.0006,
+ "loss": 4.210303783416748,
+ "step": 906
+ },
+ {
+ "epoch": 12.601135867190912,
+ "grad_norm": 0.22240376472473145,
+ "learning_rate": 0.0006,
+ "loss": 4.200625896453857,
+ "step": 907
+ },
+ {
+ "epoch": 12.615115771079074,
+ "grad_norm": 0.21729710698127747,
+ "learning_rate": 0.0006,
+ "loss": 4.2001953125,
+ "step": 908
+ },
+ {
+ "epoch": 12.629095674967235,
+ "grad_norm": 0.22470413148403168,
+ "learning_rate": 0.0006,
+ "loss": 4.197505950927734,
+ "step": 909
+ },
+ {
+ "epoch": 12.643075578855395,
+ "grad_norm": 0.23776157200336456,
+ "learning_rate": 0.0006,
+ "loss": 4.235603332519531,
+ "step": 910
+ },
+ {
+ "epoch": 12.657055482743557,
+ "grad_norm": 0.20616604387760162,
+ "learning_rate": 0.0006,
+ "loss": 4.193584442138672,
+ "step": 911
+ },
+ {
+ "epoch": 12.671035386631717,
+ "grad_norm": 0.1913922131061554,
+ "learning_rate": 0.0006,
+ "loss": 4.209191799163818,
+ "step": 912
+ },
+ {
+ "epoch": 12.685015290519878,
+ "grad_norm": 0.19427193701267242,
+ "learning_rate": 0.0006,
+ "loss": 4.219709396362305,
+ "step": 913
+ },
+ {
+ "epoch": 12.698995194408038,
+ "grad_norm": 0.20976558327674866,
+ "learning_rate": 0.0006,
+ "loss": 4.210859298706055,
+ "step": 914
+ },
+ {
+ "epoch": 12.7129750982962,
+ "grad_norm": 0.21571609377861023,
+ "learning_rate": 0.0006,
+ "loss": 4.189394950866699,
+ "step": 915
+ },
+ {
+ "epoch": 12.72695500218436,
+ "grad_norm": 0.2152620255947113,
+ "learning_rate": 0.0006,
+ "loss": 4.223589897155762,
+ "step": 916
+ },
+ {
+ "epoch": 12.740934906072521,
+ "grad_norm": 0.21867749094963074,
+ "learning_rate": 0.0006,
+ "loss": 4.198590278625488,
+ "step": 917
+ },
+ {
+ "epoch": 12.754914809960681,
+ "grad_norm": 0.22300855815410614,
+ "learning_rate": 0.0006,
+ "loss": 4.188891410827637,
+ "step": 918
+ },
+ {
+ "epoch": 12.768894713848843,
+ "grad_norm": 0.22197802364826202,
+ "learning_rate": 0.0006,
+ "loss": 4.190221309661865,
+ "step": 919
+ },
+ {
+ "epoch": 12.782874617737003,
+ "grad_norm": 0.20003341138362885,
+ "learning_rate": 0.0006,
+ "loss": 4.215453147888184,
+ "step": 920
+ },
+ {
+ "epoch": 12.796854521625164,
+ "grad_norm": 0.19887958467006683,
+ "learning_rate": 0.0006,
+ "loss": 4.18174934387207,
+ "step": 921
+ },
+ {
+ "epoch": 12.810834425513324,
+ "grad_norm": 0.20945803821086884,
+ "learning_rate": 0.0006,
+ "loss": 4.234947204589844,
+ "step": 922
+ },
+ {
+ "epoch": 12.824814329401486,
+ "grad_norm": 0.2253490388393402,
+ "learning_rate": 0.0006,
+ "loss": 4.2177228927612305,
+ "step": 923
+ },
+ {
+ "epoch": 12.838794233289645,
+ "grad_norm": 0.247610405087471,
+ "learning_rate": 0.0006,
+ "loss": 4.2013139724731445,
+ "step": 924
+ },
+ {
+ "epoch": 12.852774137177807,
+ "grad_norm": 0.2792088985443115,
+ "learning_rate": 0.0006,
+ "loss": 4.204774379730225,
+ "step": 925
+ },
+ {
+ "epoch": 12.866754041065967,
+ "grad_norm": 0.2839066982269287,
+ "learning_rate": 0.0006,
+ "loss": 4.186254978179932,
+ "step": 926
+ },
+ {
+ "epoch": 12.880733944954128,
+ "grad_norm": 0.2793181836605072,
+ "learning_rate": 0.0006,
+ "loss": 4.172411918640137,
+ "step": 927
+ },
+ {
+ "epoch": 12.89471384884229,
+ "grad_norm": 0.29506033658981323,
+ "learning_rate": 0.0006,
+ "loss": 4.202878475189209,
+ "step": 928
+ },
+ {
+ "epoch": 12.90869375273045,
+ "grad_norm": 0.2799845039844513,
+ "learning_rate": 0.0006,
+ "loss": 4.1563310623168945,
+ "step": 929
+ },
+ {
+ "epoch": 12.922673656618612,
+ "grad_norm": 0.23972125351428986,
+ "learning_rate": 0.0006,
+ "loss": 4.224601745605469,
+ "step": 930
+ },
+ {
+ "epoch": 12.936653560506771,
+ "grad_norm": 0.21558353304862976,
+ "learning_rate": 0.0006,
+ "loss": 4.167957305908203,
+ "step": 931
+ },
+ {
+ "epoch": 12.950633464394933,
+ "grad_norm": 0.21800188720226288,
+ "learning_rate": 0.0006,
+ "loss": 4.1746039390563965,
+ "step": 932
+ },
+ {
+ "epoch": 12.964613368283093,
+ "grad_norm": 0.2086547315120697,
+ "learning_rate": 0.0006,
+ "loss": 4.188137054443359,
+ "step": 933
+ },
+ {
+ "epoch": 12.978593272171254,
+ "grad_norm": 0.2174186110496521,
+ "learning_rate": 0.0006,
+ "loss": 4.184014320373535,
+ "step": 934
+ },
+ {
+ "epoch": 12.992573176059414,
+ "grad_norm": 0.22755110263824463,
+ "learning_rate": 0.0006,
+ "loss": 4.180912017822266,
+ "step": 935
+ },
+ {
+ "epoch": 13.0,
+ "grad_norm": 0.2735324203968048,
+ "learning_rate": 0.0006,
+ "loss": 4.201578617095947,
+ "step": 936
+ },
+ {
+ "epoch": 13.0,
+ "eval_loss": 4.396903038024902,
+ "eval_runtime": 44.5664,
+ "eval_samples_per_second": 54.795,
+ "eval_steps_per_second": 3.433,
+ "step": 936
+ },
+ {
+ "epoch": 13.013979903888162,
+ "grad_norm": 0.27577832341194153,
+ "learning_rate": 0.0006,
+ "loss": 4.149985313415527,
+ "step": 937
+ },
+ {
+ "epoch": 13.027959807776321,
+ "grad_norm": 0.25817009806632996,
+ "learning_rate": 0.0006,
+ "loss": 4.1526103019714355,
+ "step": 938
+ },
+ {
+ "epoch": 13.041939711664483,
+ "grad_norm": 0.24564379453659058,
+ "learning_rate": 0.0006,
+ "loss": 4.1661152839660645,
+ "step": 939
+ },
+ {
+ "epoch": 13.055919615552643,
+ "grad_norm": 0.2465466856956482,
+ "learning_rate": 0.0006,
+ "loss": 4.152953624725342,
+ "step": 940
+ },
+ {
+ "epoch": 13.069899519440805,
+ "grad_norm": 0.22702018916606903,
+ "learning_rate": 0.0006,
+ "loss": 4.145125389099121,
+ "step": 941
+ },
+ {
+ "epoch": 13.083879423328964,
+ "grad_norm": 0.24350613355636597,
+ "learning_rate": 0.0006,
+ "loss": 4.163095474243164,
+ "step": 942
+ },
+ {
+ "epoch": 13.097859327217126,
+ "grad_norm": 0.2504431903362274,
+ "learning_rate": 0.0006,
+ "loss": 4.136016845703125,
+ "step": 943
+ },
+ {
+ "epoch": 13.111839231105286,
+ "grad_norm": 0.24968865513801575,
+ "learning_rate": 0.0006,
+ "loss": 4.163487911224365,
+ "step": 944
+ },
+ {
+ "epoch": 13.125819134993447,
+ "grad_norm": 0.27164196968078613,
+ "learning_rate": 0.0006,
+ "loss": 4.1194353103637695,
+ "step": 945
+ },
+ {
+ "epoch": 13.139799038881607,
+ "grad_norm": 0.28127020597457886,
+ "learning_rate": 0.0006,
+ "loss": 4.184807300567627,
+ "step": 946
+ },
+ {
+ "epoch": 13.153778942769769,
+ "grad_norm": 0.24574966728687286,
+ "learning_rate": 0.0006,
+ "loss": 4.154998779296875,
+ "step": 947
+ },
+ {
+ "epoch": 13.167758846657929,
+ "grad_norm": 0.22310060262680054,
+ "learning_rate": 0.0006,
+ "loss": 4.182928085327148,
+ "step": 948
+ },
+ {
+ "epoch": 13.18173875054609,
+ "grad_norm": 0.2539508640766144,
+ "learning_rate": 0.0006,
+ "loss": 4.176900386810303,
+ "step": 949
+ },
+ {
+ "epoch": 13.19571865443425,
+ "grad_norm": 0.30925488471984863,
+ "learning_rate": 0.0006,
+ "loss": 4.1760711669921875,
+ "step": 950
+ },
+ {
+ "epoch": 13.209698558322412,
+ "grad_norm": 0.3842967450618744,
+ "learning_rate": 0.0006,
+ "loss": 4.1830949783325195,
+ "step": 951
+ },
+ {
+ "epoch": 13.223678462210572,
+ "grad_norm": 0.35950011014938354,
+ "learning_rate": 0.0006,
+ "loss": 4.131983757019043,
+ "step": 952
+ },
+ {
+ "epoch": 13.237658366098733,
+ "grad_norm": 0.29913705587387085,
+ "learning_rate": 0.0006,
+ "loss": 4.166984558105469,
+ "step": 953
+ },
+ {
+ "epoch": 13.251638269986893,
+ "grad_norm": 0.32008400559425354,
+ "learning_rate": 0.0006,
+ "loss": 4.156482696533203,
+ "step": 954
+ },
+ {
+ "epoch": 13.265618173875055,
+ "grad_norm": 0.3186642825603485,
+ "learning_rate": 0.0006,
+ "loss": 4.1661057472229,
+ "step": 955
+ },
+ {
+ "epoch": 13.279598077763215,
+ "grad_norm": 0.3194582462310791,
+ "learning_rate": 0.0006,
+ "loss": 4.169328689575195,
+ "step": 956
+ },
+ {
+ "epoch": 13.293577981651376,
+ "grad_norm": 0.3133867084980011,
+ "learning_rate": 0.0006,
+ "loss": 4.165459632873535,
+ "step": 957
+ },
+ {
+ "epoch": 13.307557885539538,
+ "grad_norm": 0.3232237696647644,
+ "learning_rate": 0.0006,
+ "loss": 4.2107439041137695,
+ "step": 958
+ },
+ {
+ "epoch": 13.321537789427698,
+ "grad_norm": 0.3133196234703064,
+ "learning_rate": 0.0006,
+ "loss": 4.184182167053223,
+ "step": 959
+ },
+ {
+ "epoch": 13.33551769331586,
+ "grad_norm": 0.296129435300827,
+ "learning_rate": 0.0006,
+ "loss": 4.168312072753906,
+ "step": 960
+ },
+ {
+ "epoch": 13.349497597204019,
+ "grad_norm": 0.2685348391532898,
+ "learning_rate": 0.0006,
+ "loss": 4.159984588623047,
+ "step": 961
+ },
+ {
+ "epoch": 13.36347750109218,
+ "grad_norm": 0.2644975781440735,
+ "learning_rate": 0.0006,
+ "loss": 4.164909362792969,
+ "step": 962
+ },
+ {
+ "epoch": 13.37745740498034,
+ "grad_norm": 0.2712913155555725,
+ "learning_rate": 0.0006,
+ "loss": 4.158056259155273,
+ "step": 963
+ },
+ {
+ "epoch": 13.391437308868502,
+ "grad_norm": 0.2687259316444397,
+ "learning_rate": 0.0006,
+ "loss": 4.182924270629883,
+ "step": 964
+ },
+ {
+ "epoch": 13.405417212756662,
+ "grad_norm": 0.25640392303466797,
+ "learning_rate": 0.0006,
+ "loss": 4.153351783752441,
+ "step": 965
+ },
+ {
+ "epoch": 13.419397116644824,
+ "grad_norm": 0.2646305561065674,
+ "learning_rate": 0.0006,
+ "loss": 4.18464469909668,
+ "step": 966
+ },
+ {
+ "epoch": 13.433377020532983,
+ "grad_norm": 0.24206851422786713,
+ "learning_rate": 0.0006,
+ "loss": 4.127564430236816,
+ "step": 967
+ },
+ {
+ "epoch": 13.447356924421145,
+ "grad_norm": 0.23800471425056458,
+ "learning_rate": 0.0006,
+ "loss": 4.163488388061523,
+ "step": 968
+ },
+ {
+ "epoch": 13.461336828309305,
+ "grad_norm": 0.22957314550876617,
+ "learning_rate": 0.0006,
+ "loss": 4.178133964538574,
+ "step": 969
+ },
+ {
+ "epoch": 13.475316732197467,
+ "grad_norm": 0.22867488861083984,
+ "learning_rate": 0.0006,
+ "loss": 4.159056186676025,
+ "step": 970
+ },
+ {
+ "epoch": 13.489296636085626,
+ "grad_norm": 0.21737419068813324,
+ "learning_rate": 0.0006,
+ "loss": 4.138628005981445,
+ "step": 971
+ },
+ {
+ "epoch": 13.503276539973788,
+ "grad_norm": 0.2319175899028778,
+ "learning_rate": 0.0006,
+ "loss": 4.14644718170166,
+ "step": 972
+ },
+ {
+ "epoch": 13.517256443861948,
+ "grad_norm": 0.2572193443775177,
+ "learning_rate": 0.0006,
+ "loss": 4.175213813781738,
+ "step": 973
+ },
+ {
+ "epoch": 13.53123634775011,
+ "grad_norm": 0.23483099043369293,
+ "learning_rate": 0.0006,
+ "loss": 4.133171558380127,
+ "step": 974
+ },
+ {
+ "epoch": 13.54521625163827,
+ "grad_norm": 0.2071552872657776,
+ "learning_rate": 0.0006,
+ "loss": 4.13730525970459,
+ "step": 975
+ },
+ {
+ "epoch": 13.55919615552643,
+ "grad_norm": 0.23074553906917572,
+ "learning_rate": 0.0006,
+ "loss": 4.175051689147949,
+ "step": 976
+ },
+ {
+ "epoch": 13.57317605941459,
+ "grad_norm": 0.2480078786611557,
+ "learning_rate": 0.0006,
+ "loss": 4.167630672454834,
+ "step": 977
+ },
+ {
+ "epoch": 13.587155963302752,
+ "grad_norm": 0.23444348573684692,
+ "learning_rate": 0.0006,
+ "loss": 4.141780853271484,
+ "step": 978
+ },
+ {
+ "epoch": 13.601135867190912,
+ "grad_norm": 0.2227829396724701,
+ "learning_rate": 0.0006,
+ "loss": 4.157566547393799,
+ "step": 979
+ },
+ {
+ "epoch": 13.615115771079074,
+ "grad_norm": 0.21478354930877686,
+ "learning_rate": 0.0006,
+ "loss": 4.131053447723389,
+ "step": 980
+ },
+ {
+ "epoch": 13.629095674967235,
+ "grad_norm": 0.1978664994239807,
+ "learning_rate": 0.0006,
+ "loss": 4.123660564422607,
+ "step": 981
+ },
+ {
+ "epoch": 13.643075578855395,
+ "grad_norm": 0.19980201125144958,
+ "learning_rate": 0.0006,
+ "loss": 4.174160480499268,
+ "step": 982
+ },
+ {
+ "epoch": 13.657055482743557,
+ "grad_norm": 0.19815555214881897,
+ "learning_rate": 0.0006,
+ "loss": 4.181703090667725,
+ "step": 983
+ },
+ {
+ "epoch": 13.671035386631717,
+ "grad_norm": 0.19524012506008148,
+ "learning_rate": 0.0006,
+ "loss": 4.163766860961914,
+ "step": 984
+ },
+ {
+ "epoch": 13.685015290519878,
+ "grad_norm": 0.2286096215248108,
+ "learning_rate": 0.0006,
+ "loss": 4.172213554382324,
+ "step": 985
+ },
+ {
+ "epoch": 13.698995194408038,
+ "grad_norm": 0.2210782766342163,
+ "learning_rate": 0.0006,
+ "loss": 4.187033653259277,
+ "step": 986
+ },
+ {
+ "epoch": 13.7129750982962,
+ "grad_norm": 0.21874216198921204,
+ "learning_rate": 0.0006,
+ "loss": 4.125125885009766,
+ "step": 987
+ },
+ {
+ "epoch": 13.72695500218436,
+ "grad_norm": 0.22848057746887207,
+ "learning_rate": 0.0006,
+ "loss": 4.153496742248535,
+ "step": 988
+ },
+ {
+ "epoch": 13.740934906072521,
+ "grad_norm": 0.2250450700521469,
+ "learning_rate": 0.0006,
+ "loss": 4.149165630340576,
+ "step": 989
+ },
+ {
+ "epoch": 13.754914809960681,
+ "grad_norm": 0.21443772315979004,
+ "learning_rate": 0.0006,
+ "loss": 4.1528825759887695,
+ "step": 990
+ },
+ {
+ "epoch": 13.768894713848843,
+ "grad_norm": 0.21927927434444427,
+ "learning_rate": 0.0006,
+ "loss": 4.146831512451172,
+ "step": 991
+ },
+ {
+ "epoch": 13.782874617737003,
+ "grad_norm": 0.2413124144077301,
+ "learning_rate": 0.0006,
+ "loss": 4.136909008026123,
+ "step": 992
+ },
+ {
+ "epoch": 13.796854521625164,
+ "grad_norm": 0.2603479325771332,
+ "learning_rate": 0.0006,
+ "loss": 4.12525749206543,
+ "step": 993
+ },
+ {
+ "epoch": 13.810834425513324,
+ "grad_norm": 0.26246970891952515,
+ "learning_rate": 0.0006,
+ "loss": 4.114049434661865,
+ "step": 994
+ },
+ {
+ "epoch": 13.824814329401486,
+ "grad_norm": 0.27031877636909485,
+ "learning_rate": 0.0006,
+ "loss": 4.1646552085876465,
+ "step": 995
+ },
+ {
+ "epoch": 13.838794233289645,
+ "grad_norm": 0.2499857395887375,
+ "learning_rate": 0.0006,
+ "loss": 4.139284133911133,
+ "step": 996
+ },
+ {
+ "epoch": 13.852774137177807,
+ "grad_norm": 0.22026537358760834,
+ "learning_rate": 0.0006,
+ "loss": 4.142191410064697,
+ "step": 997
+ },
+ {
+ "epoch": 13.866754041065967,
+ "grad_norm": 0.23738551139831543,
+ "learning_rate": 0.0006,
+ "loss": 4.1422882080078125,
+ "step": 998
+ },
+ {
+ "epoch": 13.880733944954128,
+ "grad_norm": 0.2416357398033142,
+ "learning_rate": 0.0006,
+ "loss": 4.14063835144043,
+ "step": 999
+ },
+ {
+ "epoch": 13.89471384884229,
+ "grad_norm": 0.33822184801101685,
+ "learning_rate": 0.0006,
+ "loss": 4.12839412689209,
+ "step": 1000
+ },
+ {
+ "epoch": 13.90869375273045,
+ "grad_norm": 0.3409678339958191,
+ "learning_rate": 0.0006,
+ "loss": 4.145351886749268,
+ "step": 1001
+ },
+ {
+ "epoch": 13.922673656618612,
+ "grad_norm": 0.2467597872018814,
+ "learning_rate": 0.0006,
+ "loss": 4.155339241027832,
+ "step": 1002
+ },
+ {
+ "epoch": 13.936653560506771,
+ "grad_norm": 0.2314649075269699,
+ "learning_rate": 0.0006,
+ "loss": 4.130176067352295,
+ "step": 1003
+ },
+ {
+ "epoch": 13.950633464394933,
+ "grad_norm": 0.23701290786266327,
+ "learning_rate": 0.0006,
+ "loss": 4.19205379486084,
+ "step": 1004
+ },
+ {
+ "epoch": 13.964613368283093,
+ "grad_norm": 0.2466491460800171,
+ "learning_rate": 0.0006,
+ "loss": 4.118908882141113,
+ "step": 1005
+ },
+ {
+ "epoch": 13.978593272171254,
+ "grad_norm": 0.23746836185455322,
+ "learning_rate": 0.0006,
+ "loss": 4.16111946105957,
+ "step": 1006
+ },
+ {
+ "epoch": 13.992573176059414,
+ "grad_norm": 0.24497751891613007,
+ "learning_rate": 0.0006,
+ "loss": 4.148624420166016,
+ "step": 1007
+ },
+ {
+ "epoch": 14.0,
+ "grad_norm": 0.25735899806022644,
+ "learning_rate": 0.0006,
+ "loss": 4.12002420425415,
+ "step": 1008
+ },
+ {
+ "epoch": 14.0,
+ "eval_loss": 4.335351467132568,
+ "eval_runtime": 44.0523,
+ "eval_samples_per_second": 55.434,
+ "eval_steps_per_second": 3.473,
+ "step": 1008
+ },
+ {
+ "epoch": 14.013979903888162,
+ "grad_norm": 0.24570082128047943,
+ "learning_rate": 0.0006,
+ "loss": 4.1036176681518555,
+ "step": 1009
+ },
+ {
+ "epoch": 14.027959807776321,
+ "grad_norm": 0.2525855302810669,
+ "learning_rate": 0.0006,
+ "loss": 4.142077445983887,
+ "step": 1010
+ },
+ {
+ "epoch": 14.041939711664483,
+ "grad_norm": 0.2701111435890198,
+ "learning_rate": 0.0006,
+ "loss": 4.096988677978516,
+ "step": 1011
+ },
+ {
+ "epoch": 14.055919615552643,
+ "grad_norm": 0.28173309564590454,
+ "learning_rate": 0.0006,
+ "loss": 4.148448944091797,
+ "step": 1012
+ },
+ {
+ "epoch": 14.069899519440805,
+ "grad_norm": 0.2651294469833374,
+ "learning_rate": 0.0006,
+ "loss": 4.121731281280518,
+ "step": 1013
+ },
+ {
+ "epoch": 14.083879423328964,
+ "grad_norm": 0.21160121262073517,
+ "learning_rate": 0.0006,
+ "loss": 4.108980178833008,
+ "step": 1014
+ },
+ {
+ "epoch": 14.097859327217126,
+ "grad_norm": 0.24786953628063202,
+ "learning_rate": 0.0006,
+ "loss": 4.133942604064941,
+ "step": 1015
+ },
+ {
+ "epoch": 14.111839231105286,
+ "grad_norm": 0.2722747027873993,
+ "learning_rate": 0.0006,
+ "loss": 4.115242958068848,
+ "step": 1016
+ },
+ {
+ "epoch": 14.125819134993447,
+ "grad_norm": 0.273360013961792,
+ "learning_rate": 0.0006,
+ "loss": 4.059296607971191,
+ "step": 1017
+ },
+ {
+ "epoch": 14.139799038881607,
+ "grad_norm": 0.2541784942150116,
+ "learning_rate": 0.0006,
+ "loss": 4.118365287780762,
+ "step": 1018
+ },
+ {
+ "epoch": 14.153778942769769,
+ "grad_norm": 0.23806381225585938,
+ "learning_rate": 0.0006,
+ "loss": 4.102812767028809,
+ "step": 1019
+ },
+ {
+ "epoch": 14.167758846657929,
+ "grad_norm": 0.2541005313396454,
+ "learning_rate": 0.0006,
+ "loss": 4.093264579772949,
+ "step": 1020
+ },
+ {
+ "epoch": 14.18173875054609,
+ "grad_norm": 0.2619539499282837,
+ "learning_rate": 0.0006,
+ "loss": 4.114917278289795,
+ "step": 1021
+ },
+ {
+ "epoch": 14.19571865443425,
+ "grad_norm": 0.2466963529586792,
+ "learning_rate": 0.0006,
+ "loss": 4.098258972167969,
+ "step": 1022
+ },
+ {
+ "epoch": 14.209698558322412,
+ "grad_norm": 0.24341611564159393,
+ "learning_rate": 0.0006,
+ "loss": 4.109346389770508,
+ "step": 1023
+ },
+ {
+ "epoch": 14.223678462210572,
+ "grad_norm": 0.23977765440940857,
+ "learning_rate": 0.0006,
+ "loss": 4.106716156005859,
+ "step": 1024
+ },
+ {
+ "epoch": 14.237658366098733,
+ "grad_norm": 0.253528356552124,
+ "learning_rate": 0.0006,
+ "loss": 4.102226257324219,
+ "step": 1025
+ },
+ {
+ "epoch": 14.251638269986893,
+ "grad_norm": 0.26954543590545654,
+ "learning_rate": 0.0006,
+ "loss": 4.107413291931152,
+ "step": 1026
+ },
+ {
+ "epoch": 14.265618173875055,
+ "grad_norm": 0.2610514760017395,
+ "learning_rate": 0.0006,
+ "loss": 4.110824108123779,
+ "step": 1027
+ },
+ {
+ "epoch": 14.279598077763215,
+ "grad_norm": 0.2579168677330017,
+ "learning_rate": 0.0006,
+ "loss": 4.082438945770264,
+ "step": 1028
+ },
+ {
+ "epoch": 14.293577981651376,
+ "grad_norm": 0.26916536688804626,
+ "learning_rate": 0.0006,
+ "loss": 4.075734615325928,
+ "step": 1029
+ },
+ {
+ "epoch": 14.307557885539538,
+ "grad_norm": 0.2998618185520172,
+ "learning_rate": 0.0006,
+ "loss": 4.088419437408447,
+ "step": 1030
+ },
+ {
+ "epoch": 14.321537789427698,
+ "grad_norm": 0.3162737190723419,
+ "learning_rate": 0.0006,
+ "loss": 4.125833034515381,
+ "step": 1031
+ },
+ {
+ "epoch": 14.33551769331586,
+ "grad_norm": 0.318601131439209,
+ "learning_rate": 0.0006,
+ "loss": 4.077424049377441,
+ "step": 1032
+ },
+ {
+ "epoch": 14.349497597204019,
+ "grad_norm": 0.32113415002822876,
+ "learning_rate": 0.0006,
+ "loss": 4.113360404968262,
+ "step": 1033
+ },
+ {
+ "epoch": 14.36347750109218,
+ "grad_norm": 0.3150886297225952,
+ "learning_rate": 0.0006,
+ "loss": 4.100013732910156,
+ "step": 1034
+ },
+ {
+ "epoch": 14.37745740498034,
+ "grad_norm": 0.29279956221580505,
+ "learning_rate": 0.0006,
+ "loss": 4.136394500732422,
+ "step": 1035
+ },
+ {
+ "epoch": 14.391437308868502,
+ "grad_norm": 0.28532543778419495,
+ "learning_rate": 0.0006,
+ "loss": 4.138948440551758,
+ "step": 1036
+ },
+ {
+ "epoch": 14.405417212756662,
+ "grad_norm": 0.2825978398323059,
+ "learning_rate": 0.0006,
+ "loss": 4.112217903137207,
+ "step": 1037
+ },
+ {
+ "epoch": 14.419397116644824,
+ "grad_norm": 0.2891198694705963,
+ "learning_rate": 0.0006,
+ "loss": 4.102682113647461,
+ "step": 1038
+ },
+ {
+ "epoch": 14.433377020532983,
+ "grad_norm": 0.2917391061782837,
+ "learning_rate": 0.0006,
+ "loss": 4.120752811431885,
+ "step": 1039
+ },
+ {
+ "epoch": 14.447356924421145,
+ "grad_norm": 0.2589806914329529,
+ "learning_rate": 0.0006,
+ "loss": 4.130519390106201,
+ "step": 1040
+ },
+ {
+ "epoch": 14.461336828309305,
+ "grad_norm": 0.2674788534641266,
+ "learning_rate": 0.0006,
+ "loss": 4.130382537841797,
+ "step": 1041
+ },
+ {
+ "epoch": 14.475316732197467,
+ "grad_norm": 0.2820362150669098,
+ "learning_rate": 0.0006,
+ "loss": 4.13947868347168,
+ "step": 1042
+ },
+ {
+ "epoch": 14.489296636085626,
+ "grad_norm": 0.2650109529495239,
+ "learning_rate": 0.0006,
+ "loss": 4.130346775054932,
+ "step": 1043
+ },
+ {
+ "epoch": 14.503276539973788,
+ "grad_norm": 0.29137638211250305,
+ "learning_rate": 0.0006,
+ "loss": 4.055751800537109,
+ "step": 1044
+ },
+ {
+ "epoch": 14.517256443861948,
+ "grad_norm": 0.3232433497905731,
+ "learning_rate": 0.0006,
+ "loss": 4.114810943603516,
+ "step": 1045
+ },
+ {
+ "epoch": 14.53123634775011,
+ "grad_norm": 0.2724473476409912,
+ "learning_rate": 0.0006,
+ "loss": 4.088351249694824,
+ "step": 1046
+ },
+ {
+ "epoch": 14.54521625163827,
+ "grad_norm": 0.23994430899620056,
+ "learning_rate": 0.0006,
+ "loss": 4.110936164855957,
+ "step": 1047
+ },
+ {
+ "epoch": 14.55919615552643,
+ "grad_norm": 0.2422720044851303,
+ "learning_rate": 0.0006,
+ "loss": 4.132844924926758,
+ "step": 1048
+ },
+ {
+ "epoch": 14.57317605941459,
+ "grad_norm": 0.21148815751075745,
+ "learning_rate": 0.0006,
+ "loss": 4.102499961853027,
+ "step": 1049
+ },
+ {
+ "epoch": 14.587155963302752,
+ "grad_norm": 0.22221639752388,
+ "learning_rate": 0.0006,
+ "loss": 4.126241683959961,
+ "step": 1050
+ },
+ {
+ "epoch": 14.601135867190912,
+ "grad_norm": 0.2538735866546631,
+ "learning_rate": 0.0006,
+ "loss": 4.116817951202393,
+ "step": 1051
+ },
+ {
+ "epoch": 14.615115771079074,
+ "grad_norm": 0.2555900514125824,
+ "learning_rate": 0.0006,
+ "loss": 4.106309413909912,
+ "step": 1052
+ },
+ {
+ "epoch": 14.629095674967235,
+ "grad_norm": 0.24753783643245697,
+ "learning_rate": 0.0006,
+ "loss": 4.1015119552612305,
+ "step": 1053
+ },
+ {
+ "epoch": 14.643075578855395,
+ "grad_norm": 0.238885298371315,
+ "learning_rate": 0.0006,
+ "loss": 4.120419502258301,
+ "step": 1054
+ },
+ {
+ "epoch": 14.657055482743557,
+ "grad_norm": 0.22693610191345215,
+ "learning_rate": 0.0006,
+ "loss": 4.084968566894531,
+ "step": 1055
+ },
+ {
+ "epoch": 14.671035386631717,
+ "grad_norm": 0.2100025862455368,
+ "learning_rate": 0.0006,
+ "loss": 4.108001708984375,
+ "step": 1056
+ },
+ {
+ "epoch": 14.685015290519878,
+ "grad_norm": 0.20437054336071014,
+ "learning_rate": 0.0006,
+ "loss": 4.151417255401611,
+ "step": 1057
+ },
+ {
+ "epoch": 14.698995194408038,
+ "grad_norm": 0.1926720291376114,
+ "learning_rate": 0.0006,
+ "loss": 4.091334342956543,
+ "step": 1058
+ },
+ {
+ "epoch": 14.7129750982962,
+ "grad_norm": 0.2120140641927719,
+ "learning_rate": 0.0006,
+ "loss": 4.111706256866455,
+ "step": 1059
+ },
+ {
+ "epoch": 14.72695500218436,
+ "grad_norm": 0.22877076268196106,
+ "learning_rate": 0.0006,
+ "loss": 4.123166084289551,
+ "step": 1060
+ },
+ {
+ "epoch": 14.740934906072521,
+ "grad_norm": 0.22149473428726196,
+ "learning_rate": 0.0006,
+ "loss": 4.099740028381348,
+ "step": 1061
+ },
+ {
+ "epoch": 14.754914809960681,
+ "grad_norm": 0.2351604402065277,
+ "learning_rate": 0.0006,
+ "loss": 4.066174507141113,
+ "step": 1062
+ },
+ {
+ "epoch": 14.768894713848843,
+ "grad_norm": 0.22895802557468414,
+ "learning_rate": 0.0006,
+ "loss": 4.101897239685059,
+ "step": 1063
+ },
+ {
+ "epoch": 14.782874617737003,
+ "grad_norm": 0.22050750255584717,
+ "learning_rate": 0.0006,
+ "loss": 4.122953414916992,
+ "step": 1064
+ },
+ {
+ "epoch": 14.796854521625164,
+ "grad_norm": 0.23255324363708496,
+ "learning_rate": 0.0006,
+ "loss": 4.11297607421875,
+ "step": 1065
+ },
+ {
+ "epoch": 14.810834425513324,
+ "grad_norm": 0.24522703886032104,
+ "learning_rate": 0.0006,
+ "loss": 4.131030082702637,
+ "step": 1066
+ },
+ {
+ "epoch": 14.824814329401486,
+ "grad_norm": 0.2492702752351761,
+ "learning_rate": 0.0006,
+ "loss": 4.076324939727783,
+ "step": 1067
+ },
+ {
+ "epoch": 14.838794233289645,
+ "grad_norm": 0.24410948157310486,
+ "learning_rate": 0.0006,
+ "loss": 4.109020709991455,
+ "step": 1068
+ },
+ {
+ "epoch": 14.852774137177807,
+ "grad_norm": 0.2463168203830719,
+ "learning_rate": 0.0006,
+ "loss": 4.135679244995117,
+ "step": 1069
+ },
+ {
+ "epoch": 14.866754041065967,
+ "grad_norm": 0.2563146650791168,
+ "learning_rate": 0.0006,
+ "loss": 4.0958027839660645,
+ "step": 1070
+ },
+ {
+ "epoch": 14.880733944954128,
+ "grad_norm": 0.261167049407959,
+ "learning_rate": 0.0006,
+ "loss": 4.114803314208984,
+ "step": 1071
+ },
+ {
+ "epoch": 14.89471384884229,
+ "grad_norm": 0.2593795955181122,
+ "learning_rate": 0.0006,
+ "loss": 4.1210618019104,
+ "step": 1072
+ },
+ {
+ "epoch": 14.90869375273045,
+ "grad_norm": 0.27184173464775085,
+ "learning_rate": 0.0006,
+ "loss": 4.095145225524902,
+ "step": 1073
+ },
+ {
+ "epoch": 14.922673656618612,
+ "grad_norm": 0.25289732217788696,
+ "learning_rate": 0.0006,
+ "loss": 4.107388973236084,
+ "step": 1074
+ },
+ {
+ "epoch": 14.936653560506771,
+ "grad_norm": 0.2176840454339981,
+ "learning_rate": 0.0006,
+ "loss": 4.105966567993164,
+ "step": 1075
+ },
+ {
+ "epoch": 14.950633464394933,
+ "grad_norm": 0.20930173993110657,
+ "learning_rate": 0.0006,
+ "loss": 4.126853942871094,
+ "step": 1076
+ },
+ {
+ "epoch": 14.964613368283093,
+ "grad_norm": 0.20850051939487457,
+ "learning_rate": 0.0006,
+ "loss": 4.074934959411621,
+ "step": 1077
+ },
+ {
+ "epoch": 14.978593272171254,
+ "grad_norm": 0.21987544000148773,
+ "learning_rate": 0.0006,
+ "loss": 4.123321533203125,
+ "step": 1078
+ },
+ {
+ "epoch": 14.992573176059414,
+ "grad_norm": 0.23821689188480377,
+ "learning_rate": 0.0006,
+ "loss": 4.082647323608398,
+ "step": 1079
+ },
+ {
+ "epoch": 15.0,
+ "grad_norm": 0.2590881288051605,
+ "learning_rate": 0.0006,
+ "loss": 4.113482475280762,
+ "step": 1080
+ },
+ {
+ "epoch": 15.0,
+ "eval_loss": 4.286936283111572,
+ "eval_runtime": 44.2665,
+ "eval_samples_per_second": 55.166,
+ "eval_steps_per_second": 3.456,
+ "step": 1080
+ },
+ {
+ "epoch": 15.013979903888162,
+ "grad_norm": 0.27885961532592773,
+ "learning_rate": 0.0006,
+ "loss": 4.0825958251953125,
+ "step": 1081
+ },
+ {
+ "epoch": 15.027959807776321,
+ "grad_norm": 0.2751246690750122,
+ "learning_rate": 0.0006,
+ "loss": 4.049782752990723,
+ "step": 1082
+ },
+ {
+ "epoch": 15.041939711664483,
+ "grad_norm": 0.25238561630249023,
+ "learning_rate": 0.0006,
+ "loss": 4.067366600036621,
+ "step": 1083
+ },
+ {
+ "epoch": 15.055919615552643,
+ "grad_norm": 0.27481040358543396,
+ "learning_rate": 0.0006,
+ "loss": 4.089946746826172,
+ "step": 1084
+ },
+ {
+ "epoch": 15.069899519440805,
+ "grad_norm": 0.2666703164577484,
+ "learning_rate": 0.0006,
+ "loss": 4.071957588195801,
+ "step": 1085
+ },
+ {
+ "epoch": 15.083879423328964,
+ "grad_norm": 0.2532065212726593,
+ "learning_rate": 0.0006,
+ "loss": 4.091561794281006,
+ "step": 1086
+ },
+ {
+ "epoch": 15.097859327217126,
+ "grad_norm": 0.23562374711036682,
+ "learning_rate": 0.0006,
+ "loss": 4.074953079223633,
+ "step": 1087
+ },
+ {
+ "epoch": 15.111839231105286,
+ "grad_norm": 0.2498065084218979,
+ "learning_rate": 0.0006,
+ "loss": 4.056004047393799,
+ "step": 1088
+ },
+ {
+ "epoch": 15.125819134993447,
+ "grad_norm": 0.257046639919281,
+ "learning_rate": 0.0006,
+ "loss": 4.044149875640869,
+ "step": 1089
+ },
+ {
+ "epoch": 15.139799038881607,
+ "grad_norm": 0.2417808622121811,
+ "learning_rate": 0.0006,
+ "loss": 4.071811676025391,
+ "step": 1090
+ },
+ {
+ "epoch": 15.153778942769769,
+ "grad_norm": 0.24742013216018677,
+ "learning_rate": 0.0006,
+ "loss": 4.081482887268066,
+ "step": 1091
+ },
+ {
+ "epoch": 15.167758846657929,
+ "grad_norm": 0.2610231637954712,
+ "learning_rate": 0.0006,
+ "loss": 4.06953763961792,
+ "step": 1092
+ },
+ {
+ "epoch": 15.18173875054609,
+ "grad_norm": 0.24688200652599335,
+ "learning_rate": 0.0006,
+ "loss": 4.079700469970703,
+ "step": 1093
+ },
+ {
+ "epoch": 15.19571865443425,
+ "grad_norm": 0.2650167942047119,
+ "learning_rate": 0.0006,
+ "loss": 4.082088947296143,
+ "step": 1094
+ },
+ {
+ "epoch": 15.209698558322412,
+ "grad_norm": 0.25913330912590027,
+ "learning_rate": 0.0006,
+ "loss": 4.081713676452637,
+ "step": 1095
+ },
+ {
+ "epoch": 15.223678462210572,
+ "grad_norm": 0.2547631561756134,
+ "learning_rate": 0.0006,
+ "loss": 4.073573112487793,
+ "step": 1096
+ },
+ {
+ "epoch": 15.237658366098733,
+ "grad_norm": 0.2732609510421753,
+ "learning_rate": 0.0006,
+ "loss": 4.10186767578125,
+ "step": 1097
+ },
+ {
+ "epoch": 15.251638269986893,
+ "grad_norm": 0.2990017533302307,
+ "learning_rate": 0.0006,
+ "loss": 4.085466384887695,
+ "step": 1098
+ },
+ {
+ "epoch": 15.265618173875055,
+ "grad_norm": 0.30252209305763245,
+ "learning_rate": 0.0006,
+ "loss": 4.077337265014648,
+ "step": 1099
+ },
+ {
+ "epoch": 15.279598077763215,
+ "grad_norm": 0.30046045780181885,
+ "learning_rate": 0.0006,
+ "loss": 4.0895891189575195,
+ "step": 1100
+ },
+ {
+ "epoch": 15.293577981651376,
+ "grad_norm": 0.2779843211174011,
+ "learning_rate": 0.0006,
+ "loss": 4.060354709625244,
+ "step": 1101
+ },
+ {
+ "epoch": 15.307557885539538,
+ "grad_norm": 0.26914986968040466,
+ "learning_rate": 0.0006,
+ "loss": 4.07314395904541,
+ "step": 1102
+ },
+ {
+ "epoch": 15.321537789427698,
+ "grad_norm": 0.24605873227119446,
+ "learning_rate": 0.0006,
+ "loss": 4.051377296447754,
+ "step": 1103
+ },
+ {
+ "epoch": 15.33551769331586,
+ "grad_norm": 0.25634095072746277,
+ "learning_rate": 0.0006,
+ "loss": 4.082427024841309,
+ "step": 1104
+ },
+ {
+ "epoch": 15.349497597204019,
+ "grad_norm": 0.2888158857822418,
+ "learning_rate": 0.0006,
+ "loss": 4.074253082275391,
+ "step": 1105
+ },
+ {
+ "epoch": 15.36347750109218,
+ "grad_norm": 0.2758261561393738,
+ "learning_rate": 0.0006,
+ "loss": 4.08344841003418,
+ "step": 1106
+ },
+ {
+ "epoch": 15.37745740498034,
+ "grad_norm": 0.26937270164489746,
+ "learning_rate": 0.0006,
+ "loss": 4.063424587249756,
+ "step": 1107
+ },
+ {
+ "epoch": 15.391437308868502,
+ "grad_norm": 0.2739955484867096,
+ "learning_rate": 0.0006,
+ "loss": 4.08005952835083,
+ "step": 1108
+ },
+ {
+ "epoch": 15.405417212756662,
+ "grad_norm": 0.2635386288166046,
+ "learning_rate": 0.0006,
+ "loss": 4.087360382080078,
+ "step": 1109
+ },
+ {
+ "epoch": 15.419397116644824,
+ "grad_norm": 0.2619768977165222,
+ "learning_rate": 0.0006,
+ "loss": 4.072653770446777,
+ "step": 1110
+ },
+ {
+ "epoch": 15.433377020532983,
+ "grad_norm": 0.24154804646968842,
+ "learning_rate": 0.0006,
+ "loss": 4.084464073181152,
+ "step": 1111
+ },
+ {
+ "epoch": 15.447356924421145,
+ "grad_norm": 0.24236027896404266,
+ "learning_rate": 0.0006,
+ "loss": 4.078777313232422,
+ "step": 1112
+ },
+ {
+ "epoch": 15.461336828309305,
+ "grad_norm": 0.24653038382530212,
+ "learning_rate": 0.0006,
+ "loss": 4.075024604797363,
+ "step": 1113
+ },
+ {
+ "epoch": 15.475316732197467,
+ "grad_norm": 0.27106523513793945,
+ "learning_rate": 0.0006,
+ "loss": 4.060937881469727,
+ "step": 1114
+ },
+ {
+ "epoch": 15.489296636085626,
+ "grad_norm": 0.25109633803367615,
+ "learning_rate": 0.0006,
+ "loss": 4.081971168518066,
+ "step": 1115
+ },
+ {
+ "epoch": 15.503276539973788,
+ "grad_norm": 0.23452287912368774,
+ "learning_rate": 0.0006,
+ "loss": 4.0762834548950195,
+ "step": 1116
+ },
+ {
+ "epoch": 15.517256443861948,
+ "grad_norm": 0.25415024161338806,
+ "learning_rate": 0.0006,
+ "loss": 4.069386959075928,
+ "step": 1117
+ },
+ {
+ "epoch": 15.53123634775011,
+ "grad_norm": 0.25448229908943176,
+ "learning_rate": 0.0006,
+ "loss": 4.075098514556885,
+ "step": 1118
+ },
+ {
+ "epoch": 15.54521625163827,
+ "grad_norm": 0.25679755210876465,
+ "learning_rate": 0.0006,
+ "loss": 4.097431182861328,
+ "step": 1119
+ },
+ {
+ "epoch": 15.55919615552643,
+ "grad_norm": 0.25973212718963623,
+ "learning_rate": 0.0006,
+ "loss": 4.058948516845703,
+ "step": 1120
+ },
+ {
+ "epoch": 15.57317605941459,
+ "grad_norm": 0.24511456489562988,
+ "learning_rate": 0.0006,
+ "loss": 4.092263698577881,
+ "step": 1121
+ },
+ {
+ "epoch": 15.587155963302752,
+ "grad_norm": 0.22949442267417908,
+ "learning_rate": 0.0006,
+ "loss": 4.0526604652404785,
+ "step": 1122
+ },
+ {
+ "epoch": 15.601135867190912,
+ "grad_norm": 0.22486285865306854,
+ "learning_rate": 0.0006,
+ "loss": 4.051939010620117,
+ "step": 1123
+ },
+ {
+ "epoch": 15.615115771079074,
+ "grad_norm": 0.22183601558208466,
+ "learning_rate": 0.0006,
+ "loss": 4.065430641174316,
+ "step": 1124
+ },
+ {
+ "epoch": 15.629095674967235,
+ "grad_norm": 0.2531328797340393,
+ "learning_rate": 0.0006,
+ "loss": 4.069165229797363,
+ "step": 1125
+ },
+ {
+ "epoch": 15.643075578855395,
+ "grad_norm": 0.24403320252895355,
+ "learning_rate": 0.0006,
+ "loss": 4.055041790008545,
+ "step": 1126
+ },
+ {
+ "epoch": 15.657055482743557,
+ "grad_norm": 0.24504756927490234,
+ "learning_rate": 0.0006,
+ "loss": 4.035850524902344,
+ "step": 1127
+ },
+ {
+ "epoch": 15.671035386631717,
+ "grad_norm": 0.23812057077884674,
+ "learning_rate": 0.0006,
+ "loss": 4.049278259277344,
+ "step": 1128
+ },
+ {
+ "epoch": 15.685015290519878,
+ "grad_norm": 0.23694153130054474,
+ "learning_rate": 0.0006,
+ "loss": 4.065816402435303,
+ "step": 1129
+ },
+ {
+ "epoch": 15.698995194408038,
+ "grad_norm": 0.23252786695957184,
+ "learning_rate": 0.0006,
+ "loss": 4.05952262878418,
+ "step": 1130
+ },
+ {
+ "epoch": 15.7129750982962,
+ "grad_norm": 0.2243805080652237,
+ "learning_rate": 0.0006,
+ "loss": 4.058291435241699,
+ "step": 1131
+ },
+ {
+ "epoch": 15.72695500218436,
+ "grad_norm": 0.2200988084077835,
+ "learning_rate": 0.0006,
+ "loss": 4.040788650512695,
+ "step": 1132
+ },
+ {
+ "epoch": 15.740934906072521,
+ "grad_norm": 0.21460631489753723,
+ "learning_rate": 0.0006,
+ "loss": 4.072552680969238,
+ "step": 1133
+ },
+ {
+ "epoch": 15.754914809960681,
+ "grad_norm": 0.2056441456079483,
+ "learning_rate": 0.0006,
+ "loss": 4.059467315673828,
+ "step": 1134
+ },
+ {
+ "epoch": 15.768894713848843,
+ "grad_norm": 0.2068045437335968,
+ "learning_rate": 0.0006,
+ "loss": 4.063803195953369,
+ "step": 1135
+ },
+ {
+ "epoch": 15.782874617737003,
+ "grad_norm": 0.21307601034641266,
+ "learning_rate": 0.0006,
+ "loss": 4.093092918395996,
+ "step": 1136
+ },
+ {
+ "epoch": 15.796854521625164,
+ "grad_norm": 0.20729634165763855,
+ "learning_rate": 0.0006,
+ "loss": 4.066030502319336,
+ "step": 1137
+ },
+ {
+ "epoch": 15.810834425513324,
+ "grad_norm": 0.2097514122724533,
+ "learning_rate": 0.0006,
+ "loss": 4.077326774597168,
+ "step": 1138
+ },
+ {
+ "epoch": 15.824814329401486,
+ "grad_norm": 0.21884000301361084,
+ "learning_rate": 0.0006,
+ "loss": 4.0595598220825195,
+ "step": 1139
+ },
+ {
+ "epoch": 15.838794233289645,
+ "grad_norm": 0.22220250964164734,
+ "learning_rate": 0.0006,
+ "loss": 4.061574459075928,
+ "step": 1140
+ },
+ {
+ "epoch": 15.852774137177807,
+ "grad_norm": 0.23189949989318848,
+ "learning_rate": 0.0006,
+ "loss": 4.0504045486450195,
+ "step": 1141
+ },
+ {
+ "epoch": 15.866754041065967,
+ "grad_norm": 0.226649671792984,
+ "learning_rate": 0.0006,
+ "loss": 4.060986518859863,
+ "step": 1142
+ },
+ {
+ "epoch": 15.880733944954128,
+ "grad_norm": 0.2456834763288498,
+ "learning_rate": 0.0006,
+ "loss": 4.038525581359863,
+ "step": 1143
+ },
+ {
+ "epoch": 15.89471384884229,
+ "grad_norm": 0.2818352282047272,
+ "learning_rate": 0.0006,
+ "loss": 4.062709331512451,
+ "step": 1144
+ },
+ {
+ "epoch": 15.90869375273045,
+ "grad_norm": 0.2850170135498047,
+ "learning_rate": 0.0006,
+ "loss": 4.0683274269104,
+ "step": 1145
+ },
+ {
+ "epoch": 15.922673656618612,
+ "grad_norm": 0.27691730856895447,
+ "learning_rate": 0.0006,
+ "loss": 4.076540470123291,
+ "step": 1146
+ },
+ {
+ "epoch": 15.936653560506771,
+ "grad_norm": 0.2685548961162567,
+ "learning_rate": 0.0006,
+ "loss": 4.048116683959961,
+ "step": 1147
+ },
+ {
+ "epoch": 15.950633464394933,
+ "grad_norm": 0.2452288419008255,
+ "learning_rate": 0.0006,
+ "loss": 4.06640625,
+ "step": 1148
+ },
+ {
+ "epoch": 15.964613368283093,
+ "grad_norm": 0.2601441740989685,
+ "learning_rate": 0.0006,
+ "loss": 4.073277473449707,
+ "step": 1149
+ },
+ {
+ "epoch": 15.978593272171254,
+ "grad_norm": 0.2748197913169861,
+ "learning_rate": 0.0006,
+ "loss": 4.0332536697387695,
+ "step": 1150
+ },
+ {
+ "epoch": 15.992573176059414,
+ "grad_norm": 0.27249959111213684,
+ "learning_rate": 0.0006,
+ "loss": 3.9952516555786133,
+ "step": 1151
+ },
+ {
+ "epoch": 16.0,
+ "grad_norm": 0.3475601375102997,
+ "learning_rate": 0.0006,
+ "loss": 4.040761947631836,
+ "step": 1152
+ },
+ {
+ "epoch": 16.0,
+ "eval_loss": 4.237997531890869,
+ "eval_runtime": 43.8692,
+ "eval_samples_per_second": 55.665,
+ "eval_steps_per_second": 3.488,
+ "step": 1152
+ },
+ {
+ "epoch": 16.01397990388816,
+ "grad_norm": 0.3365611433982849,
+ "learning_rate": 0.0006,
+ "loss": 4.031302452087402,
+ "step": 1153
+ },
+ {
+ "epoch": 16.027959807776323,
+ "grad_norm": 0.3020530641078949,
+ "learning_rate": 0.0006,
+ "loss": 4.036273956298828,
+ "step": 1154
+ },
+ {
+ "epoch": 16.041939711664483,
+ "grad_norm": 0.25277993083000183,
+ "learning_rate": 0.0006,
+ "loss": 4.007067680358887,
+ "step": 1155
+ },
+ {
+ "epoch": 16.055919615552643,
+ "grad_norm": 0.24762840569019318,
+ "learning_rate": 0.0006,
+ "loss": 4.046561241149902,
+ "step": 1156
+ },
+ {
+ "epoch": 16.069899519440803,
+ "grad_norm": 0.25236397981643677,
+ "learning_rate": 0.0006,
+ "loss": 4.061616897583008,
+ "step": 1157
+ },
+ {
+ "epoch": 16.083879423328966,
+ "grad_norm": 0.22789105772972107,
+ "learning_rate": 0.0006,
+ "loss": 4.010061740875244,
+ "step": 1158
+ },
+ {
+ "epoch": 16.097859327217126,
+ "grad_norm": 0.21866244077682495,
+ "learning_rate": 0.0006,
+ "loss": 4.0181097984313965,
+ "step": 1159
+ },
+ {
+ "epoch": 16.111839231105286,
+ "grad_norm": 0.21889029443264008,
+ "learning_rate": 0.0006,
+ "loss": 4.012239456176758,
+ "step": 1160
+ },
+ {
+ "epoch": 16.125819134993446,
+ "grad_norm": 0.23002485930919647,
+ "learning_rate": 0.0006,
+ "loss": 4.034092426300049,
+ "step": 1161
+ },
+ {
+ "epoch": 16.13979903888161,
+ "grad_norm": 0.2271798551082611,
+ "learning_rate": 0.0006,
+ "loss": 4.026222229003906,
+ "step": 1162
+ },
+ {
+ "epoch": 16.15377894276977,
+ "grad_norm": 0.238200843334198,
+ "learning_rate": 0.0006,
+ "loss": 4.044692039489746,
+ "step": 1163
+ },
+ {
+ "epoch": 16.16775884665793,
+ "grad_norm": 0.2281467169523239,
+ "learning_rate": 0.0006,
+ "loss": 4.032305717468262,
+ "step": 1164
+ },
+ {
+ "epoch": 16.18173875054609,
+ "grad_norm": 0.2213946431875229,
+ "learning_rate": 0.0006,
+ "loss": 4.048737525939941,
+ "step": 1165
+ },
+ {
+ "epoch": 16.195718654434252,
+ "grad_norm": 0.26638558506965637,
+ "learning_rate": 0.0006,
+ "loss": 4.006335258483887,
+ "step": 1166
+ },
+ {
+ "epoch": 16.209698558322412,
+ "grad_norm": 0.2780219316482544,
+ "learning_rate": 0.0006,
+ "loss": 4.049234390258789,
+ "step": 1167
+ },
+ {
+ "epoch": 16.22367846221057,
+ "grad_norm": 0.27425870299339294,
+ "learning_rate": 0.0006,
+ "loss": 4.017177104949951,
+ "step": 1168
+ },
+ {
+ "epoch": 16.23765836609873,
+ "grad_norm": 0.2596667408943176,
+ "learning_rate": 0.0006,
+ "loss": 4.022942543029785,
+ "step": 1169
+ },
+ {
+ "epoch": 16.251638269986895,
+ "grad_norm": 0.26972314715385437,
+ "learning_rate": 0.0006,
+ "loss": 4.035310745239258,
+ "step": 1170
+ },
+ {
+ "epoch": 16.265618173875055,
+ "grad_norm": 0.2677772045135498,
+ "learning_rate": 0.0006,
+ "loss": 4.0280561447143555,
+ "step": 1171
+ },
+ {
+ "epoch": 16.279598077763215,
+ "grad_norm": 0.25433358550071716,
+ "learning_rate": 0.0006,
+ "loss": 4.03616189956665,
+ "step": 1172
+ },
+ {
+ "epoch": 16.293577981651374,
+ "grad_norm": 0.2583644688129425,
+ "learning_rate": 0.0006,
+ "loss": 4.073624134063721,
+ "step": 1173
+ },
+ {
+ "epoch": 16.307557885539538,
+ "grad_norm": 0.25437524914741516,
+ "learning_rate": 0.0006,
+ "loss": 4.057926654815674,
+ "step": 1174
+ },
+ {
+ "epoch": 16.321537789427698,
+ "grad_norm": 0.2819201350212097,
+ "learning_rate": 0.0006,
+ "loss": 4.020838737487793,
+ "step": 1175
+ },
+ {
+ "epoch": 16.335517693315857,
+ "grad_norm": 0.32689282298088074,
+ "learning_rate": 0.0006,
+ "loss": 4.062448501586914,
+ "step": 1176
+ },
+ {
+ "epoch": 16.34949759720402,
+ "grad_norm": 0.33002278208732605,
+ "learning_rate": 0.0006,
+ "loss": 4.052059173583984,
+ "step": 1177
+ },
+ {
+ "epoch": 16.36347750109218,
+ "grad_norm": 0.32472696900367737,
+ "learning_rate": 0.0006,
+ "loss": 4.042375564575195,
+ "step": 1178
+ },
+ {
+ "epoch": 16.37745740498034,
+ "grad_norm": 0.35279813408851624,
+ "learning_rate": 0.0006,
+ "loss": 4.028722763061523,
+ "step": 1179
+ },
+ {
+ "epoch": 16.3914373088685,
+ "grad_norm": 0.3243204951286316,
+ "learning_rate": 0.0006,
+ "loss": 4.045693874359131,
+ "step": 1180
+ },
+ {
+ "epoch": 16.405417212756664,
+ "grad_norm": 0.32171115279197693,
+ "learning_rate": 0.0006,
+ "loss": 4.018350124359131,
+ "step": 1181
+ },
+ {
+ "epoch": 16.419397116644824,
+ "grad_norm": 0.31459906697273254,
+ "learning_rate": 0.0006,
+ "loss": 4.039547443389893,
+ "step": 1182
+ },
+ {
+ "epoch": 16.433377020532983,
+ "grad_norm": 0.35038673877716064,
+ "learning_rate": 0.0006,
+ "loss": 4.005928039550781,
+ "step": 1183
+ },
+ {
+ "epoch": 16.447356924421143,
+ "grad_norm": 0.34110963344573975,
+ "learning_rate": 0.0006,
+ "loss": 4.042272090911865,
+ "step": 1184
+ },
+ {
+ "epoch": 16.461336828309307,
+ "grad_norm": 0.33760902285575867,
+ "learning_rate": 0.0006,
+ "loss": 4.02886962890625,
+ "step": 1185
+ },
+ {
+ "epoch": 16.475316732197467,
+ "grad_norm": 0.3162464499473572,
+ "learning_rate": 0.0006,
+ "loss": 4.059924125671387,
+ "step": 1186
+ },
+ {
+ "epoch": 16.489296636085626,
+ "grad_norm": 0.2667233645915985,
+ "learning_rate": 0.0006,
+ "loss": 4.069073677062988,
+ "step": 1187
+ },
+ {
+ "epoch": 16.503276539973786,
+ "grad_norm": 0.22626568377017975,
+ "learning_rate": 0.0006,
+ "loss": 4.044912338256836,
+ "step": 1188
+ },
+ {
+ "epoch": 16.51725644386195,
+ "grad_norm": 0.203303262591362,
+ "learning_rate": 0.0006,
+ "loss": 4.025210380554199,
+ "step": 1189
+ },
+ {
+ "epoch": 16.53123634775011,
+ "grad_norm": 0.2108820080757141,
+ "learning_rate": 0.0006,
+ "loss": 4.035998821258545,
+ "step": 1190
+ },
+ {
+ "epoch": 16.54521625163827,
+ "grad_norm": 0.20451335608959198,
+ "learning_rate": 0.0006,
+ "loss": 4.043377876281738,
+ "step": 1191
+ },
+ {
+ "epoch": 16.55919615552643,
+ "grad_norm": 0.23348836600780487,
+ "learning_rate": 0.0006,
+ "loss": 4.033735275268555,
+ "step": 1192
+ },
+ {
+ "epoch": 16.573176059414592,
+ "grad_norm": 0.24438607692718506,
+ "learning_rate": 0.0006,
+ "loss": 4.071747779846191,
+ "step": 1193
+ },
+ {
+ "epoch": 16.587155963302752,
+ "grad_norm": 0.24233631789684296,
+ "learning_rate": 0.0006,
+ "loss": 4.0138702392578125,
+ "step": 1194
+ },
+ {
+ "epoch": 16.601135867190912,
+ "grad_norm": 0.21625740826129913,
+ "learning_rate": 0.0006,
+ "loss": 4.013422012329102,
+ "step": 1195
+ },
+ {
+ "epoch": 16.615115771079076,
+ "grad_norm": 0.22447720170021057,
+ "learning_rate": 0.0006,
+ "loss": 4.056326866149902,
+ "step": 1196
+ },
+ {
+ "epoch": 16.629095674967235,
+ "grad_norm": 0.21899616718292236,
+ "learning_rate": 0.0006,
+ "loss": 4.006134033203125,
+ "step": 1197
+ },
+ {
+ "epoch": 16.643075578855395,
+ "grad_norm": 0.191362664103508,
+ "learning_rate": 0.0006,
+ "loss": 4.036748886108398,
+ "step": 1198
+ },
+ {
+ "epoch": 16.657055482743555,
+ "grad_norm": 0.20203463733196259,
+ "learning_rate": 0.0006,
+ "loss": 4.006264686584473,
+ "step": 1199
+ },
+ {
+ "epoch": 16.67103538663172,
+ "grad_norm": 0.20209139585494995,
+ "learning_rate": 0.0006,
+ "loss": 4.059018135070801,
+ "step": 1200
+ },
+ {
+ "epoch": 16.68501529051988,
+ "grad_norm": 0.20811820030212402,
+ "learning_rate": 0.0006,
+ "loss": 4.054325103759766,
+ "step": 1201
+ },
+ {
+ "epoch": 16.698995194408038,
+ "grad_norm": 0.22448928654193878,
+ "learning_rate": 0.0006,
+ "loss": 3.996121406555176,
+ "step": 1202
+ },
+ {
+ "epoch": 16.712975098296198,
+ "grad_norm": 0.21692240238189697,
+ "learning_rate": 0.0006,
+ "loss": 4.042046546936035,
+ "step": 1203
+ },
+ {
+ "epoch": 16.72695500218436,
+ "grad_norm": 0.20688563585281372,
+ "learning_rate": 0.0006,
+ "loss": 4.002251625061035,
+ "step": 1204
+ },
+ {
+ "epoch": 16.74093490607252,
+ "grad_norm": 0.1835535764694214,
+ "learning_rate": 0.0006,
+ "loss": 4.02545166015625,
+ "step": 1205
+ },
+ {
+ "epoch": 16.75491480996068,
+ "grad_norm": 0.20532558858394623,
+ "learning_rate": 0.0006,
+ "loss": 4.039333343505859,
+ "step": 1206
+ },
+ {
+ "epoch": 16.76889471384884,
+ "grad_norm": 0.2214215099811554,
+ "learning_rate": 0.0006,
+ "loss": 4.037858486175537,
+ "step": 1207
+ },
+ {
+ "epoch": 16.782874617737004,
+ "grad_norm": 0.24926038086414337,
+ "learning_rate": 0.0006,
+ "loss": 4.024799346923828,
+ "step": 1208
+ },
+ {
+ "epoch": 16.796854521625164,
+ "grad_norm": 0.26057952642440796,
+ "learning_rate": 0.0006,
+ "loss": 4.042788505554199,
+ "step": 1209
+ },
+ {
+ "epoch": 16.810834425513324,
+ "grad_norm": 0.2501208782196045,
+ "learning_rate": 0.0006,
+ "loss": 4.051809310913086,
+ "step": 1210
+ },
+ {
+ "epoch": 16.824814329401484,
+ "grad_norm": 0.21760012209415436,
+ "learning_rate": 0.0006,
+ "loss": 4.063589096069336,
+ "step": 1211
+ },
+ {
+ "epoch": 16.838794233289647,
+ "grad_norm": 0.2243622988462448,
+ "learning_rate": 0.0006,
+ "loss": 4.008829593658447,
+ "step": 1212
+ },
+ {
+ "epoch": 16.852774137177807,
+ "grad_norm": 0.2399163395166397,
+ "learning_rate": 0.0006,
+ "loss": 4.013262748718262,
+ "step": 1213
+ },
+ {
+ "epoch": 16.866754041065967,
+ "grad_norm": 0.23187831044197083,
+ "learning_rate": 0.0006,
+ "loss": 4.023053169250488,
+ "step": 1214
+ },
+ {
+ "epoch": 16.88073394495413,
+ "grad_norm": 0.23723892867565155,
+ "learning_rate": 0.0006,
+ "loss": 3.991321563720703,
+ "step": 1215
+ },
+ {
+ "epoch": 16.89471384884229,
+ "grad_norm": 0.21766342222690582,
+ "learning_rate": 0.0006,
+ "loss": 4.0250773429870605,
+ "step": 1216
+ },
+ {
+ "epoch": 16.90869375273045,
+ "grad_norm": 0.20715023577213287,
+ "learning_rate": 0.0006,
+ "loss": 4.063642978668213,
+ "step": 1217
+ },
+ {
+ "epoch": 16.92267365661861,
+ "grad_norm": 0.20165133476257324,
+ "learning_rate": 0.0006,
+ "loss": 3.9951367378234863,
+ "step": 1218
+ },
+ {
+ "epoch": 16.936653560506773,
+ "grad_norm": 0.19956178963184357,
+ "learning_rate": 0.0006,
+ "loss": 4.025641441345215,
+ "step": 1219
+ },
+ {
+ "epoch": 16.950633464394933,
+ "grad_norm": 0.2175494134426117,
+ "learning_rate": 0.0006,
+ "loss": 4.030346393585205,
+ "step": 1220
+ },
+ {
+ "epoch": 16.964613368283093,
+ "grad_norm": 0.22365593910217285,
+ "learning_rate": 0.0006,
+ "loss": 4.018105506896973,
+ "step": 1221
+ },
+ {
+ "epoch": 16.978593272171253,
+ "grad_norm": 0.21251538395881653,
+ "learning_rate": 0.0006,
+ "loss": 4.023580074310303,
+ "step": 1222
+ },
+ {
+ "epoch": 16.992573176059416,
+ "grad_norm": 0.2230125218629837,
+ "learning_rate": 0.0006,
+ "loss": 4.001980304718018,
+ "step": 1223
+ },
+ {
+ "epoch": 17.0,
+ "grad_norm": 0.24261972308158875,
+ "learning_rate": 0.0006,
+ "loss": 4.081348896026611,
+ "step": 1224
+ },
+ {
+ "epoch": 17.0,
+ "eval_loss": 4.225194931030273,
+ "eval_runtime": 44.247,
+ "eval_samples_per_second": 55.19,
+ "eval_steps_per_second": 3.458,
+ "step": 1224
+ },
+ {
+ "epoch": 17.01397990388816,
+ "grad_norm": 0.2438880205154419,
+ "learning_rate": 0.0006,
+ "loss": 4.0164794921875,
+ "step": 1225
+ },
+ {
+ "epoch": 17.027959807776323,
+ "grad_norm": 0.22459383308887482,
+ "learning_rate": 0.0006,
+ "loss": 3.991623878479004,
+ "step": 1226
+ },
+ {
+ "epoch": 17.041939711664483,
+ "grad_norm": 0.25021040439605713,
+ "learning_rate": 0.0006,
+ "loss": 4.003020286560059,
+ "step": 1227
+ },
+ {
+ "epoch": 17.055919615552643,
+ "grad_norm": 0.30358025431632996,
+ "learning_rate": 0.0006,
+ "loss": 3.980921983718872,
+ "step": 1228
+ },
+ {
+ "epoch": 17.069899519440803,
+ "grad_norm": 0.27313271164894104,
+ "learning_rate": 0.0006,
+ "loss": 3.992398977279663,
+ "step": 1229
+ },
+ {
+ "epoch": 17.083879423328966,
+ "grad_norm": 0.2293211966753006,
+ "learning_rate": 0.0006,
+ "loss": 4.02568244934082,
+ "step": 1230
+ },
+ {
+ "epoch": 17.097859327217126,
+ "grad_norm": 0.2363300621509552,
+ "learning_rate": 0.0006,
+ "loss": 3.977229356765747,
+ "step": 1231
+ },
+ {
+ "epoch": 17.111839231105286,
+ "grad_norm": 0.2809674143791199,
+ "learning_rate": 0.0006,
+ "loss": 3.9720497131347656,
+ "step": 1232
+ },
+ {
+ "epoch": 17.125819134993446,
+ "grad_norm": 0.2913855016231537,
+ "learning_rate": 0.0006,
+ "loss": 3.979529857635498,
+ "step": 1233
+ },
+ {
+ "epoch": 17.13979903888161,
+ "grad_norm": 0.2920287251472473,
+ "learning_rate": 0.0006,
+ "loss": 3.9678473472595215,
+ "step": 1234
+ },
+ {
+ "epoch": 17.15377894276977,
+ "grad_norm": 0.2521543502807617,
+ "learning_rate": 0.0006,
+ "loss": 3.9912607669830322,
+ "step": 1235
+ },
+ {
+ "epoch": 17.16775884665793,
+ "grad_norm": 0.22844268381595612,
+ "learning_rate": 0.0006,
+ "loss": 3.9898228645324707,
+ "step": 1236
+ },
+ {
+ "epoch": 17.18173875054609,
+ "grad_norm": 0.2199884057044983,
+ "learning_rate": 0.0006,
+ "loss": 4.0050740242004395,
+ "step": 1237
+ },
+ {
+ "epoch": 17.195718654434252,
+ "grad_norm": 0.23072892427444458,
+ "learning_rate": 0.0006,
+ "loss": 3.9957475662231445,
+ "step": 1238
+ },
+ {
+ "epoch": 17.209698558322412,
+ "grad_norm": 0.2034899890422821,
+ "learning_rate": 0.0006,
+ "loss": 3.9672317504882812,
+ "step": 1239
+ },
+ {
+ "epoch": 17.22367846221057,
+ "grad_norm": 0.21826180815696716,
+ "learning_rate": 0.0006,
+ "loss": 3.98543119430542,
+ "step": 1240
+ },
+ {
+ "epoch": 17.23765836609873,
+ "grad_norm": 0.21203237771987915,
+ "learning_rate": 0.0006,
+ "loss": 3.9971959590911865,
+ "step": 1241
+ },
+ {
+ "epoch": 17.251638269986895,
+ "grad_norm": 0.22139234840869904,
+ "learning_rate": 0.0006,
+ "loss": 4.017539978027344,
+ "step": 1242
+ },
+ {
+ "epoch": 17.265618173875055,
+ "grad_norm": 0.21553276479244232,
+ "learning_rate": 0.0006,
+ "loss": 3.98740553855896,
+ "step": 1243
+ },
+ {
+ "epoch": 17.279598077763215,
+ "grad_norm": 0.23259080946445465,
+ "learning_rate": 0.0006,
+ "loss": 3.9963035583496094,
+ "step": 1244
+ },
+ {
+ "epoch": 17.293577981651374,
+ "grad_norm": 0.2527932822704315,
+ "learning_rate": 0.0006,
+ "loss": 4.0202956199646,
+ "step": 1245
+ },
+ {
+ "epoch": 17.307557885539538,
+ "grad_norm": 0.28669068217277527,
+ "learning_rate": 0.0006,
+ "loss": 3.9947609901428223,
+ "step": 1246
+ },
+ {
+ "epoch": 17.321537789427698,
+ "grad_norm": 0.341602623462677,
+ "learning_rate": 0.0006,
+ "loss": 3.997032642364502,
+ "step": 1247
+ },
+ {
+ "epoch": 17.335517693315857,
+ "grad_norm": 0.3364104926586151,
+ "learning_rate": 0.0006,
+ "loss": 3.9881834983825684,
+ "step": 1248
+ },
+ {
+ "epoch": 17.34949759720402,
+ "grad_norm": 0.2979278266429901,
+ "learning_rate": 0.0006,
+ "loss": 4.045898914337158,
+ "step": 1249
+ },
+ {
+ "epoch": 17.36347750109218,
+ "grad_norm": 0.2857462465763092,
+ "learning_rate": 0.0006,
+ "loss": 4.0085272789001465,
+ "step": 1250
+ },
+ {
+ "epoch": 17.37745740498034,
+ "grad_norm": 0.2689058780670166,
+ "learning_rate": 0.0006,
+ "loss": 4.021465301513672,
+ "step": 1251
+ },
+ {
+ "epoch": 17.3914373088685,
+ "grad_norm": 0.24943363666534424,
+ "learning_rate": 0.0006,
+ "loss": 4.003451347351074,
+ "step": 1252
+ },
+ {
+ "epoch": 17.405417212756664,
+ "grad_norm": 0.2635347843170166,
+ "learning_rate": 0.0006,
+ "loss": 3.9837827682495117,
+ "step": 1253
+ },
+ {
+ "epoch": 17.419397116644824,
+ "grad_norm": 0.29126450419425964,
+ "learning_rate": 0.0006,
+ "loss": 3.9857311248779297,
+ "step": 1254
+ },
+ {
+ "epoch": 17.433377020532983,
+ "grad_norm": 0.3166918456554413,
+ "learning_rate": 0.0006,
+ "loss": 3.9842967987060547,
+ "step": 1255
+ },
+ {
+ "epoch": 17.447356924421143,
+ "grad_norm": 0.27869969606399536,
+ "learning_rate": 0.0006,
+ "loss": 4.012607574462891,
+ "step": 1256
+ },
+ {
+ "epoch": 17.461336828309307,
+ "grad_norm": 0.23719419538974762,
+ "learning_rate": 0.0006,
+ "loss": 3.981034755706787,
+ "step": 1257
+ },
+ {
+ "epoch": 17.475316732197467,
+ "grad_norm": 0.22687610983848572,
+ "learning_rate": 0.0006,
+ "loss": 4.011059761047363,
+ "step": 1258
+ },
+ {
+ "epoch": 17.489296636085626,
+ "grad_norm": 0.22034095227718353,
+ "learning_rate": 0.0006,
+ "loss": 4.015044689178467,
+ "step": 1259
+ },
+ {
+ "epoch": 17.503276539973786,
+ "grad_norm": 0.21208405494689941,
+ "learning_rate": 0.0006,
+ "loss": 4.003793716430664,
+ "step": 1260
+ },
+ {
+ "epoch": 17.51725644386195,
+ "grad_norm": 0.21759214997291565,
+ "learning_rate": 0.0006,
+ "loss": 3.978652238845825,
+ "step": 1261
+ },
+ {
+ "epoch": 17.53123634775011,
+ "grad_norm": 0.22481068968772888,
+ "learning_rate": 0.0006,
+ "loss": 4.034845352172852,
+ "step": 1262
+ },
+ {
+ "epoch": 17.54521625163827,
+ "grad_norm": 0.20376387238502502,
+ "learning_rate": 0.0006,
+ "loss": 3.990541934967041,
+ "step": 1263
+ },
+ {
+ "epoch": 17.55919615552643,
+ "grad_norm": 0.20459355413913727,
+ "learning_rate": 0.0006,
+ "loss": 4.006990432739258,
+ "step": 1264
+ },
+ {
+ "epoch": 17.573176059414592,
+ "grad_norm": 0.19306913018226624,
+ "learning_rate": 0.0006,
+ "loss": 3.993408679962158,
+ "step": 1265
+ },
+ {
+ "epoch": 17.587155963302752,
+ "grad_norm": 0.20727239549160004,
+ "learning_rate": 0.0006,
+ "loss": 3.988016128540039,
+ "step": 1266
+ },
+ {
+ "epoch": 17.601135867190912,
+ "grad_norm": 0.20213133096694946,
+ "learning_rate": 0.0006,
+ "loss": 4.0120368003845215,
+ "step": 1267
+ },
+ {
+ "epoch": 17.615115771079076,
+ "grad_norm": 0.21074117720127106,
+ "learning_rate": 0.0006,
+ "loss": 4.048871040344238,
+ "step": 1268
+ },
+ {
+ "epoch": 17.629095674967235,
+ "grad_norm": 0.2074330598115921,
+ "learning_rate": 0.0006,
+ "loss": 3.997509002685547,
+ "step": 1269
+ },
+ {
+ "epoch": 17.643075578855395,
+ "grad_norm": 0.20383669435977936,
+ "learning_rate": 0.0006,
+ "loss": 4.0028839111328125,
+ "step": 1270
+ },
+ {
+ "epoch": 17.657055482743555,
+ "grad_norm": 0.2060765027999878,
+ "learning_rate": 0.0006,
+ "loss": 3.998032331466675,
+ "step": 1271
+ },
+ {
+ "epoch": 17.67103538663172,
+ "grad_norm": 0.21851404011249542,
+ "learning_rate": 0.0006,
+ "loss": 3.9928741455078125,
+ "step": 1272
+ },
+ {
+ "epoch": 17.68501529051988,
+ "grad_norm": 0.24324250221252441,
+ "learning_rate": 0.0006,
+ "loss": 3.9896507263183594,
+ "step": 1273
+ },
+ {
+ "epoch": 17.698995194408038,
+ "grad_norm": 0.25584331154823303,
+ "learning_rate": 0.0006,
+ "loss": 4.010485649108887,
+ "step": 1274
+ },
+ {
+ "epoch": 17.712975098296198,
+ "grad_norm": 0.2490610033273697,
+ "learning_rate": 0.0006,
+ "loss": 3.9906954765319824,
+ "step": 1275
+ },
+ {
+ "epoch": 17.72695500218436,
+ "grad_norm": 0.24241414666175842,
+ "learning_rate": 0.0006,
+ "loss": 4.016420364379883,
+ "step": 1276
+ },
+ {
+ "epoch": 17.74093490607252,
+ "grad_norm": 0.2222128063440323,
+ "learning_rate": 0.0006,
+ "loss": 4.009827136993408,
+ "step": 1277
+ },
+ {
+ "epoch": 17.75491480996068,
+ "grad_norm": 0.23119516670703888,
+ "learning_rate": 0.0006,
+ "loss": 4.0034589767456055,
+ "step": 1278
+ },
+ {
+ "epoch": 17.76889471384884,
+ "grad_norm": 0.24596457183361053,
+ "learning_rate": 0.0006,
+ "loss": 4.003161907196045,
+ "step": 1279
+ },
+ {
+ "epoch": 17.782874617737004,
+ "grad_norm": 0.2607562839984894,
+ "learning_rate": 0.0006,
+ "loss": 3.9894633293151855,
+ "step": 1280
+ },
+ {
+ "epoch": 17.796854521625164,
+ "grad_norm": 0.28706878423690796,
+ "learning_rate": 0.0006,
+ "loss": 4.005712985992432,
+ "step": 1281
+ },
+ {
+ "epoch": 17.810834425513324,
+ "grad_norm": 0.27178290486335754,
+ "learning_rate": 0.0006,
+ "loss": 3.9784536361694336,
+ "step": 1282
+ },
+ {
+ "epoch": 17.824814329401484,
+ "grad_norm": 0.27962708473205566,
+ "learning_rate": 0.0006,
+ "loss": 4.012705326080322,
+ "step": 1283
+ },
+ {
+ "epoch": 17.838794233289647,
+ "grad_norm": 0.29147693514823914,
+ "learning_rate": 0.0006,
+ "loss": 4.0159783363342285,
+ "step": 1284
+ },
+ {
+ "epoch": 17.852774137177807,
+ "grad_norm": 0.2841821312904358,
+ "learning_rate": 0.0006,
+ "loss": 4.011552810668945,
+ "step": 1285
+ },
+ {
+ "epoch": 17.866754041065967,
+ "grad_norm": 0.24924969673156738,
+ "learning_rate": 0.0006,
+ "loss": 3.992421865463257,
+ "step": 1286
+ },
+ {
+ "epoch": 17.88073394495413,
+ "grad_norm": 0.24850749969482422,
+ "learning_rate": 0.0006,
+ "loss": 3.974897861480713,
+ "step": 1287
+ },
+ {
+ "epoch": 17.89471384884229,
+ "grad_norm": 0.2409554123878479,
+ "learning_rate": 0.0006,
+ "loss": 4.002941131591797,
+ "step": 1288
+ },
+ {
+ "epoch": 17.90869375273045,
+ "grad_norm": 0.2656126320362091,
+ "learning_rate": 0.0006,
+ "loss": 3.9804210662841797,
+ "step": 1289
+ },
+ {
+ "epoch": 17.92267365661861,
+ "grad_norm": 0.28210243582725525,
+ "learning_rate": 0.0006,
+ "loss": 4.007192134857178,
+ "step": 1290
+ },
+ {
+ "epoch": 17.936653560506773,
+ "grad_norm": 0.28427553176879883,
+ "learning_rate": 0.0006,
+ "loss": 3.9739556312561035,
+ "step": 1291
+ },
+ {
+ "epoch": 17.950633464394933,
+ "grad_norm": 0.28893420100212097,
+ "learning_rate": 0.0006,
+ "loss": 4.004766941070557,
+ "step": 1292
+ },
+ {
+ "epoch": 17.964613368283093,
+ "grad_norm": 0.2831471562385559,
+ "learning_rate": 0.0006,
+ "loss": 3.984936237335205,
+ "step": 1293
+ },
+ {
+ "epoch": 17.978593272171253,
+ "grad_norm": 0.2518300712108612,
+ "learning_rate": 0.0006,
+ "loss": 4.002814292907715,
+ "step": 1294
+ },
+ {
+ "epoch": 17.992573176059416,
+ "grad_norm": 0.24264675378799438,
+ "learning_rate": 0.0006,
+ "loss": 3.998900890350342,
+ "step": 1295
+ },
+ {
+ "epoch": 18.0,
+ "grad_norm": 0.24474996328353882,
+ "learning_rate": 0.0006,
+ "loss": 3.974229335784912,
+ "step": 1296
+ },
+ {
+ "epoch": 18.0,
+ "eval_loss": 4.195685863494873,
+ "eval_runtime": 44.0709,
+ "eval_samples_per_second": 55.411,
+ "eval_steps_per_second": 3.472,
+ "step": 1296
+ },
+ {
+ "epoch": 18.01397990388816,
+ "grad_norm": 0.2553016245365143,
+ "learning_rate": 0.0006,
+ "loss": 3.9522247314453125,
+ "step": 1297
+ },
+ {
+ "epoch": 18.027959807776323,
+ "grad_norm": 0.22350727021694183,
+ "learning_rate": 0.0006,
+ "loss": 3.9850122928619385,
+ "step": 1298
+ },
+ {
+ "epoch": 18.041939711664483,
+ "grad_norm": 0.23935550451278687,
+ "learning_rate": 0.0006,
+ "loss": 3.9758832454681396,
+ "step": 1299
+ },
+ {
+ "epoch": 18.055919615552643,
+ "grad_norm": 0.23868797719478607,
+ "learning_rate": 0.0006,
+ "loss": 3.9567959308624268,
+ "step": 1300
+ },
+ {
+ "epoch": 18.069899519440803,
+ "grad_norm": 0.23102357983589172,
+ "learning_rate": 0.0006,
+ "loss": 3.9399867057800293,
+ "step": 1301
+ },
+ {
+ "epoch": 18.083879423328966,
+ "grad_norm": 0.23706983029842377,
+ "learning_rate": 0.0006,
+ "loss": 3.993434190750122,
+ "step": 1302
+ },
+ {
+ "epoch": 18.097859327217126,
+ "grad_norm": 0.22207573056221008,
+ "learning_rate": 0.0006,
+ "loss": 3.993436574935913,
+ "step": 1303
+ },
+ {
+ "epoch": 18.111839231105286,
+ "grad_norm": 0.23975296318531036,
+ "learning_rate": 0.0006,
+ "loss": 3.981943368911743,
+ "step": 1304
+ },
+ {
+ "epoch": 18.125819134993446,
+ "grad_norm": 0.2520582675933838,
+ "learning_rate": 0.0006,
+ "loss": 3.965493679046631,
+ "step": 1305
+ },
+ {
+ "epoch": 18.13979903888161,
+ "grad_norm": 0.2230956256389618,
+ "learning_rate": 0.0006,
+ "loss": 3.9360928535461426,
+ "step": 1306
+ },
+ {
+ "epoch": 18.15377894276977,
+ "grad_norm": 0.22527500987052917,
+ "learning_rate": 0.0006,
+ "loss": 3.9814581871032715,
+ "step": 1307
+ },
+ {
+ "epoch": 18.16775884665793,
+ "grad_norm": 0.22389626502990723,
+ "learning_rate": 0.0006,
+ "loss": 3.961590051651001,
+ "step": 1308
+ },
+ {
+ "epoch": 18.18173875054609,
+ "grad_norm": 0.22279471158981323,
+ "learning_rate": 0.0006,
+ "loss": 3.952338695526123,
+ "step": 1309
+ },
+ {
+ "epoch": 18.195718654434252,
+ "grad_norm": 0.24635115265846252,
+ "learning_rate": 0.0006,
+ "loss": 3.9693849086761475,
+ "step": 1310
+ },
+ {
+ "epoch": 18.209698558322412,
+ "grad_norm": 0.2757279872894287,
+ "learning_rate": 0.0006,
+ "loss": 3.9956700801849365,
+ "step": 1311
+ },
+ {
+ "epoch": 18.22367846221057,
+ "grad_norm": 0.2619115710258484,
+ "learning_rate": 0.0006,
+ "loss": 3.948878765106201,
+ "step": 1312
+ },
+ {
+ "epoch": 18.23765836609873,
+ "grad_norm": 0.22853828966617584,
+ "learning_rate": 0.0006,
+ "loss": 3.9545674324035645,
+ "step": 1313
+ },
+ {
+ "epoch": 18.251638269986895,
+ "grad_norm": 0.22904761135578156,
+ "learning_rate": 0.0006,
+ "loss": 3.947535991668701,
+ "step": 1314
+ },
+ {
+ "epoch": 18.265618173875055,
+ "grad_norm": 0.23592644929885864,
+ "learning_rate": 0.0006,
+ "loss": 3.971926212310791,
+ "step": 1315
+ },
+ {
+ "epoch": 18.279598077763215,
+ "grad_norm": 0.22120243310928345,
+ "learning_rate": 0.0006,
+ "loss": 3.9471049308776855,
+ "step": 1316
+ },
+ {
+ "epoch": 18.293577981651374,
+ "grad_norm": 0.20308749377727509,
+ "learning_rate": 0.0006,
+ "loss": 3.967449188232422,
+ "step": 1317
+ },
+ {
+ "epoch": 18.307557885539538,
+ "grad_norm": 0.20013529062271118,
+ "learning_rate": 0.0006,
+ "loss": 3.966151237487793,
+ "step": 1318
+ },
+ {
+ "epoch": 18.321537789427698,
+ "grad_norm": 0.20635221898555756,
+ "learning_rate": 0.0006,
+ "loss": 3.9908885955810547,
+ "step": 1319
+ },
+ {
+ "epoch": 18.335517693315857,
+ "grad_norm": 0.2232237160205841,
+ "learning_rate": 0.0006,
+ "loss": 3.9488768577575684,
+ "step": 1320
+ },
+ {
+ "epoch": 18.34949759720402,
+ "grad_norm": 0.21916444599628448,
+ "learning_rate": 0.0006,
+ "loss": 3.973428726196289,
+ "step": 1321
+ },
+ {
+ "epoch": 18.36347750109218,
+ "grad_norm": 0.20427337288856506,
+ "learning_rate": 0.0006,
+ "loss": 3.969332695007324,
+ "step": 1322
+ },
+ {
+ "epoch": 18.37745740498034,
+ "grad_norm": 0.20138131082057953,
+ "learning_rate": 0.0006,
+ "loss": 3.9651856422424316,
+ "step": 1323
+ },
+ {
+ "epoch": 18.3914373088685,
+ "grad_norm": 0.18918880820274353,
+ "learning_rate": 0.0006,
+ "loss": 3.9772281646728516,
+ "step": 1324
+ },
+ {
+ "epoch": 18.405417212756664,
+ "grad_norm": 0.1860039383172989,
+ "learning_rate": 0.0006,
+ "loss": 3.9289052486419678,
+ "step": 1325
+ },
+ {
+ "epoch": 18.419397116644824,
+ "grad_norm": 0.19541646540164948,
+ "learning_rate": 0.0006,
+ "loss": 3.9527673721313477,
+ "step": 1326
+ },
+ {
+ "epoch": 18.433377020532983,
+ "grad_norm": 0.206914022564888,
+ "learning_rate": 0.0006,
+ "loss": 3.99316143989563,
+ "step": 1327
+ },
+ {
+ "epoch": 18.447356924421143,
+ "grad_norm": 0.209097757935524,
+ "learning_rate": 0.0006,
+ "loss": 3.978130340576172,
+ "step": 1328
+ },
+ {
+ "epoch": 18.461336828309307,
+ "grad_norm": 0.22163373231887817,
+ "learning_rate": 0.0006,
+ "loss": 3.951460361480713,
+ "step": 1329
+ },
+ {
+ "epoch": 18.475316732197467,
+ "grad_norm": 0.21446120738983154,
+ "learning_rate": 0.0006,
+ "loss": 3.963571071624756,
+ "step": 1330
+ },
+ {
+ "epoch": 18.489296636085626,
+ "grad_norm": 0.2341388761997223,
+ "learning_rate": 0.0006,
+ "loss": 4.010684013366699,
+ "step": 1331
+ },
+ {
+ "epoch": 18.503276539973786,
+ "grad_norm": 0.2433937042951584,
+ "learning_rate": 0.0006,
+ "loss": 3.987537384033203,
+ "step": 1332
+ },
+ {
+ "epoch": 18.51725644386195,
+ "grad_norm": 0.24916228652000427,
+ "learning_rate": 0.0006,
+ "loss": 3.953075647354126,
+ "step": 1333
+ },
+ {
+ "epoch": 18.53123634775011,
+ "grad_norm": 0.24542421102523804,
+ "learning_rate": 0.0006,
+ "loss": 3.9510841369628906,
+ "step": 1334
+ },
+ {
+ "epoch": 18.54521625163827,
+ "grad_norm": 0.2393690049648285,
+ "learning_rate": 0.0006,
+ "loss": 3.981747627258301,
+ "step": 1335
+ },
+ {
+ "epoch": 18.55919615552643,
+ "grad_norm": 0.22806711494922638,
+ "learning_rate": 0.0006,
+ "loss": 3.9714856147766113,
+ "step": 1336
+ },
+ {
+ "epoch": 18.573176059414592,
+ "grad_norm": 0.21948303282260895,
+ "learning_rate": 0.0006,
+ "loss": 3.9429898262023926,
+ "step": 1337
+ },
+ {
+ "epoch": 18.587155963302752,
+ "grad_norm": 0.21575778722763062,
+ "learning_rate": 0.0006,
+ "loss": 3.9639933109283447,
+ "step": 1338
+ },
+ {
+ "epoch": 18.601135867190912,
+ "grad_norm": 0.23370565474033356,
+ "learning_rate": 0.0006,
+ "loss": 3.9819254875183105,
+ "step": 1339
+ },
+ {
+ "epoch": 18.615115771079076,
+ "grad_norm": 0.2613106369972229,
+ "learning_rate": 0.0006,
+ "loss": 3.9654669761657715,
+ "step": 1340
+ },
+ {
+ "epoch": 18.629095674967235,
+ "grad_norm": 0.26682716608047485,
+ "learning_rate": 0.0006,
+ "loss": 3.9832968711853027,
+ "step": 1341
+ },
+ {
+ "epoch": 18.643075578855395,
+ "grad_norm": 0.24331490695476532,
+ "learning_rate": 0.0006,
+ "loss": 3.9926600456237793,
+ "step": 1342
+ },
+ {
+ "epoch": 18.657055482743555,
+ "grad_norm": 0.2459341287612915,
+ "learning_rate": 0.0006,
+ "loss": 3.9508986473083496,
+ "step": 1343
+ },
+ {
+ "epoch": 18.67103538663172,
+ "grad_norm": 0.26395753026008606,
+ "learning_rate": 0.0006,
+ "loss": 3.961359977722168,
+ "step": 1344
+ },
+ {
+ "epoch": 18.68501529051988,
+ "grad_norm": 0.26049068570137024,
+ "learning_rate": 0.0006,
+ "loss": 3.9763245582580566,
+ "step": 1345
+ },
+ {
+ "epoch": 18.698995194408038,
+ "grad_norm": 0.24018602073192596,
+ "learning_rate": 0.0006,
+ "loss": 3.951780319213867,
+ "step": 1346
+ },
+ {
+ "epoch": 18.712975098296198,
+ "grad_norm": 0.23886290192604065,
+ "learning_rate": 0.0006,
+ "loss": 3.9883017539978027,
+ "step": 1347
+ },
+ {
+ "epoch": 18.72695500218436,
+ "grad_norm": 0.2293774038553238,
+ "learning_rate": 0.0006,
+ "loss": 3.9852685928344727,
+ "step": 1348
+ },
+ {
+ "epoch": 18.74093490607252,
+ "grad_norm": 0.22172975540161133,
+ "learning_rate": 0.0006,
+ "loss": 3.967550277709961,
+ "step": 1349
+ },
+ {
+ "epoch": 18.75491480996068,
+ "grad_norm": 0.2170475423336029,
+ "learning_rate": 0.0006,
+ "loss": 3.9570775032043457,
+ "step": 1350
+ },
+ {
+ "epoch": 18.76889471384884,
+ "grad_norm": 0.21458806097507477,
+ "learning_rate": 0.0006,
+ "loss": 3.9461212158203125,
+ "step": 1351
+ },
+ {
+ "epoch": 18.782874617737004,
+ "grad_norm": 0.21101507544517517,
+ "learning_rate": 0.0006,
+ "loss": 3.984398365020752,
+ "step": 1352
+ },
+ {
+ "epoch": 18.796854521625164,
+ "grad_norm": 0.23480583727359772,
+ "learning_rate": 0.0006,
+ "loss": 3.950312614440918,
+ "step": 1353
+ },
+ {
+ "epoch": 18.810834425513324,
+ "grad_norm": 0.24728581309318542,
+ "learning_rate": 0.0006,
+ "loss": 3.9572393894195557,
+ "step": 1354
+ },
+ {
+ "epoch": 18.824814329401484,
+ "grad_norm": 0.26063451170921326,
+ "learning_rate": 0.0006,
+ "loss": 3.9653234481811523,
+ "step": 1355
+ },
+ {
+ "epoch": 18.838794233289647,
+ "grad_norm": 0.24679961800575256,
+ "learning_rate": 0.0006,
+ "loss": 3.9560108184814453,
+ "step": 1356
+ },
+ {
+ "epoch": 18.852774137177807,
+ "grad_norm": 0.23199526965618134,
+ "learning_rate": 0.0006,
+ "loss": 3.9948246479034424,
+ "step": 1357
+ },
+ {
+ "epoch": 18.866754041065967,
+ "grad_norm": 0.22619125247001648,
+ "learning_rate": 0.0006,
+ "loss": 3.9783573150634766,
+ "step": 1358
+ },
+ {
+ "epoch": 18.88073394495413,
+ "grad_norm": 0.25499874353408813,
+ "learning_rate": 0.0006,
+ "loss": 3.9674575328826904,
+ "step": 1359
+ },
+ {
+ "epoch": 18.89471384884229,
+ "grad_norm": 0.23961037397384644,
+ "learning_rate": 0.0006,
+ "loss": 3.969209909439087,
+ "step": 1360
+ },
+ {
+ "epoch": 18.90869375273045,
+ "grad_norm": 0.21039162576198578,
+ "learning_rate": 0.0006,
+ "loss": 3.978661060333252,
+ "step": 1361
+ },
+ {
+ "epoch": 18.92267365661861,
+ "grad_norm": 0.2297026664018631,
+ "learning_rate": 0.0006,
+ "loss": 3.9483046531677246,
+ "step": 1362
+ },
+ {
+ "epoch": 18.936653560506773,
+ "grad_norm": 0.26367098093032837,
+ "learning_rate": 0.0006,
+ "loss": 3.927133560180664,
+ "step": 1363
+ },
+ {
+ "epoch": 18.950633464394933,
+ "grad_norm": 0.26893147826194763,
+ "learning_rate": 0.0006,
+ "loss": 3.957932710647583,
+ "step": 1364
+ },
+ {
+ "epoch": 18.964613368283093,
+ "grad_norm": 0.27092233300209045,
+ "learning_rate": 0.0006,
+ "loss": 3.976621150970459,
+ "step": 1365
+ },
+ {
+ "epoch": 18.978593272171253,
+ "grad_norm": 0.2672635018825531,
+ "learning_rate": 0.0006,
+ "loss": 3.9577765464782715,
+ "step": 1366
+ },
+ {
+ "epoch": 18.992573176059416,
+ "grad_norm": 0.2721385359764099,
+ "learning_rate": 0.0006,
+ "loss": 3.986100196838379,
+ "step": 1367
+ },
+ {
+ "epoch": 19.0,
+ "grad_norm": 0.27648621797561646,
+ "learning_rate": 0.0006,
+ "loss": 3.9942402839660645,
+ "step": 1368
+ },
+ {
+ "epoch": 19.0,
+ "eval_loss": 4.180216312408447,
+ "eval_runtime": 44.0079,
+ "eval_samples_per_second": 55.49,
+ "eval_steps_per_second": 3.477,
+ "step": 1368
+ },
+ {
+ "epoch": 19.01397990388816,
+ "grad_norm": 0.2563098073005676,
+ "learning_rate": 0.0006,
+ "loss": 3.9267354011535645,
+ "step": 1369
+ },
+ {
+ "epoch": 19.027959807776323,
+ "grad_norm": 0.2531425952911377,
+ "learning_rate": 0.0006,
+ "loss": 3.9273324012756348,
+ "step": 1370
+ },
+ {
+ "epoch": 19.041939711664483,
+ "grad_norm": 0.27485427260398865,
+ "learning_rate": 0.0006,
+ "loss": 3.9542183876037598,
+ "step": 1371
+ },
+ {
+ "epoch": 19.055919615552643,
+ "grad_norm": 0.27509891986846924,
+ "learning_rate": 0.0006,
+ "loss": 3.921940326690674,
+ "step": 1372
+ },
+ {
+ "epoch": 19.069899519440803,
+ "grad_norm": 0.28154096007347107,
+ "learning_rate": 0.0006,
+ "loss": 3.926743984222412,
+ "step": 1373
+ },
+ {
+ "epoch": 19.083879423328966,
+ "grad_norm": 0.2749912738800049,
+ "learning_rate": 0.0006,
+ "loss": 3.9257748126983643,
+ "step": 1374
+ },
+ {
+ "epoch": 19.097859327217126,
+ "grad_norm": 0.26168501377105713,
+ "learning_rate": 0.0006,
+ "loss": 3.9403202533721924,
+ "step": 1375
+ },
+ {
+ "epoch": 19.111839231105286,
+ "grad_norm": 0.23410023748874664,
+ "learning_rate": 0.0006,
+ "loss": 3.935378313064575,
+ "step": 1376
+ },
+ {
+ "epoch": 19.125819134993446,
+ "grad_norm": 0.25790470838546753,
+ "learning_rate": 0.0006,
+ "loss": 3.946147918701172,
+ "step": 1377
+ },
+ {
+ "epoch": 19.13979903888161,
+ "grad_norm": 0.26704177260398865,
+ "learning_rate": 0.0006,
+ "loss": 3.9511594772338867,
+ "step": 1378
+ },
+ {
+ "epoch": 19.15377894276977,
+ "grad_norm": 0.2560667097568512,
+ "learning_rate": 0.0006,
+ "loss": 3.915806531906128,
+ "step": 1379
+ },
+ {
+ "epoch": 19.16775884665793,
+ "grad_norm": 0.24684149026870728,
+ "learning_rate": 0.0006,
+ "loss": 3.9162003993988037,
+ "step": 1380
+ },
+ {
+ "epoch": 19.18173875054609,
+ "grad_norm": 0.2097567766904831,
+ "learning_rate": 0.0006,
+ "loss": 3.915739059448242,
+ "step": 1381
+ },
+ {
+ "epoch": 19.195718654434252,
+ "grad_norm": 0.21646849811077118,
+ "learning_rate": 0.0006,
+ "loss": 3.9097084999084473,
+ "step": 1382
+ },
+ {
+ "epoch": 19.209698558322412,
+ "grad_norm": 0.20626980066299438,
+ "learning_rate": 0.0006,
+ "loss": 3.9541783332824707,
+ "step": 1383
+ },
+ {
+ "epoch": 19.22367846221057,
+ "grad_norm": 0.23362718522548676,
+ "learning_rate": 0.0006,
+ "loss": 3.950096845626831,
+ "step": 1384
+ },
+ {
+ "epoch": 19.23765836609873,
+ "grad_norm": 0.25402209162712097,
+ "learning_rate": 0.0006,
+ "loss": 3.927671432495117,
+ "step": 1385
+ },
+ {
+ "epoch": 19.251638269986895,
+ "grad_norm": 0.23714083433151245,
+ "learning_rate": 0.0006,
+ "loss": 3.939765453338623,
+ "step": 1386
+ },
+ {
+ "epoch": 19.265618173875055,
+ "grad_norm": 0.20895546674728394,
+ "learning_rate": 0.0006,
+ "loss": 3.9384806156158447,
+ "step": 1387
+ },
+ {
+ "epoch": 19.279598077763215,
+ "grad_norm": 0.21374300122261047,
+ "learning_rate": 0.0006,
+ "loss": 3.9523749351501465,
+ "step": 1388
+ },
+ {
+ "epoch": 19.293577981651374,
+ "grad_norm": 0.210394486784935,
+ "learning_rate": 0.0006,
+ "loss": 3.9540798664093018,
+ "step": 1389
+ },
+ {
+ "epoch": 19.307557885539538,
+ "grad_norm": 0.20646725594997406,
+ "learning_rate": 0.0006,
+ "loss": 3.9514098167419434,
+ "step": 1390
+ },
+ {
+ "epoch": 19.321537789427698,
+ "grad_norm": 0.21477538347244263,
+ "learning_rate": 0.0006,
+ "loss": 3.9369924068450928,
+ "step": 1391
+ },
+ {
+ "epoch": 19.335517693315857,
+ "grad_norm": 0.20431505143642426,
+ "learning_rate": 0.0006,
+ "loss": 3.9389796257019043,
+ "step": 1392
+ },
+ {
+ "epoch": 19.34949759720402,
+ "grad_norm": 0.19575877487659454,
+ "learning_rate": 0.0006,
+ "loss": 3.935976028442383,
+ "step": 1393
+ },
+ {
+ "epoch": 19.36347750109218,
+ "grad_norm": 0.20720405876636505,
+ "learning_rate": 0.0006,
+ "loss": 3.9670963287353516,
+ "step": 1394
+ },
+ {
+ "epoch": 19.37745740498034,
+ "grad_norm": 0.2173967957496643,
+ "learning_rate": 0.0006,
+ "loss": 3.903940439224243,
+ "step": 1395
+ },
+ {
+ "epoch": 19.3914373088685,
+ "grad_norm": 0.2180529683828354,
+ "learning_rate": 0.0006,
+ "loss": 3.8716301918029785,
+ "step": 1396
+ },
+ {
+ "epoch": 19.405417212756664,
+ "grad_norm": 0.20666591823101044,
+ "learning_rate": 0.0006,
+ "loss": 3.930936813354492,
+ "step": 1397
+ },
+ {
+ "epoch": 19.419397116644824,
+ "grad_norm": 0.20353034138679504,
+ "learning_rate": 0.0006,
+ "loss": 3.926954746246338,
+ "step": 1398
+ },
+ {
+ "epoch": 19.433377020532983,
+ "grad_norm": 0.22333289682865143,
+ "learning_rate": 0.0006,
+ "loss": 3.947504997253418,
+ "step": 1399
+ },
+ {
+ "epoch": 19.447356924421143,
+ "grad_norm": 0.21787697076797485,
+ "learning_rate": 0.0006,
+ "loss": 3.9325344562530518,
+ "step": 1400
+ },
+ {
+ "epoch": 19.461336828309307,
+ "grad_norm": 0.22805874049663544,
+ "learning_rate": 0.0006,
+ "loss": 3.9640727043151855,
+ "step": 1401
+ },
+ {
+ "epoch": 19.475316732197467,
+ "grad_norm": 0.22396457195281982,
+ "learning_rate": 0.0006,
+ "loss": 3.9537901878356934,
+ "step": 1402
+ },
+ {
+ "epoch": 19.489296636085626,
+ "grad_norm": 0.2333047240972519,
+ "learning_rate": 0.0006,
+ "loss": 3.935609817504883,
+ "step": 1403
+ },
+ {
+ "epoch": 19.503276539973786,
+ "grad_norm": 0.25063616037368774,
+ "learning_rate": 0.0006,
+ "loss": 3.9659228324890137,
+ "step": 1404
+ },
+ {
+ "epoch": 19.51725644386195,
+ "grad_norm": 0.29074087738990784,
+ "learning_rate": 0.0006,
+ "loss": 3.9552183151245117,
+ "step": 1405
+ },
+ {
+ "epoch": 19.53123634775011,
+ "grad_norm": 0.34876152873039246,
+ "learning_rate": 0.0006,
+ "loss": 3.976163387298584,
+ "step": 1406
+ },
+ {
+ "epoch": 19.54521625163827,
+ "grad_norm": 0.35026612877845764,
+ "learning_rate": 0.0006,
+ "loss": 3.961186408996582,
+ "step": 1407
+ },
+ {
+ "epoch": 19.55919615552643,
+ "grad_norm": 0.3199564218521118,
+ "learning_rate": 0.0006,
+ "loss": 3.9366297721862793,
+ "step": 1408
+ },
+ {
+ "epoch": 19.573176059414592,
+ "grad_norm": 0.2976185977458954,
+ "learning_rate": 0.0006,
+ "loss": 3.9502010345458984,
+ "step": 1409
+ },
+ {
+ "epoch": 19.587155963302752,
+ "grad_norm": 0.2951911687850952,
+ "learning_rate": 0.0006,
+ "loss": 3.9427943229675293,
+ "step": 1410
+ },
+ {
+ "epoch": 19.601135867190912,
+ "grad_norm": 0.27918702363967896,
+ "learning_rate": 0.0006,
+ "loss": 3.963700532913208,
+ "step": 1411
+ },
+ {
+ "epoch": 19.615115771079076,
+ "grad_norm": 0.26197490096092224,
+ "learning_rate": 0.0006,
+ "loss": 3.9636964797973633,
+ "step": 1412
+ },
+ {
+ "epoch": 19.629095674967235,
+ "grad_norm": 0.24242281913757324,
+ "learning_rate": 0.0006,
+ "loss": 3.961815595626831,
+ "step": 1413
+ },
+ {
+ "epoch": 19.643075578855395,
+ "grad_norm": 0.2606375515460968,
+ "learning_rate": 0.0006,
+ "loss": 3.946643352508545,
+ "step": 1414
+ },
+ {
+ "epoch": 19.657055482743555,
+ "grad_norm": 0.23353353142738342,
+ "learning_rate": 0.0006,
+ "loss": 3.973155975341797,
+ "step": 1415
+ },
+ {
+ "epoch": 19.67103538663172,
+ "grad_norm": 0.22872662544250488,
+ "learning_rate": 0.0006,
+ "loss": 3.9528894424438477,
+ "step": 1416
+ },
+ {
+ "epoch": 19.68501529051988,
+ "grad_norm": 0.24678432941436768,
+ "learning_rate": 0.0006,
+ "loss": 3.9313249588012695,
+ "step": 1417
+ },
+ {
+ "epoch": 19.698995194408038,
+ "grad_norm": 0.23895515501499176,
+ "learning_rate": 0.0006,
+ "loss": 3.944082498550415,
+ "step": 1418
+ },
+ {
+ "epoch": 19.712975098296198,
+ "grad_norm": 0.23649105429649353,
+ "learning_rate": 0.0006,
+ "loss": 3.962069034576416,
+ "step": 1419
+ },
+ {
+ "epoch": 19.72695500218436,
+ "grad_norm": 0.22031061351299286,
+ "learning_rate": 0.0006,
+ "loss": 3.912972927093506,
+ "step": 1420
+ },
+ {
+ "epoch": 19.74093490607252,
+ "grad_norm": 0.20231695473194122,
+ "learning_rate": 0.0006,
+ "loss": 3.964531421661377,
+ "step": 1421
+ },
+ {
+ "epoch": 19.75491480996068,
+ "grad_norm": 0.19980913400650024,
+ "learning_rate": 0.0006,
+ "loss": 3.9452600479125977,
+ "step": 1422
+ },
+ {
+ "epoch": 19.76889471384884,
+ "grad_norm": 0.21768775582313538,
+ "learning_rate": 0.0006,
+ "loss": 3.9214301109313965,
+ "step": 1423
+ },
+ {
+ "epoch": 19.782874617737004,
+ "grad_norm": 0.21287119388580322,
+ "learning_rate": 0.0006,
+ "loss": 3.9416494369506836,
+ "step": 1424
+ },
+ {
+ "epoch": 19.796854521625164,
+ "grad_norm": 0.21399827301502228,
+ "learning_rate": 0.0006,
+ "loss": 3.971010208129883,
+ "step": 1425
+ },
+ {
+ "epoch": 19.810834425513324,
+ "grad_norm": 0.1957658976316452,
+ "learning_rate": 0.0006,
+ "loss": 3.936331272125244,
+ "step": 1426
+ },
+ {
+ "epoch": 19.824814329401484,
+ "grad_norm": 0.19341488182544708,
+ "learning_rate": 0.0006,
+ "loss": 3.9321448802948,
+ "step": 1427
+ },
+ {
+ "epoch": 19.838794233289647,
+ "grad_norm": 0.18405723571777344,
+ "learning_rate": 0.0006,
+ "loss": 3.939542293548584,
+ "step": 1428
+ },
+ {
+ "epoch": 19.852774137177807,
+ "grad_norm": 0.19672836363315582,
+ "learning_rate": 0.0006,
+ "loss": 3.939652919769287,
+ "step": 1429
+ },
+ {
+ "epoch": 19.866754041065967,
+ "grad_norm": 0.1998940259218216,
+ "learning_rate": 0.0006,
+ "loss": 3.932892322540283,
+ "step": 1430
+ },
+ {
+ "epoch": 19.88073394495413,
+ "grad_norm": 0.2307668924331665,
+ "learning_rate": 0.0006,
+ "loss": 3.9402761459350586,
+ "step": 1431
+ },
+ {
+ "epoch": 19.89471384884229,
+ "grad_norm": 0.2531987726688385,
+ "learning_rate": 0.0006,
+ "loss": 3.9153199195861816,
+ "step": 1432
+ },
+ {
+ "epoch": 19.90869375273045,
+ "grad_norm": 0.2299388349056244,
+ "learning_rate": 0.0006,
+ "loss": 3.9569954872131348,
+ "step": 1433
+ },
+ {
+ "epoch": 19.92267365661861,
+ "grad_norm": 0.2503527104854584,
+ "learning_rate": 0.0006,
+ "loss": 3.9469428062438965,
+ "step": 1434
+ },
+ {
+ "epoch": 19.936653560506773,
+ "grad_norm": 0.25390249490737915,
+ "learning_rate": 0.0006,
+ "loss": 3.941803455352783,
+ "step": 1435
+ },
+ {
+ "epoch": 19.950633464394933,
+ "grad_norm": 0.2288687825202942,
+ "learning_rate": 0.0006,
+ "loss": 3.9385883808135986,
+ "step": 1436
+ },
+ {
+ "epoch": 19.964613368283093,
+ "grad_norm": 0.2231096774339676,
+ "learning_rate": 0.0006,
+ "loss": 3.9255237579345703,
+ "step": 1437
+ },
+ {
+ "epoch": 19.978593272171253,
+ "grad_norm": 0.20729343593120575,
+ "learning_rate": 0.0006,
+ "loss": 3.9443163871765137,
+ "step": 1438
+ },
+ {
+ "epoch": 19.992573176059416,
+ "grad_norm": 0.197743758559227,
+ "learning_rate": 0.0006,
+ "loss": 3.925455093383789,
+ "step": 1439
+ },
+ {
+ "epoch": 20.0,
+ "grad_norm": 0.23943661153316498,
+ "learning_rate": 0.0006,
+ "loss": 3.9458866119384766,
+ "step": 1440
+ },
+ {
+ "epoch": 20.0,
+ "eval_loss": 4.144192218780518,
+ "eval_runtime": 44.0278,
+ "eval_samples_per_second": 55.465,
+ "eval_steps_per_second": 3.475,
+ "step": 1440
+ },
+ {
+ "epoch": 20.01397990388816,
+ "grad_norm": 0.2032143622636795,
+ "learning_rate": 0.0006,
+ "loss": 3.9151499271392822,
+ "step": 1441
+ },
+ {
+ "epoch": 20.027959807776323,
+ "grad_norm": 0.20164789259433746,
+ "learning_rate": 0.0006,
+ "loss": 3.874115228652954,
+ "step": 1442
+ },
+ {
+ "epoch": 20.041939711664483,
+ "grad_norm": 0.20796619355678558,
+ "learning_rate": 0.0006,
+ "loss": 3.9090776443481445,
+ "step": 1443
+ },
+ {
+ "epoch": 20.055919615552643,
+ "grad_norm": 0.1999918520450592,
+ "learning_rate": 0.0006,
+ "loss": 3.926563262939453,
+ "step": 1444
+ },
+ {
+ "epoch": 20.069899519440803,
+ "grad_norm": 0.204790860414505,
+ "learning_rate": 0.0006,
+ "loss": 3.9088830947875977,
+ "step": 1445
+ },
+ {
+ "epoch": 20.083879423328966,
+ "grad_norm": 0.21507175266742706,
+ "learning_rate": 0.0006,
+ "loss": 3.916504383087158,
+ "step": 1446
+ },
+ {
+ "epoch": 20.097859327217126,
+ "grad_norm": 0.2398025095462799,
+ "learning_rate": 0.0006,
+ "loss": 3.9128990173339844,
+ "step": 1447
+ },
+ {
+ "epoch": 20.111839231105286,
+ "grad_norm": 0.26037144660949707,
+ "learning_rate": 0.0006,
+ "loss": 3.9125187397003174,
+ "step": 1448
+ },
+ {
+ "epoch": 20.125819134993446,
+ "grad_norm": 0.25564828515052795,
+ "learning_rate": 0.0006,
+ "loss": 3.891867160797119,
+ "step": 1449
+ },
+ {
+ "epoch": 20.13979903888161,
+ "grad_norm": 0.2767223119735718,
+ "learning_rate": 0.0006,
+ "loss": 3.9202775955200195,
+ "step": 1450
+ },
+ {
+ "epoch": 20.15377894276977,
+ "grad_norm": 0.27696558833122253,
+ "learning_rate": 0.0006,
+ "loss": 3.9231314659118652,
+ "step": 1451
+ },
+ {
+ "epoch": 20.16775884665793,
+ "grad_norm": 0.3054044246673584,
+ "learning_rate": 0.0006,
+ "loss": 3.918138027191162,
+ "step": 1452
+ },
+ {
+ "epoch": 20.18173875054609,
+ "grad_norm": 0.3018973171710968,
+ "learning_rate": 0.0006,
+ "loss": 3.890678882598877,
+ "step": 1453
+ },
+ {
+ "epoch": 20.195718654434252,
+ "grad_norm": 0.306232750415802,
+ "learning_rate": 0.0006,
+ "loss": 3.920753002166748,
+ "step": 1454
+ },
+ {
+ "epoch": 20.209698558322412,
+ "grad_norm": 0.29593729972839355,
+ "learning_rate": 0.0006,
+ "loss": 3.9455509185791016,
+ "step": 1455
+ },
+ {
+ "epoch": 20.22367846221057,
+ "grad_norm": 0.2937646210193634,
+ "learning_rate": 0.0006,
+ "loss": 3.9227709770202637,
+ "step": 1456
+ },
+ {
+ "epoch": 20.23765836609873,
+ "grad_norm": 0.26380231976509094,
+ "learning_rate": 0.0006,
+ "loss": 3.9097609519958496,
+ "step": 1457
+ },
+ {
+ "epoch": 20.251638269986895,
+ "grad_norm": 0.24992692470550537,
+ "learning_rate": 0.0006,
+ "loss": 3.9393627643585205,
+ "step": 1458
+ },
+ {
+ "epoch": 20.265618173875055,
+ "grad_norm": 0.270219087600708,
+ "learning_rate": 0.0006,
+ "loss": 3.929330348968506,
+ "step": 1459
+ },
+ {
+ "epoch": 20.279598077763215,
+ "grad_norm": 0.2860020399093628,
+ "learning_rate": 0.0006,
+ "loss": 3.8947913646698,
+ "step": 1460
+ },
+ {
+ "epoch": 20.293577981651374,
+ "grad_norm": 0.27494579553604126,
+ "learning_rate": 0.0006,
+ "loss": 3.9105992317199707,
+ "step": 1461
+ },
+ {
+ "epoch": 20.307557885539538,
+ "grad_norm": 0.26467713713645935,
+ "learning_rate": 0.0006,
+ "loss": 3.914632797241211,
+ "step": 1462
+ },
+ {
+ "epoch": 20.321537789427698,
+ "grad_norm": 0.25747713446617126,
+ "learning_rate": 0.0006,
+ "loss": 3.919846534729004,
+ "step": 1463
+ },
+ {
+ "epoch": 20.335517693315857,
+ "grad_norm": 0.24027711153030396,
+ "learning_rate": 0.0006,
+ "loss": 3.904740810394287,
+ "step": 1464
+ },
+ {
+ "epoch": 20.34949759720402,
+ "grad_norm": 0.24682414531707764,
+ "learning_rate": 0.0006,
+ "loss": 3.9190149307250977,
+ "step": 1465
+ },
+ {
+ "epoch": 20.36347750109218,
+ "grad_norm": 0.2619759440422058,
+ "learning_rate": 0.0006,
+ "loss": 3.9488329887390137,
+ "step": 1466
+ },
+ {
+ "epoch": 20.37745740498034,
+ "grad_norm": 0.2632448971271515,
+ "learning_rate": 0.0006,
+ "loss": 3.9216647148132324,
+ "step": 1467
+ },
+ {
+ "epoch": 20.3914373088685,
+ "grad_norm": 0.27569764852523804,
+ "learning_rate": 0.0006,
+ "loss": 3.9178895950317383,
+ "step": 1468
+ },
+ {
+ "epoch": 20.405417212756664,
+ "grad_norm": 0.2611774802207947,
+ "learning_rate": 0.0006,
+ "loss": 3.933730125427246,
+ "step": 1469
+ },
+ {
+ "epoch": 20.419397116644824,
+ "grad_norm": 0.2839447557926178,
+ "learning_rate": 0.0006,
+ "loss": 3.9261364936828613,
+ "step": 1470
+ },
+ {
+ "epoch": 20.433377020532983,
+ "grad_norm": 0.29006227850914,
+ "learning_rate": 0.0006,
+ "loss": 3.9157633781433105,
+ "step": 1471
+ },
+ {
+ "epoch": 20.447356924421143,
+ "grad_norm": 0.2809498906135559,
+ "learning_rate": 0.0006,
+ "loss": 3.9211745262145996,
+ "step": 1472
+ },
+ {
+ "epoch": 20.461336828309307,
+ "grad_norm": 0.27859532833099365,
+ "learning_rate": 0.0006,
+ "loss": 3.9115967750549316,
+ "step": 1473
+ },
+ {
+ "epoch": 20.475316732197467,
+ "grad_norm": 0.29114410281181335,
+ "learning_rate": 0.0006,
+ "loss": 3.9024441242218018,
+ "step": 1474
+ },
+ {
+ "epoch": 20.489296636085626,
+ "grad_norm": 0.2686930000782013,
+ "learning_rate": 0.0006,
+ "loss": 3.9497199058532715,
+ "step": 1475
+ },
+ {
+ "epoch": 20.503276539973786,
+ "grad_norm": 0.24120540916919708,
+ "learning_rate": 0.0006,
+ "loss": 3.9218955039978027,
+ "step": 1476
+ },
+ {
+ "epoch": 20.51725644386195,
+ "grad_norm": 0.23689547181129456,
+ "learning_rate": 0.0006,
+ "loss": 3.9410176277160645,
+ "step": 1477
+ },
+ {
+ "epoch": 20.53123634775011,
+ "grad_norm": 0.26382362842559814,
+ "learning_rate": 0.0006,
+ "loss": 3.8880343437194824,
+ "step": 1478
+ },
+ {
+ "epoch": 20.54521625163827,
+ "grad_norm": 0.21628661453723907,
+ "learning_rate": 0.0006,
+ "loss": 3.892622470855713,
+ "step": 1479
+ },
+ {
+ "epoch": 20.55919615552643,
+ "grad_norm": 0.19896996021270752,
+ "learning_rate": 0.0006,
+ "loss": 3.938734769821167,
+ "step": 1480
+ },
+ {
+ "epoch": 20.573176059414592,
+ "grad_norm": 0.20232494175434113,
+ "learning_rate": 0.0006,
+ "loss": 3.9197006225585938,
+ "step": 1481
+ },
+ {
+ "epoch": 20.587155963302752,
+ "grad_norm": 0.21807828545570374,
+ "learning_rate": 0.0006,
+ "loss": 3.9195618629455566,
+ "step": 1482
+ },
+ {
+ "epoch": 20.601135867190912,
+ "grad_norm": 0.21778680384159088,
+ "learning_rate": 0.0006,
+ "loss": 3.913395404815674,
+ "step": 1483
+ },
+ {
+ "epoch": 20.615115771079076,
+ "grad_norm": 0.21015185117721558,
+ "learning_rate": 0.0006,
+ "loss": 3.8858234882354736,
+ "step": 1484
+ },
+ {
+ "epoch": 20.629095674967235,
+ "grad_norm": 0.20131368935108185,
+ "learning_rate": 0.0006,
+ "loss": 3.927213430404663,
+ "step": 1485
+ },
+ {
+ "epoch": 20.643075578855395,
+ "grad_norm": 0.20746243000030518,
+ "learning_rate": 0.0006,
+ "loss": 3.913198471069336,
+ "step": 1486
+ },
+ {
+ "epoch": 20.657055482743555,
+ "grad_norm": 0.2024548053741455,
+ "learning_rate": 0.0006,
+ "loss": 3.923048257827759,
+ "step": 1487
+ },
+ {
+ "epoch": 20.67103538663172,
+ "grad_norm": 0.19735988974571228,
+ "learning_rate": 0.0006,
+ "loss": 3.9136500358581543,
+ "step": 1488
+ },
+ {
+ "epoch": 20.68501529051988,
+ "grad_norm": 0.19781625270843506,
+ "learning_rate": 0.0006,
+ "loss": 3.883793592453003,
+ "step": 1489
+ },
+ {
+ "epoch": 20.698995194408038,
+ "grad_norm": 0.1911996454000473,
+ "learning_rate": 0.0006,
+ "loss": 3.9078567028045654,
+ "step": 1490
+ },
+ {
+ "epoch": 20.712975098296198,
+ "grad_norm": 0.1989123821258545,
+ "learning_rate": 0.0006,
+ "loss": 3.9314043521881104,
+ "step": 1491
+ },
+ {
+ "epoch": 20.72695500218436,
+ "grad_norm": 0.18839342892169952,
+ "learning_rate": 0.0006,
+ "loss": 3.8955953121185303,
+ "step": 1492
+ },
+ {
+ "epoch": 20.74093490607252,
+ "grad_norm": 0.1944834142923355,
+ "learning_rate": 0.0006,
+ "loss": 3.9272377490997314,
+ "step": 1493
+ },
+ {
+ "epoch": 20.75491480996068,
+ "grad_norm": 0.20829126238822937,
+ "learning_rate": 0.0006,
+ "loss": 3.878857374191284,
+ "step": 1494
+ },
+ {
+ "epoch": 20.76889471384884,
+ "grad_norm": 0.21438424289226532,
+ "learning_rate": 0.0006,
+ "loss": 3.9155564308166504,
+ "step": 1495
+ },
+ {
+ "epoch": 20.782874617737004,
+ "grad_norm": 0.22309324145317078,
+ "learning_rate": 0.0006,
+ "loss": 3.9281692504882812,
+ "step": 1496
+ },
+ {
+ "epoch": 20.796854521625164,
+ "grad_norm": 0.2053767591714859,
+ "learning_rate": 0.0006,
+ "loss": 3.9096317291259766,
+ "step": 1497
+ },
+ {
+ "epoch": 20.810834425513324,
+ "grad_norm": 0.20429186522960663,
+ "learning_rate": 0.0006,
+ "loss": 3.9184865951538086,
+ "step": 1498
+ },
+ {
+ "epoch": 20.824814329401484,
+ "grad_norm": 0.21983473002910614,
+ "learning_rate": 0.0006,
+ "loss": 3.9130771160125732,
+ "step": 1499
+ },
+ {
+ "epoch": 20.838794233289647,
+ "grad_norm": 0.21649539470672607,
+ "learning_rate": 0.0006,
+ "loss": 3.921581268310547,
+ "step": 1500
+ },
+ {
+ "epoch": 20.852774137177807,
+ "grad_norm": 0.19645053148269653,
+ "learning_rate": 0.0006,
+ "loss": 3.966360092163086,
+ "step": 1501
+ },
+ {
+ "epoch": 20.866754041065967,
+ "grad_norm": 0.2126782387495041,
+ "learning_rate": 0.0006,
+ "loss": 3.9004554748535156,
+ "step": 1502
+ },
+ {
+ "epoch": 20.88073394495413,
+ "grad_norm": 0.22359658777713776,
+ "learning_rate": 0.0006,
+ "loss": 3.92336368560791,
+ "step": 1503
+ },
+ {
+ "epoch": 20.89471384884229,
+ "grad_norm": 0.2334042638540268,
+ "learning_rate": 0.0006,
+ "loss": 3.9188671112060547,
+ "step": 1504
+ },
+ {
+ "epoch": 20.90869375273045,
+ "grad_norm": 0.24595916271209717,
+ "learning_rate": 0.0006,
+ "loss": 3.9348371028900146,
+ "step": 1505
+ },
+ {
+ "epoch": 20.92267365661861,
+ "grad_norm": 0.24177910387516022,
+ "learning_rate": 0.0006,
+ "loss": 3.8796424865722656,
+ "step": 1506
+ },
+ {
+ "epoch": 20.936653560506773,
+ "grad_norm": 0.24193289875984192,
+ "learning_rate": 0.0006,
+ "loss": 3.892627716064453,
+ "step": 1507
+ },
+ {
+ "epoch": 20.950633464394933,
+ "grad_norm": 0.252849280834198,
+ "learning_rate": 0.0006,
+ "loss": 3.9300179481506348,
+ "step": 1508
+ },
+ {
+ "epoch": 20.964613368283093,
+ "grad_norm": 0.24933326244354248,
+ "learning_rate": 0.0006,
+ "loss": 3.9597225189208984,
+ "step": 1509
+ },
+ {
+ "epoch": 20.978593272171253,
+ "grad_norm": 0.23850969970226288,
+ "learning_rate": 0.0006,
+ "loss": 3.9027397632598877,
+ "step": 1510
+ },
+ {
+ "epoch": 20.992573176059416,
+ "grad_norm": 0.23298311233520508,
+ "learning_rate": 0.0006,
+ "loss": 3.9024105072021484,
+ "step": 1511
+ },
+ {
+ "epoch": 21.0,
+ "grad_norm": 0.2467455416917801,
+ "learning_rate": 0.0006,
+ "loss": 3.915929079055786,
+ "step": 1512
+ },
+ {
+ "epoch": 21.0,
+ "eval_loss": 4.136331081390381,
+ "eval_runtime": 43.9468,
+ "eval_samples_per_second": 55.567,
+ "eval_steps_per_second": 3.481,
+ "step": 1512
+ },
+ {
+ "epoch": 21.01397990388816,
+ "grad_norm": 0.2195885181427002,
+ "learning_rate": 0.0006,
+ "loss": 3.873412847518921,
+ "step": 1513
+ },
+ {
+ "epoch": 21.027959807776323,
+ "grad_norm": 0.24250614643096924,
+ "learning_rate": 0.0006,
+ "loss": 3.882302761077881,
+ "step": 1514
+ },
+ {
+ "epoch": 21.041939711664483,
+ "grad_norm": 0.249113991856575,
+ "learning_rate": 0.0006,
+ "loss": 3.9112048149108887,
+ "step": 1515
+ },
+ {
+ "epoch": 21.055919615552643,
+ "grad_norm": 0.25365301966667175,
+ "learning_rate": 0.0006,
+ "loss": 3.8625712394714355,
+ "step": 1516
+ },
+ {
+ "epoch": 21.069899519440803,
+ "grad_norm": 0.2218591272830963,
+ "learning_rate": 0.0006,
+ "loss": 3.876072406768799,
+ "step": 1517
+ },
+ {
+ "epoch": 21.083879423328966,
+ "grad_norm": 0.238582581281662,
+ "learning_rate": 0.0006,
+ "loss": 3.862060546875,
+ "step": 1518
+ },
+ {
+ "epoch": 21.097859327217126,
+ "grad_norm": 0.25051242113113403,
+ "learning_rate": 0.0006,
+ "loss": 3.905315399169922,
+ "step": 1519
+ },
+ {
+ "epoch": 21.111839231105286,
+ "grad_norm": 0.2391843944787979,
+ "learning_rate": 0.0006,
+ "loss": 3.909144401550293,
+ "step": 1520
+ },
+ {
+ "epoch": 21.125819134993446,
+ "grad_norm": 0.230543315410614,
+ "learning_rate": 0.0006,
+ "loss": 3.8856799602508545,
+ "step": 1521
+ },
+ {
+ "epoch": 21.13979903888161,
+ "grad_norm": 0.24165484309196472,
+ "learning_rate": 0.0006,
+ "loss": 3.893883228302002,
+ "step": 1522
+ },
+ {
+ "epoch": 21.15377894276977,
+ "grad_norm": 0.24657143652439117,
+ "learning_rate": 0.0006,
+ "loss": 3.901129722595215,
+ "step": 1523
+ },
+ {
+ "epoch": 21.16775884665793,
+ "grad_norm": 0.2659998834133148,
+ "learning_rate": 0.0006,
+ "loss": 3.910468101501465,
+ "step": 1524
+ },
+ {
+ "epoch": 21.18173875054609,
+ "grad_norm": 0.2673095166683197,
+ "learning_rate": 0.0006,
+ "loss": 3.917454242706299,
+ "step": 1525
+ },
+ {
+ "epoch": 21.195718654434252,
+ "grad_norm": 0.22122322022914886,
+ "learning_rate": 0.0006,
+ "loss": 3.9017257690429688,
+ "step": 1526
+ },
+ {
+ "epoch": 21.209698558322412,
+ "grad_norm": 0.21882867813110352,
+ "learning_rate": 0.0006,
+ "loss": 3.8605496883392334,
+ "step": 1527
+ },
+ {
+ "epoch": 21.22367846221057,
+ "grad_norm": 0.22335563600063324,
+ "learning_rate": 0.0006,
+ "loss": 3.88120174407959,
+ "step": 1528
+ },
+ {
+ "epoch": 21.23765836609873,
+ "grad_norm": 0.22973211109638214,
+ "learning_rate": 0.0006,
+ "loss": 3.8636834621429443,
+ "step": 1529
+ },
+ {
+ "epoch": 21.251638269986895,
+ "grad_norm": 0.2410288006067276,
+ "learning_rate": 0.0006,
+ "loss": 3.8698177337646484,
+ "step": 1530
+ },
+ {
+ "epoch": 21.265618173875055,
+ "grad_norm": 0.2454768717288971,
+ "learning_rate": 0.0006,
+ "loss": 3.905341148376465,
+ "step": 1531
+ },
+ {
+ "epoch": 21.279598077763215,
+ "grad_norm": 0.2271580696105957,
+ "learning_rate": 0.0006,
+ "loss": 3.864063262939453,
+ "step": 1532
+ },
+ {
+ "epoch": 21.293577981651374,
+ "grad_norm": 0.2200947403907776,
+ "learning_rate": 0.0006,
+ "loss": 3.8889589309692383,
+ "step": 1533
+ },
+ {
+ "epoch": 21.307557885539538,
+ "grad_norm": 0.2180824875831604,
+ "learning_rate": 0.0006,
+ "loss": 3.8873472213745117,
+ "step": 1534
+ },
+ {
+ "epoch": 21.321537789427698,
+ "grad_norm": 0.214975506067276,
+ "learning_rate": 0.0006,
+ "loss": 3.882307529449463,
+ "step": 1535
+ },
+ {
+ "epoch": 21.335517693315857,
+ "grad_norm": 0.21411260962486267,
+ "learning_rate": 0.0006,
+ "loss": 3.8861560821533203,
+ "step": 1536
+ },
+ {
+ "epoch": 21.34949759720402,
+ "grad_norm": 0.22635889053344727,
+ "learning_rate": 0.0006,
+ "loss": 3.9174342155456543,
+ "step": 1537
+ },
+ {
+ "epoch": 21.36347750109218,
+ "grad_norm": 0.22700625658035278,
+ "learning_rate": 0.0006,
+ "loss": 3.890416383743286,
+ "step": 1538
+ },
+ {
+ "epoch": 21.37745740498034,
+ "grad_norm": 0.2106025069952011,
+ "learning_rate": 0.0006,
+ "loss": 3.8672406673431396,
+ "step": 1539
+ },
+ {
+ "epoch": 21.3914373088685,
+ "grad_norm": 0.22994661331176758,
+ "learning_rate": 0.0006,
+ "loss": 3.893190383911133,
+ "step": 1540
+ },
+ {
+ "epoch": 21.405417212756664,
+ "grad_norm": 0.24701105058193207,
+ "learning_rate": 0.0006,
+ "loss": 3.898078441619873,
+ "step": 1541
+ },
+ {
+ "epoch": 21.419397116644824,
+ "grad_norm": 0.26914113759994507,
+ "learning_rate": 0.0006,
+ "loss": 3.905871868133545,
+ "step": 1542
+ },
+ {
+ "epoch": 21.433377020532983,
+ "grad_norm": 0.2904224097728729,
+ "learning_rate": 0.0006,
+ "loss": 3.8919103145599365,
+ "step": 1543
+ },
+ {
+ "epoch": 21.447356924421143,
+ "grad_norm": 0.2911844551563263,
+ "learning_rate": 0.0006,
+ "loss": 3.9073286056518555,
+ "step": 1544
+ },
+ {
+ "epoch": 21.461336828309307,
+ "grad_norm": 0.2742345929145813,
+ "learning_rate": 0.0006,
+ "loss": 3.9075546264648438,
+ "step": 1545
+ },
+ {
+ "epoch": 21.475316732197467,
+ "grad_norm": 0.2341093122959137,
+ "learning_rate": 0.0006,
+ "loss": 3.9232025146484375,
+ "step": 1546
+ },
+ {
+ "epoch": 21.489296636085626,
+ "grad_norm": 0.22808541357517242,
+ "learning_rate": 0.0006,
+ "loss": 3.9168174266815186,
+ "step": 1547
+ },
+ {
+ "epoch": 21.503276539973786,
+ "grad_norm": 0.23049889504909515,
+ "learning_rate": 0.0006,
+ "loss": 3.8850595951080322,
+ "step": 1548
+ },
+ {
+ "epoch": 21.51725644386195,
+ "grad_norm": 0.21519650518894196,
+ "learning_rate": 0.0006,
+ "loss": 3.891313076019287,
+ "step": 1549
+ },
+ {
+ "epoch": 21.53123634775011,
+ "grad_norm": 0.20999883115291595,
+ "learning_rate": 0.0006,
+ "loss": 3.894439220428467,
+ "step": 1550
+ },
+ {
+ "epoch": 21.54521625163827,
+ "grad_norm": 0.19641105830669403,
+ "learning_rate": 0.0006,
+ "loss": 3.894871473312378,
+ "step": 1551
+ },
+ {
+ "epoch": 21.55919615552643,
+ "grad_norm": 0.19108249247074127,
+ "learning_rate": 0.0006,
+ "loss": 3.905968189239502,
+ "step": 1552
+ },
+ {
+ "epoch": 21.573176059414592,
+ "grad_norm": 0.20222234725952148,
+ "learning_rate": 0.0006,
+ "loss": 3.90565824508667,
+ "step": 1553
+ },
+ {
+ "epoch": 21.587155963302752,
+ "grad_norm": 0.20620177686214447,
+ "learning_rate": 0.0006,
+ "loss": 3.9103245735168457,
+ "step": 1554
+ },
+ {
+ "epoch": 21.601135867190912,
+ "grad_norm": 0.2149713784456253,
+ "learning_rate": 0.0006,
+ "loss": 3.8864927291870117,
+ "step": 1555
+ },
+ {
+ "epoch": 21.615115771079076,
+ "grad_norm": 0.2354084551334381,
+ "learning_rate": 0.0006,
+ "loss": 3.905095100402832,
+ "step": 1556
+ },
+ {
+ "epoch": 21.629095674967235,
+ "grad_norm": 0.23949941992759705,
+ "learning_rate": 0.0006,
+ "loss": 3.901803493499756,
+ "step": 1557
+ },
+ {
+ "epoch": 21.643075578855395,
+ "grad_norm": 0.22914277017116547,
+ "learning_rate": 0.0006,
+ "loss": 3.876044273376465,
+ "step": 1558
+ },
+ {
+ "epoch": 21.657055482743555,
+ "grad_norm": 0.2363225370645523,
+ "learning_rate": 0.0006,
+ "loss": 3.910841703414917,
+ "step": 1559
+ },
+ {
+ "epoch": 21.67103538663172,
+ "grad_norm": 0.2635626792907715,
+ "learning_rate": 0.0006,
+ "loss": 3.847407579421997,
+ "step": 1560
+ },
+ {
+ "epoch": 21.68501529051988,
+ "grad_norm": 0.2499786615371704,
+ "learning_rate": 0.0006,
+ "loss": 3.8667140007019043,
+ "step": 1561
+ },
+ {
+ "epoch": 21.698995194408038,
+ "grad_norm": 0.21609611809253693,
+ "learning_rate": 0.0006,
+ "loss": 3.895470142364502,
+ "step": 1562
+ },
+ {
+ "epoch": 21.712975098296198,
+ "grad_norm": 0.2466774582862854,
+ "learning_rate": 0.0006,
+ "loss": 3.8853235244750977,
+ "step": 1563
+ },
+ {
+ "epoch": 21.72695500218436,
+ "grad_norm": 0.23791883885860443,
+ "learning_rate": 0.0006,
+ "loss": 3.899418354034424,
+ "step": 1564
+ },
+ {
+ "epoch": 21.74093490607252,
+ "grad_norm": 0.2048920840024948,
+ "learning_rate": 0.0006,
+ "loss": 3.8992419242858887,
+ "step": 1565
+ },
+ {
+ "epoch": 21.75491480996068,
+ "grad_norm": 0.22266621887683868,
+ "learning_rate": 0.0006,
+ "loss": 3.885765552520752,
+ "step": 1566
+ },
+ {
+ "epoch": 21.76889471384884,
+ "grad_norm": 0.2508748769760132,
+ "learning_rate": 0.0006,
+ "loss": 3.8797037601470947,
+ "step": 1567
+ },
+ {
+ "epoch": 21.782874617737004,
+ "grad_norm": 0.27245673537254333,
+ "learning_rate": 0.0006,
+ "loss": 3.8743176460266113,
+ "step": 1568
+ },
+ {
+ "epoch": 21.796854521625164,
+ "grad_norm": 0.25503191351890564,
+ "learning_rate": 0.0006,
+ "loss": 3.868906259536743,
+ "step": 1569
+ },
+ {
+ "epoch": 21.810834425513324,
+ "grad_norm": 0.22984394431114197,
+ "learning_rate": 0.0006,
+ "loss": 3.9051015377044678,
+ "step": 1570
+ },
+ {
+ "epoch": 21.824814329401484,
+ "grad_norm": 0.2411898821592331,
+ "learning_rate": 0.0006,
+ "loss": 3.8911490440368652,
+ "step": 1571
+ },
+ {
+ "epoch": 21.838794233289647,
+ "grad_norm": 0.22609318792819977,
+ "learning_rate": 0.0006,
+ "loss": 3.894839286804199,
+ "step": 1572
+ },
+ {
+ "epoch": 21.852774137177807,
+ "grad_norm": 0.21904583275318146,
+ "learning_rate": 0.0006,
+ "loss": 3.9314537048339844,
+ "step": 1573
+ },
+ {
+ "epoch": 21.866754041065967,
+ "grad_norm": 0.21869723498821259,
+ "learning_rate": 0.0006,
+ "loss": 3.9141433238983154,
+ "step": 1574
+ },
+ {
+ "epoch": 21.88073394495413,
+ "grad_norm": 0.21682019531726837,
+ "learning_rate": 0.0006,
+ "loss": 3.867898464202881,
+ "step": 1575
+ },
+ {
+ "epoch": 21.89471384884229,
+ "grad_norm": 0.2211964726448059,
+ "learning_rate": 0.0006,
+ "loss": 3.8892226219177246,
+ "step": 1576
+ },
+ {
+ "epoch": 21.90869375273045,
+ "grad_norm": 0.2097381353378296,
+ "learning_rate": 0.0006,
+ "loss": 3.9194154739379883,
+ "step": 1577
+ },
+ {
+ "epoch": 21.92267365661861,
+ "grad_norm": 0.21229565143585205,
+ "learning_rate": 0.0006,
+ "loss": 3.924694538116455,
+ "step": 1578
+ },
+ {
+ "epoch": 21.936653560506773,
+ "grad_norm": 0.2186083346605301,
+ "learning_rate": 0.0006,
+ "loss": 3.904440402984619,
+ "step": 1579
+ },
+ {
+ "epoch": 21.950633464394933,
+ "grad_norm": 0.21112321317195892,
+ "learning_rate": 0.0006,
+ "loss": 3.905674934387207,
+ "step": 1580
+ },
+ {
+ "epoch": 21.964613368283093,
+ "grad_norm": 0.20867373049259186,
+ "learning_rate": 0.0006,
+ "loss": 3.8761563301086426,
+ "step": 1581
+ },
+ {
+ "epoch": 21.978593272171253,
+ "grad_norm": 0.21640732884407043,
+ "learning_rate": 0.0006,
+ "loss": 3.871950149536133,
+ "step": 1582
+ },
+ {
+ "epoch": 21.992573176059416,
+ "grad_norm": 0.21920442581176758,
+ "learning_rate": 0.0006,
+ "loss": 3.8853464126586914,
+ "step": 1583
+ },
+ {
+ "epoch": 22.0,
+ "grad_norm": 0.24132665991783142,
+ "learning_rate": 0.0006,
+ "loss": 3.9012184143066406,
+ "step": 1584
+ },
+ {
+ "epoch": 22.0,
+ "eval_loss": 4.108598232269287,
+ "eval_runtime": 44.0434,
+ "eval_samples_per_second": 55.445,
+ "eval_steps_per_second": 3.474,
+ "step": 1584
+ },
+ {
+ "epoch": 22.01397990388816,
+ "grad_norm": 0.21989449858665466,
+ "learning_rate": 0.0006,
+ "loss": 3.8657469749450684,
+ "step": 1585
+ },
+ {
+ "epoch": 22.027959807776323,
+ "grad_norm": 0.20416802167892456,
+ "learning_rate": 0.0006,
+ "loss": 3.8682117462158203,
+ "step": 1586
+ },
+ {
+ "epoch": 22.041939711664483,
+ "grad_norm": 0.20651975274085999,
+ "learning_rate": 0.0006,
+ "loss": 3.8501222133636475,
+ "step": 1587
+ },
+ {
+ "epoch": 22.055919615552643,
+ "grad_norm": 0.22987176477909088,
+ "learning_rate": 0.0006,
+ "loss": 3.8830955028533936,
+ "step": 1588
+ },
+ {
+ "epoch": 22.069899519440803,
+ "grad_norm": 0.23308858275413513,
+ "learning_rate": 0.0006,
+ "loss": 3.8659040927886963,
+ "step": 1589
+ },
+ {
+ "epoch": 22.083879423328966,
+ "grad_norm": 0.2144266963005066,
+ "learning_rate": 0.0006,
+ "loss": 3.8311047554016113,
+ "step": 1590
+ },
+ {
+ "epoch": 22.097859327217126,
+ "grad_norm": 0.2052636295557022,
+ "learning_rate": 0.0006,
+ "loss": 3.8700156211853027,
+ "step": 1591
+ },
+ {
+ "epoch": 22.111839231105286,
+ "grad_norm": 0.22792384028434753,
+ "learning_rate": 0.0006,
+ "loss": 3.8799097537994385,
+ "step": 1592
+ },
+ {
+ "epoch": 22.125819134993446,
+ "grad_norm": 0.2533944249153137,
+ "learning_rate": 0.0006,
+ "loss": 3.874959945678711,
+ "step": 1593
+ },
+ {
+ "epoch": 22.13979903888161,
+ "grad_norm": 0.27126258611679077,
+ "learning_rate": 0.0006,
+ "loss": 3.863774299621582,
+ "step": 1594
+ },
+ {
+ "epoch": 22.15377894276977,
+ "grad_norm": 0.2634040415287018,
+ "learning_rate": 0.0006,
+ "loss": 3.8876869678497314,
+ "step": 1595
+ },
+ {
+ "epoch": 22.16775884665793,
+ "grad_norm": 0.267987459897995,
+ "learning_rate": 0.0006,
+ "loss": 3.871776819229126,
+ "step": 1596
+ },
+ {
+ "epoch": 22.18173875054609,
+ "grad_norm": 0.2972337305545807,
+ "learning_rate": 0.0006,
+ "loss": 3.8453969955444336,
+ "step": 1597
+ },
+ {
+ "epoch": 22.195718654434252,
+ "grad_norm": 0.3012159764766693,
+ "learning_rate": 0.0006,
+ "loss": 3.8774254322052,
+ "step": 1598
+ },
+ {
+ "epoch": 22.209698558322412,
+ "grad_norm": 0.27275875210762024,
+ "learning_rate": 0.0006,
+ "loss": 3.8558950424194336,
+ "step": 1599
+ },
+ {
+ "epoch": 22.22367846221057,
+ "grad_norm": 0.2817993462085724,
+ "learning_rate": 0.0006,
+ "loss": 3.872211217880249,
+ "step": 1600
+ },
+ {
+ "epoch": 22.23765836609873,
+ "grad_norm": 0.28823208808898926,
+ "learning_rate": 0.0006,
+ "loss": 3.847616672515869,
+ "step": 1601
+ },
+ {
+ "epoch": 22.251638269986895,
+ "grad_norm": 0.2646387815475464,
+ "learning_rate": 0.0006,
+ "loss": 3.8993802070617676,
+ "step": 1602
+ },
+ {
+ "epoch": 22.265618173875055,
+ "grad_norm": 0.27664077281951904,
+ "learning_rate": 0.0006,
+ "loss": 3.858553409576416,
+ "step": 1603
+ },
+ {
+ "epoch": 22.279598077763215,
+ "grad_norm": 0.27708905935287476,
+ "learning_rate": 0.0006,
+ "loss": 3.8691039085388184,
+ "step": 1604
+ },
+ {
+ "epoch": 22.293577981651374,
+ "grad_norm": 0.3045521378517151,
+ "learning_rate": 0.0006,
+ "loss": 3.8721439838409424,
+ "step": 1605
+ },
+ {
+ "epoch": 22.307557885539538,
+ "grad_norm": 0.3481914699077606,
+ "learning_rate": 0.0006,
+ "loss": 3.894503593444824,
+ "step": 1606
+ },
+ {
+ "epoch": 22.321537789427698,
+ "grad_norm": 0.3298046588897705,
+ "learning_rate": 0.0006,
+ "loss": 3.8420844078063965,
+ "step": 1607
+ },
+ {
+ "epoch": 22.335517693315857,
+ "grad_norm": 0.24967724084854126,
+ "learning_rate": 0.0006,
+ "loss": 3.8892619609832764,
+ "step": 1608
+ },
+ {
+ "epoch": 22.34949759720402,
+ "grad_norm": 0.22645241022109985,
+ "learning_rate": 0.0006,
+ "loss": 3.873265504837036,
+ "step": 1609
+ },
+ {
+ "epoch": 22.36347750109218,
+ "grad_norm": 0.22813954949378967,
+ "learning_rate": 0.0006,
+ "loss": 3.8658013343811035,
+ "step": 1610
+ },
+ {
+ "epoch": 22.37745740498034,
+ "grad_norm": 0.23825274407863617,
+ "learning_rate": 0.0006,
+ "loss": 3.885456085205078,
+ "step": 1611
+ },
+ {
+ "epoch": 22.3914373088685,
+ "grad_norm": 0.23612336814403534,
+ "learning_rate": 0.0006,
+ "loss": 3.851841449737549,
+ "step": 1612
+ },
+ {
+ "epoch": 22.405417212756664,
+ "grad_norm": 0.23851265013217926,
+ "learning_rate": 0.0006,
+ "loss": 3.8711647987365723,
+ "step": 1613
+ },
+ {
+ "epoch": 22.419397116644824,
+ "grad_norm": 0.22977286577224731,
+ "learning_rate": 0.0006,
+ "loss": 3.848539113998413,
+ "step": 1614
+ },
+ {
+ "epoch": 22.433377020532983,
+ "grad_norm": 0.20970143377780914,
+ "learning_rate": 0.0006,
+ "loss": 3.8709521293640137,
+ "step": 1615
+ },
+ {
+ "epoch": 22.447356924421143,
+ "grad_norm": 0.20714804530143738,
+ "learning_rate": 0.0006,
+ "loss": 3.875060558319092,
+ "step": 1616
+ },
+ {
+ "epoch": 22.461336828309307,
+ "grad_norm": 0.18881355226039886,
+ "learning_rate": 0.0006,
+ "loss": 3.8744640350341797,
+ "step": 1617
+ },
+ {
+ "epoch": 22.475316732197467,
+ "grad_norm": 0.1928759068250656,
+ "learning_rate": 0.0006,
+ "loss": 3.867971420288086,
+ "step": 1618
+ },
+ {
+ "epoch": 22.489296636085626,
+ "grad_norm": 0.18614749610424042,
+ "learning_rate": 0.0006,
+ "loss": 3.8738222122192383,
+ "step": 1619
+ },
+ {
+ "epoch": 22.503276539973786,
+ "grad_norm": 0.18614931404590607,
+ "learning_rate": 0.0006,
+ "loss": 3.8470513820648193,
+ "step": 1620
+ },
+ {
+ "epoch": 22.51725644386195,
+ "grad_norm": 0.17805059254169464,
+ "learning_rate": 0.0006,
+ "loss": 3.866396903991699,
+ "step": 1621
+ },
+ {
+ "epoch": 22.53123634775011,
+ "grad_norm": 0.16941314935684204,
+ "learning_rate": 0.0006,
+ "loss": 3.856832265853882,
+ "step": 1622
+ },
+ {
+ "epoch": 22.54521625163827,
+ "grad_norm": 0.1802310198545456,
+ "learning_rate": 0.0006,
+ "loss": 3.885653018951416,
+ "step": 1623
+ },
+ {
+ "epoch": 22.55919615552643,
+ "grad_norm": 0.1854856163263321,
+ "learning_rate": 0.0006,
+ "loss": 3.8779640197753906,
+ "step": 1624
+ },
+ {
+ "epoch": 22.573176059414592,
+ "grad_norm": 0.18765869736671448,
+ "learning_rate": 0.0006,
+ "loss": 3.8449032306671143,
+ "step": 1625
+ },
+ {
+ "epoch": 22.587155963302752,
+ "grad_norm": 0.1907789707183838,
+ "learning_rate": 0.0006,
+ "loss": 3.863029718399048,
+ "step": 1626
+ },
+ {
+ "epoch": 22.601135867190912,
+ "grad_norm": 0.19285395741462708,
+ "learning_rate": 0.0006,
+ "loss": 3.880145788192749,
+ "step": 1627
+ },
+ {
+ "epoch": 22.615115771079076,
+ "grad_norm": 0.19229751825332642,
+ "learning_rate": 0.0006,
+ "loss": 3.8521225452423096,
+ "step": 1628
+ },
+ {
+ "epoch": 22.629095674967235,
+ "grad_norm": 0.191694438457489,
+ "learning_rate": 0.0006,
+ "loss": 3.899827003479004,
+ "step": 1629
+ },
+ {
+ "epoch": 22.643075578855395,
+ "grad_norm": 0.20143048465251923,
+ "learning_rate": 0.0006,
+ "loss": 3.862064838409424,
+ "step": 1630
+ },
+ {
+ "epoch": 22.657055482743555,
+ "grad_norm": 0.1959840953350067,
+ "learning_rate": 0.0006,
+ "loss": 3.8955392837524414,
+ "step": 1631
+ },
+ {
+ "epoch": 22.67103538663172,
+ "grad_norm": 0.21454884111881256,
+ "learning_rate": 0.0006,
+ "loss": 3.8503167629241943,
+ "step": 1632
+ },
+ {
+ "epoch": 22.68501529051988,
+ "grad_norm": 0.21748484671115875,
+ "learning_rate": 0.0006,
+ "loss": 3.897134304046631,
+ "step": 1633
+ },
+ {
+ "epoch": 22.698995194408038,
+ "grad_norm": 0.21204186975955963,
+ "learning_rate": 0.0006,
+ "loss": 3.9292588233947754,
+ "step": 1634
+ },
+ {
+ "epoch": 22.712975098296198,
+ "grad_norm": 0.2112748771905899,
+ "learning_rate": 0.0006,
+ "loss": 3.89798641204834,
+ "step": 1635
+ },
+ {
+ "epoch": 22.72695500218436,
+ "grad_norm": 0.188576802611351,
+ "learning_rate": 0.0006,
+ "loss": 3.85627818107605,
+ "step": 1636
+ },
+ {
+ "epoch": 22.74093490607252,
+ "grad_norm": 0.17755994200706482,
+ "learning_rate": 0.0006,
+ "loss": 3.8480074405670166,
+ "step": 1637
+ },
+ {
+ "epoch": 22.75491480996068,
+ "grad_norm": 0.18037520349025726,
+ "learning_rate": 0.0006,
+ "loss": 3.8800172805786133,
+ "step": 1638
+ },
+ {
+ "epoch": 22.76889471384884,
+ "grad_norm": 0.19205765426158905,
+ "learning_rate": 0.0006,
+ "loss": 3.8658275604248047,
+ "step": 1639
+ },
+ {
+ "epoch": 22.782874617737004,
+ "grad_norm": 0.21801964938640594,
+ "learning_rate": 0.0006,
+ "loss": 3.8999452590942383,
+ "step": 1640
+ },
+ {
+ "epoch": 22.796854521625164,
+ "grad_norm": 0.23586086928844452,
+ "learning_rate": 0.0006,
+ "loss": 3.8660664558410645,
+ "step": 1641
+ },
+ {
+ "epoch": 22.810834425513324,
+ "grad_norm": 0.22289055585861206,
+ "learning_rate": 0.0006,
+ "loss": 3.86102557182312,
+ "step": 1642
+ },
+ {
+ "epoch": 22.824814329401484,
+ "grad_norm": 0.20695745944976807,
+ "learning_rate": 0.0006,
+ "loss": 3.8336222171783447,
+ "step": 1643
+ },
+ {
+ "epoch": 22.838794233289647,
+ "grad_norm": 0.2157406210899353,
+ "learning_rate": 0.0006,
+ "loss": 3.8923370838165283,
+ "step": 1644
+ },
+ {
+ "epoch": 22.852774137177807,
+ "grad_norm": 0.2326202690601349,
+ "learning_rate": 0.0006,
+ "loss": 3.8841443061828613,
+ "step": 1645
+ },
+ {
+ "epoch": 22.866754041065967,
+ "grad_norm": 0.2228803187608719,
+ "learning_rate": 0.0006,
+ "loss": 3.8791375160217285,
+ "step": 1646
+ },
+ {
+ "epoch": 22.88073394495413,
+ "grad_norm": 0.228999063372612,
+ "learning_rate": 0.0006,
+ "loss": 3.9005866050720215,
+ "step": 1647
+ },
+ {
+ "epoch": 22.89471384884229,
+ "grad_norm": 0.19673815369606018,
+ "learning_rate": 0.0006,
+ "loss": 3.8954291343688965,
+ "step": 1648
+ },
+ {
+ "epoch": 22.90869375273045,
+ "grad_norm": 0.1862584501504898,
+ "learning_rate": 0.0006,
+ "loss": 3.8591439723968506,
+ "step": 1649
+ },
+ {
+ "epoch": 22.92267365661861,
+ "grad_norm": 0.21360838413238525,
+ "learning_rate": 0.0006,
+ "loss": 3.862949848175049,
+ "step": 1650
+ },
+ {
+ "epoch": 22.936653560506773,
+ "grad_norm": 0.22538702189922333,
+ "learning_rate": 0.0006,
+ "loss": 3.8466529846191406,
+ "step": 1651
+ },
+ {
+ "epoch": 22.950633464394933,
+ "grad_norm": 0.21452727913856506,
+ "learning_rate": 0.0006,
+ "loss": 3.890007495880127,
+ "step": 1652
+ },
+ {
+ "epoch": 22.964613368283093,
+ "grad_norm": 0.21283482015132904,
+ "learning_rate": 0.0006,
+ "loss": 3.8820929527282715,
+ "step": 1653
+ },
+ {
+ "epoch": 22.978593272171253,
+ "grad_norm": 0.2035825103521347,
+ "learning_rate": 0.0006,
+ "loss": 3.8663241863250732,
+ "step": 1654
+ },
+ {
+ "epoch": 22.992573176059416,
+ "grad_norm": 0.22431661188602448,
+ "learning_rate": 0.0006,
+ "loss": 3.88238525390625,
+ "step": 1655
+ },
+ {
+ "epoch": 23.0,
+ "grad_norm": 0.2619943916797638,
+ "learning_rate": 0.0006,
+ "loss": 3.8482635021209717,
+ "step": 1656
+ },
+ {
+ "epoch": 23.0,
+ "eval_loss": 4.099980354309082,
+ "eval_runtime": 44.1311,
+ "eval_samples_per_second": 55.335,
+ "eval_steps_per_second": 3.467,
+ "step": 1656
+ },
+ {
+ "epoch": 23.01397990388816,
+ "grad_norm": 0.24712848663330078,
+ "learning_rate": 0.0006,
+ "loss": 3.836700916290283,
+ "step": 1657
+ },
+ {
+ "epoch": 23.027959807776323,
+ "grad_norm": 0.28568798303604126,
+ "learning_rate": 0.0006,
+ "loss": 3.8523952960968018,
+ "step": 1658
+ },
+ {
+ "epoch": 23.041939711664483,
+ "grad_norm": 0.2999744415283203,
+ "learning_rate": 0.0006,
+ "loss": 3.8229494094848633,
+ "step": 1659
+ },
+ {
+ "epoch": 23.055919615552643,
+ "grad_norm": 0.32080450654029846,
+ "learning_rate": 0.0006,
+ "loss": 3.8562774658203125,
+ "step": 1660
+ },
+ {
+ "epoch": 23.069899519440803,
+ "grad_norm": 0.293468177318573,
+ "learning_rate": 0.0006,
+ "loss": 3.889139175415039,
+ "step": 1661
+ },
+ {
+ "epoch": 23.083879423328966,
+ "grad_norm": 0.2605799436569214,
+ "learning_rate": 0.0006,
+ "loss": 3.838681221008301,
+ "step": 1662
+ },
+ {
+ "epoch": 23.097859327217126,
+ "grad_norm": 0.2656237483024597,
+ "learning_rate": 0.0006,
+ "loss": 3.8603532314300537,
+ "step": 1663
+ },
+ {
+ "epoch": 23.111839231105286,
+ "grad_norm": 0.27163293957710266,
+ "learning_rate": 0.0006,
+ "loss": 3.846987009048462,
+ "step": 1664
+ },
+ {
+ "epoch": 23.125819134993446,
+ "grad_norm": 0.2719763517379761,
+ "learning_rate": 0.0006,
+ "loss": 3.805354595184326,
+ "step": 1665
+ },
+ {
+ "epoch": 23.13979903888161,
+ "grad_norm": 0.25786274671554565,
+ "learning_rate": 0.0006,
+ "loss": 3.8486907482147217,
+ "step": 1666
+ },
+ {
+ "epoch": 23.15377894276977,
+ "grad_norm": 0.2675692141056061,
+ "learning_rate": 0.0006,
+ "loss": 3.816493511199951,
+ "step": 1667
+ },
+ {
+ "epoch": 23.16775884665793,
+ "grad_norm": 0.2711698114871979,
+ "learning_rate": 0.0006,
+ "loss": 3.851863384246826,
+ "step": 1668
+ },
+ {
+ "epoch": 23.18173875054609,
+ "grad_norm": 0.2588968873023987,
+ "learning_rate": 0.0006,
+ "loss": 3.860816717147827,
+ "step": 1669
+ },
+ {
+ "epoch": 23.195718654434252,
+ "grad_norm": 0.2458600401878357,
+ "learning_rate": 0.0006,
+ "loss": 3.8058223724365234,
+ "step": 1670
+ },
+ {
+ "epoch": 23.209698558322412,
+ "grad_norm": 0.22014005482196808,
+ "learning_rate": 0.0006,
+ "loss": 3.8686985969543457,
+ "step": 1671
+ },
+ {
+ "epoch": 23.22367846221057,
+ "grad_norm": 0.22450537979602814,
+ "learning_rate": 0.0006,
+ "loss": 3.8379364013671875,
+ "step": 1672
+ },
+ {
+ "epoch": 23.23765836609873,
+ "grad_norm": 0.22132326662540436,
+ "learning_rate": 0.0006,
+ "loss": 3.8873870372772217,
+ "step": 1673
+ },
+ {
+ "epoch": 23.251638269986895,
+ "grad_norm": 0.20994804799556732,
+ "learning_rate": 0.0006,
+ "loss": 3.821415424346924,
+ "step": 1674
+ },
+ {
+ "epoch": 23.265618173875055,
+ "grad_norm": 0.2040853649377823,
+ "learning_rate": 0.0006,
+ "loss": 3.831658124923706,
+ "step": 1675
+ },
+ {
+ "epoch": 23.279598077763215,
+ "grad_norm": 0.20878618955612183,
+ "learning_rate": 0.0006,
+ "loss": 3.838672637939453,
+ "step": 1676
+ },
+ {
+ "epoch": 23.293577981651374,
+ "grad_norm": 0.19974198937416077,
+ "learning_rate": 0.0006,
+ "loss": 3.8442561626434326,
+ "step": 1677
+ },
+ {
+ "epoch": 23.307557885539538,
+ "grad_norm": 0.20523984730243683,
+ "learning_rate": 0.0006,
+ "loss": 3.846139907836914,
+ "step": 1678
+ },
+ {
+ "epoch": 23.321537789427698,
+ "grad_norm": 0.2045847624540329,
+ "learning_rate": 0.0006,
+ "loss": 3.8597474098205566,
+ "step": 1679
+ },
+ {
+ "epoch": 23.335517693315857,
+ "grad_norm": 0.20957441627979279,
+ "learning_rate": 0.0006,
+ "loss": 3.8493881225585938,
+ "step": 1680
+ },
+ {
+ "epoch": 23.34949759720402,
+ "grad_norm": 0.2069379836320877,
+ "learning_rate": 0.0006,
+ "loss": 3.8510046005249023,
+ "step": 1681
+ },
+ {
+ "epoch": 23.36347750109218,
+ "grad_norm": 0.19627872109413147,
+ "learning_rate": 0.0006,
+ "loss": 3.844618320465088,
+ "step": 1682
+ },
+ {
+ "epoch": 23.37745740498034,
+ "grad_norm": 0.19599434733390808,
+ "learning_rate": 0.0006,
+ "loss": 3.8245465755462646,
+ "step": 1683
+ },
+ {
+ "epoch": 23.3914373088685,
+ "grad_norm": 0.2035072147846222,
+ "learning_rate": 0.0006,
+ "loss": 3.854422092437744,
+ "step": 1684
+ },
+ {
+ "epoch": 23.405417212756664,
+ "grad_norm": 0.21836814284324646,
+ "learning_rate": 0.0006,
+ "loss": 3.83512282371521,
+ "step": 1685
+ },
+ {
+ "epoch": 23.419397116644824,
+ "grad_norm": 0.22844630479812622,
+ "learning_rate": 0.0006,
+ "loss": 3.8744301795959473,
+ "step": 1686
+ },
+ {
+ "epoch": 23.433377020532983,
+ "grad_norm": 0.2259359359741211,
+ "learning_rate": 0.0006,
+ "loss": 3.8460323810577393,
+ "step": 1687
+ },
+ {
+ "epoch": 23.447356924421143,
+ "grad_norm": 0.24440120160579681,
+ "learning_rate": 0.0006,
+ "loss": 3.8543787002563477,
+ "step": 1688
+ },
+ {
+ "epoch": 23.461336828309307,
+ "grad_norm": 0.25063708424568176,
+ "learning_rate": 0.0006,
+ "loss": 3.851004123687744,
+ "step": 1689
+ },
+ {
+ "epoch": 23.475316732197467,
+ "grad_norm": 0.25515618920326233,
+ "learning_rate": 0.0006,
+ "loss": 3.8685030937194824,
+ "step": 1690
+ },
+ {
+ "epoch": 23.489296636085626,
+ "grad_norm": 0.23961050808429718,
+ "learning_rate": 0.0006,
+ "loss": 3.866792678833008,
+ "step": 1691
+ },
+ {
+ "epoch": 23.503276539973786,
+ "grad_norm": 0.20880955457687378,
+ "learning_rate": 0.0006,
+ "loss": 3.8416638374328613,
+ "step": 1692
+ },
+ {
+ "epoch": 23.51725644386195,
+ "grad_norm": 0.1989721804857254,
+ "learning_rate": 0.0006,
+ "loss": 3.8608641624450684,
+ "step": 1693
+ },
+ {
+ "epoch": 23.53123634775011,
+ "grad_norm": 0.207577183842659,
+ "learning_rate": 0.0006,
+ "loss": 3.8431811332702637,
+ "step": 1694
+ },
+ {
+ "epoch": 23.54521625163827,
+ "grad_norm": 0.20844359695911407,
+ "learning_rate": 0.0006,
+ "loss": 3.882844924926758,
+ "step": 1695
+ },
+ {
+ "epoch": 23.55919615552643,
+ "grad_norm": 0.22511139512062073,
+ "learning_rate": 0.0006,
+ "loss": 3.866156578063965,
+ "step": 1696
+ },
+ {
+ "epoch": 23.573176059414592,
+ "grad_norm": 0.21648484468460083,
+ "learning_rate": 0.0006,
+ "loss": 3.87117075920105,
+ "step": 1697
+ },
+ {
+ "epoch": 23.587155963302752,
+ "grad_norm": 0.2081802636384964,
+ "learning_rate": 0.0006,
+ "loss": 3.828132152557373,
+ "step": 1698
+ },
+ {
+ "epoch": 23.601135867190912,
+ "grad_norm": 0.2017381489276886,
+ "learning_rate": 0.0006,
+ "loss": 3.839737892150879,
+ "step": 1699
+ },
+ {
+ "epoch": 23.615115771079076,
+ "grad_norm": 0.2025786191225052,
+ "learning_rate": 0.0006,
+ "loss": 3.8787710666656494,
+ "step": 1700
+ },
+ {
+ "epoch": 23.629095674967235,
+ "grad_norm": 0.21394102275371552,
+ "learning_rate": 0.0006,
+ "loss": 3.824047088623047,
+ "step": 1701
+ },
+ {
+ "epoch": 23.643075578855395,
+ "grad_norm": 0.20749174058437347,
+ "learning_rate": 0.0006,
+ "loss": 3.877009153366089,
+ "step": 1702
+ },
+ {
+ "epoch": 23.657055482743555,
+ "grad_norm": 0.2132839858531952,
+ "learning_rate": 0.0006,
+ "loss": 3.844214916229248,
+ "step": 1703
+ },
+ {
+ "epoch": 23.67103538663172,
+ "grad_norm": 0.22408637404441833,
+ "learning_rate": 0.0006,
+ "loss": 3.8570785522460938,
+ "step": 1704
+ },
+ {
+ "epoch": 23.68501529051988,
+ "grad_norm": 0.2275897115468979,
+ "learning_rate": 0.0006,
+ "loss": 3.8599512577056885,
+ "step": 1705
+ },
+ {
+ "epoch": 23.698995194408038,
+ "grad_norm": 0.2230614721775055,
+ "learning_rate": 0.0006,
+ "loss": 3.86374568939209,
+ "step": 1706
+ },
+ {
+ "epoch": 23.712975098296198,
+ "grad_norm": 0.21873739361763,
+ "learning_rate": 0.0006,
+ "loss": 3.8530168533325195,
+ "step": 1707
+ },
+ {
+ "epoch": 23.72695500218436,
+ "grad_norm": 0.24418923258781433,
+ "learning_rate": 0.0006,
+ "loss": 3.8410465717315674,
+ "step": 1708
+ },
+ {
+ "epoch": 23.74093490607252,
+ "grad_norm": 0.24894575774669647,
+ "learning_rate": 0.0006,
+ "loss": 3.8386030197143555,
+ "step": 1709
+ },
+ {
+ "epoch": 23.75491480996068,
+ "grad_norm": 0.221230611205101,
+ "learning_rate": 0.0006,
+ "loss": 3.8116674423217773,
+ "step": 1710
+ },
+ {
+ "epoch": 23.76889471384884,
+ "grad_norm": 0.20560568571090698,
+ "learning_rate": 0.0006,
+ "loss": 3.8634426593780518,
+ "step": 1711
+ },
+ {
+ "epoch": 23.782874617737004,
+ "grad_norm": 0.20450648665428162,
+ "learning_rate": 0.0006,
+ "loss": 3.8690528869628906,
+ "step": 1712
+ },
+ {
+ "epoch": 23.796854521625164,
+ "grad_norm": 0.18996809422969818,
+ "learning_rate": 0.0006,
+ "loss": 3.8484325408935547,
+ "step": 1713
+ },
+ {
+ "epoch": 23.810834425513324,
+ "grad_norm": 0.20165087282657623,
+ "learning_rate": 0.0006,
+ "loss": 3.8823161125183105,
+ "step": 1714
+ },
+ {
+ "epoch": 23.824814329401484,
+ "grad_norm": 0.21149255335330963,
+ "learning_rate": 0.0006,
+ "loss": 3.8833112716674805,
+ "step": 1715
+ },
+ {
+ "epoch": 23.838794233289647,
+ "grad_norm": 0.21254824101924896,
+ "learning_rate": 0.0006,
+ "loss": 3.8414595127105713,
+ "step": 1716
+ },
+ {
+ "epoch": 23.852774137177807,
+ "grad_norm": 0.21313664317131042,
+ "learning_rate": 0.0006,
+ "loss": 3.8732268810272217,
+ "step": 1717
+ },
+ {
+ "epoch": 23.866754041065967,
+ "grad_norm": 0.21635662019252777,
+ "learning_rate": 0.0006,
+ "loss": 3.861222743988037,
+ "step": 1718
+ },
+ {
+ "epoch": 23.88073394495413,
+ "grad_norm": 0.20612190663814545,
+ "learning_rate": 0.0006,
+ "loss": 3.821854591369629,
+ "step": 1719
+ },
+ {
+ "epoch": 23.89471384884229,
+ "grad_norm": 0.1975104659795761,
+ "learning_rate": 0.0006,
+ "loss": 3.8815202713012695,
+ "step": 1720
+ },
+ {
+ "epoch": 23.90869375273045,
+ "grad_norm": 0.20893609523773193,
+ "learning_rate": 0.0006,
+ "loss": 3.8581607341766357,
+ "step": 1721
+ },
+ {
+ "epoch": 23.92267365661861,
+ "grad_norm": 0.2125461846590042,
+ "learning_rate": 0.0006,
+ "loss": 3.839498281478882,
+ "step": 1722
+ },
+ {
+ "epoch": 23.936653560506773,
+ "grad_norm": 0.19985878467559814,
+ "learning_rate": 0.0006,
+ "loss": 3.856555223464966,
+ "step": 1723
+ },
+ {
+ "epoch": 23.950633464394933,
+ "grad_norm": 0.1922348290681839,
+ "learning_rate": 0.0006,
+ "loss": 3.8956782817840576,
+ "step": 1724
+ },
+ {
+ "epoch": 23.964613368283093,
+ "grad_norm": 0.2191949337720871,
+ "learning_rate": 0.0006,
+ "loss": 3.8582406044006348,
+ "step": 1725
+ },
+ {
+ "epoch": 23.978593272171253,
+ "grad_norm": 0.2569248676300049,
+ "learning_rate": 0.0006,
+ "loss": 3.855678081512451,
+ "step": 1726
+ },
+ {
+ "epoch": 23.992573176059416,
+ "grad_norm": 0.2641172409057617,
+ "learning_rate": 0.0006,
+ "loss": 3.8426473140716553,
+ "step": 1727
+ },
+ {
+ "epoch": 24.0,
+ "grad_norm": 0.29637208580970764,
+ "learning_rate": 0.0006,
+ "loss": 3.843040704727173,
+ "step": 1728
+ },
+ {
+ "epoch": 24.0,
+ "eval_loss": 4.075617790222168,
+ "eval_runtime": 43.9795,
+ "eval_samples_per_second": 55.526,
+ "eval_steps_per_second": 3.479,
+ "step": 1728
+ },
+ {
+ "epoch": 24.01397990388816,
+ "grad_norm": 0.2804758548736572,
+ "learning_rate": 0.0006,
+ "loss": 3.819150924682617,
+ "step": 1729
+ },
+ {
+ "epoch": 24.027959807776323,
+ "grad_norm": 0.2796347141265869,
+ "learning_rate": 0.0006,
+ "loss": 3.8400537967681885,
+ "step": 1730
+ },
+ {
+ "epoch": 24.041939711664483,
+ "grad_norm": 0.28388649225234985,
+ "learning_rate": 0.0006,
+ "loss": 3.844595432281494,
+ "step": 1731
+ },
+ {
+ "epoch": 24.055919615552643,
+ "grad_norm": 0.2944681942462921,
+ "learning_rate": 0.0006,
+ "loss": 3.8048014640808105,
+ "step": 1732
+ },
+ {
+ "epoch": 24.069899519440803,
+ "grad_norm": 0.2956784665584564,
+ "learning_rate": 0.0006,
+ "loss": 3.8488049507141113,
+ "step": 1733
+ },
+ {
+ "epoch": 24.083879423328966,
+ "grad_norm": 0.2822059392929077,
+ "learning_rate": 0.0006,
+ "loss": 3.850322723388672,
+ "step": 1734
+ },
+ {
+ "epoch": 24.097859327217126,
+ "grad_norm": 0.3012927174568176,
+ "learning_rate": 0.0006,
+ "loss": 3.8748154640197754,
+ "step": 1735
+ },
+ {
+ "epoch": 24.111839231105286,
+ "grad_norm": 0.28868764638900757,
+ "learning_rate": 0.0006,
+ "loss": 3.8282783031463623,
+ "step": 1736
+ },
+ {
+ "epoch": 24.125819134993446,
+ "grad_norm": 0.277203768491745,
+ "learning_rate": 0.0006,
+ "loss": 3.8462908267974854,
+ "step": 1737
+ },
+ {
+ "epoch": 24.13979903888161,
+ "grad_norm": 0.2654508948326111,
+ "learning_rate": 0.0006,
+ "loss": 3.8043856620788574,
+ "step": 1738
+ },
+ {
+ "epoch": 24.15377894276977,
+ "grad_norm": 0.24425740540027618,
+ "learning_rate": 0.0006,
+ "loss": 3.8284308910369873,
+ "step": 1739
+ },
+ {
+ "epoch": 24.16775884665793,
+ "grad_norm": 0.24407348036766052,
+ "learning_rate": 0.0006,
+ "loss": 3.8489203453063965,
+ "step": 1740
+ },
+ {
+ "epoch": 24.18173875054609,
+ "grad_norm": 0.2387724369764328,
+ "learning_rate": 0.0006,
+ "loss": 3.8240389823913574,
+ "step": 1741
+ },
+ {
+ "epoch": 24.195718654434252,
+ "grad_norm": 0.2832290232181549,
+ "learning_rate": 0.0006,
+ "loss": 3.869053363800049,
+ "step": 1742
+ },
+ {
+ "epoch": 24.209698558322412,
+ "grad_norm": 0.26501718163490295,
+ "learning_rate": 0.0006,
+ "loss": 3.8624343872070312,
+ "step": 1743
+ },
+ {
+ "epoch": 24.22367846221057,
+ "grad_norm": 0.24234668910503387,
+ "learning_rate": 0.0006,
+ "loss": 3.823103904724121,
+ "step": 1744
+ },
+ {
+ "epoch": 24.23765836609873,
+ "grad_norm": 0.24160076677799225,
+ "learning_rate": 0.0006,
+ "loss": 3.8174376487731934,
+ "step": 1745
+ },
+ {
+ "epoch": 24.251638269986895,
+ "grad_norm": 0.2447604238986969,
+ "learning_rate": 0.0006,
+ "loss": 3.8345441818237305,
+ "step": 1746
+ },
+ {
+ "epoch": 24.265618173875055,
+ "grad_norm": 0.22864456474781036,
+ "learning_rate": 0.0006,
+ "loss": 3.833101272583008,
+ "step": 1747
+ },
+ {
+ "epoch": 24.279598077763215,
+ "grad_norm": 0.20429204404354095,
+ "learning_rate": 0.0006,
+ "loss": 3.8055219650268555,
+ "step": 1748
+ },
+ {
+ "epoch": 24.293577981651374,
+ "grad_norm": 0.21538510918617249,
+ "learning_rate": 0.0006,
+ "loss": 3.7929327487945557,
+ "step": 1749
+ },
+ {
+ "epoch": 24.307557885539538,
+ "grad_norm": 0.2189008593559265,
+ "learning_rate": 0.0006,
+ "loss": 3.852264881134033,
+ "step": 1750
+ },
+ {
+ "epoch": 24.321537789427698,
+ "grad_norm": 0.2228662073612213,
+ "learning_rate": 0.0006,
+ "loss": 3.831088066101074,
+ "step": 1751
+ },
+ {
+ "epoch": 24.335517693315857,
+ "grad_norm": 0.2039937973022461,
+ "learning_rate": 0.0006,
+ "loss": 3.8358256816864014,
+ "step": 1752
+ },
+ {
+ "epoch": 24.34949759720402,
+ "grad_norm": 0.19247715175151825,
+ "learning_rate": 0.0006,
+ "loss": 3.8077402114868164,
+ "step": 1753
+ },
+ {
+ "epoch": 24.36347750109218,
+ "grad_norm": 0.18301935493946075,
+ "learning_rate": 0.0006,
+ "loss": 3.81380033493042,
+ "step": 1754
+ },
+ {
+ "epoch": 24.37745740498034,
+ "grad_norm": 0.19325268268585205,
+ "learning_rate": 0.0006,
+ "loss": 3.8447322845458984,
+ "step": 1755
+ },
+ {
+ "epoch": 24.3914373088685,
+ "grad_norm": 0.2007269263267517,
+ "learning_rate": 0.0006,
+ "loss": 3.82779860496521,
+ "step": 1756
+ },
+ {
+ "epoch": 24.405417212756664,
+ "grad_norm": 0.20567037165164948,
+ "learning_rate": 0.0006,
+ "loss": 3.800354480743408,
+ "step": 1757
+ },
+ {
+ "epoch": 24.419397116644824,
+ "grad_norm": 0.22553028166294098,
+ "learning_rate": 0.0006,
+ "loss": 3.7910406589508057,
+ "step": 1758
+ },
+ {
+ "epoch": 24.433377020532983,
+ "grad_norm": 0.22697079181671143,
+ "learning_rate": 0.0006,
+ "loss": 3.857635974884033,
+ "step": 1759
+ },
+ {
+ "epoch": 24.447356924421143,
+ "grad_norm": 0.22090297937393188,
+ "learning_rate": 0.0006,
+ "loss": 3.8112804889678955,
+ "step": 1760
+ },
+ {
+ "epoch": 24.461336828309307,
+ "grad_norm": 0.24325518310070038,
+ "learning_rate": 0.0006,
+ "loss": 3.822084426879883,
+ "step": 1761
+ },
+ {
+ "epoch": 24.475316732197467,
+ "grad_norm": 0.2702929377555847,
+ "learning_rate": 0.0006,
+ "loss": 3.8307600021362305,
+ "step": 1762
+ },
+ {
+ "epoch": 24.489296636085626,
+ "grad_norm": 0.2699742317199707,
+ "learning_rate": 0.0006,
+ "loss": 3.8479247093200684,
+ "step": 1763
+ },
+ {
+ "epoch": 24.503276539973786,
+ "grad_norm": 0.2526061236858368,
+ "learning_rate": 0.0006,
+ "loss": 3.8615071773529053,
+ "step": 1764
+ },
+ {
+ "epoch": 24.51725644386195,
+ "grad_norm": 0.2633848190307617,
+ "learning_rate": 0.0006,
+ "loss": 3.8412697315216064,
+ "step": 1765
+ },
+ {
+ "epoch": 24.53123634775011,
+ "grad_norm": 0.2711184024810791,
+ "learning_rate": 0.0006,
+ "loss": 3.83647084236145,
+ "step": 1766
+ },
+ {
+ "epoch": 24.54521625163827,
+ "grad_norm": 0.2691243588924408,
+ "learning_rate": 0.0006,
+ "loss": 3.8489012718200684,
+ "step": 1767
+ },
+ {
+ "epoch": 24.55919615552643,
+ "grad_norm": 0.2580898404121399,
+ "learning_rate": 0.0006,
+ "loss": 3.8464407920837402,
+ "step": 1768
+ },
+ {
+ "epoch": 24.573176059414592,
+ "grad_norm": 0.21342119574546814,
+ "learning_rate": 0.0006,
+ "loss": 3.8279383182525635,
+ "step": 1769
+ },
+ {
+ "epoch": 24.587155963302752,
+ "grad_norm": 0.22102399170398712,
+ "learning_rate": 0.0006,
+ "loss": 3.841676712036133,
+ "step": 1770
+ },
+ {
+ "epoch": 24.601135867190912,
+ "grad_norm": 0.2882173955440521,
+ "learning_rate": 0.0006,
+ "loss": 3.825528383255005,
+ "step": 1771
+ },
+ {
+ "epoch": 24.615115771079076,
+ "grad_norm": 0.3403635323047638,
+ "learning_rate": 0.0006,
+ "loss": 3.8282246589660645,
+ "step": 1772
+ },
+ {
+ "epoch": 24.629095674967235,
+ "grad_norm": 0.32192692160606384,
+ "learning_rate": 0.0006,
+ "loss": 3.8411307334899902,
+ "step": 1773
+ },
+ {
+ "epoch": 24.643075578855395,
+ "grad_norm": 0.2534109055995941,
+ "learning_rate": 0.0006,
+ "loss": 3.843007802963257,
+ "step": 1774
+ },
+ {
+ "epoch": 24.657055482743555,
+ "grad_norm": 0.25483962893486023,
+ "learning_rate": 0.0006,
+ "loss": 3.848358154296875,
+ "step": 1775
+ },
+ {
+ "epoch": 24.67103538663172,
+ "grad_norm": 0.25175443291664124,
+ "learning_rate": 0.0006,
+ "loss": 3.8232598304748535,
+ "step": 1776
+ },
+ {
+ "epoch": 24.68501529051988,
+ "grad_norm": 0.20538510382175446,
+ "learning_rate": 0.0006,
+ "loss": 3.857635498046875,
+ "step": 1777
+ },
+ {
+ "epoch": 24.698995194408038,
+ "grad_norm": 0.240861177444458,
+ "learning_rate": 0.0006,
+ "loss": 3.83717679977417,
+ "step": 1778
+ },
+ {
+ "epoch": 24.712975098296198,
+ "grad_norm": 0.23646967113018036,
+ "learning_rate": 0.0006,
+ "loss": 3.81032133102417,
+ "step": 1779
+ },
+ {
+ "epoch": 24.72695500218436,
+ "grad_norm": 0.2164423167705536,
+ "learning_rate": 0.0006,
+ "loss": 3.807878255844116,
+ "step": 1780
+ },
+ {
+ "epoch": 24.74093490607252,
+ "grad_norm": 0.21160705387592316,
+ "learning_rate": 0.0006,
+ "loss": 3.870394468307495,
+ "step": 1781
+ },
+ {
+ "epoch": 24.75491480996068,
+ "grad_norm": 0.20284807682037354,
+ "learning_rate": 0.0006,
+ "loss": 3.842154026031494,
+ "step": 1782
+ },
+ {
+ "epoch": 24.76889471384884,
+ "grad_norm": 0.20738485455513,
+ "learning_rate": 0.0006,
+ "loss": 3.8347136974334717,
+ "step": 1783
+ },
+ {
+ "epoch": 24.782874617737004,
+ "grad_norm": 0.20253778994083405,
+ "learning_rate": 0.0006,
+ "loss": 3.814948320388794,
+ "step": 1784
+ },
+ {
+ "epoch": 24.796854521625164,
+ "grad_norm": 0.20567010343074799,
+ "learning_rate": 0.0006,
+ "loss": 3.8354592323303223,
+ "step": 1785
+ },
+ {
+ "epoch": 24.810834425513324,
+ "grad_norm": 0.20639720559120178,
+ "learning_rate": 0.0006,
+ "loss": 3.8336033821105957,
+ "step": 1786
+ },
+ {
+ "epoch": 24.824814329401484,
+ "grad_norm": 0.19978247582912445,
+ "learning_rate": 0.0006,
+ "loss": 3.8209140300750732,
+ "step": 1787
+ },
+ {
+ "epoch": 24.838794233289647,
+ "grad_norm": 0.20628373324871063,
+ "learning_rate": 0.0006,
+ "loss": 3.8372955322265625,
+ "step": 1788
+ },
+ {
+ "epoch": 24.852774137177807,
+ "grad_norm": 0.2266162782907486,
+ "learning_rate": 0.0006,
+ "loss": 3.850994110107422,
+ "step": 1789
+ },
+ {
+ "epoch": 24.866754041065967,
+ "grad_norm": 0.22567765414714813,
+ "learning_rate": 0.0006,
+ "loss": 3.8552165031433105,
+ "step": 1790
+ },
+ {
+ "epoch": 24.88073394495413,
+ "grad_norm": 0.228011354804039,
+ "learning_rate": 0.0006,
+ "loss": 3.8310747146606445,
+ "step": 1791
+ },
+ {
+ "epoch": 24.89471384884229,
+ "grad_norm": 0.23706914484500885,
+ "learning_rate": 0.0006,
+ "loss": 3.8369603157043457,
+ "step": 1792
+ },
+ {
+ "epoch": 24.90869375273045,
+ "grad_norm": 0.22669097781181335,
+ "learning_rate": 0.0006,
+ "loss": 3.8443825244903564,
+ "step": 1793
+ },
+ {
+ "epoch": 24.92267365661861,
+ "grad_norm": 0.2051001936197281,
+ "learning_rate": 0.0006,
+ "loss": 3.7938501834869385,
+ "step": 1794
+ },
+ {
+ "epoch": 24.936653560506773,
+ "grad_norm": 0.2091219276189804,
+ "learning_rate": 0.0006,
+ "loss": 3.8167076110839844,
+ "step": 1795
+ },
+ {
+ "epoch": 24.950633464394933,
+ "grad_norm": 0.20517204701900482,
+ "learning_rate": 0.0006,
+ "loss": 3.852670669555664,
+ "step": 1796
+ },
+ {
+ "epoch": 24.964613368283093,
+ "grad_norm": 0.19916993379592896,
+ "learning_rate": 0.0006,
+ "loss": 3.8410873413085938,
+ "step": 1797
+ },
+ {
+ "epoch": 24.978593272171253,
+ "grad_norm": 0.21313942968845367,
+ "learning_rate": 0.0006,
+ "loss": 3.8383948802948,
+ "step": 1798
+ },
+ {
+ "epoch": 24.992573176059416,
+ "grad_norm": 0.21042990684509277,
+ "learning_rate": 0.0006,
+ "loss": 3.8623173236846924,
+ "step": 1799
+ },
+ {
+ "epoch": 25.0,
+ "grad_norm": 0.23052045702934265,
+ "learning_rate": 0.0006,
+ "loss": 3.8646674156188965,
+ "step": 1800
+ },
+ {
+ "epoch": 25.0,
+ "eval_loss": 4.081690311431885,
+ "eval_runtime": 44.036,
+ "eval_samples_per_second": 55.455,
+ "eval_steps_per_second": 3.474,
+ "step": 1800
+ },
+ {
+ "epoch": 25.01397990388816,
+ "grad_norm": 0.22068746387958527,
+ "learning_rate": 0.0006,
+ "loss": 3.8002820014953613,
+ "step": 1801
+ },
+ {
+ "epoch": 25.027959807776323,
+ "grad_norm": 0.20711193978786469,
+ "learning_rate": 0.0006,
+ "loss": 3.787785768508911,
+ "step": 1802
+ },
+ {
+ "epoch": 25.041939711664483,
+ "grad_norm": 0.20659677684307098,
+ "learning_rate": 0.0006,
+ "loss": 3.80245304107666,
+ "step": 1803
+ },
+ {
+ "epoch": 25.055919615552643,
+ "grad_norm": 0.22891797125339508,
+ "learning_rate": 0.0006,
+ "loss": 3.784543514251709,
+ "step": 1804
+ },
+ {
+ "epoch": 25.069899519440803,
+ "grad_norm": 0.23679181933403015,
+ "learning_rate": 0.0006,
+ "loss": 3.8311429023742676,
+ "step": 1805
+ },
+ {
+ "epoch": 25.083879423328966,
+ "grad_norm": 0.2548872232437134,
+ "learning_rate": 0.0006,
+ "loss": 3.8047211170196533,
+ "step": 1806
+ },
+ {
+ "epoch": 25.097859327217126,
+ "grad_norm": 0.26181501150131226,
+ "learning_rate": 0.0006,
+ "loss": 3.837508201599121,
+ "step": 1807
+ },
+ {
+ "epoch": 25.111839231105286,
+ "grad_norm": 0.2548452913761139,
+ "learning_rate": 0.0006,
+ "loss": 3.831544876098633,
+ "step": 1808
+ },
+ {
+ "epoch": 25.125819134993446,
+ "grad_norm": 0.26177605986595154,
+ "learning_rate": 0.0006,
+ "loss": 3.805346965789795,
+ "step": 1809
+ },
+ {
+ "epoch": 25.13979903888161,
+ "grad_norm": 0.2608112394809723,
+ "learning_rate": 0.0006,
+ "loss": 3.8040924072265625,
+ "step": 1810
+ },
+ {
+ "epoch": 25.15377894276977,
+ "grad_norm": 0.2586037814617157,
+ "learning_rate": 0.0006,
+ "loss": 3.8102216720581055,
+ "step": 1811
+ },
+ {
+ "epoch": 25.16775884665793,
+ "grad_norm": 0.26258161664009094,
+ "learning_rate": 0.0006,
+ "loss": 3.8152549266815186,
+ "step": 1812
+ },
+ {
+ "epoch": 25.18173875054609,
+ "grad_norm": 0.2803022265434265,
+ "learning_rate": 0.0006,
+ "loss": 3.82576584815979,
+ "step": 1813
+ },
+ {
+ "epoch": 25.195718654434252,
+ "grad_norm": 0.2618221938610077,
+ "learning_rate": 0.0006,
+ "loss": 3.817220687866211,
+ "step": 1814
+ },
+ {
+ "epoch": 25.209698558322412,
+ "grad_norm": 0.23283469676971436,
+ "learning_rate": 0.0006,
+ "loss": 3.7999041080474854,
+ "step": 1815
+ },
+ {
+ "epoch": 25.22367846221057,
+ "grad_norm": 0.20110781490802765,
+ "learning_rate": 0.0006,
+ "loss": 3.783228874206543,
+ "step": 1816
+ },
+ {
+ "epoch": 25.23765836609873,
+ "grad_norm": 0.2231830358505249,
+ "learning_rate": 0.0006,
+ "loss": 3.8032913208007812,
+ "step": 1817
+ },
+ {
+ "epoch": 25.251638269986895,
+ "grad_norm": 0.21807286143302917,
+ "learning_rate": 0.0006,
+ "loss": 3.817028045654297,
+ "step": 1818
+ },
+ {
+ "epoch": 25.265618173875055,
+ "grad_norm": 0.22710664570331573,
+ "learning_rate": 0.0006,
+ "loss": 3.8201727867126465,
+ "step": 1819
+ },
+ {
+ "epoch": 25.279598077763215,
+ "grad_norm": 0.22299866378307343,
+ "learning_rate": 0.0006,
+ "loss": 3.8198719024658203,
+ "step": 1820
+ },
+ {
+ "epoch": 25.293577981651374,
+ "grad_norm": 0.20886564254760742,
+ "learning_rate": 0.0006,
+ "loss": 3.792414665222168,
+ "step": 1821
+ },
+ {
+ "epoch": 25.307557885539538,
+ "grad_norm": 0.20887352526187897,
+ "learning_rate": 0.0006,
+ "loss": 3.7634057998657227,
+ "step": 1822
+ },
+ {
+ "epoch": 25.321537789427698,
+ "grad_norm": 0.24560041725635529,
+ "learning_rate": 0.0006,
+ "loss": 3.79359769821167,
+ "step": 1823
+ },
+ {
+ "epoch": 25.335517693315857,
+ "grad_norm": 0.22767415642738342,
+ "learning_rate": 0.0006,
+ "loss": 3.8313469886779785,
+ "step": 1824
+ },
+ {
+ "epoch": 25.34949759720402,
+ "grad_norm": 0.21617893874645233,
+ "learning_rate": 0.0006,
+ "loss": 3.77200984954834,
+ "step": 1825
+ },
+ {
+ "epoch": 25.36347750109218,
+ "grad_norm": 0.21010833978652954,
+ "learning_rate": 0.0006,
+ "loss": 3.8042140007019043,
+ "step": 1826
+ },
+ {
+ "epoch": 25.37745740498034,
+ "grad_norm": 0.24087965488433838,
+ "learning_rate": 0.0006,
+ "loss": 3.8260979652404785,
+ "step": 1827
+ },
+ {
+ "epoch": 25.3914373088685,
+ "grad_norm": 0.2735275626182556,
+ "learning_rate": 0.0006,
+ "loss": 3.8499274253845215,
+ "step": 1828
+ },
+ {
+ "epoch": 25.405417212756664,
+ "grad_norm": 0.24831001460552216,
+ "learning_rate": 0.0006,
+ "loss": 3.8146448135375977,
+ "step": 1829
+ },
+ {
+ "epoch": 25.419397116644824,
+ "grad_norm": 0.21822866797447205,
+ "learning_rate": 0.0006,
+ "loss": 3.7845146656036377,
+ "step": 1830
+ },
+ {
+ "epoch": 25.433377020532983,
+ "grad_norm": 0.19948813319206238,
+ "learning_rate": 0.0006,
+ "loss": 3.823997974395752,
+ "step": 1831
+ },
+ {
+ "epoch": 25.447356924421143,
+ "grad_norm": 0.18342702090740204,
+ "learning_rate": 0.0006,
+ "loss": 3.8201193809509277,
+ "step": 1832
+ },
+ {
+ "epoch": 25.461336828309307,
+ "grad_norm": 0.19377560913562775,
+ "learning_rate": 0.0006,
+ "loss": 3.8069632053375244,
+ "step": 1833
+ },
+ {
+ "epoch": 25.475316732197467,
+ "grad_norm": 0.22348709404468536,
+ "learning_rate": 0.0006,
+ "loss": 3.7918643951416016,
+ "step": 1834
+ },
+ {
+ "epoch": 25.489296636085626,
+ "grad_norm": 0.24484702944755554,
+ "learning_rate": 0.0006,
+ "loss": 3.85046124458313,
+ "step": 1835
+ },
+ {
+ "epoch": 25.503276539973786,
+ "grad_norm": 0.2493520826101303,
+ "learning_rate": 0.0006,
+ "loss": 3.8043932914733887,
+ "step": 1836
+ },
+ {
+ "epoch": 25.51725644386195,
+ "grad_norm": 0.21509641408920288,
+ "learning_rate": 0.0006,
+ "loss": 3.8064627647399902,
+ "step": 1837
+ },
+ {
+ "epoch": 25.53123634775011,
+ "grad_norm": 0.21912820637226105,
+ "learning_rate": 0.0006,
+ "loss": 3.850588321685791,
+ "step": 1838
+ },
+ {
+ "epoch": 25.54521625163827,
+ "grad_norm": 0.28400927782058716,
+ "learning_rate": 0.0006,
+ "loss": 3.79818058013916,
+ "step": 1839
+ },
+ {
+ "epoch": 25.55919615552643,
+ "grad_norm": 0.32193225622177124,
+ "learning_rate": 0.0006,
+ "loss": 3.836275815963745,
+ "step": 1840
+ },
+ {
+ "epoch": 25.573176059414592,
+ "grad_norm": 0.2902325987815857,
+ "learning_rate": 0.0006,
+ "loss": 3.8080005645751953,
+ "step": 1841
+ },
+ {
+ "epoch": 25.587155963302752,
+ "grad_norm": 0.21759532392024994,
+ "learning_rate": 0.0006,
+ "loss": 3.8233771324157715,
+ "step": 1842
+ },
+ {
+ "epoch": 25.601135867190912,
+ "grad_norm": 0.19645214080810547,
+ "learning_rate": 0.0006,
+ "loss": 3.838881015777588,
+ "step": 1843
+ },
+ {
+ "epoch": 25.615115771079076,
+ "grad_norm": 0.19322903454303741,
+ "learning_rate": 0.0006,
+ "loss": 3.7870054244995117,
+ "step": 1844
+ },
+ {
+ "epoch": 25.629095674967235,
+ "grad_norm": 0.2074001580476761,
+ "learning_rate": 0.0006,
+ "loss": 3.8239974975585938,
+ "step": 1845
+ },
+ {
+ "epoch": 25.643075578855395,
+ "grad_norm": 0.2166101336479187,
+ "learning_rate": 0.0006,
+ "loss": 3.8290855884552,
+ "step": 1846
+ },
+ {
+ "epoch": 25.657055482743555,
+ "grad_norm": 0.23738539218902588,
+ "learning_rate": 0.0006,
+ "loss": 3.7993364334106445,
+ "step": 1847
+ },
+ {
+ "epoch": 25.67103538663172,
+ "grad_norm": 0.23882314562797546,
+ "learning_rate": 0.0006,
+ "loss": 3.802586078643799,
+ "step": 1848
+ },
+ {
+ "epoch": 25.68501529051988,
+ "grad_norm": 0.24168142676353455,
+ "learning_rate": 0.0006,
+ "loss": 3.8303489685058594,
+ "step": 1849
+ },
+ {
+ "epoch": 25.698995194408038,
+ "grad_norm": 0.22423343360424042,
+ "learning_rate": 0.0006,
+ "loss": 3.836228370666504,
+ "step": 1850
+ },
+ {
+ "epoch": 25.712975098296198,
+ "grad_norm": 0.23816974461078644,
+ "learning_rate": 0.0006,
+ "loss": 3.8380274772644043,
+ "step": 1851
+ },
+ {
+ "epoch": 25.72695500218436,
+ "grad_norm": 0.22465108335018158,
+ "learning_rate": 0.0006,
+ "loss": 3.8496339321136475,
+ "step": 1852
+ },
+ {
+ "epoch": 25.74093490607252,
+ "grad_norm": 0.20792442560195923,
+ "learning_rate": 0.0006,
+ "loss": 3.797853946685791,
+ "step": 1853
+ },
+ {
+ "epoch": 25.75491480996068,
+ "grad_norm": 0.20770230889320374,
+ "learning_rate": 0.0006,
+ "loss": 3.842322826385498,
+ "step": 1854
+ },
+ {
+ "epoch": 25.76889471384884,
+ "grad_norm": 0.1928192526102066,
+ "learning_rate": 0.0006,
+ "loss": 3.836540699005127,
+ "step": 1855
+ },
+ {
+ "epoch": 25.782874617737004,
+ "grad_norm": 0.19045178592205048,
+ "learning_rate": 0.0006,
+ "loss": 3.7758889198303223,
+ "step": 1856
+ },
+ {
+ "epoch": 25.796854521625164,
+ "grad_norm": 0.205548495054245,
+ "learning_rate": 0.0006,
+ "loss": 3.8244709968566895,
+ "step": 1857
+ },
+ {
+ "epoch": 25.810834425513324,
+ "grad_norm": 0.20968270301818848,
+ "learning_rate": 0.0006,
+ "loss": 3.8376216888427734,
+ "step": 1858
+ },
+ {
+ "epoch": 25.824814329401484,
+ "grad_norm": 0.18917354941368103,
+ "learning_rate": 0.0006,
+ "loss": 3.8497915267944336,
+ "step": 1859
+ },
+ {
+ "epoch": 25.838794233289647,
+ "grad_norm": 0.2050701528787613,
+ "learning_rate": 0.0006,
+ "loss": 3.819628953933716,
+ "step": 1860
+ },
+ {
+ "epoch": 25.852774137177807,
+ "grad_norm": 0.1981319785118103,
+ "learning_rate": 0.0006,
+ "loss": 3.8007922172546387,
+ "step": 1861
+ },
+ {
+ "epoch": 25.866754041065967,
+ "grad_norm": 0.19055861234664917,
+ "learning_rate": 0.0006,
+ "loss": 3.8304519653320312,
+ "step": 1862
+ },
+ {
+ "epoch": 25.88073394495413,
+ "grad_norm": 0.19255517423152924,
+ "learning_rate": 0.0006,
+ "loss": 3.833280563354492,
+ "step": 1863
+ },
+ {
+ "epoch": 25.89471384884229,
+ "grad_norm": 0.19059430062770844,
+ "learning_rate": 0.0006,
+ "loss": 3.813796281814575,
+ "step": 1864
+ },
+ {
+ "epoch": 25.90869375273045,
+ "grad_norm": 0.18581309914588928,
+ "learning_rate": 0.0006,
+ "loss": 3.8211798667907715,
+ "step": 1865
+ },
+ {
+ "epoch": 25.92267365661861,
+ "grad_norm": 0.20181003212928772,
+ "learning_rate": 0.0006,
+ "loss": 3.8380484580993652,
+ "step": 1866
+ },
+ {
+ "epoch": 25.936653560506773,
+ "grad_norm": 0.22334498167037964,
+ "learning_rate": 0.0006,
+ "loss": 3.8294434547424316,
+ "step": 1867
+ },
+ {
+ "epoch": 25.950633464394933,
+ "grad_norm": 0.20456703007221222,
+ "learning_rate": 0.0006,
+ "loss": 3.819223642349243,
+ "step": 1868
+ },
+ {
+ "epoch": 25.964613368283093,
+ "grad_norm": 0.1885606348514557,
+ "learning_rate": 0.0006,
+ "loss": 3.8110103607177734,
+ "step": 1869
+ },
+ {
+ "epoch": 25.978593272171253,
+ "grad_norm": 0.18862110376358032,
+ "learning_rate": 0.0006,
+ "loss": 3.788691997528076,
+ "step": 1870
+ },
+ {
+ "epoch": 25.992573176059416,
+ "grad_norm": 0.19802744686603546,
+ "learning_rate": 0.0006,
+ "loss": 3.8423619270324707,
+ "step": 1871
+ },
+ {
+ "epoch": 26.0,
+ "grad_norm": 0.23762032389640808,
+ "learning_rate": 0.0006,
+ "loss": 3.7848567962646484,
+ "step": 1872
+ },
+ {
+ "epoch": 26.0,
+ "eval_loss": 4.054965019226074,
+ "eval_runtime": 44.2423,
+ "eval_samples_per_second": 55.196,
+ "eval_steps_per_second": 3.458,
+ "step": 1872
+ },
+ {
+ "epoch": 26.01397990388816,
+ "grad_norm": 0.21533054113388062,
+ "learning_rate": 0.0006,
+ "loss": 3.8123154640197754,
+ "step": 1873
+ },
+ {
+ "epoch": 26.027959807776323,
+ "grad_norm": 0.25094854831695557,
+ "learning_rate": 0.0006,
+ "loss": 3.7847447395324707,
+ "step": 1874
+ },
+ {
+ "epoch": 26.041939711664483,
+ "grad_norm": 0.24042077362537384,
+ "learning_rate": 0.0006,
+ "loss": 3.8033599853515625,
+ "step": 1875
+ },
+ {
+ "epoch": 26.055919615552643,
+ "grad_norm": 0.2425149381160736,
+ "learning_rate": 0.0006,
+ "loss": 3.7828550338745117,
+ "step": 1876
+ },
+ {
+ "epoch": 26.069899519440803,
+ "grad_norm": 0.2300514280796051,
+ "learning_rate": 0.0006,
+ "loss": 3.750882148742676,
+ "step": 1877
+ },
+ {
+ "epoch": 26.083879423328966,
+ "grad_norm": 0.2513943612575531,
+ "learning_rate": 0.0006,
+ "loss": 3.800323963165283,
+ "step": 1878
+ },
+ {
+ "epoch": 26.097859327217126,
+ "grad_norm": 0.2536966800689697,
+ "learning_rate": 0.0006,
+ "loss": 3.8198962211608887,
+ "step": 1879
+ },
+ {
+ "epoch": 26.111839231105286,
+ "grad_norm": 0.24483931064605713,
+ "learning_rate": 0.0006,
+ "loss": 3.825563907623291,
+ "step": 1880
+ },
+ {
+ "epoch": 26.125819134993446,
+ "grad_norm": 0.2502584755420685,
+ "learning_rate": 0.0006,
+ "loss": 3.78756046295166,
+ "step": 1881
+ },
+ {
+ "epoch": 26.13979903888161,
+ "grad_norm": 0.2695745527744293,
+ "learning_rate": 0.0006,
+ "loss": 3.8205409049987793,
+ "step": 1882
+ },
+ {
+ "epoch": 26.15377894276977,
+ "grad_norm": 0.2873472273349762,
+ "learning_rate": 0.0006,
+ "loss": 3.7880778312683105,
+ "step": 1883
+ },
+ {
+ "epoch": 26.16775884665793,
+ "grad_norm": 0.28609949350357056,
+ "learning_rate": 0.0006,
+ "loss": 3.788517951965332,
+ "step": 1884
+ },
+ {
+ "epoch": 26.18173875054609,
+ "grad_norm": 0.28352269530296326,
+ "learning_rate": 0.0006,
+ "loss": 3.778015613555908,
+ "step": 1885
+ },
+ {
+ "epoch": 26.195718654434252,
+ "grad_norm": 0.27055084705352783,
+ "learning_rate": 0.0006,
+ "loss": 3.7857203483581543,
+ "step": 1886
+ },
+ {
+ "epoch": 26.209698558322412,
+ "grad_norm": 0.255647748708725,
+ "learning_rate": 0.0006,
+ "loss": 3.791355609893799,
+ "step": 1887
+ },
+ {
+ "epoch": 26.22367846221057,
+ "grad_norm": 0.22624439001083374,
+ "learning_rate": 0.0006,
+ "loss": 3.7624831199645996,
+ "step": 1888
+ },
+ {
+ "epoch": 26.23765836609873,
+ "grad_norm": 0.2283596396446228,
+ "learning_rate": 0.0006,
+ "loss": 3.8052897453308105,
+ "step": 1889
+ },
+ {
+ "epoch": 26.251638269986895,
+ "grad_norm": 0.2336510866880417,
+ "learning_rate": 0.0006,
+ "loss": 3.789015054702759,
+ "step": 1890
+ },
+ {
+ "epoch": 26.265618173875055,
+ "grad_norm": 0.24107608199119568,
+ "learning_rate": 0.0006,
+ "loss": 3.756551742553711,
+ "step": 1891
+ },
+ {
+ "epoch": 26.279598077763215,
+ "grad_norm": 0.22438564896583557,
+ "learning_rate": 0.0006,
+ "loss": 3.797952651977539,
+ "step": 1892
+ },
+ {
+ "epoch": 26.293577981651374,
+ "grad_norm": 0.24594341218471527,
+ "learning_rate": 0.0006,
+ "loss": 3.7925708293914795,
+ "step": 1893
+ },
+ {
+ "epoch": 26.307557885539538,
+ "grad_norm": 0.23314352333545685,
+ "learning_rate": 0.0006,
+ "loss": 3.792447328567505,
+ "step": 1894
+ },
+ {
+ "epoch": 26.321537789427698,
+ "grad_norm": 0.20870383083820343,
+ "learning_rate": 0.0006,
+ "loss": 3.7888340950012207,
+ "step": 1895
+ },
+ {
+ "epoch": 26.335517693315857,
+ "grad_norm": 0.206504687666893,
+ "learning_rate": 0.0006,
+ "loss": 3.7856602668762207,
+ "step": 1896
+ },
+ {
+ "epoch": 26.34949759720402,
+ "grad_norm": 0.20193266868591309,
+ "learning_rate": 0.0006,
+ "loss": 3.810800552368164,
+ "step": 1897
+ },
+ {
+ "epoch": 26.36347750109218,
+ "grad_norm": 0.2143869698047638,
+ "learning_rate": 0.0006,
+ "loss": 3.818742275238037,
+ "step": 1898
+ },
+ {
+ "epoch": 26.37745740498034,
+ "grad_norm": 0.21388593316078186,
+ "learning_rate": 0.0006,
+ "loss": 3.7576632499694824,
+ "step": 1899
+ },
+ {
+ "epoch": 26.3914373088685,
+ "grad_norm": 0.1933414787054062,
+ "learning_rate": 0.0006,
+ "loss": 3.802579879760742,
+ "step": 1900
+ },
+ {
+ "epoch": 26.405417212756664,
+ "grad_norm": 0.18144549429416656,
+ "learning_rate": 0.0006,
+ "loss": 3.7830452919006348,
+ "step": 1901
+ },
+ {
+ "epoch": 26.419397116644824,
+ "grad_norm": 0.20027601718902588,
+ "learning_rate": 0.0006,
+ "loss": 3.8112521171569824,
+ "step": 1902
+ },
+ {
+ "epoch": 26.433377020532983,
+ "grad_norm": 0.19402910768985748,
+ "learning_rate": 0.0006,
+ "loss": 3.778012990951538,
+ "step": 1903
+ },
+ {
+ "epoch": 26.447356924421143,
+ "grad_norm": 0.19020743668079376,
+ "learning_rate": 0.0006,
+ "loss": 3.823355197906494,
+ "step": 1904
+ },
+ {
+ "epoch": 26.461336828309307,
+ "grad_norm": 0.1885242760181427,
+ "learning_rate": 0.0006,
+ "loss": 3.782108783721924,
+ "step": 1905
+ },
+ {
+ "epoch": 26.475316732197467,
+ "grad_norm": 0.2024235874414444,
+ "learning_rate": 0.0006,
+ "loss": 3.810448408126831,
+ "step": 1906
+ },
+ {
+ "epoch": 26.489296636085626,
+ "grad_norm": 0.21408027410507202,
+ "learning_rate": 0.0006,
+ "loss": 3.8185606002807617,
+ "step": 1907
+ },
+ {
+ "epoch": 26.503276539973786,
+ "grad_norm": 0.22810906171798706,
+ "learning_rate": 0.0006,
+ "loss": 3.8052706718444824,
+ "step": 1908
+ },
+ {
+ "epoch": 26.51725644386195,
+ "grad_norm": 0.21328197419643402,
+ "learning_rate": 0.0006,
+ "loss": 3.7858219146728516,
+ "step": 1909
+ },
+ {
+ "epoch": 26.53123634775011,
+ "grad_norm": 0.20843173563480377,
+ "learning_rate": 0.0006,
+ "loss": 3.8069310188293457,
+ "step": 1910
+ },
+ {
+ "epoch": 26.54521625163827,
+ "grad_norm": 0.2072986662387848,
+ "learning_rate": 0.0006,
+ "loss": 3.794975996017456,
+ "step": 1911
+ },
+ {
+ "epoch": 26.55919615552643,
+ "grad_norm": 0.2203216850757599,
+ "learning_rate": 0.0006,
+ "loss": 3.8070101737976074,
+ "step": 1912
+ },
+ {
+ "epoch": 26.573176059414592,
+ "grad_norm": 0.23449191451072693,
+ "learning_rate": 0.0006,
+ "loss": 3.828695774078369,
+ "step": 1913
+ },
+ {
+ "epoch": 26.587155963302752,
+ "grad_norm": 0.2222008854150772,
+ "learning_rate": 0.0006,
+ "loss": 3.781275749206543,
+ "step": 1914
+ },
+ {
+ "epoch": 26.601135867190912,
+ "grad_norm": 0.22328314185142517,
+ "learning_rate": 0.0006,
+ "loss": 3.7953736782073975,
+ "step": 1915
+ },
+ {
+ "epoch": 26.615115771079076,
+ "grad_norm": 0.2377961128950119,
+ "learning_rate": 0.0006,
+ "loss": 3.8428916931152344,
+ "step": 1916
+ },
+ {
+ "epoch": 26.629095674967235,
+ "grad_norm": 0.2546147108078003,
+ "learning_rate": 0.0006,
+ "loss": 3.7940590381622314,
+ "step": 1917
+ },
+ {
+ "epoch": 26.643075578855395,
+ "grad_norm": 0.24234509468078613,
+ "learning_rate": 0.0006,
+ "loss": 3.802234172821045,
+ "step": 1918
+ },
+ {
+ "epoch": 26.657055482743555,
+ "grad_norm": 0.21294651925563812,
+ "learning_rate": 0.0006,
+ "loss": 3.8159232139587402,
+ "step": 1919
+ },
+ {
+ "epoch": 26.67103538663172,
+ "grad_norm": 0.20008964836597443,
+ "learning_rate": 0.0006,
+ "loss": 3.796949863433838,
+ "step": 1920
+ },
+ {
+ "epoch": 26.68501529051988,
+ "grad_norm": 0.21031023561954498,
+ "learning_rate": 0.0006,
+ "loss": 3.8015570640563965,
+ "step": 1921
+ },
+ {
+ "epoch": 26.698995194408038,
+ "grad_norm": 0.2185603827238083,
+ "learning_rate": 0.0006,
+ "loss": 3.8022537231445312,
+ "step": 1922
+ },
+ {
+ "epoch": 26.712975098296198,
+ "grad_norm": 0.22957198321819305,
+ "learning_rate": 0.0006,
+ "loss": 3.7859907150268555,
+ "step": 1923
+ },
+ {
+ "epoch": 26.72695500218436,
+ "grad_norm": 0.23779156804084778,
+ "learning_rate": 0.0006,
+ "loss": 3.830345630645752,
+ "step": 1924
+ },
+ {
+ "epoch": 26.74093490607252,
+ "grad_norm": 0.23577193915843964,
+ "learning_rate": 0.0006,
+ "loss": 3.777338981628418,
+ "step": 1925
+ },
+ {
+ "epoch": 26.75491480996068,
+ "grad_norm": 0.2521933913230896,
+ "learning_rate": 0.0006,
+ "loss": 3.8215396404266357,
+ "step": 1926
+ },
+ {
+ "epoch": 26.76889471384884,
+ "grad_norm": 0.25050726532936096,
+ "learning_rate": 0.0006,
+ "loss": 3.817509651184082,
+ "step": 1927
+ },
+ {
+ "epoch": 26.782874617737004,
+ "grad_norm": 0.24442453682422638,
+ "learning_rate": 0.0006,
+ "loss": 3.8033013343811035,
+ "step": 1928
+ },
+ {
+ "epoch": 26.796854521625164,
+ "grad_norm": 0.2280828058719635,
+ "learning_rate": 0.0006,
+ "loss": 3.798625946044922,
+ "step": 1929
+ },
+ {
+ "epoch": 26.810834425513324,
+ "grad_norm": 0.23072117567062378,
+ "learning_rate": 0.0006,
+ "loss": 3.8109097480773926,
+ "step": 1930
+ },
+ {
+ "epoch": 26.824814329401484,
+ "grad_norm": 0.2690806984901428,
+ "learning_rate": 0.0006,
+ "loss": 3.7707223892211914,
+ "step": 1931
+ },
+ {
+ "epoch": 26.838794233289647,
+ "grad_norm": 0.24973517656326294,
+ "learning_rate": 0.0006,
+ "loss": 3.7788357734680176,
+ "step": 1932
+ },
+ {
+ "epoch": 26.852774137177807,
+ "grad_norm": 0.24221451580524445,
+ "learning_rate": 0.0006,
+ "loss": 3.8083114624023438,
+ "step": 1933
+ },
+ {
+ "epoch": 26.866754041065967,
+ "grad_norm": 0.23499037325382233,
+ "learning_rate": 0.0006,
+ "loss": 3.845512866973877,
+ "step": 1934
+ },
+ {
+ "epoch": 26.88073394495413,
+ "grad_norm": 0.2172643095254898,
+ "learning_rate": 0.0006,
+ "loss": 3.8171584606170654,
+ "step": 1935
+ },
+ {
+ "epoch": 26.89471384884229,
+ "grad_norm": 0.19935013353824615,
+ "learning_rate": 0.0006,
+ "loss": 3.808596611022949,
+ "step": 1936
+ },
+ {
+ "epoch": 26.90869375273045,
+ "grad_norm": 0.2077745944261551,
+ "learning_rate": 0.0006,
+ "loss": 3.842836856842041,
+ "step": 1937
+ },
+ {
+ "epoch": 26.92267365661861,
+ "grad_norm": 0.20017282664775848,
+ "learning_rate": 0.0006,
+ "loss": 3.791734457015991,
+ "step": 1938
+ },
+ {
+ "epoch": 26.936653560506773,
+ "grad_norm": 0.2082037627696991,
+ "learning_rate": 0.0006,
+ "loss": 3.7987842559814453,
+ "step": 1939
+ },
+ {
+ "epoch": 26.950633464394933,
+ "grad_norm": 0.21100632846355438,
+ "learning_rate": 0.0006,
+ "loss": 3.8033156394958496,
+ "step": 1940
+ },
+ {
+ "epoch": 26.964613368283093,
+ "grad_norm": 0.2091331034898758,
+ "learning_rate": 0.0006,
+ "loss": 3.8250908851623535,
+ "step": 1941
+ },
+ {
+ "epoch": 26.978593272171253,
+ "grad_norm": 0.19728544354438782,
+ "learning_rate": 0.0006,
+ "loss": 3.7934365272521973,
+ "step": 1942
+ },
+ {
+ "epoch": 26.992573176059416,
+ "grad_norm": 0.19266465306282043,
+ "learning_rate": 0.0006,
+ "loss": 3.8095879554748535,
+ "step": 1943
+ },
+ {
+ "epoch": 27.0,
+ "grad_norm": 0.2264554500579834,
+ "learning_rate": 0.0006,
+ "loss": 3.840135335922241,
+ "step": 1944
+ },
+ {
+ "epoch": 27.0,
+ "eval_loss": 4.046233654022217,
+ "eval_runtime": 44.0648,
+ "eval_samples_per_second": 55.418,
+ "eval_steps_per_second": 3.472,
+ "step": 1944
+ },
+ {
+ "epoch": 27.01397990388816,
+ "grad_norm": 0.24101831018924713,
+ "learning_rate": 0.0006,
+ "loss": 3.7463197708129883,
+ "step": 1945
+ },
+ {
+ "epoch": 27.027959807776323,
+ "grad_norm": 0.2917300760746002,
+ "learning_rate": 0.0006,
+ "loss": 3.769083261489868,
+ "step": 1946
+ },
+ {
+ "epoch": 27.041939711664483,
+ "grad_norm": 0.30864080786705017,
+ "learning_rate": 0.0006,
+ "loss": 3.7774248123168945,
+ "step": 1947
+ },
+ {
+ "epoch": 27.055919615552643,
+ "grad_norm": 0.28574317693710327,
+ "learning_rate": 0.0006,
+ "loss": 3.759530544281006,
+ "step": 1948
+ },
+ {
+ "epoch": 27.069899519440803,
+ "grad_norm": 0.23381628096103668,
+ "learning_rate": 0.0006,
+ "loss": 3.764347791671753,
+ "step": 1949
+ },
+ {
+ "epoch": 27.083879423328966,
+ "grad_norm": 0.2717961072921753,
+ "learning_rate": 0.0006,
+ "loss": 3.785306692123413,
+ "step": 1950
+ },
+ {
+ "epoch": 27.097859327217126,
+ "grad_norm": 0.2753375470638275,
+ "learning_rate": 0.0006,
+ "loss": 3.7511696815490723,
+ "step": 1951
+ },
+ {
+ "epoch": 27.111839231105286,
+ "grad_norm": 0.260250061750412,
+ "learning_rate": 0.0006,
+ "loss": 3.7775721549987793,
+ "step": 1952
+ },
+ {
+ "epoch": 27.125819134993446,
+ "grad_norm": 0.2462741732597351,
+ "learning_rate": 0.0006,
+ "loss": 3.775203227996826,
+ "step": 1953
+ },
+ {
+ "epoch": 27.13979903888161,
+ "grad_norm": 0.23599569499492645,
+ "learning_rate": 0.0006,
+ "loss": 3.7580947875976562,
+ "step": 1954
+ },
+ {
+ "epoch": 27.15377894276977,
+ "grad_norm": 0.21749968826770782,
+ "learning_rate": 0.0006,
+ "loss": 3.778254985809326,
+ "step": 1955
+ },
+ {
+ "epoch": 27.16775884665793,
+ "grad_norm": 0.22210343182086945,
+ "learning_rate": 0.0006,
+ "loss": 3.734727144241333,
+ "step": 1956
+ },
+ {
+ "epoch": 27.18173875054609,
+ "grad_norm": 0.23376141488552094,
+ "learning_rate": 0.0006,
+ "loss": 3.7892181873321533,
+ "step": 1957
+ },
+ {
+ "epoch": 27.195718654434252,
+ "grad_norm": 0.21751847863197327,
+ "learning_rate": 0.0006,
+ "loss": 3.801621913909912,
+ "step": 1958
+ },
+ {
+ "epoch": 27.209698558322412,
+ "grad_norm": 0.22995133697986603,
+ "learning_rate": 0.0006,
+ "loss": 3.8031363487243652,
+ "step": 1959
+ },
+ {
+ "epoch": 27.22367846221057,
+ "grad_norm": 0.22716350853443146,
+ "learning_rate": 0.0006,
+ "loss": 3.7591521739959717,
+ "step": 1960
+ },
+ {
+ "epoch": 27.23765836609873,
+ "grad_norm": 0.20819596946239471,
+ "learning_rate": 0.0006,
+ "loss": 3.7988929748535156,
+ "step": 1961
+ },
+ {
+ "epoch": 27.251638269986895,
+ "grad_norm": 0.19861504435539246,
+ "learning_rate": 0.0006,
+ "loss": 3.7752838134765625,
+ "step": 1962
+ },
+ {
+ "epoch": 27.265618173875055,
+ "grad_norm": 0.1959371268749237,
+ "learning_rate": 0.0006,
+ "loss": 3.7707290649414062,
+ "step": 1963
+ },
+ {
+ "epoch": 27.279598077763215,
+ "grad_norm": 0.18772225081920624,
+ "learning_rate": 0.0006,
+ "loss": 3.7714555263519287,
+ "step": 1964
+ },
+ {
+ "epoch": 27.293577981651374,
+ "grad_norm": 0.20839282870292664,
+ "learning_rate": 0.0006,
+ "loss": 3.7857258319854736,
+ "step": 1965
+ },
+ {
+ "epoch": 27.307557885539538,
+ "grad_norm": 0.22521957755088806,
+ "learning_rate": 0.0006,
+ "loss": 3.776909351348877,
+ "step": 1966
+ },
+ {
+ "epoch": 27.321537789427698,
+ "grad_norm": 0.19533076882362366,
+ "learning_rate": 0.0006,
+ "loss": 3.8152523040771484,
+ "step": 1967
+ },
+ {
+ "epoch": 27.335517693315857,
+ "grad_norm": 0.18678881227970123,
+ "learning_rate": 0.0006,
+ "loss": 3.751555919647217,
+ "step": 1968
+ },
+ {
+ "epoch": 27.34949759720402,
+ "grad_norm": 0.18257129192352295,
+ "learning_rate": 0.0006,
+ "loss": 3.7701754570007324,
+ "step": 1969
+ },
+ {
+ "epoch": 27.36347750109218,
+ "grad_norm": 0.18191468715667725,
+ "learning_rate": 0.0006,
+ "loss": 3.817451238632202,
+ "step": 1970
+ },
+ {
+ "epoch": 27.37745740498034,
+ "grad_norm": 0.18665607273578644,
+ "learning_rate": 0.0006,
+ "loss": 3.78645658493042,
+ "step": 1971
+ },
+ {
+ "epoch": 27.3914373088685,
+ "grad_norm": 0.19604510068893433,
+ "learning_rate": 0.0006,
+ "loss": 3.7735626697540283,
+ "step": 1972
+ },
+ {
+ "epoch": 27.405417212756664,
+ "grad_norm": 0.20136640965938568,
+ "learning_rate": 0.0006,
+ "loss": 3.77310848236084,
+ "step": 1973
+ },
+ {
+ "epoch": 27.419397116644824,
+ "grad_norm": 0.19314947724342346,
+ "learning_rate": 0.0006,
+ "loss": 3.8084068298339844,
+ "step": 1974
+ },
+ {
+ "epoch": 27.433377020532983,
+ "grad_norm": 0.20761604607105255,
+ "learning_rate": 0.0006,
+ "loss": 3.80732798576355,
+ "step": 1975
+ },
+ {
+ "epoch": 27.447356924421143,
+ "grad_norm": 0.2239987850189209,
+ "learning_rate": 0.0006,
+ "loss": 3.7950329780578613,
+ "step": 1976
+ },
+ {
+ "epoch": 27.461336828309307,
+ "grad_norm": 0.22146444022655487,
+ "learning_rate": 0.0006,
+ "loss": 3.7957234382629395,
+ "step": 1977
+ },
+ {
+ "epoch": 27.475316732197467,
+ "grad_norm": 0.23218585550785065,
+ "learning_rate": 0.0006,
+ "loss": 3.806377410888672,
+ "step": 1978
+ },
+ {
+ "epoch": 27.489296636085626,
+ "grad_norm": 0.23549026250839233,
+ "learning_rate": 0.0006,
+ "loss": 3.7833383083343506,
+ "step": 1979
+ },
+ {
+ "epoch": 27.503276539973786,
+ "grad_norm": 0.24219457805156708,
+ "learning_rate": 0.0006,
+ "loss": 3.8154187202453613,
+ "step": 1980
+ },
+ {
+ "epoch": 27.51725644386195,
+ "grad_norm": 0.23703953623771667,
+ "learning_rate": 0.0006,
+ "loss": 3.7846405506134033,
+ "step": 1981
+ },
+ {
+ "epoch": 27.53123634775011,
+ "grad_norm": 0.23596109449863434,
+ "learning_rate": 0.0006,
+ "loss": 3.7698163986206055,
+ "step": 1982
+ },
+ {
+ "epoch": 27.54521625163827,
+ "grad_norm": 0.23073506355285645,
+ "learning_rate": 0.0006,
+ "loss": 3.8114185333251953,
+ "step": 1983
+ },
+ {
+ "epoch": 27.55919615552643,
+ "grad_norm": 0.24761143326759338,
+ "learning_rate": 0.0006,
+ "loss": 3.7548117637634277,
+ "step": 1984
+ },
+ {
+ "epoch": 27.573176059414592,
+ "grad_norm": 0.2834068238735199,
+ "learning_rate": 0.0006,
+ "loss": 3.7990212440490723,
+ "step": 1985
+ },
+ {
+ "epoch": 27.587155963302752,
+ "grad_norm": 0.29774922132492065,
+ "learning_rate": 0.0006,
+ "loss": 3.7845072746276855,
+ "step": 1986
+ },
+ {
+ "epoch": 27.601135867190912,
+ "grad_norm": 0.2732089161872864,
+ "learning_rate": 0.0006,
+ "loss": 3.8050694465637207,
+ "step": 1987
+ },
+ {
+ "epoch": 27.615115771079076,
+ "grad_norm": 0.24433180689811707,
+ "learning_rate": 0.0006,
+ "loss": 3.762704372406006,
+ "step": 1988
+ },
+ {
+ "epoch": 27.629095674967235,
+ "grad_norm": 0.21340419352054596,
+ "learning_rate": 0.0006,
+ "loss": 3.826023817062378,
+ "step": 1989
+ },
+ {
+ "epoch": 27.643075578855395,
+ "grad_norm": 0.22518761456012726,
+ "learning_rate": 0.0006,
+ "loss": 3.7823970317840576,
+ "step": 1990
+ },
+ {
+ "epoch": 27.657055482743555,
+ "grad_norm": 0.2196940928697586,
+ "learning_rate": 0.0006,
+ "loss": 3.787463426589966,
+ "step": 1991
+ },
+ {
+ "epoch": 27.67103538663172,
+ "grad_norm": 0.21906471252441406,
+ "learning_rate": 0.0006,
+ "loss": 3.7856104373931885,
+ "step": 1992
+ },
+ {
+ "epoch": 27.68501529051988,
+ "grad_norm": 0.2280956357717514,
+ "learning_rate": 0.0006,
+ "loss": 3.7829794883728027,
+ "step": 1993
+ },
+ {
+ "epoch": 27.698995194408038,
+ "grad_norm": 0.22567005455493927,
+ "learning_rate": 0.0006,
+ "loss": 3.762316942214966,
+ "step": 1994
+ },
+ {
+ "epoch": 27.712975098296198,
+ "grad_norm": 0.21703341603279114,
+ "learning_rate": 0.0006,
+ "loss": 3.772535800933838,
+ "step": 1995
+ },
+ {
+ "epoch": 27.72695500218436,
+ "grad_norm": 0.20586732029914856,
+ "learning_rate": 0.0006,
+ "loss": 3.775930881500244,
+ "step": 1996
+ },
+ {
+ "epoch": 27.74093490607252,
+ "grad_norm": 0.2126319408416748,
+ "learning_rate": 0.0006,
+ "loss": 3.793353796005249,
+ "step": 1997
+ },
+ {
+ "epoch": 27.75491480996068,
+ "grad_norm": 0.19664280116558075,
+ "learning_rate": 0.0006,
+ "loss": 3.7721195220947266,
+ "step": 1998
+ },
+ {
+ "epoch": 27.76889471384884,
+ "grad_norm": 0.17695854604244232,
+ "learning_rate": 0.0006,
+ "loss": 3.7931227684020996,
+ "step": 1999
+ },
+ {
+ "epoch": 27.782874617737004,
+ "grad_norm": 0.1899620145559311,
+ "learning_rate": 0.0006,
+ "loss": 3.798692226409912,
+ "step": 2000
+ },
+ {
+ "epoch": 27.796854521625164,
+ "grad_norm": 0.20334762334823608,
+ "learning_rate": 0.0006,
+ "loss": 3.774670124053955,
+ "step": 2001
+ },
+ {
+ "epoch": 27.810834425513324,
+ "grad_norm": 0.21150588989257812,
+ "learning_rate": 0.0006,
+ "loss": 3.803859233856201,
+ "step": 2002
+ },
+ {
+ "epoch": 27.824814329401484,
+ "grad_norm": 0.20425523817539215,
+ "learning_rate": 0.0006,
+ "loss": 3.810410976409912,
+ "step": 2003
+ },
+ {
+ "epoch": 27.838794233289647,
+ "grad_norm": 0.20468413829803467,
+ "learning_rate": 0.0006,
+ "loss": 3.800917625427246,
+ "step": 2004
+ },
+ {
+ "epoch": 27.852774137177807,
+ "grad_norm": 0.2113286256790161,
+ "learning_rate": 0.0006,
+ "loss": 3.7581989765167236,
+ "step": 2005
+ },
+ {
+ "epoch": 27.866754041065967,
+ "grad_norm": 0.2098054736852646,
+ "learning_rate": 0.0006,
+ "loss": 3.7921502590179443,
+ "step": 2006
+ },
+ {
+ "epoch": 27.88073394495413,
+ "grad_norm": 0.21701586246490479,
+ "learning_rate": 0.0006,
+ "loss": 3.8166770935058594,
+ "step": 2007
+ },
+ {
+ "epoch": 27.89471384884229,
+ "grad_norm": 0.2086625099182129,
+ "learning_rate": 0.0006,
+ "loss": 3.7732229232788086,
+ "step": 2008
+ },
+ {
+ "epoch": 27.90869375273045,
+ "grad_norm": 0.2186812162399292,
+ "learning_rate": 0.0006,
+ "loss": 3.8067402839660645,
+ "step": 2009
+ },
+ {
+ "epoch": 27.92267365661861,
+ "grad_norm": 0.2168985903263092,
+ "learning_rate": 0.0006,
+ "loss": 3.798159122467041,
+ "step": 2010
+ },
+ {
+ "epoch": 27.936653560506773,
+ "grad_norm": 0.23713620007038116,
+ "learning_rate": 0.0006,
+ "loss": 3.7958693504333496,
+ "step": 2011
+ },
+ {
+ "epoch": 27.950633464394933,
+ "grad_norm": 0.23592841625213623,
+ "learning_rate": 0.0006,
+ "loss": 3.795126438140869,
+ "step": 2012
+ },
+ {
+ "epoch": 27.964613368283093,
+ "grad_norm": 0.22210197150707245,
+ "learning_rate": 0.0006,
+ "loss": 3.791013240814209,
+ "step": 2013
+ },
+ {
+ "epoch": 27.978593272171253,
+ "grad_norm": 0.23190008103847504,
+ "learning_rate": 0.0006,
+ "loss": 3.813408374786377,
+ "step": 2014
+ },
+ {
+ "epoch": 27.992573176059416,
+ "grad_norm": 0.22158131003379822,
+ "learning_rate": 0.0006,
+ "loss": 3.7975716590881348,
+ "step": 2015
+ },
+ {
+ "epoch": 28.0,
+ "grad_norm": 0.2300519198179245,
+ "learning_rate": 0.0006,
+ "loss": 3.776214838027954,
+ "step": 2016
+ },
+ {
+ "epoch": 28.0,
+ "eval_loss": 4.04406213760376,
+ "eval_runtime": 44.0285,
+ "eval_samples_per_second": 55.464,
+ "eval_steps_per_second": 3.475,
+ "step": 2016
+ },
+ {
+ "epoch": 28.01397990388816,
+ "grad_norm": 0.21007688343524933,
+ "learning_rate": 0.0006,
+ "loss": 3.7366907596588135,
+ "step": 2017
+ },
+ {
+ "epoch": 28.027959807776323,
+ "grad_norm": 0.1941644549369812,
+ "learning_rate": 0.0006,
+ "loss": 3.744373321533203,
+ "step": 2018
+ },
+ {
+ "epoch": 28.041939711664483,
+ "grad_norm": 0.21308493614196777,
+ "learning_rate": 0.0006,
+ "loss": 3.7650012969970703,
+ "step": 2019
+ },
+ {
+ "epoch": 28.055919615552643,
+ "grad_norm": 0.20114868879318237,
+ "learning_rate": 0.0006,
+ "loss": 3.7652382850646973,
+ "step": 2020
+ },
+ {
+ "epoch": 28.069899519440803,
+ "grad_norm": 0.20266319811344147,
+ "learning_rate": 0.0006,
+ "loss": 3.7710442543029785,
+ "step": 2021
+ },
+ {
+ "epoch": 28.083879423328966,
+ "grad_norm": 0.205102801322937,
+ "learning_rate": 0.0006,
+ "loss": 3.7515463829040527,
+ "step": 2022
+ },
+ {
+ "epoch": 28.097859327217126,
+ "grad_norm": 0.22002041339874268,
+ "learning_rate": 0.0006,
+ "loss": 3.762019157409668,
+ "step": 2023
+ },
+ {
+ "epoch": 28.111839231105286,
+ "grad_norm": 0.2063235342502594,
+ "learning_rate": 0.0006,
+ "loss": 3.765453338623047,
+ "step": 2024
+ },
+ {
+ "epoch": 28.125819134993446,
+ "grad_norm": 0.19145619869232178,
+ "learning_rate": 0.0006,
+ "loss": 3.769411325454712,
+ "step": 2025
+ },
+ {
+ "epoch": 28.13979903888161,
+ "grad_norm": 0.19308455288410187,
+ "learning_rate": 0.0006,
+ "loss": 3.8009989261627197,
+ "step": 2026
+ },
+ {
+ "epoch": 28.15377894276977,
+ "grad_norm": 0.220510333776474,
+ "learning_rate": 0.0006,
+ "loss": 3.7582602500915527,
+ "step": 2027
+ },
+ {
+ "epoch": 28.16775884665793,
+ "grad_norm": 0.22855883836746216,
+ "learning_rate": 0.0006,
+ "loss": 3.803917407989502,
+ "step": 2028
+ },
+ {
+ "epoch": 28.18173875054609,
+ "grad_norm": 0.24206340312957764,
+ "learning_rate": 0.0006,
+ "loss": 3.764101028442383,
+ "step": 2029
+ },
+ {
+ "epoch": 28.195718654434252,
+ "grad_norm": 0.23973612487316132,
+ "learning_rate": 0.0006,
+ "loss": 3.787308931350708,
+ "step": 2030
+ },
+ {
+ "epoch": 28.209698558322412,
+ "grad_norm": 0.21400697529315948,
+ "learning_rate": 0.0006,
+ "loss": 3.7706117630004883,
+ "step": 2031
+ },
+ {
+ "epoch": 28.22367846221057,
+ "grad_norm": 0.21983976662158966,
+ "learning_rate": 0.0006,
+ "loss": 3.772731304168701,
+ "step": 2032
+ },
+ {
+ "epoch": 28.23765836609873,
+ "grad_norm": 0.22427113354206085,
+ "learning_rate": 0.0006,
+ "loss": 3.7724413871765137,
+ "step": 2033
+ },
+ {
+ "epoch": 28.251638269986895,
+ "grad_norm": 0.23665079474449158,
+ "learning_rate": 0.0006,
+ "loss": 3.769845962524414,
+ "step": 2034
+ },
+ {
+ "epoch": 28.265618173875055,
+ "grad_norm": 0.22663180530071259,
+ "learning_rate": 0.0006,
+ "loss": 3.764380931854248,
+ "step": 2035
+ },
+ {
+ "epoch": 28.279598077763215,
+ "grad_norm": 0.21094927191734314,
+ "learning_rate": 0.0006,
+ "loss": 3.7598326206207275,
+ "step": 2036
+ },
+ {
+ "epoch": 28.293577981651374,
+ "grad_norm": 0.20419518649578094,
+ "learning_rate": 0.0006,
+ "loss": 3.7737207412719727,
+ "step": 2037
+ },
+ {
+ "epoch": 28.307557885539538,
+ "grad_norm": 0.2171909660100937,
+ "learning_rate": 0.0006,
+ "loss": 3.7499468326568604,
+ "step": 2038
+ },
+ {
+ "epoch": 28.321537789427698,
+ "grad_norm": 0.22749298810958862,
+ "learning_rate": 0.0006,
+ "loss": 3.767536163330078,
+ "step": 2039
+ },
+ {
+ "epoch": 28.335517693315857,
+ "grad_norm": 0.22821909189224243,
+ "learning_rate": 0.0006,
+ "loss": 3.744386672973633,
+ "step": 2040
+ },
+ {
+ "epoch": 28.34949759720402,
+ "grad_norm": 0.2227880209684372,
+ "learning_rate": 0.0006,
+ "loss": 3.72955322265625,
+ "step": 2041
+ },
+ {
+ "epoch": 28.36347750109218,
+ "grad_norm": 0.22204327583312988,
+ "learning_rate": 0.0006,
+ "loss": 3.793854236602783,
+ "step": 2042
+ },
+ {
+ "epoch": 28.37745740498034,
+ "grad_norm": 0.21621409058570862,
+ "learning_rate": 0.0006,
+ "loss": 3.775379180908203,
+ "step": 2043
+ },
+ {
+ "epoch": 28.3914373088685,
+ "grad_norm": 0.2439221441745758,
+ "learning_rate": 0.0006,
+ "loss": 3.727464199066162,
+ "step": 2044
+ },
+ {
+ "epoch": 28.405417212756664,
+ "grad_norm": 0.24408605694770813,
+ "learning_rate": 0.0006,
+ "loss": 3.761747360229492,
+ "step": 2045
+ },
+ {
+ "epoch": 28.419397116644824,
+ "grad_norm": 0.26118648052215576,
+ "learning_rate": 0.0006,
+ "loss": 3.7587313652038574,
+ "step": 2046
+ },
+ {
+ "epoch": 28.433377020532983,
+ "grad_norm": 0.25948166847229004,
+ "learning_rate": 0.0006,
+ "loss": 3.7698440551757812,
+ "step": 2047
+ },
+ {
+ "epoch": 28.447356924421143,
+ "grad_norm": 0.26413780450820923,
+ "learning_rate": 0.0006,
+ "loss": 3.799107551574707,
+ "step": 2048
+ },
+ {
+ "epoch": 28.461336828309307,
+ "grad_norm": 0.2687148153781891,
+ "learning_rate": 0.0006,
+ "loss": 3.7564382553100586,
+ "step": 2049
+ },
+ {
+ "epoch": 28.475316732197467,
+ "grad_norm": 0.2676694691181183,
+ "learning_rate": 0.0006,
+ "loss": 3.754267692565918,
+ "step": 2050
+ },
+ {
+ "epoch": 28.489296636085626,
+ "grad_norm": 0.27275168895721436,
+ "learning_rate": 0.0006,
+ "loss": 3.802988052368164,
+ "step": 2051
+ },
+ {
+ "epoch": 28.503276539973786,
+ "grad_norm": 0.28783538937568665,
+ "learning_rate": 0.0006,
+ "loss": 3.762540817260742,
+ "step": 2052
+ },
+ {
+ "epoch": 28.51725644386195,
+ "grad_norm": 0.2628997266292572,
+ "learning_rate": 0.0006,
+ "loss": 3.7933349609375,
+ "step": 2053
+ },
+ {
+ "epoch": 28.53123634775011,
+ "grad_norm": 0.2498515099287033,
+ "learning_rate": 0.0006,
+ "loss": 3.7773094177246094,
+ "step": 2054
+ },
+ {
+ "epoch": 28.54521625163827,
+ "grad_norm": 0.22625942528247833,
+ "learning_rate": 0.0006,
+ "loss": 3.803457021713257,
+ "step": 2055
+ },
+ {
+ "epoch": 28.55919615552643,
+ "grad_norm": 0.21488751471042633,
+ "learning_rate": 0.0006,
+ "loss": 3.78924560546875,
+ "step": 2056
+ },
+ {
+ "epoch": 28.573176059414592,
+ "grad_norm": 0.22041267156600952,
+ "learning_rate": 0.0006,
+ "loss": 3.79361629486084,
+ "step": 2057
+ },
+ {
+ "epoch": 28.587155963302752,
+ "grad_norm": 0.23164816200733185,
+ "learning_rate": 0.0006,
+ "loss": 3.735037326812744,
+ "step": 2058
+ },
+ {
+ "epoch": 28.601135867190912,
+ "grad_norm": 0.22371916472911835,
+ "learning_rate": 0.0006,
+ "loss": 3.731417179107666,
+ "step": 2059
+ },
+ {
+ "epoch": 28.615115771079076,
+ "grad_norm": 0.2280314862728119,
+ "learning_rate": 0.0006,
+ "loss": 3.796154499053955,
+ "step": 2060
+ },
+ {
+ "epoch": 28.629095674967235,
+ "grad_norm": 0.21386604011058807,
+ "learning_rate": 0.0006,
+ "loss": 3.778648614883423,
+ "step": 2061
+ },
+ {
+ "epoch": 28.643075578855395,
+ "grad_norm": 0.20433050394058228,
+ "learning_rate": 0.0006,
+ "loss": 3.772826910018921,
+ "step": 2062
+ },
+ {
+ "epoch": 28.657055482743555,
+ "grad_norm": 0.2049262523651123,
+ "learning_rate": 0.0006,
+ "loss": 3.7410364151000977,
+ "step": 2063
+ },
+ {
+ "epoch": 28.67103538663172,
+ "grad_norm": 0.22041259706020355,
+ "learning_rate": 0.0006,
+ "loss": 3.796724319458008,
+ "step": 2064
+ },
+ {
+ "epoch": 28.68501529051988,
+ "grad_norm": 0.2018800675868988,
+ "learning_rate": 0.0006,
+ "loss": 3.775252342224121,
+ "step": 2065
+ },
+ {
+ "epoch": 28.698995194408038,
+ "grad_norm": 0.2159280925989151,
+ "learning_rate": 0.0006,
+ "loss": 3.766021251678467,
+ "step": 2066
+ },
+ {
+ "epoch": 28.712975098296198,
+ "grad_norm": 0.2072775512933731,
+ "learning_rate": 0.0006,
+ "loss": 3.765397548675537,
+ "step": 2067
+ },
+ {
+ "epoch": 28.72695500218436,
+ "grad_norm": 0.19592848420143127,
+ "learning_rate": 0.0006,
+ "loss": 3.8151614665985107,
+ "step": 2068
+ },
+ {
+ "epoch": 28.74093490607252,
+ "grad_norm": 0.19266322255134583,
+ "learning_rate": 0.0006,
+ "loss": 3.774945020675659,
+ "step": 2069
+ },
+ {
+ "epoch": 28.75491480996068,
+ "grad_norm": 0.19442392885684967,
+ "learning_rate": 0.0006,
+ "loss": 3.816283702850342,
+ "step": 2070
+ },
+ {
+ "epoch": 28.76889471384884,
+ "grad_norm": 0.19080746173858643,
+ "learning_rate": 0.0006,
+ "loss": 3.7784247398376465,
+ "step": 2071
+ },
+ {
+ "epoch": 28.782874617737004,
+ "grad_norm": 0.20150451362133026,
+ "learning_rate": 0.0006,
+ "loss": 3.7710249423980713,
+ "step": 2072
+ },
+ {
+ "epoch": 28.796854521625164,
+ "grad_norm": 0.1835816204547882,
+ "learning_rate": 0.0006,
+ "loss": 3.750032901763916,
+ "step": 2073
+ },
+ {
+ "epoch": 28.810834425513324,
+ "grad_norm": 0.1855502873659134,
+ "learning_rate": 0.0006,
+ "loss": 3.7276318073272705,
+ "step": 2074
+ },
+ {
+ "epoch": 28.824814329401484,
+ "grad_norm": 0.18683169782161713,
+ "learning_rate": 0.0006,
+ "loss": 3.7516555786132812,
+ "step": 2075
+ },
+ {
+ "epoch": 28.838794233289647,
+ "grad_norm": 0.2034577578306198,
+ "learning_rate": 0.0006,
+ "loss": 3.749875068664551,
+ "step": 2076
+ },
+ {
+ "epoch": 28.852774137177807,
+ "grad_norm": 0.2234230488538742,
+ "learning_rate": 0.0006,
+ "loss": 3.791429042816162,
+ "step": 2077
+ },
+ {
+ "epoch": 28.866754041065967,
+ "grad_norm": 0.25600525736808777,
+ "learning_rate": 0.0006,
+ "loss": 3.7769298553466797,
+ "step": 2078
+ },
+ {
+ "epoch": 28.88073394495413,
+ "grad_norm": 0.2741529643535614,
+ "learning_rate": 0.0006,
+ "loss": 3.771848201751709,
+ "step": 2079
+ },
+ {
+ "epoch": 28.89471384884229,
+ "grad_norm": 0.2710304260253906,
+ "learning_rate": 0.0006,
+ "loss": 3.8235626220703125,
+ "step": 2080
+ },
+ {
+ "epoch": 28.90869375273045,
+ "grad_norm": 0.25497519969940186,
+ "learning_rate": 0.0006,
+ "loss": 3.811288595199585,
+ "step": 2081
+ },
+ {
+ "epoch": 28.92267365661861,
+ "grad_norm": 0.25689464807510376,
+ "learning_rate": 0.0006,
+ "loss": 3.7848939895629883,
+ "step": 2082
+ },
+ {
+ "epoch": 28.936653560506773,
+ "grad_norm": 0.2794921398162842,
+ "learning_rate": 0.0006,
+ "loss": 3.7836732864379883,
+ "step": 2083
+ },
+ {
+ "epoch": 28.950633464394933,
+ "grad_norm": 0.24730202555656433,
+ "learning_rate": 0.0006,
+ "loss": 3.7703347206115723,
+ "step": 2084
+ },
+ {
+ "epoch": 28.964613368283093,
+ "grad_norm": 0.21078833937644958,
+ "learning_rate": 0.0006,
+ "loss": 3.7521653175354004,
+ "step": 2085
+ },
+ {
+ "epoch": 28.978593272171253,
+ "grad_norm": 0.2188870757818222,
+ "learning_rate": 0.0006,
+ "loss": 3.769604206085205,
+ "step": 2086
+ },
+ {
+ "epoch": 28.992573176059416,
+ "grad_norm": 0.20447929203510284,
+ "learning_rate": 0.0006,
+ "loss": 3.7842764854431152,
+ "step": 2087
+ },
+ {
+ "epoch": 29.0,
+ "grad_norm": 0.21607689559459686,
+ "learning_rate": 0.0006,
+ "loss": 3.7428855895996094,
+ "step": 2088
+ },
+ {
+ "epoch": 29.0,
+ "eval_loss": 4.0355753898620605,
+ "eval_runtime": 44.1435,
+ "eval_samples_per_second": 55.32,
+ "eval_steps_per_second": 3.466,
+ "step": 2088
+ },
+ {
+ "epoch": 29.01397990388816,
+ "grad_norm": 0.21270133554935455,
+ "learning_rate": 0.0006,
+ "loss": 3.7548413276672363,
+ "step": 2089
+ },
+ {
+ "epoch": 29.027959807776323,
+ "grad_norm": 0.21576301753520966,
+ "learning_rate": 0.0006,
+ "loss": 3.754613161087036,
+ "step": 2090
+ },
+ {
+ "epoch": 29.041939711664483,
+ "grad_norm": 0.2162923663854599,
+ "learning_rate": 0.0006,
+ "loss": 3.755772590637207,
+ "step": 2091
+ },
+ {
+ "epoch": 29.055919615552643,
+ "grad_norm": 0.22236663103103638,
+ "learning_rate": 0.0006,
+ "loss": 3.743497848510742,
+ "step": 2092
+ },
+ {
+ "epoch": 29.069899519440803,
+ "grad_norm": 0.2391042858362198,
+ "learning_rate": 0.0006,
+ "loss": 3.749204158782959,
+ "step": 2093
+ },
+ {
+ "epoch": 29.083879423328966,
+ "grad_norm": 0.23387965559959412,
+ "learning_rate": 0.0006,
+ "loss": 3.7286791801452637,
+ "step": 2094
+ },
+ {
+ "epoch": 29.097859327217126,
+ "grad_norm": 0.23677746951580048,
+ "learning_rate": 0.0006,
+ "loss": 3.755279541015625,
+ "step": 2095
+ },
+ {
+ "epoch": 29.111839231105286,
+ "grad_norm": 0.22771087288856506,
+ "learning_rate": 0.0006,
+ "loss": 3.722566604614258,
+ "step": 2096
+ },
+ {
+ "epoch": 29.125819134993446,
+ "grad_norm": 0.2132875621318817,
+ "learning_rate": 0.0006,
+ "loss": 3.748939037322998,
+ "step": 2097
+ },
+ {
+ "epoch": 29.13979903888161,
+ "grad_norm": 0.2033746838569641,
+ "learning_rate": 0.0006,
+ "loss": 3.7393670082092285,
+ "step": 2098
+ },
+ {
+ "epoch": 29.15377894276977,
+ "grad_norm": 0.1997237652540207,
+ "learning_rate": 0.0006,
+ "loss": 3.718498945236206,
+ "step": 2099
+ },
+ {
+ "epoch": 29.16775884665793,
+ "grad_norm": 0.19102543592453003,
+ "learning_rate": 0.0006,
+ "loss": 3.748950719833374,
+ "step": 2100
+ },
+ {
+ "epoch": 29.18173875054609,
+ "grad_norm": 0.19801580905914307,
+ "learning_rate": 0.0006,
+ "loss": 3.7123501300811768,
+ "step": 2101
+ },
+ {
+ "epoch": 29.195718654434252,
+ "grad_norm": 0.20186249911785126,
+ "learning_rate": 0.0006,
+ "loss": 3.7632713317871094,
+ "step": 2102
+ },
+ {
+ "epoch": 29.209698558322412,
+ "grad_norm": 0.22725415229797363,
+ "learning_rate": 0.0006,
+ "loss": 3.753506660461426,
+ "step": 2103
+ },
+ {
+ "epoch": 29.22367846221057,
+ "grad_norm": 0.23138119280338287,
+ "learning_rate": 0.0006,
+ "loss": 3.753282070159912,
+ "step": 2104
+ },
+ {
+ "epoch": 29.23765836609873,
+ "grad_norm": 0.23171944916248322,
+ "learning_rate": 0.0006,
+ "loss": 3.73783540725708,
+ "step": 2105
+ },
+ {
+ "epoch": 29.251638269986895,
+ "grad_norm": 0.2166522741317749,
+ "learning_rate": 0.0006,
+ "loss": 3.778803825378418,
+ "step": 2106
+ },
+ {
+ "epoch": 29.265618173875055,
+ "grad_norm": 0.2009056806564331,
+ "learning_rate": 0.0006,
+ "loss": 3.738290786743164,
+ "step": 2107
+ },
+ {
+ "epoch": 29.279598077763215,
+ "grad_norm": 0.19451597332954407,
+ "learning_rate": 0.0006,
+ "loss": 3.7553348541259766,
+ "step": 2108
+ },
+ {
+ "epoch": 29.293577981651374,
+ "grad_norm": 0.19246742129325867,
+ "learning_rate": 0.0006,
+ "loss": 3.7321622371673584,
+ "step": 2109
+ },
+ {
+ "epoch": 29.307557885539538,
+ "grad_norm": 0.18917441368103027,
+ "learning_rate": 0.0006,
+ "loss": 3.7408928871154785,
+ "step": 2110
+ },
+ {
+ "epoch": 29.321537789427698,
+ "grad_norm": 0.19067776203155518,
+ "learning_rate": 0.0006,
+ "loss": 3.780052900314331,
+ "step": 2111
+ },
+ {
+ "epoch": 29.335517693315857,
+ "grad_norm": 0.18849676847457886,
+ "learning_rate": 0.0006,
+ "loss": 3.749375820159912,
+ "step": 2112
+ },
+ {
+ "epoch": 29.34949759720402,
+ "grad_norm": 0.19713285565376282,
+ "learning_rate": 0.0006,
+ "loss": 3.7128982543945312,
+ "step": 2113
+ },
+ {
+ "epoch": 29.36347750109218,
+ "grad_norm": 0.196336030960083,
+ "learning_rate": 0.0006,
+ "loss": 3.7528390884399414,
+ "step": 2114
+ },
+ {
+ "epoch": 29.37745740498034,
+ "grad_norm": 0.19574350118637085,
+ "learning_rate": 0.0006,
+ "loss": 3.7105777263641357,
+ "step": 2115
+ },
+ {
+ "epoch": 29.3914373088685,
+ "grad_norm": 0.20396539568901062,
+ "learning_rate": 0.0006,
+ "loss": 3.782249927520752,
+ "step": 2116
+ },
+ {
+ "epoch": 29.405417212756664,
+ "grad_norm": 0.24702422320842743,
+ "learning_rate": 0.0006,
+ "loss": 3.7685647010803223,
+ "step": 2117
+ },
+ {
+ "epoch": 29.419397116644824,
+ "grad_norm": 0.2729755640029907,
+ "learning_rate": 0.0006,
+ "loss": 3.7731213569641113,
+ "step": 2118
+ },
+ {
+ "epoch": 29.433377020532983,
+ "grad_norm": 0.29240545630455017,
+ "learning_rate": 0.0006,
+ "loss": 3.770162343978882,
+ "step": 2119
+ },
+ {
+ "epoch": 29.447356924421143,
+ "grad_norm": 0.2469114065170288,
+ "learning_rate": 0.0006,
+ "loss": 3.764681339263916,
+ "step": 2120
+ },
+ {
+ "epoch": 29.461336828309307,
+ "grad_norm": 0.19837401807308197,
+ "learning_rate": 0.0006,
+ "loss": 3.7600088119506836,
+ "step": 2121
+ },
+ {
+ "epoch": 29.475316732197467,
+ "grad_norm": 0.21266621351242065,
+ "learning_rate": 0.0006,
+ "loss": 3.769454002380371,
+ "step": 2122
+ },
+ {
+ "epoch": 29.489296636085626,
+ "grad_norm": 0.25908344984054565,
+ "learning_rate": 0.0006,
+ "loss": 3.7230491638183594,
+ "step": 2123
+ },
+ {
+ "epoch": 29.503276539973786,
+ "grad_norm": 0.2914169728755951,
+ "learning_rate": 0.0006,
+ "loss": 3.767849922180176,
+ "step": 2124
+ },
+ {
+ "epoch": 29.51725644386195,
+ "grad_norm": 0.2796176075935364,
+ "learning_rate": 0.0006,
+ "loss": 3.741734266281128,
+ "step": 2125
+ },
+ {
+ "epoch": 29.53123634775011,
+ "grad_norm": 0.276309996843338,
+ "learning_rate": 0.0006,
+ "loss": 3.8001914024353027,
+ "step": 2126
+ },
+ {
+ "epoch": 29.54521625163827,
+ "grad_norm": 0.26512834429740906,
+ "learning_rate": 0.0006,
+ "loss": 3.7741384506225586,
+ "step": 2127
+ },
+ {
+ "epoch": 29.55919615552643,
+ "grad_norm": 0.26514101028442383,
+ "learning_rate": 0.0006,
+ "loss": 3.7466959953308105,
+ "step": 2128
+ },
+ {
+ "epoch": 29.573176059414592,
+ "grad_norm": 0.24121330678462982,
+ "learning_rate": 0.0006,
+ "loss": 3.759542465209961,
+ "step": 2129
+ },
+ {
+ "epoch": 29.587155963302752,
+ "grad_norm": 0.2264087200164795,
+ "learning_rate": 0.0006,
+ "loss": 3.791344165802002,
+ "step": 2130
+ },
+ {
+ "epoch": 29.601135867190912,
+ "grad_norm": 0.21915403008460999,
+ "learning_rate": 0.0006,
+ "loss": 3.7540485858917236,
+ "step": 2131
+ },
+ {
+ "epoch": 29.615115771079076,
+ "grad_norm": 0.20453961193561554,
+ "learning_rate": 0.0006,
+ "loss": 3.765617609024048,
+ "step": 2132
+ },
+ {
+ "epoch": 29.629095674967235,
+ "grad_norm": 0.2194051444530487,
+ "learning_rate": 0.0006,
+ "loss": 3.7664294242858887,
+ "step": 2133
+ },
+ {
+ "epoch": 29.643075578855395,
+ "grad_norm": 0.21926000714302063,
+ "learning_rate": 0.0006,
+ "loss": 3.7551684379577637,
+ "step": 2134
+ },
+ {
+ "epoch": 29.657055482743555,
+ "grad_norm": 0.20835602283477783,
+ "learning_rate": 0.0006,
+ "loss": 3.7654306888580322,
+ "step": 2135
+ },
+ {
+ "epoch": 29.67103538663172,
+ "grad_norm": 0.23094356060028076,
+ "learning_rate": 0.0006,
+ "loss": 3.7847180366516113,
+ "step": 2136
+ },
+ {
+ "epoch": 29.68501529051988,
+ "grad_norm": 0.23871271312236786,
+ "learning_rate": 0.0006,
+ "loss": 3.789036273956299,
+ "step": 2137
+ },
+ {
+ "epoch": 29.698995194408038,
+ "grad_norm": 0.22263272106647491,
+ "learning_rate": 0.0006,
+ "loss": 3.7677512168884277,
+ "step": 2138
+ },
+ {
+ "epoch": 29.712975098296198,
+ "grad_norm": 0.2293892651796341,
+ "learning_rate": 0.0006,
+ "loss": 3.777097225189209,
+ "step": 2139
+ },
+ {
+ "epoch": 29.72695500218436,
+ "grad_norm": 0.21068568527698517,
+ "learning_rate": 0.0006,
+ "loss": 3.785336494445801,
+ "step": 2140
+ },
+ {
+ "epoch": 29.74093490607252,
+ "grad_norm": 0.19600282609462738,
+ "learning_rate": 0.0006,
+ "loss": 3.7363505363464355,
+ "step": 2141
+ },
+ {
+ "epoch": 29.75491480996068,
+ "grad_norm": 0.20053936541080475,
+ "learning_rate": 0.0006,
+ "loss": 3.753859043121338,
+ "step": 2142
+ },
+ {
+ "epoch": 29.76889471384884,
+ "grad_norm": 0.22790539264678955,
+ "learning_rate": 0.0006,
+ "loss": 3.749492645263672,
+ "step": 2143
+ },
+ {
+ "epoch": 29.782874617737004,
+ "grad_norm": 0.26042407751083374,
+ "learning_rate": 0.0006,
+ "loss": 3.7905430793762207,
+ "step": 2144
+ },
+ {
+ "epoch": 29.796854521625164,
+ "grad_norm": 0.2753683626651764,
+ "learning_rate": 0.0006,
+ "loss": 3.756442070007324,
+ "step": 2145
+ },
+ {
+ "epoch": 29.810834425513324,
+ "grad_norm": 0.2795007526874542,
+ "learning_rate": 0.0006,
+ "loss": 3.7691903114318848,
+ "step": 2146
+ },
+ {
+ "epoch": 29.824814329401484,
+ "grad_norm": 0.2461438924074173,
+ "learning_rate": 0.0006,
+ "loss": 3.7573065757751465,
+ "step": 2147
+ },
+ {
+ "epoch": 29.838794233289647,
+ "grad_norm": 0.21051941812038422,
+ "learning_rate": 0.0006,
+ "loss": 3.7540078163146973,
+ "step": 2148
+ },
+ {
+ "epoch": 29.852774137177807,
+ "grad_norm": 0.197485089302063,
+ "learning_rate": 0.0006,
+ "loss": 3.734403133392334,
+ "step": 2149
+ },
+ {
+ "epoch": 29.866754041065967,
+ "grad_norm": 0.203064426779747,
+ "learning_rate": 0.0006,
+ "loss": 3.7888364791870117,
+ "step": 2150
+ },
+ {
+ "epoch": 29.88073394495413,
+ "grad_norm": 0.2000301480293274,
+ "learning_rate": 0.0006,
+ "loss": 3.7444958686828613,
+ "step": 2151
+ },
+ {
+ "epoch": 29.89471384884229,
+ "grad_norm": 0.20492053031921387,
+ "learning_rate": 0.0006,
+ "loss": 3.7878224849700928,
+ "step": 2152
+ },
+ {
+ "epoch": 29.90869375273045,
+ "grad_norm": 0.22565388679504395,
+ "learning_rate": 0.0006,
+ "loss": 3.7539188861846924,
+ "step": 2153
+ },
+ {
+ "epoch": 29.92267365661861,
+ "grad_norm": 0.20258226990699768,
+ "learning_rate": 0.0006,
+ "loss": 3.7491893768310547,
+ "step": 2154
+ },
+ {
+ "epoch": 29.936653560506773,
+ "grad_norm": 0.20028717815876007,
+ "learning_rate": 0.0006,
+ "loss": 3.7497997283935547,
+ "step": 2155
+ },
+ {
+ "epoch": 29.950633464394933,
+ "grad_norm": 0.2246360331773758,
+ "learning_rate": 0.0006,
+ "loss": 3.773930788040161,
+ "step": 2156
+ },
+ {
+ "epoch": 29.964613368283093,
+ "grad_norm": 0.22432482242584229,
+ "learning_rate": 0.0006,
+ "loss": 3.7926344871520996,
+ "step": 2157
+ },
+ {
+ "epoch": 29.978593272171253,
+ "grad_norm": 0.2165718674659729,
+ "learning_rate": 0.0006,
+ "loss": 3.7436647415161133,
+ "step": 2158
+ },
+ {
+ "epoch": 29.992573176059416,
+ "grad_norm": 0.20629167556762695,
+ "learning_rate": 0.0006,
+ "loss": 3.7619552612304688,
+ "step": 2159
+ },
+ {
+ "epoch": 30.0,
+ "grad_norm": 0.24264708161354065,
+ "learning_rate": 0.0006,
+ "loss": 3.772679328918457,
+ "step": 2160
+ },
+ {
+ "epoch": 30.0,
+ "eval_loss": 4.024484634399414,
+ "eval_runtime": 44.3611,
+ "eval_samples_per_second": 55.048,
+ "eval_steps_per_second": 3.449,
+ "step": 2160
+ },
+ {
+ "epoch": 30.01397990388816,
+ "grad_norm": 0.2373432070016861,
+ "learning_rate": 0.0006,
+ "loss": 3.7423200607299805,
+ "step": 2161
+ },
+ {
+ "epoch": 30.027959807776323,
+ "grad_norm": 0.26835134625434875,
+ "learning_rate": 0.0006,
+ "loss": 3.7215471267700195,
+ "step": 2162
+ },
+ {
+ "epoch": 30.041939711664483,
+ "grad_norm": 0.2743220329284668,
+ "learning_rate": 0.0006,
+ "loss": 3.7190256118774414,
+ "step": 2163
+ },
+ {
+ "epoch": 30.055919615552643,
+ "grad_norm": 0.2292490005493164,
+ "learning_rate": 0.0006,
+ "loss": 3.731855869293213,
+ "step": 2164
+ },
+ {
+ "epoch": 30.069899519440803,
+ "grad_norm": 0.22704607248306274,
+ "learning_rate": 0.0006,
+ "loss": 3.7649693489074707,
+ "step": 2165
+ },
+ {
+ "epoch": 30.083879423328966,
+ "grad_norm": 0.23255930840969086,
+ "learning_rate": 0.0006,
+ "loss": 3.7547781467437744,
+ "step": 2166
+ },
+ {
+ "epoch": 30.097859327217126,
+ "grad_norm": 0.2068684846162796,
+ "learning_rate": 0.0006,
+ "loss": 3.7343382835388184,
+ "step": 2167
+ },
+ {
+ "epoch": 30.111839231105286,
+ "grad_norm": 0.22523464262485504,
+ "learning_rate": 0.0006,
+ "loss": 3.7304530143737793,
+ "step": 2168
+ },
+ {
+ "epoch": 30.125819134993446,
+ "grad_norm": 0.24650199711322784,
+ "learning_rate": 0.0006,
+ "loss": 3.7414379119873047,
+ "step": 2169
+ },
+ {
+ "epoch": 30.13979903888161,
+ "grad_norm": 0.2392522394657135,
+ "learning_rate": 0.0006,
+ "loss": 3.754481792449951,
+ "step": 2170
+ },
+ {
+ "epoch": 30.15377894276977,
+ "grad_norm": 0.21174749732017517,
+ "learning_rate": 0.0006,
+ "loss": 3.7249929904937744,
+ "step": 2171
+ },
+ {
+ "epoch": 30.16775884665793,
+ "grad_norm": 0.20847836136817932,
+ "learning_rate": 0.0006,
+ "loss": 3.7146458625793457,
+ "step": 2172
+ },
+ {
+ "epoch": 30.18173875054609,
+ "grad_norm": 0.22131472826004028,
+ "learning_rate": 0.0006,
+ "loss": 3.7569539546966553,
+ "step": 2173
+ },
+ {
+ "epoch": 30.195718654434252,
+ "grad_norm": 0.23528096079826355,
+ "learning_rate": 0.0006,
+ "loss": 3.743435859680176,
+ "step": 2174
+ },
+ {
+ "epoch": 30.209698558322412,
+ "grad_norm": 0.2382429540157318,
+ "learning_rate": 0.0006,
+ "loss": 3.745307445526123,
+ "step": 2175
+ },
+ {
+ "epoch": 30.22367846221057,
+ "grad_norm": 0.2477114498615265,
+ "learning_rate": 0.0006,
+ "loss": 3.742305278778076,
+ "step": 2176
+ },
+ {
+ "epoch": 30.23765836609873,
+ "grad_norm": 0.24507801234722137,
+ "learning_rate": 0.0006,
+ "loss": 3.733564853668213,
+ "step": 2177
+ },
+ {
+ "epoch": 30.251638269986895,
+ "grad_norm": 0.2266329675912857,
+ "learning_rate": 0.0006,
+ "loss": 3.747429370880127,
+ "step": 2178
+ },
+ {
+ "epoch": 30.265618173875055,
+ "grad_norm": 0.22146396338939667,
+ "learning_rate": 0.0006,
+ "loss": 3.738630533218384,
+ "step": 2179
+ },
+ {
+ "epoch": 30.279598077763215,
+ "grad_norm": 0.20202279090881348,
+ "learning_rate": 0.0006,
+ "loss": 3.74582839012146,
+ "step": 2180
+ },
+ {
+ "epoch": 30.293577981651374,
+ "grad_norm": 0.20591886341571808,
+ "learning_rate": 0.0006,
+ "loss": 3.792062997817993,
+ "step": 2181
+ },
+ {
+ "epoch": 30.307557885539538,
+ "grad_norm": 0.21744129061698914,
+ "learning_rate": 0.0006,
+ "loss": 3.7389049530029297,
+ "step": 2182
+ },
+ {
+ "epoch": 30.321537789427698,
+ "grad_norm": 0.22641272842884064,
+ "learning_rate": 0.0006,
+ "loss": 3.756775140762329,
+ "step": 2183
+ },
+ {
+ "epoch": 30.335517693315857,
+ "grad_norm": 0.22433501482009888,
+ "learning_rate": 0.0006,
+ "loss": 3.764744758605957,
+ "step": 2184
+ },
+ {
+ "epoch": 30.34949759720402,
+ "grad_norm": 0.20184539258480072,
+ "learning_rate": 0.0006,
+ "loss": 3.747469902038574,
+ "step": 2185
+ },
+ {
+ "epoch": 30.36347750109218,
+ "grad_norm": 0.20864923298358917,
+ "learning_rate": 0.0006,
+ "loss": 3.7472925186157227,
+ "step": 2186
+ },
+ {
+ "epoch": 30.37745740498034,
+ "grad_norm": 0.22537396848201752,
+ "learning_rate": 0.0006,
+ "loss": 3.7194581031799316,
+ "step": 2187
+ },
+ {
+ "epoch": 30.3914373088685,
+ "grad_norm": 0.23159919679164886,
+ "learning_rate": 0.0006,
+ "loss": 3.7124292850494385,
+ "step": 2188
+ },
+ {
+ "epoch": 30.405417212756664,
+ "grad_norm": 0.24334494769573212,
+ "learning_rate": 0.0006,
+ "loss": 3.7769203186035156,
+ "step": 2189
+ },
+ {
+ "epoch": 30.419397116644824,
+ "grad_norm": 0.3031228482723236,
+ "learning_rate": 0.0006,
+ "loss": 3.762169361114502,
+ "step": 2190
+ },
+ {
+ "epoch": 30.433377020532983,
+ "grad_norm": 0.29114583134651184,
+ "learning_rate": 0.0006,
+ "loss": 3.76554799079895,
+ "step": 2191
+ },
+ {
+ "epoch": 30.447356924421143,
+ "grad_norm": 0.26824963092803955,
+ "learning_rate": 0.0006,
+ "loss": 3.732962131500244,
+ "step": 2192
+ },
+ {
+ "epoch": 30.461336828309307,
+ "grad_norm": 0.3026561141014099,
+ "learning_rate": 0.0006,
+ "loss": 3.7567975521087646,
+ "step": 2193
+ },
+ {
+ "epoch": 30.475316732197467,
+ "grad_norm": 0.27224525809288025,
+ "learning_rate": 0.0006,
+ "loss": 3.7856051921844482,
+ "step": 2194
+ },
+ {
+ "epoch": 30.489296636085626,
+ "grad_norm": 0.24295508861541748,
+ "learning_rate": 0.0006,
+ "loss": 3.7514901161193848,
+ "step": 2195
+ },
+ {
+ "epoch": 30.503276539973786,
+ "grad_norm": 0.24435290694236755,
+ "learning_rate": 0.0006,
+ "loss": 3.715973138809204,
+ "step": 2196
+ },
+ {
+ "epoch": 30.51725644386195,
+ "grad_norm": 0.2298959195613861,
+ "learning_rate": 0.0006,
+ "loss": 3.7960405349731445,
+ "step": 2197
+ },
+ {
+ "epoch": 30.53123634775011,
+ "grad_norm": 0.20313066244125366,
+ "learning_rate": 0.0006,
+ "loss": 3.7377915382385254,
+ "step": 2198
+ },
+ {
+ "epoch": 30.54521625163827,
+ "grad_norm": 0.2018895149230957,
+ "learning_rate": 0.0006,
+ "loss": 3.6980559825897217,
+ "step": 2199
+ },
+ {
+ "epoch": 30.55919615552643,
+ "grad_norm": 0.20048382878303528,
+ "learning_rate": 0.0006,
+ "loss": 3.7474141120910645,
+ "step": 2200
+ },
+ {
+ "epoch": 30.573176059414592,
+ "grad_norm": 0.19821316003799438,
+ "learning_rate": 0.0006,
+ "loss": 3.7668564319610596,
+ "step": 2201
+ },
+ {
+ "epoch": 30.587155963302752,
+ "grad_norm": 0.21467992663383484,
+ "learning_rate": 0.0006,
+ "loss": 3.7636144161224365,
+ "step": 2202
+ },
+ {
+ "epoch": 30.601135867190912,
+ "grad_norm": 0.20192000269889832,
+ "learning_rate": 0.0006,
+ "loss": 3.745736837387085,
+ "step": 2203
+ },
+ {
+ "epoch": 30.615115771079076,
+ "grad_norm": 0.2078823447227478,
+ "learning_rate": 0.0006,
+ "loss": 3.726665496826172,
+ "step": 2204
+ },
+ {
+ "epoch": 30.629095674967235,
+ "grad_norm": 0.22535845637321472,
+ "learning_rate": 0.0006,
+ "loss": 3.745058059692383,
+ "step": 2205
+ },
+ {
+ "epoch": 30.643075578855395,
+ "grad_norm": 0.22277814149856567,
+ "learning_rate": 0.0006,
+ "loss": 3.7488319873809814,
+ "step": 2206
+ },
+ {
+ "epoch": 30.657055482743555,
+ "grad_norm": 0.20940838754177094,
+ "learning_rate": 0.0006,
+ "loss": 3.7395732402801514,
+ "step": 2207
+ },
+ {
+ "epoch": 30.67103538663172,
+ "grad_norm": 0.21384629607200623,
+ "learning_rate": 0.0006,
+ "loss": 3.7275657653808594,
+ "step": 2208
+ },
+ {
+ "epoch": 30.68501529051988,
+ "grad_norm": 0.18796643614768982,
+ "learning_rate": 0.0006,
+ "loss": 3.743420124053955,
+ "step": 2209
+ },
+ {
+ "epoch": 30.698995194408038,
+ "grad_norm": 0.213258296251297,
+ "learning_rate": 0.0006,
+ "loss": 3.7227492332458496,
+ "step": 2210
+ },
+ {
+ "epoch": 30.712975098296198,
+ "grad_norm": 0.22714753448963165,
+ "learning_rate": 0.0006,
+ "loss": 3.7301113605499268,
+ "step": 2211
+ },
+ {
+ "epoch": 30.72695500218436,
+ "grad_norm": 0.21657656133174896,
+ "learning_rate": 0.0006,
+ "loss": 3.7336206436157227,
+ "step": 2212
+ },
+ {
+ "epoch": 30.74093490607252,
+ "grad_norm": 0.19550828635692596,
+ "learning_rate": 0.0006,
+ "loss": 3.7367351055145264,
+ "step": 2213
+ },
+ {
+ "epoch": 30.75491480996068,
+ "grad_norm": 0.17011769115924835,
+ "learning_rate": 0.0006,
+ "loss": 3.7401928901672363,
+ "step": 2214
+ },
+ {
+ "epoch": 30.76889471384884,
+ "grad_norm": 0.19110196828842163,
+ "learning_rate": 0.0006,
+ "loss": 3.7496562004089355,
+ "step": 2215
+ },
+ {
+ "epoch": 30.782874617737004,
+ "grad_norm": 0.20054543018341064,
+ "learning_rate": 0.0006,
+ "loss": 3.7532992362976074,
+ "step": 2216
+ },
+ {
+ "epoch": 30.796854521625164,
+ "grad_norm": 0.20667670667171478,
+ "learning_rate": 0.0006,
+ "loss": 3.746974468231201,
+ "step": 2217
+ },
+ {
+ "epoch": 30.810834425513324,
+ "grad_norm": 0.19850662350654602,
+ "learning_rate": 0.0006,
+ "loss": 3.7566256523132324,
+ "step": 2218
+ },
+ {
+ "epoch": 30.824814329401484,
+ "grad_norm": 0.19666457176208496,
+ "learning_rate": 0.0006,
+ "loss": 3.7356925010681152,
+ "step": 2219
+ },
+ {
+ "epoch": 30.838794233289647,
+ "grad_norm": 0.20022115111351013,
+ "learning_rate": 0.0006,
+ "loss": 3.768794536590576,
+ "step": 2220
+ },
+ {
+ "epoch": 30.852774137177807,
+ "grad_norm": 0.225278839468956,
+ "learning_rate": 0.0006,
+ "loss": 3.730262279510498,
+ "step": 2221
+ },
+ {
+ "epoch": 30.866754041065967,
+ "grad_norm": 0.2155608832836151,
+ "learning_rate": 0.0006,
+ "loss": 3.758157968521118,
+ "step": 2222
+ },
+ {
+ "epoch": 30.88073394495413,
+ "grad_norm": 0.20914921164512634,
+ "learning_rate": 0.0006,
+ "loss": 3.7290844917297363,
+ "step": 2223
+ },
+ {
+ "epoch": 30.89471384884229,
+ "grad_norm": 0.21579554677009583,
+ "learning_rate": 0.0006,
+ "loss": 3.7666125297546387,
+ "step": 2224
+ },
+ {
+ "epoch": 30.90869375273045,
+ "grad_norm": 0.22606384754180908,
+ "learning_rate": 0.0006,
+ "loss": 3.7396788597106934,
+ "step": 2225
+ },
+ {
+ "epoch": 30.92267365661861,
+ "grad_norm": 0.22218658030033112,
+ "learning_rate": 0.0006,
+ "loss": 3.7363057136535645,
+ "step": 2226
+ },
+ {
+ "epoch": 30.936653560506773,
+ "grad_norm": 0.2107125222682953,
+ "learning_rate": 0.0006,
+ "loss": 3.7402844429016113,
+ "step": 2227
+ },
+ {
+ "epoch": 30.950633464394933,
+ "grad_norm": 0.2143280804157257,
+ "learning_rate": 0.0006,
+ "loss": 3.7715706825256348,
+ "step": 2228
+ },
+ {
+ "epoch": 30.964613368283093,
+ "grad_norm": 0.20918118953704834,
+ "learning_rate": 0.0006,
+ "loss": 3.783510446548462,
+ "step": 2229
+ },
+ {
+ "epoch": 30.978593272171253,
+ "grad_norm": 0.2184133678674698,
+ "learning_rate": 0.0006,
+ "loss": 3.729846954345703,
+ "step": 2230
+ },
+ {
+ "epoch": 30.992573176059416,
+ "grad_norm": 0.20314796268939972,
+ "learning_rate": 0.0006,
+ "loss": 3.753312110900879,
+ "step": 2231
+ },
+ {
+ "epoch": 31.0,
+ "grad_norm": 0.21582408249378204,
+ "learning_rate": 0.0006,
+ "loss": 3.7653090953826904,
+ "step": 2232
+ },
+ {
+ "epoch": 31.0,
+ "eval_loss": 4.030437469482422,
+ "eval_runtime": 43.8529,
+ "eval_samples_per_second": 55.686,
+ "eval_steps_per_second": 3.489,
+ "step": 2232
+ },
+ {
+ "epoch": 31.01397990388816,
+ "grad_norm": 0.214233860373497,
+ "learning_rate": 0.0006,
+ "loss": 3.7179880142211914,
+ "step": 2233
+ },
+ {
+ "epoch": 31.027959807776323,
+ "grad_norm": 0.24621504545211792,
+ "learning_rate": 0.0006,
+ "loss": 3.712569236755371,
+ "step": 2234
+ },
+ {
+ "epoch": 31.041939711664483,
+ "grad_norm": 0.24189279973506927,
+ "learning_rate": 0.0006,
+ "loss": 3.7503058910369873,
+ "step": 2235
+ },
+ {
+ "epoch": 31.055919615552643,
+ "grad_norm": 0.22872278094291687,
+ "learning_rate": 0.0006,
+ "loss": 3.7386386394500732,
+ "step": 2236
+ },
+ {
+ "epoch": 31.069899519440803,
+ "grad_norm": 0.25036823749542236,
+ "learning_rate": 0.0006,
+ "loss": 3.710566997528076,
+ "step": 2237
+ },
+ {
+ "epoch": 31.083879423328966,
+ "grad_norm": 0.2506193220615387,
+ "learning_rate": 0.0006,
+ "loss": 3.7270963191986084,
+ "step": 2238
+ },
+ {
+ "epoch": 31.097859327217126,
+ "grad_norm": 0.24819663166999817,
+ "learning_rate": 0.0006,
+ "loss": 3.716430425643921,
+ "step": 2239
+ },
+ {
+ "epoch": 31.111839231105286,
+ "grad_norm": 0.27226534485816956,
+ "learning_rate": 0.0006,
+ "loss": 3.704428195953369,
+ "step": 2240
+ },
+ {
+ "epoch": 31.125819134993446,
+ "grad_norm": 0.27718204259872437,
+ "learning_rate": 0.0006,
+ "loss": 3.7309701442718506,
+ "step": 2241
+ },
+ {
+ "epoch": 31.13979903888161,
+ "grad_norm": 0.27272021770477295,
+ "learning_rate": 0.0006,
+ "loss": 3.7325143814086914,
+ "step": 2242
+ },
+ {
+ "epoch": 31.15377894276977,
+ "grad_norm": 0.2666020095348358,
+ "learning_rate": 0.0006,
+ "loss": 3.715268611907959,
+ "step": 2243
+ },
+ {
+ "epoch": 31.16775884665793,
+ "grad_norm": 0.258543461561203,
+ "learning_rate": 0.0006,
+ "loss": 3.7336134910583496,
+ "step": 2244
+ },
+ {
+ "epoch": 31.18173875054609,
+ "grad_norm": 0.2528740167617798,
+ "learning_rate": 0.0006,
+ "loss": 3.724491596221924,
+ "step": 2245
+ },
+ {
+ "epoch": 31.195718654434252,
+ "grad_norm": 0.2659667730331421,
+ "learning_rate": 0.0006,
+ "loss": 3.7144742012023926,
+ "step": 2246
+ },
+ {
+ "epoch": 31.209698558322412,
+ "grad_norm": 0.26563164591789246,
+ "learning_rate": 0.0006,
+ "loss": 3.741182327270508,
+ "step": 2247
+ },
+ {
+ "epoch": 31.22367846221057,
+ "grad_norm": 0.26326918601989746,
+ "learning_rate": 0.0006,
+ "loss": 3.7306275367736816,
+ "step": 2248
+ },
+ {
+ "epoch": 31.23765836609873,
+ "grad_norm": 0.23020948469638824,
+ "learning_rate": 0.0006,
+ "loss": 3.7212486267089844,
+ "step": 2249
+ },
+ {
+ "epoch": 31.251638269986895,
+ "grad_norm": 0.21207433938980103,
+ "learning_rate": 0.0006,
+ "loss": 3.6914258003234863,
+ "step": 2250
+ },
+ {
+ "epoch": 31.265618173875055,
+ "grad_norm": 0.2392292022705078,
+ "learning_rate": 0.0006,
+ "loss": 3.7117457389831543,
+ "step": 2251
+ },
+ {
+ "epoch": 31.279598077763215,
+ "grad_norm": 0.22084997594356537,
+ "learning_rate": 0.0006,
+ "loss": 3.728043794631958,
+ "step": 2252
+ },
+ {
+ "epoch": 31.293577981651374,
+ "grad_norm": 0.20818188786506653,
+ "learning_rate": 0.0006,
+ "loss": 3.751762866973877,
+ "step": 2253
+ },
+ {
+ "epoch": 31.307557885539538,
+ "grad_norm": 0.21866194903850555,
+ "learning_rate": 0.0006,
+ "loss": 3.72676420211792,
+ "step": 2254
+ },
+ {
+ "epoch": 31.321537789427698,
+ "grad_norm": 0.20727522671222687,
+ "learning_rate": 0.0006,
+ "loss": 3.735708236694336,
+ "step": 2255
+ },
+ {
+ "epoch": 31.335517693315857,
+ "grad_norm": 0.20655220746994019,
+ "learning_rate": 0.0006,
+ "loss": 3.714116096496582,
+ "step": 2256
+ },
+ {
+ "epoch": 31.34949759720402,
+ "grad_norm": 0.21738854050636292,
+ "learning_rate": 0.0006,
+ "loss": 3.731657028198242,
+ "step": 2257
+ },
+ {
+ "epoch": 31.36347750109218,
+ "grad_norm": 0.20758475363254547,
+ "learning_rate": 0.0006,
+ "loss": 3.7378528118133545,
+ "step": 2258
+ },
+ {
+ "epoch": 31.37745740498034,
+ "grad_norm": 0.20107139647006989,
+ "learning_rate": 0.0006,
+ "loss": 3.748572826385498,
+ "step": 2259
+ },
+ {
+ "epoch": 31.3914373088685,
+ "grad_norm": 0.18707452714443207,
+ "learning_rate": 0.0006,
+ "loss": 3.7237391471862793,
+ "step": 2260
+ },
+ {
+ "epoch": 31.405417212756664,
+ "grad_norm": 0.20745301246643066,
+ "learning_rate": 0.0006,
+ "loss": 3.734435558319092,
+ "step": 2261
+ },
+ {
+ "epoch": 31.419397116644824,
+ "grad_norm": 0.20793399214744568,
+ "learning_rate": 0.0006,
+ "loss": 3.7639012336730957,
+ "step": 2262
+ },
+ {
+ "epoch": 31.433377020532983,
+ "grad_norm": 0.20193757116794586,
+ "learning_rate": 0.0006,
+ "loss": 3.754117727279663,
+ "step": 2263
+ },
+ {
+ "epoch": 31.447356924421143,
+ "grad_norm": 0.1912323236465454,
+ "learning_rate": 0.0006,
+ "loss": 3.728111982345581,
+ "step": 2264
+ },
+ {
+ "epoch": 31.461336828309307,
+ "grad_norm": 0.19441582262516022,
+ "learning_rate": 0.0006,
+ "loss": 3.7533278465270996,
+ "step": 2265
+ },
+ {
+ "epoch": 31.475316732197467,
+ "grad_norm": 0.19807079434394836,
+ "learning_rate": 0.0006,
+ "loss": 3.7351698875427246,
+ "step": 2266
+ },
+ {
+ "epoch": 31.489296636085626,
+ "grad_norm": 0.20373263955116272,
+ "learning_rate": 0.0006,
+ "loss": 3.714097023010254,
+ "step": 2267
+ },
+ {
+ "epoch": 31.503276539973786,
+ "grad_norm": 0.21868768334388733,
+ "learning_rate": 0.0006,
+ "loss": 3.736743688583374,
+ "step": 2268
+ },
+ {
+ "epoch": 31.51725644386195,
+ "grad_norm": 0.20767922699451447,
+ "learning_rate": 0.0006,
+ "loss": 3.7097702026367188,
+ "step": 2269
+ },
+ {
+ "epoch": 31.53123634775011,
+ "grad_norm": 0.18425600230693817,
+ "learning_rate": 0.0006,
+ "loss": 3.7349140644073486,
+ "step": 2270
+ },
+ {
+ "epoch": 31.54521625163827,
+ "grad_norm": 0.18813826143741608,
+ "learning_rate": 0.0006,
+ "loss": 3.7023448944091797,
+ "step": 2271
+ },
+ {
+ "epoch": 31.55919615552643,
+ "grad_norm": 0.1892116516828537,
+ "learning_rate": 0.0006,
+ "loss": 3.7170143127441406,
+ "step": 2272
+ },
+ {
+ "epoch": 31.573176059414592,
+ "grad_norm": 0.2067834585905075,
+ "learning_rate": 0.0006,
+ "loss": 3.7312588691711426,
+ "step": 2273
+ },
+ {
+ "epoch": 31.587155963302752,
+ "grad_norm": 0.204023078083992,
+ "learning_rate": 0.0006,
+ "loss": 3.7399091720581055,
+ "step": 2274
+ },
+ {
+ "epoch": 31.601135867190912,
+ "grad_norm": 0.20245152711868286,
+ "learning_rate": 0.0006,
+ "loss": 3.7259416580200195,
+ "step": 2275
+ },
+ {
+ "epoch": 31.615115771079076,
+ "grad_norm": 0.21125490963459015,
+ "learning_rate": 0.0006,
+ "loss": 3.7217836380004883,
+ "step": 2276
+ },
+ {
+ "epoch": 31.629095674967235,
+ "grad_norm": 0.2093241959810257,
+ "learning_rate": 0.0006,
+ "loss": 3.707627773284912,
+ "step": 2277
+ },
+ {
+ "epoch": 31.643075578855395,
+ "grad_norm": 0.19290480017662048,
+ "learning_rate": 0.0006,
+ "loss": 3.7467126846313477,
+ "step": 2278
+ },
+ {
+ "epoch": 31.657055482743555,
+ "grad_norm": 0.1853940635919571,
+ "learning_rate": 0.0006,
+ "loss": 3.7565581798553467,
+ "step": 2279
+ },
+ {
+ "epoch": 31.67103538663172,
+ "grad_norm": 0.18917642533779144,
+ "learning_rate": 0.0006,
+ "loss": 3.7286229133605957,
+ "step": 2280
+ },
+ {
+ "epoch": 31.68501529051988,
+ "grad_norm": 0.2094079703092575,
+ "learning_rate": 0.0006,
+ "loss": 3.7297096252441406,
+ "step": 2281
+ },
+ {
+ "epoch": 31.698995194408038,
+ "grad_norm": 0.20020027458667755,
+ "learning_rate": 0.0006,
+ "loss": 3.7565250396728516,
+ "step": 2282
+ },
+ {
+ "epoch": 31.712975098296198,
+ "grad_norm": 0.19156186282634735,
+ "learning_rate": 0.0006,
+ "loss": 3.7401509284973145,
+ "step": 2283
+ },
+ {
+ "epoch": 31.72695500218436,
+ "grad_norm": 0.19176368415355682,
+ "learning_rate": 0.0006,
+ "loss": 3.751206398010254,
+ "step": 2284
+ },
+ {
+ "epoch": 31.74093490607252,
+ "grad_norm": 0.18351277709007263,
+ "learning_rate": 0.0006,
+ "loss": 3.752984046936035,
+ "step": 2285
+ },
+ {
+ "epoch": 31.75491480996068,
+ "grad_norm": 0.1879221349954605,
+ "learning_rate": 0.0006,
+ "loss": 3.7156834602355957,
+ "step": 2286
+ },
+ {
+ "epoch": 31.76889471384884,
+ "grad_norm": 0.19232559204101562,
+ "learning_rate": 0.0006,
+ "loss": 3.732879638671875,
+ "step": 2287
+ },
+ {
+ "epoch": 31.782874617737004,
+ "grad_norm": 0.18484069406986237,
+ "learning_rate": 0.0006,
+ "loss": 3.7489013671875,
+ "step": 2288
+ },
+ {
+ "epoch": 31.796854521625164,
+ "grad_norm": 0.20705144107341766,
+ "learning_rate": 0.0006,
+ "loss": 3.7214112281799316,
+ "step": 2289
+ },
+ {
+ "epoch": 31.810834425513324,
+ "grad_norm": 0.23424774408340454,
+ "learning_rate": 0.0006,
+ "loss": 3.714550256729126,
+ "step": 2290
+ },
+ {
+ "epoch": 31.824814329401484,
+ "grad_norm": 0.24061693251132965,
+ "learning_rate": 0.0006,
+ "loss": 3.717336654663086,
+ "step": 2291
+ },
+ {
+ "epoch": 31.838794233289647,
+ "grad_norm": 0.23156678676605225,
+ "learning_rate": 0.0006,
+ "loss": 3.7345399856567383,
+ "step": 2292
+ },
+ {
+ "epoch": 31.852774137177807,
+ "grad_norm": 0.2256302684545517,
+ "learning_rate": 0.0006,
+ "loss": 3.7596092224121094,
+ "step": 2293
+ },
+ {
+ "epoch": 31.866754041065967,
+ "grad_norm": 0.2118781954050064,
+ "learning_rate": 0.0006,
+ "loss": 3.725433588027954,
+ "step": 2294
+ },
+ {
+ "epoch": 31.88073394495413,
+ "grad_norm": 0.1874573826789856,
+ "learning_rate": 0.0006,
+ "loss": 3.738901138305664,
+ "step": 2295
+ },
+ {
+ "epoch": 31.89471384884229,
+ "grad_norm": 0.2062024176120758,
+ "learning_rate": 0.0006,
+ "loss": 3.7439217567443848,
+ "step": 2296
+ },
+ {
+ "epoch": 31.90869375273045,
+ "grad_norm": 0.19886671006679535,
+ "learning_rate": 0.0006,
+ "loss": 3.7583155632019043,
+ "step": 2297
+ },
+ {
+ "epoch": 31.92267365661861,
+ "grad_norm": 0.2079734355211258,
+ "learning_rate": 0.0006,
+ "loss": 3.7251501083374023,
+ "step": 2298
+ },
+ {
+ "epoch": 31.936653560506773,
+ "grad_norm": 0.19710204005241394,
+ "learning_rate": 0.0006,
+ "loss": 3.765778064727783,
+ "step": 2299
+ },
+ {
+ "epoch": 31.950633464394933,
+ "grad_norm": 0.1949392408132553,
+ "learning_rate": 0.0006,
+ "loss": 3.7634787559509277,
+ "step": 2300
+ },
+ {
+ "epoch": 31.964613368283093,
+ "grad_norm": 0.21466250717639923,
+ "learning_rate": 0.0006,
+ "loss": 3.7673215866088867,
+ "step": 2301
+ },
+ {
+ "epoch": 31.978593272171253,
+ "grad_norm": 0.21624267101287842,
+ "learning_rate": 0.0006,
+ "loss": 3.7617220878601074,
+ "step": 2302
+ },
+ {
+ "epoch": 31.992573176059416,
+ "grad_norm": 0.22880229353904724,
+ "learning_rate": 0.0006,
+ "loss": 3.7190351486206055,
+ "step": 2303
+ },
+ {
+ "epoch": 32.0,
+ "grad_norm": 0.23227518796920776,
+ "learning_rate": 0.0006,
+ "loss": 3.740169048309326,
+ "step": 2304
+ },
+ {
+ "epoch": 32.0,
+ "eval_loss": 4.017981052398682,
+ "eval_runtime": 44.4134,
+ "eval_samples_per_second": 54.983,
+ "eval_steps_per_second": 3.445,
+ "step": 2304
+ },
+ {
+ "epoch": 32.01397990388816,
+ "grad_norm": 0.1893721967935562,
+ "learning_rate": 0.0006,
+ "loss": 3.71738338470459,
+ "step": 2305
+ },
+ {
+ "epoch": 32.02795980777632,
+ "grad_norm": 0.23771171271800995,
+ "learning_rate": 0.0006,
+ "loss": 3.71402645111084,
+ "step": 2306
+ },
+ {
+ "epoch": 32.04193971166448,
+ "grad_norm": 0.26343807578086853,
+ "learning_rate": 0.0006,
+ "loss": 3.6926395893096924,
+ "step": 2307
+ },
+ {
+ "epoch": 32.05591961555265,
+ "grad_norm": 0.25092509388923645,
+ "learning_rate": 0.0006,
+ "loss": 3.715243339538574,
+ "step": 2308
+ },
+ {
+ "epoch": 32.0698995194408,
+ "grad_norm": 0.23148509860038757,
+ "learning_rate": 0.0006,
+ "loss": 3.690734386444092,
+ "step": 2309
+ },
+ {
+ "epoch": 32.083879423328966,
+ "grad_norm": 0.23314623534679413,
+ "learning_rate": 0.0006,
+ "loss": 3.6980109214782715,
+ "step": 2310
+ },
+ {
+ "epoch": 32.09785932721712,
+ "grad_norm": 0.2210417091846466,
+ "learning_rate": 0.0006,
+ "loss": 3.7395730018615723,
+ "step": 2311
+ },
+ {
+ "epoch": 32.111839231105286,
+ "grad_norm": 0.20263685286045074,
+ "learning_rate": 0.0006,
+ "loss": 3.678412914276123,
+ "step": 2312
+ },
+ {
+ "epoch": 32.12581913499345,
+ "grad_norm": 0.20412251353263855,
+ "learning_rate": 0.0006,
+ "loss": 3.688762903213501,
+ "step": 2313
+ },
+ {
+ "epoch": 32.139799038881605,
+ "grad_norm": 0.2041679322719574,
+ "learning_rate": 0.0006,
+ "loss": 3.7231521606445312,
+ "step": 2314
+ },
+ {
+ "epoch": 32.15377894276977,
+ "grad_norm": 0.23270174860954285,
+ "learning_rate": 0.0006,
+ "loss": 3.7102620601654053,
+ "step": 2315
+ },
+ {
+ "epoch": 32.16775884665793,
+ "grad_norm": 0.25470519065856934,
+ "learning_rate": 0.0006,
+ "loss": 3.7353053092956543,
+ "step": 2316
+ },
+ {
+ "epoch": 32.18173875054609,
+ "grad_norm": 0.2930106222629547,
+ "learning_rate": 0.0006,
+ "loss": 3.7418713569641113,
+ "step": 2317
+ },
+ {
+ "epoch": 32.19571865443425,
+ "grad_norm": 0.3181219696998596,
+ "learning_rate": 0.0006,
+ "loss": 3.6716184616088867,
+ "step": 2318
+ },
+ {
+ "epoch": 32.20969855832241,
+ "grad_norm": 0.2752978801727295,
+ "learning_rate": 0.0006,
+ "loss": 3.70334792137146,
+ "step": 2319
+ },
+ {
+ "epoch": 32.22367846221057,
+ "grad_norm": 0.28381186723709106,
+ "learning_rate": 0.0006,
+ "loss": 3.719794750213623,
+ "step": 2320
+ },
+ {
+ "epoch": 32.237658366098735,
+ "grad_norm": 0.3287750482559204,
+ "learning_rate": 0.0006,
+ "loss": 3.7363362312316895,
+ "step": 2321
+ },
+ {
+ "epoch": 32.25163826998689,
+ "grad_norm": 0.32669803500175476,
+ "learning_rate": 0.0006,
+ "loss": 3.739394426345825,
+ "step": 2322
+ },
+ {
+ "epoch": 32.265618173875055,
+ "grad_norm": 0.27423885464668274,
+ "learning_rate": 0.0006,
+ "loss": 3.7381205558776855,
+ "step": 2323
+ },
+ {
+ "epoch": 32.27959807776322,
+ "grad_norm": 0.2594660818576813,
+ "learning_rate": 0.0006,
+ "loss": 3.698683738708496,
+ "step": 2324
+ },
+ {
+ "epoch": 32.293577981651374,
+ "grad_norm": 0.2785511016845703,
+ "learning_rate": 0.0006,
+ "loss": 3.688774824142456,
+ "step": 2325
+ },
+ {
+ "epoch": 32.30755788553954,
+ "grad_norm": 0.2690320611000061,
+ "learning_rate": 0.0006,
+ "loss": 3.7209150791168213,
+ "step": 2326
+ },
+ {
+ "epoch": 32.3215377894277,
+ "grad_norm": 0.23331770300865173,
+ "learning_rate": 0.0006,
+ "loss": 3.682931423187256,
+ "step": 2327
+ },
+ {
+ "epoch": 32.33551769331586,
+ "grad_norm": 0.22380802035331726,
+ "learning_rate": 0.0006,
+ "loss": 3.720445156097412,
+ "step": 2328
+ },
+ {
+ "epoch": 32.34949759720402,
+ "grad_norm": 0.2065964937210083,
+ "learning_rate": 0.0006,
+ "loss": 3.705427885055542,
+ "step": 2329
+ },
+ {
+ "epoch": 32.36347750109218,
+ "grad_norm": 0.20701853930950165,
+ "learning_rate": 0.0006,
+ "loss": 3.7078697681427,
+ "step": 2330
+ },
+ {
+ "epoch": 32.37745740498034,
+ "grad_norm": 0.2063559591770172,
+ "learning_rate": 0.0006,
+ "loss": 3.745004653930664,
+ "step": 2331
+ },
+ {
+ "epoch": 32.391437308868504,
+ "grad_norm": 0.19377011060714722,
+ "learning_rate": 0.0006,
+ "loss": 3.713808059692383,
+ "step": 2332
+ },
+ {
+ "epoch": 32.40541721275666,
+ "grad_norm": 0.19260725378990173,
+ "learning_rate": 0.0006,
+ "loss": 3.717043876647949,
+ "step": 2333
+ },
+ {
+ "epoch": 32.419397116644824,
+ "grad_norm": 0.20792821049690247,
+ "learning_rate": 0.0006,
+ "loss": 3.68632173538208,
+ "step": 2334
+ },
+ {
+ "epoch": 32.43337702053299,
+ "grad_norm": 0.22278444468975067,
+ "learning_rate": 0.0006,
+ "loss": 3.7345821857452393,
+ "step": 2335
+ },
+ {
+ "epoch": 32.44735692442114,
+ "grad_norm": 0.22533579170703888,
+ "learning_rate": 0.0006,
+ "loss": 3.7224173545837402,
+ "step": 2336
+ },
+ {
+ "epoch": 32.46133682830931,
+ "grad_norm": 0.20228394865989685,
+ "learning_rate": 0.0006,
+ "loss": 3.748530149459839,
+ "step": 2337
+ },
+ {
+ "epoch": 32.47531673219746,
+ "grad_norm": 0.19944614171981812,
+ "learning_rate": 0.0006,
+ "loss": 3.707085371017456,
+ "step": 2338
+ },
+ {
+ "epoch": 32.489296636085626,
+ "grad_norm": 0.19856145977973938,
+ "learning_rate": 0.0006,
+ "loss": 3.6898274421691895,
+ "step": 2339
+ },
+ {
+ "epoch": 32.50327653997379,
+ "grad_norm": 0.20734605193138123,
+ "learning_rate": 0.0006,
+ "loss": 3.7511792182922363,
+ "step": 2340
+ },
+ {
+ "epoch": 32.517256443861946,
+ "grad_norm": 0.19489309191703796,
+ "learning_rate": 0.0006,
+ "loss": 3.736445426940918,
+ "step": 2341
+ },
+ {
+ "epoch": 32.53123634775011,
+ "grad_norm": 0.18899282813072205,
+ "learning_rate": 0.0006,
+ "loss": 3.727325916290283,
+ "step": 2342
+ },
+ {
+ "epoch": 32.54521625163827,
+ "grad_norm": 0.19670401513576508,
+ "learning_rate": 0.0006,
+ "loss": 3.7326102256774902,
+ "step": 2343
+ },
+ {
+ "epoch": 32.55919615552643,
+ "grad_norm": 0.20061780512332916,
+ "learning_rate": 0.0006,
+ "loss": 3.698716402053833,
+ "step": 2344
+ },
+ {
+ "epoch": 32.57317605941459,
+ "grad_norm": 0.1991659700870514,
+ "learning_rate": 0.0006,
+ "loss": 3.6913180351257324,
+ "step": 2345
+ },
+ {
+ "epoch": 32.58715596330275,
+ "grad_norm": 0.18856225907802582,
+ "learning_rate": 0.0006,
+ "loss": 3.7130961418151855,
+ "step": 2346
+ },
+ {
+ "epoch": 32.60113586719091,
+ "grad_norm": 0.1983972191810608,
+ "learning_rate": 0.0006,
+ "loss": 3.7530808448791504,
+ "step": 2347
+ },
+ {
+ "epoch": 32.615115771079076,
+ "grad_norm": 0.2037997543811798,
+ "learning_rate": 0.0006,
+ "loss": 3.7076587677001953,
+ "step": 2348
+ },
+ {
+ "epoch": 32.62909567496723,
+ "grad_norm": 0.21008458733558655,
+ "learning_rate": 0.0006,
+ "loss": 3.7379021644592285,
+ "step": 2349
+ },
+ {
+ "epoch": 32.643075578855395,
+ "grad_norm": 0.2129313349723816,
+ "learning_rate": 0.0006,
+ "loss": 3.7031373977661133,
+ "step": 2350
+ },
+ {
+ "epoch": 32.65705548274356,
+ "grad_norm": 0.18756245076656342,
+ "learning_rate": 0.0006,
+ "loss": 3.7066285610198975,
+ "step": 2351
+ },
+ {
+ "epoch": 32.671035386631715,
+ "grad_norm": 0.17946591973304749,
+ "learning_rate": 0.0006,
+ "loss": 3.73781681060791,
+ "step": 2352
+ },
+ {
+ "epoch": 32.68501529051988,
+ "grad_norm": 0.18983198702335358,
+ "learning_rate": 0.0006,
+ "loss": 3.718855381011963,
+ "step": 2353
+ },
+ {
+ "epoch": 32.69899519440804,
+ "grad_norm": 0.2080942839384079,
+ "learning_rate": 0.0006,
+ "loss": 3.7111258506774902,
+ "step": 2354
+ },
+ {
+ "epoch": 32.7129750982962,
+ "grad_norm": 0.23633413016796112,
+ "learning_rate": 0.0006,
+ "loss": 3.709766149520874,
+ "step": 2355
+ },
+ {
+ "epoch": 32.72695500218436,
+ "grad_norm": 0.2723144590854645,
+ "learning_rate": 0.0006,
+ "loss": 3.745850086212158,
+ "step": 2356
+ },
+ {
+ "epoch": 32.74093490607252,
+ "grad_norm": 0.29774025082588196,
+ "learning_rate": 0.0006,
+ "loss": 3.733771324157715,
+ "step": 2357
+ },
+ {
+ "epoch": 32.75491480996068,
+ "grad_norm": 0.25976699590682983,
+ "learning_rate": 0.0006,
+ "loss": 3.734194278717041,
+ "step": 2358
+ },
+ {
+ "epoch": 32.768894713848844,
+ "grad_norm": 0.20038039982318878,
+ "learning_rate": 0.0006,
+ "loss": 3.735656261444092,
+ "step": 2359
+ },
+ {
+ "epoch": 32.782874617737,
+ "grad_norm": 0.19745637476444244,
+ "learning_rate": 0.0006,
+ "loss": 3.7335894107818604,
+ "step": 2360
+ },
+ {
+ "epoch": 32.796854521625164,
+ "grad_norm": 0.22022396326065063,
+ "learning_rate": 0.0006,
+ "loss": 3.708998680114746,
+ "step": 2361
+ },
+ {
+ "epoch": 32.81083442551333,
+ "grad_norm": 0.24754752218723297,
+ "learning_rate": 0.0006,
+ "loss": 3.7616286277770996,
+ "step": 2362
+ },
+ {
+ "epoch": 32.824814329401484,
+ "grad_norm": 0.26438358426094055,
+ "learning_rate": 0.0006,
+ "loss": 3.737079620361328,
+ "step": 2363
+ },
+ {
+ "epoch": 32.83879423328965,
+ "grad_norm": 0.2507241666316986,
+ "learning_rate": 0.0006,
+ "loss": 3.708500385284424,
+ "step": 2364
+ },
+ {
+ "epoch": 32.8527741371778,
+ "grad_norm": 0.25688016414642334,
+ "learning_rate": 0.0006,
+ "loss": 3.7389419078826904,
+ "step": 2365
+ },
+ {
+ "epoch": 32.86675404106597,
+ "grad_norm": 0.257447749376297,
+ "learning_rate": 0.0006,
+ "loss": 3.7253334522247314,
+ "step": 2366
+ },
+ {
+ "epoch": 32.88073394495413,
+ "grad_norm": 0.2621215879917145,
+ "learning_rate": 0.0006,
+ "loss": 3.773163318634033,
+ "step": 2367
+ },
+ {
+ "epoch": 32.89471384884229,
+ "grad_norm": 0.23554839193820953,
+ "learning_rate": 0.0006,
+ "loss": 3.7534430027008057,
+ "step": 2368
+ },
+ {
+ "epoch": 32.90869375273045,
+ "grad_norm": 0.19698940217494965,
+ "learning_rate": 0.0006,
+ "loss": 3.7094414234161377,
+ "step": 2369
+ },
+ {
+ "epoch": 32.92267365661861,
+ "grad_norm": 0.21380476653575897,
+ "learning_rate": 0.0006,
+ "loss": 3.7666497230529785,
+ "step": 2370
+ },
+ {
+ "epoch": 32.93665356050677,
+ "grad_norm": 0.20876452326774597,
+ "learning_rate": 0.0006,
+ "loss": 3.7467992305755615,
+ "step": 2371
+ },
+ {
+ "epoch": 32.95063346439493,
+ "grad_norm": 0.1989884227514267,
+ "learning_rate": 0.0006,
+ "loss": 3.749878168106079,
+ "step": 2372
+ },
+ {
+ "epoch": 32.964613368283096,
+ "grad_norm": 0.19089168310165405,
+ "learning_rate": 0.0006,
+ "loss": 3.7211015224456787,
+ "step": 2373
+ },
+ {
+ "epoch": 32.97859327217125,
+ "grad_norm": 0.1962461918592453,
+ "learning_rate": 0.0006,
+ "loss": 3.728684425354004,
+ "step": 2374
+ },
+ {
+ "epoch": 32.992573176059416,
+ "grad_norm": 0.22518110275268555,
+ "learning_rate": 0.0006,
+ "loss": 3.7361507415771484,
+ "step": 2375
+ },
+ {
+ "epoch": 33.0,
+ "grad_norm": 0.26704078912734985,
+ "learning_rate": 0.0006,
+ "loss": 3.7478318214416504,
+ "step": 2376
+ },
+ {
+ "epoch": 33.0,
+ "eval_loss": 4.024221897125244,
+ "eval_runtime": 43.9826,
+ "eval_samples_per_second": 55.522,
+ "eval_steps_per_second": 3.479,
+ "step": 2376
+ },
+ {
+ "epoch": 33.01397990388816,
+ "grad_norm": 0.23387742042541504,
+ "learning_rate": 0.0006,
+ "loss": 3.7043614387512207,
+ "step": 2377
+ },
+ {
+ "epoch": 33.02795980777632,
+ "grad_norm": 0.21334673464298248,
+ "learning_rate": 0.0006,
+ "loss": 3.6714677810668945,
+ "step": 2378
+ },
+ {
+ "epoch": 33.04193971166448,
+ "grad_norm": 0.2608581483364105,
+ "learning_rate": 0.0006,
+ "loss": 3.678460121154785,
+ "step": 2379
+ },
+ {
+ "epoch": 33.05591961555265,
+ "grad_norm": 0.31364381313323975,
+ "learning_rate": 0.0006,
+ "loss": 3.6771793365478516,
+ "step": 2380
+ },
+ {
+ "epoch": 33.0698995194408,
+ "grad_norm": 0.31785935163497925,
+ "learning_rate": 0.0006,
+ "loss": 3.7248926162719727,
+ "step": 2381
+ },
+ {
+ "epoch": 33.083879423328966,
+ "grad_norm": 0.29244646430015564,
+ "learning_rate": 0.0006,
+ "loss": 3.677882194519043,
+ "step": 2382
+ },
+ {
+ "epoch": 33.09785932721712,
+ "grad_norm": 0.23943741619586945,
+ "learning_rate": 0.0006,
+ "loss": 3.7365124225616455,
+ "step": 2383
+ },
+ {
+ "epoch": 33.111839231105286,
+ "grad_norm": 0.2547394931316376,
+ "learning_rate": 0.0006,
+ "loss": 3.7031357288360596,
+ "step": 2384
+ },
+ {
+ "epoch": 33.12581913499345,
+ "grad_norm": 0.2696659564971924,
+ "learning_rate": 0.0006,
+ "loss": 3.6904754638671875,
+ "step": 2385
+ },
+ {
+ "epoch": 33.139799038881605,
+ "grad_norm": 0.24271385371685028,
+ "learning_rate": 0.0006,
+ "loss": 3.7137649059295654,
+ "step": 2386
+ },
+ {
+ "epoch": 33.15377894276977,
+ "grad_norm": 0.23435993492603302,
+ "learning_rate": 0.0006,
+ "loss": 3.707383632659912,
+ "step": 2387
+ },
+ {
+ "epoch": 33.16775884665793,
+ "grad_norm": 0.21428440511226654,
+ "learning_rate": 0.0006,
+ "loss": 3.7148897647857666,
+ "step": 2388
+ },
+ {
+ "epoch": 33.18173875054609,
+ "grad_norm": 0.22420962154865265,
+ "learning_rate": 0.0006,
+ "loss": 3.710111141204834,
+ "step": 2389
+ },
+ {
+ "epoch": 33.19571865443425,
+ "grad_norm": 0.26222777366638184,
+ "learning_rate": 0.0006,
+ "loss": 3.677438259124756,
+ "step": 2390
+ },
+ {
+ "epoch": 33.20969855832241,
+ "grad_norm": 0.29910165071487427,
+ "learning_rate": 0.0006,
+ "loss": 3.6895523071289062,
+ "step": 2391
+ },
+ {
+ "epoch": 33.22367846221057,
+ "grad_norm": 0.2615569531917572,
+ "learning_rate": 0.0006,
+ "loss": 3.7339906692504883,
+ "step": 2392
+ },
+ {
+ "epoch": 33.237658366098735,
+ "grad_norm": 0.23396961390972137,
+ "learning_rate": 0.0006,
+ "loss": 3.7179932594299316,
+ "step": 2393
+ },
+ {
+ "epoch": 33.25163826998689,
+ "grad_norm": 0.24844495952129364,
+ "learning_rate": 0.0006,
+ "loss": 3.7191576957702637,
+ "step": 2394
+ },
+ {
+ "epoch": 33.265618173875055,
+ "grad_norm": 0.2306993454694748,
+ "learning_rate": 0.0006,
+ "loss": 3.7172658443450928,
+ "step": 2395
+ },
+ {
+ "epoch": 33.27959807776322,
+ "grad_norm": 0.24935221672058105,
+ "learning_rate": 0.0006,
+ "loss": 3.6917519569396973,
+ "step": 2396
+ },
+ {
+ "epoch": 33.293577981651374,
+ "grad_norm": 0.2522840201854706,
+ "learning_rate": 0.0006,
+ "loss": 3.7263593673706055,
+ "step": 2397
+ },
+ {
+ "epoch": 33.30755788553954,
+ "grad_norm": 0.26411181688308716,
+ "learning_rate": 0.0006,
+ "loss": 3.6981635093688965,
+ "step": 2398
+ },
+ {
+ "epoch": 33.3215377894277,
+ "grad_norm": 0.22396239638328552,
+ "learning_rate": 0.0006,
+ "loss": 3.713247299194336,
+ "step": 2399
+ },
+ {
+ "epoch": 33.33551769331586,
+ "grad_norm": 0.20579157769680023,
+ "learning_rate": 0.0006,
+ "loss": 3.7058467864990234,
+ "step": 2400
+ },
+ {
+ "epoch": 33.34949759720402,
+ "grad_norm": 0.20103922486305237,
+ "learning_rate": 0.0006,
+ "loss": 3.700924873352051,
+ "step": 2401
+ },
+ {
+ "epoch": 33.36347750109218,
+ "grad_norm": 0.19964663684368134,
+ "learning_rate": 0.0006,
+ "loss": 3.6985437870025635,
+ "step": 2402
+ },
+ {
+ "epoch": 33.37745740498034,
+ "grad_norm": 0.20860575139522552,
+ "learning_rate": 0.0006,
+ "loss": 3.7480058670043945,
+ "step": 2403
+ },
+ {
+ "epoch": 33.391437308868504,
+ "grad_norm": 0.19043605029582977,
+ "learning_rate": 0.0006,
+ "loss": 3.6952016353607178,
+ "step": 2404
+ },
+ {
+ "epoch": 33.40541721275666,
+ "grad_norm": 0.1968909204006195,
+ "learning_rate": 0.0006,
+ "loss": 3.69362735748291,
+ "step": 2405
+ },
+ {
+ "epoch": 33.419397116644824,
+ "grad_norm": 0.23492494225502014,
+ "learning_rate": 0.0006,
+ "loss": 3.707993984222412,
+ "step": 2406
+ },
+ {
+ "epoch": 33.43337702053299,
+ "grad_norm": 0.23970453441143036,
+ "learning_rate": 0.0006,
+ "loss": 3.707731246948242,
+ "step": 2407
+ },
+ {
+ "epoch": 33.44735692442114,
+ "grad_norm": 0.2515844404697418,
+ "learning_rate": 0.0006,
+ "loss": 3.723824977874756,
+ "step": 2408
+ },
+ {
+ "epoch": 33.46133682830931,
+ "grad_norm": 0.2343570590019226,
+ "learning_rate": 0.0006,
+ "loss": 3.7068886756896973,
+ "step": 2409
+ },
+ {
+ "epoch": 33.47531673219746,
+ "grad_norm": 0.23419860005378723,
+ "learning_rate": 0.0006,
+ "loss": 3.6964287757873535,
+ "step": 2410
+ },
+ {
+ "epoch": 33.489296636085626,
+ "grad_norm": 0.21280375123023987,
+ "learning_rate": 0.0006,
+ "loss": 3.7020950317382812,
+ "step": 2411
+ },
+ {
+ "epoch": 33.50327653997379,
+ "grad_norm": 0.2061092108488083,
+ "learning_rate": 0.0006,
+ "loss": 3.750861406326294,
+ "step": 2412
+ },
+ {
+ "epoch": 33.517256443861946,
+ "grad_norm": 0.19693219661712646,
+ "learning_rate": 0.0006,
+ "loss": 3.717020034790039,
+ "step": 2413
+ },
+ {
+ "epoch": 33.53123634775011,
+ "grad_norm": 0.18199551105499268,
+ "learning_rate": 0.0006,
+ "loss": 3.7242612838745117,
+ "step": 2414
+ },
+ {
+ "epoch": 33.54521625163827,
+ "grad_norm": 0.20131248235702515,
+ "learning_rate": 0.0006,
+ "loss": 3.6758954524993896,
+ "step": 2415
+ },
+ {
+ "epoch": 33.55919615552643,
+ "grad_norm": 0.2219412475824356,
+ "learning_rate": 0.0006,
+ "loss": 3.707927703857422,
+ "step": 2416
+ },
+ {
+ "epoch": 33.57317605941459,
+ "grad_norm": 0.22541435062885284,
+ "learning_rate": 0.0006,
+ "loss": 3.696967601776123,
+ "step": 2417
+ },
+ {
+ "epoch": 33.58715596330275,
+ "grad_norm": 0.20367272198200226,
+ "learning_rate": 0.0006,
+ "loss": 3.730795383453369,
+ "step": 2418
+ },
+ {
+ "epoch": 33.60113586719091,
+ "grad_norm": 0.20861074328422546,
+ "learning_rate": 0.0006,
+ "loss": 3.707066535949707,
+ "step": 2419
+ },
+ {
+ "epoch": 33.615115771079076,
+ "grad_norm": 0.20570263266563416,
+ "learning_rate": 0.0006,
+ "loss": 3.730602502822876,
+ "step": 2420
+ },
+ {
+ "epoch": 33.62909567496723,
+ "grad_norm": 0.21318231523036957,
+ "learning_rate": 0.0006,
+ "loss": 3.7073278427124023,
+ "step": 2421
+ },
+ {
+ "epoch": 33.643075578855395,
+ "grad_norm": 0.2142639458179474,
+ "learning_rate": 0.0006,
+ "loss": 3.718470573425293,
+ "step": 2422
+ },
+ {
+ "epoch": 33.65705548274356,
+ "grad_norm": 0.19620704650878906,
+ "learning_rate": 0.0006,
+ "loss": 3.716036319732666,
+ "step": 2423
+ },
+ {
+ "epoch": 33.671035386631715,
+ "grad_norm": 0.19308267533779144,
+ "learning_rate": 0.0006,
+ "loss": 3.734597682952881,
+ "step": 2424
+ },
+ {
+ "epoch": 33.68501529051988,
+ "grad_norm": 0.19453389942646027,
+ "learning_rate": 0.0006,
+ "loss": 3.726262092590332,
+ "step": 2425
+ },
+ {
+ "epoch": 33.69899519440804,
+ "grad_norm": 0.20405639708042145,
+ "learning_rate": 0.0006,
+ "loss": 3.678340435028076,
+ "step": 2426
+ },
+ {
+ "epoch": 33.7129750982962,
+ "grad_norm": 0.19525611400604248,
+ "learning_rate": 0.0006,
+ "loss": 3.723907470703125,
+ "step": 2427
+ },
+ {
+ "epoch": 33.72695500218436,
+ "grad_norm": 0.19390441477298737,
+ "learning_rate": 0.0006,
+ "loss": 3.707897186279297,
+ "step": 2428
+ },
+ {
+ "epoch": 33.74093490607252,
+ "grad_norm": 0.2032899558544159,
+ "learning_rate": 0.0006,
+ "loss": 3.735041618347168,
+ "step": 2429
+ },
+ {
+ "epoch": 33.75491480996068,
+ "grad_norm": 0.2134784460067749,
+ "learning_rate": 0.0006,
+ "loss": 3.674978017807007,
+ "step": 2430
+ },
+ {
+ "epoch": 33.768894713848844,
+ "grad_norm": 0.24691973626613617,
+ "learning_rate": 0.0006,
+ "loss": 3.7028675079345703,
+ "step": 2431
+ },
+ {
+ "epoch": 33.782874617737,
+ "grad_norm": 0.2272702008485794,
+ "learning_rate": 0.0006,
+ "loss": 3.7277941703796387,
+ "step": 2432
+ },
+ {
+ "epoch": 33.796854521625164,
+ "grad_norm": 0.20052100718021393,
+ "learning_rate": 0.0006,
+ "loss": 3.7146830558776855,
+ "step": 2433
+ },
+ {
+ "epoch": 33.81083442551333,
+ "grad_norm": 0.1958577185869217,
+ "learning_rate": 0.0006,
+ "loss": 3.6936864852905273,
+ "step": 2434
+ },
+ {
+ "epoch": 33.824814329401484,
+ "grad_norm": 0.191860631108284,
+ "learning_rate": 0.0006,
+ "loss": 3.7451858520507812,
+ "step": 2435
+ },
+ {
+ "epoch": 33.83879423328965,
+ "grad_norm": 0.20961424708366394,
+ "learning_rate": 0.0006,
+ "loss": 3.722400665283203,
+ "step": 2436
+ },
+ {
+ "epoch": 33.8527741371778,
+ "grad_norm": 0.19784288108348846,
+ "learning_rate": 0.0006,
+ "loss": 3.712474822998047,
+ "step": 2437
+ },
+ {
+ "epoch": 33.86675404106597,
+ "grad_norm": 0.18645426630973816,
+ "learning_rate": 0.0006,
+ "loss": 3.7054500579833984,
+ "step": 2438
+ },
+ {
+ "epoch": 33.88073394495413,
+ "grad_norm": 0.19622360169887543,
+ "learning_rate": 0.0006,
+ "loss": 3.7010550498962402,
+ "step": 2439
+ },
+ {
+ "epoch": 33.89471384884229,
+ "grad_norm": 0.20283745229244232,
+ "learning_rate": 0.0006,
+ "loss": 3.7252519130706787,
+ "step": 2440
+ },
+ {
+ "epoch": 33.90869375273045,
+ "grad_norm": 0.18671709299087524,
+ "learning_rate": 0.0006,
+ "loss": 3.6932945251464844,
+ "step": 2441
+ },
+ {
+ "epoch": 33.92267365661861,
+ "grad_norm": 0.17953112721443176,
+ "learning_rate": 0.0006,
+ "loss": 3.7453854084014893,
+ "step": 2442
+ },
+ {
+ "epoch": 33.93665356050677,
+ "grad_norm": 0.1945437788963318,
+ "learning_rate": 0.0006,
+ "loss": 3.722881317138672,
+ "step": 2443
+ },
+ {
+ "epoch": 33.95063346439493,
+ "grad_norm": 0.18414495885372162,
+ "learning_rate": 0.0006,
+ "loss": 3.7402591705322266,
+ "step": 2444
+ },
+ {
+ "epoch": 33.964613368283096,
+ "grad_norm": 0.1936541497707367,
+ "learning_rate": 0.0006,
+ "loss": 3.720057964324951,
+ "step": 2445
+ },
+ {
+ "epoch": 33.97859327217125,
+ "grad_norm": 0.20177008211612701,
+ "learning_rate": 0.0006,
+ "loss": 3.6983802318573,
+ "step": 2446
+ },
+ {
+ "epoch": 33.992573176059416,
+ "grad_norm": 0.18977557122707367,
+ "learning_rate": 0.0006,
+ "loss": 3.7202203273773193,
+ "step": 2447
+ },
+ {
+ "epoch": 34.0,
+ "grad_norm": 0.220163956284523,
+ "learning_rate": 0.0006,
+ "loss": 3.72540283203125,
+ "step": 2448
+ },
+ {
+ "epoch": 34.0,
+ "eval_loss": 4.009343147277832,
+ "eval_runtime": 44.1825,
+ "eval_samples_per_second": 55.271,
+ "eval_steps_per_second": 3.463,
+ "step": 2448
+ },
+ {
+ "epoch": 34.01397990388816,
+ "grad_norm": 0.19843372702598572,
+ "learning_rate": 0.0006,
+ "loss": 3.664431571960449,
+ "step": 2449
+ },
+ {
+ "epoch": 34.02795980777632,
+ "grad_norm": 0.20413008332252502,
+ "learning_rate": 0.0006,
+ "loss": 3.699094533920288,
+ "step": 2450
+ },
+ {
+ "epoch": 34.04193971166448,
+ "grad_norm": 0.22086848318576813,
+ "learning_rate": 0.0006,
+ "loss": 3.681825637817383,
+ "step": 2451
+ },
+ {
+ "epoch": 34.05591961555265,
+ "grad_norm": 0.20753061771392822,
+ "learning_rate": 0.0006,
+ "loss": 3.677116870880127,
+ "step": 2452
+ },
+ {
+ "epoch": 34.0698995194408,
+ "grad_norm": 0.21835783123970032,
+ "learning_rate": 0.0006,
+ "loss": 3.7079062461853027,
+ "step": 2453
+ },
+ {
+ "epoch": 34.083879423328966,
+ "grad_norm": 0.2244357019662857,
+ "learning_rate": 0.0006,
+ "loss": 3.69844913482666,
+ "step": 2454
+ },
+ {
+ "epoch": 34.09785932721712,
+ "grad_norm": 0.2238784283399582,
+ "learning_rate": 0.0006,
+ "loss": 3.6835570335388184,
+ "step": 2455
+ },
+ {
+ "epoch": 34.111839231105286,
+ "grad_norm": 0.24816176295280457,
+ "learning_rate": 0.0006,
+ "loss": 3.6832966804504395,
+ "step": 2456
+ },
+ {
+ "epoch": 34.12581913499345,
+ "grad_norm": 0.2445257306098938,
+ "learning_rate": 0.0006,
+ "loss": 3.7190022468566895,
+ "step": 2457
+ },
+ {
+ "epoch": 34.139799038881605,
+ "grad_norm": 0.24510814249515533,
+ "learning_rate": 0.0006,
+ "loss": 3.678098201751709,
+ "step": 2458
+ },
+ {
+ "epoch": 34.15377894276977,
+ "grad_norm": 0.2550753653049469,
+ "learning_rate": 0.0006,
+ "loss": 3.69335675239563,
+ "step": 2459
+ },
+ {
+ "epoch": 34.16775884665793,
+ "grad_norm": 0.2435017228126526,
+ "learning_rate": 0.0006,
+ "loss": 3.70463228225708,
+ "step": 2460
+ },
+ {
+ "epoch": 34.18173875054609,
+ "grad_norm": 0.26441144943237305,
+ "learning_rate": 0.0006,
+ "loss": 3.6757068634033203,
+ "step": 2461
+ },
+ {
+ "epoch": 34.19571865443425,
+ "grad_norm": 0.2737993001937866,
+ "learning_rate": 0.0006,
+ "loss": 3.6510863304138184,
+ "step": 2462
+ },
+ {
+ "epoch": 34.20969855832241,
+ "grad_norm": 0.24625736474990845,
+ "learning_rate": 0.0006,
+ "loss": 3.707612991333008,
+ "step": 2463
+ },
+ {
+ "epoch": 34.22367846221057,
+ "grad_norm": 0.22222039103507996,
+ "learning_rate": 0.0006,
+ "loss": 3.7145133018493652,
+ "step": 2464
+ },
+ {
+ "epoch": 34.237658366098735,
+ "grad_norm": 0.2173531949520111,
+ "learning_rate": 0.0006,
+ "loss": 3.685112476348877,
+ "step": 2465
+ },
+ {
+ "epoch": 34.25163826998689,
+ "grad_norm": 0.23102006316184998,
+ "learning_rate": 0.0006,
+ "loss": 3.6742453575134277,
+ "step": 2466
+ },
+ {
+ "epoch": 34.265618173875055,
+ "grad_norm": 0.22287188470363617,
+ "learning_rate": 0.0006,
+ "loss": 3.7030534744262695,
+ "step": 2467
+ },
+ {
+ "epoch": 34.27959807776322,
+ "grad_norm": 0.20377251505851746,
+ "learning_rate": 0.0006,
+ "loss": 3.6866259574890137,
+ "step": 2468
+ },
+ {
+ "epoch": 34.293577981651374,
+ "grad_norm": 0.19867438077926636,
+ "learning_rate": 0.0006,
+ "loss": 3.70395565032959,
+ "step": 2469
+ },
+ {
+ "epoch": 34.30755788553954,
+ "grad_norm": 0.2014918178319931,
+ "learning_rate": 0.0006,
+ "loss": 3.660795211791992,
+ "step": 2470
+ },
+ {
+ "epoch": 34.3215377894277,
+ "grad_norm": 0.20981402695178986,
+ "learning_rate": 0.0006,
+ "loss": 3.7045323848724365,
+ "step": 2471
+ },
+ {
+ "epoch": 34.33551769331586,
+ "grad_norm": 0.20968124270439148,
+ "learning_rate": 0.0006,
+ "loss": 3.7113170623779297,
+ "step": 2472
+ },
+ {
+ "epoch": 34.34949759720402,
+ "grad_norm": 0.2214043140411377,
+ "learning_rate": 0.0006,
+ "loss": 3.7330074310302734,
+ "step": 2473
+ },
+ {
+ "epoch": 34.36347750109218,
+ "grad_norm": 0.21231533586978912,
+ "learning_rate": 0.0006,
+ "loss": 3.6706933975219727,
+ "step": 2474
+ },
+ {
+ "epoch": 34.37745740498034,
+ "grad_norm": 0.2022094875574112,
+ "learning_rate": 0.0006,
+ "loss": 3.7230453491210938,
+ "step": 2475
+ },
+ {
+ "epoch": 34.391437308868504,
+ "grad_norm": 0.2281145304441452,
+ "learning_rate": 0.0006,
+ "loss": 3.7197465896606445,
+ "step": 2476
+ },
+ {
+ "epoch": 34.40541721275666,
+ "grad_norm": 0.2147362381219864,
+ "learning_rate": 0.0006,
+ "loss": 3.7092337608337402,
+ "step": 2477
+ },
+ {
+ "epoch": 34.419397116644824,
+ "grad_norm": 0.19984203577041626,
+ "learning_rate": 0.0006,
+ "loss": 3.6939496994018555,
+ "step": 2478
+ },
+ {
+ "epoch": 34.43337702053299,
+ "grad_norm": 0.21088480949401855,
+ "learning_rate": 0.0006,
+ "loss": 3.6942667961120605,
+ "step": 2479
+ },
+ {
+ "epoch": 34.44735692442114,
+ "grad_norm": 0.20444616675376892,
+ "learning_rate": 0.0006,
+ "loss": 3.718186378479004,
+ "step": 2480
+ },
+ {
+ "epoch": 34.46133682830931,
+ "grad_norm": 0.19133952260017395,
+ "learning_rate": 0.0006,
+ "loss": 3.697197437286377,
+ "step": 2481
+ },
+ {
+ "epoch": 34.47531673219746,
+ "grad_norm": 0.2219255417585373,
+ "learning_rate": 0.0006,
+ "loss": 3.684386730194092,
+ "step": 2482
+ },
+ {
+ "epoch": 34.489296636085626,
+ "grad_norm": 0.2480643391609192,
+ "learning_rate": 0.0006,
+ "loss": 3.6656622886657715,
+ "step": 2483
+ },
+ {
+ "epoch": 34.50327653997379,
+ "grad_norm": 0.22907346487045288,
+ "learning_rate": 0.0006,
+ "loss": 3.741391897201538,
+ "step": 2484
+ },
+ {
+ "epoch": 34.517256443861946,
+ "grad_norm": 0.20277173817157745,
+ "learning_rate": 0.0006,
+ "loss": 3.7062582969665527,
+ "step": 2485
+ },
+ {
+ "epoch": 34.53123634775011,
+ "grad_norm": 0.21411100029945374,
+ "learning_rate": 0.0006,
+ "loss": 3.691784381866455,
+ "step": 2486
+ },
+ {
+ "epoch": 34.54521625163827,
+ "grad_norm": 0.20261600613594055,
+ "learning_rate": 0.0006,
+ "loss": 3.6855502128601074,
+ "step": 2487
+ },
+ {
+ "epoch": 34.55919615552643,
+ "grad_norm": 0.23913109302520752,
+ "learning_rate": 0.0006,
+ "loss": 3.670754909515381,
+ "step": 2488
+ },
+ {
+ "epoch": 34.57317605941459,
+ "grad_norm": 0.24427077174186707,
+ "learning_rate": 0.0006,
+ "loss": 3.700611114501953,
+ "step": 2489
+ },
+ {
+ "epoch": 34.58715596330275,
+ "grad_norm": 0.20305761694908142,
+ "learning_rate": 0.0006,
+ "loss": 3.7284226417541504,
+ "step": 2490
+ },
+ {
+ "epoch": 34.60113586719091,
+ "grad_norm": 0.20398905873298645,
+ "learning_rate": 0.0006,
+ "loss": 3.6860880851745605,
+ "step": 2491
+ },
+ {
+ "epoch": 34.615115771079076,
+ "grad_norm": 0.21016651391983032,
+ "learning_rate": 0.0006,
+ "loss": 3.7366015911102295,
+ "step": 2492
+ },
+ {
+ "epoch": 34.62909567496723,
+ "grad_norm": 0.22279402613639832,
+ "learning_rate": 0.0006,
+ "loss": 3.7024295330047607,
+ "step": 2493
+ },
+ {
+ "epoch": 34.643075578855395,
+ "grad_norm": 0.25080347061157227,
+ "learning_rate": 0.0006,
+ "loss": 3.68355655670166,
+ "step": 2494
+ },
+ {
+ "epoch": 34.65705548274356,
+ "grad_norm": 0.2702971398830414,
+ "learning_rate": 0.0006,
+ "loss": 3.7400612831115723,
+ "step": 2495
+ },
+ {
+ "epoch": 34.671035386631715,
+ "grad_norm": 0.299398273229599,
+ "learning_rate": 0.0006,
+ "loss": 3.7160325050354004,
+ "step": 2496
+ },
+ {
+ "epoch": 34.68501529051988,
+ "grad_norm": 0.29151082038879395,
+ "learning_rate": 0.0006,
+ "loss": 3.7124147415161133,
+ "step": 2497
+ },
+ {
+ "epoch": 34.69899519440804,
+ "grad_norm": 0.23828288912773132,
+ "learning_rate": 0.0006,
+ "loss": 3.7181267738342285,
+ "step": 2498
+ },
+ {
+ "epoch": 34.7129750982962,
+ "grad_norm": 0.21776588261127472,
+ "learning_rate": 0.0006,
+ "loss": 3.6811792850494385,
+ "step": 2499
+ },
+ {
+ "epoch": 34.72695500218436,
+ "grad_norm": 0.2318469136953354,
+ "learning_rate": 0.0006,
+ "loss": 3.698467254638672,
+ "step": 2500
+ },
+ {
+ "epoch": 34.74093490607252,
+ "grad_norm": 0.22341546416282654,
+ "learning_rate": 0.0006,
+ "loss": 3.7406411170959473,
+ "step": 2501
+ },
+ {
+ "epoch": 34.75491480996068,
+ "grad_norm": 0.20676901936531067,
+ "learning_rate": 0.0006,
+ "loss": 3.6914243698120117,
+ "step": 2502
+ },
+ {
+ "epoch": 34.768894713848844,
+ "grad_norm": 0.20459024608135223,
+ "learning_rate": 0.0006,
+ "loss": 3.713369607925415,
+ "step": 2503
+ },
+ {
+ "epoch": 34.782874617737,
+ "grad_norm": 0.22369320690631866,
+ "learning_rate": 0.0006,
+ "loss": 3.697587490081787,
+ "step": 2504
+ },
+ {
+ "epoch": 34.796854521625164,
+ "grad_norm": 0.2393338829278946,
+ "learning_rate": 0.0006,
+ "loss": 3.7171854972839355,
+ "step": 2505
+ },
+ {
+ "epoch": 34.81083442551333,
+ "grad_norm": 0.23756961524486542,
+ "learning_rate": 0.0006,
+ "loss": 3.6969614028930664,
+ "step": 2506
+ },
+ {
+ "epoch": 34.824814329401484,
+ "grad_norm": 0.22761376202106476,
+ "learning_rate": 0.0006,
+ "loss": 3.722501754760742,
+ "step": 2507
+ },
+ {
+ "epoch": 34.83879423328965,
+ "grad_norm": 0.23564888536930084,
+ "learning_rate": 0.0006,
+ "loss": 3.714003086090088,
+ "step": 2508
+ },
+ {
+ "epoch": 34.8527741371778,
+ "grad_norm": 0.22197313606739044,
+ "learning_rate": 0.0006,
+ "loss": 3.7107110023498535,
+ "step": 2509
+ },
+ {
+ "epoch": 34.86675404106597,
+ "grad_norm": 0.20199328660964966,
+ "learning_rate": 0.0006,
+ "loss": 3.7167551517486572,
+ "step": 2510
+ },
+ {
+ "epoch": 34.88073394495413,
+ "grad_norm": 0.19569700956344604,
+ "learning_rate": 0.0006,
+ "loss": 3.679098129272461,
+ "step": 2511
+ },
+ {
+ "epoch": 34.89471384884229,
+ "grad_norm": 0.21320141851902008,
+ "learning_rate": 0.0006,
+ "loss": 3.733187675476074,
+ "step": 2512
+ },
+ {
+ "epoch": 34.90869375273045,
+ "grad_norm": 0.20074625313282013,
+ "learning_rate": 0.0006,
+ "loss": 3.713339328765869,
+ "step": 2513
+ },
+ {
+ "epoch": 34.92267365661861,
+ "grad_norm": 0.20249252021312714,
+ "learning_rate": 0.0006,
+ "loss": 3.680785655975342,
+ "step": 2514
+ },
+ {
+ "epoch": 34.93665356050677,
+ "grad_norm": 0.22165577113628387,
+ "learning_rate": 0.0006,
+ "loss": 3.696131706237793,
+ "step": 2515
+ },
+ {
+ "epoch": 34.95063346439493,
+ "grad_norm": 0.20769749581813812,
+ "learning_rate": 0.0006,
+ "loss": 3.6910316944122314,
+ "step": 2516
+ },
+ {
+ "epoch": 34.964613368283096,
+ "grad_norm": 0.20857223868370056,
+ "learning_rate": 0.0006,
+ "loss": 3.7327451705932617,
+ "step": 2517
+ },
+ {
+ "epoch": 34.97859327217125,
+ "grad_norm": 0.19155766069889069,
+ "learning_rate": 0.0006,
+ "loss": 3.705609083175659,
+ "step": 2518
+ },
+ {
+ "epoch": 34.992573176059416,
+ "grad_norm": 0.17890529334545135,
+ "learning_rate": 0.0006,
+ "loss": 3.6844797134399414,
+ "step": 2519
+ },
+ {
+ "epoch": 35.0,
+ "grad_norm": 0.2053528130054474,
+ "learning_rate": 0.0006,
+ "loss": 3.6942501068115234,
+ "step": 2520
+ },
+ {
+ "epoch": 35.0,
+ "eval_loss": 3.998469591140747,
+ "eval_runtime": 43.9147,
+ "eval_samples_per_second": 55.608,
+ "eval_steps_per_second": 3.484,
+ "step": 2520
+ },
+ {
+ "epoch": 35.01397990388816,
+ "grad_norm": 0.2288869470357895,
+ "learning_rate": 0.0006,
+ "loss": 3.6966426372528076,
+ "step": 2521
+ },
+ {
+ "epoch": 35.02795980777632,
+ "grad_norm": 0.25702035427093506,
+ "learning_rate": 0.0006,
+ "loss": 3.6622562408447266,
+ "step": 2522
+ },
+ {
+ "epoch": 35.04193971166448,
+ "grad_norm": 0.254422128200531,
+ "learning_rate": 0.0006,
+ "loss": 3.690046548843384,
+ "step": 2523
+ },
+ {
+ "epoch": 35.05591961555265,
+ "grad_norm": 0.24177077412605286,
+ "learning_rate": 0.0006,
+ "loss": 3.685335874557495,
+ "step": 2524
+ },
+ {
+ "epoch": 35.0698995194408,
+ "grad_norm": 0.23959586024284363,
+ "learning_rate": 0.0006,
+ "loss": 3.6534650325775146,
+ "step": 2525
+ },
+ {
+ "epoch": 35.083879423328966,
+ "grad_norm": 0.23474839329719543,
+ "learning_rate": 0.0006,
+ "loss": 3.7092814445495605,
+ "step": 2526
+ },
+ {
+ "epoch": 35.09785932721712,
+ "grad_norm": 0.23240867257118225,
+ "learning_rate": 0.0006,
+ "loss": 3.6819097995758057,
+ "step": 2527
+ },
+ {
+ "epoch": 35.111839231105286,
+ "grad_norm": 0.26267048716545105,
+ "learning_rate": 0.0006,
+ "loss": 3.6566696166992188,
+ "step": 2528
+ },
+ {
+ "epoch": 35.12581913499345,
+ "grad_norm": 0.27070754766464233,
+ "learning_rate": 0.0006,
+ "loss": 3.676304340362549,
+ "step": 2529
+ },
+ {
+ "epoch": 35.139799038881605,
+ "grad_norm": 0.25297826528549194,
+ "learning_rate": 0.0006,
+ "loss": 3.65259051322937,
+ "step": 2530
+ },
+ {
+ "epoch": 35.15377894276977,
+ "grad_norm": 0.22776272892951965,
+ "learning_rate": 0.0006,
+ "loss": 3.6813838481903076,
+ "step": 2531
+ },
+ {
+ "epoch": 35.16775884665793,
+ "grad_norm": 0.2288261204957962,
+ "learning_rate": 0.0006,
+ "loss": 3.6916379928588867,
+ "step": 2532
+ },
+ {
+ "epoch": 35.18173875054609,
+ "grad_norm": 0.20445892214775085,
+ "learning_rate": 0.0006,
+ "loss": 3.6550145149230957,
+ "step": 2533
+ },
+ {
+ "epoch": 35.19571865443425,
+ "grad_norm": 0.20298904180526733,
+ "learning_rate": 0.0006,
+ "loss": 3.704042434692383,
+ "step": 2534
+ },
+ {
+ "epoch": 35.20969855832241,
+ "grad_norm": 0.2264423668384552,
+ "learning_rate": 0.0006,
+ "loss": 3.646308183670044,
+ "step": 2535
+ },
+ {
+ "epoch": 35.22367846221057,
+ "grad_norm": 0.21537378430366516,
+ "learning_rate": 0.0006,
+ "loss": 3.686048984527588,
+ "step": 2536
+ },
+ {
+ "epoch": 35.237658366098735,
+ "grad_norm": 0.19820059835910797,
+ "learning_rate": 0.0006,
+ "loss": 3.6993050575256348,
+ "step": 2537
+ },
+ {
+ "epoch": 35.25163826998689,
+ "grad_norm": 0.19485290348529816,
+ "learning_rate": 0.0006,
+ "loss": 3.6507070064544678,
+ "step": 2538
+ },
+ {
+ "epoch": 35.265618173875055,
+ "grad_norm": 0.21234364807605743,
+ "learning_rate": 0.0006,
+ "loss": 3.6913719177246094,
+ "step": 2539
+ },
+ {
+ "epoch": 35.27959807776322,
+ "grad_norm": 0.19834300875663757,
+ "learning_rate": 0.0006,
+ "loss": 3.6793041229248047,
+ "step": 2540
+ },
+ {
+ "epoch": 35.293577981651374,
+ "grad_norm": 0.1969013512134552,
+ "learning_rate": 0.0006,
+ "loss": 3.7063517570495605,
+ "step": 2541
+ },
+ {
+ "epoch": 35.30755788553954,
+ "grad_norm": 0.196136936545372,
+ "learning_rate": 0.0006,
+ "loss": 3.679825782775879,
+ "step": 2542
+ },
+ {
+ "epoch": 35.3215377894277,
+ "grad_norm": 0.20465479791164398,
+ "learning_rate": 0.0006,
+ "loss": 3.698906421661377,
+ "step": 2543
+ },
+ {
+ "epoch": 35.33551769331586,
+ "grad_norm": 0.204293355345726,
+ "learning_rate": 0.0006,
+ "loss": 3.728549003601074,
+ "step": 2544
+ },
+ {
+ "epoch": 35.34949759720402,
+ "grad_norm": 0.18861903250217438,
+ "learning_rate": 0.0006,
+ "loss": 3.687018632888794,
+ "step": 2545
+ },
+ {
+ "epoch": 35.36347750109218,
+ "grad_norm": 0.19066226482391357,
+ "learning_rate": 0.0006,
+ "loss": 3.667919158935547,
+ "step": 2546
+ },
+ {
+ "epoch": 35.37745740498034,
+ "grad_norm": 0.19985736906528473,
+ "learning_rate": 0.0006,
+ "loss": 3.6697773933410645,
+ "step": 2547
+ },
+ {
+ "epoch": 35.391437308868504,
+ "grad_norm": 0.20669348537921906,
+ "learning_rate": 0.0006,
+ "loss": 3.6718077659606934,
+ "step": 2548
+ },
+ {
+ "epoch": 35.40541721275666,
+ "grad_norm": 0.22164477407932281,
+ "learning_rate": 0.0006,
+ "loss": 3.692106246948242,
+ "step": 2549
+ },
+ {
+ "epoch": 35.419397116644824,
+ "grad_norm": 0.20884688198566437,
+ "learning_rate": 0.0006,
+ "loss": 3.714324712753296,
+ "step": 2550
+ },
+ {
+ "epoch": 35.43337702053299,
+ "grad_norm": 0.21811005473136902,
+ "learning_rate": 0.0006,
+ "loss": 3.678694725036621,
+ "step": 2551
+ },
+ {
+ "epoch": 35.44735692442114,
+ "grad_norm": 0.2427632063627243,
+ "learning_rate": 0.0006,
+ "loss": 3.6584935188293457,
+ "step": 2552
+ },
+ {
+ "epoch": 35.46133682830931,
+ "grad_norm": 0.2584928572177887,
+ "learning_rate": 0.0006,
+ "loss": 3.694148063659668,
+ "step": 2553
+ },
+ {
+ "epoch": 35.47531673219746,
+ "grad_norm": 0.2594548761844635,
+ "learning_rate": 0.0006,
+ "loss": 3.690629005432129,
+ "step": 2554
+ },
+ {
+ "epoch": 35.489296636085626,
+ "grad_norm": 0.2521844208240509,
+ "learning_rate": 0.0006,
+ "loss": 3.6949915885925293,
+ "step": 2555
+ },
+ {
+ "epoch": 35.50327653997379,
+ "grad_norm": 0.2284533679485321,
+ "learning_rate": 0.0006,
+ "loss": 3.6822848320007324,
+ "step": 2556
+ },
+ {
+ "epoch": 35.517256443861946,
+ "grad_norm": 0.2350241094827652,
+ "learning_rate": 0.0006,
+ "loss": 3.6841659545898438,
+ "step": 2557
+ },
+ {
+ "epoch": 35.53123634775011,
+ "grad_norm": 0.22496885061264038,
+ "learning_rate": 0.0006,
+ "loss": 3.676447629928589,
+ "step": 2558
+ },
+ {
+ "epoch": 35.54521625163827,
+ "grad_norm": 0.24326276779174805,
+ "learning_rate": 0.0006,
+ "loss": 3.681678533554077,
+ "step": 2559
+ },
+ {
+ "epoch": 35.55919615552643,
+ "grad_norm": 0.26298362016677856,
+ "learning_rate": 0.0006,
+ "loss": 3.6877617835998535,
+ "step": 2560
+ },
+ {
+ "epoch": 35.57317605941459,
+ "grad_norm": 0.2507239282131195,
+ "learning_rate": 0.0006,
+ "loss": 3.7089176177978516,
+ "step": 2561
+ },
+ {
+ "epoch": 35.58715596330275,
+ "grad_norm": 0.2276458442211151,
+ "learning_rate": 0.0006,
+ "loss": 3.705570936203003,
+ "step": 2562
+ },
+ {
+ "epoch": 35.60113586719091,
+ "grad_norm": 0.23317085206508636,
+ "learning_rate": 0.0006,
+ "loss": 3.6772396564483643,
+ "step": 2563
+ },
+ {
+ "epoch": 35.615115771079076,
+ "grad_norm": 0.23301710188388824,
+ "learning_rate": 0.0006,
+ "loss": 3.694855213165283,
+ "step": 2564
+ },
+ {
+ "epoch": 35.62909567496723,
+ "grad_norm": 0.2170179933309555,
+ "learning_rate": 0.0006,
+ "loss": 3.7095537185668945,
+ "step": 2565
+ },
+ {
+ "epoch": 35.643075578855395,
+ "grad_norm": 0.21211965382099152,
+ "learning_rate": 0.0006,
+ "loss": 3.670109272003174,
+ "step": 2566
+ },
+ {
+ "epoch": 35.65705548274356,
+ "grad_norm": 0.21052585542201996,
+ "learning_rate": 0.0006,
+ "loss": 3.6576027870178223,
+ "step": 2567
+ },
+ {
+ "epoch": 35.671035386631715,
+ "grad_norm": 0.21556039154529572,
+ "learning_rate": 0.0006,
+ "loss": 3.6870639324188232,
+ "step": 2568
+ },
+ {
+ "epoch": 35.68501529051988,
+ "grad_norm": 0.2246469408273697,
+ "learning_rate": 0.0006,
+ "loss": 3.675652503967285,
+ "step": 2569
+ },
+ {
+ "epoch": 35.69899519440804,
+ "grad_norm": 0.21891754865646362,
+ "learning_rate": 0.0006,
+ "loss": 3.692298650741577,
+ "step": 2570
+ },
+ {
+ "epoch": 35.7129750982962,
+ "grad_norm": 0.18774104118347168,
+ "learning_rate": 0.0006,
+ "loss": 3.681035041809082,
+ "step": 2571
+ },
+ {
+ "epoch": 35.72695500218436,
+ "grad_norm": 0.19461573660373688,
+ "learning_rate": 0.0006,
+ "loss": 3.7007932662963867,
+ "step": 2572
+ },
+ {
+ "epoch": 35.74093490607252,
+ "grad_norm": 0.25579094886779785,
+ "learning_rate": 0.0006,
+ "loss": 3.724409580230713,
+ "step": 2573
+ },
+ {
+ "epoch": 35.75491480996068,
+ "grad_norm": 0.27635645866394043,
+ "learning_rate": 0.0006,
+ "loss": 3.68107271194458,
+ "step": 2574
+ },
+ {
+ "epoch": 35.768894713848844,
+ "grad_norm": 0.2233380675315857,
+ "learning_rate": 0.0006,
+ "loss": 3.7123913764953613,
+ "step": 2575
+ },
+ {
+ "epoch": 35.782874617737,
+ "grad_norm": 0.19383835792541504,
+ "learning_rate": 0.0006,
+ "loss": 3.6948328018188477,
+ "step": 2576
+ },
+ {
+ "epoch": 35.796854521625164,
+ "grad_norm": 0.18138426542282104,
+ "learning_rate": 0.0006,
+ "loss": 3.6837103366851807,
+ "step": 2577
+ },
+ {
+ "epoch": 35.81083442551333,
+ "grad_norm": 0.18680135905742645,
+ "learning_rate": 0.0006,
+ "loss": 3.7106502056121826,
+ "step": 2578
+ },
+ {
+ "epoch": 35.824814329401484,
+ "grad_norm": 0.19226312637329102,
+ "learning_rate": 0.0006,
+ "loss": 3.69488787651062,
+ "step": 2579
+ },
+ {
+ "epoch": 35.83879423328965,
+ "grad_norm": 0.19224657118320465,
+ "learning_rate": 0.0006,
+ "loss": 3.7103662490844727,
+ "step": 2580
+ },
+ {
+ "epoch": 35.8527741371778,
+ "grad_norm": 0.18991880118846893,
+ "learning_rate": 0.0006,
+ "loss": 3.7154245376586914,
+ "step": 2581
+ },
+ {
+ "epoch": 35.86675404106597,
+ "grad_norm": 0.2036849409341812,
+ "learning_rate": 0.0006,
+ "loss": 3.723738193511963,
+ "step": 2582
+ },
+ {
+ "epoch": 35.88073394495413,
+ "grad_norm": 0.24730375409126282,
+ "learning_rate": 0.0006,
+ "loss": 3.6830549240112305,
+ "step": 2583
+ },
+ {
+ "epoch": 35.89471384884229,
+ "grad_norm": 0.26552343368530273,
+ "learning_rate": 0.0006,
+ "loss": 3.7025017738342285,
+ "step": 2584
+ },
+ {
+ "epoch": 35.90869375273045,
+ "grad_norm": 0.2621893286705017,
+ "learning_rate": 0.0006,
+ "loss": 3.697399854660034,
+ "step": 2585
+ },
+ {
+ "epoch": 35.92267365661861,
+ "grad_norm": 0.2320089191198349,
+ "learning_rate": 0.0006,
+ "loss": 3.722207546234131,
+ "step": 2586
+ },
+ {
+ "epoch": 35.93665356050677,
+ "grad_norm": 0.1848745346069336,
+ "learning_rate": 0.0006,
+ "loss": 3.711249351501465,
+ "step": 2587
+ },
+ {
+ "epoch": 35.95063346439493,
+ "grad_norm": 0.24218113720417023,
+ "learning_rate": 0.0006,
+ "loss": 3.698894500732422,
+ "step": 2588
+ },
+ {
+ "epoch": 35.964613368283096,
+ "grad_norm": 0.29338452219963074,
+ "learning_rate": 0.0006,
+ "loss": 3.7470521926879883,
+ "step": 2589
+ },
+ {
+ "epoch": 35.97859327217125,
+ "grad_norm": 0.2804136276245117,
+ "learning_rate": 0.0006,
+ "loss": 3.750649929046631,
+ "step": 2590
+ },
+ {
+ "epoch": 35.992573176059416,
+ "grad_norm": 0.26404470205307007,
+ "learning_rate": 0.0006,
+ "loss": 3.6995797157287598,
+ "step": 2591
+ },
+ {
+ "epoch": 36.0,
+ "grad_norm": 0.27446141839027405,
+ "learning_rate": 0.0006,
+ "loss": 3.715768814086914,
+ "step": 2592
+ },
+ {
+ "epoch": 36.0,
+ "eval_loss": 4.007599830627441,
+ "eval_runtime": 44.0149,
+ "eval_samples_per_second": 55.481,
+ "eval_steps_per_second": 3.476,
+ "step": 2592
+ },
+ {
+ "epoch": 36.01397990388816,
+ "grad_norm": 0.2365594208240509,
+ "learning_rate": 0.0006,
+ "loss": 3.6529457569122314,
+ "step": 2593
+ },
+ {
+ "epoch": 36.02795980777632,
+ "grad_norm": 0.24824099242687225,
+ "learning_rate": 0.0006,
+ "loss": 3.6703386306762695,
+ "step": 2594
+ },
+ {
+ "epoch": 36.04193971166448,
+ "grad_norm": 0.26802200078964233,
+ "learning_rate": 0.0006,
+ "loss": 3.688307762145996,
+ "step": 2595
+ },
+ {
+ "epoch": 36.05591961555265,
+ "grad_norm": 0.2552911341190338,
+ "learning_rate": 0.0006,
+ "loss": 3.681797981262207,
+ "step": 2596
+ },
+ {
+ "epoch": 36.0698995194408,
+ "grad_norm": 0.254991739988327,
+ "learning_rate": 0.0006,
+ "loss": 3.644087791442871,
+ "step": 2597
+ },
+ {
+ "epoch": 36.083879423328966,
+ "grad_norm": 0.2496735155582428,
+ "learning_rate": 0.0006,
+ "loss": 3.644047737121582,
+ "step": 2598
+ },
+ {
+ "epoch": 36.09785932721712,
+ "grad_norm": 0.23637443780899048,
+ "learning_rate": 0.0006,
+ "loss": 3.684454917907715,
+ "step": 2599
+ },
+ {
+ "epoch": 36.111839231105286,
+ "grad_norm": 0.22065003216266632,
+ "learning_rate": 0.0006,
+ "loss": 3.661752700805664,
+ "step": 2600
+ },
+ {
+ "epoch": 36.12581913499345,
+ "grad_norm": 0.2292395532131195,
+ "learning_rate": 0.0006,
+ "loss": 3.6709558963775635,
+ "step": 2601
+ },
+ {
+ "epoch": 36.139799038881605,
+ "grad_norm": 0.22295089066028595,
+ "learning_rate": 0.0006,
+ "loss": 3.642230987548828,
+ "step": 2602
+ },
+ {
+ "epoch": 36.15377894276977,
+ "grad_norm": 0.2220531553030014,
+ "learning_rate": 0.0006,
+ "loss": 3.653268814086914,
+ "step": 2603
+ },
+ {
+ "epoch": 36.16775884665793,
+ "grad_norm": 0.21605174243450165,
+ "learning_rate": 0.0006,
+ "loss": 3.6791329383850098,
+ "step": 2604
+ },
+ {
+ "epoch": 36.18173875054609,
+ "grad_norm": 0.20932699739933014,
+ "learning_rate": 0.0006,
+ "loss": 3.6496856212615967,
+ "step": 2605
+ },
+ {
+ "epoch": 36.19571865443425,
+ "grad_norm": 0.20941385626792908,
+ "learning_rate": 0.0006,
+ "loss": 3.6445729732513428,
+ "step": 2606
+ },
+ {
+ "epoch": 36.20969855832241,
+ "grad_norm": 0.1987197995185852,
+ "learning_rate": 0.0006,
+ "loss": 3.6481809616088867,
+ "step": 2607
+ },
+ {
+ "epoch": 36.22367846221057,
+ "grad_norm": 0.19054439663887024,
+ "learning_rate": 0.0006,
+ "loss": 3.66894268989563,
+ "step": 2608
+ },
+ {
+ "epoch": 36.237658366098735,
+ "grad_norm": 0.19940806925296783,
+ "learning_rate": 0.0006,
+ "loss": 3.7123427391052246,
+ "step": 2609
+ },
+ {
+ "epoch": 36.25163826998689,
+ "grad_norm": 0.22157685458660126,
+ "learning_rate": 0.0006,
+ "loss": 3.6707541942596436,
+ "step": 2610
+ },
+ {
+ "epoch": 36.265618173875055,
+ "grad_norm": 0.2362316995859146,
+ "learning_rate": 0.0006,
+ "loss": 3.6906795501708984,
+ "step": 2611
+ },
+ {
+ "epoch": 36.27959807776322,
+ "grad_norm": 0.24560341238975525,
+ "learning_rate": 0.0006,
+ "loss": 3.668379783630371,
+ "step": 2612
+ },
+ {
+ "epoch": 36.293577981651374,
+ "grad_norm": 0.22814054787158966,
+ "learning_rate": 0.0006,
+ "loss": 3.665527820587158,
+ "step": 2613
+ },
+ {
+ "epoch": 36.30755788553954,
+ "grad_norm": 0.2156696617603302,
+ "learning_rate": 0.0006,
+ "loss": 3.673835277557373,
+ "step": 2614
+ },
+ {
+ "epoch": 36.3215377894277,
+ "grad_norm": 0.20152772963047028,
+ "learning_rate": 0.0006,
+ "loss": 3.6512670516967773,
+ "step": 2615
+ },
+ {
+ "epoch": 36.33551769331586,
+ "grad_norm": 0.22466860711574554,
+ "learning_rate": 0.0006,
+ "loss": 3.6877706050872803,
+ "step": 2616
+ },
+ {
+ "epoch": 36.34949759720402,
+ "grad_norm": 0.21688112616539001,
+ "learning_rate": 0.0006,
+ "loss": 3.6895859241485596,
+ "step": 2617
+ },
+ {
+ "epoch": 36.36347750109218,
+ "grad_norm": 0.19836577773094177,
+ "learning_rate": 0.0006,
+ "loss": 3.6658992767333984,
+ "step": 2618
+ },
+ {
+ "epoch": 36.37745740498034,
+ "grad_norm": 0.1995069831609726,
+ "learning_rate": 0.0006,
+ "loss": 3.677614450454712,
+ "step": 2619
+ },
+ {
+ "epoch": 36.391437308868504,
+ "grad_norm": 0.21234792470932007,
+ "learning_rate": 0.0006,
+ "loss": 3.6971967220306396,
+ "step": 2620
+ },
+ {
+ "epoch": 36.40541721275666,
+ "grad_norm": 0.20898285508155823,
+ "learning_rate": 0.0006,
+ "loss": 3.6936516761779785,
+ "step": 2621
+ },
+ {
+ "epoch": 36.419397116644824,
+ "grad_norm": 0.2115008533000946,
+ "learning_rate": 0.0006,
+ "loss": 3.6674065589904785,
+ "step": 2622
+ },
+ {
+ "epoch": 36.43337702053299,
+ "grad_norm": 0.2041143774986267,
+ "learning_rate": 0.0006,
+ "loss": 3.6455483436584473,
+ "step": 2623
+ },
+ {
+ "epoch": 36.44735692442114,
+ "grad_norm": 0.1966932713985443,
+ "learning_rate": 0.0006,
+ "loss": 3.6938109397888184,
+ "step": 2624
+ },
+ {
+ "epoch": 36.46133682830931,
+ "grad_norm": 0.20062223076820374,
+ "learning_rate": 0.0006,
+ "loss": 3.6775765419006348,
+ "step": 2625
+ },
+ {
+ "epoch": 36.47531673219746,
+ "grad_norm": 0.20610390603542328,
+ "learning_rate": 0.0006,
+ "loss": 3.6835384368896484,
+ "step": 2626
+ },
+ {
+ "epoch": 36.489296636085626,
+ "grad_norm": 0.20481473207473755,
+ "learning_rate": 0.0006,
+ "loss": 3.6794047355651855,
+ "step": 2627
+ },
+ {
+ "epoch": 36.50327653997379,
+ "grad_norm": 0.18964581191539764,
+ "learning_rate": 0.0006,
+ "loss": 3.7035841941833496,
+ "step": 2628
+ },
+ {
+ "epoch": 36.517256443861946,
+ "grad_norm": 0.2029343545436859,
+ "learning_rate": 0.0006,
+ "loss": 3.6667590141296387,
+ "step": 2629
+ },
+ {
+ "epoch": 36.53123634775011,
+ "grad_norm": 0.23656968772411346,
+ "learning_rate": 0.0006,
+ "loss": 3.6974546909332275,
+ "step": 2630
+ },
+ {
+ "epoch": 36.54521625163827,
+ "grad_norm": 0.23401431739330292,
+ "learning_rate": 0.0006,
+ "loss": 3.668936252593994,
+ "step": 2631
+ },
+ {
+ "epoch": 36.55919615552643,
+ "grad_norm": 0.22258102893829346,
+ "learning_rate": 0.0006,
+ "loss": 3.667977809906006,
+ "step": 2632
+ },
+ {
+ "epoch": 36.57317605941459,
+ "grad_norm": 0.20849554240703583,
+ "learning_rate": 0.0006,
+ "loss": 3.6674845218658447,
+ "step": 2633
+ },
+ {
+ "epoch": 36.58715596330275,
+ "grad_norm": 0.20684309303760529,
+ "learning_rate": 0.0006,
+ "loss": 3.6828644275665283,
+ "step": 2634
+ },
+ {
+ "epoch": 36.60113586719091,
+ "grad_norm": 0.19114233553409576,
+ "learning_rate": 0.0006,
+ "loss": 3.7084832191467285,
+ "step": 2635
+ },
+ {
+ "epoch": 36.615115771079076,
+ "grad_norm": 0.20382429659366608,
+ "learning_rate": 0.0006,
+ "loss": 3.68354868888855,
+ "step": 2636
+ },
+ {
+ "epoch": 36.62909567496723,
+ "grad_norm": 0.22526590526103973,
+ "learning_rate": 0.0006,
+ "loss": 3.684112310409546,
+ "step": 2637
+ },
+ {
+ "epoch": 36.643075578855395,
+ "grad_norm": 0.20735391974449158,
+ "learning_rate": 0.0006,
+ "loss": 3.67702054977417,
+ "step": 2638
+ },
+ {
+ "epoch": 36.65705548274356,
+ "grad_norm": 0.18549653887748718,
+ "learning_rate": 0.0006,
+ "loss": 3.6840810775756836,
+ "step": 2639
+ },
+ {
+ "epoch": 36.671035386631715,
+ "grad_norm": 0.1805262714624405,
+ "learning_rate": 0.0006,
+ "loss": 3.688119411468506,
+ "step": 2640
+ },
+ {
+ "epoch": 36.68501529051988,
+ "grad_norm": 0.17545704543590546,
+ "learning_rate": 0.0006,
+ "loss": 3.6477861404418945,
+ "step": 2641
+ },
+ {
+ "epoch": 36.69899519440804,
+ "grad_norm": 0.1772221326828003,
+ "learning_rate": 0.0006,
+ "loss": 3.6935806274414062,
+ "step": 2642
+ },
+ {
+ "epoch": 36.7129750982962,
+ "grad_norm": 0.18701671063899994,
+ "learning_rate": 0.0006,
+ "loss": 3.6820428371429443,
+ "step": 2643
+ },
+ {
+ "epoch": 36.72695500218436,
+ "grad_norm": 0.2057863473892212,
+ "learning_rate": 0.0006,
+ "loss": 3.669762134552002,
+ "step": 2644
+ },
+ {
+ "epoch": 36.74093490607252,
+ "grad_norm": 0.2565848231315613,
+ "learning_rate": 0.0006,
+ "loss": 3.717599391937256,
+ "step": 2645
+ },
+ {
+ "epoch": 36.75491480996068,
+ "grad_norm": 0.24362123012542725,
+ "learning_rate": 0.0006,
+ "loss": 3.671900987625122,
+ "step": 2646
+ },
+ {
+ "epoch": 36.768894713848844,
+ "grad_norm": 0.19606009125709534,
+ "learning_rate": 0.0006,
+ "loss": 3.6782546043395996,
+ "step": 2647
+ },
+ {
+ "epoch": 36.782874617737,
+ "grad_norm": 0.1948748379945755,
+ "learning_rate": 0.0006,
+ "loss": 3.6823501586914062,
+ "step": 2648
+ },
+ {
+ "epoch": 36.796854521625164,
+ "grad_norm": 0.22289852797985077,
+ "learning_rate": 0.0006,
+ "loss": 3.693469762802124,
+ "step": 2649
+ },
+ {
+ "epoch": 36.81083442551333,
+ "grad_norm": 0.24751701951026917,
+ "learning_rate": 0.0006,
+ "loss": 3.700678825378418,
+ "step": 2650
+ },
+ {
+ "epoch": 36.824814329401484,
+ "grad_norm": 0.28663966059684753,
+ "learning_rate": 0.0006,
+ "loss": 3.6960878372192383,
+ "step": 2651
+ },
+ {
+ "epoch": 36.83879423328965,
+ "grad_norm": 0.3288552165031433,
+ "learning_rate": 0.0006,
+ "loss": 3.7255043983459473,
+ "step": 2652
+ },
+ {
+ "epoch": 36.8527741371778,
+ "grad_norm": 0.3555443286895752,
+ "learning_rate": 0.0006,
+ "loss": 3.725308418273926,
+ "step": 2653
+ },
+ {
+ "epoch": 36.86675404106597,
+ "grad_norm": 0.3204147219657898,
+ "learning_rate": 0.0006,
+ "loss": 3.7137985229492188,
+ "step": 2654
+ },
+ {
+ "epoch": 36.88073394495413,
+ "grad_norm": 0.2944706976413727,
+ "learning_rate": 0.0006,
+ "loss": 3.7032840251922607,
+ "step": 2655
+ },
+ {
+ "epoch": 36.89471384884229,
+ "grad_norm": 0.2845679223537445,
+ "learning_rate": 0.0006,
+ "loss": 3.6840004920959473,
+ "step": 2656
+ },
+ {
+ "epoch": 36.90869375273045,
+ "grad_norm": 0.2815704047679901,
+ "learning_rate": 0.0006,
+ "loss": 3.6958417892456055,
+ "step": 2657
+ },
+ {
+ "epoch": 36.92267365661861,
+ "grad_norm": 0.2733481228351593,
+ "learning_rate": 0.0006,
+ "loss": 3.677690029144287,
+ "step": 2658
+ },
+ {
+ "epoch": 36.93665356050677,
+ "grad_norm": 0.29572054743766785,
+ "learning_rate": 0.0006,
+ "loss": 3.6983718872070312,
+ "step": 2659
+ },
+ {
+ "epoch": 36.95063346439493,
+ "grad_norm": 0.2487923800945282,
+ "learning_rate": 0.0006,
+ "loss": 3.7041163444519043,
+ "step": 2660
+ },
+ {
+ "epoch": 36.964613368283096,
+ "grad_norm": 0.2541966438293457,
+ "learning_rate": 0.0006,
+ "loss": 3.7038979530334473,
+ "step": 2661
+ },
+ {
+ "epoch": 36.97859327217125,
+ "grad_norm": 0.2441335767507553,
+ "learning_rate": 0.0006,
+ "loss": 3.717966079711914,
+ "step": 2662
+ },
+ {
+ "epoch": 36.992573176059416,
+ "grad_norm": 0.2304554283618927,
+ "learning_rate": 0.0006,
+ "loss": 3.671098232269287,
+ "step": 2663
+ },
+ {
+ "epoch": 37.0,
+ "grad_norm": 0.2346591204404831,
+ "learning_rate": 0.0006,
+ "loss": 3.680298089981079,
+ "step": 2664
+ },
+ {
+ "epoch": 37.0,
+ "eval_loss": 3.9944777488708496,
+ "eval_runtime": 43.9862,
+ "eval_samples_per_second": 55.517,
+ "eval_steps_per_second": 3.478,
+ "step": 2664
+ },
+ {
+ "epoch": 37.01397990388816,
+ "grad_norm": 0.22970618307590485,
+ "learning_rate": 0.0006,
+ "loss": 3.6835923194885254,
+ "step": 2665
+ },
+ {
+ "epoch": 37.02795980777632,
+ "grad_norm": 0.25463759899139404,
+ "learning_rate": 0.0006,
+ "loss": 3.658339023590088,
+ "step": 2666
+ },
+ {
+ "epoch": 37.04193971166448,
+ "grad_norm": 0.2520577311515808,
+ "learning_rate": 0.0006,
+ "loss": 3.6275506019592285,
+ "step": 2667
+ },
+ {
+ "epoch": 37.05591961555265,
+ "grad_norm": 0.22698813676834106,
+ "learning_rate": 0.0006,
+ "loss": 3.65043568611145,
+ "step": 2668
+ },
+ {
+ "epoch": 37.0698995194408,
+ "grad_norm": 0.21133972704410553,
+ "learning_rate": 0.0006,
+ "loss": 3.6262078285217285,
+ "step": 2669
+ },
+ {
+ "epoch": 37.083879423328966,
+ "grad_norm": 0.21940460801124573,
+ "learning_rate": 0.0006,
+ "loss": 3.6709489822387695,
+ "step": 2670
+ },
+ {
+ "epoch": 37.09785932721712,
+ "grad_norm": 0.21897517144680023,
+ "learning_rate": 0.0006,
+ "loss": 3.6621508598327637,
+ "step": 2671
+ },
+ {
+ "epoch": 37.111839231105286,
+ "grad_norm": 0.2270219624042511,
+ "learning_rate": 0.0006,
+ "loss": 3.6334924697875977,
+ "step": 2672
+ },
+ {
+ "epoch": 37.12581913499345,
+ "grad_norm": 0.22082042694091797,
+ "learning_rate": 0.0006,
+ "loss": 3.662209987640381,
+ "step": 2673
+ },
+ {
+ "epoch": 37.139799038881605,
+ "grad_norm": 0.19931960105895996,
+ "learning_rate": 0.0006,
+ "loss": 3.6655359268188477,
+ "step": 2674
+ },
+ {
+ "epoch": 37.15377894276977,
+ "grad_norm": 0.21451307833194733,
+ "learning_rate": 0.0006,
+ "loss": 3.656287670135498,
+ "step": 2675
+ },
+ {
+ "epoch": 37.16775884665793,
+ "grad_norm": 0.2131514698266983,
+ "learning_rate": 0.0006,
+ "loss": 3.635054111480713,
+ "step": 2676
+ },
+ {
+ "epoch": 37.18173875054609,
+ "grad_norm": 0.20425808429718018,
+ "learning_rate": 0.0006,
+ "loss": 3.67653226852417,
+ "step": 2677
+ },
+ {
+ "epoch": 37.19571865443425,
+ "grad_norm": 0.19423379004001617,
+ "learning_rate": 0.0006,
+ "loss": 3.6827316284179688,
+ "step": 2678
+ },
+ {
+ "epoch": 37.20969855832241,
+ "grad_norm": 0.1954883486032486,
+ "learning_rate": 0.0006,
+ "loss": 3.658092498779297,
+ "step": 2679
+ },
+ {
+ "epoch": 37.22367846221057,
+ "grad_norm": 0.21153928339481354,
+ "learning_rate": 0.0006,
+ "loss": 3.6675186157226562,
+ "step": 2680
+ },
+ {
+ "epoch": 37.237658366098735,
+ "grad_norm": 0.2032976895570755,
+ "learning_rate": 0.0006,
+ "loss": 3.6725759506225586,
+ "step": 2681
+ },
+ {
+ "epoch": 37.25163826998689,
+ "grad_norm": 0.19839346408843994,
+ "learning_rate": 0.0006,
+ "loss": 3.660851240158081,
+ "step": 2682
+ },
+ {
+ "epoch": 37.265618173875055,
+ "grad_norm": 0.1884699910879135,
+ "learning_rate": 0.0006,
+ "loss": 3.6653623580932617,
+ "step": 2683
+ },
+ {
+ "epoch": 37.27959807776322,
+ "grad_norm": 0.19558705389499664,
+ "learning_rate": 0.0006,
+ "loss": 3.648016929626465,
+ "step": 2684
+ },
+ {
+ "epoch": 37.293577981651374,
+ "grad_norm": 0.19453682005405426,
+ "learning_rate": 0.0006,
+ "loss": 3.6804773807525635,
+ "step": 2685
+ },
+ {
+ "epoch": 37.30755788553954,
+ "grad_norm": 0.1901177167892456,
+ "learning_rate": 0.0006,
+ "loss": 3.6533353328704834,
+ "step": 2686
+ },
+ {
+ "epoch": 37.3215377894277,
+ "grad_norm": 0.19425596296787262,
+ "learning_rate": 0.0006,
+ "loss": 3.665745735168457,
+ "step": 2687
+ },
+ {
+ "epoch": 37.33551769331586,
+ "grad_norm": 0.17583411931991577,
+ "learning_rate": 0.0006,
+ "loss": 3.679112434387207,
+ "step": 2688
+ },
+ {
+ "epoch": 37.34949759720402,
+ "grad_norm": 0.19667863845825195,
+ "learning_rate": 0.0006,
+ "loss": 3.6650352478027344,
+ "step": 2689
+ },
+ {
+ "epoch": 37.36347750109218,
+ "grad_norm": 0.22803270816802979,
+ "learning_rate": 0.0006,
+ "loss": 3.6658573150634766,
+ "step": 2690
+ },
+ {
+ "epoch": 37.37745740498034,
+ "grad_norm": 0.20589298009872437,
+ "learning_rate": 0.0006,
+ "loss": 3.6587300300598145,
+ "step": 2691
+ },
+ {
+ "epoch": 37.391437308868504,
+ "grad_norm": 0.1946951299905777,
+ "learning_rate": 0.0006,
+ "loss": 3.6515092849731445,
+ "step": 2692
+ },
+ {
+ "epoch": 37.40541721275666,
+ "grad_norm": 0.19029614329338074,
+ "learning_rate": 0.0006,
+ "loss": 3.6383113861083984,
+ "step": 2693
+ },
+ {
+ "epoch": 37.419397116644824,
+ "grad_norm": 0.1944548338651657,
+ "learning_rate": 0.0006,
+ "loss": 3.7017135620117188,
+ "step": 2694
+ },
+ {
+ "epoch": 37.43337702053299,
+ "grad_norm": 0.19482386112213135,
+ "learning_rate": 0.0006,
+ "loss": 3.6791775226593018,
+ "step": 2695
+ },
+ {
+ "epoch": 37.44735692442114,
+ "grad_norm": 0.23276680707931519,
+ "learning_rate": 0.0006,
+ "loss": 3.672245979309082,
+ "step": 2696
+ },
+ {
+ "epoch": 37.46133682830931,
+ "grad_norm": 0.22267542779445648,
+ "learning_rate": 0.0006,
+ "loss": 3.683380365371704,
+ "step": 2697
+ },
+ {
+ "epoch": 37.47531673219746,
+ "grad_norm": 0.1942203938961029,
+ "learning_rate": 0.0006,
+ "loss": 3.6760759353637695,
+ "step": 2698
+ },
+ {
+ "epoch": 37.489296636085626,
+ "grad_norm": 0.21212540566921234,
+ "learning_rate": 0.0006,
+ "loss": 3.660719633102417,
+ "step": 2699
+ },
+ {
+ "epoch": 37.50327653997379,
+ "grad_norm": 0.2365427315235138,
+ "learning_rate": 0.0006,
+ "loss": 3.6727194786071777,
+ "step": 2700
+ },
+ {
+ "epoch": 37.517256443861946,
+ "grad_norm": 0.2379675805568695,
+ "learning_rate": 0.0006,
+ "loss": 3.6691598892211914,
+ "step": 2701
+ },
+ {
+ "epoch": 37.53123634775011,
+ "grad_norm": 0.22142401337623596,
+ "learning_rate": 0.0006,
+ "loss": 3.6882128715515137,
+ "step": 2702
+ },
+ {
+ "epoch": 37.54521625163827,
+ "grad_norm": 0.19993607699871063,
+ "learning_rate": 0.0006,
+ "loss": 3.6651787757873535,
+ "step": 2703
+ },
+ {
+ "epoch": 37.55919615552643,
+ "grad_norm": 0.19934895634651184,
+ "learning_rate": 0.0006,
+ "loss": 3.6680638790130615,
+ "step": 2704
+ },
+ {
+ "epoch": 37.57317605941459,
+ "grad_norm": 0.21202369034290314,
+ "learning_rate": 0.0006,
+ "loss": 3.697615623474121,
+ "step": 2705
+ },
+ {
+ "epoch": 37.58715596330275,
+ "grad_norm": 0.1994577795267105,
+ "learning_rate": 0.0006,
+ "loss": 3.688243865966797,
+ "step": 2706
+ },
+ {
+ "epoch": 37.60113586719091,
+ "grad_norm": 0.20365118980407715,
+ "learning_rate": 0.0006,
+ "loss": 3.6615519523620605,
+ "step": 2707
+ },
+ {
+ "epoch": 37.615115771079076,
+ "grad_norm": 0.22466035187244415,
+ "learning_rate": 0.0006,
+ "loss": 3.703111171722412,
+ "step": 2708
+ },
+ {
+ "epoch": 37.62909567496723,
+ "grad_norm": 0.21140407025814056,
+ "learning_rate": 0.0006,
+ "loss": 3.6744728088378906,
+ "step": 2709
+ },
+ {
+ "epoch": 37.643075578855395,
+ "grad_norm": 0.22220195829868317,
+ "learning_rate": 0.0006,
+ "loss": 3.671501874923706,
+ "step": 2710
+ },
+ {
+ "epoch": 37.65705548274356,
+ "grad_norm": 0.23279480636119843,
+ "learning_rate": 0.0006,
+ "loss": 3.6962859630584717,
+ "step": 2711
+ },
+ {
+ "epoch": 37.671035386631715,
+ "grad_norm": 0.23284408450126648,
+ "learning_rate": 0.0006,
+ "loss": 3.670231342315674,
+ "step": 2712
+ },
+ {
+ "epoch": 37.68501529051988,
+ "grad_norm": 0.21935738623142242,
+ "learning_rate": 0.0006,
+ "loss": 3.6908650398254395,
+ "step": 2713
+ },
+ {
+ "epoch": 37.69899519440804,
+ "grad_norm": 0.2072262167930603,
+ "learning_rate": 0.0006,
+ "loss": 3.7204506397247314,
+ "step": 2714
+ },
+ {
+ "epoch": 37.7129750982962,
+ "grad_norm": 0.22547709941864014,
+ "learning_rate": 0.0006,
+ "loss": 3.6740894317626953,
+ "step": 2715
+ },
+ {
+ "epoch": 37.72695500218436,
+ "grad_norm": 0.2460414469242096,
+ "learning_rate": 0.0006,
+ "loss": 3.6938390731811523,
+ "step": 2716
+ },
+ {
+ "epoch": 37.74093490607252,
+ "grad_norm": 0.24756456911563873,
+ "learning_rate": 0.0006,
+ "loss": 3.692173480987549,
+ "step": 2717
+ },
+ {
+ "epoch": 37.75491480996068,
+ "grad_norm": 0.20149244368076324,
+ "learning_rate": 0.0006,
+ "loss": 3.6677675247192383,
+ "step": 2718
+ },
+ {
+ "epoch": 37.768894713848844,
+ "grad_norm": 0.19834814965724945,
+ "learning_rate": 0.0006,
+ "loss": 3.6717336177825928,
+ "step": 2719
+ },
+ {
+ "epoch": 37.782874617737,
+ "grad_norm": 0.22929978370666504,
+ "learning_rate": 0.0006,
+ "loss": 3.6818275451660156,
+ "step": 2720
+ },
+ {
+ "epoch": 37.796854521625164,
+ "grad_norm": 0.23674434423446655,
+ "learning_rate": 0.0006,
+ "loss": 3.689767360687256,
+ "step": 2721
+ },
+ {
+ "epoch": 37.81083442551333,
+ "grad_norm": 0.22798952460289001,
+ "learning_rate": 0.0006,
+ "loss": 3.6928915977478027,
+ "step": 2722
+ },
+ {
+ "epoch": 37.824814329401484,
+ "grad_norm": 0.2270302027463913,
+ "learning_rate": 0.0006,
+ "loss": 3.6884233951568604,
+ "step": 2723
+ },
+ {
+ "epoch": 37.83879423328965,
+ "grad_norm": 0.23563820123672485,
+ "learning_rate": 0.0006,
+ "loss": 3.6962456703186035,
+ "step": 2724
+ },
+ {
+ "epoch": 37.8527741371778,
+ "grad_norm": 0.2240045815706253,
+ "learning_rate": 0.0006,
+ "loss": 3.6985082626342773,
+ "step": 2725
+ },
+ {
+ "epoch": 37.86675404106597,
+ "grad_norm": 0.21541155874729156,
+ "learning_rate": 0.0006,
+ "loss": 3.6960105895996094,
+ "step": 2726
+ },
+ {
+ "epoch": 37.88073394495413,
+ "grad_norm": 0.23257222771644592,
+ "learning_rate": 0.0006,
+ "loss": 3.667404890060425,
+ "step": 2727
+ },
+ {
+ "epoch": 37.89471384884229,
+ "grad_norm": 0.226792573928833,
+ "learning_rate": 0.0006,
+ "loss": 3.6549744606018066,
+ "step": 2728
+ },
+ {
+ "epoch": 37.90869375273045,
+ "grad_norm": 0.18993401527404785,
+ "learning_rate": 0.0006,
+ "loss": 3.6772334575653076,
+ "step": 2729
+ },
+ {
+ "epoch": 37.92267365661861,
+ "grad_norm": 0.20936095714569092,
+ "learning_rate": 0.0006,
+ "loss": 3.671116352081299,
+ "step": 2730
+ },
+ {
+ "epoch": 37.93665356050677,
+ "grad_norm": 0.2203974425792694,
+ "learning_rate": 0.0006,
+ "loss": 3.6549739837646484,
+ "step": 2731
+ },
+ {
+ "epoch": 37.95063346439493,
+ "grad_norm": 0.19504620134830475,
+ "learning_rate": 0.0006,
+ "loss": 3.6755447387695312,
+ "step": 2732
+ },
+ {
+ "epoch": 37.964613368283096,
+ "grad_norm": 0.2025984674692154,
+ "learning_rate": 0.0006,
+ "loss": 3.678955554962158,
+ "step": 2733
+ },
+ {
+ "epoch": 37.97859327217125,
+ "grad_norm": 0.21556107699871063,
+ "learning_rate": 0.0006,
+ "loss": 3.6680502891540527,
+ "step": 2734
+ },
+ {
+ "epoch": 37.992573176059416,
+ "grad_norm": 0.21011291444301605,
+ "learning_rate": 0.0006,
+ "loss": 3.672039031982422,
+ "step": 2735
+ },
+ {
+ "epoch": 38.0,
+ "grad_norm": 0.23710957169532776,
+ "learning_rate": 0.0006,
+ "loss": 3.6326794624328613,
+ "step": 2736
+ },
+ {
+ "epoch": 38.0,
+ "eval_loss": 3.990501880645752,
+ "eval_runtime": 43.8951,
+ "eval_samples_per_second": 55.633,
+ "eval_steps_per_second": 3.486,
+ "step": 2736
+ },
+ {
+ "epoch": 38.01397990388816,
+ "grad_norm": 0.20711326599121094,
+ "learning_rate": 0.0006,
+ "loss": 3.6364657878875732,
+ "step": 2737
+ },
+ {
+ "epoch": 38.02795980777632,
+ "grad_norm": 0.2250880002975464,
+ "learning_rate": 0.0006,
+ "loss": 3.637646436691284,
+ "step": 2738
+ },
+ {
+ "epoch": 38.04193971166448,
+ "grad_norm": 0.2448352724313736,
+ "learning_rate": 0.0006,
+ "loss": 3.63557767868042,
+ "step": 2739
+ },
+ {
+ "epoch": 38.05591961555265,
+ "grad_norm": 0.23031368851661682,
+ "learning_rate": 0.0006,
+ "loss": 3.627117395401001,
+ "step": 2740
+ },
+ {
+ "epoch": 38.0698995194408,
+ "grad_norm": 0.2045450210571289,
+ "learning_rate": 0.0006,
+ "loss": 3.6594958305358887,
+ "step": 2741
+ },
+ {
+ "epoch": 38.083879423328966,
+ "grad_norm": 0.21253496408462524,
+ "learning_rate": 0.0006,
+ "loss": 3.65494441986084,
+ "step": 2742
+ },
+ {
+ "epoch": 38.09785932721712,
+ "grad_norm": 0.20196112990379333,
+ "learning_rate": 0.0006,
+ "loss": 3.645289421081543,
+ "step": 2743
+ },
+ {
+ "epoch": 38.111839231105286,
+ "grad_norm": 0.20258229970932007,
+ "learning_rate": 0.0006,
+ "loss": 3.6698505878448486,
+ "step": 2744
+ },
+ {
+ "epoch": 38.12581913499345,
+ "grad_norm": 0.22182606160640717,
+ "learning_rate": 0.0006,
+ "loss": 3.6427698135375977,
+ "step": 2745
+ },
+ {
+ "epoch": 38.139799038881605,
+ "grad_norm": 0.21281519532203674,
+ "learning_rate": 0.0006,
+ "loss": 3.668337345123291,
+ "step": 2746
+ },
+ {
+ "epoch": 38.15377894276977,
+ "grad_norm": 0.21680216491222382,
+ "learning_rate": 0.0006,
+ "loss": 3.6362109184265137,
+ "step": 2747
+ },
+ {
+ "epoch": 38.16775884665793,
+ "grad_norm": 0.24396903812885284,
+ "learning_rate": 0.0006,
+ "loss": 3.660510540008545,
+ "step": 2748
+ },
+ {
+ "epoch": 38.18173875054609,
+ "grad_norm": 0.2546434700489044,
+ "learning_rate": 0.0006,
+ "loss": 3.6562418937683105,
+ "step": 2749
+ },
+ {
+ "epoch": 38.19571865443425,
+ "grad_norm": 0.22705447673797607,
+ "learning_rate": 0.0006,
+ "loss": 3.6801514625549316,
+ "step": 2750
+ },
+ {
+ "epoch": 38.20969855832241,
+ "grad_norm": 0.21516330540180206,
+ "learning_rate": 0.0006,
+ "loss": 3.6633429527282715,
+ "step": 2751
+ },
+ {
+ "epoch": 38.22367846221057,
+ "grad_norm": 0.20895853638648987,
+ "learning_rate": 0.0006,
+ "loss": 3.619896411895752,
+ "step": 2752
+ },
+ {
+ "epoch": 38.237658366098735,
+ "grad_norm": 0.21183325350284576,
+ "learning_rate": 0.0006,
+ "loss": 3.639491558074951,
+ "step": 2753
+ },
+ {
+ "epoch": 38.25163826998689,
+ "grad_norm": 0.21439522504806519,
+ "learning_rate": 0.0006,
+ "loss": 3.671931028366089,
+ "step": 2754
+ },
+ {
+ "epoch": 38.265618173875055,
+ "grad_norm": 0.2017785906791687,
+ "learning_rate": 0.0006,
+ "loss": 3.639533519744873,
+ "step": 2755
+ },
+ {
+ "epoch": 38.27959807776322,
+ "grad_norm": 0.20015068352222443,
+ "learning_rate": 0.0006,
+ "loss": 3.654262065887451,
+ "step": 2756
+ },
+ {
+ "epoch": 38.293577981651374,
+ "grad_norm": 0.21518948674201965,
+ "learning_rate": 0.0006,
+ "loss": 3.649919033050537,
+ "step": 2757
+ },
+ {
+ "epoch": 38.30755788553954,
+ "grad_norm": 0.21994580328464508,
+ "learning_rate": 0.0006,
+ "loss": 3.6756131649017334,
+ "step": 2758
+ },
+ {
+ "epoch": 38.3215377894277,
+ "grad_norm": 0.2053978443145752,
+ "learning_rate": 0.0006,
+ "loss": 3.651520252227783,
+ "step": 2759
+ },
+ {
+ "epoch": 38.33551769331586,
+ "grad_norm": 0.2066337615251541,
+ "learning_rate": 0.0006,
+ "loss": 3.6404507160186768,
+ "step": 2760
+ },
+ {
+ "epoch": 38.34949759720402,
+ "grad_norm": 0.20898301899433136,
+ "learning_rate": 0.0006,
+ "loss": 3.637200355529785,
+ "step": 2761
+ },
+ {
+ "epoch": 38.36347750109218,
+ "grad_norm": 0.19212259352207184,
+ "learning_rate": 0.0006,
+ "loss": 3.68394136428833,
+ "step": 2762
+ },
+ {
+ "epoch": 38.37745740498034,
+ "grad_norm": 0.2011883556842804,
+ "learning_rate": 0.0006,
+ "loss": 3.6494975090026855,
+ "step": 2763
+ },
+ {
+ "epoch": 38.391437308868504,
+ "grad_norm": 0.23072998225688934,
+ "learning_rate": 0.0006,
+ "loss": 3.6644320487976074,
+ "step": 2764
+ },
+ {
+ "epoch": 38.40541721275666,
+ "grad_norm": 0.2195347547531128,
+ "learning_rate": 0.0006,
+ "loss": 3.6666269302368164,
+ "step": 2765
+ },
+ {
+ "epoch": 38.419397116644824,
+ "grad_norm": 0.19820117950439453,
+ "learning_rate": 0.0006,
+ "loss": 3.690683364868164,
+ "step": 2766
+ },
+ {
+ "epoch": 38.43337702053299,
+ "grad_norm": 0.20381149649620056,
+ "learning_rate": 0.0006,
+ "loss": 3.6647756099700928,
+ "step": 2767
+ },
+ {
+ "epoch": 38.44735692442114,
+ "grad_norm": 0.19477297365665436,
+ "learning_rate": 0.0006,
+ "loss": 3.6419155597686768,
+ "step": 2768
+ },
+ {
+ "epoch": 38.46133682830931,
+ "grad_norm": 0.20118845999240875,
+ "learning_rate": 0.0006,
+ "loss": 3.678511142730713,
+ "step": 2769
+ },
+ {
+ "epoch": 38.47531673219746,
+ "grad_norm": 0.19538167119026184,
+ "learning_rate": 0.0006,
+ "loss": 3.632112503051758,
+ "step": 2770
+ },
+ {
+ "epoch": 38.489296636085626,
+ "grad_norm": 0.18136411905288696,
+ "learning_rate": 0.0006,
+ "loss": 3.6631078720092773,
+ "step": 2771
+ },
+ {
+ "epoch": 38.50327653997379,
+ "grad_norm": 0.1993526667356491,
+ "learning_rate": 0.0006,
+ "loss": 3.6800379753112793,
+ "step": 2772
+ },
+ {
+ "epoch": 38.517256443861946,
+ "grad_norm": 0.21409109234809875,
+ "learning_rate": 0.0006,
+ "loss": 3.6355738639831543,
+ "step": 2773
+ },
+ {
+ "epoch": 38.53123634775011,
+ "grad_norm": 0.20932911336421967,
+ "learning_rate": 0.0006,
+ "loss": 3.6639811992645264,
+ "step": 2774
+ },
+ {
+ "epoch": 38.54521625163827,
+ "grad_norm": 0.22266243398189545,
+ "learning_rate": 0.0006,
+ "loss": 3.6927733421325684,
+ "step": 2775
+ },
+ {
+ "epoch": 38.55919615552643,
+ "grad_norm": 0.22916539013385773,
+ "learning_rate": 0.0006,
+ "loss": 3.6381587982177734,
+ "step": 2776
+ },
+ {
+ "epoch": 38.57317605941459,
+ "grad_norm": 0.21507245302200317,
+ "learning_rate": 0.0006,
+ "loss": 3.6724753379821777,
+ "step": 2777
+ },
+ {
+ "epoch": 38.58715596330275,
+ "grad_norm": 0.21132487058639526,
+ "learning_rate": 0.0006,
+ "loss": 3.68450927734375,
+ "step": 2778
+ },
+ {
+ "epoch": 38.60113586719091,
+ "grad_norm": 0.2323923259973526,
+ "learning_rate": 0.0006,
+ "loss": 3.6917476654052734,
+ "step": 2779
+ },
+ {
+ "epoch": 38.615115771079076,
+ "grad_norm": 0.2862907648086548,
+ "learning_rate": 0.0006,
+ "loss": 3.6832518577575684,
+ "step": 2780
+ },
+ {
+ "epoch": 38.62909567496723,
+ "grad_norm": 0.28132742643356323,
+ "learning_rate": 0.0006,
+ "loss": 3.6619668006896973,
+ "step": 2781
+ },
+ {
+ "epoch": 38.643075578855395,
+ "grad_norm": 0.24933350086212158,
+ "learning_rate": 0.0006,
+ "loss": 3.6342711448669434,
+ "step": 2782
+ },
+ {
+ "epoch": 38.65705548274356,
+ "grad_norm": 0.23482646048069,
+ "learning_rate": 0.0006,
+ "loss": 3.667548656463623,
+ "step": 2783
+ },
+ {
+ "epoch": 38.671035386631715,
+ "grad_norm": 0.2529793083667755,
+ "learning_rate": 0.0006,
+ "loss": 3.6613709926605225,
+ "step": 2784
+ },
+ {
+ "epoch": 38.68501529051988,
+ "grad_norm": 0.2306097447872162,
+ "learning_rate": 0.0006,
+ "loss": 3.653153419494629,
+ "step": 2785
+ },
+ {
+ "epoch": 38.69899519440804,
+ "grad_norm": 0.21787869930267334,
+ "learning_rate": 0.0006,
+ "loss": 3.6991848945617676,
+ "step": 2786
+ },
+ {
+ "epoch": 38.7129750982962,
+ "grad_norm": 0.24818190932273865,
+ "learning_rate": 0.0006,
+ "loss": 3.664022445678711,
+ "step": 2787
+ },
+ {
+ "epoch": 38.72695500218436,
+ "grad_norm": 0.23205995559692383,
+ "learning_rate": 0.0006,
+ "loss": 3.656064987182617,
+ "step": 2788
+ },
+ {
+ "epoch": 38.74093490607252,
+ "grad_norm": 0.2268102467060089,
+ "learning_rate": 0.0006,
+ "loss": 3.678421974182129,
+ "step": 2789
+ },
+ {
+ "epoch": 38.75491480996068,
+ "grad_norm": 0.22549907863140106,
+ "learning_rate": 0.0006,
+ "loss": 3.6483302116394043,
+ "step": 2790
+ },
+ {
+ "epoch": 38.768894713848844,
+ "grad_norm": 0.2293119877576828,
+ "learning_rate": 0.0006,
+ "loss": 3.646825075149536,
+ "step": 2791
+ },
+ {
+ "epoch": 38.782874617737,
+ "grad_norm": 0.21879418194293976,
+ "learning_rate": 0.0006,
+ "loss": 3.682124614715576,
+ "step": 2792
+ },
+ {
+ "epoch": 38.796854521625164,
+ "grad_norm": 0.22012849152088165,
+ "learning_rate": 0.0006,
+ "loss": 3.6590089797973633,
+ "step": 2793
+ },
+ {
+ "epoch": 38.81083442551333,
+ "grad_norm": 0.2449142336845398,
+ "learning_rate": 0.0006,
+ "loss": 3.7053747177124023,
+ "step": 2794
+ },
+ {
+ "epoch": 38.824814329401484,
+ "grad_norm": 0.2677161395549774,
+ "learning_rate": 0.0006,
+ "loss": 3.666144371032715,
+ "step": 2795
+ },
+ {
+ "epoch": 38.83879423328965,
+ "grad_norm": 0.2654981315135956,
+ "learning_rate": 0.0006,
+ "loss": 3.637512683868408,
+ "step": 2796
+ },
+ {
+ "epoch": 38.8527741371778,
+ "grad_norm": 0.23169654607772827,
+ "learning_rate": 0.0006,
+ "loss": 3.6885948181152344,
+ "step": 2797
+ },
+ {
+ "epoch": 38.86675404106597,
+ "grad_norm": 0.22195108234882355,
+ "learning_rate": 0.0006,
+ "loss": 3.6597604751586914,
+ "step": 2798
+ },
+ {
+ "epoch": 38.88073394495413,
+ "grad_norm": 0.23703525960445404,
+ "learning_rate": 0.0006,
+ "loss": 3.6808712482452393,
+ "step": 2799
+ },
+ {
+ "epoch": 38.89471384884229,
+ "grad_norm": 0.24711088836193085,
+ "learning_rate": 0.0006,
+ "loss": 3.733792781829834,
+ "step": 2800
+ },
+ {
+ "epoch": 38.90869375273045,
+ "grad_norm": 0.216362863779068,
+ "learning_rate": 0.0006,
+ "loss": 3.670599937438965,
+ "step": 2801
+ },
+ {
+ "epoch": 38.92267365661861,
+ "grad_norm": 0.19483810663223267,
+ "learning_rate": 0.0006,
+ "loss": 3.6965198516845703,
+ "step": 2802
+ },
+ {
+ "epoch": 38.93665356050677,
+ "grad_norm": 0.1941208392381668,
+ "learning_rate": 0.0006,
+ "loss": 3.678022861480713,
+ "step": 2803
+ },
+ {
+ "epoch": 38.95063346439493,
+ "grad_norm": 0.1919465959072113,
+ "learning_rate": 0.0006,
+ "loss": 3.6763226985931396,
+ "step": 2804
+ },
+ {
+ "epoch": 38.964613368283096,
+ "grad_norm": 0.2003280073404312,
+ "learning_rate": 0.0006,
+ "loss": 3.670313835144043,
+ "step": 2805
+ },
+ {
+ "epoch": 38.97859327217125,
+ "grad_norm": 0.198478564620018,
+ "learning_rate": 0.0006,
+ "loss": 3.675569772720337,
+ "step": 2806
+ },
+ {
+ "epoch": 38.992573176059416,
+ "grad_norm": 0.23692303895950317,
+ "learning_rate": 0.0006,
+ "loss": 3.696561336517334,
+ "step": 2807
+ },
+ {
+ "epoch": 39.0,
+ "grad_norm": 0.3208145797252655,
+ "learning_rate": 0.0006,
+ "loss": 3.6791436672210693,
+ "step": 2808
+ },
+ {
+ "epoch": 39.0,
+ "eval_loss": 4.0079450607299805,
+ "eval_runtime": 43.8573,
+ "eval_samples_per_second": 55.681,
+ "eval_steps_per_second": 3.489,
+ "step": 2808
+ },
+ {
+ "epoch": 39.01397990388816,
+ "grad_norm": 0.28338733315467834,
+ "learning_rate": 0.0006,
+ "loss": 3.6277060508728027,
+ "step": 2809
+ },
+ {
+ "epoch": 39.02795980777632,
+ "grad_norm": 0.22057899832725525,
+ "learning_rate": 0.0006,
+ "loss": 3.6132822036743164,
+ "step": 2810
+ },
+ {
+ "epoch": 39.04193971166448,
+ "grad_norm": 0.20630282163619995,
+ "learning_rate": 0.0006,
+ "loss": 3.6143927574157715,
+ "step": 2811
+ },
+ {
+ "epoch": 39.05591961555265,
+ "grad_norm": 0.2178523689508438,
+ "learning_rate": 0.0006,
+ "loss": 3.6304664611816406,
+ "step": 2812
+ },
+ {
+ "epoch": 39.0698995194408,
+ "grad_norm": 0.19613824784755707,
+ "learning_rate": 0.0006,
+ "loss": 3.6137919425964355,
+ "step": 2813
+ },
+ {
+ "epoch": 39.083879423328966,
+ "grad_norm": 0.2047276794910431,
+ "learning_rate": 0.0006,
+ "loss": 3.6854846477508545,
+ "step": 2814
+ },
+ {
+ "epoch": 39.09785932721712,
+ "grad_norm": 0.20082715153694153,
+ "learning_rate": 0.0006,
+ "loss": 3.632091522216797,
+ "step": 2815
+ },
+ {
+ "epoch": 39.111839231105286,
+ "grad_norm": 0.21746563911437988,
+ "learning_rate": 0.0006,
+ "loss": 3.640477180480957,
+ "step": 2816
+ },
+ {
+ "epoch": 39.12581913499345,
+ "grad_norm": 0.2128882110118866,
+ "learning_rate": 0.0006,
+ "loss": 3.643984317779541,
+ "step": 2817
+ },
+ {
+ "epoch": 39.139799038881605,
+ "grad_norm": 0.2110479772090912,
+ "learning_rate": 0.0006,
+ "loss": 3.6328823566436768,
+ "step": 2818
+ },
+ {
+ "epoch": 39.15377894276977,
+ "grad_norm": 0.22304436564445496,
+ "learning_rate": 0.0006,
+ "loss": 3.6669845581054688,
+ "step": 2819
+ },
+ {
+ "epoch": 39.16775884665793,
+ "grad_norm": 0.22310666739940643,
+ "learning_rate": 0.0006,
+ "loss": 3.609743595123291,
+ "step": 2820
+ },
+ {
+ "epoch": 39.18173875054609,
+ "grad_norm": 0.21002045273780823,
+ "learning_rate": 0.0006,
+ "loss": 3.601900815963745,
+ "step": 2821
+ },
+ {
+ "epoch": 39.19571865443425,
+ "grad_norm": 0.20531952381134033,
+ "learning_rate": 0.0006,
+ "loss": 3.6405060291290283,
+ "step": 2822
+ },
+ {
+ "epoch": 39.20969855832241,
+ "grad_norm": 0.20646385848522186,
+ "learning_rate": 0.0006,
+ "loss": 3.669617176055908,
+ "step": 2823
+ },
+ {
+ "epoch": 39.22367846221057,
+ "grad_norm": 0.2553980350494385,
+ "learning_rate": 0.0006,
+ "loss": 3.642709255218506,
+ "step": 2824
+ },
+ {
+ "epoch": 39.237658366098735,
+ "grad_norm": 0.2753220498561859,
+ "learning_rate": 0.0006,
+ "loss": 3.668405055999756,
+ "step": 2825
+ },
+ {
+ "epoch": 39.25163826998689,
+ "grad_norm": 0.2425055354833603,
+ "learning_rate": 0.0006,
+ "loss": 3.659559726715088,
+ "step": 2826
+ },
+ {
+ "epoch": 39.265618173875055,
+ "grad_norm": 0.2199426293373108,
+ "learning_rate": 0.0006,
+ "loss": 3.6466197967529297,
+ "step": 2827
+ },
+ {
+ "epoch": 39.27959807776322,
+ "grad_norm": 0.221355602145195,
+ "learning_rate": 0.0006,
+ "loss": 3.639418125152588,
+ "step": 2828
+ },
+ {
+ "epoch": 39.293577981651374,
+ "grad_norm": 0.20777100324630737,
+ "learning_rate": 0.0006,
+ "loss": 3.68102765083313,
+ "step": 2829
+ },
+ {
+ "epoch": 39.30755788553954,
+ "grad_norm": 0.20557557046413422,
+ "learning_rate": 0.0006,
+ "loss": 3.663064956665039,
+ "step": 2830
+ },
+ {
+ "epoch": 39.3215377894277,
+ "grad_norm": 0.2385585904121399,
+ "learning_rate": 0.0006,
+ "loss": 3.6598849296569824,
+ "step": 2831
+ },
+ {
+ "epoch": 39.33551769331586,
+ "grad_norm": 0.25222650170326233,
+ "learning_rate": 0.0006,
+ "loss": 3.635199546813965,
+ "step": 2832
+ },
+ {
+ "epoch": 39.34949759720402,
+ "grad_norm": 0.22894687950611115,
+ "learning_rate": 0.0006,
+ "loss": 3.6100258827209473,
+ "step": 2833
+ },
+ {
+ "epoch": 39.36347750109218,
+ "grad_norm": 0.22945865988731384,
+ "learning_rate": 0.0006,
+ "loss": 3.63069748878479,
+ "step": 2834
+ },
+ {
+ "epoch": 39.37745740498034,
+ "grad_norm": 0.2466309368610382,
+ "learning_rate": 0.0006,
+ "loss": 3.6615123748779297,
+ "step": 2835
+ },
+ {
+ "epoch": 39.391437308868504,
+ "grad_norm": 0.23845571279525757,
+ "learning_rate": 0.0006,
+ "loss": 3.655045509338379,
+ "step": 2836
+ },
+ {
+ "epoch": 39.40541721275666,
+ "grad_norm": 0.20273560285568237,
+ "learning_rate": 0.0006,
+ "loss": 3.6497647762298584,
+ "step": 2837
+ },
+ {
+ "epoch": 39.419397116644824,
+ "grad_norm": 0.19820313155651093,
+ "learning_rate": 0.0006,
+ "loss": 3.6728386878967285,
+ "step": 2838
+ },
+ {
+ "epoch": 39.43337702053299,
+ "grad_norm": 0.21581435203552246,
+ "learning_rate": 0.0006,
+ "loss": 3.660247325897217,
+ "step": 2839
+ },
+ {
+ "epoch": 39.44735692442114,
+ "grad_norm": 0.20559731125831604,
+ "learning_rate": 0.0006,
+ "loss": 3.6244559288024902,
+ "step": 2840
+ },
+ {
+ "epoch": 39.46133682830931,
+ "grad_norm": 0.22041910886764526,
+ "learning_rate": 0.0006,
+ "loss": 3.6577587127685547,
+ "step": 2841
+ },
+ {
+ "epoch": 39.47531673219746,
+ "grad_norm": 0.1966651976108551,
+ "learning_rate": 0.0006,
+ "loss": 3.673975944519043,
+ "step": 2842
+ },
+ {
+ "epoch": 39.489296636085626,
+ "grad_norm": 0.19127163290977478,
+ "learning_rate": 0.0006,
+ "loss": 3.7022414207458496,
+ "step": 2843
+ },
+ {
+ "epoch": 39.50327653997379,
+ "grad_norm": 0.20260316133499146,
+ "learning_rate": 0.0006,
+ "loss": 3.6155128479003906,
+ "step": 2844
+ },
+ {
+ "epoch": 39.517256443861946,
+ "grad_norm": 0.2302546352148056,
+ "learning_rate": 0.0006,
+ "loss": 3.670212984085083,
+ "step": 2845
+ },
+ {
+ "epoch": 39.53123634775011,
+ "grad_norm": 0.2512998878955841,
+ "learning_rate": 0.0006,
+ "loss": 3.6257572174072266,
+ "step": 2846
+ },
+ {
+ "epoch": 39.54521625163827,
+ "grad_norm": 0.24780063331127167,
+ "learning_rate": 0.0006,
+ "loss": 3.6458964347839355,
+ "step": 2847
+ },
+ {
+ "epoch": 39.55919615552643,
+ "grad_norm": 0.21305061876773834,
+ "learning_rate": 0.0006,
+ "loss": 3.666834831237793,
+ "step": 2848
+ },
+ {
+ "epoch": 39.57317605941459,
+ "grad_norm": 0.20699542760849,
+ "learning_rate": 0.0006,
+ "loss": 3.660571813583374,
+ "step": 2849
+ },
+ {
+ "epoch": 39.58715596330275,
+ "grad_norm": 0.20799173414707184,
+ "learning_rate": 0.0006,
+ "loss": 3.649744987487793,
+ "step": 2850
+ },
+ {
+ "epoch": 39.60113586719091,
+ "grad_norm": 0.20118695497512817,
+ "learning_rate": 0.0006,
+ "loss": 3.663865089416504,
+ "step": 2851
+ },
+ {
+ "epoch": 39.615115771079076,
+ "grad_norm": 0.2019277960062027,
+ "learning_rate": 0.0006,
+ "loss": 3.6600584983825684,
+ "step": 2852
+ },
+ {
+ "epoch": 39.62909567496723,
+ "grad_norm": 0.2093067765235901,
+ "learning_rate": 0.0006,
+ "loss": 3.6926870346069336,
+ "step": 2853
+ },
+ {
+ "epoch": 39.643075578855395,
+ "grad_norm": 0.2280927449464798,
+ "learning_rate": 0.0006,
+ "loss": 3.677157402038574,
+ "step": 2854
+ },
+ {
+ "epoch": 39.65705548274356,
+ "grad_norm": 0.219201922416687,
+ "learning_rate": 0.0006,
+ "loss": 3.6763858795166016,
+ "step": 2855
+ },
+ {
+ "epoch": 39.671035386631715,
+ "grad_norm": 0.2132134735584259,
+ "learning_rate": 0.0006,
+ "loss": 3.6853187084198,
+ "step": 2856
+ },
+ {
+ "epoch": 39.68501529051988,
+ "grad_norm": 0.1979551613330841,
+ "learning_rate": 0.0006,
+ "loss": 3.633850574493408,
+ "step": 2857
+ },
+ {
+ "epoch": 39.69899519440804,
+ "grad_norm": 0.2181098908185959,
+ "learning_rate": 0.0006,
+ "loss": 3.671356201171875,
+ "step": 2858
+ },
+ {
+ "epoch": 39.7129750982962,
+ "grad_norm": 0.21820145845413208,
+ "learning_rate": 0.0006,
+ "loss": 3.640101432800293,
+ "step": 2859
+ },
+ {
+ "epoch": 39.72695500218436,
+ "grad_norm": 0.22734931111335754,
+ "learning_rate": 0.0006,
+ "loss": 3.6326088905334473,
+ "step": 2860
+ },
+ {
+ "epoch": 39.74093490607252,
+ "grad_norm": 0.2407236248254776,
+ "learning_rate": 0.0006,
+ "loss": 3.665416955947876,
+ "step": 2861
+ },
+ {
+ "epoch": 39.75491480996068,
+ "grad_norm": 0.2507246434688568,
+ "learning_rate": 0.0006,
+ "loss": 3.6996266841888428,
+ "step": 2862
+ },
+ {
+ "epoch": 39.768894713848844,
+ "grad_norm": 0.2273668497800827,
+ "learning_rate": 0.0006,
+ "loss": 3.6786417961120605,
+ "step": 2863
+ },
+ {
+ "epoch": 39.782874617737,
+ "grad_norm": 0.20584821701049805,
+ "learning_rate": 0.0006,
+ "loss": 3.6539974212646484,
+ "step": 2864
+ },
+ {
+ "epoch": 39.796854521625164,
+ "grad_norm": 0.2327643632888794,
+ "learning_rate": 0.0006,
+ "loss": 3.681267738342285,
+ "step": 2865
+ },
+ {
+ "epoch": 39.81083442551333,
+ "grad_norm": 0.24243171513080597,
+ "learning_rate": 0.0006,
+ "loss": 3.6814589500427246,
+ "step": 2866
+ },
+ {
+ "epoch": 39.824814329401484,
+ "grad_norm": 0.21462969481945038,
+ "learning_rate": 0.0006,
+ "loss": 3.681321620941162,
+ "step": 2867
+ },
+ {
+ "epoch": 39.83879423328965,
+ "grad_norm": 0.20973211526870728,
+ "learning_rate": 0.0006,
+ "loss": 3.636986017227173,
+ "step": 2868
+ },
+ {
+ "epoch": 39.8527741371778,
+ "grad_norm": 0.20357508957386017,
+ "learning_rate": 0.0006,
+ "loss": 3.6664552688598633,
+ "step": 2869
+ },
+ {
+ "epoch": 39.86675404106597,
+ "grad_norm": 0.20389088988304138,
+ "learning_rate": 0.0006,
+ "loss": 3.6685709953308105,
+ "step": 2870
+ },
+ {
+ "epoch": 39.88073394495413,
+ "grad_norm": 0.21024158596992493,
+ "learning_rate": 0.0006,
+ "loss": 3.650658130645752,
+ "step": 2871
+ },
+ {
+ "epoch": 39.89471384884229,
+ "grad_norm": 0.19477778673171997,
+ "learning_rate": 0.0006,
+ "loss": 3.664834976196289,
+ "step": 2872
+ },
+ {
+ "epoch": 39.90869375273045,
+ "grad_norm": 0.22345365583896637,
+ "learning_rate": 0.0006,
+ "loss": 3.6652634143829346,
+ "step": 2873
+ },
+ {
+ "epoch": 39.92267365661861,
+ "grad_norm": 0.206041157245636,
+ "learning_rate": 0.0006,
+ "loss": 3.6649513244628906,
+ "step": 2874
+ },
+ {
+ "epoch": 39.93665356050677,
+ "grad_norm": 0.18524570763111115,
+ "learning_rate": 0.0006,
+ "loss": 3.665579080581665,
+ "step": 2875
+ },
+ {
+ "epoch": 39.95063346439493,
+ "grad_norm": 0.17730890214443207,
+ "learning_rate": 0.0006,
+ "loss": 3.6372880935668945,
+ "step": 2876
+ },
+ {
+ "epoch": 39.964613368283096,
+ "grad_norm": 0.213678777217865,
+ "learning_rate": 0.0006,
+ "loss": 3.681305408477783,
+ "step": 2877
+ },
+ {
+ "epoch": 39.97859327217125,
+ "grad_norm": 0.2595686614513397,
+ "learning_rate": 0.0006,
+ "loss": 3.6660351753234863,
+ "step": 2878
+ },
+ {
+ "epoch": 39.992573176059416,
+ "grad_norm": 0.22678600251674652,
+ "learning_rate": 0.0006,
+ "loss": 3.681619644165039,
+ "step": 2879
+ },
+ {
+ "epoch": 40.0,
+ "grad_norm": 0.2294030636548996,
+ "learning_rate": 0.0006,
+ "loss": 3.654366970062256,
+ "step": 2880
+ },
+ {
+ "epoch": 40.0,
+ "eval_loss": 3.9810431003570557,
+ "eval_runtime": 43.832,
+ "eval_samples_per_second": 55.713,
+ "eval_steps_per_second": 3.491,
+ "step": 2880
+ },
+ {
+ "epoch": 40.01397990388816,
+ "grad_norm": 0.220590278506279,
+ "learning_rate": 0.0006,
+ "loss": 3.6346259117126465,
+ "step": 2881
+ },
+ {
+ "epoch": 40.02795980777632,
+ "grad_norm": 0.2568257749080658,
+ "learning_rate": 0.0006,
+ "loss": 3.64436674118042,
+ "step": 2882
+ },
+ {
+ "epoch": 40.04193971166448,
+ "grad_norm": 0.2869258224964142,
+ "learning_rate": 0.0006,
+ "loss": 3.613316059112549,
+ "step": 2883
+ },
+ {
+ "epoch": 40.05591961555265,
+ "grad_norm": 0.3005172908306122,
+ "learning_rate": 0.0006,
+ "loss": 3.607339859008789,
+ "step": 2884
+ },
+ {
+ "epoch": 40.0698995194408,
+ "grad_norm": 0.28642305731773376,
+ "learning_rate": 0.0006,
+ "loss": 3.65151047706604,
+ "step": 2885
+ },
+ {
+ "epoch": 40.083879423328966,
+ "grad_norm": 0.24176034331321716,
+ "learning_rate": 0.0006,
+ "loss": 3.633742332458496,
+ "step": 2886
+ },
+ {
+ "epoch": 40.09785932721712,
+ "grad_norm": 0.2139386385679245,
+ "learning_rate": 0.0006,
+ "loss": 3.614245653152466,
+ "step": 2887
+ },
+ {
+ "epoch": 40.111839231105286,
+ "grad_norm": 0.28025752305984497,
+ "learning_rate": 0.0006,
+ "loss": 3.6415746212005615,
+ "step": 2888
+ },
+ {
+ "epoch": 40.12581913499345,
+ "grad_norm": 0.28534311056137085,
+ "learning_rate": 0.0006,
+ "loss": 3.6302027702331543,
+ "step": 2889
+ },
+ {
+ "epoch": 40.139799038881605,
+ "grad_norm": 0.26842808723449707,
+ "learning_rate": 0.0006,
+ "loss": 3.657480239868164,
+ "step": 2890
+ },
+ {
+ "epoch": 40.15377894276977,
+ "grad_norm": 0.25235965847969055,
+ "learning_rate": 0.0006,
+ "loss": 3.6843931674957275,
+ "step": 2891
+ },
+ {
+ "epoch": 40.16775884665793,
+ "grad_norm": 0.22192128002643585,
+ "learning_rate": 0.0006,
+ "loss": 3.6374592781066895,
+ "step": 2892
+ },
+ {
+ "epoch": 40.18173875054609,
+ "grad_norm": 0.21524523198604584,
+ "learning_rate": 0.0006,
+ "loss": 3.6052589416503906,
+ "step": 2893
+ },
+ {
+ "epoch": 40.19571865443425,
+ "grad_norm": 0.21011514961719513,
+ "learning_rate": 0.0006,
+ "loss": 3.62197208404541,
+ "step": 2894
+ },
+ {
+ "epoch": 40.20969855832241,
+ "grad_norm": 0.23187001049518585,
+ "learning_rate": 0.0006,
+ "loss": 3.6505377292633057,
+ "step": 2895
+ },
+ {
+ "epoch": 40.22367846221057,
+ "grad_norm": 0.21962887048721313,
+ "learning_rate": 0.0006,
+ "loss": 3.594991683959961,
+ "step": 2896
+ },
+ {
+ "epoch": 40.237658366098735,
+ "grad_norm": 0.23299361765384674,
+ "learning_rate": 0.0006,
+ "loss": 3.6370339393615723,
+ "step": 2897
+ },
+ {
+ "epoch": 40.25163826998689,
+ "grad_norm": 0.22504881024360657,
+ "learning_rate": 0.0006,
+ "loss": 3.6173815727233887,
+ "step": 2898
+ },
+ {
+ "epoch": 40.265618173875055,
+ "grad_norm": 0.21678344905376434,
+ "learning_rate": 0.0006,
+ "loss": 3.6231422424316406,
+ "step": 2899
+ },
+ {
+ "epoch": 40.27959807776322,
+ "grad_norm": 0.2184615284204483,
+ "learning_rate": 0.0006,
+ "loss": 3.6552987098693848,
+ "step": 2900
+ },
+ {
+ "epoch": 40.293577981651374,
+ "grad_norm": 0.2145485281944275,
+ "learning_rate": 0.0006,
+ "loss": 3.628025531768799,
+ "step": 2901
+ },
+ {
+ "epoch": 40.30755788553954,
+ "grad_norm": 0.21119336783885956,
+ "learning_rate": 0.0006,
+ "loss": 3.6511590480804443,
+ "step": 2902
+ },
+ {
+ "epoch": 40.3215377894277,
+ "grad_norm": 0.2158869504928589,
+ "learning_rate": 0.0006,
+ "loss": 3.6302051544189453,
+ "step": 2903
+ },
+ {
+ "epoch": 40.33551769331586,
+ "grad_norm": 0.22736455500125885,
+ "learning_rate": 0.0006,
+ "loss": 3.6678733825683594,
+ "step": 2904
+ },
+ {
+ "epoch": 40.34949759720402,
+ "grad_norm": 0.22723783552646637,
+ "learning_rate": 0.0006,
+ "loss": 3.632068634033203,
+ "step": 2905
+ },
+ {
+ "epoch": 40.36347750109218,
+ "grad_norm": 0.20606189966201782,
+ "learning_rate": 0.0006,
+ "loss": 3.6534624099731445,
+ "step": 2906
+ },
+ {
+ "epoch": 40.37745740498034,
+ "grad_norm": 0.21033786237239838,
+ "learning_rate": 0.0006,
+ "loss": 3.6194064617156982,
+ "step": 2907
+ },
+ {
+ "epoch": 40.391437308868504,
+ "grad_norm": 0.2175762951374054,
+ "learning_rate": 0.0006,
+ "loss": 3.637385368347168,
+ "step": 2908
+ },
+ {
+ "epoch": 40.40541721275666,
+ "grad_norm": 0.21063381433486938,
+ "learning_rate": 0.0006,
+ "loss": 3.656857967376709,
+ "step": 2909
+ },
+ {
+ "epoch": 40.419397116644824,
+ "grad_norm": 0.19982226192951202,
+ "learning_rate": 0.0006,
+ "loss": 3.655738353729248,
+ "step": 2910
+ },
+ {
+ "epoch": 40.43337702053299,
+ "grad_norm": 0.20608870685100555,
+ "learning_rate": 0.0006,
+ "loss": 3.6521377563476562,
+ "step": 2911
+ },
+ {
+ "epoch": 40.44735692442114,
+ "grad_norm": 0.19817334413528442,
+ "learning_rate": 0.0006,
+ "loss": 3.61527681350708,
+ "step": 2912
+ },
+ {
+ "epoch": 40.46133682830931,
+ "grad_norm": 0.20407769083976746,
+ "learning_rate": 0.0006,
+ "loss": 3.6668765544891357,
+ "step": 2913
+ },
+ {
+ "epoch": 40.47531673219746,
+ "grad_norm": 0.19874799251556396,
+ "learning_rate": 0.0006,
+ "loss": 3.6748533248901367,
+ "step": 2914
+ },
+ {
+ "epoch": 40.489296636085626,
+ "grad_norm": 0.1979510486125946,
+ "learning_rate": 0.0006,
+ "loss": 3.6141977310180664,
+ "step": 2915
+ },
+ {
+ "epoch": 40.50327653997379,
+ "grad_norm": 0.19811518490314484,
+ "learning_rate": 0.0006,
+ "loss": 3.6391215324401855,
+ "step": 2916
+ },
+ {
+ "epoch": 40.517256443861946,
+ "grad_norm": 0.20208898186683655,
+ "learning_rate": 0.0006,
+ "loss": 3.664179801940918,
+ "step": 2917
+ },
+ {
+ "epoch": 40.53123634775011,
+ "grad_norm": 0.22063760459423065,
+ "learning_rate": 0.0006,
+ "loss": 3.645388126373291,
+ "step": 2918
+ },
+ {
+ "epoch": 40.54521625163827,
+ "grad_norm": 0.23420891165733337,
+ "learning_rate": 0.0006,
+ "loss": 3.6424708366394043,
+ "step": 2919
+ },
+ {
+ "epoch": 40.55919615552643,
+ "grad_norm": 0.2263612151145935,
+ "learning_rate": 0.0006,
+ "loss": 3.6649224758148193,
+ "step": 2920
+ },
+ {
+ "epoch": 40.57317605941459,
+ "grad_norm": 0.22745433449745178,
+ "learning_rate": 0.0006,
+ "loss": 3.631586790084839,
+ "step": 2921
+ },
+ {
+ "epoch": 40.58715596330275,
+ "grad_norm": 0.22413238883018494,
+ "learning_rate": 0.0006,
+ "loss": 3.6666674613952637,
+ "step": 2922
+ },
+ {
+ "epoch": 40.60113586719091,
+ "grad_norm": 0.2178265005350113,
+ "learning_rate": 0.0006,
+ "loss": 3.6002111434936523,
+ "step": 2923
+ },
+ {
+ "epoch": 40.615115771079076,
+ "grad_norm": 0.21822521090507507,
+ "learning_rate": 0.0006,
+ "loss": 3.6538329124450684,
+ "step": 2924
+ },
+ {
+ "epoch": 40.62909567496723,
+ "grad_norm": 0.21728558838367462,
+ "learning_rate": 0.0006,
+ "loss": 3.651254653930664,
+ "step": 2925
+ },
+ {
+ "epoch": 40.643075578855395,
+ "grad_norm": 0.22377707064151764,
+ "learning_rate": 0.0006,
+ "loss": 3.6505789756774902,
+ "step": 2926
+ },
+ {
+ "epoch": 40.65705548274356,
+ "grad_norm": 0.2035706788301468,
+ "learning_rate": 0.0006,
+ "loss": 3.6471967697143555,
+ "step": 2927
+ },
+ {
+ "epoch": 40.671035386631715,
+ "grad_norm": 0.2011154741048813,
+ "learning_rate": 0.0006,
+ "loss": 3.6582741737365723,
+ "step": 2928
+ },
+ {
+ "epoch": 40.68501529051988,
+ "grad_norm": 0.23812712728977203,
+ "learning_rate": 0.0006,
+ "loss": 3.6388421058654785,
+ "step": 2929
+ },
+ {
+ "epoch": 40.69899519440804,
+ "grad_norm": 0.2117796689271927,
+ "learning_rate": 0.0006,
+ "loss": 3.688337802886963,
+ "step": 2930
+ },
+ {
+ "epoch": 40.7129750982962,
+ "grad_norm": 0.18440942466259003,
+ "learning_rate": 0.0006,
+ "loss": 3.6409997940063477,
+ "step": 2931
+ },
+ {
+ "epoch": 40.72695500218436,
+ "grad_norm": 0.19005917012691498,
+ "learning_rate": 0.0006,
+ "loss": 3.6760218143463135,
+ "step": 2932
+ },
+ {
+ "epoch": 40.74093490607252,
+ "grad_norm": 0.19982726871967316,
+ "learning_rate": 0.0006,
+ "loss": 3.6375021934509277,
+ "step": 2933
+ },
+ {
+ "epoch": 40.75491480996068,
+ "grad_norm": 0.19240257143974304,
+ "learning_rate": 0.0006,
+ "loss": 3.636807918548584,
+ "step": 2934
+ },
+ {
+ "epoch": 40.768894713848844,
+ "grad_norm": 0.20563434064388275,
+ "learning_rate": 0.0006,
+ "loss": 3.6667532920837402,
+ "step": 2935
+ },
+ {
+ "epoch": 40.782874617737,
+ "grad_norm": 0.26531776785850525,
+ "learning_rate": 0.0006,
+ "loss": 3.6332945823669434,
+ "step": 2936
+ },
+ {
+ "epoch": 40.796854521625164,
+ "grad_norm": 0.2766861021518707,
+ "learning_rate": 0.0006,
+ "loss": 3.6645212173461914,
+ "step": 2937
+ },
+ {
+ "epoch": 40.81083442551333,
+ "grad_norm": 0.235750213265419,
+ "learning_rate": 0.0006,
+ "loss": 3.67067813873291,
+ "step": 2938
+ },
+ {
+ "epoch": 40.824814329401484,
+ "grad_norm": 0.20778773725032806,
+ "learning_rate": 0.0006,
+ "loss": 3.6565768718719482,
+ "step": 2939
+ },
+ {
+ "epoch": 40.83879423328965,
+ "grad_norm": 0.187322199344635,
+ "learning_rate": 0.0006,
+ "loss": 3.620129346847534,
+ "step": 2940
+ },
+ {
+ "epoch": 40.8527741371778,
+ "grad_norm": 0.20576219260692596,
+ "learning_rate": 0.0006,
+ "loss": 3.6700220108032227,
+ "step": 2941
+ },
+ {
+ "epoch": 40.86675404106597,
+ "grad_norm": 0.2197345495223999,
+ "learning_rate": 0.0006,
+ "loss": 3.709311008453369,
+ "step": 2942
+ },
+ {
+ "epoch": 40.88073394495413,
+ "grad_norm": 0.20205345749855042,
+ "learning_rate": 0.0006,
+ "loss": 3.6646361351013184,
+ "step": 2943
+ },
+ {
+ "epoch": 40.89471384884229,
+ "grad_norm": 0.20026250183582306,
+ "learning_rate": 0.0006,
+ "loss": 3.6639604568481445,
+ "step": 2944
+ },
+ {
+ "epoch": 40.90869375273045,
+ "grad_norm": 0.224214106798172,
+ "learning_rate": 0.0006,
+ "loss": 3.6669654846191406,
+ "step": 2945
+ },
+ {
+ "epoch": 40.92267365661861,
+ "grad_norm": 0.2155972272157669,
+ "learning_rate": 0.0006,
+ "loss": 3.6494603157043457,
+ "step": 2946
+ },
+ {
+ "epoch": 40.93665356050677,
+ "grad_norm": 0.23038871586322784,
+ "learning_rate": 0.0006,
+ "loss": 3.6368541717529297,
+ "step": 2947
+ },
+ {
+ "epoch": 40.95063346439493,
+ "grad_norm": 0.2001815289258957,
+ "learning_rate": 0.0006,
+ "loss": 3.711174249649048,
+ "step": 2948
+ },
+ {
+ "epoch": 40.964613368283096,
+ "grad_norm": 0.20428860187530518,
+ "learning_rate": 0.0006,
+ "loss": 3.6342315673828125,
+ "step": 2949
+ },
+ {
+ "epoch": 40.97859327217125,
+ "grad_norm": 0.20724134147167206,
+ "learning_rate": 0.0006,
+ "loss": 3.679375171661377,
+ "step": 2950
+ },
+ {
+ "epoch": 40.992573176059416,
+ "grad_norm": 0.20723849534988403,
+ "learning_rate": 0.0006,
+ "loss": 3.6477675437927246,
+ "step": 2951
+ },
+ {
+ "epoch": 41.0,
+ "grad_norm": 0.23891447484493256,
+ "learning_rate": 0.0006,
+ "loss": 3.632950782775879,
+ "step": 2952
+ },
+ {
+ "epoch": 41.0,
+ "eval_loss": 3.9871256351470947,
+ "eval_runtime": 43.8367,
+ "eval_samples_per_second": 55.707,
+ "eval_steps_per_second": 3.49,
+ "step": 2952
+ },
+ {
+ "epoch": 41.01397990388816,
+ "grad_norm": 0.2258434295654297,
+ "learning_rate": 0.0006,
+ "loss": 3.631239414215088,
+ "step": 2953
+ },
+ {
+ "epoch": 41.02795980777632,
+ "grad_norm": 0.24932795763015747,
+ "learning_rate": 0.0006,
+ "loss": 3.601083517074585,
+ "step": 2954
+ },
+ {
+ "epoch": 41.04193971166448,
+ "grad_norm": 0.2688388228416443,
+ "learning_rate": 0.0006,
+ "loss": 3.655724048614502,
+ "step": 2955
+ },
+ {
+ "epoch": 41.05591961555265,
+ "grad_norm": 0.23880694806575775,
+ "learning_rate": 0.0006,
+ "loss": 3.617628812789917,
+ "step": 2956
+ },
+ {
+ "epoch": 41.0698995194408,
+ "grad_norm": 0.23784616589546204,
+ "learning_rate": 0.0006,
+ "loss": 3.6309127807617188,
+ "step": 2957
+ },
+ {
+ "epoch": 41.083879423328966,
+ "grad_norm": 0.22609511017799377,
+ "learning_rate": 0.0006,
+ "loss": 3.6138553619384766,
+ "step": 2958
+ },
+ {
+ "epoch": 41.09785932721712,
+ "grad_norm": 0.22936329245567322,
+ "learning_rate": 0.0006,
+ "loss": 3.6620094776153564,
+ "step": 2959
+ },
+ {
+ "epoch": 41.111839231105286,
+ "grad_norm": 0.23354190587997437,
+ "learning_rate": 0.0006,
+ "loss": 3.59959077835083,
+ "step": 2960
+ },
+ {
+ "epoch": 41.12581913499345,
+ "grad_norm": 0.2496265172958374,
+ "learning_rate": 0.0006,
+ "loss": 3.588359832763672,
+ "step": 2961
+ },
+ {
+ "epoch": 41.139799038881605,
+ "grad_norm": 0.23618635535240173,
+ "learning_rate": 0.0006,
+ "loss": 3.6341018676757812,
+ "step": 2962
+ },
+ {
+ "epoch": 41.15377894276977,
+ "grad_norm": 0.23724640905857086,
+ "learning_rate": 0.0006,
+ "loss": 3.6170616149902344,
+ "step": 2963
+ },
+ {
+ "epoch": 41.16775884665793,
+ "grad_norm": 0.20944789052009583,
+ "learning_rate": 0.0006,
+ "loss": 3.6158995628356934,
+ "step": 2964
+ },
+ {
+ "epoch": 41.18173875054609,
+ "grad_norm": 0.2089492678642273,
+ "learning_rate": 0.0006,
+ "loss": 3.586538314819336,
+ "step": 2965
+ },
+ {
+ "epoch": 41.19571865443425,
+ "grad_norm": 0.2370915710926056,
+ "learning_rate": 0.0006,
+ "loss": 3.599236011505127,
+ "step": 2966
+ },
+ {
+ "epoch": 41.20969855832241,
+ "grad_norm": 0.25749558210372925,
+ "learning_rate": 0.0006,
+ "loss": 3.631399154663086,
+ "step": 2967
+ },
+ {
+ "epoch": 41.22367846221057,
+ "grad_norm": 0.24754776060581207,
+ "learning_rate": 0.0006,
+ "loss": 3.6503920555114746,
+ "step": 2968
+ },
+ {
+ "epoch": 41.237658366098735,
+ "grad_norm": 0.22060903906822205,
+ "learning_rate": 0.0006,
+ "loss": 3.671673536300659,
+ "step": 2969
+ },
+ {
+ "epoch": 41.25163826998689,
+ "grad_norm": 0.19416594505310059,
+ "learning_rate": 0.0006,
+ "loss": 3.6158413887023926,
+ "step": 2970
+ },
+ {
+ "epoch": 41.265618173875055,
+ "grad_norm": 0.22596411406993866,
+ "learning_rate": 0.0006,
+ "loss": 3.64003849029541,
+ "step": 2971
+ },
+ {
+ "epoch": 41.27959807776322,
+ "grad_norm": 0.26785415410995483,
+ "learning_rate": 0.0006,
+ "loss": 3.642327308654785,
+ "step": 2972
+ },
+ {
+ "epoch": 41.293577981651374,
+ "grad_norm": 0.2988710403442383,
+ "learning_rate": 0.0006,
+ "loss": 3.6018929481506348,
+ "step": 2973
+ },
+ {
+ "epoch": 41.30755788553954,
+ "grad_norm": 0.2428133338689804,
+ "learning_rate": 0.0006,
+ "loss": 3.645270824432373,
+ "step": 2974
+ },
+ {
+ "epoch": 41.3215377894277,
+ "grad_norm": 0.20330320298671722,
+ "learning_rate": 0.0006,
+ "loss": 3.625495433807373,
+ "step": 2975
+ },
+ {
+ "epoch": 41.33551769331586,
+ "grad_norm": 0.2267787605524063,
+ "learning_rate": 0.0006,
+ "loss": 3.6469204425811768,
+ "step": 2976
+ },
+ {
+ "epoch": 41.34949759720402,
+ "grad_norm": 0.20702822506427765,
+ "learning_rate": 0.0006,
+ "loss": 3.644191265106201,
+ "step": 2977
+ },
+ {
+ "epoch": 41.36347750109218,
+ "grad_norm": 0.19693221151828766,
+ "learning_rate": 0.0006,
+ "loss": 3.591794967651367,
+ "step": 2978
+ },
+ {
+ "epoch": 41.37745740498034,
+ "grad_norm": 0.21193185448646545,
+ "learning_rate": 0.0006,
+ "loss": 3.6283936500549316,
+ "step": 2979
+ },
+ {
+ "epoch": 41.391437308868504,
+ "grad_norm": 0.20953163504600525,
+ "learning_rate": 0.0006,
+ "loss": 3.617565155029297,
+ "step": 2980
+ },
+ {
+ "epoch": 41.40541721275666,
+ "grad_norm": 0.21839819848537445,
+ "learning_rate": 0.0006,
+ "loss": 3.621209144592285,
+ "step": 2981
+ },
+ {
+ "epoch": 41.419397116644824,
+ "grad_norm": 0.2152671068906784,
+ "learning_rate": 0.0006,
+ "loss": 3.643197536468506,
+ "step": 2982
+ },
+ {
+ "epoch": 41.43337702053299,
+ "grad_norm": 0.2507486641407013,
+ "learning_rate": 0.0006,
+ "loss": 3.657499313354492,
+ "step": 2983
+ },
+ {
+ "epoch": 41.44735692442114,
+ "grad_norm": 0.24695388972759247,
+ "learning_rate": 0.0006,
+ "loss": 3.62170672416687,
+ "step": 2984
+ },
+ {
+ "epoch": 41.46133682830931,
+ "grad_norm": 0.22652822732925415,
+ "learning_rate": 0.0006,
+ "loss": 3.64322566986084,
+ "step": 2985
+ },
+ {
+ "epoch": 41.47531673219746,
+ "grad_norm": 0.2575881779193878,
+ "learning_rate": 0.0006,
+ "loss": 3.659621477127075,
+ "step": 2986
+ },
+ {
+ "epoch": 41.489296636085626,
+ "grad_norm": 0.24162672460079193,
+ "learning_rate": 0.0006,
+ "loss": 3.6527223587036133,
+ "step": 2987
+ },
+ {
+ "epoch": 41.50327653997379,
+ "grad_norm": 0.20930497348308563,
+ "learning_rate": 0.0006,
+ "loss": 3.6412787437438965,
+ "step": 2988
+ },
+ {
+ "epoch": 41.517256443861946,
+ "grad_norm": 0.20480819046497345,
+ "learning_rate": 0.0006,
+ "loss": 3.614767074584961,
+ "step": 2989
+ },
+ {
+ "epoch": 41.53123634775011,
+ "grad_norm": 0.20015820860862732,
+ "learning_rate": 0.0006,
+ "loss": 3.6512045860290527,
+ "step": 2990
+ },
+ {
+ "epoch": 41.54521625163827,
+ "grad_norm": 0.20220743119716644,
+ "learning_rate": 0.0006,
+ "loss": 3.6732325553894043,
+ "step": 2991
+ },
+ {
+ "epoch": 41.55919615552643,
+ "grad_norm": 0.20505326986312866,
+ "learning_rate": 0.0006,
+ "loss": 3.6374664306640625,
+ "step": 2992
+ },
+ {
+ "epoch": 41.57317605941459,
+ "grad_norm": 0.19423344731330872,
+ "learning_rate": 0.0006,
+ "loss": 3.6564126014709473,
+ "step": 2993
+ },
+ {
+ "epoch": 41.58715596330275,
+ "grad_norm": 0.19284583628177643,
+ "learning_rate": 0.0006,
+ "loss": 3.6460509300231934,
+ "step": 2994
+ },
+ {
+ "epoch": 41.60113586719091,
+ "grad_norm": 0.18488959968090057,
+ "learning_rate": 0.0006,
+ "loss": 3.632859468460083,
+ "step": 2995
+ },
+ {
+ "epoch": 41.615115771079076,
+ "grad_norm": 0.18816296756267548,
+ "learning_rate": 0.0006,
+ "loss": 3.5958361625671387,
+ "step": 2996
+ },
+ {
+ "epoch": 41.62909567496723,
+ "grad_norm": 0.18987809121608734,
+ "learning_rate": 0.0006,
+ "loss": 3.6330695152282715,
+ "step": 2997
+ },
+ {
+ "epoch": 41.643075578855395,
+ "grad_norm": 0.18999919295310974,
+ "learning_rate": 0.0006,
+ "loss": 3.6486730575561523,
+ "step": 2998
+ },
+ {
+ "epoch": 41.65705548274356,
+ "grad_norm": 0.20190183818340302,
+ "learning_rate": 0.0006,
+ "loss": 3.6564230918884277,
+ "step": 2999
+ },
+ {
+ "epoch": 41.671035386631715,
+ "grad_norm": 0.20331363379955292,
+ "learning_rate": 0.0006,
+ "loss": 3.6789698600769043,
+ "step": 3000
+ },
+ {
+ "epoch": 41.68501529051988,
+ "grad_norm": 0.21599505841732025,
+ "learning_rate": 0.0006,
+ "loss": 3.6544511318206787,
+ "step": 3001
+ },
+ {
+ "epoch": 41.69899519440804,
+ "grad_norm": 0.21123184263706207,
+ "learning_rate": 0.0006,
+ "loss": 3.6506948471069336,
+ "step": 3002
+ },
+ {
+ "epoch": 41.7129750982962,
+ "grad_norm": 0.21337002515792847,
+ "learning_rate": 0.0006,
+ "loss": 3.676854372024536,
+ "step": 3003
+ },
+ {
+ "epoch": 41.72695500218436,
+ "grad_norm": 0.22567597031593323,
+ "learning_rate": 0.0006,
+ "loss": 3.6467485427856445,
+ "step": 3004
+ },
+ {
+ "epoch": 41.74093490607252,
+ "grad_norm": 0.22923491895198822,
+ "learning_rate": 0.0006,
+ "loss": 3.663224697113037,
+ "step": 3005
+ },
+ {
+ "epoch": 41.75491480996068,
+ "grad_norm": 0.21511489152908325,
+ "learning_rate": 0.0006,
+ "loss": 3.6290054321289062,
+ "step": 3006
+ },
+ {
+ "epoch": 41.768894713848844,
+ "grad_norm": 0.23855915665626526,
+ "learning_rate": 0.0006,
+ "loss": 3.631225109100342,
+ "step": 3007
+ },
+ {
+ "epoch": 41.782874617737,
+ "grad_norm": 0.22771067917346954,
+ "learning_rate": 0.0006,
+ "loss": 3.652575731277466,
+ "step": 3008
+ },
+ {
+ "epoch": 41.796854521625164,
+ "grad_norm": 0.2006237953901291,
+ "learning_rate": 0.0006,
+ "loss": 3.6883468627929688,
+ "step": 3009
+ },
+ {
+ "epoch": 41.81083442551333,
+ "grad_norm": 0.21182459592819214,
+ "learning_rate": 0.0006,
+ "loss": 3.6443567276000977,
+ "step": 3010
+ },
+ {
+ "epoch": 41.824814329401484,
+ "grad_norm": 0.21083690226078033,
+ "learning_rate": 0.0006,
+ "loss": 3.66660475730896,
+ "step": 3011
+ },
+ {
+ "epoch": 41.83879423328965,
+ "grad_norm": 0.21232296526432037,
+ "learning_rate": 0.0006,
+ "loss": 3.6436524391174316,
+ "step": 3012
+ },
+ {
+ "epoch": 41.8527741371778,
+ "grad_norm": 0.2089361697435379,
+ "learning_rate": 0.0006,
+ "loss": 3.648113250732422,
+ "step": 3013
+ },
+ {
+ "epoch": 41.86675404106597,
+ "grad_norm": 0.21517033874988556,
+ "learning_rate": 0.0006,
+ "loss": 3.6382269859313965,
+ "step": 3014
+ },
+ {
+ "epoch": 41.88073394495413,
+ "grad_norm": 0.1930733323097229,
+ "learning_rate": 0.0006,
+ "loss": 3.639441967010498,
+ "step": 3015
+ },
+ {
+ "epoch": 41.89471384884229,
+ "grad_norm": 0.18282832205295563,
+ "learning_rate": 0.0006,
+ "loss": 3.652860164642334,
+ "step": 3016
+ },
+ {
+ "epoch": 41.90869375273045,
+ "grad_norm": 0.18649716675281525,
+ "learning_rate": 0.0006,
+ "loss": 3.6335558891296387,
+ "step": 3017
+ },
+ {
+ "epoch": 41.92267365661861,
+ "grad_norm": 0.18873754143714905,
+ "learning_rate": 0.0006,
+ "loss": 3.6743149757385254,
+ "step": 3018
+ },
+ {
+ "epoch": 41.93665356050677,
+ "grad_norm": 0.1937907189130783,
+ "learning_rate": 0.0006,
+ "loss": 3.6749300956726074,
+ "step": 3019
+ },
+ {
+ "epoch": 41.95063346439493,
+ "grad_norm": 0.20620854198932648,
+ "learning_rate": 0.0006,
+ "loss": 3.6591262817382812,
+ "step": 3020
+ },
+ {
+ "epoch": 41.964613368283096,
+ "grad_norm": 0.18541009724140167,
+ "learning_rate": 0.0006,
+ "loss": 3.647010326385498,
+ "step": 3021
+ },
+ {
+ "epoch": 41.97859327217125,
+ "grad_norm": 0.19224928319454193,
+ "learning_rate": 0.0006,
+ "loss": 3.629920482635498,
+ "step": 3022
+ },
+ {
+ "epoch": 41.992573176059416,
+ "grad_norm": 0.21286419034004211,
+ "learning_rate": 0.0006,
+ "loss": 3.6516964435577393,
+ "step": 3023
+ },
+ {
+ "epoch": 42.0,
+ "grad_norm": 0.24787360429763794,
+ "learning_rate": 0.0006,
+ "loss": 3.6378865242004395,
+ "step": 3024
+ },
+ {
+ "epoch": 42.0,
+ "eval_loss": 3.9910318851470947,
+ "eval_runtime": 43.7914,
+ "eval_samples_per_second": 55.764,
+ "eval_steps_per_second": 3.494,
+ "step": 3024
+ },
+ {
+ "epoch": 42.01397990388816,
+ "grad_norm": 0.21036255359649658,
+ "learning_rate": 0.0006,
+ "loss": 3.6604344844818115,
+ "step": 3025
+ },
+ {
+ "epoch": 42.02795980777632,
+ "grad_norm": 0.22240597009658813,
+ "learning_rate": 0.0006,
+ "loss": 3.6160645484924316,
+ "step": 3026
+ },
+ {
+ "epoch": 42.04193971166448,
+ "grad_norm": 0.2487850785255432,
+ "learning_rate": 0.0006,
+ "loss": 3.6293773651123047,
+ "step": 3027
+ },
+ {
+ "epoch": 42.05591961555265,
+ "grad_norm": 0.27058133482933044,
+ "learning_rate": 0.0006,
+ "loss": 3.5827436447143555,
+ "step": 3028
+ },
+ {
+ "epoch": 42.0698995194408,
+ "grad_norm": 0.25001782178878784,
+ "learning_rate": 0.0006,
+ "loss": 3.5833029747009277,
+ "step": 3029
+ },
+ {
+ "epoch": 42.083879423328966,
+ "grad_norm": 0.23811939358711243,
+ "learning_rate": 0.0006,
+ "loss": 3.605585813522339,
+ "step": 3030
+ },
+ {
+ "epoch": 42.09785932721712,
+ "grad_norm": 0.23279601335525513,
+ "learning_rate": 0.0006,
+ "loss": 3.607205867767334,
+ "step": 3031
+ },
+ {
+ "epoch": 42.111839231105286,
+ "grad_norm": 0.24410508573055267,
+ "learning_rate": 0.0006,
+ "loss": 3.621175765991211,
+ "step": 3032
+ },
+ {
+ "epoch": 42.12581913499345,
+ "grad_norm": 0.24782028794288635,
+ "learning_rate": 0.0006,
+ "loss": 3.6236867904663086,
+ "step": 3033
+ },
+ {
+ "epoch": 42.139799038881605,
+ "grad_norm": 0.2301972657442093,
+ "learning_rate": 0.0006,
+ "loss": 3.603853464126587,
+ "step": 3034
+ },
+ {
+ "epoch": 42.15377894276977,
+ "grad_norm": 0.21988637745380402,
+ "learning_rate": 0.0006,
+ "loss": 3.600142002105713,
+ "step": 3035
+ },
+ {
+ "epoch": 42.16775884665793,
+ "grad_norm": 0.22623786330223083,
+ "learning_rate": 0.0006,
+ "loss": 3.61971116065979,
+ "step": 3036
+ },
+ {
+ "epoch": 42.18173875054609,
+ "grad_norm": 0.21844688057899475,
+ "learning_rate": 0.0006,
+ "loss": 3.61320161819458,
+ "step": 3037
+ },
+ {
+ "epoch": 42.19571865443425,
+ "grad_norm": 0.20444536209106445,
+ "learning_rate": 0.0006,
+ "loss": 3.6179633140563965,
+ "step": 3038
+ },
+ {
+ "epoch": 42.20969855832241,
+ "grad_norm": 0.22862036526203156,
+ "learning_rate": 0.0006,
+ "loss": 3.605433940887451,
+ "step": 3039
+ },
+ {
+ "epoch": 42.22367846221057,
+ "grad_norm": 0.2906605005264282,
+ "learning_rate": 0.0006,
+ "loss": 3.6279449462890625,
+ "step": 3040
+ },
+ {
+ "epoch": 42.237658366098735,
+ "grad_norm": 0.29074418544769287,
+ "learning_rate": 0.0006,
+ "loss": 3.5959763526916504,
+ "step": 3041
+ },
+ {
+ "epoch": 42.25163826998689,
+ "grad_norm": 0.1994444876909256,
+ "learning_rate": 0.0006,
+ "loss": 3.5858588218688965,
+ "step": 3042
+ },
+ {
+ "epoch": 42.265618173875055,
+ "grad_norm": 0.20793452858924866,
+ "learning_rate": 0.0006,
+ "loss": 3.604630470275879,
+ "step": 3043
+ },
+ {
+ "epoch": 42.27959807776322,
+ "grad_norm": 0.2119535505771637,
+ "learning_rate": 0.0006,
+ "loss": 3.6287126541137695,
+ "step": 3044
+ },
+ {
+ "epoch": 42.293577981651374,
+ "grad_norm": 0.21092535555362701,
+ "learning_rate": 0.0006,
+ "loss": 3.646294593811035,
+ "step": 3045
+ },
+ {
+ "epoch": 42.30755788553954,
+ "grad_norm": 0.21474479138851166,
+ "learning_rate": 0.0006,
+ "loss": 3.6364355087280273,
+ "step": 3046
+ },
+ {
+ "epoch": 42.3215377894277,
+ "grad_norm": 0.21100781857967377,
+ "learning_rate": 0.0006,
+ "loss": 3.622528553009033,
+ "step": 3047
+ },
+ {
+ "epoch": 42.33551769331586,
+ "grad_norm": 0.20739853382110596,
+ "learning_rate": 0.0006,
+ "loss": 3.6261959075927734,
+ "step": 3048
+ },
+ {
+ "epoch": 42.34949759720402,
+ "grad_norm": 0.22264131903648376,
+ "learning_rate": 0.0006,
+ "loss": 3.6195173263549805,
+ "step": 3049
+ },
+ {
+ "epoch": 42.36347750109218,
+ "grad_norm": 0.23696285486221313,
+ "learning_rate": 0.0006,
+ "loss": 3.631103515625,
+ "step": 3050
+ },
+ {
+ "epoch": 42.37745740498034,
+ "grad_norm": 0.2124902606010437,
+ "learning_rate": 0.0006,
+ "loss": 3.6490437984466553,
+ "step": 3051
+ },
+ {
+ "epoch": 42.391437308868504,
+ "grad_norm": 0.18831083178520203,
+ "learning_rate": 0.0006,
+ "loss": 3.628459930419922,
+ "step": 3052
+ },
+ {
+ "epoch": 42.40541721275666,
+ "grad_norm": 0.20390060544013977,
+ "learning_rate": 0.0006,
+ "loss": 3.6348538398742676,
+ "step": 3053
+ },
+ {
+ "epoch": 42.419397116644824,
+ "grad_norm": 0.2205851823091507,
+ "learning_rate": 0.0006,
+ "loss": 3.6286797523498535,
+ "step": 3054
+ },
+ {
+ "epoch": 42.43337702053299,
+ "grad_norm": 0.21518434584140778,
+ "learning_rate": 0.0006,
+ "loss": 3.5918965339660645,
+ "step": 3055
+ },
+ {
+ "epoch": 42.44735692442114,
+ "grad_norm": 0.2342296987771988,
+ "learning_rate": 0.0006,
+ "loss": 3.6364407539367676,
+ "step": 3056
+ },
+ {
+ "epoch": 42.46133682830931,
+ "grad_norm": 0.2304094135761261,
+ "learning_rate": 0.0006,
+ "loss": 3.6561477184295654,
+ "step": 3057
+ },
+ {
+ "epoch": 42.47531673219746,
+ "grad_norm": 0.20882441103458405,
+ "learning_rate": 0.0006,
+ "loss": 3.611250638961792,
+ "step": 3058
+ },
+ {
+ "epoch": 42.489296636085626,
+ "grad_norm": 0.24346643686294556,
+ "learning_rate": 0.0006,
+ "loss": 3.580082416534424,
+ "step": 3059
+ },
+ {
+ "epoch": 42.50327653997379,
+ "grad_norm": 0.260711133480072,
+ "learning_rate": 0.0006,
+ "loss": 3.6179792881011963,
+ "step": 3060
+ },
+ {
+ "epoch": 42.517256443861946,
+ "grad_norm": 0.21223759651184082,
+ "learning_rate": 0.0006,
+ "loss": 3.6153154373168945,
+ "step": 3061
+ },
+ {
+ "epoch": 42.53123634775011,
+ "grad_norm": 0.21429137885570526,
+ "learning_rate": 0.0006,
+ "loss": 3.6003379821777344,
+ "step": 3062
+ },
+ {
+ "epoch": 42.54521625163827,
+ "grad_norm": 0.23659434914588928,
+ "learning_rate": 0.0006,
+ "loss": 3.6540589332580566,
+ "step": 3063
+ },
+ {
+ "epoch": 42.55919615552643,
+ "grad_norm": 0.280344158411026,
+ "learning_rate": 0.0006,
+ "loss": 3.6406192779541016,
+ "step": 3064
+ },
+ {
+ "epoch": 42.57317605941459,
+ "grad_norm": 0.2903953194618225,
+ "learning_rate": 0.0006,
+ "loss": 3.643479824066162,
+ "step": 3065
+ },
+ {
+ "epoch": 42.58715596330275,
+ "grad_norm": 0.24958311021327972,
+ "learning_rate": 0.0006,
+ "loss": 3.6320221424102783,
+ "step": 3066
+ },
+ {
+ "epoch": 42.60113586719091,
+ "grad_norm": 0.22525225579738617,
+ "learning_rate": 0.0006,
+ "loss": 3.641676425933838,
+ "step": 3067
+ },
+ {
+ "epoch": 42.615115771079076,
+ "grad_norm": 0.23025161027908325,
+ "learning_rate": 0.0006,
+ "loss": 3.6465210914611816,
+ "step": 3068
+ },
+ {
+ "epoch": 42.62909567496723,
+ "grad_norm": 0.21947328746318817,
+ "learning_rate": 0.0006,
+ "loss": 3.667877435684204,
+ "step": 3069
+ },
+ {
+ "epoch": 42.643075578855395,
+ "grad_norm": 0.22809366881847382,
+ "learning_rate": 0.0006,
+ "loss": 3.663166046142578,
+ "step": 3070
+ },
+ {
+ "epoch": 42.65705548274356,
+ "grad_norm": 0.21938708424568176,
+ "learning_rate": 0.0006,
+ "loss": 3.619001865386963,
+ "step": 3071
+ },
+ {
+ "epoch": 42.671035386631715,
+ "grad_norm": 0.231620192527771,
+ "learning_rate": 0.0006,
+ "loss": 3.652332305908203,
+ "step": 3072
+ },
+ {
+ "epoch": 42.68501529051988,
+ "grad_norm": 0.23683936893939972,
+ "learning_rate": 0.0006,
+ "loss": 3.6633410453796387,
+ "step": 3073
+ },
+ {
+ "epoch": 42.69899519440804,
+ "grad_norm": 0.23752044141292572,
+ "learning_rate": 0.0006,
+ "loss": 3.646064281463623,
+ "step": 3074
+ },
+ {
+ "epoch": 42.7129750982962,
+ "grad_norm": 0.23041971027851105,
+ "learning_rate": 0.0006,
+ "loss": 3.6431851387023926,
+ "step": 3075
+ },
+ {
+ "epoch": 42.72695500218436,
+ "grad_norm": 0.220438614487648,
+ "learning_rate": 0.0006,
+ "loss": 3.6499950885772705,
+ "step": 3076
+ },
+ {
+ "epoch": 42.74093490607252,
+ "grad_norm": 0.24297107756137848,
+ "learning_rate": 0.0006,
+ "loss": 3.6655125617980957,
+ "step": 3077
+ },
+ {
+ "epoch": 42.75491480996068,
+ "grad_norm": 0.21835893392562866,
+ "learning_rate": 0.0006,
+ "loss": 3.61672043800354,
+ "step": 3078
+ },
+ {
+ "epoch": 42.768894713848844,
+ "grad_norm": 0.22490793466567993,
+ "learning_rate": 0.0006,
+ "loss": 3.652825355529785,
+ "step": 3079
+ },
+ {
+ "epoch": 42.782874617737,
+ "grad_norm": 0.2246086746454239,
+ "learning_rate": 0.0006,
+ "loss": 3.6290056705474854,
+ "step": 3080
+ },
+ {
+ "epoch": 42.796854521625164,
+ "grad_norm": 0.21527042984962463,
+ "learning_rate": 0.0006,
+ "loss": 3.6587281227111816,
+ "step": 3081
+ },
+ {
+ "epoch": 42.81083442551333,
+ "grad_norm": 0.19586899876594543,
+ "learning_rate": 0.0006,
+ "loss": 3.639626979827881,
+ "step": 3082
+ },
+ {
+ "epoch": 42.824814329401484,
+ "grad_norm": 0.20881155133247375,
+ "learning_rate": 0.0006,
+ "loss": 3.6305861473083496,
+ "step": 3083
+ },
+ {
+ "epoch": 42.83879423328965,
+ "grad_norm": 0.20094981789588928,
+ "learning_rate": 0.0006,
+ "loss": 3.609614849090576,
+ "step": 3084
+ },
+ {
+ "epoch": 42.8527741371778,
+ "grad_norm": 0.21786150336265564,
+ "learning_rate": 0.0006,
+ "loss": 3.6423556804656982,
+ "step": 3085
+ },
+ {
+ "epoch": 42.86675404106597,
+ "grad_norm": 0.24493595957756042,
+ "learning_rate": 0.0006,
+ "loss": 3.631321668624878,
+ "step": 3086
+ },
+ {
+ "epoch": 42.88073394495413,
+ "grad_norm": 0.2437327355146408,
+ "learning_rate": 0.0006,
+ "loss": 3.6624178886413574,
+ "step": 3087
+ },
+ {
+ "epoch": 42.89471384884229,
+ "grad_norm": 0.21020543575286865,
+ "learning_rate": 0.0006,
+ "loss": 3.6567513942718506,
+ "step": 3088
+ },
+ {
+ "epoch": 42.90869375273045,
+ "grad_norm": 0.18977083265781403,
+ "learning_rate": 0.0006,
+ "loss": 3.6268601417541504,
+ "step": 3089
+ },
+ {
+ "epoch": 42.92267365661861,
+ "grad_norm": 0.2211192399263382,
+ "learning_rate": 0.0006,
+ "loss": 3.6690402030944824,
+ "step": 3090
+ },
+ {
+ "epoch": 42.93665356050677,
+ "grad_norm": 0.2695990204811096,
+ "learning_rate": 0.0006,
+ "loss": 3.667701244354248,
+ "step": 3091
+ },
+ {
+ "epoch": 42.95063346439493,
+ "grad_norm": 0.25910887122154236,
+ "learning_rate": 0.0006,
+ "loss": 3.627504587173462,
+ "step": 3092
+ },
+ {
+ "epoch": 42.964613368283096,
+ "grad_norm": 0.2466248720884323,
+ "learning_rate": 0.0006,
+ "loss": 3.6462182998657227,
+ "step": 3093
+ },
+ {
+ "epoch": 42.97859327217125,
+ "grad_norm": 0.22997038066387177,
+ "learning_rate": 0.0006,
+ "loss": 3.647430896759033,
+ "step": 3094
+ },
+ {
+ "epoch": 42.992573176059416,
+ "grad_norm": 0.1989113837480545,
+ "learning_rate": 0.0006,
+ "loss": 3.6502084732055664,
+ "step": 3095
+ },
+ {
+ "epoch": 43.0,
+ "grad_norm": 0.22976496815681458,
+ "learning_rate": 0.0006,
+ "loss": 3.6963884830474854,
+ "step": 3096
+ },
+ {
+ "epoch": 43.0,
+ "eval_loss": 3.9656779766082764,
+ "eval_runtime": 43.9281,
+ "eval_samples_per_second": 55.591,
+ "eval_steps_per_second": 3.483,
+ "step": 3096
+ },
+ {
+ "epoch": 43.01397990388816,
+ "grad_norm": 0.2862325608730316,
+ "learning_rate": 0.0006,
+ "loss": 3.581247568130493,
+ "step": 3097
+ },
+ {
+ "epoch": 43.02795980777632,
+ "grad_norm": 0.3867015540599823,
+ "learning_rate": 0.0006,
+ "loss": 3.611076593399048,
+ "step": 3098
+ },
+ {
+ "epoch": 43.04193971166448,
+ "grad_norm": 0.4139448404312134,
+ "learning_rate": 0.0006,
+ "loss": 3.625164031982422,
+ "step": 3099
+ },
+ {
+ "epoch": 43.05591961555265,
+ "grad_norm": 0.292407363653183,
+ "learning_rate": 0.0006,
+ "loss": 3.615546703338623,
+ "step": 3100
+ },
+ {
+ "epoch": 43.0698995194408,
+ "grad_norm": 0.24272124469280243,
+ "learning_rate": 0.0006,
+ "loss": 3.5965943336486816,
+ "step": 3101
+ },
+ {
+ "epoch": 43.083879423328966,
+ "grad_norm": 0.2761254608631134,
+ "learning_rate": 0.0006,
+ "loss": 3.605706214904785,
+ "step": 3102
+ },
+ {
+ "epoch": 43.09785932721712,
+ "grad_norm": 0.25232183933258057,
+ "learning_rate": 0.0006,
+ "loss": 3.6252012252807617,
+ "step": 3103
+ },
+ {
+ "epoch": 43.111839231105286,
+ "grad_norm": 0.248970165848732,
+ "learning_rate": 0.0006,
+ "loss": 3.6028337478637695,
+ "step": 3104
+ },
+ {
+ "epoch": 43.12581913499345,
+ "grad_norm": 0.22088921070098877,
+ "learning_rate": 0.0006,
+ "loss": 3.591614007949829,
+ "step": 3105
+ },
+ {
+ "epoch": 43.139799038881605,
+ "grad_norm": 0.21528655290603638,
+ "learning_rate": 0.0006,
+ "loss": 3.6237306594848633,
+ "step": 3106
+ },
+ {
+ "epoch": 43.15377894276977,
+ "grad_norm": 0.22799135744571686,
+ "learning_rate": 0.0006,
+ "loss": 3.5968847274780273,
+ "step": 3107
+ },
+ {
+ "epoch": 43.16775884665793,
+ "grad_norm": 0.23102127015590668,
+ "learning_rate": 0.0006,
+ "loss": 3.6046414375305176,
+ "step": 3108
+ },
+ {
+ "epoch": 43.18173875054609,
+ "grad_norm": 0.22876501083374023,
+ "learning_rate": 0.0006,
+ "loss": 3.635608196258545,
+ "step": 3109
+ },
+ {
+ "epoch": 43.19571865443425,
+ "grad_norm": 0.24920420348644257,
+ "learning_rate": 0.0006,
+ "loss": 3.628662109375,
+ "step": 3110
+ },
+ {
+ "epoch": 43.20969855832241,
+ "grad_norm": 0.2527749538421631,
+ "learning_rate": 0.0006,
+ "loss": 3.6109046936035156,
+ "step": 3111
+ },
+ {
+ "epoch": 43.22367846221057,
+ "grad_norm": 0.22529229521751404,
+ "learning_rate": 0.0006,
+ "loss": 3.6536030769348145,
+ "step": 3112
+ },
+ {
+ "epoch": 43.237658366098735,
+ "grad_norm": 0.20031821727752686,
+ "learning_rate": 0.0006,
+ "loss": 3.6328792572021484,
+ "step": 3113
+ },
+ {
+ "epoch": 43.25163826998689,
+ "grad_norm": 0.21075189113616943,
+ "learning_rate": 0.0006,
+ "loss": 3.6200530529022217,
+ "step": 3114
+ },
+ {
+ "epoch": 43.265618173875055,
+ "grad_norm": 0.21164856851100922,
+ "learning_rate": 0.0006,
+ "loss": 3.6276001930236816,
+ "step": 3115
+ },
+ {
+ "epoch": 43.27959807776322,
+ "grad_norm": 0.19306758046150208,
+ "learning_rate": 0.0006,
+ "loss": 3.608675956726074,
+ "step": 3116
+ },
+ {
+ "epoch": 43.293577981651374,
+ "grad_norm": 0.20288796722888947,
+ "learning_rate": 0.0006,
+ "loss": 3.6057004928588867,
+ "step": 3117
+ },
+ {
+ "epoch": 43.30755788553954,
+ "grad_norm": 0.1901484876871109,
+ "learning_rate": 0.0006,
+ "loss": 3.6191725730895996,
+ "step": 3118
+ },
+ {
+ "epoch": 43.3215377894277,
+ "grad_norm": 0.19438181817531586,
+ "learning_rate": 0.0006,
+ "loss": 3.5814337730407715,
+ "step": 3119
+ },
+ {
+ "epoch": 43.33551769331586,
+ "grad_norm": 0.19924484193325043,
+ "learning_rate": 0.0006,
+ "loss": 3.6168713569641113,
+ "step": 3120
+ },
+ {
+ "epoch": 43.34949759720402,
+ "grad_norm": 0.20757409930229187,
+ "learning_rate": 0.0006,
+ "loss": 3.6281509399414062,
+ "step": 3121
+ },
+ {
+ "epoch": 43.36347750109218,
+ "grad_norm": 0.22500184178352356,
+ "learning_rate": 0.0006,
+ "loss": 3.635101795196533,
+ "step": 3122
+ },
+ {
+ "epoch": 43.37745740498034,
+ "grad_norm": 0.22061555087566376,
+ "learning_rate": 0.0006,
+ "loss": 3.630622386932373,
+ "step": 3123
+ },
+ {
+ "epoch": 43.391437308868504,
+ "grad_norm": 0.2094152420759201,
+ "learning_rate": 0.0006,
+ "loss": 3.581803798675537,
+ "step": 3124
+ },
+ {
+ "epoch": 43.40541721275666,
+ "grad_norm": 0.19607678055763245,
+ "learning_rate": 0.0006,
+ "loss": 3.6149864196777344,
+ "step": 3125
+ },
+ {
+ "epoch": 43.419397116644824,
+ "grad_norm": 0.18985028564929962,
+ "learning_rate": 0.0006,
+ "loss": 3.6338040828704834,
+ "step": 3126
+ },
+ {
+ "epoch": 43.43337702053299,
+ "grad_norm": 0.20490778982639313,
+ "learning_rate": 0.0006,
+ "loss": 3.63275146484375,
+ "step": 3127
+ },
+ {
+ "epoch": 43.44735692442114,
+ "grad_norm": 0.24385297298431396,
+ "learning_rate": 0.0006,
+ "loss": 3.6412134170532227,
+ "step": 3128
+ },
+ {
+ "epoch": 43.46133682830931,
+ "grad_norm": 0.243601992726326,
+ "learning_rate": 0.0006,
+ "loss": 3.594238758087158,
+ "step": 3129
+ },
+ {
+ "epoch": 43.47531673219746,
+ "grad_norm": 0.21314913034439087,
+ "learning_rate": 0.0006,
+ "loss": 3.5962629318237305,
+ "step": 3130
+ },
+ {
+ "epoch": 43.489296636085626,
+ "grad_norm": 0.20499329268932343,
+ "learning_rate": 0.0006,
+ "loss": 3.61600923538208,
+ "step": 3131
+ },
+ {
+ "epoch": 43.50327653997379,
+ "grad_norm": 0.20199540257453918,
+ "learning_rate": 0.0006,
+ "loss": 3.638469934463501,
+ "step": 3132
+ },
+ {
+ "epoch": 43.517256443861946,
+ "grad_norm": 0.19932983815670013,
+ "learning_rate": 0.0006,
+ "loss": 3.619145393371582,
+ "step": 3133
+ },
+ {
+ "epoch": 43.53123634775011,
+ "grad_norm": 0.20401954650878906,
+ "learning_rate": 0.0006,
+ "loss": 3.643700122833252,
+ "step": 3134
+ },
+ {
+ "epoch": 43.54521625163827,
+ "grad_norm": 0.20784904062747955,
+ "learning_rate": 0.0006,
+ "loss": 3.619272232055664,
+ "step": 3135
+ },
+ {
+ "epoch": 43.55919615552643,
+ "grad_norm": 0.21003122627735138,
+ "learning_rate": 0.0006,
+ "loss": 3.629542827606201,
+ "step": 3136
+ },
+ {
+ "epoch": 43.57317605941459,
+ "grad_norm": 0.2220298945903778,
+ "learning_rate": 0.0006,
+ "loss": 3.655543804168701,
+ "step": 3137
+ },
+ {
+ "epoch": 43.58715596330275,
+ "grad_norm": 0.21159163117408752,
+ "learning_rate": 0.0006,
+ "loss": 3.6092495918273926,
+ "step": 3138
+ },
+ {
+ "epoch": 43.60113586719091,
+ "grad_norm": 0.19462746381759644,
+ "learning_rate": 0.0006,
+ "loss": 3.6447129249572754,
+ "step": 3139
+ },
+ {
+ "epoch": 43.615115771079076,
+ "grad_norm": 0.20523829758167267,
+ "learning_rate": 0.0006,
+ "loss": 3.6292669773101807,
+ "step": 3140
+ },
+ {
+ "epoch": 43.62909567496723,
+ "grad_norm": 0.2172321230173111,
+ "learning_rate": 0.0006,
+ "loss": 3.6144580841064453,
+ "step": 3141
+ },
+ {
+ "epoch": 43.643075578855395,
+ "grad_norm": 0.21751564741134644,
+ "learning_rate": 0.0006,
+ "loss": 3.6381068229675293,
+ "step": 3142
+ },
+ {
+ "epoch": 43.65705548274356,
+ "grad_norm": 0.1914236694574356,
+ "learning_rate": 0.0006,
+ "loss": 3.6392078399658203,
+ "step": 3143
+ },
+ {
+ "epoch": 43.671035386631715,
+ "grad_norm": 0.19792547821998596,
+ "learning_rate": 0.0006,
+ "loss": 3.6394457817077637,
+ "step": 3144
+ },
+ {
+ "epoch": 43.68501529051988,
+ "grad_norm": 0.2106214165687561,
+ "learning_rate": 0.0006,
+ "loss": 3.626147747039795,
+ "step": 3145
+ },
+ {
+ "epoch": 43.69899519440804,
+ "grad_norm": 0.21802955865859985,
+ "learning_rate": 0.0006,
+ "loss": 3.63372802734375,
+ "step": 3146
+ },
+ {
+ "epoch": 43.7129750982962,
+ "grad_norm": 0.21498727798461914,
+ "learning_rate": 0.0006,
+ "loss": 3.6193063259124756,
+ "step": 3147
+ },
+ {
+ "epoch": 43.72695500218436,
+ "grad_norm": 0.2176690250635147,
+ "learning_rate": 0.0006,
+ "loss": 3.6431519985198975,
+ "step": 3148
+ },
+ {
+ "epoch": 43.74093490607252,
+ "grad_norm": 0.26883506774902344,
+ "learning_rate": 0.0006,
+ "loss": 3.6216721534729004,
+ "step": 3149
+ },
+ {
+ "epoch": 43.75491480996068,
+ "grad_norm": 0.23485299944877625,
+ "learning_rate": 0.0006,
+ "loss": 3.6361191272735596,
+ "step": 3150
+ },
+ {
+ "epoch": 43.768894713848844,
+ "grad_norm": 0.20496341586112976,
+ "learning_rate": 0.0006,
+ "loss": 3.6258792877197266,
+ "step": 3151
+ },
+ {
+ "epoch": 43.782874617737,
+ "grad_norm": 0.21792510151863098,
+ "learning_rate": 0.0006,
+ "loss": 3.6522839069366455,
+ "step": 3152
+ },
+ {
+ "epoch": 43.796854521625164,
+ "grad_norm": 0.2589452564716339,
+ "learning_rate": 0.0006,
+ "loss": 3.651235580444336,
+ "step": 3153
+ },
+ {
+ "epoch": 43.81083442551333,
+ "grad_norm": 0.24883611500263214,
+ "learning_rate": 0.0006,
+ "loss": 3.6382546424865723,
+ "step": 3154
+ },
+ {
+ "epoch": 43.824814329401484,
+ "grad_norm": 0.22466720640659332,
+ "learning_rate": 0.0006,
+ "loss": 3.6232261657714844,
+ "step": 3155
+ },
+ {
+ "epoch": 43.83879423328965,
+ "grad_norm": 0.19477292895317078,
+ "learning_rate": 0.0006,
+ "loss": 3.6350135803222656,
+ "step": 3156
+ },
+ {
+ "epoch": 43.8527741371778,
+ "grad_norm": 0.20302540063858032,
+ "learning_rate": 0.0006,
+ "loss": 3.638143539428711,
+ "step": 3157
+ },
+ {
+ "epoch": 43.86675404106597,
+ "grad_norm": 0.2112276554107666,
+ "learning_rate": 0.0006,
+ "loss": 3.6415610313415527,
+ "step": 3158
+ },
+ {
+ "epoch": 43.88073394495413,
+ "grad_norm": 0.20544779300689697,
+ "learning_rate": 0.0006,
+ "loss": 3.6437134742736816,
+ "step": 3159
+ },
+ {
+ "epoch": 43.89471384884229,
+ "grad_norm": 0.2320292890071869,
+ "learning_rate": 0.0006,
+ "loss": 3.6178359985351562,
+ "step": 3160
+ },
+ {
+ "epoch": 43.90869375273045,
+ "grad_norm": 0.25862693786621094,
+ "learning_rate": 0.0006,
+ "loss": 3.618229389190674,
+ "step": 3161
+ },
+ {
+ "epoch": 43.92267365661861,
+ "grad_norm": 0.2741934061050415,
+ "learning_rate": 0.0006,
+ "loss": 3.6046690940856934,
+ "step": 3162
+ },
+ {
+ "epoch": 43.93665356050677,
+ "grad_norm": 0.24312593042850494,
+ "learning_rate": 0.0006,
+ "loss": 3.5835556983947754,
+ "step": 3163
+ },
+ {
+ "epoch": 43.95063346439493,
+ "grad_norm": 0.22174517810344696,
+ "learning_rate": 0.0006,
+ "loss": 3.6505162715911865,
+ "step": 3164
+ },
+ {
+ "epoch": 43.964613368283096,
+ "grad_norm": 0.22016975283622742,
+ "learning_rate": 0.0006,
+ "loss": 3.6385562419891357,
+ "step": 3165
+ },
+ {
+ "epoch": 43.97859327217125,
+ "grad_norm": 0.23034313321113586,
+ "learning_rate": 0.0006,
+ "loss": 3.6345865726470947,
+ "step": 3166
+ },
+ {
+ "epoch": 43.992573176059416,
+ "grad_norm": 0.21236231923103333,
+ "learning_rate": 0.0006,
+ "loss": 3.6337084770202637,
+ "step": 3167
+ },
+ {
+ "epoch": 44.0,
+ "grad_norm": 0.2344549298286438,
+ "learning_rate": 0.0006,
+ "loss": 3.677978515625,
+ "step": 3168
+ },
+ {
+ "epoch": 44.0,
+ "eval_loss": 3.9817888736724854,
+ "eval_runtime": 44.4396,
+ "eval_samples_per_second": 54.951,
+ "eval_steps_per_second": 3.443,
+ "step": 3168
+ },
+ {
+ "epoch": 44.01397990388816,
+ "grad_norm": 0.19790801405906677,
+ "learning_rate": 0.0006,
+ "loss": 3.590817451477051,
+ "step": 3169
+ },
+ {
+ "epoch": 44.02795980777632,
+ "grad_norm": 0.22922387719154358,
+ "learning_rate": 0.0006,
+ "loss": 3.643888473510742,
+ "step": 3170
+ },
+ {
+ "epoch": 44.04193971166448,
+ "grad_norm": 0.24750149250030518,
+ "learning_rate": 0.0006,
+ "loss": 3.596278667449951,
+ "step": 3171
+ },
+ {
+ "epoch": 44.05591961555265,
+ "grad_norm": 0.2511967420578003,
+ "learning_rate": 0.0006,
+ "loss": 3.6138253211975098,
+ "step": 3172
+ },
+ {
+ "epoch": 44.0698995194408,
+ "grad_norm": 0.2530326843261719,
+ "learning_rate": 0.0006,
+ "loss": 3.5710060596466064,
+ "step": 3173
+ },
+ {
+ "epoch": 44.083879423328966,
+ "grad_norm": 0.2629041373729706,
+ "learning_rate": 0.0006,
+ "loss": 3.61676025390625,
+ "step": 3174
+ },
+ {
+ "epoch": 44.09785932721712,
+ "grad_norm": 0.27373939752578735,
+ "learning_rate": 0.0006,
+ "loss": 3.613091230392456,
+ "step": 3175
+ },
+ {
+ "epoch": 44.111839231105286,
+ "grad_norm": 0.24354346096515656,
+ "learning_rate": 0.0006,
+ "loss": 3.6133360862731934,
+ "step": 3176
+ },
+ {
+ "epoch": 44.12581913499345,
+ "grad_norm": 0.21540892124176025,
+ "learning_rate": 0.0006,
+ "loss": 3.6367645263671875,
+ "step": 3177
+ },
+ {
+ "epoch": 44.139799038881605,
+ "grad_norm": 0.22251278162002563,
+ "learning_rate": 0.0006,
+ "loss": 3.6266322135925293,
+ "step": 3178
+ },
+ {
+ "epoch": 44.15377894276977,
+ "grad_norm": 0.26196029782295227,
+ "learning_rate": 0.0006,
+ "loss": 3.616487979888916,
+ "step": 3179
+ },
+ {
+ "epoch": 44.16775884665793,
+ "grad_norm": 0.2614341080188751,
+ "learning_rate": 0.0006,
+ "loss": 3.5902786254882812,
+ "step": 3180
+ },
+ {
+ "epoch": 44.18173875054609,
+ "grad_norm": 0.23517177999019623,
+ "learning_rate": 0.0006,
+ "loss": 3.610124111175537,
+ "step": 3181
+ },
+ {
+ "epoch": 44.19571865443425,
+ "grad_norm": 0.20091469585895538,
+ "learning_rate": 0.0006,
+ "loss": 3.5861713886260986,
+ "step": 3182
+ },
+ {
+ "epoch": 44.20969855832241,
+ "grad_norm": 0.19659830629825592,
+ "learning_rate": 0.0006,
+ "loss": 3.6157889366149902,
+ "step": 3183
+ },
+ {
+ "epoch": 44.22367846221057,
+ "grad_norm": 0.20690861344337463,
+ "learning_rate": 0.0006,
+ "loss": 3.5710649490356445,
+ "step": 3184
+ },
+ {
+ "epoch": 44.237658366098735,
+ "grad_norm": 0.2478247433900833,
+ "learning_rate": 0.0006,
+ "loss": 3.609031915664673,
+ "step": 3185
+ },
+ {
+ "epoch": 44.25163826998689,
+ "grad_norm": 0.2678471505641937,
+ "learning_rate": 0.0006,
+ "loss": 3.6412887573242188,
+ "step": 3186
+ },
+ {
+ "epoch": 44.265618173875055,
+ "grad_norm": 0.21856079995632172,
+ "learning_rate": 0.0006,
+ "loss": 3.6113123893737793,
+ "step": 3187
+ },
+ {
+ "epoch": 44.27959807776322,
+ "grad_norm": 0.23104850947856903,
+ "learning_rate": 0.0006,
+ "loss": 3.6022086143493652,
+ "step": 3188
+ },
+ {
+ "epoch": 44.293577981651374,
+ "grad_norm": 0.2380223423242569,
+ "learning_rate": 0.0006,
+ "loss": 3.598735809326172,
+ "step": 3189
+ },
+ {
+ "epoch": 44.30755788553954,
+ "grad_norm": 0.23005320131778717,
+ "learning_rate": 0.0006,
+ "loss": 3.595881938934326,
+ "step": 3190
+ },
+ {
+ "epoch": 44.3215377894277,
+ "grad_norm": 0.23327432572841644,
+ "learning_rate": 0.0006,
+ "loss": 3.6198601722717285,
+ "step": 3191
+ },
+ {
+ "epoch": 44.33551769331586,
+ "grad_norm": 0.2272268831729889,
+ "learning_rate": 0.0006,
+ "loss": 3.6135387420654297,
+ "step": 3192
+ },
+ {
+ "epoch": 44.34949759720402,
+ "grad_norm": 0.2518279552459717,
+ "learning_rate": 0.0006,
+ "loss": 3.6084556579589844,
+ "step": 3193
+ },
+ {
+ "epoch": 44.36347750109218,
+ "grad_norm": 0.27668607234954834,
+ "learning_rate": 0.0006,
+ "loss": 3.644430160522461,
+ "step": 3194
+ },
+ {
+ "epoch": 44.37745740498034,
+ "grad_norm": 0.26110342144966125,
+ "learning_rate": 0.0006,
+ "loss": 3.64072322845459,
+ "step": 3195
+ },
+ {
+ "epoch": 44.391437308868504,
+ "grad_norm": 0.22767964005470276,
+ "learning_rate": 0.0006,
+ "loss": 3.5570502281188965,
+ "step": 3196
+ },
+ {
+ "epoch": 44.40541721275666,
+ "grad_norm": 0.2199093997478485,
+ "learning_rate": 0.0006,
+ "loss": 3.558889150619507,
+ "step": 3197
+ },
+ {
+ "epoch": 44.419397116644824,
+ "grad_norm": 0.21653494238853455,
+ "learning_rate": 0.0006,
+ "loss": 3.6215333938598633,
+ "step": 3198
+ },
+ {
+ "epoch": 44.43337702053299,
+ "grad_norm": 0.1958773136138916,
+ "learning_rate": 0.0006,
+ "loss": 3.588468551635742,
+ "step": 3199
+ },
+ {
+ "epoch": 44.44735692442114,
+ "grad_norm": 0.20205403864383698,
+ "learning_rate": 0.0006,
+ "loss": 3.6109578609466553,
+ "step": 3200
+ },
+ {
+ "epoch": 44.46133682830931,
+ "grad_norm": 0.19632115960121155,
+ "learning_rate": 0.0006,
+ "loss": 3.634315013885498,
+ "step": 3201
+ },
+ {
+ "epoch": 44.47531673219746,
+ "grad_norm": 0.19327203929424286,
+ "learning_rate": 0.0006,
+ "loss": 3.6335930824279785,
+ "step": 3202
+ },
+ {
+ "epoch": 44.489296636085626,
+ "grad_norm": 0.19743897020816803,
+ "learning_rate": 0.0006,
+ "loss": 3.6164016723632812,
+ "step": 3203
+ },
+ {
+ "epoch": 44.50327653997379,
+ "grad_norm": 0.20413564145565033,
+ "learning_rate": 0.0006,
+ "loss": 3.663613796234131,
+ "step": 3204
+ },
+ {
+ "epoch": 44.517256443861946,
+ "grad_norm": 0.2057798206806183,
+ "learning_rate": 0.0006,
+ "loss": 3.625131130218506,
+ "step": 3205
+ },
+ {
+ "epoch": 44.53123634775011,
+ "grad_norm": 0.20076915621757507,
+ "learning_rate": 0.0006,
+ "loss": 3.6362178325653076,
+ "step": 3206
+ },
+ {
+ "epoch": 44.54521625163827,
+ "grad_norm": 0.2381955236196518,
+ "learning_rate": 0.0006,
+ "loss": 3.621263265609741,
+ "step": 3207
+ },
+ {
+ "epoch": 44.55919615552643,
+ "grad_norm": 0.27008768916130066,
+ "learning_rate": 0.0006,
+ "loss": 3.6133322715759277,
+ "step": 3208
+ },
+ {
+ "epoch": 44.57317605941459,
+ "grad_norm": 0.25677573680877686,
+ "learning_rate": 0.0006,
+ "loss": 3.6210851669311523,
+ "step": 3209
+ },
+ {
+ "epoch": 44.58715596330275,
+ "grad_norm": 0.21022997796535492,
+ "learning_rate": 0.0006,
+ "loss": 3.626483917236328,
+ "step": 3210
+ },
+ {
+ "epoch": 44.60113586719091,
+ "grad_norm": 0.19918566942214966,
+ "learning_rate": 0.0006,
+ "loss": 3.6321091651916504,
+ "step": 3211
+ },
+ {
+ "epoch": 44.615115771079076,
+ "grad_norm": 0.2114727795124054,
+ "learning_rate": 0.0006,
+ "loss": 3.5767595767974854,
+ "step": 3212
+ },
+ {
+ "epoch": 44.62909567496723,
+ "grad_norm": 0.20968441665172577,
+ "learning_rate": 0.0006,
+ "loss": 3.6040430068969727,
+ "step": 3213
+ },
+ {
+ "epoch": 44.643075578855395,
+ "grad_norm": 0.19996227324008942,
+ "learning_rate": 0.0006,
+ "loss": 3.6688590049743652,
+ "step": 3214
+ },
+ {
+ "epoch": 44.65705548274356,
+ "grad_norm": 0.19998830556869507,
+ "learning_rate": 0.0006,
+ "loss": 3.6349434852600098,
+ "step": 3215
+ },
+ {
+ "epoch": 44.671035386631715,
+ "grad_norm": 0.20812496542930603,
+ "learning_rate": 0.0006,
+ "loss": 3.6363840103149414,
+ "step": 3216
+ },
+ {
+ "epoch": 44.68501529051988,
+ "grad_norm": 0.1988825500011444,
+ "learning_rate": 0.0006,
+ "loss": 3.6180496215820312,
+ "step": 3217
+ },
+ {
+ "epoch": 44.69899519440804,
+ "grad_norm": 0.2114664614200592,
+ "learning_rate": 0.0006,
+ "loss": 3.6362106800079346,
+ "step": 3218
+ },
+ {
+ "epoch": 44.7129750982962,
+ "grad_norm": 0.19847962260246277,
+ "learning_rate": 0.0006,
+ "loss": 3.618500232696533,
+ "step": 3219
+ },
+ {
+ "epoch": 44.72695500218436,
+ "grad_norm": 0.19903887808322906,
+ "learning_rate": 0.0006,
+ "loss": 3.6360888481140137,
+ "step": 3220
+ },
+ {
+ "epoch": 44.74093490607252,
+ "grad_norm": 0.21198545396327972,
+ "learning_rate": 0.0006,
+ "loss": 3.6347005367279053,
+ "step": 3221
+ },
+ {
+ "epoch": 44.75491480996068,
+ "grad_norm": 0.18334898352622986,
+ "learning_rate": 0.0006,
+ "loss": 3.6160783767700195,
+ "step": 3222
+ },
+ {
+ "epoch": 44.768894713848844,
+ "grad_norm": 0.19260665774345398,
+ "learning_rate": 0.0006,
+ "loss": 3.6322834491729736,
+ "step": 3223
+ },
+ {
+ "epoch": 44.782874617737,
+ "grad_norm": 0.2084558755159378,
+ "learning_rate": 0.0006,
+ "loss": 3.615227699279785,
+ "step": 3224
+ },
+ {
+ "epoch": 44.796854521625164,
+ "grad_norm": 0.24538686871528625,
+ "learning_rate": 0.0006,
+ "loss": 3.6387081146240234,
+ "step": 3225
+ },
+ {
+ "epoch": 44.81083442551333,
+ "grad_norm": 0.23291894793510437,
+ "learning_rate": 0.0006,
+ "loss": 3.6245408058166504,
+ "step": 3226
+ },
+ {
+ "epoch": 44.824814329401484,
+ "grad_norm": 0.20715969800949097,
+ "learning_rate": 0.0006,
+ "loss": 3.633620262145996,
+ "step": 3227
+ },
+ {
+ "epoch": 44.83879423328965,
+ "grad_norm": 0.20866821706295013,
+ "learning_rate": 0.0006,
+ "loss": 3.613438129425049,
+ "step": 3228
+ },
+ {
+ "epoch": 44.8527741371778,
+ "grad_norm": 0.2048904299736023,
+ "learning_rate": 0.0006,
+ "loss": 3.668807029724121,
+ "step": 3229
+ },
+ {
+ "epoch": 44.86675404106597,
+ "grad_norm": 0.2073894739151001,
+ "learning_rate": 0.0006,
+ "loss": 3.6000914573669434,
+ "step": 3230
+ },
+ {
+ "epoch": 44.88073394495413,
+ "grad_norm": 0.22017404437065125,
+ "learning_rate": 0.0006,
+ "loss": 3.6024718284606934,
+ "step": 3231
+ },
+ {
+ "epoch": 44.89471384884229,
+ "grad_norm": 0.23971669375896454,
+ "learning_rate": 0.0006,
+ "loss": 3.6339516639709473,
+ "step": 3232
+ },
+ {
+ "epoch": 44.90869375273045,
+ "grad_norm": 0.2258273959159851,
+ "learning_rate": 0.0006,
+ "loss": 3.6480093002319336,
+ "step": 3233
+ },
+ {
+ "epoch": 44.92267365661861,
+ "grad_norm": 0.22079502046108246,
+ "learning_rate": 0.0006,
+ "loss": 3.643446922302246,
+ "step": 3234
+ },
+ {
+ "epoch": 44.93665356050677,
+ "grad_norm": 0.22109337151050568,
+ "learning_rate": 0.0006,
+ "loss": 3.5975499153137207,
+ "step": 3235
+ },
+ {
+ "epoch": 44.95063346439493,
+ "grad_norm": 0.20142309367656708,
+ "learning_rate": 0.0006,
+ "loss": 3.6057305335998535,
+ "step": 3236
+ },
+ {
+ "epoch": 44.964613368283096,
+ "grad_norm": 0.20089569687843323,
+ "learning_rate": 0.0006,
+ "loss": 3.5900750160217285,
+ "step": 3237
+ },
+ {
+ "epoch": 44.97859327217125,
+ "grad_norm": 0.19860075414180756,
+ "learning_rate": 0.0006,
+ "loss": 3.5954184532165527,
+ "step": 3238
+ },
+ {
+ "epoch": 44.992573176059416,
+ "grad_norm": 0.19166013598442078,
+ "learning_rate": 0.0006,
+ "loss": 3.6568803787231445,
+ "step": 3239
+ },
+ {
+ "epoch": 45.0,
+ "grad_norm": 0.22416932880878448,
+ "learning_rate": 0.0006,
+ "loss": 3.6483092308044434,
+ "step": 3240
+ },
+ {
+ "epoch": 45.0,
+ "eval_loss": 3.9821224212646484,
+ "eval_runtime": 44.5415,
+ "eval_samples_per_second": 54.825,
+ "eval_steps_per_second": 3.435,
+ "step": 3240
+ },
+ {
+ "epoch": 45.01397990388816,
+ "grad_norm": 0.2107669562101364,
+ "learning_rate": 0.0006,
+ "loss": 3.5858099460601807,
+ "step": 3241
+ },
+ {
+ "epoch": 45.02795980777632,
+ "grad_norm": 0.20831939578056335,
+ "learning_rate": 0.0006,
+ "loss": 3.5793800354003906,
+ "step": 3242
+ },
+ {
+ "epoch": 45.04193971166448,
+ "grad_norm": 0.2169167846441269,
+ "learning_rate": 0.0006,
+ "loss": 3.601961135864258,
+ "step": 3243
+ },
+ {
+ "epoch": 45.05591961555265,
+ "grad_norm": 0.22451531887054443,
+ "learning_rate": 0.0006,
+ "loss": 3.586371898651123,
+ "step": 3244
+ },
+ {
+ "epoch": 45.0698995194408,
+ "grad_norm": 0.2187003344297409,
+ "learning_rate": 0.0006,
+ "loss": 3.58760929107666,
+ "step": 3245
+ },
+ {
+ "epoch": 45.083879423328966,
+ "grad_norm": 0.22805631160736084,
+ "learning_rate": 0.0006,
+ "loss": 3.554107904434204,
+ "step": 3246
+ },
+ {
+ "epoch": 45.09785932721712,
+ "grad_norm": 0.2573186159133911,
+ "learning_rate": 0.0006,
+ "loss": 3.5815420150756836,
+ "step": 3247
+ },
+ {
+ "epoch": 45.111839231105286,
+ "grad_norm": 0.25940126180648804,
+ "learning_rate": 0.0006,
+ "loss": 3.5754308700561523,
+ "step": 3248
+ },
+ {
+ "epoch": 45.12581913499345,
+ "grad_norm": 0.23834384977817535,
+ "learning_rate": 0.0006,
+ "loss": 3.5857350826263428,
+ "step": 3249
+ },
+ {
+ "epoch": 45.139799038881605,
+ "grad_norm": 0.23342885076999664,
+ "learning_rate": 0.0006,
+ "loss": 3.6116228103637695,
+ "step": 3250
+ },
+ {
+ "epoch": 45.15377894276977,
+ "grad_norm": 0.23284269869327545,
+ "learning_rate": 0.0006,
+ "loss": 3.5778629779815674,
+ "step": 3251
+ },
+ {
+ "epoch": 45.16775884665793,
+ "grad_norm": 0.30510780215263367,
+ "learning_rate": 0.0006,
+ "loss": 3.5888915061950684,
+ "step": 3252
+ },
+ {
+ "epoch": 45.18173875054609,
+ "grad_norm": 0.3462519645690918,
+ "learning_rate": 0.0006,
+ "loss": 3.5955758094787598,
+ "step": 3253
+ },
+ {
+ "epoch": 45.19571865443425,
+ "grad_norm": 0.2795974314212799,
+ "learning_rate": 0.0006,
+ "loss": 3.6222946643829346,
+ "step": 3254
+ },
+ {
+ "epoch": 45.20969855832241,
+ "grad_norm": 0.24624103307724,
+ "learning_rate": 0.0006,
+ "loss": 3.63046932220459,
+ "step": 3255
+ },
+ {
+ "epoch": 45.22367846221057,
+ "grad_norm": 0.23007310926914215,
+ "learning_rate": 0.0006,
+ "loss": 3.652526378631592,
+ "step": 3256
+ },
+ {
+ "epoch": 45.237658366098735,
+ "grad_norm": 0.21325333416461945,
+ "learning_rate": 0.0006,
+ "loss": 3.5960049629211426,
+ "step": 3257
+ },
+ {
+ "epoch": 45.25163826998689,
+ "grad_norm": 0.22697314620018005,
+ "learning_rate": 0.0006,
+ "loss": 3.5723695755004883,
+ "step": 3258
+ },
+ {
+ "epoch": 45.265618173875055,
+ "grad_norm": 0.21900491416454315,
+ "learning_rate": 0.0006,
+ "loss": 3.613572120666504,
+ "step": 3259
+ },
+ {
+ "epoch": 45.27959807776322,
+ "grad_norm": 0.21030694246292114,
+ "learning_rate": 0.0006,
+ "loss": 3.5830235481262207,
+ "step": 3260
+ },
+ {
+ "epoch": 45.293577981651374,
+ "grad_norm": 0.20229968428611755,
+ "learning_rate": 0.0006,
+ "loss": 3.620349884033203,
+ "step": 3261
+ },
+ {
+ "epoch": 45.30755788553954,
+ "grad_norm": 0.21611201763153076,
+ "learning_rate": 0.0006,
+ "loss": 3.5937819480895996,
+ "step": 3262
+ },
+ {
+ "epoch": 45.3215377894277,
+ "grad_norm": 0.21876764297485352,
+ "learning_rate": 0.0006,
+ "loss": 3.6180777549743652,
+ "step": 3263
+ },
+ {
+ "epoch": 45.33551769331586,
+ "grad_norm": 0.200356587767601,
+ "learning_rate": 0.0006,
+ "loss": 3.6140146255493164,
+ "step": 3264
+ },
+ {
+ "epoch": 45.34949759720402,
+ "grad_norm": 0.19151835143566132,
+ "learning_rate": 0.0006,
+ "loss": 3.607077121734619,
+ "step": 3265
+ },
+ {
+ "epoch": 45.36347750109218,
+ "grad_norm": 0.1994648575782776,
+ "learning_rate": 0.0006,
+ "loss": 3.646780490875244,
+ "step": 3266
+ },
+ {
+ "epoch": 45.37745740498034,
+ "grad_norm": 0.23145829141139984,
+ "learning_rate": 0.0006,
+ "loss": 3.624591588973999,
+ "step": 3267
+ },
+ {
+ "epoch": 45.391437308868504,
+ "grad_norm": 0.23608829081058502,
+ "learning_rate": 0.0006,
+ "loss": 3.598904609680176,
+ "step": 3268
+ },
+ {
+ "epoch": 45.40541721275666,
+ "grad_norm": 0.22254547476768494,
+ "learning_rate": 0.0006,
+ "loss": 3.581087827682495,
+ "step": 3269
+ },
+ {
+ "epoch": 45.419397116644824,
+ "grad_norm": 0.21640023589134216,
+ "learning_rate": 0.0006,
+ "loss": 3.5961151123046875,
+ "step": 3270
+ },
+ {
+ "epoch": 45.43337702053299,
+ "grad_norm": 0.2252444475889206,
+ "learning_rate": 0.0006,
+ "loss": 3.590231418609619,
+ "step": 3271
+ },
+ {
+ "epoch": 45.44735692442114,
+ "grad_norm": 0.23785367608070374,
+ "learning_rate": 0.0006,
+ "loss": 3.615896701812744,
+ "step": 3272
+ },
+ {
+ "epoch": 45.46133682830931,
+ "grad_norm": 0.2509191036224365,
+ "learning_rate": 0.0006,
+ "loss": 3.6413722038269043,
+ "step": 3273
+ },
+ {
+ "epoch": 45.47531673219746,
+ "grad_norm": 0.23734210431575775,
+ "learning_rate": 0.0006,
+ "loss": 3.608898639678955,
+ "step": 3274
+ },
+ {
+ "epoch": 45.489296636085626,
+ "grad_norm": 0.19802412390708923,
+ "learning_rate": 0.0006,
+ "loss": 3.5957250595092773,
+ "step": 3275
+ },
+ {
+ "epoch": 45.50327653997379,
+ "grad_norm": 0.20621423423290253,
+ "learning_rate": 0.0006,
+ "loss": 3.607945442199707,
+ "step": 3276
+ },
+ {
+ "epoch": 45.517256443861946,
+ "grad_norm": 0.225870743393898,
+ "learning_rate": 0.0006,
+ "loss": 3.641449451446533,
+ "step": 3277
+ },
+ {
+ "epoch": 45.53123634775011,
+ "grad_norm": 0.21482397615909576,
+ "learning_rate": 0.0006,
+ "loss": 3.61629581451416,
+ "step": 3278
+ },
+ {
+ "epoch": 45.54521625163827,
+ "grad_norm": 0.21159376204013824,
+ "learning_rate": 0.0006,
+ "loss": 3.5977988243103027,
+ "step": 3279
+ },
+ {
+ "epoch": 45.55919615552643,
+ "grad_norm": 0.2031678408384323,
+ "learning_rate": 0.0006,
+ "loss": 3.629343032836914,
+ "step": 3280
+ },
+ {
+ "epoch": 45.57317605941459,
+ "grad_norm": 0.1827101707458496,
+ "learning_rate": 0.0006,
+ "loss": 3.6161365509033203,
+ "step": 3281
+ },
+ {
+ "epoch": 45.58715596330275,
+ "grad_norm": 0.21884584426879883,
+ "learning_rate": 0.0006,
+ "loss": 3.6131834983825684,
+ "step": 3282
+ },
+ {
+ "epoch": 45.60113586719091,
+ "grad_norm": 0.21764980256557465,
+ "learning_rate": 0.0006,
+ "loss": 3.612516164779663,
+ "step": 3283
+ },
+ {
+ "epoch": 45.615115771079076,
+ "grad_norm": 0.22257080674171448,
+ "learning_rate": 0.0006,
+ "loss": 3.63425874710083,
+ "step": 3284
+ },
+ {
+ "epoch": 45.62909567496723,
+ "grad_norm": 0.2419128566980362,
+ "learning_rate": 0.0006,
+ "loss": 3.602997064590454,
+ "step": 3285
+ },
+ {
+ "epoch": 45.643075578855395,
+ "grad_norm": 0.20856884121894836,
+ "learning_rate": 0.0006,
+ "loss": 3.597352981567383,
+ "step": 3286
+ },
+ {
+ "epoch": 45.65705548274356,
+ "grad_norm": 0.20298589766025543,
+ "learning_rate": 0.0006,
+ "loss": 3.5961315631866455,
+ "step": 3287
+ },
+ {
+ "epoch": 45.671035386631715,
+ "grad_norm": 0.19006133079528809,
+ "learning_rate": 0.0006,
+ "loss": 3.6314568519592285,
+ "step": 3288
+ },
+ {
+ "epoch": 45.68501529051988,
+ "grad_norm": 0.20886142551898956,
+ "learning_rate": 0.0006,
+ "loss": 3.6200413703918457,
+ "step": 3289
+ },
+ {
+ "epoch": 45.69899519440804,
+ "grad_norm": 0.18085862696170807,
+ "learning_rate": 0.0006,
+ "loss": 3.6273961067199707,
+ "step": 3290
+ },
+ {
+ "epoch": 45.7129750982962,
+ "grad_norm": 0.18651945888996124,
+ "learning_rate": 0.0006,
+ "loss": 3.6490976810455322,
+ "step": 3291
+ },
+ {
+ "epoch": 45.72695500218436,
+ "grad_norm": 0.19668170809745789,
+ "learning_rate": 0.0006,
+ "loss": 3.610409736633301,
+ "step": 3292
+ },
+ {
+ "epoch": 45.74093490607252,
+ "grad_norm": 0.19865764677524567,
+ "learning_rate": 0.0006,
+ "loss": 3.614025115966797,
+ "step": 3293
+ },
+ {
+ "epoch": 45.75491480996068,
+ "grad_norm": 0.20814085006713867,
+ "learning_rate": 0.0006,
+ "loss": 3.6220510005950928,
+ "step": 3294
+ },
+ {
+ "epoch": 45.768894713848844,
+ "grad_norm": 0.20996463298797607,
+ "learning_rate": 0.0006,
+ "loss": 3.5754218101501465,
+ "step": 3295
+ },
+ {
+ "epoch": 45.782874617737,
+ "grad_norm": 0.1987130492925644,
+ "learning_rate": 0.0006,
+ "loss": 3.614746570587158,
+ "step": 3296
+ },
+ {
+ "epoch": 45.796854521625164,
+ "grad_norm": 0.23048028349876404,
+ "learning_rate": 0.0006,
+ "loss": 3.602620840072632,
+ "step": 3297
+ },
+ {
+ "epoch": 45.81083442551333,
+ "grad_norm": 0.21877387166023254,
+ "learning_rate": 0.0006,
+ "loss": 3.6294198036193848,
+ "step": 3298
+ },
+ {
+ "epoch": 45.824814329401484,
+ "grad_norm": 0.20007763803005219,
+ "learning_rate": 0.0006,
+ "loss": 3.630868434906006,
+ "step": 3299
+ },
+ {
+ "epoch": 45.83879423328965,
+ "grad_norm": 0.200496107339859,
+ "learning_rate": 0.0006,
+ "loss": 3.5972986221313477,
+ "step": 3300
+ },
+ {
+ "epoch": 45.8527741371778,
+ "grad_norm": 0.20494480431079865,
+ "learning_rate": 0.0006,
+ "loss": 3.61934494972229,
+ "step": 3301
+ },
+ {
+ "epoch": 45.86675404106597,
+ "grad_norm": 0.21374984085559845,
+ "learning_rate": 0.0006,
+ "loss": 3.6236257553100586,
+ "step": 3302
+ },
+ {
+ "epoch": 45.88073394495413,
+ "grad_norm": 0.22020408511161804,
+ "learning_rate": 0.0006,
+ "loss": 3.6030755043029785,
+ "step": 3303
+ },
+ {
+ "epoch": 45.89471384884229,
+ "grad_norm": 0.2239987701177597,
+ "learning_rate": 0.0006,
+ "loss": 3.6778974533081055,
+ "step": 3304
+ },
+ {
+ "epoch": 45.90869375273045,
+ "grad_norm": 0.22156383097171783,
+ "learning_rate": 0.0006,
+ "loss": 3.6186561584472656,
+ "step": 3305
+ },
+ {
+ "epoch": 45.92267365661861,
+ "grad_norm": 0.2264711856842041,
+ "learning_rate": 0.0006,
+ "loss": 3.6349918842315674,
+ "step": 3306
+ },
+ {
+ "epoch": 45.93665356050677,
+ "grad_norm": 0.2287975549697876,
+ "learning_rate": 0.0006,
+ "loss": 3.600268840789795,
+ "step": 3307
+ },
+ {
+ "epoch": 45.95063346439493,
+ "grad_norm": 0.22459761798381805,
+ "learning_rate": 0.0006,
+ "loss": 3.6029114723205566,
+ "step": 3308
+ },
+ {
+ "epoch": 45.964613368283096,
+ "grad_norm": 0.2430959790945053,
+ "learning_rate": 0.0006,
+ "loss": 3.6781656742095947,
+ "step": 3309
+ },
+ {
+ "epoch": 45.97859327217125,
+ "grad_norm": 0.2718662619590759,
+ "learning_rate": 0.0006,
+ "loss": 3.606778144836426,
+ "step": 3310
+ },
+ {
+ "epoch": 45.992573176059416,
+ "grad_norm": 0.27250170707702637,
+ "learning_rate": 0.0006,
+ "loss": 3.6142611503601074,
+ "step": 3311
+ },
+ {
+ "epoch": 46.0,
+ "grad_norm": 0.26663821935653687,
+ "learning_rate": 0.0006,
+ "loss": 3.6367483139038086,
+ "step": 3312
+ },
+ {
+ "epoch": 46.0,
+ "eval_loss": 3.9835095405578613,
+ "eval_runtime": 44.6504,
+ "eval_samples_per_second": 54.692,
+ "eval_steps_per_second": 3.427,
+ "step": 3312
+ },
+ {
+ "epoch": 46.01397990388816,
+ "grad_norm": 0.22670713067054749,
+ "learning_rate": 0.0006,
+ "loss": 3.5553648471832275,
+ "step": 3313
+ },
+ {
+ "epoch": 46.02795980777632,
+ "grad_norm": 0.2759886384010315,
+ "learning_rate": 0.0006,
+ "loss": 3.595186948776245,
+ "step": 3314
+ },
+ {
+ "epoch": 46.04193971166448,
+ "grad_norm": 0.31634145975112915,
+ "learning_rate": 0.0006,
+ "loss": 3.5805907249450684,
+ "step": 3315
+ },
+ {
+ "epoch": 46.05591961555265,
+ "grad_norm": 0.3097986578941345,
+ "learning_rate": 0.0006,
+ "loss": 3.593407154083252,
+ "step": 3316
+ },
+ {
+ "epoch": 46.0698995194408,
+ "grad_norm": 0.24616138637065887,
+ "learning_rate": 0.0006,
+ "loss": 3.606736898422241,
+ "step": 3317
+ },
+ {
+ "epoch": 46.083879423328966,
+ "grad_norm": 0.22210408747196198,
+ "learning_rate": 0.0006,
+ "loss": 3.59546160697937,
+ "step": 3318
+ },
+ {
+ "epoch": 46.09785932721712,
+ "grad_norm": 0.2429778128862381,
+ "learning_rate": 0.0006,
+ "loss": 3.5900321006774902,
+ "step": 3319
+ },
+ {
+ "epoch": 46.111839231105286,
+ "grad_norm": 0.22875761985778809,
+ "learning_rate": 0.0006,
+ "loss": 3.5793521404266357,
+ "step": 3320
+ },
+ {
+ "epoch": 46.12581913499345,
+ "grad_norm": 0.21508760750293732,
+ "learning_rate": 0.0006,
+ "loss": 3.5462498664855957,
+ "step": 3321
+ },
+ {
+ "epoch": 46.139799038881605,
+ "grad_norm": 0.23590944707393646,
+ "learning_rate": 0.0006,
+ "loss": 3.6247925758361816,
+ "step": 3322
+ },
+ {
+ "epoch": 46.15377894276977,
+ "grad_norm": 0.22288036346435547,
+ "learning_rate": 0.0006,
+ "loss": 3.6063995361328125,
+ "step": 3323
+ },
+ {
+ "epoch": 46.16775884665793,
+ "grad_norm": 0.20460885763168335,
+ "learning_rate": 0.0006,
+ "loss": 3.5744826793670654,
+ "step": 3324
+ },
+ {
+ "epoch": 46.18173875054609,
+ "grad_norm": 0.20172059535980225,
+ "learning_rate": 0.0006,
+ "loss": 3.5827057361602783,
+ "step": 3325
+ },
+ {
+ "epoch": 46.19571865443425,
+ "grad_norm": 0.2268448770046234,
+ "learning_rate": 0.0006,
+ "loss": 3.5801379680633545,
+ "step": 3326
+ },
+ {
+ "epoch": 46.20969855832241,
+ "grad_norm": 0.2244444191455841,
+ "learning_rate": 0.0006,
+ "loss": 3.5790224075317383,
+ "step": 3327
+ },
+ {
+ "epoch": 46.22367846221057,
+ "grad_norm": 0.20954380929470062,
+ "learning_rate": 0.0006,
+ "loss": 3.5979342460632324,
+ "step": 3328
+ },
+ {
+ "epoch": 46.237658366098735,
+ "grad_norm": 0.21395887434482574,
+ "learning_rate": 0.0006,
+ "loss": 3.6015186309814453,
+ "step": 3329
+ },
+ {
+ "epoch": 46.25163826998689,
+ "grad_norm": 0.23200181126594543,
+ "learning_rate": 0.0006,
+ "loss": 3.5904979705810547,
+ "step": 3330
+ },
+ {
+ "epoch": 46.265618173875055,
+ "grad_norm": 0.20558731257915497,
+ "learning_rate": 0.0006,
+ "loss": 3.5745811462402344,
+ "step": 3331
+ },
+ {
+ "epoch": 46.27959807776322,
+ "grad_norm": 0.1973227560520172,
+ "learning_rate": 0.0006,
+ "loss": 3.588560104370117,
+ "step": 3332
+ },
+ {
+ "epoch": 46.293577981651374,
+ "grad_norm": 0.2137945592403412,
+ "learning_rate": 0.0006,
+ "loss": 3.606064796447754,
+ "step": 3333
+ },
+ {
+ "epoch": 46.30755788553954,
+ "grad_norm": 0.2082151472568512,
+ "learning_rate": 0.0006,
+ "loss": 3.569392442703247,
+ "step": 3334
+ },
+ {
+ "epoch": 46.3215377894277,
+ "grad_norm": 0.2151029258966446,
+ "learning_rate": 0.0006,
+ "loss": 3.6016604900360107,
+ "step": 3335
+ },
+ {
+ "epoch": 46.33551769331586,
+ "grad_norm": 0.2256474643945694,
+ "learning_rate": 0.0006,
+ "loss": 3.571319580078125,
+ "step": 3336
+ },
+ {
+ "epoch": 46.34949759720402,
+ "grad_norm": 0.21454207599163055,
+ "learning_rate": 0.0006,
+ "loss": 3.6028685569763184,
+ "step": 3337
+ },
+ {
+ "epoch": 46.36347750109218,
+ "grad_norm": 0.21864144504070282,
+ "learning_rate": 0.0006,
+ "loss": 3.6146860122680664,
+ "step": 3338
+ },
+ {
+ "epoch": 46.37745740498034,
+ "grad_norm": 0.24512453377246857,
+ "learning_rate": 0.0006,
+ "loss": 3.614696502685547,
+ "step": 3339
+ },
+ {
+ "epoch": 46.391437308868504,
+ "grad_norm": 0.26355695724487305,
+ "learning_rate": 0.0006,
+ "loss": 3.6124234199523926,
+ "step": 3340
+ },
+ {
+ "epoch": 46.40541721275666,
+ "grad_norm": 0.2778678834438324,
+ "learning_rate": 0.0006,
+ "loss": 3.6075634956359863,
+ "step": 3341
+ },
+ {
+ "epoch": 46.419397116644824,
+ "grad_norm": 0.2626822292804718,
+ "learning_rate": 0.0006,
+ "loss": 3.59267520904541,
+ "step": 3342
+ },
+ {
+ "epoch": 46.43337702053299,
+ "grad_norm": 0.2211887091398239,
+ "learning_rate": 0.0006,
+ "loss": 3.606135606765747,
+ "step": 3343
+ },
+ {
+ "epoch": 46.44735692442114,
+ "grad_norm": 0.20117639005184174,
+ "learning_rate": 0.0006,
+ "loss": 3.566512107849121,
+ "step": 3344
+ },
+ {
+ "epoch": 46.46133682830931,
+ "grad_norm": 0.20202599465847015,
+ "learning_rate": 0.0006,
+ "loss": 3.603398561477661,
+ "step": 3345
+ },
+ {
+ "epoch": 46.47531673219746,
+ "grad_norm": 0.22238481044769287,
+ "learning_rate": 0.0006,
+ "loss": 3.599888324737549,
+ "step": 3346
+ },
+ {
+ "epoch": 46.489296636085626,
+ "grad_norm": 0.23298178613185883,
+ "learning_rate": 0.0006,
+ "loss": 3.6135406494140625,
+ "step": 3347
+ },
+ {
+ "epoch": 46.50327653997379,
+ "grad_norm": 0.21998152136802673,
+ "learning_rate": 0.0006,
+ "loss": 3.6022939682006836,
+ "step": 3348
+ },
+ {
+ "epoch": 46.517256443861946,
+ "grad_norm": 0.22595210373401642,
+ "learning_rate": 0.0006,
+ "loss": 3.605905532836914,
+ "step": 3349
+ },
+ {
+ "epoch": 46.53123634775011,
+ "grad_norm": 0.23549678921699524,
+ "learning_rate": 0.0006,
+ "loss": 3.606264591217041,
+ "step": 3350
+ },
+ {
+ "epoch": 46.54521625163827,
+ "grad_norm": 0.2075573205947876,
+ "learning_rate": 0.0006,
+ "loss": 3.580575942993164,
+ "step": 3351
+ },
+ {
+ "epoch": 46.55919615552643,
+ "grad_norm": 0.19052642583847046,
+ "learning_rate": 0.0006,
+ "loss": 3.618326187133789,
+ "step": 3352
+ },
+ {
+ "epoch": 46.57317605941459,
+ "grad_norm": 0.20372900366783142,
+ "learning_rate": 0.0006,
+ "loss": 3.5817952156066895,
+ "step": 3353
+ },
+ {
+ "epoch": 46.58715596330275,
+ "grad_norm": 0.20024648308753967,
+ "learning_rate": 0.0006,
+ "loss": 3.6128273010253906,
+ "step": 3354
+ },
+ {
+ "epoch": 46.60113586719091,
+ "grad_norm": 0.20892181992530823,
+ "learning_rate": 0.0006,
+ "loss": 3.6173012256622314,
+ "step": 3355
+ },
+ {
+ "epoch": 46.615115771079076,
+ "grad_norm": 0.20254571735858917,
+ "learning_rate": 0.0006,
+ "loss": 3.5924699306488037,
+ "step": 3356
+ },
+ {
+ "epoch": 46.62909567496723,
+ "grad_norm": 0.20290599763393402,
+ "learning_rate": 0.0006,
+ "loss": 3.6134514808654785,
+ "step": 3357
+ },
+ {
+ "epoch": 46.643075578855395,
+ "grad_norm": 0.23314513266086578,
+ "learning_rate": 0.0006,
+ "loss": 3.604102611541748,
+ "step": 3358
+ },
+ {
+ "epoch": 46.65705548274356,
+ "grad_norm": 0.2352486401796341,
+ "learning_rate": 0.0006,
+ "loss": 3.6210808753967285,
+ "step": 3359
+ },
+ {
+ "epoch": 46.671035386631715,
+ "grad_norm": 0.2289503663778305,
+ "learning_rate": 0.0006,
+ "loss": 3.596968650817871,
+ "step": 3360
+ },
+ {
+ "epoch": 46.68501529051988,
+ "grad_norm": 0.19971057772636414,
+ "learning_rate": 0.0006,
+ "loss": 3.5973198413848877,
+ "step": 3361
+ },
+ {
+ "epoch": 46.69899519440804,
+ "grad_norm": 0.21000619232654572,
+ "learning_rate": 0.0006,
+ "loss": 3.607048511505127,
+ "step": 3362
+ },
+ {
+ "epoch": 46.7129750982962,
+ "grad_norm": 0.22295686602592468,
+ "learning_rate": 0.0006,
+ "loss": 3.6323728561401367,
+ "step": 3363
+ },
+ {
+ "epoch": 46.72695500218436,
+ "grad_norm": 0.21939052641391754,
+ "learning_rate": 0.0006,
+ "loss": 3.6073317527770996,
+ "step": 3364
+ },
+ {
+ "epoch": 46.74093490607252,
+ "grad_norm": 0.2192271202802658,
+ "learning_rate": 0.0006,
+ "loss": 3.6396851539611816,
+ "step": 3365
+ },
+ {
+ "epoch": 46.75491480996068,
+ "grad_norm": 0.20871607959270477,
+ "learning_rate": 0.0006,
+ "loss": 3.613509178161621,
+ "step": 3366
+ },
+ {
+ "epoch": 46.768894713848844,
+ "grad_norm": 0.1837828904390335,
+ "learning_rate": 0.0006,
+ "loss": 3.604039192199707,
+ "step": 3367
+ },
+ {
+ "epoch": 46.782874617737,
+ "grad_norm": 0.1904219537973404,
+ "learning_rate": 0.0006,
+ "loss": 3.6065895557403564,
+ "step": 3368
+ },
+ {
+ "epoch": 46.796854521625164,
+ "grad_norm": 0.19873572885990143,
+ "learning_rate": 0.0006,
+ "loss": 3.5927226543426514,
+ "step": 3369
+ },
+ {
+ "epoch": 46.81083442551333,
+ "grad_norm": 0.18319591879844666,
+ "learning_rate": 0.0006,
+ "loss": 3.6114919185638428,
+ "step": 3370
+ },
+ {
+ "epoch": 46.824814329401484,
+ "grad_norm": 0.19832435250282288,
+ "learning_rate": 0.0006,
+ "loss": 3.613637924194336,
+ "step": 3371
+ },
+ {
+ "epoch": 46.83879423328965,
+ "grad_norm": 0.21506333351135254,
+ "learning_rate": 0.0006,
+ "loss": 3.6116209030151367,
+ "step": 3372
+ },
+ {
+ "epoch": 46.8527741371778,
+ "grad_norm": 0.20374484360218048,
+ "learning_rate": 0.0006,
+ "loss": 3.5923004150390625,
+ "step": 3373
+ },
+ {
+ "epoch": 46.86675404106597,
+ "grad_norm": 0.19743360579013824,
+ "learning_rate": 0.0006,
+ "loss": 3.599381685256958,
+ "step": 3374
+ },
+ {
+ "epoch": 46.88073394495413,
+ "grad_norm": 0.20996616780757904,
+ "learning_rate": 0.0006,
+ "loss": 3.624969959259033,
+ "step": 3375
+ },
+ {
+ "epoch": 46.89471384884229,
+ "grad_norm": 0.22336791455745697,
+ "learning_rate": 0.0006,
+ "loss": 3.6152467727661133,
+ "step": 3376
+ },
+ {
+ "epoch": 46.90869375273045,
+ "grad_norm": 0.2337532341480255,
+ "learning_rate": 0.0006,
+ "loss": 3.6198863983154297,
+ "step": 3377
+ },
+ {
+ "epoch": 46.92267365661861,
+ "grad_norm": 0.23823462426662445,
+ "learning_rate": 0.0006,
+ "loss": 3.6411237716674805,
+ "step": 3378
+ },
+ {
+ "epoch": 46.93665356050677,
+ "grad_norm": 0.2521338164806366,
+ "learning_rate": 0.0006,
+ "loss": 3.621544122695923,
+ "step": 3379
+ },
+ {
+ "epoch": 46.95063346439493,
+ "grad_norm": 0.253682941198349,
+ "learning_rate": 0.0006,
+ "loss": 3.6570887565612793,
+ "step": 3380
+ },
+ {
+ "epoch": 46.964613368283096,
+ "grad_norm": 0.23392300307750702,
+ "learning_rate": 0.0006,
+ "loss": 3.669538974761963,
+ "step": 3381
+ },
+ {
+ "epoch": 46.97859327217125,
+ "grad_norm": 0.2154092937707901,
+ "learning_rate": 0.0006,
+ "loss": 3.6184825897216797,
+ "step": 3382
+ },
+ {
+ "epoch": 46.992573176059416,
+ "grad_norm": 0.1909833699464798,
+ "learning_rate": 0.0006,
+ "loss": 3.647658348083496,
+ "step": 3383
+ },
+ {
+ "epoch": 47.0,
+ "grad_norm": 0.2226407378911972,
+ "learning_rate": 0.0006,
+ "loss": 3.6413815021514893,
+ "step": 3384
+ },
+ {
+ "epoch": 47.0,
+ "eval_loss": 3.98313570022583,
+ "eval_runtime": 44.7152,
+ "eval_samples_per_second": 54.612,
+ "eval_steps_per_second": 3.422,
+ "step": 3384
+ },
+ {
+ "epoch": 47.01397990388816,
+ "grad_norm": 0.20830968022346497,
+ "learning_rate": 0.0006,
+ "loss": 3.5652623176574707,
+ "step": 3385
+ },
+ {
+ "epoch": 47.02795980777632,
+ "grad_norm": 0.18953651189804077,
+ "learning_rate": 0.0006,
+ "loss": 3.570180654525757,
+ "step": 3386
+ },
+ {
+ "epoch": 47.04193971166448,
+ "grad_norm": 0.20167700946331024,
+ "learning_rate": 0.0006,
+ "loss": 3.5623056888580322,
+ "step": 3387
+ },
+ {
+ "epoch": 47.05591961555265,
+ "grad_norm": 0.21554343402385712,
+ "learning_rate": 0.0006,
+ "loss": 3.549492835998535,
+ "step": 3388
+ },
+ {
+ "epoch": 47.0698995194408,
+ "grad_norm": 0.2232149988412857,
+ "learning_rate": 0.0006,
+ "loss": 3.584181785583496,
+ "step": 3389
+ },
+ {
+ "epoch": 47.083879423328966,
+ "grad_norm": 0.23489049077033997,
+ "learning_rate": 0.0006,
+ "loss": 3.581028461456299,
+ "step": 3390
+ },
+ {
+ "epoch": 47.09785932721712,
+ "grad_norm": 0.22486020624637604,
+ "learning_rate": 0.0006,
+ "loss": 3.600348949432373,
+ "step": 3391
+ },
+ {
+ "epoch": 47.111839231105286,
+ "grad_norm": 0.22932346165180206,
+ "learning_rate": 0.0006,
+ "loss": 3.5600457191467285,
+ "step": 3392
+ },
+ {
+ "epoch": 47.12581913499345,
+ "grad_norm": 0.2179419994354248,
+ "learning_rate": 0.0006,
+ "loss": 3.560136079788208,
+ "step": 3393
+ },
+ {
+ "epoch": 47.139799038881605,
+ "grad_norm": 0.2438054382801056,
+ "learning_rate": 0.0006,
+ "loss": 3.5955698490142822,
+ "step": 3394
+ },
+ {
+ "epoch": 47.15377894276977,
+ "grad_norm": 0.2652001976966858,
+ "learning_rate": 0.0006,
+ "loss": 3.5942912101745605,
+ "step": 3395
+ },
+ {
+ "epoch": 47.16775884665793,
+ "grad_norm": 0.270924836397171,
+ "learning_rate": 0.0006,
+ "loss": 3.5733351707458496,
+ "step": 3396
+ },
+ {
+ "epoch": 47.18173875054609,
+ "grad_norm": 0.28365132212638855,
+ "learning_rate": 0.0006,
+ "loss": 3.6042075157165527,
+ "step": 3397
+ },
+ {
+ "epoch": 47.19571865443425,
+ "grad_norm": 0.29530975222587585,
+ "learning_rate": 0.0006,
+ "loss": 3.588935375213623,
+ "step": 3398
+ },
+ {
+ "epoch": 47.20969855832241,
+ "grad_norm": 0.2658918797969818,
+ "learning_rate": 0.0006,
+ "loss": 3.5944671630859375,
+ "step": 3399
+ },
+ {
+ "epoch": 47.22367846221057,
+ "grad_norm": 0.24076500535011292,
+ "learning_rate": 0.0006,
+ "loss": 3.5853185653686523,
+ "step": 3400
+ },
+ {
+ "epoch": 47.237658366098735,
+ "grad_norm": 0.23032112419605255,
+ "learning_rate": 0.0006,
+ "loss": 3.620483875274658,
+ "step": 3401
+ },
+ {
+ "epoch": 47.25163826998689,
+ "grad_norm": 0.23124775290489197,
+ "learning_rate": 0.0006,
+ "loss": 3.6032004356384277,
+ "step": 3402
+ },
+ {
+ "epoch": 47.265618173875055,
+ "grad_norm": 0.21960225701332092,
+ "learning_rate": 0.0006,
+ "loss": 3.6079649925231934,
+ "step": 3403
+ },
+ {
+ "epoch": 47.27959807776322,
+ "grad_norm": 0.236652672290802,
+ "learning_rate": 0.0006,
+ "loss": 3.582645893096924,
+ "step": 3404
+ },
+ {
+ "epoch": 47.293577981651374,
+ "grad_norm": 0.2600267231464386,
+ "learning_rate": 0.0006,
+ "loss": 3.6067757606506348,
+ "step": 3405
+ },
+ {
+ "epoch": 47.30755788553954,
+ "grad_norm": 0.2337152659893036,
+ "learning_rate": 0.0006,
+ "loss": 3.5912275314331055,
+ "step": 3406
+ },
+ {
+ "epoch": 47.3215377894277,
+ "grad_norm": 0.21887873113155365,
+ "learning_rate": 0.0006,
+ "loss": 3.6008896827697754,
+ "step": 3407
+ },
+ {
+ "epoch": 47.33551769331586,
+ "grad_norm": 0.20265911519527435,
+ "learning_rate": 0.0006,
+ "loss": 3.5820152759552,
+ "step": 3408
+ },
+ {
+ "epoch": 47.34949759720402,
+ "grad_norm": 0.2005501389503479,
+ "learning_rate": 0.0006,
+ "loss": 3.604556083679199,
+ "step": 3409
+ },
+ {
+ "epoch": 47.36347750109218,
+ "grad_norm": 0.20682275295257568,
+ "learning_rate": 0.0006,
+ "loss": 3.584531307220459,
+ "step": 3410
+ },
+ {
+ "epoch": 47.37745740498034,
+ "grad_norm": 0.23283354938030243,
+ "learning_rate": 0.0006,
+ "loss": 3.59186053276062,
+ "step": 3411
+ },
+ {
+ "epoch": 47.391437308868504,
+ "grad_norm": 0.23033356666564941,
+ "learning_rate": 0.0006,
+ "loss": 3.5944037437438965,
+ "step": 3412
+ },
+ {
+ "epoch": 47.40541721275666,
+ "grad_norm": 0.21714402735233307,
+ "learning_rate": 0.0006,
+ "loss": 3.5834851264953613,
+ "step": 3413
+ },
+ {
+ "epoch": 47.419397116644824,
+ "grad_norm": 0.2138672024011612,
+ "learning_rate": 0.0006,
+ "loss": 3.6313700675964355,
+ "step": 3414
+ },
+ {
+ "epoch": 47.43337702053299,
+ "grad_norm": 0.23200160264968872,
+ "learning_rate": 0.0006,
+ "loss": 3.6112399101257324,
+ "step": 3415
+ },
+ {
+ "epoch": 47.44735692442114,
+ "grad_norm": 0.2632092833518982,
+ "learning_rate": 0.0006,
+ "loss": 3.6099038124084473,
+ "step": 3416
+ },
+ {
+ "epoch": 47.46133682830931,
+ "grad_norm": 0.23115520179271698,
+ "learning_rate": 0.0006,
+ "loss": 3.6060497760772705,
+ "step": 3417
+ },
+ {
+ "epoch": 47.47531673219746,
+ "grad_norm": 0.2596223056316376,
+ "learning_rate": 0.0006,
+ "loss": 3.5749685764312744,
+ "step": 3418
+ },
+ {
+ "epoch": 47.489296636085626,
+ "grad_norm": 0.27893415093421936,
+ "learning_rate": 0.0006,
+ "loss": 3.584045886993408,
+ "step": 3419
+ },
+ {
+ "epoch": 47.50327653997379,
+ "grad_norm": 0.23112469911575317,
+ "learning_rate": 0.0006,
+ "loss": 3.595407485961914,
+ "step": 3420
+ },
+ {
+ "epoch": 47.517256443861946,
+ "grad_norm": 0.23562486469745636,
+ "learning_rate": 0.0006,
+ "loss": 3.5657241344451904,
+ "step": 3421
+ },
+ {
+ "epoch": 47.53123634775011,
+ "grad_norm": 0.23366105556488037,
+ "learning_rate": 0.0006,
+ "loss": 3.624885082244873,
+ "step": 3422
+ },
+ {
+ "epoch": 47.54521625163827,
+ "grad_norm": 0.24383248388767242,
+ "learning_rate": 0.0006,
+ "loss": 3.638352394104004,
+ "step": 3423
+ },
+ {
+ "epoch": 47.55919615552643,
+ "grad_norm": 0.26388120651245117,
+ "learning_rate": 0.0006,
+ "loss": 3.614579200744629,
+ "step": 3424
+ },
+ {
+ "epoch": 47.57317605941459,
+ "grad_norm": 0.23676545917987823,
+ "learning_rate": 0.0006,
+ "loss": 3.609004259109497,
+ "step": 3425
+ },
+ {
+ "epoch": 47.58715596330275,
+ "grad_norm": 0.227967768907547,
+ "learning_rate": 0.0006,
+ "loss": 3.626171827316284,
+ "step": 3426
+ },
+ {
+ "epoch": 47.60113586719091,
+ "grad_norm": 0.23786529898643494,
+ "learning_rate": 0.0006,
+ "loss": 3.6205172538757324,
+ "step": 3427
+ },
+ {
+ "epoch": 47.615115771079076,
+ "grad_norm": 0.2599100172519684,
+ "learning_rate": 0.0006,
+ "loss": 3.6178271770477295,
+ "step": 3428
+ },
+ {
+ "epoch": 47.62909567496723,
+ "grad_norm": 0.2591858208179474,
+ "learning_rate": 0.0006,
+ "loss": 3.600297451019287,
+ "step": 3429
+ },
+ {
+ "epoch": 47.643075578855395,
+ "grad_norm": 0.2234215885400772,
+ "learning_rate": 0.0006,
+ "loss": 3.623141288757324,
+ "step": 3430
+ },
+ {
+ "epoch": 47.65705548274356,
+ "grad_norm": 0.23395098745822906,
+ "learning_rate": 0.0006,
+ "loss": 3.6243159770965576,
+ "step": 3431
+ },
+ {
+ "epoch": 47.671035386631715,
+ "grad_norm": 0.25706854462623596,
+ "learning_rate": 0.0006,
+ "loss": 3.5933618545532227,
+ "step": 3432
+ },
+ {
+ "epoch": 47.68501529051988,
+ "grad_norm": 0.22468037903308868,
+ "learning_rate": 0.0006,
+ "loss": 3.6048693656921387,
+ "step": 3433
+ },
+ {
+ "epoch": 47.69899519440804,
+ "grad_norm": 0.22432644665241241,
+ "learning_rate": 0.0006,
+ "loss": 3.604891777038574,
+ "step": 3434
+ },
+ {
+ "epoch": 47.7129750982962,
+ "grad_norm": 0.2278960943222046,
+ "learning_rate": 0.0006,
+ "loss": 3.610567092895508,
+ "step": 3435
+ },
+ {
+ "epoch": 47.72695500218436,
+ "grad_norm": 0.20652735233306885,
+ "learning_rate": 0.0006,
+ "loss": 3.60245418548584,
+ "step": 3436
+ },
+ {
+ "epoch": 47.74093490607252,
+ "grad_norm": 0.2141297310590744,
+ "learning_rate": 0.0006,
+ "loss": 3.5712027549743652,
+ "step": 3437
+ },
+ {
+ "epoch": 47.75491480996068,
+ "grad_norm": 0.23282566666603088,
+ "learning_rate": 0.0006,
+ "loss": 3.573568820953369,
+ "step": 3438
+ },
+ {
+ "epoch": 47.768894713848844,
+ "grad_norm": 0.21718674898147583,
+ "learning_rate": 0.0006,
+ "loss": 3.602047920227051,
+ "step": 3439
+ },
+ {
+ "epoch": 47.782874617737,
+ "grad_norm": 0.19592095911502838,
+ "learning_rate": 0.0006,
+ "loss": 3.6046957969665527,
+ "step": 3440
+ },
+ {
+ "epoch": 47.796854521625164,
+ "grad_norm": 0.21548260748386383,
+ "learning_rate": 0.0006,
+ "loss": 3.5808444023132324,
+ "step": 3441
+ },
+ {
+ "epoch": 47.81083442551333,
+ "grad_norm": 0.21945662796497345,
+ "learning_rate": 0.0006,
+ "loss": 3.6044554710388184,
+ "step": 3442
+ },
+ {
+ "epoch": 47.824814329401484,
+ "grad_norm": 0.20777440071105957,
+ "learning_rate": 0.0006,
+ "loss": 3.5991361141204834,
+ "step": 3443
+ },
+ {
+ "epoch": 47.83879423328965,
+ "grad_norm": 0.21566642820835114,
+ "learning_rate": 0.0006,
+ "loss": 3.6272850036621094,
+ "step": 3444
+ },
+ {
+ "epoch": 47.8527741371778,
+ "grad_norm": 0.22365771234035492,
+ "learning_rate": 0.0006,
+ "loss": 3.6323323249816895,
+ "step": 3445
+ },
+ {
+ "epoch": 47.86675404106597,
+ "grad_norm": 0.20193088054656982,
+ "learning_rate": 0.0006,
+ "loss": 3.5938191413879395,
+ "step": 3446
+ },
+ {
+ "epoch": 47.88073394495413,
+ "grad_norm": 0.20968061685562134,
+ "learning_rate": 0.0006,
+ "loss": 3.616640329360962,
+ "step": 3447
+ },
+ {
+ "epoch": 47.89471384884229,
+ "grad_norm": 0.20275580883026123,
+ "learning_rate": 0.0006,
+ "loss": 3.5769052505493164,
+ "step": 3448
+ },
+ {
+ "epoch": 47.90869375273045,
+ "grad_norm": 0.237605020403862,
+ "learning_rate": 0.0006,
+ "loss": 3.6221203804016113,
+ "step": 3449
+ },
+ {
+ "epoch": 47.92267365661861,
+ "grad_norm": 0.2820972502231598,
+ "learning_rate": 0.0006,
+ "loss": 3.5977487564086914,
+ "step": 3450
+ },
+ {
+ "epoch": 47.93665356050677,
+ "grad_norm": 0.23722891509532928,
+ "learning_rate": 0.0006,
+ "loss": 3.5963053703308105,
+ "step": 3451
+ },
+ {
+ "epoch": 47.95063346439493,
+ "grad_norm": 0.21471276879310608,
+ "learning_rate": 0.0006,
+ "loss": 3.6234917640686035,
+ "step": 3452
+ },
+ {
+ "epoch": 47.964613368283096,
+ "grad_norm": 0.2139028012752533,
+ "learning_rate": 0.0006,
+ "loss": 3.640500545501709,
+ "step": 3453
+ },
+ {
+ "epoch": 47.97859327217125,
+ "grad_norm": 0.1966913342475891,
+ "learning_rate": 0.0006,
+ "loss": 3.5856776237487793,
+ "step": 3454
+ },
+ {
+ "epoch": 47.992573176059416,
+ "grad_norm": 0.2375730276107788,
+ "learning_rate": 0.0006,
+ "loss": 3.6126937866210938,
+ "step": 3455
+ },
+ {
+ "epoch": 48.0,
+ "grad_norm": 0.2772855758666992,
+ "learning_rate": 0.0006,
+ "loss": 3.6041951179504395,
+ "step": 3456
+ },
+ {
+ "epoch": 48.0,
+ "eval_loss": 3.971400499343872,
+ "eval_runtime": 45.4792,
+ "eval_samples_per_second": 53.695,
+ "eval_steps_per_second": 3.364,
+ "step": 3456
+ },
+ {
+ "epoch": 48.01397990388816,
+ "grad_norm": 0.2269497811794281,
+ "learning_rate": 0.0006,
+ "loss": 3.525441884994507,
+ "step": 3457
+ },
+ {
+ "epoch": 48.02795980777632,
+ "grad_norm": 0.2080184519290924,
+ "learning_rate": 0.0006,
+ "loss": 3.5727145671844482,
+ "step": 3458
+ },
+ {
+ "epoch": 48.04193971166448,
+ "grad_norm": 0.21827049553394318,
+ "learning_rate": 0.0006,
+ "loss": 3.5799875259399414,
+ "step": 3459
+ },
+ {
+ "epoch": 48.05591961555265,
+ "grad_norm": 0.2173643410205841,
+ "learning_rate": 0.0006,
+ "loss": 3.587097406387329,
+ "step": 3460
+ },
+ {
+ "epoch": 48.0698995194408,
+ "grad_norm": 0.23125280439853668,
+ "learning_rate": 0.0006,
+ "loss": 3.593235969543457,
+ "step": 3461
+ },
+ {
+ "epoch": 48.083879423328966,
+ "grad_norm": 0.2235819697380066,
+ "learning_rate": 0.0006,
+ "loss": 3.5724973678588867,
+ "step": 3462
+ },
+ {
+ "epoch": 48.09785932721712,
+ "grad_norm": 0.2329849898815155,
+ "learning_rate": 0.0006,
+ "loss": 3.5689549446105957,
+ "step": 3463
+ },
+ {
+ "epoch": 48.111839231105286,
+ "grad_norm": 0.21178825199604034,
+ "learning_rate": 0.0006,
+ "loss": 3.5522305965423584,
+ "step": 3464
+ },
+ {
+ "epoch": 48.12581913499345,
+ "grad_norm": 0.22026701271533966,
+ "learning_rate": 0.0006,
+ "loss": 3.5622801780700684,
+ "step": 3465
+ },
+ {
+ "epoch": 48.139799038881605,
+ "grad_norm": 0.23427478969097137,
+ "learning_rate": 0.0006,
+ "loss": 3.6076972484588623,
+ "step": 3466
+ },
+ {
+ "epoch": 48.15377894276977,
+ "grad_norm": 0.22437651455402374,
+ "learning_rate": 0.0006,
+ "loss": 3.5898380279541016,
+ "step": 3467
+ },
+ {
+ "epoch": 48.16775884665793,
+ "grad_norm": 0.22911588847637177,
+ "learning_rate": 0.0006,
+ "loss": 3.584866523742676,
+ "step": 3468
+ },
+ {
+ "epoch": 48.18173875054609,
+ "grad_norm": 0.21358130872249603,
+ "learning_rate": 0.0006,
+ "loss": 3.581397533416748,
+ "step": 3469
+ },
+ {
+ "epoch": 48.19571865443425,
+ "grad_norm": 0.2102762758731842,
+ "learning_rate": 0.0006,
+ "loss": 3.6218419075012207,
+ "step": 3470
+ },
+ {
+ "epoch": 48.20969855832241,
+ "grad_norm": 0.22417177259922028,
+ "learning_rate": 0.0006,
+ "loss": 3.5875539779663086,
+ "step": 3471
+ },
+ {
+ "epoch": 48.22367846221057,
+ "grad_norm": 0.2096744030714035,
+ "learning_rate": 0.0006,
+ "loss": 3.6017215251922607,
+ "step": 3472
+ },
+ {
+ "epoch": 48.237658366098735,
+ "grad_norm": 0.18693844974040985,
+ "learning_rate": 0.0006,
+ "loss": 3.590221405029297,
+ "step": 3473
+ },
+ {
+ "epoch": 48.25163826998689,
+ "grad_norm": 0.21102994680404663,
+ "learning_rate": 0.0006,
+ "loss": 3.5685019493103027,
+ "step": 3474
+ },
+ {
+ "epoch": 48.265618173875055,
+ "grad_norm": 0.20756356418132782,
+ "learning_rate": 0.0006,
+ "loss": 3.577427387237549,
+ "step": 3475
+ },
+ {
+ "epoch": 48.27959807776322,
+ "grad_norm": 0.20425064861774445,
+ "learning_rate": 0.0006,
+ "loss": 3.602522134780884,
+ "step": 3476
+ },
+ {
+ "epoch": 48.293577981651374,
+ "grad_norm": 0.1976020187139511,
+ "learning_rate": 0.0006,
+ "loss": 3.5847134590148926,
+ "step": 3477
+ },
+ {
+ "epoch": 48.30755788553954,
+ "grad_norm": 0.19685129821300507,
+ "learning_rate": 0.0006,
+ "loss": 3.5638442039489746,
+ "step": 3478
+ },
+ {
+ "epoch": 48.3215377894277,
+ "grad_norm": 0.19657646119594574,
+ "learning_rate": 0.0006,
+ "loss": 3.5669779777526855,
+ "step": 3479
+ },
+ {
+ "epoch": 48.33551769331586,
+ "grad_norm": 0.19855819642543793,
+ "learning_rate": 0.0006,
+ "loss": 3.5712571144104004,
+ "step": 3480
+ },
+ {
+ "epoch": 48.34949759720402,
+ "grad_norm": 0.19961503148078918,
+ "learning_rate": 0.0006,
+ "loss": 3.5869312286376953,
+ "step": 3481
+ },
+ {
+ "epoch": 48.36347750109218,
+ "grad_norm": 0.19302639365196228,
+ "learning_rate": 0.0006,
+ "loss": 3.571394920349121,
+ "step": 3482
+ },
+ {
+ "epoch": 48.37745740498034,
+ "grad_norm": 0.1953866183757782,
+ "learning_rate": 0.0006,
+ "loss": 3.556633234024048,
+ "step": 3483
+ },
+ {
+ "epoch": 48.391437308868504,
+ "grad_norm": 0.20028206706047058,
+ "learning_rate": 0.0006,
+ "loss": 3.5559535026550293,
+ "step": 3484
+ },
+ {
+ "epoch": 48.40541721275666,
+ "grad_norm": 0.2286558896303177,
+ "learning_rate": 0.0006,
+ "loss": 3.6052510738372803,
+ "step": 3485
+ },
+ {
+ "epoch": 48.419397116644824,
+ "grad_norm": 0.21764399111270905,
+ "learning_rate": 0.0006,
+ "loss": 3.5955848693847656,
+ "step": 3486
+ },
+ {
+ "epoch": 48.43337702053299,
+ "grad_norm": 0.2257501780986786,
+ "learning_rate": 0.0006,
+ "loss": 3.586179256439209,
+ "step": 3487
+ },
+ {
+ "epoch": 48.44735692442114,
+ "grad_norm": 0.23023653030395508,
+ "learning_rate": 0.0006,
+ "loss": 3.593329906463623,
+ "step": 3488
+ },
+ {
+ "epoch": 48.46133682830931,
+ "grad_norm": 0.21283918619155884,
+ "learning_rate": 0.0006,
+ "loss": 3.5909814834594727,
+ "step": 3489
+ },
+ {
+ "epoch": 48.47531673219746,
+ "grad_norm": 0.2143639773130417,
+ "learning_rate": 0.0006,
+ "loss": 3.61320161819458,
+ "step": 3490
+ },
+ {
+ "epoch": 48.489296636085626,
+ "grad_norm": 0.2138844132423401,
+ "learning_rate": 0.0006,
+ "loss": 3.556607246398926,
+ "step": 3491
+ },
+ {
+ "epoch": 48.50327653997379,
+ "grad_norm": 0.22122617065906525,
+ "learning_rate": 0.0006,
+ "loss": 3.629208564758301,
+ "step": 3492
+ },
+ {
+ "epoch": 48.517256443861946,
+ "grad_norm": 0.22430218756198883,
+ "learning_rate": 0.0006,
+ "loss": 3.61891508102417,
+ "step": 3493
+ },
+ {
+ "epoch": 48.53123634775011,
+ "grad_norm": 0.23830844461917877,
+ "learning_rate": 0.0006,
+ "loss": 3.5818424224853516,
+ "step": 3494
+ },
+ {
+ "epoch": 48.54521625163827,
+ "grad_norm": 0.23596757650375366,
+ "learning_rate": 0.0006,
+ "loss": 3.609959602355957,
+ "step": 3495
+ },
+ {
+ "epoch": 48.55919615552643,
+ "grad_norm": 0.22046151757240295,
+ "learning_rate": 0.0006,
+ "loss": 3.585991382598877,
+ "step": 3496
+ },
+ {
+ "epoch": 48.57317605941459,
+ "grad_norm": 0.22838662564754486,
+ "learning_rate": 0.0006,
+ "loss": 3.6047747135162354,
+ "step": 3497
+ },
+ {
+ "epoch": 48.58715596330275,
+ "grad_norm": 0.22605256736278534,
+ "learning_rate": 0.0006,
+ "loss": 3.584585428237915,
+ "step": 3498
+ },
+ {
+ "epoch": 48.60113586719091,
+ "grad_norm": 0.22761467099189758,
+ "learning_rate": 0.0006,
+ "loss": 3.5680465698242188,
+ "step": 3499
+ },
+ {
+ "epoch": 48.615115771079076,
+ "grad_norm": 0.20537005364894867,
+ "learning_rate": 0.0006,
+ "loss": 3.5822806358337402,
+ "step": 3500
+ },
+ {
+ "epoch": 48.62909567496723,
+ "grad_norm": 0.21871088445186615,
+ "learning_rate": 0.0006,
+ "loss": 3.5643906593322754,
+ "step": 3501
+ },
+ {
+ "epoch": 48.643075578855395,
+ "grad_norm": 0.2291785329580307,
+ "learning_rate": 0.0006,
+ "loss": 3.6313328742980957,
+ "step": 3502
+ },
+ {
+ "epoch": 48.65705548274356,
+ "grad_norm": 0.2437039464712143,
+ "learning_rate": 0.0006,
+ "loss": 3.588334083557129,
+ "step": 3503
+ },
+ {
+ "epoch": 48.671035386631715,
+ "grad_norm": 0.23070715367794037,
+ "learning_rate": 0.0006,
+ "loss": 3.611356258392334,
+ "step": 3504
+ },
+ {
+ "epoch": 48.68501529051988,
+ "grad_norm": 0.23983895778656006,
+ "learning_rate": 0.0006,
+ "loss": 3.5953967571258545,
+ "step": 3505
+ },
+ {
+ "epoch": 48.69899519440804,
+ "grad_norm": 0.2283167690038681,
+ "learning_rate": 0.0006,
+ "loss": 3.605307102203369,
+ "step": 3506
+ },
+ {
+ "epoch": 48.7129750982962,
+ "grad_norm": 0.20861059427261353,
+ "learning_rate": 0.0006,
+ "loss": 3.598266363143921,
+ "step": 3507
+ },
+ {
+ "epoch": 48.72695500218436,
+ "grad_norm": 0.20209547877311707,
+ "learning_rate": 0.0006,
+ "loss": 3.6022191047668457,
+ "step": 3508
+ },
+ {
+ "epoch": 48.74093490607252,
+ "grad_norm": 0.19089370965957642,
+ "learning_rate": 0.0006,
+ "loss": 3.628640651702881,
+ "step": 3509
+ },
+ {
+ "epoch": 48.75491480996068,
+ "grad_norm": 0.18544727563858032,
+ "learning_rate": 0.0006,
+ "loss": 3.6204819679260254,
+ "step": 3510
+ },
+ {
+ "epoch": 48.768894713848844,
+ "grad_norm": 0.18295186758041382,
+ "learning_rate": 0.0006,
+ "loss": 3.5899410247802734,
+ "step": 3511
+ },
+ {
+ "epoch": 48.782874617737,
+ "grad_norm": 0.1953844279050827,
+ "learning_rate": 0.0006,
+ "loss": 3.581699848175049,
+ "step": 3512
+ },
+ {
+ "epoch": 48.796854521625164,
+ "grad_norm": 0.195505291223526,
+ "learning_rate": 0.0006,
+ "loss": 3.6046862602233887,
+ "step": 3513
+ },
+ {
+ "epoch": 48.81083442551333,
+ "grad_norm": 0.19805945456027985,
+ "learning_rate": 0.0006,
+ "loss": 3.609510898590088,
+ "step": 3514
+ },
+ {
+ "epoch": 48.824814329401484,
+ "grad_norm": 0.18694287538528442,
+ "learning_rate": 0.0006,
+ "loss": 3.580693483352661,
+ "step": 3515
+ },
+ {
+ "epoch": 48.83879423328965,
+ "grad_norm": 0.19227269291877747,
+ "learning_rate": 0.0006,
+ "loss": 3.6174416542053223,
+ "step": 3516
+ },
+ {
+ "epoch": 48.8527741371778,
+ "grad_norm": 0.1966937631368637,
+ "learning_rate": 0.0006,
+ "loss": 3.616194248199463,
+ "step": 3517
+ },
+ {
+ "epoch": 48.86675404106597,
+ "grad_norm": 0.20755162835121155,
+ "learning_rate": 0.0006,
+ "loss": 3.594695568084717,
+ "step": 3518
+ },
+ {
+ "epoch": 48.88073394495413,
+ "grad_norm": 0.2012479156255722,
+ "learning_rate": 0.0006,
+ "loss": 3.6069273948669434,
+ "step": 3519
+ },
+ {
+ "epoch": 48.89471384884229,
+ "grad_norm": 0.19260065257549286,
+ "learning_rate": 0.0006,
+ "loss": 3.573819160461426,
+ "step": 3520
+ },
+ {
+ "epoch": 48.90869375273045,
+ "grad_norm": 0.19911104440689087,
+ "learning_rate": 0.0006,
+ "loss": 3.632185459136963,
+ "step": 3521
+ },
+ {
+ "epoch": 48.92267365661861,
+ "grad_norm": 0.22266048192977905,
+ "learning_rate": 0.0006,
+ "loss": 3.607295513153076,
+ "step": 3522
+ },
+ {
+ "epoch": 48.93665356050677,
+ "grad_norm": 0.2542882561683655,
+ "learning_rate": 0.0006,
+ "loss": 3.6014773845672607,
+ "step": 3523
+ },
+ {
+ "epoch": 48.95063346439493,
+ "grad_norm": 0.2878575026988983,
+ "learning_rate": 0.0006,
+ "loss": 3.5825531482696533,
+ "step": 3524
+ },
+ {
+ "epoch": 48.964613368283096,
+ "grad_norm": 0.3157055675983429,
+ "learning_rate": 0.0006,
+ "loss": 3.5986037254333496,
+ "step": 3525
+ },
+ {
+ "epoch": 48.97859327217125,
+ "grad_norm": 0.2815262973308563,
+ "learning_rate": 0.0006,
+ "loss": 3.6099600791931152,
+ "step": 3526
+ },
+ {
+ "epoch": 48.992573176059416,
+ "grad_norm": 0.22102823853492737,
+ "learning_rate": 0.0006,
+ "loss": 3.5859827995300293,
+ "step": 3527
+ },
+ {
+ "epoch": 49.0,
+ "grad_norm": 0.24937094748020172,
+ "learning_rate": 0.0006,
+ "loss": 3.622842311859131,
+ "step": 3528
+ },
+ {
+ "epoch": 49.0,
+ "eval_loss": 3.977067232131958,
+ "eval_runtime": 45.5503,
+ "eval_samples_per_second": 53.611,
+ "eval_steps_per_second": 3.359,
+ "step": 3528
+ },
+ {
+ "epoch": 49.01397990388816,
+ "grad_norm": 0.25072216987609863,
+ "learning_rate": 0.0006,
+ "loss": 3.590653419494629,
+ "step": 3529
+ },
+ {
+ "epoch": 49.02795980777632,
+ "grad_norm": 0.2611052989959717,
+ "learning_rate": 0.0006,
+ "loss": 3.5504279136657715,
+ "step": 3530
+ },
+ {
+ "epoch": 49.04193971166448,
+ "grad_norm": 0.2547961473464966,
+ "learning_rate": 0.0006,
+ "loss": 3.5797581672668457,
+ "step": 3531
+ },
+ {
+ "epoch": 49.05591961555265,
+ "grad_norm": 0.25674310326576233,
+ "learning_rate": 0.0006,
+ "loss": 3.557278871536255,
+ "step": 3532
+ },
+ {
+ "epoch": 49.0698995194408,
+ "grad_norm": 0.25511929392814636,
+ "learning_rate": 0.0006,
+ "loss": 3.5788025856018066,
+ "step": 3533
+ },
+ {
+ "epoch": 49.083879423328966,
+ "grad_norm": 0.22920994460582733,
+ "learning_rate": 0.0006,
+ "loss": 3.580489158630371,
+ "step": 3534
+ },
+ {
+ "epoch": 49.09785932721712,
+ "grad_norm": 0.23436492681503296,
+ "learning_rate": 0.0006,
+ "loss": 3.5603699684143066,
+ "step": 3535
+ },
+ {
+ "epoch": 49.111839231105286,
+ "grad_norm": 0.2542382776737213,
+ "learning_rate": 0.0006,
+ "loss": 3.5937037467956543,
+ "step": 3536
+ },
+ {
+ "epoch": 49.12581913499345,
+ "grad_norm": 0.26718273758888245,
+ "learning_rate": 0.0006,
+ "loss": 3.6032168865203857,
+ "step": 3537
+ },
+ {
+ "epoch": 49.139799038881605,
+ "grad_norm": 0.2406773865222931,
+ "learning_rate": 0.0006,
+ "loss": 3.5737085342407227,
+ "step": 3538
+ },
+ {
+ "epoch": 49.15377894276977,
+ "grad_norm": 0.23408754169940948,
+ "learning_rate": 0.0006,
+ "loss": 3.592543601989746,
+ "step": 3539
+ },
+ {
+ "epoch": 49.16775884665793,
+ "grad_norm": 0.22974351048469543,
+ "learning_rate": 0.0006,
+ "loss": 3.543618679046631,
+ "step": 3540
+ },
+ {
+ "epoch": 49.18173875054609,
+ "grad_norm": 0.23479530215263367,
+ "learning_rate": 0.0006,
+ "loss": 3.547590732574463,
+ "step": 3541
+ },
+ {
+ "epoch": 49.19571865443425,
+ "grad_norm": 0.2100638598203659,
+ "learning_rate": 0.0006,
+ "loss": 3.6027469635009766,
+ "step": 3542
+ },
+ {
+ "epoch": 49.20969855832241,
+ "grad_norm": 0.20239035785198212,
+ "learning_rate": 0.0006,
+ "loss": 3.598567008972168,
+ "step": 3543
+ },
+ {
+ "epoch": 49.22367846221057,
+ "grad_norm": 0.20480065047740936,
+ "learning_rate": 0.0006,
+ "loss": 3.591038227081299,
+ "step": 3544
+ },
+ {
+ "epoch": 49.237658366098735,
+ "grad_norm": 0.20439887046813965,
+ "learning_rate": 0.0006,
+ "loss": 3.555039405822754,
+ "step": 3545
+ },
+ {
+ "epoch": 49.25163826998689,
+ "grad_norm": 0.21245788037776947,
+ "learning_rate": 0.0006,
+ "loss": 3.5772666931152344,
+ "step": 3546
+ },
+ {
+ "epoch": 49.265618173875055,
+ "grad_norm": 0.1993357390165329,
+ "learning_rate": 0.0006,
+ "loss": 3.5847411155700684,
+ "step": 3547
+ },
+ {
+ "epoch": 49.27959807776322,
+ "grad_norm": 0.22550229728221893,
+ "learning_rate": 0.0006,
+ "loss": 3.5679750442504883,
+ "step": 3548
+ },
+ {
+ "epoch": 49.293577981651374,
+ "grad_norm": 0.2383355349302292,
+ "learning_rate": 0.0006,
+ "loss": 3.57085919380188,
+ "step": 3549
+ },
+ {
+ "epoch": 49.30755788553954,
+ "grad_norm": 0.23968911170959473,
+ "learning_rate": 0.0006,
+ "loss": 3.557415246963501,
+ "step": 3550
+ },
+ {
+ "epoch": 49.3215377894277,
+ "grad_norm": 0.21453262865543365,
+ "learning_rate": 0.0006,
+ "loss": 3.5763611793518066,
+ "step": 3551
+ },
+ {
+ "epoch": 49.33551769331586,
+ "grad_norm": 0.20380273461341858,
+ "learning_rate": 0.0006,
+ "loss": 3.552011013031006,
+ "step": 3552
+ },
+ {
+ "epoch": 49.34949759720402,
+ "grad_norm": 0.19719970226287842,
+ "learning_rate": 0.0006,
+ "loss": 3.5719075202941895,
+ "step": 3553
+ },
+ {
+ "epoch": 49.36347750109218,
+ "grad_norm": 0.19018089771270752,
+ "learning_rate": 0.0006,
+ "loss": 3.5843467712402344,
+ "step": 3554
+ },
+ {
+ "epoch": 49.37745740498034,
+ "grad_norm": 0.18369099497795105,
+ "learning_rate": 0.0006,
+ "loss": 3.561741352081299,
+ "step": 3555
+ },
+ {
+ "epoch": 49.391437308868504,
+ "grad_norm": 0.2070280760526657,
+ "learning_rate": 0.0006,
+ "loss": 3.590721607208252,
+ "step": 3556
+ },
+ {
+ "epoch": 49.40541721275666,
+ "grad_norm": 0.23287905752658844,
+ "learning_rate": 0.0006,
+ "loss": 3.617081642150879,
+ "step": 3557
+ },
+ {
+ "epoch": 49.419397116644824,
+ "grad_norm": 0.21877793967723846,
+ "learning_rate": 0.0006,
+ "loss": 3.547166347503662,
+ "step": 3558
+ },
+ {
+ "epoch": 49.43337702053299,
+ "grad_norm": 0.21105137467384338,
+ "learning_rate": 0.0006,
+ "loss": 3.593552350997925,
+ "step": 3559
+ },
+ {
+ "epoch": 49.44735692442114,
+ "grad_norm": 0.24940872192382812,
+ "learning_rate": 0.0006,
+ "loss": 3.599729537963867,
+ "step": 3560
+ },
+ {
+ "epoch": 49.46133682830931,
+ "grad_norm": 0.26952996850013733,
+ "learning_rate": 0.0006,
+ "loss": 3.5915074348449707,
+ "step": 3561
+ },
+ {
+ "epoch": 49.47531673219746,
+ "grad_norm": 0.25706353783607483,
+ "learning_rate": 0.0006,
+ "loss": 3.587472915649414,
+ "step": 3562
+ },
+ {
+ "epoch": 49.489296636085626,
+ "grad_norm": 0.23666661977767944,
+ "learning_rate": 0.0006,
+ "loss": 3.561340808868408,
+ "step": 3563
+ },
+ {
+ "epoch": 49.50327653997379,
+ "grad_norm": 0.22524063289165497,
+ "learning_rate": 0.0006,
+ "loss": 3.587310314178467,
+ "step": 3564
+ },
+ {
+ "epoch": 49.517256443861946,
+ "grad_norm": 0.22991003096103668,
+ "learning_rate": 0.0006,
+ "loss": 3.56671142578125,
+ "step": 3565
+ },
+ {
+ "epoch": 49.53123634775011,
+ "grad_norm": 0.23067602515220642,
+ "learning_rate": 0.0006,
+ "loss": 3.578601837158203,
+ "step": 3566
+ },
+ {
+ "epoch": 49.54521625163827,
+ "grad_norm": 0.2133914828300476,
+ "learning_rate": 0.0006,
+ "loss": 3.593726873397827,
+ "step": 3567
+ },
+ {
+ "epoch": 49.55919615552643,
+ "grad_norm": 0.21879160404205322,
+ "learning_rate": 0.0006,
+ "loss": 3.5833992958068848,
+ "step": 3568
+ },
+ {
+ "epoch": 49.57317605941459,
+ "grad_norm": 0.2116270661354065,
+ "learning_rate": 0.0006,
+ "loss": 3.575761079788208,
+ "step": 3569
+ },
+ {
+ "epoch": 49.58715596330275,
+ "grad_norm": 0.19506660103797913,
+ "learning_rate": 0.0006,
+ "loss": 3.5600461959838867,
+ "step": 3570
+ },
+ {
+ "epoch": 49.60113586719091,
+ "grad_norm": 0.21305067837238312,
+ "learning_rate": 0.0006,
+ "loss": 3.5717577934265137,
+ "step": 3571
+ },
+ {
+ "epoch": 49.615115771079076,
+ "grad_norm": 0.21184347569942474,
+ "learning_rate": 0.0006,
+ "loss": 3.608819007873535,
+ "step": 3572
+ },
+ {
+ "epoch": 49.62909567496723,
+ "grad_norm": 0.22302201390266418,
+ "learning_rate": 0.0006,
+ "loss": 3.5871644020080566,
+ "step": 3573
+ },
+ {
+ "epoch": 49.643075578855395,
+ "grad_norm": 0.21942365169525146,
+ "learning_rate": 0.0006,
+ "loss": 3.596029043197632,
+ "step": 3574
+ },
+ {
+ "epoch": 49.65705548274356,
+ "grad_norm": 0.2627110481262207,
+ "learning_rate": 0.0006,
+ "loss": 3.5900766849517822,
+ "step": 3575
+ },
+ {
+ "epoch": 49.671035386631715,
+ "grad_norm": 0.28253448009490967,
+ "learning_rate": 0.0006,
+ "loss": 3.599386215209961,
+ "step": 3576
+ },
+ {
+ "epoch": 49.68501529051988,
+ "grad_norm": 0.24279426038265228,
+ "learning_rate": 0.0006,
+ "loss": 3.580909013748169,
+ "step": 3577
+ },
+ {
+ "epoch": 49.69899519440804,
+ "grad_norm": 0.22092898190021515,
+ "learning_rate": 0.0006,
+ "loss": 3.6043782234191895,
+ "step": 3578
+ },
+ {
+ "epoch": 49.7129750982962,
+ "grad_norm": 0.23356051743030548,
+ "learning_rate": 0.0006,
+ "loss": 3.6103105545043945,
+ "step": 3579
+ },
+ {
+ "epoch": 49.72695500218436,
+ "grad_norm": 0.24508118629455566,
+ "learning_rate": 0.0006,
+ "loss": 3.612980365753174,
+ "step": 3580
+ },
+ {
+ "epoch": 49.74093490607252,
+ "grad_norm": 0.2501833438873291,
+ "learning_rate": 0.0006,
+ "loss": 3.6111063957214355,
+ "step": 3581
+ },
+ {
+ "epoch": 49.75491480996068,
+ "grad_norm": 0.2263427972793579,
+ "learning_rate": 0.0006,
+ "loss": 3.5709285736083984,
+ "step": 3582
+ },
+ {
+ "epoch": 49.768894713848844,
+ "grad_norm": 0.19881728291511536,
+ "learning_rate": 0.0006,
+ "loss": 3.5836503505706787,
+ "step": 3583
+ },
+ {
+ "epoch": 49.782874617737,
+ "grad_norm": 0.22516517341136932,
+ "learning_rate": 0.0006,
+ "loss": 3.5797667503356934,
+ "step": 3584
+ },
+ {
+ "epoch": 49.796854521625164,
+ "grad_norm": 0.22347061336040497,
+ "learning_rate": 0.0006,
+ "loss": 3.6245951652526855,
+ "step": 3585
+ },
+ {
+ "epoch": 49.81083442551333,
+ "grad_norm": 0.2062593549489975,
+ "learning_rate": 0.0006,
+ "loss": 3.607572317123413,
+ "step": 3586
+ },
+ {
+ "epoch": 49.824814329401484,
+ "grad_norm": 0.20671074092388153,
+ "learning_rate": 0.0006,
+ "loss": 3.5671472549438477,
+ "step": 3587
+ },
+ {
+ "epoch": 49.83879423328965,
+ "grad_norm": 0.19981902837753296,
+ "learning_rate": 0.0006,
+ "loss": 3.6084837913513184,
+ "step": 3588
+ },
+ {
+ "epoch": 49.8527741371778,
+ "grad_norm": 0.2004556804895401,
+ "learning_rate": 0.0006,
+ "loss": 3.631455898284912,
+ "step": 3589
+ },
+ {
+ "epoch": 49.86675404106597,
+ "grad_norm": 0.20990414917469025,
+ "learning_rate": 0.0006,
+ "loss": 3.6017699241638184,
+ "step": 3590
+ },
+ {
+ "epoch": 49.88073394495413,
+ "grad_norm": 0.19016146659851074,
+ "learning_rate": 0.0006,
+ "loss": 3.6110801696777344,
+ "step": 3591
+ },
+ {
+ "epoch": 49.89471384884229,
+ "grad_norm": 0.2015834003686905,
+ "learning_rate": 0.0006,
+ "loss": 3.58852481842041,
+ "step": 3592
+ },
+ {
+ "epoch": 49.90869375273045,
+ "grad_norm": 0.205678328871727,
+ "learning_rate": 0.0006,
+ "loss": 3.581789970397949,
+ "step": 3593
+ },
+ {
+ "epoch": 49.92267365661861,
+ "grad_norm": 0.20975211262702942,
+ "learning_rate": 0.0006,
+ "loss": 3.6126320362091064,
+ "step": 3594
+ },
+ {
+ "epoch": 49.93665356050677,
+ "grad_norm": 0.20510081946849823,
+ "learning_rate": 0.0006,
+ "loss": 3.5970656871795654,
+ "step": 3595
+ },
+ {
+ "epoch": 49.95063346439493,
+ "grad_norm": 0.19842886924743652,
+ "learning_rate": 0.0006,
+ "loss": 3.6055545806884766,
+ "step": 3596
+ },
+ {
+ "epoch": 49.964613368283096,
+ "grad_norm": 0.20551791787147522,
+ "learning_rate": 0.0006,
+ "loss": 3.5861949920654297,
+ "step": 3597
+ },
+ {
+ "epoch": 49.97859327217125,
+ "grad_norm": 0.21147456765174866,
+ "learning_rate": 0.0006,
+ "loss": 3.585934638977051,
+ "step": 3598
+ },
+ {
+ "epoch": 49.992573176059416,
+ "grad_norm": 0.21793442964553833,
+ "learning_rate": 0.0006,
+ "loss": 3.5956411361694336,
+ "step": 3599
+ },
+ {
+ "epoch": 50.0,
+ "grad_norm": 0.24623161554336548,
+ "learning_rate": 0.0006,
+ "loss": 3.623453140258789,
+ "step": 3600
+ },
+ {
+ "epoch": 50.0,
+ "eval_loss": 3.9807891845703125,
+ "eval_runtime": 45.7708,
+ "eval_samples_per_second": 53.353,
+ "eval_steps_per_second": 3.343,
+ "step": 3600
+ },
+ {
+ "epoch": 50.01397990388816,
+ "grad_norm": 0.22322626411914825,
+ "learning_rate": 0.0006,
+ "loss": 3.5475401878356934,
+ "step": 3601
+ },
+ {
+ "epoch": 50.02795980777632,
+ "grad_norm": 0.21957066655158997,
+ "learning_rate": 0.0006,
+ "loss": 3.5616683959960938,
+ "step": 3602
+ },
+ {
+ "epoch": 50.04193971166448,
+ "grad_norm": 0.22030551731586456,
+ "learning_rate": 0.0006,
+ "loss": 3.56367826461792,
+ "step": 3603
+ },
+ {
+ "epoch": 50.05591961555265,
+ "grad_norm": 0.21536092460155487,
+ "learning_rate": 0.0006,
+ "loss": 3.5613503456115723,
+ "step": 3604
+ },
+ {
+ "epoch": 50.0698995194408,
+ "grad_norm": 0.22454269230365753,
+ "learning_rate": 0.0006,
+ "loss": 3.5348987579345703,
+ "step": 3605
+ },
+ {
+ "epoch": 50.083879423328966,
+ "grad_norm": 0.2281617820262909,
+ "learning_rate": 0.0006,
+ "loss": 3.5722241401672363,
+ "step": 3606
+ },
+ {
+ "epoch": 50.09785932721712,
+ "grad_norm": 0.23318710923194885,
+ "learning_rate": 0.0006,
+ "loss": 3.559063673019409,
+ "step": 3607
+ },
+ {
+ "epoch": 50.111839231105286,
+ "grad_norm": 0.2277889847755432,
+ "learning_rate": 0.0006,
+ "loss": 3.5632925033569336,
+ "step": 3608
+ },
+ {
+ "epoch": 50.12581913499345,
+ "grad_norm": 0.2317705601453781,
+ "learning_rate": 0.0006,
+ "loss": 3.5835886001586914,
+ "step": 3609
+ },
+ {
+ "epoch": 50.139799038881605,
+ "grad_norm": 0.21388863027095795,
+ "learning_rate": 0.0006,
+ "loss": 3.5976145267486572,
+ "step": 3610
+ },
+ {
+ "epoch": 50.15377894276977,
+ "grad_norm": 0.2070954293012619,
+ "learning_rate": 0.0006,
+ "loss": 3.5486221313476562,
+ "step": 3611
+ },
+ {
+ "epoch": 50.16775884665793,
+ "grad_norm": 0.21602077782154083,
+ "learning_rate": 0.0006,
+ "loss": 3.5897607803344727,
+ "step": 3612
+ },
+ {
+ "epoch": 50.18173875054609,
+ "grad_norm": 0.21106162667274475,
+ "learning_rate": 0.0006,
+ "loss": 3.5587167739868164,
+ "step": 3613
+ },
+ {
+ "epoch": 50.19571865443425,
+ "grad_norm": 0.2047950178384781,
+ "learning_rate": 0.0006,
+ "loss": 3.576798915863037,
+ "step": 3614
+ },
+ {
+ "epoch": 50.20969855832241,
+ "grad_norm": 0.2204097956418991,
+ "learning_rate": 0.0006,
+ "loss": 3.5466837882995605,
+ "step": 3615
+ },
+ {
+ "epoch": 50.22367846221057,
+ "grad_norm": 0.2220875471830368,
+ "learning_rate": 0.0006,
+ "loss": 3.5722036361694336,
+ "step": 3616
+ },
+ {
+ "epoch": 50.237658366098735,
+ "grad_norm": 0.2250797003507614,
+ "learning_rate": 0.0006,
+ "loss": 3.566347122192383,
+ "step": 3617
+ },
+ {
+ "epoch": 50.25163826998689,
+ "grad_norm": 0.22837485373020172,
+ "learning_rate": 0.0006,
+ "loss": 3.5673274993896484,
+ "step": 3618
+ },
+ {
+ "epoch": 50.265618173875055,
+ "grad_norm": 0.2281104475259781,
+ "learning_rate": 0.0006,
+ "loss": 3.5543737411499023,
+ "step": 3619
+ },
+ {
+ "epoch": 50.27959807776322,
+ "grad_norm": 0.2052381932735443,
+ "learning_rate": 0.0006,
+ "loss": 3.566401958465576,
+ "step": 3620
+ },
+ {
+ "epoch": 50.293577981651374,
+ "grad_norm": 0.2125921994447708,
+ "learning_rate": 0.0006,
+ "loss": 3.5467424392700195,
+ "step": 3621
+ },
+ {
+ "epoch": 50.30755788553954,
+ "grad_norm": 0.22641244530677795,
+ "learning_rate": 0.0006,
+ "loss": 3.548497200012207,
+ "step": 3622
+ },
+ {
+ "epoch": 50.3215377894277,
+ "grad_norm": 0.23039482533931732,
+ "learning_rate": 0.0006,
+ "loss": 3.5948381423950195,
+ "step": 3623
+ },
+ {
+ "epoch": 50.33551769331586,
+ "grad_norm": 0.22753404080867767,
+ "learning_rate": 0.0006,
+ "loss": 3.541825532913208,
+ "step": 3624
+ },
+ {
+ "epoch": 50.34949759720402,
+ "grad_norm": 0.2528170347213745,
+ "learning_rate": 0.0006,
+ "loss": 3.5937235355377197,
+ "step": 3625
+ },
+ {
+ "epoch": 50.36347750109218,
+ "grad_norm": 0.25434595346450806,
+ "learning_rate": 0.0006,
+ "loss": 3.5779776573181152,
+ "step": 3626
+ },
+ {
+ "epoch": 50.37745740498034,
+ "grad_norm": 0.22519059479236603,
+ "learning_rate": 0.0006,
+ "loss": 3.5456271171569824,
+ "step": 3627
+ },
+ {
+ "epoch": 50.391437308868504,
+ "grad_norm": 0.2077232301235199,
+ "learning_rate": 0.0006,
+ "loss": 3.5693111419677734,
+ "step": 3628
+ },
+ {
+ "epoch": 50.40541721275666,
+ "grad_norm": 0.20925411581993103,
+ "learning_rate": 0.0006,
+ "loss": 3.6063997745513916,
+ "step": 3629
+ },
+ {
+ "epoch": 50.419397116644824,
+ "grad_norm": 0.2114555686712265,
+ "learning_rate": 0.0006,
+ "loss": 3.5676894187927246,
+ "step": 3630
+ },
+ {
+ "epoch": 50.43337702053299,
+ "grad_norm": 0.23759354650974274,
+ "learning_rate": 0.0006,
+ "loss": 3.5465126037597656,
+ "step": 3631
+ },
+ {
+ "epoch": 50.44735692442114,
+ "grad_norm": 0.23809516429901123,
+ "learning_rate": 0.0006,
+ "loss": 3.571600914001465,
+ "step": 3632
+ },
+ {
+ "epoch": 50.46133682830931,
+ "grad_norm": 0.20501303672790527,
+ "learning_rate": 0.0006,
+ "loss": 3.573550224304199,
+ "step": 3633
+ },
+ {
+ "epoch": 50.47531673219746,
+ "grad_norm": 0.21562306582927704,
+ "learning_rate": 0.0006,
+ "loss": 3.5625600814819336,
+ "step": 3634
+ },
+ {
+ "epoch": 50.489296636085626,
+ "grad_norm": 0.20469479262828827,
+ "learning_rate": 0.0006,
+ "loss": 3.5737175941467285,
+ "step": 3635
+ },
+ {
+ "epoch": 50.50327653997379,
+ "grad_norm": 0.2078634798526764,
+ "learning_rate": 0.0006,
+ "loss": 3.5691545009613037,
+ "step": 3636
+ },
+ {
+ "epoch": 50.517256443861946,
+ "grad_norm": 0.20340897142887115,
+ "learning_rate": 0.0006,
+ "loss": 3.583918571472168,
+ "step": 3637
+ },
+ {
+ "epoch": 50.53123634775011,
+ "grad_norm": 0.2006944715976715,
+ "learning_rate": 0.0006,
+ "loss": 3.596034049987793,
+ "step": 3638
+ },
+ {
+ "epoch": 50.54521625163827,
+ "grad_norm": 0.19281257688999176,
+ "learning_rate": 0.0006,
+ "loss": 3.5993080139160156,
+ "step": 3639
+ },
+ {
+ "epoch": 50.55919615552643,
+ "grad_norm": 0.19528807699680328,
+ "learning_rate": 0.0006,
+ "loss": 3.6108102798461914,
+ "step": 3640
+ },
+ {
+ "epoch": 50.57317605941459,
+ "grad_norm": 0.19329112768173218,
+ "learning_rate": 0.0006,
+ "loss": 3.5964512825012207,
+ "step": 3641
+ },
+ {
+ "epoch": 50.58715596330275,
+ "grad_norm": 0.1928209513425827,
+ "learning_rate": 0.0006,
+ "loss": 3.5927724838256836,
+ "step": 3642
+ },
+ {
+ "epoch": 50.60113586719091,
+ "grad_norm": 0.20212236046791077,
+ "learning_rate": 0.0006,
+ "loss": 3.5778708457946777,
+ "step": 3643
+ },
+ {
+ "epoch": 50.615115771079076,
+ "grad_norm": 0.22244620323181152,
+ "learning_rate": 0.0006,
+ "loss": 3.6219539642333984,
+ "step": 3644
+ },
+ {
+ "epoch": 50.62909567496723,
+ "grad_norm": 0.2659119963645935,
+ "learning_rate": 0.0006,
+ "loss": 3.578831195831299,
+ "step": 3645
+ },
+ {
+ "epoch": 50.643075578855395,
+ "grad_norm": 0.2837344706058502,
+ "learning_rate": 0.0006,
+ "loss": 3.587677240371704,
+ "step": 3646
+ },
+ {
+ "epoch": 50.65705548274356,
+ "grad_norm": 0.26747965812683105,
+ "learning_rate": 0.0006,
+ "loss": 3.611286163330078,
+ "step": 3647
+ },
+ {
+ "epoch": 50.671035386631715,
+ "grad_norm": 0.24604788422584534,
+ "learning_rate": 0.0006,
+ "loss": 3.5740575790405273,
+ "step": 3648
+ },
+ {
+ "epoch": 50.68501529051988,
+ "grad_norm": 0.2379457652568817,
+ "learning_rate": 0.0006,
+ "loss": 3.5997209548950195,
+ "step": 3649
+ },
+ {
+ "epoch": 50.69899519440804,
+ "grad_norm": 0.2296321839094162,
+ "learning_rate": 0.0006,
+ "loss": 3.5975162982940674,
+ "step": 3650
+ },
+ {
+ "epoch": 50.7129750982962,
+ "grad_norm": 0.22054627537727356,
+ "learning_rate": 0.0006,
+ "loss": 3.5821738243103027,
+ "step": 3651
+ },
+ {
+ "epoch": 50.72695500218436,
+ "grad_norm": 0.22114980220794678,
+ "learning_rate": 0.0006,
+ "loss": 3.5769970417022705,
+ "step": 3652
+ },
+ {
+ "epoch": 50.74093490607252,
+ "grad_norm": 0.21389314532279968,
+ "learning_rate": 0.0006,
+ "loss": 3.5952796936035156,
+ "step": 3653
+ },
+ {
+ "epoch": 50.75491480996068,
+ "grad_norm": 0.21069210767745972,
+ "learning_rate": 0.0006,
+ "loss": 3.5884671211242676,
+ "step": 3654
+ },
+ {
+ "epoch": 50.768894713848844,
+ "grad_norm": 0.22028805315494537,
+ "learning_rate": 0.0006,
+ "loss": 3.593442440032959,
+ "step": 3655
+ },
+ {
+ "epoch": 50.782874617737,
+ "grad_norm": 0.21296948194503784,
+ "learning_rate": 0.0006,
+ "loss": 3.5656774044036865,
+ "step": 3656
+ },
+ {
+ "epoch": 50.796854521625164,
+ "grad_norm": 0.19871588051319122,
+ "learning_rate": 0.0006,
+ "loss": 3.5939064025878906,
+ "step": 3657
+ },
+ {
+ "epoch": 50.81083442551333,
+ "grad_norm": 0.19523470103740692,
+ "learning_rate": 0.0006,
+ "loss": 3.5806071758270264,
+ "step": 3658
+ },
+ {
+ "epoch": 50.824814329401484,
+ "grad_norm": 0.18718191981315613,
+ "learning_rate": 0.0006,
+ "loss": 3.5903120040893555,
+ "step": 3659
+ },
+ {
+ "epoch": 50.83879423328965,
+ "grad_norm": 0.18796689808368683,
+ "learning_rate": 0.0006,
+ "loss": 3.5799593925476074,
+ "step": 3660
+ },
+ {
+ "epoch": 50.8527741371778,
+ "grad_norm": 0.21794569492340088,
+ "learning_rate": 0.0006,
+ "loss": 3.5712361335754395,
+ "step": 3661
+ },
+ {
+ "epoch": 50.86675404106597,
+ "grad_norm": 0.2374759465456009,
+ "learning_rate": 0.0006,
+ "loss": 3.602503776550293,
+ "step": 3662
+ },
+ {
+ "epoch": 50.88073394495413,
+ "grad_norm": 0.20213527977466583,
+ "learning_rate": 0.0006,
+ "loss": 3.5756399631500244,
+ "step": 3663
+ },
+ {
+ "epoch": 50.89471384884229,
+ "grad_norm": 0.1875160187482834,
+ "learning_rate": 0.0006,
+ "loss": 3.625436305999756,
+ "step": 3664
+ },
+ {
+ "epoch": 50.90869375273045,
+ "grad_norm": 0.19908255338668823,
+ "learning_rate": 0.0006,
+ "loss": 3.592522621154785,
+ "step": 3665
+ },
+ {
+ "epoch": 50.92267365661861,
+ "grad_norm": 0.20776167511940002,
+ "learning_rate": 0.0006,
+ "loss": 3.5777883529663086,
+ "step": 3666
+ },
+ {
+ "epoch": 50.93665356050677,
+ "grad_norm": 0.19510093331336975,
+ "learning_rate": 0.0006,
+ "loss": 3.587306022644043,
+ "step": 3667
+ },
+ {
+ "epoch": 50.95063346439493,
+ "grad_norm": 0.2180490493774414,
+ "learning_rate": 0.0006,
+ "loss": 3.5855464935302734,
+ "step": 3668
+ },
+ {
+ "epoch": 50.964613368283096,
+ "grad_norm": 0.19967055320739746,
+ "learning_rate": 0.0006,
+ "loss": 3.609689235687256,
+ "step": 3669
+ },
+ {
+ "epoch": 50.97859327217125,
+ "grad_norm": 0.2081584632396698,
+ "learning_rate": 0.0006,
+ "loss": 3.625236749649048,
+ "step": 3670
+ },
+ {
+ "epoch": 50.992573176059416,
+ "grad_norm": 0.2312266230583191,
+ "learning_rate": 0.0006,
+ "loss": 3.5977330207824707,
+ "step": 3671
+ },
+ {
+ "epoch": 51.0,
+ "grad_norm": 0.2464766502380371,
+ "learning_rate": 0.0006,
+ "loss": 3.610635995864868,
+ "step": 3672
+ },
+ {
+ "epoch": 51.0,
+ "eval_loss": 3.9810166358947754,
+ "eval_runtime": 45.5851,
+ "eval_samples_per_second": 53.57,
+ "eval_steps_per_second": 3.356,
+ "step": 3672
+ },
+ {
+ "epoch": 51.01397990388816,
+ "grad_norm": 0.22583232820034027,
+ "learning_rate": 0.0006,
+ "loss": 3.547168016433716,
+ "step": 3673
+ },
+ {
+ "epoch": 51.02795980777632,
+ "grad_norm": 0.23001070320606232,
+ "learning_rate": 0.0006,
+ "loss": 3.546207904815674,
+ "step": 3674
+ },
+ {
+ "epoch": 51.04193971166448,
+ "grad_norm": 0.21891392767429352,
+ "learning_rate": 0.0006,
+ "loss": 3.564371109008789,
+ "step": 3675
+ },
+ {
+ "epoch": 51.05591961555265,
+ "grad_norm": 0.22195076942443848,
+ "learning_rate": 0.0006,
+ "loss": 3.538297414779663,
+ "step": 3676
+ },
+ {
+ "epoch": 51.0698995194408,
+ "grad_norm": 0.24688288569450378,
+ "learning_rate": 0.0006,
+ "loss": 3.5705811977386475,
+ "step": 3677
+ },
+ {
+ "epoch": 51.083879423328966,
+ "grad_norm": 0.2731003165245056,
+ "learning_rate": 0.0006,
+ "loss": 3.530763626098633,
+ "step": 3678
+ },
+ {
+ "epoch": 51.09785932721712,
+ "grad_norm": 0.27474021911621094,
+ "learning_rate": 0.0006,
+ "loss": 3.5559208393096924,
+ "step": 3679
+ },
+ {
+ "epoch": 51.111839231105286,
+ "grad_norm": 0.26311439275741577,
+ "learning_rate": 0.0006,
+ "loss": 3.5698819160461426,
+ "step": 3680
+ },
+ {
+ "epoch": 51.12581913499345,
+ "grad_norm": 0.21895965933799744,
+ "learning_rate": 0.0006,
+ "loss": 3.567232370376587,
+ "step": 3681
+ },
+ {
+ "epoch": 51.139799038881605,
+ "grad_norm": 0.19598282873630524,
+ "learning_rate": 0.0006,
+ "loss": 3.6033718585968018,
+ "step": 3682
+ },
+ {
+ "epoch": 51.15377894276977,
+ "grad_norm": 0.2183268666267395,
+ "learning_rate": 0.0006,
+ "loss": 3.5599026679992676,
+ "step": 3683
+ },
+ {
+ "epoch": 51.16775884665793,
+ "grad_norm": 0.22657731175422668,
+ "learning_rate": 0.0006,
+ "loss": 3.532038688659668,
+ "step": 3684
+ },
+ {
+ "epoch": 51.18173875054609,
+ "grad_norm": 0.21979935467243195,
+ "learning_rate": 0.0006,
+ "loss": 3.544640064239502,
+ "step": 3685
+ },
+ {
+ "epoch": 51.19571865443425,
+ "grad_norm": 0.20581361651420593,
+ "learning_rate": 0.0006,
+ "loss": 3.579803466796875,
+ "step": 3686
+ },
+ {
+ "epoch": 51.20969855832241,
+ "grad_norm": 0.22677212953567505,
+ "learning_rate": 0.0006,
+ "loss": 3.576796054840088,
+ "step": 3687
+ },
+ {
+ "epoch": 51.22367846221057,
+ "grad_norm": 0.2599104940891266,
+ "learning_rate": 0.0006,
+ "loss": 3.5657899379730225,
+ "step": 3688
+ },
+ {
+ "epoch": 51.237658366098735,
+ "grad_norm": 0.23320309817790985,
+ "learning_rate": 0.0006,
+ "loss": 3.5537824630737305,
+ "step": 3689
+ },
+ {
+ "epoch": 51.25163826998689,
+ "grad_norm": 0.2345186471939087,
+ "learning_rate": 0.0006,
+ "loss": 3.5699901580810547,
+ "step": 3690
+ },
+ {
+ "epoch": 51.265618173875055,
+ "grad_norm": 0.24723312258720398,
+ "learning_rate": 0.0006,
+ "loss": 3.553495168685913,
+ "step": 3691
+ },
+ {
+ "epoch": 51.27959807776322,
+ "grad_norm": 0.24195604026317596,
+ "learning_rate": 0.0006,
+ "loss": 3.6008248329162598,
+ "step": 3692
+ },
+ {
+ "epoch": 51.293577981651374,
+ "grad_norm": 0.23011726140975952,
+ "learning_rate": 0.0006,
+ "loss": 3.5842812061309814,
+ "step": 3693
+ },
+ {
+ "epoch": 51.30755788553954,
+ "grad_norm": 0.23412185907363892,
+ "learning_rate": 0.0006,
+ "loss": 3.5648040771484375,
+ "step": 3694
+ },
+ {
+ "epoch": 51.3215377894277,
+ "grad_norm": 0.22911828756332397,
+ "learning_rate": 0.0006,
+ "loss": 3.5599000453948975,
+ "step": 3695
+ },
+ {
+ "epoch": 51.33551769331586,
+ "grad_norm": 0.20045386254787445,
+ "learning_rate": 0.0006,
+ "loss": 3.559370517730713,
+ "step": 3696
+ },
+ {
+ "epoch": 51.34949759720402,
+ "grad_norm": 0.24723322689533234,
+ "learning_rate": 0.0006,
+ "loss": 3.5734081268310547,
+ "step": 3697
+ },
+ {
+ "epoch": 51.36347750109218,
+ "grad_norm": 0.28003066778182983,
+ "learning_rate": 0.0006,
+ "loss": 3.574591636657715,
+ "step": 3698
+ },
+ {
+ "epoch": 51.37745740498034,
+ "grad_norm": 0.27969157695770264,
+ "learning_rate": 0.0006,
+ "loss": 3.5703907012939453,
+ "step": 3699
+ },
+ {
+ "epoch": 51.391437308868504,
+ "grad_norm": 0.2352922111749649,
+ "learning_rate": 0.0006,
+ "loss": 3.540452480316162,
+ "step": 3700
+ },
+ {
+ "epoch": 51.40541721275666,
+ "grad_norm": 0.21332240104675293,
+ "learning_rate": 0.0006,
+ "loss": 3.5883522033691406,
+ "step": 3701
+ },
+ {
+ "epoch": 51.419397116644824,
+ "grad_norm": 0.2021809071302414,
+ "learning_rate": 0.0006,
+ "loss": 3.567544460296631,
+ "step": 3702
+ },
+ {
+ "epoch": 51.43337702053299,
+ "grad_norm": 0.23054654896259308,
+ "learning_rate": 0.0006,
+ "loss": 3.5927062034606934,
+ "step": 3703
+ },
+ {
+ "epoch": 51.44735692442114,
+ "grad_norm": 0.22398747503757477,
+ "learning_rate": 0.0006,
+ "loss": 3.5977213382720947,
+ "step": 3704
+ },
+ {
+ "epoch": 51.46133682830931,
+ "grad_norm": 0.2021128088235855,
+ "learning_rate": 0.0006,
+ "loss": 3.585836887359619,
+ "step": 3705
+ },
+ {
+ "epoch": 51.47531673219746,
+ "grad_norm": 0.23031292855739594,
+ "learning_rate": 0.0006,
+ "loss": 3.532315731048584,
+ "step": 3706
+ },
+ {
+ "epoch": 51.489296636085626,
+ "grad_norm": 0.26744455099105835,
+ "learning_rate": 0.0006,
+ "loss": 3.585782289505005,
+ "step": 3707
+ },
+ {
+ "epoch": 51.50327653997379,
+ "grad_norm": 0.2508980929851532,
+ "learning_rate": 0.0006,
+ "loss": 3.550276279449463,
+ "step": 3708
+ },
+ {
+ "epoch": 51.517256443861946,
+ "grad_norm": 0.2180585265159607,
+ "learning_rate": 0.0006,
+ "loss": 3.566798210144043,
+ "step": 3709
+ },
+ {
+ "epoch": 51.53123634775011,
+ "grad_norm": 0.18508869409561157,
+ "learning_rate": 0.0006,
+ "loss": 3.5295116901397705,
+ "step": 3710
+ },
+ {
+ "epoch": 51.54521625163827,
+ "grad_norm": 0.19017672538757324,
+ "learning_rate": 0.0006,
+ "loss": 3.5932717323303223,
+ "step": 3711
+ },
+ {
+ "epoch": 51.55919615552643,
+ "grad_norm": 0.2228020876646042,
+ "learning_rate": 0.0006,
+ "loss": 3.5660648345947266,
+ "step": 3712
+ },
+ {
+ "epoch": 51.57317605941459,
+ "grad_norm": 0.22948148846626282,
+ "learning_rate": 0.0006,
+ "loss": 3.5785627365112305,
+ "step": 3713
+ },
+ {
+ "epoch": 51.58715596330275,
+ "grad_norm": 0.2438911497592926,
+ "learning_rate": 0.0006,
+ "loss": 3.5885257720947266,
+ "step": 3714
+ },
+ {
+ "epoch": 51.60113586719091,
+ "grad_norm": 0.25012296438217163,
+ "learning_rate": 0.0006,
+ "loss": 3.577232599258423,
+ "step": 3715
+ },
+ {
+ "epoch": 51.615115771079076,
+ "grad_norm": 0.27102336287498474,
+ "learning_rate": 0.0006,
+ "loss": 3.5600078105926514,
+ "step": 3716
+ },
+ {
+ "epoch": 51.62909567496723,
+ "grad_norm": 0.26425355672836304,
+ "learning_rate": 0.0006,
+ "loss": 3.5694093704223633,
+ "step": 3717
+ },
+ {
+ "epoch": 51.643075578855395,
+ "grad_norm": 0.24292822182178497,
+ "learning_rate": 0.0006,
+ "loss": 3.5774331092834473,
+ "step": 3718
+ },
+ {
+ "epoch": 51.65705548274356,
+ "grad_norm": 0.22668084502220154,
+ "learning_rate": 0.0006,
+ "loss": 3.5912742614746094,
+ "step": 3719
+ },
+ {
+ "epoch": 51.671035386631715,
+ "grad_norm": 0.2090575248003006,
+ "learning_rate": 0.0006,
+ "loss": 3.5473170280456543,
+ "step": 3720
+ },
+ {
+ "epoch": 51.68501529051988,
+ "grad_norm": 0.22276616096496582,
+ "learning_rate": 0.0006,
+ "loss": 3.6076784133911133,
+ "step": 3721
+ },
+ {
+ "epoch": 51.69899519440804,
+ "grad_norm": 0.22105294466018677,
+ "learning_rate": 0.0006,
+ "loss": 3.5820791721343994,
+ "step": 3722
+ },
+ {
+ "epoch": 51.7129750982962,
+ "grad_norm": 0.19231240451335907,
+ "learning_rate": 0.0006,
+ "loss": 3.6017708778381348,
+ "step": 3723
+ },
+ {
+ "epoch": 51.72695500218436,
+ "grad_norm": 0.2050354927778244,
+ "learning_rate": 0.0006,
+ "loss": 3.5967769622802734,
+ "step": 3724
+ },
+ {
+ "epoch": 51.74093490607252,
+ "grad_norm": 0.19779305160045624,
+ "learning_rate": 0.0006,
+ "loss": 3.597214698791504,
+ "step": 3725
+ },
+ {
+ "epoch": 51.75491480996068,
+ "grad_norm": 0.22394844889640808,
+ "learning_rate": 0.0006,
+ "loss": 3.574063301086426,
+ "step": 3726
+ },
+ {
+ "epoch": 51.768894713848844,
+ "grad_norm": 0.2262638807296753,
+ "learning_rate": 0.0006,
+ "loss": 3.5754079818725586,
+ "step": 3727
+ },
+ {
+ "epoch": 51.782874617737,
+ "grad_norm": 0.2168288677930832,
+ "learning_rate": 0.0006,
+ "loss": 3.6079599857330322,
+ "step": 3728
+ },
+ {
+ "epoch": 51.796854521625164,
+ "grad_norm": 0.2035517394542694,
+ "learning_rate": 0.0006,
+ "loss": 3.5948667526245117,
+ "step": 3729
+ },
+ {
+ "epoch": 51.81083442551333,
+ "grad_norm": 0.20529425144195557,
+ "learning_rate": 0.0006,
+ "loss": 3.5589542388916016,
+ "step": 3730
+ },
+ {
+ "epoch": 51.824814329401484,
+ "grad_norm": 0.2464100867509842,
+ "learning_rate": 0.0006,
+ "loss": 3.5947155952453613,
+ "step": 3731
+ },
+ {
+ "epoch": 51.83879423328965,
+ "grad_norm": 0.28043219447135925,
+ "learning_rate": 0.0006,
+ "loss": 3.6102852821350098,
+ "step": 3732
+ },
+ {
+ "epoch": 51.8527741371778,
+ "grad_norm": 0.2879013121128082,
+ "learning_rate": 0.0006,
+ "loss": 3.5903573036193848,
+ "step": 3733
+ },
+ {
+ "epoch": 51.86675404106597,
+ "grad_norm": 0.2532044053077698,
+ "learning_rate": 0.0006,
+ "loss": 3.5704729557037354,
+ "step": 3734
+ },
+ {
+ "epoch": 51.88073394495413,
+ "grad_norm": 0.25126248598098755,
+ "learning_rate": 0.0006,
+ "loss": 3.5449633598327637,
+ "step": 3735
+ },
+ {
+ "epoch": 51.89471384884229,
+ "grad_norm": 0.2494364082813263,
+ "learning_rate": 0.0006,
+ "loss": 3.5825607776641846,
+ "step": 3736
+ },
+ {
+ "epoch": 51.90869375273045,
+ "grad_norm": 0.24867761135101318,
+ "learning_rate": 0.0006,
+ "loss": 3.5998034477233887,
+ "step": 3737
+ },
+ {
+ "epoch": 51.92267365661861,
+ "grad_norm": 0.2552012801170349,
+ "learning_rate": 0.0006,
+ "loss": 3.5487377643585205,
+ "step": 3738
+ },
+ {
+ "epoch": 51.93665356050677,
+ "grad_norm": 0.2243119329214096,
+ "learning_rate": 0.0006,
+ "loss": 3.6081466674804688,
+ "step": 3739
+ },
+ {
+ "epoch": 51.95063346439493,
+ "grad_norm": 0.2106700837612152,
+ "learning_rate": 0.0006,
+ "loss": 3.607586622238159,
+ "step": 3740
+ },
+ {
+ "epoch": 51.964613368283096,
+ "grad_norm": 0.2207096666097641,
+ "learning_rate": 0.0006,
+ "loss": 3.6094579696655273,
+ "step": 3741
+ },
+ {
+ "epoch": 51.97859327217125,
+ "grad_norm": 0.2310071736574173,
+ "learning_rate": 0.0006,
+ "loss": 3.5837807655334473,
+ "step": 3742
+ },
+ {
+ "epoch": 51.992573176059416,
+ "grad_norm": 0.258770614862442,
+ "learning_rate": 0.0006,
+ "loss": 3.639329433441162,
+ "step": 3743
+ },
+ {
+ "epoch": 52.0,
+ "grad_norm": 0.24004915356636047,
+ "learning_rate": 0.0006,
+ "loss": 3.6178512573242188,
+ "step": 3744
+ },
+ {
+ "epoch": 52.0,
+ "eval_loss": 3.97371244430542,
+ "eval_runtime": 46.1923,
+ "eval_samples_per_second": 52.866,
+ "eval_steps_per_second": 3.312,
+ "step": 3744
+ },
+ {
+ "epoch": 52.01397990388816,
+ "grad_norm": 0.21953323483467102,
+ "learning_rate": 0.0006,
+ "loss": 3.5929579734802246,
+ "step": 3745
+ },
+ {
+ "epoch": 52.02795980777632,
+ "grad_norm": 0.25547415018081665,
+ "learning_rate": 0.0006,
+ "loss": 3.5762600898742676,
+ "step": 3746
+ },
+ {
+ "epoch": 52.04193971166448,
+ "grad_norm": 0.28905144333839417,
+ "learning_rate": 0.0006,
+ "loss": 3.5794596672058105,
+ "step": 3747
+ },
+ {
+ "epoch": 52.05591961555265,
+ "grad_norm": 0.2618118226528168,
+ "learning_rate": 0.0006,
+ "loss": 3.543205499649048,
+ "step": 3748
+ },
+ {
+ "epoch": 52.0698995194408,
+ "grad_norm": 0.2288745492696762,
+ "learning_rate": 0.0006,
+ "loss": 3.562770366668701,
+ "step": 3749
+ },
+ {
+ "epoch": 52.083879423328966,
+ "grad_norm": 0.25327110290527344,
+ "learning_rate": 0.0006,
+ "loss": 3.5405054092407227,
+ "step": 3750
+ },
+ {
+ "epoch": 52.09785932721712,
+ "grad_norm": 0.2721746861934662,
+ "learning_rate": 0.0006,
+ "loss": 3.5650479793548584,
+ "step": 3751
+ },
+ {
+ "epoch": 52.111839231105286,
+ "grad_norm": 0.2890555262565613,
+ "learning_rate": 0.0006,
+ "loss": 3.556122303009033,
+ "step": 3752
+ },
+ {
+ "epoch": 52.12581913499345,
+ "grad_norm": 0.30541476607322693,
+ "learning_rate": 0.0006,
+ "loss": 3.544271469116211,
+ "step": 3753
+ },
+ {
+ "epoch": 52.139799038881605,
+ "grad_norm": 0.2555760443210602,
+ "learning_rate": 0.0006,
+ "loss": 3.5452728271484375,
+ "step": 3754
+ },
+ {
+ "epoch": 52.15377894276977,
+ "grad_norm": 0.2653098404407501,
+ "learning_rate": 0.0006,
+ "loss": 3.57212495803833,
+ "step": 3755
+ },
+ {
+ "epoch": 52.16775884665793,
+ "grad_norm": 0.2479168176651001,
+ "learning_rate": 0.0006,
+ "loss": 3.5893373489379883,
+ "step": 3756
+ },
+ {
+ "epoch": 52.18173875054609,
+ "grad_norm": 0.21718256175518036,
+ "learning_rate": 0.0006,
+ "loss": 3.5616965293884277,
+ "step": 3757
+ },
+ {
+ "epoch": 52.19571865443425,
+ "grad_norm": 0.22033235430717468,
+ "learning_rate": 0.0006,
+ "loss": 3.566401481628418,
+ "step": 3758
+ },
+ {
+ "epoch": 52.20969855832241,
+ "grad_norm": 0.2401825189590454,
+ "learning_rate": 0.0006,
+ "loss": 3.547682762145996,
+ "step": 3759
+ },
+ {
+ "epoch": 52.22367846221057,
+ "grad_norm": 0.24496418237686157,
+ "learning_rate": 0.0006,
+ "loss": 3.5405421257019043,
+ "step": 3760
+ },
+ {
+ "epoch": 52.237658366098735,
+ "grad_norm": 0.2311883270740509,
+ "learning_rate": 0.0006,
+ "loss": 3.5709781646728516,
+ "step": 3761
+ },
+ {
+ "epoch": 52.25163826998689,
+ "grad_norm": 0.20850200951099396,
+ "learning_rate": 0.0006,
+ "loss": 3.5563712120056152,
+ "step": 3762
+ },
+ {
+ "epoch": 52.265618173875055,
+ "grad_norm": 0.2073400765657425,
+ "learning_rate": 0.0006,
+ "loss": 3.542343854904175,
+ "step": 3763
+ },
+ {
+ "epoch": 52.27959807776322,
+ "grad_norm": 0.21886718273162842,
+ "learning_rate": 0.0006,
+ "loss": 3.5633034706115723,
+ "step": 3764
+ },
+ {
+ "epoch": 52.293577981651374,
+ "grad_norm": 0.2218562215566635,
+ "learning_rate": 0.0006,
+ "loss": 3.5644288063049316,
+ "step": 3765
+ },
+ {
+ "epoch": 52.30755788553954,
+ "grad_norm": 0.22043557465076447,
+ "learning_rate": 0.0006,
+ "loss": 3.564373731613159,
+ "step": 3766
+ },
+ {
+ "epoch": 52.3215377894277,
+ "grad_norm": 0.2095082402229309,
+ "learning_rate": 0.0006,
+ "loss": 3.5336289405822754,
+ "step": 3767
+ },
+ {
+ "epoch": 52.33551769331586,
+ "grad_norm": 0.21115876734256744,
+ "learning_rate": 0.0006,
+ "loss": 3.5761165618896484,
+ "step": 3768
+ },
+ {
+ "epoch": 52.34949759720402,
+ "grad_norm": 0.21558400988578796,
+ "learning_rate": 0.0006,
+ "loss": 3.573495388031006,
+ "step": 3769
+ },
+ {
+ "epoch": 52.36347750109218,
+ "grad_norm": 0.213745579123497,
+ "learning_rate": 0.0006,
+ "loss": 3.572171211242676,
+ "step": 3770
+ },
+ {
+ "epoch": 52.37745740498034,
+ "grad_norm": 0.1926180124282837,
+ "learning_rate": 0.0006,
+ "loss": 3.532592535018921,
+ "step": 3771
+ },
+ {
+ "epoch": 52.391437308868504,
+ "grad_norm": 0.1993863731622696,
+ "learning_rate": 0.0006,
+ "loss": 3.551880359649658,
+ "step": 3772
+ },
+ {
+ "epoch": 52.40541721275666,
+ "grad_norm": 0.2018740326166153,
+ "learning_rate": 0.0006,
+ "loss": 3.557328701019287,
+ "step": 3773
+ },
+ {
+ "epoch": 52.419397116644824,
+ "grad_norm": 0.19035610556602478,
+ "learning_rate": 0.0006,
+ "loss": 3.600301504135132,
+ "step": 3774
+ },
+ {
+ "epoch": 52.43337702053299,
+ "grad_norm": 0.20069538056850433,
+ "learning_rate": 0.0006,
+ "loss": 3.5938944816589355,
+ "step": 3775
+ },
+ {
+ "epoch": 52.44735692442114,
+ "grad_norm": 0.21255625784397125,
+ "learning_rate": 0.0006,
+ "loss": 3.561086893081665,
+ "step": 3776
+ },
+ {
+ "epoch": 52.46133682830931,
+ "grad_norm": 0.20132070779800415,
+ "learning_rate": 0.0006,
+ "loss": 3.5525574684143066,
+ "step": 3777
+ },
+ {
+ "epoch": 52.47531673219746,
+ "grad_norm": 0.20152916014194489,
+ "learning_rate": 0.0006,
+ "loss": 3.5697402954101562,
+ "step": 3778
+ },
+ {
+ "epoch": 52.489296636085626,
+ "grad_norm": 0.1984269767999649,
+ "learning_rate": 0.0006,
+ "loss": 3.5686168670654297,
+ "step": 3779
+ },
+ {
+ "epoch": 52.50327653997379,
+ "grad_norm": 0.212612584233284,
+ "learning_rate": 0.0006,
+ "loss": 3.5522124767303467,
+ "step": 3780
+ },
+ {
+ "epoch": 52.517256443861946,
+ "grad_norm": 0.21382521092891693,
+ "learning_rate": 0.0006,
+ "loss": 3.5692944526672363,
+ "step": 3781
+ },
+ {
+ "epoch": 52.53123634775011,
+ "grad_norm": 0.2118486911058426,
+ "learning_rate": 0.0006,
+ "loss": 3.562495708465576,
+ "step": 3782
+ },
+ {
+ "epoch": 52.54521625163827,
+ "grad_norm": 0.22253486514091492,
+ "learning_rate": 0.0006,
+ "loss": 3.5709781646728516,
+ "step": 3783
+ },
+ {
+ "epoch": 52.55919615552643,
+ "grad_norm": 0.23701436817646027,
+ "learning_rate": 0.0006,
+ "loss": 3.548953056335449,
+ "step": 3784
+ },
+ {
+ "epoch": 52.57317605941459,
+ "grad_norm": 0.21345193684101105,
+ "learning_rate": 0.0006,
+ "loss": 3.543029308319092,
+ "step": 3785
+ },
+ {
+ "epoch": 52.58715596330275,
+ "grad_norm": 0.1854170262813568,
+ "learning_rate": 0.0006,
+ "loss": 3.5490989685058594,
+ "step": 3786
+ },
+ {
+ "epoch": 52.60113586719091,
+ "grad_norm": 0.23733633756637573,
+ "learning_rate": 0.0006,
+ "loss": 3.5800132751464844,
+ "step": 3787
+ },
+ {
+ "epoch": 52.615115771079076,
+ "grad_norm": 0.26175495982170105,
+ "learning_rate": 0.0006,
+ "loss": 3.562596321105957,
+ "step": 3788
+ },
+ {
+ "epoch": 52.62909567496723,
+ "grad_norm": 0.23134057223796844,
+ "learning_rate": 0.0006,
+ "loss": 3.5685765743255615,
+ "step": 3789
+ },
+ {
+ "epoch": 52.643075578855395,
+ "grad_norm": 0.1974988877773285,
+ "learning_rate": 0.0006,
+ "loss": 3.570517063140869,
+ "step": 3790
+ },
+ {
+ "epoch": 52.65705548274356,
+ "grad_norm": 0.20049697160720825,
+ "learning_rate": 0.0006,
+ "loss": 3.573286533355713,
+ "step": 3791
+ },
+ {
+ "epoch": 52.671035386631715,
+ "grad_norm": 0.1956445872783661,
+ "learning_rate": 0.0006,
+ "loss": 3.565880537033081,
+ "step": 3792
+ },
+ {
+ "epoch": 52.68501529051988,
+ "grad_norm": 0.2082354575395584,
+ "learning_rate": 0.0006,
+ "loss": 3.587278366088867,
+ "step": 3793
+ },
+ {
+ "epoch": 52.69899519440804,
+ "grad_norm": 0.20923161506652832,
+ "learning_rate": 0.0006,
+ "loss": 3.569469451904297,
+ "step": 3794
+ },
+ {
+ "epoch": 52.7129750982962,
+ "grad_norm": 0.20482848584651947,
+ "learning_rate": 0.0006,
+ "loss": 3.5826265811920166,
+ "step": 3795
+ },
+ {
+ "epoch": 52.72695500218436,
+ "grad_norm": 0.20411530137062073,
+ "learning_rate": 0.0006,
+ "loss": 3.5870275497436523,
+ "step": 3796
+ },
+ {
+ "epoch": 52.74093490607252,
+ "grad_norm": 0.2205485701560974,
+ "learning_rate": 0.0006,
+ "loss": 3.58900785446167,
+ "step": 3797
+ },
+ {
+ "epoch": 52.75491480996068,
+ "grad_norm": 0.21134008467197418,
+ "learning_rate": 0.0006,
+ "loss": 3.591036558151245,
+ "step": 3798
+ },
+ {
+ "epoch": 52.768894713848844,
+ "grad_norm": 0.20001831650733948,
+ "learning_rate": 0.0006,
+ "loss": 3.5670390129089355,
+ "step": 3799
+ },
+ {
+ "epoch": 52.782874617737,
+ "grad_norm": 0.2175939679145813,
+ "learning_rate": 0.0006,
+ "loss": 3.594132423400879,
+ "step": 3800
+ },
+ {
+ "epoch": 52.796854521625164,
+ "grad_norm": 0.22054694592952728,
+ "learning_rate": 0.0006,
+ "loss": 3.5565545558929443,
+ "step": 3801
+ },
+ {
+ "epoch": 52.81083442551333,
+ "grad_norm": 0.22901731729507446,
+ "learning_rate": 0.0006,
+ "loss": 3.5837020874023438,
+ "step": 3802
+ },
+ {
+ "epoch": 52.824814329401484,
+ "grad_norm": 0.22492778301239014,
+ "learning_rate": 0.0006,
+ "loss": 3.608218193054199,
+ "step": 3803
+ },
+ {
+ "epoch": 52.83879423328965,
+ "grad_norm": 0.21645256876945496,
+ "learning_rate": 0.0006,
+ "loss": 3.5839202404022217,
+ "step": 3804
+ },
+ {
+ "epoch": 52.8527741371778,
+ "grad_norm": 0.19680161774158478,
+ "learning_rate": 0.0006,
+ "loss": 3.568756580352783,
+ "step": 3805
+ },
+ {
+ "epoch": 52.86675404106597,
+ "grad_norm": 0.2084486186504364,
+ "learning_rate": 0.0006,
+ "loss": 3.580197811126709,
+ "step": 3806
+ },
+ {
+ "epoch": 52.88073394495413,
+ "grad_norm": 0.19380393624305725,
+ "learning_rate": 0.0006,
+ "loss": 3.5871198177337646,
+ "step": 3807
+ },
+ {
+ "epoch": 52.89471384884229,
+ "grad_norm": 0.1962910294532776,
+ "learning_rate": 0.0006,
+ "loss": 3.5878777503967285,
+ "step": 3808
+ },
+ {
+ "epoch": 52.90869375273045,
+ "grad_norm": 0.23292803764343262,
+ "learning_rate": 0.0006,
+ "loss": 3.574855327606201,
+ "step": 3809
+ },
+ {
+ "epoch": 52.92267365661861,
+ "grad_norm": 0.26974233984947205,
+ "learning_rate": 0.0006,
+ "loss": 3.5731749534606934,
+ "step": 3810
+ },
+ {
+ "epoch": 52.93665356050677,
+ "grad_norm": 0.26665496826171875,
+ "learning_rate": 0.0006,
+ "loss": 3.552717685699463,
+ "step": 3811
+ },
+ {
+ "epoch": 52.95063346439493,
+ "grad_norm": 0.24156489968299866,
+ "learning_rate": 0.0006,
+ "loss": 3.581787109375,
+ "step": 3812
+ },
+ {
+ "epoch": 52.964613368283096,
+ "grad_norm": 0.22062325477600098,
+ "learning_rate": 0.0006,
+ "loss": 3.578994035720825,
+ "step": 3813
+ },
+ {
+ "epoch": 52.97859327217125,
+ "grad_norm": 0.19949151575565338,
+ "learning_rate": 0.0006,
+ "loss": 3.6157355308532715,
+ "step": 3814
+ },
+ {
+ "epoch": 52.992573176059416,
+ "grad_norm": 0.2157975435256958,
+ "learning_rate": 0.0006,
+ "loss": 3.5677759647369385,
+ "step": 3815
+ },
+ {
+ "epoch": 53.0,
+ "grad_norm": 0.23285679519176483,
+ "learning_rate": 0.0006,
+ "loss": 3.5541789531707764,
+ "step": 3816
+ },
+ {
+ "epoch": 53.0,
+ "eval_loss": 3.9737255573272705,
+ "eval_runtime": 46.0304,
+ "eval_samples_per_second": 53.052,
+ "eval_steps_per_second": 3.324,
+ "step": 3816
+ },
+ {
+ "epoch": 53.01397990388816,
+ "grad_norm": 0.212715283036232,
+ "learning_rate": 0.0006,
+ "loss": 3.5475640296936035,
+ "step": 3817
+ },
+ {
+ "epoch": 53.02795980777632,
+ "grad_norm": 0.24556505680084229,
+ "learning_rate": 0.0006,
+ "loss": 3.5197463035583496,
+ "step": 3818
+ },
+ {
+ "epoch": 53.04193971166448,
+ "grad_norm": 0.2898217737674713,
+ "learning_rate": 0.0006,
+ "loss": 3.527390956878662,
+ "step": 3819
+ },
+ {
+ "epoch": 53.05591961555265,
+ "grad_norm": 0.26151803135871887,
+ "learning_rate": 0.0006,
+ "loss": 3.5462024211883545,
+ "step": 3820
+ },
+ {
+ "epoch": 53.0698995194408,
+ "grad_norm": 0.24648059904575348,
+ "learning_rate": 0.0006,
+ "loss": 3.5584919452667236,
+ "step": 3821
+ },
+ {
+ "epoch": 53.083879423328966,
+ "grad_norm": 0.22295059263706207,
+ "learning_rate": 0.0006,
+ "loss": 3.517195701599121,
+ "step": 3822
+ },
+ {
+ "epoch": 53.09785932721712,
+ "grad_norm": 0.2206476330757141,
+ "learning_rate": 0.0006,
+ "loss": 3.570678234100342,
+ "step": 3823
+ },
+ {
+ "epoch": 53.111839231105286,
+ "grad_norm": 0.22069714963436127,
+ "learning_rate": 0.0006,
+ "loss": 3.5707359313964844,
+ "step": 3824
+ },
+ {
+ "epoch": 53.12581913499345,
+ "grad_norm": 0.21850740909576416,
+ "learning_rate": 0.0006,
+ "loss": 3.5730209350585938,
+ "step": 3825
+ },
+ {
+ "epoch": 53.139799038881605,
+ "grad_norm": 0.21554340422153473,
+ "learning_rate": 0.0006,
+ "loss": 3.5578367710113525,
+ "step": 3826
+ },
+ {
+ "epoch": 53.15377894276977,
+ "grad_norm": 0.21678747236728668,
+ "learning_rate": 0.0006,
+ "loss": 3.5603280067443848,
+ "step": 3827
+ },
+ {
+ "epoch": 53.16775884665793,
+ "grad_norm": 0.22017014026641846,
+ "learning_rate": 0.0006,
+ "loss": 3.577760696411133,
+ "step": 3828
+ },
+ {
+ "epoch": 53.18173875054609,
+ "grad_norm": 0.20485524833202362,
+ "learning_rate": 0.0006,
+ "loss": 3.574751853942871,
+ "step": 3829
+ },
+ {
+ "epoch": 53.19571865443425,
+ "grad_norm": 0.22951237857341766,
+ "learning_rate": 0.0006,
+ "loss": 3.5464377403259277,
+ "step": 3830
+ },
+ {
+ "epoch": 53.20969855832241,
+ "grad_norm": 0.2343965619802475,
+ "learning_rate": 0.0006,
+ "loss": 3.516113758087158,
+ "step": 3831
+ },
+ {
+ "epoch": 53.22367846221057,
+ "grad_norm": 0.24002069234848022,
+ "learning_rate": 0.0006,
+ "loss": 3.564629554748535,
+ "step": 3832
+ },
+ {
+ "epoch": 53.237658366098735,
+ "grad_norm": 0.23933765292167664,
+ "learning_rate": 0.0006,
+ "loss": 3.5518507957458496,
+ "step": 3833
+ },
+ {
+ "epoch": 53.25163826998689,
+ "grad_norm": 0.2188953459262848,
+ "learning_rate": 0.0006,
+ "loss": 3.5341856479644775,
+ "step": 3834
+ },
+ {
+ "epoch": 53.265618173875055,
+ "grad_norm": 0.22629091143608093,
+ "learning_rate": 0.0006,
+ "loss": 3.5479273796081543,
+ "step": 3835
+ },
+ {
+ "epoch": 53.27959807776322,
+ "grad_norm": 0.2386554479598999,
+ "learning_rate": 0.0006,
+ "loss": 3.6097445487976074,
+ "step": 3836
+ },
+ {
+ "epoch": 53.293577981651374,
+ "grad_norm": 0.23003390431404114,
+ "learning_rate": 0.0006,
+ "loss": 3.5435304641723633,
+ "step": 3837
+ },
+ {
+ "epoch": 53.30755788553954,
+ "grad_norm": 0.248053640127182,
+ "learning_rate": 0.0006,
+ "loss": 3.545290470123291,
+ "step": 3838
+ },
+ {
+ "epoch": 53.3215377894277,
+ "grad_norm": 0.23945583403110504,
+ "learning_rate": 0.0006,
+ "loss": 3.570158004760742,
+ "step": 3839
+ },
+ {
+ "epoch": 53.33551769331586,
+ "grad_norm": 0.22801059484481812,
+ "learning_rate": 0.0006,
+ "loss": 3.5600779056549072,
+ "step": 3840
+ },
+ {
+ "epoch": 53.34949759720402,
+ "grad_norm": 0.2303777039051056,
+ "learning_rate": 0.0006,
+ "loss": 3.576674222946167,
+ "step": 3841
+ },
+ {
+ "epoch": 53.36347750109218,
+ "grad_norm": 0.23318468034267426,
+ "learning_rate": 0.0006,
+ "loss": 3.5705552101135254,
+ "step": 3842
+ },
+ {
+ "epoch": 53.37745740498034,
+ "grad_norm": 0.2435566782951355,
+ "learning_rate": 0.0006,
+ "loss": 3.576536178588867,
+ "step": 3843
+ },
+ {
+ "epoch": 53.391437308868504,
+ "grad_norm": 0.2857200503349304,
+ "learning_rate": 0.0006,
+ "loss": 3.535977363586426,
+ "step": 3844
+ },
+ {
+ "epoch": 53.40541721275666,
+ "grad_norm": 0.2640133500099182,
+ "learning_rate": 0.0006,
+ "loss": 3.547731399536133,
+ "step": 3845
+ },
+ {
+ "epoch": 53.419397116644824,
+ "grad_norm": 0.22218745946884155,
+ "learning_rate": 0.0006,
+ "loss": 3.5798351764678955,
+ "step": 3846
+ },
+ {
+ "epoch": 53.43337702053299,
+ "grad_norm": 0.2537193298339844,
+ "learning_rate": 0.0006,
+ "loss": 3.5289204120635986,
+ "step": 3847
+ },
+ {
+ "epoch": 53.44735692442114,
+ "grad_norm": 0.28360968828201294,
+ "learning_rate": 0.0006,
+ "loss": 3.5503361225128174,
+ "step": 3848
+ },
+ {
+ "epoch": 53.46133682830931,
+ "grad_norm": 0.2892421782016754,
+ "learning_rate": 0.0006,
+ "loss": 3.5675411224365234,
+ "step": 3849
+ },
+ {
+ "epoch": 53.47531673219746,
+ "grad_norm": 0.28305584192276,
+ "learning_rate": 0.0006,
+ "loss": 3.573280096054077,
+ "step": 3850
+ },
+ {
+ "epoch": 53.489296636085626,
+ "grad_norm": 0.24628037214279175,
+ "learning_rate": 0.0006,
+ "loss": 3.5215024948120117,
+ "step": 3851
+ },
+ {
+ "epoch": 53.50327653997379,
+ "grad_norm": 0.2463715672492981,
+ "learning_rate": 0.0006,
+ "loss": 3.5790698528289795,
+ "step": 3852
+ },
+ {
+ "epoch": 53.517256443861946,
+ "grad_norm": 0.2646636664867401,
+ "learning_rate": 0.0006,
+ "loss": 3.589735269546509,
+ "step": 3853
+ },
+ {
+ "epoch": 53.53123634775011,
+ "grad_norm": 0.27668821811676025,
+ "learning_rate": 0.0006,
+ "loss": 3.5690393447875977,
+ "step": 3854
+ },
+ {
+ "epoch": 53.54521625163827,
+ "grad_norm": 0.2630347013473511,
+ "learning_rate": 0.0006,
+ "loss": 3.5846545696258545,
+ "step": 3855
+ },
+ {
+ "epoch": 53.55919615552643,
+ "grad_norm": 0.27177906036376953,
+ "learning_rate": 0.0006,
+ "loss": 3.5431671142578125,
+ "step": 3856
+ },
+ {
+ "epoch": 53.57317605941459,
+ "grad_norm": 0.27125081419944763,
+ "learning_rate": 0.0006,
+ "loss": 3.5905215740203857,
+ "step": 3857
+ },
+ {
+ "epoch": 53.58715596330275,
+ "grad_norm": 0.24802975356578827,
+ "learning_rate": 0.0006,
+ "loss": 3.5472917556762695,
+ "step": 3858
+ },
+ {
+ "epoch": 53.60113586719091,
+ "grad_norm": 0.23812460899353027,
+ "learning_rate": 0.0006,
+ "loss": 3.5917325019836426,
+ "step": 3859
+ },
+ {
+ "epoch": 53.615115771079076,
+ "grad_norm": 0.2597416937351227,
+ "learning_rate": 0.0006,
+ "loss": 3.5515074729919434,
+ "step": 3860
+ },
+ {
+ "epoch": 53.62909567496723,
+ "grad_norm": 0.24389132857322693,
+ "learning_rate": 0.0006,
+ "loss": 3.578125476837158,
+ "step": 3861
+ },
+ {
+ "epoch": 53.643075578855395,
+ "grad_norm": 0.23878274857997894,
+ "learning_rate": 0.0006,
+ "loss": 3.5612001419067383,
+ "step": 3862
+ },
+ {
+ "epoch": 53.65705548274356,
+ "grad_norm": 0.23248082399368286,
+ "learning_rate": 0.0006,
+ "loss": 3.5651350021362305,
+ "step": 3863
+ },
+ {
+ "epoch": 53.671035386631715,
+ "grad_norm": 0.22560833394527435,
+ "learning_rate": 0.0006,
+ "loss": 3.58971905708313,
+ "step": 3864
+ },
+ {
+ "epoch": 53.68501529051988,
+ "grad_norm": 0.22092120349407196,
+ "learning_rate": 0.0006,
+ "loss": 3.5567374229431152,
+ "step": 3865
+ },
+ {
+ "epoch": 53.69899519440804,
+ "grad_norm": 0.20171885192394257,
+ "learning_rate": 0.0006,
+ "loss": 3.5868449211120605,
+ "step": 3866
+ },
+ {
+ "epoch": 53.7129750982962,
+ "grad_norm": 0.2051871120929718,
+ "learning_rate": 0.0006,
+ "loss": 3.5853161811828613,
+ "step": 3867
+ },
+ {
+ "epoch": 53.72695500218436,
+ "grad_norm": 0.1912045031785965,
+ "learning_rate": 0.0006,
+ "loss": 3.5901622772216797,
+ "step": 3868
+ },
+ {
+ "epoch": 53.74093490607252,
+ "grad_norm": 0.20817188918590546,
+ "learning_rate": 0.0006,
+ "loss": 3.5759787559509277,
+ "step": 3869
+ },
+ {
+ "epoch": 53.75491480996068,
+ "grad_norm": 0.2157917469739914,
+ "learning_rate": 0.0006,
+ "loss": 3.5438575744628906,
+ "step": 3870
+ },
+ {
+ "epoch": 53.768894713848844,
+ "grad_norm": 0.2332053929567337,
+ "learning_rate": 0.0006,
+ "loss": 3.587697982788086,
+ "step": 3871
+ },
+ {
+ "epoch": 53.782874617737,
+ "grad_norm": 0.22700314223766327,
+ "learning_rate": 0.0006,
+ "loss": 3.586625337600708,
+ "step": 3872
+ },
+ {
+ "epoch": 53.796854521625164,
+ "grad_norm": 0.20737017691135406,
+ "learning_rate": 0.0006,
+ "loss": 3.552398204803467,
+ "step": 3873
+ },
+ {
+ "epoch": 53.81083442551333,
+ "grad_norm": 0.20355650782585144,
+ "learning_rate": 0.0006,
+ "loss": 3.5734331607818604,
+ "step": 3874
+ },
+ {
+ "epoch": 53.824814329401484,
+ "grad_norm": 0.18868018686771393,
+ "learning_rate": 0.0006,
+ "loss": 3.582509756088257,
+ "step": 3875
+ },
+ {
+ "epoch": 53.83879423328965,
+ "grad_norm": 0.20373275876045227,
+ "learning_rate": 0.0006,
+ "loss": 3.559354782104492,
+ "step": 3876
+ },
+ {
+ "epoch": 53.8527741371778,
+ "grad_norm": 0.1988871544599533,
+ "learning_rate": 0.0006,
+ "loss": 3.5575170516967773,
+ "step": 3877
+ },
+ {
+ "epoch": 53.86675404106597,
+ "grad_norm": 0.19602873921394348,
+ "learning_rate": 0.0006,
+ "loss": 3.5500855445861816,
+ "step": 3878
+ },
+ {
+ "epoch": 53.88073394495413,
+ "grad_norm": 0.201382577419281,
+ "learning_rate": 0.0006,
+ "loss": 3.563499927520752,
+ "step": 3879
+ },
+ {
+ "epoch": 53.89471384884229,
+ "grad_norm": 0.19682180881500244,
+ "learning_rate": 0.0006,
+ "loss": 3.586855888366699,
+ "step": 3880
+ },
+ {
+ "epoch": 53.90869375273045,
+ "grad_norm": 0.19423548877239227,
+ "learning_rate": 0.0006,
+ "loss": 3.5840401649475098,
+ "step": 3881
+ },
+ {
+ "epoch": 53.92267365661861,
+ "grad_norm": 0.1970449835062027,
+ "learning_rate": 0.0006,
+ "loss": 3.554568290710449,
+ "step": 3882
+ },
+ {
+ "epoch": 53.93665356050677,
+ "grad_norm": 0.20274291932582855,
+ "learning_rate": 0.0006,
+ "loss": 3.5928239822387695,
+ "step": 3883
+ },
+ {
+ "epoch": 53.95063346439493,
+ "grad_norm": 0.18485035002231598,
+ "learning_rate": 0.0006,
+ "loss": 3.576934337615967,
+ "step": 3884
+ },
+ {
+ "epoch": 53.964613368283096,
+ "grad_norm": 0.18437646329402924,
+ "learning_rate": 0.0006,
+ "loss": 3.574990749359131,
+ "step": 3885
+ },
+ {
+ "epoch": 53.97859327217125,
+ "grad_norm": 0.18616823852062225,
+ "learning_rate": 0.0006,
+ "loss": 3.5566892623901367,
+ "step": 3886
+ },
+ {
+ "epoch": 53.992573176059416,
+ "grad_norm": 0.19502122700214386,
+ "learning_rate": 0.0006,
+ "loss": 3.604814052581787,
+ "step": 3887
+ },
+ {
+ "epoch": 54.0,
+ "grad_norm": 0.2657789885997772,
+ "learning_rate": 0.0006,
+ "loss": 3.5094165802001953,
+ "step": 3888
+ },
+ {
+ "epoch": 54.0,
+ "eval_loss": 3.965742349624634,
+ "eval_runtime": 45.5851,
+ "eval_samples_per_second": 53.57,
+ "eval_steps_per_second": 3.356,
+ "step": 3888
+ },
+ {
+ "epoch": 54.01397990388816,
+ "grad_norm": 0.27879253029823303,
+ "learning_rate": 0.0006,
+ "loss": 3.565103530883789,
+ "step": 3889
+ },
+ {
+ "epoch": 54.02795980777632,
+ "grad_norm": 0.2959246337413788,
+ "learning_rate": 0.0006,
+ "loss": 3.5378212928771973,
+ "step": 3890
+ },
+ {
+ "epoch": 54.04193971166448,
+ "grad_norm": 0.32719552516937256,
+ "learning_rate": 0.0006,
+ "loss": 3.5566751956939697,
+ "step": 3891
+ },
+ {
+ "epoch": 54.05591961555265,
+ "grad_norm": 0.36854541301727295,
+ "learning_rate": 0.0006,
+ "loss": 3.5363879203796387,
+ "step": 3892
+ },
+ {
+ "epoch": 54.0698995194408,
+ "grad_norm": 0.34325551986694336,
+ "learning_rate": 0.0006,
+ "loss": 3.5306153297424316,
+ "step": 3893
+ },
+ {
+ "epoch": 54.083879423328966,
+ "grad_norm": 0.2798653244972229,
+ "learning_rate": 0.0006,
+ "loss": 3.5642261505126953,
+ "step": 3894
+ },
+ {
+ "epoch": 54.09785932721712,
+ "grad_norm": 0.24857765436172485,
+ "learning_rate": 0.0006,
+ "loss": 3.50216007232666,
+ "step": 3895
+ },
+ {
+ "epoch": 54.111839231105286,
+ "grad_norm": 0.2943299114704132,
+ "learning_rate": 0.0006,
+ "loss": 3.524904251098633,
+ "step": 3896
+ },
+ {
+ "epoch": 54.12581913499345,
+ "grad_norm": 0.2791048586368561,
+ "learning_rate": 0.0006,
+ "loss": 3.56490421295166,
+ "step": 3897
+ },
+ {
+ "epoch": 54.139799038881605,
+ "grad_norm": 0.2781159579753876,
+ "learning_rate": 0.0006,
+ "loss": 3.536180019378662,
+ "step": 3898
+ },
+ {
+ "epoch": 54.15377894276977,
+ "grad_norm": 0.30359897017478943,
+ "learning_rate": 0.0006,
+ "loss": 3.546919345855713,
+ "step": 3899
+ },
+ {
+ "epoch": 54.16775884665793,
+ "grad_norm": 0.2738530933856964,
+ "learning_rate": 0.0006,
+ "loss": 3.547968864440918,
+ "step": 3900
+ },
+ {
+ "epoch": 54.18173875054609,
+ "grad_norm": 0.24783718585968018,
+ "learning_rate": 0.0006,
+ "loss": 3.5802721977233887,
+ "step": 3901
+ },
+ {
+ "epoch": 54.19571865443425,
+ "grad_norm": 0.2544802725315094,
+ "learning_rate": 0.0006,
+ "loss": 3.5556836128234863,
+ "step": 3902
+ },
+ {
+ "epoch": 54.20969855832241,
+ "grad_norm": 0.26695969700813293,
+ "learning_rate": 0.0006,
+ "loss": 3.534266471862793,
+ "step": 3903
+ },
+ {
+ "epoch": 54.22367846221057,
+ "grad_norm": 0.24152538180351257,
+ "learning_rate": 0.0006,
+ "loss": 3.534069538116455,
+ "step": 3904
+ },
+ {
+ "epoch": 54.237658366098735,
+ "grad_norm": 0.21859917044639587,
+ "learning_rate": 0.0006,
+ "loss": 3.535362958908081,
+ "step": 3905
+ },
+ {
+ "epoch": 54.25163826998689,
+ "grad_norm": 0.24676479399204254,
+ "learning_rate": 0.0006,
+ "loss": 3.567283868789673,
+ "step": 3906
+ },
+ {
+ "epoch": 54.265618173875055,
+ "grad_norm": 0.26998138427734375,
+ "learning_rate": 0.0006,
+ "loss": 3.518892765045166,
+ "step": 3907
+ },
+ {
+ "epoch": 54.27959807776322,
+ "grad_norm": 0.30108749866485596,
+ "learning_rate": 0.0006,
+ "loss": 3.5865135192871094,
+ "step": 3908
+ },
+ {
+ "epoch": 54.293577981651374,
+ "grad_norm": 0.31310492753982544,
+ "learning_rate": 0.0006,
+ "loss": 3.546637535095215,
+ "step": 3909
+ },
+ {
+ "epoch": 54.30755788553954,
+ "grad_norm": 0.2994784712791443,
+ "learning_rate": 0.0006,
+ "loss": 3.5441226959228516,
+ "step": 3910
+ },
+ {
+ "epoch": 54.3215377894277,
+ "grad_norm": 0.25010061264038086,
+ "learning_rate": 0.0006,
+ "loss": 3.5619735717773438,
+ "step": 3911
+ },
+ {
+ "epoch": 54.33551769331586,
+ "grad_norm": 0.253129780292511,
+ "learning_rate": 0.0006,
+ "loss": 3.530210494995117,
+ "step": 3912
+ },
+ {
+ "epoch": 54.34949759720402,
+ "grad_norm": 0.2652498781681061,
+ "learning_rate": 0.0006,
+ "loss": 3.534478187561035,
+ "step": 3913
+ },
+ {
+ "epoch": 54.36347750109218,
+ "grad_norm": 0.250503808259964,
+ "learning_rate": 0.0006,
+ "loss": 3.545886516571045,
+ "step": 3914
+ },
+ {
+ "epoch": 54.37745740498034,
+ "grad_norm": 0.22186073660850525,
+ "learning_rate": 0.0006,
+ "loss": 3.5884604454040527,
+ "step": 3915
+ },
+ {
+ "epoch": 54.391437308868504,
+ "grad_norm": 0.21128980815410614,
+ "learning_rate": 0.0006,
+ "loss": 3.527862548828125,
+ "step": 3916
+ },
+ {
+ "epoch": 54.40541721275666,
+ "grad_norm": 0.23184002935886383,
+ "learning_rate": 0.0006,
+ "loss": 3.5599637031555176,
+ "step": 3917
+ },
+ {
+ "epoch": 54.419397116644824,
+ "grad_norm": 0.23710627853870392,
+ "learning_rate": 0.0006,
+ "loss": 3.54667329788208,
+ "step": 3918
+ },
+ {
+ "epoch": 54.43337702053299,
+ "grad_norm": 0.2314598113298416,
+ "learning_rate": 0.0006,
+ "loss": 3.518406391143799,
+ "step": 3919
+ },
+ {
+ "epoch": 54.44735692442114,
+ "grad_norm": 0.21623452007770538,
+ "learning_rate": 0.0006,
+ "loss": 3.5749731063842773,
+ "step": 3920
+ },
+ {
+ "epoch": 54.46133682830931,
+ "grad_norm": 0.22832012176513672,
+ "learning_rate": 0.0006,
+ "loss": 3.57436466217041,
+ "step": 3921
+ },
+ {
+ "epoch": 54.47531673219746,
+ "grad_norm": 0.2184043526649475,
+ "learning_rate": 0.0006,
+ "loss": 3.578040838241577,
+ "step": 3922
+ },
+ {
+ "epoch": 54.489296636085626,
+ "grad_norm": 0.2302335649728775,
+ "learning_rate": 0.0006,
+ "loss": 3.5646257400512695,
+ "step": 3923
+ },
+ {
+ "epoch": 54.50327653997379,
+ "grad_norm": 0.21635375916957855,
+ "learning_rate": 0.0006,
+ "loss": 3.546786308288574,
+ "step": 3924
+ },
+ {
+ "epoch": 54.517256443861946,
+ "grad_norm": 0.22332443296909332,
+ "learning_rate": 0.0006,
+ "loss": 3.5804502964019775,
+ "step": 3925
+ },
+ {
+ "epoch": 54.53123634775011,
+ "grad_norm": 0.21662919223308563,
+ "learning_rate": 0.0006,
+ "loss": 3.567797899246216,
+ "step": 3926
+ },
+ {
+ "epoch": 54.54521625163827,
+ "grad_norm": 0.21345169842243195,
+ "learning_rate": 0.0006,
+ "loss": 3.5746283531188965,
+ "step": 3927
+ },
+ {
+ "epoch": 54.55919615552643,
+ "grad_norm": 0.2111794501543045,
+ "learning_rate": 0.0006,
+ "loss": 3.5626277923583984,
+ "step": 3928
+ },
+ {
+ "epoch": 54.57317605941459,
+ "grad_norm": 0.22575712203979492,
+ "learning_rate": 0.0006,
+ "loss": 3.5856311321258545,
+ "step": 3929
+ },
+ {
+ "epoch": 54.58715596330275,
+ "grad_norm": 0.22963617742061615,
+ "learning_rate": 0.0006,
+ "loss": 3.584038257598877,
+ "step": 3930
+ },
+ {
+ "epoch": 54.60113586719091,
+ "grad_norm": 0.21805310249328613,
+ "learning_rate": 0.0006,
+ "loss": 3.5603089332580566,
+ "step": 3931
+ },
+ {
+ "epoch": 54.615115771079076,
+ "grad_norm": 0.22830283641815186,
+ "learning_rate": 0.0006,
+ "loss": 3.5533390045166016,
+ "step": 3932
+ },
+ {
+ "epoch": 54.62909567496723,
+ "grad_norm": 0.24158291518688202,
+ "learning_rate": 0.0006,
+ "loss": 3.5437779426574707,
+ "step": 3933
+ },
+ {
+ "epoch": 54.643075578855395,
+ "grad_norm": 0.22687768936157227,
+ "learning_rate": 0.0006,
+ "loss": 3.566315174102783,
+ "step": 3934
+ },
+ {
+ "epoch": 54.65705548274356,
+ "grad_norm": 0.21220184862613678,
+ "learning_rate": 0.0006,
+ "loss": 3.5772881507873535,
+ "step": 3935
+ },
+ {
+ "epoch": 54.671035386631715,
+ "grad_norm": 0.19508333504199982,
+ "learning_rate": 0.0006,
+ "loss": 3.5213584899902344,
+ "step": 3936
+ },
+ {
+ "epoch": 54.68501529051988,
+ "grad_norm": 0.199599027633667,
+ "learning_rate": 0.0006,
+ "loss": 3.553925037384033,
+ "step": 3937
+ },
+ {
+ "epoch": 54.69899519440804,
+ "grad_norm": 0.2063189297914505,
+ "learning_rate": 0.0006,
+ "loss": 3.5706050395965576,
+ "step": 3938
+ },
+ {
+ "epoch": 54.7129750982962,
+ "grad_norm": 0.2056119441986084,
+ "learning_rate": 0.0006,
+ "loss": 3.557199478149414,
+ "step": 3939
+ },
+ {
+ "epoch": 54.72695500218436,
+ "grad_norm": 0.2192074954509735,
+ "learning_rate": 0.0006,
+ "loss": 3.5869479179382324,
+ "step": 3940
+ },
+ {
+ "epoch": 54.74093490607252,
+ "grad_norm": 0.19796597957611084,
+ "learning_rate": 0.0006,
+ "loss": 3.559929609298706,
+ "step": 3941
+ },
+ {
+ "epoch": 54.75491480996068,
+ "grad_norm": 0.19003179669380188,
+ "learning_rate": 0.0006,
+ "loss": 3.5481486320495605,
+ "step": 3942
+ },
+ {
+ "epoch": 54.768894713848844,
+ "grad_norm": 0.189231738448143,
+ "learning_rate": 0.0006,
+ "loss": 3.5603561401367188,
+ "step": 3943
+ },
+ {
+ "epoch": 54.782874617737,
+ "grad_norm": 0.20949427783489227,
+ "learning_rate": 0.0006,
+ "loss": 3.567026138305664,
+ "step": 3944
+ },
+ {
+ "epoch": 54.796854521625164,
+ "grad_norm": 0.21650178730487823,
+ "learning_rate": 0.0006,
+ "loss": 3.5981621742248535,
+ "step": 3945
+ },
+ {
+ "epoch": 54.81083442551333,
+ "grad_norm": 0.21941770613193512,
+ "learning_rate": 0.0006,
+ "loss": 3.590226173400879,
+ "step": 3946
+ },
+ {
+ "epoch": 54.824814329401484,
+ "grad_norm": 0.2169734537601471,
+ "learning_rate": 0.0006,
+ "loss": 3.592764139175415,
+ "step": 3947
+ },
+ {
+ "epoch": 54.83879423328965,
+ "grad_norm": 0.20309467613697052,
+ "learning_rate": 0.0006,
+ "loss": 3.5706393718719482,
+ "step": 3948
+ },
+ {
+ "epoch": 54.8527741371778,
+ "grad_norm": 0.21803754568099976,
+ "learning_rate": 0.0006,
+ "loss": 3.5816526412963867,
+ "step": 3949
+ },
+ {
+ "epoch": 54.86675404106597,
+ "grad_norm": 0.22217069566249847,
+ "learning_rate": 0.0006,
+ "loss": 3.5895018577575684,
+ "step": 3950
+ },
+ {
+ "epoch": 54.88073394495413,
+ "grad_norm": 0.21204866468906403,
+ "learning_rate": 0.0006,
+ "loss": 3.5574231147766113,
+ "step": 3951
+ },
+ {
+ "epoch": 54.89471384884229,
+ "grad_norm": 0.2173423171043396,
+ "learning_rate": 0.0006,
+ "loss": 3.564763069152832,
+ "step": 3952
+ },
+ {
+ "epoch": 54.90869375273045,
+ "grad_norm": 0.2039082646369934,
+ "learning_rate": 0.0006,
+ "loss": 3.59708309173584,
+ "step": 3953
+ },
+ {
+ "epoch": 54.92267365661861,
+ "grad_norm": 0.20248384773731232,
+ "learning_rate": 0.0006,
+ "loss": 3.587890148162842,
+ "step": 3954
+ },
+ {
+ "epoch": 54.93665356050677,
+ "grad_norm": 0.20693068206310272,
+ "learning_rate": 0.0006,
+ "loss": 3.5569000244140625,
+ "step": 3955
+ },
+ {
+ "epoch": 54.95063346439493,
+ "grad_norm": 0.2109357714653015,
+ "learning_rate": 0.0006,
+ "loss": 3.552126884460449,
+ "step": 3956
+ },
+ {
+ "epoch": 54.964613368283096,
+ "grad_norm": 0.2278970628976822,
+ "learning_rate": 0.0006,
+ "loss": 3.564998149871826,
+ "step": 3957
+ },
+ {
+ "epoch": 54.97859327217125,
+ "grad_norm": 0.21663756668567657,
+ "learning_rate": 0.0006,
+ "loss": 3.571608543395996,
+ "step": 3958
+ },
+ {
+ "epoch": 54.992573176059416,
+ "grad_norm": 0.19653232395648956,
+ "learning_rate": 0.0006,
+ "loss": 3.5885231494903564,
+ "step": 3959
+ },
+ {
+ "epoch": 55.0,
+ "grad_norm": 0.21956856548786163,
+ "learning_rate": 0.0006,
+ "loss": 3.4966204166412354,
+ "step": 3960
+ },
+ {
+ "epoch": 55.0,
+ "eval_loss": 3.972649097442627,
+ "eval_runtime": 45.2298,
+ "eval_samples_per_second": 53.991,
+ "eval_steps_per_second": 3.383,
+ "step": 3960
+ },
+ {
+ "epoch": 55.01397990388816,
+ "grad_norm": 0.22733832895755768,
+ "learning_rate": 0.0006,
+ "loss": 3.546975612640381,
+ "step": 3961
+ },
+ {
+ "epoch": 55.02795980777632,
+ "grad_norm": 0.25451111793518066,
+ "learning_rate": 0.0006,
+ "loss": 3.54240083694458,
+ "step": 3962
+ },
+ {
+ "epoch": 55.04193971166448,
+ "grad_norm": 0.2394949048757553,
+ "learning_rate": 0.0006,
+ "loss": 3.5492677688598633,
+ "step": 3963
+ },
+ {
+ "epoch": 55.05591961555265,
+ "grad_norm": 0.2306671440601349,
+ "learning_rate": 0.0006,
+ "loss": 3.524200916290283,
+ "step": 3964
+ },
+ {
+ "epoch": 55.0698995194408,
+ "grad_norm": 0.2307029813528061,
+ "learning_rate": 0.0006,
+ "loss": 3.509249687194824,
+ "step": 3965
+ },
+ {
+ "epoch": 55.083879423328966,
+ "grad_norm": 0.24812111258506775,
+ "learning_rate": 0.0006,
+ "loss": 3.5500473976135254,
+ "step": 3966
+ },
+ {
+ "epoch": 55.09785932721712,
+ "grad_norm": 0.28564271330833435,
+ "learning_rate": 0.0006,
+ "loss": 3.5178303718566895,
+ "step": 3967
+ },
+ {
+ "epoch": 55.111839231105286,
+ "grad_norm": 0.26979005336761475,
+ "learning_rate": 0.0006,
+ "loss": 3.5306806564331055,
+ "step": 3968
+ },
+ {
+ "epoch": 55.12581913499345,
+ "grad_norm": 0.24274848401546478,
+ "learning_rate": 0.0006,
+ "loss": 3.5758519172668457,
+ "step": 3969
+ },
+ {
+ "epoch": 55.139799038881605,
+ "grad_norm": 0.2560444474220276,
+ "learning_rate": 0.0006,
+ "loss": 3.5417323112487793,
+ "step": 3970
+ },
+ {
+ "epoch": 55.15377894276977,
+ "grad_norm": 0.2553671598434448,
+ "learning_rate": 0.0006,
+ "loss": 3.5258004665374756,
+ "step": 3971
+ },
+ {
+ "epoch": 55.16775884665793,
+ "grad_norm": 0.2170111984014511,
+ "learning_rate": 0.0006,
+ "loss": 3.514847755432129,
+ "step": 3972
+ },
+ {
+ "epoch": 55.18173875054609,
+ "grad_norm": 0.20854522287845612,
+ "learning_rate": 0.0006,
+ "loss": 3.5248336791992188,
+ "step": 3973
+ },
+ {
+ "epoch": 55.19571865443425,
+ "grad_norm": 0.21873287856578827,
+ "learning_rate": 0.0006,
+ "loss": 3.5468008518218994,
+ "step": 3974
+ },
+ {
+ "epoch": 55.20969855832241,
+ "grad_norm": 0.21194154024124146,
+ "learning_rate": 0.0006,
+ "loss": 3.568512439727783,
+ "step": 3975
+ },
+ {
+ "epoch": 55.22367846221057,
+ "grad_norm": 0.23534680902957916,
+ "learning_rate": 0.0006,
+ "loss": 3.5285420417785645,
+ "step": 3976
+ },
+ {
+ "epoch": 55.237658366098735,
+ "grad_norm": 0.22674795985221863,
+ "learning_rate": 0.0006,
+ "loss": 3.5399436950683594,
+ "step": 3977
+ },
+ {
+ "epoch": 55.25163826998689,
+ "grad_norm": 0.2248486578464508,
+ "learning_rate": 0.0006,
+ "loss": 3.5241036415100098,
+ "step": 3978
+ },
+ {
+ "epoch": 55.265618173875055,
+ "grad_norm": 0.241151362657547,
+ "learning_rate": 0.0006,
+ "loss": 3.547079086303711,
+ "step": 3979
+ },
+ {
+ "epoch": 55.27959807776322,
+ "grad_norm": 0.2783249318599701,
+ "learning_rate": 0.0006,
+ "loss": 3.5442988872528076,
+ "step": 3980
+ },
+ {
+ "epoch": 55.293577981651374,
+ "grad_norm": 0.2743528485298157,
+ "learning_rate": 0.0006,
+ "loss": 3.529618978500366,
+ "step": 3981
+ },
+ {
+ "epoch": 55.30755788553954,
+ "grad_norm": 0.23901724815368652,
+ "learning_rate": 0.0006,
+ "loss": 3.5379443168640137,
+ "step": 3982
+ },
+ {
+ "epoch": 55.3215377894277,
+ "grad_norm": 0.22758841514587402,
+ "learning_rate": 0.0006,
+ "loss": 3.5446794033050537,
+ "step": 3983
+ },
+ {
+ "epoch": 55.33551769331586,
+ "grad_norm": 0.22634629905223846,
+ "learning_rate": 0.0006,
+ "loss": 3.521944522857666,
+ "step": 3984
+ },
+ {
+ "epoch": 55.34949759720402,
+ "grad_norm": 0.23372086882591248,
+ "learning_rate": 0.0006,
+ "loss": 3.565023899078369,
+ "step": 3985
+ },
+ {
+ "epoch": 55.36347750109218,
+ "grad_norm": 0.24722231924533844,
+ "learning_rate": 0.0006,
+ "loss": 3.535661220550537,
+ "step": 3986
+ },
+ {
+ "epoch": 55.37745740498034,
+ "grad_norm": 0.21684594452381134,
+ "learning_rate": 0.0006,
+ "loss": 3.59070086479187,
+ "step": 3987
+ },
+ {
+ "epoch": 55.391437308868504,
+ "grad_norm": 0.186308816075325,
+ "learning_rate": 0.0006,
+ "loss": 3.5373833179473877,
+ "step": 3988
+ },
+ {
+ "epoch": 55.40541721275666,
+ "grad_norm": 0.2240687608718872,
+ "learning_rate": 0.0006,
+ "loss": 3.613295555114746,
+ "step": 3989
+ },
+ {
+ "epoch": 55.419397116644824,
+ "grad_norm": 0.25724494457244873,
+ "learning_rate": 0.0006,
+ "loss": 3.581005096435547,
+ "step": 3990
+ },
+ {
+ "epoch": 55.43337702053299,
+ "grad_norm": 0.24023419618606567,
+ "learning_rate": 0.0006,
+ "loss": 3.563951015472412,
+ "step": 3991
+ },
+ {
+ "epoch": 55.44735692442114,
+ "grad_norm": 0.21473391354084015,
+ "learning_rate": 0.0006,
+ "loss": 3.5444185733795166,
+ "step": 3992
+ },
+ {
+ "epoch": 55.46133682830931,
+ "grad_norm": 0.20466852188110352,
+ "learning_rate": 0.0006,
+ "loss": 3.5585713386535645,
+ "step": 3993
+ },
+ {
+ "epoch": 55.47531673219746,
+ "grad_norm": 0.20925740897655487,
+ "learning_rate": 0.0006,
+ "loss": 3.5656747817993164,
+ "step": 3994
+ },
+ {
+ "epoch": 55.489296636085626,
+ "grad_norm": 0.2309556007385254,
+ "learning_rate": 0.0006,
+ "loss": 3.5653891563415527,
+ "step": 3995
+ },
+ {
+ "epoch": 55.50327653997379,
+ "grad_norm": 0.24270877242088318,
+ "learning_rate": 0.0006,
+ "loss": 3.5275917053222656,
+ "step": 3996
+ },
+ {
+ "epoch": 55.517256443861946,
+ "grad_norm": 0.22749851644039154,
+ "learning_rate": 0.0006,
+ "loss": 3.5392730236053467,
+ "step": 3997
+ },
+ {
+ "epoch": 55.53123634775011,
+ "grad_norm": 0.21618196368217468,
+ "learning_rate": 0.0006,
+ "loss": 3.5581812858581543,
+ "step": 3998
+ },
+ {
+ "epoch": 55.54521625163827,
+ "grad_norm": 0.22232134640216827,
+ "learning_rate": 0.0006,
+ "loss": 3.5340118408203125,
+ "step": 3999
+ },
+ {
+ "epoch": 55.55919615552643,
+ "grad_norm": 0.24543501436710358,
+ "learning_rate": 0.0006,
+ "loss": 3.572153329849243,
+ "step": 4000
+ },
+ {
+ "epoch": 55.57317605941459,
+ "grad_norm": 0.2385311722755432,
+ "learning_rate": 0.0006,
+ "loss": 3.5366618633270264,
+ "step": 4001
+ },
+ {
+ "epoch": 55.58715596330275,
+ "grad_norm": 0.27977821230888367,
+ "learning_rate": 0.0006,
+ "loss": 3.5788960456848145,
+ "step": 4002
+ },
+ {
+ "epoch": 55.60113586719091,
+ "grad_norm": 0.2929013967514038,
+ "learning_rate": 0.0006,
+ "loss": 3.61065936088562,
+ "step": 4003
+ },
+ {
+ "epoch": 55.615115771079076,
+ "grad_norm": 0.27820730209350586,
+ "learning_rate": 0.0006,
+ "loss": 3.538694381713867,
+ "step": 4004
+ },
+ {
+ "epoch": 55.62909567496723,
+ "grad_norm": 0.24188996851444244,
+ "learning_rate": 0.0006,
+ "loss": 3.571709632873535,
+ "step": 4005
+ },
+ {
+ "epoch": 55.643075578855395,
+ "grad_norm": 0.21659360826015472,
+ "learning_rate": 0.0006,
+ "loss": 3.5431199073791504,
+ "step": 4006
+ },
+ {
+ "epoch": 55.65705548274356,
+ "grad_norm": 0.23356232047080994,
+ "learning_rate": 0.0006,
+ "loss": 3.5664005279541016,
+ "step": 4007
+ },
+ {
+ "epoch": 55.671035386631715,
+ "grad_norm": 0.21523472666740417,
+ "learning_rate": 0.0006,
+ "loss": 3.575711250305176,
+ "step": 4008
+ },
+ {
+ "epoch": 55.68501529051988,
+ "grad_norm": 0.22101815044879913,
+ "learning_rate": 0.0006,
+ "loss": 3.5843849182128906,
+ "step": 4009
+ },
+ {
+ "epoch": 55.69899519440804,
+ "grad_norm": 0.24153906106948853,
+ "learning_rate": 0.0006,
+ "loss": 3.5737733840942383,
+ "step": 4010
+ },
+ {
+ "epoch": 55.7129750982962,
+ "grad_norm": 0.2181350439786911,
+ "learning_rate": 0.0006,
+ "loss": 3.582613945007324,
+ "step": 4011
+ },
+ {
+ "epoch": 55.72695500218436,
+ "grad_norm": 0.21046742796897888,
+ "learning_rate": 0.0006,
+ "loss": 3.5380563735961914,
+ "step": 4012
+ },
+ {
+ "epoch": 55.74093490607252,
+ "grad_norm": 0.23996953666210175,
+ "learning_rate": 0.0006,
+ "loss": 3.57753849029541,
+ "step": 4013
+ },
+ {
+ "epoch": 55.75491480996068,
+ "grad_norm": 0.24543973803520203,
+ "learning_rate": 0.0006,
+ "loss": 3.578747272491455,
+ "step": 4014
+ },
+ {
+ "epoch": 55.768894713848844,
+ "grad_norm": 0.23597940802574158,
+ "learning_rate": 0.0006,
+ "loss": 3.5816988945007324,
+ "step": 4015
+ },
+ {
+ "epoch": 55.782874617737,
+ "grad_norm": 0.237411230802536,
+ "learning_rate": 0.0006,
+ "loss": 3.5659806728363037,
+ "step": 4016
+ },
+ {
+ "epoch": 55.796854521625164,
+ "grad_norm": 0.23947440087795258,
+ "learning_rate": 0.0006,
+ "loss": 3.545125961303711,
+ "step": 4017
+ },
+ {
+ "epoch": 55.81083442551333,
+ "grad_norm": 0.21562735736370087,
+ "learning_rate": 0.0006,
+ "loss": 3.5571303367614746,
+ "step": 4018
+ },
+ {
+ "epoch": 55.824814329401484,
+ "grad_norm": 0.21958434581756592,
+ "learning_rate": 0.0006,
+ "loss": 3.5243420600891113,
+ "step": 4019
+ },
+ {
+ "epoch": 55.83879423328965,
+ "grad_norm": 0.23856471478939056,
+ "learning_rate": 0.0006,
+ "loss": 3.586078643798828,
+ "step": 4020
+ },
+ {
+ "epoch": 55.8527741371778,
+ "grad_norm": 0.20703551173210144,
+ "learning_rate": 0.0006,
+ "loss": 3.5503201484680176,
+ "step": 4021
+ },
+ {
+ "epoch": 55.86675404106597,
+ "grad_norm": 0.21183231472969055,
+ "learning_rate": 0.0006,
+ "loss": 3.5873844623565674,
+ "step": 4022
+ },
+ {
+ "epoch": 55.88073394495413,
+ "grad_norm": 0.2129688709974289,
+ "learning_rate": 0.0006,
+ "loss": 3.582061290740967,
+ "step": 4023
+ },
+ {
+ "epoch": 55.89471384884229,
+ "grad_norm": 0.2122214287519455,
+ "learning_rate": 0.0006,
+ "loss": 3.547175884246826,
+ "step": 4024
+ },
+ {
+ "epoch": 55.90869375273045,
+ "grad_norm": 0.214874267578125,
+ "learning_rate": 0.0006,
+ "loss": 3.5322279930114746,
+ "step": 4025
+ },
+ {
+ "epoch": 55.92267365661861,
+ "grad_norm": 0.24104614555835724,
+ "learning_rate": 0.0006,
+ "loss": 3.5742111206054688,
+ "step": 4026
+ },
+ {
+ "epoch": 55.93665356050677,
+ "grad_norm": 0.2257685512304306,
+ "learning_rate": 0.0006,
+ "loss": 3.5686793327331543,
+ "step": 4027
+ },
+ {
+ "epoch": 55.95063346439493,
+ "grad_norm": 0.2170567363500595,
+ "learning_rate": 0.0006,
+ "loss": 3.5670571327209473,
+ "step": 4028
+ },
+ {
+ "epoch": 55.964613368283096,
+ "grad_norm": 0.2003280222415924,
+ "learning_rate": 0.0006,
+ "loss": 3.533921718597412,
+ "step": 4029
+ },
+ {
+ "epoch": 55.97859327217125,
+ "grad_norm": 0.21483278274536133,
+ "learning_rate": 0.0006,
+ "loss": 3.539720058441162,
+ "step": 4030
+ },
+ {
+ "epoch": 55.992573176059416,
+ "grad_norm": 0.26908108592033386,
+ "learning_rate": 0.0006,
+ "loss": 3.575934886932373,
+ "step": 4031
+ },
+ {
+ "epoch": 56.0,
+ "grad_norm": 0.30002665519714355,
+ "learning_rate": 0.0006,
+ "loss": 3.5702414512634277,
+ "step": 4032
+ },
+ {
+ "epoch": 56.0,
+ "eval_loss": 3.9834072589874268,
+ "eval_runtime": 46.2268,
+ "eval_samples_per_second": 52.826,
+ "eval_steps_per_second": 3.31,
+ "step": 4032
+ },
+ {
+ "epoch": 56.01397990388816,
+ "grad_norm": 0.25298207998275757,
+ "learning_rate": 0.0006,
+ "loss": 3.538151741027832,
+ "step": 4033
+ },
+ {
+ "epoch": 56.02795980777632,
+ "grad_norm": 0.2231103479862213,
+ "learning_rate": 0.0006,
+ "loss": 3.551466941833496,
+ "step": 4034
+ },
+ {
+ "epoch": 56.04193971166448,
+ "grad_norm": 0.2504221796989441,
+ "learning_rate": 0.0006,
+ "loss": 3.5361199378967285,
+ "step": 4035
+ },
+ {
+ "epoch": 56.05591961555265,
+ "grad_norm": 0.23491773009300232,
+ "learning_rate": 0.0006,
+ "loss": 3.549346446990967,
+ "step": 4036
+ },
+ {
+ "epoch": 56.0698995194408,
+ "grad_norm": 0.23068852722644806,
+ "learning_rate": 0.0006,
+ "loss": 3.5243453979492188,
+ "step": 4037
+ },
+ {
+ "epoch": 56.083879423328966,
+ "grad_norm": 0.22160249948501587,
+ "learning_rate": 0.0006,
+ "loss": 3.551191806793213,
+ "step": 4038
+ },
+ {
+ "epoch": 56.09785932721712,
+ "grad_norm": 0.2389034926891327,
+ "learning_rate": 0.0006,
+ "loss": 3.5358071327209473,
+ "step": 4039
+ },
+ {
+ "epoch": 56.111839231105286,
+ "grad_norm": 0.2552168071269989,
+ "learning_rate": 0.0006,
+ "loss": 3.564204692840576,
+ "step": 4040
+ },
+ {
+ "epoch": 56.12581913499345,
+ "grad_norm": 0.2802336812019348,
+ "learning_rate": 0.0006,
+ "loss": 3.540386438369751,
+ "step": 4041
+ },
+ {
+ "epoch": 56.139799038881605,
+ "grad_norm": 0.2564619779586792,
+ "learning_rate": 0.0006,
+ "loss": 3.544264554977417,
+ "step": 4042
+ },
+ {
+ "epoch": 56.15377894276977,
+ "grad_norm": 0.24272632598876953,
+ "learning_rate": 0.0006,
+ "loss": 3.509497880935669,
+ "step": 4043
+ },
+ {
+ "epoch": 56.16775884665793,
+ "grad_norm": 0.23981881141662598,
+ "learning_rate": 0.0006,
+ "loss": 3.551090955734253,
+ "step": 4044
+ },
+ {
+ "epoch": 56.18173875054609,
+ "grad_norm": 0.22418269515037537,
+ "learning_rate": 0.0006,
+ "loss": 3.558614492416382,
+ "step": 4045
+ },
+ {
+ "epoch": 56.19571865443425,
+ "grad_norm": 0.21792462468147278,
+ "learning_rate": 0.0006,
+ "loss": 3.540558338165283,
+ "step": 4046
+ },
+ {
+ "epoch": 56.20969855832241,
+ "grad_norm": 0.21248634159564972,
+ "learning_rate": 0.0006,
+ "loss": 3.5273942947387695,
+ "step": 4047
+ },
+ {
+ "epoch": 56.22367846221057,
+ "grad_norm": 0.1863572895526886,
+ "learning_rate": 0.0006,
+ "loss": 3.555302143096924,
+ "step": 4048
+ },
+ {
+ "epoch": 56.237658366098735,
+ "grad_norm": 0.21031822264194489,
+ "learning_rate": 0.0006,
+ "loss": 3.547515630722046,
+ "step": 4049
+ },
+ {
+ "epoch": 56.25163826998689,
+ "grad_norm": 0.19754044711589813,
+ "learning_rate": 0.0006,
+ "loss": 3.5476508140563965,
+ "step": 4050
+ },
+ {
+ "epoch": 56.265618173875055,
+ "grad_norm": 0.19707852602005005,
+ "learning_rate": 0.0006,
+ "loss": 3.506730794906616,
+ "step": 4051
+ },
+ {
+ "epoch": 56.27959807776322,
+ "grad_norm": 0.21011239290237427,
+ "learning_rate": 0.0006,
+ "loss": 3.51116681098938,
+ "step": 4052
+ },
+ {
+ "epoch": 56.293577981651374,
+ "grad_norm": 0.20281212031841278,
+ "learning_rate": 0.0006,
+ "loss": 3.549513816833496,
+ "step": 4053
+ },
+ {
+ "epoch": 56.30755788553954,
+ "grad_norm": 0.19198910892009735,
+ "learning_rate": 0.0006,
+ "loss": 3.5299534797668457,
+ "step": 4054
+ },
+ {
+ "epoch": 56.3215377894277,
+ "grad_norm": 0.1861368715763092,
+ "learning_rate": 0.0006,
+ "loss": 3.513909339904785,
+ "step": 4055
+ },
+ {
+ "epoch": 56.33551769331586,
+ "grad_norm": 0.20779506862163544,
+ "learning_rate": 0.0006,
+ "loss": 3.5528712272644043,
+ "step": 4056
+ },
+ {
+ "epoch": 56.34949759720402,
+ "grad_norm": 0.2229684591293335,
+ "learning_rate": 0.0006,
+ "loss": 3.518359661102295,
+ "step": 4057
+ },
+ {
+ "epoch": 56.36347750109218,
+ "grad_norm": 0.22998179495334625,
+ "learning_rate": 0.0006,
+ "loss": 3.5004091262817383,
+ "step": 4058
+ },
+ {
+ "epoch": 56.37745740498034,
+ "grad_norm": 0.2176709622144699,
+ "learning_rate": 0.0006,
+ "loss": 3.550295829772949,
+ "step": 4059
+ },
+ {
+ "epoch": 56.391437308868504,
+ "grad_norm": 0.19512872397899628,
+ "learning_rate": 0.0006,
+ "loss": 3.5305161476135254,
+ "step": 4060
+ },
+ {
+ "epoch": 56.40541721275666,
+ "grad_norm": 0.23127448558807373,
+ "learning_rate": 0.0006,
+ "loss": 3.5341286659240723,
+ "step": 4061
+ },
+ {
+ "epoch": 56.419397116644824,
+ "grad_norm": 0.20905959606170654,
+ "learning_rate": 0.0006,
+ "loss": 3.553912401199341,
+ "step": 4062
+ },
+ {
+ "epoch": 56.43337702053299,
+ "grad_norm": 0.23370878398418427,
+ "learning_rate": 0.0006,
+ "loss": 3.5700249671936035,
+ "step": 4063
+ },
+ {
+ "epoch": 56.44735692442114,
+ "grad_norm": 0.233205646276474,
+ "learning_rate": 0.0006,
+ "loss": 3.5184097290039062,
+ "step": 4064
+ },
+ {
+ "epoch": 56.46133682830931,
+ "grad_norm": 0.23928777873516083,
+ "learning_rate": 0.0006,
+ "loss": 3.535874366760254,
+ "step": 4065
+ },
+ {
+ "epoch": 56.47531673219746,
+ "grad_norm": 0.24950815737247467,
+ "learning_rate": 0.0006,
+ "loss": 3.508136749267578,
+ "step": 4066
+ },
+ {
+ "epoch": 56.489296636085626,
+ "grad_norm": 0.24821820855140686,
+ "learning_rate": 0.0006,
+ "loss": 3.5421361923217773,
+ "step": 4067
+ },
+ {
+ "epoch": 56.50327653997379,
+ "grad_norm": 0.2252482771873474,
+ "learning_rate": 0.0006,
+ "loss": 3.5516514778137207,
+ "step": 4068
+ },
+ {
+ "epoch": 56.517256443861946,
+ "grad_norm": 0.2238101363182068,
+ "learning_rate": 0.0006,
+ "loss": 3.567741632461548,
+ "step": 4069
+ },
+ {
+ "epoch": 56.53123634775011,
+ "grad_norm": 0.20759683847427368,
+ "learning_rate": 0.0006,
+ "loss": 3.544705390930176,
+ "step": 4070
+ },
+ {
+ "epoch": 56.54521625163827,
+ "grad_norm": 0.21918460726737976,
+ "learning_rate": 0.0006,
+ "loss": 3.5725836753845215,
+ "step": 4071
+ },
+ {
+ "epoch": 56.55919615552643,
+ "grad_norm": 0.22640042006969452,
+ "learning_rate": 0.0006,
+ "loss": 3.5447535514831543,
+ "step": 4072
+ },
+ {
+ "epoch": 56.57317605941459,
+ "grad_norm": 0.23130203783512115,
+ "learning_rate": 0.0006,
+ "loss": 3.5620853900909424,
+ "step": 4073
+ },
+ {
+ "epoch": 56.58715596330275,
+ "grad_norm": 0.2215641736984253,
+ "learning_rate": 0.0006,
+ "loss": 3.5416438579559326,
+ "step": 4074
+ },
+ {
+ "epoch": 56.60113586719091,
+ "grad_norm": 0.20106497406959534,
+ "learning_rate": 0.0006,
+ "loss": 3.537386178970337,
+ "step": 4075
+ },
+ {
+ "epoch": 56.615115771079076,
+ "grad_norm": 0.2045976221561432,
+ "learning_rate": 0.0006,
+ "loss": 3.555032730102539,
+ "step": 4076
+ },
+ {
+ "epoch": 56.62909567496723,
+ "grad_norm": 0.20097647607326508,
+ "learning_rate": 0.0006,
+ "loss": 3.559572458267212,
+ "step": 4077
+ },
+ {
+ "epoch": 56.643075578855395,
+ "grad_norm": 0.24158388376235962,
+ "learning_rate": 0.0006,
+ "loss": 3.56520938873291,
+ "step": 4078
+ },
+ {
+ "epoch": 56.65705548274356,
+ "grad_norm": 0.2687791585922241,
+ "learning_rate": 0.0006,
+ "loss": 3.545924663543701,
+ "step": 4079
+ },
+ {
+ "epoch": 56.671035386631715,
+ "grad_norm": 0.22466111183166504,
+ "learning_rate": 0.0006,
+ "loss": 3.5556845664978027,
+ "step": 4080
+ },
+ {
+ "epoch": 56.68501529051988,
+ "grad_norm": 0.2177814394235611,
+ "learning_rate": 0.0006,
+ "loss": 3.5799131393432617,
+ "step": 4081
+ },
+ {
+ "epoch": 56.69899519440804,
+ "grad_norm": 0.2700476050376892,
+ "learning_rate": 0.0006,
+ "loss": 3.5859055519104004,
+ "step": 4082
+ },
+ {
+ "epoch": 56.7129750982962,
+ "grad_norm": 0.28230178356170654,
+ "learning_rate": 0.0006,
+ "loss": 3.5733890533447266,
+ "step": 4083
+ },
+ {
+ "epoch": 56.72695500218436,
+ "grad_norm": 0.29298731684684753,
+ "learning_rate": 0.0006,
+ "loss": 3.556626319885254,
+ "step": 4084
+ },
+ {
+ "epoch": 56.74093490607252,
+ "grad_norm": 0.2818183898925781,
+ "learning_rate": 0.0006,
+ "loss": 3.5884718894958496,
+ "step": 4085
+ },
+ {
+ "epoch": 56.75491480996068,
+ "grad_norm": 0.24008697271347046,
+ "learning_rate": 0.0006,
+ "loss": 3.5464529991149902,
+ "step": 4086
+ },
+ {
+ "epoch": 56.768894713848844,
+ "grad_norm": 0.23406296968460083,
+ "learning_rate": 0.0006,
+ "loss": 3.5622801780700684,
+ "step": 4087
+ },
+ {
+ "epoch": 56.782874617737,
+ "grad_norm": 0.26089322566986084,
+ "learning_rate": 0.0006,
+ "loss": 3.5775020122528076,
+ "step": 4088
+ },
+ {
+ "epoch": 56.796854521625164,
+ "grad_norm": 0.2576654851436615,
+ "learning_rate": 0.0006,
+ "loss": 3.5543627738952637,
+ "step": 4089
+ },
+ {
+ "epoch": 56.81083442551333,
+ "grad_norm": 0.26576393842697144,
+ "learning_rate": 0.0006,
+ "loss": 3.546170711517334,
+ "step": 4090
+ },
+ {
+ "epoch": 56.824814329401484,
+ "grad_norm": 0.22380715608596802,
+ "learning_rate": 0.0006,
+ "loss": 3.5437729358673096,
+ "step": 4091
+ },
+ {
+ "epoch": 56.83879423328965,
+ "grad_norm": 0.20786714553833008,
+ "learning_rate": 0.0006,
+ "loss": 3.5951266288757324,
+ "step": 4092
+ },
+ {
+ "epoch": 56.8527741371778,
+ "grad_norm": 0.23177042603492737,
+ "learning_rate": 0.0006,
+ "loss": 3.549454689025879,
+ "step": 4093
+ },
+ {
+ "epoch": 56.86675404106597,
+ "grad_norm": 0.21466009318828583,
+ "learning_rate": 0.0006,
+ "loss": 3.5611233711242676,
+ "step": 4094
+ },
+ {
+ "epoch": 56.88073394495413,
+ "grad_norm": 0.20928414165973663,
+ "learning_rate": 0.0006,
+ "loss": 3.5550684928894043,
+ "step": 4095
+ },
+ {
+ "epoch": 56.89471384884229,
+ "grad_norm": 0.20727156102657318,
+ "learning_rate": 0.0006,
+ "loss": 3.552496910095215,
+ "step": 4096
+ },
+ {
+ "epoch": 56.90869375273045,
+ "grad_norm": 0.21370401978492737,
+ "learning_rate": 0.0006,
+ "loss": 3.5763869285583496,
+ "step": 4097
+ },
+ {
+ "epoch": 56.92267365661861,
+ "grad_norm": 0.22490337491035461,
+ "learning_rate": 0.0006,
+ "loss": 3.538986921310425,
+ "step": 4098
+ },
+ {
+ "epoch": 56.93665356050677,
+ "grad_norm": 0.23320236802101135,
+ "learning_rate": 0.0006,
+ "loss": 3.5514214038848877,
+ "step": 4099
+ },
+ {
+ "epoch": 56.95063346439493,
+ "grad_norm": 0.22050419449806213,
+ "learning_rate": 0.0006,
+ "loss": 3.5486960411071777,
+ "step": 4100
+ },
+ {
+ "epoch": 56.964613368283096,
+ "grad_norm": 0.2241443395614624,
+ "learning_rate": 0.0006,
+ "loss": 3.5858001708984375,
+ "step": 4101
+ },
+ {
+ "epoch": 56.97859327217125,
+ "grad_norm": 0.24904389679431915,
+ "learning_rate": 0.0006,
+ "loss": 3.586472511291504,
+ "step": 4102
+ },
+ {
+ "epoch": 56.992573176059416,
+ "grad_norm": 0.2333211451768875,
+ "learning_rate": 0.0006,
+ "loss": 3.5463132858276367,
+ "step": 4103
+ },
+ {
+ "epoch": 57.0,
+ "grad_norm": 0.24142783880233765,
+ "learning_rate": 0.0006,
+ "loss": 3.5642542839050293,
+ "step": 4104
+ },
+ {
+ "epoch": 57.0,
+ "eval_loss": 3.973973035812378,
+ "eval_runtime": 46.2906,
+ "eval_samples_per_second": 52.754,
+ "eval_steps_per_second": 3.305,
+ "step": 4104
+ },
+ {
+ "epoch": 57.01397990388816,
+ "grad_norm": 0.21989624202251434,
+ "learning_rate": 0.0006,
+ "loss": 3.539435863494873,
+ "step": 4105
+ },
+ {
+ "epoch": 57.02795980777632,
+ "grad_norm": 0.24061834812164307,
+ "learning_rate": 0.0006,
+ "loss": 3.5251410007476807,
+ "step": 4106
+ },
+ {
+ "epoch": 57.04193971166448,
+ "grad_norm": 0.2483278512954712,
+ "learning_rate": 0.0006,
+ "loss": 3.5104010105133057,
+ "step": 4107
+ },
+ {
+ "epoch": 57.05591961555265,
+ "grad_norm": 0.2717698812484741,
+ "learning_rate": 0.0006,
+ "loss": 3.5134170055389404,
+ "step": 4108
+ },
+ {
+ "epoch": 57.0698995194408,
+ "grad_norm": 0.27335646748542786,
+ "learning_rate": 0.0006,
+ "loss": 3.53574275970459,
+ "step": 4109
+ },
+ {
+ "epoch": 57.083879423328966,
+ "grad_norm": 0.2423052042722702,
+ "learning_rate": 0.0006,
+ "loss": 3.4960169792175293,
+ "step": 4110
+ },
+ {
+ "epoch": 57.09785932721712,
+ "grad_norm": 0.2241092175245285,
+ "learning_rate": 0.0006,
+ "loss": 3.5409107208251953,
+ "step": 4111
+ },
+ {
+ "epoch": 57.111839231105286,
+ "grad_norm": 0.23098452389240265,
+ "learning_rate": 0.0006,
+ "loss": 3.5326709747314453,
+ "step": 4112
+ },
+ {
+ "epoch": 57.12581913499345,
+ "grad_norm": 0.2500186562538147,
+ "learning_rate": 0.0006,
+ "loss": 3.509953498840332,
+ "step": 4113
+ },
+ {
+ "epoch": 57.139799038881605,
+ "grad_norm": 0.26994550228118896,
+ "learning_rate": 0.0006,
+ "loss": 3.560410499572754,
+ "step": 4114
+ },
+ {
+ "epoch": 57.15377894276977,
+ "grad_norm": 0.24950402975082397,
+ "learning_rate": 0.0006,
+ "loss": 3.517613649368286,
+ "step": 4115
+ },
+ {
+ "epoch": 57.16775884665793,
+ "grad_norm": 0.21742430329322815,
+ "learning_rate": 0.0006,
+ "loss": 3.531256675720215,
+ "step": 4116
+ },
+ {
+ "epoch": 57.18173875054609,
+ "grad_norm": 0.29069146513938904,
+ "learning_rate": 0.0006,
+ "loss": 3.5283756256103516,
+ "step": 4117
+ },
+ {
+ "epoch": 57.19571865443425,
+ "grad_norm": 0.2901996970176697,
+ "learning_rate": 0.0006,
+ "loss": 3.5460801124572754,
+ "step": 4118
+ },
+ {
+ "epoch": 57.20969855832241,
+ "grad_norm": 0.2534845471382141,
+ "learning_rate": 0.0006,
+ "loss": 3.515536308288574,
+ "step": 4119
+ },
+ {
+ "epoch": 57.22367846221057,
+ "grad_norm": 0.2352340817451477,
+ "learning_rate": 0.0006,
+ "loss": 3.5281717777252197,
+ "step": 4120
+ },
+ {
+ "epoch": 57.237658366098735,
+ "grad_norm": 0.2263645976781845,
+ "learning_rate": 0.0006,
+ "loss": 3.5629191398620605,
+ "step": 4121
+ },
+ {
+ "epoch": 57.25163826998689,
+ "grad_norm": 0.21413370966911316,
+ "learning_rate": 0.0006,
+ "loss": 3.5342142581939697,
+ "step": 4122
+ },
+ {
+ "epoch": 57.265618173875055,
+ "grad_norm": 0.1969698667526245,
+ "learning_rate": 0.0006,
+ "loss": 3.5467586517333984,
+ "step": 4123
+ },
+ {
+ "epoch": 57.27959807776322,
+ "grad_norm": 0.2106606364250183,
+ "learning_rate": 0.0006,
+ "loss": 3.5409536361694336,
+ "step": 4124
+ },
+ {
+ "epoch": 57.293577981651374,
+ "grad_norm": 0.21824438869953156,
+ "learning_rate": 0.0006,
+ "loss": 3.5246548652648926,
+ "step": 4125
+ },
+ {
+ "epoch": 57.30755788553954,
+ "grad_norm": 0.2147768884897232,
+ "learning_rate": 0.0006,
+ "loss": 3.5411794185638428,
+ "step": 4126
+ },
+ {
+ "epoch": 57.3215377894277,
+ "grad_norm": 0.21352852880954742,
+ "learning_rate": 0.0006,
+ "loss": 3.569387197494507,
+ "step": 4127
+ },
+ {
+ "epoch": 57.33551769331586,
+ "grad_norm": 0.20957978069782257,
+ "learning_rate": 0.0006,
+ "loss": 3.522695779800415,
+ "step": 4128
+ },
+ {
+ "epoch": 57.34949759720402,
+ "grad_norm": 0.2013026475906372,
+ "learning_rate": 0.0006,
+ "loss": 3.5485787391662598,
+ "step": 4129
+ },
+ {
+ "epoch": 57.36347750109218,
+ "grad_norm": 0.2260376214981079,
+ "learning_rate": 0.0006,
+ "loss": 3.547607421875,
+ "step": 4130
+ },
+ {
+ "epoch": 57.37745740498034,
+ "grad_norm": 0.22991685569286346,
+ "learning_rate": 0.0006,
+ "loss": 3.5464730262756348,
+ "step": 4131
+ },
+ {
+ "epoch": 57.391437308868504,
+ "grad_norm": 0.19638051092624664,
+ "learning_rate": 0.0006,
+ "loss": 3.54355525970459,
+ "step": 4132
+ },
+ {
+ "epoch": 57.40541721275666,
+ "grad_norm": 0.19450774788856506,
+ "learning_rate": 0.0006,
+ "loss": 3.5490050315856934,
+ "step": 4133
+ },
+ {
+ "epoch": 57.419397116644824,
+ "grad_norm": 0.21798551082611084,
+ "learning_rate": 0.0006,
+ "loss": 3.56355619430542,
+ "step": 4134
+ },
+ {
+ "epoch": 57.43337702053299,
+ "grad_norm": 0.2129846215248108,
+ "learning_rate": 0.0006,
+ "loss": 3.5607380867004395,
+ "step": 4135
+ },
+ {
+ "epoch": 57.44735692442114,
+ "grad_norm": 0.20589227974414825,
+ "learning_rate": 0.0006,
+ "loss": 3.523768663406372,
+ "step": 4136
+ },
+ {
+ "epoch": 57.46133682830931,
+ "grad_norm": 0.21841686964035034,
+ "learning_rate": 0.0006,
+ "loss": 3.5187885761260986,
+ "step": 4137
+ },
+ {
+ "epoch": 57.47531673219746,
+ "grad_norm": 0.2118791788816452,
+ "learning_rate": 0.0006,
+ "loss": 3.5271782875061035,
+ "step": 4138
+ },
+ {
+ "epoch": 57.489296636085626,
+ "grad_norm": 0.21905459463596344,
+ "learning_rate": 0.0006,
+ "loss": 3.546968460083008,
+ "step": 4139
+ },
+ {
+ "epoch": 57.50327653997379,
+ "grad_norm": 0.23899133503437042,
+ "learning_rate": 0.0006,
+ "loss": 3.5156688690185547,
+ "step": 4140
+ },
+ {
+ "epoch": 57.517256443861946,
+ "grad_norm": 0.23873545229434967,
+ "learning_rate": 0.0006,
+ "loss": 3.5271472930908203,
+ "step": 4141
+ },
+ {
+ "epoch": 57.53123634775011,
+ "grad_norm": 0.20691858232021332,
+ "learning_rate": 0.0006,
+ "loss": 3.552854537963867,
+ "step": 4142
+ },
+ {
+ "epoch": 57.54521625163827,
+ "grad_norm": 0.21962891519069672,
+ "learning_rate": 0.0006,
+ "loss": 3.5258498191833496,
+ "step": 4143
+ },
+ {
+ "epoch": 57.55919615552643,
+ "grad_norm": 0.21762165427207947,
+ "learning_rate": 0.0006,
+ "loss": 3.566831588745117,
+ "step": 4144
+ },
+ {
+ "epoch": 57.57317605941459,
+ "grad_norm": 0.19603654742240906,
+ "learning_rate": 0.0006,
+ "loss": 3.5393714904785156,
+ "step": 4145
+ },
+ {
+ "epoch": 57.58715596330275,
+ "grad_norm": 0.20347437262535095,
+ "learning_rate": 0.0006,
+ "loss": 3.538390874862671,
+ "step": 4146
+ },
+ {
+ "epoch": 57.60113586719091,
+ "grad_norm": 0.2179173231124878,
+ "learning_rate": 0.0006,
+ "loss": 3.566631317138672,
+ "step": 4147
+ },
+ {
+ "epoch": 57.615115771079076,
+ "grad_norm": 0.19678309559822083,
+ "learning_rate": 0.0006,
+ "loss": 3.5659375190734863,
+ "step": 4148
+ },
+ {
+ "epoch": 57.62909567496723,
+ "grad_norm": 0.20221677422523499,
+ "learning_rate": 0.0006,
+ "loss": 3.5679430961608887,
+ "step": 4149
+ },
+ {
+ "epoch": 57.643075578855395,
+ "grad_norm": 0.21337579190731049,
+ "learning_rate": 0.0006,
+ "loss": 3.5330681800842285,
+ "step": 4150
+ },
+ {
+ "epoch": 57.65705548274356,
+ "grad_norm": 0.2646789848804474,
+ "learning_rate": 0.0006,
+ "loss": 3.5216803550720215,
+ "step": 4151
+ },
+ {
+ "epoch": 57.671035386631715,
+ "grad_norm": 0.304950088262558,
+ "learning_rate": 0.0006,
+ "loss": 3.5570156574249268,
+ "step": 4152
+ },
+ {
+ "epoch": 57.68501529051988,
+ "grad_norm": 0.2739402651786804,
+ "learning_rate": 0.0006,
+ "loss": 3.5844314098358154,
+ "step": 4153
+ },
+ {
+ "epoch": 57.69899519440804,
+ "grad_norm": 0.19060099124908447,
+ "learning_rate": 0.0006,
+ "loss": 3.571052074432373,
+ "step": 4154
+ },
+ {
+ "epoch": 57.7129750982962,
+ "grad_norm": 0.2941007614135742,
+ "learning_rate": 0.0006,
+ "loss": 3.543100357055664,
+ "step": 4155
+ },
+ {
+ "epoch": 57.72695500218436,
+ "grad_norm": 0.34624332189559937,
+ "learning_rate": 0.0006,
+ "loss": 3.564270496368408,
+ "step": 4156
+ },
+ {
+ "epoch": 57.74093490607252,
+ "grad_norm": 0.30635201930999756,
+ "learning_rate": 0.0006,
+ "loss": 3.5390584468841553,
+ "step": 4157
+ },
+ {
+ "epoch": 57.75491480996068,
+ "grad_norm": 0.2204878330230713,
+ "learning_rate": 0.0006,
+ "loss": 3.5427281856536865,
+ "step": 4158
+ },
+ {
+ "epoch": 57.768894713848844,
+ "grad_norm": 0.20659378170967102,
+ "learning_rate": 0.0006,
+ "loss": 3.528977155685425,
+ "step": 4159
+ },
+ {
+ "epoch": 57.782874617737,
+ "grad_norm": 0.2281361073255539,
+ "learning_rate": 0.0006,
+ "loss": 3.5531792640686035,
+ "step": 4160
+ },
+ {
+ "epoch": 57.796854521625164,
+ "grad_norm": 0.22478239238262177,
+ "learning_rate": 0.0006,
+ "loss": 3.566704750061035,
+ "step": 4161
+ },
+ {
+ "epoch": 57.81083442551333,
+ "grad_norm": 0.20797103643417358,
+ "learning_rate": 0.0006,
+ "loss": 3.5684943199157715,
+ "step": 4162
+ },
+ {
+ "epoch": 57.824814329401484,
+ "grad_norm": 0.2108374983072281,
+ "learning_rate": 0.0006,
+ "loss": 3.5475950241088867,
+ "step": 4163
+ },
+ {
+ "epoch": 57.83879423328965,
+ "grad_norm": 0.2268034815788269,
+ "learning_rate": 0.0006,
+ "loss": 3.5456833839416504,
+ "step": 4164
+ },
+ {
+ "epoch": 57.8527741371778,
+ "grad_norm": 0.2131519913673401,
+ "learning_rate": 0.0006,
+ "loss": 3.5316243171691895,
+ "step": 4165
+ },
+ {
+ "epoch": 57.86675404106597,
+ "grad_norm": 0.20163841545581818,
+ "learning_rate": 0.0006,
+ "loss": 3.5320897102355957,
+ "step": 4166
+ },
+ {
+ "epoch": 57.88073394495413,
+ "grad_norm": 0.20961757004261017,
+ "learning_rate": 0.0006,
+ "loss": 3.5800695419311523,
+ "step": 4167
+ },
+ {
+ "epoch": 57.89471384884229,
+ "grad_norm": 0.2061416506767273,
+ "learning_rate": 0.0006,
+ "loss": 3.544395923614502,
+ "step": 4168
+ },
+ {
+ "epoch": 57.90869375273045,
+ "grad_norm": 0.20306318998336792,
+ "learning_rate": 0.0006,
+ "loss": 3.554436683654785,
+ "step": 4169
+ },
+ {
+ "epoch": 57.92267365661861,
+ "grad_norm": 0.20685963332653046,
+ "learning_rate": 0.0006,
+ "loss": 3.5614635944366455,
+ "step": 4170
+ },
+ {
+ "epoch": 57.93665356050677,
+ "grad_norm": 0.19938082993030548,
+ "learning_rate": 0.0006,
+ "loss": 3.578136920928955,
+ "step": 4171
+ },
+ {
+ "epoch": 57.95063346439493,
+ "grad_norm": 0.2150411158800125,
+ "learning_rate": 0.0006,
+ "loss": 3.5754270553588867,
+ "step": 4172
+ },
+ {
+ "epoch": 57.964613368283096,
+ "grad_norm": 0.23399604856967926,
+ "learning_rate": 0.0006,
+ "loss": 3.5553112030029297,
+ "step": 4173
+ },
+ {
+ "epoch": 57.97859327217125,
+ "grad_norm": 0.2496841847896576,
+ "learning_rate": 0.0006,
+ "loss": 3.5509696006774902,
+ "step": 4174
+ },
+ {
+ "epoch": 57.992573176059416,
+ "grad_norm": 0.23759980499744415,
+ "learning_rate": 0.0006,
+ "loss": 3.5806684494018555,
+ "step": 4175
+ },
+ {
+ "epoch": 58.0,
+ "grad_norm": 0.2494540512561798,
+ "learning_rate": 0.0006,
+ "loss": 3.541708469390869,
+ "step": 4176
+ },
+ {
+ "epoch": 58.0,
+ "eval_loss": 3.970658779144287,
+ "eval_runtime": 46.0262,
+ "eval_samples_per_second": 53.057,
+ "eval_steps_per_second": 3.324,
+ "step": 4176
+ },
+ {
+ "epoch": 58.01397990388816,
+ "grad_norm": 0.2053643763065338,
+ "learning_rate": 0.0006,
+ "loss": 3.5264205932617188,
+ "step": 4177
+ },
+ {
+ "epoch": 58.02795980777632,
+ "grad_norm": 0.20680591464042664,
+ "learning_rate": 0.0006,
+ "loss": 3.495445728302002,
+ "step": 4178
+ },
+ {
+ "epoch": 58.04193971166448,
+ "grad_norm": 0.22180874645709991,
+ "learning_rate": 0.0006,
+ "loss": 3.546283483505249,
+ "step": 4179
+ },
+ {
+ "epoch": 58.05591961555265,
+ "grad_norm": 0.24255339801311493,
+ "learning_rate": 0.0006,
+ "loss": 3.50639271736145,
+ "step": 4180
+ },
+ {
+ "epoch": 58.0698995194408,
+ "grad_norm": 0.2747100591659546,
+ "learning_rate": 0.0006,
+ "loss": 3.514240026473999,
+ "step": 4181
+ },
+ {
+ "epoch": 58.083879423328966,
+ "grad_norm": 0.27960914373397827,
+ "learning_rate": 0.0006,
+ "loss": 3.5614311695098877,
+ "step": 4182
+ },
+ {
+ "epoch": 58.09785932721712,
+ "grad_norm": 0.25837743282318115,
+ "learning_rate": 0.0006,
+ "loss": 3.533560276031494,
+ "step": 4183
+ },
+ {
+ "epoch": 58.111839231105286,
+ "grad_norm": 0.24635657668113708,
+ "learning_rate": 0.0006,
+ "loss": 3.4867968559265137,
+ "step": 4184
+ },
+ {
+ "epoch": 58.12581913499345,
+ "grad_norm": 0.31520891189575195,
+ "learning_rate": 0.0006,
+ "loss": 3.5131611824035645,
+ "step": 4185
+ },
+ {
+ "epoch": 58.139799038881605,
+ "grad_norm": 0.36781513690948486,
+ "learning_rate": 0.0006,
+ "loss": 3.5149288177490234,
+ "step": 4186
+ },
+ {
+ "epoch": 58.15377894276977,
+ "grad_norm": 0.32433459162712097,
+ "learning_rate": 0.0006,
+ "loss": 3.5485405921936035,
+ "step": 4187
+ },
+ {
+ "epoch": 58.16775884665793,
+ "grad_norm": 0.2532205283641815,
+ "learning_rate": 0.0006,
+ "loss": 3.4994513988494873,
+ "step": 4188
+ },
+ {
+ "epoch": 58.18173875054609,
+ "grad_norm": 0.29780858755111694,
+ "learning_rate": 0.0006,
+ "loss": 3.496187448501587,
+ "step": 4189
+ },
+ {
+ "epoch": 58.19571865443425,
+ "grad_norm": 0.2804715037345886,
+ "learning_rate": 0.0006,
+ "loss": 3.5210375785827637,
+ "step": 4190
+ },
+ {
+ "epoch": 58.20969855832241,
+ "grad_norm": 0.2186010330915451,
+ "learning_rate": 0.0006,
+ "loss": 3.5139119625091553,
+ "step": 4191
+ },
+ {
+ "epoch": 58.22367846221057,
+ "grad_norm": 0.21566270291805267,
+ "learning_rate": 0.0006,
+ "loss": 3.5011606216430664,
+ "step": 4192
+ },
+ {
+ "epoch": 58.237658366098735,
+ "grad_norm": 0.21042031049728394,
+ "learning_rate": 0.0006,
+ "loss": 3.52295184135437,
+ "step": 4193
+ },
+ {
+ "epoch": 58.25163826998689,
+ "grad_norm": 0.20117411017417908,
+ "learning_rate": 0.0006,
+ "loss": 3.54593563079834,
+ "step": 4194
+ },
+ {
+ "epoch": 58.265618173875055,
+ "grad_norm": 0.21747945249080658,
+ "learning_rate": 0.0006,
+ "loss": 3.5341522693634033,
+ "step": 4195
+ },
+ {
+ "epoch": 58.27959807776322,
+ "grad_norm": 0.266024649143219,
+ "learning_rate": 0.0006,
+ "loss": 3.536393165588379,
+ "step": 4196
+ },
+ {
+ "epoch": 58.293577981651374,
+ "grad_norm": 0.2577304542064667,
+ "learning_rate": 0.0006,
+ "loss": 3.557468891143799,
+ "step": 4197
+ },
+ {
+ "epoch": 58.30755788553954,
+ "grad_norm": 0.22055941820144653,
+ "learning_rate": 0.0006,
+ "loss": 3.5307652950286865,
+ "step": 4198
+ },
+ {
+ "epoch": 58.3215377894277,
+ "grad_norm": 0.22490856051445007,
+ "learning_rate": 0.0006,
+ "loss": 3.506265163421631,
+ "step": 4199
+ },
+ {
+ "epoch": 58.33551769331586,
+ "grad_norm": 0.23600345849990845,
+ "learning_rate": 0.0006,
+ "loss": 3.523414134979248,
+ "step": 4200
+ },
+ {
+ "epoch": 58.34949759720402,
+ "grad_norm": 0.24872642755508423,
+ "learning_rate": 0.0006,
+ "loss": 3.561278820037842,
+ "step": 4201
+ },
+ {
+ "epoch": 58.36347750109218,
+ "grad_norm": 0.2702998220920563,
+ "learning_rate": 0.0006,
+ "loss": 3.573561191558838,
+ "step": 4202
+ },
+ {
+ "epoch": 58.37745740498034,
+ "grad_norm": 0.2532080411911011,
+ "learning_rate": 0.0006,
+ "loss": 3.5476837158203125,
+ "step": 4203
+ },
+ {
+ "epoch": 58.391437308868504,
+ "grad_norm": 0.23641079664230347,
+ "learning_rate": 0.0006,
+ "loss": 3.5464468002319336,
+ "step": 4204
+ },
+ {
+ "epoch": 58.40541721275666,
+ "grad_norm": 0.29965463280677795,
+ "learning_rate": 0.0006,
+ "loss": 3.560166835784912,
+ "step": 4205
+ },
+ {
+ "epoch": 58.419397116644824,
+ "grad_norm": 0.2778814136981964,
+ "learning_rate": 0.0006,
+ "loss": 3.5363056659698486,
+ "step": 4206
+ },
+ {
+ "epoch": 58.43337702053299,
+ "grad_norm": 0.23625248670578003,
+ "learning_rate": 0.0006,
+ "loss": 3.5575437545776367,
+ "step": 4207
+ },
+ {
+ "epoch": 58.44735692442114,
+ "grad_norm": 0.2165721356868744,
+ "learning_rate": 0.0006,
+ "loss": 3.541654109954834,
+ "step": 4208
+ },
+ {
+ "epoch": 58.46133682830931,
+ "grad_norm": 0.2261950671672821,
+ "learning_rate": 0.0006,
+ "loss": 3.5462238788604736,
+ "step": 4209
+ },
+ {
+ "epoch": 58.47531673219746,
+ "grad_norm": 0.23496517539024353,
+ "learning_rate": 0.0006,
+ "loss": 3.510138988494873,
+ "step": 4210
+ },
+ {
+ "epoch": 58.489296636085626,
+ "grad_norm": 0.27041929960250854,
+ "learning_rate": 0.0006,
+ "loss": 3.527822971343994,
+ "step": 4211
+ },
+ {
+ "epoch": 58.50327653997379,
+ "grad_norm": 0.2594013512134552,
+ "learning_rate": 0.0006,
+ "loss": 3.5358262062072754,
+ "step": 4212
+ },
+ {
+ "epoch": 58.517256443861946,
+ "grad_norm": 0.23336786031723022,
+ "learning_rate": 0.0006,
+ "loss": 3.530122756958008,
+ "step": 4213
+ },
+ {
+ "epoch": 58.53123634775011,
+ "grad_norm": 0.21956655383110046,
+ "learning_rate": 0.0006,
+ "loss": 3.541039228439331,
+ "step": 4214
+ },
+ {
+ "epoch": 58.54521625163827,
+ "grad_norm": 0.22432804107666016,
+ "learning_rate": 0.0006,
+ "loss": 3.520948886871338,
+ "step": 4215
+ },
+ {
+ "epoch": 58.55919615552643,
+ "grad_norm": 0.21589893102645874,
+ "learning_rate": 0.0006,
+ "loss": 3.569808006286621,
+ "step": 4216
+ },
+ {
+ "epoch": 58.57317605941459,
+ "grad_norm": 0.20264557003974915,
+ "learning_rate": 0.0006,
+ "loss": 3.514918088912964,
+ "step": 4217
+ },
+ {
+ "epoch": 58.58715596330275,
+ "grad_norm": 0.20911480486392975,
+ "learning_rate": 0.0006,
+ "loss": 3.5340771675109863,
+ "step": 4218
+ },
+ {
+ "epoch": 58.60113586719091,
+ "grad_norm": 0.21068964898586273,
+ "learning_rate": 0.0006,
+ "loss": 3.5388903617858887,
+ "step": 4219
+ },
+ {
+ "epoch": 58.615115771079076,
+ "grad_norm": 0.19314789772033691,
+ "learning_rate": 0.0006,
+ "loss": 3.5405967235565186,
+ "step": 4220
+ },
+ {
+ "epoch": 58.62909567496723,
+ "grad_norm": 0.18347802758216858,
+ "learning_rate": 0.0006,
+ "loss": 3.5208020210266113,
+ "step": 4221
+ },
+ {
+ "epoch": 58.643075578855395,
+ "grad_norm": 0.2082843780517578,
+ "learning_rate": 0.0006,
+ "loss": 3.5454647541046143,
+ "step": 4222
+ },
+ {
+ "epoch": 58.65705548274356,
+ "grad_norm": 0.2049611210823059,
+ "learning_rate": 0.0006,
+ "loss": 3.529350996017456,
+ "step": 4223
+ },
+ {
+ "epoch": 58.671035386631715,
+ "grad_norm": 0.19259536266326904,
+ "learning_rate": 0.0006,
+ "loss": 3.5589945316314697,
+ "step": 4224
+ },
+ {
+ "epoch": 58.68501529051988,
+ "grad_norm": 0.19039863348007202,
+ "learning_rate": 0.0006,
+ "loss": 3.5593101978302,
+ "step": 4225
+ },
+ {
+ "epoch": 58.69899519440804,
+ "grad_norm": 0.21481311321258545,
+ "learning_rate": 0.0006,
+ "loss": 3.55385422706604,
+ "step": 4226
+ },
+ {
+ "epoch": 58.7129750982962,
+ "grad_norm": 0.2053634226322174,
+ "learning_rate": 0.0006,
+ "loss": 3.535224437713623,
+ "step": 4227
+ },
+ {
+ "epoch": 58.72695500218436,
+ "grad_norm": 0.21111956238746643,
+ "learning_rate": 0.0006,
+ "loss": 3.5208349227905273,
+ "step": 4228
+ },
+ {
+ "epoch": 58.74093490607252,
+ "grad_norm": 0.22069109976291656,
+ "learning_rate": 0.0006,
+ "loss": 3.5292487144470215,
+ "step": 4229
+ },
+ {
+ "epoch": 58.75491480996068,
+ "grad_norm": 0.22549185156822205,
+ "learning_rate": 0.0006,
+ "loss": 3.556830406188965,
+ "step": 4230
+ },
+ {
+ "epoch": 58.768894713848844,
+ "grad_norm": 0.22341859340667725,
+ "learning_rate": 0.0006,
+ "loss": 3.5573582649230957,
+ "step": 4231
+ },
+ {
+ "epoch": 58.782874617737,
+ "grad_norm": 0.20664502680301666,
+ "learning_rate": 0.0006,
+ "loss": 3.578657865524292,
+ "step": 4232
+ },
+ {
+ "epoch": 58.796854521625164,
+ "grad_norm": 0.19885236024856567,
+ "learning_rate": 0.0006,
+ "loss": 3.5604476928710938,
+ "step": 4233
+ },
+ {
+ "epoch": 58.81083442551333,
+ "grad_norm": 0.19446797668933868,
+ "learning_rate": 0.0006,
+ "loss": 3.5686912536621094,
+ "step": 4234
+ },
+ {
+ "epoch": 58.824814329401484,
+ "grad_norm": 0.20658083260059357,
+ "learning_rate": 0.0006,
+ "loss": 3.563167095184326,
+ "step": 4235
+ },
+ {
+ "epoch": 58.83879423328965,
+ "grad_norm": 0.21075408160686493,
+ "learning_rate": 0.0006,
+ "loss": 3.5597028732299805,
+ "step": 4236
+ },
+ {
+ "epoch": 58.8527741371778,
+ "grad_norm": 0.20652376115322113,
+ "learning_rate": 0.0006,
+ "loss": 3.5651087760925293,
+ "step": 4237
+ },
+ {
+ "epoch": 58.86675404106597,
+ "grad_norm": 0.2243892401456833,
+ "learning_rate": 0.0006,
+ "loss": 3.5442488193511963,
+ "step": 4238
+ },
+ {
+ "epoch": 58.88073394495413,
+ "grad_norm": 0.23486459255218506,
+ "learning_rate": 0.0006,
+ "loss": 3.545135974884033,
+ "step": 4239
+ },
+ {
+ "epoch": 58.89471384884229,
+ "grad_norm": 0.23100663721561432,
+ "learning_rate": 0.0006,
+ "loss": 3.57177734375,
+ "step": 4240
+ },
+ {
+ "epoch": 58.90869375273045,
+ "grad_norm": 0.2269909679889679,
+ "learning_rate": 0.0006,
+ "loss": 3.528768301010132,
+ "step": 4241
+ },
+ {
+ "epoch": 58.92267365661861,
+ "grad_norm": 0.20349252223968506,
+ "learning_rate": 0.0006,
+ "loss": 3.591031789779663,
+ "step": 4242
+ },
+ {
+ "epoch": 58.93665356050677,
+ "grad_norm": 0.21038702130317688,
+ "learning_rate": 0.0006,
+ "loss": 3.5696892738342285,
+ "step": 4243
+ },
+ {
+ "epoch": 58.95063346439493,
+ "grad_norm": 0.21356560289859772,
+ "learning_rate": 0.0006,
+ "loss": 3.5708963871002197,
+ "step": 4244
+ },
+ {
+ "epoch": 58.964613368283096,
+ "grad_norm": 0.20008863508701324,
+ "learning_rate": 0.0006,
+ "loss": 3.524749279022217,
+ "step": 4245
+ },
+ {
+ "epoch": 58.97859327217125,
+ "grad_norm": 0.20453840494155884,
+ "learning_rate": 0.0006,
+ "loss": 3.5677876472473145,
+ "step": 4246
+ },
+ {
+ "epoch": 58.992573176059416,
+ "grad_norm": 0.21549056470394135,
+ "learning_rate": 0.0006,
+ "loss": 3.550870418548584,
+ "step": 4247
+ },
+ {
+ "epoch": 59.0,
+ "grad_norm": 0.2592930793762207,
+ "learning_rate": 0.0006,
+ "loss": 3.550673484802246,
+ "step": 4248
+ },
+ {
+ "epoch": 59.0,
+ "eval_loss": 3.968780279159546,
+ "eval_runtime": 45.6246,
+ "eval_samples_per_second": 53.524,
+ "eval_steps_per_second": 3.353,
+ "step": 4248
+ },
+ {
+ "epoch": 59.01397990388816,
+ "grad_norm": 0.218043252825737,
+ "learning_rate": 0.0006,
+ "loss": 3.49605655670166,
+ "step": 4249
+ },
+ {
+ "epoch": 59.02795980777632,
+ "grad_norm": 0.25112417340278625,
+ "learning_rate": 0.0006,
+ "loss": 3.534919023513794,
+ "step": 4250
+ },
+ {
+ "epoch": 59.04193971166448,
+ "grad_norm": 0.2785079777240753,
+ "learning_rate": 0.0006,
+ "loss": 3.5425362586975098,
+ "step": 4251
+ },
+ {
+ "epoch": 59.05591961555265,
+ "grad_norm": 0.2667599618434906,
+ "learning_rate": 0.0006,
+ "loss": 3.4955453872680664,
+ "step": 4252
+ },
+ {
+ "epoch": 59.0698995194408,
+ "grad_norm": 0.24012432992458344,
+ "learning_rate": 0.0006,
+ "loss": 3.4949915409088135,
+ "step": 4253
+ },
+ {
+ "epoch": 59.083879423328966,
+ "grad_norm": 0.2502294182777405,
+ "learning_rate": 0.0006,
+ "loss": 3.5163769721984863,
+ "step": 4254
+ },
+ {
+ "epoch": 59.09785932721712,
+ "grad_norm": 0.28585609793663025,
+ "learning_rate": 0.0006,
+ "loss": 3.4852542877197266,
+ "step": 4255
+ },
+ {
+ "epoch": 59.111839231105286,
+ "grad_norm": 0.2815989553928375,
+ "learning_rate": 0.0006,
+ "loss": 3.4991462230682373,
+ "step": 4256
+ },
+ {
+ "epoch": 59.12581913499345,
+ "grad_norm": 0.22922837734222412,
+ "learning_rate": 0.0006,
+ "loss": 3.511322021484375,
+ "step": 4257
+ },
+ {
+ "epoch": 59.139799038881605,
+ "grad_norm": 0.24964241683483124,
+ "learning_rate": 0.0006,
+ "loss": 3.521056652069092,
+ "step": 4258
+ },
+ {
+ "epoch": 59.15377894276977,
+ "grad_norm": 0.27568385004997253,
+ "learning_rate": 0.0006,
+ "loss": 3.514004707336426,
+ "step": 4259
+ },
+ {
+ "epoch": 59.16775884665793,
+ "grad_norm": 0.2605166733264923,
+ "learning_rate": 0.0006,
+ "loss": 3.5132668018341064,
+ "step": 4260
+ },
+ {
+ "epoch": 59.18173875054609,
+ "grad_norm": 0.24248117208480835,
+ "learning_rate": 0.0006,
+ "loss": 3.5492095947265625,
+ "step": 4261
+ },
+ {
+ "epoch": 59.19571865443425,
+ "grad_norm": 0.26359522342681885,
+ "learning_rate": 0.0006,
+ "loss": 3.521390438079834,
+ "step": 4262
+ },
+ {
+ "epoch": 59.20969855832241,
+ "grad_norm": 0.262248694896698,
+ "learning_rate": 0.0006,
+ "loss": 3.556307315826416,
+ "step": 4263
+ },
+ {
+ "epoch": 59.22367846221057,
+ "grad_norm": 0.23514866828918457,
+ "learning_rate": 0.0006,
+ "loss": 3.4989941120147705,
+ "step": 4264
+ },
+ {
+ "epoch": 59.237658366098735,
+ "grad_norm": 0.22758382558822632,
+ "learning_rate": 0.0006,
+ "loss": 3.5307068824768066,
+ "step": 4265
+ },
+ {
+ "epoch": 59.25163826998689,
+ "grad_norm": 0.24037839472293854,
+ "learning_rate": 0.0006,
+ "loss": 3.495872974395752,
+ "step": 4266
+ },
+ {
+ "epoch": 59.265618173875055,
+ "grad_norm": 0.22763589024543762,
+ "learning_rate": 0.0006,
+ "loss": 3.54052472114563,
+ "step": 4267
+ },
+ {
+ "epoch": 59.27959807776322,
+ "grad_norm": 0.22400406002998352,
+ "learning_rate": 0.0006,
+ "loss": 3.498671054840088,
+ "step": 4268
+ },
+ {
+ "epoch": 59.293577981651374,
+ "grad_norm": 0.2326328009366989,
+ "learning_rate": 0.0006,
+ "loss": 3.559108257293701,
+ "step": 4269
+ },
+ {
+ "epoch": 59.30755788553954,
+ "grad_norm": 0.24426043033599854,
+ "learning_rate": 0.0006,
+ "loss": 3.5245609283447266,
+ "step": 4270
+ },
+ {
+ "epoch": 59.3215377894277,
+ "grad_norm": 0.2159317582845688,
+ "learning_rate": 0.0006,
+ "loss": 3.5189900398254395,
+ "step": 4271
+ },
+ {
+ "epoch": 59.33551769331586,
+ "grad_norm": 0.19148702919483185,
+ "learning_rate": 0.0006,
+ "loss": 3.548433303833008,
+ "step": 4272
+ },
+ {
+ "epoch": 59.34949759720402,
+ "grad_norm": 0.23349083960056305,
+ "learning_rate": 0.0006,
+ "loss": 3.5475196838378906,
+ "step": 4273
+ },
+ {
+ "epoch": 59.36347750109218,
+ "grad_norm": 0.24024079740047455,
+ "learning_rate": 0.0006,
+ "loss": 3.5172529220581055,
+ "step": 4274
+ },
+ {
+ "epoch": 59.37745740498034,
+ "grad_norm": 0.23772001266479492,
+ "learning_rate": 0.0006,
+ "loss": 3.5428695678710938,
+ "step": 4275
+ },
+ {
+ "epoch": 59.391437308868504,
+ "grad_norm": 0.21134959161281586,
+ "learning_rate": 0.0006,
+ "loss": 3.523099422454834,
+ "step": 4276
+ },
+ {
+ "epoch": 59.40541721275666,
+ "grad_norm": 0.20760025084018707,
+ "learning_rate": 0.0006,
+ "loss": 3.55435848236084,
+ "step": 4277
+ },
+ {
+ "epoch": 59.419397116644824,
+ "grad_norm": 0.21113243699073792,
+ "learning_rate": 0.0006,
+ "loss": 3.5355324745178223,
+ "step": 4278
+ },
+ {
+ "epoch": 59.43337702053299,
+ "grad_norm": 0.21604566276073456,
+ "learning_rate": 0.0006,
+ "loss": 3.5517663955688477,
+ "step": 4279
+ },
+ {
+ "epoch": 59.44735692442114,
+ "grad_norm": 0.19646669924259186,
+ "learning_rate": 0.0006,
+ "loss": 3.538435935974121,
+ "step": 4280
+ },
+ {
+ "epoch": 59.46133682830931,
+ "grad_norm": 0.20394550263881683,
+ "learning_rate": 0.0006,
+ "loss": 3.528444290161133,
+ "step": 4281
+ },
+ {
+ "epoch": 59.47531673219746,
+ "grad_norm": 0.24543620645999908,
+ "learning_rate": 0.0006,
+ "loss": 3.5355372428894043,
+ "step": 4282
+ },
+ {
+ "epoch": 59.489296636085626,
+ "grad_norm": 0.24048425257205963,
+ "learning_rate": 0.0006,
+ "loss": 3.521336078643799,
+ "step": 4283
+ },
+ {
+ "epoch": 59.50327653997379,
+ "grad_norm": 0.23630213737487793,
+ "learning_rate": 0.0006,
+ "loss": 3.556244373321533,
+ "step": 4284
+ },
+ {
+ "epoch": 59.517256443861946,
+ "grad_norm": 0.2791444659233093,
+ "learning_rate": 0.0006,
+ "loss": 3.5927138328552246,
+ "step": 4285
+ },
+ {
+ "epoch": 59.53123634775011,
+ "grad_norm": 0.30325770378112793,
+ "learning_rate": 0.0006,
+ "loss": 3.559296131134033,
+ "step": 4286
+ },
+ {
+ "epoch": 59.54521625163827,
+ "grad_norm": 0.2708670496940613,
+ "learning_rate": 0.0006,
+ "loss": 3.531050205230713,
+ "step": 4287
+ },
+ {
+ "epoch": 59.55919615552643,
+ "grad_norm": 0.23795515298843384,
+ "learning_rate": 0.0006,
+ "loss": 3.5365982055664062,
+ "step": 4288
+ },
+ {
+ "epoch": 59.57317605941459,
+ "grad_norm": 0.20949627459049225,
+ "learning_rate": 0.0006,
+ "loss": 3.5591273307800293,
+ "step": 4289
+ },
+ {
+ "epoch": 59.58715596330275,
+ "grad_norm": 0.21885769069194794,
+ "learning_rate": 0.0006,
+ "loss": 3.4965288639068604,
+ "step": 4290
+ },
+ {
+ "epoch": 59.60113586719091,
+ "grad_norm": 0.22365590929985046,
+ "learning_rate": 0.0006,
+ "loss": 3.538118362426758,
+ "step": 4291
+ },
+ {
+ "epoch": 59.615115771079076,
+ "grad_norm": 0.23178881406784058,
+ "learning_rate": 0.0006,
+ "loss": 3.515933036804199,
+ "step": 4292
+ },
+ {
+ "epoch": 59.62909567496723,
+ "grad_norm": 0.21539060771465302,
+ "learning_rate": 0.0006,
+ "loss": 3.54185152053833,
+ "step": 4293
+ },
+ {
+ "epoch": 59.643075578855395,
+ "grad_norm": 0.22033682465553284,
+ "learning_rate": 0.0006,
+ "loss": 3.526728630065918,
+ "step": 4294
+ },
+ {
+ "epoch": 59.65705548274356,
+ "grad_norm": 0.23003938794136047,
+ "learning_rate": 0.0006,
+ "loss": 3.555710792541504,
+ "step": 4295
+ },
+ {
+ "epoch": 59.671035386631715,
+ "grad_norm": 0.22887346148490906,
+ "learning_rate": 0.0006,
+ "loss": 3.580883502960205,
+ "step": 4296
+ },
+ {
+ "epoch": 59.68501529051988,
+ "grad_norm": 0.2147892713546753,
+ "learning_rate": 0.0006,
+ "loss": 3.5318822860717773,
+ "step": 4297
+ },
+ {
+ "epoch": 59.69899519440804,
+ "grad_norm": 0.22063598036766052,
+ "learning_rate": 0.0006,
+ "loss": 3.5179357528686523,
+ "step": 4298
+ },
+ {
+ "epoch": 59.7129750982962,
+ "grad_norm": 0.22569656372070312,
+ "learning_rate": 0.0006,
+ "loss": 3.583181381225586,
+ "step": 4299
+ },
+ {
+ "epoch": 59.72695500218436,
+ "grad_norm": 0.2252701222896576,
+ "learning_rate": 0.0006,
+ "loss": 3.5780375003814697,
+ "step": 4300
+ },
+ {
+ "epoch": 59.74093490607252,
+ "grad_norm": 0.2288130521774292,
+ "learning_rate": 0.0006,
+ "loss": 3.570399284362793,
+ "step": 4301
+ },
+ {
+ "epoch": 59.75491480996068,
+ "grad_norm": 0.21879231929779053,
+ "learning_rate": 0.0006,
+ "loss": 3.540292739868164,
+ "step": 4302
+ },
+ {
+ "epoch": 59.768894713848844,
+ "grad_norm": 0.20675964653491974,
+ "learning_rate": 0.0006,
+ "loss": 3.532649040222168,
+ "step": 4303
+ },
+ {
+ "epoch": 59.782874617737,
+ "grad_norm": 0.21810708940029144,
+ "learning_rate": 0.0006,
+ "loss": 3.5156657695770264,
+ "step": 4304
+ },
+ {
+ "epoch": 59.796854521625164,
+ "grad_norm": 0.22701260447502136,
+ "learning_rate": 0.0006,
+ "loss": 3.5535266399383545,
+ "step": 4305
+ },
+ {
+ "epoch": 59.81083442551333,
+ "grad_norm": 0.23433080315589905,
+ "learning_rate": 0.0006,
+ "loss": 3.5280754566192627,
+ "step": 4306
+ },
+ {
+ "epoch": 59.824814329401484,
+ "grad_norm": 0.2254341095685959,
+ "learning_rate": 0.0006,
+ "loss": 3.534045696258545,
+ "step": 4307
+ },
+ {
+ "epoch": 59.83879423328965,
+ "grad_norm": 0.21756123006343842,
+ "learning_rate": 0.0006,
+ "loss": 3.5621533393859863,
+ "step": 4308
+ },
+ {
+ "epoch": 59.8527741371778,
+ "grad_norm": 0.19731850922107697,
+ "learning_rate": 0.0006,
+ "loss": 3.536633253097534,
+ "step": 4309
+ },
+ {
+ "epoch": 59.86675404106597,
+ "grad_norm": 0.2260110229253769,
+ "learning_rate": 0.0006,
+ "loss": 3.5721538066864014,
+ "step": 4310
+ },
+ {
+ "epoch": 59.88073394495413,
+ "grad_norm": 0.22728438675403595,
+ "learning_rate": 0.0006,
+ "loss": 3.5576961040496826,
+ "step": 4311
+ },
+ {
+ "epoch": 59.89471384884229,
+ "grad_norm": 0.20675411820411682,
+ "learning_rate": 0.0006,
+ "loss": 3.5070700645446777,
+ "step": 4312
+ },
+ {
+ "epoch": 59.90869375273045,
+ "grad_norm": 0.22258996963500977,
+ "learning_rate": 0.0006,
+ "loss": 3.564357280731201,
+ "step": 4313
+ },
+ {
+ "epoch": 59.92267365661861,
+ "grad_norm": 0.2429998815059662,
+ "learning_rate": 0.0006,
+ "loss": 3.519744873046875,
+ "step": 4314
+ },
+ {
+ "epoch": 59.93665356050677,
+ "grad_norm": 0.2394791841506958,
+ "learning_rate": 0.0006,
+ "loss": 3.533292055130005,
+ "step": 4315
+ },
+ {
+ "epoch": 59.95063346439493,
+ "grad_norm": 0.20659418404102325,
+ "learning_rate": 0.0006,
+ "loss": 3.5475940704345703,
+ "step": 4316
+ },
+ {
+ "epoch": 59.964613368283096,
+ "grad_norm": 0.19679132103919983,
+ "learning_rate": 0.0006,
+ "loss": 3.5794930458068848,
+ "step": 4317
+ },
+ {
+ "epoch": 59.97859327217125,
+ "grad_norm": 0.2133002132177353,
+ "learning_rate": 0.0006,
+ "loss": 3.5506505966186523,
+ "step": 4318
+ },
+ {
+ "epoch": 59.992573176059416,
+ "grad_norm": 0.22383661568164825,
+ "learning_rate": 0.0006,
+ "loss": 3.547708511352539,
+ "step": 4319
+ },
+ {
+ "epoch": 60.0,
+ "grad_norm": 0.25744178891181946,
+ "learning_rate": 0.0006,
+ "loss": 3.5519227981567383,
+ "step": 4320
+ },
+ {
+ "epoch": 60.0,
+ "eval_loss": 3.9816012382507324,
+ "eval_runtime": 46.3931,
+ "eval_samples_per_second": 52.637,
+ "eval_steps_per_second": 3.298,
+ "step": 4320
+ },
+ {
+ "epoch": 60.01397990388816,
+ "grad_norm": 0.2202005684375763,
+ "learning_rate": 0.0006,
+ "loss": 3.51010799407959,
+ "step": 4321
+ },
+ {
+ "epoch": 60.02795980777632,
+ "grad_norm": 0.24285688996315002,
+ "learning_rate": 0.0006,
+ "loss": 3.519137382507324,
+ "step": 4322
+ },
+ {
+ "epoch": 60.04193971166448,
+ "grad_norm": 0.2700578570365906,
+ "learning_rate": 0.0006,
+ "loss": 3.523392915725708,
+ "step": 4323
+ },
+ {
+ "epoch": 60.05591961555265,
+ "grad_norm": 0.30088669061660767,
+ "learning_rate": 0.0006,
+ "loss": 3.48724627494812,
+ "step": 4324
+ },
+ {
+ "epoch": 60.0698995194408,
+ "grad_norm": 0.30426669120788574,
+ "learning_rate": 0.0006,
+ "loss": 3.479025363922119,
+ "step": 4325
+ },
+ {
+ "epoch": 60.083879423328966,
+ "grad_norm": 0.2718220055103302,
+ "learning_rate": 0.0006,
+ "loss": 3.4923276901245117,
+ "step": 4326
+ },
+ {
+ "epoch": 60.09785932721712,
+ "grad_norm": 0.23625287413597107,
+ "learning_rate": 0.0006,
+ "loss": 3.5152812004089355,
+ "step": 4327
+ },
+ {
+ "epoch": 60.111839231105286,
+ "grad_norm": 0.23336869478225708,
+ "learning_rate": 0.0006,
+ "loss": 3.512453079223633,
+ "step": 4328
+ },
+ {
+ "epoch": 60.12581913499345,
+ "grad_norm": 0.24780215322971344,
+ "learning_rate": 0.0006,
+ "loss": 3.505812168121338,
+ "step": 4329
+ },
+ {
+ "epoch": 60.139799038881605,
+ "grad_norm": 0.25600194931030273,
+ "learning_rate": 0.0006,
+ "loss": 3.5281314849853516,
+ "step": 4330
+ },
+ {
+ "epoch": 60.15377894276977,
+ "grad_norm": 0.2458304911851883,
+ "learning_rate": 0.0006,
+ "loss": 3.4932949542999268,
+ "step": 4331
+ },
+ {
+ "epoch": 60.16775884665793,
+ "grad_norm": 0.2246888130903244,
+ "learning_rate": 0.0006,
+ "loss": 3.5295495986938477,
+ "step": 4332
+ },
+ {
+ "epoch": 60.18173875054609,
+ "grad_norm": 0.23762951791286469,
+ "learning_rate": 0.0006,
+ "loss": 3.4938201904296875,
+ "step": 4333
+ },
+ {
+ "epoch": 60.19571865443425,
+ "grad_norm": 0.24483945965766907,
+ "learning_rate": 0.0006,
+ "loss": 3.544774055480957,
+ "step": 4334
+ },
+ {
+ "epoch": 60.20969855832241,
+ "grad_norm": 0.24154368042945862,
+ "learning_rate": 0.0006,
+ "loss": 3.5352816581726074,
+ "step": 4335
+ },
+ {
+ "epoch": 60.22367846221057,
+ "grad_norm": 0.22929225862026215,
+ "learning_rate": 0.0006,
+ "loss": 3.5546953678131104,
+ "step": 4336
+ },
+ {
+ "epoch": 60.237658366098735,
+ "grad_norm": 0.21391373872756958,
+ "learning_rate": 0.0006,
+ "loss": 3.537647247314453,
+ "step": 4337
+ },
+ {
+ "epoch": 60.25163826998689,
+ "grad_norm": 0.20410357415676117,
+ "learning_rate": 0.0006,
+ "loss": 3.535831928253174,
+ "step": 4338
+ },
+ {
+ "epoch": 60.265618173875055,
+ "grad_norm": 0.2070329487323761,
+ "learning_rate": 0.0006,
+ "loss": 3.5234389305114746,
+ "step": 4339
+ },
+ {
+ "epoch": 60.27959807776322,
+ "grad_norm": 0.20540225505828857,
+ "learning_rate": 0.0006,
+ "loss": 3.557478427886963,
+ "step": 4340
+ },
+ {
+ "epoch": 60.293577981651374,
+ "grad_norm": 0.2124919891357422,
+ "learning_rate": 0.0006,
+ "loss": 3.532726764678955,
+ "step": 4341
+ },
+ {
+ "epoch": 60.30755788553954,
+ "grad_norm": 0.22207678854465485,
+ "learning_rate": 0.0006,
+ "loss": 3.5314202308654785,
+ "step": 4342
+ },
+ {
+ "epoch": 60.3215377894277,
+ "grad_norm": 0.2137281745672226,
+ "learning_rate": 0.0006,
+ "loss": 3.5491206645965576,
+ "step": 4343
+ },
+ {
+ "epoch": 60.33551769331586,
+ "grad_norm": 0.20728953182697296,
+ "learning_rate": 0.0006,
+ "loss": 3.5111031532287598,
+ "step": 4344
+ },
+ {
+ "epoch": 60.34949759720402,
+ "grad_norm": 0.22547020018100739,
+ "learning_rate": 0.0006,
+ "loss": 3.5311098098754883,
+ "step": 4345
+ },
+ {
+ "epoch": 60.36347750109218,
+ "grad_norm": 0.23352888226509094,
+ "learning_rate": 0.0006,
+ "loss": 3.5200939178466797,
+ "step": 4346
+ },
+ {
+ "epoch": 60.37745740498034,
+ "grad_norm": 0.21329060196876526,
+ "learning_rate": 0.0006,
+ "loss": 3.508589744567871,
+ "step": 4347
+ },
+ {
+ "epoch": 60.391437308868504,
+ "grad_norm": 0.1904045194387436,
+ "learning_rate": 0.0006,
+ "loss": 3.4850475788116455,
+ "step": 4348
+ },
+ {
+ "epoch": 60.40541721275666,
+ "grad_norm": 0.20586109161376953,
+ "learning_rate": 0.0006,
+ "loss": 3.5503551959991455,
+ "step": 4349
+ },
+ {
+ "epoch": 60.419397116644824,
+ "grad_norm": 0.21311818063259125,
+ "learning_rate": 0.0006,
+ "loss": 3.5243923664093018,
+ "step": 4350
+ },
+ {
+ "epoch": 60.43337702053299,
+ "grad_norm": 0.21479184925556183,
+ "learning_rate": 0.0006,
+ "loss": 3.553647041320801,
+ "step": 4351
+ },
+ {
+ "epoch": 60.44735692442114,
+ "grad_norm": 0.19994449615478516,
+ "learning_rate": 0.0006,
+ "loss": 3.5558884143829346,
+ "step": 4352
+ },
+ {
+ "epoch": 60.46133682830931,
+ "grad_norm": 0.21455694735050201,
+ "learning_rate": 0.0006,
+ "loss": 3.5186543464660645,
+ "step": 4353
+ },
+ {
+ "epoch": 60.47531673219746,
+ "grad_norm": 0.21904151141643524,
+ "learning_rate": 0.0006,
+ "loss": 3.526367425918579,
+ "step": 4354
+ },
+ {
+ "epoch": 60.489296636085626,
+ "grad_norm": 0.1908986121416092,
+ "learning_rate": 0.0006,
+ "loss": 3.541072368621826,
+ "step": 4355
+ },
+ {
+ "epoch": 60.50327653997379,
+ "grad_norm": 0.20290519297122955,
+ "learning_rate": 0.0006,
+ "loss": 3.530333995819092,
+ "step": 4356
+ },
+ {
+ "epoch": 60.517256443861946,
+ "grad_norm": 0.2318771779537201,
+ "learning_rate": 0.0006,
+ "loss": 3.5260486602783203,
+ "step": 4357
+ },
+ {
+ "epoch": 60.53123634775011,
+ "grad_norm": 0.25559669733047485,
+ "learning_rate": 0.0006,
+ "loss": 3.56851863861084,
+ "step": 4358
+ },
+ {
+ "epoch": 60.54521625163827,
+ "grad_norm": 0.2529429793357849,
+ "learning_rate": 0.0006,
+ "loss": 3.5519490242004395,
+ "step": 4359
+ },
+ {
+ "epoch": 60.55919615552643,
+ "grad_norm": 0.22857248783111572,
+ "learning_rate": 0.0006,
+ "loss": 3.5556063652038574,
+ "step": 4360
+ },
+ {
+ "epoch": 60.57317605941459,
+ "grad_norm": 0.21628573536872864,
+ "learning_rate": 0.0006,
+ "loss": 3.5321288108825684,
+ "step": 4361
+ },
+ {
+ "epoch": 60.58715596330275,
+ "grad_norm": 0.19497910141944885,
+ "learning_rate": 0.0006,
+ "loss": 3.5480406284332275,
+ "step": 4362
+ },
+ {
+ "epoch": 60.60113586719091,
+ "grad_norm": 0.204348623752594,
+ "learning_rate": 0.0006,
+ "loss": 3.522806167602539,
+ "step": 4363
+ },
+ {
+ "epoch": 60.615115771079076,
+ "grad_norm": 0.23013663291931152,
+ "learning_rate": 0.0006,
+ "loss": 3.512876033782959,
+ "step": 4364
+ },
+ {
+ "epoch": 60.62909567496723,
+ "grad_norm": 0.22948725521564484,
+ "learning_rate": 0.0006,
+ "loss": 3.54276704788208,
+ "step": 4365
+ },
+ {
+ "epoch": 60.643075578855395,
+ "grad_norm": 0.20528492331504822,
+ "learning_rate": 0.0006,
+ "loss": 3.5592503547668457,
+ "step": 4366
+ },
+ {
+ "epoch": 60.65705548274356,
+ "grad_norm": 0.214582160115242,
+ "learning_rate": 0.0006,
+ "loss": 3.5168166160583496,
+ "step": 4367
+ },
+ {
+ "epoch": 60.671035386631715,
+ "grad_norm": 0.18893493711948395,
+ "learning_rate": 0.0006,
+ "loss": 3.51012921333313,
+ "step": 4368
+ },
+ {
+ "epoch": 60.68501529051988,
+ "grad_norm": 0.19301992654800415,
+ "learning_rate": 0.0006,
+ "loss": 3.5396199226379395,
+ "step": 4369
+ },
+ {
+ "epoch": 60.69899519440804,
+ "grad_norm": 0.22339801490306854,
+ "learning_rate": 0.0006,
+ "loss": 3.5463967323303223,
+ "step": 4370
+ },
+ {
+ "epoch": 60.7129750982962,
+ "grad_norm": 0.19028180837631226,
+ "learning_rate": 0.0006,
+ "loss": 3.534419536590576,
+ "step": 4371
+ },
+ {
+ "epoch": 60.72695500218436,
+ "grad_norm": 0.2078639566898346,
+ "learning_rate": 0.0006,
+ "loss": 3.5345680713653564,
+ "step": 4372
+ },
+ {
+ "epoch": 60.74093490607252,
+ "grad_norm": 0.24292199313640594,
+ "learning_rate": 0.0006,
+ "loss": 3.5291242599487305,
+ "step": 4373
+ },
+ {
+ "epoch": 60.75491480996068,
+ "grad_norm": 0.25118497014045715,
+ "learning_rate": 0.0006,
+ "loss": 3.5362191200256348,
+ "step": 4374
+ },
+ {
+ "epoch": 60.768894713848844,
+ "grad_norm": 0.24816395342350006,
+ "learning_rate": 0.0006,
+ "loss": 3.539637804031372,
+ "step": 4375
+ },
+ {
+ "epoch": 60.782874617737,
+ "grad_norm": 0.23654010891914368,
+ "learning_rate": 0.0006,
+ "loss": 3.482605457305908,
+ "step": 4376
+ },
+ {
+ "epoch": 60.796854521625164,
+ "grad_norm": 0.21593770384788513,
+ "learning_rate": 0.0006,
+ "loss": 3.550279140472412,
+ "step": 4377
+ },
+ {
+ "epoch": 60.81083442551333,
+ "grad_norm": 0.21346014738082886,
+ "learning_rate": 0.0006,
+ "loss": 3.541086196899414,
+ "step": 4378
+ },
+ {
+ "epoch": 60.824814329401484,
+ "grad_norm": 0.2284841537475586,
+ "learning_rate": 0.0006,
+ "loss": 3.544254779815674,
+ "step": 4379
+ },
+ {
+ "epoch": 60.83879423328965,
+ "grad_norm": 0.23353151977062225,
+ "learning_rate": 0.0006,
+ "loss": 3.5606589317321777,
+ "step": 4380
+ },
+ {
+ "epoch": 60.8527741371778,
+ "grad_norm": 0.2201574146747589,
+ "learning_rate": 0.0006,
+ "loss": 3.524120807647705,
+ "step": 4381
+ },
+ {
+ "epoch": 60.86675404106597,
+ "grad_norm": 0.2277211993932724,
+ "learning_rate": 0.0006,
+ "loss": 3.553539276123047,
+ "step": 4382
+ },
+ {
+ "epoch": 60.88073394495413,
+ "grad_norm": 0.2282724678516388,
+ "learning_rate": 0.0006,
+ "loss": 3.5247130393981934,
+ "step": 4383
+ },
+ {
+ "epoch": 60.89471384884229,
+ "grad_norm": 0.20859065651893616,
+ "learning_rate": 0.0006,
+ "loss": 3.5654680728912354,
+ "step": 4384
+ },
+ {
+ "epoch": 60.90869375273045,
+ "grad_norm": 0.1995432823896408,
+ "learning_rate": 0.0006,
+ "loss": 3.5091423988342285,
+ "step": 4385
+ },
+ {
+ "epoch": 60.92267365661861,
+ "grad_norm": 0.19769565761089325,
+ "learning_rate": 0.0006,
+ "loss": 3.5375986099243164,
+ "step": 4386
+ },
+ {
+ "epoch": 60.93665356050677,
+ "grad_norm": 0.21246176958084106,
+ "learning_rate": 0.0006,
+ "loss": 3.570774793624878,
+ "step": 4387
+ },
+ {
+ "epoch": 60.95063346439493,
+ "grad_norm": 0.2212657630443573,
+ "learning_rate": 0.0006,
+ "loss": 3.5192928314208984,
+ "step": 4388
+ },
+ {
+ "epoch": 60.964613368283096,
+ "grad_norm": 0.2258632481098175,
+ "learning_rate": 0.0006,
+ "loss": 3.5356457233428955,
+ "step": 4389
+ },
+ {
+ "epoch": 60.97859327217125,
+ "grad_norm": 0.1998971700668335,
+ "learning_rate": 0.0006,
+ "loss": 3.52758526802063,
+ "step": 4390
+ },
+ {
+ "epoch": 60.992573176059416,
+ "grad_norm": 0.1932399868965149,
+ "learning_rate": 0.0006,
+ "loss": 3.562718391418457,
+ "step": 4391
+ },
+ {
+ "epoch": 61.0,
+ "grad_norm": 0.24292197823524475,
+ "learning_rate": 0.0006,
+ "loss": 3.550189971923828,
+ "step": 4392
+ },
+ {
+ "epoch": 61.0,
+ "eval_loss": 3.974423408508301,
+ "eval_runtime": 45.8822,
+ "eval_samples_per_second": 53.223,
+ "eval_steps_per_second": 3.335,
+ "step": 4392
+ },
+ {
+ "epoch": 61.01397990388816,
+ "grad_norm": 0.2216092199087143,
+ "learning_rate": 0.0006,
+ "loss": 3.51747989654541,
+ "step": 4393
+ },
+ {
+ "epoch": 61.02795980777632,
+ "grad_norm": 0.23488417267799377,
+ "learning_rate": 0.0006,
+ "loss": 3.529064178466797,
+ "step": 4394
+ },
+ {
+ "epoch": 61.04193971166448,
+ "grad_norm": 0.2805800437927246,
+ "learning_rate": 0.0006,
+ "loss": 3.4868035316467285,
+ "step": 4395
+ },
+ {
+ "epoch": 61.05591961555265,
+ "grad_norm": 0.32623469829559326,
+ "learning_rate": 0.0006,
+ "loss": 3.5209708213806152,
+ "step": 4396
+ },
+ {
+ "epoch": 61.0698995194408,
+ "grad_norm": 0.2645402252674103,
+ "learning_rate": 0.0006,
+ "loss": 3.524512767791748,
+ "step": 4397
+ },
+ {
+ "epoch": 61.083879423328966,
+ "grad_norm": 0.21118173003196716,
+ "learning_rate": 0.0006,
+ "loss": 3.5167856216430664,
+ "step": 4398
+ },
+ {
+ "epoch": 61.09785932721712,
+ "grad_norm": 0.28649622201919556,
+ "learning_rate": 0.0006,
+ "loss": 3.5122973918914795,
+ "step": 4399
+ },
+ {
+ "epoch": 61.111839231105286,
+ "grad_norm": 0.39095914363861084,
+ "learning_rate": 0.0006,
+ "loss": 3.481421947479248,
+ "step": 4400
+ },
+ {
+ "epoch": 61.12581913499345,
+ "grad_norm": 0.4013976454734802,
+ "learning_rate": 0.0006,
+ "loss": 3.4859061241149902,
+ "step": 4401
+ },
+ {
+ "epoch": 61.139799038881605,
+ "grad_norm": 0.30067047476768494,
+ "learning_rate": 0.0006,
+ "loss": 3.524209976196289,
+ "step": 4402
+ },
+ {
+ "epoch": 61.15377894276977,
+ "grad_norm": 0.2086855173110962,
+ "learning_rate": 0.0006,
+ "loss": 3.4974379539489746,
+ "step": 4403
+ },
+ {
+ "epoch": 61.16775884665793,
+ "grad_norm": 0.25443482398986816,
+ "learning_rate": 0.0006,
+ "loss": 3.517038345336914,
+ "step": 4404
+ },
+ {
+ "epoch": 61.18173875054609,
+ "grad_norm": 0.27545589208602905,
+ "learning_rate": 0.0006,
+ "loss": 3.5075795650482178,
+ "step": 4405
+ },
+ {
+ "epoch": 61.19571865443425,
+ "grad_norm": 0.269279420375824,
+ "learning_rate": 0.0006,
+ "loss": 3.512235641479492,
+ "step": 4406
+ },
+ {
+ "epoch": 61.20969855832241,
+ "grad_norm": 0.24606923758983612,
+ "learning_rate": 0.0006,
+ "loss": 3.5362367630004883,
+ "step": 4407
+ },
+ {
+ "epoch": 61.22367846221057,
+ "grad_norm": 0.23358067870140076,
+ "learning_rate": 0.0006,
+ "loss": 3.5256686210632324,
+ "step": 4408
+ },
+ {
+ "epoch": 61.237658366098735,
+ "grad_norm": 0.2528085708618164,
+ "learning_rate": 0.0006,
+ "loss": 3.504239559173584,
+ "step": 4409
+ },
+ {
+ "epoch": 61.25163826998689,
+ "grad_norm": 0.28145745396614075,
+ "learning_rate": 0.0006,
+ "loss": 3.4862139225006104,
+ "step": 4410
+ },
+ {
+ "epoch": 61.265618173875055,
+ "grad_norm": 0.26570039987564087,
+ "learning_rate": 0.0006,
+ "loss": 3.5138425827026367,
+ "step": 4411
+ },
+ {
+ "epoch": 61.27959807776322,
+ "grad_norm": 0.2391415685415268,
+ "learning_rate": 0.0006,
+ "loss": 3.537569999694824,
+ "step": 4412
+ },
+ {
+ "epoch": 61.293577981651374,
+ "grad_norm": 0.22194577753543854,
+ "learning_rate": 0.0006,
+ "loss": 3.5367543697357178,
+ "step": 4413
+ },
+ {
+ "epoch": 61.30755788553954,
+ "grad_norm": 0.2388865202665329,
+ "learning_rate": 0.0006,
+ "loss": 3.533341407775879,
+ "step": 4414
+ },
+ {
+ "epoch": 61.3215377894277,
+ "grad_norm": 0.2666625380516052,
+ "learning_rate": 0.0006,
+ "loss": 3.501162528991699,
+ "step": 4415
+ },
+ {
+ "epoch": 61.33551769331586,
+ "grad_norm": 0.25569409132003784,
+ "learning_rate": 0.0006,
+ "loss": 3.529283046722412,
+ "step": 4416
+ },
+ {
+ "epoch": 61.34949759720402,
+ "grad_norm": 0.24683351814746857,
+ "learning_rate": 0.0006,
+ "loss": 3.508152484893799,
+ "step": 4417
+ },
+ {
+ "epoch": 61.36347750109218,
+ "grad_norm": 0.22290605306625366,
+ "learning_rate": 0.0006,
+ "loss": 3.5309581756591797,
+ "step": 4418
+ },
+ {
+ "epoch": 61.37745740498034,
+ "grad_norm": 0.2174215167760849,
+ "learning_rate": 0.0006,
+ "loss": 3.508796453475952,
+ "step": 4419
+ },
+ {
+ "epoch": 61.391437308868504,
+ "grad_norm": 0.23006199300289154,
+ "learning_rate": 0.0006,
+ "loss": 3.5497584342956543,
+ "step": 4420
+ },
+ {
+ "epoch": 61.40541721275666,
+ "grad_norm": 0.2311345487833023,
+ "learning_rate": 0.0006,
+ "loss": 3.5524582862854004,
+ "step": 4421
+ },
+ {
+ "epoch": 61.419397116644824,
+ "grad_norm": 0.2296203076839447,
+ "learning_rate": 0.0006,
+ "loss": 3.5146689414978027,
+ "step": 4422
+ },
+ {
+ "epoch": 61.43337702053299,
+ "grad_norm": 0.24848754703998566,
+ "learning_rate": 0.0006,
+ "loss": 3.489335060119629,
+ "step": 4423
+ },
+ {
+ "epoch": 61.44735692442114,
+ "grad_norm": 0.23717737197875977,
+ "learning_rate": 0.0006,
+ "loss": 3.4982404708862305,
+ "step": 4424
+ },
+ {
+ "epoch": 61.46133682830931,
+ "grad_norm": 0.21826806664466858,
+ "learning_rate": 0.0006,
+ "loss": 3.5134825706481934,
+ "step": 4425
+ },
+ {
+ "epoch": 61.47531673219746,
+ "grad_norm": 0.22878992557525635,
+ "learning_rate": 0.0006,
+ "loss": 3.512604236602783,
+ "step": 4426
+ },
+ {
+ "epoch": 61.489296636085626,
+ "grad_norm": 0.21184465289115906,
+ "learning_rate": 0.0006,
+ "loss": 3.5314245223999023,
+ "step": 4427
+ },
+ {
+ "epoch": 61.50327653997379,
+ "grad_norm": 0.2129429429769516,
+ "learning_rate": 0.0006,
+ "loss": 3.51242733001709,
+ "step": 4428
+ },
+ {
+ "epoch": 61.517256443861946,
+ "grad_norm": 0.21566109359264374,
+ "learning_rate": 0.0006,
+ "loss": 3.5287160873413086,
+ "step": 4429
+ },
+ {
+ "epoch": 61.53123634775011,
+ "grad_norm": 0.2010934203863144,
+ "learning_rate": 0.0006,
+ "loss": 3.5250844955444336,
+ "step": 4430
+ },
+ {
+ "epoch": 61.54521625163827,
+ "grad_norm": 0.1979563683271408,
+ "learning_rate": 0.0006,
+ "loss": 3.553415536880493,
+ "step": 4431
+ },
+ {
+ "epoch": 61.55919615552643,
+ "grad_norm": 0.19513480365276337,
+ "learning_rate": 0.0006,
+ "loss": 3.500551223754883,
+ "step": 4432
+ },
+ {
+ "epoch": 61.57317605941459,
+ "grad_norm": 0.19601108133792877,
+ "learning_rate": 0.0006,
+ "loss": 3.532161235809326,
+ "step": 4433
+ },
+ {
+ "epoch": 61.58715596330275,
+ "grad_norm": 0.2054651528596878,
+ "learning_rate": 0.0006,
+ "loss": 3.5360732078552246,
+ "step": 4434
+ },
+ {
+ "epoch": 61.60113586719091,
+ "grad_norm": 0.2096887230873108,
+ "learning_rate": 0.0006,
+ "loss": 3.522620916366577,
+ "step": 4435
+ },
+ {
+ "epoch": 61.615115771079076,
+ "grad_norm": 0.19664394855499268,
+ "learning_rate": 0.0006,
+ "loss": 3.5298569202423096,
+ "step": 4436
+ },
+ {
+ "epoch": 61.62909567496723,
+ "grad_norm": 0.20641925930976868,
+ "learning_rate": 0.0006,
+ "loss": 3.521233320236206,
+ "step": 4437
+ },
+ {
+ "epoch": 61.643075578855395,
+ "grad_norm": 0.2013241946697235,
+ "learning_rate": 0.0006,
+ "loss": 3.536212682723999,
+ "step": 4438
+ },
+ {
+ "epoch": 61.65705548274356,
+ "grad_norm": 0.19561146199703217,
+ "learning_rate": 0.0006,
+ "loss": 3.569584846496582,
+ "step": 4439
+ },
+ {
+ "epoch": 61.671035386631715,
+ "grad_norm": 0.2281758189201355,
+ "learning_rate": 0.0006,
+ "loss": 3.5208396911621094,
+ "step": 4440
+ },
+ {
+ "epoch": 61.68501529051988,
+ "grad_norm": 0.2387618124485016,
+ "learning_rate": 0.0006,
+ "loss": 3.5338330268859863,
+ "step": 4441
+ },
+ {
+ "epoch": 61.69899519440804,
+ "grad_norm": 0.23753441870212555,
+ "learning_rate": 0.0006,
+ "loss": 3.5454416275024414,
+ "step": 4442
+ },
+ {
+ "epoch": 61.7129750982962,
+ "grad_norm": 0.2477191686630249,
+ "learning_rate": 0.0006,
+ "loss": 3.5409836769104004,
+ "step": 4443
+ },
+ {
+ "epoch": 61.72695500218436,
+ "grad_norm": 0.25156062841415405,
+ "learning_rate": 0.0006,
+ "loss": 3.5135607719421387,
+ "step": 4444
+ },
+ {
+ "epoch": 61.74093490607252,
+ "grad_norm": 0.21422065794467926,
+ "learning_rate": 0.0006,
+ "loss": 3.5514771938323975,
+ "step": 4445
+ },
+ {
+ "epoch": 61.75491480996068,
+ "grad_norm": 0.2103811502456665,
+ "learning_rate": 0.0006,
+ "loss": 3.544037103652954,
+ "step": 4446
+ },
+ {
+ "epoch": 61.768894713848844,
+ "grad_norm": 0.21455387771129608,
+ "learning_rate": 0.0006,
+ "loss": 3.5526280403137207,
+ "step": 4447
+ },
+ {
+ "epoch": 61.782874617737,
+ "grad_norm": 0.22101432085037231,
+ "learning_rate": 0.0006,
+ "loss": 3.510197639465332,
+ "step": 4448
+ },
+ {
+ "epoch": 61.796854521625164,
+ "grad_norm": 0.2093520164489746,
+ "learning_rate": 0.0006,
+ "loss": 3.52504301071167,
+ "step": 4449
+ },
+ {
+ "epoch": 61.81083442551333,
+ "grad_norm": 0.2224605530500412,
+ "learning_rate": 0.0006,
+ "loss": 3.5590806007385254,
+ "step": 4450
+ },
+ {
+ "epoch": 61.824814329401484,
+ "grad_norm": 0.22242501378059387,
+ "learning_rate": 0.0006,
+ "loss": 3.5409610271453857,
+ "step": 4451
+ },
+ {
+ "epoch": 61.83879423328965,
+ "grad_norm": 0.22488343715667725,
+ "learning_rate": 0.0006,
+ "loss": 3.537534236907959,
+ "step": 4452
+ },
+ {
+ "epoch": 61.8527741371778,
+ "grad_norm": 0.23510107398033142,
+ "learning_rate": 0.0006,
+ "loss": 3.5561342239379883,
+ "step": 4453
+ },
+ {
+ "epoch": 61.86675404106597,
+ "grad_norm": 0.237285315990448,
+ "learning_rate": 0.0006,
+ "loss": 3.539592742919922,
+ "step": 4454
+ },
+ {
+ "epoch": 61.88073394495413,
+ "grad_norm": 0.21573765575885773,
+ "learning_rate": 0.0006,
+ "loss": 3.552250385284424,
+ "step": 4455
+ },
+ {
+ "epoch": 61.89471384884229,
+ "grad_norm": 0.20348075032234192,
+ "learning_rate": 0.0006,
+ "loss": 3.5406012535095215,
+ "step": 4456
+ },
+ {
+ "epoch": 61.90869375273045,
+ "grad_norm": 0.21306075155735016,
+ "learning_rate": 0.0006,
+ "loss": 3.504248857498169,
+ "step": 4457
+ },
+ {
+ "epoch": 61.92267365661861,
+ "grad_norm": 0.2184341996908188,
+ "learning_rate": 0.0006,
+ "loss": 3.5441558361053467,
+ "step": 4458
+ },
+ {
+ "epoch": 61.93665356050677,
+ "grad_norm": 0.20888687670230865,
+ "learning_rate": 0.0006,
+ "loss": 3.517657518386841,
+ "step": 4459
+ },
+ {
+ "epoch": 61.95063346439493,
+ "grad_norm": 0.2066143900156021,
+ "learning_rate": 0.0006,
+ "loss": 3.525796890258789,
+ "step": 4460
+ },
+ {
+ "epoch": 61.964613368283096,
+ "grad_norm": 0.1906299591064453,
+ "learning_rate": 0.0006,
+ "loss": 3.550924777984619,
+ "step": 4461
+ },
+ {
+ "epoch": 61.97859327217125,
+ "grad_norm": 0.1834334284067154,
+ "learning_rate": 0.0006,
+ "loss": 3.5818099975585938,
+ "step": 4462
+ },
+ {
+ "epoch": 61.992573176059416,
+ "grad_norm": 0.22725825011730194,
+ "learning_rate": 0.0006,
+ "loss": 3.5573811531066895,
+ "step": 4463
+ },
+ {
+ "epoch": 62.0,
+ "grad_norm": 0.29936420917510986,
+ "learning_rate": 0.0006,
+ "loss": 3.557694435119629,
+ "step": 4464
+ },
+ {
+ "epoch": 62.0,
+ "eval_loss": 3.985543966293335,
+ "eval_runtime": 46.6388,
+ "eval_samples_per_second": 52.36,
+ "eval_steps_per_second": 3.281,
+ "step": 4464
+ },
+ {
+ "epoch": 62.01397990388816,
+ "grad_norm": 0.30896103382110596,
+ "learning_rate": 0.0006,
+ "loss": 3.4991438388824463,
+ "step": 4465
+ },
+ {
+ "epoch": 62.02795980777632,
+ "grad_norm": 0.27383437752723694,
+ "learning_rate": 0.0006,
+ "loss": 3.4710259437561035,
+ "step": 4466
+ },
+ {
+ "epoch": 62.04193971166448,
+ "grad_norm": 0.24412496387958527,
+ "learning_rate": 0.0006,
+ "loss": 3.4983878135681152,
+ "step": 4467
+ },
+ {
+ "epoch": 62.05591961555265,
+ "grad_norm": 0.2649880051612854,
+ "learning_rate": 0.0006,
+ "loss": 3.5481886863708496,
+ "step": 4468
+ },
+ {
+ "epoch": 62.0698995194408,
+ "grad_norm": 0.2625769078731537,
+ "learning_rate": 0.0006,
+ "loss": 3.5114197731018066,
+ "step": 4469
+ },
+ {
+ "epoch": 62.083879423328966,
+ "grad_norm": 0.234181210398674,
+ "learning_rate": 0.0006,
+ "loss": 3.504152536392212,
+ "step": 4470
+ },
+ {
+ "epoch": 62.09785932721712,
+ "grad_norm": 0.21403342485427856,
+ "learning_rate": 0.0006,
+ "loss": 3.50738525390625,
+ "step": 4471
+ },
+ {
+ "epoch": 62.111839231105286,
+ "grad_norm": 0.22780060768127441,
+ "learning_rate": 0.0006,
+ "loss": 3.518354892730713,
+ "step": 4472
+ },
+ {
+ "epoch": 62.12581913499345,
+ "grad_norm": 0.23725424706935883,
+ "learning_rate": 0.0006,
+ "loss": 3.5227513313293457,
+ "step": 4473
+ },
+ {
+ "epoch": 62.139799038881605,
+ "grad_norm": 0.23643283545970917,
+ "learning_rate": 0.0006,
+ "loss": 3.504271984100342,
+ "step": 4474
+ },
+ {
+ "epoch": 62.15377894276977,
+ "grad_norm": 0.22513480484485626,
+ "learning_rate": 0.0006,
+ "loss": 3.5232059955596924,
+ "step": 4475
+ },
+ {
+ "epoch": 62.16775884665793,
+ "grad_norm": 0.23375700414180756,
+ "learning_rate": 0.0006,
+ "loss": 3.506519317626953,
+ "step": 4476
+ },
+ {
+ "epoch": 62.18173875054609,
+ "grad_norm": 0.24691303074359894,
+ "learning_rate": 0.0006,
+ "loss": 3.5212974548339844,
+ "step": 4477
+ },
+ {
+ "epoch": 62.19571865443425,
+ "grad_norm": 0.23466123640537262,
+ "learning_rate": 0.0006,
+ "loss": 3.5295071601867676,
+ "step": 4478
+ },
+ {
+ "epoch": 62.20969855832241,
+ "grad_norm": 0.2432340532541275,
+ "learning_rate": 0.0006,
+ "loss": 3.487830638885498,
+ "step": 4479
+ },
+ {
+ "epoch": 62.22367846221057,
+ "grad_norm": 0.24575389921665192,
+ "learning_rate": 0.0006,
+ "loss": 3.5329103469848633,
+ "step": 4480
+ },
+ {
+ "epoch": 62.237658366098735,
+ "grad_norm": 0.2441941201686859,
+ "learning_rate": 0.0006,
+ "loss": 3.5230906009674072,
+ "step": 4481
+ },
+ {
+ "epoch": 62.25163826998689,
+ "grad_norm": 0.2278154343366623,
+ "learning_rate": 0.0006,
+ "loss": 3.4919002056121826,
+ "step": 4482
+ },
+ {
+ "epoch": 62.265618173875055,
+ "grad_norm": 0.23517796397209167,
+ "learning_rate": 0.0006,
+ "loss": 3.5137887001037598,
+ "step": 4483
+ },
+ {
+ "epoch": 62.27959807776322,
+ "grad_norm": 0.2533835470676422,
+ "learning_rate": 0.0006,
+ "loss": 3.526322841644287,
+ "step": 4484
+ },
+ {
+ "epoch": 62.293577981651374,
+ "grad_norm": 0.24535894393920898,
+ "learning_rate": 0.0006,
+ "loss": 3.5060930252075195,
+ "step": 4485
+ },
+ {
+ "epoch": 62.30755788553954,
+ "grad_norm": 0.23312991857528687,
+ "learning_rate": 0.0006,
+ "loss": 3.5015740394592285,
+ "step": 4486
+ },
+ {
+ "epoch": 62.3215377894277,
+ "grad_norm": 0.2073916792869568,
+ "learning_rate": 0.0006,
+ "loss": 3.5239500999450684,
+ "step": 4487
+ },
+ {
+ "epoch": 62.33551769331586,
+ "grad_norm": 0.23528249561786652,
+ "learning_rate": 0.0006,
+ "loss": 3.4946212768554688,
+ "step": 4488
+ },
+ {
+ "epoch": 62.34949759720402,
+ "grad_norm": 0.25181272625923157,
+ "learning_rate": 0.0006,
+ "loss": 3.5492000579833984,
+ "step": 4489
+ },
+ {
+ "epoch": 62.36347750109218,
+ "grad_norm": 0.250745564699173,
+ "learning_rate": 0.0006,
+ "loss": 3.491637706756592,
+ "step": 4490
+ },
+ {
+ "epoch": 62.37745740498034,
+ "grad_norm": 0.2461264729499817,
+ "learning_rate": 0.0006,
+ "loss": 3.514125108718872,
+ "step": 4491
+ },
+ {
+ "epoch": 62.391437308868504,
+ "grad_norm": 0.2265472114086151,
+ "learning_rate": 0.0006,
+ "loss": 3.5513534545898438,
+ "step": 4492
+ },
+ {
+ "epoch": 62.40541721275666,
+ "grad_norm": 0.21937128901481628,
+ "learning_rate": 0.0006,
+ "loss": 3.541867733001709,
+ "step": 4493
+ },
+ {
+ "epoch": 62.419397116644824,
+ "grad_norm": 0.21318639814853668,
+ "learning_rate": 0.0006,
+ "loss": 3.530449867248535,
+ "step": 4494
+ },
+ {
+ "epoch": 62.43337702053299,
+ "grad_norm": 0.21287934482097626,
+ "learning_rate": 0.0006,
+ "loss": 3.51837158203125,
+ "step": 4495
+ },
+ {
+ "epoch": 62.44735692442114,
+ "grad_norm": 0.21953676640987396,
+ "learning_rate": 0.0006,
+ "loss": 3.517456293106079,
+ "step": 4496
+ },
+ {
+ "epoch": 62.46133682830931,
+ "grad_norm": 0.23475255072116852,
+ "learning_rate": 0.0006,
+ "loss": 3.493858575820923,
+ "step": 4497
+ },
+ {
+ "epoch": 62.47531673219746,
+ "grad_norm": 0.21805652976036072,
+ "learning_rate": 0.0006,
+ "loss": 3.533367872238159,
+ "step": 4498
+ },
+ {
+ "epoch": 62.489296636085626,
+ "grad_norm": 0.21494100987911224,
+ "learning_rate": 0.0006,
+ "loss": 3.509060859680176,
+ "step": 4499
+ },
+ {
+ "epoch": 62.50327653997379,
+ "grad_norm": 0.20512273907661438,
+ "learning_rate": 0.0006,
+ "loss": 3.524643659591675,
+ "step": 4500
+ },
+ {
+ "epoch": 62.517256443861946,
+ "grad_norm": 0.2046528458595276,
+ "learning_rate": 0.0006,
+ "loss": 3.520662784576416,
+ "step": 4501
+ },
+ {
+ "epoch": 62.53123634775011,
+ "grad_norm": 0.21108978986740112,
+ "learning_rate": 0.0006,
+ "loss": 3.5121688842773438,
+ "step": 4502
+ },
+ {
+ "epoch": 62.54521625163827,
+ "grad_norm": 0.19229449331760406,
+ "learning_rate": 0.0006,
+ "loss": 3.5201103687286377,
+ "step": 4503
+ },
+ {
+ "epoch": 62.55919615552643,
+ "grad_norm": 0.1984805464744568,
+ "learning_rate": 0.0006,
+ "loss": 3.546898365020752,
+ "step": 4504
+ },
+ {
+ "epoch": 62.57317605941459,
+ "grad_norm": 0.21615411341190338,
+ "learning_rate": 0.0006,
+ "loss": 3.4933600425720215,
+ "step": 4505
+ },
+ {
+ "epoch": 62.58715596330275,
+ "grad_norm": 0.22868046164512634,
+ "learning_rate": 0.0006,
+ "loss": 3.506098747253418,
+ "step": 4506
+ },
+ {
+ "epoch": 62.60113586719091,
+ "grad_norm": 0.21856851875782013,
+ "learning_rate": 0.0006,
+ "loss": 3.5790011882781982,
+ "step": 4507
+ },
+ {
+ "epoch": 62.615115771079076,
+ "grad_norm": 0.20573008060455322,
+ "learning_rate": 0.0006,
+ "loss": 3.5236854553222656,
+ "step": 4508
+ },
+ {
+ "epoch": 62.62909567496723,
+ "grad_norm": 0.21287901699543,
+ "learning_rate": 0.0006,
+ "loss": 3.5323190689086914,
+ "step": 4509
+ },
+ {
+ "epoch": 62.643075578855395,
+ "grad_norm": 0.22703637182712555,
+ "learning_rate": 0.0006,
+ "loss": 3.5300045013427734,
+ "step": 4510
+ },
+ {
+ "epoch": 62.65705548274356,
+ "grad_norm": 0.2194957137107849,
+ "learning_rate": 0.0006,
+ "loss": 3.5727438926696777,
+ "step": 4511
+ },
+ {
+ "epoch": 62.671035386631715,
+ "grad_norm": 0.22334235906600952,
+ "learning_rate": 0.0006,
+ "loss": 3.521441698074341,
+ "step": 4512
+ },
+ {
+ "epoch": 62.68501529051988,
+ "grad_norm": 0.2559402883052826,
+ "learning_rate": 0.0006,
+ "loss": 3.513730525970459,
+ "step": 4513
+ },
+ {
+ "epoch": 62.69899519440804,
+ "grad_norm": 0.25041815638542175,
+ "learning_rate": 0.0006,
+ "loss": 3.536247968673706,
+ "step": 4514
+ },
+ {
+ "epoch": 62.7129750982962,
+ "grad_norm": 0.24958674609661102,
+ "learning_rate": 0.0006,
+ "loss": 3.5245871543884277,
+ "step": 4515
+ },
+ {
+ "epoch": 62.72695500218436,
+ "grad_norm": 0.22527511417865753,
+ "learning_rate": 0.0006,
+ "loss": 3.508802652359009,
+ "step": 4516
+ },
+ {
+ "epoch": 62.74093490607252,
+ "grad_norm": 0.19455862045288086,
+ "learning_rate": 0.0006,
+ "loss": 3.5296337604522705,
+ "step": 4517
+ },
+ {
+ "epoch": 62.75491480996068,
+ "grad_norm": 0.20303845405578613,
+ "learning_rate": 0.0006,
+ "loss": 3.57499098777771,
+ "step": 4518
+ },
+ {
+ "epoch": 62.768894713848844,
+ "grad_norm": 0.20851430296897888,
+ "learning_rate": 0.0006,
+ "loss": 3.5139262676239014,
+ "step": 4519
+ },
+ {
+ "epoch": 62.782874617737,
+ "grad_norm": 0.19765593111515045,
+ "learning_rate": 0.0006,
+ "loss": 3.5398616790771484,
+ "step": 4520
+ },
+ {
+ "epoch": 62.796854521625164,
+ "grad_norm": 0.20502524077892303,
+ "learning_rate": 0.0006,
+ "loss": 3.5163207054138184,
+ "step": 4521
+ },
+ {
+ "epoch": 62.81083442551333,
+ "grad_norm": 0.20211154222488403,
+ "learning_rate": 0.0006,
+ "loss": 3.5164661407470703,
+ "step": 4522
+ },
+ {
+ "epoch": 62.824814329401484,
+ "grad_norm": 0.19798780977725983,
+ "learning_rate": 0.0006,
+ "loss": 3.533470869064331,
+ "step": 4523
+ },
+ {
+ "epoch": 62.83879423328965,
+ "grad_norm": 0.21921277046203613,
+ "learning_rate": 0.0006,
+ "loss": 3.532498598098755,
+ "step": 4524
+ },
+ {
+ "epoch": 62.8527741371778,
+ "grad_norm": 0.2352060228586197,
+ "learning_rate": 0.0006,
+ "loss": 3.5674972534179688,
+ "step": 4525
+ },
+ {
+ "epoch": 62.86675404106597,
+ "grad_norm": 0.21286381781101227,
+ "learning_rate": 0.0006,
+ "loss": 3.508051872253418,
+ "step": 4526
+ },
+ {
+ "epoch": 62.88073394495413,
+ "grad_norm": 0.21557490527629852,
+ "learning_rate": 0.0006,
+ "loss": 3.5300607681274414,
+ "step": 4527
+ },
+ {
+ "epoch": 62.89471384884229,
+ "grad_norm": 0.23020988702774048,
+ "learning_rate": 0.0006,
+ "loss": 3.508237361907959,
+ "step": 4528
+ },
+ {
+ "epoch": 62.90869375273045,
+ "grad_norm": 0.26428425312042236,
+ "learning_rate": 0.0006,
+ "loss": 3.52371883392334,
+ "step": 4529
+ },
+ {
+ "epoch": 62.92267365661861,
+ "grad_norm": 0.2568773925304413,
+ "learning_rate": 0.0006,
+ "loss": 3.5371956825256348,
+ "step": 4530
+ },
+ {
+ "epoch": 62.93665356050677,
+ "grad_norm": 0.2216598093509674,
+ "learning_rate": 0.0006,
+ "loss": 3.5286736488342285,
+ "step": 4531
+ },
+ {
+ "epoch": 62.95063346439493,
+ "grad_norm": 0.23094940185546875,
+ "learning_rate": 0.0006,
+ "loss": 3.5389769077301025,
+ "step": 4532
+ },
+ {
+ "epoch": 62.964613368283096,
+ "grad_norm": 0.23469413816928864,
+ "learning_rate": 0.0006,
+ "loss": 3.546466588973999,
+ "step": 4533
+ },
+ {
+ "epoch": 62.97859327217125,
+ "grad_norm": 0.2289242148399353,
+ "learning_rate": 0.0006,
+ "loss": 3.565002679824829,
+ "step": 4534
+ },
+ {
+ "epoch": 62.992573176059416,
+ "grad_norm": 0.262317955493927,
+ "learning_rate": 0.0006,
+ "loss": 3.5388731956481934,
+ "step": 4535
+ },
+ {
+ "epoch": 63.0,
+ "grad_norm": 0.273183137178421,
+ "learning_rate": 0.0006,
+ "loss": 3.482903003692627,
+ "step": 4536
+ },
+ {
+ "epoch": 63.0,
+ "eval_loss": 3.973074436187744,
+ "eval_runtime": 45.5476,
+ "eval_samples_per_second": 53.614,
+ "eval_steps_per_second": 3.359,
+ "step": 4536
+ },
+ {
+ "epoch": 63.01397990388816,
+ "grad_norm": 0.22226323187351227,
+ "learning_rate": 0.0006,
+ "loss": 3.483798027038574,
+ "step": 4537
+ },
+ {
+ "epoch": 63.02795980777632,
+ "grad_norm": 0.24443542957305908,
+ "learning_rate": 0.0006,
+ "loss": 3.496903419494629,
+ "step": 4538
+ },
+ {
+ "epoch": 63.04193971166448,
+ "grad_norm": 0.2508153021335602,
+ "learning_rate": 0.0006,
+ "loss": 3.5234804153442383,
+ "step": 4539
+ },
+ {
+ "epoch": 63.05591961555265,
+ "grad_norm": 0.2610569894313812,
+ "learning_rate": 0.0006,
+ "loss": 3.502870798110962,
+ "step": 4540
+ },
+ {
+ "epoch": 63.0698995194408,
+ "grad_norm": 0.27980759739875793,
+ "learning_rate": 0.0006,
+ "loss": 3.50645112991333,
+ "step": 4541
+ },
+ {
+ "epoch": 63.083879423328966,
+ "grad_norm": 0.292883038520813,
+ "learning_rate": 0.0006,
+ "loss": 3.478863000869751,
+ "step": 4542
+ },
+ {
+ "epoch": 63.09785932721712,
+ "grad_norm": 0.2593323588371277,
+ "learning_rate": 0.0006,
+ "loss": 3.506967067718506,
+ "step": 4543
+ },
+ {
+ "epoch": 63.111839231105286,
+ "grad_norm": 0.23973147571086884,
+ "learning_rate": 0.0006,
+ "loss": 3.513401746749878,
+ "step": 4544
+ },
+ {
+ "epoch": 63.12581913499345,
+ "grad_norm": 0.22731348872184753,
+ "learning_rate": 0.0006,
+ "loss": 3.4880478382110596,
+ "step": 4545
+ },
+ {
+ "epoch": 63.139799038881605,
+ "grad_norm": 0.22627407312393188,
+ "learning_rate": 0.0006,
+ "loss": 3.4975132942199707,
+ "step": 4546
+ },
+ {
+ "epoch": 63.15377894276977,
+ "grad_norm": 0.25107741355895996,
+ "learning_rate": 0.0006,
+ "loss": 3.5068140029907227,
+ "step": 4547
+ },
+ {
+ "epoch": 63.16775884665793,
+ "grad_norm": 0.23031412065029144,
+ "learning_rate": 0.0006,
+ "loss": 3.515760898590088,
+ "step": 4548
+ },
+ {
+ "epoch": 63.18173875054609,
+ "grad_norm": 0.21028949320316315,
+ "learning_rate": 0.0006,
+ "loss": 3.521303415298462,
+ "step": 4549
+ },
+ {
+ "epoch": 63.19571865443425,
+ "grad_norm": 0.22366516292095184,
+ "learning_rate": 0.0006,
+ "loss": 3.5283193588256836,
+ "step": 4550
+ },
+ {
+ "epoch": 63.20969855832241,
+ "grad_norm": 0.2176598459482193,
+ "learning_rate": 0.0006,
+ "loss": 3.490306854248047,
+ "step": 4551
+ },
+ {
+ "epoch": 63.22367846221057,
+ "grad_norm": 0.20985916256904602,
+ "learning_rate": 0.0006,
+ "loss": 3.5335614681243896,
+ "step": 4552
+ },
+ {
+ "epoch": 63.237658366098735,
+ "grad_norm": 0.2085118442773819,
+ "learning_rate": 0.0006,
+ "loss": 3.5108132362365723,
+ "step": 4553
+ },
+ {
+ "epoch": 63.25163826998689,
+ "grad_norm": 0.22644028067588806,
+ "learning_rate": 0.0006,
+ "loss": 3.4813215732574463,
+ "step": 4554
+ },
+ {
+ "epoch": 63.265618173875055,
+ "grad_norm": 0.21942120790481567,
+ "learning_rate": 0.0006,
+ "loss": 3.5310909748077393,
+ "step": 4555
+ },
+ {
+ "epoch": 63.27959807776322,
+ "grad_norm": 0.2335938662290573,
+ "learning_rate": 0.0006,
+ "loss": 3.530893564224243,
+ "step": 4556
+ },
+ {
+ "epoch": 63.293577981651374,
+ "grad_norm": 0.2409360110759735,
+ "learning_rate": 0.0006,
+ "loss": 3.5301408767700195,
+ "step": 4557
+ },
+ {
+ "epoch": 63.30755788553954,
+ "grad_norm": 0.2354922890663147,
+ "learning_rate": 0.0006,
+ "loss": 3.5211031436920166,
+ "step": 4558
+ },
+ {
+ "epoch": 63.3215377894277,
+ "grad_norm": 0.23376664519309998,
+ "learning_rate": 0.0006,
+ "loss": 3.538367509841919,
+ "step": 4559
+ },
+ {
+ "epoch": 63.33551769331586,
+ "grad_norm": 0.25319674611091614,
+ "learning_rate": 0.0006,
+ "loss": 3.494905471801758,
+ "step": 4560
+ },
+ {
+ "epoch": 63.34949759720402,
+ "grad_norm": 0.24088945984840393,
+ "learning_rate": 0.0006,
+ "loss": 3.5189433097839355,
+ "step": 4561
+ },
+ {
+ "epoch": 63.36347750109218,
+ "grad_norm": 0.2373911589384079,
+ "learning_rate": 0.0006,
+ "loss": 3.4956908226013184,
+ "step": 4562
+ },
+ {
+ "epoch": 63.37745740498034,
+ "grad_norm": 0.2590023875236511,
+ "learning_rate": 0.0006,
+ "loss": 3.511784076690674,
+ "step": 4563
+ },
+ {
+ "epoch": 63.391437308868504,
+ "grad_norm": 0.2600874900817871,
+ "learning_rate": 0.0006,
+ "loss": 3.478942394256592,
+ "step": 4564
+ },
+ {
+ "epoch": 63.40541721275666,
+ "grad_norm": 0.24018031358718872,
+ "learning_rate": 0.0006,
+ "loss": 3.521773338317871,
+ "step": 4565
+ },
+ {
+ "epoch": 63.419397116644824,
+ "grad_norm": 0.2552972435951233,
+ "learning_rate": 0.0006,
+ "loss": 3.4893441200256348,
+ "step": 4566
+ },
+ {
+ "epoch": 63.43337702053299,
+ "grad_norm": 0.26195958256721497,
+ "learning_rate": 0.0006,
+ "loss": 3.5366687774658203,
+ "step": 4567
+ },
+ {
+ "epoch": 63.44735692442114,
+ "grad_norm": 0.24390678107738495,
+ "learning_rate": 0.0006,
+ "loss": 3.4948301315307617,
+ "step": 4568
+ },
+ {
+ "epoch": 63.46133682830931,
+ "grad_norm": 0.21185952425003052,
+ "learning_rate": 0.0006,
+ "loss": 3.486267566680908,
+ "step": 4569
+ },
+ {
+ "epoch": 63.47531673219746,
+ "grad_norm": 0.21932153403759003,
+ "learning_rate": 0.0006,
+ "loss": 3.499481201171875,
+ "step": 4570
+ },
+ {
+ "epoch": 63.489296636085626,
+ "grad_norm": 0.22503717243671417,
+ "learning_rate": 0.0006,
+ "loss": 3.4932126998901367,
+ "step": 4571
+ },
+ {
+ "epoch": 63.50327653997379,
+ "grad_norm": 0.23853568732738495,
+ "learning_rate": 0.0006,
+ "loss": 3.4893674850463867,
+ "step": 4572
+ },
+ {
+ "epoch": 63.517256443861946,
+ "grad_norm": 0.2531817853450775,
+ "learning_rate": 0.0006,
+ "loss": 3.5391907691955566,
+ "step": 4573
+ },
+ {
+ "epoch": 63.53123634775011,
+ "grad_norm": 0.23776786029338837,
+ "learning_rate": 0.0006,
+ "loss": 3.5097427368164062,
+ "step": 4574
+ },
+ {
+ "epoch": 63.54521625163827,
+ "grad_norm": 0.24308739602565765,
+ "learning_rate": 0.0006,
+ "loss": 3.4988107681274414,
+ "step": 4575
+ },
+ {
+ "epoch": 63.55919615552643,
+ "grad_norm": 0.24214281141757965,
+ "learning_rate": 0.0006,
+ "loss": 3.506901502609253,
+ "step": 4576
+ },
+ {
+ "epoch": 63.57317605941459,
+ "grad_norm": 0.21378614008426666,
+ "learning_rate": 0.0006,
+ "loss": 3.54103684425354,
+ "step": 4577
+ },
+ {
+ "epoch": 63.58715596330275,
+ "grad_norm": 0.21135152876377106,
+ "learning_rate": 0.0006,
+ "loss": 3.534852981567383,
+ "step": 4578
+ },
+ {
+ "epoch": 63.60113586719091,
+ "grad_norm": 0.2335089147090912,
+ "learning_rate": 0.0006,
+ "loss": 3.542457342147827,
+ "step": 4579
+ },
+ {
+ "epoch": 63.615115771079076,
+ "grad_norm": 0.23693214356899261,
+ "learning_rate": 0.0006,
+ "loss": 3.4781997203826904,
+ "step": 4580
+ },
+ {
+ "epoch": 63.62909567496723,
+ "grad_norm": 0.21237023174762726,
+ "learning_rate": 0.0006,
+ "loss": 3.4980621337890625,
+ "step": 4581
+ },
+ {
+ "epoch": 63.643075578855395,
+ "grad_norm": 0.20930461585521698,
+ "learning_rate": 0.0006,
+ "loss": 3.5177974700927734,
+ "step": 4582
+ },
+ {
+ "epoch": 63.65705548274356,
+ "grad_norm": 0.22565403580665588,
+ "learning_rate": 0.0006,
+ "loss": 3.5385828018188477,
+ "step": 4583
+ },
+ {
+ "epoch": 63.671035386631715,
+ "grad_norm": 0.22187408804893494,
+ "learning_rate": 0.0006,
+ "loss": 3.5461559295654297,
+ "step": 4584
+ },
+ {
+ "epoch": 63.68501529051988,
+ "grad_norm": 0.23496168851852417,
+ "learning_rate": 0.0006,
+ "loss": 3.526822090148926,
+ "step": 4585
+ },
+ {
+ "epoch": 63.69899519440804,
+ "grad_norm": 0.2432301938533783,
+ "learning_rate": 0.0006,
+ "loss": 3.5248091220855713,
+ "step": 4586
+ },
+ {
+ "epoch": 63.7129750982962,
+ "grad_norm": 0.22797444462776184,
+ "learning_rate": 0.0006,
+ "loss": 3.5276098251342773,
+ "step": 4587
+ },
+ {
+ "epoch": 63.72695500218436,
+ "grad_norm": 0.2332911491394043,
+ "learning_rate": 0.0006,
+ "loss": 3.5454764366149902,
+ "step": 4588
+ },
+ {
+ "epoch": 63.74093490607252,
+ "grad_norm": 0.23016804456710815,
+ "learning_rate": 0.0006,
+ "loss": 3.519209384918213,
+ "step": 4589
+ },
+ {
+ "epoch": 63.75491480996068,
+ "grad_norm": 0.2160855233669281,
+ "learning_rate": 0.0006,
+ "loss": 3.536961317062378,
+ "step": 4590
+ },
+ {
+ "epoch": 63.768894713848844,
+ "grad_norm": 0.25935620069503784,
+ "learning_rate": 0.0006,
+ "loss": 3.5653820037841797,
+ "step": 4591
+ },
+ {
+ "epoch": 63.782874617737,
+ "grad_norm": 0.26625221967697144,
+ "learning_rate": 0.0006,
+ "loss": 3.5492172241210938,
+ "step": 4592
+ },
+ {
+ "epoch": 63.796854521625164,
+ "grad_norm": 0.25456854701042175,
+ "learning_rate": 0.0006,
+ "loss": 3.516575336456299,
+ "step": 4593
+ },
+ {
+ "epoch": 63.81083442551333,
+ "grad_norm": 0.26114824414253235,
+ "learning_rate": 0.0006,
+ "loss": 3.5429139137268066,
+ "step": 4594
+ },
+ {
+ "epoch": 63.824814329401484,
+ "grad_norm": 0.27836596965789795,
+ "learning_rate": 0.0006,
+ "loss": 3.5567727088928223,
+ "step": 4595
+ },
+ {
+ "epoch": 63.83879423328965,
+ "grad_norm": 0.2674464285373688,
+ "learning_rate": 0.0006,
+ "loss": 3.5093564987182617,
+ "step": 4596
+ },
+ {
+ "epoch": 63.8527741371778,
+ "grad_norm": 0.27393433451652527,
+ "learning_rate": 0.0006,
+ "loss": 3.5500247478485107,
+ "step": 4597
+ },
+ {
+ "epoch": 63.86675404106597,
+ "grad_norm": 0.30968594551086426,
+ "learning_rate": 0.0006,
+ "loss": 3.539085865020752,
+ "step": 4598
+ },
+ {
+ "epoch": 63.88073394495413,
+ "grad_norm": 0.279060423374176,
+ "learning_rate": 0.0006,
+ "loss": 3.517862319946289,
+ "step": 4599
+ },
+ {
+ "epoch": 63.89471384884229,
+ "grad_norm": 0.22436867654323578,
+ "learning_rate": 0.0006,
+ "loss": 3.5714004039764404,
+ "step": 4600
+ },
+ {
+ "epoch": 63.90869375273045,
+ "grad_norm": 0.22473126649856567,
+ "learning_rate": 0.0006,
+ "loss": 3.5212388038635254,
+ "step": 4601
+ },
+ {
+ "epoch": 63.92267365661861,
+ "grad_norm": 0.2802466154098511,
+ "learning_rate": 0.0006,
+ "loss": 3.5112411975860596,
+ "step": 4602
+ },
+ {
+ "epoch": 63.93665356050677,
+ "grad_norm": 0.29435867071151733,
+ "learning_rate": 0.0006,
+ "loss": 3.554875373840332,
+ "step": 4603
+ },
+ {
+ "epoch": 63.95063346439493,
+ "grad_norm": 0.24592025578022003,
+ "learning_rate": 0.0006,
+ "loss": 3.5593767166137695,
+ "step": 4604
+ },
+ {
+ "epoch": 63.964613368283096,
+ "grad_norm": 0.25918886065483093,
+ "learning_rate": 0.0006,
+ "loss": 3.5020017623901367,
+ "step": 4605
+ },
+ {
+ "epoch": 63.97859327217125,
+ "grad_norm": 0.24892419576644897,
+ "learning_rate": 0.0006,
+ "loss": 3.520456314086914,
+ "step": 4606
+ },
+ {
+ "epoch": 63.992573176059416,
+ "grad_norm": 0.24131213128566742,
+ "learning_rate": 0.0006,
+ "loss": 3.5576815605163574,
+ "step": 4607
+ },
+ {
+ "epoch": 64.0,
+ "grad_norm": 0.2348976731300354,
+ "learning_rate": 0.0006,
+ "loss": 3.524242401123047,
+ "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/mask15-l2r50-fulle-lm/checkpoint-4608/training_args.bin b/runs/mask15-l2r50-fulle-lm/checkpoint-4608/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..43721c50815fe94f90cb043bf545b8f7bd9afc38
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-4608/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:a0b8d7bb9ac952b1abed3bd1e5c8f6ebd20daa957b3a85688954f8df03be6eb9
+size 4856
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-4896/chat_template.jinja b/runs/mask15-l2r50-fulle-lm/checkpoint-4896/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/mask15-l2r50-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/mask15-l2r50-fulle-lm/checkpoint-4896/config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-4896/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..1b4ac3c550d6003148026765eba4cb1512b216c9
--- /dev/null
+++ b/runs/mask15-l2r50-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": 151672
+}
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-4896/generation_config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-4896/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..5cd15fe1269fd505cfdefe9b3e9989dacd9f68f4
--- /dev/null
+++ b/runs/mask15-l2r50-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/mask15-l2r50-fulle-lm/checkpoint-4896/model.safetensors b/runs/mask15-l2r50-fulle-lm/checkpoint-4896/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..61423a93efae7abd598b673ea9353c0ccd34fddc
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-4896/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:18a164f48d8242ac7f14803c39930eb272030743a72d9d08bc40959f5dd62e0d
+size 583358280
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-4896/optimizer.pt b/runs/mask15-l2r50-fulle-lm/checkpoint-4896/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..91b9f8c8f55b2c844ab228193631c87f87b88c80
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-4896/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:2f781a3cd215173cb0664c455324c463d814f6b8fd6ecac39ced93722bb61159
+size 1166829434
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-4896/rng_state_0.pth b/runs/mask15-l2r50-fulle-lm/checkpoint-4896/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..d7a46d738746cb5202bfaf4e8b48548f4403026e
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-4896/rng_state_0.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:5f0f0271558226859c0113695e4e72527086cfca455e15b35edb14bed58cfafc
+size 14512
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-4896/rng_state_1.pth b/runs/mask15-l2r50-fulle-lm/checkpoint-4896/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..d13b5867a3dc54d7ad529d390075a406e711041d
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-4896/rng_state_1.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:07c17fa59f6033b6a98ef9fce8bd2511c96b302db7d2a9f983d82709dcaaa143
+size 14512
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-4896/scheduler.pt b/runs/mask15-l2r50-fulle-lm/checkpoint-4896/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..f446f829d82a1f86c912714abb53d7fba343010b
--- /dev/null
+++ b/runs/mask15-l2r50-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/mask15-l2r50-fulle-lm/checkpoint-4896/tokenizer.json b/runs/mask15-l2r50-fulle-lm/checkpoint-4896/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..6226bf25372d1a86dbd704ec75d2129960f1ba88
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-4896/tokenizer.json
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:9245fe3cb2d40f9ed8d5d8ddd1d58701ba2a236beec08f656162281673f30560
+size 11424264
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-4896/tokenizer_config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-4896/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..01bc9676576e8cf62a08a9db166d6c5bab1d6727
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-4896/tokenizer_config.json
@@ -0,0 +1,20 @@
+{
+ "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|>",
+ "<|mask|>"
+ ],
+ "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/mask15-l2r50-fulle-lm/checkpoint-4896/trainer_state.json b/runs/mask15-l2r50-fulle-lm/checkpoint-4896/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..069a6358f88da1454eef452f686c7f3303811dc5
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-4896/trainer_state.json
@@ -0,0 +1,34842 @@
+{
+ "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": 9.807971954345703,
+ "learning_rate": 0.0,
+ "loss": 11.989814758300781,
+ "step": 1
+ },
+ {
+ "epoch": 0.027959807776321538,
+ "grad_norm": 9.834383010864258,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 11.993022918701172,
+ "step": 2
+ },
+ {
+ "epoch": 0.04193971166448231,
+ "grad_norm": 9.482470512390137,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 11.854345321655273,
+ "step": 3
+ },
+ {
+ "epoch": 0.055919615552643076,
+ "grad_norm": 7.678808689117432,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 11.618255615234375,
+ "step": 4
+ },
+ {
+ "epoch": 0.06989951944080385,
+ "grad_norm": 6.011275291442871,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 11.351423263549805,
+ "step": 5
+ },
+ {
+ "epoch": 0.08387942332896461,
+ "grad_norm": 5.244393825531006,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 11.128631591796875,
+ "step": 6
+ },
+ {
+ "epoch": 0.09785932721712538,
+ "grad_norm": 4.577618598937988,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 10.921937942504883,
+ "step": 7
+ },
+ {
+ "epoch": 0.11183923110528615,
+ "grad_norm": 4.03810453414917,
+ "learning_rate": 4.2e-05,
+ "loss": 10.742650985717773,
+ "step": 8
+ },
+ {
+ "epoch": 0.1258191349934469,
+ "grad_norm": 3.657679796218872,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 10.600778579711914,
+ "step": 9
+ },
+ {
+ "epoch": 0.1397990388816077,
+ "grad_norm": 3.352902889251709,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 10.489639282226562,
+ "step": 10
+ },
+ {
+ "epoch": 0.15377894276976845,
+ "grad_norm": 3.1162633895874023,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 10.417770385742188,
+ "step": 11
+ },
+ {
+ "epoch": 0.16775884665792923,
+ "grad_norm": 3.0402638912200928,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 10.35334587097168,
+ "step": 12
+ },
+ {
+ "epoch": 0.18173875054608998,
+ "grad_norm": 3.030630111694336,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 10.306867599487305,
+ "step": 13
+ },
+ {
+ "epoch": 0.19571865443425077,
+ "grad_norm": 3.035292148590088,
+ "learning_rate": 7.8e-05,
+ "loss": 10.26003646850586,
+ "step": 14
+ },
+ {
+ "epoch": 0.20969855832241152,
+ "grad_norm": 3.0125675201416016,
+ "learning_rate": 8.4e-05,
+ "loss": 10.219265937805176,
+ "step": 15
+ },
+ {
+ "epoch": 0.2236784622105723,
+ "grad_norm": 2.9998886585235596,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 10.161077499389648,
+ "step": 16
+ },
+ {
+ "epoch": 0.23765836609873306,
+ "grad_norm": 2.9411966800689697,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 10.107423782348633,
+ "step": 17
+ },
+ {
+ "epoch": 0.2516382699868938,
+ "grad_norm": 2.88081955909729,
+ "learning_rate": 0.000102,
+ "loss": 10.04700756072998,
+ "step": 18
+ },
+ {
+ "epoch": 0.2656181738750546,
+ "grad_norm": 2.8219687938690186,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 9.981185913085938,
+ "step": 19
+ },
+ {
+ "epoch": 0.2795980777632154,
+ "grad_norm": 2.79306960105896,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 9.89747142791748,
+ "step": 20
+ },
+ {
+ "epoch": 0.29357798165137616,
+ "grad_norm": 2.7314443588256836,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 9.829219818115234,
+ "step": 21
+ },
+ {
+ "epoch": 0.3075578855395369,
+ "grad_norm": 2.6923747062683105,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 9.747566223144531,
+ "step": 22
+ },
+ {
+ "epoch": 0.3215377894276977,
+ "grad_norm": 2.650602340698242,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 9.66455078125,
+ "step": 23
+ },
+ {
+ "epoch": 0.33551769331585846,
+ "grad_norm": 2.606977701187134,
+ "learning_rate": 0.000138,
+ "loss": 9.582326889038086,
+ "step": 24
+ },
+ {
+ "epoch": 0.34949759720401924,
+ "grad_norm": 2.567256212234497,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 9.492591857910156,
+ "step": 25
+ },
+ {
+ "epoch": 0.36347750109217997,
+ "grad_norm": 2.520740509033203,
+ "learning_rate": 0.00015,
+ "loss": 9.396563529968262,
+ "step": 26
+ },
+ {
+ "epoch": 0.37745740498034075,
+ "grad_norm": 2.471588611602783,
+ "learning_rate": 0.000156,
+ "loss": 9.303571701049805,
+ "step": 27
+ },
+ {
+ "epoch": 0.39143730886850153,
+ "grad_norm": 2.4341530799865723,
+ "learning_rate": 0.000162,
+ "loss": 9.191819190979004,
+ "step": 28
+ },
+ {
+ "epoch": 0.4054172127566623,
+ "grad_norm": 2.369244337081909,
+ "learning_rate": 0.000168,
+ "loss": 9.092012405395508,
+ "step": 29
+ },
+ {
+ "epoch": 0.41939711664482304,
+ "grad_norm": 2.28625226020813,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 8.984567642211914,
+ "step": 30
+ },
+ {
+ "epoch": 0.4333770205329838,
+ "grad_norm": 2.2082231044769287,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 8.889009475708008,
+ "step": 31
+ },
+ {
+ "epoch": 0.4473569244211446,
+ "grad_norm": 2.1429483890533447,
+ "learning_rate": 0.000186,
+ "loss": 8.778556823730469,
+ "step": 32
+ },
+ {
+ "epoch": 0.4613368283093054,
+ "grad_norm": 2.0937352180480957,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 8.661166191101074,
+ "step": 33
+ },
+ {
+ "epoch": 0.4753167321974661,
+ "grad_norm": 2.040790557861328,
+ "learning_rate": 0.000198,
+ "loss": 8.550382614135742,
+ "step": 34
+ },
+ {
+ "epoch": 0.4892966360856269,
+ "grad_norm": 1.93914794921875,
+ "learning_rate": 0.000204,
+ "loss": 8.463907241821289,
+ "step": 35
+ },
+ {
+ "epoch": 0.5032765399737876,
+ "grad_norm": 1.8624178171157837,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 8.3438720703125,
+ "step": 36
+ },
+ {
+ "epoch": 0.5172564438619485,
+ "grad_norm": 1.8107167482376099,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 8.21871566772461,
+ "step": 37
+ },
+ {
+ "epoch": 0.5312363477501092,
+ "grad_norm": 1.717979073524475,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 8.113494873046875,
+ "step": 38
+ },
+ {
+ "epoch": 0.54521625163827,
+ "grad_norm": 1.668742060661316,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 8.006099700927734,
+ "step": 39
+ },
+ {
+ "epoch": 0.5591961555264308,
+ "grad_norm": 1.6147786378860474,
+ "learning_rate": 0.000234,
+ "loss": 7.911509037017822,
+ "step": 40
+ },
+ {
+ "epoch": 0.5731760594145915,
+ "grad_norm": 1.535750150680542,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 7.822839736938477,
+ "step": 41
+ },
+ {
+ "epoch": 0.5871559633027523,
+ "grad_norm": 1.4700065851211548,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 7.713842868804932,
+ "step": 42
+ },
+ {
+ "epoch": 0.601135867190913,
+ "grad_norm": 1.39020574092865,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 7.6040191650390625,
+ "step": 43
+ },
+ {
+ "epoch": 0.6151157710790738,
+ "grad_norm": 1.2875399589538574,
+ "learning_rate": 0.000258,
+ "loss": 7.550642013549805,
+ "step": 44
+ },
+ {
+ "epoch": 0.6290956749672346,
+ "grad_norm": 1.2094247341156006,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 7.460824012756348,
+ "step": 45
+ },
+ {
+ "epoch": 0.6430755788553953,
+ "grad_norm": 1.126452088356018,
+ "learning_rate": 0.00027,
+ "loss": 7.380537986755371,
+ "step": 46
+ },
+ {
+ "epoch": 0.6570554827435562,
+ "grad_norm": 1.0313163995742798,
+ "learning_rate": 0.000276,
+ "loss": 7.286153793334961,
+ "step": 47
+ },
+ {
+ "epoch": 0.6710353866317169,
+ "grad_norm": 0.9172859787940979,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 7.2064714431762695,
+ "step": 48
+ },
+ {
+ "epoch": 0.6850152905198776,
+ "grad_norm": 0.8148201107978821,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 7.158207416534424,
+ "step": 49
+ },
+ {
+ "epoch": 0.6989951944080385,
+ "grad_norm": 0.650123119354248,
+ "learning_rate": 0.000294,
+ "loss": 7.108791828155518,
+ "step": 50
+ },
+ {
+ "epoch": 0.7129750982961992,
+ "grad_norm": 0.5437585711479187,
+ "learning_rate": 0.0003,
+ "loss": 7.083050727844238,
+ "step": 51
+ },
+ {
+ "epoch": 0.7269550021843599,
+ "grad_norm": 0.46762895584106445,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 7.058027267456055,
+ "step": 52
+ },
+ {
+ "epoch": 0.7409349060725208,
+ "grad_norm": 0.47947561740875244,
+ "learning_rate": 0.000312,
+ "loss": 7.015172958374023,
+ "step": 53
+ },
+ {
+ "epoch": 0.7549148099606815,
+ "grad_norm": 0.7546492218971252,
+ "learning_rate": 0.000318,
+ "loss": 7.024629592895508,
+ "step": 54
+ },
+ {
+ "epoch": 0.7688947138488423,
+ "grad_norm": 0.6153718829154968,
+ "learning_rate": 0.000324,
+ "loss": 7.026667594909668,
+ "step": 55
+ },
+ {
+ "epoch": 0.7828746177370031,
+ "grad_norm": 0.3359069228172302,
+ "learning_rate": 0.00033,
+ "loss": 7.008166313171387,
+ "step": 56
+ },
+ {
+ "epoch": 0.7968545216251638,
+ "grad_norm": 0.48906823992729187,
+ "learning_rate": 0.000336,
+ "loss": 7.019716262817383,
+ "step": 57
+ },
+ {
+ "epoch": 0.8108344255133246,
+ "grad_norm": 0.5525421500205994,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 7.02108097076416,
+ "step": 58
+ },
+ {
+ "epoch": 0.8248143294014854,
+ "grad_norm": 0.3103712201118469,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 7.003164768218994,
+ "step": 59
+ },
+ {
+ "epoch": 0.8387942332896461,
+ "grad_norm": 0.4431874752044678,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 7.003463268280029,
+ "step": 60
+ },
+ {
+ "epoch": 0.8527741371778069,
+ "grad_norm": 0.4291120767593384,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 6.96931791305542,
+ "step": 61
+ },
+ {
+ "epoch": 0.8667540410659677,
+ "grad_norm": 0.6566054224967957,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 6.989445686340332,
+ "step": 62
+ },
+ {
+ "epoch": 0.8807339449541285,
+ "grad_norm": 0.20663189888000488,
+ "learning_rate": 0.000372,
+ "loss": 6.9669342041015625,
+ "step": 63
+ },
+ {
+ "epoch": 0.8947138488422892,
+ "grad_norm": 0.6242535710334778,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 6.949883460998535,
+ "step": 64
+ },
+ {
+ "epoch": 0.9086937527304499,
+ "grad_norm": 0.6984224915504456,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 6.955153465270996,
+ "step": 65
+ },
+ {
+ "epoch": 0.9226736566186108,
+ "grad_norm": 0.6328083872795105,
+ "learning_rate": 0.00039,
+ "loss": 6.965421676635742,
+ "step": 66
+ },
+ {
+ "epoch": 0.9366535605067715,
+ "grad_norm": 1.213352918624878,
+ "learning_rate": 0.000396,
+ "loss": 6.9454345703125,
+ "step": 67
+ },
+ {
+ "epoch": 0.9506334643949322,
+ "grad_norm": 0.9221940636634827,
+ "learning_rate": 0.000402,
+ "loss": 6.923908233642578,
+ "step": 68
+ },
+ {
+ "epoch": 0.9646133682830931,
+ "grad_norm": 0.6825450658798218,
+ "learning_rate": 0.000408,
+ "loss": 6.910131454467773,
+ "step": 69
+ },
+ {
+ "epoch": 0.9785932721712538,
+ "grad_norm": 0.5690162181854248,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 6.89891242980957,
+ "step": 70
+ },
+ {
+ "epoch": 0.9925731760594146,
+ "grad_norm": 0.4320870041847229,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 6.896081924438477,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.31632405519485474,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 6.897444725036621,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 7.757839679718018,
+ "eval_runtime": 43.8338,
+ "eval_samples_per_second": 55.71,
+ "eval_steps_per_second": 3.49,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139799038881607,
+ "grad_norm": 0.3789916932582855,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 6.877245903015137,
+ "step": 73
+ },
+ {
+ "epoch": 1.0279598077763215,
+ "grad_norm": 0.9167932868003845,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 6.921600341796875,
+ "step": 74
+ },
+ {
+ "epoch": 1.0419397116644824,
+ "grad_norm": 0.581188440322876,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 6.861001968383789,
+ "step": 75
+ },
+ {
+ "epoch": 1.0559196155526431,
+ "grad_norm": 0.4179714024066925,
+ "learning_rate": 0.00045,
+ "loss": 6.875657081604004,
+ "step": 76
+ },
+ {
+ "epoch": 1.0698995194408039,
+ "grad_norm": 1.0669957399368286,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 6.857122421264648,
+ "step": 77
+ },
+ {
+ "epoch": 1.0838794233289646,
+ "grad_norm": 0.27855145931243896,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 6.828852653503418,
+ "step": 78
+ },
+ {
+ "epoch": 1.0978593272171253,
+ "grad_norm": 0.7192047834396362,
+ "learning_rate": 0.000468,
+ "loss": 6.870839595794678,
+ "step": 79
+ },
+ {
+ "epoch": 1.1118392311052863,
+ "grad_norm": 0.5583325624465942,
+ "learning_rate": 0.000474,
+ "loss": 6.8497514724731445,
+ "step": 80
+ },
+ {
+ "epoch": 1.125819134993447,
+ "grad_norm": 0.3001925051212311,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 6.858528137207031,
+ "step": 81
+ },
+ {
+ "epoch": 1.1397990388816077,
+ "grad_norm": 0.2408239096403122,
+ "learning_rate": 0.000486,
+ "loss": 6.83231258392334,
+ "step": 82
+ },
+ {
+ "epoch": 1.1537789427697684,
+ "grad_norm": 0.28230324387550354,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 6.815476894378662,
+ "step": 83
+ },
+ {
+ "epoch": 1.1677588466579292,
+ "grad_norm": 0.3247123658657074,
+ "learning_rate": 0.000498,
+ "loss": 6.780126094818115,
+ "step": 84
+ },
+ {
+ "epoch": 1.18173875054609,
+ "grad_norm": 0.25713011622428894,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 6.7798309326171875,
+ "step": 85
+ },
+ {
+ "epoch": 1.1957186544342508,
+ "grad_norm": 0.5386835932731628,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 6.791745185852051,
+ "step": 86
+ },
+ {
+ "epoch": 1.2096985583224116,
+ "grad_norm": 0.2226393222808838,
+ "learning_rate": 0.000516,
+ "loss": 6.7826972007751465,
+ "step": 87
+ },
+ {
+ "epoch": 1.2236784622105723,
+ "grad_norm": 0.4338362216949463,
+ "learning_rate": 0.000522,
+ "loss": 6.805043697357178,
+ "step": 88
+ },
+ {
+ "epoch": 1.237658366098733,
+ "grad_norm": 0.2953208386898041,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 6.768434524536133,
+ "step": 89
+ },
+ {
+ "epoch": 1.2516382699868938,
+ "grad_norm": 0.13453717529773712,
+ "learning_rate": 0.000534,
+ "loss": 6.773697376251221,
+ "step": 90
+ },
+ {
+ "epoch": 1.2656181738750547,
+ "grad_norm": 0.35774412751197815,
+ "learning_rate": 0.00054,
+ "loss": 6.766414642333984,
+ "step": 91
+ },
+ {
+ "epoch": 1.2795980777632154,
+ "grad_norm": 0.4669720530509949,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 6.754847526550293,
+ "step": 92
+ },
+ {
+ "epoch": 1.2935779816513762,
+ "grad_norm": 0.13806621730327606,
+ "learning_rate": 0.000552,
+ "loss": 6.746858596801758,
+ "step": 93
+ },
+ {
+ "epoch": 1.307557885539537,
+ "grad_norm": 0.3280332386493683,
+ "learning_rate": 0.000558,
+ "loss": 6.715662956237793,
+ "step": 94
+ },
+ {
+ "epoch": 1.3215377894276976,
+ "grad_norm": 0.4689937233924866,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 6.734938144683838,
+ "step": 95
+ },
+ {
+ "epoch": 1.3355176933158583,
+ "grad_norm": 0.35371264815330505,
+ "learning_rate": 0.00057,
+ "loss": 6.748386383056641,
+ "step": 96
+ },
+ {
+ "epoch": 1.3494975972040193,
+ "grad_norm": 0.15232303738594055,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 6.705557823181152,
+ "step": 97
+ },
+ {
+ "epoch": 1.36347750109218,
+ "grad_norm": 0.30132821202278137,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 6.7199859619140625,
+ "step": 98
+ },
+ {
+ "epoch": 1.3774574049803407,
+ "grad_norm": 0.42174842953681946,
+ "learning_rate": 0.000588,
+ "loss": 6.715370178222656,
+ "step": 99
+ },
+ {
+ "epoch": 1.3914373088685015,
+ "grad_norm": 0.6257228851318359,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 6.707026958465576,
+ "step": 100
+ },
+ {
+ "epoch": 1.4054172127566624,
+ "grad_norm": 0.4551195800304413,
+ "learning_rate": 0.0006,
+ "loss": 6.7078423500061035,
+ "step": 101
+ },
+ {
+ "epoch": 1.4193971166448232,
+ "grad_norm": 0.41940346360206604,
+ "learning_rate": 0.0006,
+ "loss": 6.6959357261657715,
+ "step": 102
+ },
+ {
+ "epoch": 1.4333770205329839,
+ "grad_norm": 0.32251718640327454,
+ "learning_rate": 0.0006,
+ "loss": 6.689168930053711,
+ "step": 103
+ },
+ {
+ "epoch": 1.4473569244211446,
+ "grad_norm": 0.2992720305919647,
+ "learning_rate": 0.0006,
+ "loss": 6.680738925933838,
+ "step": 104
+ },
+ {
+ "epoch": 1.4613368283093053,
+ "grad_norm": 0.3228456974029541,
+ "learning_rate": 0.0006,
+ "loss": 6.672350883483887,
+ "step": 105
+ },
+ {
+ "epoch": 1.475316732197466,
+ "grad_norm": 0.24954743683338165,
+ "learning_rate": 0.0006,
+ "loss": 6.653716087341309,
+ "step": 106
+ },
+ {
+ "epoch": 1.4892966360856268,
+ "grad_norm": 0.30740687251091003,
+ "learning_rate": 0.0006,
+ "loss": 6.676583290100098,
+ "step": 107
+ },
+ {
+ "epoch": 1.5032765399737875,
+ "grad_norm": 0.24950599670410156,
+ "learning_rate": 0.0006,
+ "loss": 6.656691551208496,
+ "step": 108
+ },
+ {
+ "epoch": 1.5172564438619485,
+ "grad_norm": 0.24293005466461182,
+ "learning_rate": 0.0006,
+ "loss": 6.640995979309082,
+ "step": 109
+ },
+ {
+ "epoch": 1.5312363477501092,
+ "grad_norm": 0.30167272686958313,
+ "learning_rate": 0.0006,
+ "loss": 6.647380352020264,
+ "step": 110
+ },
+ {
+ "epoch": 1.5452162516382701,
+ "grad_norm": 0.4424632787704468,
+ "learning_rate": 0.0006,
+ "loss": 6.6548261642456055,
+ "step": 111
+ },
+ {
+ "epoch": 1.5591961555264309,
+ "grad_norm": 0.5295748114585876,
+ "learning_rate": 0.0006,
+ "loss": 6.64370059967041,
+ "step": 112
+ },
+ {
+ "epoch": 1.5731760594145916,
+ "grad_norm": 0.6829339265823364,
+ "learning_rate": 0.0006,
+ "loss": 6.654196739196777,
+ "step": 113
+ },
+ {
+ "epoch": 1.5871559633027523,
+ "grad_norm": 0.6534460186958313,
+ "learning_rate": 0.0006,
+ "loss": 6.675765037536621,
+ "step": 114
+ },
+ {
+ "epoch": 1.601135867190913,
+ "grad_norm": 0.6172244548797607,
+ "learning_rate": 0.0006,
+ "loss": 6.631234169006348,
+ "step": 115
+ },
+ {
+ "epoch": 1.6151157710790738,
+ "grad_norm": 0.5650008320808411,
+ "learning_rate": 0.0006,
+ "loss": 6.654262542724609,
+ "step": 116
+ },
+ {
+ "epoch": 1.6290956749672345,
+ "grad_norm": 0.3890475928783417,
+ "learning_rate": 0.0006,
+ "loss": 6.627526760101318,
+ "step": 117
+ },
+ {
+ "epoch": 1.6430755788553952,
+ "grad_norm": 0.6409873366355896,
+ "learning_rate": 0.0006,
+ "loss": 6.619794845581055,
+ "step": 118
+ },
+ {
+ "epoch": 1.6570554827435562,
+ "grad_norm": 0.5052326321601868,
+ "learning_rate": 0.0006,
+ "loss": 6.612556457519531,
+ "step": 119
+ },
+ {
+ "epoch": 1.671035386631717,
+ "grad_norm": 0.5001237988471985,
+ "learning_rate": 0.0006,
+ "loss": 6.577266693115234,
+ "step": 120
+ },
+ {
+ "epoch": 1.6850152905198776,
+ "grad_norm": 0.5328938364982605,
+ "learning_rate": 0.0006,
+ "loss": 6.59553337097168,
+ "step": 121
+ },
+ {
+ "epoch": 1.6989951944080386,
+ "grad_norm": 0.3568951189517975,
+ "learning_rate": 0.0006,
+ "loss": 6.602717399597168,
+ "step": 122
+ },
+ {
+ "epoch": 1.7129750982961993,
+ "grad_norm": 0.4017309546470642,
+ "learning_rate": 0.0006,
+ "loss": 6.589657783508301,
+ "step": 123
+ },
+ {
+ "epoch": 1.72695500218436,
+ "grad_norm": 0.21432629227638245,
+ "learning_rate": 0.0006,
+ "loss": 6.586555480957031,
+ "step": 124
+ },
+ {
+ "epoch": 1.7409349060725208,
+ "grad_norm": 0.21038052439689636,
+ "learning_rate": 0.0006,
+ "loss": 6.576569557189941,
+ "step": 125
+ },
+ {
+ "epoch": 1.7549148099606815,
+ "grad_norm": 0.23074904084205627,
+ "learning_rate": 0.0006,
+ "loss": 6.5880632400512695,
+ "step": 126
+ },
+ {
+ "epoch": 1.7688947138488422,
+ "grad_norm": 0.42963048815727234,
+ "learning_rate": 0.0006,
+ "loss": 6.603862762451172,
+ "step": 127
+ },
+ {
+ "epoch": 1.782874617737003,
+ "grad_norm": 0.361331045627594,
+ "learning_rate": 0.0006,
+ "loss": 6.579834938049316,
+ "step": 128
+ },
+ {
+ "epoch": 1.7968545216251637,
+ "grad_norm": 0.4951060712337494,
+ "learning_rate": 0.0006,
+ "loss": 6.570443630218506,
+ "step": 129
+ },
+ {
+ "epoch": 1.8108344255133246,
+ "grad_norm": 0.2258434295654297,
+ "learning_rate": 0.0006,
+ "loss": 6.5664777755737305,
+ "step": 130
+ },
+ {
+ "epoch": 1.8248143294014854,
+ "grad_norm": 0.2922155559062958,
+ "learning_rate": 0.0006,
+ "loss": 6.561326503753662,
+ "step": 131
+ },
+ {
+ "epoch": 1.838794233289646,
+ "grad_norm": 0.19068220257759094,
+ "learning_rate": 0.0006,
+ "loss": 6.528727054595947,
+ "step": 132
+ },
+ {
+ "epoch": 1.852774137177807,
+ "grad_norm": 0.2122010439634323,
+ "learning_rate": 0.0006,
+ "loss": 6.535636901855469,
+ "step": 133
+ },
+ {
+ "epoch": 1.8667540410659678,
+ "grad_norm": 0.25760164856910706,
+ "learning_rate": 0.0006,
+ "loss": 6.530498504638672,
+ "step": 134
+ },
+ {
+ "epoch": 1.8807339449541285,
+ "grad_norm": 0.1761016845703125,
+ "learning_rate": 0.0006,
+ "loss": 6.514466285705566,
+ "step": 135
+ },
+ {
+ "epoch": 1.8947138488422892,
+ "grad_norm": 0.2250051498413086,
+ "learning_rate": 0.0006,
+ "loss": 6.521268844604492,
+ "step": 136
+ },
+ {
+ "epoch": 1.90869375273045,
+ "grad_norm": 0.34458497166633606,
+ "learning_rate": 0.0006,
+ "loss": 6.512831687927246,
+ "step": 137
+ },
+ {
+ "epoch": 1.9226736566186107,
+ "grad_norm": 0.3468617796897888,
+ "learning_rate": 0.0006,
+ "loss": 6.515641689300537,
+ "step": 138
+ },
+ {
+ "epoch": 1.9366535605067714,
+ "grad_norm": 0.5051495432853699,
+ "learning_rate": 0.0006,
+ "loss": 6.5147905349731445,
+ "step": 139
+ },
+ {
+ "epoch": 1.9506334643949321,
+ "grad_norm": 0.7106727361679077,
+ "learning_rate": 0.0006,
+ "loss": 6.519277572631836,
+ "step": 140
+ },
+ {
+ "epoch": 1.964613368283093,
+ "grad_norm": 0.8881394267082214,
+ "learning_rate": 0.0006,
+ "loss": 6.526865482330322,
+ "step": 141
+ },
+ {
+ "epoch": 1.9785932721712538,
+ "grad_norm": 0.5552834272384644,
+ "learning_rate": 0.0006,
+ "loss": 6.469970226287842,
+ "step": 142
+ },
+ {
+ "epoch": 1.9925731760594148,
+ "grad_norm": 0.6903126835823059,
+ "learning_rate": 0.0006,
+ "loss": 6.476300239562988,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.47679027915000916,
+ "learning_rate": 0.0006,
+ "loss": 6.463827133178711,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 7.388528823852539,
+ "eval_runtime": 44.2519,
+ "eval_samples_per_second": 55.184,
+ "eval_steps_per_second": 3.457,
+ "step": 144
+ },
+ {
+ "epoch": 2.0139799038881607,
+ "grad_norm": 0.4719221293926239,
+ "learning_rate": 0.0006,
+ "loss": 6.480956077575684,
+ "step": 145
+ },
+ {
+ "epoch": 2.0279598077763215,
+ "grad_norm": 0.41137924790382385,
+ "learning_rate": 0.0006,
+ "loss": 6.449707984924316,
+ "step": 146
+ },
+ {
+ "epoch": 2.041939711664482,
+ "grad_norm": 0.4237765371799469,
+ "learning_rate": 0.0006,
+ "loss": 6.467435836791992,
+ "step": 147
+ },
+ {
+ "epoch": 2.055919615552643,
+ "grad_norm": 0.44081810116767883,
+ "learning_rate": 0.0006,
+ "loss": 6.436868667602539,
+ "step": 148
+ },
+ {
+ "epoch": 2.0698995194408036,
+ "grad_norm": 0.4163798391819,
+ "learning_rate": 0.0006,
+ "loss": 6.4642014503479,
+ "step": 149
+ },
+ {
+ "epoch": 2.083879423328965,
+ "grad_norm": 0.3831583261489868,
+ "learning_rate": 0.0006,
+ "loss": 6.454092025756836,
+ "step": 150
+ },
+ {
+ "epoch": 2.0978593272171255,
+ "grad_norm": 0.37721413373947144,
+ "learning_rate": 0.0006,
+ "loss": 6.426377296447754,
+ "step": 151
+ },
+ {
+ "epoch": 2.1118392311052863,
+ "grad_norm": 0.3323550224304199,
+ "learning_rate": 0.0006,
+ "loss": 6.421375274658203,
+ "step": 152
+ },
+ {
+ "epoch": 2.125819134993447,
+ "grad_norm": 0.47739624977111816,
+ "learning_rate": 0.0006,
+ "loss": 6.412004470825195,
+ "step": 153
+ },
+ {
+ "epoch": 2.1397990388816077,
+ "grad_norm": 0.8530274629592896,
+ "learning_rate": 0.0006,
+ "loss": 6.410468578338623,
+ "step": 154
+ },
+ {
+ "epoch": 2.1537789427697684,
+ "grad_norm": 0.6420364379882812,
+ "learning_rate": 0.0006,
+ "loss": 6.413525581359863,
+ "step": 155
+ },
+ {
+ "epoch": 2.167758846657929,
+ "grad_norm": 0.5005049109458923,
+ "learning_rate": 0.0006,
+ "loss": 6.401463508605957,
+ "step": 156
+ },
+ {
+ "epoch": 2.18173875054609,
+ "grad_norm": 0.3614683449268341,
+ "learning_rate": 0.0006,
+ "loss": 6.390063285827637,
+ "step": 157
+ },
+ {
+ "epoch": 2.1957186544342506,
+ "grad_norm": 0.595215380191803,
+ "learning_rate": 0.0006,
+ "loss": 6.369806289672852,
+ "step": 158
+ },
+ {
+ "epoch": 2.2096985583224114,
+ "grad_norm": 0.5700321793556213,
+ "learning_rate": 0.0006,
+ "loss": 6.368378639221191,
+ "step": 159
+ },
+ {
+ "epoch": 2.2236784622105725,
+ "grad_norm": 0.36273983120918274,
+ "learning_rate": 0.0006,
+ "loss": 6.366860389709473,
+ "step": 160
+ },
+ {
+ "epoch": 2.2376583660987333,
+ "grad_norm": 0.2850998342037201,
+ "learning_rate": 0.0006,
+ "loss": 6.352144718170166,
+ "step": 161
+ },
+ {
+ "epoch": 2.251638269986894,
+ "grad_norm": 0.38558584451675415,
+ "learning_rate": 0.0006,
+ "loss": 6.375765800476074,
+ "step": 162
+ },
+ {
+ "epoch": 2.2656181738750547,
+ "grad_norm": 0.34809231758117676,
+ "learning_rate": 0.0006,
+ "loss": 6.350445747375488,
+ "step": 163
+ },
+ {
+ "epoch": 2.2795980777632154,
+ "grad_norm": 0.5211818814277649,
+ "learning_rate": 0.0006,
+ "loss": 6.354585647583008,
+ "step": 164
+ },
+ {
+ "epoch": 2.293577981651376,
+ "grad_norm": 1.0809133052825928,
+ "learning_rate": 0.0006,
+ "loss": 6.3752007484436035,
+ "step": 165
+ },
+ {
+ "epoch": 2.307557885539537,
+ "grad_norm": 0.8293641209602356,
+ "learning_rate": 0.0006,
+ "loss": 6.35113525390625,
+ "step": 166
+ },
+ {
+ "epoch": 2.3215377894276976,
+ "grad_norm": 0.3428577780723572,
+ "learning_rate": 0.0006,
+ "loss": 6.334470748901367,
+ "step": 167
+ },
+ {
+ "epoch": 2.3355176933158583,
+ "grad_norm": 0.7587600946426392,
+ "learning_rate": 0.0006,
+ "loss": 6.353979587554932,
+ "step": 168
+ },
+ {
+ "epoch": 2.349497597204019,
+ "grad_norm": 0.4227249026298523,
+ "learning_rate": 0.0006,
+ "loss": 6.34018611907959,
+ "step": 169
+ },
+ {
+ "epoch": 2.36347750109218,
+ "grad_norm": 0.4226846694946289,
+ "learning_rate": 0.0006,
+ "loss": 6.290019989013672,
+ "step": 170
+ },
+ {
+ "epoch": 2.3774574049803405,
+ "grad_norm": 0.38412365317344666,
+ "learning_rate": 0.0006,
+ "loss": 6.309510231018066,
+ "step": 171
+ },
+ {
+ "epoch": 2.3914373088685017,
+ "grad_norm": 0.45698508620262146,
+ "learning_rate": 0.0006,
+ "loss": 6.283290863037109,
+ "step": 172
+ },
+ {
+ "epoch": 2.4054172127566624,
+ "grad_norm": 0.7575915455818176,
+ "learning_rate": 0.0006,
+ "loss": 6.306073188781738,
+ "step": 173
+ },
+ {
+ "epoch": 2.419397116644823,
+ "grad_norm": 0.695123553276062,
+ "learning_rate": 0.0006,
+ "loss": 6.308144569396973,
+ "step": 174
+ },
+ {
+ "epoch": 2.433377020532984,
+ "grad_norm": 0.5035743117332458,
+ "learning_rate": 0.0006,
+ "loss": 6.282073974609375,
+ "step": 175
+ },
+ {
+ "epoch": 2.4473569244211446,
+ "grad_norm": 0.3158020079135895,
+ "learning_rate": 0.0006,
+ "loss": 6.282169342041016,
+ "step": 176
+ },
+ {
+ "epoch": 2.4613368283093053,
+ "grad_norm": 0.4829689860343933,
+ "learning_rate": 0.0006,
+ "loss": 6.264578819274902,
+ "step": 177
+ },
+ {
+ "epoch": 2.475316732197466,
+ "grad_norm": 0.3992770314216614,
+ "learning_rate": 0.0006,
+ "loss": 6.228628158569336,
+ "step": 178
+ },
+ {
+ "epoch": 2.489296636085627,
+ "grad_norm": 0.40887606143951416,
+ "learning_rate": 0.0006,
+ "loss": 6.230792045593262,
+ "step": 179
+ },
+ {
+ "epoch": 2.5032765399737875,
+ "grad_norm": 0.3540310263633728,
+ "learning_rate": 0.0006,
+ "loss": 6.222573280334473,
+ "step": 180
+ },
+ {
+ "epoch": 2.5172564438619487,
+ "grad_norm": 0.496219664812088,
+ "learning_rate": 0.0006,
+ "loss": 6.212109565734863,
+ "step": 181
+ },
+ {
+ "epoch": 2.5312363477501094,
+ "grad_norm": 0.435173898935318,
+ "learning_rate": 0.0006,
+ "loss": 6.221210479736328,
+ "step": 182
+ },
+ {
+ "epoch": 2.54521625163827,
+ "grad_norm": 0.5364007949829102,
+ "learning_rate": 0.0006,
+ "loss": 6.217929840087891,
+ "step": 183
+ },
+ {
+ "epoch": 2.559196155526431,
+ "grad_norm": 0.5946390628814697,
+ "learning_rate": 0.0006,
+ "loss": 6.189267158508301,
+ "step": 184
+ },
+ {
+ "epoch": 2.5731760594145916,
+ "grad_norm": 0.41621312499046326,
+ "learning_rate": 0.0006,
+ "loss": 6.182415008544922,
+ "step": 185
+ },
+ {
+ "epoch": 2.5871559633027523,
+ "grad_norm": 0.5442072749137878,
+ "learning_rate": 0.0006,
+ "loss": 6.150757789611816,
+ "step": 186
+ },
+ {
+ "epoch": 2.601135867190913,
+ "grad_norm": 0.727843165397644,
+ "learning_rate": 0.0006,
+ "loss": 6.146082878112793,
+ "step": 187
+ },
+ {
+ "epoch": 2.615115771079074,
+ "grad_norm": 0.8898891806602478,
+ "learning_rate": 0.0006,
+ "loss": 6.190483093261719,
+ "step": 188
+ },
+ {
+ "epoch": 2.6290956749672345,
+ "grad_norm": 0.5173947215080261,
+ "learning_rate": 0.0006,
+ "loss": 6.151251792907715,
+ "step": 189
+ },
+ {
+ "epoch": 2.6430755788553952,
+ "grad_norm": 0.6476729512214661,
+ "learning_rate": 0.0006,
+ "loss": 6.154841423034668,
+ "step": 190
+ },
+ {
+ "epoch": 2.657055482743556,
+ "grad_norm": 0.3538810908794403,
+ "learning_rate": 0.0006,
+ "loss": 6.103879928588867,
+ "step": 191
+ },
+ {
+ "epoch": 2.6710353866317167,
+ "grad_norm": 0.4773508310317993,
+ "learning_rate": 0.0006,
+ "loss": 6.118101119995117,
+ "step": 192
+ },
+ {
+ "epoch": 2.6850152905198774,
+ "grad_norm": 0.29213786125183105,
+ "learning_rate": 0.0006,
+ "loss": 6.108916282653809,
+ "step": 193
+ },
+ {
+ "epoch": 2.6989951944080386,
+ "grad_norm": 0.40800607204437256,
+ "learning_rate": 0.0006,
+ "loss": 6.113438606262207,
+ "step": 194
+ },
+ {
+ "epoch": 2.7129750982961993,
+ "grad_norm": 0.31157299876213074,
+ "learning_rate": 0.0006,
+ "loss": 6.101809501647949,
+ "step": 195
+ },
+ {
+ "epoch": 2.72695500218436,
+ "grad_norm": 0.28660309314727783,
+ "learning_rate": 0.0006,
+ "loss": 6.075886249542236,
+ "step": 196
+ },
+ {
+ "epoch": 2.7409349060725208,
+ "grad_norm": 0.3810449540615082,
+ "learning_rate": 0.0006,
+ "loss": 6.053257942199707,
+ "step": 197
+ },
+ {
+ "epoch": 2.7549148099606815,
+ "grad_norm": 0.21741755306720734,
+ "learning_rate": 0.0006,
+ "loss": 6.013825416564941,
+ "step": 198
+ },
+ {
+ "epoch": 2.7688947138488422,
+ "grad_norm": 0.2777678966522217,
+ "learning_rate": 0.0006,
+ "loss": 6.054204940795898,
+ "step": 199
+ },
+ {
+ "epoch": 2.782874617737003,
+ "grad_norm": 0.28503066301345825,
+ "learning_rate": 0.0006,
+ "loss": 6.035628318786621,
+ "step": 200
+ },
+ {
+ "epoch": 2.7968545216251637,
+ "grad_norm": 0.41954755783081055,
+ "learning_rate": 0.0006,
+ "loss": 6.028354644775391,
+ "step": 201
+ },
+ {
+ "epoch": 2.810834425513325,
+ "grad_norm": 0.8785563111305237,
+ "learning_rate": 0.0006,
+ "loss": 6.055761337280273,
+ "step": 202
+ },
+ {
+ "epoch": 2.8248143294014856,
+ "grad_norm": 1.7459558248519897,
+ "learning_rate": 0.0006,
+ "loss": 6.11599588394165,
+ "step": 203
+ },
+ {
+ "epoch": 2.8387942332896463,
+ "grad_norm": 0.5725523233413696,
+ "learning_rate": 0.0006,
+ "loss": 6.024280548095703,
+ "step": 204
+ },
+ {
+ "epoch": 2.852774137177807,
+ "grad_norm": 0.5913150906562805,
+ "learning_rate": 0.0006,
+ "loss": 6.050281524658203,
+ "step": 205
+ },
+ {
+ "epoch": 2.8667540410659678,
+ "grad_norm": 0.5929384827613831,
+ "learning_rate": 0.0006,
+ "loss": 6.041121482849121,
+ "step": 206
+ },
+ {
+ "epoch": 2.8807339449541285,
+ "grad_norm": 0.5650724768638611,
+ "learning_rate": 0.0006,
+ "loss": 6.004258155822754,
+ "step": 207
+ },
+ {
+ "epoch": 2.894713848842289,
+ "grad_norm": 0.3420545756816864,
+ "learning_rate": 0.0006,
+ "loss": 5.983296871185303,
+ "step": 208
+ },
+ {
+ "epoch": 2.90869375273045,
+ "grad_norm": 0.2960914075374603,
+ "learning_rate": 0.0006,
+ "loss": 5.988578796386719,
+ "step": 209
+ },
+ {
+ "epoch": 2.9226736566186107,
+ "grad_norm": 0.3252662718296051,
+ "learning_rate": 0.0006,
+ "loss": 5.99103307723999,
+ "step": 210
+ },
+ {
+ "epoch": 2.9366535605067714,
+ "grad_norm": 0.4851132929325104,
+ "learning_rate": 0.0006,
+ "loss": 6.0028977394104,
+ "step": 211
+ },
+ {
+ "epoch": 2.950633464394932,
+ "grad_norm": 0.5639995336532593,
+ "learning_rate": 0.0006,
+ "loss": 5.965080738067627,
+ "step": 212
+ },
+ {
+ "epoch": 2.964613368283093,
+ "grad_norm": 0.4514601230621338,
+ "learning_rate": 0.0006,
+ "loss": 5.961450576782227,
+ "step": 213
+ },
+ {
+ "epoch": 2.9785932721712536,
+ "grad_norm": 0.5397921800613403,
+ "learning_rate": 0.0006,
+ "loss": 5.965290546417236,
+ "step": 214
+ },
+ {
+ "epoch": 2.9925731760594148,
+ "grad_norm": 0.4735587239265442,
+ "learning_rate": 0.0006,
+ "loss": 5.952754497528076,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.32061058282852173,
+ "learning_rate": 0.0006,
+ "loss": 5.961667060852051,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 6.8517303466796875,
+ "eval_runtime": 44.03,
+ "eval_samples_per_second": 55.462,
+ "eval_steps_per_second": 3.475,
+ "step": 216
+ },
+ {
+ "epoch": 3.0139799038881607,
+ "grad_norm": 0.3537784814834595,
+ "learning_rate": 0.0006,
+ "loss": 5.928008079528809,
+ "step": 217
+ },
+ {
+ "epoch": 3.0279598077763215,
+ "grad_norm": 0.40713080763816833,
+ "learning_rate": 0.0006,
+ "loss": 5.9150800704956055,
+ "step": 218
+ },
+ {
+ "epoch": 3.041939711664482,
+ "grad_norm": 0.2548826336860657,
+ "learning_rate": 0.0006,
+ "loss": 5.919757843017578,
+ "step": 219
+ },
+ {
+ "epoch": 3.055919615552643,
+ "grad_norm": 0.2818543016910553,
+ "learning_rate": 0.0006,
+ "loss": 5.913688659667969,
+ "step": 220
+ },
+ {
+ "epoch": 3.0698995194408036,
+ "grad_norm": 0.4196692705154419,
+ "learning_rate": 0.0006,
+ "loss": 5.8675336837768555,
+ "step": 221
+ },
+ {
+ "epoch": 3.083879423328965,
+ "grad_norm": 0.35272282361984253,
+ "learning_rate": 0.0006,
+ "loss": 5.878874778747559,
+ "step": 222
+ },
+ {
+ "epoch": 3.0978593272171255,
+ "grad_norm": 0.3254282772541046,
+ "learning_rate": 0.0006,
+ "loss": 5.8823041915893555,
+ "step": 223
+ },
+ {
+ "epoch": 3.1118392311052863,
+ "grad_norm": 0.4052561819553375,
+ "learning_rate": 0.0006,
+ "loss": 5.867744445800781,
+ "step": 224
+ },
+ {
+ "epoch": 3.125819134993447,
+ "grad_norm": 0.31246256828308105,
+ "learning_rate": 0.0006,
+ "loss": 5.886094093322754,
+ "step": 225
+ },
+ {
+ "epoch": 3.1397990388816077,
+ "grad_norm": 0.3479118347167969,
+ "learning_rate": 0.0006,
+ "loss": 5.850762367248535,
+ "step": 226
+ },
+ {
+ "epoch": 3.1537789427697684,
+ "grad_norm": 0.5037238597869873,
+ "learning_rate": 0.0006,
+ "loss": 5.844175815582275,
+ "step": 227
+ },
+ {
+ "epoch": 3.167758846657929,
+ "grad_norm": 0.6271815896034241,
+ "learning_rate": 0.0006,
+ "loss": 5.871790885925293,
+ "step": 228
+ },
+ {
+ "epoch": 3.18173875054609,
+ "grad_norm": 0.43838298320770264,
+ "learning_rate": 0.0006,
+ "loss": 5.844024658203125,
+ "step": 229
+ },
+ {
+ "epoch": 3.1957186544342506,
+ "grad_norm": 0.4755159616470337,
+ "learning_rate": 0.0006,
+ "loss": 5.846892356872559,
+ "step": 230
+ },
+ {
+ "epoch": 3.2096985583224114,
+ "grad_norm": 0.5229779481887817,
+ "learning_rate": 0.0006,
+ "loss": 5.827000617980957,
+ "step": 231
+ },
+ {
+ "epoch": 3.2236784622105725,
+ "grad_norm": 0.8264499306678772,
+ "learning_rate": 0.0006,
+ "loss": 5.867050647735596,
+ "step": 232
+ },
+ {
+ "epoch": 3.2376583660987333,
+ "grad_norm": 1.0607538223266602,
+ "learning_rate": 0.0006,
+ "loss": 5.877876281738281,
+ "step": 233
+ },
+ {
+ "epoch": 3.251638269986894,
+ "grad_norm": 0.7656505703926086,
+ "learning_rate": 0.0006,
+ "loss": 5.86760139465332,
+ "step": 234
+ },
+ {
+ "epoch": 3.2656181738750547,
+ "grad_norm": 0.7940183281898499,
+ "learning_rate": 0.0006,
+ "loss": 5.861355781555176,
+ "step": 235
+ },
+ {
+ "epoch": 3.2795980777632154,
+ "grad_norm": 0.45171424746513367,
+ "learning_rate": 0.0006,
+ "loss": 5.799808502197266,
+ "step": 236
+ },
+ {
+ "epoch": 3.293577981651376,
+ "grad_norm": 0.6174989342689514,
+ "learning_rate": 0.0006,
+ "loss": 5.8585920333862305,
+ "step": 237
+ },
+ {
+ "epoch": 3.307557885539537,
+ "grad_norm": 0.5341290831565857,
+ "learning_rate": 0.0006,
+ "loss": 5.8116044998168945,
+ "step": 238
+ },
+ {
+ "epoch": 3.3215377894276976,
+ "grad_norm": 0.3938343822956085,
+ "learning_rate": 0.0006,
+ "loss": 5.83797550201416,
+ "step": 239
+ },
+ {
+ "epoch": 3.3355176933158583,
+ "grad_norm": 0.5106972455978394,
+ "learning_rate": 0.0006,
+ "loss": 5.832303047180176,
+ "step": 240
+ },
+ {
+ "epoch": 3.349497597204019,
+ "grad_norm": 0.3791428506374359,
+ "learning_rate": 0.0006,
+ "loss": 5.794981956481934,
+ "step": 241
+ },
+ {
+ "epoch": 3.36347750109218,
+ "grad_norm": 0.42287978529930115,
+ "learning_rate": 0.0006,
+ "loss": 5.788144111633301,
+ "step": 242
+ },
+ {
+ "epoch": 3.3774574049803405,
+ "grad_norm": 0.27334436774253845,
+ "learning_rate": 0.0006,
+ "loss": 5.771070957183838,
+ "step": 243
+ },
+ {
+ "epoch": 3.3914373088685017,
+ "grad_norm": 0.2470470368862152,
+ "learning_rate": 0.0006,
+ "loss": 5.755998611450195,
+ "step": 244
+ },
+ {
+ "epoch": 3.4054172127566624,
+ "grad_norm": 0.3043915033340454,
+ "learning_rate": 0.0006,
+ "loss": 5.779492378234863,
+ "step": 245
+ },
+ {
+ "epoch": 3.419397116644823,
+ "grad_norm": 0.2960112988948822,
+ "learning_rate": 0.0006,
+ "loss": 5.750328063964844,
+ "step": 246
+ },
+ {
+ "epoch": 3.433377020532984,
+ "grad_norm": 0.3046723008155823,
+ "learning_rate": 0.0006,
+ "loss": 5.776517868041992,
+ "step": 247
+ },
+ {
+ "epoch": 3.4473569244211446,
+ "grad_norm": 0.22461780905723572,
+ "learning_rate": 0.0006,
+ "loss": 5.760989665985107,
+ "step": 248
+ },
+ {
+ "epoch": 3.4613368283093053,
+ "grad_norm": 0.24625757336616516,
+ "learning_rate": 0.0006,
+ "loss": 5.759706497192383,
+ "step": 249
+ },
+ {
+ "epoch": 3.475316732197466,
+ "grad_norm": 0.18207131326198578,
+ "learning_rate": 0.0006,
+ "loss": 5.747040748596191,
+ "step": 250
+ },
+ {
+ "epoch": 3.489296636085627,
+ "grad_norm": 0.16473834216594696,
+ "learning_rate": 0.0006,
+ "loss": 5.761577606201172,
+ "step": 251
+ },
+ {
+ "epoch": 3.5032765399737875,
+ "grad_norm": 0.25155773758888245,
+ "learning_rate": 0.0006,
+ "loss": 5.696502208709717,
+ "step": 252
+ },
+ {
+ "epoch": 3.5172564438619487,
+ "grad_norm": 0.24115674197673798,
+ "learning_rate": 0.0006,
+ "loss": 5.676957130432129,
+ "step": 253
+ },
+ {
+ "epoch": 3.5312363477501094,
+ "grad_norm": 0.40912172198295593,
+ "learning_rate": 0.0006,
+ "loss": 5.695090293884277,
+ "step": 254
+ },
+ {
+ "epoch": 3.54521625163827,
+ "grad_norm": 0.6727662682533264,
+ "learning_rate": 0.0006,
+ "loss": 5.722194671630859,
+ "step": 255
+ },
+ {
+ "epoch": 3.559196155526431,
+ "grad_norm": 0.8450719118118286,
+ "learning_rate": 0.0006,
+ "loss": 5.764680862426758,
+ "step": 256
+ },
+ {
+ "epoch": 3.5731760594145916,
+ "grad_norm": 0.9916183352470398,
+ "learning_rate": 0.0006,
+ "loss": 5.754530429840088,
+ "step": 257
+ },
+ {
+ "epoch": 3.5871559633027523,
+ "grad_norm": 1.041922688484192,
+ "learning_rate": 0.0006,
+ "loss": 5.781468391418457,
+ "step": 258
+ },
+ {
+ "epoch": 3.601135867190913,
+ "grad_norm": 0.972039520740509,
+ "learning_rate": 0.0006,
+ "loss": 5.760323524475098,
+ "step": 259
+ },
+ {
+ "epoch": 3.615115771079074,
+ "grad_norm": 0.6802462935447693,
+ "learning_rate": 0.0006,
+ "loss": 5.750064849853516,
+ "step": 260
+ },
+ {
+ "epoch": 3.6290956749672345,
+ "grad_norm": 0.48553529381752014,
+ "learning_rate": 0.0006,
+ "loss": 5.7464094161987305,
+ "step": 261
+ },
+ {
+ "epoch": 3.6430755788553952,
+ "grad_norm": 0.4066704213619232,
+ "learning_rate": 0.0006,
+ "loss": 5.719789505004883,
+ "step": 262
+ },
+ {
+ "epoch": 3.657055482743556,
+ "grad_norm": 0.3300860822200775,
+ "learning_rate": 0.0006,
+ "loss": 5.719920635223389,
+ "step": 263
+ },
+ {
+ "epoch": 3.6710353866317167,
+ "grad_norm": 0.3286679983139038,
+ "learning_rate": 0.0006,
+ "loss": 5.723465919494629,
+ "step": 264
+ },
+ {
+ "epoch": 3.6850152905198774,
+ "grad_norm": 0.27653390169143677,
+ "learning_rate": 0.0006,
+ "loss": 5.713820457458496,
+ "step": 265
+ },
+ {
+ "epoch": 3.6989951944080386,
+ "grad_norm": 0.26138055324554443,
+ "learning_rate": 0.0006,
+ "loss": 5.683221817016602,
+ "step": 266
+ },
+ {
+ "epoch": 3.7129750982961993,
+ "grad_norm": 0.23706290125846863,
+ "learning_rate": 0.0006,
+ "loss": 5.6896867752075195,
+ "step": 267
+ },
+ {
+ "epoch": 3.72695500218436,
+ "grad_norm": 0.2751729190349579,
+ "learning_rate": 0.0006,
+ "loss": 5.710301876068115,
+ "step": 268
+ },
+ {
+ "epoch": 3.7409349060725208,
+ "grad_norm": 0.255393385887146,
+ "learning_rate": 0.0006,
+ "loss": 5.687932968139648,
+ "step": 269
+ },
+ {
+ "epoch": 3.7549148099606815,
+ "grad_norm": 0.21453925967216492,
+ "learning_rate": 0.0006,
+ "loss": 5.68234395980835,
+ "step": 270
+ },
+ {
+ "epoch": 3.7688947138488422,
+ "grad_norm": 0.21771012246608734,
+ "learning_rate": 0.0006,
+ "loss": 5.683980464935303,
+ "step": 271
+ },
+ {
+ "epoch": 3.782874617737003,
+ "grad_norm": 0.1884593963623047,
+ "learning_rate": 0.0006,
+ "loss": 5.662779808044434,
+ "step": 272
+ },
+ {
+ "epoch": 3.7968545216251637,
+ "grad_norm": 0.20429612696170807,
+ "learning_rate": 0.0006,
+ "loss": 5.650941848754883,
+ "step": 273
+ },
+ {
+ "epoch": 3.810834425513325,
+ "grad_norm": 0.22586797177791595,
+ "learning_rate": 0.0006,
+ "loss": 5.639376640319824,
+ "step": 274
+ },
+ {
+ "epoch": 3.8248143294014856,
+ "grad_norm": 0.19651705026626587,
+ "learning_rate": 0.0006,
+ "loss": 5.612030029296875,
+ "step": 275
+ },
+ {
+ "epoch": 3.8387942332896463,
+ "grad_norm": 0.2125253826379776,
+ "learning_rate": 0.0006,
+ "loss": 5.622836589813232,
+ "step": 276
+ },
+ {
+ "epoch": 3.852774137177807,
+ "grad_norm": 0.2905234694480896,
+ "learning_rate": 0.0006,
+ "loss": 5.624594688415527,
+ "step": 277
+ },
+ {
+ "epoch": 3.8667540410659678,
+ "grad_norm": 0.2718426585197449,
+ "learning_rate": 0.0006,
+ "loss": 5.619892120361328,
+ "step": 278
+ },
+ {
+ "epoch": 3.8807339449541285,
+ "grad_norm": 0.26481127738952637,
+ "learning_rate": 0.0006,
+ "loss": 5.612496852874756,
+ "step": 279
+ },
+ {
+ "epoch": 3.894713848842289,
+ "grad_norm": 0.2876453399658203,
+ "learning_rate": 0.0006,
+ "loss": 5.59157133102417,
+ "step": 280
+ },
+ {
+ "epoch": 3.90869375273045,
+ "grad_norm": 0.22829554975032806,
+ "learning_rate": 0.0006,
+ "loss": 5.5884199142456055,
+ "step": 281
+ },
+ {
+ "epoch": 3.9226736566186107,
+ "grad_norm": 0.22852344810962677,
+ "learning_rate": 0.0006,
+ "loss": 5.618719100952148,
+ "step": 282
+ },
+ {
+ "epoch": 3.9366535605067714,
+ "grad_norm": 0.37366563081741333,
+ "learning_rate": 0.0006,
+ "loss": 5.611738204956055,
+ "step": 283
+ },
+ {
+ "epoch": 3.950633464394932,
+ "grad_norm": 0.5650382041931152,
+ "learning_rate": 0.0006,
+ "loss": 5.606371879577637,
+ "step": 284
+ },
+ {
+ "epoch": 3.964613368283093,
+ "grad_norm": 0.5960066914558411,
+ "learning_rate": 0.0006,
+ "loss": 5.595022201538086,
+ "step": 285
+ },
+ {
+ "epoch": 3.9785932721712536,
+ "grad_norm": 0.3561663031578064,
+ "learning_rate": 0.0006,
+ "loss": 5.581035614013672,
+ "step": 286
+ },
+ {
+ "epoch": 3.9925731760594148,
+ "grad_norm": 0.44699913263320923,
+ "learning_rate": 0.0006,
+ "loss": 5.568033218383789,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.42783990502357483,
+ "learning_rate": 0.0006,
+ "loss": 5.571993827819824,
+ "step": 288
+ },
+ {
+ "epoch": 4.0,
+ "eval_loss": 6.349016189575195,
+ "eval_runtime": 44.3326,
+ "eval_samples_per_second": 55.084,
+ "eval_steps_per_second": 3.451,
+ "step": 288
+ },
+ {
+ "epoch": 4.013979903888161,
+ "grad_norm": 0.41305896639823914,
+ "learning_rate": 0.0006,
+ "loss": 5.562954902648926,
+ "step": 289
+ },
+ {
+ "epoch": 4.0279598077763215,
+ "grad_norm": 0.3966459035873413,
+ "learning_rate": 0.0006,
+ "loss": 5.5671916007995605,
+ "step": 290
+ },
+ {
+ "epoch": 4.041939711664482,
+ "grad_norm": 0.4846104085445404,
+ "learning_rate": 0.0006,
+ "loss": 5.548027038574219,
+ "step": 291
+ },
+ {
+ "epoch": 4.055919615552643,
+ "grad_norm": 0.5916333794593811,
+ "learning_rate": 0.0006,
+ "loss": 5.5900068283081055,
+ "step": 292
+ },
+ {
+ "epoch": 4.069899519440804,
+ "grad_norm": 0.5973889231681824,
+ "learning_rate": 0.0006,
+ "loss": 5.537594795227051,
+ "step": 293
+ },
+ {
+ "epoch": 4.083879423328964,
+ "grad_norm": 0.4190494418144226,
+ "learning_rate": 0.0006,
+ "loss": 5.534749984741211,
+ "step": 294
+ },
+ {
+ "epoch": 4.097859327217125,
+ "grad_norm": 0.5956901907920837,
+ "learning_rate": 0.0006,
+ "loss": 5.554540634155273,
+ "step": 295
+ },
+ {
+ "epoch": 4.111839231105286,
+ "grad_norm": 0.8257920742034912,
+ "learning_rate": 0.0006,
+ "loss": 5.5728068351745605,
+ "step": 296
+ },
+ {
+ "epoch": 4.1258191349934465,
+ "grad_norm": 0.7241750955581665,
+ "learning_rate": 0.0006,
+ "loss": 5.5643815994262695,
+ "step": 297
+ },
+ {
+ "epoch": 4.139799038881607,
+ "grad_norm": 0.45730507373809814,
+ "learning_rate": 0.0006,
+ "loss": 5.554225921630859,
+ "step": 298
+ },
+ {
+ "epoch": 4.153778942769769,
+ "grad_norm": 0.5166977643966675,
+ "learning_rate": 0.0006,
+ "loss": 5.540790557861328,
+ "step": 299
+ },
+ {
+ "epoch": 4.16775884665793,
+ "grad_norm": 0.433237761259079,
+ "learning_rate": 0.0006,
+ "loss": 5.536884784698486,
+ "step": 300
+ },
+ {
+ "epoch": 4.18173875054609,
+ "grad_norm": 0.3369830250740051,
+ "learning_rate": 0.0006,
+ "loss": 5.532837867736816,
+ "step": 301
+ },
+ {
+ "epoch": 4.195718654434251,
+ "grad_norm": 0.33091458678245544,
+ "learning_rate": 0.0006,
+ "loss": 5.547643661499023,
+ "step": 302
+ },
+ {
+ "epoch": 4.209698558322412,
+ "grad_norm": 0.36462724208831787,
+ "learning_rate": 0.0006,
+ "loss": 5.525021076202393,
+ "step": 303
+ },
+ {
+ "epoch": 4.2236784622105725,
+ "grad_norm": 0.3342771530151367,
+ "learning_rate": 0.0006,
+ "loss": 5.512082099914551,
+ "step": 304
+ },
+ {
+ "epoch": 4.237658366098733,
+ "grad_norm": 0.26784762740135193,
+ "learning_rate": 0.0006,
+ "loss": 5.488072395324707,
+ "step": 305
+ },
+ {
+ "epoch": 4.251638269986894,
+ "grad_norm": 0.25986987352371216,
+ "learning_rate": 0.0006,
+ "loss": 5.4960455894470215,
+ "step": 306
+ },
+ {
+ "epoch": 4.265618173875055,
+ "grad_norm": 0.24595795571804047,
+ "learning_rate": 0.0006,
+ "loss": 5.513367176055908,
+ "step": 307
+ },
+ {
+ "epoch": 4.279598077763215,
+ "grad_norm": 0.2224857211112976,
+ "learning_rate": 0.0006,
+ "loss": 5.465205192565918,
+ "step": 308
+ },
+ {
+ "epoch": 4.293577981651376,
+ "grad_norm": 0.26799243688583374,
+ "learning_rate": 0.0006,
+ "loss": 5.476632118225098,
+ "step": 309
+ },
+ {
+ "epoch": 4.307557885539537,
+ "grad_norm": 0.20443417131900787,
+ "learning_rate": 0.0006,
+ "loss": 5.442601203918457,
+ "step": 310
+ },
+ {
+ "epoch": 4.321537789427698,
+ "grad_norm": 0.2275059074163437,
+ "learning_rate": 0.0006,
+ "loss": 5.453519344329834,
+ "step": 311
+ },
+ {
+ "epoch": 4.335517693315858,
+ "grad_norm": 0.2860901951789856,
+ "learning_rate": 0.0006,
+ "loss": 5.439424514770508,
+ "step": 312
+ },
+ {
+ "epoch": 4.349497597204019,
+ "grad_norm": 0.3378142714500427,
+ "learning_rate": 0.0006,
+ "loss": 5.476953983306885,
+ "step": 313
+ },
+ {
+ "epoch": 4.36347750109218,
+ "grad_norm": 0.3487110733985901,
+ "learning_rate": 0.0006,
+ "loss": 5.47003698348999,
+ "step": 314
+ },
+ {
+ "epoch": 4.3774574049803405,
+ "grad_norm": 0.3655227720737457,
+ "learning_rate": 0.0006,
+ "loss": 5.454250812530518,
+ "step": 315
+ },
+ {
+ "epoch": 4.391437308868501,
+ "grad_norm": 0.3754786252975464,
+ "learning_rate": 0.0006,
+ "loss": 5.475249290466309,
+ "step": 316
+ },
+ {
+ "epoch": 4.405417212756662,
+ "grad_norm": 0.42494088411331177,
+ "learning_rate": 0.0006,
+ "loss": 5.4552459716796875,
+ "step": 317
+ },
+ {
+ "epoch": 4.419397116644823,
+ "grad_norm": 0.4914703667163849,
+ "learning_rate": 0.0006,
+ "loss": 5.431845188140869,
+ "step": 318
+ },
+ {
+ "epoch": 4.433377020532983,
+ "grad_norm": 0.42470860481262207,
+ "learning_rate": 0.0006,
+ "loss": 5.454581260681152,
+ "step": 319
+ },
+ {
+ "epoch": 4.447356924421145,
+ "grad_norm": 0.3828011155128479,
+ "learning_rate": 0.0006,
+ "loss": 5.435178756713867,
+ "step": 320
+ },
+ {
+ "epoch": 4.461336828309306,
+ "grad_norm": 0.47256892919540405,
+ "learning_rate": 0.0006,
+ "loss": 5.428861618041992,
+ "step": 321
+ },
+ {
+ "epoch": 4.4753167321974665,
+ "grad_norm": 0.5665146708488464,
+ "learning_rate": 0.0006,
+ "loss": 5.424633026123047,
+ "step": 322
+ },
+ {
+ "epoch": 4.489296636085627,
+ "grad_norm": 0.48146721720695496,
+ "learning_rate": 0.0006,
+ "loss": 5.4577860832214355,
+ "step": 323
+ },
+ {
+ "epoch": 4.503276539973788,
+ "grad_norm": 0.3378535509109497,
+ "learning_rate": 0.0006,
+ "loss": 5.422727108001709,
+ "step": 324
+ },
+ {
+ "epoch": 4.517256443861949,
+ "grad_norm": 0.41981473565101624,
+ "learning_rate": 0.0006,
+ "loss": 5.418993949890137,
+ "step": 325
+ },
+ {
+ "epoch": 4.531236347750109,
+ "grad_norm": 0.39389684796333313,
+ "learning_rate": 0.0006,
+ "loss": 5.41835880279541,
+ "step": 326
+ },
+ {
+ "epoch": 4.54521625163827,
+ "grad_norm": 0.5912176370620728,
+ "learning_rate": 0.0006,
+ "loss": 5.40073299407959,
+ "step": 327
+ },
+ {
+ "epoch": 4.559196155526431,
+ "grad_norm": 0.6877487897872925,
+ "learning_rate": 0.0006,
+ "loss": 5.445301055908203,
+ "step": 328
+ },
+ {
+ "epoch": 4.573176059414592,
+ "grad_norm": 0.580555260181427,
+ "learning_rate": 0.0006,
+ "loss": 5.431069374084473,
+ "step": 329
+ },
+ {
+ "epoch": 4.587155963302752,
+ "grad_norm": 0.5974457859992981,
+ "learning_rate": 0.0006,
+ "loss": 5.422694206237793,
+ "step": 330
+ },
+ {
+ "epoch": 4.601135867190913,
+ "grad_norm": 0.722481906414032,
+ "learning_rate": 0.0006,
+ "loss": 5.447752952575684,
+ "step": 331
+ },
+ {
+ "epoch": 4.615115771079074,
+ "grad_norm": 0.7687886953353882,
+ "learning_rate": 0.0006,
+ "loss": 5.437956809997559,
+ "step": 332
+ },
+ {
+ "epoch": 4.6290956749672345,
+ "grad_norm": 0.7368173003196716,
+ "learning_rate": 0.0006,
+ "loss": 5.4367241859436035,
+ "step": 333
+ },
+ {
+ "epoch": 4.643075578855395,
+ "grad_norm": 0.6650524139404297,
+ "learning_rate": 0.0006,
+ "loss": 5.4288434982299805,
+ "step": 334
+ },
+ {
+ "epoch": 4.657055482743556,
+ "grad_norm": 0.4997614920139313,
+ "learning_rate": 0.0006,
+ "loss": 5.412769317626953,
+ "step": 335
+ },
+ {
+ "epoch": 4.671035386631717,
+ "grad_norm": 0.44208982586860657,
+ "learning_rate": 0.0006,
+ "loss": 5.42405366897583,
+ "step": 336
+ },
+ {
+ "epoch": 4.685015290519877,
+ "grad_norm": 0.39510273933410645,
+ "learning_rate": 0.0006,
+ "loss": 5.402547836303711,
+ "step": 337
+ },
+ {
+ "epoch": 4.698995194408038,
+ "grad_norm": 0.44970476627349854,
+ "learning_rate": 0.0006,
+ "loss": 5.377168655395508,
+ "step": 338
+ },
+ {
+ "epoch": 4.712975098296199,
+ "grad_norm": 0.3902331590652466,
+ "learning_rate": 0.0006,
+ "loss": 5.401622772216797,
+ "step": 339
+ },
+ {
+ "epoch": 4.72695500218436,
+ "grad_norm": 0.33485135436058044,
+ "learning_rate": 0.0006,
+ "loss": 5.397945880889893,
+ "step": 340
+ },
+ {
+ "epoch": 4.740934906072521,
+ "grad_norm": 0.29062309861183167,
+ "learning_rate": 0.0006,
+ "loss": 5.356175422668457,
+ "step": 341
+ },
+ {
+ "epoch": 4.754914809960681,
+ "grad_norm": 0.23617377877235413,
+ "learning_rate": 0.0006,
+ "loss": 5.388517379760742,
+ "step": 342
+ },
+ {
+ "epoch": 4.768894713848843,
+ "grad_norm": 0.2704737186431885,
+ "learning_rate": 0.0006,
+ "loss": 5.3746137619018555,
+ "step": 343
+ },
+ {
+ "epoch": 4.782874617737003,
+ "grad_norm": 0.20488551259040833,
+ "learning_rate": 0.0006,
+ "loss": 5.3754472732543945,
+ "step": 344
+ },
+ {
+ "epoch": 4.796854521625164,
+ "grad_norm": 0.2007082849740982,
+ "learning_rate": 0.0006,
+ "loss": 5.3538618087768555,
+ "step": 345
+ },
+ {
+ "epoch": 4.810834425513325,
+ "grad_norm": 0.21732935309410095,
+ "learning_rate": 0.0006,
+ "loss": 5.351774215698242,
+ "step": 346
+ },
+ {
+ "epoch": 4.824814329401486,
+ "grad_norm": 0.1944841742515564,
+ "learning_rate": 0.0006,
+ "loss": 5.357545852661133,
+ "step": 347
+ },
+ {
+ "epoch": 4.838794233289646,
+ "grad_norm": 0.1953933835029602,
+ "learning_rate": 0.0006,
+ "loss": 5.321681022644043,
+ "step": 348
+ },
+ {
+ "epoch": 4.852774137177807,
+ "grad_norm": 0.1743433028459549,
+ "learning_rate": 0.0006,
+ "loss": 5.340302467346191,
+ "step": 349
+ },
+ {
+ "epoch": 4.866754041065968,
+ "grad_norm": 0.19655466079711914,
+ "learning_rate": 0.0006,
+ "loss": 5.325471878051758,
+ "step": 350
+ },
+ {
+ "epoch": 4.8807339449541285,
+ "grad_norm": 0.15761791169643402,
+ "learning_rate": 0.0006,
+ "loss": 5.3453240394592285,
+ "step": 351
+ },
+ {
+ "epoch": 4.894713848842289,
+ "grad_norm": 0.19164425134658813,
+ "learning_rate": 0.0006,
+ "loss": 5.315583229064941,
+ "step": 352
+ },
+ {
+ "epoch": 4.90869375273045,
+ "grad_norm": 0.28084540367126465,
+ "learning_rate": 0.0006,
+ "loss": 5.309171676635742,
+ "step": 353
+ },
+ {
+ "epoch": 4.922673656618611,
+ "grad_norm": 0.4681853652000427,
+ "learning_rate": 0.0006,
+ "loss": 5.318211078643799,
+ "step": 354
+ },
+ {
+ "epoch": 4.936653560506771,
+ "grad_norm": 0.6417295932769775,
+ "learning_rate": 0.0006,
+ "loss": 5.309263706207275,
+ "step": 355
+ },
+ {
+ "epoch": 4.950633464394932,
+ "grad_norm": 0.501312792301178,
+ "learning_rate": 0.0006,
+ "loss": 5.321534156799316,
+ "step": 356
+ },
+ {
+ "epoch": 4.964613368283093,
+ "grad_norm": 0.47502145171165466,
+ "learning_rate": 0.0006,
+ "loss": 5.323659896850586,
+ "step": 357
+ },
+ {
+ "epoch": 4.978593272171254,
+ "grad_norm": 0.5366594791412354,
+ "learning_rate": 0.0006,
+ "loss": 5.327367782592773,
+ "step": 358
+ },
+ {
+ "epoch": 4.992573176059414,
+ "grad_norm": 0.6986395120620728,
+ "learning_rate": 0.0006,
+ "loss": 5.311097145080566,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.6626625657081604,
+ "learning_rate": 0.0006,
+ "loss": 5.337558269500732,
+ "step": 360
+ },
+ {
+ "epoch": 5.0,
+ "eval_loss": 5.929230690002441,
+ "eval_runtime": 44.5268,
+ "eval_samples_per_second": 54.843,
+ "eval_steps_per_second": 3.436,
+ "step": 360
+ },
+ {
+ "epoch": 5.013979903888161,
+ "grad_norm": 0.7383704781532288,
+ "learning_rate": 0.0006,
+ "loss": 5.315563678741455,
+ "step": 361
+ },
+ {
+ "epoch": 5.0279598077763215,
+ "grad_norm": 0.7730138301849365,
+ "learning_rate": 0.0006,
+ "loss": 5.324905872344971,
+ "step": 362
+ },
+ {
+ "epoch": 5.041939711664482,
+ "grad_norm": 0.8170825839042664,
+ "learning_rate": 0.0006,
+ "loss": 5.350251197814941,
+ "step": 363
+ },
+ {
+ "epoch": 5.055919615552643,
+ "grad_norm": 0.6950958371162415,
+ "learning_rate": 0.0006,
+ "loss": 5.338744163513184,
+ "step": 364
+ },
+ {
+ "epoch": 5.069899519440804,
+ "grad_norm": 0.5582894086837769,
+ "learning_rate": 0.0006,
+ "loss": 5.340539932250977,
+ "step": 365
+ },
+ {
+ "epoch": 5.083879423328964,
+ "grad_norm": 0.4772159159183502,
+ "learning_rate": 0.0006,
+ "loss": 5.344161033630371,
+ "step": 366
+ },
+ {
+ "epoch": 5.097859327217125,
+ "grad_norm": 0.5432839393615723,
+ "learning_rate": 0.0006,
+ "loss": 5.312403678894043,
+ "step": 367
+ },
+ {
+ "epoch": 5.111839231105286,
+ "grad_norm": 0.4944784641265869,
+ "learning_rate": 0.0006,
+ "loss": 5.30281925201416,
+ "step": 368
+ },
+ {
+ "epoch": 5.1258191349934465,
+ "grad_norm": 0.4298315942287445,
+ "learning_rate": 0.0006,
+ "loss": 5.29564094543457,
+ "step": 369
+ },
+ {
+ "epoch": 5.139799038881607,
+ "grad_norm": 0.349889874458313,
+ "learning_rate": 0.0006,
+ "loss": 5.287062644958496,
+ "step": 370
+ },
+ {
+ "epoch": 5.153778942769769,
+ "grad_norm": 0.2823719084262848,
+ "learning_rate": 0.0006,
+ "loss": 5.28826904296875,
+ "step": 371
+ },
+ {
+ "epoch": 5.16775884665793,
+ "grad_norm": 0.32975050806999207,
+ "learning_rate": 0.0006,
+ "loss": 5.256399631500244,
+ "step": 372
+ },
+ {
+ "epoch": 5.18173875054609,
+ "grad_norm": 0.2963952124118805,
+ "learning_rate": 0.0006,
+ "loss": 5.273757457733154,
+ "step": 373
+ },
+ {
+ "epoch": 5.195718654434251,
+ "grad_norm": 0.21345984935760498,
+ "learning_rate": 0.0006,
+ "loss": 5.274978160858154,
+ "step": 374
+ },
+ {
+ "epoch": 5.209698558322412,
+ "grad_norm": 0.2363101840019226,
+ "learning_rate": 0.0006,
+ "loss": 5.261585235595703,
+ "step": 375
+ },
+ {
+ "epoch": 5.2236784622105725,
+ "grad_norm": 0.19626963138580322,
+ "learning_rate": 0.0006,
+ "loss": 5.259700298309326,
+ "step": 376
+ },
+ {
+ "epoch": 5.237658366098733,
+ "grad_norm": 0.21083571016788483,
+ "learning_rate": 0.0006,
+ "loss": 5.233585357666016,
+ "step": 377
+ },
+ {
+ "epoch": 5.251638269986894,
+ "grad_norm": 0.2273513823747635,
+ "learning_rate": 0.0006,
+ "loss": 5.231740474700928,
+ "step": 378
+ },
+ {
+ "epoch": 5.265618173875055,
+ "grad_norm": 0.18299247324466705,
+ "learning_rate": 0.0006,
+ "loss": 5.251256465911865,
+ "step": 379
+ },
+ {
+ "epoch": 5.279598077763215,
+ "grad_norm": 0.19578224420547485,
+ "learning_rate": 0.0006,
+ "loss": 5.230329513549805,
+ "step": 380
+ },
+ {
+ "epoch": 5.293577981651376,
+ "grad_norm": 0.20308879017829895,
+ "learning_rate": 0.0006,
+ "loss": 5.243951797485352,
+ "step": 381
+ },
+ {
+ "epoch": 5.307557885539537,
+ "grad_norm": 0.21053212881088257,
+ "learning_rate": 0.0006,
+ "loss": 5.210272789001465,
+ "step": 382
+ },
+ {
+ "epoch": 5.321537789427698,
+ "grad_norm": 0.21852520108222961,
+ "learning_rate": 0.0006,
+ "loss": 5.215418815612793,
+ "step": 383
+ },
+ {
+ "epoch": 5.335517693315858,
+ "grad_norm": 0.24872010946273804,
+ "learning_rate": 0.0006,
+ "loss": 5.225139617919922,
+ "step": 384
+ },
+ {
+ "epoch": 5.349497597204019,
+ "grad_norm": 0.27780187129974365,
+ "learning_rate": 0.0006,
+ "loss": 5.241010665893555,
+ "step": 385
+ },
+ {
+ "epoch": 5.36347750109218,
+ "grad_norm": 0.261767715215683,
+ "learning_rate": 0.0006,
+ "loss": 5.230723857879639,
+ "step": 386
+ },
+ {
+ "epoch": 5.3774574049803405,
+ "grad_norm": 0.2111261785030365,
+ "learning_rate": 0.0006,
+ "loss": 5.1848602294921875,
+ "step": 387
+ },
+ {
+ "epoch": 5.391437308868501,
+ "grad_norm": 0.24325387179851532,
+ "learning_rate": 0.0006,
+ "loss": 5.180911064147949,
+ "step": 388
+ },
+ {
+ "epoch": 5.405417212756662,
+ "grad_norm": 0.19542962312698364,
+ "learning_rate": 0.0006,
+ "loss": 5.189907073974609,
+ "step": 389
+ },
+ {
+ "epoch": 5.419397116644823,
+ "grad_norm": 0.20489346981048584,
+ "learning_rate": 0.0006,
+ "loss": 5.184634208679199,
+ "step": 390
+ },
+ {
+ "epoch": 5.433377020532983,
+ "grad_norm": 0.2753409147262573,
+ "learning_rate": 0.0006,
+ "loss": 5.190083026885986,
+ "step": 391
+ },
+ {
+ "epoch": 5.447356924421145,
+ "grad_norm": 0.3758019208908081,
+ "learning_rate": 0.0006,
+ "loss": 5.189423561096191,
+ "step": 392
+ },
+ {
+ "epoch": 5.461336828309306,
+ "grad_norm": 0.4425095021724701,
+ "learning_rate": 0.0006,
+ "loss": 5.17152214050293,
+ "step": 393
+ },
+ {
+ "epoch": 5.4753167321974665,
+ "grad_norm": 0.39721858501434326,
+ "learning_rate": 0.0006,
+ "loss": 5.189178466796875,
+ "step": 394
+ },
+ {
+ "epoch": 5.489296636085627,
+ "grad_norm": 0.43441957235336304,
+ "learning_rate": 0.0006,
+ "loss": 5.1823577880859375,
+ "step": 395
+ },
+ {
+ "epoch": 5.503276539973788,
+ "grad_norm": 0.3583861291408539,
+ "learning_rate": 0.0006,
+ "loss": 5.160187721252441,
+ "step": 396
+ },
+ {
+ "epoch": 5.517256443861949,
+ "grad_norm": 0.323290079832077,
+ "learning_rate": 0.0006,
+ "loss": 5.113046646118164,
+ "step": 397
+ },
+ {
+ "epoch": 5.531236347750109,
+ "grad_norm": 0.3049418330192566,
+ "learning_rate": 0.0006,
+ "loss": 5.172209739685059,
+ "step": 398
+ },
+ {
+ "epoch": 5.54521625163827,
+ "grad_norm": 0.3253744840621948,
+ "learning_rate": 0.0006,
+ "loss": 5.1970720291137695,
+ "step": 399
+ },
+ {
+ "epoch": 5.559196155526431,
+ "grad_norm": 0.3232555091381073,
+ "learning_rate": 0.0006,
+ "loss": 5.173195838928223,
+ "step": 400
+ },
+ {
+ "epoch": 5.573176059414592,
+ "grad_norm": 0.33751845359802246,
+ "learning_rate": 0.0006,
+ "loss": 5.137526988983154,
+ "step": 401
+ },
+ {
+ "epoch": 5.587155963302752,
+ "grad_norm": 0.45970913767814636,
+ "learning_rate": 0.0006,
+ "loss": 5.123377799987793,
+ "step": 402
+ },
+ {
+ "epoch": 5.601135867190913,
+ "grad_norm": 0.5383784770965576,
+ "learning_rate": 0.0006,
+ "loss": 5.154180526733398,
+ "step": 403
+ },
+ {
+ "epoch": 5.615115771079074,
+ "grad_norm": 0.45765912532806396,
+ "learning_rate": 0.0006,
+ "loss": 5.1485209465026855,
+ "step": 404
+ },
+ {
+ "epoch": 5.6290956749672345,
+ "grad_norm": 0.5079503059387207,
+ "learning_rate": 0.0006,
+ "loss": 5.158293724060059,
+ "step": 405
+ },
+ {
+ "epoch": 5.643075578855395,
+ "grad_norm": 0.4860183894634247,
+ "learning_rate": 0.0006,
+ "loss": 5.1610212326049805,
+ "step": 406
+ },
+ {
+ "epoch": 5.657055482743556,
+ "grad_norm": 0.4065648913383484,
+ "learning_rate": 0.0006,
+ "loss": 5.1260786056518555,
+ "step": 407
+ },
+ {
+ "epoch": 5.671035386631717,
+ "grad_norm": 0.39606142044067383,
+ "learning_rate": 0.0006,
+ "loss": 5.1598711013793945,
+ "step": 408
+ },
+ {
+ "epoch": 5.685015290519877,
+ "grad_norm": 0.4705151319503784,
+ "learning_rate": 0.0006,
+ "loss": 5.166455268859863,
+ "step": 409
+ },
+ {
+ "epoch": 5.698995194408038,
+ "grad_norm": 0.5040799379348755,
+ "learning_rate": 0.0006,
+ "loss": 5.1408209800720215,
+ "step": 410
+ },
+ {
+ "epoch": 5.712975098296199,
+ "grad_norm": 0.5012556910514832,
+ "learning_rate": 0.0006,
+ "loss": 5.144109725952148,
+ "step": 411
+ },
+ {
+ "epoch": 5.72695500218436,
+ "grad_norm": 0.44301411509513855,
+ "learning_rate": 0.0006,
+ "loss": 5.155509948730469,
+ "step": 412
+ },
+ {
+ "epoch": 5.740934906072521,
+ "grad_norm": 0.36632269620895386,
+ "learning_rate": 0.0006,
+ "loss": 5.123111248016357,
+ "step": 413
+ },
+ {
+ "epoch": 5.754914809960681,
+ "grad_norm": 0.2980524003505707,
+ "learning_rate": 0.0006,
+ "loss": 5.1355719566345215,
+ "step": 414
+ },
+ {
+ "epoch": 5.768894713848843,
+ "grad_norm": 0.3441782295703888,
+ "learning_rate": 0.0006,
+ "loss": 5.132327079772949,
+ "step": 415
+ },
+ {
+ "epoch": 5.782874617737003,
+ "grad_norm": 0.4150780737400055,
+ "learning_rate": 0.0006,
+ "loss": 5.148543357849121,
+ "step": 416
+ },
+ {
+ "epoch": 5.796854521625164,
+ "grad_norm": 0.48417383432388306,
+ "learning_rate": 0.0006,
+ "loss": 5.104989528656006,
+ "step": 417
+ },
+ {
+ "epoch": 5.810834425513325,
+ "grad_norm": 0.3216031491756439,
+ "learning_rate": 0.0006,
+ "loss": 5.0926127433776855,
+ "step": 418
+ },
+ {
+ "epoch": 5.824814329401486,
+ "grad_norm": 0.2821158468723297,
+ "learning_rate": 0.0006,
+ "loss": 5.112299919128418,
+ "step": 419
+ },
+ {
+ "epoch": 5.838794233289646,
+ "grad_norm": 0.29821011424064636,
+ "learning_rate": 0.0006,
+ "loss": 5.091662406921387,
+ "step": 420
+ },
+ {
+ "epoch": 5.852774137177807,
+ "grad_norm": 0.30570563673973083,
+ "learning_rate": 0.0006,
+ "loss": 5.137539863586426,
+ "step": 421
+ },
+ {
+ "epoch": 5.866754041065968,
+ "grad_norm": 0.4029594957828522,
+ "learning_rate": 0.0006,
+ "loss": 5.112751007080078,
+ "step": 422
+ },
+ {
+ "epoch": 5.8807339449541285,
+ "grad_norm": 0.3878514766693115,
+ "learning_rate": 0.0006,
+ "loss": 5.094973564147949,
+ "step": 423
+ },
+ {
+ "epoch": 5.894713848842289,
+ "grad_norm": 0.31936126947402954,
+ "learning_rate": 0.0006,
+ "loss": 5.081070899963379,
+ "step": 424
+ },
+ {
+ "epoch": 5.90869375273045,
+ "grad_norm": 0.3309082090854645,
+ "learning_rate": 0.0006,
+ "loss": 5.06803560256958,
+ "step": 425
+ },
+ {
+ "epoch": 5.922673656618611,
+ "grad_norm": 0.27830439805984497,
+ "learning_rate": 0.0006,
+ "loss": 5.044766426086426,
+ "step": 426
+ },
+ {
+ "epoch": 5.936653560506771,
+ "grad_norm": 0.3301011919975281,
+ "learning_rate": 0.0006,
+ "loss": 5.093942165374756,
+ "step": 427
+ },
+ {
+ "epoch": 5.950633464394932,
+ "grad_norm": 0.40845948457717896,
+ "learning_rate": 0.0006,
+ "loss": 5.0889458656311035,
+ "step": 428
+ },
+ {
+ "epoch": 5.964613368283093,
+ "grad_norm": 0.4412153959274292,
+ "learning_rate": 0.0006,
+ "loss": 5.064834117889404,
+ "step": 429
+ },
+ {
+ "epoch": 5.978593272171254,
+ "grad_norm": 0.3592590093612671,
+ "learning_rate": 0.0006,
+ "loss": 5.066648006439209,
+ "step": 430
+ },
+ {
+ "epoch": 5.992573176059414,
+ "grad_norm": 0.3952840268611908,
+ "learning_rate": 0.0006,
+ "loss": 5.066549301147461,
+ "step": 431
+ },
+ {
+ "epoch": 6.0,
+ "grad_norm": 0.38878682255744934,
+ "learning_rate": 0.0006,
+ "loss": 5.0354323387146,
+ "step": 432
+ },
+ {
+ "epoch": 6.0,
+ "eval_loss": 5.473907947540283,
+ "eval_runtime": 44.5121,
+ "eval_samples_per_second": 54.861,
+ "eval_steps_per_second": 3.437,
+ "step": 432
+ },
+ {
+ "epoch": 6.013979903888161,
+ "grad_norm": 0.42730140686035156,
+ "learning_rate": 0.0006,
+ "loss": 5.048557281494141,
+ "step": 433
+ },
+ {
+ "epoch": 6.0279598077763215,
+ "grad_norm": 0.32713913917541504,
+ "learning_rate": 0.0006,
+ "loss": 5.041255950927734,
+ "step": 434
+ },
+ {
+ "epoch": 6.041939711664482,
+ "grad_norm": 0.32520365715026855,
+ "learning_rate": 0.0006,
+ "loss": 5.043124198913574,
+ "step": 435
+ },
+ {
+ "epoch": 6.055919615552643,
+ "grad_norm": 0.2941839098930359,
+ "learning_rate": 0.0006,
+ "loss": 5.0407304763793945,
+ "step": 436
+ },
+ {
+ "epoch": 6.069899519440804,
+ "grad_norm": 0.3088819682598114,
+ "learning_rate": 0.0006,
+ "loss": 5.020771026611328,
+ "step": 437
+ },
+ {
+ "epoch": 6.083879423328964,
+ "grad_norm": 0.34334254264831543,
+ "learning_rate": 0.0006,
+ "loss": 5.0260009765625,
+ "step": 438
+ },
+ {
+ "epoch": 6.097859327217125,
+ "grad_norm": 0.33016136288642883,
+ "learning_rate": 0.0006,
+ "loss": 4.994412899017334,
+ "step": 439
+ },
+ {
+ "epoch": 6.111839231105286,
+ "grad_norm": 0.2527366280555725,
+ "learning_rate": 0.0006,
+ "loss": 4.997830390930176,
+ "step": 440
+ },
+ {
+ "epoch": 6.1258191349934465,
+ "grad_norm": 0.24742509424686432,
+ "learning_rate": 0.0006,
+ "loss": 5.017087936401367,
+ "step": 441
+ },
+ {
+ "epoch": 6.139799038881607,
+ "grad_norm": 0.22578303515911102,
+ "learning_rate": 0.0006,
+ "loss": 5.000683784484863,
+ "step": 442
+ },
+ {
+ "epoch": 6.153778942769769,
+ "grad_norm": 0.21213896572589874,
+ "learning_rate": 0.0006,
+ "loss": 4.993280410766602,
+ "step": 443
+ },
+ {
+ "epoch": 6.16775884665793,
+ "grad_norm": 0.22559592127799988,
+ "learning_rate": 0.0006,
+ "loss": 5.005735874176025,
+ "step": 444
+ },
+ {
+ "epoch": 6.18173875054609,
+ "grad_norm": 0.18574322760105133,
+ "learning_rate": 0.0006,
+ "loss": 4.996601104736328,
+ "step": 445
+ },
+ {
+ "epoch": 6.195718654434251,
+ "grad_norm": 0.1793852299451828,
+ "learning_rate": 0.0006,
+ "loss": 4.977394104003906,
+ "step": 446
+ },
+ {
+ "epoch": 6.209698558322412,
+ "grad_norm": 0.1851297914981842,
+ "learning_rate": 0.0006,
+ "loss": 4.983541488647461,
+ "step": 447
+ },
+ {
+ "epoch": 6.2236784622105725,
+ "grad_norm": 0.2045268565416336,
+ "learning_rate": 0.0006,
+ "loss": 4.992830276489258,
+ "step": 448
+ },
+ {
+ "epoch": 6.237658366098733,
+ "grad_norm": 0.21707463264465332,
+ "learning_rate": 0.0006,
+ "loss": 4.998589515686035,
+ "step": 449
+ },
+ {
+ "epoch": 6.251638269986894,
+ "grad_norm": 0.2805860638618469,
+ "learning_rate": 0.0006,
+ "loss": 4.973134517669678,
+ "step": 450
+ },
+ {
+ "epoch": 6.265618173875055,
+ "grad_norm": 0.33102089166641235,
+ "learning_rate": 0.0006,
+ "loss": 4.957348823547363,
+ "step": 451
+ },
+ {
+ "epoch": 6.279598077763215,
+ "grad_norm": 0.3763096034526825,
+ "learning_rate": 0.0006,
+ "loss": 5.0133256912231445,
+ "step": 452
+ },
+ {
+ "epoch": 6.293577981651376,
+ "grad_norm": 0.4676196575164795,
+ "learning_rate": 0.0006,
+ "loss": 4.972289562225342,
+ "step": 453
+ },
+ {
+ "epoch": 6.307557885539537,
+ "grad_norm": 0.6158978343009949,
+ "learning_rate": 0.0006,
+ "loss": 4.989326477050781,
+ "step": 454
+ },
+ {
+ "epoch": 6.321537789427698,
+ "grad_norm": 0.537460446357727,
+ "learning_rate": 0.0006,
+ "loss": 5.0210676193237305,
+ "step": 455
+ },
+ {
+ "epoch": 6.335517693315858,
+ "grad_norm": 0.5342532396316528,
+ "learning_rate": 0.0006,
+ "loss": 4.988524436950684,
+ "step": 456
+ },
+ {
+ "epoch": 6.349497597204019,
+ "grad_norm": 0.5736384987831116,
+ "learning_rate": 0.0006,
+ "loss": 4.977508068084717,
+ "step": 457
+ },
+ {
+ "epoch": 6.36347750109218,
+ "grad_norm": 0.6656201481819153,
+ "learning_rate": 0.0006,
+ "loss": 5.047934055328369,
+ "step": 458
+ },
+ {
+ "epoch": 6.3774574049803405,
+ "grad_norm": 0.6388342380523682,
+ "learning_rate": 0.0006,
+ "loss": 5.017617225646973,
+ "step": 459
+ },
+ {
+ "epoch": 6.391437308868501,
+ "grad_norm": 0.6620904207229614,
+ "learning_rate": 0.0006,
+ "loss": 5.032195091247559,
+ "step": 460
+ },
+ {
+ "epoch": 6.405417212756662,
+ "grad_norm": 0.693274974822998,
+ "learning_rate": 0.0006,
+ "loss": 5.02433967590332,
+ "step": 461
+ },
+ {
+ "epoch": 6.419397116644823,
+ "grad_norm": 0.6888924241065979,
+ "learning_rate": 0.0006,
+ "loss": 5.010735511779785,
+ "step": 462
+ },
+ {
+ "epoch": 6.433377020532983,
+ "grad_norm": 0.7181721925735474,
+ "learning_rate": 0.0006,
+ "loss": 5.049690246582031,
+ "step": 463
+ },
+ {
+ "epoch": 6.447356924421145,
+ "grad_norm": 0.7225117087364197,
+ "learning_rate": 0.0006,
+ "loss": 5.031939506530762,
+ "step": 464
+ },
+ {
+ "epoch": 6.461336828309306,
+ "grad_norm": 0.5268304347991943,
+ "learning_rate": 0.0006,
+ "loss": 5.01638126373291,
+ "step": 465
+ },
+ {
+ "epoch": 6.4753167321974665,
+ "grad_norm": 0.38218435645103455,
+ "learning_rate": 0.0006,
+ "loss": 4.997034072875977,
+ "step": 466
+ },
+ {
+ "epoch": 6.489296636085627,
+ "grad_norm": 0.3576396703720093,
+ "learning_rate": 0.0006,
+ "loss": 5.006804943084717,
+ "step": 467
+ },
+ {
+ "epoch": 6.503276539973788,
+ "grad_norm": 0.3305981755256653,
+ "learning_rate": 0.0006,
+ "loss": 4.994671821594238,
+ "step": 468
+ },
+ {
+ "epoch": 6.517256443861949,
+ "grad_norm": 0.3254900574684143,
+ "learning_rate": 0.0006,
+ "loss": 4.9747490882873535,
+ "step": 469
+ },
+ {
+ "epoch": 6.531236347750109,
+ "grad_norm": 0.2655033469200134,
+ "learning_rate": 0.0006,
+ "loss": 5.002863883972168,
+ "step": 470
+ },
+ {
+ "epoch": 6.54521625163827,
+ "grad_norm": 0.2620532810688019,
+ "learning_rate": 0.0006,
+ "loss": 4.9813337326049805,
+ "step": 471
+ },
+ {
+ "epoch": 6.559196155526431,
+ "grad_norm": 0.22128869593143463,
+ "learning_rate": 0.0006,
+ "loss": 4.978368759155273,
+ "step": 472
+ },
+ {
+ "epoch": 6.573176059414592,
+ "grad_norm": 0.22638699412345886,
+ "learning_rate": 0.0006,
+ "loss": 4.944509029388428,
+ "step": 473
+ },
+ {
+ "epoch": 6.587155963302752,
+ "grad_norm": 0.20720207691192627,
+ "learning_rate": 0.0006,
+ "loss": 4.98404598236084,
+ "step": 474
+ },
+ {
+ "epoch": 6.601135867190913,
+ "grad_norm": 0.21577289700508118,
+ "learning_rate": 0.0006,
+ "loss": 4.958878040313721,
+ "step": 475
+ },
+ {
+ "epoch": 6.615115771079074,
+ "grad_norm": 0.22453972697257996,
+ "learning_rate": 0.0006,
+ "loss": 4.935467720031738,
+ "step": 476
+ },
+ {
+ "epoch": 6.6290956749672345,
+ "grad_norm": 0.20757712423801422,
+ "learning_rate": 0.0006,
+ "loss": 4.943334579467773,
+ "step": 477
+ },
+ {
+ "epoch": 6.643075578855395,
+ "grad_norm": 0.22808043658733368,
+ "learning_rate": 0.0006,
+ "loss": 4.936544418334961,
+ "step": 478
+ },
+ {
+ "epoch": 6.657055482743556,
+ "grad_norm": 0.2193756401538849,
+ "learning_rate": 0.0006,
+ "loss": 4.938162326812744,
+ "step": 479
+ },
+ {
+ "epoch": 6.671035386631717,
+ "grad_norm": 0.19677500426769257,
+ "learning_rate": 0.0006,
+ "loss": 4.9026713371276855,
+ "step": 480
+ },
+ {
+ "epoch": 6.685015290519877,
+ "grad_norm": 0.17271658778190613,
+ "learning_rate": 0.0006,
+ "loss": 4.912519454956055,
+ "step": 481
+ },
+ {
+ "epoch": 6.698995194408038,
+ "grad_norm": 0.17551499605178833,
+ "learning_rate": 0.0006,
+ "loss": 4.929941177368164,
+ "step": 482
+ },
+ {
+ "epoch": 6.712975098296199,
+ "grad_norm": 0.1582687348127365,
+ "learning_rate": 0.0006,
+ "loss": 4.908967971801758,
+ "step": 483
+ },
+ {
+ "epoch": 6.72695500218436,
+ "grad_norm": 0.1593410074710846,
+ "learning_rate": 0.0006,
+ "loss": 4.901554107666016,
+ "step": 484
+ },
+ {
+ "epoch": 6.740934906072521,
+ "grad_norm": 0.16746895015239716,
+ "learning_rate": 0.0006,
+ "loss": 4.917915344238281,
+ "step": 485
+ },
+ {
+ "epoch": 6.754914809960681,
+ "grad_norm": 0.17066062986850739,
+ "learning_rate": 0.0006,
+ "loss": 4.912853240966797,
+ "step": 486
+ },
+ {
+ "epoch": 6.768894713848843,
+ "grad_norm": 0.16727769374847412,
+ "learning_rate": 0.0006,
+ "loss": 4.895434856414795,
+ "step": 487
+ },
+ {
+ "epoch": 6.782874617737003,
+ "grad_norm": 0.1784558743238449,
+ "learning_rate": 0.0006,
+ "loss": 4.8805341720581055,
+ "step": 488
+ },
+ {
+ "epoch": 6.796854521625164,
+ "grad_norm": 0.176686093211174,
+ "learning_rate": 0.0006,
+ "loss": 4.855296611785889,
+ "step": 489
+ },
+ {
+ "epoch": 6.810834425513325,
+ "grad_norm": 0.21577849984169006,
+ "learning_rate": 0.0006,
+ "loss": 4.885506629943848,
+ "step": 490
+ },
+ {
+ "epoch": 6.824814329401486,
+ "grad_norm": 0.27615776658058167,
+ "learning_rate": 0.0006,
+ "loss": 4.913756847381592,
+ "step": 491
+ },
+ {
+ "epoch": 6.838794233289646,
+ "grad_norm": 0.3653675615787506,
+ "learning_rate": 0.0006,
+ "loss": 4.880918979644775,
+ "step": 492
+ },
+ {
+ "epoch": 6.852774137177807,
+ "grad_norm": 0.41473883390426636,
+ "learning_rate": 0.0006,
+ "loss": 4.894164562225342,
+ "step": 493
+ },
+ {
+ "epoch": 6.866754041065968,
+ "grad_norm": 0.45850715041160583,
+ "learning_rate": 0.0006,
+ "loss": 4.907922744750977,
+ "step": 494
+ },
+ {
+ "epoch": 6.8807339449541285,
+ "grad_norm": 0.4675290882587433,
+ "learning_rate": 0.0006,
+ "loss": 4.883112907409668,
+ "step": 495
+ },
+ {
+ "epoch": 6.894713848842289,
+ "grad_norm": 0.45795994997024536,
+ "learning_rate": 0.0006,
+ "loss": 4.897843360900879,
+ "step": 496
+ },
+ {
+ "epoch": 6.90869375273045,
+ "grad_norm": 0.46130508184432983,
+ "learning_rate": 0.0006,
+ "loss": 4.890612602233887,
+ "step": 497
+ },
+ {
+ "epoch": 6.922673656618611,
+ "grad_norm": 0.44783803820610046,
+ "learning_rate": 0.0006,
+ "loss": 4.880192756652832,
+ "step": 498
+ },
+ {
+ "epoch": 6.936653560506771,
+ "grad_norm": 0.35361284017562866,
+ "learning_rate": 0.0006,
+ "loss": 4.840778350830078,
+ "step": 499
+ },
+ {
+ "epoch": 6.950633464394932,
+ "grad_norm": 0.34027689695358276,
+ "learning_rate": 0.0006,
+ "loss": 4.871222496032715,
+ "step": 500
+ },
+ {
+ "epoch": 6.964613368283093,
+ "grad_norm": 0.30228909850120544,
+ "learning_rate": 0.0006,
+ "loss": 4.868077278137207,
+ "step": 501
+ },
+ {
+ "epoch": 6.978593272171254,
+ "grad_norm": 0.27706998586654663,
+ "learning_rate": 0.0006,
+ "loss": 4.895936012268066,
+ "step": 502
+ },
+ {
+ "epoch": 6.992573176059414,
+ "grad_norm": 0.3516870439052582,
+ "learning_rate": 0.0006,
+ "loss": 4.824636459350586,
+ "step": 503
+ },
+ {
+ "epoch": 7.0,
+ "grad_norm": 0.36831387877464294,
+ "learning_rate": 0.0006,
+ "loss": 4.874397277832031,
+ "step": 504
+ },
+ {
+ "epoch": 7.0,
+ "eval_loss": 5.176281452178955,
+ "eval_runtime": 44.2386,
+ "eval_samples_per_second": 55.201,
+ "eval_steps_per_second": 3.459,
+ "step": 504
+ },
+ {
+ "epoch": 7.013979903888161,
+ "grad_norm": 0.4265240430831909,
+ "learning_rate": 0.0006,
+ "loss": 4.814333438873291,
+ "step": 505
+ },
+ {
+ "epoch": 7.0279598077763215,
+ "grad_norm": 0.5126975774765015,
+ "learning_rate": 0.0006,
+ "loss": 4.852343559265137,
+ "step": 506
+ },
+ {
+ "epoch": 7.041939711664482,
+ "grad_norm": 0.43080806732177734,
+ "learning_rate": 0.0006,
+ "loss": 4.843439102172852,
+ "step": 507
+ },
+ {
+ "epoch": 7.055919615552643,
+ "grad_norm": 0.43170198798179626,
+ "learning_rate": 0.0006,
+ "loss": 4.845984935760498,
+ "step": 508
+ },
+ {
+ "epoch": 7.069899519440804,
+ "grad_norm": 0.5640552043914795,
+ "learning_rate": 0.0006,
+ "loss": 4.840991973876953,
+ "step": 509
+ },
+ {
+ "epoch": 7.083879423328964,
+ "grad_norm": 0.540381133556366,
+ "learning_rate": 0.0006,
+ "loss": 4.801316738128662,
+ "step": 510
+ },
+ {
+ "epoch": 7.097859327217125,
+ "grad_norm": 0.5412097573280334,
+ "learning_rate": 0.0006,
+ "loss": 4.886598587036133,
+ "step": 511
+ },
+ {
+ "epoch": 7.111839231105286,
+ "grad_norm": 0.630648136138916,
+ "learning_rate": 0.0006,
+ "loss": 4.849774360656738,
+ "step": 512
+ },
+ {
+ "epoch": 7.1258191349934465,
+ "grad_norm": 0.569952130317688,
+ "learning_rate": 0.0006,
+ "loss": 4.870607376098633,
+ "step": 513
+ },
+ {
+ "epoch": 7.139799038881607,
+ "grad_norm": 0.42051541805267334,
+ "learning_rate": 0.0006,
+ "loss": 4.83833122253418,
+ "step": 514
+ },
+ {
+ "epoch": 7.153778942769769,
+ "grad_norm": 0.3930990397930145,
+ "learning_rate": 0.0006,
+ "loss": 4.853984355926514,
+ "step": 515
+ },
+ {
+ "epoch": 7.16775884665793,
+ "grad_norm": 0.512886106967926,
+ "learning_rate": 0.0006,
+ "loss": 4.815458297729492,
+ "step": 516
+ },
+ {
+ "epoch": 7.18173875054609,
+ "grad_norm": 0.42580172419548035,
+ "learning_rate": 0.0006,
+ "loss": 4.825312614440918,
+ "step": 517
+ },
+ {
+ "epoch": 7.195718654434251,
+ "grad_norm": 0.31628182530403137,
+ "learning_rate": 0.0006,
+ "loss": 4.806377410888672,
+ "step": 518
+ },
+ {
+ "epoch": 7.209698558322412,
+ "grad_norm": 0.3109956681728363,
+ "learning_rate": 0.0006,
+ "loss": 4.819339752197266,
+ "step": 519
+ },
+ {
+ "epoch": 7.2236784622105725,
+ "grad_norm": 0.2740071415901184,
+ "learning_rate": 0.0006,
+ "loss": 4.81319522857666,
+ "step": 520
+ },
+ {
+ "epoch": 7.237658366098733,
+ "grad_norm": 0.26441165804862976,
+ "learning_rate": 0.0006,
+ "loss": 4.8107380867004395,
+ "step": 521
+ },
+ {
+ "epoch": 7.251638269986894,
+ "grad_norm": 0.2496110051870346,
+ "learning_rate": 0.0006,
+ "loss": 4.785193920135498,
+ "step": 522
+ },
+ {
+ "epoch": 7.265618173875055,
+ "grad_norm": 0.2565560042858124,
+ "learning_rate": 0.0006,
+ "loss": 4.802750587463379,
+ "step": 523
+ },
+ {
+ "epoch": 7.279598077763215,
+ "grad_norm": 0.2126980572938919,
+ "learning_rate": 0.0006,
+ "loss": 4.763580322265625,
+ "step": 524
+ },
+ {
+ "epoch": 7.293577981651376,
+ "grad_norm": 0.2169921100139618,
+ "learning_rate": 0.0006,
+ "loss": 4.756124973297119,
+ "step": 525
+ },
+ {
+ "epoch": 7.307557885539537,
+ "grad_norm": 0.2372167706489563,
+ "learning_rate": 0.0006,
+ "loss": 4.786888599395752,
+ "step": 526
+ },
+ {
+ "epoch": 7.321537789427698,
+ "grad_norm": 0.2124386429786682,
+ "learning_rate": 0.0006,
+ "loss": 4.777996063232422,
+ "step": 527
+ },
+ {
+ "epoch": 7.335517693315858,
+ "grad_norm": 0.18585442006587982,
+ "learning_rate": 0.0006,
+ "loss": 4.770537853240967,
+ "step": 528
+ },
+ {
+ "epoch": 7.349497597204019,
+ "grad_norm": 0.20515340566635132,
+ "learning_rate": 0.0006,
+ "loss": 4.769230842590332,
+ "step": 529
+ },
+ {
+ "epoch": 7.36347750109218,
+ "grad_norm": 0.19906704127788544,
+ "learning_rate": 0.0006,
+ "loss": 4.752581596374512,
+ "step": 530
+ },
+ {
+ "epoch": 7.3774574049803405,
+ "grad_norm": 0.2030428946018219,
+ "learning_rate": 0.0006,
+ "loss": 4.7353715896606445,
+ "step": 531
+ },
+ {
+ "epoch": 7.391437308868501,
+ "grad_norm": 0.17820630967617035,
+ "learning_rate": 0.0006,
+ "loss": 4.742705345153809,
+ "step": 532
+ },
+ {
+ "epoch": 7.405417212756662,
+ "grad_norm": 0.17642682790756226,
+ "learning_rate": 0.0006,
+ "loss": 4.752669334411621,
+ "step": 533
+ },
+ {
+ "epoch": 7.419397116644823,
+ "grad_norm": 0.18088409304618835,
+ "learning_rate": 0.0006,
+ "loss": 4.734611511230469,
+ "step": 534
+ },
+ {
+ "epoch": 7.433377020532983,
+ "grad_norm": 0.20897020399570465,
+ "learning_rate": 0.0006,
+ "loss": 4.756442070007324,
+ "step": 535
+ },
+ {
+ "epoch": 7.447356924421145,
+ "grad_norm": 0.23166777193546295,
+ "learning_rate": 0.0006,
+ "loss": 4.712922096252441,
+ "step": 536
+ },
+ {
+ "epoch": 7.461336828309306,
+ "grad_norm": 0.2205347716808319,
+ "learning_rate": 0.0006,
+ "loss": 4.75001335144043,
+ "step": 537
+ },
+ {
+ "epoch": 7.4753167321974665,
+ "grad_norm": 0.23868022859096527,
+ "learning_rate": 0.0006,
+ "loss": 4.726134300231934,
+ "step": 538
+ },
+ {
+ "epoch": 7.489296636085627,
+ "grad_norm": 0.2861441373825073,
+ "learning_rate": 0.0006,
+ "loss": 4.754112243652344,
+ "step": 539
+ },
+ {
+ "epoch": 7.503276539973788,
+ "grad_norm": 0.28980305790901184,
+ "learning_rate": 0.0006,
+ "loss": 4.716021537780762,
+ "step": 540
+ },
+ {
+ "epoch": 7.517256443861949,
+ "grad_norm": 0.2784835696220398,
+ "learning_rate": 0.0006,
+ "loss": 4.713929176330566,
+ "step": 541
+ },
+ {
+ "epoch": 7.531236347750109,
+ "grad_norm": 0.2962653934955597,
+ "learning_rate": 0.0006,
+ "loss": 4.711845397949219,
+ "step": 542
+ },
+ {
+ "epoch": 7.54521625163827,
+ "grad_norm": 0.3333161175251007,
+ "learning_rate": 0.0006,
+ "loss": 4.709834575653076,
+ "step": 543
+ },
+ {
+ "epoch": 7.559196155526431,
+ "grad_norm": 0.35304850339889526,
+ "learning_rate": 0.0006,
+ "loss": 4.732914924621582,
+ "step": 544
+ },
+ {
+ "epoch": 7.573176059414592,
+ "grad_norm": 0.4165869355201721,
+ "learning_rate": 0.0006,
+ "loss": 4.716190338134766,
+ "step": 545
+ },
+ {
+ "epoch": 7.587155963302752,
+ "grad_norm": 0.4878059923648834,
+ "learning_rate": 0.0006,
+ "loss": 4.723773002624512,
+ "step": 546
+ },
+ {
+ "epoch": 7.601135867190913,
+ "grad_norm": 0.36643707752227783,
+ "learning_rate": 0.0006,
+ "loss": 4.721458911895752,
+ "step": 547
+ },
+ {
+ "epoch": 7.615115771079074,
+ "grad_norm": 0.4046908915042877,
+ "learning_rate": 0.0006,
+ "loss": 4.715397834777832,
+ "step": 548
+ },
+ {
+ "epoch": 7.6290956749672345,
+ "grad_norm": 0.44426342844963074,
+ "learning_rate": 0.0006,
+ "loss": 4.737357139587402,
+ "step": 549
+ },
+ {
+ "epoch": 7.643075578855395,
+ "grad_norm": 0.4181079864501953,
+ "learning_rate": 0.0006,
+ "loss": 4.731383800506592,
+ "step": 550
+ },
+ {
+ "epoch": 7.657055482743556,
+ "grad_norm": 0.3486088216304779,
+ "learning_rate": 0.0006,
+ "loss": 4.728029727935791,
+ "step": 551
+ },
+ {
+ "epoch": 7.671035386631717,
+ "grad_norm": 0.37150970101356506,
+ "learning_rate": 0.0006,
+ "loss": 4.7083210945129395,
+ "step": 552
+ },
+ {
+ "epoch": 7.685015290519877,
+ "grad_norm": 0.43324410915374756,
+ "learning_rate": 0.0006,
+ "loss": 4.728720664978027,
+ "step": 553
+ },
+ {
+ "epoch": 7.698995194408038,
+ "grad_norm": 0.5026620626449585,
+ "learning_rate": 0.0006,
+ "loss": 4.698156356811523,
+ "step": 554
+ },
+ {
+ "epoch": 7.712975098296199,
+ "grad_norm": 0.4873499274253845,
+ "learning_rate": 0.0006,
+ "loss": 4.7169952392578125,
+ "step": 555
+ },
+ {
+ "epoch": 7.72695500218436,
+ "grad_norm": 0.4285493791103363,
+ "learning_rate": 0.0006,
+ "loss": 4.6877241134643555,
+ "step": 556
+ },
+ {
+ "epoch": 7.740934906072521,
+ "grad_norm": 0.5179854035377502,
+ "learning_rate": 0.0006,
+ "loss": 4.704267501831055,
+ "step": 557
+ },
+ {
+ "epoch": 7.754914809960681,
+ "grad_norm": 0.4642147421836853,
+ "learning_rate": 0.0006,
+ "loss": 4.695004463195801,
+ "step": 558
+ },
+ {
+ "epoch": 7.768894713848843,
+ "grad_norm": 0.47149503231048584,
+ "learning_rate": 0.0006,
+ "loss": 4.694338798522949,
+ "step": 559
+ },
+ {
+ "epoch": 7.782874617737003,
+ "grad_norm": 0.5422149300575256,
+ "learning_rate": 0.0006,
+ "loss": 4.749478340148926,
+ "step": 560
+ },
+ {
+ "epoch": 7.796854521625164,
+ "grad_norm": 0.4360728859901428,
+ "learning_rate": 0.0006,
+ "loss": 4.685191631317139,
+ "step": 561
+ },
+ {
+ "epoch": 7.810834425513325,
+ "grad_norm": 0.4243801534175873,
+ "learning_rate": 0.0006,
+ "loss": 4.69228458404541,
+ "step": 562
+ },
+ {
+ "epoch": 7.824814329401486,
+ "grad_norm": 0.40380290150642395,
+ "learning_rate": 0.0006,
+ "loss": 4.690923690795898,
+ "step": 563
+ },
+ {
+ "epoch": 7.838794233289646,
+ "grad_norm": 0.4352976381778717,
+ "learning_rate": 0.0006,
+ "loss": 4.720489978790283,
+ "step": 564
+ },
+ {
+ "epoch": 7.852774137177807,
+ "grad_norm": 0.44634920358657837,
+ "learning_rate": 0.0006,
+ "loss": 4.683789253234863,
+ "step": 565
+ },
+ {
+ "epoch": 7.866754041065968,
+ "grad_norm": 0.3818186819553375,
+ "learning_rate": 0.0006,
+ "loss": 4.696887016296387,
+ "step": 566
+ },
+ {
+ "epoch": 7.8807339449541285,
+ "grad_norm": 0.35270464420318604,
+ "learning_rate": 0.0006,
+ "loss": 4.715676307678223,
+ "step": 567
+ },
+ {
+ "epoch": 7.894713848842289,
+ "grad_norm": 0.249756321310997,
+ "learning_rate": 0.0006,
+ "loss": 4.672721862792969,
+ "step": 568
+ },
+ {
+ "epoch": 7.90869375273045,
+ "grad_norm": 0.25097888708114624,
+ "learning_rate": 0.0006,
+ "loss": 4.663518905639648,
+ "step": 569
+ },
+ {
+ "epoch": 7.922673656618611,
+ "grad_norm": 0.26563209295272827,
+ "learning_rate": 0.0006,
+ "loss": 4.675405025482178,
+ "step": 570
+ },
+ {
+ "epoch": 7.936653560506771,
+ "grad_norm": 0.26451292634010315,
+ "learning_rate": 0.0006,
+ "loss": 4.651235103607178,
+ "step": 571
+ },
+ {
+ "epoch": 7.950633464394932,
+ "grad_norm": 0.24185842275619507,
+ "learning_rate": 0.0006,
+ "loss": 4.671639919281006,
+ "step": 572
+ },
+ {
+ "epoch": 7.964613368283093,
+ "grad_norm": 0.21506108343601227,
+ "learning_rate": 0.0006,
+ "loss": 4.665352821350098,
+ "step": 573
+ },
+ {
+ "epoch": 7.978593272171254,
+ "grad_norm": 0.24365705251693726,
+ "learning_rate": 0.0006,
+ "loss": 4.663162708282471,
+ "step": 574
+ },
+ {
+ "epoch": 7.992573176059414,
+ "grad_norm": 0.24251042306423187,
+ "learning_rate": 0.0006,
+ "loss": 4.666633605957031,
+ "step": 575
+ },
+ {
+ "epoch": 8.0,
+ "grad_norm": 0.24187657237052917,
+ "learning_rate": 0.0006,
+ "loss": 4.63957405090332,
+ "step": 576
+ },
+ {
+ "epoch": 8.0,
+ "eval_loss": 4.923156261444092,
+ "eval_runtime": 44.1587,
+ "eval_samples_per_second": 55.301,
+ "eval_steps_per_second": 3.465,
+ "step": 576
+ },
+ {
+ "epoch": 8.013979903888162,
+ "grad_norm": 0.21323645114898682,
+ "learning_rate": 0.0006,
+ "loss": 4.636347770690918,
+ "step": 577
+ },
+ {
+ "epoch": 8.027959807776321,
+ "grad_norm": 0.2325759083032608,
+ "learning_rate": 0.0006,
+ "loss": 4.60684871673584,
+ "step": 578
+ },
+ {
+ "epoch": 8.041939711664483,
+ "grad_norm": 0.26741257309913635,
+ "learning_rate": 0.0006,
+ "loss": 4.647780418395996,
+ "step": 579
+ },
+ {
+ "epoch": 8.055919615552643,
+ "grad_norm": 0.285720556974411,
+ "learning_rate": 0.0006,
+ "loss": 4.629637718200684,
+ "step": 580
+ },
+ {
+ "epoch": 8.069899519440805,
+ "grad_norm": 0.2453618347644806,
+ "learning_rate": 0.0006,
+ "loss": 4.62420654296875,
+ "step": 581
+ },
+ {
+ "epoch": 8.083879423328964,
+ "grad_norm": 0.19662636518478394,
+ "learning_rate": 0.0006,
+ "loss": 4.593767166137695,
+ "step": 582
+ },
+ {
+ "epoch": 8.097859327217126,
+ "grad_norm": 0.22731931507587433,
+ "learning_rate": 0.0006,
+ "loss": 4.627089023590088,
+ "step": 583
+ },
+ {
+ "epoch": 8.111839231105286,
+ "grad_norm": 0.24452590942382812,
+ "learning_rate": 0.0006,
+ "loss": 4.613677024841309,
+ "step": 584
+ },
+ {
+ "epoch": 8.125819134993447,
+ "grad_norm": 0.2952791154384613,
+ "learning_rate": 0.0006,
+ "loss": 4.604985237121582,
+ "step": 585
+ },
+ {
+ "epoch": 8.139799038881607,
+ "grad_norm": 0.3184696137905121,
+ "learning_rate": 0.0006,
+ "loss": 4.589205741882324,
+ "step": 586
+ },
+ {
+ "epoch": 8.153778942769769,
+ "grad_norm": 0.2948093116283417,
+ "learning_rate": 0.0006,
+ "loss": 4.605442047119141,
+ "step": 587
+ },
+ {
+ "epoch": 8.167758846657929,
+ "grad_norm": 0.2450508326292038,
+ "learning_rate": 0.0006,
+ "loss": 4.615349292755127,
+ "step": 588
+ },
+ {
+ "epoch": 8.18173875054609,
+ "grad_norm": 0.25664836168289185,
+ "learning_rate": 0.0006,
+ "loss": 4.592251777648926,
+ "step": 589
+ },
+ {
+ "epoch": 8.19571865443425,
+ "grad_norm": 0.24479512870311737,
+ "learning_rate": 0.0006,
+ "loss": 4.6145920753479,
+ "step": 590
+ },
+ {
+ "epoch": 8.209698558322412,
+ "grad_norm": 0.24395205080509186,
+ "learning_rate": 0.0006,
+ "loss": 4.600954055786133,
+ "step": 591
+ },
+ {
+ "epoch": 8.223678462210572,
+ "grad_norm": 0.21804189682006836,
+ "learning_rate": 0.0006,
+ "loss": 4.607785224914551,
+ "step": 592
+ },
+ {
+ "epoch": 8.237658366098733,
+ "grad_norm": 0.20951785147190094,
+ "learning_rate": 0.0006,
+ "loss": 4.58140754699707,
+ "step": 593
+ },
+ {
+ "epoch": 8.251638269986893,
+ "grad_norm": 0.20415149629116058,
+ "learning_rate": 0.0006,
+ "loss": 4.593405723571777,
+ "step": 594
+ },
+ {
+ "epoch": 8.265618173875055,
+ "grad_norm": 0.19210249185562134,
+ "learning_rate": 0.0006,
+ "loss": 4.603294372558594,
+ "step": 595
+ },
+ {
+ "epoch": 8.279598077763215,
+ "grad_norm": 0.20719751715660095,
+ "learning_rate": 0.0006,
+ "loss": 4.55255651473999,
+ "step": 596
+ },
+ {
+ "epoch": 8.293577981651376,
+ "grad_norm": 0.20101022720336914,
+ "learning_rate": 0.0006,
+ "loss": 4.5928192138671875,
+ "step": 597
+ },
+ {
+ "epoch": 8.307557885539538,
+ "grad_norm": 0.19254222512245178,
+ "learning_rate": 0.0006,
+ "loss": 4.590397834777832,
+ "step": 598
+ },
+ {
+ "epoch": 8.321537789427698,
+ "grad_norm": 0.23234105110168457,
+ "learning_rate": 0.0006,
+ "loss": 4.5987677574157715,
+ "step": 599
+ },
+ {
+ "epoch": 8.33551769331586,
+ "grad_norm": 0.2537451982498169,
+ "learning_rate": 0.0006,
+ "loss": 4.543115615844727,
+ "step": 600
+ },
+ {
+ "epoch": 8.349497597204019,
+ "grad_norm": 0.29171040654182434,
+ "learning_rate": 0.0006,
+ "loss": 4.597387313842773,
+ "step": 601
+ },
+ {
+ "epoch": 8.36347750109218,
+ "grad_norm": 0.3035930097103119,
+ "learning_rate": 0.0006,
+ "loss": 4.566247463226318,
+ "step": 602
+ },
+ {
+ "epoch": 8.37745740498034,
+ "grad_norm": 0.2826756238937378,
+ "learning_rate": 0.0006,
+ "loss": 4.57047176361084,
+ "step": 603
+ },
+ {
+ "epoch": 8.391437308868502,
+ "grad_norm": 0.2959657609462738,
+ "learning_rate": 0.0006,
+ "loss": 4.582820892333984,
+ "step": 604
+ },
+ {
+ "epoch": 8.405417212756662,
+ "grad_norm": 0.3180356025695801,
+ "learning_rate": 0.0006,
+ "loss": 4.5573272705078125,
+ "step": 605
+ },
+ {
+ "epoch": 8.419397116644824,
+ "grad_norm": 0.3617221713066101,
+ "learning_rate": 0.0006,
+ "loss": 4.593079090118408,
+ "step": 606
+ },
+ {
+ "epoch": 8.433377020532983,
+ "grad_norm": 0.35198062658309937,
+ "learning_rate": 0.0006,
+ "loss": 4.615298271179199,
+ "step": 607
+ },
+ {
+ "epoch": 8.447356924421145,
+ "grad_norm": 0.3944903314113617,
+ "learning_rate": 0.0006,
+ "loss": 4.561809539794922,
+ "step": 608
+ },
+ {
+ "epoch": 8.461336828309305,
+ "grad_norm": 0.4525868594646454,
+ "learning_rate": 0.0006,
+ "loss": 4.613105773925781,
+ "step": 609
+ },
+ {
+ "epoch": 8.475316732197467,
+ "grad_norm": 0.4915139079093933,
+ "learning_rate": 0.0006,
+ "loss": 4.566202163696289,
+ "step": 610
+ },
+ {
+ "epoch": 8.489296636085626,
+ "grad_norm": 0.49231988191604614,
+ "learning_rate": 0.0006,
+ "loss": 4.556222915649414,
+ "step": 611
+ },
+ {
+ "epoch": 8.503276539973788,
+ "grad_norm": 0.43036946654319763,
+ "learning_rate": 0.0006,
+ "loss": 4.55517578125,
+ "step": 612
+ },
+ {
+ "epoch": 8.517256443861948,
+ "grad_norm": 0.42405328154563904,
+ "learning_rate": 0.0006,
+ "loss": 4.574039936065674,
+ "step": 613
+ },
+ {
+ "epoch": 8.53123634775011,
+ "grad_norm": 0.3955961763858795,
+ "learning_rate": 0.0006,
+ "loss": 4.6082611083984375,
+ "step": 614
+ },
+ {
+ "epoch": 8.54521625163827,
+ "grad_norm": 0.4377101957798004,
+ "learning_rate": 0.0006,
+ "loss": 4.555740833282471,
+ "step": 615
+ },
+ {
+ "epoch": 8.55919615552643,
+ "grad_norm": 0.4601984918117523,
+ "learning_rate": 0.0006,
+ "loss": 4.553995132446289,
+ "step": 616
+ },
+ {
+ "epoch": 8.57317605941459,
+ "grad_norm": 0.42025700211524963,
+ "learning_rate": 0.0006,
+ "loss": 4.567340850830078,
+ "step": 617
+ },
+ {
+ "epoch": 8.587155963302752,
+ "grad_norm": 0.35569432377815247,
+ "learning_rate": 0.0006,
+ "loss": 4.570140361785889,
+ "step": 618
+ },
+ {
+ "epoch": 8.601135867190912,
+ "grad_norm": 0.37940406799316406,
+ "learning_rate": 0.0006,
+ "loss": 4.581291198730469,
+ "step": 619
+ },
+ {
+ "epoch": 8.615115771079074,
+ "grad_norm": 0.3658490777015686,
+ "learning_rate": 0.0006,
+ "loss": 4.55476188659668,
+ "step": 620
+ },
+ {
+ "epoch": 8.629095674967235,
+ "grad_norm": 0.2908247113227844,
+ "learning_rate": 0.0006,
+ "loss": 4.564087867736816,
+ "step": 621
+ },
+ {
+ "epoch": 8.643075578855395,
+ "grad_norm": 0.29961925745010376,
+ "learning_rate": 0.0006,
+ "loss": 4.556543350219727,
+ "step": 622
+ },
+ {
+ "epoch": 8.657055482743557,
+ "grad_norm": 0.3144846558570862,
+ "learning_rate": 0.0006,
+ "loss": 4.553670883178711,
+ "step": 623
+ },
+ {
+ "epoch": 8.671035386631717,
+ "grad_norm": 0.2845900356769562,
+ "learning_rate": 0.0006,
+ "loss": 4.567296981811523,
+ "step": 624
+ },
+ {
+ "epoch": 8.685015290519878,
+ "grad_norm": 0.253591388463974,
+ "learning_rate": 0.0006,
+ "loss": 4.554507255554199,
+ "step": 625
+ },
+ {
+ "epoch": 8.698995194408038,
+ "grad_norm": 0.2563088536262512,
+ "learning_rate": 0.0006,
+ "loss": 4.542218208312988,
+ "step": 626
+ },
+ {
+ "epoch": 8.7129750982962,
+ "grad_norm": 0.26058217883110046,
+ "learning_rate": 0.0006,
+ "loss": 4.535512447357178,
+ "step": 627
+ },
+ {
+ "epoch": 8.72695500218436,
+ "grad_norm": 0.20749829709529877,
+ "learning_rate": 0.0006,
+ "loss": 4.516959190368652,
+ "step": 628
+ },
+ {
+ "epoch": 8.740934906072521,
+ "grad_norm": 0.2034810334444046,
+ "learning_rate": 0.0006,
+ "loss": 4.55794095993042,
+ "step": 629
+ },
+ {
+ "epoch": 8.754914809960681,
+ "grad_norm": 0.18418121337890625,
+ "learning_rate": 0.0006,
+ "loss": 4.5421247482299805,
+ "step": 630
+ },
+ {
+ "epoch": 8.768894713848843,
+ "grad_norm": 0.20551933348178864,
+ "learning_rate": 0.0006,
+ "loss": 4.50805139541626,
+ "step": 631
+ },
+ {
+ "epoch": 8.782874617737003,
+ "grad_norm": 0.21615999937057495,
+ "learning_rate": 0.0006,
+ "loss": 4.520708084106445,
+ "step": 632
+ },
+ {
+ "epoch": 8.796854521625164,
+ "grad_norm": 0.24864810705184937,
+ "learning_rate": 0.0006,
+ "loss": 4.509330749511719,
+ "step": 633
+ },
+ {
+ "epoch": 8.810834425513324,
+ "grad_norm": 0.2573665380477905,
+ "learning_rate": 0.0006,
+ "loss": 4.531505584716797,
+ "step": 634
+ },
+ {
+ "epoch": 8.824814329401486,
+ "grad_norm": 0.22452878952026367,
+ "learning_rate": 0.0006,
+ "loss": 4.529216289520264,
+ "step": 635
+ },
+ {
+ "epoch": 8.838794233289645,
+ "grad_norm": 0.19727355241775513,
+ "learning_rate": 0.0006,
+ "loss": 4.519906520843506,
+ "step": 636
+ },
+ {
+ "epoch": 8.852774137177807,
+ "grad_norm": 0.19937913119792938,
+ "learning_rate": 0.0006,
+ "loss": 4.536892414093018,
+ "step": 637
+ },
+ {
+ "epoch": 8.866754041065967,
+ "grad_norm": 0.2070389986038208,
+ "learning_rate": 0.0006,
+ "loss": 4.51191520690918,
+ "step": 638
+ },
+ {
+ "epoch": 8.880733944954128,
+ "grad_norm": 0.2293873429298401,
+ "learning_rate": 0.0006,
+ "loss": 4.505377769470215,
+ "step": 639
+ },
+ {
+ "epoch": 8.89471384884229,
+ "grad_norm": 0.21285250782966614,
+ "learning_rate": 0.0006,
+ "loss": 4.5138959884643555,
+ "step": 640
+ },
+ {
+ "epoch": 8.90869375273045,
+ "grad_norm": 0.19487562775611877,
+ "learning_rate": 0.0006,
+ "loss": 4.506108283996582,
+ "step": 641
+ },
+ {
+ "epoch": 8.922673656618612,
+ "grad_norm": 0.21986965835094452,
+ "learning_rate": 0.0006,
+ "loss": 4.506397247314453,
+ "step": 642
+ },
+ {
+ "epoch": 8.936653560506771,
+ "grad_norm": 0.20763885974884033,
+ "learning_rate": 0.0006,
+ "loss": 4.508007049560547,
+ "step": 643
+ },
+ {
+ "epoch": 8.950633464394933,
+ "grad_norm": 0.22858479619026184,
+ "learning_rate": 0.0006,
+ "loss": 4.520846366882324,
+ "step": 644
+ },
+ {
+ "epoch": 8.964613368283093,
+ "grad_norm": 0.23923712968826294,
+ "learning_rate": 0.0006,
+ "loss": 4.535306930541992,
+ "step": 645
+ },
+ {
+ "epoch": 8.978593272171254,
+ "grad_norm": 0.23717579245567322,
+ "learning_rate": 0.0006,
+ "loss": 4.485929489135742,
+ "step": 646
+ },
+ {
+ "epoch": 8.992573176059414,
+ "grad_norm": 0.24033977091312408,
+ "learning_rate": 0.0006,
+ "loss": 4.508999824523926,
+ "step": 647
+ },
+ {
+ "epoch": 9.0,
+ "grad_norm": 0.22432062029838562,
+ "learning_rate": 0.0006,
+ "loss": 4.473136901855469,
+ "step": 648
+ },
+ {
+ "epoch": 9.0,
+ "eval_loss": 4.735903263092041,
+ "eval_runtime": 44.2163,
+ "eval_samples_per_second": 55.228,
+ "eval_steps_per_second": 3.46,
+ "step": 648
+ },
+ {
+ "epoch": 9.013979903888162,
+ "grad_norm": 0.22491489350795746,
+ "learning_rate": 0.0006,
+ "loss": 4.468614101409912,
+ "step": 649
+ },
+ {
+ "epoch": 9.027959807776321,
+ "grad_norm": 0.255759060382843,
+ "learning_rate": 0.0006,
+ "loss": 4.516196250915527,
+ "step": 650
+ },
+ {
+ "epoch": 9.041939711664483,
+ "grad_norm": 0.2591100335121155,
+ "learning_rate": 0.0006,
+ "loss": 4.478276252746582,
+ "step": 651
+ },
+ {
+ "epoch": 9.055919615552643,
+ "grad_norm": 0.30472296476364136,
+ "learning_rate": 0.0006,
+ "loss": 4.479726791381836,
+ "step": 652
+ },
+ {
+ "epoch": 9.069899519440805,
+ "grad_norm": 0.2840559780597687,
+ "learning_rate": 0.0006,
+ "loss": 4.4437384605407715,
+ "step": 653
+ },
+ {
+ "epoch": 9.083879423328964,
+ "grad_norm": 0.2695577144622803,
+ "learning_rate": 0.0006,
+ "loss": 4.476065635681152,
+ "step": 654
+ },
+ {
+ "epoch": 9.097859327217126,
+ "grad_norm": 0.27912381291389465,
+ "learning_rate": 0.0006,
+ "loss": 4.484747409820557,
+ "step": 655
+ },
+ {
+ "epoch": 9.111839231105286,
+ "grad_norm": 0.3091907501220703,
+ "learning_rate": 0.0006,
+ "loss": 4.449443817138672,
+ "step": 656
+ },
+ {
+ "epoch": 9.125819134993447,
+ "grad_norm": 0.30756646394729614,
+ "learning_rate": 0.0006,
+ "loss": 4.496490001678467,
+ "step": 657
+ },
+ {
+ "epoch": 9.139799038881607,
+ "grad_norm": 0.305698037147522,
+ "learning_rate": 0.0006,
+ "loss": 4.466765880584717,
+ "step": 658
+ },
+ {
+ "epoch": 9.153778942769769,
+ "grad_norm": 0.3031201660633087,
+ "learning_rate": 0.0006,
+ "loss": 4.462430953979492,
+ "step": 659
+ },
+ {
+ "epoch": 9.167758846657929,
+ "grad_norm": 0.32725608348846436,
+ "learning_rate": 0.0006,
+ "loss": 4.479879379272461,
+ "step": 660
+ },
+ {
+ "epoch": 9.18173875054609,
+ "grad_norm": 0.31773585081100464,
+ "learning_rate": 0.0006,
+ "loss": 4.473912239074707,
+ "step": 661
+ },
+ {
+ "epoch": 9.19571865443425,
+ "grad_norm": 0.30025365948677063,
+ "learning_rate": 0.0006,
+ "loss": 4.476703643798828,
+ "step": 662
+ },
+ {
+ "epoch": 9.209698558322412,
+ "grad_norm": 0.3177371025085449,
+ "learning_rate": 0.0006,
+ "loss": 4.439765930175781,
+ "step": 663
+ },
+ {
+ "epoch": 9.223678462210572,
+ "grad_norm": 0.3060745894908905,
+ "learning_rate": 0.0006,
+ "loss": 4.487849235534668,
+ "step": 664
+ },
+ {
+ "epoch": 9.237658366098733,
+ "grad_norm": 0.33287373185157776,
+ "learning_rate": 0.0006,
+ "loss": 4.443496227264404,
+ "step": 665
+ },
+ {
+ "epoch": 9.251638269986893,
+ "grad_norm": 0.3758000433444977,
+ "learning_rate": 0.0006,
+ "loss": 4.478017330169678,
+ "step": 666
+ },
+ {
+ "epoch": 9.265618173875055,
+ "grad_norm": 0.32124510407447815,
+ "learning_rate": 0.0006,
+ "loss": 4.4092206954956055,
+ "step": 667
+ },
+ {
+ "epoch": 9.279598077763215,
+ "grad_norm": 0.2786794602870941,
+ "learning_rate": 0.0006,
+ "loss": 4.432734489440918,
+ "step": 668
+ },
+ {
+ "epoch": 9.293577981651376,
+ "grad_norm": 0.35042962431907654,
+ "learning_rate": 0.0006,
+ "loss": 4.462737083435059,
+ "step": 669
+ },
+ {
+ "epoch": 9.307557885539538,
+ "grad_norm": 0.4080469310283661,
+ "learning_rate": 0.0006,
+ "loss": 4.429462432861328,
+ "step": 670
+ },
+ {
+ "epoch": 9.321537789427698,
+ "grad_norm": 0.465158075094223,
+ "learning_rate": 0.0006,
+ "loss": 4.465776443481445,
+ "step": 671
+ },
+ {
+ "epoch": 9.33551769331586,
+ "grad_norm": 0.44833582639694214,
+ "learning_rate": 0.0006,
+ "loss": 4.454195976257324,
+ "step": 672
+ },
+ {
+ "epoch": 9.349497597204019,
+ "grad_norm": 0.451052188873291,
+ "learning_rate": 0.0006,
+ "loss": 4.456139087677002,
+ "step": 673
+ },
+ {
+ "epoch": 9.36347750109218,
+ "grad_norm": 0.3759656250476837,
+ "learning_rate": 0.0006,
+ "loss": 4.461119651794434,
+ "step": 674
+ },
+ {
+ "epoch": 9.37745740498034,
+ "grad_norm": 0.514560341835022,
+ "learning_rate": 0.0006,
+ "loss": 4.49595832824707,
+ "step": 675
+ },
+ {
+ "epoch": 9.391437308868502,
+ "grad_norm": 0.5650647282600403,
+ "learning_rate": 0.0006,
+ "loss": 4.461362838745117,
+ "step": 676
+ },
+ {
+ "epoch": 9.405417212756662,
+ "grad_norm": 0.4218835234642029,
+ "learning_rate": 0.0006,
+ "loss": 4.469146728515625,
+ "step": 677
+ },
+ {
+ "epoch": 9.419397116644824,
+ "grad_norm": 0.4169512689113617,
+ "learning_rate": 0.0006,
+ "loss": 4.470132827758789,
+ "step": 678
+ },
+ {
+ "epoch": 9.433377020532983,
+ "grad_norm": 0.3772219717502594,
+ "learning_rate": 0.0006,
+ "loss": 4.4742608070373535,
+ "step": 679
+ },
+ {
+ "epoch": 9.447356924421145,
+ "grad_norm": 0.35755908489227295,
+ "learning_rate": 0.0006,
+ "loss": 4.461928367614746,
+ "step": 680
+ },
+ {
+ "epoch": 9.461336828309305,
+ "grad_norm": 0.3141227662563324,
+ "learning_rate": 0.0006,
+ "loss": 4.491983413696289,
+ "step": 681
+ },
+ {
+ "epoch": 9.475316732197467,
+ "grad_norm": 0.282461017370224,
+ "learning_rate": 0.0006,
+ "loss": 4.460200309753418,
+ "step": 682
+ },
+ {
+ "epoch": 9.489296636085626,
+ "grad_norm": 0.27174389362335205,
+ "learning_rate": 0.0006,
+ "loss": 4.416125297546387,
+ "step": 683
+ },
+ {
+ "epoch": 9.503276539973788,
+ "grad_norm": 0.24570637941360474,
+ "learning_rate": 0.0006,
+ "loss": 4.4451093673706055,
+ "step": 684
+ },
+ {
+ "epoch": 9.517256443861948,
+ "grad_norm": 0.2741486132144928,
+ "learning_rate": 0.0006,
+ "loss": 4.453263282775879,
+ "step": 685
+ },
+ {
+ "epoch": 9.53123634775011,
+ "grad_norm": 0.24753718078136444,
+ "learning_rate": 0.0006,
+ "loss": 4.483033180236816,
+ "step": 686
+ },
+ {
+ "epoch": 9.54521625163827,
+ "grad_norm": 0.24288412928581238,
+ "learning_rate": 0.0006,
+ "loss": 4.452961444854736,
+ "step": 687
+ },
+ {
+ "epoch": 9.55919615552643,
+ "grad_norm": 0.21554753184318542,
+ "learning_rate": 0.0006,
+ "loss": 4.476005554199219,
+ "step": 688
+ },
+ {
+ "epoch": 9.57317605941459,
+ "grad_norm": 0.22775942087173462,
+ "learning_rate": 0.0006,
+ "loss": 4.4479193687438965,
+ "step": 689
+ },
+ {
+ "epoch": 9.587155963302752,
+ "grad_norm": 0.2610701024532318,
+ "learning_rate": 0.0006,
+ "loss": 4.474987506866455,
+ "step": 690
+ },
+ {
+ "epoch": 9.601135867190912,
+ "grad_norm": 0.2394690215587616,
+ "learning_rate": 0.0006,
+ "loss": 4.444857597351074,
+ "step": 691
+ },
+ {
+ "epoch": 9.615115771079074,
+ "grad_norm": 0.20868559181690216,
+ "learning_rate": 0.0006,
+ "loss": 4.4220709800720215,
+ "step": 692
+ },
+ {
+ "epoch": 9.629095674967235,
+ "grad_norm": 0.21869882941246033,
+ "learning_rate": 0.0006,
+ "loss": 4.451737403869629,
+ "step": 693
+ },
+ {
+ "epoch": 9.643075578855395,
+ "grad_norm": 0.1802823394536972,
+ "learning_rate": 0.0006,
+ "loss": 4.409085273742676,
+ "step": 694
+ },
+ {
+ "epoch": 9.657055482743557,
+ "grad_norm": 0.17046281695365906,
+ "learning_rate": 0.0006,
+ "loss": 4.424643516540527,
+ "step": 695
+ },
+ {
+ "epoch": 9.671035386631717,
+ "grad_norm": 0.19561922550201416,
+ "learning_rate": 0.0006,
+ "loss": 4.412302017211914,
+ "step": 696
+ },
+ {
+ "epoch": 9.685015290519878,
+ "grad_norm": 0.21928799152374268,
+ "learning_rate": 0.0006,
+ "loss": 4.427582263946533,
+ "step": 697
+ },
+ {
+ "epoch": 9.698995194408038,
+ "grad_norm": 0.244873046875,
+ "learning_rate": 0.0006,
+ "loss": 4.431827545166016,
+ "step": 698
+ },
+ {
+ "epoch": 9.7129750982962,
+ "grad_norm": 0.2799488604068756,
+ "learning_rate": 0.0006,
+ "loss": 4.407991409301758,
+ "step": 699
+ },
+ {
+ "epoch": 9.72695500218436,
+ "grad_norm": 0.2699538767337799,
+ "learning_rate": 0.0006,
+ "loss": 4.412313461303711,
+ "step": 700
+ },
+ {
+ "epoch": 9.740934906072521,
+ "grad_norm": 0.22293835878372192,
+ "learning_rate": 0.0006,
+ "loss": 4.423369884490967,
+ "step": 701
+ },
+ {
+ "epoch": 9.754914809960681,
+ "grad_norm": 0.21554361283779144,
+ "learning_rate": 0.0006,
+ "loss": 4.42026948928833,
+ "step": 702
+ },
+ {
+ "epoch": 9.768894713848843,
+ "grad_norm": 0.22135840356349945,
+ "learning_rate": 0.0006,
+ "loss": 4.400010108947754,
+ "step": 703
+ },
+ {
+ "epoch": 9.782874617737003,
+ "grad_norm": 0.2169952541589737,
+ "learning_rate": 0.0006,
+ "loss": 4.394582271575928,
+ "step": 704
+ },
+ {
+ "epoch": 9.796854521625164,
+ "grad_norm": 0.18913042545318604,
+ "learning_rate": 0.0006,
+ "loss": 4.395880699157715,
+ "step": 705
+ },
+ {
+ "epoch": 9.810834425513324,
+ "grad_norm": 0.191524475812912,
+ "learning_rate": 0.0006,
+ "loss": 4.378962516784668,
+ "step": 706
+ },
+ {
+ "epoch": 9.824814329401486,
+ "grad_norm": 0.20057640969753265,
+ "learning_rate": 0.0006,
+ "loss": 4.431066513061523,
+ "step": 707
+ },
+ {
+ "epoch": 9.838794233289645,
+ "grad_norm": 0.21670377254486084,
+ "learning_rate": 0.0006,
+ "loss": 4.364682197570801,
+ "step": 708
+ },
+ {
+ "epoch": 9.852774137177807,
+ "grad_norm": 0.21653099358081818,
+ "learning_rate": 0.0006,
+ "loss": 4.4050445556640625,
+ "step": 709
+ },
+ {
+ "epoch": 9.866754041065967,
+ "grad_norm": 0.2217673808336258,
+ "learning_rate": 0.0006,
+ "loss": 4.423664093017578,
+ "step": 710
+ },
+ {
+ "epoch": 9.880733944954128,
+ "grad_norm": 0.251078337430954,
+ "learning_rate": 0.0006,
+ "loss": 4.405768394470215,
+ "step": 711
+ },
+ {
+ "epoch": 9.89471384884229,
+ "grad_norm": 0.28962627053260803,
+ "learning_rate": 0.0006,
+ "loss": 4.421207427978516,
+ "step": 712
+ },
+ {
+ "epoch": 9.90869375273045,
+ "grad_norm": 0.3478074371814728,
+ "learning_rate": 0.0006,
+ "loss": 4.414942741394043,
+ "step": 713
+ },
+ {
+ "epoch": 9.922673656618612,
+ "grad_norm": 0.40396368503570557,
+ "learning_rate": 0.0006,
+ "loss": 4.415163993835449,
+ "step": 714
+ },
+ {
+ "epoch": 9.936653560506771,
+ "grad_norm": 0.3689858019351959,
+ "learning_rate": 0.0006,
+ "loss": 4.381345272064209,
+ "step": 715
+ },
+ {
+ "epoch": 9.950633464394933,
+ "grad_norm": 0.344868004322052,
+ "learning_rate": 0.0006,
+ "loss": 4.433088302612305,
+ "step": 716
+ },
+ {
+ "epoch": 9.964613368283093,
+ "grad_norm": 0.37976378202438354,
+ "learning_rate": 0.0006,
+ "loss": 4.431371212005615,
+ "step": 717
+ },
+ {
+ "epoch": 9.978593272171254,
+ "grad_norm": 0.4354130029678345,
+ "learning_rate": 0.0006,
+ "loss": 4.434148788452148,
+ "step": 718
+ },
+ {
+ "epoch": 9.992573176059414,
+ "grad_norm": 0.35859373211860657,
+ "learning_rate": 0.0006,
+ "loss": 4.428055763244629,
+ "step": 719
+ },
+ {
+ "epoch": 10.0,
+ "grad_norm": 0.3365023732185364,
+ "learning_rate": 0.0006,
+ "loss": 4.3888654708862305,
+ "step": 720
+ },
+ {
+ "epoch": 10.0,
+ "eval_loss": 4.638620853424072,
+ "eval_runtime": 44.3054,
+ "eval_samples_per_second": 55.117,
+ "eval_steps_per_second": 3.453,
+ "step": 720
+ },
+ {
+ "epoch": 10.013979903888162,
+ "grad_norm": 0.3267960250377655,
+ "learning_rate": 0.0006,
+ "loss": 4.386068344116211,
+ "step": 721
+ },
+ {
+ "epoch": 10.027959807776321,
+ "grad_norm": 0.33440953493118286,
+ "learning_rate": 0.0006,
+ "loss": 4.397515296936035,
+ "step": 722
+ },
+ {
+ "epoch": 10.041939711664483,
+ "grad_norm": 0.30047518014907837,
+ "learning_rate": 0.0006,
+ "loss": 4.398358345031738,
+ "step": 723
+ },
+ {
+ "epoch": 10.055919615552643,
+ "grad_norm": 0.2912217378616333,
+ "learning_rate": 0.0006,
+ "loss": 4.341166973114014,
+ "step": 724
+ },
+ {
+ "epoch": 10.069899519440805,
+ "grad_norm": 0.3199564218521118,
+ "learning_rate": 0.0006,
+ "loss": 4.388717174530029,
+ "step": 725
+ },
+ {
+ "epoch": 10.083879423328964,
+ "grad_norm": 0.2765582799911499,
+ "learning_rate": 0.0006,
+ "loss": 4.392992973327637,
+ "step": 726
+ },
+ {
+ "epoch": 10.097859327217126,
+ "grad_norm": 0.27138450741767883,
+ "learning_rate": 0.0006,
+ "loss": 4.382307529449463,
+ "step": 727
+ },
+ {
+ "epoch": 10.111839231105286,
+ "grad_norm": 0.29230645298957825,
+ "learning_rate": 0.0006,
+ "loss": 4.357486724853516,
+ "step": 728
+ },
+ {
+ "epoch": 10.125819134993447,
+ "grad_norm": 0.3127598464488983,
+ "learning_rate": 0.0006,
+ "loss": 4.39072322845459,
+ "step": 729
+ },
+ {
+ "epoch": 10.139799038881607,
+ "grad_norm": 0.3230913281440735,
+ "learning_rate": 0.0006,
+ "loss": 4.35037899017334,
+ "step": 730
+ },
+ {
+ "epoch": 10.153778942769769,
+ "grad_norm": 0.333675354719162,
+ "learning_rate": 0.0006,
+ "loss": 4.378030776977539,
+ "step": 731
+ },
+ {
+ "epoch": 10.167758846657929,
+ "grad_norm": 0.30325770378112793,
+ "learning_rate": 0.0006,
+ "loss": 4.372736930847168,
+ "step": 732
+ },
+ {
+ "epoch": 10.18173875054609,
+ "grad_norm": 0.2888163924217224,
+ "learning_rate": 0.0006,
+ "loss": 4.397604942321777,
+ "step": 733
+ },
+ {
+ "epoch": 10.19571865443425,
+ "grad_norm": 0.3378832936286926,
+ "learning_rate": 0.0006,
+ "loss": 4.395705223083496,
+ "step": 734
+ },
+ {
+ "epoch": 10.209698558322412,
+ "grad_norm": 0.30980268120765686,
+ "learning_rate": 0.0006,
+ "loss": 4.3861212730407715,
+ "step": 735
+ },
+ {
+ "epoch": 10.223678462210572,
+ "grad_norm": 0.2965783178806305,
+ "learning_rate": 0.0006,
+ "loss": 4.394898414611816,
+ "step": 736
+ },
+ {
+ "epoch": 10.237658366098733,
+ "grad_norm": 0.2818217873573303,
+ "learning_rate": 0.0006,
+ "loss": 4.36171817779541,
+ "step": 737
+ },
+ {
+ "epoch": 10.251638269986893,
+ "grad_norm": 0.2418123185634613,
+ "learning_rate": 0.0006,
+ "loss": 4.370945930480957,
+ "step": 738
+ },
+ {
+ "epoch": 10.265618173875055,
+ "grad_norm": 0.22372810542583466,
+ "learning_rate": 0.0006,
+ "loss": 4.354825973510742,
+ "step": 739
+ },
+ {
+ "epoch": 10.279598077763215,
+ "grad_norm": 0.238066166639328,
+ "learning_rate": 0.0006,
+ "loss": 4.376237392425537,
+ "step": 740
+ },
+ {
+ "epoch": 10.293577981651376,
+ "grad_norm": 0.22352449595928192,
+ "learning_rate": 0.0006,
+ "loss": 4.317084312438965,
+ "step": 741
+ },
+ {
+ "epoch": 10.307557885539538,
+ "grad_norm": 0.21685205399990082,
+ "learning_rate": 0.0006,
+ "loss": 4.335271835327148,
+ "step": 742
+ },
+ {
+ "epoch": 10.321537789427698,
+ "grad_norm": 0.19584694504737854,
+ "learning_rate": 0.0006,
+ "loss": 4.357963562011719,
+ "step": 743
+ },
+ {
+ "epoch": 10.33551769331586,
+ "grad_norm": 0.20373336970806122,
+ "learning_rate": 0.0006,
+ "loss": 4.401963233947754,
+ "step": 744
+ },
+ {
+ "epoch": 10.349497597204019,
+ "grad_norm": 0.2247837632894516,
+ "learning_rate": 0.0006,
+ "loss": 4.357202529907227,
+ "step": 745
+ },
+ {
+ "epoch": 10.36347750109218,
+ "grad_norm": 0.2416863739490509,
+ "learning_rate": 0.0006,
+ "loss": 4.364739418029785,
+ "step": 746
+ },
+ {
+ "epoch": 10.37745740498034,
+ "grad_norm": 0.22281162440776825,
+ "learning_rate": 0.0006,
+ "loss": 4.351607799530029,
+ "step": 747
+ },
+ {
+ "epoch": 10.391437308868502,
+ "grad_norm": 0.20751096308231354,
+ "learning_rate": 0.0006,
+ "loss": 4.370017051696777,
+ "step": 748
+ },
+ {
+ "epoch": 10.405417212756662,
+ "grad_norm": 0.19178363680839539,
+ "learning_rate": 0.0006,
+ "loss": 4.360328674316406,
+ "step": 749
+ },
+ {
+ "epoch": 10.419397116644824,
+ "grad_norm": 0.20534078776836395,
+ "learning_rate": 0.0006,
+ "loss": 4.3735432624816895,
+ "step": 750
+ },
+ {
+ "epoch": 10.433377020532983,
+ "grad_norm": 0.20533937215805054,
+ "learning_rate": 0.0006,
+ "loss": 4.326902389526367,
+ "step": 751
+ },
+ {
+ "epoch": 10.447356924421145,
+ "grad_norm": 0.22057875990867615,
+ "learning_rate": 0.0006,
+ "loss": 4.360934257507324,
+ "step": 752
+ },
+ {
+ "epoch": 10.461336828309305,
+ "grad_norm": 0.25568997859954834,
+ "learning_rate": 0.0006,
+ "loss": 4.345063209533691,
+ "step": 753
+ },
+ {
+ "epoch": 10.475316732197467,
+ "grad_norm": 0.31471487879753113,
+ "learning_rate": 0.0006,
+ "loss": 4.324014186859131,
+ "step": 754
+ },
+ {
+ "epoch": 10.489296636085626,
+ "grad_norm": 0.2716822624206543,
+ "learning_rate": 0.0006,
+ "loss": 4.318459510803223,
+ "step": 755
+ },
+ {
+ "epoch": 10.503276539973788,
+ "grad_norm": 0.19552019238471985,
+ "learning_rate": 0.0006,
+ "loss": 4.3367509841918945,
+ "step": 756
+ },
+ {
+ "epoch": 10.517256443861948,
+ "grad_norm": 0.22822986543178558,
+ "learning_rate": 0.0006,
+ "loss": 4.328935623168945,
+ "step": 757
+ },
+ {
+ "epoch": 10.53123634775011,
+ "grad_norm": 0.22282928228378296,
+ "learning_rate": 0.0006,
+ "loss": 4.358272552490234,
+ "step": 758
+ },
+ {
+ "epoch": 10.54521625163827,
+ "grad_norm": 0.23303352296352386,
+ "learning_rate": 0.0006,
+ "loss": 4.336641311645508,
+ "step": 759
+ },
+ {
+ "epoch": 10.55919615552643,
+ "grad_norm": 0.29474690556526184,
+ "learning_rate": 0.0006,
+ "loss": 4.343188285827637,
+ "step": 760
+ },
+ {
+ "epoch": 10.57317605941459,
+ "grad_norm": 0.36269059777259827,
+ "learning_rate": 0.0006,
+ "loss": 4.313019752502441,
+ "step": 761
+ },
+ {
+ "epoch": 10.587155963302752,
+ "grad_norm": 0.3742978870868683,
+ "learning_rate": 0.0006,
+ "loss": 4.361410140991211,
+ "step": 762
+ },
+ {
+ "epoch": 10.601135867190912,
+ "grad_norm": 0.34412163496017456,
+ "learning_rate": 0.0006,
+ "loss": 4.321324825286865,
+ "step": 763
+ },
+ {
+ "epoch": 10.615115771079074,
+ "grad_norm": 0.3464587926864624,
+ "learning_rate": 0.0006,
+ "loss": 4.341907501220703,
+ "step": 764
+ },
+ {
+ "epoch": 10.629095674967235,
+ "grad_norm": 0.3318136930465698,
+ "learning_rate": 0.0006,
+ "loss": 4.329099655151367,
+ "step": 765
+ },
+ {
+ "epoch": 10.643075578855395,
+ "grad_norm": 0.31292903423309326,
+ "learning_rate": 0.0006,
+ "loss": 4.332015037536621,
+ "step": 766
+ },
+ {
+ "epoch": 10.657055482743557,
+ "grad_norm": 0.2904847264289856,
+ "learning_rate": 0.0006,
+ "loss": 4.341764450073242,
+ "step": 767
+ },
+ {
+ "epoch": 10.671035386631717,
+ "grad_norm": 0.3287692666053772,
+ "learning_rate": 0.0006,
+ "loss": 4.342329025268555,
+ "step": 768
+ },
+ {
+ "epoch": 10.685015290519878,
+ "grad_norm": 0.3115365207195282,
+ "learning_rate": 0.0006,
+ "loss": 4.3530073165893555,
+ "step": 769
+ },
+ {
+ "epoch": 10.698995194408038,
+ "grad_norm": 0.24133864045143127,
+ "learning_rate": 0.0006,
+ "loss": 4.321497917175293,
+ "step": 770
+ },
+ {
+ "epoch": 10.7129750982962,
+ "grad_norm": 0.24658630788326263,
+ "learning_rate": 0.0006,
+ "loss": 4.32669734954834,
+ "step": 771
+ },
+ {
+ "epoch": 10.72695500218436,
+ "grad_norm": 0.2342129647731781,
+ "learning_rate": 0.0006,
+ "loss": 4.345459461212158,
+ "step": 772
+ },
+ {
+ "epoch": 10.740934906072521,
+ "grad_norm": 0.23360829055309296,
+ "learning_rate": 0.0006,
+ "loss": 4.33249568939209,
+ "step": 773
+ },
+ {
+ "epoch": 10.754914809960681,
+ "grad_norm": 0.24314677715301514,
+ "learning_rate": 0.0006,
+ "loss": 4.30499792098999,
+ "step": 774
+ },
+ {
+ "epoch": 10.768894713848843,
+ "grad_norm": 0.22105181217193604,
+ "learning_rate": 0.0006,
+ "loss": 4.33706521987915,
+ "step": 775
+ },
+ {
+ "epoch": 10.782874617737003,
+ "grad_norm": 0.23307174444198608,
+ "learning_rate": 0.0006,
+ "loss": 4.320387840270996,
+ "step": 776
+ },
+ {
+ "epoch": 10.796854521625164,
+ "grad_norm": 0.24946169555187225,
+ "learning_rate": 0.0006,
+ "loss": 4.316012382507324,
+ "step": 777
+ },
+ {
+ "epoch": 10.810834425513324,
+ "grad_norm": 0.26023536920547485,
+ "learning_rate": 0.0006,
+ "loss": 4.315193176269531,
+ "step": 778
+ },
+ {
+ "epoch": 10.824814329401486,
+ "grad_norm": 0.2688547968864441,
+ "learning_rate": 0.0006,
+ "loss": 4.3243255615234375,
+ "step": 779
+ },
+ {
+ "epoch": 10.838794233289645,
+ "grad_norm": 0.28188297152519226,
+ "learning_rate": 0.0006,
+ "loss": 4.3202972412109375,
+ "step": 780
+ },
+ {
+ "epoch": 10.852774137177807,
+ "grad_norm": 0.2890053689479828,
+ "learning_rate": 0.0006,
+ "loss": 4.318799018859863,
+ "step": 781
+ },
+ {
+ "epoch": 10.866754041065967,
+ "grad_norm": 0.2914353013038635,
+ "learning_rate": 0.0006,
+ "loss": 4.314262390136719,
+ "step": 782
+ },
+ {
+ "epoch": 10.880733944954128,
+ "grad_norm": 0.3145572543144226,
+ "learning_rate": 0.0006,
+ "loss": 4.339262008666992,
+ "step": 783
+ },
+ {
+ "epoch": 10.89471384884229,
+ "grad_norm": 0.323062002658844,
+ "learning_rate": 0.0006,
+ "loss": 4.354856491088867,
+ "step": 784
+ },
+ {
+ "epoch": 10.90869375273045,
+ "grad_norm": 0.32741227746009827,
+ "learning_rate": 0.0006,
+ "loss": 4.325577735900879,
+ "step": 785
+ },
+ {
+ "epoch": 10.922673656618612,
+ "grad_norm": 0.2855733036994934,
+ "learning_rate": 0.0006,
+ "loss": 4.324419021606445,
+ "step": 786
+ },
+ {
+ "epoch": 10.936653560506771,
+ "grad_norm": 0.2969444990158081,
+ "learning_rate": 0.0006,
+ "loss": 4.320681095123291,
+ "step": 787
+ },
+ {
+ "epoch": 10.950633464394933,
+ "grad_norm": 0.28108111023902893,
+ "learning_rate": 0.0006,
+ "loss": 4.32673454284668,
+ "step": 788
+ },
+ {
+ "epoch": 10.964613368283093,
+ "grad_norm": 0.2537972629070282,
+ "learning_rate": 0.0006,
+ "loss": 4.3197021484375,
+ "step": 789
+ },
+ {
+ "epoch": 10.978593272171254,
+ "grad_norm": 0.2354544699192047,
+ "learning_rate": 0.0006,
+ "loss": 4.3354973793029785,
+ "step": 790
+ },
+ {
+ "epoch": 10.992573176059414,
+ "grad_norm": 0.26195117831230164,
+ "learning_rate": 0.0006,
+ "loss": 4.3172526359558105,
+ "step": 791
+ },
+ {
+ "epoch": 11.0,
+ "grad_norm": 0.27089616656303406,
+ "learning_rate": 0.0006,
+ "loss": 4.324293613433838,
+ "step": 792
+ },
+ {
+ "epoch": 11.0,
+ "eval_loss": 4.531813621520996,
+ "eval_runtime": 44.1656,
+ "eval_samples_per_second": 55.292,
+ "eval_steps_per_second": 3.464,
+ "step": 792
+ },
+ {
+ "epoch": 11.013979903888162,
+ "grad_norm": 0.2526339590549469,
+ "learning_rate": 0.0006,
+ "loss": 4.287600517272949,
+ "step": 793
+ },
+ {
+ "epoch": 11.027959807776321,
+ "grad_norm": 0.24318458139896393,
+ "learning_rate": 0.0006,
+ "loss": 4.268078327178955,
+ "step": 794
+ },
+ {
+ "epoch": 11.041939711664483,
+ "grad_norm": 0.2450830638408661,
+ "learning_rate": 0.0006,
+ "loss": 4.265467643737793,
+ "step": 795
+ },
+ {
+ "epoch": 11.055919615552643,
+ "grad_norm": 0.23963099718093872,
+ "learning_rate": 0.0006,
+ "loss": 4.267931938171387,
+ "step": 796
+ },
+ {
+ "epoch": 11.069899519440805,
+ "grad_norm": 0.2488657534122467,
+ "learning_rate": 0.0006,
+ "loss": 4.30262565612793,
+ "step": 797
+ },
+ {
+ "epoch": 11.083879423328964,
+ "grad_norm": 0.2319781631231308,
+ "learning_rate": 0.0006,
+ "loss": 4.28665828704834,
+ "step": 798
+ },
+ {
+ "epoch": 11.097859327217126,
+ "grad_norm": 0.2425263375043869,
+ "learning_rate": 0.0006,
+ "loss": 4.284830570220947,
+ "step": 799
+ },
+ {
+ "epoch": 11.111839231105286,
+ "grad_norm": 0.23096567392349243,
+ "learning_rate": 0.0006,
+ "loss": 4.2817206382751465,
+ "step": 800
+ },
+ {
+ "epoch": 11.125819134993447,
+ "grad_norm": 0.2846364676952362,
+ "learning_rate": 0.0006,
+ "loss": 4.276104927062988,
+ "step": 801
+ },
+ {
+ "epoch": 11.139799038881607,
+ "grad_norm": 0.2984965741634369,
+ "learning_rate": 0.0006,
+ "loss": 4.2909650802612305,
+ "step": 802
+ },
+ {
+ "epoch": 11.153778942769769,
+ "grad_norm": 0.2841213643550873,
+ "learning_rate": 0.0006,
+ "loss": 4.283358097076416,
+ "step": 803
+ },
+ {
+ "epoch": 11.167758846657929,
+ "grad_norm": 0.29192933440208435,
+ "learning_rate": 0.0006,
+ "loss": 4.267040729522705,
+ "step": 804
+ },
+ {
+ "epoch": 11.18173875054609,
+ "grad_norm": 0.3254184126853943,
+ "learning_rate": 0.0006,
+ "loss": 4.301564693450928,
+ "step": 805
+ },
+ {
+ "epoch": 11.19571865443425,
+ "grad_norm": 0.3347095847129822,
+ "learning_rate": 0.0006,
+ "loss": 4.271395683288574,
+ "step": 806
+ },
+ {
+ "epoch": 11.209698558322412,
+ "grad_norm": 0.25609350204467773,
+ "learning_rate": 0.0006,
+ "loss": 4.2963056564331055,
+ "step": 807
+ },
+ {
+ "epoch": 11.223678462210572,
+ "grad_norm": 0.29272061586380005,
+ "learning_rate": 0.0006,
+ "loss": 4.298416614532471,
+ "step": 808
+ },
+ {
+ "epoch": 11.237658366098733,
+ "grad_norm": 0.32179465889930725,
+ "learning_rate": 0.0006,
+ "loss": 4.294036865234375,
+ "step": 809
+ },
+ {
+ "epoch": 11.251638269986893,
+ "grad_norm": 0.3336549401283264,
+ "learning_rate": 0.0006,
+ "loss": 4.291993141174316,
+ "step": 810
+ },
+ {
+ "epoch": 11.265618173875055,
+ "grad_norm": 0.32273536920547485,
+ "learning_rate": 0.0006,
+ "loss": 4.311004638671875,
+ "step": 811
+ },
+ {
+ "epoch": 11.279598077763215,
+ "grad_norm": 0.3575087785720825,
+ "learning_rate": 0.0006,
+ "loss": 4.300217628479004,
+ "step": 812
+ },
+ {
+ "epoch": 11.293577981651376,
+ "grad_norm": 0.3332885205745697,
+ "learning_rate": 0.0006,
+ "loss": 4.278337478637695,
+ "step": 813
+ },
+ {
+ "epoch": 11.307557885539538,
+ "grad_norm": 0.31440407037734985,
+ "learning_rate": 0.0006,
+ "loss": 4.273826599121094,
+ "step": 814
+ },
+ {
+ "epoch": 11.321537789427698,
+ "grad_norm": 0.29822009801864624,
+ "learning_rate": 0.0006,
+ "loss": 4.284292221069336,
+ "step": 815
+ },
+ {
+ "epoch": 11.33551769331586,
+ "grad_norm": 0.30695512890815735,
+ "learning_rate": 0.0006,
+ "loss": 4.2831926345825195,
+ "step": 816
+ },
+ {
+ "epoch": 11.349497597204019,
+ "grad_norm": 0.30576950311660767,
+ "learning_rate": 0.0006,
+ "loss": 4.277133464813232,
+ "step": 817
+ },
+ {
+ "epoch": 11.36347750109218,
+ "grad_norm": 0.2859647870063782,
+ "learning_rate": 0.0006,
+ "loss": 4.3130106925964355,
+ "step": 818
+ },
+ {
+ "epoch": 11.37745740498034,
+ "grad_norm": 0.32417574524879456,
+ "learning_rate": 0.0006,
+ "loss": 4.310303211212158,
+ "step": 819
+ },
+ {
+ "epoch": 11.391437308868502,
+ "grad_norm": 0.3512463867664337,
+ "learning_rate": 0.0006,
+ "loss": 4.287015438079834,
+ "step": 820
+ },
+ {
+ "epoch": 11.405417212756662,
+ "grad_norm": 0.32578620314598083,
+ "learning_rate": 0.0006,
+ "loss": 4.2957940101623535,
+ "step": 821
+ },
+ {
+ "epoch": 11.419397116644824,
+ "grad_norm": 0.287949800491333,
+ "learning_rate": 0.0006,
+ "loss": 4.2881879806518555,
+ "step": 822
+ },
+ {
+ "epoch": 11.433377020532983,
+ "grad_norm": 0.28048595786094666,
+ "learning_rate": 0.0006,
+ "loss": 4.274960517883301,
+ "step": 823
+ },
+ {
+ "epoch": 11.447356924421145,
+ "grad_norm": 0.2541540563106537,
+ "learning_rate": 0.0006,
+ "loss": 4.261083602905273,
+ "step": 824
+ },
+ {
+ "epoch": 11.461336828309305,
+ "grad_norm": 0.2348361313343048,
+ "learning_rate": 0.0006,
+ "loss": 4.271036148071289,
+ "step": 825
+ },
+ {
+ "epoch": 11.475316732197467,
+ "grad_norm": 0.20913535356521606,
+ "learning_rate": 0.0006,
+ "loss": 4.307661056518555,
+ "step": 826
+ },
+ {
+ "epoch": 11.489296636085626,
+ "grad_norm": 0.22298868000507355,
+ "learning_rate": 0.0006,
+ "loss": 4.26902961730957,
+ "step": 827
+ },
+ {
+ "epoch": 11.503276539973788,
+ "grad_norm": 0.22752761840820312,
+ "learning_rate": 0.0006,
+ "loss": 4.305529594421387,
+ "step": 828
+ },
+ {
+ "epoch": 11.517256443861948,
+ "grad_norm": 0.2149917483329773,
+ "learning_rate": 0.0006,
+ "loss": 4.25134801864624,
+ "step": 829
+ },
+ {
+ "epoch": 11.53123634775011,
+ "grad_norm": 0.21085695922374725,
+ "learning_rate": 0.0006,
+ "loss": 4.266982078552246,
+ "step": 830
+ },
+ {
+ "epoch": 11.54521625163827,
+ "grad_norm": 0.21586747467517853,
+ "learning_rate": 0.0006,
+ "loss": 4.235255718231201,
+ "step": 831
+ },
+ {
+ "epoch": 11.55919615552643,
+ "grad_norm": 0.2520856559276581,
+ "learning_rate": 0.0006,
+ "loss": 4.283442497253418,
+ "step": 832
+ },
+ {
+ "epoch": 11.57317605941459,
+ "grad_norm": 0.2825471758842468,
+ "learning_rate": 0.0006,
+ "loss": 4.234672546386719,
+ "step": 833
+ },
+ {
+ "epoch": 11.587155963302752,
+ "grad_norm": 0.27437824010849,
+ "learning_rate": 0.0006,
+ "loss": 4.246068000793457,
+ "step": 834
+ },
+ {
+ "epoch": 11.601135867190912,
+ "grad_norm": 0.2596757411956787,
+ "learning_rate": 0.0006,
+ "loss": 4.278448104858398,
+ "step": 835
+ },
+ {
+ "epoch": 11.615115771079074,
+ "grad_norm": 0.25663474202156067,
+ "learning_rate": 0.0006,
+ "loss": 4.308779716491699,
+ "step": 836
+ },
+ {
+ "epoch": 11.629095674967235,
+ "grad_norm": 0.2546203136444092,
+ "learning_rate": 0.0006,
+ "loss": 4.261247634887695,
+ "step": 837
+ },
+ {
+ "epoch": 11.643075578855395,
+ "grad_norm": 0.24722838401794434,
+ "learning_rate": 0.0006,
+ "loss": 4.275888442993164,
+ "step": 838
+ },
+ {
+ "epoch": 11.657055482743557,
+ "grad_norm": 0.3022806644439697,
+ "learning_rate": 0.0006,
+ "loss": 4.2572407722473145,
+ "step": 839
+ },
+ {
+ "epoch": 11.671035386631717,
+ "grad_norm": 0.31170839071273804,
+ "learning_rate": 0.0006,
+ "loss": 4.26992654800415,
+ "step": 840
+ },
+ {
+ "epoch": 11.685015290519878,
+ "grad_norm": 0.31362825632095337,
+ "learning_rate": 0.0006,
+ "loss": 4.2354655265808105,
+ "step": 841
+ },
+ {
+ "epoch": 11.698995194408038,
+ "grad_norm": 0.28741633892059326,
+ "learning_rate": 0.0006,
+ "loss": 4.263496398925781,
+ "step": 842
+ },
+ {
+ "epoch": 11.7129750982962,
+ "grad_norm": 0.2492494285106659,
+ "learning_rate": 0.0006,
+ "loss": 4.26463508605957,
+ "step": 843
+ },
+ {
+ "epoch": 11.72695500218436,
+ "grad_norm": 0.24324660003185272,
+ "learning_rate": 0.0006,
+ "loss": 4.245428085327148,
+ "step": 844
+ },
+ {
+ "epoch": 11.740934906072521,
+ "grad_norm": 0.23591114580631256,
+ "learning_rate": 0.0006,
+ "loss": 4.249845504760742,
+ "step": 845
+ },
+ {
+ "epoch": 11.754914809960681,
+ "grad_norm": 0.2202281504869461,
+ "learning_rate": 0.0006,
+ "loss": 4.245006084442139,
+ "step": 846
+ },
+ {
+ "epoch": 11.768894713848843,
+ "grad_norm": 0.22117942571640015,
+ "learning_rate": 0.0006,
+ "loss": 4.27812385559082,
+ "step": 847
+ },
+ {
+ "epoch": 11.782874617737003,
+ "grad_norm": 0.26361414790153503,
+ "learning_rate": 0.0006,
+ "loss": 4.250475883483887,
+ "step": 848
+ },
+ {
+ "epoch": 11.796854521625164,
+ "grad_norm": 0.2820321321487427,
+ "learning_rate": 0.0006,
+ "loss": 4.265835762023926,
+ "step": 849
+ },
+ {
+ "epoch": 11.810834425513324,
+ "grad_norm": 0.2078961282968521,
+ "learning_rate": 0.0006,
+ "loss": 4.251298904418945,
+ "step": 850
+ },
+ {
+ "epoch": 11.824814329401486,
+ "grad_norm": 0.21548646688461304,
+ "learning_rate": 0.0006,
+ "loss": 4.288539886474609,
+ "step": 851
+ },
+ {
+ "epoch": 11.838794233289645,
+ "grad_norm": 0.22719401121139526,
+ "learning_rate": 0.0006,
+ "loss": 4.252035140991211,
+ "step": 852
+ },
+ {
+ "epoch": 11.852774137177807,
+ "grad_norm": 0.21628320217132568,
+ "learning_rate": 0.0006,
+ "loss": 4.268622398376465,
+ "step": 853
+ },
+ {
+ "epoch": 11.866754041065967,
+ "grad_norm": 0.20855145156383514,
+ "learning_rate": 0.0006,
+ "loss": 4.253366470336914,
+ "step": 854
+ },
+ {
+ "epoch": 11.880733944954128,
+ "grad_norm": 0.2091914266347885,
+ "learning_rate": 0.0006,
+ "loss": 4.237805366516113,
+ "step": 855
+ },
+ {
+ "epoch": 11.89471384884229,
+ "grad_norm": 0.2000127136707306,
+ "learning_rate": 0.0006,
+ "loss": 4.268559455871582,
+ "step": 856
+ },
+ {
+ "epoch": 11.90869375273045,
+ "grad_norm": 0.21080894768238068,
+ "learning_rate": 0.0006,
+ "loss": 4.208702087402344,
+ "step": 857
+ },
+ {
+ "epoch": 11.922673656618612,
+ "grad_norm": 0.22125796973705292,
+ "learning_rate": 0.0006,
+ "loss": 4.250210762023926,
+ "step": 858
+ },
+ {
+ "epoch": 11.936653560506771,
+ "grad_norm": 0.25905469059944153,
+ "learning_rate": 0.0006,
+ "loss": 4.2263593673706055,
+ "step": 859
+ },
+ {
+ "epoch": 11.950633464394933,
+ "grad_norm": 0.29970306158065796,
+ "learning_rate": 0.0006,
+ "loss": 4.250848770141602,
+ "step": 860
+ },
+ {
+ "epoch": 11.964613368283093,
+ "grad_norm": 0.28155168890953064,
+ "learning_rate": 0.0006,
+ "loss": 4.272709369659424,
+ "step": 861
+ },
+ {
+ "epoch": 11.978593272171254,
+ "grad_norm": 0.23396113514900208,
+ "learning_rate": 0.0006,
+ "loss": 4.2674970626831055,
+ "step": 862
+ },
+ {
+ "epoch": 11.992573176059414,
+ "grad_norm": 0.23619577288627625,
+ "learning_rate": 0.0006,
+ "loss": 4.240267753601074,
+ "step": 863
+ },
+ {
+ "epoch": 12.0,
+ "grad_norm": 0.2779577076435089,
+ "learning_rate": 0.0006,
+ "loss": 4.267625331878662,
+ "step": 864
+ },
+ {
+ "epoch": 12.0,
+ "eval_loss": 4.437657356262207,
+ "eval_runtime": 44.4959,
+ "eval_samples_per_second": 54.881,
+ "eval_steps_per_second": 3.439,
+ "step": 864
+ },
+ {
+ "epoch": 12.013979903888162,
+ "grad_norm": 0.2948288321495056,
+ "learning_rate": 0.0006,
+ "loss": 4.232182502746582,
+ "step": 865
+ },
+ {
+ "epoch": 12.027959807776321,
+ "grad_norm": 0.3715663254261017,
+ "learning_rate": 0.0006,
+ "loss": 4.233771324157715,
+ "step": 866
+ },
+ {
+ "epoch": 12.041939711664483,
+ "grad_norm": 0.38358673453330994,
+ "learning_rate": 0.0006,
+ "loss": 4.208967685699463,
+ "step": 867
+ },
+ {
+ "epoch": 12.055919615552643,
+ "grad_norm": 0.3314538896083832,
+ "learning_rate": 0.0006,
+ "loss": 4.230685234069824,
+ "step": 868
+ },
+ {
+ "epoch": 12.069899519440805,
+ "grad_norm": 0.34171539545059204,
+ "learning_rate": 0.0006,
+ "loss": 4.231358528137207,
+ "step": 869
+ },
+ {
+ "epoch": 12.083879423328964,
+ "grad_norm": 0.3253359794616699,
+ "learning_rate": 0.0006,
+ "loss": 4.276405334472656,
+ "step": 870
+ },
+ {
+ "epoch": 12.097859327217126,
+ "grad_norm": 0.29008302092552185,
+ "learning_rate": 0.0006,
+ "loss": 4.232935905456543,
+ "step": 871
+ },
+ {
+ "epoch": 12.111839231105286,
+ "grad_norm": 0.28490355610847473,
+ "learning_rate": 0.0006,
+ "loss": 4.238036632537842,
+ "step": 872
+ },
+ {
+ "epoch": 12.125819134993447,
+ "grad_norm": 0.28446322679519653,
+ "learning_rate": 0.0006,
+ "loss": 4.210229873657227,
+ "step": 873
+ },
+ {
+ "epoch": 12.139799038881607,
+ "grad_norm": 0.29664531350135803,
+ "learning_rate": 0.0006,
+ "loss": 4.221309185028076,
+ "step": 874
+ },
+ {
+ "epoch": 12.153778942769769,
+ "grad_norm": 0.3083505928516388,
+ "learning_rate": 0.0006,
+ "loss": 4.221837997436523,
+ "step": 875
+ },
+ {
+ "epoch": 12.167758846657929,
+ "grad_norm": 0.3282921314239502,
+ "learning_rate": 0.0006,
+ "loss": 4.236713409423828,
+ "step": 876
+ },
+ {
+ "epoch": 12.18173875054609,
+ "grad_norm": 0.3603622615337372,
+ "learning_rate": 0.0006,
+ "loss": 4.245080947875977,
+ "step": 877
+ },
+ {
+ "epoch": 12.19571865443425,
+ "grad_norm": 0.38070905208587646,
+ "learning_rate": 0.0006,
+ "loss": 4.240756988525391,
+ "step": 878
+ },
+ {
+ "epoch": 12.209698558322412,
+ "grad_norm": 0.34479081630706787,
+ "learning_rate": 0.0006,
+ "loss": 4.200998306274414,
+ "step": 879
+ },
+ {
+ "epoch": 12.223678462210572,
+ "grad_norm": 0.3006879389286041,
+ "learning_rate": 0.0006,
+ "loss": 4.23531436920166,
+ "step": 880
+ },
+ {
+ "epoch": 12.237658366098733,
+ "grad_norm": 0.36835649609565735,
+ "learning_rate": 0.0006,
+ "loss": 4.229718208312988,
+ "step": 881
+ },
+ {
+ "epoch": 12.251638269986893,
+ "grad_norm": 0.4386984407901764,
+ "learning_rate": 0.0006,
+ "loss": 4.241188049316406,
+ "step": 882
+ },
+ {
+ "epoch": 12.265618173875055,
+ "grad_norm": 0.4442787170410156,
+ "learning_rate": 0.0006,
+ "loss": 4.239102840423584,
+ "step": 883
+ },
+ {
+ "epoch": 12.279598077763215,
+ "grad_norm": 0.324411541223526,
+ "learning_rate": 0.0006,
+ "loss": 4.198982238769531,
+ "step": 884
+ },
+ {
+ "epoch": 12.293577981651376,
+ "grad_norm": 0.2824151813983917,
+ "learning_rate": 0.0006,
+ "loss": 4.248816967010498,
+ "step": 885
+ },
+ {
+ "epoch": 12.307557885539538,
+ "grad_norm": 0.31407129764556885,
+ "learning_rate": 0.0006,
+ "loss": 4.2371320724487305,
+ "step": 886
+ },
+ {
+ "epoch": 12.321537789427698,
+ "grad_norm": 0.32920050621032715,
+ "learning_rate": 0.0006,
+ "loss": 4.210432052612305,
+ "step": 887
+ },
+ {
+ "epoch": 12.33551769331586,
+ "grad_norm": 0.315231055021286,
+ "learning_rate": 0.0006,
+ "loss": 4.219416618347168,
+ "step": 888
+ },
+ {
+ "epoch": 12.349497597204019,
+ "grad_norm": 0.30932050943374634,
+ "learning_rate": 0.0006,
+ "loss": 4.225022315979004,
+ "step": 889
+ },
+ {
+ "epoch": 12.36347750109218,
+ "grad_norm": 0.30242064595222473,
+ "learning_rate": 0.0006,
+ "loss": 4.2738518714904785,
+ "step": 890
+ },
+ {
+ "epoch": 12.37745740498034,
+ "grad_norm": 0.2926250994205475,
+ "learning_rate": 0.0006,
+ "loss": 4.231094837188721,
+ "step": 891
+ },
+ {
+ "epoch": 12.391437308868502,
+ "grad_norm": 0.2541215717792511,
+ "learning_rate": 0.0006,
+ "loss": 4.211821556091309,
+ "step": 892
+ },
+ {
+ "epoch": 12.405417212756662,
+ "grad_norm": 0.23693418502807617,
+ "learning_rate": 0.0006,
+ "loss": 4.208099365234375,
+ "step": 893
+ },
+ {
+ "epoch": 12.419397116644824,
+ "grad_norm": 0.22063226997852325,
+ "learning_rate": 0.0006,
+ "loss": 4.211234092712402,
+ "step": 894
+ },
+ {
+ "epoch": 12.433377020532983,
+ "grad_norm": 0.21536271274089813,
+ "learning_rate": 0.0006,
+ "loss": 4.199228286743164,
+ "step": 895
+ },
+ {
+ "epoch": 12.447356924421145,
+ "grad_norm": 0.243179589509964,
+ "learning_rate": 0.0006,
+ "loss": 4.204344749450684,
+ "step": 896
+ },
+ {
+ "epoch": 12.461336828309305,
+ "grad_norm": 0.2299746423959732,
+ "learning_rate": 0.0006,
+ "loss": 4.1565752029418945,
+ "step": 897
+ },
+ {
+ "epoch": 12.475316732197467,
+ "grad_norm": 0.2286847084760666,
+ "learning_rate": 0.0006,
+ "loss": 4.242953777313232,
+ "step": 898
+ },
+ {
+ "epoch": 12.489296636085626,
+ "grad_norm": 0.19463586807250977,
+ "learning_rate": 0.0006,
+ "loss": 4.214809417724609,
+ "step": 899
+ },
+ {
+ "epoch": 12.503276539973788,
+ "grad_norm": 0.1978398710489273,
+ "learning_rate": 0.0006,
+ "loss": 4.159815311431885,
+ "step": 900
+ },
+ {
+ "epoch": 12.517256443861948,
+ "grad_norm": 0.23177850246429443,
+ "learning_rate": 0.0006,
+ "loss": 4.2069902420043945,
+ "step": 901
+ },
+ {
+ "epoch": 12.53123634775011,
+ "grad_norm": 0.2408912032842636,
+ "learning_rate": 0.0006,
+ "loss": 4.206778526306152,
+ "step": 902
+ },
+ {
+ "epoch": 12.54521625163827,
+ "grad_norm": 0.21839919686317444,
+ "learning_rate": 0.0006,
+ "loss": 4.197076320648193,
+ "step": 903
+ },
+ {
+ "epoch": 12.55919615552643,
+ "grad_norm": 0.2053343504667282,
+ "learning_rate": 0.0006,
+ "loss": 4.21247673034668,
+ "step": 904
+ },
+ {
+ "epoch": 12.57317605941459,
+ "grad_norm": 0.19943439960479736,
+ "learning_rate": 0.0006,
+ "loss": 4.176966667175293,
+ "step": 905
+ },
+ {
+ "epoch": 12.587155963302752,
+ "grad_norm": 0.2012074887752533,
+ "learning_rate": 0.0006,
+ "loss": 4.210303783416748,
+ "step": 906
+ },
+ {
+ "epoch": 12.601135867190912,
+ "grad_norm": 0.22240376472473145,
+ "learning_rate": 0.0006,
+ "loss": 4.200625896453857,
+ "step": 907
+ },
+ {
+ "epoch": 12.615115771079074,
+ "grad_norm": 0.21729710698127747,
+ "learning_rate": 0.0006,
+ "loss": 4.2001953125,
+ "step": 908
+ },
+ {
+ "epoch": 12.629095674967235,
+ "grad_norm": 0.22470413148403168,
+ "learning_rate": 0.0006,
+ "loss": 4.197505950927734,
+ "step": 909
+ },
+ {
+ "epoch": 12.643075578855395,
+ "grad_norm": 0.23776157200336456,
+ "learning_rate": 0.0006,
+ "loss": 4.235603332519531,
+ "step": 910
+ },
+ {
+ "epoch": 12.657055482743557,
+ "grad_norm": 0.20616604387760162,
+ "learning_rate": 0.0006,
+ "loss": 4.193584442138672,
+ "step": 911
+ },
+ {
+ "epoch": 12.671035386631717,
+ "grad_norm": 0.1913922131061554,
+ "learning_rate": 0.0006,
+ "loss": 4.209191799163818,
+ "step": 912
+ },
+ {
+ "epoch": 12.685015290519878,
+ "grad_norm": 0.19427193701267242,
+ "learning_rate": 0.0006,
+ "loss": 4.219709396362305,
+ "step": 913
+ },
+ {
+ "epoch": 12.698995194408038,
+ "grad_norm": 0.20976558327674866,
+ "learning_rate": 0.0006,
+ "loss": 4.210859298706055,
+ "step": 914
+ },
+ {
+ "epoch": 12.7129750982962,
+ "grad_norm": 0.21571609377861023,
+ "learning_rate": 0.0006,
+ "loss": 4.189394950866699,
+ "step": 915
+ },
+ {
+ "epoch": 12.72695500218436,
+ "grad_norm": 0.2152620255947113,
+ "learning_rate": 0.0006,
+ "loss": 4.223589897155762,
+ "step": 916
+ },
+ {
+ "epoch": 12.740934906072521,
+ "grad_norm": 0.21867749094963074,
+ "learning_rate": 0.0006,
+ "loss": 4.198590278625488,
+ "step": 917
+ },
+ {
+ "epoch": 12.754914809960681,
+ "grad_norm": 0.22300855815410614,
+ "learning_rate": 0.0006,
+ "loss": 4.188891410827637,
+ "step": 918
+ },
+ {
+ "epoch": 12.768894713848843,
+ "grad_norm": 0.22197802364826202,
+ "learning_rate": 0.0006,
+ "loss": 4.190221309661865,
+ "step": 919
+ },
+ {
+ "epoch": 12.782874617737003,
+ "grad_norm": 0.20003341138362885,
+ "learning_rate": 0.0006,
+ "loss": 4.215453147888184,
+ "step": 920
+ },
+ {
+ "epoch": 12.796854521625164,
+ "grad_norm": 0.19887958467006683,
+ "learning_rate": 0.0006,
+ "loss": 4.18174934387207,
+ "step": 921
+ },
+ {
+ "epoch": 12.810834425513324,
+ "grad_norm": 0.20945803821086884,
+ "learning_rate": 0.0006,
+ "loss": 4.234947204589844,
+ "step": 922
+ },
+ {
+ "epoch": 12.824814329401486,
+ "grad_norm": 0.2253490388393402,
+ "learning_rate": 0.0006,
+ "loss": 4.2177228927612305,
+ "step": 923
+ },
+ {
+ "epoch": 12.838794233289645,
+ "grad_norm": 0.247610405087471,
+ "learning_rate": 0.0006,
+ "loss": 4.2013139724731445,
+ "step": 924
+ },
+ {
+ "epoch": 12.852774137177807,
+ "grad_norm": 0.2792088985443115,
+ "learning_rate": 0.0006,
+ "loss": 4.204774379730225,
+ "step": 925
+ },
+ {
+ "epoch": 12.866754041065967,
+ "grad_norm": 0.2839066982269287,
+ "learning_rate": 0.0006,
+ "loss": 4.186254978179932,
+ "step": 926
+ },
+ {
+ "epoch": 12.880733944954128,
+ "grad_norm": 0.2793181836605072,
+ "learning_rate": 0.0006,
+ "loss": 4.172411918640137,
+ "step": 927
+ },
+ {
+ "epoch": 12.89471384884229,
+ "grad_norm": 0.29506033658981323,
+ "learning_rate": 0.0006,
+ "loss": 4.202878475189209,
+ "step": 928
+ },
+ {
+ "epoch": 12.90869375273045,
+ "grad_norm": 0.2799845039844513,
+ "learning_rate": 0.0006,
+ "loss": 4.1563310623168945,
+ "step": 929
+ },
+ {
+ "epoch": 12.922673656618612,
+ "grad_norm": 0.23972125351428986,
+ "learning_rate": 0.0006,
+ "loss": 4.224601745605469,
+ "step": 930
+ },
+ {
+ "epoch": 12.936653560506771,
+ "grad_norm": 0.21558353304862976,
+ "learning_rate": 0.0006,
+ "loss": 4.167957305908203,
+ "step": 931
+ },
+ {
+ "epoch": 12.950633464394933,
+ "grad_norm": 0.21800188720226288,
+ "learning_rate": 0.0006,
+ "loss": 4.1746039390563965,
+ "step": 932
+ },
+ {
+ "epoch": 12.964613368283093,
+ "grad_norm": 0.2086547315120697,
+ "learning_rate": 0.0006,
+ "loss": 4.188137054443359,
+ "step": 933
+ },
+ {
+ "epoch": 12.978593272171254,
+ "grad_norm": 0.2174186110496521,
+ "learning_rate": 0.0006,
+ "loss": 4.184014320373535,
+ "step": 934
+ },
+ {
+ "epoch": 12.992573176059414,
+ "grad_norm": 0.22755110263824463,
+ "learning_rate": 0.0006,
+ "loss": 4.180912017822266,
+ "step": 935
+ },
+ {
+ "epoch": 13.0,
+ "grad_norm": 0.2735324203968048,
+ "learning_rate": 0.0006,
+ "loss": 4.201578617095947,
+ "step": 936
+ },
+ {
+ "epoch": 13.0,
+ "eval_loss": 4.396903038024902,
+ "eval_runtime": 44.5664,
+ "eval_samples_per_second": 54.795,
+ "eval_steps_per_second": 3.433,
+ "step": 936
+ },
+ {
+ "epoch": 13.013979903888162,
+ "grad_norm": 0.27577832341194153,
+ "learning_rate": 0.0006,
+ "loss": 4.149985313415527,
+ "step": 937
+ },
+ {
+ "epoch": 13.027959807776321,
+ "grad_norm": 0.25817009806632996,
+ "learning_rate": 0.0006,
+ "loss": 4.1526103019714355,
+ "step": 938
+ },
+ {
+ "epoch": 13.041939711664483,
+ "grad_norm": 0.24564379453659058,
+ "learning_rate": 0.0006,
+ "loss": 4.1661152839660645,
+ "step": 939
+ },
+ {
+ "epoch": 13.055919615552643,
+ "grad_norm": 0.2465466856956482,
+ "learning_rate": 0.0006,
+ "loss": 4.152953624725342,
+ "step": 940
+ },
+ {
+ "epoch": 13.069899519440805,
+ "grad_norm": 0.22702018916606903,
+ "learning_rate": 0.0006,
+ "loss": 4.145125389099121,
+ "step": 941
+ },
+ {
+ "epoch": 13.083879423328964,
+ "grad_norm": 0.24350613355636597,
+ "learning_rate": 0.0006,
+ "loss": 4.163095474243164,
+ "step": 942
+ },
+ {
+ "epoch": 13.097859327217126,
+ "grad_norm": 0.2504431903362274,
+ "learning_rate": 0.0006,
+ "loss": 4.136016845703125,
+ "step": 943
+ },
+ {
+ "epoch": 13.111839231105286,
+ "grad_norm": 0.24968865513801575,
+ "learning_rate": 0.0006,
+ "loss": 4.163487911224365,
+ "step": 944
+ },
+ {
+ "epoch": 13.125819134993447,
+ "grad_norm": 0.27164196968078613,
+ "learning_rate": 0.0006,
+ "loss": 4.1194353103637695,
+ "step": 945
+ },
+ {
+ "epoch": 13.139799038881607,
+ "grad_norm": 0.28127020597457886,
+ "learning_rate": 0.0006,
+ "loss": 4.184807300567627,
+ "step": 946
+ },
+ {
+ "epoch": 13.153778942769769,
+ "grad_norm": 0.24574966728687286,
+ "learning_rate": 0.0006,
+ "loss": 4.154998779296875,
+ "step": 947
+ },
+ {
+ "epoch": 13.167758846657929,
+ "grad_norm": 0.22310060262680054,
+ "learning_rate": 0.0006,
+ "loss": 4.182928085327148,
+ "step": 948
+ },
+ {
+ "epoch": 13.18173875054609,
+ "grad_norm": 0.2539508640766144,
+ "learning_rate": 0.0006,
+ "loss": 4.176900386810303,
+ "step": 949
+ },
+ {
+ "epoch": 13.19571865443425,
+ "grad_norm": 0.30925488471984863,
+ "learning_rate": 0.0006,
+ "loss": 4.1760711669921875,
+ "step": 950
+ },
+ {
+ "epoch": 13.209698558322412,
+ "grad_norm": 0.3842967450618744,
+ "learning_rate": 0.0006,
+ "loss": 4.1830949783325195,
+ "step": 951
+ },
+ {
+ "epoch": 13.223678462210572,
+ "grad_norm": 0.35950011014938354,
+ "learning_rate": 0.0006,
+ "loss": 4.131983757019043,
+ "step": 952
+ },
+ {
+ "epoch": 13.237658366098733,
+ "grad_norm": 0.29913705587387085,
+ "learning_rate": 0.0006,
+ "loss": 4.166984558105469,
+ "step": 953
+ },
+ {
+ "epoch": 13.251638269986893,
+ "grad_norm": 0.32008400559425354,
+ "learning_rate": 0.0006,
+ "loss": 4.156482696533203,
+ "step": 954
+ },
+ {
+ "epoch": 13.265618173875055,
+ "grad_norm": 0.3186642825603485,
+ "learning_rate": 0.0006,
+ "loss": 4.1661057472229,
+ "step": 955
+ },
+ {
+ "epoch": 13.279598077763215,
+ "grad_norm": 0.3194582462310791,
+ "learning_rate": 0.0006,
+ "loss": 4.169328689575195,
+ "step": 956
+ },
+ {
+ "epoch": 13.293577981651376,
+ "grad_norm": 0.3133867084980011,
+ "learning_rate": 0.0006,
+ "loss": 4.165459632873535,
+ "step": 957
+ },
+ {
+ "epoch": 13.307557885539538,
+ "grad_norm": 0.3232237696647644,
+ "learning_rate": 0.0006,
+ "loss": 4.2107439041137695,
+ "step": 958
+ },
+ {
+ "epoch": 13.321537789427698,
+ "grad_norm": 0.3133196234703064,
+ "learning_rate": 0.0006,
+ "loss": 4.184182167053223,
+ "step": 959
+ },
+ {
+ "epoch": 13.33551769331586,
+ "grad_norm": 0.296129435300827,
+ "learning_rate": 0.0006,
+ "loss": 4.168312072753906,
+ "step": 960
+ },
+ {
+ "epoch": 13.349497597204019,
+ "grad_norm": 0.2685348391532898,
+ "learning_rate": 0.0006,
+ "loss": 4.159984588623047,
+ "step": 961
+ },
+ {
+ "epoch": 13.36347750109218,
+ "grad_norm": 0.2644975781440735,
+ "learning_rate": 0.0006,
+ "loss": 4.164909362792969,
+ "step": 962
+ },
+ {
+ "epoch": 13.37745740498034,
+ "grad_norm": 0.2712913155555725,
+ "learning_rate": 0.0006,
+ "loss": 4.158056259155273,
+ "step": 963
+ },
+ {
+ "epoch": 13.391437308868502,
+ "grad_norm": 0.2687259316444397,
+ "learning_rate": 0.0006,
+ "loss": 4.182924270629883,
+ "step": 964
+ },
+ {
+ "epoch": 13.405417212756662,
+ "grad_norm": 0.25640392303466797,
+ "learning_rate": 0.0006,
+ "loss": 4.153351783752441,
+ "step": 965
+ },
+ {
+ "epoch": 13.419397116644824,
+ "grad_norm": 0.2646305561065674,
+ "learning_rate": 0.0006,
+ "loss": 4.18464469909668,
+ "step": 966
+ },
+ {
+ "epoch": 13.433377020532983,
+ "grad_norm": 0.24206851422786713,
+ "learning_rate": 0.0006,
+ "loss": 4.127564430236816,
+ "step": 967
+ },
+ {
+ "epoch": 13.447356924421145,
+ "grad_norm": 0.23800471425056458,
+ "learning_rate": 0.0006,
+ "loss": 4.163488388061523,
+ "step": 968
+ },
+ {
+ "epoch": 13.461336828309305,
+ "grad_norm": 0.22957314550876617,
+ "learning_rate": 0.0006,
+ "loss": 4.178133964538574,
+ "step": 969
+ },
+ {
+ "epoch": 13.475316732197467,
+ "grad_norm": 0.22867488861083984,
+ "learning_rate": 0.0006,
+ "loss": 4.159056186676025,
+ "step": 970
+ },
+ {
+ "epoch": 13.489296636085626,
+ "grad_norm": 0.21737419068813324,
+ "learning_rate": 0.0006,
+ "loss": 4.138628005981445,
+ "step": 971
+ },
+ {
+ "epoch": 13.503276539973788,
+ "grad_norm": 0.2319175899028778,
+ "learning_rate": 0.0006,
+ "loss": 4.14644718170166,
+ "step": 972
+ },
+ {
+ "epoch": 13.517256443861948,
+ "grad_norm": 0.2572193443775177,
+ "learning_rate": 0.0006,
+ "loss": 4.175213813781738,
+ "step": 973
+ },
+ {
+ "epoch": 13.53123634775011,
+ "grad_norm": 0.23483099043369293,
+ "learning_rate": 0.0006,
+ "loss": 4.133171558380127,
+ "step": 974
+ },
+ {
+ "epoch": 13.54521625163827,
+ "grad_norm": 0.2071552872657776,
+ "learning_rate": 0.0006,
+ "loss": 4.13730525970459,
+ "step": 975
+ },
+ {
+ "epoch": 13.55919615552643,
+ "grad_norm": 0.23074553906917572,
+ "learning_rate": 0.0006,
+ "loss": 4.175051689147949,
+ "step": 976
+ },
+ {
+ "epoch": 13.57317605941459,
+ "grad_norm": 0.2480078786611557,
+ "learning_rate": 0.0006,
+ "loss": 4.167630672454834,
+ "step": 977
+ },
+ {
+ "epoch": 13.587155963302752,
+ "grad_norm": 0.23444348573684692,
+ "learning_rate": 0.0006,
+ "loss": 4.141780853271484,
+ "step": 978
+ },
+ {
+ "epoch": 13.601135867190912,
+ "grad_norm": 0.2227829396724701,
+ "learning_rate": 0.0006,
+ "loss": 4.157566547393799,
+ "step": 979
+ },
+ {
+ "epoch": 13.615115771079074,
+ "grad_norm": 0.21478354930877686,
+ "learning_rate": 0.0006,
+ "loss": 4.131053447723389,
+ "step": 980
+ },
+ {
+ "epoch": 13.629095674967235,
+ "grad_norm": 0.1978664994239807,
+ "learning_rate": 0.0006,
+ "loss": 4.123660564422607,
+ "step": 981
+ },
+ {
+ "epoch": 13.643075578855395,
+ "grad_norm": 0.19980201125144958,
+ "learning_rate": 0.0006,
+ "loss": 4.174160480499268,
+ "step": 982
+ },
+ {
+ "epoch": 13.657055482743557,
+ "grad_norm": 0.19815555214881897,
+ "learning_rate": 0.0006,
+ "loss": 4.181703090667725,
+ "step": 983
+ },
+ {
+ "epoch": 13.671035386631717,
+ "grad_norm": 0.19524012506008148,
+ "learning_rate": 0.0006,
+ "loss": 4.163766860961914,
+ "step": 984
+ },
+ {
+ "epoch": 13.685015290519878,
+ "grad_norm": 0.2286096215248108,
+ "learning_rate": 0.0006,
+ "loss": 4.172213554382324,
+ "step": 985
+ },
+ {
+ "epoch": 13.698995194408038,
+ "grad_norm": 0.2210782766342163,
+ "learning_rate": 0.0006,
+ "loss": 4.187033653259277,
+ "step": 986
+ },
+ {
+ "epoch": 13.7129750982962,
+ "grad_norm": 0.21874216198921204,
+ "learning_rate": 0.0006,
+ "loss": 4.125125885009766,
+ "step": 987
+ },
+ {
+ "epoch": 13.72695500218436,
+ "grad_norm": 0.22848057746887207,
+ "learning_rate": 0.0006,
+ "loss": 4.153496742248535,
+ "step": 988
+ },
+ {
+ "epoch": 13.740934906072521,
+ "grad_norm": 0.2250450700521469,
+ "learning_rate": 0.0006,
+ "loss": 4.149165630340576,
+ "step": 989
+ },
+ {
+ "epoch": 13.754914809960681,
+ "grad_norm": 0.21443772315979004,
+ "learning_rate": 0.0006,
+ "loss": 4.1528825759887695,
+ "step": 990
+ },
+ {
+ "epoch": 13.768894713848843,
+ "grad_norm": 0.21927927434444427,
+ "learning_rate": 0.0006,
+ "loss": 4.146831512451172,
+ "step": 991
+ },
+ {
+ "epoch": 13.782874617737003,
+ "grad_norm": 0.2413124144077301,
+ "learning_rate": 0.0006,
+ "loss": 4.136909008026123,
+ "step": 992
+ },
+ {
+ "epoch": 13.796854521625164,
+ "grad_norm": 0.2603479325771332,
+ "learning_rate": 0.0006,
+ "loss": 4.12525749206543,
+ "step": 993
+ },
+ {
+ "epoch": 13.810834425513324,
+ "grad_norm": 0.26246970891952515,
+ "learning_rate": 0.0006,
+ "loss": 4.114049434661865,
+ "step": 994
+ },
+ {
+ "epoch": 13.824814329401486,
+ "grad_norm": 0.27031877636909485,
+ "learning_rate": 0.0006,
+ "loss": 4.1646552085876465,
+ "step": 995
+ },
+ {
+ "epoch": 13.838794233289645,
+ "grad_norm": 0.2499857395887375,
+ "learning_rate": 0.0006,
+ "loss": 4.139284133911133,
+ "step": 996
+ },
+ {
+ "epoch": 13.852774137177807,
+ "grad_norm": 0.22026537358760834,
+ "learning_rate": 0.0006,
+ "loss": 4.142191410064697,
+ "step": 997
+ },
+ {
+ "epoch": 13.866754041065967,
+ "grad_norm": 0.23738551139831543,
+ "learning_rate": 0.0006,
+ "loss": 4.1422882080078125,
+ "step": 998
+ },
+ {
+ "epoch": 13.880733944954128,
+ "grad_norm": 0.2416357398033142,
+ "learning_rate": 0.0006,
+ "loss": 4.14063835144043,
+ "step": 999
+ },
+ {
+ "epoch": 13.89471384884229,
+ "grad_norm": 0.33822184801101685,
+ "learning_rate": 0.0006,
+ "loss": 4.12839412689209,
+ "step": 1000
+ },
+ {
+ "epoch": 13.90869375273045,
+ "grad_norm": 0.3409678339958191,
+ "learning_rate": 0.0006,
+ "loss": 4.145351886749268,
+ "step": 1001
+ },
+ {
+ "epoch": 13.922673656618612,
+ "grad_norm": 0.2467597872018814,
+ "learning_rate": 0.0006,
+ "loss": 4.155339241027832,
+ "step": 1002
+ },
+ {
+ "epoch": 13.936653560506771,
+ "grad_norm": 0.2314649075269699,
+ "learning_rate": 0.0006,
+ "loss": 4.130176067352295,
+ "step": 1003
+ },
+ {
+ "epoch": 13.950633464394933,
+ "grad_norm": 0.23701290786266327,
+ "learning_rate": 0.0006,
+ "loss": 4.19205379486084,
+ "step": 1004
+ },
+ {
+ "epoch": 13.964613368283093,
+ "grad_norm": 0.2466491460800171,
+ "learning_rate": 0.0006,
+ "loss": 4.118908882141113,
+ "step": 1005
+ },
+ {
+ "epoch": 13.978593272171254,
+ "grad_norm": 0.23746836185455322,
+ "learning_rate": 0.0006,
+ "loss": 4.16111946105957,
+ "step": 1006
+ },
+ {
+ "epoch": 13.992573176059414,
+ "grad_norm": 0.24497751891613007,
+ "learning_rate": 0.0006,
+ "loss": 4.148624420166016,
+ "step": 1007
+ },
+ {
+ "epoch": 14.0,
+ "grad_norm": 0.25735899806022644,
+ "learning_rate": 0.0006,
+ "loss": 4.12002420425415,
+ "step": 1008
+ },
+ {
+ "epoch": 14.0,
+ "eval_loss": 4.335351467132568,
+ "eval_runtime": 44.0523,
+ "eval_samples_per_second": 55.434,
+ "eval_steps_per_second": 3.473,
+ "step": 1008
+ },
+ {
+ "epoch": 14.013979903888162,
+ "grad_norm": 0.24570082128047943,
+ "learning_rate": 0.0006,
+ "loss": 4.1036176681518555,
+ "step": 1009
+ },
+ {
+ "epoch": 14.027959807776321,
+ "grad_norm": 0.2525855302810669,
+ "learning_rate": 0.0006,
+ "loss": 4.142077445983887,
+ "step": 1010
+ },
+ {
+ "epoch": 14.041939711664483,
+ "grad_norm": 0.2701111435890198,
+ "learning_rate": 0.0006,
+ "loss": 4.096988677978516,
+ "step": 1011
+ },
+ {
+ "epoch": 14.055919615552643,
+ "grad_norm": 0.28173309564590454,
+ "learning_rate": 0.0006,
+ "loss": 4.148448944091797,
+ "step": 1012
+ },
+ {
+ "epoch": 14.069899519440805,
+ "grad_norm": 0.2651294469833374,
+ "learning_rate": 0.0006,
+ "loss": 4.121731281280518,
+ "step": 1013
+ },
+ {
+ "epoch": 14.083879423328964,
+ "grad_norm": 0.21160121262073517,
+ "learning_rate": 0.0006,
+ "loss": 4.108980178833008,
+ "step": 1014
+ },
+ {
+ "epoch": 14.097859327217126,
+ "grad_norm": 0.24786953628063202,
+ "learning_rate": 0.0006,
+ "loss": 4.133942604064941,
+ "step": 1015
+ },
+ {
+ "epoch": 14.111839231105286,
+ "grad_norm": 0.2722747027873993,
+ "learning_rate": 0.0006,
+ "loss": 4.115242958068848,
+ "step": 1016
+ },
+ {
+ "epoch": 14.125819134993447,
+ "grad_norm": 0.273360013961792,
+ "learning_rate": 0.0006,
+ "loss": 4.059296607971191,
+ "step": 1017
+ },
+ {
+ "epoch": 14.139799038881607,
+ "grad_norm": 0.2541784942150116,
+ "learning_rate": 0.0006,
+ "loss": 4.118365287780762,
+ "step": 1018
+ },
+ {
+ "epoch": 14.153778942769769,
+ "grad_norm": 0.23806381225585938,
+ "learning_rate": 0.0006,
+ "loss": 4.102812767028809,
+ "step": 1019
+ },
+ {
+ "epoch": 14.167758846657929,
+ "grad_norm": 0.2541005313396454,
+ "learning_rate": 0.0006,
+ "loss": 4.093264579772949,
+ "step": 1020
+ },
+ {
+ "epoch": 14.18173875054609,
+ "grad_norm": 0.2619539499282837,
+ "learning_rate": 0.0006,
+ "loss": 4.114917278289795,
+ "step": 1021
+ },
+ {
+ "epoch": 14.19571865443425,
+ "grad_norm": 0.2466963529586792,
+ "learning_rate": 0.0006,
+ "loss": 4.098258972167969,
+ "step": 1022
+ },
+ {
+ "epoch": 14.209698558322412,
+ "grad_norm": 0.24341611564159393,
+ "learning_rate": 0.0006,
+ "loss": 4.109346389770508,
+ "step": 1023
+ },
+ {
+ "epoch": 14.223678462210572,
+ "grad_norm": 0.23977765440940857,
+ "learning_rate": 0.0006,
+ "loss": 4.106716156005859,
+ "step": 1024
+ },
+ {
+ "epoch": 14.237658366098733,
+ "grad_norm": 0.253528356552124,
+ "learning_rate": 0.0006,
+ "loss": 4.102226257324219,
+ "step": 1025
+ },
+ {
+ "epoch": 14.251638269986893,
+ "grad_norm": 0.26954543590545654,
+ "learning_rate": 0.0006,
+ "loss": 4.107413291931152,
+ "step": 1026
+ },
+ {
+ "epoch": 14.265618173875055,
+ "grad_norm": 0.2610514760017395,
+ "learning_rate": 0.0006,
+ "loss": 4.110824108123779,
+ "step": 1027
+ },
+ {
+ "epoch": 14.279598077763215,
+ "grad_norm": 0.2579168677330017,
+ "learning_rate": 0.0006,
+ "loss": 4.082438945770264,
+ "step": 1028
+ },
+ {
+ "epoch": 14.293577981651376,
+ "grad_norm": 0.26916536688804626,
+ "learning_rate": 0.0006,
+ "loss": 4.075734615325928,
+ "step": 1029
+ },
+ {
+ "epoch": 14.307557885539538,
+ "grad_norm": 0.2998618185520172,
+ "learning_rate": 0.0006,
+ "loss": 4.088419437408447,
+ "step": 1030
+ },
+ {
+ "epoch": 14.321537789427698,
+ "grad_norm": 0.3162737190723419,
+ "learning_rate": 0.0006,
+ "loss": 4.125833034515381,
+ "step": 1031
+ },
+ {
+ "epoch": 14.33551769331586,
+ "grad_norm": 0.318601131439209,
+ "learning_rate": 0.0006,
+ "loss": 4.077424049377441,
+ "step": 1032
+ },
+ {
+ "epoch": 14.349497597204019,
+ "grad_norm": 0.32113415002822876,
+ "learning_rate": 0.0006,
+ "loss": 4.113360404968262,
+ "step": 1033
+ },
+ {
+ "epoch": 14.36347750109218,
+ "grad_norm": 0.3150886297225952,
+ "learning_rate": 0.0006,
+ "loss": 4.100013732910156,
+ "step": 1034
+ },
+ {
+ "epoch": 14.37745740498034,
+ "grad_norm": 0.29279956221580505,
+ "learning_rate": 0.0006,
+ "loss": 4.136394500732422,
+ "step": 1035
+ },
+ {
+ "epoch": 14.391437308868502,
+ "grad_norm": 0.28532543778419495,
+ "learning_rate": 0.0006,
+ "loss": 4.138948440551758,
+ "step": 1036
+ },
+ {
+ "epoch": 14.405417212756662,
+ "grad_norm": 0.2825978398323059,
+ "learning_rate": 0.0006,
+ "loss": 4.112217903137207,
+ "step": 1037
+ },
+ {
+ "epoch": 14.419397116644824,
+ "grad_norm": 0.2891198694705963,
+ "learning_rate": 0.0006,
+ "loss": 4.102682113647461,
+ "step": 1038
+ },
+ {
+ "epoch": 14.433377020532983,
+ "grad_norm": 0.2917391061782837,
+ "learning_rate": 0.0006,
+ "loss": 4.120752811431885,
+ "step": 1039
+ },
+ {
+ "epoch": 14.447356924421145,
+ "grad_norm": 0.2589806914329529,
+ "learning_rate": 0.0006,
+ "loss": 4.130519390106201,
+ "step": 1040
+ },
+ {
+ "epoch": 14.461336828309305,
+ "grad_norm": 0.2674788534641266,
+ "learning_rate": 0.0006,
+ "loss": 4.130382537841797,
+ "step": 1041
+ },
+ {
+ "epoch": 14.475316732197467,
+ "grad_norm": 0.2820362150669098,
+ "learning_rate": 0.0006,
+ "loss": 4.13947868347168,
+ "step": 1042
+ },
+ {
+ "epoch": 14.489296636085626,
+ "grad_norm": 0.2650109529495239,
+ "learning_rate": 0.0006,
+ "loss": 4.130346775054932,
+ "step": 1043
+ },
+ {
+ "epoch": 14.503276539973788,
+ "grad_norm": 0.29137638211250305,
+ "learning_rate": 0.0006,
+ "loss": 4.055751800537109,
+ "step": 1044
+ },
+ {
+ "epoch": 14.517256443861948,
+ "grad_norm": 0.3232433497905731,
+ "learning_rate": 0.0006,
+ "loss": 4.114810943603516,
+ "step": 1045
+ },
+ {
+ "epoch": 14.53123634775011,
+ "grad_norm": 0.2724473476409912,
+ "learning_rate": 0.0006,
+ "loss": 4.088351249694824,
+ "step": 1046
+ },
+ {
+ "epoch": 14.54521625163827,
+ "grad_norm": 0.23994430899620056,
+ "learning_rate": 0.0006,
+ "loss": 4.110936164855957,
+ "step": 1047
+ },
+ {
+ "epoch": 14.55919615552643,
+ "grad_norm": 0.2422720044851303,
+ "learning_rate": 0.0006,
+ "loss": 4.132844924926758,
+ "step": 1048
+ },
+ {
+ "epoch": 14.57317605941459,
+ "grad_norm": 0.21148815751075745,
+ "learning_rate": 0.0006,
+ "loss": 4.102499961853027,
+ "step": 1049
+ },
+ {
+ "epoch": 14.587155963302752,
+ "grad_norm": 0.22221639752388,
+ "learning_rate": 0.0006,
+ "loss": 4.126241683959961,
+ "step": 1050
+ },
+ {
+ "epoch": 14.601135867190912,
+ "grad_norm": 0.2538735866546631,
+ "learning_rate": 0.0006,
+ "loss": 4.116817951202393,
+ "step": 1051
+ },
+ {
+ "epoch": 14.615115771079074,
+ "grad_norm": 0.2555900514125824,
+ "learning_rate": 0.0006,
+ "loss": 4.106309413909912,
+ "step": 1052
+ },
+ {
+ "epoch": 14.629095674967235,
+ "grad_norm": 0.24753783643245697,
+ "learning_rate": 0.0006,
+ "loss": 4.1015119552612305,
+ "step": 1053
+ },
+ {
+ "epoch": 14.643075578855395,
+ "grad_norm": 0.238885298371315,
+ "learning_rate": 0.0006,
+ "loss": 4.120419502258301,
+ "step": 1054
+ },
+ {
+ "epoch": 14.657055482743557,
+ "grad_norm": 0.22693610191345215,
+ "learning_rate": 0.0006,
+ "loss": 4.084968566894531,
+ "step": 1055
+ },
+ {
+ "epoch": 14.671035386631717,
+ "grad_norm": 0.2100025862455368,
+ "learning_rate": 0.0006,
+ "loss": 4.108001708984375,
+ "step": 1056
+ },
+ {
+ "epoch": 14.685015290519878,
+ "grad_norm": 0.20437054336071014,
+ "learning_rate": 0.0006,
+ "loss": 4.151417255401611,
+ "step": 1057
+ },
+ {
+ "epoch": 14.698995194408038,
+ "grad_norm": 0.1926720291376114,
+ "learning_rate": 0.0006,
+ "loss": 4.091334342956543,
+ "step": 1058
+ },
+ {
+ "epoch": 14.7129750982962,
+ "grad_norm": 0.2120140641927719,
+ "learning_rate": 0.0006,
+ "loss": 4.111706256866455,
+ "step": 1059
+ },
+ {
+ "epoch": 14.72695500218436,
+ "grad_norm": 0.22877076268196106,
+ "learning_rate": 0.0006,
+ "loss": 4.123166084289551,
+ "step": 1060
+ },
+ {
+ "epoch": 14.740934906072521,
+ "grad_norm": 0.22149473428726196,
+ "learning_rate": 0.0006,
+ "loss": 4.099740028381348,
+ "step": 1061
+ },
+ {
+ "epoch": 14.754914809960681,
+ "grad_norm": 0.2351604402065277,
+ "learning_rate": 0.0006,
+ "loss": 4.066174507141113,
+ "step": 1062
+ },
+ {
+ "epoch": 14.768894713848843,
+ "grad_norm": 0.22895802557468414,
+ "learning_rate": 0.0006,
+ "loss": 4.101897239685059,
+ "step": 1063
+ },
+ {
+ "epoch": 14.782874617737003,
+ "grad_norm": 0.22050750255584717,
+ "learning_rate": 0.0006,
+ "loss": 4.122953414916992,
+ "step": 1064
+ },
+ {
+ "epoch": 14.796854521625164,
+ "grad_norm": 0.23255324363708496,
+ "learning_rate": 0.0006,
+ "loss": 4.11297607421875,
+ "step": 1065
+ },
+ {
+ "epoch": 14.810834425513324,
+ "grad_norm": 0.24522703886032104,
+ "learning_rate": 0.0006,
+ "loss": 4.131030082702637,
+ "step": 1066
+ },
+ {
+ "epoch": 14.824814329401486,
+ "grad_norm": 0.2492702752351761,
+ "learning_rate": 0.0006,
+ "loss": 4.076324939727783,
+ "step": 1067
+ },
+ {
+ "epoch": 14.838794233289645,
+ "grad_norm": 0.24410948157310486,
+ "learning_rate": 0.0006,
+ "loss": 4.109020709991455,
+ "step": 1068
+ },
+ {
+ "epoch": 14.852774137177807,
+ "grad_norm": 0.2463168203830719,
+ "learning_rate": 0.0006,
+ "loss": 4.135679244995117,
+ "step": 1069
+ },
+ {
+ "epoch": 14.866754041065967,
+ "grad_norm": 0.2563146650791168,
+ "learning_rate": 0.0006,
+ "loss": 4.0958027839660645,
+ "step": 1070
+ },
+ {
+ "epoch": 14.880733944954128,
+ "grad_norm": 0.261167049407959,
+ "learning_rate": 0.0006,
+ "loss": 4.114803314208984,
+ "step": 1071
+ },
+ {
+ "epoch": 14.89471384884229,
+ "grad_norm": 0.2593795955181122,
+ "learning_rate": 0.0006,
+ "loss": 4.1210618019104,
+ "step": 1072
+ },
+ {
+ "epoch": 14.90869375273045,
+ "grad_norm": 0.27184173464775085,
+ "learning_rate": 0.0006,
+ "loss": 4.095145225524902,
+ "step": 1073
+ },
+ {
+ "epoch": 14.922673656618612,
+ "grad_norm": 0.25289732217788696,
+ "learning_rate": 0.0006,
+ "loss": 4.107388973236084,
+ "step": 1074
+ },
+ {
+ "epoch": 14.936653560506771,
+ "grad_norm": 0.2176840454339981,
+ "learning_rate": 0.0006,
+ "loss": 4.105966567993164,
+ "step": 1075
+ },
+ {
+ "epoch": 14.950633464394933,
+ "grad_norm": 0.20930173993110657,
+ "learning_rate": 0.0006,
+ "loss": 4.126853942871094,
+ "step": 1076
+ },
+ {
+ "epoch": 14.964613368283093,
+ "grad_norm": 0.20850051939487457,
+ "learning_rate": 0.0006,
+ "loss": 4.074934959411621,
+ "step": 1077
+ },
+ {
+ "epoch": 14.978593272171254,
+ "grad_norm": 0.21987544000148773,
+ "learning_rate": 0.0006,
+ "loss": 4.123321533203125,
+ "step": 1078
+ },
+ {
+ "epoch": 14.992573176059414,
+ "grad_norm": 0.23821689188480377,
+ "learning_rate": 0.0006,
+ "loss": 4.082647323608398,
+ "step": 1079
+ },
+ {
+ "epoch": 15.0,
+ "grad_norm": 0.2590881288051605,
+ "learning_rate": 0.0006,
+ "loss": 4.113482475280762,
+ "step": 1080
+ },
+ {
+ "epoch": 15.0,
+ "eval_loss": 4.286936283111572,
+ "eval_runtime": 44.2665,
+ "eval_samples_per_second": 55.166,
+ "eval_steps_per_second": 3.456,
+ "step": 1080
+ },
+ {
+ "epoch": 15.013979903888162,
+ "grad_norm": 0.27885961532592773,
+ "learning_rate": 0.0006,
+ "loss": 4.0825958251953125,
+ "step": 1081
+ },
+ {
+ "epoch": 15.027959807776321,
+ "grad_norm": 0.2751246690750122,
+ "learning_rate": 0.0006,
+ "loss": 4.049782752990723,
+ "step": 1082
+ },
+ {
+ "epoch": 15.041939711664483,
+ "grad_norm": 0.25238561630249023,
+ "learning_rate": 0.0006,
+ "loss": 4.067366600036621,
+ "step": 1083
+ },
+ {
+ "epoch": 15.055919615552643,
+ "grad_norm": 0.27481040358543396,
+ "learning_rate": 0.0006,
+ "loss": 4.089946746826172,
+ "step": 1084
+ },
+ {
+ "epoch": 15.069899519440805,
+ "grad_norm": 0.2666703164577484,
+ "learning_rate": 0.0006,
+ "loss": 4.071957588195801,
+ "step": 1085
+ },
+ {
+ "epoch": 15.083879423328964,
+ "grad_norm": 0.2532065212726593,
+ "learning_rate": 0.0006,
+ "loss": 4.091561794281006,
+ "step": 1086
+ },
+ {
+ "epoch": 15.097859327217126,
+ "grad_norm": 0.23562374711036682,
+ "learning_rate": 0.0006,
+ "loss": 4.074953079223633,
+ "step": 1087
+ },
+ {
+ "epoch": 15.111839231105286,
+ "grad_norm": 0.2498065084218979,
+ "learning_rate": 0.0006,
+ "loss": 4.056004047393799,
+ "step": 1088
+ },
+ {
+ "epoch": 15.125819134993447,
+ "grad_norm": 0.257046639919281,
+ "learning_rate": 0.0006,
+ "loss": 4.044149875640869,
+ "step": 1089
+ },
+ {
+ "epoch": 15.139799038881607,
+ "grad_norm": 0.2417808622121811,
+ "learning_rate": 0.0006,
+ "loss": 4.071811676025391,
+ "step": 1090
+ },
+ {
+ "epoch": 15.153778942769769,
+ "grad_norm": 0.24742013216018677,
+ "learning_rate": 0.0006,
+ "loss": 4.081482887268066,
+ "step": 1091
+ },
+ {
+ "epoch": 15.167758846657929,
+ "grad_norm": 0.2610231637954712,
+ "learning_rate": 0.0006,
+ "loss": 4.06953763961792,
+ "step": 1092
+ },
+ {
+ "epoch": 15.18173875054609,
+ "grad_norm": 0.24688200652599335,
+ "learning_rate": 0.0006,
+ "loss": 4.079700469970703,
+ "step": 1093
+ },
+ {
+ "epoch": 15.19571865443425,
+ "grad_norm": 0.2650167942047119,
+ "learning_rate": 0.0006,
+ "loss": 4.082088947296143,
+ "step": 1094
+ },
+ {
+ "epoch": 15.209698558322412,
+ "grad_norm": 0.25913330912590027,
+ "learning_rate": 0.0006,
+ "loss": 4.081713676452637,
+ "step": 1095
+ },
+ {
+ "epoch": 15.223678462210572,
+ "grad_norm": 0.2547631561756134,
+ "learning_rate": 0.0006,
+ "loss": 4.073573112487793,
+ "step": 1096
+ },
+ {
+ "epoch": 15.237658366098733,
+ "grad_norm": 0.2732609510421753,
+ "learning_rate": 0.0006,
+ "loss": 4.10186767578125,
+ "step": 1097
+ },
+ {
+ "epoch": 15.251638269986893,
+ "grad_norm": 0.2990017533302307,
+ "learning_rate": 0.0006,
+ "loss": 4.085466384887695,
+ "step": 1098
+ },
+ {
+ "epoch": 15.265618173875055,
+ "grad_norm": 0.30252209305763245,
+ "learning_rate": 0.0006,
+ "loss": 4.077337265014648,
+ "step": 1099
+ },
+ {
+ "epoch": 15.279598077763215,
+ "grad_norm": 0.30046045780181885,
+ "learning_rate": 0.0006,
+ "loss": 4.0895891189575195,
+ "step": 1100
+ },
+ {
+ "epoch": 15.293577981651376,
+ "grad_norm": 0.2779843211174011,
+ "learning_rate": 0.0006,
+ "loss": 4.060354709625244,
+ "step": 1101
+ },
+ {
+ "epoch": 15.307557885539538,
+ "grad_norm": 0.26914986968040466,
+ "learning_rate": 0.0006,
+ "loss": 4.07314395904541,
+ "step": 1102
+ },
+ {
+ "epoch": 15.321537789427698,
+ "grad_norm": 0.24605873227119446,
+ "learning_rate": 0.0006,
+ "loss": 4.051377296447754,
+ "step": 1103
+ },
+ {
+ "epoch": 15.33551769331586,
+ "grad_norm": 0.25634095072746277,
+ "learning_rate": 0.0006,
+ "loss": 4.082427024841309,
+ "step": 1104
+ },
+ {
+ "epoch": 15.349497597204019,
+ "grad_norm": 0.2888158857822418,
+ "learning_rate": 0.0006,
+ "loss": 4.074253082275391,
+ "step": 1105
+ },
+ {
+ "epoch": 15.36347750109218,
+ "grad_norm": 0.2758261561393738,
+ "learning_rate": 0.0006,
+ "loss": 4.08344841003418,
+ "step": 1106
+ },
+ {
+ "epoch": 15.37745740498034,
+ "grad_norm": 0.26937270164489746,
+ "learning_rate": 0.0006,
+ "loss": 4.063424587249756,
+ "step": 1107
+ },
+ {
+ "epoch": 15.391437308868502,
+ "grad_norm": 0.2739955484867096,
+ "learning_rate": 0.0006,
+ "loss": 4.08005952835083,
+ "step": 1108
+ },
+ {
+ "epoch": 15.405417212756662,
+ "grad_norm": 0.2635386288166046,
+ "learning_rate": 0.0006,
+ "loss": 4.087360382080078,
+ "step": 1109
+ },
+ {
+ "epoch": 15.419397116644824,
+ "grad_norm": 0.2619768977165222,
+ "learning_rate": 0.0006,
+ "loss": 4.072653770446777,
+ "step": 1110
+ },
+ {
+ "epoch": 15.433377020532983,
+ "grad_norm": 0.24154804646968842,
+ "learning_rate": 0.0006,
+ "loss": 4.084464073181152,
+ "step": 1111
+ },
+ {
+ "epoch": 15.447356924421145,
+ "grad_norm": 0.24236027896404266,
+ "learning_rate": 0.0006,
+ "loss": 4.078777313232422,
+ "step": 1112
+ },
+ {
+ "epoch": 15.461336828309305,
+ "grad_norm": 0.24653038382530212,
+ "learning_rate": 0.0006,
+ "loss": 4.075024604797363,
+ "step": 1113
+ },
+ {
+ "epoch": 15.475316732197467,
+ "grad_norm": 0.27106523513793945,
+ "learning_rate": 0.0006,
+ "loss": 4.060937881469727,
+ "step": 1114
+ },
+ {
+ "epoch": 15.489296636085626,
+ "grad_norm": 0.25109633803367615,
+ "learning_rate": 0.0006,
+ "loss": 4.081971168518066,
+ "step": 1115
+ },
+ {
+ "epoch": 15.503276539973788,
+ "grad_norm": 0.23452287912368774,
+ "learning_rate": 0.0006,
+ "loss": 4.0762834548950195,
+ "step": 1116
+ },
+ {
+ "epoch": 15.517256443861948,
+ "grad_norm": 0.25415024161338806,
+ "learning_rate": 0.0006,
+ "loss": 4.069386959075928,
+ "step": 1117
+ },
+ {
+ "epoch": 15.53123634775011,
+ "grad_norm": 0.25448229908943176,
+ "learning_rate": 0.0006,
+ "loss": 4.075098514556885,
+ "step": 1118
+ },
+ {
+ "epoch": 15.54521625163827,
+ "grad_norm": 0.25679755210876465,
+ "learning_rate": 0.0006,
+ "loss": 4.097431182861328,
+ "step": 1119
+ },
+ {
+ "epoch": 15.55919615552643,
+ "grad_norm": 0.25973212718963623,
+ "learning_rate": 0.0006,
+ "loss": 4.058948516845703,
+ "step": 1120
+ },
+ {
+ "epoch": 15.57317605941459,
+ "grad_norm": 0.24511456489562988,
+ "learning_rate": 0.0006,
+ "loss": 4.092263698577881,
+ "step": 1121
+ },
+ {
+ "epoch": 15.587155963302752,
+ "grad_norm": 0.22949442267417908,
+ "learning_rate": 0.0006,
+ "loss": 4.0526604652404785,
+ "step": 1122
+ },
+ {
+ "epoch": 15.601135867190912,
+ "grad_norm": 0.22486285865306854,
+ "learning_rate": 0.0006,
+ "loss": 4.051939010620117,
+ "step": 1123
+ },
+ {
+ "epoch": 15.615115771079074,
+ "grad_norm": 0.22183601558208466,
+ "learning_rate": 0.0006,
+ "loss": 4.065430641174316,
+ "step": 1124
+ },
+ {
+ "epoch": 15.629095674967235,
+ "grad_norm": 0.2531328797340393,
+ "learning_rate": 0.0006,
+ "loss": 4.069165229797363,
+ "step": 1125
+ },
+ {
+ "epoch": 15.643075578855395,
+ "grad_norm": 0.24403320252895355,
+ "learning_rate": 0.0006,
+ "loss": 4.055041790008545,
+ "step": 1126
+ },
+ {
+ "epoch": 15.657055482743557,
+ "grad_norm": 0.24504756927490234,
+ "learning_rate": 0.0006,
+ "loss": 4.035850524902344,
+ "step": 1127
+ },
+ {
+ "epoch": 15.671035386631717,
+ "grad_norm": 0.23812057077884674,
+ "learning_rate": 0.0006,
+ "loss": 4.049278259277344,
+ "step": 1128
+ },
+ {
+ "epoch": 15.685015290519878,
+ "grad_norm": 0.23694153130054474,
+ "learning_rate": 0.0006,
+ "loss": 4.065816402435303,
+ "step": 1129
+ },
+ {
+ "epoch": 15.698995194408038,
+ "grad_norm": 0.23252786695957184,
+ "learning_rate": 0.0006,
+ "loss": 4.05952262878418,
+ "step": 1130
+ },
+ {
+ "epoch": 15.7129750982962,
+ "grad_norm": 0.2243805080652237,
+ "learning_rate": 0.0006,
+ "loss": 4.058291435241699,
+ "step": 1131
+ },
+ {
+ "epoch": 15.72695500218436,
+ "grad_norm": 0.2200988084077835,
+ "learning_rate": 0.0006,
+ "loss": 4.040788650512695,
+ "step": 1132
+ },
+ {
+ "epoch": 15.740934906072521,
+ "grad_norm": 0.21460631489753723,
+ "learning_rate": 0.0006,
+ "loss": 4.072552680969238,
+ "step": 1133
+ },
+ {
+ "epoch": 15.754914809960681,
+ "grad_norm": 0.2056441456079483,
+ "learning_rate": 0.0006,
+ "loss": 4.059467315673828,
+ "step": 1134
+ },
+ {
+ "epoch": 15.768894713848843,
+ "grad_norm": 0.2068045437335968,
+ "learning_rate": 0.0006,
+ "loss": 4.063803195953369,
+ "step": 1135
+ },
+ {
+ "epoch": 15.782874617737003,
+ "grad_norm": 0.21307601034641266,
+ "learning_rate": 0.0006,
+ "loss": 4.093092918395996,
+ "step": 1136
+ },
+ {
+ "epoch": 15.796854521625164,
+ "grad_norm": 0.20729634165763855,
+ "learning_rate": 0.0006,
+ "loss": 4.066030502319336,
+ "step": 1137
+ },
+ {
+ "epoch": 15.810834425513324,
+ "grad_norm": 0.2097514122724533,
+ "learning_rate": 0.0006,
+ "loss": 4.077326774597168,
+ "step": 1138
+ },
+ {
+ "epoch": 15.824814329401486,
+ "grad_norm": 0.21884000301361084,
+ "learning_rate": 0.0006,
+ "loss": 4.0595598220825195,
+ "step": 1139
+ },
+ {
+ "epoch": 15.838794233289645,
+ "grad_norm": 0.22220250964164734,
+ "learning_rate": 0.0006,
+ "loss": 4.061574459075928,
+ "step": 1140
+ },
+ {
+ "epoch": 15.852774137177807,
+ "grad_norm": 0.23189949989318848,
+ "learning_rate": 0.0006,
+ "loss": 4.0504045486450195,
+ "step": 1141
+ },
+ {
+ "epoch": 15.866754041065967,
+ "grad_norm": 0.226649671792984,
+ "learning_rate": 0.0006,
+ "loss": 4.060986518859863,
+ "step": 1142
+ },
+ {
+ "epoch": 15.880733944954128,
+ "grad_norm": 0.2456834763288498,
+ "learning_rate": 0.0006,
+ "loss": 4.038525581359863,
+ "step": 1143
+ },
+ {
+ "epoch": 15.89471384884229,
+ "grad_norm": 0.2818352282047272,
+ "learning_rate": 0.0006,
+ "loss": 4.062709331512451,
+ "step": 1144
+ },
+ {
+ "epoch": 15.90869375273045,
+ "grad_norm": 0.2850170135498047,
+ "learning_rate": 0.0006,
+ "loss": 4.0683274269104,
+ "step": 1145
+ },
+ {
+ "epoch": 15.922673656618612,
+ "grad_norm": 0.27691730856895447,
+ "learning_rate": 0.0006,
+ "loss": 4.076540470123291,
+ "step": 1146
+ },
+ {
+ "epoch": 15.936653560506771,
+ "grad_norm": 0.2685548961162567,
+ "learning_rate": 0.0006,
+ "loss": 4.048116683959961,
+ "step": 1147
+ },
+ {
+ "epoch": 15.950633464394933,
+ "grad_norm": 0.2452288419008255,
+ "learning_rate": 0.0006,
+ "loss": 4.06640625,
+ "step": 1148
+ },
+ {
+ "epoch": 15.964613368283093,
+ "grad_norm": 0.2601441740989685,
+ "learning_rate": 0.0006,
+ "loss": 4.073277473449707,
+ "step": 1149
+ },
+ {
+ "epoch": 15.978593272171254,
+ "grad_norm": 0.2748197913169861,
+ "learning_rate": 0.0006,
+ "loss": 4.0332536697387695,
+ "step": 1150
+ },
+ {
+ "epoch": 15.992573176059414,
+ "grad_norm": 0.27249959111213684,
+ "learning_rate": 0.0006,
+ "loss": 3.9952516555786133,
+ "step": 1151
+ },
+ {
+ "epoch": 16.0,
+ "grad_norm": 0.3475601375102997,
+ "learning_rate": 0.0006,
+ "loss": 4.040761947631836,
+ "step": 1152
+ },
+ {
+ "epoch": 16.0,
+ "eval_loss": 4.237997531890869,
+ "eval_runtime": 43.8692,
+ "eval_samples_per_second": 55.665,
+ "eval_steps_per_second": 3.488,
+ "step": 1152
+ },
+ {
+ "epoch": 16.01397990388816,
+ "grad_norm": 0.3365611433982849,
+ "learning_rate": 0.0006,
+ "loss": 4.031302452087402,
+ "step": 1153
+ },
+ {
+ "epoch": 16.027959807776323,
+ "grad_norm": 0.3020530641078949,
+ "learning_rate": 0.0006,
+ "loss": 4.036273956298828,
+ "step": 1154
+ },
+ {
+ "epoch": 16.041939711664483,
+ "grad_norm": 0.25277993083000183,
+ "learning_rate": 0.0006,
+ "loss": 4.007067680358887,
+ "step": 1155
+ },
+ {
+ "epoch": 16.055919615552643,
+ "grad_norm": 0.24762840569019318,
+ "learning_rate": 0.0006,
+ "loss": 4.046561241149902,
+ "step": 1156
+ },
+ {
+ "epoch": 16.069899519440803,
+ "grad_norm": 0.25236397981643677,
+ "learning_rate": 0.0006,
+ "loss": 4.061616897583008,
+ "step": 1157
+ },
+ {
+ "epoch": 16.083879423328966,
+ "grad_norm": 0.22789105772972107,
+ "learning_rate": 0.0006,
+ "loss": 4.010061740875244,
+ "step": 1158
+ },
+ {
+ "epoch": 16.097859327217126,
+ "grad_norm": 0.21866244077682495,
+ "learning_rate": 0.0006,
+ "loss": 4.0181097984313965,
+ "step": 1159
+ },
+ {
+ "epoch": 16.111839231105286,
+ "grad_norm": 0.21889029443264008,
+ "learning_rate": 0.0006,
+ "loss": 4.012239456176758,
+ "step": 1160
+ },
+ {
+ "epoch": 16.125819134993446,
+ "grad_norm": 0.23002485930919647,
+ "learning_rate": 0.0006,
+ "loss": 4.034092426300049,
+ "step": 1161
+ },
+ {
+ "epoch": 16.13979903888161,
+ "grad_norm": 0.2271798551082611,
+ "learning_rate": 0.0006,
+ "loss": 4.026222229003906,
+ "step": 1162
+ },
+ {
+ "epoch": 16.15377894276977,
+ "grad_norm": 0.238200843334198,
+ "learning_rate": 0.0006,
+ "loss": 4.044692039489746,
+ "step": 1163
+ },
+ {
+ "epoch": 16.16775884665793,
+ "grad_norm": 0.2281467169523239,
+ "learning_rate": 0.0006,
+ "loss": 4.032305717468262,
+ "step": 1164
+ },
+ {
+ "epoch": 16.18173875054609,
+ "grad_norm": 0.2213946431875229,
+ "learning_rate": 0.0006,
+ "loss": 4.048737525939941,
+ "step": 1165
+ },
+ {
+ "epoch": 16.195718654434252,
+ "grad_norm": 0.26638558506965637,
+ "learning_rate": 0.0006,
+ "loss": 4.006335258483887,
+ "step": 1166
+ },
+ {
+ "epoch": 16.209698558322412,
+ "grad_norm": 0.2780219316482544,
+ "learning_rate": 0.0006,
+ "loss": 4.049234390258789,
+ "step": 1167
+ },
+ {
+ "epoch": 16.22367846221057,
+ "grad_norm": 0.27425870299339294,
+ "learning_rate": 0.0006,
+ "loss": 4.017177104949951,
+ "step": 1168
+ },
+ {
+ "epoch": 16.23765836609873,
+ "grad_norm": 0.2596667408943176,
+ "learning_rate": 0.0006,
+ "loss": 4.022942543029785,
+ "step": 1169
+ },
+ {
+ "epoch": 16.251638269986895,
+ "grad_norm": 0.26972314715385437,
+ "learning_rate": 0.0006,
+ "loss": 4.035310745239258,
+ "step": 1170
+ },
+ {
+ "epoch": 16.265618173875055,
+ "grad_norm": 0.2677772045135498,
+ "learning_rate": 0.0006,
+ "loss": 4.0280561447143555,
+ "step": 1171
+ },
+ {
+ "epoch": 16.279598077763215,
+ "grad_norm": 0.25433358550071716,
+ "learning_rate": 0.0006,
+ "loss": 4.03616189956665,
+ "step": 1172
+ },
+ {
+ "epoch": 16.293577981651374,
+ "grad_norm": 0.2583644688129425,
+ "learning_rate": 0.0006,
+ "loss": 4.073624134063721,
+ "step": 1173
+ },
+ {
+ "epoch": 16.307557885539538,
+ "grad_norm": 0.25437524914741516,
+ "learning_rate": 0.0006,
+ "loss": 4.057926654815674,
+ "step": 1174
+ },
+ {
+ "epoch": 16.321537789427698,
+ "grad_norm": 0.2819201350212097,
+ "learning_rate": 0.0006,
+ "loss": 4.020838737487793,
+ "step": 1175
+ },
+ {
+ "epoch": 16.335517693315857,
+ "grad_norm": 0.32689282298088074,
+ "learning_rate": 0.0006,
+ "loss": 4.062448501586914,
+ "step": 1176
+ },
+ {
+ "epoch": 16.34949759720402,
+ "grad_norm": 0.33002278208732605,
+ "learning_rate": 0.0006,
+ "loss": 4.052059173583984,
+ "step": 1177
+ },
+ {
+ "epoch": 16.36347750109218,
+ "grad_norm": 0.32472696900367737,
+ "learning_rate": 0.0006,
+ "loss": 4.042375564575195,
+ "step": 1178
+ },
+ {
+ "epoch": 16.37745740498034,
+ "grad_norm": 0.35279813408851624,
+ "learning_rate": 0.0006,
+ "loss": 4.028722763061523,
+ "step": 1179
+ },
+ {
+ "epoch": 16.3914373088685,
+ "grad_norm": 0.3243204951286316,
+ "learning_rate": 0.0006,
+ "loss": 4.045693874359131,
+ "step": 1180
+ },
+ {
+ "epoch": 16.405417212756664,
+ "grad_norm": 0.32171115279197693,
+ "learning_rate": 0.0006,
+ "loss": 4.018350124359131,
+ "step": 1181
+ },
+ {
+ "epoch": 16.419397116644824,
+ "grad_norm": 0.31459906697273254,
+ "learning_rate": 0.0006,
+ "loss": 4.039547443389893,
+ "step": 1182
+ },
+ {
+ "epoch": 16.433377020532983,
+ "grad_norm": 0.35038673877716064,
+ "learning_rate": 0.0006,
+ "loss": 4.005928039550781,
+ "step": 1183
+ },
+ {
+ "epoch": 16.447356924421143,
+ "grad_norm": 0.34110963344573975,
+ "learning_rate": 0.0006,
+ "loss": 4.042272090911865,
+ "step": 1184
+ },
+ {
+ "epoch": 16.461336828309307,
+ "grad_norm": 0.33760902285575867,
+ "learning_rate": 0.0006,
+ "loss": 4.02886962890625,
+ "step": 1185
+ },
+ {
+ "epoch": 16.475316732197467,
+ "grad_norm": 0.3162464499473572,
+ "learning_rate": 0.0006,
+ "loss": 4.059924125671387,
+ "step": 1186
+ },
+ {
+ "epoch": 16.489296636085626,
+ "grad_norm": 0.2667233645915985,
+ "learning_rate": 0.0006,
+ "loss": 4.069073677062988,
+ "step": 1187
+ },
+ {
+ "epoch": 16.503276539973786,
+ "grad_norm": 0.22626568377017975,
+ "learning_rate": 0.0006,
+ "loss": 4.044912338256836,
+ "step": 1188
+ },
+ {
+ "epoch": 16.51725644386195,
+ "grad_norm": 0.203303262591362,
+ "learning_rate": 0.0006,
+ "loss": 4.025210380554199,
+ "step": 1189
+ },
+ {
+ "epoch": 16.53123634775011,
+ "grad_norm": 0.2108820080757141,
+ "learning_rate": 0.0006,
+ "loss": 4.035998821258545,
+ "step": 1190
+ },
+ {
+ "epoch": 16.54521625163827,
+ "grad_norm": 0.20451335608959198,
+ "learning_rate": 0.0006,
+ "loss": 4.043377876281738,
+ "step": 1191
+ },
+ {
+ "epoch": 16.55919615552643,
+ "grad_norm": 0.23348836600780487,
+ "learning_rate": 0.0006,
+ "loss": 4.033735275268555,
+ "step": 1192
+ },
+ {
+ "epoch": 16.573176059414592,
+ "grad_norm": 0.24438607692718506,
+ "learning_rate": 0.0006,
+ "loss": 4.071747779846191,
+ "step": 1193
+ },
+ {
+ "epoch": 16.587155963302752,
+ "grad_norm": 0.24233631789684296,
+ "learning_rate": 0.0006,
+ "loss": 4.0138702392578125,
+ "step": 1194
+ },
+ {
+ "epoch": 16.601135867190912,
+ "grad_norm": 0.21625740826129913,
+ "learning_rate": 0.0006,
+ "loss": 4.013422012329102,
+ "step": 1195
+ },
+ {
+ "epoch": 16.615115771079076,
+ "grad_norm": 0.22447720170021057,
+ "learning_rate": 0.0006,
+ "loss": 4.056326866149902,
+ "step": 1196
+ },
+ {
+ "epoch": 16.629095674967235,
+ "grad_norm": 0.21899616718292236,
+ "learning_rate": 0.0006,
+ "loss": 4.006134033203125,
+ "step": 1197
+ },
+ {
+ "epoch": 16.643075578855395,
+ "grad_norm": 0.191362664103508,
+ "learning_rate": 0.0006,
+ "loss": 4.036748886108398,
+ "step": 1198
+ },
+ {
+ "epoch": 16.657055482743555,
+ "grad_norm": 0.20203463733196259,
+ "learning_rate": 0.0006,
+ "loss": 4.006264686584473,
+ "step": 1199
+ },
+ {
+ "epoch": 16.67103538663172,
+ "grad_norm": 0.20209139585494995,
+ "learning_rate": 0.0006,
+ "loss": 4.059018135070801,
+ "step": 1200
+ },
+ {
+ "epoch": 16.68501529051988,
+ "grad_norm": 0.20811820030212402,
+ "learning_rate": 0.0006,
+ "loss": 4.054325103759766,
+ "step": 1201
+ },
+ {
+ "epoch": 16.698995194408038,
+ "grad_norm": 0.22448928654193878,
+ "learning_rate": 0.0006,
+ "loss": 3.996121406555176,
+ "step": 1202
+ },
+ {
+ "epoch": 16.712975098296198,
+ "grad_norm": 0.21692240238189697,
+ "learning_rate": 0.0006,
+ "loss": 4.042046546936035,
+ "step": 1203
+ },
+ {
+ "epoch": 16.72695500218436,
+ "grad_norm": 0.20688563585281372,
+ "learning_rate": 0.0006,
+ "loss": 4.002251625061035,
+ "step": 1204
+ },
+ {
+ "epoch": 16.74093490607252,
+ "grad_norm": 0.1835535764694214,
+ "learning_rate": 0.0006,
+ "loss": 4.02545166015625,
+ "step": 1205
+ },
+ {
+ "epoch": 16.75491480996068,
+ "grad_norm": 0.20532558858394623,
+ "learning_rate": 0.0006,
+ "loss": 4.039333343505859,
+ "step": 1206
+ },
+ {
+ "epoch": 16.76889471384884,
+ "grad_norm": 0.2214215099811554,
+ "learning_rate": 0.0006,
+ "loss": 4.037858486175537,
+ "step": 1207
+ },
+ {
+ "epoch": 16.782874617737004,
+ "grad_norm": 0.24926038086414337,
+ "learning_rate": 0.0006,
+ "loss": 4.024799346923828,
+ "step": 1208
+ },
+ {
+ "epoch": 16.796854521625164,
+ "grad_norm": 0.26057952642440796,
+ "learning_rate": 0.0006,
+ "loss": 4.042788505554199,
+ "step": 1209
+ },
+ {
+ "epoch": 16.810834425513324,
+ "grad_norm": 0.2501208782196045,
+ "learning_rate": 0.0006,
+ "loss": 4.051809310913086,
+ "step": 1210
+ },
+ {
+ "epoch": 16.824814329401484,
+ "grad_norm": 0.21760012209415436,
+ "learning_rate": 0.0006,
+ "loss": 4.063589096069336,
+ "step": 1211
+ },
+ {
+ "epoch": 16.838794233289647,
+ "grad_norm": 0.2243622988462448,
+ "learning_rate": 0.0006,
+ "loss": 4.008829593658447,
+ "step": 1212
+ },
+ {
+ "epoch": 16.852774137177807,
+ "grad_norm": 0.2399163395166397,
+ "learning_rate": 0.0006,
+ "loss": 4.013262748718262,
+ "step": 1213
+ },
+ {
+ "epoch": 16.866754041065967,
+ "grad_norm": 0.23187831044197083,
+ "learning_rate": 0.0006,
+ "loss": 4.023053169250488,
+ "step": 1214
+ },
+ {
+ "epoch": 16.88073394495413,
+ "grad_norm": 0.23723892867565155,
+ "learning_rate": 0.0006,
+ "loss": 3.991321563720703,
+ "step": 1215
+ },
+ {
+ "epoch": 16.89471384884229,
+ "grad_norm": 0.21766342222690582,
+ "learning_rate": 0.0006,
+ "loss": 4.0250773429870605,
+ "step": 1216
+ },
+ {
+ "epoch": 16.90869375273045,
+ "grad_norm": 0.20715023577213287,
+ "learning_rate": 0.0006,
+ "loss": 4.063642978668213,
+ "step": 1217
+ },
+ {
+ "epoch": 16.92267365661861,
+ "grad_norm": 0.20165133476257324,
+ "learning_rate": 0.0006,
+ "loss": 3.9951367378234863,
+ "step": 1218
+ },
+ {
+ "epoch": 16.936653560506773,
+ "grad_norm": 0.19956178963184357,
+ "learning_rate": 0.0006,
+ "loss": 4.025641441345215,
+ "step": 1219
+ },
+ {
+ "epoch": 16.950633464394933,
+ "grad_norm": 0.2175494134426117,
+ "learning_rate": 0.0006,
+ "loss": 4.030346393585205,
+ "step": 1220
+ },
+ {
+ "epoch": 16.964613368283093,
+ "grad_norm": 0.22365593910217285,
+ "learning_rate": 0.0006,
+ "loss": 4.018105506896973,
+ "step": 1221
+ },
+ {
+ "epoch": 16.978593272171253,
+ "grad_norm": 0.21251538395881653,
+ "learning_rate": 0.0006,
+ "loss": 4.023580074310303,
+ "step": 1222
+ },
+ {
+ "epoch": 16.992573176059416,
+ "grad_norm": 0.2230125218629837,
+ "learning_rate": 0.0006,
+ "loss": 4.001980304718018,
+ "step": 1223
+ },
+ {
+ "epoch": 17.0,
+ "grad_norm": 0.24261972308158875,
+ "learning_rate": 0.0006,
+ "loss": 4.081348896026611,
+ "step": 1224
+ },
+ {
+ "epoch": 17.0,
+ "eval_loss": 4.225194931030273,
+ "eval_runtime": 44.247,
+ "eval_samples_per_second": 55.19,
+ "eval_steps_per_second": 3.458,
+ "step": 1224
+ },
+ {
+ "epoch": 17.01397990388816,
+ "grad_norm": 0.2438880205154419,
+ "learning_rate": 0.0006,
+ "loss": 4.0164794921875,
+ "step": 1225
+ },
+ {
+ "epoch": 17.027959807776323,
+ "grad_norm": 0.22459383308887482,
+ "learning_rate": 0.0006,
+ "loss": 3.991623878479004,
+ "step": 1226
+ },
+ {
+ "epoch": 17.041939711664483,
+ "grad_norm": 0.25021040439605713,
+ "learning_rate": 0.0006,
+ "loss": 4.003020286560059,
+ "step": 1227
+ },
+ {
+ "epoch": 17.055919615552643,
+ "grad_norm": 0.30358025431632996,
+ "learning_rate": 0.0006,
+ "loss": 3.980921983718872,
+ "step": 1228
+ },
+ {
+ "epoch": 17.069899519440803,
+ "grad_norm": 0.27313271164894104,
+ "learning_rate": 0.0006,
+ "loss": 3.992398977279663,
+ "step": 1229
+ },
+ {
+ "epoch": 17.083879423328966,
+ "grad_norm": 0.2293211966753006,
+ "learning_rate": 0.0006,
+ "loss": 4.02568244934082,
+ "step": 1230
+ },
+ {
+ "epoch": 17.097859327217126,
+ "grad_norm": 0.2363300621509552,
+ "learning_rate": 0.0006,
+ "loss": 3.977229356765747,
+ "step": 1231
+ },
+ {
+ "epoch": 17.111839231105286,
+ "grad_norm": 0.2809674143791199,
+ "learning_rate": 0.0006,
+ "loss": 3.9720497131347656,
+ "step": 1232
+ },
+ {
+ "epoch": 17.125819134993446,
+ "grad_norm": 0.2913855016231537,
+ "learning_rate": 0.0006,
+ "loss": 3.979529857635498,
+ "step": 1233
+ },
+ {
+ "epoch": 17.13979903888161,
+ "grad_norm": 0.2920287251472473,
+ "learning_rate": 0.0006,
+ "loss": 3.9678473472595215,
+ "step": 1234
+ },
+ {
+ "epoch": 17.15377894276977,
+ "grad_norm": 0.2521543502807617,
+ "learning_rate": 0.0006,
+ "loss": 3.9912607669830322,
+ "step": 1235
+ },
+ {
+ "epoch": 17.16775884665793,
+ "grad_norm": 0.22844268381595612,
+ "learning_rate": 0.0006,
+ "loss": 3.9898228645324707,
+ "step": 1236
+ },
+ {
+ "epoch": 17.18173875054609,
+ "grad_norm": 0.2199884057044983,
+ "learning_rate": 0.0006,
+ "loss": 4.0050740242004395,
+ "step": 1237
+ },
+ {
+ "epoch": 17.195718654434252,
+ "grad_norm": 0.23072892427444458,
+ "learning_rate": 0.0006,
+ "loss": 3.9957475662231445,
+ "step": 1238
+ },
+ {
+ "epoch": 17.209698558322412,
+ "grad_norm": 0.2034899890422821,
+ "learning_rate": 0.0006,
+ "loss": 3.9672317504882812,
+ "step": 1239
+ },
+ {
+ "epoch": 17.22367846221057,
+ "grad_norm": 0.21826180815696716,
+ "learning_rate": 0.0006,
+ "loss": 3.98543119430542,
+ "step": 1240
+ },
+ {
+ "epoch": 17.23765836609873,
+ "grad_norm": 0.21203237771987915,
+ "learning_rate": 0.0006,
+ "loss": 3.9971959590911865,
+ "step": 1241
+ },
+ {
+ "epoch": 17.251638269986895,
+ "grad_norm": 0.22139234840869904,
+ "learning_rate": 0.0006,
+ "loss": 4.017539978027344,
+ "step": 1242
+ },
+ {
+ "epoch": 17.265618173875055,
+ "grad_norm": 0.21553276479244232,
+ "learning_rate": 0.0006,
+ "loss": 3.98740553855896,
+ "step": 1243
+ },
+ {
+ "epoch": 17.279598077763215,
+ "grad_norm": 0.23259080946445465,
+ "learning_rate": 0.0006,
+ "loss": 3.9963035583496094,
+ "step": 1244
+ },
+ {
+ "epoch": 17.293577981651374,
+ "grad_norm": 0.2527932822704315,
+ "learning_rate": 0.0006,
+ "loss": 4.0202956199646,
+ "step": 1245
+ },
+ {
+ "epoch": 17.307557885539538,
+ "grad_norm": 0.28669068217277527,
+ "learning_rate": 0.0006,
+ "loss": 3.9947609901428223,
+ "step": 1246
+ },
+ {
+ "epoch": 17.321537789427698,
+ "grad_norm": 0.341602623462677,
+ "learning_rate": 0.0006,
+ "loss": 3.997032642364502,
+ "step": 1247
+ },
+ {
+ "epoch": 17.335517693315857,
+ "grad_norm": 0.3364104926586151,
+ "learning_rate": 0.0006,
+ "loss": 3.9881834983825684,
+ "step": 1248
+ },
+ {
+ "epoch": 17.34949759720402,
+ "grad_norm": 0.2979278266429901,
+ "learning_rate": 0.0006,
+ "loss": 4.045898914337158,
+ "step": 1249
+ },
+ {
+ "epoch": 17.36347750109218,
+ "grad_norm": 0.2857462465763092,
+ "learning_rate": 0.0006,
+ "loss": 4.0085272789001465,
+ "step": 1250
+ },
+ {
+ "epoch": 17.37745740498034,
+ "grad_norm": 0.2689058780670166,
+ "learning_rate": 0.0006,
+ "loss": 4.021465301513672,
+ "step": 1251
+ },
+ {
+ "epoch": 17.3914373088685,
+ "grad_norm": 0.24943363666534424,
+ "learning_rate": 0.0006,
+ "loss": 4.003451347351074,
+ "step": 1252
+ },
+ {
+ "epoch": 17.405417212756664,
+ "grad_norm": 0.2635347843170166,
+ "learning_rate": 0.0006,
+ "loss": 3.9837827682495117,
+ "step": 1253
+ },
+ {
+ "epoch": 17.419397116644824,
+ "grad_norm": 0.29126450419425964,
+ "learning_rate": 0.0006,
+ "loss": 3.9857311248779297,
+ "step": 1254
+ },
+ {
+ "epoch": 17.433377020532983,
+ "grad_norm": 0.3166918456554413,
+ "learning_rate": 0.0006,
+ "loss": 3.9842967987060547,
+ "step": 1255
+ },
+ {
+ "epoch": 17.447356924421143,
+ "grad_norm": 0.27869969606399536,
+ "learning_rate": 0.0006,
+ "loss": 4.012607574462891,
+ "step": 1256
+ },
+ {
+ "epoch": 17.461336828309307,
+ "grad_norm": 0.23719419538974762,
+ "learning_rate": 0.0006,
+ "loss": 3.981034755706787,
+ "step": 1257
+ },
+ {
+ "epoch": 17.475316732197467,
+ "grad_norm": 0.22687610983848572,
+ "learning_rate": 0.0006,
+ "loss": 4.011059761047363,
+ "step": 1258
+ },
+ {
+ "epoch": 17.489296636085626,
+ "grad_norm": 0.22034095227718353,
+ "learning_rate": 0.0006,
+ "loss": 4.015044689178467,
+ "step": 1259
+ },
+ {
+ "epoch": 17.503276539973786,
+ "grad_norm": 0.21208405494689941,
+ "learning_rate": 0.0006,
+ "loss": 4.003793716430664,
+ "step": 1260
+ },
+ {
+ "epoch": 17.51725644386195,
+ "grad_norm": 0.21759214997291565,
+ "learning_rate": 0.0006,
+ "loss": 3.978652238845825,
+ "step": 1261
+ },
+ {
+ "epoch": 17.53123634775011,
+ "grad_norm": 0.22481068968772888,
+ "learning_rate": 0.0006,
+ "loss": 4.034845352172852,
+ "step": 1262
+ },
+ {
+ "epoch": 17.54521625163827,
+ "grad_norm": 0.20376387238502502,
+ "learning_rate": 0.0006,
+ "loss": 3.990541934967041,
+ "step": 1263
+ },
+ {
+ "epoch": 17.55919615552643,
+ "grad_norm": 0.20459355413913727,
+ "learning_rate": 0.0006,
+ "loss": 4.006990432739258,
+ "step": 1264
+ },
+ {
+ "epoch": 17.573176059414592,
+ "grad_norm": 0.19306913018226624,
+ "learning_rate": 0.0006,
+ "loss": 3.993408679962158,
+ "step": 1265
+ },
+ {
+ "epoch": 17.587155963302752,
+ "grad_norm": 0.20727239549160004,
+ "learning_rate": 0.0006,
+ "loss": 3.988016128540039,
+ "step": 1266
+ },
+ {
+ "epoch": 17.601135867190912,
+ "grad_norm": 0.20213133096694946,
+ "learning_rate": 0.0006,
+ "loss": 4.0120368003845215,
+ "step": 1267
+ },
+ {
+ "epoch": 17.615115771079076,
+ "grad_norm": 0.21074117720127106,
+ "learning_rate": 0.0006,
+ "loss": 4.048871040344238,
+ "step": 1268
+ },
+ {
+ "epoch": 17.629095674967235,
+ "grad_norm": 0.2074330598115921,
+ "learning_rate": 0.0006,
+ "loss": 3.997509002685547,
+ "step": 1269
+ },
+ {
+ "epoch": 17.643075578855395,
+ "grad_norm": 0.20383669435977936,
+ "learning_rate": 0.0006,
+ "loss": 4.0028839111328125,
+ "step": 1270
+ },
+ {
+ "epoch": 17.657055482743555,
+ "grad_norm": 0.2060765027999878,
+ "learning_rate": 0.0006,
+ "loss": 3.998032331466675,
+ "step": 1271
+ },
+ {
+ "epoch": 17.67103538663172,
+ "grad_norm": 0.21851404011249542,
+ "learning_rate": 0.0006,
+ "loss": 3.9928741455078125,
+ "step": 1272
+ },
+ {
+ "epoch": 17.68501529051988,
+ "grad_norm": 0.24324250221252441,
+ "learning_rate": 0.0006,
+ "loss": 3.9896507263183594,
+ "step": 1273
+ },
+ {
+ "epoch": 17.698995194408038,
+ "grad_norm": 0.25584331154823303,
+ "learning_rate": 0.0006,
+ "loss": 4.010485649108887,
+ "step": 1274
+ },
+ {
+ "epoch": 17.712975098296198,
+ "grad_norm": 0.2490610033273697,
+ "learning_rate": 0.0006,
+ "loss": 3.9906954765319824,
+ "step": 1275
+ },
+ {
+ "epoch": 17.72695500218436,
+ "grad_norm": 0.24241414666175842,
+ "learning_rate": 0.0006,
+ "loss": 4.016420364379883,
+ "step": 1276
+ },
+ {
+ "epoch": 17.74093490607252,
+ "grad_norm": 0.2222128063440323,
+ "learning_rate": 0.0006,
+ "loss": 4.009827136993408,
+ "step": 1277
+ },
+ {
+ "epoch": 17.75491480996068,
+ "grad_norm": 0.23119516670703888,
+ "learning_rate": 0.0006,
+ "loss": 4.0034589767456055,
+ "step": 1278
+ },
+ {
+ "epoch": 17.76889471384884,
+ "grad_norm": 0.24596457183361053,
+ "learning_rate": 0.0006,
+ "loss": 4.003161907196045,
+ "step": 1279
+ },
+ {
+ "epoch": 17.782874617737004,
+ "grad_norm": 0.2607562839984894,
+ "learning_rate": 0.0006,
+ "loss": 3.9894633293151855,
+ "step": 1280
+ },
+ {
+ "epoch": 17.796854521625164,
+ "grad_norm": 0.28706878423690796,
+ "learning_rate": 0.0006,
+ "loss": 4.005712985992432,
+ "step": 1281
+ },
+ {
+ "epoch": 17.810834425513324,
+ "grad_norm": 0.27178290486335754,
+ "learning_rate": 0.0006,
+ "loss": 3.9784536361694336,
+ "step": 1282
+ },
+ {
+ "epoch": 17.824814329401484,
+ "grad_norm": 0.27962708473205566,
+ "learning_rate": 0.0006,
+ "loss": 4.012705326080322,
+ "step": 1283
+ },
+ {
+ "epoch": 17.838794233289647,
+ "grad_norm": 0.29147693514823914,
+ "learning_rate": 0.0006,
+ "loss": 4.0159783363342285,
+ "step": 1284
+ },
+ {
+ "epoch": 17.852774137177807,
+ "grad_norm": 0.2841821312904358,
+ "learning_rate": 0.0006,
+ "loss": 4.011552810668945,
+ "step": 1285
+ },
+ {
+ "epoch": 17.866754041065967,
+ "grad_norm": 0.24924969673156738,
+ "learning_rate": 0.0006,
+ "loss": 3.992421865463257,
+ "step": 1286
+ },
+ {
+ "epoch": 17.88073394495413,
+ "grad_norm": 0.24850749969482422,
+ "learning_rate": 0.0006,
+ "loss": 3.974897861480713,
+ "step": 1287
+ },
+ {
+ "epoch": 17.89471384884229,
+ "grad_norm": 0.2409554123878479,
+ "learning_rate": 0.0006,
+ "loss": 4.002941131591797,
+ "step": 1288
+ },
+ {
+ "epoch": 17.90869375273045,
+ "grad_norm": 0.2656126320362091,
+ "learning_rate": 0.0006,
+ "loss": 3.9804210662841797,
+ "step": 1289
+ },
+ {
+ "epoch": 17.92267365661861,
+ "grad_norm": 0.28210243582725525,
+ "learning_rate": 0.0006,
+ "loss": 4.007192134857178,
+ "step": 1290
+ },
+ {
+ "epoch": 17.936653560506773,
+ "grad_norm": 0.28427553176879883,
+ "learning_rate": 0.0006,
+ "loss": 3.9739556312561035,
+ "step": 1291
+ },
+ {
+ "epoch": 17.950633464394933,
+ "grad_norm": 0.28893420100212097,
+ "learning_rate": 0.0006,
+ "loss": 4.004766941070557,
+ "step": 1292
+ },
+ {
+ "epoch": 17.964613368283093,
+ "grad_norm": 0.2831471562385559,
+ "learning_rate": 0.0006,
+ "loss": 3.984936237335205,
+ "step": 1293
+ },
+ {
+ "epoch": 17.978593272171253,
+ "grad_norm": 0.2518300712108612,
+ "learning_rate": 0.0006,
+ "loss": 4.002814292907715,
+ "step": 1294
+ },
+ {
+ "epoch": 17.992573176059416,
+ "grad_norm": 0.24264675378799438,
+ "learning_rate": 0.0006,
+ "loss": 3.998900890350342,
+ "step": 1295
+ },
+ {
+ "epoch": 18.0,
+ "grad_norm": 0.24474996328353882,
+ "learning_rate": 0.0006,
+ "loss": 3.974229335784912,
+ "step": 1296
+ },
+ {
+ "epoch": 18.0,
+ "eval_loss": 4.195685863494873,
+ "eval_runtime": 44.0709,
+ "eval_samples_per_second": 55.411,
+ "eval_steps_per_second": 3.472,
+ "step": 1296
+ },
+ {
+ "epoch": 18.01397990388816,
+ "grad_norm": 0.2553016245365143,
+ "learning_rate": 0.0006,
+ "loss": 3.9522247314453125,
+ "step": 1297
+ },
+ {
+ "epoch": 18.027959807776323,
+ "grad_norm": 0.22350727021694183,
+ "learning_rate": 0.0006,
+ "loss": 3.9850122928619385,
+ "step": 1298
+ },
+ {
+ "epoch": 18.041939711664483,
+ "grad_norm": 0.23935550451278687,
+ "learning_rate": 0.0006,
+ "loss": 3.9758832454681396,
+ "step": 1299
+ },
+ {
+ "epoch": 18.055919615552643,
+ "grad_norm": 0.23868797719478607,
+ "learning_rate": 0.0006,
+ "loss": 3.9567959308624268,
+ "step": 1300
+ },
+ {
+ "epoch": 18.069899519440803,
+ "grad_norm": 0.23102357983589172,
+ "learning_rate": 0.0006,
+ "loss": 3.9399867057800293,
+ "step": 1301
+ },
+ {
+ "epoch": 18.083879423328966,
+ "grad_norm": 0.23706983029842377,
+ "learning_rate": 0.0006,
+ "loss": 3.993434190750122,
+ "step": 1302
+ },
+ {
+ "epoch": 18.097859327217126,
+ "grad_norm": 0.22207573056221008,
+ "learning_rate": 0.0006,
+ "loss": 3.993436574935913,
+ "step": 1303
+ },
+ {
+ "epoch": 18.111839231105286,
+ "grad_norm": 0.23975296318531036,
+ "learning_rate": 0.0006,
+ "loss": 3.981943368911743,
+ "step": 1304
+ },
+ {
+ "epoch": 18.125819134993446,
+ "grad_norm": 0.2520582675933838,
+ "learning_rate": 0.0006,
+ "loss": 3.965493679046631,
+ "step": 1305
+ },
+ {
+ "epoch": 18.13979903888161,
+ "grad_norm": 0.2230956256389618,
+ "learning_rate": 0.0006,
+ "loss": 3.9360928535461426,
+ "step": 1306
+ },
+ {
+ "epoch": 18.15377894276977,
+ "grad_norm": 0.22527500987052917,
+ "learning_rate": 0.0006,
+ "loss": 3.9814581871032715,
+ "step": 1307
+ },
+ {
+ "epoch": 18.16775884665793,
+ "grad_norm": 0.22389626502990723,
+ "learning_rate": 0.0006,
+ "loss": 3.961590051651001,
+ "step": 1308
+ },
+ {
+ "epoch": 18.18173875054609,
+ "grad_norm": 0.22279471158981323,
+ "learning_rate": 0.0006,
+ "loss": 3.952338695526123,
+ "step": 1309
+ },
+ {
+ "epoch": 18.195718654434252,
+ "grad_norm": 0.24635115265846252,
+ "learning_rate": 0.0006,
+ "loss": 3.9693849086761475,
+ "step": 1310
+ },
+ {
+ "epoch": 18.209698558322412,
+ "grad_norm": 0.2757279872894287,
+ "learning_rate": 0.0006,
+ "loss": 3.9956700801849365,
+ "step": 1311
+ },
+ {
+ "epoch": 18.22367846221057,
+ "grad_norm": 0.2619115710258484,
+ "learning_rate": 0.0006,
+ "loss": 3.948878765106201,
+ "step": 1312
+ },
+ {
+ "epoch": 18.23765836609873,
+ "grad_norm": 0.22853828966617584,
+ "learning_rate": 0.0006,
+ "loss": 3.9545674324035645,
+ "step": 1313
+ },
+ {
+ "epoch": 18.251638269986895,
+ "grad_norm": 0.22904761135578156,
+ "learning_rate": 0.0006,
+ "loss": 3.947535991668701,
+ "step": 1314
+ },
+ {
+ "epoch": 18.265618173875055,
+ "grad_norm": 0.23592644929885864,
+ "learning_rate": 0.0006,
+ "loss": 3.971926212310791,
+ "step": 1315
+ },
+ {
+ "epoch": 18.279598077763215,
+ "grad_norm": 0.22120243310928345,
+ "learning_rate": 0.0006,
+ "loss": 3.9471049308776855,
+ "step": 1316
+ },
+ {
+ "epoch": 18.293577981651374,
+ "grad_norm": 0.20308749377727509,
+ "learning_rate": 0.0006,
+ "loss": 3.967449188232422,
+ "step": 1317
+ },
+ {
+ "epoch": 18.307557885539538,
+ "grad_norm": 0.20013529062271118,
+ "learning_rate": 0.0006,
+ "loss": 3.966151237487793,
+ "step": 1318
+ },
+ {
+ "epoch": 18.321537789427698,
+ "grad_norm": 0.20635221898555756,
+ "learning_rate": 0.0006,
+ "loss": 3.9908885955810547,
+ "step": 1319
+ },
+ {
+ "epoch": 18.335517693315857,
+ "grad_norm": 0.2232237160205841,
+ "learning_rate": 0.0006,
+ "loss": 3.9488768577575684,
+ "step": 1320
+ },
+ {
+ "epoch": 18.34949759720402,
+ "grad_norm": 0.21916444599628448,
+ "learning_rate": 0.0006,
+ "loss": 3.973428726196289,
+ "step": 1321
+ },
+ {
+ "epoch": 18.36347750109218,
+ "grad_norm": 0.20427337288856506,
+ "learning_rate": 0.0006,
+ "loss": 3.969332695007324,
+ "step": 1322
+ },
+ {
+ "epoch": 18.37745740498034,
+ "grad_norm": 0.20138131082057953,
+ "learning_rate": 0.0006,
+ "loss": 3.9651856422424316,
+ "step": 1323
+ },
+ {
+ "epoch": 18.3914373088685,
+ "grad_norm": 0.18918880820274353,
+ "learning_rate": 0.0006,
+ "loss": 3.9772281646728516,
+ "step": 1324
+ },
+ {
+ "epoch": 18.405417212756664,
+ "grad_norm": 0.1860039383172989,
+ "learning_rate": 0.0006,
+ "loss": 3.9289052486419678,
+ "step": 1325
+ },
+ {
+ "epoch": 18.419397116644824,
+ "grad_norm": 0.19541646540164948,
+ "learning_rate": 0.0006,
+ "loss": 3.9527673721313477,
+ "step": 1326
+ },
+ {
+ "epoch": 18.433377020532983,
+ "grad_norm": 0.206914022564888,
+ "learning_rate": 0.0006,
+ "loss": 3.99316143989563,
+ "step": 1327
+ },
+ {
+ "epoch": 18.447356924421143,
+ "grad_norm": 0.209097757935524,
+ "learning_rate": 0.0006,
+ "loss": 3.978130340576172,
+ "step": 1328
+ },
+ {
+ "epoch": 18.461336828309307,
+ "grad_norm": 0.22163373231887817,
+ "learning_rate": 0.0006,
+ "loss": 3.951460361480713,
+ "step": 1329
+ },
+ {
+ "epoch": 18.475316732197467,
+ "grad_norm": 0.21446120738983154,
+ "learning_rate": 0.0006,
+ "loss": 3.963571071624756,
+ "step": 1330
+ },
+ {
+ "epoch": 18.489296636085626,
+ "grad_norm": 0.2341388761997223,
+ "learning_rate": 0.0006,
+ "loss": 4.010684013366699,
+ "step": 1331
+ },
+ {
+ "epoch": 18.503276539973786,
+ "grad_norm": 0.2433937042951584,
+ "learning_rate": 0.0006,
+ "loss": 3.987537384033203,
+ "step": 1332
+ },
+ {
+ "epoch": 18.51725644386195,
+ "grad_norm": 0.24916228652000427,
+ "learning_rate": 0.0006,
+ "loss": 3.953075647354126,
+ "step": 1333
+ },
+ {
+ "epoch": 18.53123634775011,
+ "grad_norm": 0.24542421102523804,
+ "learning_rate": 0.0006,
+ "loss": 3.9510841369628906,
+ "step": 1334
+ },
+ {
+ "epoch": 18.54521625163827,
+ "grad_norm": 0.2393690049648285,
+ "learning_rate": 0.0006,
+ "loss": 3.981747627258301,
+ "step": 1335
+ },
+ {
+ "epoch": 18.55919615552643,
+ "grad_norm": 0.22806711494922638,
+ "learning_rate": 0.0006,
+ "loss": 3.9714856147766113,
+ "step": 1336
+ },
+ {
+ "epoch": 18.573176059414592,
+ "grad_norm": 0.21948303282260895,
+ "learning_rate": 0.0006,
+ "loss": 3.9429898262023926,
+ "step": 1337
+ },
+ {
+ "epoch": 18.587155963302752,
+ "grad_norm": 0.21575778722763062,
+ "learning_rate": 0.0006,
+ "loss": 3.9639933109283447,
+ "step": 1338
+ },
+ {
+ "epoch": 18.601135867190912,
+ "grad_norm": 0.23370565474033356,
+ "learning_rate": 0.0006,
+ "loss": 3.9819254875183105,
+ "step": 1339
+ },
+ {
+ "epoch": 18.615115771079076,
+ "grad_norm": 0.2613106369972229,
+ "learning_rate": 0.0006,
+ "loss": 3.9654669761657715,
+ "step": 1340
+ },
+ {
+ "epoch": 18.629095674967235,
+ "grad_norm": 0.26682716608047485,
+ "learning_rate": 0.0006,
+ "loss": 3.9832968711853027,
+ "step": 1341
+ },
+ {
+ "epoch": 18.643075578855395,
+ "grad_norm": 0.24331490695476532,
+ "learning_rate": 0.0006,
+ "loss": 3.9926600456237793,
+ "step": 1342
+ },
+ {
+ "epoch": 18.657055482743555,
+ "grad_norm": 0.2459341287612915,
+ "learning_rate": 0.0006,
+ "loss": 3.9508986473083496,
+ "step": 1343
+ },
+ {
+ "epoch": 18.67103538663172,
+ "grad_norm": 0.26395753026008606,
+ "learning_rate": 0.0006,
+ "loss": 3.961359977722168,
+ "step": 1344
+ },
+ {
+ "epoch": 18.68501529051988,
+ "grad_norm": 0.26049068570137024,
+ "learning_rate": 0.0006,
+ "loss": 3.9763245582580566,
+ "step": 1345
+ },
+ {
+ "epoch": 18.698995194408038,
+ "grad_norm": 0.24018602073192596,
+ "learning_rate": 0.0006,
+ "loss": 3.951780319213867,
+ "step": 1346
+ },
+ {
+ "epoch": 18.712975098296198,
+ "grad_norm": 0.23886290192604065,
+ "learning_rate": 0.0006,
+ "loss": 3.9883017539978027,
+ "step": 1347
+ },
+ {
+ "epoch": 18.72695500218436,
+ "grad_norm": 0.2293774038553238,
+ "learning_rate": 0.0006,
+ "loss": 3.9852685928344727,
+ "step": 1348
+ },
+ {
+ "epoch": 18.74093490607252,
+ "grad_norm": 0.22172975540161133,
+ "learning_rate": 0.0006,
+ "loss": 3.967550277709961,
+ "step": 1349
+ },
+ {
+ "epoch": 18.75491480996068,
+ "grad_norm": 0.2170475423336029,
+ "learning_rate": 0.0006,
+ "loss": 3.9570775032043457,
+ "step": 1350
+ },
+ {
+ "epoch": 18.76889471384884,
+ "grad_norm": 0.21458806097507477,
+ "learning_rate": 0.0006,
+ "loss": 3.9461212158203125,
+ "step": 1351
+ },
+ {
+ "epoch": 18.782874617737004,
+ "grad_norm": 0.21101507544517517,
+ "learning_rate": 0.0006,
+ "loss": 3.984398365020752,
+ "step": 1352
+ },
+ {
+ "epoch": 18.796854521625164,
+ "grad_norm": 0.23480583727359772,
+ "learning_rate": 0.0006,
+ "loss": 3.950312614440918,
+ "step": 1353
+ },
+ {
+ "epoch": 18.810834425513324,
+ "grad_norm": 0.24728581309318542,
+ "learning_rate": 0.0006,
+ "loss": 3.9572393894195557,
+ "step": 1354
+ },
+ {
+ "epoch": 18.824814329401484,
+ "grad_norm": 0.26063451170921326,
+ "learning_rate": 0.0006,
+ "loss": 3.9653234481811523,
+ "step": 1355
+ },
+ {
+ "epoch": 18.838794233289647,
+ "grad_norm": 0.24679961800575256,
+ "learning_rate": 0.0006,
+ "loss": 3.9560108184814453,
+ "step": 1356
+ },
+ {
+ "epoch": 18.852774137177807,
+ "grad_norm": 0.23199526965618134,
+ "learning_rate": 0.0006,
+ "loss": 3.9948246479034424,
+ "step": 1357
+ },
+ {
+ "epoch": 18.866754041065967,
+ "grad_norm": 0.22619125247001648,
+ "learning_rate": 0.0006,
+ "loss": 3.9783573150634766,
+ "step": 1358
+ },
+ {
+ "epoch": 18.88073394495413,
+ "grad_norm": 0.25499874353408813,
+ "learning_rate": 0.0006,
+ "loss": 3.9674575328826904,
+ "step": 1359
+ },
+ {
+ "epoch": 18.89471384884229,
+ "grad_norm": 0.23961037397384644,
+ "learning_rate": 0.0006,
+ "loss": 3.969209909439087,
+ "step": 1360
+ },
+ {
+ "epoch": 18.90869375273045,
+ "grad_norm": 0.21039162576198578,
+ "learning_rate": 0.0006,
+ "loss": 3.978661060333252,
+ "step": 1361
+ },
+ {
+ "epoch": 18.92267365661861,
+ "grad_norm": 0.2297026664018631,
+ "learning_rate": 0.0006,
+ "loss": 3.9483046531677246,
+ "step": 1362
+ },
+ {
+ "epoch": 18.936653560506773,
+ "grad_norm": 0.26367098093032837,
+ "learning_rate": 0.0006,
+ "loss": 3.927133560180664,
+ "step": 1363
+ },
+ {
+ "epoch": 18.950633464394933,
+ "grad_norm": 0.26893147826194763,
+ "learning_rate": 0.0006,
+ "loss": 3.957932710647583,
+ "step": 1364
+ },
+ {
+ "epoch": 18.964613368283093,
+ "grad_norm": 0.27092233300209045,
+ "learning_rate": 0.0006,
+ "loss": 3.976621150970459,
+ "step": 1365
+ },
+ {
+ "epoch": 18.978593272171253,
+ "grad_norm": 0.2672635018825531,
+ "learning_rate": 0.0006,
+ "loss": 3.9577765464782715,
+ "step": 1366
+ },
+ {
+ "epoch": 18.992573176059416,
+ "grad_norm": 0.2721385359764099,
+ "learning_rate": 0.0006,
+ "loss": 3.986100196838379,
+ "step": 1367
+ },
+ {
+ "epoch": 19.0,
+ "grad_norm": 0.27648621797561646,
+ "learning_rate": 0.0006,
+ "loss": 3.9942402839660645,
+ "step": 1368
+ },
+ {
+ "epoch": 19.0,
+ "eval_loss": 4.180216312408447,
+ "eval_runtime": 44.0079,
+ "eval_samples_per_second": 55.49,
+ "eval_steps_per_second": 3.477,
+ "step": 1368
+ },
+ {
+ "epoch": 19.01397990388816,
+ "grad_norm": 0.2563098073005676,
+ "learning_rate": 0.0006,
+ "loss": 3.9267354011535645,
+ "step": 1369
+ },
+ {
+ "epoch": 19.027959807776323,
+ "grad_norm": 0.2531425952911377,
+ "learning_rate": 0.0006,
+ "loss": 3.9273324012756348,
+ "step": 1370
+ },
+ {
+ "epoch": 19.041939711664483,
+ "grad_norm": 0.27485427260398865,
+ "learning_rate": 0.0006,
+ "loss": 3.9542183876037598,
+ "step": 1371
+ },
+ {
+ "epoch": 19.055919615552643,
+ "grad_norm": 0.27509891986846924,
+ "learning_rate": 0.0006,
+ "loss": 3.921940326690674,
+ "step": 1372
+ },
+ {
+ "epoch": 19.069899519440803,
+ "grad_norm": 0.28154096007347107,
+ "learning_rate": 0.0006,
+ "loss": 3.926743984222412,
+ "step": 1373
+ },
+ {
+ "epoch": 19.083879423328966,
+ "grad_norm": 0.2749912738800049,
+ "learning_rate": 0.0006,
+ "loss": 3.9257748126983643,
+ "step": 1374
+ },
+ {
+ "epoch": 19.097859327217126,
+ "grad_norm": 0.26168501377105713,
+ "learning_rate": 0.0006,
+ "loss": 3.9403202533721924,
+ "step": 1375
+ },
+ {
+ "epoch": 19.111839231105286,
+ "grad_norm": 0.23410023748874664,
+ "learning_rate": 0.0006,
+ "loss": 3.935378313064575,
+ "step": 1376
+ },
+ {
+ "epoch": 19.125819134993446,
+ "grad_norm": 0.25790470838546753,
+ "learning_rate": 0.0006,
+ "loss": 3.946147918701172,
+ "step": 1377
+ },
+ {
+ "epoch": 19.13979903888161,
+ "grad_norm": 0.26704177260398865,
+ "learning_rate": 0.0006,
+ "loss": 3.9511594772338867,
+ "step": 1378
+ },
+ {
+ "epoch": 19.15377894276977,
+ "grad_norm": 0.2560667097568512,
+ "learning_rate": 0.0006,
+ "loss": 3.915806531906128,
+ "step": 1379
+ },
+ {
+ "epoch": 19.16775884665793,
+ "grad_norm": 0.24684149026870728,
+ "learning_rate": 0.0006,
+ "loss": 3.9162003993988037,
+ "step": 1380
+ },
+ {
+ "epoch": 19.18173875054609,
+ "grad_norm": 0.2097567766904831,
+ "learning_rate": 0.0006,
+ "loss": 3.915739059448242,
+ "step": 1381
+ },
+ {
+ "epoch": 19.195718654434252,
+ "grad_norm": 0.21646849811077118,
+ "learning_rate": 0.0006,
+ "loss": 3.9097084999084473,
+ "step": 1382
+ },
+ {
+ "epoch": 19.209698558322412,
+ "grad_norm": 0.20626980066299438,
+ "learning_rate": 0.0006,
+ "loss": 3.9541783332824707,
+ "step": 1383
+ },
+ {
+ "epoch": 19.22367846221057,
+ "grad_norm": 0.23362718522548676,
+ "learning_rate": 0.0006,
+ "loss": 3.950096845626831,
+ "step": 1384
+ },
+ {
+ "epoch": 19.23765836609873,
+ "grad_norm": 0.25402209162712097,
+ "learning_rate": 0.0006,
+ "loss": 3.927671432495117,
+ "step": 1385
+ },
+ {
+ "epoch": 19.251638269986895,
+ "grad_norm": 0.23714083433151245,
+ "learning_rate": 0.0006,
+ "loss": 3.939765453338623,
+ "step": 1386
+ },
+ {
+ "epoch": 19.265618173875055,
+ "grad_norm": 0.20895546674728394,
+ "learning_rate": 0.0006,
+ "loss": 3.9384806156158447,
+ "step": 1387
+ },
+ {
+ "epoch": 19.279598077763215,
+ "grad_norm": 0.21374300122261047,
+ "learning_rate": 0.0006,
+ "loss": 3.9523749351501465,
+ "step": 1388
+ },
+ {
+ "epoch": 19.293577981651374,
+ "grad_norm": 0.210394486784935,
+ "learning_rate": 0.0006,
+ "loss": 3.9540798664093018,
+ "step": 1389
+ },
+ {
+ "epoch": 19.307557885539538,
+ "grad_norm": 0.20646725594997406,
+ "learning_rate": 0.0006,
+ "loss": 3.9514098167419434,
+ "step": 1390
+ },
+ {
+ "epoch": 19.321537789427698,
+ "grad_norm": 0.21477538347244263,
+ "learning_rate": 0.0006,
+ "loss": 3.9369924068450928,
+ "step": 1391
+ },
+ {
+ "epoch": 19.335517693315857,
+ "grad_norm": 0.20431505143642426,
+ "learning_rate": 0.0006,
+ "loss": 3.9389796257019043,
+ "step": 1392
+ },
+ {
+ "epoch": 19.34949759720402,
+ "grad_norm": 0.19575877487659454,
+ "learning_rate": 0.0006,
+ "loss": 3.935976028442383,
+ "step": 1393
+ },
+ {
+ "epoch": 19.36347750109218,
+ "grad_norm": 0.20720405876636505,
+ "learning_rate": 0.0006,
+ "loss": 3.9670963287353516,
+ "step": 1394
+ },
+ {
+ "epoch": 19.37745740498034,
+ "grad_norm": 0.2173967957496643,
+ "learning_rate": 0.0006,
+ "loss": 3.903940439224243,
+ "step": 1395
+ },
+ {
+ "epoch": 19.3914373088685,
+ "grad_norm": 0.2180529683828354,
+ "learning_rate": 0.0006,
+ "loss": 3.8716301918029785,
+ "step": 1396
+ },
+ {
+ "epoch": 19.405417212756664,
+ "grad_norm": 0.20666591823101044,
+ "learning_rate": 0.0006,
+ "loss": 3.930936813354492,
+ "step": 1397
+ },
+ {
+ "epoch": 19.419397116644824,
+ "grad_norm": 0.20353034138679504,
+ "learning_rate": 0.0006,
+ "loss": 3.926954746246338,
+ "step": 1398
+ },
+ {
+ "epoch": 19.433377020532983,
+ "grad_norm": 0.22333289682865143,
+ "learning_rate": 0.0006,
+ "loss": 3.947504997253418,
+ "step": 1399
+ },
+ {
+ "epoch": 19.447356924421143,
+ "grad_norm": 0.21787697076797485,
+ "learning_rate": 0.0006,
+ "loss": 3.9325344562530518,
+ "step": 1400
+ },
+ {
+ "epoch": 19.461336828309307,
+ "grad_norm": 0.22805874049663544,
+ "learning_rate": 0.0006,
+ "loss": 3.9640727043151855,
+ "step": 1401
+ },
+ {
+ "epoch": 19.475316732197467,
+ "grad_norm": 0.22396457195281982,
+ "learning_rate": 0.0006,
+ "loss": 3.9537901878356934,
+ "step": 1402
+ },
+ {
+ "epoch": 19.489296636085626,
+ "grad_norm": 0.2333047240972519,
+ "learning_rate": 0.0006,
+ "loss": 3.935609817504883,
+ "step": 1403
+ },
+ {
+ "epoch": 19.503276539973786,
+ "grad_norm": 0.25063616037368774,
+ "learning_rate": 0.0006,
+ "loss": 3.9659228324890137,
+ "step": 1404
+ },
+ {
+ "epoch": 19.51725644386195,
+ "grad_norm": 0.29074087738990784,
+ "learning_rate": 0.0006,
+ "loss": 3.9552183151245117,
+ "step": 1405
+ },
+ {
+ "epoch": 19.53123634775011,
+ "grad_norm": 0.34876152873039246,
+ "learning_rate": 0.0006,
+ "loss": 3.976163387298584,
+ "step": 1406
+ },
+ {
+ "epoch": 19.54521625163827,
+ "grad_norm": 0.35026612877845764,
+ "learning_rate": 0.0006,
+ "loss": 3.961186408996582,
+ "step": 1407
+ },
+ {
+ "epoch": 19.55919615552643,
+ "grad_norm": 0.3199564218521118,
+ "learning_rate": 0.0006,
+ "loss": 3.9366297721862793,
+ "step": 1408
+ },
+ {
+ "epoch": 19.573176059414592,
+ "grad_norm": 0.2976185977458954,
+ "learning_rate": 0.0006,
+ "loss": 3.9502010345458984,
+ "step": 1409
+ },
+ {
+ "epoch": 19.587155963302752,
+ "grad_norm": 0.2951911687850952,
+ "learning_rate": 0.0006,
+ "loss": 3.9427943229675293,
+ "step": 1410
+ },
+ {
+ "epoch": 19.601135867190912,
+ "grad_norm": 0.27918702363967896,
+ "learning_rate": 0.0006,
+ "loss": 3.963700532913208,
+ "step": 1411
+ },
+ {
+ "epoch": 19.615115771079076,
+ "grad_norm": 0.26197490096092224,
+ "learning_rate": 0.0006,
+ "loss": 3.9636964797973633,
+ "step": 1412
+ },
+ {
+ "epoch": 19.629095674967235,
+ "grad_norm": 0.24242281913757324,
+ "learning_rate": 0.0006,
+ "loss": 3.961815595626831,
+ "step": 1413
+ },
+ {
+ "epoch": 19.643075578855395,
+ "grad_norm": 0.2606375515460968,
+ "learning_rate": 0.0006,
+ "loss": 3.946643352508545,
+ "step": 1414
+ },
+ {
+ "epoch": 19.657055482743555,
+ "grad_norm": 0.23353353142738342,
+ "learning_rate": 0.0006,
+ "loss": 3.973155975341797,
+ "step": 1415
+ },
+ {
+ "epoch": 19.67103538663172,
+ "grad_norm": 0.22872662544250488,
+ "learning_rate": 0.0006,
+ "loss": 3.9528894424438477,
+ "step": 1416
+ },
+ {
+ "epoch": 19.68501529051988,
+ "grad_norm": 0.24678432941436768,
+ "learning_rate": 0.0006,
+ "loss": 3.9313249588012695,
+ "step": 1417
+ },
+ {
+ "epoch": 19.698995194408038,
+ "grad_norm": 0.23895515501499176,
+ "learning_rate": 0.0006,
+ "loss": 3.944082498550415,
+ "step": 1418
+ },
+ {
+ "epoch": 19.712975098296198,
+ "grad_norm": 0.23649105429649353,
+ "learning_rate": 0.0006,
+ "loss": 3.962069034576416,
+ "step": 1419
+ },
+ {
+ "epoch": 19.72695500218436,
+ "grad_norm": 0.22031061351299286,
+ "learning_rate": 0.0006,
+ "loss": 3.912972927093506,
+ "step": 1420
+ },
+ {
+ "epoch": 19.74093490607252,
+ "grad_norm": 0.20231695473194122,
+ "learning_rate": 0.0006,
+ "loss": 3.964531421661377,
+ "step": 1421
+ },
+ {
+ "epoch": 19.75491480996068,
+ "grad_norm": 0.19980913400650024,
+ "learning_rate": 0.0006,
+ "loss": 3.9452600479125977,
+ "step": 1422
+ },
+ {
+ "epoch": 19.76889471384884,
+ "grad_norm": 0.21768775582313538,
+ "learning_rate": 0.0006,
+ "loss": 3.9214301109313965,
+ "step": 1423
+ },
+ {
+ "epoch": 19.782874617737004,
+ "grad_norm": 0.21287119388580322,
+ "learning_rate": 0.0006,
+ "loss": 3.9416494369506836,
+ "step": 1424
+ },
+ {
+ "epoch": 19.796854521625164,
+ "grad_norm": 0.21399827301502228,
+ "learning_rate": 0.0006,
+ "loss": 3.971010208129883,
+ "step": 1425
+ },
+ {
+ "epoch": 19.810834425513324,
+ "grad_norm": 0.1957658976316452,
+ "learning_rate": 0.0006,
+ "loss": 3.936331272125244,
+ "step": 1426
+ },
+ {
+ "epoch": 19.824814329401484,
+ "grad_norm": 0.19341488182544708,
+ "learning_rate": 0.0006,
+ "loss": 3.9321448802948,
+ "step": 1427
+ },
+ {
+ "epoch": 19.838794233289647,
+ "grad_norm": 0.18405723571777344,
+ "learning_rate": 0.0006,
+ "loss": 3.939542293548584,
+ "step": 1428
+ },
+ {
+ "epoch": 19.852774137177807,
+ "grad_norm": 0.19672836363315582,
+ "learning_rate": 0.0006,
+ "loss": 3.939652919769287,
+ "step": 1429
+ },
+ {
+ "epoch": 19.866754041065967,
+ "grad_norm": 0.1998940259218216,
+ "learning_rate": 0.0006,
+ "loss": 3.932892322540283,
+ "step": 1430
+ },
+ {
+ "epoch": 19.88073394495413,
+ "grad_norm": 0.2307668924331665,
+ "learning_rate": 0.0006,
+ "loss": 3.9402761459350586,
+ "step": 1431
+ },
+ {
+ "epoch": 19.89471384884229,
+ "grad_norm": 0.2531987726688385,
+ "learning_rate": 0.0006,
+ "loss": 3.9153199195861816,
+ "step": 1432
+ },
+ {
+ "epoch": 19.90869375273045,
+ "grad_norm": 0.2299388349056244,
+ "learning_rate": 0.0006,
+ "loss": 3.9569954872131348,
+ "step": 1433
+ },
+ {
+ "epoch": 19.92267365661861,
+ "grad_norm": 0.2503527104854584,
+ "learning_rate": 0.0006,
+ "loss": 3.9469428062438965,
+ "step": 1434
+ },
+ {
+ "epoch": 19.936653560506773,
+ "grad_norm": 0.25390249490737915,
+ "learning_rate": 0.0006,
+ "loss": 3.941803455352783,
+ "step": 1435
+ },
+ {
+ "epoch": 19.950633464394933,
+ "grad_norm": 0.2288687825202942,
+ "learning_rate": 0.0006,
+ "loss": 3.9385883808135986,
+ "step": 1436
+ },
+ {
+ "epoch": 19.964613368283093,
+ "grad_norm": 0.2231096774339676,
+ "learning_rate": 0.0006,
+ "loss": 3.9255237579345703,
+ "step": 1437
+ },
+ {
+ "epoch": 19.978593272171253,
+ "grad_norm": 0.20729343593120575,
+ "learning_rate": 0.0006,
+ "loss": 3.9443163871765137,
+ "step": 1438
+ },
+ {
+ "epoch": 19.992573176059416,
+ "grad_norm": 0.197743758559227,
+ "learning_rate": 0.0006,
+ "loss": 3.925455093383789,
+ "step": 1439
+ },
+ {
+ "epoch": 20.0,
+ "grad_norm": 0.23943661153316498,
+ "learning_rate": 0.0006,
+ "loss": 3.9458866119384766,
+ "step": 1440
+ },
+ {
+ "epoch": 20.0,
+ "eval_loss": 4.144192218780518,
+ "eval_runtime": 44.0278,
+ "eval_samples_per_second": 55.465,
+ "eval_steps_per_second": 3.475,
+ "step": 1440
+ },
+ {
+ "epoch": 20.01397990388816,
+ "grad_norm": 0.2032143622636795,
+ "learning_rate": 0.0006,
+ "loss": 3.9151499271392822,
+ "step": 1441
+ },
+ {
+ "epoch": 20.027959807776323,
+ "grad_norm": 0.20164789259433746,
+ "learning_rate": 0.0006,
+ "loss": 3.874115228652954,
+ "step": 1442
+ },
+ {
+ "epoch": 20.041939711664483,
+ "grad_norm": 0.20796619355678558,
+ "learning_rate": 0.0006,
+ "loss": 3.9090776443481445,
+ "step": 1443
+ },
+ {
+ "epoch": 20.055919615552643,
+ "grad_norm": 0.1999918520450592,
+ "learning_rate": 0.0006,
+ "loss": 3.926563262939453,
+ "step": 1444
+ },
+ {
+ "epoch": 20.069899519440803,
+ "grad_norm": 0.204790860414505,
+ "learning_rate": 0.0006,
+ "loss": 3.9088830947875977,
+ "step": 1445
+ },
+ {
+ "epoch": 20.083879423328966,
+ "grad_norm": 0.21507175266742706,
+ "learning_rate": 0.0006,
+ "loss": 3.916504383087158,
+ "step": 1446
+ },
+ {
+ "epoch": 20.097859327217126,
+ "grad_norm": 0.2398025095462799,
+ "learning_rate": 0.0006,
+ "loss": 3.9128990173339844,
+ "step": 1447
+ },
+ {
+ "epoch": 20.111839231105286,
+ "grad_norm": 0.26037144660949707,
+ "learning_rate": 0.0006,
+ "loss": 3.9125187397003174,
+ "step": 1448
+ },
+ {
+ "epoch": 20.125819134993446,
+ "grad_norm": 0.25564828515052795,
+ "learning_rate": 0.0006,
+ "loss": 3.891867160797119,
+ "step": 1449
+ },
+ {
+ "epoch": 20.13979903888161,
+ "grad_norm": 0.2767223119735718,
+ "learning_rate": 0.0006,
+ "loss": 3.9202775955200195,
+ "step": 1450
+ },
+ {
+ "epoch": 20.15377894276977,
+ "grad_norm": 0.27696558833122253,
+ "learning_rate": 0.0006,
+ "loss": 3.9231314659118652,
+ "step": 1451
+ },
+ {
+ "epoch": 20.16775884665793,
+ "grad_norm": 0.3054044246673584,
+ "learning_rate": 0.0006,
+ "loss": 3.918138027191162,
+ "step": 1452
+ },
+ {
+ "epoch": 20.18173875054609,
+ "grad_norm": 0.3018973171710968,
+ "learning_rate": 0.0006,
+ "loss": 3.890678882598877,
+ "step": 1453
+ },
+ {
+ "epoch": 20.195718654434252,
+ "grad_norm": 0.306232750415802,
+ "learning_rate": 0.0006,
+ "loss": 3.920753002166748,
+ "step": 1454
+ },
+ {
+ "epoch": 20.209698558322412,
+ "grad_norm": 0.29593729972839355,
+ "learning_rate": 0.0006,
+ "loss": 3.9455509185791016,
+ "step": 1455
+ },
+ {
+ "epoch": 20.22367846221057,
+ "grad_norm": 0.2937646210193634,
+ "learning_rate": 0.0006,
+ "loss": 3.9227709770202637,
+ "step": 1456
+ },
+ {
+ "epoch": 20.23765836609873,
+ "grad_norm": 0.26380231976509094,
+ "learning_rate": 0.0006,
+ "loss": 3.9097609519958496,
+ "step": 1457
+ },
+ {
+ "epoch": 20.251638269986895,
+ "grad_norm": 0.24992692470550537,
+ "learning_rate": 0.0006,
+ "loss": 3.9393627643585205,
+ "step": 1458
+ },
+ {
+ "epoch": 20.265618173875055,
+ "grad_norm": 0.270219087600708,
+ "learning_rate": 0.0006,
+ "loss": 3.929330348968506,
+ "step": 1459
+ },
+ {
+ "epoch": 20.279598077763215,
+ "grad_norm": 0.2860020399093628,
+ "learning_rate": 0.0006,
+ "loss": 3.8947913646698,
+ "step": 1460
+ },
+ {
+ "epoch": 20.293577981651374,
+ "grad_norm": 0.27494579553604126,
+ "learning_rate": 0.0006,
+ "loss": 3.9105992317199707,
+ "step": 1461
+ },
+ {
+ "epoch": 20.307557885539538,
+ "grad_norm": 0.26467713713645935,
+ "learning_rate": 0.0006,
+ "loss": 3.914632797241211,
+ "step": 1462
+ },
+ {
+ "epoch": 20.321537789427698,
+ "grad_norm": 0.25747713446617126,
+ "learning_rate": 0.0006,
+ "loss": 3.919846534729004,
+ "step": 1463
+ },
+ {
+ "epoch": 20.335517693315857,
+ "grad_norm": 0.24027711153030396,
+ "learning_rate": 0.0006,
+ "loss": 3.904740810394287,
+ "step": 1464
+ },
+ {
+ "epoch": 20.34949759720402,
+ "grad_norm": 0.24682414531707764,
+ "learning_rate": 0.0006,
+ "loss": 3.9190149307250977,
+ "step": 1465
+ },
+ {
+ "epoch": 20.36347750109218,
+ "grad_norm": 0.2619759440422058,
+ "learning_rate": 0.0006,
+ "loss": 3.9488329887390137,
+ "step": 1466
+ },
+ {
+ "epoch": 20.37745740498034,
+ "grad_norm": 0.2632448971271515,
+ "learning_rate": 0.0006,
+ "loss": 3.9216647148132324,
+ "step": 1467
+ },
+ {
+ "epoch": 20.3914373088685,
+ "grad_norm": 0.27569764852523804,
+ "learning_rate": 0.0006,
+ "loss": 3.9178895950317383,
+ "step": 1468
+ },
+ {
+ "epoch": 20.405417212756664,
+ "grad_norm": 0.2611774802207947,
+ "learning_rate": 0.0006,
+ "loss": 3.933730125427246,
+ "step": 1469
+ },
+ {
+ "epoch": 20.419397116644824,
+ "grad_norm": 0.2839447557926178,
+ "learning_rate": 0.0006,
+ "loss": 3.9261364936828613,
+ "step": 1470
+ },
+ {
+ "epoch": 20.433377020532983,
+ "grad_norm": 0.29006227850914,
+ "learning_rate": 0.0006,
+ "loss": 3.9157633781433105,
+ "step": 1471
+ },
+ {
+ "epoch": 20.447356924421143,
+ "grad_norm": 0.2809498906135559,
+ "learning_rate": 0.0006,
+ "loss": 3.9211745262145996,
+ "step": 1472
+ },
+ {
+ "epoch": 20.461336828309307,
+ "grad_norm": 0.27859532833099365,
+ "learning_rate": 0.0006,
+ "loss": 3.9115967750549316,
+ "step": 1473
+ },
+ {
+ "epoch": 20.475316732197467,
+ "grad_norm": 0.29114410281181335,
+ "learning_rate": 0.0006,
+ "loss": 3.9024441242218018,
+ "step": 1474
+ },
+ {
+ "epoch": 20.489296636085626,
+ "grad_norm": 0.2686930000782013,
+ "learning_rate": 0.0006,
+ "loss": 3.9497199058532715,
+ "step": 1475
+ },
+ {
+ "epoch": 20.503276539973786,
+ "grad_norm": 0.24120540916919708,
+ "learning_rate": 0.0006,
+ "loss": 3.9218955039978027,
+ "step": 1476
+ },
+ {
+ "epoch": 20.51725644386195,
+ "grad_norm": 0.23689547181129456,
+ "learning_rate": 0.0006,
+ "loss": 3.9410176277160645,
+ "step": 1477
+ },
+ {
+ "epoch": 20.53123634775011,
+ "grad_norm": 0.26382362842559814,
+ "learning_rate": 0.0006,
+ "loss": 3.8880343437194824,
+ "step": 1478
+ },
+ {
+ "epoch": 20.54521625163827,
+ "grad_norm": 0.21628661453723907,
+ "learning_rate": 0.0006,
+ "loss": 3.892622470855713,
+ "step": 1479
+ },
+ {
+ "epoch": 20.55919615552643,
+ "grad_norm": 0.19896996021270752,
+ "learning_rate": 0.0006,
+ "loss": 3.938734769821167,
+ "step": 1480
+ },
+ {
+ "epoch": 20.573176059414592,
+ "grad_norm": 0.20232494175434113,
+ "learning_rate": 0.0006,
+ "loss": 3.9197006225585938,
+ "step": 1481
+ },
+ {
+ "epoch": 20.587155963302752,
+ "grad_norm": 0.21807828545570374,
+ "learning_rate": 0.0006,
+ "loss": 3.9195618629455566,
+ "step": 1482
+ },
+ {
+ "epoch": 20.601135867190912,
+ "grad_norm": 0.21778680384159088,
+ "learning_rate": 0.0006,
+ "loss": 3.913395404815674,
+ "step": 1483
+ },
+ {
+ "epoch": 20.615115771079076,
+ "grad_norm": 0.21015185117721558,
+ "learning_rate": 0.0006,
+ "loss": 3.8858234882354736,
+ "step": 1484
+ },
+ {
+ "epoch": 20.629095674967235,
+ "grad_norm": 0.20131368935108185,
+ "learning_rate": 0.0006,
+ "loss": 3.927213430404663,
+ "step": 1485
+ },
+ {
+ "epoch": 20.643075578855395,
+ "grad_norm": 0.20746243000030518,
+ "learning_rate": 0.0006,
+ "loss": 3.913198471069336,
+ "step": 1486
+ },
+ {
+ "epoch": 20.657055482743555,
+ "grad_norm": 0.2024548053741455,
+ "learning_rate": 0.0006,
+ "loss": 3.923048257827759,
+ "step": 1487
+ },
+ {
+ "epoch": 20.67103538663172,
+ "grad_norm": 0.19735988974571228,
+ "learning_rate": 0.0006,
+ "loss": 3.9136500358581543,
+ "step": 1488
+ },
+ {
+ "epoch": 20.68501529051988,
+ "grad_norm": 0.19781625270843506,
+ "learning_rate": 0.0006,
+ "loss": 3.883793592453003,
+ "step": 1489
+ },
+ {
+ "epoch": 20.698995194408038,
+ "grad_norm": 0.1911996454000473,
+ "learning_rate": 0.0006,
+ "loss": 3.9078567028045654,
+ "step": 1490
+ },
+ {
+ "epoch": 20.712975098296198,
+ "grad_norm": 0.1989123821258545,
+ "learning_rate": 0.0006,
+ "loss": 3.9314043521881104,
+ "step": 1491
+ },
+ {
+ "epoch": 20.72695500218436,
+ "grad_norm": 0.18839342892169952,
+ "learning_rate": 0.0006,
+ "loss": 3.8955953121185303,
+ "step": 1492
+ },
+ {
+ "epoch": 20.74093490607252,
+ "grad_norm": 0.1944834142923355,
+ "learning_rate": 0.0006,
+ "loss": 3.9272377490997314,
+ "step": 1493
+ },
+ {
+ "epoch": 20.75491480996068,
+ "grad_norm": 0.20829126238822937,
+ "learning_rate": 0.0006,
+ "loss": 3.878857374191284,
+ "step": 1494
+ },
+ {
+ "epoch": 20.76889471384884,
+ "grad_norm": 0.21438424289226532,
+ "learning_rate": 0.0006,
+ "loss": 3.9155564308166504,
+ "step": 1495
+ },
+ {
+ "epoch": 20.782874617737004,
+ "grad_norm": 0.22309324145317078,
+ "learning_rate": 0.0006,
+ "loss": 3.9281692504882812,
+ "step": 1496
+ },
+ {
+ "epoch": 20.796854521625164,
+ "grad_norm": 0.2053767591714859,
+ "learning_rate": 0.0006,
+ "loss": 3.9096317291259766,
+ "step": 1497
+ },
+ {
+ "epoch": 20.810834425513324,
+ "grad_norm": 0.20429186522960663,
+ "learning_rate": 0.0006,
+ "loss": 3.9184865951538086,
+ "step": 1498
+ },
+ {
+ "epoch": 20.824814329401484,
+ "grad_norm": 0.21983473002910614,
+ "learning_rate": 0.0006,
+ "loss": 3.9130771160125732,
+ "step": 1499
+ },
+ {
+ "epoch": 20.838794233289647,
+ "grad_norm": 0.21649539470672607,
+ "learning_rate": 0.0006,
+ "loss": 3.921581268310547,
+ "step": 1500
+ },
+ {
+ "epoch": 20.852774137177807,
+ "grad_norm": 0.19645053148269653,
+ "learning_rate": 0.0006,
+ "loss": 3.966360092163086,
+ "step": 1501
+ },
+ {
+ "epoch": 20.866754041065967,
+ "grad_norm": 0.2126782387495041,
+ "learning_rate": 0.0006,
+ "loss": 3.9004554748535156,
+ "step": 1502
+ },
+ {
+ "epoch": 20.88073394495413,
+ "grad_norm": 0.22359658777713776,
+ "learning_rate": 0.0006,
+ "loss": 3.92336368560791,
+ "step": 1503
+ },
+ {
+ "epoch": 20.89471384884229,
+ "grad_norm": 0.2334042638540268,
+ "learning_rate": 0.0006,
+ "loss": 3.9188671112060547,
+ "step": 1504
+ },
+ {
+ "epoch": 20.90869375273045,
+ "grad_norm": 0.24595916271209717,
+ "learning_rate": 0.0006,
+ "loss": 3.9348371028900146,
+ "step": 1505
+ },
+ {
+ "epoch": 20.92267365661861,
+ "grad_norm": 0.24177910387516022,
+ "learning_rate": 0.0006,
+ "loss": 3.8796424865722656,
+ "step": 1506
+ },
+ {
+ "epoch": 20.936653560506773,
+ "grad_norm": 0.24193289875984192,
+ "learning_rate": 0.0006,
+ "loss": 3.892627716064453,
+ "step": 1507
+ },
+ {
+ "epoch": 20.950633464394933,
+ "grad_norm": 0.252849280834198,
+ "learning_rate": 0.0006,
+ "loss": 3.9300179481506348,
+ "step": 1508
+ },
+ {
+ "epoch": 20.964613368283093,
+ "grad_norm": 0.24933326244354248,
+ "learning_rate": 0.0006,
+ "loss": 3.9597225189208984,
+ "step": 1509
+ },
+ {
+ "epoch": 20.978593272171253,
+ "grad_norm": 0.23850969970226288,
+ "learning_rate": 0.0006,
+ "loss": 3.9027397632598877,
+ "step": 1510
+ },
+ {
+ "epoch": 20.992573176059416,
+ "grad_norm": 0.23298311233520508,
+ "learning_rate": 0.0006,
+ "loss": 3.9024105072021484,
+ "step": 1511
+ },
+ {
+ "epoch": 21.0,
+ "grad_norm": 0.2467455416917801,
+ "learning_rate": 0.0006,
+ "loss": 3.915929079055786,
+ "step": 1512
+ },
+ {
+ "epoch": 21.0,
+ "eval_loss": 4.136331081390381,
+ "eval_runtime": 43.9468,
+ "eval_samples_per_second": 55.567,
+ "eval_steps_per_second": 3.481,
+ "step": 1512
+ },
+ {
+ "epoch": 21.01397990388816,
+ "grad_norm": 0.2195885181427002,
+ "learning_rate": 0.0006,
+ "loss": 3.873412847518921,
+ "step": 1513
+ },
+ {
+ "epoch": 21.027959807776323,
+ "grad_norm": 0.24250614643096924,
+ "learning_rate": 0.0006,
+ "loss": 3.882302761077881,
+ "step": 1514
+ },
+ {
+ "epoch": 21.041939711664483,
+ "grad_norm": 0.249113991856575,
+ "learning_rate": 0.0006,
+ "loss": 3.9112048149108887,
+ "step": 1515
+ },
+ {
+ "epoch": 21.055919615552643,
+ "grad_norm": 0.25365301966667175,
+ "learning_rate": 0.0006,
+ "loss": 3.8625712394714355,
+ "step": 1516
+ },
+ {
+ "epoch": 21.069899519440803,
+ "grad_norm": 0.2218591272830963,
+ "learning_rate": 0.0006,
+ "loss": 3.876072406768799,
+ "step": 1517
+ },
+ {
+ "epoch": 21.083879423328966,
+ "grad_norm": 0.238582581281662,
+ "learning_rate": 0.0006,
+ "loss": 3.862060546875,
+ "step": 1518
+ },
+ {
+ "epoch": 21.097859327217126,
+ "grad_norm": 0.25051242113113403,
+ "learning_rate": 0.0006,
+ "loss": 3.905315399169922,
+ "step": 1519
+ },
+ {
+ "epoch": 21.111839231105286,
+ "grad_norm": 0.2391843944787979,
+ "learning_rate": 0.0006,
+ "loss": 3.909144401550293,
+ "step": 1520
+ },
+ {
+ "epoch": 21.125819134993446,
+ "grad_norm": 0.230543315410614,
+ "learning_rate": 0.0006,
+ "loss": 3.8856799602508545,
+ "step": 1521
+ },
+ {
+ "epoch": 21.13979903888161,
+ "grad_norm": 0.24165484309196472,
+ "learning_rate": 0.0006,
+ "loss": 3.893883228302002,
+ "step": 1522
+ },
+ {
+ "epoch": 21.15377894276977,
+ "grad_norm": 0.24657143652439117,
+ "learning_rate": 0.0006,
+ "loss": 3.901129722595215,
+ "step": 1523
+ },
+ {
+ "epoch": 21.16775884665793,
+ "grad_norm": 0.2659998834133148,
+ "learning_rate": 0.0006,
+ "loss": 3.910468101501465,
+ "step": 1524
+ },
+ {
+ "epoch": 21.18173875054609,
+ "grad_norm": 0.2673095166683197,
+ "learning_rate": 0.0006,
+ "loss": 3.917454242706299,
+ "step": 1525
+ },
+ {
+ "epoch": 21.195718654434252,
+ "grad_norm": 0.22122322022914886,
+ "learning_rate": 0.0006,
+ "loss": 3.9017257690429688,
+ "step": 1526
+ },
+ {
+ "epoch": 21.209698558322412,
+ "grad_norm": 0.21882867813110352,
+ "learning_rate": 0.0006,
+ "loss": 3.8605496883392334,
+ "step": 1527
+ },
+ {
+ "epoch": 21.22367846221057,
+ "grad_norm": 0.22335563600063324,
+ "learning_rate": 0.0006,
+ "loss": 3.88120174407959,
+ "step": 1528
+ },
+ {
+ "epoch": 21.23765836609873,
+ "grad_norm": 0.22973211109638214,
+ "learning_rate": 0.0006,
+ "loss": 3.8636834621429443,
+ "step": 1529
+ },
+ {
+ "epoch": 21.251638269986895,
+ "grad_norm": 0.2410288006067276,
+ "learning_rate": 0.0006,
+ "loss": 3.8698177337646484,
+ "step": 1530
+ },
+ {
+ "epoch": 21.265618173875055,
+ "grad_norm": 0.2454768717288971,
+ "learning_rate": 0.0006,
+ "loss": 3.905341148376465,
+ "step": 1531
+ },
+ {
+ "epoch": 21.279598077763215,
+ "grad_norm": 0.2271580696105957,
+ "learning_rate": 0.0006,
+ "loss": 3.864063262939453,
+ "step": 1532
+ },
+ {
+ "epoch": 21.293577981651374,
+ "grad_norm": 0.2200947403907776,
+ "learning_rate": 0.0006,
+ "loss": 3.8889589309692383,
+ "step": 1533
+ },
+ {
+ "epoch": 21.307557885539538,
+ "grad_norm": 0.2180824875831604,
+ "learning_rate": 0.0006,
+ "loss": 3.8873472213745117,
+ "step": 1534
+ },
+ {
+ "epoch": 21.321537789427698,
+ "grad_norm": 0.214975506067276,
+ "learning_rate": 0.0006,
+ "loss": 3.882307529449463,
+ "step": 1535
+ },
+ {
+ "epoch": 21.335517693315857,
+ "grad_norm": 0.21411260962486267,
+ "learning_rate": 0.0006,
+ "loss": 3.8861560821533203,
+ "step": 1536
+ },
+ {
+ "epoch": 21.34949759720402,
+ "grad_norm": 0.22635889053344727,
+ "learning_rate": 0.0006,
+ "loss": 3.9174342155456543,
+ "step": 1537
+ },
+ {
+ "epoch": 21.36347750109218,
+ "grad_norm": 0.22700625658035278,
+ "learning_rate": 0.0006,
+ "loss": 3.890416383743286,
+ "step": 1538
+ },
+ {
+ "epoch": 21.37745740498034,
+ "grad_norm": 0.2106025069952011,
+ "learning_rate": 0.0006,
+ "loss": 3.8672406673431396,
+ "step": 1539
+ },
+ {
+ "epoch": 21.3914373088685,
+ "grad_norm": 0.22994661331176758,
+ "learning_rate": 0.0006,
+ "loss": 3.893190383911133,
+ "step": 1540
+ },
+ {
+ "epoch": 21.405417212756664,
+ "grad_norm": 0.24701105058193207,
+ "learning_rate": 0.0006,
+ "loss": 3.898078441619873,
+ "step": 1541
+ },
+ {
+ "epoch": 21.419397116644824,
+ "grad_norm": 0.26914113759994507,
+ "learning_rate": 0.0006,
+ "loss": 3.905871868133545,
+ "step": 1542
+ },
+ {
+ "epoch": 21.433377020532983,
+ "grad_norm": 0.2904224097728729,
+ "learning_rate": 0.0006,
+ "loss": 3.8919103145599365,
+ "step": 1543
+ },
+ {
+ "epoch": 21.447356924421143,
+ "grad_norm": 0.2911844551563263,
+ "learning_rate": 0.0006,
+ "loss": 3.9073286056518555,
+ "step": 1544
+ },
+ {
+ "epoch": 21.461336828309307,
+ "grad_norm": 0.2742345929145813,
+ "learning_rate": 0.0006,
+ "loss": 3.9075546264648438,
+ "step": 1545
+ },
+ {
+ "epoch": 21.475316732197467,
+ "grad_norm": 0.2341093122959137,
+ "learning_rate": 0.0006,
+ "loss": 3.9232025146484375,
+ "step": 1546
+ },
+ {
+ "epoch": 21.489296636085626,
+ "grad_norm": 0.22808541357517242,
+ "learning_rate": 0.0006,
+ "loss": 3.9168174266815186,
+ "step": 1547
+ },
+ {
+ "epoch": 21.503276539973786,
+ "grad_norm": 0.23049889504909515,
+ "learning_rate": 0.0006,
+ "loss": 3.8850595951080322,
+ "step": 1548
+ },
+ {
+ "epoch": 21.51725644386195,
+ "grad_norm": 0.21519650518894196,
+ "learning_rate": 0.0006,
+ "loss": 3.891313076019287,
+ "step": 1549
+ },
+ {
+ "epoch": 21.53123634775011,
+ "grad_norm": 0.20999883115291595,
+ "learning_rate": 0.0006,
+ "loss": 3.894439220428467,
+ "step": 1550
+ },
+ {
+ "epoch": 21.54521625163827,
+ "grad_norm": 0.19641105830669403,
+ "learning_rate": 0.0006,
+ "loss": 3.894871473312378,
+ "step": 1551
+ },
+ {
+ "epoch": 21.55919615552643,
+ "grad_norm": 0.19108249247074127,
+ "learning_rate": 0.0006,
+ "loss": 3.905968189239502,
+ "step": 1552
+ },
+ {
+ "epoch": 21.573176059414592,
+ "grad_norm": 0.20222234725952148,
+ "learning_rate": 0.0006,
+ "loss": 3.90565824508667,
+ "step": 1553
+ },
+ {
+ "epoch": 21.587155963302752,
+ "grad_norm": 0.20620177686214447,
+ "learning_rate": 0.0006,
+ "loss": 3.9103245735168457,
+ "step": 1554
+ },
+ {
+ "epoch": 21.601135867190912,
+ "grad_norm": 0.2149713784456253,
+ "learning_rate": 0.0006,
+ "loss": 3.8864927291870117,
+ "step": 1555
+ },
+ {
+ "epoch": 21.615115771079076,
+ "grad_norm": 0.2354084551334381,
+ "learning_rate": 0.0006,
+ "loss": 3.905095100402832,
+ "step": 1556
+ },
+ {
+ "epoch": 21.629095674967235,
+ "grad_norm": 0.23949941992759705,
+ "learning_rate": 0.0006,
+ "loss": 3.901803493499756,
+ "step": 1557
+ },
+ {
+ "epoch": 21.643075578855395,
+ "grad_norm": 0.22914277017116547,
+ "learning_rate": 0.0006,
+ "loss": 3.876044273376465,
+ "step": 1558
+ },
+ {
+ "epoch": 21.657055482743555,
+ "grad_norm": 0.2363225370645523,
+ "learning_rate": 0.0006,
+ "loss": 3.910841703414917,
+ "step": 1559
+ },
+ {
+ "epoch": 21.67103538663172,
+ "grad_norm": 0.2635626792907715,
+ "learning_rate": 0.0006,
+ "loss": 3.847407579421997,
+ "step": 1560
+ },
+ {
+ "epoch": 21.68501529051988,
+ "grad_norm": 0.2499786615371704,
+ "learning_rate": 0.0006,
+ "loss": 3.8667140007019043,
+ "step": 1561
+ },
+ {
+ "epoch": 21.698995194408038,
+ "grad_norm": 0.21609611809253693,
+ "learning_rate": 0.0006,
+ "loss": 3.895470142364502,
+ "step": 1562
+ },
+ {
+ "epoch": 21.712975098296198,
+ "grad_norm": 0.2466774582862854,
+ "learning_rate": 0.0006,
+ "loss": 3.8853235244750977,
+ "step": 1563
+ },
+ {
+ "epoch": 21.72695500218436,
+ "grad_norm": 0.23791883885860443,
+ "learning_rate": 0.0006,
+ "loss": 3.899418354034424,
+ "step": 1564
+ },
+ {
+ "epoch": 21.74093490607252,
+ "grad_norm": 0.2048920840024948,
+ "learning_rate": 0.0006,
+ "loss": 3.8992419242858887,
+ "step": 1565
+ },
+ {
+ "epoch": 21.75491480996068,
+ "grad_norm": 0.22266621887683868,
+ "learning_rate": 0.0006,
+ "loss": 3.885765552520752,
+ "step": 1566
+ },
+ {
+ "epoch": 21.76889471384884,
+ "grad_norm": 0.2508748769760132,
+ "learning_rate": 0.0006,
+ "loss": 3.8797037601470947,
+ "step": 1567
+ },
+ {
+ "epoch": 21.782874617737004,
+ "grad_norm": 0.27245673537254333,
+ "learning_rate": 0.0006,
+ "loss": 3.8743176460266113,
+ "step": 1568
+ },
+ {
+ "epoch": 21.796854521625164,
+ "grad_norm": 0.25503191351890564,
+ "learning_rate": 0.0006,
+ "loss": 3.868906259536743,
+ "step": 1569
+ },
+ {
+ "epoch": 21.810834425513324,
+ "grad_norm": 0.22984394431114197,
+ "learning_rate": 0.0006,
+ "loss": 3.9051015377044678,
+ "step": 1570
+ },
+ {
+ "epoch": 21.824814329401484,
+ "grad_norm": 0.2411898821592331,
+ "learning_rate": 0.0006,
+ "loss": 3.8911490440368652,
+ "step": 1571
+ },
+ {
+ "epoch": 21.838794233289647,
+ "grad_norm": 0.22609318792819977,
+ "learning_rate": 0.0006,
+ "loss": 3.894839286804199,
+ "step": 1572
+ },
+ {
+ "epoch": 21.852774137177807,
+ "grad_norm": 0.21904583275318146,
+ "learning_rate": 0.0006,
+ "loss": 3.9314537048339844,
+ "step": 1573
+ },
+ {
+ "epoch": 21.866754041065967,
+ "grad_norm": 0.21869723498821259,
+ "learning_rate": 0.0006,
+ "loss": 3.9141433238983154,
+ "step": 1574
+ },
+ {
+ "epoch": 21.88073394495413,
+ "grad_norm": 0.21682019531726837,
+ "learning_rate": 0.0006,
+ "loss": 3.867898464202881,
+ "step": 1575
+ },
+ {
+ "epoch": 21.89471384884229,
+ "grad_norm": 0.2211964726448059,
+ "learning_rate": 0.0006,
+ "loss": 3.8892226219177246,
+ "step": 1576
+ },
+ {
+ "epoch": 21.90869375273045,
+ "grad_norm": 0.2097381353378296,
+ "learning_rate": 0.0006,
+ "loss": 3.9194154739379883,
+ "step": 1577
+ },
+ {
+ "epoch": 21.92267365661861,
+ "grad_norm": 0.21229565143585205,
+ "learning_rate": 0.0006,
+ "loss": 3.924694538116455,
+ "step": 1578
+ },
+ {
+ "epoch": 21.936653560506773,
+ "grad_norm": 0.2186083346605301,
+ "learning_rate": 0.0006,
+ "loss": 3.904440402984619,
+ "step": 1579
+ },
+ {
+ "epoch": 21.950633464394933,
+ "grad_norm": 0.21112321317195892,
+ "learning_rate": 0.0006,
+ "loss": 3.905674934387207,
+ "step": 1580
+ },
+ {
+ "epoch": 21.964613368283093,
+ "grad_norm": 0.20867373049259186,
+ "learning_rate": 0.0006,
+ "loss": 3.8761563301086426,
+ "step": 1581
+ },
+ {
+ "epoch": 21.978593272171253,
+ "grad_norm": 0.21640732884407043,
+ "learning_rate": 0.0006,
+ "loss": 3.871950149536133,
+ "step": 1582
+ },
+ {
+ "epoch": 21.992573176059416,
+ "grad_norm": 0.21920442581176758,
+ "learning_rate": 0.0006,
+ "loss": 3.8853464126586914,
+ "step": 1583
+ },
+ {
+ "epoch": 22.0,
+ "grad_norm": 0.24132665991783142,
+ "learning_rate": 0.0006,
+ "loss": 3.9012184143066406,
+ "step": 1584
+ },
+ {
+ "epoch": 22.0,
+ "eval_loss": 4.108598232269287,
+ "eval_runtime": 44.0434,
+ "eval_samples_per_second": 55.445,
+ "eval_steps_per_second": 3.474,
+ "step": 1584
+ },
+ {
+ "epoch": 22.01397990388816,
+ "grad_norm": 0.21989449858665466,
+ "learning_rate": 0.0006,
+ "loss": 3.8657469749450684,
+ "step": 1585
+ },
+ {
+ "epoch": 22.027959807776323,
+ "grad_norm": 0.20416802167892456,
+ "learning_rate": 0.0006,
+ "loss": 3.8682117462158203,
+ "step": 1586
+ },
+ {
+ "epoch": 22.041939711664483,
+ "grad_norm": 0.20651975274085999,
+ "learning_rate": 0.0006,
+ "loss": 3.8501222133636475,
+ "step": 1587
+ },
+ {
+ "epoch": 22.055919615552643,
+ "grad_norm": 0.22987176477909088,
+ "learning_rate": 0.0006,
+ "loss": 3.8830955028533936,
+ "step": 1588
+ },
+ {
+ "epoch": 22.069899519440803,
+ "grad_norm": 0.23308858275413513,
+ "learning_rate": 0.0006,
+ "loss": 3.8659040927886963,
+ "step": 1589
+ },
+ {
+ "epoch": 22.083879423328966,
+ "grad_norm": 0.2144266963005066,
+ "learning_rate": 0.0006,
+ "loss": 3.8311047554016113,
+ "step": 1590
+ },
+ {
+ "epoch": 22.097859327217126,
+ "grad_norm": 0.2052636295557022,
+ "learning_rate": 0.0006,
+ "loss": 3.8700156211853027,
+ "step": 1591
+ },
+ {
+ "epoch": 22.111839231105286,
+ "grad_norm": 0.22792384028434753,
+ "learning_rate": 0.0006,
+ "loss": 3.8799097537994385,
+ "step": 1592
+ },
+ {
+ "epoch": 22.125819134993446,
+ "grad_norm": 0.2533944249153137,
+ "learning_rate": 0.0006,
+ "loss": 3.874959945678711,
+ "step": 1593
+ },
+ {
+ "epoch": 22.13979903888161,
+ "grad_norm": 0.27126258611679077,
+ "learning_rate": 0.0006,
+ "loss": 3.863774299621582,
+ "step": 1594
+ },
+ {
+ "epoch": 22.15377894276977,
+ "grad_norm": 0.2634040415287018,
+ "learning_rate": 0.0006,
+ "loss": 3.8876869678497314,
+ "step": 1595
+ },
+ {
+ "epoch": 22.16775884665793,
+ "grad_norm": 0.267987459897995,
+ "learning_rate": 0.0006,
+ "loss": 3.871776819229126,
+ "step": 1596
+ },
+ {
+ "epoch": 22.18173875054609,
+ "grad_norm": 0.2972337305545807,
+ "learning_rate": 0.0006,
+ "loss": 3.8453969955444336,
+ "step": 1597
+ },
+ {
+ "epoch": 22.195718654434252,
+ "grad_norm": 0.3012159764766693,
+ "learning_rate": 0.0006,
+ "loss": 3.8774254322052,
+ "step": 1598
+ },
+ {
+ "epoch": 22.209698558322412,
+ "grad_norm": 0.27275875210762024,
+ "learning_rate": 0.0006,
+ "loss": 3.8558950424194336,
+ "step": 1599
+ },
+ {
+ "epoch": 22.22367846221057,
+ "grad_norm": 0.2817993462085724,
+ "learning_rate": 0.0006,
+ "loss": 3.872211217880249,
+ "step": 1600
+ },
+ {
+ "epoch": 22.23765836609873,
+ "grad_norm": 0.28823208808898926,
+ "learning_rate": 0.0006,
+ "loss": 3.847616672515869,
+ "step": 1601
+ },
+ {
+ "epoch": 22.251638269986895,
+ "grad_norm": 0.2646387815475464,
+ "learning_rate": 0.0006,
+ "loss": 3.8993802070617676,
+ "step": 1602
+ },
+ {
+ "epoch": 22.265618173875055,
+ "grad_norm": 0.27664077281951904,
+ "learning_rate": 0.0006,
+ "loss": 3.858553409576416,
+ "step": 1603
+ },
+ {
+ "epoch": 22.279598077763215,
+ "grad_norm": 0.27708905935287476,
+ "learning_rate": 0.0006,
+ "loss": 3.8691039085388184,
+ "step": 1604
+ },
+ {
+ "epoch": 22.293577981651374,
+ "grad_norm": 0.3045521378517151,
+ "learning_rate": 0.0006,
+ "loss": 3.8721439838409424,
+ "step": 1605
+ },
+ {
+ "epoch": 22.307557885539538,
+ "grad_norm": 0.3481914699077606,
+ "learning_rate": 0.0006,
+ "loss": 3.894503593444824,
+ "step": 1606
+ },
+ {
+ "epoch": 22.321537789427698,
+ "grad_norm": 0.3298046588897705,
+ "learning_rate": 0.0006,
+ "loss": 3.8420844078063965,
+ "step": 1607
+ },
+ {
+ "epoch": 22.335517693315857,
+ "grad_norm": 0.24967724084854126,
+ "learning_rate": 0.0006,
+ "loss": 3.8892619609832764,
+ "step": 1608
+ },
+ {
+ "epoch": 22.34949759720402,
+ "grad_norm": 0.22645241022109985,
+ "learning_rate": 0.0006,
+ "loss": 3.873265504837036,
+ "step": 1609
+ },
+ {
+ "epoch": 22.36347750109218,
+ "grad_norm": 0.22813954949378967,
+ "learning_rate": 0.0006,
+ "loss": 3.8658013343811035,
+ "step": 1610
+ },
+ {
+ "epoch": 22.37745740498034,
+ "grad_norm": 0.23825274407863617,
+ "learning_rate": 0.0006,
+ "loss": 3.885456085205078,
+ "step": 1611
+ },
+ {
+ "epoch": 22.3914373088685,
+ "grad_norm": 0.23612336814403534,
+ "learning_rate": 0.0006,
+ "loss": 3.851841449737549,
+ "step": 1612
+ },
+ {
+ "epoch": 22.405417212756664,
+ "grad_norm": 0.23851265013217926,
+ "learning_rate": 0.0006,
+ "loss": 3.8711647987365723,
+ "step": 1613
+ },
+ {
+ "epoch": 22.419397116644824,
+ "grad_norm": 0.22977286577224731,
+ "learning_rate": 0.0006,
+ "loss": 3.848539113998413,
+ "step": 1614
+ },
+ {
+ "epoch": 22.433377020532983,
+ "grad_norm": 0.20970143377780914,
+ "learning_rate": 0.0006,
+ "loss": 3.8709521293640137,
+ "step": 1615
+ },
+ {
+ "epoch": 22.447356924421143,
+ "grad_norm": 0.20714804530143738,
+ "learning_rate": 0.0006,
+ "loss": 3.875060558319092,
+ "step": 1616
+ },
+ {
+ "epoch": 22.461336828309307,
+ "grad_norm": 0.18881355226039886,
+ "learning_rate": 0.0006,
+ "loss": 3.8744640350341797,
+ "step": 1617
+ },
+ {
+ "epoch": 22.475316732197467,
+ "grad_norm": 0.1928759068250656,
+ "learning_rate": 0.0006,
+ "loss": 3.867971420288086,
+ "step": 1618
+ },
+ {
+ "epoch": 22.489296636085626,
+ "grad_norm": 0.18614749610424042,
+ "learning_rate": 0.0006,
+ "loss": 3.8738222122192383,
+ "step": 1619
+ },
+ {
+ "epoch": 22.503276539973786,
+ "grad_norm": 0.18614931404590607,
+ "learning_rate": 0.0006,
+ "loss": 3.8470513820648193,
+ "step": 1620
+ },
+ {
+ "epoch": 22.51725644386195,
+ "grad_norm": 0.17805059254169464,
+ "learning_rate": 0.0006,
+ "loss": 3.866396903991699,
+ "step": 1621
+ },
+ {
+ "epoch": 22.53123634775011,
+ "grad_norm": 0.16941314935684204,
+ "learning_rate": 0.0006,
+ "loss": 3.856832265853882,
+ "step": 1622
+ },
+ {
+ "epoch": 22.54521625163827,
+ "grad_norm": 0.1802310198545456,
+ "learning_rate": 0.0006,
+ "loss": 3.885653018951416,
+ "step": 1623
+ },
+ {
+ "epoch": 22.55919615552643,
+ "grad_norm": 0.1854856163263321,
+ "learning_rate": 0.0006,
+ "loss": 3.8779640197753906,
+ "step": 1624
+ },
+ {
+ "epoch": 22.573176059414592,
+ "grad_norm": 0.18765869736671448,
+ "learning_rate": 0.0006,
+ "loss": 3.8449032306671143,
+ "step": 1625
+ },
+ {
+ "epoch": 22.587155963302752,
+ "grad_norm": 0.1907789707183838,
+ "learning_rate": 0.0006,
+ "loss": 3.863029718399048,
+ "step": 1626
+ },
+ {
+ "epoch": 22.601135867190912,
+ "grad_norm": 0.19285395741462708,
+ "learning_rate": 0.0006,
+ "loss": 3.880145788192749,
+ "step": 1627
+ },
+ {
+ "epoch": 22.615115771079076,
+ "grad_norm": 0.19229751825332642,
+ "learning_rate": 0.0006,
+ "loss": 3.8521225452423096,
+ "step": 1628
+ },
+ {
+ "epoch": 22.629095674967235,
+ "grad_norm": 0.191694438457489,
+ "learning_rate": 0.0006,
+ "loss": 3.899827003479004,
+ "step": 1629
+ },
+ {
+ "epoch": 22.643075578855395,
+ "grad_norm": 0.20143048465251923,
+ "learning_rate": 0.0006,
+ "loss": 3.862064838409424,
+ "step": 1630
+ },
+ {
+ "epoch": 22.657055482743555,
+ "grad_norm": 0.1959840953350067,
+ "learning_rate": 0.0006,
+ "loss": 3.8955392837524414,
+ "step": 1631
+ },
+ {
+ "epoch": 22.67103538663172,
+ "grad_norm": 0.21454884111881256,
+ "learning_rate": 0.0006,
+ "loss": 3.8503167629241943,
+ "step": 1632
+ },
+ {
+ "epoch": 22.68501529051988,
+ "grad_norm": 0.21748484671115875,
+ "learning_rate": 0.0006,
+ "loss": 3.897134304046631,
+ "step": 1633
+ },
+ {
+ "epoch": 22.698995194408038,
+ "grad_norm": 0.21204186975955963,
+ "learning_rate": 0.0006,
+ "loss": 3.9292588233947754,
+ "step": 1634
+ },
+ {
+ "epoch": 22.712975098296198,
+ "grad_norm": 0.2112748771905899,
+ "learning_rate": 0.0006,
+ "loss": 3.89798641204834,
+ "step": 1635
+ },
+ {
+ "epoch": 22.72695500218436,
+ "grad_norm": 0.188576802611351,
+ "learning_rate": 0.0006,
+ "loss": 3.85627818107605,
+ "step": 1636
+ },
+ {
+ "epoch": 22.74093490607252,
+ "grad_norm": 0.17755994200706482,
+ "learning_rate": 0.0006,
+ "loss": 3.8480074405670166,
+ "step": 1637
+ },
+ {
+ "epoch": 22.75491480996068,
+ "grad_norm": 0.18037520349025726,
+ "learning_rate": 0.0006,
+ "loss": 3.8800172805786133,
+ "step": 1638
+ },
+ {
+ "epoch": 22.76889471384884,
+ "grad_norm": 0.19205765426158905,
+ "learning_rate": 0.0006,
+ "loss": 3.8658275604248047,
+ "step": 1639
+ },
+ {
+ "epoch": 22.782874617737004,
+ "grad_norm": 0.21801964938640594,
+ "learning_rate": 0.0006,
+ "loss": 3.8999452590942383,
+ "step": 1640
+ },
+ {
+ "epoch": 22.796854521625164,
+ "grad_norm": 0.23586086928844452,
+ "learning_rate": 0.0006,
+ "loss": 3.8660664558410645,
+ "step": 1641
+ },
+ {
+ "epoch": 22.810834425513324,
+ "grad_norm": 0.22289055585861206,
+ "learning_rate": 0.0006,
+ "loss": 3.86102557182312,
+ "step": 1642
+ },
+ {
+ "epoch": 22.824814329401484,
+ "grad_norm": 0.20695745944976807,
+ "learning_rate": 0.0006,
+ "loss": 3.8336222171783447,
+ "step": 1643
+ },
+ {
+ "epoch": 22.838794233289647,
+ "grad_norm": 0.2157406210899353,
+ "learning_rate": 0.0006,
+ "loss": 3.8923370838165283,
+ "step": 1644
+ },
+ {
+ "epoch": 22.852774137177807,
+ "grad_norm": 0.2326202690601349,
+ "learning_rate": 0.0006,
+ "loss": 3.8841443061828613,
+ "step": 1645
+ },
+ {
+ "epoch": 22.866754041065967,
+ "grad_norm": 0.2228803187608719,
+ "learning_rate": 0.0006,
+ "loss": 3.8791375160217285,
+ "step": 1646
+ },
+ {
+ "epoch": 22.88073394495413,
+ "grad_norm": 0.228999063372612,
+ "learning_rate": 0.0006,
+ "loss": 3.9005866050720215,
+ "step": 1647
+ },
+ {
+ "epoch": 22.89471384884229,
+ "grad_norm": 0.19673815369606018,
+ "learning_rate": 0.0006,
+ "loss": 3.8954291343688965,
+ "step": 1648
+ },
+ {
+ "epoch": 22.90869375273045,
+ "grad_norm": 0.1862584501504898,
+ "learning_rate": 0.0006,
+ "loss": 3.8591439723968506,
+ "step": 1649
+ },
+ {
+ "epoch": 22.92267365661861,
+ "grad_norm": 0.21360838413238525,
+ "learning_rate": 0.0006,
+ "loss": 3.862949848175049,
+ "step": 1650
+ },
+ {
+ "epoch": 22.936653560506773,
+ "grad_norm": 0.22538702189922333,
+ "learning_rate": 0.0006,
+ "loss": 3.8466529846191406,
+ "step": 1651
+ },
+ {
+ "epoch": 22.950633464394933,
+ "grad_norm": 0.21452727913856506,
+ "learning_rate": 0.0006,
+ "loss": 3.890007495880127,
+ "step": 1652
+ },
+ {
+ "epoch": 22.964613368283093,
+ "grad_norm": 0.21283482015132904,
+ "learning_rate": 0.0006,
+ "loss": 3.8820929527282715,
+ "step": 1653
+ },
+ {
+ "epoch": 22.978593272171253,
+ "grad_norm": 0.2035825103521347,
+ "learning_rate": 0.0006,
+ "loss": 3.8663241863250732,
+ "step": 1654
+ },
+ {
+ "epoch": 22.992573176059416,
+ "grad_norm": 0.22431661188602448,
+ "learning_rate": 0.0006,
+ "loss": 3.88238525390625,
+ "step": 1655
+ },
+ {
+ "epoch": 23.0,
+ "grad_norm": 0.2619943916797638,
+ "learning_rate": 0.0006,
+ "loss": 3.8482635021209717,
+ "step": 1656
+ },
+ {
+ "epoch": 23.0,
+ "eval_loss": 4.099980354309082,
+ "eval_runtime": 44.1311,
+ "eval_samples_per_second": 55.335,
+ "eval_steps_per_second": 3.467,
+ "step": 1656
+ },
+ {
+ "epoch": 23.01397990388816,
+ "grad_norm": 0.24712848663330078,
+ "learning_rate": 0.0006,
+ "loss": 3.836700916290283,
+ "step": 1657
+ },
+ {
+ "epoch": 23.027959807776323,
+ "grad_norm": 0.28568798303604126,
+ "learning_rate": 0.0006,
+ "loss": 3.8523952960968018,
+ "step": 1658
+ },
+ {
+ "epoch": 23.041939711664483,
+ "grad_norm": 0.2999744415283203,
+ "learning_rate": 0.0006,
+ "loss": 3.8229494094848633,
+ "step": 1659
+ },
+ {
+ "epoch": 23.055919615552643,
+ "grad_norm": 0.32080450654029846,
+ "learning_rate": 0.0006,
+ "loss": 3.8562774658203125,
+ "step": 1660
+ },
+ {
+ "epoch": 23.069899519440803,
+ "grad_norm": 0.293468177318573,
+ "learning_rate": 0.0006,
+ "loss": 3.889139175415039,
+ "step": 1661
+ },
+ {
+ "epoch": 23.083879423328966,
+ "grad_norm": 0.2605799436569214,
+ "learning_rate": 0.0006,
+ "loss": 3.838681221008301,
+ "step": 1662
+ },
+ {
+ "epoch": 23.097859327217126,
+ "grad_norm": 0.2656237483024597,
+ "learning_rate": 0.0006,
+ "loss": 3.8603532314300537,
+ "step": 1663
+ },
+ {
+ "epoch": 23.111839231105286,
+ "grad_norm": 0.27163293957710266,
+ "learning_rate": 0.0006,
+ "loss": 3.846987009048462,
+ "step": 1664
+ },
+ {
+ "epoch": 23.125819134993446,
+ "grad_norm": 0.2719763517379761,
+ "learning_rate": 0.0006,
+ "loss": 3.805354595184326,
+ "step": 1665
+ },
+ {
+ "epoch": 23.13979903888161,
+ "grad_norm": 0.25786274671554565,
+ "learning_rate": 0.0006,
+ "loss": 3.8486907482147217,
+ "step": 1666
+ },
+ {
+ "epoch": 23.15377894276977,
+ "grad_norm": 0.2675692141056061,
+ "learning_rate": 0.0006,
+ "loss": 3.816493511199951,
+ "step": 1667
+ },
+ {
+ "epoch": 23.16775884665793,
+ "grad_norm": 0.2711698114871979,
+ "learning_rate": 0.0006,
+ "loss": 3.851863384246826,
+ "step": 1668
+ },
+ {
+ "epoch": 23.18173875054609,
+ "grad_norm": 0.2588968873023987,
+ "learning_rate": 0.0006,
+ "loss": 3.860816717147827,
+ "step": 1669
+ },
+ {
+ "epoch": 23.195718654434252,
+ "grad_norm": 0.2458600401878357,
+ "learning_rate": 0.0006,
+ "loss": 3.8058223724365234,
+ "step": 1670
+ },
+ {
+ "epoch": 23.209698558322412,
+ "grad_norm": 0.22014005482196808,
+ "learning_rate": 0.0006,
+ "loss": 3.8686985969543457,
+ "step": 1671
+ },
+ {
+ "epoch": 23.22367846221057,
+ "grad_norm": 0.22450537979602814,
+ "learning_rate": 0.0006,
+ "loss": 3.8379364013671875,
+ "step": 1672
+ },
+ {
+ "epoch": 23.23765836609873,
+ "grad_norm": 0.22132326662540436,
+ "learning_rate": 0.0006,
+ "loss": 3.8873870372772217,
+ "step": 1673
+ },
+ {
+ "epoch": 23.251638269986895,
+ "grad_norm": 0.20994804799556732,
+ "learning_rate": 0.0006,
+ "loss": 3.821415424346924,
+ "step": 1674
+ },
+ {
+ "epoch": 23.265618173875055,
+ "grad_norm": 0.2040853649377823,
+ "learning_rate": 0.0006,
+ "loss": 3.831658124923706,
+ "step": 1675
+ },
+ {
+ "epoch": 23.279598077763215,
+ "grad_norm": 0.20878618955612183,
+ "learning_rate": 0.0006,
+ "loss": 3.838672637939453,
+ "step": 1676
+ },
+ {
+ "epoch": 23.293577981651374,
+ "grad_norm": 0.19974198937416077,
+ "learning_rate": 0.0006,
+ "loss": 3.8442561626434326,
+ "step": 1677
+ },
+ {
+ "epoch": 23.307557885539538,
+ "grad_norm": 0.20523984730243683,
+ "learning_rate": 0.0006,
+ "loss": 3.846139907836914,
+ "step": 1678
+ },
+ {
+ "epoch": 23.321537789427698,
+ "grad_norm": 0.2045847624540329,
+ "learning_rate": 0.0006,
+ "loss": 3.8597474098205566,
+ "step": 1679
+ },
+ {
+ "epoch": 23.335517693315857,
+ "grad_norm": 0.20957441627979279,
+ "learning_rate": 0.0006,
+ "loss": 3.8493881225585938,
+ "step": 1680
+ },
+ {
+ "epoch": 23.34949759720402,
+ "grad_norm": 0.2069379836320877,
+ "learning_rate": 0.0006,
+ "loss": 3.8510046005249023,
+ "step": 1681
+ },
+ {
+ "epoch": 23.36347750109218,
+ "grad_norm": 0.19627872109413147,
+ "learning_rate": 0.0006,
+ "loss": 3.844618320465088,
+ "step": 1682
+ },
+ {
+ "epoch": 23.37745740498034,
+ "grad_norm": 0.19599434733390808,
+ "learning_rate": 0.0006,
+ "loss": 3.8245465755462646,
+ "step": 1683
+ },
+ {
+ "epoch": 23.3914373088685,
+ "grad_norm": 0.2035072147846222,
+ "learning_rate": 0.0006,
+ "loss": 3.854422092437744,
+ "step": 1684
+ },
+ {
+ "epoch": 23.405417212756664,
+ "grad_norm": 0.21836814284324646,
+ "learning_rate": 0.0006,
+ "loss": 3.83512282371521,
+ "step": 1685
+ },
+ {
+ "epoch": 23.419397116644824,
+ "grad_norm": 0.22844630479812622,
+ "learning_rate": 0.0006,
+ "loss": 3.8744301795959473,
+ "step": 1686
+ },
+ {
+ "epoch": 23.433377020532983,
+ "grad_norm": 0.2259359359741211,
+ "learning_rate": 0.0006,
+ "loss": 3.8460323810577393,
+ "step": 1687
+ },
+ {
+ "epoch": 23.447356924421143,
+ "grad_norm": 0.24440120160579681,
+ "learning_rate": 0.0006,
+ "loss": 3.8543787002563477,
+ "step": 1688
+ },
+ {
+ "epoch": 23.461336828309307,
+ "grad_norm": 0.25063708424568176,
+ "learning_rate": 0.0006,
+ "loss": 3.851004123687744,
+ "step": 1689
+ },
+ {
+ "epoch": 23.475316732197467,
+ "grad_norm": 0.25515618920326233,
+ "learning_rate": 0.0006,
+ "loss": 3.8685030937194824,
+ "step": 1690
+ },
+ {
+ "epoch": 23.489296636085626,
+ "grad_norm": 0.23961050808429718,
+ "learning_rate": 0.0006,
+ "loss": 3.866792678833008,
+ "step": 1691
+ },
+ {
+ "epoch": 23.503276539973786,
+ "grad_norm": 0.20880955457687378,
+ "learning_rate": 0.0006,
+ "loss": 3.8416638374328613,
+ "step": 1692
+ },
+ {
+ "epoch": 23.51725644386195,
+ "grad_norm": 0.1989721804857254,
+ "learning_rate": 0.0006,
+ "loss": 3.8608641624450684,
+ "step": 1693
+ },
+ {
+ "epoch": 23.53123634775011,
+ "grad_norm": 0.207577183842659,
+ "learning_rate": 0.0006,
+ "loss": 3.8431811332702637,
+ "step": 1694
+ },
+ {
+ "epoch": 23.54521625163827,
+ "grad_norm": 0.20844359695911407,
+ "learning_rate": 0.0006,
+ "loss": 3.882844924926758,
+ "step": 1695
+ },
+ {
+ "epoch": 23.55919615552643,
+ "grad_norm": 0.22511139512062073,
+ "learning_rate": 0.0006,
+ "loss": 3.866156578063965,
+ "step": 1696
+ },
+ {
+ "epoch": 23.573176059414592,
+ "grad_norm": 0.21648484468460083,
+ "learning_rate": 0.0006,
+ "loss": 3.87117075920105,
+ "step": 1697
+ },
+ {
+ "epoch": 23.587155963302752,
+ "grad_norm": 0.2081802636384964,
+ "learning_rate": 0.0006,
+ "loss": 3.828132152557373,
+ "step": 1698
+ },
+ {
+ "epoch": 23.601135867190912,
+ "grad_norm": 0.2017381489276886,
+ "learning_rate": 0.0006,
+ "loss": 3.839737892150879,
+ "step": 1699
+ },
+ {
+ "epoch": 23.615115771079076,
+ "grad_norm": 0.2025786191225052,
+ "learning_rate": 0.0006,
+ "loss": 3.8787710666656494,
+ "step": 1700
+ },
+ {
+ "epoch": 23.629095674967235,
+ "grad_norm": 0.21394102275371552,
+ "learning_rate": 0.0006,
+ "loss": 3.824047088623047,
+ "step": 1701
+ },
+ {
+ "epoch": 23.643075578855395,
+ "grad_norm": 0.20749174058437347,
+ "learning_rate": 0.0006,
+ "loss": 3.877009153366089,
+ "step": 1702
+ },
+ {
+ "epoch": 23.657055482743555,
+ "grad_norm": 0.2132839858531952,
+ "learning_rate": 0.0006,
+ "loss": 3.844214916229248,
+ "step": 1703
+ },
+ {
+ "epoch": 23.67103538663172,
+ "grad_norm": 0.22408637404441833,
+ "learning_rate": 0.0006,
+ "loss": 3.8570785522460938,
+ "step": 1704
+ },
+ {
+ "epoch": 23.68501529051988,
+ "grad_norm": 0.2275897115468979,
+ "learning_rate": 0.0006,
+ "loss": 3.8599512577056885,
+ "step": 1705
+ },
+ {
+ "epoch": 23.698995194408038,
+ "grad_norm": 0.2230614721775055,
+ "learning_rate": 0.0006,
+ "loss": 3.86374568939209,
+ "step": 1706
+ },
+ {
+ "epoch": 23.712975098296198,
+ "grad_norm": 0.21873739361763,
+ "learning_rate": 0.0006,
+ "loss": 3.8530168533325195,
+ "step": 1707
+ },
+ {
+ "epoch": 23.72695500218436,
+ "grad_norm": 0.24418923258781433,
+ "learning_rate": 0.0006,
+ "loss": 3.8410465717315674,
+ "step": 1708
+ },
+ {
+ "epoch": 23.74093490607252,
+ "grad_norm": 0.24894575774669647,
+ "learning_rate": 0.0006,
+ "loss": 3.8386030197143555,
+ "step": 1709
+ },
+ {
+ "epoch": 23.75491480996068,
+ "grad_norm": 0.221230611205101,
+ "learning_rate": 0.0006,
+ "loss": 3.8116674423217773,
+ "step": 1710
+ },
+ {
+ "epoch": 23.76889471384884,
+ "grad_norm": 0.20560568571090698,
+ "learning_rate": 0.0006,
+ "loss": 3.8634426593780518,
+ "step": 1711
+ },
+ {
+ "epoch": 23.782874617737004,
+ "grad_norm": 0.20450648665428162,
+ "learning_rate": 0.0006,
+ "loss": 3.8690528869628906,
+ "step": 1712
+ },
+ {
+ "epoch": 23.796854521625164,
+ "grad_norm": 0.18996809422969818,
+ "learning_rate": 0.0006,
+ "loss": 3.8484325408935547,
+ "step": 1713
+ },
+ {
+ "epoch": 23.810834425513324,
+ "grad_norm": 0.20165087282657623,
+ "learning_rate": 0.0006,
+ "loss": 3.8823161125183105,
+ "step": 1714
+ },
+ {
+ "epoch": 23.824814329401484,
+ "grad_norm": 0.21149255335330963,
+ "learning_rate": 0.0006,
+ "loss": 3.8833112716674805,
+ "step": 1715
+ },
+ {
+ "epoch": 23.838794233289647,
+ "grad_norm": 0.21254824101924896,
+ "learning_rate": 0.0006,
+ "loss": 3.8414595127105713,
+ "step": 1716
+ },
+ {
+ "epoch": 23.852774137177807,
+ "grad_norm": 0.21313664317131042,
+ "learning_rate": 0.0006,
+ "loss": 3.8732268810272217,
+ "step": 1717
+ },
+ {
+ "epoch": 23.866754041065967,
+ "grad_norm": 0.21635662019252777,
+ "learning_rate": 0.0006,
+ "loss": 3.861222743988037,
+ "step": 1718
+ },
+ {
+ "epoch": 23.88073394495413,
+ "grad_norm": 0.20612190663814545,
+ "learning_rate": 0.0006,
+ "loss": 3.821854591369629,
+ "step": 1719
+ },
+ {
+ "epoch": 23.89471384884229,
+ "grad_norm": 0.1975104659795761,
+ "learning_rate": 0.0006,
+ "loss": 3.8815202713012695,
+ "step": 1720
+ },
+ {
+ "epoch": 23.90869375273045,
+ "grad_norm": 0.20893609523773193,
+ "learning_rate": 0.0006,
+ "loss": 3.8581607341766357,
+ "step": 1721
+ },
+ {
+ "epoch": 23.92267365661861,
+ "grad_norm": 0.2125461846590042,
+ "learning_rate": 0.0006,
+ "loss": 3.839498281478882,
+ "step": 1722
+ },
+ {
+ "epoch": 23.936653560506773,
+ "grad_norm": 0.19985878467559814,
+ "learning_rate": 0.0006,
+ "loss": 3.856555223464966,
+ "step": 1723
+ },
+ {
+ "epoch": 23.950633464394933,
+ "grad_norm": 0.1922348290681839,
+ "learning_rate": 0.0006,
+ "loss": 3.8956782817840576,
+ "step": 1724
+ },
+ {
+ "epoch": 23.964613368283093,
+ "grad_norm": 0.2191949337720871,
+ "learning_rate": 0.0006,
+ "loss": 3.8582406044006348,
+ "step": 1725
+ },
+ {
+ "epoch": 23.978593272171253,
+ "grad_norm": 0.2569248676300049,
+ "learning_rate": 0.0006,
+ "loss": 3.855678081512451,
+ "step": 1726
+ },
+ {
+ "epoch": 23.992573176059416,
+ "grad_norm": 0.2641172409057617,
+ "learning_rate": 0.0006,
+ "loss": 3.8426473140716553,
+ "step": 1727
+ },
+ {
+ "epoch": 24.0,
+ "grad_norm": 0.29637208580970764,
+ "learning_rate": 0.0006,
+ "loss": 3.843040704727173,
+ "step": 1728
+ },
+ {
+ "epoch": 24.0,
+ "eval_loss": 4.075617790222168,
+ "eval_runtime": 43.9795,
+ "eval_samples_per_second": 55.526,
+ "eval_steps_per_second": 3.479,
+ "step": 1728
+ },
+ {
+ "epoch": 24.01397990388816,
+ "grad_norm": 0.2804758548736572,
+ "learning_rate": 0.0006,
+ "loss": 3.819150924682617,
+ "step": 1729
+ },
+ {
+ "epoch": 24.027959807776323,
+ "grad_norm": 0.2796347141265869,
+ "learning_rate": 0.0006,
+ "loss": 3.8400537967681885,
+ "step": 1730
+ },
+ {
+ "epoch": 24.041939711664483,
+ "grad_norm": 0.28388649225234985,
+ "learning_rate": 0.0006,
+ "loss": 3.844595432281494,
+ "step": 1731
+ },
+ {
+ "epoch": 24.055919615552643,
+ "grad_norm": 0.2944681942462921,
+ "learning_rate": 0.0006,
+ "loss": 3.8048014640808105,
+ "step": 1732
+ },
+ {
+ "epoch": 24.069899519440803,
+ "grad_norm": 0.2956784665584564,
+ "learning_rate": 0.0006,
+ "loss": 3.8488049507141113,
+ "step": 1733
+ },
+ {
+ "epoch": 24.083879423328966,
+ "grad_norm": 0.2822059392929077,
+ "learning_rate": 0.0006,
+ "loss": 3.850322723388672,
+ "step": 1734
+ },
+ {
+ "epoch": 24.097859327217126,
+ "grad_norm": 0.3012927174568176,
+ "learning_rate": 0.0006,
+ "loss": 3.8748154640197754,
+ "step": 1735
+ },
+ {
+ "epoch": 24.111839231105286,
+ "grad_norm": 0.28868764638900757,
+ "learning_rate": 0.0006,
+ "loss": 3.8282783031463623,
+ "step": 1736
+ },
+ {
+ "epoch": 24.125819134993446,
+ "grad_norm": 0.277203768491745,
+ "learning_rate": 0.0006,
+ "loss": 3.8462908267974854,
+ "step": 1737
+ },
+ {
+ "epoch": 24.13979903888161,
+ "grad_norm": 0.2654508948326111,
+ "learning_rate": 0.0006,
+ "loss": 3.8043856620788574,
+ "step": 1738
+ },
+ {
+ "epoch": 24.15377894276977,
+ "grad_norm": 0.24425740540027618,
+ "learning_rate": 0.0006,
+ "loss": 3.8284308910369873,
+ "step": 1739
+ },
+ {
+ "epoch": 24.16775884665793,
+ "grad_norm": 0.24407348036766052,
+ "learning_rate": 0.0006,
+ "loss": 3.8489203453063965,
+ "step": 1740
+ },
+ {
+ "epoch": 24.18173875054609,
+ "grad_norm": 0.2387724369764328,
+ "learning_rate": 0.0006,
+ "loss": 3.8240389823913574,
+ "step": 1741
+ },
+ {
+ "epoch": 24.195718654434252,
+ "grad_norm": 0.2832290232181549,
+ "learning_rate": 0.0006,
+ "loss": 3.869053363800049,
+ "step": 1742
+ },
+ {
+ "epoch": 24.209698558322412,
+ "grad_norm": 0.26501718163490295,
+ "learning_rate": 0.0006,
+ "loss": 3.8624343872070312,
+ "step": 1743
+ },
+ {
+ "epoch": 24.22367846221057,
+ "grad_norm": 0.24234668910503387,
+ "learning_rate": 0.0006,
+ "loss": 3.823103904724121,
+ "step": 1744
+ },
+ {
+ "epoch": 24.23765836609873,
+ "grad_norm": 0.24160076677799225,
+ "learning_rate": 0.0006,
+ "loss": 3.8174376487731934,
+ "step": 1745
+ },
+ {
+ "epoch": 24.251638269986895,
+ "grad_norm": 0.2447604238986969,
+ "learning_rate": 0.0006,
+ "loss": 3.8345441818237305,
+ "step": 1746
+ },
+ {
+ "epoch": 24.265618173875055,
+ "grad_norm": 0.22864456474781036,
+ "learning_rate": 0.0006,
+ "loss": 3.833101272583008,
+ "step": 1747
+ },
+ {
+ "epoch": 24.279598077763215,
+ "grad_norm": 0.20429204404354095,
+ "learning_rate": 0.0006,
+ "loss": 3.8055219650268555,
+ "step": 1748
+ },
+ {
+ "epoch": 24.293577981651374,
+ "grad_norm": 0.21538510918617249,
+ "learning_rate": 0.0006,
+ "loss": 3.7929327487945557,
+ "step": 1749
+ },
+ {
+ "epoch": 24.307557885539538,
+ "grad_norm": 0.2189008593559265,
+ "learning_rate": 0.0006,
+ "loss": 3.852264881134033,
+ "step": 1750
+ },
+ {
+ "epoch": 24.321537789427698,
+ "grad_norm": 0.2228662073612213,
+ "learning_rate": 0.0006,
+ "loss": 3.831088066101074,
+ "step": 1751
+ },
+ {
+ "epoch": 24.335517693315857,
+ "grad_norm": 0.2039937973022461,
+ "learning_rate": 0.0006,
+ "loss": 3.8358256816864014,
+ "step": 1752
+ },
+ {
+ "epoch": 24.34949759720402,
+ "grad_norm": 0.19247715175151825,
+ "learning_rate": 0.0006,
+ "loss": 3.8077402114868164,
+ "step": 1753
+ },
+ {
+ "epoch": 24.36347750109218,
+ "grad_norm": 0.18301935493946075,
+ "learning_rate": 0.0006,
+ "loss": 3.81380033493042,
+ "step": 1754
+ },
+ {
+ "epoch": 24.37745740498034,
+ "grad_norm": 0.19325268268585205,
+ "learning_rate": 0.0006,
+ "loss": 3.8447322845458984,
+ "step": 1755
+ },
+ {
+ "epoch": 24.3914373088685,
+ "grad_norm": 0.2007269263267517,
+ "learning_rate": 0.0006,
+ "loss": 3.82779860496521,
+ "step": 1756
+ },
+ {
+ "epoch": 24.405417212756664,
+ "grad_norm": 0.20567037165164948,
+ "learning_rate": 0.0006,
+ "loss": 3.800354480743408,
+ "step": 1757
+ },
+ {
+ "epoch": 24.419397116644824,
+ "grad_norm": 0.22553028166294098,
+ "learning_rate": 0.0006,
+ "loss": 3.7910406589508057,
+ "step": 1758
+ },
+ {
+ "epoch": 24.433377020532983,
+ "grad_norm": 0.22697079181671143,
+ "learning_rate": 0.0006,
+ "loss": 3.857635974884033,
+ "step": 1759
+ },
+ {
+ "epoch": 24.447356924421143,
+ "grad_norm": 0.22090297937393188,
+ "learning_rate": 0.0006,
+ "loss": 3.8112804889678955,
+ "step": 1760
+ },
+ {
+ "epoch": 24.461336828309307,
+ "grad_norm": 0.24325518310070038,
+ "learning_rate": 0.0006,
+ "loss": 3.822084426879883,
+ "step": 1761
+ },
+ {
+ "epoch": 24.475316732197467,
+ "grad_norm": 0.2702929377555847,
+ "learning_rate": 0.0006,
+ "loss": 3.8307600021362305,
+ "step": 1762
+ },
+ {
+ "epoch": 24.489296636085626,
+ "grad_norm": 0.2699742317199707,
+ "learning_rate": 0.0006,
+ "loss": 3.8479247093200684,
+ "step": 1763
+ },
+ {
+ "epoch": 24.503276539973786,
+ "grad_norm": 0.2526061236858368,
+ "learning_rate": 0.0006,
+ "loss": 3.8615071773529053,
+ "step": 1764
+ },
+ {
+ "epoch": 24.51725644386195,
+ "grad_norm": 0.2633848190307617,
+ "learning_rate": 0.0006,
+ "loss": 3.8412697315216064,
+ "step": 1765
+ },
+ {
+ "epoch": 24.53123634775011,
+ "grad_norm": 0.2711184024810791,
+ "learning_rate": 0.0006,
+ "loss": 3.83647084236145,
+ "step": 1766
+ },
+ {
+ "epoch": 24.54521625163827,
+ "grad_norm": 0.2691243588924408,
+ "learning_rate": 0.0006,
+ "loss": 3.8489012718200684,
+ "step": 1767
+ },
+ {
+ "epoch": 24.55919615552643,
+ "grad_norm": 0.2580898404121399,
+ "learning_rate": 0.0006,
+ "loss": 3.8464407920837402,
+ "step": 1768
+ },
+ {
+ "epoch": 24.573176059414592,
+ "grad_norm": 0.21342119574546814,
+ "learning_rate": 0.0006,
+ "loss": 3.8279383182525635,
+ "step": 1769
+ },
+ {
+ "epoch": 24.587155963302752,
+ "grad_norm": 0.22102399170398712,
+ "learning_rate": 0.0006,
+ "loss": 3.841676712036133,
+ "step": 1770
+ },
+ {
+ "epoch": 24.601135867190912,
+ "grad_norm": 0.2882173955440521,
+ "learning_rate": 0.0006,
+ "loss": 3.825528383255005,
+ "step": 1771
+ },
+ {
+ "epoch": 24.615115771079076,
+ "grad_norm": 0.3403635323047638,
+ "learning_rate": 0.0006,
+ "loss": 3.8282246589660645,
+ "step": 1772
+ },
+ {
+ "epoch": 24.629095674967235,
+ "grad_norm": 0.32192692160606384,
+ "learning_rate": 0.0006,
+ "loss": 3.8411307334899902,
+ "step": 1773
+ },
+ {
+ "epoch": 24.643075578855395,
+ "grad_norm": 0.2534109055995941,
+ "learning_rate": 0.0006,
+ "loss": 3.843007802963257,
+ "step": 1774
+ },
+ {
+ "epoch": 24.657055482743555,
+ "grad_norm": 0.25483962893486023,
+ "learning_rate": 0.0006,
+ "loss": 3.848358154296875,
+ "step": 1775
+ },
+ {
+ "epoch": 24.67103538663172,
+ "grad_norm": 0.25175443291664124,
+ "learning_rate": 0.0006,
+ "loss": 3.8232598304748535,
+ "step": 1776
+ },
+ {
+ "epoch": 24.68501529051988,
+ "grad_norm": 0.20538510382175446,
+ "learning_rate": 0.0006,
+ "loss": 3.857635498046875,
+ "step": 1777
+ },
+ {
+ "epoch": 24.698995194408038,
+ "grad_norm": 0.240861177444458,
+ "learning_rate": 0.0006,
+ "loss": 3.83717679977417,
+ "step": 1778
+ },
+ {
+ "epoch": 24.712975098296198,
+ "grad_norm": 0.23646967113018036,
+ "learning_rate": 0.0006,
+ "loss": 3.81032133102417,
+ "step": 1779
+ },
+ {
+ "epoch": 24.72695500218436,
+ "grad_norm": 0.2164423167705536,
+ "learning_rate": 0.0006,
+ "loss": 3.807878255844116,
+ "step": 1780
+ },
+ {
+ "epoch": 24.74093490607252,
+ "grad_norm": 0.21160705387592316,
+ "learning_rate": 0.0006,
+ "loss": 3.870394468307495,
+ "step": 1781
+ },
+ {
+ "epoch": 24.75491480996068,
+ "grad_norm": 0.20284807682037354,
+ "learning_rate": 0.0006,
+ "loss": 3.842154026031494,
+ "step": 1782
+ },
+ {
+ "epoch": 24.76889471384884,
+ "grad_norm": 0.20738485455513,
+ "learning_rate": 0.0006,
+ "loss": 3.8347136974334717,
+ "step": 1783
+ },
+ {
+ "epoch": 24.782874617737004,
+ "grad_norm": 0.20253778994083405,
+ "learning_rate": 0.0006,
+ "loss": 3.814948320388794,
+ "step": 1784
+ },
+ {
+ "epoch": 24.796854521625164,
+ "grad_norm": 0.20567010343074799,
+ "learning_rate": 0.0006,
+ "loss": 3.8354592323303223,
+ "step": 1785
+ },
+ {
+ "epoch": 24.810834425513324,
+ "grad_norm": 0.20639720559120178,
+ "learning_rate": 0.0006,
+ "loss": 3.8336033821105957,
+ "step": 1786
+ },
+ {
+ "epoch": 24.824814329401484,
+ "grad_norm": 0.19978247582912445,
+ "learning_rate": 0.0006,
+ "loss": 3.8209140300750732,
+ "step": 1787
+ },
+ {
+ "epoch": 24.838794233289647,
+ "grad_norm": 0.20628373324871063,
+ "learning_rate": 0.0006,
+ "loss": 3.8372955322265625,
+ "step": 1788
+ },
+ {
+ "epoch": 24.852774137177807,
+ "grad_norm": 0.2266162782907486,
+ "learning_rate": 0.0006,
+ "loss": 3.850994110107422,
+ "step": 1789
+ },
+ {
+ "epoch": 24.866754041065967,
+ "grad_norm": 0.22567765414714813,
+ "learning_rate": 0.0006,
+ "loss": 3.8552165031433105,
+ "step": 1790
+ },
+ {
+ "epoch": 24.88073394495413,
+ "grad_norm": 0.228011354804039,
+ "learning_rate": 0.0006,
+ "loss": 3.8310747146606445,
+ "step": 1791
+ },
+ {
+ "epoch": 24.89471384884229,
+ "grad_norm": 0.23706914484500885,
+ "learning_rate": 0.0006,
+ "loss": 3.8369603157043457,
+ "step": 1792
+ },
+ {
+ "epoch": 24.90869375273045,
+ "grad_norm": 0.22669097781181335,
+ "learning_rate": 0.0006,
+ "loss": 3.8443825244903564,
+ "step": 1793
+ },
+ {
+ "epoch": 24.92267365661861,
+ "grad_norm": 0.2051001936197281,
+ "learning_rate": 0.0006,
+ "loss": 3.7938501834869385,
+ "step": 1794
+ },
+ {
+ "epoch": 24.936653560506773,
+ "grad_norm": 0.2091219276189804,
+ "learning_rate": 0.0006,
+ "loss": 3.8167076110839844,
+ "step": 1795
+ },
+ {
+ "epoch": 24.950633464394933,
+ "grad_norm": 0.20517204701900482,
+ "learning_rate": 0.0006,
+ "loss": 3.852670669555664,
+ "step": 1796
+ },
+ {
+ "epoch": 24.964613368283093,
+ "grad_norm": 0.19916993379592896,
+ "learning_rate": 0.0006,
+ "loss": 3.8410873413085938,
+ "step": 1797
+ },
+ {
+ "epoch": 24.978593272171253,
+ "grad_norm": 0.21313942968845367,
+ "learning_rate": 0.0006,
+ "loss": 3.8383948802948,
+ "step": 1798
+ },
+ {
+ "epoch": 24.992573176059416,
+ "grad_norm": 0.21042990684509277,
+ "learning_rate": 0.0006,
+ "loss": 3.8623173236846924,
+ "step": 1799
+ },
+ {
+ "epoch": 25.0,
+ "grad_norm": 0.23052045702934265,
+ "learning_rate": 0.0006,
+ "loss": 3.8646674156188965,
+ "step": 1800
+ },
+ {
+ "epoch": 25.0,
+ "eval_loss": 4.081690311431885,
+ "eval_runtime": 44.036,
+ "eval_samples_per_second": 55.455,
+ "eval_steps_per_second": 3.474,
+ "step": 1800
+ },
+ {
+ "epoch": 25.01397990388816,
+ "grad_norm": 0.22068746387958527,
+ "learning_rate": 0.0006,
+ "loss": 3.8002820014953613,
+ "step": 1801
+ },
+ {
+ "epoch": 25.027959807776323,
+ "grad_norm": 0.20711193978786469,
+ "learning_rate": 0.0006,
+ "loss": 3.787785768508911,
+ "step": 1802
+ },
+ {
+ "epoch": 25.041939711664483,
+ "grad_norm": 0.20659677684307098,
+ "learning_rate": 0.0006,
+ "loss": 3.80245304107666,
+ "step": 1803
+ },
+ {
+ "epoch": 25.055919615552643,
+ "grad_norm": 0.22891797125339508,
+ "learning_rate": 0.0006,
+ "loss": 3.784543514251709,
+ "step": 1804
+ },
+ {
+ "epoch": 25.069899519440803,
+ "grad_norm": 0.23679181933403015,
+ "learning_rate": 0.0006,
+ "loss": 3.8311429023742676,
+ "step": 1805
+ },
+ {
+ "epoch": 25.083879423328966,
+ "grad_norm": 0.2548872232437134,
+ "learning_rate": 0.0006,
+ "loss": 3.8047211170196533,
+ "step": 1806
+ },
+ {
+ "epoch": 25.097859327217126,
+ "grad_norm": 0.26181501150131226,
+ "learning_rate": 0.0006,
+ "loss": 3.837508201599121,
+ "step": 1807
+ },
+ {
+ "epoch": 25.111839231105286,
+ "grad_norm": 0.2548452913761139,
+ "learning_rate": 0.0006,
+ "loss": 3.831544876098633,
+ "step": 1808
+ },
+ {
+ "epoch": 25.125819134993446,
+ "grad_norm": 0.26177605986595154,
+ "learning_rate": 0.0006,
+ "loss": 3.805346965789795,
+ "step": 1809
+ },
+ {
+ "epoch": 25.13979903888161,
+ "grad_norm": 0.2608112394809723,
+ "learning_rate": 0.0006,
+ "loss": 3.8040924072265625,
+ "step": 1810
+ },
+ {
+ "epoch": 25.15377894276977,
+ "grad_norm": 0.2586037814617157,
+ "learning_rate": 0.0006,
+ "loss": 3.8102216720581055,
+ "step": 1811
+ },
+ {
+ "epoch": 25.16775884665793,
+ "grad_norm": 0.26258161664009094,
+ "learning_rate": 0.0006,
+ "loss": 3.8152549266815186,
+ "step": 1812
+ },
+ {
+ "epoch": 25.18173875054609,
+ "grad_norm": 0.2803022265434265,
+ "learning_rate": 0.0006,
+ "loss": 3.82576584815979,
+ "step": 1813
+ },
+ {
+ "epoch": 25.195718654434252,
+ "grad_norm": 0.2618221938610077,
+ "learning_rate": 0.0006,
+ "loss": 3.817220687866211,
+ "step": 1814
+ },
+ {
+ "epoch": 25.209698558322412,
+ "grad_norm": 0.23283469676971436,
+ "learning_rate": 0.0006,
+ "loss": 3.7999041080474854,
+ "step": 1815
+ },
+ {
+ "epoch": 25.22367846221057,
+ "grad_norm": 0.20110781490802765,
+ "learning_rate": 0.0006,
+ "loss": 3.783228874206543,
+ "step": 1816
+ },
+ {
+ "epoch": 25.23765836609873,
+ "grad_norm": 0.2231830358505249,
+ "learning_rate": 0.0006,
+ "loss": 3.8032913208007812,
+ "step": 1817
+ },
+ {
+ "epoch": 25.251638269986895,
+ "grad_norm": 0.21807286143302917,
+ "learning_rate": 0.0006,
+ "loss": 3.817028045654297,
+ "step": 1818
+ },
+ {
+ "epoch": 25.265618173875055,
+ "grad_norm": 0.22710664570331573,
+ "learning_rate": 0.0006,
+ "loss": 3.8201727867126465,
+ "step": 1819
+ },
+ {
+ "epoch": 25.279598077763215,
+ "grad_norm": 0.22299866378307343,
+ "learning_rate": 0.0006,
+ "loss": 3.8198719024658203,
+ "step": 1820
+ },
+ {
+ "epoch": 25.293577981651374,
+ "grad_norm": 0.20886564254760742,
+ "learning_rate": 0.0006,
+ "loss": 3.792414665222168,
+ "step": 1821
+ },
+ {
+ "epoch": 25.307557885539538,
+ "grad_norm": 0.20887352526187897,
+ "learning_rate": 0.0006,
+ "loss": 3.7634057998657227,
+ "step": 1822
+ },
+ {
+ "epoch": 25.321537789427698,
+ "grad_norm": 0.24560041725635529,
+ "learning_rate": 0.0006,
+ "loss": 3.79359769821167,
+ "step": 1823
+ },
+ {
+ "epoch": 25.335517693315857,
+ "grad_norm": 0.22767415642738342,
+ "learning_rate": 0.0006,
+ "loss": 3.8313469886779785,
+ "step": 1824
+ },
+ {
+ "epoch": 25.34949759720402,
+ "grad_norm": 0.21617893874645233,
+ "learning_rate": 0.0006,
+ "loss": 3.77200984954834,
+ "step": 1825
+ },
+ {
+ "epoch": 25.36347750109218,
+ "grad_norm": 0.21010833978652954,
+ "learning_rate": 0.0006,
+ "loss": 3.8042140007019043,
+ "step": 1826
+ },
+ {
+ "epoch": 25.37745740498034,
+ "grad_norm": 0.24087965488433838,
+ "learning_rate": 0.0006,
+ "loss": 3.8260979652404785,
+ "step": 1827
+ },
+ {
+ "epoch": 25.3914373088685,
+ "grad_norm": 0.2735275626182556,
+ "learning_rate": 0.0006,
+ "loss": 3.8499274253845215,
+ "step": 1828
+ },
+ {
+ "epoch": 25.405417212756664,
+ "grad_norm": 0.24831001460552216,
+ "learning_rate": 0.0006,
+ "loss": 3.8146448135375977,
+ "step": 1829
+ },
+ {
+ "epoch": 25.419397116644824,
+ "grad_norm": 0.21822866797447205,
+ "learning_rate": 0.0006,
+ "loss": 3.7845146656036377,
+ "step": 1830
+ },
+ {
+ "epoch": 25.433377020532983,
+ "grad_norm": 0.19948813319206238,
+ "learning_rate": 0.0006,
+ "loss": 3.823997974395752,
+ "step": 1831
+ },
+ {
+ "epoch": 25.447356924421143,
+ "grad_norm": 0.18342702090740204,
+ "learning_rate": 0.0006,
+ "loss": 3.8201193809509277,
+ "step": 1832
+ },
+ {
+ "epoch": 25.461336828309307,
+ "grad_norm": 0.19377560913562775,
+ "learning_rate": 0.0006,
+ "loss": 3.8069632053375244,
+ "step": 1833
+ },
+ {
+ "epoch": 25.475316732197467,
+ "grad_norm": 0.22348709404468536,
+ "learning_rate": 0.0006,
+ "loss": 3.7918643951416016,
+ "step": 1834
+ },
+ {
+ "epoch": 25.489296636085626,
+ "grad_norm": 0.24484702944755554,
+ "learning_rate": 0.0006,
+ "loss": 3.85046124458313,
+ "step": 1835
+ },
+ {
+ "epoch": 25.503276539973786,
+ "grad_norm": 0.2493520826101303,
+ "learning_rate": 0.0006,
+ "loss": 3.8043932914733887,
+ "step": 1836
+ },
+ {
+ "epoch": 25.51725644386195,
+ "grad_norm": 0.21509641408920288,
+ "learning_rate": 0.0006,
+ "loss": 3.8064627647399902,
+ "step": 1837
+ },
+ {
+ "epoch": 25.53123634775011,
+ "grad_norm": 0.21912820637226105,
+ "learning_rate": 0.0006,
+ "loss": 3.850588321685791,
+ "step": 1838
+ },
+ {
+ "epoch": 25.54521625163827,
+ "grad_norm": 0.28400927782058716,
+ "learning_rate": 0.0006,
+ "loss": 3.79818058013916,
+ "step": 1839
+ },
+ {
+ "epoch": 25.55919615552643,
+ "grad_norm": 0.32193225622177124,
+ "learning_rate": 0.0006,
+ "loss": 3.836275815963745,
+ "step": 1840
+ },
+ {
+ "epoch": 25.573176059414592,
+ "grad_norm": 0.2902325987815857,
+ "learning_rate": 0.0006,
+ "loss": 3.8080005645751953,
+ "step": 1841
+ },
+ {
+ "epoch": 25.587155963302752,
+ "grad_norm": 0.21759532392024994,
+ "learning_rate": 0.0006,
+ "loss": 3.8233771324157715,
+ "step": 1842
+ },
+ {
+ "epoch": 25.601135867190912,
+ "grad_norm": 0.19645214080810547,
+ "learning_rate": 0.0006,
+ "loss": 3.838881015777588,
+ "step": 1843
+ },
+ {
+ "epoch": 25.615115771079076,
+ "grad_norm": 0.19322903454303741,
+ "learning_rate": 0.0006,
+ "loss": 3.7870054244995117,
+ "step": 1844
+ },
+ {
+ "epoch": 25.629095674967235,
+ "grad_norm": 0.2074001580476761,
+ "learning_rate": 0.0006,
+ "loss": 3.8239974975585938,
+ "step": 1845
+ },
+ {
+ "epoch": 25.643075578855395,
+ "grad_norm": 0.2166101336479187,
+ "learning_rate": 0.0006,
+ "loss": 3.8290855884552,
+ "step": 1846
+ },
+ {
+ "epoch": 25.657055482743555,
+ "grad_norm": 0.23738539218902588,
+ "learning_rate": 0.0006,
+ "loss": 3.7993364334106445,
+ "step": 1847
+ },
+ {
+ "epoch": 25.67103538663172,
+ "grad_norm": 0.23882314562797546,
+ "learning_rate": 0.0006,
+ "loss": 3.802586078643799,
+ "step": 1848
+ },
+ {
+ "epoch": 25.68501529051988,
+ "grad_norm": 0.24168142676353455,
+ "learning_rate": 0.0006,
+ "loss": 3.8303489685058594,
+ "step": 1849
+ },
+ {
+ "epoch": 25.698995194408038,
+ "grad_norm": 0.22423343360424042,
+ "learning_rate": 0.0006,
+ "loss": 3.836228370666504,
+ "step": 1850
+ },
+ {
+ "epoch": 25.712975098296198,
+ "grad_norm": 0.23816974461078644,
+ "learning_rate": 0.0006,
+ "loss": 3.8380274772644043,
+ "step": 1851
+ },
+ {
+ "epoch": 25.72695500218436,
+ "grad_norm": 0.22465108335018158,
+ "learning_rate": 0.0006,
+ "loss": 3.8496339321136475,
+ "step": 1852
+ },
+ {
+ "epoch": 25.74093490607252,
+ "grad_norm": 0.20792442560195923,
+ "learning_rate": 0.0006,
+ "loss": 3.797853946685791,
+ "step": 1853
+ },
+ {
+ "epoch": 25.75491480996068,
+ "grad_norm": 0.20770230889320374,
+ "learning_rate": 0.0006,
+ "loss": 3.842322826385498,
+ "step": 1854
+ },
+ {
+ "epoch": 25.76889471384884,
+ "grad_norm": 0.1928192526102066,
+ "learning_rate": 0.0006,
+ "loss": 3.836540699005127,
+ "step": 1855
+ },
+ {
+ "epoch": 25.782874617737004,
+ "grad_norm": 0.19045178592205048,
+ "learning_rate": 0.0006,
+ "loss": 3.7758889198303223,
+ "step": 1856
+ },
+ {
+ "epoch": 25.796854521625164,
+ "grad_norm": 0.205548495054245,
+ "learning_rate": 0.0006,
+ "loss": 3.8244709968566895,
+ "step": 1857
+ },
+ {
+ "epoch": 25.810834425513324,
+ "grad_norm": 0.20968270301818848,
+ "learning_rate": 0.0006,
+ "loss": 3.8376216888427734,
+ "step": 1858
+ },
+ {
+ "epoch": 25.824814329401484,
+ "grad_norm": 0.18917354941368103,
+ "learning_rate": 0.0006,
+ "loss": 3.8497915267944336,
+ "step": 1859
+ },
+ {
+ "epoch": 25.838794233289647,
+ "grad_norm": 0.2050701528787613,
+ "learning_rate": 0.0006,
+ "loss": 3.819628953933716,
+ "step": 1860
+ },
+ {
+ "epoch": 25.852774137177807,
+ "grad_norm": 0.1981319785118103,
+ "learning_rate": 0.0006,
+ "loss": 3.8007922172546387,
+ "step": 1861
+ },
+ {
+ "epoch": 25.866754041065967,
+ "grad_norm": 0.19055861234664917,
+ "learning_rate": 0.0006,
+ "loss": 3.8304519653320312,
+ "step": 1862
+ },
+ {
+ "epoch": 25.88073394495413,
+ "grad_norm": 0.19255517423152924,
+ "learning_rate": 0.0006,
+ "loss": 3.833280563354492,
+ "step": 1863
+ },
+ {
+ "epoch": 25.89471384884229,
+ "grad_norm": 0.19059430062770844,
+ "learning_rate": 0.0006,
+ "loss": 3.813796281814575,
+ "step": 1864
+ },
+ {
+ "epoch": 25.90869375273045,
+ "grad_norm": 0.18581309914588928,
+ "learning_rate": 0.0006,
+ "loss": 3.8211798667907715,
+ "step": 1865
+ },
+ {
+ "epoch": 25.92267365661861,
+ "grad_norm": 0.20181003212928772,
+ "learning_rate": 0.0006,
+ "loss": 3.8380484580993652,
+ "step": 1866
+ },
+ {
+ "epoch": 25.936653560506773,
+ "grad_norm": 0.22334498167037964,
+ "learning_rate": 0.0006,
+ "loss": 3.8294434547424316,
+ "step": 1867
+ },
+ {
+ "epoch": 25.950633464394933,
+ "grad_norm": 0.20456703007221222,
+ "learning_rate": 0.0006,
+ "loss": 3.819223642349243,
+ "step": 1868
+ },
+ {
+ "epoch": 25.964613368283093,
+ "grad_norm": 0.1885606348514557,
+ "learning_rate": 0.0006,
+ "loss": 3.8110103607177734,
+ "step": 1869
+ },
+ {
+ "epoch": 25.978593272171253,
+ "grad_norm": 0.18862110376358032,
+ "learning_rate": 0.0006,
+ "loss": 3.788691997528076,
+ "step": 1870
+ },
+ {
+ "epoch": 25.992573176059416,
+ "grad_norm": 0.19802744686603546,
+ "learning_rate": 0.0006,
+ "loss": 3.8423619270324707,
+ "step": 1871
+ },
+ {
+ "epoch": 26.0,
+ "grad_norm": 0.23762032389640808,
+ "learning_rate": 0.0006,
+ "loss": 3.7848567962646484,
+ "step": 1872
+ },
+ {
+ "epoch": 26.0,
+ "eval_loss": 4.054965019226074,
+ "eval_runtime": 44.2423,
+ "eval_samples_per_second": 55.196,
+ "eval_steps_per_second": 3.458,
+ "step": 1872
+ },
+ {
+ "epoch": 26.01397990388816,
+ "grad_norm": 0.21533054113388062,
+ "learning_rate": 0.0006,
+ "loss": 3.8123154640197754,
+ "step": 1873
+ },
+ {
+ "epoch": 26.027959807776323,
+ "grad_norm": 0.25094854831695557,
+ "learning_rate": 0.0006,
+ "loss": 3.7847447395324707,
+ "step": 1874
+ },
+ {
+ "epoch": 26.041939711664483,
+ "grad_norm": 0.24042077362537384,
+ "learning_rate": 0.0006,
+ "loss": 3.8033599853515625,
+ "step": 1875
+ },
+ {
+ "epoch": 26.055919615552643,
+ "grad_norm": 0.2425149381160736,
+ "learning_rate": 0.0006,
+ "loss": 3.7828550338745117,
+ "step": 1876
+ },
+ {
+ "epoch": 26.069899519440803,
+ "grad_norm": 0.2300514280796051,
+ "learning_rate": 0.0006,
+ "loss": 3.750882148742676,
+ "step": 1877
+ },
+ {
+ "epoch": 26.083879423328966,
+ "grad_norm": 0.2513943612575531,
+ "learning_rate": 0.0006,
+ "loss": 3.800323963165283,
+ "step": 1878
+ },
+ {
+ "epoch": 26.097859327217126,
+ "grad_norm": 0.2536966800689697,
+ "learning_rate": 0.0006,
+ "loss": 3.8198962211608887,
+ "step": 1879
+ },
+ {
+ "epoch": 26.111839231105286,
+ "grad_norm": 0.24483931064605713,
+ "learning_rate": 0.0006,
+ "loss": 3.825563907623291,
+ "step": 1880
+ },
+ {
+ "epoch": 26.125819134993446,
+ "grad_norm": 0.2502584755420685,
+ "learning_rate": 0.0006,
+ "loss": 3.78756046295166,
+ "step": 1881
+ },
+ {
+ "epoch": 26.13979903888161,
+ "grad_norm": 0.2695745527744293,
+ "learning_rate": 0.0006,
+ "loss": 3.8205409049987793,
+ "step": 1882
+ },
+ {
+ "epoch": 26.15377894276977,
+ "grad_norm": 0.2873472273349762,
+ "learning_rate": 0.0006,
+ "loss": 3.7880778312683105,
+ "step": 1883
+ },
+ {
+ "epoch": 26.16775884665793,
+ "grad_norm": 0.28609949350357056,
+ "learning_rate": 0.0006,
+ "loss": 3.788517951965332,
+ "step": 1884
+ },
+ {
+ "epoch": 26.18173875054609,
+ "grad_norm": 0.28352269530296326,
+ "learning_rate": 0.0006,
+ "loss": 3.778015613555908,
+ "step": 1885
+ },
+ {
+ "epoch": 26.195718654434252,
+ "grad_norm": 0.27055084705352783,
+ "learning_rate": 0.0006,
+ "loss": 3.7857203483581543,
+ "step": 1886
+ },
+ {
+ "epoch": 26.209698558322412,
+ "grad_norm": 0.255647748708725,
+ "learning_rate": 0.0006,
+ "loss": 3.791355609893799,
+ "step": 1887
+ },
+ {
+ "epoch": 26.22367846221057,
+ "grad_norm": 0.22624439001083374,
+ "learning_rate": 0.0006,
+ "loss": 3.7624831199645996,
+ "step": 1888
+ },
+ {
+ "epoch": 26.23765836609873,
+ "grad_norm": 0.2283596396446228,
+ "learning_rate": 0.0006,
+ "loss": 3.8052897453308105,
+ "step": 1889
+ },
+ {
+ "epoch": 26.251638269986895,
+ "grad_norm": 0.2336510866880417,
+ "learning_rate": 0.0006,
+ "loss": 3.789015054702759,
+ "step": 1890
+ },
+ {
+ "epoch": 26.265618173875055,
+ "grad_norm": 0.24107608199119568,
+ "learning_rate": 0.0006,
+ "loss": 3.756551742553711,
+ "step": 1891
+ },
+ {
+ "epoch": 26.279598077763215,
+ "grad_norm": 0.22438564896583557,
+ "learning_rate": 0.0006,
+ "loss": 3.797952651977539,
+ "step": 1892
+ },
+ {
+ "epoch": 26.293577981651374,
+ "grad_norm": 0.24594341218471527,
+ "learning_rate": 0.0006,
+ "loss": 3.7925708293914795,
+ "step": 1893
+ },
+ {
+ "epoch": 26.307557885539538,
+ "grad_norm": 0.23314352333545685,
+ "learning_rate": 0.0006,
+ "loss": 3.792447328567505,
+ "step": 1894
+ },
+ {
+ "epoch": 26.321537789427698,
+ "grad_norm": 0.20870383083820343,
+ "learning_rate": 0.0006,
+ "loss": 3.7888340950012207,
+ "step": 1895
+ },
+ {
+ "epoch": 26.335517693315857,
+ "grad_norm": 0.206504687666893,
+ "learning_rate": 0.0006,
+ "loss": 3.7856602668762207,
+ "step": 1896
+ },
+ {
+ "epoch": 26.34949759720402,
+ "grad_norm": 0.20193266868591309,
+ "learning_rate": 0.0006,
+ "loss": 3.810800552368164,
+ "step": 1897
+ },
+ {
+ "epoch": 26.36347750109218,
+ "grad_norm": 0.2143869698047638,
+ "learning_rate": 0.0006,
+ "loss": 3.818742275238037,
+ "step": 1898
+ },
+ {
+ "epoch": 26.37745740498034,
+ "grad_norm": 0.21388593316078186,
+ "learning_rate": 0.0006,
+ "loss": 3.7576632499694824,
+ "step": 1899
+ },
+ {
+ "epoch": 26.3914373088685,
+ "grad_norm": 0.1933414787054062,
+ "learning_rate": 0.0006,
+ "loss": 3.802579879760742,
+ "step": 1900
+ },
+ {
+ "epoch": 26.405417212756664,
+ "grad_norm": 0.18144549429416656,
+ "learning_rate": 0.0006,
+ "loss": 3.7830452919006348,
+ "step": 1901
+ },
+ {
+ "epoch": 26.419397116644824,
+ "grad_norm": 0.20027601718902588,
+ "learning_rate": 0.0006,
+ "loss": 3.8112521171569824,
+ "step": 1902
+ },
+ {
+ "epoch": 26.433377020532983,
+ "grad_norm": 0.19402910768985748,
+ "learning_rate": 0.0006,
+ "loss": 3.778012990951538,
+ "step": 1903
+ },
+ {
+ "epoch": 26.447356924421143,
+ "grad_norm": 0.19020743668079376,
+ "learning_rate": 0.0006,
+ "loss": 3.823355197906494,
+ "step": 1904
+ },
+ {
+ "epoch": 26.461336828309307,
+ "grad_norm": 0.1885242760181427,
+ "learning_rate": 0.0006,
+ "loss": 3.782108783721924,
+ "step": 1905
+ },
+ {
+ "epoch": 26.475316732197467,
+ "grad_norm": 0.2024235874414444,
+ "learning_rate": 0.0006,
+ "loss": 3.810448408126831,
+ "step": 1906
+ },
+ {
+ "epoch": 26.489296636085626,
+ "grad_norm": 0.21408027410507202,
+ "learning_rate": 0.0006,
+ "loss": 3.8185606002807617,
+ "step": 1907
+ },
+ {
+ "epoch": 26.503276539973786,
+ "grad_norm": 0.22810906171798706,
+ "learning_rate": 0.0006,
+ "loss": 3.8052706718444824,
+ "step": 1908
+ },
+ {
+ "epoch": 26.51725644386195,
+ "grad_norm": 0.21328197419643402,
+ "learning_rate": 0.0006,
+ "loss": 3.7858219146728516,
+ "step": 1909
+ },
+ {
+ "epoch": 26.53123634775011,
+ "grad_norm": 0.20843173563480377,
+ "learning_rate": 0.0006,
+ "loss": 3.8069310188293457,
+ "step": 1910
+ },
+ {
+ "epoch": 26.54521625163827,
+ "grad_norm": 0.2072986662387848,
+ "learning_rate": 0.0006,
+ "loss": 3.794975996017456,
+ "step": 1911
+ },
+ {
+ "epoch": 26.55919615552643,
+ "grad_norm": 0.2203216850757599,
+ "learning_rate": 0.0006,
+ "loss": 3.8070101737976074,
+ "step": 1912
+ },
+ {
+ "epoch": 26.573176059414592,
+ "grad_norm": 0.23449191451072693,
+ "learning_rate": 0.0006,
+ "loss": 3.828695774078369,
+ "step": 1913
+ },
+ {
+ "epoch": 26.587155963302752,
+ "grad_norm": 0.2222008854150772,
+ "learning_rate": 0.0006,
+ "loss": 3.781275749206543,
+ "step": 1914
+ },
+ {
+ "epoch": 26.601135867190912,
+ "grad_norm": 0.22328314185142517,
+ "learning_rate": 0.0006,
+ "loss": 3.7953736782073975,
+ "step": 1915
+ },
+ {
+ "epoch": 26.615115771079076,
+ "grad_norm": 0.2377961128950119,
+ "learning_rate": 0.0006,
+ "loss": 3.8428916931152344,
+ "step": 1916
+ },
+ {
+ "epoch": 26.629095674967235,
+ "grad_norm": 0.2546147108078003,
+ "learning_rate": 0.0006,
+ "loss": 3.7940590381622314,
+ "step": 1917
+ },
+ {
+ "epoch": 26.643075578855395,
+ "grad_norm": 0.24234509468078613,
+ "learning_rate": 0.0006,
+ "loss": 3.802234172821045,
+ "step": 1918
+ },
+ {
+ "epoch": 26.657055482743555,
+ "grad_norm": 0.21294651925563812,
+ "learning_rate": 0.0006,
+ "loss": 3.8159232139587402,
+ "step": 1919
+ },
+ {
+ "epoch": 26.67103538663172,
+ "grad_norm": 0.20008964836597443,
+ "learning_rate": 0.0006,
+ "loss": 3.796949863433838,
+ "step": 1920
+ },
+ {
+ "epoch": 26.68501529051988,
+ "grad_norm": 0.21031023561954498,
+ "learning_rate": 0.0006,
+ "loss": 3.8015570640563965,
+ "step": 1921
+ },
+ {
+ "epoch": 26.698995194408038,
+ "grad_norm": 0.2185603827238083,
+ "learning_rate": 0.0006,
+ "loss": 3.8022537231445312,
+ "step": 1922
+ },
+ {
+ "epoch": 26.712975098296198,
+ "grad_norm": 0.22957198321819305,
+ "learning_rate": 0.0006,
+ "loss": 3.7859907150268555,
+ "step": 1923
+ },
+ {
+ "epoch": 26.72695500218436,
+ "grad_norm": 0.23779156804084778,
+ "learning_rate": 0.0006,
+ "loss": 3.830345630645752,
+ "step": 1924
+ },
+ {
+ "epoch": 26.74093490607252,
+ "grad_norm": 0.23577193915843964,
+ "learning_rate": 0.0006,
+ "loss": 3.777338981628418,
+ "step": 1925
+ },
+ {
+ "epoch": 26.75491480996068,
+ "grad_norm": 0.2521933913230896,
+ "learning_rate": 0.0006,
+ "loss": 3.8215396404266357,
+ "step": 1926
+ },
+ {
+ "epoch": 26.76889471384884,
+ "grad_norm": 0.25050726532936096,
+ "learning_rate": 0.0006,
+ "loss": 3.817509651184082,
+ "step": 1927
+ },
+ {
+ "epoch": 26.782874617737004,
+ "grad_norm": 0.24442453682422638,
+ "learning_rate": 0.0006,
+ "loss": 3.8033013343811035,
+ "step": 1928
+ },
+ {
+ "epoch": 26.796854521625164,
+ "grad_norm": 0.2280828058719635,
+ "learning_rate": 0.0006,
+ "loss": 3.798625946044922,
+ "step": 1929
+ },
+ {
+ "epoch": 26.810834425513324,
+ "grad_norm": 0.23072117567062378,
+ "learning_rate": 0.0006,
+ "loss": 3.8109097480773926,
+ "step": 1930
+ },
+ {
+ "epoch": 26.824814329401484,
+ "grad_norm": 0.2690806984901428,
+ "learning_rate": 0.0006,
+ "loss": 3.7707223892211914,
+ "step": 1931
+ },
+ {
+ "epoch": 26.838794233289647,
+ "grad_norm": 0.24973517656326294,
+ "learning_rate": 0.0006,
+ "loss": 3.7788357734680176,
+ "step": 1932
+ },
+ {
+ "epoch": 26.852774137177807,
+ "grad_norm": 0.24221451580524445,
+ "learning_rate": 0.0006,
+ "loss": 3.8083114624023438,
+ "step": 1933
+ },
+ {
+ "epoch": 26.866754041065967,
+ "grad_norm": 0.23499037325382233,
+ "learning_rate": 0.0006,
+ "loss": 3.845512866973877,
+ "step": 1934
+ },
+ {
+ "epoch": 26.88073394495413,
+ "grad_norm": 0.2172643095254898,
+ "learning_rate": 0.0006,
+ "loss": 3.8171584606170654,
+ "step": 1935
+ },
+ {
+ "epoch": 26.89471384884229,
+ "grad_norm": 0.19935013353824615,
+ "learning_rate": 0.0006,
+ "loss": 3.808596611022949,
+ "step": 1936
+ },
+ {
+ "epoch": 26.90869375273045,
+ "grad_norm": 0.2077745944261551,
+ "learning_rate": 0.0006,
+ "loss": 3.842836856842041,
+ "step": 1937
+ },
+ {
+ "epoch": 26.92267365661861,
+ "grad_norm": 0.20017282664775848,
+ "learning_rate": 0.0006,
+ "loss": 3.791734457015991,
+ "step": 1938
+ },
+ {
+ "epoch": 26.936653560506773,
+ "grad_norm": 0.2082037627696991,
+ "learning_rate": 0.0006,
+ "loss": 3.7987842559814453,
+ "step": 1939
+ },
+ {
+ "epoch": 26.950633464394933,
+ "grad_norm": 0.21100632846355438,
+ "learning_rate": 0.0006,
+ "loss": 3.8033156394958496,
+ "step": 1940
+ },
+ {
+ "epoch": 26.964613368283093,
+ "grad_norm": 0.2091331034898758,
+ "learning_rate": 0.0006,
+ "loss": 3.8250908851623535,
+ "step": 1941
+ },
+ {
+ "epoch": 26.978593272171253,
+ "grad_norm": 0.19728544354438782,
+ "learning_rate": 0.0006,
+ "loss": 3.7934365272521973,
+ "step": 1942
+ },
+ {
+ "epoch": 26.992573176059416,
+ "grad_norm": 0.19266465306282043,
+ "learning_rate": 0.0006,
+ "loss": 3.8095879554748535,
+ "step": 1943
+ },
+ {
+ "epoch": 27.0,
+ "grad_norm": 0.2264554500579834,
+ "learning_rate": 0.0006,
+ "loss": 3.840135335922241,
+ "step": 1944
+ },
+ {
+ "epoch": 27.0,
+ "eval_loss": 4.046233654022217,
+ "eval_runtime": 44.0648,
+ "eval_samples_per_second": 55.418,
+ "eval_steps_per_second": 3.472,
+ "step": 1944
+ },
+ {
+ "epoch": 27.01397990388816,
+ "grad_norm": 0.24101831018924713,
+ "learning_rate": 0.0006,
+ "loss": 3.7463197708129883,
+ "step": 1945
+ },
+ {
+ "epoch": 27.027959807776323,
+ "grad_norm": 0.2917300760746002,
+ "learning_rate": 0.0006,
+ "loss": 3.769083261489868,
+ "step": 1946
+ },
+ {
+ "epoch": 27.041939711664483,
+ "grad_norm": 0.30864080786705017,
+ "learning_rate": 0.0006,
+ "loss": 3.7774248123168945,
+ "step": 1947
+ },
+ {
+ "epoch": 27.055919615552643,
+ "grad_norm": 0.28574317693710327,
+ "learning_rate": 0.0006,
+ "loss": 3.759530544281006,
+ "step": 1948
+ },
+ {
+ "epoch": 27.069899519440803,
+ "grad_norm": 0.23381628096103668,
+ "learning_rate": 0.0006,
+ "loss": 3.764347791671753,
+ "step": 1949
+ },
+ {
+ "epoch": 27.083879423328966,
+ "grad_norm": 0.2717961072921753,
+ "learning_rate": 0.0006,
+ "loss": 3.785306692123413,
+ "step": 1950
+ },
+ {
+ "epoch": 27.097859327217126,
+ "grad_norm": 0.2753375470638275,
+ "learning_rate": 0.0006,
+ "loss": 3.7511696815490723,
+ "step": 1951
+ },
+ {
+ "epoch": 27.111839231105286,
+ "grad_norm": 0.260250061750412,
+ "learning_rate": 0.0006,
+ "loss": 3.7775721549987793,
+ "step": 1952
+ },
+ {
+ "epoch": 27.125819134993446,
+ "grad_norm": 0.2462741732597351,
+ "learning_rate": 0.0006,
+ "loss": 3.775203227996826,
+ "step": 1953
+ },
+ {
+ "epoch": 27.13979903888161,
+ "grad_norm": 0.23599569499492645,
+ "learning_rate": 0.0006,
+ "loss": 3.7580947875976562,
+ "step": 1954
+ },
+ {
+ "epoch": 27.15377894276977,
+ "grad_norm": 0.21749968826770782,
+ "learning_rate": 0.0006,
+ "loss": 3.778254985809326,
+ "step": 1955
+ },
+ {
+ "epoch": 27.16775884665793,
+ "grad_norm": 0.22210343182086945,
+ "learning_rate": 0.0006,
+ "loss": 3.734727144241333,
+ "step": 1956
+ },
+ {
+ "epoch": 27.18173875054609,
+ "grad_norm": 0.23376141488552094,
+ "learning_rate": 0.0006,
+ "loss": 3.7892181873321533,
+ "step": 1957
+ },
+ {
+ "epoch": 27.195718654434252,
+ "grad_norm": 0.21751847863197327,
+ "learning_rate": 0.0006,
+ "loss": 3.801621913909912,
+ "step": 1958
+ },
+ {
+ "epoch": 27.209698558322412,
+ "grad_norm": 0.22995133697986603,
+ "learning_rate": 0.0006,
+ "loss": 3.8031363487243652,
+ "step": 1959
+ },
+ {
+ "epoch": 27.22367846221057,
+ "grad_norm": 0.22716350853443146,
+ "learning_rate": 0.0006,
+ "loss": 3.7591521739959717,
+ "step": 1960
+ },
+ {
+ "epoch": 27.23765836609873,
+ "grad_norm": 0.20819596946239471,
+ "learning_rate": 0.0006,
+ "loss": 3.7988929748535156,
+ "step": 1961
+ },
+ {
+ "epoch": 27.251638269986895,
+ "grad_norm": 0.19861504435539246,
+ "learning_rate": 0.0006,
+ "loss": 3.7752838134765625,
+ "step": 1962
+ },
+ {
+ "epoch": 27.265618173875055,
+ "grad_norm": 0.1959371268749237,
+ "learning_rate": 0.0006,
+ "loss": 3.7707290649414062,
+ "step": 1963
+ },
+ {
+ "epoch": 27.279598077763215,
+ "grad_norm": 0.18772225081920624,
+ "learning_rate": 0.0006,
+ "loss": 3.7714555263519287,
+ "step": 1964
+ },
+ {
+ "epoch": 27.293577981651374,
+ "grad_norm": 0.20839282870292664,
+ "learning_rate": 0.0006,
+ "loss": 3.7857258319854736,
+ "step": 1965
+ },
+ {
+ "epoch": 27.307557885539538,
+ "grad_norm": 0.22521957755088806,
+ "learning_rate": 0.0006,
+ "loss": 3.776909351348877,
+ "step": 1966
+ },
+ {
+ "epoch": 27.321537789427698,
+ "grad_norm": 0.19533076882362366,
+ "learning_rate": 0.0006,
+ "loss": 3.8152523040771484,
+ "step": 1967
+ },
+ {
+ "epoch": 27.335517693315857,
+ "grad_norm": 0.18678881227970123,
+ "learning_rate": 0.0006,
+ "loss": 3.751555919647217,
+ "step": 1968
+ },
+ {
+ "epoch": 27.34949759720402,
+ "grad_norm": 0.18257129192352295,
+ "learning_rate": 0.0006,
+ "loss": 3.7701754570007324,
+ "step": 1969
+ },
+ {
+ "epoch": 27.36347750109218,
+ "grad_norm": 0.18191468715667725,
+ "learning_rate": 0.0006,
+ "loss": 3.817451238632202,
+ "step": 1970
+ },
+ {
+ "epoch": 27.37745740498034,
+ "grad_norm": 0.18665607273578644,
+ "learning_rate": 0.0006,
+ "loss": 3.78645658493042,
+ "step": 1971
+ },
+ {
+ "epoch": 27.3914373088685,
+ "grad_norm": 0.19604510068893433,
+ "learning_rate": 0.0006,
+ "loss": 3.7735626697540283,
+ "step": 1972
+ },
+ {
+ "epoch": 27.405417212756664,
+ "grad_norm": 0.20136640965938568,
+ "learning_rate": 0.0006,
+ "loss": 3.77310848236084,
+ "step": 1973
+ },
+ {
+ "epoch": 27.419397116644824,
+ "grad_norm": 0.19314947724342346,
+ "learning_rate": 0.0006,
+ "loss": 3.8084068298339844,
+ "step": 1974
+ },
+ {
+ "epoch": 27.433377020532983,
+ "grad_norm": 0.20761604607105255,
+ "learning_rate": 0.0006,
+ "loss": 3.80732798576355,
+ "step": 1975
+ },
+ {
+ "epoch": 27.447356924421143,
+ "grad_norm": 0.2239987850189209,
+ "learning_rate": 0.0006,
+ "loss": 3.7950329780578613,
+ "step": 1976
+ },
+ {
+ "epoch": 27.461336828309307,
+ "grad_norm": 0.22146444022655487,
+ "learning_rate": 0.0006,
+ "loss": 3.7957234382629395,
+ "step": 1977
+ },
+ {
+ "epoch": 27.475316732197467,
+ "grad_norm": 0.23218585550785065,
+ "learning_rate": 0.0006,
+ "loss": 3.806377410888672,
+ "step": 1978
+ },
+ {
+ "epoch": 27.489296636085626,
+ "grad_norm": 0.23549026250839233,
+ "learning_rate": 0.0006,
+ "loss": 3.7833383083343506,
+ "step": 1979
+ },
+ {
+ "epoch": 27.503276539973786,
+ "grad_norm": 0.24219457805156708,
+ "learning_rate": 0.0006,
+ "loss": 3.8154187202453613,
+ "step": 1980
+ },
+ {
+ "epoch": 27.51725644386195,
+ "grad_norm": 0.23703953623771667,
+ "learning_rate": 0.0006,
+ "loss": 3.7846405506134033,
+ "step": 1981
+ },
+ {
+ "epoch": 27.53123634775011,
+ "grad_norm": 0.23596109449863434,
+ "learning_rate": 0.0006,
+ "loss": 3.7698163986206055,
+ "step": 1982
+ },
+ {
+ "epoch": 27.54521625163827,
+ "grad_norm": 0.23073506355285645,
+ "learning_rate": 0.0006,
+ "loss": 3.8114185333251953,
+ "step": 1983
+ },
+ {
+ "epoch": 27.55919615552643,
+ "grad_norm": 0.24761143326759338,
+ "learning_rate": 0.0006,
+ "loss": 3.7548117637634277,
+ "step": 1984
+ },
+ {
+ "epoch": 27.573176059414592,
+ "grad_norm": 0.2834068238735199,
+ "learning_rate": 0.0006,
+ "loss": 3.7990212440490723,
+ "step": 1985
+ },
+ {
+ "epoch": 27.587155963302752,
+ "grad_norm": 0.29774922132492065,
+ "learning_rate": 0.0006,
+ "loss": 3.7845072746276855,
+ "step": 1986
+ },
+ {
+ "epoch": 27.601135867190912,
+ "grad_norm": 0.2732089161872864,
+ "learning_rate": 0.0006,
+ "loss": 3.8050694465637207,
+ "step": 1987
+ },
+ {
+ "epoch": 27.615115771079076,
+ "grad_norm": 0.24433180689811707,
+ "learning_rate": 0.0006,
+ "loss": 3.762704372406006,
+ "step": 1988
+ },
+ {
+ "epoch": 27.629095674967235,
+ "grad_norm": 0.21340419352054596,
+ "learning_rate": 0.0006,
+ "loss": 3.826023817062378,
+ "step": 1989
+ },
+ {
+ "epoch": 27.643075578855395,
+ "grad_norm": 0.22518761456012726,
+ "learning_rate": 0.0006,
+ "loss": 3.7823970317840576,
+ "step": 1990
+ },
+ {
+ "epoch": 27.657055482743555,
+ "grad_norm": 0.2196940928697586,
+ "learning_rate": 0.0006,
+ "loss": 3.787463426589966,
+ "step": 1991
+ },
+ {
+ "epoch": 27.67103538663172,
+ "grad_norm": 0.21906471252441406,
+ "learning_rate": 0.0006,
+ "loss": 3.7856104373931885,
+ "step": 1992
+ },
+ {
+ "epoch": 27.68501529051988,
+ "grad_norm": 0.2280956357717514,
+ "learning_rate": 0.0006,
+ "loss": 3.7829794883728027,
+ "step": 1993
+ },
+ {
+ "epoch": 27.698995194408038,
+ "grad_norm": 0.22567005455493927,
+ "learning_rate": 0.0006,
+ "loss": 3.762316942214966,
+ "step": 1994
+ },
+ {
+ "epoch": 27.712975098296198,
+ "grad_norm": 0.21703341603279114,
+ "learning_rate": 0.0006,
+ "loss": 3.772535800933838,
+ "step": 1995
+ },
+ {
+ "epoch": 27.72695500218436,
+ "grad_norm": 0.20586732029914856,
+ "learning_rate": 0.0006,
+ "loss": 3.775930881500244,
+ "step": 1996
+ },
+ {
+ "epoch": 27.74093490607252,
+ "grad_norm": 0.2126319408416748,
+ "learning_rate": 0.0006,
+ "loss": 3.793353796005249,
+ "step": 1997
+ },
+ {
+ "epoch": 27.75491480996068,
+ "grad_norm": 0.19664280116558075,
+ "learning_rate": 0.0006,
+ "loss": 3.7721195220947266,
+ "step": 1998
+ },
+ {
+ "epoch": 27.76889471384884,
+ "grad_norm": 0.17695854604244232,
+ "learning_rate": 0.0006,
+ "loss": 3.7931227684020996,
+ "step": 1999
+ },
+ {
+ "epoch": 27.782874617737004,
+ "grad_norm": 0.1899620145559311,
+ "learning_rate": 0.0006,
+ "loss": 3.798692226409912,
+ "step": 2000
+ },
+ {
+ "epoch": 27.796854521625164,
+ "grad_norm": 0.20334762334823608,
+ "learning_rate": 0.0006,
+ "loss": 3.774670124053955,
+ "step": 2001
+ },
+ {
+ "epoch": 27.810834425513324,
+ "grad_norm": 0.21150588989257812,
+ "learning_rate": 0.0006,
+ "loss": 3.803859233856201,
+ "step": 2002
+ },
+ {
+ "epoch": 27.824814329401484,
+ "grad_norm": 0.20425523817539215,
+ "learning_rate": 0.0006,
+ "loss": 3.810410976409912,
+ "step": 2003
+ },
+ {
+ "epoch": 27.838794233289647,
+ "grad_norm": 0.20468413829803467,
+ "learning_rate": 0.0006,
+ "loss": 3.800917625427246,
+ "step": 2004
+ },
+ {
+ "epoch": 27.852774137177807,
+ "grad_norm": 0.2113286256790161,
+ "learning_rate": 0.0006,
+ "loss": 3.7581989765167236,
+ "step": 2005
+ },
+ {
+ "epoch": 27.866754041065967,
+ "grad_norm": 0.2098054736852646,
+ "learning_rate": 0.0006,
+ "loss": 3.7921502590179443,
+ "step": 2006
+ },
+ {
+ "epoch": 27.88073394495413,
+ "grad_norm": 0.21701586246490479,
+ "learning_rate": 0.0006,
+ "loss": 3.8166770935058594,
+ "step": 2007
+ },
+ {
+ "epoch": 27.89471384884229,
+ "grad_norm": 0.2086625099182129,
+ "learning_rate": 0.0006,
+ "loss": 3.7732229232788086,
+ "step": 2008
+ },
+ {
+ "epoch": 27.90869375273045,
+ "grad_norm": 0.2186812162399292,
+ "learning_rate": 0.0006,
+ "loss": 3.8067402839660645,
+ "step": 2009
+ },
+ {
+ "epoch": 27.92267365661861,
+ "grad_norm": 0.2168985903263092,
+ "learning_rate": 0.0006,
+ "loss": 3.798159122467041,
+ "step": 2010
+ },
+ {
+ "epoch": 27.936653560506773,
+ "grad_norm": 0.23713620007038116,
+ "learning_rate": 0.0006,
+ "loss": 3.7958693504333496,
+ "step": 2011
+ },
+ {
+ "epoch": 27.950633464394933,
+ "grad_norm": 0.23592841625213623,
+ "learning_rate": 0.0006,
+ "loss": 3.795126438140869,
+ "step": 2012
+ },
+ {
+ "epoch": 27.964613368283093,
+ "grad_norm": 0.22210197150707245,
+ "learning_rate": 0.0006,
+ "loss": 3.791013240814209,
+ "step": 2013
+ },
+ {
+ "epoch": 27.978593272171253,
+ "grad_norm": 0.23190008103847504,
+ "learning_rate": 0.0006,
+ "loss": 3.813408374786377,
+ "step": 2014
+ },
+ {
+ "epoch": 27.992573176059416,
+ "grad_norm": 0.22158131003379822,
+ "learning_rate": 0.0006,
+ "loss": 3.7975716590881348,
+ "step": 2015
+ },
+ {
+ "epoch": 28.0,
+ "grad_norm": 0.2300519198179245,
+ "learning_rate": 0.0006,
+ "loss": 3.776214838027954,
+ "step": 2016
+ },
+ {
+ "epoch": 28.0,
+ "eval_loss": 4.04406213760376,
+ "eval_runtime": 44.0285,
+ "eval_samples_per_second": 55.464,
+ "eval_steps_per_second": 3.475,
+ "step": 2016
+ },
+ {
+ "epoch": 28.01397990388816,
+ "grad_norm": 0.21007688343524933,
+ "learning_rate": 0.0006,
+ "loss": 3.7366907596588135,
+ "step": 2017
+ },
+ {
+ "epoch": 28.027959807776323,
+ "grad_norm": 0.1941644549369812,
+ "learning_rate": 0.0006,
+ "loss": 3.744373321533203,
+ "step": 2018
+ },
+ {
+ "epoch": 28.041939711664483,
+ "grad_norm": 0.21308493614196777,
+ "learning_rate": 0.0006,
+ "loss": 3.7650012969970703,
+ "step": 2019
+ },
+ {
+ "epoch": 28.055919615552643,
+ "grad_norm": 0.20114868879318237,
+ "learning_rate": 0.0006,
+ "loss": 3.7652382850646973,
+ "step": 2020
+ },
+ {
+ "epoch": 28.069899519440803,
+ "grad_norm": 0.20266319811344147,
+ "learning_rate": 0.0006,
+ "loss": 3.7710442543029785,
+ "step": 2021
+ },
+ {
+ "epoch": 28.083879423328966,
+ "grad_norm": 0.205102801322937,
+ "learning_rate": 0.0006,
+ "loss": 3.7515463829040527,
+ "step": 2022
+ },
+ {
+ "epoch": 28.097859327217126,
+ "grad_norm": 0.22002041339874268,
+ "learning_rate": 0.0006,
+ "loss": 3.762019157409668,
+ "step": 2023
+ },
+ {
+ "epoch": 28.111839231105286,
+ "grad_norm": 0.2063235342502594,
+ "learning_rate": 0.0006,
+ "loss": 3.765453338623047,
+ "step": 2024
+ },
+ {
+ "epoch": 28.125819134993446,
+ "grad_norm": 0.19145619869232178,
+ "learning_rate": 0.0006,
+ "loss": 3.769411325454712,
+ "step": 2025
+ },
+ {
+ "epoch": 28.13979903888161,
+ "grad_norm": 0.19308455288410187,
+ "learning_rate": 0.0006,
+ "loss": 3.8009989261627197,
+ "step": 2026
+ },
+ {
+ "epoch": 28.15377894276977,
+ "grad_norm": 0.220510333776474,
+ "learning_rate": 0.0006,
+ "loss": 3.7582602500915527,
+ "step": 2027
+ },
+ {
+ "epoch": 28.16775884665793,
+ "grad_norm": 0.22855883836746216,
+ "learning_rate": 0.0006,
+ "loss": 3.803917407989502,
+ "step": 2028
+ },
+ {
+ "epoch": 28.18173875054609,
+ "grad_norm": 0.24206340312957764,
+ "learning_rate": 0.0006,
+ "loss": 3.764101028442383,
+ "step": 2029
+ },
+ {
+ "epoch": 28.195718654434252,
+ "grad_norm": 0.23973612487316132,
+ "learning_rate": 0.0006,
+ "loss": 3.787308931350708,
+ "step": 2030
+ },
+ {
+ "epoch": 28.209698558322412,
+ "grad_norm": 0.21400697529315948,
+ "learning_rate": 0.0006,
+ "loss": 3.7706117630004883,
+ "step": 2031
+ },
+ {
+ "epoch": 28.22367846221057,
+ "grad_norm": 0.21983976662158966,
+ "learning_rate": 0.0006,
+ "loss": 3.772731304168701,
+ "step": 2032
+ },
+ {
+ "epoch": 28.23765836609873,
+ "grad_norm": 0.22427113354206085,
+ "learning_rate": 0.0006,
+ "loss": 3.7724413871765137,
+ "step": 2033
+ },
+ {
+ "epoch": 28.251638269986895,
+ "grad_norm": 0.23665079474449158,
+ "learning_rate": 0.0006,
+ "loss": 3.769845962524414,
+ "step": 2034
+ },
+ {
+ "epoch": 28.265618173875055,
+ "grad_norm": 0.22663180530071259,
+ "learning_rate": 0.0006,
+ "loss": 3.764380931854248,
+ "step": 2035
+ },
+ {
+ "epoch": 28.279598077763215,
+ "grad_norm": 0.21094927191734314,
+ "learning_rate": 0.0006,
+ "loss": 3.7598326206207275,
+ "step": 2036
+ },
+ {
+ "epoch": 28.293577981651374,
+ "grad_norm": 0.20419518649578094,
+ "learning_rate": 0.0006,
+ "loss": 3.7737207412719727,
+ "step": 2037
+ },
+ {
+ "epoch": 28.307557885539538,
+ "grad_norm": 0.2171909660100937,
+ "learning_rate": 0.0006,
+ "loss": 3.7499468326568604,
+ "step": 2038
+ },
+ {
+ "epoch": 28.321537789427698,
+ "grad_norm": 0.22749298810958862,
+ "learning_rate": 0.0006,
+ "loss": 3.767536163330078,
+ "step": 2039
+ },
+ {
+ "epoch": 28.335517693315857,
+ "grad_norm": 0.22821909189224243,
+ "learning_rate": 0.0006,
+ "loss": 3.744386672973633,
+ "step": 2040
+ },
+ {
+ "epoch": 28.34949759720402,
+ "grad_norm": 0.2227880209684372,
+ "learning_rate": 0.0006,
+ "loss": 3.72955322265625,
+ "step": 2041
+ },
+ {
+ "epoch": 28.36347750109218,
+ "grad_norm": 0.22204327583312988,
+ "learning_rate": 0.0006,
+ "loss": 3.793854236602783,
+ "step": 2042
+ },
+ {
+ "epoch": 28.37745740498034,
+ "grad_norm": 0.21621409058570862,
+ "learning_rate": 0.0006,
+ "loss": 3.775379180908203,
+ "step": 2043
+ },
+ {
+ "epoch": 28.3914373088685,
+ "grad_norm": 0.2439221441745758,
+ "learning_rate": 0.0006,
+ "loss": 3.727464199066162,
+ "step": 2044
+ },
+ {
+ "epoch": 28.405417212756664,
+ "grad_norm": 0.24408605694770813,
+ "learning_rate": 0.0006,
+ "loss": 3.761747360229492,
+ "step": 2045
+ },
+ {
+ "epoch": 28.419397116644824,
+ "grad_norm": 0.26118648052215576,
+ "learning_rate": 0.0006,
+ "loss": 3.7587313652038574,
+ "step": 2046
+ },
+ {
+ "epoch": 28.433377020532983,
+ "grad_norm": 0.25948166847229004,
+ "learning_rate": 0.0006,
+ "loss": 3.7698440551757812,
+ "step": 2047
+ },
+ {
+ "epoch": 28.447356924421143,
+ "grad_norm": 0.26413780450820923,
+ "learning_rate": 0.0006,
+ "loss": 3.799107551574707,
+ "step": 2048
+ },
+ {
+ "epoch": 28.461336828309307,
+ "grad_norm": 0.2687148153781891,
+ "learning_rate": 0.0006,
+ "loss": 3.7564382553100586,
+ "step": 2049
+ },
+ {
+ "epoch": 28.475316732197467,
+ "grad_norm": 0.2676694691181183,
+ "learning_rate": 0.0006,
+ "loss": 3.754267692565918,
+ "step": 2050
+ },
+ {
+ "epoch": 28.489296636085626,
+ "grad_norm": 0.27275168895721436,
+ "learning_rate": 0.0006,
+ "loss": 3.802988052368164,
+ "step": 2051
+ },
+ {
+ "epoch": 28.503276539973786,
+ "grad_norm": 0.28783538937568665,
+ "learning_rate": 0.0006,
+ "loss": 3.762540817260742,
+ "step": 2052
+ },
+ {
+ "epoch": 28.51725644386195,
+ "grad_norm": 0.2628997266292572,
+ "learning_rate": 0.0006,
+ "loss": 3.7933349609375,
+ "step": 2053
+ },
+ {
+ "epoch": 28.53123634775011,
+ "grad_norm": 0.2498515099287033,
+ "learning_rate": 0.0006,
+ "loss": 3.7773094177246094,
+ "step": 2054
+ },
+ {
+ "epoch": 28.54521625163827,
+ "grad_norm": 0.22625942528247833,
+ "learning_rate": 0.0006,
+ "loss": 3.803457021713257,
+ "step": 2055
+ },
+ {
+ "epoch": 28.55919615552643,
+ "grad_norm": 0.21488751471042633,
+ "learning_rate": 0.0006,
+ "loss": 3.78924560546875,
+ "step": 2056
+ },
+ {
+ "epoch": 28.573176059414592,
+ "grad_norm": 0.22041267156600952,
+ "learning_rate": 0.0006,
+ "loss": 3.79361629486084,
+ "step": 2057
+ },
+ {
+ "epoch": 28.587155963302752,
+ "grad_norm": 0.23164816200733185,
+ "learning_rate": 0.0006,
+ "loss": 3.735037326812744,
+ "step": 2058
+ },
+ {
+ "epoch": 28.601135867190912,
+ "grad_norm": 0.22371916472911835,
+ "learning_rate": 0.0006,
+ "loss": 3.731417179107666,
+ "step": 2059
+ },
+ {
+ "epoch": 28.615115771079076,
+ "grad_norm": 0.2280314862728119,
+ "learning_rate": 0.0006,
+ "loss": 3.796154499053955,
+ "step": 2060
+ },
+ {
+ "epoch": 28.629095674967235,
+ "grad_norm": 0.21386604011058807,
+ "learning_rate": 0.0006,
+ "loss": 3.778648614883423,
+ "step": 2061
+ },
+ {
+ "epoch": 28.643075578855395,
+ "grad_norm": 0.20433050394058228,
+ "learning_rate": 0.0006,
+ "loss": 3.772826910018921,
+ "step": 2062
+ },
+ {
+ "epoch": 28.657055482743555,
+ "grad_norm": 0.2049262523651123,
+ "learning_rate": 0.0006,
+ "loss": 3.7410364151000977,
+ "step": 2063
+ },
+ {
+ "epoch": 28.67103538663172,
+ "grad_norm": 0.22041259706020355,
+ "learning_rate": 0.0006,
+ "loss": 3.796724319458008,
+ "step": 2064
+ },
+ {
+ "epoch": 28.68501529051988,
+ "grad_norm": 0.2018800675868988,
+ "learning_rate": 0.0006,
+ "loss": 3.775252342224121,
+ "step": 2065
+ },
+ {
+ "epoch": 28.698995194408038,
+ "grad_norm": 0.2159280925989151,
+ "learning_rate": 0.0006,
+ "loss": 3.766021251678467,
+ "step": 2066
+ },
+ {
+ "epoch": 28.712975098296198,
+ "grad_norm": 0.2072775512933731,
+ "learning_rate": 0.0006,
+ "loss": 3.765397548675537,
+ "step": 2067
+ },
+ {
+ "epoch": 28.72695500218436,
+ "grad_norm": 0.19592848420143127,
+ "learning_rate": 0.0006,
+ "loss": 3.8151614665985107,
+ "step": 2068
+ },
+ {
+ "epoch": 28.74093490607252,
+ "grad_norm": 0.19266322255134583,
+ "learning_rate": 0.0006,
+ "loss": 3.774945020675659,
+ "step": 2069
+ },
+ {
+ "epoch": 28.75491480996068,
+ "grad_norm": 0.19442392885684967,
+ "learning_rate": 0.0006,
+ "loss": 3.816283702850342,
+ "step": 2070
+ },
+ {
+ "epoch": 28.76889471384884,
+ "grad_norm": 0.19080746173858643,
+ "learning_rate": 0.0006,
+ "loss": 3.7784247398376465,
+ "step": 2071
+ },
+ {
+ "epoch": 28.782874617737004,
+ "grad_norm": 0.20150451362133026,
+ "learning_rate": 0.0006,
+ "loss": 3.7710249423980713,
+ "step": 2072
+ },
+ {
+ "epoch": 28.796854521625164,
+ "grad_norm": 0.1835816204547882,
+ "learning_rate": 0.0006,
+ "loss": 3.750032901763916,
+ "step": 2073
+ },
+ {
+ "epoch": 28.810834425513324,
+ "grad_norm": 0.1855502873659134,
+ "learning_rate": 0.0006,
+ "loss": 3.7276318073272705,
+ "step": 2074
+ },
+ {
+ "epoch": 28.824814329401484,
+ "grad_norm": 0.18683169782161713,
+ "learning_rate": 0.0006,
+ "loss": 3.7516555786132812,
+ "step": 2075
+ },
+ {
+ "epoch": 28.838794233289647,
+ "grad_norm": 0.2034577578306198,
+ "learning_rate": 0.0006,
+ "loss": 3.749875068664551,
+ "step": 2076
+ },
+ {
+ "epoch": 28.852774137177807,
+ "grad_norm": 0.2234230488538742,
+ "learning_rate": 0.0006,
+ "loss": 3.791429042816162,
+ "step": 2077
+ },
+ {
+ "epoch": 28.866754041065967,
+ "grad_norm": 0.25600525736808777,
+ "learning_rate": 0.0006,
+ "loss": 3.7769298553466797,
+ "step": 2078
+ },
+ {
+ "epoch": 28.88073394495413,
+ "grad_norm": 0.2741529643535614,
+ "learning_rate": 0.0006,
+ "loss": 3.771848201751709,
+ "step": 2079
+ },
+ {
+ "epoch": 28.89471384884229,
+ "grad_norm": 0.2710304260253906,
+ "learning_rate": 0.0006,
+ "loss": 3.8235626220703125,
+ "step": 2080
+ },
+ {
+ "epoch": 28.90869375273045,
+ "grad_norm": 0.25497519969940186,
+ "learning_rate": 0.0006,
+ "loss": 3.811288595199585,
+ "step": 2081
+ },
+ {
+ "epoch": 28.92267365661861,
+ "grad_norm": 0.25689464807510376,
+ "learning_rate": 0.0006,
+ "loss": 3.7848939895629883,
+ "step": 2082
+ },
+ {
+ "epoch": 28.936653560506773,
+ "grad_norm": 0.2794921398162842,
+ "learning_rate": 0.0006,
+ "loss": 3.7836732864379883,
+ "step": 2083
+ },
+ {
+ "epoch": 28.950633464394933,
+ "grad_norm": 0.24730202555656433,
+ "learning_rate": 0.0006,
+ "loss": 3.7703347206115723,
+ "step": 2084
+ },
+ {
+ "epoch": 28.964613368283093,
+ "grad_norm": 0.21078833937644958,
+ "learning_rate": 0.0006,
+ "loss": 3.7521653175354004,
+ "step": 2085
+ },
+ {
+ "epoch": 28.978593272171253,
+ "grad_norm": 0.2188870757818222,
+ "learning_rate": 0.0006,
+ "loss": 3.769604206085205,
+ "step": 2086
+ },
+ {
+ "epoch": 28.992573176059416,
+ "grad_norm": 0.20447929203510284,
+ "learning_rate": 0.0006,
+ "loss": 3.7842764854431152,
+ "step": 2087
+ },
+ {
+ "epoch": 29.0,
+ "grad_norm": 0.21607689559459686,
+ "learning_rate": 0.0006,
+ "loss": 3.7428855895996094,
+ "step": 2088
+ },
+ {
+ "epoch": 29.0,
+ "eval_loss": 4.0355753898620605,
+ "eval_runtime": 44.1435,
+ "eval_samples_per_second": 55.32,
+ "eval_steps_per_second": 3.466,
+ "step": 2088
+ },
+ {
+ "epoch": 29.01397990388816,
+ "grad_norm": 0.21270133554935455,
+ "learning_rate": 0.0006,
+ "loss": 3.7548413276672363,
+ "step": 2089
+ },
+ {
+ "epoch": 29.027959807776323,
+ "grad_norm": 0.21576301753520966,
+ "learning_rate": 0.0006,
+ "loss": 3.754613161087036,
+ "step": 2090
+ },
+ {
+ "epoch": 29.041939711664483,
+ "grad_norm": 0.2162923663854599,
+ "learning_rate": 0.0006,
+ "loss": 3.755772590637207,
+ "step": 2091
+ },
+ {
+ "epoch": 29.055919615552643,
+ "grad_norm": 0.22236663103103638,
+ "learning_rate": 0.0006,
+ "loss": 3.743497848510742,
+ "step": 2092
+ },
+ {
+ "epoch": 29.069899519440803,
+ "grad_norm": 0.2391042858362198,
+ "learning_rate": 0.0006,
+ "loss": 3.749204158782959,
+ "step": 2093
+ },
+ {
+ "epoch": 29.083879423328966,
+ "grad_norm": 0.23387965559959412,
+ "learning_rate": 0.0006,
+ "loss": 3.7286791801452637,
+ "step": 2094
+ },
+ {
+ "epoch": 29.097859327217126,
+ "grad_norm": 0.23677746951580048,
+ "learning_rate": 0.0006,
+ "loss": 3.755279541015625,
+ "step": 2095
+ },
+ {
+ "epoch": 29.111839231105286,
+ "grad_norm": 0.22771087288856506,
+ "learning_rate": 0.0006,
+ "loss": 3.722566604614258,
+ "step": 2096
+ },
+ {
+ "epoch": 29.125819134993446,
+ "grad_norm": 0.2132875621318817,
+ "learning_rate": 0.0006,
+ "loss": 3.748939037322998,
+ "step": 2097
+ },
+ {
+ "epoch": 29.13979903888161,
+ "grad_norm": 0.2033746838569641,
+ "learning_rate": 0.0006,
+ "loss": 3.7393670082092285,
+ "step": 2098
+ },
+ {
+ "epoch": 29.15377894276977,
+ "grad_norm": 0.1997237652540207,
+ "learning_rate": 0.0006,
+ "loss": 3.718498945236206,
+ "step": 2099
+ },
+ {
+ "epoch": 29.16775884665793,
+ "grad_norm": 0.19102543592453003,
+ "learning_rate": 0.0006,
+ "loss": 3.748950719833374,
+ "step": 2100
+ },
+ {
+ "epoch": 29.18173875054609,
+ "grad_norm": 0.19801580905914307,
+ "learning_rate": 0.0006,
+ "loss": 3.7123501300811768,
+ "step": 2101
+ },
+ {
+ "epoch": 29.195718654434252,
+ "grad_norm": 0.20186249911785126,
+ "learning_rate": 0.0006,
+ "loss": 3.7632713317871094,
+ "step": 2102
+ },
+ {
+ "epoch": 29.209698558322412,
+ "grad_norm": 0.22725415229797363,
+ "learning_rate": 0.0006,
+ "loss": 3.753506660461426,
+ "step": 2103
+ },
+ {
+ "epoch": 29.22367846221057,
+ "grad_norm": 0.23138119280338287,
+ "learning_rate": 0.0006,
+ "loss": 3.753282070159912,
+ "step": 2104
+ },
+ {
+ "epoch": 29.23765836609873,
+ "grad_norm": 0.23171944916248322,
+ "learning_rate": 0.0006,
+ "loss": 3.73783540725708,
+ "step": 2105
+ },
+ {
+ "epoch": 29.251638269986895,
+ "grad_norm": 0.2166522741317749,
+ "learning_rate": 0.0006,
+ "loss": 3.778803825378418,
+ "step": 2106
+ },
+ {
+ "epoch": 29.265618173875055,
+ "grad_norm": 0.2009056806564331,
+ "learning_rate": 0.0006,
+ "loss": 3.738290786743164,
+ "step": 2107
+ },
+ {
+ "epoch": 29.279598077763215,
+ "grad_norm": 0.19451597332954407,
+ "learning_rate": 0.0006,
+ "loss": 3.7553348541259766,
+ "step": 2108
+ },
+ {
+ "epoch": 29.293577981651374,
+ "grad_norm": 0.19246742129325867,
+ "learning_rate": 0.0006,
+ "loss": 3.7321622371673584,
+ "step": 2109
+ },
+ {
+ "epoch": 29.307557885539538,
+ "grad_norm": 0.18917441368103027,
+ "learning_rate": 0.0006,
+ "loss": 3.7408928871154785,
+ "step": 2110
+ },
+ {
+ "epoch": 29.321537789427698,
+ "grad_norm": 0.19067776203155518,
+ "learning_rate": 0.0006,
+ "loss": 3.780052900314331,
+ "step": 2111
+ },
+ {
+ "epoch": 29.335517693315857,
+ "grad_norm": 0.18849676847457886,
+ "learning_rate": 0.0006,
+ "loss": 3.749375820159912,
+ "step": 2112
+ },
+ {
+ "epoch": 29.34949759720402,
+ "grad_norm": 0.19713285565376282,
+ "learning_rate": 0.0006,
+ "loss": 3.7128982543945312,
+ "step": 2113
+ },
+ {
+ "epoch": 29.36347750109218,
+ "grad_norm": 0.196336030960083,
+ "learning_rate": 0.0006,
+ "loss": 3.7528390884399414,
+ "step": 2114
+ },
+ {
+ "epoch": 29.37745740498034,
+ "grad_norm": 0.19574350118637085,
+ "learning_rate": 0.0006,
+ "loss": 3.7105777263641357,
+ "step": 2115
+ },
+ {
+ "epoch": 29.3914373088685,
+ "grad_norm": 0.20396539568901062,
+ "learning_rate": 0.0006,
+ "loss": 3.782249927520752,
+ "step": 2116
+ },
+ {
+ "epoch": 29.405417212756664,
+ "grad_norm": 0.24702422320842743,
+ "learning_rate": 0.0006,
+ "loss": 3.7685647010803223,
+ "step": 2117
+ },
+ {
+ "epoch": 29.419397116644824,
+ "grad_norm": 0.2729755640029907,
+ "learning_rate": 0.0006,
+ "loss": 3.7731213569641113,
+ "step": 2118
+ },
+ {
+ "epoch": 29.433377020532983,
+ "grad_norm": 0.29240545630455017,
+ "learning_rate": 0.0006,
+ "loss": 3.770162343978882,
+ "step": 2119
+ },
+ {
+ "epoch": 29.447356924421143,
+ "grad_norm": 0.2469114065170288,
+ "learning_rate": 0.0006,
+ "loss": 3.764681339263916,
+ "step": 2120
+ },
+ {
+ "epoch": 29.461336828309307,
+ "grad_norm": 0.19837401807308197,
+ "learning_rate": 0.0006,
+ "loss": 3.7600088119506836,
+ "step": 2121
+ },
+ {
+ "epoch": 29.475316732197467,
+ "grad_norm": 0.21266621351242065,
+ "learning_rate": 0.0006,
+ "loss": 3.769454002380371,
+ "step": 2122
+ },
+ {
+ "epoch": 29.489296636085626,
+ "grad_norm": 0.25908344984054565,
+ "learning_rate": 0.0006,
+ "loss": 3.7230491638183594,
+ "step": 2123
+ },
+ {
+ "epoch": 29.503276539973786,
+ "grad_norm": 0.2914169728755951,
+ "learning_rate": 0.0006,
+ "loss": 3.767849922180176,
+ "step": 2124
+ },
+ {
+ "epoch": 29.51725644386195,
+ "grad_norm": 0.2796176075935364,
+ "learning_rate": 0.0006,
+ "loss": 3.741734266281128,
+ "step": 2125
+ },
+ {
+ "epoch": 29.53123634775011,
+ "grad_norm": 0.276309996843338,
+ "learning_rate": 0.0006,
+ "loss": 3.8001914024353027,
+ "step": 2126
+ },
+ {
+ "epoch": 29.54521625163827,
+ "grad_norm": 0.26512834429740906,
+ "learning_rate": 0.0006,
+ "loss": 3.7741384506225586,
+ "step": 2127
+ },
+ {
+ "epoch": 29.55919615552643,
+ "grad_norm": 0.26514101028442383,
+ "learning_rate": 0.0006,
+ "loss": 3.7466959953308105,
+ "step": 2128
+ },
+ {
+ "epoch": 29.573176059414592,
+ "grad_norm": 0.24121330678462982,
+ "learning_rate": 0.0006,
+ "loss": 3.759542465209961,
+ "step": 2129
+ },
+ {
+ "epoch": 29.587155963302752,
+ "grad_norm": 0.2264087200164795,
+ "learning_rate": 0.0006,
+ "loss": 3.791344165802002,
+ "step": 2130
+ },
+ {
+ "epoch": 29.601135867190912,
+ "grad_norm": 0.21915403008460999,
+ "learning_rate": 0.0006,
+ "loss": 3.7540485858917236,
+ "step": 2131
+ },
+ {
+ "epoch": 29.615115771079076,
+ "grad_norm": 0.20453961193561554,
+ "learning_rate": 0.0006,
+ "loss": 3.765617609024048,
+ "step": 2132
+ },
+ {
+ "epoch": 29.629095674967235,
+ "grad_norm": 0.2194051444530487,
+ "learning_rate": 0.0006,
+ "loss": 3.7664294242858887,
+ "step": 2133
+ },
+ {
+ "epoch": 29.643075578855395,
+ "grad_norm": 0.21926000714302063,
+ "learning_rate": 0.0006,
+ "loss": 3.7551684379577637,
+ "step": 2134
+ },
+ {
+ "epoch": 29.657055482743555,
+ "grad_norm": 0.20835602283477783,
+ "learning_rate": 0.0006,
+ "loss": 3.7654306888580322,
+ "step": 2135
+ },
+ {
+ "epoch": 29.67103538663172,
+ "grad_norm": 0.23094356060028076,
+ "learning_rate": 0.0006,
+ "loss": 3.7847180366516113,
+ "step": 2136
+ },
+ {
+ "epoch": 29.68501529051988,
+ "grad_norm": 0.23871271312236786,
+ "learning_rate": 0.0006,
+ "loss": 3.789036273956299,
+ "step": 2137
+ },
+ {
+ "epoch": 29.698995194408038,
+ "grad_norm": 0.22263272106647491,
+ "learning_rate": 0.0006,
+ "loss": 3.7677512168884277,
+ "step": 2138
+ },
+ {
+ "epoch": 29.712975098296198,
+ "grad_norm": 0.2293892651796341,
+ "learning_rate": 0.0006,
+ "loss": 3.777097225189209,
+ "step": 2139
+ },
+ {
+ "epoch": 29.72695500218436,
+ "grad_norm": 0.21068568527698517,
+ "learning_rate": 0.0006,
+ "loss": 3.785336494445801,
+ "step": 2140
+ },
+ {
+ "epoch": 29.74093490607252,
+ "grad_norm": 0.19600282609462738,
+ "learning_rate": 0.0006,
+ "loss": 3.7363505363464355,
+ "step": 2141
+ },
+ {
+ "epoch": 29.75491480996068,
+ "grad_norm": 0.20053936541080475,
+ "learning_rate": 0.0006,
+ "loss": 3.753859043121338,
+ "step": 2142
+ },
+ {
+ "epoch": 29.76889471384884,
+ "grad_norm": 0.22790539264678955,
+ "learning_rate": 0.0006,
+ "loss": 3.749492645263672,
+ "step": 2143
+ },
+ {
+ "epoch": 29.782874617737004,
+ "grad_norm": 0.26042407751083374,
+ "learning_rate": 0.0006,
+ "loss": 3.7905430793762207,
+ "step": 2144
+ },
+ {
+ "epoch": 29.796854521625164,
+ "grad_norm": 0.2753683626651764,
+ "learning_rate": 0.0006,
+ "loss": 3.756442070007324,
+ "step": 2145
+ },
+ {
+ "epoch": 29.810834425513324,
+ "grad_norm": 0.2795007526874542,
+ "learning_rate": 0.0006,
+ "loss": 3.7691903114318848,
+ "step": 2146
+ },
+ {
+ "epoch": 29.824814329401484,
+ "grad_norm": 0.2461438924074173,
+ "learning_rate": 0.0006,
+ "loss": 3.7573065757751465,
+ "step": 2147
+ },
+ {
+ "epoch": 29.838794233289647,
+ "grad_norm": 0.21051941812038422,
+ "learning_rate": 0.0006,
+ "loss": 3.7540078163146973,
+ "step": 2148
+ },
+ {
+ "epoch": 29.852774137177807,
+ "grad_norm": 0.197485089302063,
+ "learning_rate": 0.0006,
+ "loss": 3.734403133392334,
+ "step": 2149
+ },
+ {
+ "epoch": 29.866754041065967,
+ "grad_norm": 0.203064426779747,
+ "learning_rate": 0.0006,
+ "loss": 3.7888364791870117,
+ "step": 2150
+ },
+ {
+ "epoch": 29.88073394495413,
+ "grad_norm": 0.2000301480293274,
+ "learning_rate": 0.0006,
+ "loss": 3.7444958686828613,
+ "step": 2151
+ },
+ {
+ "epoch": 29.89471384884229,
+ "grad_norm": 0.20492053031921387,
+ "learning_rate": 0.0006,
+ "loss": 3.7878224849700928,
+ "step": 2152
+ },
+ {
+ "epoch": 29.90869375273045,
+ "grad_norm": 0.22565388679504395,
+ "learning_rate": 0.0006,
+ "loss": 3.7539188861846924,
+ "step": 2153
+ },
+ {
+ "epoch": 29.92267365661861,
+ "grad_norm": 0.20258226990699768,
+ "learning_rate": 0.0006,
+ "loss": 3.7491893768310547,
+ "step": 2154
+ },
+ {
+ "epoch": 29.936653560506773,
+ "grad_norm": 0.20028717815876007,
+ "learning_rate": 0.0006,
+ "loss": 3.7497997283935547,
+ "step": 2155
+ },
+ {
+ "epoch": 29.950633464394933,
+ "grad_norm": 0.2246360331773758,
+ "learning_rate": 0.0006,
+ "loss": 3.773930788040161,
+ "step": 2156
+ },
+ {
+ "epoch": 29.964613368283093,
+ "grad_norm": 0.22432482242584229,
+ "learning_rate": 0.0006,
+ "loss": 3.7926344871520996,
+ "step": 2157
+ },
+ {
+ "epoch": 29.978593272171253,
+ "grad_norm": 0.2165718674659729,
+ "learning_rate": 0.0006,
+ "loss": 3.7436647415161133,
+ "step": 2158
+ },
+ {
+ "epoch": 29.992573176059416,
+ "grad_norm": 0.20629167556762695,
+ "learning_rate": 0.0006,
+ "loss": 3.7619552612304688,
+ "step": 2159
+ },
+ {
+ "epoch": 30.0,
+ "grad_norm": 0.24264708161354065,
+ "learning_rate": 0.0006,
+ "loss": 3.772679328918457,
+ "step": 2160
+ },
+ {
+ "epoch": 30.0,
+ "eval_loss": 4.024484634399414,
+ "eval_runtime": 44.3611,
+ "eval_samples_per_second": 55.048,
+ "eval_steps_per_second": 3.449,
+ "step": 2160
+ },
+ {
+ "epoch": 30.01397990388816,
+ "grad_norm": 0.2373432070016861,
+ "learning_rate": 0.0006,
+ "loss": 3.7423200607299805,
+ "step": 2161
+ },
+ {
+ "epoch": 30.027959807776323,
+ "grad_norm": 0.26835134625434875,
+ "learning_rate": 0.0006,
+ "loss": 3.7215471267700195,
+ "step": 2162
+ },
+ {
+ "epoch": 30.041939711664483,
+ "grad_norm": 0.2743220329284668,
+ "learning_rate": 0.0006,
+ "loss": 3.7190256118774414,
+ "step": 2163
+ },
+ {
+ "epoch": 30.055919615552643,
+ "grad_norm": 0.2292490005493164,
+ "learning_rate": 0.0006,
+ "loss": 3.731855869293213,
+ "step": 2164
+ },
+ {
+ "epoch": 30.069899519440803,
+ "grad_norm": 0.22704607248306274,
+ "learning_rate": 0.0006,
+ "loss": 3.7649693489074707,
+ "step": 2165
+ },
+ {
+ "epoch": 30.083879423328966,
+ "grad_norm": 0.23255930840969086,
+ "learning_rate": 0.0006,
+ "loss": 3.7547781467437744,
+ "step": 2166
+ },
+ {
+ "epoch": 30.097859327217126,
+ "grad_norm": 0.2068684846162796,
+ "learning_rate": 0.0006,
+ "loss": 3.7343382835388184,
+ "step": 2167
+ },
+ {
+ "epoch": 30.111839231105286,
+ "grad_norm": 0.22523464262485504,
+ "learning_rate": 0.0006,
+ "loss": 3.7304530143737793,
+ "step": 2168
+ },
+ {
+ "epoch": 30.125819134993446,
+ "grad_norm": 0.24650199711322784,
+ "learning_rate": 0.0006,
+ "loss": 3.7414379119873047,
+ "step": 2169
+ },
+ {
+ "epoch": 30.13979903888161,
+ "grad_norm": 0.2392522394657135,
+ "learning_rate": 0.0006,
+ "loss": 3.754481792449951,
+ "step": 2170
+ },
+ {
+ "epoch": 30.15377894276977,
+ "grad_norm": 0.21174749732017517,
+ "learning_rate": 0.0006,
+ "loss": 3.7249929904937744,
+ "step": 2171
+ },
+ {
+ "epoch": 30.16775884665793,
+ "grad_norm": 0.20847836136817932,
+ "learning_rate": 0.0006,
+ "loss": 3.7146458625793457,
+ "step": 2172
+ },
+ {
+ "epoch": 30.18173875054609,
+ "grad_norm": 0.22131472826004028,
+ "learning_rate": 0.0006,
+ "loss": 3.7569539546966553,
+ "step": 2173
+ },
+ {
+ "epoch": 30.195718654434252,
+ "grad_norm": 0.23528096079826355,
+ "learning_rate": 0.0006,
+ "loss": 3.743435859680176,
+ "step": 2174
+ },
+ {
+ "epoch": 30.209698558322412,
+ "grad_norm": 0.2382429540157318,
+ "learning_rate": 0.0006,
+ "loss": 3.745307445526123,
+ "step": 2175
+ },
+ {
+ "epoch": 30.22367846221057,
+ "grad_norm": 0.2477114498615265,
+ "learning_rate": 0.0006,
+ "loss": 3.742305278778076,
+ "step": 2176
+ },
+ {
+ "epoch": 30.23765836609873,
+ "grad_norm": 0.24507801234722137,
+ "learning_rate": 0.0006,
+ "loss": 3.733564853668213,
+ "step": 2177
+ },
+ {
+ "epoch": 30.251638269986895,
+ "grad_norm": 0.2266329675912857,
+ "learning_rate": 0.0006,
+ "loss": 3.747429370880127,
+ "step": 2178
+ },
+ {
+ "epoch": 30.265618173875055,
+ "grad_norm": 0.22146396338939667,
+ "learning_rate": 0.0006,
+ "loss": 3.738630533218384,
+ "step": 2179
+ },
+ {
+ "epoch": 30.279598077763215,
+ "grad_norm": 0.20202279090881348,
+ "learning_rate": 0.0006,
+ "loss": 3.74582839012146,
+ "step": 2180
+ },
+ {
+ "epoch": 30.293577981651374,
+ "grad_norm": 0.20591886341571808,
+ "learning_rate": 0.0006,
+ "loss": 3.792062997817993,
+ "step": 2181
+ },
+ {
+ "epoch": 30.307557885539538,
+ "grad_norm": 0.21744129061698914,
+ "learning_rate": 0.0006,
+ "loss": 3.7389049530029297,
+ "step": 2182
+ },
+ {
+ "epoch": 30.321537789427698,
+ "grad_norm": 0.22641272842884064,
+ "learning_rate": 0.0006,
+ "loss": 3.756775140762329,
+ "step": 2183
+ },
+ {
+ "epoch": 30.335517693315857,
+ "grad_norm": 0.22433501482009888,
+ "learning_rate": 0.0006,
+ "loss": 3.764744758605957,
+ "step": 2184
+ },
+ {
+ "epoch": 30.34949759720402,
+ "grad_norm": 0.20184539258480072,
+ "learning_rate": 0.0006,
+ "loss": 3.747469902038574,
+ "step": 2185
+ },
+ {
+ "epoch": 30.36347750109218,
+ "grad_norm": 0.20864923298358917,
+ "learning_rate": 0.0006,
+ "loss": 3.7472925186157227,
+ "step": 2186
+ },
+ {
+ "epoch": 30.37745740498034,
+ "grad_norm": 0.22537396848201752,
+ "learning_rate": 0.0006,
+ "loss": 3.7194581031799316,
+ "step": 2187
+ },
+ {
+ "epoch": 30.3914373088685,
+ "grad_norm": 0.23159919679164886,
+ "learning_rate": 0.0006,
+ "loss": 3.7124292850494385,
+ "step": 2188
+ },
+ {
+ "epoch": 30.405417212756664,
+ "grad_norm": 0.24334494769573212,
+ "learning_rate": 0.0006,
+ "loss": 3.7769203186035156,
+ "step": 2189
+ },
+ {
+ "epoch": 30.419397116644824,
+ "grad_norm": 0.3031228482723236,
+ "learning_rate": 0.0006,
+ "loss": 3.762169361114502,
+ "step": 2190
+ },
+ {
+ "epoch": 30.433377020532983,
+ "grad_norm": 0.29114583134651184,
+ "learning_rate": 0.0006,
+ "loss": 3.76554799079895,
+ "step": 2191
+ },
+ {
+ "epoch": 30.447356924421143,
+ "grad_norm": 0.26824963092803955,
+ "learning_rate": 0.0006,
+ "loss": 3.732962131500244,
+ "step": 2192
+ },
+ {
+ "epoch": 30.461336828309307,
+ "grad_norm": 0.3026561141014099,
+ "learning_rate": 0.0006,
+ "loss": 3.7567975521087646,
+ "step": 2193
+ },
+ {
+ "epoch": 30.475316732197467,
+ "grad_norm": 0.27224525809288025,
+ "learning_rate": 0.0006,
+ "loss": 3.7856051921844482,
+ "step": 2194
+ },
+ {
+ "epoch": 30.489296636085626,
+ "grad_norm": 0.24295508861541748,
+ "learning_rate": 0.0006,
+ "loss": 3.7514901161193848,
+ "step": 2195
+ },
+ {
+ "epoch": 30.503276539973786,
+ "grad_norm": 0.24435290694236755,
+ "learning_rate": 0.0006,
+ "loss": 3.715973138809204,
+ "step": 2196
+ },
+ {
+ "epoch": 30.51725644386195,
+ "grad_norm": 0.2298959195613861,
+ "learning_rate": 0.0006,
+ "loss": 3.7960405349731445,
+ "step": 2197
+ },
+ {
+ "epoch": 30.53123634775011,
+ "grad_norm": 0.20313066244125366,
+ "learning_rate": 0.0006,
+ "loss": 3.7377915382385254,
+ "step": 2198
+ },
+ {
+ "epoch": 30.54521625163827,
+ "grad_norm": 0.2018895149230957,
+ "learning_rate": 0.0006,
+ "loss": 3.6980559825897217,
+ "step": 2199
+ },
+ {
+ "epoch": 30.55919615552643,
+ "grad_norm": 0.20048382878303528,
+ "learning_rate": 0.0006,
+ "loss": 3.7474141120910645,
+ "step": 2200
+ },
+ {
+ "epoch": 30.573176059414592,
+ "grad_norm": 0.19821316003799438,
+ "learning_rate": 0.0006,
+ "loss": 3.7668564319610596,
+ "step": 2201
+ },
+ {
+ "epoch": 30.587155963302752,
+ "grad_norm": 0.21467992663383484,
+ "learning_rate": 0.0006,
+ "loss": 3.7636144161224365,
+ "step": 2202
+ },
+ {
+ "epoch": 30.601135867190912,
+ "grad_norm": 0.20192000269889832,
+ "learning_rate": 0.0006,
+ "loss": 3.745736837387085,
+ "step": 2203
+ },
+ {
+ "epoch": 30.615115771079076,
+ "grad_norm": 0.2078823447227478,
+ "learning_rate": 0.0006,
+ "loss": 3.726665496826172,
+ "step": 2204
+ },
+ {
+ "epoch": 30.629095674967235,
+ "grad_norm": 0.22535845637321472,
+ "learning_rate": 0.0006,
+ "loss": 3.745058059692383,
+ "step": 2205
+ },
+ {
+ "epoch": 30.643075578855395,
+ "grad_norm": 0.22277814149856567,
+ "learning_rate": 0.0006,
+ "loss": 3.7488319873809814,
+ "step": 2206
+ },
+ {
+ "epoch": 30.657055482743555,
+ "grad_norm": 0.20940838754177094,
+ "learning_rate": 0.0006,
+ "loss": 3.7395732402801514,
+ "step": 2207
+ },
+ {
+ "epoch": 30.67103538663172,
+ "grad_norm": 0.21384629607200623,
+ "learning_rate": 0.0006,
+ "loss": 3.7275657653808594,
+ "step": 2208
+ },
+ {
+ "epoch": 30.68501529051988,
+ "grad_norm": 0.18796643614768982,
+ "learning_rate": 0.0006,
+ "loss": 3.743420124053955,
+ "step": 2209
+ },
+ {
+ "epoch": 30.698995194408038,
+ "grad_norm": 0.213258296251297,
+ "learning_rate": 0.0006,
+ "loss": 3.7227492332458496,
+ "step": 2210
+ },
+ {
+ "epoch": 30.712975098296198,
+ "grad_norm": 0.22714753448963165,
+ "learning_rate": 0.0006,
+ "loss": 3.7301113605499268,
+ "step": 2211
+ },
+ {
+ "epoch": 30.72695500218436,
+ "grad_norm": 0.21657656133174896,
+ "learning_rate": 0.0006,
+ "loss": 3.7336206436157227,
+ "step": 2212
+ },
+ {
+ "epoch": 30.74093490607252,
+ "grad_norm": 0.19550828635692596,
+ "learning_rate": 0.0006,
+ "loss": 3.7367351055145264,
+ "step": 2213
+ },
+ {
+ "epoch": 30.75491480996068,
+ "grad_norm": 0.17011769115924835,
+ "learning_rate": 0.0006,
+ "loss": 3.7401928901672363,
+ "step": 2214
+ },
+ {
+ "epoch": 30.76889471384884,
+ "grad_norm": 0.19110196828842163,
+ "learning_rate": 0.0006,
+ "loss": 3.7496562004089355,
+ "step": 2215
+ },
+ {
+ "epoch": 30.782874617737004,
+ "grad_norm": 0.20054543018341064,
+ "learning_rate": 0.0006,
+ "loss": 3.7532992362976074,
+ "step": 2216
+ },
+ {
+ "epoch": 30.796854521625164,
+ "grad_norm": 0.20667670667171478,
+ "learning_rate": 0.0006,
+ "loss": 3.746974468231201,
+ "step": 2217
+ },
+ {
+ "epoch": 30.810834425513324,
+ "grad_norm": 0.19850662350654602,
+ "learning_rate": 0.0006,
+ "loss": 3.7566256523132324,
+ "step": 2218
+ },
+ {
+ "epoch": 30.824814329401484,
+ "grad_norm": 0.19666457176208496,
+ "learning_rate": 0.0006,
+ "loss": 3.7356925010681152,
+ "step": 2219
+ },
+ {
+ "epoch": 30.838794233289647,
+ "grad_norm": 0.20022115111351013,
+ "learning_rate": 0.0006,
+ "loss": 3.768794536590576,
+ "step": 2220
+ },
+ {
+ "epoch": 30.852774137177807,
+ "grad_norm": 0.225278839468956,
+ "learning_rate": 0.0006,
+ "loss": 3.730262279510498,
+ "step": 2221
+ },
+ {
+ "epoch": 30.866754041065967,
+ "grad_norm": 0.2155608832836151,
+ "learning_rate": 0.0006,
+ "loss": 3.758157968521118,
+ "step": 2222
+ },
+ {
+ "epoch": 30.88073394495413,
+ "grad_norm": 0.20914921164512634,
+ "learning_rate": 0.0006,
+ "loss": 3.7290844917297363,
+ "step": 2223
+ },
+ {
+ "epoch": 30.89471384884229,
+ "grad_norm": 0.21579554677009583,
+ "learning_rate": 0.0006,
+ "loss": 3.7666125297546387,
+ "step": 2224
+ },
+ {
+ "epoch": 30.90869375273045,
+ "grad_norm": 0.22606384754180908,
+ "learning_rate": 0.0006,
+ "loss": 3.7396788597106934,
+ "step": 2225
+ },
+ {
+ "epoch": 30.92267365661861,
+ "grad_norm": 0.22218658030033112,
+ "learning_rate": 0.0006,
+ "loss": 3.7363057136535645,
+ "step": 2226
+ },
+ {
+ "epoch": 30.936653560506773,
+ "grad_norm": 0.2107125222682953,
+ "learning_rate": 0.0006,
+ "loss": 3.7402844429016113,
+ "step": 2227
+ },
+ {
+ "epoch": 30.950633464394933,
+ "grad_norm": 0.2143280804157257,
+ "learning_rate": 0.0006,
+ "loss": 3.7715706825256348,
+ "step": 2228
+ },
+ {
+ "epoch": 30.964613368283093,
+ "grad_norm": 0.20918118953704834,
+ "learning_rate": 0.0006,
+ "loss": 3.783510446548462,
+ "step": 2229
+ },
+ {
+ "epoch": 30.978593272171253,
+ "grad_norm": 0.2184133678674698,
+ "learning_rate": 0.0006,
+ "loss": 3.729846954345703,
+ "step": 2230
+ },
+ {
+ "epoch": 30.992573176059416,
+ "grad_norm": 0.20314796268939972,
+ "learning_rate": 0.0006,
+ "loss": 3.753312110900879,
+ "step": 2231
+ },
+ {
+ "epoch": 31.0,
+ "grad_norm": 0.21582408249378204,
+ "learning_rate": 0.0006,
+ "loss": 3.7653090953826904,
+ "step": 2232
+ },
+ {
+ "epoch": 31.0,
+ "eval_loss": 4.030437469482422,
+ "eval_runtime": 43.8529,
+ "eval_samples_per_second": 55.686,
+ "eval_steps_per_second": 3.489,
+ "step": 2232
+ },
+ {
+ "epoch": 31.01397990388816,
+ "grad_norm": 0.214233860373497,
+ "learning_rate": 0.0006,
+ "loss": 3.7179880142211914,
+ "step": 2233
+ },
+ {
+ "epoch": 31.027959807776323,
+ "grad_norm": 0.24621504545211792,
+ "learning_rate": 0.0006,
+ "loss": 3.712569236755371,
+ "step": 2234
+ },
+ {
+ "epoch": 31.041939711664483,
+ "grad_norm": 0.24189279973506927,
+ "learning_rate": 0.0006,
+ "loss": 3.7503058910369873,
+ "step": 2235
+ },
+ {
+ "epoch": 31.055919615552643,
+ "grad_norm": 0.22872278094291687,
+ "learning_rate": 0.0006,
+ "loss": 3.7386386394500732,
+ "step": 2236
+ },
+ {
+ "epoch": 31.069899519440803,
+ "grad_norm": 0.25036823749542236,
+ "learning_rate": 0.0006,
+ "loss": 3.710566997528076,
+ "step": 2237
+ },
+ {
+ "epoch": 31.083879423328966,
+ "grad_norm": 0.2506193220615387,
+ "learning_rate": 0.0006,
+ "loss": 3.7270963191986084,
+ "step": 2238
+ },
+ {
+ "epoch": 31.097859327217126,
+ "grad_norm": 0.24819663166999817,
+ "learning_rate": 0.0006,
+ "loss": 3.716430425643921,
+ "step": 2239
+ },
+ {
+ "epoch": 31.111839231105286,
+ "grad_norm": 0.27226534485816956,
+ "learning_rate": 0.0006,
+ "loss": 3.704428195953369,
+ "step": 2240
+ },
+ {
+ "epoch": 31.125819134993446,
+ "grad_norm": 0.27718204259872437,
+ "learning_rate": 0.0006,
+ "loss": 3.7309701442718506,
+ "step": 2241
+ },
+ {
+ "epoch": 31.13979903888161,
+ "grad_norm": 0.27272021770477295,
+ "learning_rate": 0.0006,
+ "loss": 3.7325143814086914,
+ "step": 2242
+ },
+ {
+ "epoch": 31.15377894276977,
+ "grad_norm": 0.2666020095348358,
+ "learning_rate": 0.0006,
+ "loss": 3.715268611907959,
+ "step": 2243
+ },
+ {
+ "epoch": 31.16775884665793,
+ "grad_norm": 0.258543461561203,
+ "learning_rate": 0.0006,
+ "loss": 3.7336134910583496,
+ "step": 2244
+ },
+ {
+ "epoch": 31.18173875054609,
+ "grad_norm": 0.2528740167617798,
+ "learning_rate": 0.0006,
+ "loss": 3.724491596221924,
+ "step": 2245
+ },
+ {
+ "epoch": 31.195718654434252,
+ "grad_norm": 0.2659667730331421,
+ "learning_rate": 0.0006,
+ "loss": 3.7144742012023926,
+ "step": 2246
+ },
+ {
+ "epoch": 31.209698558322412,
+ "grad_norm": 0.26563164591789246,
+ "learning_rate": 0.0006,
+ "loss": 3.741182327270508,
+ "step": 2247
+ },
+ {
+ "epoch": 31.22367846221057,
+ "grad_norm": 0.26326918601989746,
+ "learning_rate": 0.0006,
+ "loss": 3.7306275367736816,
+ "step": 2248
+ },
+ {
+ "epoch": 31.23765836609873,
+ "grad_norm": 0.23020948469638824,
+ "learning_rate": 0.0006,
+ "loss": 3.7212486267089844,
+ "step": 2249
+ },
+ {
+ "epoch": 31.251638269986895,
+ "grad_norm": 0.21207433938980103,
+ "learning_rate": 0.0006,
+ "loss": 3.6914258003234863,
+ "step": 2250
+ },
+ {
+ "epoch": 31.265618173875055,
+ "grad_norm": 0.2392292022705078,
+ "learning_rate": 0.0006,
+ "loss": 3.7117457389831543,
+ "step": 2251
+ },
+ {
+ "epoch": 31.279598077763215,
+ "grad_norm": 0.22084997594356537,
+ "learning_rate": 0.0006,
+ "loss": 3.728043794631958,
+ "step": 2252
+ },
+ {
+ "epoch": 31.293577981651374,
+ "grad_norm": 0.20818188786506653,
+ "learning_rate": 0.0006,
+ "loss": 3.751762866973877,
+ "step": 2253
+ },
+ {
+ "epoch": 31.307557885539538,
+ "grad_norm": 0.21866194903850555,
+ "learning_rate": 0.0006,
+ "loss": 3.72676420211792,
+ "step": 2254
+ },
+ {
+ "epoch": 31.321537789427698,
+ "grad_norm": 0.20727522671222687,
+ "learning_rate": 0.0006,
+ "loss": 3.735708236694336,
+ "step": 2255
+ },
+ {
+ "epoch": 31.335517693315857,
+ "grad_norm": 0.20655220746994019,
+ "learning_rate": 0.0006,
+ "loss": 3.714116096496582,
+ "step": 2256
+ },
+ {
+ "epoch": 31.34949759720402,
+ "grad_norm": 0.21738854050636292,
+ "learning_rate": 0.0006,
+ "loss": 3.731657028198242,
+ "step": 2257
+ },
+ {
+ "epoch": 31.36347750109218,
+ "grad_norm": 0.20758475363254547,
+ "learning_rate": 0.0006,
+ "loss": 3.7378528118133545,
+ "step": 2258
+ },
+ {
+ "epoch": 31.37745740498034,
+ "grad_norm": 0.20107139647006989,
+ "learning_rate": 0.0006,
+ "loss": 3.748572826385498,
+ "step": 2259
+ },
+ {
+ "epoch": 31.3914373088685,
+ "grad_norm": 0.18707452714443207,
+ "learning_rate": 0.0006,
+ "loss": 3.7237391471862793,
+ "step": 2260
+ },
+ {
+ "epoch": 31.405417212756664,
+ "grad_norm": 0.20745301246643066,
+ "learning_rate": 0.0006,
+ "loss": 3.734435558319092,
+ "step": 2261
+ },
+ {
+ "epoch": 31.419397116644824,
+ "grad_norm": 0.20793399214744568,
+ "learning_rate": 0.0006,
+ "loss": 3.7639012336730957,
+ "step": 2262
+ },
+ {
+ "epoch": 31.433377020532983,
+ "grad_norm": 0.20193757116794586,
+ "learning_rate": 0.0006,
+ "loss": 3.754117727279663,
+ "step": 2263
+ },
+ {
+ "epoch": 31.447356924421143,
+ "grad_norm": 0.1912323236465454,
+ "learning_rate": 0.0006,
+ "loss": 3.728111982345581,
+ "step": 2264
+ },
+ {
+ "epoch": 31.461336828309307,
+ "grad_norm": 0.19441582262516022,
+ "learning_rate": 0.0006,
+ "loss": 3.7533278465270996,
+ "step": 2265
+ },
+ {
+ "epoch": 31.475316732197467,
+ "grad_norm": 0.19807079434394836,
+ "learning_rate": 0.0006,
+ "loss": 3.7351698875427246,
+ "step": 2266
+ },
+ {
+ "epoch": 31.489296636085626,
+ "grad_norm": 0.20373263955116272,
+ "learning_rate": 0.0006,
+ "loss": 3.714097023010254,
+ "step": 2267
+ },
+ {
+ "epoch": 31.503276539973786,
+ "grad_norm": 0.21868768334388733,
+ "learning_rate": 0.0006,
+ "loss": 3.736743688583374,
+ "step": 2268
+ },
+ {
+ "epoch": 31.51725644386195,
+ "grad_norm": 0.20767922699451447,
+ "learning_rate": 0.0006,
+ "loss": 3.7097702026367188,
+ "step": 2269
+ },
+ {
+ "epoch": 31.53123634775011,
+ "grad_norm": 0.18425600230693817,
+ "learning_rate": 0.0006,
+ "loss": 3.7349140644073486,
+ "step": 2270
+ },
+ {
+ "epoch": 31.54521625163827,
+ "grad_norm": 0.18813826143741608,
+ "learning_rate": 0.0006,
+ "loss": 3.7023448944091797,
+ "step": 2271
+ },
+ {
+ "epoch": 31.55919615552643,
+ "grad_norm": 0.1892116516828537,
+ "learning_rate": 0.0006,
+ "loss": 3.7170143127441406,
+ "step": 2272
+ },
+ {
+ "epoch": 31.573176059414592,
+ "grad_norm": 0.2067834585905075,
+ "learning_rate": 0.0006,
+ "loss": 3.7312588691711426,
+ "step": 2273
+ },
+ {
+ "epoch": 31.587155963302752,
+ "grad_norm": 0.204023078083992,
+ "learning_rate": 0.0006,
+ "loss": 3.7399091720581055,
+ "step": 2274
+ },
+ {
+ "epoch": 31.601135867190912,
+ "grad_norm": 0.20245152711868286,
+ "learning_rate": 0.0006,
+ "loss": 3.7259416580200195,
+ "step": 2275
+ },
+ {
+ "epoch": 31.615115771079076,
+ "grad_norm": 0.21125490963459015,
+ "learning_rate": 0.0006,
+ "loss": 3.7217836380004883,
+ "step": 2276
+ },
+ {
+ "epoch": 31.629095674967235,
+ "grad_norm": 0.2093241959810257,
+ "learning_rate": 0.0006,
+ "loss": 3.707627773284912,
+ "step": 2277
+ },
+ {
+ "epoch": 31.643075578855395,
+ "grad_norm": 0.19290480017662048,
+ "learning_rate": 0.0006,
+ "loss": 3.7467126846313477,
+ "step": 2278
+ },
+ {
+ "epoch": 31.657055482743555,
+ "grad_norm": 0.1853940635919571,
+ "learning_rate": 0.0006,
+ "loss": 3.7565581798553467,
+ "step": 2279
+ },
+ {
+ "epoch": 31.67103538663172,
+ "grad_norm": 0.18917642533779144,
+ "learning_rate": 0.0006,
+ "loss": 3.7286229133605957,
+ "step": 2280
+ },
+ {
+ "epoch": 31.68501529051988,
+ "grad_norm": 0.2094079703092575,
+ "learning_rate": 0.0006,
+ "loss": 3.7297096252441406,
+ "step": 2281
+ },
+ {
+ "epoch": 31.698995194408038,
+ "grad_norm": 0.20020027458667755,
+ "learning_rate": 0.0006,
+ "loss": 3.7565250396728516,
+ "step": 2282
+ },
+ {
+ "epoch": 31.712975098296198,
+ "grad_norm": 0.19156186282634735,
+ "learning_rate": 0.0006,
+ "loss": 3.7401509284973145,
+ "step": 2283
+ },
+ {
+ "epoch": 31.72695500218436,
+ "grad_norm": 0.19176368415355682,
+ "learning_rate": 0.0006,
+ "loss": 3.751206398010254,
+ "step": 2284
+ },
+ {
+ "epoch": 31.74093490607252,
+ "grad_norm": 0.18351277709007263,
+ "learning_rate": 0.0006,
+ "loss": 3.752984046936035,
+ "step": 2285
+ },
+ {
+ "epoch": 31.75491480996068,
+ "grad_norm": 0.1879221349954605,
+ "learning_rate": 0.0006,
+ "loss": 3.7156834602355957,
+ "step": 2286
+ },
+ {
+ "epoch": 31.76889471384884,
+ "grad_norm": 0.19232559204101562,
+ "learning_rate": 0.0006,
+ "loss": 3.732879638671875,
+ "step": 2287
+ },
+ {
+ "epoch": 31.782874617737004,
+ "grad_norm": 0.18484069406986237,
+ "learning_rate": 0.0006,
+ "loss": 3.7489013671875,
+ "step": 2288
+ },
+ {
+ "epoch": 31.796854521625164,
+ "grad_norm": 0.20705144107341766,
+ "learning_rate": 0.0006,
+ "loss": 3.7214112281799316,
+ "step": 2289
+ },
+ {
+ "epoch": 31.810834425513324,
+ "grad_norm": 0.23424774408340454,
+ "learning_rate": 0.0006,
+ "loss": 3.714550256729126,
+ "step": 2290
+ },
+ {
+ "epoch": 31.824814329401484,
+ "grad_norm": 0.24061693251132965,
+ "learning_rate": 0.0006,
+ "loss": 3.717336654663086,
+ "step": 2291
+ },
+ {
+ "epoch": 31.838794233289647,
+ "grad_norm": 0.23156678676605225,
+ "learning_rate": 0.0006,
+ "loss": 3.7345399856567383,
+ "step": 2292
+ },
+ {
+ "epoch": 31.852774137177807,
+ "grad_norm": 0.2256302684545517,
+ "learning_rate": 0.0006,
+ "loss": 3.7596092224121094,
+ "step": 2293
+ },
+ {
+ "epoch": 31.866754041065967,
+ "grad_norm": 0.2118781954050064,
+ "learning_rate": 0.0006,
+ "loss": 3.725433588027954,
+ "step": 2294
+ },
+ {
+ "epoch": 31.88073394495413,
+ "grad_norm": 0.1874573826789856,
+ "learning_rate": 0.0006,
+ "loss": 3.738901138305664,
+ "step": 2295
+ },
+ {
+ "epoch": 31.89471384884229,
+ "grad_norm": 0.2062024176120758,
+ "learning_rate": 0.0006,
+ "loss": 3.7439217567443848,
+ "step": 2296
+ },
+ {
+ "epoch": 31.90869375273045,
+ "grad_norm": 0.19886671006679535,
+ "learning_rate": 0.0006,
+ "loss": 3.7583155632019043,
+ "step": 2297
+ },
+ {
+ "epoch": 31.92267365661861,
+ "grad_norm": 0.2079734355211258,
+ "learning_rate": 0.0006,
+ "loss": 3.7251501083374023,
+ "step": 2298
+ },
+ {
+ "epoch": 31.936653560506773,
+ "grad_norm": 0.19710204005241394,
+ "learning_rate": 0.0006,
+ "loss": 3.765778064727783,
+ "step": 2299
+ },
+ {
+ "epoch": 31.950633464394933,
+ "grad_norm": 0.1949392408132553,
+ "learning_rate": 0.0006,
+ "loss": 3.7634787559509277,
+ "step": 2300
+ },
+ {
+ "epoch": 31.964613368283093,
+ "grad_norm": 0.21466250717639923,
+ "learning_rate": 0.0006,
+ "loss": 3.7673215866088867,
+ "step": 2301
+ },
+ {
+ "epoch": 31.978593272171253,
+ "grad_norm": 0.21624267101287842,
+ "learning_rate": 0.0006,
+ "loss": 3.7617220878601074,
+ "step": 2302
+ },
+ {
+ "epoch": 31.992573176059416,
+ "grad_norm": 0.22880229353904724,
+ "learning_rate": 0.0006,
+ "loss": 3.7190351486206055,
+ "step": 2303
+ },
+ {
+ "epoch": 32.0,
+ "grad_norm": 0.23227518796920776,
+ "learning_rate": 0.0006,
+ "loss": 3.740169048309326,
+ "step": 2304
+ },
+ {
+ "epoch": 32.0,
+ "eval_loss": 4.017981052398682,
+ "eval_runtime": 44.4134,
+ "eval_samples_per_second": 54.983,
+ "eval_steps_per_second": 3.445,
+ "step": 2304
+ },
+ {
+ "epoch": 32.01397990388816,
+ "grad_norm": 0.1893721967935562,
+ "learning_rate": 0.0006,
+ "loss": 3.71738338470459,
+ "step": 2305
+ },
+ {
+ "epoch": 32.02795980777632,
+ "grad_norm": 0.23771171271800995,
+ "learning_rate": 0.0006,
+ "loss": 3.71402645111084,
+ "step": 2306
+ },
+ {
+ "epoch": 32.04193971166448,
+ "grad_norm": 0.26343807578086853,
+ "learning_rate": 0.0006,
+ "loss": 3.6926395893096924,
+ "step": 2307
+ },
+ {
+ "epoch": 32.05591961555265,
+ "grad_norm": 0.25092509388923645,
+ "learning_rate": 0.0006,
+ "loss": 3.715243339538574,
+ "step": 2308
+ },
+ {
+ "epoch": 32.0698995194408,
+ "grad_norm": 0.23148509860038757,
+ "learning_rate": 0.0006,
+ "loss": 3.690734386444092,
+ "step": 2309
+ },
+ {
+ "epoch": 32.083879423328966,
+ "grad_norm": 0.23314623534679413,
+ "learning_rate": 0.0006,
+ "loss": 3.6980109214782715,
+ "step": 2310
+ },
+ {
+ "epoch": 32.09785932721712,
+ "grad_norm": 0.2210417091846466,
+ "learning_rate": 0.0006,
+ "loss": 3.7395730018615723,
+ "step": 2311
+ },
+ {
+ "epoch": 32.111839231105286,
+ "grad_norm": 0.20263685286045074,
+ "learning_rate": 0.0006,
+ "loss": 3.678412914276123,
+ "step": 2312
+ },
+ {
+ "epoch": 32.12581913499345,
+ "grad_norm": 0.20412251353263855,
+ "learning_rate": 0.0006,
+ "loss": 3.688762903213501,
+ "step": 2313
+ },
+ {
+ "epoch": 32.139799038881605,
+ "grad_norm": 0.2041679322719574,
+ "learning_rate": 0.0006,
+ "loss": 3.7231521606445312,
+ "step": 2314
+ },
+ {
+ "epoch": 32.15377894276977,
+ "grad_norm": 0.23270174860954285,
+ "learning_rate": 0.0006,
+ "loss": 3.7102620601654053,
+ "step": 2315
+ },
+ {
+ "epoch": 32.16775884665793,
+ "grad_norm": 0.25470519065856934,
+ "learning_rate": 0.0006,
+ "loss": 3.7353053092956543,
+ "step": 2316
+ },
+ {
+ "epoch": 32.18173875054609,
+ "grad_norm": 0.2930106222629547,
+ "learning_rate": 0.0006,
+ "loss": 3.7418713569641113,
+ "step": 2317
+ },
+ {
+ "epoch": 32.19571865443425,
+ "grad_norm": 0.3181219696998596,
+ "learning_rate": 0.0006,
+ "loss": 3.6716184616088867,
+ "step": 2318
+ },
+ {
+ "epoch": 32.20969855832241,
+ "grad_norm": 0.2752978801727295,
+ "learning_rate": 0.0006,
+ "loss": 3.70334792137146,
+ "step": 2319
+ },
+ {
+ "epoch": 32.22367846221057,
+ "grad_norm": 0.28381186723709106,
+ "learning_rate": 0.0006,
+ "loss": 3.719794750213623,
+ "step": 2320
+ },
+ {
+ "epoch": 32.237658366098735,
+ "grad_norm": 0.3287750482559204,
+ "learning_rate": 0.0006,
+ "loss": 3.7363362312316895,
+ "step": 2321
+ },
+ {
+ "epoch": 32.25163826998689,
+ "grad_norm": 0.32669803500175476,
+ "learning_rate": 0.0006,
+ "loss": 3.739394426345825,
+ "step": 2322
+ },
+ {
+ "epoch": 32.265618173875055,
+ "grad_norm": 0.27423885464668274,
+ "learning_rate": 0.0006,
+ "loss": 3.7381205558776855,
+ "step": 2323
+ },
+ {
+ "epoch": 32.27959807776322,
+ "grad_norm": 0.2594660818576813,
+ "learning_rate": 0.0006,
+ "loss": 3.698683738708496,
+ "step": 2324
+ },
+ {
+ "epoch": 32.293577981651374,
+ "grad_norm": 0.2785511016845703,
+ "learning_rate": 0.0006,
+ "loss": 3.688774824142456,
+ "step": 2325
+ },
+ {
+ "epoch": 32.30755788553954,
+ "grad_norm": 0.2690320611000061,
+ "learning_rate": 0.0006,
+ "loss": 3.7209150791168213,
+ "step": 2326
+ },
+ {
+ "epoch": 32.3215377894277,
+ "grad_norm": 0.23331770300865173,
+ "learning_rate": 0.0006,
+ "loss": 3.682931423187256,
+ "step": 2327
+ },
+ {
+ "epoch": 32.33551769331586,
+ "grad_norm": 0.22380802035331726,
+ "learning_rate": 0.0006,
+ "loss": 3.720445156097412,
+ "step": 2328
+ },
+ {
+ "epoch": 32.34949759720402,
+ "grad_norm": 0.2065964937210083,
+ "learning_rate": 0.0006,
+ "loss": 3.705427885055542,
+ "step": 2329
+ },
+ {
+ "epoch": 32.36347750109218,
+ "grad_norm": 0.20701853930950165,
+ "learning_rate": 0.0006,
+ "loss": 3.7078697681427,
+ "step": 2330
+ },
+ {
+ "epoch": 32.37745740498034,
+ "grad_norm": 0.2063559591770172,
+ "learning_rate": 0.0006,
+ "loss": 3.745004653930664,
+ "step": 2331
+ },
+ {
+ "epoch": 32.391437308868504,
+ "grad_norm": 0.19377011060714722,
+ "learning_rate": 0.0006,
+ "loss": 3.713808059692383,
+ "step": 2332
+ },
+ {
+ "epoch": 32.40541721275666,
+ "grad_norm": 0.19260725378990173,
+ "learning_rate": 0.0006,
+ "loss": 3.717043876647949,
+ "step": 2333
+ },
+ {
+ "epoch": 32.419397116644824,
+ "grad_norm": 0.20792821049690247,
+ "learning_rate": 0.0006,
+ "loss": 3.68632173538208,
+ "step": 2334
+ },
+ {
+ "epoch": 32.43337702053299,
+ "grad_norm": 0.22278444468975067,
+ "learning_rate": 0.0006,
+ "loss": 3.7345821857452393,
+ "step": 2335
+ },
+ {
+ "epoch": 32.44735692442114,
+ "grad_norm": 0.22533579170703888,
+ "learning_rate": 0.0006,
+ "loss": 3.7224173545837402,
+ "step": 2336
+ },
+ {
+ "epoch": 32.46133682830931,
+ "grad_norm": 0.20228394865989685,
+ "learning_rate": 0.0006,
+ "loss": 3.748530149459839,
+ "step": 2337
+ },
+ {
+ "epoch": 32.47531673219746,
+ "grad_norm": 0.19944614171981812,
+ "learning_rate": 0.0006,
+ "loss": 3.707085371017456,
+ "step": 2338
+ },
+ {
+ "epoch": 32.489296636085626,
+ "grad_norm": 0.19856145977973938,
+ "learning_rate": 0.0006,
+ "loss": 3.6898274421691895,
+ "step": 2339
+ },
+ {
+ "epoch": 32.50327653997379,
+ "grad_norm": 0.20734605193138123,
+ "learning_rate": 0.0006,
+ "loss": 3.7511792182922363,
+ "step": 2340
+ },
+ {
+ "epoch": 32.517256443861946,
+ "grad_norm": 0.19489309191703796,
+ "learning_rate": 0.0006,
+ "loss": 3.736445426940918,
+ "step": 2341
+ },
+ {
+ "epoch": 32.53123634775011,
+ "grad_norm": 0.18899282813072205,
+ "learning_rate": 0.0006,
+ "loss": 3.727325916290283,
+ "step": 2342
+ },
+ {
+ "epoch": 32.54521625163827,
+ "grad_norm": 0.19670401513576508,
+ "learning_rate": 0.0006,
+ "loss": 3.7326102256774902,
+ "step": 2343
+ },
+ {
+ "epoch": 32.55919615552643,
+ "grad_norm": 0.20061780512332916,
+ "learning_rate": 0.0006,
+ "loss": 3.698716402053833,
+ "step": 2344
+ },
+ {
+ "epoch": 32.57317605941459,
+ "grad_norm": 0.1991659700870514,
+ "learning_rate": 0.0006,
+ "loss": 3.6913180351257324,
+ "step": 2345
+ },
+ {
+ "epoch": 32.58715596330275,
+ "grad_norm": 0.18856225907802582,
+ "learning_rate": 0.0006,
+ "loss": 3.7130961418151855,
+ "step": 2346
+ },
+ {
+ "epoch": 32.60113586719091,
+ "grad_norm": 0.1983972191810608,
+ "learning_rate": 0.0006,
+ "loss": 3.7530808448791504,
+ "step": 2347
+ },
+ {
+ "epoch": 32.615115771079076,
+ "grad_norm": 0.2037997543811798,
+ "learning_rate": 0.0006,
+ "loss": 3.7076587677001953,
+ "step": 2348
+ },
+ {
+ "epoch": 32.62909567496723,
+ "grad_norm": 0.21008458733558655,
+ "learning_rate": 0.0006,
+ "loss": 3.7379021644592285,
+ "step": 2349
+ },
+ {
+ "epoch": 32.643075578855395,
+ "grad_norm": 0.2129313349723816,
+ "learning_rate": 0.0006,
+ "loss": 3.7031373977661133,
+ "step": 2350
+ },
+ {
+ "epoch": 32.65705548274356,
+ "grad_norm": 0.18756245076656342,
+ "learning_rate": 0.0006,
+ "loss": 3.7066285610198975,
+ "step": 2351
+ },
+ {
+ "epoch": 32.671035386631715,
+ "grad_norm": 0.17946591973304749,
+ "learning_rate": 0.0006,
+ "loss": 3.73781681060791,
+ "step": 2352
+ },
+ {
+ "epoch": 32.68501529051988,
+ "grad_norm": 0.18983198702335358,
+ "learning_rate": 0.0006,
+ "loss": 3.718855381011963,
+ "step": 2353
+ },
+ {
+ "epoch": 32.69899519440804,
+ "grad_norm": 0.2080942839384079,
+ "learning_rate": 0.0006,
+ "loss": 3.7111258506774902,
+ "step": 2354
+ },
+ {
+ "epoch": 32.7129750982962,
+ "grad_norm": 0.23633413016796112,
+ "learning_rate": 0.0006,
+ "loss": 3.709766149520874,
+ "step": 2355
+ },
+ {
+ "epoch": 32.72695500218436,
+ "grad_norm": 0.2723144590854645,
+ "learning_rate": 0.0006,
+ "loss": 3.745850086212158,
+ "step": 2356
+ },
+ {
+ "epoch": 32.74093490607252,
+ "grad_norm": 0.29774025082588196,
+ "learning_rate": 0.0006,
+ "loss": 3.733771324157715,
+ "step": 2357
+ },
+ {
+ "epoch": 32.75491480996068,
+ "grad_norm": 0.25976699590682983,
+ "learning_rate": 0.0006,
+ "loss": 3.734194278717041,
+ "step": 2358
+ },
+ {
+ "epoch": 32.768894713848844,
+ "grad_norm": 0.20038039982318878,
+ "learning_rate": 0.0006,
+ "loss": 3.735656261444092,
+ "step": 2359
+ },
+ {
+ "epoch": 32.782874617737,
+ "grad_norm": 0.19745637476444244,
+ "learning_rate": 0.0006,
+ "loss": 3.7335894107818604,
+ "step": 2360
+ },
+ {
+ "epoch": 32.796854521625164,
+ "grad_norm": 0.22022396326065063,
+ "learning_rate": 0.0006,
+ "loss": 3.708998680114746,
+ "step": 2361
+ },
+ {
+ "epoch": 32.81083442551333,
+ "grad_norm": 0.24754752218723297,
+ "learning_rate": 0.0006,
+ "loss": 3.7616286277770996,
+ "step": 2362
+ },
+ {
+ "epoch": 32.824814329401484,
+ "grad_norm": 0.26438358426094055,
+ "learning_rate": 0.0006,
+ "loss": 3.737079620361328,
+ "step": 2363
+ },
+ {
+ "epoch": 32.83879423328965,
+ "grad_norm": 0.2507241666316986,
+ "learning_rate": 0.0006,
+ "loss": 3.708500385284424,
+ "step": 2364
+ },
+ {
+ "epoch": 32.8527741371778,
+ "grad_norm": 0.25688016414642334,
+ "learning_rate": 0.0006,
+ "loss": 3.7389419078826904,
+ "step": 2365
+ },
+ {
+ "epoch": 32.86675404106597,
+ "grad_norm": 0.257447749376297,
+ "learning_rate": 0.0006,
+ "loss": 3.7253334522247314,
+ "step": 2366
+ },
+ {
+ "epoch": 32.88073394495413,
+ "grad_norm": 0.2621215879917145,
+ "learning_rate": 0.0006,
+ "loss": 3.773163318634033,
+ "step": 2367
+ },
+ {
+ "epoch": 32.89471384884229,
+ "grad_norm": 0.23554839193820953,
+ "learning_rate": 0.0006,
+ "loss": 3.7534430027008057,
+ "step": 2368
+ },
+ {
+ "epoch": 32.90869375273045,
+ "grad_norm": 0.19698940217494965,
+ "learning_rate": 0.0006,
+ "loss": 3.7094414234161377,
+ "step": 2369
+ },
+ {
+ "epoch": 32.92267365661861,
+ "grad_norm": 0.21380476653575897,
+ "learning_rate": 0.0006,
+ "loss": 3.7666497230529785,
+ "step": 2370
+ },
+ {
+ "epoch": 32.93665356050677,
+ "grad_norm": 0.20876452326774597,
+ "learning_rate": 0.0006,
+ "loss": 3.7467992305755615,
+ "step": 2371
+ },
+ {
+ "epoch": 32.95063346439493,
+ "grad_norm": 0.1989884227514267,
+ "learning_rate": 0.0006,
+ "loss": 3.749878168106079,
+ "step": 2372
+ },
+ {
+ "epoch": 32.964613368283096,
+ "grad_norm": 0.19089168310165405,
+ "learning_rate": 0.0006,
+ "loss": 3.7211015224456787,
+ "step": 2373
+ },
+ {
+ "epoch": 32.97859327217125,
+ "grad_norm": 0.1962461918592453,
+ "learning_rate": 0.0006,
+ "loss": 3.728684425354004,
+ "step": 2374
+ },
+ {
+ "epoch": 32.992573176059416,
+ "grad_norm": 0.22518110275268555,
+ "learning_rate": 0.0006,
+ "loss": 3.7361507415771484,
+ "step": 2375
+ },
+ {
+ "epoch": 33.0,
+ "grad_norm": 0.26704078912734985,
+ "learning_rate": 0.0006,
+ "loss": 3.7478318214416504,
+ "step": 2376
+ },
+ {
+ "epoch": 33.0,
+ "eval_loss": 4.024221897125244,
+ "eval_runtime": 43.9826,
+ "eval_samples_per_second": 55.522,
+ "eval_steps_per_second": 3.479,
+ "step": 2376
+ },
+ {
+ "epoch": 33.01397990388816,
+ "grad_norm": 0.23387742042541504,
+ "learning_rate": 0.0006,
+ "loss": 3.7043614387512207,
+ "step": 2377
+ },
+ {
+ "epoch": 33.02795980777632,
+ "grad_norm": 0.21334673464298248,
+ "learning_rate": 0.0006,
+ "loss": 3.6714677810668945,
+ "step": 2378
+ },
+ {
+ "epoch": 33.04193971166448,
+ "grad_norm": 0.2608581483364105,
+ "learning_rate": 0.0006,
+ "loss": 3.678460121154785,
+ "step": 2379
+ },
+ {
+ "epoch": 33.05591961555265,
+ "grad_norm": 0.31364381313323975,
+ "learning_rate": 0.0006,
+ "loss": 3.6771793365478516,
+ "step": 2380
+ },
+ {
+ "epoch": 33.0698995194408,
+ "grad_norm": 0.31785935163497925,
+ "learning_rate": 0.0006,
+ "loss": 3.7248926162719727,
+ "step": 2381
+ },
+ {
+ "epoch": 33.083879423328966,
+ "grad_norm": 0.29244646430015564,
+ "learning_rate": 0.0006,
+ "loss": 3.677882194519043,
+ "step": 2382
+ },
+ {
+ "epoch": 33.09785932721712,
+ "grad_norm": 0.23943741619586945,
+ "learning_rate": 0.0006,
+ "loss": 3.7365124225616455,
+ "step": 2383
+ },
+ {
+ "epoch": 33.111839231105286,
+ "grad_norm": 0.2547394931316376,
+ "learning_rate": 0.0006,
+ "loss": 3.7031357288360596,
+ "step": 2384
+ },
+ {
+ "epoch": 33.12581913499345,
+ "grad_norm": 0.2696659564971924,
+ "learning_rate": 0.0006,
+ "loss": 3.6904754638671875,
+ "step": 2385
+ },
+ {
+ "epoch": 33.139799038881605,
+ "grad_norm": 0.24271385371685028,
+ "learning_rate": 0.0006,
+ "loss": 3.7137649059295654,
+ "step": 2386
+ },
+ {
+ "epoch": 33.15377894276977,
+ "grad_norm": 0.23435993492603302,
+ "learning_rate": 0.0006,
+ "loss": 3.707383632659912,
+ "step": 2387
+ },
+ {
+ "epoch": 33.16775884665793,
+ "grad_norm": 0.21428440511226654,
+ "learning_rate": 0.0006,
+ "loss": 3.7148897647857666,
+ "step": 2388
+ },
+ {
+ "epoch": 33.18173875054609,
+ "grad_norm": 0.22420962154865265,
+ "learning_rate": 0.0006,
+ "loss": 3.710111141204834,
+ "step": 2389
+ },
+ {
+ "epoch": 33.19571865443425,
+ "grad_norm": 0.26222777366638184,
+ "learning_rate": 0.0006,
+ "loss": 3.677438259124756,
+ "step": 2390
+ },
+ {
+ "epoch": 33.20969855832241,
+ "grad_norm": 0.29910165071487427,
+ "learning_rate": 0.0006,
+ "loss": 3.6895523071289062,
+ "step": 2391
+ },
+ {
+ "epoch": 33.22367846221057,
+ "grad_norm": 0.2615569531917572,
+ "learning_rate": 0.0006,
+ "loss": 3.7339906692504883,
+ "step": 2392
+ },
+ {
+ "epoch": 33.237658366098735,
+ "grad_norm": 0.23396961390972137,
+ "learning_rate": 0.0006,
+ "loss": 3.7179932594299316,
+ "step": 2393
+ },
+ {
+ "epoch": 33.25163826998689,
+ "grad_norm": 0.24844495952129364,
+ "learning_rate": 0.0006,
+ "loss": 3.7191576957702637,
+ "step": 2394
+ },
+ {
+ "epoch": 33.265618173875055,
+ "grad_norm": 0.2306993454694748,
+ "learning_rate": 0.0006,
+ "loss": 3.7172658443450928,
+ "step": 2395
+ },
+ {
+ "epoch": 33.27959807776322,
+ "grad_norm": 0.24935221672058105,
+ "learning_rate": 0.0006,
+ "loss": 3.6917519569396973,
+ "step": 2396
+ },
+ {
+ "epoch": 33.293577981651374,
+ "grad_norm": 0.2522840201854706,
+ "learning_rate": 0.0006,
+ "loss": 3.7263593673706055,
+ "step": 2397
+ },
+ {
+ "epoch": 33.30755788553954,
+ "grad_norm": 0.26411181688308716,
+ "learning_rate": 0.0006,
+ "loss": 3.6981635093688965,
+ "step": 2398
+ },
+ {
+ "epoch": 33.3215377894277,
+ "grad_norm": 0.22396239638328552,
+ "learning_rate": 0.0006,
+ "loss": 3.713247299194336,
+ "step": 2399
+ },
+ {
+ "epoch": 33.33551769331586,
+ "grad_norm": 0.20579157769680023,
+ "learning_rate": 0.0006,
+ "loss": 3.7058467864990234,
+ "step": 2400
+ },
+ {
+ "epoch": 33.34949759720402,
+ "grad_norm": 0.20103922486305237,
+ "learning_rate": 0.0006,
+ "loss": 3.700924873352051,
+ "step": 2401
+ },
+ {
+ "epoch": 33.36347750109218,
+ "grad_norm": 0.19964663684368134,
+ "learning_rate": 0.0006,
+ "loss": 3.6985437870025635,
+ "step": 2402
+ },
+ {
+ "epoch": 33.37745740498034,
+ "grad_norm": 0.20860575139522552,
+ "learning_rate": 0.0006,
+ "loss": 3.7480058670043945,
+ "step": 2403
+ },
+ {
+ "epoch": 33.391437308868504,
+ "grad_norm": 0.19043605029582977,
+ "learning_rate": 0.0006,
+ "loss": 3.6952016353607178,
+ "step": 2404
+ },
+ {
+ "epoch": 33.40541721275666,
+ "grad_norm": 0.1968909204006195,
+ "learning_rate": 0.0006,
+ "loss": 3.69362735748291,
+ "step": 2405
+ },
+ {
+ "epoch": 33.419397116644824,
+ "grad_norm": 0.23492494225502014,
+ "learning_rate": 0.0006,
+ "loss": 3.707993984222412,
+ "step": 2406
+ },
+ {
+ "epoch": 33.43337702053299,
+ "grad_norm": 0.23970453441143036,
+ "learning_rate": 0.0006,
+ "loss": 3.707731246948242,
+ "step": 2407
+ },
+ {
+ "epoch": 33.44735692442114,
+ "grad_norm": 0.2515844404697418,
+ "learning_rate": 0.0006,
+ "loss": 3.723824977874756,
+ "step": 2408
+ },
+ {
+ "epoch": 33.46133682830931,
+ "grad_norm": 0.2343570590019226,
+ "learning_rate": 0.0006,
+ "loss": 3.7068886756896973,
+ "step": 2409
+ },
+ {
+ "epoch": 33.47531673219746,
+ "grad_norm": 0.23419860005378723,
+ "learning_rate": 0.0006,
+ "loss": 3.6964287757873535,
+ "step": 2410
+ },
+ {
+ "epoch": 33.489296636085626,
+ "grad_norm": 0.21280375123023987,
+ "learning_rate": 0.0006,
+ "loss": 3.7020950317382812,
+ "step": 2411
+ },
+ {
+ "epoch": 33.50327653997379,
+ "grad_norm": 0.2061092108488083,
+ "learning_rate": 0.0006,
+ "loss": 3.750861406326294,
+ "step": 2412
+ },
+ {
+ "epoch": 33.517256443861946,
+ "grad_norm": 0.19693219661712646,
+ "learning_rate": 0.0006,
+ "loss": 3.717020034790039,
+ "step": 2413
+ },
+ {
+ "epoch": 33.53123634775011,
+ "grad_norm": 0.18199551105499268,
+ "learning_rate": 0.0006,
+ "loss": 3.7242612838745117,
+ "step": 2414
+ },
+ {
+ "epoch": 33.54521625163827,
+ "grad_norm": 0.20131248235702515,
+ "learning_rate": 0.0006,
+ "loss": 3.6758954524993896,
+ "step": 2415
+ },
+ {
+ "epoch": 33.55919615552643,
+ "grad_norm": 0.2219412475824356,
+ "learning_rate": 0.0006,
+ "loss": 3.707927703857422,
+ "step": 2416
+ },
+ {
+ "epoch": 33.57317605941459,
+ "grad_norm": 0.22541435062885284,
+ "learning_rate": 0.0006,
+ "loss": 3.696967601776123,
+ "step": 2417
+ },
+ {
+ "epoch": 33.58715596330275,
+ "grad_norm": 0.20367272198200226,
+ "learning_rate": 0.0006,
+ "loss": 3.730795383453369,
+ "step": 2418
+ },
+ {
+ "epoch": 33.60113586719091,
+ "grad_norm": 0.20861074328422546,
+ "learning_rate": 0.0006,
+ "loss": 3.707066535949707,
+ "step": 2419
+ },
+ {
+ "epoch": 33.615115771079076,
+ "grad_norm": 0.20570263266563416,
+ "learning_rate": 0.0006,
+ "loss": 3.730602502822876,
+ "step": 2420
+ },
+ {
+ "epoch": 33.62909567496723,
+ "grad_norm": 0.21318231523036957,
+ "learning_rate": 0.0006,
+ "loss": 3.7073278427124023,
+ "step": 2421
+ },
+ {
+ "epoch": 33.643075578855395,
+ "grad_norm": 0.2142639458179474,
+ "learning_rate": 0.0006,
+ "loss": 3.718470573425293,
+ "step": 2422
+ },
+ {
+ "epoch": 33.65705548274356,
+ "grad_norm": 0.19620704650878906,
+ "learning_rate": 0.0006,
+ "loss": 3.716036319732666,
+ "step": 2423
+ },
+ {
+ "epoch": 33.671035386631715,
+ "grad_norm": 0.19308267533779144,
+ "learning_rate": 0.0006,
+ "loss": 3.734597682952881,
+ "step": 2424
+ },
+ {
+ "epoch": 33.68501529051988,
+ "grad_norm": 0.19453389942646027,
+ "learning_rate": 0.0006,
+ "loss": 3.726262092590332,
+ "step": 2425
+ },
+ {
+ "epoch": 33.69899519440804,
+ "grad_norm": 0.20405639708042145,
+ "learning_rate": 0.0006,
+ "loss": 3.678340435028076,
+ "step": 2426
+ },
+ {
+ "epoch": 33.7129750982962,
+ "grad_norm": 0.19525611400604248,
+ "learning_rate": 0.0006,
+ "loss": 3.723907470703125,
+ "step": 2427
+ },
+ {
+ "epoch": 33.72695500218436,
+ "grad_norm": 0.19390441477298737,
+ "learning_rate": 0.0006,
+ "loss": 3.707897186279297,
+ "step": 2428
+ },
+ {
+ "epoch": 33.74093490607252,
+ "grad_norm": 0.2032899558544159,
+ "learning_rate": 0.0006,
+ "loss": 3.735041618347168,
+ "step": 2429
+ },
+ {
+ "epoch": 33.75491480996068,
+ "grad_norm": 0.2134784460067749,
+ "learning_rate": 0.0006,
+ "loss": 3.674978017807007,
+ "step": 2430
+ },
+ {
+ "epoch": 33.768894713848844,
+ "grad_norm": 0.24691973626613617,
+ "learning_rate": 0.0006,
+ "loss": 3.7028675079345703,
+ "step": 2431
+ },
+ {
+ "epoch": 33.782874617737,
+ "grad_norm": 0.2272702008485794,
+ "learning_rate": 0.0006,
+ "loss": 3.7277941703796387,
+ "step": 2432
+ },
+ {
+ "epoch": 33.796854521625164,
+ "grad_norm": 0.20052100718021393,
+ "learning_rate": 0.0006,
+ "loss": 3.7146830558776855,
+ "step": 2433
+ },
+ {
+ "epoch": 33.81083442551333,
+ "grad_norm": 0.1958577185869217,
+ "learning_rate": 0.0006,
+ "loss": 3.6936864852905273,
+ "step": 2434
+ },
+ {
+ "epoch": 33.824814329401484,
+ "grad_norm": 0.191860631108284,
+ "learning_rate": 0.0006,
+ "loss": 3.7451858520507812,
+ "step": 2435
+ },
+ {
+ "epoch": 33.83879423328965,
+ "grad_norm": 0.20961424708366394,
+ "learning_rate": 0.0006,
+ "loss": 3.722400665283203,
+ "step": 2436
+ },
+ {
+ "epoch": 33.8527741371778,
+ "grad_norm": 0.19784288108348846,
+ "learning_rate": 0.0006,
+ "loss": 3.712474822998047,
+ "step": 2437
+ },
+ {
+ "epoch": 33.86675404106597,
+ "grad_norm": 0.18645426630973816,
+ "learning_rate": 0.0006,
+ "loss": 3.7054500579833984,
+ "step": 2438
+ },
+ {
+ "epoch": 33.88073394495413,
+ "grad_norm": 0.19622360169887543,
+ "learning_rate": 0.0006,
+ "loss": 3.7010550498962402,
+ "step": 2439
+ },
+ {
+ "epoch": 33.89471384884229,
+ "grad_norm": 0.20283745229244232,
+ "learning_rate": 0.0006,
+ "loss": 3.7252519130706787,
+ "step": 2440
+ },
+ {
+ "epoch": 33.90869375273045,
+ "grad_norm": 0.18671709299087524,
+ "learning_rate": 0.0006,
+ "loss": 3.6932945251464844,
+ "step": 2441
+ },
+ {
+ "epoch": 33.92267365661861,
+ "grad_norm": 0.17953112721443176,
+ "learning_rate": 0.0006,
+ "loss": 3.7453854084014893,
+ "step": 2442
+ },
+ {
+ "epoch": 33.93665356050677,
+ "grad_norm": 0.1945437788963318,
+ "learning_rate": 0.0006,
+ "loss": 3.722881317138672,
+ "step": 2443
+ },
+ {
+ "epoch": 33.95063346439493,
+ "grad_norm": 0.18414495885372162,
+ "learning_rate": 0.0006,
+ "loss": 3.7402591705322266,
+ "step": 2444
+ },
+ {
+ "epoch": 33.964613368283096,
+ "grad_norm": 0.1936541497707367,
+ "learning_rate": 0.0006,
+ "loss": 3.720057964324951,
+ "step": 2445
+ },
+ {
+ "epoch": 33.97859327217125,
+ "grad_norm": 0.20177008211612701,
+ "learning_rate": 0.0006,
+ "loss": 3.6983802318573,
+ "step": 2446
+ },
+ {
+ "epoch": 33.992573176059416,
+ "grad_norm": 0.18977557122707367,
+ "learning_rate": 0.0006,
+ "loss": 3.7202203273773193,
+ "step": 2447
+ },
+ {
+ "epoch": 34.0,
+ "grad_norm": 0.220163956284523,
+ "learning_rate": 0.0006,
+ "loss": 3.72540283203125,
+ "step": 2448
+ },
+ {
+ "epoch": 34.0,
+ "eval_loss": 4.009343147277832,
+ "eval_runtime": 44.1825,
+ "eval_samples_per_second": 55.271,
+ "eval_steps_per_second": 3.463,
+ "step": 2448
+ },
+ {
+ "epoch": 34.01397990388816,
+ "grad_norm": 0.19843372702598572,
+ "learning_rate": 0.0006,
+ "loss": 3.664431571960449,
+ "step": 2449
+ },
+ {
+ "epoch": 34.02795980777632,
+ "grad_norm": 0.20413008332252502,
+ "learning_rate": 0.0006,
+ "loss": 3.699094533920288,
+ "step": 2450
+ },
+ {
+ "epoch": 34.04193971166448,
+ "grad_norm": 0.22086848318576813,
+ "learning_rate": 0.0006,
+ "loss": 3.681825637817383,
+ "step": 2451
+ },
+ {
+ "epoch": 34.05591961555265,
+ "grad_norm": 0.20753061771392822,
+ "learning_rate": 0.0006,
+ "loss": 3.677116870880127,
+ "step": 2452
+ },
+ {
+ "epoch": 34.0698995194408,
+ "grad_norm": 0.21835783123970032,
+ "learning_rate": 0.0006,
+ "loss": 3.7079062461853027,
+ "step": 2453
+ },
+ {
+ "epoch": 34.083879423328966,
+ "grad_norm": 0.2244357019662857,
+ "learning_rate": 0.0006,
+ "loss": 3.69844913482666,
+ "step": 2454
+ },
+ {
+ "epoch": 34.09785932721712,
+ "grad_norm": 0.2238784283399582,
+ "learning_rate": 0.0006,
+ "loss": 3.6835570335388184,
+ "step": 2455
+ },
+ {
+ "epoch": 34.111839231105286,
+ "grad_norm": 0.24816176295280457,
+ "learning_rate": 0.0006,
+ "loss": 3.6832966804504395,
+ "step": 2456
+ },
+ {
+ "epoch": 34.12581913499345,
+ "grad_norm": 0.2445257306098938,
+ "learning_rate": 0.0006,
+ "loss": 3.7190022468566895,
+ "step": 2457
+ },
+ {
+ "epoch": 34.139799038881605,
+ "grad_norm": 0.24510814249515533,
+ "learning_rate": 0.0006,
+ "loss": 3.678098201751709,
+ "step": 2458
+ },
+ {
+ "epoch": 34.15377894276977,
+ "grad_norm": 0.2550753653049469,
+ "learning_rate": 0.0006,
+ "loss": 3.69335675239563,
+ "step": 2459
+ },
+ {
+ "epoch": 34.16775884665793,
+ "grad_norm": 0.2435017228126526,
+ "learning_rate": 0.0006,
+ "loss": 3.70463228225708,
+ "step": 2460
+ },
+ {
+ "epoch": 34.18173875054609,
+ "grad_norm": 0.26441144943237305,
+ "learning_rate": 0.0006,
+ "loss": 3.6757068634033203,
+ "step": 2461
+ },
+ {
+ "epoch": 34.19571865443425,
+ "grad_norm": 0.2737993001937866,
+ "learning_rate": 0.0006,
+ "loss": 3.6510863304138184,
+ "step": 2462
+ },
+ {
+ "epoch": 34.20969855832241,
+ "grad_norm": 0.24625736474990845,
+ "learning_rate": 0.0006,
+ "loss": 3.707612991333008,
+ "step": 2463
+ },
+ {
+ "epoch": 34.22367846221057,
+ "grad_norm": 0.22222039103507996,
+ "learning_rate": 0.0006,
+ "loss": 3.7145133018493652,
+ "step": 2464
+ },
+ {
+ "epoch": 34.237658366098735,
+ "grad_norm": 0.2173531949520111,
+ "learning_rate": 0.0006,
+ "loss": 3.685112476348877,
+ "step": 2465
+ },
+ {
+ "epoch": 34.25163826998689,
+ "grad_norm": 0.23102006316184998,
+ "learning_rate": 0.0006,
+ "loss": 3.6742453575134277,
+ "step": 2466
+ },
+ {
+ "epoch": 34.265618173875055,
+ "grad_norm": 0.22287188470363617,
+ "learning_rate": 0.0006,
+ "loss": 3.7030534744262695,
+ "step": 2467
+ },
+ {
+ "epoch": 34.27959807776322,
+ "grad_norm": 0.20377251505851746,
+ "learning_rate": 0.0006,
+ "loss": 3.6866259574890137,
+ "step": 2468
+ },
+ {
+ "epoch": 34.293577981651374,
+ "grad_norm": 0.19867438077926636,
+ "learning_rate": 0.0006,
+ "loss": 3.70395565032959,
+ "step": 2469
+ },
+ {
+ "epoch": 34.30755788553954,
+ "grad_norm": 0.2014918178319931,
+ "learning_rate": 0.0006,
+ "loss": 3.660795211791992,
+ "step": 2470
+ },
+ {
+ "epoch": 34.3215377894277,
+ "grad_norm": 0.20981402695178986,
+ "learning_rate": 0.0006,
+ "loss": 3.7045323848724365,
+ "step": 2471
+ },
+ {
+ "epoch": 34.33551769331586,
+ "grad_norm": 0.20968124270439148,
+ "learning_rate": 0.0006,
+ "loss": 3.7113170623779297,
+ "step": 2472
+ },
+ {
+ "epoch": 34.34949759720402,
+ "grad_norm": 0.2214043140411377,
+ "learning_rate": 0.0006,
+ "loss": 3.7330074310302734,
+ "step": 2473
+ },
+ {
+ "epoch": 34.36347750109218,
+ "grad_norm": 0.21231533586978912,
+ "learning_rate": 0.0006,
+ "loss": 3.6706933975219727,
+ "step": 2474
+ },
+ {
+ "epoch": 34.37745740498034,
+ "grad_norm": 0.2022094875574112,
+ "learning_rate": 0.0006,
+ "loss": 3.7230453491210938,
+ "step": 2475
+ },
+ {
+ "epoch": 34.391437308868504,
+ "grad_norm": 0.2281145304441452,
+ "learning_rate": 0.0006,
+ "loss": 3.7197465896606445,
+ "step": 2476
+ },
+ {
+ "epoch": 34.40541721275666,
+ "grad_norm": 0.2147362381219864,
+ "learning_rate": 0.0006,
+ "loss": 3.7092337608337402,
+ "step": 2477
+ },
+ {
+ "epoch": 34.419397116644824,
+ "grad_norm": 0.19984203577041626,
+ "learning_rate": 0.0006,
+ "loss": 3.6939496994018555,
+ "step": 2478
+ },
+ {
+ "epoch": 34.43337702053299,
+ "grad_norm": 0.21088480949401855,
+ "learning_rate": 0.0006,
+ "loss": 3.6942667961120605,
+ "step": 2479
+ },
+ {
+ "epoch": 34.44735692442114,
+ "grad_norm": 0.20444616675376892,
+ "learning_rate": 0.0006,
+ "loss": 3.718186378479004,
+ "step": 2480
+ },
+ {
+ "epoch": 34.46133682830931,
+ "grad_norm": 0.19133952260017395,
+ "learning_rate": 0.0006,
+ "loss": 3.697197437286377,
+ "step": 2481
+ },
+ {
+ "epoch": 34.47531673219746,
+ "grad_norm": 0.2219255417585373,
+ "learning_rate": 0.0006,
+ "loss": 3.684386730194092,
+ "step": 2482
+ },
+ {
+ "epoch": 34.489296636085626,
+ "grad_norm": 0.2480643391609192,
+ "learning_rate": 0.0006,
+ "loss": 3.6656622886657715,
+ "step": 2483
+ },
+ {
+ "epoch": 34.50327653997379,
+ "grad_norm": 0.22907346487045288,
+ "learning_rate": 0.0006,
+ "loss": 3.741391897201538,
+ "step": 2484
+ },
+ {
+ "epoch": 34.517256443861946,
+ "grad_norm": 0.20277173817157745,
+ "learning_rate": 0.0006,
+ "loss": 3.7062582969665527,
+ "step": 2485
+ },
+ {
+ "epoch": 34.53123634775011,
+ "grad_norm": 0.21411100029945374,
+ "learning_rate": 0.0006,
+ "loss": 3.691784381866455,
+ "step": 2486
+ },
+ {
+ "epoch": 34.54521625163827,
+ "grad_norm": 0.20261600613594055,
+ "learning_rate": 0.0006,
+ "loss": 3.6855502128601074,
+ "step": 2487
+ },
+ {
+ "epoch": 34.55919615552643,
+ "grad_norm": 0.23913109302520752,
+ "learning_rate": 0.0006,
+ "loss": 3.670754909515381,
+ "step": 2488
+ },
+ {
+ "epoch": 34.57317605941459,
+ "grad_norm": 0.24427077174186707,
+ "learning_rate": 0.0006,
+ "loss": 3.700611114501953,
+ "step": 2489
+ },
+ {
+ "epoch": 34.58715596330275,
+ "grad_norm": 0.20305761694908142,
+ "learning_rate": 0.0006,
+ "loss": 3.7284226417541504,
+ "step": 2490
+ },
+ {
+ "epoch": 34.60113586719091,
+ "grad_norm": 0.20398905873298645,
+ "learning_rate": 0.0006,
+ "loss": 3.6860880851745605,
+ "step": 2491
+ },
+ {
+ "epoch": 34.615115771079076,
+ "grad_norm": 0.21016651391983032,
+ "learning_rate": 0.0006,
+ "loss": 3.7366015911102295,
+ "step": 2492
+ },
+ {
+ "epoch": 34.62909567496723,
+ "grad_norm": 0.22279402613639832,
+ "learning_rate": 0.0006,
+ "loss": 3.7024295330047607,
+ "step": 2493
+ },
+ {
+ "epoch": 34.643075578855395,
+ "grad_norm": 0.25080347061157227,
+ "learning_rate": 0.0006,
+ "loss": 3.68355655670166,
+ "step": 2494
+ },
+ {
+ "epoch": 34.65705548274356,
+ "grad_norm": 0.2702971398830414,
+ "learning_rate": 0.0006,
+ "loss": 3.7400612831115723,
+ "step": 2495
+ },
+ {
+ "epoch": 34.671035386631715,
+ "grad_norm": 0.299398273229599,
+ "learning_rate": 0.0006,
+ "loss": 3.7160325050354004,
+ "step": 2496
+ },
+ {
+ "epoch": 34.68501529051988,
+ "grad_norm": 0.29151082038879395,
+ "learning_rate": 0.0006,
+ "loss": 3.7124147415161133,
+ "step": 2497
+ },
+ {
+ "epoch": 34.69899519440804,
+ "grad_norm": 0.23828288912773132,
+ "learning_rate": 0.0006,
+ "loss": 3.7181267738342285,
+ "step": 2498
+ },
+ {
+ "epoch": 34.7129750982962,
+ "grad_norm": 0.21776588261127472,
+ "learning_rate": 0.0006,
+ "loss": 3.6811792850494385,
+ "step": 2499
+ },
+ {
+ "epoch": 34.72695500218436,
+ "grad_norm": 0.2318469136953354,
+ "learning_rate": 0.0006,
+ "loss": 3.698467254638672,
+ "step": 2500
+ },
+ {
+ "epoch": 34.74093490607252,
+ "grad_norm": 0.22341546416282654,
+ "learning_rate": 0.0006,
+ "loss": 3.7406411170959473,
+ "step": 2501
+ },
+ {
+ "epoch": 34.75491480996068,
+ "grad_norm": 0.20676901936531067,
+ "learning_rate": 0.0006,
+ "loss": 3.6914243698120117,
+ "step": 2502
+ },
+ {
+ "epoch": 34.768894713848844,
+ "grad_norm": 0.20459024608135223,
+ "learning_rate": 0.0006,
+ "loss": 3.713369607925415,
+ "step": 2503
+ },
+ {
+ "epoch": 34.782874617737,
+ "grad_norm": 0.22369320690631866,
+ "learning_rate": 0.0006,
+ "loss": 3.697587490081787,
+ "step": 2504
+ },
+ {
+ "epoch": 34.796854521625164,
+ "grad_norm": 0.2393338829278946,
+ "learning_rate": 0.0006,
+ "loss": 3.7171854972839355,
+ "step": 2505
+ },
+ {
+ "epoch": 34.81083442551333,
+ "grad_norm": 0.23756961524486542,
+ "learning_rate": 0.0006,
+ "loss": 3.6969614028930664,
+ "step": 2506
+ },
+ {
+ "epoch": 34.824814329401484,
+ "grad_norm": 0.22761376202106476,
+ "learning_rate": 0.0006,
+ "loss": 3.722501754760742,
+ "step": 2507
+ },
+ {
+ "epoch": 34.83879423328965,
+ "grad_norm": 0.23564888536930084,
+ "learning_rate": 0.0006,
+ "loss": 3.714003086090088,
+ "step": 2508
+ },
+ {
+ "epoch": 34.8527741371778,
+ "grad_norm": 0.22197313606739044,
+ "learning_rate": 0.0006,
+ "loss": 3.7107110023498535,
+ "step": 2509
+ },
+ {
+ "epoch": 34.86675404106597,
+ "grad_norm": 0.20199328660964966,
+ "learning_rate": 0.0006,
+ "loss": 3.7167551517486572,
+ "step": 2510
+ },
+ {
+ "epoch": 34.88073394495413,
+ "grad_norm": 0.19569700956344604,
+ "learning_rate": 0.0006,
+ "loss": 3.679098129272461,
+ "step": 2511
+ },
+ {
+ "epoch": 34.89471384884229,
+ "grad_norm": 0.21320141851902008,
+ "learning_rate": 0.0006,
+ "loss": 3.733187675476074,
+ "step": 2512
+ },
+ {
+ "epoch": 34.90869375273045,
+ "grad_norm": 0.20074625313282013,
+ "learning_rate": 0.0006,
+ "loss": 3.713339328765869,
+ "step": 2513
+ },
+ {
+ "epoch": 34.92267365661861,
+ "grad_norm": 0.20249252021312714,
+ "learning_rate": 0.0006,
+ "loss": 3.680785655975342,
+ "step": 2514
+ },
+ {
+ "epoch": 34.93665356050677,
+ "grad_norm": 0.22165577113628387,
+ "learning_rate": 0.0006,
+ "loss": 3.696131706237793,
+ "step": 2515
+ },
+ {
+ "epoch": 34.95063346439493,
+ "grad_norm": 0.20769749581813812,
+ "learning_rate": 0.0006,
+ "loss": 3.6910316944122314,
+ "step": 2516
+ },
+ {
+ "epoch": 34.964613368283096,
+ "grad_norm": 0.20857223868370056,
+ "learning_rate": 0.0006,
+ "loss": 3.7327451705932617,
+ "step": 2517
+ },
+ {
+ "epoch": 34.97859327217125,
+ "grad_norm": 0.19155766069889069,
+ "learning_rate": 0.0006,
+ "loss": 3.705609083175659,
+ "step": 2518
+ },
+ {
+ "epoch": 34.992573176059416,
+ "grad_norm": 0.17890529334545135,
+ "learning_rate": 0.0006,
+ "loss": 3.6844797134399414,
+ "step": 2519
+ },
+ {
+ "epoch": 35.0,
+ "grad_norm": 0.2053528130054474,
+ "learning_rate": 0.0006,
+ "loss": 3.6942501068115234,
+ "step": 2520
+ },
+ {
+ "epoch": 35.0,
+ "eval_loss": 3.998469591140747,
+ "eval_runtime": 43.9147,
+ "eval_samples_per_second": 55.608,
+ "eval_steps_per_second": 3.484,
+ "step": 2520
+ },
+ {
+ "epoch": 35.01397990388816,
+ "grad_norm": 0.2288869470357895,
+ "learning_rate": 0.0006,
+ "loss": 3.6966426372528076,
+ "step": 2521
+ },
+ {
+ "epoch": 35.02795980777632,
+ "grad_norm": 0.25702035427093506,
+ "learning_rate": 0.0006,
+ "loss": 3.6622562408447266,
+ "step": 2522
+ },
+ {
+ "epoch": 35.04193971166448,
+ "grad_norm": 0.254422128200531,
+ "learning_rate": 0.0006,
+ "loss": 3.690046548843384,
+ "step": 2523
+ },
+ {
+ "epoch": 35.05591961555265,
+ "grad_norm": 0.24177077412605286,
+ "learning_rate": 0.0006,
+ "loss": 3.685335874557495,
+ "step": 2524
+ },
+ {
+ "epoch": 35.0698995194408,
+ "grad_norm": 0.23959586024284363,
+ "learning_rate": 0.0006,
+ "loss": 3.6534650325775146,
+ "step": 2525
+ },
+ {
+ "epoch": 35.083879423328966,
+ "grad_norm": 0.23474839329719543,
+ "learning_rate": 0.0006,
+ "loss": 3.7092814445495605,
+ "step": 2526
+ },
+ {
+ "epoch": 35.09785932721712,
+ "grad_norm": 0.23240867257118225,
+ "learning_rate": 0.0006,
+ "loss": 3.6819097995758057,
+ "step": 2527
+ },
+ {
+ "epoch": 35.111839231105286,
+ "grad_norm": 0.26267048716545105,
+ "learning_rate": 0.0006,
+ "loss": 3.6566696166992188,
+ "step": 2528
+ },
+ {
+ "epoch": 35.12581913499345,
+ "grad_norm": 0.27070754766464233,
+ "learning_rate": 0.0006,
+ "loss": 3.676304340362549,
+ "step": 2529
+ },
+ {
+ "epoch": 35.139799038881605,
+ "grad_norm": 0.25297826528549194,
+ "learning_rate": 0.0006,
+ "loss": 3.65259051322937,
+ "step": 2530
+ },
+ {
+ "epoch": 35.15377894276977,
+ "grad_norm": 0.22776272892951965,
+ "learning_rate": 0.0006,
+ "loss": 3.6813838481903076,
+ "step": 2531
+ },
+ {
+ "epoch": 35.16775884665793,
+ "grad_norm": 0.2288261204957962,
+ "learning_rate": 0.0006,
+ "loss": 3.6916379928588867,
+ "step": 2532
+ },
+ {
+ "epoch": 35.18173875054609,
+ "grad_norm": 0.20445892214775085,
+ "learning_rate": 0.0006,
+ "loss": 3.6550145149230957,
+ "step": 2533
+ },
+ {
+ "epoch": 35.19571865443425,
+ "grad_norm": 0.20298904180526733,
+ "learning_rate": 0.0006,
+ "loss": 3.704042434692383,
+ "step": 2534
+ },
+ {
+ "epoch": 35.20969855832241,
+ "grad_norm": 0.2264423668384552,
+ "learning_rate": 0.0006,
+ "loss": 3.646308183670044,
+ "step": 2535
+ },
+ {
+ "epoch": 35.22367846221057,
+ "grad_norm": 0.21537378430366516,
+ "learning_rate": 0.0006,
+ "loss": 3.686048984527588,
+ "step": 2536
+ },
+ {
+ "epoch": 35.237658366098735,
+ "grad_norm": 0.19820059835910797,
+ "learning_rate": 0.0006,
+ "loss": 3.6993050575256348,
+ "step": 2537
+ },
+ {
+ "epoch": 35.25163826998689,
+ "grad_norm": 0.19485290348529816,
+ "learning_rate": 0.0006,
+ "loss": 3.6507070064544678,
+ "step": 2538
+ },
+ {
+ "epoch": 35.265618173875055,
+ "grad_norm": 0.21234364807605743,
+ "learning_rate": 0.0006,
+ "loss": 3.6913719177246094,
+ "step": 2539
+ },
+ {
+ "epoch": 35.27959807776322,
+ "grad_norm": 0.19834300875663757,
+ "learning_rate": 0.0006,
+ "loss": 3.6793041229248047,
+ "step": 2540
+ },
+ {
+ "epoch": 35.293577981651374,
+ "grad_norm": 0.1969013512134552,
+ "learning_rate": 0.0006,
+ "loss": 3.7063517570495605,
+ "step": 2541
+ },
+ {
+ "epoch": 35.30755788553954,
+ "grad_norm": 0.196136936545372,
+ "learning_rate": 0.0006,
+ "loss": 3.679825782775879,
+ "step": 2542
+ },
+ {
+ "epoch": 35.3215377894277,
+ "grad_norm": 0.20465479791164398,
+ "learning_rate": 0.0006,
+ "loss": 3.698906421661377,
+ "step": 2543
+ },
+ {
+ "epoch": 35.33551769331586,
+ "grad_norm": 0.204293355345726,
+ "learning_rate": 0.0006,
+ "loss": 3.728549003601074,
+ "step": 2544
+ },
+ {
+ "epoch": 35.34949759720402,
+ "grad_norm": 0.18861903250217438,
+ "learning_rate": 0.0006,
+ "loss": 3.687018632888794,
+ "step": 2545
+ },
+ {
+ "epoch": 35.36347750109218,
+ "grad_norm": 0.19066226482391357,
+ "learning_rate": 0.0006,
+ "loss": 3.667919158935547,
+ "step": 2546
+ },
+ {
+ "epoch": 35.37745740498034,
+ "grad_norm": 0.19985736906528473,
+ "learning_rate": 0.0006,
+ "loss": 3.6697773933410645,
+ "step": 2547
+ },
+ {
+ "epoch": 35.391437308868504,
+ "grad_norm": 0.20669348537921906,
+ "learning_rate": 0.0006,
+ "loss": 3.6718077659606934,
+ "step": 2548
+ },
+ {
+ "epoch": 35.40541721275666,
+ "grad_norm": 0.22164477407932281,
+ "learning_rate": 0.0006,
+ "loss": 3.692106246948242,
+ "step": 2549
+ },
+ {
+ "epoch": 35.419397116644824,
+ "grad_norm": 0.20884688198566437,
+ "learning_rate": 0.0006,
+ "loss": 3.714324712753296,
+ "step": 2550
+ },
+ {
+ "epoch": 35.43337702053299,
+ "grad_norm": 0.21811005473136902,
+ "learning_rate": 0.0006,
+ "loss": 3.678694725036621,
+ "step": 2551
+ },
+ {
+ "epoch": 35.44735692442114,
+ "grad_norm": 0.2427632063627243,
+ "learning_rate": 0.0006,
+ "loss": 3.6584935188293457,
+ "step": 2552
+ },
+ {
+ "epoch": 35.46133682830931,
+ "grad_norm": 0.2584928572177887,
+ "learning_rate": 0.0006,
+ "loss": 3.694148063659668,
+ "step": 2553
+ },
+ {
+ "epoch": 35.47531673219746,
+ "grad_norm": 0.2594548761844635,
+ "learning_rate": 0.0006,
+ "loss": 3.690629005432129,
+ "step": 2554
+ },
+ {
+ "epoch": 35.489296636085626,
+ "grad_norm": 0.2521844208240509,
+ "learning_rate": 0.0006,
+ "loss": 3.6949915885925293,
+ "step": 2555
+ },
+ {
+ "epoch": 35.50327653997379,
+ "grad_norm": 0.2284533679485321,
+ "learning_rate": 0.0006,
+ "loss": 3.6822848320007324,
+ "step": 2556
+ },
+ {
+ "epoch": 35.517256443861946,
+ "grad_norm": 0.2350241094827652,
+ "learning_rate": 0.0006,
+ "loss": 3.6841659545898438,
+ "step": 2557
+ },
+ {
+ "epoch": 35.53123634775011,
+ "grad_norm": 0.22496885061264038,
+ "learning_rate": 0.0006,
+ "loss": 3.676447629928589,
+ "step": 2558
+ },
+ {
+ "epoch": 35.54521625163827,
+ "grad_norm": 0.24326276779174805,
+ "learning_rate": 0.0006,
+ "loss": 3.681678533554077,
+ "step": 2559
+ },
+ {
+ "epoch": 35.55919615552643,
+ "grad_norm": 0.26298362016677856,
+ "learning_rate": 0.0006,
+ "loss": 3.6877617835998535,
+ "step": 2560
+ },
+ {
+ "epoch": 35.57317605941459,
+ "grad_norm": 0.2507239282131195,
+ "learning_rate": 0.0006,
+ "loss": 3.7089176177978516,
+ "step": 2561
+ },
+ {
+ "epoch": 35.58715596330275,
+ "grad_norm": 0.2276458442211151,
+ "learning_rate": 0.0006,
+ "loss": 3.705570936203003,
+ "step": 2562
+ },
+ {
+ "epoch": 35.60113586719091,
+ "grad_norm": 0.23317085206508636,
+ "learning_rate": 0.0006,
+ "loss": 3.6772396564483643,
+ "step": 2563
+ },
+ {
+ "epoch": 35.615115771079076,
+ "grad_norm": 0.23301710188388824,
+ "learning_rate": 0.0006,
+ "loss": 3.694855213165283,
+ "step": 2564
+ },
+ {
+ "epoch": 35.62909567496723,
+ "grad_norm": 0.2170179933309555,
+ "learning_rate": 0.0006,
+ "loss": 3.7095537185668945,
+ "step": 2565
+ },
+ {
+ "epoch": 35.643075578855395,
+ "grad_norm": 0.21211965382099152,
+ "learning_rate": 0.0006,
+ "loss": 3.670109272003174,
+ "step": 2566
+ },
+ {
+ "epoch": 35.65705548274356,
+ "grad_norm": 0.21052585542201996,
+ "learning_rate": 0.0006,
+ "loss": 3.6576027870178223,
+ "step": 2567
+ },
+ {
+ "epoch": 35.671035386631715,
+ "grad_norm": 0.21556039154529572,
+ "learning_rate": 0.0006,
+ "loss": 3.6870639324188232,
+ "step": 2568
+ },
+ {
+ "epoch": 35.68501529051988,
+ "grad_norm": 0.2246469408273697,
+ "learning_rate": 0.0006,
+ "loss": 3.675652503967285,
+ "step": 2569
+ },
+ {
+ "epoch": 35.69899519440804,
+ "grad_norm": 0.21891754865646362,
+ "learning_rate": 0.0006,
+ "loss": 3.692298650741577,
+ "step": 2570
+ },
+ {
+ "epoch": 35.7129750982962,
+ "grad_norm": 0.18774104118347168,
+ "learning_rate": 0.0006,
+ "loss": 3.681035041809082,
+ "step": 2571
+ },
+ {
+ "epoch": 35.72695500218436,
+ "grad_norm": 0.19461573660373688,
+ "learning_rate": 0.0006,
+ "loss": 3.7007932662963867,
+ "step": 2572
+ },
+ {
+ "epoch": 35.74093490607252,
+ "grad_norm": 0.25579094886779785,
+ "learning_rate": 0.0006,
+ "loss": 3.724409580230713,
+ "step": 2573
+ },
+ {
+ "epoch": 35.75491480996068,
+ "grad_norm": 0.27635645866394043,
+ "learning_rate": 0.0006,
+ "loss": 3.68107271194458,
+ "step": 2574
+ },
+ {
+ "epoch": 35.768894713848844,
+ "grad_norm": 0.2233380675315857,
+ "learning_rate": 0.0006,
+ "loss": 3.7123913764953613,
+ "step": 2575
+ },
+ {
+ "epoch": 35.782874617737,
+ "grad_norm": 0.19383835792541504,
+ "learning_rate": 0.0006,
+ "loss": 3.6948328018188477,
+ "step": 2576
+ },
+ {
+ "epoch": 35.796854521625164,
+ "grad_norm": 0.18138426542282104,
+ "learning_rate": 0.0006,
+ "loss": 3.6837103366851807,
+ "step": 2577
+ },
+ {
+ "epoch": 35.81083442551333,
+ "grad_norm": 0.18680135905742645,
+ "learning_rate": 0.0006,
+ "loss": 3.7106502056121826,
+ "step": 2578
+ },
+ {
+ "epoch": 35.824814329401484,
+ "grad_norm": 0.19226312637329102,
+ "learning_rate": 0.0006,
+ "loss": 3.69488787651062,
+ "step": 2579
+ },
+ {
+ "epoch": 35.83879423328965,
+ "grad_norm": 0.19224657118320465,
+ "learning_rate": 0.0006,
+ "loss": 3.7103662490844727,
+ "step": 2580
+ },
+ {
+ "epoch": 35.8527741371778,
+ "grad_norm": 0.18991880118846893,
+ "learning_rate": 0.0006,
+ "loss": 3.7154245376586914,
+ "step": 2581
+ },
+ {
+ "epoch": 35.86675404106597,
+ "grad_norm": 0.2036849409341812,
+ "learning_rate": 0.0006,
+ "loss": 3.723738193511963,
+ "step": 2582
+ },
+ {
+ "epoch": 35.88073394495413,
+ "grad_norm": 0.24730375409126282,
+ "learning_rate": 0.0006,
+ "loss": 3.6830549240112305,
+ "step": 2583
+ },
+ {
+ "epoch": 35.89471384884229,
+ "grad_norm": 0.26552343368530273,
+ "learning_rate": 0.0006,
+ "loss": 3.7025017738342285,
+ "step": 2584
+ },
+ {
+ "epoch": 35.90869375273045,
+ "grad_norm": 0.2621893286705017,
+ "learning_rate": 0.0006,
+ "loss": 3.697399854660034,
+ "step": 2585
+ },
+ {
+ "epoch": 35.92267365661861,
+ "grad_norm": 0.2320089191198349,
+ "learning_rate": 0.0006,
+ "loss": 3.722207546234131,
+ "step": 2586
+ },
+ {
+ "epoch": 35.93665356050677,
+ "grad_norm": 0.1848745346069336,
+ "learning_rate": 0.0006,
+ "loss": 3.711249351501465,
+ "step": 2587
+ },
+ {
+ "epoch": 35.95063346439493,
+ "grad_norm": 0.24218113720417023,
+ "learning_rate": 0.0006,
+ "loss": 3.698894500732422,
+ "step": 2588
+ },
+ {
+ "epoch": 35.964613368283096,
+ "grad_norm": 0.29338452219963074,
+ "learning_rate": 0.0006,
+ "loss": 3.7470521926879883,
+ "step": 2589
+ },
+ {
+ "epoch": 35.97859327217125,
+ "grad_norm": 0.2804136276245117,
+ "learning_rate": 0.0006,
+ "loss": 3.750649929046631,
+ "step": 2590
+ },
+ {
+ "epoch": 35.992573176059416,
+ "grad_norm": 0.26404470205307007,
+ "learning_rate": 0.0006,
+ "loss": 3.6995797157287598,
+ "step": 2591
+ },
+ {
+ "epoch": 36.0,
+ "grad_norm": 0.27446141839027405,
+ "learning_rate": 0.0006,
+ "loss": 3.715768814086914,
+ "step": 2592
+ },
+ {
+ "epoch": 36.0,
+ "eval_loss": 4.007599830627441,
+ "eval_runtime": 44.0149,
+ "eval_samples_per_second": 55.481,
+ "eval_steps_per_second": 3.476,
+ "step": 2592
+ },
+ {
+ "epoch": 36.01397990388816,
+ "grad_norm": 0.2365594208240509,
+ "learning_rate": 0.0006,
+ "loss": 3.6529457569122314,
+ "step": 2593
+ },
+ {
+ "epoch": 36.02795980777632,
+ "grad_norm": 0.24824099242687225,
+ "learning_rate": 0.0006,
+ "loss": 3.6703386306762695,
+ "step": 2594
+ },
+ {
+ "epoch": 36.04193971166448,
+ "grad_norm": 0.26802200078964233,
+ "learning_rate": 0.0006,
+ "loss": 3.688307762145996,
+ "step": 2595
+ },
+ {
+ "epoch": 36.05591961555265,
+ "grad_norm": 0.2552911341190338,
+ "learning_rate": 0.0006,
+ "loss": 3.681797981262207,
+ "step": 2596
+ },
+ {
+ "epoch": 36.0698995194408,
+ "grad_norm": 0.254991739988327,
+ "learning_rate": 0.0006,
+ "loss": 3.644087791442871,
+ "step": 2597
+ },
+ {
+ "epoch": 36.083879423328966,
+ "grad_norm": 0.2496735155582428,
+ "learning_rate": 0.0006,
+ "loss": 3.644047737121582,
+ "step": 2598
+ },
+ {
+ "epoch": 36.09785932721712,
+ "grad_norm": 0.23637443780899048,
+ "learning_rate": 0.0006,
+ "loss": 3.684454917907715,
+ "step": 2599
+ },
+ {
+ "epoch": 36.111839231105286,
+ "grad_norm": 0.22065003216266632,
+ "learning_rate": 0.0006,
+ "loss": 3.661752700805664,
+ "step": 2600
+ },
+ {
+ "epoch": 36.12581913499345,
+ "grad_norm": 0.2292395532131195,
+ "learning_rate": 0.0006,
+ "loss": 3.6709558963775635,
+ "step": 2601
+ },
+ {
+ "epoch": 36.139799038881605,
+ "grad_norm": 0.22295089066028595,
+ "learning_rate": 0.0006,
+ "loss": 3.642230987548828,
+ "step": 2602
+ },
+ {
+ "epoch": 36.15377894276977,
+ "grad_norm": 0.2220531553030014,
+ "learning_rate": 0.0006,
+ "loss": 3.653268814086914,
+ "step": 2603
+ },
+ {
+ "epoch": 36.16775884665793,
+ "grad_norm": 0.21605174243450165,
+ "learning_rate": 0.0006,
+ "loss": 3.6791329383850098,
+ "step": 2604
+ },
+ {
+ "epoch": 36.18173875054609,
+ "grad_norm": 0.20932699739933014,
+ "learning_rate": 0.0006,
+ "loss": 3.6496856212615967,
+ "step": 2605
+ },
+ {
+ "epoch": 36.19571865443425,
+ "grad_norm": 0.20941385626792908,
+ "learning_rate": 0.0006,
+ "loss": 3.6445729732513428,
+ "step": 2606
+ },
+ {
+ "epoch": 36.20969855832241,
+ "grad_norm": 0.1987197995185852,
+ "learning_rate": 0.0006,
+ "loss": 3.6481809616088867,
+ "step": 2607
+ },
+ {
+ "epoch": 36.22367846221057,
+ "grad_norm": 0.19054439663887024,
+ "learning_rate": 0.0006,
+ "loss": 3.66894268989563,
+ "step": 2608
+ },
+ {
+ "epoch": 36.237658366098735,
+ "grad_norm": 0.19940806925296783,
+ "learning_rate": 0.0006,
+ "loss": 3.7123427391052246,
+ "step": 2609
+ },
+ {
+ "epoch": 36.25163826998689,
+ "grad_norm": 0.22157685458660126,
+ "learning_rate": 0.0006,
+ "loss": 3.6707541942596436,
+ "step": 2610
+ },
+ {
+ "epoch": 36.265618173875055,
+ "grad_norm": 0.2362316995859146,
+ "learning_rate": 0.0006,
+ "loss": 3.6906795501708984,
+ "step": 2611
+ },
+ {
+ "epoch": 36.27959807776322,
+ "grad_norm": 0.24560341238975525,
+ "learning_rate": 0.0006,
+ "loss": 3.668379783630371,
+ "step": 2612
+ },
+ {
+ "epoch": 36.293577981651374,
+ "grad_norm": 0.22814054787158966,
+ "learning_rate": 0.0006,
+ "loss": 3.665527820587158,
+ "step": 2613
+ },
+ {
+ "epoch": 36.30755788553954,
+ "grad_norm": 0.2156696617603302,
+ "learning_rate": 0.0006,
+ "loss": 3.673835277557373,
+ "step": 2614
+ },
+ {
+ "epoch": 36.3215377894277,
+ "grad_norm": 0.20152772963047028,
+ "learning_rate": 0.0006,
+ "loss": 3.6512670516967773,
+ "step": 2615
+ },
+ {
+ "epoch": 36.33551769331586,
+ "grad_norm": 0.22466860711574554,
+ "learning_rate": 0.0006,
+ "loss": 3.6877706050872803,
+ "step": 2616
+ },
+ {
+ "epoch": 36.34949759720402,
+ "grad_norm": 0.21688112616539001,
+ "learning_rate": 0.0006,
+ "loss": 3.6895859241485596,
+ "step": 2617
+ },
+ {
+ "epoch": 36.36347750109218,
+ "grad_norm": 0.19836577773094177,
+ "learning_rate": 0.0006,
+ "loss": 3.6658992767333984,
+ "step": 2618
+ },
+ {
+ "epoch": 36.37745740498034,
+ "grad_norm": 0.1995069831609726,
+ "learning_rate": 0.0006,
+ "loss": 3.677614450454712,
+ "step": 2619
+ },
+ {
+ "epoch": 36.391437308868504,
+ "grad_norm": 0.21234792470932007,
+ "learning_rate": 0.0006,
+ "loss": 3.6971967220306396,
+ "step": 2620
+ },
+ {
+ "epoch": 36.40541721275666,
+ "grad_norm": 0.20898285508155823,
+ "learning_rate": 0.0006,
+ "loss": 3.6936516761779785,
+ "step": 2621
+ },
+ {
+ "epoch": 36.419397116644824,
+ "grad_norm": 0.2115008533000946,
+ "learning_rate": 0.0006,
+ "loss": 3.6674065589904785,
+ "step": 2622
+ },
+ {
+ "epoch": 36.43337702053299,
+ "grad_norm": 0.2041143774986267,
+ "learning_rate": 0.0006,
+ "loss": 3.6455483436584473,
+ "step": 2623
+ },
+ {
+ "epoch": 36.44735692442114,
+ "grad_norm": 0.1966932713985443,
+ "learning_rate": 0.0006,
+ "loss": 3.6938109397888184,
+ "step": 2624
+ },
+ {
+ "epoch": 36.46133682830931,
+ "grad_norm": 0.20062223076820374,
+ "learning_rate": 0.0006,
+ "loss": 3.6775765419006348,
+ "step": 2625
+ },
+ {
+ "epoch": 36.47531673219746,
+ "grad_norm": 0.20610390603542328,
+ "learning_rate": 0.0006,
+ "loss": 3.6835384368896484,
+ "step": 2626
+ },
+ {
+ "epoch": 36.489296636085626,
+ "grad_norm": 0.20481473207473755,
+ "learning_rate": 0.0006,
+ "loss": 3.6794047355651855,
+ "step": 2627
+ },
+ {
+ "epoch": 36.50327653997379,
+ "grad_norm": 0.18964581191539764,
+ "learning_rate": 0.0006,
+ "loss": 3.7035841941833496,
+ "step": 2628
+ },
+ {
+ "epoch": 36.517256443861946,
+ "grad_norm": 0.2029343545436859,
+ "learning_rate": 0.0006,
+ "loss": 3.6667590141296387,
+ "step": 2629
+ },
+ {
+ "epoch": 36.53123634775011,
+ "grad_norm": 0.23656968772411346,
+ "learning_rate": 0.0006,
+ "loss": 3.6974546909332275,
+ "step": 2630
+ },
+ {
+ "epoch": 36.54521625163827,
+ "grad_norm": 0.23401431739330292,
+ "learning_rate": 0.0006,
+ "loss": 3.668936252593994,
+ "step": 2631
+ },
+ {
+ "epoch": 36.55919615552643,
+ "grad_norm": 0.22258102893829346,
+ "learning_rate": 0.0006,
+ "loss": 3.667977809906006,
+ "step": 2632
+ },
+ {
+ "epoch": 36.57317605941459,
+ "grad_norm": 0.20849554240703583,
+ "learning_rate": 0.0006,
+ "loss": 3.6674845218658447,
+ "step": 2633
+ },
+ {
+ "epoch": 36.58715596330275,
+ "grad_norm": 0.20684309303760529,
+ "learning_rate": 0.0006,
+ "loss": 3.6828644275665283,
+ "step": 2634
+ },
+ {
+ "epoch": 36.60113586719091,
+ "grad_norm": 0.19114233553409576,
+ "learning_rate": 0.0006,
+ "loss": 3.7084832191467285,
+ "step": 2635
+ },
+ {
+ "epoch": 36.615115771079076,
+ "grad_norm": 0.20382429659366608,
+ "learning_rate": 0.0006,
+ "loss": 3.68354868888855,
+ "step": 2636
+ },
+ {
+ "epoch": 36.62909567496723,
+ "grad_norm": 0.22526590526103973,
+ "learning_rate": 0.0006,
+ "loss": 3.684112310409546,
+ "step": 2637
+ },
+ {
+ "epoch": 36.643075578855395,
+ "grad_norm": 0.20735391974449158,
+ "learning_rate": 0.0006,
+ "loss": 3.67702054977417,
+ "step": 2638
+ },
+ {
+ "epoch": 36.65705548274356,
+ "grad_norm": 0.18549653887748718,
+ "learning_rate": 0.0006,
+ "loss": 3.6840810775756836,
+ "step": 2639
+ },
+ {
+ "epoch": 36.671035386631715,
+ "grad_norm": 0.1805262714624405,
+ "learning_rate": 0.0006,
+ "loss": 3.688119411468506,
+ "step": 2640
+ },
+ {
+ "epoch": 36.68501529051988,
+ "grad_norm": 0.17545704543590546,
+ "learning_rate": 0.0006,
+ "loss": 3.6477861404418945,
+ "step": 2641
+ },
+ {
+ "epoch": 36.69899519440804,
+ "grad_norm": 0.1772221326828003,
+ "learning_rate": 0.0006,
+ "loss": 3.6935806274414062,
+ "step": 2642
+ },
+ {
+ "epoch": 36.7129750982962,
+ "grad_norm": 0.18701671063899994,
+ "learning_rate": 0.0006,
+ "loss": 3.6820428371429443,
+ "step": 2643
+ },
+ {
+ "epoch": 36.72695500218436,
+ "grad_norm": 0.2057863473892212,
+ "learning_rate": 0.0006,
+ "loss": 3.669762134552002,
+ "step": 2644
+ },
+ {
+ "epoch": 36.74093490607252,
+ "grad_norm": 0.2565848231315613,
+ "learning_rate": 0.0006,
+ "loss": 3.717599391937256,
+ "step": 2645
+ },
+ {
+ "epoch": 36.75491480996068,
+ "grad_norm": 0.24362123012542725,
+ "learning_rate": 0.0006,
+ "loss": 3.671900987625122,
+ "step": 2646
+ },
+ {
+ "epoch": 36.768894713848844,
+ "grad_norm": 0.19606009125709534,
+ "learning_rate": 0.0006,
+ "loss": 3.6782546043395996,
+ "step": 2647
+ },
+ {
+ "epoch": 36.782874617737,
+ "grad_norm": 0.1948748379945755,
+ "learning_rate": 0.0006,
+ "loss": 3.6823501586914062,
+ "step": 2648
+ },
+ {
+ "epoch": 36.796854521625164,
+ "grad_norm": 0.22289852797985077,
+ "learning_rate": 0.0006,
+ "loss": 3.693469762802124,
+ "step": 2649
+ },
+ {
+ "epoch": 36.81083442551333,
+ "grad_norm": 0.24751701951026917,
+ "learning_rate": 0.0006,
+ "loss": 3.700678825378418,
+ "step": 2650
+ },
+ {
+ "epoch": 36.824814329401484,
+ "grad_norm": 0.28663966059684753,
+ "learning_rate": 0.0006,
+ "loss": 3.6960878372192383,
+ "step": 2651
+ },
+ {
+ "epoch": 36.83879423328965,
+ "grad_norm": 0.3288552165031433,
+ "learning_rate": 0.0006,
+ "loss": 3.7255043983459473,
+ "step": 2652
+ },
+ {
+ "epoch": 36.8527741371778,
+ "grad_norm": 0.3555443286895752,
+ "learning_rate": 0.0006,
+ "loss": 3.725308418273926,
+ "step": 2653
+ },
+ {
+ "epoch": 36.86675404106597,
+ "grad_norm": 0.3204147219657898,
+ "learning_rate": 0.0006,
+ "loss": 3.7137985229492188,
+ "step": 2654
+ },
+ {
+ "epoch": 36.88073394495413,
+ "grad_norm": 0.2944706976413727,
+ "learning_rate": 0.0006,
+ "loss": 3.7032840251922607,
+ "step": 2655
+ },
+ {
+ "epoch": 36.89471384884229,
+ "grad_norm": 0.2845679223537445,
+ "learning_rate": 0.0006,
+ "loss": 3.6840004920959473,
+ "step": 2656
+ },
+ {
+ "epoch": 36.90869375273045,
+ "grad_norm": 0.2815704047679901,
+ "learning_rate": 0.0006,
+ "loss": 3.6958417892456055,
+ "step": 2657
+ },
+ {
+ "epoch": 36.92267365661861,
+ "grad_norm": 0.2733481228351593,
+ "learning_rate": 0.0006,
+ "loss": 3.677690029144287,
+ "step": 2658
+ },
+ {
+ "epoch": 36.93665356050677,
+ "grad_norm": 0.29572054743766785,
+ "learning_rate": 0.0006,
+ "loss": 3.6983718872070312,
+ "step": 2659
+ },
+ {
+ "epoch": 36.95063346439493,
+ "grad_norm": 0.2487923800945282,
+ "learning_rate": 0.0006,
+ "loss": 3.7041163444519043,
+ "step": 2660
+ },
+ {
+ "epoch": 36.964613368283096,
+ "grad_norm": 0.2541966438293457,
+ "learning_rate": 0.0006,
+ "loss": 3.7038979530334473,
+ "step": 2661
+ },
+ {
+ "epoch": 36.97859327217125,
+ "grad_norm": 0.2441335767507553,
+ "learning_rate": 0.0006,
+ "loss": 3.717966079711914,
+ "step": 2662
+ },
+ {
+ "epoch": 36.992573176059416,
+ "grad_norm": 0.2304554283618927,
+ "learning_rate": 0.0006,
+ "loss": 3.671098232269287,
+ "step": 2663
+ },
+ {
+ "epoch": 37.0,
+ "grad_norm": 0.2346591204404831,
+ "learning_rate": 0.0006,
+ "loss": 3.680298089981079,
+ "step": 2664
+ },
+ {
+ "epoch": 37.0,
+ "eval_loss": 3.9944777488708496,
+ "eval_runtime": 43.9862,
+ "eval_samples_per_second": 55.517,
+ "eval_steps_per_second": 3.478,
+ "step": 2664
+ },
+ {
+ "epoch": 37.01397990388816,
+ "grad_norm": 0.22970618307590485,
+ "learning_rate": 0.0006,
+ "loss": 3.6835923194885254,
+ "step": 2665
+ },
+ {
+ "epoch": 37.02795980777632,
+ "grad_norm": 0.25463759899139404,
+ "learning_rate": 0.0006,
+ "loss": 3.658339023590088,
+ "step": 2666
+ },
+ {
+ "epoch": 37.04193971166448,
+ "grad_norm": 0.2520577311515808,
+ "learning_rate": 0.0006,
+ "loss": 3.6275506019592285,
+ "step": 2667
+ },
+ {
+ "epoch": 37.05591961555265,
+ "grad_norm": 0.22698813676834106,
+ "learning_rate": 0.0006,
+ "loss": 3.65043568611145,
+ "step": 2668
+ },
+ {
+ "epoch": 37.0698995194408,
+ "grad_norm": 0.21133972704410553,
+ "learning_rate": 0.0006,
+ "loss": 3.6262078285217285,
+ "step": 2669
+ },
+ {
+ "epoch": 37.083879423328966,
+ "grad_norm": 0.21940460801124573,
+ "learning_rate": 0.0006,
+ "loss": 3.6709489822387695,
+ "step": 2670
+ },
+ {
+ "epoch": 37.09785932721712,
+ "grad_norm": 0.21897517144680023,
+ "learning_rate": 0.0006,
+ "loss": 3.6621508598327637,
+ "step": 2671
+ },
+ {
+ "epoch": 37.111839231105286,
+ "grad_norm": 0.2270219624042511,
+ "learning_rate": 0.0006,
+ "loss": 3.6334924697875977,
+ "step": 2672
+ },
+ {
+ "epoch": 37.12581913499345,
+ "grad_norm": 0.22082042694091797,
+ "learning_rate": 0.0006,
+ "loss": 3.662209987640381,
+ "step": 2673
+ },
+ {
+ "epoch": 37.139799038881605,
+ "grad_norm": 0.19931960105895996,
+ "learning_rate": 0.0006,
+ "loss": 3.6655359268188477,
+ "step": 2674
+ },
+ {
+ "epoch": 37.15377894276977,
+ "grad_norm": 0.21451307833194733,
+ "learning_rate": 0.0006,
+ "loss": 3.656287670135498,
+ "step": 2675
+ },
+ {
+ "epoch": 37.16775884665793,
+ "grad_norm": 0.2131514698266983,
+ "learning_rate": 0.0006,
+ "loss": 3.635054111480713,
+ "step": 2676
+ },
+ {
+ "epoch": 37.18173875054609,
+ "grad_norm": 0.20425808429718018,
+ "learning_rate": 0.0006,
+ "loss": 3.67653226852417,
+ "step": 2677
+ },
+ {
+ "epoch": 37.19571865443425,
+ "grad_norm": 0.19423379004001617,
+ "learning_rate": 0.0006,
+ "loss": 3.6827316284179688,
+ "step": 2678
+ },
+ {
+ "epoch": 37.20969855832241,
+ "grad_norm": 0.1954883486032486,
+ "learning_rate": 0.0006,
+ "loss": 3.658092498779297,
+ "step": 2679
+ },
+ {
+ "epoch": 37.22367846221057,
+ "grad_norm": 0.21153928339481354,
+ "learning_rate": 0.0006,
+ "loss": 3.6675186157226562,
+ "step": 2680
+ },
+ {
+ "epoch": 37.237658366098735,
+ "grad_norm": 0.2032976895570755,
+ "learning_rate": 0.0006,
+ "loss": 3.6725759506225586,
+ "step": 2681
+ },
+ {
+ "epoch": 37.25163826998689,
+ "grad_norm": 0.19839346408843994,
+ "learning_rate": 0.0006,
+ "loss": 3.660851240158081,
+ "step": 2682
+ },
+ {
+ "epoch": 37.265618173875055,
+ "grad_norm": 0.1884699910879135,
+ "learning_rate": 0.0006,
+ "loss": 3.6653623580932617,
+ "step": 2683
+ },
+ {
+ "epoch": 37.27959807776322,
+ "grad_norm": 0.19558705389499664,
+ "learning_rate": 0.0006,
+ "loss": 3.648016929626465,
+ "step": 2684
+ },
+ {
+ "epoch": 37.293577981651374,
+ "grad_norm": 0.19453682005405426,
+ "learning_rate": 0.0006,
+ "loss": 3.6804773807525635,
+ "step": 2685
+ },
+ {
+ "epoch": 37.30755788553954,
+ "grad_norm": 0.1901177167892456,
+ "learning_rate": 0.0006,
+ "loss": 3.6533353328704834,
+ "step": 2686
+ },
+ {
+ "epoch": 37.3215377894277,
+ "grad_norm": 0.19425596296787262,
+ "learning_rate": 0.0006,
+ "loss": 3.665745735168457,
+ "step": 2687
+ },
+ {
+ "epoch": 37.33551769331586,
+ "grad_norm": 0.17583411931991577,
+ "learning_rate": 0.0006,
+ "loss": 3.679112434387207,
+ "step": 2688
+ },
+ {
+ "epoch": 37.34949759720402,
+ "grad_norm": 0.19667863845825195,
+ "learning_rate": 0.0006,
+ "loss": 3.6650352478027344,
+ "step": 2689
+ },
+ {
+ "epoch": 37.36347750109218,
+ "grad_norm": 0.22803270816802979,
+ "learning_rate": 0.0006,
+ "loss": 3.6658573150634766,
+ "step": 2690
+ },
+ {
+ "epoch": 37.37745740498034,
+ "grad_norm": 0.20589298009872437,
+ "learning_rate": 0.0006,
+ "loss": 3.6587300300598145,
+ "step": 2691
+ },
+ {
+ "epoch": 37.391437308868504,
+ "grad_norm": 0.1946951299905777,
+ "learning_rate": 0.0006,
+ "loss": 3.6515092849731445,
+ "step": 2692
+ },
+ {
+ "epoch": 37.40541721275666,
+ "grad_norm": 0.19029614329338074,
+ "learning_rate": 0.0006,
+ "loss": 3.6383113861083984,
+ "step": 2693
+ },
+ {
+ "epoch": 37.419397116644824,
+ "grad_norm": 0.1944548338651657,
+ "learning_rate": 0.0006,
+ "loss": 3.7017135620117188,
+ "step": 2694
+ },
+ {
+ "epoch": 37.43337702053299,
+ "grad_norm": 0.19482386112213135,
+ "learning_rate": 0.0006,
+ "loss": 3.6791775226593018,
+ "step": 2695
+ },
+ {
+ "epoch": 37.44735692442114,
+ "grad_norm": 0.23276680707931519,
+ "learning_rate": 0.0006,
+ "loss": 3.672245979309082,
+ "step": 2696
+ },
+ {
+ "epoch": 37.46133682830931,
+ "grad_norm": 0.22267542779445648,
+ "learning_rate": 0.0006,
+ "loss": 3.683380365371704,
+ "step": 2697
+ },
+ {
+ "epoch": 37.47531673219746,
+ "grad_norm": 0.1942203938961029,
+ "learning_rate": 0.0006,
+ "loss": 3.6760759353637695,
+ "step": 2698
+ },
+ {
+ "epoch": 37.489296636085626,
+ "grad_norm": 0.21212540566921234,
+ "learning_rate": 0.0006,
+ "loss": 3.660719633102417,
+ "step": 2699
+ },
+ {
+ "epoch": 37.50327653997379,
+ "grad_norm": 0.2365427315235138,
+ "learning_rate": 0.0006,
+ "loss": 3.6727194786071777,
+ "step": 2700
+ },
+ {
+ "epoch": 37.517256443861946,
+ "grad_norm": 0.2379675805568695,
+ "learning_rate": 0.0006,
+ "loss": 3.6691598892211914,
+ "step": 2701
+ },
+ {
+ "epoch": 37.53123634775011,
+ "grad_norm": 0.22142401337623596,
+ "learning_rate": 0.0006,
+ "loss": 3.6882128715515137,
+ "step": 2702
+ },
+ {
+ "epoch": 37.54521625163827,
+ "grad_norm": 0.19993607699871063,
+ "learning_rate": 0.0006,
+ "loss": 3.6651787757873535,
+ "step": 2703
+ },
+ {
+ "epoch": 37.55919615552643,
+ "grad_norm": 0.19934895634651184,
+ "learning_rate": 0.0006,
+ "loss": 3.6680638790130615,
+ "step": 2704
+ },
+ {
+ "epoch": 37.57317605941459,
+ "grad_norm": 0.21202369034290314,
+ "learning_rate": 0.0006,
+ "loss": 3.697615623474121,
+ "step": 2705
+ },
+ {
+ "epoch": 37.58715596330275,
+ "grad_norm": 0.1994577795267105,
+ "learning_rate": 0.0006,
+ "loss": 3.688243865966797,
+ "step": 2706
+ },
+ {
+ "epoch": 37.60113586719091,
+ "grad_norm": 0.20365118980407715,
+ "learning_rate": 0.0006,
+ "loss": 3.6615519523620605,
+ "step": 2707
+ },
+ {
+ "epoch": 37.615115771079076,
+ "grad_norm": 0.22466035187244415,
+ "learning_rate": 0.0006,
+ "loss": 3.703111171722412,
+ "step": 2708
+ },
+ {
+ "epoch": 37.62909567496723,
+ "grad_norm": 0.21140407025814056,
+ "learning_rate": 0.0006,
+ "loss": 3.6744728088378906,
+ "step": 2709
+ },
+ {
+ "epoch": 37.643075578855395,
+ "grad_norm": 0.22220195829868317,
+ "learning_rate": 0.0006,
+ "loss": 3.671501874923706,
+ "step": 2710
+ },
+ {
+ "epoch": 37.65705548274356,
+ "grad_norm": 0.23279480636119843,
+ "learning_rate": 0.0006,
+ "loss": 3.6962859630584717,
+ "step": 2711
+ },
+ {
+ "epoch": 37.671035386631715,
+ "grad_norm": 0.23284408450126648,
+ "learning_rate": 0.0006,
+ "loss": 3.670231342315674,
+ "step": 2712
+ },
+ {
+ "epoch": 37.68501529051988,
+ "grad_norm": 0.21935738623142242,
+ "learning_rate": 0.0006,
+ "loss": 3.6908650398254395,
+ "step": 2713
+ },
+ {
+ "epoch": 37.69899519440804,
+ "grad_norm": 0.2072262167930603,
+ "learning_rate": 0.0006,
+ "loss": 3.7204506397247314,
+ "step": 2714
+ },
+ {
+ "epoch": 37.7129750982962,
+ "grad_norm": 0.22547709941864014,
+ "learning_rate": 0.0006,
+ "loss": 3.6740894317626953,
+ "step": 2715
+ },
+ {
+ "epoch": 37.72695500218436,
+ "grad_norm": 0.2460414469242096,
+ "learning_rate": 0.0006,
+ "loss": 3.6938390731811523,
+ "step": 2716
+ },
+ {
+ "epoch": 37.74093490607252,
+ "grad_norm": 0.24756456911563873,
+ "learning_rate": 0.0006,
+ "loss": 3.692173480987549,
+ "step": 2717
+ },
+ {
+ "epoch": 37.75491480996068,
+ "grad_norm": 0.20149244368076324,
+ "learning_rate": 0.0006,
+ "loss": 3.6677675247192383,
+ "step": 2718
+ },
+ {
+ "epoch": 37.768894713848844,
+ "grad_norm": 0.19834814965724945,
+ "learning_rate": 0.0006,
+ "loss": 3.6717336177825928,
+ "step": 2719
+ },
+ {
+ "epoch": 37.782874617737,
+ "grad_norm": 0.22929978370666504,
+ "learning_rate": 0.0006,
+ "loss": 3.6818275451660156,
+ "step": 2720
+ },
+ {
+ "epoch": 37.796854521625164,
+ "grad_norm": 0.23674434423446655,
+ "learning_rate": 0.0006,
+ "loss": 3.689767360687256,
+ "step": 2721
+ },
+ {
+ "epoch": 37.81083442551333,
+ "grad_norm": 0.22798952460289001,
+ "learning_rate": 0.0006,
+ "loss": 3.6928915977478027,
+ "step": 2722
+ },
+ {
+ "epoch": 37.824814329401484,
+ "grad_norm": 0.2270302027463913,
+ "learning_rate": 0.0006,
+ "loss": 3.6884233951568604,
+ "step": 2723
+ },
+ {
+ "epoch": 37.83879423328965,
+ "grad_norm": 0.23563820123672485,
+ "learning_rate": 0.0006,
+ "loss": 3.6962456703186035,
+ "step": 2724
+ },
+ {
+ "epoch": 37.8527741371778,
+ "grad_norm": 0.2240045815706253,
+ "learning_rate": 0.0006,
+ "loss": 3.6985082626342773,
+ "step": 2725
+ },
+ {
+ "epoch": 37.86675404106597,
+ "grad_norm": 0.21541155874729156,
+ "learning_rate": 0.0006,
+ "loss": 3.6960105895996094,
+ "step": 2726
+ },
+ {
+ "epoch": 37.88073394495413,
+ "grad_norm": 0.23257222771644592,
+ "learning_rate": 0.0006,
+ "loss": 3.667404890060425,
+ "step": 2727
+ },
+ {
+ "epoch": 37.89471384884229,
+ "grad_norm": 0.226792573928833,
+ "learning_rate": 0.0006,
+ "loss": 3.6549744606018066,
+ "step": 2728
+ },
+ {
+ "epoch": 37.90869375273045,
+ "grad_norm": 0.18993401527404785,
+ "learning_rate": 0.0006,
+ "loss": 3.6772334575653076,
+ "step": 2729
+ },
+ {
+ "epoch": 37.92267365661861,
+ "grad_norm": 0.20936095714569092,
+ "learning_rate": 0.0006,
+ "loss": 3.671116352081299,
+ "step": 2730
+ },
+ {
+ "epoch": 37.93665356050677,
+ "grad_norm": 0.2203974425792694,
+ "learning_rate": 0.0006,
+ "loss": 3.6549739837646484,
+ "step": 2731
+ },
+ {
+ "epoch": 37.95063346439493,
+ "grad_norm": 0.19504620134830475,
+ "learning_rate": 0.0006,
+ "loss": 3.6755447387695312,
+ "step": 2732
+ },
+ {
+ "epoch": 37.964613368283096,
+ "grad_norm": 0.2025984674692154,
+ "learning_rate": 0.0006,
+ "loss": 3.678955554962158,
+ "step": 2733
+ },
+ {
+ "epoch": 37.97859327217125,
+ "grad_norm": 0.21556107699871063,
+ "learning_rate": 0.0006,
+ "loss": 3.6680502891540527,
+ "step": 2734
+ },
+ {
+ "epoch": 37.992573176059416,
+ "grad_norm": 0.21011291444301605,
+ "learning_rate": 0.0006,
+ "loss": 3.672039031982422,
+ "step": 2735
+ },
+ {
+ "epoch": 38.0,
+ "grad_norm": 0.23710957169532776,
+ "learning_rate": 0.0006,
+ "loss": 3.6326794624328613,
+ "step": 2736
+ },
+ {
+ "epoch": 38.0,
+ "eval_loss": 3.990501880645752,
+ "eval_runtime": 43.8951,
+ "eval_samples_per_second": 55.633,
+ "eval_steps_per_second": 3.486,
+ "step": 2736
+ },
+ {
+ "epoch": 38.01397990388816,
+ "grad_norm": 0.20711326599121094,
+ "learning_rate": 0.0006,
+ "loss": 3.6364657878875732,
+ "step": 2737
+ },
+ {
+ "epoch": 38.02795980777632,
+ "grad_norm": 0.2250880002975464,
+ "learning_rate": 0.0006,
+ "loss": 3.637646436691284,
+ "step": 2738
+ },
+ {
+ "epoch": 38.04193971166448,
+ "grad_norm": 0.2448352724313736,
+ "learning_rate": 0.0006,
+ "loss": 3.63557767868042,
+ "step": 2739
+ },
+ {
+ "epoch": 38.05591961555265,
+ "grad_norm": 0.23031368851661682,
+ "learning_rate": 0.0006,
+ "loss": 3.627117395401001,
+ "step": 2740
+ },
+ {
+ "epoch": 38.0698995194408,
+ "grad_norm": 0.2045450210571289,
+ "learning_rate": 0.0006,
+ "loss": 3.6594958305358887,
+ "step": 2741
+ },
+ {
+ "epoch": 38.083879423328966,
+ "grad_norm": 0.21253496408462524,
+ "learning_rate": 0.0006,
+ "loss": 3.65494441986084,
+ "step": 2742
+ },
+ {
+ "epoch": 38.09785932721712,
+ "grad_norm": 0.20196112990379333,
+ "learning_rate": 0.0006,
+ "loss": 3.645289421081543,
+ "step": 2743
+ },
+ {
+ "epoch": 38.111839231105286,
+ "grad_norm": 0.20258229970932007,
+ "learning_rate": 0.0006,
+ "loss": 3.6698505878448486,
+ "step": 2744
+ },
+ {
+ "epoch": 38.12581913499345,
+ "grad_norm": 0.22182606160640717,
+ "learning_rate": 0.0006,
+ "loss": 3.6427698135375977,
+ "step": 2745
+ },
+ {
+ "epoch": 38.139799038881605,
+ "grad_norm": 0.21281519532203674,
+ "learning_rate": 0.0006,
+ "loss": 3.668337345123291,
+ "step": 2746
+ },
+ {
+ "epoch": 38.15377894276977,
+ "grad_norm": 0.21680216491222382,
+ "learning_rate": 0.0006,
+ "loss": 3.6362109184265137,
+ "step": 2747
+ },
+ {
+ "epoch": 38.16775884665793,
+ "grad_norm": 0.24396903812885284,
+ "learning_rate": 0.0006,
+ "loss": 3.660510540008545,
+ "step": 2748
+ },
+ {
+ "epoch": 38.18173875054609,
+ "grad_norm": 0.2546434700489044,
+ "learning_rate": 0.0006,
+ "loss": 3.6562418937683105,
+ "step": 2749
+ },
+ {
+ "epoch": 38.19571865443425,
+ "grad_norm": 0.22705447673797607,
+ "learning_rate": 0.0006,
+ "loss": 3.6801514625549316,
+ "step": 2750
+ },
+ {
+ "epoch": 38.20969855832241,
+ "grad_norm": 0.21516330540180206,
+ "learning_rate": 0.0006,
+ "loss": 3.6633429527282715,
+ "step": 2751
+ },
+ {
+ "epoch": 38.22367846221057,
+ "grad_norm": 0.20895853638648987,
+ "learning_rate": 0.0006,
+ "loss": 3.619896411895752,
+ "step": 2752
+ },
+ {
+ "epoch": 38.237658366098735,
+ "grad_norm": 0.21183325350284576,
+ "learning_rate": 0.0006,
+ "loss": 3.639491558074951,
+ "step": 2753
+ },
+ {
+ "epoch": 38.25163826998689,
+ "grad_norm": 0.21439522504806519,
+ "learning_rate": 0.0006,
+ "loss": 3.671931028366089,
+ "step": 2754
+ },
+ {
+ "epoch": 38.265618173875055,
+ "grad_norm": 0.2017785906791687,
+ "learning_rate": 0.0006,
+ "loss": 3.639533519744873,
+ "step": 2755
+ },
+ {
+ "epoch": 38.27959807776322,
+ "grad_norm": 0.20015068352222443,
+ "learning_rate": 0.0006,
+ "loss": 3.654262065887451,
+ "step": 2756
+ },
+ {
+ "epoch": 38.293577981651374,
+ "grad_norm": 0.21518948674201965,
+ "learning_rate": 0.0006,
+ "loss": 3.649919033050537,
+ "step": 2757
+ },
+ {
+ "epoch": 38.30755788553954,
+ "grad_norm": 0.21994580328464508,
+ "learning_rate": 0.0006,
+ "loss": 3.6756131649017334,
+ "step": 2758
+ },
+ {
+ "epoch": 38.3215377894277,
+ "grad_norm": 0.2053978443145752,
+ "learning_rate": 0.0006,
+ "loss": 3.651520252227783,
+ "step": 2759
+ },
+ {
+ "epoch": 38.33551769331586,
+ "grad_norm": 0.2066337615251541,
+ "learning_rate": 0.0006,
+ "loss": 3.6404507160186768,
+ "step": 2760
+ },
+ {
+ "epoch": 38.34949759720402,
+ "grad_norm": 0.20898301899433136,
+ "learning_rate": 0.0006,
+ "loss": 3.637200355529785,
+ "step": 2761
+ },
+ {
+ "epoch": 38.36347750109218,
+ "grad_norm": 0.19212259352207184,
+ "learning_rate": 0.0006,
+ "loss": 3.68394136428833,
+ "step": 2762
+ },
+ {
+ "epoch": 38.37745740498034,
+ "grad_norm": 0.2011883556842804,
+ "learning_rate": 0.0006,
+ "loss": 3.6494975090026855,
+ "step": 2763
+ },
+ {
+ "epoch": 38.391437308868504,
+ "grad_norm": 0.23072998225688934,
+ "learning_rate": 0.0006,
+ "loss": 3.6644320487976074,
+ "step": 2764
+ },
+ {
+ "epoch": 38.40541721275666,
+ "grad_norm": 0.2195347547531128,
+ "learning_rate": 0.0006,
+ "loss": 3.6666269302368164,
+ "step": 2765
+ },
+ {
+ "epoch": 38.419397116644824,
+ "grad_norm": 0.19820117950439453,
+ "learning_rate": 0.0006,
+ "loss": 3.690683364868164,
+ "step": 2766
+ },
+ {
+ "epoch": 38.43337702053299,
+ "grad_norm": 0.20381149649620056,
+ "learning_rate": 0.0006,
+ "loss": 3.6647756099700928,
+ "step": 2767
+ },
+ {
+ "epoch": 38.44735692442114,
+ "grad_norm": 0.19477297365665436,
+ "learning_rate": 0.0006,
+ "loss": 3.6419155597686768,
+ "step": 2768
+ },
+ {
+ "epoch": 38.46133682830931,
+ "grad_norm": 0.20118845999240875,
+ "learning_rate": 0.0006,
+ "loss": 3.678511142730713,
+ "step": 2769
+ },
+ {
+ "epoch": 38.47531673219746,
+ "grad_norm": 0.19538167119026184,
+ "learning_rate": 0.0006,
+ "loss": 3.632112503051758,
+ "step": 2770
+ },
+ {
+ "epoch": 38.489296636085626,
+ "grad_norm": 0.18136411905288696,
+ "learning_rate": 0.0006,
+ "loss": 3.6631078720092773,
+ "step": 2771
+ },
+ {
+ "epoch": 38.50327653997379,
+ "grad_norm": 0.1993526667356491,
+ "learning_rate": 0.0006,
+ "loss": 3.6800379753112793,
+ "step": 2772
+ },
+ {
+ "epoch": 38.517256443861946,
+ "grad_norm": 0.21409109234809875,
+ "learning_rate": 0.0006,
+ "loss": 3.6355738639831543,
+ "step": 2773
+ },
+ {
+ "epoch": 38.53123634775011,
+ "grad_norm": 0.20932911336421967,
+ "learning_rate": 0.0006,
+ "loss": 3.6639811992645264,
+ "step": 2774
+ },
+ {
+ "epoch": 38.54521625163827,
+ "grad_norm": 0.22266243398189545,
+ "learning_rate": 0.0006,
+ "loss": 3.6927733421325684,
+ "step": 2775
+ },
+ {
+ "epoch": 38.55919615552643,
+ "grad_norm": 0.22916539013385773,
+ "learning_rate": 0.0006,
+ "loss": 3.6381587982177734,
+ "step": 2776
+ },
+ {
+ "epoch": 38.57317605941459,
+ "grad_norm": 0.21507245302200317,
+ "learning_rate": 0.0006,
+ "loss": 3.6724753379821777,
+ "step": 2777
+ },
+ {
+ "epoch": 38.58715596330275,
+ "grad_norm": 0.21132487058639526,
+ "learning_rate": 0.0006,
+ "loss": 3.68450927734375,
+ "step": 2778
+ },
+ {
+ "epoch": 38.60113586719091,
+ "grad_norm": 0.2323923259973526,
+ "learning_rate": 0.0006,
+ "loss": 3.6917476654052734,
+ "step": 2779
+ },
+ {
+ "epoch": 38.615115771079076,
+ "grad_norm": 0.2862907648086548,
+ "learning_rate": 0.0006,
+ "loss": 3.6832518577575684,
+ "step": 2780
+ },
+ {
+ "epoch": 38.62909567496723,
+ "grad_norm": 0.28132742643356323,
+ "learning_rate": 0.0006,
+ "loss": 3.6619668006896973,
+ "step": 2781
+ },
+ {
+ "epoch": 38.643075578855395,
+ "grad_norm": 0.24933350086212158,
+ "learning_rate": 0.0006,
+ "loss": 3.6342711448669434,
+ "step": 2782
+ },
+ {
+ "epoch": 38.65705548274356,
+ "grad_norm": 0.23482646048069,
+ "learning_rate": 0.0006,
+ "loss": 3.667548656463623,
+ "step": 2783
+ },
+ {
+ "epoch": 38.671035386631715,
+ "grad_norm": 0.2529793083667755,
+ "learning_rate": 0.0006,
+ "loss": 3.6613709926605225,
+ "step": 2784
+ },
+ {
+ "epoch": 38.68501529051988,
+ "grad_norm": 0.2306097447872162,
+ "learning_rate": 0.0006,
+ "loss": 3.653153419494629,
+ "step": 2785
+ },
+ {
+ "epoch": 38.69899519440804,
+ "grad_norm": 0.21787869930267334,
+ "learning_rate": 0.0006,
+ "loss": 3.6991848945617676,
+ "step": 2786
+ },
+ {
+ "epoch": 38.7129750982962,
+ "grad_norm": 0.24818190932273865,
+ "learning_rate": 0.0006,
+ "loss": 3.664022445678711,
+ "step": 2787
+ },
+ {
+ "epoch": 38.72695500218436,
+ "grad_norm": 0.23205995559692383,
+ "learning_rate": 0.0006,
+ "loss": 3.656064987182617,
+ "step": 2788
+ },
+ {
+ "epoch": 38.74093490607252,
+ "grad_norm": 0.2268102467060089,
+ "learning_rate": 0.0006,
+ "loss": 3.678421974182129,
+ "step": 2789
+ },
+ {
+ "epoch": 38.75491480996068,
+ "grad_norm": 0.22549907863140106,
+ "learning_rate": 0.0006,
+ "loss": 3.6483302116394043,
+ "step": 2790
+ },
+ {
+ "epoch": 38.768894713848844,
+ "grad_norm": 0.2293119877576828,
+ "learning_rate": 0.0006,
+ "loss": 3.646825075149536,
+ "step": 2791
+ },
+ {
+ "epoch": 38.782874617737,
+ "grad_norm": 0.21879418194293976,
+ "learning_rate": 0.0006,
+ "loss": 3.682124614715576,
+ "step": 2792
+ },
+ {
+ "epoch": 38.796854521625164,
+ "grad_norm": 0.22012849152088165,
+ "learning_rate": 0.0006,
+ "loss": 3.6590089797973633,
+ "step": 2793
+ },
+ {
+ "epoch": 38.81083442551333,
+ "grad_norm": 0.2449142336845398,
+ "learning_rate": 0.0006,
+ "loss": 3.7053747177124023,
+ "step": 2794
+ },
+ {
+ "epoch": 38.824814329401484,
+ "grad_norm": 0.2677161395549774,
+ "learning_rate": 0.0006,
+ "loss": 3.666144371032715,
+ "step": 2795
+ },
+ {
+ "epoch": 38.83879423328965,
+ "grad_norm": 0.2654981315135956,
+ "learning_rate": 0.0006,
+ "loss": 3.637512683868408,
+ "step": 2796
+ },
+ {
+ "epoch": 38.8527741371778,
+ "grad_norm": 0.23169654607772827,
+ "learning_rate": 0.0006,
+ "loss": 3.6885948181152344,
+ "step": 2797
+ },
+ {
+ "epoch": 38.86675404106597,
+ "grad_norm": 0.22195108234882355,
+ "learning_rate": 0.0006,
+ "loss": 3.6597604751586914,
+ "step": 2798
+ },
+ {
+ "epoch": 38.88073394495413,
+ "grad_norm": 0.23703525960445404,
+ "learning_rate": 0.0006,
+ "loss": 3.6808712482452393,
+ "step": 2799
+ },
+ {
+ "epoch": 38.89471384884229,
+ "grad_norm": 0.24711088836193085,
+ "learning_rate": 0.0006,
+ "loss": 3.733792781829834,
+ "step": 2800
+ },
+ {
+ "epoch": 38.90869375273045,
+ "grad_norm": 0.216362863779068,
+ "learning_rate": 0.0006,
+ "loss": 3.670599937438965,
+ "step": 2801
+ },
+ {
+ "epoch": 38.92267365661861,
+ "grad_norm": 0.19483810663223267,
+ "learning_rate": 0.0006,
+ "loss": 3.6965198516845703,
+ "step": 2802
+ },
+ {
+ "epoch": 38.93665356050677,
+ "grad_norm": 0.1941208392381668,
+ "learning_rate": 0.0006,
+ "loss": 3.678022861480713,
+ "step": 2803
+ },
+ {
+ "epoch": 38.95063346439493,
+ "grad_norm": 0.1919465959072113,
+ "learning_rate": 0.0006,
+ "loss": 3.6763226985931396,
+ "step": 2804
+ },
+ {
+ "epoch": 38.964613368283096,
+ "grad_norm": 0.2003280073404312,
+ "learning_rate": 0.0006,
+ "loss": 3.670313835144043,
+ "step": 2805
+ },
+ {
+ "epoch": 38.97859327217125,
+ "grad_norm": 0.198478564620018,
+ "learning_rate": 0.0006,
+ "loss": 3.675569772720337,
+ "step": 2806
+ },
+ {
+ "epoch": 38.992573176059416,
+ "grad_norm": 0.23692303895950317,
+ "learning_rate": 0.0006,
+ "loss": 3.696561336517334,
+ "step": 2807
+ },
+ {
+ "epoch": 39.0,
+ "grad_norm": 0.3208145797252655,
+ "learning_rate": 0.0006,
+ "loss": 3.6791436672210693,
+ "step": 2808
+ },
+ {
+ "epoch": 39.0,
+ "eval_loss": 4.0079450607299805,
+ "eval_runtime": 43.8573,
+ "eval_samples_per_second": 55.681,
+ "eval_steps_per_second": 3.489,
+ "step": 2808
+ },
+ {
+ "epoch": 39.01397990388816,
+ "grad_norm": 0.28338733315467834,
+ "learning_rate": 0.0006,
+ "loss": 3.6277060508728027,
+ "step": 2809
+ },
+ {
+ "epoch": 39.02795980777632,
+ "grad_norm": 0.22057899832725525,
+ "learning_rate": 0.0006,
+ "loss": 3.6132822036743164,
+ "step": 2810
+ },
+ {
+ "epoch": 39.04193971166448,
+ "grad_norm": 0.20630282163619995,
+ "learning_rate": 0.0006,
+ "loss": 3.6143927574157715,
+ "step": 2811
+ },
+ {
+ "epoch": 39.05591961555265,
+ "grad_norm": 0.2178523689508438,
+ "learning_rate": 0.0006,
+ "loss": 3.6304664611816406,
+ "step": 2812
+ },
+ {
+ "epoch": 39.0698995194408,
+ "grad_norm": 0.19613824784755707,
+ "learning_rate": 0.0006,
+ "loss": 3.6137919425964355,
+ "step": 2813
+ },
+ {
+ "epoch": 39.083879423328966,
+ "grad_norm": 0.2047276794910431,
+ "learning_rate": 0.0006,
+ "loss": 3.6854846477508545,
+ "step": 2814
+ },
+ {
+ "epoch": 39.09785932721712,
+ "grad_norm": 0.20082715153694153,
+ "learning_rate": 0.0006,
+ "loss": 3.632091522216797,
+ "step": 2815
+ },
+ {
+ "epoch": 39.111839231105286,
+ "grad_norm": 0.21746563911437988,
+ "learning_rate": 0.0006,
+ "loss": 3.640477180480957,
+ "step": 2816
+ },
+ {
+ "epoch": 39.12581913499345,
+ "grad_norm": 0.2128882110118866,
+ "learning_rate": 0.0006,
+ "loss": 3.643984317779541,
+ "step": 2817
+ },
+ {
+ "epoch": 39.139799038881605,
+ "grad_norm": 0.2110479772090912,
+ "learning_rate": 0.0006,
+ "loss": 3.6328823566436768,
+ "step": 2818
+ },
+ {
+ "epoch": 39.15377894276977,
+ "grad_norm": 0.22304436564445496,
+ "learning_rate": 0.0006,
+ "loss": 3.6669845581054688,
+ "step": 2819
+ },
+ {
+ "epoch": 39.16775884665793,
+ "grad_norm": 0.22310666739940643,
+ "learning_rate": 0.0006,
+ "loss": 3.609743595123291,
+ "step": 2820
+ },
+ {
+ "epoch": 39.18173875054609,
+ "grad_norm": 0.21002045273780823,
+ "learning_rate": 0.0006,
+ "loss": 3.601900815963745,
+ "step": 2821
+ },
+ {
+ "epoch": 39.19571865443425,
+ "grad_norm": 0.20531952381134033,
+ "learning_rate": 0.0006,
+ "loss": 3.6405060291290283,
+ "step": 2822
+ },
+ {
+ "epoch": 39.20969855832241,
+ "grad_norm": 0.20646385848522186,
+ "learning_rate": 0.0006,
+ "loss": 3.669617176055908,
+ "step": 2823
+ },
+ {
+ "epoch": 39.22367846221057,
+ "grad_norm": 0.2553980350494385,
+ "learning_rate": 0.0006,
+ "loss": 3.642709255218506,
+ "step": 2824
+ },
+ {
+ "epoch": 39.237658366098735,
+ "grad_norm": 0.2753220498561859,
+ "learning_rate": 0.0006,
+ "loss": 3.668405055999756,
+ "step": 2825
+ },
+ {
+ "epoch": 39.25163826998689,
+ "grad_norm": 0.2425055354833603,
+ "learning_rate": 0.0006,
+ "loss": 3.659559726715088,
+ "step": 2826
+ },
+ {
+ "epoch": 39.265618173875055,
+ "grad_norm": 0.2199426293373108,
+ "learning_rate": 0.0006,
+ "loss": 3.6466197967529297,
+ "step": 2827
+ },
+ {
+ "epoch": 39.27959807776322,
+ "grad_norm": 0.221355602145195,
+ "learning_rate": 0.0006,
+ "loss": 3.639418125152588,
+ "step": 2828
+ },
+ {
+ "epoch": 39.293577981651374,
+ "grad_norm": 0.20777100324630737,
+ "learning_rate": 0.0006,
+ "loss": 3.68102765083313,
+ "step": 2829
+ },
+ {
+ "epoch": 39.30755788553954,
+ "grad_norm": 0.20557557046413422,
+ "learning_rate": 0.0006,
+ "loss": 3.663064956665039,
+ "step": 2830
+ },
+ {
+ "epoch": 39.3215377894277,
+ "grad_norm": 0.2385585904121399,
+ "learning_rate": 0.0006,
+ "loss": 3.6598849296569824,
+ "step": 2831
+ },
+ {
+ "epoch": 39.33551769331586,
+ "grad_norm": 0.25222650170326233,
+ "learning_rate": 0.0006,
+ "loss": 3.635199546813965,
+ "step": 2832
+ },
+ {
+ "epoch": 39.34949759720402,
+ "grad_norm": 0.22894687950611115,
+ "learning_rate": 0.0006,
+ "loss": 3.6100258827209473,
+ "step": 2833
+ },
+ {
+ "epoch": 39.36347750109218,
+ "grad_norm": 0.22945865988731384,
+ "learning_rate": 0.0006,
+ "loss": 3.63069748878479,
+ "step": 2834
+ },
+ {
+ "epoch": 39.37745740498034,
+ "grad_norm": 0.2466309368610382,
+ "learning_rate": 0.0006,
+ "loss": 3.6615123748779297,
+ "step": 2835
+ },
+ {
+ "epoch": 39.391437308868504,
+ "grad_norm": 0.23845571279525757,
+ "learning_rate": 0.0006,
+ "loss": 3.655045509338379,
+ "step": 2836
+ },
+ {
+ "epoch": 39.40541721275666,
+ "grad_norm": 0.20273560285568237,
+ "learning_rate": 0.0006,
+ "loss": 3.6497647762298584,
+ "step": 2837
+ },
+ {
+ "epoch": 39.419397116644824,
+ "grad_norm": 0.19820313155651093,
+ "learning_rate": 0.0006,
+ "loss": 3.6728386878967285,
+ "step": 2838
+ },
+ {
+ "epoch": 39.43337702053299,
+ "grad_norm": 0.21581435203552246,
+ "learning_rate": 0.0006,
+ "loss": 3.660247325897217,
+ "step": 2839
+ },
+ {
+ "epoch": 39.44735692442114,
+ "grad_norm": 0.20559731125831604,
+ "learning_rate": 0.0006,
+ "loss": 3.6244559288024902,
+ "step": 2840
+ },
+ {
+ "epoch": 39.46133682830931,
+ "grad_norm": 0.22041910886764526,
+ "learning_rate": 0.0006,
+ "loss": 3.6577587127685547,
+ "step": 2841
+ },
+ {
+ "epoch": 39.47531673219746,
+ "grad_norm": 0.1966651976108551,
+ "learning_rate": 0.0006,
+ "loss": 3.673975944519043,
+ "step": 2842
+ },
+ {
+ "epoch": 39.489296636085626,
+ "grad_norm": 0.19127163290977478,
+ "learning_rate": 0.0006,
+ "loss": 3.7022414207458496,
+ "step": 2843
+ },
+ {
+ "epoch": 39.50327653997379,
+ "grad_norm": 0.20260316133499146,
+ "learning_rate": 0.0006,
+ "loss": 3.6155128479003906,
+ "step": 2844
+ },
+ {
+ "epoch": 39.517256443861946,
+ "grad_norm": 0.2302546352148056,
+ "learning_rate": 0.0006,
+ "loss": 3.670212984085083,
+ "step": 2845
+ },
+ {
+ "epoch": 39.53123634775011,
+ "grad_norm": 0.2512998878955841,
+ "learning_rate": 0.0006,
+ "loss": 3.6257572174072266,
+ "step": 2846
+ },
+ {
+ "epoch": 39.54521625163827,
+ "grad_norm": 0.24780063331127167,
+ "learning_rate": 0.0006,
+ "loss": 3.6458964347839355,
+ "step": 2847
+ },
+ {
+ "epoch": 39.55919615552643,
+ "grad_norm": 0.21305061876773834,
+ "learning_rate": 0.0006,
+ "loss": 3.666834831237793,
+ "step": 2848
+ },
+ {
+ "epoch": 39.57317605941459,
+ "grad_norm": 0.20699542760849,
+ "learning_rate": 0.0006,
+ "loss": 3.660571813583374,
+ "step": 2849
+ },
+ {
+ "epoch": 39.58715596330275,
+ "grad_norm": 0.20799173414707184,
+ "learning_rate": 0.0006,
+ "loss": 3.649744987487793,
+ "step": 2850
+ },
+ {
+ "epoch": 39.60113586719091,
+ "grad_norm": 0.20118695497512817,
+ "learning_rate": 0.0006,
+ "loss": 3.663865089416504,
+ "step": 2851
+ },
+ {
+ "epoch": 39.615115771079076,
+ "grad_norm": 0.2019277960062027,
+ "learning_rate": 0.0006,
+ "loss": 3.6600584983825684,
+ "step": 2852
+ },
+ {
+ "epoch": 39.62909567496723,
+ "grad_norm": 0.2093067765235901,
+ "learning_rate": 0.0006,
+ "loss": 3.6926870346069336,
+ "step": 2853
+ },
+ {
+ "epoch": 39.643075578855395,
+ "grad_norm": 0.2280927449464798,
+ "learning_rate": 0.0006,
+ "loss": 3.677157402038574,
+ "step": 2854
+ },
+ {
+ "epoch": 39.65705548274356,
+ "grad_norm": 0.219201922416687,
+ "learning_rate": 0.0006,
+ "loss": 3.6763858795166016,
+ "step": 2855
+ },
+ {
+ "epoch": 39.671035386631715,
+ "grad_norm": 0.2132134735584259,
+ "learning_rate": 0.0006,
+ "loss": 3.6853187084198,
+ "step": 2856
+ },
+ {
+ "epoch": 39.68501529051988,
+ "grad_norm": 0.1979551613330841,
+ "learning_rate": 0.0006,
+ "loss": 3.633850574493408,
+ "step": 2857
+ },
+ {
+ "epoch": 39.69899519440804,
+ "grad_norm": 0.2181098908185959,
+ "learning_rate": 0.0006,
+ "loss": 3.671356201171875,
+ "step": 2858
+ },
+ {
+ "epoch": 39.7129750982962,
+ "grad_norm": 0.21820145845413208,
+ "learning_rate": 0.0006,
+ "loss": 3.640101432800293,
+ "step": 2859
+ },
+ {
+ "epoch": 39.72695500218436,
+ "grad_norm": 0.22734931111335754,
+ "learning_rate": 0.0006,
+ "loss": 3.6326088905334473,
+ "step": 2860
+ },
+ {
+ "epoch": 39.74093490607252,
+ "grad_norm": 0.2407236248254776,
+ "learning_rate": 0.0006,
+ "loss": 3.665416955947876,
+ "step": 2861
+ },
+ {
+ "epoch": 39.75491480996068,
+ "grad_norm": 0.2507246434688568,
+ "learning_rate": 0.0006,
+ "loss": 3.6996266841888428,
+ "step": 2862
+ },
+ {
+ "epoch": 39.768894713848844,
+ "grad_norm": 0.2273668497800827,
+ "learning_rate": 0.0006,
+ "loss": 3.6786417961120605,
+ "step": 2863
+ },
+ {
+ "epoch": 39.782874617737,
+ "grad_norm": 0.20584821701049805,
+ "learning_rate": 0.0006,
+ "loss": 3.6539974212646484,
+ "step": 2864
+ },
+ {
+ "epoch": 39.796854521625164,
+ "grad_norm": 0.2327643632888794,
+ "learning_rate": 0.0006,
+ "loss": 3.681267738342285,
+ "step": 2865
+ },
+ {
+ "epoch": 39.81083442551333,
+ "grad_norm": 0.24243171513080597,
+ "learning_rate": 0.0006,
+ "loss": 3.6814589500427246,
+ "step": 2866
+ },
+ {
+ "epoch": 39.824814329401484,
+ "grad_norm": 0.21462969481945038,
+ "learning_rate": 0.0006,
+ "loss": 3.681321620941162,
+ "step": 2867
+ },
+ {
+ "epoch": 39.83879423328965,
+ "grad_norm": 0.20973211526870728,
+ "learning_rate": 0.0006,
+ "loss": 3.636986017227173,
+ "step": 2868
+ },
+ {
+ "epoch": 39.8527741371778,
+ "grad_norm": 0.20357508957386017,
+ "learning_rate": 0.0006,
+ "loss": 3.6664552688598633,
+ "step": 2869
+ },
+ {
+ "epoch": 39.86675404106597,
+ "grad_norm": 0.20389088988304138,
+ "learning_rate": 0.0006,
+ "loss": 3.6685709953308105,
+ "step": 2870
+ },
+ {
+ "epoch": 39.88073394495413,
+ "grad_norm": 0.21024158596992493,
+ "learning_rate": 0.0006,
+ "loss": 3.650658130645752,
+ "step": 2871
+ },
+ {
+ "epoch": 39.89471384884229,
+ "grad_norm": 0.19477778673171997,
+ "learning_rate": 0.0006,
+ "loss": 3.664834976196289,
+ "step": 2872
+ },
+ {
+ "epoch": 39.90869375273045,
+ "grad_norm": 0.22345365583896637,
+ "learning_rate": 0.0006,
+ "loss": 3.6652634143829346,
+ "step": 2873
+ },
+ {
+ "epoch": 39.92267365661861,
+ "grad_norm": 0.206041157245636,
+ "learning_rate": 0.0006,
+ "loss": 3.6649513244628906,
+ "step": 2874
+ },
+ {
+ "epoch": 39.93665356050677,
+ "grad_norm": 0.18524570763111115,
+ "learning_rate": 0.0006,
+ "loss": 3.665579080581665,
+ "step": 2875
+ },
+ {
+ "epoch": 39.95063346439493,
+ "grad_norm": 0.17730890214443207,
+ "learning_rate": 0.0006,
+ "loss": 3.6372880935668945,
+ "step": 2876
+ },
+ {
+ "epoch": 39.964613368283096,
+ "grad_norm": 0.213678777217865,
+ "learning_rate": 0.0006,
+ "loss": 3.681305408477783,
+ "step": 2877
+ },
+ {
+ "epoch": 39.97859327217125,
+ "grad_norm": 0.2595686614513397,
+ "learning_rate": 0.0006,
+ "loss": 3.6660351753234863,
+ "step": 2878
+ },
+ {
+ "epoch": 39.992573176059416,
+ "grad_norm": 0.22678600251674652,
+ "learning_rate": 0.0006,
+ "loss": 3.681619644165039,
+ "step": 2879
+ },
+ {
+ "epoch": 40.0,
+ "grad_norm": 0.2294030636548996,
+ "learning_rate": 0.0006,
+ "loss": 3.654366970062256,
+ "step": 2880
+ },
+ {
+ "epoch": 40.0,
+ "eval_loss": 3.9810431003570557,
+ "eval_runtime": 43.832,
+ "eval_samples_per_second": 55.713,
+ "eval_steps_per_second": 3.491,
+ "step": 2880
+ },
+ {
+ "epoch": 40.01397990388816,
+ "grad_norm": 0.220590278506279,
+ "learning_rate": 0.0006,
+ "loss": 3.6346259117126465,
+ "step": 2881
+ },
+ {
+ "epoch": 40.02795980777632,
+ "grad_norm": 0.2568257749080658,
+ "learning_rate": 0.0006,
+ "loss": 3.64436674118042,
+ "step": 2882
+ },
+ {
+ "epoch": 40.04193971166448,
+ "grad_norm": 0.2869258224964142,
+ "learning_rate": 0.0006,
+ "loss": 3.613316059112549,
+ "step": 2883
+ },
+ {
+ "epoch": 40.05591961555265,
+ "grad_norm": 0.3005172908306122,
+ "learning_rate": 0.0006,
+ "loss": 3.607339859008789,
+ "step": 2884
+ },
+ {
+ "epoch": 40.0698995194408,
+ "grad_norm": 0.28642305731773376,
+ "learning_rate": 0.0006,
+ "loss": 3.65151047706604,
+ "step": 2885
+ },
+ {
+ "epoch": 40.083879423328966,
+ "grad_norm": 0.24176034331321716,
+ "learning_rate": 0.0006,
+ "loss": 3.633742332458496,
+ "step": 2886
+ },
+ {
+ "epoch": 40.09785932721712,
+ "grad_norm": 0.2139386385679245,
+ "learning_rate": 0.0006,
+ "loss": 3.614245653152466,
+ "step": 2887
+ },
+ {
+ "epoch": 40.111839231105286,
+ "grad_norm": 0.28025752305984497,
+ "learning_rate": 0.0006,
+ "loss": 3.6415746212005615,
+ "step": 2888
+ },
+ {
+ "epoch": 40.12581913499345,
+ "grad_norm": 0.28534311056137085,
+ "learning_rate": 0.0006,
+ "loss": 3.6302027702331543,
+ "step": 2889
+ },
+ {
+ "epoch": 40.139799038881605,
+ "grad_norm": 0.26842808723449707,
+ "learning_rate": 0.0006,
+ "loss": 3.657480239868164,
+ "step": 2890
+ },
+ {
+ "epoch": 40.15377894276977,
+ "grad_norm": 0.25235965847969055,
+ "learning_rate": 0.0006,
+ "loss": 3.6843931674957275,
+ "step": 2891
+ },
+ {
+ "epoch": 40.16775884665793,
+ "grad_norm": 0.22192128002643585,
+ "learning_rate": 0.0006,
+ "loss": 3.6374592781066895,
+ "step": 2892
+ },
+ {
+ "epoch": 40.18173875054609,
+ "grad_norm": 0.21524523198604584,
+ "learning_rate": 0.0006,
+ "loss": 3.6052589416503906,
+ "step": 2893
+ },
+ {
+ "epoch": 40.19571865443425,
+ "grad_norm": 0.21011514961719513,
+ "learning_rate": 0.0006,
+ "loss": 3.62197208404541,
+ "step": 2894
+ },
+ {
+ "epoch": 40.20969855832241,
+ "grad_norm": 0.23187001049518585,
+ "learning_rate": 0.0006,
+ "loss": 3.6505377292633057,
+ "step": 2895
+ },
+ {
+ "epoch": 40.22367846221057,
+ "grad_norm": 0.21962887048721313,
+ "learning_rate": 0.0006,
+ "loss": 3.594991683959961,
+ "step": 2896
+ },
+ {
+ "epoch": 40.237658366098735,
+ "grad_norm": 0.23299361765384674,
+ "learning_rate": 0.0006,
+ "loss": 3.6370339393615723,
+ "step": 2897
+ },
+ {
+ "epoch": 40.25163826998689,
+ "grad_norm": 0.22504881024360657,
+ "learning_rate": 0.0006,
+ "loss": 3.6173815727233887,
+ "step": 2898
+ },
+ {
+ "epoch": 40.265618173875055,
+ "grad_norm": 0.21678344905376434,
+ "learning_rate": 0.0006,
+ "loss": 3.6231422424316406,
+ "step": 2899
+ },
+ {
+ "epoch": 40.27959807776322,
+ "grad_norm": 0.2184615284204483,
+ "learning_rate": 0.0006,
+ "loss": 3.6552987098693848,
+ "step": 2900
+ },
+ {
+ "epoch": 40.293577981651374,
+ "grad_norm": 0.2145485281944275,
+ "learning_rate": 0.0006,
+ "loss": 3.628025531768799,
+ "step": 2901
+ },
+ {
+ "epoch": 40.30755788553954,
+ "grad_norm": 0.21119336783885956,
+ "learning_rate": 0.0006,
+ "loss": 3.6511590480804443,
+ "step": 2902
+ },
+ {
+ "epoch": 40.3215377894277,
+ "grad_norm": 0.2158869504928589,
+ "learning_rate": 0.0006,
+ "loss": 3.6302051544189453,
+ "step": 2903
+ },
+ {
+ "epoch": 40.33551769331586,
+ "grad_norm": 0.22736455500125885,
+ "learning_rate": 0.0006,
+ "loss": 3.6678733825683594,
+ "step": 2904
+ },
+ {
+ "epoch": 40.34949759720402,
+ "grad_norm": 0.22723783552646637,
+ "learning_rate": 0.0006,
+ "loss": 3.632068634033203,
+ "step": 2905
+ },
+ {
+ "epoch": 40.36347750109218,
+ "grad_norm": 0.20606189966201782,
+ "learning_rate": 0.0006,
+ "loss": 3.6534624099731445,
+ "step": 2906
+ },
+ {
+ "epoch": 40.37745740498034,
+ "grad_norm": 0.21033786237239838,
+ "learning_rate": 0.0006,
+ "loss": 3.6194064617156982,
+ "step": 2907
+ },
+ {
+ "epoch": 40.391437308868504,
+ "grad_norm": 0.2175762951374054,
+ "learning_rate": 0.0006,
+ "loss": 3.637385368347168,
+ "step": 2908
+ },
+ {
+ "epoch": 40.40541721275666,
+ "grad_norm": 0.21063381433486938,
+ "learning_rate": 0.0006,
+ "loss": 3.656857967376709,
+ "step": 2909
+ },
+ {
+ "epoch": 40.419397116644824,
+ "grad_norm": 0.19982226192951202,
+ "learning_rate": 0.0006,
+ "loss": 3.655738353729248,
+ "step": 2910
+ },
+ {
+ "epoch": 40.43337702053299,
+ "grad_norm": 0.20608870685100555,
+ "learning_rate": 0.0006,
+ "loss": 3.6521377563476562,
+ "step": 2911
+ },
+ {
+ "epoch": 40.44735692442114,
+ "grad_norm": 0.19817334413528442,
+ "learning_rate": 0.0006,
+ "loss": 3.61527681350708,
+ "step": 2912
+ },
+ {
+ "epoch": 40.46133682830931,
+ "grad_norm": 0.20407769083976746,
+ "learning_rate": 0.0006,
+ "loss": 3.6668765544891357,
+ "step": 2913
+ },
+ {
+ "epoch": 40.47531673219746,
+ "grad_norm": 0.19874799251556396,
+ "learning_rate": 0.0006,
+ "loss": 3.6748533248901367,
+ "step": 2914
+ },
+ {
+ "epoch": 40.489296636085626,
+ "grad_norm": 0.1979510486125946,
+ "learning_rate": 0.0006,
+ "loss": 3.6141977310180664,
+ "step": 2915
+ },
+ {
+ "epoch": 40.50327653997379,
+ "grad_norm": 0.19811518490314484,
+ "learning_rate": 0.0006,
+ "loss": 3.6391215324401855,
+ "step": 2916
+ },
+ {
+ "epoch": 40.517256443861946,
+ "grad_norm": 0.20208898186683655,
+ "learning_rate": 0.0006,
+ "loss": 3.664179801940918,
+ "step": 2917
+ },
+ {
+ "epoch": 40.53123634775011,
+ "grad_norm": 0.22063760459423065,
+ "learning_rate": 0.0006,
+ "loss": 3.645388126373291,
+ "step": 2918
+ },
+ {
+ "epoch": 40.54521625163827,
+ "grad_norm": 0.23420891165733337,
+ "learning_rate": 0.0006,
+ "loss": 3.6424708366394043,
+ "step": 2919
+ },
+ {
+ "epoch": 40.55919615552643,
+ "grad_norm": 0.2263612151145935,
+ "learning_rate": 0.0006,
+ "loss": 3.6649224758148193,
+ "step": 2920
+ },
+ {
+ "epoch": 40.57317605941459,
+ "grad_norm": 0.22745433449745178,
+ "learning_rate": 0.0006,
+ "loss": 3.631586790084839,
+ "step": 2921
+ },
+ {
+ "epoch": 40.58715596330275,
+ "grad_norm": 0.22413238883018494,
+ "learning_rate": 0.0006,
+ "loss": 3.6666674613952637,
+ "step": 2922
+ },
+ {
+ "epoch": 40.60113586719091,
+ "grad_norm": 0.2178265005350113,
+ "learning_rate": 0.0006,
+ "loss": 3.6002111434936523,
+ "step": 2923
+ },
+ {
+ "epoch": 40.615115771079076,
+ "grad_norm": 0.21822521090507507,
+ "learning_rate": 0.0006,
+ "loss": 3.6538329124450684,
+ "step": 2924
+ },
+ {
+ "epoch": 40.62909567496723,
+ "grad_norm": 0.21728558838367462,
+ "learning_rate": 0.0006,
+ "loss": 3.651254653930664,
+ "step": 2925
+ },
+ {
+ "epoch": 40.643075578855395,
+ "grad_norm": 0.22377707064151764,
+ "learning_rate": 0.0006,
+ "loss": 3.6505789756774902,
+ "step": 2926
+ },
+ {
+ "epoch": 40.65705548274356,
+ "grad_norm": 0.2035706788301468,
+ "learning_rate": 0.0006,
+ "loss": 3.6471967697143555,
+ "step": 2927
+ },
+ {
+ "epoch": 40.671035386631715,
+ "grad_norm": 0.2011154741048813,
+ "learning_rate": 0.0006,
+ "loss": 3.6582741737365723,
+ "step": 2928
+ },
+ {
+ "epoch": 40.68501529051988,
+ "grad_norm": 0.23812712728977203,
+ "learning_rate": 0.0006,
+ "loss": 3.6388421058654785,
+ "step": 2929
+ },
+ {
+ "epoch": 40.69899519440804,
+ "grad_norm": 0.2117796689271927,
+ "learning_rate": 0.0006,
+ "loss": 3.688337802886963,
+ "step": 2930
+ },
+ {
+ "epoch": 40.7129750982962,
+ "grad_norm": 0.18440942466259003,
+ "learning_rate": 0.0006,
+ "loss": 3.6409997940063477,
+ "step": 2931
+ },
+ {
+ "epoch": 40.72695500218436,
+ "grad_norm": 0.19005917012691498,
+ "learning_rate": 0.0006,
+ "loss": 3.6760218143463135,
+ "step": 2932
+ },
+ {
+ "epoch": 40.74093490607252,
+ "grad_norm": 0.19982726871967316,
+ "learning_rate": 0.0006,
+ "loss": 3.6375021934509277,
+ "step": 2933
+ },
+ {
+ "epoch": 40.75491480996068,
+ "grad_norm": 0.19240257143974304,
+ "learning_rate": 0.0006,
+ "loss": 3.636807918548584,
+ "step": 2934
+ },
+ {
+ "epoch": 40.768894713848844,
+ "grad_norm": 0.20563434064388275,
+ "learning_rate": 0.0006,
+ "loss": 3.6667532920837402,
+ "step": 2935
+ },
+ {
+ "epoch": 40.782874617737,
+ "grad_norm": 0.26531776785850525,
+ "learning_rate": 0.0006,
+ "loss": 3.6332945823669434,
+ "step": 2936
+ },
+ {
+ "epoch": 40.796854521625164,
+ "grad_norm": 0.2766861021518707,
+ "learning_rate": 0.0006,
+ "loss": 3.6645212173461914,
+ "step": 2937
+ },
+ {
+ "epoch": 40.81083442551333,
+ "grad_norm": 0.235750213265419,
+ "learning_rate": 0.0006,
+ "loss": 3.67067813873291,
+ "step": 2938
+ },
+ {
+ "epoch": 40.824814329401484,
+ "grad_norm": 0.20778773725032806,
+ "learning_rate": 0.0006,
+ "loss": 3.6565768718719482,
+ "step": 2939
+ },
+ {
+ "epoch": 40.83879423328965,
+ "grad_norm": 0.187322199344635,
+ "learning_rate": 0.0006,
+ "loss": 3.620129346847534,
+ "step": 2940
+ },
+ {
+ "epoch": 40.8527741371778,
+ "grad_norm": 0.20576219260692596,
+ "learning_rate": 0.0006,
+ "loss": 3.6700220108032227,
+ "step": 2941
+ },
+ {
+ "epoch": 40.86675404106597,
+ "grad_norm": 0.2197345495223999,
+ "learning_rate": 0.0006,
+ "loss": 3.709311008453369,
+ "step": 2942
+ },
+ {
+ "epoch": 40.88073394495413,
+ "grad_norm": 0.20205345749855042,
+ "learning_rate": 0.0006,
+ "loss": 3.6646361351013184,
+ "step": 2943
+ },
+ {
+ "epoch": 40.89471384884229,
+ "grad_norm": 0.20026250183582306,
+ "learning_rate": 0.0006,
+ "loss": 3.6639604568481445,
+ "step": 2944
+ },
+ {
+ "epoch": 40.90869375273045,
+ "grad_norm": 0.224214106798172,
+ "learning_rate": 0.0006,
+ "loss": 3.6669654846191406,
+ "step": 2945
+ },
+ {
+ "epoch": 40.92267365661861,
+ "grad_norm": 0.2155972272157669,
+ "learning_rate": 0.0006,
+ "loss": 3.6494603157043457,
+ "step": 2946
+ },
+ {
+ "epoch": 40.93665356050677,
+ "grad_norm": 0.23038871586322784,
+ "learning_rate": 0.0006,
+ "loss": 3.6368541717529297,
+ "step": 2947
+ },
+ {
+ "epoch": 40.95063346439493,
+ "grad_norm": 0.2001815289258957,
+ "learning_rate": 0.0006,
+ "loss": 3.711174249649048,
+ "step": 2948
+ },
+ {
+ "epoch": 40.964613368283096,
+ "grad_norm": 0.20428860187530518,
+ "learning_rate": 0.0006,
+ "loss": 3.6342315673828125,
+ "step": 2949
+ },
+ {
+ "epoch": 40.97859327217125,
+ "grad_norm": 0.20724134147167206,
+ "learning_rate": 0.0006,
+ "loss": 3.679375171661377,
+ "step": 2950
+ },
+ {
+ "epoch": 40.992573176059416,
+ "grad_norm": 0.20723849534988403,
+ "learning_rate": 0.0006,
+ "loss": 3.6477675437927246,
+ "step": 2951
+ },
+ {
+ "epoch": 41.0,
+ "grad_norm": 0.23891447484493256,
+ "learning_rate": 0.0006,
+ "loss": 3.632950782775879,
+ "step": 2952
+ },
+ {
+ "epoch": 41.0,
+ "eval_loss": 3.9871256351470947,
+ "eval_runtime": 43.8367,
+ "eval_samples_per_second": 55.707,
+ "eval_steps_per_second": 3.49,
+ "step": 2952
+ },
+ {
+ "epoch": 41.01397990388816,
+ "grad_norm": 0.2258434295654297,
+ "learning_rate": 0.0006,
+ "loss": 3.631239414215088,
+ "step": 2953
+ },
+ {
+ "epoch": 41.02795980777632,
+ "grad_norm": 0.24932795763015747,
+ "learning_rate": 0.0006,
+ "loss": 3.601083517074585,
+ "step": 2954
+ },
+ {
+ "epoch": 41.04193971166448,
+ "grad_norm": 0.2688388228416443,
+ "learning_rate": 0.0006,
+ "loss": 3.655724048614502,
+ "step": 2955
+ },
+ {
+ "epoch": 41.05591961555265,
+ "grad_norm": 0.23880694806575775,
+ "learning_rate": 0.0006,
+ "loss": 3.617628812789917,
+ "step": 2956
+ },
+ {
+ "epoch": 41.0698995194408,
+ "grad_norm": 0.23784616589546204,
+ "learning_rate": 0.0006,
+ "loss": 3.6309127807617188,
+ "step": 2957
+ },
+ {
+ "epoch": 41.083879423328966,
+ "grad_norm": 0.22609511017799377,
+ "learning_rate": 0.0006,
+ "loss": 3.6138553619384766,
+ "step": 2958
+ },
+ {
+ "epoch": 41.09785932721712,
+ "grad_norm": 0.22936329245567322,
+ "learning_rate": 0.0006,
+ "loss": 3.6620094776153564,
+ "step": 2959
+ },
+ {
+ "epoch": 41.111839231105286,
+ "grad_norm": 0.23354190587997437,
+ "learning_rate": 0.0006,
+ "loss": 3.59959077835083,
+ "step": 2960
+ },
+ {
+ "epoch": 41.12581913499345,
+ "grad_norm": 0.2496265172958374,
+ "learning_rate": 0.0006,
+ "loss": 3.588359832763672,
+ "step": 2961
+ },
+ {
+ "epoch": 41.139799038881605,
+ "grad_norm": 0.23618635535240173,
+ "learning_rate": 0.0006,
+ "loss": 3.6341018676757812,
+ "step": 2962
+ },
+ {
+ "epoch": 41.15377894276977,
+ "grad_norm": 0.23724640905857086,
+ "learning_rate": 0.0006,
+ "loss": 3.6170616149902344,
+ "step": 2963
+ },
+ {
+ "epoch": 41.16775884665793,
+ "grad_norm": 0.20944789052009583,
+ "learning_rate": 0.0006,
+ "loss": 3.6158995628356934,
+ "step": 2964
+ },
+ {
+ "epoch": 41.18173875054609,
+ "grad_norm": 0.2089492678642273,
+ "learning_rate": 0.0006,
+ "loss": 3.586538314819336,
+ "step": 2965
+ },
+ {
+ "epoch": 41.19571865443425,
+ "grad_norm": 0.2370915710926056,
+ "learning_rate": 0.0006,
+ "loss": 3.599236011505127,
+ "step": 2966
+ },
+ {
+ "epoch": 41.20969855832241,
+ "grad_norm": 0.25749558210372925,
+ "learning_rate": 0.0006,
+ "loss": 3.631399154663086,
+ "step": 2967
+ },
+ {
+ "epoch": 41.22367846221057,
+ "grad_norm": 0.24754776060581207,
+ "learning_rate": 0.0006,
+ "loss": 3.6503920555114746,
+ "step": 2968
+ },
+ {
+ "epoch": 41.237658366098735,
+ "grad_norm": 0.22060903906822205,
+ "learning_rate": 0.0006,
+ "loss": 3.671673536300659,
+ "step": 2969
+ },
+ {
+ "epoch": 41.25163826998689,
+ "grad_norm": 0.19416594505310059,
+ "learning_rate": 0.0006,
+ "loss": 3.6158413887023926,
+ "step": 2970
+ },
+ {
+ "epoch": 41.265618173875055,
+ "grad_norm": 0.22596411406993866,
+ "learning_rate": 0.0006,
+ "loss": 3.64003849029541,
+ "step": 2971
+ },
+ {
+ "epoch": 41.27959807776322,
+ "grad_norm": 0.26785415410995483,
+ "learning_rate": 0.0006,
+ "loss": 3.642327308654785,
+ "step": 2972
+ },
+ {
+ "epoch": 41.293577981651374,
+ "grad_norm": 0.2988710403442383,
+ "learning_rate": 0.0006,
+ "loss": 3.6018929481506348,
+ "step": 2973
+ },
+ {
+ "epoch": 41.30755788553954,
+ "grad_norm": 0.2428133338689804,
+ "learning_rate": 0.0006,
+ "loss": 3.645270824432373,
+ "step": 2974
+ },
+ {
+ "epoch": 41.3215377894277,
+ "grad_norm": 0.20330320298671722,
+ "learning_rate": 0.0006,
+ "loss": 3.625495433807373,
+ "step": 2975
+ },
+ {
+ "epoch": 41.33551769331586,
+ "grad_norm": 0.2267787605524063,
+ "learning_rate": 0.0006,
+ "loss": 3.6469204425811768,
+ "step": 2976
+ },
+ {
+ "epoch": 41.34949759720402,
+ "grad_norm": 0.20702822506427765,
+ "learning_rate": 0.0006,
+ "loss": 3.644191265106201,
+ "step": 2977
+ },
+ {
+ "epoch": 41.36347750109218,
+ "grad_norm": 0.19693221151828766,
+ "learning_rate": 0.0006,
+ "loss": 3.591794967651367,
+ "step": 2978
+ },
+ {
+ "epoch": 41.37745740498034,
+ "grad_norm": 0.21193185448646545,
+ "learning_rate": 0.0006,
+ "loss": 3.6283936500549316,
+ "step": 2979
+ },
+ {
+ "epoch": 41.391437308868504,
+ "grad_norm": 0.20953163504600525,
+ "learning_rate": 0.0006,
+ "loss": 3.617565155029297,
+ "step": 2980
+ },
+ {
+ "epoch": 41.40541721275666,
+ "grad_norm": 0.21839819848537445,
+ "learning_rate": 0.0006,
+ "loss": 3.621209144592285,
+ "step": 2981
+ },
+ {
+ "epoch": 41.419397116644824,
+ "grad_norm": 0.2152671068906784,
+ "learning_rate": 0.0006,
+ "loss": 3.643197536468506,
+ "step": 2982
+ },
+ {
+ "epoch": 41.43337702053299,
+ "grad_norm": 0.2507486641407013,
+ "learning_rate": 0.0006,
+ "loss": 3.657499313354492,
+ "step": 2983
+ },
+ {
+ "epoch": 41.44735692442114,
+ "grad_norm": 0.24695388972759247,
+ "learning_rate": 0.0006,
+ "loss": 3.62170672416687,
+ "step": 2984
+ },
+ {
+ "epoch": 41.46133682830931,
+ "grad_norm": 0.22652822732925415,
+ "learning_rate": 0.0006,
+ "loss": 3.64322566986084,
+ "step": 2985
+ },
+ {
+ "epoch": 41.47531673219746,
+ "grad_norm": 0.2575881779193878,
+ "learning_rate": 0.0006,
+ "loss": 3.659621477127075,
+ "step": 2986
+ },
+ {
+ "epoch": 41.489296636085626,
+ "grad_norm": 0.24162672460079193,
+ "learning_rate": 0.0006,
+ "loss": 3.6527223587036133,
+ "step": 2987
+ },
+ {
+ "epoch": 41.50327653997379,
+ "grad_norm": 0.20930497348308563,
+ "learning_rate": 0.0006,
+ "loss": 3.6412787437438965,
+ "step": 2988
+ },
+ {
+ "epoch": 41.517256443861946,
+ "grad_norm": 0.20480819046497345,
+ "learning_rate": 0.0006,
+ "loss": 3.614767074584961,
+ "step": 2989
+ },
+ {
+ "epoch": 41.53123634775011,
+ "grad_norm": 0.20015820860862732,
+ "learning_rate": 0.0006,
+ "loss": 3.6512045860290527,
+ "step": 2990
+ },
+ {
+ "epoch": 41.54521625163827,
+ "grad_norm": 0.20220743119716644,
+ "learning_rate": 0.0006,
+ "loss": 3.6732325553894043,
+ "step": 2991
+ },
+ {
+ "epoch": 41.55919615552643,
+ "grad_norm": 0.20505326986312866,
+ "learning_rate": 0.0006,
+ "loss": 3.6374664306640625,
+ "step": 2992
+ },
+ {
+ "epoch": 41.57317605941459,
+ "grad_norm": 0.19423344731330872,
+ "learning_rate": 0.0006,
+ "loss": 3.6564126014709473,
+ "step": 2993
+ },
+ {
+ "epoch": 41.58715596330275,
+ "grad_norm": 0.19284583628177643,
+ "learning_rate": 0.0006,
+ "loss": 3.6460509300231934,
+ "step": 2994
+ },
+ {
+ "epoch": 41.60113586719091,
+ "grad_norm": 0.18488959968090057,
+ "learning_rate": 0.0006,
+ "loss": 3.632859468460083,
+ "step": 2995
+ },
+ {
+ "epoch": 41.615115771079076,
+ "grad_norm": 0.18816296756267548,
+ "learning_rate": 0.0006,
+ "loss": 3.5958361625671387,
+ "step": 2996
+ },
+ {
+ "epoch": 41.62909567496723,
+ "grad_norm": 0.18987809121608734,
+ "learning_rate": 0.0006,
+ "loss": 3.6330695152282715,
+ "step": 2997
+ },
+ {
+ "epoch": 41.643075578855395,
+ "grad_norm": 0.18999919295310974,
+ "learning_rate": 0.0006,
+ "loss": 3.6486730575561523,
+ "step": 2998
+ },
+ {
+ "epoch": 41.65705548274356,
+ "grad_norm": 0.20190183818340302,
+ "learning_rate": 0.0006,
+ "loss": 3.6564230918884277,
+ "step": 2999
+ },
+ {
+ "epoch": 41.671035386631715,
+ "grad_norm": 0.20331363379955292,
+ "learning_rate": 0.0006,
+ "loss": 3.6789698600769043,
+ "step": 3000
+ },
+ {
+ "epoch": 41.68501529051988,
+ "grad_norm": 0.21599505841732025,
+ "learning_rate": 0.0006,
+ "loss": 3.6544511318206787,
+ "step": 3001
+ },
+ {
+ "epoch": 41.69899519440804,
+ "grad_norm": 0.21123184263706207,
+ "learning_rate": 0.0006,
+ "loss": 3.6506948471069336,
+ "step": 3002
+ },
+ {
+ "epoch": 41.7129750982962,
+ "grad_norm": 0.21337002515792847,
+ "learning_rate": 0.0006,
+ "loss": 3.676854372024536,
+ "step": 3003
+ },
+ {
+ "epoch": 41.72695500218436,
+ "grad_norm": 0.22567597031593323,
+ "learning_rate": 0.0006,
+ "loss": 3.6467485427856445,
+ "step": 3004
+ },
+ {
+ "epoch": 41.74093490607252,
+ "grad_norm": 0.22923491895198822,
+ "learning_rate": 0.0006,
+ "loss": 3.663224697113037,
+ "step": 3005
+ },
+ {
+ "epoch": 41.75491480996068,
+ "grad_norm": 0.21511489152908325,
+ "learning_rate": 0.0006,
+ "loss": 3.6290054321289062,
+ "step": 3006
+ },
+ {
+ "epoch": 41.768894713848844,
+ "grad_norm": 0.23855915665626526,
+ "learning_rate": 0.0006,
+ "loss": 3.631225109100342,
+ "step": 3007
+ },
+ {
+ "epoch": 41.782874617737,
+ "grad_norm": 0.22771067917346954,
+ "learning_rate": 0.0006,
+ "loss": 3.652575731277466,
+ "step": 3008
+ },
+ {
+ "epoch": 41.796854521625164,
+ "grad_norm": 0.2006237953901291,
+ "learning_rate": 0.0006,
+ "loss": 3.6883468627929688,
+ "step": 3009
+ },
+ {
+ "epoch": 41.81083442551333,
+ "grad_norm": 0.21182459592819214,
+ "learning_rate": 0.0006,
+ "loss": 3.6443567276000977,
+ "step": 3010
+ },
+ {
+ "epoch": 41.824814329401484,
+ "grad_norm": 0.21083690226078033,
+ "learning_rate": 0.0006,
+ "loss": 3.66660475730896,
+ "step": 3011
+ },
+ {
+ "epoch": 41.83879423328965,
+ "grad_norm": 0.21232296526432037,
+ "learning_rate": 0.0006,
+ "loss": 3.6436524391174316,
+ "step": 3012
+ },
+ {
+ "epoch": 41.8527741371778,
+ "grad_norm": 0.2089361697435379,
+ "learning_rate": 0.0006,
+ "loss": 3.648113250732422,
+ "step": 3013
+ },
+ {
+ "epoch": 41.86675404106597,
+ "grad_norm": 0.21517033874988556,
+ "learning_rate": 0.0006,
+ "loss": 3.6382269859313965,
+ "step": 3014
+ },
+ {
+ "epoch": 41.88073394495413,
+ "grad_norm": 0.1930733323097229,
+ "learning_rate": 0.0006,
+ "loss": 3.639441967010498,
+ "step": 3015
+ },
+ {
+ "epoch": 41.89471384884229,
+ "grad_norm": 0.18282832205295563,
+ "learning_rate": 0.0006,
+ "loss": 3.652860164642334,
+ "step": 3016
+ },
+ {
+ "epoch": 41.90869375273045,
+ "grad_norm": 0.18649716675281525,
+ "learning_rate": 0.0006,
+ "loss": 3.6335558891296387,
+ "step": 3017
+ },
+ {
+ "epoch": 41.92267365661861,
+ "grad_norm": 0.18873754143714905,
+ "learning_rate": 0.0006,
+ "loss": 3.6743149757385254,
+ "step": 3018
+ },
+ {
+ "epoch": 41.93665356050677,
+ "grad_norm": 0.1937907189130783,
+ "learning_rate": 0.0006,
+ "loss": 3.6749300956726074,
+ "step": 3019
+ },
+ {
+ "epoch": 41.95063346439493,
+ "grad_norm": 0.20620854198932648,
+ "learning_rate": 0.0006,
+ "loss": 3.6591262817382812,
+ "step": 3020
+ },
+ {
+ "epoch": 41.964613368283096,
+ "grad_norm": 0.18541009724140167,
+ "learning_rate": 0.0006,
+ "loss": 3.647010326385498,
+ "step": 3021
+ },
+ {
+ "epoch": 41.97859327217125,
+ "grad_norm": 0.19224928319454193,
+ "learning_rate": 0.0006,
+ "loss": 3.629920482635498,
+ "step": 3022
+ },
+ {
+ "epoch": 41.992573176059416,
+ "grad_norm": 0.21286419034004211,
+ "learning_rate": 0.0006,
+ "loss": 3.6516964435577393,
+ "step": 3023
+ },
+ {
+ "epoch": 42.0,
+ "grad_norm": 0.24787360429763794,
+ "learning_rate": 0.0006,
+ "loss": 3.6378865242004395,
+ "step": 3024
+ },
+ {
+ "epoch": 42.0,
+ "eval_loss": 3.9910318851470947,
+ "eval_runtime": 43.7914,
+ "eval_samples_per_second": 55.764,
+ "eval_steps_per_second": 3.494,
+ "step": 3024
+ },
+ {
+ "epoch": 42.01397990388816,
+ "grad_norm": 0.21036255359649658,
+ "learning_rate": 0.0006,
+ "loss": 3.6604344844818115,
+ "step": 3025
+ },
+ {
+ "epoch": 42.02795980777632,
+ "grad_norm": 0.22240597009658813,
+ "learning_rate": 0.0006,
+ "loss": 3.6160645484924316,
+ "step": 3026
+ },
+ {
+ "epoch": 42.04193971166448,
+ "grad_norm": 0.2487850785255432,
+ "learning_rate": 0.0006,
+ "loss": 3.6293773651123047,
+ "step": 3027
+ },
+ {
+ "epoch": 42.05591961555265,
+ "grad_norm": 0.27058133482933044,
+ "learning_rate": 0.0006,
+ "loss": 3.5827436447143555,
+ "step": 3028
+ },
+ {
+ "epoch": 42.0698995194408,
+ "grad_norm": 0.25001782178878784,
+ "learning_rate": 0.0006,
+ "loss": 3.5833029747009277,
+ "step": 3029
+ },
+ {
+ "epoch": 42.083879423328966,
+ "grad_norm": 0.23811939358711243,
+ "learning_rate": 0.0006,
+ "loss": 3.605585813522339,
+ "step": 3030
+ },
+ {
+ "epoch": 42.09785932721712,
+ "grad_norm": 0.23279601335525513,
+ "learning_rate": 0.0006,
+ "loss": 3.607205867767334,
+ "step": 3031
+ },
+ {
+ "epoch": 42.111839231105286,
+ "grad_norm": 0.24410508573055267,
+ "learning_rate": 0.0006,
+ "loss": 3.621175765991211,
+ "step": 3032
+ },
+ {
+ "epoch": 42.12581913499345,
+ "grad_norm": 0.24782028794288635,
+ "learning_rate": 0.0006,
+ "loss": 3.6236867904663086,
+ "step": 3033
+ },
+ {
+ "epoch": 42.139799038881605,
+ "grad_norm": 0.2301972657442093,
+ "learning_rate": 0.0006,
+ "loss": 3.603853464126587,
+ "step": 3034
+ },
+ {
+ "epoch": 42.15377894276977,
+ "grad_norm": 0.21988637745380402,
+ "learning_rate": 0.0006,
+ "loss": 3.600142002105713,
+ "step": 3035
+ },
+ {
+ "epoch": 42.16775884665793,
+ "grad_norm": 0.22623786330223083,
+ "learning_rate": 0.0006,
+ "loss": 3.61971116065979,
+ "step": 3036
+ },
+ {
+ "epoch": 42.18173875054609,
+ "grad_norm": 0.21844688057899475,
+ "learning_rate": 0.0006,
+ "loss": 3.61320161819458,
+ "step": 3037
+ },
+ {
+ "epoch": 42.19571865443425,
+ "grad_norm": 0.20444536209106445,
+ "learning_rate": 0.0006,
+ "loss": 3.6179633140563965,
+ "step": 3038
+ },
+ {
+ "epoch": 42.20969855832241,
+ "grad_norm": 0.22862036526203156,
+ "learning_rate": 0.0006,
+ "loss": 3.605433940887451,
+ "step": 3039
+ },
+ {
+ "epoch": 42.22367846221057,
+ "grad_norm": 0.2906605005264282,
+ "learning_rate": 0.0006,
+ "loss": 3.6279449462890625,
+ "step": 3040
+ },
+ {
+ "epoch": 42.237658366098735,
+ "grad_norm": 0.29074418544769287,
+ "learning_rate": 0.0006,
+ "loss": 3.5959763526916504,
+ "step": 3041
+ },
+ {
+ "epoch": 42.25163826998689,
+ "grad_norm": 0.1994444876909256,
+ "learning_rate": 0.0006,
+ "loss": 3.5858588218688965,
+ "step": 3042
+ },
+ {
+ "epoch": 42.265618173875055,
+ "grad_norm": 0.20793452858924866,
+ "learning_rate": 0.0006,
+ "loss": 3.604630470275879,
+ "step": 3043
+ },
+ {
+ "epoch": 42.27959807776322,
+ "grad_norm": 0.2119535505771637,
+ "learning_rate": 0.0006,
+ "loss": 3.6287126541137695,
+ "step": 3044
+ },
+ {
+ "epoch": 42.293577981651374,
+ "grad_norm": 0.21092535555362701,
+ "learning_rate": 0.0006,
+ "loss": 3.646294593811035,
+ "step": 3045
+ },
+ {
+ "epoch": 42.30755788553954,
+ "grad_norm": 0.21474479138851166,
+ "learning_rate": 0.0006,
+ "loss": 3.6364355087280273,
+ "step": 3046
+ },
+ {
+ "epoch": 42.3215377894277,
+ "grad_norm": 0.21100781857967377,
+ "learning_rate": 0.0006,
+ "loss": 3.622528553009033,
+ "step": 3047
+ },
+ {
+ "epoch": 42.33551769331586,
+ "grad_norm": 0.20739853382110596,
+ "learning_rate": 0.0006,
+ "loss": 3.6261959075927734,
+ "step": 3048
+ },
+ {
+ "epoch": 42.34949759720402,
+ "grad_norm": 0.22264131903648376,
+ "learning_rate": 0.0006,
+ "loss": 3.6195173263549805,
+ "step": 3049
+ },
+ {
+ "epoch": 42.36347750109218,
+ "grad_norm": 0.23696285486221313,
+ "learning_rate": 0.0006,
+ "loss": 3.631103515625,
+ "step": 3050
+ },
+ {
+ "epoch": 42.37745740498034,
+ "grad_norm": 0.2124902606010437,
+ "learning_rate": 0.0006,
+ "loss": 3.6490437984466553,
+ "step": 3051
+ },
+ {
+ "epoch": 42.391437308868504,
+ "grad_norm": 0.18831083178520203,
+ "learning_rate": 0.0006,
+ "loss": 3.628459930419922,
+ "step": 3052
+ },
+ {
+ "epoch": 42.40541721275666,
+ "grad_norm": 0.20390060544013977,
+ "learning_rate": 0.0006,
+ "loss": 3.6348538398742676,
+ "step": 3053
+ },
+ {
+ "epoch": 42.419397116644824,
+ "grad_norm": 0.2205851823091507,
+ "learning_rate": 0.0006,
+ "loss": 3.6286797523498535,
+ "step": 3054
+ },
+ {
+ "epoch": 42.43337702053299,
+ "grad_norm": 0.21518434584140778,
+ "learning_rate": 0.0006,
+ "loss": 3.5918965339660645,
+ "step": 3055
+ },
+ {
+ "epoch": 42.44735692442114,
+ "grad_norm": 0.2342296987771988,
+ "learning_rate": 0.0006,
+ "loss": 3.6364407539367676,
+ "step": 3056
+ },
+ {
+ "epoch": 42.46133682830931,
+ "grad_norm": 0.2304094135761261,
+ "learning_rate": 0.0006,
+ "loss": 3.6561477184295654,
+ "step": 3057
+ },
+ {
+ "epoch": 42.47531673219746,
+ "grad_norm": 0.20882441103458405,
+ "learning_rate": 0.0006,
+ "loss": 3.611250638961792,
+ "step": 3058
+ },
+ {
+ "epoch": 42.489296636085626,
+ "grad_norm": 0.24346643686294556,
+ "learning_rate": 0.0006,
+ "loss": 3.580082416534424,
+ "step": 3059
+ },
+ {
+ "epoch": 42.50327653997379,
+ "grad_norm": 0.260711133480072,
+ "learning_rate": 0.0006,
+ "loss": 3.6179792881011963,
+ "step": 3060
+ },
+ {
+ "epoch": 42.517256443861946,
+ "grad_norm": 0.21223759651184082,
+ "learning_rate": 0.0006,
+ "loss": 3.6153154373168945,
+ "step": 3061
+ },
+ {
+ "epoch": 42.53123634775011,
+ "grad_norm": 0.21429137885570526,
+ "learning_rate": 0.0006,
+ "loss": 3.6003379821777344,
+ "step": 3062
+ },
+ {
+ "epoch": 42.54521625163827,
+ "grad_norm": 0.23659434914588928,
+ "learning_rate": 0.0006,
+ "loss": 3.6540589332580566,
+ "step": 3063
+ },
+ {
+ "epoch": 42.55919615552643,
+ "grad_norm": 0.280344158411026,
+ "learning_rate": 0.0006,
+ "loss": 3.6406192779541016,
+ "step": 3064
+ },
+ {
+ "epoch": 42.57317605941459,
+ "grad_norm": 0.2903953194618225,
+ "learning_rate": 0.0006,
+ "loss": 3.643479824066162,
+ "step": 3065
+ },
+ {
+ "epoch": 42.58715596330275,
+ "grad_norm": 0.24958311021327972,
+ "learning_rate": 0.0006,
+ "loss": 3.6320221424102783,
+ "step": 3066
+ },
+ {
+ "epoch": 42.60113586719091,
+ "grad_norm": 0.22525225579738617,
+ "learning_rate": 0.0006,
+ "loss": 3.641676425933838,
+ "step": 3067
+ },
+ {
+ "epoch": 42.615115771079076,
+ "grad_norm": 0.23025161027908325,
+ "learning_rate": 0.0006,
+ "loss": 3.6465210914611816,
+ "step": 3068
+ },
+ {
+ "epoch": 42.62909567496723,
+ "grad_norm": 0.21947328746318817,
+ "learning_rate": 0.0006,
+ "loss": 3.667877435684204,
+ "step": 3069
+ },
+ {
+ "epoch": 42.643075578855395,
+ "grad_norm": 0.22809366881847382,
+ "learning_rate": 0.0006,
+ "loss": 3.663166046142578,
+ "step": 3070
+ },
+ {
+ "epoch": 42.65705548274356,
+ "grad_norm": 0.21938708424568176,
+ "learning_rate": 0.0006,
+ "loss": 3.619001865386963,
+ "step": 3071
+ },
+ {
+ "epoch": 42.671035386631715,
+ "grad_norm": 0.231620192527771,
+ "learning_rate": 0.0006,
+ "loss": 3.652332305908203,
+ "step": 3072
+ },
+ {
+ "epoch": 42.68501529051988,
+ "grad_norm": 0.23683936893939972,
+ "learning_rate": 0.0006,
+ "loss": 3.6633410453796387,
+ "step": 3073
+ },
+ {
+ "epoch": 42.69899519440804,
+ "grad_norm": 0.23752044141292572,
+ "learning_rate": 0.0006,
+ "loss": 3.646064281463623,
+ "step": 3074
+ },
+ {
+ "epoch": 42.7129750982962,
+ "grad_norm": 0.23041971027851105,
+ "learning_rate": 0.0006,
+ "loss": 3.6431851387023926,
+ "step": 3075
+ },
+ {
+ "epoch": 42.72695500218436,
+ "grad_norm": 0.220438614487648,
+ "learning_rate": 0.0006,
+ "loss": 3.6499950885772705,
+ "step": 3076
+ },
+ {
+ "epoch": 42.74093490607252,
+ "grad_norm": 0.24297107756137848,
+ "learning_rate": 0.0006,
+ "loss": 3.6655125617980957,
+ "step": 3077
+ },
+ {
+ "epoch": 42.75491480996068,
+ "grad_norm": 0.21835893392562866,
+ "learning_rate": 0.0006,
+ "loss": 3.61672043800354,
+ "step": 3078
+ },
+ {
+ "epoch": 42.768894713848844,
+ "grad_norm": 0.22490793466567993,
+ "learning_rate": 0.0006,
+ "loss": 3.652825355529785,
+ "step": 3079
+ },
+ {
+ "epoch": 42.782874617737,
+ "grad_norm": 0.2246086746454239,
+ "learning_rate": 0.0006,
+ "loss": 3.6290056705474854,
+ "step": 3080
+ },
+ {
+ "epoch": 42.796854521625164,
+ "grad_norm": 0.21527042984962463,
+ "learning_rate": 0.0006,
+ "loss": 3.6587281227111816,
+ "step": 3081
+ },
+ {
+ "epoch": 42.81083442551333,
+ "grad_norm": 0.19586899876594543,
+ "learning_rate": 0.0006,
+ "loss": 3.639626979827881,
+ "step": 3082
+ },
+ {
+ "epoch": 42.824814329401484,
+ "grad_norm": 0.20881155133247375,
+ "learning_rate": 0.0006,
+ "loss": 3.6305861473083496,
+ "step": 3083
+ },
+ {
+ "epoch": 42.83879423328965,
+ "grad_norm": 0.20094981789588928,
+ "learning_rate": 0.0006,
+ "loss": 3.609614849090576,
+ "step": 3084
+ },
+ {
+ "epoch": 42.8527741371778,
+ "grad_norm": 0.21786150336265564,
+ "learning_rate": 0.0006,
+ "loss": 3.6423556804656982,
+ "step": 3085
+ },
+ {
+ "epoch": 42.86675404106597,
+ "grad_norm": 0.24493595957756042,
+ "learning_rate": 0.0006,
+ "loss": 3.631321668624878,
+ "step": 3086
+ },
+ {
+ "epoch": 42.88073394495413,
+ "grad_norm": 0.2437327355146408,
+ "learning_rate": 0.0006,
+ "loss": 3.6624178886413574,
+ "step": 3087
+ },
+ {
+ "epoch": 42.89471384884229,
+ "grad_norm": 0.21020543575286865,
+ "learning_rate": 0.0006,
+ "loss": 3.6567513942718506,
+ "step": 3088
+ },
+ {
+ "epoch": 42.90869375273045,
+ "grad_norm": 0.18977083265781403,
+ "learning_rate": 0.0006,
+ "loss": 3.6268601417541504,
+ "step": 3089
+ },
+ {
+ "epoch": 42.92267365661861,
+ "grad_norm": 0.2211192399263382,
+ "learning_rate": 0.0006,
+ "loss": 3.6690402030944824,
+ "step": 3090
+ },
+ {
+ "epoch": 42.93665356050677,
+ "grad_norm": 0.2695990204811096,
+ "learning_rate": 0.0006,
+ "loss": 3.667701244354248,
+ "step": 3091
+ },
+ {
+ "epoch": 42.95063346439493,
+ "grad_norm": 0.25910887122154236,
+ "learning_rate": 0.0006,
+ "loss": 3.627504587173462,
+ "step": 3092
+ },
+ {
+ "epoch": 42.964613368283096,
+ "grad_norm": 0.2466248720884323,
+ "learning_rate": 0.0006,
+ "loss": 3.6462182998657227,
+ "step": 3093
+ },
+ {
+ "epoch": 42.97859327217125,
+ "grad_norm": 0.22997038066387177,
+ "learning_rate": 0.0006,
+ "loss": 3.647430896759033,
+ "step": 3094
+ },
+ {
+ "epoch": 42.992573176059416,
+ "grad_norm": 0.1989113837480545,
+ "learning_rate": 0.0006,
+ "loss": 3.6502084732055664,
+ "step": 3095
+ },
+ {
+ "epoch": 43.0,
+ "grad_norm": 0.22976496815681458,
+ "learning_rate": 0.0006,
+ "loss": 3.6963884830474854,
+ "step": 3096
+ },
+ {
+ "epoch": 43.0,
+ "eval_loss": 3.9656779766082764,
+ "eval_runtime": 43.9281,
+ "eval_samples_per_second": 55.591,
+ "eval_steps_per_second": 3.483,
+ "step": 3096
+ },
+ {
+ "epoch": 43.01397990388816,
+ "grad_norm": 0.2862325608730316,
+ "learning_rate": 0.0006,
+ "loss": 3.581247568130493,
+ "step": 3097
+ },
+ {
+ "epoch": 43.02795980777632,
+ "grad_norm": 0.3867015540599823,
+ "learning_rate": 0.0006,
+ "loss": 3.611076593399048,
+ "step": 3098
+ },
+ {
+ "epoch": 43.04193971166448,
+ "grad_norm": 0.4139448404312134,
+ "learning_rate": 0.0006,
+ "loss": 3.625164031982422,
+ "step": 3099
+ },
+ {
+ "epoch": 43.05591961555265,
+ "grad_norm": 0.292407363653183,
+ "learning_rate": 0.0006,
+ "loss": 3.615546703338623,
+ "step": 3100
+ },
+ {
+ "epoch": 43.0698995194408,
+ "grad_norm": 0.24272124469280243,
+ "learning_rate": 0.0006,
+ "loss": 3.5965943336486816,
+ "step": 3101
+ },
+ {
+ "epoch": 43.083879423328966,
+ "grad_norm": 0.2761254608631134,
+ "learning_rate": 0.0006,
+ "loss": 3.605706214904785,
+ "step": 3102
+ },
+ {
+ "epoch": 43.09785932721712,
+ "grad_norm": 0.25232183933258057,
+ "learning_rate": 0.0006,
+ "loss": 3.6252012252807617,
+ "step": 3103
+ },
+ {
+ "epoch": 43.111839231105286,
+ "grad_norm": 0.248970165848732,
+ "learning_rate": 0.0006,
+ "loss": 3.6028337478637695,
+ "step": 3104
+ },
+ {
+ "epoch": 43.12581913499345,
+ "grad_norm": 0.22088921070098877,
+ "learning_rate": 0.0006,
+ "loss": 3.591614007949829,
+ "step": 3105
+ },
+ {
+ "epoch": 43.139799038881605,
+ "grad_norm": 0.21528655290603638,
+ "learning_rate": 0.0006,
+ "loss": 3.6237306594848633,
+ "step": 3106
+ },
+ {
+ "epoch": 43.15377894276977,
+ "grad_norm": 0.22799135744571686,
+ "learning_rate": 0.0006,
+ "loss": 3.5968847274780273,
+ "step": 3107
+ },
+ {
+ "epoch": 43.16775884665793,
+ "grad_norm": 0.23102127015590668,
+ "learning_rate": 0.0006,
+ "loss": 3.6046414375305176,
+ "step": 3108
+ },
+ {
+ "epoch": 43.18173875054609,
+ "grad_norm": 0.22876501083374023,
+ "learning_rate": 0.0006,
+ "loss": 3.635608196258545,
+ "step": 3109
+ },
+ {
+ "epoch": 43.19571865443425,
+ "grad_norm": 0.24920420348644257,
+ "learning_rate": 0.0006,
+ "loss": 3.628662109375,
+ "step": 3110
+ },
+ {
+ "epoch": 43.20969855832241,
+ "grad_norm": 0.2527749538421631,
+ "learning_rate": 0.0006,
+ "loss": 3.6109046936035156,
+ "step": 3111
+ },
+ {
+ "epoch": 43.22367846221057,
+ "grad_norm": 0.22529229521751404,
+ "learning_rate": 0.0006,
+ "loss": 3.6536030769348145,
+ "step": 3112
+ },
+ {
+ "epoch": 43.237658366098735,
+ "grad_norm": 0.20031821727752686,
+ "learning_rate": 0.0006,
+ "loss": 3.6328792572021484,
+ "step": 3113
+ },
+ {
+ "epoch": 43.25163826998689,
+ "grad_norm": 0.21075189113616943,
+ "learning_rate": 0.0006,
+ "loss": 3.6200530529022217,
+ "step": 3114
+ },
+ {
+ "epoch": 43.265618173875055,
+ "grad_norm": 0.21164856851100922,
+ "learning_rate": 0.0006,
+ "loss": 3.6276001930236816,
+ "step": 3115
+ },
+ {
+ "epoch": 43.27959807776322,
+ "grad_norm": 0.19306758046150208,
+ "learning_rate": 0.0006,
+ "loss": 3.608675956726074,
+ "step": 3116
+ },
+ {
+ "epoch": 43.293577981651374,
+ "grad_norm": 0.20288796722888947,
+ "learning_rate": 0.0006,
+ "loss": 3.6057004928588867,
+ "step": 3117
+ },
+ {
+ "epoch": 43.30755788553954,
+ "grad_norm": 0.1901484876871109,
+ "learning_rate": 0.0006,
+ "loss": 3.6191725730895996,
+ "step": 3118
+ },
+ {
+ "epoch": 43.3215377894277,
+ "grad_norm": 0.19438181817531586,
+ "learning_rate": 0.0006,
+ "loss": 3.5814337730407715,
+ "step": 3119
+ },
+ {
+ "epoch": 43.33551769331586,
+ "grad_norm": 0.19924484193325043,
+ "learning_rate": 0.0006,
+ "loss": 3.6168713569641113,
+ "step": 3120
+ },
+ {
+ "epoch": 43.34949759720402,
+ "grad_norm": 0.20757409930229187,
+ "learning_rate": 0.0006,
+ "loss": 3.6281509399414062,
+ "step": 3121
+ },
+ {
+ "epoch": 43.36347750109218,
+ "grad_norm": 0.22500184178352356,
+ "learning_rate": 0.0006,
+ "loss": 3.635101795196533,
+ "step": 3122
+ },
+ {
+ "epoch": 43.37745740498034,
+ "grad_norm": 0.22061555087566376,
+ "learning_rate": 0.0006,
+ "loss": 3.630622386932373,
+ "step": 3123
+ },
+ {
+ "epoch": 43.391437308868504,
+ "grad_norm": 0.2094152420759201,
+ "learning_rate": 0.0006,
+ "loss": 3.581803798675537,
+ "step": 3124
+ },
+ {
+ "epoch": 43.40541721275666,
+ "grad_norm": 0.19607678055763245,
+ "learning_rate": 0.0006,
+ "loss": 3.6149864196777344,
+ "step": 3125
+ },
+ {
+ "epoch": 43.419397116644824,
+ "grad_norm": 0.18985028564929962,
+ "learning_rate": 0.0006,
+ "loss": 3.6338040828704834,
+ "step": 3126
+ },
+ {
+ "epoch": 43.43337702053299,
+ "grad_norm": 0.20490778982639313,
+ "learning_rate": 0.0006,
+ "loss": 3.63275146484375,
+ "step": 3127
+ },
+ {
+ "epoch": 43.44735692442114,
+ "grad_norm": 0.24385297298431396,
+ "learning_rate": 0.0006,
+ "loss": 3.6412134170532227,
+ "step": 3128
+ },
+ {
+ "epoch": 43.46133682830931,
+ "grad_norm": 0.243601992726326,
+ "learning_rate": 0.0006,
+ "loss": 3.594238758087158,
+ "step": 3129
+ },
+ {
+ "epoch": 43.47531673219746,
+ "grad_norm": 0.21314913034439087,
+ "learning_rate": 0.0006,
+ "loss": 3.5962629318237305,
+ "step": 3130
+ },
+ {
+ "epoch": 43.489296636085626,
+ "grad_norm": 0.20499329268932343,
+ "learning_rate": 0.0006,
+ "loss": 3.61600923538208,
+ "step": 3131
+ },
+ {
+ "epoch": 43.50327653997379,
+ "grad_norm": 0.20199540257453918,
+ "learning_rate": 0.0006,
+ "loss": 3.638469934463501,
+ "step": 3132
+ },
+ {
+ "epoch": 43.517256443861946,
+ "grad_norm": 0.19932983815670013,
+ "learning_rate": 0.0006,
+ "loss": 3.619145393371582,
+ "step": 3133
+ },
+ {
+ "epoch": 43.53123634775011,
+ "grad_norm": 0.20401954650878906,
+ "learning_rate": 0.0006,
+ "loss": 3.643700122833252,
+ "step": 3134
+ },
+ {
+ "epoch": 43.54521625163827,
+ "grad_norm": 0.20784904062747955,
+ "learning_rate": 0.0006,
+ "loss": 3.619272232055664,
+ "step": 3135
+ },
+ {
+ "epoch": 43.55919615552643,
+ "grad_norm": 0.21003122627735138,
+ "learning_rate": 0.0006,
+ "loss": 3.629542827606201,
+ "step": 3136
+ },
+ {
+ "epoch": 43.57317605941459,
+ "grad_norm": 0.2220298945903778,
+ "learning_rate": 0.0006,
+ "loss": 3.655543804168701,
+ "step": 3137
+ },
+ {
+ "epoch": 43.58715596330275,
+ "grad_norm": 0.21159163117408752,
+ "learning_rate": 0.0006,
+ "loss": 3.6092495918273926,
+ "step": 3138
+ },
+ {
+ "epoch": 43.60113586719091,
+ "grad_norm": 0.19462746381759644,
+ "learning_rate": 0.0006,
+ "loss": 3.6447129249572754,
+ "step": 3139
+ },
+ {
+ "epoch": 43.615115771079076,
+ "grad_norm": 0.20523829758167267,
+ "learning_rate": 0.0006,
+ "loss": 3.6292669773101807,
+ "step": 3140
+ },
+ {
+ "epoch": 43.62909567496723,
+ "grad_norm": 0.2172321230173111,
+ "learning_rate": 0.0006,
+ "loss": 3.6144580841064453,
+ "step": 3141
+ },
+ {
+ "epoch": 43.643075578855395,
+ "grad_norm": 0.21751564741134644,
+ "learning_rate": 0.0006,
+ "loss": 3.6381068229675293,
+ "step": 3142
+ },
+ {
+ "epoch": 43.65705548274356,
+ "grad_norm": 0.1914236694574356,
+ "learning_rate": 0.0006,
+ "loss": 3.6392078399658203,
+ "step": 3143
+ },
+ {
+ "epoch": 43.671035386631715,
+ "grad_norm": 0.19792547821998596,
+ "learning_rate": 0.0006,
+ "loss": 3.6394457817077637,
+ "step": 3144
+ },
+ {
+ "epoch": 43.68501529051988,
+ "grad_norm": 0.2106214165687561,
+ "learning_rate": 0.0006,
+ "loss": 3.626147747039795,
+ "step": 3145
+ },
+ {
+ "epoch": 43.69899519440804,
+ "grad_norm": 0.21802955865859985,
+ "learning_rate": 0.0006,
+ "loss": 3.63372802734375,
+ "step": 3146
+ },
+ {
+ "epoch": 43.7129750982962,
+ "grad_norm": 0.21498727798461914,
+ "learning_rate": 0.0006,
+ "loss": 3.6193063259124756,
+ "step": 3147
+ },
+ {
+ "epoch": 43.72695500218436,
+ "grad_norm": 0.2176690250635147,
+ "learning_rate": 0.0006,
+ "loss": 3.6431519985198975,
+ "step": 3148
+ },
+ {
+ "epoch": 43.74093490607252,
+ "grad_norm": 0.26883506774902344,
+ "learning_rate": 0.0006,
+ "loss": 3.6216721534729004,
+ "step": 3149
+ },
+ {
+ "epoch": 43.75491480996068,
+ "grad_norm": 0.23485299944877625,
+ "learning_rate": 0.0006,
+ "loss": 3.6361191272735596,
+ "step": 3150
+ },
+ {
+ "epoch": 43.768894713848844,
+ "grad_norm": 0.20496341586112976,
+ "learning_rate": 0.0006,
+ "loss": 3.6258792877197266,
+ "step": 3151
+ },
+ {
+ "epoch": 43.782874617737,
+ "grad_norm": 0.21792510151863098,
+ "learning_rate": 0.0006,
+ "loss": 3.6522839069366455,
+ "step": 3152
+ },
+ {
+ "epoch": 43.796854521625164,
+ "grad_norm": 0.2589452564716339,
+ "learning_rate": 0.0006,
+ "loss": 3.651235580444336,
+ "step": 3153
+ },
+ {
+ "epoch": 43.81083442551333,
+ "grad_norm": 0.24883611500263214,
+ "learning_rate": 0.0006,
+ "loss": 3.6382546424865723,
+ "step": 3154
+ },
+ {
+ "epoch": 43.824814329401484,
+ "grad_norm": 0.22466720640659332,
+ "learning_rate": 0.0006,
+ "loss": 3.6232261657714844,
+ "step": 3155
+ },
+ {
+ "epoch": 43.83879423328965,
+ "grad_norm": 0.19477292895317078,
+ "learning_rate": 0.0006,
+ "loss": 3.6350135803222656,
+ "step": 3156
+ },
+ {
+ "epoch": 43.8527741371778,
+ "grad_norm": 0.20302540063858032,
+ "learning_rate": 0.0006,
+ "loss": 3.638143539428711,
+ "step": 3157
+ },
+ {
+ "epoch": 43.86675404106597,
+ "grad_norm": 0.2112276554107666,
+ "learning_rate": 0.0006,
+ "loss": 3.6415610313415527,
+ "step": 3158
+ },
+ {
+ "epoch": 43.88073394495413,
+ "grad_norm": 0.20544779300689697,
+ "learning_rate": 0.0006,
+ "loss": 3.6437134742736816,
+ "step": 3159
+ },
+ {
+ "epoch": 43.89471384884229,
+ "grad_norm": 0.2320292890071869,
+ "learning_rate": 0.0006,
+ "loss": 3.6178359985351562,
+ "step": 3160
+ },
+ {
+ "epoch": 43.90869375273045,
+ "grad_norm": 0.25862693786621094,
+ "learning_rate": 0.0006,
+ "loss": 3.618229389190674,
+ "step": 3161
+ },
+ {
+ "epoch": 43.92267365661861,
+ "grad_norm": 0.2741934061050415,
+ "learning_rate": 0.0006,
+ "loss": 3.6046690940856934,
+ "step": 3162
+ },
+ {
+ "epoch": 43.93665356050677,
+ "grad_norm": 0.24312593042850494,
+ "learning_rate": 0.0006,
+ "loss": 3.5835556983947754,
+ "step": 3163
+ },
+ {
+ "epoch": 43.95063346439493,
+ "grad_norm": 0.22174517810344696,
+ "learning_rate": 0.0006,
+ "loss": 3.6505162715911865,
+ "step": 3164
+ },
+ {
+ "epoch": 43.964613368283096,
+ "grad_norm": 0.22016975283622742,
+ "learning_rate": 0.0006,
+ "loss": 3.6385562419891357,
+ "step": 3165
+ },
+ {
+ "epoch": 43.97859327217125,
+ "grad_norm": 0.23034313321113586,
+ "learning_rate": 0.0006,
+ "loss": 3.6345865726470947,
+ "step": 3166
+ },
+ {
+ "epoch": 43.992573176059416,
+ "grad_norm": 0.21236231923103333,
+ "learning_rate": 0.0006,
+ "loss": 3.6337084770202637,
+ "step": 3167
+ },
+ {
+ "epoch": 44.0,
+ "grad_norm": 0.2344549298286438,
+ "learning_rate": 0.0006,
+ "loss": 3.677978515625,
+ "step": 3168
+ },
+ {
+ "epoch": 44.0,
+ "eval_loss": 3.9817888736724854,
+ "eval_runtime": 44.4396,
+ "eval_samples_per_second": 54.951,
+ "eval_steps_per_second": 3.443,
+ "step": 3168
+ },
+ {
+ "epoch": 44.01397990388816,
+ "grad_norm": 0.19790801405906677,
+ "learning_rate": 0.0006,
+ "loss": 3.590817451477051,
+ "step": 3169
+ },
+ {
+ "epoch": 44.02795980777632,
+ "grad_norm": 0.22922387719154358,
+ "learning_rate": 0.0006,
+ "loss": 3.643888473510742,
+ "step": 3170
+ },
+ {
+ "epoch": 44.04193971166448,
+ "grad_norm": 0.24750149250030518,
+ "learning_rate": 0.0006,
+ "loss": 3.596278667449951,
+ "step": 3171
+ },
+ {
+ "epoch": 44.05591961555265,
+ "grad_norm": 0.2511967420578003,
+ "learning_rate": 0.0006,
+ "loss": 3.6138253211975098,
+ "step": 3172
+ },
+ {
+ "epoch": 44.0698995194408,
+ "grad_norm": 0.2530326843261719,
+ "learning_rate": 0.0006,
+ "loss": 3.5710060596466064,
+ "step": 3173
+ },
+ {
+ "epoch": 44.083879423328966,
+ "grad_norm": 0.2629041373729706,
+ "learning_rate": 0.0006,
+ "loss": 3.61676025390625,
+ "step": 3174
+ },
+ {
+ "epoch": 44.09785932721712,
+ "grad_norm": 0.27373939752578735,
+ "learning_rate": 0.0006,
+ "loss": 3.613091230392456,
+ "step": 3175
+ },
+ {
+ "epoch": 44.111839231105286,
+ "grad_norm": 0.24354346096515656,
+ "learning_rate": 0.0006,
+ "loss": 3.6133360862731934,
+ "step": 3176
+ },
+ {
+ "epoch": 44.12581913499345,
+ "grad_norm": 0.21540892124176025,
+ "learning_rate": 0.0006,
+ "loss": 3.6367645263671875,
+ "step": 3177
+ },
+ {
+ "epoch": 44.139799038881605,
+ "grad_norm": 0.22251278162002563,
+ "learning_rate": 0.0006,
+ "loss": 3.6266322135925293,
+ "step": 3178
+ },
+ {
+ "epoch": 44.15377894276977,
+ "grad_norm": 0.26196029782295227,
+ "learning_rate": 0.0006,
+ "loss": 3.616487979888916,
+ "step": 3179
+ },
+ {
+ "epoch": 44.16775884665793,
+ "grad_norm": 0.2614341080188751,
+ "learning_rate": 0.0006,
+ "loss": 3.5902786254882812,
+ "step": 3180
+ },
+ {
+ "epoch": 44.18173875054609,
+ "grad_norm": 0.23517177999019623,
+ "learning_rate": 0.0006,
+ "loss": 3.610124111175537,
+ "step": 3181
+ },
+ {
+ "epoch": 44.19571865443425,
+ "grad_norm": 0.20091469585895538,
+ "learning_rate": 0.0006,
+ "loss": 3.5861713886260986,
+ "step": 3182
+ },
+ {
+ "epoch": 44.20969855832241,
+ "grad_norm": 0.19659830629825592,
+ "learning_rate": 0.0006,
+ "loss": 3.6157889366149902,
+ "step": 3183
+ },
+ {
+ "epoch": 44.22367846221057,
+ "grad_norm": 0.20690861344337463,
+ "learning_rate": 0.0006,
+ "loss": 3.5710649490356445,
+ "step": 3184
+ },
+ {
+ "epoch": 44.237658366098735,
+ "grad_norm": 0.2478247433900833,
+ "learning_rate": 0.0006,
+ "loss": 3.609031915664673,
+ "step": 3185
+ },
+ {
+ "epoch": 44.25163826998689,
+ "grad_norm": 0.2678471505641937,
+ "learning_rate": 0.0006,
+ "loss": 3.6412887573242188,
+ "step": 3186
+ },
+ {
+ "epoch": 44.265618173875055,
+ "grad_norm": 0.21856079995632172,
+ "learning_rate": 0.0006,
+ "loss": 3.6113123893737793,
+ "step": 3187
+ },
+ {
+ "epoch": 44.27959807776322,
+ "grad_norm": 0.23104850947856903,
+ "learning_rate": 0.0006,
+ "loss": 3.6022086143493652,
+ "step": 3188
+ },
+ {
+ "epoch": 44.293577981651374,
+ "grad_norm": 0.2380223423242569,
+ "learning_rate": 0.0006,
+ "loss": 3.598735809326172,
+ "step": 3189
+ },
+ {
+ "epoch": 44.30755788553954,
+ "grad_norm": 0.23005320131778717,
+ "learning_rate": 0.0006,
+ "loss": 3.595881938934326,
+ "step": 3190
+ },
+ {
+ "epoch": 44.3215377894277,
+ "grad_norm": 0.23327432572841644,
+ "learning_rate": 0.0006,
+ "loss": 3.6198601722717285,
+ "step": 3191
+ },
+ {
+ "epoch": 44.33551769331586,
+ "grad_norm": 0.2272268831729889,
+ "learning_rate": 0.0006,
+ "loss": 3.6135387420654297,
+ "step": 3192
+ },
+ {
+ "epoch": 44.34949759720402,
+ "grad_norm": 0.2518279552459717,
+ "learning_rate": 0.0006,
+ "loss": 3.6084556579589844,
+ "step": 3193
+ },
+ {
+ "epoch": 44.36347750109218,
+ "grad_norm": 0.27668607234954834,
+ "learning_rate": 0.0006,
+ "loss": 3.644430160522461,
+ "step": 3194
+ },
+ {
+ "epoch": 44.37745740498034,
+ "grad_norm": 0.26110342144966125,
+ "learning_rate": 0.0006,
+ "loss": 3.64072322845459,
+ "step": 3195
+ },
+ {
+ "epoch": 44.391437308868504,
+ "grad_norm": 0.22767964005470276,
+ "learning_rate": 0.0006,
+ "loss": 3.5570502281188965,
+ "step": 3196
+ },
+ {
+ "epoch": 44.40541721275666,
+ "grad_norm": 0.2199093997478485,
+ "learning_rate": 0.0006,
+ "loss": 3.558889150619507,
+ "step": 3197
+ },
+ {
+ "epoch": 44.419397116644824,
+ "grad_norm": 0.21653494238853455,
+ "learning_rate": 0.0006,
+ "loss": 3.6215333938598633,
+ "step": 3198
+ },
+ {
+ "epoch": 44.43337702053299,
+ "grad_norm": 0.1958773136138916,
+ "learning_rate": 0.0006,
+ "loss": 3.588468551635742,
+ "step": 3199
+ },
+ {
+ "epoch": 44.44735692442114,
+ "grad_norm": 0.20205403864383698,
+ "learning_rate": 0.0006,
+ "loss": 3.6109578609466553,
+ "step": 3200
+ },
+ {
+ "epoch": 44.46133682830931,
+ "grad_norm": 0.19632115960121155,
+ "learning_rate": 0.0006,
+ "loss": 3.634315013885498,
+ "step": 3201
+ },
+ {
+ "epoch": 44.47531673219746,
+ "grad_norm": 0.19327203929424286,
+ "learning_rate": 0.0006,
+ "loss": 3.6335930824279785,
+ "step": 3202
+ },
+ {
+ "epoch": 44.489296636085626,
+ "grad_norm": 0.19743897020816803,
+ "learning_rate": 0.0006,
+ "loss": 3.6164016723632812,
+ "step": 3203
+ },
+ {
+ "epoch": 44.50327653997379,
+ "grad_norm": 0.20413564145565033,
+ "learning_rate": 0.0006,
+ "loss": 3.663613796234131,
+ "step": 3204
+ },
+ {
+ "epoch": 44.517256443861946,
+ "grad_norm": 0.2057798206806183,
+ "learning_rate": 0.0006,
+ "loss": 3.625131130218506,
+ "step": 3205
+ },
+ {
+ "epoch": 44.53123634775011,
+ "grad_norm": 0.20076915621757507,
+ "learning_rate": 0.0006,
+ "loss": 3.6362178325653076,
+ "step": 3206
+ },
+ {
+ "epoch": 44.54521625163827,
+ "grad_norm": 0.2381955236196518,
+ "learning_rate": 0.0006,
+ "loss": 3.621263265609741,
+ "step": 3207
+ },
+ {
+ "epoch": 44.55919615552643,
+ "grad_norm": 0.27008768916130066,
+ "learning_rate": 0.0006,
+ "loss": 3.6133322715759277,
+ "step": 3208
+ },
+ {
+ "epoch": 44.57317605941459,
+ "grad_norm": 0.25677573680877686,
+ "learning_rate": 0.0006,
+ "loss": 3.6210851669311523,
+ "step": 3209
+ },
+ {
+ "epoch": 44.58715596330275,
+ "grad_norm": 0.21022997796535492,
+ "learning_rate": 0.0006,
+ "loss": 3.626483917236328,
+ "step": 3210
+ },
+ {
+ "epoch": 44.60113586719091,
+ "grad_norm": 0.19918566942214966,
+ "learning_rate": 0.0006,
+ "loss": 3.6321091651916504,
+ "step": 3211
+ },
+ {
+ "epoch": 44.615115771079076,
+ "grad_norm": 0.2114727795124054,
+ "learning_rate": 0.0006,
+ "loss": 3.5767595767974854,
+ "step": 3212
+ },
+ {
+ "epoch": 44.62909567496723,
+ "grad_norm": 0.20968441665172577,
+ "learning_rate": 0.0006,
+ "loss": 3.6040430068969727,
+ "step": 3213
+ },
+ {
+ "epoch": 44.643075578855395,
+ "grad_norm": 0.19996227324008942,
+ "learning_rate": 0.0006,
+ "loss": 3.6688590049743652,
+ "step": 3214
+ },
+ {
+ "epoch": 44.65705548274356,
+ "grad_norm": 0.19998830556869507,
+ "learning_rate": 0.0006,
+ "loss": 3.6349434852600098,
+ "step": 3215
+ },
+ {
+ "epoch": 44.671035386631715,
+ "grad_norm": 0.20812496542930603,
+ "learning_rate": 0.0006,
+ "loss": 3.6363840103149414,
+ "step": 3216
+ },
+ {
+ "epoch": 44.68501529051988,
+ "grad_norm": 0.1988825500011444,
+ "learning_rate": 0.0006,
+ "loss": 3.6180496215820312,
+ "step": 3217
+ },
+ {
+ "epoch": 44.69899519440804,
+ "grad_norm": 0.2114664614200592,
+ "learning_rate": 0.0006,
+ "loss": 3.6362106800079346,
+ "step": 3218
+ },
+ {
+ "epoch": 44.7129750982962,
+ "grad_norm": 0.19847962260246277,
+ "learning_rate": 0.0006,
+ "loss": 3.618500232696533,
+ "step": 3219
+ },
+ {
+ "epoch": 44.72695500218436,
+ "grad_norm": 0.19903887808322906,
+ "learning_rate": 0.0006,
+ "loss": 3.6360888481140137,
+ "step": 3220
+ },
+ {
+ "epoch": 44.74093490607252,
+ "grad_norm": 0.21198545396327972,
+ "learning_rate": 0.0006,
+ "loss": 3.6347005367279053,
+ "step": 3221
+ },
+ {
+ "epoch": 44.75491480996068,
+ "grad_norm": 0.18334898352622986,
+ "learning_rate": 0.0006,
+ "loss": 3.6160783767700195,
+ "step": 3222
+ },
+ {
+ "epoch": 44.768894713848844,
+ "grad_norm": 0.19260665774345398,
+ "learning_rate": 0.0006,
+ "loss": 3.6322834491729736,
+ "step": 3223
+ },
+ {
+ "epoch": 44.782874617737,
+ "grad_norm": 0.2084558755159378,
+ "learning_rate": 0.0006,
+ "loss": 3.615227699279785,
+ "step": 3224
+ },
+ {
+ "epoch": 44.796854521625164,
+ "grad_norm": 0.24538686871528625,
+ "learning_rate": 0.0006,
+ "loss": 3.6387081146240234,
+ "step": 3225
+ },
+ {
+ "epoch": 44.81083442551333,
+ "grad_norm": 0.23291894793510437,
+ "learning_rate": 0.0006,
+ "loss": 3.6245408058166504,
+ "step": 3226
+ },
+ {
+ "epoch": 44.824814329401484,
+ "grad_norm": 0.20715969800949097,
+ "learning_rate": 0.0006,
+ "loss": 3.633620262145996,
+ "step": 3227
+ },
+ {
+ "epoch": 44.83879423328965,
+ "grad_norm": 0.20866821706295013,
+ "learning_rate": 0.0006,
+ "loss": 3.613438129425049,
+ "step": 3228
+ },
+ {
+ "epoch": 44.8527741371778,
+ "grad_norm": 0.2048904299736023,
+ "learning_rate": 0.0006,
+ "loss": 3.668807029724121,
+ "step": 3229
+ },
+ {
+ "epoch": 44.86675404106597,
+ "grad_norm": 0.2073894739151001,
+ "learning_rate": 0.0006,
+ "loss": 3.6000914573669434,
+ "step": 3230
+ },
+ {
+ "epoch": 44.88073394495413,
+ "grad_norm": 0.22017404437065125,
+ "learning_rate": 0.0006,
+ "loss": 3.6024718284606934,
+ "step": 3231
+ },
+ {
+ "epoch": 44.89471384884229,
+ "grad_norm": 0.23971669375896454,
+ "learning_rate": 0.0006,
+ "loss": 3.6339516639709473,
+ "step": 3232
+ },
+ {
+ "epoch": 44.90869375273045,
+ "grad_norm": 0.2258273959159851,
+ "learning_rate": 0.0006,
+ "loss": 3.6480093002319336,
+ "step": 3233
+ },
+ {
+ "epoch": 44.92267365661861,
+ "grad_norm": 0.22079502046108246,
+ "learning_rate": 0.0006,
+ "loss": 3.643446922302246,
+ "step": 3234
+ },
+ {
+ "epoch": 44.93665356050677,
+ "grad_norm": 0.22109337151050568,
+ "learning_rate": 0.0006,
+ "loss": 3.5975499153137207,
+ "step": 3235
+ },
+ {
+ "epoch": 44.95063346439493,
+ "grad_norm": 0.20142309367656708,
+ "learning_rate": 0.0006,
+ "loss": 3.6057305335998535,
+ "step": 3236
+ },
+ {
+ "epoch": 44.964613368283096,
+ "grad_norm": 0.20089569687843323,
+ "learning_rate": 0.0006,
+ "loss": 3.5900750160217285,
+ "step": 3237
+ },
+ {
+ "epoch": 44.97859327217125,
+ "grad_norm": 0.19860075414180756,
+ "learning_rate": 0.0006,
+ "loss": 3.5954184532165527,
+ "step": 3238
+ },
+ {
+ "epoch": 44.992573176059416,
+ "grad_norm": 0.19166013598442078,
+ "learning_rate": 0.0006,
+ "loss": 3.6568803787231445,
+ "step": 3239
+ },
+ {
+ "epoch": 45.0,
+ "grad_norm": 0.22416932880878448,
+ "learning_rate": 0.0006,
+ "loss": 3.6483092308044434,
+ "step": 3240
+ },
+ {
+ "epoch": 45.0,
+ "eval_loss": 3.9821224212646484,
+ "eval_runtime": 44.5415,
+ "eval_samples_per_second": 54.825,
+ "eval_steps_per_second": 3.435,
+ "step": 3240
+ },
+ {
+ "epoch": 45.01397990388816,
+ "grad_norm": 0.2107669562101364,
+ "learning_rate": 0.0006,
+ "loss": 3.5858099460601807,
+ "step": 3241
+ },
+ {
+ "epoch": 45.02795980777632,
+ "grad_norm": 0.20831939578056335,
+ "learning_rate": 0.0006,
+ "loss": 3.5793800354003906,
+ "step": 3242
+ },
+ {
+ "epoch": 45.04193971166448,
+ "grad_norm": 0.2169167846441269,
+ "learning_rate": 0.0006,
+ "loss": 3.601961135864258,
+ "step": 3243
+ },
+ {
+ "epoch": 45.05591961555265,
+ "grad_norm": 0.22451531887054443,
+ "learning_rate": 0.0006,
+ "loss": 3.586371898651123,
+ "step": 3244
+ },
+ {
+ "epoch": 45.0698995194408,
+ "grad_norm": 0.2187003344297409,
+ "learning_rate": 0.0006,
+ "loss": 3.58760929107666,
+ "step": 3245
+ },
+ {
+ "epoch": 45.083879423328966,
+ "grad_norm": 0.22805631160736084,
+ "learning_rate": 0.0006,
+ "loss": 3.554107904434204,
+ "step": 3246
+ },
+ {
+ "epoch": 45.09785932721712,
+ "grad_norm": 0.2573186159133911,
+ "learning_rate": 0.0006,
+ "loss": 3.5815420150756836,
+ "step": 3247
+ },
+ {
+ "epoch": 45.111839231105286,
+ "grad_norm": 0.25940126180648804,
+ "learning_rate": 0.0006,
+ "loss": 3.5754308700561523,
+ "step": 3248
+ },
+ {
+ "epoch": 45.12581913499345,
+ "grad_norm": 0.23834384977817535,
+ "learning_rate": 0.0006,
+ "loss": 3.5857350826263428,
+ "step": 3249
+ },
+ {
+ "epoch": 45.139799038881605,
+ "grad_norm": 0.23342885076999664,
+ "learning_rate": 0.0006,
+ "loss": 3.6116228103637695,
+ "step": 3250
+ },
+ {
+ "epoch": 45.15377894276977,
+ "grad_norm": 0.23284269869327545,
+ "learning_rate": 0.0006,
+ "loss": 3.5778629779815674,
+ "step": 3251
+ },
+ {
+ "epoch": 45.16775884665793,
+ "grad_norm": 0.30510780215263367,
+ "learning_rate": 0.0006,
+ "loss": 3.5888915061950684,
+ "step": 3252
+ },
+ {
+ "epoch": 45.18173875054609,
+ "grad_norm": 0.3462519645690918,
+ "learning_rate": 0.0006,
+ "loss": 3.5955758094787598,
+ "step": 3253
+ },
+ {
+ "epoch": 45.19571865443425,
+ "grad_norm": 0.2795974314212799,
+ "learning_rate": 0.0006,
+ "loss": 3.6222946643829346,
+ "step": 3254
+ },
+ {
+ "epoch": 45.20969855832241,
+ "grad_norm": 0.24624103307724,
+ "learning_rate": 0.0006,
+ "loss": 3.63046932220459,
+ "step": 3255
+ },
+ {
+ "epoch": 45.22367846221057,
+ "grad_norm": 0.23007310926914215,
+ "learning_rate": 0.0006,
+ "loss": 3.652526378631592,
+ "step": 3256
+ },
+ {
+ "epoch": 45.237658366098735,
+ "grad_norm": 0.21325333416461945,
+ "learning_rate": 0.0006,
+ "loss": 3.5960049629211426,
+ "step": 3257
+ },
+ {
+ "epoch": 45.25163826998689,
+ "grad_norm": 0.22697314620018005,
+ "learning_rate": 0.0006,
+ "loss": 3.5723695755004883,
+ "step": 3258
+ },
+ {
+ "epoch": 45.265618173875055,
+ "grad_norm": 0.21900491416454315,
+ "learning_rate": 0.0006,
+ "loss": 3.613572120666504,
+ "step": 3259
+ },
+ {
+ "epoch": 45.27959807776322,
+ "grad_norm": 0.21030694246292114,
+ "learning_rate": 0.0006,
+ "loss": 3.5830235481262207,
+ "step": 3260
+ },
+ {
+ "epoch": 45.293577981651374,
+ "grad_norm": 0.20229968428611755,
+ "learning_rate": 0.0006,
+ "loss": 3.620349884033203,
+ "step": 3261
+ },
+ {
+ "epoch": 45.30755788553954,
+ "grad_norm": 0.21611201763153076,
+ "learning_rate": 0.0006,
+ "loss": 3.5937819480895996,
+ "step": 3262
+ },
+ {
+ "epoch": 45.3215377894277,
+ "grad_norm": 0.21876764297485352,
+ "learning_rate": 0.0006,
+ "loss": 3.6180777549743652,
+ "step": 3263
+ },
+ {
+ "epoch": 45.33551769331586,
+ "grad_norm": 0.200356587767601,
+ "learning_rate": 0.0006,
+ "loss": 3.6140146255493164,
+ "step": 3264
+ },
+ {
+ "epoch": 45.34949759720402,
+ "grad_norm": 0.19151835143566132,
+ "learning_rate": 0.0006,
+ "loss": 3.607077121734619,
+ "step": 3265
+ },
+ {
+ "epoch": 45.36347750109218,
+ "grad_norm": 0.1994648575782776,
+ "learning_rate": 0.0006,
+ "loss": 3.646780490875244,
+ "step": 3266
+ },
+ {
+ "epoch": 45.37745740498034,
+ "grad_norm": 0.23145829141139984,
+ "learning_rate": 0.0006,
+ "loss": 3.624591588973999,
+ "step": 3267
+ },
+ {
+ "epoch": 45.391437308868504,
+ "grad_norm": 0.23608829081058502,
+ "learning_rate": 0.0006,
+ "loss": 3.598904609680176,
+ "step": 3268
+ },
+ {
+ "epoch": 45.40541721275666,
+ "grad_norm": 0.22254547476768494,
+ "learning_rate": 0.0006,
+ "loss": 3.581087827682495,
+ "step": 3269
+ },
+ {
+ "epoch": 45.419397116644824,
+ "grad_norm": 0.21640023589134216,
+ "learning_rate": 0.0006,
+ "loss": 3.5961151123046875,
+ "step": 3270
+ },
+ {
+ "epoch": 45.43337702053299,
+ "grad_norm": 0.2252444475889206,
+ "learning_rate": 0.0006,
+ "loss": 3.590231418609619,
+ "step": 3271
+ },
+ {
+ "epoch": 45.44735692442114,
+ "grad_norm": 0.23785367608070374,
+ "learning_rate": 0.0006,
+ "loss": 3.615896701812744,
+ "step": 3272
+ },
+ {
+ "epoch": 45.46133682830931,
+ "grad_norm": 0.2509191036224365,
+ "learning_rate": 0.0006,
+ "loss": 3.6413722038269043,
+ "step": 3273
+ },
+ {
+ "epoch": 45.47531673219746,
+ "grad_norm": 0.23734210431575775,
+ "learning_rate": 0.0006,
+ "loss": 3.608898639678955,
+ "step": 3274
+ },
+ {
+ "epoch": 45.489296636085626,
+ "grad_norm": 0.19802412390708923,
+ "learning_rate": 0.0006,
+ "loss": 3.5957250595092773,
+ "step": 3275
+ },
+ {
+ "epoch": 45.50327653997379,
+ "grad_norm": 0.20621423423290253,
+ "learning_rate": 0.0006,
+ "loss": 3.607945442199707,
+ "step": 3276
+ },
+ {
+ "epoch": 45.517256443861946,
+ "grad_norm": 0.225870743393898,
+ "learning_rate": 0.0006,
+ "loss": 3.641449451446533,
+ "step": 3277
+ },
+ {
+ "epoch": 45.53123634775011,
+ "grad_norm": 0.21482397615909576,
+ "learning_rate": 0.0006,
+ "loss": 3.61629581451416,
+ "step": 3278
+ },
+ {
+ "epoch": 45.54521625163827,
+ "grad_norm": 0.21159376204013824,
+ "learning_rate": 0.0006,
+ "loss": 3.5977988243103027,
+ "step": 3279
+ },
+ {
+ "epoch": 45.55919615552643,
+ "grad_norm": 0.2031678408384323,
+ "learning_rate": 0.0006,
+ "loss": 3.629343032836914,
+ "step": 3280
+ },
+ {
+ "epoch": 45.57317605941459,
+ "grad_norm": 0.1827101707458496,
+ "learning_rate": 0.0006,
+ "loss": 3.6161365509033203,
+ "step": 3281
+ },
+ {
+ "epoch": 45.58715596330275,
+ "grad_norm": 0.21884584426879883,
+ "learning_rate": 0.0006,
+ "loss": 3.6131834983825684,
+ "step": 3282
+ },
+ {
+ "epoch": 45.60113586719091,
+ "grad_norm": 0.21764980256557465,
+ "learning_rate": 0.0006,
+ "loss": 3.612516164779663,
+ "step": 3283
+ },
+ {
+ "epoch": 45.615115771079076,
+ "grad_norm": 0.22257080674171448,
+ "learning_rate": 0.0006,
+ "loss": 3.63425874710083,
+ "step": 3284
+ },
+ {
+ "epoch": 45.62909567496723,
+ "grad_norm": 0.2419128566980362,
+ "learning_rate": 0.0006,
+ "loss": 3.602997064590454,
+ "step": 3285
+ },
+ {
+ "epoch": 45.643075578855395,
+ "grad_norm": 0.20856884121894836,
+ "learning_rate": 0.0006,
+ "loss": 3.597352981567383,
+ "step": 3286
+ },
+ {
+ "epoch": 45.65705548274356,
+ "grad_norm": 0.20298589766025543,
+ "learning_rate": 0.0006,
+ "loss": 3.5961315631866455,
+ "step": 3287
+ },
+ {
+ "epoch": 45.671035386631715,
+ "grad_norm": 0.19006133079528809,
+ "learning_rate": 0.0006,
+ "loss": 3.6314568519592285,
+ "step": 3288
+ },
+ {
+ "epoch": 45.68501529051988,
+ "grad_norm": 0.20886142551898956,
+ "learning_rate": 0.0006,
+ "loss": 3.6200413703918457,
+ "step": 3289
+ },
+ {
+ "epoch": 45.69899519440804,
+ "grad_norm": 0.18085862696170807,
+ "learning_rate": 0.0006,
+ "loss": 3.6273961067199707,
+ "step": 3290
+ },
+ {
+ "epoch": 45.7129750982962,
+ "grad_norm": 0.18651945888996124,
+ "learning_rate": 0.0006,
+ "loss": 3.6490976810455322,
+ "step": 3291
+ },
+ {
+ "epoch": 45.72695500218436,
+ "grad_norm": 0.19668170809745789,
+ "learning_rate": 0.0006,
+ "loss": 3.610409736633301,
+ "step": 3292
+ },
+ {
+ "epoch": 45.74093490607252,
+ "grad_norm": 0.19865764677524567,
+ "learning_rate": 0.0006,
+ "loss": 3.614025115966797,
+ "step": 3293
+ },
+ {
+ "epoch": 45.75491480996068,
+ "grad_norm": 0.20814085006713867,
+ "learning_rate": 0.0006,
+ "loss": 3.6220510005950928,
+ "step": 3294
+ },
+ {
+ "epoch": 45.768894713848844,
+ "grad_norm": 0.20996463298797607,
+ "learning_rate": 0.0006,
+ "loss": 3.5754218101501465,
+ "step": 3295
+ },
+ {
+ "epoch": 45.782874617737,
+ "grad_norm": 0.1987130492925644,
+ "learning_rate": 0.0006,
+ "loss": 3.614746570587158,
+ "step": 3296
+ },
+ {
+ "epoch": 45.796854521625164,
+ "grad_norm": 0.23048028349876404,
+ "learning_rate": 0.0006,
+ "loss": 3.602620840072632,
+ "step": 3297
+ },
+ {
+ "epoch": 45.81083442551333,
+ "grad_norm": 0.21877387166023254,
+ "learning_rate": 0.0006,
+ "loss": 3.6294198036193848,
+ "step": 3298
+ },
+ {
+ "epoch": 45.824814329401484,
+ "grad_norm": 0.20007763803005219,
+ "learning_rate": 0.0006,
+ "loss": 3.630868434906006,
+ "step": 3299
+ },
+ {
+ "epoch": 45.83879423328965,
+ "grad_norm": 0.200496107339859,
+ "learning_rate": 0.0006,
+ "loss": 3.5972986221313477,
+ "step": 3300
+ },
+ {
+ "epoch": 45.8527741371778,
+ "grad_norm": 0.20494480431079865,
+ "learning_rate": 0.0006,
+ "loss": 3.61934494972229,
+ "step": 3301
+ },
+ {
+ "epoch": 45.86675404106597,
+ "grad_norm": 0.21374984085559845,
+ "learning_rate": 0.0006,
+ "loss": 3.6236257553100586,
+ "step": 3302
+ },
+ {
+ "epoch": 45.88073394495413,
+ "grad_norm": 0.22020408511161804,
+ "learning_rate": 0.0006,
+ "loss": 3.6030755043029785,
+ "step": 3303
+ },
+ {
+ "epoch": 45.89471384884229,
+ "grad_norm": 0.2239987701177597,
+ "learning_rate": 0.0006,
+ "loss": 3.6778974533081055,
+ "step": 3304
+ },
+ {
+ "epoch": 45.90869375273045,
+ "grad_norm": 0.22156383097171783,
+ "learning_rate": 0.0006,
+ "loss": 3.6186561584472656,
+ "step": 3305
+ },
+ {
+ "epoch": 45.92267365661861,
+ "grad_norm": 0.2264711856842041,
+ "learning_rate": 0.0006,
+ "loss": 3.6349918842315674,
+ "step": 3306
+ },
+ {
+ "epoch": 45.93665356050677,
+ "grad_norm": 0.2287975549697876,
+ "learning_rate": 0.0006,
+ "loss": 3.600268840789795,
+ "step": 3307
+ },
+ {
+ "epoch": 45.95063346439493,
+ "grad_norm": 0.22459761798381805,
+ "learning_rate": 0.0006,
+ "loss": 3.6029114723205566,
+ "step": 3308
+ },
+ {
+ "epoch": 45.964613368283096,
+ "grad_norm": 0.2430959790945053,
+ "learning_rate": 0.0006,
+ "loss": 3.6781656742095947,
+ "step": 3309
+ },
+ {
+ "epoch": 45.97859327217125,
+ "grad_norm": 0.2718662619590759,
+ "learning_rate": 0.0006,
+ "loss": 3.606778144836426,
+ "step": 3310
+ },
+ {
+ "epoch": 45.992573176059416,
+ "grad_norm": 0.27250170707702637,
+ "learning_rate": 0.0006,
+ "loss": 3.6142611503601074,
+ "step": 3311
+ },
+ {
+ "epoch": 46.0,
+ "grad_norm": 0.26663821935653687,
+ "learning_rate": 0.0006,
+ "loss": 3.6367483139038086,
+ "step": 3312
+ },
+ {
+ "epoch": 46.0,
+ "eval_loss": 3.9835095405578613,
+ "eval_runtime": 44.6504,
+ "eval_samples_per_second": 54.692,
+ "eval_steps_per_second": 3.427,
+ "step": 3312
+ },
+ {
+ "epoch": 46.01397990388816,
+ "grad_norm": 0.22670713067054749,
+ "learning_rate": 0.0006,
+ "loss": 3.5553648471832275,
+ "step": 3313
+ },
+ {
+ "epoch": 46.02795980777632,
+ "grad_norm": 0.2759886384010315,
+ "learning_rate": 0.0006,
+ "loss": 3.595186948776245,
+ "step": 3314
+ },
+ {
+ "epoch": 46.04193971166448,
+ "grad_norm": 0.31634145975112915,
+ "learning_rate": 0.0006,
+ "loss": 3.5805907249450684,
+ "step": 3315
+ },
+ {
+ "epoch": 46.05591961555265,
+ "grad_norm": 0.3097986578941345,
+ "learning_rate": 0.0006,
+ "loss": 3.593407154083252,
+ "step": 3316
+ },
+ {
+ "epoch": 46.0698995194408,
+ "grad_norm": 0.24616138637065887,
+ "learning_rate": 0.0006,
+ "loss": 3.606736898422241,
+ "step": 3317
+ },
+ {
+ "epoch": 46.083879423328966,
+ "grad_norm": 0.22210408747196198,
+ "learning_rate": 0.0006,
+ "loss": 3.59546160697937,
+ "step": 3318
+ },
+ {
+ "epoch": 46.09785932721712,
+ "grad_norm": 0.2429778128862381,
+ "learning_rate": 0.0006,
+ "loss": 3.5900321006774902,
+ "step": 3319
+ },
+ {
+ "epoch": 46.111839231105286,
+ "grad_norm": 0.22875761985778809,
+ "learning_rate": 0.0006,
+ "loss": 3.5793521404266357,
+ "step": 3320
+ },
+ {
+ "epoch": 46.12581913499345,
+ "grad_norm": 0.21508760750293732,
+ "learning_rate": 0.0006,
+ "loss": 3.5462498664855957,
+ "step": 3321
+ },
+ {
+ "epoch": 46.139799038881605,
+ "grad_norm": 0.23590944707393646,
+ "learning_rate": 0.0006,
+ "loss": 3.6247925758361816,
+ "step": 3322
+ },
+ {
+ "epoch": 46.15377894276977,
+ "grad_norm": 0.22288036346435547,
+ "learning_rate": 0.0006,
+ "loss": 3.6063995361328125,
+ "step": 3323
+ },
+ {
+ "epoch": 46.16775884665793,
+ "grad_norm": 0.20460885763168335,
+ "learning_rate": 0.0006,
+ "loss": 3.5744826793670654,
+ "step": 3324
+ },
+ {
+ "epoch": 46.18173875054609,
+ "grad_norm": 0.20172059535980225,
+ "learning_rate": 0.0006,
+ "loss": 3.5827057361602783,
+ "step": 3325
+ },
+ {
+ "epoch": 46.19571865443425,
+ "grad_norm": 0.2268448770046234,
+ "learning_rate": 0.0006,
+ "loss": 3.5801379680633545,
+ "step": 3326
+ },
+ {
+ "epoch": 46.20969855832241,
+ "grad_norm": 0.2244444191455841,
+ "learning_rate": 0.0006,
+ "loss": 3.5790224075317383,
+ "step": 3327
+ },
+ {
+ "epoch": 46.22367846221057,
+ "grad_norm": 0.20954380929470062,
+ "learning_rate": 0.0006,
+ "loss": 3.5979342460632324,
+ "step": 3328
+ },
+ {
+ "epoch": 46.237658366098735,
+ "grad_norm": 0.21395887434482574,
+ "learning_rate": 0.0006,
+ "loss": 3.6015186309814453,
+ "step": 3329
+ },
+ {
+ "epoch": 46.25163826998689,
+ "grad_norm": 0.23200181126594543,
+ "learning_rate": 0.0006,
+ "loss": 3.5904979705810547,
+ "step": 3330
+ },
+ {
+ "epoch": 46.265618173875055,
+ "grad_norm": 0.20558731257915497,
+ "learning_rate": 0.0006,
+ "loss": 3.5745811462402344,
+ "step": 3331
+ },
+ {
+ "epoch": 46.27959807776322,
+ "grad_norm": 0.1973227560520172,
+ "learning_rate": 0.0006,
+ "loss": 3.588560104370117,
+ "step": 3332
+ },
+ {
+ "epoch": 46.293577981651374,
+ "grad_norm": 0.2137945592403412,
+ "learning_rate": 0.0006,
+ "loss": 3.606064796447754,
+ "step": 3333
+ },
+ {
+ "epoch": 46.30755788553954,
+ "grad_norm": 0.2082151472568512,
+ "learning_rate": 0.0006,
+ "loss": 3.569392442703247,
+ "step": 3334
+ },
+ {
+ "epoch": 46.3215377894277,
+ "grad_norm": 0.2151029258966446,
+ "learning_rate": 0.0006,
+ "loss": 3.6016604900360107,
+ "step": 3335
+ },
+ {
+ "epoch": 46.33551769331586,
+ "grad_norm": 0.2256474643945694,
+ "learning_rate": 0.0006,
+ "loss": 3.571319580078125,
+ "step": 3336
+ },
+ {
+ "epoch": 46.34949759720402,
+ "grad_norm": 0.21454207599163055,
+ "learning_rate": 0.0006,
+ "loss": 3.6028685569763184,
+ "step": 3337
+ },
+ {
+ "epoch": 46.36347750109218,
+ "grad_norm": 0.21864144504070282,
+ "learning_rate": 0.0006,
+ "loss": 3.6146860122680664,
+ "step": 3338
+ },
+ {
+ "epoch": 46.37745740498034,
+ "grad_norm": 0.24512453377246857,
+ "learning_rate": 0.0006,
+ "loss": 3.614696502685547,
+ "step": 3339
+ },
+ {
+ "epoch": 46.391437308868504,
+ "grad_norm": 0.26355695724487305,
+ "learning_rate": 0.0006,
+ "loss": 3.6124234199523926,
+ "step": 3340
+ },
+ {
+ "epoch": 46.40541721275666,
+ "grad_norm": 0.2778678834438324,
+ "learning_rate": 0.0006,
+ "loss": 3.6075634956359863,
+ "step": 3341
+ },
+ {
+ "epoch": 46.419397116644824,
+ "grad_norm": 0.2626822292804718,
+ "learning_rate": 0.0006,
+ "loss": 3.59267520904541,
+ "step": 3342
+ },
+ {
+ "epoch": 46.43337702053299,
+ "grad_norm": 0.2211887091398239,
+ "learning_rate": 0.0006,
+ "loss": 3.606135606765747,
+ "step": 3343
+ },
+ {
+ "epoch": 46.44735692442114,
+ "grad_norm": 0.20117639005184174,
+ "learning_rate": 0.0006,
+ "loss": 3.566512107849121,
+ "step": 3344
+ },
+ {
+ "epoch": 46.46133682830931,
+ "grad_norm": 0.20202599465847015,
+ "learning_rate": 0.0006,
+ "loss": 3.603398561477661,
+ "step": 3345
+ },
+ {
+ "epoch": 46.47531673219746,
+ "grad_norm": 0.22238481044769287,
+ "learning_rate": 0.0006,
+ "loss": 3.599888324737549,
+ "step": 3346
+ },
+ {
+ "epoch": 46.489296636085626,
+ "grad_norm": 0.23298178613185883,
+ "learning_rate": 0.0006,
+ "loss": 3.6135406494140625,
+ "step": 3347
+ },
+ {
+ "epoch": 46.50327653997379,
+ "grad_norm": 0.21998152136802673,
+ "learning_rate": 0.0006,
+ "loss": 3.6022939682006836,
+ "step": 3348
+ },
+ {
+ "epoch": 46.517256443861946,
+ "grad_norm": 0.22595210373401642,
+ "learning_rate": 0.0006,
+ "loss": 3.605905532836914,
+ "step": 3349
+ },
+ {
+ "epoch": 46.53123634775011,
+ "grad_norm": 0.23549678921699524,
+ "learning_rate": 0.0006,
+ "loss": 3.606264591217041,
+ "step": 3350
+ },
+ {
+ "epoch": 46.54521625163827,
+ "grad_norm": 0.2075573205947876,
+ "learning_rate": 0.0006,
+ "loss": 3.580575942993164,
+ "step": 3351
+ },
+ {
+ "epoch": 46.55919615552643,
+ "grad_norm": 0.19052642583847046,
+ "learning_rate": 0.0006,
+ "loss": 3.618326187133789,
+ "step": 3352
+ },
+ {
+ "epoch": 46.57317605941459,
+ "grad_norm": 0.20372900366783142,
+ "learning_rate": 0.0006,
+ "loss": 3.5817952156066895,
+ "step": 3353
+ },
+ {
+ "epoch": 46.58715596330275,
+ "grad_norm": 0.20024648308753967,
+ "learning_rate": 0.0006,
+ "loss": 3.6128273010253906,
+ "step": 3354
+ },
+ {
+ "epoch": 46.60113586719091,
+ "grad_norm": 0.20892181992530823,
+ "learning_rate": 0.0006,
+ "loss": 3.6173012256622314,
+ "step": 3355
+ },
+ {
+ "epoch": 46.615115771079076,
+ "grad_norm": 0.20254571735858917,
+ "learning_rate": 0.0006,
+ "loss": 3.5924699306488037,
+ "step": 3356
+ },
+ {
+ "epoch": 46.62909567496723,
+ "grad_norm": 0.20290599763393402,
+ "learning_rate": 0.0006,
+ "loss": 3.6134514808654785,
+ "step": 3357
+ },
+ {
+ "epoch": 46.643075578855395,
+ "grad_norm": 0.23314513266086578,
+ "learning_rate": 0.0006,
+ "loss": 3.604102611541748,
+ "step": 3358
+ },
+ {
+ "epoch": 46.65705548274356,
+ "grad_norm": 0.2352486401796341,
+ "learning_rate": 0.0006,
+ "loss": 3.6210808753967285,
+ "step": 3359
+ },
+ {
+ "epoch": 46.671035386631715,
+ "grad_norm": 0.2289503663778305,
+ "learning_rate": 0.0006,
+ "loss": 3.596968650817871,
+ "step": 3360
+ },
+ {
+ "epoch": 46.68501529051988,
+ "grad_norm": 0.19971057772636414,
+ "learning_rate": 0.0006,
+ "loss": 3.5973198413848877,
+ "step": 3361
+ },
+ {
+ "epoch": 46.69899519440804,
+ "grad_norm": 0.21000619232654572,
+ "learning_rate": 0.0006,
+ "loss": 3.607048511505127,
+ "step": 3362
+ },
+ {
+ "epoch": 46.7129750982962,
+ "grad_norm": 0.22295686602592468,
+ "learning_rate": 0.0006,
+ "loss": 3.6323728561401367,
+ "step": 3363
+ },
+ {
+ "epoch": 46.72695500218436,
+ "grad_norm": 0.21939052641391754,
+ "learning_rate": 0.0006,
+ "loss": 3.6073317527770996,
+ "step": 3364
+ },
+ {
+ "epoch": 46.74093490607252,
+ "grad_norm": 0.2192271202802658,
+ "learning_rate": 0.0006,
+ "loss": 3.6396851539611816,
+ "step": 3365
+ },
+ {
+ "epoch": 46.75491480996068,
+ "grad_norm": 0.20871607959270477,
+ "learning_rate": 0.0006,
+ "loss": 3.613509178161621,
+ "step": 3366
+ },
+ {
+ "epoch": 46.768894713848844,
+ "grad_norm": 0.1837828904390335,
+ "learning_rate": 0.0006,
+ "loss": 3.604039192199707,
+ "step": 3367
+ },
+ {
+ "epoch": 46.782874617737,
+ "grad_norm": 0.1904219537973404,
+ "learning_rate": 0.0006,
+ "loss": 3.6065895557403564,
+ "step": 3368
+ },
+ {
+ "epoch": 46.796854521625164,
+ "grad_norm": 0.19873572885990143,
+ "learning_rate": 0.0006,
+ "loss": 3.5927226543426514,
+ "step": 3369
+ },
+ {
+ "epoch": 46.81083442551333,
+ "grad_norm": 0.18319591879844666,
+ "learning_rate": 0.0006,
+ "loss": 3.6114919185638428,
+ "step": 3370
+ },
+ {
+ "epoch": 46.824814329401484,
+ "grad_norm": 0.19832435250282288,
+ "learning_rate": 0.0006,
+ "loss": 3.613637924194336,
+ "step": 3371
+ },
+ {
+ "epoch": 46.83879423328965,
+ "grad_norm": 0.21506333351135254,
+ "learning_rate": 0.0006,
+ "loss": 3.6116209030151367,
+ "step": 3372
+ },
+ {
+ "epoch": 46.8527741371778,
+ "grad_norm": 0.20374484360218048,
+ "learning_rate": 0.0006,
+ "loss": 3.5923004150390625,
+ "step": 3373
+ },
+ {
+ "epoch": 46.86675404106597,
+ "grad_norm": 0.19743360579013824,
+ "learning_rate": 0.0006,
+ "loss": 3.599381685256958,
+ "step": 3374
+ },
+ {
+ "epoch": 46.88073394495413,
+ "grad_norm": 0.20996616780757904,
+ "learning_rate": 0.0006,
+ "loss": 3.624969959259033,
+ "step": 3375
+ },
+ {
+ "epoch": 46.89471384884229,
+ "grad_norm": 0.22336791455745697,
+ "learning_rate": 0.0006,
+ "loss": 3.6152467727661133,
+ "step": 3376
+ },
+ {
+ "epoch": 46.90869375273045,
+ "grad_norm": 0.2337532341480255,
+ "learning_rate": 0.0006,
+ "loss": 3.6198863983154297,
+ "step": 3377
+ },
+ {
+ "epoch": 46.92267365661861,
+ "grad_norm": 0.23823462426662445,
+ "learning_rate": 0.0006,
+ "loss": 3.6411237716674805,
+ "step": 3378
+ },
+ {
+ "epoch": 46.93665356050677,
+ "grad_norm": 0.2521338164806366,
+ "learning_rate": 0.0006,
+ "loss": 3.621544122695923,
+ "step": 3379
+ },
+ {
+ "epoch": 46.95063346439493,
+ "grad_norm": 0.253682941198349,
+ "learning_rate": 0.0006,
+ "loss": 3.6570887565612793,
+ "step": 3380
+ },
+ {
+ "epoch": 46.964613368283096,
+ "grad_norm": 0.23392300307750702,
+ "learning_rate": 0.0006,
+ "loss": 3.669538974761963,
+ "step": 3381
+ },
+ {
+ "epoch": 46.97859327217125,
+ "grad_norm": 0.2154092937707901,
+ "learning_rate": 0.0006,
+ "loss": 3.6184825897216797,
+ "step": 3382
+ },
+ {
+ "epoch": 46.992573176059416,
+ "grad_norm": 0.1909833699464798,
+ "learning_rate": 0.0006,
+ "loss": 3.647658348083496,
+ "step": 3383
+ },
+ {
+ "epoch": 47.0,
+ "grad_norm": 0.2226407378911972,
+ "learning_rate": 0.0006,
+ "loss": 3.6413815021514893,
+ "step": 3384
+ },
+ {
+ "epoch": 47.0,
+ "eval_loss": 3.98313570022583,
+ "eval_runtime": 44.7152,
+ "eval_samples_per_second": 54.612,
+ "eval_steps_per_second": 3.422,
+ "step": 3384
+ },
+ {
+ "epoch": 47.01397990388816,
+ "grad_norm": 0.20830968022346497,
+ "learning_rate": 0.0006,
+ "loss": 3.5652623176574707,
+ "step": 3385
+ },
+ {
+ "epoch": 47.02795980777632,
+ "grad_norm": 0.18953651189804077,
+ "learning_rate": 0.0006,
+ "loss": 3.570180654525757,
+ "step": 3386
+ },
+ {
+ "epoch": 47.04193971166448,
+ "grad_norm": 0.20167700946331024,
+ "learning_rate": 0.0006,
+ "loss": 3.5623056888580322,
+ "step": 3387
+ },
+ {
+ "epoch": 47.05591961555265,
+ "grad_norm": 0.21554343402385712,
+ "learning_rate": 0.0006,
+ "loss": 3.549492835998535,
+ "step": 3388
+ },
+ {
+ "epoch": 47.0698995194408,
+ "grad_norm": 0.2232149988412857,
+ "learning_rate": 0.0006,
+ "loss": 3.584181785583496,
+ "step": 3389
+ },
+ {
+ "epoch": 47.083879423328966,
+ "grad_norm": 0.23489049077033997,
+ "learning_rate": 0.0006,
+ "loss": 3.581028461456299,
+ "step": 3390
+ },
+ {
+ "epoch": 47.09785932721712,
+ "grad_norm": 0.22486020624637604,
+ "learning_rate": 0.0006,
+ "loss": 3.600348949432373,
+ "step": 3391
+ },
+ {
+ "epoch": 47.111839231105286,
+ "grad_norm": 0.22932346165180206,
+ "learning_rate": 0.0006,
+ "loss": 3.5600457191467285,
+ "step": 3392
+ },
+ {
+ "epoch": 47.12581913499345,
+ "grad_norm": 0.2179419994354248,
+ "learning_rate": 0.0006,
+ "loss": 3.560136079788208,
+ "step": 3393
+ },
+ {
+ "epoch": 47.139799038881605,
+ "grad_norm": 0.2438054382801056,
+ "learning_rate": 0.0006,
+ "loss": 3.5955698490142822,
+ "step": 3394
+ },
+ {
+ "epoch": 47.15377894276977,
+ "grad_norm": 0.2652001976966858,
+ "learning_rate": 0.0006,
+ "loss": 3.5942912101745605,
+ "step": 3395
+ },
+ {
+ "epoch": 47.16775884665793,
+ "grad_norm": 0.270924836397171,
+ "learning_rate": 0.0006,
+ "loss": 3.5733351707458496,
+ "step": 3396
+ },
+ {
+ "epoch": 47.18173875054609,
+ "grad_norm": 0.28365132212638855,
+ "learning_rate": 0.0006,
+ "loss": 3.6042075157165527,
+ "step": 3397
+ },
+ {
+ "epoch": 47.19571865443425,
+ "grad_norm": 0.29530975222587585,
+ "learning_rate": 0.0006,
+ "loss": 3.588935375213623,
+ "step": 3398
+ },
+ {
+ "epoch": 47.20969855832241,
+ "grad_norm": 0.2658918797969818,
+ "learning_rate": 0.0006,
+ "loss": 3.5944671630859375,
+ "step": 3399
+ },
+ {
+ "epoch": 47.22367846221057,
+ "grad_norm": 0.24076500535011292,
+ "learning_rate": 0.0006,
+ "loss": 3.5853185653686523,
+ "step": 3400
+ },
+ {
+ "epoch": 47.237658366098735,
+ "grad_norm": 0.23032112419605255,
+ "learning_rate": 0.0006,
+ "loss": 3.620483875274658,
+ "step": 3401
+ },
+ {
+ "epoch": 47.25163826998689,
+ "grad_norm": 0.23124775290489197,
+ "learning_rate": 0.0006,
+ "loss": 3.6032004356384277,
+ "step": 3402
+ },
+ {
+ "epoch": 47.265618173875055,
+ "grad_norm": 0.21960225701332092,
+ "learning_rate": 0.0006,
+ "loss": 3.6079649925231934,
+ "step": 3403
+ },
+ {
+ "epoch": 47.27959807776322,
+ "grad_norm": 0.236652672290802,
+ "learning_rate": 0.0006,
+ "loss": 3.582645893096924,
+ "step": 3404
+ },
+ {
+ "epoch": 47.293577981651374,
+ "grad_norm": 0.2600267231464386,
+ "learning_rate": 0.0006,
+ "loss": 3.6067757606506348,
+ "step": 3405
+ },
+ {
+ "epoch": 47.30755788553954,
+ "grad_norm": 0.2337152659893036,
+ "learning_rate": 0.0006,
+ "loss": 3.5912275314331055,
+ "step": 3406
+ },
+ {
+ "epoch": 47.3215377894277,
+ "grad_norm": 0.21887873113155365,
+ "learning_rate": 0.0006,
+ "loss": 3.6008896827697754,
+ "step": 3407
+ },
+ {
+ "epoch": 47.33551769331586,
+ "grad_norm": 0.20265911519527435,
+ "learning_rate": 0.0006,
+ "loss": 3.5820152759552,
+ "step": 3408
+ },
+ {
+ "epoch": 47.34949759720402,
+ "grad_norm": 0.2005501389503479,
+ "learning_rate": 0.0006,
+ "loss": 3.604556083679199,
+ "step": 3409
+ },
+ {
+ "epoch": 47.36347750109218,
+ "grad_norm": 0.20682275295257568,
+ "learning_rate": 0.0006,
+ "loss": 3.584531307220459,
+ "step": 3410
+ },
+ {
+ "epoch": 47.37745740498034,
+ "grad_norm": 0.23283354938030243,
+ "learning_rate": 0.0006,
+ "loss": 3.59186053276062,
+ "step": 3411
+ },
+ {
+ "epoch": 47.391437308868504,
+ "grad_norm": 0.23033356666564941,
+ "learning_rate": 0.0006,
+ "loss": 3.5944037437438965,
+ "step": 3412
+ },
+ {
+ "epoch": 47.40541721275666,
+ "grad_norm": 0.21714402735233307,
+ "learning_rate": 0.0006,
+ "loss": 3.5834851264953613,
+ "step": 3413
+ },
+ {
+ "epoch": 47.419397116644824,
+ "grad_norm": 0.2138672024011612,
+ "learning_rate": 0.0006,
+ "loss": 3.6313700675964355,
+ "step": 3414
+ },
+ {
+ "epoch": 47.43337702053299,
+ "grad_norm": 0.23200160264968872,
+ "learning_rate": 0.0006,
+ "loss": 3.6112399101257324,
+ "step": 3415
+ },
+ {
+ "epoch": 47.44735692442114,
+ "grad_norm": 0.2632092833518982,
+ "learning_rate": 0.0006,
+ "loss": 3.6099038124084473,
+ "step": 3416
+ },
+ {
+ "epoch": 47.46133682830931,
+ "grad_norm": 0.23115520179271698,
+ "learning_rate": 0.0006,
+ "loss": 3.6060497760772705,
+ "step": 3417
+ },
+ {
+ "epoch": 47.47531673219746,
+ "grad_norm": 0.2596223056316376,
+ "learning_rate": 0.0006,
+ "loss": 3.5749685764312744,
+ "step": 3418
+ },
+ {
+ "epoch": 47.489296636085626,
+ "grad_norm": 0.27893415093421936,
+ "learning_rate": 0.0006,
+ "loss": 3.584045886993408,
+ "step": 3419
+ },
+ {
+ "epoch": 47.50327653997379,
+ "grad_norm": 0.23112469911575317,
+ "learning_rate": 0.0006,
+ "loss": 3.595407485961914,
+ "step": 3420
+ },
+ {
+ "epoch": 47.517256443861946,
+ "grad_norm": 0.23562486469745636,
+ "learning_rate": 0.0006,
+ "loss": 3.5657241344451904,
+ "step": 3421
+ },
+ {
+ "epoch": 47.53123634775011,
+ "grad_norm": 0.23366105556488037,
+ "learning_rate": 0.0006,
+ "loss": 3.624885082244873,
+ "step": 3422
+ },
+ {
+ "epoch": 47.54521625163827,
+ "grad_norm": 0.24383248388767242,
+ "learning_rate": 0.0006,
+ "loss": 3.638352394104004,
+ "step": 3423
+ },
+ {
+ "epoch": 47.55919615552643,
+ "grad_norm": 0.26388120651245117,
+ "learning_rate": 0.0006,
+ "loss": 3.614579200744629,
+ "step": 3424
+ },
+ {
+ "epoch": 47.57317605941459,
+ "grad_norm": 0.23676545917987823,
+ "learning_rate": 0.0006,
+ "loss": 3.609004259109497,
+ "step": 3425
+ },
+ {
+ "epoch": 47.58715596330275,
+ "grad_norm": 0.227967768907547,
+ "learning_rate": 0.0006,
+ "loss": 3.626171827316284,
+ "step": 3426
+ },
+ {
+ "epoch": 47.60113586719091,
+ "grad_norm": 0.23786529898643494,
+ "learning_rate": 0.0006,
+ "loss": 3.6205172538757324,
+ "step": 3427
+ },
+ {
+ "epoch": 47.615115771079076,
+ "grad_norm": 0.2599100172519684,
+ "learning_rate": 0.0006,
+ "loss": 3.6178271770477295,
+ "step": 3428
+ },
+ {
+ "epoch": 47.62909567496723,
+ "grad_norm": 0.2591858208179474,
+ "learning_rate": 0.0006,
+ "loss": 3.600297451019287,
+ "step": 3429
+ },
+ {
+ "epoch": 47.643075578855395,
+ "grad_norm": 0.2234215885400772,
+ "learning_rate": 0.0006,
+ "loss": 3.623141288757324,
+ "step": 3430
+ },
+ {
+ "epoch": 47.65705548274356,
+ "grad_norm": 0.23395098745822906,
+ "learning_rate": 0.0006,
+ "loss": 3.6243159770965576,
+ "step": 3431
+ },
+ {
+ "epoch": 47.671035386631715,
+ "grad_norm": 0.25706854462623596,
+ "learning_rate": 0.0006,
+ "loss": 3.5933618545532227,
+ "step": 3432
+ },
+ {
+ "epoch": 47.68501529051988,
+ "grad_norm": 0.22468037903308868,
+ "learning_rate": 0.0006,
+ "loss": 3.6048693656921387,
+ "step": 3433
+ },
+ {
+ "epoch": 47.69899519440804,
+ "grad_norm": 0.22432644665241241,
+ "learning_rate": 0.0006,
+ "loss": 3.604891777038574,
+ "step": 3434
+ },
+ {
+ "epoch": 47.7129750982962,
+ "grad_norm": 0.2278960943222046,
+ "learning_rate": 0.0006,
+ "loss": 3.610567092895508,
+ "step": 3435
+ },
+ {
+ "epoch": 47.72695500218436,
+ "grad_norm": 0.20652735233306885,
+ "learning_rate": 0.0006,
+ "loss": 3.60245418548584,
+ "step": 3436
+ },
+ {
+ "epoch": 47.74093490607252,
+ "grad_norm": 0.2141297310590744,
+ "learning_rate": 0.0006,
+ "loss": 3.5712027549743652,
+ "step": 3437
+ },
+ {
+ "epoch": 47.75491480996068,
+ "grad_norm": 0.23282566666603088,
+ "learning_rate": 0.0006,
+ "loss": 3.573568820953369,
+ "step": 3438
+ },
+ {
+ "epoch": 47.768894713848844,
+ "grad_norm": 0.21718674898147583,
+ "learning_rate": 0.0006,
+ "loss": 3.602047920227051,
+ "step": 3439
+ },
+ {
+ "epoch": 47.782874617737,
+ "grad_norm": 0.19592095911502838,
+ "learning_rate": 0.0006,
+ "loss": 3.6046957969665527,
+ "step": 3440
+ },
+ {
+ "epoch": 47.796854521625164,
+ "grad_norm": 0.21548260748386383,
+ "learning_rate": 0.0006,
+ "loss": 3.5808444023132324,
+ "step": 3441
+ },
+ {
+ "epoch": 47.81083442551333,
+ "grad_norm": 0.21945662796497345,
+ "learning_rate": 0.0006,
+ "loss": 3.6044554710388184,
+ "step": 3442
+ },
+ {
+ "epoch": 47.824814329401484,
+ "grad_norm": 0.20777440071105957,
+ "learning_rate": 0.0006,
+ "loss": 3.5991361141204834,
+ "step": 3443
+ },
+ {
+ "epoch": 47.83879423328965,
+ "grad_norm": 0.21566642820835114,
+ "learning_rate": 0.0006,
+ "loss": 3.6272850036621094,
+ "step": 3444
+ },
+ {
+ "epoch": 47.8527741371778,
+ "grad_norm": 0.22365771234035492,
+ "learning_rate": 0.0006,
+ "loss": 3.6323323249816895,
+ "step": 3445
+ },
+ {
+ "epoch": 47.86675404106597,
+ "grad_norm": 0.20193088054656982,
+ "learning_rate": 0.0006,
+ "loss": 3.5938191413879395,
+ "step": 3446
+ },
+ {
+ "epoch": 47.88073394495413,
+ "grad_norm": 0.20968061685562134,
+ "learning_rate": 0.0006,
+ "loss": 3.616640329360962,
+ "step": 3447
+ },
+ {
+ "epoch": 47.89471384884229,
+ "grad_norm": 0.20275580883026123,
+ "learning_rate": 0.0006,
+ "loss": 3.5769052505493164,
+ "step": 3448
+ },
+ {
+ "epoch": 47.90869375273045,
+ "grad_norm": 0.237605020403862,
+ "learning_rate": 0.0006,
+ "loss": 3.6221203804016113,
+ "step": 3449
+ },
+ {
+ "epoch": 47.92267365661861,
+ "grad_norm": 0.2820972502231598,
+ "learning_rate": 0.0006,
+ "loss": 3.5977487564086914,
+ "step": 3450
+ },
+ {
+ "epoch": 47.93665356050677,
+ "grad_norm": 0.23722891509532928,
+ "learning_rate": 0.0006,
+ "loss": 3.5963053703308105,
+ "step": 3451
+ },
+ {
+ "epoch": 47.95063346439493,
+ "grad_norm": 0.21471276879310608,
+ "learning_rate": 0.0006,
+ "loss": 3.6234917640686035,
+ "step": 3452
+ },
+ {
+ "epoch": 47.964613368283096,
+ "grad_norm": 0.2139028012752533,
+ "learning_rate": 0.0006,
+ "loss": 3.640500545501709,
+ "step": 3453
+ },
+ {
+ "epoch": 47.97859327217125,
+ "grad_norm": 0.1966913342475891,
+ "learning_rate": 0.0006,
+ "loss": 3.5856776237487793,
+ "step": 3454
+ },
+ {
+ "epoch": 47.992573176059416,
+ "grad_norm": 0.2375730276107788,
+ "learning_rate": 0.0006,
+ "loss": 3.6126937866210938,
+ "step": 3455
+ },
+ {
+ "epoch": 48.0,
+ "grad_norm": 0.2772855758666992,
+ "learning_rate": 0.0006,
+ "loss": 3.6041951179504395,
+ "step": 3456
+ },
+ {
+ "epoch": 48.0,
+ "eval_loss": 3.971400499343872,
+ "eval_runtime": 45.4792,
+ "eval_samples_per_second": 53.695,
+ "eval_steps_per_second": 3.364,
+ "step": 3456
+ },
+ {
+ "epoch": 48.01397990388816,
+ "grad_norm": 0.2269497811794281,
+ "learning_rate": 0.0006,
+ "loss": 3.525441884994507,
+ "step": 3457
+ },
+ {
+ "epoch": 48.02795980777632,
+ "grad_norm": 0.2080184519290924,
+ "learning_rate": 0.0006,
+ "loss": 3.5727145671844482,
+ "step": 3458
+ },
+ {
+ "epoch": 48.04193971166448,
+ "grad_norm": 0.21827049553394318,
+ "learning_rate": 0.0006,
+ "loss": 3.5799875259399414,
+ "step": 3459
+ },
+ {
+ "epoch": 48.05591961555265,
+ "grad_norm": 0.2173643410205841,
+ "learning_rate": 0.0006,
+ "loss": 3.587097406387329,
+ "step": 3460
+ },
+ {
+ "epoch": 48.0698995194408,
+ "grad_norm": 0.23125280439853668,
+ "learning_rate": 0.0006,
+ "loss": 3.593235969543457,
+ "step": 3461
+ },
+ {
+ "epoch": 48.083879423328966,
+ "grad_norm": 0.2235819697380066,
+ "learning_rate": 0.0006,
+ "loss": 3.5724973678588867,
+ "step": 3462
+ },
+ {
+ "epoch": 48.09785932721712,
+ "grad_norm": 0.2329849898815155,
+ "learning_rate": 0.0006,
+ "loss": 3.5689549446105957,
+ "step": 3463
+ },
+ {
+ "epoch": 48.111839231105286,
+ "grad_norm": 0.21178825199604034,
+ "learning_rate": 0.0006,
+ "loss": 3.5522305965423584,
+ "step": 3464
+ },
+ {
+ "epoch": 48.12581913499345,
+ "grad_norm": 0.22026701271533966,
+ "learning_rate": 0.0006,
+ "loss": 3.5622801780700684,
+ "step": 3465
+ },
+ {
+ "epoch": 48.139799038881605,
+ "grad_norm": 0.23427478969097137,
+ "learning_rate": 0.0006,
+ "loss": 3.6076972484588623,
+ "step": 3466
+ },
+ {
+ "epoch": 48.15377894276977,
+ "grad_norm": 0.22437651455402374,
+ "learning_rate": 0.0006,
+ "loss": 3.5898380279541016,
+ "step": 3467
+ },
+ {
+ "epoch": 48.16775884665793,
+ "grad_norm": 0.22911588847637177,
+ "learning_rate": 0.0006,
+ "loss": 3.584866523742676,
+ "step": 3468
+ },
+ {
+ "epoch": 48.18173875054609,
+ "grad_norm": 0.21358130872249603,
+ "learning_rate": 0.0006,
+ "loss": 3.581397533416748,
+ "step": 3469
+ },
+ {
+ "epoch": 48.19571865443425,
+ "grad_norm": 0.2102762758731842,
+ "learning_rate": 0.0006,
+ "loss": 3.6218419075012207,
+ "step": 3470
+ },
+ {
+ "epoch": 48.20969855832241,
+ "grad_norm": 0.22417177259922028,
+ "learning_rate": 0.0006,
+ "loss": 3.5875539779663086,
+ "step": 3471
+ },
+ {
+ "epoch": 48.22367846221057,
+ "grad_norm": 0.2096744030714035,
+ "learning_rate": 0.0006,
+ "loss": 3.6017215251922607,
+ "step": 3472
+ },
+ {
+ "epoch": 48.237658366098735,
+ "grad_norm": 0.18693844974040985,
+ "learning_rate": 0.0006,
+ "loss": 3.590221405029297,
+ "step": 3473
+ },
+ {
+ "epoch": 48.25163826998689,
+ "grad_norm": 0.21102994680404663,
+ "learning_rate": 0.0006,
+ "loss": 3.5685019493103027,
+ "step": 3474
+ },
+ {
+ "epoch": 48.265618173875055,
+ "grad_norm": 0.20756356418132782,
+ "learning_rate": 0.0006,
+ "loss": 3.577427387237549,
+ "step": 3475
+ },
+ {
+ "epoch": 48.27959807776322,
+ "grad_norm": 0.20425064861774445,
+ "learning_rate": 0.0006,
+ "loss": 3.602522134780884,
+ "step": 3476
+ },
+ {
+ "epoch": 48.293577981651374,
+ "grad_norm": 0.1976020187139511,
+ "learning_rate": 0.0006,
+ "loss": 3.5847134590148926,
+ "step": 3477
+ },
+ {
+ "epoch": 48.30755788553954,
+ "grad_norm": 0.19685129821300507,
+ "learning_rate": 0.0006,
+ "loss": 3.5638442039489746,
+ "step": 3478
+ },
+ {
+ "epoch": 48.3215377894277,
+ "grad_norm": 0.19657646119594574,
+ "learning_rate": 0.0006,
+ "loss": 3.5669779777526855,
+ "step": 3479
+ },
+ {
+ "epoch": 48.33551769331586,
+ "grad_norm": 0.19855819642543793,
+ "learning_rate": 0.0006,
+ "loss": 3.5712571144104004,
+ "step": 3480
+ },
+ {
+ "epoch": 48.34949759720402,
+ "grad_norm": 0.19961503148078918,
+ "learning_rate": 0.0006,
+ "loss": 3.5869312286376953,
+ "step": 3481
+ },
+ {
+ "epoch": 48.36347750109218,
+ "grad_norm": 0.19302639365196228,
+ "learning_rate": 0.0006,
+ "loss": 3.571394920349121,
+ "step": 3482
+ },
+ {
+ "epoch": 48.37745740498034,
+ "grad_norm": 0.1953866183757782,
+ "learning_rate": 0.0006,
+ "loss": 3.556633234024048,
+ "step": 3483
+ },
+ {
+ "epoch": 48.391437308868504,
+ "grad_norm": 0.20028206706047058,
+ "learning_rate": 0.0006,
+ "loss": 3.5559535026550293,
+ "step": 3484
+ },
+ {
+ "epoch": 48.40541721275666,
+ "grad_norm": 0.2286558896303177,
+ "learning_rate": 0.0006,
+ "loss": 3.6052510738372803,
+ "step": 3485
+ },
+ {
+ "epoch": 48.419397116644824,
+ "grad_norm": 0.21764399111270905,
+ "learning_rate": 0.0006,
+ "loss": 3.5955848693847656,
+ "step": 3486
+ },
+ {
+ "epoch": 48.43337702053299,
+ "grad_norm": 0.2257501780986786,
+ "learning_rate": 0.0006,
+ "loss": 3.586179256439209,
+ "step": 3487
+ },
+ {
+ "epoch": 48.44735692442114,
+ "grad_norm": 0.23023653030395508,
+ "learning_rate": 0.0006,
+ "loss": 3.593329906463623,
+ "step": 3488
+ },
+ {
+ "epoch": 48.46133682830931,
+ "grad_norm": 0.21283918619155884,
+ "learning_rate": 0.0006,
+ "loss": 3.5909814834594727,
+ "step": 3489
+ },
+ {
+ "epoch": 48.47531673219746,
+ "grad_norm": 0.2143639773130417,
+ "learning_rate": 0.0006,
+ "loss": 3.61320161819458,
+ "step": 3490
+ },
+ {
+ "epoch": 48.489296636085626,
+ "grad_norm": 0.2138844132423401,
+ "learning_rate": 0.0006,
+ "loss": 3.556607246398926,
+ "step": 3491
+ },
+ {
+ "epoch": 48.50327653997379,
+ "grad_norm": 0.22122617065906525,
+ "learning_rate": 0.0006,
+ "loss": 3.629208564758301,
+ "step": 3492
+ },
+ {
+ "epoch": 48.517256443861946,
+ "grad_norm": 0.22430218756198883,
+ "learning_rate": 0.0006,
+ "loss": 3.61891508102417,
+ "step": 3493
+ },
+ {
+ "epoch": 48.53123634775011,
+ "grad_norm": 0.23830844461917877,
+ "learning_rate": 0.0006,
+ "loss": 3.5818424224853516,
+ "step": 3494
+ },
+ {
+ "epoch": 48.54521625163827,
+ "grad_norm": 0.23596757650375366,
+ "learning_rate": 0.0006,
+ "loss": 3.609959602355957,
+ "step": 3495
+ },
+ {
+ "epoch": 48.55919615552643,
+ "grad_norm": 0.22046151757240295,
+ "learning_rate": 0.0006,
+ "loss": 3.585991382598877,
+ "step": 3496
+ },
+ {
+ "epoch": 48.57317605941459,
+ "grad_norm": 0.22838662564754486,
+ "learning_rate": 0.0006,
+ "loss": 3.6047747135162354,
+ "step": 3497
+ },
+ {
+ "epoch": 48.58715596330275,
+ "grad_norm": 0.22605256736278534,
+ "learning_rate": 0.0006,
+ "loss": 3.584585428237915,
+ "step": 3498
+ },
+ {
+ "epoch": 48.60113586719091,
+ "grad_norm": 0.22761467099189758,
+ "learning_rate": 0.0006,
+ "loss": 3.5680465698242188,
+ "step": 3499
+ },
+ {
+ "epoch": 48.615115771079076,
+ "grad_norm": 0.20537005364894867,
+ "learning_rate": 0.0006,
+ "loss": 3.5822806358337402,
+ "step": 3500
+ },
+ {
+ "epoch": 48.62909567496723,
+ "grad_norm": 0.21871088445186615,
+ "learning_rate": 0.0006,
+ "loss": 3.5643906593322754,
+ "step": 3501
+ },
+ {
+ "epoch": 48.643075578855395,
+ "grad_norm": 0.2291785329580307,
+ "learning_rate": 0.0006,
+ "loss": 3.6313328742980957,
+ "step": 3502
+ },
+ {
+ "epoch": 48.65705548274356,
+ "grad_norm": 0.2437039464712143,
+ "learning_rate": 0.0006,
+ "loss": 3.588334083557129,
+ "step": 3503
+ },
+ {
+ "epoch": 48.671035386631715,
+ "grad_norm": 0.23070715367794037,
+ "learning_rate": 0.0006,
+ "loss": 3.611356258392334,
+ "step": 3504
+ },
+ {
+ "epoch": 48.68501529051988,
+ "grad_norm": 0.23983895778656006,
+ "learning_rate": 0.0006,
+ "loss": 3.5953967571258545,
+ "step": 3505
+ },
+ {
+ "epoch": 48.69899519440804,
+ "grad_norm": 0.2283167690038681,
+ "learning_rate": 0.0006,
+ "loss": 3.605307102203369,
+ "step": 3506
+ },
+ {
+ "epoch": 48.7129750982962,
+ "grad_norm": 0.20861059427261353,
+ "learning_rate": 0.0006,
+ "loss": 3.598266363143921,
+ "step": 3507
+ },
+ {
+ "epoch": 48.72695500218436,
+ "grad_norm": 0.20209547877311707,
+ "learning_rate": 0.0006,
+ "loss": 3.6022191047668457,
+ "step": 3508
+ },
+ {
+ "epoch": 48.74093490607252,
+ "grad_norm": 0.19089370965957642,
+ "learning_rate": 0.0006,
+ "loss": 3.628640651702881,
+ "step": 3509
+ },
+ {
+ "epoch": 48.75491480996068,
+ "grad_norm": 0.18544727563858032,
+ "learning_rate": 0.0006,
+ "loss": 3.6204819679260254,
+ "step": 3510
+ },
+ {
+ "epoch": 48.768894713848844,
+ "grad_norm": 0.18295186758041382,
+ "learning_rate": 0.0006,
+ "loss": 3.5899410247802734,
+ "step": 3511
+ },
+ {
+ "epoch": 48.782874617737,
+ "grad_norm": 0.1953844279050827,
+ "learning_rate": 0.0006,
+ "loss": 3.581699848175049,
+ "step": 3512
+ },
+ {
+ "epoch": 48.796854521625164,
+ "grad_norm": 0.195505291223526,
+ "learning_rate": 0.0006,
+ "loss": 3.6046862602233887,
+ "step": 3513
+ },
+ {
+ "epoch": 48.81083442551333,
+ "grad_norm": 0.19805945456027985,
+ "learning_rate": 0.0006,
+ "loss": 3.609510898590088,
+ "step": 3514
+ },
+ {
+ "epoch": 48.824814329401484,
+ "grad_norm": 0.18694287538528442,
+ "learning_rate": 0.0006,
+ "loss": 3.580693483352661,
+ "step": 3515
+ },
+ {
+ "epoch": 48.83879423328965,
+ "grad_norm": 0.19227269291877747,
+ "learning_rate": 0.0006,
+ "loss": 3.6174416542053223,
+ "step": 3516
+ },
+ {
+ "epoch": 48.8527741371778,
+ "grad_norm": 0.1966937631368637,
+ "learning_rate": 0.0006,
+ "loss": 3.616194248199463,
+ "step": 3517
+ },
+ {
+ "epoch": 48.86675404106597,
+ "grad_norm": 0.20755162835121155,
+ "learning_rate": 0.0006,
+ "loss": 3.594695568084717,
+ "step": 3518
+ },
+ {
+ "epoch": 48.88073394495413,
+ "grad_norm": 0.2012479156255722,
+ "learning_rate": 0.0006,
+ "loss": 3.6069273948669434,
+ "step": 3519
+ },
+ {
+ "epoch": 48.89471384884229,
+ "grad_norm": 0.19260065257549286,
+ "learning_rate": 0.0006,
+ "loss": 3.573819160461426,
+ "step": 3520
+ },
+ {
+ "epoch": 48.90869375273045,
+ "grad_norm": 0.19911104440689087,
+ "learning_rate": 0.0006,
+ "loss": 3.632185459136963,
+ "step": 3521
+ },
+ {
+ "epoch": 48.92267365661861,
+ "grad_norm": 0.22266048192977905,
+ "learning_rate": 0.0006,
+ "loss": 3.607295513153076,
+ "step": 3522
+ },
+ {
+ "epoch": 48.93665356050677,
+ "grad_norm": 0.2542882561683655,
+ "learning_rate": 0.0006,
+ "loss": 3.6014773845672607,
+ "step": 3523
+ },
+ {
+ "epoch": 48.95063346439493,
+ "grad_norm": 0.2878575026988983,
+ "learning_rate": 0.0006,
+ "loss": 3.5825531482696533,
+ "step": 3524
+ },
+ {
+ "epoch": 48.964613368283096,
+ "grad_norm": 0.3157055675983429,
+ "learning_rate": 0.0006,
+ "loss": 3.5986037254333496,
+ "step": 3525
+ },
+ {
+ "epoch": 48.97859327217125,
+ "grad_norm": 0.2815262973308563,
+ "learning_rate": 0.0006,
+ "loss": 3.6099600791931152,
+ "step": 3526
+ },
+ {
+ "epoch": 48.992573176059416,
+ "grad_norm": 0.22102823853492737,
+ "learning_rate": 0.0006,
+ "loss": 3.5859827995300293,
+ "step": 3527
+ },
+ {
+ "epoch": 49.0,
+ "grad_norm": 0.24937094748020172,
+ "learning_rate": 0.0006,
+ "loss": 3.622842311859131,
+ "step": 3528
+ },
+ {
+ "epoch": 49.0,
+ "eval_loss": 3.977067232131958,
+ "eval_runtime": 45.5503,
+ "eval_samples_per_second": 53.611,
+ "eval_steps_per_second": 3.359,
+ "step": 3528
+ },
+ {
+ "epoch": 49.01397990388816,
+ "grad_norm": 0.25072216987609863,
+ "learning_rate": 0.0006,
+ "loss": 3.590653419494629,
+ "step": 3529
+ },
+ {
+ "epoch": 49.02795980777632,
+ "grad_norm": 0.2611052989959717,
+ "learning_rate": 0.0006,
+ "loss": 3.5504279136657715,
+ "step": 3530
+ },
+ {
+ "epoch": 49.04193971166448,
+ "grad_norm": 0.2547961473464966,
+ "learning_rate": 0.0006,
+ "loss": 3.5797581672668457,
+ "step": 3531
+ },
+ {
+ "epoch": 49.05591961555265,
+ "grad_norm": 0.25674310326576233,
+ "learning_rate": 0.0006,
+ "loss": 3.557278871536255,
+ "step": 3532
+ },
+ {
+ "epoch": 49.0698995194408,
+ "grad_norm": 0.25511929392814636,
+ "learning_rate": 0.0006,
+ "loss": 3.5788025856018066,
+ "step": 3533
+ },
+ {
+ "epoch": 49.083879423328966,
+ "grad_norm": 0.22920994460582733,
+ "learning_rate": 0.0006,
+ "loss": 3.580489158630371,
+ "step": 3534
+ },
+ {
+ "epoch": 49.09785932721712,
+ "grad_norm": 0.23436492681503296,
+ "learning_rate": 0.0006,
+ "loss": 3.5603699684143066,
+ "step": 3535
+ },
+ {
+ "epoch": 49.111839231105286,
+ "grad_norm": 0.2542382776737213,
+ "learning_rate": 0.0006,
+ "loss": 3.5937037467956543,
+ "step": 3536
+ },
+ {
+ "epoch": 49.12581913499345,
+ "grad_norm": 0.26718273758888245,
+ "learning_rate": 0.0006,
+ "loss": 3.6032168865203857,
+ "step": 3537
+ },
+ {
+ "epoch": 49.139799038881605,
+ "grad_norm": 0.2406773865222931,
+ "learning_rate": 0.0006,
+ "loss": 3.5737085342407227,
+ "step": 3538
+ },
+ {
+ "epoch": 49.15377894276977,
+ "grad_norm": 0.23408754169940948,
+ "learning_rate": 0.0006,
+ "loss": 3.592543601989746,
+ "step": 3539
+ },
+ {
+ "epoch": 49.16775884665793,
+ "grad_norm": 0.22974351048469543,
+ "learning_rate": 0.0006,
+ "loss": 3.543618679046631,
+ "step": 3540
+ },
+ {
+ "epoch": 49.18173875054609,
+ "grad_norm": 0.23479530215263367,
+ "learning_rate": 0.0006,
+ "loss": 3.547590732574463,
+ "step": 3541
+ },
+ {
+ "epoch": 49.19571865443425,
+ "grad_norm": 0.2100638598203659,
+ "learning_rate": 0.0006,
+ "loss": 3.6027469635009766,
+ "step": 3542
+ },
+ {
+ "epoch": 49.20969855832241,
+ "grad_norm": 0.20239035785198212,
+ "learning_rate": 0.0006,
+ "loss": 3.598567008972168,
+ "step": 3543
+ },
+ {
+ "epoch": 49.22367846221057,
+ "grad_norm": 0.20480065047740936,
+ "learning_rate": 0.0006,
+ "loss": 3.591038227081299,
+ "step": 3544
+ },
+ {
+ "epoch": 49.237658366098735,
+ "grad_norm": 0.20439887046813965,
+ "learning_rate": 0.0006,
+ "loss": 3.555039405822754,
+ "step": 3545
+ },
+ {
+ "epoch": 49.25163826998689,
+ "grad_norm": 0.21245788037776947,
+ "learning_rate": 0.0006,
+ "loss": 3.5772666931152344,
+ "step": 3546
+ },
+ {
+ "epoch": 49.265618173875055,
+ "grad_norm": 0.1993357390165329,
+ "learning_rate": 0.0006,
+ "loss": 3.5847411155700684,
+ "step": 3547
+ },
+ {
+ "epoch": 49.27959807776322,
+ "grad_norm": 0.22550229728221893,
+ "learning_rate": 0.0006,
+ "loss": 3.5679750442504883,
+ "step": 3548
+ },
+ {
+ "epoch": 49.293577981651374,
+ "grad_norm": 0.2383355349302292,
+ "learning_rate": 0.0006,
+ "loss": 3.57085919380188,
+ "step": 3549
+ },
+ {
+ "epoch": 49.30755788553954,
+ "grad_norm": 0.23968911170959473,
+ "learning_rate": 0.0006,
+ "loss": 3.557415246963501,
+ "step": 3550
+ },
+ {
+ "epoch": 49.3215377894277,
+ "grad_norm": 0.21453262865543365,
+ "learning_rate": 0.0006,
+ "loss": 3.5763611793518066,
+ "step": 3551
+ },
+ {
+ "epoch": 49.33551769331586,
+ "grad_norm": 0.20380273461341858,
+ "learning_rate": 0.0006,
+ "loss": 3.552011013031006,
+ "step": 3552
+ },
+ {
+ "epoch": 49.34949759720402,
+ "grad_norm": 0.19719970226287842,
+ "learning_rate": 0.0006,
+ "loss": 3.5719075202941895,
+ "step": 3553
+ },
+ {
+ "epoch": 49.36347750109218,
+ "grad_norm": 0.19018089771270752,
+ "learning_rate": 0.0006,
+ "loss": 3.5843467712402344,
+ "step": 3554
+ },
+ {
+ "epoch": 49.37745740498034,
+ "grad_norm": 0.18369099497795105,
+ "learning_rate": 0.0006,
+ "loss": 3.561741352081299,
+ "step": 3555
+ },
+ {
+ "epoch": 49.391437308868504,
+ "grad_norm": 0.2070280760526657,
+ "learning_rate": 0.0006,
+ "loss": 3.590721607208252,
+ "step": 3556
+ },
+ {
+ "epoch": 49.40541721275666,
+ "grad_norm": 0.23287905752658844,
+ "learning_rate": 0.0006,
+ "loss": 3.617081642150879,
+ "step": 3557
+ },
+ {
+ "epoch": 49.419397116644824,
+ "grad_norm": 0.21877793967723846,
+ "learning_rate": 0.0006,
+ "loss": 3.547166347503662,
+ "step": 3558
+ },
+ {
+ "epoch": 49.43337702053299,
+ "grad_norm": 0.21105137467384338,
+ "learning_rate": 0.0006,
+ "loss": 3.593552350997925,
+ "step": 3559
+ },
+ {
+ "epoch": 49.44735692442114,
+ "grad_norm": 0.24940872192382812,
+ "learning_rate": 0.0006,
+ "loss": 3.599729537963867,
+ "step": 3560
+ },
+ {
+ "epoch": 49.46133682830931,
+ "grad_norm": 0.26952996850013733,
+ "learning_rate": 0.0006,
+ "loss": 3.5915074348449707,
+ "step": 3561
+ },
+ {
+ "epoch": 49.47531673219746,
+ "grad_norm": 0.25706353783607483,
+ "learning_rate": 0.0006,
+ "loss": 3.587472915649414,
+ "step": 3562
+ },
+ {
+ "epoch": 49.489296636085626,
+ "grad_norm": 0.23666661977767944,
+ "learning_rate": 0.0006,
+ "loss": 3.561340808868408,
+ "step": 3563
+ },
+ {
+ "epoch": 49.50327653997379,
+ "grad_norm": 0.22524063289165497,
+ "learning_rate": 0.0006,
+ "loss": 3.587310314178467,
+ "step": 3564
+ },
+ {
+ "epoch": 49.517256443861946,
+ "grad_norm": 0.22991003096103668,
+ "learning_rate": 0.0006,
+ "loss": 3.56671142578125,
+ "step": 3565
+ },
+ {
+ "epoch": 49.53123634775011,
+ "grad_norm": 0.23067602515220642,
+ "learning_rate": 0.0006,
+ "loss": 3.578601837158203,
+ "step": 3566
+ },
+ {
+ "epoch": 49.54521625163827,
+ "grad_norm": 0.2133914828300476,
+ "learning_rate": 0.0006,
+ "loss": 3.593726873397827,
+ "step": 3567
+ },
+ {
+ "epoch": 49.55919615552643,
+ "grad_norm": 0.21879160404205322,
+ "learning_rate": 0.0006,
+ "loss": 3.5833992958068848,
+ "step": 3568
+ },
+ {
+ "epoch": 49.57317605941459,
+ "grad_norm": 0.2116270661354065,
+ "learning_rate": 0.0006,
+ "loss": 3.575761079788208,
+ "step": 3569
+ },
+ {
+ "epoch": 49.58715596330275,
+ "grad_norm": 0.19506660103797913,
+ "learning_rate": 0.0006,
+ "loss": 3.5600461959838867,
+ "step": 3570
+ },
+ {
+ "epoch": 49.60113586719091,
+ "grad_norm": 0.21305067837238312,
+ "learning_rate": 0.0006,
+ "loss": 3.5717577934265137,
+ "step": 3571
+ },
+ {
+ "epoch": 49.615115771079076,
+ "grad_norm": 0.21184347569942474,
+ "learning_rate": 0.0006,
+ "loss": 3.608819007873535,
+ "step": 3572
+ },
+ {
+ "epoch": 49.62909567496723,
+ "grad_norm": 0.22302201390266418,
+ "learning_rate": 0.0006,
+ "loss": 3.5871644020080566,
+ "step": 3573
+ },
+ {
+ "epoch": 49.643075578855395,
+ "grad_norm": 0.21942365169525146,
+ "learning_rate": 0.0006,
+ "loss": 3.596029043197632,
+ "step": 3574
+ },
+ {
+ "epoch": 49.65705548274356,
+ "grad_norm": 0.2627110481262207,
+ "learning_rate": 0.0006,
+ "loss": 3.5900766849517822,
+ "step": 3575
+ },
+ {
+ "epoch": 49.671035386631715,
+ "grad_norm": 0.28253448009490967,
+ "learning_rate": 0.0006,
+ "loss": 3.599386215209961,
+ "step": 3576
+ },
+ {
+ "epoch": 49.68501529051988,
+ "grad_norm": 0.24279426038265228,
+ "learning_rate": 0.0006,
+ "loss": 3.580909013748169,
+ "step": 3577
+ },
+ {
+ "epoch": 49.69899519440804,
+ "grad_norm": 0.22092898190021515,
+ "learning_rate": 0.0006,
+ "loss": 3.6043782234191895,
+ "step": 3578
+ },
+ {
+ "epoch": 49.7129750982962,
+ "grad_norm": 0.23356051743030548,
+ "learning_rate": 0.0006,
+ "loss": 3.6103105545043945,
+ "step": 3579
+ },
+ {
+ "epoch": 49.72695500218436,
+ "grad_norm": 0.24508118629455566,
+ "learning_rate": 0.0006,
+ "loss": 3.612980365753174,
+ "step": 3580
+ },
+ {
+ "epoch": 49.74093490607252,
+ "grad_norm": 0.2501833438873291,
+ "learning_rate": 0.0006,
+ "loss": 3.6111063957214355,
+ "step": 3581
+ },
+ {
+ "epoch": 49.75491480996068,
+ "grad_norm": 0.2263427972793579,
+ "learning_rate": 0.0006,
+ "loss": 3.5709285736083984,
+ "step": 3582
+ },
+ {
+ "epoch": 49.768894713848844,
+ "grad_norm": 0.19881728291511536,
+ "learning_rate": 0.0006,
+ "loss": 3.5836503505706787,
+ "step": 3583
+ },
+ {
+ "epoch": 49.782874617737,
+ "grad_norm": 0.22516517341136932,
+ "learning_rate": 0.0006,
+ "loss": 3.5797667503356934,
+ "step": 3584
+ },
+ {
+ "epoch": 49.796854521625164,
+ "grad_norm": 0.22347061336040497,
+ "learning_rate": 0.0006,
+ "loss": 3.6245951652526855,
+ "step": 3585
+ },
+ {
+ "epoch": 49.81083442551333,
+ "grad_norm": 0.2062593549489975,
+ "learning_rate": 0.0006,
+ "loss": 3.607572317123413,
+ "step": 3586
+ },
+ {
+ "epoch": 49.824814329401484,
+ "grad_norm": 0.20671074092388153,
+ "learning_rate": 0.0006,
+ "loss": 3.5671472549438477,
+ "step": 3587
+ },
+ {
+ "epoch": 49.83879423328965,
+ "grad_norm": 0.19981902837753296,
+ "learning_rate": 0.0006,
+ "loss": 3.6084837913513184,
+ "step": 3588
+ },
+ {
+ "epoch": 49.8527741371778,
+ "grad_norm": 0.2004556804895401,
+ "learning_rate": 0.0006,
+ "loss": 3.631455898284912,
+ "step": 3589
+ },
+ {
+ "epoch": 49.86675404106597,
+ "grad_norm": 0.20990414917469025,
+ "learning_rate": 0.0006,
+ "loss": 3.6017699241638184,
+ "step": 3590
+ },
+ {
+ "epoch": 49.88073394495413,
+ "grad_norm": 0.19016146659851074,
+ "learning_rate": 0.0006,
+ "loss": 3.6110801696777344,
+ "step": 3591
+ },
+ {
+ "epoch": 49.89471384884229,
+ "grad_norm": 0.2015834003686905,
+ "learning_rate": 0.0006,
+ "loss": 3.58852481842041,
+ "step": 3592
+ },
+ {
+ "epoch": 49.90869375273045,
+ "grad_norm": 0.205678328871727,
+ "learning_rate": 0.0006,
+ "loss": 3.581789970397949,
+ "step": 3593
+ },
+ {
+ "epoch": 49.92267365661861,
+ "grad_norm": 0.20975211262702942,
+ "learning_rate": 0.0006,
+ "loss": 3.6126320362091064,
+ "step": 3594
+ },
+ {
+ "epoch": 49.93665356050677,
+ "grad_norm": 0.20510081946849823,
+ "learning_rate": 0.0006,
+ "loss": 3.5970656871795654,
+ "step": 3595
+ },
+ {
+ "epoch": 49.95063346439493,
+ "grad_norm": 0.19842886924743652,
+ "learning_rate": 0.0006,
+ "loss": 3.6055545806884766,
+ "step": 3596
+ },
+ {
+ "epoch": 49.964613368283096,
+ "grad_norm": 0.20551791787147522,
+ "learning_rate": 0.0006,
+ "loss": 3.5861949920654297,
+ "step": 3597
+ },
+ {
+ "epoch": 49.97859327217125,
+ "grad_norm": 0.21147456765174866,
+ "learning_rate": 0.0006,
+ "loss": 3.585934638977051,
+ "step": 3598
+ },
+ {
+ "epoch": 49.992573176059416,
+ "grad_norm": 0.21793442964553833,
+ "learning_rate": 0.0006,
+ "loss": 3.5956411361694336,
+ "step": 3599
+ },
+ {
+ "epoch": 50.0,
+ "grad_norm": 0.24623161554336548,
+ "learning_rate": 0.0006,
+ "loss": 3.623453140258789,
+ "step": 3600
+ },
+ {
+ "epoch": 50.0,
+ "eval_loss": 3.9807891845703125,
+ "eval_runtime": 45.7708,
+ "eval_samples_per_second": 53.353,
+ "eval_steps_per_second": 3.343,
+ "step": 3600
+ },
+ {
+ "epoch": 50.01397990388816,
+ "grad_norm": 0.22322626411914825,
+ "learning_rate": 0.0006,
+ "loss": 3.5475401878356934,
+ "step": 3601
+ },
+ {
+ "epoch": 50.02795980777632,
+ "grad_norm": 0.21957066655158997,
+ "learning_rate": 0.0006,
+ "loss": 3.5616683959960938,
+ "step": 3602
+ },
+ {
+ "epoch": 50.04193971166448,
+ "grad_norm": 0.22030551731586456,
+ "learning_rate": 0.0006,
+ "loss": 3.56367826461792,
+ "step": 3603
+ },
+ {
+ "epoch": 50.05591961555265,
+ "grad_norm": 0.21536092460155487,
+ "learning_rate": 0.0006,
+ "loss": 3.5613503456115723,
+ "step": 3604
+ },
+ {
+ "epoch": 50.0698995194408,
+ "grad_norm": 0.22454269230365753,
+ "learning_rate": 0.0006,
+ "loss": 3.5348987579345703,
+ "step": 3605
+ },
+ {
+ "epoch": 50.083879423328966,
+ "grad_norm": 0.2281617820262909,
+ "learning_rate": 0.0006,
+ "loss": 3.5722241401672363,
+ "step": 3606
+ },
+ {
+ "epoch": 50.09785932721712,
+ "grad_norm": 0.23318710923194885,
+ "learning_rate": 0.0006,
+ "loss": 3.559063673019409,
+ "step": 3607
+ },
+ {
+ "epoch": 50.111839231105286,
+ "grad_norm": 0.2277889847755432,
+ "learning_rate": 0.0006,
+ "loss": 3.5632925033569336,
+ "step": 3608
+ },
+ {
+ "epoch": 50.12581913499345,
+ "grad_norm": 0.2317705601453781,
+ "learning_rate": 0.0006,
+ "loss": 3.5835886001586914,
+ "step": 3609
+ },
+ {
+ "epoch": 50.139799038881605,
+ "grad_norm": 0.21388863027095795,
+ "learning_rate": 0.0006,
+ "loss": 3.5976145267486572,
+ "step": 3610
+ },
+ {
+ "epoch": 50.15377894276977,
+ "grad_norm": 0.2070954293012619,
+ "learning_rate": 0.0006,
+ "loss": 3.5486221313476562,
+ "step": 3611
+ },
+ {
+ "epoch": 50.16775884665793,
+ "grad_norm": 0.21602077782154083,
+ "learning_rate": 0.0006,
+ "loss": 3.5897607803344727,
+ "step": 3612
+ },
+ {
+ "epoch": 50.18173875054609,
+ "grad_norm": 0.21106162667274475,
+ "learning_rate": 0.0006,
+ "loss": 3.5587167739868164,
+ "step": 3613
+ },
+ {
+ "epoch": 50.19571865443425,
+ "grad_norm": 0.2047950178384781,
+ "learning_rate": 0.0006,
+ "loss": 3.576798915863037,
+ "step": 3614
+ },
+ {
+ "epoch": 50.20969855832241,
+ "grad_norm": 0.2204097956418991,
+ "learning_rate": 0.0006,
+ "loss": 3.5466837882995605,
+ "step": 3615
+ },
+ {
+ "epoch": 50.22367846221057,
+ "grad_norm": 0.2220875471830368,
+ "learning_rate": 0.0006,
+ "loss": 3.5722036361694336,
+ "step": 3616
+ },
+ {
+ "epoch": 50.237658366098735,
+ "grad_norm": 0.2250797003507614,
+ "learning_rate": 0.0006,
+ "loss": 3.566347122192383,
+ "step": 3617
+ },
+ {
+ "epoch": 50.25163826998689,
+ "grad_norm": 0.22837485373020172,
+ "learning_rate": 0.0006,
+ "loss": 3.5673274993896484,
+ "step": 3618
+ },
+ {
+ "epoch": 50.265618173875055,
+ "grad_norm": 0.2281104475259781,
+ "learning_rate": 0.0006,
+ "loss": 3.5543737411499023,
+ "step": 3619
+ },
+ {
+ "epoch": 50.27959807776322,
+ "grad_norm": 0.2052381932735443,
+ "learning_rate": 0.0006,
+ "loss": 3.566401958465576,
+ "step": 3620
+ },
+ {
+ "epoch": 50.293577981651374,
+ "grad_norm": 0.2125921994447708,
+ "learning_rate": 0.0006,
+ "loss": 3.5467424392700195,
+ "step": 3621
+ },
+ {
+ "epoch": 50.30755788553954,
+ "grad_norm": 0.22641244530677795,
+ "learning_rate": 0.0006,
+ "loss": 3.548497200012207,
+ "step": 3622
+ },
+ {
+ "epoch": 50.3215377894277,
+ "grad_norm": 0.23039482533931732,
+ "learning_rate": 0.0006,
+ "loss": 3.5948381423950195,
+ "step": 3623
+ },
+ {
+ "epoch": 50.33551769331586,
+ "grad_norm": 0.22753404080867767,
+ "learning_rate": 0.0006,
+ "loss": 3.541825532913208,
+ "step": 3624
+ },
+ {
+ "epoch": 50.34949759720402,
+ "grad_norm": 0.2528170347213745,
+ "learning_rate": 0.0006,
+ "loss": 3.5937235355377197,
+ "step": 3625
+ },
+ {
+ "epoch": 50.36347750109218,
+ "grad_norm": 0.25434595346450806,
+ "learning_rate": 0.0006,
+ "loss": 3.5779776573181152,
+ "step": 3626
+ },
+ {
+ "epoch": 50.37745740498034,
+ "grad_norm": 0.22519059479236603,
+ "learning_rate": 0.0006,
+ "loss": 3.5456271171569824,
+ "step": 3627
+ },
+ {
+ "epoch": 50.391437308868504,
+ "grad_norm": 0.2077232301235199,
+ "learning_rate": 0.0006,
+ "loss": 3.5693111419677734,
+ "step": 3628
+ },
+ {
+ "epoch": 50.40541721275666,
+ "grad_norm": 0.20925411581993103,
+ "learning_rate": 0.0006,
+ "loss": 3.6063997745513916,
+ "step": 3629
+ },
+ {
+ "epoch": 50.419397116644824,
+ "grad_norm": 0.2114555686712265,
+ "learning_rate": 0.0006,
+ "loss": 3.5676894187927246,
+ "step": 3630
+ },
+ {
+ "epoch": 50.43337702053299,
+ "grad_norm": 0.23759354650974274,
+ "learning_rate": 0.0006,
+ "loss": 3.5465126037597656,
+ "step": 3631
+ },
+ {
+ "epoch": 50.44735692442114,
+ "grad_norm": 0.23809516429901123,
+ "learning_rate": 0.0006,
+ "loss": 3.571600914001465,
+ "step": 3632
+ },
+ {
+ "epoch": 50.46133682830931,
+ "grad_norm": 0.20501303672790527,
+ "learning_rate": 0.0006,
+ "loss": 3.573550224304199,
+ "step": 3633
+ },
+ {
+ "epoch": 50.47531673219746,
+ "grad_norm": 0.21562306582927704,
+ "learning_rate": 0.0006,
+ "loss": 3.5625600814819336,
+ "step": 3634
+ },
+ {
+ "epoch": 50.489296636085626,
+ "grad_norm": 0.20469479262828827,
+ "learning_rate": 0.0006,
+ "loss": 3.5737175941467285,
+ "step": 3635
+ },
+ {
+ "epoch": 50.50327653997379,
+ "grad_norm": 0.2078634798526764,
+ "learning_rate": 0.0006,
+ "loss": 3.5691545009613037,
+ "step": 3636
+ },
+ {
+ "epoch": 50.517256443861946,
+ "grad_norm": 0.20340897142887115,
+ "learning_rate": 0.0006,
+ "loss": 3.583918571472168,
+ "step": 3637
+ },
+ {
+ "epoch": 50.53123634775011,
+ "grad_norm": 0.2006944715976715,
+ "learning_rate": 0.0006,
+ "loss": 3.596034049987793,
+ "step": 3638
+ },
+ {
+ "epoch": 50.54521625163827,
+ "grad_norm": 0.19281257688999176,
+ "learning_rate": 0.0006,
+ "loss": 3.5993080139160156,
+ "step": 3639
+ },
+ {
+ "epoch": 50.55919615552643,
+ "grad_norm": 0.19528807699680328,
+ "learning_rate": 0.0006,
+ "loss": 3.6108102798461914,
+ "step": 3640
+ },
+ {
+ "epoch": 50.57317605941459,
+ "grad_norm": 0.19329112768173218,
+ "learning_rate": 0.0006,
+ "loss": 3.5964512825012207,
+ "step": 3641
+ },
+ {
+ "epoch": 50.58715596330275,
+ "grad_norm": 0.1928209513425827,
+ "learning_rate": 0.0006,
+ "loss": 3.5927724838256836,
+ "step": 3642
+ },
+ {
+ "epoch": 50.60113586719091,
+ "grad_norm": 0.20212236046791077,
+ "learning_rate": 0.0006,
+ "loss": 3.5778708457946777,
+ "step": 3643
+ },
+ {
+ "epoch": 50.615115771079076,
+ "grad_norm": 0.22244620323181152,
+ "learning_rate": 0.0006,
+ "loss": 3.6219539642333984,
+ "step": 3644
+ },
+ {
+ "epoch": 50.62909567496723,
+ "grad_norm": 0.2659119963645935,
+ "learning_rate": 0.0006,
+ "loss": 3.578831195831299,
+ "step": 3645
+ },
+ {
+ "epoch": 50.643075578855395,
+ "grad_norm": 0.2837344706058502,
+ "learning_rate": 0.0006,
+ "loss": 3.587677240371704,
+ "step": 3646
+ },
+ {
+ "epoch": 50.65705548274356,
+ "grad_norm": 0.26747965812683105,
+ "learning_rate": 0.0006,
+ "loss": 3.611286163330078,
+ "step": 3647
+ },
+ {
+ "epoch": 50.671035386631715,
+ "grad_norm": 0.24604788422584534,
+ "learning_rate": 0.0006,
+ "loss": 3.5740575790405273,
+ "step": 3648
+ },
+ {
+ "epoch": 50.68501529051988,
+ "grad_norm": 0.2379457652568817,
+ "learning_rate": 0.0006,
+ "loss": 3.5997209548950195,
+ "step": 3649
+ },
+ {
+ "epoch": 50.69899519440804,
+ "grad_norm": 0.2296321839094162,
+ "learning_rate": 0.0006,
+ "loss": 3.5975162982940674,
+ "step": 3650
+ },
+ {
+ "epoch": 50.7129750982962,
+ "grad_norm": 0.22054627537727356,
+ "learning_rate": 0.0006,
+ "loss": 3.5821738243103027,
+ "step": 3651
+ },
+ {
+ "epoch": 50.72695500218436,
+ "grad_norm": 0.22114980220794678,
+ "learning_rate": 0.0006,
+ "loss": 3.5769970417022705,
+ "step": 3652
+ },
+ {
+ "epoch": 50.74093490607252,
+ "grad_norm": 0.21389314532279968,
+ "learning_rate": 0.0006,
+ "loss": 3.5952796936035156,
+ "step": 3653
+ },
+ {
+ "epoch": 50.75491480996068,
+ "grad_norm": 0.21069210767745972,
+ "learning_rate": 0.0006,
+ "loss": 3.5884671211242676,
+ "step": 3654
+ },
+ {
+ "epoch": 50.768894713848844,
+ "grad_norm": 0.22028805315494537,
+ "learning_rate": 0.0006,
+ "loss": 3.593442440032959,
+ "step": 3655
+ },
+ {
+ "epoch": 50.782874617737,
+ "grad_norm": 0.21296948194503784,
+ "learning_rate": 0.0006,
+ "loss": 3.5656774044036865,
+ "step": 3656
+ },
+ {
+ "epoch": 50.796854521625164,
+ "grad_norm": 0.19871588051319122,
+ "learning_rate": 0.0006,
+ "loss": 3.5939064025878906,
+ "step": 3657
+ },
+ {
+ "epoch": 50.81083442551333,
+ "grad_norm": 0.19523470103740692,
+ "learning_rate": 0.0006,
+ "loss": 3.5806071758270264,
+ "step": 3658
+ },
+ {
+ "epoch": 50.824814329401484,
+ "grad_norm": 0.18718191981315613,
+ "learning_rate": 0.0006,
+ "loss": 3.5903120040893555,
+ "step": 3659
+ },
+ {
+ "epoch": 50.83879423328965,
+ "grad_norm": 0.18796689808368683,
+ "learning_rate": 0.0006,
+ "loss": 3.5799593925476074,
+ "step": 3660
+ },
+ {
+ "epoch": 50.8527741371778,
+ "grad_norm": 0.21794569492340088,
+ "learning_rate": 0.0006,
+ "loss": 3.5712361335754395,
+ "step": 3661
+ },
+ {
+ "epoch": 50.86675404106597,
+ "grad_norm": 0.2374759465456009,
+ "learning_rate": 0.0006,
+ "loss": 3.602503776550293,
+ "step": 3662
+ },
+ {
+ "epoch": 50.88073394495413,
+ "grad_norm": 0.20213527977466583,
+ "learning_rate": 0.0006,
+ "loss": 3.5756399631500244,
+ "step": 3663
+ },
+ {
+ "epoch": 50.89471384884229,
+ "grad_norm": 0.1875160187482834,
+ "learning_rate": 0.0006,
+ "loss": 3.625436305999756,
+ "step": 3664
+ },
+ {
+ "epoch": 50.90869375273045,
+ "grad_norm": 0.19908255338668823,
+ "learning_rate": 0.0006,
+ "loss": 3.592522621154785,
+ "step": 3665
+ },
+ {
+ "epoch": 50.92267365661861,
+ "grad_norm": 0.20776167511940002,
+ "learning_rate": 0.0006,
+ "loss": 3.5777883529663086,
+ "step": 3666
+ },
+ {
+ "epoch": 50.93665356050677,
+ "grad_norm": 0.19510093331336975,
+ "learning_rate": 0.0006,
+ "loss": 3.587306022644043,
+ "step": 3667
+ },
+ {
+ "epoch": 50.95063346439493,
+ "grad_norm": 0.2180490493774414,
+ "learning_rate": 0.0006,
+ "loss": 3.5855464935302734,
+ "step": 3668
+ },
+ {
+ "epoch": 50.964613368283096,
+ "grad_norm": 0.19967055320739746,
+ "learning_rate": 0.0006,
+ "loss": 3.609689235687256,
+ "step": 3669
+ },
+ {
+ "epoch": 50.97859327217125,
+ "grad_norm": 0.2081584632396698,
+ "learning_rate": 0.0006,
+ "loss": 3.625236749649048,
+ "step": 3670
+ },
+ {
+ "epoch": 50.992573176059416,
+ "grad_norm": 0.2312266230583191,
+ "learning_rate": 0.0006,
+ "loss": 3.5977330207824707,
+ "step": 3671
+ },
+ {
+ "epoch": 51.0,
+ "grad_norm": 0.2464766502380371,
+ "learning_rate": 0.0006,
+ "loss": 3.610635995864868,
+ "step": 3672
+ },
+ {
+ "epoch": 51.0,
+ "eval_loss": 3.9810166358947754,
+ "eval_runtime": 45.5851,
+ "eval_samples_per_second": 53.57,
+ "eval_steps_per_second": 3.356,
+ "step": 3672
+ },
+ {
+ "epoch": 51.01397990388816,
+ "grad_norm": 0.22583232820034027,
+ "learning_rate": 0.0006,
+ "loss": 3.547168016433716,
+ "step": 3673
+ },
+ {
+ "epoch": 51.02795980777632,
+ "grad_norm": 0.23001070320606232,
+ "learning_rate": 0.0006,
+ "loss": 3.546207904815674,
+ "step": 3674
+ },
+ {
+ "epoch": 51.04193971166448,
+ "grad_norm": 0.21891392767429352,
+ "learning_rate": 0.0006,
+ "loss": 3.564371109008789,
+ "step": 3675
+ },
+ {
+ "epoch": 51.05591961555265,
+ "grad_norm": 0.22195076942443848,
+ "learning_rate": 0.0006,
+ "loss": 3.538297414779663,
+ "step": 3676
+ },
+ {
+ "epoch": 51.0698995194408,
+ "grad_norm": 0.24688288569450378,
+ "learning_rate": 0.0006,
+ "loss": 3.5705811977386475,
+ "step": 3677
+ },
+ {
+ "epoch": 51.083879423328966,
+ "grad_norm": 0.2731003165245056,
+ "learning_rate": 0.0006,
+ "loss": 3.530763626098633,
+ "step": 3678
+ },
+ {
+ "epoch": 51.09785932721712,
+ "grad_norm": 0.27474021911621094,
+ "learning_rate": 0.0006,
+ "loss": 3.5559208393096924,
+ "step": 3679
+ },
+ {
+ "epoch": 51.111839231105286,
+ "grad_norm": 0.26311439275741577,
+ "learning_rate": 0.0006,
+ "loss": 3.5698819160461426,
+ "step": 3680
+ },
+ {
+ "epoch": 51.12581913499345,
+ "grad_norm": 0.21895965933799744,
+ "learning_rate": 0.0006,
+ "loss": 3.567232370376587,
+ "step": 3681
+ },
+ {
+ "epoch": 51.139799038881605,
+ "grad_norm": 0.19598282873630524,
+ "learning_rate": 0.0006,
+ "loss": 3.6033718585968018,
+ "step": 3682
+ },
+ {
+ "epoch": 51.15377894276977,
+ "grad_norm": 0.2183268666267395,
+ "learning_rate": 0.0006,
+ "loss": 3.5599026679992676,
+ "step": 3683
+ },
+ {
+ "epoch": 51.16775884665793,
+ "grad_norm": 0.22657731175422668,
+ "learning_rate": 0.0006,
+ "loss": 3.532038688659668,
+ "step": 3684
+ },
+ {
+ "epoch": 51.18173875054609,
+ "grad_norm": 0.21979935467243195,
+ "learning_rate": 0.0006,
+ "loss": 3.544640064239502,
+ "step": 3685
+ },
+ {
+ "epoch": 51.19571865443425,
+ "grad_norm": 0.20581361651420593,
+ "learning_rate": 0.0006,
+ "loss": 3.579803466796875,
+ "step": 3686
+ },
+ {
+ "epoch": 51.20969855832241,
+ "grad_norm": 0.22677212953567505,
+ "learning_rate": 0.0006,
+ "loss": 3.576796054840088,
+ "step": 3687
+ },
+ {
+ "epoch": 51.22367846221057,
+ "grad_norm": 0.2599104940891266,
+ "learning_rate": 0.0006,
+ "loss": 3.5657899379730225,
+ "step": 3688
+ },
+ {
+ "epoch": 51.237658366098735,
+ "grad_norm": 0.23320309817790985,
+ "learning_rate": 0.0006,
+ "loss": 3.5537824630737305,
+ "step": 3689
+ },
+ {
+ "epoch": 51.25163826998689,
+ "grad_norm": 0.2345186471939087,
+ "learning_rate": 0.0006,
+ "loss": 3.5699901580810547,
+ "step": 3690
+ },
+ {
+ "epoch": 51.265618173875055,
+ "grad_norm": 0.24723312258720398,
+ "learning_rate": 0.0006,
+ "loss": 3.553495168685913,
+ "step": 3691
+ },
+ {
+ "epoch": 51.27959807776322,
+ "grad_norm": 0.24195604026317596,
+ "learning_rate": 0.0006,
+ "loss": 3.6008248329162598,
+ "step": 3692
+ },
+ {
+ "epoch": 51.293577981651374,
+ "grad_norm": 0.23011726140975952,
+ "learning_rate": 0.0006,
+ "loss": 3.5842812061309814,
+ "step": 3693
+ },
+ {
+ "epoch": 51.30755788553954,
+ "grad_norm": 0.23412185907363892,
+ "learning_rate": 0.0006,
+ "loss": 3.5648040771484375,
+ "step": 3694
+ },
+ {
+ "epoch": 51.3215377894277,
+ "grad_norm": 0.22911828756332397,
+ "learning_rate": 0.0006,
+ "loss": 3.5599000453948975,
+ "step": 3695
+ },
+ {
+ "epoch": 51.33551769331586,
+ "grad_norm": 0.20045386254787445,
+ "learning_rate": 0.0006,
+ "loss": 3.559370517730713,
+ "step": 3696
+ },
+ {
+ "epoch": 51.34949759720402,
+ "grad_norm": 0.24723322689533234,
+ "learning_rate": 0.0006,
+ "loss": 3.5734081268310547,
+ "step": 3697
+ },
+ {
+ "epoch": 51.36347750109218,
+ "grad_norm": 0.28003066778182983,
+ "learning_rate": 0.0006,
+ "loss": 3.574591636657715,
+ "step": 3698
+ },
+ {
+ "epoch": 51.37745740498034,
+ "grad_norm": 0.27969157695770264,
+ "learning_rate": 0.0006,
+ "loss": 3.5703907012939453,
+ "step": 3699
+ },
+ {
+ "epoch": 51.391437308868504,
+ "grad_norm": 0.2352922111749649,
+ "learning_rate": 0.0006,
+ "loss": 3.540452480316162,
+ "step": 3700
+ },
+ {
+ "epoch": 51.40541721275666,
+ "grad_norm": 0.21332240104675293,
+ "learning_rate": 0.0006,
+ "loss": 3.5883522033691406,
+ "step": 3701
+ },
+ {
+ "epoch": 51.419397116644824,
+ "grad_norm": 0.2021809071302414,
+ "learning_rate": 0.0006,
+ "loss": 3.567544460296631,
+ "step": 3702
+ },
+ {
+ "epoch": 51.43337702053299,
+ "grad_norm": 0.23054654896259308,
+ "learning_rate": 0.0006,
+ "loss": 3.5927062034606934,
+ "step": 3703
+ },
+ {
+ "epoch": 51.44735692442114,
+ "grad_norm": 0.22398747503757477,
+ "learning_rate": 0.0006,
+ "loss": 3.5977213382720947,
+ "step": 3704
+ },
+ {
+ "epoch": 51.46133682830931,
+ "grad_norm": 0.2021128088235855,
+ "learning_rate": 0.0006,
+ "loss": 3.585836887359619,
+ "step": 3705
+ },
+ {
+ "epoch": 51.47531673219746,
+ "grad_norm": 0.23031292855739594,
+ "learning_rate": 0.0006,
+ "loss": 3.532315731048584,
+ "step": 3706
+ },
+ {
+ "epoch": 51.489296636085626,
+ "grad_norm": 0.26744455099105835,
+ "learning_rate": 0.0006,
+ "loss": 3.585782289505005,
+ "step": 3707
+ },
+ {
+ "epoch": 51.50327653997379,
+ "grad_norm": 0.2508980929851532,
+ "learning_rate": 0.0006,
+ "loss": 3.550276279449463,
+ "step": 3708
+ },
+ {
+ "epoch": 51.517256443861946,
+ "grad_norm": 0.2180585265159607,
+ "learning_rate": 0.0006,
+ "loss": 3.566798210144043,
+ "step": 3709
+ },
+ {
+ "epoch": 51.53123634775011,
+ "grad_norm": 0.18508869409561157,
+ "learning_rate": 0.0006,
+ "loss": 3.5295116901397705,
+ "step": 3710
+ },
+ {
+ "epoch": 51.54521625163827,
+ "grad_norm": 0.19017672538757324,
+ "learning_rate": 0.0006,
+ "loss": 3.5932717323303223,
+ "step": 3711
+ },
+ {
+ "epoch": 51.55919615552643,
+ "grad_norm": 0.2228020876646042,
+ "learning_rate": 0.0006,
+ "loss": 3.5660648345947266,
+ "step": 3712
+ },
+ {
+ "epoch": 51.57317605941459,
+ "grad_norm": 0.22948148846626282,
+ "learning_rate": 0.0006,
+ "loss": 3.5785627365112305,
+ "step": 3713
+ },
+ {
+ "epoch": 51.58715596330275,
+ "grad_norm": 0.2438911497592926,
+ "learning_rate": 0.0006,
+ "loss": 3.5885257720947266,
+ "step": 3714
+ },
+ {
+ "epoch": 51.60113586719091,
+ "grad_norm": 0.25012296438217163,
+ "learning_rate": 0.0006,
+ "loss": 3.577232599258423,
+ "step": 3715
+ },
+ {
+ "epoch": 51.615115771079076,
+ "grad_norm": 0.27102336287498474,
+ "learning_rate": 0.0006,
+ "loss": 3.5600078105926514,
+ "step": 3716
+ },
+ {
+ "epoch": 51.62909567496723,
+ "grad_norm": 0.26425355672836304,
+ "learning_rate": 0.0006,
+ "loss": 3.5694093704223633,
+ "step": 3717
+ },
+ {
+ "epoch": 51.643075578855395,
+ "grad_norm": 0.24292822182178497,
+ "learning_rate": 0.0006,
+ "loss": 3.5774331092834473,
+ "step": 3718
+ },
+ {
+ "epoch": 51.65705548274356,
+ "grad_norm": 0.22668084502220154,
+ "learning_rate": 0.0006,
+ "loss": 3.5912742614746094,
+ "step": 3719
+ },
+ {
+ "epoch": 51.671035386631715,
+ "grad_norm": 0.2090575248003006,
+ "learning_rate": 0.0006,
+ "loss": 3.5473170280456543,
+ "step": 3720
+ },
+ {
+ "epoch": 51.68501529051988,
+ "grad_norm": 0.22276616096496582,
+ "learning_rate": 0.0006,
+ "loss": 3.6076784133911133,
+ "step": 3721
+ },
+ {
+ "epoch": 51.69899519440804,
+ "grad_norm": 0.22105294466018677,
+ "learning_rate": 0.0006,
+ "loss": 3.5820791721343994,
+ "step": 3722
+ },
+ {
+ "epoch": 51.7129750982962,
+ "grad_norm": 0.19231240451335907,
+ "learning_rate": 0.0006,
+ "loss": 3.6017708778381348,
+ "step": 3723
+ },
+ {
+ "epoch": 51.72695500218436,
+ "grad_norm": 0.2050354927778244,
+ "learning_rate": 0.0006,
+ "loss": 3.5967769622802734,
+ "step": 3724
+ },
+ {
+ "epoch": 51.74093490607252,
+ "grad_norm": 0.19779305160045624,
+ "learning_rate": 0.0006,
+ "loss": 3.597214698791504,
+ "step": 3725
+ },
+ {
+ "epoch": 51.75491480996068,
+ "grad_norm": 0.22394844889640808,
+ "learning_rate": 0.0006,
+ "loss": 3.574063301086426,
+ "step": 3726
+ },
+ {
+ "epoch": 51.768894713848844,
+ "grad_norm": 0.2262638807296753,
+ "learning_rate": 0.0006,
+ "loss": 3.5754079818725586,
+ "step": 3727
+ },
+ {
+ "epoch": 51.782874617737,
+ "grad_norm": 0.2168288677930832,
+ "learning_rate": 0.0006,
+ "loss": 3.6079599857330322,
+ "step": 3728
+ },
+ {
+ "epoch": 51.796854521625164,
+ "grad_norm": 0.2035517394542694,
+ "learning_rate": 0.0006,
+ "loss": 3.5948667526245117,
+ "step": 3729
+ },
+ {
+ "epoch": 51.81083442551333,
+ "grad_norm": 0.20529425144195557,
+ "learning_rate": 0.0006,
+ "loss": 3.5589542388916016,
+ "step": 3730
+ },
+ {
+ "epoch": 51.824814329401484,
+ "grad_norm": 0.2464100867509842,
+ "learning_rate": 0.0006,
+ "loss": 3.5947155952453613,
+ "step": 3731
+ },
+ {
+ "epoch": 51.83879423328965,
+ "grad_norm": 0.28043219447135925,
+ "learning_rate": 0.0006,
+ "loss": 3.6102852821350098,
+ "step": 3732
+ },
+ {
+ "epoch": 51.8527741371778,
+ "grad_norm": 0.2879013121128082,
+ "learning_rate": 0.0006,
+ "loss": 3.5903573036193848,
+ "step": 3733
+ },
+ {
+ "epoch": 51.86675404106597,
+ "grad_norm": 0.2532044053077698,
+ "learning_rate": 0.0006,
+ "loss": 3.5704729557037354,
+ "step": 3734
+ },
+ {
+ "epoch": 51.88073394495413,
+ "grad_norm": 0.25126248598098755,
+ "learning_rate": 0.0006,
+ "loss": 3.5449633598327637,
+ "step": 3735
+ },
+ {
+ "epoch": 51.89471384884229,
+ "grad_norm": 0.2494364082813263,
+ "learning_rate": 0.0006,
+ "loss": 3.5825607776641846,
+ "step": 3736
+ },
+ {
+ "epoch": 51.90869375273045,
+ "grad_norm": 0.24867761135101318,
+ "learning_rate": 0.0006,
+ "loss": 3.5998034477233887,
+ "step": 3737
+ },
+ {
+ "epoch": 51.92267365661861,
+ "grad_norm": 0.2552012801170349,
+ "learning_rate": 0.0006,
+ "loss": 3.5487377643585205,
+ "step": 3738
+ },
+ {
+ "epoch": 51.93665356050677,
+ "grad_norm": 0.2243119329214096,
+ "learning_rate": 0.0006,
+ "loss": 3.6081466674804688,
+ "step": 3739
+ },
+ {
+ "epoch": 51.95063346439493,
+ "grad_norm": 0.2106700837612152,
+ "learning_rate": 0.0006,
+ "loss": 3.607586622238159,
+ "step": 3740
+ },
+ {
+ "epoch": 51.964613368283096,
+ "grad_norm": 0.2207096666097641,
+ "learning_rate": 0.0006,
+ "loss": 3.6094579696655273,
+ "step": 3741
+ },
+ {
+ "epoch": 51.97859327217125,
+ "grad_norm": 0.2310071736574173,
+ "learning_rate": 0.0006,
+ "loss": 3.5837807655334473,
+ "step": 3742
+ },
+ {
+ "epoch": 51.992573176059416,
+ "grad_norm": 0.258770614862442,
+ "learning_rate": 0.0006,
+ "loss": 3.639329433441162,
+ "step": 3743
+ },
+ {
+ "epoch": 52.0,
+ "grad_norm": 0.24004915356636047,
+ "learning_rate": 0.0006,
+ "loss": 3.6178512573242188,
+ "step": 3744
+ },
+ {
+ "epoch": 52.0,
+ "eval_loss": 3.97371244430542,
+ "eval_runtime": 46.1923,
+ "eval_samples_per_second": 52.866,
+ "eval_steps_per_second": 3.312,
+ "step": 3744
+ },
+ {
+ "epoch": 52.01397990388816,
+ "grad_norm": 0.21953323483467102,
+ "learning_rate": 0.0006,
+ "loss": 3.5929579734802246,
+ "step": 3745
+ },
+ {
+ "epoch": 52.02795980777632,
+ "grad_norm": 0.25547415018081665,
+ "learning_rate": 0.0006,
+ "loss": 3.5762600898742676,
+ "step": 3746
+ },
+ {
+ "epoch": 52.04193971166448,
+ "grad_norm": 0.28905144333839417,
+ "learning_rate": 0.0006,
+ "loss": 3.5794596672058105,
+ "step": 3747
+ },
+ {
+ "epoch": 52.05591961555265,
+ "grad_norm": 0.2618118226528168,
+ "learning_rate": 0.0006,
+ "loss": 3.543205499649048,
+ "step": 3748
+ },
+ {
+ "epoch": 52.0698995194408,
+ "grad_norm": 0.2288745492696762,
+ "learning_rate": 0.0006,
+ "loss": 3.562770366668701,
+ "step": 3749
+ },
+ {
+ "epoch": 52.083879423328966,
+ "grad_norm": 0.25327110290527344,
+ "learning_rate": 0.0006,
+ "loss": 3.5405054092407227,
+ "step": 3750
+ },
+ {
+ "epoch": 52.09785932721712,
+ "grad_norm": 0.2721746861934662,
+ "learning_rate": 0.0006,
+ "loss": 3.5650479793548584,
+ "step": 3751
+ },
+ {
+ "epoch": 52.111839231105286,
+ "grad_norm": 0.2890555262565613,
+ "learning_rate": 0.0006,
+ "loss": 3.556122303009033,
+ "step": 3752
+ },
+ {
+ "epoch": 52.12581913499345,
+ "grad_norm": 0.30541476607322693,
+ "learning_rate": 0.0006,
+ "loss": 3.544271469116211,
+ "step": 3753
+ },
+ {
+ "epoch": 52.139799038881605,
+ "grad_norm": 0.2555760443210602,
+ "learning_rate": 0.0006,
+ "loss": 3.5452728271484375,
+ "step": 3754
+ },
+ {
+ "epoch": 52.15377894276977,
+ "grad_norm": 0.2653098404407501,
+ "learning_rate": 0.0006,
+ "loss": 3.57212495803833,
+ "step": 3755
+ },
+ {
+ "epoch": 52.16775884665793,
+ "grad_norm": 0.2479168176651001,
+ "learning_rate": 0.0006,
+ "loss": 3.5893373489379883,
+ "step": 3756
+ },
+ {
+ "epoch": 52.18173875054609,
+ "grad_norm": 0.21718256175518036,
+ "learning_rate": 0.0006,
+ "loss": 3.5616965293884277,
+ "step": 3757
+ },
+ {
+ "epoch": 52.19571865443425,
+ "grad_norm": 0.22033235430717468,
+ "learning_rate": 0.0006,
+ "loss": 3.566401481628418,
+ "step": 3758
+ },
+ {
+ "epoch": 52.20969855832241,
+ "grad_norm": 0.2401825189590454,
+ "learning_rate": 0.0006,
+ "loss": 3.547682762145996,
+ "step": 3759
+ },
+ {
+ "epoch": 52.22367846221057,
+ "grad_norm": 0.24496418237686157,
+ "learning_rate": 0.0006,
+ "loss": 3.5405421257019043,
+ "step": 3760
+ },
+ {
+ "epoch": 52.237658366098735,
+ "grad_norm": 0.2311883270740509,
+ "learning_rate": 0.0006,
+ "loss": 3.5709781646728516,
+ "step": 3761
+ },
+ {
+ "epoch": 52.25163826998689,
+ "grad_norm": 0.20850200951099396,
+ "learning_rate": 0.0006,
+ "loss": 3.5563712120056152,
+ "step": 3762
+ },
+ {
+ "epoch": 52.265618173875055,
+ "grad_norm": 0.2073400765657425,
+ "learning_rate": 0.0006,
+ "loss": 3.542343854904175,
+ "step": 3763
+ },
+ {
+ "epoch": 52.27959807776322,
+ "grad_norm": 0.21886718273162842,
+ "learning_rate": 0.0006,
+ "loss": 3.5633034706115723,
+ "step": 3764
+ },
+ {
+ "epoch": 52.293577981651374,
+ "grad_norm": 0.2218562215566635,
+ "learning_rate": 0.0006,
+ "loss": 3.5644288063049316,
+ "step": 3765
+ },
+ {
+ "epoch": 52.30755788553954,
+ "grad_norm": 0.22043557465076447,
+ "learning_rate": 0.0006,
+ "loss": 3.564373731613159,
+ "step": 3766
+ },
+ {
+ "epoch": 52.3215377894277,
+ "grad_norm": 0.2095082402229309,
+ "learning_rate": 0.0006,
+ "loss": 3.5336289405822754,
+ "step": 3767
+ },
+ {
+ "epoch": 52.33551769331586,
+ "grad_norm": 0.21115876734256744,
+ "learning_rate": 0.0006,
+ "loss": 3.5761165618896484,
+ "step": 3768
+ },
+ {
+ "epoch": 52.34949759720402,
+ "grad_norm": 0.21558400988578796,
+ "learning_rate": 0.0006,
+ "loss": 3.573495388031006,
+ "step": 3769
+ },
+ {
+ "epoch": 52.36347750109218,
+ "grad_norm": 0.213745579123497,
+ "learning_rate": 0.0006,
+ "loss": 3.572171211242676,
+ "step": 3770
+ },
+ {
+ "epoch": 52.37745740498034,
+ "grad_norm": 0.1926180124282837,
+ "learning_rate": 0.0006,
+ "loss": 3.532592535018921,
+ "step": 3771
+ },
+ {
+ "epoch": 52.391437308868504,
+ "grad_norm": 0.1993863731622696,
+ "learning_rate": 0.0006,
+ "loss": 3.551880359649658,
+ "step": 3772
+ },
+ {
+ "epoch": 52.40541721275666,
+ "grad_norm": 0.2018740326166153,
+ "learning_rate": 0.0006,
+ "loss": 3.557328701019287,
+ "step": 3773
+ },
+ {
+ "epoch": 52.419397116644824,
+ "grad_norm": 0.19035610556602478,
+ "learning_rate": 0.0006,
+ "loss": 3.600301504135132,
+ "step": 3774
+ },
+ {
+ "epoch": 52.43337702053299,
+ "grad_norm": 0.20069538056850433,
+ "learning_rate": 0.0006,
+ "loss": 3.5938944816589355,
+ "step": 3775
+ },
+ {
+ "epoch": 52.44735692442114,
+ "grad_norm": 0.21255625784397125,
+ "learning_rate": 0.0006,
+ "loss": 3.561086893081665,
+ "step": 3776
+ },
+ {
+ "epoch": 52.46133682830931,
+ "grad_norm": 0.20132070779800415,
+ "learning_rate": 0.0006,
+ "loss": 3.5525574684143066,
+ "step": 3777
+ },
+ {
+ "epoch": 52.47531673219746,
+ "grad_norm": 0.20152916014194489,
+ "learning_rate": 0.0006,
+ "loss": 3.5697402954101562,
+ "step": 3778
+ },
+ {
+ "epoch": 52.489296636085626,
+ "grad_norm": 0.1984269767999649,
+ "learning_rate": 0.0006,
+ "loss": 3.5686168670654297,
+ "step": 3779
+ },
+ {
+ "epoch": 52.50327653997379,
+ "grad_norm": 0.212612584233284,
+ "learning_rate": 0.0006,
+ "loss": 3.5522124767303467,
+ "step": 3780
+ },
+ {
+ "epoch": 52.517256443861946,
+ "grad_norm": 0.21382521092891693,
+ "learning_rate": 0.0006,
+ "loss": 3.5692944526672363,
+ "step": 3781
+ },
+ {
+ "epoch": 52.53123634775011,
+ "grad_norm": 0.2118486911058426,
+ "learning_rate": 0.0006,
+ "loss": 3.562495708465576,
+ "step": 3782
+ },
+ {
+ "epoch": 52.54521625163827,
+ "grad_norm": 0.22253486514091492,
+ "learning_rate": 0.0006,
+ "loss": 3.5709781646728516,
+ "step": 3783
+ },
+ {
+ "epoch": 52.55919615552643,
+ "grad_norm": 0.23701436817646027,
+ "learning_rate": 0.0006,
+ "loss": 3.548953056335449,
+ "step": 3784
+ },
+ {
+ "epoch": 52.57317605941459,
+ "grad_norm": 0.21345193684101105,
+ "learning_rate": 0.0006,
+ "loss": 3.543029308319092,
+ "step": 3785
+ },
+ {
+ "epoch": 52.58715596330275,
+ "grad_norm": 0.1854170262813568,
+ "learning_rate": 0.0006,
+ "loss": 3.5490989685058594,
+ "step": 3786
+ },
+ {
+ "epoch": 52.60113586719091,
+ "grad_norm": 0.23733633756637573,
+ "learning_rate": 0.0006,
+ "loss": 3.5800132751464844,
+ "step": 3787
+ },
+ {
+ "epoch": 52.615115771079076,
+ "grad_norm": 0.26175495982170105,
+ "learning_rate": 0.0006,
+ "loss": 3.562596321105957,
+ "step": 3788
+ },
+ {
+ "epoch": 52.62909567496723,
+ "grad_norm": 0.23134057223796844,
+ "learning_rate": 0.0006,
+ "loss": 3.5685765743255615,
+ "step": 3789
+ },
+ {
+ "epoch": 52.643075578855395,
+ "grad_norm": 0.1974988877773285,
+ "learning_rate": 0.0006,
+ "loss": 3.570517063140869,
+ "step": 3790
+ },
+ {
+ "epoch": 52.65705548274356,
+ "grad_norm": 0.20049697160720825,
+ "learning_rate": 0.0006,
+ "loss": 3.573286533355713,
+ "step": 3791
+ },
+ {
+ "epoch": 52.671035386631715,
+ "grad_norm": 0.1956445872783661,
+ "learning_rate": 0.0006,
+ "loss": 3.565880537033081,
+ "step": 3792
+ },
+ {
+ "epoch": 52.68501529051988,
+ "grad_norm": 0.2082354575395584,
+ "learning_rate": 0.0006,
+ "loss": 3.587278366088867,
+ "step": 3793
+ },
+ {
+ "epoch": 52.69899519440804,
+ "grad_norm": 0.20923161506652832,
+ "learning_rate": 0.0006,
+ "loss": 3.569469451904297,
+ "step": 3794
+ },
+ {
+ "epoch": 52.7129750982962,
+ "grad_norm": 0.20482848584651947,
+ "learning_rate": 0.0006,
+ "loss": 3.5826265811920166,
+ "step": 3795
+ },
+ {
+ "epoch": 52.72695500218436,
+ "grad_norm": 0.20411530137062073,
+ "learning_rate": 0.0006,
+ "loss": 3.5870275497436523,
+ "step": 3796
+ },
+ {
+ "epoch": 52.74093490607252,
+ "grad_norm": 0.2205485701560974,
+ "learning_rate": 0.0006,
+ "loss": 3.58900785446167,
+ "step": 3797
+ },
+ {
+ "epoch": 52.75491480996068,
+ "grad_norm": 0.21134008467197418,
+ "learning_rate": 0.0006,
+ "loss": 3.591036558151245,
+ "step": 3798
+ },
+ {
+ "epoch": 52.768894713848844,
+ "grad_norm": 0.20001831650733948,
+ "learning_rate": 0.0006,
+ "loss": 3.5670390129089355,
+ "step": 3799
+ },
+ {
+ "epoch": 52.782874617737,
+ "grad_norm": 0.2175939679145813,
+ "learning_rate": 0.0006,
+ "loss": 3.594132423400879,
+ "step": 3800
+ },
+ {
+ "epoch": 52.796854521625164,
+ "grad_norm": 0.22054694592952728,
+ "learning_rate": 0.0006,
+ "loss": 3.5565545558929443,
+ "step": 3801
+ },
+ {
+ "epoch": 52.81083442551333,
+ "grad_norm": 0.22901731729507446,
+ "learning_rate": 0.0006,
+ "loss": 3.5837020874023438,
+ "step": 3802
+ },
+ {
+ "epoch": 52.824814329401484,
+ "grad_norm": 0.22492778301239014,
+ "learning_rate": 0.0006,
+ "loss": 3.608218193054199,
+ "step": 3803
+ },
+ {
+ "epoch": 52.83879423328965,
+ "grad_norm": 0.21645256876945496,
+ "learning_rate": 0.0006,
+ "loss": 3.5839202404022217,
+ "step": 3804
+ },
+ {
+ "epoch": 52.8527741371778,
+ "grad_norm": 0.19680161774158478,
+ "learning_rate": 0.0006,
+ "loss": 3.568756580352783,
+ "step": 3805
+ },
+ {
+ "epoch": 52.86675404106597,
+ "grad_norm": 0.2084486186504364,
+ "learning_rate": 0.0006,
+ "loss": 3.580197811126709,
+ "step": 3806
+ },
+ {
+ "epoch": 52.88073394495413,
+ "grad_norm": 0.19380393624305725,
+ "learning_rate": 0.0006,
+ "loss": 3.5871198177337646,
+ "step": 3807
+ },
+ {
+ "epoch": 52.89471384884229,
+ "grad_norm": 0.1962910294532776,
+ "learning_rate": 0.0006,
+ "loss": 3.5878777503967285,
+ "step": 3808
+ },
+ {
+ "epoch": 52.90869375273045,
+ "grad_norm": 0.23292803764343262,
+ "learning_rate": 0.0006,
+ "loss": 3.574855327606201,
+ "step": 3809
+ },
+ {
+ "epoch": 52.92267365661861,
+ "grad_norm": 0.26974233984947205,
+ "learning_rate": 0.0006,
+ "loss": 3.5731749534606934,
+ "step": 3810
+ },
+ {
+ "epoch": 52.93665356050677,
+ "grad_norm": 0.26665496826171875,
+ "learning_rate": 0.0006,
+ "loss": 3.552717685699463,
+ "step": 3811
+ },
+ {
+ "epoch": 52.95063346439493,
+ "grad_norm": 0.24156489968299866,
+ "learning_rate": 0.0006,
+ "loss": 3.581787109375,
+ "step": 3812
+ },
+ {
+ "epoch": 52.964613368283096,
+ "grad_norm": 0.22062325477600098,
+ "learning_rate": 0.0006,
+ "loss": 3.578994035720825,
+ "step": 3813
+ },
+ {
+ "epoch": 52.97859327217125,
+ "grad_norm": 0.19949151575565338,
+ "learning_rate": 0.0006,
+ "loss": 3.6157355308532715,
+ "step": 3814
+ },
+ {
+ "epoch": 52.992573176059416,
+ "grad_norm": 0.2157975435256958,
+ "learning_rate": 0.0006,
+ "loss": 3.5677759647369385,
+ "step": 3815
+ },
+ {
+ "epoch": 53.0,
+ "grad_norm": 0.23285679519176483,
+ "learning_rate": 0.0006,
+ "loss": 3.5541789531707764,
+ "step": 3816
+ },
+ {
+ "epoch": 53.0,
+ "eval_loss": 3.9737255573272705,
+ "eval_runtime": 46.0304,
+ "eval_samples_per_second": 53.052,
+ "eval_steps_per_second": 3.324,
+ "step": 3816
+ },
+ {
+ "epoch": 53.01397990388816,
+ "grad_norm": 0.212715283036232,
+ "learning_rate": 0.0006,
+ "loss": 3.5475640296936035,
+ "step": 3817
+ },
+ {
+ "epoch": 53.02795980777632,
+ "grad_norm": 0.24556505680084229,
+ "learning_rate": 0.0006,
+ "loss": 3.5197463035583496,
+ "step": 3818
+ },
+ {
+ "epoch": 53.04193971166448,
+ "grad_norm": 0.2898217737674713,
+ "learning_rate": 0.0006,
+ "loss": 3.527390956878662,
+ "step": 3819
+ },
+ {
+ "epoch": 53.05591961555265,
+ "grad_norm": 0.26151803135871887,
+ "learning_rate": 0.0006,
+ "loss": 3.5462024211883545,
+ "step": 3820
+ },
+ {
+ "epoch": 53.0698995194408,
+ "grad_norm": 0.24648059904575348,
+ "learning_rate": 0.0006,
+ "loss": 3.5584919452667236,
+ "step": 3821
+ },
+ {
+ "epoch": 53.083879423328966,
+ "grad_norm": 0.22295059263706207,
+ "learning_rate": 0.0006,
+ "loss": 3.517195701599121,
+ "step": 3822
+ },
+ {
+ "epoch": 53.09785932721712,
+ "grad_norm": 0.2206476330757141,
+ "learning_rate": 0.0006,
+ "loss": 3.570678234100342,
+ "step": 3823
+ },
+ {
+ "epoch": 53.111839231105286,
+ "grad_norm": 0.22069714963436127,
+ "learning_rate": 0.0006,
+ "loss": 3.5707359313964844,
+ "step": 3824
+ },
+ {
+ "epoch": 53.12581913499345,
+ "grad_norm": 0.21850740909576416,
+ "learning_rate": 0.0006,
+ "loss": 3.5730209350585938,
+ "step": 3825
+ },
+ {
+ "epoch": 53.139799038881605,
+ "grad_norm": 0.21554340422153473,
+ "learning_rate": 0.0006,
+ "loss": 3.5578367710113525,
+ "step": 3826
+ },
+ {
+ "epoch": 53.15377894276977,
+ "grad_norm": 0.21678747236728668,
+ "learning_rate": 0.0006,
+ "loss": 3.5603280067443848,
+ "step": 3827
+ },
+ {
+ "epoch": 53.16775884665793,
+ "grad_norm": 0.22017014026641846,
+ "learning_rate": 0.0006,
+ "loss": 3.577760696411133,
+ "step": 3828
+ },
+ {
+ "epoch": 53.18173875054609,
+ "grad_norm": 0.20485524833202362,
+ "learning_rate": 0.0006,
+ "loss": 3.574751853942871,
+ "step": 3829
+ },
+ {
+ "epoch": 53.19571865443425,
+ "grad_norm": 0.22951237857341766,
+ "learning_rate": 0.0006,
+ "loss": 3.5464377403259277,
+ "step": 3830
+ },
+ {
+ "epoch": 53.20969855832241,
+ "grad_norm": 0.2343965619802475,
+ "learning_rate": 0.0006,
+ "loss": 3.516113758087158,
+ "step": 3831
+ },
+ {
+ "epoch": 53.22367846221057,
+ "grad_norm": 0.24002069234848022,
+ "learning_rate": 0.0006,
+ "loss": 3.564629554748535,
+ "step": 3832
+ },
+ {
+ "epoch": 53.237658366098735,
+ "grad_norm": 0.23933765292167664,
+ "learning_rate": 0.0006,
+ "loss": 3.5518507957458496,
+ "step": 3833
+ },
+ {
+ "epoch": 53.25163826998689,
+ "grad_norm": 0.2188953459262848,
+ "learning_rate": 0.0006,
+ "loss": 3.5341856479644775,
+ "step": 3834
+ },
+ {
+ "epoch": 53.265618173875055,
+ "grad_norm": 0.22629091143608093,
+ "learning_rate": 0.0006,
+ "loss": 3.5479273796081543,
+ "step": 3835
+ },
+ {
+ "epoch": 53.27959807776322,
+ "grad_norm": 0.2386554479598999,
+ "learning_rate": 0.0006,
+ "loss": 3.6097445487976074,
+ "step": 3836
+ },
+ {
+ "epoch": 53.293577981651374,
+ "grad_norm": 0.23003390431404114,
+ "learning_rate": 0.0006,
+ "loss": 3.5435304641723633,
+ "step": 3837
+ },
+ {
+ "epoch": 53.30755788553954,
+ "grad_norm": 0.248053640127182,
+ "learning_rate": 0.0006,
+ "loss": 3.545290470123291,
+ "step": 3838
+ },
+ {
+ "epoch": 53.3215377894277,
+ "grad_norm": 0.23945583403110504,
+ "learning_rate": 0.0006,
+ "loss": 3.570158004760742,
+ "step": 3839
+ },
+ {
+ "epoch": 53.33551769331586,
+ "grad_norm": 0.22801059484481812,
+ "learning_rate": 0.0006,
+ "loss": 3.5600779056549072,
+ "step": 3840
+ },
+ {
+ "epoch": 53.34949759720402,
+ "grad_norm": 0.2303777039051056,
+ "learning_rate": 0.0006,
+ "loss": 3.576674222946167,
+ "step": 3841
+ },
+ {
+ "epoch": 53.36347750109218,
+ "grad_norm": 0.23318468034267426,
+ "learning_rate": 0.0006,
+ "loss": 3.5705552101135254,
+ "step": 3842
+ },
+ {
+ "epoch": 53.37745740498034,
+ "grad_norm": 0.2435566782951355,
+ "learning_rate": 0.0006,
+ "loss": 3.576536178588867,
+ "step": 3843
+ },
+ {
+ "epoch": 53.391437308868504,
+ "grad_norm": 0.2857200503349304,
+ "learning_rate": 0.0006,
+ "loss": 3.535977363586426,
+ "step": 3844
+ },
+ {
+ "epoch": 53.40541721275666,
+ "grad_norm": 0.2640133500099182,
+ "learning_rate": 0.0006,
+ "loss": 3.547731399536133,
+ "step": 3845
+ },
+ {
+ "epoch": 53.419397116644824,
+ "grad_norm": 0.22218745946884155,
+ "learning_rate": 0.0006,
+ "loss": 3.5798351764678955,
+ "step": 3846
+ },
+ {
+ "epoch": 53.43337702053299,
+ "grad_norm": 0.2537193298339844,
+ "learning_rate": 0.0006,
+ "loss": 3.5289204120635986,
+ "step": 3847
+ },
+ {
+ "epoch": 53.44735692442114,
+ "grad_norm": 0.28360968828201294,
+ "learning_rate": 0.0006,
+ "loss": 3.5503361225128174,
+ "step": 3848
+ },
+ {
+ "epoch": 53.46133682830931,
+ "grad_norm": 0.2892421782016754,
+ "learning_rate": 0.0006,
+ "loss": 3.5675411224365234,
+ "step": 3849
+ },
+ {
+ "epoch": 53.47531673219746,
+ "grad_norm": 0.28305584192276,
+ "learning_rate": 0.0006,
+ "loss": 3.573280096054077,
+ "step": 3850
+ },
+ {
+ "epoch": 53.489296636085626,
+ "grad_norm": 0.24628037214279175,
+ "learning_rate": 0.0006,
+ "loss": 3.5215024948120117,
+ "step": 3851
+ },
+ {
+ "epoch": 53.50327653997379,
+ "grad_norm": 0.2463715672492981,
+ "learning_rate": 0.0006,
+ "loss": 3.5790698528289795,
+ "step": 3852
+ },
+ {
+ "epoch": 53.517256443861946,
+ "grad_norm": 0.2646636664867401,
+ "learning_rate": 0.0006,
+ "loss": 3.589735269546509,
+ "step": 3853
+ },
+ {
+ "epoch": 53.53123634775011,
+ "grad_norm": 0.27668821811676025,
+ "learning_rate": 0.0006,
+ "loss": 3.5690393447875977,
+ "step": 3854
+ },
+ {
+ "epoch": 53.54521625163827,
+ "grad_norm": 0.2630347013473511,
+ "learning_rate": 0.0006,
+ "loss": 3.5846545696258545,
+ "step": 3855
+ },
+ {
+ "epoch": 53.55919615552643,
+ "grad_norm": 0.27177906036376953,
+ "learning_rate": 0.0006,
+ "loss": 3.5431671142578125,
+ "step": 3856
+ },
+ {
+ "epoch": 53.57317605941459,
+ "grad_norm": 0.27125081419944763,
+ "learning_rate": 0.0006,
+ "loss": 3.5905215740203857,
+ "step": 3857
+ },
+ {
+ "epoch": 53.58715596330275,
+ "grad_norm": 0.24802975356578827,
+ "learning_rate": 0.0006,
+ "loss": 3.5472917556762695,
+ "step": 3858
+ },
+ {
+ "epoch": 53.60113586719091,
+ "grad_norm": 0.23812460899353027,
+ "learning_rate": 0.0006,
+ "loss": 3.5917325019836426,
+ "step": 3859
+ },
+ {
+ "epoch": 53.615115771079076,
+ "grad_norm": 0.2597416937351227,
+ "learning_rate": 0.0006,
+ "loss": 3.5515074729919434,
+ "step": 3860
+ },
+ {
+ "epoch": 53.62909567496723,
+ "grad_norm": 0.24389132857322693,
+ "learning_rate": 0.0006,
+ "loss": 3.578125476837158,
+ "step": 3861
+ },
+ {
+ "epoch": 53.643075578855395,
+ "grad_norm": 0.23878274857997894,
+ "learning_rate": 0.0006,
+ "loss": 3.5612001419067383,
+ "step": 3862
+ },
+ {
+ "epoch": 53.65705548274356,
+ "grad_norm": 0.23248082399368286,
+ "learning_rate": 0.0006,
+ "loss": 3.5651350021362305,
+ "step": 3863
+ },
+ {
+ "epoch": 53.671035386631715,
+ "grad_norm": 0.22560833394527435,
+ "learning_rate": 0.0006,
+ "loss": 3.58971905708313,
+ "step": 3864
+ },
+ {
+ "epoch": 53.68501529051988,
+ "grad_norm": 0.22092120349407196,
+ "learning_rate": 0.0006,
+ "loss": 3.5567374229431152,
+ "step": 3865
+ },
+ {
+ "epoch": 53.69899519440804,
+ "grad_norm": 0.20171885192394257,
+ "learning_rate": 0.0006,
+ "loss": 3.5868449211120605,
+ "step": 3866
+ },
+ {
+ "epoch": 53.7129750982962,
+ "grad_norm": 0.2051871120929718,
+ "learning_rate": 0.0006,
+ "loss": 3.5853161811828613,
+ "step": 3867
+ },
+ {
+ "epoch": 53.72695500218436,
+ "grad_norm": 0.1912045031785965,
+ "learning_rate": 0.0006,
+ "loss": 3.5901622772216797,
+ "step": 3868
+ },
+ {
+ "epoch": 53.74093490607252,
+ "grad_norm": 0.20817188918590546,
+ "learning_rate": 0.0006,
+ "loss": 3.5759787559509277,
+ "step": 3869
+ },
+ {
+ "epoch": 53.75491480996068,
+ "grad_norm": 0.2157917469739914,
+ "learning_rate": 0.0006,
+ "loss": 3.5438575744628906,
+ "step": 3870
+ },
+ {
+ "epoch": 53.768894713848844,
+ "grad_norm": 0.2332053929567337,
+ "learning_rate": 0.0006,
+ "loss": 3.587697982788086,
+ "step": 3871
+ },
+ {
+ "epoch": 53.782874617737,
+ "grad_norm": 0.22700314223766327,
+ "learning_rate": 0.0006,
+ "loss": 3.586625337600708,
+ "step": 3872
+ },
+ {
+ "epoch": 53.796854521625164,
+ "grad_norm": 0.20737017691135406,
+ "learning_rate": 0.0006,
+ "loss": 3.552398204803467,
+ "step": 3873
+ },
+ {
+ "epoch": 53.81083442551333,
+ "grad_norm": 0.20355650782585144,
+ "learning_rate": 0.0006,
+ "loss": 3.5734331607818604,
+ "step": 3874
+ },
+ {
+ "epoch": 53.824814329401484,
+ "grad_norm": 0.18868018686771393,
+ "learning_rate": 0.0006,
+ "loss": 3.582509756088257,
+ "step": 3875
+ },
+ {
+ "epoch": 53.83879423328965,
+ "grad_norm": 0.20373275876045227,
+ "learning_rate": 0.0006,
+ "loss": 3.559354782104492,
+ "step": 3876
+ },
+ {
+ "epoch": 53.8527741371778,
+ "grad_norm": 0.1988871544599533,
+ "learning_rate": 0.0006,
+ "loss": 3.5575170516967773,
+ "step": 3877
+ },
+ {
+ "epoch": 53.86675404106597,
+ "grad_norm": 0.19602873921394348,
+ "learning_rate": 0.0006,
+ "loss": 3.5500855445861816,
+ "step": 3878
+ },
+ {
+ "epoch": 53.88073394495413,
+ "grad_norm": 0.201382577419281,
+ "learning_rate": 0.0006,
+ "loss": 3.563499927520752,
+ "step": 3879
+ },
+ {
+ "epoch": 53.89471384884229,
+ "grad_norm": 0.19682180881500244,
+ "learning_rate": 0.0006,
+ "loss": 3.586855888366699,
+ "step": 3880
+ },
+ {
+ "epoch": 53.90869375273045,
+ "grad_norm": 0.19423548877239227,
+ "learning_rate": 0.0006,
+ "loss": 3.5840401649475098,
+ "step": 3881
+ },
+ {
+ "epoch": 53.92267365661861,
+ "grad_norm": 0.1970449835062027,
+ "learning_rate": 0.0006,
+ "loss": 3.554568290710449,
+ "step": 3882
+ },
+ {
+ "epoch": 53.93665356050677,
+ "grad_norm": 0.20274291932582855,
+ "learning_rate": 0.0006,
+ "loss": 3.5928239822387695,
+ "step": 3883
+ },
+ {
+ "epoch": 53.95063346439493,
+ "grad_norm": 0.18485035002231598,
+ "learning_rate": 0.0006,
+ "loss": 3.576934337615967,
+ "step": 3884
+ },
+ {
+ "epoch": 53.964613368283096,
+ "grad_norm": 0.18437646329402924,
+ "learning_rate": 0.0006,
+ "loss": 3.574990749359131,
+ "step": 3885
+ },
+ {
+ "epoch": 53.97859327217125,
+ "grad_norm": 0.18616823852062225,
+ "learning_rate": 0.0006,
+ "loss": 3.5566892623901367,
+ "step": 3886
+ },
+ {
+ "epoch": 53.992573176059416,
+ "grad_norm": 0.19502122700214386,
+ "learning_rate": 0.0006,
+ "loss": 3.604814052581787,
+ "step": 3887
+ },
+ {
+ "epoch": 54.0,
+ "grad_norm": 0.2657789885997772,
+ "learning_rate": 0.0006,
+ "loss": 3.5094165802001953,
+ "step": 3888
+ },
+ {
+ "epoch": 54.0,
+ "eval_loss": 3.965742349624634,
+ "eval_runtime": 45.5851,
+ "eval_samples_per_second": 53.57,
+ "eval_steps_per_second": 3.356,
+ "step": 3888
+ },
+ {
+ "epoch": 54.01397990388816,
+ "grad_norm": 0.27879253029823303,
+ "learning_rate": 0.0006,
+ "loss": 3.565103530883789,
+ "step": 3889
+ },
+ {
+ "epoch": 54.02795980777632,
+ "grad_norm": 0.2959246337413788,
+ "learning_rate": 0.0006,
+ "loss": 3.5378212928771973,
+ "step": 3890
+ },
+ {
+ "epoch": 54.04193971166448,
+ "grad_norm": 0.32719552516937256,
+ "learning_rate": 0.0006,
+ "loss": 3.5566751956939697,
+ "step": 3891
+ },
+ {
+ "epoch": 54.05591961555265,
+ "grad_norm": 0.36854541301727295,
+ "learning_rate": 0.0006,
+ "loss": 3.5363879203796387,
+ "step": 3892
+ },
+ {
+ "epoch": 54.0698995194408,
+ "grad_norm": 0.34325551986694336,
+ "learning_rate": 0.0006,
+ "loss": 3.5306153297424316,
+ "step": 3893
+ },
+ {
+ "epoch": 54.083879423328966,
+ "grad_norm": 0.2798653244972229,
+ "learning_rate": 0.0006,
+ "loss": 3.5642261505126953,
+ "step": 3894
+ },
+ {
+ "epoch": 54.09785932721712,
+ "grad_norm": 0.24857765436172485,
+ "learning_rate": 0.0006,
+ "loss": 3.50216007232666,
+ "step": 3895
+ },
+ {
+ "epoch": 54.111839231105286,
+ "grad_norm": 0.2943299114704132,
+ "learning_rate": 0.0006,
+ "loss": 3.524904251098633,
+ "step": 3896
+ },
+ {
+ "epoch": 54.12581913499345,
+ "grad_norm": 0.2791048586368561,
+ "learning_rate": 0.0006,
+ "loss": 3.56490421295166,
+ "step": 3897
+ },
+ {
+ "epoch": 54.139799038881605,
+ "grad_norm": 0.2781159579753876,
+ "learning_rate": 0.0006,
+ "loss": 3.536180019378662,
+ "step": 3898
+ },
+ {
+ "epoch": 54.15377894276977,
+ "grad_norm": 0.30359897017478943,
+ "learning_rate": 0.0006,
+ "loss": 3.546919345855713,
+ "step": 3899
+ },
+ {
+ "epoch": 54.16775884665793,
+ "grad_norm": 0.2738530933856964,
+ "learning_rate": 0.0006,
+ "loss": 3.547968864440918,
+ "step": 3900
+ },
+ {
+ "epoch": 54.18173875054609,
+ "grad_norm": 0.24783718585968018,
+ "learning_rate": 0.0006,
+ "loss": 3.5802721977233887,
+ "step": 3901
+ },
+ {
+ "epoch": 54.19571865443425,
+ "grad_norm": 0.2544802725315094,
+ "learning_rate": 0.0006,
+ "loss": 3.5556836128234863,
+ "step": 3902
+ },
+ {
+ "epoch": 54.20969855832241,
+ "grad_norm": 0.26695969700813293,
+ "learning_rate": 0.0006,
+ "loss": 3.534266471862793,
+ "step": 3903
+ },
+ {
+ "epoch": 54.22367846221057,
+ "grad_norm": 0.24152538180351257,
+ "learning_rate": 0.0006,
+ "loss": 3.534069538116455,
+ "step": 3904
+ },
+ {
+ "epoch": 54.237658366098735,
+ "grad_norm": 0.21859917044639587,
+ "learning_rate": 0.0006,
+ "loss": 3.535362958908081,
+ "step": 3905
+ },
+ {
+ "epoch": 54.25163826998689,
+ "grad_norm": 0.24676479399204254,
+ "learning_rate": 0.0006,
+ "loss": 3.567283868789673,
+ "step": 3906
+ },
+ {
+ "epoch": 54.265618173875055,
+ "grad_norm": 0.26998138427734375,
+ "learning_rate": 0.0006,
+ "loss": 3.518892765045166,
+ "step": 3907
+ },
+ {
+ "epoch": 54.27959807776322,
+ "grad_norm": 0.30108749866485596,
+ "learning_rate": 0.0006,
+ "loss": 3.5865135192871094,
+ "step": 3908
+ },
+ {
+ "epoch": 54.293577981651374,
+ "grad_norm": 0.31310492753982544,
+ "learning_rate": 0.0006,
+ "loss": 3.546637535095215,
+ "step": 3909
+ },
+ {
+ "epoch": 54.30755788553954,
+ "grad_norm": 0.2994784712791443,
+ "learning_rate": 0.0006,
+ "loss": 3.5441226959228516,
+ "step": 3910
+ },
+ {
+ "epoch": 54.3215377894277,
+ "grad_norm": 0.25010061264038086,
+ "learning_rate": 0.0006,
+ "loss": 3.5619735717773438,
+ "step": 3911
+ },
+ {
+ "epoch": 54.33551769331586,
+ "grad_norm": 0.253129780292511,
+ "learning_rate": 0.0006,
+ "loss": 3.530210494995117,
+ "step": 3912
+ },
+ {
+ "epoch": 54.34949759720402,
+ "grad_norm": 0.2652498781681061,
+ "learning_rate": 0.0006,
+ "loss": 3.534478187561035,
+ "step": 3913
+ },
+ {
+ "epoch": 54.36347750109218,
+ "grad_norm": 0.250503808259964,
+ "learning_rate": 0.0006,
+ "loss": 3.545886516571045,
+ "step": 3914
+ },
+ {
+ "epoch": 54.37745740498034,
+ "grad_norm": 0.22186073660850525,
+ "learning_rate": 0.0006,
+ "loss": 3.5884604454040527,
+ "step": 3915
+ },
+ {
+ "epoch": 54.391437308868504,
+ "grad_norm": 0.21128980815410614,
+ "learning_rate": 0.0006,
+ "loss": 3.527862548828125,
+ "step": 3916
+ },
+ {
+ "epoch": 54.40541721275666,
+ "grad_norm": 0.23184002935886383,
+ "learning_rate": 0.0006,
+ "loss": 3.5599637031555176,
+ "step": 3917
+ },
+ {
+ "epoch": 54.419397116644824,
+ "grad_norm": 0.23710627853870392,
+ "learning_rate": 0.0006,
+ "loss": 3.54667329788208,
+ "step": 3918
+ },
+ {
+ "epoch": 54.43337702053299,
+ "grad_norm": 0.2314598113298416,
+ "learning_rate": 0.0006,
+ "loss": 3.518406391143799,
+ "step": 3919
+ },
+ {
+ "epoch": 54.44735692442114,
+ "grad_norm": 0.21623452007770538,
+ "learning_rate": 0.0006,
+ "loss": 3.5749731063842773,
+ "step": 3920
+ },
+ {
+ "epoch": 54.46133682830931,
+ "grad_norm": 0.22832012176513672,
+ "learning_rate": 0.0006,
+ "loss": 3.57436466217041,
+ "step": 3921
+ },
+ {
+ "epoch": 54.47531673219746,
+ "grad_norm": 0.2184043526649475,
+ "learning_rate": 0.0006,
+ "loss": 3.578040838241577,
+ "step": 3922
+ },
+ {
+ "epoch": 54.489296636085626,
+ "grad_norm": 0.2302335649728775,
+ "learning_rate": 0.0006,
+ "loss": 3.5646257400512695,
+ "step": 3923
+ },
+ {
+ "epoch": 54.50327653997379,
+ "grad_norm": 0.21635375916957855,
+ "learning_rate": 0.0006,
+ "loss": 3.546786308288574,
+ "step": 3924
+ },
+ {
+ "epoch": 54.517256443861946,
+ "grad_norm": 0.22332443296909332,
+ "learning_rate": 0.0006,
+ "loss": 3.5804502964019775,
+ "step": 3925
+ },
+ {
+ "epoch": 54.53123634775011,
+ "grad_norm": 0.21662919223308563,
+ "learning_rate": 0.0006,
+ "loss": 3.567797899246216,
+ "step": 3926
+ },
+ {
+ "epoch": 54.54521625163827,
+ "grad_norm": 0.21345169842243195,
+ "learning_rate": 0.0006,
+ "loss": 3.5746283531188965,
+ "step": 3927
+ },
+ {
+ "epoch": 54.55919615552643,
+ "grad_norm": 0.2111794501543045,
+ "learning_rate": 0.0006,
+ "loss": 3.5626277923583984,
+ "step": 3928
+ },
+ {
+ "epoch": 54.57317605941459,
+ "grad_norm": 0.22575712203979492,
+ "learning_rate": 0.0006,
+ "loss": 3.5856311321258545,
+ "step": 3929
+ },
+ {
+ "epoch": 54.58715596330275,
+ "grad_norm": 0.22963617742061615,
+ "learning_rate": 0.0006,
+ "loss": 3.584038257598877,
+ "step": 3930
+ },
+ {
+ "epoch": 54.60113586719091,
+ "grad_norm": 0.21805310249328613,
+ "learning_rate": 0.0006,
+ "loss": 3.5603089332580566,
+ "step": 3931
+ },
+ {
+ "epoch": 54.615115771079076,
+ "grad_norm": 0.22830283641815186,
+ "learning_rate": 0.0006,
+ "loss": 3.5533390045166016,
+ "step": 3932
+ },
+ {
+ "epoch": 54.62909567496723,
+ "grad_norm": 0.24158291518688202,
+ "learning_rate": 0.0006,
+ "loss": 3.5437779426574707,
+ "step": 3933
+ },
+ {
+ "epoch": 54.643075578855395,
+ "grad_norm": 0.22687768936157227,
+ "learning_rate": 0.0006,
+ "loss": 3.566315174102783,
+ "step": 3934
+ },
+ {
+ "epoch": 54.65705548274356,
+ "grad_norm": 0.21220184862613678,
+ "learning_rate": 0.0006,
+ "loss": 3.5772881507873535,
+ "step": 3935
+ },
+ {
+ "epoch": 54.671035386631715,
+ "grad_norm": 0.19508333504199982,
+ "learning_rate": 0.0006,
+ "loss": 3.5213584899902344,
+ "step": 3936
+ },
+ {
+ "epoch": 54.68501529051988,
+ "grad_norm": 0.199599027633667,
+ "learning_rate": 0.0006,
+ "loss": 3.553925037384033,
+ "step": 3937
+ },
+ {
+ "epoch": 54.69899519440804,
+ "grad_norm": 0.2063189297914505,
+ "learning_rate": 0.0006,
+ "loss": 3.5706050395965576,
+ "step": 3938
+ },
+ {
+ "epoch": 54.7129750982962,
+ "grad_norm": 0.2056119441986084,
+ "learning_rate": 0.0006,
+ "loss": 3.557199478149414,
+ "step": 3939
+ },
+ {
+ "epoch": 54.72695500218436,
+ "grad_norm": 0.2192074954509735,
+ "learning_rate": 0.0006,
+ "loss": 3.5869479179382324,
+ "step": 3940
+ },
+ {
+ "epoch": 54.74093490607252,
+ "grad_norm": 0.19796597957611084,
+ "learning_rate": 0.0006,
+ "loss": 3.559929609298706,
+ "step": 3941
+ },
+ {
+ "epoch": 54.75491480996068,
+ "grad_norm": 0.19003179669380188,
+ "learning_rate": 0.0006,
+ "loss": 3.5481486320495605,
+ "step": 3942
+ },
+ {
+ "epoch": 54.768894713848844,
+ "grad_norm": 0.189231738448143,
+ "learning_rate": 0.0006,
+ "loss": 3.5603561401367188,
+ "step": 3943
+ },
+ {
+ "epoch": 54.782874617737,
+ "grad_norm": 0.20949427783489227,
+ "learning_rate": 0.0006,
+ "loss": 3.567026138305664,
+ "step": 3944
+ },
+ {
+ "epoch": 54.796854521625164,
+ "grad_norm": 0.21650178730487823,
+ "learning_rate": 0.0006,
+ "loss": 3.5981621742248535,
+ "step": 3945
+ },
+ {
+ "epoch": 54.81083442551333,
+ "grad_norm": 0.21941770613193512,
+ "learning_rate": 0.0006,
+ "loss": 3.590226173400879,
+ "step": 3946
+ },
+ {
+ "epoch": 54.824814329401484,
+ "grad_norm": 0.2169734537601471,
+ "learning_rate": 0.0006,
+ "loss": 3.592764139175415,
+ "step": 3947
+ },
+ {
+ "epoch": 54.83879423328965,
+ "grad_norm": 0.20309467613697052,
+ "learning_rate": 0.0006,
+ "loss": 3.5706393718719482,
+ "step": 3948
+ },
+ {
+ "epoch": 54.8527741371778,
+ "grad_norm": 0.21803754568099976,
+ "learning_rate": 0.0006,
+ "loss": 3.5816526412963867,
+ "step": 3949
+ },
+ {
+ "epoch": 54.86675404106597,
+ "grad_norm": 0.22217069566249847,
+ "learning_rate": 0.0006,
+ "loss": 3.5895018577575684,
+ "step": 3950
+ },
+ {
+ "epoch": 54.88073394495413,
+ "grad_norm": 0.21204866468906403,
+ "learning_rate": 0.0006,
+ "loss": 3.5574231147766113,
+ "step": 3951
+ },
+ {
+ "epoch": 54.89471384884229,
+ "grad_norm": 0.2173423171043396,
+ "learning_rate": 0.0006,
+ "loss": 3.564763069152832,
+ "step": 3952
+ },
+ {
+ "epoch": 54.90869375273045,
+ "grad_norm": 0.2039082646369934,
+ "learning_rate": 0.0006,
+ "loss": 3.59708309173584,
+ "step": 3953
+ },
+ {
+ "epoch": 54.92267365661861,
+ "grad_norm": 0.20248384773731232,
+ "learning_rate": 0.0006,
+ "loss": 3.587890148162842,
+ "step": 3954
+ },
+ {
+ "epoch": 54.93665356050677,
+ "grad_norm": 0.20693068206310272,
+ "learning_rate": 0.0006,
+ "loss": 3.5569000244140625,
+ "step": 3955
+ },
+ {
+ "epoch": 54.95063346439493,
+ "grad_norm": 0.2109357714653015,
+ "learning_rate": 0.0006,
+ "loss": 3.552126884460449,
+ "step": 3956
+ },
+ {
+ "epoch": 54.964613368283096,
+ "grad_norm": 0.2278970628976822,
+ "learning_rate": 0.0006,
+ "loss": 3.564998149871826,
+ "step": 3957
+ },
+ {
+ "epoch": 54.97859327217125,
+ "grad_norm": 0.21663756668567657,
+ "learning_rate": 0.0006,
+ "loss": 3.571608543395996,
+ "step": 3958
+ },
+ {
+ "epoch": 54.992573176059416,
+ "grad_norm": 0.19653232395648956,
+ "learning_rate": 0.0006,
+ "loss": 3.5885231494903564,
+ "step": 3959
+ },
+ {
+ "epoch": 55.0,
+ "grad_norm": 0.21956856548786163,
+ "learning_rate": 0.0006,
+ "loss": 3.4966204166412354,
+ "step": 3960
+ },
+ {
+ "epoch": 55.0,
+ "eval_loss": 3.972649097442627,
+ "eval_runtime": 45.2298,
+ "eval_samples_per_second": 53.991,
+ "eval_steps_per_second": 3.383,
+ "step": 3960
+ },
+ {
+ "epoch": 55.01397990388816,
+ "grad_norm": 0.22733832895755768,
+ "learning_rate": 0.0006,
+ "loss": 3.546975612640381,
+ "step": 3961
+ },
+ {
+ "epoch": 55.02795980777632,
+ "grad_norm": 0.25451111793518066,
+ "learning_rate": 0.0006,
+ "loss": 3.54240083694458,
+ "step": 3962
+ },
+ {
+ "epoch": 55.04193971166448,
+ "grad_norm": 0.2394949048757553,
+ "learning_rate": 0.0006,
+ "loss": 3.5492677688598633,
+ "step": 3963
+ },
+ {
+ "epoch": 55.05591961555265,
+ "grad_norm": 0.2306671440601349,
+ "learning_rate": 0.0006,
+ "loss": 3.524200916290283,
+ "step": 3964
+ },
+ {
+ "epoch": 55.0698995194408,
+ "grad_norm": 0.2307029813528061,
+ "learning_rate": 0.0006,
+ "loss": 3.509249687194824,
+ "step": 3965
+ },
+ {
+ "epoch": 55.083879423328966,
+ "grad_norm": 0.24812111258506775,
+ "learning_rate": 0.0006,
+ "loss": 3.5500473976135254,
+ "step": 3966
+ },
+ {
+ "epoch": 55.09785932721712,
+ "grad_norm": 0.28564271330833435,
+ "learning_rate": 0.0006,
+ "loss": 3.5178303718566895,
+ "step": 3967
+ },
+ {
+ "epoch": 55.111839231105286,
+ "grad_norm": 0.26979005336761475,
+ "learning_rate": 0.0006,
+ "loss": 3.5306806564331055,
+ "step": 3968
+ },
+ {
+ "epoch": 55.12581913499345,
+ "grad_norm": 0.24274848401546478,
+ "learning_rate": 0.0006,
+ "loss": 3.5758519172668457,
+ "step": 3969
+ },
+ {
+ "epoch": 55.139799038881605,
+ "grad_norm": 0.2560444474220276,
+ "learning_rate": 0.0006,
+ "loss": 3.5417323112487793,
+ "step": 3970
+ },
+ {
+ "epoch": 55.15377894276977,
+ "grad_norm": 0.2553671598434448,
+ "learning_rate": 0.0006,
+ "loss": 3.5258004665374756,
+ "step": 3971
+ },
+ {
+ "epoch": 55.16775884665793,
+ "grad_norm": 0.2170111984014511,
+ "learning_rate": 0.0006,
+ "loss": 3.514847755432129,
+ "step": 3972
+ },
+ {
+ "epoch": 55.18173875054609,
+ "grad_norm": 0.20854522287845612,
+ "learning_rate": 0.0006,
+ "loss": 3.5248336791992188,
+ "step": 3973
+ },
+ {
+ "epoch": 55.19571865443425,
+ "grad_norm": 0.21873287856578827,
+ "learning_rate": 0.0006,
+ "loss": 3.5468008518218994,
+ "step": 3974
+ },
+ {
+ "epoch": 55.20969855832241,
+ "grad_norm": 0.21194154024124146,
+ "learning_rate": 0.0006,
+ "loss": 3.568512439727783,
+ "step": 3975
+ },
+ {
+ "epoch": 55.22367846221057,
+ "grad_norm": 0.23534680902957916,
+ "learning_rate": 0.0006,
+ "loss": 3.5285420417785645,
+ "step": 3976
+ },
+ {
+ "epoch": 55.237658366098735,
+ "grad_norm": 0.22674795985221863,
+ "learning_rate": 0.0006,
+ "loss": 3.5399436950683594,
+ "step": 3977
+ },
+ {
+ "epoch": 55.25163826998689,
+ "grad_norm": 0.2248486578464508,
+ "learning_rate": 0.0006,
+ "loss": 3.5241036415100098,
+ "step": 3978
+ },
+ {
+ "epoch": 55.265618173875055,
+ "grad_norm": 0.241151362657547,
+ "learning_rate": 0.0006,
+ "loss": 3.547079086303711,
+ "step": 3979
+ },
+ {
+ "epoch": 55.27959807776322,
+ "grad_norm": 0.2783249318599701,
+ "learning_rate": 0.0006,
+ "loss": 3.5442988872528076,
+ "step": 3980
+ },
+ {
+ "epoch": 55.293577981651374,
+ "grad_norm": 0.2743528485298157,
+ "learning_rate": 0.0006,
+ "loss": 3.529618978500366,
+ "step": 3981
+ },
+ {
+ "epoch": 55.30755788553954,
+ "grad_norm": 0.23901724815368652,
+ "learning_rate": 0.0006,
+ "loss": 3.5379443168640137,
+ "step": 3982
+ },
+ {
+ "epoch": 55.3215377894277,
+ "grad_norm": 0.22758841514587402,
+ "learning_rate": 0.0006,
+ "loss": 3.5446794033050537,
+ "step": 3983
+ },
+ {
+ "epoch": 55.33551769331586,
+ "grad_norm": 0.22634629905223846,
+ "learning_rate": 0.0006,
+ "loss": 3.521944522857666,
+ "step": 3984
+ },
+ {
+ "epoch": 55.34949759720402,
+ "grad_norm": 0.23372086882591248,
+ "learning_rate": 0.0006,
+ "loss": 3.565023899078369,
+ "step": 3985
+ },
+ {
+ "epoch": 55.36347750109218,
+ "grad_norm": 0.24722231924533844,
+ "learning_rate": 0.0006,
+ "loss": 3.535661220550537,
+ "step": 3986
+ },
+ {
+ "epoch": 55.37745740498034,
+ "grad_norm": 0.21684594452381134,
+ "learning_rate": 0.0006,
+ "loss": 3.59070086479187,
+ "step": 3987
+ },
+ {
+ "epoch": 55.391437308868504,
+ "grad_norm": 0.186308816075325,
+ "learning_rate": 0.0006,
+ "loss": 3.5373833179473877,
+ "step": 3988
+ },
+ {
+ "epoch": 55.40541721275666,
+ "grad_norm": 0.2240687608718872,
+ "learning_rate": 0.0006,
+ "loss": 3.613295555114746,
+ "step": 3989
+ },
+ {
+ "epoch": 55.419397116644824,
+ "grad_norm": 0.25724494457244873,
+ "learning_rate": 0.0006,
+ "loss": 3.581005096435547,
+ "step": 3990
+ },
+ {
+ "epoch": 55.43337702053299,
+ "grad_norm": 0.24023419618606567,
+ "learning_rate": 0.0006,
+ "loss": 3.563951015472412,
+ "step": 3991
+ },
+ {
+ "epoch": 55.44735692442114,
+ "grad_norm": 0.21473391354084015,
+ "learning_rate": 0.0006,
+ "loss": 3.5444185733795166,
+ "step": 3992
+ },
+ {
+ "epoch": 55.46133682830931,
+ "grad_norm": 0.20466852188110352,
+ "learning_rate": 0.0006,
+ "loss": 3.5585713386535645,
+ "step": 3993
+ },
+ {
+ "epoch": 55.47531673219746,
+ "grad_norm": 0.20925740897655487,
+ "learning_rate": 0.0006,
+ "loss": 3.5656747817993164,
+ "step": 3994
+ },
+ {
+ "epoch": 55.489296636085626,
+ "grad_norm": 0.2309556007385254,
+ "learning_rate": 0.0006,
+ "loss": 3.5653891563415527,
+ "step": 3995
+ },
+ {
+ "epoch": 55.50327653997379,
+ "grad_norm": 0.24270877242088318,
+ "learning_rate": 0.0006,
+ "loss": 3.5275917053222656,
+ "step": 3996
+ },
+ {
+ "epoch": 55.517256443861946,
+ "grad_norm": 0.22749851644039154,
+ "learning_rate": 0.0006,
+ "loss": 3.5392730236053467,
+ "step": 3997
+ },
+ {
+ "epoch": 55.53123634775011,
+ "grad_norm": 0.21618196368217468,
+ "learning_rate": 0.0006,
+ "loss": 3.5581812858581543,
+ "step": 3998
+ },
+ {
+ "epoch": 55.54521625163827,
+ "grad_norm": 0.22232134640216827,
+ "learning_rate": 0.0006,
+ "loss": 3.5340118408203125,
+ "step": 3999
+ },
+ {
+ "epoch": 55.55919615552643,
+ "grad_norm": 0.24543501436710358,
+ "learning_rate": 0.0006,
+ "loss": 3.572153329849243,
+ "step": 4000
+ },
+ {
+ "epoch": 55.57317605941459,
+ "grad_norm": 0.2385311722755432,
+ "learning_rate": 0.0006,
+ "loss": 3.5366618633270264,
+ "step": 4001
+ },
+ {
+ "epoch": 55.58715596330275,
+ "grad_norm": 0.27977821230888367,
+ "learning_rate": 0.0006,
+ "loss": 3.5788960456848145,
+ "step": 4002
+ },
+ {
+ "epoch": 55.60113586719091,
+ "grad_norm": 0.2929013967514038,
+ "learning_rate": 0.0006,
+ "loss": 3.61065936088562,
+ "step": 4003
+ },
+ {
+ "epoch": 55.615115771079076,
+ "grad_norm": 0.27820730209350586,
+ "learning_rate": 0.0006,
+ "loss": 3.538694381713867,
+ "step": 4004
+ },
+ {
+ "epoch": 55.62909567496723,
+ "grad_norm": 0.24188996851444244,
+ "learning_rate": 0.0006,
+ "loss": 3.571709632873535,
+ "step": 4005
+ },
+ {
+ "epoch": 55.643075578855395,
+ "grad_norm": 0.21659360826015472,
+ "learning_rate": 0.0006,
+ "loss": 3.5431199073791504,
+ "step": 4006
+ },
+ {
+ "epoch": 55.65705548274356,
+ "grad_norm": 0.23356232047080994,
+ "learning_rate": 0.0006,
+ "loss": 3.5664005279541016,
+ "step": 4007
+ },
+ {
+ "epoch": 55.671035386631715,
+ "grad_norm": 0.21523472666740417,
+ "learning_rate": 0.0006,
+ "loss": 3.575711250305176,
+ "step": 4008
+ },
+ {
+ "epoch": 55.68501529051988,
+ "grad_norm": 0.22101815044879913,
+ "learning_rate": 0.0006,
+ "loss": 3.5843849182128906,
+ "step": 4009
+ },
+ {
+ "epoch": 55.69899519440804,
+ "grad_norm": 0.24153906106948853,
+ "learning_rate": 0.0006,
+ "loss": 3.5737733840942383,
+ "step": 4010
+ },
+ {
+ "epoch": 55.7129750982962,
+ "grad_norm": 0.2181350439786911,
+ "learning_rate": 0.0006,
+ "loss": 3.582613945007324,
+ "step": 4011
+ },
+ {
+ "epoch": 55.72695500218436,
+ "grad_norm": 0.21046742796897888,
+ "learning_rate": 0.0006,
+ "loss": 3.5380563735961914,
+ "step": 4012
+ },
+ {
+ "epoch": 55.74093490607252,
+ "grad_norm": 0.23996953666210175,
+ "learning_rate": 0.0006,
+ "loss": 3.57753849029541,
+ "step": 4013
+ },
+ {
+ "epoch": 55.75491480996068,
+ "grad_norm": 0.24543973803520203,
+ "learning_rate": 0.0006,
+ "loss": 3.578747272491455,
+ "step": 4014
+ },
+ {
+ "epoch": 55.768894713848844,
+ "grad_norm": 0.23597940802574158,
+ "learning_rate": 0.0006,
+ "loss": 3.5816988945007324,
+ "step": 4015
+ },
+ {
+ "epoch": 55.782874617737,
+ "grad_norm": 0.237411230802536,
+ "learning_rate": 0.0006,
+ "loss": 3.5659806728363037,
+ "step": 4016
+ },
+ {
+ "epoch": 55.796854521625164,
+ "grad_norm": 0.23947440087795258,
+ "learning_rate": 0.0006,
+ "loss": 3.545125961303711,
+ "step": 4017
+ },
+ {
+ "epoch": 55.81083442551333,
+ "grad_norm": 0.21562735736370087,
+ "learning_rate": 0.0006,
+ "loss": 3.5571303367614746,
+ "step": 4018
+ },
+ {
+ "epoch": 55.824814329401484,
+ "grad_norm": 0.21958434581756592,
+ "learning_rate": 0.0006,
+ "loss": 3.5243420600891113,
+ "step": 4019
+ },
+ {
+ "epoch": 55.83879423328965,
+ "grad_norm": 0.23856471478939056,
+ "learning_rate": 0.0006,
+ "loss": 3.586078643798828,
+ "step": 4020
+ },
+ {
+ "epoch": 55.8527741371778,
+ "grad_norm": 0.20703551173210144,
+ "learning_rate": 0.0006,
+ "loss": 3.5503201484680176,
+ "step": 4021
+ },
+ {
+ "epoch": 55.86675404106597,
+ "grad_norm": 0.21183231472969055,
+ "learning_rate": 0.0006,
+ "loss": 3.5873844623565674,
+ "step": 4022
+ },
+ {
+ "epoch": 55.88073394495413,
+ "grad_norm": 0.2129688709974289,
+ "learning_rate": 0.0006,
+ "loss": 3.582061290740967,
+ "step": 4023
+ },
+ {
+ "epoch": 55.89471384884229,
+ "grad_norm": 0.2122214287519455,
+ "learning_rate": 0.0006,
+ "loss": 3.547175884246826,
+ "step": 4024
+ },
+ {
+ "epoch": 55.90869375273045,
+ "grad_norm": 0.214874267578125,
+ "learning_rate": 0.0006,
+ "loss": 3.5322279930114746,
+ "step": 4025
+ },
+ {
+ "epoch": 55.92267365661861,
+ "grad_norm": 0.24104614555835724,
+ "learning_rate": 0.0006,
+ "loss": 3.5742111206054688,
+ "step": 4026
+ },
+ {
+ "epoch": 55.93665356050677,
+ "grad_norm": 0.2257685512304306,
+ "learning_rate": 0.0006,
+ "loss": 3.5686793327331543,
+ "step": 4027
+ },
+ {
+ "epoch": 55.95063346439493,
+ "grad_norm": 0.2170567363500595,
+ "learning_rate": 0.0006,
+ "loss": 3.5670571327209473,
+ "step": 4028
+ },
+ {
+ "epoch": 55.964613368283096,
+ "grad_norm": 0.2003280222415924,
+ "learning_rate": 0.0006,
+ "loss": 3.533921718597412,
+ "step": 4029
+ },
+ {
+ "epoch": 55.97859327217125,
+ "grad_norm": 0.21483278274536133,
+ "learning_rate": 0.0006,
+ "loss": 3.539720058441162,
+ "step": 4030
+ },
+ {
+ "epoch": 55.992573176059416,
+ "grad_norm": 0.26908108592033386,
+ "learning_rate": 0.0006,
+ "loss": 3.575934886932373,
+ "step": 4031
+ },
+ {
+ "epoch": 56.0,
+ "grad_norm": 0.30002665519714355,
+ "learning_rate": 0.0006,
+ "loss": 3.5702414512634277,
+ "step": 4032
+ },
+ {
+ "epoch": 56.0,
+ "eval_loss": 3.9834072589874268,
+ "eval_runtime": 46.2268,
+ "eval_samples_per_second": 52.826,
+ "eval_steps_per_second": 3.31,
+ "step": 4032
+ },
+ {
+ "epoch": 56.01397990388816,
+ "grad_norm": 0.25298207998275757,
+ "learning_rate": 0.0006,
+ "loss": 3.538151741027832,
+ "step": 4033
+ },
+ {
+ "epoch": 56.02795980777632,
+ "grad_norm": 0.2231103479862213,
+ "learning_rate": 0.0006,
+ "loss": 3.551466941833496,
+ "step": 4034
+ },
+ {
+ "epoch": 56.04193971166448,
+ "grad_norm": 0.2504221796989441,
+ "learning_rate": 0.0006,
+ "loss": 3.5361199378967285,
+ "step": 4035
+ },
+ {
+ "epoch": 56.05591961555265,
+ "grad_norm": 0.23491773009300232,
+ "learning_rate": 0.0006,
+ "loss": 3.549346446990967,
+ "step": 4036
+ },
+ {
+ "epoch": 56.0698995194408,
+ "grad_norm": 0.23068852722644806,
+ "learning_rate": 0.0006,
+ "loss": 3.5243453979492188,
+ "step": 4037
+ },
+ {
+ "epoch": 56.083879423328966,
+ "grad_norm": 0.22160249948501587,
+ "learning_rate": 0.0006,
+ "loss": 3.551191806793213,
+ "step": 4038
+ },
+ {
+ "epoch": 56.09785932721712,
+ "grad_norm": 0.2389034926891327,
+ "learning_rate": 0.0006,
+ "loss": 3.5358071327209473,
+ "step": 4039
+ },
+ {
+ "epoch": 56.111839231105286,
+ "grad_norm": 0.2552168071269989,
+ "learning_rate": 0.0006,
+ "loss": 3.564204692840576,
+ "step": 4040
+ },
+ {
+ "epoch": 56.12581913499345,
+ "grad_norm": 0.2802336812019348,
+ "learning_rate": 0.0006,
+ "loss": 3.540386438369751,
+ "step": 4041
+ },
+ {
+ "epoch": 56.139799038881605,
+ "grad_norm": 0.2564619779586792,
+ "learning_rate": 0.0006,
+ "loss": 3.544264554977417,
+ "step": 4042
+ },
+ {
+ "epoch": 56.15377894276977,
+ "grad_norm": 0.24272632598876953,
+ "learning_rate": 0.0006,
+ "loss": 3.509497880935669,
+ "step": 4043
+ },
+ {
+ "epoch": 56.16775884665793,
+ "grad_norm": 0.23981881141662598,
+ "learning_rate": 0.0006,
+ "loss": 3.551090955734253,
+ "step": 4044
+ },
+ {
+ "epoch": 56.18173875054609,
+ "grad_norm": 0.22418269515037537,
+ "learning_rate": 0.0006,
+ "loss": 3.558614492416382,
+ "step": 4045
+ },
+ {
+ "epoch": 56.19571865443425,
+ "grad_norm": 0.21792462468147278,
+ "learning_rate": 0.0006,
+ "loss": 3.540558338165283,
+ "step": 4046
+ },
+ {
+ "epoch": 56.20969855832241,
+ "grad_norm": 0.21248634159564972,
+ "learning_rate": 0.0006,
+ "loss": 3.5273942947387695,
+ "step": 4047
+ },
+ {
+ "epoch": 56.22367846221057,
+ "grad_norm": 0.1863572895526886,
+ "learning_rate": 0.0006,
+ "loss": 3.555302143096924,
+ "step": 4048
+ },
+ {
+ "epoch": 56.237658366098735,
+ "grad_norm": 0.21031822264194489,
+ "learning_rate": 0.0006,
+ "loss": 3.547515630722046,
+ "step": 4049
+ },
+ {
+ "epoch": 56.25163826998689,
+ "grad_norm": 0.19754044711589813,
+ "learning_rate": 0.0006,
+ "loss": 3.5476508140563965,
+ "step": 4050
+ },
+ {
+ "epoch": 56.265618173875055,
+ "grad_norm": 0.19707852602005005,
+ "learning_rate": 0.0006,
+ "loss": 3.506730794906616,
+ "step": 4051
+ },
+ {
+ "epoch": 56.27959807776322,
+ "grad_norm": 0.21011239290237427,
+ "learning_rate": 0.0006,
+ "loss": 3.51116681098938,
+ "step": 4052
+ },
+ {
+ "epoch": 56.293577981651374,
+ "grad_norm": 0.20281212031841278,
+ "learning_rate": 0.0006,
+ "loss": 3.549513816833496,
+ "step": 4053
+ },
+ {
+ "epoch": 56.30755788553954,
+ "grad_norm": 0.19198910892009735,
+ "learning_rate": 0.0006,
+ "loss": 3.5299534797668457,
+ "step": 4054
+ },
+ {
+ "epoch": 56.3215377894277,
+ "grad_norm": 0.1861368715763092,
+ "learning_rate": 0.0006,
+ "loss": 3.513909339904785,
+ "step": 4055
+ },
+ {
+ "epoch": 56.33551769331586,
+ "grad_norm": 0.20779506862163544,
+ "learning_rate": 0.0006,
+ "loss": 3.5528712272644043,
+ "step": 4056
+ },
+ {
+ "epoch": 56.34949759720402,
+ "grad_norm": 0.2229684591293335,
+ "learning_rate": 0.0006,
+ "loss": 3.518359661102295,
+ "step": 4057
+ },
+ {
+ "epoch": 56.36347750109218,
+ "grad_norm": 0.22998179495334625,
+ "learning_rate": 0.0006,
+ "loss": 3.5004091262817383,
+ "step": 4058
+ },
+ {
+ "epoch": 56.37745740498034,
+ "grad_norm": 0.2176709622144699,
+ "learning_rate": 0.0006,
+ "loss": 3.550295829772949,
+ "step": 4059
+ },
+ {
+ "epoch": 56.391437308868504,
+ "grad_norm": 0.19512872397899628,
+ "learning_rate": 0.0006,
+ "loss": 3.5305161476135254,
+ "step": 4060
+ },
+ {
+ "epoch": 56.40541721275666,
+ "grad_norm": 0.23127448558807373,
+ "learning_rate": 0.0006,
+ "loss": 3.5341286659240723,
+ "step": 4061
+ },
+ {
+ "epoch": 56.419397116644824,
+ "grad_norm": 0.20905959606170654,
+ "learning_rate": 0.0006,
+ "loss": 3.553912401199341,
+ "step": 4062
+ },
+ {
+ "epoch": 56.43337702053299,
+ "grad_norm": 0.23370878398418427,
+ "learning_rate": 0.0006,
+ "loss": 3.5700249671936035,
+ "step": 4063
+ },
+ {
+ "epoch": 56.44735692442114,
+ "grad_norm": 0.233205646276474,
+ "learning_rate": 0.0006,
+ "loss": 3.5184097290039062,
+ "step": 4064
+ },
+ {
+ "epoch": 56.46133682830931,
+ "grad_norm": 0.23928777873516083,
+ "learning_rate": 0.0006,
+ "loss": 3.535874366760254,
+ "step": 4065
+ },
+ {
+ "epoch": 56.47531673219746,
+ "grad_norm": 0.24950815737247467,
+ "learning_rate": 0.0006,
+ "loss": 3.508136749267578,
+ "step": 4066
+ },
+ {
+ "epoch": 56.489296636085626,
+ "grad_norm": 0.24821820855140686,
+ "learning_rate": 0.0006,
+ "loss": 3.5421361923217773,
+ "step": 4067
+ },
+ {
+ "epoch": 56.50327653997379,
+ "grad_norm": 0.2252482771873474,
+ "learning_rate": 0.0006,
+ "loss": 3.5516514778137207,
+ "step": 4068
+ },
+ {
+ "epoch": 56.517256443861946,
+ "grad_norm": 0.2238101363182068,
+ "learning_rate": 0.0006,
+ "loss": 3.567741632461548,
+ "step": 4069
+ },
+ {
+ "epoch": 56.53123634775011,
+ "grad_norm": 0.20759683847427368,
+ "learning_rate": 0.0006,
+ "loss": 3.544705390930176,
+ "step": 4070
+ },
+ {
+ "epoch": 56.54521625163827,
+ "grad_norm": 0.21918460726737976,
+ "learning_rate": 0.0006,
+ "loss": 3.5725836753845215,
+ "step": 4071
+ },
+ {
+ "epoch": 56.55919615552643,
+ "grad_norm": 0.22640042006969452,
+ "learning_rate": 0.0006,
+ "loss": 3.5447535514831543,
+ "step": 4072
+ },
+ {
+ "epoch": 56.57317605941459,
+ "grad_norm": 0.23130203783512115,
+ "learning_rate": 0.0006,
+ "loss": 3.5620853900909424,
+ "step": 4073
+ },
+ {
+ "epoch": 56.58715596330275,
+ "grad_norm": 0.2215641736984253,
+ "learning_rate": 0.0006,
+ "loss": 3.5416438579559326,
+ "step": 4074
+ },
+ {
+ "epoch": 56.60113586719091,
+ "grad_norm": 0.20106497406959534,
+ "learning_rate": 0.0006,
+ "loss": 3.537386178970337,
+ "step": 4075
+ },
+ {
+ "epoch": 56.615115771079076,
+ "grad_norm": 0.2045976221561432,
+ "learning_rate": 0.0006,
+ "loss": 3.555032730102539,
+ "step": 4076
+ },
+ {
+ "epoch": 56.62909567496723,
+ "grad_norm": 0.20097647607326508,
+ "learning_rate": 0.0006,
+ "loss": 3.559572458267212,
+ "step": 4077
+ },
+ {
+ "epoch": 56.643075578855395,
+ "grad_norm": 0.24158388376235962,
+ "learning_rate": 0.0006,
+ "loss": 3.56520938873291,
+ "step": 4078
+ },
+ {
+ "epoch": 56.65705548274356,
+ "grad_norm": 0.2687791585922241,
+ "learning_rate": 0.0006,
+ "loss": 3.545924663543701,
+ "step": 4079
+ },
+ {
+ "epoch": 56.671035386631715,
+ "grad_norm": 0.22466111183166504,
+ "learning_rate": 0.0006,
+ "loss": 3.5556845664978027,
+ "step": 4080
+ },
+ {
+ "epoch": 56.68501529051988,
+ "grad_norm": 0.2177814394235611,
+ "learning_rate": 0.0006,
+ "loss": 3.5799131393432617,
+ "step": 4081
+ },
+ {
+ "epoch": 56.69899519440804,
+ "grad_norm": 0.2700476050376892,
+ "learning_rate": 0.0006,
+ "loss": 3.5859055519104004,
+ "step": 4082
+ },
+ {
+ "epoch": 56.7129750982962,
+ "grad_norm": 0.28230178356170654,
+ "learning_rate": 0.0006,
+ "loss": 3.5733890533447266,
+ "step": 4083
+ },
+ {
+ "epoch": 56.72695500218436,
+ "grad_norm": 0.29298731684684753,
+ "learning_rate": 0.0006,
+ "loss": 3.556626319885254,
+ "step": 4084
+ },
+ {
+ "epoch": 56.74093490607252,
+ "grad_norm": 0.2818183898925781,
+ "learning_rate": 0.0006,
+ "loss": 3.5884718894958496,
+ "step": 4085
+ },
+ {
+ "epoch": 56.75491480996068,
+ "grad_norm": 0.24008697271347046,
+ "learning_rate": 0.0006,
+ "loss": 3.5464529991149902,
+ "step": 4086
+ },
+ {
+ "epoch": 56.768894713848844,
+ "grad_norm": 0.23406296968460083,
+ "learning_rate": 0.0006,
+ "loss": 3.5622801780700684,
+ "step": 4087
+ },
+ {
+ "epoch": 56.782874617737,
+ "grad_norm": 0.26089322566986084,
+ "learning_rate": 0.0006,
+ "loss": 3.5775020122528076,
+ "step": 4088
+ },
+ {
+ "epoch": 56.796854521625164,
+ "grad_norm": 0.2576654851436615,
+ "learning_rate": 0.0006,
+ "loss": 3.5543627738952637,
+ "step": 4089
+ },
+ {
+ "epoch": 56.81083442551333,
+ "grad_norm": 0.26576393842697144,
+ "learning_rate": 0.0006,
+ "loss": 3.546170711517334,
+ "step": 4090
+ },
+ {
+ "epoch": 56.824814329401484,
+ "grad_norm": 0.22380715608596802,
+ "learning_rate": 0.0006,
+ "loss": 3.5437729358673096,
+ "step": 4091
+ },
+ {
+ "epoch": 56.83879423328965,
+ "grad_norm": 0.20786714553833008,
+ "learning_rate": 0.0006,
+ "loss": 3.5951266288757324,
+ "step": 4092
+ },
+ {
+ "epoch": 56.8527741371778,
+ "grad_norm": 0.23177042603492737,
+ "learning_rate": 0.0006,
+ "loss": 3.549454689025879,
+ "step": 4093
+ },
+ {
+ "epoch": 56.86675404106597,
+ "grad_norm": 0.21466009318828583,
+ "learning_rate": 0.0006,
+ "loss": 3.5611233711242676,
+ "step": 4094
+ },
+ {
+ "epoch": 56.88073394495413,
+ "grad_norm": 0.20928414165973663,
+ "learning_rate": 0.0006,
+ "loss": 3.5550684928894043,
+ "step": 4095
+ },
+ {
+ "epoch": 56.89471384884229,
+ "grad_norm": 0.20727156102657318,
+ "learning_rate": 0.0006,
+ "loss": 3.552496910095215,
+ "step": 4096
+ },
+ {
+ "epoch": 56.90869375273045,
+ "grad_norm": 0.21370401978492737,
+ "learning_rate": 0.0006,
+ "loss": 3.5763869285583496,
+ "step": 4097
+ },
+ {
+ "epoch": 56.92267365661861,
+ "grad_norm": 0.22490337491035461,
+ "learning_rate": 0.0006,
+ "loss": 3.538986921310425,
+ "step": 4098
+ },
+ {
+ "epoch": 56.93665356050677,
+ "grad_norm": 0.23320236802101135,
+ "learning_rate": 0.0006,
+ "loss": 3.5514214038848877,
+ "step": 4099
+ },
+ {
+ "epoch": 56.95063346439493,
+ "grad_norm": 0.22050419449806213,
+ "learning_rate": 0.0006,
+ "loss": 3.5486960411071777,
+ "step": 4100
+ },
+ {
+ "epoch": 56.964613368283096,
+ "grad_norm": 0.2241443395614624,
+ "learning_rate": 0.0006,
+ "loss": 3.5858001708984375,
+ "step": 4101
+ },
+ {
+ "epoch": 56.97859327217125,
+ "grad_norm": 0.24904389679431915,
+ "learning_rate": 0.0006,
+ "loss": 3.586472511291504,
+ "step": 4102
+ },
+ {
+ "epoch": 56.992573176059416,
+ "grad_norm": 0.2333211451768875,
+ "learning_rate": 0.0006,
+ "loss": 3.5463132858276367,
+ "step": 4103
+ },
+ {
+ "epoch": 57.0,
+ "grad_norm": 0.24142783880233765,
+ "learning_rate": 0.0006,
+ "loss": 3.5642542839050293,
+ "step": 4104
+ },
+ {
+ "epoch": 57.0,
+ "eval_loss": 3.973973035812378,
+ "eval_runtime": 46.2906,
+ "eval_samples_per_second": 52.754,
+ "eval_steps_per_second": 3.305,
+ "step": 4104
+ },
+ {
+ "epoch": 57.01397990388816,
+ "grad_norm": 0.21989624202251434,
+ "learning_rate": 0.0006,
+ "loss": 3.539435863494873,
+ "step": 4105
+ },
+ {
+ "epoch": 57.02795980777632,
+ "grad_norm": 0.24061834812164307,
+ "learning_rate": 0.0006,
+ "loss": 3.5251410007476807,
+ "step": 4106
+ },
+ {
+ "epoch": 57.04193971166448,
+ "grad_norm": 0.2483278512954712,
+ "learning_rate": 0.0006,
+ "loss": 3.5104010105133057,
+ "step": 4107
+ },
+ {
+ "epoch": 57.05591961555265,
+ "grad_norm": 0.2717698812484741,
+ "learning_rate": 0.0006,
+ "loss": 3.5134170055389404,
+ "step": 4108
+ },
+ {
+ "epoch": 57.0698995194408,
+ "grad_norm": 0.27335646748542786,
+ "learning_rate": 0.0006,
+ "loss": 3.53574275970459,
+ "step": 4109
+ },
+ {
+ "epoch": 57.083879423328966,
+ "grad_norm": 0.2423052042722702,
+ "learning_rate": 0.0006,
+ "loss": 3.4960169792175293,
+ "step": 4110
+ },
+ {
+ "epoch": 57.09785932721712,
+ "grad_norm": 0.2241092175245285,
+ "learning_rate": 0.0006,
+ "loss": 3.5409107208251953,
+ "step": 4111
+ },
+ {
+ "epoch": 57.111839231105286,
+ "grad_norm": 0.23098452389240265,
+ "learning_rate": 0.0006,
+ "loss": 3.5326709747314453,
+ "step": 4112
+ },
+ {
+ "epoch": 57.12581913499345,
+ "grad_norm": 0.2500186562538147,
+ "learning_rate": 0.0006,
+ "loss": 3.509953498840332,
+ "step": 4113
+ },
+ {
+ "epoch": 57.139799038881605,
+ "grad_norm": 0.26994550228118896,
+ "learning_rate": 0.0006,
+ "loss": 3.560410499572754,
+ "step": 4114
+ },
+ {
+ "epoch": 57.15377894276977,
+ "grad_norm": 0.24950402975082397,
+ "learning_rate": 0.0006,
+ "loss": 3.517613649368286,
+ "step": 4115
+ },
+ {
+ "epoch": 57.16775884665793,
+ "grad_norm": 0.21742430329322815,
+ "learning_rate": 0.0006,
+ "loss": 3.531256675720215,
+ "step": 4116
+ },
+ {
+ "epoch": 57.18173875054609,
+ "grad_norm": 0.29069146513938904,
+ "learning_rate": 0.0006,
+ "loss": 3.5283756256103516,
+ "step": 4117
+ },
+ {
+ "epoch": 57.19571865443425,
+ "grad_norm": 0.2901996970176697,
+ "learning_rate": 0.0006,
+ "loss": 3.5460801124572754,
+ "step": 4118
+ },
+ {
+ "epoch": 57.20969855832241,
+ "grad_norm": 0.2534845471382141,
+ "learning_rate": 0.0006,
+ "loss": 3.515536308288574,
+ "step": 4119
+ },
+ {
+ "epoch": 57.22367846221057,
+ "grad_norm": 0.2352340817451477,
+ "learning_rate": 0.0006,
+ "loss": 3.5281717777252197,
+ "step": 4120
+ },
+ {
+ "epoch": 57.237658366098735,
+ "grad_norm": 0.2263645976781845,
+ "learning_rate": 0.0006,
+ "loss": 3.5629191398620605,
+ "step": 4121
+ },
+ {
+ "epoch": 57.25163826998689,
+ "grad_norm": 0.21413370966911316,
+ "learning_rate": 0.0006,
+ "loss": 3.5342142581939697,
+ "step": 4122
+ },
+ {
+ "epoch": 57.265618173875055,
+ "grad_norm": 0.1969698667526245,
+ "learning_rate": 0.0006,
+ "loss": 3.5467586517333984,
+ "step": 4123
+ },
+ {
+ "epoch": 57.27959807776322,
+ "grad_norm": 0.2106606364250183,
+ "learning_rate": 0.0006,
+ "loss": 3.5409536361694336,
+ "step": 4124
+ },
+ {
+ "epoch": 57.293577981651374,
+ "grad_norm": 0.21824438869953156,
+ "learning_rate": 0.0006,
+ "loss": 3.5246548652648926,
+ "step": 4125
+ },
+ {
+ "epoch": 57.30755788553954,
+ "grad_norm": 0.2147768884897232,
+ "learning_rate": 0.0006,
+ "loss": 3.5411794185638428,
+ "step": 4126
+ },
+ {
+ "epoch": 57.3215377894277,
+ "grad_norm": 0.21352852880954742,
+ "learning_rate": 0.0006,
+ "loss": 3.569387197494507,
+ "step": 4127
+ },
+ {
+ "epoch": 57.33551769331586,
+ "grad_norm": 0.20957978069782257,
+ "learning_rate": 0.0006,
+ "loss": 3.522695779800415,
+ "step": 4128
+ },
+ {
+ "epoch": 57.34949759720402,
+ "grad_norm": 0.2013026475906372,
+ "learning_rate": 0.0006,
+ "loss": 3.5485787391662598,
+ "step": 4129
+ },
+ {
+ "epoch": 57.36347750109218,
+ "grad_norm": 0.2260376214981079,
+ "learning_rate": 0.0006,
+ "loss": 3.547607421875,
+ "step": 4130
+ },
+ {
+ "epoch": 57.37745740498034,
+ "grad_norm": 0.22991685569286346,
+ "learning_rate": 0.0006,
+ "loss": 3.5464730262756348,
+ "step": 4131
+ },
+ {
+ "epoch": 57.391437308868504,
+ "grad_norm": 0.19638051092624664,
+ "learning_rate": 0.0006,
+ "loss": 3.54355525970459,
+ "step": 4132
+ },
+ {
+ "epoch": 57.40541721275666,
+ "grad_norm": 0.19450774788856506,
+ "learning_rate": 0.0006,
+ "loss": 3.5490050315856934,
+ "step": 4133
+ },
+ {
+ "epoch": 57.419397116644824,
+ "grad_norm": 0.21798551082611084,
+ "learning_rate": 0.0006,
+ "loss": 3.56355619430542,
+ "step": 4134
+ },
+ {
+ "epoch": 57.43337702053299,
+ "grad_norm": 0.2129846215248108,
+ "learning_rate": 0.0006,
+ "loss": 3.5607380867004395,
+ "step": 4135
+ },
+ {
+ "epoch": 57.44735692442114,
+ "grad_norm": 0.20589227974414825,
+ "learning_rate": 0.0006,
+ "loss": 3.523768663406372,
+ "step": 4136
+ },
+ {
+ "epoch": 57.46133682830931,
+ "grad_norm": 0.21841686964035034,
+ "learning_rate": 0.0006,
+ "loss": 3.5187885761260986,
+ "step": 4137
+ },
+ {
+ "epoch": 57.47531673219746,
+ "grad_norm": 0.2118791788816452,
+ "learning_rate": 0.0006,
+ "loss": 3.5271782875061035,
+ "step": 4138
+ },
+ {
+ "epoch": 57.489296636085626,
+ "grad_norm": 0.21905459463596344,
+ "learning_rate": 0.0006,
+ "loss": 3.546968460083008,
+ "step": 4139
+ },
+ {
+ "epoch": 57.50327653997379,
+ "grad_norm": 0.23899133503437042,
+ "learning_rate": 0.0006,
+ "loss": 3.5156688690185547,
+ "step": 4140
+ },
+ {
+ "epoch": 57.517256443861946,
+ "grad_norm": 0.23873545229434967,
+ "learning_rate": 0.0006,
+ "loss": 3.5271472930908203,
+ "step": 4141
+ },
+ {
+ "epoch": 57.53123634775011,
+ "grad_norm": 0.20691858232021332,
+ "learning_rate": 0.0006,
+ "loss": 3.552854537963867,
+ "step": 4142
+ },
+ {
+ "epoch": 57.54521625163827,
+ "grad_norm": 0.21962891519069672,
+ "learning_rate": 0.0006,
+ "loss": 3.5258498191833496,
+ "step": 4143
+ },
+ {
+ "epoch": 57.55919615552643,
+ "grad_norm": 0.21762165427207947,
+ "learning_rate": 0.0006,
+ "loss": 3.566831588745117,
+ "step": 4144
+ },
+ {
+ "epoch": 57.57317605941459,
+ "grad_norm": 0.19603654742240906,
+ "learning_rate": 0.0006,
+ "loss": 3.5393714904785156,
+ "step": 4145
+ },
+ {
+ "epoch": 57.58715596330275,
+ "grad_norm": 0.20347437262535095,
+ "learning_rate": 0.0006,
+ "loss": 3.538390874862671,
+ "step": 4146
+ },
+ {
+ "epoch": 57.60113586719091,
+ "grad_norm": 0.2179173231124878,
+ "learning_rate": 0.0006,
+ "loss": 3.566631317138672,
+ "step": 4147
+ },
+ {
+ "epoch": 57.615115771079076,
+ "grad_norm": 0.19678309559822083,
+ "learning_rate": 0.0006,
+ "loss": 3.5659375190734863,
+ "step": 4148
+ },
+ {
+ "epoch": 57.62909567496723,
+ "grad_norm": 0.20221677422523499,
+ "learning_rate": 0.0006,
+ "loss": 3.5679430961608887,
+ "step": 4149
+ },
+ {
+ "epoch": 57.643075578855395,
+ "grad_norm": 0.21337579190731049,
+ "learning_rate": 0.0006,
+ "loss": 3.5330681800842285,
+ "step": 4150
+ },
+ {
+ "epoch": 57.65705548274356,
+ "grad_norm": 0.2646789848804474,
+ "learning_rate": 0.0006,
+ "loss": 3.5216803550720215,
+ "step": 4151
+ },
+ {
+ "epoch": 57.671035386631715,
+ "grad_norm": 0.304950088262558,
+ "learning_rate": 0.0006,
+ "loss": 3.5570156574249268,
+ "step": 4152
+ },
+ {
+ "epoch": 57.68501529051988,
+ "grad_norm": 0.2739402651786804,
+ "learning_rate": 0.0006,
+ "loss": 3.5844314098358154,
+ "step": 4153
+ },
+ {
+ "epoch": 57.69899519440804,
+ "grad_norm": 0.19060099124908447,
+ "learning_rate": 0.0006,
+ "loss": 3.571052074432373,
+ "step": 4154
+ },
+ {
+ "epoch": 57.7129750982962,
+ "grad_norm": 0.2941007614135742,
+ "learning_rate": 0.0006,
+ "loss": 3.543100357055664,
+ "step": 4155
+ },
+ {
+ "epoch": 57.72695500218436,
+ "grad_norm": 0.34624332189559937,
+ "learning_rate": 0.0006,
+ "loss": 3.564270496368408,
+ "step": 4156
+ },
+ {
+ "epoch": 57.74093490607252,
+ "grad_norm": 0.30635201930999756,
+ "learning_rate": 0.0006,
+ "loss": 3.5390584468841553,
+ "step": 4157
+ },
+ {
+ "epoch": 57.75491480996068,
+ "grad_norm": 0.2204878330230713,
+ "learning_rate": 0.0006,
+ "loss": 3.5427281856536865,
+ "step": 4158
+ },
+ {
+ "epoch": 57.768894713848844,
+ "grad_norm": 0.20659378170967102,
+ "learning_rate": 0.0006,
+ "loss": 3.528977155685425,
+ "step": 4159
+ },
+ {
+ "epoch": 57.782874617737,
+ "grad_norm": 0.2281361073255539,
+ "learning_rate": 0.0006,
+ "loss": 3.5531792640686035,
+ "step": 4160
+ },
+ {
+ "epoch": 57.796854521625164,
+ "grad_norm": 0.22478239238262177,
+ "learning_rate": 0.0006,
+ "loss": 3.566704750061035,
+ "step": 4161
+ },
+ {
+ "epoch": 57.81083442551333,
+ "grad_norm": 0.20797103643417358,
+ "learning_rate": 0.0006,
+ "loss": 3.5684943199157715,
+ "step": 4162
+ },
+ {
+ "epoch": 57.824814329401484,
+ "grad_norm": 0.2108374983072281,
+ "learning_rate": 0.0006,
+ "loss": 3.5475950241088867,
+ "step": 4163
+ },
+ {
+ "epoch": 57.83879423328965,
+ "grad_norm": 0.2268034815788269,
+ "learning_rate": 0.0006,
+ "loss": 3.5456833839416504,
+ "step": 4164
+ },
+ {
+ "epoch": 57.8527741371778,
+ "grad_norm": 0.2131519913673401,
+ "learning_rate": 0.0006,
+ "loss": 3.5316243171691895,
+ "step": 4165
+ },
+ {
+ "epoch": 57.86675404106597,
+ "grad_norm": 0.20163841545581818,
+ "learning_rate": 0.0006,
+ "loss": 3.5320897102355957,
+ "step": 4166
+ },
+ {
+ "epoch": 57.88073394495413,
+ "grad_norm": 0.20961757004261017,
+ "learning_rate": 0.0006,
+ "loss": 3.5800695419311523,
+ "step": 4167
+ },
+ {
+ "epoch": 57.89471384884229,
+ "grad_norm": 0.2061416506767273,
+ "learning_rate": 0.0006,
+ "loss": 3.544395923614502,
+ "step": 4168
+ },
+ {
+ "epoch": 57.90869375273045,
+ "grad_norm": 0.20306318998336792,
+ "learning_rate": 0.0006,
+ "loss": 3.554436683654785,
+ "step": 4169
+ },
+ {
+ "epoch": 57.92267365661861,
+ "grad_norm": 0.20685963332653046,
+ "learning_rate": 0.0006,
+ "loss": 3.5614635944366455,
+ "step": 4170
+ },
+ {
+ "epoch": 57.93665356050677,
+ "grad_norm": 0.19938082993030548,
+ "learning_rate": 0.0006,
+ "loss": 3.578136920928955,
+ "step": 4171
+ },
+ {
+ "epoch": 57.95063346439493,
+ "grad_norm": 0.2150411158800125,
+ "learning_rate": 0.0006,
+ "loss": 3.5754270553588867,
+ "step": 4172
+ },
+ {
+ "epoch": 57.964613368283096,
+ "grad_norm": 0.23399604856967926,
+ "learning_rate": 0.0006,
+ "loss": 3.5553112030029297,
+ "step": 4173
+ },
+ {
+ "epoch": 57.97859327217125,
+ "grad_norm": 0.2496841847896576,
+ "learning_rate": 0.0006,
+ "loss": 3.5509696006774902,
+ "step": 4174
+ },
+ {
+ "epoch": 57.992573176059416,
+ "grad_norm": 0.23759980499744415,
+ "learning_rate": 0.0006,
+ "loss": 3.5806684494018555,
+ "step": 4175
+ },
+ {
+ "epoch": 58.0,
+ "grad_norm": 0.2494540512561798,
+ "learning_rate": 0.0006,
+ "loss": 3.541708469390869,
+ "step": 4176
+ },
+ {
+ "epoch": 58.0,
+ "eval_loss": 3.970658779144287,
+ "eval_runtime": 46.0262,
+ "eval_samples_per_second": 53.057,
+ "eval_steps_per_second": 3.324,
+ "step": 4176
+ },
+ {
+ "epoch": 58.01397990388816,
+ "grad_norm": 0.2053643763065338,
+ "learning_rate": 0.0006,
+ "loss": 3.5264205932617188,
+ "step": 4177
+ },
+ {
+ "epoch": 58.02795980777632,
+ "grad_norm": 0.20680591464042664,
+ "learning_rate": 0.0006,
+ "loss": 3.495445728302002,
+ "step": 4178
+ },
+ {
+ "epoch": 58.04193971166448,
+ "grad_norm": 0.22180874645709991,
+ "learning_rate": 0.0006,
+ "loss": 3.546283483505249,
+ "step": 4179
+ },
+ {
+ "epoch": 58.05591961555265,
+ "grad_norm": 0.24255339801311493,
+ "learning_rate": 0.0006,
+ "loss": 3.50639271736145,
+ "step": 4180
+ },
+ {
+ "epoch": 58.0698995194408,
+ "grad_norm": 0.2747100591659546,
+ "learning_rate": 0.0006,
+ "loss": 3.514240026473999,
+ "step": 4181
+ },
+ {
+ "epoch": 58.083879423328966,
+ "grad_norm": 0.27960914373397827,
+ "learning_rate": 0.0006,
+ "loss": 3.5614311695098877,
+ "step": 4182
+ },
+ {
+ "epoch": 58.09785932721712,
+ "grad_norm": 0.25837743282318115,
+ "learning_rate": 0.0006,
+ "loss": 3.533560276031494,
+ "step": 4183
+ },
+ {
+ "epoch": 58.111839231105286,
+ "grad_norm": 0.24635657668113708,
+ "learning_rate": 0.0006,
+ "loss": 3.4867968559265137,
+ "step": 4184
+ },
+ {
+ "epoch": 58.12581913499345,
+ "grad_norm": 0.31520891189575195,
+ "learning_rate": 0.0006,
+ "loss": 3.5131611824035645,
+ "step": 4185
+ },
+ {
+ "epoch": 58.139799038881605,
+ "grad_norm": 0.36781513690948486,
+ "learning_rate": 0.0006,
+ "loss": 3.5149288177490234,
+ "step": 4186
+ },
+ {
+ "epoch": 58.15377894276977,
+ "grad_norm": 0.32433459162712097,
+ "learning_rate": 0.0006,
+ "loss": 3.5485405921936035,
+ "step": 4187
+ },
+ {
+ "epoch": 58.16775884665793,
+ "grad_norm": 0.2532205283641815,
+ "learning_rate": 0.0006,
+ "loss": 3.4994513988494873,
+ "step": 4188
+ },
+ {
+ "epoch": 58.18173875054609,
+ "grad_norm": 0.29780858755111694,
+ "learning_rate": 0.0006,
+ "loss": 3.496187448501587,
+ "step": 4189
+ },
+ {
+ "epoch": 58.19571865443425,
+ "grad_norm": 0.2804715037345886,
+ "learning_rate": 0.0006,
+ "loss": 3.5210375785827637,
+ "step": 4190
+ },
+ {
+ "epoch": 58.20969855832241,
+ "grad_norm": 0.2186010330915451,
+ "learning_rate": 0.0006,
+ "loss": 3.5139119625091553,
+ "step": 4191
+ },
+ {
+ "epoch": 58.22367846221057,
+ "grad_norm": 0.21566270291805267,
+ "learning_rate": 0.0006,
+ "loss": 3.5011606216430664,
+ "step": 4192
+ },
+ {
+ "epoch": 58.237658366098735,
+ "grad_norm": 0.21042031049728394,
+ "learning_rate": 0.0006,
+ "loss": 3.52295184135437,
+ "step": 4193
+ },
+ {
+ "epoch": 58.25163826998689,
+ "grad_norm": 0.20117411017417908,
+ "learning_rate": 0.0006,
+ "loss": 3.54593563079834,
+ "step": 4194
+ },
+ {
+ "epoch": 58.265618173875055,
+ "grad_norm": 0.21747945249080658,
+ "learning_rate": 0.0006,
+ "loss": 3.5341522693634033,
+ "step": 4195
+ },
+ {
+ "epoch": 58.27959807776322,
+ "grad_norm": 0.266024649143219,
+ "learning_rate": 0.0006,
+ "loss": 3.536393165588379,
+ "step": 4196
+ },
+ {
+ "epoch": 58.293577981651374,
+ "grad_norm": 0.2577304542064667,
+ "learning_rate": 0.0006,
+ "loss": 3.557468891143799,
+ "step": 4197
+ },
+ {
+ "epoch": 58.30755788553954,
+ "grad_norm": 0.22055941820144653,
+ "learning_rate": 0.0006,
+ "loss": 3.5307652950286865,
+ "step": 4198
+ },
+ {
+ "epoch": 58.3215377894277,
+ "grad_norm": 0.22490856051445007,
+ "learning_rate": 0.0006,
+ "loss": 3.506265163421631,
+ "step": 4199
+ },
+ {
+ "epoch": 58.33551769331586,
+ "grad_norm": 0.23600345849990845,
+ "learning_rate": 0.0006,
+ "loss": 3.523414134979248,
+ "step": 4200
+ },
+ {
+ "epoch": 58.34949759720402,
+ "grad_norm": 0.24872642755508423,
+ "learning_rate": 0.0006,
+ "loss": 3.561278820037842,
+ "step": 4201
+ },
+ {
+ "epoch": 58.36347750109218,
+ "grad_norm": 0.2702998220920563,
+ "learning_rate": 0.0006,
+ "loss": 3.573561191558838,
+ "step": 4202
+ },
+ {
+ "epoch": 58.37745740498034,
+ "grad_norm": 0.2532080411911011,
+ "learning_rate": 0.0006,
+ "loss": 3.5476837158203125,
+ "step": 4203
+ },
+ {
+ "epoch": 58.391437308868504,
+ "grad_norm": 0.23641079664230347,
+ "learning_rate": 0.0006,
+ "loss": 3.5464468002319336,
+ "step": 4204
+ },
+ {
+ "epoch": 58.40541721275666,
+ "grad_norm": 0.29965463280677795,
+ "learning_rate": 0.0006,
+ "loss": 3.560166835784912,
+ "step": 4205
+ },
+ {
+ "epoch": 58.419397116644824,
+ "grad_norm": 0.2778814136981964,
+ "learning_rate": 0.0006,
+ "loss": 3.5363056659698486,
+ "step": 4206
+ },
+ {
+ "epoch": 58.43337702053299,
+ "grad_norm": 0.23625248670578003,
+ "learning_rate": 0.0006,
+ "loss": 3.5575437545776367,
+ "step": 4207
+ },
+ {
+ "epoch": 58.44735692442114,
+ "grad_norm": 0.2165721356868744,
+ "learning_rate": 0.0006,
+ "loss": 3.541654109954834,
+ "step": 4208
+ },
+ {
+ "epoch": 58.46133682830931,
+ "grad_norm": 0.2261950671672821,
+ "learning_rate": 0.0006,
+ "loss": 3.5462238788604736,
+ "step": 4209
+ },
+ {
+ "epoch": 58.47531673219746,
+ "grad_norm": 0.23496517539024353,
+ "learning_rate": 0.0006,
+ "loss": 3.510138988494873,
+ "step": 4210
+ },
+ {
+ "epoch": 58.489296636085626,
+ "grad_norm": 0.27041929960250854,
+ "learning_rate": 0.0006,
+ "loss": 3.527822971343994,
+ "step": 4211
+ },
+ {
+ "epoch": 58.50327653997379,
+ "grad_norm": 0.2594013512134552,
+ "learning_rate": 0.0006,
+ "loss": 3.5358262062072754,
+ "step": 4212
+ },
+ {
+ "epoch": 58.517256443861946,
+ "grad_norm": 0.23336786031723022,
+ "learning_rate": 0.0006,
+ "loss": 3.530122756958008,
+ "step": 4213
+ },
+ {
+ "epoch": 58.53123634775011,
+ "grad_norm": 0.21956655383110046,
+ "learning_rate": 0.0006,
+ "loss": 3.541039228439331,
+ "step": 4214
+ },
+ {
+ "epoch": 58.54521625163827,
+ "grad_norm": 0.22432804107666016,
+ "learning_rate": 0.0006,
+ "loss": 3.520948886871338,
+ "step": 4215
+ },
+ {
+ "epoch": 58.55919615552643,
+ "grad_norm": 0.21589893102645874,
+ "learning_rate": 0.0006,
+ "loss": 3.569808006286621,
+ "step": 4216
+ },
+ {
+ "epoch": 58.57317605941459,
+ "grad_norm": 0.20264557003974915,
+ "learning_rate": 0.0006,
+ "loss": 3.514918088912964,
+ "step": 4217
+ },
+ {
+ "epoch": 58.58715596330275,
+ "grad_norm": 0.20911480486392975,
+ "learning_rate": 0.0006,
+ "loss": 3.5340771675109863,
+ "step": 4218
+ },
+ {
+ "epoch": 58.60113586719091,
+ "grad_norm": 0.21068964898586273,
+ "learning_rate": 0.0006,
+ "loss": 3.5388903617858887,
+ "step": 4219
+ },
+ {
+ "epoch": 58.615115771079076,
+ "grad_norm": 0.19314789772033691,
+ "learning_rate": 0.0006,
+ "loss": 3.5405967235565186,
+ "step": 4220
+ },
+ {
+ "epoch": 58.62909567496723,
+ "grad_norm": 0.18347802758216858,
+ "learning_rate": 0.0006,
+ "loss": 3.5208020210266113,
+ "step": 4221
+ },
+ {
+ "epoch": 58.643075578855395,
+ "grad_norm": 0.2082843780517578,
+ "learning_rate": 0.0006,
+ "loss": 3.5454647541046143,
+ "step": 4222
+ },
+ {
+ "epoch": 58.65705548274356,
+ "grad_norm": 0.2049611210823059,
+ "learning_rate": 0.0006,
+ "loss": 3.529350996017456,
+ "step": 4223
+ },
+ {
+ "epoch": 58.671035386631715,
+ "grad_norm": 0.19259536266326904,
+ "learning_rate": 0.0006,
+ "loss": 3.5589945316314697,
+ "step": 4224
+ },
+ {
+ "epoch": 58.68501529051988,
+ "grad_norm": 0.19039863348007202,
+ "learning_rate": 0.0006,
+ "loss": 3.5593101978302,
+ "step": 4225
+ },
+ {
+ "epoch": 58.69899519440804,
+ "grad_norm": 0.21481311321258545,
+ "learning_rate": 0.0006,
+ "loss": 3.55385422706604,
+ "step": 4226
+ },
+ {
+ "epoch": 58.7129750982962,
+ "grad_norm": 0.2053634226322174,
+ "learning_rate": 0.0006,
+ "loss": 3.535224437713623,
+ "step": 4227
+ },
+ {
+ "epoch": 58.72695500218436,
+ "grad_norm": 0.21111956238746643,
+ "learning_rate": 0.0006,
+ "loss": 3.5208349227905273,
+ "step": 4228
+ },
+ {
+ "epoch": 58.74093490607252,
+ "grad_norm": 0.22069109976291656,
+ "learning_rate": 0.0006,
+ "loss": 3.5292487144470215,
+ "step": 4229
+ },
+ {
+ "epoch": 58.75491480996068,
+ "grad_norm": 0.22549185156822205,
+ "learning_rate": 0.0006,
+ "loss": 3.556830406188965,
+ "step": 4230
+ },
+ {
+ "epoch": 58.768894713848844,
+ "grad_norm": 0.22341859340667725,
+ "learning_rate": 0.0006,
+ "loss": 3.5573582649230957,
+ "step": 4231
+ },
+ {
+ "epoch": 58.782874617737,
+ "grad_norm": 0.20664502680301666,
+ "learning_rate": 0.0006,
+ "loss": 3.578657865524292,
+ "step": 4232
+ },
+ {
+ "epoch": 58.796854521625164,
+ "grad_norm": 0.19885236024856567,
+ "learning_rate": 0.0006,
+ "loss": 3.5604476928710938,
+ "step": 4233
+ },
+ {
+ "epoch": 58.81083442551333,
+ "grad_norm": 0.19446797668933868,
+ "learning_rate": 0.0006,
+ "loss": 3.5686912536621094,
+ "step": 4234
+ },
+ {
+ "epoch": 58.824814329401484,
+ "grad_norm": 0.20658083260059357,
+ "learning_rate": 0.0006,
+ "loss": 3.563167095184326,
+ "step": 4235
+ },
+ {
+ "epoch": 58.83879423328965,
+ "grad_norm": 0.21075408160686493,
+ "learning_rate": 0.0006,
+ "loss": 3.5597028732299805,
+ "step": 4236
+ },
+ {
+ "epoch": 58.8527741371778,
+ "grad_norm": 0.20652376115322113,
+ "learning_rate": 0.0006,
+ "loss": 3.5651087760925293,
+ "step": 4237
+ },
+ {
+ "epoch": 58.86675404106597,
+ "grad_norm": 0.2243892401456833,
+ "learning_rate": 0.0006,
+ "loss": 3.5442488193511963,
+ "step": 4238
+ },
+ {
+ "epoch": 58.88073394495413,
+ "grad_norm": 0.23486459255218506,
+ "learning_rate": 0.0006,
+ "loss": 3.545135974884033,
+ "step": 4239
+ },
+ {
+ "epoch": 58.89471384884229,
+ "grad_norm": 0.23100663721561432,
+ "learning_rate": 0.0006,
+ "loss": 3.57177734375,
+ "step": 4240
+ },
+ {
+ "epoch": 58.90869375273045,
+ "grad_norm": 0.2269909679889679,
+ "learning_rate": 0.0006,
+ "loss": 3.528768301010132,
+ "step": 4241
+ },
+ {
+ "epoch": 58.92267365661861,
+ "grad_norm": 0.20349252223968506,
+ "learning_rate": 0.0006,
+ "loss": 3.591031789779663,
+ "step": 4242
+ },
+ {
+ "epoch": 58.93665356050677,
+ "grad_norm": 0.21038702130317688,
+ "learning_rate": 0.0006,
+ "loss": 3.5696892738342285,
+ "step": 4243
+ },
+ {
+ "epoch": 58.95063346439493,
+ "grad_norm": 0.21356560289859772,
+ "learning_rate": 0.0006,
+ "loss": 3.5708963871002197,
+ "step": 4244
+ },
+ {
+ "epoch": 58.964613368283096,
+ "grad_norm": 0.20008863508701324,
+ "learning_rate": 0.0006,
+ "loss": 3.524749279022217,
+ "step": 4245
+ },
+ {
+ "epoch": 58.97859327217125,
+ "grad_norm": 0.20453840494155884,
+ "learning_rate": 0.0006,
+ "loss": 3.5677876472473145,
+ "step": 4246
+ },
+ {
+ "epoch": 58.992573176059416,
+ "grad_norm": 0.21549056470394135,
+ "learning_rate": 0.0006,
+ "loss": 3.550870418548584,
+ "step": 4247
+ },
+ {
+ "epoch": 59.0,
+ "grad_norm": 0.2592930793762207,
+ "learning_rate": 0.0006,
+ "loss": 3.550673484802246,
+ "step": 4248
+ },
+ {
+ "epoch": 59.0,
+ "eval_loss": 3.968780279159546,
+ "eval_runtime": 45.6246,
+ "eval_samples_per_second": 53.524,
+ "eval_steps_per_second": 3.353,
+ "step": 4248
+ },
+ {
+ "epoch": 59.01397990388816,
+ "grad_norm": 0.218043252825737,
+ "learning_rate": 0.0006,
+ "loss": 3.49605655670166,
+ "step": 4249
+ },
+ {
+ "epoch": 59.02795980777632,
+ "grad_norm": 0.25112417340278625,
+ "learning_rate": 0.0006,
+ "loss": 3.534919023513794,
+ "step": 4250
+ },
+ {
+ "epoch": 59.04193971166448,
+ "grad_norm": 0.2785079777240753,
+ "learning_rate": 0.0006,
+ "loss": 3.5425362586975098,
+ "step": 4251
+ },
+ {
+ "epoch": 59.05591961555265,
+ "grad_norm": 0.2667599618434906,
+ "learning_rate": 0.0006,
+ "loss": 3.4955453872680664,
+ "step": 4252
+ },
+ {
+ "epoch": 59.0698995194408,
+ "grad_norm": 0.24012432992458344,
+ "learning_rate": 0.0006,
+ "loss": 3.4949915409088135,
+ "step": 4253
+ },
+ {
+ "epoch": 59.083879423328966,
+ "grad_norm": 0.2502294182777405,
+ "learning_rate": 0.0006,
+ "loss": 3.5163769721984863,
+ "step": 4254
+ },
+ {
+ "epoch": 59.09785932721712,
+ "grad_norm": 0.28585609793663025,
+ "learning_rate": 0.0006,
+ "loss": 3.4852542877197266,
+ "step": 4255
+ },
+ {
+ "epoch": 59.111839231105286,
+ "grad_norm": 0.2815989553928375,
+ "learning_rate": 0.0006,
+ "loss": 3.4991462230682373,
+ "step": 4256
+ },
+ {
+ "epoch": 59.12581913499345,
+ "grad_norm": 0.22922837734222412,
+ "learning_rate": 0.0006,
+ "loss": 3.511322021484375,
+ "step": 4257
+ },
+ {
+ "epoch": 59.139799038881605,
+ "grad_norm": 0.24964241683483124,
+ "learning_rate": 0.0006,
+ "loss": 3.521056652069092,
+ "step": 4258
+ },
+ {
+ "epoch": 59.15377894276977,
+ "grad_norm": 0.27568385004997253,
+ "learning_rate": 0.0006,
+ "loss": 3.514004707336426,
+ "step": 4259
+ },
+ {
+ "epoch": 59.16775884665793,
+ "grad_norm": 0.2605166733264923,
+ "learning_rate": 0.0006,
+ "loss": 3.5132668018341064,
+ "step": 4260
+ },
+ {
+ "epoch": 59.18173875054609,
+ "grad_norm": 0.24248117208480835,
+ "learning_rate": 0.0006,
+ "loss": 3.5492095947265625,
+ "step": 4261
+ },
+ {
+ "epoch": 59.19571865443425,
+ "grad_norm": 0.26359522342681885,
+ "learning_rate": 0.0006,
+ "loss": 3.521390438079834,
+ "step": 4262
+ },
+ {
+ "epoch": 59.20969855832241,
+ "grad_norm": 0.262248694896698,
+ "learning_rate": 0.0006,
+ "loss": 3.556307315826416,
+ "step": 4263
+ },
+ {
+ "epoch": 59.22367846221057,
+ "grad_norm": 0.23514866828918457,
+ "learning_rate": 0.0006,
+ "loss": 3.4989941120147705,
+ "step": 4264
+ },
+ {
+ "epoch": 59.237658366098735,
+ "grad_norm": 0.22758382558822632,
+ "learning_rate": 0.0006,
+ "loss": 3.5307068824768066,
+ "step": 4265
+ },
+ {
+ "epoch": 59.25163826998689,
+ "grad_norm": 0.24037839472293854,
+ "learning_rate": 0.0006,
+ "loss": 3.495872974395752,
+ "step": 4266
+ },
+ {
+ "epoch": 59.265618173875055,
+ "grad_norm": 0.22763589024543762,
+ "learning_rate": 0.0006,
+ "loss": 3.54052472114563,
+ "step": 4267
+ },
+ {
+ "epoch": 59.27959807776322,
+ "grad_norm": 0.22400406002998352,
+ "learning_rate": 0.0006,
+ "loss": 3.498671054840088,
+ "step": 4268
+ },
+ {
+ "epoch": 59.293577981651374,
+ "grad_norm": 0.2326328009366989,
+ "learning_rate": 0.0006,
+ "loss": 3.559108257293701,
+ "step": 4269
+ },
+ {
+ "epoch": 59.30755788553954,
+ "grad_norm": 0.24426043033599854,
+ "learning_rate": 0.0006,
+ "loss": 3.5245609283447266,
+ "step": 4270
+ },
+ {
+ "epoch": 59.3215377894277,
+ "grad_norm": 0.2159317582845688,
+ "learning_rate": 0.0006,
+ "loss": 3.5189900398254395,
+ "step": 4271
+ },
+ {
+ "epoch": 59.33551769331586,
+ "grad_norm": 0.19148702919483185,
+ "learning_rate": 0.0006,
+ "loss": 3.548433303833008,
+ "step": 4272
+ },
+ {
+ "epoch": 59.34949759720402,
+ "grad_norm": 0.23349083960056305,
+ "learning_rate": 0.0006,
+ "loss": 3.5475196838378906,
+ "step": 4273
+ },
+ {
+ "epoch": 59.36347750109218,
+ "grad_norm": 0.24024079740047455,
+ "learning_rate": 0.0006,
+ "loss": 3.5172529220581055,
+ "step": 4274
+ },
+ {
+ "epoch": 59.37745740498034,
+ "grad_norm": 0.23772001266479492,
+ "learning_rate": 0.0006,
+ "loss": 3.5428695678710938,
+ "step": 4275
+ },
+ {
+ "epoch": 59.391437308868504,
+ "grad_norm": 0.21134959161281586,
+ "learning_rate": 0.0006,
+ "loss": 3.523099422454834,
+ "step": 4276
+ },
+ {
+ "epoch": 59.40541721275666,
+ "grad_norm": 0.20760025084018707,
+ "learning_rate": 0.0006,
+ "loss": 3.55435848236084,
+ "step": 4277
+ },
+ {
+ "epoch": 59.419397116644824,
+ "grad_norm": 0.21113243699073792,
+ "learning_rate": 0.0006,
+ "loss": 3.5355324745178223,
+ "step": 4278
+ },
+ {
+ "epoch": 59.43337702053299,
+ "grad_norm": 0.21604566276073456,
+ "learning_rate": 0.0006,
+ "loss": 3.5517663955688477,
+ "step": 4279
+ },
+ {
+ "epoch": 59.44735692442114,
+ "grad_norm": 0.19646669924259186,
+ "learning_rate": 0.0006,
+ "loss": 3.538435935974121,
+ "step": 4280
+ },
+ {
+ "epoch": 59.46133682830931,
+ "grad_norm": 0.20394550263881683,
+ "learning_rate": 0.0006,
+ "loss": 3.528444290161133,
+ "step": 4281
+ },
+ {
+ "epoch": 59.47531673219746,
+ "grad_norm": 0.24543620645999908,
+ "learning_rate": 0.0006,
+ "loss": 3.5355372428894043,
+ "step": 4282
+ },
+ {
+ "epoch": 59.489296636085626,
+ "grad_norm": 0.24048425257205963,
+ "learning_rate": 0.0006,
+ "loss": 3.521336078643799,
+ "step": 4283
+ },
+ {
+ "epoch": 59.50327653997379,
+ "grad_norm": 0.23630213737487793,
+ "learning_rate": 0.0006,
+ "loss": 3.556244373321533,
+ "step": 4284
+ },
+ {
+ "epoch": 59.517256443861946,
+ "grad_norm": 0.2791444659233093,
+ "learning_rate": 0.0006,
+ "loss": 3.5927138328552246,
+ "step": 4285
+ },
+ {
+ "epoch": 59.53123634775011,
+ "grad_norm": 0.30325770378112793,
+ "learning_rate": 0.0006,
+ "loss": 3.559296131134033,
+ "step": 4286
+ },
+ {
+ "epoch": 59.54521625163827,
+ "grad_norm": 0.2708670496940613,
+ "learning_rate": 0.0006,
+ "loss": 3.531050205230713,
+ "step": 4287
+ },
+ {
+ "epoch": 59.55919615552643,
+ "grad_norm": 0.23795515298843384,
+ "learning_rate": 0.0006,
+ "loss": 3.5365982055664062,
+ "step": 4288
+ },
+ {
+ "epoch": 59.57317605941459,
+ "grad_norm": 0.20949627459049225,
+ "learning_rate": 0.0006,
+ "loss": 3.5591273307800293,
+ "step": 4289
+ },
+ {
+ "epoch": 59.58715596330275,
+ "grad_norm": 0.21885769069194794,
+ "learning_rate": 0.0006,
+ "loss": 3.4965288639068604,
+ "step": 4290
+ },
+ {
+ "epoch": 59.60113586719091,
+ "grad_norm": 0.22365590929985046,
+ "learning_rate": 0.0006,
+ "loss": 3.538118362426758,
+ "step": 4291
+ },
+ {
+ "epoch": 59.615115771079076,
+ "grad_norm": 0.23178881406784058,
+ "learning_rate": 0.0006,
+ "loss": 3.515933036804199,
+ "step": 4292
+ },
+ {
+ "epoch": 59.62909567496723,
+ "grad_norm": 0.21539060771465302,
+ "learning_rate": 0.0006,
+ "loss": 3.54185152053833,
+ "step": 4293
+ },
+ {
+ "epoch": 59.643075578855395,
+ "grad_norm": 0.22033682465553284,
+ "learning_rate": 0.0006,
+ "loss": 3.526728630065918,
+ "step": 4294
+ },
+ {
+ "epoch": 59.65705548274356,
+ "grad_norm": 0.23003938794136047,
+ "learning_rate": 0.0006,
+ "loss": 3.555710792541504,
+ "step": 4295
+ },
+ {
+ "epoch": 59.671035386631715,
+ "grad_norm": 0.22887346148490906,
+ "learning_rate": 0.0006,
+ "loss": 3.580883502960205,
+ "step": 4296
+ },
+ {
+ "epoch": 59.68501529051988,
+ "grad_norm": 0.2147892713546753,
+ "learning_rate": 0.0006,
+ "loss": 3.5318822860717773,
+ "step": 4297
+ },
+ {
+ "epoch": 59.69899519440804,
+ "grad_norm": 0.22063598036766052,
+ "learning_rate": 0.0006,
+ "loss": 3.5179357528686523,
+ "step": 4298
+ },
+ {
+ "epoch": 59.7129750982962,
+ "grad_norm": 0.22569656372070312,
+ "learning_rate": 0.0006,
+ "loss": 3.583181381225586,
+ "step": 4299
+ },
+ {
+ "epoch": 59.72695500218436,
+ "grad_norm": 0.2252701222896576,
+ "learning_rate": 0.0006,
+ "loss": 3.5780375003814697,
+ "step": 4300
+ },
+ {
+ "epoch": 59.74093490607252,
+ "grad_norm": 0.2288130521774292,
+ "learning_rate": 0.0006,
+ "loss": 3.570399284362793,
+ "step": 4301
+ },
+ {
+ "epoch": 59.75491480996068,
+ "grad_norm": 0.21879231929779053,
+ "learning_rate": 0.0006,
+ "loss": 3.540292739868164,
+ "step": 4302
+ },
+ {
+ "epoch": 59.768894713848844,
+ "grad_norm": 0.20675964653491974,
+ "learning_rate": 0.0006,
+ "loss": 3.532649040222168,
+ "step": 4303
+ },
+ {
+ "epoch": 59.782874617737,
+ "grad_norm": 0.21810708940029144,
+ "learning_rate": 0.0006,
+ "loss": 3.5156657695770264,
+ "step": 4304
+ },
+ {
+ "epoch": 59.796854521625164,
+ "grad_norm": 0.22701260447502136,
+ "learning_rate": 0.0006,
+ "loss": 3.5535266399383545,
+ "step": 4305
+ },
+ {
+ "epoch": 59.81083442551333,
+ "grad_norm": 0.23433080315589905,
+ "learning_rate": 0.0006,
+ "loss": 3.5280754566192627,
+ "step": 4306
+ },
+ {
+ "epoch": 59.824814329401484,
+ "grad_norm": 0.2254341095685959,
+ "learning_rate": 0.0006,
+ "loss": 3.534045696258545,
+ "step": 4307
+ },
+ {
+ "epoch": 59.83879423328965,
+ "grad_norm": 0.21756123006343842,
+ "learning_rate": 0.0006,
+ "loss": 3.5621533393859863,
+ "step": 4308
+ },
+ {
+ "epoch": 59.8527741371778,
+ "grad_norm": 0.19731850922107697,
+ "learning_rate": 0.0006,
+ "loss": 3.536633253097534,
+ "step": 4309
+ },
+ {
+ "epoch": 59.86675404106597,
+ "grad_norm": 0.2260110229253769,
+ "learning_rate": 0.0006,
+ "loss": 3.5721538066864014,
+ "step": 4310
+ },
+ {
+ "epoch": 59.88073394495413,
+ "grad_norm": 0.22728438675403595,
+ "learning_rate": 0.0006,
+ "loss": 3.5576961040496826,
+ "step": 4311
+ },
+ {
+ "epoch": 59.89471384884229,
+ "grad_norm": 0.20675411820411682,
+ "learning_rate": 0.0006,
+ "loss": 3.5070700645446777,
+ "step": 4312
+ },
+ {
+ "epoch": 59.90869375273045,
+ "grad_norm": 0.22258996963500977,
+ "learning_rate": 0.0006,
+ "loss": 3.564357280731201,
+ "step": 4313
+ },
+ {
+ "epoch": 59.92267365661861,
+ "grad_norm": 0.2429998815059662,
+ "learning_rate": 0.0006,
+ "loss": 3.519744873046875,
+ "step": 4314
+ },
+ {
+ "epoch": 59.93665356050677,
+ "grad_norm": 0.2394791841506958,
+ "learning_rate": 0.0006,
+ "loss": 3.533292055130005,
+ "step": 4315
+ },
+ {
+ "epoch": 59.95063346439493,
+ "grad_norm": 0.20659418404102325,
+ "learning_rate": 0.0006,
+ "loss": 3.5475940704345703,
+ "step": 4316
+ },
+ {
+ "epoch": 59.964613368283096,
+ "grad_norm": 0.19679132103919983,
+ "learning_rate": 0.0006,
+ "loss": 3.5794930458068848,
+ "step": 4317
+ },
+ {
+ "epoch": 59.97859327217125,
+ "grad_norm": 0.2133002132177353,
+ "learning_rate": 0.0006,
+ "loss": 3.5506505966186523,
+ "step": 4318
+ },
+ {
+ "epoch": 59.992573176059416,
+ "grad_norm": 0.22383661568164825,
+ "learning_rate": 0.0006,
+ "loss": 3.547708511352539,
+ "step": 4319
+ },
+ {
+ "epoch": 60.0,
+ "grad_norm": 0.25744178891181946,
+ "learning_rate": 0.0006,
+ "loss": 3.5519227981567383,
+ "step": 4320
+ },
+ {
+ "epoch": 60.0,
+ "eval_loss": 3.9816012382507324,
+ "eval_runtime": 46.3931,
+ "eval_samples_per_second": 52.637,
+ "eval_steps_per_second": 3.298,
+ "step": 4320
+ },
+ {
+ "epoch": 60.01397990388816,
+ "grad_norm": 0.2202005684375763,
+ "learning_rate": 0.0006,
+ "loss": 3.51010799407959,
+ "step": 4321
+ },
+ {
+ "epoch": 60.02795980777632,
+ "grad_norm": 0.24285688996315002,
+ "learning_rate": 0.0006,
+ "loss": 3.519137382507324,
+ "step": 4322
+ },
+ {
+ "epoch": 60.04193971166448,
+ "grad_norm": 0.2700578570365906,
+ "learning_rate": 0.0006,
+ "loss": 3.523392915725708,
+ "step": 4323
+ },
+ {
+ "epoch": 60.05591961555265,
+ "grad_norm": 0.30088669061660767,
+ "learning_rate": 0.0006,
+ "loss": 3.48724627494812,
+ "step": 4324
+ },
+ {
+ "epoch": 60.0698995194408,
+ "grad_norm": 0.30426669120788574,
+ "learning_rate": 0.0006,
+ "loss": 3.479025363922119,
+ "step": 4325
+ },
+ {
+ "epoch": 60.083879423328966,
+ "grad_norm": 0.2718220055103302,
+ "learning_rate": 0.0006,
+ "loss": 3.4923276901245117,
+ "step": 4326
+ },
+ {
+ "epoch": 60.09785932721712,
+ "grad_norm": 0.23625287413597107,
+ "learning_rate": 0.0006,
+ "loss": 3.5152812004089355,
+ "step": 4327
+ },
+ {
+ "epoch": 60.111839231105286,
+ "grad_norm": 0.23336869478225708,
+ "learning_rate": 0.0006,
+ "loss": 3.512453079223633,
+ "step": 4328
+ },
+ {
+ "epoch": 60.12581913499345,
+ "grad_norm": 0.24780215322971344,
+ "learning_rate": 0.0006,
+ "loss": 3.505812168121338,
+ "step": 4329
+ },
+ {
+ "epoch": 60.139799038881605,
+ "grad_norm": 0.25600194931030273,
+ "learning_rate": 0.0006,
+ "loss": 3.5281314849853516,
+ "step": 4330
+ },
+ {
+ "epoch": 60.15377894276977,
+ "grad_norm": 0.2458304911851883,
+ "learning_rate": 0.0006,
+ "loss": 3.4932949542999268,
+ "step": 4331
+ },
+ {
+ "epoch": 60.16775884665793,
+ "grad_norm": 0.2246888130903244,
+ "learning_rate": 0.0006,
+ "loss": 3.5295495986938477,
+ "step": 4332
+ },
+ {
+ "epoch": 60.18173875054609,
+ "grad_norm": 0.23762951791286469,
+ "learning_rate": 0.0006,
+ "loss": 3.4938201904296875,
+ "step": 4333
+ },
+ {
+ "epoch": 60.19571865443425,
+ "grad_norm": 0.24483945965766907,
+ "learning_rate": 0.0006,
+ "loss": 3.544774055480957,
+ "step": 4334
+ },
+ {
+ "epoch": 60.20969855832241,
+ "grad_norm": 0.24154368042945862,
+ "learning_rate": 0.0006,
+ "loss": 3.5352816581726074,
+ "step": 4335
+ },
+ {
+ "epoch": 60.22367846221057,
+ "grad_norm": 0.22929225862026215,
+ "learning_rate": 0.0006,
+ "loss": 3.5546953678131104,
+ "step": 4336
+ },
+ {
+ "epoch": 60.237658366098735,
+ "grad_norm": 0.21391373872756958,
+ "learning_rate": 0.0006,
+ "loss": 3.537647247314453,
+ "step": 4337
+ },
+ {
+ "epoch": 60.25163826998689,
+ "grad_norm": 0.20410357415676117,
+ "learning_rate": 0.0006,
+ "loss": 3.535831928253174,
+ "step": 4338
+ },
+ {
+ "epoch": 60.265618173875055,
+ "grad_norm": 0.2070329487323761,
+ "learning_rate": 0.0006,
+ "loss": 3.5234389305114746,
+ "step": 4339
+ },
+ {
+ "epoch": 60.27959807776322,
+ "grad_norm": 0.20540225505828857,
+ "learning_rate": 0.0006,
+ "loss": 3.557478427886963,
+ "step": 4340
+ },
+ {
+ "epoch": 60.293577981651374,
+ "grad_norm": 0.2124919891357422,
+ "learning_rate": 0.0006,
+ "loss": 3.532726764678955,
+ "step": 4341
+ },
+ {
+ "epoch": 60.30755788553954,
+ "grad_norm": 0.22207678854465485,
+ "learning_rate": 0.0006,
+ "loss": 3.5314202308654785,
+ "step": 4342
+ },
+ {
+ "epoch": 60.3215377894277,
+ "grad_norm": 0.2137281745672226,
+ "learning_rate": 0.0006,
+ "loss": 3.5491206645965576,
+ "step": 4343
+ },
+ {
+ "epoch": 60.33551769331586,
+ "grad_norm": 0.20728953182697296,
+ "learning_rate": 0.0006,
+ "loss": 3.5111031532287598,
+ "step": 4344
+ },
+ {
+ "epoch": 60.34949759720402,
+ "grad_norm": 0.22547020018100739,
+ "learning_rate": 0.0006,
+ "loss": 3.5311098098754883,
+ "step": 4345
+ },
+ {
+ "epoch": 60.36347750109218,
+ "grad_norm": 0.23352888226509094,
+ "learning_rate": 0.0006,
+ "loss": 3.5200939178466797,
+ "step": 4346
+ },
+ {
+ "epoch": 60.37745740498034,
+ "grad_norm": 0.21329060196876526,
+ "learning_rate": 0.0006,
+ "loss": 3.508589744567871,
+ "step": 4347
+ },
+ {
+ "epoch": 60.391437308868504,
+ "grad_norm": 0.1904045194387436,
+ "learning_rate": 0.0006,
+ "loss": 3.4850475788116455,
+ "step": 4348
+ },
+ {
+ "epoch": 60.40541721275666,
+ "grad_norm": 0.20586109161376953,
+ "learning_rate": 0.0006,
+ "loss": 3.5503551959991455,
+ "step": 4349
+ },
+ {
+ "epoch": 60.419397116644824,
+ "grad_norm": 0.21311818063259125,
+ "learning_rate": 0.0006,
+ "loss": 3.5243923664093018,
+ "step": 4350
+ },
+ {
+ "epoch": 60.43337702053299,
+ "grad_norm": 0.21479184925556183,
+ "learning_rate": 0.0006,
+ "loss": 3.553647041320801,
+ "step": 4351
+ },
+ {
+ "epoch": 60.44735692442114,
+ "grad_norm": 0.19994449615478516,
+ "learning_rate": 0.0006,
+ "loss": 3.5558884143829346,
+ "step": 4352
+ },
+ {
+ "epoch": 60.46133682830931,
+ "grad_norm": 0.21455694735050201,
+ "learning_rate": 0.0006,
+ "loss": 3.5186543464660645,
+ "step": 4353
+ },
+ {
+ "epoch": 60.47531673219746,
+ "grad_norm": 0.21904151141643524,
+ "learning_rate": 0.0006,
+ "loss": 3.526367425918579,
+ "step": 4354
+ },
+ {
+ "epoch": 60.489296636085626,
+ "grad_norm": 0.1908986121416092,
+ "learning_rate": 0.0006,
+ "loss": 3.541072368621826,
+ "step": 4355
+ },
+ {
+ "epoch": 60.50327653997379,
+ "grad_norm": 0.20290519297122955,
+ "learning_rate": 0.0006,
+ "loss": 3.530333995819092,
+ "step": 4356
+ },
+ {
+ "epoch": 60.517256443861946,
+ "grad_norm": 0.2318771779537201,
+ "learning_rate": 0.0006,
+ "loss": 3.5260486602783203,
+ "step": 4357
+ },
+ {
+ "epoch": 60.53123634775011,
+ "grad_norm": 0.25559669733047485,
+ "learning_rate": 0.0006,
+ "loss": 3.56851863861084,
+ "step": 4358
+ },
+ {
+ "epoch": 60.54521625163827,
+ "grad_norm": 0.2529429793357849,
+ "learning_rate": 0.0006,
+ "loss": 3.5519490242004395,
+ "step": 4359
+ },
+ {
+ "epoch": 60.55919615552643,
+ "grad_norm": 0.22857248783111572,
+ "learning_rate": 0.0006,
+ "loss": 3.5556063652038574,
+ "step": 4360
+ },
+ {
+ "epoch": 60.57317605941459,
+ "grad_norm": 0.21628573536872864,
+ "learning_rate": 0.0006,
+ "loss": 3.5321288108825684,
+ "step": 4361
+ },
+ {
+ "epoch": 60.58715596330275,
+ "grad_norm": 0.19497910141944885,
+ "learning_rate": 0.0006,
+ "loss": 3.5480406284332275,
+ "step": 4362
+ },
+ {
+ "epoch": 60.60113586719091,
+ "grad_norm": 0.204348623752594,
+ "learning_rate": 0.0006,
+ "loss": 3.522806167602539,
+ "step": 4363
+ },
+ {
+ "epoch": 60.615115771079076,
+ "grad_norm": 0.23013663291931152,
+ "learning_rate": 0.0006,
+ "loss": 3.512876033782959,
+ "step": 4364
+ },
+ {
+ "epoch": 60.62909567496723,
+ "grad_norm": 0.22948725521564484,
+ "learning_rate": 0.0006,
+ "loss": 3.54276704788208,
+ "step": 4365
+ },
+ {
+ "epoch": 60.643075578855395,
+ "grad_norm": 0.20528492331504822,
+ "learning_rate": 0.0006,
+ "loss": 3.5592503547668457,
+ "step": 4366
+ },
+ {
+ "epoch": 60.65705548274356,
+ "grad_norm": 0.214582160115242,
+ "learning_rate": 0.0006,
+ "loss": 3.5168166160583496,
+ "step": 4367
+ },
+ {
+ "epoch": 60.671035386631715,
+ "grad_norm": 0.18893493711948395,
+ "learning_rate": 0.0006,
+ "loss": 3.51012921333313,
+ "step": 4368
+ },
+ {
+ "epoch": 60.68501529051988,
+ "grad_norm": 0.19301992654800415,
+ "learning_rate": 0.0006,
+ "loss": 3.5396199226379395,
+ "step": 4369
+ },
+ {
+ "epoch": 60.69899519440804,
+ "grad_norm": 0.22339801490306854,
+ "learning_rate": 0.0006,
+ "loss": 3.5463967323303223,
+ "step": 4370
+ },
+ {
+ "epoch": 60.7129750982962,
+ "grad_norm": 0.19028180837631226,
+ "learning_rate": 0.0006,
+ "loss": 3.534419536590576,
+ "step": 4371
+ },
+ {
+ "epoch": 60.72695500218436,
+ "grad_norm": 0.2078639566898346,
+ "learning_rate": 0.0006,
+ "loss": 3.5345680713653564,
+ "step": 4372
+ },
+ {
+ "epoch": 60.74093490607252,
+ "grad_norm": 0.24292199313640594,
+ "learning_rate": 0.0006,
+ "loss": 3.5291242599487305,
+ "step": 4373
+ },
+ {
+ "epoch": 60.75491480996068,
+ "grad_norm": 0.25118497014045715,
+ "learning_rate": 0.0006,
+ "loss": 3.5362191200256348,
+ "step": 4374
+ },
+ {
+ "epoch": 60.768894713848844,
+ "grad_norm": 0.24816395342350006,
+ "learning_rate": 0.0006,
+ "loss": 3.539637804031372,
+ "step": 4375
+ },
+ {
+ "epoch": 60.782874617737,
+ "grad_norm": 0.23654010891914368,
+ "learning_rate": 0.0006,
+ "loss": 3.482605457305908,
+ "step": 4376
+ },
+ {
+ "epoch": 60.796854521625164,
+ "grad_norm": 0.21593770384788513,
+ "learning_rate": 0.0006,
+ "loss": 3.550279140472412,
+ "step": 4377
+ },
+ {
+ "epoch": 60.81083442551333,
+ "grad_norm": 0.21346014738082886,
+ "learning_rate": 0.0006,
+ "loss": 3.541086196899414,
+ "step": 4378
+ },
+ {
+ "epoch": 60.824814329401484,
+ "grad_norm": 0.2284841537475586,
+ "learning_rate": 0.0006,
+ "loss": 3.544254779815674,
+ "step": 4379
+ },
+ {
+ "epoch": 60.83879423328965,
+ "grad_norm": 0.23353151977062225,
+ "learning_rate": 0.0006,
+ "loss": 3.5606589317321777,
+ "step": 4380
+ },
+ {
+ "epoch": 60.8527741371778,
+ "grad_norm": 0.2201574146747589,
+ "learning_rate": 0.0006,
+ "loss": 3.524120807647705,
+ "step": 4381
+ },
+ {
+ "epoch": 60.86675404106597,
+ "grad_norm": 0.2277211993932724,
+ "learning_rate": 0.0006,
+ "loss": 3.553539276123047,
+ "step": 4382
+ },
+ {
+ "epoch": 60.88073394495413,
+ "grad_norm": 0.2282724678516388,
+ "learning_rate": 0.0006,
+ "loss": 3.5247130393981934,
+ "step": 4383
+ },
+ {
+ "epoch": 60.89471384884229,
+ "grad_norm": 0.20859065651893616,
+ "learning_rate": 0.0006,
+ "loss": 3.5654680728912354,
+ "step": 4384
+ },
+ {
+ "epoch": 60.90869375273045,
+ "grad_norm": 0.1995432823896408,
+ "learning_rate": 0.0006,
+ "loss": 3.5091423988342285,
+ "step": 4385
+ },
+ {
+ "epoch": 60.92267365661861,
+ "grad_norm": 0.19769565761089325,
+ "learning_rate": 0.0006,
+ "loss": 3.5375986099243164,
+ "step": 4386
+ },
+ {
+ "epoch": 60.93665356050677,
+ "grad_norm": 0.21246176958084106,
+ "learning_rate": 0.0006,
+ "loss": 3.570774793624878,
+ "step": 4387
+ },
+ {
+ "epoch": 60.95063346439493,
+ "grad_norm": 0.2212657630443573,
+ "learning_rate": 0.0006,
+ "loss": 3.5192928314208984,
+ "step": 4388
+ },
+ {
+ "epoch": 60.964613368283096,
+ "grad_norm": 0.2258632481098175,
+ "learning_rate": 0.0006,
+ "loss": 3.5356457233428955,
+ "step": 4389
+ },
+ {
+ "epoch": 60.97859327217125,
+ "grad_norm": 0.1998971700668335,
+ "learning_rate": 0.0006,
+ "loss": 3.52758526802063,
+ "step": 4390
+ },
+ {
+ "epoch": 60.992573176059416,
+ "grad_norm": 0.1932399868965149,
+ "learning_rate": 0.0006,
+ "loss": 3.562718391418457,
+ "step": 4391
+ },
+ {
+ "epoch": 61.0,
+ "grad_norm": 0.24292197823524475,
+ "learning_rate": 0.0006,
+ "loss": 3.550189971923828,
+ "step": 4392
+ },
+ {
+ "epoch": 61.0,
+ "eval_loss": 3.974423408508301,
+ "eval_runtime": 45.8822,
+ "eval_samples_per_second": 53.223,
+ "eval_steps_per_second": 3.335,
+ "step": 4392
+ },
+ {
+ "epoch": 61.01397990388816,
+ "grad_norm": 0.2216092199087143,
+ "learning_rate": 0.0006,
+ "loss": 3.51747989654541,
+ "step": 4393
+ },
+ {
+ "epoch": 61.02795980777632,
+ "grad_norm": 0.23488417267799377,
+ "learning_rate": 0.0006,
+ "loss": 3.529064178466797,
+ "step": 4394
+ },
+ {
+ "epoch": 61.04193971166448,
+ "grad_norm": 0.2805800437927246,
+ "learning_rate": 0.0006,
+ "loss": 3.4868035316467285,
+ "step": 4395
+ },
+ {
+ "epoch": 61.05591961555265,
+ "grad_norm": 0.32623469829559326,
+ "learning_rate": 0.0006,
+ "loss": 3.5209708213806152,
+ "step": 4396
+ },
+ {
+ "epoch": 61.0698995194408,
+ "grad_norm": 0.2645402252674103,
+ "learning_rate": 0.0006,
+ "loss": 3.524512767791748,
+ "step": 4397
+ },
+ {
+ "epoch": 61.083879423328966,
+ "grad_norm": 0.21118173003196716,
+ "learning_rate": 0.0006,
+ "loss": 3.5167856216430664,
+ "step": 4398
+ },
+ {
+ "epoch": 61.09785932721712,
+ "grad_norm": 0.28649622201919556,
+ "learning_rate": 0.0006,
+ "loss": 3.5122973918914795,
+ "step": 4399
+ },
+ {
+ "epoch": 61.111839231105286,
+ "grad_norm": 0.39095914363861084,
+ "learning_rate": 0.0006,
+ "loss": 3.481421947479248,
+ "step": 4400
+ },
+ {
+ "epoch": 61.12581913499345,
+ "grad_norm": 0.4013976454734802,
+ "learning_rate": 0.0006,
+ "loss": 3.4859061241149902,
+ "step": 4401
+ },
+ {
+ "epoch": 61.139799038881605,
+ "grad_norm": 0.30067047476768494,
+ "learning_rate": 0.0006,
+ "loss": 3.524209976196289,
+ "step": 4402
+ },
+ {
+ "epoch": 61.15377894276977,
+ "grad_norm": 0.2086855173110962,
+ "learning_rate": 0.0006,
+ "loss": 3.4974379539489746,
+ "step": 4403
+ },
+ {
+ "epoch": 61.16775884665793,
+ "grad_norm": 0.25443482398986816,
+ "learning_rate": 0.0006,
+ "loss": 3.517038345336914,
+ "step": 4404
+ },
+ {
+ "epoch": 61.18173875054609,
+ "grad_norm": 0.27545589208602905,
+ "learning_rate": 0.0006,
+ "loss": 3.5075795650482178,
+ "step": 4405
+ },
+ {
+ "epoch": 61.19571865443425,
+ "grad_norm": 0.269279420375824,
+ "learning_rate": 0.0006,
+ "loss": 3.512235641479492,
+ "step": 4406
+ },
+ {
+ "epoch": 61.20969855832241,
+ "grad_norm": 0.24606923758983612,
+ "learning_rate": 0.0006,
+ "loss": 3.5362367630004883,
+ "step": 4407
+ },
+ {
+ "epoch": 61.22367846221057,
+ "grad_norm": 0.23358067870140076,
+ "learning_rate": 0.0006,
+ "loss": 3.5256686210632324,
+ "step": 4408
+ },
+ {
+ "epoch": 61.237658366098735,
+ "grad_norm": 0.2528085708618164,
+ "learning_rate": 0.0006,
+ "loss": 3.504239559173584,
+ "step": 4409
+ },
+ {
+ "epoch": 61.25163826998689,
+ "grad_norm": 0.28145745396614075,
+ "learning_rate": 0.0006,
+ "loss": 3.4862139225006104,
+ "step": 4410
+ },
+ {
+ "epoch": 61.265618173875055,
+ "grad_norm": 0.26570039987564087,
+ "learning_rate": 0.0006,
+ "loss": 3.5138425827026367,
+ "step": 4411
+ },
+ {
+ "epoch": 61.27959807776322,
+ "grad_norm": 0.2391415685415268,
+ "learning_rate": 0.0006,
+ "loss": 3.537569999694824,
+ "step": 4412
+ },
+ {
+ "epoch": 61.293577981651374,
+ "grad_norm": 0.22194577753543854,
+ "learning_rate": 0.0006,
+ "loss": 3.5367543697357178,
+ "step": 4413
+ },
+ {
+ "epoch": 61.30755788553954,
+ "grad_norm": 0.2388865202665329,
+ "learning_rate": 0.0006,
+ "loss": 3.533341407775879,
+ "step": 4414
+ },
+ {
+ "epoch": 61.3215377894277,
+ "grad_norm": 0.2666625380516052,
+ "learning_rate": 0.0006,
+ "loss": 3.501162528991699,
+ "step": 4415
+ },
+ {
+ "epoch": 61.33551769331586,
+ "grad_norm": 0.25569409132003784,
+ "learning_rate": 0.0006,
+ "loss": 3.529283046722412,
+ "step": 4416
+ },
+ {
+ "epoch": 61.34949759720402,
+ "grad_norm": 0.24683351814746857,
+ "learning_rate": 0.0006,
+ "loss": 3.508152484893799,
+ "step": 4417
+ },
+ {
+ "epoch": 61.36347750109218,
+ "grad_norm": 0.22290605306625366,
+ "learning_rate": 0.0006,
+ "loss": 3.5309581756591797,
+ "step": 4418
+ },
+ {
+ "epoch": 61.37745740498034,
+ "grad_norm": 0.2174215167760849,
+ "learning_rate": 0.0006,
+ "loss": 3.508796453475952,
+ "step": 4419
+ },
+ {
+ "epoch": 61.391437308868504,
+ "grad_norm": 0.23006199300289154,
+ "learning_rate": 0.0006,
+ "loss": 3.5497584342956543,
+ "step": 4420
+ },
+ {
+ "epoch": 61.40541721275666,
+ "grad_norm": 0.2311345487833023,
+ "learning_rate": 0.0006,
+ "loss": 3.5524582862854004,
+ "step": 4421
+ },
+ {
+ "epoch": 61.419397116644824,
+ "grad_norm": 0.2296203076839447,
+ "learning_rate": 0.0006,
+ "loss": 3.5146689414978027,
+ "step": 4422
+ },
+ {
+ "epoch": 61.43337702053299,
+ "grad_norm": 0.24848754703998566,
+ "learning_rate": 0.0006,
+ "loss": 3.489335060119629,
+ "step": 4423
+ },
+ {
+ "epoch": 61.44735692442114,
+ "grad_norm": 0.23717737197875977,
+ "learning_rate": 0.0006,
+ "loss": 3.4982404708862305,
+ "step": 4424
+ },
+ {
+ "epoch": 61.46133682830931,
+ "grad_norm": 0.21826806664466858,
+ "learning_rate": 0.0006,
+ "loss": 3.5134825706481934,
+ "step": 4425
+ },
+ {
+ "epoch": 61.47531673219746,
+ "grad_norm": 0.22878992557525635,
+ "learning_rate": 0.0006,
+ "loss": 3.512604236602783,
+ "step": 4426
+ },
+ {
+ "epoch": 61.489296636085626,
+ "grad_norm": 0.21184465289115906,
+ "learning_rate": 0.0006,
+ "loss": 3.5314245223999023,
+ "step": 4427
+ },
+ {
+ "epoch": 61.50327653997379,
+ "grad_norm": 0.2129429429769516,
+ "learning_rate": 0.0006,
+ "loss": 3.51242733001709,
+ "step": 4428
+ },
+ {
+ "epoch": 61.517256443861946,
+ "grad_norm": 0.21566109359264374,
+ "learning_rate": 0.0006,
+ "loss": 3.5287160873413086,
+ "step": 4429
+ },
+ {
+ "epoch": 61.53123634775011,
+ "grad_norm": 0.2010934203863144,
+ "learning_rate": 0.0006,
+ "loss": 3.5250844955444336,
+ "step": 4430
+ },
+ {
+ "epoch": 61.54521625163827,
+ "grad_norm": 0.1979563683271408,
+ "learning_rate": 0.0006,
+ "loss": 3.553415536880493,
+ "step": 4431
+ },
+ {
+ "epoch": 61.55919615552643,
+ "grad_norm": 0.19513480365276337,
+ "learning_rate": 0.0006,
+ "loss": 3.500551223754883,
+ "step": 4432
+ },
+ {
+ "epoch": 61.57317605941459,
+ "grad_norm": 0.19601108133792877,
+ "learning_rate": 0.0006,
+ "loss": 3.532161235809326,
+ "step": 4433
+ },
+ {
+ "epoch": 61.58715596330275,
+ "grad_norm": 0.2054651528596878,
+ "learning_rate": 0.0006,
+ "loss": 3.5360732078552246,
+ "step": 4434
+ },
+ {
+ "epoch": 61.60113586719091,
+ "grad_norm": 0.2096887230873108,
+ "learning_rate": 0.0006,
+ "loss": 3.522620916366577,
+ "step": 4435
+ },
+ {
+ "epoch": 61.615115771079076,
+ "grad_norm": 0.19664394855499268,
+ "learning_rate": 0.0006,
+ "loss": 3.5298569202423096,
+ "step": 4436
+ },
+ {
+ "epoch": 61.62909567496723,
+ "grad_norm": 0.20641925930976868,
+ "learning_rate": 0.0006,
+ "loss": 3.521233320236206,
+ "step": 4437
+ },
+ {
+ "epoch": 61.643075578855395,
+ "grad_norm": 0.2013241946697235,
+ "learning_rate": 0.0006,
+ "loss": 3.536212682723999,
+ "step": 4438
+ },
+ {
+ "epoch": 61.65705548274356,
+ "grad_norm": 0.19561146199703217,
+ "learning_rate": 0.0006,
+ "loss": 3.569584846496582,
+ "step": 4439
+ },
+ {
+ "epoch": 61.671035386631715,
+ "grad_norm": 0.2281758189201355,
+ "learning_rate": 0.0006,
+ "loss": 3.5208396911621094,
+ "step": 4440
+ },
+ {
+ "epoch": 61.68501529051988,
+ "grad_norm": 0.2387618124485016,
+ "learning_rate": 0.0006,
+ "loss": 3.5338330268859863,
+ "step": 4441
+ },
+ {
+ "epoch": 61.69899519440804,
+ "grad_norm": 0.23753441870212555,
+ "learning_rate": 0.0006,
+ "loss": 3.5454416275024414,
+ "step": 4442
+ },
+ {
+ "epoch": 61.7129750982962,
+ "grad_norm": 0.2477191686630249,
+ "learning_rate": 0.0006,
+ "loss": 3.5409836769104004,
+ "step": 4443
+ },
+ {
+ "epoch": 61.72695500218436,
+ "grad_norm": 0.25156062841415405,
+ "learning_rate": 0.0006,
+ "loss": 3.5135607719421387,
+ "step": 4444
+ },
+ {
+ "epoch": 61.74093490607252,
+ "grad_norm": 0.21422065794467926,
+ "learning_rate": 0.0006,
+ "loss": 3.5514771938323975,
+ "step": 4445
+ },
+ {
+ "epoch": 61.75491480996068,
+ "grad_norm": 0.2103811502456665,
+ "learning_rate": 0.0006,
+ "loss": 3.544037103652954,
+ "step": 4446
+ },
+ {
+ "epoch": 61.768894713848844,
+ "grad_norm": 0.21455387771129608,
+ "learning_rate": 0.0006,
+ "loss": 3.5526280403137207,
+ "step": 4447
+ },
+ {
+ "epoch": 61.782874617737,
+ "grad_norm": 0.22101432085037231,
+ "learning_rate": 0.0006,
+ "loss": 3.510197639465332,
+ "step": 4448
+ },
+ {
+ "epoch": 61.796854521625164,
+ "grad_norm": 0.2093520164489746,
+ "learning_rate": 0.0006,
+ "loss": 3.52504301071167,
+ "step": 4449
+ },
+ {
+ "epoch": 61.81083442551333,
+ "grad_norm": 0.2224605530500412,
+ "learning_rate": 0.0006,
+ "loss": 3.5590806007385254,
+ "step": 4450
+ },
+ {
+ "epoch": 61.824814329401484,
+ "grad_norm": 0.22242501378059387,
+ "learning_rate": 0.0006,
+ "loss": 3.5409610271453857,
+ "step": 4451
+ },
+ {
+ "epoch": 61.83879423328965,
+ "grad_norm": 0.22488343715667725,
+ "learning_rate": 0.0006,
+ "loss": 3.537534236907959,
+ "step": 4452
+ },
+ {
+ "epoch": 61.8527741371778,
+ "grad_norm": 0.23510107398033142,
+ "learning_rate": 0.0006,
+ "loss": 3.5561342239379883,
+ "step": 4453
+ },
+ {
+ "epoch": 61.86675404106597,
+ "grad_norm": 0.237285315990448,
+ "learning_rate": 0.0006,
+ "loss": 3.539592742919922,
+ "step": 4454
+ },
+ {
+ "epoch": 61.88073394495413,
+ "grad_norm": 0.21573765575885773,
+ "learning_rate": 0.0006,
+ "loss": 3.552250385284424,
+ "step": 4455
+ },
+ {
+ "epoch": 61.89471384884229,
+ "grad_norm": 0.20348075032234192,
+ "learning_rate": 0.0006,
+ "loss": 3.5406012535095215,
+ "step": 4456
+ },
+ {
+ "epoch": 61.90869375273045,
+ "grad_norm": 0.21306075155735016,
+ "learning_rate": 0.0006,
+ "loss": 3.504248857498169,
+ "step": 4457
+ },
+ {
+ "epoch": 61.92267365661861,
+ "grad_norm": 0.2184341996908188,
+ "learning_rate": 0.0006,
+ "loss": 3.5441558361053467,
+ "step": 4458
+ },
+ {
+ "epoch": 61.93665356050677,
+ "grad_norm": 0.20888687670230865,
+ "learning_rate": 0.0006,
+ "loss": 3.517657518386841,
+ "step": 4459
+ },
+ {
+ "epoch": 61.95063346439493,
+ "grad_norm": 0.2066143900156021,
+ "learning_rate": 0.0006,
+ "loss": 3.525796890258789,
+ "step": 4460
+ },
+ {
+ "epoch": 61.964613368283096,
+ "grad_norm": 0.1906299591064453,
+ "learning_rate": 0.0006,
+ "loss": 3.550924777984619,
+ "step": 4461
+ },
+ {
+ "epoch": 61.97859327217125,
+ "grad_norm": 0.1834334284067154,
+ "learning_rate": 0.0006,
+ "loss": 3.5818099975585938,
+ "step": 4462
+ },
+ {
+ "epoch": 61.992573176059416,
+ "grad_norm": 0.22725825011730194,
+ "learning_rate": 0.0006,
+ "loss": 3.5573811531066895,
+ "step": 4463
+ },
+ {
+ "epoch": 62.0,
+ "grad_norm": 0.29936420917510986,
+ "learning_rate": 0.0006,
+ "loss": 3.557694435119629,
+ "step": 4464
+ },
+ {
+ "epoch": 62.0,
+ "eval_loss": 3.985543966293335,
+ "eval_runtime": 46.6388,
+ "eval_samples_per_second": 52.36,
+ "eval_steps_per_second": 3.281,
+ "step": 4464
+ },
+ {
+ "epoch": 62.01397990388816,
+ "grad_norm": 0.30896103382110596,
+ "learning_rate": 0.0006,
+ "loss": 3.4991438388824463,
+ "step": 4465
+ },
+ {
+ "epoch": 62.02795980777632,
+ "grad_norm": 0.27383437752723694,
+ "learning_rate": 0.0006,
+ "loss": 3.4710259437561035,
+ "step": 4466
+ },
+ {
+ "epoch": 62.04193971166448,
+ "grad_norm": 0.24412496387958527,
+ "learning_rate": 0.0006,
+ "loss": 3.4983878135681152,
+ "step": 4467
+ },
+ {
+ "epoch": 62.05591961555265,
+ "grad_norm": 0.2649880051612854,
+ "learning_rate": 0.0006,
+ "loss": 3.5481886863708496,
+ "step": 4468
+ },
+ {
+ "epoch": 62.0698995194408,
+ "grad_norm": 0.2625769078731537,
+ "learning_rate": 0.0006,
+ "loss": 3.5114197731018066,
+ "step": 4469
+ },
+ {
+ "epoch": 62.083879423328966,
+ "grad_norm": 0.234181210398674,
+ "learning_rate": 0.0006,
+ "loss": 3.504152536392212,
+ "step": 4470
+ },
+ {
+ "epoch": 62.09785932721712,
+ "grad_norm": 0.21403342485427856,
+ "learning_rate": 0.0006,
+ "loss": 3.50738525390625,
+ "step": 4471
+ },
+ {
+ "epoch": 62.111839231105286,
+ "grad_norm": 0.22780060768127441,
+ "learning_rate": 0.0006,
+ "loss": 3.518354892730713,
+ "step": 4472
+ },
+ {
+ "epoch": 62.12581913499345,
+ "grad_norm": 0.23725424706935883,
+ "learning_rate": 0.0006,
+ "loss": 3.5227513313293457,
+ "step": 4473
+ },
+ {
+ "epoch": 62.139799038881605,
+ "grad_norm": 0.23643283545970917,
+ "learning_rate": 0.0006,
+ "loss": 3.504271984100342,
+ "step": 4474
+ },
+ {
+ "epoch": 62.15377894276977,
+ "grad_norm": 0.22513480484485626,
+ "learning_rate": 0.0006,
+ "loss": 3.5232059955596924,
+ "step": 4475
+ },
+ {
+ "epoch": 62.16775884665793,
+ "grad_norm": 0.23375700414180756,
+ "learning_rate": 0.0006,
+ "loss": 3.506519317626953,
+ "step": 4476
+ },
+ {
+ "epoch": 62.18173875054609,
+ "grad_norm": 0.24691303074359894,
+ "learning_rate": 0.0006,
+ "loss": 3.5212974548339844,
+ "step": 4477
+ },
+ {
+ "epoch": 62.19571865443425,
+ "grad_norm": 0.23466123640537262,
+ "learning_rate": 0.0006,
+ "loss": 3.5295071601867676,
+ "step": 4478
+ },
+ {
+ "epoch": 62.20969855832241,
+ "grad_norm": 0.2432340532541275,
+ "learning_rate": 0.0006,
+ "loss": 3.487830638885498,
+ "step": 4479
+ },
+ {
+ "epoch": 62.22367846221057,
+ "grad_norm": 0.24575389921665192,
+ "learning_rate": 0.0006,
+ "loss": 3.5329103469848633,
+ "step": 4480
+ },
+ {
+ "epoch": 62.237658366098735,
+ "grad_norm": 0.2441941201686859,
+ "learning_rate": 0.0006,
+ "loss": 3.5230906009674072,
+ "step": 4481
+ },
+ {
+ "epoch": 62.25163826998689,
+ "grad_norm": 0.2278154343366623,
+ "learning_rate": 0.0006,
+ "loss": 3.4919002056121826,
+ "step": 4482
+ },
+ {
+ "epoch": 62.265618173875055,
+ "grad_norm": 0.23517796397209167,
+ "learning_rate": 0.0006,
+ "loss": 3.5137887001037598,
+ "step": 4483
+ },
+ {
+ "epoch": 62.27959807776322,
+ "grad_norm": 0.2533835470676422,
+ "learning_rate": 0.0006,
+ "loss": 3.526322841644287,
+ "step": 4484
+ },
+ {
+ "epoch": 62.293577981651374,
+ "grad_norm": 0.24535894393920898,
+ "learning_rate": 0.0006,
+ "loss": 3.5060930252075195,
+ "step": 4485
+ },
+ {
+ "epoch": 62.30755788553954,
+ "grad_norm": 0.23312991857528687,
+ "learning_rate": 0.0006,
+ "loss": 3.5015740394592285,
+ "step": 4486
+ },
+ {
+ "epoch": 62.3215377894277,
+ "grad_norm": 0.2073916792869568,
+ "learning_rate": 0.0006,
+ "loss": 3.5239500999450684,
+ "step": 4487
+ },
+ {
+ "epoch": 62.33551769331586,
+ "grad_norm": 0.23528249561786652,
+ "learning_rate": 0.0006,
+ "loss": 3.4946212768554688,
+ "step": 4488
+ },
+ {
+ "epoch": 62.34949759720402,
+ "grad_norm": 0.25181272625923157,
+ "learning_rate": 0.0006,
+ "loss": 3.5492000579833984,
+ "step": 4489
+ },
+ {
+ "epoch": 62.36347750109218,
+ "grad_norm": 0.250745564699173,
+ "learning_rate": 0.0006,
+ "loss": 3.491637706756592,
+ "step": 4490
+ },
+ {
+ "epoch": 62.37745740498034,
+ "grad_norm": 0.2461264729499817,
+ "learning_rate": 0.0006,
+ "loss": 3.514125108718872,
+ "step": 4491
+ },
+ {
+ "epoch": 62.391437308868504,
+ "grad_norm": 0.2265472114086151,
+ "learning_rate": 0.0006,
+ "loss": 3.5513534545898438,
+ "step": 4492
+ },
+ {
+ "epoch": 62.40541721275666,
+ "grad_norm": 0.21937128901481628,
+ "learning_rate": 0.0006,
+ "loss": 3.541867733001709,
+ "step": 4493
+ },
+ {
+ "epoch": 62.419397116644824,
+ "grad_norm": 0.21318639814853668,
+ "learning_rate": 0.0006,
+ "loss": 3.530449867248535,
+ "step": 4494
+ },
+ {
+ "epoch": 62.43337702053299,
+ "grad_norm": 0.21287934482097626,
+ "learning_rate": 0.0006,
+ "loss": 3.51837158203125,
+ "step": 4495
+ },
+ {
+ "epoch": 62.44735692442114,
+ "grad_norm": 0.21953676640987396,
+ "learning_rate": 0.0006,
+ "loss": 3.517456293106079,
+ "step": 4496
+ },
+ {
+ "epoch": 62.46133682830931,
+ "grad_norm": 0.23475255072116852,
+ "learning_rate": 0.0006,
+ "loss": 3.493858575820923,
+ "step": 4497
+ },
+ {
+ "epoch": 62.47531673219746,
+ "grad_norm": 0.21805652976036072,
+ "learning_rate": 0.0006,
+ "loss": 3.533367872238159,
+ "step": 4498
+ },
+ {
+ "epoch": 62.489296636085626,
+ "grad_norm": 0.21494100987911224,
+ "learning_rate": 0.0006,
+ "loss": 3.509060859680176,
+ "step": 4499
+ },
+ {
+ "epoch": 62.50327653997379,
+ "grad_norm": 0.20512273907661438,
+ "learning_rate": 0.0006,
+ "loss": 3.524643659591675,
+ "step": 4500
+ },
+ {
+ "epoch": 62.517256443861946,
+ "grad_norm": 0.2046528458595276,
+ "learning_rate": 0.0006,
+ "loss": 3.520662784576416,
+ "step": 4501
+ },
+ {
+ "epoch": 62.53123634775011,
+ "grad_norm": 0.21108978986740112,
+ "learning_rate": 0.0006,
+ "loss": 3.5121688842773438,
+ "step": 4502
+ },
+ {
+ "epoch": 62.54521625163827,
+ "grad_norm": 0.19229449331760406,
+ "learning_rate": 0.0006,
+ "loss": 3.5201103687286377,
+ "step": 4503
+ },
+ {
+ "epoch": 62.55919615552643,
+ "grad_norm": 0.1984805464744568,
+ "learning_rate": 0.0006,
+ "loss": 3.546898365020752,
+ "step": 4504
+ },
+ {
+ "epoch": 62.57317605941459,
+ "grad_norm": 0.21615411341190338,
+ "learning_rate": 0.0006,
+ "loss": 3.4933600425720215,
+ "step": 4505
+ },
+ {
+ "epoch": 62.58715596330275,
+ "grad_norm": 0.22868046164512634,
+ "learning_rate": 0.0006,
+ "loss": 3.506098747253418,
+ "step": 4506
+ },
+ {
+ "epoch": 62.60113586719091,
+ "grad_norm": 0.21856851875782013,
+ "learning_rate": 0.0006,
+ "loss": 3.5790011882781982,
+ "step": 4507
+ },
+ {
+ "epoch": 62.615115771079076,
+ "grad_norm": 0.20573008060455322,
+ "learning_rate": 0.0006,
+ "loss": 3.5236854553222656,
+ "step": 4508
+ },
+ {
+ "epoch": 62.62909567496723,
+ "grad_norm": 0.21287901699543,
+ "learning_rate": 0.0006,
+ "loss": 3.5323190689086914,
+ "step": 4509
+ },
+ {
+ "epoch": 62.643075578855395,
+ "grad_norm": 0.22703637182712555,
+ "learning_rate": 0.0006,
+ "loss": 3.5300045013427734,
+ "step": 4510
+ },
+ {
+ "epoch": 62.65705548274356,
+ "grad_norm": 0.2194957137107849,
+ "learning_rate": 0.0006,
+ "loss": 3.5727438926696777,
+ "step": 4511
+ },
+ {
+ "epoch": 62.671035386631715,
+ "grad_norm": 0.22334235906600952,
+ "learning_rate": 0.0006,
+ "loss": 3.521441698074341,
+ "step": 4512
+ },
+ {
+ "epoch": 62.68501529051988,
+ "grad_norm": 0.2559402883052826,
+ "learning_rate": 0.0006,
+ "loss": 3.513730525970459,
+ "step": 4513
+ },
+ {
+ "epoch": 62.69899519440804,
+ "grad_norm": 0.25041815638542175,
+ "learning_rate": 0.0006,
+ "loss": 3.536247968673706,
+ "step": 4514
+ },
+ {
+ "epoch": 62.7129750982962,
+ "grad_norm": 0.24958674609661102,
+ "learning_rate": 0.0006,
+ "loss": 3.5245871543884277,
+ "step": 4515
+ },
+ {
+ "epoch": 62.72695500218436,
+ "grad_norm": 0.22527511417865753,
+ "learning_rate": 0.0006,
+ "loss": 3.508802652359009,
+ "step": 4516
+ },
+ {
+ "epoch": 62.74093490607252,
+ "grad_norm": 0.19455862045288086,
+ "learning_rate": 0.0006,
+ "loss": 3.5296337604522705,
+ "step": 4517
+ },
+ {
+ "epoch": 62.75491480996068,
+ "grad_norm": 0.20303845405578613,
+ "learning_rate": 0.0006,
+ "loss": 3.57499098777771,
+ "step": 4518
+ },
+ {
+ "epoch": 62.768894713848844,
+ "grad_norm": 0.20851430296897888,
+ "learning_rate": 0.0006,
+ "loss": 3.5139262676239014,
+ "step": 4519
+ },
+ {
+ "epoch": 62.782874617737,
+ "grad_norm": 0.19765593111515045,
+ "learning_rate": 0.0006,
+ "loss": 3.5398616790771484,
+ "step": 4520
+ },
+ {
+ "epoch": 62.796854521625164,
+ "grad_norm": 0.20502524077892303,
+ "learning_rate": 0.0006,
+ "loss": 3.5163207054138184,
+ "step": 4521
+ },
+ {
+ "epoch": 62.81083442551333,
+ "grad_norm": 0.20211154222488403,
+ "learning_rate": 0.0006,
+ "loss": 3.5164661407470703,
+ "step": 4522
+ },
+ {
+ "epoch": 62.824814329401484,
+ "grad_norm": 0.19798780977725983,
+ "learning_rate": 0.0006,
+ "loss": 3.533470869064331,
+ "step": 4523
+ },
+ {
+ "epoch": 62.83879423328965,
+ "grad_norm": 0.21921277046203613,
+ "learning_rate": 0.0006,
+ "loss": 3.532498598098755,
+ "step": 4524
+ },
+ {
+ "epoch": 62.8527741371778,
+ "grad_norm": 0.2352060228586197,
+ "learning_rate": 0.0006,
+ "loss": 3.5674972534179688,
+ "step": 4525
+ },
+ {
+ "epoch": 62.86675404106597,
+ "grad_norm": 0.21286381781101227,
+ "learning_rate": 0.0006,
+ "loss": 3.508051872253418,
+ "step": 4526
+ },
+ {
+ "epoch": 62.88073394495413,
+ "grad_norm": 0.21557490527629852,
+ "learning_rate": 0.0006,
+ "loss": 3.5300607681274414,
+ "step": 4527
+ },
+ {
+ "epoch": 62.89471384884229,
+ "grad_norm": 0.23020988702774048,
+ "learning_rate": 0.0006,
+ "loss": 3.508237361907959,
+ "step": 4528
+ },
+ {
+ "epoch": 62.90869375273045,
+ "grad_norm": 0.26428425312042236,
+ "learning_rate": 0.0006,
+ "loss": 3.52371883392334,
+ "step": 4529
+ },
+ {
+ "epoch": 62.92267365661861,
+ "grad_norm": 0.2568773925304413,
+ "learning_rate": 0.0006,
+ "loss": 3.5371956825256348,
+ "step": 4530
+ },
+ {
+ "epoch": 62.93665356050677,
+ "grad_norm": 0.2216598093509674,
+ "learning_rate": 0.0006,
+ "loss": 3.5286736488342285,
+ "step": 4531
+ },
+ {
+ "epoch": 62.95063346439493,
+ "grad_norm": 0.23094940185546875,
+ "learning_rate": 0.0006,
+ "loss": 3.5389769077301025,
+ "step": 4532
+ },
+ {
+ "epoch": 62.964613368283096,
+ "grad_norm": 0.23469413816928864,
+ "learning_rate": 0.0006,
+ "loss": 3.546466588973999,
+ "step": 4533
+ },
+ {
+ "epoch": 62.97859327217125,
+ "grad_norm": 0.2289242148399353,
+ "learning_rate": 0.0006,
+ "loss": 3.565002679824829,
+ "step": 4534
+ },
+ {
+ "epoch": 62.992573176059416,
+ "grad_norm": 0.262317955493927,
+ "learning_rate": 0.0006,
+ "loss": 3.5388731956481934,
+ "step": 4535
+ },
+ {
+ "epoch": 63.0,
+ "grad_norm": 0.273183137178421,
+ "learning_rate": 0.0006,
+ "loss": 3.482903003692627,
+ "step": 4536
+ },
+ {
+ "epoch": 63.0,
+ "eval_loss": 3.973074436187744,
+ "eval_runtime": 45.5476,
+ "eval_samples_per_second": 53.614,
+ "eval_steps_per_second": 3.359,
+ "step": 4536
+ },
+ {
+ "epoch": 63.01397990388816,
+ "grad_norm": 0.22226323187351227,
+ "learning_rate": 0.0006,
+ "loss": 3.483798027038574,
+ "step": 4537
+ },
+ {
+ "epoch": 63.02795980777632,
+ "grad_norm": 0.24443542957305908,
+ "learning_rate": 0.0006,
+ "loss": 3.496903419494629,
+ "step": 4538
+ },
+ {
+ "epoch": 63.04193971166448,
+ "grad_norm": 0.2508153021335602,
+ "learning_rate": 0.0006,
+ "loss": 3.5234804153442383,
+ "step": 4539
+ },
+ {
+ "epoch": 63.05591961555265,
+ "grad_norm": 0.2610569894313812,
+ "learning_rate": 0.0006,
+ "loss": 3.502870798110962,
+ "step": 4540
+ },
+ {
+ "epoch": 63.0698995194408,
+ "grad_norm": 0.27980759739875793,
+ "learning_rate": 0.0006,
+ "loss": 3.50645112991333,
+ "step": 4541
+ },
+ {
+ "epoch": 63.083879423328966,
+ "grad_norm": 0.292883038520813,
+ "learning_rate": 0.0006,
+ "loss": 3.478863000869751,
+ "step": 4542
+ },
+ {
+ "epoch": 63.09785932721712,
+ "grad_norm": 0.2593323588371277,
+ "learning_rate": 0.0006,
+ "loss": 3.506967067718506,
+ "step": 4543
+ },
+ {
+ "epoch": 63.111839231105286,
+ "grad_norm": 0.23973147571086884,
+ "learning_rate": 0.0006,
+ "loss": 3.513401746749878,
+ "step": 4544
+ },
+ {
+ "epoch": 63.12581913499345,
+ "grad_norm": 0.22731348872184753,
+ "learning_rate": 0.0006,
+ "loss": 3.4880478382110596,
+ "step": 4545
+ },
+ {
+ "epoch": 63.139799038881605,
+ "grad_norm": 0.22627407312393188,
+ "learning_rate": 0.0006,
+ "loss": 3.4975132942199707,
+ "step": 4546
+ },
+ {
+ "epoch": 63.15377894276977,
+ "grad_norm": 0.25107741355895996,
+ "learning_rate": 0.0006,
+ "loss": 3.5068140029907227,
+ "step": 4547
+ },
+ {
+ "epoch": 63.16775884665793,
+ "grad_norm": 0.23031412065029144,
+ "learning_rate": 0.0006,
+ "loss": 3.515760898590088,
+ "step": 4548
+ },
+ {
+ "epoch": 63.18173875054609,
+ "grad_norm": 0.21028949320316315,
+ "learning_rate": 0.0006,
+ "loss": 3.521303415298462,
+ "step": 4549
+ },
+ {
+ "epoch": 63.19571865443425,
+ "grad_norm": 0.22366516292095184,
+ "learning_rate": 0.0006,
+ "loss": 3.5283193588256836,
+ "step": 4550
+ },
+ {
+ "epoch": 63.20969855832241,
+ "grad_norm": 0.2176598459482193,
+ "learning_rate": 0.0006,
+ "loss": 3.490306854248047,
+ "step": 4551
+ },
+ {
+ "epoch": 63.22367846221057,
+ "grad_norm": 0.20985916256904602,
+ "learning_rate": 0.0006,
+ "loss": 3.5335614681243896,
+ "step": 4552
+ },
+ {
+ "epoch": 63.237658366098735,
+ "grad_norm": 0.2085118442773819,
+ "learning_rate": 0.0006,
+ "loss": 3.5108132362365723,
+ "step": 4553
+ },
+ {
+ "epoch": 63.25163826998689,
+ "grad_norm": 0.22644028067588806,
+ "learning_rate": 0.0006,
+ "loss": 3.4813215732574463,
+ "step": 4554
+ },
+ {
+ "epoch": 63.265618173875055,
+ "grad_norm": 0.21942120790481567,
+ "learning_rate": 0.0006,
+ "loss": 3.5310909748077393,
+ "step": 4555
+ },
+ {
+ "epoch": 63.27959807776322,
+ "grad_norm": 0.2335938662290573,
+ "learning_rate": 0.0006,
+ "loss": 3.530893564224243,
+ "step": 4556
+ },
+ {
+ "epoch": 63.293577981651374,
+ "grad_norm": 0.2409360110759735,
+ "learning_rate": 0.0006,
+ "loss": 3.5301408767700195,
+ "step": 4557
+ },
+ {
+ "epoch": 63.30755788553954,
+ "grad_norm": 0.2354922890663147,
+ "learning_rate": 0.0006,
+ "loss": 3.5211031436920166,
+ "step": 4558
+ },
+ {
+ "epoch": 63.3215377894277,
+ "grad_norm": 0.23376664519309998,
+ "learning_rate": 0.0006,
+ "loss": 3.538367509841919,
+ "step": 4559
+ },
+ {
+ "epoch": 63.33551769331586,
+ "grad_norm": 0.25319674611091614,
+ "learning_rate": 0.0006,
+ "loss": 3.494905471801758,
+ "step": 4560
+ },
+ {
+ "epoch": 63.34949759720402,
+ "grad_norm": 0.24088945984840393,
+ "learning_rate": 0.0006,
+ "loss": 3.5189433097839355,
+ "step": 4561
+ },
+ {
+ "epoch": 63.36347750109218,
+ "grad_norm": 0.2373911589384079,
+ "learning_rate": 0.0006,
+ "loss": 3.4956908226013184,
+ "step": 4562
+ },
+ {
+ "epoch": 63.37745740498034,
+ "grad_norm": 0.2590023875236511,
+ "learning_rate": 0.0006,
+ "loss": 3.511784076690674,
+ "step": 4563
+ },
+ {
+ "epoch": 63.391437308868504,
+ "grad_norm": 0.2600874900817871,
+ "learning_rate": 0.0006,
+ "loss": 3.478942394256592,
+ "step": 4564
+ },
+ {
+ "epoch": 63.40541721275666,
+ "grad_norm": 0.24018031358718872,
+ "learning_rate": 0.0006,
+ "loss": 3.521773338317871,
+ "step": 4565
+ },
+ {
+ "epoch": 63.419397116644824,
+ "grad_norm": 0.2552972435951233,
+ "learning_rate": 0.0006,
+ "loss": 3.4893441200256348,
+ "step": 4566
+ },
+ {
+ "epoch": 63.43337702053299,
+ "grad_norm": 0.26195958256721497,
+ "learning_rate": 0.0006,
+ "loss": 3.5366687774658203,
+ "step": 4567
+ },
+ {
+ "epoch": 63.44735692442114,
+ "grad_norm": 0.24390678107738495,
+ "learning_rate": 0.0006,
+ "loss": 3.4948301315307617,
+ "step": 4568
+ },
+ {
+ "epoch": 63.46133682830931,
+ "grad_norm": 0.21185952425003052,
+ "learning_rate": 0.0006,
+ "loss": 3.486267566680908,
+ "step": 4569
+ },
+ {
+ "epoch": 63.47531673219746,
+ "grad_norm": 0.21932153403759003,
+ "learning_rate": 0.0006,
+ "loss": 3.499481201171875,
+ "step": 4570
+ },
+ {
+ "epoch": 63.489296636085626,
+ "grad_norm": 0.22503717243671417,
+ "learning_rate": 0.0006,
+ "loss": 3.4932126998901367,
+ "step": 4571
+ },
+ {
+ "epoch": 63.50327653997379,
+ "grad_norm": 0.23853568732738495,
+ "learning_rate": 0.0006,
+ "loss": 3.4893674850463867,
+ "step": 4572
+ },
+ {
+ "epoch": 63.517256443861946,
+ "grad_norm": 0.2531817853450775,
+ "learning_rate": 0.0006,
+ "loss": 3.5391907691955566,
+ "step": 4573
+ },
+ {
+ "epoch": 63.53123634775011,
+ "grad_norm": 0.23776786029338837,
+ "learning_rate": 0.0006,
+ "loss": 3.5097427368164062,
+ "step": 4574
+ },
+ {
+ "epoch": 63.54521625163827,
+ "grad_norm": 0.24308739602565765,
+ "learning_rate": 0.0006,
+ "loss": 3.4988107681274414,
+ "step": 4575
+ },
+ {
+ "epoch": 63.55919615552643,
+ "grad_norm": 0.24214281141757965,
+ "learning_rate": 0.0006,
+ "loss": 3.506901502609253,
+ "step": 4576
+ },
+ {
+ "epoch": 63.57317605941459,
+ "grad_norm": 0.21378614008426666,
+ "learning_rate": 0.0006,
+ "loss": 3.54103684425354,
+ "step": 4577
+ },
+ {
+ "epoch": 63.58715596330275,
+ "grad_norm": 0.21135152876377106,
+ "learning_rate": 0.0006,
+ "loss": 3.534852981567383,
+ "step": 4578
+ },
+ {
+ "epoch": 63.60113586719091,
+ "grad_norm": 0.2335089147090912,
+ "learning_rate": 0.0006,
+ "loss": 3.542457342147827,
+ "step": 4579
+ },
+ {
+ "epoch": 63.615115771079076,
+ "grad_norm": 0.23693214356899261,
+ "learning_rate": 0.0006,
+ "loss": 3.4781997203826904,
+ "step": 4580
+ },
+ {
+ "epoch": 63.62909567496723,
+ "grad_norm": 0.21237023174762726,
+ "learning_rate": 0.0006,
+ "loss": 3.4980621337890625,
+ "step": 4581
+ },
+ {
+ "epoch": 63.643075578855395,
+ "grad_norm": 0.20930461585521698,
+ "learning_rate": 0.0006,
+ "loss": 3.5177974700927734,
+ "step": 4582
+ },
+ {
+ "epoch": 63.65705548274356,
+ "grad_norm": 0.22565403580665588,
+ "learning_rate": 0.0006,
+ "loss": 3.5385828018188477,
+ "step": 4583
+ },
+ {
+ "epoch": 63.671035386631715,
+ "grad_norm": 0.22187408804893494,
+ "learning_rate": 0.0006,
+ "loss": 3.5461559295654297,
+ "step": 4584
+ },
+ {
+ "epoch": 63.68501529051988,
+ "grad_norm": 0.23496168851852417,
+ "learning_rate": 0.0006,
+ "loss": 3.526822090148926,
+ "step": 4585
+ },
+ {
+ "epoch": 63.69899519440804,
+ "grad_norm": 0.2432301938533783,
+ "learning_rate": 0.0006,
+ "loss": 3.5248091220855713,
+ "step": 4586
+ },
+ {
+ "epoch": 63.7129750982962,
+ "grad_norm": 0.22797444462776184,
+ "learning_rate": 0.0006,
+ "loss": 3.5276098251342773,
+ "step": 4587
+ },
+ {
+ "epoch": 63.72695500218436,
+ "grad_norm": 0.2332911491394043,
+ "learning_rate": 0.0006,
+ "loss": 3.5454764366149902,
+ "step": 4588
+ },
+ {
+ "epoch": 63.74093490607252,
+ "grad_norm": 0.23016804456710815,
+ "learning_rate": 0.0006,
+ "loss": 3.519209384918213,
+ "step": 4589
+ },
+ {
+ "epoch": 63.75491480996068,
+ "grad_norm": 0.2160855233669281,
+ "learning_rate": 0.0006,
+ "loss": 3.536961317062378,
+ "step": 4590
+ },
+ {
+ "epoch": 63.768894713848844,
+ "grad_norm": 0.25935620069503784,
+ "learning_rate": 0.0006,
+ "loss": 3.5653820037841797,
+ "step": 4591
+ },
+ {
+ "epoch": 63.782874617737,
+ "grad_norm": 0.26625221967697144,
+ "learning_rate": 0.0006,
+ "loss": 3.5492172241210938,
+ "step": 4592
+ },
+ {
+ "epoch": 63.796854521625164,
+ "grad_norm": 0.25456854701042175,
+ "learning_rate": 0.0006,
+ "loss": 3.516575336456299,
+ "step": 4593
+ },
+ {
+ "epoch": 63.81083442551333,
+ "grad_norm": 0.26114824414253235,
+ "learning_rate": 0.0006,
+ "loss": 3.5429139137268066,
+ "step": 4594
+ },
+ {
+ "epoch": 63.824814329401484,
+ "grad_norm": 0.27836596965789795,
+ "learning_rate": 0.0006,
+ "loss": 3.5567727088928223,
+ "step": 4595
+ },
+ {
+ "epoch": 63.83879423328965,
+ "grad_norm": 0.2674464285373688,
+ "learning_rate": 0.0006,
+ "loss": 3.5093564987182617,
+ "step": 4596
+ },
+ {
+ "epoch": 63.8527741371778,
+ "grad_norm": 0.27393433451652527,
+ "learning_rate": 0.0006,
+ "loss": 3.5500247478485107,
+ "step": 4597
+ },
+ {
+ "epoch": 63.86675404106597,
+ "grad_norm": 0.30968594551086426,
+ "learning_rate": 0.0006,
+ "loss": 3.539085865020752,
+ "step": 4598
+ },
+ {
+ "epoch": 63.88073394495413,
+ "grad_norm": 0.279060423374176,
+ "learning_rate": 0.0006,
+ "loss": 3.517862319946289,
+ "step": 4599
+ },
+ {
+ "epoch": 63.89471384884229,
+ "grad_norm": 0.22436867654323578,
+ "learning_rate": 0.0006,
+ "loss": 3.5714004039764404,
+ "step": 4600
+ },
+ {
+ "epoch": 63.90869375273045,
+ "grad_norm": 0.22473126649856567,
+ "learning_rate": 0.0006,
+ "loss": 3.5212388038635254,
+ "step": 4601
+ },
+ {
+ "epoch": 63.92267365661861,
+ "grad_norm": 0.2802466154098511,
+ "learning_rate": 0.0006,
+ "loss": 3.5112411975860596,
+ "step": 4602
+ },
+ {
+ "epoch": 63.93665356050677,
+ "grad_norm": 0.29435867071151733,
+ "learning_rate": 0.0006,
+ "loss": 3.554875373840332,
+ "step": 4603
+ },
+ {
+ "epoch": 63.95063346439493,
+ "grad_norm": 0.24592025578022003,
+ "learning_rate": 0.0006,
+ "loss": 3.5593767166137695,
+ "step": 4604
+ },
+ {
+ "epoch": 63.964613368283096,
+ "grad_norm": 0.25918886065483093,
+ "learning_rate": 0.0006,
+ "loss": 3.5020017623901367,
+ "step": 4605
+ },
+ {
+ "epoch": 63.97859327217125,
+ "grad_norm": 0.24892419576644897,
+ "learning_rate": 0.0006,
+ "loss": 3.520456314086914,
+ "step": 4606
+ },
+ {
+ "epoch": 63.992573176059416,
+ "grad_norm": 0.24131213128566742,
+ "learning_rate": 0.0006,
+ "loss": 3.5576815605163574,
+ "step": 4607
+ },
+ {
+ "epoch": 64.0,
+ "grad_norm": 0.2348976731300354,
+ "learning_rate": 0.0006,
+ "loss": 3.524242401123047,
+ "step": 4608
+ },
+ {
+ "epoch": 64.0,
+ "eval_loss": 3.972158670425415,
+ "eval_runtime": 45.883,
+ "eval_samples_per_second": 53.222,
+ "eval_steps_per_second": 3.335,
+ "step": 4608
+ },
+ {
+ "epoch": 64.01397990388816,
+ "grad_norm": 0.24034473299980164,
+ "learning_rate": 0.0006,
+ "loss": 3.463156223297119,
+ "step": 4609
+ },
+ {
+ "epoch": 64.02795980777633,
+ "grad_norm": 0.28686341643333435,
+ "learning_rate": 0.0006,
+ "loss": 3.5137135982513428,
+ "step": 4610
+ },
+ {
+ "epoch": 64.04193971166448,
+ "grad_norm": 0.30763131380081177,
+ "learning_rate": 0.0006,
+ "loss": 3.490610361099243,
+ "step": 4611
+ },
+ {
+ "epoch": 64.05591961555264,
+ "grad_norm": 0.2775363624095917,
+ "learning_rate": 0.0006,
+ "loss": 3.516378879547119,
+ "step": 4612
+ },
+ {
+ "epoch": 64.06989951944081,
+ "grad_norm": 0.2643020749092102,
+ "learning_rate": 0.0006,
+ "loss": 3.511389970779419,
+ "step": 4613
+ },
+ {
+ "epoch": 64.08387942332897,
+ "grad_norm": 0.2859032452106476,
+ "learning_rate": 0.0006,
+ "loss": 3.5125572681427,
+ "step": 4614
+ },
+ {
+ "epoch": 64.09785932721712,
+ "grad_norm": 0.28378766775131226,
+ "learning_rate": 0.0006,
+ "loss": 3.4953627586364746,
+ "step": 4615
+ },
+ {
+ "epoch": 64.1118392311053,
+ "grad_norm": 0.2809223234653473,
+ "learning_rate": 0.0006,
+ "loss": 3.5114667415618896,
+ "step": 4616
+ },
+ {
+ "epoch": 64.12581913499345,
+ "grad_norm": 0.251823753118515,
+ "learning_rate": 0.0006,
+ "loss": 3.529876232147217,
+ "step": 4617
+ },
+ {
+ "epoch": 64.1397990388816,
+ "grad_norm": 0.236602321267128,
+ "learning_rate": 0.0006,
+ "loss": 3.5067150592803955,
+ "step": 4618
+ },
+ {
+ "epoch": 64.15377894276976,
+ "grad_norm": 0.2317773550748825,
+ "learning_rate": 0.0006,
+ "loss": 3.5166091918945312,
+ "step": 4619
+ },
+ {
+ "epoch": 64.16775884665793,
+ "grad_norm": 0.2237853854894638,
+ "learning_rate": 0.0006,
+ "loss": 3.492464065551758,
+ "step": 4620
+ },
+ {
+ "epoch": 64.18173875054609,
+ "grad_norm": 0.22309459745883942,
+ "learning_rate": 0.0006,
+ "loss": 3.4892983436584473,
+ "step": 4621
+ },
+ {
+ "epoch": 64.19571865443424,
+ "grad_norm": 0.21838971972465515,
+ "learning_rate": 0.0006,
+ "loss": 3.528764486312866,
+ "step": 4622
+ },
+ {
+ "epoch": 64.20969855832242,
+ "grad_norm": 0.22414161264896393,
+ "learning_rate": 0.0006,
+ "loss": 3.506270170211792,
+ "step": 4623
+ },
+ {
+ "epoch": 64.22367846221057,
+ "grad_norm": 0.22375065088272095,
+ "learning_rate": 0.0006,
+ "loss": 3.4844071865081787,
+ "step": 4624
+ },
+ {
+ "epoch": 64.23765836609873,
+ "grad_norm": 0.2091676890850067,
+ "learning_rate": 0.0006,
+ "loss": 3.4983415603637695,
+ "step": 4625
+ },
+ {
+ "epoch": 64.2516382699869,
+ "grad_norm": 0.22184209525585175,
+ "learning_rate": 0.0006,
+ "loss": 3.4846835136413574,
+ "step": 4626
+ },
+ {
+ "epoch": 64.26561817387505,
+ "grad_norm": 0.21549198031425476,
+ "learning_rate": 0.0006,
+ "loss": 3.4933011531829834,
+ "step": 4627
+ },
+ {
+ "epoch": 64.27959807776321,
+ "grad_norm": 0.21613609790802002,
+ "learning_rate": 0.0006,
+ "loss": 3.523514986038208,
+ "step": 4628
+ },
+ {
+ "epoch": 64.29357798165138,
+ "grad_norm": 0.22394488751888275,
+ "learning_rate": 0.0006,
+ "loss": 3.512820243835449,
+ "step": 4629
+ },
+ {
+ "epoch": 64.30755788553954,
+ "grad_norm": 0.22381016612052917,
+ "learning_rate": 0.0006,
+ "loss": 3.4967026710510254,
+ "step": 4630
+ },
+ {
+ "epoch": 64.3215377894277,
+ "grad_norm": 0.22533059120178223,
+ "learning_rate": 0.0006,
+ "loss": 3.5051097869873047,
+ "step": 4631
+ },
+ {
+ "epoch": 64.33551769331586,
+ "grad_norm": 0.23043590784072876,
+ "learning_rate": 0.0006,
+ "loss": 3.4784820079803467,
+ "step": 4632
+ },
+ {
+ "epoch": 64.34949759720402,
+ "grad_norm": 0.20840506255626678,
+ "learning_rate": 0.0006,
+ "loss": 3.496629238128662,
+ "step": 4633
+ },
+ {
+ "epoch": 64.36347750109218,
+ "grad_norm": 0.20293036103248596,
+ "learning_rate": 0.0006,
+ "loss": 3.500199317932129,
+ "step": 4634
+ },
+ {
+ "epoch": 64.37745740498035,
+ "grad_norm": 0.20510733127593994,
+ "learning_rate": 0.0006,
+ "loss": 3.4943113327026367,
+ "step": 4635
+ },
+ {
+ "epoch": 64.3914373088685,
+ "grad_norm": 0.21207642555236816,
+ "learning_rate": 0.0006,
+ "loss": 3.5024590492248535,
+ "step": 4636
+ },
+ {
+ "epoch": 64.40541721275666,
+ "grad_norm": 0.19878660142421722,
+ "learning_rate": 0.0006,
+ "loss": 3.5065855979919434,
+ "step": 4637
+ },
+ {
+ "epoch": 64.41939711664482,
+ "grad_norm": 0.22502431273460388,
+ "learning_rate": 0.0006,
+ "loss": 3.527764081954956,
+ "step": 4638
+ },
+ {
+ "epoch": 64.43337702053299,
+ "grad_norm": 0.2167922705411911,
+ "learning_rate": 0.0006,
+ "loss": 3.5075361728668213,
+ "step": 4639
+ },
+ {
+ "epoch": 64.44735692442114,
+ "grad_norm": 0.21200154721736908,
+ "learning_rate": 0.0006,
+ "loss": 3.5339698791503906,
+ "step": 4640
+ },
+ {
+ "epoch": 64.4613368283093,
+ "grad_norm": 0.22495608031749725,
+ "learning_rate": 0.0006,
+ "loss": 3.5342869758605957,
+ "step": 4641
+ },
+ {
+ "epoch": 64.47531673219747,
+ "grad_norm": 0.21426217257976532,
+ "learning_rate": 0.0006,
+ "loss": 3.5065689086914062,
+ "step": 4642
+ },
+ {
+ "epoch": 64.48929663608563,
+ "grad_norm": 0.19980023801326752,
+ "learning_rate": 0.0006,
+ "loss": 3.508183002471924,
+ "step": 4643
+ },
+ {
+ "epoch": 64.50327653997378,
+ "grad_norm": 0.2054566591978073,
+ "learning_rate": 0.0006,
+ "loss": 3.5098650455474854,
+ "step": 4644
+ },
+ {
+ "epoch": 64.51725644386195,
+ "grad_norm": 0.2038603276014328,
+ "learning_rate": 0.0006,
+ "loss": 3.517388105392456,
+ "step": 4645
+ },
+ {
+ "epoch": 64.53123634775011,
+ "grad_norm": 0.22438357770442963,
+ "learning_rate": 0.0006,
+ "loss": 3.5215954780578613,
+ "step": 4646
+ },
+ {
+ "epoch": 64.54521625163827,
+ "grad_norm": 0.23507612943649292,
+ "learning_rate": 0.0006,
+ "loss": 3.488262176513672,
+ "step": 4647
+ },
+ {
+ "epoch": 64.55919615552644,
+ "grad_norm": 0.21669664978981018,
+ "learning_rate": 0.0006,
+ "loss": 3.4945027828216553,
+ "step": 4648
+ },
+ {
+ "epoch": 64.57317605941459,
+ "grad_norm": 0.20035886764526367,
+ "learning_rate": 0.0006,
+ "loss": 3.516415596008301,
+ "step": 4649
+ },
+ {
+ "epoch": 64.58715596330275,
+ "grad_norm": 0.21818110346794128,
+ "learning_rate": 0.0006,
+ "loss": 3.4944982528686523,
+ "step": 4650
+ },
+ {
+ "epoch": 64.60113586719092,
+ "grad_norm": 0.20609644055366516,
+ "learning_rate": 0.0006,
+ "loss": 3.4914844036102295,
+ "step": 4651
+ },
+ {
+ "epoch": 64.61511577107908,
+ "grad_norm": 0.21921353042125702,
+ "learning_rate": 0.0006,
+ "loss": 3.5292391777038574,
+ "step": 4652
+ },
+ {
+ "epoch": 64.62909567496723,
+ "grad_norm": 0.23570363223552704,
+ "learning_rate": 0.0006,
+ "loss": 3.5353617668151855,
+ "step": 4653
+ },
+ {
+ "epoch": 64.6430755788554,
+ "grad_norm": 0.20933061838150024,
+ "learning_rate": 0.0006,
+ "loss": 3.524240016937256,
+ "step": 4654
+ },
+ {
+ "epoch": 64.65705548274356,
+ "grad_norm": 0.22739441692829132,
+ "learning_rate": 0.0006,
+ "loss": 3.529047966003418,
+ "step": 4655
+ },
+ {
+ "epoch": 64.67103538663171,
+ "grad_norm": 0.22208894789218903,
+ "learning_rate": 0.0006,
+ "loss": 3.5492024421691895,
+ "step": 4656
+ },
+ {
+ "epoch": 64.68501529051987,
+ "grad_norm": 0.23031534254550934,
+ "learning_rate": 0.0006,
+ "loss": 3.532979726791382,
+ "step": 4657
+ },
+ {
+ "epoch": 64.69899519440804,
+ "grad_norm": 0.25316348671913147,
+ "learning_rate": 0.0006,
+ "loss": 3.5105819702148438,
+ "step": 4658
+ },
+ {
+ "epoch": 64.7129750982962,
+ "grad_norm": 0.23601582646369934,
+ "learning_rate": 0.0006,
+ "loss": 3.5270726680755615,
+ "step": 4659
+ },
+ {
+ "epoch": 64.72695500218435,
+ "grad_norm": 0.20309361815452576,
+ "learning_rate": 0.0006,
+ "loss": 3.5072035789489746,
+ "step": 4660
+ },
+ {
+ "epoch": 64.74093490607252,
+ "grad_norm": 0.21525762975215912,
+ "learning_rate": 0.0006,
+ "loss": 3.531649112701416,
+ "step": 4661
+ },
+ {
+ "epoch": 64.75491480996068,
+ "grad_norm": 0.2262735813856125,
+ "learning_rate": 0.0006,
+ "loss": 3.5053927898406982,
+ "step": 4662
+ },
+ {
+ "epoch": 64.76889471384884,
+ "grad_norm": 0.2223973125219345,
+ "learning_rate": 0.0006,
+ "loss": 3.5400562286376953,
+ "step": 4663
+ },
+ {
+ "epoch": 64.78287461773701,
+ "grad_norm": 0.22822168469429016,
+ "learning_rate": 0.0006,
+ "loss": 3.502312421798706,
+ "step": 4664
+ },
+ {
+ "epoch": 64.79685452162516,
+ "grad_norm": 0.2337028533220291,
+ "learning_rate": 0.0006,
+ "loss": 3.524888038635254,
+ "step": 4665
+ },
+ {
+ "epoch": 64.81083442551332,
+ "grad_norm": 0.22423268854618073,
+ "learning_rate": 0.0006,
+ "loss": 3.5380213260650635,
+ "step": 4666
+ },
+ {
+ "epoch": 64.82481432940149,
+ "grad_norm": 0.21429643034934998,
+ "learning_rate": 0.0006,
+ "loss": 3.5499157905578613,
+ "step": 4667
+ },
+ {
+ "epoch": 64.83879423328965,
+ "grad_norm": 0.22421850264072418,
+ "learning_rate": 0.0006,
+ "loss": 3.5034070014953613,
+ "step": 4668
+ },
+ {
+ "epoch": 64.8527741371778,
+ "grad_norm": 0.21886403858661652,
+ "learning_rate": 0.0006,
+ "loss": 3.5276694297790527,
+ "step": 4669
+ },
+ {
+ "epoch": 64.86675404106597,
+ "grad_norm": 0.2404339462518692,
+ "learning_rate": 0.0006,
+ "loss": 3.515219211578369,
+ "step": 4670
+ },
+ {
+ "epoch": 64.88073394495413,
+ "grad_norm": 0.2837470769882202,
+ "learning_rate": 0.0006,
+ "loss": 3.561008930206299,
+ "step": 4671
+ },
+ {
+ "epoch": 64.89471384884229,
+ "grad_norm": 0.3101402223110199,
+ "learning_rate": 0.0006,
+ "loss": 3.556626319885254,
+ "step": 4672
+ },
+ {
+ "epoch": 64.90869375273044,
+ "grad_norm": 0.30606821179389954,
+ "learning_rate": 0.0006,
+ "loss": 3.540271282196045,
+ "step": 4673
+ },
+ {
+ "epoch": 64.92267365661861,
+ "grad_norm": 0.2715052664279938,
+ "learning_rate": 0.0006,
+ "loss": 3.5128841400146484,
+ "step": 4674
+ },
+ {
+ "epoch": 64.93665356050677,
+ "grad_norm": 0.24061815440654755,
+ "learning_rate": 0.0006,
+ "loss": 3.554208278656006,
+ "step": 4675
+ },
+ {
+ "epoch": 64.95063346439493,
+ "grad_norm": 0.23540185391902924,
+ "learning_rate": 0.0006,
+ "loss": 3.544139862060547,
+ "step": 4676
+ },
+ {
+ "epoch": 64.9646133682831,
+ "grad_norm": 0.26172906160354614,
+ "learning_rate": 0.0006,
+ "loss": 3.567110061645508,
+ "step": 4677
+ },
+ {
+ "epoch": 64.97859327217125,
+ "grad_norm": 0.2766035795211792,
+ "learning_rate": 0.0006,
+ "loss": 3.494391918182373,
+ "step": 4678
+ },
+ {
+ "epoch": 64.99257317605941,
+ "grad_norm": 0.2400948703289032,
+ "learning_rate": 0.0006,
+ "loss": 3.5130133628845215,
+ "step": 4679
+ },
+ {
+ "epoch": 65.0,
+ "grad_norm": 0.24790917336940765,
+ "learning_rate": 0.0006,
+ "loss": 3.5481390953063965,
+ "step": 4680
+ },
+ {
+ "epoch": 65.0,
+ "eval_loss": 3.976747989654541,
+ "eval_runtime": 46.3575,
+ "eval_samples_per_second": 52.678,
+ "eval_steps_per_second": 3.3,
+ "step": 4680
+ },
+ {
+ "epoch": 65.01397990388816,
+ "grad_norm": 0.22275416553020477,
+ "learning_rate": 0.0006,
+ "loss": 3.4832773208618164,
+ "step": 4681
+ },
+ {
+ "epoch": 65.02795980777633,
+ "grad_norm": 0.23779742419719696,
+ "learning_rate": 0.0006,
+ "loss": 3.5049266815185547,
+ "step": 4682
+ },
+ {
+ "epoch": 65.04193971166448,
+ "grad_norm": 0.2394440770149231,
+ "learning_rate": 0.0006,
+ "loss": 3.5335357189178467,
+ "step": 4683
+ },
+ {
+ "epoch": 65.05591961555264,
+ "grad_norm": 0.22160623967647552,
+ "learning_rate": 0.0006,
+ "loss": 3.5066094398498535,
+ "step": 4684
+ },
+ {
+ "epoch": 65.06989951944081,
+ "grad_norm": 0.22387197613716125,
+ "learning_rate": 0.0006,
+ "loss": 3.474155902862549,
+ "step": 4685
+ },
+ {
+ "epoch": 65.08387942332897,
+ "grad_norm": 0.24355316162109375,
+ "learning_rate": 0.0006,
+ "loss": 3.4905145168304443,
+ "step": 4686
+ },
+ {
+ "epoch": 65.09785932721712,
+ "grad_norm": 0.25801026821136475,
+ "learning_rate": 0.0006,
+ "loss": 3.50339937210083,
+ "step": 4687
+ },
+ {
+ "epoch": 65.1118392311053,
+ "grad_norm": 0.26155906915664673,
+ "learning_rate": 0.0006,
+ "loss": 3.523623466491699,
+ "step": 4688
+ },
+ {
+ "epoch": 65.12581913499345,
+ "grad_norm": 0.2512831389904022,
+ "learning_rate": 0.0006,
+ "loss": 3.490898609161377,
+ "step": 4689
+ },
+ {
+ "epoch": 65.1397990388816,
+ "grad_norm": 0.25024810433387756,
+ "learning_rate": 0.0006,
+ "loss": 3.4742162227630615,
+ "step": 4690
+ },
+ {
+ "epoch": 65.15377894276976,
+ "grad_norm": 0.27639806270599365,
+ "learning_rate": 0.0006,
+ "loss": 3.503298282623291,
+ "step": 4691
+ },
+ {
+ "epoch": 65.16775884665793,
+ "grad_norm": 0.2543538510799408,
+ "learning_rate": 0.0006,
+ "loss": 3.4785704612731934,
+ "step": 4692
+ },
+ {
+ "epoch": 65.18173875054609,
+ "grad_norm": 0.24148274958133698,
+ "learning_rate": 0.0006,
+ "loss": 3.48526668548584,
+ "step": 4693
+ },
+ {
+ "epoch": 65.19571865443424,
+ "grad_norm": 0.2161206603050232,
+ "learning_rate": 0.0006,
+ "loss": 3.477449417114258,
+ "step": 4694
+ },
+ {
+ "epoch": 65.20969855832242,
+ "grad_norm": 0.21417468786239624,
+ "learning_rate": 0.0006,
+ "loss": 3.5010929107666016,
+ "step": 4695
+ },
+ {
+ "epoch": 65.22367846221057,
+ "grad_norm": 0.22810059785842896,
+ "learning_rate": 0.0006,
+ "loss": 3.4384589195251465,
+ "step": 4696
+ },
+ {
+ "epoch": 65.23765836609873,
+ "grad_norm": 0.23555037379264832,
+ "learning_rate": 0.0006,
+ "loss": 3.4912073612213135,
+ "step": 4697
+ },
+ {
+ "epoch": 65.2516382699869,
+ "grad_norm": 0.2628633975982666,
+ "learning_rate": 0.0006,
+ "loss": 3.4763574600219727,
+ "step": 4698
+ },
+ {
+ "epoch": 65.26561817387505,
+ "grad_norm": 0.2515856921672821,
+ "learning_rate": 0.0006,
+ "loss": 3.480222463607788,
+ "step": 4699
+ },
+ {
+ "epoch": 65.27959807776321,
+ "grad_norm": 0.19862835109233856,
+ "learning_rate": 0.0006,
+ "loss": 3.510263204574585,
+ "step": 4700
+ },
+ {
+ "epoch": 65.29357798165138,
+ "grad_norm": 0.22558043897151947,
+ "learning_rate": 0.0006,
+ "loss": 3.4952306747436523,
+ "step": 4701
+ },
+ {
+ "epoch": 65.30755788553954,
+ "grad_norm": 0.2351200133562088,
+ "learning_rate": 0.0006,
+ "loss": 3.5010221004486084,
+ "step": 4702
+ },
+ {
+ "epoch": 65.3215377894277,
+ "grad_norm": 0.21748903393745422,
+ "learning_rate": 0.0006,
+ "loss": 3.5186777114868164,
+ "step": 4703
+ },
+ {
+ "epoch": 65.33551769331586,
+ "grad_norm": 0.2073124349117279,
+ "learning_rate": 0.0006,
+ "loss": 3.5397891998291016,
+ "step": 4704
+ },
+ {
+ "epoch": 65.34949759720402,
+ "grad_norm": 0.1948464810848236,
+ "learning_rate": 0.0006,
+ "loss": 3.5413217544555664,
+ "step": 4705
+ },
+ {
+ "epoch": 65.36347750109218,
+ "grad_norm": 0.19741199910640717,
+ "learning_rate": 0.0006,
+ "loss": 3.515199899673462,
+ "step": 4706
+ },
+ {
+ "epoch": 65.37745740498035,
+ "grad_norm": 0.22518441081047058,
+ "learning_rate": 0.0006,
+ "loss": 3.512284278869629,
+ "step": 4707
+ },
+ {
+ "epoch": 65.3914373088685,
+ "grad_norm": 0.24368613958358765,
+ "learning_rate": 0.0006,
+ "loss": 3.528355121612549,
+ "step": 4708
+ },
+ {
+ "epoch": 65.40541721275666,
+ "grad_norm": 0.21857064962387085,
+ "learning_rate": 0.0006,
+ "loss": 3.494401454925537,
+ "step": 4709
+ },
+ {
+ "epoch": 65.41939711664482,
+ "grad_norm": 0.2199285924434662,
+ "learning_rate": 0.0006,
+ "loss": 3.49814772605896,
+ "step": 4710
+ },
+ {
+ "epoch": 65.43337702053299,
+ "grad_norm": 0.23801206052303314,
+ "learning_rate": 0.0006,
+ "loss": 3.4678444862365723,
+ "step": 4711
+ },
+ {
+ "epoch": 65.44735692442114,
+ "grad_norm": 0.231369748711586,
+ "learning_rate": 0.0006,
+ "loss": 3.501521587371826,
+ "step": 4712
+ },
+ {
+ "epoch": 65.4613368283093,
+ "grad_norm": 0.20447038114070892,
+ "learning_rate": 0.0006,
+ "loss": 3.508510112762451,
+ "step": 4713
+ },
+ {
+ "epoch": 65.47531673219747,
+ "grad_norm": 0.21331779658794403,
+ "learning_rate": 0.0006,
+ "loss": 3.498544692993164,
+ "step": 4714
+ },
+ {
+ "epoch": 65.48929663608563,
+ "grad_norm": 0.2365437150001526,
+ "learning_rate": 0.0006,
+ "loss": 3.4972000122070312,
+ "step": 4715
+ },
+ {
+ "epoch": 65.50327653997378,
+ "grad_norm": 0.2236112356185913,
+ "learning_rate": 0.0006,
+ "loss": 3.5397965908050537,
+ "step": 4716
+ },
+ {
+ "epoch": 65.51725644386195,
+ "grad_norm": 0.20595021545886993,
+ "learning_rate": 0.0006,
+ "loss": 3.532902717590332,
+ "step": 4717
+ },
+ {
+ "epoch": 65.53123634775011,
+ "grad_norm": 0.2043730616569519,
+ "learning_rate": 0.0006,
+ "loss": 3.5136585235595703,
+ "step": 4718
+ },
+ {
+ "epoch": 65.54521625163827,
+ "grad_norm": 0.21925127506256104,
+ "learning_rate": 0.0006,
+ "loss": 3.526590347290039,
+ "step": 4719
+ },
+ {
+ "epoch": 65.55919615552644,
+ "grad_norm": 0.21580299735069275,
+ "learning_rate": 0.0006,
+ "loss": 3.530301332473755,
+ "step": 4720
+ },
+ {
+ "epoch": 65.57317605941459,
+ "grad_norm": 0.2296830266714096,
+ "learning_rate": 0.0006,
+ "loss": 3.527580976486206,
+ "step": 4721
+ },
+ {
+ "epoch": 65.58715596330275,
+ "grad_norm": 0.21846120059490204,
+ "learning_rate": 0.0006,
+ "loss": 3.524075746536255,
+ "step": 4722
+ },
+ {
+ "epoch": 65.60113586719092,
+ "grad_norm": 0.19835807383060455,
+ "learning_rate": 0.0006,
+ "loss": 3.4560012817382812,
+ "step": 4723
+ },
+ {
+ "epoch": 65.61511577107908,
+ "grad_norm": 0.20501157641410828,
+ "learning_rate": 0.0006,
+ "loss": 3.508017063140869,
+ "step": 4724
+ },
+ {
+ "epoch": 65.62909567496723,
+ "grad_norm": 0.21347478032112122,
+ "learning_rate": 0.0006,
+ "loss": 3.5479536056518555,
+ "step": 4725
+ },
+ {
+ "epoch": 65.6430755788554,
+ "grad_norm": 0.19286541640758514,
+ "learning_rate": 0.0006,
+ "loss": 3.537360906600952,
+ "step": 4726
+ },
+ {
+ "epoch": 65.65705548274356,
+ "grad_norm": 0.19364185631275177,
+ "learning_rate": 0.0006,
+ "loss": 3.5186867713928223,
+ "step": 4727
+ },
+ {
+ "epoch": 65.67103538663171,
+ "grad_norm": 0.19047997891902924,
+ "learning_rate": 0.0006,
+ "loss": 3.5242767333984375,
+ "step": 4728
+ },
+ {
+ "epoch": 65.68501529051987,
+ "grad_norm": 0.19712361693382263,
+ "learning_rate": 0.0006,
+ "loss": 3.5176010131835938,
+ "step": 4729
+ },
+ {
+ "epoch": 65.69899519440804,
+ "grad_norm": 0.2034953087568283,
+ "learning_rate": 0.0006,
+ "loss": 3.510268211364746,
+ "step": 4730
+ },
+ {
+ "epoch": 65.7129750982962,
+ "grad_norm": 0.20022697746753693,
+ "learning_rate": 0.0006,
+ "loss": 3.53619647026062,
+ "step": 4731
+ },
+ {
+ "epoch": 65.72695500218435,
+ "grad_norm": 0.20698072016239166,
+ "learning_rate": 0.0006,
+ "loss": 3.5179615020751953,
+ "step": 4732
+ },
+ {
+ "epoch": 65.74093490607252,
+ "grad_norm": 0.2297508418560028,
+ "learning_rate": 0.0006,
+ "loss": 3.5308024883270264,
+ "step": 4733
+ },
+ {
+ "epoch": 65.75491480996068,
+ "grad_norm": 0.227255716919899,
+ "learning_rate": 0.0006,
+ "loss": 3.5443387031555176,
+ "step": 4734
+ },
+ {
+ "epoch": 65.76889471384884,
+ "grad_norm": 0.21772262454032898,
+ "learning_rate": 0.0006,
+ "loss": 3.52345871925354,
+ "step": 4735
+ },
+ {
+ "epoch": 65.78287461773701,
+ "grad_norm": 0.22124525904655457,
+ "learning_rate": 0.0006,
+ "loss": 3.5262577533721924,
+ "step": 4736
+ },
+ {
+ "epoch": 65.79685452162516,
+ "grad_norm": 0.22992224991321564,
+ "learning_rate": 0.0006,
+ "loss": 3.531507730484009,
+ "step": 4737
+ },
+ {
+ "epoch": 65.81083442551332,
+ "grad_norm": 0.24775296449661255,
+ "learning_rate": 0.0006,
+ "loss": 3.4781999588012695,
+ "step": 4738
+ },
+ {
+ "epoch": 65.82481432940149,
+ "grad_norm": 0.24917690455913544,
+ "learning_rate": 0.0006,
+ "loss": 3.5157413482666016,
+ "step": 4739
+ },
+ {
+ "epoch": 65.83879423328965,
+ "grad_norm": 0.23374824225902557,
+ "learning_rate": 0.0006,
+ "loss": 3.536634683609009,
+ "step": 4740
+ },
+ {
+ "epoch": 65.8527741371778,
+ "grad_norm": 0.25592541694641113,
+ "learning_rate": 0.0006,
+ "loss": 3.5343942642211914,
+ "step": 4741
+ },
+ {
+ "epoch": 65.86675404106597,
+ "grad_norm": 0.2698819935321808,
+ "learning_rate": 0.0006,
+ "loss": 3.4906277656555176,
+ "step": 4742
+ },
+ {
+ "epoch": 65.88073394495413,
+ "grad_norm": 0.2175036370754242,
+ "learning_rate": 0.0006,
+ "loss": 3.506230354309082,
+ "step": 4743
+ },
+ {
+ "epoch": 65.89471384884229,
+ "grad_norm": 0.22451810538768768,
+ "learning_rate": 0.0006,
+ "loss": 3.5139262676239014,
+ "step": 4744
+ },
+ {
+ "epoch": 65.90869375273044,
+ "grad_norm": 0.24293720722198486,
+ "learning_rate": 0.0006,
+ "loss": 3.528148651123047,
+ "step": 4745
+ },
+ {
+ "epoch": 65.92267365661861,
+ "grad_norm": 0.2138707935810089,
+ "learning_rate": 0.0006,
+ "loss": 3.516911029815674,
+ "step": 4746
+ },
+ {
+ "epoch": 65.93665356050677,
+ "grad_norm": 0.2216160148382187,
+ "learning_rate": 0.0006,
+ "loss": 3.540201187133789,
+ "step": 4747
+ },
+ {
+ "epoch": 65.95063346439493,
+ "grad_norm": 0.2276899367570877,
+ "learning_rate": 0.0006,
+ "loss": 3.525435447692871,
+ "step": 4748
+ },
+ {
+ "epoch": 65.9646133682831,
+ "grad_norm": 0.2441754788160324,
+ "learning_rate": 0.0006,
+ "loss": 3.5337369441986084,
+ "step": 4749
+ },
+ {
+ "epoch": 65.97859327217125,
+ "grad_norm": 0.2364634871482849,
+ "learning_rate": 0.0006,
+ "loss": 3.5289382934570312,
+ "step": 4750
+ },
+ {
+ "epoch": 65.99257317605941,
+ "grad_norm": 0.2322802096605301,
+ "learning_rate": 0.0006,
+ "loss": 3.519960403442383,
+ "step": 4751
+ },
+ {
+ "epoch": 66.0,
+ "grad_norm": 0.28910940885543823,
+ "learning_rate": 0.0006,
+ "loss": 3.535785436630249,
+ "step": 4752
+ },
+ {
+ "epoch": 66.0,
+ "eval_loss": 3.9755074977874756,
+ "eval_runtime": 44.9956,
+ "eval_samples_per_second": 54.272,
+ "eval_steps_per_second": 3.4,
+ "step": 4752
+ },
+ {
+ "epoch": 66.01397990388816,
+ "grad_norm": 0.2833491861820221,
+ "learning_rate": 0.0006,
+ "loss": 3.4532885551452637,
+ "step": 4753
+ },
+ {
+ "epoch": 66.02795980777633,
+ "grad_norm": 0.31011638045310974,
+ "learning_rate": 0.0006,
+ "loss": 3.5164999961853027,
+ "step": 4754
+ },
+ {
+ "epoch": 66.04193971166448,
+ "grad_norm": 0.34583768248558044,
+ "learning_rate": 0.0006,
+ "loss": 3.463331937789917,
+ "step": 4755
+ },
+ {
+ "epoch": 66.05591961555264,
+ "grad_norm": 0.3586544990539551,
+ "learning_rate": 0.0006,
+ "loss": 3.4739010334014893,
+ "step": 4756
+ },
+ {
+ "epoch": 66.06989951944081,
+ "grad_norm": 0.32337963581085205,
+ "learning_rate": 0.0006,
+ "loss": 3.5309596061706543,
+ "step": 4757
+ },
+ {
+ "epoch": 66.08387942332897,
+ "grad_norm": 0.3091002404689789,
+ "learning_rate": 0.0006,
+ "loss": 3.479280471801758,
+ "step": 4758
+ },
+ {
+ "epoch": 66.09785932721712,
+ "grad_norm": 0.29722821712493896,
+ "learning_rate": 0.0006,
+ "loss": 3.52632999420166,
+ "step": 4759
+ },
+ {
+ "epoch": 66.1118392311053,
+ "grad_norm": 0.2636614739894867,
+ "learning_rate": 0.0006,
+ "loss": 3.4953694343566895,
+ "step": 4760
+ },
+ {
+ "epoch": 66.12581913499345,
+ "grad_norm": 0.2646677494049072,
+ "learning_rate": 0.0006,
+ "loss": 3.519223213195801,
+ "step": 4761
+ },
+ {
+ "epoch": 66.1397990388816,
+ "grad_norm": 0.26999902725219727,
+ "learning_rate": 0.0006,
+ "loss": 3.500627040863037,
+ "step": 4762
+ },
+ {
+ "epoch": 66.15377894276976,
+ "grad_norm": 0.26489800214767456,
+ "learning_rate": 0.0006,
+ "loss": 3.486992120742798,
+ "step": 4763
+ },
+ {
+ "epoch": 66.16775884665793,
+ "grad_norm": 0.23870280385017395,
+ "learning_rate": 0.0006,
+ "loss": 3.5312767028808594,
+ "step": 4764
+ },
+ {
+ "epoch": 66.18173875054609,
+ "grad_norm": 0.260374516248703,
+ "learning_rate": 0.0006,
+ "loss": 3.529757499694824,
+ "step": 4765
+ },
+ {
+ "epoch": 66.19571865443424,
+ "grad_norm": 0.22300437092781067,
+ "learning_rate": 0.0006,
+ "loss": 3.534423351287842,
+ "step": 4766
+ },
+ {
+ "epoch": 66.20969855832242,
+ "grad_norm": 0.22216713428497314,
+ "learning_rate": 0.0006,
+ "loss": 3.4944376945495605,
+ "step": 4767
+ },
+ {
+ "epoch": 66.22367846221057,
+ "grad_norm": 0.22038567066192627,
+ "learning_rate": 0.0006,
+ "loss": 3.500737190246582,
+ "step": 4768
+ },
+ {
+ "epoch": 66.23765836609873,
+ "grad_norm": 0.23068127036094666,
+ "learning_rate": 0.0006,
+ "loss": 3.486678123474121,
+ "step": 4769
+ },
+ {
+ "epoch": 66.2516382699869,
+ "grad_norm": 0.22809696197509766,
+ "learning_rate": 0.0006,
+ "loss": 3.49131441116333,
+ "step": 4770
+ },
+ {
+ "epoch": 66.26561817387505,
+ "grad_norm": 0.2096482366323471,
+ "learning_rate": 0.0006,
+ "loss": 3.462193012237549,
+ "step": 4771
+ },
+ {
+ "epoch": 66.27959807776321,
+ "grad_norm": 0.20821219682693481,
+ "learning_rate": 0.0006,
+ "loss": 3.482736110687256,
+ "step": 4772
+ },
+ {
+ "epoch": 66.29357798165138,
+ "grad_norm": 0.20735417306423187,
+ "learning_rate": 0.0006,
+ "loss": 3.4810829162597656,
+ "step": 4773
+ },
+ {
+ "epoch": 66.30755788553954,
+ "grad_norm": 0.21598318219184875,
+ "learning_rate": 0.0006,
+ "loss": 3.5151000022888184,
+ "step": 4774
+ },
+ {
+ "epoch": 66.3215377894277,
+ "grad_norm": 0.20589035749435425,
+ "learning_rate": 0.0006,
+ "loss": 3.4938106536865234,
+ "step": 4775
+ },
+ {
+ "epoch": 66.33551769331586,
+ "grad_norm": 0.22494125366210938,
+ "learning_rate": 0.0006,
+ "loss": 3.4739134311676025,
+ "step": 4776
+ },
+ {
+ "epoch": 66.34949759720402,
+ "grad_norm": 0.24715618789196014,
+ "learning_rate": 0.0006,
+ "loss": 3.492598295211792,
+ "step": 4777
+ },
+ {
+ "epoch": 66.36347750109218,
+ "grad_norm": 0.26689210534095764,
+ "learning_rate": 0.0006,
+ "loss": 3.5183334350585938,
+ "step": 4778
+ },
+ {
+ "epoch": 66.37745740498035,
+ "grad_norm": 0.29018405079841614,
+ "learning_rate": 0.0006,
+ "loss": 3.4874320030212402,
+ "step": 4779
+ },
+ {
+ "epoch": 66.3914373088685,
+ "grad_norm": 0.2511773109436035,
+ "learning_rate": 0.0006,
+ "loss": 3.5105361938476562,
+ "step": 4780
+ },
+ {
+ "epoch": 66.40541721275666,
+ "grad_norm": 0.20808005332946777,
+ "learning_rate": 0.0006,
+ "loss": 3.4932327270507812,
+ "step": 4781
+ },
+ {
+ "epoch": 66.41939711664482,
+ "grad_norm": 0.21036715805530548,
+ "learning_rate": 0.0006,
+ "loss": 3.5223588943481445,
+ "step": 4782
+ },
+ {
+ "epoch": 66.43337702053299,
+ "grad_norm": 0.2151600569486618,
+ "learning_rate": 0.0006,
+ "loss": 3.491854190826416,
+ "step": 4783
+ },
+ {
+ "epoch": 66.44735692442114,
+ "grad_norm": 0.23702189326286316,
+ "learning_rate": 0.0006,
+ "loss": 3.4869368076324463,
+ "step": 4784
+ },
+ {
+ "epoch": 66.4613368283093,
+ "grad_norm": 0.23089149594306946,
+ "learning_rate": 0.0006,
+ "loss": 3.5014419555664062,
+ "step": 4785
+ },
+ {
+ "epoch": 66.47531673219747,
+ "grad_norm": 0.25527265667915344,
+ "learning_rate": 0.0006,
+ "loss": 3.5148048400878906,
+ "step": 4786
+ },
+ {
+ "epoch": 66.48929663608563,
+ "grad_norm": 0.2308386117219925,
+ "learning_rate": 0.0006,
+ "loss": 3.5196022987365723,
+ "step": 4787
+ },
+ {
+ "epoch": 66.50327653997378,
+ "grad_norm": 0.23467418551445007,
+ "learning_rate": 0.0006,
+ "loss": 3.478280544281006,
+ "step": 4788
+ },
+ {
+ "epoch": 66.51725644386195,
+ "grad_norm": 0.23607908189296722,
+ "learning_rate": 0.0006,
+ "loss": 3.4826481342315674,
+ "step": 4789
+ },
+ {
+ "epoch": 66.53123634775011,
+ "grad_norm": 0.255309522151947,
+ "learning_rate": 0.0006,
+ "loss": 3.498870849609375,
+ "step": 4790
+ },
+ {
+ "epoch": 66.54521625163827,
+ "grad_norm": 0.29246363043785095,
+ "learning_rate": 0.0006,
+ "loss": 3.544440269470215,
+ "step": 4791
+ },
+ {
+ "epoch": 66.55919615552644,
+ "grad_norm": 0.2658552825450897,
+ "learning_rate": 0.0006,
+ "loss": 3.4844512939453125,
+ "step": 4792
+ },
+ {
+ "epoch": 66.57317605941459,
+ "grad_norm": 0.23498542606830597,
+ "learning_rate": 0.0006,
+ "loss": 3.5411434173583984,
+ "step": 4793
+ },
+ {
+ "epoch": 66.58715596330275,
+ "grad_norm": 0.2616438567638397,
+ "learning_rate": 0.0006,
+ "loss": 3.501821994781494,
+ "step": 4794
+ },
+ {
+ "epoch": 66.60113586719092,
+ "grad_norm": 0.2577981650829315,
+ "learning_rate": 0.0006,
+ "loss": 3.519040584564209,
+ "step": 4795
+ },
+ {
+ "epoch": 66.61511577107908,
+ "grad_norm": 0.25896304845809937,
+ "learning_rate": 0.0006,
+ "loss": 3.514458656311035,
+ "step": 4796
+ },
+ {
+ "epoch": 66.62909567496723,
+ "grad_norm": 0.26136472821235657,
+ "learning_rate": 0.0006,
+ "loss": 3.5054283142089844,
+ "step": 4797
+ },
+ {
+ "epoch": 66.6430755788554,
+ "grad_norm": 0.2134191244840622,
+ "learning_rate": 0.0006,
+ "loss": 3.551358222961426,
+ "step": 4798
+ },
+ {
+ "epoch": 66.65705548274356,
+ "grad_norm": 0.20154543220996857,
+ "learning_rate": 0.0006,
+ "loss": 3.5363516807556152,
+ "step": 4799
+ },
+ {
+ "epoch": 66.67103538663171,
+ "grad_norm": 0.20807082951068878,
+ "learning_rate": 0.0006,
+ "loss": 3.4861817359924316,
+ "step": 4800
+ },
+ {
+ "epoch": 66.68501529051987,
+ "grad_norm": 0.22268050909042358,
+ "learning_rate": 0.0006,
+ "loss": 3.5229034423828125,
+ "step": 4801
+ },
+ {
+ "epoch": 66.69899519440804,
+ "grad_norm": 0.21031907200813293,
+ "learning_rate": 0.0006,
+ "loss": 3.499587059020996,
+ "step": 4802
+ },
+ {
+ "epoch": 66.7129750982962,
+ "grad_norm": 0.207321435213089,
+ "learning_rate": 0.0006,
+ "loss": 3.5246481895446777,
+ "step": 4803
+ },
+ {
+ "epoch": 66.72695500218435,
+ "grad_norm": 0.21961352229118347,
+ "learning_rate": 0.0006,
+ "loss": 3.5126147270202637,
+ "step": 4804
+ },
+ {
+ "epoch": 66.74093490607252,
+ "grad_norm": 0.2144167572259903,
+ "learning_rate": 0.0006,
+ "loss": 3.5319013595581055,
+ "step": 4805
+ },
+ {
+ "epoch": 66.75491480996068,
+ "grad_norm": 0.19109441339969635,
+ "learning_rate": 0.0006,
+ "loss": 3.5124895572662354,
+ "step": 4806
+ },
+ {
+ "epoch": 66.76889471384884,
+ "grad_norm": 0.20463025569915771,
+ "learning_rate": 0.0006,
+ "loss": 3.5368666648864746,
+ "step": 4807
+ },
+ {
+ "epoch": 66.78287461773701,
+ "grad_norm": 0.20978771150112152,
+ "learning_rate": 0.0006,
+ "loss": 3.5166687965393066,
+ "step": 4808
+ },
+ {
+ "epoch": 66.79685452162516,
+ "grad_norm": 0.2258925437927246,
+ "learning_rate": 0.0006,
+ "loss": 3.532341957092285,
+ "step": 4809
+ },
+ {
+ "epoch": 66.81083442551332,
+ "grad_norm": 0.21758350729942322,
+ "learning_rate": 0.0006,
+ "loss": 3.5155858993530273,
+ "step": 4810
+ },
+ {
+ "epoch": 66.82481432940149,
+ "grad_norm": 0.20124484598636627,
+ "learning_rate": 0.0006,
+ "loss": 3.491522789001465,
+ "step": 4811
+ },
+ {
+ "epoch": 66.83879423328965,
+ "grad_norm": 0.21627238392829895,
+ "learning_rate": 0.0006,
+ "loss": 3.5303220748901367,
+ "step": 4812
+ },
+ {
+ "epoch": 66.8527741371778,
+ "grad_norm": 0.21125555038452148,
+ "learning_rate": 0.0006,
+ "loss": 3.535466194152832,
+ "step": 4813
+ },
+ {
+ "epoch": 66.86675404106597,
+ "grad_norm": 0.2247028350830078,
+ "learning_rate": 0.0006,
+ "loss": 3.51188325881958,
+ "step": 4814
+ },
+ {
+ "epoch": 66.88073394495413,
+ "grad_norm": 0.21800914406776428,
+ "learning_rate": 0.0006,
+ "loss": 3.5084712505340576,
+ "step": 4815
+ },
+ {
+ "epoch": 66.89471384884229,
+ "grad_norm": 0.2118908166885376,
+ "learning_rate": 0.0006,
+ "loss": 3.5099692344665527,
+ "step": 4816
+ },
+ {
+ "epoch": 66.90869375273044,
+ "grad_norm": 0.22638460993766785,
+ "learning_rate": 0.0006,
+ "loss": 3.5099596977233887,
+ "step": 4817
+ },
+ {
+ "epoch": 66.92267365661861,
+ "grad_norm": 0.1987311840057373,
+ "learning_rate": 0.0006,
+ "loss": 3.5497078895568848,
+ "step": 4818
+ },
+ {
+ "epoch": 66.93665356050677,
+ "grad_norm": 0.21048952639102936,
+ "learning_rate": 0.0006,
+ "loss": 3.524364948272705,
+ "step": 4819
+ },
+ {
+ "epoch": 66.95063346439493,
+ "grad_norm": 0.21481701731681824,
+ "learning_rate": 0.0006,
+ "loss": 3.5121915340423584,
+ "step": 4820
+ },
+ {
+ "epoch": 66.9646133682831,
+ "grad_norm": 0.22060725092887878,
+ "learning_rate": 0.0006,
+ "loss": 3.5288822650909424,
+ "step": 4821
+ },
+ {
+ "epoch": 66.97859327217125,
+ "grad_norm": 0.22192992269992828,
+ "learning_rate": 0.0006,
+ "loss": 3.504401206970215,
+ "step": 4822
+ },
+ {
+ "epoch": 66.99257317605941,
+ "grad_norm": 0.21677598357200623,
+ "learning_rate": 0.0006,
+ "loss": 3.5447967052459717,
+ "step": 4823
+ },
+ {
+ "epoch": 67.0,
+ "grad_norm": 0.24961385130882263,
+ "learning_rate": 0.0006,
+ "loss": 3.4890012741088867,
+ "step": 4824
+ },
+ {
+ "epoch": 67.0,
+ "eval_loss": 3.9784040451049805,
+ "eval_runtime": 45.0843,
+ "eval_samples_per_second": 54.165,
+ "eval_steps_per_second": 3.394,
+ "step": 4824
+ },
+ {
+ "epoch": 67.01397990388816,
+ "grad_norm": 0.22992873191833496,
+ "learning_rate": 0.0006,
+ "loss": 3.470973491668701,
+ "step": 4825
+ },
+ {
+ "epoch": 67.02795980777633,
+ "grad_norm": 0.2189949005842209,
+ "learning_rate": 0.0006,
+ "loss": 3.4956774711608887,
+ "step": 4826
+ },
+ {
+ "epoch": 67.04193971166448,
+ "grad_norm": 0.22506096959114075,
+ "learning_rate": 0.0006,
+ "loss": 3.448911190032959,
+ "step": 4827
+ },
+ {
+ "epoch": 67.05591961555264,
+ "grad_norm": 0.2447187304496765,
+ "learning_rate": 0.0006,
+ "loss": 3.465512275695801,
+ "step": 4828
+ },
+ {
+ "epoch": 67.06989951944081,
+ "grad_norm": 0.27052751183509827,
+ "learning_rate": 0.0006,
+ "loss": 3.493760824203491,
+ "step": 4829
+ },
+ {
+ "epoch": 67.08387942332897,
+ "grad_norm": 0.29693296551704407,
+ "learning_rate": 0.0006,
+ "loss": 3.4922988414764404,
+ "step": 4830
+ },
+ {
+ "epoch": 67.09785932721712,
+ "grad_norm": 0.27461376786231995,
+ "learning_rate": 0.0006,
+ "loss": 3.4782471656799316,
+ "step": 4831
+ },
+ {
+ "epoch": 67.1118392311053,
+ "grad_norm": 0.21409225463867188,
+ "learning_rate": 0.0006,
+ "loss": 3.4636545181274414,
+ "step": 4832
+ },
+ {
+ "epoch": 67.12581913499345,
+ "grad_norm": 0.24362294375896454,
+ "learning_rate": 0.0006,
+ "loss": 3.4836316108703613,
+ "step": 4833
+ },
+ {
+ "epoch": 67.1397990388816,
+ "grad_norm": 0.3237941265106201,
+ "learning_rate": 0.0006,
+ "loss": 3.4853315353393555,
+ "step": 4834
+ },
+ {
+ "epoch": 67.15377894276976,
+ "grad_norm": 0.3138698935508728,
+ "learning_rate": 0.0006,
+ "loss": 3.5045557022094727,
+ "step": 4835
+ },
+ {
+ "epoch": 67.16775884665793,
+ "grad_norm": 0.24102728068828583,
+ "learning_rate": 0.0006,
+ "loss": 3.450237512588501,
+ "step": 4836
+ },
+ {
+ "epoch": 67.18173875054609,
+ "grad_norm": 0.22504228353500366,
+ "learning_rate": 0.0006,
+ "loss": 3.5141711235046387,
+ "step": 4837
+ },
+ {
+ "epoch": 67.19571865443424,
+ "grad_norm": 0.2226196974515915,
+ "learning_rate": 0.0006,
+ "loss": 3.4973597526550293,
+ "step": 4838
+ },
+ {
+ "epoch": 67.20969855832242,
+ "grad_norm": 0.23295332491397858,
+ "learning_rate": 0.0006,
+ "loss": 3.455085277557373,
+ "step": 4839
+ },
+ {
+ "epoch": 67.22367846221057,
+ "grad_norm": 0.24799001216888428,
+ "learning_rate": 0.0006,
+ "loss": 3.5016517639160156,
+ "step": 4840
+ },
+ {
+ "epoch": 67.23765836609873,
+ "grad_norm": 0.2431265115737915,
+ "learning_rate": 0.0006,
+ "loss": 3.5138516426086426,
+ "step": 4841
+ },
+ {
+ "epoch": 67.2516382699869,
+ "grad_norm": 0.22402037680149078,
+ "learning_rate": 0.0006,
+ "loss": 3.5154635906219482,
+ "step": 4842
+ },
+ {
+ "epoch": 67.26561817387505,
+ "grad_norm": 0.2097088098526001,
+ "learning_rate": 0.0006,
+ "loss": 3.512531280517578,
+ "step": 4843
+ },
+ {
+ "epoch": 67.27959807776321,
+ "grad_norm": 0.21303699910640717,
+ "learning_rate": 0.0006,
+ "loss": 3.489511728286743,
+ "step": 4844
+ },
+ {
+ "epoch": 67.29357798165138,
+ "grad_norm": 0.2164260894060135,
+ "learning_rate": 0.0006,
+ "loss": 3.521756172180176,
+ "step": 4845
+ },
+ {
+ "epoch": 67.30755788553954,
+ "grad_norm": 0.2179967612028122,
+ "learning_rate": 0.0006,
+ "loss": 3.4991297721862793,
+ "step": 4846
+ },
+ {
+ "epoch": 67.3215377894277,
+ "grad_norm": 0.21892501413822174,
+ "learning_rate": 0.0006,
+ "loss": 3.475011110305786,
+ "step": 4847
+ },
+ {
+ "epoch": 67.33551769331586,
+ "grad_norm": 0.2372686117887497,
+ "learning_rate": 0.0006,
+ "loss": 3.49537992477417,
+ "step": 4848
+ },
+ {
+ "epoch": 67.34949759720402,
+ "grad_norm": 0.24897949397563934,
+ "learning_rate": 0.0006,
+ "loss": 3.4762938022613525,
+ "step": 4849
+ },
+ {
+ "epoch": 67.36347750109218,
+ "grad_norm": 0.24987933039665222,
+ "learning_rate": 0.0006,
+ "loss": 3.511708974838257,
+ "step": 4850
+ },
+ {
+ "epoch": 67.37745740498035,
+ "grad_norm": 0.24062976241111755,
+ "learning_rate": 0.0006,
+ "loss": 3.4955873489379883,
+ "step": 4851
+ },
+ {
+ "epoch": 67.3914373088685,
+ "grad_norm": 0.2277272790670395,
+ "learning_rate": 0.0006,
+ "loss": 3.5036606788635254,
+ "step": 4852
+ },
+ {
+ "epoch": 67.40541721275666,
+ "grad_norm": 0.23996487259864807,
+ "learning_rate": 0.0006,
+ "loss": 3.515568971633911,
+ "step": 4853
+ },
+ {
+ "epoch": 67.41939711664482,
+ "grad_norm": 0.23224318027496338,
+ "learning_rate": 0.0006,
+ "loss": 3.4915125370025635,
+ "step": 4854
+ },
+ {
+ "epoch": 67.43337702053299,
+ "grad_norm": 0.21011298894882202,
+ "learning_rate": 0.0006,
+ "loss": 3.5076327323913574,
+ "step": 4855
+ },
+ {
+ "epoch": 67.44735692442114,
+ "grad_norm": 0.21975480020046234,
+ "learning_rate": 0.0006,
+ "loss": 3.4929163455963135,
+ "step": 4856
+ },
+ {
+ "epoch": 67.4613368283093,
+ "grad_norm": 0.21966299414634705,
+ "learning_rate": 0.0006,
+ "loss": 3.50154447555542,
+ "step": 4857
+ },
+ {
+ "epoch": 67.47531673219747,
+ "grad_norm": 0.2167058289051056,
+ "learning_rate": 0.0006,
+ "loss": 3.4866533279418945,
+ "step": 4858
+ },
+ {
+ "epoch": 67.48929663608563,
+ "grad_norm": 0.2072296291589737,
+ "learning_rate": 0.0006,
+ "loss": 3.506241798400879,
+ "step": 4859
+ },
+ {
+ "epoch": 67.50327653997378,
+ "grad_norm": 0.2358800321817398,
+ "learning_rate": 0.0006,
+ "loss": 3.51871919631958,
+ "step": 4860
+ },
+ {
+ "epoch": 67.51725644386195,
+ "grad_norm": 0.2841838598251343,
+ "learning_rate": 0.0006,
+ "loss": 3.531181812286377,
+ "step": 4861
+ },
+ {
+ "epoch": 67.53123634775011,
+ "grad_norm": 0.2744826078414917,
+ "learning_rate": 0.0006,
+ "loss": 3.4916810989379883,
+ "step": 4862
+ },
+ {
+ "epoch": 67.54521625163827,
+ "grad_norm": 0.229517862200737,
+ "learning_rate": 0.0006,
+ "loss": 3.522495746612549,
+ "step": 4863
+ },
+ {
+ "epoch": 67.55919615552644,
+ "grad_norm": 0.22933268547058105,
+ "learning_rate": 0.0006,
+ "loss": 3.522249698638916,
+ "step": 4864
+ },
+ {
+ "epoch": 67.57317605941459,
+ "grad_norm": 0.2578641176223755,
+ "learning_rate": 0.0006,
+ "loss": 3.497955799102783,
+ "step": 4865
+ },
+ {
+ "epoch": 67.58715596330275,
+ "grad_norm": 0.26098695397377014,
+ "learning_rate": 0.0006,
+ "loss": 3.508647918701172,
+ "step": 4866
+ },
+ {
+ "epoch": 67.60113586719092,
+ "grad_norm": 0.26429283618927,
+ "learning_rate": 0.0006,
+ "loss": 3.504948139190674,
+ "step": 4867
+ },
+ {
+ "epoch": 67.61511577107908,
+ "grad_norm": 0.2604367136955261,
+ "learning_rate": 0.0006,
+ "loss": 3.529656410217285,
+ "step": 4868
+ },
+ {
+ "epoch": 67.62909567496723,
+ "grad_norm": 0.26351016759872437,
+ "learning_rate": 0.0006,
+ "loss": 3.497729778289795,
+ "step": 4869
+ },
+ {
+ "epoch": 67.6430755788554,
+ "grad_norm": 0.23902031779289246,
+ "learning_rate": 0.0006,
+ "loss": 3.5174601078033447,
+ "step": 4870
+ },
+ {
+ "epoch": 67.65705548274356,
+ "grad_norm": 0.2439061552286148,
+ "learning_rate": 0.0006,
+ "loss": 3.472304344177246,
+ "step": 4871
+ },
+ {
+ "epoch": 67.67103538663171,
+ "grad_norm": 0.28729668259620667,
+ "learning_rate": 0.0006,
+ "loss": 3.4945883750915527,
+ "step": 4872
+ },
+ {
+ "epoch": 67.68501529051987,
+ "grad_norm": 0.2690763771533966,
+ "learning_rate": 0.0006,
+ "loss": 3.524843215942383,
+ "step": 4873
+ },
+ {
+ "epoch": 67.69899519440804,
+ "grad_norm": 0.24424311518669128,
+ "learning_rate": 0.0006,
+ "loss": 3.5337445735931396,
+ "step": 4874
+ },
+ {
+ "epoch": 67.7129750982962,
+ "grad_norm": 0.25736868381500244,
+ "learning_rate": 0.0006,
+ "loss": 3.51664400100708,
+ "step": 4875
+ },
+ {
+ "epoch": 67.72695500218435,
+ "grad_norm": 0.24504248797893524,
+ "learning_rate": 0.0006,
+ "loss": 3.5089268684387207,
+ "step": 4876
+ },
+ {
+ "epoch": 67.74093490607252,
+ "grad_norm": 0.24296091496944427,
+ "learning_rate": 0.0006,
+ "loss": 3.5506460666656494,
+ "step": 4877
+ },
+ {
+ "epoch": 67.75491480996068,
+ "grad_norm": 0.24984019994735718,
+ "learning_rate": 0.0006,
+ "loss": 3.5290684700012207,
+ "step": 4878
+ },
+ {
+ "epoch": 67.76889471384884,
+ "grad_norm": 0.23878677189350128,
+ "learning_rate": 0.0006,
+ "loss": 3.522343635559082,
+ "step": 4879
+ },
+ {
+ "epoch": 67.78287461773701,
+ "grad_norm": 0.2275245040655136,
+ "learning_rate": 0.0006,
+ "loss": 3.5218796730041504,
+ "step": 4880
+ },
+ {
+ "epoch": 67.79685452162516,
+ "grad_norm": 0.21045760810375214,
+ "learning_rate": 0.0006,
+ "loss": 3.512430191040039,
+ "step": 4881
+ },
+ {
+ "epoch": 67.81083442551332,
+ "grad_norm": 0.21902696788311005,
+ "learning_rate": 0.0006,
+ "loss": 3.537611484527588,
+ "step": 4882
+ },
+ {
+ "epoch": 67.82481432940149,
+ "grad_norm": 0.20757564902305603,
+ "learning_rate": 0.0006,
+ "loss": 3.470278263092041,
+ "step": 4883
+ },
+ {
+ "epoch": 67.83879423328965,
+ "grad_norm": 0.22352434694766998,
+ "learning_rate": 0.0006,
+ "loss": 3.4816718101501465,
+ "step": 4884
+ },
+ {
+ "epoch": 67.8527741371778,
+ "grad_norm": 0.20459680259227753,
+ "learning_rate": 0.0006,
+ "loss": 3.508671998977661,
+ "step": 4885
+ },
+ {
+ "epoch": 67.86675404106597,
+ "grad_norm": 0.20641672611236572,
+ "learning_rate": 0.0006,
+ "loss": 3.500471591949463,
+ "step": 4886
+ },
+ {
+ "epoch": 67.88073394495413,
+ "grad_norm": 0.20340596139431,
+ "learning_rate": 0.0006,
+ "loss": 3.5282673835754395,
+ "step": 4887
+ },
+ {
+ "epoch": 67.89471384884229,
+ "grad_norm": 0.20768426358699799,
+ "learning_rate": 0.0006,
+ "loss": 3.528446912765503,
+ "step": 4888
+ },
+ {
+ "epoch": 67.90869375273044,
+ "grad_norm": 0.19998659193515778,
+ "learning_rate": 0.0006,
+ "loss": 3.501742124557495,
+ "step": 4889
+ },
+ {
+ "epoch": 67.92267365661861,
+ "grad_norm": 0.20472751557826996,
+ "learning_rate": 0.0006,
+ "loss": 3.510523796081543,
+ "step": 4890
+ },
+ {
+ "epoch": 67.93665356050677,
+ "grad_norm": 0.21528398990631104,
+ "learning_rate": 0.0006,
+ "loss": 3.529409170150757,
+ "step": 4891
+ },
+ {
+ "epoch": 67.95063346439493,
+ "grad_norm": 0.19671283662319183,
+ "learning_rate": 0.0006,
+ "loss": 3.5512051582336426,
+ "step": 4892
+ },
+ {
+ "epoch": 67.9646133682831,
+ "grad_norm": 0.20629945397377014,
+ "learning_rate": 0.0006,
+ "loss": 3.5127525329589844,
+ "step": 4893
+ },
+ {
+ "epoch": 67.97859327217125,
+ "grad_norm": 0.2121579945087433,
+ "learning_rate": 0.0006,
+ "loss": 3.5242156982421875,
+ "step": 4894
+ },
+ {
+ "epoch": 67.99257317605941,
+ "grad_norm": 0.20770777761936188,
+ "learning_rate": 0.0006,
+ "loss": 3.5094361305236816,
+ "step": 4895
+ },
+ {
+ "epoch": 68.0,
+ "grad_norm": 0.2619984447956085,
+ "learning_rate": 0.0006,
+ "loss": 3.491684675216675,
+ "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/mask15-l2r50-fulle-lm/checkpoint-4896/training_args.bin b/runs/mask15-l2r50-fulle-lm/checkpoint-4896/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..43721c50815fe94f90cb043bf545b8f7bd9afc38
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-4896/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:a0b8d7bb9ac952b1abed3bd1e5c8f6ebd20daa957b3a85688954f8df03be6eb9
+size 4856
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-5184/chat_template.jinja b/runs/mask15-l2r50-fulle-lm/checkpoint-5184/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/mask15-l2r50-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/mask15-l2r50-fulle-lm/checkpoint-5184/config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-5184/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..1b4ac3c550d6003148026765eba4cb1512b216c9
--- /dev/null
+++ b/runs/mask15-l2r50-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": 151672
+}
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-5184/generation_config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-5184/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..5cd15fe1269fd505cfdefe9b3e9989dacd9f68f4
--- /dev/null
+++ b/runs/mask15-l2r50-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/mask15-l2r50-fulle-lm/checkpoint-5184/model.safetensors b/runs/mask15-l2r50-fulle-lm/checkpoint-5184/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..e56de2a0b7a82ab33718e54c5218c7ed412972f5
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-5184/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:a8aeb331a9d4918f130889dab7692dbcd51247804eb600cbbfb5e3e737c6b027
+size 583358280
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-5184/optimizer.pt b/runs/mask15-l2r50-fulle-lm/checkpoint-5184/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..ff7bb65aeb3758d816e8d5a61ab06a48ad2c23fb
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-5184/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:afae965eb085652988b49793191827edc38816ed13720357728a2fa979723385
+size 1166829434
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-5184/rng_state_0.pth b/runs/mask15-l2r50-fulle-lm/checkpoint-5184/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..b6b1ca5656b0b9fce69d6ed3e19d7b490836ecb6
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-5184/rng_state_0.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:98c7c5250b8c59c11b97672104acae6312307496657e4096138a4f89167c7eb3
+size 14512
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-5184/rng_state_1.pth b/runs/mask15-l2r50-fulle-lm/checkpoint-5184/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..7d71302a1dbcd7978d891a024ddac6ce0b88424a
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-5184/rng_state_1.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:d36b908a7ba5ddcf2dee305446019ad723e6853a2fdb357780389a6c4365685e
+size 14512
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-5184/scheduler.pt b/runs/mask15-l2r50-fulle-lm/checkpoint-5184/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..87c25f34fb9c3e31517de12eec62aa55b15b7f35
--- /dev/null
+++ b/runs/mask15-l2r50-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/mask15-l2r50-fulle-lm/checkpoint-5184/tokenizer.json b/runs/mask15-l2r50-fulle-lm/checkpoint-5184/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..6226bf25372d1a86dbd704ec75d2129960f1ba88
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-5184/tokenizer.json
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:9245fe3cb2d40f9ed8d5d8ddd1d58701ba2a236beec08f656162281673f30560
+size 11424264
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-5184/tokenizer_config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-5184/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..01bc9676576e8cf62a08a9db166d6c5bab1d6727
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-5184/tokenizer_config.json
@@ -0,0 +1,20 @@
+{
+ "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|>",
+ "<|mask|>"
+ ],
+ "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/mask15-l2r50-fulle-lm/checkpoint-5184/trainer_state.json b/runs/mask15-l2r50-fulle-lm/checkpoint-5184/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..ad945428dc5f0c06b41fcba6de61ac97e7b063a1
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-5184/trainer_state.json
@@ -0,0 +1,36890 @@
+{
+ "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": 9.807971954345703,
+ "learning_rate": 0.0,
+ "loss": 11.989814758300781,
+ "step": 1
+ },
+ {
+ "epoch": 0.027959807776321538,
+ "grad_norm": 9.834383010864258,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 11.993022918701172,
+ "step": 2
+ },
+ {
+ "epoch": 0.04193971166448231,
+ "grad_norm": 9.482470512390137,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 11.854345321655273,
+ "step": 3
+ },
+ {
+ "epoch": 0.055919615552643076,
+ "grad_norm": 7.678808689117432,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 11.618255615234375,
+ "step": 4
+ },
+ {
+ "epoch": 0.06989951944080385,
+ "grad_norm": 6.011275291442871,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 11.351423263549805,
+ "step": 5
+ },
+ {
+ "epoch": 0.08387942332896461,
+ "grad_norm": 5.244393825531006,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 11.128631591796875,
+ "step": 6
+ },
+ {
+ "epoch": 0.09785932721712538,
+ "grad_norm": 4.577618598937988,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 10.921937942504883,
+ "step": 7
+ },
+ {
+ "epoch": 0.11183923110528615,
+ "grad_norm": 4.03810453414917,
+ "learning_rate": 4.2e-05,
+ "loss": 10.742650985717773,
+ "step": 8
+ },
+ {
+ "epoch": 0.1258191349934469,
+ "grad_norm": 3.657679796218872,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 10.600778579711914,
+ "step": 9
+ },
+ {
+ "epoch": 0.1397990388816077,
+ "grad_norm": 3.352902889251709,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 10.489639282226562,
+ "step": 10
+ },
+ {
+ "epoch": 0.15377894276976845,
+ "grad_norm": 3.1162633895874023,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 10.417770385742188,
+ "step": 11
+ },
+ {
+ "epoch": 0.16775884665792923,
+ "grad_norm": 3.0402638912200928,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 10.35334587097168,
+ "step": 12
+ },
+ {
+ "epoch": 0.18173875054608998,
+ "grad_norm": 3.030630111694336,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 10.306867599487305,
+ "step": 13
+ },
+ {
+ "epoch": 0.19571865443425077,
+ "grad_norm": 3.035292148590088,
+ "learning_rate": 7.8e-05,
+ "loss": 10.26003646850586,
+ "step": 14
+ },
+ {
+ "epoch": 0.20969855832241152,
+ "grad_norm": 3.0125675201416016,
+ "learning_rate": 8.4e-05,
+ "loss": 10.219265937805176,
+ "step": 15
+ },
+ {
+ "epoch": 0.2236784622105723,
+ "grad_norm": 2.9998886585235596,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 10.161077499389648,
+ "step": 16
+ },
+ {
+ "epoch": 0.23765836609873306,
+ "grad_norm": 2.9411966800689697,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 10.107423782348633,
+ "step": 17
+ },
+ {
+ "epoch": 0.2516382699868938,
+ "grad_norm": 2.88081955909729,
+ "learning_rate": 0.000102,
+ "loss": 10.04700756072998,
+ "step": 18
+ },
+ {
+ "epoch": 0.2656181738750546,
+ "grad_norm": 2.8219687938690186,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 9.981185913085938,
+ "step": 19
+ },
+ {
+ "epoch": 0.2795980777632154,
+ "grad_norm": 2.79306960105896,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 9.89747142791748,
+ "step": 20
+ },
+ {
+ "epoch": 0.29357798165137616,
+ "grad_norm": 2.7314443588256836,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 9.829219818115234,
+ "step": 21
+ },
+ {
+ "epoch": 0.3075578855395369,
+ "grad_norm": 2.6923747062683105,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 9.747566223144531,
+ "step": 22
+ },
+ {
+ "epoch": 0.3215377894276977,
+ "grad_norm": 2.650602340698242,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 9.66455078125,
+ "step": 23
+ },
+ {
+ "epoch": 0.33551769331585846,
+ "grad_norm": 2.606977701187134,
+ "learning_rate": 0.000138,
+ "loss": 9.582326889038086,
+ "step": 24
+ },
+ {
+ "epoch": 0.34949759720401924,
+ "grad_norm": 2.567256212234497,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 9.492591857910156,
+ "step": 25
+ },
+ {
+ "epoch": 0.36347750109217997,
+ "grad_norm": 2.520740509033203,
+ "learning_rate": 0.00015,
+ "loss": 9.396563529968262,
+ "step": 26
+ },
+ {
+ "epoch": 0.37745740498034075,
+ "grad_norm": 2.471588611602783,
+ "learning_rate": 0.000156,
+ "loss": 9.303571701049805,
+ "step": 27
+ },
+ {
+ "epoch": 0.39143730886850153,
+ "grad_norm": 2.4341530799865723,
+ "learning_rate": 0.000162,
+ "loss": 9.191819190979004,
+ "step": 28
+ },
+ {
+ "epoch": 0.4054172127566623,
+ "grad_norm": 2.369244337081909,
+ "learning_rate": 0.000168,
+ "loss": 9.092012405395508,
+ "step": 29
+ },
+ {
+ "epoch": 0.41939711664482304,
+ "grad_norm": 2.28625226020813,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 8.984567642211914,
+ "step": 30
+ },
+ {
+ "epoch": 0.4333770205329838,
+ "grad_norm": 2.2082231044769287,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 8.889009475708008,
+ "step": 31
+ },
+ {
+ "epoch": 0.4473569244211446,
+ "grad_norm": 2.1429483890533447,
+ "learning_rate": 0.000186,
+ "loss": 8.778556823730469,
+ "step": 32
+ },
+ {
+ "epoch": 0.4613368283093054,
+ "grad_norm": 2.0937352180480957,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 8.661166191101074,
+ "step": 33
+ },
+ {
+ "epoch": 0.4753167321974661,
+ "grad_norm": 2.040790557861328,
+ "learning_rate": 0.000198,
+ "loss": 8.550382614135742,
+ "step": 34
+ },
+ {
+ "epoch": 0.4892966360856269,
+ "grad_norm": 1.93914794921875,
+ "learning_rate": 0.000204,
+ "loss": 8.463907241821289,
+ "step": 35
+ },
+ {
+ "epoch": 0.5032765399737876,
+ "grad_norm": 1.8624178171157837,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 8.3438720703125,
+ "step": 36
+ },
+ {
+ "epoch": 0.5172564438619485,
+ "grad_norm": 1.8107167482376099,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 8.21871566772461,
+ "step": 37
+ },
+ {
+ "epoch": 0.5312363477501092,
+ "grad_norm": 1.717979073524475,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 8.113494873046875,
+ "step": 38
+ },
+ {
+ "epoch": 0.54521625163827,
+ "grad_norm": 1.668742060661316,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 8.006099700927734,
+ "step": 39
+ },
+ {
+ "epoch": 0.5591961555264308,
+ "grad_norm": 1.6147786378860474,
+ "learning_rate": 0.000234,
+ "loss": 7.911509037017822,
+ "step": 40
+ },
+ {
+ "epoch": 0.5731760594145915,
+ "grad_norm": 1.535750150680542,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 7.822839736938477,
+ "step": 41
+ },
+ {
+ "epoch": 0.5871559633027523,
+ "grad_norm": 1.4700065851211548,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 7.713842868804932,
+ "step": 42
+ },
+ {
+ "epoch": 0.601135867190913,
+ "grad_norm": 1.39020574092865,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 7.6040191650390625,
+ "step": 43
+ },
+ {
+ "epoch": 0.6151157710790738,
+ "grad_norm": 1.2875399589538574,
+ "learning_rate": 0.000258,
+ "loss": 7.550642013549805,
+ "step": 44
+ },
+ {
+ "epoch": 0.6290956749672346,
+ "grad_norm": 1.2094247341156006,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 7.460824012756348,
+ "step": 45
+ },
+ {
+ "epoch": 0.6430755788553953,
+ "grad_norm": 1.126452088356018,
+ "learning_rate": 0.00027,
+ "loss": 7.380537986755371,
+ "step": 46
+ },
+ {
+ "epoch": 0.6570554827435562,
+ "grad_norm": 1.0313163995742798,
+ "learning_rate": 0.000276,
+ "loss": 7.286153793334961,
+ "step": 47
+ },
+ {
+ "epoch": 0.6710353866317169,
+ "grad_norm": 0.9172859787940979,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 7.2064714431762695,
+ "step": 48
+ },
+ {
+ "epoch": 0.6850152905198776,
+ "grad_norm": 0.8148201107978821,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 7.158207416534424,
+ "step": 49
+ },
+ {
+ "epoch": 0.6989951944080385,
+ "grad_norm": 0.650123119354248,
+ "learning_rate": 0.000294,
+ "loss": 7.108791828155518,
+ "step": 50
+ },
+ {
+ "epoch": 0.7129750982961992,
+ "grad_norm": 0.5437585711479187,
+ "learning_rate": 0.0003,
+ "loss": 7.083050727844238,
+ "step": 51
+ },
+ {
+ "epoch": 0.7269550021843599,
+ "grad_norm": 0.46762895584106445,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 7.058027267456055,
+ "step": 52
+ },
+ {
+ "epoch": 0.7409349060725208,
+ "grad_norm": 0.47947561740875244,
+ "learning_rate": 0.000312,
+ "loss": 7.015172958374023,
+ "step": 53
+ },
+ {
+ "epoch": 0.7549148099606815,
+ "grad_norm": 0.7546492218971252,
+ "learning_rate": 0.000318,
+ "loss": 7.024629592895508,
+ "step": 54
+ },
+ {
+ "epoch": 0.7688947138488423,
+ "grad_norm": 0.6153718829154968,
+ "learning_rate": 0.000324,
+ "loss": 7.026667594909668,
+ "step": 55
+ },
+ {
+ "epoch": 0.7828746177370031,
+ "grad_norm": 0.3359069228172302,
+ "learning_rate": 0.00033,
+ "loss": 7.008166313171387,
+ "step": 56
+ },
+ {
+ "epoch": 0.7968545216251638,
+ "grad_norm": 0.48906823992729187,
+ "learning_rate": 0.000336,
+ "loss": 7.019716262817383,
+ "step": 57
+ },
+ {
+ "epoch": 0.8108344255133246,
+ "grad_norm": 0.5525421500205994,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 7.02108097076416,
+ "step": 58
+ },
+ {
+ "epoch": 0.8248143294014854,
+ "grad_norm": 0.3103712201118469,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 7.003164768218994,
+ "step": 59
+ },
+ {
+ "epoch": 0.8387942332896461,
+ "grad_norm": 0.4431874752044678,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 7.003463268280029,
+ "step": 60
+ },
+ {
+ "epoch": 0.8527741371778069,
+ "grad_norm": 0.4291120767593384,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 6.96931791305542,
+ "step": 61
+ },
+ {
+ "epoch": 0.8667540410659677,
+ "grad_norm": 0.6566054224967957,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 6.989445686340332,
+ "step": 62
+ },
+ {
+ "epoch": 0.8807339449541285,
+ "grad_norm": 0.20663189888000488,
+ "learning_rate": 0.000372,
+ "loss": 6.9669342041015625,
+ "step": 63
+ },
+ {
+ "epoch": 0.8947138488422892,
+ "grad_norm": 0.6242535710334778,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 6.949883460998535,
+ "step": 64
+ },
+ {
+ "epoch": 0.9086937527304499,
+ "grad_norm": 0.6984224915504456,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 6.955153465270996,
+ "step": 65
+ },
+ {
+ "epoch": 0.9226736566186108,
+ "grad_norm": 0.6328083872795105,
+ "learning_rate": 0.00039,
+ "loss": 6.965421676635742,
+ "step": 66
+ },
+ {
+ "epoch": 0.9366535605067715,
+ "grad_norm": 1.213352918624878,
+ "learning_rate": 0.000396,
+ "loss": 6.9454345703125,
+ "step": 67
+ },
+ {
+ "epoch": 0.9506334643949322,
+ "grad_norm": 0.9221940636634827,
+ "learning_rate": 0.000402,
+ "loss": 6.923908233642578,
+ "step": 68
+ },
+ {
+ "epoch": 0.9646133682830931,
+ "grad_norm": 0.6825450658798218,
+ "learning_rate": 0.000408,
+ "loss": 6.910131454467773,
+ "step": 69
+ },
+ {
+ "epoch": 0.9785932721712538,
+ "grad_norm": 0.5690162181854248,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 6.89891242980957,
+ "step": 70
+ },
+ {
+ "epoch": 0.9925731760594146,
+ "grad_norm": 0.4320870041847229,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 6.896081924438477,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.31632405519485474,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 6.897444725036621,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 7.757839679718018,
+ "eval_runtime": 43.8338,
+ "eval_samples_per_second": 55.71,
+ "eval_steps_per_second": 3.49,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139799038881607,
+ "grad_norm": 0.3789916932582855,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 6.877245903015137,
+ "step": 73
+ },
+ {
+ "epoch": 1.0279598077763215,
+ "grad_norm": 0.9167932868003845,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 6.921600341796875,
+ "step": 74
+ },
+ {
+ "epoch": 1.0419397116644824,
+ "grad_norm": 0.581188440322876,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 6.861001968383789,
+ "step": 75
+ },
+ {
+ "epoch": 1.0559196155526431,
+ "grad_norm": 0.4179714024066925,
+ "learning_rate": 0.00045,
+ "loss": 6.875657081604004,
+ "step": 76
+ },
+ {
+ "epoch": 1.0698995194408039,
+ "grad_norm": 1.0669957399368286,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 6.857122421264648,
+ "step": 77
+ },
+ {
+ "epoch": 1.0838794233289646,
+ "grad_norm": 0.27855145931243896,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 6.828852653503418,
+ "step": 78
+ },
+ {
+ "epoch": 1.0978593272171253,
+ "grad_norm": 0.7192047834396362,
+ "learning_rate": 0.000468,
+ "loss": 6.870839595794678,
+ "step": 79
+ },
+ {
+ "epoch": 1.1118392311052863,
+ "grad_norm": 0.5583325624465942,
+ "learning_rate": 0.000474,
+ "loss": 6.8497514724731445,
+ "step": 80
+ },
+ {
+ "epoch": 1.125819134993447,
+ "grad_norm": 0.3001925051212311,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 6.858528137207031,
+ "step": 81
+ },
+ {
+ "epoch": 1.1397990388816077,
+ "grad_norm": 0.2408239096403122,
+ "learning_rate": 0.000486,
+ "loss": 6.83231258392334,
+ "step": 82
+ },
+ {
+ "epoch": 1.1537789427697684,
+ "grad_norm": 0.28230324387550354,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 6.815476894378662,
+ "step": 83
+ },
+ {
+ "epoch": 1.1677588466579292,
+ "grad_norm": 0.3247123658657074,
+ "learning_rate": 0.000498,
+ "loss": 6.780126094818115,
+ "step": 84
+ },
+ {
+ "epoch": 1.18173875054609,
+ "grad_norm": 0.25713011622428894,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 6.7798309326171875,
+ "step": 85
+ },
+ {
+ "epoch": 1.1957186544342508,
+ "grad_norm": 0.5386835932731628,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 6.791745185852051,
+ "step": 86
+ },
+ {
+ "epoch": 1.2096985583224116,
+ "grad_norm": 0.2226393222808838,
+ "learning_rate": 0.000516,
+ "loss": 6.7826972007751465,
+ "step": 87
+ },
+ {
+ "epoch": 1.2236784622105723,
+ "grad_norm": 0.4338362216949463,
+ "learning_rate": 0.000522,
+ "loss": 6.805043697357178,
+ "step": 88
+ },
+ {
+ "epoch": 1.237658366098733,
+ "grad_norm": 0.2953208386898041,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 6.768434524536133,
+ "step": 89
+ },
+ {
+ "epoch": 1.2516382699868938,
+ "grad_norm": 0.13453717529773712,
+ "learning_rate": 0.000534,
+ "loss": 6.773697376251221,
+ "step": 90
+ },
+ {
+ "epoch": 1.2656181738750547,
+ "grad_norm": 0.35774412751197815,
+ "learning_rate": 0.00054,
+ "loss": 6.766414642333984,
+ "step": 91
+ },
+ {
+ "epoch": 1.2795980777632154,
+ "grad_norm": 0.4669720530509949,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 6.754847526550293,
+ "step": 92
+ },
+ {
+ "epoch": 1.2935779816513762,
+ "grad_norm": 0.13806621730327606,
+ "learning_rate": 0.000552,
+ "loss": 6.746858596801758,
+ "step": 93
+ },
+ {
+ "epoch": 1.307557885539537,
+ "grad_norm": 0.3280332386493683,
+ "learning_rate": 0.000558,
+ "loss": 6.715662956237793,
+ "step": 94
+ },
+ {
+ "epoch": 1.3215377894276976,
+ "grad_norm": 0.4689937233924866,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 6.734938144683838,
+ "step": 95
+ },
+ {
+ "epoch": 1.3355176933158583,
+ "grad_norm": 0.35371264815330505,
+ "learning_rate": 0.00057,
+ "loss": 6.748386383056641,
+ "step": 96
+ },
+ {
+ "epoch": 1.3494975972040193,
+ "grad_norm": 0.15232303738594055,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 6.705557823181152,
+ "step": 97
+ },
+ {
+ "epoch": 1.36347750109218,
+ "grad_norm": 0.30132821202278137,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 6.7199859619140625,
+ "step": 98
+ },
+ {
+ "epoch": 1.3774574049803407,
+ "grad_norm": 0.42174842953681946,
+ "learning_rate": 0.000588,
+ "loss": 6.715370178222656,
+ "step": 99
+ },
+ {
+ "epoch": 1.3914373088685015,
+ "grad_norm": 0.6257228851318359,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 6.707026958465576,
+ "step": 100
+ },
+ {
+ "epoch": 1.4054172127566624,
+ "grad_norm": 0.4551195800304413,
+ "learning_rate": 0.0006,
+ "loss": 6.7078423500061035,
+ "step": 101
+ },
+ {
+ "epoch": 1.4193971166448232,
+ "grad_norm": 0.41940346360206604,
+ "learning_rate": 0.0006,
+ "loss": 6.6959357261657715,
+ "step": 102
+ },
+ {
+ "epoch": 1.4333770205329839,
+ "grad_norm": 0.32251718640327454,
+ "learning_rate": 0.0006,
+ "loss": 6.689168930053711,
+ "step": 103
+ },
+ {
+ "epoch": 1.4473569244211446,
+ "grad_norm": 0.2992720305919647,
+ "learning_rate": 0.0006,
+ "loss": 6.680738925933838,
+ "step": 104
+ },
+ {
+ "epoch": 1.4613368283093053,
+ "grad_norm": 0.3228456974029541,
+ "learning_rate": 0.0006,
+ "loss": 6.672350883483887,
+ "step": 105
+ },
+ {
+ "epoch": 1.475316732197466,
+ "grad_norm": 0.24954743683338165,
+ "learning_rate": 0.0006,
+ "loss": 6.653716087341309,
+ "step": 106
+ },
+ {
+ "epoch": 1.4892966360856268,
+ "grad_norm": 0.30740687251091003,
+ "learning_rate": 0.0006,
+ "loss": 6.676583290100098,
+ "step": 107
+ },
+ {
+ "epoch": 1.5032765399737875,
+ "grad_norm": 0.24950599670410156,
+ "learning_rate": 0.0006,
+ "loss": 6.656691551208496,
+ "step": 108
+ },
+ {
+ "epoch": 1.5172564438619485,
+ "grad_norm": 0.24293005466461182,
+ "learning_rate": 0.0006,
+ "loss": 6.640995979309082,
+ "step": 109
+ },
+ {
+ "epoch": 1.5312363477501092,
+ "grad_norm": 0.30167272686958313,
+ "learning_rate": 0.0006,
+ "loss": 6.647380352020264,
+ "step": 110
+ },
+ {
+ "epoch": 1.5452162516382701,
+ "grad_norm": 0.4424632787704468,
+ "learning_rate": 0.0006,
+ "loss": 6.6548261642456055,
+ "step": 111
+ },
+ {
+ "epoch": 1.5591961555264309,
+ "grad_norm": 0.5295748114585876,
+ "learning_rate": 0.0006,
+ "loss": 6.64370059967041,
+ "step": 112
+ },
+ {
+ "epoch": 1.5731760594145916,
+ "grad_norm": 0.6829339265823364,
+ "learning_rate": 0.0006,
+ "loss": 6.654196739196777,
+ "step": 113
+ },
+ {
+ "epoch": 1.5871559633027523,
+ "grad_norm": 0.6534460186958313,
+ "learning_rate": 0.0006,
+ "loss": 6.675765037536621,
+ "step": 114
+ },
+ {
+ "epoch": 1.601135867190913,
+ "grad_norm": 0.6172244548797607,
+ "learning_rate": 0.0006,
+ "loss": 6.631234169006348,
+ "step": 115
+ },
+ {
+ "epoch": 1.6151157710790738,
+ "grad_norm": 0.5650008320808411,
+ "learning_rate": 0.0006,
+ "loss": 6.654262542724609,
+ "step": 116
+ },
+ {
+ "epoch": 1.6290956749672345,
+ "grad_norm": 0.3890475928783417,
+ "learning_rate": 0.0006,
+ "loss": 6.627526760101318,
+ "step": 117
+ },
+ {
+ "epoch": 1.6430755788553952,
+ "grad_norm": 0.6409873366355896,
+ "learning_rate": 0.0006,
+ "loss": 6.619794845581055,
+ "step": 118
+ },
+ {
+ "epoch": 1.6570554827435562,
+ "grad_norm": 0.5052326321601868,
+ "learning_rate": 0.0006,
+ "loss": 6.612556457519531,
+ "step": 119
+ },
+ {
+ "epoch": 1.671035386631717,
+ "grad_norm": 0.5001237988471985,
+ "learning_rate": 0.0006,
+ "loss": 6.577266693115234,
+ "step": 120
+ },
+ {
+ "epoch": 1.6850152905198776,
+ "grad_norm": 0.5328938364982605,
+ "learning_rate": 0.0006,
+ "loss": 6.59553337097168,
+ "step": 121
+ },
+ {
+ "epoch": 1.6989951944080386,
+ "grad_norm": 0.3568951189517975,
+ "learning_rate": 0.0006,
+ "loss": 6.602717399597168,
+ "step": 122
+ },
+ {
+ "epoch": 1.7129750982961993,
+ "grad_norm": 0.4017309546470642,
+ "learning_rate": 0.0006,
+ "loss": 6.589657783508301,
+ "step": 123
+ },
+ {
+ "epoch": 1.72695500218436,
+ "grad_norm": 0.21432629227638245,
+ "learning_rate": 0.0006,
+ "loss": 6.586555480957031,
+ "step": 124
+ },
+ {
+ "epoch": 1.7409349060725208,
+ "grad_norm": 0.21038052439689636,
+ "learning_rate": 0.0006,
+ "loss": 6.576569557189941,
+ "step": 125
+ },
+ {
+ "epoch": 1.7549148099606815,
+ "grad_norm": 0.23074904084205627,
+ "learning_rate": 0.0006,
+ "loss": 6.5880632400512695,
+ "step": 126
+ },
+ {
+ "epoch": 1.7688947138488422,
+ "grad_norm": 0.42963048815727234,
+ "learning_rate": 0.0006,
+ "loss": 6.603862762451172,
+ "step": 127
+ },
+ {
+ "epoch": 1.782874617737003,
+ "grad_norm": 0.361331045627594,
+ "learning_rate": 0.0006,
+ "loss": 6.579834938049316,
+ "step": 128
+ },
+ {
+ "epoch": 1.7968545216251637,
+ "grad_norm": 0.4951060712337494,
+ "learning_rate": 0.0006,
+ "loss": 6.570443630218506,
+ "step": 129
+ },
+ {
+ "epoch": 1.8108344255133246,
+ "grad_norm": 0.2258434295654297,
+ "learning_rate": 0.0006,
+ "loss": 6.5664777755737305,
+ "step": 130
+ },
+ {
+ "epoch": 1.8248143294014854,
+ "grad_norm": 0.2922155559062958,
+ "learning_rate": 0.0006,
+ "loss": 6.561326503753662,
+ "step": 131
+ },
+ {
+ "epoch": 1.838794233289646,
+ "grad_norm": 0.19068220257759094,
+ "learning_rate": 0.0006,
+ "loss": 6.528727054595947,
+ "step": 132
+ },
+ {
+ "epoch": 1.852774137177807,
+ "grad_norm": 0.2122010439634323,
+ "learning_rate": 0.0006,
+ "loss": 6.535636901855469,
+ "step": 133
+ },
+ {
+ "epoch": 1.8667540410659678,
+ "grad_norm": 0.25760164856910706,
+ "learning_rate": 0.0006,
+ "loss": 6.530498504638672,
+ "step": 134
+ },
+ {
+ "epoch": 1.8807339449541285,
+ "grad_norm": 0.1761016845703125,
+ "learning_rate": 0.0006,
+ "loss": 6.514466285705566,
+ "step": 135
+ },
+ {
+ "epoch": 1.8947138488422892,
+ "grad_norm": 0.2250051498413086,
+ "learning_rate": 0.0006,
+ "loss": 6.521268844604492,
+ "step": 136
+ },
+ {
+ "epoch": 1.90869375273045,
+ "grad_norm": 0.34458497166633606,
+ "learning_rate": 0.0006,
+ "loss": 6.512831687927246,
+ "step": 137
+ },
+ {
+ "epoch": 1.9226736566186107,
+ "grad_norm": 0.3468617796897888,
+ "learning_rate": 0.0006,
+ "loss": 6.515641689300537,
+ "step": 138
+ },
+ {
+ "epoch": 1.9366535605067714,
+ "grad_norm": 0.5051495432853699,
+ "learning_rate": 0.0006,
+ "loss": 6.5147905349731445,
+ "step": 139
+ },
+ {
+ "epoch": 1.9506334643949321,
+ "grad_norm": 0.7106727361679077,
+ "learning_rate": 0.0006,
+ "loss": 6.519277572631836,
+ "step": 140
+ },
+ {
+ "epoch": 1.964613368283093,
+ "grad_norm": 0.8881394267082214,
+ "learning_rate": 0.0006,
+ "loss": 6.526865482330322,
+ "step": 141
+ },
+ {
+ "epoch": 1.9785932721712538,
+ "grad_norm": 0.5552834272384644,
+ "learning_rate": 0.0006,
+ "loss": 6.469970226287842,
+ "step": 142
+ },
+ {
+ "epoch": 1.9925731760594148,
+ "grad_norm": 0.6903126835823059,
+ "learning_rate": 0.0006,
+ "loss": 6.476300239562988,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.47679027915000916,
+ "learning_rate": 0.0006,
+ "loss": 6.463827133178711,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 7.388528823852539,
+ "eval_runtime": 44.2519,
+ "eval_samples_per_second": 55.184,
+ "eval_steps_per_second": 3.457,
+ "step": 144
+ },
+ {
+ "epoch": 2.0139799038881607,
+ "grad_norm": 0.4719221293926239,
+ "learning_rate": 0.0006,
+ "loss": 6.480956077575684,
+ "step": 145
+ },
+ {
+ "epoch": 2.0279598077763215,
+ "grad_norm": 0.41137924790382385,
+ "learning_rate": 0.0006,
+ "loss": 6.449707984924316,
+ "step": 146
+ },
+ {
+ "epoch": 2.041939711664482,
+ "grad_norm": 0.4237765371799469,
+ "learning_rate": 0.0006,
+ "loss": 6.467435836791992,
+ "step": 147
+ },
+ {
+ "epoch": 2.055919615552643,
+ "grad_norm": 0.44081810116767883,
+ "learning_rate": 0.0006,
+ "loss": 6.436868667602539,
+ "step": 148
+ },
+ {
+ "epoch": 2.0698995194408036,
+ "grad_norm": 0.4163798391819,
+ "learning_rate": 0.0006,
+ "loss": 6.4642014503479,
+ "step": 149
+ },
+ {
+ "epoch": 2.083879423328965,
+ "grad_norm": 0.3831583261489868,
+ "learning_rate": 0.0006,
+ "loss": 6.454092025756836,
+ "step": 150
+ },
+ {
+ "epoch": 2.0978593272171255,
+ "grad_norm": 0.37721413373947144,
+ "learning_rate": 0.0006,
+ "loss": 6.426377296447754,
+ "step": 151
+ },
+ {
+ "epoch": 2.1118392311052863,
+ "grad_norm": 0.3323550224304199,
+ "learning_rate": 0.0006,
+ "loss": 6.421375274658203,
+ "step": 152
+ },
+ {
+ "epoch": 2.125819134993447,
+ "grad_norm": 0.47739624977111816,
+ "learning_rate": 0.0006,
+ "loss": 6.412004470825195,
+ "step": 153
+ },
+ {
+ "epoch": 2.1397990388816077,
+ "grad_norm": 0.8530274629592896,
+ "learning_rate": 0.0006,
+ "loss": 6.410468578338623,
+ "step": 154
+ },
+ {
+ "epoch": 2.1537789427697684,
+ "grad_norm": 0.6420364379882812,
+ "learning_rate": 0.0006,
+ "loss": 6.413525581359863,
+ "step": 155
+ },
+ {
+ "epoch": 2.167758846657929,
+ "grad_norm": 0.5005049109458923,
+ "learning_rate": 0.0006,
+ "loss": 6.401463508605957,
+ "step": 156
+ },
+ {
+ "epoch": 2.18173875054609,
+ "grad_norm": 0.3614683449268341,
+ "learning_rate": 0.0006,
+ "loss": 6.390063285827637,
+ "step": 157
+ },
+ {
+ "epoch": 2.1957186544342506,
+ "grad_norm": 0.595215380191803,
+ "learning_rate": 0.0006,
+ "loss": 6.369806289672852,
+ "step": 158
+ },
+ {
+ "epoch": 2.2096985583224114,
+ "grad_norm": 0.5700321793556213,
+ "learning_rate": 0.0006,
+ "loss": 6.368378639221191,
+ "step": 159
+ },
+ {
+ "epoch": 2.2236784622105725,
+ "grad_norm": 0.36273983120918274,
+ "learning_rate": 0.0006,
+ "loss": 6.366860389709473,
+ "step": 160
+ },
+ {
+ "epoch": 2.2376583660987333,
+ "grad_norm": 0.2850998342037201,
+ "learning_rate": 0.0006,
+ "loss": 6.352144718170166,
+ "step": 161
+ },
+ {
+ "epoch": 2.251638269986894,
+ "grad_norm": 0.38558584451675415,
+ "learning_rate": 0.0006,
+ "loss": 6.375765800476074,
+ "step": 162
+ },
+ {
+ "epoch": 2.2656181738750547,
+ "grad_norm": 0.34809231758117676,
+ "learning_rate": 0.0006,
+ "loss": 6.350445747375488,
+ "step": 163
+ },
+ {
+ "epoch": 2.2795980777632154,
+ "grad_norm": 0.5211818814277649,
+ "learning_rate": 0.0006,
+ "loss": 6.354585647583008,
+ "step": 164
+ },
+ {
+ "epoch": 2.293577981651376,
+ "grad_norm": 1.0809133052825928,
+ "learning_rate": 0.0006,
+ "loss": 6.3752007484436035,
+ "step": 165
+ },
+ {
+ "epoch": 2.307557885539537,
+ "grad_norm": 0.8293641209602356,
+ "learning_rate": 0.0006,
+ "loss": 6.35113525390625,
+ "step": 166
+ },
+ {
+ "epoch": 2.3215377894276976,
+ "grad_norm": 0.3428577780723572,
+ "learning_rate": 0.0006,
+ "loss": 6.334470748901367,
+ "step": 167
+ },
+ {
+ "epoch": 2.3355176933158583,
+ "grad_norm": 0.7587600946426392,
+ "learning_rate": 0.0006,
+ "loss": 6.353979587554932,
+ "step": 168
+ },
+ {
+ "epoch": 2.349497597204019,
+ "grad_norm": 0.4227249026298523,
+ "learning_rate": 0.0006,
+ "loss": 6.34018611907959,
+ "step": 169
+ },
+ {
+ "epoch": 2.36347750109218,
+ "grad_norm": 0.4226846694946289,
+ "learning_rate": 0.0006,
+ "loss": 6.290019989013672,
+ "step": 170
+ },
+ {
+ "epoch": 2.3774574049803405,
+ "grad_norm": 0.38412365317344666,
+ "learning_rate": 0.0006,
+ "loss": 6.309510231018066,
+ "step": 171
+ },
+ {
+ "epoch": 2.3914373088685017,
+ "grad_norm": 0.45698508620262146,
+ "learning_rate": 0.0006,
+ "loss": 6.283290863037109,
+ "step": 172
+ },
+ {
+ "epoch": 2.4054172127566624,
+ "grad_norm": 0.7575915455818176,
+ "learning_rate": 0.0006,
+ "loss": 6.306073188781738,
+ "step": 173
+ },
+ {
+ "epoch": 2.419397116644823,
+ "grad_norm": 0.695123553276062,
+ "learning_rate": 0.0006,
+ "loss": 6.308144569396973,
+ "step": 174
+ },
+ {
+ "epoch": 2.433377020532984,
+ "grad_norm": 0.5035743117332458,
+ "learning_rate": 0.0006,
+ "loss": 6.282073974609375,
+ "step": 175
+ },
+ {
+ "epoch": 2.4473569244211446,
+ "grad_norm": 0.3158020079135895,
+ "learning_rate": 0.0006,
+ "loss": 6.282169342041016,
+ "step": 176
+ },
+ {
+ "epoch": 2.4613368283093053,
+ "grad_norm": 0.4829689860343933,
+ "learning_rate": 0.0006,
+ "loss": 6.264578819274902,
+ "step": 177
+ },
+ {
+ "epoch": 2.475316732197466,
+ "grad_norm": 0.3992770314216614,
+ "learning_rate": 0.0006,
+ "loss": 6.228628158569336,
+ "step": 178
+ },
+ {
+ "epoch": 2.489296636085627,
+ "grad_norm": 0.40887606143951416,
+ "learning_rate": 0.0006,
+ "loss": 6.230792045593262,
+ "step": 179
+ },
+ {
+ "epoch": 2.5032765399737875,
+ "grad_norm": 0.3540310263633728,
+ "learning_rate": 0.0006,
+ "loss": 6.222573280334473,
+ "step": 180
+ },
+ {
+ "epoch": 2.5172564438619487,
+ "grad_norm": 0.496219664812088,
+ "learning_rate": 0.0006,
+ "loss": 6.212109565734863,
+ "step": 181
+ },
+ {
+ "epoch": 2.5312363477501094,
+ "grad_norm": 0.435173898935318,
+ "learning_rate": 0.0006,
+ "loss": 6.221210479736328,
+ "step": 182
+ },
+ {
+ "epoch": 2.54521625163827,
+ "grad_norm": 0.5364007949829102,
+ "learning_rate": 0.0006,
+ "loss": 6.217929840087891,
+ "step": 183
+ },
+ {
+ "epoch": 2.559196155526431,
+ "grad_norm": 0.5946390628814697,
+ "learning_rate": 0.0006,
+ "loss": 6.189267158508301,
+ "step": 184
+ },
+ {
+ "epoch": 2.5731760594145916,
+ "grad_norm": 0.41621312499046326,
+ "learning_rate": 0.0006,
+ "loss": 6.182415008544922,
+ "step": 185
+ },
+ {
+ "epoch": 2.5871559633027523,
+ "grad_norm": 0.5442072749137878,
+ "learning_rate": 0.0006,
+ "loss": 6.150757789611816,
+ "step": 186
+ },
+ {
+ "epoch": 2.601135867190913,
+ "grad_norm": 0.727843165397644,
+ "learning_rate": 0.0006,
+ "loss": 6.146082878112793,
+ "step": 187
+ },
+ {
+ "epoch": 2.615115771079074,
+ "grad_norm": 0.8898891806602478,
+ "learning_rate": 0.0006,
+ "loss": 6.190483093261719,
+ "step": 188
+ },
+ {
+ "epoch": 2.6290956749672345,
+ "grad_norm": 0.5173947215080261,
+ "learning_rate": 0.0006,
+ "loss": 6.151251792907715,
+ "step": 189
+ },
+ {
+ "epoch": 2.6430755788553952,
+ "grad_norm": 0.6476729512214661,
+ "learning_rate": 0.0006,
+ "loss": 6.154841423034668,
+ "step": 190
+ },
+ {
+ "epoch": 2.657055482743556,
+ "grad_norm": 0.3538810908794403,
+ "learning_rate": 0.0006,
+ "loss": 6.103879928588867,
+ "step": 191
+ },
+ {
+ "epoch": 2.6710353866317167,
+ "grad_norm": 0.4773508310317993,
+ "learning_rate": 0.0006,
+ "loss": 6.118101119995117,
+ "step": 192
+ },
+ {
+ "epoch": 2.6850152905198774,
+ "grad_norm": 0.29213786125183105,
+ "learning_rate": 0.0006,
+ "loss": 6.108916282653809,
+ "step": 193
+ },
+ {
+ "epoch": 2.6989951944080386,
+ "grad_norm": 0.40800607204437256,
+ "learning_rate": 0.0006,
+ "loss": 6.113438606262207,
+ "step": 194
+ },
+ {
+ "epoch": 2.7129750982961993,
+ "grad_norm": 0.31157299876213074,
+ "learning_rate": 0.0006,
+ "loss": 6.101809501647949,
+ "step": 195
+ },
+ {
+ "epoch": 2.72695500218436,
+ "grad_norm": 0.28660309314727783,
+ "learning_rate": 0.0006,
+ "loss": 6.075886249542236,
+ "step": 196
+ },
+ {
+ "epoch": 2.7409349060725208,
+ "grad_norm": 0.3810449540615082,
+ "learning_rate": 0.0006,
+ "loss": 6.053257942199707,
+ "step": 197
+ },
+ {
+ "epoch": 2.7549148099606815,
+ "grad_norm": 0.21741755306720734,
+ "learning_rate": 0.0006,
+ "loss": 6.013825416564941,
+ "step": 198
+ },
+ {
+ "epoch": 2.7688947138488422,
+ "grad_norm": 0.2777678966522217,
+ "learning_rate": 0.0006,
+ "loss": 6.054204940795898,
+ "step": 199
+ },
+ {
+ "epoch": 2.782874617737003,
+ "grad_norm": 0.28503066301345825,
+ "learning_rate": 0.0006,
+ "loss": 6.035628318786621,
+ "step": 200
+ },
+ {
+ "epoch": 2.7968545216251637,
+ "grad_norm": 0.41954755783081055,
+ "learning_rate": 0.0006,
+ "loss": 6.028354644775391,
+ "step": 201
+ },
+ {
+ "epoch": 2.810834425513325,
+ "grad_norm": 0.8785563111305237,
+ "learning_rate": 0.0006,
+ "loss": 6.055761337280273,
+ "step": 202
+ },
+ {
+ "epoch": 2.8248143294014856,
+ "grad_norm": 1.7459558248519897,
+ "learning_rate": 0.0006,
+ "loss": 6.11599588394165,
+ "step": 203
+ },
+ {
+ "epoch": 2.8387942332896463,
+ "grad_norm": 0.5725523233413696,
+ "learning_rate": 0.0006,
+ "loss": 6.024280548095703,
+ "step": 204
+ },
+ {
+ "epoch": 2.852774137177807,
+ "grad_norm": 0.5913150906562805,
+ "learning_rate": 0.0006,
+ "loss": 6.050281524658203,
+ "step": 205
+ },
+ {
+ "epoch": 2.8667540410659678,
+ "grad_norm": 0.5929384827613831,
+ "learning_rate": 0.0006,
+ "loss": 6.041121482849121,
+ "step": 206
+ },
+ {
+ "epoch": 2.8807339449541285,
+ "grad_norm": 0.5650724768638611,
+ "learning_rate": 0.0006,
+ "loss": 6.004258155822754,
+ "step": 207
+ },
+ {
+ "epoch": 2.894713848842289,
+ "grad_norm": 0.3420545756816864,
+ "learning_rate": 0.0006,
+ "loss": 5.983296871185303,
+ "step": 208
+ },
+ {
+ "epoch": 2.90869375273045,
+ "grad_norm": 0.2960914075374603,
+ "learning_rate": 0.0006,
+ "loss": 5.988578796386719,
+ "step": 209
+ },
+ {
+ "epoch": 2.9226736566186107,
+ "grad_norm": 0.3252662718296051,
+ "learning_rate": 0.0006,
+ "loss": 5.99103307723999,
+ "step": 210
+ },
+ {
+ "epoch": 2.9366535605067714,
+ "grad_norm": 0.4851132929325104,
+ "learning_rate": 0.0006,
+ "loss": 6.0028977394104,
+ "step": 211
+ },
+ {
+ "epoch": 2.950633464394932,
+ "grad_norm": 0.5639995336532593,
+ "learning_rate": 0.0006,
+ "loss": 5.965080738067627,
+ "step": 212
+ },
+ {
+ "epoch": 2.964613368283093,
+ "grad_norm": 0.4514601230621338,
+ "learning_rate": 0.0006,
+ "loss": 5.961450576782227,
+ "step": 213
+ },
+ {
+ "epoch": 2.9785932721712536,
+ "grad_norm": 0.5397921800613403,
+ "learning_rate": 0.0006,
+ "loss": 5.965290546417236,
+ "step": 214
+ },
+ {
+ "epoch": 2.9925731760594148,
+ "grad_norm": 0.4735587239265442,
+ "learning_rate": 0.0006,
+ "loss": 5.952754497528076,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.32061058282852173,
+ "learning_rate": 0.0006,
+ "loss": 5.961667060852051,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 6.8517303466796875,
+ "eval_runtime": 44.03,
+ "eval_samples_per_second": 55.462,
+ "eval_steps_per_second": 3.475,
+ "step": 216
+ },
+ {
+ "epoch": 3.0139799038881607,
+ "grad_norm": 0.3537784814834595,
+ "learning_rate": 0.0006,
+ "loss": 5.928008079528809,
+ "step": 217
+ },
+ {
+ "epoch": 3.0279598077763215,
+ "grad_norm": 0.40713080763816833,
+ "learning_rate": 0.0006,
+ "loss": 5.9150800704956055,
+ "step": 218
+ },
+ {
+ "epoch": 3.041939711664482,
+ "grad_norm": 0.2548826336860657,
+ "learning_rate": 0.0006,
+ "loss": 5.919757843017578,
+ "step": 219
+ },
+ {
+ "epoch": 3.055919615552643,
+ "grad_norm": 0.2818543016910553,
+ "learning_rate": 0.0006,
+ "loss": 5.913688659667969,
+ "step": 220
+ },
+ {
+ "epoch": 3.0698995194408036,
+ "grad_norm": 0.4196692705154419,
+ "learning_rate": 0.0006,
+ "loss": 5.8675336837768555,
+ "step": 221
+ },
+ {
+ "epoch": 3.083879423328965,
+ "grad_norm": 0.35272282361984253,
+ "learning_rate": 0.0006,
+ "loss": 5.878874778747559,
+ "step": 222
+ },
+ {
+ "epoch": 3.0978593272171255,
+ "grad_norm": 0.3254282772541046,
+ "learning_rate": 0.0006,
+ "loss": 5.8823041915893555,
+ "step": 223
+ },
+ {
+ "epoch": 3.1118392311052863,
+ "grad_norm": 0.4052561819553375,
+ "learning_rate": 0.0006,
+ "loss": 5.867744445800781,
+ "step": 224
+ },
+ {
+ "epoch": 3.125819134993447,
+ "grad_norm": 0.31246256828308105,
+ "learning_rate": 0.0006,
+ "loss": 5.886094093322754,
+ "step": 225
+ },
+ {
+ "epoch": 3.1397990388816077,
+ "grad_norm": 0.3479118347167969,
+ "learning_rate": 0.0006,
+ "loss": 5.850762367248535,
+ "step": 226
+ },
+ {
+ "epoch": 3.1537789427697684,
+ "grad_norm": 0.5037238597869873,
+ "learning_rate": 0.0006,
+ "loss": 5.844175815582275,
+ "step": 227
+ },
+ {
+ "epoch": 3.167758846657929,
+ "grad_norm": 0.6271815896034241,
+ "learning_rate": 0.0006,
+ "loss": 5.871790885925293,
+ "step": 228
+ },
+ {
+ "epoch": 3.18173875054609,
+ "grad_norm": 0.43838298320770264,
+ "learning_rate": 0.0006,
+ "loss": 5.844024658203125,
+ "step": 229
+ },
+ {
+ "epoch": 3.1957186544342506,
+ "grad_norm": 0.4755159616470337,
+ "learning_rate": 0.0006,
+ "loss": 5.846892356872559,
+ "step": 230
+ },
+ {
+ "epoch": 3.2096985583224114,
+ "grad_norm": 0.5229779481887817,
+ "learning_rate": 0.0006,
+ "loss": 5.827000617980957,
+ "step": 231
+ },
+ {
+ "epoch": 3.2236784622105725,
+ "grad_norm": 0.8264499306678772,
+ "learning_rate": 0.0006,
+ "loss": 5.867050647735596,
+ "step": 232
+ },
+ {
+ "epoch": 3.2376583660987333,
+ "grad_norm": 1.0607538223266602,
+ "learning_rate": 0.0006,
+ "loss": 5.877876281738281,
+ "step": 233
+ },
+ {
+ "epoch": 3.251638269986894,
+ "grad_norm": 0.7656505703926086,
+ "learning_rate": 0.0006,
+ "loss": 5.86760139465332,
+ "step": 234
+ },
+ {
+ "epoch": 3.2656181738750547,
+ "grad_norm": 0.7940183281898499,
+ "learning_rate": 0.0006,
+ "loss": 5.861355781555176,
+ "step": 235
+ },
+ {
+ "epoch": 3.2795980777632154,
+ "grad_norm": 0.45171424746513367,
+ "learning_rate": 0.0006,
+ "loss": 5.799808502197266,
+ "step": 236
+ },
+ {
+ "epoch": 3.293577981651376,
+ "grad_norm": 0.6174989342689514,
+ "learning_rate": 0.0006,
+ "loss": 5.8585920333862305,
+ "step": 237
+ },
+ {
+ "epoch": 3.307557885539537,
+ "grad_norm": 0.5341290831565857,
+ "learning_rate": 0.0006,
+ "loss": 5.8116044998168945,
+ "step": 238
+ },
+ {
+ "epoch": 3.3215377894276976,
+ "grad_norm": 0.3938343822956085,
+ "learning_rate": 0.0006,
+ "loss": 5.83797550201416,
+ "step": 239
+ },
+ {
+ "epoch": 3.3355176933158583,
+ "grad_norm": 0.5106972455978394,
+ "learning_rate": 0.0006,
+ "loss": 5.832303047180176,
+ "step": 240
+ },
+ {
+ "epoch": 3.349497597204019,
+ "grad_norm": 0.3791428506374359,
+ "learning_rate": 0.0006,
+ "loss": 5.794981956481934,
+ "step": 241
+ },
+ {
+ "epoch": 3.36347750109218,
+ "grad_norm": 0.42287978529930115,
+ "learning_rate": 0.0006,
+ "loss": 5.788144111633301,
+ "step": 242
+ },
+ {
+ "epoch": 3.3774574049803405,
+ "grad_norm": 0.27334436774253845,
+ "learning_rate": 0.0006,
+ "loss": 5.771070957183838,
+ "step": 243
+ },
+ {
+ "epoch": 3.3914373088685017,
+ "grad_norm": 0.2470470368862152,
+ "learning_rate": 0.0006,
+ "loss": 5.755998611450195,
+ "step": 244
+ },
+ {
+ "epoch": 3.4054172127566624,
+ "grad_norm": 0.3043915033340454,
+ "learning_rate": 0.0006,
+ "loss": 5.779492378234863,
+ "step": 245
+ },
+ {
+ "epoch": 3.419397116644823,
+ "grad_norm": 0.2960112988948822,
+ "learning_rate": 0.0006,
+ "loss": 5.750328063964844,
+ "step": 246
+ },
+ {
+ "epoch": 3.433377020532984,
+ "grad_norm": 0.3046723008155823,
+ "learning_rate": 0.0006,
+ "loss": 5.776517868041992,
+ "step": 247
+ },
+ {
+ "epoch": 3.4473569244211446,
+ "grad_norm": 0.22461780905723572,
+ "learning_rate": 0.0006,
+ "loss": 5.760989665985107,
+ "step": 248
+ },
+ {
+ "epoch": 3.4613368283093053,
+ "grad_norm": 0.24625757336616516,
+ "learning_rate": 0.0006,
+ "loss": 5.759706497192383,
+ "step": 249
+ },
+ {
+ "epoch": 3.475316732197466,
+ "grad_norm": 0.18207131326198578,
+ "learning_rate": 0.0006,
+ "loss": 5.747040748596191,
+ "step": 250
+ },
+ {
+ "epoch": 3.489296636085627,
+ "grad_norm": 0.16473834216594696,
+ "learning_rate": 0.0006,
+ "loss": 5.761577606201172,
+ "step": 251
+ },
+ {
+ "epoch": 3.5032765399737875,
+ "grad_norm": 0.25155773758888245,
+ "learning_rate": 0.0006,
+ "loss": 5.696502208709717,
+ "step": 252
+ },
+ {
+ "epoch": 3.5172564438619487,
+ "grad_norm": 0.24115674197673798,
+ "learning_rate": 0.0006,
+ "loss": 5.676957130432129,
+ "step": 253
+ },
+ {
+ "epoch": 3.5312363477501094,
+ "grad_norm": 0.40912172198295593,
+ "learning_rate": 0.0006,
+ "loss": 5.695090293884277,
+ "step": 254
+ },
+ {
+ "epoch": 3.54521625163827,
+ "grad_norm": 0.6727662682533264,
+ "learning_rate": 0.0006,
+ "loss": 5.722194671630859,
+ "step": 255
+ },
+ {
+ "epoch": 3.559196155526431,
+ "grad_norm": 0.8450719118118286,
+ "learning_rate": 0.0006,
+ "loss": 5.764680862426758,
+ "step": 256
+ },
+ {
+ "epoch": 3.5731760594145916,
+ "grad_norm": 0.9916183352470398,
+ "learning_rate": 0.0006,
+ "loss": 5.754530429840088,
+ "step": 257
+ },
+ {
+ "epoch": 3.5871559633027523,
+ "grad_norm": 1.041922688484192,
+ "learning_rate": 0.0006,
+ "loss": 5.781468391418457,
+ "step": 258
+ },
+ {
+ "epoch": 3.601135867190913,
+ "grad_norm": 0.972039520740509,
+ "learning_rate": 0.0006,
+ "loss": 5.760323524475098,
+ "step": 259
+ },
+ {
+ "epoch": 3.615115771079074,
+ "grad_norm": 0.6802462935447693,
+ "learning_rate": 0.0006,
+ "loss": 5.750064849853516,
+ "step": 260
+ },
+ {
+ "epoch": 3.6290956749672345,
+ "grad_norm": 0.48553529381752014,
+ "learning_rate": 0.0006,
+ "loss": 5.7464094161987305,
+ "step": 261
+ },
+ {
+ "epoch": 3.6430755788553952,
+ "grad_norm": 0.4066704213619232,
+ "learning_rate": 0.0006,
+ "loss": 5.719789505004883,
+ "step": 262
+ },
+ {
+ "epoch": 3.657055482743556,
+ "grad_norm": 0.3300860822200775,
+ "learning_rate": 0.0006,
+ "loss": 5.719920635223389,
+ "step": 263
+ },
+ {
+ "epoch": 3.6710353866317167,
+ "grad_norm": 0.3286679983139038,
+ "learning_rate": 0.0006,
+ "loss": 5.723465919494629,
+ "step": 264
+ },
+ {
+ "epoch": 3.6850152905198774,
+ "grad_norm": 0.27653390169143677,
+ "learning_rate": 0.0006,
+ "loss": 5.713820457458496,
+ "step": 265
+ },
+ {
+ "epoch": 3.6989951944080386,
+ "grad_norm": 0.26138055324554443,
+ "learning_rate": 0.0006,
+ "loss": 5.683221817016602,
+ "step": 266
+ },
+ {
+ "epoch": 3.7129750982961993,
+ "grad_norm": 0.23706290125846863,
+ "learning_rate": 0.0006,
+ "loss": 5.6896867752075195,
+ "step": 267
+ },
+ {
+ "epoch": 3.72695500218436,
+ "grad_norm": 0.2751729190349579,
+ "learning_rate": 0.0006,
+ "loss": 5.710301876068115,
+ "step": 268
+ },
+ {
+ "epoch": 3.7409349060725208,
+ "grad_norm": 0.255393385887146,
+ "learning_rate": 0.0006,
+ "loss": 5.687932968139648,
+ "step": 269
+ },
+ {
+ "epoch": 3.7549148099606815,
+ "grad_norm": 0.21453925967216492,
+ "learning_rate": 0.0006,
+ "loss": 5.68234395980835,
+ "step": 270
+ },
+ {
+ "epoch": 3.7688947138488422,
+ "grad_norm": 0.21771012246608734,
+ "learning_rate": 0.0006,
+ "loss": 5.683980464935303,
+ "step": 271
+ },
+ {
+ "epoch": 3.782874617737003,
+ "grad_norm": 0.1884593963623047,
+ "learning_rate": 0.0006,
+ "loss": 5.662779808044434,
+ "step": 272
+ },
+ {
+ "epoch": 3.7968545216251637,
+ "grad_norm": 0.20429612696170807,
+ "learning_rate": 0.0006,
+ "loss": 5.650941848754883,
+ "step": 273
+ },
+ {
+ "epoch": 3.810834425513325,
+ "grad_norm": 0.22586797177791595,
+ "learning_rate": 0.0006,
+ "loss": 5.639376640319824,
+ "step": 274
+ },
+ {
+ "epoch": 3.8248143294014856,
+ "grad_norm": 0.19651705026626587,
+ "learning_rate": 0.0006,
+ "loss": 5.612030029296875,
+ "step": 275
+ },
+ {
+ "epoch": 3.8387942332896463,
+ "grad_norm": 0.2125253826379776,
+ "learning_rate": 0.0006,
+ "loss": 5.622836589813232,
+ "step": 276
+ },
+ {
+ "epoch": 3.852774137177807,
+ "grad_norm": 0.2905234694480896,
+ "learning_rate": 0.0006,
+ "loss": 5.624594688415527,
+ "step": 277
+ },
+ {
+ "epoch": 3.8667540410659678,
+ "grad_norm": 0.2718426585197449,
+ "learning_rate": 0.0006,
+ "loss": 5.619892120361328,
+ "step": 278
+ },
+ {
+ "epoch": 3.8807339449541285,
+ "grad_norm": 0.26481127738952637,
+ "learning_rate": 0.0006,
+ "loss": 5.612496852874756,
+ "step": 279
+ },
+ {
+ "epoch": 3.894713848842289,
+ "grad_norm": 0.2876453399658203,
+ "learning_rate": 0.0006,
+ "loss": 5.59157133102417,
+ "step": 280
+ },
+ {
+ "epoch": 3.90869375273045,
+ "grad_norm": 0.22829554975032806,
+ "learning_rate": 0.0006,
+ "loss": 5.5884199142456055,
+ "step": 281
+ },
+ {
+ "epoch": 3.9226736566186107,
+ "grad_norm": 0.22852344810962677,
+ "learning_rate": 0.0006,
+ "loss": 5.618719100952148,
+ "step": 282
+ },
+ {
+ "epoch": 3.9366535605067714,
+ "grad_norm": 0.37366563081741333,
+ "learning_rate": 0.0006,
+ "loss": 5.611738204956055,
+ "step": 283
+ },
+ {
+ "epoch": 3.950633464394932,
+ "grad_norm": 0.5650382041931152,
+ "learning_rate": 0.0006,
+ "loss": 5.606371879577637,
+ "step": 284
+ },
+ {
+ "epoch": 3.964613368283093,
+ "grad_norm": 0.5960066914558411,
+ "learning_rate": 0.0006,
+ "loss": 5.595022201538086,
+ "step": 285
+ },
+ {
+ "epoch": 3.9785932721712536,
+ "grad_norm": 0.3561663031578064,
+ "learning_rate": 0.0006,
+ "loss": 5.581035614013672,
+ "step": 286
+ },
+ {
+ "epoch": 3.9925731760594148,
+ "grad_norm": 0.44699913263320923,
+ "learning_rate": 0.0006,
+ "loss": 5.568033218383789,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.42783990502357483,
+ "learning_rate": 0.0006,
+ "loss": 5.571993827819824,
+ "step": 288
+ },
+ {
+ "epoch": 4.0,
+ "eval_loss": 6.349016189575195,
+ "eval_runtime": 44.3326,
+ "eval_samples_per_second": 55.084,
+ "eval_steps_per_second": 3.451,
+ "step": 288
+ },
+ {
+ "epoch": 4.013979903888161,
+ "grad_norm": 0.41305896639823914,
+ "learning_rate": 0.0006,
+ "loss": 5.562954902648926,
+ "step": 289
+ },
+ {
+ "epoch": 4.0279598077763215,
+ "grad_norm": 0.3966459035873413,
+ "learning_rate": 0.0006,
+ "loss": 5.5671916007995605,
+ "step": 290
+ },
+ {
+ "epoch": 4.041939711664482,
+ "grad_norm": 0.4846104085445404,
+ "learning_rate": 0.0006,
+ "loss": 5.548027038574219,
+ "step": 291
+ },
+ {
+ "epoch": 4.055919615552643,
+ "grad_norm": 0.5916333794593811,
+ "learning_rate": 0.0006,
+ "loss": 5.5900068283081055,
+ "step": 292
+ },
+ {
+ "epoch": 4.069899519440804,
+ "grad_norm": 0.5973889231681824,
+ "learning_rate": 0.0006,
+ "loss": 5.537594795227051,
+ "step": 293
+ },
+ {
+ "epoch": 4.083879423328964,
+ "grad_norm": 0.4190494418144226,
+ "learning_rate": 0.0006,
+ "loss": 5.534749984741211,
+ "step": 294
+ },
+ {
+ "epoch": 4.097859327217125,
+ "grad_norm": 0.5956901907920837,
+ "learning_rate": 0.0006,
+ "loss": 5.554540634155273,
+ "step": 295
+ },
+ {
+ "epoch": 4.111839231105286,
+ "grad_norm": 0.8257920742034912,
+ "learning_rate": 0.0006,
+ "loss": 5.5728068351745605,
+ "step": 296
+ },
+ {
+ "epoch": 4.1258191349934465,
+ "grad_norm": 0.7241750955581665,
+ "learning_rate": 0.0006,
+ "loss": 5.5643815994262695,
+ "step": 297
+ },
+ {
+ "epoch": 4.139799038881607,
+ "grad_norm": 0.45730507373809814,
+ "learning_rate": 0.0006,
+ "loss": 5.554225921630859,
+ "step": 298
+ },
+ {
+ "epoch": 4.153778942769769,
+ "grad_norm": 0.5166977643966675,
+ "learning_rate": 0.0006,
+ "loss": 5.540790557861328,
+ "step": 299
+ },
+ {
+ "epoch": 4.16775884665793,
+ "grad_norm": 0.433237761259079,
+ "learning_rate": 0.0006,
+ "loss": 5.536884784698486,
+ "step": 300
+ },
+ {
+ "epoch": 4.18173875054609,
+ "grad_norm": 0.3369830250740051,
+ "learning_rate": 0.0006,
+ "loss": 5.532837867736816,
+ "step": 301
+ },
+ {
+ "epoch": 4.195718654434251,
+ "grad_norm": 0.33091458678245544,
+ "learning_rate": 0.0006,
+ "loss": 5.547643661499023,
+ "step": 302
+ },
+ {
+ "epoch": 4.209698558322412,
+ "grad_norm": 0.36462724208831787,
+ "learning_rate": 0.0006,
+ "loss": 5.525021076202393,
+ "step": 303
+ },
+ {
+ "epoch": 4.2236784622105725,
+ "grad_norm": 0.3342771530151367,
+ "learning_rate": 0.0006,
+ "loss": 5.512082099914551,
+ "step": 304
+ },
+ {
+ "epoch": 4.237658366098733,
+ "grad_norm": 0.26784762740135193,
+ "learning_rate": 0.0006,
+ "loss": 5.488072395324707,
+ "step": 305
+ },
+ {
+ "epoch": 4.251638269986894,
+ "grad_norm": 0.25986987352371216,
+ "learning_rate": 0.0006,
+ "loss": 5.4960455894470215,
+ "step": 306
+ },
+ {
+ "epoch": 4.265618173875055,
+ "grad_norm": 0.24595795571804047,
+ "learning_rate": 0.0006,
+ "loss": 5.513367176055908,
+ "step": 307
+ },
+ {
+ "epoch": 4.279598077763215,
+ "grad_norm": 0.2224857211112976,
+ "learning_rate": 0.0006,
+ "loss": 5.465205192565918,
+ "step": 308
+ },
+ {
+ "epoch": 4.293577981651376,
+ "grad_norm": 0.26799243688583374,
+ "learning_rate": 0.0006,
+ "loss": 5.476632118225098,
+ "step": 309
+ },
+ {
+ "epoch": 4.307557885539537,
+ "grad_norm": 0.20443417131900787,
+ "learning_rate": 0.0006,
+ "loss": 5.442601203918457,
+ "step": 310
+ },
+ {
+ "epoch": 4.321537789427698,
+ "grad_norm": 0.2275059074163437,
+ "learning_rate": 0.0006,
+ "loss": 5.453519344329834,
+ "step": 311
+ },
+ {
+ "epoch": 4.335517693315858,
+ "grad_norm": 0.2860901951789856,
+ "learning_rate": 0.0006,
+ "loss": 5.439424514770508,
+ "step": 312
+ },
+ {
+ "epoch": 4.349497597204019,
+ "grad_norm": 0.3378142714500427,
+ "learning_rate": 0.0006,
+ "loss": 5.476953983306885,
+ "step": 313
+ },
+ {
+ "epoch": 4.36347750109218,
+ "grad_norm": 0.3487110733985901,
+ "learning_rate": 0.0006,
+ "loss": 5.47003698348999,
+ "step": 314
+ },
+ {
+ "epoch": 4.3774574049803405,
+ "grad_norm": 0.3655227720737457,
+ "learning_rate": 0.0006,
+ "loss": 5.454250812530518,
+ "step": 315
+ },
+ {
+ "epoch": 4.391437308868501,
+ "grad_norm": 0.3754786252975464,
+ "learning_rate": 0.0006,
+ "loss": 5.475249290466309,
+ "step": 316
+ },
+ {
+ "epoch": 4.405417212756662,
+ "grad_norm": 0.42494088411331177,
+ "learning_rate": 0.0006,
+ "loss": 5.4552459716796875,
+ "step": 317
+ },
+ {
+ "epoch": 4.419397116644823,
+ "grad_norm": 0.4914703667163849,
+ "learning_rate": 0.0006,
+ "loss": 5.431845188140869,
+ "step": 318
+ },
+ {
+ "epoch": 4.433377020532983,
+ "grad_norm": 0.42470860481262207,
+ "learning_rate": 0.0006,
+ "loss": 5.454581260681152,
+ "step": 319
+ },
+ {
+ "epoch": 4.447356924421145,
+ "grad_norm": 0.3828011155128479,
+ "learning_rate": 0.0006,
+ "loss": 5.435178756713867,
+ "step": 320
+ },
+ {
+ "epoch": 4.461336828309306,
+ "grad_norm": 0.47256892919540405,
+ "learning_rate": 0.0006,
+ "loss": 5.428861618041992,
+ "step": 321
+ },
+ {
+ "epoch": 4.4753167321974665,
+ "grad_norm": 0.5665146708488464,
+ "learning_rate": 0.0006,
+ "loss": 5.424633026123047,
+ "step": 322
+ },
+ {
+ "epoch": 4.489296636085627,
+ "grad_norm": 0.48146721720695496,
+ "learning_rate": 0.0006,
+ "loss": 5.4577860832214355,
+ "step": 323
+ },
+ {
+ "epoch": 4.503276539973788,
+ "grad_norm": 0.3378535509109497,
+ "learning_rate": 0.0006,
+ "loss": 5.422727108001709,
+ "step": 324
+ },
+ {
+ "epoch": 4.517256443861949,
+ "grad_norm": 0.41981473565101624,
+ "learning_rate": 0.0006,
+ "loss": 5.418993949890137,
+ "step": 325
+ },
+ {
+ "epoch": 4.531236347750109,
+ "grad_norm": 0.39389684796333313,
+ "learning_rate": 0.0006,
+ "loss": 5.41835880279541,
+ "step": 326
+ },
+ {
+ "epoch": 4.54521625163827,
+ "grad_norm": 0.5912176370620728,
+ "learning_rate": 0.0006,
+ "loss": 5.40073299407959,
+ "step": 327
+ },
+ {
+ "epoch": 4.559196155526431,
+ "grad_norm": 0.6877487897872925,
+ "learning_rate": 0.0006,
+ "loss": 5.445301055908203,
+ "step": 328
+ },
+ {
+ "epoch": 4.573176059414592,
+ "grad_norm": 0.580555260181427,
+ "learning_rate": 0.0006,
+ "loss": 5.431069374084473,
+ "step": 329
+ },
+ {
+ "epoch": 4.587155963302752,
+ "grad_norm": 0.5974457859992981,
+ "learning_rate": 0.0006,
+ "loss": 5.422694206237793,
+ "step": 330
+ },
+ {
+ "epoch": 4.601135867190913,
+ "grad_norm": 0.722481906414032,
+ "learning_rate": 0.0006,
+ "loss": 5.447752952575684,
+ "step": 331
+ },
+ {
+ "epoch": 4.615115771079074,
+ "grad_norm": 0.7687886953353882,
+ "learning_rate": 0.0006,
+ "loss": 5.437956809997559,
+ "step": 332
+ },
+ {
+ "epoch": 4.6290956749672345,
+ "grad_norm": 0.7368173003196716,
+ "learning_rate": 0.0006,
+ "loss": 5.4367241859436035,
+ "step": 333
+ },
+ {
+ "epoch": 4.643075578855395,
+ "grad_norm": 0.6650524139404297,
+ "learning_rate": 0.0006,
+ "loss": 5.4288434982299805,
+ "step": 334
+ },
+ {
+ "epoch": 4.657055482743556,
+ "grad_norm": 0.4997614920139313,
+ "learning_rate": 0.0006,
+ "loss": 5.412769317626953,
+ "step": 335
+ },
+ {
+ "epoch": 4.671035386631717,
+ "grad_norm": 0.44208982586860657,
+ "learning_rate": 0.0006,
+ "loss": 5.42405366897583,
+ "step": 336
+ },
+ {
+ "epoch": 4.685015290519877,
+ "grad_norm": 0.39510273933410645,
+ "learning_rate": 0.0006,
+ "loss": 5.402547836303711,
+ "step": 337
+ },
+ {
+ "epoch": 4.698995194408038,
+ "grad_norm": 0.44970476627349854,
+ "learning_rate": 0.0006,
+ "loss": 5.377168655395508,
+ "step": 338
+ },
+ {
+ "epoch": 4.712975098296199,
+ "grad_norm": 0.3902331590652466,
+ "learning_rate": 0.0006,
+ "loss": 5.401622772216797,
+ "step": 339
+ },
+ {
+ "epoch": 4.72695500218436,
+ "grad_norm": 0.33485135436058044,
+ "learning_rate": 0.0006,
+ "loss": 5.397945880889893,
+ "step": 340
+ },
+ {
+ "epoch": 4.740934906072521,
+ "grad_norm": 0.29062309861183167,
+ "learning_rate": 0.0006,
+ "loss": 5.356175422668457,
+ "step": 341
+ },
+ {
+ "epoch": 4.754914809960681,
+ "grad_norm": 0.23617377877235413,
+ "learning_rate": 0.0006,
+ "loss": 5.388517379760742,
+ "step": 342
+ },
+ {
+ "epoch": 4.768894713848843,
+ "grad_norm": 0.2704737186431885,
+ "learning_rate": 0.0006,
+ "loss": 5.3746137619018555,
+ "step": 343
+ },
+ {
+ "epoch": 4.782874617737003,
+ "grad_norm": 0.20488551259040833,
+ "learning_rate": 0.0006,
+ "loss": 5.3754472732543945,
+ "step": 344
+ },
+ {
+ "epoch": 4.796854521625164,
+ "grad_norm": 0.2007082849740982,
+ "learning_rate": 0.0006,
+ "loss": 5.3538618087768555,
+ "step": 345
+ },
+ {
+ "epoch": 4.810834425513325,
+ "grad_norm": 0.21732935309410095,
+ "learning_rate": 0.0006,
+ "loss": 5.351774215698242,
+ "step": 346
+ },
+ {
+ "epoch": 4.824814329401486,
+ "grad_norm": 0.1944841742515564,
+ "learning_rate": 0.0006,
+ "loss": 5.357545852661133,
+ "step": 347
+ },
+ {
+ "epoch": 4.838794233289646,
+ "grad_norm": 0.1953933835029602,
+ "learning_rate": 0.0006,
+ "loss": 5.321681022644043,
+ "step": 348
+ },
+ {
+ "epoch": 4.852774137177807,
+ "grad_norm": 0.1743433028459549,
+ "learning_rate": 0.0006,
+ "loss": 5.340302467346191,
+ "step": 349
+ },
+ {
+ "epoch": 4.866754041065968,
+ "grad_norm": 0.19655466079711914,
+ "learning_rate": 0.0006,
+ "loss": 5.325471878051758,
+ "step": 350
+ },
+ {
+ "epoch": 4.8807339449541285,
+ "grad_norm": 0.15761791169643402,
+ "learning_rate": 0.0006,
+ "loss": 5.3453240394592285,
+ "step": 351
+ },
+ {
+ "epoch": 4.894713848842289,
+ "grad_norm": 0.19164425134658813,
+ "learning_rate": 0.0006,
+ "loss": 5.315583229064941,
+ "step": 352
+ },
+ {
+ "epoch": 4.90869375273045,
+ "grad_norm": 0.28084540367126465,
+ "learning_rate": 0.0006,
+ "loss": 5.309171676635742,
+ "step": 353
+ },
+ {
+ "epoch": 4.922673656618611,
+ "grad_norm": 0.4681853652000427,
+ "learning_rate": 0.0006,
+ "loss": 5.318211078643799,
+ "step": 354
+ },
+ {
+ "epoch": 4.936653560506771,
+ "grad_norm": 0.6417295932769775,
+ "learning_rate": 0.0006,
+ "loss": 5.309263706207275,
+ "step": 355
+ },
+ {
+ "epoch": 4.950633464394932,
+ "grad_norm": 0.501312792301178,
+ "learning_rate": 0.0006,
+ "loss": 5.321534156799316,
+ "step": 356
+ },
+ {
+ "epoch": 4.964613368283093,
+ "grad_norm": 0.47502145171165466,
+ "learning_rate": 0.0006,
+ "loss": 5.323659896850586,
+ "step": 357
+ },
+ {
+ "epoch": 4.978593272171254,
+ "grad_norm": 0.5366594791412354,
+ "learning_rate": 0.0006,
+ "loss": 5.327367782592773,
+ "step": 358
+ },
+ {
+ "epoch": 4.992573176059414,
+ "grad_norm": 0.6986395120620728,
+ "learning_rate": 0.0006,
+ "loss": 5.311097145080566,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.6626625657081604,
+ "learning_rate": 0.0006,
+ "loss": 5.337558269500732,
+ "step": 360
+ },
+ {
+ "epoch": 5.0,
+ "eval_loss": 5.929230690002441,
+ "eval_runtime": 44.5268,
+ "eval_samples_per_second": 54.843,
+ "eval_steps_per_second": 3.436,
+ "step": 360
+ },
+ {
+ "epoch": 5.013979903888161,
+ "grad_norm": 0.7383704781532288,
+ "learning_rate": 0.0006,
+ "loss": 5.315563678741455,
+ "step": 361
+ },
+ {
+ "epoch": 5.0279598077763215,
+ "grad_norm": 0.7730138301849365,
+ "learning_rate": 0.0006,
+ "loss": 5.324905872344971,
+ "step": 362
+ },
+ {
+ "epoch": 5.041939711664482,
+ "grad_norm": 0.8170825839042664,
+ "learning_rate": 0.0006,
+ "loss": 5.350251197814941,
+ "step": 363
+ },
+ {
+ "epoch": 5.055919615552643,
+ "grad_norm": 0.6950958371162415,
+ "learning_rate": 0.0006,
+ "loss": 5.338744163513184,
+ "step": 364
+ },
+ {
+ "epoch": 5.069899519440804,
+ "grad_norm": 0.5582894086837769,
+ "learning_rate": 0.0006,
+ "loss": 5.340539932250977,
+ "step": 365
+ },
+ {
+ "epoch": 5.083879423328964,
+ "grad_norm": 0.4772159159183502,
+ "learning_rate": 0.0006,
+ "loss": 5.344161033630371,
+ "step": 366
+ },
+ {
+ "epoch": 5.097859327217125,
+ "grad_norm": 0.5432839393615723,
+ "learning_rate": 0.0006,
+ "loss": 5.312403678894043,
+ "step": 367
+ },
+ {
+ "epoch": 5.111839231105286,
+ "grad_norm": 0.4944784641265869,
+ "learning_rate": 0.0006,
+ "loss": 5.30281925201416,
+ "step": 368
+ },
+ {
+ "epoch": 5.1258191349934465,
+ "grad_norm": 0.4298315942287445,
+ "learning_rate": 0.0006,
+ "loss": 5.29564094543457,
+ "step": 369
+ },
+ {
+ "epoch": 5.139799038881607,
+ "grad_norm": 0.349889874458313,
+ "learning_rate": 0.0006,
+ "loss": 5.287062644958496,
+ "step": 370
+ },
+ {
+ "epoch": 5.153778942769769,
+ "grad_norm": 0.2823719084262848,
+ "learning_rate": 0.0006,
+ "loss": 5.28826904296875,
+ "step": 371
+ },
+ {
+ "epoch": 5.16775884665793,
+ "grad_norm": 0.32975050806999207,
+ "learning_rate": 0.0006,
+ "loss": 5.256399631500244,
+ "step": 372
+ },
+ {
+ "epoch": 5.18173875054609,
+ "grad_norm": 0.2963952124118805,
+ "learning_rate": 0.0006,
+ "loss": 5.273757457733154,
+ "step": 373
+ },
+ {
+ "epoch": 5.195718654434251,
+ "grad_norm": 0.21345984935760498,
+ "learning_rate": 0.0006,
+ "loss": 5.274978160858154,
+ "step": 374
+ },
+ {
+ "epoch": 5.209698558322412,
+ "grad_norm": 0.2363101840019226,
+ "learning_rate": 0.0006,
+ "loss": 5.261585235595703,
+ "step": 375
+ },
+ {
+ "epoch": 5.2236784622105725,
+ "grad_norm": 0.19626963138580322,
+ "learning_rate": 0.0006,
+ "loss": 5.259700298309326,
+ "step": 376
+ },
+ {
+ "epoch": 5.237658366098733,
+ "grad_norm": 0.21083571016788483,
+ "learning_rate": 0.0006,
+ "loss": 5.233585357666016,
+ "step": 377
+ },
+ {
+ "epoch": 5.251638269986894,
+ "grad_norm": 0.2273513823747635,
+ "learning_rate": 0.0006,
+ "loss": 5.231740474700928,
+ "step": 378
+ },
+ {
+ "epoch": 5.265618173875055,
+ "grad_norm": 0.18299247324466705,
+ "learning_rate": 0.0006,
+ "loss": 5.251256465911865,
+ "step": 379
+ },
+ {
+ "epoch": 5.279598077763215,
+ "grad_norm": 0.19578224420547485,
+ "learning_rate": 0.0006,
+ "loss": 5.230329513549805,
+ "step": 380
+ },
+ {
+ "epoch": 5.293577981651376,
+ "grad_norm": 0.20308879017829895,
+ "learning_rate": 0.0006,
+ "loss": 5.243951797485352,
+ "step": 381
+ },
+ {
+ "epoch": 5.307557885539537,
+ "grad_norm": 0.21053212881088257,
+ "learning_rate": 0.0006,
+ "loss": 5.210272789001465,
+ "step": 382
+ },
+ {
+ "epoch": 5.321537789427698,
+ "grad_norm": 0.21852520108222961,
+ "learning_rate": 0.0006,
+ "loss": 5.215418815612793,
+ "step": 383
+ },
+ {
+ "epoch": 5.335517693315858,
+ "grad_norm": 0.24872010946273804,
+ "learning_rate": 0.0006,
+ "loss": 5.225139617919922,
+ "step": 384
+ },
+ {
+ "epoch": 5.349497597204019,
+ "grad_norm": 0.27780187129974365,
+ "learning_rate": 0.0006,
+ "loss": 5.241010665893555,
+ "step": 385
+ },
+ {
+ "epoch": 5.36347750109218,
+ "grad_norm": 0.261767715215683,
+ "learning_rate": 0.0006,
+ "loss": 5.230723857879639,
+ "step": 386
+ },
+ {
+ "epoch": 5.3774574049803405,
+ "grad_norm": 0.2111261785030365,
+ "learning_rate": 0.0006,
+ "loss": 5.1848602294921875,
+ "step": 387
+ },
+ {
+ "epoch": 5.391437308868501,
+ "grad_norm": 0.24325387179851532,
+ "learning_rate": 0.0006,
+ "loss": 5.180911064147949,
+ "step": 388
+ },
+ {
+ "epoch": 5.405417212756662,
+ "grad_norm": 0.19542962312698364,
+ "learning_rate": 0.0006,
+ "loss": 5.189907073974609,
+ "step": 389
+ },
+ {
+ "epoch": 5.419397116644823,
+ "grad_norm": 0.20489346981048584,
+ "learning_rate": 0.0006,
+ "loss": 5.184634208679199,
+ "step": 390
+ },
+ {
+ "epoch": 5.433377020532983,
+ "grad_norm": 0.2753409147262573,
+ "learning_rate": 0.0006,
+ "loss": 5.190083026885986,
+ "step": 391
+ },
+ {
+ "epoch": 5.447356924421145,
+ "grad_norm": 0.3758019208908081,
+ "learning_rate": 0.0006,
+ "loss": 5.189423561096191,
+ "step": 392
+ },
+ {
+ "epoch": 5.461336828309306,
+ "grad_norm": 0.4425095021724701,
+ "learning_rate": 0.0006,
+ "loss": 5.17152214050293,
+ "step": 393
+ },
+ {
+ "epoch": 5.4753167321974665,
+ "grad_norm": 0.39721858501434326,
+ "learning_rate": 0.0006,
+ "loss": 5.189178466796875,
+ "step": 394
+ },
+ {
+ "epoch": 5.489296636085627,
+ "grad_norm": 0.43441957235336304,
+ "learning_rate": 0.0006,
+ "loss": 5.1823577880859375,
+ "step": 395
+ },
+ {
+ "epoch": 5.503276539973788,
+ "grad_norm": 0.3583861291408539,
+ "learning_rate": 0.0006,
+ "loss": 5.160187721252441,
+ "step": 396
+ },
+ {
+ "epoch": 5.517256443861949,
+ "grad_norm": 0.323290079832077,
+ "learning_rate": 0.0006,
+ "loss": 5.113046646118164,
+ "step": 397
+ },
+ {
+ "epoch": 5.531236347750109,
+ "grad_norm": 0.3049418330192566,
+ "learning_rate": 0.0006,
+ "loss": 5.172209739685059,
+ "step": 398
+ },
+ {
+ "epoch": 5.54521625163827,
+ "grad_norm": 0.3253744840621948,
+ "learning_rate": 0.0006,
+ "loss": 5.1970720291137695,
+ "step": 399
+ },
+ {
+ "epoch": 5.559196155526431,
+ "grad_norm": 0.3232555091381073,
+ "learning_rate": 0.0006,
+ "loss": 5.173195838928223,
+ "step": 400
+ },
+ {
+ "epoch": 5.573176059414592,
+ "grad_norm": 0.33751845359802246,
+ "learning_rate": 0.0006,
+ "loss": 5.137526988983154,
+ "step": 401
+ },
+ {
+ "epoch": 5.587155963302752,
+ "grad_norm": 0.45970913767814636,
+ "learning_rate": 0.0006,
+ "loss": 5.123377799987793,
+ "step": 402
+ },
+ {
+ "epoch": 5.601135867190913,
+ "grad_norm": 0.5383784770965576,
+ "learning_rate": 0.0006,
+ "loss": 5.154180526733398,
+ "step": 403
+ },
+ {
+ "epoch": 5.615115771079074,
+ "grad_norm": 0.45765912532806396,
+ "learning_rate": 0.0006,
+ "loss": 5.1485209465026855,
+ "step": 404
+ },
+ {
+ "epoch": 5.6290956749672345,
+ "grad_norm": 0.5079503059387207,
+ "learning_rate": 0.0006,
+ "loss": 5.158293724060059,
+ "step": 405
+ },
+ {
+ "epoch": 5.643075578855395,
+ "grad_norm": 0.4860183894634247,
+ "learning_rate": 0.0006,
+ "loss": 5.1610212326049805,
+ "step": 406
+ },
+ {
+ "epoch": 5.657055482743556,
+ "grad_norm": 0.4065648913383484,
+ "learning_rate": 0.0006,
+ "loss": 5.1260786056518555,
+ "step": 407
+ },
+ {
+ "epoch": 5.671035386631717,
+ "grad_norm": 0.39606142044067383,
+ "learning_rate": 0.0006,
+ "loss": 5.1598711013793945,
+ "step": 408
+ },
+ {
+ "epoch": 5.685015290519877,
+ "grad_norm": 0.4705151319503784,
+ "learning_rate": 0.0006,
+ "loss": 5.166455268859863,
+ "step": 409
+ },
+ {
+ "epoch": 5.698995194408038,
+ "grad_norm": 0.5040799379348755,
+ "learning_rate": 0.0006,
+ "loss": 5.1408209800720215,
+ "step": 410
+ },
+ {
+ "epoch": 5.712975098296199,
+ "grad_norm": 0.5012556910514832,
+ "learning_rate": 0.0006,
+ "loss": 5.144109725952148,
+ "step": 411
+ },
+ {
+ "epoch": 5.72695500218436,
+ "grad_norm": 0.44301411509513855,
+ "learning_rate": 0.0006,
+ "loss": 5.155509948730469,
+ "step": 412
+ },
+ {
+ "epoch": 5.740934906072521,
+ "grad_norm": 0.36632269620895386,
+ "learning_rate": 0.0006,
+ "loss": 5.123111248016357,
+ "step": 413
+ },
+ {
+ "epoch": 5.754914809960681,
+ "grad_norm": 0.2980524003505707,
+ "learning_rate": 0.0006,
+ "loss": 5.1355719566345215,
+ "step": 414
+ },
+ {
+ "epoch": 5.768894713848843,
+ "grad_norm": 0.3441782295703888,
+ "learning_rate": 0.0006,
+ "loss": 5.132327079772949,
+ "step": 415
+ },
+ {
+ "epoch": 5.782874617737003,
+ "grad_norm": 0.4150780737400055,
+ "learning_rate": 0.0006,
+ "loss": 5.148543357849121,
+ "step": 416
+ },
+ {
+ "epoch": 5.796854521625164,
+ "grad_norm": 0.48417383432388306,
+ "learning_rate": 0.0006,
+ "loss": 5.104989528656006,
+ "step": 417
+ },
+ {
+ "epoch": 5.810834425513325,
+ "grad_norm": 0.3216031491756439,
+ "learning_rate": 0.0006,
+ "loss": 5.0926127433776855,
+ "step": 418
+ },
+ {
+ "epoch": 5.824814329401486,
+ "grad_norm": 0.2821158468723297,
+ "learning_rate": 0.0006,
+ "loss": 5.112299919128418,
+ "step": 419
+ },
+ {
+ "epoch": 5.838794233289646,
+ "grad_norm": 0.29821011424064636,
+ "learning_rate": 0.0006,
+ "loss": 5.091662406921387,
+ "step": 420
+ },
+ {
+ "epoch": 5.852774137177807,
+ "grad_norm": 0.30570563673973083,
+ "learning_rate": 0.0006,
+ "loss": 5.137539863586426,
+ "step": 421
+ },
+ {
+ "epoch": 5.866754041065968,
+ "grad_norm": 0.4029594957828522,
+ "learning_rate": 0.0006,
+ "loss": 5.112751007080078,
+ "step": 422
+ },
+ {
+ "epoch": 5.8807339449541285,
+ "grad_norm": 0.3878514766693115,
+ "learning_rate": 0.0006,
+ "loss": 5.094973564147949,
+ "step": 423
+ },
+ {
+ "epoch": 5.894713848842289,
+ "grad_norm": 0.31936126947402954,
+ "learning_rate": 0.0006,
+ "loss": 5.081070899963379,
+ "step": 424
+ },
+ {
+ "epoch": 5.90869375273045,
+ "grad_norm": 0.3309082090854645,
+ "learning_rate": 0.0006,
+ "loss": 5.06803560256958,
+ "step": 425
+ },
+ {
+ "epoch": 5.922673656618611,
+ "grad_norm": 0.27830439805984497,
+ "learning_rate": 0.0006,
+ "loss": 5.044766426086426,
+ "step": 426
+ },
+ {
+ "epoch": 5.936653560506771,
+ "grad_norm": 0.3301011919975281,
+ "learning_rate": 0.0006,
+ "loss": 5.093942165374756,
+ "step": 427
+ },
+ {
+ "epoch": 5.950633464394932,
+ "grad_norm": 0.40845948457717896,
+ "learning_rate": 0.0006,
+ "loss": 5.0889458656311035,
+ "step": 428
+ },
+ {
+ "epoch": 5.964613368283093,
+ "grad_norm": 0.4412153959274292,
+ "learning_rate": 0.0006,
+ "loss": 5.064834117889404,
+ "step": 429
+ },
+ {
+ "epoch": 5.978593272171254,
+ "grad_norm": 0.3592590093612671,
+ "learning_rate": 0.0006,
+ "loss": 5.066648006439209,
+ "step": 430
+ },
+ {
+ "epoch": 5.992573176059414,
+ "grad_norm": 0.3952840268611908,
+ "learning_rate": 0.0006,
+ "loss": 5.066549301147461,
+ "step": 431
+ },
+ {
+ "epoch": 6.0,
+ "grad_norm": 0.38878682255744934,
+ "learning_rate": 0.0006,
+ "loss": 5.0354323387146,
+ "step": 432
+ },
+ {
+ "epoch": 6.0,
+ "eval_loss": 5.473907947540283,
+ "eval_runtime": 44.5121,
+ "eval_samples_per_second": 54.861,
+ "eval_steps_per_second": 3.437,
+ "step": 432
+ },
+ {
+ "epoch": 6.013979903888161,
+ "grad_norm": 0.42730140686035156,
+ "learning_rate": 0.0006,
+ "loss": 5.048557281494141,
+ "step": 433
+ },
+ {
+ "epoch": 6.0279598077763215,
+ "grad_norm": 0.32713913917541504,
+ "learning_rate": 0.0006,
+ "loss": 5.041255950927734,
+ "step": 434
+ },
+ {
+ "epoch": 6.041939711664482,
+ "grad_norm": 0.32520365715026855,
+ "learning_rate": 0.0006,
+ "loss": 5.043124198913574,
+ "step": 435
+ },
+ {
+ "epoch": 6.055919615552643,
+ "grad_norm": 0.2941839098930359,
+ "learning_rate": 0.0006,
+ "loss": 5.0407304763793945,
+ "step": 436
+ },
+ {
+ "epoch": 6.069899519440804,
+ "grad_norm": 0.3088819682598114,
+ "learning_rate": 0.0006,
+ "loss": 5.020771026611328,
+ "step": 437
+ },
+ {
+ "epoch": 6.083879423328964,
+ "grad_norm": 0.34334254264831543,
+ "learning_rate": 0.0006,
+ "loss": 5.0260009765625,
+ "step": 438
+ },
+ {
+ "epoch": 6.097859327217125,
+ "grad_norm": 0.33016136288642883,
+ "learning_rate": 0.0006,
+ "loss": 4.994412899017334,
+ "step": 439
+ },
+ {
+ "epoch": 6.111839231105286,
+ "grad_norm": 0.2527366280555725,
+ "learning_rate": 0.0006,
+ "loss": 4.997830390930176,
+ "step": 440
+ },
+ {
+ "epoch": 6.1258191349934465,
+ "grad_norm": 0.24742509424686432,
+ "learning_rate": 0.0006,
+ "loss": 5.017087936401367,
+ "step": 441
+ },
+ {
+ "epoch": 6.139799038881607,
+ "grad_norm": 0.22578303515911102,
+ "learning_rate": 0.0006,
+ "loss": 5.000683784484863,
+ "step": 442
+ },
+ {
+ "epoch": 6.153778942769769,
+ "grad_norm": 0.21213896572589874,
+ "learning_rate": 0.0006,
+ "loss": 4.993280410766602,
+ "step": 443
+ },
+ {
+ "epoch": 6.16775884665793,
+ "grad_norm": 0.22559592127799988,
+ "learning_rate": 0.0006,
+ "loss": 5.005735874176025,
+ "step": 444
+ },
+ {
+ "epoch": 6.18173875054609,
+ "grad_norm": 0.18574322760105133,
+ "learning_rate": 0.0006,
+ "loss": 4.996601104736328,
+ "step": 445
+ },
+ {
+ "epoch": 6.195718654434251,
+ "grad_norm": 0.1793852299451828,
+ "learning_rate": 0.0006,
+ "loss": 4.977394104003906,
+ "step": 446
+ },
+ {
+ "epoch": 6.209698558322412,
+ "grad_norm": 0.1851297914981842,
+ "learning_rate": 0.0006,
+ "loss": 4.983541488647461,
+ "step": 447
+ },
+ {
+ "epoch": 6.2236784622105725,
+ "grad_norm": 0.2045268565416336,
+ "learning_rate": 0.0006,
+ "loss": 4.992830276489258,
+ "step": 448
+ },
+ {
+ "epoch": 6.237658366098733,
+ "grad_norm": 0.21707463264465332,
+ "learning_rate": 0.0006,
+ "loss": 4.998589515686035,
+ "step": 449
+ },
+ {
+ "epoch": 6.251638269986894,
+ "grad_norm": 0.2805860638618469,
+ "learning_rate": 0.0006,
+ "loss": 4.973134517669678,
+ "step": 450
+ },
+ {
+ "epoch": 6.265618173875055,
+ "grad_norm": 0.33102089166641235,
+ "learning_rate": 0.0006,
+ "loss": 4.957348823547363,
+ "step": 451
+ },
+ {
+ "epoch": 6.279598077763215,
+ "grad_norm": 0.3763096034526825,
+ "learning_rate": 0.0006,
+ "loss": 5.0133256912231445,
+ "step": 452
+ },
+ {
+ "epoch": 6.293577981651376,
+ "grad_norm": 0.4676196575164795,
+ "learning_rate": 0.0006,
+ "loss": 4.972289562225342,
+ "step": 453
+ },
+ {
+ "epoch": 6.307557885539537,
+ "grad_norm": 0.6158978343009949,
+ "learning_rate": 0.0006,
+ "loss": 4.989326477050781,
+ "step": 454
+ },
+ {
+ "epoch": 6.321537789427698,
+ "grad_norm": 0.537460446357727,
+ "learning_rate": 0.0006,
+ "loss": 5.0210676193237305,
+ "step": 455
+ },
+ {
+ "epoch": 6.335517693315858,
+ "grad_norm": 0.5342532396316528,
+ "learning_rate": 0.0006,
+ "loss": 4.988524436950684,
+ "step": 456
+ },
+ {
+ "epoch": 6.349497597204019,
+ "grad_norm": 0.5736384987831116,
+ "learning_rate": 0.0006,
+ "loss": 4.977508068084717,
+ "step": 457
+ },
+ {
+ "epoch": 6.36347750109218,
+ "grad_norm": 0.6656201481819153,
+ "learning_rate": 0.0006,
+ "loss": 5.047934055328369,
+ "step": 458
+ },
+ {
+ "epoch": 6.3774574049803405,
+ "grad_norm": 0.6388342380523682,
+ "learning_rate": 0.0006,
+ "loss": 5.017617225646973,
+ "step": 459
+ },
+ {
+ "epoch": 6.391437308868501,
+ "grad_norm": 0.6620904207229614,
+ "learning_rate": 0.0006,
+ "loss": 5.032195091247559,
+ "step": 460
+ },
+ {
+ "epoch": 6.405417212756662,
+ "grad_norm": 0.693274974822998,
+ "learning_rate": 0.0006,
+ "loss": 5.02433967590332,
+ "step": 461
+ },
+ {
+ "epoch": 6.419397116644823,
+ "grad_norm": 0.6888924241065979,
+ "learning_rate": 0.0006,
+ "loss": 5.010735511779785,
+ "step": 462
+ },
+ {
+ "epoch": 6.433377020532983,
+ "grad_norm": 0.7181721925735474,
+ "learning_rate": 0.0006,
+ "loss": 5.049690246582031,
+ "step": 463
+ },
+ {
+ "epoch": 6.447356924421145,
+ "grad_norm": 0.7225117087364197,
+ "learning_rate": 0.0006,
+ "loss": 5.031939506530762,
+ "step": 464
+ },
+ {
+ "epoch": 6.461336828309306,
+ "grad_norm": 0.5268304347991943,
+ "learning_rate": 0.0006,
+ "loss": 5.01638126373291,
+ "step": 465
+ },
+ {
+ "epoch": 6.4753167321974665,
+ "grad_norm": 0.38218435645103455,
+ "learning_rate": 0.0006,
+ "loss": 4.997034072875977,
+ "step": 466
+ },
+ {
+ "epoch": 6.489296636085627,
+ "grad_norm": 0.3576396703720093,
+ "learning_rate": 0.0006,
+ "loss": 5.006804943084717,
+ "step": 467
+ },
+ {
+ "epoch": 6.503276539973788,
+ "grad_norm": 0.3305981755256653,
+ "learning_rate": 0.0006,
+ "loss": 4.994671821594238,
+ "step": 468
+ },
+ {
+ "epoch": 6.517256443861949,
+ "grad_norm": 0.3254900574684143,
+ "learning_rate": 0.0006,
+ "loss": 4.9747490882873535,
+ "step": 469
+ },
+ {
+ "epoch": 6.531236347750109,
+ "grad_norm": 0.2655033469200134,
+ "learning_rate": 0.0006,
+ "loss": 5.002863883972168,
+ "step": 470
+ },
+ {
+ "epoch": 6.54521625163827,
+ "grad_norm": 0.2620532810688019,
+ "learning_rate": 0.0006,
+ "loss": 4.9813337326049805,
+ "step": 471
+ },
+ {
+ "epoch": 6.559196155526431,
+ "grad_norm": 0.22128869593143463,
+ "learning_rate": 0.0006,
+ "loss": 4.978368759155273,
+ "step": 472
+ },
+ {
+ "epoch": 6.573176059414592,
+ "grad_norm": 0.22638699412345886,
+ "learning_rate": 0.0006,
+ "loss": 4.944509029388428,
+ "step": 473
+ },
+ {
+ "epoch": 6.587155963302752,
+ "grad_norm": 0.20720207691192627,
+ "learning_rate": 0.0006,
+ "loss": 4.98404598236084,
+ "step": 474
+ },
+ {
+ "epoch": 6.601135867190913,
+ "grad_norm": 0.21577289700508118,
+ "learning_rate": 0.0006,
+ "loss": 4.958878040313721,
+ "step": 475
+ },
+ {
+ "epoch": 6.615115771079074,
+ "grad_norm": 0.22453972697257996,
+ "learning_rate": 0.0006,
+ "loss": 4.935467720031738,
+ "step": 476
+ },
+ {
+ "epoch": 6.6290956749672345,
+ "grad_norm": 0.20757712423801422,
+ "learning_rate": 0.0006,
+ "loss": 4.943334579467773,
+ "step": 477
+ },
+ {
+ "epoch": 6.643075578855395,
+ "grad_norm": 0.22808043658733368,
+ "learning_rate": 0.0006,
+ "loss": 4.936544418334961,
+ "step": 478
+ },
+ {
+ "epoch": 6.657055482743556,
+ "grad_norm": 0.2193756401538849,
+ "learning_rate": 0.0006,
+ "loss": 4.938162326812744,
+ "step": 479
+ },
+ {
+ "epoch": 6.671035386631717,
+ "grad_norm": 0.19677500426769257,
+ "learning_rate": 0.0006,
+ "loss": 4.9026713371276855,
+ "step": 480
+ },
+ {
+ "epoch": 6.685015290519877,
+ "grad_norm": 0.17271658778190613,
+ "learning_rate": 0.0006,
+ "loss": 4.912519454956055,
+ "step": 481
+ },
+ {
+ "epoch": 6.698995194408038,
+ "grad_norm": 0.17551499605178833,
+ "learning_rate": 0.0006,
+ "loss": 4.929941177368164,
+ "step": 482
+ },
+ {
+ "epoch": 6.712975098296199,
+ "grad_norm": 0.1582687348127365,
+ "learning_rate": 0.0006,
+ "loss": 4.908967971801758,
+ "step": 483
+ },
+ {
+ "epoch": 6.72695500218436,
+ "grad_norm": 0.1593410074710846,
+ "learning_rate": 0.0006,
+ "loss": 4.901554107666016,
+ "step": 484
+ },
+ {
+ "epoch": 6.740934906072521,
+ "grad_norm": 0.16746895015239716,
+ "learning_rate": 0.0006,
+ "loss": 4.917915344238281,
+ "step": 485
+ },
+ {
+ "epoch": 6.754914809960681,
+ "grad_norm": 0.17066062986850739,
+ "learning_rate": 0.0006,
+ "loss": 4.912853240966797,
+ "step": 486
+ },
+ {
+ "epoch": 6.768894713848843,
+ "grad_norm": 0.16727769374847412,
+ "learning_rate": 0.0006,
+ "loss": 4.895434856414795,
+ "step": 487
+ },
+ {
+ "epoch": 6.782874617737003,
+ "grad_norm": 0.1784558743238449,
+ "learning_rate": 0.0006,
+ "loss": 4.8805341720581055,
+ "step": 488
+ },
+ {
+ "epoch": 6.796854521625164,
+ "grad_norm": 0.176686093211174,
+ "learning_rate": 0.0006,
+ "loss": 4.855296611785889,
+ "step": 489
+ },
+ {
+ "epoch": 6.810834425513325,
+ "grad_norm": 0.21577849984169006,
+ "learning_rate": 0.0006,
+ "loss": 4.885506629943848,
+ "step": 490
+ },
+ {
+ "epoch": 6.824814329401486,
+ "grad_norm": 0.27615776658058167,
+ "learning_rate": 0.0006,
+ "loss": 4.913756847381592,
+ "step": 491
+ },
+ {
+ "epoch": 6.838794233289646,
+ "grad_norm": 0.3653675615787506,
+ "learning_rate": 0.0006,
+ "loss": 4.880918979644775,
+ "step": 492
+ },
+ {
+ "epoch": 6.852774137177807,
+ "grad_norm": 0.41473883390426636,
+ "learning_rate": 0.0006,
+ "loss": 4.894164562225342,
+ "step": 493
+ },
+ {
+ "epoch": 6.866754041065968,
+ "grad_norm": 0.45850715041160583,
+ "learning_rate": 0.0006,
+ "loss": 4.907922744750977,
+ "step": 494
+ },
+ {
+ "epoch": 6.8807339449541285,
+ "grad_norm": 0.4675290882587433,
+ "learning_rate": 0.0006,
+ "loss": 4.883112907409668,
+ "step": 495
+ },
+ {
+ "epoch": 6.894713848842289,
+ "grad_norm": 0.45795994997024536,
+ "learning_rate": 0.0006,
+ "loss": 4.897843360900879,
+ "step": 496
+ },
+ {
+ "epoch": 6.90869375273045,
+ "grad_norm": 0.46130508184432983,
+ "learning_rate": 0.0006,
+ "loss": 4.890612602233887,
+ "step": 497
+ },
+ {
+ "epoch": 6.922673656618611,
+ "grad_norm": 0.44783803820610046,
+ "learning_rate": 0.0006,
+ "loss": 4.880192756652832,
+ "step": 498
+ },
+ {
+ "epoch": 6.936653560506771,
+ "grad_norm": 0.35361284017562866,
+ "learning_rate": 0.0006,
+ "loss": 4.840778350830078,
+ "step": 499
+ },
+ {
+ "epoch": 6.950633464394932,
+ "grad_norm": 0.34027689695358276,
+ "learning_rate": 0.0006,
+ "loss": 4.871222496032715,
+ "step": 500
+ },
+ {
+ "epoch": 6.964613368283093,
+ "grad_norm": 0.30228909850120544,
+ "learning_rate": 0.0006,
+ "loss": 4.868077278137207,
+ "step": 501
+ },
+ {
+ "epoch": 6.978593272171254,
+ "grad_norm": 0.27706998586654663,
+ "learning_rate": 0.0006,
+ "loss": 4.895936012268066,
+ "step": 502
+ },
+ {
+ "epoch": 6.992573176059414,
+ "grad_norm": 0.3516870439052582,
+ "learning_rate": 0.0006,
+ "loss": 4.824636459350586,
+ "step": 503
+ },
+ {
+ "epoch": 7.0,
+ "grad_norm": 0.36831387877464294,
+ "learning_rate": 0.0006,
+ "loss": 4.874397277832031,
+ "step": 504
+ },
+ {
+ "epoch": 7.0,
+ "eval_loss": 5.176281452178955,
+ "eval_runtime": 44.2386,
+ "eval_samples_per_second": 55.201,
+ "eval_steps_per_second": 3.459,
+ "step": 504
+ },
+ {
+ "epoch": 7.013979903888161,
+ "grad_norm": 0.4265240430831909,
+ "learning_rate": 0.0006,
+ "loss": 4.814333438873291,
+ "step": 505
+ },
+ {
+ "epoch": 7.0279598077763215,
+ "grad_norm": 0.5126975774765015,
+ "learning_rate": 0.0006,
+ "loss": 4.852343559265137,
+ "step": 506
+ },
+ {
+ "epoch": 7.041939711664482,
+ "grad_norm": 0.43080806732177734,
+ "learning_rate": 0.0006,
+ "loss": 4.843439102172852,
+ "step": 507
+ },
+ {
+ "epoch": 7.055919615552643,
+ "grad_norm": 0.43170198798179626,
+ "learning_rate": 0.0006,
+ "loss": 4.845984935760498,
+ "step": 508
+ },
+ {
+ "epoch": 7.069899519440804,
+ "grad_norm": 0.5640552043914795,
+ "learning_rate": 0.0006,
+ "loss": 4.840991973876953,
+ "step": 509
+ },
+ {
+ "epoch": 7.083879423328964,
+ "grad_norm": 0.540381133556366,
+ "learning_rate": 0.0006,
+ "loss": 4.801316738128662,
+ "step": 510
+ },
+ {
+ "epoch": 7.097859327217125,
+ "grad_norm": 0.5412097573280334,
+ "learning_rate": 0.0006,
+ "loss": 4.886598587036133,
+ "step": 511
+ },
+ {
+ "epoch": 7.111839231105286,
+ "grad_norm": 0.630648136138916,
+ "learning_rate": 0.0006,
+ "loss": 4.849774360656738,
+ "step": 512
+ },
+ {
+ "epoch": 7.1258191349934465,
+ "grad_norm": 0.569952130317688,
+ "learning_rate": 0.0006,
+ "loss": 4.870607376098633,
+ "step": 513
+ },
+ {
+ "epoch": 7.139799038881607,
+ "grad_norm": 0.42051541805267334,
+ "learning_rate": 0.0006,
+ "loss": 4.83833122253418,
+ "step": 514
+ },
+ {
+ "epoch": 7.153778942769769,
+ "grad_norm": 0.3930990397930145,
+ "learning_rate": 0.0006,
+ "loss": 4.853984355926514,
+ "step": 515
+ },
+ {
+ "epoch": 7.16775884665793,
+ "grad_norm": 0.512886106967926,
+ "learning_rate": 0.0006,
+ "loss": 4.815458297729492,
+ "step": 516
+ },
+ {
+ "epoch": 7.18173875054609,
+ "grad_norm": 0.42580172419548035,
+ "learning_rate": 0.0006,
+ "loss": 4.825312614440918,
+ "step": 517
+ },
+ {
+ "epoch": 7.195718654434251,
+ "grad_norm": 0.31628182530403137,
+ "learning_rate": 0.0006,
+ "loss": 4.806377410888672,
+ "step": 518
+ },
+ {
+ "epoch": 7.209698558322412,
+ "grad_norm": 0.3109956681728363,
+ "learning_rate": 0.0006,
+ "loss": 4.819339752197266,
+ "step": 519
+ },
+ {
+ "epoch": 7.2236784622105725,
+ "grad_norm": 0.2740071415901184,
+ "learning_rate": 0.0006,
+ "loss": 4.81319522857666,
+ "step": 520
+ },
+ {
+ "epoch": 7.237658366098733,
+ "grad_norm": 0.26441165804862976,
+ "learning_rate": 0.0006,
+ "loss": 4.8107380867004395,
+ "step": 521
+ },
+ {
+ "epoch": 7.251638269986894,
+ "grad_norm": 0.2496110051870346,
+ "learning_rate": 0.0006,
+ "loss": 4.785193920135498,
+ "step": 522
+ },
+ {
+ "epoch": 7.265618173875055,
+ "grad_norm": 0.2565560042858124,
+ "learning_rate": 0.0006,
+ "loss": 4.802750587463379,
+ "step": 523
+ },
+ {
+ "epoch": 7.279598077763215,
+ "grad_norm": 0.2126980572938919,
+ "learning_rate": 0.0006,
+ "loss": 4.763580322265625,
+ "step": 524
+ },
+ {
+ "epoch": 7.293577981651376,
+ "grad_norm": 0.2169921100139618,
+ "learning_rate": 0.0006,
+ "loss": 4.756124973297119,
+ "step": 525
+ },
+ {
+ "epoch": 7.307557885539537,
+ "grad_norm": 0.2372167706489563,
+ "learning_rate": 0.0006,
+ "loss": 4.786888599395752,
+ "step": 526
+ },
+ {
+ "epoch": 7.321537789427698,
+ "grad_norm": 0.2124386429786682,
+ "learning_rate": 0.0006,
+ "loss": 4.777996063232422,
+ "step": 527
+ },
+ {
+ "epoch": 7.335517693315858,
+ "grad_norm": 0.18585442006587982,
+ "learning_rate": 0.0006,
+ "loss": 4.770537853240967,
+ "step": 528
+ },
+ {
+ "epoch": 7.349497597204019,
+ "grad_norm": 0.20515340566635132,
+ "learning_rate": 0.0006,
+ "loss": 4.769230842590332,
+ "step": 529
+ },
+ {
+ "epoch": 7.36347750109218,
+ "grad_norm": 0.19906704127788544,
+ "learning_rate": 0.0006,
+ "loss": 4.752581596374512,
+ "step": 530
+ },
+ {
+ "epoch": 7.3774574049803405,
+ "grad_norm": 0.2030428946018219,
+ "learning_rate": 0.0006,
+ "loss": 4.7353715896606445,
+ "step": 531
+ },
+ {
+ "epoch": 7.391437308868501,
+ "grad_norm": 0.17820630967617035,
+ "learning_rate": 0.0006,
+ "loss": 4.742705345153809,
+ "step": 532
+ },
+ {
+ "epoch": 7.405417212756662,
+ "grad_norm": 0.17642682790756226,
+ "learning_rate": 0.0006,
+ "loss": 4.752669334411621,
+ "step": 533
+ },
+ {
+ "epoch": 7.419397116644823,
+ "grad_norm": 0.18088409304618835,
+ "learning_rate": 0.0006,
+ "loss": 4.734611511230469,
+ "step": 534
+ },
+ {
+ "epoch": 7.433377020532983,
+ "grad_norm": 0.20897020399570465,
+ "learning_rate": 0.0006,
+ "loss": 4.756442070007324,
+ "step": 535
+ },
+ {
+ "epoch": 7.447356924421145,
+ "grad_norm": 0.23166777193546295,
+ "learning_rate": 0.0006,
+ "loss": 4.712922096252441,
+ "step": 536
+ },
+ {
+ "epoch": 7.461336828309306,
+ "grad_norm": 0.2205347716808319,
+ "learning_rate": 0.0006,
+ "loss": 4.75001335144043,
+ "step": 537
+ },
+ {
+ "epoch": 7.4753167321974665,
+ "grad_norm": 0.23868022859096527,
+ "learning_rate": 0.0006,
+ "loss": 4.726134300231934,
+ "step": 538
+ },
+ {
+ "epoch": 7.489296636085627,
+ "grad_norm": 0.2861441373825073,
+ "learning_rate": 0.0006,
+ "loss": 4.754112243652344,
+ "step": 539
+ },
+ {
+ "epoch": 7.503276539973788,
+ "grad_norm": 0.28980305790901184,
+ "learning_rate": 0.0006,
+ "loss": 4.716021537780762,
+ "step": 540
+ },
+ {
+ "epoch": 7.517256443861949,
+ "grad_norm": 0.2784835696220398,
+ "learning_rate": 0.0006,
+ "loss": 4.713929176330566,
+ "step": 541
+ },
+ {
+ "epoch": 7.531236347750109,
+ "grad_norm": 0.2962653934955597,
+ "learning_rate": 0.0006,
+ "loss": 4.711845397949219,
+ "step": 542
+ },
+ {
+ "epoch": 7.54521625163827,
+ "grad_norm": 0.3333161175251007,
+ "learning_rate": 0.0006,
+ "loss": 4.709834575653076,
+ "step": 543
+ },
+ {
+ "epoch": 7.559196155526431,
+ "grad_norm": 0.35304850339889526,
+ "learning_rate": 0.0006,
+ "loss": 4.732914924621582,
+ "step": 544
+ },
+ {
+ "epoch": 7.573176059414592,
+ "grad_norm": 0.4165869355201721,
+ "learning_rate": 0.0006,
+ "loss": 4.716190338134766,
+ "step": 545
+ },
+ {
+ "epoch": 7.587155963302752,
+ "grad_norm": 0.4878059923648834,
+ "learning_rate": 0.0006,
+ "loss": 4.723773002624512,
+ "step": 546
+ },
+ {
+ "epoch": 7.601135867190913,
+ "grad_norm": 0.36643707752227783,
+ "learning_rate": 0.0006,
+ "loss": 4.721458911895752,
+ "step": 547
+ },
+ {
+ "epoch": 7.615115771079074,
+ "grad_norm": 0.4046908915042877,
+ "learning_rate": 0.0006,
+ "loss": 4.715397834777832,
+ "step": 548
+ },
+ {
+ "epoch": 7.6290956749672345,
+ "grad_norm": 0.44426342844963074,
+ "learning_rate": 0.0006,
+ "loss": 4.737357139587402,
+ "step": 549
+ },
+ {
+ "epoch": 7.643075578855395,
+ "grad_norm": 0.4181079864501953,
+ "learning_rate": 0.0006,
+ "loss": 4.731383800506592,
+ "step": 550
+ },
+ {
+ "epoch": 7.657055482743556,
+ "grad_norm": 0.3486088216304779,
+ "learning_rate": 0.0006,
+ "loss": 4.728029727935791,
+ "step": 551
+ },
+ {
+ "epoch": 7.671035386631717,
+ "grad_norm": 0.37150970101356506,
+ "learning_rate": 0.0006,
+ "loss": 4.7083210945129395,
+ "step": 552
+ },
+ {
+ "epoch": 7.685015290519877,
+ "grad_norm": 0.43324410915374756,
+ "learning_rate": 0.0006,
+ "loss": 4.728720664978027,
+ "step": 553
+ },
+ {
+ "epoch": 7.698995194408038,
+ "grad_norm": 0.5026620626449585,
+ "learning_rate": 0.0006,
+ "loss": 4.698156356811523,
+ "step": 554
+ },
+ {
+ "epoch": 7.712975098296199,
+ "grad_norm": 0.4873499274253845,
+ "learning_rate": 0.0006,
+ "loss": 4.7169952392578125,
+ "step": 555
+ },
+ {
+ "epoch": 7.72695500218436,
+ "grad_norm": 0.4285493791103363,
+ "learning_rate": 0.0006,
+ "loss": 4.6877241134643555,
+ "step": 556
+ },
+ {
+ "epoch": 7.740934906072521,
+ "grad_norm": 0.5179854035377502,
+ "learning_rate": 0.0006,
+ "loss": 4.704267501831055,
+ "step": 557
+ },
+ {
+ "epoch": 7.754914809960681,
+ "grad_norm": 0.4642147421836853,
+ "learning_rate": 0.0006,
+ "loss": 4.695004463195801,
+ "step": 558
+ },
+ {
+ "epoch": 7.768894713848843,
+ "grad_norm": 0.47149503231048584,
+ "learning_rate": 0.0006,
+ "loss": 4.694338798522949,
+ "step": 559
+ },
+ {
+ "epoch": 7.782874617737003,
+ "grad_norm": 0.5422149300575256,
+ "learning_rate": 0.0006,
+ "loss": 4.749478340148926,
+ "step": 560
+ },
+ {
+ "epoch": 7.796854521625164,
+ "grad_norm": 0.4360728859901428,
+ "learning_rate": 0.0006,
+ "loss": 4.685191631317139,
+ "step": 561
+ },
+ {
+ "epoch": 7.810834425513325,
+ "grad_norm": 0.4243801534175873,
+ "learning_rate": 0.0006,
+ "loss": 4.69228458404541,
+ "step": 562
+ },
+ {
+ "epoch": 7.824814329401486,
+ "grad_norm": 0.40380290150642395,
+ "learning_rate": 0.0006,
+ "loss": 4.690923690795898,
+ "step": 563
+ },
+ {
+ "epoch": 7.838794233289646,
+ "grad_norm": 0.4352976381778717,
+ "learning_rate": 0.0006,
+ "loss": 4.720489978790283,
+ "step": 564
+ },
+ {
+ "epoch": 7.852774137177807,
+ "grad_norm": 0.44634920358657837,
+ "learning_rate": 0.0006,
+ "loss": 4.683789253234863,
+ "step": 565
+ },
+ {
+ "epoch": 7.866754041065968,
+ "grad_norm": 0.3818186819553375,
+ "learning_rate": 0.0006,
+ "loss": 4.696887016296387,
+ "step": 566
+ },
+ {
+ "epoch": 7.8807339449541285,
+ "grad_norm": 0.35270464420318604,
+ "learning_rate": 0.0006,
+ "loss": 4.715676307678223,
+ "step": 567
+ },
+ {
+ "epoch": 7.894713848842289,
+ "grad_norm": 0.249756321310997,
+ "learning_rate": 0.0006,
+ "loss": 4.672721862792969,
+ "step": 568
+ },
+ {
+ "epoch": 7.90869375273045,
+ "grad_norm": 0.25097888708114624,
+ "learning_rate": 0.0006,
+ "loss": 4.663518905639648,
+ "step": 569
+ },
+ {
+ "epoch": 7.922673656618611,
+ "grad_norm": 0.26563209295272827,
+ "learning_rate": 0.0006,
+ "loss": 4.675405025482178,
+ "step": 570
+ },
+ {
+ "epoch": 7.936653560506771,
+ "grad_norm": 0.26451292634010315,
+ "learning_rate": 0.0006,
+ "loss": 4.651235103607178,
+ "step": 571
+ },
+ {
+ "epoch": 7.950633464394932,
+ "grad_norm": 0.24185842275619507,
+ "learning_rate": 0.0006,
+ "loss": 4.671639919281006,
+ "step": 572
+ },
+ {
+ "epoch": 7.964613368283093,
+ "grad_norm": 0.21506108343601227,
+ "learning_rate": 0.0006,
+ "loss": 4.665352821350098,
+ "step": 573
+ },
+ {
+ "epoch": 7.978593272171254,
+ "grad_norm": 0.24365705251693726,
+ "learning_rate": 0.0006,
+ "loss": 4.663162708282471,
+ "step": 574
+ },
+ {
+ "epoch": 7.992573176059414,
+ "grad_norm": 0.24251042306423187,
+ "learning_rate": 0.0006,
+ "loss": 4.666633605957031,
+ "step": 575
+ },
+ {
+ "epoch": 8.0,
+ "grad_norm": 0.24187657237052917,
+ "learning_rate": 0.0006,
+ "loss": 4.63957405090332,
+ "step": 576
+ },
+ {
+ "epoch": 8.0,
+ "eval_loss": 4.923156261444092,
+ "eval_runtime": 44.1587,
+ "eval_samples_per_second": 55.301,
+ "eval_steps_per_second": 3.465,
+ "step": 576
+ },
+ {
+ "epoch": 8.013979903888162,
+ "grad_norm": 0.21323645114898682,
+ "learning_rate": 0.0006,
+ "loss": 4.636347770690918,
+ "step": 577
+ },
+ {
+ "epoch": 8.027959807776321,
+ "grad_norm": 0.2325759083032608,
+ "learning_rate": 0.0006,
+ "loss": 4.60684871673584,
+ "step": 578
+ },
+ {
+ "epoch": 8.041939711664483,
+ "grad_norm": 0.26741257309913635,
+ "learning_rate": 0.0006,
+ "loss": 4.647780418395996,
+ "step": 579
+ },
+ {
+ "epoch": 8.055919615552643,
+ "grad_norm": 0.285720556974411,
+ "learning_rate": 0.0006,
+ "loss": 4.629637718200684,
+ "step": 580
+ },
+ {
+ "epoch": 8.069899519440805,
+ "grad_norm": 0.2453618347644806,
+ "learning_rate": 0.0006,
+ "loss": 4.62420654296875,
+ "step": 581
+ },
+ {
+ "epoch": 8.083879423328964,
+ "grad_norm": 0.19662636518478394,
+ "learning_rate": 0.0006,
+ "loss": 4.593767166137695,
+ "step": 582
+ },
+ {
+ "epoch": 8.097859327217126,
+ "grad_norm": 0.22731931507587433,
+ "learning_rate": 0.0006,
+ "loss": 4.627089023590088,
+ "step": 583
+ },
+ {
+ "epoch": 8.111839231105286,
+ "grad_norm": 0.24452590942382812,
+ "learning_rate": 0.0006,
+ "loss": 4.613677024841309,
+ "step": 584
+ },
+ {
+ "epoch": 8.125819134993447,
+ "grad_norm": 0.2952791154384613,
+ "learning_rate": 0.0006,
+ "loss": 4.604985237121582,
+ "step": 585
+ },
+ {
+ "epoch": 8.139799038881607,
+ "grad_norm": 0.3184696137905121,
+ "learning_rate": 0.0006,
+ "loss": 4.589205741882324,
+ "step": 586
+ },
+ {
+ "epoch": 8.153778942769769,
+ "grad_norm": 0.2948093116283417,
+ "learning_rate": 0.0006,
+ "loss": 4.605442047119141,
+ "step": 587
+ },
+ {
+ "epoch": 8.167758846657929,
+ "grad_norm": 0.2450508326292038,
+ "learning_rate": 0.0006,
+ "loss": 4.615349292755127,
+ "step": 588
+ },
+ {
+ "epoch": 8.18173875054609,
+ "grad_norm": 0.25664836168289185,
+ "learning_rate": 0.0006,
+ "loss": 4.592251777648926,
+ "step": 589
+ },
+ {
+ "epoch": 8.19571865443425,
+ "grad_norm": 0.24479512870311737,
+ "learning_rate": 0.0006,
+ "loss": 4.6145920753479,
+ "step": 590
+ },
+ {
+ "epoch": 8.209698558322412,
+ "grad_norm": 0.24395205080509186,
+ "learning_rate": 0.0006,
+ "loss": 4.600954055786133,
+ "step": 591
+ },
+ {
+ "epoch": 8.223678462210572,
+ "grad_norm": 0.21804189682006836,
+ "learning_rate": 0.0006,
+ "loss": 4.607785224914551,
+ "step": 592
+ },
+ {
+ "epoch": 8.237658366098733,
+ "grad_norm": 0.20951785147190094,
+ "learning_rate": 0.0006,
+ "loss": 4.58140754699707,
+ "step": 593
+ },
+ {
+ "epoch": 8.251638269986893,
+ "grad_norm": 0.20415149629116058,
+ "learning_rate": 0.0006,
+ "loss": 4.593405723571777,
+ "step": 594
+ },
+ {
+ "epoch": 8.265618173875055,
+ "grad_norm": 0.19210249185562134,
+ "learning_rate": 0.0006,
+ "loss": 4.603294372558594,
+ "step": 595
+ },
+ {
+ "epoch": 8.279598077763215,
+ "grad_norm": 0.20719751715660095,
+ "learning_rate": 0.0006,
+ "loss": 4.55255651473999,
+ "step": 596
+ },
+ {
+ "epoch": 8.293577981651376,
+ "grad_norm": 0.20101022720336914,
+ "learning_rate": 0.0006,
+ "loss": 4.5928192138671875,
+ "step": 597
+ },
+ {
+ "epoch": 8.307557885539538,
+ "grad_norm": 0.19254222512245178,
+ "learning_rate": 0.0006,
+ "loss": 4.590397834777832,
+ "step": 598
+ },
+ {
+ "epoch": 8.321537789427698,
+ "grad_norm": 0.23234105110168457,
+ "learning_rate": 0.0006,
+ "loss": 4.5987677574157715,
+ "step": 599
+ },
+ {
+ "epoch": 8.33551769331586,
+ "grad_norm": 0.2537451982498169,
+ "learning_rate": 0.0006,
+ "loss": 4.543115615844727,
+ "step": 600
+ },
+ {
+ "epoch": 8.349497597204019,
+ "grad_norm": 0.29171040654182434,
+ "learning_rate": 0.0006,
+ "loss": 4.597387313842773,
+ "step": 601
+ },
+ {
+ "epoch": 8.36347750109218,
+ "grad_norm": 0.3035930097103119,
+ "learning_rate": 0.0006,
+ "loss": 4.566247463226318,
+ "step": 602
+ },
+ {
+ "epoch": 8.37745740498034,
+ "grad_norm": 0.2826756238937378,
+ "learning_rate": 0.0006,
+ "loss": 4.57047176361084,
+ "step": 603
+ },
+ {
+ "epoch": 8.391437308868502,
+ "grad_norm": 0.2959657609462738,
+ "learning_rate": 0.0006,
+ "loss": 4.582820892333984,
+ "step": 604
+ },
+ {
+ "epoch": 8.405417212756662,
+ "grad_norm": 0.3180356025695801,
+ "learning_rate": 0.0006,
+ "loss": 4.5573272705078125,
+ "step": 605
+ },
+ {
+ "epoch": 8.419397116644824,
+ "grad_norm": 0.3617221713066101,
+ "learning_rate": 0.0006,
+ "loss": 4.593079090118408,
+ "step": 606
+ },
+ {
+ "epoch": 8.433377020532983,
+ "grad_norm": 0.35198062658309937,
+ "learning_rate": 0.0006,
+ "loss": 4.615298271179199,
+ "step": 607
+ },
+ {
+ "epoch": 8.447356924421145,
+ "grad_norm": 0.3944903314113617,
+ "learning_rate": 0.0006,
+ "loss": 4.561809539794922,
+ "step": 608
+ },
+ {
+ "epoch": 8.461336828309305,
+ "grad_norm": 0.4525868594646454,
+ "learning_rate": 0.0006,
+ "loss": 4.613105773925781,
+ "step": 609
+ },
+ {
+ "epoch": 8.475316732197467,
+ "grad_norm": 0.4915139079093933,
+ "learning_rate": 0.0006,
+ "loss": 4.566202163696289,
+ "step": 610
+ },
+ {
+ "epoch": 8.489296636085626,
+ "grad_norm": 0.49231988191604614,
+ "learning_rate": 0.0006,
+ "loss": 4.556222915649414,
+ "step": 611
+ },
+ {
+ "epoch": 8.503276539973788,
+ "grad_norm": 0.43036946654319763,
+ "learning_rate": 0.0006,
+ "loss": 4.55517578125,
+ "step": 612
+ },
+ {
+ "epoch": 8.517256443861948,
+ "grad_norm": 0.42405328154563904,
+ "learning_rate": 0.0006,
+ "loss": 4.574039936065674,
+ "step": 613
+ },
+ {
+ "epoch": 8.53123634775011,
+ "grad_norm": 0.3955961763858795,
+ "learning_rate": 0.0006,
+ "loss": 4.6082611083984375,
+ "step": 614
+ },
+ {
+ "epoch": 8.54521625163827,
+ "grad_norm": 0.4377101957798004,
+ "learning_rate": 0.0006,
+ "loss": 4.555740833282471,
+ "step": 615
+ },
+ {
+ "epoch": 8.55919615552643,
+ "grad_norm": 0.4601984918117523,
+ "learning_rate": 0.0006,
+ "loss": 4.553995132446289,
+ "step": 616
+ },
+ {
+ "epoch": 8.57317605941459,
+ "grad_norm": 0.42025700211524963,
+ "learning_rate": 0.0006,
+ "loss": 4.567340850830078,
+ "step": 617
+ },
+ {
+ "epoch": 8.587155963302752,
+ "grad_norm": 0.35569432377815247,
+ "learning_rate": 0.0006,
+ "loss": 4.570140361785889,
+ "step": 618
+ },
+ {
+ "epoch": 8.601135867190912,
+ "grad_norm": 0.37940406799316406,
+ "learning_rate": 0.0006,
+ "loss": 4.581291198730469,
+ "step": 619
+ },
+ {
+ "epoch": 8.615115771079074,
+ "grad_norm": 0.3658490777015686,
+ "learning_rate": 0.0006,
+ "loss": 4.55476188659668,
+ "step": 620
+ },
+ {
+ "epoch": 8.629095674967235,
+ "grad_norm": 0.2908247113227844,
+ "learning_rate": 0.0006,
+ "loss": 4.564087867736816,
+ "step": 621
+ },
+ {
+ "epoch": 8.643075578855395,
+ "grad_norm": 0.29961925745010376,
+ "learning_rate": 0.0006,
+ "loss": 4.556543350219727,
+ "step": 622
+ },
+ {
+ "epoch": 8.657055482743557,
+ "grad_norm": 0.3144846558570862,
+ "learning_rate": 0.0006,
+ "loss": 4.553670883178711,
+ "step": 623
+ },
+ {
+ "epoch": 8.671035386631717,
+ "grad_norm": 0.2845900356769562,
+ "learning_rate": 0.0006,
+ "loss": 4.567296981811523,
+ "step": 624
+ },
+ {
+ "epoch": 8.685015290519878,
+ "grad_norm": 0.253591388463974,
+ "learning_rate": 0.0006,
+ "loss": 4.554507255554199,
+ "step": 625
+ },
+ {
+ "epoch": 8.698995194408038,
+ "grad_norm": 0.2563088536262512,
+ "learning_rate": 0.0006,
+ "loss": 4.542218208312988,
+ "step": 626
+ },
+ {
+ "epoch": 8.7129750982962,
+ "grad_norm": 0.26058217883110046,
+ "learning_rate": 0.0006,
+ "loss": 4.535512447357178,
+ "step": 627
+ },
+ {
+ "epoch": 8.72695500218436,
+ "grad_norm": 0.20749829709529877,
+ "learning_rate": 0.0006,
+ "loss": 4.516959190368652,
+ "step": 628
+ },
+ {
+ "epoch": 8.740934906072521,
+ "grad_norm": 0.2034810334444046,
+ "learning_rate": 0.0006,
+ "loss": 4.55794095993042,
+ "step": 629
+ },
+ {
+ "epoch": 8.754914809960681,
+ "grad_norm": 0.18418121337890625,
+ "learning_rate": 0.0006,
+ "loss": 4.5421247482299805,
+ "step": 630
+ },
+ {
+ "epoch": 8.768894713848843,
+ "grad_norm": 0.20551933348178864,
+ "learning_rate": 0.0006,
+ "loss": 4.50805139541626,
+ "step": 631
+ },
+ {
+ "epoch": 8.782874617737003,
+ "grad_norm": 0.21615999937057495,
+ "learning_rate": 0.0006,
+ "loss": 4.520708084106445,
+ "step": 632
+ },
+ {
+ "epoch": 8.796854521625164,
+ "grad_norm": 0.24864810705184937,
+ "learning_rate": 0.0006,
+ "loss": 4.509330749511719,
+ "step": 633
+ },
+ {
+ "epoch": 8.810834425513324,
+ "grad_norm": 0.2573665380477905,
+ "learning_rate": 0.0006,
+ "loss": 4.531505584716797,
+ "step": 634
+ },
+ {
+ "epoch": 8.824814329401486,
+ "grad_norm": 0.22452878952026367,
+ "learning_rate": 0.0006,
+ "loss": 4.529216289520264,
+ "step": 635
+ },
+ {
+ "epoch": 8.838794233289645,
+ "grad_norm": 0.19727355241775513,
+ "learning_rate": 0.0006,
+ "loss": 4.519906520843506,
+ "step": 636
+ },
+ {
+ "epoch": 8.852774137177807,
+ "grad_norm": 0.19937913119792938,
+ "learning_rate": 0.0006,
+ "loss": 4.536892414093018,
+ "step": 637
+ },
+ {
+ "epoch": 8.866754041065967,
+ "grad_norm": 0.2070389986038208,
+ "learning_rate": 0.0006,
+ "loss": 4.51191520690918,
+ "step": 638
+ },
+ {
+ "epoch": 8.880733944954128,
+ "grad_norm": 0.2293873429298401,
+ "learning_rate": 0.0006,
+ "loss": 4.505377769470215,
+ "step": 639
+ },
+ {
+ "epoch": 8.89471384884229,
+ "grad_norm": 0.21285250782966614,
+ "learning_rate": 0.0006,
+ "loss": 4.5138959884643555,
+ "step": 640
+ },
+ {
+ "epoch": 8.90869375273045,
+ "grad_norm": 0.19487562775611877,
+ "learning_rate": 0.0006,
+ "loss": 4.506108283996582,
+ "step": 641
+ },
+ {
+ "epoch": 8.922673656618612,
+ "grad_norm": 0.21986965835094452,
+ "learning_rate": 0.0006,
+ "loss": 4.506397247314453,
+ "step": 642
+ },
+ {
+ "epoch": 8.936653560506771,
+ "grad_norm": 0.20763885974884033,
+ "learning_rate": 0.0006,
+ "loss": 4.508007049560547,
+ "step": 643
+ },
+ {
+ "epoch": 8.950633464394933,
+ "grad_norm": 0.22858479619026184,
+ "learning_rate": 0.0006,
+ "loss": 4.520846366882324,
+ "step": 644
+ },
+ {
+ "epoch": 8.964613368283093,
+ "grad_norm": 0.23923712968826294,
+ "learning_rate": 0.0006,
+ "loss": 4.535306930541992,
+ "step": 645
+ },
+ {
+ "epoch": 8.978593272171254,
+ "grad_norm": 0.23717579245567322,
+ "learning_rate": 0.0006,
+ "loss": 4.485929489135742,
+ "step": 646
+ },
+ {
+ "epoch": 8.992573176059414,
+ "grad_norm": 0.24033977091312408,
+ "learning_rate": 0.0006,
+ "loss": 4.508999824523926,
+ "step": 647
+ },
+ {
+ "epoch": 9.0,
+ "grad_norm": 0.22432062029838562,
+ "learning_rate": 0.0006,
+ "loss": 4.473136901855469,
+ "step": 648
+ },
+ {
+ "epoch": 9.0,
+ "eval_loss": 4.735903263092041,
+ "eval_runtime": 44.2163,
+ "eval_samples_per_second": 55.228,
+ "eval_steps_per_second": 3.46,
+ "step": 648
+ },
+ {
+ "epoch": 9.013979903888162,
+ "grad_norm": 0.22491489350795746,
+ "learning_rate": 0.0006,
+ "loss": 4.468614101409912,
+ "step": 649
+ },
+ {
+ "epoch": 9.027959807776321,
+ "grad_norm": 0.255759060382843,
+ "learning_rate": 0.0006,
+ "loss": 4.516196250915527,
+ "step": 650
+ },
+ {
+ "epoch": 9.041939711664483,
+ "grad_norm": 0.2591100335121155,
+ "learning_rate": 0.0006,
+ "loss": 4.478276252746582,
+ "step": 651
+ },
+ {
+ "epoch": 9.055919615552643,
+ "grad_norm": 0.30472296476364136,
+ "learning_rate": 0.0006,
+ "loss": 4.479726791381836,
+ "step": 652
+ },
+ {
+ "epoch": 9.069899519440805,
+ "grad_norm": 0.2840559780597687,
+ "learning_rate": 0.0006,
+ "loss": 4.4437384605407715,
+ "step": 653
+ },
+ {
+ "epoch": 9.083879423328964,
+ "grad_norm": 0.2695577144622803,
+ "learning_rate": 0.0006,
+ "loss": 4.476065635681152,
+ "step": 654
+ },
+ {
+ "epoch": 9.097859327217126,
+ "grad_norm": 0.27912381291389465,
+ "learning_rate": 0.0006,
+ "loss": 4.484747409820557,
+ "step": 655
+ },
+ {
+ "epoch": 9.111839231105286,
+ "grad_norm": 0.3091907501220703,
+ "learning_rate": 0.0006,
+ "loss": 4.449443817138672,
+ "step": 656
+ },
+ {
+ "epoch": 9.125819134993447,
+ "grad_norm": 0.30756646394729614,
+ "learning_rate": 0.0006,
+ "loss": 4.496490001678467,
+ "step": 657
+ },
+ {
+ "epoch": 9.139799038881607,
+ "grad_norm": 0.305698037147522,
+ "learning_rate": 0.0006,
+ "loss": 4.466765880584717,
+ "step": 658
+ },
+ {
+ "epoch": 9.153778942769769,
+ "grad_norm": 0.3031201660633087,
+ "learning_rate": 0.0006,
+ "loss": 4.462430953979492,
+ "step": 659
+ },
+ {
+ "epoch": 9.167758846657929,
+ "grad_norm": 0.32725608348846436,
+ "learning_rate": 0.0006,
+ "loss": 4.479879379272461,
+ "step": 660
+ },
+ {
+ "epoch": 9.18173875054609,
+ "grad_norm": 0.31773585081100464,
+ "learning_rate": 0.0006,
+ "loss": 4.473912239074707,
+ "step": 661
+ },
+ {
+ "epoch": 9.19571865443425,
+ "grad_norm": 0.30025365948677063,
+ "learning_rate": 0.0006,
+ "loss": 4.476703643798828,
+ "step": 662
+ },
+ {
+ "epoch": 9.209698558322412,
+ "grad_norm": 0.3177371025085449,
+ "learning_rate": 0.0006,
+ "loss": 4.439765930175781,
+ "step": 663
+ },
+ {
+ "epoch": 9.223678462210572,
+ "grad_norm": 0.3060745894908905,
+ "learning_rate": 0.0006,
+ "loss": 4.487849235534668,
+ "step": 664
+ },
+ {
+ "epoch": 9.237658366098733,
+ "grad_norm": 0.33287373185157776,
+ "learning_rate": 0.0006,
+ "loss": 4.443496227264404,
+ "step": 665
+ },
+ {
+ "epoch": 9.251638269986893,
+ "grad_norm": 0.3758000433444977,
+ "learning_rate": 0.0006,
+ "loss": 4.478017330169678,
+ "step": 666
+ },
+ {
+ "epoch": 9.265618173875055,
+ "grad_norm": 0.32124510407447815,
+ "learning_rate": 0.0006,
+ "loss": 4.4092206954956055,
+ "step": 667
+ },
+ {
+ "epoch": 9.279598077763215,
+ "grad_norm": 0.2786794602870941,
+ "learning_rate": 0.0006,
+ "loss": 4.432734489440918,
+ "step": 668
+ },
+ {
+ "epoch": 9.293577981651376,
+ "grad_norm": 0.35042962431907654,
+ "learning_rate": 0.0006,
+ "loss": 4.462737083435059,
+ "step": 669
+ },
+ {
+ "epoch": 9.307557885539538,
+ "grad_norm": 0.4080469310283661,
+ "learning_rate": 0.0006,
+ "loss": 4.429462432861328,
+ "step": 670
+ },
+ {
+ "epoch": 9.321537789427698,
+ "grad_norm": 0.465158075094223,
+ "learning_rate": 0.0006,
+ "loss": 4.465776443481445,
+ "step": 671
+ },
+ {
+ "epoch": 9.33551769331586,
+ "grad_norm": 0.44833582639694214,
+ "learning_rate": 0.0006,
+ "loss": 4.454195976257324,
+ "step": 672
+ },
+ {
+ "epoch": 9.349497597204019,
+ "grad_norm": 0.451052188873291,
+ "learning_rate": 0.0006,
+ "loss": 4.456139087677002,
+ "step": 673
+ },
+ {
+ "epoch": 9.36347750109218,
+ "grad_norm": 0.3759656250476837,
+ "learning_rate": 0.0006,
+ "loss": 4.461119651794434,
+ "step": 674
+ },
+ {
+ "epoch": 9.37745740498034,
+ "grad_norm": 0.514560341835022,
+ "learning_rate": 0.0006,
+ "loss": 4.49595832824707,
+ "step": 675
+ },
+ {
+ "epoch": 9.391437308868502,
+ "grad_norm": 0.5650647282600403,
+ "learning_rate": 0.0006,
+ "loss": 4.461362838745117,
+ "step": 676
+ },
+ {
+ "epoch": 9.405417212756662,
+ "grad_norm": 0.4218835234642029,
+ "learning_rate": 0.0006,
+ "loss": 4.469146728515625,
+ "step": 677
+ },
+ {
+ "epoch": 9.419397116644824,
+ "grad_norm": 0.4169512689113617,
+ "learning_rate": 0.0006,
+ "loss": 4.470132827758789,
+ "step": 678
+ },
+ {
+ "epoch": 9.433377020532983,
+ "grad_norm": 0.3772219717502594,
+ "learning_rate": 0.0006,
+ "loss": 4.4742608070373535,
+ "step": 679
+ },
+ {
+ "epoch": 9.447356924421145,
+ "grad_norm": 0.35755908489227295,
+ "learning_rate": 0.0006,
+ "loss": 4.461928367614746,
+ "step": 680
+ },
+ {
+ "epoch": 9.461336828309305,
+ "grad_norm": 0.3141227662563324,
+ "learning_rate": 0.0006,
+ "loss": 4.491983413696289,
+ "step": 681
+ },
+ {
+ "epoch": 9.475316732197467,
+ "grad_norm": 0.282461017370224,
+ "learning_rate": 0.0006,
+ "loss": 4.460200309753418,
+ "step": 682
+ },
+ {
+ "epoch": 9.489296636085626,
+ "grad_norm": 0.27174389362335205,
+ "learning_rate": 0.0006,
+ "loss": 4.416125297546387,
+ "step": 683
+ },
+ {
+ "epoch": 9.503276539973788,
+ "grad_norm": 0.24570637941360474,
+ "learning_rate": 0.0006,
+ "loss": 4.4451093673706055,
+ "step": 684
+ },
+ {
+ "epoch": 9.517256443861948,
+ "grad_norm": 0.2741486132144928,
+ "learning_rate": 0.0006,
+ "loss": 4.453263282775879,
+ "step": 685
+ },
+ {
+ "epoch": 9.53123634775011,
+ "grad_norm": 0.24753718078136444,
+ "learning_rate": 0.0006,
+ "loss": 4.483033180236816,
+ "step": 686
+ },
+ {
+ "epoch": 9.54521625163827,
+ "grad_norm": 0.24288412928581238,
+ "learning_rate": 0.0006,
+ "loss": 4.452961444854736,
+ "step": 687
+ },
+ {
+ "epoch": 9.55919615552643,
+ "grad_norm": 0.21554753184318542,
+ "learning_rate": 0.0006,
+ "loss": 4.476005554199219,
+ "step": 688
+ },
+ {
+ "epoch": 9.57317605941459,
+ "grad_norm": 0.22775942087173462,
+ "learning_rate": 0.0006,
+ "loss": 4.4479193687438965,
+ "step": 689
+ },
+ {
+ "epoch": 9.587155963302752,
+ "grad_norm": 0.2610701024532318,
+ "learning_rate": 0.0006,
+ "loss": 4.474987506866455,
+ "step": 690
+ },
+ {
+ "epoch": 9.601135867190912,
+ "grad_norm": 0.2394690215587616,
+ "learning_rate": 0.0006,
+ "loss": 4.444857597351074,
+ "step": 691
+ },
+ {
+ "epoch": 9.615115771079074,
+ "grad_norm": 0.20868559181690216,
+ "learning_rate": 0.0006,
+ "loss": 4.4220709800720215,
+ "step": 692
+ },
+ {
+ "epoch": 9.629095674967235,
+ "grad_norm": 0.21869882941246033,
+ "learning_rate": 0.0006,
+ "loss": 4.451737403869629,
+ "step": 693
+ },
+ {
+ "epoch": 9.643075578855395,
+ "grad_norm": 0.1802823394536972,
+ "learning_rate": 0.0006,
+ "loss": 4.409085273742676,
+ "step": 694
+ },
+ {
+ "epoch": 9.657055482743557,
+ "grad_norm": 0.17046281695365906,
+ "learning_rate": 0.0006,
+ "loss": 4.424643516540527,
+ "step": 695
+ },
+ {
+ "epoch": 9.671035386631717,
+ "grad_norm": 0.19561922550201416,
+ "learning_rate": 0.0006,
+ "loss": 4.412302017211914,
+ "step": 696
+ },
+ {
+ "epoch": 9.685015290519878,
+ "grad_norm": 0.21928799152374268,
+ "learning_rate": 0.0006,
+ "loss": 4.427582263946533,
+ "step": 697
+ },
+ {
+ "epoch": 9.698995194408038,
+ "grad_norm": 0.244873046875,
+ "learning_rate": 0.0006,
+ "loss": 4.431827545166016,
+ "step": 698
+ },
+ {
+ "epoch": 9.7129750982962,
+ "grad_norm": 0.2799488604068756,
+ "learning_rate": 0.0006,
+ "loss": 4.407991409301758,
+ "step": 699
+ },
+ {
+ "epoch": 9.72695500218436,
+ "grad_norm": 0.2699538767337799,
+ "learning_rate": 0.0006,
+ "loss": 4.412313461303711,
+ "step": 700
+ },
+ {
+ "epoch": 9.740934906072521,
+ "grad_norm": 0.22293835878372192,
+ "learning_rate": 0.0006,
+ "loss": 4.423369884490967,
+ "step": 701
+ },
+ {
+ "epoch": 9.754914809960681,
+ "grad_norm": 0.21554361283779144,
+ "learning_rate": 0.0006,
+ "loss": 4.42026948928833,
+ "step": 702
+ },
+ {
+ "epoch": 9.768894713848843,
+ "grad_norm": 0.22135840356349945,
+ "learning_rate": 0.0006,
+ "loss": 4.400010108947754,
+ "step": 703
+ },
+ {
+ "epoch": 9.782874617737003,
+ "grad_norm": 0.2169952541589737,
+ "learning_rate": 0.0006,
+ "loss": 4.394582271575928,
+ "step": 704
+ },
+ {
+ "epoch": 9.796854521625164,
+ "grad_norm": 0.18913042545318604,
+ "learning_rate": 0.0006,
+ "loss": 4.395880699157715,
+ "step": 705
+ },
+ {
+ "epoch": 9.810834425513324,
+ "grad_norm": 0.191524475812912,
+ "learning_rate": 0.0006,
+ "loss": 4.378962516784668,
+ "step": 706
+ },
+ {
+ "epoch": 9.824814329401486,
+ "grad_norm": 0.20057640969753265,
+ "learning_rate": 0.0006,
+ "loss": 4.431066513061523,
+ "step": 707
+ },
+ {
+ "epoch": 9.838794233289645,
+ "grad_norm": 0.21670377254486084,
+ "learning_rate": 0.0006,
+ "loss": 4.364682197570801,
+ "step": 708
+ },
+ {
+ "epoch": 9.852774137177807,
+ "grad_norm": 0.21653099358081818,
+ "learning_rate": 0.0006,
+ "loss": 4.4050445556640625,
+ "step": 709
+ },
+ {
+ "epoch": 9.866754041065967,
+ "grad_norm": 0.2217673808336258,
+ "learning_rate": 0.0006,
+ "loss": 4.423664093017578,
+ "step": 710
+ },
+ {
+ "epoch": 9.880733944954128,
+ "grad_norm": 0.251078337430954,
+ "learning_rate": 0.0006,
+ "loss": 4.405768394470215,
+ "step": 711
+ },
+ {
+ "epoch": 9.89471384884229,
+ "grad_norm": 0.28962627053260803,
+ "learning_rate": 0.0006,
+ "loss": 4.421207427978516,
+ "step": 712
+ },
+ {
+ "epoch": 9.90869375273045,
+ "grad_norm": 0.3478074371814728,
+ "learning_rate": 0.0006,
+ "loss": 4.414942741394043,
+ "step": 713
+ },
+ {
+ "epoch": 9.922673656618612,
+ "grad_norm": 0.40396368503570557,
+ "learning_rate": 0.0006,
+ "loss": 4.415163993835449,
+ "step": 714
+ },
+ {
+ "epoch": 9.936653560506771,
+ "grad_norm": 0.3689858019351959,
+ "learning_rate": 0.0006,
+ "loss": 4.381345272064209,
+ "step": 715
+ },
+ {
+ "epoch": 9.950633464394933,
+ "grad_norm": 0.344868004322052,
+ "learning_rate": 0.0006,
+ "loss": 4.433088302612305,
+ "step": 716
+ },
+ {
+ "epoch": 9.964613368283093,
+ "grad_norm": 0.37976378202438354,
+ "learning_rate": 0.0006,
+ "loss": 4.431371212005615,
+ "step": 717
+ },
+ {
+ "epoch": 9.978593272171254,
+ "grad_norm": 0.4354130029678345,
+ "learning_rate": 0.0006,
+ "loss": 4.434148788452148,
+ "step": 718
+ },
+ {
+ "epoch": 9.992573176059414,
+ "grad_norm": 0.35859373211860657,
+ "learning_rate": 0.0006,
+ "loss": 4.428055763244629,
+ "step": 719
+ },
+ {
+ "epoch": 10.0,
+ "grad_norm": 0.3365023732185364,
+ "learning_rate": 0.0006,
+ "loss": 4.3888654708862305,
+ "step": 720
+ },
+ {
+ "epoch": 10.0,
+ "eval_loss": 4.638620853424072,
+ "eval_runtime": 44.3054,
+ "eval_samples_per_second": 55.117,
+ "eval_steps_per_second": 3.453,
+ "step": 720
+ },
+ {
+ "epoch": 10.013979903888162,
+ "grad_norm": 0.3267960250377655,
+ "learning_rate": 0.0006,
+ "loss": 4.386068344116211,
+ "step": 721
+ },
+ {
+ "epoch": 10.027959807776321,
+ "grad_norm": 0.33440953493118286,
+ "learning_rate": 0.0006,
+ "loss": 4.397515296936035,
+ "step": 722
+ },
+ {
+ "epoch": 10.041939711664483,
+ "grad_norm": 0.30047518014907837,
+ "learning_rate": 0.0006,
+ "loss": 4.398358345031738,
+ "step": 723
+ },
+ {
+ "epoch": 10.055919615552643,
+ "grad_norm": 0.2912217378616333,
+ "learning_rate": 0.0006,
+ "loss": 4.341166973114014,
+ "step": 724
+ },
+ {
+ "epoch": 10.069899519440805,
+ "grad_norm": 0.3199564218521118,
+ "learning_rate": 0.0006,
+ "loss": 4.388717174530029,
+ "step": 725
+ },
+ {
+ "epoch": 10.083879423328964,
+ "grad_norm": 0.2765582799911499,
+ "learning_rate": 0.0006,
+ "loss": 4.392992973327637,
+ "step": 726
+ },
+ {
+ "epoch": 10.097859327217126,
+ "grad_norm": 0.27138450741767883,
+ "learning_rate": 0.0006,
+ "loss": 4.382307529449463,
+ "step": 727
+ },
+ {
+ "epoch": 10.111839231105286,
+ "grad_norm": 0.29230645298957825,
+ "learning_rate": 0.0006,
+ "loss": 4.357486724853516,
+ "step": 728
+ },
+ {
+ "epoch": 10.125819134993447,
+ "grad_norm": 0.3127598464488983,
+ "learning_rate": 0.0006,
+ "loss": 4.39072322845459,
+ "step": 729
+ },
+ {
+ "epoch": 10.139799038881607,
+ "grad_norm": 0.3230913281440735,
+ "learning_rate": 0.0006,
+ "loss": 4.35037899017334,
+ "step": 730
+ },
+ {
+ "epoch": 10.153778942769769,
+ "grad_norm": 0.333675354719162,
+ "learning_rate": 0.0006,
+ "loss": 4.378030776977539,
+ "step": 731
+ },
+ {
+ "epoch": 10.167758846657929,
+ "grad_norm": 0.30325770378112793,
+ "learning_rate": 0.0006,
+ "loss": 4.372736930847168,
+ "step": 732
+ },
+ {
+ "epoch": 10.18173875054609,
+ "grad_norm": 0.2888163924217224,
+ "learning_rate": 0.0006,
+ "loss": 4.397604942321777,
+ "step": 733
+ },
+ {
+ "epoch": 10.19571865443425,
+ "grad_norm": 0.3378832936286926,
+ "learning_rate": 0.0006,
+ "loss": 4.395705223083496,
+ "step": 734
+ },
+ {
+ "epoch": 10.209698558322412,
+ "grad_norm": 0.30980268120765686,
+ "learning_rate": 0.0006,
+ "loss": 4.3861212730407715,
+ "step": 735
+ },
+ {
+ "epoch": 10.223678462210572,
+ "grad_norm": 0.2965783178806305,
+ "learning_rate": 0.0006,
+ "loss": 4.394898414611816,
+ "step": 736
+ },
+ {
+ "epoch": 10.237658366098733,
+ "grad_norm": 0.2818217873573303,
+ "learning_rate": 0.0006,
+ "loss": 4.36171817779541,
+ "step": 737
+ },
+ {
+ "epoch": 10.251638269986893,
+ "grad_norm": 0.2418123185634613,
+ "learning_rate": 0.0006,
+ "loss": 4.370945930480957,
+ "step": 738
+ },
+ {
+ "epoch": 10.265618173875055,
+ "grad_norm": 0.22372810542583466,
+ "learning_rate": 0.0006,
+ "loss": 4.354825973510742,
+ "step": 739
+ },
+ {
+ "epoch": 10.279598077763215,
+ "grad_norm": 0.238066166639328,
+ "learning_rate": 0.0006,
+ "loss": 4.376237392425537,
+ "step": 740
+ },
+ {
+ "epoch": 10.293577981651376,
+ "grad_norm": 0.22352449595928192,
+ "learning_rate": 0.0006,
+ "loss": 4.317084312438965,
+ "step": 741
+ },
+ {
+ "epoch": 10.307557885539538,
+ "grad_norm": 0.21685205399990082,
+ "learning_rate": 0.0006,
+ "loss": 4.335271835327148,
+ "step": 742
+ },
+ {
+ "epoch": 10.321537789427698,
+ "grad_norm": 0.19584694504737854,
+ "learning_rate": 0.0006,
+ "loss": 4.357963562011719,
+ "step": 743
+ },
+ {
+ "epoch": 10.33551769331586,
+ "grad_norm": 0.20373336970806122,
+ "learning_rate": 0.0006,
+ "loss": 4.401963233947754,
+ "step": 744
+ },
+ {
+ "epoch": 10.349497597204019,
+ "grad_norm": 0.2247837632894516,
+ "learning_rate": 0.0006,
+ "loss": 4.357202529907227,
+ "step": 745
+ },
+ {
+ "epoch": 10.36347750109218,
+ "grad_norm": 0.2416863739490509,
+ "learning_rate": 0.0006,
+ "loss": 4.364739418029785,
+ "step": 746
+ },
+ {
+ "epoch": 10.37745740498034,
+ "grad_norm": 0.22281162440776825,
+ "learning_rate": 0.0006,
+ "loss": 4.351607799530029,
+ "step": 747
+ },
+ {
+ "epoch": 10.391437308868502,
+ "grad_norm": 0.20751096308231354,
+ "learning_rate": 0.0006,
+ "loss": 4.370017051696777,
+ "step": 748
+ },
+ {
+ "epoch": 10.405417212756662,
+ "grad_norm": 0.19178363680839539,
+ "learning_rate": 0.0006,
+ "loss": 4.360328674316406,
+ "step": 749
+ },
+ {
+ "epoch": 10.419397116644824,
+ "grad_norm": 0.20534078776836395,
+ "learning_rate": 0.0006,
+ "loss": 4.3735432624816895,
+ "step": 750
+ },
+ {
+ "epoch": 10.433377020532983,
+ "grad_norm": 0.20533937215805054,
+ "learning_rate": 0.0006,
+ "loss": 4.326902389526367,
+ "step": 751
+ },
+ {
+ "epoch": 10.447356924421145,
+ "grad_norm": 0.22057875990867615,
+ "learning_rate": 0.0006,
+ "loss": 4.360934257507324,
+ "step": 752
+ },
+ {
+ "epoch": 10.461336828309305,
+ "grad_norm": 0.25568997859954834,
+ "learning_rate": 0.0006,
+ "loss": 4.345063209533691,
+ "step": 753
+ },
+ {
+ "epoch": 10.475316732197467,
+ "grad_norm": 0.31471487879753113,
+ "learning_rate": 0.0006,
+ "loss": 4.324014186859131,
+ "step": 754
+ },
+ {
+ "epoch": 10.489296636085626,
+ "grad_norm": 0.2716822624206543,
+ "learning_rate": 0.0006,
+ "loss": 4.318459510803223,
+ "step": 755
+ },
+ {
+ "epoch": 10.503276539973788,
+ "grad_norm": 0.19552019238471985,
+ "learning_rate": 0.0006,
+ "loss": 4.3367509841918945,
+ "step": 756
+ },
+ {
+ "epoch": 10.517256443861948,
+ "grad_norm": 0.22822986543178558,
+ "learning_rate": 0.0006,
+ "loss": 4.328935623168945,
+ "step": 757
+ },
+ {
+ "epoch": 10.53123634775011,
+ "grad_norm": 0.22282928228378296,
+ "learning_rate": 0.0006,
+ "loss": 4.358272552490234,
+ "step": 758
+ },
+ {
+ "epoch": 10.54521625163827,
+ "grad_norm": 0.23303352296352386,
+ "learning_rate": 0.0006,
+ "loss": 4.336641311645508,
+ "step": 759
+ },
+ {
+ "epoch": 10.55919615552643,
+ "grad_norm": 0.29474690556526184,
+ "learning_rate": 0.0006,
+ "loss": 4.343188285827637,
+ "step": 760
+ },
+ {
+ "epoch": 10.57317605941459,
+ "grad_norm": 0.36269059777259827,
+ "learning_rate": 0.0006,
+ "loss": 4.313019752502441,
+ "step": 761
+ },
+ {
+ "epoch": 10.587155963302752,
+ "grad_norm": 0.3742978870868683,
+ "learning_rate": 0.0006,
+ "loss": 4.361410140991211,
+ "step": 762
+ },
+ {
+ "epoch": 10.601135867190912,
+ "grad_norm": 0.34412163496017456,
+ "learning_rate": 0.0006,
+ "loss": 4.321324825286865,
+ "step": 763
+ },
+ {
+ "epoch": 10.615115771079074,
+ "grad_norm": 0.3464587926864624,
+ "learning_rate": 0.0006,
+ "loss": 4.341907501220703,
+ "step": 764
+ },
+ {
+ "epoch": 10.629095674967235,
+ "grad_norm": 0.3318136930465698,
+ "learning_rate": 0.0006,
+ "loss": 4.329099655151367,
+ "step": 765
+ },
+ {
+ "epoch": 10.643075578855395,
+ "grad_norm": 0.31292903423309326,
+ "learning_rate": 0.0006,
+ "loss": 4.332015037536621,
+ "step": 766
+ },
+ {
+ "epoch": 10.657055482743557,
+ "grad_norm": 0.2904847264289856,
+ "learning_rate": 0.0006,
+ "loss": 4.341764450073242,
+ "step": 767
+ },
+ {
+ "epoch": 10.671035386631717,
+ "grad_norm": 0.3287692666053772,
+ "learning_rate": 0.0006,
+ "loss": 4.342329025268555,
+ "step": 768
+ },
+ {
+ "epoch": 10.685015290519878,
+ "grad_norm": 0.3115365207195282,
+ "learning_rate": 0.0006,
+ "loss": 4.3530073165893555,
+ "step": 769
+ },
+ {
+ "epoch": 10.698995194408038,
+ "grad_norm": 0.24133864045143127,
+ "learning_rate": 0.0006,
+ "loss": 4.321497917175293,
+ "step": 770
+ },
+ {
+ "epoch": 10.7129750982962,
+ "grad_norm": 0.24658630788326263,
+ "learning_rate": 0.0006,
+ "loss": 4.32669734954834,
+ "step": 771
+ },
+ {
+ "epoch": 10.72695500218436,
+ "grad_norm": 0.2342129647731781,
+ "learning_rate": 0.0006,
+ "loss": 4.345459461212158,
+ "step": 772
+ },
+ {
+ "epoch": 10.740934906072521,
+ "grad_norm": 0.23360829055309296,
+ "learning_rate": 0.0006,
+ "loss": 4.33249568939209,
+ "step": 773
+ },
+ {
+ "epoch": 10.754914809960681,
+ "grad_norm": 0.24314677715301514,
+ "learning_rate": 0.0006,
+ "loss": 4.30499792098999,
+ "step": 774
+ },
+ {
+ "epoch": 10.768894713848843,
+ "grad_norm": 0.22105181217193604,
+ "learning_rate": 0.0006,
+ "loss": 4.33706521987915,
+ "step": 775
+ },
+ {
+ "epoch": 10.782874617737003,
+ "grad_norm": 0.23307174444198608,
+ "learning_rate": 0.0006,
+ "loss": 4.320387840270996,
+ "step": 776
+ },
+ {
+ "epoch": 10.796854521625164,
+ "grad_norm": 0.24946169555187225,
+ "learning_rate": 0.0006,
+ "loss": 4.316012382507324,
+ "step": 777
+ },
+ {
+ "epoch": 10.810834425513324,
+ "grad_norm": 0.26023536920547485,
+ "learning_rate": 0.0006,
+ "loss": 4.315193176269531,
+ "step": 778
+ },
+ {
+ "epoch": 10.824814329401486,
+ "grad_norm": 0.2688547968864441,
+ "learning_rate": 0.0006,
+ "loss": 4.3243255615234375,
+ "step": 779
+ },
+ {
+ "epoch": 10.838794233289645,
+ "grad_norm": 0.28188297152519226,
+ "learning_rate": 0.0006,
+ "loss": 4.3202972412109375,
+ "step": 780
+ },
+ {
+ "epoch": 10.852774137177807,
+ "grad_norm": 0.2890053689479828,
+ "learning_rate": 0.0006,
+ "loss": 4.318799018859863,
+ "step": 781
+ },
+ {
+ "epoch": 10.866754041065967,
+ "grad_norm": 0.2914353013038635,
+ "learning_rate": 0.0006,
+ "loss": 4.314262390136719,
+ "step": 782
+ },
+ {
+ "epoch": 10.880733944954128,
+ "grad_norm": 0.3145572543144226,
+ "learning_rate": 0.0006,
+ "loss": 4.339262008666992,
+ "step": 783
+ },
+ {
+ "epoch": 10.89471384884229,
+ "grad_norm": 0.323062002658844,
+ "learning_rate": 0.0006,
+ "loss": 4.354856491088867,
+ "step": 784
+ },
+ {
+ "epoch": 10.90869375273045,
+ "grad_norm": 0.32741227746009827,
+ "learning_rate": 0.0006,
+ "loss": 4.325577735900879,
+ "step": 785
+ },
+ {
+ "epoch": 10.922673656618612,
+ "grad_norm": 0.2855733036994934,
+ "learning_rate": 0.0006,
+ "loss": 4.324419021606445,
+ "step": 786
+ },
+ {
+ "epoch": 10.936653560506771,
+ "grad_norm": 0.2969444990158081,
+ "learning_rate": 0.0006,
+ "loss": 4.320681095123291,
+ "step": 787
+ },
+ {
+ "epoch": 10.950633464394933,
+ "grad_norm": 0.28108111023902893,
+ "learning_rate": 0.0006,
+ "loss": 4.32673454284668,
+ "step": 788
+ },
+ {
+ "epoch": 10.964613368283093,
+ "grad_norm": 0.2537972629070282,
+ "learning_rate": 0.0006,
+ "loss": 4.3197021484375,
+ "step": 789
+ },
+ {
+ "epoch": 10.978593272171254,
+ "grad_norm": 0.2354544699192047,
+ "learning_rate": 0.0006,
+ "loss": 4.3354973793029785,
+ "step": 790
+ },
+ {
+ "epoch": 10.992573176059414,
+ "grad_norm": 0.26195117831230164,
+ "learning_rate": 0.0006,
+ "loss": 4.3172526359558105,
+ "step": 791
+ },
+ {
+ "epoch": 11.0,
+ "grad_norm": 0.27089616656303406,
+ "learning_rate": 0.0006,
+ "loss": 4.324293613433838,
+ "step": 792
+ },
+ {
+ "epoch": 11.0,
+ "eval_loss": 4.531813621520996,
+ "eval_runtime": 44.1656,
+ "eval_samples_per_second": 55.292,
+ "eval_steps_per_second": 3.464,
+ "step": 792
+ },
+ {
+ "epoch": 11.013979903888162,
+ "grad_norm": 0.2526339590549469,
+ "learning_rate": 0.0006,
+ "loss": 4.287600517272949,
+ "step": 793
+ },
+ {
+ "epoch": 11.027959807776321,
+ "grad_norm": 0.24318458139896393,
+ "learning_rate": 0.0006,
+ "loss": 4.268078327178955,
+ "step": 794
+ },
+ {
+ "epoch": 11.041939711664483,
+ "grad_norm": 0.2450830638408661,
+ "learning_rate": 0.0006,
+ "loss": 4.265467643737793,
+ "step": 795
+ },
+ {
+ "epoch": 11.055919615552643,
+ "grad_norm": 0.23963099718093872,
+ "learning_rate": 0.0006,
+ "loss": 4.267931938171387,
+ "step": 796
+ },
+ {
+ "epoch": 11.069899519440805,
+ "grad_norm": 0.2488657534122467,
+ "learning_rate": 0.0006,
+ "loss": 4.30262565612793,
+ "step": 797
+ },
+ {
+ "epoch": 11.083879423328964,
+ "grad_norm": 0.2319781631231308,
+ "learning_rate": 0.0006,
+ "loss": 4.28665828704834,
+ "step": 798
+ },
+ {
+ "epoch": 11.097859327217126,
+ "grad_norm": 0.2425263375043869,
+ "learning_rate": 0.0006,
+ "loss": 4.284830570220947,
+ "step": 799
+ },
+ {
+ "epoch": 11.111839231105286,
+ "grad_norm": 0.23096567392349243,
+ "learning_rate": 0.0006,
+ "loss": 4.2817206382751465,
+ "step": 800
+ },
+ {
+ "epoch": 11.125819134993447,
+ "grad_norm": 0.2846364676952362,
+ "learning_rate": 0.0006,
+ "loss": 4.276104927062988,
+ "step": 801
+ },
+ {
+ "epoch": 11.139799038881607,
+ "grad_norm": 0.2984965741634369,
+ "learning_rate": 0.0006,
+ "loss": 4.2909650802612305,
+ "step": 802
+ },
+ {
+ "epoch": 11.153778942769769,
+ "grad_norm": 0.2841213643550873,
+ "learning_rate": 0.0006,
+ "loss": 4.283358097076416,
+ "step": 803
+ },
+ {
+ "epoch": 11.167758846657929,
+ "grad_norm": 0.29192933440208435,
+ "learning_rate": 0.0006,
+ "loss": 4.267040729522705,
+ "step": 804
+ },
+ {
+ "epoch": 11.18173875054609,
+ "grad_norm": 0.3254184126853943,
+ "learning_rate": 0.0006,
+ "loss": 4.301564693450928,
+ "step": 805
+ },
+ {
+ "epoch": 11.19571865443425,
+ "grad_norm": 0.3347095847129822,
+ "learning_rate": 0.0006,
+ "loss": 4.271395683288574,
+ "step": 806
+ },
+ {
+ "epoch": 11.209698558322412,
+ "grad_norm": 0.25609350204467773,
+ "learning_rate": 0.0006,
+ "loss": 4.2963056564331055,
+ "step": 807
+ },
+ {
+ "epoch": 11.223678462210572,
+ "grad_norm": 0.29272061586380005,
+ "learning_rate": 0.0006,
+ "loss": 4.298416614532471,
+ "step": 808
+ },
+ {
+ "epoch": 11.237658366098733,
+ "grad_norm": 0.32179465889930725,
+ "learning_rate": 0.0006,
+ "loss": 4.294036865234375,
+ "step": 809
+ },
+ {
+ "epoch": 11.251638269986893,
+ "grad_norm": 0.3336549401283264,
+ "learning_rate": 0.0006,
+ "loss": 4.291993141174316,
+ "step": 810
+ },
+ {
+ "epoch": 11.265618173875055,
+ "grad_norm": 0.32273536920547485,
+ "learning_rate": 0.0006,
+ "loss": 4.311004638671875,
+ "step": 811
+ },
+ {
+ "epoch": 11.279598077763215,
+ "grad_norm": 0.3575087785720825,
+ "learning_rate": 0.0006,
+ "loss": 4.300217628479004,
+ "step": 812
+ },
+ {
+ "epoch": 11.293577981651376,
+ "grad_norm": 0.3332885205745697,
+ "learning_rate": 0.0006,
+ "loss": 4.278337478637695,
+ "step": 813
+ },
+ {
+ "epoch": 11.307557885539538,
+ "grad_norm": 0.31440407037734985,
+ "learning_rate": 0.0006,
+ "loss": 4.273826599121094,
+ "step": 814
+ },
+ {
+ "epoch": 11.321537789427698,
+ "grad_norm": 0.29822009801864624,
+ "learning_rate": 0.0006,
+ "loss": 4.284292221069336,
+ "step": 815
+ },
+ {
+ "epoch": 11.33551769331586,
+ "grad_norm": 0.30695512890815735,
+ "learning_rate": 0.0006,
+ "loss": 4.2831926345825195,
+ "step": 816
+ },
+ {
+ "epoch": 11.349497597204019,
+ "grad_norm": 0.30576950311660767,
+ "learning_rate": 0.0006,
+ "loss": 4.277133464813232,
+ "step": 817
+ },
+ {
+ "epoch": 11.36347750109218,
+ "grad_norm": 0.2859647870063782,
+ "learning_rate": 0.0006,
+ "loss": 4.3130106925964355,
+ "step": 818
+ },
+ {
+ "epoch": 11.37745740498034,
+ "grad_norm": 0.32417574524879456,
+ "learning_rate": 0.0006,
+ "loss": 4.310303211212158,
+ "step": 819
+ },
+ {
+ "epoch": 11.391437308868502,
+ "grad_norm": 0.3512463867664337,
+ "learning_rate": 0.0006,
+ "loss": 4.287015438079834,
+ "step": 820
+ },
+ {
+ "epoch": 11.405417212756662,
+ "grad_norm": 0.32578620314598083,
+ "learning_rate": 0.0006,
+ "loss": 4.2957940101623535,
+ "step": 821
+ },
+ {
+ "epoch": 11.419397116644824,
+ "grad_norm": 0.287949800491333,
+ "learning_rate": 0.0006,
+ "loss": 4.2881879806518555,
+ "step": 822
+ },
+ {
+ "epoch": 11.433377020532983,
+ "grad_norm": 0.28048595786094666,
+ "learning_rate": 0.0006,
+ "loss": 4.274960517883301,
+ "step": 823
+ },
+ {
+ "epoch": 11.447356924421145,
+ "grad_norm": 0.2541540563106537,
+ "learning_rate": 0.0006,
+ "loss": 4.261083602905273,
+ "step": 824
+ },
+ {
+ "epoch": 11.461336828309305,
+ "grad_norm": 0.2348361313343048,
+ "learning_rate": 0.0006,
+ "loss": 4.271036148071289,
+ "step": 825
+ },
+ {
+ "epoch": 11.475316732197467,
+ "grad_norm": 0.20913535356521606,
+ "learning_rate": 0.0006,
+ "loss": 4.307661056518555,
+ "step": 826
+ },
+ {
+ "epoch": 11.489296636085626,
+ "grad_norm": 0.22298868000507355,
+ "learning_rate": 0.0006,
+ "loss": 4.26902961730957,
+ "step": 827
+ },
+ {
+ "epoch": 11.503276539973788,
+ "grad_norm": 0.22752761840820312,
+ "learning_rate": 0.0006,
+ "loss": 4.305529594421387,
+ "step": 828
+ },
+ {
+ "epoch": 11.517256443861948,
+ "grad_norm": 0.2149917483329773,
+ "learning_rate": 0.0006,
+ "loss": 4.25134801864624,
+ "step": 829
+ },
+ {
+ "epoch": 11.53123634775011,
+ "grad_norm": 0.21085695922374725,
+ "learning_rate": 0.0006,
+ "loss": 4.266982078552246,
+ "step": 830
+ },
+ {
+ "epoch": 11.54521625163827,
+ "grad_norm": 0.21586747467517853,
+ "learning_rate": 0.0006,
+ "loss": 4.235255718231201,
+ "step": 831
+ },
+ {
+ "epoch": 11.55919615552643,
+ "grad_norm": 0.2520856559276581,
+ "learning_rate": 0.0006,
+ "loss": 4.283442497253418,
+ "step": 832
+ },
+ {
+ "epoch": 11.57317605941459,
+ "grad_norm": 0.2825471758842468,
+ "learning_rate": 0.0006,
+ "loss": 4.234672546386719,
+ "step": 833
+ },
+ {
+ "epoch": 11.587155963302752,
+ "grad_norm": 0.27437824010849,
+ "learning_rate": 0.0006,
+ "loss": 4.246068000793457,
+ "step": 834
+ },
+ {
+ "epoch": 11.601135867190912,
+ "grad_norm": 0.2596757411956787,
+ "learning_rate": 0.0006,
+ "loss": 4.278448104858398,
+ "step": 835
+ },
+ {
+ "epoch": 11.615115771079074,
+ "grad_norm": 0.25663474202156067,
+ "learning_rate": 0.0006,
+ "loss": 4.308779716491699,
+ "step": 836
+ },
+ {
+ "epoch": 11.629095674967235,
+ "grad_norm": 0.2546203136444092,
+ "learning_rate": 0.0006,
+ "loss": 4.261247634887695,
+ "step": 837
+ },
+ {
+ "epoch": 11.643075578855395,
+ "grad_norm": 0.24722838401794434,
+ "learning_rate": 0.0006,
+ "loss": 4.275888442993164,
+ "step": 838
+ },
+ {
+ "epoch": 11.657055482743557,
+ "grad_norm": 0.3022806644439697,
+ "learning_rate": 0.0006,
+ "loss": 4.2572407722473145,
+ "step": 839
+ },
+ {
+ "epoch": 11.671035386631717,
+ "grad_norm": 0.31170839071273804,
+ "learning_rate": 0.0006,
+ "loss": 4.26992654800415,
+ "step": 840
+ },
+ {
+ "epoch": 11.685015290519878,
+ "grad_norm": 0.31362825632095337,
+ "learning_rate": 0.0006,
+ "loss": 4.2354655265808105,
+ "step": 841
+ },
+ {
+ "epoch": 11.698995194408038,
+ "grad_norm": 0.28741633892059326,
+ "learning_rate": 0.0006,
+ "loss": 4.263496398925781,
+ "step": 842
+ },
+ {
+ "epoch": 11.7129750982962,
+ "grad_norm": 0.2492494285106659,
+ "learning_rate": 0.0006,
+ "loss": 4.26463508605957,
+ "step": 843
+ },
+ {
+ "epoch": 11.72695500218436,
+ "grad_norm": 0.24324660003185272,
+ "learning_rate": 0.0006,
+ "loss": 4.245428085327148,
+ "step": 844
+ },
+ {
+ "epoch": 11.740934906072521,
+ "grad_norm": 0.23591114580631256,
+ "learning_rate": 0.0006,
+ "loss": 4.249845504760742,
+ "step": 845
+ },
+ {
+ "epoch": 11.754914809960681,
+ "grad_norm": 0.2202281504869461,
+ "learning_rate": 0.0006,
+ "loss": 4.245006084442139,
+ "step": 846
+ },
+ {
+ "epoch": 11.768894713848843,
+ "grad_norm": 0.22117942571640015,
+ "learning_rate": 0.0006,
+ "loss": 4.27812385559082,
+ "step": 847
+ },
+ {
+ "epoch": 11.782874617737003,
+ "grad_norm": 0.26361414790153503,
+ "learning_rate": 0.0006,
+ "loss": 4.250475883483887,
+ "step": 848
+ },
+ {
+ "epoch": 11.796854521625164,
+ "grad_norm": 0.2820321321487427,
+ "learning_rate": 0.0006,
+ "loss": 4.265835762023926,
+ "step": 849
+ },
+ {
+ "epoch": 11.810834425513324,
+ "grad_norm": 0.2078961282968521,
+ "learning_rate": 0.0006,
+ "loss": 4.251298904418945,
+ "step": 850
+ },
+ {
+ "epoch": 11.824814329401486,
+ "grad_norm": 0.21548646688461304,
+ "learning_rate": 0.0006,
+ "loss": 4.288539886474609,
+ "step": 851
+ },
+ {
+ "epoch": 11.838794233289645,
+ "grad_norm": 0.22719401121139526,
+ "learning_rate": 0.0006,
+ "loss": 4.252035140991211,
+ "step": 852
+ },
+ {
+ "epoch": 11.852774137177807,
+ "grad_norm": 0.21628320217132568,
+ "learning_rate": 0.0006,
+ "loss": 4.268622398376465,
+ "step": 853
+ },
+ {
+ "epoch": 11.866754041065967,
+ "grad_norm": 0.20855145156383514,
+ "learning_rate": 0.0006,
+ "loss": 4.253366470336914,
+ "step": 854
+ },
+ {
+ "epoch": 11.880733944954128,
+ "grad_norm": 0.2091914266347885,
+ "learning_rate": 0.0006,
+ "loss": 4.237805366516113,
+ "step": 855
+ },
+ {
+ "epoch": 11.89471384884229,
+ "grad_norm": 0.2000127136707306,
+ "learning_rate": 0.0006,
+ "loss": 4.268559455871582,
+ "step": 856
+ },
+ {
+ "epoch": 11.90869375273045,
+ "grad_norm": 0.21080894768238068,
+ "learning_rate": 0.0006,
+ "loss": 4.208702087402344,
+ "step": 857
+ },
+ {
+ "epoch": 11.922673656618612,
+ "grad_norm": 0.22125796973705292,
+ "learning_rate": 0.0006,
+ "loss": 4.250210762023926,
+ "step": 858
+ },
+ {
+ "epoch": 11.936653560506771,
+ "grad_norm": 0.25905469059944153,
+ "learning_rate": 0.0006,
+ "loss": 4.2263593673706055,
+ "step": 859
+ },
+ {
+ "epoch": 11.950633464394933,
+ "grad_norm": 0.29970306158065796,
+ "learning_rate": 0.0006,
+ "loss": 4.250848770141602,
+ "step": 860
+ },
+ {
+ "epoch": 11.964613368283093,
+ "grad_norm": 0.28155168890953064,
+ "learning_rate": 0.0006,
+ "loss": 4.272709369659424,
+ "step": 861
+ },
+ {
+ "epoch": 11.978593272171254,
+ "grad_norm": 0.23396113514900208,
+ "learning_rate": 0.0006,
+ "loss": 4.2674970626831055,
+ "step": 862
+ },
+ {
+ "epoch": 11.992573176059414,
+ "grad_norm": 0.23619577288627625,
+ "learning_rate": 0.0006,
+ "loss": 4.240267753601074,
+ "step": 863
+ },
+ {
+ "epoch": 12.0,
+ "grad_norm": 0.2779577076435089,
+ "learning_rate": 0.0006,
+ "loss": 4.267625331878662,
+ "step": 864
+ },
+ {
+ "epoch": 12.0,
+ "eval_loss": 4.437657356262207,
+ "eval_runtime": 44.4959,
+ "eval_samples_per_second": 54.881,
+ "eval_steps_per_second": 3.439,
+ "step": 864
+ },
+ {
+ "epoch": 12.013979903888162,
+ "grad_norm": 0.2948288321495056,
+ "learning_rate": 0.0006,
+ "loss": 4.232182502746582,
+ "step": 865
+ },
+ {
+ "epoch": 12.027959807776321,
+ "grad_norm": 0.3715663254261017,
+ "learning_rate": 0.0006,
+ "loss": 4.233771324157715,
+ "step": 866
+ },
+ {
+ "epoch": 12.041939711664483,
+ "grad_norm": 0.38358673453330994,
+ "learning_rate": 0.0006,
+ "loss": 4.208967685699463,
+ "step": 867
+ },
+ {
+ "epoch": 12.055919615552643,
+ "grad_norm": 0.3314538896083832,
+ "learning_rate": 0.0006,
+ "loss": 4.230685234069824,
+ "step": 868
+ },
+ {
+ "epoch": 12.069899519440805,
+ "grad_norm": 0.34171539545059204,
+ "learning_rate": 0.0006,
+ "loss": 4.231358528137207,
+ "step": 869
+ },
+ {
+ "epoch": 12.083879423328964,
+ "grad_norm": 0.3253359794616699,
+ "learning_rate": 0.0006,
+ "loss": 4.276405334472656,
+ "step": 870
+ },
+ {
+ "epoch": 12.097859327217126,
+ "grad_norm": 0.29008302092552185,
+ "learning_rate": 0.0006,
+ "loss": 4.232935905456543,
+ "step": 871
+ },
+ {
+ "epoch": 12.111839231105286,
+ "grad_norm": 0.28490355610847473,
+ "learning_rate": 0.0006,
+ "loss": 4.238036632537842,
+ "step": 872
+ },
+ {
+ "epoch": 12.125819134993447,
+ "grad_norm": 0.28446322679519653,
+ "learning_rate": 0.0006,
+ "loss": 4.210229873657227,
+ "step": 873
+ },
+ {
+ "epoch": 12.139799038881607,
+ "grad_norm": 0.29664531350135803,
+ "learning_rate": 0.0006,
+ "loss": 4.221309185028076,
+ "step": 874
+ },
+ {
+ "epoch": 12.153778942769769,
+ "grad_norm": 0.3083505928516388,
+ "learning_rate": 0.0006,
+ "loss": 4.221837997436523,
+ "step": 875
+ },
+ {
+ "epoch": 12.167758846657929,
+ "grad_norm": 0.3282921314239502,
+ "learning_rate": 0.0006,
+ "loss": 4.236713409423828,
+ "step": 876
+ },
+ {
+ "epoch": 12.18173875054609,
+ "grad_norm": 0.3603622615337372,
+ "learning_rate": 0.0006,
+ "loss": 4.245080947875977,
+ "step": 877
+ },
+ {
+ "epoch": 12.19571865443425,
+ "grad_norm": 0.38070905208587646,
+ "learning_rate": 0.0006,
+ "loss": 4.240756988525391,
+ "step": 878
+ },
+ {
+ "epoch": 12.209698558322412,
+ "grad_norm": 0.34479081630706787,
+ "learning_rate": 0.0006,
+ "loss": 4.200998306274414,
+ "step": 879
+ },
+ {
+ "epoch": 12.223678462210572,
+ "grad_norm": 0.3006879389286041,
+ "learning_rate": 0.0006,
+ "loss": 4.23531436920166,
+ "step": 880
+ },
+ {
+ "epoch": 12.237658366098733,
+ "grad_norm": 0.36835649609565735,
+ "learning_rate": 0.0006,
+ "loss": 4.229718208312988,
+ "step": 881
+ },
+ {
+ "epoch": 12.251638269986893,
+ "grad_norm": 0.4386984407901764,
+ "learning_rate": 0.0006,
+ "loss": 4.241188049316406,
+ "step": 882
+ },
+ {
+ "epoch": 12.265618173875055,
+ "grad_norm": 0.4442787170410156,
+ "learning_rate": 0.0006,
+ "loss": 4.239102840423584,
+ "step": 883
+ },
+ {
+ "epoch": 12.279598077763215,
+ "grad_norm": 0.324411541223526,
+ "learning_rate": 0.0006,
+ "loss": 4.198982238769531,
+ "step": 884
+ },
+ {
+ "epoch": 12.293577981651376,
+ "grad_norm": 0.2824151813983917,
+ "learning_rate": 0.0006,
+ "loss": 4.248816967010498,
+ "step": 885
+ },
+ {
+ "epoch": 12.307557885539538,
+ "grad_norm": 0.31407129764556885,
+ "learning_rate": 0.0006,
+ "loss": 4.2371320724487305,
+ "step": 886
+ },
+ {
+ "epoch": 12.321537789427698,
+ "grad_norm": 0.32920050621032715,
+ "learning_rate": 0.0006,
+ "loss": 4.210432052612305,
+ "step": 887
+ },
+ {
+ "epoch": 12.33551769331586,
+ "grad_norm": 0.315231055021286,
+ "learning_rate": 0.0006,
+ "loss": 4.219416618347168,
+ "step": 888
+ },
+ {
+ "epoch": 12.349497597204019,
+ "grad_norm": 0.30932050943374634,
+ "learning_rate": 0.0006,
+ "loss": 4.225022315979004,
+ "step": 889
+ },
+ {
+ "epoch": 12.36347750109218,
+ "grad_norm": 0.30242064595222473,
+ "learning_rate": 0.0006,
+ "loss": 4.2738518714904785,
+ "step": 890
+ },
+ {
+ "epoch": 12.37745740498034,
+ "grad_norm": 0.2926250994205475,
+ "learning_rate": 0.0006,
+ "loss": 4.231094837188721,
+ "step": 891
+ },
+ {
+ "epoch": 12.391437308868502,
+ "grad_norm": 0.2541215717792511,
+ "learning_rate": 0.0006,
+ "loss": 4.211821556091309,
+ "step": 892
+ },
+ {
+ "epoch": 12.405417212756662,
+ "grad_norm": 0.23693418502807617,
+ "learning_rate": 0.0006,
+ "loss": 4.208099365234375,
+ "step": 893
+ },
+ {
+ "epoch": 12.419397116644824,
+ "grad_norm": 0.22063226997852325,
+ "learning_rate": 0.0006,
+ "loss": 4.211234092712402,
+ "step": 894
+ },
+ {
+ "epoch": 12.433377020532983,
+ "grad_norm": 0.21536271274089813,
+ "learning_rate": 0.0006,
+ "loss": 4.199228286743164,
+ "step": 895
+ },
+ {
+ "epoch": 12.447356924421145,
+ "grad_norm": 0.243179589509964,
+ "learning_rate": 0.0006,
+ "loss": 4.204344749450684,
+ "step": 896
+ },
+ {
+ "epoch": 12.461336828309305,
+ "grad_norm": 0.2299746423959732,
+ "learning_rate": 0.0006,
+ "loss": 4.1565752029418945,
+ "step": 897
+ },
+ {
+ "epoch": 12.475316732197467,
+ "grad_norm": 0.2286847084760666,
+ "learning_rate": 0.0006,
+ "loss": 4.242953777313232,
+ "step": 898
+ },
+ {
+ "epoch": 12.489296636085626,
+ "grad_norm": 0.19463586807250977,
+ "learning_rate": 0.0006,
+ "loss": 4.214809417724609,
+ "step": 899
+ },
+ {
+ "epoch": 12.503276539973788,
+ "grad_norm": 0.1978398710489273,
+ "learning_rate": 0.0006,
+ "loss": 4.159815311431885,
+ "step": 900
+ },
+ {
+ "epoch": 12.517256443861948,
+ "grad_norm": 0.23177850246429443,
+ "learning_rate": 0.0006,
+ "loss": 4.2069902420043945,
+ "step": 901
+ },
+ {
+ "epoch": 12.53123634775011,
+ "grad_norm": 0.2408912032842636,
+ "learning_rate": 0.0006,
+ "loss": 4.206778526306152,
+ "step": 902
+ },
+ {
+ "epoch": 12.54521625163827,
+ "grad_norm": 0.21839919686317444,
+ "learning_rate": 0.0006,
+ "loss": 4.197076320648193,
+ "step": 903
+ },
+ {
+ "epoch": 12.55919615552643,
+ "grad_norm": 0.2053343504667282,
+ "learning_rate": 0.0006,
+ "loss": 4.21247673034668,
+ "step": 904
+ },
+ {
+ "epoch": 12.57317605941459,
+ "grad_norm": 0.19943439960479736,
+ "learning_rate": 0.0006,
+ "loss": 4.176966667175293,
+ "step": 905
+ },
+ {
+ "epoch": 12.587155963302752,
+ "grad_norm": 0.2012074887752533,
+ "learning_rate": 0.0006,
+ "loss": 4.210303783416748,
+ "step": 906
+ },
+ {
+ "epoch": 12.601135867190912,
+ "grad_norm": 0.22240376472473145,
+ "learning_rate": 0.0006,
+ "loss": 4.200625896453857,
+ "step": 907
+ },
+ {
+ "epoch": 12.615115771079074,
+ "grad_norm": 0.21729710698127747,
+ "learning_rate": 0.0006,
+ "loss": 4.2001953125,
+ "step": 908
+ },
+ {
+ "epoch": 12.629095674967235,
+ "grad_norm": 0.22470413148403168,
+ "learning_rate": 0.0006,
+ "loss": 4.197505950927734,
+ "step": 909
+ },
+ {
+ "epoch": 12.643075578855395,
+ "grad_norm": 0.23776157200336456,
+ "learning_rate": 0.0006,
+ "loss": 4.235603332519531,
+ "step": 910
+ },
+ {
+ "epoch": 12.657055482743557,
+ "grad_norm": 0.20616604387760162,
+ "learning_rate": 0.0006,
+ "loss": 4.193584442138672,
+ "step": 911
+ },
+ {
+ "epoch": 12.671035386631717,
+ "grad_norm": 0.1913922131061554,
+ "learning_rate": 0.0006,
+ "loss": 4.209191799163818,
+ "step": 912
+ },
+ {
+ "epoch": 12.685015290519878,
+ "grad_norm": 0.19427193701267242,
+ "learning_rate": 0.0006,
+ "loss": 4.219709396362305,
+ "step": 913
+ },
+ {
+ "epoch": 12.698995194408038,
+ "grad_norm": 0.20976558327674866,
+ "learning_rate": 0.0006,
+ "loss": 4.210859298706055,
+ "step": 914
+ },
+ {
+ "epoch": 12.7129750982962,
+ "grad_norm": 0.21571609377861023,
+ "learning_rate": 0.0006,
+ "loss": 4.189394950866699,
+ "step": 915
+ },
+ {
+ "epoch": 12.72695500218436,
+ "grad_norm": 0.2152620255947113,
+ "learning_rate": 0.0006,
+ "loss": 4.223589897155762,
+ "step": 916
+ },
+ {
+ "epoch": 12.740934906072521,
+ "grad_norm": 0.21867749094963074,
+ "learning_rate": 0.0006,
+ "loss": 4.198590278625488,
+ "step": 917
+ },
+ {
+ "epoch": 12.754914809960681,
+ "grad_norm": 0.22300855815410614,
+ "learning_rate": 0.0006,
+ "loss": 4.188891410827637,
+ "step": 918
+ },
+ {
+ "epoch": 12.768894713848843,
+ "grad_norm": 0.22197802364826202,
+ "learning_rate": 0.0006,
+ "loss": 4.190221309661865,
+ "step": 919
+ },
+ {
+ "epoch": 12.782874617737003,
+ "grad_norm": 0.20003341138362885,
+ "learning_rate": 0.0006,
+ "loss": 4.215453147888184,
+ "step": 920
+ },
+ {
+ "epoch": 12.796854521625164,
+ "grad_norm": 0.19887958467006683,
+ "learning_rate": 0.0006,
+ "loss": 4.18174934387207,
+ "step": 921
+ },
+ {
+ "epoch": 12.810834425513324,
+ "grad_norm": 0.20945803821086884,
+ "learning_rate": 0.0006,
+ "loss": 4.234947204589844,
+ "step": 922
+ },
+ {
+ "epoch": 12.824814329401486,
+ "grad_norm": 0.2253490388393402,
+ "learning_rate": 0.0006,
+ "loss": 4.2177228927612305,
+ "step": 923
+ },
+ {
+ "epoch": 12.838794233289645,
+ "grad_norm": 0.247610405087471,
+ "learning_rate": 0.0006,
+ "loss": 4.2013139724731445,
+ "step": 924
+ },
+ {
+ "epoch": 12.852774137177807,
+ "grad_norm": 0.2792088985443115,
+ "learning_rate": 0.0006,
+ "loss": 4.204774379730225,
+ "step": 925
+ },
+ {
+ "epoch": 12.866754041065967,
+ "grad_norm": 0.2839066982269287,
+ "learning_rate": 0.0006,
+ "loss": 4.186254978179932,
+ "step": 926
+ },
+ {
+ "epoch": 12.880733944954128,
+ "grad_norm": 0.2793181836605072,
+ "learning_rate": 0.0006,
+ "loss": 4.172411918640137,
+ "step": 927
+ },
+ {
+ "epoch": 12.89471384884229,
+ "grad_norm": 0.29506033658981323,
+ "learning_rate": 0.0006,
+ "loss": 4.202878475189209,
+ "step": 928
+ },
+ {
+ "epoch": 12.90869375273045,
+ "grad_norm": 0.2799845039844513,
+ "learning_rate": 0.0006,
+ "loss": 4.1563310623168945,
+ "step": 929
+ },
+ {
+ "epoch": 12.922673656618612,
+ "grad_norm": 0.23972125351428986,
+ "learning_rate": 0.0006,
+ "loss": 4.224601745605469,
+ "step": 930
+ },
+ {
+ "epoch": 12.936653560506771,
+ "grad_norm": 0.21558353304862976,
+ "learning_rate": 0.0006,
+ "loss": 4.167957305908203,
+ "step": 931
+ },
+ {
+ "epoch": 12.950633464394933,
+ "grad_norm": 0.21800188720226288,
+ "learning_rate": 0.0006,
+ "loss": 4.1746039390563965,
+ "step": 932
+ },
+ {
+ "epoch": 12.964613368283093,
+ "grad_norm": 0.2086547315120697,
+ "learning_rate": 0.0006,
+ "loss": 4.188137054443359,
+ "step": 933
+ },
+ {
+ "epoch": 12.978593272171254,
+ "grad_norm": 0.2174186110496521,
+ "learning_rate": 0.0006,
+ "loss": 4.184014320373535,
+ "step": 934
+ },
+ {
+ "epoch": 12.992573176059414,
+ "grad_norm": 0.22755110263824463,
+ "learning_rate": 0.0006,
+ "loss": 4.180912017822266,
+ "step": 935
+ },
+ {
+ "epoch": 13.0,
+ "grad_norm": 0.2735324203968048,
+ "learning_rate": 0.0006,
+ "loss": 4.201578617095947,
+ "step": 936
+ },
+ {
+ "epoch": 13.0,
+ "eval_loss": 4.396903038024902,
+ "eval_runtime": 44.5664,
+ "eval_samples_per_second": 54.795,
+ "eval_steps_per_second": 3.433,
+ "step": 936
+ },
+ {
+ "epoch": 13.013979903888162,
+ "grad_norm": 0.27577832341194153,
+ "learning_rate": 0.0006,
+ "loss": 4.149985313415527,
+ "step": 937
+ },
+ {
+ "epoch": 13.027959807776321,
+ "grad_norm": 0.25817009806632996,
+ "learning_rate": 0.0006,
+ "loss": 4.1526103019714355,
+ "step": 938
+ },
+ {
+ "epoch": 13.041939711664483,
+ "grad_norm": 0.24564379453659058,
+ "learning_rate": 0.0006,
+ "loss": 4.1661152839660645,
+ "step": 939
+ },
+ {
+ "epoch": 13.055919615552643,
+ "grad_norm": 0.2465466856956482,
+ "learning_rate": 0.0006,
+ "loss": 4.152953624725342,
+ "step": 940
+ },
+ {
+ "epoch": 13.069899519440805,
+ "grad_norm": 0.22702018916606903,
+ "learning_rate": 0.0006,
+ "loss": 4.145125389099121,
+ "step": 941
+ },
+ {
+ "epoch": 13.083879423328964,
+ "grad_norm": 0.24350613355636597,
+ "learning_rate": 0.0006,
+ "loss": 4.163095474243164,
+ "step": 942
+ },
+ {
+ "epoch": 13.097859327217126,
+ "grad_norm": 0.2504431903362274,
+ "learning_rate": 0.0006,
+ "loss": 4.136016845703125,
+ "step": 943
+ },
+ {
+ "epoch": 13.111839231105286,
+ "grad_norm": 0.24968865513801575,
+ "learning_rate": 0.0006,
+ "loss": 4.163487911224365,
+ "step": 944
+ },
+ {
+ "epoch": 13.125819134993447,
+ "grad_norm": 0.27164196968078613,
+ "learning_rate": 0.0006,
+ "loss": 4.1194353103637695,
+ "step": 945
+ },
+ {
+ "epoch": 13.139799038881607,
+ "grad_norm": 0.28127020597457886,
+ "learning_rate": 0.0006,
+ "loss": 4.184807300567627,
+ "step": 946
+ },
+ {
+ "epoch": 13.153778942769769,
+ "grad_norm": 0.24574966728687286,
+ "learning_rate": 0.0006,
+ "loss": 4.154998779296875,
+ "step": 947
+ },
+ {
+ "epoch": 13.167758846657929,
+ "grad_norm": 0.22310060262680054,
+ "learning_rate": 0.0006,
+ "loss": 4.182928085327148,
+ "step": 948
+ },
+ {
+ "epoch": 13.18173875054609,
+ "grad_norm": 0.2539508640766144,
+ "learning_rate": 0.0006,
+ "loss": 4.176900386810303,
+ "step": 949
+ },
+ {
+ "epoch": 13.19571865443425,
+ "grad_norm": 0.30925488471984863,
+ "learning_rate": 0.0006,
+ "loss": 4.1760711669921875,
+ "step": 950
+ },
+ {
+ "epoch": 13.209698558322412,
+ "grad_norm": 0.3842967450618744,
+ "learning_rate": 0.0006,
+ "loss": 4.1830949783325195,
+ "step": 951
+ },
+ {
+ "epoch": 13.223678462210572,
+ "grad_norm": 0.35950011014938354,
+ "learning_rate": 0.0006,
+ "loss": 4.131983757019043,
+ "step": 952
+ },
+ {
+ "epoch": 13.237658366098733,
+ "grad_norm": 0.29913705587387085,
+ "learning_rate": 0.0006,
+ "loss": 4.166984558105469,
+ "step": 953
+ },
+ {
+ "epoch": 13.251638269986893,
+ "grad_norm": 0.32008400559425354,
+ "learning_rate": 0.0006,
+ "loss": 4.156482696533203,
+ "step": 954
+ },
+ {
+ "epoch": 13.265618173875055,
+ "grad_norm": 0.3186642825603485,
+ "learning_rate": 0.0006,
+ "loss": 4.1661057472229,
+ "step": 955
+ },
+ {
+ "epoch": 13.279598077763215,
+ "grad_norm": 0.3194582462310791,
+ "learning_rate": 0.0006,
+ "loss": 4.169328689575195,
+ "step": 956
+ },
+ {
+ "epoch": 13.293577981651376,
+ "grad_norm": 0.3133867084980011,
+ "learning_rate": 0.0006,
+ "loss": 4.165459632873535,
+ "step": 957
+ },
+ {
+ "epoch": 13.307557885539538,
+ "grad_norm": 0.3232237696647644,
+ "learning_rate": 0.0006,
+ "loss": 4.2107439041137695,
+ "step": 958
+ },
+ {
+ "epoch": 13.321537789427698,
+ "grad_norm": 0.3133196234703064,
+ "learning_rate": 0.0006,
+ "loss": 4.184182167053223,
+ "step": 959
+ },
+ {
+ "epoch": 13.33551769331586,
+ "grad_norm": 0.296129435300827,
+ "learning_rate": 0.0006,
+ "loss": 4.168312072753906,
+ "step": 960
+ },
+ {
+ "epoch": 13.349497597204019,
+ "grad_norm": 0.2685348391532898,
+ "learning_rate": 0.0006,
+ "loss": 4.159984588623047,
+ "step": 961
+ },
+ {
+ "epoch": 13.36347750109218,
+ "grad_norm": 0.2644975781440735,
+ "learning_rate": 0.0006,
+ "loss": 4.164909362792969,
+ "step": 962
+ },
+ {
+ "epoch": 13.37745740498034,
+ "grad_norm": 0.2712913155555725,
+ "learning_rate": 0.0006,
+ "loss": 4.158056259155273,
+ "step": 963
+ },
+ {
+ "epoch": 13.391437308868502,
+ "grad_norm": 0.2687259316444397,
+ "learning_rate": 0.0006,
+ "loss": 4.182924270629883,
+ "step": 964
+ },
+ {
+ "epoch": 13.405417212756662,
+ "grad_norm": 0.25640392303466797,
+ "learning_rate": 0.0006,
+ "loss": 4.153351783752441,
+ "step": 965
+ },
+ {
+ "epoch": 13.419397116644824,
+ "grad_norm": 0.2646305561065674,
+ "learning_rate": 0.0006,
+ "loss": 4.18464469909668,
+ "step": 966
+ },
+ {
+ "epoch": 13.433377020532983,
+ "grad_norm": 0.24206851422786713,
+ "learning_rate": 0.0006,
+ "loss": 4.127564430236816,
+ "step": 967
+ },
+ {
+ "epoch": 13.447356924421145,
+ "grad_norm": 0.23800471425056458,
+ "learning_rate": 0.0006,
+ "loss": 4.163488388061523,
+ "step": 968
+ },
+ {
+ "epoch": 13.461336828309305,
+ "grad_norm": 0.22957314550876617,
+ "learning_rate": 0.0006,
+ "loss": 4.178133964538574,
+ "step": 969
+ },
+ {
+ "epoch": 13.475316732197467,
+ "grad_norm": 0.22867488861083984,
+ "learning_rate": 0.0006,
+ "loss": 4.159056186676025,
+ "step": 970
+ },
+ {
+ "epoch": 13.489296636085626,
+ "grad_norm": 0.21737419068813324,
+ "learning_rate": 0.0006,
+ "loss": 4.138628005981445,
+ "step": 971
+ },
+ {
+ "epoch": 13.503276539973788,
+ "grad_norm": 0.2319175899028778,
+ "learning_rate": 0.0006,
+ "loss": 4.14644718170166,
+ "step": 972
+ },
+ {
+ "epoch": 13.517256443861948,
+ "grad_norm": 0.2572193443775177,
+ "learning_rate": 0.0006,
+ "loss": 4.175213813781738,
+ "step": 973
+ },
+ {
+ "epoch": 13.53123634775011,
+ "grad_norm": 0.23483099043369293,
+ "learning_rate": 0.0006,
+ "loss": 4.133171558380127,
+ "step": 974
+ },
+ {
+ "epoch": 13.54521625163827,
+ "grad_norm": 0.2071552872657776,
+ "learning_rate": 0.0006,
+ "loss": 4.13730525970459,
+ "step": 975
+ },
+ {
+ "epoch": 13.55919615552643,
+ "grad_norm": 0.23074553906917572,
+ "learning_rate": 0.0006,
+ "loss": 4.175051689147949,
+ "step": 976
+ },
+ {
+ "epoch": 13.57317605941459,
+ "grad_norm": 0.2480078786611557,
+ "learning_rate": 0.0006,
+ "loss": 4.167630672454834,
+ "step": 977
+ },
+ {
+ "epoch": 13.587155963302752,
+ "grad_norm": 0.23444348573684692,
+ "learning_rate": 0.0006,
+ "loss": 4.141780853271484,
+ "step": 978
+ },
+ {
+ "epoch": 13.601135867190912,
+ "grad_norm": 0.2227829396724701,
+ "learning_rate": 0.0006,
+ "loss": 4.157566547393799,
+ "step": 979
+ },
+ {
+ "epoch": 13.615115771079074,
+ "grad_norm": 0.21478354930877686,
+ "learning_rate": 0.0006,
+ "loss": 4.131053447723389,
+ "step": 980
+ },
+ {
+ "epoch": 13.629095674967235,
+ "grad_norm": 0.1978664994239807,
+ "learning_rate": 0.0006,
+ "loss": 4.123660564422607,
+ "step": 981
+ },
+ {
+ "epoch": 13.643075578855395,
+ "grad_norm": 0.19980201125144958,
+ "learning_rate": 0.0006,
+ "loss": 4.174160480499268,
+ "step": 982
+ },
+ {
+ "epoch": 13.657055482743557,
+ "grad_norm": 0.19815555214881897,
+ "learning_rate": 0.0006,
+ "loss": 4.181703090667725,
+ "step": 983
+ },
+ {
+ "epoch": 13.671035386631717,
+ "grad_norm": 0.19524012506008148,
+ "learning_rate": 0.0006,
+ "loss": 4.163766860961914,
+ "step": 984
+ },
+ {
+ "epoch": 13.685015290519878,
+ "grad_norm": 0.2286096215248108,
+ "learning_rate": 0.0006,
+ "loss": 4.172213554382324,
+ "step": 985
+ },
+ {
+ "epoch": 13.698995194408038,
+ "grad_norm": 0.2210782766342163,
+ "learning_rate": 0.0006,
+ "loss": 4.187033653259277,
+ "step": 986
+ },
+ {
+ "epoch": 13.7129750982962,
+ "grad_norm": 0.21874216198921204,
+ "learning_rate": 0.0006,
+ "loss": 4.125125885009766,
+ "step": 987
+ },
+ {
+ "epoch": 13.72695500218436,
+ "grad_norm": 0.22848057746887207,
+ "learning_rate": 0.0006,
+ "loss": 4.153496742248535,
+ "step": 988
+ },
+ {
+ "epoch": 13.740934906072521,
+ "grad_norm": 0.2250450700521469,
+ "learning_rate": 0.0006,
+ "loss": 4.149165630340576,
+ "step": 989
+ },
+ {
+ "epoch": 13.754914809960681,
+ "grad_norm": 0.21443772315979004,
+ "learning_rate": 0.0006,
+ "loss": 4.1528825759887695,
+ "step": 990
+ },
+ {
+ "epoch": 13.768894713848843,
+ "grad_norm": 0.21927927434444427,
+ "learning_rate": 0.0006,
+ "loss": 4.146831512451172,
+ "step": 991
+ },
+ {
+ "epoch": 13.782874617737003,
+ "grad_norm": 0.2413124144077301,
+ "learning_rate": 0.0006,
+ "loss": 4.136909008026123,
+ "step": 992
+ },
+ {
+ "epoch": 13.796854521625164,
+ "grad_norm": 0.2603479325771332,
+ "learning_rate": 0.0006,
+ "loss": 4.12525749206543,
+ "step": 993
+ },
+ {
+ "epoch": 13.810834425513324,
+ "grad_norm": 0.26246970891952515,
+ "learning_rate": 0.0006,
+ "loss": 4.114049434661865,
+ "step": 994
+ },
+ {
+ "epoch": 13.824814329401486,
+ "grad_norm": 0.27031877636909485,
+ "learning_rate": 0.0006,
+ "loss": 4.1646552085876465,
+ "step": 995
+ },
+ {
+ "epoch": 13.838794233289645,
+ "grad_norm": 0.2499857395887375,
+ "learning_rate": 0.0006,
+ "loss": 4.139284133911133,
+ "step": 996
+ },
+ {
+ "epoch": 13.852774137177807,
+ "grad_norm": 0.22026537358760834,
+ "learning_rate": 0.0006,
+ "loss": 4.142191410064697,
+ "step": 997
+ },
+ {
+ "epoch": 13.866754041065967,
+ "grad_norm": 0.23738551139831543,
+ "learning_rate": 0.0006,
+ "loss": 4.1422882080078125,
+ "step": 998
+ },
+ {
+ "epoch": 13.880733944954128,
+ "grad_norm": 0.2416357398033142,
+ "learning_rate": 0.0006,
+ "loss": 4.14063835144043,
+ "step": 999
+ },
+ {
+ "epoch": 13.89471384884229,
+ "grad_norm": 0.33822184801101685,
+ "learning_rate": 0.0006,
+ "loss": 4.12839412689209,
+ "step": 1000
+ },
+ {
+ "epoch": 13.90869375273045,
+ "grad_norm": 0.3409678339958191,
+ "learning_rate": 0.0006,
+ "loss": 4.145351886749268,
+ "step": 1001
+ },
+ {
+ "epoch": 13.922673656618612,
+ "grad_norm": 0.2467597872018814,
+ "learning_rate": 0.0006,
+ "loss": 4.155339241027832,
+ "step": 1002
+ },
+ {
+ "epoch": 13.936653560506771,
+ "grad_norm": 0.2314649075269699,
+ "learning_rate": 0.0006,
+ "loss": 4.130176067352295,
+ "step": 1003
+ },
+ {
+ "epoch": 13.950633464394933,
+ "grad_norm": 0.23701290786266327,
+ "learning_rate": 0.0006,
+ "loss": 4.19205379486084,
+ "step": 1004
+ },
+ {
+ "epoch": 13.964613368283093,
+ "grad_norm": 0.2466491460800171,
+ "learning_rate": 0.0006,
+ "loss": 4.118908882141113,
+ "step": 1005
+ },
+ {
+ "epoch": 13.978593272171254,
+ "grad_norm": 0.23746836185455322,
+ "learning_rate": 0.0006,
+ "loss": 4.16111946105957,
+ "step": 1006
+ },
+ {
+ "epoch": 13.992573176059414,
+ "grad_norm": 0.24497751891613007,
+ "learning_rate": 0.0006,
+ "loss": 4.148624420166016,
+ "step": 1007
+ },
+ {
+ "epoch": 14.0,
+ "grad_norm": 0.25735899806022644,
+ "learning_rate": 0.0006,
+ "loss": 4.12002420425415,
+ "step": 1008
+ },
+ {
+ "epoch": 14.0,
+ "eval_loss": 4.335351467132568,
+ "eval_runtime": 44.0523,
+ "eval_samples_per_second": 55.434,
+ "eval_steps_per_second": 3.473,
+ "step": 1008
+ },
+ {
+ "epoch": 14.013979903888162,
+ "grad_norm": 0.24570082128047943,
+ "learning_rate": 0.0006,
+ "loss": 4.1036176681518555,
+ "step": 1009
+ },
+ {
+ "epoch": 14.027959807776321,
+ "grad_norm": 0.2525855302810669,
+ "learning_rate": 0.0006,
+ "loss": 4.142077445983887,
+ "step": 1010
+ },
+ {
+ "epoch": 14.041939711664483,
+ "grad_norm": 0.2701111435890198,
+ "learning_rate": 0.0006,
+ "loss": 4.096988677978516,
+ "step": 1011
+ },
+ {
+ "epoch": 14.055919615552643,
+ "grad_norm": 0.28173309564590454,
+ "learning_rate": 0.0006,
+ "loss": 4.148448944091797,
+ "step": 1012
+ },
+ {
+ "epoch": 14.069899519440805,
+ "grad_norm": 0.2651294469833374,
+ "learning_rate": 0.0006,
+ "loss": 4.121731281280518,
+ "step": 1013
+ },
+ {
+ "epoch": 14.083879423328964,
+ "grad_norm": 0.21160121262073517,
+ "learning_rate": 0.0006,
+ "loss": 4.108980178833008,
+ "step": 1014
+ },
+ {
+ "epoch": 14.097859327217126,
+ "grad_norm": 0.24786953628063202,
+ "learning_rate": 0.0006,
+ "loss": 4.133942604064941,
+ "step": 1015
+ },
+ {
+ "epoch": 14.111839231105286,
+ "grad_norm": 0.2722747027873993,
+ "learning_rate": 0.0006,
+ "loss": 4.115242958068848,
+ "step": 1016
+ },
+ {
+ "epoch": 14.125819134993447,
+ "grad_norm": 0.273360013961792,
+ "learning_rate": 0.0006,
+ "loss": 4.059296607971191,
+ "step": 1017
+ },
+ {
+ "epoch": 14.139799038881607,
+ "grad_norm": 0.2541784942150116,
+ "learning_rate": 0.0006,
+ "loss": 4.118365287780762,
+ "step": 1018
+ },
+ {
+ "epoch": 14.153778942769769,
+ "grad_norm": 0.23806381225585938,
+ "learning_rate": 0.0006,
+ "loss": 4.102812767028809,
+ "step": 1019
+ },
+ {
+ "epoch": 14.167758846657929,
+ "grad_norm": 0.2541005313396454,
+ "learning_rate": 0.0006,
+ "loss": 4.093264579772949,
+ "step": 1020
+ },
+ {
+ "epoch": 14.18173875054609,
+ "grad_norm": 0.2619539499282837,
+ "learning_rate": 0.0006,
+ "loss": 4.114917278289795,
+ "step": 1021
+ },
+ {
+ "epoch": 14.19571865443425,
+ "grad_norm": 0.2466963529586792,
+ "learning_rate": 0.0006,
+ "loss": 4.098258972167969,
+ "step": 1022
+ },
+ {
+ "epoch": 14.209698558322412,
+ "grad_norm": 0.24341611564159393,
+ "learning_rate": 0.0006,
+ "loss": 4.109346389770508,
+ "step": 1023
+ },
+ {
+ "epoch": 14.223678462210572,
+ "grad_norm": 0.23977765440940857,
+ "learning_rate": 0.0006,
+ "loss": 4.106716156005859,
+ "step": 1024
+ },
+ {
+ "epoch": 14.237658366098733,
+ "grad_norm": 0.253528356552124,
+ "learning_rate": 0.0006,
+ "loss": 4.102226257324219,
+ "step": 1025
+ },
+ {
+ "epoch": 14.251638269986893,
+ "grad_norm": 0.26954543590545654,
+ "learning_rate": 0.0006,
+ "loss": 4.107413291931152,
+ "step": 1026
+ },
+ {
+ "epoch": 14.265618173875055,
+ "grad_norm": 0.2610514760017395,
+ "learning_rate": 0.0006,
+ "loss": 4.110824108123779,
+ "step": 1027
+ },
+ {
+ "epoch": 14.279598077763215,
+ "grad_norm": 0.2579168677330017,
+ "learning_rate": 0.0006,
+ "loss": 4.082438945770264,
+ "step": 1028
+ },
+ {
+ "epoch": 14.293577981651376,
+ "grad_norm": 0.26916536688804626,
+ "learning_rate": 0.0006,
+ "loss": 4.075734615325928,
+ "step": 1029
+ },
+ {
+ "epoch": 14.307557885539538,
+ "grad_norm": 0.2998618185520172,
+ "learning_rate": 0.0006,
+ "loss": 4.088419437408447,
+ "step": 1030
+ },
+ {
+ "epoch": 14.321537789427698,
+ "grad_norm": 0.3162737190723419,
+ "learning_rate": 0.0006,
+ "loss": 4.125833034515381,
+ "step": 1031
+ },
+ {
+ "epoch": 14.33551769331586,
+ "grad_norm": 0.318601131439209,
+ "learning_rate": 0.0006,
+ "loss": 4.077424049377441,
+ "step": 1032
+ },
+ {
+ "epoch": 14.349497597204019,
+ "grad_norm": 0.32113415002822876,
+ "learning_rate": 0.0006,
+ "loss": 4.113360404968262,
+ "step": 1033
+ },
+ {
+ "epoch": 14.36347750109218,
+ "grad_norm": 0.3150886297225952,
+ "learning_rate": 0.0006,
+ "loss": 4.100013732910156,
+ "step": 1034
+ },
+ {
+ "epoch": 14.37745740498034,
+ "grad_norm": 0.29279956221580505,
+ "learning_rate": 0.0006,
+ "loss": 4.136394500732422,
+ "step": 1035
+ },
+ {
+ "epoch": 14.391437308868502,
+ "grad_norm": 0.28532543778419495,
+ "learning_rate": 0.0006,
+ "loss": 4.138948440551758,
+ "step": 1036
+ },
+ {
+ "epoch": 14.405417212756662,
+ "grad_norm": 0.2825978398323059,
+ "learning_rate": 0.0006,
+ "loss": 4.112217903137207,
+ "step": 1037
+ },
+ {
+ "epoch": 14.419397116644824,
+ "grad_norm": 0.2891198694705963,
+ "learning_rate": 0.0006,
+ "loss": 4.102682113647461,
+ "step": 1038
+ },
+ {
+ "epoch": 14.433377020532983,
+ "grad_norm": 0.2917391061782837,
+ "learning_rate": 0.0006,
+ "loss": 4.120752811431885,
+ "step": 1039
+ },
+ {
+ "epoch": 14.447356924421145,
+ "grad_norm": 0.2589806914329529,
+ "learning_rate": 0.0006,
+ "loss": 4.130519390106201,
+ "step": 1040
+ },
+ {
+ "epoch": 14.461336828309305,
+ "grad_norm": 0.2674788534641266,
+ "learning_rate": 0.0006,
+ "loss": 4.130382537841797,
+ "step": 1041
+ },
+ {
+ "epoch": 14.475316732197467,
+ "grad_norm": 0.2820362150669098,
+ "learning_rate": 0.0006,
+ "loss": 4.13947868347168,
+ "step": 1042
+ },
+ {
+ "epoch": 14.489296636085626,
+ "grad_norm": 0.2650109529495239,
+ "learning_rate": 0.0006,
+ "loss": 4.130346775054932,
+ "step": 1043
+ },
+ {
+ "epoch": 14.503276539973788,
+ "grad_norm": 0.29137638211250305,
+ "learning_rate": 0.0006,
+ "loss": 4.055751800537109,
+ "step": 1044
+ },
+ {
+ "epoch": 14.517256443861948,
+ "grad_norm": 0.3232433497905731,
+ "learning_rate": 0.0006,
+ "loss": 4.114810943603516,
+ "step": 1045
+ },
+ {
+ "epoch": 14.53123634775011,
+ "grad_norm": 0.2724473476409912,
+ "learning_rate": 0.0006,
+ "loss": 4.088351249694824,
+ "step": 1046
+ },
+ {
+ "epoch": 14.54521625163827,
+ "grad_norm": 0.23994430899620056,
+ "learning_rate": 0.0006,
+ "loss": 4.110936164855957,
+ "step": 1047
+ },
+ {
+ "epoch": 14.55919615552643,
+ "grad_norm": 0.2422720044851303,
+ "learning_rate": 0.0006,
+ "loss": 4.132844924926758,
+ "step": 1048
+ },
+ {
+ "epoch": 14.57317605941459,
+ "grad_norm": 0.21148815751075745,
+ "learning_rate": 0.0006,
+ "loss": 4.102499961853027,
+ "step": 1049
+ },
+ {
+ "epoch": 14.587155963302752,
+ "grad_norm": 0.22221639752388,
+ "learning_rate": 0.0006,
+ "loss": 4.126241683959961,
+ "step": 1050
+ },
+ {
+ "epoch": 14.601135867190912,
+ "grad_norm": 0.2538735866546631,
+ "learning_rate": 0.0006,
+ "loss": 4.116817951202393,
+ "step": 1051
+ },
+ {
+ "epoch": 14.615115771079074,
+ "grad_norm": 0.2555900514125824,
+ "learning_rate": 0.0006,
+ "loss": 4.106309413909912,
+ "step": 1052
+ },
+ {
+ "epoch": 14.629095674967235,
+ "grad_norm": 0.24753783643245697,
+ "learning_rate": 0.0006,
+ "loss": 4.1015119552612305,
+ "step": 1053
+ },
+ {
+ "epoch": 14.643075578855395,
+ "grad_norm": 0.238885298371315,
+ "learning_rate": 0.0006,
+ "loss": 4.120419502258301,
+ "step": 1054
+ },
+ {
+ "epoch": 14.657055482743557,
+ "grad_norm": 0.22693610191345215,
+ "learning_rate": 0.0006,
+ "loss": 4.084968566894531,
+ "step": 1055
+ },
+ {
+ "epoch": 14.671035386631717,
+ "grad_norm": 0.2100025862455368,
+ "learning_rate": 0.0006,
+ "loss": 4.108001708984375,
+ "step": 1056
+ },
+ {
+ "epoch": 14.685015290519878,
+ "grad_norm": 0.20437054336071014,
+ "learning_rate": 0.0006,
+ "loss": 4.151417255401611,
+ "step": 1057
+ },
+ {
+ "epoch": 14.698995194408038,
+ "grad_norm": 0.1926720291376114,
+ "learning_rate": 0.0006,
+ "loss": 4.091334342956543,
+ "step": 1058
+ },
+ {
+ "epoch": 14.7129750982962,
+ "grad_norm": 0.2120140641927719,
+ "learning_rate": 0.0006,
+ "loss": 4.111706256866455,
+ "step": 1059
+ },
+ {
+ "epoch": 14.72695500218436,
+ "grad_norm": 0.22877076268196106,
+ "learning_rate": 0.0006,
+ "loss": 4.123166084289551,
+ "step": 1060
+ },
+ {
+ "epoch": 14.740934906072521,
+ "grad_norm": 0.22149473428726196,
+ "learning_rate": 0.0006,
+ "loss": 4.099740028381348,
+ "step": 1061
+ },
+ {
+ "epoch": 14.754914809960681,
+ "grad_norm": 0.2351604402065277,
+ "learning_rate": 0.0006,
+ "loss": 4.066174507141113,
+ "step": 1062
+ },
+ {
+ "epoch": 14.768894713848843,
+ "grad_norm": 0.22895802557468414,
+ "learning_rate": 0.0006,
+ "loss": 4.101897239685059,
+ "step": 1063
+ },
+ {
+ "epoch": 14.782874617737003,
+ "grad_norm": 0.22050750255584717,
+ "learning_rate": 0.0006,
+ "loss": 4.122953414916992,
+ "step": 1064
+ },
+ {
+ "epoch": 14.796854521625164,
+ "grad_norm": 0.23255324363708496,
+ "learning_rate": 0.0006,
+ "loss": 4.11297607421875,
+ "step": 1065
+ },
+ {
+ "epoch": 14.810834425513324,
+ "grad_norm": 0.24522703886032104,
+ "learning_rate": 0.0006,
+ "loss": 4.131030082702637,
+ "step": 1066
+ },
+ {
+ "epoch": 14.824814329401486,
+ "grad_norm": 0.2492702752351761,
+ "learning_rate": 0.0006,
+ "loss": 4.076324939727783,
+ "step": 1067
+ },
+ {
+ "epoch": 14.838794233289645,
+ "grad_norm": 0.24410948157310486,
+ "learning_rate": 0.0006,
+ "loss": 4.109020709991455,
+ "step": 1068
+ },
+ {
+ "epoch": 14.852774137177807,
+ "grad_norm": 0.2463168203830719,
+ "learning_rate": 0.0006,
+ "loss": 4.135679244995117,
+ "step": 1069
+ },
+ {
+ "epoch": 14.866754041065967,
+ "grad_norm": 0.2563146650791168,
+ "learning_rate": 0.0006,
+ "loss": 4.0958027839660645,
+ "step": 1070
+ },
+ {
+ "epoch": 14.880733944954128,
+ "grad_norm": 0.261167049407959,
+ "learning_rate": 0.0006,
+ "loss": 4.114803314208984,
+ "step": 1071
+ },
+ {
+ "epoch": 14.89471384884229,
+ "grad_norm": 0.2593795955181122,
+ "learning_rate": 0.0006,
+ "loss": 4.1210618019104,
+ "step": 1072
+ },
+ {
+ "epoch": 14.90869375273045,
+ "grad_norm": 0.27184173464775085,
+ "learning_rate": 0.0006,
+ "loss": 4.095145225524902,
+ "step": 1073
+ },
+ {
+ "epoch": 14.922673656618612,
+ "grad_norm": 0.25289732217788696,
+ "learning_rate": 0.0006,
+ "loss": 4.107388973236084,
+ "step": 1074
+ },
+ {
+ "epoch": 14.936653560506771,
+ "grad_norm": 0.2176840454339981,
+ "learning_rate": 0.0006,
+ "loss": 4.105966567993164,
+ "step": 1075
+ },
+ {
+ "epoch": 14.950633464394933,
+ "grad_norm": 0.20930173993110657,
+ "learning_rate": 0.0006,
+ "loss": 4.126853942871094,
+ "step": 1076
+ },
+ {
+ "epoch": 14.964613368283093,
+ "grad_norm": 0.20850051939487457,
+ "learning_rate": 0.0006,
+ "loss": 4.074934959411621,
+ "step": 1077
+ },
+ {
+ "epoch": 14.978593272171254,
+ "grad_norm": 0.21987544000148773,
+ "learning_rate": 0.0006,
+ "loss": 4.123321533203125,
+ "step": 1078
+ },
+ {
+ "epoch": 14.992573176059414,
+ "grad_norm": 0.23821689188480377,
+ "learning_rate": 0.0006,
+ "loss": 4.082647323608398,
+ "step": 1079
+ },
+ {
+ "epoch": 15.0,
+ "grad_norm": 0.2590881288051605,
+ "learning_rate": 0.0006,
+ "loss": 4.113482475280762,
+ "step": 1080
+ },
+ {
+ "epoch": 15.0,
+ "eval_loss": 4.286936283111572,
+ "eval_runtime": 44.2665,
+ "eval_samples_per_second": 55.166,
+ "eval_steps_per_second": 3.456,
+ "step": 1080
+ },
+ {
+ "epoch": 15.013979903888162,
+ "grad_norm": 0.27885961532592773,
+ "learning_rate": 0.0006,
+ "loss": 4.0825958251953125,
+ "step": 1081
+ },
+ {
+ "epoch": 15.027959807776321,
+ "grad_norm": 0.2751246690750122,
+ "learning_rate": 0.0006,
+ "loss": 4.049782752990723,
+ "step": 1082
+ },
+ {
+ "epoch": 15.041939711664483,
+ "grad_norm": 0.25238561630249023,
+ "learning_rate": 0.0006,
+ "loss": 4.067366600036621,
+ "step": 1083
+ },
+ {
+ "epoch": 15.055919615552643,
+ "grad_norm": 0.27481040358543396,
+ "learning_rate": 0.0006,
+ "loss": 4.089946746826172,
+ "step": 1084
+ },
+ {
+ "epoch": 15.069899519440805,
+ "grad_norm": 0.2666703164577484,
+ "learning_rate": 0.0006,
+ "loss": 4.071957588195801,
+ "step": 1085
+ },
+ {
+ "epoch": 15.083879423328964,
+ "grad_norm": 0.2532065212726593,
+ "learning_rate": 0.0006,
+ "loss": 4.091561794281006,
+ "step": 1086
+ },
+ {
+ "epoch": 15.097859327217126,
+ "grad_norm": 0.23562374711036682,
+ "learning_rate": 0.0006,
+ "loss": 4.074953079223633,
+ "step": 1087
+ },
+ {
+ "epoch": 15.111839231105286,
+ "grad_norm": 0.2498065084218979,
+ "learning_rate": 0.0006,
+ "loss": 4.056004047393799,
+ "step": 1088
+ },
+ {
+ "epoch": 15.125819134993447,
+ "grad_norm": 0.257046639919281,
+ "learning_rate": 0.0006,
+ "loss": 4.044149875640869,
+ "step": 1089
+ },
+ {
+ "epoch": 15.139799038881607,
+ "grad_norm": 0.2417808622121811,
+ "learning_rate": 0.0006,
+ "loss": 4.071811676025391,
+ "step": 1090
+ },
+ {
+ "epoch": 15.153778942769769,
+ "grad_norm": 0.24742013216018677,
+ "learning_rate": 0.0006,
+ "loss": 4.081482887268066,
+ "step": 1091
+ },
+ {
+ "epoch": 15.167758846657929,
+ "grad_norm": 0.2610231637954712,
+ "learning_rate": 0.0006,
+ "loss": 4.06953763961792,
+ "step": 1092
+ },
+ {
+ "epoch": 15.18173875054609,
+ "grad_norm": 0.24688200652599335,
+ "learning_rate": 0.0006,
+ "loss": 4.079700469970703,
+ "step": 1093
+ },
+ {
+ "epoch": 15.19571865443425,
+ "grad_norm": 0.2650167942047119,
+ "learning_rate": 0.0006,
+ "loss": 4.082088947296143,
+ "step": 1094
+ },
+ {
+ "epoch": 15.209698558322412,
+ "grad_norm": 0.25913330912590027,
+ "learning_rate": 0.0006,
+ "loss": 4.081713676452637,
+ "step": 1095
+ },
+ {
+ "epoch": 15.223678462210572,
+ "grad_norm": 0.2547631561756134,
+ "learning_rate": 0.0006,
+ "loss": 4.073573112487793,
+ "step": 1096
+ },
+ {
+ "epoch": 15.237658366098733,
+ "grad_norm": 0.2732609510421753,
+ "learning_rate": 0.0006,
+ "loss": 4.10186767578125,
+ "step": 1097
+ },
+ {
+ "epoch": 15.251638269986893,
+ "grad_norm": 0.2990017533302307,
+ "learning_rate": 0.0006,
+ "loss": 4.085466384887695,
+ "step": 1098
+ },
+ {
+ "epoch": 15.265618173875055,
+ "grad_norm": 0.30252209305763245,
+ "learning_rate": 0.0006,
+ "loss": 4.077337265014648,
+ "step": 1099
+ },
+ {
+ "epoch": 15.279598077763215,
+ "grad_norm": 0.30046045780181885,
+ "learning_rate": 0.0006,
+ "loss": 4.0895891189575195,
+ "step": 1100
+ },
+ {
+ "epoch": 15.293577981651376,
+ "grad_norm": 0.2779843211174011,
+ "learning_rate": 0.0006,
+ "loss": 4.060354709625244,
+ "step": 1101
+ },
+ {
+ "epoch": 15.307557885539538,
+ "grad_norm": 0.26914986968040466,
+ "learning_rate": 0.0006,
+ "loss": 4.07314395904541,
+ "step": 1102
+ },
+ {
+ "epoch": 15.321537789427698,
+ "grad_norm": 0.24605873227119446,
+ "learning_rate": 0.0006,
+ "loss": 4.051377296447754,
+ "step": 1103
+ },
+ {
+ "epoch": 15.33551769331586,
+ "grad_norm": 0.25634095072746277,
+ "learning_rate": 0.0006,
+ "loss": 4.082427024841309,
+ "step": 1104
+ },
+ {
+ "epoch": 15.349497597204019,
+ "grad_norm": 0.2888158857822418,
+ "learning_rate": 0.0006,
+ "loss": 4.074253082275391,
+ "step": 1105
+ },
+ {
+ "epoch": 15.36347750109218,
+ "grad_norm": 0.2758261561393738,
+ "learning_rate": 0.0006,
+ "loss": 4.08344841003418,
+ "step": 1106
+ },
+ {
+ "epoch": 15.37745740498034,
+ "grad_norm": 0.26937270164489746,
+ "learning_rate": 0.0006,
+ "loss": 4.063424587249756,
+ "step": 1107
+ },
+ {
+ "epoch": 15.391437308868502,
+ "grad_norm": 0.2739955484867096,
+ "learning_rate": 0.0006,
+ "loss": 4.08005952835083,
+ "step": 1108
+ },
+ {
+ "epoch": 15.405417212756662,
+ "grad_norm": 0.2635386288166046,
+ "learning_rate": 0.0006,
+ "loss": 4.087360382080078,
+ "step": 1109
+ },
+ {
+ "epoch": 15.419397116644824,
+ "grad_norm": 0.2619768977165222,
+ "learning_rate": 0.0006,
+ "loss": 4.072653770446777,
+ "step": 1110
+ },
+ {
+ "epoch": 15.433377020532983,
+ "grad_norm": 0.24154804646968842,
+ "learning_rate": 0.0006,
+ "loss": 4.084464073181152,
+ "step": 1111
+ },
+ {
+ "epoch": 15.447356924421145,
+ "grad_norm": 0.24236027896404266,
+ "learning_rate": 0.0006,
+ "loss": 4.078777313232422,
+ "step": 1112
+ },
+ {
+ "epoch": 15.461336828309305,
+ "grad_norm": 0.24653038382530212,
+ "learning_rate": 0.0006,
+ "loss": 4.075024604797363,
+ "step": 1113
+ },
+ {
+ "epoch": 15.475316732197467,
+ "grad_norm": 0.27106523513793945,
+ "learning_rate": 0.0006,
+ "loss": 4.060937881469727,
+ "step": 1114
+ },
+ {
+ "epoch": 15.489296636085626,
+ "grad_norm": 0.25109633803367615,
+ "learning_rate": 0.0006,
+ "loss": 4.081971168518066,
+ "step": 1115
+ },
+ {
+ "epoch": 15.503276539973788,
+ "grad_norm": 0.23452287912368774,
+ "learning_rate": 0.0006,
+ "loss": 4.0762834548950195,
+ "step": 1116
+ },
+ {
+ "epoch": 15.517256443861948,
+ "grad_norm": 0.25415024161338806,
+ "learning_rate": 0.0006,
+ "loss": 4.069386959075928,
+ "step": 1117
+ },
+ {
+ "epoch": 15.53123634775011,
+ "grad_norm": 0.25448229908943176,
+ "learning_rate": 0.0006,
+ "loss": 4.075098514556885,
+ "step": 1118
+ },
+ {
+ "epoch": 15.54521625163827,
+ "grad_norm": 0.25679755210876465,
+ "learning_rate": 0.0006,
+ "loss": 4.097431182861328,
+ "step": 1119
+ },
+ {
+ "epoch": 15.55919615552643,
+ "grad_norm": 0.25973212718963623,
+ "learning_rate": 0.0006,
+ "loss": 4.058948516845703,
+ "step": 1120
+ },
+ {
+ "epoch": 15.57317605941459,
+ "grad_norm": 0.24511456489562988,
+ "learning_rate": 0.0006,
+ "loss": 4.092263698577881,
+ "step": 1121
+ },
+ {
+ "epoch": 15.587155963302752,
+ "grad_norm": 0.22949442267417908,
+ "learning_rate": 0.0006,
+ "loss": 4.0526604652404785,
+ "step": 1122
+ },
+ {
+ "epoch": 15.601135867190912,
+ "grad_norm": 0.22486285865306854,
+ "learning_rate": 0.0006,
+ "loss": 4.051939010620117,
+ "step": 1123
+ },
+ {
+ "epoch": 15.615115771079074,
+ "grad_norm": 0.22183601558208466,
+ "learning_rate": 0.0006,
+ "loss": 4.065430641174316,
+ "step": 1124
+ },
+ {
+ "epoch": 15.629095674967235,
+ "grad_norm": 0.2531328797340393,
+ "learning_rate": 0.0006,
+ "loss": 4.069165229797363,
+ "step": 1125
+ },
+ {
+ "epoch": 15.643075578855395,
+ "grad_norm": 0.24403320252895355,
+ "learning_rate": 0.0006,
+ "loss": 4.055041790008545,
+ "step": 1126
+ },
+ {
+ "epoch": 15.657055482743557,
+ "grad_norm": 0.24504756927490234,
+ "learning_rate": 0.0006,
+ "loss": 4.035850524902344,
+ "step": 1127
+ },
+ {
+ "epoch": 15.671035386631717,
+ "grad_norm": 0.23812057077884674,
+ "learning_rate": 0.0006,
+ "loss": 4.049278259277344,
+ "step": 1128
+ },
+ {
+ "epoch": 15.685015290519878,
+ "grad_norm": 0.23694153130054474,
+ "learning_rate": 0.0006,
+ "loss": 4.065816402435303,
+ "step": 1129
+ },
+ {
+ "epoch": 15.698995194408038,
+ "grad_norm": 0.23252786695957184,
+ "learning_rate": 0.0006,
+ "loss": 4.05952262878418,
+ "step": 1130
+ },
+ {
+ "epoch": 15.7129750982962,
+ "grad_norm": 0.2243805080652237,
+ "learning_rate": 0.0006,
+ "loss": 4.058291435241699,
+ "step": 1131
+ },
+ {
+ "epoch": 15.72695500218436,
+ "grad_norm": 0.2200988084077835,
+ "learning_rate": 0.0006,
+ "loss": 4.040788650512695,
+ "step": 1132
+ },
+ {
+ "epoch": 15.740934906072521,
+ "grad_norm": 0.21460631489753723,
+ "learning_rate": 0.0006,
+ "loss": 4.072552680969238,
+ "step": 1133
+ },
+ {
+ "epoch": 15.754914809960681,
+ "grad_norm": 0.2056441456079483,
+ "learning_rate": 0.0006,
+ "loss": 4.059467315673828,
+ "step": 1134
+ },
+ {
+ "epoch": 15.768894713848843,
+ "grad_norm": 0.2068045437335968,
+ "learning_rate": 0.0006,
+ "loss": 4.063803195953369,
+ "step": 1135
+ },
+ {
+ "epoch": 15.782874617737003,
+ "grad_norm": 0.21307601034641266,
+ "learning_rate": 0.0006,
+ "loss": 4.093092918395996,
+ "step": 1136
+ },
+ {
+ "epoch": 15.796854521625164,
+ "grad_norm": 0.20729634165763855,
+ "learning_rate": 0.0006,
+ "loss": 4.066030502319336,
+ "step": 1137
+ },
+ {
+ "epoch": 15.810834425513324,
+ "grad_norm": 0.2097514122724533,
+ "learning_rate": 0.0006,
+ "loss": 4.077326774597168,
+ "step": 1138
+ },
+ {
+ "epoch": 15.824814329401486,
+ "grad_norm": 0.21884000301361084,
+ "learning_rate": 0.0006,
+ "loss": 4.0595598220825195,
+ "step": 1139
+ },
+ {
+ "epoch": 15.838794233289645,
+ "grad_norm": 0.22220250964164734,
+ "learning_rate": 0.0006,
+ "loss": 4.061574459075928,
+ "step": 1140
+ },
+ {
+ "epoch": 15.852774137177807,
+ "grad_norm": 0.23189949989318848,
+ "learning_rate": 0.0006,
+ "loss": 4.0504045486450195,
+ "step": 1141
+ },
+ {
+ "epoch": 15.866754041065967,
+ "grad_norm": 0.226649671792984,
+ "learning_rate": 0.0006,
+ "loss": 4.060986518859863,
+ "step": 1142
+ },
+ {
+ "epoch": 15.880733944954128,
+ "grad_norm": 0.2456834763288498,
+ "learning_rate": 0.0006,
+ "loss": 4.038525581359863,
+ "step": 1143
+ },
+ {
+ "epoch": 15.89471384884229,
+ "grad_norm": 0.2818352282047272,
+ "learning_rate": 0.0006,
+ "loss": 4.062709331512451,
+ "step": 1144
+ },
+ {
+ "epoch": 15.90869375273045,
+ "grad_norm": 0.2850170135498047,
+ "learning_rate": 0.0006,
+ "loss": 4.0683274269104,
+ "step": 1145
+ },
+ {
+ "epoch": 15.922673656618612,
+ "grad_norm": 0.27691730856895447,
+ "learning_rate": 0.0006,
+ "loss": 4.076540470123291,
+ "step": 1146
+ },
+ {
+ "epoch": 15.936653560506771,
+ "grad_norm": 0.2685548961162567,
+ "learning_rate": 0.0006,
+ "loss": 4.048116683959961,
+ "step": 1147
+ },
+ {
+ "epoch": 15.950633464394933,
+ "grad_norm": 0.2452288419008255,
+ "learning_rate": 0.0006,
+ "loss": 4.06640625,
+ "step": 1148
+ },
+ {
+ "epoch": 15.964613368283093,
+ "grad_norm": 0.2601441740989685,
+ "learning_rate": 0.0006,
+ "loss": 4.073277473449707,
+ "step": 1149
+ },
+ {
+ "epoch": 15.978593272171254,
+ "grad_norm": 0.2748197913169861,
+ "learning_rate": 0.0006,
+ "loss": 4.0332536697387695,
+ "step": 1150
+ },
+ {
+ "epoch": 15.992573176059414,
+ "grad_norm": 0.27249959111213684,
+ "learning_rate": 0.0006,
+ "loss": 3.9952516555786133,
+ "step": 1151
+ },
+ {
+ "epoch": 16.0,
+ "grad_norm": 0.3475601375102997,
+ "learning_rate": 0.0006,
+ "loss": 4.040761947631836,
+ "step": 1152
+ },
+ {
+ "epoch": 16.0,
+ "eval_loss": 4.237997531890869,
+ "eval_runtime": 43.8692,
+ "eval_samples_per_second": 55.665,
+ "eval_steps_per_second": 3.488,
+ "step": 1152
+ },
+ {
+ "epoch": 16.01397990388816,
+ "grad_norm": 0.3365611433982849,
+ "learning_rate": 0.0006,
+ "loss": 4.031302452087402,
+ "step": 1153
+ },
+ {
+ "epoch": 16.027959807776323,
+ "grad_norm": 0.3020530641078949,
+ "learning_rate": 0.0006,
+ "loss": 4.036273956298828,
+ "step": 1154
+ },
+ {
+ "epoch": 16.041939711664483,
+ "grad_norm": 0.25277993083000183,
+ "learning_rate": 0.0006,
+ "loss": 4.007067680358887,
+ "step": 1155
+ },
+ {
+ "epoch": 16.055919615552643,
+ "grad_norm": 0.24762840569019318,
+ "learning_rate": 0.0006,
+ "loss": 4.046561241149902,
+ "step": 1156
+ },
+ {
+ "epoch": 16.069899519440803,
+ "grad_norm": 0.25236397981643677,
+ "learning_rate": 0.0006,
+ "loss": 4.061616897583008,
+ "step": 1157
+ },
+ {
+ "epoch": 16.083879423328966,
+ "grad_norm": 0.22789105772972107,
+ "learning_rate": 0.0006,
+ "loss": 4.010061740875244,
+ "step": 1158
+ },
+ {
+ "epoch": 16.097859327217126,
+ "grad_norm": 0.21866244077682495,
+ "learning_rate": 0.0006,
+ "loss": 4.0181097984313965,
+ "step": 1159
+ },
+ {
+ "epoch": 16.111839231105286,
+ "grad_norm": 0.21889029443264008,
+ "learning_rate": 0.0006,
+ "loss": 4.012239456176758,
+ "step": 1160
+ },
+ {
+ "epoch": 16.125819134993446,
+ "grad_norm": 0.23002485930919647,
+ "learning_rate": 0.0006,
+ "loss": 4.034092426300049,
+ "step": 1161
+ },
+ {
+ "epoch": 16.13979903888161,
+ "grad_norm": 0.2271798551082611,
+ "learning_rate": 0.0006,
+ "loss": 4.026222229003906,
+ "step": 1162
+ },
+ {
+ "epoch": 16.15377894276977,
+ "grad_norm": 0.238200843334198,
+ "learning_rate": 0.0006,
+ "loss": 4.044692039489746,
+ "step": 1163
+ },
+ {
+ "epoch": 16.16775884665793,
+ "grad_norm": 0.2281467169523239,
+ "learning_rate": 0.0006,
+ "loss": 4.032305717468262,
+ "step": 1164
+ },
+ {
+ "epoch": 16.18173875054609,
+ "grad_norm": 0.2213946431875229,
+ "learning_rate": 0.0006,
+ "loss": 4.048737525939941,
+ "step": 1165
+ },
+ {
+ "epoch": 16.195718654434252,
+ "grad_norm": 0.26638558506965637,
+ "learning_rate": 0.0006,
+ "loss": 4.006335258483887,
+ "step": 1166
+ },
+ {
+ "epoch": 16.209698558322412,
+ "grad_norm": 0.2780219316482544,
+ "learning_rate": 0.0006,
+ "loss": 4.049234390258789,
+ "step": 1167
+ },
+ {
+ "epoch": 16.22367846221057,
+ "grad_norm": 0.27425870299339294,
+ "learning_rate": 0.0006,
+ "loss": 4.017177104949951,
+ "step": 1168
+ },
+ {
+ "epoch": 16.23765836609873,
+ "grad_norm": 0.2596667408943176,
+ "learning_rate": 0.0006,
+ "loss": 4.022942543029785,
+ "step": 1169
+ },
+ {
+ "epoch": 16.251638269986895,
+ "grad_norm": 0.26972314715385437,
+ "learning_rate": 0.0006,
+ "loss": 4.035310745239258,
+ "step": 1170
+ },
+ {
+ "epoch": 16.265618173875055,
+ "grad_norm": 0.2677772045135498,
+ "learning_rate": 0.0006,
+ "loss": 4.0280561447143555,
+ "step": 1171
+ },
+ {
+ "epoch": 16.279598077763215,
+ "grad_norm": 0.25433358550071716,
+ "learning_rate": 0.0006,
+ "loss": 4.03616189956665,
+ "step": 1172
+ },
+ {
+ "epoch": 16.293577981651374,
+ "grad_norm": 0.2583644688129425,
+ "learning_rate": 0.0006,
+ "loss": 4.073624134063721,
+ "step": 1173
+ },
+ {
+ "epoch": 16.307557885539538,
+ "grad_norm": 0.25437524914741516,
+ "learning_rate": 0.0006,
+ "loss": 4.057926654815674,
+ "step": 1174
+ },
+ {
+ "epoch": 16.321537789427698,
+ "grad_norm": 0.2819201350212097,
+ "learning_rate": 0.0006,
+ "loss": 4.020838737487793,
+ "step": 1175
+ },
+ {
+ "epoch": 16.335517693315857,
+ "grad_norm": 0.32689282298088074,
+ "learning_rate": 0.0006,
+ "loss": 4.062448501586914,
+ "step": 1176
+ },
+ {
+ "epoch": 16.34949759720402,
+ "grad_norm": 0.33002278208732605,
+ "learning_rate": 0.0006,
+ "loss": 4.052059173583984,
+ "step": 1177
+ },
+ {
+ "epoch": 16.36347750109218,
+ "grad_norm": 0.32472696900367737,
+ "learning_rate": 0.0006,
+ "loss": 4.042375564575195,
+ "step": 1178
+ },
+ {
+ "epoch": 16.37745740498034,
+ "grad_norm": 0.35279813408851624,
+ "learning_rate": 0.0006,
+ "loss": 4.028722763061523,
+ "step": 1179
+ },
+ {
+ "epoch": 16.3914373088685,
+ "grad_norm": 0.3243204951286316,
+ "learning_rate": 0.0006,
+ "loss": 4.045693874359131,
+ "step": 1180
+ },
+ {
+ "epoch": 16.405417212756664,
+ "grad_norm": 0.32171115279197693,
+ "learning_rate": 0.0006,
+ "loss": 4.018350124359131,
+ "step": 1181
+ },
+ {
+ "epoch": 16.419397116644824,
+ "grad_norm": 0.31459906697273254,
+ "learning_rate": 0.0006,
+ "loss": 4.039547443389893,
+ "step": 1182
+ },
+ {
+ "epoch": 16.433377020532983,
+ "grad_norm": 0.35038673877716064,
+ "learning_rate": 0.0006,
+ "loss": 4.005928039550781,
+ "step": 1183
+ },
+ {
+ "epoch": 16.447356924421143,
+ "grad_norm": 0.34110963344573975,
+ "learning_rate": 0.0006,
+ "loss": 4.042272090911865,
+ "step": 1184
+ },
+ {
+ "epoch": 16.461336828309307,
+ "grad_norm": 0.33760902285575867,
+ "learning_rate": 0.0006,
+ "loss": 4.02886962890625,
+ "step": 1185
+ },
+ {
+ "epoch": 16.475316732197467,
+ "grad_norm": 0.3162464499473572,
+ "learning_rate": 0.0006,
+ "loss": 4.059924125671387,
+ "step": 1186
+ },
+ {
+ "epoch": 16.489296636085626,
+ "grad_norm": 0.2667233645915985,
+ "learning_rate": 0.0006,
+ "loss": 4.069073677062988,
+ "step": 1187
+ },
+ {
+ "epoch": 16.503276539973786,
+ "grad_norm": 0.22626568377017975,
+ "learning_rate": 0.0006,
+ "loss": 4.044912338256836,
+ "step": 1188
+ },
+ {
+ "epoch": 16.51725644386195,
+ "grad_norm": 0.203303262591362,
+ "learning_rate": 0.0006,
+ "loss": 4.025210380554199,
+ "step": 1189
+ },
+ {
+ "epoch": 16.53123634775011,
+ "grad_norm": 0.2108820080757141,
+ "learning_rate": 0.0006,
+ "loss": 4.035998821258545,
+ "step": 1190
+ },
+ {
+ "epoch": 16.54521625163827,
+ "grad_norm": 0.20451335608959198,
+ "learning_rate": 0.0006,
+ "loss": 4.043377876281738,
+ "step": 1191
+ },
+ {
+ "epoch": 16.55919615552643,
+ "grad_norm": 0.23348836600780487,
+ "learning_rate": 0.0006,
+ "loss": 4.033735275268555,
+ "step": 1192
+ },
+ {
+ "epoch": 16.573176059414592,
+ "grad_norm": 0.24438607692718506,
+ "learning_rate": 0.0006,
+ "loss": 4.071747779846191,
+ "step": 1193
+ },
+ {
+ "epoch": 16.587155963302752,
+ "grad_norm": 0.24233631789684296,
+ "learning_rate": 0.0006,
+ "loss": 4.0138702392578125,
+ "step": 1194
+ },
+ {
+ "epoch": 16.601135867190912,
+ "grad_norm": 0.21625740826129913,
+ "learning_rate": 0.0006,
+ "loss": 4.013422012329102,
+ "step": 1195
+ },
+ {
+ "epoch": 16.615115771079076,
+ "grad_norm": 0.22447720170021057,
+ "learning_rate": 0.0006,
+ "loss": 4.056326866149902,
+ "step": 1196
+ },
+ {
+ "epoch": 16.629095674967235,
+ "grad_norm": 0.21899616718292236,
+ "learning_rate": 0.0006,
+ "loss": 4.006134033203125,
+ "step": 1197
+ },
+ {
+ "epoch": 16.643075578855395,
+ "grad_norm": 0.191362664103508,
+ "learning_rate": 0.0006,
+ "loss": 4.036748886108398,
+ "step": 1198
+ },
+ {
+ "epoch": 16.657055482743555,
+ "grad_norm": 0.20203463733196259,
+ "learning_rate": 0.0006,
+ "loss": 4.006264686584473,
+ "step": 1199
+ },
+ {
+ "epoch": 16.67103538663172,
+ "grad_norm": 0.20209139585494995,
+ "learning_rate": 0.0006,
+ "loss": 4.059018135070801,
+ "step": 1200
+ },
+ {
+ "epoch": 16.68501529051988,
+ "grad_norm": 0.20811820030212402,
+ "learning_rate": 0.0006,
+ "loss": 4.054325103759766,
+ "step": 1201
+ },
+ {
+ "epoch": 16.698995194408038,
+ "grad_norm": 0.22448928654193878,
+ "learning_rate": 0.0006,
+ "loss": 3.996121406555176,
+ "step": 1202
+ },
+ {
+ "epoch": 16.712975098296198,
+ "grad_norm": 0.21692240238189697,
+ "learning_rate": 0.0006,
+ "loss": 4.042046546936035,
+ "step": 1203
+ },
+ {
+ "epoch": 16.72695500218436,
+ "grad_norm": 0.20688563585281372,
+ "learning_rate": 0.0006,
+ "loss": 4.002251625061035,
+ "step": 1204
+ },
+ {
+ "epoch": 16.74093490607252,
+ "grad_norm": 0.1835535764694214,
+ "learning_rate": 0.0006,
+ "loss": 4.02545166015625,
+ "step": 1205
+ },
+ {
+ "epoch": 16.75491480996068,
+ "grad_norm": 0.20532558858394623,
+ "learning_rate": 0.0006,
+ "loss": 4.039333343505859,
+ "step": 1206
+ },
+ {
+ "epoch": 16.76889471384884,
+ "grad_norm": 0.2214215099811554,
+ "learning_rate": 0.0006,
+ "loss": 4.037858486175537,
+ "step": 1207
+ },
+ {
+ "epoch": 16.782874617737004,
+ "grad_norm": 0.24926038086414337,
+ "learning_rate": 0.0006,
+ "loss": 4.024799346923828,
+ "step": 1208
+ },
+ {
+ "epoch": 16.796854521625164,
+ "grad_norm": 0.26057952642440796,
+ "learning_rate": 0.0006,
+ "loss": 4.042788505554199,
+ "step": 1209
+ },
+ {
+ "epoch": 16.810834425513324,
+ "grad_norm": 0.2501208782196045,
+ "learning_rate": 0.0006,
+ "loss": 4.051809310913086,
+ "step": 1210
+ },
+ {
+ "epoch": 16.824814329401484,
+ "grad_norm": 0.21760012209415436,
+ "learning_rate": 0.0006,
+ "loss": 4.063589096069336,
+ "step": 1211
+ },
+ {
+ "epoch": 16.838794233289647,
+ "grad_norm": 0.2243622988462448,
+ "learning_rate": 0.0006,
+ "loss": 4.008829593658447,
+ "step": 1212
+ },
+ {
+ "epoch": 16.852774137177807,
+ "grad_norm": 0.2399163395166397,
+ "learning_rate": 0.0006,
+ "loss": 4.013262748718262,
+ "step": 1213
+ },
+ {
+ "epoch": 16.866754041065967,
+ "grad_norm": 0.23187831044197083,
+ "learning_rate": 0.0006,
+ "loss": 4.023053169250488,
+ "step": 1214
+ },
+ {
+ "epoch": 16.88073394495413,
+ "grad_norm": 0.23723892867565155,
+ "learning_rate": 0.0006,
+ "loss": 3.991321563720703,
+ "step": 1215
+ },
+ {
+ "epoch": 16.89471384884229,
+ "grad_norm": 0.21766342222690582,
+ "learning_rate": 0.0006,
+ "loss": 4.0250773429870605,
+ "step": 1216
+ },
+ {
+ "epoch": 16.90869375273045,
+ "grad_norm": 0.20715023577213287,
+ "learning_rate": 0.0006,
+ "loss": 4.063642978668213,
+ "step": 1217
+ },
+ {
+ "epoch": 16.92267365661861,
+ "grad_norm": 0.20165133476257324,
+ "learning_rate": 0.0006,
+ "loss": 3.9951367378234863,
+ "step": 1218
+ },
+ {
+ "epoch": 16.936653560506773,
+ "grad_norm": 0.19956178963184357,
+ "learning_rate": 0.0006,
+ "loss": 4.025641441345215,
+ "step": 1219
+ },
+ {
+ "epoch": 16.950633464394933,
+ "grad_norm": 0.2175494134426117,
+ "learning_rate": 0.0006,
+ "loss": 4.030346393585205,
+ "step": 1220
+ },
+ {
+ "epoch": 16.964613368283093,
+ "grad_norm": 0.22365593910217285,
+ "learning_rate": 0.0006,
+ "loss": 4.018105506896973,
+ "step": 1221
+ },
+ {
+ "epoch": 16.978593272171253,
+ "grad_norm": 0.21251538395881653,
+ "learning_rate": 0.0006,
+ "loss": 4.023580074310303,
+ "step": 1222
+ },
+ {
+ "epoch": 16.992573176059416,
+ "grad_norm": 0.2230125218629837,
+ "learning_rate": 0.0006,
+ "loss": 4.001980304718018,
+ "step": 1223
+ },
+ {
+ "epoch": 17.0,
+ "grad_norm": 0.24261972308158875,
+ "learning_rate": 0.0006,
+ "loss": 4.081348896026611,
+ "step": 1224
+ },
+ {
+ "epoch": 17.0,
+ "eval_loss": 4.225194931030273,
+ "eval_runtime": 44.247,
+ "eval_samples_per_second": 55.19,
+ "eval_steps_per_second": 3.458,
+ "step": 1224
+ },
+ {
+ "epoch": 17.01397990388816,
+ "grad_norm": 0.2438880205154419,
+ "learning_rate": 0.0006,
+ "loss": 4.0164794921875,
+ "step": 1225
+ },
+ {
+ "epoch": 17.027959807776323,
+ "grad_norm": 0.22459383308887482,
+ "learning_rate": 0.0006,
+ "loss": 3.991623878479004,
+ "step": 1226
+ },
+ {
+ "epoch": 17.041939711664483,
+ "grad_norm": 0.25021040439605713,
+ "learning_rate": 0.0006,
+ "loss": 4.003020286560059,
+ "step": 1227
+ },
+ {
+ "epoch": 17.055919615552643,
+ "grad_norm": 0.30358025431632996,
+ "learning_rate": 0.0006,
+ "loss": 3.980921983718872,
+ "step": 1228
+ },
+ {
+ "epoch": 17.069899519440803,
+ "grad_norm": 0.27313271164894104,
+ "learning_rate": 0.0006,
+ "loss": 3.992398977279663,
+ "step": 1229
+ },
+ {
+ "epoch": 17.083879423328966,
+ "grad_norm": 0.2293211966753006,
+ "learning_rate": 0.0006,
+ "loss": 4.02568244934082,
+ "step": 1230
+ },
+ {
+ "epoch": 17.097859327217126,
+ "grad_norm": 0.2363300621509552,
+ "learning_rate": 0.0006,
+ "loss": 3.977229356765747,
+ "step": 1231
+ },
+ {
+ "epoch": 17.111839231105286,
+ "grad_norm": 0.2809674143791199,
+ "learning_rate": 0.0006,
+ "loss": 3.9720497131347656,
+ "step": 1232
+ },
+ {
+ "epoch": 17.125819134993446,
+ "grad_norm": 0.2913855016231537,
+ "learning_rate": 0.0006,
+ "loss": 3.979529857635498,
+ "step": 1233
+ },
+ {
+ "epoch": 17.13979903888161,
+ "grad_norm": 0.2920287251472473,
+ "learning_rate": 0.0006,
+ "loss": 3.9678473472595215,
+ "step": 1234
+ },
+ {
+ "epoch": 17.15377894276977,
+ "grad_norm": 0.2521543502807617,
+ "learning_rate": 0.0006,
+ "loss": 3.9912607669830322,
+ "step": 1235
+ },
+ {
+ "epoch": 17.16775884665793,
+ "grad_norm": 0.22844268381595612,
+ "learning_rate": 0.0006,
+ "loss": 3.9898228645324707,
+ "step": 1236
+ },
+ {
+ "epoch": 17.18173875054609,
+ "grad_norm": 0.2199884057044983,
+ "learning_rate": 0.0006,
+ "loss": 4.0050740242004395,
+ "step": 1237
+ },
+ {
+ "epoch": 17.195718654434252,
+ "grad_norm": 0.23072892427444458,
+ "learning_rate": 0.0006,
+ "loss": 3.9957475662231445,
+ "step": 1238
+ },
+ {
+ "epoch": 17.209698558322412,
+ "grad_norm": 0.2034899890422821,
+ "learning_rate": 0.0006,
+ "loss": 3.9672317504882812,
+ "step": 1239
+ },
+ {
+ "epoch": 17.22367846221057,
+ "grad_norm": 0.21826180815696716,
+ "learning_rate": 0.0006,
+ "loss": 3.98543119430542,
+ "step": 1240
+ },
+ {
+ "epoch": 17.23765836609873,
+ "grad_norm": 0.21203237771987915,
+ "learning_rate": 0.0006,
+ "loss": 3.9971959590911865,
+ "step": 1241
+ },
+ {
+ "epoch": 17.251638269986895,
+ "grad_norm": 0.22139234840869904,
+ "learning_rate": 0.0006,
+ "loss": 4.017539978027344,
+ "step": 1242
+ },
+ {
+ "epoch": 17.265618173875055,
+ "grad_norm": 0.21553276479244232,
+ "learning_rate": 0.0006,
+ "loss": 3.98740553855896,
+ "step": 1243
+ },
+ {
+ "epoch": 17.279598077763215,
+ "grad_norm": 0.23259080946445465,
+ "learning_rate": 0.0006,
+ "loss": 3.9963035583496094,
+ "step": 1244
+ },
+ {
+ "epoch": 17.293577981651374,
+ "grad_norm": 0.2527932822704315,
+ "learning_rate": 0.0006,
+ "loss": 4.0202956199646,
+ "step": 1245
+ },
+ {
+ "epoch": 17.307557885539538,
+ "grad_norm": 0.28669068217277527,
+ "learning_rate": 0.0006,
+ "loss": 3.9947609901428223,
+ "step": 1246
+ },
+ {
+ "epoch": 17.321537789427698,
+ "grad_norm": 0.341602623462677,
+ "learning_rate": 0.0006,
+ "loss": 3.997032642364502,
+ "step": 1247
+ },
+ {
+ "epoch": 17.335517693315857,
+ "grad_norm": 0.3364104926586151,
+ "learning_rate": 0.0006,
+ "loss": 3.9881834983825684,
+ "step": 1248
+ },
+ {
+ "epoch": 17.34949759720402,
+ "grad_norm": 0.2979278266429901,
+ "learning_rate": 0.0006,
+ "loss": 4.045898914337158,
+ "step": 1249
+ },
+ {
+ "epoch": 17.36347750109218,
+ "grad_norm": 0.2857462465763092,
+ "learning_rate": 0.0006,
+ "loss": 4.0085272789001465,
+ "step": 1250
+ },
+ {
+ "epoch": 17.37745740498034,
+ "grad_norm": 0.2689058780670166,
+ "learning_rate": 0.0006,
+ "loss": 4.021465301513672,
+ "step": 1251
+ },
+ {
+ "epoch": 17.3914373088685,
+ "grad_norm": 0.24943363666534424,
+ "learning_rate": 0.0006,
+ "loss": 4.003451347351074,
+ "step": 1252
+ },
+ {
+ "epoch": 17.405417212756664,
+ "grad_norm": 0.2635347843170166,
+ "learning_rate": 0.0006,
+ "loss": 3.9837827682495117,
+ "step": 1253
+ },
+ {
+ "epoch": 17.419397116644824,
+ "grad_norm": 0.29126450419425964,
+ "learning_rate": 0.0006,
+ "loss": 3.9857311248779297,
+ "step": 1254
+ },
+ {
+ "epoch": 17.433377020532983,
+ "grad_norm": 0.3166918456554413,
+ "learning_rate": 0.0006,
+ "loss": 3.9842967987060547,
+ "step": 1255
+ },
+ {
+ "epoch": 17.447356924421143,
+ "grad_norm": 0.27869969606399536,
+ "learning_rate": 0.0006,
+ "loss": 4.012607574462891,
+ "step": 1256
+ },
+ {
+ "epoch": 17.461336828309307,
+ "grad_norm": 0.23719419538974762,
+ "learning_rate": 0.0006,
+ "loss": 3.981034755706787,
+ "step": 1257
+ },
+ {
+ "epoch": 17.475316732197467,
+ "grad_norm": 0.22687610983848572,
+ "learning_rate": 0.0006,
+ "loss": 4.011059761047363,
+ "step": 1258
+ },
+ {
+ "epoch": 17.489296636085626,
+ "grad_norm": 0.22034095227718353,
+ "learning_rate": 0.0006,
+ "loss": 4.015044689178467,
+ "step": 1259
+ },
+ {
+ "epoch": 17.503276539973786,
+ "grad_norm": 0.21208405494689941,
+ "learning_rate": 0.0006,
+ "loss": 4.003793716430664,
+ "step": 1260
+ },
+ {
+ "epoch": 17.51725644386195,
+ "grad_norm": 0.21759214997291565,
+ "learning_rate": 0.0006,
+ "loss": 3.978652238845825,
+ "step": 1261
+ },
+ {
+ "epoch": 17.53123634775011,
+ "grad_norm": 0.22481068968772888,
+ "learning_rate": 0.0006,
+ "loss": 4.034845352172852,
+ "step": 1262
+ },
+ {
+ "epoch": 17.54521625163827,
+ "grad_norm": 0.20376387238502502,
+ "learning_rate": 0.0006,
+ "loss": 3.990541934967041,
+ "step": 1263
+ },
+ {
+ "epoch": 17.55919615552643,
+ "grad_norm": 0.20459355413913727,
+ "learning_rate": 0.0006,
+ "loss": 4.006990432739258,
+ "step": 1264
+ },
+ {
+ "epoch": 17.573176059414592,
+ "grad_norm": 0.19306913018226624,
+ "learning_rate": 0.0006,
+ "loss": 3.993408679962158,
+ "step": 1265
+ },
+ {
+ "epoch": 17.587155963302752,
+ "grad_norm": 0.20727239549160004,
+ "learning_rate": 0.0006,
+ "loss": 3.988016128540039,
+ "step": 1266
+ },
+ {
+ "epoch": 17.601135867190912,
+ "grad_norm": 0.20213133096694946,
+ "learning_rate": 0.0006,
+ "loss": 4.0120368003845215,
+ "step": 1267
+ },
+ {
+ "epoch": 17.615115771079076,
+ "grad_norm": 0.21074117720127106,
+ "learning_rate": 0.0006,
+ "loss": 4.048871040344238,
+ "step": 1268
+ },
+ {
+ "epoch": 17.629095674967235,
+ "grad_norm": 0.2074330598115921,
+ "learning_rate": 0.0006,
+ "loss": 3.997509002685547,
+ "step": 1269
+ },
+ {
+ "epoch": 17.643075578855395,
+ "grad_norm": 0.20383669435977936,
+ "learning_rate": 0.0006,
+ "loss": 4.0028839111328125,
+ "step": 1270
+ },
+ {
+ "epoch": 17.657055482743555,
+ "grad_norm": 0.2060765027999878,
+ "learning_rate": 0.0006,
+ "loss": 3.998032331466675,
+ "step": 1271
+ },
+ {
+ "epoch": 17.67103538663172,
+ "grad_norm": 0.21851404011249542,
+ "learning_rate": 0.0006,
+ "loss": 3.9928741455078125,
+ "step": 1272
+ },
+ {
+ "epoch": 17.68501529051988,
+ "grad_norm": 0.24324250221252441,
+ "learning_rate": 0.0006,
+ "loss": 3.9896507263183594,
+ "step": 1273
+ },
+ {
+ "epoch": 17.698995194408038,
+ "grad_norm": 0.25584331154823303,
+ "learning_rate": 0.0006,
+ "loss": 4.010485649108887,
+ "step": 1274
+ },
+ {
+ "epoch": 17.712975098296198,
+ "grad_norm": 0.2490610033273697,
+ "learning_rate": 0.0006,
+ "loss": 3.9906954765319824,
+ "step": 1275
+ },
+ {
+ "epoch": 17.72695500218436,
+ "grad_norm": 0.24241414666175842,
+ "learning_rate": 0.0006,
+ "loss": 4.016420364379883,
+ "step": 1276
+ },
+ {
+ "epoch": 17.74093490607252,
+ "grad_norm": 0.2222128063440323,
+ "learning_rate": 0.0006,
+ "loss": 4.009827136993408,
+ "step": 1277
+ },
+ {
+ "epoch": 17.75491480996068,
+ "grad_norm": 0.23119516670703888,
+ "learning_rate": 0.0006,
+ "loss": 4.0034589767456055,
+ "step": 1278
+ },
+ {
+ "epoch": 17.76889471384884,
+ "grad_norm": 0.24596457183361053,
+ "learning_rate": 0.0006,
+ "loss": 4.003161907196045,
+ "step": 1279
+ },
+ {
+ "epoch": 17.782874617737004,
+ "grad_norm": 0.2607562839984894,
+ "learning_rate": 0.0006,
+ "loss": 3.9894633293151855,
+ "step": 1280
+ },
+ {
+ "epoch": 17.796854521625164,
+ "grad_norm": 0.28706878423690796,
+ "learning_rate": 0.0006,
+ "loss": 4.005712985992432,
+ "step": 1281
+ },
+ {
+ "epoch": 17.810834425513324,
+ "grad_norm": 0.27178290486335754,
+ "learning_rate": 0.0006,
+ "loss": 3.9784536361694336,
+ "step": 1282
+ },
+ {
+ "epoch": 17.824814329401484,
+ "grad_norm": 0.27962708473205566,
+ "learning_rate": 0.0006,
+ "loss": 4.012705326080322,
+ "step": 1283
+ },
+ {
+ "epoch": 17.838794233289647,
+ "grad_norm": 0.29147693514823914,
+ "learning_rate": 0.0006,
+ "loss": 4.0159783363342285,
+ "step": 1284
+ },
+ {
+ "epoch": 17.852774137177807,
+ "grad_norm": 0.2841821312904358,
+ "learning_rate": 0.0006,
+ "loss": 4.011552810668945,
+ "step": 1285
+ },
+ {
+ "epoch": 17.866754041065967,
+ "grad_norm": 0.24924969673156738,
+ "learning_rate": 0.0006,
+ "loss": 3.992421865463257,
+ "step": 1286
+ },
+ {
+ "epoch": 17.88073394495413,
+ "grad_norm": 0.24850749969482422,
+ "learning_rate": 0.0006,
+ "loss": 3.974897861480713,
+ "step": 1287
+ },
+ {
+ "epoch": 17.89471384884229,
+ "grad_norm": 0.2409554123878479,
+ "learning_rate": 0.0006,
+ "loss": 4.002941131591797,
+ "step": 1288
+ },
+ {
+ "epoch": 17.90869375273045,
+ "grad_norm": 0.2656126320362091,
+ "learning_rate": 0.0006,
+ "loss": 3.9804210662841797,
+ "step": 1289
+ },
+ {
+ "epoch": 17.92267365661861,
+ "grad_norm": 0.28210243582725525,
+ "learning_rate": 0.0006,
+ "loss": 4.007192134857178,
+ "step": 1290
+ },
+ {
+ "epoch": 17.936653560506773,
+ "grad_norm": 0.28427553176879883,
+ "learning_rate": 0.0006,
+ "loss": 3.9739556312561035,
+ "step": 1291
+ },
+ {
+ "epoch": 17.950633464394933,
+ "grad_norm": 0.28893420100212097,
+ "learning_rate": 0.0006,
+ "loss": 4.004766941070557,
+ "step": 1292
+ },
+ {
+ "epoch": 17.964613368283093,
+ "grad_norm": 0.2831471562385559,
+ "learning_rate": 0.0006,
+ "loss": 3.984936237335205,
+ "step": 1293
+ },
+ {
+ "epoch": 17.978593272171253,
+ "grad_norm": 0.2518300712108612,
+ "learning_rate": 0.0006,
+ "loss": 4.002814292907715,
+ "step": 1294
+ },
+ {
+ "epoch": 17.992573176059416,
+ "grad_norm": 0.24264675378799438,
+ "learning_rate": 0.0006,
+ "loss": 3.998900890350342,
+ "step": 1295
+ },
+ {
+ "epoch": 18.0,
+ "grad_norm": 0.24474996328353882,
+ "learning_rate": 0.0006,
+ "loss": 3.974229335784912,
+ "step": 1296
+ },
+ {
+ "epoch": 18.0,
+ "eval_loss": 4.195685863494873,
+ "eval_runtime": 44.0709,
+ "eval_samples_per_second": 55.411,
+ "eval_steps_per_second": 3.472,
+ "step": 1296
+ },
+ {
+ "epoch": 18.01397990388816,
+ "grad_norm": 0.2553016245365143,
+ "learning_rate": 0.0006,
+ "loss": 3.9522247314453125,
+ "step": 1297
+ },
+ {
+ "epoch": 18.027959807776323,
+ "grad_norm": 0.22350727021694183,
+ "learning_rate": 0.0006,
+ "loss": 3.9850122928619385,
+ "step": 1298
+ },
+ {
+ "epoch": 18.041939711664483,
+ "grad_norm": 0.23935550451278687,
+ "learning_rate": 0.0006,
+ "loss": 3.9758832454681396,
+ "step": 1299
+ },
+ {
+ "epoch": 18.055919615552643,
+ "grad_norm": 0.23868797719478607,
+ "learning_rate": 0.0006,
+ "loss": 3.9567959308624268,
+ "step": 1300
+ },
+ {
+ "epoch": 18.069899519440803,
+ "grad_norm": 0.23102357983589172,
+ "learning_rate": 0.0006,
+ "loss": 3.9399867057800293,
+ "step": 1301
+ },
+ {
+ "epoch": 18.083879423328966,
+ "grad_norm": 0.23706983029842377,
+ "learning_rate": 0.0006,
+ "loss": 3.993434190750122,
+ "step": 1302
+ },
+ {
+ "epoch": 18.097859327217126,
+ "grad_norm": 0.22207573056221008,
+ "learning_rate": 0.0006,
+ "loss": 3.993436574935913,
+ "step": 1303
+ },
+ {
+ "epoch": 18.111839231105286,
+ "grad_norm": 0.23975296318531036,
+ "learning_rate": 0.0006,
+ "loss": 3.981943368911743,
+ "step": 1304
+ },
+ {
+ "epoch": 18.125819134993446,
+ "grad_norm": 0.2520582675933838,
+ "learning_rate": 0.0006,
+ "loss": 3.965493679046631,
+ "step": 1305
+ },
+ {
+ "epoch": 18.13979903888161,
+ "grad_norm": 0.2230956256389618,
+ "learning_rate": 0.0006,
+ "loss": 3.9360928535461426,
+ "step": 1306
+ },
+ {
+ "epoch": 18.15377894276977,
+ "grad_norm": 0.22527500987052917,
+ "learning_rate": 0.0006,
+ "loss": 3.9814581871032715,
+ "step": 1307
+ },
+ {
+ "epoch": 18.16775884665793,
+ "grad_norm": 0.22389626502990723,
+ "learning_rate": 0.0006,
+ "loss": 3.961590051651001,
+ "step": 1308
+ },
+ {
+ "epoch": 18.18173875054609,
+ "grad_norm": 0.22279471158981323,
+ "learning_rate": 0.0006,
+ "loss": 3.952338695526123,
+ "step": 1309
+ },
+ {
+ "epoch": 18.195718654434252,
+ "grad_norm": 0.24635115265846252,
+ "learning_rate": 0.0006,
+ "loss": 3.9693849086761475,
+ "step": 1310
+ },
+ {
+ "epoch": 18.209698558322412,
+ "grad_norm": 0.2757279872894287,
+ "learning_rate": 0.0006,
+ "loss": 3.9956700801849365,
+ "step": 1311
+ },
+ {
+ "epoch": 18.22367846221057,
+ "grad_norm": 0.2619115710258484,
+ "learning_rate": 0.0006,
+ "loss": 3.948878765106201,
+ "step": 1312
+ },
+ {
+ "epoch": 18.23765836609873,
+ "grad_norm": 0.22853828966617584,
+ "learning_rate": 0.0006,
+ "loss": 3.9545674324035645,
+ "step": 1313
+ },
+ {
+ "epoch": 18.251638269986895,
+ "grad_norm": 0.22904761135578156,
+ "learning_rate": 0.0006,
+ "loss": 3.947535991668701,
+ "step": 1314
+ },
+ {
+ "epoch": 18.265618173875055,
+ "grad_norm": 0.23592644929885864,
+ "learning_rate": 0.0006,
+ "loss": 3.971926212310791,
+ "step": 1315
+ },
+ {
+ "epoch": 18.279598077763215,
+ "grad_norm": 0.22120243310928345,
+ "learning_rate": 0.0006,
+ "loss": 3.9471049308776855,
+ "step": 1316
+ },
+ {
+ "epoch": 18.293577981651374,
+ "grad_norm": 0.20308749377727509,
+ "learning_rate": 0.0006,
+ "loss": 3.967449188232422,
+ "step": 1317
+ },
+ {
+ "epoch": 18.307557885539538,
+ "grad_norm": 0.20013529062271118,
+ "learning_rate": 0.0006,
+ "loss": 3.966151237487793,
+ "step": 1318
+ },
+ {
+ "epoch": 18.321537789427698,
+ "grad_norm": 0.20635221898555756,
+ "learning_rate": 0.0006,
+ "loss": 3.9908885955810547,
+ "step": 1319
+ },
+ {
+ "epoch": 18.335517693315857,
+ "grad_norm": 0.2232237160205841,
+ "learning_rate": 0.0006,
+ "loss": 3.9488768577575684,
+ "step": 1320
+ },
+ {
+ "epoch": 18.34949759720402,
+ "grad_norm": 0.21916444599628448,
+ "learning_rate": 0.0006,
+ "loss": 3.973428726196289,
+ "step": 1321
+ },
+ {
+ "epoch": 18.36347750109218,
+ "grad_norm": 0.20427337288856506,
+ "learning_rate": 0.0006,
+ "loss": 3.969332695007324,
+ "step": 1322
+ },
+ {
+ "epoch": 18.37745740498034,
+ "grad_norm": 0.20138131082057953,
+ "learning_rate": 0.0006,
+ "loss": 3.9651856422424316,
+ "step": 1323
+ },
+ {
+ "epoch": 18.3914373088685,
+ "grad_norm": 0.18918880820274353,
+ "learning_rate": 0.0006,
+ "loss": 3.9772281646728516,
+ "step": 1324
+ },
+ {
+ "epoch": 18.405417212756664,
+ "grad_norm": 0.1860039383172989,
+ "learning_rate": 0.0006,
+ "loss": 3.9289052486419678,
+ "step": 1325
+ },
+ {
+ "epoch": 18.419397116644824,
+ "grad_norm": 0.19541646540164948,
+ "learning_rate": 0.0006,
+ "loss": 3.9527673721313477,
+ "step": 1326
+ },
+ {
+ "epoch": 18.433377020532983,
+ "grad_norm": 0.206914022564888,
+ "learning_rate": 0.0006,
+ "loss": 3.99316143989563,
+ "step": 1327
+ },
+ {
+ "epoch": 18.447356924421143,
+ "grad_norm": 0.209097757935524,
+ "learning_rate": 0.0006,
+ "loss": 3.978130340576172,
+ "step": 1328
+ },
+ {
+ "epoch": 18.461336828309307,
+ "grad_norm": 0.22163373231887817,
+ "learning_rate": 0.0006,
+ "loss": 3.951460361480713,
+ "step": 1329
+ },
+ {
+ "epoch": 18.475316732197467,
+ "grad_norm": 0.21446120738983154,
+ "learning_rate": 0.0006,
+ "loss": 3.963571071624756,
+ "step": 1330
+ },
+ {
+ "epoch": 18.489296636085626,
+ "grad_norm": 0.2341388761997223,
+ "learning_rate": 0.0006,
+ "loss": 4.010684013366699,
+ "step": 1331
+ },
+ {
+ "epoch": 18.503276539973786,
+ "grad_norm": 0.2433937042951584,
+ "learning_rate": 0.0006,
+ "loss": 3.987537384033203,
+ "step": 1332
+ },
+ {
+ "epoch": 18.51725644386195,
+ "grad_norm": 0.24916228652000427,
+ "learning_rate": 0.0006,
+ "loss": 3.953075647354126,
+ "step": 1333
+ },
+ {
+ "epoch": 18.53123634775011,
+ "grad_norm": 0.24542421102523804,
+ "learning_rate": 0.0006,
+ "loss": 3.9510841369628906,
+ "step": 1334
+ },
+ {
+ "epoch": 18.54521625163827,
+ "grad_norm": 0.2393690049648285,
+ "learning_rate": 0.0006,
+ "loss": 3.981747627258301,
+ "step": 1335
+ },
+ {
+ "epoch": 18.55919615552643,
+ "grad_norm": 0.22806711494922638,
+ "learning_rate": 0.0006,
+ "loss": 3.9714856147766113,
+ "step": 1336
+ },
+ {
+ "epoch": 18.573176059414592,
+ "grad_norm": 0.21948303282260895,
+ "learning_rate": 0.0006,
+ "loss": 3.9429898262023926,
+ "step": 1337
+ },
+ {
+ "epoch": 18.587155963302752,
+ "grad_norm": 0.21575778722763062,
+ "learning_rate": 0.0006,
+ "loss": 3.9639933109283447,
+ "step": 1338
+ },
+ {
+ "epoch": 18.601135867190912,
+ "grad_norm": 0.23370565474033356,
+ "learning_rate": 0.0006,
+ "loss": 3.9819254875183105,
+ "step": 1339
+ },
+ {
+ "epoch": 18.615115771079076,
+ "grad_norm": 0.2613106369972229,
+ "learning_rate": 0.0006,
+ "loss": 3.9654669761657715,
+ "step": 1340
+ },
+ {
+ "epoch": 18.629095674967235,
+ "grad_norm": 0.26682716608047485,
+ "learning_rate": 0.0006,
+ "loss": 3.9832968711853027,
+ "step": 1341
+ },
+ {
+ "epoch": 18.643075578855395,
+ "grad_norm": 0.24331490695476532,
+ "learning_rate": 0.0006,
+ "loss": 3.9926600456237793,
+ "step": 1342
+ },
+ {
+ "epoch": 18.657055482743555,
+ "grad_norm": 0.2459341287612915,
+ "learning_rate": 0.0006,
+ "loss": 3.9508986473083496,
+ "step": 1343
+ },
+ {
+ "epoch": 18.67103538663172,
+ "grad_norm": 0.26395753026008606,
+ "learning_rate": 0.0006,
+ "loss": 3.961359977722168,
+ "step": 1344
+ },
+ {
+ "epoch": 18.68501529051988,
+ "grad_norm": 0.26049068570137024,
+ "learning_rate": 0.0006,
+ "loss": 3.9763245582580566,
+ "step": 1345
+ },
+ {
+ "epoch": 18.698995194408038,
+ "grad_norm": 0.24018602073192596,
+ "learning_rate": 0.0006,
+ "loss": 3.951780319213867,
+ "step": 1346
+ },
+ {
+ "epoch": 18.712975098296198,
+ "grad_norm": 0.23886290192604065,
+ "learning_rate": 0.0006,
+ "loss": 3.9883017539978027,
+ "step": 1347
+ },
+ {
+ "epoch": 18.72695500218436,
+ "grad_norm": 0.2293774038553238,
+ "learning_rate": 0.0006,
+ "loss": 3.9852685928344727,
+ "step": 1348
+ },
+ {
+ "epoch": 18.74093490607252,
+ "grad_norm": 0.22172975540161133,
+ "learning_rate": 0.0006,
+ "loss": 3.967550277709961,
+ "step": 1349
+ },
+ {
+ "epoch": 18.75491480996068,
+ "grad_norm": 0.2170475423336029,
+ "learning_rate": 0.0006,
+ "loss": 3.9570775032043457,
+ "step": 1350
+ },
+ {
+ "epoch": 18.76889471384884,
+ "grad_norm": 0.21458806097507477,
+ "learning_rate": 0.0006,
+ "loss": 3.9461212158203125,
+ "step": 1351
+ },
+ {
+ "epoch": 18.782874617737004,
+ "grad_norm": 0.21101507544517517,
+ "learning_rate": 0.0006,
+ "loss": 3.984398365020752,
+ "step": 1352
+ },
+ {
+ "epoch": 18.796854521625164,
+ "grad_norm": 0.23480583727359772,
+ "learning_rate": 0.0006,
+ "loss": 3.950312614440918,
+ "step": 1353
+ },
+ {
+ "epoch": 18.810834425513324,
+ "grad_norm": 0.24728581309318542,
+ "learning_rate": 0.0006,
+ "loss": 3.9572393894195557,
+ "step": 1354
+ },
+ {
+ "epoch": 18.824814329401484,
+ "grad_norm": 0.26063451170921326,
+ "learning_rate": 0.0006,
+ "loss": 3.9653234481811523,
+ "step": 1355
+ },
+ {
+ "epoch": 18.838794233289647,
+ "grad_norm": 0.24679961800575256,
+ "learning_rate": 0.0006,
+ "loss": 3.9560108184814453,
+ "step": 1356
+ },
+ {
+ "epoch": 18.852774137177807,
+ "grad_norm": 0.23199526965618134,
+ "learning_rate": 0.0006,
+ "loss": 3.9948246479034424,
+ "step": 1357
+ },
+ {
+ "epoch": 18.866754041065967,
+ "grad_norm": 0.22619125247001648,
+ "learning_rate": 0.0006,
+ "loss": 3.9783573150634766,
+ "step": 1358
+ },
+ {
+ "epoch": 18.88073394495413,
+ "grad_norm": 0.25499874353408813,
+ "learning_rate": 0.0006,
+ "loss": 3.9674575328826904,
+ "step": 1359
+ },
+ {
+ "epoch": 18.89471384884229,
+ "grad_norm": 0.23961037397384644,
+ "learning_rate": 0.0006,
+ "loss": 3.969209909439087,
+ "step": 1360
+ },
+ {
+ "epoch": 18.90869375273045,
+ "grad_norm": 0.21039162576198578,
+ "learning_rate": 0.0006,
+ "loss": 3.978661060333252,
+ "step": 1361
+ },
+ {
+ "epoch": 18.92267365661861,
+ "grad_norm": 0.2297026664018631,
+ "learning_rate": 0.0006,
+ "loss": 3.9483046531677246,
+ "step": 1362
+ },
+ {
+ "epoch": 18.936653560506773,
+ "grad_norm": 0.26367098093032837,
+ "learning_rate": 0.0006,
+ "loss": 3.927133560180664,
+ "step": 1363
+ },
+ {
+ "epoch": 18.950633464394933,
+ "grad_norm": 0.26893147826194763,
+ "learning_rate": 0.0006,
+ "loss": 3.957932710647583,
+ "step": 1364
+ },
+ {
+ "epoch": 18.964613368283093,
+ "grad_norm": 0.27092233300209045,
+ "learning_rate": 0.0006,
+ "loss": 3.976621150970459,
+ "step": 1365
+ },
+ {
+ "epoch": 18.978593272171253,
+ "grad_norm": 0.2672635018825531,
+ "learning_rate": 0.0006,
+ "loss": 3.9577765464782715,
+ "step": 1366
+ },
+ {
+ "epoch": 18.992573176059416,
+ "grad_norm": 0.2721385359764099,
+ "learning_rate": 0.0006,
+ "loss": 3.986100196838379,
+ "step": 1367
+ },
+ {
+ "epoch": 19.0,
+ "grad_norm": 0.27648621797561646,
+ "learning_rate": 0.0006,
+ "loss": 3.9942402839660645,
+ "step": 1368
+ },
+ {
+ "epoch": 19.0,
+ "eval_loss": 4.180216312408447,
+ "eval_runtime": 44.0079,
+ "eval_samples_per_second": 55.49,
+ "eval_steps_per_second": 3.477,
+ "step": 1368
+ },
+ {
+ "epoch": 19.01397990388816,
+ "grad_norm": 0.2563098073005676,
+ "learning_rate": 0.0006,
+ "loss": 3.9267354011535645,
+ "step": 1369
+ },
+ {
+ "epoch": 19.027959807776323,
+ "grad_norm": 0.2531425952911377,
+ "learning_rate": 0.0006,
+ "loss": 3.9273324012756348,
+ "step": 1370
+ },
+ {
+ "epoch": 19.041939711664483,
+ "grad_norm": 0.27485427260398865,
+ "learning_rate": 0.0006,
+ "loss": 3.9542183876037598,
+ "step": 1371
+ },
+ {
+ "epoch": 19.055919615552643,
+ "grad_norm": 0.27509891986846924,
+ "learning_rate": 0.0006,
+ "loss": 3.921940326690674,
+ "step": 1372
+ },
+ {
+ "epoch": 19.069899519440803,
+ "grad_norm": 0.28154096007347107,
+ "learning_rate": 0.0006,
+ "loss": 3.926743984222412,
+ "step": 1373
+ },
+ {
+ "epoch": 19.083879423328966,
+ "grad_norm": 0.2749912738800049,
+ "learning_rate": 0.0006,
+ "loss": 3.9257748126983643,
+ "step": 1374
+ },
+ {
+ "epoch": 19.097859327217126,
+ "grad_norm": 0.26168501377105713,
+ "learning_rate": 0.0006,
+ "loss": 3.9403202533721924,
+ "step": 1375
+ },
+ {
+ "epoch": 19.111839231105286,
+ "grad_norm": 0.23410023748874664,
+ "learning_rate": 0.0006,
+ "loss": 3.935378313064575,
+ "step": 1376
+ },
+ {
+ "epoch": 19.125819134993446,
+ "grad_norm": 0.25790470838546753,
+ "learning_rate": 0.0006,
+ "loss": 3.946147918701172,
+ "step": 1377
+ },
+ {
+ "epoch": 19.13979903888161,
+ "grad_norm": 0.26704177260398865,
+ "learning_rate": 0.0006,
+ "loss": 3.9511594772338867,
+ "step": 1378
+ },
+ {
+ "epoch": 19.15377894276977,
+ "grad_norm": 0.2560667097568512,
+ "learning_rate": 0.0006,
+ "loss": 3.915806531906128,
+ "step": 1379
+ },
+ {
+ "epoch": 19.16775884665793,
+ "grad_norm": 0.24684149026870728,
+ "learning_rate": 0.0006,
+ "loss": 3.9162003993988037,
+ "step": 1380
+ },
+ {
+ "epoch": 19.18173875054609,
+ "grad_norm": 0.2097567766904831,
+ "learning_rate": 0.0006,
+ "loss": 3.915739059448242,
+ "step": 1381
+ },
+ {
+ "epoch": 19.195718654434252,
+ "grad_norm": 0.21646849811077118,
+ "learning_rate": 0.0006,
+ "loss": 3.9097084999084473,
+ "step": 1382
+ },
+ {
+ "epoch": 19.209698558322412,
+ "grad_norm": 0.20626980066299438,
+ "learning_rate": 0.0006,
+ "loss": 3.9541783332824707,
+ "step": 1383
+ },
+ {
+ "epoch": 19.22367846221057,
+ "grad_norm": 0.23362718522548676,
+ "learning_rate": 0.0006,
+ "loss": 3.950096845626831,
+ "step": 1384
+ },
+ {
+ "epoch": 19.23765836609873,
+ "grad_norm": 0.25402209162712097,
+ "learning_rate": 0.0006,
+ "loss": 3.927671432495117,
+ "step": 1385
+ },
+ {
+ "epoch": 19.251638269986895,
+ "grad_norm": 0.23714083433151245,
+ "learning_rate": 0.0006,
+ "loss": 3.939765453338623,
+ "step": 1386
+ },
+ {
+ "epoch": 19.265618173875055,
+ "grad_norm": 0.20895546674728394,
+ "learning_rate": 0.0006,
+ "loss": 3.9384806156158447,
+ "step": 1387
+ },
+ {
+ "epoch": 19.279598077763215,
+ "grad_norm": 0.21374300122261047,
+ "learning_rate": 0.0006,
+ "loss": 3.9523749351501465,
+ "step": 1388
+ },
+ {
+ "epoch": 19.293577981651374,
+ "grad_norm": 0.210394486784935,
+ "learning_rate": 0.0006,
+ "loss": 3.9540798664093018,
+ "step": 1389
+ },
+ {
+ "epoch": 19.307557885539538,
+ "grad_norm": 0.20646725594997406,
+ "learning_rate": 0.0006,
+ "loss": 3.9514098167419434,
+ "step": 1390
+ },
+ {
+ "epoch": 19.321537789427698,
+ "grad_norm": 0.21477538347244263,
+ "learning_rate": 0.0006,
+ "loss": 3.9369924068450928,
+ "step": 1391
+ },
+ {
+ "epoch": 19.335517693315857,
+ "grad_norm": 0.20431505143642426,
+ "learning_rate": 0.0006,
+ "loss": 3.9389796257019043,
+ "step": 1392
+ },
+ {
+ "epoch": 19.34949759720402,
+ "grad_norm": 0.19575877487659454,
+ "learning_rate": 0.0006,
+ "loss": 3.935976028442383,
+ "step": 1393
+ },
+ {
+ "epoch": 19.36347750109218,
+ "grad_norm": 0.20720405876636505,
+ "learning_rate": 0.0006,
+ "loss": 3.9670963287353516,
+ "step": 1394
+ },
+ {
+ "epoch": 19.37745740498034,
+ "grad_norm": 0.2173967957496643,
+ "learning_rate": 0.0006,
+ "loss": 3.903940439224243,
+ "step": 1395
+ },
+ {
+ "epoch": 19.3914373088685,
+ "grad_norm": 0.2180529683828354,
+ "learning_rate": 0.0006,
+ "loss": 3.8716301918029785,
+ "step": 1396
+ },
+ {
+ "epoch": 19.405417212756664,
+ "grad_norm": 0.20666591823101044,
+ "learning_rate": 0.0006,
+ "loss": 3.930936813354492,
+ "step": 1397
+ },
+ {
+ "epoch": 19.419397116644824,
+ "grad_norm": 0.20353034138679504,
+ "learning_rate": 0.0006,
+ "loss": 3.926954746246338,
+ "step": 1398
+ },
+ {
+ "epoch": 19.433377020532983,
+ "grad_norm": 0.22333289682865143,
+ "learning_rate": 0.0006,
+ "loss": 3.947504997253418,
+ "step": 1399
+ },
+ {
+ "epoch": 19.447356924421143,
+ "grad_norm": 0.21787697076797485,
+ "learning_rate": 0.0006,
+ "loss": 3.9325344562530518,
+ "step": 1400
+ },
+ {
+ "epoch": 19.461336828309307,
+ "grad_norm": 0.22805874049663544,
+ "learning_rate": 0.0006,
+ "loss": 3.9640727043151855,
+ "step": 1401
+ },
+ {
+ "epoch": 19.475316732197467,
+ "grad_norm": 0.22396457195281982,
+ "learning_rate": 0.0006,
+ "loss": 3.9537901878356934,
+ "step": 1402
+ },
+ {
+ "epoch": 19.489296636085626,
+ "grad_norm": 0.2333047240972519,
+ "learning_rate": 0.0006,
+ "loss": 3.935609817504883,
+ "step": 1403
+ },
+ {
+ "epoch": 19.503276539973786,
+ "grad_norm": 0.25063616037368774,
+ "learning_rate": 0.0006,
+ "loss": 3.9659228324890137,
+ "step": 1404
+ },
+ {
+ "epoch": 19.51725644386195,
+ "grad_norm": 0.29074087738990784,
+ "learning_rate": 0.0006,
+ "loss": 3.9552183151245117,
+ "step": 1405
+ },
+ {
+ "epoch": 19.53123634775011,
+ "grad_norm": 0.34876152873039246,
+ "learning_rate": 0.0006,
+ "loss": 3.976163387298584,
+ "step": 1406
+ },
+ {
+ "epoch": 19.54521625163827,
+ "grad_norm": 0.35026612877845764,
+ "learning_rate": 0.0006,
+ "loss": 3.961186408996582,
+ "step": 1407
+ },
+ {
+ "epoch": 19.55919615552643,
+ "grad_norm": 0.3199564218521118,
+ "learning_rate": 0.0006,
+ "loss": 3.9366297721862793,
+ "step": 1408
+ },
+ {
+ "epoch": 19.573176059414592,
+ "grad_norm": 0.2976185977458954,
+ "learning_rate": 0.0006,
+ "loss": 3.9502010345458984,
+ "step": 1409
+ },
+ {
+ "epoch": 19.587155963302752,
+ "grad_norm": 0.2951911687850952,
+ "learning_rate": 0.0006,
+ "loss": 3.9427943229675293,
+ "step": 1410
+ },
+ {
+ "epoch": 19.601135867190912,
+ "grad_norm": 0.27918702363967896,
+ "learning_rate": 0.0006,
+ "loss": 3.963700532913208,
+ "step": 1411
+ },
+ {
+ "epoch": 19.615115771079076,
+ "grad_norm": 0.26197490096092224,
+ "learning_rate": 0.0006,
+ "loss": 3.9636964797973633,
+ "step": 1412
+ },
+ {
+ "epoch": 19.629095674967235,
+ "grad_norm": 0.24242281913757324,
+ "learning_rate": 0.0006,
+ "loss": 3.961815595626831,
+ "step": 1413
+ },
+ {
+ "epoch": 19.643075578855395,
+ "grad_norm": 0.2606375515460968,
+ "learning_rate": 0.0006,
+ "loss": 3.946643352508545,
+ "step": 1414
+ },
+ {
+ "epoch": 19.657055482743555,
+ "grad_norm": 0.23353353142738342,
+ "learning_rate": 0.0006,
+ "loss": 3.973155975341797,
+ "step": 1415
+ },
+ {
+ "epoch": 19.67103538663172,
+ "grad_norm": 0.22872662544250488,
+ "learning_rate": 0.0006,
+ "loss": 3.9528894424438477,
+ "step": 1416
+ },
+ {
+ "epoch": 19.68501529051988,
+ "grad_norm": 0.24678432941436768,
+ "learning_rate": 0.0006,
+ "loss": 3.9313249588012695,
+ "step": 1417
+ },
+ {
+ "epoch": 19.698995194408038,
+ "grad_norm": 0.23895515501499176,
+ "learning_rate": 0.0006,
+ "loss": 3.944082498550415,
+ "step": 1418
+ },
+ {
+ "epoch": 19.712975098296198,
+ "grad_norm": 0.23649105429649353,
+ "learning_rate": 0.0006,
+ "loss": 3.962069034576416,
+ "step": 1419
+ },
+ {
+ "epoch": 19.72695500218436,
+ "grad_norm": 0.22031061351299286,
+ "learning_rate": 0.0006,
+ "loss": 3.912972927093506,
+ "step": 1420
+ },
+ {
+ "epoch": 19.74093490607252,
+ "grad_norm": 0.20231695473194122,
+ "learning_rate": 0.0006,
+ "loss": 3.964531421661377,
+ "step": 1421
+ },
+ {
+ "epoch": 19.75491480996068,
+ "grad_norm": 0.19980913400650024,
+ "learning_rate": 0.0006,
+ "loss": 3.9452600479125977,
+ "step": 1422
+ },
+ {
+ "epoch": 19.76889471384884,
+ "grad_norm": 0.21768775582313538,
+ "learning_rate": 0.0006,
+ "loss": 3.9214301109313965,
+ "step": 1423
+ },
+ {
+ "epoch": 19.782874617737004,
+ "grad_norm": 0.21287119388580322,
+ "learning_rate": 0.0006,
+ "loss": 3.9416494369506836,
+ "step": 1424
+ },
+ {
+ "epoch": 19.796854521625164,
+ "grad_norm": 0.21399827301502228,
+ "learning_rate": 0.0006,
+ "loss": 3.971010208129883,
+ "step": 1425
+ },
+ {
+ "epoch": 19.810834425513324,
+ "grad_norm": 0.1957658976316452,
+ "learning_rate": 0.0006,
+ "loss": 3.936331272125244,
+ "step": 1426
+ },
+ {
+ "epoch": 19.824814329401484,
+ "grad_norm": 0.19341488182544708,
+ "learning_rate": 0.0006,
+ "loss": 3.9321448802948,
+ "step": 1427
+ },
+ {
+ "epoch": 19.838794233289647,
+ "grad_norm": 0.18405723571777344,
+ "learning_rate": 0.0006,
+ "loss": 3.939542293548584,
+ "step": 1428
+ },
+ {
+ "epoch": 19.852774137177807,
+ "grad_norm": 0.19672836363315582,
+ "learning_rate": 0.0006,
+ "loss": 3.939652919769287,
+ "step": 1429
+ },
+ {
+ "epoch": 19.866754041065967,
+ "grad_norm": 0.1998940259218216,
+ "learning_rate": 0.0006,
+ "loss": 3.932892322540283,
+ "step": 1430
+ },
+ {
+ "epoch": 19.88073394495413,
+ "grad_norm": 0.2307668924331665,
+ "learning_rate": 0.0006,
+ "loss": 3.9402761459350586,
+ "step": 1431
+ },
+ {
+ "epoch": 19.89471384884229,
+ "grad_norm": 0.2531987726688385,
+ "learning_rate": 0.0006,
+ "loss": 3.9153199195861816,
+ "step": 1432
+ },
+ {
+ "epoch": 19.90869375273045,
+ "grad_norm": 0.2299388349056244,
+ "learning_rate": 0.0006,
+ "loss": 3.9569954872131348,
+ "step": 1433
+ },
+ {
+ "epoch": 19.92267365661861,
+ "grad_norm": 0.2503527104854584,
+ "learning_rate": 0.0006,
+ "loss": 3.9469428062438965,
+ "step": 1434
+ },
+ {
+ "epoch": 19.936653560506773,
+ "grad_norm": 0.25390249490737915,
+ "learning_rate": 0.0006,
+ "loss": 3.941803455352783,
+ "step": 1435
+ },
+ {
+ "epoch": 19.950633464394933,
+ "grad_norm": 0.2288687825202942,
+ "learning_rate": 0.0006,
+ "loss": 3.9385883808135986,
+ "step": 1436
+ },
+ {
+ "epoch": 19.964613368283093,
+ "grad_norm": 0.2231096774339676,
+ "learning_rate": 0.0006,
+ "loss": 3.9255237579345703,
+ "step": 1437
+ },
+ {
+ "epoch": 19.978593272171253,
+ "grad_norm": 0.20729343593120575,
+ "learning_rate": 0.0006,
+ "loss": 3.9443163871765137,
+ "step": 1438
+ },
+ {
+ "epoch": 19.992573176059416,
+ "grad_norm": 0.197743758559227,
+ "learning_rate": 0.0006,
+ "loss": 3.925455093383789,
+ "step": 1439
+ },
+ {
+ "epoch": 20.0,
+ "grad_norm": 0.23943661153316498,
+ "learning_rate": 0.0006,
+ "loss": 3.9458866119384766,
+ "step": 1440
+ },
+ {
+ "epoch": 20.0,
+ "eval_loss": 4.144192218780518,
+ "eval_runtime": 44.0278,
+ "eval_samples_per_second": 55.465,
+ "eval_steps_per_second": 3.475,
+ "step": 1440
+ },
+ {
+ "epoch": 20.01397990388816,
+ "grad_norm": 0.2032143622636795,
+ "learning_rate": 0.0006,
+ "loss": 3.9151499271392822,
+ "step": 1441
+ },
+ {
+ "epoch": 20.027959807776323,
+ "grad_norm": 0.20164789259433746,
+ "learning_rate": 0.0006,
+ "loss": 3.874115228652954,
+ "step": 1442
+ },
+ {
+ "epoch": 20.041939711664483,
+ "grad_norm": 0.20796619355678558,
+ "learning_rate": 0.0006,
+ "loss": 3.9090776443481445,
+ "step": 1443
+ },
+ {
+ "epoch": 20.055919615552643,
+ "grad_norm": 0.1999918520450592,
+ "learning_rate": 0.0006,
+ "loss": 3.926563262939453,
+ "step": 1444
+ },
+ {
+ "epoch": 20.069899519440803,
+ "grad_norm": 0.204790860414505,
+ "learning_rate": 0.0006,
+ "loss": 3.9088830947875977,
+ "step": 1445
+ },
+ {
+ "epoch": 20.083879423328966,
+ "grad_norm": 0.21507175266742706,
+ "learning_rate": 0.0006,
+ "loss": 3.916504383087158,
+ "step": 1446
+ },
+ {
+ "epoch": 20.097859327217126,
+ "grad_norm": 0.2398025095462799,
+ "learning_rate": 0.0006,
+ "loss": 3.9128990173339844,
+ "step": 1447
+ },
+ {
+ "epoch": 20.111839231105286,
+ "grad_norm": 0.26037144660949707,
+ "learning_rate": 0.0006,
+ "loss": 3.9125187397003174,
+ "step": 1448
+ },
+ {
+ "epoch": 20.125819134993446,
+ "grad_norm": 0.25564828515052795,
+ "learning_rate": 0.0006,
+ "loss": 3.891867160797119,
+ "step": 1449
+ },
+ {
+ "epoch": 20.13979903888161,
+ "grad_norm": 0.2767223119735718,
+ "learning_rate": 0.0006,
+ "loss": 3.9202775955200195,
+ "step": 1450
+ },
+ {
+ "epoch": 20.15377894276977,
+ "grad_norm": 0.27696558833122253,
+ "learning_rate": 0.0006,
+ "loss": 3.9231314659118652,
+ "step": 1451
+ },
+ {
+ "epoch": 20.16775884665793,
+ "grad_norm": 0.3054044246673584,
+ "learning_rate": 0.0006,
+ "loss": 3.918138027191162,
+ "step": 1452
+ },
+ {
+ "epoch": 20.18173875054609,
+ "grad_norm": 0.3018973171710968,
+ "learning_rate": 0.0006,
+ "loss": 3.890678882598877,
+ "step": 1453
+ },
+ {
+ "epoch": 20.195718654434252,
+ "grad_norm": 0.306232750415802,
+ "learning_rate": 0.0006,
+ "loss": 3.920753002166748,
+ "step": 1454
+ },
+ {
+ "epoch": 20.209698558322412,
+ "grad_norm": 0.29593729972839355,
+ "learning_rate": 0.0006,
+ "loss": 3.9455509185791016,
+ "step": 1455
+ },
+ {
+ "epoch": 20.22367846221057,
+ "grad_norm": 0.2937646210193634,
+ "learning_rate": 0.0006,
+ "loss": 3.9227709770202637,
+ "step": 1456
+ },
+ {
+ "epoch": 20.23765836609873,
+ "grad_norm": 0.26380231976509094,
+ "learning_rate": 0.0006,
+ "loss": 3.9097609519958496,
+ "step": 1457
+ },
+ {
+ "epoch": 20.251638269986895,
+ "grad_norm": 0.24992692470550537,
+ "learning_rate": 0.0006,
+ "loss": 3.9393627643585205,
+ "step": 1458
+ },
+ {
+ "epoch": 20.265618173875055,
+ "grad_norm": 0.270219087600708,
+ "learning_rate": 0.0006,
+ "loss": 3.929330348968506,
+ "step": 1459
+ },
+ {
+ "epoch": 20.279598077763215,
+ "grad_norm": 0.2860020399093628,
+ "learning_rate": 0.0006,
+ "loss": 3.8947913646698,
+ "step": 1460
+ },
+ {
+ "epoch": 20.293577981651374,
+ "grad_norm": 0.27494579553604126,
+ "learning_rate": 0.0006,
+ "loss": 3.9105992317199707,
+ "step": 1461
+ },
+ {
+ "epoch": 20.307557885539538,
+ "grad_norm": 0.26467713713645935,
+ "learning_rate": 0.0006,
+ "loss": 3.914632797241211,
+ "step": 1462
+ },
+ {
+ "epoch": 20.321537789427698,
+ "grad_norm": 0.25747713446617126,
+ "learning_rate": 0.0006,
+ "loss": 3.919846534729004,
+ "step": 1463
+ },
+ {
+ "epoch": 20.335517693315857,
+ "grad_norm": 0.24027711153030396,
+ "learning_rate": 0.0006,
+ "loss": 3.904740810394287,
+ "step": 1464
+ },
+ {
+ "epoch": 20.34949759720402,
+ "grad_norm": 0.24682414531707764,
+ "learning_rate": 0.0006,
+ "loss": 3.9190149307250977,
+ "step": 1465
+ },
+ {
+ "epoch": 20.36347750109218,
+ "grad_norm": 0.2619759440422058,
+ "learning_rate": 0.0006,
+ "loss": 3.9488329887390137,
+ "step": 1466
+ },
+ {
+ "epoch": 20.37745740498034,
+ "grad_norm": 0.2632448971271515,
+ "learning_rate": 0.0006,
+ "loss": 3.9216647148132324,
+ "step": 1467
+ },
+ {
+ "epoch": 20.3914373088685,
+ "grad_norm": 0.27569764852523804,
+ "learning_rate": 0.0006,
+ "loss": 3.9178895950317383,
+ "step": 1468
+ },
+ {
+ "epoch": 20.405417212756664,
+ "grad_norm": 0.2611774802207947,
+ "learning_rate": 0.0006,
+ "loss": 3.933730125427246,
+ "step": 1469
+ },
+ {
+ "epoch": 20.419397116644824,
+ "grad_norm": 0.2839447557926178,
+ "learning_rate": 0.0006,
+ "loss": 3.9261364936828613,
+ "step": 1470
+ },
+ {
+ "epoch": 20.433377020532983,
+ "grad_norm": 0.29006227850914,
+ "learning_rate": 0.0006,
+ "loss": 3.9157633781433105,
+ "step": 1471
+ },
+ {
+ "epoch": 20.447356924421143,
+ "grad_norm": 0.2809498906135559,
+ "learning_rate": 0.0006,
+ "loss": 3.9211745262145996,
+ "step": 1472
+ },
+ {
+ "epoch": 20.461336828309307,
+ "grad_norm": 0.27859532833099365,
+ "learning_rate": 0.0006,
+ "loss": 3.9115967750549316,
+ "step": 1473
+ },
+ {
+ "epoch": 20.475316732197467,
+ "grad_norm": 0.29114410281181335,
+ "learning_rate": 0.0006,
+ "loss": 3.9024441242218018,
+ "step": 1474
+ },
+ {
+ "epoch": 20.489296636085626,
+ "grad_norm": 0.2686930000782013,
+ "learning_rate": 0.0006,
+ "loss": 3.9497199058532715,
+ "step": 1475
+ },
+ {
+ "epoch": 20.503276539973786,
+ "grad_norm": 0.24120540916919708,
+ "learning_rate": 0.0006,
+ "loss": 3.9218955039978027,
+ "step": 1476
+ },
+ {
+ "epoch": 20.51725644386195,
+ "grad_norm": 0.23689547181129456,
+ "learning_rate": 0.0006,
+ "loss": 3.9410176277160645,
+ "step": 1477
+ },
+ {
+ "epoch": 20.53123634775011,
+ "grad_norm": 0.26382362842559814,
+ "learning_rate": 0.0006,
+ "loss": 3.8880343437194824,
+ "step": 1478
+ },
+ {
+ "epoch": 20.54521625163827,
+ "grad_norm": 0.21628661453723907,
+ "learning_rate": 0.0006,
+ "loss": 3.892622470855713,
+ "step": 1479
+ },
+ {
+ "epoch": 20.55919615552643,
+ "grad_norm": 0.19896996021270752,
+ "learning_rate": 0.0006,
+ "loss": 3.938734769821167,
+ "step": 1480
+ },
+ {
+ "epoch": 20.573176059414592,
+ "grad_norm": 0.20232494175434113,
+ "learning_rate": 0.0006,
+ "loss": 3.9197006225585938,
+ "step": 1481
+ },
+ {
+ "epoch": 20.587155963302752,
+ "grad_norm": 0.21807828545570374,
+ "learning_rate": 0.0006,
+ "loss": 3.9195618629455566,
+ "step": 1482
+ },
+ {
+ "epoch": 20.601135867190912,
+ "grad_norm": 0.21778680384159088,
+ "learning_rate": 0.0006,
+ "loss": 3.913395404815674,
+ "step": 1483
+ },
+ {
+ "epoch": 20.615115771079076,
+ "grad_norm": 0.21015185117721558,
+ "learning_rate": 0.0006,
+ "loss": 3.8858234882354736,
+ "step": 1484
+ },
+ {
+ "epoch": 20.629095674967235,
+ "grad_norm": 0.20131368935108185,
+ "learning_rate": 0.0006,
+ "loss": 3.927213430404663,
+ "step": 1485
+ },
+ {
+ "epoch": 20.643075578855395,
+ "grad_norm": 0.20746243000030518,
+ "learning_rate": 0.0006,
+ "loss": 3.913198471069336,
+ "step": 1486
+ },
+ {
+ "epoch": 20.657055482743555,
+ "grad_norm": 0.2024548053741455,
+ "learning_rate": 0.0006,
+ "loss": 3.923048257827759,
+ "step": 1487
+ },
+ {
+ "epoch": 20.67103538663172,
+ "grad_norm": 0.19735988974571228,
+ "learning_rate": 0.0006,
+ "loss": 3.9136500358581543,
+ "step": 1488
+ },
+ {
+ "epoch": 20.68501529051988,
+ "grad_norm": 0.19781625270843506,
+ "learning_rate": 0.0006,
+ "loss": 3.883793592453003,
+ "step": 1489
+ },
+ {
+ "epoch": 20.698995194408038,
+ "grad_norm": 0.1911996454000473,
+ "learning_rate": 0.0006,
+ "loss": 3.9078567028045654,
+ "step": 1490
+ },
+ {
+ "epoch": 20.712975098296198,
+ "grad_norm": 0.1989123821258545,
+ "learning_rate": 0.0006,
+ "loss": 3.9314043521881104,
+ "step": 1491
+ },
+ {
+ "epoch": 20.72695500218436,
+ "grad_norm": 0.18839342892169952,
+ "learning_rate": 0.0006,
+ "loss": 3.8955953121185303,
+ "step": 1492
+ },
+ {
+ "epoch": 20.74093490607252,
+ "grad_norm": 0.1944834142923355,
+ "learning_rate": 0.0006,
+ "loss": 3.9272377490997314,
+ "step": 1493
+ },
+ {
+ "epoch": 20.75491480996068,
+ "grad_norm": 0.20829126238822937,
+ "learning_rate": 0.0006,
+ "loss": 3.878857374191284,
+ "step": 1494
+ },
+ {
+ "epoch": 20.76889471384884,
+ "grad_norm": 0.21438424289226532,
+ "learning_rate": 0.0006,
+ "loss": 3.9155564308166504,
+ "step": 1495
+ },
+ {
+ "epoch": 20.782874617737004,
+ "grad_norm": 0.22309324145317078,
+ "learning_rate": 0.0006,
+ "loss": 3.9281692504882812,
+ "step": 1496
+ },
+ {
+ "epoch": 20.796854521625164,
+ "grad_norm": 0.2053767591714859,
+ "learning_rate": 0.0006,
+ "loss": 3.9096317291259766,
+ "step": 1497
+ },
+ {
+ "epoch": 20.810834425513324,
+ "grad_norm": 0.20429186522960663,
+ "learning_rate": 0.0006,
+ "loss": 3.9184865951538086,
+ "step": 1498
+ },
+ {
+ "epoch": 20.824814329401484,
+ "grad_norm": 0.21983473002910614,
+ "learning_rate": 0.0006,
+ "loss": 3.9130771160125732,
+ "step": 1499
+ },
+ {
+ "epoch": 20.838794233289647,
+ "grad_norm": 0.21649539470672607,
+ "learning_rate": 0.0006,
+ "loss": 3.921581268310547,
+ "step": 1500
+ },
+ {
+ "epoch": 20.852774137177807,
+ "grad_norm": 0.19645053148269653,
+ "learning_rate": 0.0006,
+ "loss": 3.966360092163086,
+ "step": 1501
+ },
+ {
+ "epoch": 20.866754041065967,
+ "grad_norm": 0.2126782387495041,
+ "learning_rate": 0.0006,
+ "loss": 3.9004554748535156,
+ "step": 1502
+ },
+ {
+ "epoch": 20.88073394495413,
+ "grad_norm": 0.22359658777713776,
+ "learning_rate": 0.0006,
+ "loss": 3.92336368560791,
+ "step": 1503
+ },
+ {
+ "epoch": 20.89471384884229,
+ "grad_norm": 0.2334042638540268,
+ "learning_rate": 0.0006,
+ "loss": 3.9188671112060547,
+ "step": 1504
+ },
+ {
+ "epoch": 20.90869375273045,
+ "grad_norm": 0.24595916271209717,
+ "learning_rate": 0.0006,
+ "loss": 3.9348371028900146,
+ "step": 1505
+ },
+ {
+ "epoch": 20.92267365661861,
+ "grad_norm": 0.24177910387516022,
+ "learning_rate": 0.0006,
+ "loss": 3.8796424865722656,
+ "step": 1506
+ },
+ {
+ "epoch": 20.936653560506773,
+ "grad_norm": 0.24193289875984192,
+ "learning_rate": 0.0006,
+ "loss": 3.892627716064453,
+ "step": 1507
+ },
+ {
+ "epoch": 20.950633464394933,
+ "grad_norm": 0.252849280834198,
+ "learning_rate": 0.0006,
+ "loss": 3.9300179481506348,
+ "step": 1508
+ },
+ {
+ "epoch": 20.964613368283093,
+ "grad_norm": 0.24933326244354248,
+ "learning_rate": 0.0006,
+ "loss": 3.9597225189208984,
+ "step": 1509
+ },
+ {
+ "epoch": 20.978593272171253,
+ "grad_norm": 0.23850969970226288,
+ "learning_rate": 0.0006,
+ "loss": 3.9027397632598877,
+ "step": 1510
+ },
+ {
+ "epoch": 20.992573176059416,
+ "grad_norm": 0.23298311233520508,
+ "learning_rate": 0.0006,
+ "loss": 3.9024105072021484,
+ "step": 1511
+ },
+ {
+ "epoch": 21.0,
+ "grad_norm": 0.2467455416917801,
+ "learning_rate": 0.0006,
+ "loss": 3.915929079055786,
+ "step": 1512
+ },
+ {
+ "epoch": 21.0,
+ "eval_loss": 4.136331081390381,
+ "eval_runtime": 43.9468,
+ "eval_samples_per_second": 55.567,
+ "eval_steps_per_second": 3.481,
+ "step": 1512
+ },
+ {
+ "epoch": 21.01397990388816,
+ "grad_norm": 0.2195885181427002,
+ "learning_rate": 0.0006,
+ "loss": 3.873412847518921,
+ "step": 1513
+ },
+ {
+ "epoch": 21.027959807776323,
+ "grad_norm": 0.24250614643096924,
+ "learning_rate": 0.0006,
+ "loss": 3.882302761077881,
+ "step": 1514
+ },
+ {
+ "epoch": 21.041939711664483,
+ "grad_norm": 0.249113991856575,
+ "learning_rate": 0.0006,
+ "loss": 3.9112048149108887,
+ "step": 1515
+ },
+ {
+ "epoch": 21.055919615552643,
+ "grad_norm": 0.25365301966667175,
+ "learning_rate": 0.0006,
+ "loss": 3.8625712394714355,
+ "step": 1516
+ },
+ {
+ "epoch": 21.069899519440803,
+ "grad_norm": 0.2218591272830963,
+ "learning_rate": 0.0006,
+ "loss": 3.876072406768799,
+ "step": 1517
+ },
+ {
+ "epoch": 21.083879423328966,
+ "grad_norm": 0.238582581281662,
+ "learning_rate": 0.0006,
+ "loss": 3.862060546875,
+ "step": 1518
+ },
+ {
+ "epoch": 21.097859327217126,
+ "grad_norm": 0.25051242113113403,
+ "learning_rate": 0.0006,
+ "loss": 3.905315399169922,
+ "step": 1519
+ },
+ {
+ "epoch": 21.111839231105286,
+ "grad_norm": 0.2391843944787979,
+ "learning_rate": 0.0006,
+ "loss": 3.909144401550293,
+ "step": 1520
+ },
+ {
+ "epoch": 21.125819134993446,
+ "grad_norm": 0.230543315410614,
+ "learning_rate": 0.0006,
+ "loss": 3.8856799602508545,
+ "step": 1521
+ },
+ {
+ "epoch": 21.13979903888161,
+ "grad_norm": 0.24165484309196472,
+ "learning_rate": 0.0006,
+ "loss": 3.893883228302002,
+ "step": 1522
+ },
+ {
+ "epoch": 21.15377894276977,
+ "grad_norm": 0.24657143652439117,
+ "learning_rate": 0.0006,
+ "loss": 3.901129722595215,
+ "step": 1523
+ },
+ {
+ "epoch": 21.16775884665793,
+ "grad_norm": 0.2659998834133148,
+ "learning_rate": 0.0006,
+ "loss": 3.910468101501465,
+ "step": 1524
+ },
+ {
+ "epoch": 21.18173875054609,
+ "grad_norm": 0.2673095166683197,
+ "learning_rate": 0.0006,
+ "loss": 3.917454242706299,
+ "step": 1525
+ },
+ {
+ "epoch": 21.195718654434252,
+ "grad_norm": 0.22122322022914886,
+ "learning_rate": 0.0006,
+ "loss": 3.9017257690429688,
+ "step": 1526
+ },
+ {
+ "epoch": 21.209698558322412,
+ "grad_norm": 0.21882867813110352,
+ "learning_rate": 0.0006,
+ "loss": 3.8605496883392334,
+ "step": 1527
+ },
+ {
+ "epoch": 21.22367846221057,
+ "grad_norm": 0.22335563600063324,
+ "learning_rate": 0.0006,
+ "loss": 3.88120174407959,
+ "step": 1528
+ },
+ {
+ "epoch": 21.23765836609873,
+ "grad_norm": 0.22973211109638214,
+ "learning_rate": 0.0006,
+ "loss": 3.8636834621429443,
+ "step": 1529
+ },
+ {
+ "epoch": 21.251638269986895,
+ "grad_norm": 0.2410288006067276,
+ "learning_rate": 0.0006,
+ "loss": 3.8698177337646484,
+ "step": 1530
+ },
+ {
+ "epoch": 21.265618173875055,
+ "grad_norm": 0.2454768717288971,
+ "learning_rate": 0.0006,
+ "loss": 3.905341148376465,
+ "step": 1531
+ },
+ {
+ "epoch": 21.279598077763215,
+ "grad_norm": 0.2271580696105957,
+ "learning_rate": 0.0006,
+ "loss": 3.864063262939453,
+ "step": 1532
+ },
+ {
+ "epoch": 21.293577981651374,
+ "grad_norm": 0.2200947403907776,
+ "learning_rate": 0.0006,
+ "loss": 3.8889589309692383,
+ "step": 1533
+ },
+ {
+ "epoch": 21.307557885539538,
+ "grad_norm": 0.2180824875831604,
+ "learning_rate": 0.0006,
+ "loss": 3.8873472213745117,
+ "step": 1534
+ },
+ {
+ "epoch": 21.321537789427698,
+ "grad_norm": 0.214975506067276,
+ "learning_rate": 0.0006,
+ "loss": 3.882307529449463,
+ "step": 1535
+ },
+ {
+ "epoch": 21.335517693315857,
+ "grad_norm": 0.21411260962486267,
+ "learning_rate": 0.0006,
+ "loss": 3.8861560821533203,
+ "step": 1536
+ },
+ {
+ "epoch": 21.34949759720402,
+ "grad_norm": 0.22635889053344727,
+ "learning_rate": 0.0006,
+ "loss": 3.9174342155456543,
+ "step": 1537
+ },
+ {
+ "epoch": 21.36347750109218,
+ "grad_norm": 0.22700625658035278,
+ "learning_rate": 0.0006,
+ "loss": 3.890416383743286,
+ "step": 1538
+ },
+ {
+ "epoch": 21.37745740498034,
+ "grad_norm": 0.2106025069952011,
+ "learning_rate": 0.0006,
+ "loss": 3.8672406673431396,
+ "step": 1539
+ },
+ {
+ "epoch": 21.3914373088685,
+ "grad_norm": 0.22994661331176758,
+ "learning_rate": 0.0006,
+ "loss": 3.893190383911133,
+ "step": 1540
+ },
+ {
+ "epoch": 21.405417212756664,
+ "grad_norm": 0.24701105058193207,
+ "learning_rate": 0.0006,
+ "loss": 3.898078441619873,
+ "step": 1541
+ },
+ {
+ "epoch": 21.419397116644824,
+ "grad_norm": 0.26914113759994507,
+ "learning_rate": 0.0006,
+ "loss": 3.905871868133545,
+ "step": 1542
+ },
+ {
+ "epoch": 21.433377020532983,
+ "grad_norm": 0.2904224097728729,
+ "learning_rate": 0.0006,
+ "loss": 3.8919103145599365,
+ "step": 1543
+ },
+ {
+ "epoch": 21.447356924421143,
+ "grad_norm": 0.2911844551563263,
+ "learning_rate": 0.0006,
+ "loss": 3.9073286056518555,
+ "step": 1544
+ },
+ {
+ "epoch": 21.461336828309307,
+ "grad_norm": 0.2742345929145813,
+ "learning_rate": 0.0006,
+ "loss": 3.9075546264648438,
+ "step": 1545
+ },
+ {
+ "epoch": 21.475316732197467,
+ "grad_norm": 0.2341093122959137,
+ "learning_rate": 0.0006,
+ "loss": 3.9232025146484375,
+ "step": 1546
+ },
+ {
+ "epoch": 21.489296636085626,
+ "grad_norm": 0.22808541357517242,
+ "learning_rate": 0.0006,
+ "loss": 3.9168174266815186,
+ "step": 1547
+ },
+ {
+ "epoch": 21.503276539973786,
+ "grad_norm": 0.23049889504909515,
+ "learning_rate": 0.0006,
+ "loss": 3.8850595951080322,
+ "step": 1548
+ },
+ {
+ "epoch": 21.51725644386195,
+ "grad_norm": 0.21519650518894196,
+ "learning_rate": 0.0006,
+ "loss": 3.891313076019287,
+ "step": 1549
+ },
+ {
+ "epoch": 21.53123634775011,
+ "grad_norm": 0.20999883115291595,
+ "learning_rate": 0.0006,
+ "loss": 3.894439220428467,
+ "step": 1550
+ },
+ {
+ "epoch": 21.54521625163827,
+ "grad_norm": 0.19641105830669403,
+ "learning_rate": 0.0006,
+ "loss": 3.894871473312378,
+ "step": 1551
+ },
+ {
+ "epoch": 21.55919615552643,
+ "grad_norm": 0.19108249247074127,
+ "learning_rate": 0.0006,
+ "loss": 3.905968189239502,
+ "step": 1552
+ },
+ {
+ "epoch": 21.573176059414592,
+ "grad_norm": 0.20222234725952148,
+ "learning_rate": 0.0006,
+ "loss": 3.90565824508667,
+ "step": 1553
+ },
+ {
+ "epoch": 21.587155963302752,
+ "grad_norm": 0.20620177686214447,
+ "learning_rate": 0.0006,
+ "loss": 3.9103245735168457,
+ "step": 1554
+ },
+ {
+ "epoch": 21.601135867190912,
+ "grad_norm": 0.2149713784456253,
+ "learning_rate": 0.0006,
+ "loss": 3.8864927291870117,
+ "step": 1555
+ },
+ {
+ "epoch": 21.615115771079076,
+ "grad_norm": 0.2354084551334381,
+ "learning_rate": 0.0006,
+ "loss": 3.905095100402832,
+ "step": 1556
+ },
+ {
+ "epoch": 21.629095674967235,
+ "grad_norm": 0.23949941992759705,
+ "learning_rate": 0.0006,
+ "loss": 3.901803493499756,
+ "step": 1557
+ },
+ {
+ "epoch": 21.643075578855395,
+ "grad_norm": 0.22914277017116547,
+ "learning_rate": 0.0006,
+ "loss": 3.876044273376465,
+ "step": 1558
+ },
+ {
+ "epoch": 21.657055482743555,
+ "grad_norm": 0.2363225370645523,
+ "learning_rate": 0.0006,
+ "loss": 3.910841703414917,
+ "step": 1559
+ },
+ {
+ "epoch": 21.67103538663172,
+ "grad_norm": 0.2635626792907715,
+ "learning_rate": 0.0006,
+ "loss": 3.847407579421997,
+ "step": 1560
+ },
+ {
+ "epoch": 21.68501529051988,
+ "grad_norm": 0.2499786615371704,
+ "learning_rate": 0.0006,
+ "loss": 3.8667140007019043,
+ "step": 1561
+ },
+ {
+ "epoch": 21.698995194408038,
+ "grad_norm": 0.21609611809253693,
+ "learning_rate": 0.0006,
+ "loss": 3.895470142364502,
+ "step": 1562
+ },
+ {
+ "epoch": 21.712975098296198,
+ "grad_norm": 0.2466774582862854,
+ "learning_rate": 0.0006,
+ "loss": 3.8853235244750977,
+ "step": 1563
+ },
+ {
+ "epoch": 21.72695500218436,
+ "grad_norm": 0.23791883885860443,
+ "learning_rate": 0.0006,
+ "loss": 3.899418354034424,
+ "step": 1564
+ },
+ {
+ "epoch": 21.74093490607252,
+ "grad_norm": 0.2048920840024948,
+ "learning_rate": 0.0006,
+ "loss": 3.8992419242858887,
+ "step": 1565
+ },
+ {
+ "epoch": 21.75491480996068,
+ "grad_norm": 0.22266621887683868,
+ "learning_rate": 0.0006,
+ "loss": 3.885765552520752,
+ "step": 1566
+ },
+ {
+ "epoch": 21.76889471384884,
+ "grad_norm": 0.2508748769760132,
+ "learning_rate": 0.0006,
+ "loss": 3.8797037601470947,
+ "step": 1567
+ },
+ {
+ "epoch": 21.782874617737004,
+ "grad_norm": 0.27245673537254333,
+ "learning_rate": 0.0006,
+ "loss": 3.8743176460266113,
+ "step": 1568
+ },
+ {
+ "epoch": 21.796854521625164,
+ "grad_norm": 0.25503191351890564,
+ "learning_rate": 0.0006,
+ "loss": 3.868906259536743,
+ "step": 1569
+ },
+ {
+ "epoch": 21.810834425513324,
+ "grad_norm": 0.22984394431114197,
+ "learning_rate": 0.0006,
+ "loss": 3.9051015377044678,
+ "step": 1570
+ },
+ {
+ "epoch": 21.824814329401484,
+ "grad_norm": 0.2411898821592331,
+ "learning_rate": 0.0006,
+ "loss": 3.8911490440368652,
+ "step": 1571
+ },
+ {
+ "epoch": 21.838794233289647,
+ "grad_norm": 0.22609318792819977,
+ "learning_rate": 0.0006,
+ "loss": 3.894839286804199,
+ "step": 1572
+ },
+ {
+ "epoch": 21.852774137177807,
+ "grad_norm": 0.21904583275318146,
+ "learning_rate": 0.0006,
+ "loss": 3.9314537048339844,
+ "step": 1573
+ },
+ {
+ "epoch": 21.866754041065967,
+ "grad_norm": 0.21869723498821259,
+ "learning_rate": 0.0006,
+ "loss": 3.9141433238983154,
+ "step": 1574
+ },
+ {
+ "epoch": 21.88073394495413,
+ "grad_norm": 0.21682019531726837,
+ "learning_rate": 0.0006,
+ "loss": 3.867898464202881,
+ "step": 1575
+ },
+ {
+ "epoch": 21.89471384884229,
+ "grad_norm": 0.2211964726448059,
+ "learning_rate": 0.0006,
+ "loss": 3.8892226219177246,
+ "step": 1576
+ },
+ {
+ "epoch": 21.90869375273045,
+ "grad_norm": 0.2097381353378296,
+ "learning_rate": 0.0006,
+ "loss": 3.9194154739379883,
+ "step": 1577
+ },
+ {
+ "epoch": 21.92267365661861,
+ "grad_norm": 0.21229565143585205,
+ "learning_rate": 0.0006,
+ "loss": 3.924694538116455,
+ "step": 1578
+ },
+ {
+ "epoch": 21.936653560506773,
+ "grad_norm": 0.2186083346605301,
+ "learning_rate": 0.0006,
+ "loss": 3.904440402984619,
+ "step": 1579
+ },
+ {
+ "epoch": 21.950633464394933,
+ "grad_norm": 0.21112321317195892,
+ "learning_rate": 0.0006,
+ "loss": 3.905674934387207,
+ "step": 1580
+ },
+ {
+ "epoch": 21.964613368283093,
+ "grad_norm": 0.20867373049259186,
+ "learning_rate": 0.0006,
+ "loss": 3.8761563301086426,
+ "step": 1581
+ },
+ {
+ "epoch": 21.978593272171253,
+ "grad_norm": 0.21640732884407043,
+ "learning_rate": 0.0006,
+ "loss": 3.871950149536133,
+ "step": 1582
+ },
+ {
+ "epoch": 21.992573176059416,
+ "grad_norm": 0.21920442581176758,
+ "learning_rate": 0.0006,
+ "loss": 3.8853464126586914,
+ "step": 1583
+ },
+ {
+ "epoch": 22.0,
+ "grad_norm": 0.24132665991783142,
+ "learning_rate": 0.0006,
+ "loss": 3.9012184143066406,
+ "step": 1584
+ },
+ {
+ "epoch": 22.0,
+ "eval_loss": 4.108598232269287,
+ "eval_runtime": 44.0434,
+ "eval_samples_per_second": 55.445,
+ "eval_steps_per_second": 3.474,
+ "step": 1584
+ },
+ {
+ "epoch": 22.01397990388816,
+ "grad_norm": 0.21989449858665466,
+ "learning_rate": 0.0006,
+ "loss": 3.8657469749450684,
+ "step": 1585
+ },
+ {
+ "epoch": 22.027959807776323,
+ "grad_norm": 0.20416802167892456,
+ "learning_rate": 0.0006,
+ "loss": 3.8682117462158203,
+ "step": 1586
+ },
+ {
+ "epoch": 22.041939711664483,
+ "grad_norm": 0.20651975274085999,
+ "learning_rate": 0.0006,
+ "loss": 3.8501222133636475,
+ "step": 1587
+ },
+ {
+ "epoch": 22.055919615552643,
+ "grad_norm": 0.22987176477909088,
+ "learning_rate": 0.0006,
+ "loss": 3.8830955028533936,
+ "step": 1588
+ },
+ {
+ "epoch": 22.069899519440803,
+ "grad_norm": 0.23308858275413513,
+ "learning_rate": 0.0006,
+ "loss": 3.8659040927886963,
+ "step": 1589
+ },
+ {
+ "epoch": 22.083879423328966,
+ "grad_norm": 0.2144266963005066,
+ "learning_rate": 0.0006,
+ "loss": 3.8311047554016113,
+ "step": 1590
+ },
+ {
+ "epoch": 22.097859327217126,
+ "grad_norm": 0.2052636295557022,
+ "learning_rate": 0.0006,
+ "loss": 3.8700156211853027,
+ "step": 1591
+ },
+ {
+ "epoch": 22.111839231105286,
+ "grad_norm": 0.22792384028434753,
+ "learning_rate": 0.0006,
+ "loss": 3.8799097537994385,
+ "step": 1592
+ },
+ {
+ "epoch": 22.125819134993446,
+ "grad_norm": 0.2533944249153137,
+ "learning_rate": 0.0006,
+ "loss": 3.874959945678711,
+ "step": 1593
+ },
+ {
+ "epoch": 22.13979903888161,
+ "grad_norm": 0.27126258611679077,
+ "learning_rate": 0.0006,
+ "loss": 3.863774299621582,
+ "step": 1594
+ },
+ {
+ "epoch": 22.15377894276977,
+ "grad_norm": 0.2634040415287018,
+ "learning_rate": 0.0006,
+ "loss": 3.8876869678497314,
+ "step": 1595
+ },
+ {
+ "epoch": 22.16775884665793,
+ "grad_norm": 0.267987459897995,
+ "learning_rate": 0.0006,
+ "loss": 3.871776819229126,
+ "step": 1596
+ },
+ {
+ "epoch": 22.18173875054609,
+ "grad_norm": 0.2972337305545807,
+ "learning_rate": 0.0006,
+ "loss": 3.8453969955444336,
+ "step": 1597
+ },
+ {
+ "epoch": 22.195718654434252,
+ "grad_norm": 0.3012159764766693,
+ "learning_rate": 0.0006,
+ "loss": 3.8774254322052,
+ "step": 1598
+ },
+ {
+ "epoch": 22.209698558322412,
+ "grad_norm": 0.27275875210762024,
+ "learning_rate": 0.0006,
+ "loss": 3.8558950424194336,
+ "step": 1599
+ },
+ {
+ "epoch": 22.22367846221057,
+ "grad_norm": 0.2817993462085724,
+ "learning_rate": 0.0006,
+ "loss": 3.872211217880249,
+ "step": 1600
+ },
+ {
+ "epoch": 22.23765836609873,
+ "grad_norm": 0.28823208808898926,
+ "learning_rate": 0.0006,
+ "loss": 3.847616672515869,
+ "step": 1601
+ },
+ {
+ "epoch": 22.251638269986895,
+ "grad_norm": 0.2646387815475464,
+ "learning_rate": 0.0006,
+ "loss": 3.8993802070617676,
+ "step": 1602
+ },
+ {
+ "epoch": 22.265618173875055,
+ "grad_norm": 0.27664077281951904,
+ "learning_rate": 0.0006,
+ "loss": 3.858553409576416,
+ "step": 1603
+ },
+ {
+ "epoch": 22.279598077763215,
+ "grad_norm": 0.27708905935287476,
+ "learning_rate": 0.0006,
+ "loss": 3.8691039085388184,
+ "step": 1604
+ },
+ {
+ "epoch": 22.293577981651374,
+ "grad_norm": 0.3045521378517151,
+ "learning_rate": 0.0006,
+ "loss": 3.8721439838409424,
+ "step": 1605
+ },
+ {
+ "epoch": 22.307557885539538,
+ "grad_norm": 0.3481914699077606,
+ "learning_rate": 0.0006,
+ "loss": 3.894503593444824,
+ "step": 1606
+ },
+ {
+ "epoch": 22.321537789427698,
+ "grad_norm": 0.3298046588897705,
+ "learning_rate": 0.0006,
+ "loss": 3.8420844078063965,
+ "step": 1607
+ },
+ {
+ "epoch": 22.335517693315857,
+ "grad_norm": 0.24967724084854126,
+ "learning_rate": 0.0006,
+ "loss": 3.8892619609832764,
+ "step": 1608
+ },
+ {
+ "epoch": 22.34949759720402,
+ "grad_norm": 0.22645241022109985,
+ "learning_rate": 0.0006,
+ "loss": 3.873265504837036,
+ "step": 1609
+ },
+ {
+ "epoch": 22.36347750109218,
+ "grad_norm": 0.22813954949378967,
+ "learning_rate": 0.0006,
+ "loss": 3.8658013343811035,
+ "step": 1610
+ },
+ {
+ "epoch": 22.37745740498034,
+ "grad_norm": 0.23825274407863617,
+ "learning_rate": 0.0006,
+ "loss": 3.885456085205078,
+ "step": 1611
+ },
+ {
+ "epoch": 22.3914373088685,
+ "grad_norm": 0.23612336814403534,
+ "learning_rate": 0.0006,
+ "loss": 3.851841449737549,
+ "step": 1612
+ },
+ {
+ "epoch": 22.405417212756664,
+ "grad_norm": 0.23851265013217926,
+ "learning_rate": 0.0006,
+ "loss": 3.8711647987365723,
+ "step": 1613
+ },
+ {
+ "epoch": 22.419397116644824,
+ "grad_norm": 0.22977286577224731,
+ "learning_rate": 0.0006,
+ "loss": 3.848539113998413,
+ "step": 1614
+ },
+ {
+ "epoch": 22.433377020532983,
+ "grad_norm": 0.20970143377780914,
+ "learning_rate": 0.0006,
+ "loss": 3.8709521293640137,
+ "step": 1615
+ },
+ {
+ "epoch": 22.447356924421143,
+ "grad_norm": 0.20714804530143738,
+ "learning_rate": 0.0006,
+ "loss": 3.875060558319092,
+ "step": 1616
+ },
+ {
+ "epoch": 22.461336828309307,
+ "grad_norm": 0.18881355226039886,
+ "learning_rate": 0.0006,
+ "loss": 3.8744640350341797,
+ "step": 1617
+ },
+ {
+ "epoch": 22.475316732197467,
+ "grad_norm": 0.1928759068250656,
+ "learning_rate": 0.0006,
+ "loss": 3.867971420288086,
+ "step": 1618
+ },
+ {
+ "epoch": 22.489296636085626,
+ "grad_norm": 0.18614749610424042,
+ "learning_rate": 0.0006,
+ "loss": 3.8738222122192383,
+ "step": 1619
+ },
+ {
+ "epoch": 22.503276539973786,
+ "grad_norm": 0.18614931404590607,
+ "learning_rate": 0.0006,
+ "loss": 3.8470513820648193,
+ "step": 1620
+ },
+ {
+ "epoch": 22.51725644386195,
+ "grad_norm": 0.17805059254169464,
+ "learning_rate": 0.0006,
+ "loss": 3.866396903991699,
+ "step": 1621
+ },
+ {
+ "epoch": 22.53123634775011,
+ "grad_norm": 0.16941314935684204,
+ "learning_rate": 0.0006,
+ "loss": 3.856832265853882,
+ "step": 1622
+ },
+ {
+ "epoch": 22.54521625163827,
+ "grad_norm": 0.1802310198545456,
+ "learning_rate": 0.0006,
+ "loss": 3.885653018951416,
+ "step": 1623
+ },
+ {
+ "epoch": 22.55919615552643,
+ "grad_norm": 0.1854856163263321,
+ "learning_rate": 0.0006,
+ "loss": 3.8779640197753906,
+ "step": 1624
+ },
+ {
+ "epoch": 22.573176059414592,
+ "grad_norm": 0.18765869736671448,
+ "learning_rate": 0.0006,
+ "loss": 3.8449032306671143,
+ "step": 1625
+ },
+ {
+ "epoch": 22.587155963302752,
+ "grad_norm": 0.1907789707183838,
+ "learning_rate": 0.0006,
+ "loss": 3.863029718399048,
+ "step": 1626
+ },
+ {
+ "epoch": 22.601135867190912,
+ "grad_norm": 0.19285395741462708,
+ "learning_rate": 0.0006,
+ "loss": 3.880145788192749,
+ "step": 1627
+ },
+ {
+ "epoch": 22.615115771079076,
+ "grad_norm": 0.19229751825332642,
+ "learning_rate": 0.0006,
+ "loss": 3.8521225452423096,
+ "step": 1628
+ },
+ {
+ "epoch": 22.629095674967235,
+ "grad_norm": 0.191694438457489,
+ "learning_rate": 0.0006,
+ "loss": 3.899827003479004,
+ "step": 1629
+ },
+ {
+ "epoch": 22.643075578855395,
+ "grad_norm": 0.20143048465251923,
+ "learning_rate": 0.0006,
+ "loss": 3.862064838409424,
+ "step": 1630
+ },
+ {
+ "epoch": 22.657055482743555,
+ "grad_norm": 0.1959840953350067,
+ "learning_rate": 0.0006,
+ "loss": 3.8955392837524414,
+ "step": 1631
+ },
+ {
+ "epoch": 22.67103538663172,
+ "grad_norm": 0.21454884111881256,
+ "learning_rate": 0.0006,
+ "loss": 3.8503167629241943,
+ "step": 1632
+ },
+ {
+ "epoch": 22.68501529051988,
+ "grad_norm": 0.21748484671115875,
+ "learning_rate": 0.0006,
+ "loss": 3.897134304046631,
+ "step": 1633
+ },
+ {
+ "epoch": 22.698995194408038,
+ "grad_norm": 0.21204186975955963,
+ "learning_rate": 0.0006,
+ "loss": 3.9292588233947754,
+ "step": 1634
+ },
+ {
+ "epoch": 22.712975098296198,
+ "grad_norm": 0.2112748771905899,
+ "learning_rate": 0.0006,
+ "loss": 3.89798641204834,
+ "step": 1635
+ },
+ {
+ "epoch": 22.72695500218436,
+ "grad_norm": 0.188576802611351,
+ "learning_rate": 0.0006,
+ "loss": 3.85627818107605,
+ "step": 1636
+ },
+ {
+ "epoch": 22.74093490607252,
+ "grad_norm": 0.17755994200706482,
+ "learning_rate": 0.0006,
+ "loss": 3.8480074405670166,
+ "step": 1637
+ },
+ {
+ "epoch": 22.75491480996068,
+ "grad_norm": 0.18037520349025726,
+ "learning_rate": 0.0006,
+ "loss": 3.8800172805786133,
+ "step": 1638
+ },
+ {
+ "epoch": 22.76889471384884,
+ "grad_norm": 0.19205765426158905,
+ "learning_rate": 0.0006,
+ "loss": 3.8658275604248047,
+ "step": 1639
+ },
+ {
+ "epoch": 22.782874617737004,
+ "grad_norm": 0.21801964938640594,
+ "learning_rate": 0.0006,
+ "loss": 3.8999452590942383,
+ "step": 1640
+ },
+ {
+ "epoch": 22.796854521625164,
+ "grad_norm": 0.23586086928844452,
+ "learning_rate": 0.0006,
+ "loss": 3.8660664558410645,
+ "step": 1641
+ },
+ {
+ "epoch": 22.810834425513324,
+ "grad_norm": 0.22289055585861206,
+ "learning_rate": 0.0006,
+ "loss": 3.86102557182312,
+ "step": 1642
+ },
+ {
+ "epoch": 22.824814329401484,
+ "grad_norm": 0.20695745944976807,
+ "learning_rate": 0.0006,
+ "loss": 3.8336222171783447,
+ "step": 1643
+ },
+ {
+ "epoch": 22.838794233289647,
+ "grad_norm": 0.2157406210899353,
+ "learning_rate": 0.0006,
+ "loss": 3.8923370838165283,
+ "step": 1644
+ },
+ {
+ "epoch": 22.852774137177807,
+ "grad_norm": 0.2326202690601349,
+ "learning_rate": 0.0006,
+ "loss": 3.8841443061828613,
+ "step": 1645
+ },
+ {
+ "epoch": 22.866754041065967,
+ "grad_norm": 0.2228803187608719,
+ "learning_rate": 0.0006,
+ "loss": 3.8791375160217285,
+ "step": 1646
+ },
+ {
+ "epoch": 22.88073394495413,
+ "grad_norm": 0.228999063372612,
+ "learning_rate": 0.0006,
+ "loss": 3.9005866050720215,
+ "step": 1647
+ },
+ {
+ "epoch": 22.89471384884229,
+ "grad_norm": 0.19673815369606018,
+ "learning_rate": 0.0006,
+ "loss": 3.8954291343688965,
+ "step": 1648
+ },
+ {
+ "epoch": 22.90869375273045,
+ "grad_norm": 0.1862584501504898,
+ "learning_rate": 0.0006,
+ "loss": 3.8591439723968506,
+ "step": 1649
+ },
+ {
+ "epoch": 22.92267365661861,
+ "grad_norm": 0.21360838413238525,
+ "learning_rate": 0.0006,
+ "loss": 3.862949848175049,
+ "step": 1650
+ },
+ {
+ "epoch": 22.936653560506773,
+ "grad_norm": 0.22538702189922333,
+ "learning_rate": 0.0006,
+ "loss": 3.8466529846191406,
+ "step": 1651
+ },
+ {
+ "epoch": 22.950633464394933,
+ "grad_norm": 0.21452727913856506,
+ "learning_rate": 0.0006,
+ "loss": 3.890007495880127,
+ "step": 1652
+ },
+ {
+ "epoch": 22.964613368283093,
+ "grad_norm": 0.21283482015132904,
+ "learning_rate": 0.0006,
+ "loss": 3.8820929527282715,
+ "step": 1653
+ },
+ {
+ "epoch": 22.978593272171253,
+ "grad_norm": 0.2035825103521347,
+ "learning_rate": 0.0006,
+ "loss": 3.8663241863250732,
+ "step": 1654
+ },
+ {
+ "epoch": 22.992573176059416,
+ "grad_norm": 0.22431661188602448,
+ "learning_rate": 0.0006,
+ "loss": 3.88238525390625,
+ "step": 1655
+ },
+ {
+ "epoch": 23.0,
+ "grad_norm": 0.2619943916797638,
+ "learning_rate": 0.0006,
+ "loss": 3.8482635021209717,
+ "step": 1656
+ },
+ {
+ "epoch": 23.0,
+ "eval_loss": 4.099980354309082,
+ "eval_runtime": 44.1311,
+ "eval_samples_per_second": 55.335,
+ "eval_steps_per_second": 3.467,
+ "step": 1656
+ },
+ {
+ "epoch": 23.01397990388816,
+ "grad_norm": 0.24712848663330078,
+ "learning_rate": 0.0006,
+ "loss": 3.836700916290283,
+ "step": 1657
+ },
+ {
+ "epoch": 23.027959807776323,
+ "grad_norm": 0.28568798303604126,
+ "learning_rate": 0.0006,
+ "loss": 3.8523952960968018,
+ "step": 1658
+ },
+ {
+ "epoch": 23.041939711664483,
+ "grad_norm": 0.2999744415283203,
+ "learning_rate": 0.0006,
+ "loss": 3.8229494094848633,
+ "step": 1659
+ },
+ {
+ "epoch": 23.055919615552643,
+ "grad_norm": 0.32080450654029846,
+ "learning_rate": 0.0006,
+ "loss": 3.8562774658203125,
+ "step": 1660
+ },
+ {
+ "epoch": 23.069899519440803,
+ "grad_norm": 0.293468177318573,
+ "learning_rate": 0.0006,
+ "loss": 3.889139175415039,
+ "step": 1661
+ },
+ {
+ "epoch": 23.083879423328966,
+ "grad_norm": 0.2605799436569214,
+ "learning_rate": 0.0006,
+ "loss": 3.838681221008301,
+ "step": 1662
+ },
+ {
+ "epoch": 23.097859327217126,
+ "grad_norm": 0.2656237483024597,
+ "learning_rate": 0.0006,
+ "loss": 3.8603532314300537,
+ "step": 1663
+ },
+ {
+ "epoch": 23.111839231105286,
+ "grad_norm": 0.27163293957710266,
+ "learning_rate": 0.0006,
+ "loss": 3.846987009048462,
+ "step": 1664
+ },
+ {
+ "epoch": 23.125819134993446,
+ "grad_norm": 0.2719763517379761,
+ "learning_rate": 0.0006,
+ "loss": 3.805354595184326,
+ "step": 1665
+ },
+ {
+ "epoch": 23.13979903888161,
+ "grad_norm": 0.25786274671554565,
+ "learning_rate": 0.0006,
+ "loss": 3.8486907482147217,
+ "step": 1666
+ },
+ {
+ "epoch": 23.15377894276977,
+ "grad_norm": 0.2675692141056061,
+ "learning_rate": 0.0006,
+ "loss": 3.816493511199951,
+ "step": 1667
+ },
+ {
+ "epoch": 23.16775884665793,
+ "grad_norm": 0.2711698114871979,
+ "learning_rate": 0.0006,
+ "loss": 3.851863384246826,
+ "step": 1668
+ },
+ {
+ "epoch": 23.18173875054609,
+ "grad_norm": 0.2588968873023987,
+ "learning_rate": 0.0006,
+ "loss": 3.860816717147827,
+ "step": 1669
+ },
+ {
+ "epoch": 23.195718654434252,
+ "grad_norm": 0.2458600401878357,
+ "learning_rate": 0.0006,
+ "loss": 3.8058223724365234,
+ "step": 1670
+ },
+ {
+ "epoch": 23.209698558322412,
+ "grad_norm": 0.22014005482196808,
+ "learning_rate": 0.0006,
+ "loss": 3.8686985969543457,
+ "step": 1671
+ },
+ {
+ "epoch": 23.22367846221057,
+ "grad_norm": 0.22450537979602814,
+ "learning_rate": 0.0006,
+ "loss": 3.8379364013671875,
+ "step": 1672
+ },
+ {
+ "epoch": 23.23765836609873,
+ "grad_norm": 0.22132326662540436,
+ "learning_rate": 0.0006,
+ "loss": 3.8873870372772217,
+ "step": 1673
+ },
+ {
+ "epoch": 23.251638269986895,
+ "grad_norm": 0.20994804799556732,
+ "learning_rate": 0.0006,
+ "loss": 3.821415424346924,
+ "step": 1674
+ },
+ {
+ "epoch": 23.265618173875055,
+ "grad_norm": 0.2040853649377823,
+ "learning_rate": 0.0006,
+ "loss": 3.831658124923706,
+ "step": 1675
+ },
+ {
+ "epoch": 23.279598077763215,
+ "grad_norm": 0.20878618955612183,
+ "learning_rate": 0.0006,
+ "loss": 3.838672637939453,
+ "step": 1676
+ },
+ {
+ "epoch": 23.293577981651374,
+ "grad_norm": 0.19974198937416077,
+ "learning_rate": 0.0006,
+ "loss": 3.8442561626434326,
+ "step": 1677
+ },
+ {
+ "epoch": 23.307557885539538,
+ "grad_norm": 0.20523984730243683,
+ "learning_rate": 0.0006,
+ "loss": 3.846139907836914,
+ "step": 1678
+ },
+ {
+ "epoch": 23.321537789427698,
+ "grad_norm": 0.2045847624540329,
+ "learning_rate": 0.0006,
+ "loss": 3.8597474098205566,
+ "step": 1679
+ },
+ {
+ "epoch": 23.335517693315857,
+ "grad_norm": 0.20957441627979279,
+ "learning_rate": 0.0006,
+ "loss": 3.8493881225585938,
+ "step": 1680
+ },
+ {
+ "epoch": 23.34949759720402,
+ "grad_norm": 0.2069379836320877,
+ "learning_rate": 0.0006,
+ "loss": 3.8510046005249023,
+ "step": 1681
+ },
+ {
+ "epoch": 23.36347750109218,
+ "grad_norm": 0.19627872109413147,
+ "learning_rate": 0.0006,
+ "loss": 3.844618320465088,
+ "step": 1682
+ },
+ {
+ "epoch": 23.37745740498034,
+ "grad_norm": 0.19599434733390808,
+ "learning_rate": 0.0006,
+ "loss": 3.8245465755462646,
+ "step": 1683
+ },
+ {
+ "epoch": 23.3914373088685,
+ "grad_norm": 0.2035072147846222,
+ "learning_rate": 0.0006,
+ "loss": 3.854422092437744,
+ "step": 1684
+ },
+ {
+ "epoch": 23.405417212756664,
+ "grad_norm": 0.21836814284324646,
+ "learning_rate": 0.0006,
+ "loss": 3.83512282371521,
+ "step": 1685
+ },
+ {
+ "epoch": 23.419397116644824,
+ "grad_norm": 0.22844630479812622,
+ "learning_rate": 0.0006,
+ "loss": 3.8744301795959473,
+ "step": 1686
+ },
+ {
+ "epoch": 23.433377020532983,
+ "grad_norm": 0.2259359359741211,
+ "learning_rate": 0.0006,
+ "loss": 3.8460323810577393,
+ "step": 1687
+ },
+ {
+ "epoch": 23.447356924421143,
+ "grad_norm": 0.24440120160579681,
+ "learning_rate": 0.0006,
+ "loss": 3.8543787002563477,
+ "step": 1688
+ },
+ {
+ "epoch": 23.461336828309307,
+ "grad_norm": 0.25063708424568176,
+ "learning_rate": 0.0006,
+ "loss": 3.851004123687744,
+ "step": 1689
+ },
+ {
+ "epoch": 23.475316732197467,
+ "grad_norm": 0.25515618920326233,
+ "learning_rate": 0.0006,
+ "loss": 3.8685030937194824,
+ "step": 1690
+ },
+ {
+ "epoch": 23.489296636085626,
+ "grad_norm": 0.23961050808429718,
+ "learning_rate": 0.0006,
+ "loss": 3.866792678833008,
+ "step": 1691
+ },
+ {
+ "epoch": 23.503276539973786,
+ "grad_norm": 0.20880955457687378,
+ "learning_rate": 0.0006,
+ "loss": 3.8416638374328613,
+ "step": 1692
+ },
+ {
+ "epoch": 23.51725644386195,
+ "grad_norm": 0.1989721804857254,
+ "learning_rate": 0.0006,
+ "loss": 3.8608641624450684,
+ "step": 1693
+ },
+ {
+ "epoch": 23.53123634775011,
+ "grad_norm": 0.207577183842659,
+ "learning_rate": 0.0006,
+ "loss": 3.8431811332702637,
+ "step": 1694
+ },
+ {
+ "epoch": 23.54521625163827,
+ "grad_norm": 0.20844359695911407,
+ "learning_rate": 0.0006,
+ "loss": 3.882844924926758,
+ "step": 1695
+ },
+ {
+ "epoch": 23.55919615552643,
+ "grad_norm": 0.22511139512062073,
+ "learning_rate": 0.0006,
+ "loss": 3.866156578063965,
+ "step": 1696
+ },
+ {
+ "epoch": 23.573176059414592,
+ "grad_norm": 0.21648484468460083,
+ "learning_rate": 0.0006,
+ "loss": 3.87117075920105,
+ "step": 1697
+ },
+ {
+ "epoch": 23.587155963302752,
+ "grad_norm": 0.2081802636384964,
+ "learning_rate": 0.0006,
+ "loss": 3.828132152557373,
+ "step": 1698
+ },
+ {
+ "epoch": 23.601135867190912,
+ "grad_norm": 0.2017381489276886,
+ "learning_rate": 0.0006,
+ "loss": 3.839737892150879,
+ "step": 1699
+ },
+ {
+ "epoch": 23.615115771079076,
+ "grad_norm": 0.2025786191225052,
+ "learning_rate": 0.0006,
+ "loss": 3.8787710666656494,
+ "step": 1700
+ },
+ {
+ "epoch": 23.629095674967235,
+ "grad_norm": 0.21394102275371552,
+ "learning_rate": 0.0006,
+ "loss": 3.824047088623047,
+ "step": 1701
+ },
+ {
+ "epoch": 23.643075578855395,
+ "grad_norm": 0.20749174058437347,
+ "learning_rate": 0.0006,
+ "loss": 3.877009153366089,
+ "step": 1702
+ },
+ {
+ "epoch": 23.657055482743555,
+ "grad_norm": 0.2132839858531952,
+ "learning_rate": 0.0006,
+ "loss": 3.844214916229248,
+ "step": 1703
+ },
+ {
+ "epoch": 23.67103538663172,
+ "grad_norm": 0.22408637404441833,
+ "learning_rate": 0.0006,
+ "loss": 3.8570785522460938,
+ "step": 1704
+ },
+ {
+ "epoch": 23.68501529051988,
+ "grad_norm": 0.2275897115468979,
+ "learning_rate": 0.0006,
+ "loss": 3.8599512577056885,
+ "step": 1705
+ },
+ {
+ "epoch": 23.698995194408038,
+ "grad_norm": 0.2230614721775055,
+ "learning_rate": 0.0006,
+ "loss": 3.86374568939209,
+ "step": 1706
+ },
+ {
+ "epoch": 23.712975098296198,
+ "grad_norm": 0.21873739361763,
+ "learning_rate": 0.0006,
+ "loss": 3.8530168533325195,
+ "step": 1707
+ },
+ {
+ "epoch": 23.72695500218436,
+ "grad_norm": 0.24418923258781433,
+ "learning_rate": 0.0006,
+ "loss": 3.8410465717315674,
+ "step": 1708
+ },
+ {
+ "epoch": 23.74093490607252,
+ "grad_norm": 0.24894575774669647,
+ "learning_rate": 0.0006,
+ "loss": 3.8386030197143555,
+ "step": 1709
+ },
+ {
+ "epoch": 23.75491480996068,
+ "grad_norm": 0.221230611205101,
+ "learning_rate": 0.0006,
+ "loss": 3.8116674423217773,
+ "step": 1710
+ },
+ {
+ "epoch": 23.76889471384884,
+ "grad_norm": 0.20560568571090698,
+ "learning_rate": 0.0006,
+ "loss": 3.8634426593780518,
+ "step": 1711
+ },
+ {
+ "epoch": 23.782874617737004,
+ "grad_norm": 0.20450648665428162,
+ "learning_rate": 0.0006,
+ "loss": 3.8690528869628906,
+ "step": 1712
+ },
+ {
+ "epoch": 23.796854521625164,
+ "grad_norm": 0.18996809422969818,
+ "learning_rate": 0.0006,
+ "loss": 3.8484325408935547,
+ "step": 1713
+ },
+ {
+ "epoch": 23.810834425513324,
+ "grad_norm": 0.20165087282657623,
+ "learning_rate": 0.0006,
+ "loss": 3.8823161125183105,
+ "step": 1714
+ },
+ {
+ "epoch": 23.824814329401484,
+ "grad_norm": 0.21149255335330963,
+ "learning_rate": 0.0006,
+ "loss": 3.8833112716674805,
+ "step": 1715
+ },
+ {
+ "epoch": 23.838794233289647,
+ "grad_norm": 0.21254824101924896,
+ "learning_rate": 0.0006,
+ "loss": 3.8414595127105713,
+ "step": 1716
+ },
+ {
+ "epoch": 23.852774137177807,
+ "grad_norm": 0.21313664317131042,
+ "learning_rate": 0.0006,
+ "loss": 3.8732268810272217,
+ "step": 1717
+ },
+ {
+ "epoch": 23.866754041065967,
+ "grad_norm": 0.21635662019252777,
+ "learning_rate": 0.0006,
+ "loss": 3.861222743988037,
+ "step": 1718
+ },
+ {
+ "epoch": 23.88073394495413,
+ "grad_norm": 0.20612190663814545,
+ "learning_rate": 0.0006,
+ "loss": 3.821854591369629,
+ "step": 1719
+ },
+ {
+ "epoch": 23.89471384884229,
+ "grad_norm": 0.1975104659795761,
+ "learning_rate": 0.0006,
+ "loss": 3.8815202713012695,
+ "step": 1720
+ },
+ {
+ "epoch": 23.90869375273045,
+ "grad_norm": 0.20893609523773193,
+ "learning_rate": 0.0006,
+ "loss": 3.8581607341766357,
+ "step": 1721
+ },
+ {
+ "epoch": 23.92267365661861,
+ "grad_norm": 0.2125461846590042,
+ "learning_rate": 0.0006,
+ "loss": 3.839498281478882,
+ "step": 1722
+ },
+ {
+ "epoch": 23.936653560506773,
+ "grad_norm": 0.19985878467559814,
+ "learning_rate": 0.0006,
+ "loss": 3.856555223464966,
+ "step": 1723
+ },
+ {
+ "epoch": 23.950633464394933,
+ "grad_norm": 0.1922348290681839,
+ "learning_rate": 0.0006,
+ "loss": 3.8956782817840576,
+ "step": 1724
+ },
+ {
+ "epoch": 23.964613368283093,
+ "grad_norm": 0.2191949337720871,
+ "learning_rate": 0.0006,
+ "loss": 3.8582406044006348,
+ "step": 1725
+ },
+ {
+ "epoch": 23.978593272171253,
+ "grad_norm": 0.2569248676300049,
+ "learning_rate": 0.0006,
+ "loss": 3.855678081512451,
+ "step": 1726
+ },
+ {
+ "epoch": 23.992573176059416,
+ "grad_norm": 0.2641172409057617,
+ "learning_rate": 0.0006,
+ "loss": 3.8426473140716553,
+ "step": 1727
+ },
+ {
+ "epoch": 24.0,
+ "grad_norm": 0.29637208580970764,
+ "learning_rate": 0.0006,
+ "loss": 3.843040704727173,
+ "step": 1728
+ },
+ {
+ "epoch": 24.0,
+ "eval_loss": 4.075617790222168,
+ "eval_runtime": 43.9795,
+ "eval_samples_per_second": 55.526,
+ "eval_steps_per_second": 3.479,
+ "step": 1728
+ },
+ {
+ "epoch": 24.01397990388816,
+ "grad_norm": 0.2804758548736572,
+ "learning_rate": 0.0006,
+ "loss": 3.819150924682617,
+ "step": 1729
+ },
+ {
+ "epoch": 24.027959807776323,
+ "grad_norm": 0.2796347141265869,
+ "learning_rate": 0.0006,
+ "loss": 3.8400537967681885,
+ "step": 1730
+ },
+ {
+ "epoch": 24.041939711664483,
+ "grad_norm": 0.28388649225234985,
+ "learning_rate": 0.0006,
+ "loss": 3.844595432281494,
+ "step": 1731
+ },
+ {
+ "epoch": 24.055919615552643,
+ "grad_norm": 0.2944681942462921,
+ "learning_rate": 0.0006,
+ "loss": 3.8048014640808105,
+ "step": 1732
+ },
+ {
+ "epoch": 24.069899519440803,
+ "grad_norm": 0.2956784665584564,
+ "learning_rate": 0.0006,
+ "loss": 3.8488049507141113,
+ "step": 1733
+ },
+ {
+ "epoch": 24.083879423328966,
+ "grad_norm": 0.2822059392929077,
+ "learning_rate": 0.0006,
+ "loss": 3.850322723388672,
+ "step": 1734
+ },
+ {
+ "epoch": 24.097859327217126,
+ "grad_norm": 0.3012927174568176,
+ "learning_rate": 0.0006,
+ "loss": 3.8748154640197754,
+ "step": 1735
+ },
+ {
+ "epoch": 24.111839231105286,
+ "grad_norm": 0.28868764638900757,
+ "learning_rate": 0.0006,
+ "loss": 3.8282783031463623,
+ "step": 1736
+ },
+ {
+ "epoch": 24.125819134993446,
+ "grad_norm": 0.277203768491745,
+ "learning_rate": 0.0006,
+ "loss": 3.8462908267974854,
+ "step": 1737
+ },
+ {
+ "epoch": 24.13979903888161,
+ "grad_norm": 0.2654508948326111,
+ "learning_rate": 0.0006,
+ "loss": 3.8043856620788574,
+ "step": 1738
+ },
+ {
+ "epoch": 24.15377894276977,
+ "grad_norm": 0.24425740540027618,
+ "learning_rate": 0.0006,
+ "loss": 3.8284308910369873,
+ "step": 1739
+ },
+ {
+ "epoch": 24.16775884665793,
+ "grad_norm": 0.24407348036766052,
+ "learning_rate": 0.0006,
+ "loss": 3.8489203453063965,
+ "step": 1740
+ },
+ {
+ "epoch": 24.18173875054609,
+ "grad_norm": 0.2387724369764328,
+ "learning_rate": 0.0006,
+ "loss": 3.8240389823913574,
+ "step": 1741
+ },
+ {
+ "epoch": 24.195718654434252,
+ "grad_norm": 0.2832290232181549,
+ "learning_rate": 0.0006,
+ "loss": 3.869053363800049,
+ "step": 1742
+ },
+ {
+ "epoch": 24.209698558322412,
+ "grad_norm": 0.26501718163490295,
+ "learning_rate": 0.0006,
+ "loss": 3.8624343872070312,
+ "step": 1743
+ },
+ {
+ "epoch": 24.22367846221057,
+ "grad_norm": 0.24234668910503387,
+ "learning_rate": 0.0006,
+ "loss": 3.823103904724121,
+ "step": 1744
+ },
+ {
+ "epoch": 24.23765836609873,
+ "grad_norm": 0.24160076677799225,
+ "learning_rate": 0.0006,
+ "loss": 3.8174376487731934,
+ "step": 1745
+ },
+ {
+ "epoch": 24.251638269986895,
+ "grad_norm": 0.2447604238986969,
+ "learning_rate": 0.0006,
+ "loss": 3.8345441818237305,
+ "step": 1746
+ },
+ {
+ "epoch": 24.265618173875055,
+ "grad_norm": 0.22864456474781036,
+ "learning_rate": 0.0006,
+ "loss": 3.833101272583008,
+ "step": 1747
+ },
+ {
+ "epoch": 24.279598077763215,
+ "grad_norm": 0.20429204404354095,
+ "learning_rate": 0.0006,
+ "loss": 3.8055219650268555,
+ "step": 1748
+ },
+ {
+ "epoch": 24.293577981651374,
+ "grad_norm": 0.21538510918617249,
+ "learning_rate": 0.0006,
+ "loss": 3.7929327487945557,
+ "step": 1749
+ },
+ {
+ "epoch": 24.307557885539538,
+ "grad_norm": 0.2189008593559265,
+ "learning_rate": 0.0006,
+ "loss": 3.852264881134033,
+ "step": 1750
+ },
+ {
+ "epoch": 24.321537789427698,
+ "grad_norm": 0.2228662073612213,
+ "learning_rate": 0.0006,
+ "loss": 3.831088066101074,
+ "step": 1751
+ },
+ {
+ "epoch": 24.335517693315857,
+ "grad_norm": 0.2039937973022461,
+ "learning_rate": 0.0006,
+ "loss": 3.8358256816864014,
+ "step": 1752
+ },
+ {
+ "epoch": 24.34949759720402,
+ "grad_norm": 0.19247715175151825,
+ "learning_rate": 0.0006,
+ "loss": 3.8077402114868164,
+ "step": 1753
+ },
+ {
+ "epoch": 24.36347750109218,
+ "grad_norm": 0.18301935493946075,
+ "learning_rate": 0.0006,
+ "loss": 3.81380033493042,
+ "step": 1754
+ },
+ {
+ "epoch": 24.37745740498034,
+ "grad_norm": 0.19325268268585205,
+ "learning_rate": 0.0006,
+ "loss": 3.8447322845458984,
+ "step": 1755
+ },
+ {
+ "epoch": 24.3914373088685,
+ "grad_norm": 0.2007269263267517,
+ "learning_rate": 0.0006,
+ "loss": 3.82779860496521,
+ "step": 1756
+ },
+ {
+ "epoch": 24.405417212756664,
+ "grad_norm": 0.20567037165164948,
+ "learning_rate": 0.0006,
+ "loss": 3.800354480743408,
+ "step": 1757
+ },
+ {
+ "epoch": 24.419397116644824,
+ "grad_norm": 0.22553028166294098,
+ "learning_rate": 0.0006,
+ "loss": 3.7910406589508057,
+ "step": 1758
+ },
+ {
+ "epoch": 24.433377020532983,
+ "grad_norm": 0.22697079181671143,
+ "learning_rate": 0.0006,
+ "loss": 3.857635974884033,
+ "step": 1759
+ },
+ {
+ "epoch": 24.447356924421143,
+ "grad_norm": 0.22090297937393188,
+ "learning_rate": 0.0006,
+ "loss": 3.8112804889678955,
+ "step": 1760
+ },
+ {
+ "epoch": 24.461336828309307,
+ "grad_norm": 0.24325518310070038,
+ "learning_rate": 0.0006,
+ "loss": 3.822084426879883,
+ "step": 1761
+ },
+ {
+ "epoch": 24.475316732197467,
+ "grad_norm": 0.2702929377555847,
+ "learning_rate": 0.0006,
+ "loss": 3.8307600021362305,
+ "step": 1762
+ },
+ {
+ "epoch": 24.489296636085626,
+ "grad_norm": 0.2699742317199707,
+ "learning_rate": 0.0006,
+ "loss": 3.8479247093200684,
+ "step": 1763
+ },
+ {
+ "epoch": 24.503276539973786,
+ "grad_norm": 0.2526061236858368,
+ "learning_rate": 0.0006,
+ "loss": 3.8615071773529053,
+ "step": 1764
+ },
+ {
+ "epoch": 24.51725644386195,
+ "grad_norm": 0.2633848190307617,
+ "learning_rate": 0.0006,
+ "loss": 3.8412697315216064,
+ "step": 1765
+ },
+ {
+ "epoch": 24.53123634775011,
+ "grad_norm": 0.2711184024810791,
+ "learning_rate": 0.0006,
+ "loss": 3.83647084236145,
+ "step": 1766
+ },
+ {
+ "epoch": 24.54521625163827,
+ "grad_norm": 0.2691243588924408,
+ "learning_rate": 0.0006,
+ "loss": 3.8489012718200684,
+ "step": 1767
+ },
+ {
+ "epoch": 24.55919615552643,
+ "grad_norm": 0.2580898404121399,
+ "learning_rate": 0.0006,
+ "loss": 3.8464407920837402,
+ "step": 1768
+ },
+ {
+ "epoch": 24.573176059414592,
+ "grad_norm": 0.21342119574546814,
+ "learning_rate": 0.0006,
+ "loss": 3.8279383182525635,
+ "step": 1769
+ },
+ {
+ "epoch": 24.587155963302752,
+ "grad_norm": 0.22102399170398712,
+ "learning_rate": 0.0006,
+ "loss": 3.841676712036133,
+ "step": 1770
+ },
+ {
+ "epoch": 24.601135867190912,
+ "grad_norm": 0.2882173955440521,
+ "learning_rate": 0.0006,
+ "loss": 3.825528383255005,
+ "step": 1771
+ },
+ {
+ "epoch": 24.615115771079076,
+ "grad_norm": 0.3403635323047638,
+ "learning_rate": 0.0006,
+ "loss": 3.8282246589660645,
+ "step": 1772
+ },
+ {
+ "epoch": 24.629095674967235,
+ "grad_norm": 0.32192692160606384,
+ "learning_rate": 0.0006,
+ "loss": 3.8411307334899902,
+ "step": 1773
+ },
+ {
+ "epoch": 24.643075578855395,
+ "grad_norm": 0.2534109055995941,
+ "learning_rate": 0.0006,
+ "loss": 3.843007802963257,
+ "step": 1774
+ },
+ {
+ "epoch": 24.657055482743555,
+ "grad_norm": 0.25483962893486023,
+ "learning_rate": 0.0006,
+ "loss": 3.848358154296875,
+ "step": 1775
+ },
+ {
+ "epoch": 24.67103538663172,
+ "grad_norm": 0.25175443291664124,
+ "learning_rate": 0.0006,
+ "loss": 3.8232598304748535,
+ "step": 1776
+ },
+ {
+ "epoch": 24.68501529051988,
+ "grad_norm": 0.20538510382175446,
+ "learning_rate": 0.0006,
+ "loss": 3.857635498046875,
+ "step": 1777
+ },
+ {
+ "epoch": 24.698995194408038,
+ "grad_norm": 0.240861177444458,
+ "learning_rate": 0.0006,
+ "loss": 3.83717679977417,
+ "step": 1778
+ },
+ {
+ "epoch": 24.712975098296198,
+ "grad_norm": 0.23646967113018036,
+ "learning_rate": 0.0006,
+ "loss": 3.81032133102417,
+ "step": 1779
+ },
+ {
+ "epoch": 24.72695500218436,
+ "grad_norm": 0.2164423167705536,
+ "learning_rate": 0.0006,
+ "loss": 3.807878255844116,
+ "step": 1780
+ },
+ {
+ "epoch": 24.74093490607252,
+ "grad_norm": 0.21160705387592316,
+ "learning_rate": 0.0006,
+ "loss": 3.870394468307495,
+ "step": 1781
+ },
+ {
+ "epoch": 24.75491480996068,
+ "grad_norm": 0.20284807682037354,
+ "learning_rate": 0.0006,
+ "loss": 3.842154026031494,
+ "step": 1782
+ },
+ {
+ "epoch": 24.76889471384884,
+ "grad_norm": 0.20738485455513,
+ "learning_rate": 0.0006,
+ "loss": 3.8347136974334717,
+ "step": 1783
+ },
+ {
+ "epoch": 24.782874617737004,
+ "grad_norm": 0.20253778994083405,
+ "learning_rate": 0.0006,
+ "loss": 3.814948320388794,
+ "step": 1784
+ },
+ {
+ "epoch": 24.796854521625164,
+ "grad_norm": 0.20567010343074799,
+ "learning_rate": 0.0006,
+ "loss": 3.8354592323303223,
+ "step": 1785
+ },
+ {
+ "epoch": 24.810834425513324,
+ "grad_norm": 0.20639720559120178,
+ "learning_rate": 0.0006,
+ "loss": 3.8336033821105957,
+ "step": 1786
+ },
+ {
+ "epoch": 24.824814329401484,
+ "grad_norm": 0.19978247582912445,
+ "learning_rate": 0.0006,
+ "loss": 3.8209140300750732,
+ "step": 1787
+ },
+ {
+ "epoch": 24.838794233289647,
+ "grad_norm": 0.20628373324871063,
+ "learning_rate": 0.0006,
+ "loss": 3.8372955322265625,
+ "step": 1788
+ },
+ {
+ "epoch": 24.852774137177807,
+ "grad_norm": 0.2266162782907486,
+ "learning_rate": 0.0006,
+ "loss": 3.850994110107422,
+ "step": 1789
+ },
+ {
+ "epoch": 24.866754041065967,
+ "grad_norm": 0.22567765414714813,
+ "learning_rate": 0.0006,
+ "loss": 3.8552165031433105,
+ "step": 1790
+ },
+ {
+ "epoch": 24.88073394495413,
+ "grad_norm": 0.228011354804039,
+ "learning_rate": 0.0006,
+ "loss": 3.8310747146606445,
+ "step": 1791
+ },
+ {
+ "epoch": 24.89471384884229,
+ "grad_norm": 0.23706914484500885,
+ "learning_rate": 0.0006,
+ "loss": 3.8369603157043457,
+ "step": 1792
+ },
+ {
+ "epoch": 24.90869375273045,
+ "grad_norm": 0.22669097781181335,
+ "learning_rate": 0.0006,
+ "loss": 3.8443825244903564,
+ "step": 1793
+ },
+ {
+ "epoch": 24.92267365661861,
+ "grad_norm": 0.2051001936197281,
+ "learning_rate": 0.0006,
+ "loss": 3.7938501834869385,
+ "step": 1794
+ },
+ {
+ "epoch": 24.936653560506773,
+ "grad_norm": 0.2091219276189804,
+ "learning_rate": 0.0006,
+ "loss": 3.8167076110839844,
+ "step": 1795
+ },
+ {
+ "epoch": 24.950633464394933,
+ "grad_norm": 0.20517204701900482,
+ "learning_rate": 0.0006,
+ "loss": 3.852670669555664,
+ "step": 1796
+ },
+ {
+ "epoch": 24.964613368283093,
+ "grad_norm": 0.19916993379592896,
+ "learning_rate": 0.0006,
+ "loss": 3.8410873413085938,
+ "step": 1797
+ },
+ {
+ "epoch": 24.978593272171253,
+ "grad_norm": 0.21313942968845367,
+ "learning_rate": 0.0006,
+ "loss": 3.8383948802948,
+ "step": 1798
+ },
+ {
+ "epoch": 24.992573176059416,
+ "grad_norm": 0.21042990684509277,
+ "learning_rate": 0.0006,
+ "loss": 3.8623173236846924,
+ "step": 1799
+ },
+ {
+ "epoch": 25.0,
+ "grad_norm": 0.23052045702934265,
+ "learning_rate": 0.0006,
+ "loss": 3.8646674156188965,
+ "step": 1800
+ },
+ {
+ "epoch": 25.0,
+ "eval_loss": 4.081690311431885,
+ "eval_runtime": 44.036,
+ "eval_samples_per_second": 55.455,
+ "eval_steps_per_second": 3.474,
+ "step": 1800
+ },
+ {
+ "epoch": 25.01397990388816,
+ "grad_norm": 0.22068746387958527,
+ "learning_rate": 0.0006,
+ "loss": 3.8002820014953613,
+ "step": 1801
+ },
+ {
+ "epoch": 25.027959807776323,
+ "grad_norm": 0.20711193978786469,
+ "learning_rate": 0.0006,
+ "loss": 3.787785768508911,
+ "step": 1802
+ },
+ {
+ "epoch": 25.041939711664483,
+ "grad_norm": 0.20659677684307098,
+ "learning_rate": 0.0006,
+ "loss": 3.80245304107666,
+ "step": 1803
+ },
+ {
+ "epoch": 25.055919615552643,
+ "grad_norm": 0.22891797125339508,
+ "learning_rate": 0.0006,
+ "loss": 3.784543514251709,
+ "step": 1804
+ },
+ {
+ "epoch": 25.069899519440803,
+ "grad_norm": 0.23679181933403015,
+ "learning_rate": 0.0006,
+ "loss": 3.8311429023742676,
+ "step": 1805
+ },
+ {
+ "epoch": 25.083879423328966,
+ "grad_norm": 0.2548872232437134,
+ "learning_rate": 0.0006,
+ "loss": 3.8047211170196533,
+ "step": 1806
+ },
+ {
+ "epoch": 25.097859327217126,
+ "grad_norm": 0.26181501150131226,
+ "learning_rate": 0.0006,
+ "loss": 3.837508201599121,
+ "step": 1807
+ },
+ {
+ "epoch": 25.111839231105286,
+ "grad_norm": 0.2548452913761139,
+ "learning_rate": 0.0006,
+ "loss": 3.831544876098633,
+ "step": 1808
+ },
+ {
+ "epoch": 25.125819134993446,
+ "grad_norm": 0.26177605986595154,
+ "learning_rate": 0.0006,
+ "loss": 3.805346965789795,
+ "step": 1809
+ },
+ {
+ "epoch": 25.13979903888161,
+ "grad_norm": 0.2608112394809723,
+ "learning_rate": 0.0006,
+ "loss": 3.8040924072265625,
+ "step": 1810
+ },
+ {
+ "epoch": 25.15377894276977,
+ "grad_norm": 0.2586037814617157,
+ "learning_rate": 0.0006,
+ "loss": 3.8102216720581055,
+ "step": 1811
+ },
+ {
+ "epoch": 25.16775884665793,
+ "grad_norm": 0.26258161664009094,
+ "learning_rate": 0.0006,
+ "loss": 3.8152549266815186,
+ "step": 1812
+ },
+ {
+ "epoch": 25.18173875054609,
+ "grad_norm": 0.2803022265434265,
+ "learning_rate": 0.0006,
+ "loss": 3.82576584815979,
+ "step": 1813
+ },
+ {
+ "epoch": 25.195718654434252,
+ "grad_norm": 0.2618221938610077,
+ "learning_rate": 0.0006,
+ "loss": 3.817220687866211,
+ "step": 1814
+ },
+ {
+ "epoch": 25.209698558322412,
+ "grad_norm": 0.23283469676971436,
+ "learning_rate": 0.0006,
+ "loss": 3.7999041080474854,
+ "step": 1815
+ },
+ {
+ "epoch": 25.22367846221057,
+ "grad_norm": 0.20110781490802765,
+ "learning_rate": 0.0006,
+ "loss": 3.783228874206543,
+ "step": 1816
+ },
+ {
+ "epoch": 25.23765836609873,
+ "grad_norm": 0.2231830358505249,
+ "learning_rate": 0.0006,
+ "loss": 3.8032913208007812,
+ "step": 1817
+ },
+ {
+ "epoch": 25.251638269986895,
+ "grad_norm": 0.21807286143302917,
+ "learning_rate": 0.0006,
+ "loss": 3.817028045654297,
+ "step": 1818
+ },
+ {
+ "epoch": 25.265618173875055,
+ "grad_norm": 0.22710664570331573,
+ "learning_rate": 0.0006,
+ "loss": 3.8201727867126465,
+ "step": 1819
+ },
+ {
+ "epoch": 25.279598077763215,
+ "grad_norm": 0.22299866378307343,
+ "learning_rate": 0.0006,
+ "loss": 3.8198719024658203,
+ "step": 1820
+ },
+ {
+ "epoch": 25.293577981651374,
+ "grad_norm": 0.20886564254760742,
+ "learning_rate": 0.0006,
+ "loss": 3.792414665222168,
+ "step": 1821
+ },
+ {
+ "epoch": 25.307557885539538,
+ "grad_norm": 0.20887352526187897,
+ "learning_rate": 0.0006,
+ "loss": 3.7634057998657227,
+ "step": 1822
+ },
+ {
+ "epoch": 25.321537789427698,
+ "grad_norm": 0.24560041725635529,
+ "learning_rate": 0.0006,
+ "loss": 3.79359769821167,
+ "step": 1823
+ },
+ {
+ "epoch": 25.335517693315857,
+ "grad_norm": 0.22767415642738342,
+ "learning_rate": 0.0006,
+ "loss": 3.8313469886779785,
+ "step": 1824
+ },
+ {
+ "epoch": 25.34949759720402,
+ "grad_norm": 0.21617893874645233,
+ "learning_rate": 0.0006,
+ "loss": 3.77200984954834,
+ "step": 1825
+ },
+ {
+ "epoch": 25.36347750109218,
+ "grad_norm": 0.21010833978652954,
+ "learning_rate": 0.0006,
+ "loss": 3.8042140007019043,
+ "step": 1826
+ },
+ {
+ "epoch": 25.37745740498034,
+ "grad_norm": 0.24087965488433838,
+ "learning_rate": 0.0006,
+ "loss": 3.8260979652404785,
+ "step": 1827
+ },
+ {
+ "epoch": 25.3914373088685,
+ "grad_norm": 0.2735275626182556,
+ "learning_rate": 0.0006,
+ "loss": 3.8499274253845215,
+ "step": 1828
+ },
+ {
+ "epoch": 25.405417212756664,
+ "grad_norm": 0.24831001460552216,
+ "learning_rate": 0.0006,
+ "loss": 3.8146448135375977,
+ "step": 1829
+ },
+ {
+ "epoch": 25.419397116644824,
+ "grad_norm": 0.21822866797447205,
+ "learning_rate": 0.0006,
+ "loss": 3.7845146656036377,
+ "step": 1830
+ },
+ {
+ "epoch": 25.433377020532983,
+ "grad_norm": 0.19948813319206238,
+ "learning_rate": 0.0006,
+ "loss": 3.823997974395752,
+ "step": 1831
+ },
+ {
+ "epoch": 25.447356924421143,
+ "grad_norm": 0.18342702090740204,
+ "learning_rate": 0.0006,
+ "loss": 3.8201193809509277,
+ "step": 1832
+ },
+ {
+ "epoch": 25.461336828309307,
+ "grad_norm": 0.19377560913562775,
+ "learning_rate": 0.0006,
+ "loss": 3.8069632053375244,
+ "step": 1833
+ },
+ {
+ "epoch": 25.475316732197467,
+ "grad_norm": 0.22348709404468536,
+ "learning_rate": 0.0006,
+ "loss": 3.7918643951416016,
+ "step": 1834
+ },
+ {
+ "epoch": 25.489296636085626,
+ "grad_norm": 0.24484702944755554,
+ "learning_rate": 0.0006,
+ "loss": 3.85046124458313,
+ "step": 1835
+ },
+ {
+ "epoch": 25.503276539973786,
+ "grad_norm": 0.2493520826101303,
+ "learning_rate": 0.0006,
+ "loss": 3.8043932914733887,
+ "step": 1836
+ },
+ {
+ "epoch": 25.51725644386195,
+ "grad_norm": 0.21509641408920288,
+ "learning_rate": 0.0006,
+ "loss": 3.8064627647399902,
+ "step": 1837
+ },
+ {
+ "epoch": 25.53123634775011,
+ "grad_norm": 0.21912820637226105,
+ "learning_rate": 0.0006,
+ "loss": 3.850588321685791,
+ "step": 1838
+ },
+ {
+ "epoch": 25.54521625163827,
+ "grad_norm": 0.28400927782058716,
+ "learning_rate": 0.0006,
+ "loss": 3.79818058013916,
+ "step": 1839
+ },
+ {
+ "epoch": 25.55919615552643,
+ "grad_norm": 0.32193225622177124,
+ "learning_rate": 0.0006,
+ "loss": 3.836275815963745,
+ "step": 1840
+ },
+ {
+ "epoch": 25.573176059414592,
+ "grad_norm": 0.2902325987815857,
+ "learning_rate": 0.0006,
+ "loss": 3.8080005645751953,
+ "step": 1841
+ },
+ {
+ "epoch": 25.587155963302752,
+ "grad_norm": 0.21759532392024994,
+ "learning_rate": 0.0006,
+ "loss": 3.8233771324157715,
+ "step": 1842
+ },
+ {
+ "epoch": 25.601135867190912,
+ "grad_norm": 0.19645214080810547,
+ "learning_rate": 0.0006,
+ "loss": 3.838881015777588,
+ "step": 1843
+ },
+ {
+ "epoch": 25.615115771079076,
+ "grad_norm": 0.19322903454303741,
+ "learning_rate": 0.0006,
+ "loss": 3.7870054244995117,
+ "step": 1844
+ },
+ {
+ "epoch": 25.629095674967235,
+ "grad_norm": 0.2074001580476761,
+ "learning_rate": 0.0006,
+ "loss": 3.8239974975585938,
+ "step": 1845
+ },
+ {
+ "epoch": 25.643075578855395,
+ "grad_norm": 0.2166101336479187,
+ "learning_rate": 0.0006,
+ "loss": 3.8290855884552,
+ "step": 1846
+ },
+ {
+ "epoch": 25.657055482743555,
+ "grad_norm": 0.23738539218902588,
+ "learning_rate": 0.0006,
+ "loss": 3.7993364334106445,
+ "step": 1847
+ },
+ {
+ "epoch": 25.67103538663172,
+ "grad_norm": 0.23882314562797546,
+ "learning_rate": 0.0006,
+ "loss": 3.802586078643799,
+ "step": 1848
+ },
+ {
+ "epoch": 25.68501529051988,
+ "grad_norm": 0.24168142676353455,
+ "learning_rate": 0.0006,
+ "loss": 3.8303489685058594,
+ "step": 1849
+ },
+ {
+ "epoch": 25.698995194408038,
+ "grad_norm": 0.22423343360424042,
+ "learning_rate": 0.0006,
+ "loss": 3.836228370666504,
+ "step": 1850
+ },
+ {
+ "epoch": 25.712975098296198,
+ "grad_norm": 0.23816974461078644,
+ "learning_rate": 0.0006,
+ "loss": 3.8380274772644043,
+ "step": 1851
+ },
+ {
+ "epoch": 25.72695500218436,
+ "grad_norm": 0.22465108335018158,
+ "learning_rate": 0.0006,
+ "loss": 3.8496339321136475,
+ "step": 1852
+ },
+ {
+ "epoch": 25.74093490607252,
+ "grad_norm": 0.20792442560195923,
+ "learning_rate": 0.0006,
+ "loss": 3.797853946685791,
+ "step": 1853
+ },
+ {
+ "epoch": 25.75491480996068,
+ "grad_norm": 0.20770230889320374,
+ "learning_rate": 0.0006,
+ "loss": 3.842322826385498,
+ "step": 1854
+ },
+ {
+ "epoch": 25.76889471384884,
+ "grad_norm": 0.1928192526102066,
+ "learning_rate": 0.0006,
+ "loss": 3.836540699005127,
+ "step": 1855
+ },
+ {
+ "epoch": 25.782874617737004,
+ "grad_norm": 0.19045178592205048,
+ "learning_rate": 0.0006,
+ "loss": 3.7758889198303223,
+ "step": 1856
+ },
+ {
+ "epoch": 25.796854521625164,
+ "grad_norm": 0.205548495054245,
+ "learning_rate": 0.0006,
+ "loss": 3.8244709968566895,
+ "step": 1857
+ },
+ {
+ "epoch": 25.810834425513324,
+ "grad_norm": 0.20968270301818848,
+ "learning_rate": 0.0006,
+ "loss": 3.8376216888427734,
+ "step": 1858
+ },
+ {
+ "epoch": 25.824814329401484,
+ "grad_norm": 0.18917354941368103,
+ "learning_rate": 0.0006,
+ "loss": 3.8497915267944336,
+ "step": 1859
+ },
+ {
+ "epoch": 25.838794233289647,
+ "grad_norm": 0.2050701528787613,
+ "learning_rate": 0.0006,
+ "loss": 3.819628953933716,
+ "step": 1860
+ },
+ {
+ "epoch": 25.852774137177807,
+ "grad_norm": 0.1981319785118103,
+ "learning_rate": 0.0006,
+ "loss": 3.8007922172546387,
+ "step": 1861
+ },
+ {
+ "epoch": 25.866754041065967,
+ "grad_norm": 0.19055861234664917,
+ "learning_rate": 0.0006,
+ "loss": 3.8304519653320312,
+ "step": 1862
+ },
+ {
+ "epoch": 25.88073394495413,
+ "grad_norm": 0.19255517423152924,
+ "learning_rate": 0.0006,
+ "loss": 3.833280563354492,
+ "step": 1863
+ },
+ {
+ "epoch": 25.89471384884229,
+ "grad_norm": 0.19059430062770844,
+ "learning_rate": 0.0006,
+ "loss": 3.813796281814575,
+ "step": 1864
+ },
+ {
+ "epoch": 25.90869375273045,
+ "grad_norm": 0.18581309914588928,
+ "learning_rate": 0.0006,
+ "loss": 3.8211798667907715,
+ "step": 1865
+ },
+ {
+ "epoch": 25.92267365661861,
+ "grad_norm": 0.20181003212928772,
+ "learning_rate": 0.0006,
+ "loss": 3.8380484580993652,
+ "step": 1866
+ },
+ {
+ "epoch": 25.936653560506773,
+ "grad_norm": 0.22334498167037964,
+ "learning_rate": 0.0006,
+ "loss": 3.8294434547424316,
+ "step": 1867
+ },
+ {
+ "epoch": 25.950633464394933,
+ "grad_norm": 0.20456703007221222,
+ "learning_rate": 0.0006,
+ "loss": 3.819223642349243,
+ "step": 1868
+ },
+ {
+ "epoch": 25.964613368283093,
+ "grad_norm": 0.1885606348514557,
+ "learning_rate": 0.0006,
+ "loss": 3.8110103607177734,
+ "step": 1869
+ },
+ {
+ "epoch": 25.978593272171253,
+ "grad_norm": 0.18862110376358032,
+ "learning_rate": 0.0006,
+ "loss": 3.788691997528076,
+ "step": 1870
+ },
+ {
+ "epoch": 25.992573176059416,
+ "grad_norm": 0.19802744686603546,
+ "learning_rate": 0.0006,
+ "loss": 3.8423619270324707,
+ "step": 1871
+ },
+ {
+ "epoch": 26.0,
+ "grad_norm": 0.23762032389640808,
+ "learning_rate": 0.0006,
+ "loss": 3.7848567962646484,
+ "step": 1872
+ },
+ {
+ "epoch": 26.0,
+ "eval_loss": 4.054965019226074,
+ "eval_runtime": 44.2423,
+ "eval_samples_per_second": 55.196,
+ "eval_steps_per_second": 3.458,
+ "step": 1872
+ },
+ {
+ "epoch": 26.01397990388816,
+ "grad_norm": 0.21533054113388062,
+ "learning_rate": 0.0006,
+ "loss": 3.8123154640197754,
+ "step": 1873
+ },
+ {
+ "epoch": 26.027959807776323,
+ "grad_norm": 0.25094854831695557,
+ "learning_rate": 0.0006,
+ "loss": 3.7847447395324707,
+ "step": 1874
+ },
+ {
+ "epoch": 26.041939711664483,
+ "grad_norm": 0.24042077362537384,
+ "learning_rate": 0.0006,
+ "loss": 3.8033599853515625,
+ "step": 1875
+ },
+ {
+ "epoch": 26.055919615552643,
+ "grad_norm": 0.2425149381160736,
+ "learning_rate": 0.0006,
+ "loss": 3.7828550338745117,
+ "step": 1876
+ },
+ {
+ "epoch": 26.069899519440803,
+ "grad_norm": 0.2300514280796051,
+ "learning_rate": 0.0006,
+ "loss": 3.750882148742676,
+ "step": 1877
+ },
+ {
+ "epoch": 26.083879423328966,
+ "grad_norm": 0.2513943612575531,
+ "learning_rate": 0.0006,
+ "loss": 3.800323963165283,
+ "step": 1878
+ },
+ {
+ "epoch": 26.097859327217126,
+ "grad_norm": 0.2536966800689697,
+ "learning_rate": 0.0006,
+ "loss": 3.8198962211608887,
+ "step": 1879
+ },
+ {
+ "epoch": 26.111839231105286,
+ "grad_norm": 0.24483931064605713,
+ "learning_rate": 0.0006,
+ "loss": 3.825563907623291,
+ "step": 1880
+ },
+ {
+ "epoch": 26.125819134993446,
+ "grad_norm": 0.2502584755420685,
+ "learning_rate": 0.0006,
+ "loss": 3.78756046295166,
+ "step": 1881
+ },
+ {
+ "epoch": 26.13979903888161,
+ "grad_norm": 0.2695745527744293,
+ "learning_rate": 0.0006,
+ "loss": 3.8205409049987793,
+ "step": 1882
+ },
+ {
+ "epoch": 26.15377894276977,
+ "grad_norm": 0.2873472273349762,
+ "learning_rate": 0.0006,
+ "loss": 3.7880778312683105,
+ "step": 1883
+ },
+ {
+ "epoch": 26.16775884665793,
+ "grad_norm": 0.28609949350357056,
+ "learning_rate": 0.0006,
+ "loss": 3.788517951965332,
+ "step": 1884
+ },
+ {
+ "epoch": 26.18173875054609,
+ "grad_norm": 0.28352269530296326,
+ "learning_rate": 0.0006,
+ "loss": 3.778015613555908,
+ "step": 1885
+ },
+ {
+ "epoch": 26.195718654434252,
+ "grad_norm": 0.27055084705352783,
+ "learning_rate": 0.0006,
+ "loss": 3.7857203483581543,
+ "step": 1886
+ },
+ {
+ "epoch": 26.209698558322412,
+ "grad_norm": 0.255647748708725,
+ "learning_rate": 0.0006,
+ "loss": 3.791355609893799,
+ "step": 1887
+ },
+ {
+ "epoch": 26.22367846221057,
+ "grad_norm": 0.22624439001083374,
+ "learning_rate": 0.0006,
+ "loss": 3.7624831199645996,
+ "step": 1888
+ },
+ {
+ "epoch": 26.23765836609873,
+ "grad_norm": 0.2283596396446228,
+ "learning_rate": 0.0006,
+ "loss": 3.8052897453308105,
+ "step": 1889
+ },
+ {
+ "epoch": 26.251638269986895,
+ "grad_norm": 0.2336510866880417,
+ "learning_rate": 0.0006,
+ "loss": 3.789015054702759,
+ "step": 1890
+ },
+ {
+ "epoch": 26.265618173875055,
+ "grad_norm": 0.24107608199119568,
+ "learning_rate": 0.0006,
+ "loss": 3.756551742553711,
+ "step": 1891
+ },
+ {
+ "epoch": 26.279598077763215,
+ "grad_norm": 0.22438564896583557,
+ "learning_rate": 0.0006,
+ "loss": 3.797952651977539,
+ "step": 1892
+ },
+ {
+ "epoch": 26.293577981651374,
+ "grad_norm": 0.24594341218471527,
+ "learning_rate": 0.0006,
+ "loss": 3.7925708293914795,
+ "step": 1893
+ },
+ {
+ "epoch": 26.307557885539538,
+ "grad_norm": 0.23314352333545685,
+ "learning_rate": 0.0006,
+ "loss": 3.792447328567505,
+ "step": 1894
+ },
+ {
+ "epoch": 26.321537789427698,
+ "grad_norm": 0.20870383083820343,
+ "learning_rate": 0.0006,
+ "loss": 3.7888340950012207,
+ "step": 1895
+ },
+ {
+ "epoch": 26.335517693315857,
+ "grad_norm": 0.206504687666893,
+ "learning_rate": 0.0006,
+ "loss": 3.7856602668762207,
+ "step": 1896
+ },
+ {
+ "epoch": 26.34949759720402,
+ "grad_norm": 0.20193266868591309,
+ "learning_rate": 0.0006,
+ "loss": 3.810800552368164,
+ "step": 1897
+ },
+ {
+ "epoch": 26.36347750109218,
+ "grad_norm": 0.2143869698047638,
+ "learning_rate": 0.0006,
+ "loss": 3.818742275238037,
+ "step": 1898
+ },
+ {
+ "epoch": 26.37745740498034,
+ "grad_norm": 0.21388593316078186,
+ "learning_rate": 0.0006,
+ "loss": 3.7576632499694824,
+ "step": 1899
+ },
+ {
+ "epoch": 26.3914373088685,
+ "grad_norm": 0.1933414787054062,
+ "learning_rate": 0.0006,
+ "loss": 3.802579879760742,
+ "step": 1900
+ },
+ {
+ "epoch": 26.405417212756664,
+ "grad_norm": 0.18144549429416656,
+ "learning_rate": 0.0006,
+ "loss": 3.7830452919006348,
+ "step": 1901
+ },
+ {
+ "epoch": 26.419397116644824,
+ "grad_norm": 0.20027601718902588,
+ "learning_rate": 0.0006,
+ "loss": 3.8112521171569824,
+ "step": 1902
+ },
+ {
+ "epoch": 26.433377020532983,
+ "grad_norm": 0.19402910768985748,
+ "learning_rate": 0.0006,
+ "loss": 3.778012990951538,
+ "step": 1903
+ },
+ {
+ "epoch": 26.447356924421143,
+ "grad_norm": 0.19020743668079376,
+ "learning_rate": 0.0006,
+ "loss": 3.823355197906494,
+ "step": 1904
+ },
+ {
+ "epoch": 26.461336828309307,
+ "grad_norm": 0.1885242760181427,
+ "learning_rate": 0.0006,
+ "loss": 3.782108783721924,
+ "step": 1905
+ },
+ {
+ "epoch": 26.475316732197467,
+ "grad_norm": 0.2024235874414444,
+ "learning_rate": 0.0006,
+ "loss": 3.810448408126831,
+ "step": 1906
+ },
+ {
+ "epoch": 26.489296636085626,
+ "grad_norm": 0.21408027410507202,
+ "learning_rate": 0.0006,
+ "loss": 3.8185606002807617,
+ "step": 1907
+ },
+ {
+ "epoch": 26.503276539973786,
+ "grad_norm": 0.22810906171798706,
+ "learning_rate": 0.0006,
+ "loss": 3.8052706718444824,
+ "step": 1908
+ },
+ {
+ "epoch": 26.51725644386195,
+ "grad_norm": 0.21328197419643402,
+ "learning_rate": 0.0006,
+ "loss": 3.7858219146728516,
+ "step": 1909
+ },
+ {
+ "epoch": 26.53123634775011,
+ "grad_norm": 0.20843173563480377,
+ "learning_rate": 0.0006,
+ "loss": 3.8069310188293457,
+ "step": 1910
+ },
+ {
+ "epoch": 26.54521625163827,
+ "grad_norm": 0.2072986662387848,
+ "learning_rate": 0.0006,
+ "loss": 3.794975996017456,
+ "step": 1911
+ },
+ {
+ "epoch": 26.55919615552643,
+ "grad_norm": 0.2203216850757599,
+ "learning_rate": 0.0006,
+ "loss": 3.8070101737976074,
+ "step": 1912
+ },
+ {
+ "epoch": 26.573176059414592,
+ "grad_norm": 0.23449191451072693,
+ "learning_rate": 0.0006,
+ "loss": 3.828695774078369,
+ "step": 1913
+ },
+ {
+ "epoch": 26.587155963302752,
+ "grad_norm": 0.2222008854150772,
+ "learning_rate": 0.0006,
+ "loss": 3.781275749206543,
+ "step": 1914
+ },
+ {
+ "epoch": 26.601135867190912,
+ "grad_norm": 0.22328314185142517,
+ "learning_rate": 0.0006,
+ "loss": 3.7953736782073975,
+ "step": 1915
+ },
+ {
+ "epoch": 26.615115771079076,
+ "grad_norm": 0.2377961128950119,
+ "learning_rate": 0.0006,
+ "loss": 3.8428916931152344,
+ "step": 1916
+ },
+ {
+ "epoch": 26.629095674967235,
+ "grad_norm": 0.2546147108078003,
+ "learning_rate": 0.0006,
+ "loss": 3.7940590381622314,
+ "step": 1917
+ },
+ {
+ "epoch": 26.643075578855395,
+ "grad_norm": 0.24234509468078613,
+ "learning_rate": 0.0006,
+ "loss": 3.802234172821045,
+ "step": 1918
+ },
+ {
+ "epoch": 26.657055482743555,
+ "grad_norm": 0.21294651925563812,
+ "learning_rate": 0.0006,
+ "loss": 3.8159232139587402,
+ "step": 1919
+ },
+ {
+ "epoch": 26.67103538663172,
+ "grad_norm": 0.20008964836597443,
+ "learning_rate": 0.0006,
+ "loss": 3.796949863433838,
+ "step": 1920
+ },
+ {
+ "epoch": 26.68501529051988,
+ "grad_norm": 0.21031023561954498,
+ "learning_rate": 0.0006,
+ "loss": 3.8015570640563965,
+ "step": 1921
+ },
+ {
+ "epoch": 26.698995194408038,
+ "grad_norm": 0.2185603827238083,
+ "learning_rate": 0.0006,
+ "loss": 3.8022537231445312,
+ "step": 1922
+ },
+ {
+ "epoch": 26.712975098296198,
+ "grad_norm": 0.22957198321819305,
+ "learning_rate": 0.0006,
+ "loss": 3.7859907150268555,
+ "step": 1923
+ },
+ {
+ "epoch": 26.72695500218436,
+ "grad_norm": 0.23779156804084778,
+ "learning_rate": 0.0006,
+ "loss": 3.830345630645752,
+ "step": 1924
+ },
+ {
+ "epoch": 26.74093490607252,
+ "grad_norm": 0.23577193915843964,
+ "learning_rate": 0.0006,
+ "loss": 3.777338981628418,
+ "step": 1925
+ },
+ {
+ "epoch": 26.75491480996068,
+ "grad_norm": 0.2521933913230896,
+ "learning_rate": 0.0006,
+ "loss": 3.8215396404266357,
+ "step": 1926
+ },
+ {
+ "epoch": 26.76889471384884,
+ "grad_norm": 0.25050726532936096,
+ "learning_rate": 0.0006,
+ "loss": 3.817509651184082,
+ "step": 1927
+ },
+ {
+ "epoch": 26.782874617737004,
+ "grad_norm": 0.24442453682422638,
+ "learning_rate": 0.0006,
+ "loss": 3.8033013343811035,
+ "step": 1928
+ },
+ {
+ "epoch": 26.796854521625164,
+ "grad_norm": 0.2280828058719635,
+ "learning_rate": 0.0006,
+ "loss": 3.798625946044922,
+ "step": 1929
+ },
+ {
+ "epoch": 26.810834425513324,
+ "grad_norm": 0.23072117567062378,
+ "learning_rate": 0.0006,
+ "loss": 3.8109097480773926,
+ "step": 1930
+ },
+ {
+ "epoch": 26.824814329401484,
+ "grad_norm": 0.2690806984901428,
+ "learning_rate": 0.0006,
+ "loss": 3.7707223892211914,
+ "step": 1931
+ },
+ {
+ "epoch": 26.838794233289647,
+ "grad_norm": 0.24973517656326294,
+ "learning_rate": 0.0006,
+ "loss": 3.7788357734680176,
+ "step": 1932
+ },
+ {
+ "epoch": 26.852774137177807,
+ "grad_norm": 0.24221451580524445,
+ "learning_rate": 0.0006,
+ "loss": 3.8083114624023438,
+ "step": 1933
+ },
+ {
+ "epoch": 26.866754041065967,
+ "grad_norm": 0.23499037325382233,
+ "learning_rate": 0.0006,
+ "loss": 3.845512866973877,
+ "step": 1934
+ },
+ {
+ "epoch": 26.88073394495413,
+ "grad_norm": 0.2172643095254898,
+ "learning_rate": 0.0006,
+ "loss": 3.8171584606170654,
+ "step": 1935
+ },
+ {
+ "epoch": 26.89471384884229,
+ "grad_norm": 0.19935013353824615,
+ "learning_rate": 0.0006,
+ "loss": 3.808596611022949,
+ "step": 1936
+ },
+ {
+ "epoch": 26.90869375273045,
+ "grad_norm": 0.2077745944261551,
+ "learning_rate": 0.0006,
+ "loss": 3.842836856842041,
+ "step": 1937
+ },
+ {
+ "epoch": 26.92267365661861,
+ "grad_norm": 0.20017282664775848,
+ "learning_rate": 0.0006,
+ "loss": 3.791734457015991,
+ "step": 1938
+ },
+ {
+ "epoch": 26.936653560506773,
+ "grad_norm": 0.2082037627696991,
+ "learning_rate": 0.0006,
+ "loss": 3.7987842559814453,
+ "step": 1939
+ },
+ {
+ "epoch": 26.950633464394933,
+ "grad_norm": 0.21100632846355438,
+ "learning_rate": 0.0006,
+ "loss": 3.8033156394958496,
+ "step": 1940
+ },
+ {
+ "epoch": 26.964613368283093,
+ "grad_norm": 0.2091331034898758,
+ "learning_rate": 0.0006,
+ "loss": 3.8250908851623535,
+ "step": 1941
+ },
+ {
+ "epoch": 26.978593272171253,
+ "grad_norm": 0.19728544354438782,
+ "learning_rate": 0.0006,
+ "loss": 3.7934365272521973,
+ "step": 1942
+ },
+ {
+ "epoch": 26.992573176059416,
+ "grad_norm": 0.19266465306282043,
+ "learning_rate": 0.0006,
+ "loss": 3.8095879554748535,
+ "step": 1943
+ },
+ {
+ "epoch": 27.0,
+ "grad_norm": 0.2264554500579834,
+ "learning_rate": 0.0006,
+ "loss": 3.840135335922241,
+ "step": 1944
+ },
+ {
+ "epoch": 27.0,
+ "eval_loss": 4.046233654022217,
+ "eval_runtime": 44.0648,
+ "eval_samples_per_second": 55.418,
+ "eval_steps_per_second": 3.472,
+ "step": 1944
+ },
+ {
+ "epoch": 27.01397990388816,
+ "grad_norm": 0.24101831018924713,
+ "learning_rate": 0.0006,
+ "loss": 3.7463197708129883,
+ "step": 1945
+ },
+ {
+ "epoch": 27.027959807776323,
+ "grad_norm": 0.2917300760746002,
+ "learning_rate": 0.0006,
+ "loss": 3.769083261489868,
+ "step": 1946
+ },
+ {
+ "epoch": 27.041939711664483,
+ "grad_norm": 0.30864080786705017,
+ "learning_rate": 0.0006,
+ "loss": 3.7774248123168945,
+ "step": 1947
+ },
+ {
+ "epoch": 27.055919615552643,
+ "grad_norm": 0.28574317693710327,
+ "learning_rate": 0.0006,
+ "loss": 3.759530544281006,
+ "step": 1948
+ },
+ {
+ "epoch": 27.069899519440803,
+ "grad_norm": 0.23381628096103668,
+ "learning_rate": 0.0006,
+ "loss": 3.764347791671753,
+ "step": 1949
+ },
+ {
+ "epoch": 27.083879423328966,
+ "grad_norm": 0.2717961072921753,
+ "learning_rate": 0.0006,
+ "loss": 3.785306692123413,
+ "step": 1950
+ },
+ {
+ "epoch": 27.097859327217126,
+ "grad_norm": 0.2753375470638275,
+ "learning_rate": 0.0006,
+ "loss": 3.7511696815490723,
+ "step": 1951
+ },
+ {
+ "epoch": 27.111839231105286,
+ "grad_norm": 0.260250061750412,
+ "learning_rate": 0.0006,
+ "loss": 3.7775721549987793,
+ "step": 1952
+ },
+ {
+ "epoch": 27.125819134993446,
+ "grad_norm": 0.2462741732597351,
+ "learning_rate": 0.0006,
+ "loss": 3.775203227996826,
+ "step": 1953
+ },
+ {
+ "epoch": 27.13979903888161,
+ "grad_norm": 0.23599569499492645,
+ "learning_rate": 0.0006,
+ "loss": 3.7580947875976562,
+ "step": 1954
+ },
+ {
+ "epoch": 27.15377894276977,
+ "grad_norm": 0.21749968826770782,
+ "learning_rate": 0.0006,
+ "loss": 3.778254985809326,
+ "step": 1955
+ },
+ {
+ "epoch": 27.16775884665793,
+ "grad_norm": 0.22210343182086945,
+ "learning_rate": 0.0006,
+ "loss": 3.734727144241333,
+ "step": 1956
+ },
+ {
+ "epoch": 27.18173875054609,
+ "grad_norm": 0.23376141488552094,
+ "learning_rate": 0.0006,
+ "loss": 3.7892181873321533,
+ "step": 1957
+ },
+ {
+ "epoch": 27.195718654434252,
+ "grad_norm": 0.21751847863197327,
+ "learning_rate": 0.0006,
+ "loss": 3.801621913909912,
+ "step": 1958
+ },
+ {
+ "epoch": 27.209698558322412,
+ "grad_norm": 0.22995133697986603,
+ "learning_rate": 0.0006,
+ "loss": 3.8031363487243652,
+ "step": 1959
+ },
+ {
+ "epoch": 27.22367846221057,
+ "grad_norm": 0.22716350853443146,
+ "learning_rate": 0.0006,
+ "loss": 3.7591521739959717,
+ "step": 1960
+ },
+ {
+ "epoch": 27.23765836609873,
+ "grad_norm": 0.20819596946239471,
+ "learning_rate": 0.0006,
+ "loss": 3.7988929748535156,
+ "step": 1961
+ },
+ {
+ "epoch": 27.251638269986895,
+ "grad_norm": 0.19861504435539246,
+ "learning_rate": 0.0006,
+ "loss": 3.7752838134765625,
+ "step": 1962
+ },
+ {
+ "epoch": 27.265618173875055,
+ "grad_norm": 0.1959371268749237,
+ "learning_rate": 0.0006,
+ "loss": 3.7707290649414062,
+ "step": 1963
+ },
+ {
+ "epoch": 27.279598077763215,
+ "grad_norm": 0.18772225081920624,
+ "learning_rate": 0.0006,
+ "loss": 3.7714555263519287,
+ "step": 1964
+ },
+ {
+ "epoch": 27.293577981651374,
+ "grad_norm": 0.20839282870292664,
+ "learning_rate": 0.0006,
+ "loss": 3.7857258319854736,
+ "step": 1965
+ },
+ {
+ "epoch": 27.307557885539538,
+ "grad_norm": 0.22521957755088806,
+ "learning_rate": 0.0006,
+ "loss": 3.776909351348877,
+ "step": 1966
+ },
+ {
+ "epoch": 27.321537789427698,
+ "grad_norm": 0.19533076882362366,
+ "learning_rate": 0.0006,
+ "loss": 3.8152523040771484,
+ "step": 1967
+ },
+ {
+ "epoch": 27.335517693315857,
+ "grad_norm": 0.18678881227970123,
+ "learning_rate": 0.0006,
+ "loss": 3.751555919647217,
+ "step": 1968
+ },
+ {
+ "epoch": 27.34949759720402,
+ "grad_norm": 0.18257129192352295,
+ "learning_rate": 0.0006,
+ "loss": 3.7701754570007324,
+ "step": 1969
+ },
+ {
+ "epoch": 27.36347750109218,
+ "grad_norm": 0.18191468715667725,
+ "learning_rate": 0.0006,
+ "loss": 3.817451238632202,
+ "step": 1970
+ },
+ {
+ "epoch": 27.37745740498034,
+ "grad_norm": 0.18665607273578644,
+ "learning_rate": 0.0006,
+ "loss": 3.78645658493042,
+ "step": 1971
+ },
+ {
+ "epoch": 27.3914373088685,
+ "grad_norm": 0.19604510068893433,
+ "learning_rate": 0.0006,
+ "loss": 3.7735626697540283,
+ "step": 1972
+ },
+ {
+ "epoch": 27.405417212756664,
+ "grad_norm": 0.20136640965938568,
+ "learning_rate": 0.0006,
+ "loss": 3.77310848236084,
+ "step": 1973
+ },
+ {
+ "epoch": 27.419397116644824,
+ "grad_norm": 0.19314947724342346,
+ "learning_rate": 0.0006,
+ "loss": 3.8084068298339844,
+ "step": 1974
+ },
+ {
+ "epoch": 27.433377020532983,
+ "grad_norm": 0.20761604607105255,
+ "learning_rate": 0.0006,
+ "loss": 3.80732798576355,
+ "step": 1975
+ },
+ {
+ "epoch": 27.447356924421143,
+ "grad_norm": 0.2239987850189209,
+ "learning_rate": 0.0006,
+ "loss": 3.7950329780578613,
+ "step": 1976
+ },
+ {
+ "epoch": 27.461336828309307,
+ "grad_norm": 0.22146444022655487,
+ "learning_rate": 0.0006,
+ "loss": 3.7957234382629395,
+ "step": 1977
+ },
+ {
+ "epoch": 27.475316732197467,
+ "grad_norm": 0.23218585550785065,
+ "learning_rate": 0.0006,
+ "loss": 3.806377410888672,
+ "step": 1978
+ },
+ {
+ "epoch": 27.489296636085626,
+ "grad_norm": 0.23549026250839233,
+ "learning_rate": 0.0006,
+ "loss": 3.7833383083343506,
+ "step": 1979
+ },
+ {
+ "epoch": 27.503276539973786,
+ "grad_norm": 0.24219457805156708,
+ "learning_rate": 0.0006,
+ "loss": 3.8154187202453613,
+ "step": 1980
+ },
+ {
+ "epoch": 27.51725644386195,
+ "grad_norm": 0.23703953623771667,
+ "learning_rate": 0.0006,
+ "loss": 3.7846405506134033,
+ "step": 1981
+ },
+ {
+ "epoch": 27.53123634775011,
+ "grad_norm": 0.23596109449863434,
+ "learning_rate": 0.0006,
+ "loss": 3.7698163986206055,
+ "step": 1982
+ },
+ {
+ "epoch": 27.54521625163827,
+ "grad_norm": 0.23073506355285645,
+ "learning_rate": 0.0006,
+ "loss": 3.8114185333251953,
+ "step": 1983
+ },
+ {
+ "epoch": 27.55919615552643,
+ "grad_norm": 0.24761143326759338,
+ "learning_rate": 0.0006,
+ "loss": 3.7548117637634277,
+ "step": 1984
+ },
+ {
+ "epoch": 27.573176059414592,
+ "grad_norm": 0.2834068238735199,
+ "learning_rate": 0.0006,
+ "loss": 3.7990212440490723,
+ "step": 1985
+ },
+ {
+ "epoch": 27.587155963302752,
+ "grad_norm": 0.29774922132492065,
+ "learning_rate": 0.0006,
+ "loss": 3.7845072746276855,
+ "step": 1986
+ },
+ {
+ "epoch": 27.601135867190912,
+ "grad_norm": 0.2732089161872864,
+ "learning_rate": 0.0006,
+ "loss": 3.8050694465637207,
+ "step": 1987
+ },
+ {
+ "epoch": 27.615115771079076,
+ "grad_norm": 0.24433180689811707,
+ "learning_rate": 0.0006,
+ "loss": 3.762704372406006,
+ "step": 1988
+ },
+ {
+ "epoch": 27.629095674967235,
+ "grad_norm": 0.21340419352054596,
+ "learning_rate": 0.0006,
+ "loss": 3.826023817062378,
+ "step": 1989
+ },
+ {
+ "epoch": 27.643075578855395,
+ "grad_norm": 0.22518761456012726,
+ "learning_rate": 0.0006,
+ "loss": 3.7823970317840576,
+ "step": 1990
+ },
+ {
+ "epoch": 27.657055482743555,
+ "grad_norm": 0.2196940928697586,
+ "learning_rate": 0.0006,
+ "loss": 3.787463426589966,
+ "step": 1991
+ },
+ {
+ "epoch": 27.67103538663172,
+ "grad_norm": 0.21906471252441406,
+ "learning_rate": 0.0006,
+ "loss": 3.7856104373931885,
+ "step": 1992
+ },
+ {
+ "epoch": 27.68501529051988,
+ "grad_norm": 0.2280956357717514,
+ "learning_rate": 0.0006,
+ "loss": 3.7829794883728027,
+ "step": 1993
+ },
+ {
+ "epoch": 27.698995194408038,
+ "grad_norm": 0.22567005455493927,
+ "learning_rate": 0.0006,
+ "loss": 3.762316942214966,
+ "step": 1994
+ },
+ {
+ "epoch": 27.712975098296198,
+ "grad_norm": 0.21703341603279114,
+ "learning_rate": 0.0006,
+ "loss": 3.772535800933838,
+ "step": 1995
+ },
+ {
+ "epoch": 27.72695500218436,
+ "grad_norm": 0.20586732029914856,
+ "learning_rate": 0.0006,
+ "loss": 3.775930881500244,
+ "step": 1996
+ },
+ {
+ "epoch": 27.74093490607252,
+ "grad_norm": 0.2126319408416748,
+ "learning_rate": 0.0006,
+ "loss": 3.793353796005249,
+ "step": 1997
+ },
+ {
+ "epoch": 27.75491480996068,
+ "grad_norm": 0.19664280116558075,
+ "learning_rate": 0.0006,
+ "loss": 3.7721195220947266,
+ "step": 1998
+ },
+ {
+ "epoch": 27.76889471384884,
+ "grad_norm": 0.17695854604244232,
+ "learning_rate": 0.0006,
+ "loss": 3.7931227684020996,
+ "step": 1999
+ },
+ {
+ "epoch": 27.782874617737004,
+ "grad_norm": 0.1899620145559311,
+ "learning_rate": 0.0006,
+ "loss": 3.798692226409912,
+ "step": 2000
+ },
+ {
+ "epoch": 27.796854521625164,
+ "grad_norm": 0.20334762334823608,
+ "learning_rate": 0.0006,
+ "loss": 3.774670124053955,
+ "step": 2001
+ },
+ {
+ "epoch": 27.810834425513324,
+ "grad_norm": 0.21150588989257812,
+ "learning_rate": 0.0006,
+ "loss": 3.803859233856201,
+ "step": 2002
+ },
+ {
+ "epoch": 27.824814329401484,
+ "grad_norm": 0.20425523817539215,
+ "learning_rate": 0.0006,
+ "loss": 3.810410976409912,
+ "step": 2003
+ },
+ {
+ "epoch": 27.838794233289647,
+ "grad_norm": 0.20468413829803467,
+ "learning_rate": 0.0006,
+ "loss": 3.800917625427246,
+ "step": 2004
+ },
+ {
+ "epoch": 27.852774137177807,
+ "grad_norm": 0.2113286256790161,
+ "learning_rate": 0.0006,
+ "loss": 3.7581989765167236,
+ "step": 2005
+ },
+ {
+ "epoch": 27.866754041065967,
+ "grad_norm": 0.2098054736852646,
+ "learning_rate": 0.0006,
+ "loss": 3.7921502590179443,
+ "step": 2006
+ },
+ {
+ "epoch": 27.88073394495413,
+ "grad_norm": 0.21701586246490479,
+ "learning_rate": 0.0006,
+ "loss": 3.8166770935058594,
+ "step": 2007
+ },
+ {
+ "epoch": 27.89471384884229,
+ "grad_norm": 0.2086625099182129,
+ "learning_rate": 0.0006,
+ "loss": 3.7732229232788086,
+ "step": 2008
+ },
+ {
+ "epoch": 27.90869375273045,
+ "grad_norm": 0.2186812162399292,
+ "learning_rate": 0.0006,
+ "loss": 3.8067402839660645,
+ "step": 2009
+ },
+ {
+ "epoch": 27.92267365661861,
+ "grad_norm": 0.2168985903263092,
+ "learning_rate": 0.0006,
+ "loss": 3.798159122467041,
+ "step": 2010
+ },
+ {
+ "epoch": 27.936653560506773,
+ "grad_norm": 0.23713620007038116,
+ "learning_rate": 0.0006,
+ "loss": 3.7958693504333496,
+ "step": 2011
+ },
+ {
+ "epoch": 27.950633464394933,
+ "grad_norm": 0.23592841625213623,
+ "learning_rate": 0.0006,
+ "loss": 3.795126438140869,
+ "step": 2012
+ },
+ {
+ "epoch": 27.964613368283093,
+ "grad_norm": 0.22210197150707245,
+ "learning_rate": 0.0006,
+ "loss": 3.791013240814209,
+ "step": 2013
+ },
+ {
+ "epoch": 27.978593272171253,
+ "grad_norm": 0.23190008103847504,
+ "learning_rate": 0.0006,
+ "loss": 3.813408374786377,
+ "step": 2014
+ },
+ {
+ "epoch": 27.992573176059416,
+ "grad_norm": 0.22158131003379822,
+ "learning_rate": 0.0006,
+ "loss": 3.7975716590881348,
+ "step": 2015
+ },
+ {
+ "epoch": 28.0,
+ "grad_norm": 0.2300519198179245,
+ "learning_rate": 0.0006,
+ "loss": 3.776214838027954,
+ "step": 2016
+ },
+ {
+ "epoch": 28.0,
+ "eval_loss": 4.04406213760376,
+ "eval_runtime": 44.0285,
+ "eval_samples_per_second": 55.464,
+ "eval_steps_per_second": 3.475,
+ "step": 2016
+ },
+ {
+ "epoch": 28.01397990388816,
+ "grad_norm": 0.21007688343524933,
+ "learning_rate": 0.0006,
+ "loss": 3.7366907596588135,
+ "step": 2017
+ },
+ {
+ "epoch": 28.027959807776323,
+ "grad_norm": 0.1941644549369812,
+ "learning_rate": 0.0006,
+ "loss": 3.744373321533203,
+ "step": 2018
+ },
+ {
+ "epoch": 28.041939711664483,
+ "grad_norm": 0.21308493614196777,
+ "learning_rate": 0.0006,
+ "loss": 3.7650012969970703,
+ "step": 2019
+ },
+ {
+ "epoch": 28.055919615552643,
+ "grad_norm": 0.20114868879318237,
+ "learning_rate": 0.0006,
+ "loss": 3.7652382850646973,
+ "step": 2020
+ },
+ {
+ "epoch": 28.069899519440803,
+ "grad_norm": 0.20266319811344147,
+ "learning_rate": 0.0006,
+ "loss": 3.7710442543029785,
+ "step": 2021
+ },
+ {
+ "epoch": 28.083879423328966,
+ "grad_norm": 0.205102801322937,
+ "learning_rate": 0.0006,
+ "loss": 3.7515463829040527,
+ "step": 2022
+ },
+ {
+ "epoch": 28.097859327217126,
+ "grad_norm": 0.22002041339874268,
+ "learning_rate": 0.0006,
+ "loss": 3.762019157409668,
+ "step": 2023
+ },
+ {
+ "epoch": 28.111839231105286,
+ "grad_norm": 0.2063235342502594,
+ "learning_rate": 0.0006,
+ "loss": 3.765453338623047,
+ "step": 2024
+ },
+ {
+ "epoch": 28.125819134993446,
+ "grad_norm": 0.19145619869232178,
+ "learning_rate": 0.0006,
+ "loss": 3.769411325454712,
+ "step": 2025
+ },
+ {
+ "epoch": 28.13979903888161,
+ "grad_norm": 0.19308455288410187,
+ "learning_rate": 0.0006,
+ "loss": 3.8009989261627197,
+ "step": 2026
+ },
+ {
+ "epoch": 28.15377894276977,
+ "grad_norm": 0.220510333776474,
+ "learning_rate": 0.0006,
+ "loss": 3.7582602500915527,
+ "step": 2027
+ },
+ {
+ "epoch": 28.16775884665793,
+ "grad_norm": 0.22855883836746216,
+ "learning_rate": 0.0006,
+ "loss": 3.803917407989502,
+ "step": 2028
+ },
+ {
+ "epoch": 28.18173875054609,
+ "grad_norm": 0.24206340312957764,
+ "learning_rate": 0.0006,
+ "loss": 3.764101028442383,
+ "step": 2029
+ },
+ {
+ "epoch": 28.195718654434252,
+ "grad_norm": 0.23973612487316132,
+ "learning_rate": 0.0006,
+ "loss": 3.787308931350708,
+ "step": 2030
+ },
+ {
+ "epoch": 28.209698558322412,
+ "grad_norm": 0.21400697529315948,
+ "learning_rate": 0.0006,
+ "loss": 3.7706117630004883,
+ "step": 2031
+ },
+ {
+ "epoch": 28.22367846221057,
+ "grad_norm": 0.21983976662158966,
+ "learning_rate": 0.0006,
+ "loss": 3.772731304168701,
+ "step": 2032
+ },
+ {
+ "epoch": 28.23765836609873,
+ "grad_norm": 0.22427113354206085,
+ "learning_rate": 0.0006,
+ "loss": 3.7724413871765137,
+ "step": 2033
+ },
+ {
+ "epoch": 28.251638269986895,
+ "grad_norm": 0.23665079474449158,
+ "learning_rate": 0.0006,
+ "loss": 3.769845962524414,
+ "step": 2034
+ },
+ {
+ "epoch": 28.265618173875055,
+ "grad_norm": 0.22663180530071259,
+ "learning_rate": 0.0006,
+ "loss": 3.764380931854248,
+ "step": 2035
+ },
+ {
+ "epoch": 28.279598077763215,
+ "grad_norm": 0.21094927191734314,
+ "learning_rate": 0.0006,
+ "loss": 3.7598326206207275,
+ "step": 2036
+ },
+ {
+ "epoch": 28.293577981651374,
+ "grad_norm": 0.20419518649578094,
+ "learning_rate": 0.0006,
+ "loss": 3.7737207412719727,
+ "step": 2037
+ },
+ {
+ "epoch": 28.307557885539538,
+ "grad_norm": 0.2171909660100937,
+ "learning_rate": 0.0006,
+ "loss": 3.7499468326568604,
+ "step": 2038
+ },
+ {
+ "epoch": 28.321537789427698,
+ "grad_norm": 0.22749298810958862,
+ "learning_rate": 0.0006,
+ "loss": 3.767536163330078,
+ "step": 2039
+ },
+ {
+ "epoch": 28.335517693315857,
+ "grad_norm": 0.22821909189224243,
+ "learning_rate": 0.0006,
+ "loss": 3.744386672973633,
+ "step": 2040
+ },
+ {
+ "epoch": 28.34949759720402,
+ "grad_norm": 0.2227880209684372,
+ "learning_rate": 0.0006,
+ "loss": 3.72955322265625,
+ "step": 2041
+ },
+ {
+ "epoch": 28.36347750109218,
+ "grad_norm": 0.22204327583312988,
+ "learning_rate": 0.0006,
+ "loss": 3.793854236602783,
+ "step": 2042
+ },
+ {
+ "epoch": 28.37745740498034,
+ "grad_norm": 0.21621409058570862,
+ "learning_rate": 0.0006,
+ "loss": 3.775379180908203,
+ "step": 2043
+ },
+ {
+ "epoch": 28.3914373088685,
+ "grad_norm": 0.2439221441745758,
+ "learning_rate": 0.0006,
+ "loss": 3.727464199066162,
+ "step": 2044
+ },
+ {
+ "epoch": 28.405417212756664,
+ "grad_norm": 0.24408605694770813,
+ "learning_rate": 0.0006,
+ "loss": 3.761747360229492,
+ "step": 2045
+ },
+ {
+ "epoch": 28.419397116644824,
+ "grad_norm": 0.26118648052215576,
+ "learning_rate": 0.0006,
+ "loss": 3.7587313652038574,
+ "step": 2046
+ },
+ {
+ "epoch": 28.433377020532983,
+ "grad_norm": 0.25948166847229004,
+ "learning_rate": 0.0006,
+ "loss": 3.7698440551757812,
+ "step": 2047
+ },
+ {
+ "epoch": 28.447356924421143,
+ "grad_norm": 0.26413780450820923,
+ "learning_rate": 0.0006,
+ "loss": 3.799107551574707,
+ "step": 2048
+ },
+ {
+ "epoch": 28.461336828309307,
+ "grad_norm": 0.2687148153781891,
+ "learning_rate": 0.0006,
+ "loss": 3.7564382553100586,
+ "step": 2049
+ },
+ {
+ "epoch": 28.475316732197467,
+ "grad_norm": 0.2676694691181183,
+ "learning_rate": 0.0006,
+ "loss": 3.754267692565918,
+ "step": 2050
+ },
+ {
+ "epoch": 28.489296636085626,
+ "grad_norm": 0.27275168895721436,
+ "learning_rate": 0.0006,
+ "loss": 3.802988052368164,
+ "step": 2051
+ },
+ {
+ "epoch": 28.503276539973786,
+ "grad_norm": 0.28783538937568665,
+ "learning_rate": 0.0006,
+ "loss": 3.762540817260742,
+ "step": 2052
+ },
+ {
+ "epoch": 28.51725644386195,
+ "grad_norm": 0.2628997266292572,
+ "learning_rate": 0.0006,
+ "loss": 3.7933349609375,
+ "step": 2053
+ },
+ {
+ "epoch": 28.53123634775011,
+ "grad_norm": 0.2498515099287033,
+ "learning_rate": 0.0006,
+ "loss": 3.7773094177246094,
+ "step": 2054
+ },
+ {
+ "epoch": 28.54521625163827,
+ "grad_norm": 0.22625942528247833,
+ "learning_rate": 0.0006,
+ "loss": 3.803457021713257,
+ "step": 2055
+ },
+ {
+ "epoch": 28.55919615552643,
+ "grad_norm": 0.21488751471042633,
+ "learning_rate": 0.0006,
+ "loss": 3.78924560546875,
+ "step": 2056
+ },
+ {
+ "epoch": 28.573176059414592,
+ "grad_norm": 0.22041267156600952,
+ "learning_rate": 0.0006,
+ "loss": 3.79361629486084,
+ "step": 2057
+ },
+ {
+ "epoch": 28.587155963302752,
+ "grad_norm": 0.23164816200733185,
+ "learning_rate": 0.0006,
+ "loss": 3.735037326812744,
+ "step": 2058
+ },
+ {
+ "epoch": 28.601135867190912,
+ "grad_norm": 0.22371916472911835,
+ "learning_rate": 0.0006,
+ "loss": 3.731417179107666,
+ "step": 2059
+ },
+ {
+ "epoch": 28.615115771079076,
+ "grad_norm": 0.2280314862728119,
+ "learning_rate": 0.0006,
+ "loss": 3.796154499053955,
+ "step": 2060
+ },
+ {
+ "epoch": 28.629095674967235,
+ "grad_norm": 0.21386604011058807,
+ "learning_rate": 0.0006,
+ "loss": 3.778648614883423,
+ "step": 2061
+ },
+ {
+ "epoch": 28.643075578855395,
+ "grad_norm": 0.20433050394058228,
+ "learning_rate": 0.0006,
+ "loss": 3.772826910018921,
+ "step": 2062
+ },
+ {
+ "epoch": 28.657055482743555,
+ "grad_norm": 0.2049262523651123,
+ "learning_rate": 0.0006,
+ "loss": 3.7410364151000977,
+ "step": 2063
+ },
+ {
+ "epoch": 28.67103538663172,
+ "grad_norm": 0.22041259706020355,
+ "learning_rate": 0.0006,
+ "loss": 3.796724319458008,
+ "step": 2064
+ },
+ {
+ "epoch": 28.68501529051988,
+ "grad_norm": 0.2018800675868988,
+ "learning_rate": 0.0006,
+ "loss": 3.775252342224121,
+ "step": 2065
+ },
+ {
+ "epoch": 28.698995194408038,
+ "grad_norm": 0.2159280925989151,
+ "learning_rate": 0.0006,
+ "loss": 3.766021251678467,
+ "step": 2066
+ },
+ {
+ "epoch": 28.712975098296198,
+ "grad_norm": 0.2072775512933731,
+ "learning_rate": 0.0006,
+ "loss": 3.765397548675537,
+ "step": 2067
+ },
+ {
+ "epoch": 28.72695500218436,
+ "grad_norm": 0.19592848420143127,
+ "learning_rate": 0.0006,
+ "loss": 3.8151614665985107,
+ "step": 2068
+ },
+ {
+ "epoch": 28.74093490607252,
+ "grad_norm": 0.19266322255134583,
+ "learning_rate": 0.0006,
+ "loss": 3.774945020675659,
+ "step": 2069
+ },
+ {
+ "epoch": 28.75491480996068,
+ "grad_norm": 0.19442392885684967,
+ "learning_rate": 0.0006,
+ "loss": 3.816283702850342,
+ "step": 2070
+ },
+ {
+ "epoch": 28.76889471384884,
+ "grad_norm": 0.19080746173858643,
+ "learning_rate": 0.0006,
+ "loss": 3.7784247398376465,
+ "step": 2071
+ },
+ {
+ "epoch": 28.782874617737004,
+ "grad_norm": 0.20150451362133026,
+ "learning_rate": 0.0006,
+ "loss": 3.7710249423980713,
+ "step": 2072
+ },
+ {
+ "epoch": 28.796854521625164,
+ "grad_norm": 0.1835816204547882,
+ "learning_rate": 0.0006,
+ "loss": 3.750032901763916,
+ "step": 2073
+ },
+ {
+ "epoch": 28.810834425513324,
+ "grad_norm": 0.1855502873659134,
+ "learning_rate": 0.0006,
+ "loss": 3.7276318073272705,
+ "step": 2074
+ },
+ {
+ "epoch": 28.824814329401484,
+ "grad_norm": 0.18683169782161713,
+ "learning_rate": 0.0006,
+ "loss": 3.7516555786132812,
+ "step": 2075
+ },
+ {
+ "epoch": 28.838794233289647,
+ "grad_norm": 0.2034577578306198,
+ "learning_rate": 0.0006,
+ "loss": 3.749875068664551,
+ "step": 2076
+ },
+ {
+ "epoch": 28.852774137177807,
+ "grad_norm": 0.2234230488538742,
+ "learning_rate": 0.0006,
+ "loss": 3.791429042816162,
+ "step": 2077
+ },
+ {
+ "epoch": 28.866754041065967,
+ "grad_norm": 0.25600525736808777,
+ "learning_rate": 0.0006,
+ "loss": 3.7769298553466797,
+ "step": 2078
+ },
+ {
+ "epoch": 28.88073394495413,
+ "grad_norm": 0.2741529643535614,
+ "learning_rate": 0.0006,
+ "loss": 3.771848201751709,
+ "step": 2079
+ },
+ {
+ "epoch": 28.89471384884229,
+ "grad_norm": 0.2710304260253906,
+ "learning_rate": 0.0006,
+ "loss": 3.8235626220703125,
+ "step": 2080
+ },
+ {
+ "epoch": 28.90869375273045,
+ "grad_norm": 0.25497519969940186,
+ "learning_rate": 0.0006,
+ "loss": 3.811288595199585,
+ "step": 2081
+ },
+ {
+ "epoch": 28.92267365661861,
+ "grad_norm": 0.25689464807510376,
+ "learning_rate": 0.0006,
+ "loss": 3.7848939895629883,
+ "step": 2082
+ },
+ {
+ "epoch": 28.936653560506773,
+ "grad_norm": 0.2794921398162842,
+ "learning_rate": 0.0006,
+ "loss": 3.7836732864379883,
+ "step": 2083
+ },
+ {
+ "epoch": 28.950633464394933,
+ "grad_norm": 0.24730202555656433,
+ "learning_rate": 0.0006,
+ "loss": 3.7703347206115723,
+ "step": 2084
+ },
+ {
+ "epoch": 28.964613368283093,
+ "grad_norm": 0.21078833937644958,
+ "learning_rate": 0.0006,
+ "loss": 3.7521653175354004,
+ "step": 2085
+ },
+ {
+ "epoch": 28.978593272171253,
+ "grad_norm": 0.2188870757818222,
+ "learning_rate": 0.0006,
+ "loss": 3.769604206085205,
+ "step": 2086
+ },
+ {
+ "epoch": 28.992573176059416,
+ "grad_norm": 0.20447929203510284,
+ "learning_rate": 0.0006,
+ "loss": 3.7842764854431152,
+ "step": 2087
+ },
+ {
+ "epoch": 29.0,
+ "grad_norm": 0.21607689559459686,
+ "learning_rate": 0.0006,
+ "loss": 3.7428855895996094,
+ "step": 2088
+ },
+ {
+ "epoch": 29.0,
+ "eval_loss": 4.0355753898620605,
+ "eval_runtime": 44.1435,
+ "eval_samples_per_second": 55.32,
+ "eval_steps_per_second": 3.466,
+ "step": 2088
+ },
+ {
+ "epoch": 29.01397990388816,
+ "grad_norm": 0.21270133554935455,
+ "learning_rate": 0.0006,
+ "loss": 3.7548413276672363,
+ "step": 2089
+ },
+ {
+ "epoch": 29.027959807776323,
+ "grad_norm": 0.21576301753520966,
+ "learning_rate": 0.0006,
+ "loss": 3.754613161087036,
+ "step": 2090
+ },
+ {
+ "epoch": 29.041939711664483,
+ "grad_norm": 0.2162923663854599,
+ "learning_rate": 0.0006,
+ "loss": 3.755772590637207,
+ "step": 2091
+ },
+ {
+ "epoch": 29.055919615552643,
+ "grad_norm": 0.22236663103103638,
+ "learning_rate": 0.0006,
+ "loss": 3.743497848510742,
+ "step": 2092
+ },
+ {
+ "epoch": 29.069899519440803,
+ "grad_norm": 0.2391042858362198,
+ "learning_rate": 0.0006,
+ "loss": 3.749204158782959,
+ "step": 2093
+ },
+ {
+ "epoch": 29.083879423328966,
+ "grad_norm": 0.23387965559959412,
+ "learning_rate": 0.0006,
+ "loss": 3.7286791801452637,
+ "step": 2094
+ },
+ {
+ "epoch": 29.097859327217126,
+ "grad_norm": 0.23677746951580048,
+ "learning_rate": 0.0006,
+ "loss": 3.755279541015625,
+ "step": 2095
+ },
+ {
+ "epoch": 29.111839231105286,
+ "grad_norm": 0.22771087288856506,
+ "learning_rate": 0.0006,
+ "loss": 3.722566604614258,
+ "step": 2096
+ },
+ {
+ "epoch": 29.125819134993446,
+ "grad_norm": 0.2132875621318817,
+ "learning_rate": 0.0006,
+ "loss": 3.748939037322998,
+ "step": 2097
+ },
+ {
+ "epoch": 29.13979903888161,
+ "grad_norm": 0.2033746838569641,
+ "learning_rate": 0.0006,
+ "loss": 3.7393670082092285,
+ "step": 2098
+ },
+ {
+ "epoch": 29.15377894276977,
+ "grad_norm": 0.1997237652540207,
+ "learning_rate": 0.0006,
+ "loss": 3.718498945236206,
+ "step": 2099
+ },
+ {
+ "epoch": 29.16775884665793,
+ "grad_norm": 0.19102543592453003,
+ "learning_rate": 0.0006,
+ "loss": 3.748950719833374,
+ "step": 2100
+ },
+ {
+ "epoch": 29.18173875054609,
+ "grad_norm": 0.19801580905914307,
+ "learning_rate": 0.0006,
+ "loss": 3.7123501300811768,
+ "step": 2101
+ },
+ {
+ "epoch": 29.195718654434252,
+ "grad_norm": 0.20186249911785126,
+ "learning_rate": 0.0006,
+ "loss": 3.7632713317871094,
+ "step": 2102
+ },
+ {
+ "epoch": 29.209698558322412,
+ "grad_norm": 0.22725415229797363,
+ "learning_rate": 0.0006,
+ "loss": 3.753506660461426,
+ "step": 2103
+ },
+ {
+ "epoch": 29.22367846221057,
+ "grad_norm": 0.23138119280338287,
+ "learning_rate": 0.0006,
+ "loss": 3.753282070159912,
+ "step": 2104
+ },
+ {
+ "epoch": 29.23765836609873,
+ "grad_norm": 0.23171944916248322,
+ "learning_rate": 0.0006,
+ "loss": 3.73783540725708,
+ "step": 2105
+ },
+ {
+ "epoch": 29.251638269986895,
+ "grad_norm": 0.2166522741317749,
+ "learning_rate": 0.0006,
+ "loss": 3.778803825378418,
+ "step": 2106
+ },
+ {
+ "epoch": 29.265618173875055,
+ "grad_norm": 0.2009056806564331,
+ "learning_rate": 0.0006,
+ "loss": 3.738290786743164,
+ "step": 2107
+ },
+ {
+ "epoch": 29.279598077763215,
+ "grad_norm": 0.19451597332954407,
+ "learning_rate": 0.0006,
+ "loss": 3.7553348541259766,
+ "step": 2108
+ },
+ {
+ "epoch": 29.293577981651374,
+ "grad_norm": 0.19246742129325867,
+ "learning_rate": 0.0006,
+ "loss": 3.7321622371673584,
+ "step": 2109
+ },
+ {
+ "epoch": 29.307557885539538,
+ "grad_norm": 0.18917441368103027,
+ "learning_rate": 0.0006,
+ "loss": 3.7408928871154785,
+ "step": 2110
+ },
+ {
+ "epoch": 29.321537789427698,
+ "grad_norm": 0.19067776203155518,
+ "learning_rate": 0.0006,
+ "loss": 3.780052900314331,
+ "step": 2111
+ },
+ {
+ "epoch": 29.335517693315857,
+ "grad_norm": 0.18849676847457886,
+ "learning_rate": 0.0006,
+ "loss": 3.749375820159912,
+ "step": 2112
+ },
+ {
+ "epoch": 29.34949759720402,
+ "grad_norm": 0.19713285565376282,
+ "learning_rate": 0.0006,
+ "loss": 3.7128982543945312,
+ "step": 2113
+ },
+ {
+ "epoch": 29.36347750109218,
+ "grad_norm": 0.196336030960083,
+ "learning_rate": 0.0006,
+ "loss": 3.7528390884399414,
+ "step": 2114
+ },
+ {
+ "epoch": 29.37745740498034,
+ "grad_norm": 0.19574350118637085,
+ "learning_rate": 0.0006,
+ "loss": 3.7105777263641357,
+ "step": 2115
+ },
+ {
+ "epoch": 29.3914373088685,
+ "grad_norm": 0.20396539568901062,
+ "learning_rate": 0.0006,
+ "loss": 3.782249927520752,
+ "step": 2116
+ },
+ {
+ "epoch": 29.405417212756664,
+ "grad_norm": 0.24702422320842743,
+ "learning_rate": 0.0006,
+ "loss": 3.7685647010803223,
+ "step": 2117
+ },
+ {
+ "epoch": 29.419397116644824,
+ "grad_norm": 0.2729755640029907,
+ "learning_rate": 0.0006,
+ "loss": 3.7731213569641113,
+ "step": 2118
+ },
+ {
+ "epoch": 29.433377020532983,
+ "grad_norm": 0.29240545630455017,
+ "learning_rate": 0.0006,
+ "loss": 3.770162343978882,
+ "step": 2119
+ },
+ {
+ "epoch": 29.447356924421143,
+ "grad_norm": 0.2469114065170288,
+ "learning_rate": 0.0006,
+ "loss": 3.764681339263916,
+ "step": 2120
+ },
+ {
+ "epoch": 29.461336828309307,
+ "grad_norm": 0.19837401807308197,
+ "learning_rate": 0.0006,
+ "loss": 3.7600088119506836,
+ "step": 2121
+ },
+ {
+ "epoch": 29.475316732197467,
+ "grad_norm": 0.21266621351242065,
+ "learning_rate": 0.0006,
+ "loss": 3.769454002380371,
+ "step": 2122
+ },
+ {
+ "epoch": 29.489296636085626,
+ "grad_norm": 0.25908344984054565,
+ "learning_rate": 0.0006,
+ "loss": 3.7230491638183594,
+ "step": 2123
+ },
+ {
+ "epoch": 29.503276539973786,
+ "grad_norm": 0.2914169728755951,
+ "learning_rate": 0.0006,
+ "loss": 3.767849922180176,
+ "step": 2124
+ },
+ {
+ "epoch": 29.51725644386195,
+ "grad_norm": 0.2796176075935364,
+ "learning_rate": 0.0006,
+ "loss": 3.741734266281128,
+ "step": 2125
+ },
+ {
+ "epoch": 29.53123634775011,
+ "grad_norm": 0.276309996843338,
+ "learning_rate": 0.0006,
+ "loss": 3.8001914024353027,
+ "step": 2126
+ },
+ {
+ "epoch": 29.54521625163827,
+ "grad_norm": 0.26512834429740906,
+ "learning_rate": 0.0006,
+ "loss": 3.7741384506225586,
+ "step": 2127
+ },
+ {
+ "epoch": 29.55919615552643,
+ "grad_norm": 0.26514101028442383,
+ "learning_rate": 0.0006,
+ "loss": 3.7466959953308105,
+ "step": 2128
+ },
+ {
+ "epoch": 29.573176059414592,
+ "grad_norm": 0.24121330678462982,
+ "learning_rate": 0.0006,
+ "loss": 3.759542465209961,
+ "step": 2129
+ },
+ {
+ "epoch": 29.587155963302752,
+ "grad_norm": 0.2264087200164795,
+ "learning_rate": 0.0006,
+ "loss": 3.791344165802002,
+ "step": 2130
+ },
+ {
+ "epoch": 29.601135867190912,
+ "grad_norm": 0.21915403008460999,
+ "learning_rate": 0.0006,
+ "loss": 3.7540485858917236,
+ "step": 2131
+ },
+ {
+ "epoch": 29.615115771079076,
+ "grad_norm": 0.20453961193561554,
+ "learning_rate": 0.0006,
+ "loss": 3.765617609024048,
+ "step": 2132
+ },
+ {
+ "epoch": 29.629095674967235,
+ "grad_norm": 0.2194051444530487,
+ "learning_rate": 0.0006,
+ "loss": 3.7664294242858887,
+ "step": 2133
+ },
+ {
+ "epoch": 29.643075578855395,
+ "grad_norm": 0.21926000714302063,
+ "learning_rate": 0.0006,
+ "loss": 3.7551684379577637,
+ "step": 2134
+ },
+ {
+ "epoch": 29.657055482743555,
+ "grad_norm": 0.20835602283477783,
+ "learning_rate": 0.0006,
+ "loss": 3.7654306888580322,
+ "step": 2135
+ },
+ {
+ "epoch": 29.67103538663172,
+ "grad_norm": 0.23094356060028076,
+ "learning_rate": 0.0006,
+ "loss": 3.7847180366516113,
+ "step": 2136
+ },
+ {
+ "epoch": 29.68501529051988,
+ "grad_norm": 0.23871271312236786,
+ "learning_rate": 0.0006,
+ "loss": 3.789036273956299,
+ "step": 2137
+ },
+ {
+ "epoch": 29.698995194408038,
+ "grad_norm": 0.22263272106647491,
+ "learning_rate": 0.0006,
+ "loss": 3.7677512168884277,
+ "step": 2138
+ },
+ {
+ "epoch": 29.712975098296198,
+ "grad_norm": 0.2293892651796341,
+ "learning_rate": 0.0006,
+ "loss": 3.777097225189209,
+ "step": 2139
+ },
+ {
+ "epoch": 29.72695500218436,
+ "grad_norm": 0.21068568527698517,
+ "learning_rate": 0.0006,
+ "loss": 3.785336494445801,
+ "step": 2140
+ },
+ {
+ "epoch": 29.74093490607252,
+ "grad_norm": 0.19600282609462738,
+ "learning_rate": 0.0006,
+ "loss": 3.7363505363464355,
+ "step": 2141
+ },
+ {
+ "epoch": 29.75491480996068,
+ "grad_norm": 0.20053936541080475,
+ "learning_rate": 0.0006,
+ "loss": 3.753859043121338,
+ "step": 2142
+ },
+ {
+ "epoch": 29.76889471384884,
+ "grad_norm": 0.22790539264678955,
+ "learning_rate": 0.0006,
+ "loss": 3.749492645263672,
+ "step": 2143
+ },
+ {
+ "epoch": 29.782874617737004,
+ "grad_norm": 0.26042407751083374,
+ "learning_rate": 0.0006,
+ "loss": 3.7905430793762207,
+ "step": 2144
+ },
+ {
+ "epoch": 29.796854521625164,
+ "grad_norm": 0.2753683626651764,
+ "learning_rate": 0.0006,
+ "loss": 3.756442070007324,
+ "step": 2145
+ },
+ {
+ "epoch": 29.810834425513324,
+ "grad_norm": 0.2795007526874542,
+ "learning_rate": 0.0006,
+ "loss": 3.7691903114318848,
+ "step": 2146
+ },
+ {
+ "epoch": 29.824814329401484,
+ "grad_norm": 0.2461438924074173,
+ "learning_rate": 0.0006,
+ "loss": 3.7573065757751465,
+ "step": 2147
+ },
+ {
+ "epoch": 29.838794233289647,
+ "grad_norm": 0.21051941812038422,
+ "learning_rate": 0.0006,
+ "loss": 3.7540078163146973,
+ "step": 2148
+ },
+ {
+ "epoch": 29.852774137177807,
+ "grad_norm": 0.197485089302063,
+ "learning_rate": 0.0006,
+ "loss": 3.734403133392334,
+ "step": 2149
+ },
+ {
+ "epoch": 29.866754041065967,
+ "grad_norm": 0.203064426779747,
+ "learning_rate": 0.0006,
+ "loss": 3.7888364791870117,
+ "step": 2150
+ },
+ {
+ "epoch": 29.88073394495413,
+ "grad_norm": 0.2000301480293274,
+ "learning_rate": 0.0006,
+ "loss": 3.7444958686828613,
+ "step": 2151
+ },
+ {
+ "epoch": 29.89471384884229,
+ "grad_norm": 0.20492053031921387,
+ "learning_rate": 0.0006,
+ "loss": 3.7878224849700928,
+ "step": 2152
+ },
+ {
+ "epoch": 29.90869375273045,
+ "grad_norm": 0.22565388679504395,
+ "learning_rate": 0.0006,
+ "loss": 3.7539188861846924,
+ "step": 2153
+ },
+ {
+ "epoch": 29.92267365661861,
+ "grad_norm": 0.20258226990699768,
+ "learning_rate": 0.0006,
+ "loss": 3.7491893768310547,
+ "step": 2154
+ },
+ {
+ "epoch": 29.936653560506773,
+ "grad_norm": 0.20028717815876007,
+ "learning_rate": 0.0006,
+ "loss": 3.7497997283935547,
+ "step": 2155
+ },
+ {
+ "epoch": 29.950633464394933,
+ "grad_norm": 0.2246360331773758,
+ "learning_rate": 0.0006,
+ "loss": 3.773930788040161,
+ "step": 2156
+ },
+ {
+ "epoch": 29.964613368283093,
+ "grad_norm": 0.22432482242584229,
+ "learning_rate": 0.0006,
+ "loss": 3.7926344871520996,
+ "step": 2157
+ },
+ {
+ "epoch": 29.978593272171253,
+ "grad_norm": 0.2165718674659729,
+ "learning_rate": 0.0006,
+ "loss": 3.7436647415161133,
+ "step": 2158
+ },
+ {
+ "epoch": 29.992573176059416,
+ "grad_norm": 0.20629167556762695,
+ "learning_rate": 0.0006,
+ "loss": 3.7619552612304688,
+ "step": 2159
+ },
+ {
+ "epoch": 30.0,
+ "grad_norm": 0.24264708161354065,
+ "learning_rate": 0.0006,
+ "loss": 3.772679328918457,
+ "step": 2160
+ },
+ {
+ "epoch": 30.0,
+ "eval_loss": 4.024484634399414,
+ "eval_runtime": 44.3611,
+ "eval_samples_per_second": 55.048,
+ "eval_steps_per_second": 3.449,
+ "step": 2160
+ },
+ {
+ "epoch": 30.01397990388816,
+ "grad_norm": 0.2373432070016861,
+ "learning_rate": 0.0006,
+ "loss": 3.7423200607299805,
+ "step": 2161
+ },
+ {
+ "epoch": 30.027959807776323,
+ "grad_norm": 0.26835134625434875,
+ "learning_rate": 0.0006,
+ "loss": 3.7215471267700195,
+ "step": 2162
+ },
+ {
+ "epoch": 30.041939711664483,
+ "grad_norm": 0.2743220329284668,
+ "learning_rate": 0.0006,
+ "loss": 3.7190256118774414,
+ "step": 2163
+ },
+ {
+ "epoch": 30.055919615552643,
+ "grad_norm": 0.2292490005493164,
+ "learning_rate": 0.0006,
+ "loss": 3.731855869293213,
+ "step": 2164
+ },
+ {
+ "epoch": 30.069899519440803,
+ "grad_norm": 0.22704607248306274,
+ "learning_rate": 0.0006,
+ "loss": 3.7649693489074707,
+ "step": 2165
+ },
+ {
+ "epoch": 30.083879423328966,
+ "grad_norm": 0.23255930840969086,
+ "learning_rate": 0.0006,
+ "loss": 3.7547781467437744,
+ "step": 2166
+ },
+ {
+ "epoch": 30.097859327217126,
+ "grad_norm": 0.2068684846162796,
+ "learning_rate": 0.0006,
+ "loss": 3.7343382835388184,
+ "step": 2167
+ },
+ {
+ "epoch": 30.111839231105286,
+ "grad_norm": 0.22523464262485504,
+ "learning_rate": 0.0006,
+ "loss": 3.7304530143737793,
+ "step": 2168
+ },
+ {
+ "epoch": 30.125819134993446,
+ "grad_norm": 0.24650199711322784,
+ "learning_rate": 0.0006,
+ "loss": 3.7414379119873047,
+ "step": 2169
+ },
+ {
+ "epoch": 30.13979903888161,
+ "grad_norm": 0.2392522394657135,
+ "learning_rate": 0.0006,
+ "loss": 3.754481792449951,
+ "step": 2170
+ },
+ {
+ "epoch": 30.15377894276977,
+ "grad_norm": 0.21174749732017517,
+ "learning_rate": 0.0006,
+ "loss": 3.7249929904937744,
+ "step": 2171
+ },
+ {
+ "epoch": 30.16775884665793,
+ "grad_norm": 0.20847836136817932,
+ "learning_rate": 0.0006,
+ "loss": 3.7146458625793457,
+ "step": 2172
+ },
+ {
+ "epoch": 30.18173875054609,
+ "grad_norm": 0.22131472826004028,
+ "learning_rate": 0.0006,
+ "loss": 3.7569539546966553,
+ "step": 2173
+ },
+ {
+ "epoch": 30.195718654434252,
+ "grad_norm": 0.23528096079826355,
+ "learning_rate": 0.0006,
+ "loss": 3.743435859680176,
+ "step": 2174
+ },
+ {
+ "epoch": 30.209698558322412,
+ "grad_norm": 0.2382429540157318,
+ "learning_rate": 0.0006,
+ "loss": 3.745307445526123,
+ "step": 2175
+ },
+ {
+ "epoch": 30.22367846221057,
+ "grad_norm": 0.2477114498615265,
+ "learning_rate": 0.0006,
+ "loss": 3.742305278778076,
+ "step": 2176
+ },
+ {
+ "epoch": 30.23765836609873,
+ "grad_norm": 0.24507801234722137,
+ "learning_rate": 0.0006,
+ "loss": 3.733564853668213,
+ "step": 2177
+ },
+ {
+ "epoch": 30.251638269986895,
+ "grad_norm": 0.2266329675912857,
+ "learning_rate": 0.0006,
+ "loss": 3.747429370880127,
+ "step": 2178
+ },
+ {
+ "epoch": 30.265618173875055,
+ "grad_norm": 0.22146396338939667,
+ "learning_rate": 0.0006,
+ "loss": 3.738630533218384,
+ "step": 2179
+ },
+ {
+ "epoch": 30.279598077763215,
+ "grad_norm": 0.20202279090881348,
+ "learning_rate": 0.0006,
+ "loss": 3.74582839012146,
+ "step": 2180
+ },
+ {
+ "epoch": 30.293577981651374,
+ "grad_norm": 0.20591886341571808,
+ "learning_rate": 0.0006,
+ "loss": 3.792062997817993,
+ "step": 2181
+ },
+ {
+ "epoch": 30.307557885539538,
+ "grad_norm": 0.21744129061698914,
+ "learning_rate": 0.0006,
+ "loss": 3.7389049530029297,
+ "step": 2182
+ },
+ {
+ "epoch": 30.321537789427698,
+ "grad_norm": 0.22641272842884064,
+ "learning_rate": 0.0006,
+ "loss": 3.756775140762329,
+ "step": 2183
+ },
+ {
+ "epoch": 30.335517693315857,
+ "grad_norm": 0.22433501482009888,
+ "learning_rate": 0.0006,
+ "loss": 3.764744758605957,
+ "step": 2184
+ },
+ {
+ "epoch": 30.34949759720402,
+ "grad_norm": 0.20184539258480072,
+ "learning_rate": 0.0006,
+ "loss": 3.747469902038574,
+ "step": 2185
+ },
+ {
+ "epoch": 30.36347750109218,
+ "grad_norm": 0.20864923298358917,
+ "learning_rate": 0.0006,
+ "loss": 3.7472925186157227,
+ "step": 2186
+ },
+ {
+ "epoch": 30.37745740498034,
+ "grad_norm": 0.22537396848201752,
+ "learning_rate": 0.0006,
+ "loss": 3.7194581031799316,
+ "step": 2187
+ },
+ {
+ "epoch": 30.3914373088685,
+ "grad_norm": 0.23159919679164886,
+ "learning_rate": 0.0006,
+ "loss": 3.7124292850494385,
+ "step": 2188
+ },
+ {
+ "epoch": 30.405417212756664,
+ "grad_norm": 0.24334494769573212,
+ "learning_rate": 0.0006,
+ "loss": 3.7769203186035156,
+ "step": 2189
+ },
+ {
+ "epoch": 30.419397116644824,
+ "grad_norm": 0.3031228482723236,
+ "learning_rate": 0.0006,
+ "loss": 3.762169361114502,
+ "step": 2190
+ },
+ {
+ "epoch": 30.433377020532983,
+ "grad_norm": 0.29114583134651184,
+ "learning_rate": 0.0006,
+ "loss": 3.76554799079895,
+ "step": 2191
+ },
+ {
+ "epoch": 30.447356924421143,
+ "grad_norm": 0.26824963092803955,
+ "learning_rate": 0.0006,
+ "loss": 3.732962131500244,
+ "step": 2192
+ },
+ {
+ "epoch": 30.461336828309307,
+ "grad_norm": 0.3026561141014099,
+ "learning_rate": 0.0006,
+ "loss": 3.7567975521087646,
+ "step": 2193
+ },
+ {
+ "epoch": 30.475316732197467,
+ "grad_norm": 0.27224525809288025,
+ "learning_rate": 0.0006,
+ "loss": 3.7856051921844482,
+ "step": 2194
+ },
+ {
+ "epoch": 30.489296636085626,
+ "grad_norm": 0.24295508861541748,
+ "learning_rate": 0.0006,
+ "loss": 3.7514901161193848,
+ "step": 2195
+ },
+ {
+ "epoch": 30.503276539973786,
+ "grad_norm": 0.24435290694236755,
+ "learning_rate": 0.0006,
+ "loss": 3.715973138809204,
+ "step": 2196
+ },
+ {
+ "epoch": 30.51725644386195,
+ "grad_norm": 0.2298959195613861,
+ "learning_rate": 0.0006,
+ "loss": 3.7960405349731445,
+ "step": 2197
+ },
+ {
+ "epoch": 30.53123634775011,
+ "grad_norm": 0.20313066244125366,
+ "learning_rate": 0.0006,
+ "loss": 3.7377915382385254,
+ "step": 2198
+ },
+ {
+ "epoch": 30.54521625163827,
+ "grad_norm": 0.2018895149230957,
+ "learning_rate": 0.0006,
+ "loss": 3.6980559825897217,
+ "step": 2199
+ },
+ {
+ "epoch": 30.55919615552643,
+ "grad_norm": 0.20048382878303528,
+ "learning_rate": 0.0006,
+ "loss": 3.7474141120910645,
+ "step": 2200
+ },
+ {
+ "epoch": 30.573176059414592,
+ "grad_norm": 0.19821316003799438,
+ "learning_rate": 0.0006,
+ "loss": 3.7668564319610596,
+ "step": 2201
+ },
+ {
+ "epoch": 30.587155963302752,
+ "grad_norm": 0.21467992663383484,
+ "learning_rate": 0.0006,
+ "loss": 3.7636144161224365,
+ "step": 2202
+ },
+ {
+ "epoch": 30.601135867190912,
+ "grad_norm": 0.20192000269889832,
+ "learning_rate": 0.0006,
+ "loss": 3.745736837387085,
+ "step": 2203
+ },
+ {
+ "epoch": 30.615115771079076,
+ "grad_norm": 0.2078823447227478,
+ "learning_rate": 0.0006,
+ "loss": 3.726665496826172,
+ "step": 2204
+ },
+ {
+ "epoch": 30.629095674967235,
+ "grad_norm": 0.22535845637321472,
+ "learning_rate": 0.0006,
+ "loss": 3.745058059692383,
+ "step": 2205
+ },
+ {
+ "epoch": 30.643075578855395,
+ "grad_norm": 0.22277814149856567,
+ "learning_rate": 0.0006,
+ "loss": 3.7488319873809814,
+ "step": 2206
+ },
+ {
+ "epoch": 30.657055482743555,
+ "grad_norm": 0.20940838754177094,
+ "learning_rate": 0.0006,
+ "loss": 3.7395732402801514,
+ "step": 2207
+ },
+ {
+ "epoch": 30.67103538663172,
+ "grad_norm": 0.21384629607200623,
+ "learning_rate": 0.0006,
+ "loss": 3.7275657653808594,
+ "step": 2208
+ },
+ {
+ "epoch": 30.68501529051988,
+ "grad_norm": 0.18796643614768982,
+ "learning_rate": 0.0006,
+ "loss": 3.743420124053955,
+ "step": 2209
+ },
+ {
+ "epoch": 30.698995194408038,
+ "grad_norm": 0.213258296251297,
+ "learning_rate": 0.0006,
+ "loss": 3.7227492332458496,
+ "step": 2210
+ },
+ {
+ "epoch": 30.712975098296198,
+ "grad_norm": 0.22714753448963165,
+ "learning_rate": 0.0006,
+ "loss": 3.7301113605499268,
+ "step": 2211
+ },
+ {
+ "epoch": 30.72695500218436,
+ "grad_norm": 0.21657656133174896,
+ "learning_rate": 0.0006,
+ "loss": 3.7336206436157227,
+ "step": 2212
+ },
+ {
+ "epoch": 30.74093490607252,
+ "grad_norm": 0.19550828635692596,
+ "learning_rate": 0.0006,
+ "loss": 3.7367351055145264,
+ "step": 2213
+ },
+ {
+ "epoch": 30.75491480996068,
+ "grad_norm": 0.17011769115924835,
+ "learning_rate": 0.0006,
+ "loss": 3.7401928901672363,
+ "step": 2214
+ },
+ {
+ "epoch": 30.76889471384884,
+ "grad_norm": 0.19110196828842163,
+ "learning_rate": 0.0006,
+ "loss": 3.7496562004089355,
+ "step": 2215
+ },
+ {
+ "epoch": 30.782874617737004,
+ "grad_norm": 0.20054543018341064,
+ "learning_rate": 0.0006,
+ "loss": 3.7532992362976074,
+ "step": 2216
+ },
+ {
+ "epoch": 30.796854521625164,
+ "grad_norm": 0.20667670667171478,
+ "learning_rate": 0.0006,
+ "loss": 3.746974468231201,
+ "step": 2217
+ },
+ {
+ "epoch": 30.810834425513324,
+ "grad_norm": 0.19850662350654602,
+ "learning_rate": 0.0006,
+ "loss": 3.7566256523132324,
+ "step": 2218
+ },
+ {
+ "epoch": 30.824814329401484,
+ "grad_norm": 0.19666457176208496,
+ "learning_rate": 0.0006,
+ "loss": 3.7356925010681152,
+ "step": 2219
+ },
+ {
+ "epoch": 30.838794233289647,
+ "grad_norm": 0.20022115111351013,
+ "learning_rate": 0.0006,
+ "loss": 3.768794536590576,
+ "step": 2220
+ },
+ {
+ "epoch": 30.852774137177807,
+ "grad_norm": 0.225278839468956,
+ "learning_rate": 0.0006,
+ "loss": 3.730262279510498,
+ "step": 2221
+ },
+ {
+ "epoch": 30.866754041065967,
+ "grad_norm": 0.2155608832836151,
+ "learning_rate": 0.0006,
+ "loss": 3.758157968521118,
+ "step": 2222
+ },
+ {
+ "epoch": 30.88073394495413,
+ "grad_norm": 0.20914921164512634,
+ "learning_rate": 0.0006,
+ "loss": 3.7290844917297363,
+ "step": 2223
+ },
+ {
+ "epoch": 30.89471384884229,
+ "grad_norm": 0.21579554677009583,
+ "learning_rate": 0.0006,
+ "loss": 3.7666125297546387,
+ "step": 2224
+ },
+ {
+ "epoch": 30.90869375273045,
+ "grad_norm": 0.22606384754180908,
+ "learning_rate": 0.0006,
+ "loss": 3.7396788597106934,
+ "step": 2225
+ },
+ {
+ "epoch": 30.92267365661861,
+ "grad_norm": 0.22218658030033112,
+ "learning_rate": 0.0006,
+ "loss": 3.7363057136535645,
+ "step": 2226
+ },
+ {
+ "epoch": 30.936653560506773,
+ "grad_norm": 0.2107125222682953,
+ "learning_rate": 0.0006,
+ "loss": 3.7402844429016113,
+ "step": 2227
+ },
+ {
+ "epoch": 30.950633464394933,
+ "grad_norm": 0.2143280804157257,
+ "learning_rate": 0.0006,
+ "loss": 3.7715706825256348,
+ "step": 2228
+ },
+ {
+ "epoch": 30.964613368283093,
+ "grad_norm": 0.20918118953704834,
+ "learning_rate": 0.0006,
+ "loss": 3.783510446548462,
+ "step": 2229
+ },
+ {
+ "epoch": 30.978593272171253,
+ "grad_norm": 0.2184133678674698,
+ "learning_rate": 0.0006,
+ "loss": 3.729846954345703,
+ "step": 2230
+ },
+ {
+ "epoch": 30.992573176059416,
+ "grad_norm": 0.20314796268939972,
+ "learning_rate": 0.0006,
+ "loss": 3.753312110900879,
+ "step": 2231
+ },
+ {
+ "epoch": 31.0,
+ "grad_norm": 0.21582408249378204,
+ "learning_rate": 0.0006,
+ "loss": 3.7653090953826904,
+ "step": 2232
+ },
+ {
+ "epoch": 31.0,
+ "eval_loss": 4.030437469482422,
+ "eval_runtime": 43.8529,
+ "eval_samples_per_second": 55.686,
+ "eval_steps_per_second": 3.489,
+ "step": 2232
+ },
+ {
+ "epoch": 31.01397990388816,
+ "grad_norm": 0.214233860373497,
+ "learning_rate": 0.0006,
+ "loss": 3.7179880142211914,
+ "step": 2233
+ },
+ {
+ "epoch": 31.027959807776323,
+ "grad_norm": 0.24621504545211792,
+ "learning_rate": 0.0006,
+ "loss": 3.712569236755371,
+ "step": 2234
+ },
+ {
+ "epoch": 31.041939711664483,
+ "grad_norm": 0.24189279973506927,
+ "learning_rate": 0.0006,
+ "loss": 3.7503058910369873,
+ "step": 2235
+ },
+ {
+ "epoch": 31.055919615552643,
+ "grad_norm": 0.22872278094291687,
+ "learning_rate": 0.0006,
+ "loss": 3.7386386394500732,
+ "step": 2236
+ },
+ {
+ "epoch": 31.069899519440803,
+ "grad_norm": 0.25036823749542236,
+ "learning_rate": 0.0006,
+ "loss": 3.710566997528076,
+ "step": 2237
+ },
+ {
+ "epoch": 31.083879423328966,
+ "grad_norm": 0.2506193220615387,
+ "learning_rate": 0.0006,
+ "loss": 3.7270963191986084,
+ "step": 2238
+ },
+ {
+ "epoch": 31.097859327217126,
+ "grad_norm": 0.24819663166999817,
+ "learning_rate": 0.0006,
+ "loss": 3.716430425643921,
+ "step": 2239
+ },
+ {
+ "epoch": 31.111839231105286,
+ "grad_norm": 0.27226534485816956,
+ "learning_rate": 0.0006,
+ "loss": 3.704428195953369,
+ "step": 2240
+ },
+ {
+ "epoch": 31.125819134993446,
+ "grad_norm": 0.27718204259872437,
+ "learning_rate": 0.0006,
+ "loss": 3.7309701442718506,
+ "step": 2241
+ },
+ {
+ "epoch": 31.13979903888161,
+ "grad_norm": 0.27272021770477295,
+ "learning_rate": 0.0006,
+ "loss": 3.7325143814086914,
+ "step": 2242
+ },
+ {
+ "epoch": 31.15377894276977,
+ "grad_norm": 0.2666020095348358,
+ "learning_rate": 0.0006,
+ "loss": 3.715268611907959,
+ "step": 2243
+ },
+ {
+ "epoch": 31.16775884665793,
+ "grad_norm": 0.258543461561203,
+ "learning_rate": 0.0006,
+ "loss": 3.7336134910583496,
+ "step": 2244
+ },
+ {
+ "epoch": 31.18173875054609,
+ "grad_norm": 0.2528740167617798,
+ "learning_rate": 0.0006,
+ "loss": 3.724491596221924,
+ "step": 2245
+ },
+ {
+ "epoch": 31.195718654434252,
+ "grad_norm": 0.2659667730331421,
+ "learning_rate": 0.0006,
+ "loss": 3.7144742012023926,
+ "step": 2246
+ },
+ {
+ "epoch": 31.209698558322412,
+ "grad_norm": 0.26563164591789246,
+ "learning_rate": 0.0006,
+ "loss": 3.741182327270508,
+ "step": 2247
+ },
+ {
+ "epoch": 31.22367846221057,
+ "grad_norm": 0.26326918601989746,
+ "learning_rate": 0.0006,
+ "loss": 3.7306275367736816,
+ "step": 2248
+ },
+ {
+ "epoch": 31.23765836609873,
+ "grad_norm": 0.23020948469638824,
+ "learning_rate": 0.0006,
+ "loss": 3.7212486267089844,
+ "step": 2249
+ },
+ {
+ "epoch": 31.251638269986895,
+ "grad_norm": 0.21207433938980103,
+ "learning_rate": 0.0006,
+ "loss": 3.6914258003234863,
+ "step": 2250
+ },
+ {
+ "epoch": 31.265618173875055,
+ "grad_norm": 0.2392292022705078,
+ "learning_rate": 0.0006,
+ "loss": 3.7117457389831543,
+ "step": 2251
+ },
+ {
+ "epoch": 31.279598077763215,
+ "grad_norm": 0.22084997594356537,
+ "learning_rate": 0.0006,
+ "loss": 3.728043794631958,
+ "step": 2252
+ },
+ {
+ "epoch": 31.293577981651374,
+ "grad_norm": 0.20818188786506653,
+ "learning_rate": 0.0006,
+ "loss": 3.751762866973877,
+ "step": 2253
+ },
+ {
+ "epoch": 31.307557885539538,
+ "grad_norm": 0.21866194903850555,
+ "learning_rate": 0.0006,
+ "loss": 3.72676420211792,
+ "step": 2254
+ },
+ {
+ "epoch": 31.321537789427698,
+ "grad_norm": 0.20727522671222687,
+ "learning_rate": 0.0006,
+ "loss": 3.735708236694336,
+ "step": 2255
+ },
+ {
+ "epoch": 31.335517693315857,
+ "grad_norm": 0.20655220746994019,
+ "learning_rate": 0.0006,
+ "loss": 3.714116096496582,
+ "step": 2256
+ },
+ {
+ "epoch": 31.34949759720402,
+ "grad_norm": 0.21738854050636292,
+ "learning_rate": 0.0006,
+ "loss": 3.731657028198242,
+ "step": 2257
+ },
+ {
+ "epoch": 31.36347750109218,
+ "grad_norm": 0.20758475363254547,
+ "learning_rate": 0.0006,
+ "loss": 3.7378528118133545,
+ "step": 2258
+ },
+ {
+ "epoch": 31.37745740498034,
+ "grad_norm": 0.20107139647006989,
+ "learning_rate": 0.0006,
+ "loss": 3.748572826385498,
+ "step": 2259
+ },
+ {
+ "epoch": 31.3914373088685,
+ "grad_norm": 0.18707452714443207,
+ "learning_rate": 0.0006,
+ "loss": 3.7237391471862793,
+ "step": 2260
+ },
+ {
+ "epoch": 31.405417212756664,
+ "grad_norm": 0.20745301246643066,
+ "learning_rate": 0.0006,
+ "loss": 3.734435558319092,
+ "step": 2261
+ },
+ {
+ "epoch": 31.419397116644824,
+ "grad_norm": 0.20793399214744568,
+ "learning_rate": 0.0006,
+ "loss": 3.7639012336730957,
+ "step": 2262
+ },
+ {
+ "epoch": 31.433377020532983,
+ "grad_norm": 0.20193757116794586,
+ "learning_rate": 0.0006,
+ "loss": 3.754117727279663,
+ "step": 2263
+ },
+ {
+ "epoch": 31.447356924421143,
+ "grad_norm": 0.1912323236465454,
+ "learning_rate": 0.0006,
+ "loss": 3.728111982345581,
+ "step": 2264
+ },
+ {
+ "epoch": 31.461336828309307,
+ "grad_norm": 0.19441582262516022,
+ "learning_rate": 0.0006,
+ "loss": 3.7533278465270996,
+ "step": 2265
+ },
+ {
+ "epoch": 31.475316732197467,
+ "grad_norm": 0.19807079434394836,
+ "learning_rate": 0.0006,
+ "loss": 3.7351698875427246,
+ "step": 2266
+ },
+ {
+ "epoch": 31.489296636085626,
+ "grad_norm": 0.20373263955116272,
+ "learning_rate": 0.0006,
+ "loss": 3.714097023010254,
+ "step": 2267
+ },
+ {
+ "epoch": 31.503276539973786,
+ "grad_norm": 0.21868768334388733,
+ "learning_rate": 0.0006,
+ "loss": 3.736743688583374,
+ "step": 2268
+ },
+ {
+ "epoch": 31.51725644386195,
+ "grad_norm": 0.20767922699451447,
+ "learning_rate": 0.0006,
+ "loss": 3.7097702026367188,
+ "step": 2269
+ },
+ {
+ "epoch": 31.53123634775011,
+ "grad_norm": 0.18425600230693817,
+ "learning_rate": 0.0006,
+ "loss": 3.7349140644073486,
+ "step": 2270
+ },
+ {
+ "epoch": 31.54521625163827,
+ "grad_norm": 0.18813826143741608,
+ "learning_rate": 0.0006,
+ "loss": 3.7023448944091797,
+ "step": 2271
+ },
+ {
+ "epoch": 31.55919615552643,
+ "grad_norm": 0.1892116516828537,
+ "learning_rate": 0.0006,
+ "loss": 3.7170143127441406,
+ "step": 2272
+ },
+ {
+ "epoch": 31.573176059414592,
+ "grad_norm": 0.2067834585905075,
+ "learning_rate": 0.0006,
+ "loss": 3.7312588691711426,
+ "step": 2273
+ },
+ {
+ "epoch": 31.587155963302752,
+ "grad_norm": 0.204023078083992,
+ "learning_rate": 0.0006,
+ "loss": 3.7399091720581055,
+ "step": 2274
+ },
+ {
+ "epoch": 31.601135867190912,
+ "grad_norm": 0.20245152711868286,
+ "learning_rate": 0.0006,
+ "loss": 3.7259416580200195,
+ "step": 2275
+ },
+ {
+ "epoch": 31.615115771079076,
+ "grad_norm": 0.21125490963459015,
+ "learning_rate": 0.0006,
+ "loss": 3.7217836380004883,
+ "step": 2276
+ },
+ {
+ "epoch": 31.629095674967235,
+ "grad_norm": 0.2093241959810257,
+ "learning_rate": 0.0006,
+ "loss": 3.707627773284912,
+ "step": 2277
+ },
+ {
+ "epoch": 31.643075578855395,
+ "grad_norm": 0.19290480017662048,
+ "learning_rate": 0.0006,
+ "loss": 3.7467126846313477,
+ "step": 2278
+ },
+ {
+ "epoch": 31.657055482743555,
+ "grad_norm": 0.1853940635919571,
+ "learning_rate": 0.0006,
+ "loss": 3.7565581798553467,
+ "step": 2279
+ },
+ {
+ "epoch": 31.67103538663172,
+ "grad_norm": 0.18917642533779144,
+ "learning_rate": 0.0006,
+ "loss": 3.7286229133605957,
+ "step": 2280
+ },
+ {
+ "epoch": 31.68501529051988,
+ "grad_norm": 0.2094079703092575,
+ "learning_rate": 0.0006,
+ "loss": 3.7297096252441406,
+ "step": 2281
+ },
+ {
+ "epoch": 31.698995194408038,
+ "grad_norm": 0.20020027458667755,
+ "learning_rate": 0.0006,
+ "loss": 3.7565250396728516,
+ "step": 2282
+ },
+ {
+ "epoch": 31.712975098296198,
+ "grad_norm": 0.19156186282634735,
+ "learning_rate": 0.0006,
+ "loss": 3.7401509284973145,
+ "step": 2283
+ },
+ {
+ "epoch": 31.72695500218436,
+ "grad_norm": 0.19176368415355682,
+ "learning_rate": 0.0006,
+ "loss": 3.751206398010254,
+ "step": 2284
+ },
+ {
+ "epoch": 31.74093490607252,
+ "grad_norm": 0.18351277709007263,
+ "learning_rate": 0.0006,
+ "loss": 3.752984046936035,
+ "step": 2285
+ },
+ {
+ "epoch": 31.75491480996068,
+ "grad_norm": 0.1879221349954605,
+ "learning_rate": 0.0006,
+ "loss": 3.7156834602355957,
+ "step": 2286
+ },
+ {
+ "epoch": 31.76889471384884,
+ "grad_norm": 0.19232559204101562,
+ "learning_rate": 0.0006,
+ "loss": 3.732879638671875,
+ "step": 2287
+ },
+ {
+ "epoch": 31.782874617737004,
+ "grad_norm": 0.18484069406986237,
+ "learning_rate": 0.0006,
+ "loss": 3.7489013671875,
+ "step": 2288
+ },
+ {
+ "epoch": 31.796854521625164,
+ "grad_norm": 0.20705144107341766,
+ "learning_rate": 0.0006,
+ "loss": 3.7214112281799316,
+ "step": 2289
+ },
+ {
+ "epoch": 31.810834425513324,
+ "grad_norm": 0.23424774408340454,
+ "learning_rate": 0.0006,
+ "loss": 3.714550256729126,
+ "step": 2290
+ },
+ {
+ "epoch": 31.824814329401484,
+ "grad_norm": 0.24061693251132965,
+ "learning_rate": 0.0006,
+ "loss": 3.717336654663086,
+ "step": 2291
+ },
+ {
+ "epoch": 31.838794233289647,
+ "grad_norm": 0.23156678676605225,
+ "learning_rate": 0.0006,
+ "loss": 3.7345399856567383,
+ "step": 2292
+ },
+ {
+ "epoch": 31.852774137177807,
+ "grad_norm": 0.2256302684545517,
+ "learning_rate": 0.0006,
+ "loss": 3.7596092224121094,
+ "step": 2293
+ },
+ {
+ "epoch": 31.866754041065967,
+ "grad_norm": 0.2118781954050064,
+ "learning_rate": 0.0006,
+ "loss": 3.725433588027954,
+ "step": 2294
+ },
+ {
+ "epoch": 31.88073394495413,
+ "grad_norm": 0.1874573826789856,
+ "learning_rate": 0.0006,
+ "loss": 3.738901138305664,
+ "step": 2295
+ },
+ {
+ "epoch": 31.89471384884229,
+ "grad_norm": 0.2062024176120758,
+ "learning_rate": 0.0006,
+ "loss": 3.7439217567443848,
+ "step": 2296
+ },
+ {
+ "epoch": 31.90869375273045,
+ "grad_norm": 0.19886671006679535,
+ "learning_rate": 0.0006,
+ "loss": 3.7583155632019043,
+ "step": 2297
+ },
+ {
+ "epoch": 31.92267365661861,
+ "grad_norm": 0.2079734355211258,
+ "learning_rate": 0.0006,
+ "loss": 3.7251501083374023,
+ "step": 2298
+ },
+ {
+ "epoch": 31.936653560506773,
+ "grad_norm": 0.19710204005241394,
+ "learning_rate": 0.0006,
+ "loss": 3.765778064727783,
+ "step": 2299
+ },
+ {
+ "epoch": 31.950633464394933,
+ "grad_norm": 0.1949392408132553,
+ "learning_rate": 0.0006,
+ "loss": 3.7634787559509277,
+ "step": 2300
+ },
+ {
+ "epoch": 31.964613368283093,
+ "grad_norm": 0.21466250717639923,
+ "learning_rate": 0.0006,
+ "loss": 3.7673215866088867,
+ "step": 2301
+ },
+ {
+ "epoch": 31.978593272171253,
+ "grad_norm": 0.21624267101287842,
+ "learning_rate": 0.0006,
+ "loss": 3.7617220878601074,
+ "step": 2302
+ },
+ {
+ "epoch": 31.992573176059416,
+ "grad_norm": 0.22880229353904724,
+ "learning_rate": 0.0006,
+ "loss": 3.7190351486206055,
+ "step": 2303
+ },
+ {
+ "epoch": 32.0,
+ "grad_norm": 0.23227518796920776,
+ "learning_rate": 0.0006,
+ "loss": 3.740169048309326,
+ "step": 2304
+ },
+ {
+ "epoch": 32.0,
+ "eval_loss": 4.017981052398682,
+ "eval_runtime": 44.4134,
+ "eval_samples_per_second": 54.983,
+ "eval_steps_per_second": 3.445,
+ "step": 2304
+ },
+ {
+ "epoch": 32.01397990388816,
+ "grad_norm": 0.1893721967935562,
+ "learning_rate": 0.0006,
+ "loss": 3.71738338470459,
+ "step": 2305
+ },
+ {
+ "epoch": 32.02795980777632,
+ "grad_norm": 0.23771171271800995,
+ "learning_rate": 0.0006,
+ "loss": 3.71402645111084,
+ "step": 2306
+ },
+ {
+ "epoch": 32.04193971166448,
+ "grad_norm": 0.26343807578086853,
+ "learning_rate": 0.0006,
+ "loss": 3.6926395893096924,
+ "step": 2307
+ },
+ {
+ "epoch": 32.05591961555265,
+ "grad_norm": 0.25092509388923645,
+ "learning_rate": 0.0006,
+ "loss": 3.715243339538574,
+ "step": 2308
+ },
+ {
+ "epoch": 32.0698995194408,
+ "grad_norm": 0.23148509860038757,
+ "learning_rate": 0.0006,
+ "loss": 3.690734386444092,
+ "step": 2309
+ },
+ {
+ "epoch": 32.083879423328966,
+ "grad_norm": 0.23314623534679413,
+ "learning_rate": 0.0006,
+ "loss": 3.6980109214782715,
+ "step": 2310
+ },
+ {
+ "epoch": 32.09785932721712,
+ "grad_norm": 0.2210417091846466,
+ "learning_rate": 0.0006,
+ "loss": 3.7395730018615723,
+ "step": 2311
+ },
+ {
+ "epoch": 32.111839231105286,
+ "grad_norm": 0.20263685286045074,
+ "learning_rate": 0.0006,
+ "loss": 3.678412914276123,
+ "step": 2312
+ },
+ {
+ "epoch": 32.12581913499345,
+ "grad_norm": 0.20412251353263855,
+ "learning_rate": 0.0006,
+ "loss": 3.688762903213501,
+ "step": 2313
+ },
+ {
+ "epoch": 32.139799038881605,
+ "grad_norm": 0.2041679322719574,
+ "learning_rate": 0.0006,
+ "loss": 3.7231521606445312,
+ "step": 2314
+ },
+ {
+ "epoch": 32.15377894276977,
+ "grad_norm": 0.23270174860954285,
+ "learning_rate": 0.0006,
+ "loss": 3.7102620601654053,
+ "step": 2315
+ },
+ {
+ "epoch": 32.16775884665793,
+ "grad_norm": 0.25470519065856934,
+ "learning_rate": 0.0006,
+ "loss": 3.7353053092956543,
+ "step": 2316
+ },
+ {
+ "epoch": 32.18173875054609,
+ "grad_norm": 0.2930106222629547,
+ "learning_rate": 0.0006,
+ "loss": 3.7418713569641113,
+ "step": 2317
+ },
+ {
+ "epoch": 32.19571865443425,
+ "grad_norm": 0.3181219696998596,
+ "learning_rate": 0.0006,
+ "loss": 3.6716184616088867,
+ "step": 2318
+ },
+ {
+ "epoch": 32.20969855832241,
+ "grad_norm": 0.2752978801727295,
+ "learning_rate": 0.0006,
+ "loss": 3.70334792137146,
+ "step": 2319
+ },
+ {
+ "epoch": 32.22367846221057,
+ "grad_norm": 0.28381186723709106,
+ "learning_rate": 0.0006,
+ "loss": 3.719794750213623,
+ "step": 2320
+ },
+ {
+ "epoch": 32.237658366098735,
+ "grad_norm": 0.3287750482559204,
+ "learning_rate": 0.0006,
+ "loss": 3.7363362312316895,
+ "step": 2321
+ },
+ {
+ "epoch": 32.25163826998689,
+ "grad_norm": 0.32669803500175476,
+ "learning_rate": 0.0006,
+ "loss": 3.739394426345825,
+ "step": 2322
+ },
+ {
+ "epoch": 32.265618173875055,
+ "grad_norm": 0.27423885464668274,
+ "learning_rate": 0.0006,
+ "loss": 3.7381205558776855,
+ "step": 2323
+ },
+ {
+ "epoch": 32.27959807776322,
+ "grad_norm": 0.2594660818576813,
+ "learning_rate": 0.0006,
+ "loss": 3.698683738708496,
+ "step": 2324
+ },
+ {
+ "epoch": 32.293577981651374,
+ "grad_norm": 0.2785511016845703,
+ "learning_rate": 0.0006,
+ "loss": 3.688774824142456,
+ "step": 2325
+ },
+ {
+ "epoch": 32.30755788553954,
+ "grad_norm": 0.2690320611000061,
+ "learning_rate": 0.0006,
+ "loss": 3.7209150791168213,
+ "step": 2326
+ },
+ {
+ "epoch": 32.3215377894277,
+ "grad_norm": 0.23331770300865173,
+ "learning_rate": 0.0006,
+ "loss": 3.682931423187256,
+ "step": 2327
+ },
+ {
+ "epoch": 32.33551769331586,
+ "grad_norm": 0.22380802035331726,
+ "learning_rate": 0.0006,
+ "loss": 3.720445156097412,
+ "step": 2328
+ },
+ {
+ "epoch": 32.34949759720402,
+ "grad_norm": 0.2065964937210083,
+ "learning_rate": 0.0006,
+ "loss": 3.705427885055542,
+ "step": 2329
+ },
+ {
+ "epoch": 32.36347750109218,
+ "grad_norm": 0.20701853930950165,
+ "learning_rate": 0.0006,
+ "loss": 3.7078697681427,
+ "step": 2330
+ },
+ {
+ "epoch": 32.37745740498034,
+ "grad_norm": 0.2063559591770172,
+ "learning_rate": 0.0006,
+ "loss": 3.745004653930664,
+ "step": 2331
+ },
+ {
+ "epoch": 32.391437308868504,
+ "grad_norm": 0.19377011060714722,
+ "learning_rate": 0.0006,
+ "loss": 3.713808059692383,
+ "step": 2332
+ },
+ {
+ "epoch": 32.40541721275666,
+ "grad_norm": 0.19260725378990173,
+ "learning_rate": 0.0006,
+ "loss": 3.717043876647949,
+ "step": 2333
+ },
+ {
+ "epoch": 32.419397116644824,
+ "grad_norm": 0.20792821049690247,
+ "learning_rate": 0.0006,
+ "loss": 3.68632173538208,
+ "step": 2334
+ },
+ {
+ "epoch": 32.43337702053299,
+ "grad_norm": 0.22278444468975067,
+ "learning_rate": 0.0006,
+ "loss": 3.7345821857452393,
+ "step": 2335
+ },
+ {
+ "epoch": 32.44735692442114,
+ "grad_norm": 0.22533579170703888,
+ "learning_rate": 0.0006,
+ "loss": 3.7224173545837402,
+ "step": 2336
+ },
+ {
+ "epoch": 32.46133682830931,
+ "grad_norm": 0.20228394865989685,
+ "learning_rate": 0.0006,
+ "loss": 3.748530149459839,
+ "step": 2337
+ },
+ {
+ "epoch": 32.47531673219746,
+ "grad_norm": 0.19944614171981812,
+ "learning_rate": 0.0006,
+ "loss": 3.707085371017456,
+ "step": 2338
+ },
+ {
+ "epoch": 32.489296636085626,
+ "grad_norm": 0.19856145977973938,
+ "learning_rate": 0.0006,
+ "loss": 3.6898274421691895,
+ "step": 2339
+ },
+ {
+ "epoch": 32.50327653997379,
+ "grad_norm": 0.20734605193138123,
+ "learning_rate": 0.0006,
+ "loss": 3.7511792182922363,
+ "step": 2340
+ },
+ {
+ "epoch": 32.517256443861946,
+ "grad_norm": 0.19489309191703796,
+ "learning_rate": 0.0006,
+ "loss": 3.736445426940918,
+ "step": 2341
+ },
+ {
+ "epoch": 32.53123634775011,
+ "grad_norm": 0.18899282813072205,
+ "learning_rate": 0.0006,
+ "loss": 3.727325916290283,
+ "step": 2342
+ },
+ {
+ "epoch": 32.54521625163827,
+ "grad_norm": 0.19670401513576508,
+ "learning_rate": 0.0006,
+ "loss": 3.7326102256774902,
+ "step": 2343
+ },
+ {
+ "epoch": 32.55919615552643,
+ "grad_norm": 0.20061780512332916,
+ "learning_rate": 0.0006,
+ "loss": 3.698716402053833,
+ "step": 2344
+ },
+ {
+ "epoch": 32.57317605941459,
+ "grad_norm": 0.1991659700870514,
+ "learning_rate": 0.0006,
+ "loss": 3.6913180351257324,
+ "step": 2345
+ },
+ {
+ "epoch": 32.58715596330275,
+ "grad_norm": 0.18856225907802582,
+ "learning_rate": 0.0006,
+ "loss": 3.7130961418151855,
+ "step": 2346
+ },
+ {
+ "epoch": 32.60113586719091,
+ "grad_norm": 0.1983972191810608,
+ "learning_rate": 0.0006,
+ "loss": 3.7530808448791504,
+ "step": 2347
+ },
+ {
+ "epoch": 32.615115771079076,
+ "grad_norm": 0.2037997543811798,
+ "learning_rate": 0.0006,
+ "loss": 3.7076587677001953,
+ "step": 2348
+ },
+ {
+ "epoch": 32.62909567496723,
+ "grad_norm": 0.21008458733558655,
+ "learning_rate": 0.0006,
+ "loss": 3.7379021644592285,
+ "step": 2349
+ },
+ {
+ "epoch": 32.643075578855395,
+ "grad_norm": 0.2129313349723816,
+ "learning_rate": 0.0006,
+ "loss": 3.7031373977661133,
+ "step": 2350
+ },
+ {
+ "epoch": 32.65705548274356,
+ "grad_norm": 0.18756245076656342,
+ "learning_rate": 0.0006,
+ "loss": 3.7066285610198975,
+ "step": 2351
+ },
+ {
+ "epoch": 32.671035386631715,
+ "grad_norm": 0.17946591973304749,
+ "learning_rate": 0.0006,
+ "loss": 3.73781681060791,
+ "step": 2352
+ },
+ {
+ "epoch": 32.68501529051988,
+ "grad_norm": 0.18983198702335358,
+ "learning_rate": 0.0006,
+ "loss": 3.718855381011963,
+ "step": 2353
+ },
+ {
+ "epoch": 32.69899519440804,
+ "grad_norm": 0.2080942839384079,
+ "learning_rate": 0.0006,
+ "loss": 3.7111258506774902,
+ "step": 2354
+ },
+ {
+ "epoch": 32.7129750982962,
+ "grad_norm": 0.23633413016796112,
+ "learning_rate": 0.0006,
+ "loss": 3.709766149520874,
+ "step": 2355
+ },
+ {
+ "epoch": 32.72695500218436,
+ "grad_norm": 0.2723144590854645,
+ "learning_rate": 0.0006,
+ "loss": 3.745850086212158,
+ "step": 2356
+ },
+ {
+ "epoch": 32.74093490607252,
+ "grad_norm": 0.29774025082588196,
+ "learning_rate": 0.0006,
+ "loss": 3.733771324157715,
+ "step": 2357
+ },
+ {
+ "epoch": 32.75491480996068,
+ "grad_norm": 0.25976699590682983,
+ "learning_rate": 0.0006,
+ "loss": 3.734194278717041,
+ "step": 2358
+ },
+ {
+ "epoch": 32.768894713848844,
+ "grad_norm": 0.20038039982318878,
+ "learning_rate": 0.0006,
+ "loss": 3.735656261444092,
+ "step": 2359
+ },
+ {
+ "epoch": 32.782874617737,
+ "grad_norm": 0.19745637476444244,
+ "learning_rate": 0.0006,
+ "loss": 3.7335894107818604,
+ "step": 2360
+ },
+ {
+ "epoch": 32.796854521625164,
+ "grad_norm": 0.22022396326065063,
+ "learning_rate": 0.0006,
+ "loss": 3.708998680114746,
+ "step": 2361
+ },
+ {
+ "epoch": 32.81083442551333,
+ "grad_norm": 0.24754752218723297,
+ "learning_rate": 0.0006,
+ "loss": 3.7616286277770996,
+ "step": 2362
+ },
+ {
+ "epoch": 32.824814329401484,
+ "grad_norm": 0.26438358426094055,
+ "learning_rate": 0.0006,
+ "loss": 3.737079620361328,
+ "step": 2363
+ },
+ {
+ "epoch": 32.83879423328965,
+ "grad_norm": 0.2507241666316986,
+ "learning_rate": 0.0006,
+ "loss": 3.708500385284424,
+ "step": 2364
+ },
+ {
+ "epoch": 32.8527741371778,
+ "grad_norm": 0.25688016414642334,
+ "learning_rate": 0.0006,
+ "loss": 3.7389419078826904,
+ "step": 2365
+ },
+ {
+ "epoch": 32.86675404106597,
+ "grad_norm": 0.257447749376297,
+ "learning_rate": 0.0006,
+ "loss": 3.7253334522247314,
+ "step": 2366
+ },
+ {
+ "epoch": 32.88073394495413,
+ "grad_norm": 0.2621215879917145,
+ "learning_rate": 0.0006,
+ "loss": 3.773163318634033,
+ "step": 2367
+ },
+ {
+ "epoch": 32.89471384884229,
+ "grad_norm": 0.23554839193820953,
+ "learning_rate": 0.0006,
+ "loss": 3.7534430027008057,
+ "step": 2368
+ },
+ {
+ "epoch": 32.90869375273045,
+ "grad_norm": 0.19698940217494965,
+ "learning_rate": 0.0006,
+ "loss": 3.7094414234161377,
+ "step": 2369
+ },
+ {
+ "epoch": 32.92267365661861,
+ "grad_norm": 0.21380476653575897,
+ "learning_rate": 0.0006,
+ "loss": 3.7666497230529785,
+ "step": 2370
+ },
+ {
+ "epoch": 32.93665356050677,
+ "grad_norm": 0.20876452326774597,
+ "learning_rate": 0.0006,
+ "loss": 3.7467992305755615,
+ "step": 2371
+ },
+ {
+ "epoch": 32.95063346439493,
+ "grad_norm": 0.1989884227514267,
+ "learning_rate": 0.0006,
+ "loss": 3.749878168106079,
+ "step": 2372
+ },
+ {
+ "epoch": 32.964613368283096,
+ "grad_norm": 0.19089168310165405,
+ "learning_rate": 0.0006,
+ "loss": 3.7211015224456787,
+ "step": 2373
+ },
+ {
+ "epoch": 32.97859327217125,
+ "grad_norm": 0.1962461918592453,
+ "learning_rate": 0.0006,
+ "loss": 3.728684425354004,
+ "step": 2374
+ },
+ {
+ "epoch": 32.992573176059416,
+ "grad_norm": 0.22518110275268555,
+ "learning_rate": 0.0006,
+ "loss": 3.7361507415771484,
+ "step": 2375
+ },
+ {
+ "epoch": 33.0,
+ "grad_norm": 0.26704078912734985,
+ "learning_rate": 0.0006,
+ "loss": 3.7478318214416504,
+ "step": 2376
+ },
+ {
+ "epoch": 33.0,
+ "eval_loss": 4.024221897125244,
+ "eval_runtime": 43.9826,
+ "eval_samples_per_second": 55.522,
+ "eval_steps_per_second": 3.479,
+ "step": 2376
+ },
+ {
+ "epoch": 33.01397990388816,
+ "grad_norm": 0.23387742042541504,
+ "learning_rate": 0.0006,
+ "loss": 3.7043614387512207,
+ "step": 2377
+ },
+ {
+ "epoch": 33.02795980777632,
+ "grad_norm": 0.21334673464298248,
+ "learning_rate": 0.0006,
+ "loss": 3.6714677810668945,
+ "step": 2378
+ },
+ {
+ "epoch": 33.04193971166448,
+ "grad_norm": 0.2608581483364105,
+ "learning_rate": 0.0006,
+ "loss": 3.678460121154785,
+ "step": 2379
+ },
+ {
+ "epoch": 33.05591961555265,
+ "grad_norm": 0.31364381313323975,
+ "learning_rate": 0.0006,
+ "loss": 3.6771793365478516,
+ "step": 2380
+ },
+ {
+ "epoch": 33.0698995194408,
+ "grad_norm": 0.31785935163497925,
+ "learning_rate": 0.0006,
+ "loss": 3.7248926162719727,
+ "step": 2381
+ },
+ {
+ "epoch": 33.083879423328966,
+ "grad_norm": 0.29244646430015564,
+ "learning_rate": 0.0006,
+ "loss": 3.677882194519043,
+ "step": 2382
+ },
+ {
+ "epoch": 33.09785932721712,
+ "grad_norm": 0.23943741619586945,
+ "learning_rate": 0.0006,
+ "loss": 3.7365124225616455,
+ "step": 2383
+ },
+ {
+ "epoch": 33.111839231105286,
+ "grad_norm": 0.2547394931316376,
+ "learning_rate": 0.0006,
+ "loss": 3.7031357288360596,
+ "step": 2384
+ },
+ {
+ "epoch": 33.12581913499345,
+ "grad_norm": 0.2696659564971924,
+ "learning_rate": 0.0006,
+ "loss": 3.6904754638671875,
+ "step": 2385
+ },
+ {
+ "epoch": 33.139799038881605,
+ "grad_norm": 0.24271385371685028,
+ "learning_rate": 0.0006,
+ "loss": 3.7137649059295654,
+ "step": 2386
+ },
+ {
+ "epoch": 33.15377894276977,
+ "grad_norm": 0.23435993492603302,
+ "learning_rate": 0.0006,
+ "loss": 3.707383632659912,
+ "step": 2387
+ },
+ {
+ "epoch": 33.16775884665793,
+ "grad_norm": 0.21428440511226654,
+ "learning_rate": 0.0006,
+ "loss": 3.7148897647857666,
+ "step": 2388
+ },
+ {
+ "epoch": 33.18173875054609,
+ "grad_norm": 0.22420962154865265,
+ "learning_rate": 0.0006,
+ "loss": 3.710111141204834,
+ "step": 2389
+ },
+ {
+ "epoch": 33.19571865443425,
+ "grad_norm": 0.26222777366638184,
+ "learning_rate": 0.0006,
+ "loss": 3.677438259124756,
+ "step": 2390
+ },
+ {
+ "epoch": 33.20969855832241,
+ "grad_norm": 0.29910165071487427,
+ "learning_rate": 0.0006,
+ "loss": 3.6895523071289062,
+ "step": 2391
+ },
+ {
+ "epoch": 33.22367846221057,
+ "grad_norm": 0.2615569531917572,
+ "learning_rate": 0.0006,
+ "loss": 3.7339906692504883,
+ "step": 2392
+ },
+ {
+ "epoch": 33.237658366098735,
+ "grad_norm": 0.23396961390972137,
+ "learning_rate": 0.0006,
+ "loss": 3.7179932594299316,
+ "step": 2393
+ },
+ {
+ "epoch": 33.25163826998689,
+ "grad_norm": 0.24844495952129364,
+ "learning_rate": 0.0006,
+ "loss": 3.7191576957702637,
+ "step": 2394
+ },
+ {
+ "epoch": 33.265618173875055,
+ "grad_norm": 0.2306993454694748,
+ "learning_rate": 0.0006,
+ "loss": 3.7172658443450928,
+ "step": 2395
+ },
+ {
+ "epoch": 33.27959807776322,
+ "grad_norm": 0.24935221672058105,
+ "learning_rate": 0.0006,
+ "loss": 3.6917519569396973,
+ "step": 2396
+ },
+ {
+ "epoch": 33.293577981651374,
+ "grad_norm": 0.2522840201854706,
+ "learning_rate": 0.0006,
+ "loss": 3.7263593673706055,
+ "step": 2397
+ },
+ {
+ "epoch": 33.30755788553954,
+ "grad_norm": 0.26411181688308716,
+ "learning_rate": 0.0006,
+ "loss": 3.6981635093688965,
+ "step": 2398
+ },
+ {
+ "epoch": 33.3215377894277,
+ "grad_norm": 0.22396239638328552,
+ "learning_rate": 0.0006,
+ "loss": 3.713247299194336,
+ "step": 2399
+ },
+ {
+ "epoch": 33.33551769331586,
+ "grad_norm": 0.20579157769680023,
+ "learning_rate": 0.0006,
+ "loss": 3.7058467864990234,
+ "step": 2400
+ },
+ {
+ "epoch": 33.34949759720402,
+ "grad_norm": 0.20103922486305237,
+ "learning_rate": 0.0006,
+ "loss": 3.700924873352051,
+ "step": 2401
+ },
+ {
+ "epoch": 33.36347750109218,
+ "grad_norm": 0.19964663684368134,
+ "learning_rate": 0.0006,
+ "loss": 3.6985437870025635,
+ "step": 2402
+ },
+ {
+ "epoch": 33.37745740498034,
+ "grad_norm": 0.20860575139522552,
+ "learning_rate": 0.0006,
+ "loss": 3.7480058670043945,
+ "step": 2403
+ },
+ {
+ "epoch": 33.391437308868504,
+ "grad_norm": 0.19043605029582977,
+ "learning_rate": 0.0006,
+ "loss": 3.6952016353607178,
+ "step": 2404
+ },
+ {
+ "epoch": 33.40541721275666,
+ "grad_norm": 0.1968909204006195,
+ "learning_rate": 0.0006,
+ "loss": 3.69362735748291,
+ "step": 2405
+ },
+ {
+ "epoch": 33.419397116644824,
+ "grad_norm": 0.23492494225502014,
+ "learning_rate": 0.0006,
+ "loss": 3.707993984222412,
+ "step": 2406
+ },
+ {
+ "epoch": 33.43337702053299,
+ "grad_norm": 0.23970453441143036,
+ "learning_rate": 0.0006,
+ "loss": 3.707731246948242,
+ "step": 2407
+ },
+ {
+ "epoch": 33.44735692442114,
+ "grad_norm": 0.2515844404697418,
+ "learning_rate": 0.0006,
+ "loss": 3.723824977874756,
+ "step": 2408
+ },
+ {
+ "epoch": 33.46133682830931,
+ "grad_norm": 0.2343570590019226,
+ "learning_rate": 0.0006,
+ "loss": 3.7068886756896973,
+ "step": 2409
+ },
+ {
+ "epoch": 33.47531673219746,
+ "grad_norm": 0.23419860005378723,
+ "learning_rate": 0.0006,
+ "loss": 3.6964287757873535,
+ "step": 2410
+ },
+ {
+ "epoch": 33.489296636085626,
+ "grad_norm": 0.21280375123023987,
+ "learning_rate": 0.0006,
+ "loss": 3.7020950317382812,
+ "step": 2411
+ },
+ {
+ "epoch": 33.50327653997379,
+ "grad_norm": 0.2061092108488083,
+ "learning_rate": 0.0006,
+ "loss": 3.750861406326294,
+ "step": 2412
+ },
+ {
+ "epoch": 33.517256443861946,
+ "grad_norm": 0.19693219661712646,
+ "learning_rate": 0.0006,
+ "loss": 3.717020034790039,
+ "step": 2413
+ },
+ {
+ "epoch": 33.53123634775011,
+ "grad_norm": 0.18199551105499268,
+ "learning_rate": 0.0006,
+ "loss": 3.7242612838745117,
+ "step": 2414
+ },
+ {
+ "epoch": 33.54521625163827,
+ "grad_norm": 0.20131248235702515,
+ "learning_rate": 0.0006,
+ "loss": 3.6758954524993896,
+ "step": 2415
+ },
+ {
+ "epoch": 33.55919615552643,
+ "grad_norm": 0.2219412475824356,
+ "learning_rate": 0.0006,
+ "loss": 3.707927703857422,
+ "step": 2416
+ },
+ {
+ "epoch": 33.57317605941459,
+ "grad_norm": 0.22541435062885284,
+ "learning_rate": 0.0006,
+ "loss": 3.696967601776123,
+ "step": 2417
+ },
+ {
+ "epoch": 33.58715596330275,
+ "grad_norm": 0.20367272198200226,
+ "learning_rate": 0.0006,
+ "loss": 3.730795383453369,
+ "step": 2418
+ },
+ {
+ "epoch": 33.60113586719091,
+ "grad_norm": 0.20861074328422546,
+ "learning_rate": 0.0006,
+ "loss": 3.707066535949707,
+ "step": 2419
+ },
+ {
+ "epoch": 33.615115771079076,
+ "grad_norm": 0.20570263266563416,
+ "learning_rate": 0.0006,
+ "loss": 3.730602502822876,
+ "step": 2420
+ },
+ {
+ "epoch": 33.62909567496723,
+ "grad_norm": 0.21318231523036957,
+ "learning_rate": 0.0006,
+ "loss": 3.7073278427124023,
+ "step": 2421
+ },
+ {
+ "epoch": 33.643075578855395,
+ "grad_norm": 0.2142639458179474,
+ "learning_rate": 0.0006,
+ "loss": 3.718470573425293,
+ "step": 2422
+ },
+ {
+ "epoch": 33.65705548274356,
+ "grad_norm": 0.19620704650878906,
+ "learning_rate": 0.0006,
+ "loss": 3.716036319732666,
+ "step": 2423
+ },
+ {
+ "epoch": 33.671035386631715,
+ "grad_norm": 0.19308267533779144,
+ "learning_rate": 0.0006,
+ "loss": 3.734597682952881,
+ "step": 2424
+ },
+ {
+ "epoch": 33.68501529051988,
+ "grad_norm": 0.19453389942646027,
+ "learning_rate": 0.0006,
+ "loss": 3.726262092590332,
+ "step": 2425
+ },
+ {
+ "epoch": 33.69899519440804,
+ "grad_norm": 0.20405639708042145,
+ "learning_rate": 0.0006,
+ "loss": 3.678340435028076,
+ "step": 2426
+ },
+ {
+ "epoch": 33.7129750982962,
+ "grad_norm": 0.19525611400604248,
+ "learning_rate": 0.0006,
+ "loss": 3.723907470703125,
+ "step": 2427
+ },
+ {
+ "epoch": 33.72695500218436,
+ "grad_norm": 0.19390441477298737,
+ "learning_rate": 0.0006,
+ "loss": 3.707897186279297,
+ "step": 2428
+ },
+ {
+ "epoch": 33.74093490607252,
+ "grad_norm": 0.2032899558544159,
+ "learning_rate": 0.0006,
+ "loss": 3.735041618347168,
+ "step": 2429
+ },
+ {
+ "epoch": 33.75491480996068,
+ "grad_norm": 0.2134784460067749,
+ "learning_rate": 0.0006,
+ "loss": 3.674978017807007,
+ "step": 2430
+ },
+ {
+ "epoch": 33.768894713848844,
+ "grad_norm": 0.24691973626613617,
+ "learning_rate": 0.0006,
+ "loss": 3.7028675079345703,
+ "step": 2431
+ },
+ {
+ "epoch": 33.782874617737,
+ "grad_norm": 0.2272702008485794,
+ "learning_rate": 0.0006,
+ "loss": 3.7277941703796387,
+ "step": 2432
+ },
+ {
+ "epoch": 33.796854521625164,
+ "grad_norm": 0.20052100718021393,
+ "learning_rate": 0.0006,
+ "loss": 3.7146830558776855,
+ "step": 2433
+ },
+ {
+ "epoch": 33.81083442551333,
+ "grad_norm": 0.1958577185869217,
+ "learning_rate": 0.0006,
+ "loss": 3.6936864852905273,
+ "step": 2434
+ },
+ {
+ "epoch": 33.824814329401484,
+ "grad_norm": 0.191860631108284,
+ "learning_rate": 0.0006,
+ "loss": 3.7451858520507812,
+ "step": 2435
+ },
+ {
+ "epoch": 33.83879423328965,
+ "grad_norm": 0.20961424708366394,
+ "learning_rate": 0.0006,
+ "loss": 3.722400665283203,
+ "step": 2436
+ },
+ {
+ "epoch": 33.8527741371778,
+ "grad_norm": 0.19784288108348846,
+ "learning_rate": 0.0006,
+ "loss": 3.712474822998047,
+ "step": 2437
+ },
+ {
+ "epoch": 33.86675404106597,
+ "grad_norm": 0.18645426630973816,
+ "learning_rate": 0.0006,
+ "loss": 3.7054500579833984,
+ "step": 2438
+ },
+ {
+ "epoch": 33.88073394495413,
+ "grad_norm": 0.19622360169887543,
+ "learning_rate": 0.0006,
+ "loss": 3.7010550498962402,
+ "step": 2439
+ },
+ {
+ "epoch": 33.89471384884229,
+ "grad_norm": 0.20283745229244232,
+ "learning_rate": 0.0006,
+ "loss": 3.7252519130706787,
+ "step": 2440
+ },
+ {
+ "epoch": 33.90869375273045,
+ "grad_norm": 0.18671709299087524,
+ "learning_rate": 0.0006,
+ "loss": 3.6932945251464844,
+ "step": 2441
+ },
+ {
+ "epoch": 33.92267365661861,
+ "grad_norm": 0.17953112721443176,
+ "learning_rate": 0.0006,
+ "loss": 3.7453854084014893,
+ "step": 2442
+ },
+ {
+ "epoch": 33.93665356050677,
+ "grad_norm": 0.1945437788963318,
+ "learning_rate": 0.0006,
+ "loss": 3.722881317138672,
+ "step": 2443
+ },
+ {
+ "epoch": 33.95063346439493,
+ "grad_norm": 0.18414495885372162,
+ "learning_rate": 0.0006,
+ "loss": 3.7402591705322266,
+ "step": 2444
+ },
+ {
+ "epoch": 33.964613368283096,
+ "grad_norm": 0.1936541497707367,
+ "learning_rate": 0.0006,
+ "loss": 3.720057964324951,
+ "step": 2445
+ },
+ {
+ "epoch": 33.97859327217125,
+ "grad_norm": 0.20177008211612701,
+ "learning_rate": 0.0006,
+ "loss": 3.6983802318573,
+ "step": 2446
+ },
+ {
+ "epoch": 33.992573176059416,
+ "grad_norm": 0.18977557122707367,
+ "learning_rate": 0.0006,
+ "loss": 3.7202203273773193,
+ "step": 2447
+ },
+ {
+ "epoch": 34.0,
+ "grad_norm": 0.220163956284523,
+ "learning_rate": 0.0006,
+ "loss": 3.72540283203125,
+ "step": 2448
+ },
+ {
+ "epoch": 34.0,
+ "eval_loss": 4.009343147277832,
+ "eval_runtime": 44.1825,
+ "eval_samples_per_second": 55.271,
+ "eval_steps_per_second": 3.463,
+ "step": 2448
+ },
+ {
+ "epoch": 34.01397990388816,
+ "grad_norm": 0.19843372702598572,
+ "learning_rate": 0.0006,
+ "loss": 3.664431571960449,
+ "step": 2449
+ },
+ {
+ "epoch": 34.02795980777632,
+ "grad_norm": 0.20413008332252502,
+ "learning_rate": 0.0006,
+ "loss": 3.699094533920288,
+ "step": 2450
+ },
+ {
+ "epoch": 34.04193971166448,
+ "grad_norm": 0.22086848318576813,
+ "learning_rate": 0.0006,
+ "loss": 3.681825637817383,
+ "step": 2451
+ },
+ {
+ "epoch": 34.05591961555265,
+ "grad_norm": 0.20753061771392822,
+ "learning_rate": 0.0006,
+ "loss": 3.677116870880127,
+ "step": 2452
+ },
+ {
+ "epoch": 34.0698995194408,
+ "grad_norm": 0.21835783123970032,
+ "learning_rate": 0.0006,
+ "loss": 3.7079062461853027,
+ "step": 2453
+ },
+ {
+ "epoch": 34.083879423328966,
+ "grad_norm": 0.2244357019662857,
+ "learning_rate": 0.0006,
+ "loss": 3.69844913482666,
+ "step": 2454
+ },
+ {
+ "epoch": 34.09785932721712,
+ "grad_norm": 0.2238784283399582,
+ "learning_rate": 0.0006,
+ "loss": 3.6835570335388184,
+ "step": 2455
+ },
+ {
+ "epoch": 34.111839231105286,
+ "grad_norm": 0.24816176295280457,
+ "learning_rate": 0.0006,
+ "loss": 3.6832966804504395,
+ "step": 2456
+ },
+ {
+ "epoch": 34.12581913499345,
+ "grad_norm": 0.2445257306098938,
+ "learning_rate": 0.0006,
+ "loss": 3.7190022468566895,
+ "step": 2457
+ },
+ {
+ "epoch": 34.139799038881605,
+ "grad_norm": 0.24510814249515533,
+ "learning_rate": 0.0006,
+ "loss": 3.678098201751709,
+ "step": 2458
+ },
+ {
+ "epoch": 34.15377894276977,
+ "grad_norm": 0.2550753653049469,
+ "learning_rate": 0.0006,
+ "loss": 3.69335675239563,
+ "step": 2459
+ },
+ {
+ "epoch": 34.16775884665793,
+ "grad_norm": 0.2435017228126526,
+ "learning_rate": 0.0006,
+ "loss": 3.70463228225708,
+ "step": 2460
+ },
+ {
+ "epoch": 34.18173875054609,
+ "grad_norm": 0.26441144943237305,
+ "learning_rate": 0.0006,
+ "loss": 3.6757068634033203,
+ "step": 2461
+ },
+ {
+ "epoch": 34.19571865443425,
+ "grad_norm": 0.2737993001937866,
+ "learning_rate": 0.0006,
+ "loss": 3.6510863304138184,
+ "step": 2462
+ },
+ {
+ "epoch": 34.20969855832241,
+ "grad_norm": 0.24625736474990845,
+ "learning_rate": 0.0006,
+ "loss": 3.707612991333008,
+ "step": 2463
+ },
+ {
+ "epoch": 34.22367846221057,
+ "grad_norm": 0.22222039103507996,
+ "learning_rate": 0.0006,
+ "loss": 3.7145133018493652,
+ "step": 2464
+ },
+ {
+ "epoch": 34.237658366098735,
+ "grad_norm": 0.2173531949520111,
+ "learning_rate": 0.0006,
+ "loss": 3.685112476348877,
+ "step": 2465
+ },
+ {
+ "epoch": 34.25163826998689,
+ "grad_norm": 0.23102006316184998,
+ "learning_rate": 0.0006,
+ "loss": 3.6742453575134277,
+ "step": 2466
+ },
+ {
+ "epoch": 34.265618173875055,
+ "grad_norm": 0.22287188470363617,
+ "learning_rate": 0.0006,
+ "loss": 3.7030534744262695,
+ "step": 2467
+ },
+ {
+ "epoch": 34.27959807776322,
+ "grad_norm": 0.20377251505851746,
+ "learning_rate": 0.0006,
+ "loss": 3.6866259574890137,
+ "step": 2468
+ },
+ {
+ "epoch": 34.293577981651374,
+ "grad_norm": 0.19867438077926636,
+ "learning_rate": 0.0006,
+ "loss": 3.70395565032959,
+ "step": 2469
+ },
+ {
+ "epoch": 34.30755788553954,
+ "grad_norm": 0.2014918178319931,
+ "learning_rate": 0.0006,
+ "loss": 3.660795211791992,
+ "step": 2470
+ },
+ {
+ "epoch": 34.3215377894277,
+ "grad_norm": 0.20981402695178986,
+ "learning_rate": 0.0006,
+ "loss": 3.7045323848724365,
+ "step": 2471
+ },
+ {
+ "epoch": 34.33551769331586,
+ "grad_norm": 0.20968124270439148,
+ "learning_rate": 0.0006,
+ "loss": 3.7113170623779297,
+ "step": 2472
+ },
+ {
+ "epoch": 34.34949759720402,
+ "grad_norm": 0.2214043140411377,
+ "learning_rate": 0.0006,
+ "loss": 3.7330074310302734,
+ "step": 2473
+ },
+ {
+ "epoch": 34.36347750109218,
+ "grad_norm": 0.21231533586978912,
+ "learning_rate": 0.0006,
+ "loss": 3.6706933975219727,
+ "step": 2474
+ },
+ {
+ "epoch": 34.37745740498034,
+ "grad_norm": 0.2022094875574112,
+ "learning_rate": 0.0006,
+ "loss": 3.7230453491210938,
+ "step": 2475
+ },
+ {
+ "epoch": 34.391437308868504,
+ "grad_norm": 0.2281145304441452,
+ "learning_rate": 0.0006,
+ "loss": 3.7197465896606445,
+ "step": 2476
+ },
+ {
+ "epoch": 34.40541721275666,
+ "grad_norm": 0.2147362381219864,
+ "learning_rate": 0.0006,
+ "loss": 3.7092337608337402,
+ "step": 2477
+ },
+ {
+ "epoch": 34.419397116644824,
+ "grad_norm": 0.19984203577041626,
+ "learning_rate": 0.0006,
+ "loss": 3.6939496994018555,
+ "step": 2478
+ },
+ {
+ "epoch": 34.43337702053299,
+ "grad_norm": 0.21088480949401855,
+ "learning_rate": 0.0006,
+ "loss": 3.6942667961120605,
+ "step": 2479
+ },
+ {
+ "epoch": 34.44735692442114,
+ "grad_norm": 0.20444616675376892,
+ "learning_rate": 0.0006,
+ "loss": 3.718186378479004,
+ "step": 2480
+ },
+ {
+ "epoch": 34.46133682830931,
+ "grad_norm": 0.19133952260017395,
+ "learning_rate": 0.0006,
+ "loss": 3.697197437286377,
+ "step": 2481
+ },
+ {
+ "epoch": 34.47531673219746,
+ "grad_norm": 0.2219255417585373,
+ "learning_rate": 0.0006,
+ "loss": 3.684386730194092,
+ "step": 2482
+ },
+ {
+ "epoch": 34.489296636085626,
+ "grad_norm": 0.2480643391609192,
+ "learning_rate": 0.0006,
+ "loss": 3.6656622886657715,
+ "step": 2483
+ },
+ {
+ "epoch": 34.50327653997379,
+ "grad_norm": 0.22907346487045288,
+ "learning_rate": 0.0006,
+ "loss": 3.741391897201538,
+ "step": 2484
+ },
+ {
+ "epoch": 34.517256443861946,
+ "grad_norm": 0.20277173817157745,
+ "learning_rate": 0.0006,
+ "loss": 3.7062582969665527,
+ "step": 2485
+ },
+ {
+ "epoch": 34.53123634775011,
+ "grad_norm": 0.21411100029945374,
+ "learning_rate": 0.0006,
+ "loss": 3.691784381866455,
+ "step": 2486
+ },
+ {
+ "epoch": 34.54521625163827,
+ "grad_norm": 0.20261600613594055,
+ "learning_rate": 0.0006,
+ "loss": 3.6855502128601074,
+ "step": 2487
+ },
+ {
+ "epoch": 34.55919615552643,
+ "grad_norm": 0.23913109302520752,
+ "learning_rate": 0.0006,
+ "loss": 3.670754909515381,
+ "step": 2488
+ },
+ {
+ "epoch": 34.57317605941459,
+ "grad_norm": 0.24427077174186707,
+ "learning_rate": 0.0006,
+ "loss": 3.700611114501953,
+ "step": 2489
+ },
+ {
+ "epoch": 34.58715596330275,
+ "grad_norm": 0.20305761694908142,
+ "learning_rate": 0.0006,
+ "loss": 3.7284226417541504,
+ "step": 2490
+ },
+ {
+ "epoch": 34.60113586719091,
+ "grad_norm": 0.20398905873298645,
+ "learning_rate": 0.0006,
+ "loss": 3.6860880851745605,
+ "step": 2491
+ },
+ {
+ "epoch": 34.615115771079076,
+ "grad_norm": 0.21016651391983032,
+ "learning_rate": 0.0006,
+ "loss": 3.7366015911102295,
+ "step": 2492
+ },
+ {
+ "epoch": 34.62909567496723,
+ "grad_norm": 0.22279402613639832,
+ "learning_rate": 0.0006,
+ "loss": 3.7024295330047607,
+ "step": 2493
+ },
+ {
+ "epoch": 34.643075578855395,
+ "grad_norm": 0.25080347061157227,
+ "learning_rate": 0.0006,
+ "loss": 3.68355655670166,
+ "step": 2494
+ },
+ {
+ "epoch": 34.65705548274356,
+ "grad_norm": 0.2702971398830414,
+ "learning_rate": 0.0006,
+ "loss": 3.7400612831115723,
+ "step": 2495
+ },
+ {
+ "epoch": 34.671035386631715,
+ "grad_norm": 0.299398273229599,
+ "learning_rate": 0.0006,
+ "loss": 3.7160325050354004,
+ "step": 2496
+ },
+ {
+ "epoch": 34.68501529051988,
+ "grad_norm": 0.29151082038879395,
+ "learning_rate": 0.0006,
+ "loss": 3.7124147415161133,
+ "step": 2497
+ },
+ {
+ "epoch": 34.69899519440804,
+ "grad_norm": 0.23828288912773132,
+ "learning_rate": 0.0006,
+ "loss": 3.7181267738342285,
+ "step": 2498
+ },
+ {
+ "epoch": 34.7129750982962,
+ "grad_norm": 0.21776588261127472,
+ "learning_rate": 0.0006,
+ "loss": 3.6811792850494385,
+ "step": 2499
+ },
+ {
+ "epoch": 34.72695500218436,
+ "grad_norm": 0.2318469136953354,
+ "learning_rate": 0.0006,
+ "loss": 3.698467254638672,
+ "step": 2500
+ },
+ {
+ "epoch": 34.74093490607252,
+ "grad_norm": 0.22341546416282654,
+ "learning_rate": 0.0006,
+ "loss": 3.7406411170959473,
+ "step": 2501
+ },
+ {
+ "epoch": 34.75491480996068,
+ "grad_norm": 0.20676901936531067,
+ "learning_rate": 0.0006,
+ "loss": 3.6914243698120117,
+ "step": 2502
+ },
+ {
+ "epoch": 34.768894713848844,
+ "grad_norm": 0.20459024608135223,
+ "learning_rate": 0.0006,
+ "loss": 3.713369607925415,
+ "step": 2503
+ },
+ {
+ "epoch": 34.782874617737,
+ "grad_norm": 0.22369320690631866,
+ "learning_rate": 0.0006,
+ "loss": 3.697587490081787,
+ "step": 2504
+ },
+ {
+ "epoch": 34.796854521625164,
+ "grad_norm": 0.2393338829278946,
+ "learning_rate": 0.0006,
+ "loss": 3.7171854972839355,
+ "step": 2505
+ },
+ {
+ "epoch": 34.81083442551333,
+ "grad_norm": 0.23756961524486542,
+ "learning_rate": 0.0006,
+ "loss": 3.6969614028930664,
+ "step": 2506
+ },
+ {
+ "epoch": 34.824814329401484,
+ "grad_norm": 0.22761376202106476,
+ "learning_rate": 0.0006,
+ "loss": 3.722501754760742,
+ "step": 2507
+ },
+ {
+ "epoch": 34.83879423328965,
+ "grad_norm": 0.23564888536930084,
+ "learning_rate": 0.0006,
+ "loss": 3.714003086090088,
+ "step": 2508
+ },
+ {
+ "epoch": 34.8527741371778,
+ "grad_norm": 0.22197313606739044,
+ "learning_rate": 0.0006,
+ "loss": 3.7107110023498535,
+ "step": 2509
+ },
+ {
+ "epoch": 34.86675404106597,
+ "grad_norm": 0.20199328660964966,
+ "learning_rate": 0.0006,
+ "loss": 3.7167551517486572,
+ "step": 2510
+ },
+ {
+ "epoch": 34.88073394495413,
+ "grad_norm": 0.19569700956344604,
+ "learning_rate": 0.0006,
+ "loss": 3.679098129272461,
+ "step": 2511
+ },
+ {
+ "epoch": 34.89471384884229,
+ "grad_norm": 0.21320141851902008,
+ "learning_rate": 0.0006,
+ "loss": 3.733187675476074,
+ "step": 2512
+ },
+ {
+ "epoch": 34.90869375273045,
+ "grad_norm": 0.20074625313282013,
+ "learning_rate": 0.0006,
+ "loss": 3.713339328765869,
+ "step": 2513
+ },
+ {
+ "epoch": 34.92267365661861,
+ "grad_norm": 0.20249252021312714,
+ "learning_rate": 0.0006,
+ "loss": 3.680785655975342,
+ "step": 2514
+ },
+ {
+ "epoch": 34.93665356050677,
+ "grad_norm": 0.22165577113628387,
+ "learning_rate": 0.0006,
+ "loss": 3.696131706237793,
+ "step": 2515
+ },
+ {
+ "epoch": 34.95063346439493,
+ "grad_norm": 0.20769749581813812,
+ "learning_rate": 0.0006,
+ "loss": 3.6910316944122314,
+ "step": 2516
+ },
+ {
+ "epoch": 34.964613368283096,
+ "grad_norm": 0.20857223868370056,
+ "learning_rate": 0.0006,
+ "loss": 3.7327451705932617,
+ "step": 2517
+ },
+ {
+ "epoch": 34.97859327217125,
+ "grad_norm": 0.19155766069889069,
+ "learning_rate": 0.0006,
+ "loss": 3.705609083175659,
+ "step": 2518
+ },
+ {
+ "epoch": 34.992573176059416,
+ "grad_norm": 0.17890529334545135,
+ "learning_rate": 0.0006,
+ "loss": 3.6844797134399414,
+ "step": 2519
+ },
+ {
+ "epoch": 35.0,
+ "grad_norm": 0.2053528130054474,
+ "learning_rate": 0.0006,
+ "loss": 3.6942501068115234,
+ "step": 2520
+ },
+ {
+ "epoch": 35.0,
+ "eval_loss": 3.998469591140747,
+ "eval_runtime": 43.9147,
+ "eval_samples_per_second": 55.608,
+ "eval_steps_per_second": 3.484,
+ "step": 2520
+ },
+ {
+ "epoch": 35.01397990388816,
+ "grad_norm": 0.2288869470357895,
+ "learning_rate": 0.0006,
+ "loss": 3.6966426372528076,
+ "step": 2521
+ },
+ {
+ "epoch": 35.02795980777632,
+ "grad_norm": 0.25702035427093506,
+ "learning_rate": 0.0006,
+ "loss": 3.6622562408447266,
+ "step": 2522
+ },
+ {
+ "epoch": 35.04193971166448,
+ "grad_norm": 0.254422128200531,
+ "learning_rate": 0.0006,
+ "loss": 3.690046548843384,
+ "step": 2523
+ },
+ {
+ "epoch": 35.05591961555265,
+ "grad_norm": 0.24177077412605286,
+ "learning_rate": 0.0006,
+ "loss": 3.685335874557495,
+ "step": 2524
+ },
+ {
+ "epoch": 35.0698995194408,
+ "grad_norm": 0.23959586024284363,
+ "learning_rate": 0.0006,
+ "loss": 3.6534650325775146,
+ "step": 2525
+ },
+ {
+ "epoch": 35.083879423328966,
+ "grad_norm": 0.23474839329719543,
+ "learning_rate": 0.0006,
+ "loss": 3.7092814445495605,
+ "step": 2526
+ },
+ {
+ "epoch": 35.09785932721712,
+ "grad_norm": 0.23240867257118225,
+ "learning_rate": 0.0006,
+ "loss": 3.6819097995758057,
+ "step": 2527
+ },
+ {
+ "epoch": 35.111839231105286,
+ "grad_norm": 0.26267048716545105,
+ "learning_rate": 0.0006,
+ "loss": 3.6566696166992188,
+ "step": 2528
+ },
+ {
+ "epoch": 35.12581913499345,
+ "grad_norm": 0.27070754766464233,
+ "learning_rate": 0.0006,
+ "loss": 3.676304340362549,
+ "step": 2529
+ },
+ {
+ "epoch": 35.139799038881605,
+ "grad_norm": 0.25297826528549194,
+ "learning_rate": 0.0006,
+ "loss": 3.65259051322937,
+ "step": 2530
+ },
+ {
+ "epoch": 35.15377894276977,
+ "grad_norm": 0.22776272892951965,
+ "learning_rate": 0.0006,
+ "loss": 3.6813838481903076,
+ "step": 2531
+ },
+ {
+ "epoch": 35.16775884665793,
+ "grad_norm": 0.2288261204957962,
+ "learning_rate": 0.0006,
+ "loss": 3.6916379928588867,
+ "step": 2532
+ },
+ {
+ "epoch": 35.18173875054609,
+ "grad_norm": 0.20445892214775085,
+ "learning_rate": 0.0006,
+ "loss": 3.6550145149230957,
+ "step": 2533
+ },
+ {
+ "epoch": 35.19571865443425,
+ "grad_norm": 0.20298904180526733,
+ "learning_rate": 0.0006,
+ "loss": 3.704042434692383,
+ "step": 2534
+ },
+ {
+ "epoch": 35.20969855832241,
+ "grad_norm": 0.2264423668384552,
+ "learning_rate": 0.0006,
+ "loss": 3.646308183670044,
+ "step": 2535
+ },
+ {
+ "epoch": 35.22367846221057,
+ "grad_norm": 0.21537378430366516,
+ "learning_rate": 0.0006,
+ "loss": 3.686048984527588,
+ "step": 2536
+ },
+ {
+ "epoch": 35.237658366098735,
+ "grad_norm": 0.19820059835910797,
+ "learning_rate": 0.0006,
+ "loss": 3.6993050575256348,
+ "step": 2537
+ },
+ {
+ "epoch": 35.25163826998689,
+ "grad_norm": 0.19485290348529816,
+ "learning_rate": 0.0006,
+ "loss": 3.6507070064544678,
+ "step": 2538
+ },
+ {
+ "epoch": 35.265618173875055,
+ "grad_norm": 0.21234364807605743,
+ "learning_rate": 0.0006,
+ "loss": 3.6913719177246094,
+ "step": 2539
+ },
+ {
+ "epoch": 35.27959807776322,
+ "grad_norm": 0.19834300875663757,
+ "learning_rate": 0.0006,
+ "loss": 3.6793041229248047,
+ "step": 2540
+ },
+ {
+ "epoch": 35.293577981651374,
+ "grad_norm": 0.1969013512134552,
+ "learning_rate": 0.0006,
+ "loss": 3.7063517570495605,
+ "step": 2541
+ },
+ {
+ "epoch": 35.30755788553954,
+ "grad_norm": 0.196136936545372,
+ "learning_rate": 0.0006,
+ "loss": 3.679825782775879,
+ "step": 2542
+ },
+ {
+ "epoch": 35.3215377894277,
+ "grad_norm": 0.20465479791164398,
+ "learning_rate": 0.0006,
+ "loss": 3.698906421661377,
+ "step": 2543
+ },
+ {
+ "epoch": 35.33551769331586,
+ "grad_norm": 0.204293355345726,
+ "learning_rate": 0.0006,
+ "loss": 3.728549003601074,
+ "step": 2544
+ },
+ {
+ "epoch": 35.34949759720402,
+ "grad_norm": 0.18861903250217438,
+ "learning_rate": 0.0006,
+ "loss": 3.687018632888794,
+ "step": 2545
+ },
+ {
+ "epoch": 35.36347750109218,
+ "grad_norm": 0.19066226482391357,
+ "learning_rate": 0.0006,
+ "loss": 3.667919158935547,
+ "step": 2546
+ },
+ {
+ "epoch": 35.37745740498034,
+ "grad_norm": 0.19985736906528473,
+ "learning_rate": 0.0006,
+ "loss": 3.6697773933410645,
+ "step": 2547
+ },
+ {
+ "epoch": 35.391437308868504,
+ "grad_norm": 0.20669348537921906,
+ "learning_rate": 0.0006,
+ "loss": 3.6718077659606934,
+ "step": 2548
+ },
+ {
+ "epoch": 35.40541721275666,
+ "grad_norm": 0.22164477407932281,
+ "learning_rate": 0.0006,
+ "loss": 3.692106246948242,
+ "step": 2549
+ },
+ {
+ "epoch": 35.419397116644824,
+ "grad_norm": 0.20884688198566437,
+ "learning_rate": 0.0006,
+ "loss": 3.714324712753296,
+ "step": 2550
+ },
+ {
+ "epoch": 35.43337702053299,
+ "grad_norm": 0.21811005473136902,
+ "learning_rate": 0.0006,
+ "loss": 3.678694725036621,
+ "step": 2551
+ },
+ {
+ "epoch": 35.44735692442114,
+ "grad_norm": 0.2427632063627243,
+ "learning_rate": 0.0006,
+ "loss": 3.6584935188293457,
+ "step": 2552
+ },
+ {
+ "epoch": 35.46133682830931,
+ "grad_norm": 0.2584928572177887,
+ "learning_rate": 0.0006,
+ "loss": 3.694148063659668,
+ "step": 2553
+ },
+ {
+ "epoch": 35.47531673219746,
+ "grad_norm": 0.2594548761844635,
+ "learning_rate": 0.0006,
+ "loss": 3.690629005432129,
+ "step": 2554
+ },
+ {
+ "epoch": 35.489296636085626,
+ "grad_norm": 0.2521844208240509,
+ "learning_rate": 0.0006,
+ "loss": 3.6949915885925293,
+ "step": 2555
+ },
+ {
+ "epoch": 35.50327653997379,
+ "grad_norm": 0.2284533679485321,
+ "learning_rate": 0.0006,
+ "loss": 3.6822848320007324,
+ "step": 2556
+ },
+ {
+ "epoch": 35.517256443861946,
+ "grad_norm": 0.2350241094827652,
+ "learning_rate": 0.0006,
+ "loss": 3.6841659545898438,
+ "step": 2557
+ },
+ {
+ "epoch": 35.53123634775011,
+ "grad_norm": 0.22496885061264038,
+ "learning_rate": 0.0006,
+ "loss": 3.676447629928589,
+ "step": 2558
+ },
+ {
+ "epoch": 35.54521625163827,
+ "grad_norm": 0.24326276779174805,
+ "learning_rate": 0.0006,
+ "loss": 3.681678533554077,
+ "step": 2559
+ },
+ {
+ "epoch": 35.55919615552643,
+ "grad_norm": 0.26298362016677856,
+ "learning_rate": 0.0006,
+ "loss": 3.6877617835998535,
+ "step": 2560
+ },
+ {
+ "epoch": 35.57317605941459,
+ "grad_norm": 0.2507239282131195,
+ "learning_rate": 0.0006,
+ "loss": 3.7089176177978516,
+ "step": 2561
+ },
+ {
+ "epoch": 35.58715596330275,
+ "grad_norm": 0.2276458442211151,
+ "learning_rate": 0.0006,
+ "loss": 3.705570936203003,
+ "step": 2562
+ },
+ {
+ "epoch": 35.60113586719091,
+ "grad_norm": 0.23317085206508636,
+ "learning_rate": 0.0006,
+ "loss": 3.6772396564483643,
+ "step": 2563
+ },
+ {
+ "epoch": 35.615115771079076,
+ "grad_norm": 0.23301710188388824,
+ "learning_rate": 0.0006,
+ "loss": 3.694855213165283,
+ "step": 2564
+ },
+ {
+ "epoch": 35.62909567496723,
+ "grad_norm": 0.2170179933309555,
+ "learning_rate": 0.0006,
+ "loss": 3.7095537185668945,
+ "step": 2565
+ },
+ {
+ "epoch": 35.643075578855395,
+ "grad_norm": 0.21211965382099152,
+ "learning_rate": 0.0006,
+ "loss": 3.670109272003174,
+ "step": 2566
+ },
+ {
+ "epoch": 35.65705548274356,
+ "grad_norm": 0.21052585542201996,
+ "learning_rate": 0.0006,
+ "loss": 3.6576027870178223,
+ "step": 2567
+ },
+ {
+ "epoch": 35.671035386631715,
+ "grad_norm": 0.21556039154529572,
+ "learning_rate": 0.0006,
+ "loss": 3.6870639324188232,
+ "step": 2568
+ },
+ {
+ "epoch": 35.68501529051988,
+ "grad_norm": 0.2246469408273697,
+ "learning_rate": 0.0006,
+ "loss": 3.675652503967285,
+ "step": 2569
+ },
+ {
+ "epoch": 35.69899519440804,
+ "grad_norm": 0.21891754865646362,
+ "learning_rate": 0.0006,
+ "loss": 3.692298650741577,
+ "step": 2570
+ },
+ {
+ "epoch": 35.7129750982962,
+ "grad_norm": 0.18774104118347168,
+ "learning_rate": 0.0006,
+ "loss": 3.681035041809082,
+ "step": 2571
+ },
+ {
+ "epoch": 35.72695500218436,
+ "grad_norm": 0.19461573660373688,
+ "learning_rate": 0.0006,
+ "loss": 3.7007932662963867,
+ "step": 2572
+ },
+ {
+ "epoch": 35.74093490607252,
+ "grad_norm": 0.25579094886779785,
+ "learning_rate": 0.0006,
+ "loss": 3.724409580230713,
+ "step": 2573
+ },
+ {
+ "epoch": 35.75491480996068,
+ "grad_norm": 0.27635645866394043,
+ "learning_rate": 0.0006,
+ "loss": 3.68107271194458,
+ "step": 2574
+ },
+ {
+ "epoch": 35.768894713848844,
+ "grad_norm": 0.2233380675315857,
+ "learning_rate": 0.0006,
+ "loss": 3.7123913764953613,
+ "step": 2575
+ },
+ {
+ "epoch": 35.782874617737,
+ "grad_norm": 0.19383835792541504,
+ "learning_rate": 0.0006,
+ "loss": 3.6948328018188477,
+ "step": 2576
+ },
+ {
+ "epoch": 35.796854521625164,
+ "grad_norm": 0.18138426542282104,
+ "learning_rate": 0.0006,
+ "loss": 3.6837103366851807,
+ "step": 2577
+ },
+ {
+ "epoch": 35.81083442551333,
+ "grad_norm": 0.18680135905742645,
+ "learning_rate": 0.0006,
+ "loss": 3.7106502056121826,
+ "step": 2578
+ },
+ {
+ "epoch": 35.824814329401484,
+ "grad_norm": 0.19226312637329102,
+ "learning_rate": 0.0006,
+ "loss": 3.69488787651062,
+ "step": 2579
+ },
+ {
+ "epoch": 35.83879423328965,
+ "grad_norm": 0.19224657118320465,
+ "learning_rate": 0.0006,
+ "loss": 3.7103662490844727,
+ "step": 2580
+ },
+ {
+ "epoch": 35.8527741371778,
+ "grad_norm": 0.18991880118846893,
+ "learning_rate": 0.0006,
+ "loss": 3.7154245376586914,
+ "step": 2581
+ },
+ {
+ "epoch": 35.86675404106597,
+ "grad_norm": 0.2036849409341812,
+ "learning_rate": 0.0006,
+ "loss": 3.723738193511963,
+ "step": 2582
+ },
+ {
+ "epoch": 35.88073394495413,
+ "grad_norm": 0.24730375409126282,
+ "learning_rate": 0.0006,
+ "loss": 3.6830549240112305,
+ "step": 2583
+ },
+ {
+ "epoch": 35.89471384884229,
+ "grad_norm": 0.26552343368530273,
+ "learning_rate": 0.0006,
+ "loss": 3.7025017738342285,
+ "step": 2584
+ },
+ {
+ "epoch": 35.90869375273045,
+ "grad_norm": 0.2621893286705017,
+ "learning_rate": 0.0006,
+ "loss": 3.697399854660034,
+ "step": 2585
+ },
+ {
+ "epoch": 35.92267365661861,
+ "grad_norm": 0.2320089191198349,
+ "learning_rate": 0.0006,
+ "loss": 3.722207546234131,
+ "step": 2586
+ },
+ {
+ "epoch": 35.93665356050677,
+ "grad_norm": 0.1848745346069336,
+ "learning_rate": 0.0006,
+ "loss": 3.711249351501465,
+ "step": 2587
+ },
+ {
+ "epoch": 35.95063346439493,
+ "grad_norm": 0.24218113720417023,
+ "learning_rate": 0.0006,
+ "loss": 3.698894500732422,
+ "step": 2588
+ },
+ {
+ "epoch": 35.964613368283096,
+ "grad_norm": 0.29338452219963074,
+ "learning_rate": 0.0006,
+ "loss": 3.7470521926879883,
+ "step": 2589
+ },
+ {
+ "epoch": 35.97859327217125,
+ "grad_norm": 0.2804136276245117,
+ "learning_rate": 0.0006,
+ "loss": 3.750649929046631,
+ "step": 2590
+ },
+ {
+ "epoch": 35.992573176059416,
+ "grad_norm": 0.26404470205307007,
+ "learning_rate": 0.0006,
+ "loss": 3.6995797157287598,
+ "step": 2591
+ },
+ {
+ "epoch": 36.0,
+ "grad_norm": 0.27446141839027405,
+ "learning_rate": 0.0006,
+ "loss": 3.715768814086914,
+ "step": 2592
+ },
+ {
+ "epoch": 36.0,
+ "eval_loss": 4.007599830627441,
+ "eval_runtime": 44.0149,
+ "eval_samples_per_second": 55.481,
+ "eval_steps_per_second": 3.476,
+ "step": 2592
+ },
+ {
+ "epoch": 36.01397990388816,
+ "grad_norm": 0.2365594208240509,
+ "learning_rate": 0.0006,
+ "loss": 3.6529457569122314,
+ "step": 2593
+ },
+ {
+ "epoch": 36.02795980777632,
+ "grad_norm": 0.24824099242687225,
+ "learning_rate": 0.0006,
+ "loss": 3.6703386306762695,
+ "step": 2594
+ },
+ {
+ "epoch": 36.04193971166448,
+ "grad_norm": 0.26802200078964233,
+ "learning_rate": 0.0006,
+ "loss": 3.688307762145996,
+ "step": 2595
+ },
+ {
+ "epoch": 36.05591961555265,
+ "grad_norm": 0.2552911341190338,
+ "learning_rate": 0.0006,
+ "loss": 3.681797981262207,
+ "step": 2596
+ },
+ {
+ "epoch": 36.0698995194408,
+ "grad_norm": 0.254991739988327,
+ "learning_rate": 0.0006,
+ "loss": 3.644087791442871,
+ "step": 2597
+ },
+ {
+ "epoch": 36.083879423328966,
+ "grad_norm": 0.2496735155582428,
+ "learning_rate": 0.0006,
+ "loss": 3.644047737121582,
+ "step": 2598
+ },
+ {
+ "epoch": 36.09785932721712,
+ "grad_norm": 0.23637443780899048,
+ "learning_rate": 0.0006,
+ "loss": 3.684454917907715,
+ "step": 2599
+ },
+ {
+ "epoch": 36.111839231105286,
+ "grad_norm": 0.22065003216266632,
+ "learning_rate": 0.0006,
+ "loss": 3.661752700805664,
+ "step": 2600
+ },
+ {
+ "epoch": 36.12581913499345,
+ "grad_norm": 0.2292395532131195,
+ "learning_rate": 0.0006,
+ "loss": 3.6709558963775635,
+ "step": 2601
+ },
+ {
+ "epoch": 36.139799038881605,
+ "grad_norm": 0.22295089066028595,
+ "learning_rate": 0.0006,
+ "loss": 3.642230987548828,
+ "step": 2602
+ },
+ {
+ "epoch": 36.15377894276977,
+ "grad_norm": 0.2220531553030014,
+ "learning_rate": 0.0006,
+ "loss": 3.653268814086914,
+ "step": 2603
+ },
+ {
+ "epoch": 36.16775884665793,
+ "grad_norm": 0.21605174243450165,
+ "learning_rate": 0.0006,
+ "loss": 3.6791329383850098,
+ "step": 2604
+ },
+ {
+ "epoch": 36.18173875054609,
+ "grad_norm": 0.20932699739933014,
+ "learning_rate": 0.0006,
+ "loss": 3.6496856212615967,
+ "step": 2605
+ },
+ {
+ "epoch": 36.19571865443425,
+ "grad_norm": 0.20941385626792908,
+ "learning_rate": 0.0006,
+ "loss": 3.6445729732513428,
+ "step": 2606
+ },
+ {
+ "epoch": 36.20969855832241,
+ "grad_norm": 0.1987197995185852,
+ "learning_rate": 0.0006,
+ "loss": 3.6481809616088867,
+ "step": 2607
+ },
+ {
+ "epoch": 36.22367846221057,
+ "grad_norm": 0.19054439663887024,
+ "learning_rate": 0.0006,
+ "loss": 3.66894268989563,
+ "step": 2608
+ },
+ {
+ "epoch": 36.237658366098735,
+ "grad_norm": 0.19940806925296783,
+ "learning_rate": 0.0006,
+ "loss": 3.7123427391052246,
+ "step": 2609
+ },
+ {
+ "epoch": 36.25163826998689,
+ "grad_norm": 0.22157685458660126,
+ "learning_rate": 0.0006,
+ "loss": 3.6707541942596436,
+ "step": 2610
+ },
+ {
+ "epoch": 36.265618173875055,
+ "grad_norm": 0.2362316995859146,
+ "learning_rate": 0.0006,
+ "loss": 3.6906795501708984,
+ "step": 2611
+ },
+ {
+ "epoch": 36.27959807776322,
+ "grad_norm": 0.24560341238975525,
+ "learning_rate": 0.0006,
+ "loss": 3.668379783630371,
+ "step": 2612
+ },
+ {
+ "epoch": 36.293577981651374,
+ "grad_norm": 0.22814054787158966,
+ "learning_rate": 0.0006,
+ "loss": 3.665527820587158,
+ "step": 2613
+ },
+ {
+ "epoch": 36.30755788553954,
+ "grad_norm": 0.2156696617603302,
+ "learning_rate": 0.0006,
+ "loss": 3.673835277557373,
+ "step": 2614
+ },
+ {
+ "epoch": 36.3215377894277,
+ "grad_norm": 0.20152772963047028,
+ "learning_rate": 0.0006,
+ "loss": 3.6512670516967773,
+ "step": 2615
+ },
+ {
+ "epoch": 36.33551769331586,
+ "grad_norm": 0.22466860711574554,
+ "learning_rate": 0.0006,
+ "loss": 3.6877706050872803,
+ "step": 2616
+ },
+ {
+ "epoch": 36.34949759720402,
+ "grad_norm": 0.21688112616539001,
+ "learning_rate": 0.0006,
+ "loss": 3.6895859241485596,
+ "step": 2617
+ },
+ {
+ "epoch": 36.36347750109218,
+ "grad_norm": 0.19836577773094177,
+ "learning_rate": 0.0006,
+ "loss": 3.6658992767333984,
+ "step": 2618
+ },
+ {
+ "epoch": 36.37745740498034,
+ "grad_norm": 0.1995069831609726,
+ "learning_rate": 0.0006,
+ "loss": 3.677614450454712,
+ "step": 2619
+ },
+ {
+ "epoch": 36.391437308868504,
+ "grad_norm": 0.21234792470932007,
+ "learning_rate": 0.0006,
+ "loss": 3.6971967220306396,
+ "step": 2620
+ },
+ {
+ "epoch": 36.40541721275666,
+ "grad_norm": 0.20898285508155823,
+ "learning_rate": 0.0006,
+ "loss": 3.6936516761779785,
+ "step": 2621
+ },
+ {
+ "epoch": 36.419397116644824,
+ "grad_norm": 0.2115008533000946,
+ "learning_rate": 0.0006,
+ "loss": 3.6674065589904785,
+ "step": 2622
+ },
+ {
+ "epoch": 36.43337702053299,
+ "grad_norm": 0.2041143774986267,
+ "learning_rate": 0.0006,
+ "loss": 3.6455483436584473,
+ "step": 2623
+ },
+ {
+ "epoch": 36.44735692442114,
+ "grad_norm": 0.1966932713985443,
+ "learning_rate": 0.0006,
+ "loss": 3.6938109397888184,
+ "step": 2624
+ },
+ {
+ "epoch": 36.46133682830931,
+ "grad_norm": 0.20062223076820374,
+ "learning_rate": 0.0006,
+ "loss": 3.6775765419006348,
+ "step": 2625
+ },
+ {
+ "epoch": 36.47531673219746,
+ "grad_norm": 0.20610390603542328,
+ "learning_rate": 0.0006,
+ "loss": 3.6835384368896484,
+ "step": 2626
+ },
+ {
+ "epoch": 36.489296636085626,
+ "grad_norm": 0.20481473207473755,
+ "learning_rate": 0.0006,
+ "loss": 3.6794047355651855,
+ "step": 2627
+ },
+ {
+ "epoch": 36.50327653997379,
+ "grad_norm": 0.18964581191539764,
+ "learning_rate": 0.0006,
+ "loss": 3.7035841941833496,
+ "step": 2628
+ },
+ {
+ "epoch": 36.517256443861946,
+ "grad_norm": 0.2029343545436859,
+ "learning_rate": 0.0006,
+ "loss": 3.6667590141296387,
+ "step": 2629
+ },
+ {
+ "epoch": 36.53123634775011,
+ "grad_norm": 0.23656968772411346,
+ "learning_rate": 0.0006,
+ "loss": 3.6974546909332275,
+ "step": 2630
+ },
+ {
+ "epoch": 36.54521625163827,
+ "grad_norm": 0.23401431739330292,
+ "learning_rate": 0.0006,
+ "loss": 3.668936252593994,
+ "step": 2631
+ },
+ {
+ "epoch": 36.55919615552643,
+ "grad_norm": 0.22258102893829346,
+ "learning_rate": 0.0006,
+ "loss": 3.667977809906006,
+ "step": 2632
+ },
+ {
+ "epoch": 36.57317605941459,
+ "grad_norm": 0.20849554240703583,
+ "learning_rate": 0.0006,
+ "loss": 3.6674845218658447,
+ "step": 2633
+ },
+ {
+ "epoch": 36.58715596330275,
+ "grad_norm": 0.20684309303760529,
+ "learning_rate": 0.0006,
+ "loss": 3.6828644275665283,
+ "step": 2634
+ },
+ {
+ "epoch": 36.60113586719091,
+ "grad_norm": 0.19114233553409576,
+ "learning_rate": 0.0006,
+ "loss": 3.7084832191467285,
+ "step": 2635
+ },
+ {
+ "epoch": 36.615115771079076,
+ "grad_norm": 0.20382429659366608,
+ "learning_rate": 0.0006,
+ "loss": 3.68354868888855,
+ "step": 2636
+ },
+ {
+ "epoch": 36.62909567496723,
+ "grad_norm": 0.22526590526103973,
+ "learning_rate": 0.0006,
+ "loss": 3.684112310409546,
+ "step": 2637
+ },
+ {
+ "epoch": 36.643075578855395,
+ "grad_norm": 0.20735391974449158,
+ "learning_rate": 0.0006,
+ "loss": 3.67702054977417,
+ "step": 2638
+ },
+ {
+ "epoch": 36.65705548274356,
+ "grad_norm": 0.18549653887748718,
+ "learning_rate": 0.0006,
+ "loss": 3.6840810775756836,
+ "step": 2639
+ },
+ {
+ "epoch": 36.671035386631715,
+ "grad_norm": 0.1805262714624405,
+ "learning_rate": 0.0006,
+ "loss": 3.688119411468506,
+ "step": 2640
+ },
+ {
+ "epoch": 36.68501529051988,
+ "grad_norm": 0.17545704543590546,
+ "learning_rate": 0.0006,
+ "loss": 3.6477861404418945,
+ "step": 2641
+ },
+ {
+ "epoch": 36.69899519440804,
+ "grad_norm": 0.1772221326828003,
+ "learning_rate": 0.0006,
+ "loss": 3.6935806274414062,
+ "step": 2642
+ },
+ {
+ "epoch": 36.7129750982962,
+ "grad_norm": 0.18701671063899994,
+ "learning_rate": 0.0006,
+ "loss": 3.6820428371429443,
+ "step": 2643
+ },
+ {
+ "epoch": 36.72695500218436,
+ "grad_norm": 0.2057863473892212,
+ "learning_rate": 0.0006,
+ "loss": 3.669762134552002,
+ "step": 2644
+ },
+ {
+ "epoch": 36.74093490607252,
+ "grad_norm": 0.2565848231315613,
+ "learning_rate": 0.0006,
+ "loss": 3.717599391937256,
+ "step": 2645
+ },
+ {
+ "epoch": 36.75491480996068,
+ "grad_norm": 0.24362123012542725,
+ "learning_rate": 0.0006,
+ "loss": 3.671900987625122,
+ "step": 2646
+ },
+ {
+ "epoch": 36.768894713848844,
+ "grad_norm": 0.19606009125709534,
+ "learning_rate": 0.0006,
+ "loss": 3.6782546043395996,
+ "step": 2647
+ },
+ {
+ "epoch": 36.782874617737,
+ "grad_norm": 0.1948748379945755,
+ "learning_rate": 0.0006,
+ "loss": 3.6823501586914062,
+ "step": 2648
+ },
+ {
+ "epoch": 36.796854521625164,
+ "grad_norm": 0.22289852797985077,
+ "learning_rate": 0.0006,
+ "loss": 3.693469762802124,
+ "step": 2649
+ },
+ {
+ "epoch": 36.81083442551333,
+ "grad_norm": 0.24751701951026917,
+ "learning_rate": 0.0006,
+ "loss": 3.700678825378418,
+ "step": 2650
+ },
+ {
+ "epoch": 36.824814329401484,
+ "grad_norm": 0.28663966059684753,
+ "learning_rate": 0.0006,
+ "loss": 3.6960878372192383,
+ "step": 2651
+ },
+ {
+ "epoch": 36.83879423328965,
+ "grad_norm": 0.3288552165031433,
+ "learning_rate": 0.0006,
+ "loss": 3.7255043983459473,
+ "step": 2652
+ },
+ {
+ "epoch": 36.8527741371778,
+ "grad_norm": 0.3555443286895752,
+ "learning_rate": 0.0006,
+ "loss": 3.725308418273926,
+ "step": 2653
+ },
+ {
+ "epoch": 36.86675404106597,
+ "grad_norm": 0.3204147219657898,
+ "learning_rate": 0.0006,
+ "loss": 3.7137985229492188,
+ "step": 2654
+ },
+ {
+ "epoch": 36.88073394495413,
+ "grad_norm": 0.2944706976413727,
+ "learning_rate": 0.0006,
+ "loss": 3.7032840251922607,
+ "step": 2655
+ },
+ {
+ "epoch": 36.89471384884229,
+ "grad_norm": 0.2845679223537445,
+ "learning_rate": 0.0006,
+ "loss": 3.6840004920959473,
+ "step": 2656
+ },
+ {
+ "epoch": 36.90869375273045,
+ "grad_norm": 0.2815704047679901,
+ "learning_rate": 0.0006,
+ "loss": 3.6958417892456055,
+ "step": 2657
+ },
+ {
+ "epoch": 36.92267365661861,
+ "grad_norm": 0.2733481228351593,
+ "learning_rate": 0.0006,
+ "loss": 3.677690029144287,
+ "step": 2658
+ },
+ {
+ "epoch": 36.93665356050677,
+ "grad_norm": 0.29572054743766785,
+ "learning_rate": 0.0006,
+ "loss": 3.6983718872070312,
+ "step": 2659
+ },
+ {
+ "epoch": 36.95063346439493,
+ "grad_norm": 0.2487923800945282,
+ "learning_rate": 0.0006,
+ "loss": 3.7041163444519043,
+ "step": 2660
+ },
+ {
+ "epoch": 36.964613368283096,
+ "grad_norm": 0.2541966438293457,
+ "learning_rate": 0.0006,
+ "loss": 3.7038979530334473,
+ "step": 2661
+ },
+ {
+ "epoch": 36.97859327217125,
+ "grad_norm": 0.2441335767507553,
+ "learning_rate": 0.0006,
+ "loss": 3.717966079711914,
+ "step": 2662
+ },
+ {
+ "epoch": 36.992573176059416,
+ "grad_norm": 0.2304554283618927,
+ "learning_rate": 0.0006,
+ "loss": 3.671098232269287,
+ "step": 2663
+ },
+ {
+ "epoch": 37.0,
+ "grad_norm": 0.2346591204404831,
+ "learning_rate": 0.0006,
+ "loss": 3.680298089981079,
+ "step": 2664
+ },
+ {
+ "epoch": 37.0,
+ "eval_loss": 3.9944777488708496,
+ "eval_runtime": 43.9862,
+ "eval_samples_per_second": 55.517,
+ "eval_steps_per_second": 3.478,
+ "step": 2664
+ },
+ {
+ "epoch": 37.01397990388816,
+ "grad_norm": 0.22970618307590485,
+ "learning_rate": 0.0006,
+ "loss": 3.6835923194885254,
+ "step": 2665
+ },
+ {
+ "epoch": 37.02795980777632,
+ "grad_norm": 0.25463759899139404,
+ "learning_rate": 0.0006,
+ "loss": 3.658339023590088,
+ "step": 2666
+ },
+ {
+ "epoch": 37.04193971166448,
+ "grad_norm": 0.2520577311515808,
+ "learning_rate": 0.0006,
+ "loss": 3.6275506019592285,
+ "step": 2667
+ },
+ {
+ "epoch": 37.05591961555265,
+ "grad_norm": 0.22698813676834106,
+ "learning_rate": 0.0006,
+ "loss": 3.65043568611145,
+ "step": 2668
+ },
+ {
+ "epoch": 37.0698995194408,
+ "grad_norm": 0.21133972704410553,
+ "learning_rate": 0.0006,
+ "loss": 3.6262078285217285,
+ "step": 2669
+ },
+ {
+ "epoch": 37.083879423328966,
+ "grad_norm": 0.21940460801124573,
+ "learning_rate": 0.0006,
+ "loss": 3.6709489822387695,
+ "step": 2670
+ },
+ {
+ "epoch": 37.09785932721712,
+ "grad_norm": 0.21897517144680023,
+ "learning_rate": 0.0006,
+ "loss": 3.6621508598327637,
+ "step": 2671
+ },
+ {
+ "epoch": 37.111839231105286,
+ "grad_norm": 0.2270219624042511,
+ "learning_rate": 0.0006,
+ "loss": 3.6334924697875977,
+ "step": 2672
+ },
+ {
+ "epoch": 37.12581913499345,
+ "grad_norm": 0.22082042694091797,
+ "learning_rate": 0.0006,
+ "loss": 3.662209987640381,
+ "step": 2673
+ },
+ {
+ "epoch": 37.139799038881605,
+ "grad_norm": 0.19931960105895996,
+ "learning_rate": 0.0006,
+ "loss": 3.6655359268188477,
+ "step": 2674
+ },
+ {
+ "epoch": 37.15377894276977,
+ "grad_norm": 0.21451307833194733,
+ "learning_rate": 0.0006,
+ "loss": 3.656287670135498,
+ "step": 2675
+ },
+ {
+ "epoch": 37.16775884665793,
+ "grad_norm": 0.2131514698266983,
+ "learning_rate": 0.0006,
+ "loss": 3.635054111480713,
+ "step": 2676
+ },
+ {
+ "epoch": 37.18173875054609,
+ "grad_norm": 0.20425808429718018,
+ "learning_rate": 0.0006,
+ "loss": 3.67653226852417,
+ "step": 2677
+ },
+ {
+ "epoch": 37.19571865443425,
+ "grad_norm": 0.19423379004001617,
+ "learning_rate": 0.0006,
+ "loss": 3.6827316284179688,
+ "step": 2678
+ },
+ {
+ "epoch": 37.20969855832241,
+ "grad_norm": 0.1954883486032486,
+ "learning_rate": 0.0006,
+ "loss": 3.658092498779297,
+ "step": 2679
+ },
+ {
+ "epoch": 37.22367846221057,
+ "grad_norm": 0.21153928339481354,
+ "learning_rate": 0.0006,
+ "loss": 3.6675186157226562,
+ "step": 2680
+ },
+ {
+ "epoch": 37.237658366098735,
+ "grad_norm": 0.2032976895570755,
+ "learning_rate": 0.0006,
+ "loss": 3.6725759506225586,
+ "step": 2681
+ },
+ {
+ "epoch": 37.25163826998689,
+ "grad_norm": 0.19839346408843994,
+ "learning_rate": 0.0006,
+ "loss": 3.660851240158081,
+ "step": 2682
+ },
+ {
+ "epoch": 37.265618173875055,
+ "grad_norm": 0.1884699910879135,
+ "learning_rate": 0.0006,
+ "loss": 3.6653623580932617,
+ "step": 2683
+ },
+ {
+ "epoch": 37.27959807776322,
+ "grad_norm": 0.19558705389499664,
+ "learning_rate": 0.0006,
+ "loss": 3.648016929626465,
+ "step": 2684
+ },
+ {
+ "epoch": 37.293577981651374,
+ "grad_norm": 0.19453682005405426,
+ "learning_rate": 0.0006,
+ "loss": 3.6804773807525635,
+ "step": 2685
+ },
+ {
+ "epoch": 37.30755788553954,
+ "grad_norm": 0.1901177167892456,
+ "learning_rate": 0.0006,
+ "loss": 3.6533353328704834,
+ "step": 2686
+ },
+ {
+ "epoch": 37.3215377894277,
+ "grad_norm": 0.19425596296787262,
+ "learning_rate": 0.0006,
+ "loss": 3.665745735168457,
+ "step": 2687
+ },
+ {
+ "epoch": 37.33551769331586,
+ "grad_norm": 0.17583411931991577,
+ "learning_rate": 0.0006,
+ "loss": 3.679112434387207,
+ "step": 2688
+ },
+ {
+ "epoch": 37.34949759720402,
+ "grad_norm": 0.19667863845825195,
+ "learning_rate": 0.0006,
+ "loss": 3.6650352478027344,
+ "step": 2689
+ },
+ {
+ "epoch": 37.36347750109218,
+ "grad_norm": 0.22803270816802979,
+ "learning_rate": 0.0006,
+ "loss": 3.6658573150634766,
+ "step": 2690
+ },
+ {
+ "epoch": 37.37745740498034,
+ "grad_norm": 0.20589298009872437,
+ "learning_rate": 0.0006,
+ "loss": 3.6587300300598145,
+ "step": 2691
+ },
+ {
+ "epoch": 37.391437308868504,
+ "grad_norm": 0.1946951299905777,
+ "learning_rate": 0.0006,
+ "loss": 3.6515092849731445,
+ "step": 2692
+ },
+ {
+ "epoch": 37.40541721275666,
+ "grad_norm": 0.19029614329338074,
+ "learning_rate": 0.0006,
+ "loss": 3.6383113861083984,
+ "step": 2693
+ },
+ {
+ "epoch": 37.419397116644824,
+ "grad_norm": 0.1944548338651657,
+ "learning_rate": 0.0006,
+ "loss": 3.7017135620117188,
+ "step": 2694
+ },
+ {
+ "epoch": 37.43337702053299,
+ "grad_norm": 0.19482386112213135,
+ "learning_rate": 0.0006,
+ "loss": 3.6791775226593018,
+ "step": 2695
+ },
+ {
+ "epoch": 37.44735692442114,
+ "grad_norm": 0.23276680707931519,
+ "learning_rate": 0.0006,
+ "loss": 3.672245979309082,
+ "step": 2696
+ },
+ {
+ "epoch": 37.46133682830931,
+ "grad_norm": 0.22267542779445648,
+ "learning_rate": 0.0006,
+ "loss": 3.683380365371704,
+ "step": 2697
+ },
+ {
+ "epoch": 37.47531673219746,
+ "grad_norm": 0.1942203938961029,
+ "learning_rate": 0.0006,
+ "loss": 3.6760759353637695,
+ "step": 2698
+ },
+ {
+ "epoch": 37.489296636085626,
+ "grad_norm": 0.21212540566921234,
+ "learning_rate": 0.0006,
+ "loss": 3.660719633102417,
+ "step": 2699
+ },
+ {
+ "epoch": 37.50327653997379,
+ "grad_norm": 0.2365427315235138,
+ "learning_rate": 0.0006,
+ "loss": 3.6727194786071777,
+ "step": 2700
+ },
+ {
+ "epoch": 37.517256443861946,
+ "grad_norm": 0.2379675805568695,
+ "learning_rate": 0.0006,
+ "loss": 3.6691598892211914,
+ "step": 2701
+ },
+ {
+ "epoch": 37.53123634775011,
+ "grad_norm": 0.22142401337623596,
+ "learning_rate": 0.0006,
+ "loss": 3.6882128715515137,
+ "step": 2702
+ },
+ {
+ "epoch": 37.54521625163827,
+ "grad_norm": 0.19993607699871063,
+ "learning_rate": 0.0006,
+ "loss": 3.6651787757873535,
+ "step": 2703
+ },
+ {
+ "epoch": 37.55919615552643,
+ "grad_norm": 0.19934895634651184,
+ "learning_rate": 0.0006,
+ "loss": 3.6680638790130615,
+ "step": 2704
+ },
+ {
+ "epoch": 37.57317605941459,
+ "grad_norm": 0.21202369034290314,
+ "learning_rate": 0.0006,
+ "loss": 3.697615623474121,
+ "step": 2705
+ },
+ {
+ "epoch": 37.58715596330275,
+ "grad_norm": 0.1994577795267105,
+ "learning_rate": 0.0006,
+ "loss": 3.688243865966797,
+ "step": 2706
+ },
+ {
+ "epoch": 37.60113586719091,
+ "grad_norm": 0.20365118980407715,
+ "learning_rate": 0.0006,
+ "loss": 3.6615519523620605,
+ "step": 2707
+ },
+ {
+ "epoch": 37.615115771079076,
+ "grad_norm": 0.22466035187244415,
+ "learning_rate": 0.0006,
+ "loss": 3.703111171722412,
+ "step": 2708
+ },
+ {
+ "epoch": 37.62909567496723,
+ "grad_norm": 0.21140407025814056,
+ "learning_rate": 0.0006,
+ "loss": 3.6744728088378906,
+ "step": 2709
+ },
+ {
+ "epoch": 37.643075578855395,
+ "grad_norm": 0.22220195829868317,
+ "learning_rate": 0.0006,
+ "loss": 3.671501874923706,
+ "step": 2710
+ },
+ {
+ "epoch": 37.65705548274356,
+ "grad_norm": 0.23279480636119843,
+ "learning_rate": 0.0006,
+ "loss": 3.6962859630584717,
+ "step": 2711
+ },
+ {
+ "epoch": 37.671035386631715,
+ "grad_norm": 0.23284408450126648,
+ "learning_rate": 0.0006,
+ "loss": 3.670231342315674,
+ "step": 2712
+ },
+ {
+ "epoch": 37.68501529051988,
+ "grad_norm": 0.21935738623142242,
+ "learning_rate": 0.0006,
+ "loss": 3.6908650398254395,
+ "step": 2713
+ },
+ {
+ "epoch": 37.69899519440804,
+ "grad_norm": 0.2072262167930603,
+ "learning_rate": 0.0006,
+ "loss": 3.7204506397247314,
+ "step": 2714
+ },
+ {
+ "epoch": 37.7129750982962,
+ "grad_norm": 0.22547709941864014,
+ "learning_rate": 0.0006,
+ "loss": 3.6740894317626953,
+ "step": 2715
+ },
+ {
+ "epoch": 37.72695500218436,
+ "grad_norm": 0.2460414469242096,
+ "learning_rate": 0.0006,
+ "loss": 3.6938390731811523,
+ "step": 2716
+ },
+ {
+ "epoch": 37.74093490607252,
+ "grad_norm": 0.24756456911563873,
+ "learning_rate": 0.0006,
+ "loss": 3.692173480987549,
+ "step": 2717
+ },
+ {
+ "epoch": 37.75491480996068,
+ "grad_norm": 0.20149244368076324,
+ "learning_rate": 0.0006,
+ "loss": 3.6677675247192383,
+ "step": 2718
+ },
+ {
+ "epoch": 37.768894713848844,
+ "grad_norm": 0.19834814965724945,
+ "learning_rate": 0.0006,
+ "loss": 3.6717336177825928,
+ "step": 2719
+ },
+ {
+ "epoch": 37.782874617737,
+ "grad_norm": 0.22929978370666504,
+ "learning_rate": 0.0006,
+ "loss": 3.6818275451660156,
+ "step": 2720
+ },
+ {
+ "epoch": 37.796854521625164,
+ "grad_norm": 0.23674434423446655,
+ "learning_rate": 0.0006,
+ "loss": 3.689767360687256,
+ "step": 2721
+ },
+ {
+ "epoch": 37.81083442551333,
+ "grad_norm": 0.22798952460289001,
+ "learning_rate": 0.0006,
+ "loss": 3.6928915977478027,
+ "step": 2722
+ },
+ {
+ "epoch": 37.824814329401484,
+ "grad_norm": 0.2270302027463913,
+ "learning_rate": 0.0006,
+ "loss": 3.6884233951568604,
+ "step": 2723
+ },
+ {
+ "epoch": 37.83879423328965,
+ "grad_norm": 0.23563820123672485,
+ "learning_rate": 0.0006,
+ "loss": 3.6962456703186035,
+ "step": 2724
+ },
+ {
+ "epoch": 37.8527741371778,
+ "grad_norm": 0.2240045815706253,
+ "learning_rate": 0.0006,
+ "loss": 3.6985082626342773,
+ "step": 2725
+ },
+ {
+ "epoch": 37.86675404106597,
+ "grad_norm": 0.21541155874729156,
+ "learning_rate": 0.0006,
+ "loss": 3.6960105895996094,
+ "step": 2726
+ },
+ {
+ "epoch": 37.88073394495413,
+ "grad_norm": 0.23257222771644592,
+ "learning_rate": 0.0006,
+ "loss": 3.667404890060425,
+ "step": 2727
+ },
+ {
+ "epoch": 37.89471384884229,
+ "grad_norm": 0.226792573928833,
+ "learning_rate": 0.0006,
+ "loss": 3.6549744606018066,
+ "step": 2728
+ },
+ {
+ "epoch": 37.90869375273045,
+ "grad_norm": 0.18993401527404785,
+ "learning_rate": 0.0006,
+ "loss": 3.6772334575653076,
+ "step": 2729
+ },
+ {
+ "epoch": 37.92267365661861,
+ "grad_norm": 0.20936095714569092,
+ "learning_rate": 0.0006,
+ "loss": 3.671116352081299,
+ "step": 2730
+ },
+ {
+ "epoch": 37.93665356050677,
+ "grad_norm": 0.2203974425792694,
+ "learning_rate": 0.0006,
+ "loss": 3.6549739837646484,
+ "step": 2731
+ },
+ {
+ "epoch": 37.95063346439493,
+ "grad_norm": 0.19504620134830475,
+ "learning_rate": 0.0006,
+ "loss": 3.6755447387695312,
+ "step": 2732
+ },
+ {
+ "epoch": 37.964613368283096,
+ "grad_norm": 0.2025984674692154,
+ "learning_rate": 0.0006,
+ "loss": 3.678955554962158,
+ "step": 2733
+ },
+ {
+ "epoch": 37.97859327217125,
+ "grad_norm": 0.21556107699871063,
+ "learning_rate": 0.0006,
+ "loss": 3.6680502891540527,
+ "step": 2734
+ },
+ {
+ "epoch": 37.992573176059416,
+ "grad_norm": 0.21011291444301605,
+ "learning_rate": 0.0006,
+ "loss": 3.672039031982422,
+ "step": 2735
+ },
+ {
+ "epoch": 38.0,
+ "grad_norm": 0.23710957169532776,
+ "learning_rate": 0.0006,
+ "loss": 3.6326794624328613,
+ "step": 2736
+ },
+ {
+ "epoch": 38.0,
+ "eval_loss": 3.990501880645752,
+ "eval_runtime": 43.8951,
+ "eval_samples_per_second": 55.633,
+ "eval_steps_per_second": 3.486,
+ "step": 2736
+ },
+ {
+ "epoch": 38.01397990388816,
+ "grad_norm": 0.20711326599121094,
+ "learning_rate": 0.0006,
+ "loss": 3.6364657878875732,
+ "step": 2737
+ },
+ {
+ "epoch": 38.02795980777632,
+ "grad_norm": 0.2250880002975464,
+ "learning_rate": 0.0006,
+ "loss": 3.637646436691284,
+ "step": 2738
+ },
+ {
+ "epoch": 38.04193971166448,
+ "grad_norm": 0.2448352724313736,
+ "learning_rate": 0.0006,
+ "loss": 3.63557767868042,
+ "step": 2739
+ },
+ {
+ "epoch": 38.05591961555265,
+ "grad_norm": 0.23031368851661682,
+ "learning_rate": 0.0006,
+ "loss": 3.627117395401001,
+ "step": 2740
+ },
+ {
+ "epoch": 38.0698995194408,
+ "grad_norm": 0.2045450210571289,
+ "learning_rate": 0.0006,
+ "loss": 3.6594958305358887,
+ "step": 2741
+ },
+ {
+ "epoch": 38.083879423328966,
+ "grad_norm": 0.21253496408462524,
+ "learning_rate": 0.0006,
+ "loss": 3.65494441986084,
+ "step": 2742
+ },
+ {
+ "epoch": 38.09785932721712,
+ "grad_norm": 0.20196112990379333,
+ "learning_rate": 0.0006,
+ "loss": 3.645289421081543,
+ "step": 2743
+ },
+ {
+ "epoch": 38.111839231105286,
+ "grad_norm": 0.20258229970932007,
+ "learning_rate": 0.0006,
+ "loss": 3.6698505878448486,
+ "step": 2744
+ },
+ {
+ "epoch": 38.12581913499345,
+ "grad_norm": 0.22182606160640717,
+ "learning_rate": 0.0006,
+ "loss": 3.6427698135375977,
+ "step": 2745
+ },
+ {
+ "epoch": 38.139799038881605,
+ "grad_norm": 0.21281519532203674,
+ "learning_rate": 0.0006,
+ "loss": 3.668337345123291,
+ "step": 2746
+ },
+ {
+ "epoch": 38.15377894276977,
+ "grad_norm": 0.21680216491222382,
+ "learning_rate": 0.0006,
+ "loss": 3.6362109184265137,
+ "step": 2747
+ },
+ {
+ "epoch": 38.16775884665793,
+ "grad_norm": 0.24396903812885284,
+ "learning_rate": 0.0006,
+ "loss": 3.660510540008545,
+ "step": 2748
+ },
+ {
+ "epoch": 38.18173875054609,
+ "grad_norm": 0.2546434700489044,
+ "learning_rate": 0.0006,
+ "loss": 3.6562418937683105,
+ "step": 2749
+ },
+ {
+ "epoch": 38.19571865443425,
+ "grad_norm": 0.22705447673797607,
+ "learning_rate": 0.0006,
+ "loss": 3.6801514625549316,
+ "step": 2750
+ },
+ {
+ "epoch": 38.20969855832241,
+ "grad_norm": 0.21516330540180206,
+ "learning_rate": 0.0006,
+ "loss": 3.6633429527282715,
+ "step": 2751
+ },
+ {
+ "epoch": 38.22367846221057,
+ "grad_norm": 0.20895853638648987,
+ "learning_rate": 0.0006,
+ "loss": 3.619896411895752,
+ "step": 2752
+ },
+ {
+ "epoch": 38.237658366098735,
+ "grad_norm": 0.21183325350284576,
+ "learning_rate": 0.0006,
+ "loss": 3.639491558074951,
+ "step": 2753
+ },
+ {
+ "epoch": 38.25163826998689,
+ "grad_norm": 0.21439522504806519,
+ "learning_rate": 0.0006,
+ "loss": 3.671931028366089,
+ "step": 2754
+ },
+ {
+ "epoch": 38.265618173875055,
+ "grad_norm": 0.2017785906791687,
+ "learning_rate": 0.0006,
+ "loss": 3.639533519744873,
+ "step": 2755
+ },
+ {
+ "epoch": 38.27959807776322,
+ "grad_norm": 0.20015068352222443,
+ "learning_rate": 0.0006,
+ "loss": 3.654262065887451,
+ "step": 2756
+ },
+ {
+ "epoch": 38.293577981651374,
+ "grad_norm": 0.21518948674201965,
+ "learning_rate": 0.0006,
+ "loss": 3.649919033050537,
+ "step": 2757
+ },
+ {
+ "epoch": 38.30755788553954,
+ "grad_norm": 0.21994580328464508,
+ "learning_rate": 0.0006,
+ "loss": 3.6756131649017334,
+ "step": 2758
+ },
+ {
+ "epoch": 38.3215377894277,
+ "grad_norm": 0.2053978443145752,
+ "learning_rate": 0.0006,
+ "loss": 3.651520252227783,
+ "step": 2759
+ },
+ {
+ "epoch": 38.33551769331586,
+ "grad_norm": 0.2066337615251541,
+ "learning_rate": 0.0006,
+ "loss": 3.6404507160186768,
+ "step": 2760
+ },
+ {
+ "epoch": 38.34949759720402,
+ "grad_norm": 0.20898301899433136,
+ "learning_rate": 0.0006,
+ "loss": 3.637200355529785,
+ "step": 2761
+ },
+ {
+ "epoch": 38.36347750109218,
+ "grad_norm": 0.19212259352207184,
+ "learning_rate": 0.0006,
+ "loss": 3.68394136428833,
+ "step": 2762
+ },
+ {
+ "epoch": 38.37745740498034,
+ "grad_norm": 0.2011883556842804,
+ "learning_rate": 0.0006,
+ "loss": 3.6494975090026855,
+ "step": 2763
+ },
+ {
+ "epoch": 38.391437308868504,
+ "grad_norm": 0.23072998225688934,
+ "learning_rate": 0.0006,
+ "loss": 3.6644320487976074,
+ "step": 2764
+ },
+ {
+ "epoch": 38.40541721275666,
+ "grad_norm": 0.2195347547531128,
+ "learning_rate": 0.0006,
+ "loss": 3.6666269302368164,
+ "step": 2765
+ },
+ {
+ "epoch": 38.419397116644824,
+ "grad_norm": 0.19820117950439453,
+ "learning_rate": 0.0006,
+ "loss": 3.690683364868164,
+ "step": 2766
+ },
+ {
+ "epoch": 38.43337702053299,
+ "grad_norm": 0.20381149649620056,
+ "learning_rate": 0.0006,
+ "loss": 3.6647756099700928,
+ "step": 2767
+ },
+ {
+ "epoch": 38.44735692442114,
+ "grad_norm": 0.19477297365665436,
+ "learning_rate": 0.0006,
+ "loss": 3.6419155597686768,
+ "step": 2768
+ },
+ {
+ "epoch": 38.46133682830931,
+ "grad_norm": 0.20118845999240875,
+ "learning_rate": 0.0006,
+ "loss": 3.678511142730713,
+ "step": 2769
+ },
+ {
+ "epoch": 38.47531673219746,
+ "grad_norm": 0.19538167119026184,
+ "learning_rate": 0.0006,
+ "loss": 3.632112503051758,
+ "step": 2770
+ },
+ {
+ "epoch": 38.489296636085626,
+ "grad_norm": 0.18136411905288696,
+ "learning_rate": 0.0006,
+ "loss": 3.6631078720092773,
+ "step": 2771
+ },
+ {
+ "epoch": 38.50327653997379,
+ "grad_norm": 0.1993526667356491,
+ "learning_rate": 0.0006,
+ "loss": 3.6800379753112793,
+ "step": 2772
+ },
+ {
+ "epoch": 38.517256443861946,
+ "grad_norm": 0.21409109234809875,
+ "learning_rate": 0.0006,
+ "loss": 3.6355738639831543,
+ "step": 2773
+ },
+ {
+ "epoch": 38.53123634775011,
+ "grad_norm": 0.20932911336421967,
+ "learning_rate": 0.0006,
+ "loss": 3.6639811992645264,
+ "step": 2774
+ },
+ {
+ "epoch": 38.54521625163827,
+ "grad_norm": 0.22266243398189545,
+ "learning_rate": 0.0006,
+ "loss": 3.6927733421325684,
+ "step": 2775
+ },
+ {
+ "epoch": 38.55919615552643,
+ "grad_norm": 0.22916539013385773,
+ "learning_rate": 0.0006,
+ "loss": 3.6381587982177734,
+ "step": 2776
+ },
+ {
+ "epoch": 38.57317605941459,
+ "grad_norm": 0.21507245302200317,
+ "learning_rate": 0.0006,
+ "loss": 3.6724753379821777,
+ "step": 2777
+ },
+ {
+ "epoch": 38.58715596330275,
+ "grad_norm": 0.21132487058639526,
+ "learning_rate": 0.0006,
+ "loss": 3.68450927734375,
+ "step": 2778
+ },
+ {
+ "epoch": 38.60113586719091,
+ "grad_norm": 0.2323923259973526,
+ "learning_rate": 0.0006,
+ "loss": 3.6917476654052734,
+ "step": 2779
+ },
+ {
+ "epoch": 38.615115771079076,
+ "grad_norm": 0.2862907648086548,
+ "learning_rate": 0.0006,
+ "loss": 3.6832518577575684,
+ "step": 2780
+ },
+ {
+ "epoch": 38.62909567496723,
+ "grad_norm": 0.28132742643356323,
+ "learning_rate": 0.0006,
+ "loss": 3.6619668006896973,
+ "step": 2781
+ },
+ {
+ "epoch": 38.643075578855395,
+ "grad_norm": 0.24933350086212158,
+ "learning_rate": 0.0006,
+ "loss": 3.6342711448669434,
+ "step": 2782
+ },
+ {
+ "epoch": 38.65705548274356,
+ "grad_norm": 0.23482646048069,
+ "learning_rate": 0.0006,
+ "loss": 3.667548656463623,
+ "step": 2783
+ },
+ {
+ "epoch": 38.671035386631715,
+ "grad_norm": 0.2529793083667755,
+ "learning_rate": 0.0006,
+ "loss": 3.6613709926605225,
+ "step": 2784
+ },
+ {
+ "epoch": 38.68501529051988,
+ "grad_norm": 0.2306097447872162,
+ "learning_rate": 0.0006,
+ "loss": 3.653153419494629,
+ "step": 2785
+ },
+ {
+ "epoch": 38.69899519440804,
+ "grad_norm": 0.21787869930267334,
+ "learning_rate": 0.0006,
+ "loss": 3.6991848945617676,
+ "step": 2786
+ },
+ {
+ "epoch": 38.7129750982962,
+ "grad_norm": 0.24818190932273865,
+ "learning_rate": 0.0006,
+ "loss": 3.664022445678711,
+ "step": 2787
+ },
+ {
+ "epoch": 38.72695500218436,
+ "grad_norm": 0.23205995559692383,
+ "learning_rate": 0.0006,
+ "loss": 3.656064987182617,
+ "step": 2788
+ },
+ {
+ "epoch": 38.74093490607252,
+ "grad_norm": 0.2268102467060089,
+ "learning_rate": 0.0006,
+ "loss": 3.678421974182129,
+ "step": 2789
+ },
+ {
+ "epoch": 38.75491480996068,
+ "grad_norm": 0.22549907863140106,
+ "learning_rate": 0.0006,
+ "loss": 3.6483302116394043,
+ "step": 2790
+ },
+ {
+ "epoch": 38.768894713848844,
+ "grad_norm": 0.2293119877576828,
+ "learning_rate": 0.0006,
+ "loss": 3.646825075149536,
+ "step": 2791
+ },
+ {
+ "epoch": 38.782874617737,
+ "grad_norm": 0.21879418194293976,
+ "learning_rate": 0.0006,
+ "loss": 3.682124614715576,
+ "step": 2792
+ },
+ {
+ "epoch": 38.796854521625164,
+ "grad_norm": 0.22012849152088165,
+ "learning_rate": 0.0006,
+ "loss": 3.6590089797973633,
+ "step": 2793
+ },
+ {
+ "epoch": 38.81083442551333,
+ "grad_norm": 0.2449142336845398,
+ "learning_rate": 0.0006,
+ "loss": 3.7053747177124023,
+ "step": 2794
+ },
+ {
+ "epoch": 38.824814329401484,
+ "grad_norm": 0.2677161395549774,
+ "learning_rate": 0.0006,
+ "loss": 3.666144371032715,
+ "step": 2795
+ },
+ {
+ "epoch": 38.83879423328965,
+ "grad_norm": 0.2654981315135956,
+ "learning_rate": 0.0006,
+ "loss": 3.637512683868408,
+ "step": 2796
+ },
+ {
+ "epoch": 38.8527741371778,
+ "grad_norm": 0.23169654607772827,
+ "learning_rate": 0.0006,
+ "loss": 3.6885948181152344,
+ "step": 2797
+ },
+ {
+ "epoch": 38.86675404106597,
+ "grad_norm": 0.22195108234882355,
+ "learning_rate": 0.0006,
+ "loss": 3.6597604751586914,
+ "step": 2798
+ },
+ {
+ "epoch": 38.88073394495413,
+ "grad_norm": 0.23703525960445404,
+ "learning_rate": 0.0006,
+ "loss": 3.6808712482452393,
+ "step": 2799
+ },
+ {
+ "epoch": 38.89471384884229,
+ "grad_norm": 0.24711088836193085,
+ "learning_rate": 0.0006,
+ "loss": 3.733792781829834,
+ "step": 2800
+ },
+ {
+ "epoch": 38.90869375273045,
+ "grad_norm": 0.216362863779068,
+ "learning_rate": 0.0006,
+ "loss": 3.670599937438965,
+ "step": 2801
+ },
+ {
+ "epoch": 38.92267365661861,
+ "grad_norm": 0.19483810663223267,
+ "learning_rate": 0.0006,
+ "loss": 3.6965198516845703,
+ "step": 2802
+ },
+ {
+ "epoch": 38.93665356050677,
+ "grad_norm": 0.1941208392381668,
+ "learning_rate": 0.0006,
+ "loss": 3.678022861480713,
+ "step": 2803
+ },
+ {
+ "epoch": 38.95063346439493,
+ "grad_norm": 0.1919465959072113,
+ "learning_rate": 0.0006,
+ "loss": 3.6763226985931396,
+ "step": 2804
+ },
+ {
+ "epoch": 38.964613368283096,
+ "grad_norm": 0.2003280073404312,
+ "learning_rate": 0.0006,
+ "loss": 3.670313835144043,
+ "step": 2805
+ },
+ {
+ "epoch": 38.97859327217125,
+ "grad_norm": 0.198478564620018,
+ "learning_rate": 0.0006,
+ "loss": 3.675569772720337,
+ "step": 2806
+ },
+ {
+ "epoch": 38.992573176059416,
+ "grad_norm": 0.23692303895950317,
+ "learning_rate": 0.0006,
+ "loss": 3.696561336517334,
+ "step": 2807
+ },
+ {
+ "epoch": 39.0,
+ "grad_norm": 0.3208145797252655,
+ "learning_rate": 0.0006,
+ "loss": 3.6791436672210693,
+ "step": 2808
+ },
+ {
+ "epoch": 39.0,
+ "eval_loss": 4.0079450607299805,
+ "eval_runtime": 43.8573,
+ "eval_samples_per_second": 55.681,
+ "eval_steps_per_second": 3.489,
+ "step": 2808
+ },
+ {
+ "epoch": 39.01397990388816,
+ "grad_norm": 0.28338733315467834,
+ "learning_rate": 0.0006,
+ "loss": 3.6277060508728027,
+ "step": 2809
+ },
+ {
+ "epoch": 39.02795980777632,
+ "grad_norm": 0.22057899832725525,
+ "learning_rate": 0.0006,
+ "loss": 3.6132822036743164,
+ "step": 2810
+ },
+ {
+ "epoch": 39.04193971166448,
+ "grad_norm": 0.20630282163619995,
+ "learning_rate": 0.0006,
+ "loss": 3.6143927574157715,
+ "step": 2811
+ },
+ {
+ "epoch": 39.05591961555265,
+ "grad_norm": 0.2178523689508438,
+ "learning_rate": 0.0006,
+ "loss": 3.6304664611816406,
+ "step": 2812
+ },
+ {
+ "epoch": 39.0698995194408,
+ "grad_norm": 0.19613824784755707,
+ "learning_rate": 0.0006,
+ "loss": 3.6137919425964355,
+ "step": 2813
+ },
+ {
+ "epoch": 39.083879423328966,
+ "grad_norm": 0.2047276794910431,
+ "learning_rate": 0.0006,
+ "loss": 3.6854846477508545,
+ "step": 2814
+ },
+ {
+ "epoch": 39.09785932721712,
+ "grad_norm": 0.20082715153694153,
+ "learning_rate": 0.0006,
+ "loss": 3.632091522216797,
+ "step": 2815
+ },
+ {
+ "epoch": 39.111839231105286,
+ "grad_norm": 0.21746563911437988,
+ "learning_rate": 0.0006,
+ "loss": 3.640477180480957,
+ "step": 2816
+ },
+ {
+ "epoch": 39.12581913499345,
+ "grad_norm": 0.2128882110118866,
+ "learning_rate": 0.0006,
+ "loss": 3.643984317779541,
+ "step": 2817
+ },
+ {
+ "epoch": 39.139799038881605,
+ "grad_norm": 0.2110479772090912,
+ "learning_rate": 0.0006,
+ "loss": 3.6328823566436768,
+ "step": 2818
+ },
+ {
+ "epoch": 39.15377894276977,
+ "grad_norm": 0.22304436564445496,
+ "learning_rate": 0.0006,
+ "loss": 3.6669845581054688,
+ "step": 2819
+ },
+ {
+ "epoch": 39.16775884665793,
+ "grad_norm": 0.22310666739940643,
+ "learning_rate": 0.0006,
+ "loss": 3.609743595123291,
+ "step": 2820
+ },
+ {
+ "epoch": 39.18173875054609,
+ "grad_norm": 0.21002045273780823,
+ "learning_rate": 0.0006,
+ "loss": 3.601900815963745,
+ "step": 2821
+ },
+ {
+ "epoch": 39.19571865443425,
+ "grad_norm": 0.20531952381134033,
+ "learning_rate": 0.0006,
+ "loss": 3.6405060291290283,
+ "step": 2822
+ },
+ {
+ "epoch": 39.20969855832241,
+ "grad_norm": 0.20646385848522186,
+ "learning_rate": 0.0006,
+ "loss": 3.669617176055908,
+ "step": 2823
+ },
+ {
+ "epoch": 39.22367846221057,
+ "grad_norm": 0.2553980350494385,
+ "learning_rate": 0.0006,
+ "loss": 3.642709255218506,
+ "step": 2824
+ },
+ {
+ "epoch": 39.237658366098735,
+ "grad_norm": 0.2753220498561859,
+ "learning_rate": 0.0006,
+ "loss": 3.668405055999756,
+ "step": 2825
+ },
+ {
+ "epoch": 39.25163826998689,
+ "grad_norm": 0.2425055354833603,
+ "learning_rate": 0.0006,
+ "loss": 3.659559726715088,
+ "step": 2826
+ },
+ {
+ "epoch": 39.265618173875055,
+ "grad_norm": 0.2199426293373108,
+ "learning_rate": 0.0006,
+ "loss": 3.6466197967529297,
+ "step": 2827
+ },
+ {
+ "epoch": 39.27959807776322,
+ "grad_norm": 0.221355602145195,
+ "learning_rate": 0.0006,
+ "loss": 3.639418125152588,
+ "step": 2828
+ },
+ {
+ "epoch": 39.293577981651374,
+ "grad_norm": 0.20777100324630737,
+ "learning_rate": 0.0006,
+ "loss": 3.68102765083313,
+ "step": 2829
+ },
+ {
+ "epoch": 39.30755788553954,
+ "grad_norm": 0.20557557046413422,
+ "learning_rate": 0.0006,
+ "loss": 3.663064956665039,
+ "step": 2830
+ },
+ {
+ "epoch": 39.3215377894277,
+ "grad_norm": 0.2385585904121399,
+ "learning_rate": 0.0006,
+ "loss": 3.6598849296569824,
+ "step": 2831
+ },
+ {
+ "epoch": 39.33551769331586,
+ "grad_norm": 0.25222650170326233,
+ "learning_rate": 0.0006,
+ "loss": 3.635199546813965,
+ "step": 2832
+ },
+ {
+ "epoch": 39.34949759720402,
+ "grad_norm": 0.22894687950611115,
+ "learning_rate": 0.0006,
+ "loss": 3.6100258827209473,
+ "step": 2833
+ },
+ {
+ "epoch": 39.36347750109218,
+ "grad_norm": 0.22945865988731384,
+ "learning_rate": 0.0006,
+ "loss": 3.63069748878479,
+ "step": 2834
+ },
+ {
+ "epoch": 39.37745740498034,
+ "grad_norm": 0.2466309368610382,
+ "learning_rate": 0.0006,
+ "loss": 3.6615123748779297,
+ "step": 2835
+ },
+ {
+ "epoch": 39.391437308868504,
+ "grad_norm": 0.23845571279525757,
+ "learning_rate": 0.0006,
+ "loss": 3.655045509338379,
+ "step": 2836
+ },
+ {
+ "epoch": 39.40541721275666,
+ "grad_norm": 0.20273560285568237,
+ "learning_rate": 0.0006,
+ "loss": 3.6497647762298584,
+ "step": 2837
+ },
+ {
+ "epoch": 39.419397116644824,
+ "grad_norm": 0.19820313155651093,
+ "learning_rate": 0.0006,
+ "loss": 3.6728386878967285,
+ "step": 2838
+ },
+ {
+ "epoch": 39.43337702053299,
+ "grad_norm": 0.21581435203552246,
+ "learning_rate": 0.0006,
+ "loss": 3.660247325897217,
+ "step": 2839
+ },
+ {
+ "epoch": 39.44735692442114,
+ "grad_norm": 0.20559731125831604,
+ "learning_rate": 0.0006,
+ "loss": 3.6244559288024902,
+ "step": 2840
+ },
+ {
+ "epoch": 39.46133682830931,
+ "grad_norm": 0.22041910886764526,
+ "learning_rate": 0.0006,
+ "loss": 3.6577587127685547,
+ "step": 2841
+ },
+ {
+ "epoch": 39.47531673219746,
+ "grad_norm": 0.1966651976108551,
+ "learning_rate": 0.0006,
+ "loss": 3.673975944519043,
+ "step": 2842
+ },
+ {
+ "epoch": 39.489296636085626,
+ "grad_norm": 0.19127163290977478,
+ "learning_rate": 0.0006,
+ "loss": 3.7022414207458496,
+ "step": 2843
+ },
+ {
+ "epoch": 39.50327653997379,
+ "grad_norm": 0.20260316133499146,
+ "learning_rate": 0.0006,
+ "loss": 3.6155128479003906,
+ "step": 2844
+ },
+ {
+ "epoch": 39.517256443861946,
+ "grad_norm": 0.2302546352148056,
+ "learning_rate": 0.0006,
+ "loss": 3.670212984085083,
+ "step": 2845
+ },
+ {
+ "epoch": 39.53123634775011,
+ "grad_norm": 0.2512998878955841,
+ "learning_rate": 0.0006,
+ "loss": 3.6257572174072266,
+ "step": 2846
+ },
+ {
+ "epoch": 39.54521625163827,
+ "grad_norm": 0.24780063331127167,
+ "learning_rate": 0.0006,
+ "loss": 3.6458964347839355,
+ "step": 2847
+ },
+ {
+ "epoch": 39.55919615552643,
+ "grad_norm": 0.21305061876773834,
+ "learning_rate": 0.0006,
+ "loss": 3.666834831237793,
+ "step": 2848
+ },
+ {
+ "epoch": 39.57317605941459,
+ "grad_norm": 0.20699542760849,
+ "learning_rate": 0.0006,
+ "loss": 3.660571813583374,
+ "step": 2849
+ },
+ {
+ "epoch": 39.58715596330275,
+ "grad_norm": 0.20799173414707184,
+ "learning_rate": 0.0006,
+ "loss": 3.649744987487793,
+ "step": 2850
+ },
+ {
+ "epoch": 39.60113586719091,
+ "grad_norm": 0.20118695497512817,
+ "learning_rate": 0.0006,
+ "loss": 3.663865089416504,
+ "step": 2851
+ },
+ {
+ "epoch": 39.615115771079076,
+ "grad_norm": 0.2019277960062027,
+ "learning_rate": 0.0006,
+ "loss": 3.6600584983825684,
+ "step": 2852
+ },
+ {
+ "epoch": 39.62909567496723,
+ "grad_norm": 0.2093067765235901,
+ "learning_rate": 0.0006,
+ "loss": 3.6926870346069336,
+ "step": 2853
+ },
+ {
+ "epoch": 39.643075578855395,
+ "grad_norm": 0.2280927449464798,
+ "learning_rate": 0.0006,
+ "loss": 3.677157402038574,
+ "step": 2854
+ },
+ {
+ "epoch": 39.65705548274356,
+ "grad_norm": 0.219201922416687,
+ "learning_rate": 0.0006,
+ "loss": 3.6763858795166016,
+ "step": 2855
+ },
+ {
+ "epoch": 39.671035386631715,
+ "grad_norm": 0.2132134735584259,
+ "learning_rate": 0.0006,
+ "loss": 3.6853187084198,
+ "step": 2856
+ },
+ {
+ "epoch": 39.68501529051988,
+ "grad_norm": 0.1979551613330841,
+ "learning_rate": 0.0006,
+ "loss": 3.633850574493408,
+ "step": 2857
+ },
+ {
+ "epoch": 39.69899519440804,
+ "grad_norm": 0.2181098908185959,
+ "learning_rate": 0.0006,
+ "loss": 3.671356201171875,
+ "step": 2858
+ },
+ {
+ "epoch": 39.7129750982962,
+ "grad_norm": 0.21820145845413208,
+ "learning_rate": 0.0006,
+ "loss": 3.640101432800293,
+ "step": 2859
+ },
+ {
+ "epoch": 39.72695500218436,
+ "grad_norm": 0.22734931111335754,
+ "learning_rate": 0.0006,
+ "loss": 3.6326088905334473,
+ "step": 2860
+ },
+ {
+ "epoch": 39.74093490607252,
+ "grad_norm": 0.2407236248254776,
+ "learning_rate": 0.0006,
+ "loss": 3.665416955947876,
+ "step": 2861
+ },
+ {
+ "epoch": 39.75491480996068,
+ "grad_norm": 0.2507246434688568,
+ "learning_rate": 0.0006,
+ "loss": 3.6996266841888428,
+ "step": 2862
+ },
+ {
+ "epoch": 39.768894713848844,
+ "grad_norm": 0.2273668497800827,
+ "learning_rate": 0.0006,
+ "loss": 3.6786417961120605,
+ "step": 2863
+ },
+ {
+ "epoch": 39.782874617737,
+ "grad_norm": 0.20584821701049805,
+ "learning_rate": 0.0006,
+ "loss": 3.6539974212646484,
+ "step": 2864
+ },
+ {
+ "epoch": 39.796854521625164,
+ "grad_norm": 0.2327643632888794,
+ "learning_rate": 0.0006,
+ "loss": 3.681267738342285,
+ "step": 2865
+ },
+ {
+ "epoch": 39.81083442551333,
+ "grad_norm": 0.24243171513080597,
+ "learning_rate": 0.0006,
+ "loss": 3.6814589500427246,
+ "step": 2866
+ },
+ {
+ "epoch": 39.824814329401484,
+ "grad_norm": 0.21462969481945038,
+ "learning_rate": 0.0006,
+ "loss": 3.681321620941162,
+ "step": 2867
+ },
+ {
+ "epoch": 39.83879423328965,
+ "grad_norm": 0.20973211526870728,
+ "learning_rate": 0.0006,
+ "loss": 3.636986017227173,
+ "step": 2868
+ },
+ {
+ "epoch": 39.8527741371778,
+ "grad_norm": 0.20357508957386017,
+ "learning_rate": 0.0006,
+ "loss": 3.6664552688598633,
+ "step": 2869
+ },
+ {
+ "epoch": 39.86675404106597,
+ "grad_norm": 0.20389088988304138,
+ "learning_rate": 0.0006,
+ "loss": 3.6685709953308105,
+ "step": 2870
+ },
+ {
+ "epoch": 39.88073394495413,
+ "grad_norm": 0.21024158596992493,
+ "learning_rate": 0.0006,
+ "loss": 3.650658130645752,
+ "step": 2871
+ },
+ {
+ "epoch": 39.89471384884229,
+ "grad_norm": 0.19477778673171997,
+ "learning_rate": 0.0006,
+ "loss": 3.664834976196289,
+ "step": 2872
+ },
+ {
+ "epoch": 39.90869375273045,
+ "grad_norm": 0.22345365583896637,
+ "learning_rate": 0.0006,
+ "loss": 3.6652634143829346,
+ "step": 2873
+ },
+ {
+ "epoch": 39.92267365661861,
+ "grad_norm": 0.206041157245636,
+ "learning_rate": 0.0006,
+ "loss": 3.6649513244628906,
+ "step": 2874
+ },
+ {
+ "epoch": 39.93665356050677,
+ "grad_norm": 0.18524570763111115,
+ "learning_rate": 0.0006,
+ "loss": 3.665579080581665,
+ "step": 2875
+ },
+ {
+ "epoch": 39.95063346439493,
+ "grad_norm": 0.17730890214443207,
+ "learning_rate": 0.0006,
+ "loss": 3.6372880935668945,
+ "step": 2876
+ },
+ {
+ "epoch": 39.964613368283096,
+ "grad_norm": 0.213678777217865,
+ "learning_rate": 0.0006,
+ "loss": 3.681305408477783,
+ "step": 2877
+ },
+ {
+ "epoch": 39.97859327217125,
+ "grad_norm": 0.2595686614513397,
+ "learning_rate": 0.0006,
+ "loss": 3.6660351753234863,
+ "step": 2878
+ },
+ {
+ "epoch": 39.992573176059416,
+ "grad_norm": 0.22678600251674652,
+ "learning_rate": 0.0006,
+ "loss": 3.681619644165039,
+ "step": 2879
+ },
+ {
+ "epoch": 40.0,
+ "grad_norm": 0.2294030636548996,
+ "learning_rate": 0.0006,
+ "loss": 3.654366970062256,
+ "step": 2880
+ },
+ {
+ "epoch": 40.0,
+ "eval_loss": 3.9810431003570557,
+ "eval_runtime": 43.832,
+ "eval_samples_per_second": 55.713,
+ "eval_steps_per_second": 3.491,
+ "step": 2880
+ },
+ {
+ "epoch": 40.01397990388816,
+ "grad_norm": 0.220590278506279,
+ "learning_rate": 0.0006,
+ "loss": 3.6346259117126465,
+ "step": 2881
+ },
+ {
+ "epoch": 40.02795980777632,
+ "grad_norm": 0.2568257749080658,
+ "learning_rate": 0.0006,
+ "loss": 3.64436674118042,
+ "step": 2882
+ },
+ {
+ "epoch": 40.04193971166448,
+ "grad_norm": 0.2869258224964142,
+ "learning_rate": 0.0006,
+ "loss": 3.613316059112549,
+ "step": 2883
+ },
+ {
+ "epoch": 40.05591961555265,
+ "grad_norm": 0.3005172908306122,
+ "learning_rate": 0.0006,
+ "loss": 3.607339859008789,
+ "step": 2884
+ },
+ {
+ "epoch": 40.0698995194408,
+ "grad_norm": 0.28642305731773376,
+ "learning_rate": 0.0006,
+ "loss": 3.65151047706604,
+ "step": 2885
+ },
+ {
+ "epoch": 40.083879423328966,
+ "grad_norm": 0.24176034331321716,
+ "learning_rate": 0.0006,
+ "loss": 3.633742332458496,
+ "step": 2886
+ },
+ {
+ "epoch": 40.09785932721712,
+ "grad_norm": 0.2139386385679245,
+ "learning_rate": 0.0006,
+ "loss": 3.614245653152466,
+ "step": 2887
+ },
+ {
+ "epoch": 40.111839231105286,
+ "grad_norm": 0.28025752305984497,
+ "learning_rate": 0.0006,
+ "loss": 3.6415746212005615,
+ "step": 2888
+ },
+ {
+ "epoch": 40.12581913499345,
+ "grad_norm": 0.28534311056137085,
+ "learning_rate": 0.0006,
+ "loss": 3.6302027702331543,
+ "step": 2889
+ },
+ {
+ "epoch": 40.139799038881605,
+ "grad_norm": 0.26842808723449707,
+ "learning_rate": 0.0006,
+ "loss": 3.657480239868164,
+ "step": 2890
+ },
+ {
+ "epoch": 40.15377894276977,
+ "grad_norm": 0.25235965847969055,
+ "learning_rate": 0.0006,
+ "loss": 3.6843931674957275,
+ "step": 2891
+ },
+ {
+ "epoch": 40.16775884665793,
+ "grad_norm": 0.22192128002643585,
+ "learning_rate": 0.0006,
+ "loss": 3.6374592781066895,
+ "step": 2892
+ },
+ {
+ "epoch": 40.18173875054609,
+ "grad_norm": 0.21524523198604584,
+ "learning_rate": 0.0006,
+ "loss": 3.6052589416503906,
+ "step": 2893
+ },
+ {
+ "epoch": 40.19571865443425,
+ "grad_norm": 0.21011514961719513,
+ "learning_rate": 0.0006,
+ "loss": 3.62197208404541,
+ "step": 2894
+ },
+ {
+ "epoch": 40.20969855832241,
+ "grad_norm": 0.23187001049518585,
+ "learning_rate": 0.0006,
+ "loss": 3.6505377292633057,
+ "step": 2895
+ },
+ {
+ "epoch": 40.22367846221057,
+ "grad_norm": 0.21962887048721313,
+ "learning_rate": 0.0006,
+ "loss": 3.594991683959961,
+ "step": 2896
+ },
+ {
+ "epoch": 40.237658366098735,
+ "grad_norm": 0.23299361765384674,
+ "learning_rate": 0.0006,
+ "loss": 3.6370339393615723,
+ "step": 2897
+ },
+ {
+ "epoch": 40.25163826998689,
+ "grad_norm": 0.22504881024360657,
+ "learning_rate": 0.0006,
+ "loss": 3.6173815727233887,
+ "step": 2898
+ },
+ {
+ "epoch": 40.265618173875055,
+ "grad_norm": 0.21678344905376434,
+ "learning_rate": 0.0006,
+ "loss": 3.6231422424316406,
+ "step": 2899
+ },
+ {
+ "epoch": 40.27959807776322,
+ "grad_norm": 0.2184615284204483,
+ "learning_rate": 0.0006,
+ "loss": 3.6552987098693848,
+ "step": 2900
+ },
+ {
+ "epoch": 40.293577981651374,
+ "grad_norm": 0.2145485281944275,
+ "learning_rate": 0.0006,
+ "loss": 3.628025531768799,
+ "step": 2901
+ },
+ {
+ "epoch": 40.30755788553954,
+ "grad_norm": 0.21119336783885956,
+ "learning_rate": 0.0006,
+ "loss": 3.6511590480804443,
+ "step": 2902
+ },
+ {
+ "epoch": 40.3215377894277,
+ "grad_norm": 0.2158869504928589,
+ "learning_rate": 0.0006,
+ "loss": 3.6302051544189453,
+ "step": 2903
+ },
+ {
+ "epoch": 40.33551769331586,
+ "grad_norm": 0.22736455500125885,
+ "learning_rate": 0.0006,
+ "loss": 3.6678733825683594,
+ "step": 2904
+ },
+ {
+ "epoch": 40.34949759720402,
+ "grad_norm": 0.22723783552646637,
+ "learning_rate": 0.0006,
+ "loss": 3.632068634033203,
+ "step": 2905
+ },
+ {
+ "epoch": 40.36347750109218,
+ "grad_norm": 0.20606189966201782,
+ "learning_rate": 0.0006,
+ "loss": 3.6534624099731445,
+ "step": 2906
+ },
+ {
+ "epoch": 40.37745740498034,
+ "grad_norm": 0.21033786237239838,
+ "learning_rate": 0.0006,
+ "loss": 3.6194064617156982,
+ "step": 2907
+ },
+ {
+ "epoch": 40.391437308868504,
+ "grad_norm": 0.2175762951374054,
+ "learning_rate": 0.0006,
+ "loss": 3.637385368347168,
+ "step": 2908
+ },
+ {
+ "epoch": 40.40541721275666,
+ "grad_norm": 0.21063381433486938,
+ "learning_rate": 0.0006,
+ "loss": 3.656857967376709,
+ "step": 2909
+ },
+ {
+ "epoch": 40.419397116644824,
+ "grad_norm": 0.19982226192951202,
+ "learning_rate": 0.0006,
+ "loss": 3.655738353729248,
+ "step": 2910
+ },
+ {
+ "epoch": 40.43337702053299,
+ "grad_norm": 0.20608870685100555,
+ "learning_rate": 0.0006,
+ "loss": 3.6521377563476562,
+ "step": 2911
+ },
+ {
+ "epoch": 40.44735692442114,
+ "grad_norm": 0.19817334413528442,
+ "learning_rate": 0.0006,
+ "loss": 3.61527681350708,
+ "step": 2912
+ },
+ {
+ "epoch": 40.46133682830931,
+ "grad_norm": 0.20407769083976746,
+ "learning_rate": 0.0006,
+ "loss": 3.6668765544891357,
+ "step": 2913
+ },
+ {
+ "epoch": 40.47531673219746,
+ "grad_norm": 0.19874799251556396,
+ "learning_rate": 0.0006,
+ "loss": 3.6748533248901367,
+ "step": 2914
+ },
+ {
+ "epoch": 40.489296636085626,
+ "grad_norm": 0.1979510486125946,
+ "learning_rate": 0.0006,
+ "loss": 3.6141977310180664,
+ "step": 2915
+ },
+ {
+ "epoch": 40.50327653997379,
+ "grad_norm": 0.19811518490314484,
+ "learning_rate": 0.0006,
+ "loss": 3.6391215324401855,
+ "step": 2916
+ },
+ {
+ "epoch": 40.517256443861946,
+ "grad_norm": 0.20208898186683655,
+ "learning_rate": 0.0006,
+ "loss": 3.664179801940918,
+ "step": 2917
+ },
+ {
+ "epoch": 40.53123634775011,
+ "grad_norm": 0.22063760459423065,
+ "learning_rate": 0.0006,
+ "loss": 3.645388126373291,
+ "step": 2918
+ },
+ {
+ "epoch": 40.54521625163827,
+ "grad_norm": 0.23420891165733337,
+ "learning_rate": 0.0006,
+ "loss": 3.6424708366394043,
+ "step": 2919
+ },
+ {
+ "epoch": 40.55919615552643,
+ "grad_norm": 0.2263612151145935,
+ "learning_rate": 0.0006,
+ "loss": 3.6649224758148193,
+ "step": 2920
+ },
+ {
+ "epoch": 40.57317605941459,
+ "grad_norm": 0.22745433449745178,
+ "learning_rate": 0.0006,
+ "loss": 3.631586790084839,
+ "step": 2921
+ },
+ {
+ "epoch": 40.58715596330275,
+ "grad_norm": 0.22413238883018494,
+ "learning_rate": 0.0006,
+ "loss": 3.6666674613952637,
+ "step": 2922
+ },
+ {
+ "epoch": 40.60113586719091,
+ "grad_norm": 0.2178265005350113,
+ "learning_rate": 0.0006,
+ "loss": 3.6002111434936523,
+ "step": 2923
+ },
+ {
+ "epoch": 40.615115771079076,
+ "grad_norm": 0.21822521090507507,
+ "learning_rate": 0.0006,
+ "loss": 3.6538329124450684,
+ "step": 2924
+ },
+ {
+ "epoch": 40.62909567496723,
+ "grad_norm": 0.21728558838367462,
+ "learning_rate": 0.0006,
+ "loss": 3.651254653930664,
+ "step": 2925
+ },
+ {
+ "epoch": 40.643075578855395,
+ "grad_norm": 0.22377707064151764,
+ "learning_rate": 0.0006,
+ "loss": 3.6505789756774902,
+ "step": 2926
+ },
+ {
+ "epoch": 40.65705548274356,
+ "grad_norm": 0.2035706788301468,
+ "learning_rate": 0.0006,
+ "loss": 3.6471967697143555,
+ "step": 2927
+ },
+ {
+ "epoch": 40.671035386631715,
+ "grad_norm": 0.2011154741048813,
+ "learning_rate": 0.0006,
+ "loss": 3.6582741737365723,
+ "step": 2928
+ },
+ {
+ "epoch": 40.68501529051988,
+ "grad_norm": 0.23812712728977203,
+ "learning_rate": 0.0006,
+ "loss": 3.6388421058654785,
+ "step": 2929
+ },
+ {
+ "epoch": 40.69899519440804,
+ "grad_norm": 0.2117796689271927,
+ "learning_rate": 0.0006,
+ "loss": 3.688337802886963,
+ "step": 2930
+ },
+ {
+ "epoch": 40.7129750982962,
+ "grad_norm": 0.18440942466259003,
+ "learning_rate": 0.0006,
+ "loss": 3.6409997940063477,
+ "step": 2931
+ },
+ {
+ "epoch": 40.72695500218436,
+ "grad_norm": 0.19005917012691498,
+ "learning_rate": 0.0006,
+ "loss": 3.6760218143463135,
+ "step": 2932
+ },
+ {
+ "epoch": 40.74093490607252,
+ "grad_norm": 0.19982726871967316,
+ "learning_rate": 0.0006,
+ "loss": 3.6375021934509277,
+ "step": 2933
+ },
+ {
+ "epoch": 40.75491480996068,
+ "grad_norm": 0.19240257143974304,
+ "learning_rate": 0.0006,
+ "loss": 3.636807918548584,
+ "step": 2934
+ },
+ {
+ "epoch": 40.768894713848844,
+ "grad_norm": 0.20563434064388275,
+ "learning_rate": 0.0006,
+ "loss": 3.6667532920837402,
+ "step": 2935
+ },
+ {
+ "epoch": 40.782874617737,
+ "grad_norm": 0.26531776785850525,
+ "learning_rate": 0.0006,
+ "loss": 3.6332945823669434,
+ "step": 2936
+ },
+ {
+ "epoch": 40.796854521625164,
+ "grad_norm": 0.2766861021518707,
+ "learning_rate": 0.0006,
+ "loss": 3.6645212173461914,
+ "step": 2937
+ },
+ {
+ "epoch": 40.81083442551333,
+ "grad_norm": 0.235750213265419,
+ "learning_rate": 0.0006,
+ "loss": 3.67067813873291,
+ "step": 2938
+ },
+ {
+ "epoch": 40.824814329401484,
+ "grad_norm": 0.20778773725032806,
+ "learning_rate": 0.0006,
+ "loss": 3.6565768718719482,
+ "step": 2939
+ },
+ {
+ "epoch": 40.83879423328965,
+ "grad_norm": 0.187322199344635,
+ "learning_rate": 0.0006,
+ "loss": 3.620129346847534,
+ "step": 2940
+ },
+ {
+ "epoch": 40.8527741371778,
+ "grad_norm": 0.20576219260692596,
+ "learning_rate": 0.0006,
+ "loss": 3.6700220108032227,
+ "step": 2941
+ },
+ {
+ "epoch": 40.86675404106597,
+ "grad_norm": 0.2197345495223999,
+ "learning_rate": 0.0006,
+ "loss": 3.709311008453369,
+ "step": 2942
+ },
+ {
+ "epoch": 40.88073394495413,
+ "grad_norm": 0.20205345749855042,
+ "learning_rate": 0.0006,
+ "loss": 3.6646361351013184,
+ "step": 2943
+ },
+ {
+ "epoch": 40.89471384884229,
+ "grad_norm": 0.20026250183582306,
+ "learning_rate": 0.0006,
+ "loss": 3.6639604568481445,
+ "step": 2944
+ },
+ {
+ "epoch": 40.90869375273045,
+ "grad_norm": 0.224214106798172,
+ "learning_rate": 0.0006,
+ "loss": 3.6669654846191406,
+ "step": 2945
+ },
+ {
+ "epoch": 40.92267365661861,
+ "grad_norm": 0.2155972272157669,
+ "learning_rate": 0.0006,
+ "loss": 3.6494603157043457,
+ "step": 2946
+ },
+ {
+ "epoch": 40.93665356050677,
+ "grad_norm": 0.23038871586322784,
+ "learning_rate": 0.0006,
+ "loss": 3.6368541717529297,
+ "step": 2947
+ },
+ {
+ "epoch": 40.95063346439493,
+ "grad_norm": 0.2001815289258957,
+ "learning_rate": 0.0006,
+ "loss": 3.711174249649048,
+ "step": 2948
+ },
+ {
+ "epoch": 40.964613368283096,
+ "grad_norm": 0.20428860187530518,
+ "learning_rate": 0.0006,
+ "loss": 3.6342315673828125,
+ "step": 2949
+ },
+ {
+ "epoch": 40.97859327217125,
+ "grad_norm": 0.20724134147167206,
+ "learning_rate": 0.0006,
+ "loss": 3.679375171661377,
+ "step": 2950
+ },
+ {
+ "epoch": 40.992573176059416,
+ "grad_norm": 0.20723849534988403,
+ "learning_rate": 0.0006,
+ "loss": 3.6477675437927246,
+ "step": 2951
+ },
+ {
+ "epoch": 41.0,
+ "grad_norm": 0.23891447484493256,
+ "learning_rate": 0.0006,
+ "loss": 3.632950782775879,
+ "step": 2952
+ },
+ {
+ "epoch": 41.0,
+ "eval_loss": 3.9871256351470947,
+ "eval_runtime": 43.8367,
+ "eval_samples_per_second": 55.707,
+ "eval_steps_per_second": 3.49,
+ "step": 2952
+ },
+ {
+ "epoch": 41.01397990388816,
+ "grad_norm": 0.2258434295654297,
+ "learning_rate": 0.0006,
+ "loss": 3.631239414215088,
+ "step": 2953
+ },
+ {
+ "epoch": 41.02795980777632,
+ "grad_norm": 0.24932795763015747,
+ "learning_rate": 0.0006,
+ "loss": 3.601083517074585,
+ "step": 2954
+ },
+ {
+ "epoch": 41.04193971166448,
+ "grad_norm": 0.2688388228416443,
+ "learning_rate": 0.0006,
+ "loss": 3.655724048614502,
+ "step": 2955
+ },
+ {
+ "epoch": 41.05591961555265,
+ "grad_norm": 0.23880694806575775,
+ "learning_rate": 0.0006,
+ "loss": 3.617628812789917,
+ "step": 2956
+ },
+ {
+ "epoch": 41.0698995194408,
+ "grad_norm": 0.23784616589546204,
+ "learning_rate": 0.0006,
+ "loss": 3.6309127807617188,
+ "step": 2957
+ },
+ {
+ "epoch": 41.083879423328966,
+ "grad_norm": 0.22609511017799377,
+ "learning_rate": 0.0006,
+ "loss": 3.6138553619384766,
+ "step": 2958
+ },
+ {
+ "epoch": 41.09785932721712,
+ "grad_norm": 0.22936329245567322,
+ "learning_rate": 0.0006,
+ "loss": 3.6620094776153564,
+ "step": 2959
+ },
+ {
+ "epoch": 41.111839231105286,
+ "grad_norm": 0.23354190587997437,
+ "learning_rate": 0.0006,
+ "loss": 3.59959077835083,
+ "step": 2960
+ },
+ {
+ "epoch": 41.12581913499345,
+ "grad_norm": 0.2496265172958374,
+ "learning_rate": 0.0006,
+ "loss": 3.588359832763672,
+ "step": 2961
+ },
+ {
+ "epoch": 41.139799038881605,
+ "grad_norm": 0.23618635535240173,
+ "learning_rate": 0.0006,
+ "loss": 3.6341018676757812,
+ "step": 2962
+ },
+ {
+ "epoch": 41.15377894276977,
+ "grad_norm": 0.23724640905857086,
+ "learning_rate": 0.0006,
+ "loss": 3.6170616149902344,
+ "step": 2963
+ },
+ {
+ "epoch": 41.16775884665793,
+ "grad_norm": 0.20944789052009583,
+ "learning_rate": 0.0006,
+ "loss": 3.6158995628356934,
+ "step": 2964
+ },
+ {
+ "epoch": 41.18173875054609,
+ "grad_norm": 0.2089492678642273,
+ "learning_rate": 0.0006,
+ "loss": 3.586538314819336,
+ "step": 2965
+ },
+ {
+ "epoch": 41.19571865443425,
+ "grad_norm": 0.2370915710926056,
+ "learning_rate": 0.0006,
+ "loss": 3.599236011505127,
+ "step": 2966
+ },
+ {
+ "epoch": 41.20969855832241,
+ "grad_norm": 0.25749558210372925,
+ "learning_rate": 0.0006,
+ "loss": 3.631399154663086,
+ "step": 2967
+ },
+ {
+ "epoch": 41.22367846221057,
+ "grad_norm": 0.24754776060581207,
+ "learning_rate": 0.0006,
+ "loss": 3.6503920555114746,
+ "step": 2968
+ },
+ {
+ "epoch": 41.237658366098735,
+ "grad_norm": 0.22060903906822205,
+ "learning_rate": 0.0006,
+ "loss": 3.671673536300659,
+ "step": 2969
+ },
+ {
+ "epoch": 41.25163826998689,
+ "grad_norm": 0.19416594505310059,
+ "learning_rate": 0.0006,
+ "loss": 3.6158413887023926,
+ "step": 2970
+ },
+ {
+ "epoch": 41.265618173875055,
+ "grad_norm": 0.22596411406993866,
+ "learning_rate": 0.0006,
+ "loss": 3.64003849029541,
+ "step": 2971
+ },
+ {
+ "epoch": 41.27959807776322,
+ "grad_norm": 0.26785415410995483,
+ "learning_rate": 0.0006,
+ "loss": 3.642327308654785,
+ "step": 2972
+ },
+ {
+ "epoch": 41.293577981651374,
+ "grad_norm": 0.2988710403442383,
+ "learning_rate": 0.0006,
+ "loss": 3.6018929481506348,
+ "step": 2973
+ },
+ {
+ "epoch": 41.30755788553954,
+ "grad_norm": 0.2428133338689804,
+ "learning_rate": 0.0006,
+ "loss": 3.645270824432373,
+ "step": 2974
+ },
+ {
+ "epoch": 41.3215377894277,
+ "grad_norm": 0.20330320298671722,
+ "learning_rate": 0.0006,
+ "loss": 3.625495433807373,
+ "step": 2975
+ },
+ {
+ "epoch": 41.33551769331586,
+ "grad_norm": 0.2267787605524063,
+ "learning_rate": 0.0006,
+ "loss": 3.6469204425811768,
+ "step": 2976
+ },
+ {
+ "epoch": 41.34949759720402,
+ "grad_norm": 0.20702822506427765,
+ "learning_rate": 0.0006,
+ "loss": 3.644191265106201,
+ "step": 2977
+ },
+ {
+ "epoch": 41.36347750109218,
+ "grad_norm": 0.19693221151828766,
+ "learning_rate": 0.0006,
+ "loss": 3.591794967651367,
+ "step": 2978
+ },
+ {
+ "epoch": 41.37745740498034,
+ "grad_norm": 0.21193185448646545,
+ "learning_rate": 0.0006,
+ "loss": 3.6283936500549316,
+ "step": 2979
+ },
+ {
+ "epoch": 41.391437308868504,
+ "grad_norm": 0.20953163504600525,
+ "learning_rate": 0.0006,
+ "loss": 3.617565155029297,
+ "step": 2980
+ },
+ {
+ "epoch": 41.40541721275666,
+ "grad_norm": 0.21839819848537445,
+ "learning_rate": 0.0006,
+ "loss": 3.621209144592285,
+ "step": 2981
+ },
+ {
+ "epoch": 41.419397116644824,
+ "grad_norm": 0.2152671068906784,
+ "learning_rate": 0.0006,
+ "loss": 3.643197536468506,
+ "step": 2982
+ },
+ {
+ "epoch": 41.43337702053299,
+ "grad_norm": 0.2507486641407013,
+ "learning_rate": 0.0006,
+ "loss": 3.657499313354492,
+ "step": 2983
+ },
+ {
+ "epoch": 41.44735692442114,
+ "grad_norm": 0.24695388972759247,
+ "learning_rate": 0.0006,
+ "loss": 3.62170672416687,
+ "step": 2984
+ },
+ {
+ "epoch": 41.46133682830931,
+ "grad_norm": 0.22652822732925415,
+ "learning_rate": 0.0006,
+ "loss": 3.64322566986084,
+ "step": 2985
+ },
+ {
+ "epoch": 41.47531673219746,
+ "grad_norm": 0.2575881779193878,
+ "learning_rate": 0.0006,
+ "loss": 3.659621477127075,
+ "step": 2986
+ },
+ {
+ "epoch": 41.489296636085626,
+ "grad_norm": 0.24162672460079193,
+ "learning_rate": 0.0006,
+ "loss": 3.6527223587036133,
+ "step": 2987
+ },
+ {
+ "epoch": 41.50327653997379,
+ "grad_norm": 0.20930497348308563,
+ "learning_rate": 0.0006,
+ "loss": 3.6412787437438965,
+ "step": 2988
+ },
+ {
+ "epoch": 41.517256443861946,
+ "grad_norm": 0.20480819046497345,
+ "learning_rate": 0.0006,
+ "loss": 3.614767074584961,
+ "step": 2989
+ },
+ {
+ "epoch": 41.53123634775011,
+ "grad_norm": 0.20015820860862732,
+ "learning_rate": 0.0006,
+ "loss": 3.6512045860290527,
+ "step": 2990
+ },
+ {
+ "epoch": 41.54521625163827,
+ "grad_norm": 0.20220743119716644,
+ "learning_rate": 0.0006,
+ "loss": 3.6732325553894043,
+ "step": 2991
+ },
+ {
+ "epoch": 41.55919615552643,
+ "grad_norm": 0.20505326986312866,
+ "learning_rate": 0.0006,
+ "loss": 3.6374664306640625,
+ "step": 2992
+ },
+ {
+ "epoch": 41.57317605941459,
+ "grad_norm": 0.19423344731330872,
+ "learning_rate": 0.0006,
+ "loss": 3.6564126014709473,
+ "step": 2993
+ },
+ {
+ "epoch": 41.58715596330275,
+ "grad_norm": 0.19284583628177643,
+ "learning_rate": 0.0006,
+ "loss": 3.6460509300231934,
+ "step": 2994
+ },
+ {
+ "epoch": 41.60113586719091,
+ "grad_norm": 0.18488959968090057,
+ "learning_rate": 0.0006,
+ "loss": 3.632859468460083,
+ "step": 2995
+ },
+ {
+ "epoch": 41.615115771079076,
+ "grad_norm": 0.18816296756267548,
+ "learning_rate": 0.0006,
+ "loss": 3.5958361625671387,
+ "step": 2996
+ },
+ {
+ "epoch": 41.62909567496723,
+ "grad_norm": 0.18987809121608734,
+ "learning_rate": 0.0006,
+ "loss": 3.6330695152282715,
+ "step": 2997
+ },
+ {
+ "epoch": 41.643075578855395,
+ "grad_norm": 0.18999919295310974,
+ "learning_rate": 0.0006,
+ "loss": 3.6486730575561523,
+ "step": 2998
+ },
+ {
+ "epoch": 41.65705548274356,
+ "grad_norm": 0.20190183818340302,
+ "learning_rate": 0.0006,
+ "loss": 3.6564230918884277,
+ "step": 2999
+ },
+ {
+ "epoch": 41.671035386631715,
+ "grad_norm": 0.20331363379955292,
+ "learning_rate": 0.0006,
+ "loss": 3.6789698600769043,
+ "step": 3000
+ },
+ {
+ "epoch": 41.68501529051988,
+ "grad_norm": 0.21599505841732025,
+ "learning_rate": 0.0006,
+ "loss": 3.6544511318206787,
+ "step": 3001
+ },
+ {
+ "epoch": 41.69899519440804,
+ "grad_norm": 0.21123184263706207,
+ "learning_rate": 0.0006,
+ "loss": 3.6506948471069336,
+ "step": 3002
+ },
+ {
+ "epoch": 41.7129750982962,
+ "grad_norm": 0.21337002515792847,
+ "learning_rate": 0.0006,
+ "loss": 3.676854372024536,
+ "step": 3003
+ },
+ {
+ "epoch": 41.72695500218436,
+ "grad_norm": 0.22567597031593323,
+ "learning_rate": 0.0006,
+ "loss": 3.6467485427856445,
+ "step": 3004
+ },
+ {
+ "epoch": 41.74093490607252,
+ "grad_norm": 0.22923491895198822,
+ "learning_rate": 0.0006,
+ "loss": 3.663224697113037,
+ "step": 3005
+ },
+ {
+ "epoch": 41.75491480996068,
+ "grad_norm": 0.21511489152908325,
+ "learning_rate": 0.0006,
+ "loss": 3.6290054321289062,
+ "step": 3006
+ },
+ {
+ "epoch": 41.768894713848844,
+ "grad_norm": 0.23855915665626526,
+ "learning_rate": 0.0006,
+ "loss": 3.631225109100342,
+ "step": 3007
+ },
+ {
+ "epoch": 41.782874617737,
+ "grad_norm": 0.22771067917346954,
+ "learning_rate": 0.0006,
+ "loss": 3.652575731277466,
+ "step": 3008
+ },
+ {
+ "epoch": 41.796854521625164,
+ "grad_norm": 0.2006237953901291,
+ "learning_rate": 0.0006,
+ "loss": 3.6883468627929688,
+ "step": 3009
+ },
+ {
+ "epoch": 41.81083442551333,
+ "grad_norm": 0.21182459592819214,
+ "learning_rate": 0.0006,
+ "loss": 3.6443567276000977,
+ "step": 3010
+ },
+ {
+ "epoch": 41.824814329401484,
+ "grad_norm": 0.21083690226078033,
+ "learning_rate": 0.0006,
+ "loss": 3.66660475730896,
+ "step": 3011
+ },
+ {
+ "epoch": 41.83879423328965,
+ "grad_norm": 0.21232296526432037,
+ "learning_rate": 0.0006,
+ "loss": 3.6436524391174316,
+ "step": 3012
+ },
+ {
+ "epoch": 41.8527741371778,
+ "grad_norm": 0.2089361697435379,
+ "learning_rate": 0.0006,
+ "loss": 3.648113250732422,
+ "step": 3013
+ },
+ {
+ "epoch": 41.86675404106597,
+ "grad_norm": 0.21517033874988556,
+ "learning_rate": 0.0006,
+ "loss": 3.6382269859313965,
+ "step": 3014
+ },
+ {
+ "epoch": 41.88073394495413,
+ "grad_norm": 0.1930733323097229,
+ "learning_rate": 0.0006,
+ "loss": 3.639441967010498,
+ "step": 3015
+ },
+ {
+ "epoch": 41.89471384884229,
+ "grad_norm": 0.18282832205295563,
+ "learning_rate": 0.0006,
+ "loss": 3.652860164642334,
+ "step": 3016
+ },
+ {
+ "epoch": 41.90869375273045,
+ "grad_norm": 0.18649716675281525,
+ "learning_rate": 0.0006,
+ "loss": 3.6335558891296387,
+ "step": 3017
+ },
+ {
+ "epoch": 41.92267365661861,
+ "grad_norm": 0.18873754143714905,
+ "learning_rate": 0.0006,
+ "loss": 3.6743149757385254,
+ "step": 3018
+ },
+ {
+ "epoch": 41.93665356050677,
+ "grad_norm": 0.1937907189130783,
+ "learning_rate": 0.0006,
+ "loss": 3.6749300956726074,
+ "step": 3019
+ },
+ {
+ "epoch": 41.95063346439493,
+ "grad_norm": 0.20620854198932648,
+ "learning_rate": 0.0006,
+ "loss": 3.6591262817382812,
+ "step": 3020
+ },
+ {
+ "epoch": 41.964613368283096,
+ "grad_norm": 0.18541009724140167,
+ "learning_rate": 0.0006,
+ "loss": 3.647010326385498,
+ "step": 3021
+ },
+ {
+ "epoch": 41.97859327217125,
+ "grad_norm": 0.19224928319454193,
+ "learning_rate": 0.0006,
+ "loss": 3.629920482635498,
+ "step": 3022
+ },
+ {
+ "epoch": 41.992573176059416,
+ "grad_norm": 0.21286419034004211,
+ "learning_rate": 0.0006,
+ "loss": 3.6516964435577393,
+ "step": 3023
+ },
+ {
+ "epoch": 42.0,
+ "grad_norm": 0.24787360429763794,
+ "learning_rate": 0.0006,
+ "loss": 3.6378865242004395,
+ "step": 3024
+ },
+ {
+ "epoch": 42.0,
+ "eval_loss": 3.9910318851470947,
+ "eval_runtime": 43.7914,
+ "eval_samples_per_second": 55.764,
+ "eval_steps_per_second": 3.494,
+ "step": 3024
+ },
+ {
+ "epoch": 42.01397990388816,
+ "grad_norm": 0.21036255359649658,
+ "learning_rate": 0.0006,
+ "loss": 3.6604344844818115,
+ "step": 3025
+ },
+ {
+ "epoch": 42.02795980777632,
+ "grad_norm": 0.22240597009658813,
+ "learning_rate": 0.0006,
+ "loss": 3.6160645484924316,
+ "step": 3026
+ },
+ {
+ "epoch": 42.04193971166448,
+ "grad_norm": 0.2487850785255432,
+ "learning_rate": 0.0006,
+ "loss": 3.6293773651123047,
+ "step": 3027
+ },
+ {
+ "epoch": 42.05591961555265,
+ "grad_norm": 0.27058133482933044,
+ "learning_rate": 0.0006,
+ "loss": 3.5827436447143555,
+ "step": 3028
+ },
+ {
+ "epoch": 42.0698995194408,
+ "grad_norm": 0.25001782178878784,
+ "learning_rate": 0.0006,
+ "loss": 3.5833029747009277,
+ "step": 3029
+ },
+ {
+ "epoch": 42.083879423328966,
+ "grad_norm": 0.23811939358711243,
+ "learning_rate": 0.0006,
+ "loss": 3.605585813522339,
+ "step": 3030
+ },
+ {
+ "epoch": 42.09785932721712,
+ "grad_norm": 0.23279601335525513,
+ "learning_rate": 0.0006,
+ "loss": 3.607205867767334,
+ "step": 3031
+ },
+ {
+ "epoch": 42.111839231105286,
+ "grad_norm": 0.24410508573055267,
+ "learning_rate": 0.0006,
+ "loss": 3.621175765991211,
+ "step": 3032
+ },
+ {
+ "epoch": 42.12581913499345,
+ "grad_norm": 0.24782028794288635,
+ "learning_rate": 0.0006,
+ "loss": 3.6236867904663086,
+ "step": 3033
+ },
+ {
+ "epoch": 42.139799038881605,
+ "grad_norm": 0.2301972657442093,
+ "learning_rate": 0.0006,
+ "loss": 3.603853464126587,
+ "step": 3034
+ },
+ {
+ "epoch": 42.15377894276977,
+ "grad_norm": 0.21988637745380402,
+ "learning_rate": 0.0006,
+ "loss": 3.600142002105713,
+ "step": 3035
+ },
+ {
+ "epoch": 42.16775884665793,
+ "grad_norm": 0.22623786330223083,
+ "learning_rate": 0.0006,
+ "loss": 3.61971116065979,
+ "step": 3036
+ },
+ {
+ "epoch": 42.18173875054609,
+ "grad_norm": 0.21844688057899475,
+ "learning_rate": 0.0006,
+ "loss": 3.61320161819458,
+ "step": 3037
+ },
+ {
+ "epoch": 42.19571865443425,
+ "grad_norm": 0.20444536209106445,
+ "learning_rate": 0.0006,
+ "loss": 3.6179633140563965,
+ "step": 3038
+ },
+ {
+ "epoch": 42.20969855832241,
+ "grad_norm": 0.22862036526203156,
+ "learning_rate": 0.0006,
+ "loss": 3.605433940887451,
+ "step": 3039
+ },
+ {
+ "epoch": 42.22367846221057,
+ "grad_norm": 0.2906605005264282,
+ "learning_rate": 0.0006,
+ "loss": 3.6279449462890625,
+ "step": 3040
+ },
+ {
+ "epoch": 42.237658366098735,
+ "grad_norm": 0.29074418544769287,
+ "learning_rate": 0.0006,
+ "loss": 3.5959763526916504,
+ "step": 3041
+ },
+ {
+ "epoch": 42.25163826998689,
+ "grad_norm": 0.1994444876909256,
+ "learning_rate": 0.0006,
+ "loss": 3.5858588218688965,
+ "step": 3042
+ },
+ {
+ "epoch": 42.265618173875055,
+ "grad_norm": 0.20793452858924866,
+ "learning_rate": 0.0006,
+ "loss": 3.604630470275879,
+ "step": 3043
+ },
+ {
+ "epoch": 42.27959807776322,
+ "grad_norm": 0.2119535505771637,
+ "learning_rate": 0.0006,
+ "loss": 3.6287126541137695,
+ "step": 3044
+ },
+ {
+ "epoch": 42.293577981651374,
+ "grad_norm": 0.21092535555362701,
+ "learning_rate": 0.0006,
+ "loss": 3.646294593811035,
+ "step": 3045
+ },
+ {
+ "epoch": 42.30755788553954,
+ "grad_norm": 0.21474479138851166,
+ "learning_rate": 0.0006,
+ "loss": 3.6364355087280273,
+ "step": 3046
+ },
+ {
+ "epoch": 42.3215377894277,
+ "grad_norm": 0.21100781857967377,
+ "learning_rate": 0.0006,
+ "loss": 3.622528553009033,
+ "step": 3047
+ },
+ {
+ "epoch": 42.33551769331586,
+ "grad_norm": 0.20739853382110596,
+ "learning_rate": 0.0006,
+ "loss": 3.6261959075927734,
+ "step": 3048
+ },
+ {
+ "epoch": 42.34949759720402,
+ "grad_norm": 0.22264131903648376,
+ "learning_rate": 0.0006,
+ "loss": 3.6195173263549805,
+ "step": 3049
+ },
+ {
+ "epoch": 42.36347750109218,
+ "grad_norm": 0.23696285486221313,
+ "learning_rate": 0.0006,
+ "loss": 3.631103515625,
+ "step": 3050
+ },
+ {
+ "epoch": 42.37745740498034,
+ "grad_norm": 0.2124902606010437,
+ "learning_rate": 0.0006,
+ "loss": 3.6490437984466553,
+ "step": 3051
+ },
+ {
+ "epoch": 42.391437308868504,
+ "grad_norm": 0.18831083178520203,
+ "learning_rate": 0.0006,
+ "loss": 3.628459930419922,
+ "step": 3052
+ },
+ {
+ "epoch": 42.40541721275666,
+ "grad_norm": 0.20390060544013977,
+ "learning_rate": 0.0006,
+ "loss": 3.6348538398742676,
+ "step": 3053
+ },
+ {
+ "epoch": 42.419397116644824,
+ "grad_norm": 0.2205851823091507,
+ "learning_rate": 0.0006,
+ "loss": 3.6286797523498535,
+ "step": 3054
+ },
+ {
+ "epoch": 42.43337702053299,
+ "grad_norm": 0.21518434584140778,
+ "learning_rate": 0.0006,
+ "loss": 3.5918965339660645,
+ "step": 3055
+ },
+ {
+ "epoch": 42.44735692442114,
+ "grad_norm": 0.2342296987771988,
+ "learning_rate": 0.0006,
+ "loss": 3.6364407539367676,
+ "step": 3056
+ },
+ {
+ "epoch": 42.46133682830931,
+ "grad_norm": 0.2304094135761261,
+ "learning_rate": 0.0006,
+ "loss": 3.6561477184295654,
+ "step": 3057
+ },
+ {
+ "epoch": 42.47531673219746,
+ "grad_norm": 0.20882441103458405,
+ "learning_rate": 0.0006,
+ "loss": 3.611250638961792,
+ "step": 3058
+ },
+ {
+ "epoch": 42.489296636085626,
+ "grad_norm": 0.24346643686294556,
+ "learning_rate": 0.0006,
+ "loss": 3.580082416534424,
+ "step": 3059
+ },
+ {
+ "epoch": 42.50327653997379,
+ "grad_norm": 0.260711133480072,
+ "learning_rate": 0.0006,
+ "loss": 3.6179792881011963,
+ "step": 3060
+ },
+ {
+ "epoch": 42.517256443861946,
+ "grad_norm": 0.21223759651184082,
+ "learning_rate": 0.0006,
+ "loss": 3.6153154373168945,
+ "step": 3061
+ },
+ {
+ "epoch": 42.53123634775011,
+ "grad_norm": 0.21429137885570526,
+ "learning_rate": 0.0006,
+ "loss": 3.6003379821777344,
+ "step": 3062
+ },
+ {
+ "epoch": 42.54521625163827,
+ "grad_norm": 0.23659434914588928,
+ "learning_rate": 0.0006,
+ "loss": 3.6540589332580566,
+ "step": 3063
+ },
+ {
+ "epoch": 42.55919615552643,
+ "grad_norm": 0.280344158411026,
+ "learning_rate": 0.0006,
+ "loss": 3.6406192779541016,
+ "step": 3064
+ },
+ {
+ "epoch": 42.57317605941459,
+ "grad_norm": 0.2903953194618225,
+ "learning_rate": 0.0006,
+ "loss": 3.643479824066162,
+ "step": 3065
+ },
+ {
+ "epoch": 42.58715596330275,
+ "grad_norm": 0.24958311021327972,
+ "learning_rate": 0.0006,
+ "loss": 3.6320221424102783,
+ "step": 3066
+ },
+ {
+ "epoch": 42.60113586719091,
+ "grad_norm": 0.22525225579738617,
+ "learning_rate": 0.0006,
+ "loss": 3.641676425933838,
+ "step": 3067
+ },
+ {
+ "epoch": 42.615115771079076,
+ "grad_norm": 0.23025161027908325,
+ "learning_rate": 0.0006,
+ "loss": 3.6465210914611816,
+ "step": 3068
+ },
+ {
+ "epoch": 42.62909567496723,
+ "grad_norm": 0.21947328746318817,
+ "learning_rate": 0.0006,
+ "loss": 3.667877435684204,
+ "step": 3069
+ },
+ {
+ "epoch": 42.643075578855395,
+ "grad_norm": 0.22809366881847382,
+ "learning_rate": 0.0006,
+ "loss": 3.663166046142578,
+ "step": 3070
+ },
+ {
+ "epoch": 42.65705548274356,
+ "grad_norm": 0.21938708424568176,
+ "learning_rate": 0.0006,
+ "loss": 3.619001865386963,
+ "step": 3071
+ },
+ {
+ "epoch": 42.671035386631715,
+ "grad_norm": 0.231620192527771,
+ "learning_rate": 0.0006,
+ "loss": 3.652332305908203,
+ "step": 3072
+ },
+ {
+ "epoch": 42.68501529051988,
+ "grad_norm": 0.23683936893939972,
+ "learning_rate": 0.0006,
+ "loss": 3.6633410453796387,
+ "step": 3073
+ },
+ {
+ "epoch": 42.69899519440804,
+ "grad_norm": 0.23752044141292572,
+ "learning_rate": 0.0006,
+ "loss": 3.646064281463623,
+ "step": 3074
+ },
+ {
+ "epoch": 42.7129750982962,
+ "grad_norm": 0.23041971027851105,
+ "learning_rate": 0.0006,
+ "loss": 3.6431851387023926,
+ "step": 3075
+ },
+ {
+ "epoch": 42.72695500218436,
+ "grad_norm": 0.220438614487648,
+ "learning_rate": 0.0006,
+ "loss": 3.6499950885772705,
+ "step": 3076
+ },
+ {
+ "epoch": 42.74093490607252,
+ "grad_norm": 0.24297107756137848,
+ "learning_rate": 0.0006,
+ "loss": 3.6655125617980957,
+ "step": 3077
+ },
+ {
+ "epoch": 42.75491480996068,
+ "grad_norm": 0.21835893392562866,
+ "learning_rate": 0.0006,
+ "loss": 3.61672043800354,
+ "step": 3078
+ },
+ {
+ "epoch": 42.768894713848844,
+ "grad_norm": 0.22490793466567993,
+ "learning_rate": 0.0006,
+ "loss": 3.652825355529785,
+ "step": 3079
+ },
+ {
+ "epoch": 42.782874617737,
+ "grad_norm": 0.2246086746454239,
+ "learning_rate": 0.0006,
+ "loss": 3.6290056705474854,
+ "step": 3080
+ },
+ {
+ "epoch": 42.796854521625164,
+ "grad_norm": 0.21527042984962463,
+ "learning_rate": 0.0006,
+ "loss": 3.6587281227111816,
+ "step": 3081
+ },
+ {
+ "epoch": 42.81083442551333,
+ "grad_norm": 0.19586899876594543,
+ "learning_rate": 0.0006,
+ "loss": 3.639626979827881,
+ "step": 3082
+ },
+ {
+ "epoch": 42.824814329401484,
+ "grad_norm": 0.20881155133247375,
+ "learning_rate": 0.0006,
+ "loss": 3.6305861473083496,
+ "step": 3083
+ },
+ {
+ "epoch": 42.83879423328965,
+ "grad_norm": 0.20094981789588928,
+ "learning_rate": 0.0006,
+ "loss": 3.609614849090576,
+ "step": 3084
+ },
+ {
+ "epoch": 42.8527741371778,
+ "grad_norm": 0.21786150336265564,
+ "learning_rate": 0.0006,
+ "loss": 3.6423556804656982,
+ "step": 3085
+ },
+ {
+ "epoch": 42.86675404106597,
+ "grad_norm": 0.24493595957756042,
+ "learning_rate": 0.0006,
+ "loss": 3.631321668624878,
+ "step": 3086
+ },
+ {
+ "epoch": 42.88073394495413,
+ "grad_norm": 0.2437327355146408,
+ "learning_rate": 0.0006,
+ "loss": 3.6624178886413574,
+ "step": 3087
+ },
+ {
+ "epoch": 42.89471384884229,
+ "grad_norm": 0.21020543575286865,
+ "learning_rate": 0.0006,
+ "loss": 3.6567513942718506,
+ "step": 3088
+ },
+ {
+ "epoch": 42.90869375273045,
+ "grad_norm": 0.18977083265781403,
+ "learning_rate": 0.0006,
+ "loss": 3.6268601417541504,
+ "step": 3089
+ },
+ {
+ "epoch": 42.92267365661861,
+ "grad_norm": 0.2211192399263382,
+ "learning_rate": 0.0006,
+ "loss": 3.6690402030944824,
+ "step": 3090
+ },
+ {
+ "epoch": 42.93665356050677,
+ "grad_norm": 0.2695990204811096,
+ "learning_rate": 0.0006,
+ "loss": 3.667701244354248,
+ "step": 3091
+ },
+ {
+ "epoch": 42.95063346439493,
+ "grad_norm": 0.25910887122154236,
+ "learning_rate": 0.0006,
+ "loss": 3.627504587173462,
+ "step": 3092
+ },
+ {
+ "epoch": 42.964613368283096,
+ "grad_norm": 0.2466248720884323,
+ "learning_rate": 0.0006,
+ "loss": 3.6462182998657227,
+ "step": 3093
+ },
+ {
+ "epoch": 42.97859327217125,
+ "grad_norm": 0.22997038066387177,
+ "learning_rate": 0.0006,
+ "loss": 3.647430896759033,
+ "step": 3094
+ },
+ {
+ "epoch": 42.992573176059416,
+ "grad_norm": 0.1989113837480545,
+ "learning_rate": 0.0006,
+ "loss": 3.6502084732055664,
+ "step": 3095
+ },
+ {
+ "epoch": 43.0,
+ "grad_norm": 0.22976496815681458,
+ "learning_rate": 0.0006,
+ "loss": 3.6963884830474854,
+ "step": 3096
+ },
+ {
+ "epoch": 43.0,
+ "eval_loss": 3.9656779766082764,
+ "eval_runtime": 43.9281,
+ "eval_samples_per_second": 55.591,
+ "eval_steps_per_second": 3.483,
+ "step": 3096
+ },
+ {
+ "epoch": 43.01397990388816,
+ "grad_norm": 0.2862325608730316,
+ "learning_rate": 0.0006,
+ "loss": 3.581247568130493,
+ "step": 3097
+ },
+ {
+ "epoch": 43.02795980777632,
+ "grad_norm": 0.3867015540599823,
+ "learning_rate": 0.0006,
+ "loss": 3.611076593399048,
+ "step": 3098
+ },
+ {
+ "epoch": 43.04193971166448,
+ "grad_norm": 0.4139448404312134,
+ "learning_rate": 0.0006,
+ "loss": 3.625164031982422,
+ "step": 3099
+ },
+ {
+ "epoch": 43.05591961555265,
+ "grad_norm": 0.292407363653183,
+ "learning_rate": 0.0006,
+ "loss": 3.615546703338623,
+ "step": 3100
+ },
+ {
+ "epoch": 43.0698995194408,
+ "grad_norm": 0.24272124469280243,
+ "learning_rate": 0.0006,
+ "loss": 3.5965943336486816,
+ "step": 3101
+ },
+ {
+ "epoch": 43.083879423328966,
+ "grad_norm": 0.2761254608631134,
+ "learning_rate": 0.0006,
+ "loss": 3.605706214904785,
+ "step": 3102
+ },
+ {
+ "epoch": 43.09785932721712,
+ "grad_norm": 0.25232183933258057,
+ "learning_rate": 0.0006,
+ "loss": 3.6252012252807617,
+ "step": 3103
+ },
+ {
+ "epoch": 43.111839231105286,
+ "grad_norm": 0.248970165848732,
+ "learning_rate": 0.0006,
+ "loss": 3.6028337478637695,
+ "step": 3104
+ },
+ {
+ "epoch": 43.12581913499345,
+ "grad_norm": 0.22088921070098877,
+ "learning_rate": 0.0006,
+ "loss": 3.591614007949829,
+ "step": 3105
+ },
+ {
+ "epoch": 43.139799038881605,
+ "grad_norm": 0.21528655290603638,
+ "learning_rate": 0.0006,
+ "loss": 3.6237306594848633,
+ "step": 3106
+ },
+ {
+ "epoch": 43.15377894276977,
+ "grad_norm": 0.22799135744571686,
+ "learning_rate": 0.0006,
+ "loss": 3.5968847274780273,
+ "step": 3107
+ },
+ {
+ "epoch": 43.16775884665793,
+ "grad_norm": 0.23102127015590668,
+ "learning_rate": 0.0006,
+ "loss": 3.6046414375305176,
+ "step": 3108
+ },
+ {
+ "epoch": 43.18173875054609,
+ "grad_norm": 0.22876501083374023,
+ "learning_rate": 0.0006,
+ "loss": 3.635608196258545,
+ "step": 3109
+ },
+ {
+ "epoch": 43.19571865443425,
+ "grad_norm": 0.24920420348644257,
+ "learning_rate": 0.0006,
+ "loss": 3.628662109375,
+ "step": 3110
+ },
+ {
+ "epoch": 43.20969855832241,
+ "grad_norm": 0.2527749538421631,
+ "learning_rate": 0.0006,
+ "loss": 3.6109046936035156,
+ "step": 3111
+ },
+ {
+ "epoch": 43.22367846221057,
+ "grad_norm": 0.22529229521751404,
+ "learning_rate": 0.0006,
+ "loss": 3.6536030769348145,
+ "step": 3112
+ },
+ {
+ "epoch": 43.237658366098735,
+ "grad_norm": 0.20031821727752686,
+ "learning_rate": 0.0006,
+ "loss": 3.6328792572021484,
+ "step": 3113
+ },
+ {
+ "epoch": 43.25163826998689,
+ "grad_norm": 0.21075189113616943,
+ "learning_rate": 0.0006,
+ "loss": 3.6200530529022217,
+ "step": 3114
+ },
+ {
+ "epoch": 43.265618173875055,
+ "grad_norm": 0.21164856851100922,
+ "learning_rate": 0.0006,
+ "loss": 3.6276001930236816,
+ "step": 3115
+ },
+ {
+ "epoch": 43.27959807776322,
+ "grad_norm": 0.19306758046150208,
+ "learning_rate": 0.0006,
+ "loss": 3.608675956726074,
+ "step": 3116
+ },
+ {
+ "epoch": 43.293577981651374,
+ "grad_norm": 0.20288796722888947,
+ "learning_rate": 0.0006,
+ "loss": 3.6057004928588867,
+ "step": 3117
+ },
+ {
+ "epoch": 43.30755788553954,
+ "grad_norm": 0.1901484876871109,
+ "learning_rate": 0.0006,
+ "loss": 3.6191725730895996,
+ "step": 3118
+ },
+ {
+ "epoch": 43.3215377894277,
+ "grad_norm": 0.19438181817531586,
+ "learning_rate": 0.0006,
+ "loss": 3.5814337730407715,
+ "step": 3119
+ },
+ {
+ "epoch": 43.33551769331586,
+ "grad_norm": 0.19924484193325043,
+ "learning_rate": 0.0006,
+ "loss": 3.6168713569641113,
+ "step": 3120
+ },
+ {
+ "epoch": 43.34949759720402,
+ "grad_norm": 0.20757409930229187,
+ "learning_rate": 0.0006,
+ "loss": 3.6281509399414062,
+ "step": 3121
+ },
+ {
+ "epoch": 43.36347750109218,
+ "grad_norm": 0.22500184178352356,
+ "learning_rate": 0.0006,
+ "loss": 3.635101795196533,
+ "step": 3122
+ },
+ {
+ "epoch": 43.37745740498034,
+ "grad_norm": 0.22061555087566376,
+ "learning_rate": 0.0006,
+ "loss": 3.630622386932373,
+ "step": 3123
+ },
+ {
+ "epoch": 43.391437308868504,
+ "grad_norm": 0.2094152420759201,
+ "learning_rate": 0.0006,
+ "loss": 3.581803798675537,
+ "step": 3124
+ },
+ {
+ "epoch": 43.40541721275666,
+ "grad_norm": 0.19607678055763245,
+ "learning_rate": 0.0006,
+ "loss": 3.6149864196777344,
+ "step": 3125
+ },
+ {
+ "epoch": 43.419397116644824,
+ "grad_norm": 0.18985028564929962,
+ "learning_rate": 0.0006,
+ "loss": 3.6338040828704834,
+ "step": 3126
+ },
+ {
+ "epoch": 43.43337702053299,
+ "grad_norm": 0.20490778982639313,
+ "learning_rate": 0.0006,
+ "loss": 3.63275146484375,
+ "step": 3127
+ },
+ {
+ "epoch": 43.44735692442114,
+ "grad_norm": 0.24385297298431396,
+ "learning_rate": 0.0006,
+ "loss": 3.6412134170532227,
+ "step": 3128
+ },
+ {
+ "epoch": 43.46133682830931,
+ "grad_norm": 0.243601992726326,
+ "learning_rate": 0.0006,
+ "loss": 3.594238758087158,
+ "step": 3129
+ },
+ {
+ "epoch": 43.47531673219746,
+ "grad_norm": 0.21314913034439087,
+ "learning_rate": 0.0006,
+ "loss": 3.5962629318237305,
+ "step": 3130
+ },
+ {
+ "epoch": 43.489296636085626,
+ "grad_norm": 0.20499329268932343,
+ "learning_rate": 0.0006,
+ "loss": 3.61600923538208,
+ "step": 3131
+ },
+ {
+ "epoch": 43.50327653997379,
+ "grad_norm": 0.20199540257453918,
+ "learning_rate": 0.0006,
+ "loss": 3.638469934463501,
+ "step": 3132
+ },
+ {
+ "epoch": 43.517256443861946,
+ "grad_norm": 0.19932983815670013,
+ "learning_rate": 0.0006,
+ "loss": 3.619145393371582,
+ "step": 3133
+ },
+ {
+ "epoch": 43.53123634775011,
+ "grad_norm": 0.20401954650878906,
+ "learning_rate": 0.0006,
+ "loss": 3.643700122833252,
+ "step": 3134
+ },
+ {
+ "epoch": 43.54521625163827,
+ "grad_norm": 0.20784904062747955,
+ "learning_rate": 0.0006,
+ "loss": 3.619272232055664,
+ "step": 3135
+ },
+ {
+ "epoch": 43.55919615552643,
+ "grad_norm": 0.21003122627735138,
+ "learning_rate": 0.0006,
+ "loss": 3.629542827606201,
+ "step": 3136
+ },
+ {
+ "epoch": 43.57317605941459,
+ "grad_norm": 0.2220298945903778,
+ "learning_rate": 0.0006,
+ "loss": 3.655543804168701,
+ "step": 3137
+ },
+ {
+ "epoch": 43.58715596330275,
+ "grad_norm": 0.21159163117408752,
+ "learning_rate": 0.0006,
+ "loss": 3.6092495918273926,
+ "step": 3138
+ },
+ {
+ "epoch": 43.60113586719091,
+ "grad_norm": 0.19462746381759644,
+ "learning_rate": 0.0006,
+ "loss": 3.6447129249572754,
+ "step": 3139
+ },
+ {
+ "epoch": 43.615115771079076,
+ "grad_norm": 0.20523829758167267,
+ "learning_rate": 0.0006,
+ "loss": 3.6292669773101807,
+ "step": 3140
+ },
+ {
+ "epoch": 43.62909567496723,
+ "grad_norm": 0.2172321230173111,
+ "learning_rate": 0.0006,
+ "loss": 3.6144580841064453,
+ "step": 3141
+ },
+ {
+ "epoch": 43.643075578855395,
+ "grad_norm": 0.21751564741134644,
+ "learning_rate": 0.0006,
+ "loss": 3.6381068229675293,
+ "step": 3142
+ },
+ {
+ "epoch": 43.65705548274356,
+ "grad_norm": 0.1914236694574356,
+ "learning_rate": 0.0006,
+ "loss": 3.6392078399658203,
+ "step": 3143
+ },
+ {
+ "epoch": 43.671035386631715,
+ "grad_norm": 0.19792547821998596,
+ "learning_rate": 0.0006,
+ "loss": 3.6394457817077637,
+ "step": 3144
+ },
+ {
+ "epoch": 43.68501529051988,
+ "grad_norm": 0.2106214165687561,
+ "learning_rate": 0.0006,
+ "loss": 3.626147747039795,
+ "step": 3145
+ },
+ {
+ "epoch": 43.69899519440804,
+ "grad_norm": 0.21802955865859985,
+ "learning_rate": 0.0006,
+ "loss": 3.63372802734375,
+ "step": 3146
+ },
+ {
+ "epoch": 43.7129750982962,
+ "grad_norm": 0.21498727798461914,
+ "learning_rate": 0.0006,
+ "loss": 3.6193063259124756,
+ "step": 3147
+ },
+ {
+ "epoch": 43.72695500218436,
+ "grad_norm": 0.2176690250635147,
+ "learning_rate": 0.0006,
+ "loss": 3.6431519985198975,
+ "step": 3148
+ },
+ {
+ "epoch": 43.74093490607252,
+ "grad_norm": 0.26883506774902344,
+ "learning_rate": 0.0006,
+ "loss": 3.6216721534729004,
+ "step": 3149
+ },
+ {
+ "epoch": 43.75491480996068,
+ "grad_norm": 0.23485299944877625,
+ "learning_rate": 0.0006,
+ "loss": 3.6361191272735596,
+ "step": 3150
+ },
+ {
+ "epoch": 43.768894713848844,
+ "grad_norm": 0.20496341586112976,
+ "learning_rate": 0.0006,
+ "loss": 3.6258792877197266,
+ "step": 3151
+ },
+ {
+ "epoch": 43.782874617737,
+ "grad_norm": 0.21792510151863098,
+ "learning_rate": 0.0006,
+ "loss": 3.6522839069366455,
+ "step": 3152
+ },
+ {
+ "epoch": 43.796854521625164,
+ "grad_norm": 0.2589452564716339,
+ "learning_rate": 0.0006,
+ "loss": 3.651235580444336,
+ "step": 3153
+ },
+ {
+ "epoch": 43.81083442551333,
+ "grad_norm": 0.24883611500263214,
+ "learning_rate": 0.0006,
+ "loss": 3.6382546424865723,
+ "step": 3154
+ },
+ {
+ "epoch": 43.824814329401484,
+ "grad_norm": 0.22466720640659332,
+ "learning_rate": 0.0006,
+ "loss": 3.6232261657714844,
+ "step": 3155
+ },
+ {
+ "epoch": 43.83879423328965,
+ "grad_norm": 0.19477292895317078,
+ "learning_rate": 0.0006,
+ "loss": 3.6350135803222656,
+ "step": 3156
+ },
+ {
+ "epoch": 43.8527741371778,
+ "grad_norm": 0.20302540063858032,
+ "learning_rate": 0.0006,
+ "loss": 3.638143539428711,
+ "step": 3157
+ },
+ {
+ "epoch": 43.86675404106597,
+ "grad_norm": 0.2112276554107666,
+ "learning_rate": 0.0006,
+ "loss": 3.6415610313415527,
+ "step": 3158
+ },
+ {
+ "epoch": 43.88073394495413,
+ "grad_norm": 0.20544779300689697,
+ "learning_rate": 0.0006,
+ "loss": 3.6437134742736816,
+ "step": 3159
+ },
+ {
+ "epoch": 43.89471384884229,
+ "grad_norm": 0.2320292890071869,
+ "learning_rate": 0.0006,
+ "loss": 3.6178359985351562,
+ "step": 3160
+ },
+ {
+ "epoch": 43.90869375273045,
+ "grad_norm": 0.25862693786621094,
+ "learning_rate": 0.0006,
+ "loss": 3.618229389190674,
+ "step": 3161
+ },
+ {
+ "epoch": 43.92267365661861,
+ "grad_norm": 0.2741934061050415,
+ "learning_rate": 0.0006,
+ "loss": 3.6046690940856934,
+ "step": 3162
+ },
+ {
+ "epoch": 43.93665356050677,
+ "grad_norm": 0.24312593042850494,
+ "learning_rate": 0.0006,
+ "loss": 3.5835556983947754,
+ "step": 3163
+ },
+ {
+ "epoch": 43.95063346439493,
+ "grad_norm": 0.22174517810344696,
+ "learning_rate": 0.0006,
+ "loss": 3.6505162715911865,
+ "step": 3164
+ },
+ {
+ "epoch": 43.964613368283096,
+ "grad_norm": 0.22016975283622742,
+ "learning_rate": 0.0006,
+ "loss": 3.6385562419891357,
+ "step": 3165
+ },
+ {
+ "epoch": 43.97859327217125,
+ "grad_norm": 0.23034313321113586,
+ "learning_rate": 0.0006,
+ "loss": 3.6345865726470947,
+ "step": 3166
+ },
+ {
+ "epoch": 43.992573176059416,
+ "grad_norm": 0.21236231923103333,
+ "learning_rate": 0.0006,
+ "loss": 3.6337084770202637,
+ "step": 3167
+ },
+ {
+ "epoch": 44.0,
+ "grad_norm": 0.2344549298286438,
+ "learning_rate": 0.0006,
+ "loss": 3.677978515625,
+ "step": 3168
+ },
+ {
+ "epoch": 44.0,
+ "eval_loss": 3.9817888736724854,
+ "eval_runtime": 44.4396,
+ "eval_samples_per_second": 54.951,
+ "eval_steps_per_second": 3.443,
+ "step": 3168
+ },
+ {
+ "epoch": 44.01397990388816,
+ "grad_norm": 0.19790801405906677,
+ "learning_rate": 0.0006,
+ "loss": 3.590817451477051,
+ "step": 3169
+ },
+ {
+ "epoch": 44.02795980777632,
+ "grad_norm": 0.22922387719154358,
+ "learning_rate": 0.0006,
+ "loss": 3.643888473510742,
+ "step": 3170
+ },
+ {
+ "epoch": 44.04193971166448,
+ "grad_norm": 0.24750149250030518,
+ "learning_rate": 0.0006,
+ "loss": 3.596278667449951,
+ "step": 3171
+ },
+ {
+ "epoch": 44.05591961555265,
+ "grad_norm": 0.2511967420578003,
+ "learning_rate": 0.0006,
+ "loss": 3.6138253211975098,
+ "step": 3172
+ },
+ {
+ "epoch": 44.0698995194408,
+ "grad_norm": 0.2530326843261719,
+ "learning_rate": 0.0006,
+ "loss": 3.5710060596466064,
+ "step": 3173
+ },
+ {
+ "epoch": 44.083879423328966,
+ "grad_norm": 0.2629041373729706,
+ "learning_rate": 0.0006,
+ "loss": 3.61676025390625,
+ "step": 3174
+ },
+ {
+ "epoch": 44.09785932721712,
+ "grad_norm": 0.27373939752578735,
+ "learning_rate": 0.0006,
+ "loss": 3.613091230392456,
+ "step": 3175
+ },
+ {
+ "epoch": 44.111839231105286,
+ "grad_norm": 0.24354346096515656,
+ "learning_rate": 0.0006,
+ "loss": 3.6133360862731934,
+ "step": 3176
+ },
+ {
+ "epoch": 44.12581913499345,
+ "grad_norm": 0.21540892124176025,
+ "learning_rate": 0.0006,
+ "loss": 3.6367645263671875,
+ "step": 3177
+ },
+ {
+ "epoch": 44.139799038881605,
+ "grad_norm": 0.22251278162002563,
+ "learning_rate": 0.0006,
+ "loss": 3.6266322135925293,
+ "step": 3178
+ },
+ {
+ "epoch": 44.15377894276977,
+ "grad_norm": 0.26196029782295227,
+ "learning_rate": 0.0006,
+ "loss": 3.616487979888916,
+ "step": 3179
+ },
+ {
+ "epoch": 44.16775884665793,
+ "grad_norm": 0.2614341080188751,
+ "learning_rate": 0.0006,
+ "loss": 3.5902786254882812,
+ "step": 3180
+ },
+ {
+ "epoch": 44.18173875054609,
+ "grad_norm": 0.23517177999019623,
+ "learning_rate": 0.0006,
+ "loss": 3.610124111175537,
+ "step": 3181
+ },
+ {
+ "epoch": 44.19571865443425,
+ "grad_norm": 0.20091469585895538,
+ "learning_rate": 0.0006,
+ "loss": 3.5861713886260986,
+ "step": 3182
+ },
+ {
+ "epoch": 44.20969855832241,
+ "grad_norm": 0.19659830629825592,
+ "learning_rate": 0.0006,
+ "loss": 3.6157889366149902,
+ "step": 3183
+ },
+ {
+ "epoch": 44.22367846221057,
+ "grad_norm": 0.20690861344337463,
+ "learning_rate": 0.0006,
+ "loss": 3.5710649490356445,
+ "step": 3184
+ },
+ {
+ "epoch": 44.237658366098735,
+ "grad_norm": 0.2478247433900833,
+ "learning_rate": 0.0006,
+ "loss": 3.609031915664673,
+ "step": 3185
+ },
+ {
+ "epoch": 44.25163826998689,
+ "grad_norm": 0.2678471505641937,
+ "learning_rate": 0.0006,
+ "loss": 3.6412887573242188,
+ "step": 3186
+ },
+ {
+ "epoch": 44.265618173875055,
+ "grad_norm": 0.21856079995632172,
+ "learning_rate": 0.0006,
+ "loss": 3.6113123893737793,
+ "step": 3187
+ },
+ {
+ "epoch": 44.27959807776322,
+ "grad_norm": 0.23104850947856903,
+ "learning_rate": 0.0006,
+ "loss": 3.6022086143493652,
+ "step": 3188
+ },
+ {
+ "epoch": 44.293577981651374,
+ "grad_norm": 0.2380223423242569,
+ "learning_rate": 0.0006,
+ "loss": 3.598735809326172,
+ "step": 3189
+ },
+ {
+ "epoch": 44.30755788553954,
+ "grad_norm": 0.23005320131778717,
+ "learning_rate": 0.0006,
+ "loss": 3.595881938934326,
+ "step": 3190
+ },
+ {
+ "epoch": 44.3215377894277,
+ "grad_norm": 0.23327432572841644,
+ "learning_rate": 0.0006,
+ "loss": 3.6198601722717285,
+ "step": 3191
+ },
+ {
+ "epoch": 44.33551769331586,
+ "grad_norm": 0.2272268831729889,
+ "learning_rate": 0.0006,
+ "loss": 3.6135387420654297,
+ "step": 3192
+ },
+ {
+ "epoch": 44.34949759720402,
+ "grad_norm": 0.2518279552459717,
+ "learning_rate": 0.0006,
+ "loss": 3.6084556579589844,
+ "step": 3193
+ },
+ {
+ "epoch": 44.36347750109218,
+ "grad_norm": 0.27668607234954834,
+ "learning_rate": 0.0006,
+ "loss": 3.644430160522461,
+ "step": 3194
+ },
+ {
+ "epoch": 44.37745740498034,
+ "grad_norm": 0.26110342144966125,
+ "learning_rate": 0.0006,
+ "loss": 3.64072322845459,
+ "step": 3195
+ },
+ {
+ "epoch": 44.391437308868504,
+ "grad_norm": 0.22767964005470276,
+ "learning_rate": 0.0006,
+ "loss": 3.5570502281188965,
+ "step": 3196
+ },
+ {
+ "epoch": 44.40541721275666,
+ "grad_norm": 0.2199093997478485,
+ "learning_rate": 0.0006,
+ "loss": 3.558889150619507,
+ "step": 3197
+ },
+ {
+ "epoch": 44.419397116644824,
+ "grad_norm": 0.21653494238853455,
+ "learning_rate": 0.0006,
+ "loss": 3.6215333938598633,
+ "step": 3198
+ },
+ {
+ "epoch": 44.43337702053299,
+ "grad_norm": 0.1958773136138916,
+ "learning_rate": 0.0006,
+ "loss": 3.588468551635742,
+ "step": 3199
+ },
+ {
+ "epoch": 44.44735692442114,
+ "grad_norm": 0.20205403864383698,
+ "learning_rate": 0.0006,
+ "loss": 3.6109578609466553,
+ "step": 3200
+ },
+ {
+ "epoch": 44.46133682830931,
+ "grad_norm": 0.19632115960121155,
+ "learning_rate": 0.0006,
+ "loss": 3.634315013885498,
+ "step": 3201
+ },
+ {
+ "epoch": 44.47531673219746,
+ "grad_norm": 0.19327203929424286,
+ "learning_rate": 0.0006,
+ "loss": 3.6335930824279785,
+ "step": 3202
+ },
+ {
+ "epoch": 44.489296636085626,
+ "grad_norm": 0.19743897020816803,
+ "learning_rate": 0.0006,
+ "loss": 3.6164016723632812,
+ "step": 3203
+ },
+ {
+ "epoch": 44.50327653997379,
+ "grad_norm": 0.20413564145565033,
+ "learning_rate": 0.0006,
+ "loss": 3.663613796234131,
+ "step": 3204
+ },
+ {
+ "epoch": 44.517256443861946,
+ "grad_norm": 0.2057798206806183,
+ "learning_rate": 0.0006,
+ "loss": 3.625131130218506,
+ "step": 3205
+ },
+ {
+ "epoch": 44.53123634775011,
+ "grad_norm": 0.20076915621757507,
+ "learning_rate": 0.0006,
+ "loss": 3.6362178325653076,
+ "step": 3206
+ },
+ {
+ "epoch": 44.54521625163827,
+ "grad_norm": 0.2381955236196518,
+ "learning_rate": 0.0006,
+ "loss": 3.621263265609741,
+ "step": 3207
+ },
+ {
+ "epoch": 44.55919615552643,
+ "grad_norm": 0.27008768916130066,
+ "learning_rate": 0.0006,
+ "loss": 3.6133322715759277,
+ "step": 3208
+ },
+ {
+ "epoch": 44.57317605941459,
+ "grad_norm": 0.25677573680877686,
+ "learning_rate": 0.0006,
+ "loss": 3.6210851669311523,
+ "step": 3209
+ },
+ {
+ "epoch": 44.58715596330275,
+ "grad_norm": 0.21022997796535492,
+ "learning_rate": 0.0006,
+ "loss": 3.626483917236328,
+ "step": 3210
+ },
+ {
+ "epoch": 44.60113586719091,
+ "grad_norm": 0.19918566942214966,
+ "learning_rate": 0.0006,
+ "loss": 3.6321091651916504,
+ "step": 3211
+ },
+ {
+ "epoch": 44.615115771079076,
+ "grad_norm": 0.2114727795124054,
+ "learning_rate": 0.0006,
+ "loss": 3.5767595767974854,
+ "step": 3212
+ },
+ {
+ "epoch": 44.62909567496723,
+ "grad_norm": 0.20968441665172577,
+ "learning_rate": 0.0006,
+ "loss": 3.6040430068969727,
+ "step": 3213
+ },
+ {
+ "epoch": 44.643075578855395,
+ "grad_norm": 0.19996227324008942,
+ "learning_rate": 0.0006,
+ "loss": 3.6688590049743652,
+ "step": 3214
+ },
+ {
+ "epoch": 44.65705548274356,
+ "grad_norm": 0.19998830556869507,
+ "learning_rate": 0.0006,
+ "loss": 3.6349434852600098,
+ "step": 3215
+ },
+ {
+ "epoch": 44.671035386631715,
+ "grad_norm": 0.20812496542930603,
+ "learning_rate": 0.0006,
+ "loss": 3.6363840103149414,
+ "step": 3216
+ },
+ {
+ "epoch": 44.68501529051988,
+ "grad_norm": 0.1988825500011444,
+ "learning_rate": 0.0006,
+ "loss": 3.6180496215820312,
+ "step": 3217
+ },
+ {
+ "epoch": 44.69899519440804,
+ "grad_norm": 0.2114664614200592,
+ "learning_rate": 0.0006,
+ "loss": 3.6362106800079346,
+ "step": 3218
+ },
+ {
+ "epoch": 44.7129750982962,
+ "grad_norm": 0.19847962260246277,
+ "learning_rate": 0.0006,
+ "loss": 3.618500232696533,
+ "step": 3219
+ },
+ {
+ "epoch": 44.72695500218436,
+ "grad_norm": 0.19903887808322906,
+ "learning_rate": 0.0006,
+ "loss": 3.6360888481140137,
+ "step": 3220
+ },
+ {
+ "epoch": 44.74093490607252,
+ "grad_norm": 0.21198545396327972,
+ "learning_rate": 0.0006,
+ "loss": 3.6347005367279053,
+ "step": 3221
+ },
+ {
+ "epoch": 44.75491480996068,
+ "grad_norm": 0.18334898352622986,
+ "learning_rate": 0.0006,
+ "loss": 3.6160783767700195,
+ "step": 3222
+ },
+ {
+ "epoch": 44.768894713848844,
+ "grad_norm": 0.19260665774345398,
+ "learning_rate": 0.0006,
+ "loss": 3.6322834491729736,
+ "step": 3223
+ },
+ {
+ "epoch": 44.782874617737,
+ "grad_norm": 0.2084558755159378,
+ "learning_rate": 0.0006,
+ "loss": 3.615227699279785,
+ "step": 3224
+ },
+ {
+ "epoch": 44.796854521625164,
+ "grad_norm": 0.24538686871528625,
+ "learning_rate": 0.0006,
+ "loss": 3.6387081146240234,
+ "step": 3225
+ },
+ {
+ "epoch": 44.81083442551333,
+ "grad_norm": 0.23291894793510437,
+ "learning_rate": 0.0006,
+ "loss": 3.6245408058166504,
+ "step": 3226
+ },
+ {
+ "epoch": 44.824814329401484,
+ "grad_norm": 0.20715969800949097,
+ "learning_rate": 0.0006,
+ "loss": 3.633620262145996,
+ "step": 3227
+ },
+ {
+ "epoch": 44.83879423328965,
+ "grad_norm": 0.20866821706295013,
+ "learning_rate": 0.0006,
+ "loss": 3.613438129425049,
+ "step": 3228
+ },
+ {
+ "epoch": 44.8527741371778,
+ "grad_norm": 0.2048904299736023,
+ "learning_rate": 0.0006,
+ "loss": 3.668807029724121,
+ "step": 3229
+ },
+ {
+ "epoch": 44.86675404106597,
+ "grad_norm": 0.2073894739151001,
+ "learning_rate": 0.0006,
+ "loss": 3.6000914573669434,
+ "step": 3230
+ },
+ {
+ "epoch": 44.88073394495413,
+ "grad_norm": 0.22017404437065125,
+ "learning_rate": 0.0006,
+ "loss": 3.6024718284606934,
+ "step": 3231
+ },
+ {
+ "epoch": 44.89471384884229,
+ "grad_norm": 0.23971669375896454,
+ "learning_rate": 0.0006,
+ "loss": 3.6339516639709473,
+ "step": 3232
+ },
+ {
+ "epoch": 44.90869375273045,
+ "grad_norm": 0.2258273959159851,
+ "learning_rate": 0.0006,
+ "loss": 3.6480093002319336,
+ "step": 3233
+ },
+ {
+ "epoch": 44.92267365661861,
+ "grad_norm": 0.22079502046108246,
+ "learning_rate": 0.0006,
+ "loss": 3.643446922302246,
+ "step": 3234
+ },
+ {
+ "epoch": 44.93665356050677,
+ "grad_norm": 0.22109337151050568,
+ "learning_rate": 0.0006,
+ "loss": 3.5975499153137207,
+ "step": 3235
+ },
+ {
+ "epoch": 44.95063346439493,
+ "grad_norm": 0.20142309367656708,
+ "learning_rate": 0.0006,
+ "loss": 3.6057305335998535,
+ "step": 3236
+ },
+ {
+ "epoch": 44.964613368283096,
+ "grad_norm": 0.20089569687843323,
+ "learning_rate": 0.0006,
+ "loss": 3.5900750160217285,
+ "step": 3237
+ },
+ {
+ "epoch": 44.97859327217125,
+ "grad_norm": 0.19860075414180756,
+ "learning_rate": 0.0006,
+ "loss": 3.5954184532165527,
+ "step": 3238
+ },
+ {
+ "epoch": 44.992573176059416,
+ "grad_norm": 0.19166013598442078,
+ "learning_rate": 0.0006,
+ "loss": 3.6568803787231445,
+ "step": 3239
+ },
+ {
+ "epoch": 45.0,
+ "grad_norm": 0.22416932880878448,
+ "learning_rate": 0.0006,
+ "loss": 3.6483092308044434,
+ "step": 3240
+ },
+ {
+ "epoch": 45.0,
+ "eval_loss": 3.9821224212646484,
+ "eval_runtime": 44.5415,
+ "eval_samples_per_second": 54.825,
+ "eval_steps_per_second": 3.435,
+ "step": 3240
+ },
+ {
+ "epoch": 45.01397990388816,
+ "grad_norm": 0.2107669562101364,
+ "learning_rate": 0.0006,
+ "loss": 3.5858099460601807,
+ "step": 3241
+ },
+ {
+ "epoch": 45.02795980777632,
+ "grad_norm": 0.20831939578056335,
+ "learning_rate": 0.0006,
+ "loss": 3.5793800354003906,
+ "step": 3242
+ },
+ {
+ "epoch": 45.04193971166448,
+ "grad_norm": 0.2169167846441269,
+ "learning_rate": 0.0006,
+ "loss": 3.601961135864258,
+ "step": 3243
+ },
+ {
+ "epoch": 45.05591961555265,
+ "grad_norm": 0.22451531887054443,
+ "learning_rate": 0.0006,
+ "loss": 3.586371898651123,
+ "step": 3244
+ },
+ {
+ "epoch": 45.0698995194408,
+ "grad_norm": 0.2187003344297409,
+ "learning_rate": 0.0006,
+ "loss": 3.58760929107666,
+ "step": 3245
+ },
+ {
+ "epoch": 45.083879423328966,
+ "grad_norm": 0.22805631160736084,
+ "learning_rate": 0.0006,
+ "loss": 3.554107904434204,
+ "step": 3246
+ },
+ {
+ "epoch": 45.09785932721712,
+ "grad_norm": 0.2573186159133911,
+ "learning_rate": 0.0006,
+ "loss": 3.5815420150756836,
+ "step": 3247
+ },
+ {
+ "epoch": 45.111839231105286,
+ "grad_norm": 0.25940126180648804,
+ "learning_rate": 0.0006,
+ "loss": 3.5754308700561523,
+ "step": 3248
+ },
+ {
+ "epoch": 45.12581913499345,
+ "grad_norm": 0.23834384977817535,
+ "learning_rate": 0.0006,
+ "loss": 3.5857350826263428,
+ "step": 3249
+ },
+ {
+ "epoch": 45.139799038881605,
+ "grad_norm": 0.23342885076999664,
+ "learning_rate": 0.0006,
+ "loss": 3.6116228103637695,
+ "step": 3250
+ },
+ {
+ "epoch": 45.15377894276977,
+ "grad_norm": 0.23284269869327545,
+ "learning_rate": 0.0006,
+ "loss": 3.5778629779815674,
+ "step": 3251
+ },
+ {
+ "epoch": 45.16775884665793,
+ "grad_norm": 0.30510780215263367,
+ "learning_rate": 0.0006,
+ "loss": 3.5888915061950684,
+ "step": 3252
+ },
+ {
+ "epoch": 45.18173875054609,
+ "grad_norm": 0.3462519645690918,
+ "learning_rate": 0.0006,
+ "loss": 3.5955758094787598,
+ "step": 3253
+ },
+ {
+ "epoch": 45.19571865443425,
+ "grad_norm": 0.2795974314212799,
+ "learning_rate": 0.0006,
+ "loss": 3.6222946643829346,
+ "step": 3254
+ },
+ {
+ "epoch": 45.20969855832241,
+ "grad_norm": 0.24624103307724,
+ "learning_rate": 0.0006,
+ "loss": 3.63046932220459,
+ "step": 3255
+ },
+ {
+ "epoch": 45.22367846221057,
+ "grad_norm": 0.23007310926914215,
+ "learning_rate": 0.0006,
+ "loss": 3.652526378631592,
+ "step": 3256
+ },
+ {
+ "epoch": 45.237658366098735,
+ "grad_norm": 0.21325333416461945,
+ "learning_rate": 0.0006,
+ "loss": 3.5960049629211426,
+ "step": 3257
+ },
+ {
+ "epoch": 45.25163826998689,
+ "grad_norm": 0.22697314620018005,
+ "learning_rate": 0.0006,
+ "loss": 3.5723695755004883,
+ "step": 3258
+ },
+ {
+ "epoch": 45.265618173875055,
+ "grad_norm": 0.21900491416454315,
+ "learning_rate": 0.0006,
+ "loss": 3.613572120666504,
+ "step": 3259
+ },
+ {
+ "epoch": 45.27959807776322,
+ "grad_norm": 0.21030694246292114,
+ "learning_rate": 0.0006,
+ "loss": 3.5830235481262207,
+ "step": 3260
+ },
+ {
+ "epoch": 45.293577981651374,
+ "grad_norm": 0.20229968428611755,
+ "learning_rate": 0.0006,
+ "loss": 3.620349884033203,
+ "step": 3261
+ },
+ {
+ "epoch": 45.30755788553954,
+ "grad_norm": 0.21611201763153076,
+ "learning_rate": 0.0006,
+ "loss": 3.5937819480895996,
+ "step": 3262
+ },
+ {
+ "epoch": 45.3215377894277,
+ "grad_norm": 0.21876764297485352,
+ "learning_rate": 0.0006,
+ "loss": 3.6180777549743652,
+ "step": 3263
+ },
+ {
+ "epoch": 45.33551769331586,
+ "grad_norm": 0.200356587767601,
+ "learning_rate": 0.0006,
+ "loss": 3.6140146255493164,
+ "step": 3264
+ },
+ {
+ "epoch": 45.34949759720402,
+ "grad_norm": 0.19151835143566132,
+ "learning_rate": 0.0006,
+ "loss": 3.607077121734619,
+ "step": 3265
+ },
+ {
+ "epoch": 45.36347750109218,
+ "grad_norm": 0.1994648575782776,
+ "learning_rate": 0.0006,
+ "loss": 3.646780490875244,
+ "step": 3266
+ },
+ {
+ "epoch": 45.37745740498034,
+ "grad_norm": 0.23145829141139984,
+ "learning_rate": 0.0006,
+ "loss": 3.624591588973999,
+ "step": 3267
+ },
+ {
+ "epoch": 45.391437308868504,
+ "grad_norm": 0.23608829081058502,
+ "learning_rate": 0.0006,
+ "loss": 3.598904609680176,
+ "step": 3268
+ },
+ {
+ "epoch": 45.40541721275666,
+ "grad_norm": 0.22254547476768494,
+ "learning_rate": 0.0006,
+ "loss": 3.581087827682495,
+ "step": 3269
+ },
+ {
+ "epoch": 45.419397116644824,
+ "grad_norm": 0.21640023589134216,
+ "learning_rate": 0.0006,
+ "loss": 3.5961151123046875,
+ "step": 3270
+ },
+ {
+ "epoch": 45.43337702053299,
+ "grad_norm": 0.2252444475889206,
+ "learning_rate": 0.0006,
+ "loss": 3.590231418609619,
+ "step": 3271
+ },
+ {
+ "epoch": 45.44735692442114,
+ "grad_norm": 0.23785367608070374,
+ "learning_rate": 0.0006,
+ "loss": 3.615896701812744,
+ "step": 3272
+ },
+ {
+ "epoch": 45.46133682830931,
+ "grad_norm": 0.2509191036224365,
+ "learning_rate": 0.0006,
+ "loss": 3.6413722038269043,
+ "step": 3273
+ },
+ {
+ "epoch": 45.47531673219746,
+ "grad_norm": 0.23734210431575775,
+ "learning_rate": 0.0006,
+ "loss": 3.608898639678955,
+ "step": 3274
+ },
+ {
+ "epoch": 45.489296636085626,
+ "grad_norm": 0.19802412390708923,
+ "learning_rate": 0.0006,
+ "loss": 3.5957250595092773,
+ "step": 3275
+ },
+ {
+ "epoch": 45.50327653997379,
+ "grad_norm": 0.20621423423290253,
+ "learning_rate": 0.0006,
+ "loss": 3.607945442199707,
+ "step": 3276
+ },
+ {
+ "epoch": 45.517256443861946,
+ "grad_norm": 0.225870743393898,
+ "learning_rate": 0.0006,
+ "loss": 3.641449451446533,
+ "step": 3277
+ },
+ {
+ "epoch": 45.53123634775011,
+ "grad_norm": 0.21482397615909576,
+ "learning_rate": 0.0006,
+ "loss": 3.61629581451416,
+ "step": 3278
+ },
+ {
+ "epoch": 45.54521625163827,
+ "grad_norm": 0.21159376204013824,
+ "learning_rate": 0.0006,
+ "loss": 3.5977988243103027,
+ "step": 3279
+ },
+ {
+ "epoch": 45.55919615552643,
+ "grad_norm": 0.2031678408384323,
+ "learning_rate": 0.0006,
+ "loss": 3.629343032836914,
+ "step": 3280
+ },
+ {
+ "epoch": 45.57317605941459,
+ "grad_norm": 0.1827101707458496,
+ "learning_rate": 0.0006,
+ "loss": 3.6161365509033203,
+ "step": 3281
+ },
+ {
+ "epoch": 45.58715596330275,
+ "grad_norm": 0.21884584426879883,
+ "learning_rate": 0.0006,
+ "loss": 3.6131834983825684,
+ "step": 3282
+ },
+ {
+ "epoch": 45.60113586719091,
+ "grad_norm": 0.21764980256557465,
+ "learning_rate": 0.0006,
+ "loss": 3.612516164779663,
+ "step": 3283
+ },
+ {
+ "epoch": 45.615115771079076,
+ "grad_norm": 0.22257080674171448,
+ "learning_rate": 0.0006,
+ "loss": 3.63425874710083,
+ "step": 3284
+ },
+ {
+ "epoch": 45.62909567496723,
+ "grad_norm": 0.2419128566980362,
+ "learning_rate": 0.0006,
+ "loss": 3.602997064590454,
+ "step": 3285
+ },
+ {
+ "epoch": 45.643075578855395,
+ "grad_norm": 0.20856884121894836,
+ "learning_rate": 0.0006,
+ "loss": 3.597352981567383,
+ "step": 3286
+ },
+ {
+ "epoch": 45.65705548274356,
+ "grad_norm": 0.20298589766025543,
+ "learning_rate": 0.0006,
+ "loss": 3.5961315631866455,
+ "step": 3287
+ },
+ {
+ "epoch": 45.671035386631715,
+ "grad_norm": 0.19006133079528809,
+ "learning_rate": 0.0006,
+ "loss": 3.6314568519592285,
+ "step": 3288
+ },
+ {
+ "epoch": 45.68501529051988,
+ "grad_norm": 0.20886142551898956,
+ "learning_rate": 0.0006,
+ "loss": 3.6200413703918457,
+ "step": 3289
+ },
+ {
+ "epoch": 45.69899519440804,
+ "grad_norm": 0.18085862696170807,
+ "learning_rate": 0.0006,
+ "loss": 3.6273961067199707,
+ "step": 3290
+ },
+ {
+ "epoch": 45.7129750982962,
+ "grad_norm": 0.18651945888996124,
+ "learning_rate": 0.0006,
+ "loss": 3.6490976810455322,
+ "step": 3291
+ },
+ {
+ "epoch": 45.72695500218436,
+ "grad_norm": 0.19668170809745789,
+ "learning_rate": 0.0006,
+ "loss": 3.610409736633301,
+ "step": 3292
+ },
+ {
+ "epoch": 45.74093490607252,
+ "grad_norm": 0.19865764677524567,
+ "learning_rate": 0.0006,
+ "loss": 3.614025115966797,
+ "step": 3293
+ },
+ {
+ "epoch": 45.75491480996068,
+ "grad_norm": 0.20814085006713867,
+ "learning_rate": 0.0006,
+ "loss": 3.6220510005950928,
+ "step": 3294
+ },
+ {
+ "epoch": 45.768894713848844,
+ "grad_norm": 0.20996463298797607,
+ "learning_rate": 0.0006,
+ "loss": 3.5754218101501465,
+ "step": 3295
+ },
+ {
+ "epoch": 45.782874617737,
+ "grad_norm": 0.1987130492925644,
+ "learning_rate": 0.0006,
+ "loss": 3.614746570587158,
+ "step": 3296
+ },
+ {
+ "epoch": 45.796854521625164,
+ "grad_norm": 0.23048028349876404,
+ "learning_rate": 0.0006,
+ "loss": 3.602620840072632,
+ "step": 3297
+ },
+ {
+ "epoch": 45.81083442551333,
+ "grad_norm": 0.21877387166023254,
+ "learning_rate": 0.0006,
+ "loss": 3.6294198036193848,
+ "step": 3298
+ },
+ {
+ "epoch": 45.824814329401484,
+ "grad_norm": 0.20007763803005219,
+ "learning_rate": 0.0006,
+ "loss": 3.630868434906006,
+ "step": 3299
+ },
+ {
+ "epoch": 45.83879423328965,
+ "grad_norm": 0.200496107339859,
+ "learning_rate": 0.0006,
+ "loss": 3.5972986221313477,
+ "step": 3300
+ },
+ {
+ "epoch": 45.8527741371778,
+ "grad_norm": 0.20494480431079865,
+ "learning_rate": 0.0006,
+ "loss": 3.61934494972229,
+ "step": 3301
+ },
+ {
+ "epoch": 45.86675404106597,
+ "grad_norm": 0.21374984085559845,
+ "learning_rate": 0.0006,
+ "loss": 3.6236257553100586,
+ "step": 3302
+ },
+ {
+ "epoch": 45.88073394495413,
+ "grad_norm": 0.22020408511161804,
+ "learning_rate": 0.0006,
+ "loss": 3.6030755043029785,
+ "step": 3303
+ },
+ {
+ "epoch": 45.89471384884229,
+ "grad_norm": 0.2239987701177597,
+ "learning_rate": 0.0006,
+ "loss": 3.6778974533081055,
+ "step": 3304
+ },
+ {
+ "epoch": 45.90869375273045,
+ "grad_norm": 0.22156383097171783,
+ "learning_rate": 0.0006,
+ "loss": 3.6186561584472656,
+ "step": 3305
+ },
+ {
+ "epoch": 45.92267365661861,
+ "grad_norm": 0.2264711856842041,
+ "learning_rate": 0.0006,
+ "loss": 3.6349918842315674,
+ "step": 3306
+ },
+ {
+ "epoch": 45.93665356050677,
+ "grad_norm": 0.2287975549697876,
+ "learning_rate": 0.0006,
+ "loss": 3.600268840789795,
+ "step": 3307
+ },
+ {
+ "epoch": 45.95063346439493,
+ "grad_norm": 0.22459761798381805,
+ "learning_rate": 0.0006,
+ "loss": 3.6029114723205566,
+ "step": 3308
+ },
+ {
+ "epoch": 45.964613368283096,
+ "grad_norm": 0.2430959790945053,
+ "learning_rate": 0.0006,
+ "loss": 3.6781656742095947,
+ "step": 3309
+ },
+ {
+ "epoch": 45.97859327217125,
+ "grad_norm": 0.2718662619590759,
+ "learning_rate": 0.0006,
+ "loss": 3.606778144836426,
+ "step": 3310
+ },
+ {
+ "epoch": 45.992573176059416,
+ "grad_norm": 0.27250170707702637,
+ "learning_rate": 0.0006,
+ "loss": 3.6142611503601074,
+ "step": 3311
+ },
+ {
+ "epoch": 46.0,
+ "grad_norm": 0.26663821935653687,
+ "learning_rate": 0.0006,
+ "loss": 3.6367483139038086,
+ "step": 3312
+ },
+ {
+ "epoch": 46.0,
+ "eval_loss": 3.9835095405578613,
+ "eval_runtime": 44.6504,
+ "eval_samples_per_second": 54.692,
+ "eval_steps_per_second": 3.427,
+ "step": 3312
+ },
+ {
+ "epoch": 46.01397990388816,
+ "grad_norm": 0.22670713067054749,
+ "learning_rate": 0.0006,
+ "loss": 3.5553648471832275,
+ "step": 3313
+ },
+ {
+ "epoch": 46.02795980777632,
+ "grad_norm": 0.2759886384010315,
+ "learning_rate": 0.0006,
+ "loss": 3.595186948776245,
+ "step": 3314
+ },
+ {
+ "epoch": 46.04193971166448,
+ "grad_norm": 0.31634145975112915,
+ "learning_rate": 0.0006,
+ "loss": 3.5805907249450684,
+ "step": 3315
+ },
+ {
+ "epoch": 46.05591961555265,
+ "grad_norm": 0.3097986578941345,
+ "learning_rate": 0.0006,
+ "loss": 3.593407154083252,
+ "step": 3316
+ },
+ {
+ "epoch": 46.0698995194408,
+ "grad_norm": 0.24616138637065887,
+ "learning_rate": 0.0006,
+ "loss": 3.606736898422241,
+ "step": 3317
+ },
+ {
+ "epoch": 46.083879423328966,
+ "grad_norm": 0.22210408747196198,
+ "learning_rate": 0.0006,
+ "loss": 3.59546160697937,
+ "step": 3318
+ },
+ {
+ "epoch": 46.09785932721712,
+ "grad_norm": 0.2429778128862381,
+ "learning_rate": 0.0006,
+ "loss": 3.5900321006774902,
+ "step": 3319
+ },
+ {
+ "epoch": 46.111839231105286,
+ "grad_norm": 0.22875761985778809,
+ "learning_rate": 0.0006,
+ "loss": 3.5793521404266357,
+ "step": 3320
+ },
+ {
+ "epoch": 46.12581913499345,
+ "grad_norm": 0.21508760750293732,
+ "learning_rate": 0.0006,
+ "loss": 3.5462498664855957,
+ "step": 3321
+ },
+ {
+ "epoch": 46.139799038881605,
+ "grad_norm": 0.23590944707393646,
+ "learning_rate": 0.0006,
+ "loss": 3.6247925758361816,
+ "step": 3322
+ },
+ {
+ "epoch": 46.15377894276977,
+ "grad_norm": 0.22288036346435547,
+ "learning_rate": 0.0006,
+ "loss": 3.6063995361328125,
+ "step": 3323
+ },
+ {
+ "epoch": 46.16775884665793,
+ "grad_norm": 0.20460885763168335,
+ "learning_rate": 0.0006,
+ "loss": 3.5744826793670654,
+ "step": 3324
+ },
+ {
+ "epoch": 46.18173875054609,
+ "grad_norm": 0.20172059535980225,
+ "learning_rate": 0.0006,
+ "loss": 3.5827057361602783,
+ "step": 3325
+ },
+ {
+ "epoch": 46.19571865443425,
+ "grad_norm": 0.2268448770046234,
+ "learning_rate": 0.0006,
+ "loss": 3.5801379680633545,
+ "step": 3326
+ },
+ {
+ "epoch": 46.20969855832241,
+ "grad_norm": 0.2244444191455841,
+ "learning_rate": 0.0006,
+ "loss": 3.5790224075317383,
+ "step": 3327
+ },
+ {
+ "epoch": 46.22367846221057,
+ "grad_norm": 0.20954380929470062,
+ "learning_rate": 0.0006,
+ "loss": 3.5979342460632324,
+ "step": 3328
+ },
+ {
+ "epoch": 46.237658366098735,
+ "grad_norm": 0.21395887434482574,
+ "learning_rate": 0.0006,
+ "loss": 3.6015186309814453,
+ "step": 3329
+ },
+ {
+ "epoch": 46.25163826998689,
+ "grad_norm": 0.23200181126594543,
+ "learning_rate": 0.0006,
+ "loss": 3.5904979705810547,
+ "step": 3330
+ },
+ {
+ "epoch": 46.265618173875055,
+ "grad_norm": 0.20558731257915497,
+ "learning_rate": 0.0006,
+ "loss": 3.5745811462402344,
+ "step": 3331
+ },
+ {
+ "epoch": 46.27959807776322,
+ "grad_norm": 0.1973227560520172,
+ "learning_rate": 0.0006,
+ "loss": 3.588560104370117,
+ "step": 3332
+ },
+ {
+ "epoch": 46.293577981651374,
+ "grad_norm": 0.2137945592403412,
+ "learning_rate": 0.0006,
+ "loss": 3.606064796447754,
+ "step": 3333
+ },
+ {
+ "epoch": 46.30755788553954,
+ "grad_norm": 0.2082151472568512,
+ "learning_rate": 0.0006,
+ "loss": 3.569392442703247,
+ "step": 3334
+ },
+ {
+ "epoch": 46.3215377894277,
+ "grad_norm": 0.2151029258966446,
+ "learning_rate": 0.0006,
+ "loss": 3.6016604900360107,
+ "step": 3335
+ },
+ {
+ "epoch": 46.33551769331586,
+ "grad_norm": 0.2256474643945694,
+ "learning_rate": 0.0006,
+ "loss": 3.571319580078125,
+ "step": 3336
+ },
+ {
+ "epoch": 46.34949759720402,
+ "grad_norm": 0.21454207599163055,
+ "learning_rate": 0.0006,
+ "loss": 3.6028685569763184,
+ "step": 3337
+ },
+ {
+ "epoch": 46.36347750109218,
+ "grad_norm": 0.21864144504070282,
+ "learning_rate": 0.0006,
+ "loss": 3.6146860122680664,
+ "step": 3338
+ },
+ {
+ "epoch": 46.37745740498034,
+ "grad_norm": 0.24512453377246857,
+ "learning_rate": 0.0006,
+ "loss": 3.614696502685547,
+ "step": 3339
+ },
+ {
+ "epoch": 46.391437308868504,
+ "grad_norm": 0.26355695724487305,
+ "learning_rate": 0.0006,
+ "loss": 3.6124234199523926,
+ "step": 3340
+ },
+ {
+ "epoch": 46.40541721275666,
+ "grad_norm": 0.2778678834438324,
+ "learning_rate": 0.0006,
+ "loss": 3.6075634956359863,
+ "step": 3341
+ },
+ {
+ "epoch": 46.419397116644824,
+ "grad_norm": 0.2626822292804718,
+ "learning_rate": 0.0006,
+ "loss": 3.59267520904541,
+ "step": 3342
+ },
+ {
+ "epoch": 46.43337702053299,
+ "grad_norm": 0.2211887091398239,
+ "learning_rate": 0.0006,
+ "loss": 3.606135606765747,
+ "step": 3343
+ },
+ {
+ "epoch": 46.44735692442114,
+ "grad_norm": 0.20117639005184174,
+ "learning_rate": 0.0006,
+ "loss": 3.566512107849121,
+ "step": 3344
+ },
+ {
+ "epoch": 46.46133682830931,
+ "grad_norm": 0.20202599465847015,
+ "learning_rate": 0.0006,
+ "loss": 3.603398561477661,
+ "step": 3345
+ },
+ {
+ "epoch": 46.47531673219746,
+ "grad_norm": 0.22238481044769287,
+ "learning_rate": 0.0006,
+ "loss": 3.599888324737549,
+ "step": 3346
+ },
+ {
+ "epoch": 46.489296636085626,
+ "grad_norm": 0.23298178613185883,
+ "learning_rate": 0.0006,
+ "loss": 3.6135406494140625,
+ "step": 3347
+ },
+ {
+ "epoch": 46.50327653997379,
+ "grad_norm": 0.21998152136802673,
+ "learning_rate": 0.0006,
+ "loss": 3.6022939682006836,
+ "step": 3348
+ },
+ {
+ "epoch": 46.517256443861946,
+ "grad_norm": 0.22595210373401642,
+ "learning_rate": 0.0006,
+ "loss": 3.605905532836914,
+ "step": 3349
+ },
+ {
+ "epoch": 46.53123634775011,
+ "grad_norm": 0.23549678921699524,
+ "learning_rate": 0.0006,
+ "loss": 3.606264591217041,
+ "step": 3350
+ },
+ {
+ "epoch": 46.54521625163827,
+ "grad_norm": 0.2075573205947876,
+ "learning_rate": 0.0006,
+ "loss": 3.580575942993164,
+ "step": 3351
+ },
+ {
+ "epoch": 46.55919615552643,
+ "grad_norm": 0.19052642583847046,
+ "learning_rate": 0.0006,
+ "loss": 3.618326187133789,
+ "step": 3352
+ },
+ {
+ "epoch": 46.57317605941459,
+ "grad_norm": 0.20372900366783142,
+ "learning_rate": 0.0006,
+ "loss": 3.5817952156066895,
+ "step": 3353
+ },
+ {
+ "epoch": 46.58715596330275,
+ "grad_norm": 0.20024648308753967,
+ "learning_rate": 0.0006,
+ "loss": 3.6128273010253906,
+ "step": 3354
+ },
+ {
+ "epoch": 46.60113586719091,
+ "grad_norm": 0.20892181992530823,
+ "learning_rate": 0.0006,
+ "loss": 3.6173012256622314,
+ "step": 3355
+ },
+ {
+ "epoch": 46.615115771079076,
+ "grad_norm": 0.20254571735858917,
+ "learning_rate": 0.0006,
+ "loss": 3.5924699306488037,
+ "step": 3356
+ },
+ {
+ "epoch": 46.62909567496723,
+ "grad_norm": 0.20290599763393402,
+ "learning_rate": 0.0006,
+ "loss": 3.6134514808654785,
+ "step": 3357
+ },
+ {
+ "epoch": 46.643075578855395,
+ "grad_norm": 0.23314513266086578,
+ "learning_rate": 0.0006,
+ "loss": 3.604102611541748,
+ "step": 3358
+ },
+ {
+ "epoch": 46.65705548274356,
+ "grad_norm": 0.2352486401796341,
+ "learning_rate": 0.0006,
+ "loss": 3.6210808753967285,
+ "step": 3359
+ },
+ {
+ "epoch": 46.671035386631715,
+ "grad_norm": 0.2289503663778305,
+ "learning_rate": 0.0006,
+ "loss": 3.596968650817871,
+ "step": 3360
+ },
+ {
+ "epoch": 46.68501529051988,
+ "grad_norm": 0.19971057772636414,
+ "learning_rate": 0.0006,
+ "loss": 3.5973198413848877,
+ "step": 3361
+ },
+ {
+ "epoch": 46.69899519440804,
+ "grad_norm": 0.21000619232654572,
+ "learning_rate": 0.0006,
+ "loss": 3.607048511505127,
+ "step": 3362
+ },
+ {
+ "epoch": 46.7129750982962,
+ "grad_norm": 0.22295686602592468,
+ "learning_rate": 0.0006,
+ "loss": 3.6323728561401367,
+ "step": 3363
+ },
+ {
+ "epoch": 46.72695500218436,
+ "grad_norm": 0.21939052641391754,
+ "learning_rate": 0.0006,
+ "loss": 3.6073317527770996,
+ "step": 3364
+ },
+ {
+ "epoch": 46.74093490607252,
+ "grad_norm": 0.2192271202802658,
+ "learning_rate": 0.0006,
+ "loss": 3.6396851539611816,
+ "step": 3365
+ },
+ {
+ "epoch": 46.75491480996068,
+ "grad_norm": 0.20871607959270477,
+ "learning_rate": 0.0006,
+ "loss": 3.613509178161621,
+ "step": 3366
+ },
+ {
+ "epoch": 46.768894713848844,
+ "grad_norm": 0.1837828904390335,
+ "learning_rate": 0.0006,
+ "loss": 3.604039192199707,
+ "step": 3367
+ },
+ {
+ "epoch": 46.782874617737,
+ "grad_norm": 0.1904219537973404,
+ "learning_rate": 0.0006,
+ "loss": 3.6065895557403564,
+ "step": 3368
+ },
+ {
+ "epoch": 46.796854521625164,
+ "grad_norm": 0.19873572885990143,
+ "learning_rate": 0.0006,
+ "loss": 3.5927226543426514,
+ "step": 3369
+ },
+ {
+ "epoch": 46.81083442551333,
+ "grad_norm": 0.18319591879844666,
+ "learning_rate": 0.0006,
+ "loss": 3.6114919185638428,
+ "step": 3370
+ },
+ {
+ "epoch": 46.824814329401484,
+ "grad_norm": 0.19832435250282288,
+ "learning_rate": 0.0006,
+ "loss": 3.613637924194336,
+ "step": 3371
+ },
+ {
+ "epoch": 46.83879423328965,
+ "grad_norm": 0.21506333351135254,
+ "learning_rate": 0.0006,
+ "loss": 3.6116209030151367,
+ "step": 3372
+ },
+ {
+ "epoch": 46.8527741371778,
+ "grad_norm": 0.20374484360218048,
+ "learning_rate": 0.0006,
+ "loss": 3.5923004150390625,
+ "step": 3373
+ },
+ {
+ "epoch": 46.86675404106597,
+ "grad_norm": 0.19743360579013824,
+ "learning_rate": 0.0006,
+ "loss": 3.599381685256958,
+ "step": 3374
+ },
+ {
+ "epoch": 46.88073394495413,
+ "grad_norm": 0.20996616780757904,
+ "learning_rate": 0.0006,
+ "loss": 3.624969959259033,
+ "step": 3375
+ },
+ {
+ "epoch": 46.89471384884229,
+ "grad_norm": 0.22336791455745697,
+ "learning_rate": 0.0006,
+ "loss": 3.6152467727661133,
+ "step": 3376
+ },
+ {
+ "epoch": 46.90869375273045,
+ "grad_norm": 0.2337532341480255,
+ "learning_rate": 0.0006,
+ "loss": 3.6198863983154297,
+ "step": 3377
+ },
+ {
+ "epoch": 46.92267365661861,
+ "grad_norm": 0.23823462426662445,
+ "learning_rate": 0.0006,
+ "loss": 3.6411237716674805,
+ "step": 3378
+ },
+ {
+ "epoch": 46.93665356050677,
+ "grad_norm": 0.2521338164806366,
+ "learning_rate": 0.0006,
+ "loss": 3.621544122695923,
+ "step": 3379
+ },
+ {
+ "epoch": 46.95063346439493,
+ "grad_norm": 0.253682941198349,
+ "learning_rate": 0.0006,
+ "loss": 3.6570887565612793,
+ "step": 3380
+ },
+ {
+ "epoch": 46.964613368283096,
+ "grad_norm": 0.23392300307750702,
+ "learning_rate": 0.0006,
+ "loss": 3.669538974761963,
+ "step": 3381
+ },
+ {
+ "epoch": 46.97859327217125,
+ "grad_norm": 0.2154092937707901,
+ "learning_rate": 0.0006,
+ "loss": 3.6184825897216797,
+ "step": 3382
+ },
+ {
+ "epoch": 46.992573176059416,
+ "grad_norm": 0.1909833699464798,
+ "learning_rate": 0.0006,
+ "loss": 3.647658348083496,
+ "step": 3383
+ },
+ {
+ "epoch": 47.0,
+ "grad_norm": 0.2226407378911972,
+ "learning_rate": 0.0006,
+ "loss": 3.6413815021514893,
+ "step": 3384
+ },
+ {
+ "epoch": 47.0,
+ "eval_loss": 3.98313570022583,
+ "eval_runtime": 44.7152,
+ "eval_samples_per_second": 54.612,
+ "eval_steps_per_second": 3.422,
+ "step": 3384
+ },
+ {
+ "epoch": 47.01397990388816,
+ "grad_norm": 0.20830968022346497,
+ "learning_rate": 0.0006,
+ "loss": 3.5652623176574707,
+ "step": 3385
+ },
+ {
+ "epoch": 47.02795980777632,
+ "grad_norm": 0.18953651189804077,
+ "learning_rate": 0.0006,
+ "loss": 3.570180654525757,
+ "step": 3386
+ },
+ {
+ "epoch": 47.04193971166448,
+ "grad_norm": 0.20167700946331024,
+ "learning_rate": 0.0006,
+ "loss": 3.5623056888580322,
+ "step": 3387
+ },
+ {
+ "epoch": 47.05591961555265,
+ "grad_norm": 0.21554343402385712,
+ "learning_rate": 0.0006,
+ "loss": 3.549492835998535,
+ "step": 3388
+ },
+ {
+ "epoch": 47.0698995194408,
+ "grad_norm": 0.2232149988412857,
+ "learning_rate": 0.0006,
+ "loss": 3.584181785583496,
+ "step": 3389
+ },
+ {
+ "epoch": 47.083879423328966,
+ "grad_norm": 0.23489049077033997,
+ "learning_rate": 0.0006,
+ "loss": 3.581028461456299,
+ "step": 3390
+ },
+ {
+ "epoch": 47.09785932721712,
+ "grad_norm": 0.22486020624637604,
+ "learning_rate": 0.0006,
+ "loss": 3.600348949432373,
+ "step": 3391
+ },
+ {
+ "epoch": 47.111839231105286,
+ "grad_norm": 0.22932346165180206,
+ "learning_rate": 0.0006,
+ "loss": 3.5600457191467285,
+ "step": 3392
+ },
+ {
+ "epoch": 47.12581913499345,
+ "grad_norm": 0.2179419994354248,
+ "learning_rate": 0.0006,
+ "loss": 3.560136079788208,
+ "step": 3393
+ },
+ {
+ "epoch": 47.139799038881605,
+ "grad_norm": 0.2438054382801056,
+ "learning_rate": 0.0006,
+ "loss": 3.5955698490142822,
+ "step": 3394
+ },
+ {
+ "epoch": 47.15377894276977,
+ "grad_norm": 0.2652001976966858,
+ "learning_rate": 0.0006,
+ "loss": 3.5942912101745605,
+ "step": 3395
+ },
+ {
+ "epoch": 47.16775884665793,
+ "grad_norm": 0.270924836397171,
+ "learning_rate": 0.0006,
+ "loss": 3.5733351707458496,
+ "step": 3396
+ },
+ {
+ "epoch": 47.18173875054609,
+ "grad_norm": 0.28365132212638855,
+ "learning_rate": 0.0006,
+ "loss": 3.6042075157165527,
+ "step": 3397
+ },
+ {
+ "epoch": 47.19571865443425,
+ "grad_norm": 0.29530975222587585,
+ "learning_rate": 0.0006,
+ "loss": 3.588935375213623,
+ "step": 3398
+ },
+ {
+ "epoch": 47.20969855832241,
+ "grad_norm": 0.2658918797969818,
+ "learning_rate": 0.0006,
+ "loss": 3.5944671630859375,
+ "step": 3399
+ },
+ {
+ "epoch": 47.22367846221057,
+ "grad_norm": 0.24076500535011292,
+ "learning_rate": 0.0006,
+ "loss": 3.5853185653686523,
+ "step": 3400
+ },
+ {
+ "epoch": 47.237658366098735,
+ "grad_norm": 0.23032112419605255,
+ "learning_rate": 0.0006,
+ "loss": 3.620483875274658,
+ "step": 3401
+ },
+ {
+ "epoch": 47.25163826998689,
+ "grad_norm": 0.23124775290489197,
+ "learning_rate": 0.0006,
+ "loss": 3.6032004356384277,
+ "step": 3402
+ },
+ {
+ "epoch": 47.265618173875055,
+ "grad_norm": 0.21960225701332092,
+ "learning_rate": 0.0006,
+ "loss": 3.6079649925231934,
+ "step": 3403
+ },
+ {
+ "epoch": 47.27959807776322,
+ "grad_norm": 0.236652672290802,
+ "learning_rate": 0.0006,
+ "loss": 3.582645893096924,
+ "step": 3404
+ },
+ {
+ "epoch": 47.293577981651374,
+ "grad_norm": 0.2600267231464386,
+ "learning_rate": 0.0006,
+ "loss": 3.6067757606506348,
+ "step": 3405
+ },
+ {
+ "epoch": 47.30755788553954,
+ "grad_norm": 0.2337152659893036,
+ "learning_rate": 0.0006,
+ "loss": 3.5912275314331055,
+ "step": 3406
+ },
+ {
+ "epoch": 47.3215377894277,
+ "grad_norm": 0.21887873113155365,
+ "learning_rate": 0.0006,
+ "loss": 3.6008896827697754,
+ "step": 3407
+ },
+ {
+ "epoch": 47.33551769331586,
+ "grad_norm": 0.20265911519527435,
+ "learning_rate": 0.0006,
+ "loss": 3.5820152759552,
+ "step": 3408
+ },
+ {
+ "epoch": 47.34949759720402,
+ "grad_norm": 0.2005501389503479,
+ "learning_rate": 0.0006,
+ "loss": 3.604556083679199,
+ "step": 3409
+ },
+ {
+ "epoch": 47.36347750109218,
+ "grad_norm": 0.20682275295257568,
+ "learning_rate": 0.0006,
+ "loss": 3.584531307220459,
+ "step": 3410
+ },
+ {
+ "epoch": 47.37745740498034,
+ "grad_norm": 0.23283354938030243,
+ "learning_rate": 0.0006,
+ "loss": 3.59186053276062,
+ "step": 3411
+ },
+ {
+ "epoch": 47.391437308868504,
+ "grad_norm": 0.23033356666564941,
+ "learning_rate": 0.0006,
+ "loss": 3.5944037437438965,
+ "step": 3412
+ },
+ {
+ "epoch": 47.40541721275666,
+ "grad_norm": 0.21714402735233307,
+ "learning_rate": 0.0006,
+ "loss": 3.5834851264953613,
+ "step": 3413
+ },
+ {
+ "epoch": 47.419397116644824,
+ "grad_norm": 0.2138672024011612,
+ "learning_rate": 0.0006,
+ "loss": 3.6313700675964355,
+ "step": 3414
+ },
+ {
+ "epoch": 47.43337702053299,
+ "grad_norm": 0.23200160264968872,
+ "learning_rate": 0.0006,
+ "loss": 3.6112399101257324,
+ "step": 3415
+ },
+ {
+ "epoch": 47.44735692442114,
+ "grad_norm": 0.2632092833518982,
+ "learning_rate": 0.0006,
+ "loss": 3.6099038124084473,
+ "step": 3416
+ },
+ {
+ "epoch": 47.46133682830931,
+ "grad_norm": 0.23115520179271698,
+ "learning_rate": 0.0006,
+ "loss": 3.6060497760772705,
+ "step": 3417
+ },
+ {
+ "epoch": 47.47531673219746,
+ "grad_norm": 0.2596223056316376,
+ "learning_rate": 0.0006,
+ "loss": 3.5749685764312744,
+ "step": 3418
+ },
+ {
+ "epoch": 47.489296636085626,
+ "grad_norm": 0.27893415093421936,
+ "learning_rate": 0.0006,
+ "loss": 3.584045886993408,
+ "step": 3419
+ },
+ {
+ "epoch": 47.50327653997379,
+ "grad_norm": 0.23112469911575317,
+ "learning_rate": 0.0006,
+ "loss": 3.595407485961914,
+ "step": 3420
+ },
+ {
+ "epoch": 47.517256443861946,
+ "grad_norm": 0.23562486469745636,
+ "learning_rate": 0.0006,
+ "loss": 3.5657241344451904,
+ "step": 3421
+ },
+ {
+ "epoch": 47.53123634775011,
+ "grad_norm": 0.23366105556488037,
+ "learning_rate": 0.0006,
+ "loss": 3.624885082244873,
+ "step": 3422
+ },
+ {
+ "epoch": 47.54521625163827,
+ "grad_norm": 0.24383248388767242,
+ "learning_rate": 0.0006,
+ "loss": 3.638352394104004,
+ "step": 3423
+ },
+ {
+ "epoch": 47.55919615552643,
+ "grad_norm": 0.26388120651245117,
+ "learning_rate": 0.0006,
+ "loss": 3.614579200744629,
+ "step": 3424
+ },
+ {
+ "epoch": 47.57317605941459,
+ "grad_norm": 0.23676545917987823,
+ "learning_rate": 0.0006,
+ "loss": 3.609004259109497,
+ "step": 3425
+ },
+ {
+ "epoch": 47.58715596330275,
+ "grad_norm": 0.227967768907547,
+ "learning_rate": 0.0006,
+ "loss": 3.626171827316284,
+ "step": 3426
+ },
+ {
+ "epoch": 47.60113586719091,
+ "grad_norm": 0.23786529898643494,
+ "learning_rate": 0.0006,
+ "loss": 3.6205172538757324,
+ "step": 3427
+ },
+ {
+ "epoch": 47.615115771079076,
+ "grad_norm": 0.2599100172519684,
+ "learning_rate": 0.0006,
+ "loss": 3.6178271770477295,
+ "step": 3428
+ },
+ {
+ "epoch": 47.62909567496723,
+ "grad_norm": 0.2591858208179474,
+ "learning_rate": 0.0006,
+ "loss": 3.600297451019287,
+ "step": 3429
+ },
+ {
+ "epoch": 47.643075578855395,
+ "grad_norm": 0.2234215885400772,
+ "learning_rate": 0.0006,
+ "loss": 3.623141288757324,
+ "step": 3430
+ },
+ {
+ "epoch": 47.65705548274356,
+ "grad_norm": 0.23395098745822906,
+ "learning_rate": 0.0006,
+ "loss": 3.6243159770965576,
+ "step": 3431
+ },
+ {
+ "epoch": 47.671035386631715,
+ "grad_norm": 0.25706854462623596,
+ "learning_rate": 0.0006,
+ "loss": 3.5933618545532227,
+ "step": 3432
+ },
+ {
+ "epoch": 47.68501529051988,
+ "grad_norm": 0.22468037903308868,
+ "learning_rate": 0.0006,
+ "loss": 3.6048693656921387,
+ "step": 3433
+ },
+ {
+ "epoch": 47.69899519440804,
+ "grad_norm": 0.22432644665241241,
+ "learning_rate": 0.0006,
+ "loss": 3.604891777038574,
+ "step": 3434
+ },
+ {
+ "epoch": 47.7129750982962,
+ "grad_norm": 0.2278960943222046,
+ "learning_rate": 0.0006,
+ "loss": 3.610567092895508,
+ "step": 3435
+ },
+ {
+ "epoch": 47.72695500218436,
+ "grad_norm": 0.20652735233306885,
+ "learning_rate": 0.0006,
+ "loss": 3.60245418548584,
+ "step": 3436
+ },
+ {
+ "epoch": 47.74093490607252,
+ "grad_norm": 0.2141297310590744,
+ "learning_rate": 0.0006,
+ "loss": 3.5712027549743652,
+ "step": 3437
+ },
+ {
+ "epoch": 47.75491480996068,
+ "grad_norm": 0.23282566666603088,
+ "learning_rate": 0.0006,
+ "loss": 3.573568820953369,
+ "step": 3438
+ },
+ {
+ "epoch": 47.768894713848844,
+ "grad_norm": 0.21718674898147583,
+ "learning_rate": 0.0006,
+ "loss": 3.602047920227051,
+ "step": 3439
+ },
+ {
+ "epoch": 47.782874617737,
+ "grad_norm": 0.19592095911502838,
+ "learning_rate": 0.0006,
+ "loss": 3.6046957969665527,
+ "step": 3440
+ },
+ {
+ "epoch": 47.796854521625164,
+ "grad_norm": 0.21548260748386383,
+ "learning_rate": 0.0006,
+ "loss": 3.5808444023132324,
+ "step": 3441
+ },
+ {
+ "epoch": 47.81083442551333,
+ "grad_norm": 0.21945662796497345,
+ "learning_rate": 0.0006,
+ "loss": 3.6044554710388184,
+ "step": 3442
+ },
+ {
+ "epoch": 47.824814329401484,
+ "grad_norm": 0.20777440071105957,
+ "learning_rate": 0.0006,
+ "loss": 3.5991361141204834,
+ "step": 3443
+ },
+ {
+ "epoch": 47.83879423328965,
+ "grad_norm": 0.21566642820835114,
+ "learning_rate": 0.0006,
+ "loss": 3.6272850036621094,
+ "step": 3444
+ },
+ {
+ "epoch": 47.8527741371778,
+ "grad_norm": 0.22365771234035492,
+ "learning_rate": 0.0006,
+ "loss": 3.6323323249816895,
+ "step": 3445
+ },
+ {
+ "epoch": 47.86675404106597,
+ "grad_norm": 0.20193088054656982,
+ "learning_rate": 0.0006,
+ "loss": 3.5938191413879395,
+ "step": 3446
+ },
+ {
+ "epoch": 47.88073394495413,
+ "grad_norm": 0.20968061685562134,
+ "learning_rate": 0.0006,
+ "loss": 3.616640329360962,
+ "step": 3447
+ },
+ {
+ "epoch": 47.89471384884229,
+ "grad_norm": 0.20275580883026123,
+ "learning_rate": 0.0006,
+ "loss": 3.5769052505493164,
+ "step": 3448
+ },
+ {
+ "epoch": 47.90869375273045,
+ "grad_norm": 0.237605020403862,
+ "learning_rate": 0.0006,
+ "loss": 3.6221203804016113,
+ "step": 3449
+ },
+ {
+ "epoch": 47.92267365661861,
+ "grad_norm": 0.2820972502231598,
+ "learning_rate": 0.0006,
+ "loss": 3.5977487564086914,
+ "step": 3450
+ },
+ {
+ "epoch": 47.93665356050677,
+ "grad_norm": 0.23722891509532928,
+ "learning_rate": 0.0006,
+ "loss": 3.5963053703308105,
+ "step": 3451
+ },
+ {
+ "epoch": 47.95063346439493,
+ "grad_norm": 0.21471276879310608,
+ "learning_rate": 0.0006,
+ "loss": 3.6234917640686035,
+ "step": 3452
+ },
+ {
+ "epoch": 47.964613368283096,
+ "grad_norm": 0.2139028012752533,
+ "learning_rate": 0.0006,
+ "loss": 3.640500545501709,
+ "step": 3453
+ },
+ {
+ "epoch": 47.97859327217125,
+ "grad_norm": 0.1966913342475891,
+ "learning_rate": 0.0006,
+ "loss": 3.5856776237487793,
+ "step": 3454
+ },
+ {
+ "epoch": 47.992573176059416,
+ "grad_norm": 0.2375730276107788,
+ "learning_rate": 0.0006,
+ "loss": 3.6126937866210938,
+ "step": 3455
+ },
+ {
+ "epoch": 48.0,
+ "grad_norm": 0.2772855758666992,
+ "learning_rate": 0.0006,
+ "loss": 3.6041951179504395,
+ "step": 3456
+ },
+ {
+ "epoch": 48.0,
+ "eval_loss": 3.971400499343872,
+ "eval_runtime": 45.4792,
+ "eval_samples_per_second": 53.695,
+ "eval_steps_per_second": 3.364,
+ "step": 3456
+ },
+ {
+ "epoch": 48.01397990388816,
+ "grad_norm": 0.2269497811794281,
+ "learning_rate": 0.0006,
+ "loss": 3.525441884994507,
+ "step": 3457
+ },
+ {
+ "epoch": 48.02795980777632,
+ "grad_norm": 0.2080184519290924,
+ "learning_rate": 0.0006,
+ "loss": 3.5727145671844482,
+ "step": 3458
+ },
+ {
+ "epoch": 48.04193971166448,
+ "grad_norm": 0.21827049553394318,
+ "learning_rate": 0.0006,
+ "loss": 3.5799875259399414,
+ "step": 3459
+ },
+ {
+ "epoch": 48.05591961555265,
+ "grad_norm": 0.2173643410205841,
+ "learning_rate": 0.0006,
+ "loss": 3.587097406387329,
+ "step": 3460
+ },
+ {
+ "epoch": 48.0698995194408,
+ "grad_norm": 0.23125280439853668,
+ "learning_rate": 0.0006,
+ "loss": 3.593235969543457,
+ "step": 3461
+ },
+ {
+ "epoch": 48.083879423328966,
+ "grad_norm": 0.2235819697380066,
+ "learning_rate": 0.0006,
+ "loss": 3.5724973678588867,
+ "step": 3462
+ },
+ {
+ "epoch": 48.09785932721712,
+ "grad_norm": 0.2329849898815155,
+ "learning_rate": 0.0006,
+ "loss": 3.5689549446105957,
+ "step": 3463
+ },
+ {
+ "epoch": 48.111839231105286,
+ "grad_norm": 0.21178825199604034,
+ "learning_rate": 0.0006,
+ "loss": 3.5522305965423584,
+ "step": 3464
+ },
+ {
+ "epoch": 48.12581913499345,
+ "grad_norm": 0.22026701271533966,
+ "learning_rate": 0.0006,
+ "loss": 3.5622801780700684,
+ "step": 3465
+ },
+ {
+ "epoch": 48.139799038881605,
+ "grad_norm": 0.23427478969097137,
+ "learning_rate": 0.0006,
+ "loss": 3.6076972484588623,
+ "step": 3466
+ },
+ {
+ "epoch": 48.15377894276977,
+ "grad_norm": 0.22437651455402374,
+ "learning_rate": 0.0006,
+ "loss": 3.5898380279541016,
+ "step": 3467
+ },
+ {
+ "epoch": 48.16775884665793,
+ "grad_norm": 0.22911588847637177,
+ "learning_rate": 0.0006,
+ "loss": 3.584866523742676,
+ "step": 3468
+ },
+ {
+ "epoch": 48.18173875054609,
+ "grad_norm": 0.21358130872249603,
+ "learning_rate": 0.0006,
+ "loss": 3.581397533416748,
+ "step": 3469
+ },
+ {
+ "epoch": 48.19571865443425,
+ "grad_norm": 0.2102762758731842,
+ "learning_rate": 0.0006,
+ "loss": 3.6218419075012207,
+ "step": 3470
+ },
+ {
+ "epoch": 48.20969855832241,
+ "grad_norm": 0.22417177259922028,
+ "learning_rate": 0.0006,
+ "loss": 3.5875539779663086,
+ "step": 3471
+ },
+ {
+ "epoch": 48.22367846221057,
+ "grad_norm": 0.2096744030714035,
+ "learning_rate": 0.0006,
+ "loss": 3.6017215251922607,
+ "step": 3472
+ },
+ {
+ "epoch": 48.237658366098735,
+ "grad_norm": 0.18693844974040985,
+ "learning_rate": 0.0006,
+ "loss": 3.590221405029297,
+ "step": 3473
+ },
+ {
+ "epoch": 48.25163826998689,
+ "grad_norm": 0.21102994680404663,
+ "learning_rate": 0.0006,
+ "loss": 3.5685019493103027,
+ "step": 3474
+ },
+ {
+ "epoch": 48.265618173875055,
+ "grad_norm": 0.20756356418132782,
+ "learning_rate": 0.0006,
+ "loss": 3.577427387237549,
+ "step": 3475
+ },
+ {
+ "epoch": 48.27959807776322,
+ "grad_norm": 0.20425064861774445,
+ "learning_rate": 0.0006,
+ "loss": 3.602522134780884,
+ "step": 3476
+ },
+ {
+ "epoch": 48.293577981651374,
+ "grad_norm": 0.1976020187139511,
+ "learning_rate": 0.0006,
+ "loss": 3.5847134590148926,
+ "step": 3477
+ },
+ {
+ "epoch": 48.30755788553954,
+ "grad_norm": 0.19685129821300507,
+ "learning_rate": 0.0006,
+ "loss": 3.5638442039489746,
+ "step": 3478
+ },
+ {
+ "epoch": 48.3215377894277,
+ "grad_norm": 0.19657646119594574,
+ "learning_rate": 0.0006,
+ "loss": 3.5669779777526855,
+ "step": 3479
+ },
+ {
+ "epoch": 48.33551769331586,
+ "grad_norm": 0.19855819642543793,
+ "learning_rate": 0.0006,
+ "loss": 3.5712571144104004,
+ "step": 3480
+ },
+ {
+ "epoch": 48.34949759720402,
+ "grad_norm": 0.19961503148078918,
+ "learning_rate": 0.0006,
+ "loss": 3.5869312286376953,
+ "step": 3481
+ },
+ {
+ "epoch": 48.36347750109218,
+ "grad_norm": 0.19302639365196228,
+ "learning_rate": 0.0006,
+ "loss": 3.571394920349121,
+ "step": 3482
+ },
+ {
+ "epoch": 48.37745740498034,
+ "grad_norm": 0.1953866183757782,
+ "learning_rate": 0.0006,
+ "loss": 3.556633234024048,
+ "step": 3483
+ },
+ {
+ "epoch": 48.391437308868504,
+ "grad_norm": 0.20028206706047058,
+ "learning_rate": 0.0006,
+ "loss": 3.5559535026550293,
+ "step": 3484
+ },
+ {
+ "epoch": 48.40541721275666,
+ "grad_norm": 0.2286558896303177,
+ "learning_rate": 0.0006,
+ "loss": 3.6052510738372803,
+ "step": 3485
+ },
+ {
+ "epoch": 48.419397116644824,
+ "grad_norm": 0.21764399111270905,
+ "learning_rate": 0.0006,
+ "loss": 3.5955848693847656,
+ "step": 3486
+ },
+ {
+ "epoch": 48.43337702053299,
+ "grad_norm": 0.2257501780986786,
+ "learning_rate": 0.0006,
+ "loss": 3.586179256439209,
+ "step": 3487
+ },
+ {
+ "epoch": 48.44735692442114,
+ "grad_norm": 0.23023653030395508,
+ "learning_rate": 0.0006,
+ "loss": 3.593329906463623,
+ "step": 3488
+ },
+ {
+ "epoch": 48.46133682830931,
+ "grad_norm": 0.21283918619155884,
+ "learning_rate": 0.0006,
+ "loss": 3.5909814834594727,
+ "step": 3489
+ },
+ {
+ "epoch": 48.47531673219746,
+ "grad_norm": 0.2143639773130417,
+ "learning_rate": 0.0006,
+ "loss": 3.61320161819458,
+ "step": 3490
+ },
+ {
+ "epoch": 48.489296636085626,
+ "grad_norm": 0.2138844132423401,
+ "learning_rate": 0.0006,
+ "loss": 3.556607246398926,
+ "step": 3491
+ },
+ {
+ "epoch": 48.50327653997379,
+ "grad_norm": 0.22122617065906525,
+ "learning_rate": 0.0006,
+ "loss": 3.629208564758301,
+ "step": 3492
+ },
+ {
+ "epoch": 48.517256443861946,
+ "grad_norm": 0.22430218756198883,
+ "learning_rate": 0.0006,
+ "loss": 3.61891508102417,
+ "step": 3493
+ },
+ {
+ "epoch": 48.53123634775011,
+ "grad_norm": 0.23830844461917877,
+ "learning_rate": 0.0006,
+ "loss": 3.5818424224853516,
+ "step": 3494
+ },
+ {
+ "epoch": 48.54521625163827,
+ "grad_norm": 0.23596757650375366,
+ "learning_rate": 0.0006,
+ "loss": 3.609959602355957,
+ "step": 3495
+ },
+ {
+ "epoch": 48.55919615552643,
+ "grad_norm": 0.22046151757240295,
+ "learning_rate": 0.0006,
+ "loss": 3.585991382598877,
+ "step": 3496
+ },
+ {
+ "epoch": 48.57317605941459,
+ "grad_norm": 0.22838662564754486,
+ "learning_rate": 0.0006,
+ "loss": 3.6047747135162354,
+ "step": 3497
+ },
+ {
+ "epoch": 48.58715596330275,
+ "grad_norm": 0.22605256736278534,
+ "learning_rate": 0.0006,
+ "loss": 3.584585428237915,
+ "step": 3498
+ },
+ {
+ "epoch": 48.60113586719091,
+ "grad_norm": 0.22761467099189758,
+ "learning_rate": 0.0006,
+ "loss": 3.5680465698242188,
+ "step": 3499
+ },
+ {
+ "epoch": 48.615115771079076,
+ "grad_norm": 0.20537005364894867,
+ "learning_rate": 0.0006,
+ "loss": 3.5822806358337402,
+ "step": 3500
+ },
+ {
+ "epoch": 48.62909567496723,
+ "grad_norm": 0.21871088445186615,
+ "learning_rate": 0.0006,
+ "loss": 3.5643906593322754,
+ "step": 3501
+ },
+ {
+ "epoch": 48.643075578855395,
+ "grad_norm": 0.2291785329580307,
+ "learning_rate": 0.0006,
+ "loss": 3.6313328742980957,
+ "step": 3502
+ },
+ {
+ "epoch": 48.65705548274356,
+ "grad_norm": 0.2437039464712143,
+ "learning_rate": 0.0006,
+ "loss": 3.588334083557129,
+ "step": 3503
+ },
+ {
+ "epoch": 48.671035386631715,
+ "grad_norm": 0.23070715367794037,
+ "learning_rate": 0.0006,
+ "loss": 3.611356258392334,
+ "step": 3504
+ },
+ {
+ "epoch": 48.68501529051988,
+ "grad_norm": 0.23983895778656006,
+ "learning_rate": 0.0006,
+ "loss": 3.5953967571258545,
+ "step": 3505
+ },
+ {
+ "epoch": 48.69899519440804,
+ "grad_norm": 0.2283167690038681,
+ "learning_rate": 0.0006,
+ "loss": 3.605307102203369,
+ "step": 3506
+ },
+ {
+ "epoch": 48.7129750982962,
+ "grad_norm": 0.20861059427261353,
+ "learning_rate": 0.0006,
+ "loss": 3.598266363143921,
+ "step": 3507
+ },
+ {
+ "epoch": 48.72695500218436,
+ "grad_norm": 0.20209547877311707,
+ "learning_rate": 0.0006,
+ "loss": 3.6022191047668457,
+ "step": 3508
+ },
+ {
+ "epoch": 48.74093490607252,
+ "grad_norm": 0.19089370965957642,
+ "learning_rate": 0.0006,
+ "loss": 3.628640651702881,
+ "step": 3509
+ },
+ {
+ "epoch": 48.75491480996068,
+ "grad_norm": 0.18544727563858032,
+ "learning_rate": 0.0006,
+ "loss": 3.6204819679260254,
+ "step": 3510
+ },
+ {
+ "epoch": 48.768894713848844,
+ "grad_norm": 0.18295186758041382,
+ "learning_rate": 0.0006,
+ "loss": 3.5899410247802734,
+ "step": 3511
+ },
+ {
+ "epoch": 48.782874617737,
+ "grad_norm": 0.1953844279050827,
+ "learning_rate": 0.0006,
+ "loss": 3.581699848175049,
+ "step": 3512
+ },
+ {
+ "epoch": 48.796854521625164,
+ "grad_norm": 0.195505291223526,
+ "learning_rate": 0.0006,
+ "loss": 3.6046862602233887,
+ "step": 3513
+ },
+ {
+ "epoch": 48.81083442551333,
+ "grad_norm": 0.19805945456027985,
+ "learning_rate": 0.0006,
+ "loss": 3.609510898590088,
+ "step": 3514
+ },
+ {
+ "epoch": 48.824814329401484,
+ "grad_norm": 0.18694287538528442,
+ "learning_rate": 0.0006,
+ "loss": 3.580693483352661,
+ "step": 3515
+ },
+ {
+ "epoch": 48.83879423328965,
+ "grad_norm": 0.19227269291877747,
+ "learning_rate": 0.0006,
+ "loss": 3.6174416542053223,
+ "step": 3516
+ },
+ {
+ "epoch": 48.8527741371778,
+ "grad_norm": 0.1966937631368637,
+ "learning_rate": 0.0006,
+ "loss": 3.616194248199463,
+ "step": 3517
+ },
+ {
+ "epoch": 48.86675404106597,
+ "grad_norm": 0.20755162835121155,
+ "learning_rate": 0.0006,
+ "loss": 3.594695568084717,
+ "step": 3518
+ },
+ {
+ "epoch": 48.88073394495413,
+ "grad_norm": 0.2012479156255722,
+ "learning_rate": 0.0006,
+ "loss": 3.6069273948669434,
+ "step": 3519
+ },
+ {
+ "epoch": 48.89471384884229,
+ "grad_norm": 0.19260065257549286,
+ "learning_rate": 0.0006,
+ "loss": 3.573819160461426,
+ "step": 3520
+ },
+ {
+ "epoch": 48.90869375273045,
+ "grad_norm": 0.19911104440689087,
+ "learning_rate": 0.0006,
+ "loss": 3.632185459136963,
+ "step": 3521
+ },
+ {
+ "epoch": 48.92267365661861,
+ "grad_norm": 0.22266048192977905,
+ "learning_rate": 0.0006,
+ "loss": 3.607295513153076,
+ "step": 3522
+ },
+ {
+ "epoch": 48.93665356050677,
+ "grad_norm": 0.2542882561683655,
+ "learning_rate": 0.0006,
+ "loss": 3.6014773845672607,
+ "step": 3523
+ },
+ {
+ "epoch": 48.95063346439493,
+ "grad_norm": 0.2878575026988983,
+ "learning_rate": 0.0006,
+ "loss": 3.5825531482696533,
+ "step": 3524
+ },
+ {
+ "epoch": 48.964613368283096,
+ "grad_norm": 0.3157055675983429,
+ "learning_rate": 0.0006,
+ "loss": 3.5986037254333496,
+ "step": 3525
+ },
+ {
+ "epoch": 48.97859327217125,
+ "grad_norm": 0.2815262973308563,
+ "learning_rate": 0.0006,
+ "loss": 3.6099600791931152,
+ "step": 3526
+ },
+ {
+ "epoch": 48.992573176059416,
+ "grad_norm": 0.22102823853492737,
+ "learning_rate": 0.0006,
+ "loss": 3.5859827995300293,
+ "step": 3527
+ },
+ {
+ "epoch": 49.0,
+ "grad_norm": 0.24937094748020172,
+ "learning_rate": 0.0006,
+ "loss": 3.622842311859131,
+ "step": 3528
+ },
+ {
+ "epoch": 49.0,
+ "eval_loss": 3.977067232131958,
+ "eval_runtime": 45.5503,
+ "eval_samples_per_second": 53.611,
+ "eval_steps_per_second": 3.359,
+ "step": 3528
+ },
+ {
+ "epoch": 49.01397990388816,
+ "grad_norm": 0.25072216987609863,
+ "learning_rate": 0.0006,
+ "loss": 3.590653419494629,
+ "step": 3529
+ },
+ {
+ "epoch": 49.02795980777632,
+ "grad_norm": 0.2611052989959717,
+ "learning_rate": 0.0006,
+ "loss": 3.5504279136657715,
+ "step": 3530
+ },
+ {
+ "epoch": 49.04193971166448,
+ "grad_norm": 0.2547961473464966,
+ "learning_rate": 0.0006,
+ "loss": 3.5797581672668457,
+ "step": 3531
+ },
+ {
+ "epoch": 49.05591961555265,
+ "grad_norm": 0.25674310326576233,
+ "learning_rate": 0.0006,
+ "loss": 3.557278871536255,
+ "step": 3532
+ },
+ {
+ "epoch": 49.0698995194408,
+ "grad_norm": 0.25511929392814636,
+ "learning_rate": 0.0006,
+ "loss": 3.5788025856018066,
+ "step": 3533
+ },
+ {
+ "epoch": 49.083879423328966,
+ "grad_norm": 0.22920994460582733,
+ "learning_rate": 0.0006,
+ "loss": 3.580489158630371,
+ "step": 3534
+ },
+ {
+ "epoch": 49.09785932721712,
+ "grad_norm": 0.23436492681503296,
+ "learning_rate": 0.0006,
+ "loss": 3.5603699684143066,
+ "step": 3535
+ },
+ {
+ "epoch": 49.111839231105286,
+ "grad_norm": 0.2542382776737213,
+ "learning_rate": 0.0006,
+ "loss": 3.5937037467956543,
+ "step": 3536
+ },
+ {
+ "epoch": 49.12581913499345,
+ "grad_norm": 0.26718273758888245,
+ "learning_rate": 0.0006,
+ "loss": 3.6032168865203857,
+ "step": 3537
+ },
+ {
+ "epoch": 49.139799038881605,
+ "grad_norm": 0.2406773865222931,
+ "learning_rate": 0.0006,
+ "loss": 3.5737085342407227,
+ "step": 3538
+ },
+ {
+ "epoch": 49.15377894276977,
+ "grad_norm": 0.23408754169940948,
+ "learning_rate": 0.0006,
+ "loss": 3.592543601989746,
+ "step": 3539
+ },
+ {
+ "epoch": 49.16775884665793,
+ "grad_norm": 0.22974351048469543,
+ "learning_rate": 0.0006,
+ "loss": 3.543618679046631,
+ "step": 3540
+ },
+ {
+ "epoch": 49.18173875054609,
+ "grad_norm": 0.23479530215263367,
+ "learning_rate": 0.0006,
+ "loss": 3.547590732574463,
+ "step": 3541
+ },
+ {
+ "epoch": 49.19571865443425,
+ "grad_norm": 0.2100638598203659,
+ "learning_rate": 0.0006,
+ "loss": 3.6027469635009766,
+ "step": 3542
+ },
+ {
+ "epoch": 49.20969855832241,
+ "grad_norm": 0.20239035785198212,
+ "learning_rate": 0.0006,
+ "loss": 3.598567008972168,
+ "step": 3543
+ },
+ {
+ "epoch": 49.22367846221057,
+ "grad_norm": 0.20480065047740936,
+ "learning_rate": 0.0006,
+ "loss": 3.591038227081299,
+ "step": 3544
+ },
+ {
+ "epoch": 49.237658366098735,
+ "grad_norm": 0.20439887046813965,
+ "learning_rate": 0.0006,
+ "loss": 3.555039405822754,
+ "step": 3545
+ },
+ {
+ "epoch": 49.25163826998689,
+ "grad_norm": 0.21245788037776947,
+ "learning_rate": 0.0006,
+ "loss": 3.5772666931152344,
+ "step": 3546
+ },
+ {
+ "epoch": 49.265618173875055,
+ "grad_norm": 0.1993357390165329,
+ "learning_rate": 0.0006,
+ "loss": 3.5847411155700684,
+ "step": 3547
+ },
+ {
+ "epoch": 49.27959807776322,
+ "grad_norm": 0.22550229728221893,
+ "learning_rate": 0.0006,
+ "loss": 3.5679750442504883,
+ "step": 3548
+ },
+ {
+ "epoch": 49.293577981651374,
+ "grad_norm": 0.2383355349302292,
+ "learning_rate": 0.0006,
+ "loss": 3.57085919380188,
+ "step": 3549
+ },
+ {
+ "epoch": 49.30755788553954,
+ "grad_norm": 0.23968911170959473,
+ "learning_rate": 0.0006,
+ "loss": 3.557415246963501,
+ "step": 3550
+ },
+ {
+ "epoch": 49.3215377894277,
+ "grad_norm": 0.21453262865543365,
+ "learning_rate": 0.0006,
+ "loss": 3.5763611793518066,
+ "step": 3551
+ },
+ {
+ "epoch": 49.33551769331586,
+ "grad_norm": 0.20380273461341858,
+ "learning_rate": 0.0006,
+ "loss": 3.552011013031006,
+ "step": 3552
+ },
+ {
+ "epoch": 49.34949759720402,
+ "grad_norm": 0.19719970226287842,
+ "learning_rate": 0.0006,
+ "loss": 3.5719075202941895,
+ "step": 3553
+ },
+ {
+ "epoch": 49.36347750109218,
+ "grad_norm": 0.19018089771270752,
+ "learning_rate": 0.0006,
+ "loss": 3.5843467712402344,
+ "step": 3554
+ },
+ {
+ "epoch": 49.37745740498034,
+ "grad_norm": 0.18369099497795105,
+ "learning_rate": 0.0006,
+ "loss": 3.561741352081299,
+ "step": 3555
+ },
+ {
+ "epoch": 49.391437308868504,
+ "grad_norm": 0.2070280760526657,
+ "learning_rate": 0.0006,
+ "loss": 3.590721607208252,
+ "step": 3556
+ },
+ {
+ "epoch": 49.40541721275666,
+ "grad_norm": 0.23287905752658844,
+ "learning_rate": 0.0006,
+ "loss": 3.617081642150879,
+ "step": 3557
+ },
+ {
+ "epoch": 49.419397116644824,
+ "grad_norm": 0.21877793967723846,
+ "learning_rate": 0.0006,
+ "loss": 3.547166347503662,
+ "step": 3558
+ },
+ {
+ "epoch": 49.43337702053299,
+ "grad_norm": 0.21105137467384338,
+ "learning_rate": 0.0006,
+ "loss": 3.593552350997925,
+ "step": 3559
+ },
+ {
+ "epoch": 49.44735692442114,
+ "grad_norm": 0.24940872192382812,
+ "learning_rate": 0.0006,
+ "loss": 3.599729537963867,
+ "step": 3560
+ },
+ {
+ "epoch": 49.46133682830931,
+ "grad_norm": 0.26952996850013733,
+ "learning_rate": 0.0006,
+ "loss": 3.5915074348449707,
+ "step": 3561
+ },
+ {
+ "epoch": 49.47531673219746,
+ "grad_norm": 0.25706353783607483,
+ "learning_rate": 0.0006,
+ "loss": 3.587472915649414,
+ "step": 3562
+ },
+ {
+ "epoch": 49.489296636085626,
+ "grad_norm": 0.23666661977767944,
+ "learning_rate": 0.0006,
+ "loss": 3.561340808868408,
+ "step": 3563
+ },
+ {
+ "epoch": 49.50327653997379,
+ "grad_norm": 0.22524063289165497,
+ "learning_rate": 0.0006,
+ "loss": 3.587310314178467,
+ "step": 3564
+ },
+ {
+ "epoch": 49.517256443861946,
+ "grad_norm": 0.22991003096103668,
+ "learning_rate": 0.0006,
+ "loss": 3.56671142578125,
+ "step": 3565
+ },
+ {
+ "epoch": 49.53123634775011,
+ "grad_norm": 0.23067602515220642,
+ "learning_rate": 0.0006,
+ "loss": 3.578601837158203,
+ "step": 3566
+ },
+ {
+ "epoch": 49.54521625163827,
+ "grad_norm": 0.2133914828300476,
+ "learning_rate": 0.0006,
+ "loss": 3.593726873397827,
+ "step": 3567
+ },
+ {
+ "epoch": 49.55919615552643,
+ "grad_norm": 0.21879160404205322,
+ "learning_rate": 0.0006,
+ "loss": 3.5833992958068848,
+ "step": 3568
+ },
+ {
+ "epoch": 49.57317605941459,
+ "grad_norm": 0.2116270661354065,
+ "learning_rate": 0.0006,
+ "loss": 3.575761079788208,
+ "step": 3569
+ },
+ {
+ "epoch": 49.58715596330275,
+ "grad_norm": 0.19506660103797913,
+ "learning_rate": 0.0006,
+ "loss": 3.5600461959838867,
+ "step": 3570
+ },
+ {
+ "epoch": 49.60113586719091,
+ "grad_norm": 0.21305067837238312,
+ "learning_rate": 0.0006,
+ "loss": 3.5717577934265137,
+ "step": 3571
+ },
+ {
+ "epoch": 49.615115771079076,
+ "grad_norm": 0.21184347569942474,
+ "learning_rate": 0.0006,
+ "loss": 3.608819007873535,
+ "step": 3572
+ },
+ {
+ "epoch": 49.62909567496723,
+ "grad_norm": 0.22302201390266418,
+ "learning_rate": 0.0006,
+ "loss": 3.5871644020080566,
+ "step": 3573
+ },
+ {
+ "epoch": 49.643075578855395,
+ "grad_norm": 0.21942365169525146,
+ "learning_rate": 0.0006,
+ "loss": 3.596029043197632,
+ "step": 3574
+ },
+ {
+ "epoch": 49.65705548274356,
+ "grad_norm": 0.2627110481262207,
+ "learning_rate": 0.0006,
+ "loss": 3.5900766849517822,
+ "step": 3575
+ },
+ {
+ "epoch": 49.671035386631715,
+ "grad_norm": 0.28253448009490967,
+ "learning_rate": 0.0006,
+ "loss": 3.599386215209961,
+ "step": 3576
+ },
+ {
+ "epoch": 49.68501529051988,
+ "grad_norm": 0.24279426038265228,
+ "learning_rate": 0.0006,
+ "loss": 3.580909013748169,
+ "step": 3577
+ },
+ {
+ "epoch": 49.69899519440804,
+ "grad_norm": 0.22092898190021515,
+ "learning_rate": 0.0006,
+ "loss": 3.6043782234191895,
+ "step": 3578
+ },
+ {
+ "epoch": 49.7129750982962,
+ "grad_norm": 0.23356051743030548,
+ "learning_rate": 0.0006,
+ "loss": 3.6103105545043945,
+ "step": 3579
+ },
+ {
+ "epoch": 49.72695500218436,
+ "grad_norm": 0.24508118629455566,
+ "learning_rate": 0.0006,
+ "loss": 3.612980365753174,
+ "step": 3580
+ },
+ {
+ "epoch": 49.74093490607252,
+ "grad_norm": 0.2501833438873291,
+ "learning_rate": 0.0006,
+ "loss": 3.6111063957214355,
+ "step": 3581
+ },
+ {
+ "epoch": 49.75491480996068,
+ "grad_norm": 0.2263427972793579,
+ "learning_rate": 0.0006,
+ "loss": 3.5709285736083984,
+ "step": 3582
+ },
+ {
+ "epoch": 49.768894713848844,
+ "grad_norm": 0.19881728291511536,
+ "learning_rate": 0.0006,
+ "loss": 3.5836503505706787,
+ "step": 3583
+ },
+ {
+ "epoch": 49.782874617737,
+ "grad_norm": 0.22516517341136932,
+ "learning_rate": 0.0006,
+ "loss": 3.5797667503356934,
+ "step": 3584
+ },
+ {
+ "epoch": 49.796854521625164,
+ "grad_norm": 0.22347061336040497,
+ "learning_rate": 0.0006,
+ "loss": 3.6245951652526855,
+ "step": 3585
+ },
+ {
+ "epoch": 49.81083442551333,
+ "grad_norm": 0.2062593549489975,
+ "learning_rate": 0.0006,
+ "loss": 3.607572317123413,
+ "step": 3586
+ },
+ {
+ "epoch": 49.824814329401484,
+ "grad_norm": 0.20671074092388153,
+ "learning_rate": 0.0006,
+ "loss": 3.5671472549438477,
+ "step": 3587
+ },
+ {
+ "epoch": 49.83879423328965,
+ "grad_norm": 0.19981902837753296,
+ "learning_rate": 0.0006,
+ "loss": 3.6084837913513184,
+ "step": 3588
+ },
+ {
+ "epoch": 49.8527741371778,
+ "grad_norm": 0.2004556804895401,
+ "learning_rate": 0.0006,
+ "loss": 3.631455898284912,
+ "step": 3589
+ },
+ {
+ "epoch": 49.86675404106597,
+ "grad_norm": 0.20990414917469025,
+ "learning_rate": 0.0006,
+ "loss": 3.6017699241638184,
+ "step": 3590
+ },
+ {
+ "epoch": 49.88073394495413,
+ "grad_norm": 0.19016146659851074,
+ "learning_rate": 0.0006,
+ "loss": 3.6110801696777344,
+ "step": 3591
+ },
+ {
+ "epoch": 49.89471384884229,
+ "grad_norm": 0.2015834003686905,
+ "learning_rate": 0.0006,
+ "loss": 3.58852481842041,
+ "step": 3592
+ },
+ {
+ "epoch": 49.90869375273045,
+ "grad_norm": 0.205678328871727,
+ "learning_rate": 0.0006,
+ "loss": 3.581789970397949,
+ "step": 3593
+ },
+ {
+ "epoch": 49.92267365661861,
+ "grad_norm": 0.20975211262702942,
+ "learning_rate": 0.0006,
+ "loss": 3.6126320362091064,
+ "step": 3594
+ },
+ {
+ "epoch": 49.93665356050677,
+ "grad_norm": 0.20510081946849823,
+ "learning_rate": 0.0006,
+ "loss": 3.5970656871795654,
+ "step": 3595
+ },
+ {
+ "epoch": 49.95063346439493,
+ "grad_norm": 0.19842886924743652,
+ "learning_rate": 0.0006,
+ "loss": 3.6055545806884766,
+ "step": 3596
+ },
+ {
+ "epoch": 49.964613368283096,
+ "grad_norm": 0.20551791787147522,
+ "learning_rate": 0.0006,
+ "loss": 3.5861949920654297,
+ "step": 3597
+ },
+ {
+ "epoch": 49.97859327217125,
+ "grad_norm": 0.21147456765174866,
+ "learning_rate": 0.0006,
+ "loss": 3.585934638977051,
+ "step": 3598
+ },
+ {
+ "epoch": 49.992573176059416,
+ "grad_norm": 0.21793442964553833,
+ "learning_rate": 0.0006,
+ "loss": 3.5956411361694336,
+ "step": 3599
+ },
+ {
+ "epoch": 50.0,
+ "grad_norm": 0.24623161554336548,
+ "learning_rate": 0.0006,
+ "loss": 3.623453140258789,
+ "step": 3600
+ },
+ {
+ "epoch": 50.0,
+ "eval_loss": 3.9807891845703125,
+ "eval_runtime": 45.7708,
+ "eval_samples_per_second": 53.353,
+ "eval_steps_per_second": 3.343,
+ "step": 3600
+ },
+ {
+ "epoch": 50.01397990388816,
+ "grad_norm": 0.22322626411914825,
+ "learning_rate": 0.0006,
+ "loss": 3.5475401878356934,
+ "step": 3601
+ },
+ {
+ "epoch": 50.02795980777632,
+ "grad_norm": 0.21957066655158997,
+ "learning_rate": 0.0006,
+ "loss": 3.5616683959960938,
+ "step": 3602
+ },
+ {
+ "epoch": 50.04193971166448,
+ "grad_norm": 0.22030551731586456,
+ "learning_rate": 0.0006,
+ "loss": 3.56367826461792,
+ "step": 3603
+ },
+ {
+ "epoch": 50.05591961555265,
+ "grad_norm": 0.21536092460155487,
+ "learning_rate": 0.0006,
+ "loss": 3.5613503456115723,
+ "step": 3604
+ },
+ {
+ "epoch": 50.0698995194408,
+ "grad_norm": 0.22454269230365753,
+ "learning_rate": 0.0006,
+ "loss": 3.5348987579345703,
+ "step": 3605
+ },
+ {
+ "epoch": 50.083879423328966,
+ "grad_norm": 0.2281617820262909,
+ "learning_rate": 0.0006,
+ "loss": 3.5722241401672363,
+ "step": 3606
+ },
+ {
+ "epoch": 50.09785932721712,
+ "grad_norm": 0.23318710923194885,
+ "learning_rate": 0.0006,
+ "loss": 3.559063673019409,
+ "step": 3607
+ },
+ {
+ "epoch": 50.111839231105286,
+ "grad_norm": 0.2277889847755432,
+ "learning_rate": 0.0006,
+ "loss": 3.5632925033569336,
+ "step": 3608
+ },
+ {
+ "epoch": 50.12581913499345,
+ "grad_norm": 0.2317705601453781,
+ "learning_rate": 0.0006,
+ "loss": 3.5835886001586914,
+ "step": 3609
+ },
+ {
+ "epoch": 50.139799038881605,
+ "grad_norm": 0.21388863027095795,
+ "learning_rate": 0.0006,
+ "loss": 3.5976145267486572,
+ "step": 3610
+ },
+ {
+ "epoch": 50.15377894276977,
+ "grad_norm": 0.2070954293012619,
+ "learning_rate": 0.0006,
+ "loss": 3.5486221313476562,
+ "step": 3611
+ },
+ {
+ "epoch": 50.16775884665793,
+ "grad_norm": 0.21602077782154083,
+ "learning_rate": 0.0006,
+ "loss": 3.5897607803344727,
+ "step": 3612
+ },
+ {
+ "epoch": 50.18173875054609,
+ "grad_norm": 0.21106162667274475,
+ "learning_rate": 0.0006,
+ "loss": 3.5587167739868164,
+ "step": 3613
+ },
+ {
+ "epoch": 50.19571865443425,
+ "grad_norm": 0.2047950178384781,
+ "learning_rate": 0.0006,
+ "loss": 3.576798915863037,
+ "step": 3614
+ },
+ {
+ "epoch": 50.20969855832241,
+ "grad_norm": 0.2204097956418991,
+ "learning_rate": 0.0006,
+ "loss": 3.5466837882995605,
+ "step": 3615
+ },
+ {
+ "epoch": 50.22367846221057,
+ "grad_norm": 0.2220875471830368,
+ "learning_rate": 0.0006,
+ "loss": 3.5722036361694336,
+ "step": 3616
+ },
+ {
+ "epoch": 50.237658366098735,
+ "grad_norm": 0.2250797003507614,
+ "learning_rate": 0.0006,
+ "loss": 3.566347122192383,
+ "step": 3617
+ },
+ {
+ "epoch": 50.25163826998689,
+ "grad_norm": 0.22837485373020172,
+ "learning_rate": 0.0006,
+ "loss": 3.5673274993896484,
+ "step": 3618
+ },
+ {
+ "epoch": 50.265618173875055,
+ "grad_norm": 0.2281104475259781,
+ "learning_rate": 0.0006,
+ "loss": 3.5543737411499023,
+ "step": 3619
+ },
+ {
+ "epoch": 50.27959807776322,
+ "grad_norm": 0.2052381932735443,
+ "learning_rate": 0.0006,
+ "loss": 3.566401958465576,
+ "step": 3620
+ },
+ {
+ "epoch": 50.293577981651374,
+ "grad_norm": 0.2125921994447708,
+ "learning_rate": 0.0006,
+ "loss": 3.5467424392700195,
+ "step": 3621
+ },
+ {
+ "epoch": 50.30755788553954,
+ "grad_norm": 0.22641244530677795,
+ "learning_rate": 0.0006,
+ "loss": 3.548497200012207,
+ "step": 3622
+ },
+ {
+ "epoch": 50.3215377894277,
+ "grad_norm": 0.23039482533931732,
+ "learning_rate": 0.0006,
+ "loss": 3.5948381423950195,
+ "step": 3623
+ },
+ {
+ "epoch": 50.33551769331586,
+ "grad_norm": 0.22753404080867767,
+ "learning_rate": 0.0006,
+ "loss": 3.541825532913208,
+ "step": 3624
+ },
+ {
+ "epoch": 50.34949759720402,
+ "grad_norm": 0.2528170347213745,
+ "learning_rate": 0.0006,
+ "loss": 3.5937235355377197,
+ "step": 3625
+ },
+ {
+ "epoch": 50.36347750109218,
+ "grad_norm": 0.25434595346450806,
+ "learning_rate": 0.0006,
+ "loss": 3.5779776573181152,
+ "step": 3626
+ },
+ {
+ "epoch": 50.37745740498034,
+ "grad_norm": 0.22519059479236603,
+ "learning_rate": 0.0006,
+ "loss": 3.5456271171569824,
+ "step": 3627
+ },
+ {
+ "epoch": 50.391437308868504,
+ "grad_norm": 0.2077232301235199,
+ "learning_rate": 0.0006,
+ "loss": 3.5693111419677734,
+ "step": 3628
+ },
+ {
+ "epoch": 50.40541721275666,
+ "grad_norm": 0.20925411581993103,
+ "learning_rate": 0.0006,
+ "loss": 3.6063997745513916,
+ "step": 3629
+ },
+ {
+ "epoch": 50.419397116644824,
+ "grad_norm": 0.2114555686712265,
+ "learning_rate": 0.0006,
+ "loss": 3.5676894187927246,
+ "step": 3630
+ },
+ {
+ "epoch": 50.43337702053299,
+ "grad_norm": 0.23759354650974274,
+ "learning_rate": 0.0006,
+ "loss": 3.5465126037597656,
+ "step": 3631
+ },
+ {
+ "epoch": 50.44735692442114,
+ "grad_norm": 0.23809516429901123,
+ "learning_rate": 0.0006,
+ "loss": 3.571600914001465,
+ "step": 3632
+ },
+ {
+ "epoch": 50.46133682830931,
+ "grad_norm": 0.20501303672790527,
+ "learning_rate": 0.0006,
+ "loss": 3.573550224304199,
+ "step": 3633
+ },
+ {
+ "epoch": 50.47531673219746,
+ "grad_norm": 0.21562306582927704,
+ "learning_rate": 0.0006,
+ "loss": 3.5625600814819336,
+ "step": 3634
+ },
+ {
+ "epoch": 50.489296636085626,
+ "grad_norm": 0.20469479262828827,
+ "learning_rate": 0.0006,
+ "loss": 3.5737175941467285,
+ "step": 3635
+ },
+ {
+ "epoch": 50.50327653997379,
+ "grad_norm": 0.2078634798526764,
+ "learning_rate": 0.0006,
+ "loss": 3.5691545009613037,
+ "step": 3636
+ },
+ {
+ "epoch": 50.517256443861946,
+ "grad_norm": 0.20340897142887115,
+ "learning_rate": 0.0006,
+ "loss": 3.583918571472168,
+ "step": 3637
+ },
+ {
+ "epoch": 50.53123634775011,
+ "grad_norm": 0.2006944715976715,
+ "learning_rate": 0.0006,
+ "loss": 3.596034049987793,
+ "step": 3638
+ },
+ {
+ "epoch": 50.54521625163827,
+ "grad_norm": 0.19281257688999176,
+ "learning_rate": 0.0006,
+ "loss": 3.5993080139160156,
+ "step": 3639
+ },
+ {
+ "epoch": 50.55919615552643,
+ "grad_norm": 0.19528807699680328,
+ "learning_rate": 0.0006,
+ "loss": 3.6108102798461914,
+ "step": 3640
+ },
+ {
+ "epoch": 50.57317605941459,
+ "grad_norm": 0.19329112768173218,
+ "learning_rate": 0.0006,
+ "loss": 3.5964512825012207,
+ "step": 3641
+ },
+ {
+ "epoch": 50.58715596330275,
+ "grad_norm": 0.1928209513425827,
+ "learning_rate": 0.0006,
+ "loss": 3.5927724838256836,
+ "step": 3642
+ },
+ {
+ "epoch": 50.60113586719091,
+ "grad_norm": 0.20212236046791077,
+ "learning_rate": 0.0006,
+ "loss": 3.5778708457946777,
+ "step": 3643
+ },
+ {
+ "epoch": 50.615115771079076,
+ "grad_norm": 0.22244620323181152,
+ "learning_rate": 0.0006,
+ "loss": 3.6219539642333984,
+ "step": 3644
+ },
+ {
+ "epoch": 50.62909567496723,
+ "grad_norm": 0.2659119963645935,
+ "learning_rate": 0.0006,
+ "loss": 3.578831195831299,
+ "step": 3645
+ },
+ {
+ "epoch": 50.643075578855395,
+ "grad_norm": 0.2837344706058502,
+ "learning_rate": 0.0006,
+ "loss": 3.587677240371704,
+ "step": 3646
+ },
+ {
+ "epoch": 50.65705548274356,
+ "grad_norm": 0.26747965812683105,
+ "learning_rate": 0.0006,
+ "loss": 3.611286163330078,
+ "step": 3647
+ },
+ {
+ "epoch": 50.671035386631715,
+ "grad_norm": 0.24604788422584534,
+ "learning_rate": 0.0006,
+ "loss": 3.5740575790405273,
+ "step": 3648
+ },
+ {
+ "epoch": 50.68501529051988,
+ "grad_norm": 0.2379457652568817,
+ "learning_rate": 0.0006,
+ "loss": 3.5997209548950195,
+ "step": 3649
+ },
+ {
+ "epoch": 50.69899519440804,
+ "grad_norm": 0.2296321839094162,
+ "learning_rate": 0.0006,
+ "loss": 3.5975162982940674,
+ "step": 3650
+ },
+ {
+ "epoch": 50.7129750982962,
+ "grad_norm": 0.22054627537727356,
+ "learning_rate": 0.0006,
+ "loss": 3.5821738243103027,
+ "step": 3651
+ },
+ {
+ "epoch": 50.72695500218436,
+ "grad_norm": 0.22114980220794678,
+ "learning_rate": 0.0006,
+ "loss": 3.5769970417022705,
+ "step": 3652
+ },
+ {
+ "epoch": 50.74093490607252,
+ "grad_norm": 0.21389314532279968,
+ "learning_rate": 0.0006,
+ "loss": 3.5952796936035156,
+ "step": 3653
+ },
+ {
+ "epoch": 50.75491480996068,
+ "grad_norm": 0.21069210767745972,
+ "learning_rate": 0.0006,
+ "loss": 3.5884671211242676,
+ "step": 3654
+ },
+ {
+ "epoch": 50.768894713848844,
+ "grad_norm": 0.22028805315494537,
+ "learning_rate": 0.0006,
+ "loss": 3.593442440032959,
+ "step": 3655
+ },
+ {
+ "epoch": 50.782874617737,
+ "grad_norm": 0.21296948194503784,
+ "learning_rate": 0.0006,
+ "loss": 3.5656774044036865,
+ "step": 3656
+ },
+ {
+ "epoch": 50.796854521625164,
+ "grad_norm": 0.19871588051319122,
+ "learning_rate": 0.0006,
+ "loss": 3.5939064025878906,
+ "step": 3657
+ },
+ {
+ "epoch": 50.81083442551333,
+ "grad_norm": 0.19523470103740692,
+ "learning_rate": 0.0006,
+ "loss": 3.5806071758270264,
+ "step": 3658
+ },
+ {
+ "epoch": 50.824814329401484,
+ "grad_norm": 0.18718191981315613,
+ "learning_rate": 0.0006,
+ "loss": 3.5903120040893555,
+ "step": 3659
+ },
+ {
+ "epoch": 50.83879423328965,
+ "grad_norm": 0.18796689808368683,
+ "learning_rate": 0.0006,
+ "loss": 3.5799593925476074,
+ "step": 3660
+ },
+ {
+ "epoch": 50.8527741371778,
+ "grad_norm": 0.21794569492340088,
+ "learning_rate": 0.0006,
+ "loss": 3.5712361335754395,
+ "step": 3661
+ },
+ {
+ "epoch": 50.86675404106597,
+ "grad_norm": 0.2374759465456009,
+ "learning_rate": 0.0006,
+ "loss": 3.602503776550293,
+ "step": 3662
+ },
+ {
+ "epoch": 50.88073394495413,
+ "grad_norm": 0.20213527977466583,
+ "learning_rate": 0.0006,
+ "loss": 3.5756399631500244,
+ "step": 3663
+ },
+ {
+ "epoch": 50.89471384884229,
+ "grad_norm": 0.1875160187482834,
+ "learning_rate": 0.0006,
+ "loss": 3.625436305999756,
+ "step": 3664
+ },
+ {
+ "epoch": 50.90869375273045,
+ "grad_norm": 0.19908255338668823,
+ "learning_rate": 0.0006,
+ "loss": 3.592522621154785,
+ "step": 3665
+ },
+ {
+ "epoch": 50.92267365661861,
+ "grad_norm": 0.20776167511940002,
+ "learning_rate": 0.0006,
+ "loss": 3.5777883529663086,
+ "step": 3666
+ },
+ {
+ "epoch": 50.93665356050677,
+ "grad_norm": 0.19510093331336975,
+ "learning_rate": 0.0006,
+ "loss": 3.587306022644043,
+ "step": 3667
+ },
+ {
+ "epoch": 50.95063346439493,
+ "grad_norm": 0.2180490493774414,
+ "learning_rate": 0.0006,
+ "loss": 3.5855464935302734,
+ "step": 3668
+ },
+ {
+ "epoch": 50.964613368283096,
+ "grad_norm": 0.19967055320739746,
+ "learning_rate": 0.0006,
+ "loss": 3.609689235687256,
+ "step": 3669
+ },
+ {
+ "epoch": 50.97859327217125,
+ "grad_norm": 0.2081584632396698,
+ "learning_rate": 0.0006,
+ "loss": 3.625236749649048,
+ "step": 3670
+ },
+ {
+ "epoch": 50.992573176059416,
+ "grad_norm": 0.2312266230583191,
+ "learning_rate": 0.0006,
+ "loss": 3.5977330207824707,
+ "step": 3671
+ },
+ {
+ "epoch": 51.0,
+ "grad_norm": 0.2464766502380371,
+ "learning_rate": 0.0006,
+ "loss": 3.610635995864868,
+ "step": 3672
+ },
+ {
+ "epoch": 51.0,
+ "eval_loss": 3.9810166358947754,
+ "eval_runtime": 45.5851,
+ "eval_samples_per_second": 53.57,
+ "eval_steps_per_second": 3.356,
+ "step": 3672
+ },
+ {
+ "epoch": 51.01397990388816,
+ "grad_norm": 0.22583232820034027,
+ "learning_rate": 0.0006,
+ "loss": 3.547168016433716,
+ "step": 3673
+ },
+ {
+ "epoch": 51.02795980777632,
+ "grad_norm": 0.23001070320606232,
+ "learning_rate": 0.0006,
+ "loss": 3.546207904815674,
+ "step": 3674
+ },
+ {
+ "epoch": 51.04193971166448,
+ "grad_norm": 0.21891392767429352,
+ "learning_rate": 0.0006,
+ "loss": 3.564371109008789,
+ "step": 3675
+ },
+ {
+ "epoch": 51.05591961555265,
+ "grad_norm": 0.22195076942443848,
+ "learning_rate": 0.0006,
+ "loss": 3.538297414779663,
+ "step": 3676
+ },
+ {
+ "epoch": 51.0698995194408,
+ "grad_norm": 0.24688288569450378,
+ "learning_rate": 0.0006,
+ "loss": 3.5705811977386475,
+ "step": 3677
+ },
+ {
+ "epoch": 51.083879423328966,
+ "grad_norm": 0.2731003165245056,
+ "learning_rate": 0.0006,
+ "loss": 3.530763626098633,
+ "step": 3678
+ },
+ {
+ "epoch": 51.09785932721712,
+ "grad_norm": 0.27474021911621094,
+ "learning_rate": 0.0006,
+ "loss": 3.5559208393096924,
+ "step": 3679
+ },
+ {
+ "epoch": 51.111839231105286,
+ "grad_norm": 0.26311439275741577,
+ "learning_rate": 0.0006,
+ "loss": 3.5698819160461426,
+ "step": 3680
+ },
+ {
+ "epoch": 51.12581913499345,
+ "grad_norm": 0.21895965933799744,
+ "learning_rate": 0.0006,
+ "loss": 3.567232370376587,
+ "step": 3681
+ },
+ {
+ "epoch": 51.139799038881605,
+ "grad_norm": 0.19598282873630524,
+ "learning_rate": 0.0006,
+ "loss": 3.6033718585968018,
+ "step": 3682
+ },
+ {
+ "epoch": 51.15377894276977,
+ "grad_norm": 0.2183268666267395,
+ "learning_rate": 0.0006,
+ "loss": 3.5599026679992676,
+ "step": 3683
+ },
+ {
+ "epoch": 51.16775884665793,
+ "grad_norm": 0.22657731175422668,
+ "learning_rate": 0.0006,
+ "loss": 3.532038688659668,
+ "step": 3684
+ },
+ {
+ "epoch": 51.18173875054609,
+ "grad_norm": 0.21979935467243195,
+ "learning_rate": 0.0006,
+ "loss": 3.544640064239502,
+ "step": 3685
+ },
+ {
+ "epoch": 51.19571865443425,
+ "grad_norm": 0.20581361651420593,
+ "learning_rate": 0.0006,
+ "loss": 3.579803466796875,
+ "step": 3686
+ },
+ {
+ "epoch": 51.20969855832241,
+ "grad_norm": 0.22677212953567505,
+ "learning_rate": 0.0006,
+ "loss": 3.576796054840088,
+ "step": 3687
+ },
+ {
+ "epoch": 51.22367846221057,
+ "grad_norm": 0.2599104940891266,
+ "learning_rate": 0.0006,
+ "loss": 3.5657899379730225,
+ "step": 3688
+ },
+ {
+ "epoch": 51.237658366098735,
+ "grad_norm": 0.23320309817790985,
+ "learning_rate": 0.0006,
+ "loss": 3.5537824630737305,
+ "step": 3689
+ },
+ {
+ "epoch": 51.25163826998689,
+ "grad_norm": 0.2345186471939087,
+ "learning_rate": 0.0006,
+ "loss": 3.5699901580810547,
+ "step": 3690
+ },
+ {
+ "epoch": 51.265618173875055,
+ "grad_norm": 0.24723312258720398,
+ "learning_rate": 0.0006,
+ "loss": 3.553495168685913,
+ "step": 3691
+ },
+ {
+ "epoch": 51.27959807776322,
+ "grad_norm": 0.24195604026317596,
+ "learning_rate": 0.0006,
+ "loss": 3.6008248329162598,
+ "step": 3692
+ },
+ {
+ "epoch": 51.293577981651374,
+ "grad_norm": 0.23011726140975952,
+ "learning_rate": 0.0006,
+ "loss": 3.5842812061309814,
+ "step": 3693
+ },
+ {
+ "epoch": 51.30755788553954,
+ "grad_norm": 0.23412185907363892,
+ "learning_rate": 0.0006,
+ "loss": 3.5648040771484375,
+ "step": 3694
+ },
+ {
+ "epoch": 51.3215377894277,
+ "grad_norm": 0.22911828756332397,
+ "learning_rate": 0.0006,
+ "loss": 3.5599000453948975,
+ "step": 3695
+ },
+ {
+ "epoch": 51.33551769331586,
+ "grad_norm": 0.20045386254787445,
+ "learning_rate": 0.0006,
+ "loss": 3.559370517730713,
+ "step": 3696
+ },
+ {
+ "epoch": 51.34949759720402,
+ "grad_norm": 0.24723322689533234,
+ "learning_rate": 0.0006,
+ "loss": 3.5734081268310547,
+ "step": 3697
+ },
+ {
+ "epoch": 51.36347750109218,
+ "grad_norm": 0.28003066778182983,
+ "learning_rate": 0.0006,
+ "loss": 3.574591636657715,
+ "step": 3698
+ },
+ {
+ "epoch": 51.37745740498034,
+ "grad_norm": 0.27969157695770264,
+ "learning_rate": 0.0006,
+ "loss": 3.5703907012939453,
+ "step": 3699
+ },
+ {
+ "epoch": 51.391437308868504,
+ "grad_norm": 0.2352922111749649,
+ "learning_rate": 0.0006,
+ "loss": 3.540452480316162,
+ "step": 3700
+ },
+ {
+ "epoch": 51.40541721275666,
+ "grad_norm": 0.21332240104675293,
+ "learning_rate": 0.0006,
+ "loss": 3.5883522033691406,
+ "step": 3701
+ },
+ {
+ "epoch": 51.419397116644824,
+ "grad_norm": 0.2021809071302414,
+ "learning_rate": 0.0006,
+ "loss": 3.567544460296631,
+ "step": 3702
+ },
+ {
+ "epoch": 51.43337702053299,
+ "grad_norm": 0.23054654896259308,
+ "learning_rate": 0.0006,
+ "loss": 3.5927062034606934,
+ "step": 3703
+ },
+ {
+ "epoch": 51.44735692442114,
+ "grad_norm": 0.22398747503757477,
+ "learning_rate": 0.0006,
+ "loss": 3.5977213382720947,
+ "step": 3704
+ },
+ {
+ "epoch": 51.46133682830931,
+ "grad_norm": 0.2021128088235855,
+ "learning_rate": 0.0006,
+ "loss": 3.585836887359619,
+ "step": 3705
+ },
+ {
+ "epoch": 51.47531673219746,
+ "grad_norm": 0.23031292855739594,
+ "learning_rate": 0.0006,
+ "loss": 3.532315731048584,
+ "step": 3706
+ },
+ {
+ "epoch": 51.489296636085626,
+ "grad_norm": 0.26744455099105835,
+ "learning_rate": 0.0006,
+ "loss": 3.585782289505005,
+ "step": 3707
+ },
+ {
+ "epoch": 51.50327653997379,
+ "grad_norm": 0.2508980929851532,
+ "learning_rate": 0.0006,
+ "loss": 3.550276279449463,
+ "step": 3708
+ },
+ {
+ "epoch": 51.517256443861946,
+ "grad_norm": 0.2180585265159607,
+ "learning_rate": 0.0006,
+ "loss": 3.566798210144043,
+ "step": 3709
+ },
+ {
+ "epoch": 51.53123634775011,
+ "grad_norm": 0.18508869409561157,
+ "learning_rate": 0.0006,
+ "loss": 3.5295116901397705,
+ "step": 3710
+ },
+ {
+ "epoch": 51.54521625163827,
+ "grad_norm": 0.19017672538757324,
+ "learning_rate": 0.0006,
+ "loss": 3.5932717323303223,
+ "step": 3711
+ },
+ {
+ "epoch": 51.55919615552643,
+ "grad_norm": 0.2228020876646042,
+ "learning_rate": 0.0006,
+ "loss": 3.5660648345947266,
+ "step": 3712
+ },
+ {
+ "epoch": 51.57317605941459,
+ "grad_norm": 0.22948148846626282,
+ "learning_rate": 0.0006,
+ "loss": 3.5785627365112305,
+ "step": 3713
+ },
+ {
+ "epoch": 51.58715596330275,
+ "grad_norm": 0.2438911497592926,
+ "learning_rate": 0.0006,
+ "loss": 3.5885257720947266,
+ "step": 3714
+ },
+ {
+ "epoch": 51.60113586719091,
+ "grad_norm": 0.25012296438217163,
+ "learning_rate": 0.0006,
+ "loss": 3.577232599258423,
+ "step": 3715
+ },
+ {
+ "epoch": 51.615115771079076,
+ "grad_norm": 0.27102336287498474,
+ "learning_rate": 0.0006,
+ "loss": 3.5600078105926514,
+ "step": 3716
+ },
+ {
+ "epoch": 51.62909567496723,
+ "grad_norm": 0.26425355672836304,
+ "learning_rate": 0.0006,
+ "loss": 3.5694093704223633,
+ "step": 3717
+ },
+ {
+ "epoch": 51.643075578855395,
+ "grad_norm": 0.24292822182178497,
+ "learning_rate": 0.0006,
+ "loss": 3.5774331092834473,
+ "step": 3718
+ },
+ {
+ "epoch": 51.65705548274356,
+ "grad_norm": 0.22668084502220154,
+ "learning_rate": 0.0006,
+ "loss": 3.5912742614746094,
+ "step": 3719
+ },
+ {
+ "epoch": 51.671035386631715,
+ "grad_norm": 0.2090575248003006,
+ "learning_rate": 0.0006,
+ "loss": 3.5473170280456543,
+ "step": 3720
+ },
+ {
+ "epoch": 51.68501529051988,
+ "grad_norm": 0.22276616096496582,
+ "learning_rate": 0.0006,
+ "loss": 3.6076784133911133,
+ "step": 3721
+ },
+ {
+ "epoch": 51.69899519440804,
+ "grad_norm": 0.22105294466018677,
+ "learning_rate": 0.0006,
+ "loss": 3.5820791721343994,
+ "step": 3722
+ },
+ {
+ "epoch": 51.7129750982962,
+ "grad_norm": 0.19231240451335907,
+ "learning_rate": 0.0006,
+ "loss": 3.6017708778381348,
+ "step": 3723
+ },
+ {
+ "epoch": 51.72695500218436,
+ "grad_norm": 0.2050354927778244,
+ "learning_rate": 0.0006,
+ "loss": 3.5967769622802734,
+ "step": 3724
+ },
+ {
+ "epoch": 51.74093490607252,
+ "grad_norm": 0.19779305160045624,
+ "learning_rate": 0.0006,
+ "loss": 3.597214698791504,
+ "step": 3725
+ },
+ {
+ "epoch": 51.75491480996068,
+ "grad_norm": 0.22394844889640808,
+ "learning_rate": 0.0006,
+ "loss": 3.574063301086426,
+ "step": 3726
+ },
+ {
+ "epoch": 51.768894713848844,
+ "grad_norm": 0.2262638807296753,
+ "learning_rate": 0.0006,
+ "loss": 3.5754079818725586,
+ "step": 3727
+ },
+ {
+ "epoch": 51.782874617737,
+ "grad_norm": 0.2168288677930832,
+ "learning_rate": 0.0006,
+ "loss": 3.6079599857330322,
+ "step": 3728
+ },
+ {
+ "epoch": 51.796854521625164,
+ "grad_norm": 0.2035517394542694,
+ "learning_rate": 0.0006,
+ "loss": 3.5948667526245117,
+ "step": 3729
+ },
+ {
+ "epoch": 51.81083442551333,
+ "grad_norm": 0.20529425144195557,
+ "learning_rate": 0.0006,
+ "loss": 3.5589542388916016,
+ "step": 3730
+ },
+ {
+ "epoch": 51.824814329401484,
+ "grad_norm": 0.2464100867509842,
+ "learning_rate": 0.0006,
+ "loss": 3.5947155952453613,
+ "step": 3731
+ },
+ {
+ "epoch": 51.83879423328965,
+ "grad_norm": 0.28043219447135925,
+ "learning_rate": 0.0006,
+ "loss": 3.6102852821350098,
+ "step": 3732
+ },
+ {
+ "epoch": 51.8527741371778,
+ "grad_norm": 0.2879013121128082,
+ "learning_rate": 0.0006,
+ "loss": 3.5903573036193848,
+ "step": 3733
+ },
+ {
+ "epoch": 51.86675404106597,
+ "grad_norm": 0.2532044053077698,
+ "learning_rate": 0.0006,
+ "loss": 3.5704729557037354,
+ "step": 3734
+ },
+ {
+ "epoch": 51.88073394495413,
+ "grad_norm": 0.25126248598098755,
+ "learning_rate": 0.0006,
+ "loss": 3.5449633598327637,
+ "step": 3735
+ },
+ {
+ "epoch": 51.89471384884229,
+ "grad_norm": 0.2494364082813263,
+ "learning_rate": 0.0006,
+ "loss": 3.5825607776641846,
+ "step": 3736
+ },
+ {
+ "epoch": 51.90869375273045,
+ "grad_norm": 0.24867761135101318,
+ "learning_rate": 0.0006,
+ "loss": 3.5998034477233887,
+ "step": 3737
+ },
+ {
+ "epoch": 51.92267365661861,
+ "grad_norm": 0.2552012801170349,
+ "learning_rate": 0.0006,
+ "loss": 3.5487377643585205,
+ "step": 3738
+ },
+ {
+ "epoch": 51.93665356050677,
+ "grad_norm": 0.2243119329214096,
+ "learning_rate": 0.0006,
+ "loss": 3.6081466674804688,
+ "step": 3739
+ },
+ {
+ "epoch": 51.95063346439493,
+ "grad_norm": 0.2106700837612152,
+ "learning_rate": 0.0006,
+ "loss": 3.607586622238159,
+ "step": 3740
+ },
+ {
+ "epoch": 51.964613368283096,
+ "grad_norm": 0.2207096666097641,
+ "learning_rate": 0.0006,
+ "loss": 3.6094579696655273,
+ "step": 3741
+ },
+ {
+ "epoch": 51.97859327217125,
+ "grad_norm": 0.2310071736574173,
+ "learning_rate": 0.0006,
+ "loss": 3.5837807655334473,
+ "step": 3742
+ },
+ {
+ "epoch": 51.992573176059416,
+ "grad_norm": 0.258770614862442,
+ "learning_rate": 0.0006,
+ "loss": 3.639329433441162,
+ "step": 3743
+ },
+ {
+ "epoch": 52.0,
+ "grad_norm": 0.24004915356636047,
+ "learning_rate": 0.0006,
+ "loss": 3.6178512573242188,
+ "step": 3744
+ },
+ {
+ "epoch": 52.0,
+ "eval_loss": 3.97371244430542,
+ "eval_runtime": 46.1923,
+ "eval_samples_per_second": 52.866,
+ "eval_steps_per_second": 3.312,
+ "step": 3744
+ },
+ {
+ "epoch": 52.01397990388816,
+ "grad_norm": 0.21953323483467102,
+ "learning_rate": 0.0006,
+ "loss": 3.5929579734802246,
+ "step": 3745
+ },
+ {
+ "epoch": 52.02795980777632,
+ "grad_norm": 0.25547415018081665,
+ "learning_rate": 0.0006,
+ "loss": 3.5762600898742676,
+ "step": 3746
+ },
+ {
+ "epoch": 52.04193971166448,
+ "grad_norm": 0.28905144333839417,
+ "learning_rate": 0.0006,
+ "loss": 3.5794596672058105,
+ "step": 3747
+ },
+ {
+ "epoch": 52.05591961555265,
+ "grad_norm": 0.2618118226528168,
+ "learning_rate": 0.0006,
+ "loss": 3.543205499649048,
+ "step": 3748
+ },
+ {
+ "epoch": 52.0698995194408,
+ "grad_norm": 0.2288745492696762,
+ "learning_rate": 0.0006,
+ "loss": 3.562770366668701,
+ "step": 3749
+ },
+ {
+ "epoch": 52.083879423328966,
+ "grad_norm": 0.25327110290527344,
+ "learning_rate": 0.0006,
+ "loss": 3.5405054092407227,
+ "step": 3750
+ },
+ {
+ "epoch": 52.09785932721712,
+ "grad_norm": 0.2721746861934662,
+ "learning_rate": 0.0006,
+ "loss": 3.5650479793548584,
+ "step": 3751
+ },
+ {
+ "epoch": 52.111839231105286,
+ "grad_norm": 0.2890555262565613,
+ "learning_rate": 0.0006,
+ "loss": 3.556122303009033,
+ "step": 3752
+ },
+ {
+ "epoch": 52.12581913499345,
+ "grad_norm": 0.30541476607322693,
+ "learning_rate": 0.0006,
+ "loss": 3.544271469116211,
+ "step": 3753
+ },
+ {
+ "epoch": 52.139799038881605,
+ "grad_norm": 0.2555760443210602,
+ "learning_rate": 0.0006,
+ "loss": 3.5452728271484375,
+ "step": 3754
+ },
+ {
+ "epoch": 52.15377894276977,
+ "grad_norm": 0.2653098404407501,
+ "learning_rate": 0.0006,
+ "loss": 3.57212495803833,
+ "step": 3755
+ },
+ {
+ "epoch": 52.16775884665793,
+ "grad_norm": 0.2479168176651001,
+ "learning_rate": 0.0006,
+ "loss": 3.5893373489379883,
+ "step": 3756
+ },
+ {
+ "epoch": 52.18173875054609,
+ "grad_norm": 0.21718256175518036,
+ "learning_rate": 0.0006,
+ "loss": 3.5616965293884277,
+ "step": 3757
+ },
+ {
+ "epoch": 52.19571865443425,
+ "grad_norm": 0.22033235430717468,
+ "learning_rate": 0.0006,
+ "loss": 3.566401481628418,
+ "step": 3758
+ },
+ {
+ "epoch": 52.20969855832241,
+ "grad_norm": 0.2401825189590454,
+ "learning_rate": 0.0006,
+ "loss": 3.547682762145996,
+ "step": 3759
+ },
+ {
+ "epoch": 52.22367846221057,
+ "grad_norm": 0.24496418237686157,
+ "learning_rate": 0.0006,
+ "loss": 3.5405421257019043,
+ "step": 3760
+ },
+ {
+ "epoch": 52.237658366098735,
+ "grad_norm": 0.2311883270740509,
+ "learning_rate": 0.0006,
+ "loss": 3.5709781646728516,
+ "step": 3761
+ },
+ {
+ "epoch": 52.25163826998689,
+ "grad_norm": 0.20850200951099396,
+ "learning_rate": 0.0006,
+ "loss": 3.5563712120056152,
+ "step": 3762
+ },
+ {
+ "epoch": 52.265618173875055,
+ "grad_norm": 0.2073400765657425,
+ "learning_rate": 0.0006,
+ "loss": 3.542343854904175,
+ "step": 3763
+ },
+ {
+ "epoch": 52.27959807776322,
+ "grad_norm": 0.21886718273162842,
+ "learning_rate": 0.0006,
+ "loss": 3.5633034706115723,
+ "step": 3764
+ },
+ {
+ "epoch": 52.293577981651374,
+ "grad_norm": 0.2218562215566635,
+ "learning_rate": 0.0006,
+ "loss": 3.5644288063049316,
+ "step": 3765
+ },
+ {
+ "epoch": 52.30755788553954,
+ "grad_norm": 0.22043557465076447,
+ "learning_rate": 0.0006,
+ "loss": 3.564373731613159,
+ "step": 3766
+ },
+ {
+ "epoch": 52.3215377894277,
+ "grad_norm": 0.2095082402229309,
+ "learning_rate": 0.0006,
+ "loss": 3.5336289405822754,
+ "step": 3767
+ },
+ {
+ "epoch": 52.33551769331586,
+ "grad_norm": 0.21115876734256744,
+ "learning_rate": 0.0006,
+ "loss": 3.5761165618896484,
+ "step": 3768
+ },
+ {
+ "epoch": 52.34949759720402,
+ "grad_norm": 0.21558400988578796,
+ "learning_rate": 0.0006,
+ "loss": 3.573495388031006,
+ "step": 3769
+ },
+ {
+ "epoch": 52.36347750109218,
+ "grad_norm": 0.213745579123497,
+ "learning_rate": 0.0006,
+ "loss": 3.572171211242676,
+ "step": 3770
+ },
+ {
+ "epoch": 52.37745740498034,
+ "grad_norm": 0.1926180124282837,
+ "learning_rate": 0.0006,
+ "loss": 3.532592535018921,
+ "step": 3771
+ },
+ {
+ "epoch": 52.391437308868504,
+ "grad_norm": 0.1993863731622696,
+ "learning_rate": 0.0006,
+ "loss": 3.551880359649658,
+ "step": 3772
+ },
+ {
+ "epoch": 52.40541721275666,
+ "grad_norm": 0.2018740326166153,
+ "learning_rate": 0.0006,
+ "loss": 3.557328701019287,
+ "step": 3773
+ },
+ {
+ "epoch": 52.419397116644824,
+ "grad_norm": 0.19035610556602478,
+ "learning_rate": 0.0006,
+ "loss": 3.600301504135132,
+ "step": 3774
+ },
+ {
+ "epoch": 52.43337702053299,
+ "grad_norm": 0.20069538056850433,
+ "learning_rate": 0.0006,
+ "loss": 3.5938944816589355,
+ "step": 3775
+ },
+ {
+ "epoch": 52.44735692442114,
+ "grad_norm": 0.21255625784397125,
+ "learning_rate": 0.0006,
+ "loss": 3.561086893081665,
+ "step": 3776
+ },
+ {
+ "epoch": 52.46133682830931,
+ "grad_norm": 0.20132070779800415,
+ "learning_rate": 0.0006,
+ "loss": 3.5525574684143066,
+ "step": 3777
+ },
+ {
+ "epoch": 52.47531673219746,
+ "grad_norm": 0.20152916014194489,
+ "learning_rate": 0.0006,
+ "loss": 3.5697402954101562,
+ "step": 3778
+ },
+ {
+ "epoch": 52.489296636085626,
+ "grad_norm": 0.1984269767999649,
+ "learning_rate": 0.0006,
+ "loss": 3.5686168670654297,
+ "step": 3779
+ },
+ {
+ "epoch": 52.50327653997379,
+ "grad_norm": 0.212612584233284,
+ "learning_rate": 0.0006,
+ "loss": 3.5522124767303467,
+ "step": 3780
+ },
+ {
+ "epoch": 52.517256443861946,
+ "grad_norm": 0.21382521092891693,
+ "learning_rate": 0.0006,
+ "loss": 3.5692944526672363,
+ "step": 3781
+ },
+ {
+ "epoch": 52.53123634775011,
+ "grad_norm": 0.2118486911058426,
+ "learning_rate": 0.0006,
+ "loss": 3.562495708465576,
+ "step": 3782
+ },
+ {
+ "epoch": 52.54521625163827,
+ "grad_norm": 0.22253486514091492,
+ "learning_rate": 0.0006,
+ "loss": 3.5709781646728516,
+ "step": 3783
+ },
+ {
+ "epoch": 52.55919615552643,
+ "grad_norm": 0.23701436817646027,
+ "learning_rate": 0.0006,
+ "loss": 3.548953056335449,
+ "step": 3784
+ },
+ {
+ "epoch": 52.57317605941459,
+ "grad_norm": 0.21345193684101105,
+ "learning_rate": 0.0006,
+ "loss": 3.543029308319092,
+ "step": 3785
+ },
+ {
+ "epoch": 52.58715596330275,
+ "grad_norm": 0.1854170262813568,
+ "learning_rate": 0.0006,
+ "loss": 3.5490989685058594,
+ "step": 3786
+ },
+ {
+ "epoch": 52.60113586719091,
+ "grad_norm": 0.23733633756637573,
+ "learning_rate": 0.0006,
+ "loss": 3.5800132751464844,
+ "step": 3787
+ },
+ {
+ "epoch": 52.615115771079076,
+ "grad_norm": 0.26175495982170105,
+ "learning_rate": 0.0006,
+ "loss": 3.562596321105957,
+ "step": 3788
+ },
+ {
+ "epoch": 52.62909567496723,
+ "grad_norm": 0.23134057223796844,
+ "learning_rate": 0.0006,
+ "loss": 3.5685765743255615,
+ "step": 3789
+ },
+ {
+ "epoch": 52.643075578855395,
+ "grad_norm": 0.1974988877773285,
+ "learning_rate": 0.0006,
+ "loss": 3.570517063140869,
+ "step": 3790
+ },
+ {
+ "epoch": 52.65705548274356,
+ "grad_norm": 0.20049697160720825,
+ "learning_rate": 0.0006,
+ "loss": 3.573286533355713,
+ "step": 3791
+ },
+ {
+ "epoch": 52.671035386631715,
+ "grad_norm": 0.1956445872783661,
+ "learning_rate": 0.0006,
+ "loss": 3.565880537033081,
+ "step": 3792
+ },
+ {
+ "epoch": 52.68501529051988,
+ "grad_norm": 0.2082354575395584,
+ "learning_rate": 0.0006,
+ "loss": 3.587278366088867,
+ "step": 3793
+ },
+ {
+ "epoch": 52.69899519440804,
+ "grad_norm": 0.20923161506652832,
+ "learning_rate": 0.0006,
+ "loss": 3.569469451904297,
+ "step": 3794
+ },
+ {
+ "epoch": 52.7129750982962,
+ "grad_norm": 0.20482848584651947,
+ "learning_rate": 0.0006,
+ "loss": 3.5826265811920166,
+ "step": 3795
+ },
+ {
+ "epoch": 52.72695500218436,
+ "grad_norm": 0.20411530137062073,
+ "learning_rate": 0.0006,
+ "loss": 3.5870275497436523,
+ "step": 3796
+ },
+ {
+ "epoch": 52.74093490607252,
+ "grad_norm": 0.2205485701560974,
+ "learning_rate": 0.0006,
+ "loss": 3.58900785446167,
+ "step": 3797
+ },
+ {
+ "epoch": 52.75491480996068,
+ "grad_norm": 0.21134008467197418,
+ "learning_rate": 0.0006,
+ "loss": 3.591036558151245,
+ "step": 3798
+ },
+ {
+ "epoch": 52.768894713848844,
+ "grad_norm": 0.20001831650733948,
+ "learning_rate": 0.0006,
+ "loss": 3.5670390129089355,
+ "step": 3799
+ },
+ {
+ "epoch": 52.782874617737,
+ "grad_norm": 0.2175939679145813,
+ "learning_rate": 0.0006,
+ "loss": 3.594132423400879,
+ "step": 3800
+ },
+ {
+ "epoch": 52.796854521625164,
+ "grad_norm": 0.22054694592952728,
+ "learning_rate": 0.0006,
+ "loss": 3.5565545558929443,
+ "step": 3801
+ },
+ {
+ "epoch": 52.81083442551333,
+ "grad_norm": 0.22901731729507446,
+ "learning_rate": 0.0006,
+ "loss": 3.5837020874023438,
+ "step": 3802
+ },
+ {
+ "epoch": 52.824814329401484,
+ "grad_norm": 0.22492778301239014,
+ "learning_rate": 0.0006,
+ "loss": 3.608218193054199,
+ "step": 3803
+ },
+ {
+ "epoch": 52.83879423328965,
+ "grad_norm": 0.21645256876945496,
+ "learning_rate": 0.0006,
+ "loss": 3.5839202404022217,
+ "step": 3804
+ },
+ {
+ "epoch": 52.8527741371778,
+ "grad_norm": 0.19680161774158478,
+ "learning_rate": 0.0006,
+ "loss": 3.568756580352783,
+ "step": 3805
+ },
+ {
+ "epoch": 52.86675404106597,
+ "grad_norm": 0.2084486186504364,
+ "learning_rate": 0.0006,
+ "loss": 3.580197811126709,
+ "step": 3806
+ },
+ {
+ "epoch": 52.88073394495413,
+ "grad_norm": 0.19380393624305725,
+ "learning_rate": 0.0006,
+ "loss": 3.5871198177337646,
+ "step": 3807
+ },
+ {
+ "epoch": 52.89471384884229,
+ "grad_norm": 0.1962910294532776,
+ "learning_rate": 0.0006,
+ "loss": 3.5878777503967285,
+ "step": 3808
+ },
+ {
+ "epoch": 52.90869375273045,
+ "grad_norm": 0.23292803764343262,
+ "learning_rate": 0.0006,
+ "loss": 3.574855327606201,
+ "step": 3809
+ },
+ {
+ "epoch": 52.92267365661861,
+ "grad_norm": 0.26974233984947205,
+ "learning_rate": 0.0006,
+ "loss": 3.5731749534606934,
+ "step": 3810
+ },
+ {
+ "epoch": 52.93665356050677,
+ "grad_norm": 0.26665496826171875,
+ "learning_rate": 0.0006,
+ "loss": 3.552717685699463,
+ "step": 3811
+ },
+ {
+ "epoch": 52.95063346439493,
+ "grad_norm": 0.24156489968299866,
+ "learning_rate": 0.0006,
+ "loss": 3.581787109375,
+ "step": 3812
+ },
+ {
+ "epoch": 52.964613368283096,
+ "grad_norm": 0.22062325477600098,
+ "learning_rate": 0.0006,
+ "loss": 3.578994035720825,
+ "step": 3813
+ },
+ {
+ "epoch": 52.97859327217125,
+ "grad_norm": 0.19949151575565338,
+ "learning_rate": 0.0006,
+ "loss": 3.6157355308532715,
+ "step": 3814
+ },
+ {
+ "epoch": 52.992573176059416,
+ "grad_norm": 0.2157975435256958,
+ "learning_rate": 0.0006,
+ "loss": 3.5677759647369385,
+ "step": 3815
+ },
+ {
+ "epoch": 53.0,
+ "grad_norm": 0.23285679519176483,
+ "learning_rate": 0.0006,
+ "loss": 3.5541789531707764,
+ "step": 3816
+ },
+ {
+ "epoch": 53.0,
+ "eval_loss": 3.9737255573272705,
+ "eval_runtime": 46.0304,
+ "eval_samples_per_second": 53.052,
+ "eval_steps_per_second": 3.324,
+ "step": 3816
+ },
+ {
+ "epoch": 53.01397990388816,
+ "grad_norm": 0.212715283036232,
+ "learning_rate": 0.0006,
+ "loss": 3.5475640296936035,
+ "step": 3817
+ },
+ {
+ "epoch": 53.02795980777632,
+ "grad_norm": 0.24556505680084229,
+ "learning_rate": 0.0006,
+ "loss": 3.5197463035583496,
+ "step": 3818
+ },
+ {
+ "epoch": 53.04193971166448,
+ "grad_norm": 0.2898217737674713,
+ "learning_rate": 0.0006,
+ "loss": 3.527390956878662,
+ "step": 3819
+ },
+ {
+ "epoch": 53.05591961555265,
+ "grad_norm": 0.26151803135871887,
+ "learning_rate": 0.0006,
+ "loss": 3.5462024211883545,
+ "step": 3820
+ },
+ {
+ "epoch": 53.0698995194408,
+ "grad_norm": 0.24648059904575348,
+ "learning_rate": 0.0006,
+ "loss": 3.5584919452667236,
+ "step": 3821
+ },
+ {
+ "epoch": 53.083879423328966,
+ "grad_norm": 0.22295059263706207,
+ "learning_rate": 0.0006,
+ "loss": 3.517195701599121,
+ "step": 3822
+ },
+ {
+ "epoch": 53.09785932721712,
+ "grad_norm": 0.2206476330757141,
+ "learning_rate": 0.0006,
+ "loss": 3.570678234100342,
+ "step": 3823
+ },
+ {
+ "epoch": 53.111839231105286,
+ "grad_norm": 0.22069714963436127,
+ "learning_rate": 0.0006,
+ "loss": 3.5707359313964844,
+ "step": 3824
+ },
+ {
+ "epoch": 53.12581913499345,
+ "grad_norm": 0.21850740909576416,
+ "learning_rate": 0.0006,
+ "loss": 3.5730209350585938,
+ "step": 3825
+ },
+ {
+ "epoch": 53.139799038881605,
+ "grad_norm": 0.21554340422153473,
+ "learning_rate": 0.0006,
+ "loss": 3.5578367710113525,
+ "step": 3826
+ },
+ {
+ "epoch": 53.15377894276977,
+ "grad_norm": 0.21678747236728668,
+ "learning_rate": 0.0006,
+ "loss": 3.5603280067443848,
+ "step": 3827
+ },
+ {
+ "epoch": 53.16775884665793,
+ "grad_norm": 0.22017014026641846,
+ "learning_rate": 0.0006,
+ "loss": 3.577760696411133,
+ "step": 3828
+ },
+ {
+ "epoch": 53.18173875054609,
+ "grad_norm": 0.20485524833202362,
+ "learning_rate": 0.0006,
+ "loss": 3.574751853942871,
+ "step": 3829
+ },
+ {
+ "epoch": 53.19571865443425,
+ "grad_norm": 0.22951237857341766,
+ "learning_rate": 0.0006,
+ "loss": 3.5464377403259277,
+ "step": 3830
+ },
+ {
+ "epoch": 53.20969855832241,
+ "grad_norm": 0.2343965619802475,
+ "learning_rate": 0.0006,
+ "loss": 3.516113758087158,
+ "step": 3831
+ },
+ {
+ "epoch": 53.22367846221057,
+ "grad_norm": 0.24002069234848022,
+ "learning_rate": 0.0006,
+ "loss": 3.564629554748535,
+ "step": 3832
+ },
+ {
+ "epoch": 53.237658366098735,
+ "grad_norm": 0.23933765292167664,
+ "learning_rate": 0.0006,
+ "loss": 3.5518507957458496,
+ "step": 3833
+ },
+ {
+ "epoch": 53.25163826998689,
+ "grad_norm": 0.2188953459262848,
+ "learning_rate": 0.0006,
+ "loss": 3.5341856479644775,
+ "step": 3834
+ },
+ {
+ "epoch": 53.265618173875055,
+ "grad_norm": 0.22629091143608093,
+ "learning_rate": 0.0006,
+ "loss": 3.5479273796081543,
+ "step": 3835
+ },
+ {
+ "epoch": 53.27959807776322,
+ "grad_norm": 0.2386554479598999,
+ "learning_rate": 0.0006,
+ "loss": 3.6097445487976074,
+ "step": 3836
+ },
+ {
+ "epoch": 53.293577981651374,
+ "grad_norm": 0.23003390431404114,
+ "learning_rate": 0.0006,
+ "loss": 3.5435304641723633,
+ "step": 3837
+ },
+ {
+ "epoch": 53.30755788553954,
+ "grad_norm": 0.248053640127182,
+ "learning_rate": 0.0006,
+ "loss": 3.545290470123291,
+ "step": 3838
+ },
+ {
+ "epoch": 53.3215377894277,
+ "grad_norm": 0.23945583403110504,
+ "learning_rate": 0.0006,
+ "loss": 3.570158004760742,
+ "step": 3839
+ },
+ {
+ "epoch": 53.33551769331586,
+ "grad_norm": 0.22801059484481812,
+ "learning_rate": 0.0006,
+ "loss": 3.5600779056549072,
+ "step": 3840
+ },
+ {
+ "epoch": 53.34949759720402,
+ "grad_norm": 0.2303777039051056,
+ "learning_rate": 0.0006,
+ "loss": 3.576674222946167,
+ "step": 3841
+ },
+ {
+ "epoch": 53.36347750109218,
+ "grad_norm": 0.23318468034267426,
+ "learning_rate": 0.0006,
+ "loss": 3.5705552101135254,
+ "step": 3842
+ },
+ {
+ "epoch": 53.37745740498034,
+ "grad_norm": 0.2435566782951355,
+ "learning_rate": 0.0006,
+ "loss": 3.576536178588867,
+ "step": 3843
+ },
+ {
+ "epoch": 53.391437308868504,
+ "grad_norm": 0.2857200503349304,
+ "learning_rate": 0.0006,
+ "loss": 3.535977363586426,
+ "step": 3844
+ },
+ {
+ "epoch": 53.40541721275666,
+ "grad_norm": 0.2640133500099182,
+ "learning_rate": 0.0006,
+ "loss": 3.547731399536133,
+ "step": 3845
+ },
+ {
+ "epoch": 53.419397116644824,
+ "grad_norm": 0.22218745946884155,
+ "learning_rate": 0.0006,
+ "loss": 3.5798351764678955,
+ "step": 3846
+ },
+ {
+ "epoch": 53.43337702053299,
+ "grad_norm": 0.2537193298339844,
+ "learning_rate": 0.0006,
+ "loss": 3.5289204120635986,
+ "step": 3847
+ },
+ {
+ "epoch": 53.44735692442114,
+ "grad_norm": 0.28360968828201294,
+ "learning_rate": 0.0006,
+ "loss": 3.5503361225128174,
+ "step": 3848
+ },
+ {
+ "epoch": 53.46133682830931,
+ "grad_norm": 0.2892421782016754,
+ "learning_rate": 0.0006,
+ "loss": 3.5675411224365234,
+ "step": 3849
+ },
+ {
+ "epoch": 53.47531673219746,
+ "grad_norm": 0.28305584192276,
+ "learning_rate": 0.0006,
+ "loss": 3.573280096054077,
+ "step": 3850
+ },
+ {
+ "epoch": 53.489296636085626,
+ "grad_norm": 0.24628037214279175,
+ "learning_rate": 0.0006,
+ "loss": 3.5215024948120117,
+ "step": 3851
+ },
+ {
+ "epoch": 53.50327653997379,
+ "grad_norm": 0.2463715672492981,
+ "learning_rate": 0.0006,
+ "loss": 3.5790698528289795,
+ "step": 3852
+ },
+ {
+ "epoch": 53.517256443861946,
+ "grad_norm": 0.2646636664867401,
+ "learning_rate": 0.0006,
+ "loss": 3.589735269546509,
+ "step": 3853
+ },
+ {
+ "epoch": 53.53123634775011,
+ "grad_norm": 0.27668821811676025,
+ "learning_rate": 0.0006,
+ "loss": 3.5690393447875977,
+ "step": 3854
+ },
+ {
+ "epoch": 53.54521625163827,
+ "grad_norm": 0.2630347013473511,
+ "learning_rate": 0.0006,
+ "loss": 3.5846545696258545,
+ "step": 3855
+ },
+ {
+ "epoch": 53.55919615552643,
+ "grad_norm": 0.27177906036376953,
+ "learning_rate": 0.0006,
+ "loss": 3.5431671142578125,
+ "step": 3856
+ },
+ {
+ "epoch": 53.57317605941459,
+ "grad_norm": 0.27125081419944763,
+ "learning_rate": 0.0006,
+ "loss": 3.5905215740203857,
+ "step": 3857
+ },
+ {
+ "epoch": 53.58715596330275,
+ "grad_norm": 0.24802975356578827,
+ "learning_rate": 0.0006,
+ "loss": 3.5472917556762695,
+ "step": 3858
+ },
+ {
+ "epoch": 53.60113586719091,
+ "grad_norm": 0.23812460899353027,
+ "learning_rate": 0.0006,
+ "loss": 3.5917325019836426,
+ "step": 3859
+ },
+ {
+ "epoch": 53.615115771079076,
+ "grad_norm": 0.2597416937351227,
+ "learning_rate": 0.0006,
+ "loss": 3.5515074729919434,
+ "step": 3860
+ },
+ {
+ "epoch": 53.62909567496723,
+ "grad_norm": 0.24389132857322693,
+ "learning_rate": 0.0006,
+ "loss": 3.578125476837158,
+ "step": 3861
+ },
+ {
+ "epoch": 53.643075578855395,
+ "grad_norm": 0.23878274857997894,
+ "learning_rate": 0.0006,
+ "loss": 3.5612001419067383,
+ "step": 3862
+ },
+ {
+ "epoch": 53.65705548274356,
+ "grad_norm": 0.23248082399368286,
+ "learning_rate": 0.0006,
+ "loss": 3.5651350021362305,
+ "step": 3863
+ },
+ {
+ "epoch": 53.671035386631715,
+ "grad_norm": 0.22560833394527435,
+ "learning_rate": 0.0006,
+ "loss": 3.58971905708313,
+ "step": 3864
+ },
+ {
+ "epoch": 53.68501529051988,
+ "grad_norm": 0.22092120349407196,
+ "learning_rate": 0.0006,
+ "loss": 3.5567374229431152,
+ "step": 3865
+ },
+ {
+ "epoch": 53.69899519440804,
+ "grad_norm": 0.20171885192394257,
+ "learning_rate": 0.0006,
+ "loss": 3.5868449211120605,
+ "step": 3866
+ },
+ {
+ "epoch": 53.7129750982962,
+ "grad_norm": 0.2051871120929718,
+ "learning_rate": 0.0006,
+ "loss": 3.5853161811828613,
+ "step": 3867
+ },
+ {
+ "epoch": 53.72695500218436,
+ "grad_norm": 0.1912045031785965,
+ "learning_rate": 0.0006,
+ "loss": 3.5901622772216797,
+ "step": 3868
+ },
+ {
+ "epoch": 53.74093490607252,
+ "grad_norm": 0.20817188918590546,
+ "learning_rate": 0.0006,
+ "loss": 3.5759787559509277,
+ "step": 3869
+ },
+ {
+ "epoch": 53.75491480996068,
+ "grad_norm": 0.2157917469739914,
+ "learning_rate": 0.0006,
+ "loss": 3.5438575744628906,
+ "step": 3870
+ },
+ {
+ "epoch": 53.768894713848844,
+ "grad_norm": 0.2332053929567337,
+ "learning_rate": 0.0006,
+ "loss": 3.587697982788086,
+ "step": 3871
+ },
+ {
+ "epoch": 53.782874617737,
+ "grad_norm": 0.22700314223766327,
+ "learning_rate": 0.0006,
+ "loss": 3.586625337600708,
+ "step": 3872
+ },
+ {
+ "epoch": 53.796854521625164,
+ "grad_norm": 0.20737017691135406,
+ "learning_rate": 0.0006,
+ "loss": 3.552398204803467,
+ "step": 3873
+ },
+ {
+ "epoch": 53.81083442551333,
+ "grad_norm": 0.20355650782585144,
+ "learning_rate": 0.0006,
+ "loss": 3.5734331607818604,
+ "step": 3874
+ },
+ {
+ "epoch": 53.824814329401484,
+ "grad_norm": 0.18868018686771393,
+ "learning_rate": 0.0006,
+ "loss": 3.582509756088257,
+ "step": 3875
+ },
+ {
+ "epoch": 53.83879423328965,
+ "grad_norm": 0.20373275876045227,
+ "learning_rate": 0.0006,
+ "loss": 3.559354782104492,
+ "step": 3876
+ },
+ {
+ "epoch": 53.8527741371778,
+ "grad_norm": 0.1988871544599533,
+ "learning_rate": 0.0006,
+ "loss": 3.5575170516967773,
+ "step": 3877
+ },
+ {
+ "epoch": 53.86675404106597,
+ "grad_norm": 0.19602873921394348,
+ "learning_rate": 0.0006,
+ "loss": 3.5500855445861816,
+ "step": 3878
+ },
+ {
+ "epoch": 53.88073394495413,
+ "grad_norm": 0.201382577419281,
+ "learning_rate": 0.0006,
+ "loss": 3.563499927520752,
+ "step": 3879
+ },
+ {
+ "epoch": 53.89471384884229,
+ "grad_norm": 0.19682180881500244,
+ "learning_rate": 0.0006,
+ "loss": 3.586855888366699,
+ "step": 3880
+ },
+ {
+ "epoch": 53.90869375273045,
+ "grad_norm": 0.19423548877239227,
+ "learning_rate": 0.0006,
+ "loss": 3.5840401649475098,
+ "step": 3881
+ },
+ {
+ "epoch": 53.92267365661861,
+ "grad_norm": 0.1970449835062027,
+ "learning_rate": 0.0006,
+ "loss": 3.554568290710449,
+ "step": 3882
+ },
+ {
+ "epoch": 53.93665356050677,
+ "grad_norm": 0.20274291932582855,
+ "learning_rate": 0.0006,
+ "loss": 3.5928239822387695,
+ "step": 3883
+ },
+ {
+ "epoch": 53.95063346439493,
+ "grad_norm": 0.18485035002231598,
+ "learning_rate": 0.0006,
+ "loss": 3.576934337615967,
+ "step": 3884
+ },
+ {
+ "epoch": 53.964613368283096,
+ "grad_norm": 0.18437646329402924,
+ "learning_rate": 0.0006,
+ "loss": 3.574990749359131,
+ "step": 3885
+ },
+ {
+ "epoch": 53.97859327217125,
+ "grad_norm": 0.18616823852062225,
+ "learning_rate": 0.0006,
+ "loss": 3.5566892623901367,
+ "step": 3886
+ },
+ {
+ "epoch": 53.992573176059416,
+ "grad_norm": 0.19502122700214386,
+ "learning_rate": 0.0006,
+ "loss": 3.604814052581787,
+ "step": 3887
+ },
+ {
+ "epoch": 54.0,
+ "grad_norm": 0.2657789885997772,
+ "learning_rate": 0.0006,
+ "loss": 3.5094165802001953,
+ "step": 3888
+ },
+ {
+ "epoch": 54.0,
+ "eval_loss": 3.965742349624634,
+ "eval_runtime": 45.5851,
+ "eval_samples_per_second": 53.57,
+ "eval_steps_per_second": 3.356,
+ "step": 3888
+ },
+ {
+ "epoch": 54.01397990388816,
+ "grad_norm": 0.27879253029823303,
+ "learning_rate": 0.0006,
+ "loss": 3.565103530883789,
+ "step": 3889
+ },
+ {
+ "epoch": 54.02795980777632,
+ "grad_norm": 0.2959246337413788,
+ "learning_rate": 0.0006,
+ "loss": 3.5378212928771973,
+ "step": 3890
+ },
+ {
+ "epoch": 54.04193971166448,
+ "grad_norm": 0.32719552516937256,
+ "learning_rate": 0.0006,
+ "loss": 3.5566751956939697,
+ "step": 3891
+ },
+ {
+ "epoch": 54.05591961555265,
+ "grad_norm": 0.36854541301727295,
+ "learning_rate": 0.0006,
+ "loss": 3.5363879203796387,
+ "step": 3892
+ },
+ {
+ "epoch": 54.0698995194408,
+ "grad_norm": 0.34325551986694336,
+ "learning_rate": 0.0006,
+ "loss": 3.5306153297424316,
+ "step": 3893
+ },
+ {
+ "epoch": 54.083879423328966,
+ "grad_norm": 0.2798653244972229,
+ "learning_rate": 0.0006,
+ "loss": 3.5642261505126953,
+ "step": 3894
+ },
+ {
+ "epoch": 54.09785932721712,
+ "grad_norm": 0.24857765436172485,
+ "learning_rate": 0.0006,
+ "loss": 3.50216007232666,
+ "step": 3895
+ },
+ {
+ "epoch": 54.111839231105286,
+ "grad_norm": 0.2943299114704132,
+ "learning_rate": 0.0006,
+ "loss": 3.524904251098633,
+ "step": 3896
+ },
+ {
+ "epoch": 54.12581913499345,
+ "grad_norm": 0.2791048586368561,
+ "learning_rate": 0.0006,
+ "loss": 3.56490421295166,
+ "step": 3897
+ },
+ {
+ "epoch": 54.139799038881605,
+ "grad_norm": 0.2781159579753876,
+ "learning_rate": 0.0006,
+ "loss": 3.536180019378662,
+ "step": 3898
+ },
+ {
+ "epoch": 54.15377894276977,
+ "grad_norm": 0.30359897017478943,
+ "learning_rate": 0.0006,
+ "loss": 3.546919345855713,
+ "step": 3899
+ },
+ {
+ "epoch": 54.16775884665793,
+ "grad_norm": 0.2738530933856964,
+ "learning_rate": 0.0006,
+ "loss": 3.547968864440918,
+ "step": 3900
+ },
+ {
+ "epoch": 54.18173875054609,
+ "grad_norm": 0.24783718585968018,
+ "learning_rate": 0.0006,
+ "loss": 3.5802721977233887,
+ "step": 3901
+ },
+ {
+ "epoch": 54.19571865443425,
+ "grad_norm": 0.2544802725315094,
+ "learning_rate": 0.0006,
+ "loss": 3.5556836128234863,
+ "step": 3902
+ },
+ {
+ "epoch": 54.20969855832241,
+ "grad_norm": 0.26695969700813293,
+ "learning_rate": 0.0006,
+ "loss": 3.534266471862793,
+ "step": 3903
+ },
+ {
+ "epoch": 54.22367846221057,
+ "grad_norm": 0.24152538180351257,
+ "learning_rate": 0.0006,
+ "loss": 3.534069538116455,
+ "step": 3904
+ },
+ {
+ "epoch": 54.237658366098735,
+ "grad_norm": 0.21859917044639587,
+ "learning_rate": 0.0006,
+ "loss": 3.535362958908081,
+ "step": 3905
+ },
+ {
+ "epoch": 54.25163826998689,
+ "grad_norm": 0.24676479399204254,
+ "learning_rate": 0.0006,
+ "loss": 3.567283868789673,
+ "step": 3906
+ },
+ {
+ "epoch": 54.265618173875055,
+ "grad_norm": 0.26998138427734375,
+ "learning_rate": 0.0006,
+ "loss": 3.518892765045166,
+ "step": 3907
+ },
+ {
+ "epoch": 54.27959807776322,
+ "grad_norm": 0.30108749866485596,
+ "learning_rate": 0.0006,
+ "loss": 3.5865135192871094,
+ "step": 3908
+ },
+ {
+ "epoch": 54.293577981651374,
+ "grad_norm": 0.31310492753982544,
+ "learning_rate": 0.0006,
+ "loss": 3.546637535095215,
+ "step": 3909
+ },
+ {
+ "epoch": 54.30755788553954,
+ "grad_norm": 0.2994784712791443,
+ "learning_rate": 0.0006,
+ "loss": 3.5441226959228516,
+ "step": 3910
+ },
+ {
+ "epoch": 54.3215377894277,
+ "grad_norm": 0.25010061264038086,
+ "learning_rate": 0.0006,
+ "loss": 3.5619735717773438,
+ "step": 3911
+ },
+ {
+ "epoch": 54.33551769331586,
+ "grad_norm": 0.253129780292511,
+ "learning_rate": 0.0006,
+ "loss": 3.530210494995117,
+ "step": 3912
+ },
+ {
+ "epoch": 54.34949759720402,
+ "grad_norm": 0.2652498781681061,
+ "learning_rate": 0.0006,
+ "loss": 3.534478187561035,
+ "step": 3913
+ },
+ {
+ "epoch": 54.36347750109218,
+ "grad_norm": 0.250503808259964,
+ "learning_rate": 0.0006,
+ "loss": 3.545886516571045,
+ "step": 3914
+ },
+ {
+ "epoch": 54.37745740498034,
+ "grad_norm": 0.22186073660850525,
+ "learning_rate": 0.0006,
+ "loss": 3.5884604454040527,
+ "step": 3915
+ },
+ {
+ "epoch": 54.391437308868504,
+ "grad_norm": 0.21128980815410614,
+ "learning_rate": 0.0006,
+ "loss": 3.527862548828125,
+ "step": 3916
+ },
+ {
+ "epoch": 54.40541721275666,
+ "grad_norm": 0.23184002935886383,
+ "learning_rate": 0.0006,
+ "loss": 3.5599637031555176,
+ "step": 3917
+ },
+ {
+ "epoch": 54.419397116644824,
+ "grad_norm": 0.23710627853870392,
+ "learning_rate": 0.0006,
+ "loss": 3.54667329788208,
+ "step": 3918
+ },
+ {
+ "epoch": 54.43337702053299,
+ "grad_norm": 0.2314598113298416,
+ "learning_rate": 0.0006,
+ "loss": 3.518406391143799,
+ "step": 3919
+ },
+ {
+ "epoch": 54.44735692442114,
+ "grad_norm": 0.21623452007770538,
+ "learning_rate": 0.0006,
+ "loss": 3.5749731063842773,
+ "step": 3920
+ },
+ {
+ "epoch": 54.46133682830931,
+ "grad_norm": 0.22832012176513672,
+ "learning_rate": 0.0006,
+ "loss": 3.57436466217041,
+ "step": 3921
+ },
+ {
+ "epoch": 54.47531673219746,
+ "grad_norm": 0.2184043526649475,
+ "learning_rate": 0.0006,
+ "loss": 3.578040838241577,
+ "step": 3922
+ },
+ {
+ "epoch": 54.489296636085626,
+ "grad_norm": 0.2302335649728775,
+ "learning_rate": 0.0006,
+ "loss": 3.5646257400512695,
+ "step": 3923
+ },
+ {
+ "epoch": 54.50327653997379,
+ "grad_norm": 0.21635375916957855,
+ "learning_rate": 0.0006,
+ "loss": 3.546786308288574,
+ "step": 3924
+ },
+ {
+ "epoch": 54.517256443861946,
+ "grad_norm": 0.22332443296909332,
+ "learning_rate": 0.0006,
+ "loss": 3.5804502964019775,
+ "step": 3925
+ },
+ {
+ "epoch": 54.53123634775011,
+ "grad_norm": 0.21662919223308563,
+ "learning_rate": 0.0006,
+ "loss": 3.567797899246216,
+ "step": 3926
+ },
+ {
+ "epoch": 54.54521625163827,
+ "grad_norm": 0.21345169842243195,
+ "learning_rate": 0.0006,
+ "loss": 3.5746283531188965,
+ "step": 3927
+ },
+ {
+ "epoch": 54.55919615552643,
+ "grad_norm": 0.2111794501543045,
+ "learning_rate": 0.0006,
+ "loss": 3.5626277923583984,
+ "step": 3928
+ },
+ {
+ "epoch": 54.57317605941459,
+ "grad_norm": 0.22575712203979492,
+ "learning_rate": 0.0006,
+ "loss": 3.5856311321258545,
+ "step": 3929
+ },
+ {
+ "epoch": 54.58715596330275,
+ "grad_norm": 0.22963617742061615,
+ "learning_rate": 0.0006,
+ "loss": 3.584038257598877,
+ "step": 3930
+ },
+ {
+ "epoch": 54.60113586719091,
+ "grad_norm": 0.21805310249328613,
+ "learning_rate": 0.0006,
+ "loss": 3.5603089332580566,
+ "step": 3931
+ },
+ {
+ "epoch": 54.615115771079076,
+ "grad_norm": 0.22830283641815186,
+ "learning_rate": 0.0006,
+ "loss": 3.5533390045166016,
+ "step": 3932
+ },
+ {
+ "epoch": 54.62909567496723,
+ "grad_norm": 0.24158291518688202,
+ "learning_rate": 0.0006,
+ "loss": 3.5437779426574707,
+ "step": 3933
+ },
+ {
+ "epoch": 54.643075578855395,
+ "grad_norm": 0.22687768936157227,
+ "learning_rate": 0.0006,
+ "loss": 3.566315174102783,
+ "step": 3934
+ },
+ {
+ "epoch": 54.65705548274356,
+ "grad_norm": 0.21220184862613678,
+ "learning_rate": 0.0006,
+ "loss": 3.5772881507873535,
+ "step": 3935
+ },
+ {
+ "epoch": 54.671035386631715,
+ "grad_norm": 0.19508333504199982,
+ "learning_rate": 0.0006,
+ "loss": 3.5213584899902344,
+ "step": 3936
+ },
+ {
+ "epoch": 54.68501529051988,
+ "grad_norm": 0.199599027633667,
+ "learning_rate": 0.0006,
+ "loss": 3.553925037384033,
+ "step": 3937
+ },
+ {
+ "epoch": 54.69899519440804,
+ "grad_norm": 0.2063189297914505,
+ "learning_rate": 0.0006,
+ "loss": 3.5706050395965576,
+ "step": 3938
+ },
+ {
+ "epoch": 54.7129750982962,
+ "grad_norm": 0.2056119441986084,
+ "learning_rate": 0.0006,
+ "loss": 3.557199478149414,
+ "step": 3939
+ },
+ {
+ "epoch": 54.72695500218436,
+ "grad_norm": 0.2192074954509735,
+ "learning_rate": 0.0006,
+ "loss": 3.5869479179382324,
+ "step": 3940
+ },
+ {
+ "epoch": 54.74093490607252,
+ "grad_norm": 0.19796597957611084,
+ "learning_rate": 0.0006,
+ "loss": 3.559929609298706,
+ "step": 3941
+ },
+ {
+ "epoch": 54.75491480996068,
+ "grad_norm": 0.19003179669380188,
+ "learning_rate": 0.0006,
+ "loss": 3.5481486320495605,
+ "step": 3942
+ },
+ {
+ "epoch": 54.768894713848844,
+ "grad_norm": 0.189231738448143,
+ "learning_rate": 0.0006,
+ "loss": 3.5603561401367188,
+ "step": 3943
+ },
+ {
+ "epoch": 54.782874617737,
+ "grad_norm": 0.20949427783489227,
+ "learning_rate": 0.0006,
+ "loss": 3.567026138305664,
+ "step": 3944
+ },
+ {
+ "epoch": 54.796854521625164,
+ "grad_norm": 0.21650178730487823,
+ "learning_rate": 0.0006,
+ "loss": 3.5981621742248535,
+ "step": 3945
+ },
+ {
+ "epoch": 54.81083442551333,
+ "grad_norm": 0.21941770613193512,
+ "learning_rate": 0.0006,
+ "loss": 3.590226173400879,
+ "step": 3946
+ },
+ {
+ "epoch": 54.824814329401484,
+ "grad_norm": 0.2169734537601471,
+ "learning_rate": 0.0006,
+ "loss": 3.592764139175415,
+ "step": 3947
+ },
+ {
+ "epoch": 54.83879423328965,
+ "grad_norm": 0.20309467613697052,
+ "learning_rate": 0.0006,
+ "loss": 3.5706393718719482,
+ "step": 3948
+ },
+ {
+ "epoch": 54.8527741371778,
+ "grad_norm": 0.21803754568099976,
+ "learning_rate": 0.0006,
+ "loss": 3.5816526412963867,
+ "step": 3949
+ },
+ {
+ "epoch": 54.86675404106597,
+ "grad_norm": 0.22217069566249847,
+ "learning_rate": 0.0006,
+ "loss": 3.5895018577575684,
+ "step": 3950
+ },
+ {
+ "epoch": 54.88073394495413,
+ "grad_norm": 0.21204866468906403,
+ "learning_rate": 0.0006,
+ "loss": 3.5574231147766113,
+ "step": 3951
+ },
+ {
+ "epoch": 54.89471384884229,
+ "grad_norm": 0.2173423171043396,
+ "learning_rate": 0.0006,
+ "loss": 3.564763069152832,
+ "step": 3952
+ },
+ {
+ "epoch": 54.90869375273045,
+ "grad_norm": 0.2039082646369934,
+ "learning_rate": 0.0006,
+ "loss": 3.59708309173584,
+ "step": 3953
+ },
+ {
+ "epoch": 54.92267365661861,
+ "grad_norm": 0.20248384773731232,
+ "learning_rate": 0.0006,
+ "loss": 3.587890148162842,
+ "step": 3954
+ },
+ {
+ "epoch": 54.93665356050677,
+ "grad_norm": 0.20693068206310272,
+ "learning_rate": 0.0006,
+ "loss": 3.5569000244140625,
+ "step": 3955
+ },
+ {
+ "epoch": 54.95063346439493,
+ "grad_norm": 0.2109357714653015,
+ "learning_rate": 0.0006,
+ "loss": 3.552126884460449,
+ "step": 3956
+ },
+ {
+ "epoch": 54.964613368283096,
+ "grad_norm": 0.2278970628976822,
+ "learning_rate": 0.0006,
+ "loss": 3.564998149871826,
+ "step": 3957
+ },
+ {
+ "epoch": 54.97859327217125,
+ "grad_norm": 0.21663756668567657,
+ "learning_rate": 0.0006,
+ "loss": 3.571608543395996,
+ "step": 3958
+ },
+ {
+ "epoch": 54.992573176059416,
+ "grad_norm": 0.19653232395648956,
+ "learning_rate": 0.0006,
+ "loss": 3.5885231494903564,
+ "step": 3959
+ },
+ {
+ "epoch": 55.0,
+ "grad_norm": 0.21956856548786163,
+ "learning_rate": 0.0006,
+ "loss": 3.4966204166412354,
+ "step": 3960
+ },
+ {
+ "epoch": 55.0,
+ "eval_loss": 3.972649097442627,
+ "eval_runtime": 45.2298,
+ "eval_samples_per_second": 53.991,
+ "eval_steps_per_second": 3.383,
+ "step": 3960
+ },
+ {
+ "epoch": 55.01397990388816,
+ "grad_norm": 0.22733832895755768,
+ "learning_rate": 0.0006,
+ "loss": 3.546975612640381,
+ "step": 3961
+ },
+ {
+ "epoch": 55.02795980777632,
+ "grad_norm": 0.25451111793518066,
+ "learning_rate": 0.0006,
+ "loss": 3.54240083694458,
+ "step": 3962
+ },
+ {
+ "epoch": 55.04193971166448,
+ "grad_norm": 0.2394949048757553,
+ "learning_rate": 0.0006,
+ "loss": 3.5492677688598633,
+ "step": 3963
+ },
+ {
+ "epoch": 55.05591961555265,
+ "grad_norm": 0.2306671440601349,
+ "learning_rate": 0.0006,
+ "loss": 3.524200916290283,
+ "step": 3964
+ },
+ {
+ "epoch": 55.0698995194408,
+ "grad_norm": 0.2307029813528061,
+ "learning_rate": 0.0006,
+ "loss": 3.509249687194824,
+ "step": 3965
+ },
+ {
+ "epoch": 55.083879423328966,
+ "grad_norm": 0.24812111258506775,
+ "learning_rate": 0.0006,
+ "loss": 3.5500473976135254,
+ "step": 3966
+ },
+ {
+ "epoch": 55.09785932721712,
+ "grad_norm": 0.28564271330833435,
+ "learning_rate": 0.0006,
+ "loss": 3.5178303718566895,
+ "step": 3967
+ },
+ {
+ "epoch": 55.111839231105286,
+ "grad_norm": 0.26979005336761475,
+ "learning_rate": 0.0006,
+ "loss": 3.5306806564331055,
+ "step": 3968
+ },
+ {
+ "epoch": 55.12581913499345,
+ "grad_norm": 0.24274848401546478,
+ "learning_rate": 0.0006,
+ "loss": 3.5758519172668457,
+ "step": 3969
+ },
+ {
+ "epoch": 55.139799038881605,
+ "grad_norm": 0.2560444474220276,
+ "learning_rate": 0.0006,
+ "loss": 3.5417323112487793,
+ "step": 3970
+ },
+ {
+ "epoch": 55.15377894276977,
+ "grad_norm": 0.2553671598434448,
+ "learning_rate": 0.0006,
+ "loss": 3.5258004665374756,
+ "step": 3971
+ },
+ {
+ "epoch": 55.16775884665793,
+ "grad_norm": 0.2170111984014511,
+ "learning_rate": 0.0006,
+ "loss": 3.514847755432129,
+ "step": 3972
+ },
+ {
+ "epoch": 55.18173875054609,
+ "grad_norm": 0.20854522287845612,
+ "learning_rate": 0.0006,
+ "loss": 3.5248336791992188,
+ "step": 3973
+ },
+ {
+ "epoch": 55.19571865443425,
+ "grad_norm": 0.21873287856578827,
+ "learning_rate": 0.0006,
+ "loss": 3.5468008518218994,
+ "step": 3974
+ },
+ {
+ "epoch": 55.20969855832241,
+ "grad_norm": 0.21194154024124146,
+ "learning_rate": 0.0006,
+ "loss": 3.568512439727783,
+ "step": 3975
+ },
+ {
+ "epoch": 55.22367846221057,
+ "grad_norm": 0.23534680902957916,
+ "learning_rate": 0.0006,
+ "loss": 3.5285420417785645,
+ "step": 3976
+ },
+ {
+ "epoch": 55.237658366098735,
+ "grad_norm": 0.22674795985221863,
+ "learning_rate": 0.0006,
+ "loss": 3.5399436950683594,
+ "step": 3977
+ },
+ {
+ "epoch": 55.25163826998689,
+ "grad_norm": 0.2248486578464508,
+ "learning_rate": 0.0006,
+ "loss": 3.5241036415100098,
+ "step": 3978
+ },
+ {
+ "epoch": 55.265618173875055,
+ "grad_norm": 0.241151362657547,
+ "learning_rate": 0.0006,
+ "loss": 3.547079086303711,
+ "step": 3979
+ },
+ {
+ "epoch": 55.27959807776322,
+ "grad_norm": 0.2783249318599701,
+ "learning_rate": 0.0006,
+ "loss": 3.5442988872528076,
+ "step": 3980
+ },
+ {
+ "epoch": 55.293577981651374,
+ "grad_norm": 0.2743528485298157,
+ "learning_rate": 0.0006,
+ "loss": 3.529618978500366,
+ "step": 3981
+ },
+ {
+ "epoch": 55.30755788553954,
+ "grad_norm": 0.23901724815368652,
+ "learning_rate": 0.0006,
+ "loss": 3.5379443168640137,
+ "step": 3982
+ },
+ {
+ "epoch": 55.3215377894277,
+ "grad_norm": 0.22758841514587402,
+ "learning_rate": 0.0006,
+ "loss": 3.5446794033050537,
+ "step": 3983
+ },
+ {
+ "epoch": 55.33551769331586,
+ "grad_norm": 0.22634629905223846,
+ "learning_rate": 0.0006,
+ "loss": 3.521944522857666,
+ "step": 3984
+ },
+ {
+ "epoch": 55.34949759720402,
+ "grad_norm": 0.23372086882591248,
+ "learning_rate": 0.0006,
+ "loss": 3.565023899078369,
+ "step": 3985
+ },
+ {
+ "epoch": 55.36347750109218,
+ "grad_norm": 0.24722231924533844,
+ "learning_rate": 0.0006,
+ "loss": 3.535661220550537,
+ "step": 3986
+ },
+ {
+ "epoch": 55.37745740498034,
+ "grad_norm": 0.21684594452381134,
+ "learning_rate": 0.0006,
+ "loss": 3.59070086479187,
+ "step": 3987
+ },
+ {
+ "epoch": 55.391437308868504,
+ "grad_norm": 0.186308816075325,
+ "learning_rate": 0.0006,
+ "loss": 3.5373833179473877,
+ "step": 3988
+ },
+ {
+ "epoch": 55.40541721275666,
+ "grad_norm": 0.2240687608718872,
+ "learning_rate": 0.0006,
+ "loss": 3.613295555114746,
+ "step": 3989
+ },
+ {
+ "epoch": 55.419397116644824,
+ "grad_norm": 0.25724494457244873,
+ "learning_rate": 0.0006,
+ "loss": 3.581005096435547,
+ "step": 3990
+ },
+ {
+ "epoch": 55.43337702053299,
+ "grad_norm": 0.24023419618606567,
+ "learning_rate": 0.0006,
+ "loss": 3.563951015472412,
+ "step": 3991
+ },
+ {
+ "epoch": 55.44735692442114,
+ "grad_norm": 0.21473391354084015,
+ "learning_rate": 0.0006,
+ "loss": 3.5444185733795166,
+ "step": 3992
+ },
+ {
+ "epoch": 55.46133682830931,
+ "grad_norm": 0.20466852188110352,
+ "learning_rate": 0.0006,
+ "loss": 3.5585713386535645,
+ "step": 3993
+ },
+ {
+ "epoch": 55.47531673219746,
+ "grad_norm": 0.20925740897655487,
+ "learning_rate": 0.0006,
+ "loss": 3.5656747817993164,
+ "step": 3994
+ },
+ {
+ "epoch": 55.489296636085626,
+ "grad_norm": 0.2309556007385254,
+ "learning_rate": 0.0006,
+ "loss": 3.5653891563415527,
+ "step": 3995
+ },
+ {
+ "epoch": 55.50327653997379,
+ "grad_norm": 0.24270877242088318,
+ "learning_rate": 0.0006,
+ "loss": 3.5275917053222656,
+ "step": 3996
+ },
+ {
+ "epoch": 55.517256443861946,
+ "grad_norm": 0.22749851644039154,
+ "learning_rate": 0.0006,
+ "loss": 3.5392730236053467,
+ "step": 3997
+ },
+ {
+ "epoch": 55.53123634775011,
+ "grad_norm": 0.21618196368217468,
+ "learning_rate": 0.0006,
+ "loss": 3.5581812858581543,
+ "step": 3998
+ },
+ {
+ "epoch": 55.54521625163827,
+ "grad_norm": 0.22232134640216827,
+ "learning_rate": 0.0006,
+ "loss": 3.5340118408203125,
+ "step": 3999
+ },
+ {
+ "epoch": 55.55919615552643,
+ "grad_norm": 0.24543501436710358,
+ "learning_rate": 0.0006,
+ "loss": 3.572153329849243,
+ "step": 4000
+ },
+ {
+ "epoch": 55.57317605941459,
+ "grad_norm": 0.2385311722755432,
+ "learning_rate": 0.0006,
+ "loss": 3.5366618633270264,
+ "step": 4001
+ },
+ {
+ "epoch": 55.58715596330275,
+ "grad_norm": 0.27977821230888367,
+ "learning_rate": 0.0006,
+ "loss": 3.5788960456848145,
+ "step": 4002
+ },
+ {
+ "epoch": 55.60113586719091,
+ "grad_norm": 0.2929013967514038,
+ "learning_rate": 0.0006,
+ "loss": 3.61065936088562,
+ "step": 4003
+ },
+ {
+ "epoch": 55.615115771079076,
+ "grad_norm": 0.27820730209350586,
+ "learning_rate": 0.0006,
+ "loss": 3.538694381713867,
+ "step": 4004
+ },
+ {
+ "epoch": 55.62909567496723,
+ "grad_norm": 0.24188996851444244,
+ "learning_rate": 0.0006,
+ "loss": 3.571709632873535,
+ "step": 4005
+ },
+ {
+ "epoch": 55.643075578855395,
+ "grad_norm": 0.21659360826015472,
+ "learning_rate": 0.0006,
+ "loss": 3.5431199073791504,
+ "step": 4006
+ },
+ {
+ "epoch": 55.65705548274356,
+ "grad_norm": 0.23356232047080994,
+ "learning_rate": 0.0006,
+ "loss": 3.5664005279541016,
+ "step": 4007
+ },
+ {
+ "epoch": 55.671035386631715,
+ "grad_norm": 0.21523472666740417,
+ "learning_rate": 0.0006,
+ "loss": 3.575711250305176,
+ "step": 4008
+ },
+ {
+ "epoch": 55.68501529051988,
+ "grad_norm": 0.22101815044879913,
+ "learning_rate": 0.0006,
+ "loss": 3.5843849182128906,
+ "step": 4009
+ },
+ {
+ "epoch": 55.69899519440804,
+ "grad_norm": 0.24153906106948853,
+ "learning_rate": 0.0006,
+ "loss": 3.5737733840942383,
+ "step": 4010
+ },
+ {
+ "epoch": 55.7129750982962,
+ "grad_norm": 0.2181350439786911,
+ "learning_rate": 0.0006,
+ "loss": 3.582613945007324,
+ "step": 4011
+ },
+ {
+ "epoch": 55.72695500218436,
+ "grad_norm": 0.21046742796897888,
+ "learning_rate": 0.0006,
+ "loss": 3.5380563735961914,
+ "step": 4012
+ },
+ {
+ "epoch": 55.74093490607252,
+ "grad_norm": 0.23996953666210175,
+ "learning_rate": 0.0006,
+ "loss": 3.57753849029541,
+ "step": 4013
+ },
+ {
+ "epoch": 55.75491480996068,
+ "grad_norm": 0.24543973803520203,
+ "learning_rate": 0.0006,
+ "loss": 3.578747272491455,
+ "step": 4014
+ },
+ {
+ "epoch": 55.768894713848844,
+ "grad_norm": 0.23597940802574158,
+ "learning_rate": 0.0006,
+ "loss": 3.5816988945007324,
+ "step": 4015
+ },
+ {
+ "epoch": 55.782874617737,
+ "grad_norm": 0.237411230802536,
+ "learning_rate": 0.0006,
+ "loss": 3.5659806728363037,
+ "step": 4016
+ },
+ {
+ "epoch": 55.796854521625164,
+ "grad_norm": 0.23947440087795258,
+ "learning_rate": 0.0006,
+ "loss": 3.545125961303711,
+ "step": 4017
+ },
+ {
+ "epoch": 55.81083442551333,
+ "grad_norm": 0.21562735736370087,
+ "learning_rate": 0.0006,
+ "loss": 3.5571303367614746,
+ "step": 4018
+ },
+ {
+ "epoch": 55.824814329401484,
+ "grad_norm": 0.21958434581756592,
+ "learning_rate": 0.0006,
+ "loss": 3.5243420600891113,
+ "step": 4019
+ },
+ {
+ "epoch": 55.83879423328965,
+ "grad_norm": 0.23856471478939056,
+ "learning_rate": 0.0006,
+ "loss": 3.586078643798828,
+ "step": 4020
+ },
+ {
+ "epoch": 55.8527741371778,
+ "grad_norm": 0.20703551173210144,
+ "learning_rate": 0.0006,
+ "loss": 3.5503201484680176,
+ "step": 4021
+ },
+ {
+ "epoch": 55.86675404106597,
+ "grad_norm": 0.21183231472969055,
+ "learning_rate": 0.0006,
+ "loss": 3.5873844623565674,
+ "step": 4022
+ },
+ {
+ "epoch": 55.88073394495413,
+ "grad_norm": 0.2129688709974289,
+ "learning_rate": 0.0006,
+ "loss": 3.582061290740967,
+ "step": 4023
+ },
+ {
+ "epoch": 55.89471384884229,
+ "grad_norm": 0.2122214287519455,
+ "learning_rate": 0.0006,
+ "loss": 3.547175884246826,
+ "step": 4024
+ },
+ {
+ "epoch": 55.90869375273045,
+ "grad_norm": 0.214874267578125,
+ "learning_rate": 0.0006,
+ "loss": 3.5322279930114746,
+ "step": 4025
+ },
+ {
+ "epoch": 55.92267365661861,
+ "grad_norm": 0.24104614555835724,
+ "learning_rate": 0.0006,
+ "loss": 3.5742111206054688,
+ "step": 4026
+ },
+ {
+ "epoch": 55.93665356050677,
+ "grad_norm": 0.2257685512304306,
+ "learning_rate": 0.0006,
+ "loss": 3.5686793327331543,
+ "step": 4027
+ },
+ {
+ "epoch": 55.95063346439493,
+ "grad_norm": 0.2170567363500595,
+ "learning_rate": 0.0006,
+ "loss": 3.5670571327209473,
+ "step": 4028
+ },
+ {
+ "epoch": 55.964613368283096,
+ "grad_norm": 0.2003280222415924,
+ "learning_rate": 0.0006,
+ "loss": 3.533921718597412,
+ "step": 4029
+ },
+ {
+ "epoch": 55.97859327217125,
+ "grad_norm": 0.21483278274536133,
+ "learning_rate": 0.0006,
+ "loss": 3.539720058441162,
+ "step": 4030
+ },
+ {
+ "epoch": 55.992573176059416,
+ "grad_norm": 0.26908108592033386,
+ "learning_rate": 0.0006,
+ "loss": 3.575934886932373,
+ "step": 4031
+ },
+ {
+ "epoch": 56.0,
+ "grad_norm": 0.30002665519714355,
+ "learning_rate": 0.0006,
+ "loss": 3.5702414512634277,
+ "step": 4032
+ },
+ {
+ "epoch": 56.0,
+ "eval_loss": 3.9834072589874268,
+ "eval_runtime": 46.2268,
+ "eval_samples_per_second": 52.826,
+ "eval_steps_per_second": 3.31,
+ "step": 4032
+ },
+ {
+ "epoch": 56.01397990388816,
+ "grad_norm": 0.25298207998275757,
+ "learning_rate": 0.0006,
+ "loss": 3.538151741027832,
+ "step": 4033
+ },
+ {
+ "epoch": 56.02795980777632,
+ "grad_norm": 0.2231103479862213,
+ "learning_rate": 0.0006,
+ "loss": 3.551466941833496,
+ "step": 4034
+ },
+ {
+ "epoch": 56.04193971166448,
+ "grad_norm": 0.2504221796989441,
+ "learning_rate": 0.0006,
+ "loss": 3.5361199378967285,
+ "step": 4035
+ },
+ {
+ "epoch": 56.05591961555265,
+ "grad_norm": 0.23491773009300232,
+ "learning_rate": 0.0006,
+ "loss": 3.549346446990967,
+ "step": 4036
+ },
+ {
+ "epoch": 56.0698995194408,
+ "grad_norm": 0.23068852722644806,
+ "learning_rate": 0.0006,
+ "loss": 3.5243453979492188,
+ "step": 4037
+ },
+ {
+ "epoch": 56.083879423328966,
+ "grad_norm": 0.22160249948501587,
+ "learning_rate": 0.0006,
+ "loss": 3.551191806793213,
+ "step": 4038
+ },
+ {
+ "epoch": 56.09785932721712,
+ "grad_norm": 0.2389034926891327,
+ "learning_rate": 0.0006,
+ "loss": 3.5358071327209473,
+ "step": 4039
+ },
+ {
+ "epoch": 56.111839231105286,
+ "grad_norm": 0.2552168071269989,
+ "learning_rate": 0.0006,
+ "loss": 3.564204692840576,
+ "step": 4040
+ },
+ {
+ "epoch": 56.12581913499345,
+ "grad_norm": 0.2802336812019348,
+ "learning_rate": 0.0006,
+ "loss": 3.540386438369751,
+ "step": 4041
+ },
+ {
+ "epoch": 56.139799038881605,
+ "grad_norm": 0.2564619779586792,
+ "learning_rate": 0.0006,
+ "loss": 3.544264554977417,
+ "step": 4042
+ },
+ {
+ "epoch": 56.15377894276977,
+ "grad_norm": 0.24272632598876953,
+ "learning_rate": 0.0006,
+ "loss": 3.509497880935669,
+ "step": 4043
+ },
+ {
+ "epoch": 56.16775884665793,
+ "grad_norm": 0.23981881141662598,
+ "learning_rate": 0.0006,
+ "loss": 3.551090955734253,
+ "step": 4044
+ },
+ {
+ "epoch": 56.18173875054609,
+ "grad_norm": 0.22418269515037537,
+ "learning_rate": 0.0006,
+ "loss": 3.558614492416382,
+ "step": 4045
+ },
+ {
+ "epoch": 56.19571865443425,
+ "grad_norm": 0.21792462468147278,
+ "learning_rate": 0.0006,
+ "loss": 3.540558338165283,
+ "step": 4046
+ },
+ {
+ "epoch": 56.20969855832241,
+ "grad_norm": 0.21248634159564972,
+ "learning_rate": 0.0006,
+ "loss": 3.5273942947387695,
+ "step": 4047
+ },
+ {
+ "epoch": 56.22367846221057,
+ "grad_norm": 0.1863572895526886,
+ "learning_rate": 0.0006,
+ "loss": 3.555302143096924,
+ "step": 4048
+ },
+ {
+ "epoch": 56.237658366098735,
+ "grad_norm": 0.21031822264194489,
+ "learning_rate": 0.0006,
+ "loss": 3.547515630722046,
+ "step": 4049
+ },
+ {
+ "epoch": 56.25163826998689,
+ "grad_norm": 0.19754044711589813,
+ "learning_rate": 0.0006,
+ "loss": 3.5476508140563965,
+ "step": 4050
+ },
+ {
+ "epoch": 56.265618173875055,
+ "grad_norm": 0.19707852602005005,
+ "learning_rate": 0.0006,
+ "loss": 3.506730794906616,
+ "step": 4051
+ },
+ {
+ "epoch": 56.27959807776322,
+ "grad_norm": 0.21011239290237427,
+ "learning_rate": 0.0006,
+ "loss": 3.51116681098938,
+ "step": 4052
+ },
+ {
+ "epoch": 56.293577981651374,
+ "grad_norm": 0.20281212031841278,
+ "learning_rate": 0.0006,
+ "loss": 3.549513816833496,
+ "step": 4053
+ },
+ {
+ "epoch": 56.30755788553954,
+ "grad_norm": 0.19198910892009735,
+ "learning_rate": 0.0006,
+ "loss": 3.5299534797668457,
+ "step": 4054
+ },
+ {
+ "epoch": 56.3215377894277,
+ "grad_norm": 0.1861368715763092,
+ "learning_rate": 0.0006,
+ "loss": 3.513909339904785,
+ "step": 4055
+ },
+ {
+ "epoch": 56.33551769331586,
+ "grad_norm": 0.20779506862163544,
+ "learning_rate": 0.0006,
+ "loss": 3.5528712272644043,
+ "step": 4056
+ },
+ {
+ "epoch": 56.34949759720402,
+ "grad_norm": 0.2229684591293335,
+ "learning_rate": 0.0006,
+ "loss": 3.518359661102295,
+ "step": 4057
+ },
+ {
+ "epoch": 56.36347750109218,
+ "grad_norm": 0.22998179495334625,
+ "learning_rate": 0.0006,
+ "loss": 3.5004091262817383,
+ "step": 4058
+ },
+ {
+ "epoch": 56.37745740498034,
+ "grad_norm": 0.2176709622144699,
+ "learning_rate": 0.0006,
+ "loss": 3.550295829772949,
+ "step": 4059
+ },
+ {
+ "epoch": 56.391437308868504,
+ "grad_norm": 0.19512872397899628,
+ "learning_rate": 0.0006,
+ "loss": 3.5305161476135254,
+ "step": 4060
+ },
+ {
+ "epoch": 56.40541721275666,
+ "grad_norm": 0.23127448558807373,
+ "learning_rate": 0.0006,
+ "loss": 3.5341286659240723,
+ "step": 4061
+ },
+ {
+ "epoch": 56.419397116644824,
+ "grad_norm": 0.20905959606170654,
+ "learning_rate": 0.0006,
+ "loss": 3.553912401199341,
+ "step": 4062
+ },
+ {
+ "epoch": 56.43337702053299,
+ "grad_norm": 0.23370878398418427,
+ "learning_rate": 0.0006,
+ "loss": 3.5700249671936035,
+ "step": 4063
+ },
+ {
+ "epoch": 56.44735692442114,
+ "grad_norm": 0.233205646276474,
+ "learning_rate": 0.0006,
+ "loss": 3.5184097290039062,
+ "step": 4064
+ },
+ {
+ "epoch": 56.46133682830931,
+ "grad_norm": 0.23928777873516083,
+ "learning_rate": 0.0006,
+ "loss": 3.535874366760254,
+ "step": 4065
+ },
+ {
+ "epoch": 56.47531673219746,
+ "grad_norm": 0.24950815737247467,
+ "learning_rate": 0.0006,
+ "loss": 3.508136749267578,
+ "step": 4066
+ },
+ {
+ "epoch": 56.489296636085626,
+ "grad_norm": 0.24821820855140686,
+ "learning_rate": 0.0006,
+ "loss": 3.5421361923217773,
+ "step": 4067
+ },
+ {
+ "epoch": 56.50327653997379,
+ "grad_norm": 0.2252482771873474,
+ "learning_rate": 0.0006,
+ "loss": 3.5516514778137207,
+ "step": 4068
+ },
+ {
+ "epoch": 56.517256443861946,
+ "grad_norm": 0.2238101363182068,
+ "learning_rate": 0.0006,
+ "loss": 3.567741632461548,
+ "step": 4069
+ },
+ {
+ "epoch": 56.53123634775011,
+ "grad_norm": 0.20759683847427368,
+ "learning_rate": 0.0006,
+ "loss": 3.544705390930176,
+ "step": 4070
+ },
+ {
+ "epoch": 56.54521625163827,
+ "grad_norm": 0.21918460726737976,
+ "learning_rate": 0.0006,
+ "loss": 3.5725836753845215,
+ "step": 4071
+ },
+ {
+ "epoch": 56.55919615552643,
+ "grad_norm": 0.22640042006969452,
+ "learning_rate": 0.0006,
+ "loss": 3.5447535514831543,
+ "step": 4072
+ },
+ {
+ "epoch": 56.57317605941459,
+ "grad_norm": 0.23130203783512115,
+ "learning_rate": 0.0006,
+ "loss": 3.5620853900909424,
+ "step": 4073
+ },
+ {
+ "epoch": 56.58715596330275,
+ "grad_norm": 0.2215641736984253,
+ "learning_rate": 0.0006,
+ "loss": 3.5416438579559326,
+ "step": 4074
+ },
+ {
+ "epoch": 56.60113586719091,
+ "grad_norm": 0.20106497406959534,
+ "learning_rate": 0.0006,
+ "loss": 3.537386178970337,
+ "step": 4075
+ },
+ {
+ "epoch": 56.615115771079076,
+ "grad_norm": 0.2045976221561432,
+ "learning_rate": 0.0006,
+ "loss": 3.555032730102539,
+ "step": 4076
+ },
+ {
+ "epoch": 56.62909567496723,
+ "grad_norm": 0.20097647607326508,
+ "learning_rate": 0.0006,
+ "loss": 3.559572458267212,
+ "step": 4077
+ },
+ {
+ "epoch": 56.643075578855395,
+ "grad_norm": 0.24158388376235962,
+ "learning_rate": 0.0006,
+ "loss": 3.56520938873291,
+ "step": 4078
+ },
+ {
+ "epoch": 56.65705548274356,
+ "grad_norm": 0.2687791585922241,
+ "learning_rate": 0.0006,
+ "loss": 3.545924663543701,
+ "step": 4079
+ },
+ {
+ "epoch": 56.671035386631715,
+ "grad_norm": 0.22466111183166504,
+ "learning_rate": 0.0006,
+ "loss": 3.5556845664978027,
+ "step": 4080
+ },
+ {
+ "epoch": 56.68501529051988,
+ "grad_norm": 0.2177814394235611,
+ "learning_rate": 0.0006,
+ "loss": 3.5799131393432617,
+ "step": 4081
+ },
+ {
+ "epoch": 56.69899519440804,
+ "grad_norm": 0.2700476050376892,
+ "learning_rate": 0.0006,
+ "loss": 3.5859055519104004,
+ "step": 4082
+ },
+ {
+ "epoch": 56.7129750982962,
+ "grad_norm": 0.28230178356170654,
+ "learning_rate": 0.0006,
+ "loss": 3.5733890533447266,
+ "step": 4083
+ },
+ {
+ "epoch": 56.72695500218436,
+ "grad_norm": 0.29298731684684753,
+ "learning_rate": 0.0006,
+ "loss": 3.556626319885254,
+ "step": 4084
+ },
+ {
+ "epoch": 56.74093490607252,
+ "grad_norm": 0.2818183898925781,
+ "learning_rate": 0.0006,
+ "loss": 3.5884718894958496,
+ "step": 4085
+ },
+ {
+ "epoch": 56.75491480996068,
+ "grad_norm": 0.24008697271347046,
+ "learning_rate": 0.0006,
+ "loss": 3.5464529991149902,
+ "step": 4086
+ },
+ {
+ "epoch": 56.768894713848844,
+ "grad_norm": 0.23406296968460083,
+ "learning_rate": 0.0006,
+ "loss": 3.5622801780700684,
+ "step": 4087
+ },
+ {
+ "epoch": 56.782874617737,
+ "grad_norm": 0.26089322566986084,
+ "learning_rate": 0.0006,
+ "loss": 3.5775020122528076,
+ "step": 4088
+ },
+ {
+ "epoch": 56.796854521625164,
+ "grad_norm": 0.2576654851436615,
+ "learning_rate": 0.0006,
+ "loss": 3.5543627738952637,
+ "step": 4089
+ },
+ {
+ "epoch": 56.81083442551333,
+ "grad_norm": 0.26576393842697144,
+ "learning_rate": 0.0006,
+ "loss": 3.546170711517334,
+ "step": 4090
+ },
+ {
+ "epoch": 56.824814329401484,
+ "grad_norm": 0.22380715608596802,
+ "learning_rate": 0.0006,
+ "loss": 3.5437729358673096,
+ "step": 4091
+ },
+ {
+ "epoch": 56.83879423328965,
+ "grad_norm": 0.20786714553833008,
+ "learning_rate": 0.0006,
+ "loss": 3.5951266288757324,
+ "step": 4092
+ },
+ {
+ "epoch": 56.8527741371778,
+ "grad_norm": 0.23177042603492737,
+ "learning_rate": 0.0006,
+ "loss": 3.549454689025879,
+ "step": 4093
+ },
+ {
+ "epoch": 56.86675404106597,
+ "grad_norm": 0.21466009318828583,
+ "learning_rate": 0.0006,
+ "loss": 3.5611233711242676,
+ "step": 4094
+ },
+ {
+ "epoch": 56.88073394495413,
+ "grad_norm": 0.20928414165973663,
+ "learning_rate": 0.0006,
+ "loss": 3.5550684928894043,
+ "step": 4095
+ },
+ {
+ "epoch": 56.89471384884229,
+ "grad_norm": 0.20727156102657318,
+ "learning_rate": 0.0006,
+ "loss": 3.552496910095215,
+ "step": 4096
+ },
+ {
+ "epoch": 56.90869375273045,
+ "grad_norm": 0.21370401978492737,
+ "learning_rate": 0.0006,
+ "loss": 3.5763869285583496,
+ "step": 4097
+ },
+ {
+ "epoch": 56.92267365661861,
+ "grad_norm": 0.22490337491035461,
+ "learning_rate": 0.0006,
+ "loss": 3.538986921310425,
+ "step": 4098
+ },
+ {
+ "epoch": 56.93665356050677,
+ "grad_norm": 0.23320236802101135,
+ "learning_rate": 0.0006,
+ "loss": 3.5514214038848877,
+ "step": 4099
+ },
+ {
+ "epoch": 56.95063346439493,
+ "grad_norm": 0.22050419449806213,
+ "learning_rate": 0.0006,
+ "loss": 3.5486960411071777,
+ "step": 4100
+ },
+ {
+ "epoch": 56.964613368283096,
+ "grad_norm": 0.2241443395614624,
+ "learning_rate": 0.0006,
+ "loss": 3.5858001708984375,
+ "step": 4101
+ },
+ {
+ "epoch": 56.97859327217125,
+ "grad_norm": 0.24904389679431915,
+ "learning_rate": 0.0006,
+ "loss": 3.586472511291504,
+ "step": 4102
+ },
+ {
+ "epoch": 56.992573176059416,
+ "grad_norm": 0.2333211451768875,
+ "learning_rate": 0.0006,
+ "loss": 3.5463132858276367,
+ "step": 4103
+ },
+ {
+ "epoch": 57.0,
+ "grad_norm": 0.24142783880233765,
+ "learning_rate": 0.0006,
+ "loss": 3.5642542839050293,
+ "step": 4104
+ },
+ {
+ "epoch": 57.0,
+ "eval_loss": 3.973973035812378,
+ "eval_runtime": 46.2906,
+ "eval_samples_per_second": 52.754,
+ "eval_steps_per_second": 3.305,
+ "step": 4104
+ },
+ {
+ "epoch": 57.01397990388816,
+ "grad_norm": 0.21989624202251434,
+ "learning_rate": 0.0006,
+ "loss": 3.539435863494873,
+ "step": 4105
+ },
+ {
+ "epoch": 57.02795980777632,
+ "grad_norm": 0.24061834812164307,
+ "learning_rate": 0.0006,
+ "loss": 3.5251410007476807,
+ "step": 4106
+ },
+ {
+ "epoch": 57.04193971166448,
+ "grad_norm": 0.2483278512954712,
+ "learning_rate": 0.0006,
+ "loss": 3.5104010105133057,
+ "step": 4107
+ },
+ {
+ "epoch": 57.05591961555265,
+ "grad_norm": 0.2717698812484741,
+ "learning_rate": 0.0006,
+ "loss": 3.5134170055389404,
+ "step": 4108
+ },
+ {
+ "epoch": 57.0698995194408,
+ "grad_norm": 0.27335646748542786,
+ "learning_rate": 0.0006,
+ "loss": 3.53574275970459,
+ "step": 4109
+ },
+ {
+ "epoch": 57.083879423328966,
+ "grad_norm": 0.2423052042722702,
+ "learning_rate": 0.0006,
+ "loss": 3.4960169792175293,
+ "step": 4110
+ },
+ {
+ "epoch": 57.09785932721712,
+ "grad_norm": 0.2241092175245285,
+ "learning_rate": 0.0006,
+ "loss": 3.5409107208251953,
+ "step": 4111
+ },
+ {
+ "epoch": 57.111839231105286,
+ "grad_norm": 0.23098452389240265,
+ "learning_rate": 0.0006,
+ "loss": 3.5326709747314453,
+ "step": 4112
+ },
+ {
+ "epoch": 57.12581913499345,
+ "grad_norm": 0.2500186562538147,
+ "learning_rate": 0.0006,
+ "loss": 3.509953498840332,
+ "step": 4113
+ },
+ {
+ "epoch": 57.139799038881605,
+ "grad_norm": 0.26994550228118896,
+ "learning_rate": 0.0006,
+ "loss": 3.560410499572754,
+ "step": 4114
+ },
+ {
+ "epoch": 57.15377894276977,
+ "grad_norm": 0.24950402975082397,
+ "learning_rate": 0.0006,
+ "loss": 3.517613649368286,
+ "step": 4115
+ },
+ {
+ "epoch": 57.16775884665793,
+ "grad_norm": 0.21742430329322815,
+ "learning_rate": 0.0006,
+ "loss": 3.531256675720215,
+ "step": 4116
+ },
+ {
+ "epoch": 57.18173875054609,
+ "grad_norm": 0.29069146513938904,
+ "learning_rate": 0.0006,
+ "loss": 3.5283756256103516,
+ "step": 4117
+ },
+ {
+ "epoch": 57.19571865443425,
+ "grad_norm": 0.2901996970176697,
+ "learning_rate": 0.0006,
+ "loss": 3.5460801124572754,
+ "step": 4118
+ },
+ {
+ "epoch": 57.20969855832241,
+ "grad_norm": 0.2534845471382141,
+ "learning_rate": 0.0006,
+ "loss": 3.515536308288574,
+ "step": 4119
+ },
+ {
+ "epoch": 57.22367846221057,
+ "grad_norm": 0.2352340817451477,
+ "learning_rate": 0.0006,
+ "loss": 3.5281717777252197,
+ "step": 4120
+ },
+ {
+ "epoch": 57.237658366098735,
+ "grad_norm": 0.2263645976781845,
+ "learning_rate": 0.0006,
+ "loss": 3.5629191398620605,
+ "step": 4121
+ },
+ {
+ "epoch": 57.25163826998689,
+ "grad_norm": 0.21413370966911316,
+ "learning_rate": 0.0006,
+ "loss": 3.5342142581939697,
+ "step": 4122
+ },
+ {
+ "epoch": 57.265618173875055,
+ "grad_norm": 0.1969698667526245,
+ "learning_rate": 0.0006,
+ "loss": 3.5467586517333984,
+ "step": 4123
+ },
+ {
+ "epoch": 57.27959807776322,
+ "grad_norm": 0.2106606364250183,
+ "learning_rate": 0.0006,
+ "loss": 3.5409536361694336,
+ "step": 4124
+ },
+ {
+ "epoch": 57.293577981651374,
+ "grad_norm": 0.21824438869953156,
+ "learning_rate": 0.0006,
+ "loss": 3.5246548652648926,
+ "step": 4125
+ },
+ {
+ "epoch": 57.30755788553954,
+ "grad_norm": 0.2147768884897232,
+ "learning_rate": 0.0006,
+ "loss": 3.5411794185638428,
+ "step": 4126
+ },
+ {
+ "epoch": 57.3215377894277,
+ "grad_norm": 0.21352852880954742,
+ "learning_rate": 0.0006,
+ "loss": 3.569387197494507,
+ "step": 4127
+ },
+ {
+ "epoch": 57.33551769331586,
+ "grad_norm": 0.20957978069782257,
+ "learning_rate": 0.0006,
+ "loss": 3.522695779800415,
+ "step": 4128
+ },
+ {
+ "epoch": 57.34949759720402,
+ "grad_norm": 0.2013026475906372,
+ "learning_rate": 0.0006,
+ "loss": 3.5485787391662598,
+ "step": 4129
+ },
+ {
+ "epoch": 57.36347750109218,
+ "grad_norm": 0.2260376214981079,
+ "learning_rate": 0.0006,
+ "loss": 3.547607421875,
+ "step": 4130
+ },
+ {
+ "epoch": 57.37745740498034,
+ "grad_norm": 0.22991685569286346,
+ "learning_rate": 0.0006,
+ "loss": 3.5464730262756348,
+ "step": 4131
+ },
+ {
+ "epoch": 57.391437308868504,
+ "grad_norm": 0.19638051092624664,
+ "learning_rate": 0.0006,
+ "loss": 3.54355525970459,
+ "step": 4132
+ },
+ {
+ "epoch": 57.40541721275666,
+ "grad_norm": 0.19450774788856506,
+ "learning_rate": 0.0006,
+ "loss": 3.5490050315856934,
+ "step": 4133
+ },
+ {
+ "epoch": 57.419397116644824,
+ "grad_norm": 0.21798551082611084,
+ "learning_rate": 0.0006,
+ "loss": 3.56355619430542,
+ "step": 4134
+ },
+ {
+ "epoch": 57.43337702053299,
+ "grad_norm": 0.2129846215248108,
+ "learning_rate": 0.0006,
+ "loss": 3.5607380867004395,
+ "step": 4135
+ },
+ {
+ "epoch": 57.44735692442114,
+ "grad_norm": 0.20589227974414825,
+ "learning_rate": 0.0006,
+ "loss": 3.523768663406372,
+ "step": 4136
+ },
+ {
+ "epoch": 57.46133682830931,
+ "grad_norm": 0.21841686964035034,
+ "learning_rate": 0.0006,
+ "loss": 3.5187885761260986,
+ "step": 4137
+ },
+ {
+ "epoch": 57.47531673219746,
+ "grad_norm": 0.2118791788816452,
+ "learning_rate": 0.0006,
+ "loss": 3.5271782875061035,
+ "step": 4138
+ },
+ {
+ "epoch": 57.489296636085626,
+ "grad_norm": 0.21905459463596344,
+ "learning_rate": 0.0006,
+ "loss": 3.546968460083008,
+ "step": 4139
+ },
+ {
+ "epoch": 57.50327653997379,
+ "grad_norm": 0.23899133503437042,
+ "learning_rate": 0.0006,
+ "loss": 3.5156688690185547,
+ "step": 4140
+ },
+ {
+ "epoch": 57.517256443861946,
+ "grad_norm": 0.23873545229434967,
+ "learning_rate": 0.0006,
+ "loss": 3.5271472930908203,
+ "step": 4141
+ },
+ {
+ "epoch": 57.53123634775011,
+ "grad_norm": 0.20691858232021332,
+ "learning_rate": 0.0006,
+ "loss": 3.552854537963867,
+ "step": 4142
+ },
+ {
+ "epoch": 57.54521625163827,
+ "grad_norm": 0.21962891519069672,
+ "learning_rate": 0.0006,
+ "loss": 3.5258498191833496,
+ "step": 4143
+ },
+ {
+ "epoch": 57.55919615552643,
+ "grad_norm": 0.21762165427207947,
+ "learning_rate": 0.0006,
+ "loss": 3.566831588745117,
+ "step": 4144
+ },
+ {
+ "epoch": 57.57317605941459,
+ "grad_norm": 0.19603654742240906,
+ "learning_rate": 0.0006,
+ "loss": 3.5393714904785156,
+ "step": 4145
+ },
+ {
+ "epoch": 57.58715596330275,
+ "grad_norm": 0.20347437262535095,
+ "learning_rate": 0.0006,
+ "loss": 3.538390874862671,
+ "step": 4146
+ },
+ {
+ "epoch": 57.60113586719091,
+ "grad_norm": 0.2179173231124878,
+ "learning_rate": 0.0006,
+ "loss": 3.566631317138672,
+ "step": 4147
+ },
+ {
+ "epoch": 57.615115771079076,
+ "grad_norm": 0.19678309559822083,
+ "learning_rate": 0.0006,
+ "loss": 3.5659375190734863,
+ "step": 4148
+ },
+ {
+ "epoch": 57.62909567496723,
+ "grad_norm": 0.20221677422523499,
+ "learning_rate": 0.0006,
+ "loss": 3.5679430961608887,
+ "step": 4149
+ },
+ {
+ "epoch": 57.643075578855395,
+ "grad_norm": 0.21337579190731049,
+ "learning_rate": 0.0006,
+ "loss": 3.5330681800842285,
+ "step": 4150
+ },
+ {
+ "epoch": 57.65705548274356,
+ "grad_norm": 0.2646789848804474,
+ "learning_rate": 0.0006,
+ "loss": 3.5216803550720215,
+ "step": 4151
+ },
+ {
+ "epoch": 57.671035386631715,
+ "grad_norm": 0.304950088262558,
+ "learning_rate": 0.0006,
+ "loss": 3.5570156574249268,
+ "step": 4152
+ },
+ {
+ "epoch": 57.68501529051988,
+ "grad_norm": 0.2739402651786804,
+ "learning_rate": 0.0006,
+ "loss": 3.5844314098358154,
+ "step": 4153
+ },
+ {
+ "epoch": 57.69899519440804,
+ "grad_norm": 0.19060099124908447,
+ "learning_rate": 0.0006,
+ "loss": 3.571052074432373,
+ "step": 4154
+ },
+ {
+ "epoch": 57.7129750982962,
+ "grad_norm": 0.2941007614135742,
+ "learning_rate": 0.0006,
+ "loss": 3.543100357055664,
+ "step": 4155
+ },
+ {
+ "epoch": 57.72695500218436,
+ "grad_norm": 0.34624332189559937,
+ "learning_rate": 0.0006,
+ "loss": 3.564270496368408,
+ "step": 4156
+ },
+ {
+ "epoch": 57.74093490607252,
+ "grad_norm": 0.30635201930999756,
+ "learning_rate": 0.0006,
+ "loss": 3.5390584468841553,
+ "step": 4157
+ },
+ {
+ "epoch": 57.75491480996068,
+ "grad_norm": 0.2204878330230713,
+ "learning_rate": 0.0006,
+ "loss": 3.5427281856536865,
+ "step": 4158
+ },
+ {
+ "epoch": 57.768894713848844,
+ "grad_norm": 0.20659378170967102,
+ "learning_rate": 0.0006,
+ "loss": 3.528977155685425,
+ "step": 4159
+ },
+ {
+ "epoch": 57.782874617737,
+ "grad_norm": 0.2281361073255539,
+ "learning_rate": 0.0006,
+ "loss": 3.5531792640686035,
+ "step": 4160
+ },
+ {
+ "epoch": 57.796854521625164,
+ "grad_norm": 0.22478239238262177,
+ "learning_rate": 0.0006,
+ "loss": 3.566704750061035,
+ "step": 4161
+ },
+ {
+ "epoch": 57.81083442551333,
+ "grad_norm": 0.20797103643417358,
+ "learning_rate": 0.0006,
+ "loss": 3.5684943199157715,
+ "step": 4162
+ },
+ {
+ "epoch": 57.824814329401484,
+ "grad_norm": 0.2108374983072281,
+ "learning_rate": 0.0006,
+ "loss": 3.5475950241088867,
+ "step": 4163
+ },
+ {
+ "epoch": 57.83879423328965,
+ "grad_norm": 0.2268034815788269,
+ "learning_rate": 0.0006,
+ "loss": 3.5456833839416504,
+ "step": 4164
+ },
+ {
+ "epoch": 57.8527741371778,
+ "grad_norm": 0.2131519913673401,
+ "learning_rate": 0.0006,
+ "loss": 3.5316243171691895,
+ "step": 4165
+ },
+ {
+ "epoch": 57.86675404106597,
+ "grad_norm": 0.20163841545581818,
+ "learning_rate": 0.0006,
+ "loss": 3.5320897102355957,
+ "step": 4166
+ },
+ {
+ "epoch": 57.88073394495413,
+ "grad_norm": 0.20961757004261017,
+ "learning_rate": 0.0006,
+ "loss": 3.5800695419311523,
+ "step": 4167
+ },
+ {
+ "epoch": 57.89471384884229,
+ "grad_norm": 0.2061416506767273,
+ "learning_rate": 0.0006,
+ "loss": 3.544395923614502,
+ "step": 4168
+ },
+ {
+ "epoch": 57.90869375273045,
+ "grad_norm": 0.20306318998336792,
+ "learning_rate": 0.0006,
+ "loss": 3.554436683654785,
+ "step": 4169
+ },
+ {
+ "epoch": 57.92267365661861,
+ "grad_norm": 0.20685963332653046,
+ "learning_rate": 0.0006,
+ "loss": 3.5614635944366455,
+ "step": 4170
+ },
+ {
+ "epoch": 57.93665356050677,
+ "grad_norm": 0.19938082993030548,
+ "learning_rate": 0.0006,
+ "loss": 3.578136920928955,
+ "step": 4171
+ },
+ {
+ "epoch": 57.95063346439493,
+ "grad_norm": 0.2150411158800125,
+ "learning_rate": 0.0006,
+ "loss": 3.5754270553588867,
+ "step": 4172
+ },
+ {
+ "epoch": 57.964613368283096,
+ "grad_norm": 0.23399604856967926,
+ "learning_rate": 0.0006,
+ "loss": 3.5553112030029297,
+ "step": 4173
+ },
+ {
+ "epoch": 57.97859327217125,
+ "grad_norm": 0.2496841847896576,
+ "learning_rate": 0.0006,
+ "loss": 3.5509696006774902,
+ "step": 4174
+ },
+ {
+ "epoch": 57.992573176059416,
+ "grad_norm": 0.23759980499744415,
+ "learning_rate": 0.0006,
+ "loss": 3.5806684494018555,
+ "step": 4175
+ },
+ {
+ "epoch": 58.0,
+ "grad_norm": 0.2494540512561798,
+ "learning_rate": 0.0006,
+ "loss": 3.541708469390869,
+ "step": 4176
+ },
+ {
+ "epoch": 58.0,
+ "eval_loss": 3.970658779144287,
+ "eval_runtime": 46.0262,
+ "eval_samples_per_second": 53.057,
+ "eval_steps_per_second": 3.324,
+ "step": 4176
+ },
+ {
+ "epoch": 58.01397990388816,
+ "grad_norm": 0.2053643763065338,
+ "learning_rate": 0.0006,
+ "loss": 3.5264205932617188,
+ "step": 4177
+ },
+ {
+ "epoch": 58.02795980777632,
+ "grad_norm": 0.20680591464042664,
+ "learning_rate": 0.0006,
+ "loss": 3.495445728302002,
+ "step": 4178
+ },
+ {
+ "epoch": 58.04193971166448,
+ "grad_norm": 0.22180874645709991,
+ "learning_rate": 0.0006,
+ "loss": 3.546283483505249,
+ "step": 4179
+ },
+ {
+ "epoch": 58.05591961555265,
+ "grad_norm": 0.24255339801311493,
+ "learning_rate": 0.0006,
+ "loss": 3.50639271736145,
+ "step": 4180
+ },
+ {
+ "epoch": 58.0698995194408,
+ "grad_norm": 0.2747100591659546,
+ "learning_rate": 0.0006,
+ "loss": 3.514240026473999,
+ "step": 4181
+ },
+ {
+ "epoch": 58.083879423328966,
+ "grad_norm": 0.27960914373397827,
+ "learning_rate": 0.0006,
+ "loss": 3.5614311695098877,
+ "step": 4182
+ },
+ {
+ "epoch": 58.09785932721712,
+ "grad_norm": 0.25837743282318115,
+ "learning_rate": 0.0006,
+ "loss": 3.533560276031494,
+ "step": 4183
+ },
+ {
+ "epoch": 58.111839231105286,
+ "grad_norm": 0.24635657668113708,
+ "learning_rate": 0.0006,
+ "loss": 3.4867968559265137,
+ "step": 4184
+ },
+ {
+ "epoch": 58.12581913499345,
+ "grad_norm": 0.31520891189575195,
+ "learning_rate": 0.0006,
+ "loss": 3.5131611824035645,
+ "step": 4185
+ },
+ {
+ "epoch": 58.139799038881605,
+ "grad_norm": 0.36781513690948486,
+ "learning_rate": 0.0006,
+ "loss": 3.5149288177490234,
+ "step": 4186
+ },
+ {
+ "epoch": 58.15377894276977,
+ "grad_norm": 0.32433459162712097,
+ "learning_rate": 0.0006,
+ "loss": 3.5485405921936035,
+ "step": 4187
+ },
+ {
+ "epoch": 58.16775884665793,
+ "grad_norm": 0.2532205283641815,
+ "learning_rate": 0.0006,
+ "loss": 3.4994513988494873,
+ "step": 4188
+ },
+ {
+ "epoch": 58.18173875054609,
+ "grad_norm": 0.29780858755111694,
+ "learning_rate": 0.0006,
+ "loss": 3.496187448501587,
+ "step": 4189
+ },
+ {
+ "epoch": 58.19571865443425,
+ "grad_norm": 0.2804715037345886,
+ "learning_rate": 0.0006,
+ "loss": 3.5210375785827637,
+ "step": 4190
+ },
+ {
+ "epoch": 58.20969855832241,
+ "grad_norm": 0.2186010330915451,
+ "learning_rate": 0.0006,
+ "loss": 3.5139119625091553,
+ "step": 4191
+ },
+ {
+ "epoch": 58.22367846221057,
+ "grad_norm": 0.21566270291805267,
+ "learning_rate": 0.0006,
+ "loss": 3.5011606216430664,
+ "step": 4192
+ },
+ {
+ "epoch": 58.237658366098735,
+ "grad_norm": 0.21042031049728394,
+ "learning_rate": 0.0006,
+ "loss": 3.52295184135437,
+ "step": 4193
+ },
+ {
+ "epoch": 58.25163826998689,
+ "grad_norm": 0.20117411017417908,
+ "learning_rate": 0.0006,
+ "loss": 3.54593563079834,
+ "step": 4194
+ },
+ {
+ "epoch": 58.265618173875055,
+ "grad_norm": 0.21747945249080658,
+ "learning_rate": 0.0006,
+ "loss": 3.5341522693634033,
+ "step": 4195
+ },
+ {
+ "epoch": 58.27959807776322,
+ "grad_norm": 0.266024649143219,
+ "learning_rate": 0.0006,
+ "loss": 3.536393165588379,
+ "step": 4196
+ },
+ {
+ "epoch": 58.293577981651374,
+ "grad_norm": 0.2577304542064667,
+ "learning_rate": 0.0006,
+ "loss": 3.557468891143799,
+ "step": 4197
+ },
+ {
+ "epoch": 58.30755788553954,
+ "grad_norm": 0.22055941820144653,
+ "learning_rate": 0.0006,
+ "loss": 3.5307652950286865,
+ "step": 4198
+ },
+ {
+ "epoch": 58.3215377894277,
+ "grad_norm": 0.22490856051445007,
+ "learning_rate": 0.0006,
+ "loss": 3.506265163421631,
+ "step": 4199
+ },
+ {
+ "epoch": 58.33551769331586,
+ "grad_norm": 0.23600345849990845,
+ "learning_rate": 0.0006,
+ "loss": 3.523414134979248,
+ "step": 4200
+ },
+ {
+ "epoch": 58.34949759720402,
+ "grad_norm": 0.24872642755508423,
+ "learning_rate": 0.0006,
+ "loss": 3.561278820037842,
+ "step": 4201
+ },
+ {
+ "epoch": 58.36347750109218,
+ "grad_norm": 0.2702998220920563,
+ "learning_rate": 0.0006,
+ "loss": 3.573561191558838,
+ "step": 4202
+ },
+ {
+ "epoch": 58.37745740498034,
+ "grad_norm": 0.2532080411911011,
+ "learning_rate": 0.0006,
+ "loss": 3.5476837158203125,
+ "step": 4203
+ },
+ {
+ "epoch": 58.391437308868504,
+ "grad_norm": 0.23641079664230347,
+ "learning_rate": 0.0006,
+ "loss": 3.5464468002319336,
+ "step": 4204
+ },
+ {
+ "epoch": 58.40541721275666,
+ "grad_norm": 0.29965463280677795,
+ "learning_rate": 0.0006,
+ "loss": 3.560166835784912,
+ "step": 4205
+ },
+ {
+ "epoch": 58.419397116644824,
+ "grad_norm": 0.2778814136981964,
+ "learning_rate": 0.0006,
+ "loss": 3.5363056659698486,
+ "step": 4206
+ },
+ {
+ "epoch": 58.43337702053299,
+ "grad_norm": 0.23625248670578003,
+ "learning_rate": 0.0006,
+ "loss": 3.5575437545776367,
+ "step": 4207
+ },
+ {
+ "epoch": 58.44735692442114,
+ "grad_norm": 0.2165721356868744,
+ "learning_rate": 0.0006,
+ "loss": 3.541654109954834,
+ "step": 4208
+ },
+ {
+ "epoch": 58.46133682830931,
+ "grad_norm": 0.2261950671672821,
+ "learning_rate": 0.0006,
+ "loss": 3.5462238788604736,
+ "step": 4209
+ },
+ {
+ "epoch": 58.47531673219746,
+ "grad_norm": 0.23496517539024353,
+ "learning_rate": 0.0006,
+ "loss": 3.510138988494873,
+ "step": 4210
+ },
+ {
+ "epoch": 58.489296636085626,
+ "grad_norm": 0.27041929960250854,
+ "learning_rate": 0.0006,
+ "loss": 3.527822971343994,
+ "step": 4211
+ },
+ {
+ "epoch": 58.50327653997379,
+ "grad_norm": 0.2594013512134552,
+ "learning_rate": 0.0006,
+ "loss": 3.5358262062072754,
+ "step": 4212
+ },
+ {
+ "epoch": 58.517256443861946,
+ "grad_norm": 0.23336786031723022,
+ "learning_rate": 0.0006,
+ "loss": 3.530122756958008,
+ "step": 4213
+ },
+ {
+ "epoch": 58.53123634775011,
+ "grad_norm": 0.21956655383110046,
+ "learning_rate": 0.0006,
+ "loss": 3.541039228439331,
+ "step": 4214
+ },
+ {
+ "epoch": 58.54521625163827,
+ "grad_norm": 0.22432804107666016,
+ "learning_rate": 0.0006,
+ "loss": 3.520948886871338,
+ "step": 4215
+ },
+ {
+ "epoch": 58.55919615552643,
+ "grad_norm": 0.21589893102645874,
+ "learning_rate": 0.0006,
+ "loss": 3.569808006286621,
+ "step": 4216
+ },
+ {
+ "epoch": 58.57317605941459,
+ "grad_norm": 0.20264557003974915,
+ "learning_rate": 0.0006,
+ "loss": 3.514918088912964,
+ "step": 4217
+ },
+ {
+ "epoch": 58.58715596330275,
+ "grad_norm": 0.20911480486392975,
+ "learning_rate": 0.0006,
+ "loss": 3.5340771675109863,
+ "step": 4218
+ },
+ {
+ "epoch": 58.60113586719091,
+ "grad_norm": 0.21068964898586273,
+ "learning_rate": 0.0006,
+ "loss": 3.5388903617858887,
+ "step": 4219
+ },
+ {
+ "epoch": 58.615115771079076,
+ "grad_norm": 0.19314789772033691,
+ "learning_rate": 0.0006,
+ "loss": 3.5405967235565186,
+ "step": 4220
+ },
+ {
+ "epoch": 58.62909567496723,
+ "grad_norm": 0.18347802758216858,
+ "learning_rate": 0.0006,
+ "loss": 3.5208020210266113,
+ "step": 4221
+ },
+ {
+ "epoch": 58.643075578855395,
+ "grad_norm": 0.2082843780517578,
+ "learning_rate": 0.0006,
+ "loss": 3.5454647541046143,
+ "step": 4222
+ },
+ {
+ "epoch": 58.65705548274356,
+ "grad_norm": 0.2049611210823059,
+ "learning_rate": 0.0006,
+ "loss": 3.529350996017456,
+ "step": 4223
+ },
+ {
+ "epoch": 58.671035386631715,
+ "grad_norm": 0.19259536266326904,
+ "learning_rate": 0.0006,
+ "loss": 3.5589945316314697,
+ "step": 4224
+ },
+ {
+ "epoch": 58.68501529051988,
+ "grad_norm": 0.19039863348007202,
+ "learning_rate": 0.0006,
+ "loss": 3.5593101978302,
+ "step": 4225
+ },
+ {
+ "epoch": 58.69899519440804,
+ "grad_norm": 0.21481311321258545,
+ "learning_rate": 0.0006,
+ "loss": 3.55385422706604,
+ "step": 4226
+ },
+ {
+ "epoch": 58.7129750982962,
+ "grad_norm": 0.2053634226322174,
+ "learning_rate": 0.0006,
+ "loss": 3.535224437713623,
+ "step": 4227
+ },
+ {
+ "epoch": 58.72695500218436,
+ "grad_norm": 0.21111956238746643,
+ "learning_rate": 0.0006,
+ "loss": 3.5208349227905273,
+ "step": 4228
+ },
+ {
+ "epoch": 58.74093490607252,
+ "grad_norm": 0.22069109976291656,
+ "learning_rate": 0.0006,
+ "loss": 3.5292487144470215,
+ "step": 4229
+ },
+ {
+ "epoch": 58.75491480996068,
+ "grad_norm": 0.22549185156822205,
+ "learning_rate": 0.0006,
+ "loss": 3.556830406188965,
+ "step": 4230
+ },
+ {
+ "epoch": 58.768894713848844,
+ "grad_norm": 0.22341859340667725,
+ "learning_rate": 0.0006,
+ "loss": 3.5573582649230957,
+ "step": 4231
+ },
+ {
+ "epoch": 58.782874617737,
+ "grad_norm": 0.20664502680301666,
+ "learning_rate": 0.0006,
+ "loss": 3.578657865524292,
+ "step": 4232
+ },
+ {
+ "epoch": 58.796854521625164,
+ "grad_norm": 0.19885236024856567,
+ "learning_rate": 0.0006,
+ "loss": 3.5604476928710938,
+ "step": 4233
+ },
+ {
+ "epoch": 58.81083442551333,
+ "grad_norm": 0.19446797668933868,
+ "learning_rate": 0.0006,
+ "loss": 3.5686912536621094,
+ "step": 4234
+ },
+ {
+ "epoch": 58.824814329401484,
+ "grad_norm": 0.20658083260059357,
+ "learning_rate": 0.0006,
+ "loss": 3.563167095184326,
+ "step": 4235
+ },
+ {
+ "epoch": 58.83879423328965,
+ "grad_norm": 0.21075408160686493,
+ "learning_rate": 0.0006,
+ "loss": 3.5597028732299805,
+ "step": 4236
+ },
+ {
+ "epoch": 58.8527741371778,
+ "grad_norm": 0.20652376115322113,
+ "learning_rate": 0.0006,
+ "loss": 3.5651087760925293,
+ "step": 4237
+ },
+ {
+ "epoch": 58.86675404106597,
+ "grad_norm": 0.2243892401456833,
+ "learning_rate": 0.0006,
+ "loss": 3.5442488193511963,
+ "step": 4238
+ },
+ {
+ "epoch": 58.88073394495413,
+ "grad_norm": 0.23486459255218506,
+ "learning_rate": 0.0006,
+ "loss": 3.545135974884033,
+ "step": 4239
+ },
+ {
+ "epoch": 58.89471384884229,
+ "grad_norm": 0.23100663721561432,
+ "learning_rate": 0.0006,
+ "loss": 3.57177734375,
+ "step": 4240
+ },
+ {
+ "epoch": 58.90869375273045,
+ "grad_norm": 0.2269909679889679,
+ "learning_rate": 0.0006,
+ "loss": 3.528768301010132,
+ "step": 4241
+ },
+ {
+ "epoch": 58.92267365661861,
+ "grad_norm": 0.20349252223968506,
+ "learning_rate": 0.0006,
+ "loss": 3.591031789779663,
+ "step": 4242
+ },
+ {
+ "epoch": 58.93665356050677,
+ "grad_norm": 0.21038702130317688,
+ "learning_rate": 0.0006,
+ "loss": 3.5696892738342285,
+ "step": 4243
+ },
+ {
+ "epoch": 58.95063346439493,
+ "grad_norm": 0.21356560289859772,
+ "learning_rate": 0.0006,
+ "loss": 3.5708963871002197,
+ "step": 4244
+ },
+ {
+ "epoch": 58.964613368283096,
+ "grad_norm": 0.20008863508701324,
+ "learning_rate": 0.0006,
+ "loss": 3.524749279022217,
+ "step": 4245
+ },
+ {
+ "epoch": 58.97859327217125,
+ "grad_norm": 0.20453840494155884,
+ "learning_rate": 0.0006,
+ "loss": 3.5677876472473145,
+ "step": 4246
+ },
+ {
+ "epoch": 58.992573176059416,
+ "grad_norm": 0.21549056470394135,
+ "learning_rate": 0.0006,
+ "loss": 3.550870418548584,
+ "step": 4247
+ },
+ {
+ "epoch": 59.0,
+ "grad_norm": 0.2592930793762207,
+ "learning_rate": 0.0006,
+ "loss": 3.550673484802246,
+ "step": 4248
+ },
+ {
+ "epoch": 59.0,
+ "eval_loss": 3.968780279159546,
+ "eval_runtime": 45.6246,
+ "eval_samples_per_second": 53.524,
+ "eval_steps_per_second": 3.353,
+ "step": 4248
+ },
+ {
+ "epoch": 59.01397990388816,
+ "grad_norm": 0.218043252825737,
+ "learning_rate": 0.0006,
+ "loss": 3.49605655670166,
+ "step": 4249
+ },
+ {
+ "epoch": 59.02795980777632,
+ "grad_norm": 0.25112417340278625,
+ "learning_rate": 0.0006,
+ "loss": 3.534919023513794,
+ "step": 4250
+ },
+ {
+ "epoch": 59.04193971166448,
+ "grad_norm": 0.2785079777240753,
+ "learning_rate": 0.0006,
+ "loss": 3.5425362586975098,
+ "step": 4251
+ },
+ {
+ "epoch": 59.05591961555265,
+ "grad_norm": 0.2667599618434906,
+ "learning_rate": 0.0006,
+ "loss": 3.4955453872680664,
+ "step": 4252
+ },
+ {
+ "epoch": 59.0698995194408,
+ "grad_norm": 0.24012432992458344,
+ "learning_rate": 0.0006,
+ "loss": 3.4949915409088135,
+ "step": 4253
+ },
+ {
+ "epoch": 59.083879423328966,
+ "grad_norm": 0.2502294182777405,
+ "learning_rate": 0.0006,
+ "loss": 3.5163769721984863,
+ "step": 4254
+ },
+ {
+ "epoch": 59.09785932721712,
+ "grad_norm": 0.28585609793663025,
+ "learning_rate": 0.0006,
+ "loss": 3.4852542877197266,
+ "step": 4255
+ },
+ {
+ "epoch": 59.111839231105286,
+ "grad_norm": 0.2815989553928375,
+ "learning_rate": 0.0006,
+ "loss": 3.4991462230682373,
+ "step": 4256
+ },
+ {
+ "epoch": 59.12581913499345,
+ "grad_norm": 0.22922837734222412,
+ "learning_rate": 0.0006,
+ "loss": 3.511322021484375,
+ "step": 4257
+ },
+ {
+ "epoch": 59.139799038881605,
+ "grad_norm": 0.24964241683483124,
+ "learning_rate": 0.0006,
+ "loss": 3.521056652069092,
+ "step": 4258
+ },
+ {
+ "epoch": 59.15377894276977,
+ "grad_norm": 0.27568385004997253,
+ "learning_rate": 0.0006,
+ "loss": 3.514004707336426,
+ "step": 4259
+ },
+ {
+ "epoch": 59.16775884665793,
+ "grad_norm": 0.2605166733264923,
+ "learning_rate": 0.0006,
+ "loss": 3.5132668018341064,
+ "step": 4260
+ },
+ {
+ "epoch": 59.18173875054609,
+ "grad_norm": 0.24248117208480835,
+ "learning_rate": 0.0006,
+ "loss": 3.5492095947265625,
+ "step": 4261
+ },
+ {
+ "epoch": 59.19571865443425,
+ "grad_norm": 0.26359522342681885,
+ "learning_rate": 0.0006,
+ "loss": 3.521390438079834,
+ "step": 4262
+ },
+ {
+ "epoch": 59.20969855832241,
+ "grad_norm": 0.262248694896698,
+ "learning_rate": 0.0006,
+ "loss": 3.556307315826416,
+ "step": 4263
+ },
+ {
+ "epoch": 59.22367846221057,
+ "grad_norm": 0.23514866828918457,
+ "learning_rate": 0.0006,
+ "loss": 3.4989941120147705,
+ "step": 4264
+ },
+ {
+ "epoch": 59.237658366098735,
+ "grad_norm": 0.22758382558822632,
+ "learning_rate": 0.0006,
+ "loss": 3.5307068824768066,
+ "step": 4265
+ },
+ {
+ "epoch": 59.25163826998689,
+ "grad_norm": 0.24037839472293854,
+ "learning_rate": 0.0006,
+ "loss": 3.495872974395752,
+ "step": 4266
+ },
+ {
+ "epoch": 59.265618173875055,
+ "grad_norm": 0.22763589024543762,
+ "learning_rate": 0.0006,
+ "loss": 3.54052472114563,
+ "step": 4267
+ },
+ {
+ "epoch": 59.27959807776322,
+ "grad_norm": 0.22400406002998352,
+ "learning_rate": 0.0006,
+ "loss": 3.498671054840088,
+ "step": 4268
+ },
+ {
+ "epoch": 59.293577981651374,
+ "grad_norm": 0.2326328009366989,
+ "learning_rate": 0.0006,
+ "loss": 3.559108257293701,
+ "step": 4269
+ },
+ {
+ "epoch": 59.30755788553954,
+ "grad_norm": 0.24426043033599854,
+ "learning_rate": 0.0006,
+ "loss": 3.5245609283447266,
+ "step": 4270
+ },
+ {
+ "epoch": 59.3215377894277,
+ "grad_norm": 0.2159317582845688,
+ "learning_rate": 0.0006,
+ "loss": 3.5189900398254395,
+ "step": 4271
+ },
+ {
+ "epoch": 59.33551769331586,
+ "grad_norm": 0.19148702919483185,
+ "learning_rate": 0.0006,
+ "loss": 3.548433303833008,
+ "step": 4272
+ },
+ {
+ "epoch": 59.34949759720402,
+ "grad_norm": 0.23349083960056305,
+ "learning_rate": 0.0006,
+ "loss": 3.5475196838378906,
+ "step": 4273
+ },
+ {
+ "epoch": 59.36347750109218,
+ "grad_norm": 0.24024079740047455,
+ "learning_rate": 0.0006,
+ "loss": 3.5172529220581055,
+ "step": 4274
+ },
+ {
+ "epoch": 59.37745740498034,
+ "grad_norm": 0.23772001266479492,
+ "learning_rate": 0.0006,
+ "loss": 3.5428695678710938,
+ "step": 4275
+ },
+ {
+ "epoch": 59.391437308868504,
+ "grad_norm": 0.21134959161281586,
+ "learning_rate": 0.0006,
+ "loss": 3.523099422454834,
+ "step": 4276
+ },
+ {
+ "epoch": 59.40541721275666,
+ "grad_norm": 0.20760025084018707,
+ "learning_rate": 0.0006,
+ "loss": 3.55435848236084,
+ "step": 4277
+ },
+ {
+ "epoch": 59.419397116644824,
+ "grad_norm": 0.21113243699073792,
+ "learning_rate": 0.0006,
+ "loss": 3.5355324745178223,
+ "step": 4278
+ },
+ {
+ "epoch": 59.43337702053299,
+ "grad_norm": 0.21604566276073456,
+ "learning_rate": 0.0006,
+ "loss": 3.5517663955688477,
+ "step": 4279
+ },
+ {
+ "epoch": 59.44735692442114,
+ "grad_norm": 0.19646669924259186,
+ "learning_rate": 0.0006,
+ "loss": 3.538435935974121,
+ "step": 4280
+ },
+ {
+ "epoch": 59.46133682830931,
+ "grad_norm": 0.20394550263881683,
+ "learning_rate": 0.0006,
+ "loss": 3.528444290161133,
+ "step": 4281
+ },
+ {
+ "epoch": 59.47531673219746,
+ "grad_norm": 0.24543620645999908,
+ "learning_rate": 0.0006,
+ "loss": 3.5355372428894043,
+ "step": 4282
+ },
+ {
+ "epoch": 59.489296636085626,
+ "grad_norm": 0.24048425257205963,
+ "learning_rate": 0.0006,
+ "loss": 3.521336078643799,
+ "step": 4283
+ },
+ {
+ "epoch": 59.50327653997379,
+ "grad_norm": 0.23630213737487793,
+ "learning_rate": 0.0006,
+ "loss": 3.556244373321533,
+ "step": 4284
+ },
+ {
+ "epoch": 59.517256443861946,
+ "grad_norm": 0.2791444659233093,
+ "learning_rate": 0.0006,
+ "loss": 3.5927138328552246,
+ "step": 4285
+ },
+ {
+ "epoch": 59.53123634775011,
+ "grad_norm": 0.30325770378112793,
+ "learning_rate": 0.0006,
+ "loss": 3.559296131134033,
+ "step": 4286
+ },
+ {
+ "epoch": 59.54521625163827,
+ "grad_norm": 0.2708670496940613,
+ "learning_rate": 0.0006,
+ "loss": 3.531050205230713,
+ "step": 4287
+ },
+ {
+ "epoch": 59.55919615552643,
+ "grad_norm": 0.23795515298843384,
+ "learning_rate": 0.0006,
+ "loss": 3.5365982055664062,
+ "step": 4288
+ },
+ {
+ "epoch": 59.57317605941459,
+ "grad_norm": 0.20949627459049225,
+ "learning_rate": 0.0006,
+ "loss": 3.5591273307800293,
+ "step": 4289
+ },
+ {
+ "epoch": 59.58715596330275,
+ "grad_norm": 0.21885769069194794,
+ "learning_rate": 0.0006,
+ "loss": 3.4965288639068604,
+ "step": 4290
+ },
+ {
+ "epoch": 59.60113586719091,
+ "grad_norm": 0.22365590929985046,
+ "learning_rate": 0.0006,
+ "loss": 3.538118362426758,
+ "step": 4291
+ },
+ {
+ "epoch": 59.615115771079076,
+ "grad_norm": 0.23178881406784058,
+ "learning_rate": 0.0006,
+ "loss": 3.515933036804199,
+ "step": 4292
+ },
+ {
+ "epoch": 59.62909567496723,
+ "grad_norm": 0.21539060771465302,
+ "learning_rate": 0.0006,
+ "loss": 3.54185152053833,
+ "step": 4293
+ },
+ {
+ "epoch": 59.643075578855395,
+ "grad_norm": 0.22033682465553284,
+ "learning_rate": 0.0006,
+ "loss": 3.526728630065918,
+ "step": 4294
+ },
+ {
+ "epoch": 59.65705548274356,
+ "grad_norm": 0.23003938794136047,
+ "learning_rate": 0.0006,
+ "loss": 3.555710792541504,
+ "step": 4295
+ },
+ {
+ "epoch": 59.671035386631715,
+ "grad_norm": 0.22887346148490906,
+ "learning_rate": 0.0006,
+ "loss": 3.580883502960205,
+ "step": 4296
+ },
+ {
+ "epoch": 59.68501529051988,
+ "grad_norm": 0.2147892713546753,
+ "learning_rate": 0.0006,
+ "loss": 3.5318822860717773,
+ "step": 4297
+ },
+ {
+ "epoch": 59.69899519440804,
+ "grad_norm": 0.22063598036766052,
+ "learning_rate": 0.0006,
+ "loss": 3.5179357528686523,
+ "step": 4298
+ },
+ {
+ "epoch": 59.7129750982962,
+ "grad_norm": 0.22569656372070312,
+ "learning_rate": 0.0006,
+ "loss": 3.583181381225586,
+ "step": 4299
+ },
+ {
+ "epoch": 59.72695500218436,
+ "grad_norm": 0.2252701222896576,
+ "learning_rate": 0.0006,
+ "loss": 3.5780375003814697,
+ "step": 4300
+ },
+ {
+ "epoch": 59.74093490607252,
+ "grad_norm": 0.2288130521774292,
+ "learning_rate": 0.0006,
+ "loss": 3.570399284362793,
+ "step": 4301
+ },
+ {
+ "epoch": 59.75491480996068,
+ "grad_norm": 0.21879231929779053,
+ "learning_rate": 0.0006,
+ "loss": 3.540292739868164,
+ "step": 4302
+ },
+ {
+ "epoch": 59.768894713848844,
+ "grad_norm": 0.20675964653491974,
+ "learning_rate": 0.0006,
+ "loss": 3.532649040222168,
+ "step": 4303
+ },
+ {
+ "epoch": 59.782874617737,
+ "grad_norm": 0.21810708940029144,
+ "learning_rate": 0.0006,
+ "loss": 3.5156657695770264,
+ "step": 4304
+ },
+ {
+ "epoch": 59.796854521625164,
+ "grad_norm": 0.22701260447502136,
+ "learning_rate": 0.0006,
+ "loss": 3.5535266399383545,
+ "step": 4305
+ },
+ {
+ "epoch": 59.81083442551333,
+ "grad_norm": 0.23433080315589905,
+ "learning_rate": 0.0006,
+ "loss": 3.5280754566192627,
+ "step": 4306
+ },
+ {
+ "epoch": 59.824814329401484,
+ "grad_norm": 0.2254341095685959,
+ "learning_rate": 0.0006,
+ "loss": 3.534045696258545,
+ "step": 4307
+ },
+ {
+ "epoch": 59.83879423328965,
+ "grad_norm": 0.21756123006343842,
+ "learning_rate": 0.0006,
+ "loss": 3.5621533393859863,
+ "step": 4308
+ },
+ {
+ "epoch": 59.8527741371778,
+ "grad_norm": 0.19731850922107697,
+ "learning_rate": 0.0006,
+ "loss": 3.536633253097534,
+ "step": 4309
+ },
+ {
+ "epoch": 59.86675404106597,
+ "grad_norm": 0.2260110229253769,
+ "learning_rate": 0.0006,
+ "loss": 3.5721538066864014,
+ "step": 4310
+ },
+ {
+ "epoch": 59.88073394495413,
+ "grad_norm": 0.22728438675403595,
+ "learning_rate": 0.0006,
+ "loss": 3.5576961040496826,
+ "step": 4311
+ },
+ {
+ "epoch": 59.89471384884229,
+ "grad_norm": 0.20675411820411682,
+ "learning_rate": 0.0006,
+ "loss": 3.5070700645446777,
+ "step": 4312
+ },
+ {
+ "epoch": 59.90869375273045,
+ "grad_norm": 0.22258996963500977,
+ "learning_rate": 0.0006,
+ "loss": 3.564357280731201,
+ "step": 4313
+ },
+ {
+ "epoch": 59.92267365661861,
+ "grad_norm": 0.2429998815059662,
+ "learning_rate": 0.0006,
+ "loss": 3.519744873046875,
+ "step": 4314
+ },
+ {
+ "epoch": 59.93665356050677,
+ "grad_norm": 0.2394791841506958,
+ "learning_rate": 0.0006,
+ "loss": 3.533292055130005,
+ "step": 4315
+ },
+ {
+ "epoch": 59.95063346439493,
+ "grad_norm": 0.20659418404102325,
+ "learning_rate": 0.0006,
+ "loss": 3.5475940704345703,
+ "step": 4316
+ },
+ {
+ "epoch": 59.964613368283096,
+ "grad_norm": 0.19679132103919983,
+ "learning_rate": 0.0006,
+ "loss": 3.5794930458068848,
+ "step": 4317
+ },
+ {
+ "epoch": 59.97859327217125,
+ "grad_norm": 0.2133002132177353,
+ "learning_rate": 0.0006,
+ "loss": 3.5506505966186523,
+ "step": 4318
+ },
+ {
+ "epoch": 59.992573176059416,
+ "grad_norm": 0.22383661568164825,
+ "learning_rate": 0.0006,
+ "loss": 3.547708511352539,
+ "step": 4319
+ },
+ {
+ "epoch": 60.0,
+ "grad_norm": 0.25744178891181946,
+ "learning_rate": 0.0006,
+ "loss": 3.5519227981567383,
+ "step": 4320
+ },
+ {
+ "epoch": 60.0,
+ "eval_loss": 3.9816012382507324,
+ "eval_runtime": 46.3931,
+ "eval_samples_per_second": 52.637,
+ "eval_steps_per_second": 3.298,
+ "step": 4320
+ },
+ {
+ "epoch": 60.01397990388816,
+ "grad_norm": 0.2202005684375763,
+ "learning_rate": 0.0006,
+ "loss": 3.51010799407959,
+ "step": 4321
+ },
+ {
+ "epoch": 60.02795980777632,
+ "grad_norm": 0.24285688996315002,
+ "learning_rate": 0.0006,
+ "loss": 3.519137382507324,
+ "step": 4322
+ },
+ {
+ "epoch": 60.04193971166448,
+ "grad_norm": 0.2700578570365906,
+ "learning_rate": 0.0006,
+ "loss": 3.523392915725708,
+ "step": 4323
+ },
+ {
+ "epoch": 60.05591961555265,
+ "grad_norm": 0.30088669061660767,
+ "learning_rate": 0.0006,
+ "loss": 3.48724627494812,
+ "step": 4324
+ },
+ {
+ "epoch": 60.0698995194408,
+ "grad_norm": 0.30426669120788574,
+ "learning_rate": 0.0006,
+ "loss": 3.479025363922119,
+ "step": 4325
+ },
+ {
+ "epoch": 60.083879423328966,
+ "grad_norm": 0.2718220055103302,
+ "learning_rate": 0.0006,
+ "loss": 3.4923276901245117,
+ "step": 4326
+ },
+ {
+ "epoch": 60.09785932721712,
+ "grad_norm": 0.23625287413597107,
+ "learning_rate": 0.0006,
+ "loss": 3.5152812004089355,
+ "step": 4327
+ },
+ {
+ "epoch": 60.111839231105286,
+ "grad_norm": 0.23336869478225708,
+ "learning_rate": 0.0006,
+ "loss": 3.512453079223633,
+ "step": 4328
+ },
+ {
+ "epoch": 60.12581913499345,
+ "grad_norm": 0.24780215322971344,
+ "learning_rate": 0.0006,
+ "loss": 3.505812168121338,
+ "step": 4329
+ },
+ {
+ "epoch": 60.139799038881605,
+ "grad_norm": 0.25600194931030273,
+ "learning_rate": 0.0006,
+ "loss": 3.5281314849853516,
+ "step": 4330
+ },
+ {
+ "epoch": 60.15377894276977,
+ "grad_norm": 0.2458304911851883,
+ "learning_rate": 0.0006,
+ "loss": 3.4932949542999268,
+ "step": 4331
+ },
+ {
+ "epoch": 60.16775884665793,
+ "grad_norm": 0.2246888130903244,
+ "learning_rate": 0.0006,
+ "loss": 3.5295495986938477,
+ "step": 4332
+ },
+ {
+ "epoch": 60.18173875054609,
+ "grad_norm": 0.23762951791286469,
+ "learning_rate": 0.0006,
+ "loss": 3.4938201904296875,
+ "step": 4333
+ },
+ {
+ "epoch": 60.19571865443425,
+ "grad_norm": 0.24483945965766907,
+ "learning_rate": 0.0006,
+ "loss": 3.544774055480957,
+ "step": 4334
+ },
+ {
+ "epoch": 60.20969855832241,
+ "grad_norm": 0.24154368042945862,
+ "learning_rate": 0.0006,
+ "loss": 3.5352816581726074,
+ "step": 4335
+ },
+ {
+ "epoch": 60.22367846221057,
+ "grad_norm": 0.22929225862026215,
+ "learning_rate": 0.0006,
+ "loss": 3.5546953678131104,
+ "step": 4336
+ },
+ {
+ "epoch": 60.237658366098735,
+ "grad_norm": 0.21391373872756958,
+ "learning_rate": 0.0006,
+ "loss": 3.537647247314453,
+ "step": 4337
+ },
+ {
+ "epoch": 60.25163826998689,
+ "grad_norm": 0.20410357415676117,
+ "learning_rate": 0.0006,
+ "loss": 3.535831928253174,
+ "step": 4338
+ },
+ {
+ "epoch": 60.265618173875055,
+ "grad_norm": 0.2070329487323761,
+ "learning_rate": 0.0006,
+ "loss": 3.5234389305114746,
+ "step": 4339
+ },
+ {
+ "epoch": 60.27959807776322,
+ "grad_norm": 0.20540225505828857,
+ "learning_rate": 0.0006,
+ "loss": 3.557478427886963,
+ "step": 4340
+ },
+ {
+ "epoch": 60.293577981651374,
+ "grad_norm": 0.2124919891357422,
+ "learning_rate": 0.0006,
+ "loss": 3.532726764678955,
+ "step": 4341
+ },
+ {
+ "epoch": 60.30755788553954,
+ "grad_norm": 0.22207678854465485,
+ "learning_rate": 0.0006,
+ "loss": 3.5314202308654785,
+ "step": 4342
+ },
+ {
+ "epoch": 60.3215377894277,
+ "grad_norm": 0.2137281745672226,
+ "learning_rate": 0.0006,
+ "loss": 3.5491206645965576,
+ "step": 4343
+ },
+ {
+ "epoch": 60.33551769331586,
+ "grad_norm": 0.20728953182697296,
+ "learning_rate": 0.0006,
+ "loss": 3.5111031532287598,
+ "step": 4344
+ },
+ {
+ "epoch": 60.34949759720402,
+ "grad_norm": 0.22547020018100739,
+ "learning_rate": 0.0006,
+ "loss": 3.5311098098754883,
+ "step": 4345
+ },
+ {
+ "epoch": 60.36347750109218,
+ "grad_norm": 0.23352888226509094,
+ "learning_rate": 0.0006,
+ "loss": 3.5200939178466797,
+ "step": 4346
+ },
+ {
+ "epoch": 60.37745740498034,
+ "grad_norm": 0.21329060196876526,
+ "learning_rate": 0.0006,
+ "loss": 3.508589744567871,
+ "step": 4347
+ },
+ {
+ "epoch": 60.391437308868504,
+ "grad_norm": 0.1904045194387436,
+ "learning_rate": 0.0006,
+ "loss": 3.4850475788116455,
+ "step": 4348
+ },
+ {
+ "epoch": 60.40541721275666,
+ "grad_norm": 0.20586109161376953,
+ "learning_rate": 0.0006,
+ "loss": 3.5503551959991455,
+ "step": 4349
+ },
+ {
+ "epoch": 60.419397116644824,
+ "grad_norm": 0.21311818063259125,
+ "learning_rate": 0.0006,
+ "loss": 3.5243923664093018,
+ "step": 4350
+ },
+ {
+ "epoch": 60.43337702053299,
+ "grad_norm": 0.21479184925556183,
+ "learning_rate": 0.0006,
+ "loss": 3.553647041320801,
+ "step": 4351
+ },
+ {
+ "epoch": 60.44735692442114,
+ "grad_norm": 0.19994449615478516,
+ "learning_rate": 0.0006,
+ "loss": 3.5558884143829346,
+ "step": 4352
+ },
+ {
+ "epoch": 60.46133682830931,
+ "grad_norm": 0.21455694735050201,
+ "learning_rate": 0.0006,
+ "loss": 3.5186543464660645,
+ "step": 4353
+ },
+ {
+ "epoch": 60.47531673219746,
+ "grad_norm": 0.21904151141643524,
+ "learning_rate": 0.0006,
+ "loss": 3.526367425918579,
+ "step": 4354
+ },
+ {
+ "epoch": 60.489296636085626,
+ "grad_norm": 0.1908986121416092,
+ "learning_rate": 0.0006,
+ "loss": 3.541072368621826,
+ "step": 4355
+ },
+ {
+ "epoch": 60.50327653997379,
+ "grad_norm": 0.20290519297122955,
+ "learning_rate": 0.0006,
+ "loss": 3.530333995819092,
+ "step": 4356
+ },
+ {
+ "epoch": 60.517256443861946,
+ "grad_norm": 0.2318771779537201,
+ "learning_rate": 0.0006,
+ "loss": 3.5260486602783203,
+ "step": 4357
+ },
+ {
+ "epoch": 60.53123634775011,
+ "grad_norm": 0.25559669733047485,
+ "learning_rate": 0.0006,
+ "loss": 3.56851863861084,
+ "step": 4358
+ },
+ {
+ "epoch": 60.54521625163827,
+ "grad_norm": 0.2529429793357849,
+ "learning_rate": 0.0006,
+ "loss": 3.5519490242004395,
+ "step": 4359
+ },
+ {
+ "epoch": 60.55919615552643,
+ "grad_norm": 0.22857248783111572,
+ "learning_rate": 0.0006,
+ "loss": 3.5556063652038574,
+ "step": 4360
+ },
+ {
+ "epoch": 60.57317605941459,
+ "grad_norm": 0.21628573536872864,
+ "learning_rate": 0.0006,
+ "loss": 3.5321288108825684,
+ "step": 4361
+ },
+ {
+ "epoch": 60.58715596330275,
+ "grad_norm": 0.19497910141944885,
+ "learning_rate": 0.0006,
+ "loss": 3.5480406284332275,
+ "step": 4362
+ },
+ {
+ "epoch": 60.60113586719091,
+ "grad_norm": 0.204348623752594,
+ "learning_rate": 0.0006,
+ "loss": 3.522806167602539,
+ "step": 4363
+ },
+ {
+ "epoch": 60.615115771079076,
+ "grad_norm": 0.23013663291931152,
+ "learning_rate": 0.0006,
+ "loss": 3.512876033782959,
+ "step": 4364
+ },
+ {
+ "epoch": 60.62909567496723,
+ "grad_norm": 0.22948725521564484,
+ "learning_rate": 0.0006,
+ "loss": 3.54276704788208,
+ "step": 4365
+ },
+ {
+ "epoch": 60.643075578855395,
+ "grad_norm": 0.20528492331504822,
+ "learning_rate": 0.0006,
+ "loss": 3.5592503547668457,
+ "step": 4366
+ },
+ {
+ "epoch": 60.65705548274356,
+ "grad_norm": 0.214582160115242,
+ "learning_rate": 0.0006,
+ "loss": 3.5168166160583496,
+ "step": 4367
+ },
+ {
+ "epoch": 60.671035386631715,
+ "grad_norm": 0.18893493711948395,
+ "learning_rate": 0.0006,
+ "loss": 3.51012921333313,
+ "step": 4368
+ },
+ {
+ "epoch": 60.68501529051988,
+ "grad_norm": 0.19301992654800415,
+ "learning_rate": 0.0006,
+ "loss": 3.5396199226379395,
+ "step": 4369
+ },
+ {
+ "epoch": 60.69899519440804,
+ "grad_norm": 0.22339801490306854,
+ "learning_rate": 0.0006,
+ "loss": 3.5463967323303223,
+ "step": 4370
+ },
+ {
+ "epoch": 60.7129750982962,
+ "grad_norm": 0.19028180837631226,
+ "learning_rate": 0.0006,
+ "loss": 3.534419536590576,
+ "step": 4371
+ },
+ {
+ "epoch": 60.72695500218436,
+ "grad_norm": 0.2078639566898346,
+ "learning_rate": 0.0006,
+ "loss": 3.5345680713653564,
+ "step": 4372
+ },
+ {
+ "epoch": 60.74093490607252,
+ "grad_norm": 0.24292199313640594,
+ "learning_rate": 0.0006,
+ "loss": 3.5291242599487305,
+ "step": 4373
+ },
+ {
+ "epoch": 60.75491480996068,
+ "grad_norm": 0.25118497014045715,
+ "learning_rate": 0.0006,
+ "loss": 3.5362191200256348,
+ "step": 4374
+ },
+ {
+ "epoch": 60.768894713848844,
+ "grad_norm": 0.24816395342350006,
+ "learning_rate": 0.0006,
+ "loss": 3.539637804031372,
+ "step": 4375
+ },
+ {
+ "epoch": 60.782874617737,
+ "grad_norm": 0.23654010891914368,
+ "learning_rate": 0.0006,
+ "loss": 3.482605457305908,
+ "step": 4376
+ },
+ {
+ "epoch": 60.796854521625164,
+ "grad_norm": 0.21593770384788513,
+ "learning_rate": 0.0006,
+ "loss": 3.550279140472412,
+ "step": 4377
+ },
+ {
+ "epoch": 60.81083442551333,
+ "grad_norm": 0.21346014738082886,
+ "learning_rate": 0.0006,
+ "loss": 3.541086196899414,
+ "step": 4378
+ },
+ {
+ "epoch": 60.824814329401484,
+ "grad_norm": 0.2284841537475586,
+ "learning_rate": 0.0006,
+ "loss": 3.544254779815674,
+ "step": 4379
+ },
+ {
+ "epoch": 60.83879423328965,
+ "grad_norm": 0.23353151977062225,
+ "learning_rate": 0.0006,
+ "loss": 3.5606589317321777,
+ "step": 4380
+ },
+ {
+ "epoch": 60.8527741371778,
+ "grad_norm": 0.2201574146747589,
+ "learning_rate": 0.0006,
+ "loss": 3.524120807647705,
+ "step": 4381
+ },
+ {
+ "epoch": 60.86675404106597,
+ "grad_norm": 0.2277211993932724,
+ "learning_rate": 0.0006,
+ "loss": 3.553539276123047,
+ "step": 4382
+ },
+ {
+ "epoch": 60.88073394495413,
+ "grad_norm": 0.2282724678516388,
+ "learning_rate": 0.0006,
+ "loss": 3.5247130393981934,
+ "step": 4383
+ },
+ {
+ "epoch": 60.89471384884229,
+ "grad_norm": 0.20859065651893616,
+ "learning_rate": 0.0006,
+ "loss": 3.5654680728912354,
+ "step": 4384
+ },
+ {
+ "epoch": 60.90869375273045,
+ "grad_norm": 0.1995432823896408,
+ "learning_rate": 0.0006,
+ "loss": 3.5091423988342285,
+ "step": 4385
+ },
+ {
+ "epoch": 60.92267365661861,
+ "grad_norm": 0.19769565761089325,
+ "learning_rate": 0.0006,
+ "loss": 3.5375986099243164,
+ "step": 4386
+ },
+ {
+ "epoch": 60.93665356050677,
+ "grad_norm": 0.21246176958084106,
+ "learning_rate": 0.0006,
+ "loss": 3.570774793624878,
+ "step": 4387
+ },
+ {
+ "epoch": 60.95063346439493,
+ "grad_norm": 0.2212657630443573,
+ "learning_rate": 0.0006,
+ "loss": 3.5192928314208984,
+ "step": 4388
+ },
+ {
+ "epoch": 60.964613368283096,
+ "grad_norm": 0.2258632481098175,
+ "learning_rate": 0.0006,
+ "loss": 3.5356457233428955,
+ "step": 4389
+ },
+ {
+ "epoch": 60.97859327217125,
+ "grad_norm": 0.1998971700668335,
+ "learning_rate": 0.0006,
+ "loss": 3.52758526802063,
+ "step": 4390
+ },
+ {
+ "epoch": 60.992573176059416,
+ "grad_norm": 0.1932399868965149,
+ "learning_rate": 0.0006,
+ "loss": 3.562718391418457,
+ "step": 4391
+ },
+ {
+ "epoch": 61.0,
+ "grad_norm": 0.24292197823524475,
+ "learning_rate": 0.0006,
+ "loss": 3.550189971923828,
+ "step": 4392
+ },
+ {
+ "epoch": 61.0,
+ "eval_loss": 3.974423408508301,
+ "eval_runtime": 45.8822,
+ "eval_samples_per_second": 53.223,
+ "eval_steps_per_second": 3.335,
+ "step": 4392
+ },
+ {
+ "epoch": 61.01397990388816,
+ "grad_norm": 0.2216092199087143,
+ "learning_rate": 0.0006,
+ "loss": 3.51747989654541,
+ "step": 4393
+ },
+ {
+ "epoch": 61.02795980777632,
+ "grad_norm": 0.23488417267799377,
+ "learning_rate": 0.0006,
+ "loss": 3.529064178466797,
+ "step": 4394
+ },
+ {
+ "epoch": 61.04193971166448,
+ "grad_norm": 0.2805800437927246,
+ "learning_rate": 0.0006,
+ "loss": 3.4868035316467285,
+ "step": 4395
+ },
+ {
+ "epoch": 61.05591961555265,
+ "grad_norm": 0.32623469829559326,
+ "learning_rate": 0.0006,
+ "loss": 3.5209708213806152,
+ "step": 4396
+ },
+ {
+ "epoch": 61.0698995194408,
+ "grad_norm": 0.2645402252674103,
+ "learning_rate": 0.0006,
+ "loss": 3.524512767791748,
+ "step": 4397
+ },
+ {
+ "epoch": 61.083879423328966,
+ "grad_norm": 0.21118173003196716,
+ "learning_rate": 0.0006,
+ "loss": 3.5167856216430664,
+ "step": 4398
+ },
+ {
+ "epoch": 61.09785932721712,
+ "grad_norm": 0.28649622201919556,
+ "learning_rate": 0.0006,
+ "loss": 3.5122973918914795,
+ "step": 4399
+ },
+ {
+ "epoch": 61.111839231105286,
+ "grad_norm": 0.39095914363861084,
+ "learning_rate": 0.0006,
+ "loss": 3.481421947479248,
+ "step": 4400
+ },
+ {
+ "epoch": 61.12581913499345,
+ "grad_norm": 0.4013976454734802,
+ "learning_rate": 0.0006,
+ "loss": 3.4859061241149902,
+ "step": 4401
+ },
+ {
+ "epoch": 61.139799038881605,
+ "grad_norm": 0.30067047476768494,
+ "learning_rate": 0.0006,
+ "loss": 3.524209976196289,
+ "step": 4402
+ },
+ {
+ "epoch": 61.15377894276977,
+ "grad_norm": 0.2086855173110962,
+ "learning_rate": 0.0006,
+ "loss": 3.4974379539489746,
+ "step": 4403
+ },
+ {
+ "epoch": 61.16775884665793,
+ "grad_norm": 0.25443482398986816,
+ "learning_rate": 0.0006,
+ "loss": 3.517038345336914,
+ "step": 4404
+ },
+ {
+ "epoch": 61.18173875054609,
+ "grad_norm": 0.27545589208602905,
+ "learning_rate": 0.0006,
+ "loss": 3.5075795650482178,
+ "step": 4405
+ },
+ {
+ "epoch": 61.19571865443425,
+ "grad_norm": 0.269279420375824,
+ "learning_rate": 0.0006,
+ "loss": 3.512235641479492,
+ "step": 4406
+ },
+ {
+ "epoch": 61.20969855832241,
+ "grad_norm": 0.24606923758983612,
+ "learning_rate": 0.0006,
+ "loss": 3.5362367630004883,
+ "step": 4407
+ },
+ {
+ "epoch": 61.22367846221057,
+ "grad_norm": 0.23358067870140076,
+ "learning_rate": 0.0006,
+ "loss": 3.5256686210632324,
+ "step": 4408
+ },
+ {
+ "epoch": 61.237658366098735,
+ "grad_norm": 0.2528085708618164,
+ "learning_rate": 0.0006,
+ "loss": 3.504239559173584,
+ "step": 4409
+ },
+ {
+ "epoch": 61.25163826998689,
+ "grad_norm": 0.28145745396614075,
+ "learning_rate": 0.0006,
+ "loss": 3.4862139225006104,
+ "step": 4410
+ },
+ {
+ "epoch": 61.265618173875055,
+ "grad_norm": 0.26570039987564087,
+ "learning_rate": 0.0006,
+ "loss": 3.5138425827026367,
+ "step": 4411
+ },
+ {
+ "epoch": 61.27959807776322,
+ "grad_norm": 0.2391415685415268,
+ "learning_rate": 0.0006,
+ "loss": 3.537569999694824,
+ "step": 4412
+ },
+ {
+ "epoch": 61.293577981651374,
+ "grad_norm": 0.22194577753543854,
+ "learning_rate": 0.0006,
+ "loss": 3.5367543697357178,
+ "step": 4413
+ },
+ {
+ "epoch": 61.30755788553954,
+ "grad_norm": 0.2388865202665329,
+ "learning_rate": 0.0006,
+ "loss": 3.533341407775879,
+ "step": 4414
+ },
+ {
+ "epoch": 61.3215377894277,
+ "grad_norm": 0.2666625380516052,
+ "learning_rate": 0.0006,
+ "loss": 3.501162528991699,
+ "step": 4415
+ },
+ {
+ "epoch": 61.33551769331586,
+ "grad_norm": 0.25569409132003784,
+ "learning_rate": 0.0006,
+ "loss": 3.529283046722412,
+ "step": 4416
+ },
+ {
+ "epoch": 61.34949759720402,
+ "grad_norm": 0.24683351814746857,
+ "learning_rate": 0.0006,
+ "loss": 3.508152484893799,
+ "step": 4417
+ },
+ {
+ "epoch": 61.36347750109218,
+ "grad_norm": 0.22290605306625366,
+ "learning_rate": 0.0006,
+ "loss": 3.5309581756591797,
+ "step": 4418
+ },
+ {
+ "epoch": 61.37745740498034,
+ "grad_norm": 0.2174215167760849,
+ "learning_rate": 0.0006,
+ "loss": 3.508796453475952,
+ "step": 4419
+ },
+ {
+ "epoch": 61.391437308868504,
+ "grad_norm": 0.23006199300289154,
+ "learning_rate": 0.0006,
+ "loss": 3.5497584342956543,
+ "step": 4420
+ },
+ {
+ "epoch": 61.40541721275666,
+ "grad_norm": 0.2311345487833023,
+ "learning_rate": 0.0006,
+ "loss": 3.5524582862854004,
+ "step": 4421
+ },
+ {
+ "epoch": 61.419397116644824,
+ "grad_norm": 0.2296203076839447,
+ "learning_rate": 0.0006,
+ "loss": 3.5146689414978027,
+ "step": 4422
+ },
+ {
+ "epoch": 61.43337702053299,
+ "grad_norm": 0.24848754703998566,
+ "learning_rate": 0.0006,
+ "loss": 3.489335060119629,
+ "step": 4423
+ },
+ {
+ "epoch": 61.44735692442114,
+ "grad_norm": 0.23717737197875977,
+ "learning_rate": 0.0006,
+ "loss": 3.4982404708862305,
+ "step": 4424
+ },
+ {
+ "epoch": 61.46133682830931,
+ "grad_norm": 0.21826806664466858,
+ "learning_rate": 0.0006,
+ "loss": 3.5134825706481934,
+ "step": 4425
+ },
+ {
+ "epoch": 61.47531673219746,
+ "grad_norm": 0.22878992557525635,
+ "learning_rate": 0.0006,
+ "loss": 3.512604236602783,
+ "step": 4426
+ },
+ {
+ "epoch": 61.489296636085626,
+ "grad_norm": 0.21184465289115906,
+ "learning_rate": 0.0006,
+ "loss": 3.5314245223999023,
+ "step": 4427
+ },
+ {
+ "epoch": 61.50327653997379,
+ "grad_norm": 0.2129429429769516,
+ "learning_rate": 0.0006,
+ "loss": 3.51242733001709,
+ "step": 4428
+ },
+ {
+ "epoch": 61.517256443861946,
+ "grad_norm": 0.21566109359264374,
+ "learning_rate": 0.0006,
+ "loss": 3.5287160873413086,
+ "step": 4429
+ },
+ {
+ "epoch": 61.53123634775011,
+ "grad_norm": 0.2010934203863144,
+ "learning_rate": 0.0006,
+ "loss": 3.5250844955444336,
+ "step": 4430
+ },
+ {
+ "epoch": 61.54521625163827,
+ "grad_norm": 0.1979563683271408,
+ "learning_rate": 0.0006,
+ "loss": 3.553415536880493,
+ "step": 4431
+ },
+ {
+ "epoch": 61.55919615552643,
+ "grad_norm": 0.19513480365276337,
+ "learning_rate": 0.0006,
+ "loss": 3.500551223754883,
+ "step": 4432
+ },
+ {
+ "epoch": 61.57317605941459,
+ "grad_norm": 0.19601108133792877,
+ "learning_rate": 0.0006,
+ "loss": 3.532161235809326,
+ "step": 4433
+ },
+ {
+ "epoch": 61.58715596330275,
+ "grad_norm": 0.2054651528596878,
+ "learning_rate": 0.0006,
+ "loss": 3.5360732078552246,
+ "step": 4434
+ },
+ {
+ "epoch": 61.60113586719091,
+ "grad_norm": 0.2096887230873108,
+ "learning_rate": 0.0006,
+ "loss": 3.522620916366577,
+ "step": 4435
+ },
+ {
+ "epoch": 61.615115771079076,
+ "grad_norm": 0.19664394855499268,
+ "learning_rate": 0.0006,
+ "loss": 3.5298569202423096,
+ "step": 4436
+ },
+ {
+ "epoch": 61.62909567496723,
+ "grad_norm": 0.20641925930976868,
+ "learning_rate": 0.0006,
+ "loss": 3.521233320236206,
+ "step": 4437
+ },
+ {
+ "epoch": 61.643075578855395,
+ "grad_norm": 0.2013241946697235,
+ "learning_rate": 0.0006,
+ "loss": 3.536212682723999,
+ "step": 4438
+ },
+ {
+ "epoch": 61.65705548274356,
+ "grad_norm": 0.19561146199703217,
+ "learning_rate": 0.0006,
+ "loss": 3.569584846496582,
+ "step": 4439
+ },
+ {
+ "epoch": 61.671035386631715,
+ "grad_norm": 0.2281758189201355,
+ "learning_rate": 0.0006,
+ "loss": 3.5208396911621094,
+ "step": 4440
+ },
+ {
+ "epoch": 61.68501529051988,
+ "grad_norm": 0.2387618124485016,
+ "learning_rate": 0.0006,
+ "loss": 3.5338330268859863,
+ "step": 4441
+ },
+ {
+ "epoch": 61.69899519440804,
+ "grad_norm": 0.23753441870212555,
+ "learning_rate": 0.0006,
+ "loss": 3.5454416275024414,
+ "step": 4442
+ },
+ {
+ "epoch": 61.7129750982962,
+ "grad_norm": 0.2477191686630249,
+ "learning_rate": 0.0006,
+ "loss": 3.5409836769104004,
+ "step": 4443
+ },
+ {
+ "epoch": 61.72695500218436,
+ "grad_norm": 0.25156062841415405,
+ "learning_rate": 0.0006,
+ "loss": 3.5135607719421387,
+ "step": 4444
+ },
+ {
+ "epoch": 61.74093490607252,
+ "grad_norm": 0.21422065794467926,
+ "learning_rate": 0.0006,
+ "loss": 3.5514771938323975,
+ "step": 4445
+ },
+ {
+ "epoch": 61.75491480996068,
+ "grad_norm": 0.2103811502456665,
+ "learning_rate": 0.0006,
+ "loss": 3.544037103652954,
+ "step": 4446
+ },
+ {
+ "epoch": 61.768894713848844,
+ "grad_norm": 0.21455387771129608,
+ "learning_rate": 0.0006,
+ "loss": 3.5526280403137207,
+ "step": 4447
+ },
+ {
+ "epoch": 61.782874617737,
+ "grad_norm": 0.22101432085037231,
+ "learning_rate": 0.0006,
+ "loss": 3.510197639465332,
+ "step": 4448
+ },
+ {
+ "epoch": 61.796854521625164,
+ "grad_norm": 0.2093520164489746,
+ "learning_rate": 0.0006,
+ "loss": 3.52504301071167,
+ "step": 4449
+ },
+ {
+ "epoch": 61.81083442551333,
+ "grad_norm": 0.2224605530500412,
+ "learning_rate": 0.0006,
+ "loss": 3.5590806007385254,
+ "step": 4450
+ },
+ {
+ "epoch": 61.824814329401484,
+ "grad_norm": 0.22242501378059387,
+ "learning_rate": 0.0006,
+ "loss": 3.5409610271453857,
+ "step": 4451
+ },
+ {
+ "epoch": 61.83879423328965,
+ "grad_norm": 0.22488343715667725,
+ "learning_rate": 0.0006,
+ "loss": 3.537534236907959,
+ "step": 4452
+ },
+ {
+ "epoch": 61.8527741371778,
+ "grad_norm": 0.23510107398033142,
+ "learning_rate": 0.0006,
+ "loss": 3.5561342239379883,
+ "step": 4453
+ },
+ {
+ "epoch": 61.86675404106597,
+ "grad_norm": 0.237285315990448,
+ "learning_rate": 0.0006,
+ "loss": 3.539592742919922,
+ "step": 4454
+ },
+ {
+ "epoch": 61.88073394495413,
+ "grad_norm": 0.21573765575885773,
+ "learning_rate": 0.0006,
+ "loss": 3.552250385284424,
+ "step": 4455
+ },
+ {
+ "epoch": 61.89471384884229,
+ "grad_norm": 0.20348075032234192,
+ "learning_rate": 0.0006,
+ "loss": 3.5406012535095215,
+ "step": 4456
+ },
+ {
+ "epoch": 61.90869375273045,
+ "grad_norm": 0.21306075155735016,
+ "learning_rate": 0.0006,
+ "loss": 3.504248857498169,
+ "step": 4457
+ },
+ {
+ "epoch": 61.92267365661861,
+ "grad_norm": 0.2184341996908188,
+ "learning_rate": 0.0006,
+ "loss": 3.5441558361053467,
+ "step": 4458
+ },
+ {
+ "epoch": 61.93665356050677,
+ "grad_norm": 0.20888687670230865,
+ "learning_rate": 0.0006,
+ "loss": 3.517657518386841,
+ "step": 4459
+ },
+ {
+ "epoch": 61.95063346439493,
+ "grad_norm": 0.2066143900156021,
+ "learning_rate": 0.0006,
+ "loss": 3.525796890258789,
+ "step": 4460
+ },
+ {
+ "epoch": 61.964613368283096,
+ "grad_norm": 0.1906299591064453,
+ "learning_rate": 0.0006,
+ "loss": 3.550924777984619,
+ "step": 4461
+ },
+ {
+ "epoch": 61.97859327217125,
+ "grad_norm": 0.1834334284067154,
+ "learning_rate": 0.0006,
+ "loss": 3.5818099975585938,
+ "step": 4462
+ },
+ {
+ "epoch": 61.992573176059416,
+ "grad_norm": 0.22725825011730194,
+ "learning_rate": 0.0006,
+ "loss": 3.5573811531066895,
+ "step": 4463
+ },
+ {
+ "epoch": 62.0,
+ "grad_norm": 0.29936420917510986,
+ "learning_rate": 0.0006,
+ "loss": 3.557694435119629,
+ "step": 4464
+ },
+ {
+ "epoch": 62.0,
+ "eval_loss": 3.985543966293335,
+ "eval_runtime": 46.6388,
+ "eval_samples_per_second": 52.36,
+ "eval_steps_per_second": 3.281,
+ "step": 4464
+ },
+ {
+ "epoch": 62.01397990388816,
+ "grad_norm": 0.30896103382110596,
+ "learning_rate": 0.0006,
+ "loss": 3.4991438388824463,
+ "step": 4465
+ },
+ {
+ "epoch": 62.02795980777632,
+ "grad_norm": 0.27383437752723694,
+ "learning_rate": 0.0006,
+ "loss": 3.4710259437561035,
+ "step": 4466
+ },
+ {
+ "epoch": 62.04193971166448,
+ "grad_norm": 0.24412496387958527,
+ "learning_rate": 0.0006,
+ "loss": 3.4983878135681152,
+ "step": 4467
+ },
+ {
+ "epoch": 62.05591961555265,
+ "grad_norm": 0.2649880051612854,
+ "learning_rate": 0.0006,
+ "loss": 3.5481886863708496,
+ "step": 4468
+ },
+ {
+ "epoch": 62.0698995194408,
+ "grad_norm": 0.2625769078731537,
+ "learning_rate": 0.0006,
+ "loss": 3.5114197731018066,
+ "step": 4469
+ },
+ {
+ "epoch": 62.083879423328966,
+ "grad_norm": 0.234181210398674,
+ "learning_rate": 0.0006,
+ "loss": 3.504152536392212,
+ "step": 4470
+ },
+ {
+ "epoch": 62.09785932721712,
+ "grad_norm": 0.21403342485427856,
+ "learning_rate": 0.0006,
+ "loss": 3.50738525390625,
+ "step": 4471
+ },
+ {
+ "epoch": 62.111839231105286,
+ "grad_norm": 0.22780060768127441,
+ "learning_rate": 0.0006,
+ "loss": 3.518354892730713,
+ "step": 4472
+ },
+ {
+ "epoch": 62.12581913499345,
+ "grad_norm": 0.23725424706935883,
+ "learning_rate": 0.0006,
+ "loss": 3.5227513313293457,
+ "step": 4473
+ },
+ {
+ "epoch": 62.139799038881605,
+ "grad_norm": 0.23643283545970917,
+ "learning_rate": 0.0006,
+ "loss": 3.504271984100342,
+ "step": 4474
+ },
+ {
+ "epoch": 62.15377894276977,
+ "grad_norm": 0.22513480484485626,
+ "learning_rate": 0.0006,
+ "loss": 3.5232059955596924,
+ "step": 4475
+ },
+ {
+ "epoch": 62.16775884665793,
+ "grad_norm": 0.23375700414180756,
+ "learning_rate": 0.0006,
+ "loss": 3.506519317626953,
+ "step": 4476
+ },
+ {
+ "epoch": 62.18173875054609,
+ "grad_norm": 0.24691303074359894,
+ "learning_rate": 0.0006,
+ "loss": 3.5212974548339844,
+ "step": 4477
+ },
+ {
+ "epoch": 62.19571865443425,
+ "grad_norm": 0.23466123640537262,
+ "learning_rate": 0.0006,
+ "loss": 3.5295071601867676,
+ "step": 4478
+ },
+ {
+ "epoch": 62.20969855832241,
+ "grad_norm": 0.2432340532541275,
+ "learning_rate": 0.0006,
+ "loss": 3.487830638885498,
+ "step": 4479
+ },
+ {
+ "epoch": 62.22367846221057,
+ "grad_norm": 0.24575389921665192,
+ "learning_rate": 0.0006,
+ "loss": 3.5329103469848633,
+ "step": 4480
+ },
+ {
+ "epoch": 62.237658366098735,
+ "grad_norm": 0.2441941201686859,
+ "learning_rate": 0.0006,
+ "loss": 3.5230906009674072,
+ "step": 4481
+ },
+ {
+ "epoch": 62.25163826998689,
+ "grad_norm": 0.2278154343366623,
+ "learning_rate": 0.0006,
+ "loss": 3.4919002056121826,
+ "step": 4482
+ },
+ {
+ "epoch": 62.265618173875055,
+ "grad_norm": 0.23517796397209167,
+ "learning_rate": 0.0006,
+ "loss": 3.5137887001037598,
+ "step": 4483
+ },
+ {
+ "epoch": 62.27959807776322,
+ "grad_norm": 0.2533835470676422,
+ "learning_rate": 0.0006,
+ "loss": 3.526322841644287,
+ "step": 4484
+ },
+ {
+ "epoch": 62.293577981651374,
+ "grad_norm": 0.24535894393920898,
+ "learning_rate": 0.0006,
+ "loss": 3.5060930252075195,
+ "step": 4485
+ },
+ {
+ "epoch": 62.30755788553954,
+ "grad_norm": 0.23312991857528687,
+ "learning_rate": 0.0006,
+ "loss": 3.5015740394592285,
+ "step": 4486
+ },
+ {
+ "epoch": 62.3215377894277,
+ "grad_norm": 0.2073916792869568,
+ "learning_rate": 0.0006,
+ "loss": 3.5239500999450684,
+ "step": 4487
+ },
+ {
+ "epoch": 62.33551769331586,
+ "grad_norm": 0.23528249561786652,
+ "learning_rate": 0.0006,
+ "loss": 3.4946212768554688,
+ "step": 4488
+ },
+ {
+ "epoch": 62.34949759720402,
+ "grad_norm": 0.25181272625923157,
+ "learning_rate": 0.0006,
+ "loss": 3.5492000579833984,
+ "step": 4489
+ },
+ {
+ "epoch": 62.36347750109218,
+ "grad_norm": 0.250745564699173,
+ "learning_rate": 0.0006,
+ "loss": 3.491637706756592,
+ "step": 4490
+ },
+ {
+ "epoch": 62.37745740498034,
+ "grad_norm": 0.2461264729499817,
+ "learning_rate": 0.0006,
+ "loss": 3.514125108718872,
+ "step": 4491
+ },
+ {
+ "epoch": 62.391437308868504,
+ "grad_norm": 0.2265472114086151,
+ "learning_rate": 0.0006,
+ "loss": 3.5513534545898438,
+ "step": 4492
+ },
+ {
+ "epoch": 62.40541721275666,
+ "grad_norm": 0.21937128901481628,
+ "learning_rate": 0.0006,
+ "loss": 3.541867733001709,
+ "step": 4493
+ },
+ {
+ "epoch": 62.419397116644824,
+ "grad_norm": 0.21318639814853668,
+ "learning_rate": 0.0006,
+ "loss": 3.530449867248535,
+ "step": 4494
+ },
+ {
+ "epoch": 62.43337702053299,
+ "grad_norm": 0.21287934482097626,
+ "learning_rate": 0.0006,
+ "loss": 3.51837158203125,
+ "step": 4495
+ },
+ {
+ "epoch": 62.44735692442114,
+ "grad_norm": 0.21953676640987396,
+ "learning_rate": 0.0006,
+ "loss": 3.517456293106079,
+ "step": 4496
+ },
+ {
+ "epoch": 62.46133682830931,
+ "grad_norm": 0.23475255072116852,
+ "learning_rate": 0.0006,
+ "loss": 3.493858575820923,
+ "step": 4497
+ },
+ {
+ "epoch": 62.47531673219746,
+ "grad_norm": 0.21805652976036072,
+ "learning_rate": 0.0006,
+ "loss": 3.533367872238159,
+ "step": 4498
+ },
+ {
+ "epoch": 62.489296636085626,
+ "grad_norm": 0.21494100987911224,
+ "learning_rate": 0.0006,
+ "loss": 3.509060859680176,
+ "step": 4499
+ },
+ {
+ "epoch": 62.50327653997379,
+ "grad_norm": 0.20512273907661438,
+ "learning_rate": 0.0006,
+ "loss": 3.524643659591675,
+ "step": 4500
+ },
+ {
+ "epoch": 62.517256443861946,
+ "grad_norm": 0.2046528458595276,
+ "learning_rate": 0.0006,
+ "loss": 3.520662784576416,
+ "step": 4501
+ },
+ {
+ "epoch": 62.53123634775011,
+ "grad_norm": 0.21108978986740112,
+ "learning_rate": 0.0006,
+ "loss": 3.5121688842773438,
+ "step": 4502
+ },
+ {
+ "epoch": 62.54521625163827,
+ "grad_norm": 0.19229449331760406,
+ "learning_rate": 0.0006,
+ "loss": 3.5201103687286377,
+ "step": 4503
+ },
+ {
+ "epoch": 62.55919615552643,
+ "grad_norm": 0.1984805464744568,
+ "learning_rate": 0.0006,
+ "loss": 3.546898365020752,
+ "step": 4504
+ },
+ {
+ "epoch": 62.57317605941459,
+ "grad_norm": 0.21615411341190338,
+ "learning_rate": 0.0006,
+ "loss": 3.4933600425720215,
+ "step": 4505
+ },
+ {
+ "epoch": 62.58715596330275,
+ "grad_norm": 0.22868046164512634,
+ "learning_rate": 0.0006,
+ "loss": 3.506098747253418,
+ "step": 4506
+ },
+ {
+ "epoch": 62.60113586719091,
+ "grad_norm": 0.21856851875782013,
+ "learning_rate": 0.0006,
+ "loss": 3.5790011882781982,
+ "step": 4507
+ },
+ {
+ "epoch": 62.615115771079076,
+ "grad_norm": 0.20573008060455322,
+ "learning_rate": 0.0006,
+ "loss": 3.5236854553222656,
+ "step": 4508
+ },
+ {
+ "epoch": 62.62909567496723,
+ "grad_norm": 0.21287901699543,
+ "learning_rate": 0.0006,
+ "loss": 3.5323190689086914,
+ "step": 4509
+ },
+ {
+ "epoch": 62.643075578855395,
+ "grad_norm": 0.22703637182712555,
+ "learning_rate": 0.0006,
+ "loss": 3.5300045013427734,
+ "step": 4510
+ },
+ {
+ "epoch": 62.65705548274356,
+ "grad_norm": 0.2194957137107849,
+ "learning_rate": 0.0006,
+ "loss": 3.5727438926696777,
+ "step": 4511
+ },
+ {
+ "epoch": 62.671035386631715,
+ "grad_norm": 0.22334235906600952,
+ "learning_rate": 0.0006,
+ "loss": 3.521441698074341,
+ "step": 4512
+ },
+ {
+ "epoch": 62.68501529051988,
+ "grad_norm": 0.2559402883052826,
+ "learning_rate": 0.0006,
+ "loss": 3.513730525970459,
+ "step": 4513
+ },
+ {
+ "epoch": 62.69899519440804,
+ "grad_norm": 0.25041815638542175,
+ "learning_rate": 0.0006,
+ "loss": 3.536247968673706,
+ "step": 4514
+ },
+ {
+ "epoch": 62.7129750982962,
+ "grad_norm": 0.24958674609661102,
+ "learning_rate": 0.0006,
+ "loss": 3.5245871543884277,
+ "step": 4515
+ },
+ {
+ "epoch": 62.72695500218436,
+ "grad_norm": 0.22527511417865753,
+ "learning_rate": 0.0006,
+ "loss": 3.508802652359009,
+ "step": 4516
+ },
+ {
+ "epoch": 62.74093490607252,
+ "grad_norm": 0.19455862045288086,
+ "learning_rate": 0.0006,
+ "loss": 3.5296337604522705,
+ "step": 4517
+ },
+ {
+ "epoch": 62.75491480996068,
+ "grad_norm": 0.20303845405578613,
+ "learning_rate": 0.0006,
+ "loss": 3.57499098777771,
+ "step": 4518
+ },
+ {
+ "epoch": 62.768894713848844,
+ "grad_norm": 0.20851430296897888,
+ "learning_rate": 0.0006,
+ "loss": 3.5139262676239014,
+ "step": 4519
+ },
+ {
+ "epoch": 62.782874617737,
+ "grad_norm": 0.19765593111515045,
+ "learning_rate": 0.0006,
+ "loss": 3.5398616790771484,
+ "step": 4520
+ },
+ {
+ "epoch": 62.796854521625164,
+ "grad_norm": 0.20502524077892303,
+ "learning_rate": 0.0006,
+ "loss": 3.5163207054138184,
+ "step": 4521
+ },
+ {
+ "epoch": 62.81083442551333,
+ "grad_norm": 0.20211154222488403,
+ "learning_rate": 0.0006,
+ "loss": 3.5164661407470703,
+ "step": 4522
+ },
+ {
+ "epoch": 62.824814329401484,
+ "grad_norm": 0.19798780977725983,
+ "learning_rate": 0.0006,
+ "loss": 3.533470869064331,
+ "step": 4523
+ },
+ {
+ "epoch": 62.83879423328965,
+ "grad_norm": 0.21921277046203613,
+ "learning_rate": 0.0006,
+ "loss": 3.532498598098755,
+ "step": 4524
+ },
+ {
+ "epoch": 62.8527741371778,
+ "grad_norm": 0.2352060228586197,
+ "learning_rate": 0.0006,
+ "loss": 3.5674972534179688,
+ "step": 4525
+ },
+ {
+ "epoch": 62.86675404106597,
+ "grad_norm": 0.21286381781101227,
+ "learning_rate": 0.0006,
+ "loss": 3.508051872253418,
+ "step": 4526
+ },
+ {
+ "epoch": 62.88073394495413,
+ "grad_norm": 0.21557490527629852,
+ "learning_rate": 0.0006,
+ "loss": 3.5300607681274414,
+ "step": 4527
+ },
+ {
+ "epoch": 62.89471384884229,
+ "grad_norm": 0.23020988702774048,
+ "learning_rate": 0.0006,
+ "loss": 3.508237361907959,
+ "step": 4528
+ },
+ {
+ "epoch": 62.90869375273045,
+ "grad_norm": 0.26428425312042236,
+ "learning_rate": 0.0006,
+ "loss": 3.52371883392334,
+ "step": 4529
+ },
+ {
+ "epoch": 62.92267365661861,
+ "grad_norm": 0.2568773925304413,
+ "learning_rate": 0.0006,
+ "loss": 3.5371956825256348,
+ "step": 4530
+ },
+ {
+ "epoch": 62.93665356050677,
+ "grad_norm": 0.2216598093509674,
+ "learning_rate": 0.0006,
+ "loss": 3.5286736488342285,
+ "step": 4531
+ },
+ {
+ "epoch": 62.95063346439493,
+ "grad_norm": 0.23094940185546875,
+ "learning_rate": 0.0006,
+ "loss": 3.5389769077301025,
+ "step": 4532
+ },
+ {
+ "epoch": 62.964613368283096,
+ "grad_norm": 0.23469413816928864,
+ "learning_rate": 0.0006,
+ "loss": 3.546466588973999,
+ "step": 4533
+ },
+ {
+ "epoch": 62.97859327217125,
+ "grad_norm": 0.2289242148399353,
+ "learning_rate": 0.0006,
+ "loss": 3.565002679824829,
+ "step": 4534
+ },
+ {
+ "epoch": 62.992573176059416,
+ "grad_norm": 0.262317955493927,
+ "learning_rate": 0.0006,
+ "loss": 3.5388731956481934,
+ "step": 4535
+ },
+ {
+ "epoch": 63.0,
+ "grad_norm": 0.273183137178421,
+ "learning_rate": 0.0006,
+ "loss": 3.482903003692627,
+ "step": 4536
+ },
+ {
+ "epoch": 63.0,
+ "eval_loss": 3.973074436187744,
+ "eval_runtime": 45.5476,
+ "eval_samples_per_second": 53.614,
+ "eval_steps_per_second": 3.359,
+ "step": 4536
+ },
+ {
+ "epoch": 63.01397990388816,
+ "grad_norm": 0.22226323187351227,
+ "learning_rate": 0.0006,
+ "loss": 3.483798027038574,
+ "step": 4537
+ },
+ {
+ "epoch": 63.02795980777632,
+ "grad_norm": 0.24443542957305908,
+ "learning_rate": 0.0006,
+ "loss": 3.496903419494629,
+ "step": 4538
+ },
+ {
+ "epoch": 63.04193971166448,
+ "grad_norm": 0.2508153021335602,
+ "learning_rate": 0.0006,
+ "loss": 3.5234804153442383,
+ "step": 4539
+ },
+ {
+ "epoch": 63.05591961555265,
+ "grad_norm": 0.2610569894313812,
+ "learning_rate": 0.0006,
+ "loss": 3.502870798110962,
+ "step": 4540
+ },
+ {
+ "epoch": 63.0698995194408,
+ "grad_norm": 0.27980759739875793,
+ "learning_rate": 0.0006,
+ "loss": 3.50645112991333,
+ "step": 4541
+ },
+ {
+ "epoch": 63.083879423328966,
+ "grad_norm": 0.292883038520813,
+ "learning_rate": 0.0006,
+ "loss": 3.478863000869751,
+ "step": 4542
+ },
+ {
+ "epoch": 63.09785932721712,
+ "grad_norm": 0.2593323588371277,
+ "learning_rate": 0.0006,
+ "loss": 3.506967067718506,
+ "step": 4543
+ },
+ {
+ "epoch": 63.111839231105286,
+ "grad_norm": 0.23973147571086884,
+ "learning_rate": 0.0006,
+ "loss": 3.513401746749878,
+ "step": 4544
+ },
+ {
+ "epoch": 63.12581913499345,
+ "grad_norm": 0.22731348872184753,
+ "learning_rate": 0.0006,
+ "loss": 3.4880478382110596,
+ "step": 4545
+ },
+ {
+ "epoch": 63.139799038881605,
+ "grad_norm": 0.22627407312393188,
+ "learning_rate": 0.0006,
+ "loss": 3.4975132942199707,
+ "step": 4546
+ },
+ {
+ "epoch": 63.15377894276977,
+ "grad_norm": 0.25107741355895996,
+ "learning_rate": 0.0006,
+ "loss": 3.5068140029907227,
+ "step": 4547
+ },
+ {
+ "epoch": 63.16775884665793,
+ "grad_norm": 0.23031412065029144,
+ "learning_rate": 0.0006,
+ "loss": 3.515760898590088,
+ "step": 4548
+ },
+ {
+ "epoch": 63.18173875054609,
+ "grad_norm": 0.21028949320316315,
+ "learning_rate": 0.0006,
+ "loss": 3.521303415298462,
+ "step": 4549
+ },
+ {
+ "epoch": 63.19571865443425,
+ "grad_norm": 0.22366516292095184,
+ "learning_rate": 0.0006,
+ "loss": 3.5283193588256836,
+ "step": 4550
+ },
+ {
+ "epoch": 63.20969855832241,
+ "grad_norm": 0.2176598459482193,
+ "learning_rate": 0.0006,
+ "loss": 3.490306854248047,
+ "step": 4551
+ },
+ {
+ "epoch": 63.22367846221057,
+ "grad_norm": 0.20985916256904602,
+ "learning_rate": 0.0006,
+ "loss": 3.5335614681243896,
+ "step": 4552
+ },
+ {
+ "epoch": 63.237658366098735,
+ "grad_norm": 0.2085118442773819,
+ "learning_rate": 0.0006,
+ "loss": 3.5108132362365723,
+ "step": 4553
+ },
+ {
+ "epoch": 63.25163826998689,
+ "grad_norm": 0.22644028067588806,
+ "learning_rate": 0.0006,
+ "loss": 3.4813215732574463,
+ "step": 4554
+ },
+ {
+ "epoch": 63.265618173875055,
+ "grad_norm": 0.21942120790481567,
+ "learning_rate": 0.0006,
+ "loss": 3.5310909748077393,
+ "step": 4555
+ },
+ {
+ "epoch": 63.27959807776322,
+ "grad_norm": 0.2335938662290573,
+ "learning_rate": 0.0006,
+ "loss": 3.530893564224243,
+ "step": 4556
+ },
+ {
+ "epoch": 63.293577981651374,
+ "grad_norm": 0.2409360110759735,
+ "learning_rate": 0.0006,
+ "loss": 3.5301408767700195,
+ "step": 4557
+ },
+ {
+ "epoch": 63.30755788553954,
+ "grad_norm": 0.2354922890663147,
+ "learning_rate": 0.0006,
+ "loss": 3.5211031436920166,
+ "step": 4558
+ },
+ {
+ "epoch": 63.3215377894277,
+ "grad_norm": 0.23376664519309998,
+ "learning_rate": 0.0006,
+ "loss": 3.538367509841919,
+ "step": 4559
+ },
+ {
+ "epoch": 63.33551769331586,
+ "grad_norm": 0.25319674611091614,
+ "learning_rate": 0.0006,
+ "loss": 3.494905471801758,
+ "step": 4560
+ },
+ {
+ "epoch": 63.34949759720402,
+ "grad_norm": 0.24088945984840393,
+ "learning_rate": 0.0006,
+ "loss": 3.5189433097839355,
+ "step": 4561
+ },
+ {
+ "epoch": 63.36347750109218,
+ "grad_norm": 0.2373911589384079,
+ "learning_rate": 0.0006,
+ "loss": 3.4956908226013184,
+ "step": 4562
+ },
+ {
+ "epoch": 63.37745740498034,
+ "grad_norm": 0.2590023875236511,
+ "learning_rate": 0.0006,
+ "loss": 3.511784076690674,
+ "step": 4563
+ },
+ {
+ "epoch": 63.391437308868504,
+ "grad_norm": 0.2600874900817871,
+ "learning_rate": 0.0006,
+ "loss": 3.478942394256592,
+ "step": 4564
+ },
+ {
+ "epoch": 63.40541721275666,
+ "grad_norm": 0.24018031358718872,
+ "learning_rate": 0.0006,
+ "loss": 3.521773338317871,
+ "step": 4565
+ },
+ {
+ "epoch": 63.419397116644824,
+ "grad_norm": 0.2552972435951233,
+ "learning_rate": 0.0006,
+ "loss": 3.4893441200256348,
+ "step": 4566
+ },
+ {
+ "epoch": 63.43337702053299,
+ "grad_norm": 0.26195958256721497,
+ "learning_rate": 0.0006,
+ "loss": 3.5366687774658203,
+ "step": 4567
+ },
+ {
+ "epoch": 63.44735692442114,
+ "grad_norm": 0.24390678107738495,
+ "learning_rate": 0.0006,
+ "loss": 3.4948301315307617,
+ "step": 4568
+ },
+ {
+ "epoch": 63.46133682830931,
+ "grad_norm": 0.21185952425003052,
+ "learning_rate": 0.0006,
+ "loss": 3.486267566680908,
+ "step": 4569
+ },
+ {
+ "epoch": 63.47531673219746,
+ "grad_norm": 0.21932153403759003,
+ "learning_rate": 0.0006,
+ "loss": 3.499481201171875,
+ "step": 4570
+ },
+ {
+ "epoch": 63.489296636085626,
+ "grad_norm": 0.22503717243671417,
+ "learning_rate": 0.0006,
+ "loss": 3.4932126998901367,
+ "step": 4571
+ },
+ {
+ "epoch": 63.50327653997379,
+ "grad_norm": 0.23853568732738495,
+ "learning_rate": 0.0006,
+ "loss": 3.4893674850463867,
+ "step": 4572
+ },
+ {
+ "epoch": 63.517256443861946,
+ "grad_norm": 0.2531817853450775,
+ "learning_rate": 0.0006,
+ "loss": 3.5391907691955566,
+ "step": 4573
+ },
+ {
+ "epoch": 63.53123634775011,
+ "grad_norm": 0.23776786029338837,
+ "learning_rate": 0.0006,
+ "loss": 3.5097427368164062,
+ "step": 4574
+ },
+ {
+ "epoch": 63.54521625163827,
+ "grad_norm": 0.24308739602565765,
+ "learning_rate": 0.0006,
+ "loss": 3.4988107681274414,
+ "step": 4575
+ },
+ {
+ "epoch": 63.55919615552643,
+ "grad_norm": 0.24214281141757965,
+ "learning_rate": 0.0006,
+ "loss": 3.506901502609253,
+ "step": 4576
+ },
+ {
+ "epoch": 63.57317605941459,
+ "grad_norm": 0.21378614008426666,
+ "learning_rate": 0.0006,
+ "loss": 3.54103684425354,
+ "step": 4577
+ },
+ {
+ "epoch": 63.58715596330275,
+ "grad_norm": 0.21135152876377106,
+ "learning_rate": 0.0006,
+ "loss": 3.534852981567383,
+ "step": 4578
+ },
+ {
+ "epoch": 63.60113586719091,
+ "grad_norm": 0.2335089147090912,
+ "learning_rate": 0.0006,
+ "loss": 3.542457342147827,
+ "step": 4579
+ },
+ {
+ "epoch": 63.615115771079076,
+ "grad_norm": 0.23693214356899261,
+ "learning_rate": 0.0006,
+ "loss": 3.4781997203826904,
+ "step": 4580
+ },
+ {
+ "epoch": 63.62909567496723,
+ "grad_norm": 0.21237023174762726,
+ "learning_rate": 0.0006,
+ "loss": 3.4980621337890625,
+ "step": 4581
+ },
+ {
+ "epoch": 63.643075578855395,
+ "grad_norm": 0.20930461585521698,
+ "learning_rate": 0.0006,
+ "loss": 3.5177974700927734,
+ "step": 4582
+ },
+ {
+ "epoch": 63.65705548274356,
+ "grad_norm": 0.22565403580665588,
+ "learning_rate": 0.0006,
+ "loss": 3.5385828018188477,
+ "step": 4583
+ },
+ {
+ "epoch": 63.671035386631715,
+ "grad_norm": 0.22187408804893494,
+ "learning_rate": 0.0006,
+ "loss": 3.5461559295654297,
+ "step": 4584
+ },
+ {
+ "epoch": 63.68501529051988,
+ "grad_norm": 0.23496168851852417,
+ "learning_rate": 0.0006,
+ "loss": 3.526822090148926,
+ "step": 4585
+ },
+ {
+ "epoch": 63.69899519440804,
+ "grad_norm": 0.2432301938533783,
+ "learning_rate": 0.0006,
+ "loss": 3.5248091220855713,
+ "step": 4586
+ },
+ {
+ "epoch": 63.7129750982962,
+ "grad_norm": 0.22797444462776184,
+ "learning_rate": 0.0006,
+ "loss": 3.5276098251342773,
+ "step": 4587
+ },
+ {
+ "epoch": 63.72695500218436,
+ "grad_norm": 0.2332911491394043,
+ "learning_rate": 0.0006,
+ "loss": 3.5454764366149902,
+ "step": 4588
+ },
+ {
+ "epoch": 63.74093490607252,
+ "grad_norm": 0.23016804456710815,
+ "learning_rate": 0.0006,
+ "loss": 3.519209384918213,
+ "step": 4589
+ },
+ {
+ "epoch": 63.75491480996068,
+ "grad_norm": 0.2160855233669281,
+ "learning_rate": 0.0006,
+ "loss": 3.536961317062378,
+ "step": 4590
+ },
+ {
+ "epoch": 63.768894713848844,
+ "grad_norm": 0.25935620069503784,
+ "learning_rate": 0.0006,
+ "loss": 3.5653820037841797,
+ "step": 4591
+ },
+ {
+ "epoch": 63.782874617737,
+ "grad_norm": 0.26625221967697144,
+ "learning_rate": 0.0006,
+ "loss": 3.5492172241210938,
+ "step": 4592
+ },
+ {
+ "epoch": 63.796854521625164,
+ "grad_norm": 0.25456854701042175,
+ "learning_rate": 0.0006,
+ "loss": 3.516575336456299,
+ "step": 4593
+ },
+ {
+ "epoch": 63.81083442551333,
+ "grad_norm": 0.26114824414253235,
+ "learning_rate": 0.0006,
+ "loss": 3.5429139137268066,
+ "step": 4594
+ },
+ {
+ "epoch": 63.824814329401484,
+ "grad_norm": 0.27836596965789795,
+ "learning_rate": 0.0006,
+ "loss": 3.5567727088928223,
+ "step": 4595
+ },
+ {
+ "epoch": 63.83879423328965,
+ "grad_norm": 0.2674464285373688,
+ "learning_rate": 0.0006,
+ "loss": 3.5093564987182617,
+ "step": 4596
+ },
+ {
+ "epoch": 63.8527741371778,
+ "grad_norm": 0.27393433451652527,
+ "learning_rate": 0.0006,
+ "loss": 3.5500247478485107,
+ "step": 4597
+ },
+ {
+ "epoch": 63.86675404106597,
+ "grad_norm": 0.30968594551086426,
+ "learning_rate": 0.0006,
+ "loss": 3.539085865020752,
+ "step": 4598
+ },
+ {
+ "epoch": 63.88073394495413,
+ "grad_norm": 0.279060423374176,
+ "learning_rate": 0.0006,
+ "loss": 3.517862319946289,
+ "step": 4599
+ },
+ {
+ "epoch": 63.89471384884229,
+ "grad_norm": 0.22436867654323578,
+ "learning_rate": 0.0006,
+ "loss": 3.5714004039764404,
+ "step": 4600
+ },
+ {
+ "epoch": 63.90869375273045,
+ "grad_norm": 0.22473126649856567,
+ "learning_rate": 0.0006,
+ "loss": 3.5212388038635254,
+ "step": 4601
+ },
+ {
+ "epoch": 63.92267365661861,
+ "grad_norm": 0.2802466154098511,
+ "learning_rate": 0.0006,
+ "loss": 3.5112411975860596,
+ "step": 4602
+ },
+ {
+ "epoch": 63.93665356050677,
+ "grad_norm": 0.29435867071151733,
+ "learning_rate": 0.0006,
+ "loss": 3.554875373840332,
+ "step": 4603
+ },
+ {
+ "epoch": 63.95063346439493,
+ "grad_norm": 0.24592025578022003,
+ "learning_rate": 0.0006,
+ "loss": 3.5593767166137695,
+ "step": 4604
+ },
+ {
+ "epoch": 63.964613368283096,
+ "grad_norm": 0.25918886065483093,
+ "learning_rate": 0.0006,
+ "loss": 3.5020017623901367,
+ "step": 4605
+ },
+ {
+ "epoch": 63.97859327217125,
+ "grad_norm": 0.24892419576644897,
+ "learning_rate": 0.0006,
+ "loss": 3.520456314086914,
+ "step": 4606
+ },
+ {
+ "epoch": 63.992573176059416,
+ "grad_norm": 0.24131213128566742,
+ "learning_rate": 0.0006,
+ "loss": 3.5576815605163574,
+ "step": 4607
+ },
+ {
+ "epoch": 64.0,
+ "grad_norm": 0.2348976731300354,
+ "learning_rate": 0.0006,
+ "loss": 3.524242401123047,
+ "step": 4608
+ },
+ {
+ "epoch": 64.0,
+ "eval_loss": 3.972158670425415,
+ "eval_runtime": 45.883,
+ "eval_samples_per_second": 53.222,
+ "eval_steps_per_second": 3.335,
+ "step": 4608
+ },
+ {
+ "epoch": 64.01397990388816,
+ "grad_norm": 0.24034473299980164,
+ "learning_rate": 0.0006,
+ "loss": 3.463156223297119,
+ "step": 4609
+ },
+ {
+ "epoch": 64.02795980777633,
+ "grad_norm": 0.28686341643333435,
+ "learning_rate": 0.0006,
+ "loss": 3.5137135982513428,
+ "step": 4610
+ },
+ {
+ "epoch": 64.04193971166448,
+ "grad_norm": 0.30763131380081177,
+ "learning_rate": 0.0006,
+ "loss": 3.490610361099243,
+ "step": 4611
+ },
+ {
+ "epoch": 64.05591961555264,
+ "grad_norm": 0.2775363624095917,
+ "learning_rate": 0.0006,
+ "loss": 3.516378879547119,
+ "step": 4612
+ },
+ {
+ "epoch": 64.06989951944081,
+ "grad_norm": 0.2643020749092102,
+ "learning_rate": 0.0006,
+ "loss": 3.511389970779419,
+ "step": 4613
+ },
+ {
+ "epoch": 64.08387942332897,
+ "grad_norm": 0.2859032452106476,
+ "learning_rate": 0.0006,
+ "loss": 3.5125572681427,
+ "step": 4614
+ },
+ {
+ "epoch": 64.09785932721712,
+ "grad_norm": 0.28378766775131226,
+ "learning_rate": 0.0006,
+ "loss": 3.4953627586364746,
+ "step": 4615
+ },
+ {
+ "epoch": 64.1118392311053,
+ "grad_norm": 0.2809223234653473,
+ "learning_rate": 0.0006,
+ "loss": 3.5114667415618896,
+ "step": 4616
+ },
+ {
+ "epoch": 64.12581913499345,
+ "grad_norm": 0.251823753118515,
+ "learning_rate": 0.0006,
+ "loss": 3.529876232147217,
+ "step": 4617
+ },
+ {
+ "epoch": 64.1397990388816,
+ "grad_norm": 0.236602321267128,
+ "learning_rate": 0.0006,
+ "loss": 3.5067150592803955,
+ "step": 4618
+ },
+ {
+ "epoch": 64.15377894276976,
+ "grad_norm": 0.2317773550748825,
+ "learning_rate": 0.0006,
+ "loss": 3.5166091918945312,
+ "step": 4619
+ },
+ {
+ "epoch": 64.16775884665793,
+ "grad_norm": 0.2237853854894638,
+ "learning_rate": 0.0006,
+ "loss": 3.492464065551758,
+ "step": 4620
+ },
+ {
+ "epoch": 64.18173875054609,
+ "grad_norm": 0.22309459745883942,
+ "learning_rate": 0.0006,
+ "loss": 3.4892983436584473,
+ "step": 4621
+ },
+ {
+ "epoch": 64.19571865443424,
+ "grad_norm": 0.21838971972465515,
+ "learning_rate": 0.0006,
+ "loss": 3.528764486312866,
+ "step": 4622
+ },
+ {
+ "epoch": 64.20969855832242,
+ "grad_norm": 0.22414161264896393,
+ "learning_rate": 0.0006,
+ "loss": 3.506270170211792,
+ "step": 4623
+ },
+ {
+ "epoch": 64.22367846221057,
+ "grad_norm": 0.22375065088272095,
+ "learning_rate": 0.0006,
+ "loss": 3.4844071865081787,
+ "step": 4624
+ },
+ {
+ "epoch": 64.23765836609873,
+ "grad_norm": 0.2091676890850067,
+ "learning_rate": 0.0006,
+ "loss": 3.4983415603637695,
+ "step": 4625
+ },
+ {
+ "epoch": 64.2516382699869,
+ "grad_norm": 0.22184209525585175,
+ "learning_rate": 0.0006,
+ "loss": 3.4846835136413574,
+ "step": 4626
+ },
+ {
+ "epoch": 64.26561817387505,
+ "grad_norm": 0.21549198031425476,
+ "learning_rate": 0.0006,
+ "loss": 3.4933011531829834,
+ "step": 4627
+ },
+ {
+ "epoch": 64.27959807776321,
+ "grad_norm": 0.21613609790802002,
+ "learning_rate": 0.0006,
+ "loss": 3.523514986038208,
+ "step": 4628
+ },
+ {
+ "epoch": 64.29357798165138,
+ "grad_norm": 0.22394488751888275,
+ "learning_rate": 0.0006,
+ "loss": 3.512820243835449,
+ "step": 4629
+ },
+ {
+ "epoch": 64.30755788553954,
+ "grad_norm": 0.22381016612052917,
+ "learning_rate": 0.0006,
+ "loss": 3.4967026710510254,
+ "step": 4630
+ },
+ {
+ "epoch": 64.3215377894277,
+ "grad_norm": 0.22533059120178223,
+ "learning_rate": 0.0006,
+ "loss": 3.5051097869873047,
+ "step": 4631
+ },
+ {
+ "epoch": 64.33551769331586,
+ "grad_norm": 0.23043590784072876,
+ "learning_rate": 0.0006,
+ "loss": 3.4784820079803467,
+ "step": 4632
+ },
+ {
+ "epoch": 64.34949759720402,
+ "grad_norm": 0.20840506255626678,
+ "learning_rate": 0.0006,
+ "loss": 3.496629238128662,
+ "step": 4633
+ },
+ {
+ "epoch": 64.36347750109218,
+ "grad_norm": 0.20293036103248596,
+ "learning_rate": 0.0006,
+ "loss": 3.500199317932129,
+ "step": 4634
+ },
+ {
+ "epoch": 64.37745740498035,
+ "grad_norm": 0.20510733127593994,
+ "learning_rate": 0.0006,
+ "loss": 3.4943113327026367,
+ "step": 4635
+ },
+ {
+ "epoch": 64.3914373088685,
+ "grad_norm": 0.21207642555236816,
+ "learning_rate": 0.0006,
+ "loss": 3.5024590492248535,
+ "step": 4636
+ },
+ {
+ "epoch": 64.40541721275666,
+ "grad_norm": 0.19878660142421722,
+ "learning_rate": 0.0006,
+ "loss": 3.5065855979919434,
+ "step": 4637
+ },
+ {
+ "epoch": 64.41939711664482,
+ "grad_norm": 0.22502431273460388,
+ "learning_rate": 0.0006,
+ "loss": 3.527764081954956,
+ "step": 4638
+ },
+ {
+ "epoch": 64.43337702053299,
+ "grad_norm": 0.2167922705411911,
+ "learning_rate": 0.0006,
+ "loss": 3.5075361728668213,
+ "step": 4639
+ },
+ {
+ "epoch": 64.44735692442114,
+ "grad_norm": 0.21200154721736908,
+ "learning_rate": 0.0006,
+ "loss": 3.5339698791503906,
+ "step": 4640
+ },
+ {
+ "epoch": 64.4613368283093,
+ "grad_norm": 0.22495608031749725,
+ "learning_rate": 0.0006,
+ "loss": 3.5342869758605957,
+ "step": 4641
+ },
+ {
+ "epoch": 64.47531673219747,
+ "grad_norm": 0.21426217257976532,
+ "learning_rate": 0.0006,
+ "loss": 3.5065689086914062,
+ "step": 4642
+ },
+ {
+ "epoch": 64.48929663608563,
+ "grad_norm": 0.19980023801326752,
+ "learning_rate": 0.0006,
+ "loss": 3.508183002471924,
+ "step": 4643
+ },
+ {
+ "epoch": 64.50327653997378,
+ "grad_norm": 0.2054566591978073,
+ "learning_rate": 0.0006,
+ "loss": 3.5098650455474854,
+ "step": 4644
+ },
+ {
+ "epoch": 64.51725644386195,
+ "grad_norm": 0.2038603276014328,
+ "learning_rate": 0.0006,
+ "loss": 3.517388105392456,
+ "step": 4645
+ },
+ {
+ "epoch": 64.53123634775011,
+ "grad_norm": 0.22438357770442963,
+ "learning_rate": 0.0006,
+ "loss": 3.5215954780578613,
+ "step": 4646
+ },
+ {
+ "epoch": 64.54521625163827,
+ "grad_norm": 0.23507612943649292,
+ "learning_rate": 0.0006,
+ "loss": 3.488262176513672,
+ "step": 4647
+ },
+ {
+ "epoch": 64.55919615552644,
+ "grad_norm": 0.21669664978981018,
+ "learning_rate": 0.0006,
+ "loss": 3.4945027828216553,
+ "step": 4648
+ },
+ {
+ "epoch": 64.57317605941459,
+ "grad_norm": 0.20035886764526367,
+ "learning_rate": 0.0006,
+ "loss": 3.516415596008301,
+ "step": 4649
+ },
+ {
+ "epoch": 64.58715596330275,
+ "grad_norm": 0.21818110346794128,
+ "learning_rate": 0.0006,
+ "loss": 3.4944982528686523,
+ "step": 4650
+ },
+ {
+ "epoch": 64.60113586719092,
+ "grad_norm": 0.20609644055366516,
+ "learning_rate": 0.0006,
+ "loss": 3.4914844036102295,
+ "step": 4651
+ },
+ {
+ "epoch": 64.61511577107908,
+ "grad_norm": 0.21921353042125702,
+ "learning_rate": 0.0006,
+ "loss": 3.5292391777038574,
+ "step": 4652
+ },
+ {
+ "epoch": 64.62909567496723,
+ "grad_norm": 0.23570363223552704,
+ "learning_rate": 0.0006,
+ "loss": 3.5353617668151855,
+ "step": 4653
+ },
+ {
+ "epoch": 64.6430755788554,
+ "grad_norm": 0.20933061838150024,
+ "learning_rate": 0.0006,
+ "loss": 3.524240016937256,
+ "step": 4654
+ },
+ {
+ "epoch": 64.65705548274356,
+ "grad_norm": 0.22739441692829132,
+ "learning_rate": 0.0006,
+ "loss": 3.529047966003418,
+ "step": 4655
+ },
+ {
+ "epoch": 64.67103538663171,
+ "grad_norm": 0.22208894789218903,
+ "learning_rate": 0.0006,
+ "loss": 3.5492024421691895,
+ "step": 4656
+ },
+ {
+ "epoch": 64.68501529051987,
+ "grad_norm": 0.23031534254550934,
+ "learning_rate": 0.0006,
+ "loss": 3.532979726791382,
+ "step": 4657
+ },
+ {
+ "epoch": 64.69899519440804,
+ "grad_norm": 0.25316348671913147,
+ "learning_rate": 0.0006,
+ "loss": 3.5105819702148438,
+ "step": 4658
+ },
+ {
+ "epoch": 64.7129750982962,
+ "grad_norm": 0.23601582646369934,
+ "learning_rate": 0.0006,
+ "loss": 3.5270726680755615,
+ "step": 4659
+ },
+ {
+ "epoch": 64.72695500218435,
+ "grad_norm": 0.20309361815452576,
+ "learning_rate": 0.0006,
+ "loss": 3.5072035789489746,
+ "step": 4660
+ },
+ {
+ "epoch": 64.74093490607252,
+ "grad_norm": 0.21525762975215912,
+ "learning_rate": 0.0006,
+ "loss": 3.531649112701416,
+ "step": 4661
+ },
+ {
+ "epoch": 64.75491480996068,
+ "grad_norm": 0.2262735813856125,
+ "learning_rate": 0.0006,
+ "loss": 3.5053927898406982,
+ "step": 4662
+ },
+ {
+ "epoch": 64.76889471384884,
+ "grad_norm": 0.2223973125219345,
+ "learning_rate": 0.0006,
+ "loss": 3.5400562286376953,
+ "step": 4663
+ },
+ {
+ "epoch": 64.78287461773701,
+ "grad_norm": 0.22822168469429016,
+ "learning_rate": 0.0006,
+ "loss": 3.502312421798706,
+ "step": 4664
+ },
+ {
+ "epoch": 64.79685452162516,
+ "grad_norm": 0.2337028533220291,
+ "learning_rate": 0.0006,
+ "loss": 3.524888038635254,
+ "step": 4665
+ },
+ {
+ "epoch": 64.81083442551332,
+ "grad_norm": 0.22423268854618073,
+ "learning_rate": 0.0006,
+ "loss": 3.5380213260650635,
+ "step": 4666
+ },
+ {
+ "epoch": 64.82481432940149,
+ "grad_norm": 0.21429643034934998,
+ "learning_rate": 0.0006,
+ "loss": 3.5499157905578613,
+ "step": 4667
+ },
+ {
+ "epoch": 64.83879423328965,
+ "grad_norm": 0.22421850264072418,
+ "learning_rate": 0.0006,
+ "loss": 3.5034070014953613,
+ "step": 4668
+ },
+ {
+ "epoch": 64.8527741371778,
+ "grad_norm": 0.21886403858661652,
+ "learning_rate": 0.0006,
+ "loss": 3.5276694297790527,
+ "step": 4669
+ },
+ {
+ "epoch": 64.86675404106597,
+ "grad_norm": 0.2404339462518692,
+ "learning_rate": 0.0006,
+ "loss": 3.515219211578369,
+ "step": 4670
+ },
+ {
+ "epoch": 64.88073394495413,
+ "grad_norm": 0.2837470769882202,
+ "learning_rate": 0.0006,
+ "loss": 3.561008930206299,
+ "step": 4671
+ },
+ {
+ "epoch": 64.89471384884229,
+ "grad_norm": 0.3101402223110199,
+ "learning_rate": 0.0006,
+ "loss": 3.556626319885254,
+ "step": 4672
+ },
+ {
+ "epoch": 64.90869375273044,
+ "grad_norm": 0.30606821179389954,
+ "learning_rate": 0.0006,
+ "loss": 3.540271282196045,
+ "step": 4673
+ },
+ {
+ "epoch": 64.92267365661861,
+ "grad_norm": 0.2715052664279938,
+ "learning_rate": 0.0006,
+ "loss": 3.5128841400146484,
+ "step": 4674
+ },
+ {
+ "epoch": 64.93665356050677,
+ "grad_norm": 0.24061815440654755,
+ "learning_rate": 0.0006,
+ "loss": 3.554208278656006,
+ "step": 4675
+ },
+ {
+ "epoch": 64.95063346439493,
+ "grad_norm": 0.23540185391902924,
+ "learning_rate": 0.0006,
+ "loss": 3.544139862060547,
+ "step": 4676
+ },
+ {
+ "epoch": 64.9646133682831,
+ "grad_norm": 0.26172906160354614,
+ "learning_rate": 0.0006,
+ "loss": 3.567110061645508,
+ "step": 4677
+ },
+ {
+ "epoch": 64.97859327217125,
+ "grad_norm": 0.2766035795211792,
+ "learning_rate": 0.0006,
+ "loss": 3.494391918182373,
+ "step": 4678
+ },
+ {
+ "epoch": 64.99257317605941,
+ "grad_norm": 0.2400948703289032,
+ "learning_rate": 0.0006,
+ "loss": 3.5130133628845215,
+ "step": 4679
+ },
+ {
+ "epoch": 65.0,
+ "grad_norm": 0.24790917336940765,
+ "learning_rate": 0.0006,
+ "loss": 3.5481390953063965,
+ "step": 4680
+ },
+ {
+ "epoch": 65.0,
+ "eval_loss": 3.976747989654541,
+ "eval_runtime": 46.3575,
+ "eval_samples_per_second": 52.678,
+ "eval_steps_per_second": 3.3,
+ "step": 4680
+ },
+ {
+ "epoch": 65.01397990388816,
+ "grad_norm": 0.22275416553020477,
+ "learning_rate": 0.0006,
+ "loss": 3.4832773208618164,
+ "step": 4681
+ },
+ {
+ "epoch": 65.02795980777633,
+ "grad_norm": 0.23779742419719696,
+ "learning_rate": 0.0006,
+ "loss": 3.5049266815185547,
+ "step": 4682
+ },
+ {
+ "epoch": 65.04193971166448,
+ "grad_norm": 0.2394440770149231,
+ "learning_rate": 0.0006,
+ "loss": 3.5335357189178467,
+ "step": 4683
+ },
+ {
+ "epoch": 65.05591961555264,
+ "grad_norm": 0.22160623967647552,
+ "learning_rate": 0.0006,
+ "loss": 3.5066094398498535,
+ "step": 4684
+ },
+ {
+ "epoch": 65.06989951944081,
+ "grad_norm": 0.22387197613716125,
+ "learning_rate": 0.0006,
+ "loss": 3.474155902862549,
+ "step": 4685
+ },
+ {
+ "epoch": 65.08387942332897,
+ "grad_norm": 0.24355316162109375,
+ "learning_rate": 0.0006,
+ "loss": 3.4905145168304443,
+ "step": 4686
+ },
+ {
+ "epoch": 65.09785932721712,
+ "grad_norm": 0.25801026821136475,
+ "learning_rate": 0.0006,
+ "loss": 3.50339937210083,
+ "step": 4687
+ },
+ {
+ "epoch": 65.1118392311053,
+ "grad_norm": 0.26155906915664673,
+ "learning_rate": 0.0006,
+ "loss": 3.523623466491699,
+ "step": 4688
+ },
+ {
+ "epoch": 65.12581913499345,
+ "grad_norm": 0.2512831389904022,
+ "learning_rate": 0.0006,
+ "loss": 3.490898609161377,
+ "step": 4689
+ },
+ {
+ "epoch": 65.1397990388816,
+ "grad_norm": 0.25024810433387756,
+ "learning_rate": 0.0006,
+ "loss": 3.4742162227630615,
+ "step": 4690
+ },
+ {
+ "epoch": 65.15377894276976,
+ "grad_norm": 0.27639806270599365,
+ "learning_rate": 0.0006,
+ "loss": 3.503298282623291,
+ "step": 4691
+ },
+ {
+ "epoch": 65.16775884665793,
+ "grad_norm": 0.2543538510799408,
+ "learning_rate": 0.0006,
+ "loss": 3.4785704612731934,
+ "step": 4692
+ },
+ {
+ "epoch": 65.18173875054609,
+ "grad_norm": 0.24148274958133698,
+ "learning_rate": 0.0006,
+ "loss": 3.48526668548584,
+ "step": 4693
+ },
+ {
+ "epoch": 65.19571865443424,
+ "grad_norm": 0.2161206603050232,
+ "learning_rate": 0.0006,
+ "loss": 3.477449417114258,
+ "step": 4694
+ },
+ {
+ "epoch": 65.20969855832242,
+ "grad_norm": 0.21417468786239624,
+ "learning_rate": 0.0006,
+ "loss": 3.5010929107666016,
+ "step": 4695
+ },
+ {
+ "epoch": 65.22367846221057,
+ "grad_norm": 0.22810059785842896,
+ "learning_rate": 0.0006,
+ "loss": 3.4384589195251465,
+ "step": 4696
+ },
+ {
+ "epoch": 65.23765836609873,
+ "grad_norm": 0.23555037379264832,
+ "learning_rate": 0.0006,
+ "loss": 3.4912073612213135,
+ "step": 4697
+ },
+ {
+ "epoch": 65.2516382699869,
+ "grad_norm": 0.2628633975982666,
+ "learning_rate": 0.0006,
+ "loss": 3.4763574600219727,
+ "step": 4698
+ },
+ {
+ "epoch": 65.26561817387505,
+ "grad_norm": 0.2515856921672821,
+ "learning_rate": 0.0006,
+ "loss": 3.480222463607788,
+ "step": 4699
+ },
+ {
+ "epoch": 65.27959807776321,
+ "grad_norm": 0.19862835109233856,
+ "learning_rate": 0.0006,
+ "loss": 3.510263204574585,
+ "step": 4700
+ },
+ {
+ "epoch": 65.29357798165138,
+ "grad_norm": 0.22558043897151947,
+ "learning_rate": 0.0006,
+ "loss": 3.4952306747436523,
+ "step": 4701
+ },
+ {
+ "epoch": 65.30755788553954,
+ "grad_norm": 0.2351200133562088,
+ "learning_rate": 0.0006,
+ "loss": 3.5010221004486084,
+ "step": 4702
+ },
+ {
+ "epoch": 65.3215377894277,
+ "grad_norm": 0.21748903393745422,
+ "learning_rate": 0.0006,
+ "loss": 3.5186777114868164,
+ "step": 4703
+ },
+ {
+ "epoch": 65.33551769331586,
+ "grad_norm": 0.2073124349117279,
+ "learning_rate": 0.0006,
+ "loss": 3.5397891998291016,
+ "step": 4704
+ },
+ {
+ "epoch": 65.34949759720402,
+ "grad_norm": 0.1948464810848236,
+ "learning_rate": 0.0006,
+ "loss": 3.5413217544555664,
+ "step": 4705
+ },
+ {
+ "epoch": 65.36347750109218,
+ "grad_norm": 0.19741199910640717,
+ "learning_rate": 0.0006,
+ "loss": 3.515199899673462,
+ "step": 4706
+ },
+ {
+ "epoch": 65.37745740498035,
+ "grad_norm": 0.22518441081047058,
+ "learning_rate": 0.0006,
+ "loss": 3.512284278869629,
+ "step": 4707
+ },
+ {
+ "epoch": 65.3914373088685,
+ "grad_norm": 0.24368613958358765,
+ "learning_rate": 0.0006,
+ "loss": 3.528355121612549,
+ "step": 4708
+ },
+ {
+ "epoch": 65.40541721275666,
+ "grad_norm": 0.21857064962387085,
+ "learning_rate": 0.0006,
+ "loss": 3.494401454925537,
+ "step": 4709
+ },
+ {
+ "epoch": 65.41939711664482,
+ "grad_norm": 0.2199285924434662,
+ "learning_rate": 0.0006,
+ "loss": 3.49814772605896,
+ "step": 4710
+ },
+ {
+ "epoch": 65.43337702053299,
+ "grad_norm": 0.23801206052303314,
+ "learning_rate": 0.0006,
+ "loss": 3.4678444862365723,
+ "step": 4711
+ },
+ {
+ "epoch": 65.44735692442114,
+ "grad_norm": 0.231369748711586,
+ "learning_rate": 0.0006,
+ "loss": 3.501521587371826,
+ "step": 4712
+ },
+ {
+ "epoch": 65.4613368283093,
+ "grad_norm": 0.20447038114070892,
+ "learning_rate": 0.0006,
+ "loss": 3.508510112762451,
+ "step": 4713
+ },
+ {
+ "epoch": 65.47531673219747,
+ "grad_norm": 0.21331779658794403,
+ "learning_rate": 0.0006,
+ "loss": 3.498544692993164,
+ "step": 4714
+ },
+ {
+ "epoch": 65.48929663608563,
+ "grad_norm": 0.2365437150001526,
+ "learning_rate": 0.0006,
+ "loss": 3.4972000122070312,
+ "step": 4715
+ },
+ {
+ "epoch": 65.50327653997378,
+ "grad_norm": 0.2236112356185913,
+ "learning_rate": 0.0006,
+ "loss": 3.5397965908050537,
+ "step": 4716
+ },
+ {
+ "epoch": 65.51725644386195,
+ "grad_norm": 0.20595021545886993,
+ "learning_rate": 0.0006,
+ "loss": 3.532902717590332,
+ "step": 4717
+ },
+ {
+ "epoch": 65.53123634775011,
+ "grad_norm": 0.2043730616569519,
+ "learning_rate": 0.0006,
+ "loss": 3.5136585235595703,
+ "step": 4718
+ },
+ {
+ "epoch": 65.54521625163827,
+ "grad_norm": 0.21925127506256104,
+ "learning_rate": 0.0006,
+ "loss": 3.526590347290039,
+ "step": 4719
+ },
+ {
+ "epoch": 65.55919615552644,
+ "grad_norm": 0.21580299735069275,
+ "learning_rate": 0.0006,
+ "loss": 3.530301332473755,
+ "step": 4720
+ },
+ {
+ "epoch": 65.57317605941459,
+ "grad_norm": 0.2296830266714096,
+ "learning_rate": 0.0006,
+ "loss": 3.527580976486206,
+ "step": 4721
+ },
+ {
+ "epoch": 65.58715596330275,
+ "grad_norm": 0.21846120059490204,
+ "learning_rate": 0.0006,
+ "loss": 3.524075746536255,
+ "step": 4722
+ },
+ {
+ "epoch": 65.60113586719092,
+ "grad_norm": 0.19835807383060455,
+ "learning_rate": 0.0006,
+ "loss": 3.4560012817382812,
+ "step": 4723
+ },
+ {
+ "epoch": 65.61511577107908,
+ "grad_norm": 0.20501157641410828,
+ "learning_rate": 0.0006,
+ "loss": 3.508017063140869,
+ "step": 4724
+ },
+ {
+ "epoch": 65.62909567496723,
+ "grad_norm": 0.21347478032112122,
+ "learning_rate": 0.0006,
+ "loss": 3.5479536056518555,
+ "step": 4725
+ },
+ {
+ "epoch": 65.6430755788554,
+ "grad_norm": 0.19286541640758514,
+ "learning_rate": 0.0006,
+ "loss": 3.537360906600952,
+ "step": 4726
+ },
+ {
+ "epoch": 65.65705548274356,
+ "grad_norm": 0.19364185631275177,
+ "learning_rate": 0.0006,
+ "loss": 3.5186867713928223,
+ "step": 4727
+ },
+ {
+ "epoch": 65.67103538663171,
+ "grad_norm": 0.19047997891902924,
+ "learning_rate": 0.0006,
+ "loss": 3.5242767333984375,
+ "step": 4728
+ },
+ {
+ "epoch": 65.68501529051987,
+ "grad_norm": 0.19712361693382263,
+ "learning_rate": 0.0006,
+ "loss": 3.5176010131835938,
+ "step": 4729
+ },
+ {
+ "epoch": 65.69899519440804,
+ "grad_norm": 0.2034953087568283,
+ "learning_rate": 0.0006,
+ "loss": 3.510268211364746,
+ "step": 4730
+ },
+ {
+ "epoch": 65.7129750982962,
+ "grad_norm": 0.20022697746753693,
+ "learning_rate": 0.0006,
+ "loss": 3.53619647026062,
+ "step": 4731
+ },
+ {
+ "epoch": 65.72695500218435,
+ "grad_norm": 0.20698072016239166,
+ "learning_rate": 0.0006,
+ "loss": 3.5179615020751953,
+ "step": 4732
+ },
+ {
+ "epoch": 65.74093490607252,
+ "grad_norm": 0.2297508418560028,
+ "learning_rate": 0.0006,
+ "loss": 3.5308024883270264,
+ "step": 4733
+ },
+ {
+ "epoch": 65.75491480996068,
+ "grad_norm": 0.227255716919899,
+ "learning_rate": 0.0006,
+ "loss": 3.5443387031555176,
+ "step": 4734
+ },
+ {
+ "epoch": 65.76889471384884,
+ "grad_norm": 0.21772262454032898,
+ "learning_rate": 0.0006,
+ "loss": 3.52345871925354,
+ "step": 4735
+ },
+ {
+ "epoch": 65.78287461773701,
+ "grad_norm": 0.22124525904655457,
+ "learning_rate": 0.0006,
+ "loss": 3.5262577533721924,
+ "step": 4736
+ },
+ {
+ "epoch": 65.79685452162516,
+ "grad_norm": 0.22992224991321564,
+ "learning_rate": 0.0006,
+ "loss": 3.531507730484009,
+ "step": 4737
+ },
+ {
+ "epoch": 65.81083442551332,
+ "grad_norm": 0.24775296449661255,
+ "learning_rate": 0.0006,
+ "loss": 3.4781999588012695,
+ "step": 4738
+ },
+ {
+ "epoch": 65.82481432940149,
+ "grad_norm": 0.24917690455913544,
+ "learning_rate": 0.0006,
+ "loss": 3.5157413482666016,
+ "step": 4739
+ },
+ {
+ "epoch": 65.83879423328965,
+ "grad_norm": 0.23374824225902557,
+ "learning_rate": 0.0006,
+ "loss": 3.536634683609009,
+ "step": 4740
+ },
+ {
+ "epoch": 65.8527741371778,
+ "grad_norm": 0.25592541694641113,
+ "learning_rate": 0.0006,
+ "loss": 3.5343942642211914,
+ "step": 4741
+ },
+ {
+ "epoch": 65.86675404106597,
+ "grad_norm": 0.2698819935321808,
+ "learning_rate": 0.0006,
+ "loss": 3.4906277656555176,
+ "step": 4742
+ },
+ {
+ "epoch": 65.88073394495413,
+ "grad_norm": 0.2175036370754242,
+ "learning_rate": 0.0006,
+ "loss": 3.506230354309082,
+ "step": 4743
+ },
+ {
+ "epoch": 65.89471384884229,
+ "grad_norm": 0.22451810538768768,
+ "learning_rate": 0.0006,
+ "loss": 3.5139262676239014,
+ "step": 4744
+ },
+ {
+ "epoch": 65.90869375273044,
+ "grad_norm": 0.24293720722198486,
+ "learning_rate": 0.0006,
+ "loss": 3.528148651123047,
+ "step": 4745
+ },
+ {
+ "epoch": 65.92267365661861,
+ "grad_norm": 0.2138707935810089,
+ "learning_rate": 0.0006,
+ "loss": 3.516911029815674,
+ "step": 4746
+ },
+ {
+ "epoch": 65.93665356050677,
+ "grad_norm": 0.2216160148382187,
+ "learning_rate": 0.0006,
+ "loss": 3.540201187133789,
+ "step": 4747
+ },
+ {
+ "epoch": 65.95063346439493,
+ "grad_norm": 0.2276899367570877,
+ "learning_rate": 0.0006,
+ "loss": 3.525435447692871,
+ "step": 4748
+ },
+ {
+ "epoch": 65.9646133682831,
+ "grad_norm": 0.2441754788160324,
+ "learning_rate": 0.0006,
+ "loss": 3.5337369441986084,
+ "step": 4749
+ },
+ {
+ "epoch": 65.97859327217125,
+ "grad_norm": 0.2364634871482849,
+ "learning_rate": 0.0006,
+ "loss": 3.5289382934570312,
+ "step": 4750
+ },
+ {
+ "epoch": 65.99257317605941,
+ "grad_norm": 0.2322802096605301,
+ "learning_rate": 0.0006,
+ "loss": 3.519960403442383,
+ "step": 4751
+ },
+ {
+ "epoch": 66.0,
+ "grad_norm": 0.28910940885543823,
+ "learning_rate": 0.0006,
+ "loss": 3.535785436630249,
+ "step": 4752
+ },
+ {
+ "epoch": 66.0,
+ "eval_loss": 3.9755074977874756,
+ "eval_runtime": 44.9956,
+ "eval_samples_per_second": 54.272,
+ "eval_steps_per_second": 3.4,
+ "step": 4752
+ },
+ {
+ "epoch": 66.01397990388816,
+ "grad_norm": 0.2833491861820221,
+ "learning_rate": 0.0006,
+ "loss": 3.4532885551452637,
+ "step": 4753
+ },
+ {
+ "epoch": 66.02795980777633,
+ "grad_norm": 0.31011638045310974,
+ "learning_rate": 0.0006,
+ "loss": 3.5164999961853027,
+ "step": 4754
+ },
+ {
+ "epoch": 66.04193971166448,
+ "grad_norm": 0.34583768248558044,
+ "learning_rate": 0.0006,
+ "loss": 3.463331937789917,
+ "step": 4755
+ },
+ {
+ "epoch": 66.05591961555264,
+ "grad_norm": 0.3586544990539551,
+ "learning_rate": 0.0006,
+ "loss": 3.4739010334014893,
+ "step": 4756
+ },
+ {
+ "epoch": 66.06989951944081,
+ "grad_norm": 0.32337963581085205,
+ "learning_rate": 0.0006,
+ "loss": 3.5309596061706543,
+ "step": 4757
+ },
+ {
+ "epoch": 66.08387942332897,
+ "grad_norm": 0.3091002404689789,
+ "learning_rate": 0.0006,
+ "loss": 3.479280471801758,
+ "step": 4758
+ },
+ {
+ "epoch": 66.09785932721712,
+ "grad_norm": 0.29722821712493896,
+ "learning_rate": 0.0006,
+ "loss": 3.52632999420166,
+ "step": 4759
+ },
+ {
+ "epoch": 66.1118392311053,
+ "grad_norm": 0.2636614739894867,
+ "learning_rate": 0.0006,
+ "loss": 3.4953694343566895,
+ "step": 4760
+ },
+ {
+ "epoch": 66.12581913499345,
+ "grad_norm": 0.2646677494049072,
+ "learning_rate": 0.0006,
+ "loss": 3.519223213195801,
+ "step": 4761
+ },
+ {
+ "epoch": 66.1397990388816,
+ "grad_norm": 0.26999902725219727,
+ "learning_rate": 0.0006,
+ "loss": 3.500627040863037,
+ "step": 4762
+ },
+ {
+ "epoch": 66.15377894276976,
+ "grad_norm": 0.26489800214767456,
+ "learning_rate": 0.0006,
+ "loss": 3.486992120742798,
+ "step": 4763
+ },
+ {
+ "epoch": 66.16775884665793,
+ "grad_norm": 0.23870280385017395,
+ "learning_rate": 0.0006,
+ "loss": 3.5312767028808594,
+ "step": 4764
+ },
+ {
+ "epoch": 66.18173875054609,
+ "grad_norm": 0.260374516248703,
+ "learning_rate": 0.0006,
+ "loss": 3.529757499694824,
+ "step": 4765
+ },
+ {
+ "epoch": 66.19571865443424,
+ "grad_norm": 0.22300437092781067,
+ "learning_rate": 0.0006,
+ "loss": 3.534423351287842,
+ "step": 4766
+ },
+ {
+ "epoch": 66.20969855832242,
+ "grad_norm": 0.22216713428497314,
+ "learning_rate": 0.0006,
+ "loss": 3.4944376945495605,
+ "step": 4767
+ },
+ {
+ "epoch": 66.22367846221057,
+ "grad_norm": 0.22038567066192627,
+ "learning_rate": 0.0006,
+ "loss": 3.500737190246582,
+ "step": 4768
+ },
+ {
+ "epoch": 66.23765836609873,
+ "grad_norm": 0.23068127036094666,
+ "learning_rate": 0.0006,
+ "loss": 3.486678123474121,
+ "step": 4769
+ },
+ {
+ "epoch": 66.2516382699869,
+ "grad_norm": 0.22809696197509766,
+ "learning_rate": 0.0006,
+ "loss": 3.49131441116333,
+ "step": 4770
+ },
+ {
+ "epoch": 66.26561817387505,
+ "grad_norm": 0.2096482366323471,
+ "learning_rate": 0.0006,
+ "loss": 3.462193012237549,
+ "step": 4771
+ },
+ {
+ "epoch": 66.27959807776321,
+ "grad_norm": 0.20821219682693481,
+ "learning_rate": 0.0006,
+ "loss": 3.482736110687256,
+ "step": 4772
+ },
+ {
+ "epoch": 66.29357798165138,
+ "grad_norm": 0.20735417306423187,
+ "learning_rate": 0.0006,
+ "loss": 3.4810829162597656,
+ "step": 4773
+ },
+ {
+ "epoch": 66.30755788553954,
+ "grad_norm": 0.21598318219184875,
+ "learning_rate": 0.0006,
+ "loss": 3.5151000022888184,
+ "step": 4774
+ },
+ {
+ "epoch": 66.3215377894277,
+ "grad_norm": 0.20589035749435425,
+ "learning_rate": 0.0006,
+ "loss": 3.4938106536865234,
+ "step": 4775
+ },
+ {
+ "epoch": 66.33551769331586,
+ "grad_norm": 0.22494125366210938,
+ "learning_rate": 0.0006,
+ "loss": 3.4739134311676025,
+ "step": 4776
+ },
+ {
+ "epoch": 66.34949759720402,
+ "grad_norm": 0.24715618789196014,
+ "learning_rate": 0.0006,
+ "loss": 3.492598295211792,
+ "step": 4777
+ },
+ {
+ "epoch": 66.36347750109218,
+ "grad_norm": 0.26689210534095764,
+ "learning_rate": 0.0006,
+ "loss": 3.5183334350585938,
+ "step": 4778
+ },
+ {
+ "epoch": 66.37745740498035,
+ "grad_norm": 0.29018405079841614,
+ "learning_rate": 0.0006,
+ "loss": 3.4874320030212402,
+ "step": 4779
+ },
+ {
+ "epoch": 66.3914373088685,
+ "grad_norm": 0.2511773109436035,
+ "learning_rate": 0.0006,
+ "loss": 3.5105361938476562,
+ "step": 4780
+ },
+ {
+ "epoch": 66.40541721275666,
+ "grad_norm": 0.20808005332946777,
+ "learning_rate": 0.0006,
+ "loss": 3.4932327270507812,
+ "step": 4781
+ },
+ {
+ "epoch": 66.41939711664482,
+ "grad_norm": 0.21036715805530548,
+ "learning_rate": 0.0006,
+ "loss": 3.5223588943481445,
+ "step": 4782
+ },
+ {
+ "epoch": 66.43337702053299,
+ "grad_norm": 0.2151600569486618,
+ "learning_rate": 0.0006,
+ "loss": 3.491854190826416,
+ "step": 4783
+ },
+ {
+ "epoch": 66.44735692442114,
+ "grad_norm": 0.23702189326286316,
+ "learning_rate": 0.0006,
+ "loss": 3.4869368076324463,
+ "step": 4784
+ },
+ {
+ "epoch": 66.4613368283093,
+ "grad_norm": 0.23089149594306946,
+ "learning_rate": 0.0006,
+ "loss": 3.5014419555664062,
+ "step": 4785
+ },
+ {
+ "epoch": 66.47531673219747,
+ "grad_norm": 0.25527265667915344,
+ "learning_rate": 0.0006,
+ "loss": 3.5148048400878906,
+ "step": 4786
+ },
+ {
+ "epoch": 66.48929663608563,
+ "grad_norm": 0.2308386117219925,
+ "learning_rate": 0.0006,
+ "loss": 3.5196022987365723,
+ "step": 4787
+ },
+ {
+ "epoch": 66.50327653997378,
+ "grad_norm": 0.23467418551445007,
+ "learning_rate": 0.0006,
+ "loss": 3.478280544281006,
+ "step": 4788
+ },
+ {
+ "epoch": 66.51725644386195,
+ "grad_norm": 0.23607908189296722,
+ "learning_rate": 0.0006,
+ "loss": 3.4826481342315674,
+ "step": 4789
+ },
+ {
+ "epoch": 66.53123634775011,
+ "grad_norm": 0.255309522151947,
+ "learning_rate": 0.0006,
+ "loss": 3.498870849609375,
+ "step": 4790
+ },
+ {
+ "epoch": 66.54521625163827,
+ "grad_norm": 0.29246363043785095,
+ "learning_rate": 0.0006,
+ "loss": 3.544440269470215,
+ "step": 4791
+ },
+ {
+ "epoch": 66.55919615552644,
+ "grad_norm": 0.2658552825450897,
+ "learning_rate": 0.0006,
+ "loss": 3.4844512939453125,
+ "step": 4792
+ },
+ {
+ "epoch": 66.57317605941459,
+ "grad_norm": 0.23498542606830597,
+ "learning_rate": 0.0006,
+ "loss": 3.5411434173583984,
+ "step": 4793
+ },
+ {
+ "epoch": 66.58715596330275,
+ "grad_norm": 0.2616438567638397,
+ "learning_rate": 0.0006,
+ "loss": 3.501821994781494,
+ "step": 4794
+ },
+ {
+ "epoch": 66.60113586719092,
+ "grad_norm": 0.2577981650829315,
+ "learning_rate": 0.0006,
+ "loss": 3.519040584564209,
+ "step": 4795
+ },
+ {
+ "epoch": 66.61511577107908,
+ "grad_norm": 0.25896304845809937,
+ "learning_rate": 0.0006,
+ "loss": 3.514458656311035,
+ "step": 4796
+ },
+ {
+ "epoch": 66.62909567496723,
+ "grad_norm": 0.26136472821235657,
+ "learning_rate": 0.0006,
+ "loss": 3.5054283142089844,
+ "step": 4797
+ },
+ {
+ "epoch": 66.6430755788554,
+ "grad_norm": 0.2134191244840622,
+ "learning_rate": 0.0006,
+ "loss": 3.551358222961426,
+ "step": 4798
+ },
+ {
+ "epoch": 66.65705548274356,
+ "grad_norm": 0.20154543220996857,
+ "learning_rate": 0.0006,
+ "loss": 3.5363516807556152,
+ "step": 4799
+ },
+ {
+ "epoch": 66.67103538663171,
+ "grad_norm": 0.20807082951068878,
+ "learning_rate": 0.0006,
+ "loss": 3.4861817359924316,
+ "step": 4800
+ },
+ {
+ "epoch": 66.68501529051987,
+ "grad_norm": 0.22268050909042358,
+ "learning_rate": 0.0006,
+ "loss": 3.5229034423828125,
+ "step": 4801
+ },
+ {
+ "epoch": 66.69899519440804,
+ "grad_norm": 0.21031907200813293,
+ "learning_rate": 0.0006,
+ "loss": 3.499587059020996,
+ "step": 4802
+ },
+ {
+ "epoch": 66.7129750982962,
+ "grad_norm": 0.207321435213089,
+ "learning_rate": 0.0006,
+ "loss": 3.5246481895446777,
+ "step": 4803
+ },
+ {
+ "epoch": 66.72695500218435,
+ "grad_norm": 0.21961352229118347,
+ "learning_rate": 0.0006,
+ "loss": 3.5126147270202637,
+ "step": 4804
+ },
+ {
+ "epoch": 66.74093490607252,
+ "grad_norm": 0.2144167572259903,
+ "learning_rate": 0.0006,
+ "loss": 3.5319013595581055,
+ "step": 4805
+ },
+ {
+ "epoch": 66.75491480996068,
+ "grad_norm": 0.19109441339969635,
+ "learning_rate": 0.0006,
+ "loss": 3.5124895572662354,
+ "step": 4806
+ },
+ {
+ "epoch": 66.76889471384884,
+ "grad_norm": 0.20463025569915771,
+ "learning_rate": 0.0006,
+ "loss": 3.5368666648864746,
+ "step": 4807
+ },
+ {
+ "epoch": 66.78287461773701,
+ "grad_norm": 0.20978771150112152,
+ "learning_rate": 0.0006,
+ "loss": 3.5166687965393066,
+ "step": 4808
+ },
+ {
+ "epoch": 66.79685452162516,
+ "grad_norm": 0.2258925437927246,
+ "learning_rate": 0.0006,
+ "loss": 3.532341957092285,
+ "step": 4809
+ },
+ {
+ "epoch": 66.81083442551332,
+ "grad_norm": 0.21758350729942322,
+ "learning_rate": 0.0006,
+ "loss": 3.5155858993530273,
+ "step": 4810
+ },
+ {
+ "epoch": 66.82481432940149,
+ "grad_norm": 0.20124484598636627,
+ "learning_rate": 0.0006,
+ "loss": 3.491522789001465,
+ "step": 4811
+ },
+ {
+ "epoch": 66.83879423328965,
+ "grad_norm": 0.21627238392829895,
+ "learning_rate": 0.0006,
+ "loss": 3.5303220748901367,
+ "step": 4812
+ },
+ {
+ "epoch": 66.8527741371778,
+ "grad_norm": 0.21125555038452148,
+ "learning_rate": 0.0006,
+ "loss": 3.535466194152832,
+ "step": 4813
+ },
+ {
+ "epoch": 66.86675404106597,
+ "grad_norm": 0.2247028350830078,
+ "learning_rate": 0.0006,
+ "loss": 3.51188325881958,
+ "step": 4814
+ },
+ {
+ "epoch": 66.88073394495413,
+ "grad_norm": 0.21800914406776428,
+ "learning_rate": 0.0006,
+ "loss": 3.5084712505340576,
+ "step": 4815
+ },
+ {
+ "epoch": 66.89471384884229,
+ "grad_norm": 0.2118908166885376,
+ "learning_rate": 0.0006,
+ "loss": 3.5099692344665527,
+ "step": 4816
+ },
+ {
+ "epoch": 66.90869375273044,
+ "grad_norm": 0.22638460993766785,
+ "learning_rate": 0.0006,
+ "loss": 3.5099596977233887,
+ "step": 4817
+ },
+ {
+ "epoch": 66.92267365661861,
+ "grad_norm": 0.1987311840057373,
+ "learning_rate": 0.0006,
+ "loss": 3.5497078895568848,
+ "step": 4818
+ },
+ {
+ "epoch": 66.93665356050677,
+ "grad_norm": 0.21048952639102936,
+ "learning_rate": 0.0006,
+ "loss": 3.524364948272705,
+ "step": 4819
+ },
+ {
+ "epoch": 66.95063346439493,
+ "grad_norm": 0.21481701731681824,
+ "learning_rate": 0.0006,
+ "loss": 3.5121915340423584,
+ "step": 4820
+ },
+ {
+ "epoch": 66.9646133682831,
+ "grad_norm": 0.22060725092887878,
+ "learning_rate": 0.0006,
+ "loss": 3.5288822650909424,
+ "step": 4821
+ },
+ {
+ "epoch": 66.97859327217125,
+ "grad_norm": 0.22192992269992828,
+ "learning_rate": 0.0006,
+ "loss": 3.504401206970215,
+ "step": 4822
+ },
+ {
+ "epoch": 66.99257317605941,
+ "grad_norm": 0.21677598357200623,
+ "learning_rate": 0.0006,
+ "loss": 3.5447967052459717,
+ "step": 4823
+ },
+ {
+ "epoch": 67.0,
+ "grad_norm": 0.24961385130882263,
+ "learning_rate": 0.0006,
+ "loss": 3.4890012741088867,
+ "step": 4824
+ },
+ {
+ "epoch": 67.0,
+ "eval_loss": 3.9784040451049805,
+ "eval_runtime": 45.0843,
+ "eval_samples_per_second": 54.165,
+ "eval_steps_per_second": 3.394,
+ "step": 4824
+ },
+ {
+ "epoch": 67.01397990388816,
+ "grad_norm": 0.22992873191833496,
+ "learning_rate": 0.0006,
+ "loss": 3.470973491668701,
+ "step": 4825
+ },
+ {
+ "epoch": 67.02795980777633,
+ "grad_norm": 0.2189949005842209,
+ "learning_rate": 0.0006,
+ "loss": 3.4956774711608887,
+ "step": 4826
+ },
+ {
+ "epoch": 67.04193971166448,
+ "grad_norm": 0.22506096959114075,
+ "learning_rate": 0.0006,
+ "loss": 3.448911190032959,
+ "step": 4827
+ },
+ {
+ "epoch": 67.05591961555264,
+ "grad_norm": 0.2447187304496765,
+ "learning_rate": 0.0006,
+ "loss": 3.465512275695801,
+ "step": 4828
+ },
+ {
+ "epoch": 67.06989951944081,
+ "grad_norm": 0.27052751183509827,
+ "learning_rate": 0.0006,
+ "loss": 3.493760824203491,
+ "step": 4829
+ },
+ {
+ "epoch": 67.08387942332897,
+ "grad_norm": 0.29693296551704407,
+ "learning_rate": 0.0006,
+ "loss": 3.4922988414764404,
+ "step": 4830
+ },
+ {
+ "epoch": 67.09785932721712,
+ "grad_norm": 0.27461376786231995,
+ "learning_rate": 0.0006,
+ "loss": 3.4782471656799316,
+ "step": 4831
+ },
+ {
+ "epoch": 67.1118392311053,
+ "grad_norm": 0.21409225463867188,
+ "learning_rate": 0.0006,
+ "loss": 3.4636545181274414,
+ "step": 4832
+ },
+ {
+ "epoch": 67.12581913499345,
+ "grad_norm": 0.24362294375896454,
+ "learning_rate": 0.0006,
+ "loss": 3.4836316108703613,
+ "step": 4833
+ },
+ {
+ "epoch": 67.1397990388816,
+ "grad_norm": 0.3237941265106201,
+ "learning_rate": 0.0006,
+ "loss": 3.4853315353393555,
+ "step": 4834
+ },
+ {
+ "epoch": 67.15377894276976,
+ "grad_norm": 0.3138698935508728,
+ "learning_rate": 0.0006,
+ "loss": 3.5045557022094727,
+ "step": 4835
+ },
+ {
+ "epoch": 67.16775884665793,
+ "grad_norm": 0.24102728068828583,
+ "learning_rate": 0.0006,
+ "loss": 3.450237512588501,
+ "step": 4836
+ },
+ {
+ "epoch": 67.18173875054609,
+ "grad_norm": 0.22504228353500366,
+ "learning_rate": 0.0006,
+ "loss": 3.5141711235046387,
+ "step": 4837
+ },
+ {
+ "epoch": 67.19571865443424,
+ "grad_norm": 0.2226196974515915,
+ "learning_rate": 0.0006,
+ "loss": 3.4973597526550293,
+ "step": 4838
+ },
+ {
+ "epoch": 67.20969855832242,
+ "grad_norm": 0.23295332491397858,
+ "learning_rate": 0.0006,
+ "loss": 3.455085277557373,
+ "step": 4839
+ },
+ {
+ "epoch": 67.22367846221057,
+ "grad_norm": 0.24799001216888428,
+ "learning_rate": 0.0006,
+ "loss": 3.5016517639160156,
+ "step": 4840
+ },
+ {
+ "epoch": 67.23765836609873,
+ "grad_norm": 0.2431265115737915,
+ "learning_rate": 0.0006,
+ "loss": 3.5138516426086426,
+ "step": 4841
+ },
+ {
+ "epoch": 67.2516382699869,
+ "grad_norm": 0.22402037680149078,
+ "learning_rate": 0.0006,
+ "loss": 3.5154635906219482,
+ "step": 4842
+ },
+ {
+ "epoch": 67.26561817387505,
+ "grad_norm": 0.2097088098526001,
+ "learning_rate": 0.0006,
+ "loss": 3.512531280517578,
+ "step": 4843
+ },
+ {
+ "epoch": 67.27959807776321,
+ "grad_norm": 0.21303699910640717,
+ "learning_rate": 0.0006,
+ "loss": 3.489511728286743,
+ "step": 4844
+ },
+ {
+ "epoch": 67.29357798165138,
+ "grad_norm": 0.2164260894060135,
+ "learning_rate": 0.0006,
+ "loss": 3.521756172180176,
+ "step": 4845
+ },
+ {
+ "epoch": 67.30755788553954,
+ "grad_norm": 0.2179967612028122,
+ "learning_rate": 0.0006,
+ "loss": 3.4991297721862793,
+ "step": 4846
+ },
+ {
+ "epoch": 67.3215377894277,
+ "grad_norm": 0.21892501413822174,
+ "learning_rate": 0.0006,
+ "loss": 3.475011110305786,
+ "step": 4847
+ },
+ {
+ "epoch": 67.33551769331586,
+ "grad_norm": 0.2372686117887497,
+ "learning_rate": 0.0006,
+ "loss": 3.49537992477417,
+ "step": 4848
+ },
+ {
+ "epoch": 67.34949759720402,
+ "grad_norm": 0.24897949397563934,
+ "learning_rate": 0.0006,
+ "loss": 3.4762938022613525,
+ "step": 4849
+ },
+ {
+ "epoch": 67.36347750109218,
+ "grad_norm": 0.24987933039665222,
+ "learning_rate": 0.0006,
+ "loss": 3.511708974838257,
+ "step": 4850
+ },
+ {
+ "epoch": 67.37745740498035,
+ "grad_norm": 0.24062976241111755,
+ "learning_rate": 0.0006,
+ "loss": 3.4955873489379883,
+ "step": 4851
+ },
+ {
+ "epoch": 67.3914373088685,
+ "grad_norm": 0.2277272790670395,
+ "learning_rate": 0.0006,
+ "loss": 3.5036606788635254,
+ "step": 4852
+ },
+ {
+ "epoch": 67.40541721275666,
+ "grad_norm": 0.23996487259864807,
+ "learning_rate": 0.0006,
+ "loss": 3.515568971633911,
+ "step": 4853
+ },
+ {
+ "epoch": 67.41939711664482,
+ "grad_norm": 0.23224318027496338,
+ "learning_rate": 0.0006,
+ "loss": 3.4915125370025635,
+ "step": 4854
+ },
+ {
+ "epoch": 67.43337702053299,
+ "grad_norm": 0.21011298894882202,
+ "learning_rate": 0.0006,
+ "loss": 3.5076327323913574,
+ "step": 4855
+ },
+ {
+ "epoch": 67.44735692442114,
+ "grad_norm": 0.21975480020046234,
+ "learning_rate": 0.0006,
+ "loss": 3.4929163455963135,
+ "step": 4856
+ },
+ {
+ "epoch": 67.4613368283093,
+ "grad_norm": 0.21966299414634705,
+ "learning_rate": 0.0006,
+ "loss": 3.50154447555542,
+ "step": 4857
+ },
+ {
+ "epoch": 67.47531673219747,
+ "grad_norm": 0.2167058289051056,
+ "learning_rate": 0.0006,
+ "loss": 3.4866533279418945,
+ "step": 4858
+ },
+ {
+ "epoch": 67.48929663608563,
+ "grad_norm": 0.2072296291589737,
+ "learning_rate": 0.0006,
+ "loss": 3.506241798400879,
+ "step": 4859
+ },
+ {
+ "epoch": 67.50327653997378,
+ "grad_norm": 0.2358800321817398,
+ "learning_rate": 0.0006,
+ "loss": 3.51871919631958,
+ "step": 4860
+ },
+ {
+ "epoch": 67.51725644386195,
+ "grad_norm": 0.2841838598251343,
+ "learning_rate": 0.0006,
+ "loss": 3.531181812286377,
+ "step": 4861
+ },
+ {
+ "epoch": 67.53123634775011,
+ "grad_norm": 0.2744826078414917,
+ "learning_rate": 0.0006,
+ "loss": 3.4916810989379883,
+ "step": 4862
+ },
+ {
+ "epoch": 67.54521625163827,
+ "grad_norm": 0.229517862200737,
+ "learning_rate": 0.0006,
+ "loss": 3.522495746612549,
+ "step": 4863
+ },
+ {
+ "epoch": 67.55919615552644,
+ "grad_norm": 0.22933268547058105,
+ "learning_rate": 0.0006,
+ "loss": 3.522249698638916,
+ "step": 4864
+ },
+ {
+ "epoch": 67.57317605941459,
+ "grad_norm": 0.2578641176223755,
+ "learning_rate": 0.0006,
+ "loss": 3.497955799102783,
+ "step": 4865
+ },
+ {
+ "epoch": 67.58715596330275,
+ "grad_norm": 0.26098695397377014,
+ "learning_rate": 0.0006,
+ "loss": 3.508647918701172,
+ "step": 4866
+ },
+ {
+ "epoch": 67.60113586719092,
+ "grad_norm": 0.26429283618927,
+ "learning_rate": 0.0006,
+ "loss": 3.504948139190674,
+ "step": 4867
+ },
+ {
+ "epoch": 67.61511577107908,
+ "grad_norm": 0.2604367136955261,
+ "learning_rate": 0.0006,
+ "loss": 3.529656410217285,
+ "step": 4868
+ },
+ {
+ "epoch": 67.62909567496723,
+ "grad_norm": 0.26351016759872437,
+ "learning_rate": 0.0006,
+ "loss": 3.497729778289795,
+ "step": 4869
+ },
+ {
+ "epoch": 67.6430755788554,
+ "grad_norm": 0.23902031779289246,
+ "learning_rate": 0.0006,
+ "loss": 3.5174601078033447,
+ "step": 4870
+ },
+ {
+ "epoch": 67.65705548274356,
+ "grad_norm": 0.2439061552286148,
+ "learning_rate": 0.0006,
+ "loss": 3.472304344177246,
+ "step": 4871
+ },
+ {
+ "epoch": 67.67103538663171,
+ "grad_norm": 0.28729668259620667,
+ "learning_rate": 0.0006,
+ "loss": 3.4945883750915527,
+ "step": 4872
+ },
+ {
+ "epoch": 67.68501529051987,
+ "grad_norm": 0.2690763771533966,
+ "learning_rate": 0.0006,
+ "loss": 3.524843215942383,
+ "step": 4873
+ },
+ {
+ "epoch": 67.69899519440804,
+ "grad_norm": 0.24424311518669128,
+ "learning_rate": 0.0006,
+ "loss": 3.5337445735931396,
+ "step": 4874
+ },
+ {
+ "epoch": 67.7129750982962,
+ "grad_norm": 0.25736868381500244,
+ "learning_rate": 0.0006,
+ "loss": 3.51664400100708,
+ "step": 4875
+ },
+ {
+ "epoch": 67.72695500218435,
+ "grad_norm": 0.24504248797893524,
+ "learning_rate": 0.0006,
+ "loss": 3.5089268684387207,
+ "step": 4876
+ },
+ {
+ "epoch": 67.74093490607252,
+ "grad_norm": 0.24296091496944427,
+ "learning_rate": 0.0006,
+ "loss": 3.5506460666656494,
+ "step": 4877
+ },
+ {
+ "epoch": 67.75491480996068,
+ "grad_norm": 0.24984019994735718,
+ "learning_rate": 0.0006,
+ "loss": 3.5290684700012207,
+ "step": 4878
+ },
+ {
+ "epoch": 67.76889471384884,
+ "grad_norm": 0.23878677189350128,
+ "learning_rate": 0.0006,
+ "loss": 3.522343635559082,
+ "step": 4879
+ },
+ {
+ "epoch": 67.78287461773701,
+ "grad_norm": 0.2275245040655136,
+ "learning_rate": 0.0006,
+ "loss": 3.5218796730041504,
+ "step": 4880
+ },
+ {
+ "epoch": 67.79685452162516,
+ "grad_norm": 0.21045760810375214,
+ "learning_rate": 0.0006,
+ "loss": 3.512430191040039,
+ "step": 4881
+ },
+ {
+ "epoch": 67.81083442551332,
+ "grad_norm": 0.21902696788311005,
+ "learning_rate": 0.0006,
+ "loss": 3.537611484527588,
+ "step": 4882
+ },
+ {
+ "epoch": 67.82481432940149,
+ "grad_norm": 0.20757564902305603,
+ "learning_rate": 0.0006,
+ "loss": 3.470278263092041,
+ "step": 4883
+ },
+ {
+ "epoch": 67.83879423328965,
+ "grad_norm": 0.22352434694766998,
+ "learning_rate": 0.0006,
+ "loss": 3.4816718101501465,
+ "step": 4884
+ },
+ {
+ "epoch": 67.8527741371778,
+ "grad_norm": 0.20459680259227753,
+ "learning_rate": 0.0006,
+ "loss": 3.508671998977661,
+ "step": 4885
+ },
+ {
+ "epoch": 67.86675404106597,
+ "grad_norm": 0.20641672611236572,
+ "learning_rate": 0.0006,
+ "loss": 3.500471591949463,
+ "step": 4886
+ },
+ {
+ "epoch": 67.88073394495413,
+ "grad_norm": 0.20340596139431,
+ "learning_rate": 0.0006,
+ "loss": 3.5282673835754395,
+ "step": 4887
+ },
+ {
+ "epoch": 67.89471384884229,
+ "grad_norm": 0.20768426358699799,
+ "learning_rate": 0.0006,
+ "loss": 3.528446912765503,
+ "step": 4888
+ },
+ {
+ "epoch": 67.90869375273044,
+ "grad_norm": 0.19998659193515778,
+ "learning_rate": 0.0006,
+ "loss": 3.501742124557495,
+ "step": 4889
+ },
+ {
+ "epoch": 67.92267365661861,
+ "grad_norm": 0.20472751557826996,
+ "learning_rate": 0.0006,
+ "loss": 3.510523796081543,
+ "step": 4890
+ },
+ {
+ "epoch": 67.93665356050677,
+ "grad_norm": 0.21528398990631104,
+ "learning_rate": 0.0006,
+ "loss": 3.529409170150757,
+ "step": 4891
+ },
+ {
+ "epoch": 67.95063346439493,
+ "grad_norm": 0.19671283662319183,
+ "learning_rate": 0.0006,
+ "loss": 3.5512051582336426,
+ "step": 4892
+ },
+ {
+ "epoch": 67.9646133682831,
+ "grad_norm": 0.20629945397377014,
+ "learning_rate": 0.0006,
+ "loss": 3.5127525329589844,
+ "step": 4893
+ },
+ {
+ "epoch": 67.97859327217125,
+ "grad_norm": 0.2121579945087433,
+ "learning_rate": 0.0006,
+ "loss": 3.5242156982421875,
+ "step": 4894
+ },
+ {
+ "epoch": 67.99257317605941,
+ "grad_norm": 0.20770777761936188,
+ "learning_rate": 0.0006,
+ "loss": 3.5094361305236816,
+ "step": 4895
+ },
+ {
+ "epoch": 68.0,
+ "grad_norm": 0.2619984447956085,
+ "learning_rate": 0.0006,
+ "loss": 3.491684675216675,
+ "step": 4896
+ },
+ {
+ "epoch": 68.0,
+ "eval_loss": 3.97202730178833,
+ "eval_runtime": 44.2471,
+ "eval_samples_per_second": 55.19,
+ "eval_steps_per_second": 3.458,
+ "step": 4896
+ },
+ {
+ "epoch": 68.01397990388816,
+ "grad_norm": 0.25237807631492615,
+ "learning_rate": 0.0006,
+ "loss": 3.4720845222473145,
+ "step": 4897
+ },
+ {
+ "epoch": 68.02795980777633,
+ "grad_norm": 0.26686927676200867,
+ "learning_rate": 0.0006,
+ "loss": 3.4825453758239746,
+ "step": 4898
+ },
+ {
+ "epoch": 68.04193971166448,
+ "grad_norm": 0.2826477885246277,
+ "learning_rate": 0.0006,
+ "loss": 3.489805221557617,
+ "step": 4899
+ },
+ {
+ "epoch": 68.05591961555264,
+ "grad_norm": 0.291363000869751,
+ "learning_rate": 0.0006,
+ "loss": 3.464585304260254,
+ "step": 4900
+ },
+ {
+ "epoch": 68.06989951944081,
+ "grad_norm": 0.2645387649536133,
+ "learning_rate": 0.0006,
+ "loss": 3.4891953468322754,
+ "step": 4901
+ },
+ {
+ "epoch": 68.08387942332897,
+ "grad_norm": 0.2398659586906433,
+ "learning_rate": 0.0006,
+ "loss": 3.474371910095215,
+ "step": 4902
+ },
+ {
+ "epoch": 68.09785932721712,
+ "grad_norm": 0.23359309136867523,
+ "learning_rate": 0.0006,
+ "loss": 3.5011367797851562,
+ "step": 4903
+ },
+ {
+ "epoch": 68.1118392311053,
+ "grad_norm": 0.235616534948349,
+ "learning_rate": 0.0006,
+ "loss": 3.472562551498413,
+ "step": 4904
+ },
+ {
+ "epoch": 68.12581913499345,
+ "grad_norm": 0.25396600365638733,
+ "learning_rate": 0.0006,
+ "loss": 3.484182834625244,
+ "step": 4905
+ },
+ {
+ "epoch": 68.1397990388816,
+ "grad_norm": 0.2668958604335785,
+ "learning_rate": 0.0006,
+ "loss": 3.4625918865203857,
+ "step": 4906
+ },
+ {
+ "epoch": 68.15377894276976,
+ "grad_norm": 0.2608959674835205,
+ "learning_rate": 0.0006,
+ "loss": 3.4769415855407715,
+ "step": 4907
+ },
+ {
+ "epoch": 68.16775884665793,
+ "grad_norm": 0.2817389667034149,
+ "learning_rate": 0.0006,
+ "loss": 3.4722979068756104,
+ "step": 4908
+ },
+ {
+ "epoch": 68.18173875054609,
+ "grad_norm": 0.24425546824932098,
+ "learning_rate": 0.0006,
+ "loss": 3.4710354804992676,
+ "step": 4909
+ },
+ {
+ "epoch": 68.19571865443424,
+ "grad_norm": 0.2355373501777649,
+ "learning_rate": 0.0006,
+ "loss": 3.475369453430176,
+ "step": 4910
+ },
+ {
+ "epoch": 68.20969855832242,
+ "grad_norm": 0.23627427220344543,
+ "learning_rate": 0.0006,
+ "loss": 3.50154447555542,
+ "step": 4911
+ },
+ {
+ "epoch": 68.22367846221057,
+ "grad_norm": 0.21174706518650055,
+ "learning_rate": 0.0006,
+ "loss": 3.5018253326416016,
+ "step": 4912
+ },
+ {
+ "epoch": 68.23765836609873,
+ "grad_norm": 0.2101593017578125,
+ "learning_rate": 0.0006,
+ "loss": 3.4931211471557617,
+ "step": 4913
+ },
+ {
+ "epoch": 68.2516382699869,
+ "grad_norm": 0.21808475255966187,
+ "learning_rate": 0.0006,
+ "loss": 3.5047576427459717,
+ "step": 4914
+ },
+ {
+ "epoch": 68.26561817387505,
+ "grad_norm": 0.2354060262441635,
+ "learning_rate": 0.0006,
+ "loss": 3.471801996231079,
+ "step": 4915
+ },
+ {
+ "epoch": 68.27959807776321,
+ "grad_norm": 0.2839724123477936,
+ "learning_rate": 0.0006,
+ "loss": 3.4861397743225098,
+ "step": 4916
+ },
+ {
+ "epoch": 68.29357798165138,
+ "grad_norm": 0.2884398102760315,
+ "learning_rate": 0.0006,
+ "loss": 3.497713088989258,
+ "step": 4917
+ },
+ {
+ "epoch": 68.30755788553954,
+ "grad_norm": 0.24654951691627502,
+ "learning_rate": 0.0006,
+ "loss": 3.4795613288879395,
+ "step": 4918
+ },
+ {
+ "epoch": 68.3215377894277,
+ "grad_norm": 0.22197365760803223,
+ "learning_rate": 0.0006,
+ "loss": 3.495490550994873,
+ "step": 4919
+ },
+ {
+ "epoch": 68.33551769331586,
+ "grad_norm": 0.22666935622692108,
+ "learning_rate": 0.0006,
+ "loss": 3.4859418869018555,
+ "step": 4920
+ },
+ {
+ "epoch": 68.34949759720402,
+ "grad_norm": 0.22135236859321594,
+ "learning_rate": 0.0006,
+ "loss": 3.475436210632324,
+ "step": 4921
+ },
+ {
+ "epoch": 68.36347750109218,
+ "grad_norm": 0.28992167115211487,
+ "learning_rate": 0.0006,
+ "loss": 3.5220274925231934,
+ "step": 4922
+ },
+ {
+ "epoch": 68.37745740498035,
+ "grad_norm": 0.296501100063324,
+ "learning_rate": 0.0006,
+ "loss": 3.4783244132995605,
+ "step": 4923
+ },
+ {
+ "epoch": 68.3914373088685,
+ "grad_norm": 0.24111351370811462,
+ "learning_rate": 0.0006,
+ "loss": 3.4972972869873047,
+ "step": 4924
+ },
+ {
+ "epoch": 68.40541721275666,
+ "grad_norm": 0.22319315373897552,
+ "learning_rate": 0.0006,
+ "loss": 3.517050266265869,
+ "step": 4925
+ },
+ {
+ "epoch": 68.41939711664482,
+ "grad_norm": 0.20984329283237457,
+ "learning_rate": 0.0006,
+ "loss": 3.5097880363464355,
+ "step": 4926
+ },
+ {
+ "epoch": 68.43337702053299,
+ "grad_norm": 0.2221212387084961,
+ "learning_rate": 0.0006,
+ "loss": 3.4824156761169434,
+ "step": 4927
+ },
+ {
+ "epoch": 68.44735692442114,
+ "grad_norm": 0.23731078207492828,
+ "learning_rate": 0.0006,
+ "loss": 3.5319526195526123,
+ "step": 4928
+ },
+ {
+ "epoch": 68.4613368283093,
+ "grad_norm": 0.233421191573143,
+ "learning_rate": 0.0006,
+ "loss": 3.4952187538146973,
+ "step": 4929
+ },
+ {
+ "epoch": 68.47531673219747,
+ "grad_norm": 0.2320558875799179,
+ "learning_rate": 0.0006,
+ "loss": 3.5152385234832764,
+ "step": 4930
+ },
+ {
+ "epoch": 68.48929663608563,
+ "grad_norm": 0.21786290407180786,
+ "learning_rate": 0.0006,
+ "loss": 3.4857373237609863,
+ "step": 4931
+ },
+ {
+ "epoch": 68.50327653997378,
+ "grad_norm": 0.20560047030448914,
+ "learning_rate": 0.0006,
+ "loss": 3.487344264984131,
+ "step": 4932
+ },
+ {
+ "epoch": 68.51725644386195,
+ "grad_norm": 0.2326865941286087,
+ "learning_rate": 0.0006,
+ "loss": 3.5202066898345947,
+ "step": 4933
+ },
+ {
+ "epoch": 68.53123634775011,
+ "grad_norm": 0.2338377833366394,
+ "learning_rate": 0.0006,
+ "loss": 3.4967358112335205,
+ "step": 4934
+ },
+ {
+ "epoch": 68.54521625163827,
+ "grad_norm": 0.22698800265789032,
+ "learning_rate": 0.0006,
+ "loss": 3.484452724456787,
+ "step": 4935
+ },
+ {
+ "epoch": 68.55919615552644,
+ "grad_norm": 0.21141181886196136,
+ "learning_rate": 0.0006,
+ "loss": 3.4950156211853027,
+ "step": 4936
+ },
+ {
+ "epoch": 68.57317605941459,
+ "grad_norm": 0.22393199801445007,
+ "learning_rate": 0.0006,
+ "loss": 3.4950199127197266,
+ "step": 4937
+ },
+ {
+ "epoch": 68.58715596330275,
+ "grad_norm": 0.22276045382022858,
+ "learning_rate": 0.0006,
+ "loss": 3.5180115699768066,
+ "step": 4938
+ },
+ {
+ "epoch": 68.60113586719092,
+ "grad_norm": 0.22738748788833618,
+ "learning_rate": 0.0006,
+ "loss": 3.5053911209106445,
+ "step": 4939
+ },
+ {
+ "epoch": 68.61511577107908,
+ "grad_norm": 0.21496275067329407,
+ "learning_rate": 0.0006,
+ "loss": 3.5315306186676025,
+ "step": 4940
+ },
+ {
+ "epoch": 68.62909567496723,
+ "grad_norm": 0.20695674419403076,
+ "learning_rate": 0.0006,
+ "loss": 3.514780044555664,
+ "step": 4941
+ },
+ {
+ "epoch": 68.6430755788554,
+ "grad_norm": 0.22777840495109558,
+ "learning_rate": 0.0006,
+ "loss": 3.5249099731445312,
+ "step": 4942
+ },
+ {
+ "epoch": 68.65705548274356,
+ "grad_norm": 0.26664453744888306,
+ "learning_rate": 0.0006,
+ "loss": 3.4763400554656982,
+ "step": 4943
+ },
+ {
+ "epoch": 68.67103538663171,
+ "grad_norm": 0.3005792498588562,
+ "learning_rate": 0.0006,
+ "loss": 3.4936861991882324,
+ "step": 4944
+ },
+ {
+ "epoch": 68.68501529051987,
+ "grad_norm": 0.2860395908355713,
+ "learning_rate": 0.0006,
+ "loss": 3.4994754791259766,
+ "step": 4945
+ },
+ {
+ "epoch": 68.69899519440804,
+ "grad_norm": 0.21164822578430176,
+ "learning_rate": 0.0006,
+ "loss": 3.5011136531829834,
+ "step": 4946
+ },
+ {
+ "epoch": 68.7129750982962,
+ "grad_norm": 0.2122834324836731,
+ "learning_rate": 0.0006,
+ "loss": 3.52018404006958,
+ "step": 4947
+ },
+ {
+ "epoch": 68.72695500218435,
+ "grad_norm": 0.23951229453086853,
+ "learning_rate": 0.0006,
+ "loss": 3.4910717010498047,
+ "step": 4948
+ },
+ {
+ "epoch": 68.74093490607252,
+ "grad_norm": 0.22745490074157715,
+ "learning_rate": 0.0006,
+ "loss": 3.5251622200012207,
+ "step": 4949
+ },
+ {
+ "epoch": 68.75491480996068,
+ "grad_norm": 0.21616250276565552,
+ "learning_rate": 0.0006,
+ "loss": 3.4933743476867676,
+ "step": 4950
+ },
+ {
+ "epoch": 68.76889471384884,
+ "grad_norm": 0.2164236605167389,
+ "learning_rate": 0.0006,
+ "loss": 3.513286590576172,
+ "step": 4951
+ },
+ {
+ "epoch": 68.78287461773701,
+ "grad_norm": 0.2450464814901352,
+ "learning_rate": 0.0006,
+ "loss": 3.5084245204925537,
+ "step": 4952
+ },
+ {
+ "epoch": 68.79685452162516,
+ "grad_norm": 0.29221615195274353,
+ "learning_rate": 0.0006,
+ "loss": 3.5463311672210693,
+ "step": 4953
+ },
+ {
+ "epoch": 68.81083442551332,
+ "grad_norm": 0.24574553966522217,
+ "learning_rate": 0.0006,
+ "loss": 3.5099716186523438,
+ "step": 4954
+ },
+ {
+ "epoch": 68.82481432940149,
+ "grad_norm": 0.20879139006137848,
+ "learning_rate": 0.0006,
+ "loss": 3.5220701694488525,
+ "step": 4955
+ },
+ {
+ "epoch": 68.83879423328965,
+ "grad_norm": 0.295693963766098,
+ "learning_rate": 0.0006,
+ "loss": 3.4854037761688232,
+ "step": 4956
+ },
+ {
+ "epoch": 68.8527741371778,
+ "grad_norm": 0.35441911220550537,
+ "learning_rate": 0.0006,
+ "loss": 3.5216379165649414,
+ "step": 4957
+ },
+ {
+ "epoch": 68.86675404106597,
+ "grad_norm": 0.2840341031551361,
+ "learning_rate": 0.0006,
+ "loss": 3.5208358764648438,
+ "step": 4958
+ },
+ {
+ "epoch": 68.88073394495413,
+ "grad_norm": 0.2082499861717224,
+ "learning_rate": 0.0006,
+ "loss": 3.5028862953186035,
+ "step": 4959
+ },
+ {
+ "epoch": 68.89471384884229,
+ "grad_norm": 0.2505369186401367,
+ "learning_rate": 0.0006,
+ "loss": 3.4982357025146484,
+ "step": 4960
+ },
+ {
+ "epoch": 68.90869375273044,
+ "grad_norm": 0.24573875963687897,
+ "learning_rate": 0.0006,
+ "loss": 3.5239524841308594,
+ "step": 4961
+ },
+ {
+ "epoch": 68.92267365661861,
+ "grad_norm": 0.23462185263633728,
+ "learning_rate": 0.0006,
+ "loss": 3.544379234313965,
+ "step": 4962
+ },
+ {
+ "epoch": 68.93665356050677,
+ "grad_norm": 0.26491034030914307,
+ "learning_rate": 0.0006,
+ "loss": 3.518372058868408,
+ "step": 4963
+ },
+ {
+ "epoch": 68.95063346439493,
+ "grad_norm": 0.2729686498641968,
+ "learning_rate": 0.0006,
+ "loss": 3.517185926437378,
+ "step": 4964
+ },
+ {
+ "epoch": 68.9646133682831,
+ "grad_norm": 0.26077502965927124,
+ "learning_rate": 0.0006,
+ "loss": 3.5147576332092285,
+ "step": 4965
+ },
+ {
+ "epoch": 68.97859327217125,
+ "grad_norm": 0.2313229888677597,
+ "learning_rate": 0.0006,
+ "loss": 3.5008926391601562,
+ "step": 4966
+ },
+ {
+ "epoch": 68.99257317605941,
+ "grad_norm": 0.21773307025432587,
+ "learning_rate": 0.0006,
+ "loss": 3.5004096031188965,
+ "step": 4967
+ },
+ {
+ "epoch": 69.0,
+ "grad_norm": 0.2326030433177948,
+ "learning_rate": 0.0006,
+ "loss": 3.5572075843811035,
+ "step": 4968
+ },
+ {
+ "epoch": 69.0,
+ "eval_loss": 3.993666410446167,
+ "eval_runtime": 45.2778,
+ "eval_samples_per_second": 53.934,
+ "eval_steps_per_second": 3.379,
+ "step": 4968
+ },
+ {
+ "epoch": 69.01397990388816,
+ "grad_norm": 0.22886492311954498,
+ "learning_rate": 0.0006,
+ "loss": 3.4994781017303467,
+ "step": 4969
+ },
+ {
+ "epoch": 69.02795980777633,
+ "grad_norm": 0.2972700595855713,
+ "learning_rate": 0.0006,
+ "loss": 3.5022270679473877,
+ "step": 4970
+ },
+ {
+ "epoch": 69.04193971166448,
+ "grad_norm": 0.32146573066711426,
+ "learning_rate": 0.0006,
+ "loss": 3.49113130569458,
+ "step": 4971
+ },
+ {
+ "epoch": 69.05591961555264,
+ "grad_norm": 0.26019641757011414,
+ "learning_rate": 0.0006,
+ "loss": 3.4609522819519043,
+ "step": 4972
+ },
+ {
+ "epoch": 69.06989951944081,
+ "grad_norm": 0.2116279900074005,
+ "learning_rate": 0.0006,
+ "loss": 3.518007278442383,
+ "step": 4973
+ },
+ {
+ "epoch": 69.08387942332897,
+ "grad_norm": 0.24797578155994415,
+ "learning_rate": 0.0006,
+ "loss": 3.465017318725586,
+ "step": 4974
+ },
+ {
+ "epoch": 69.09785932721712,
+ "grad_norm": 0.2988112270832062,
+ "learning_rate": 0.0006,
+ "loss": 3.46774959564209,
+ "step": 4975
+ },
+ {
+ "epoch": 69.1118392311053,
+ "grad_norm": 0.2741694450378418,
+ "learning_rate": 0.0006,
+ "loss": 3.4726247787475586,
+ "step": 4976
+ },
+ {
+ "epoch": 69.12581913499345,
+ "grad_norm": 0.246512308716774,
+ "learning_rate": 0.0006,
+ "loss": 3.4634053707122803,
+ "step": 4977
+ },
+ {
+ "epoch": 69.1397990388816,
+ "grad_norm": 0.25938132405281067,
+ "learning_rate": 0.0006,
+ "loss": 3.4496707916259766,
+ "step": 4978
+ },
+ {
+ "epoch": 69.15377894276976,
+ "grad_norm": 0.30637112259864807,
+ "learning_rate": 0.0006,
+ "loss": 3.4703760147094727,
+ "step": 4979
+ },
+ {
+ "epoch": 69.16775884665793,
+ "grad_norm": 0.26681914925575256,
+ "learning_rate": 0.0006,
+ "loss": 3.50388240814209,
+ "step": 4980
+ },
+ {
+ "epoch": 69.18173875054609,
+ "grad_norm": 0.24075748026371002,
+ "learning_rate": 0.0006,
+ "loss": 3.517247438430786,
+ "step": 4981
+ },
+ {
+ "epoch": 69.19571865443424,
+ "grad_norm": 0.21730124950408936,
+ "learning_rate": 0.0006,
+ "loss": 3.49320650100708,
+ "step": 4982
+ },
+ {
+ "epoch": 69.20969855832242,
+ "grad_norm": 0.21399953961372375,
+ "learning_rate": 0.0006,
+ "loss": 3.4763529300689697,
+ "step": 4983
+ },
+ {
+ "epoch": 69.22367846221057,
+ "grad_norm": 0.22505059838294983,
+ "learning_rate": 0.0006,
+ "loss": 3.4744338989257812,
+ "step": 4984
+ },
+ {
+ "epoch": 69.23765836609873,
+ "grad_norm": 0.23260554671287537,
+ "learning_rate": 0.0006,
+ "loss": 3.469099760055542,
+ "step": 4985
+ },
+ {
+ "epoch": 69.2516382699869,
+ "grad_norm": 0.2212911993265152,
+ "learning_rate": 0.0006,
+ "loss": 3.484243869781494,
+ "step": 4986
+ },
+ {
+ "epoch": 69.26561817387505,
+ "grad_norm": 0.22414085268974304,
+ "learning_rate": 0.0006,
+ "loss": 3.485083818435669,
+ "step": 4987
+ },
+ {
+ "epoch": 69.27959807776321,
+ "grad_norm": 0.2222541719675064,
+ "learning_rate": 0.0006,
+ "loss": 3.4827499389648438,
+ "step": 4988
+ },
+ {
+ "epoch": 69.29357798165138,
+ "grad_norm": 0.23511181771755219,
+ "learning_rate": 0.0006,
+ "loss": 3.4688282012939453,
+ "step": 4989
+ },
+ {
+ "epoch": 69.30755788553954,
+ "grad_norm": 0.23599068820476532,
+ "learning_rate": 0.0006,
+ "loss": 3.498142719268799,
+ "step": 4990
+ },
+ {
+ "epoch": 69.3215377894277,
+ "grad_norm": 0.22533927857875824,
+ "learning_rate": 0.0006,
+ "loss": 3.4815826416015625,
+ "step": 4991
+ },
+ {
+ "epoch": 69.33551769331586,
+ "grad_norm": 0.2343030720949173,
+ "learning_rate": 0.0006,
+ "loss": 3.483752489089966,
+ "step": 4992
+ },
+ {
+ "epoch": 69.34949759720402,
+ "grad_norm": 0.23283112049102783,
+ "learning_rate": 0.0006,
+ "loss": 3.4877965450286865,
+ "step": 4993
+ },
+ {
+ "epoch": 69.36347750109218,
+ "grad_norm": 0.24869517982006073,
+ "learning_rate": 0.0006,
+ "loss": 3.480337142944336,
+ "step": 4994
+ },
+ {
+ "epoch": 69.37745740498035,
+ "grad_norm": 0.22779154777526855,
+ "learning_rate": 0.0006,
+ "loss": 3.4828710556030273,
+ "step": 4995
+ },
+ {
+ "epoch": 69.3914373088685,
+ "grad_norm": 0.22645261883735657,
+ "learning_rate": 0.0006,
+ "loss": 3.509845018386841,
+ "step": 4996
+ },
+ {
+ "epoch": 69.40541721275666,
+ "grad_norm": 0.2432178109884262,
+ "learning_rate": 0.0006,
+ "loss": 3.4617137908935547,
+ "step": 4997
+ },
+ {
+ "epoch": 69.41939711664482,
+ "grad_norm": 0.2587018311023712,
+ "learning_rate": 0.0006,
+ "loss": 3.4713127613067627,
+ "step": 4998
+ },
+ {
+ "epoch": 69.43337702053299,
+ "grad_norm": 0.21907378733158112,
+ "learning_rate": 0.0006,
+ "loss": 3.509188175201416,
+ "step": 4999
+ },
+ {
+ "epoch": 69.44735692442114,
+ "grad_norm": 0.22740772366523743,
+ "learning_rate": 0.0006,
+ "loss": 3.4754276275634766,
+ "step": 5000
+ },
+ {
+ "epoch": 69.4613368283093,
+ "grad_norm": 0.21934257447719574,
+ "learning_rate": 0.0006,
+ "loss": 3.4663891792297363,
+ "step": 5001
+ },
+ {
+ "epoch": 69.47531673219747,
+ "grad_norm": 0.2244742065668106,
+ "learning_rate": 0.0006,
+ "loss": 3.4800233840942383,
+ "step": 5002
+ },
+ {
+ "epoch": 69.48929663608563,
+ "grad_norm": 0.20470912754535675,
+ "learning_rate": 0.0006,
+ "loss": 3.5089359283447266,
+ "step": 5003
+ },
+ {
+ "epoch": 69.50327653997378,
+ "grad_norm": 0.21532751619815826,
+ "learning_rate": 0.0006,
+ "loss": 3.5029287338256836,
+ "step": 5004
+ },
+ {
+ "epoch": 69.51725644386195,
+ "grad_norm": 0.2311217337846756,
+ "learning_rate": 0.0006,
+ "loss": 3.5031962394714355,
+ "step": 5005
+ },
+ {
+ "epoch": 69.53123634775011,
+ "grad_norm": 0.22248436510562897,
+ "learning_rate": 0.0006,
+ "loss": 3.5059356689453125,
+ "step": 5006
+ },
+ {
+ "epoch": 69.54521625163827,
+ "grad_norm": 0.2108408361673355,
+ "learning_rate": 0.0006,
+ "loss": 3.498697280883789,
+ "step": 5007
+ },
+ {
+ "epoch": 69.55919615552644,
+ "grad_norm": 0.22833184897899628,
+ "learning_rate": 0.0006,
+ "loss": 3.505685806274414,
+ "step": 5008
+ },
+ {
+ "epoch": 69.57317605941459,
+ "grad_norm": 0.22630111873149872,
+ "learning_rate": 0.0006,
+ "loss": 3.497771978378296,
+ "step": 5009
+ },
+ {
+ "epoch": 69.58715596330275,
+ "grad_norm": 0.23363569378852844,
+ "learning_rate": 0.0006,
+ "loss": 3.5422916412353516,
+ "step": 5010
+ },
+ {
+ "epoch": 69.60113586719092,
+ "grad_norm": 0.23720940947532654,
+ "learning_rate": 0.0006,
+ "loss": 3.504817008972168,
+ "step": 5011
+ },
+ {
+ "epoch": 69.61511577107908,
+ "grad_norm": 0.22822913527488708,
+ "learning_rate": 0.0006,
+ "loss": 3.51149320602417,
+ "step": 5012
+ },
+ {
+ "epoch": 69.62909567496723,
+ "grad_norm": 0.24143314361572266,
+ "learning_rate": 0.0006,
+ "loss": 3.509063720703125,
+ "step": 5013
+ },
+ {
+ "epoch": 69.6430755788554,
+ "grad_norm": 0.2394775152206421,
+ "learning_rate": 0.0006,
+ "loss": 3.5275425910949707,
+ "step": 5014
+ },
+ {
+ "epoch": 69.65705548274356,
+ "grad_norm": 0.23898433148860931,
+ "learning_rate": 0.0006,
+ "loss": 3.5251870155334473,
+ "step": 5015
+ },
+ {
+ "epoch": 69.67103538663171,
+ "grad_norm": 0.22647695243358612,
+ "learning_rate": 0.0006,
+ "loss": 3.4790940284729004,
+ "step": 5016
+ },
+ {
+ "epoch": 69.68501529051987,
+ "grad_norm": 0.23094546794891357,
+ "learning_rate": 0.0006,
+ "loss": 3.515676975250244,
+ "step": 5017
+ },
+ {
+ "epoch": 69.69899519440804,
+ "grad_norm": 0.21791698038578033,
+ "learning_rate": 0.0006,
+ "loss": 3.4938859939575195,
+ "step": 5018
+ },
+ {
+ "epoch": 69.7129750982962,
+ "grad_norm": 0.2420767843723297,
+ "learning_rate": 0.0006,
+ "loss": 3.489206075668335,
+ "step": 5019
+ },
+ {
+ "epoch": 69.72695500218435,
+ "grad_norm": 0.22724151611328125,
+ "learning_rate": 0.0006,
+ "loss": 3.502804756164551,
+ "step": 5020
+ },
+ {
+ "epoch": 69.74093490607252,
+ "grad_norm": 0.23462660610675812,
+ "learning_rate": 0.0006,
+ "loss": 3.4947867393493652,
+ "step": 5021
+ },
+ {
+ "epoch": 69.75491480996068,
+ "grad_norm": 0.2545832097530365,
+ "learning_rate": 0.0006,
+ "loss": 3.500843048095703,
+ "step": 5022
+ },
+ {
+ "epoch": 69.76889471384884,
+ "grad_norm": 0.26692283153533936,
+ "learning_rate": 0.0006,
+ "loss": 3.5054852962493896,
+ "step": 5023
+ },
+ {
+ "epoch": 69.78287461773701,
+ "grad_norm": 0.22788259387016296,
+ "learning_rate": 0.0006,
+ "loss": 3.5261473655700684,
+ "step": 5024
+ },
+ {
+ "epoch": 69.79685452162516,
+ "grad_norm": 0.24453137814998627,
+ "learning_rate": 0.0006,
+ "loss": 3.5090155601501465,
+ "step": 5025
+ },
+ {
+ "epoch": 69.81083442551332,
+ "grad_norm": 0.27876126766204834,
+ "learning_rate": 0.0006,
+ "loss": 3.5091753005981445,
+ "step": 5026
+ },
+ {
+ "epoch": 69.82481432940149,
+ "grad_norm": 0.280249685049057,
+ "learning_rate": 0.0006,
+ "loss": 3.5129857063293457,
+ "step": 5027
+ },
+ {
+ "epoch": 69.83879423328965,
+ "grad_norm": 0.2260117530822754,
+ "learning_rate": 0.0006,
+ "loss": 3.5320475101470947,
+ "step": 5028
+ },
+ {
+ "epoch": 69.8527741371778,
+ "grad_norm": 0.2237965613603592,
+ "learning_rate": 0.0006,
+ "loss": 3.5061261653900146,
+ "step": 5029
+ },
+ {
+ "epoch": 69.86675404106597,
+ "grad_norm": 0.226779967546463,
+ "learning_rate": 0.0006,
+ "loss": 3.5076608657836914,
+ "step": 5030
+ },
+ {
+ "epoch": 69.88073394495413,
+ "grad_norm": 0.23626334965229034,
+ "learning_rate": 0.0006,
+ "loss": 3.50716495513916,
+ "step": 5031
+ },
+ {
+ "epoch": 69.89471384884229,
+ "grad_norm": 0.2639276385307312,
+ "learning_rate": 0.0006,
+ "loss": 3.5299901962280273,
+ "step": 5032
+ },
+ {
+ "epoch": 69.90869375273044,
+ "grad_norm": 0.23369482159614563,
+ "learning_rate": 0.0006,
+ "loss": 3.5289621353149414,
+ "step": 5033
+ },
+ {
+ "epoch": 69.92267365661861,
+ "grad_norm": 0.23041120171546936,
+ "learning_rate": 0.0006,
+ "loss": 3.5174753665924072,
+ "step": 5034
+ },
+ {
+ "epoch": 69.93665356050677,
+ "grad_norm": 0.21268987655639648,
+ "learning_rate": 0.0006,
+ "loss": 3.506927967071533,
+ "step": 5035
+ },
+ {
+ "epoch": 69.95063346439493,
+ "grad_norm": 0.22524571418762207,
+ "learning_rate": 0.0006,
+ "loss": 3.5054068565368652,
+ "step": 5036
+ },
+ {
+ "epoch": 69.9646133682831,
+ "grad_norm": 0.26068753004074097,
+ "learning_rate": 0.0006,
+ "loss": 3.502107620239258,
+ "step": 5037
+ },
+ {
+ "epoch": 69.97859327217125,
+ "grad_norm": 0.2473640888929367,
+ "learning_rate": 0.0006,
+ "loss": 3.4879817962646484,
+ "step": 5038
+ },
+ {
+ "epoch": 69.99257317605941,
+ "grad_norm": 0.23933477699756622,
+ "learning_rate": 0.0006,
+ "loss": 3.52518892288208,
+ "step": 5039
+ },
+ {
+ "epoch": 70.0,
+ "grad_norm": 0.26498401165008545,
+ "learning_rate": 0.0006,
+ "loss": 3.528074026107788,
+ "step": 5040
+ },
+ {
+ "epoch": 70.0,
+ "eval_loss": 3.9862265586853027,
+ "eval_runtime": 45.1344,
+ "eval_samples_per_second": 54.105,
+ "eval_steps_per_second": 3.39,
+ "step": 5040
+ },
+ {
+ "epoch": 70.01397990388816,
+ "grad_norm": 0.23711830377578735,
+ "learning_rate": 0.0006,
+ "loss": 3.4622411727905273,
+ "step": 5041
+ },
+ {
+ "epoch": 70.02795980777633,
+ "grad_norm": 0.25422438979148865,
+ "learning_rate": 0.0006,
+ "loss": 3.4546890258789062,
+ "step": 5042
+ },
+ {
+ "epoch": 70.04193971166448,
+ "grad_norm": 0.2520093619823456,
+ "learning_rate": 0.0006,
+ "loss": 3.4625046253204346,
+ "step": 5043
+ },
+ {
+ "epoch": 70.05591961555264,
+ "grad_norm": 0.23353877663612366,
+ "learning_rate": 0.0006,
+ "loss": 3.5090699195861816,
+ "step": 5044
+ },
+ {
+ "epoch": 70.06989951944081,
+ "grad_norm": 0.2775326669216156,
+ "learning_rate": 0.0006,
+ "loss": 3.4860758781433105,
+ "step": 5045
+ },
+ {
+ "epoch": 70.08387942332897,
+ "grad_norm": 0.297573447227478,
+ "learning_rate": 0.0006,
+ "loss": 3.5181596279144287,
+ "step": 5046
+ },
+ {
+ "epoch": 70.09785932721712,
+ "grad_norm": 0.29662513732910156,
+ "learning_rate": 0.0006,
+ "loss": 3.4715771675109863,
+ "step": 5047
+ },
+ {
+ "epoch": 70.1118392311053,
+ "grad_norm": 0.2619902193546295,
+ "learning_rate": 0.0006,
+ "loss": 3.430412769317627,
+ "step": 5048
+ },
+ {
+ "epoch": 70.12581913499345,
+ "grad_norm": 0.21740001440048218,
+ "learning_rate": 0.0006,
+ "loss": 3.473442792892456,
+ "step": 5049
+ },
+ {
+ "epoch": 70.1397990388816,
+ "grad_norm": 0.221281036734581,
+ "learning_rate": 0.0006,
+ "loss": 3.4651594161987305,
+ "step": 5050
+ },
+ {
+ "epoch": 70.15377894276976,
+ "grad_norm": 0.21638400852680206,
+ "learning_rate": 0.0006,
+ "loss": 3.475860118865967,
+ "step": 5051
+ },
+ {
+ "epoch": 70.16775884665793,
+ "grad_norm": 0.21825452148914337,
+ "learning_rate": 0.0006,
+ "loss": 3.467684268951416,
+ "step": 5052
+ },
+ {
+ "epoch": 70.18173875054609,
+ "grad_norm": 0.22535094618797302,
+ "learning_rate": 0.0006,
+ "loss": 3.4543721675872803,
+ "step": 5053
+ },
+ {
+ "epoch": 70.19571865443424,
+ "grad_norm": 0.22751732170581818,
+ "learning_rate": 0.0006,
+ "loss": 3.480132818222046,
+ "step": 5054
+ },
+ {
+ "epoch": 70.20969855832242,
+ "grad_norm": 0.21935929358005524,
+ "learning_rate": 0.0006,
+ "loss": 3.4883337020874023,
+ "step": 5055
+ },
+ {
+ "epoch": 70.22367846221057,
+ "grad_norm": 0.2164992392063141,
+ "learning_rate": 0.0006,
+ "loss": 3.4758238792419434,
+ "step": 5056
+ },
+ {
+ "epoch": 70.23765836609873,
+ "grad_norm": 0.2284509837627411,
+ "learning_rate": 0.0006,
+ "loss": 3.4639101028442383,
+ "step": 5057
+ },
+ {
+ "epoch": 70.2516382699869,
+ "grad_norm": 0.2616494297981262,
+ "learning_rate": 0.0006,
+ "loss": 3.4850382804870605,
+ "step": 5058
+ },
+ {
+ "epoch": 70.26561817387505,
+ "grad_norm": 0.25582870841026306,
+ "learning_rate": 0.0006,
+ "loss": 3.4912681579589844,
+ "step": 5059
+ },
+ {
+ "epoch": 70.27959807776321,
+ "grad_norm": 0.23707713186740875,
+ "learning_rate": 0.0006,
+ "loss": 3.493809700012207,
+ "step": 5060
+ },
+ {
+ "epoch": 70.29357798165138,
+ "grad_norm": 0.233265221118927,
+ "learning_rate": 0.0006,
+ "loss": 3.5143074989318848,
+ "step": 5061
+ },
+ {
+ "epoch": 70.30755788553954,
+ "grad_norm": 0.2607567012310028,
+ "learning_rate": 0.0006,
+ "loss": 3.5042223930358887,
+ "step": 5062
+ },
+ {
+ "epoch": 70.3215377894277,
+ "grad_norm": 0.21082724630832672,
+ "learning_rate": 0.0006,
+ "loss": 3.493569850921631,
+ "step": 5063
+ },
+ {
+ "epoch": 70.33551769331586,
+ "grad_norm": 0.2609533369541168,
+ "learning_rate": 0.0006,
+ "loss": 3.503533363342285,
+ "step": 5064
+ },
+ {
+ "epoch": 70.34949759720402,
+ "grad_norm": 0.2863939702510834,
+ "learning_rate": 0.0006,
+ "loss": 3.465226173400879,
+ "step": 5065
+ },
+ {
+ "epoch": 70.36347750109218,
+ "grad_norm": 0.26796457171440125,
+ "learning_rate": 0.0006,
+ "loss": 3.517176866531372,
+ "step": 5066
+ },
+ {
+ "epoch": 70.37745740498035,
+ "grad_norm": 0.2766019105911255,
+ "learning_rate": 0.0006,
+ "loss": 3.5126867294311523,
+ "step": 5067
+ },
+ {
+ "epoch": 70.3914373088685,
+ "grad_norm": 0.24560758471488953,
+ "learning_rate": 0.0006,
+ "loss": 3.515030860900879,
+ "step": 5068
+ },
+ {
+ "epoch": 70.40541721275666,
+ "grad_norm": 0.20993568003177643,
+ "learning_rate": 0.0006,
+ "loss": 3.4899773597717285,
+ "step": 5069
+ },
+ {
+ "epoch": 70.41939711664482,
+ "grad_norm": 0.20855914056301117,
+ "learning_rate": 0.0006,
+ "loss": 3.4906468391418457,
+ "step": 5070
+ },
+ {
+ "epoch": 70.43337702053299,
+ "grad_norm": 0.2210836559534073,
+ "learning_rate": 0.0006,
+ "loss": 3.482866048812866,
+ "step": 5071
+ },
+ {
+ "epoch": 70.44735692442114,
+ "grad_norm": 0.2210542857646942,
+ "learning_rate": 0.0006,
+ "loss": 3.501636028289795,
+ "step": 5072
+ },
+ {
+ "epoch": 70.4613368283093,
+ "grad_norm": 0.21207138895988464,
+ "learning_rate": 0.0006,
+ "loss": 3.519104242324829,
+ "step": 5073
+ },
+ {
+ "epoch": 70.47531673219747,
+ "grad_norm": 0.19901272654533386,
+ "learning_rate": 0.0006,
+ "loss": 3.486097574234009,
+ "step": 5074
+ },
+ {
+ "epoch": 70.48929663608563,
+ "grad_norm": 0.21536870300769806,
+ "learning_rate": 0.0006,
+ "loss": 3.476889133453369,
+ "step": 5075
+ },
+ {
+ "epoch": 70.50327653997378,
+ "grad_norm": 0.22002893686294556,
+ "learning_rate": 0.0006,
+ "loss": 3.5007381439208984,
+ "step": 5076
+ },
+ {
+ "epoch": 70.51725644386195,
+ "grad_norm": 0.20761331915855408,
+ "learning_rate": 0.0006,
+ "loss": 3.4693777561187744,
+ "step": 5077
+ },
+ {
+ "epoch": 70.53123634775011,
+ "grad_norm": 0.2145029455423355,
+ "learning_rate": 0.0006,
+ "loss": 3.438809871673584,
+ "step": 5078
+ },
+ {
+ "epoch": 70.54521625163827,
+ "grad_norm": 0.1961168795824051,
+ "learning_rate": 0.0006,
+ "loss": 3.4975242614746094,
+ "step": 5079
+ },
+ {
+ "epoch": 70.55919615552644,
+ "grad_norm": 0.20411522686481476,
+ "learning_rate": 0.0006,
+ "loss": 3.4908413887023926,
+ "step": 5080
+ },
+ {
+ "epoch": 70.57317605941459,
+ "grad_norm": 0.22646412253379822,
+ "learning_rate": 0.0006,
+ "loss": 3.4542629718780518,
+ "step": 5081
+ },
+ {
+ "epoch": 70.58715596330275,
+ "grad_norm": 0.2181357741355896,
+ "learning_rate": 0.0006,
+ "loss": 3.522963047027588,
+ "step": 5082
+ },
+ {
+ "epoch": 70.60113586719092,
+ "grad_norm": 0.23564083874225616,
+ "learning_rate": 0.0006,
+ "loss": 3.475222110748291,
+ "step": 5083
+ },
+ {
+ "epoch": 70.61511577107908,
+ "grad_norm": 0.22964410483837128,
+ "learning_rate": 0.0006,
+ "loss": 3.517993927001953,
+ "step": 5084
+ },
+ {
+ "epoch": 70.62909567496723,
+ "grad_norm": 0.20958925783634186,
+ "learning_rate": 0.0006,
+ "loss": 3.4651894569396973,
+ "step": 5085
+ },
+ {
+ "epoch": 70.6430755788554,
+ "grad_norm": 0.19693933427333832,
+ "learning_rate": 0.0006,
+ "loss": 3.4992640018463135,
+ "step": 5086
+ },
+ {
+ "epoch": 70.65705548274356,
+ "grad_norm": 0.22487083077430725,
+ "learning_rate": 0.0006,
+ "loss": 3.502739906311035,
+ "step": 5087
+ },
+ {
+ "epoch": 70.67103538663171,
+ "grad_norm": 0.22145701944828033,
+ "learning_rate": 0.0006,
+ "loss": 3.4855666160583496,
+ "step": 5088
+ },
+ {
+ "epoch": 70.68501529051987,
+ "grad_norm": 0.2145165652036667,
+ "learning_rate": 0.0006,
+ "loss": 3.5234193801879883,
+ "step": 5089
+ },
+ {
+ "epoch": 70.69899519440804,
+ "grad_norm": 0.2453656941652298,
+ "learning_rate": 0.0006,
+ "loss": 3.497983932495117,
+ "step": 5090
+ },
+ {
+ "epoch": 70.7129750982962,
+ "grad_norm": 0.2324638068675995,
+ "learning_rate": 0.0006,
+ "loss": 3.487849712371826,
+ "step": 5091
+ },
+ {
+ "epoch": 70.72695500218435,
+ "grad_norm": 0.2176654040813446,
+ "learning_rate": 0.0006,
+ "loss": 3.496427059173584,
+ "step": 5092
+ },
+ {
+ "epoch": 70.74093490607252,
+ "grad_norm": 0.20912162959575653,
+ "learning_rate": 0.0006,
+ "loss": 3.4953227043151855,
+ "step": 5093
+ },
+ {
+ "epoch": 70.75491480996068,
+ "grad_norm": 0.1988947093486786,
+ "learning_rate": 0.0006,
+ "loss": 3.4566853046417236,
+ "step": 5094
+ },
+ {
+ "epoch": 70.76889471384884,
+ "grad_norm": 0.23707804083824158,
+ "learning_rate": 0.0006,
+ "loss": 3.5447797775268555,
+ "step": 5095
+ },
+ {
+ "epoch": 70.78287461773701,
+ "grad_norm": 0.24296057224273682,
+ "learning_rate": 0.0006,
+ "loss": 3.5124454498291016,
+ "step": 5096
+ },
+ {
+ "epoch": 70.79685452162516,
+ "grad_norm": 0.21297545731067657,
+ "learning_rate": 0.0006,
+ "loss": 3.5096077919006348,
+ "step": 5097
+ },
+ {
+ "epoch": 70.81083442551332,
+ "grad_norm": 0.20642022788524628,
+ "learning_rate": 0.0006,
+ "loss": 3.5008912086486816,
+ "step": 5098
+ },
+ {
+ "epoch": 70.82481432940149,
+ "grad_norm": 0.2428225725889206,
+ "learning_rate": 0.0006,
+ "loss": 3.511782169342041,
+ "step": 5099
+ },
+ {
+ "epoch": 70.83879423328965,
+ "grad_norm": 0.2369006872177124,
+ "learning_rate": 0.0006,
+ "loss": 3.5016889572143555,
+ "step": 5100
+ },
+ {
+ "epoch": 70.8527741371778,
+ "grad_norm": 0.2299226075410843,
+ "learning_rate": 0.0006,
+ "loss": 3.5024492740631104,
+ "step": 5101
+ },
+ {
+ "epoch": 70.86675404106597,
+ "grad_norm": 0.2069583684206009,
+ "learning_rate": 0.0006,
+ "loss": 3.5401811599731445,
+ "step": 5102
+ },
+ {
+ "epoch": 70.88073394495413,
+ "grad_norm": 0.21548444032669067,
+ "learning_rate": 0.0006,
+ "loss": 3.506899833679199,
+ "step": 5103
+ },
+ {
+ "epoch": 70.89471384884229,
+ "grad_norm": 0.24152785539627075,
+ "learning_rate": 0.0006,
+ "loss": 3.517747163772583,
+ "step": 5104
+ },
+ {
+ "epoch": 70.90869375273044,
+ "grad_norm": 0.2301841676235199,
+ "learning_rate": 0.0006,
+ "loss": 3.4825563430786133,
+ "step": 5105
+ },
+ {
+ "epoch": 70.92267365661861,
+ "grad_norm": 0.20378732681274414,
+ "learning_rate": 0.0006,
+ "loss": 3.51491641998291,
+ "step": 5106
+ },
+ {
+ "epoch": 70.93665356050677,
+ "grad_norm": 0.23954246938228607,
+ "learning_rate": 0.0006,
+ "loss": 3.505157709121704,
+ "step": 5107
+ },
+ {
+ "epoch": 70.95063346439493,
+ "grad_norm": 0.24072174727916718,
+ "learning_rate": 0.0006,
+ "loss": 3.5006208419799805,
+ "step": 5108
+ },
+ {
+ "epoch": 70.9646133682831,
+ "grad_norm": 0.2187308371067047,
+ "learning_rate": 0.0006,
+ "loss": 3.5031535625457764,
+ "step": 5109
+ },
+ {
+ "epoch": 70.97859327217125,
+ "grad_norm": 0.22237645089626312,
+ "learning_rate": 0.0006,
+ "loss": 3.5143189430236816,
+ "step": 5110
+ },
+ {
+ "epoch": 70.99257317605941,
+ "grad_norm": 0.22169137001037598,
+ "learning_rate": 0.0006,
+ "loss": 3.4963934421539307,
+ "step": 5111
+ },
+ {
+ "epoch": 71.0,
+ "grad_norm": 0.257404088973999,
+ "learning_rate": 0.0006,
+ "loss": 3.5386219024658203,
+ "step": 5112
+ },
+ {
+ "epoch": 71.0,
+ "eval_loss": 3.9918019771575928,
+ "eval_runtime": 46.6377,
+ "eval_samples_per_second": 52.361,
+ "eval_steps_per_second": 3.281,
+ "step": 5112
+ },
+ {
+ "epoch": 71.01397990388816,
+ "grad_norm": 0.22763817012310028,
+ "learning_rate": 0.0006,
+ "loss": 3.4723024368286133,
+ "step": 5113
+ },
+ {
+ "epoch": 71.02795980777633,
+ "grad_norm": 0.22345447540283203,
+ "learning_rate": 0.0006,
+ "loss": 3.491352081298828,
+ "step": 5114
+ },
+ {
+ "epoch": 71.04193971166448,
+ "grad_norm": 0.28975343704223633,
+ "learning_rate": 0.0006,
+ "loss": 3.474012851715088,
+ "step": 5115
+ },
+ {
+ "epoch": 71.05591961555264,
+ "grad_norm": 0.34715282917022705,
+ "learning_rate": 0.0006,
+ "loss": 3.460543155670166,
+ "step": 5116
+ },
+ {
+ "epoch": 71.06989951944081,
+ "grad_norm": 0.3298324942588806,
+ "learning_rate": 0.0006,
+ "loss": 3.481487512588501,
+ "step": 5117
+ },
+ {
+ "epoch": 71.08387942332897,
+ "grad_norm": 0.25802168250083923,
+ "learning_rate": 0.0006,
+ "loss": 3.472047805786133,
+ "step": 5118
+ },
+ {
+ "epoch": 71.09785932721712,
+ "grad_norm": 0.27691733837127686,
+ "learning_rate": 0.0006,
+ "loss": 3.471902847290039,
+ "step": 5119
+ },
+ {
+ "epoch": 71.1118392311053,
+ "grad_norm": 0.3614637851715088,
+ "learning_rate": 0.0006,
+ "loss": 3.482367992401123,
+ "step": 5120
+ },
+ {
+ "epoch": 71.12581913499345,
+ "grad_norm": 0.3808763027191162,
+ "learning_rate": 0.0006,
+ "loss": 3.468003273010254,
+ "step": 5121
+ },
+ {
+ "epoch": 71.1397990388816,
+ "grad_norm": 0.30960485339164734,
+ "learning_rate": 0.0006,
+ "loss": 3.4756040573120117,
+ "step": 5122
+ },
+ {
+ "epoch": 71.15377894276976,
+ "grad_norm": 0.23345506191253662,
+ "learning_rate": 0.0006,
+ "loss": 3.4682583808898926,
+ "step": 5123
+ },
+ {
+ "epoch": 71.16775884665793,
+ "grad_norm": 0.23517020046710968,
+ "learning_rate": 0.0006,
+ "loss": 3.481360912322998,
+ "step": 5124
+ },
+ {
+ "epoch": 71.18173875054609,
+ "grad_norm": 0.23654034733772278,
+ "learning_rate": 0.0006,
+ "loss": 3.4833765029907227,
+ "step": 5125
+ },
+ {
+ "epoch": 71.19571865443424,
+ "grad_norm": 0.2085893303155899,
+ "learning_rate": 0.0006,
+ "loss": 3.486340045928955,
+ "step": 5126
+ },
+ {
+ "epoch": 71.20969855832242,
+ "grad_norm": 0.23823733627796173,
+ "learning_rate": 0.0006,
+ "loss": 3.477477550506592,
+ "step": 5127
+ },
+ {
+ "epoch": 71.22367846221057,
+ "grad_norm": 0.2195197194814682,
+ "learning_rate": 0.0006,
+ "loss": 3.4914462566375732,
+ "step": 5128
+ },
+ {
+ "epoch": 71.23765836609873,
+ "grad_norm": 0.20015183091163635,
+ "learning_rate": 0.0006,
+ "loss": 3.4731597900390625,
+ "step": 5129
+ },
+ {
+ "epoch": 71.2516382699869,
+ "grad_norm": 0.22865013778209686,
+ "learning_rate": 0.0006,
+ "loss": 3.474112033843994,
+ "step": 5130
+ },
+ {
+ "epoch": 71.26561817387505,
+ "grad_norm": 0.23216912150382996,
+ "learning_rate": 0.0006,
+ "loss": 3.4641566276550293,
+ "step": 5131
+ },
+ {
+ "epoch": 71.27959807776321,
+ "grad_norm": 0.229189932346344,
+ "learning_rate": 0.0006,
+ "loss": 3.499788999557495,
+ "step": 5132
+ },
+ {
+ "epoch": 71.29357798165138,
+ "grad_norm": 0.21727289259433746,
+ "learning_rate": 0.0006,
+ "loss": 3.4823837280273438,
+ "step": 5133
+ },
+ {
+ "epoch": 71.30755788553954,
+ "grad_norm": 0.21023842692375183,
+ "learning_rate": 0.0006,
+ "loss": 3.4864656925201416,
+ "step": 5134
+ },
+ {
+ "epoch": 71.3215377894277,
+ "grad_norm": 0.2303229570388794,
+ "learning_rate": 0.0006,
+ "loss": 3.4989194869995117,
+ "step": 5135
+ },
+ {
+ "epoch": 71.33551769331586,
+ "grad_norm": 0.2317735254764557,
+ "learning_rate": 0.0006,
+ "loss": 3.460954189300537,
+ "step": 5136
+ },
+ {
+ "epoch": 71.34949759720402,
+ "grad_norm": 0.22612634301185608,
+ "learning_rate": 0.0006,
+ "loss": 3.5102381706237793,
+ "step": 5137
+ },
+ {
+ "epoch": 71.36347750109218,
+ "grad_norm": 0.23815463483333588,
+ "learning_rate": 0.0006,
+ "loss": 3.446244239807129,
+ "step": 5138
+ },
+ {
+ "epoch": 71.37745740498035,
+ "grad_norm": 0.22914297878742218,
+ "learning_rate": 0.0006,
+ "loss": 3.4789650440216064,
+ "step": 5139
+ },
+ {
+ "epoch": 71.3914373088685,
+ "grad_norm": 0.22563296556472778,
+ "learning_rate": 0.0006,
+ "loss": 3.490419864654541,
+ "step": 5140
+ },
+ {
+ "epoch": 71.40541721275666,
+ "grad_norm": 0.21704672276973724,
+ "learning_rate": 0.0006,
+ "loss": 3.503981113433838,
+ "step": 5141
+ },
+ {
+ "epoch": 71.41939711664482,
+ "grad_norm": 0.2196325659751892,
+ "learning_rate": 0.0006,
+ "loss": 3.4878809452056885,
+ "step": 5142
+ },
+ {
+ "epoch": 71.43337702053299,
+ "grad_norm": 0.21130836009979248,
+ "learning_rate": 0.0006,
+ "loss": 3.4546194076538086,
+ "step": 5143
+ },
+ {
+ "epoch": 71.44735692442114,
+ "grad_norm": 0.21542105078697205,
+ "learning_rate": 0.0006,
+ "loss": 3.4721519947052,
+ "step": 5144
+ },
+ {
+ "epoch": 71.4613368283093,
+ "grad_norm": 0.22387142479419708,
+ "learning_rate": 0.0006,
+ "loss": 3.4667282104492188,
+ "step": 5145
+ },
+ {
+ "epoch": 71.47531673219747,
+ "grad_norm": 0.23259611427783966,
+ "learning_rate": 0.0006,
+ "loss": 3.467545986175537,
+ "step": 5146
+ },
+ {
+ "epoch": 71.48929663608563,
+ "grad_norm": 0.2771410644054413,
+ "learning_rate": 0.0006,
+ "loss": 3.4783425331115723,
+ "step": 5147
+ },
+ {
+ "epoch": 71.50327653997378,
+ "grad_norm": 0.29756635427474976,
+ "learning_rate": 0.0006,
+ "loss": 3.492600440979004,
+ "step": 5148
+ },
+ {
+ "epoch": 71.51725644386195,
+ "grad_norm": 0.26306024193763733,
+ "learning_rate": 0.0006,
+ "loss": 3.510770559310913,
+ "step": 5149
+ },
+ {
+ "epoch": 71.53123634775011,
+ "grad_norm": 0.20751827955245972,
+ "learning_rate": 0.0006,
+ "loss": 3.466935634613037,
+ "step": 5150
+ },
+ {
+ "epoch": 71.54521625163827,
+ "grad_norm": 0.21394366025924683,
+ "learning_rate": 0.0006,
+ "loss": 3.436068058013916,
+ "step": 5151
+ },
+ {
+ "epoch": 71.55919615552644,
+ "grad_norm": 0.25711846351623535,
+ "learning_rate": 0.0006,
+ "loss": 3.484564781188965,
+ "step": 5152
+ },
+ {
+ "epoch": 71.57317605941459,
+ "grad_norm": 0.29579317569732666,
+ "learning_rate": 0.0006,
+ "loss": 3.4905800819396973,
+ "step": 5153
+ },
+ {
+ "epoch": 71.58715596330275,
+ "grad_norm": 0.3033061921596527,
+ "learning_rate": 0.0006,
+ "loss": 3.508679151535034,
+ "step": 5154
+ },
+ {
+ "epoch": 71.60113586719092,
+ "grad_norm": 0.2520291805267334,
+ "learning_rate": 0.0006,
+ "loss": 3.5057215690612793,
+ "step": 5155
+ },
+ {
+ "epoch": 71.61511577107908,
+ "grad_norm": 0.226261705160141,
+ "learning_rate": 0.0006,
+ "loss": 3.5037670135498047,
+ "step": 5156
+ },
+ {
+ "epoch": 71.62909567496723,
+ "grad_norm": 0.20596027374267578,
+ "learning_rate": 0.0006,
+ "loss": 3.495021343231201,
+ "step": 5157
+ },
+ {
+ "epoch": 71.6430755788554,
+ "grad_norm": 0.20619751513004303,
+ "learning_rate": 0.0006,
+ "loss": 3.4958693981170654,
+ "step": 5158
+ },
+ {
+ "epoch": 71.65705548274356,
+ "grad_norm": 0.24510066211223602,
+ "learning_rate": 0.0006,
+ "loss": 3.5301260948181152,
+ "step": 5159
+ },
+ {
+ "epoch": 71.67103538663171,
+ "grad_norm": 0.26109805703163147,
+ "learning_rate": 0.0006,
+ "loss": 3.5022244453430176,
+ "step": 5160
+ },
+ {
+ "epoch": 71.68501529051987,
+ "grad_norm": 0.28911513090133667,
+ "learning_rate": 0.0006,
+ "loss": 3.488947868347168,
+ "step": 5161
+ },
+ {
+ "epoch": 71.69899519440804,
+ "grad_norm": 0.2741655111312866,
+ "learning_rate": 0.0006,
+ "loss": 3.4888229370117188,
+ "step": 5162
+ },
+ {
+ "epoch": 71.7129750982962,
+ "grad_norm": 0.2789880633354187,
+ "learning_rate": 0.0006,
+ "loss": 3.4911744594573975,
+ "step": 5163
+ },
+ {
+ "epoch": 71.72695500218435,
+ "grad_norm": 0.23872195184230804,
+ "learning_rate": 0.0006,
+ "loss": 3.5175111293792725,
+ "step": 5164
+ },
+ {
+ "epoch": 71.74093490607252,
+ "grad_norm": 0.23090124130249023,
+ "learning_rate": 0.0006,
+ "loss": 3.477285861968994,
+ "step": 5165
+ },
+ {
+ "epoch": 71.75491480996068,
+ "grad_norm": 0.25918251276016235,
+ "learning_rate": 0.0006,
+ "loss": 3.5374622344970703,
+ "step": 5166
+ },
+ {
+ "epoch": 71.76889471384884,
+ "grad_norm": 0.28394266963005066,
+ "learning_rate": 0.0006,
+ "loss": 3.505443572998047,
+ "step": 5167
+ },
+ {
+ "epoch": 71.78287461773701,
+ "grad_norm": 0.29756471514701843,
+ "learning_rate": 0.0006,
+ "loss": 3.4858479499816895,
+ "step": 5168
+ },
+ {
+ "epoch": 71.79685452162516,
+ "grad_norm": 0.2913147211074829,
+ "learning_rate": 0.0006,
+ "loss": 3.4602723121643066,
+ "step": 5169
+ },
+ {
+ "epoch": 71.81083442551332,
+ "grad_norm": 0.23923781514167786,
+ "learning_rate": 0.0006,
+ "loss": 3.4713358879089355,
+ "step": 5170
+ },
+ {
+ "epoch": 71.82481432940149,
+ "grad_norm": 0.23478655517101288,
+ "learning_rate": 0.0006,
+ "loss": 3.4848878383636475,
+ "step": 5171
+ },
+ {
+ "epoch": 71.83879423328965,
+ "grad_norm": 0.2668255865573883,
+ "learning_rate": 0.0006,
+ "loss": 3.507920742034912,
+ "step": 5172
+ },
+ {
+ "epoch": 71.8527741371778,
+ "grad_norm": 0.2818165719509125,
+ "learning_rate": 0.0006,
+ "loss": 3.5128116607666016,
+ "step": 5173
+ },
+ {
+ "epoch": 71.86675404106597,
+ "grad_norm": 0.22830909490585327,
+ "learning_rate": 0.0006,
+ "loss": 3.4789090156555176,
+ "step": 5174
+ },
+ {
+ "epoch": 71.88073394495413,
+ "grad_norm": 0.2291419357061386,
+ "learning_rate": 0.0006,
+ "loss": 3.4977774620056152,
+ "step": 5175
+ },
+ {
+ "epoch": 71.89471384884229,
+ "grad_norm": 0.22237083315849304,
+ "learning_rate": 0.0006,
+ "loss": 3.5563011169433594,
+ "step": 5176
+ },
+ {
+ "epoch": 71.90869375273044,
+ "grad_norm": 0.2287488579750061,
+ "learning_rate": 0.0006,
+ "loss": 3.515289783477783,
+ "step": 5177
+ },
+ {
+ "epoch": 71.92267365661861,
+ "grad_norm": 0.21992293000221252,
+ "learning_rate": 0.0006,
+ "loss": 3.5213077068328857,
+ "step": 5178
+ },
+ {
+ "epoch": 71.93665356050677,
+ "grad_norm": 0.21338967978954315,
+ "learning_rate": 0.0006,
+ "loss": 3.5168190002441406,
+ "step": 5179
+ },
+ {
+ "epoch": 71.95063346439493,
+ "grad_norm": 0.2198970913887024,
+ "learning_rate": 0.0006,
+ "loss": 3.517268180847168,
+ "step": 5180
+ },
+ {
+ "epoch": 71.9646133682831,
+ "grad_norm": 0.2309885025024414,
+ "learning_rate": 0.0006,
+ "loss": 3.5538675785064697,
+ "step": 5181
+ },
+ {
+ "epoch": 71.97859327217125,
+ "grad_norm": 0.23529282212257385,
+ "learning_rate": 0.0006,
+ "loss": 3.477951765060425,
+ "step": 5182
+ },
+ {
+ "epoch": 71.99257317605941,
+ "grad_norm": 0.2553477883338928,
+ "learning_rate": 0.0006,
+ "loss": 3.502894878387451,
+ "step": 5183
+ },
+ {
+ "epoch": 72.0,
+ "grad_norm": 0.2943936288356781,
+ "learning_rate": 0.0006,
+ "loss": 3.5049710273742676,
+ "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/mask15-l2r50-fulle-lm/checkpoint-5184/training_args.bin b/runs/mask15-l2r50-fulle-lm/checkpoint-5184/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..43721c50815fe94f90cb043bf545b8f7bd9afc38
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-5184/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:a0b8d7bb9ac952b1abed3bd1e5c8f6ebd20daa957b3a85688954f8df03be6eb9
+size 4856
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-5472/chat_template.jinja b/runs/mask15-l2r50-fulle-lm/checkpoint-5472/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/mask15-l2r50-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/mask15-l2r50-fulle-lm/checkpoint-5472/config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-5472/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..1b4ac3c550d6003148026765eba4cb1512b216c9
--- /dev/null
+++ b/runs/mask15-l2r50-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": 151672
+}
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-5472/generation_config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-5472/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..5cd15fe1269fd505cfdefe9b3e9989dacd9f68f4
--- /dev/null
+++ b/runs/mask15-l2r50-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/mask15-l2r50-fulle-lm/checkpoint-5472/model.safetensors b/runs/mask15-l2r50-fulle-lm/checkpoint-5472/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..ce4a6c91999f05db03e5743990b07b268877cc8f
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-5472/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:a1e777dfec05d0baa9cfe3f8adef02c78882b610855e82bde61953fe9d4b6f31
+size 583358280
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-5472/optimizer.pt b/runs/mask15-l2r50-fulle-lm/checkpoint-5472/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..1571b157eb5a71f5d7f3032e558315d4c0263333
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-5472/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:e30b5e69529029772b6808817c963de8857e77206eb103b2285005236e09c288
+size 1166829434
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-5472/rng_state_0.pth b/runs/mask15-l2r50-fulle-lm/checkpoint-5472/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..f1b3141dfb1b9cb3172b06443fda1dd55ae37d4a
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-5472/rng_state_0.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:462b2ac7a54f2e24181109d9edc74f491d580d1fe99c64d714d7a896cceeae2b
+size 14512
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-5472/rng_state_1.pth b/runs/mask15-l2r50-fulle-lm/checkpoint-5472/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..3e4f2180e2392e4e618ec08d59c873be54936f80
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-5472/rng_state_1.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:da76415e07db32e505ebd608c6df8c13148ee9a7cafd6e5a6abd865943c01c6f
+size 14512
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-5472/scheduler.pt b/runs/mask15-l2r50-fulle-lm/checkpoint-5472/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..bde6e47e59bea2a2d1c7be49dbaa3a2d4dfadf37
--- /dev/null
+++ b/runs/mask15-l2r50-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/mask15-l2r50-fulle-lm/checkpoint-5472/tokenizer.json b/runs/mask15-l2r50-fulle-lm/checkpoint-5472/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..6226bf25372d1a86dbd704ec75d2129960f1ba88
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-5472/tokenizer.json
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:9245fe3cb2d40f9ed8d5d8ddd1d58701ba2a236beec08f656162281673f30560
+size 11424264
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-5472/tokenizer_config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-5472/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..01bc9676576e8cf62a08a9db166d6c5bab1d6727
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-5472/tokenizer_config.json
@@ -0,0 +1,20 @@
+{
+ "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|>",
+ "<|mask|>"
+ ],
+ "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/mask15-l2r50-fulle-lm/checkpoint-5472/trainer_state.json b/runs/mask15-l2r50-fulle-lm/checkpoint-5472/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..e4ef0463e8dbf4ae8358c0fff67b5b13bba58a73
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-5472/trainer_state.json
@@ -0,0 +1,38938 @@
+{
+ "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": 9.807971954345703,
+ "learning_rate": 0.0,
+ "loss": 11.989814758300781,
+ "step": 1
+ },
+ {
+ "epoch": 0.027959807776321538,
+ "grad_norm": 9.834383010864258,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 11.993022918701172,
+ "step": 2
+ },
+ {
+ "epoch": 0.04193971166448231,
+ "grad_norm": 9.482470512390137,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 11.854345321655273,
+ "step": 3
+ },
+ {
+ "epoch": 0.055919615552643076,
+ "grad_norm": 7.678808689117432,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 11.618255615234375,
+ "step": 4
+ },
+ {
+ "epoch": 0.06989951944080385,
+ "grad_norm": 6.011275291442871,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 11.351423263549805,
+ "step": 5
+ },
+ {
+ "epoch": 0.08387942332896461,
+ "grad_norm": 5.244393825531006,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 11.128631591796875,
+ "step": 6
+ },
+ {
+ "epoch": 0.09785932721712538,
+ "grad_norm": 4.577618598937988,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 10.921937942504883,
+ "step": 7
+ },
+ {
+ "epoch": 0.11183923110528615,
+ "grad_norm": 4.03810453414917,
+ "learning_rate": 4.2e-05,
+ "loss": 10.742650985717773,
+ "step": 8
+ },
+ {
+ "epoch": 0.1258191349934469,
+ "grad_norm": 3.657679796218872,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 10.600778579711914,
+ "step": 9
+ },
+ {
+ "epoch": 0.1397990388816077,
+ "grad_norm": 3.352902889251709,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 10.489639282226562,
+ "step": 10
+ },
+ {
+ "epoch": 0.15377894276976845,
+ "grad_norm": 3.1162633895874023,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 10.417770385742188,
+ "step": 11
+ },
+ {
+ "epoch": 0.16775884665792923,
+ "grad_norm": 3.0402638912200928,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 10.35334587097168,
+ "step": 12
+ },
+ {
+ "epoch": 0.18173875054608998,
+ "grad_norm": 3.030630111694336,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 10.306867599487305,
+ "step": 13
+ },
+ {
+ "epoch": 0.19571865443425077,
+ "grad_norm": 3.035292148590088,
+ "learning_rate": 7.8e-05,
+ "loss": 10.26003646850586,
+ "step": 14
+ },
+ {
+ "epoch": 0.20969855832241152,
+ "grad_norm": 3.0125675201416016,
+ "learning_rate": 8.4e-05,
+ "loss": 10.219265937805176,
+ "step": 15
+ },
+ {
+ "epoch": 0.2236784622105723,
+ "grad_norm": 2.9998886585235596,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 10.161077499389648,
+ "step": 16
+ },
+ {
+ "epoch": 0.23765836609873306,
+ "grad_norm": 2.9411966800689697,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 10.107423782348633,
+ "step": 17
+ },
+ {
+ "epoch": 0.2516382699868938,
+ "grad_norm": 2.88081955909729,
+ "learning_rate": 0.000102,
+ "loss": 10.04700756072998,
+ "step": 18
+ },
+ {
+ "epoch": 0.2656181738750546,
+ "grad_norm": 2.8219687938690186,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 9.981185913085938,
+ "step": 19
+ },
+ {
+ "epoch": 0.2795980777632154,
+ "grad_norm": 2.79306960105896,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 9.89747142791748,
+ "step": 20
+ },
+ {
+ "epoch": 0.29357798165137616,
+ "grad_norm": 2.7314443588256836,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 9.829219818115234,
+ "step": 21
+ },
+ {
+ "epoch": 0.3075578855395369,
+ "grad_norm": 2.6923747062683105,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 9.747566223144531,
+ "step": 22
+ },
+ {
+ "epoch": 0.3215377894276977,
+ "grad_norm": 2.650602340698242,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 9.66455078125,
+ "step": 23
+ },
+ {
+ "epoch": 0.33551769331585846,
+ "grad_norm": 2.606977701187134,
+ "learning_rate": 0.000138,
+ "loss": 9.582326889038086,
+ "step": 24
+ },
+ {
+ "epoch": 0.34949759720401924,
+ "grad_norm": 2.567256212234497,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 9.492591857910156,
+ "step": 25
+ },
+ {
+ "epoch": 0.36347750109217997,
+ "grad_norm": 2.520740509033203,
+ "learning_rate": 0.00015,
+ "loss": 9.396563529968262,
+ "step": 26
+ },
+ {
+ "epoch": 0.37745740498034075,
+ "grad_norm": 2.471588611602783,
+ "learning_rate": 0.000156,
+ "loss": 9.303571701049805,
+ "step": 27
+ },
+ {
+ "epoch": 0.39143730886850153,
+ "grad_norm": 2.4341530799865723,
+ "learning_rate": 0.000162,
+ "loss": 9.191819190979004,
+ "step": 28
+ },
+ {
+ "epoch": 0.4054172127566623,
+ "grad_norm": 2.369244337081909,
+ "learning_rate": 0.000168,
+ "loss": 9.092012405395508,
+ "step": 29
+ },
+ {
+ "epoch": 0.41939711664482304,
+ "grad_norm": 2.28625226020813,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 8.984567642211914,
+ "step": 30
+ },
+ {
+ "epoch": 0.4333770205329838,
+ "grad_norm": 2.2082231044769287,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 8.889009475708008,
+ "step": 31
+ },
+ {
+ "epoch": 0.4473569244211446,
+ "grad_norm": 2.1429483890533447,
+ "learning_rate": 0.000186,
+ "loss": 8.778556823730469,
+ "step": 32
+ },
+ {
+ "epoch": 0.4613368283093054,
+ "grad_norm": 2.0937352180480957,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 8.661166191101074,
+ "step": 33
+ },
+ {
+ "epoch": 0.4753167321974661,
+ "grad_norm": 2.040790557861328,
+ "learning_rate": 0.000198,
+ "loss": 8.550382614135742,
+ "step": 34
+ },
+ {
+ "epoch": 0.4892966360856269,
+ "grad_norm": 1.93914794921875,
+ "learning_rate": 0.000204,
+ "loss": 8.463907241821289,
+ "step": 35
+ },
+ {
+ "epoch": 0.5032765399737876,
+ "grad_norm": 1.8624178171157837,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 8.3438720703125,
+ "step": 36
+ },
+ {
+ "epoch": 0.5172564438619485,
+ "grad_norm": 1.8107167482376099,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 8.21871566772461,
+ "step": 37
+ },
+ {
+ "epoch": 0.5312363477501092,
+ "grad_norm": 1.717979073524475,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 8.113494873046875,
+ "step": 38
+ },
+ {
+ "epoch": 0.54521625163827,
+ "grad_norm": 1.668742060661316,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 8.006099700927734,
+ "step": 39
+ },
+ {
+ "epoch": 0.5591961555264308,
+ "grad_norm": 1.6147786378860474,
+ "learning_rate": 0.000234,
+ "loss": 7.911509037017822,
+ "step": 40
+ },
+ {
+ "epoch": 0.5731760594145915,
+ "grad_norm": 1.535750150680542,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 7.822839736938477,
+ "step": 41
+ },
+ {
+ "epoch": 0.5871559633027523,
+ "grad_norm": 1.4700065851211548,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 7.713842868804932,
+ "step": 42
+ },
+ {
+ "epoch": 0.601135867190913,
+ "grad_norm": 1.39020574092865,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 7.6040191650390625,
+ "step": 43
+ },
+ {
+ "epoch": 0.6151157710790738,
+ "grad_norm": 1.2875399589538574,
+ "learning_rate": 0.000258,
+ "loss": 7.550642013549805,
+ "step": 44
+ },
+ {
+ "epoch": 0.6290956749672346,
+ "grad_norm": 1.2094247341156006,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 7.460824012756348,
+ "step": 45
+ },
+ {
+ "epoch": 0.6430755788553953,
+ "grad_norm": 1.126452088356018,
+ "learning_rate": 0.00027,
+ "loss": 7.380537986755371,
+ "step": 46
+ },
+ {
+ "epoch": 0.6570554827435562,
+ "grad_norm": 1.0313163995742798,
+ "learning_rate": 0.000276,
+ "loss": 7.286153793334961,
+ "step": 47
+ },
+ {
+ "epoch": 0.6710353866317169,
+ "grad_norm": 0.9172859787940979,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 7.2064714431762695,
+ "step": 48
+ },
+ {
+ "epoch": 0.6850152905198776,
+ "grad_norm": 0.8148201107978821,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 7.158207416534424,
+ "step": 49
+ },
+ {
+ "epoch": 0.6989951944080385,
+ "grad_norm": 0.650123119354248,
+ "learning_rate": 0.000294,
+ "loss": 7.108791828155518,
+ "step": 50
+ },
+ {
+ "epoch": 0.7129750982961992,
+ "grad_norm": 0.5437585711479187,
+ "learning_rate": 0.0003,
+ "loss": 7.083050727844238,
+ "step": 51
+ },
+ {
+ "epoch": 0.7269550021843599,
+ "grad_norm": 0.46762895584106445,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 7.058027267456055,
+ "step": 52
+ },
+ {
+ "epoch": 0.7409349060725208,
+ "grad_norm": 0.47947561740875244,
+ "learning_rate": 0.000312,
+ "loss": 7.015172958374023,
+ "step": 53
+ },
+ {
+ "epoch": 0.7549148099606815,
+ "grad_norm": 0.7546492218971252,
+ "learning_rate": 0.000318,
+ "loss": 7.024629592895508,
+ "step": 54
+ },
+ {
+ "epoch": 0.7688947138488423,
+ "grad_norm": 0.6153718829154968,
+ "learning_rate": 0.000324,
+ "loss": 7.026667594909668,
+ "step": 55
+ },
+ {
+ "epoch": 0.7828746177370031,
+ "grad_norm": 0.3359069228172302,
+ "learning_rate": 0.00033,
+ "loss": 7.008166313171387,
+ "step": 56
+ },
+ {
+ "epoch": 0.7968545216251638,
+ "grad_norm": 0.48906823992729187,
+ "learning_rate": 0.000336,
+ "loss": 7.019716262817383,
+ "step": 57
+ },
+ {
+ "epoch": 0.8108344255133246,
+ "grad_norm": 0.5525421500205994,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 7.02108097076416,
+ "step": 58
+ },
+ {
+ "epoch": 0.8248143294014854,
+ "grad_norm": 0.3103712201118469,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 7.003164768218994,
+ "step": 59
+ },
+ {
+ "epoch": 0.8387942332896461,
+ "grad_norm": 0.4431874752044678,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 7.003463268280029,
+ "step": 60
+ },
+ {
+ "epoch": 0.8527741371778069,
+ "grad_norm": 0.4291120767593384,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 6.96931791305542,
+ "step": 61
+ },
+ {
+ "epoch": 0.8667540410659677,
+ "grad_norm": 0.6566054224967957,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 6.989445686340332,
+ "step": 62
+ },
+ {
+ "epoch": 0.8807339449541285,
+ "grad_norm": 0.20663189888000488,
+ "learning_rate": 0.000372,
+ "loss": 6.9669342041015625,
+ "step": 63
+ },
+ {
+ "epoch": 0.8947138488422892,
+ "grad_norm": 0.6242535710334778,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 6.949883460998535,
+ "step": 64
+ },
+ {
+ "epoch": 0.9086937527304499,
+ "grad_norm": 0.6984224915504456,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 6.955153465270996,
+ "step": 65
+ },
+ {
+ "epoch": 0.9226736566186108,
+ "grad_norm": 0.6328083872795105,
+ "learning_rate": 0.00039,
+ "loss": 6.965421676635742,
+ "step": 66
+ },
+ {
+ "epoch": 0.9366535605067715,
+ "grad_norm": 1.213352918624878,
+ "learning_rate": 0.000396,
+ "loss": 6.9454345703125,
+ "step": 67
+ },
+ {
+ "epoch": 0.9506334643949322,
+ "grad_norm": 0.9221940636634827,
+ "learning_rate": 0.000402,
+ "loss": 6.923908233642578,
+ "step": 68
+ },
+ {
+ "epoch": 0.9646133682830931,
+ "grad_norm": 0.6825450658798218,
+ "learning_rate": 0.000408,
+ "loss": 6.910131454467773,
+ "step": 69
+ },
+ {
+ "epoch": 0.9785932721712538,
+ "grad_norm": 0.5690162181854248,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 6.89891242980957,
+ "step": 70
+ },
+ {
+ "epoch": 0.9925731760594146,
+ "grad_norm": 0.4320870041847229,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 6.896081924438477,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.31632405519485474,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 6.897444725036621,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 7.757839679718018,
+ "eval_runtime": 43.8338,
+ "eval_samples_per_second": 55.71,
+ "eval_steps_per_second": 3.49,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139799038881607,
+ "grad_norm": 0.3789916932582855,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 6.877245903015137,
+ "step": 73
+ },
+ {
+ "epoch": 1.0279598077763215,
+ "grad_norm": 0.9167932868003845,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 6.921600341796875,
+ "step": 74
+ },
+ {
+ "epoch": 1.0419397116644824,
+ "grad_norm": 0.581188440322876,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 6.861001968383789,
+ "step": 75
+ },
+ {
+ "epoch": 1.0559196155526431,
+ "grad_norm": 0.4179714024066925,
+ "learning_rate": 0.00045,
+ "loss": 6.875657081604004,
+ "step": 76
+ },
+ {
+ "epoch": 1.0698995194408039,
+ "grad_norm": 1.0669957399368286,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 6.857122421264648,
+ "step": 77
+ },
+ {
+ "epoch": 1.0838794233289646,
+ "grad_norm": 0.27855145931243896,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 6.828852653503418,
+ "step": 78
+ },
+ {
+ "epoch": 1.0978593272171253,
+ "grad_norm": 0.7192047834396362,
+ "learning_rate": 0.000468,
+ "loss": 6.870839595794678,
+ "step": 79
+ },
+ {
+ "epoch": 1.1118392311052863,
+ "grad_norm": 0.5583325624465942,
+ "learning_rate": 0.000474,
+ "loss": 6.8497514724731445,
+ "step": 80
+ },
+ {
+ "epoch": 1.125819134993447,
+ "grad_norm": 0.3001925051212311,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 6.858528137207031,
+ "step": 81
+ },
+ {
+ "epoch": 1.1397990388816077,
+ "grad_norm": 0.2408239096403122,
+ "learning_rate": 0.000486,
+ "loss": 6.83231258392334,
+ "step": 82
+ },
+ {
+ "epoch": 1.1537789427697684,
+ "grad_norm": 0.28230324387550354,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 6.815476894378662,
+ "step": 83
+ },
+ {
+ "epoch": 1.1677588466579292,
+ "grad_norm": 0.3247123658657074,
+ "learning_rate": 0.000498,
+ "loss": 6.780126094818115,
+ "step": 84
+ },
+ {
+ "epoch": 1.18173875054609,
+ "grad_norm": 0.25713011622428894,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 6.7798309326171875,
+ "step": 85
+ },
+ {
+ "epoch": 1.1957186544342508,
+ "grad_norm": 0.5386835932731628,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 6.791745185852051,
+ "step": 86
+ },
+ {
+ "epoch": 1.2096985583224116,
+ "grad_norm": 0.2226393222808838,
+ "learning_rate": 0.000516,
+ "loss": 6.7826972007751465,
+ "step": 87
+ },
+ {
+ "epoch": 1.2236784622105723,
+ "grad_norm": 0.4338362216949463,
+ "learning_rate": 0.000522,
+ "loss": 6.805043697357178,
+ "step": 88
+ },
+ {
+ "epoch": 1.237658366098733,
+ "grad_norm": 0.2953208386898041,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 6.768434524536133,
+ "step": 89
+ },
+ {
+ "epoch": 1.2516382699868938,
+ "grad_norm": 0.13453717529773712,
+ "learning_rate": 0.000534,
+ "loss": 6.773697376251221,
+ "step": 90
+ },
+ {
+ "epoch": 1.2656181738750547,
+ "grad_norm": 0.35774412751197815,
+ "learning_rate": 0.00054,
+ "loss": 6.766414642333984,
+ "step": 91
+ },
+ {
+ "epoch": 1.2795980777632154,
+ "grad_norm": 0.4669720530509949,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 6.754847526550293,
+ "step": 92
+ },
+ {
+ "epoch": 1.2935779816513762,
+ "grad_norm": 0.13806621730327606,
+ "learning_rate": 0.000552,
+ "loss": 6.746858596801758,
+ "step": 93
+ },
+ {
+ "epoch": 1.307557885539537,
+ "grad_norm": 0.3280332386493683,
+ "learning_rate": 0.000558,
+ "loss": 6.715662956237793,
+ "step": 94
+ },
+ {
+ "epoch": 1.3215377894276976,
+ "grad_norm": 0.4689937233924866,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 6.734938144683838,
+ "step": 95
+ },
+ {
+ "epoch": 1.3355176933158583,
+ "grad_norm": 0.35371264815330505,
+ "learning_rate": 0.00057,
+ "loss": 6.748386383056641,
+ "step": 96
+ },
+ {
+ "epoch": 1.3494975972040193,
+ "grad_norm": 0.15232303738594055,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 6.705557823181152,
+ "step": 97
+ },
+ {
+ "epoch": 1.36347750109218,
+ "grad_norm": 0.30132821202278137,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 6.7199859619140625,
+ "step": 98
+ },
+ {
+ "epoch": 1.3774574049803407,
+ "grad_norm": 0.42174842953681946,
+ "learning_rate": 0.000588,
+ "loss": 6.715370178222656,
+ "step": 99
+ },
+ {
+ "epoch": 1.3914373088685015,
+ "grad_norm": 0.6257228851318359,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 6.707026958465576,
+ "step": 100
+ },
+ {
+ "epoch": 1.4054172127566624,
+ "grad_norm": 0.4551195800304413,
+ "learning_rate": 0.0006,
+ "loss": 6.7078423500061035,
+ "step": 101
+ },
+ {
+ "epoch": 1.4193971166448232,
+ "grad_norm": 0.41940346360206604,
+ "learning_rate": 0.0006,
+ "loss": 6.6959357261657715,
+ "step": 102
+ },
+ {
+ "epoch": 1.4333770205329839,
+ "grad_norm": 0.32251718640327454,
+ "learning_rate": 0.0006,
+ "loss": 6.689168930053711,
+ "step": 103
+ },
+ {
+ "epoch": 1.4473569244211446,
+ "grad_norm": 0.2992720305919647,
+ "learning_rate": 0.0006,
+ "loss": 6.680738925933838,
+ "step": 104
+ },
+ {
+ "epoch": 1.4613368283093053,
+ "grad_norm": 0.3228456974029541,
+ "learning_rate": 0.0006,
+ "loss": 6.672350883483887,
+ "step": 105
+ },
+ {
+ "epoch": 1.475316732197466,
+ "grad_norm": 0.24954743683338165,
+ "learning_rate": 0.0006,
+ "loss": 6.653716087341309,
+ "step": 106
+ },
+ {
+ "epoch": 1.4892966360856268,
+ "grad_norm": 0.30740687251091003,
+ "learning_rate": 0.0006,
+ "loss": 6.676583290100098,
+ "step": 107
+ },
+ {
+ "epoch": 1.5032765399737875,
+ "grad_norm": 0.24950599670410156,
+ "learning_rate": 0.0006,
+ "loss": 6.656691551208496,
+ "step": 108
+ },
+ {
+ "epoch": 1.5172564438619485,
+ "grad_norm": 0.24293005466461182,
+ "learning_rate": 0.0006,
+ "loss": 6.640995979309082,
+ "step": 109
+ },
+ {
+ "epoch": 1.5312363477501092,
+ "grad_norm": 0.30167272686958313,
+ "learning_rate": 0.0006,
+ "loss": 6.647380352020264,
+ "step": 110
+ },
+ {
+ "epoch": 1.5452162516382701,
+ "grad_norm": 0.4424632787704468,
+ "learning_rate": 0.0006,
+ "loss": 6.6548261642456055,
+ "step": 111
+ },
+ {
+ "epoch": 1.5591961555264309,
+ "grad_norm": 0.5295748114585876,
+ "learning_rate": 0.0006,
+ "loss": 6.64370059967041,
+ "step": 112
+ },
+ {
+ "epoch": 1.5731760594145916,
+ "grad_norm": 0.6829339265823364,
+ "learning_rate": 0.0006,
+ "loss": 6.654196739196777,
+ "step": 113
+ },
+ {
+ "epoch": 1.5871559633027523,
+ "grad_norm": 0.6534460186958313,
+ "learning_rate": 0.0006,
+ "loss": 6.675765037536621,
+ "step": 114
+ },
+ {
+ "epoch": 1.601135867190913,
+ "grad_norm": 0.6172244548797607,
+ "learning_rate": 0.0006,
+ "loss": 6.631234169006348,
+ "step": 115
+ },
+ {
+ "epoch": 1.6151157710790738,
+ "grad_norm": 0.5650008320808411,
+ "learning_rate": 0.0006,
+ "loss": 6.654262542724609,
+ "step": 116
+ },
+ {
+ "epoch": 1.6290956749672345,
+ "grad_norm": 0.3890475928783417,
+ "learning_rate": 0.0006,
+ "loss": 6.627526760101318,
+ "step": 117
+ },
+ {
+ "epoch": 1.6430755788553952,
+ "grad_norm": 0.6409873366355896,
+ "learning_rate": 0.0006,
+ "loss": 6.619794845581055,
+ "step": 118
+ },
+ {
+ "epoch": 1.6570554827435562,
+ "grad_norm": 0.5052326321601868,
+ "learning_rate": 0.0006,
+ "loss": 6.612556457519531,
+ "step": 119
+ },
+ {
+ "epoch": 1.671035386631717,
+ "grad_norm": 0.5001237988471985,
+ "learning_rate": 0.0006,
+ "loss": 6.577266693115234,
+ "step": 120
+ },
+ {
+ "epoch": 1.6850152905198776,
+ "grad_norm": 0.5328938364982605,
+ "learning_rate": 0.0006,
+ "loss": 6.59553337097168,
+ "step": 121
+ },
+ {
+ "epoch": 1.6989951944080386,
+ "grad_norm": 0.3568951189517975,
+ "learning_rate": 0.0006,
+ "loss": 6.602717399597168,
+ "step": 122
+ },
+ {
+ "epoch": 1.7129750982961993,
+ "grad_norm": 0.4017309546470642,
+ "learning_rate": 0.0006,
+ "loss": 6.589657783508301,
+ "step": 123
+ },
+ {
+ "epoch": 1.72695500218436,
+ "grad_norm": 0.21432629227638245,
+ "learning_rate": 0.0006,
+ "loss": 6.586555480957031,
+ "step": 124
+ },
+ {
+ "epoch": 1.7409349060725208,
+ "grad_norm": 0.21038052439689636,
+ "learning_rate": 0.0006,
+ "loss": 6.576569557189941,
+ "step": 125
+ },
+ {
+ "epoch": 1.7549148099606815,
+ "grad_norm": 0.23074904084205627,
+ "learning_rate": 0.0006,
+ "loss": 6.5880632400512695,
+ "step": 126
+ },
+ {
+ "epoch": 1.7688947138488422,
+ "grad_norm": 0.42963048815727234,
+ "learning_rate": 0.0006,
+ "loss": 6.603862762451172,
+ "step": 127
+ },
+ {
+ "epoch": 1.782874617737003,
+ "grad_norm": 0.361331045627594,
+ "learning_rate": 0.0006,
+ "loss": 6.579834938049316,
+ "step": 128
+ },
+ {
+ "epoch": 1.7968545216251637,
+ "grad_norm": 0.4951060712337494,
+ "learning_rate": 0.0006,
+ "loss": 6.570443630218506,
+ "step": 129
+ },
+ {
+ "epoch": 1.8108344255133246,
+ "grad_norm": 0.2258434295654297,
+ "learning_rate": 0.0006,
+ "loss": 6.5664777755737305,
+ "step": 130
+ },
+ {
+ "epoch": 1.8248143294014854,
+ "grad_norm": 0.2922155559062958,
+ "learning_rate": 0.0006,
+ "loss": 6.561326503753662,
+ "step": 131
+ },
+ {
+ "epoch": 1.838794233289646,
+ "grad_norm": 0.19068220257759094,
+ "learning_rate": 0.0006,
+ "loss": 6.528727054595947,
+ "step": 132
+ },
+ {
+ "epoch": 1.852774137177807,
+ "grad_norm": 0.2122010439634323,
+ "learning_rate": 0.0006,
+ "loss": 6.535636901855469,
+ "step": 133
+ },
+ {
+ "epoch": 1.8667540410659678,
+ "grad_norm": 0.25760164856910706,
+ "learning_rate": 0.0006,
+ "loss": 6.530498504638672,
+ "step": 134
+ },
+ {
+ "epoch": 1.8807339449541285,
+ "grad_norm": 0.1761016845703125,
+ "learning_rate": 0.0006,
+ "loss": 6.514466285705566,
+ "step": 135
+ },
+ {
+ "epoch": 1.8947138488422892,
+ "grad_norm": 0.2250051498413086,
+ "learning_rate": 0.0006,
+ "loss": 6.521268844604492,
+ "step": 136
+ },
+ {
+ "epoch": 1.90869375273045,
+ "grad_norm": 0.34458497166633606,
+ "learning_rate": 0.0006,
+ "loss": 6.512831687927246,
+ "step": 137
+ },
+ {
+ "epoch": 1.9226736566186107,
+ "grad_norm": 0.3468617796897888,
+ "learning_rate": 0.0006,
+ "loss": 6.515641689300537,
+ "step": 138
+ },
+ {
+ "epoch": 1.9366535605067714,
+ "grad_norm": 0.5051495432853699,
+ "learning_rate": 0.0006,
+ "loss": 6.5147905349731445,
+ "step": 139
+ },
+ {
+ "epoch": 1.9506334643949321,
+ "grad_norm": 0.7106727361679077,
+ "learning_rate": 0.0006,
+ "loss": 6.519277572631836,
+ "step": 140
+ },
+ {
+ "epoch": 1.964613368283093,
+ "grad_norm": 0.8881394267082214,
+ "learning_rate": 0.0006,
+ "loss": 6.526865482330322,
+ "step": 141
+ },
+ {
+ "epoch": 1.9785932721712538,
+ "grad_norm": 0.5552834272384644,
+ "learning_rate": 0.0006,
+ "loss": 6.469970226287842,
+ "step": 142
+ },
+ {
+ "epoch": 1.9925731760594148,
+ "grad_norm": 0.6903126835823059,
+ "learning_rate": 0.0006,
+ "loss": 6.476300239562988,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.47679027915000916,
+ "learning_rate": 0.0006,
+ "loss": 6.463827133178711,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 7.388528823852539,
+ "eval_runtime": 44.2519,
+ "eval_samples_per_second": 55.184,
+ "eval_steps_per_second": 3.457,
+ "step": 144
+ },
+ {
+ "epoch": 2.0139799038881607,
+ "grad_norm": 0.4719221293926239,
+ "learning_rate": 0.0006,
+ "loss": 6.480956077575684,
+ "step": 145
+ },
+ {
+ "epoch": 2.0279598077763215,
+ "grad_norm": 0.41137924790382385,
+ "learning_rate": 0.0006,
+ "loss": 6.449707984924316,
+ "step": 146
+ },
+ {
+ "epoch": 2.041939711664482,
+ "grad_norm": 0.4237765371799469,
+ "learning_rate": 0.0006,
+ "loss": 6.467435836791992,
+ "step": 147
+ },
+ {
+ "epoch": 2.055919615552643,
+ "grad_norm": 0.44081810116767883,
+ "learning_rate": 0.0006,
+ "loss": 6.436868667602539,
+ "step": 148
+ },
+ {
+ "epoch": 2.0698995194408036,
+ "grad_norm": 0.4163798391819,
+ "learning_rate": 0.0006,
+ "loss": 6.4642014503479,
+ "step": 149
+ },
+ {
+ "epoch": 2.083879423328965,
+ "grad_norm": 0.3831583261489868,
+ "learning_rate": 0.0006,
+ "loss": 6.454092025756836,
+ "step": 150
+ },
+ {
+ "epoch": 2.0978593272171255,
+ "grad_norm": 0.37721413373947144,
+ "learning_rate": 0.0006,
+ "loss": 6.426377296447754,
+ "step": 151
+ },
+ {
+ "epoch": 2.1118392311052863,
+ "grad_norm": 0.3323550224304199,
+ "learning_rate": 0.0006,
+ "loss": 6.421375274658203,
+ "step": 152
+ },
+ {
+ "epoch": 2.125819134993447,
+ "grad_norm": 0.47739624977111816,
+ "learning_rate": 0.0006,
+ "loss": 6.412004470825195,
+ "step": 153
+ },
+ {
+ "epoch": 2.1397990388816077,
+ "grad_norm": 0.8530274629592896,
+ "learning_rate": 0.0006,
+ "loss": 6.410468578338623,
+ "step": 154
+ },
+ {
+ "epoch": 2.1537789427697684,
+ "grad_norm": 0.6420364379882812,
+ "learning_rate": 0.0006,
+ "loss": 6.413525581359863,
+ "step": 155
+ },
+ {
+ "epoch": 2.167758846657929,
+ "grad_norm": 0.5005049109458923,
+ "learning_rate": 0.0006,
+ "loss": 6.401463508605957,
+ "step": 156
+ },
+ {
+ "epoch": 2.18173875054609,
+ "grad_norm": 0.3614683449268341,
+ "learning_rate": 0.0006,
+ "loss": 6.390063285827637,
+ "step": 157
+ },
+ {
+ "epoch": 2.1957186544342506,
+ "grad_norm": 0.595215380191803,
+ "learning_rate": 0.0006,
+ "loss": 6.369806289672852,
+ "step": 158
+ },
+ {
+ "epoch": 2.2096985583224114,
+ "grad_norm": 0.5700321793556213,
+ "learning_rate": 0.0006,
+ "loss": 6.368378639221191,
+ "step": 159
+ },
+ {
+ "epoch": 2.2236784622105725,
+ "grad_norm": 0.36273983120918274,
+ "learning_rate": 0.0006,
+ "loss": 6.366860389709473,
+ "step": 160
+ },
+ {
+ "epoch": 2.2376583660987333,
+ "grad_norm": 0.2850998342037201,
+ "learning_rate": 0.0006,
+ "loss": 6.352144718170166,
+ "step": 161
+ },
+ {
+ "epoch": 2.251638269986894,
+ "grad_norm": 0.38558584451675415,
+ "learning_rate": 0.0006,
+ "loss": 6.375765800476074,
+ "step": 162
+ },
+ {
+ "epoch": 2.2656181738750547,
+ "grad_norm": 0.34809231758117676,
+ "learning_rate": 0.0006,
+ "loss": 6.350445747375488,
+ "step": 163
+ },
+ {
+ "epoch": 2.2795980777632154,
+ "grad_norm": 0.5211818814277649,
+ "learning_rate": 0.0006,
+ "loss": 6.354585647583008,
+ "step": 164
+ },
+ {
+ "epoch": 2.293577981651376,
+ "grad_norm": 1.0809133052825928,
+ "learning_rate": 0.0006,
+ "loss": 6.3752007484436035,
+ "step": 165
+ },
+ {
+ "epoch": 2.307557885539537,
+ "grad_norm": 0.8293641209602356,
+ "learning_rate": 0.0006,
+ "loss": 6.35113525390625,
+ "step": 166
+ },
+ {
+ "epoch": 2.3215377894276976,
+ "grad_norm": 0.3428577780723572,
+ "learning_rate": 0.0006,
+ "loss": 6.334470748901367,
+ "step": 167
+ },
+ {
+ "epoch": 2.3355176933158583,
+ "grad_norm": 0.7587600946426392,
+ "learning_rate": 0.0006,
+ "loss": 6.353979587554932,
+ "step": 168
+ },
+ {
+ "epoch": 2.349497597204019,
+ "grad_norm": 0.4227249026298523,
+ "learning_rate": 0.0006,
+ "loss": 6.34018611907959,
+ "step": 169
+ },
+ {
+ "epoch": 2.36347750109218,
+ "grad_norm": 0.4226846694946289,
+ "learning_rate": 0.0006,
+ "loss": 6.290019989013672,
+ "step": 170
+ },
+ {
+ "epoch": 2.3774574049803405,
+ "grad_norm": 0.38412365317344666,
+ "learning_rate": 0.0006,
+ "loss": 6.309510231018066,
+ "step": 171
+ },
+ {
+ "epoch": 2.3914373088685017,
+ "grad_norm": 0.45698508620262146,
+ "learning_rate": 0.0006,
+ "loss": 6.283290863037109,
+ "step": 172
+ },
+ {
+ "epoch": 2.4054172127566624,
+ "grad_norm": 0.7575915455818176,
+ "learning_rate": 0.0006,
+ "loss": 6.306073188781738,
+ "step": 173
+ },
+ {
+ "epoch": 2.419397116644823,
+ "grad_norm": 0.695123553276062,
+ "learning_rate": 0.0006,
+ "loss": 6.308144569396973,
+ "step": 174
+ },
+ {
+ "epoch": 2.433377020532984,
+ "grad_norm": 0.5035743117332458,
+ "learning_rate": 0.0006,
+ "loss": 6.282073974609375,
+ "step": 175
+ },
+ {
+ "epoch": 2.4473569244211446,
+ "grad_norm": 0.3158020079135895,
+ "learning_rate": 0.0006,
+ "loss": 6.282169342041016,
+ "step": 176
+ },
+ {
+ "epoch": 2.4613368283093053,
+ "grad_norm": 0.4829689860343933,
+ "learning_rate": 0.0006,
+ "loss": 6.264578819274902,
+ "step": 177
+ },
+ {
+ "epoch": 2.475316732197466,
+ "grad_norm": 0.3992770314216614,
+ "learning_rate": 0.0006,
+ "loss": 6.228628158569336,
+ "step": 178
+ },
+ {
+ "epoch": 2.489296636085627,
+ "grad_norm": 0.40887606143951416,
+ "learning_rate": 0.0006,
+ "loss": 6.230792045593262,
+ "step": 179
+ },
+ {
+ "epoch": 2.5032765399737875,
+ "grad_norm": 0.3540310263633728,
+ "learning_rate": 0.0006,
+ "loss": 6.222573280334473,
+ "step": 180
+ },
+ {
+ "epoch": 2.5172564438619487,
+ "grad_norm": 0.496219664812088,
+ "learning_rate": 0.0006,
+ "loss": 6.212109565734863,
+ "step": 181
+ },
+ {
+ "epoch": 2.5312363477501094,
+ "grad_norm": 0.435173898935318,
+ "learning_rate": 0.0006,
+ "loss": 6.221210479736328,
+ "step": 182
+ },
+ {
+ "epoch": 2.54521625163827,
+ "grad_norm": 0.5364007949829102,
+ "learning_rate": 0.0006,
+ "loss": 6.217929840087891,
+ "step": 183
+ },
+ {
+ "epoch": 2.559196155526431,
+ "grad_norm": 0.5946390628814697,
+ "learning_rate": 0.0006,
+ "loss": 6.189267158508301,
+ "step": 184
+ },
+ {
+ "epoch": 2.5731760594145916,
+ "grad_norm": 0.41621312499046326,
+ "learning_rate": 0.0006,
+ "loss": 6.182415008544922,
+ "step": 185
+ },
+ {
+ "epoch": 2.5871559633027523,
+ "grad_norm": 0.5442072749137878,
+ "learning_rate": 0.0006,
+ "loss": 6.150757789611816,
+ "step": 186
+ },
+ {
+ "epoch": 2.601135867190913,
+ "grad_norm": 0.727843165397644,
+ "learning_rate": 0.0006,
+ "loss": 6.146082878112793,
+ "step": 187
+ },
+ {
+ "epoch": 2.615115771079074,
+ "grad_norm": 0.8898891806602478,
+ "learning_rate": 0.0006,
+ "loss": 6.190483093261719,
+ "step": 188
+ },
+ {
+ "epoch": 2.6290956749672345,
+ "grad_norm": 0.5173947215080261,
+ "learning_rate": 0.0006,
+ "loss": 6.151251792907715,
+ "step": 189
+ },
+ {
+ "epoch": 2.6430755788553952,
+ "grad_norm": 0.6476729512214661,
+ "learning_rate": 0.0006,
+ "loss": 6.154841423034668,
+ "step": 190
+ },
+ {
+ "epoch": 2.657055482743556,
+ "grad_norm": 0.3538810908794403,
+ "learning_rate": 0.0006,
+ "loss": 6.103879928588867,
+ "step": 191
+ },
+ {
+ "epoch": 2.6710353866317167,
+ "grad_norm": 0.4773508310317993,
+ "learning_rate": 0.0006,
+ "loss": 6.118101119995117,
+ "step": 192
+ },
+ {
+ "epoch": 2.6850152905198774,
+ "grad_norm": 0.29213786125183105,
+ "learning_rate": 0.0006,
+ "loss": 6.108916282653809,
+ "step": 193
+ },
+ {
+ "epoch": 2.6989951944080386,
+ "grad_norm": 0.40800607204437256,
+ "learning_rate": 0.0006,
+ "loss": 6.113438606262207,
+ "step": 194
+ },
+ {
+ "epoch": 2.7129750982961993,
+ "grad_norm": 0.31157299876213074,
+ "learning_rate": 0.0006,
+ "loss": 6.101809501647949,
+ "step": 195
+ },
+ {
+ "epoch": 2.72695500218436,
+ "grad_norm": 0.28660309314727783,
+ "learning_rate": 0.0006,
+ "loss": 6.075886249542236,
+ "step": 196
+ },
+ {
+ "epoch": 2.7409349060725208,
+ "grad_norm": 0.3810449540615082,
+ "learning_rate": 0.0006,
+ "loss": 6.053257942199707,
+ "step": 197
+ },
+ {
+ "epoch": 2.7549148099606815,
+ "grad_norm": 0.21741755306720734,
+ "learning_rate": 0.0006,
+ "loss": 6.013825416564941,
+ "step": 198
+ },
+ {
+ "epoch": 2.7688947138488422,
+ "grad_norm": 0.2777678966522217,
+ "learning_rate": 0.0006,
+ "loss": 6.054204940795898,
+ "step": 199
+ },
+ {
+ "epoch": 2.782874617737003,
+ "grad_norm": 0.28503066301345825,
+ "learning_rate": 0.0006,
+ "loss": 6.035628318786621,
+ "step": 200
+ },
+ {
+ "epoch": 2.7968545216251637,
+ "grad_norm": 0.41954755783081055,
+ "learning_rate": 0.0006,
+ "loss": 6.028354644775391,
+ "step": 201
+ },
+ {
+ "epoch": 2.810834425513325,
+ "grad_norm": 0.8785563111305237,
+ "learning_rate": 0.0006,
+ "loss": 6.055761337280273,
+ "step": 202
+ },
+ {
+ "epoch": 2.8248143294014856,
+ "grad_norm": 1.7459558248519897,
+ "learning_rate": 0.0006,
+ "loss": 6.11599588394165,
+ "step": 203
+ },
+ {
+ "epoch": 2.8387942332896463,
+ "grad_norm": 0.5725523233413696,
+ "learning_rate": 0.0006,
+ "loss": 6.024280548095703,
+ "step": 204
+ },
+ {
+ "epoch": 2.852774137177807,
+ "grad_norm": 0.5913150906562805,
+ "learning_rate": 0.0006,
+ "loss": 6.050281524658203,
+ "step": 205
+ },
+ {
+ "epoch": 2.8667540410659678,
+ "grad_norm": 0.5929384827613831,
+ "learning_rate": 0.0006,
+ "loss": 6.041121482849121,
+ "step": 206
+ },
+ {
+ "epoch": 2.8807339449541285,
+ "grad_norm": 0.5650724768638611,
+ "learning_rate": 0.0006,
+ "loss": 6.004258155822754,
+ "step": 207
+ },
+ {
+ "epoch": 2.894713848842289,
+ "grad_norm": 0.3420545756816864,
+ "learning_rate": 0.0006,
+ "loss": 5.983296871185303,
+ "step": 208
+ },
+ {
+ "epoch": 2.90869375273045,
+ "grad_norm": 0.2960914075374603,
+ "learning_rate": 0.0006,
+ "loss": 5.988578796386719,
+ "step": 209
+ },
+ {
+ "epoch": 2.9226736566186107,
+ "grad_norm": 0.3252662718296051,
+ "learning_rate": 0.0006,
+ "loss": 5.99103307723999,
+ "step": 210
+ },
+ {
+ "epoch": 2.9366535605067714,
+ "grad_norm": 0.4851132929325104,
+ "learning_rate": 0.0006,
+ "loss": 6.0028977394104,
+ "step": 211
+ },
+ {
+ "epoch": 2.950633464394932,
+ "grad_norm": 0.5639995336532593,
+ "learning_rate": 0.0006,
+ "loss": 5.965080738067627,
+ "step": 212
+ },
+ {
+ "epoch": 2.964613368283093,
+ "grad_norm": 0.4514601230621338,
+ "learning_rate": 0.0006,
+ "loss": 5.961450576782227,
+ "step": 213
+ },
+ {
+ "epoch": 2.9785932721712536,
+ "grad_norm": 0.5397921800613403,
+ "learning_rate": 0.0006,
+ "loss": 5.965290546417236,
+ "step": 214
+ },
+ {
+ "epoch": 2.9925731760594148,
+ "grad_norm": 0.4735587239265442,
+ "learning_rate": 0.0006,
+ "loss": 5.952754497528076,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.32061058282852173,
+ "learning_rate": 0.0006,
+ "loss": 5.961667060852051,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 6.8517303466796875,
+ "eval_runtime": 44.03,
+ "eval_samples_per_second": 55.462,
+ "eval_steps_per_second": 3.475,
+ "step": 216
+ },
+ {
+ "epoch": 3.0139799038881607,
+ "grad_norm": 0.3537784814834595,
+ "learning_rate": 0.0006,
+ "loss": 5.928008079528809,
+ "step": 217
+ },
+ {
+ "epoch": 3.0279598077763215,
+ "grad_norm": 0.40713080763816833,
+ "learning_rate": 0.0006,
+ "loss": 5.9150800704956055,
+ "step": 218
+ },
+ {
+ "epoch": 3.041939711664482,
+ "grad_norm": 0.2548826336860657,
+ "learning_rate": 0.0006,
+ "loss": 5.919757843017578,
+ "step": 219
+ },
+ {
+ "epoch": 3.055919615552643,
+ "grad_norm": 0.2818543016910553,
+ "learning_rate": 0.0006,
+ "loss": 5.913688659667969,
+ "step": 220
+ },
+ {
+ "epoch": 3.0698995194408036,
+ "grad_norm": 0.4196692705154419,
+ "learning_rate": 0.0006,
+ "loss": 5.8675336837768555,
+ "step": 221
+ },
+ {
+ "epoch": 3.083879423328965,
+ "grad_norm": 0.35272282361984253,
+ "learning_rate": 0.0006,
+ "loss": 5.878874778747559,
+ "step": 222
+ },
+ {
+ "epoch": 3.0978593272171255,
+ "grad_norm": 0.3254282772541046,
+ "learning_rate": 0.0006,
+ "loss": 5.8823041915893555,
+ "step": 223
+ },
+ {
+ "epoch": 3.1118392311052863,
+ "grad_norm": 0.4052561819553375,
+ "learning_rate": 0.0006,
+ "loss": 5.867744445800781,
+ "step": 224
+ },
+ {
+ "epoch": 3.125819134993447,
+ "grad_norm": 0.31246256828308105,
+ "learning_rate": 0.0006,
+ "loss": 5.886094093322754,
+ "step": 225
+ },
+ {
+ "epoch": 3.1397990388816077,
+ "grad_norm": 0.3479118347167969,
+ "learning_rate": 0.0006,
+ "loss": 5.850762367248535,
+ "step": 226
+ },
+ {
+ "epoch": 3.1537789427697684,
+ "grad_norm": 0.5037238597869873,
+ "learning_rate": 0.0006,
+ "loss": 5.844175815582275,
+ "step": 227
+ },
+ {
+ "epoch": 3.167758846657929,
+ "grad_norm": 0.6271815896034241,
+ "learning_rate": 0.0006,
+ "loss": 5.871790885925293,
+ "step": 228
+ },
+ {
+ "epoch": 3.18173875054609,
+ "grad_norm": 0.43838298320770264,
+ "learning_rate": 0.0006,
+ "loss": 5.844024658203125,
+ "step": 229
+ },
+ {
+ "epoch": 3.1957186544342506,
+ "grad_norm": 0.4755159616470337,
+ "learning_rate": 0.0006,
+ "loss": 5.846892356872559,
+ "step": 230
+ },
+ {
+ "epoch": 3.2096985583224114,
+ "grad_norm": 0.5229779481887817,
+ "learning_rate": 0.0006,
+ "loss": 5.827000617980957,
+ "step": 231
+ },
+ {
+ "epoch": 3.2236784622105725,
+ "grad_norm": 0.8264499306678772,
+ "learning_rate": 0.0006,
+ "loss": 5.867050647735596,
+ "step": 232
+ },
+ {
+ "epoch": 3.2376583660987333,
+ "grad_norm": 1.0607538223266602,
+ "learning_rate": 0.0006,
+ "loss": 5.877876281738281,
+ "step": 233
+ },
+ {
+ "epoch": 3.251638269986894,
+ "grad_norm": 0.7656505703926086,
+ "learning_rate": 0.0006,
+ "loss": 5.86760139465332,
+ "step": 234
+ },
+ {
+ "epoch": 3.2656181738750547,
+ "grad_norm": 0.7940183281898499,
+ "learning_rate": 0.0006,
+ "loss": 5.861355781555176,
+ "step": 235
+ },
+ {
+ "epoch": 3.2795980777632154,
+ "grad_norm": 0.45171424746513367,
+ "learning_rate": 0.0006,
+ "loss": 5.799808502197266,
+ "step": 236
+ },
+ {
+ "epoch": 3.293577981651376,
+ "grad_norm": 0.6174989342689514,
+ "learning_rate": 0.0006,
+ "loss": 5.8585920333862305,
+ "step": 237
+ },
+ {
+ "epoch": 3.307557885539537,
+ "grad_norm": 0.5341290831565857,
+ "learning_rate": 0.0006,
+ "loss": 5.8116044998168945,
+ "step": 238
+ },
+ {
+ "epoch": 3.3215377894276976,
+ "grad_norm": 0.3938343822956085,
+ "learning_rate": 0.0006,
+ "loss": 5.83797550201416,
+ "step": 239
+ },
+ {
+ "epoch": 3.3355176933158583,
+ "grad_norm": 0.5106972455978394,
+ "learning_rate": 0.0006,
+ "loss": 5.832303047180176,
+ "step": 240
+ },
+ {
+ "epoch": 3.349497597204019,
+ "grad_norm": 0.3791428506374359,
+ "learning_rate": 0.0006,
+ "loss": 5.794981956481934,
+ "step": 241
+ },
+ {
+ "epoch": 3.36347750109218,
+ "grad_norm": 0.42287978529930115,
+ "learning_rate": 0.0006,
+ "loss": 5.788144111633301,
+ "step": 242
+ },
+ {
+ "epoch": 3.3774574049803405,
+ "grad_norm": 0.27334436774253845,
+ "learning_rate": 0.0006,
+ "loss": 5.771070957183838,
+ "step": 243
+ },
+ {
+ "epoch": 3.3914373088685017,
+ "grad_norm": 0.2470470368862152,
+ "learning_rate": 0.0006,
+ "loss": 5.755998611450195,
+ "step": 244
+ },
+ {
+ "epoch": 3.4054172127566624,
+ "grad_norm": 0.3043915033340454,
+ "learning_rate": 0.0006,
+ "loss": 5.779492378234863,
+ "step": 245
+ },
+ {
+ "epoch": 3.419397116644823,
+ "grad_norm": 0.2960112988948822,
+ "learning_rate": 0.0006,
+ "loss": 5.750328063964844,
+ "step": 246
+ },
+ {
+ "epoch": 3.433377020532984,
+ "grad_norm": 0.3046723008155823,
+ "learning_rate": 0.0006,
+ "loss": 5.776517868041992,
+ "step": 247
+ },
+ {
+ "epoch": 3.4473569244211446,
+ "grad_norm": 0.22461780905723572,
+ "learning_rate": 0.0006,
+ "loss": 5.760989665985107,
+ "step": 248
+ },
+ {
+ "epoch": 3.4613368283093053,
+ "grad_norm": 0.24625757336616516,
+ "learning_rate": 0.0006,
+ "loss": 5.759706497192383,
+ "step": 249
+ },
+ {
+ "epoch": 3.475316732197466,
+ "grad_norm": 0.18207131326198578,
+ "learning_rate": 0.0006,
+ "loss": 5.747040748596191,
+ "step": 250
+ },
+ {
+ "epoch": 3.489296636085627,
+ "grad_norm": 0.16473834216594696,
+ "learning_rate": 0.0006,
+ "loss": 5.761577606201172,
+ "step": 251
+ },
+ {
+ "epoch": 3.5032765399737875,
+ "grad_norm": 0.25155773758888245,
+ "learning_rate": 0.0006,
+ "loss": 5.696502208709717,
+ "step": 252
+ },
+ {
+ "epoch": 3.5172564438619487,
+ "grad_norm": 0.24115674197673798,
+ "learning_rate": 0.0006,
+ "loss": 5.676957130432129,
+ "step": 253
+ },
+ {
+ "epoch": 3.5312363477501094,
+ "grad_norm": 0.40912172198295593,
+ "learning_rate": 0.0006,
+ "loss": 5.695090293884277,
+ "step": 254
+ },
+ {
+ "epoch": 3.54521625163827,
+ "grad_norm": 0.6727662682533264,
+ "learning_rate": 0.0006,
+ "loss": 5.722194671630859,
+ "step": 255
+ },
+ {
+ "epoch": 3.559196155526431,
+ "grad_norm": 0.8450719118118286,
+ "learning_rate": 0.0006,
+ "loss": 5.764680862426758,
+ "step": 256
+ },
+ {
+ "epoch": 3.5731760594145916,
+ "grad_norm": 0.9916183352470398,
+ "learning_rate": 0.0006,
+ "loss": 5.754530429840088,
+ "step": 257
+ },
+ {
+ "epoch": 3.5871559633027523,
+ "grad_norm": 1.041922688484192,
+ "learning_rate": 0.0006,
+ "loss": 5.781468391418457,
+ "step": 258
+ },
+ {
+ "epoch": 3.601135867190913,
+ "grad_norm": 0.972039520740509,
+ "learning_rate": 0.0006,
+ "loss": 5.760323524475098,
+ "step": 259
+ },
+ {
+ "epoch": 3.615115771079074,
+ "grad_norm": 0.6802462935447693,
+ "learning_rate": 0.0006,
+ "loss": 5.750064849853516,
+ "step": 260
+ },
+ {
+ "epoch": 3.6290956749672345,
+ "grad_norm": 0.48553529381752014,
+ "learning_rate": 0.0006,
+ "loss": 5.7464094161987305,
+ "step": 261
+ },
+ {
+ "epoch": 3.6430755788553952,
+ "grad_norm": 0.4066704213619232,
+ "learning_rate": 0.0006,
+ "loss": 5.719789505004883,
+ "step": 262
+ },
+ {
+ "epoch": 3.657055482743556,
+ "grad_norm": 0.3300860822200775,
+ "learning_rate": 0.0006,
+ "loss": 5.719920635223389,
+ "step": 263
+ },
+ {
+ "epoch": 3.6710353866317167,
+ "grad_norm": 0.3286679983139038,
+ "learning_rate": 0.0006,
+ "loss": 5.723465919494629,
+ "step": 264
+ },
+ {
+ "epoch": 3.6850152905198774,
+ "grad_norm": 0.27653390169143677,
+ "learning_rate": 0.0006,
+ "loss": 5.713820457458496,
+ "step": 265
+ },
+ {
+ "epoch": 3.6989951944080386,
+ "grad_norm": 0.26138055324554443,
+ "learning_rate": 0.0006,
+ "loss": 5.683221817016602,
+ "step": 266
+ },
+ {
+ "epoch": 3.7129750982961993,
+ "grad_norm": 0.23706290125846863,
+ "learning_rate": 0.0006,
+ "loss": 5.6896867752075195,
+ "step": 267
+ },
+ {
+ "epoch": 3.72695500218436,
+ "grad_norm": 0.2751729190349579,
+ "learning_rate": 0.0006,
+ "loss": 5.710301876068115,
+ "step": 268
+ },
+ {
+ "epoch": 3.7409349060725208,
+ "grad_norm": 0.255393385887146,
+ "learning_rate": 0.0006,
+ "loss": 5.687932968139648,
+ "step": 269
+ },
+ {
+ "epoch": 3.7549148099606815,
+ "grad_norm": 0.21453925967216492,
+ "learning_rate": 0.0006,
+ "loss": 5.68234395980835,
+ "step": 270
+ },
+ {
+ "epoch": 3.7688947138488422,
+ "grad_norm": 0.21771012246608734,
+ "learning_rate": 0.0006,
+ "loss": 5.683980464935303,
+ "step": 271
+ },
+ {
+ "epoch": 3.782874617737003,
+ "grad_norm": 0.1884593963623047,
+ "learning_rate": 0.0006,
+ "loss": 5.662779808044434,
+ "step": 272
+ },
+ {
+ "epoch": 3.7968545216251637,
+ "grad_norm": 0.20429612696170807,
+ "learning_rate": 0.0006,
+ "loss": 5.650941848754883,
+ "step": 273
+ },
+ {
+ "epoch": 3.810834425513325,
+ "grad_norm": 0.22586797177791595,
+ "learning_rate": 0.0006,
+ "loss": 5.639376640319824,
+ "step": 274
+ },
+ {
+ "epoch": 3.8248143294014856,
+ "grad_norm": 0.19651705026626587,
+ "learning_rate": 0.0006,
+ "loss": 5.612030029296875,
+ "step": 275
+ },
+ {
+ "epoch": 3.8387942332896463,
+ "grad_norm": 0.2125253826379776,
+ "learning_rate": 0.0006,
+ "loss": 5.622836589813232,
+ "step": 276
+ },
+ {
+ "epoch": 3.852774137177807,
+ "grad_norm": 0.2905234694480896,
+ "learning_rate": 0.0006,
+ "loss": 5.624594688415527,
+ "step": 277
+ },
+ {
+ "epoch": 3.8667540410659678,
+ "grad_norm": 0.2718426585197449,
+ "learning_rate": 0.0006,
+ "loss": 5.619892120361328,
+ "step": 278
+ },
+ {
+ "epoch": 3.8807339449541285,
+ "grad_norm": 0.26481127738952637,
+ "learning_rate": 0.0006,
+ "loss": 5.612496852874756,
+ "step": 279
+ },
+ {
+ "epoch": 3.894713848842289,
+ "grad_norm": 0.2876453399658203,
+ "learning_rate": 0.0006,
+ "loss": 5.59157133102417,
+ "step": 280
+ },
+ {
+ "epoch": 3.90869375273045,
+ "grad_norm": 0.22829554975032806,
+ "learning_rate": 0.0006,
+ "loss": 5.5884199142456055,
+ "step": 281
+ },
+ {
+ "epoch": 3.9226736566186107,
+ "grad_norm": 0.22852344810962677,
+ "learning_rate": 0.0006,
+ "loss": 5.618719100952148,
+ "step": 282
+ },
+ {
+ "epoch": 3.9366535605067714,
+ "grad_norm": 0.37366563081741333,
+ "learning_rate": 0.0006,
+ "loss": 5.611738204956055,
+ "step": 283
+ },
+ {
+ "epoch": 3.950633464394932,
+ "grad_norm": 0.5650382041931152,
+ "learning_rate": 0.0006,
+ "loss": 5.606371879577637,
+ "step": 284
+ },
+ {
+ "epoch": 3.964613368283093,
+ "grad_norm": 0.5960066914558411,
+ "learning_rate": 0.0006,
+ "loss": 5.595022201538086,
+ "step": 285
+ },
+ {
+ "epoch": 3.9785932721712536,
+ "grad_norm": 0.3561663031578064,
+ "learning_rate": 0.0006,
+ "loss": 5.581035614013672,
+ "step": 286
+ },
+ {
+ "epoch": 3.9925731760594148,
+ "grad_norm": 0.44699913263320923,
+ "learning_rate": 0.0006,
+ "loss": 5.568033218383789,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.42783990502357483,
+ "learning_rate": 0.0006,
+ "loss": 5.571993827819824,
+ "step": 288
+ },
+ {
+ "epoch": 4.0,
+ "eval_loss": 6.349016189575195,
+ "eval_runtime": 44.3326,
+ "eval_samples_per_second": 55.084,
+ "eval_steps_per_second": 3.451,
+ "step": 288
+ },
+ {
+ "epoch": 4.013979903888161,
+ "grad_norm": 0.41305896639823914,
+ "learning_rate": 0.0006,
+ "loss": 5.562954902648926,
+ "step": 289
+ },
+ {
+ "epoch": 4.0279598077763215,
+ "grad_norm": 0.3966459035873413,
+ "learning_rate": 0.0006,
+ "loss": 5.5671916007995605,
+ "step": 290
+ },
+ {
+ "epoch": 4.041939711664482,
+ "grad_norm": 0.4846104085445404,
+ "learning_rate": 0.0006,
+ "loss": 5.548027038574219,
+ "step": 291
+ },
+ {
+ "epoch": 4.055919615552643,
+ "grad_norm": 0.5916333794593811,
+ "learning_rate": 0.0006,
+ "loss": 5.5900068283081055,
+ "step": 292
+ },
+ {
+ "epoch": 4.069899519440804,
+ "grad_norm": 0.5973889231681824,
+ "learning_rate": 0.0006,
+ "loss": 5.537594795227051,
+ "step": 293
+ },
+ {
+ "epoch": 4.083879423328964,
+ "grad_norm": 0.4190494418144226,
+ "learning_rate": 0.0006,
+ "loss": 5.534749984741211,
+ "step": 294
+ },
+ {
+ "epoch": 4.097859327217125,
+ "grad_norm": 0.5956901907920837,
+ "learning_rate": 0.0006,
+ "loss": 5.554540634155273,
+ "step": 295
+ },
+ {
+ "epoch": 4.111839231105286,
+ "grad_norm": 0.8257920742034912,
+ "learning_rate": 0.0006,
+ "loss": 5.5728068351745605,
+ "step": 296
+ },
+ {
+ "epoch": 4.1258191349934465,
+ "grad_norm": 0.7241750955581665,
+ "learning_rate": 0.0006,
+ "loss": 5.5643815994262695,
+ "step": 297
+ },
+ {
+ "epoch": 4.139799038881607,
+ "grad_norm": 0.45730507373809814,
+ "learning_rate": 0.0006,
+ "loss": 5.554225921630859,
+ "step": 298
+ },
+ {
+ "epoch": 4.153778942769769,
+ "grad_norm": 0.5166977643966675,
+ "learning_rate": 0.0006,
+ "loss": 5.540790557861328,
+ "step": 299
+ },
+ {
+ "epoch": 4.16775884665793,
+ "grad_norm": 0.433237761259079,
+ "learning_rate": 0.0006,
+ "loss": 5.536884784698486,
+ "step": 300
+ },
+ {
+ "epoch": 4.18173875054609,
+ "grad_norm": 0.3369830250740051,
+ "learning_rate": 0.0006,
+ "loss": 5.532837867736816,
+ "step": 301
+ },
+ {
+ "epoch": 4.195718654434251,
+ "grad_norm": 0.33091458678245544,
+ "learning_rate": 0.0006,
+ "loss": 5.547643661499023,
+ "step": 302
+ },
+ {
+ "epoch": 4.209698558322412,
+ "grad_norm": 0.36462724208831787,
+ "learning_rate": 0.0006,
+ "loss": 5.525021076202393,
+ "step": 303
+ },
+ {
+ "epoch": 4.2236784622105725,
+ "grad_norm": 0.3342771530151367,
+ "learning_rate": 0.0006,
+ "loss": 5.512082099914551,
+ "step": 304
+ },
+ {
+ "epoch": 4.237658366098733,
+ "grad_norm": 0.26784762740135193,
+ "learning_rate": 0.0006,
+ "loss": 5.488072395324707,
+ "step": 305
+ },
+ {
+ "epoch": 4.251638269986894,
+ "grad_norm": 0.25986987352371216,
+ "learning_rate": 0.0006,
+ "loss": 5.4960455894470215,
+ "step": 306
+ },
+ {
+ "epoch": 4.265618173875055,
+ "grad_norm": 0.24595795571804047,
+ "learning_rate": 0.0006,
+ "loss": 5.513367176055908,
+ "step": 307
+ },
+ {
+ "epoch": 4.279598077763215,
+ "grad_norm": 0.2224857211112976,
+ "learning_rate": 0.0006,
+ "loss": 5.465205192565918,
+ "step": 308
+ },
+ {
+ "epoch": 4.293577981651376,
+ "grad_norm": 0.26799243688583374,
+ "learning_rate": 0.0006,
+ "loss": 5.476632118225098,
+ "step": 309
+ },
+ {
+ "epoch": 4.307557885539537,
+ "grad_norm": 0.20443417131900787,
+ "learning_rate": 0.0006,
+ "loss": 5.442601203918457,
+ "step": 310
+ },
+ {
+ "epoch": 4.321537789427698,
+ "grad_norm": 0.2275059074163437,
+ "learning_rate": 0.0006,
+ "loss": 5.453519344329834,
+ "step": 311
+ },
+ {
+ "epoch": 4.335517693315858,
+ "grad_norm": 0.2860901951789856,
+ "learning_rate": 0.0006,
+ "loss": 5.439424514770508,
+ "step": 312
+ },
+ {
+ "epoch": 4.349497597204019,
+ "grad_norm": 0.3378142714500427,
+ "learning_rate": 0.0006,
+ "loss": 5.476953983306885,
+ "step": 313
+ },
+ {
+ "epoch": 4.36347750109218,
+ "grad_norm": 0.3487110733985901,
+ "learning_rate": 0.0006,
+ "loss": 5.47003698348999,
+ "step": 314
+ },
+ {
+ "epoch": 4.3774574049803405,
+ "grad_norm": 0.3655227720737457,
+ "learning_rate": 0.0006,
+ "loss": 5.454250812530518,
+ "step": 315
+ },
+ {
+ "epoch": 4.391437308868501,
+ "grad_norm": 0.3754786252975464,
+ "learning_rate": 0.0006,
+ "loss": 5.475249290466309,
+ "step": 316
+ },
+ {
+ "epoch": 4.405417212756662,
+ "grad_norm": 0.42494088411331177,
+ "learning_rate": 0.0006,
+ "loss": 5.4552459716796875,
+ "step": 317
+ },
+ {
+ "epoch": 4.419397116644823,
+ "grad_norm": 0.4914703667163849,
+ "learning_rate": 0.0006,
+ "loss": 5.431845188140869,
+ "step": 318
+ },
+ {
+ "epoch": 4.433377020532983,
+ "grad_norm": 0.42470860481262207,
+ "learning_rate": 0.0006,
+ "loss": 5.454581260681152,
+ "step": 319
+ },
+ {
+ "epoch": 4.447356924421145,
+ "grad_norm": 0.3828011155128479,
+ "learning_rate": 0.0006,
+ "loss": 5.435178756713867,
+ "step": 320
+ },
+ {
+ "epoch": 4.461336828309306,
+ "grad_norm": 0.47256892919540405,
+ "learning_rate": 0.0006,
+ "loss": 5.428861618041992,
+ "step": 321
+ },
+ {
+ "epoch": 4.4753167321974665,
+ "grad_norm": 0.5665146708488464,
+ "learning_rate": 0.0006,
+ "loss": 5.424633026123047,
+ "step": 322
+ },
+ {
+ "epoch": 4.489296636085627,
+ "grad_norm": 0.48146721720695496,
+ "learning_rate": 0.0006,
+ "loss": 5.4577860832214355,
+ "step": 323
+ },
+ {
+ "epoch": 4.503276539973788,
+ "grad_norm": 0.3378535509109497,
+ "learning_rate": 0.0006,
+ "loss": 5.422727108001709,
+ "step": 324
+ },
+ {
+ "epoch": 4.517256443861949,
+ "grad_norm": 0.41981473565101624,
+ "learning_rate": 0.0006,
+ "loss": 5.418993949890137,
+ "step": 325
+ },
+ {
+ "epoch": 4.531236347750109,
+ "grad_norm": 0.39389684796333313,
+ "learning_rate": 0.0006,
+ "loss": 5.41835880279541,
+ "step": 326
+ },
+ {
+ "epoch": 4.54521625163827,
+ "grad_norm": 0.5912176370620728,
+ "learning_rate": 0.0006,
+ "loss": 5.40073299407959,
+ "step": 327
+ },
+ {
+ "epoch": 4.559196155526431,
+ "grad_norm": 0.6877487897872925,
+ "learning_rate": 0.0006,
+ "loss": 5.445301055908203,
+ "step": 328
+ },
+ {
+ "epoch": 4.573176059414592,
+ "grad_norm": 0.580555260181427,
+ "learning_rate": 0.0006,
+ "loss": 5.431069374084473,
+ "step": 329
+ },
+ {
+ "epoch": 4.587155963302752,
+ "grad_norm": 0.5974457859992981,
+ "learning_rate": 0.0006,
+ "loss": 5.422694206237793,
+ "step": 330
+ },
+ {
+ "epoch": 4.601135867190913,
+ "grad_norm": 0.722481906414032,
+ "learning_rate": 0.0006,
+ "loss": 5.447752952575684,
+ "step": 331
+ },
+ {
+ "epoch": 4.615115771079074,
+ "grad_norm": 0.7687886953353882,
+ "learning_rate": 0.0006,
+ "loss": 5.437956809997559,
+ "step": 332
+ },
+ {
+ "epoch": 4.6290956749672345,
+ "grad_norm": 0.7368173003196716,
+ "learning_rate": 0.0006,
+ "loss": 5.4367241859436035,
+ "step": 333
+ },
+ {
+ "epoch": 4.643075578855395,
+ "grad_norm": 0.6650524139404297,
+ "learning_rate": 0.0006,
+ "loss": 5.4288434982299805,
+ "step": 334
+ },
+ {
+ "epoch": 4.657055482743556,
+ "grad_norm": 0.4997614920139313,
+ "learning_rate": 0.0006,
+ "loss": 5.412769317626953,
+ "step": 335
+ },
+ {
+ "epoch": 4.671035386631717,
+ "grad_norm": 0.44208982586860657,
+ "learning_rate": 0.0006,
+ "loss": 5.42405366897583,
+ "step": 336
+ },
+ {
+ "epoch": 4.685015290519877,
+ "grad_norm": 0.39510273933410645,
+ "learning_rate": 0.0006,
+ "loss": 5.402547836303711,
+ "step": 337
+ },
+ {
+ "epoch": 4.698995194408038,
+ "grad_norm": 0.44970476627349854,
+ "learning_rate": 0.0006,
+ "loss": 5.377168655395508,
+ "step": 338
+ },
+ {
+ "epoch": 4.712975098296199,
+ "grad_norm": 0.3902331590652466,
+ "learning_rate": 0.0006,
+ "loss": 5.401622772216797,
+ "step": 339
+ },
+ {
+ "epoch": 4.72695500218436,
+ "grad_norm": 0.33485135436058044,
+ "learning_rate": 0.0006,
+ "loss": 5.397945880889893,
+ "step": 340
+ },
+ {
+ "epoch": 4.740934906072521,
+ "grad_norm": 0.29062309861183167,
+ "learning_rate": 0.0006,
+ "loss": 5.356175422668457,
+ "step": 341
+ },
+ {
+ "epoch": 4.754914809960681,
+ "grad_norm": 0.23617377877235413,
+ "learning_rate": 0.0006,
+ "loss": 5.388517379760742,
+ "step": 342
+ },
+ {
+ "epoch": 4.768894713848843,
+ "grad_norm": 0.2704737186431885,
+ "learning_rate": 0.0006,
+ "loss": 5.3746137619018555,
+ "step": 343
+ },
+ {
+ "epoch": 4.782874617737003,
+ "grad_norm": 0.20488551259040833,
+ "learning_rate": 0.0006,
+ "loss": 5.3754472732543945,
+ "step": 344
+ },
+ {
+ "epoch": 4.796854521625164,
+ "grad_norm": 0.2007082849740982,
+ "learning_rate": 0.0006,
+ "loss": 5.3538618087768555,
+ "step": 345
+ },
+ {
+ "epoch": 4.810834425513325,
+ "grad_norm": 0.21732935309410095,
+ "learning_rate": 0.0006,
+ "loss": 5.351774215698242,
+ "step": 346
+ },
+ {
+ "epoch": 4.824814329401486,
+ "grad_norm": 0.1944841742515564,
+ "learning_rate": 0.0006,
+ "loss": 5.357545852661133,
+ "step": 347
+ },
+ {
+ "epoch": 4.838794233289646,
+ "grad_norm": 0.1953933835029602,
+ "learning_rate": 0.0006,
+ "loss": 5.321681022644043,
+ "step": 348
+ },
+ {
+ "epoch": 4.852774137177807,
+ "grad_norm": 0.1743433028459549,
+ "learning_rate": 0.0006,
+ "loss": 5.340302467346191,
+ "step": 349
+ },
+ {
+ "epoch": 4.866754041065968,
+ "grad_norm": 0.19655466079711914,
+ "learning_rate": 0.0006,
+ "loss": 5.325471878051758,
+ "step": 350
+ },
+ {
+ "epoch": 4.8807339449541285,
+ "grad_norm": 0.15761791169643402,
+ "learning_rate": 0.0006,
+ "loss": 5.3453240394592285,
+ "step": 351
+ },
+ {
+ "epoch": 4.894713848842289,
+ "grad_norm": 0.19164425134658813,
+ "learning_rate": 0.0006,
+ "loss": 5.315583229064941,
+ "step": 352
+ },
+ {
+ "epoch": 4.90869375273045,
+ "grad_norm": 0.28084540367126465,
+ "learning_rate": 0.0006,
+ "loss": 5.309171676635742,
+ "step": 353
+ },
+ {
+ "epoch": 4.922673656618611,
+ "grad_norm": 0.4681853652000427,
+ "learning_rate": 0.0006,
+ "loss": 5.318211078643799,
+ "step": 354
+ },
+ {
+ "epoch": 4.936653560506771,
+ "grad_norm": 0.6417295932769775,
+ "learning_rate": 0.0006,
+ "loss": 5.309263706207275,
+ "step": 355
+ },
+ {
+ "epoch": 4.950633464394932,
+ "grad_norm": 0.501312792301178,
+ "learning_rate": 0.0006,
+ "loss": 5.321534156799316,
+ "step": 356
+ },
+ {
+ "epoch": 4.964613368283093,
+ "grad_norm": 0.47502145171165466,
+ "learning_rate": 0.0006,
+ "loss": 5.323659896850586,
+ "step": 357
+ },
+ {
+ "epoch": 4.978593272171254,
+ "grad_norm": 0.5366594791412354,
+ "learning_rate": 0.0006,
+ "loss": 5.327367782592773,
+ "step": 358
+ },
+ {
+ "epoch": 4.992573176059414,
+ "grad_norm": 0.6986395120620728,
+ "learning_rate": 0.0006,
+ "loss": 5.311097145080566,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.6626625657081604,
+ "learning_rate": 0.0006,
+ "loss": 5.337558269500732,
+ "step": 360
+ },
+ {
+ "epoch": 5.0,
+ "eval_loss": 5.929230690002441,
+ "eval_runtime": 44.5268,
+ "eval_samples_per_second": 54.843,
+ "eval_steps_per_second": 3.436,
+ "step": 360
+ },
+ {
+ "epoch": 5.013979903888161,
+ "grad_norm": 0.7383704781532288,
+ "learning_rate": 0.0006,
+ "loss": 5.315563678741455,
+ "step": 361
+ },
+ {
+ "epoch": 5.0279598077763215,
+ "grad_norm": 0.7730138301849365,
+ "learning_rate": 0.0006,
+ "loss": 5.324905872344971,
+ "step": 362
+ },
+ {
+ "epoch": 5.041939711664482,
+ "grad_norm": 0.8170825839042664,
+ "learning_rate": 0.0006,
+ "loss": 5.350251197814941,
+ "step": 363
+ },
+ {
+ "epoch": 5.055919615552643,
+ "grad_norm": 0.6950958371162415,
+ "learning_rate": 0.0006,
+ "loss": 5.338744163513184,
+ "step": 364
+ },
+ {
+ "epoch": 5.069899519440804,
+ "grad_norm": 0.5582894086837769,
+ "learning_rate": 0.0006,
+ "loss": 5.340539932250977,
+ "step": 365
+ },
+ {
+ "epoch": 5.083879423328964,
+ "grad_norm": 0.4772159159183502,
+ "learning_rate": 0.0006,
+ "loss": 5.344161033630371,
+ "step": 366
+ },
+ {
+ "epoch": 5.097859327217125,
+ "grad_norm": 0.5432839393615723,
+ "learning_rate": 0.0006,
+ "loss": 5.312403678894043,
+ "step": 367
+ },
+ {
+ "epoch": 5.111839231105286,
+ "grad_norm": 0.4944784641265869,
+ "learning_rate": 0.0006,
+ "loss": 5.30281925201416,
+ "step": 368
+ },
+ {
+ "epoch": 5.1258191349934465,
+ "grad_norm": 0.4298315942287445,
+ "learning_rate": 0.0006,
+ "loss": 5.29564094543457,
+ "step": 369
+ },
+ {
+ "epoch": 5.139799038881607,
+ "grad_norm": 0.349889874458313,
+ "learning_rate": 0.0006,
+ "loss": 5.287062644958496,
+ "step": 370
+ },
+ {
+ "epoch": 5.153778942769769,
+ "grad_norm": 0.2823719084262848,
+ "learning_rate": 0.0006,
+ "loss": 5.28826904296875,
+ "step": 371
+ },
+ {
+ "epoch": 5.16775884665793,
+ "grad_norm": 0.32975050806999207,
+ "learning_rate": 0.0006,
+ "loss": 5.256399631500244,
+ "step": 372
+ },
+ {
+ "epoch": 5.18173875054609,
+ "grad_norm": 0.2963952124118805,
+ "learning_rate": 0.0006,
+ "loss": 5.273757457733154,
+ "step": 373
+ },
+ {
+ "epoch": 5.195718654434251,
+ "grad_norm": 0.21345984935760498,
+ "learning_rate": 0.0006,
+ "loss": 5.274978160858154,
+ "step": 374
+ },
+ {
+ "epoch": 5.209698558322412,
+ "grad_norm": 0.2363101840019226,
+ "learning_rate": 0.0006,
+ "loss": 5.261585235595703,
+ "step": 375
+ },
+ {
+ "epoch": 5.2236784622105725,
+ "grad_norm": 0.19626963138580322,
+ "learning_rate": 0.0006,
+ "loss": 5.259700298309326,
+ "step": 376
+ },
+ {
+ "epoch": 5.237658366098733,
+ "grad_norm": 0.21083571016788483,
+ "learning_rate": 0.0006,
+ "loss": 5.233585357666016,
+ "step": 377
+ },
+ {
+ "epoch": 5.251638269986894,
+ "grad_norm": 0.2273513823747635,
+ "learning_rate": 0.0006,
+ "loss": 5.231740474700928,
+ "step": 378
+ },
+ {
+ "epoch": 5.265618173875055,
+ "grad_norm": 0.18299247324466705,
+ "learning_rate": 0.0006,
+ "loss": 5.251256465911865,
+ "step": 379
+ },
+ {
+ "epoch": 5.279598077763215,
+ "grad_norm": 0.19578224420547485,
+ "learning_rate": 0.0006,
+ "loss": 5.230329513549805,
+ "step": 380
+ },
+ {
+ "epoch": 5.293577981651376,
+ "grad_norm": 0.20308879017829895,
+ "learning_rate": 0.0006,
+ "loss": 5.243951797485352,
+ "step": 381
+ },
+ {
+ "epoch": 5.307557885539537,
+ "grad_norm": 0.21053212881088257,
+ "learning_rate": 0.0006,
+ "loss": 5.210272789001465,
+ "step": 382
+ },
+ {
+ "epoch": 5.321537789427698,
+ "grad_norm": 0.21852520108222961,
+ "learning_rate": 0.0006,
+ "loss": 5.215418815612793,
+ "step": 383
+ },
+ {
+ "epoch": 5.335517693315858,
+ "grad_norm": 0.24872010946273804,
+ "learning_rate": 0.0006,
+ "loss": 5.225139617919922,
+ "step": 384
+ },
+ {
+ "epoch": 5.349497597204019,
+ "grad_norm": 0.27780187129974365,
+ "learning_rate": 0.0006,
+ "loss": 5.241010665893555,
+ "step": 385
+ },
+ {
+ "epoch": 5.36347750109218,
+ "grad_norm": 0.261767715215683,
+ "learning_rate": 0.0006,
+ "loss": 5.230723857879639,
+ "step": 386
+ },
+ {
+ "epoch": 5.3774574049803405,
+ "grad_norm": 0.2111261785030365,
+ "learning_rate": 0.0006,
+ "loss": 5.1848602294921875,
+ "step": 387
+ },
+ {
+ "epoch": 5.391437308868501,
+ "grad_norm": 0.24325387179851532,
+ "learning_rate": 0.0006,
+ "loss": 5.180911064147949,
+ "step": 388
+ },
+ {
+ "epoch": 5.405417212756662,
+ "grad_norm": 0.19542962312698364,
+ "learning_rate": 0.0006,
+ "loss": 5.189907073974609,
+ "step": 389
+ },
+ {
+ "epoch": 5.419397116644823,
+ "grad_norm": 0.20489346981048584,
+ "learning_rate": 0.0006,
+ "loss": 5.184634208679199,
+ "step": 390
+ },
+ {
+ "epoch": 5.433377020532983,
+ "grad_norm": 0.2753409147262573,
+ "learning_rate": 0.0006,
+ "loss": 5.190083026885986,
+ "step": 391
+ },
+ {
+ "epoch": 5.447356924421145,
+ "grad_norm": 0.3758019208908081,
+ "learning_rate": 0.0006,
+ "loss": 5.189423561096191,
+ "step": 392
+ },
+ {
+ "epoch": 5.461336828309306,
+ "grad_norm": 0.4425095021724701,
+ "learning_rate": 0.0006,
+ "loss": 5.17152214050293,
+ "step": 393
+ },
+ {
+ "epoch": 5.4753167321974665,
+ "grad_norm": 0.39721858501434326,
+ "learning_rate": 0.0006,
+ "loss": 5.189178466796875,
+ "step": 394
+ },
+ {
+ "epoch": 5.489296636085627,
+ "grad_norm": 0.43441957235336304,
+ "learning_rate": 0.0006,
+ "loss": 5.1823577880859375,
+ "step": 395
+ },
+ {
+ "epoch": 5.503276539973788,
+ "grad_norm": 0.3583861291408539,
+ "learning_rate": 0.0006,
+ "loss": 5.160187721252441,
+ "step": 396
+ },
+ {
+ "epoch": 5.517256443861949,
+ "grad_norm": 0.323290079832077,
+ "learning_rate": 0.0006,
+ "loss": 5.113046646118164,
+ "step": 397
+ },
+ {
+ "epoch": 5.531236347750109,
+ "grad_norm": 0.3049418330192566,
+ "learning_rate": 0.0006,
+ "loss": 5.172209739685059,
+ "step": 398
+ },
+ {
+ "epoch": 5.54521625163827,
+ "grad_norm": 0.3253744840621948,
+ "learning_rate": 0.0006,
+ "loss": 5.1970720291137695,
+ "step": 399
+ },
+ {
+ "epoch": 5.559196155526431,
+ "grad_norm": 0.3232555091381073,
+ "learning_rate": 0.0006,
+ "loss": 5.173195838928223,
+ "step": 400
+ },
+ {
+ "epoch": 5.573176059414592,
+ "grad_norm": 0.33751845359802246,
+ "learning_rate": 0.0006,
+ "loss": 5.137526988983154,
+ "step": 401
+ },
+ {
+ "epoch": 5.587155963302752,
+ "grad_norm": 0.45970913767814636,
+ "learning_rate": 0.0006,
+ "loss": 5.123377799987793,
+ "step": 402
+ },
+ {
+ "epoch": 5.601135867190913,
+ "grad_norm": 0.5383784770965576,
+ "learning_rate": 0.0006,
+ "loss": 5.154180526733398,
+ "step": 403
+ },
+ {
+ "epoch": 5.615115771079074,
+ "grad_norm": 0.45765912532806396,
+ "learning_rate": 0.0006,
+ "loss": 5.1485209465026855,
+ "step": 404
+ },
+ {
+ "epoch": 5.6290956749672345,
+ "grad_norm": 0.5079503059387207,
+ "learning_rate": 0.0006,
+ "loss": 5.158293724060059,
+ "step": 405
+ },
+ {
+ "epoch": 5.643075578855395,
+ "grad_norm": 0.4860183894634247,
+ "learning_rate": 0.0006,
+ "loss": 5.1610212326049805,
+ "step": 406
+ },
+ {
+ "epoch": 5.657055482743556,
+ "grad_norm": 0.4065648913383484,
+ "learning_rate": 0.0006,
+ "loss": 5.1260786056518555,
+ "step": 407
+ },
+ {
+ "epoch": 5.671035386631717,
+ "grad_norm": 0.39606142044067383,
+ "learning_rate": 0.0006,
+ "loss": 5.1598711013793945,
+ "step": 408
+ },
+ {
+ "epoch": 5.685015290519877,
+ "grad_norm": 0.4705151319503784,
+ "learning_rate": 0.0006,
+ "loss": 5.166455268859863,
+ "step": 409
+ },
+ {
+ "epoch": 5.698995194408038,
+ "grad_norm": 0.5040799379348755,
+ "learning_rate": 0.0006,
+ "loss": 5.1408209800720215,
+ "step": 410
+ },
+ {
+ "epoch": 5.712975098296199,
+ "grad_norm": 0.5012556910514832,
+ "learning_rate": 0.0006,
+ "loss": 5.144109725952148,
+ "step": 411
+ },
+ {
+ "epoch": 5.72695500218436,
+ "grad_norm": 0.44301411509513855,
+ "learning_rate": 0.0006,
+ "loss": 5.155509948730469,
+ "step": 412
+ },
+ {
+ "epoch": 5.740934906072521,
+ "grad_norm": 0.36632269620895386,
+ "learning_rate": 0.0006,
+ "loss": 5.123111248016357,
+ "step": 413
+ },
+ {
+ "epoch": 5.754914809960681,
+ "grad_norm": 0.2980524003505707,
+ "learning_rate": 0.0006,
+ "loss": 5.1355719566345215,
+ "step": 414
+ },
+ {
+ "epoch": 5.768894713848843,
+ "grad_norm": 0.3441782295703888,
+ "learning_rate": 0.0006,
+ "loss": 5.132327079772949,
+ "step": 415
+ },
+ {
+ "epoch": 5.782874617737003,
+ "grad_norm": 0.4150780737400055,
+ "learning_rate": 0.0006,
+ "loss": 5.148543357849121,
+ "step": 416
+ },
+ {
+ "epoch": 5.796854521625164,
+ "grad_norm": 0.48417383432388306,
+ "learning_rate": 0.0006,
+ "loss": 5.104989528656006,
+ "step": 417
+ },
+ {
+ "epoch": 5.810834425513325,
+ "grad_norm": 0.3216031491756439,
+ "learning_rate": 0.0006,
+ "loss": 5.0926127433776855,
+ "step": 418
+ },
+ {
+ "epoch": 5.824814329401486,
+ "grad_norm": 0.2821158468723297,
+ "learning_rate": 0.0006,
+ "loss": 5.112299919128418,
+ "step": 419
+ },
+ {
+ "epoch": 5.838794233289646,
+ "grad_norm": 0.29821011424064636,
+ "learning_rate": 0.0006,
+ "loss": 5.091662406921387,
+ "step": 420
+ },
+ {
+ "epoch": 5.852774137177807,
+ "grad_norm": 0.30570563673973083,
+ "learning_rate": 0.0006,
+ "loss": 5.137539863586426,
+ "step": 421
+ },
+ {
+ "epoch": 5.866754041065968,
+ "grad_norm": 0.4029594957828522,
+ "learning_rate": 0.0006,
+ "loss": 5.112751007080078,
+ "step": 422
+ },
+ {
+ "epoch": 5.8807339449541285,
+ "grad_norm": 0.3878514766693115,
+ "learning_rate": 0.0006,
+ "loss": 5.094973564147949,
+ "step": 423
+ },
+ {
+ "epoch": 5.894713848842289,
+ "grad_norm": 0.31936126947402954,
+ "learning_rate": 0.0006,
+ "loss": 5.081070899963379,
+ "step": 424
+ },
+ {
+ "epoch": 5.90869375273045,
+ "grad_norm": 0.3309082090854645,
+ "learning_rate": 0.0006,
+ "loss": 5.06803560256958,
+ "step": 425
+ },
+ {
+ "epoch": 5.922673656618611,
+ "grad_norm": 0.27830439805984497,
+ "learning_rate": 0.0006,
+ "loss": 5.044766426086426,
+ "step": 426
+ },
+ {
+ "epoch": 5.936653560506771,
+ "grad_norm": 0.3301011919975281,
+ "learning_rate": 0.0006,
+ "loss": 5.093942165374756,
+ "step": 427
+ },
+ {
+ "epoch": 5.950633464394932,
+ "grad_norm": 0.40845948457717896,
+ "learning_rate": 0.0006,
+ "loss": 5.0889458656311035,
+ "step": 428
+ },
+ {
+ "epoch": 5.964613368283093,
+ "grad_norm": 0.4412153959274292,
+ "learning_rate": 0.0006,
+ "loss": 5.064834117889404,
+ "step": 429
+ },
+ {
+ "epoch": 5.978593272171254,
+ "grad_norm": 0.3592590093612671,
+ "learning_rate": 0.0006,
+ "loss": 5.066648006439209,
+ "step": 430
+ },
+ {
+ "epoch": 5.992573176059414,
+ "grad_norm": 0.3952840268611908,
+ "learning_rate": 0.0006,
+ "loss": 5.066549301147461,
+ "step": 431
+ },
+ {
+ "epoch": 6.0,
+ "grad_norm": 0.38878682255744934,
+ "learning_rate": 0.0006,
+ "loss": 5.0354323387146,
+ "step": 432
+ },
+ {
+ "epoch": 6.0,
+ "eval_loss": 5.473907947540283,
+ "eval_runtime": 44.5121,
+ "eval_samples_per_second": 54.861,
+ "eval_steps_per_second": 3.437,
+ "step": 432
+ },
+ {
+ "epoch": 6.013979903888161,
+ "grad_norm": 0.42730140686035156,
+ "learning_rate": 0.0006,
+ "loss": 5.048557281494141,
+ "step": 433
+ },
+ {
+ "epoch": 6.0279598077763215,
+ "grad_norm": 0.32713913917541504,
+ "learning_rate": 0.0006,
+ "loss": 5.041255950927734,
+ "step": 434
+ },
+ {
+ "epoch": 6.041939711664482,
+ "grad_norm": 0.32520365715026855,
+ "learning_rate": 0.0006,
+ "loss": 5.043124198913574,
+ "step": 435
+ },
+ {
+ "epoch": 6.055919615552643,
+ "grad_norm": 0.2941839098930359,
+ "learning_rate": 0.0006,
+ "loss": 5.0407304763793945,
+ "step": 436
+ },
+ {
+ "epoch": 6.069899519440804,
+ "grad_norm": 0.3088819682598114,
+ "learning_rate": 0.0006,
+ "loss": 5.020771026611328,
+ "step": 437
+ },
+ {
+ "epoch": 6.083879423328964,
+ "grad_norm": 0.34334254264831543,
+ "learning_rate": 0.0006,
+ "loss": 5.0260009765625,
+ "step": 438
+ },
+ {
+ "epoch": 6.097859327217125,
+ "grad_norm": 0.33016136288642883,
+ "learning_rate": 0.0006,
+ "loss": 4.994412899017334,
+ "step": 439
+ },
+ {
+ "epoch": 6.111839231105286,
+ "grad_norm": 0.2527366280555725,
+ "learning_rate": 0.0006,
+ "loss": 4.997830390930176,
+ "step": 440
+ },
+ {
+ "epoch": 6.1258191349934465,
+ "grad_norm": 0.24742509424686432,
+ "learning_rate": 0.0006,
+ "loss": 5.017087936401367,
+ "step": 441
+ },
+ {
+ "epoch": 6.139799038881607,
+ "grad_norm": 0.22578303515911102,
+ "learning_rate": 0.0006,
+ "loss": 5.000683784484863,
+ "step": 442
+ },
+ {
+ "epoch": 6.153778942769769,
+ "grad_norm": 0.21213896572589874,
+ "learning_rate": 0.0006,
+ "loss": 4.993280410766602,
+ "step": 443
+ },
+ {
+ "epoch": 6.16775884665793,
+ "grad_norm": 0.22559592127799988,
+ "learning_rate": 0.0006,
+ "loss": 5.005735874176025,
+ "step": 444
+ },
+ {
+ "epoch": 6.18173875054609,
+ "grad_norm": 0.18574322760105133,
+ "learning_rate": 0.0006,
+ "loss": 4.996601104736328,
+ "step": 445
+ },
+ {
+ "epoch": 6.195718654434251,
+ "grad_norm": 0.1793852299451828,
+ "learning_rate": 0.0006,
+ "loss": 4.977394104003906,
+ "step": 446
+ },
+ {
+ "epoch": 6.209698558322412,
+ "grad_norm": 0.1851297914981842,
+ "learning_rate": 0.0006,
+ "loss": 4.983541488647461,
+ "step": 447
+ },
+ {
+ "epoch": 6.2236784622105725,
+ "grad_norm": 0.2045268565416336,
+ "learning_rate": 0.0006,
+ "loss": 4.992830276489258,
+ "step": 448
+ },
+ {
+ "epoch": 6.237658366098733,
+ "grad_norm": 0.21707463264465332,
+ "learning_rate": 0.0006,
+ "loss": 4.998589515686035,
+ "step": 449
+ },
+ {
+ "epoch": 6.251638269986894,
+ "grad_norm": 0.2805860638618469,
+ "learning_rate": 0.0006,
+ "loss": 4.973134517669678,
+ "step": 450
+ },
+ {
+ "epoch": 6.265618173875055,
+ "grad_norm": 0.33102089166641235,
+ "learning_rate": 0.0006,
+ "loss": 4.957348823547363,
+ "step": 451
+ },
+ {
+ "epoch": 6.279598077763215,
+ "grad_norm": 0.3763096034526825,
+ "learning_rate": 0.0006,
+ "loss": 5.0133256912231445,
+ "step": 452
+ },
+ {
+ "epoch": 6.293577981651376,
+ "grad_norm": 0.4676196575164795,
+ "learning_rate": 0.0006,
+ "loss": 4.972289562225342,
+ "step": 453
+ },
+ {
+ "epoch": 6.307557885539537,
+ "grad_norm": 0.6158978343009949,
+ "learning_rate": 0.0006,
+ "loss": 4.989326477050781,
+ "step": 454
+ },
+ {
+ "epoch": 6.321537789427698,
+ "grad_norm": 0.537460446357727,
+ "learning_rate": 0.0006,
+ "loss": 5.0210676193237305,
+ "step": 455
+ },
+ {
+ "epoch": 6.335517693315858,
+ "grad_norm": 0.5342532396316528,
+ "learning_rate": 0.0006,
+ "loss": 4.988524436950684,
+ "step": 456
+ },
+ {
+ "epoch": 6.349497597204019,
+ "grad_norm": 0.5736384987831116,
+ "learning_rate": 0.0006,
+ "loss": 4.977508068084717,
+ "step": 457
+ },
+ {
+ "epoch": 6.36347750109218,
+ "grad_norm": 0.6656201481819153,
+ "learning_rate": 0.0006,
+ "loss": 5.047934055328369,
+ "step": 458
+ },
+ {
+ "epoch": 6.3774574049803405,
+ "grad_norm": 0.6388342380523682,
+ "learning_rate": 0.0006,
+ "loss": 5.017617225646973,
+ "step": 459
+ },
+ {
+ "epoch": 6.391437308868501,
+ "grad_norm": 0.6620904207229614,
+ "learning_rate": 0.0006,
+ "loss": 5.032195091247559,
+ "step": 460
+ },
+ {
+ "epoch": 6.405417212756662,
+ "grad_norm": 0.693274974822998,
+ "learning_rate": 0.0006,
+ "loss": 5.02433967590332,
+ "step": 461
+ },
+ {
+ "epoch": 6.419397116644823,
+ "grad_norm": 0.6888924241065979,
+ "learning_rate": 0.0006,
+ "loss": 5.010735511779785,
+ "step": 462
+ },
+ {
+ "epoch": 6.433377020532983,
+ "grad_norm": 0.7181721925735474,
+ "learning_rate": 0.0006,
+ "loss": 5.049690246582031,
+ "step": 463
+ },
+ {
+ "epoch": 6.447356924421145,
+ "grad_norm": 0.7225117087364197,
+ "learning_rate": 0.0006,
+ "loss": 5.031939506530762,
+ "step": 464
+ },
+ {
+ "epoch": 6.461336828309306,
+ "grad_norm": 0.5268304347991943,
+ "learning_rate": 0.0006,
+ "loss": 5.01638126373291,
+ "step": 465
+ },
+ {
+ "epoch": 6.4753167321974665,
+ "grad_norm": 0.38218435645103455,
+ "learning_rate": 0.0006,
+ "loss": 4.997034072875977,
+ "step": 466
+ },
+ {
+ "epoch": 6.489296636085627,
+ "grad_norm": 0.3576396703720093,
+ "learning_rate": 0.0006,
+ "loss": 5.006804943084717,
+ "step": 467
+ },
+ {
+ "epoch": 6.503276539973788,
+ "grad_norm": 0.3305981755256653,
+ "learning_rate": 0.0006,
+ "loss": 4.994671821594238,
+ "step": 468
+ },
+ {
+ "epoch": 6.517256443861949,
+ "grad_norm": 0.3254900574684143,
+ "learning_rate": 0.0006,
+ "loss": 4.9747490882873535,
+ "step": 469
+ },
+ {
+ "epoch": 6.531236347750109,
+ "grad_norm": 0.2655033469200134,
+ "learning_rate": 0.0006,
+ "loss": 5.002863883972168,
+ "step": 470
+ },
+ {
+ "epoch": 6.54521625163827,
+ "grad_norm": 0.2620532810688019,
+ "learning_rate": 0.0006,
+ "loss": 4.9813337326049805,
+ "step": 471
+ },
+ {
+ "epoch": 6.559196155526431,
+ "grad_norm": 0.22128869593143463,
+ "learning_rate": 0.0006,
+ "loss": 4.978368759155273,
+ "step": 472
+ },
+ {
+ "epoch": 6.573176059414592,
+ "grad_norm": 0.22638699412345886,
+ "learning_rate": 0.0006,
+ "loss": 4.944509029388428,
+ "step": 473
+ },
+ {
+ "epoch": 6.587155963302752,
+ "grad_norm": 0.20720207691192627,
+ "learning_rate": 0.0006,
+ "loss": 4.98404598236084,
+ "step": 474
+ },
+ {
+ "epoch": 6.601135867190913,
+ "grad_norm": 0.21577289700508118,
+ "learning_rate": 0.0006,
+ "loss": 4.958878040313721,
+ "step": 475
+ },
+ {
+ "epoch": 6.615115771079074,
+ "grad_norm": 0.22453972697257996,
+ "learning_rate": 0.0006,
+ "loss": 4.935467720031738,
+ "step": 476
+ },
+ {
+ "epoch": 6.6290956749672345,
+ "grad_norm": 0.20757712423801422,
+ "learning_rate": 0.0006,
+ "loss": 4.943334579467773,
+ "step": 477
+ },
+ {
+ "epoch": 6.643075578855395,
+ "grad_norm": 0.22808043658733368,
+ "learning_rate": 0.0006,
+ "loss": 4.936544418334961,
+ "step": 478
+ },
+ {
+ "epoch": 6.657055482743556,
+ "grad_norm": 0.2193756401538849,
+ "learning_rate": 0.0006,
+ "loss": 4.938162326812744,
+ "step": 479
+ },
+ {
+ "epoch": 6.671035386631717,
+ "grad_norm": 0.19677500426769257,
+ "learning_rate": 0.0006,
+ "loss": 4.9026713371276855,
+ "step": 480
+ },
+ {
+ "epoch": 6.685015290519877,
+ "grad_norm": 0.17271658778190613,
+ "learning_rate": 0.0006,
+ "loss": 4.912519454956055,
+ "step": 481
+ },
+ {
+ "epoch": 6.698995194408038,
+ "grad_norm": 0.17551499605178833,
+ "learning_rate": 0.0006,
+ "loss": 4.929941177368164,
+ "step": 482
+ },
+ {
+ "epoch": 6.712975098296199,
+ "grad_norm": 0.1582687348127365,
+ "learning_rate": 0.0006,
+ "loss": 4.908967971801758,
+ "step": 483
+ },
+ {
+ "epoch": 6.72695500218436,
+ "grad_norm": 0.1593410074710846,
+ "learning_rate": 0.0006,
+ "loss": 4.901554107666016,
+ "step": 484
+ },
+ {
+ "epoch": 6.740934906072521,
+ "grad_norm": 0.16746895015239716,
+ "learning_rate": 0.0006,
+ "loss": 4.917915344238281,
+ "step": 485
+ },
+ {
+ "epoch": 6.754914809960681,
+ "grad_norm": 0.17066062986850739,
+ "learning_rate": 0.0006,
+ "loss": 4.912853240966797,
+ "step": 486
+ },
+ {
+ "epoch": 6.768894713848843,
+ "grad_norm": 0.16727769374847412,
+ "learning_rate": 0.0006,
+ "loss": 4.895434856414795,
+ "step": 487
+ },
+ {
+ "epoch": 6.782874617737003,
+ "grad_norm": 0.1784558743238449,
+ "learning_rate": 0.0006,
+ "loss": 4.8805341720581055,
+ "step": 488
+ },
+ {
+ "epoch": 6.796854521625164,
+ "grad_norm": 0.176686093211174,
+ "learning_rate": 0.0006,
+ "loss": 4.855296611785889,
+ "step": 489
+ },
+ {
+ "epoch": 6.810834425513325,
+ "grad_norm": 0.21577849984169006,
+ "learning_rate": 0.0006,
+ "loss": 4.885506629943848,
+ "step": 490
+ },
+ {
+ "epoch": 6.824814329401486,
+ "grad_norm": 0.27615776658058167,
+ "learning_rate": 0.0006,
+ "loss": 4.913756847381592,
+ "step": 491
+ },
+ {
+ "epoch": 6.838794233289646,
+ "grad_norm": 0.3653675615787506,
+ "learning_rate": 0.0006,
+ "loss": 4.880918979644775,
+ "step": 492
+ },
+ {
+ "epoch": 6.852774137177807,
+ "grad_norm": 0.41473883390426636,
+ "learning_rate": 0.0006,
+ "loss": 4.894164562225342,
+ "step": 493
+ },
+ {
+ "epoch": 6.866754041065968,
+ "grad_norm": 0.45850715041160583,
+ "learning_rate": 0.0006,
+ "loss": 4.907922744750977,
+ "step": 494
+ },
+ {
+ "epoch": 6.8807339449541285,
+ "grad_norm": 0.4675290882587433,
+ "learning_rate": 0.0006,
+ "loss": 4.883112907409668,
+ "step": 495
+ },
+ {
+ "epoch": 6.894713848842289,
+ "grad_norm": 0.45795994997024536,
+ "learning_rate": 0.0006,
+ "loss": 4.897843360900879,
+ "step": 496
+ },
+ {
+ "epoch": 6.90869375273045,
+ "grad_norm": 0.46130508184432983,
+ "learning_rate": 0.0006,
+ "loss": 4.890612602233887,
+ "step": 497
+ },
+ {
+ "epoch": 6.922673656618611,
+ "grad_norm": 0.44783803820610046,
+ "learning_rate": 0.0006,
+ "loss": 4.880192756652832,
+ "step": 498
+ },
+ {
+ "epoch": 6.936653560506771,
+ "grad_norm": 0.35361284017562866,
+ "learning_rate": 0.0006,
+ "loss": 4.840778350830078,
+ "step": 499
+ },
+ {
+ "epoch": 6.950633464394932,
+ "grad_norm": 0.34027689695358276,
+ "learning_rate": 0.0006,
+ "loss": 4.871222496032715,
+ "step": 500
+ },
+ {
+ "epoch": 6.964613368283093,
+ "grad_norm": 0.30228909850120544,
+ "learning_rate": 0.0006,
+ "loss": 4.868077278137207,
+ "step": 501
+ },
+ {
+ "epoch": 6.978593272171254,
+ "grad_norm": 0.27706998586654663,
+ "learning_rate": 0.0006,
+ "loss": 4.895936012268066,
+ "step": 502
+ },
+ {
+ "epoch": 6.992573176059414,
+ "grad_norm": 0.3516870439052582,
+ "learning_rate": 0.0006,
+ "loss": 4.824636459350586,
+ "step": 503
+ },
+ {
+ "epoch": 7.0,
+ "grad_norm": 0.36831387877464294,
+ "learning_rate": 0.0006,
+ "loss": 4.874397277832031,
+ "step": 504
+ },
+ {
+ "epoch": 7.0,
+ "eval_loss": 5.176281452178955,
+ "eval_runtime": 44.2386,
+ "eval_samples_per_second": 55.201,
+ "eval_steps_per_second": 3.459,
+ "step": 504
+ },
+ {
+ "epoch": 7.013979903888161,
+ "grad_norm": 0.4265240430831909,
+ "learning_rate": 0.0006,
+ "loss": 4.814333438873291,
+ "step": 505
+ },
+ {
+ "epoch": 7.0279598077763215,
+ "grad_norm": 0.5126975774765015,
+ "learning_rate": 0.0006,
+ "loss": 4.852343559265137,
+ "step": 506
+ },
+ {
+ "epoch": 7.041939711664482,
+ "grad_norm": 0.43080806732177734,
+ "learning_rate": 0.0006,
+ "loss": 4.843439102172852,
+ "step": 507
+ },
+ {
+ "epoch": 7.055919615552643,
+ "grad_norm": 0.43170198798179626,
+ "learning_rate": 0.0006,
+ "loss": 4.845984935760498,
+ "step": 508
+ },
+ {
+ "epoch": 7.069899519440804,
+ "grad_norm": 0.5640552043914795,
+ "learning_rate": 0.0006,
+ "loss": 4.840991973876953,
+ "step": 509
+ },
+ {
+ "epoch": 7.083879423328964,
+ "grad_norm": 0.540381133556366,
+ "learning_rate": 0.0006,
+ "loss": 4.801316738128662,
+ "step": 510
+ },
+ {
+ "epoch": 7.097859327217125,
+ "grad_norm": 0.5412097573280334,
+ "learning_rate": 0.0006,
+ "loss": 4.886598587036133,
+ "step": 511
+ },
+ {
+ "epoch": 7.111839231105286,
+ "grad_norm": 0.630648136138916,
+ "learning_rate": 0.0006,
+ "loss": 4.849774360656738,
+ "step": 512
+ },
+ {
+ "epoch": 7.1258191349934465,
+ "grad_norm": 0.569952130317688,
+ "learning_rate": 0.0006,
+ "loss": 4.870607376098633,
+ "step": 513
+ },
+ {
+ "epoch": 7.139799038881607,
+ "grad_norm": 0.42051541805267334,
+ "learning_rate": 0.0006,
+ "loss": 4.83833122253418,
+ "step": 514
+ },
+ {
+ "epoch": 7.153778942769769,
+ "grad_norm": 0.3930990397930145,
+ "learning_rate": 0.0006,
+ "loss": 4.853984355926514,
+ "step": 515
+ },
+ {
+ "epoch": 7.16775884665793,
+ "grad_norm": 0.512886106967926,
+ "learning_rate": 0.0006,
+ "loss": 4.815458297729492,
+ "step": 516
+ },
+ {
+ "epoch": 7.18173875054609,
+ "grad_norm": 0.42580172419548035,
+ "learning_rate": 0.0006,
+ "loss": 4.825312614440918,
+ "step": 517
+ },
+ {
+ "epoch": 7.195718654434251,
+ "grad_norm": 0.31628182530403137,
+ "learning_rate": 0.0006,
+ "loss": 4.806377410888672,
+ "step": 518
+ },
+ {
+ "epoch": 7.209698558322412,
+ "grad_norm": 0.3109956681728363,
+ "learning_rate": 0.0006,
+ "loss": 4.819339752197266,
+ "step": 519
+ },
+ {
+ "epoch": 7.2236784622105725,
+ "grad_norm": 0.2740071415901184,
+ "learning_rate": 0.0006,
+ "loss": 4.81319522857666,
+ "step": 520
+ },
+ {
+ "epoch": 7.237658366098733,
+ "grad_norm": 0.26441165804862976,
+ "learning_rate": 0.0006,
+ "loss": 4.8107380867004395,
+ "step": 521
+ },
+ {
+ "epoch": 7.251638269986894,
+ "grad_norm": 0.2496110051870346,
+ "learning_rate": 0.0006,
+ "loss": 4.785193920135498,
+ "step": 522
+ },
+ {
+ "epoch": 7.265618173875055,
+ "grad_norm": 0.2565560042858124,
+ "learning_rate": 0.0006,
+ "loss": 4.802750587463379,
+ "step": 523
+ },
+ {
+ "epoch": 7.279598077763215,
+ "grad_norm": 0.2126980572938919,
+ "learning_rate": 0.0006,
+ "loss": 4.763580322265625,
+ "step": 524
+ },
+ {
+ "epoch": 7.293577981651376,
+ "grad_norm": 0.2169921100139618,
+ "learning_rate": 0.0006,
+ "loss": 4.756124973297119,
+ "step": 525
+ },
+ {
+ "epoch": 7.307557885539537,
+ "grad_norm": 0.2372167706489563,
+ "learning_rate": 0.0006,
+ "loss": 4.786888599395752,
+ "step": 526
+ },
+ {
+ "epoch": 7.321537789427698,
+ "grad_norm": 0.2124386429786682,
+ "learning_rate": 0.0006,
+ "loss": 4.777996063232422,
+ "step": 527
+ },
+ {
+ "epoch": 7.335517693315858,
+ "grad_norm": 0.18585442006587982,
+ "learning_rate": 0.0006,
+ "loss": 4.770537853240967,
+ "step": 528
+ },
+ {
+ "epoch": 7.349497597204019,
+ "grad_norm": 0.20515340566635132,
+ "learning_rate": 0.0006,
+ "loss": 4.769230842590332,
+ "step": 529
+ },
+ {
+ "epoch": 7.36347750109218,
+ "grad_norm": 0.19906704127788544,
+ "learning_rate": 0.0006,
+ "loss": 4.752581596374512,
+ "step": 530
+ },
+ {
+ "epoch": 7.3774574049803405,
+ "grad_norm": 0.2030428946018219,
+ "learning_rate": 0.0006,
+ "loss": 4.7353715896606445,
+ "step": 531
+ },
+ {
+ "epoch": 7.391437308868501,
+ "grad_norm": 0.17820630967617035,
+ "learning_rate": 0.0006,
+ "loss": 4.742705345153809,
+ "step": 532
+ },
+ {
+ "epoch": 7.405417212756662,
+ "grad_norm": 0.17642682790756226,
+ "learning_rate": 0.0006,
+ "loss": 4.752669334411621,
+ "step": 533
+ },
+ {
+ "epoch": 7.419397116644823,
+ "grad_norm": 0.18088409304618835,
+ "learning_rate": 0.0006,
+ "loss": 4.734611511230469,
+ "step": 534
+ },
+ {
+ "epoch": 7.433377020532983,
+ "grad_norm": 0.20897020399570465,
+ "learning_rate": 0.0006,
+ "loss": 4.756442070007324,
+ "step": 535
+ },
+ {
+ "epoch": 7.447356924421145,
+ "grad_norm": 0.23166777193546295,
+ "learning_rate": 0.0006,
+ "loss": 4.712922096252441,
+ "step": 536
+ },
+ {
+ "epoch": 7.461336828309306,
+ "grad_norm": 0.2205347716808319,
+ "learning_rate": 0.0006,
+ "loss": 4.75001335144043,
+ "step": 537
+ },
+ {
+ "epoch": 7.4753167321974665,
+ "grad_norm": 0.23868022859096527,
+ "learning_rate": 0.0006,
+ "loss": 4.726134300231934,
+ "step": 538
+ },
+ {
+ "epoch": 7.489296636085627,
+ "grad_norm": 0.2861441373825073,
+ "learning_rate": 0.0006,
+ "loss": 4.754112243652344,
+ "step": 539
+ },
+ {
+ "epoch": 7.503276539973788,
+ "grad_norm": 0.28980305790901184,
+ "learning_rate": 0.0006,
+ "loss": 4.716021537780762,
+ "step": 540
+ },
+ {
+ "epoch": 7.517256443861949,
+ "grad_norm": 0.2784835696220398,
+ "learning_rate": 0.0006,
+ "loss": 4.713929176330566,
+ "step": 541
+ },
+ {
+ "epoch": 7.531236347750109,
+ "grad_norm": 0.2962653934955597,
+ "learning_rate": 0.0006,
+ "loss": 4.711845397949219,
+ "step": 542
+ },
+ {
+ "epoch": 7.54521625163827,
+ "grad_norm": 0.3333161175251007,
+ "learning_rate": 0.0006,
+ "loss": 4.709834575653076,
+ "step": 543
+ },
+ {
+ "epoch": 7.559196155526431,
+ "grad_norm": 0.35304850339889526,
+ "learning_rate": 0.0006,
+ "loss": 4.732914924621582,
+ "step": 544
+ },
+ {
+ "epoch": 7.573176059414592,
+ "grad_norm": 0.4165869355201721,
+ "learning_rate": 0.0006,
+ "loss": 4.716190338134766,
+ "step": 545
+ },
+ {
+ "epoch": 7.587155963302752,
+ "grad_norm": 0.4878059923648834,
+ "learning_rate": 0.0006,
+ "loss": 4.723773002624512,
+ "step": 546
+ },
+ {
+ "epoch": 7.601135867190913,
+ "grad_norm": 0.36643707752227783,
+ "learning_rate": 0.0006,
+ "loss": 4.721458911895752,
+ "step": 547
+ },
+ {
+ "epoch": 7.615115771079074,
+ "grad_norm": 0.4046908915042877,
+ "learning_rate": 0.0006,
+ "loss": 4.715397834777832,
+ "step": 548
+ },
+ {
+ "epoch": 7.6290956749672345,
+ "grad_norm": 0.44426342844963074,
+ "learning_rate": 0.0006,
+ "loss": 4.737357139587402,
+ "step": 549
+ },
+ {
+ "epoch": 7.643075578855395,
+ "grad_norm": 0.4181079864501953,
+ "learning_rate": 0.0006,
+ "loss": 4.731383800506592,
+ "step": 550
+ },
+ {
+ "epoch": 7.657055482743556,
+ "grad_norm": 0.3486088216304779,
+ "learning_rate": 0.0006,
+ "loss": 4.728029727935791,
+ "step": 551
+ },
+ {
+ "epoch": 7.671035386631717,
+ "grad_norm": 0.37150970101356506,
+ "learning_rate": 0.0006,
+ "loss": 4.7083210945129395,
+ "step": 552
+ },
+ {
+ "epoch": 7.685015290519877,
+ "grad_norm": 0.43324410915374756,
+ "learning_rate": 0.0006,
+ "loss": 4.728720664978027,
+ "step": 553
+ },
+ {
+ "epoch": 7.698995194408038,
+ "grad_norm": 0.5026620626449585,
+ "learning_rate": 0.0006,
+ "loss": 4.698156356811523,
+ "step": 554
+ },
+ {
+ "epoch": 7.712975098296199,
+ "grad_norm": 0.4873499274253845,
+ "learning_rate": 0.0006,
+ "loss": 4.7169952392578125,
+ "step": 555
+ },
+ {
+ "epoch": 7.72695500218436,
+ "grad_norm": 0.4285493791103363,
+ "learning_rate": 0.0006,
+ "loss": 4.6877241134643555,
+ "step": 556
+ },
+ {
+ "epoch": 7.740934906072521,
+ "grad_norm": 0.5179854035377502,
+ "learning_rate": 0.0006,
+ "loss": 4.704267501831055,
+ "step": 557
+ },
+ {
+ "epoch": 7.754914809960681,
+ "grad_norm": 0.4642147421836853,
+ "learning_rate": 0.0006,
+ "loss": 4.695004463195801,
+ "step": 558
+ },
+ {
+ "epoch": 7.768894713848843,
+ "grad_norm": 0.47149503231048584,
+ "learning_rate": 0.0006,
+ "loss": 4.694338798522949,
+ "step": 559
+ },
+ {
+ "epoch": 7.782874617737003,
+ "grad_norm": 0.5422149300575256,
+ "learning_rate": 0.0006,
+ "loss": 4.749478340148926,
+ "step": 560
+ },
+ {
+ "epoch": 7.796854521625164,
+ "grad_norm": 0.4360728859901428,
+ "learning_rate": 0.0006,
+ "loss": 4.685191631317139,
+ "step": 561
+ },
+ {
+ "epoch": 7.810834425513325,
+ "grad_norm": 0.4243801534175873,
+ "learning_rate": 0.0006,
+ "loss": 4.69228458404541,
+ "step": 562
+ },
+ {
+ "epoch": 7.824814329401486,
+ "grad_norm": 0.40380290150642395,
+ "learning_rate": 0.0006,
+ "loss": 4.690923690795898,
+ "step": 563
+ },
+ {
+ "epoch": 7.838794233289646,
+ "grad_norm": 0.4352976381778717,
+ "learning_rate": 0.0006,
+ "loss": 4.720489978790283,
+ "step": 564
+ },
+ {
+ "epoch": 7.852774137177807,
+ "grad_norm": 0.44634920358657837,
+ "learning_rate": 0.0006,
+ "loss": 4.683789253234863,
+ "step": 565
+ },
+ {
+ "epoch": 7.866754041065968,
+ "grad_norm": 0.3818186819553375,
+ "learning_rate": 0.0006,
+ "loss": 4.696887016296387,
+ "step": 566
+ },
+ {
+ "epoch": 7.8807339449541285,
+ "grad_norm": 0.35270464420318604,
+ "learning_rate": 0.0006,
+ "loss": 4.715676307678223,
+ "step": 567
+ },
+ {
+ "epoch": 7.894713848842289,
+ "grad_norm": 0.249756321310997,
+ "learning_rate": 0.0006,
+ "loss": 4.672721862792969,
+ "step": 568
+ },
+ {
+ "epoch": 7.90869375273045,
+ "grad_norm": 0.25097888708114624,
+ "learning_rate": 0.0006,
+ "loss": 4.663518905639648,
+ "step": 569
+ },
+ {
+ "epoch": 7.922673656618611,
+ "grad_norm": 0.26563209295272827,
+ "learning_rate": 0.0006,
+ "loss": 4.675405025482178,
+ "step": 570
+ },
+ {
+ "epoch": 7.936653560506771,
+ "grad_norm": 0.26451292634010315,
+ "learning_rate": 0.0006,
+ "loss": 4.651235103607178,
+ "step": 571
+ },
+ {
+ "epoch": 7.950633464394932,
+ "grad_norm": 0.24185842275619507,
+ "learning_rate": 0.0006,
+ "loss": 4.671639919281006,
+ "step": 572
+ },
+ {
+ "epoch": 7.964613368283093,
+ "grad_norm": 0.21506108343601227,
+ "learning_rate": 0.0006,
+ "loss": 4.665352821350098,
+ "step": 573
+ },
+ {
+ "epoch": 7.978593272171254,
+ "grad_norm": 0.24365705251693726,
+ "learning_rate": 0.0006,
+ "loss": 4.663162708282471,
+ "step": 574
+ },
+ {
+ "epoch": 7.992573176059414,
+ "grad_norm": 0.24251042306423187,
+ "learning_rate": 0.0006,
+ "loss": 4.666633605957031,
+ "step": 575
+ },
+ {
+ "epoch": 8.0,
+ "grad_norm": 0.24187657237052917,
+ "learning_rate": 0.0006,
+ "loss": 4.63957405090332,
+ "step": 576
+ },
+ {
+ "epoch": 8.0,
+ "eval_loss": 4.923156261444092,
+ "eval_runtime": 44.1587,
+ "eval_samples_per_second": 55.301,
+ "eval_steps_per_second": 3.465,
+ "step": 576
+ },
+ {
+ "epoch": 8.013979903888162,
+ "grad_norm": 0.21323645114898682,
+ "learning_rate": 0.0006,
+ "loss": 4.636347770690918,
+ "step": 577
+ },
+ {
+ "epoch": 8.027959807776321,
+ "grad_norm": 0.2325759083032608,
+ "learning_rate": 0.0006,
+ "loss": 4.60684871673584,
+ "step": 578
+ },
+ {
+ "epoch": 8.041939711664483,
+ "grad_norm": 0.26741257309913635,
+ "learning_rate": 0.0006,
+ "loss": 4.647780418395996,
+ "step": 579
+ },
+ {
+ "epoch": 8.055919615552643,
+ "grad_norm": 0.285720556974411,
+ "learning_rate": 0.0006,
+ "loss": 4.629637718200684,
+ "step": 580
+ },
+ {
+ "epoch": 8.069899519440805,
+ "grad_norm": 0.2453618347644806,
+ "learning_rate": 0.0006,
+ "loss": 4.62420654296875,
+ "step": 581
+ },
+ {
+ "epoch": 8.083879423328964,
+ "grad_norm": 0.19662636518478394,
+ "learning_rate": 0.0006,
+ "loss": 4.593767166137695,
+ "step": 582
+ },
+ {
+ "epoch": 8.097859327217126,
+ "grad_norm": 0.22731931507587433,
+ "learning_rate": 0.0006,
+ "loss": 4.627089023590088,
+ "step": 583
+ },
+ {
+ "epoch": 8.111839231105286,
+ "grad_norm": 0.24452590942382812,
+ "learning_rate": 0.0006,
+ "loss": 4.613677024841309,
+ "step": 584
+ },
+ {
+ "epoch": 8.125819134993447,
+ "grad_norm": 0.2952791154384613,
+ "learning_rate": 0.0006,
+ "loss": 4.604985237121582,
+ "step": 585
+ },
+ {
+ "epoch": 8.139799038881607,
+ "grad_norm": 0.3184696137905121,
+ "learning_rate": 0.0006,
+ "loss": 4.589205741882324,
+ "step": 586
+ },
+ {
+ "epoch": 8.153778942769769,
+ "grad_norm": 0.2948093116283417,
+ "learning_rate": 0.0006,
+ "loss": 4.605442047119141,
+ "step": 587
+ },
+ {
+ "epoch": 8.167758846657929,
+ "grad_norm": 0.2450508326292038,
+ "learning_rate": 0.0006,
+ "loss": 4.615349292755127,
+ "step": 588
+ },
+ {
+ "epoch": 8.18173875054609,
+ "grad_norm": 0.25664836168289185,
+ "learning_rate": 0.0006,
+ "loss": 4.592251777648926,
+ "step": 589
+ },
+ {
+ "epoch": 8.19571865443425,
+ "grad_norm": 0.24479512870311737,
+ "learning_rate": 0.0006,
+ "loss": 4.6145920753479,
+ "step": 590
+ },
+ {
+ "epoch": 8.209698558322412,
+ "grad_norm": 0.24395205080509186,
+ "learning_rate": 0.0006,
+ "loss": 4.600954055786133,
+ "step": 591
+ },
+ {
+ "epoch": 8.223678462210572,
+ "grad_norm": 0.21804189682006836,
+ "learning_rate": 0.0006,
+ "loss": 4.607785224914551,
+ "step": 592
+ },
+ {
+ "epoch": 8.237658366098733,
+ "grad_norm": 0.20951785147190094,
+ "learning_rate": 0.0006,
+ "loss": 4.58140754699707,
+ "step": 593
+ },
+ {
+ "epoch": 8.251638269986893,
+ "grad_norm": 0.20415149629116058,
+ "learning_rate": 0.0006,
+ "loss": 4.593405723571777,
+ "step": 594
+ },
+ {
+ "epoch": 8.265618173875055,
+ "grad_norm": 0.19210249185562134,
+ "learning_rate": 0.0006,
+ "loss": 4.603294372558594,
+ "step": 595
+ },
+ {
+ "epoch": 8.279598077763215,
+ "grad_norm": 0.20719751715660095,
+ "learning_rate": 0.0006,
+ "loss": 4.55255651473999,
+ "step": 596
+ },
+ {
+ "epoch": 8.293577981651376,
+ "grad_norm": 0.20101022720336914,
+ "learning_rate": 0.0006,
+ "loss": 4.5928192138671875,
+ "step": 597
+ },
+ {
+ "epoch": 8.307557885539538,
+ "grad_norm": 0.19254222512245178,
+ "learning_rate": 0.0006,
+ "loss": 4.590397834777832,
+ "step": 598
+ },
+ {
+ "epoch": 8.321537789427698,
+ "grad_norm": 0.23234105110168457,
+ "learning_rate": 0.0006,
+ "loss": 4.5987677574157715,
+ "step": 599
+ },
+ {
+ "epoch": 8.33551769331586,
+ "grad_norm": 0.2537451982498169,
+ "learning_rate": 0.0006,
+ "loss": 4.543115615844727,
+ "step": 600
+ },
+ {
+ "epoch": 8.349497597204019,
+ "grad_norm": 0.29171040654182434,
+ "learning_rate": 0.0006,
+ "loss": 4.597387313842773,
+ "step": 601
+ },
+ {
+ "epoch": 8.36347750109218,
+ "grad_norm": 0.3035930097103119,
+ "learning_rate": 0.0006,
+ "loss": 4.566247463226318,
+ "step": 602
+ },
+ {
+ "epoch": 8.37745740498034,
+ "grad_norm": 0.2826756238937378,
+ "learning_rate": 0.0006,
+ "loss": 4.57047176361084,
+ "step": 603
+ },
+ {
+ "epoch": 8.391437308868502,
+ "grad_norm": 0.2959657609462738,
+ "learning_rate": 0.0006,
+ "loss": 4.582820892333984,
+ "step": 604
+ },
+ {
+ "epoch": 8.405417212756662,
+ "grad_norm": 0.3180356025695801,
+ "learning_rate": 0.0006,
+ "loss": 4.5573272705078125,
+ "step": 605
+ },
+ {
+ "epoch": 8.419397116644824,
+ "grad_norm": 0.3617221713066101,
+ "learning_rate": 0.0006,
+ "loss": 4.593079090118408,
+ "step": 606
+ },
+ {
+ "epoch": 8.433377020532983,
+ "grad_norm": 0.35198062658309937,
+ "learning_rate": 0.0006,
+ "loss": 4.615298271179199,
+ "step": 607
+ },
+ {
+ "epoch": 8.447356924421145,
+ "grad_norm": 0.3944903314113617,
+ "learning_rate": 0.0006,
+ "loss": 4.561809539794922,
+ "step": 608
+ },
+ {
+ "epoch": 8.461336828309305,
+ "grad_norm": 0.4525868594646454,
+ "learning_rate": 0.0006,
+ "loss": 4.613105773925781,
+ "step": 609
+ },
+ {
+ "epoch": 8.475316732197467,
+ "grad_norm": 0.4915139079093933,
+ "learning_rate": 0.0006,
+ "loss": 4.566202163696289,
+ "step": 610
+ },
+ {
+ "epoch": 8.489296636085626,
+ "grad_norm": 0.49231988191604614,
+ "learning_rate": 0.0006,
+ "loss": 4.556222915649414,
+ "step": 611
+ },
+ {
+ "epoch": 8.503276539973788,
+ "grad_norm": 0.43036946654319763,
+ "learning_rate": 0.0006,
+ "loss": 4.55517578125,
+ "step": 612
+ },
+ {
+ "epoch": 8.517256443861948,
+ "grad_norm": 0.42405328154563904,
+ "learning_rate": 0.0006,
+ "loss": 4.574039936065674,
+ "step": 613
+ },
+ {
+ "epoch": 8.53123634775011,
+ "grad_norm": 0.3955961763858795,
+ "learning_rate": 0.0006,
+ "loss": 4.6082611083984375,
+ "step": 614
+ },
+ {
+ "epoch": 8.54521625163827,
+ "grad_norm": 0.4377101957798004,
+ "learning_rate": 0.0006,
+ "loss": 4.555740833282471,
+ "step": 615
+ },
+ {
+ "epoch": 8.55919615552643,
+ "grad_norm": 0.4601984918117523,
+ "learning_rate": 0.0006,
+ "loss": 4.553995132446289,
+ "step": 616
+ },
+ {
+ "epoch": 8.57317605941459,
+ "grad_norm": 0.42025700211524963,
+ "learning_rate": 0.0006,
+ "loss": 4.567340850830078,
+ "step": 617
+ },
+ {
+ "epoch": 8.587155963302752,
+ "grad_norm": 0.35569432377815247,
+ "learning_rate": 0.0006,
+ "loss": 4.570140361785889,
+ "step": 618
+ },
+ {
+ "epoch": 8.601135867190912,
+ "grad_norm": 0.37940406799316406,
+ "learning_rate": 0.0006,
+ "loss": 4.581291198730469,
+ "step": 619
+ },
+ {
+ "epoch": 8.615115771079074,
+ "grad_norm": 0.3658490777015686,
+ "learning_rate": 0.0006,
+ "loss": 4.55476188659668,
+ "step": 620
+ },
+ {
+ "epoch": 8.629095674967235,
+ "grad_norm": 0.2908247113227844,
+ "learning_rate": 0.0006,
+ "loss": 4.564087867736816,
+ "step": 621
+ },
+ {
+ "epoch": 8.643075578855395,
+ "grad_norm": 0.29961925745010376,
+ "learning_rate": 0.0006,
+ "loss": 4.556543350219727,
+ "step": 622
+ },
+ {
+ "epoch": 8.657055482743557,
+ "grad_norm": 0.3144846558570862,
+ "learning_rate": 0.0006,
+ "loss": 4.553670883178711,
+ "step": 623
+ },
+ {
+ "epoch": 8.671035386631717,
+ "grad_norm": 0.2845900356769562,
+ "learning_rate": 0.0006,
+ "loss": 4.567296981811523,
+ "step": 624
+ },
+ {
+ "epoch": 8.685015290519878,
+ "grad_norm": 0.253591388463974,
+ "learning_rate": 0.0006,
+ "loss": 4.554507255554199,
+ "step": 625
+ },
+ {
+ "epoch": 8.698995194408038,
+ "grad_norm": 0.2563088536262512,
+ "learning_rate": 0.0006,
+ "loss": 4.542218208312988,
+ "step": 626
+ },
+ {
+ "epoch": 8.7129750982962,
+ "grad_norm": 0.26058217883110046,
+ "learning_rate": 0.0006,
+ "loss": 4.535512447357178,
+ "step": 627
+ },
+ {
+ "epoch": 8.72695500218436,
+ "grad_norm": 0.20749829709529877,
+ "learning_rate": 0.0006,
+ "loss": 4.516959190368652,
+ "step": 628
+ },
+ {
+ "epoch": 8.740934906072521,
+ "grad_norm": 0.2034810334444046,
+ "learning_rate": 0.0006,
+ "loss": 4.55794095993042,
+ "step": 629
+ },
+ {
+ "epoch": 8.754914809960681,
+ "grad_norm": 0.18418121337890625,
+ "learning_rate": 0.0006,
+ "loss": 4.5421247482299805,
+ "step": 630
+ },
+ {
+ "epoch": 8.768894713848843,
+ "grad_norm": 0.20551933348178864,
+ "learning_rate": 0.0006,
+ "loss": 4.50805139541626,
+ "step": 631
+ },
+ {
+ "epoch": 8.782874617737003,
+ "grad_norm": 0.21615999937057495,
+ "learning_rate": 0.0006,
+ "loss": 4.520708084106445,
+ "step": 632
+ },
+ {
+ "epoch": 8.796854521625164,
+ "grad_norm": 0.24864810705184937,
+ "learning_rate": 0.0006,
+ "loss": 4.509330749511719,
+ "step": 633
+ },
+ {
+ "epoch": 8.810834425513324,
+ "grad_norm": 0.2573665380477905,
+ "learning_rate": 0.0006,
+ "loss": 4.531505584716797,
+ "step": 634
+ },
+ {
+ "epoch": 8.824814329401486,
+ "grad_norm": 0.22452878952026367,
+ "learning_rate": 0.0006,
+ "loss": 4.529216289520264,
+ "step": 635
+ },
+ {
+ "epoch": 8.838794233289645,
+ "grad_norm": 0.19727355241775513,
+ "learning_rate": 0.0006,
+ "loss": 4.519906520843506,
+ "step": 636
+ },
+ {
+ "epoch": 8.852774137177807,
+ "grad_norm": 0.19937913119792938,
+ "learning_rate": 0.0006,
+ "loss": 4.536892414093018,
+ "step": 637
+ },
+ {
+ "epoch": 8.866754041065967,
+ "grad_norm": 0.2070389986038208,
+ "learning_rate": 0.0006,
+ "loss": 4.51191520690918,
+ "step": 638
+ },
+ {
+ "epoch": 8.880733944954128,
+ "grad_norm": 0.2293873429298401,
+ "learning_rate": 0.0006,
+ "loss": 4.505377769470215,
+ "step": 639
+ },
+ {
+ "epoch": 8.89471384884229,
+ "grad_norm": 0.21285250782966614,
+ "learning_rate": 0.0006,
+ "loss": 4.5138959884643555,
+ "step": 640
+ },
+ {
+ "epoch": 8.90869375273045,
+ "grad_norm": 0.19487562775611877,
+ "learning_rate": 0.0006,
+ "loss": 4.506108283996582,
+ "step": 641
+ },
+ {
+ "epoch": 8.922673656618612,
+ "grad_norm": 0.21986965835094452,
+ "learning_rate": 0.0006,
+ "loss": 4.506397247314453,
+ "step": 642
+ },
+ {
+ "epoch": 8.936653560506771,
+ "grad_norm": 0.20763885974884033,
+ "learning_rate": 0.0006,
+ "loss": 4.508007049560547,
+ "step": 643
+ },
+ {
+ "epoch": 8.950633464394933,
+ "grad_norm": 0.22858479619026184,
+ "learning_rate": 0.0006,
+ "loss": 4.520846366882324,
+ "step": 644
+ },
+ {
+ "epoch": 8.964613368283093,
+ "grad_norm": 0.23923712968826294,
+ "learning_rate": 0.0006,
+ "loss": 4.535306930541992,
+ "step": 645
+ },
+ {
+ "epoch": 8.978593272171254,
+ "grad_norm": 0.23717579245567322,
+ "learning_rate": 0.0006,
+ "loss": 4.485929489135742,
+ "step": 646
+ },
+ {
+ "epoch": 8.992573176059414,
+ "grad_norm": 0.24033977091312408,
+ "learning_rate": 0.0006,
+ "loss": 4.508999824523926,
+ "step": 647
+ },
+ {
+ "epoch": 9.0,
+ "grad_norm": 0.22432062029838562,
+ "learning_rate": 0.0006,
+ "loss": 4.473136901855469,
+ "step": 648
+ },
+ {
+ "epoch": 9.0,
+ "eval_loss": 4.735903263092041,
+ "eval_runtime": 44.2163,
+ "eval_samples_per_second": 55.228,
+ "eval_steps_per_second": 3.46,
+ "step": 648
+ },
+ {
+ "epoch": 9.013979903888162,
+ "grad_norm": 0.22491489350795746,
+ "learning_rate": 0.0006,
+ "loss": 4.468614101409912,
+ "step": 649
+ },
+ {
+ "epoch": 9.027959807776321,
+ "grad_norm": 0.255759060382843,
+ "learning_rate": 0.0006,
+ "loss": 4.516196250915527,
+ "step": 650
+ },
+ {
+ "epoch": 9.041939711664483,
+ "grad_norm": 0.2591100335121155,
+ "learning_rate": 0.0006,
+ "loss": 4.478276252746582,
+ "step": 651
+ },
+ {
+ "epoch": 9.055919615552643,
+ "grad_norm": 0.30472296476364136,
+ "learning_rate": 0.0006,
+ "loss": 4.479726791381836,
+ "step": 652
+ },
+ {
+ "epoch": 9.069899519440805,
+ "grad_norm": 0.2840559780597687,
+ "learning_rate": 0.0006,
+ "loss": 4.4437384605407715,
+ "step": 653
+ },
+ {
+ "epoch": 9.083879423328964,
+ "grad_norm": 0.2695577144622803,
+ "learning_rate": 0.0006,
+ "loss": 4.476065635681152,
+ "step": 654
+ },
+ {
+ "epoch": 9.097859327217126,
+ "grad_norm": 0.27912381291389465,
+ "learning_rate": 0.0006,
+ "loss": 4.484747409820557,
+ "step": 655
+ },
+ {
+ "epoch": 9.111839231105286,
+ "grad_norm": 0.3091907501220703,
+ "learning_rate": 0.0006,
+ "loss": 4.449443817138672,
+ "step": 656
+ },
+ {
+ "epoch": 9.125819134993447,
+ "grad_norm": 0.30756646394729614,
+ "learning_rate": 0.0006,
+ "loss": 4.496490001678467,
+ "step": 657
+ },
+ {
+ "epoch": 9.139799038881607,
+ "grad_norm": 0.305698037147522,
+ "learning_rate": 0.0006,
+ "loss": 4.466765880584717,
+ "step": 658
+ },
+ {
+ "epoch": 9.153778942769769,
+ "grad_norm": 0.3031201660633087,
+ "learning_rate": 0.0006,
+ "loss": 4.462430953979492,
+ "step": 659
+ },
+ {
+ "epoch": 9.167758846657929,
+ "grad_norm": 0.32725608348846436,
+ "learning_rate": 0.0006,
+ "loss": 4.479879379272461,
+ "step": 660
+ },
+ {
+ "epoch": 9.18173875054609,
+ "grad_norm": 0.31773585081100464,
+ "learning_rate": 0.0006,
+ "loss": 4.473912239074707,
+ "step": 661
+ },
+ {
+ "epoch": 9.19571865443425,
+ "grad_norm": 0.30025365948677063,
+ "learning_rate": 0.0006,
+ "loss": 4.476703643798828,
+ "step": 662
+ },
+ {
+ "epoch": 9.209698558322412,
+ "grad_norm": 0.3177371025085449,
+ "learning_rate": 0.0006,
+ "loss": 4.439765930175781,
+ "step": 663
+ },
+ {
+ "epoch": 9.223678462210572,
+ "grad_norm": 0.3060745894908905,
+ "learning_rate": 0.0006,
+ "loss": 4.487849235534668,
+ "step": 664
+ },
+ {
+ "epoch": 9.237658366098733,
+ "grad_norm": 0.33287373185157776,
+ "learning_rate": 0.0006,
+ "loss": 4.443496227264404,
+ "step": 665
+ },
+ {
+ "epoch": 9.251638269986893,
+ "grad_norm": 0.3758000433444977,
+ "learning_rate": 0.0006,
+ "loss": 4.478017330169678,
+ "step": 666
+ },
+ {
+ "epoch": 9.265618173875055,
+ "grad_norm": 0.32124510407447815,
+ "learning_rate": 0.0006,
+ "loss": 4.4092206954956055,
+ "step": 667
+ },
+ {
+ "epoch": 9.279598077763215,
+ "grad_norm": 0.2786794602870941,
+ "learning_rate": 0.0006,
+ "loss": 4.432734489440918,
+ "step": 668
+ },
+ {
+ "epoch": 9.293577981651376,
+ "grad_norm": 0.35042962431907654,
+ "learning_rate": 0.0006,
+ "loss": 4.462737083435059,
+ "step": 669
+ },
+ {
+ "epoch": 9.307557885539538,
+ "grad_norm": 0.4080469310283661,
+ "learning_rate": 0.0006,
+ "loss": 4.429462432861328,
+ "step": 670
+ },
+ {
+ "epoch": 9.321537789427698,
+ "grad_norm": 0.465158075094223,
+ "learning_rate": 0.0006,
+ "loss": 4.465776443481445,
+ "step": 671
+ },
+ {
+ "epoch": 9.33551769331586,
+ "grad_norm": 0.44833582639694214,
+ "learning_rate": 0.0006,
+ "loss": 4.454195976257324,
+ "step": 672
+ },
+ {
+ "epoch": 9.349497597204019,
+ "grad_norm": 0.451052188873291,
+ "learning_rate": 0.0006,
+ "loss": 4.456139087677002,
+ "step": 673
+ },
+ {
+ "epoch": 9.36347750109218,
+ "grad_norm": 0.3759656250476837,
+ "learning_rate": 0.0006,
+ "loss": 4.461119651794434,
+ "step": 674
+ },
+ {
+ "epoch": 9.37745740498034,
+ "grad_norm": 0.514560341835022,
+ "learning_rate": 0.0006,
+ "loss": 4.49595832824707,
+ "step": 675
+ },
+ {
+ "epoch": 9.391437308868502,
+ "grad_norm": 0.5650647282600403,
+ "learning_rate": 0.0006,
+ "loss": 4.461362838745117,
+ "step": 676
+ },
+ {
+ "epoch": 9.405417212756662,
+ "grad_norm": 0.4218835234642029,
+ "learning_rate": 0.0006,
+ "loss": 4.469146728515625,
+ "step": 677
+ },
+ {
+ "epoch": 9.419397116644824,
+ "grad_norm": 0.4169512689113617,
+ "learning_rate": 0.0006,
+ "loss": 4.470132827758789,
+ "step": 678
+ },
+ {
+ "epoch": 9.433377020532983,
+ "grad_norm": 0.3772219717502594,
+ "learning_rate": 0.0006,
+ "loss": 4.4742608070373535,
+ "step": 679
+ },
+ {
+ "epoch": 9.447356924421145,
+ "grad_norm": 0.35755908489227295,
+ "learning_rate": 0.0006,
+ "loss": 4.461928367614746,
+ "step": 680
+ },
+ {
+ "epoch": 9.461336828309305,
+ "grad_norm": 0.3141227662563324,
+ "learning_rate": 0.0006,
+ "loss": 4.491983413696289,
+ "step": 681
+ },
+ {
+ "epoch": 9.475316732197467,
+ "grad_norm": 0.282461017370224,
+ "learning_rate": 0.0006,
+ "loss": 4.460200309753418,
+ "step": 682
+ },
+ {
+ "epoch": 9.489296636085626,
+ "grad_norm": 0.27174389362335205,
+ "learning_rate": 0.0006,
+ "loss": 4.416125297546387,
+ "step": 683
+ },
+ {
+ "epoch": 9.503276539973788,
+ "grad_norm": 0.24570637941360474,
+ "learning_rate": 0.0006,
+ "loss": 4.4451093673706055,
+ "step": 684
+ },
+ {
+ "epoch": 9.517256443861948,
+ "grad_norm": 0.2741486132144928,
+ "learning_rate": 0.0006,
+ "loss": 4.453263282775879,
+ "step": 685
+ },
+ {
+ "epoch": 9.53123634775011,
+ "grad_norm": 0.24753718078136444,
+ "learning_rate": 0.0006,
+ "loss": 4.483033180236816,
+ "step": 686
+ },
+ {
+ "epoch": 9.54521625163827,
+ "grad_norm": 0.24288412928581238,
+ "learning_rate": 0.0006,
+ "loss": 4.452961444854736,
+ "step": 687
+ },
+ {
+ "epoch": 9.55919615552643,
+ "grad_norm": 0.21554753184318542,
+ "learning_rate": 0.0006,
+ "loss": 4.476005554199219,
+ "step": 688
+ },
+ {
+ "epoch": 9.57317605941459,
+ "grad_norm": 0.22775942087173462,
+ "learning_rate": 0.0006,
+ "loss": 4.4479193687438965,
+ "step": 689
+ },
+ {
+ "epoch": 9.587155963302752,
+ "grad_norm": 0.2610701024532318,
+ "learning_rate": 0.0006,
+ "loss": 4.474987506866455,
+ "step": 690
+ },
+ {
+ "epoch": 9.601135867190912,
+ "grad_norm": 0.2394690215587616,
+ "learning_rate": 0.0006,
+ "loss": 4.444857597351074,
+ "step": 691
+ },
+ {
+ "epoch": 9.615115771079074,
+ "grad_norm": 0.20868559181690216,
+ "learning_rate": 0.0006,
+ "loss": 4.4220709800720215,
+ "step": 692
+ },
+ {
+ "epoch": 9.629095674967235,
+ "grad_norm": 0.21869882941246033,
+ "learning_rate": 0.0006,
+ "loss": 4.451737403869629,
+ "step": 693
+ },
+ {
+ "epoch": 9.643075578855395,
+ "grad_norm": 0.1802823394536972,
+ "learning_rate": 0.0006,
+ "loss": 4.409085273742676,
+ "step": 694
+ },
+ {
+ "epoch": 9.657055482743557,
+ "grad_norm": 0.17046281695365906,
+ "learning_rate": 0.0006,
+ "loss": 4.424643516540527,
+ "step": 695
+ },
+ {
+ "epoch": 9.671035386631717,
+ "grad_norm": 0.19561922550201416,
+ "learning_rate": 0.0006,
+ "loss": 4.412302017211914,
+ "step": 696
+ },
+ {
+ "epoch": 9.685015290519878,
+ "grad_norm": 0.21928799152374268,
+ "learning_rate": 0.0006,
+ "loss": 4.427582263946533,
+ "step": 697
+ },
+ {
+ "epoch": 9.698995194408038,
+ "grad_norm": 0.244873046875,
+ "learning_rate": 0.0006,
+ "loss": 4.431827545166016,
+ "step": 698
+ },
+ {
+ "epoch": 9.7129750982962,
+ "grad_norm": 0.2799488604068756,
+ "learning_rate": 0.0006,
+ "loss": 4.407991409301758,
+ "step": 699
+ },
+ {
+ "epoch": 9.72695500218436,
+ "grad_norm": 0.2699538767337799,
+ "learning_rate": 0.0006,
+ "loss": 4.412313461303711,
+ "step": 700
+ },
+ {
+ "epoch": 9.740934906072521,
+ "grad_norm": 0.22293835878372192,
+ "learning_rate": 0.0006,
+ "loss": 4.423369884490967,
+ "step": 701
+ },
+ {
+ "epoch": 9.754914809960681,
+ "grad_norm": 0.21554361283779144,
+ "learning_rate": 0.0006,
+ "loss": 4.42026948928833,
+ "step": 702
+ },
+ {
+ "epoch": 9.768894713848843,
+ "grad_norm": 0.22135840356349945,
+ "learning_rate": 0.0006,
+ "loss": 4.400010108947754,
+ "step": 703
+ },
+ {
+ "epoch": 9.782874617737003,
+ "grad_norm": 0.2169952541589737,
+ "learning_rate": 0.0006,
+ "loss": 4.394582271575928,
+ "step": 704
+ },
+ {
+ "epoch": 9.796854521625164,
+ "grad_norm": 0.18913042545318604,
+ "learning_rate": 0.0006,
+ "loss": 4.395880699157715,
+ "step": 705
+ },
+ {
+ "epoch": 9.810834425513324,
+ "grad_norm": 0.191524475812912,
+ "learning_rate": 0.0006,
+ "loss": 4.378962516784668,
+ "step": 706
+ },
+ {
+ "epoch": 9.824814329401486,
+ "grad_norm": 0.20057640969753265,
+ "learning_rate": 0.0006,
+ "loss": 4.431066513061523,
+ "step": 707
+ },
+ {
+ "epoch": 9.838794233289645,
+ "grad_norm": 0.21670377254486084,
+ "learning_rate": 0.0006,
+ "loss": 4.364682197570801,
+ "step": 708
+ },
+ {
+ "epoch": 9.852774137177807,
+ "grad_norm": 0.21653099358081818,
+ "learning_rate": 0.0006,
+ "loss": 4.4050445556640625,
+ "step": 709
+ },
+ {
+ "epoch": 9.866754041065967,
+ "grad_norm": 0.2217673808336258,
+ "learning_rate": 0.0006,
+ "loss": 4.423664093017578,
+ "step": 710
+ },
+ {
+ "epoch": 9.880733944954128,
+ "grad_norm": 0.251078337430954,
+ "learning_rate": 0.0006,
+ "loss": 4.405768394470215,
+ "step": 711
+ },
+ {
+ "epoch": 9.89471384884229,
+ "grad_norm": 0.28962627053260803,
+ "learning_rate": 0.0006,
+ "loss": 4.421207427978516,
+ "step": 712
+ },
+ {
+ "epoch": 9.90869375273045,
+ "grad_norm": 0.3478074371814728,
+ "learning_rate": 0.0006,
+ "loss": 4.414942741394043,
+ "step": 713
+ },
+ {
+ "epoch": 9.922673656618612,
+ "grad_norm": 0.40396368503570557,
+ "learning_rate": 0.0006,
+ "loss": 4.415163993835449,
+ "step": 714
+ },
+ {
+ "epoch": 9.936653560506771,
+ "grad_norm": 0.3689858019351959,
+ "learning_rate": 0.0006,
+ "loss": 4.381345272064209,
+ "step": 715
+ },
+ {
+ "epoch": 9.950633464394933,
+ "grad_norm": 0.344868004322052,
+ "learning_rate": 0.0006,
+ "loss": 4.433088302612305,
+ "step": 716
+ },
+ {
+ "epoch": 9.964613368283093,
+ "grad_norm": 0.37976378202438354,
+ "learning_rate": 0.0006,
+ "loss": 4.431371212005615,
+ "step": 717
+ },
+ {
+ "epoch": 9.978593272171254,
+ "grad_norm": 0.4354130029678345,
+ "learning_rate": 0.0006,
+ "loss": 4.434148788452148,
+ "step": 718
+ },
+ {
+ "epoch": 9.992573176059414,
+ "grad_norm": 0.35859373211860657,
+ "learning_rate": 0.0006,
+ "loss": 4.428055763244629,
+ "step": 719
+ },
+ {
+ "epoch": 10.0,
+ "grad_norm": 0.3365023732185364,
+ "learning_rate": 0.0006,
+ "loss": 4.3888654708862305,
+ "step": 720
+ },
+ {
+ "epoch": 10.0,
+ "eval_loss": 4.638620853424072,
+ "eval_runtime": 44.3054,
+ "eval_samples_per_second": 55.117,
+ "eval_steps_per_second": 3.453,
+ "step": 720
+ },
+ {
+ "epoch": 10.013979903888162,
+ "grad_norm": 0.3267960250377655,
+ "learning_rate": 0.0006,
+ "loss": 4.386068344116211,
+ "step": 721
+ },
+ {
+ "epoch": 10.027959807776321,
+ "grad_norm": 0.33440953493118286,
+ "learning_rate": 0.0006,
+ "loss": 4.397515296936035,
+ "step": 722
+ },
+ {
+ "epoch": 10.041939711664483,
+ "grad_norm": 0.30047518014907837,
+ "learning_rate": 0.0006,
+ "loss": 4.398358345031738,
+ "step": 723
+ },
+ {
+ "epoch": 10.055919615552643,
+ "grad_norm": 0.2912217378616333,
+ "learning_rate": 0.0006,
+ "loss": 4.341166973114014,
+ "step": 724
+ },
+ {
+ "epoch": 10.069899519440805,
+ "grad_norm": 0.3199564218521118,
+ "learning_rate": 0.0006,
+ "loss": 4.388717174530029,
+ "step": 725
+ },
+ {
+ "epoch": 10.083879423328964,
+ "grad_norm": 0.2765582799911499,
+ "learning_rate": 0.0006,
+ "loss": 4.392992973327637,
+ "step": 726
+ },
+ {
+ "epoch": 10.097859327217126,
+ "grad_norm": 0.27138450741767883,
+ "learning_rate": 0.0006,
+ "loss": 4.382307529449463,
+ "step": 727
+ },
+ {
+ "epoch": 10.111839231105286,
+ "grad_norm": 0.29230645298957825,
+ "learning_rate": 0.0006,
+ "loss": 4.357486724853516,
+ "step": 728
+ },
+ {
+ "epoch": 10.125819134993447,
+ "grad_norm": 0.3127598464488983,
+ "learning_rate": 0.0006,
+ "loss": 4.39072322845459,
+ "step": 729
+ },
+ {
+ "epoch": 10.139799038881607,
+ "grad_norm": 0.3230913281440735,
+ "learning_rate": 0.0006,
+ "loss": 4.35037899017334,
+ "step": 730
+ },
+ {
+ "epoch": 10.153778942769769,
+ "grad_norm": 0.333675354719162,
+ "learning_rate": 0.0006,
+ "loss": 4.378030776977539,
+ "step": 731
+ },
+ {
+ "epoch": 10.167758846657929,
+ "grad_norm": 0.30325770378112793,
+ "learning_rate": 0.0006,
+ "loss": 4.372736930847168,
+ "step": 732
+ },
+ {
+ "epoch": 10.18173875054609,
+ "grad_norm": 0.2888163924217224,
+ "learning_rate": 0.0006,
+ "loss": 4.397604942321777,
+ "step": 733
+ },
+ {
+ "epoch": 10.19571865443425,
+ "grad_norm": 0.3378832936286926,
+ "learning_rate": 0.0006,
+ "loss": 4.395705223083496,
+ "step": 734
+ },
+ {
+ "epoch": 10.209698558322412,
+ "grad_norm": 0.30980268120765686,
+ "learning_rate": 0.0006,
+ "loss": 4.3861212730407715,
+ "step": 735
+ },
+ {
+ "epoch": 10.223678462210572,
+ "grad_norm": 0.2965783178806305,
+ "learning_rate": 0.0006,
+ "loss": 4.394898414611816,
+ "step": 736
+ },
+ {
+ "epoch": 10.237658366098733,
+ "grad_norm": 0.2818217873573303,
+ "learning_rate": 0.0006,
+ "loss": 4.36171817779541,
+ "step": 737
+ },
+ {
+ "epoch": 10.251638269986893,
+ "grad_norm": 0.2418123185634613,
+ "learning_rate": 0.0006,
+ "loss": 4.370945930480957,
+ "step": 738
+ },
+ {
+ "epoch": 10.265618173875055,
+ "grad_norm": 0.22372810542583466,
+ "learning_rate": 0.0006,
+ "loss": 4.354825973510742,
+ "step": 739
+ },
+ {
+ "epoch": 10.279598077763215,
+ "grad_norm": 0.238066166639328,
+ "learning_rate": 0.0006,
+ "loss": 4.376237392425537,
+ "step": 740
+ },
+ {
+ "epoch": 10.293577981651376,
+ "grad_norm": 0.22352449595928192,
+ "learning_rate": 0.0006,
+ "loss": 4.317084312438965,
+ "step": 741
+ },
+ {
+ "epoch": 10.307557885539538,
+ "grad_norm": 0.21685205399990082,
+ "learning_rate": 0.0006,
+ "loss": 4.335271835327148,
+ "step": 742
+ },
+ {
+ "epoch": 10.321537789427698,
+ "grad_norm": 0.19584694504737854,
+ "learning_rate": 0.0006,
+ "loss": 4.357963562011719,
+ "step": 743
+ },
+ {
+ "epoch": 10.33551769331586,
+ "grad_norm": 0.20373336970806122,
+ "learning_rate": 0.0006,
+ "loss": 4.401963233947754,
+ "step": 744
+ },
+ {
+ "epoch": 10.349497597204019,
+ "grad_norm": 0.2247837632894516,
+ "learning_rate": 0.0006,
+ "loss": 4.357202529907227,
+ "step": 745
+ },
+ {
+ "epoch": 10.36347750109218,
+ "grad_norm": 0.2416863739490509,
+ "learning_rate": 0.0006,
+ "loss": 4.364739418029785,
+ "step": 746
+ },
+ {
+ "epoch": 10.37745740498034,
+ "grad_norm": 0.22281162440776825,
+ "learning_rate": 0.0006,
+ "loss": 4.351607799530029,
+ "step": 747
+ },
+ {
+ "epoch": 10.391437308868502,
+ "grad_norm": 0.20751096308231354,
+ "learning_rate": 0.0006,
+ "loss": 4.370017051696777,
+ "step": 748
+ },
+ {
+ "epoch": 10.405417212756662,
+ "grad_norm": 0.19178363680839539,
+ "learning_rate": 0.0006,
+ "loss": 4.360328674316406,
+ "step": 749
+ },
+ {
+ "epoch": 10.419397116644824,
+ "grad_norm": 0.20534078776836395,
+ "learning_rate": 0.0006,
+ "loss": 4.3735432624816895,
+ "step": 750
+ },
+ {
+ "epoch": 10.433377020532983,
+ "grad_norm": 0.20533937215805054,
+ "learning_rate": 0.0006,
+ "loss": 4.326902389526367,
+ "step": 751
+ },
+ {
+ "epoch": 10.447356924421145,
+ "grad_norm": 0.22057875990867615,
+ "learning_rate": 0.0006,
+ "loss": 4.360934257507324,
+ "step": 752
+ },
+ {
+ "epoch": 10.461336828309305,
+ "grad_norm": 0.25568997859954834,
+ "learning_rate": 0.0006,
+ "loss": 4.345063209533691,
+ "step": 753
+ },
+ {
+ "epoch": 10.475316732197467,
+ "grad_norm": 0.31471487879753113,
+ "learning_rate": 0.0006,
+ "loss": 4.324014186859131,
+ "step": 754
+ },
+ {
+ "epoch": 10.489296636085626,
+ "grad_norm": 0.2716822624206543,
+ "learning_rate": 0.0006,
+ "loss": 4.318459510803223,
+ "step": 755
+ },
+ {
+ "epoch": 10.503276539973788,
+ "grad_norm": 0.19552019238471985,
+ "learning_rate": 0.0006,
+ "loss": 4.3367509841918945,
+ "step": 756
+ },
+ {
+ "epoch": 10.517256443861948,
+ "grad_norm": 0.22822986543178558,
+ "learning_rate": 0.0006,
+ "loss": 4.328935623168945,
+ "step": 757
+ },
+ {
+ "epoch": 10.53123634775011,
+ "grad_norm": 0.22282928228378296,
+ "learning_rate": 0.0006,
+ "loss": 4.358272552490234,
+ "step": 758
+ },
+ {
+ "epoch": 10.54521625163827,
+ "grad_norm": 0.23303352296352386,
+ "learning_rate": 0.0006,
+ "loss": 4.336641311645508,
+ "step": 759
+ },
+ {
+ "epoch": 10.55919615552643,
+ "grad_norm": 0.29474690556526184,
+ "learning_rate": 0.0006,
+ "loss": 4.343188285827637,
+ "step": 760
+ },
+ {
+ "epoch": 10.57317605941459,
+ "grad_norm": 0.36269059777259827,
+ "learning_rate": 0.0006,
+ "loss": 4.313019752502441,
+ "step": 761
+ },
+ {
+ "epoch": 10.587155963302752,
+ "grad_norm": 0.3742978870868683,
+ "learning_rate": 0.0006,
+ "loss": 4.361410140991211,
+ "step": 762
+ },
+ {
+ "epoch": 10.601135867190912,
+ "grad_norm": 0.34412163496017456,
+ "learning_rate": 0.0006,
+ "loss": 4.321324825286865,
+ "step": 763
+ },
+ {
+ "epoch": 10.615115771079074,
+ "grad_norm": 0.3464587926864624,
+ "learning_rate": 0.0006,
+ "loss": 4.341907501220703,
+ "step": 764
+ },
+ {
+ "epoch": 10.629095674967235,
+ "grad_norm": 0.3318136930465698,
+ "learning_rate": 0.0006,
+ "loss": 4.329099655151367,
+ "step": 765
+ },
+ {
+ "epoch": 10.643075578855395,
+ "grad_norm": 0.31292903423309326,
+ "learning_rate": 0.0006,
+ "loss": 4.332015037536621,
+ "step": 766
+ },
+ {
+ "epoch": 10.657055482743557,
+ "grad_norm": 0.2904847264289856,
+ "learning_rate": 0.0006,
+ "loss": 4.341764450073242,
+ "step": 767
+ },
+ {
+ "epoch": 10.671035386631717,
+ "grad_norm": 0.3287692666053772,
+ "learning_rate": 0.0006,
+ "loss": 4.342329025268555,
+ "step": 768
+ },
+ {
+ "epoch": 10.685015290519878,
+ "grad_norm": 0.3115365207195282,
+ "learning_rate": 0.0006,
+ "loss": 4.3530073165893555,
+ "step": 769
+ },
+ {
+ "epoch": 10.698995194408038,
+ "grad_norm": 0.24133864045143127,
+ "learning_rate": 0.0006,
+ "loss": 4.321497917175293,
+ "step": 770
+ },
+ {
+ "epoch": 10.7129750982962,
+ "grad_norm": 0.24658630788326263,
+ "learning_rate": 0.0006,
+ "loss": 4.32669734954834,
+ "step": 771
+ },
+ {
+ "epoch": 10.72695500218436,
+ "grad_norm": 0.2342129647731781,
+ "learning_rate": 0.0006,
+ "loss": 4.345459461212158,
+ "step": 772
+ },
+ {
+ "epoch": 10.740934906072521,
+ "grad_norm": 0.23360829055309296,
+ "learning_rate": 0.0006,
+ "loss": 4.33249568939209,
+ "step": 773
+ },
+ {
+ "epoch": 10.754914809960681,
+ "grad_norm": 0.24314677715301514,
+ "learning_rate": 0.0006,
+ "loss": 4.30499792098999,
+ "step": 774
+ },
+ {
+ "epoch": 10.768894713848843,
+ "grad_norm": 0.22105181217193604,
+ "learning_rate": 0.0006,
+ "loss": 4.33706521987915,
+ "step": 775
+ },
+ {
+ "epoch": 10.782874617737003,
+ "grad_norm": 0.23307174444198608,
+ "learning_rate": 0.0006,
+ "loss": 4.320387840270996,
+ "step": 776
+ },
+ {
+ "epoch": 10.796854521625164,
+ "grad_norm": 0.24946169555187225,
+ "learning_rate": 0.0006,
+ "loss": 4.316012382507324,
+ "step": 777
+ },
+ {
+ "epoch": 10.810834425513324,
+ "grad_norm": 0.26023536920547485,
+ "learning_rate": 0.0006,
+ "loss": 4.315193176269531,
+ "step": 778
+ },
+ {
+ "epoch": 10.824814329401486,
+ "grad_norm": 0.2688547968864441,
+ "learning_rate": 0.0006,
+ "loss": 4.3243255615234375,
+ "step": 779
+ },
+ {
+ "epoch": 10.838794233289645,
+ "grad_norm": 0.28188297152519226,
+ "learning_rate": 0.0006,
+ "loss": 4.3202972412109375,
+ "step": 780
+ },
+ {
+ "epoch": 10.852774137177807,
+ "grad_norm": 0.2890053689479828,
+ "learning_rate": 0.0006,
+ "loss": 4.318799018859863,
+ "step": 781
+ },
+ {
+ "epoch": 10.866754041065967,
+ "grad_norm": 0.2914353013038635,
+ "learning_rate": 0.0006,
+ "loss": 4.314262390136719,
+ "step": 782
+ },
+ {
+ "epoch": 10.880733944954128,
+ "grad_norm": 0.3145572543144226,
+ "learning_rate": 0.0006,
+ "loss": 4.339262008666992,
+ "step": 783
+ },
+ {
+ "epoch": 10.89471384884229,
+ "grad_norm": 0.323062002658844,
+ "learning_rate": 0.0006,
+ "loss": 4.354856491088867,
+ "step": 784
+ },
+ {
+ "epoch": 10.90869375273045,
+ "grad_norm": 0.32741227746009827,
+ "learning_rate": 0.0006,
+ "loss": 4.325577735900879,
+ "step": 785
+ },
+ {
+ "epoch": 10.922673656618612,
+ "grad_norm": 0.2855733036994934,
+ "learning_rate": 0.0006,
+ "loss": 4.324419021606445,
+ "step": 786
+ },
+ {
+ "epoch": 10.936653560506771,
+ "grad_norm": 0.2969444990158081,
+ "learning_rate": 0.0006,
+ "loss": 4.320681095123291,
+ "step": 787
+ },
+ {
+ "epoch": 10.950633464394933,
+ "grad_norm": 0.28108111023902893,
+ "learning_rate": 0.0006,
+ "loss": 4.32673454284668,
+ "step": 788
+ },
+ {
+ "epoch": 10.964613368283093,
+ "grad_norm": 0.2537972629070282,
+ "learning_rate": 0.0006,
+ "loss": 4.3197021484375,
+ "step": 789
+ },
+ {
+ "epoch": 10.978593272171254,
+ "grad_norm": 0.2354544699192047,
+ "learning_rate": 0.0006,
+ "loss": 4.3354973793029785,
+ "step": 790
+ },
+ {
+ "epoch": 10.992573176059414,
+ "grad_norm": 0.26195117831230164,
+ "learning_rate": 0.0006,
+ "loss": 4.3172526359558105,
+ "step": 791
+ },
+ {
+ "epoch": 11.0,
+ "grad_norm": 0.27089616656303406,
+ "learning_rate": 0.0006,
+ "loss": 4.324293613433838,
+ "step": 792
+ },
+ {
+ "epoch": 11.0,
+ "eval_loss": 4.531813621520996,
+ "eval_runtime": 44.1656,
+ "eval_samples_per_second": 55.292,
+ "eval_steps_per_second": 3.464,
+ "step": 792
+ },
+ {
+ "epoch": 11.013979903888162,
+ "grad_norm": 0.2526339590549469,
+ "learning_rate": 0.0006,
+ "loss": 4.287600517272949,
+ "step": 793
+ },
+ {
+ "epoch": 11.027959807776321,
+ "grad_norm": 0.24318458139896393,
+ "learning_rate": 0.0006,
+ "loss": 4.268078327178955,
+ "step": 794
+ },
+ {
+ "epoch": 11.041939711664483,
+ "grad_norm": 0.2450830638408661,
+ "learning_rate": 0.0006,
+ "loss": 4.265467643737793,
+ "step": 795
+ },
+ {
+ "epoch": 11.055919615552643,
+ "grad_norm": 0.23963099718093872,
+ "learning_rate": 0.0006,
+ "loss": 4.267931938171387,
+ "step": 796
+ },
+ {
+ "epoch": 11.069899519440805,
+ "grad_norm": 0.2488657534122467,
+ "learning_rate": 0.0006,
+ "loss": 4.30262565612793,
+ "step": 797
+ },
+ {
+ "epoch": 11.083879423328964,
+ "grad_norm": 0.2319781631231308,
+ "learning_rate": 0.0006,
+ "loss": 4.28665828704834,
+ "step": 798
+ },
+ {
+ "epoch": 11.097859327217126,
+ "grad_norm": 0.2425263375043869,
+ "learning_rate": 0.0006,
+ "loss": 4.284830570220947,
+ "step": 799
+ },
+ {
+ "epoch": 11.111839231105286,
+ "grad_norm": 0.23096567392349243,
+ "learning_rate": 0.0006,
+ "loss": 4.2817206382751465,
+ "step": 800
+ },
+ {
+ "epoch": 11.125819134993447,
+ "grad_norm": 0.2846364676952362,
+ "learning_rate": 0.0006,
+ "loss": 4.276104927062988,
+ "step": 801
+ },
+ {
+ "epoch": 11.139799038881607,
+ "grad_norm": 0.2984965741634369,
+ "learning_rate": 0.0006,
+ "loss": 4.2909650802612305,
+ "step": 802
+ },
+ {
+ "epoch": 11.153778942769769,
+ "grad_norm": 0.2841213643550873,
+ "learning_rate": 0.0006,
+ "loss": 4.283358097076416,
+ "step": 803
+ },
+ {
+ "epoch": 11.167758846657929,
+ "grad_norm": 0.29192933440208435,
+ "learning_rate": 0.0006,
+ "loss": 4.267040729522705,
+ "step": 804
+ },
+ {
+ "epoch": 11.18173875054609,
+ "grad_norm": 0.3254184126853943,
+ "learning_rate": 0.0006,
+ "loss": 4.301564693450928,
+ "step": 805
+ },
+ {
+ "epoch": 11.19571865443425,
+ "grad_norm": 0.3347095847129822,
+ "learning_rate": 0.0006,
+ "loss": 4.271395683288574,
+ "step": 806
+ },
+ {
+ "epoch": 11.209698558322412,
+ "grad_norm": 0.25609350204467773,
+ "learning_rate": 0.0006,
+ "loss": 4.2963056564331055,
+ "step": 807
+ },
+ {
+ "epoch": 11.223678462210572,
+ "grad_norm": 0.29272061586380005,
+ "learning_rate": 0.0006,
+ "loss": 4.298416614532471,
+ "step": 808
+ },
+ {
+ "epoch": 11.237658366098733,
+ "grad_norm": 0.32179465889930725,
+ "learning_rate": 0.0006,
+ "loss": 4.294036865234375,
+ "step": 809
+ },
+ {
+ "epoch": 11.251638269986893,
+ "grad_norm": 0.3336549401283264,
+ "learning_rate": 0.0006,
+ "loss": 4.291993141174316,
+ "step": 810
+ },
+ {
+ "epoch": 11.265618173875055,
+ "grad_norm": 0.32273536920547485,
+ "learning_rate": 0.0006,
+ "loss": 4.311004638671875,
+ "step": 811
+ },
+ {
+ "epoch": 11.279598077763215,
+ "grad_norm": 0.3575087785720825,
+ "learning_rate": 0.0006,
+ "loss": 4.300217628479004,
+ "step": 812
+ },
+ {
+ "epoch": 11.293577981651376,
+ "grad_norm": 0.3332885205745697,
+ "learning_rate": 0.0006,
+ "loss": 4.278337478637695,
+ "step": 813
+ },
+ {
+ "epoch": 11.307557885539538,
+ "grad_norm": 0.31440407037734985,
+ "learning_rate": 0.0006,
+ "loss": 4.273826599121094,
+ "step": 814
+ },
+ {
+ "epoch": 11.321537789427698,
+ "grad_norm": 0.29822009801864624,
+ "learning_rate": 0.0006,
+ "loss": 4.284292221069336,
+ "step": 815
+ },
+ {
+ "epoch": 11.33551769331586,
+ "grad_norm": 0.30695512890815735,
+ "learning_rate": 0.0006,
+ "loss": 4.2831926345825195,
+ "step": 816
+ },
+ {
+ "epoch": 11.349497597204019,
+ "grad_norm": 0.30576950311660767,
+ "learning_rate": 0.0006,
+ "loss": 4.277133464813232,
+ "step": 817
+ },
+ {
+ "epoch": 11.36347750109218,
+ "grad_norm": 0.2859647870063782,
+ "learning_rate": 0.0006,
+ "loss": 4.3130106925964355,
+ "step": 818
+ },
+ {
+ "epoch": 11.37745740498034,
+ "grad_norm": 0.32417574524879456,
+ "learning_rate": 0.0006,
+ "loss": 4.310303211212158,
+ "step": 819
+ },
+ {
+ "epoch": 11.391437308868502,
+ "grad_norm": 0.3512463867664337,
+ "learning_rate": 0.0006,
+ "loss": 4.287015438079834,
+ "step": 820
+ },
+ {
+ "epoch": 11.405417212756662,
+ "grad_norm": 0.32578620314598083,
+ "learning_rate": 0.0006,
+ "loss": 4.2957940101623535,
+ "step": 821
+ },
+ {
+ "epoch": 11.419397116644824,
+ "grad_norm": 0.287949800491333,
+ "learning_rate": 0.0006,
+ "loss": 4.2881879806518555,
+ "step": 822
+ },
+ {
+ "epoch": 11.433377020532983,
+ "grad_norm": 0.28048595786094666,
+ "learning_rate": 0.0006,
+ "loss": 4.274960517883301,
+ "step": 823
+ },
+ {
+ "epoch": 11.447356924421145,
+ "grad_norm": 0.2541540563106537,
+ "learning_rate": 0.0006,
+ "loss": 4.261083602905273,
+ "step": 824
+ },
+ {
+ "epoch": 11.461336828309305,
+ "grad_norm": 0.2348361313343048,
+ "learning_rate": 0.0006,
+ "loss": 4.271036148071289,
+ "step": 825
+ },
+ {
+ "epoch": 11.475316732197467,
+ "grad_norm": 0.20913535356521606,
+ "learning_rate": 0.0006,
+ "loss": 4.307661056518555,
+ "step": 826
+ },
+ {
+ "epoch": 11.489296636085626,
+ "grad_norm": 0.22298868000507355,
+ "learning_rate": 0.0006,
+ "loss": 4.26902961730957,
+ "step": 827
+ },
+ {
+ "epoch": 11.503276539973788,
+ "grad_norm": 0.22752761840820312,
+ "learning_rate": 0.0006,
+ "loss": 4.305529594421387,
+ "step": 828
+ },
+ {
+ "epoch": 11.517256443861948,
+ "grad_norm": 0.2149917483329773,
+ "learning_rate": 0.0006,
+ "loss": 4.25134801864624,
+ "step": 829
+ },
+ {
+ "epoch": 11.53123634775011,
+ "grad_norm": 0.21085695922374725,
+ "learning_rate": 0.0006,
+ "loss": 4.266982078552246,
+ "step": 830
+ },
+ {
+ "epoch": 11.54521625163827,
+ "grad_norm": 0.21586747467517853,
+ "learning_rate": 0.0006,
+ "loss": 4.235255718231201,
+ "step": 831
+ },
+ {
+ "epoch": 11.55919615552643,
+ "grad_norm": 0.2520856559276581,
+ "learning_rate": 0.0006,
+ "loss": 4.283442497253418,
+ "step": 832
+ },
+ {
+ "epoch": 11.57317605941459,
+ "grad_norm": 0.2825471758842468,
+ "learning_rate": 0.0006,
+ "loss": 4.234672546386719,
+ "step": 833
+ },
+ {
+ "epoch": 11.587155963302752,
+ "grad_norm": 0.27437824010849,
+ "learning_rate": 0.0006,
+ "loss": 4.246068000793457,
+ "step": 834
+ },
+ {
+ "epoch": 11.601135867190912,
+ "grad_norm": 0.2596757411956787,
+ "learning_rate": 0.0006,
+ "loss": 4.278448104858398,
+ "step": 835
+ },
+ {
+ "epoch": 11.615115771079074,
+ "grad_norm": 0.25663474202156067,
+ "learning_rate": 0.0006,
+ "loss": 4.308779716491699,
+ "step": 836
+ },
+ {
+ "epoch": 11.629095674967235,
+ "grad_norm": 0.2546203136444092,
+ "learning_rate": 0.0006,
+ "loss": 4.261247634887695,
+ "step": 837
+ },
+ {
+ "epoch": 11.643075578855395,
+ "grad_norm": 0.24722838401794434,
+ "learning_rate": 0.0006,
+ "loss": 4.275888442993164,
+ "step": 838
+ },
+ {
+ "epoch": 11.657055482743557,
+ "grad_norm": 0.3022806644439697,
+ "learning_rate": 0.0006,
+ "loss": 4.2572407722473145,
+ "step": 839
+ },
+ {
+ "epoch": 11.671035386631717,
+ "grad_norm": 0.31170839071273804,
+ "learning_rate": 0.0006,
+ "loss": 4.26992654800415,
+ "step": 840
+ },
+ {
+ "epoch": 11.685015290519878,
+ "grad_norm": 0.31362825632095337,
+ "learning_rate": 0.0006,
+ "loss": 4.2354655265808105,
+ "step": 841
+ },
+ {
+ "epoch": 11.698995194408038,
+ "grad_norm": 0.28741633892059326,
+ "learning_rate": 0.0006,
+ "loss": 4.263496398925781,
+ "step": 842
+ },
+ {
+ "epoch": 11.7129750982962,
+ "grad_norm": 0.2492494285106659,
+ "learning_rate": 0.0006,
+ "loss": 4.26463508605957,
+ "step": 843
+ },
+ {
+ "epoch": 11.72695500218436,
+ "grad_norm": 0.24324660003185272,
+ "learning_rate": 0.0006,
+ "loss": 4.245428085327148,
+ "step": 844
+ },
+ {
+ "epoch": 11.740934906072521,
+ "grad_norm": 0.23591114580631256,
+ "learning_rate": 0.0006,
+ "loss": 4.249845504760742,
+ "step": 845
+ },
+ {
+ "epoch": 11.754914809960681,
+ "grad_norm": 0.2202281504869461,
+ "learning_rate": 0.0006,
+ "loss": 4.245006084442139,
+ "step": 846
+ },
+ {
+ "epoch": 11.768894713848843,
+ "grad_norm": 0.22117942571640015,
+ "learning_rate": 0.0006,
+ "loss": 4.27812385559082,
+ "step": 847
+ },
+ {
+ "epoch": 11.782874617737003,
+ "grad_norm": 0.26361414790153503,
+ "learning_rate": 0.0006,
+ "loss": 4.250475883483887,
+ "step": 848
+ },
+ {
+ "epoch": 11.796854521625164,
+ "grad_norm": 0.2820321321487427,
+ "learning_rate": 0.0006,
+ "loss": 4.265835762023926,
+ "step": 849
+ },
+ {
+ "epoch": 11.810834425513324,
+ "grad_norm": 0.2078961282968521,
+ "learning_rate": 0.0006,
+ "loss": 4.251298904418945,
+ "step": 850
+ },
+ {
+ "epoch": 11.824814329401486,
+ "grad_norm": 0.21548646688461304,
+ "learning_rate": 0.0006,
+ "loss": 4.288539886474609,
+ "step": 851
+ },
+ {
+ "epoch": 11.838794233289645,
+ "grad_norm": 0.22719401121139526,
+ "learning_rate": 0.0006,
+ "loss": 4.252035140991211,
+ "step": 852
+ },
+ {
+ "epoch": 11.852774137177807,
+ "grad_norm": 0.21628320217132568,
+ "learning_rate": 0.0006,
+ "loss": 4.268622398376465,
+ "step": 853
+ },
+ {
+ "epoch": 11.866754041065967,
+ "grad_norm": 0.20855145156383514,
+ "learning_rate": 0.0006,
+ "loss": 4.253366470336914,
+ "step": 854
+ },
+ {
+ "epoch": 11.880733944954128,
+ "grad_norm": 0.2091914266347885,
+ "learning_rate": 0.0006,
+ "loss": 4.237805366516113,
+ "step": 855
+ },
+ {
+ "epoch": 11.89471384884229,
+ "grad_norm": 0.2000127136707306,
+ "learning_rate": 0.0006,
+ "loss": 4.268559455871582,
+ "step": 856
+ },
+ {
+ "epoch": 11.90869375273045,
+ "grad_norm": 0.21080894768238068,
+ "learning_rate": 0.0006,
+ "loss": 4.208702087402344,
+ "step": 857
+ },
+ {
+ "epoch": 11.922673656618612,
+ "grad_norm": 0.22125796973705292,
+ "learning_rate": 0.0006,
+ "loss": 4.250210762023926,
+ "step": 858
+ },
+ {
+ "epoch": 11.936653560506771,
+ "grad_norm": 0.25905469059944153,
+ "learning_rate": 0.0006,
+ "loss": 4.2263593673706055,
+ "step": 859
+ },
+ {
+ "epoch": 11.950633464394933,
+ "grad_norm": 0.29970306158065796,
+ "learning_rate": 0.0006,
+ "loss": 4.250848770141602,
+ "step": 860
+ },
+ {
+ "epoch": 11.964613368283093,
+ "grad_norm": 0.28155168890953064,
+ "learning_rate": 0.0006,
+ "loss": 4.272709369659424,
+ "step": 861
+ },
+ {
+ "epoch": 11.978593272171254,
+ "grad_norm": 0.23396113514900208,
+ "learning_rate": 0.0006,
+ "loss": 4.2674970626831055,
+ "step": 862
+ },
+ {
+ "epoch": 11.992573176059414,
+ "grad_norm": 0.23619577288627625,
+ "learning_rate": 0.0006,
+ "loss": 4.240267753601074,
+ "step": 863
+ },
+ {
+ "epoch": 12.0,
+ "grad_norm": 0.2779577076435089,
+ "learning_rate": 0.0006,
+ "loss": 4.267625331878662,
+ "step": 864
+ },
+ {
+ "epoch": 12.0,
+ "eval_loss": 4.437657356262207,
+ "eval_runtime": 44.4959,
+ "eval_samples_per_second": 54.881,
+ "eval_steps_per_second": 3.439,
+ "step": 864
+ },
+ {
+ "epoch": 12.013979903888162,
+ "grad_norm": 0.2948288321495056,
+ "learning_rate": 0.0006,
+ "loss": 4.232182502746582,
+ "step": 865
+ },
+ {
+ "epoch": 12.027959807776321,
+ "grad_norm": 0.3715663254261017,
+ "learning_rate": 0.0006,
+ "loss": 4.233771324157715,
+ "step": 866
+ },
+ {
+ "epoch": 12.041939711664483,
+ "grad_norm": 0.38358673453330994,
+ "learning_rate": 0.0006,
+ "loss": 4.208967685699463,
+ "step": 867
+ },
+ {
+ "epoch": 12.055919615552643,
+ "grad_norm": 0.3314538896083832,
+ "learning_rate": 0.0006,
+ "loss": 4.230685234069824,
+ "step": 868
+ },
+ {
+ "epoch": 12.069899519440805,
+ "grad_norm": 0.34171539545059204,
+ "learning_rate": 0.0006,
+ "loss": 4.231358528137207,
+ "step": 869
+ },
+ {
+ "epoch": 12.083879423328964,
+ "grad_norm": 0.3253359794616699,
+ "learning_rate": 0.0006,
+ "loss": 4.276405334472656,
+ "step": 870
+ },
+ {
+ "epoch": 12.097859327217126,
+ "grad_norm": 0.29008302092552185,
+ "learning_rate": 0.0006,
+ "loss": 4.232935905456543,
+ "step": 871
+ },
+ {
+ "epoch": 12.111839231105286,
+ "grad_norm": 0.28490355610847473,
+ "learning_rate": 0.0006,
+ "loss": 4.238036632537842,
+ "step": 872
+ },
+ {
+ "epoch": 12.125819134993447,
+ "grad_norm": 0.28446322679519653,
+ "learning_rate": 0.0006,
+ "loss": 4.210229873657227,
+ "step": 873
+ },
+ {
+ "epoch": 12.139799038881607,
+ "grad_norm": 0.29664531350135803,
+ "learning_rate": 0.0006,
+ "loss": 4.221309185028076,
+ "step": 874
+ },
+ {
+ "epoch": 12.153778942769769,
+ "grad_norm": 0.3083505928516388,
+ "learning_rate": 0.0006,
+ "loss": 4.221837997436523,
+ "step": 875
+ },
+ {
+ "epoch": 12.167758846657929,
+ "grad_norm": 0.3282921314239502,
+ "learning_rate": 0.0006,
+ "loss": 4.236713409423828,
+ "step": 876
+ },
+ {
+ "epoch": 12.18173875054609,
+ "grad_norm": 0.3603622615337372,
+ "learning_rate": 0.0006,
+ "loss": 4.245080947875977,
+ "step": 877
+ },
+ {
+ "epoch": 12.19571865443425,
+ "grad_norm": 0.38070905208587646,
+ "learning_rate": 0.0006,
+ "loss": 4.240756988525391,
+ "step": 878
+ },
+ {
+ "epoch": 12.209698558322412,
+ "grad_norm": 0.34479081630706787,
+ "learning_rate": 0.0006,
+ "loss": 4.200998306274414,
+ "step": 879
+ },
+ {
+ "epoch": 12.223678462210572,
+ "grad_norm": 0.3006879389286041,
+ "learning_rate": 0.0006,
+ "loss": 4.23531436920166,
+ "step": 880
+ },
+ {
+ "epoch": 12.237658366098733,
+ "grad_norm": 0.36835649609565735,
+ "learning_rate": 0.0006,
+ "loss": 4.229718208312988,
+ "step": 881
+ },
+ {
+ "epoch": 12.251638269986893,
+ "grad_norm": 0.4386984407901764,
+ "learning_rate": 0.0006,
+ "loss": 4.241188049316406,
+ "step": 882
+ },
+ {
+ "epoch": 12.265618173875055,
+ "grad_norm": 0.4442787170410156,
+ "learning_rate": 0.0006,
+ "loss": 4.239102840423584,
+ "step": 883
+ },
+ {
+ "epoch": 12.279598077763215,
+ "grad_norm": 0.324411541223526,
+ "learning_rate": 0.0006,
+ "loss": 4.198982238769531,
+ "step": 884
+ },
+ {
+ "epoch": 12.293577981651376,
+ "grad_norm": 0.2824151813983917,
+ "learning_rate": 0.0006,
+ "loss": 4.248816967010498,
+ "step": 885
+ },
+ {
+ "epoch": 12.307557885539538,
+ "grad_norm": 0.31407129764556885,
+ "learning_rate": 0.0006,
+ "loss": 4.2371320724487305,
+ "step": 886
+ },
+ {
+ "epoch": 12.321537789427698,
+ "grad_norm": 0.32920050621032715,
+ "learning_rate": 0.0006,
+ "loss": 4.210432052612305,
+ "step": 887
+ },
+ {
+ "epoch": 12.33551769331586,
+ "grad_norm": 0.315231055021286,
+ "learning_rate": 0.0006,
+ "loss": 4.219416618347168,
+ "step": 888
+ },
+ {
+ "epoch": 12.349497597204019,
+ "grad_norm": 0.30932050943374634,
+ "learning_rate": 0.0006,
+ "loss": 4.225022315979004,
+ "step": 889
+ },
+ {
+ "epoch": 12.36347750109218,
+ "grad_norm": 0.30242064595222473,
+ "learning_rate": 0.0006,
+ "loss": 4.2738518714904785,
+ "step": 890
+ },
+ {
+ "epoch": 12.37745740498034,
+ "grad_norm": 0.2926250994205475,
+ "learning_rate": 0.0006,
+ "loss": 4.231094837188721,
+ "step": 891
+ },
+ {
+ "epoch": 12.391437308868502,
+ "grad_norm": 0.2541215717792511,
+ "learning_rate": 0.0006,
+ "loss": 4.211821556091309,
+ "step": 892
+ },
+ {
+ "epoch": 12.405417212756662,
+ "grad_norm": 0.23693418502807617,
+ "learning_rate": 0.0006,
+ "loss": 4.208099365234375,
+ "step": 893
+ },
+ {
+ "epoch": 12.419397116644824,
+ "grad_norm": 0.22063226997852325,
+ "learning_rate": 0.0006,
+ "loss": 4.211234092712402,
+ "step": 894
+ },
+ {
+ "epoch": 12.433377020532983,
+ "grad_norm": 0.21536271274089813,
+ "learning_rate": 0.0006,
+ "loss": 4.199228286743164,
+ "step": 895
+ },
+ {
+ "epoch": 12.447356924421145,
+ "grad_norm": 0.243179589509964,
+ "learning_rate": 0.0006,
+ "loss": 4.204344749450684,
+ "step": 896
+ },
+ {
+ "epoch": 12.461336828309305,
+ "grad_norm": 0.2299746423959732,
+ "learning_rate": 0.0006,
+ "loss": 4.1565752029418945,
+ "step": 897
+ },
+ {
+ "epoch": 12.475316732197467,
+ "grad_norm": 0.2286847084760666,
+ "learning_rate": 0.0006,
+ "loss": 4.242953777313232,
+ "step": 898
+ },
+ {
+ "epoch": 12.489296636085626,
+ "grad_norm": 0.19463586807250977,
+ "learning_rate": 0.0006,
+ "loss": 4.214809417724609,
+ "step": 899
+ },
+ {
+ "epoch": 12.503276539973788,
+ "grad_norm": 0.1978398710489273,
+ "learning_rate": 0.0006,
+ "loss": 4.159815311431885,
+ "step": 900
+ },
+ {
+ "epoch": 12.517256443861948,
+ "grad_norm": 0.23177850246429443,
+ "learning_rate": 0.0006,
+ "loss": 4.2069902420043945,
+ "step": 901
+ },
+ {
+ "epoch": 12.53123634775011,
+ "grad_norm": 0.2408912032842636,
+ "learning_rate": 0.0006,
+ "loss": 4.206778526306152,
+ "step": 902
+ },
+ {
+ "epoch": 12.54521625163827,
+ "grad_norm": 0.21839919686317444,
+ "learning_rate": 0.0006,
+ "loss": 4.197076320648193,
+ "step": 903
+ },
+ {
+ "epoch": 12.55919615552643,
+ "grad_norm": 0.2053343504667282,
+ "learning_rate": 0.0006,
+ "loss": 4.21247673034668,
+ "step": 904
+ },
+ {
+ "epoch": 12.57317605941459,
+ "grad_norm": 0.19943439960479736,
+ "learning_rate": 0.0006,
+ "loss": 4.176966667175293,
+ "step": 905
+ },
+ {
+ "epoch": 12.587155963302752,
+ "grad_norm": 0.2012074887752533,
+ "learning_rate": 0.0006,
+ "loss": 4.210303783416748,
+ "step": 906
+ },
+ {
+ "epoch": 12.601135867190912,
+ "grad_norm": 0.22240376472473145,
+ "learning_rate": 0.0006,
+ "loss": 4.200625896453857,
+ "step": 907
+ },
+ {
+ "epoch": 12.615115771079074,
+ "grad_norm": 0.21729710698127747,
+ "learning_rate": 0.0006,
+ "loss": 4.2001953125,
+ "step": 908
+ },
+ {
+ "epoch": 12.629095674967235,
+ "grad_norm": 0.22470413148403168,
+ "learning_rate": 0.0006,
+ "loss": 4.197505950927734,
+ "step": 909
+ },
+ {
+ "epoch": 12.643075578855395,
+ "grad_norm": 0.23776157200336456,
+ "learning_rate": 0.0006,
+ "loss": 4.235603332519531,
+ "step": 910
+ },
+ {
+ "epoch": 12.657055482743557,
+ "grad_norm": 0.20616604387760162,
+ "learning_rate": 0.0006,
+ "loss": 4.193584442138672,
+ "step": 911
+ },
+ {
+ "epoch": 12.671035386631717,
+ "grad_norm": 0.1913922131061554,
+ "learning_rate": 0.0006,
+ "loss": 4.209191799163818,
+ "step": 912
+ },
+ {
+ "epoch": 12.685015290519878,
+ "grad_norm": 0.19427193701267242,
+ "learning_rate": 0.0006,
+ "loss": 4.219709396362305,
+ "step": 913
+ },
+ {
+ "epoch": 12.698995194408038,
+ "grad_norm": 0.20976558327674866,
+ "learning_rate": 0.0006,
+ "loss": 4.210859298706055,
+ "step": 914
+ },
+ {
+ "epoch": 12.7129750982962,
+ "grad_norm": 0.21571609377861023,
+ "learning_rate": 0.0006,
+ "loss": 4.189394950866699,
+ "step": 915
+ },
+ {
+ "epoch": 12.72695500218436,
+ "grad_norm": 0.2152620255947113,
+ "learning_rate": 0.0006,
+ "loss": 4.223589897155762,
+ "step": 916
+ },
+ {
+ "epoch": 12.740934906072521,
+ "grad_norm": 0.21867749094963074,
+ "learning_rate": 0.0006,
+ "loss": 4.198590278625488,
+ "step": 917
+ },
+ {
+ "epoch": 12.754914809960681,
+ "grad_norm": 0.22300855815410614,
+ "learning_rate": 0.0006,
+ "loss": 4.188891410827637,
+ "step": 918
+ },
+ {
+ "epoch": 12.768894713848843,
+ "grad_norm": 0.22197802364826202,
+ "learning_rate": 0.0006,
+ "loss": 4.190221309661865,
+ "step": 919
+ },
+ {
+ "epoch": 12.782874617737003,
+ "grad_norm": 0.20003341138362885,
+ "learning_rate": 0.0006,
+ "loss": 4.215453147888184,
+ "step": 920
+ },
+ {
+ "epoch": 12.796854521625164,
+ "grad_norm": 0.19887958467006683,
+ "learning_rate": 0.0006,
+ "loss": 4.18174934387207,
+ "step": 921
+ },
+ {
+ "epoch": 12.810834425513324,
+ "grad_norm": 0.20945803821086884,
+ "learning_rate": 0.0006,
+ "loss": 4.234947204589844,
+ "step": 922
+ },
+ {
+ "epoch": 12.824814329401486,
+ "grad_norm": 0.2253490388393402,
+ "learning_rate": 0.0006,
+ "loss": 4.2177228927612305,
+ "step": 923
+ },
+ {
+ "epoch": 12.838794233289645,
+ "grad_norm": 0.247610405087471,
+ "learning_rate": 0.0006,
+ "loss": 4.2013139724731445,
+ "step": 924
+ },
+ {
+ "epoch": 12.852774137177807,
+ "grad_norm": 0.2792088985443115,
+ "learning_rate": 0.0006,
+ "loss": 4.204774379730225,
+ "step": 925
+ },
+ {
+ "epoch": 12.866754041065967,
+ "grad_norm": 0.2839066982269287,
+ "learning_rate": 0.0006,
+ "loss": 4.186254978179932,
+ "step": 926
+ },
+ {
+ "epoch": 12.880733944954128,
+ "grad_norm": 0.2793181836605072,
+ "learning_rate": 0.0006,
+ "loss": 4.172411918640137,
+ "step": 927
+ },
+ {
+ "epoch": 12.89471384884229,
+ "grad_norm": 0.29506033658981323,
+ "learning_rate": 0.0006,
+ "loss": 4.202878475189209,
+ "step": 928
+ },
+ {
+ "epoch": 12.90869375273045,
+ "grad_norm": 0.2799845039844513,
+ "learning_rate": 0.0006,
+ "loss": 4.1563310623168945,
+ "step": 929
+ },
+ {
+ "epoch": 12.922673656618612,
+ "grad_norm": 0.23972125351428986,
+ "learning_rate": 0.0006,
+ "loss": 4.224601745605469,
+ "step": 930
+ },
+ {
+ "epoch": 12.936653560506771,
+ "grad_norm": 0.21558353304862976,
+ "learning_rate": 0.0006,
+ "loss": 4.167957305908203,
+ "step": 931
+ },
+ {
+ "epoch": 12.950633464394933,
+ "grad_norm": 0.21800188720226288,
+ "learning_rate": 0.0006,
+ "loss": 4.1746039390563965,
+ "step": 932
+ },
+ {
+ "epoch": 12.964613368283093,
+ "grad_norm": 0.2086547315120697,
+ "learning_rate": 0.0006,
+ "loss": 4.188137054443359,
+ "step": 933
+ },
+ {
+ "epoch": 12.978593272171254,
+ "grad_norm": 0.2174186110496521,
+ "learning_rate": 0.0006,
+ "loss": 4.184014320373535,
+ "step": 934
+ },
+ {
+ "epoch": 12.992573176059414,
+ "grad_norm": 0.22755110263824463,
+ "learning_rate": 0.0006,
+ "loss": 4.180912017822266,
+ "step": 935
+ },
+ {
+ "epoch": 13.0,
+ "grad_norm": 0.2735324203968048,
+ "learning_rate": 0.0006,
+ "loss": 4.201578617095947,
+ "step": 936
+ },
+ {
+ "epoch": 13.0,
+ "eval_loss": 4.396903038024902,
+ "eval_runtime": 44.5664,
+ "eval_samples_per_second": 54.795,
+ "eval_steps_per_second": 3.433,
+ "step": 936
+ },
+ {
+ "epoch": 13.013979903888162,
+ "grad_norm": 0.27577832341194153,
+ "learning_rate": 0.0006,
+ "loss": 4.149985313415527,
+ "step": 937
+ },
+ {
+ "epoch": 13.027959807776321,
+ "grad_norm": 0.25817009806632996,
+ "learning_rate": 0.0006,
+ "loss": 4.1526103019714355,
+ "step": 938
+ },
+ {
+ "epoch": 13.041939711664483,
+ "grad_norm": 0.24564379453659058,
+ "learning_rate": 0.0006,
+ "loss": 4.1661152839660645,
+ "step": 939
+ },
+ {
+ "epoch": 13.055919615552643,
+ "grad_norm": 0.2465466856956482,
+ "learning_rate": 0.0006,
+ "loss": 4.152953624725342,
+ "step": 940
+ },
+ {
+ "epoch": 13.069899519440805,
+ "grad_norm": 0.22702018916606903,
+ "learning_rate": 0.0006,
+ "loss": 4.145125389099121,
+ "step": 941
+ },
+ {
+ "epoch": 13.083879423328964,
+ "grad_norm": 0.24350613355636597,
+ "learning_rate": 0.0006,
+ "loss": 4.163095474243164,
+ "step": 942
+ },
+ {
+ "epoch": 13.097859327217126,
+ "grad_norm": 0.2504431903362274,
+ "learning_rate": 0.0006,
+ "loss": 4.136016845703125,
+ "step": 943
+ },
+ {
+ "epoch": 13.111839231105286,
+ "grad_norm": 0.24968865513801575,
+ "learning_rate": 0.0006,
+ "loss": 4.163487911224365,
+ "step": 944
+ },
+ {
+ "epoch": 13.125819134993447,
+ "grad_norm": 0.27164196968078613,
+ "learning_rate": 0.0006,
+ "loss": 4.1194353103637695,
+ "step": 945
+ },
+ {
+ "epoch": 13.139799038881607,
+ "grad_norm": 0.28127020597457886,
+ "learning_rate": 0.0006,
+ "loss": 4.184807300567627,
+ "step": 946
+ },
+ {
+ "epoch": 13.153778942769769,
+ "grad_norm": 0.24574966728687286,
+ "learning_rate": 0.0006,
+ "loss": 4.154998779296875,
+ "step": 947
+ },
+ {
+ "epoch": 13.167758846657929,
+ "grad_norm": 0.22310060262680054,
+ "learning_rate": 0.0006,
+ "loss": 4.182928085327148,
+ "step": 948
+ },
+ {
+ "epoch": 13.18173875054609,
+ "grad_norm": 0.2539508640766144,
+ "learning_rate": 0.0006,
+ "loss": 4.176900386810303,
+ "step": 949
+ },
+ {
+ "epoch": 13.19571865443425,
+ "grad_norm": 0.30925488471984863,
+ "learning_rate": 0.0006,
+ "loss": 4.1760711669921875,
+ "step": 950
+ },
+ {
+ "epoch": 13.209698558322412,
+ "grad_norm": 0.3842967450618744,
+ "learning_rate": 0.0006,
+ "loss": 4.1830949783325195,
+ "step": 951
+ },
+ {
+ "epoch": 13.223678462210572,
+ "grad_norm": 0.35950011014938354,
+ "learning_rate": 0.0006,
+ "loss": 4.131983757019043,
+ "step": 952
+ },
+ {
+ "epoch": 13.237658366098733,
+ "grad_norm": 0.29913705587387085,
+ "learning_rate": 0.0006,
+ "loss": 4.166984558105469,
+ "step": 953
+ },
+ {
+ "epoch": 13.251638269986893,
+ "grad_norm": 0.32008400559425354,
+ "learning_rate": 0.0006,
+ "loss": 4.156482696533203,
+ "step": 954
+ },
+ {
+ "epoch": 13.265618173875055,
+ "grad_norm": 0.3186642825603485,
+ "learning_rate": 0.0006,
+ "loss": 4.1661057472229,
+ "step": 955
+ },
+ {
+ "epoch": 13.279598077763215,
+ "grad_norm": 0.3194582462310791,
+ "learning_rate": 0.0006,
+ "loss": 4.169328689575195,
+ "step": 956
+ },
+ {
+ "epoch": 13.293577981651376,
+ "grad_norm": 0.3133867084980011,
+ "learning_rate": 0.0006,
+ "loss": 4.165459632873535,
+ "step": 957
+ },
+ {
+ "epoch": 13.307557885539538,
+ "grad_norm": 0.3232237696647644,
+ "learning_rate": 0.0006,
+ "loss": 4.2107439041137695,
+ "step": 958
+ },
+ {
+ "epoch": 13.321537789427698,
+ "grad_norm": 0.3133196234703064,
+ "learning_rate": 0.0006,
+ "loss": 4.184182167053223,
+ "step": 959
+ },
+ {
+ "epoch": 13.33551769331586,
+ "grad_norm": 0.296129435300827,
+ "learning_rate": 0.0006,
+ "loss": 4.168312072753906,
+ "step": 960
+ },
+ {
+ "epoch": 13.349497597204019,
+ "grad_norm": 0.2685348391532898,
+ "learning_rate": 0.0006,
+ "loss": 4.159984588623047,
+ "step": 961
+ },
+ {
+ "epoch": 13.36347750109218,
+ "grad_norm": 0.2644975781440735,
+ "learning_rate": 0.0006,
+ "loss": 4.164909362792969,
+ "step": 962
+ },
+ {
+ "epoch": 13.37745740498034,
+ "grad_norm": 0.2712913155555725,
+ "learning_rate": 0.0006,
+ "loss": 4.158056259155273,
+ "step": 963
+ },
+ {
+ "epoch": 13.391437308868502,
+ "grad_norm": 0.2687259316444397,
+ "learning_rate": 0.0006,
+ "loss": 4.182924270629883,
+ "step": 964
+ },
+ {
+ "epoch": 13.405417212756662,
+ "grad_norm": 0.25640392303466797,
+ "learning_rate": 0.0006,
+ "loss": 4.153351783752441,
+ "step": 965
+ },
+ {
+ "epoch": 13.419397116644824,
+ "grad_norm": 0.2646305561065674,
+ "learning_rate": 0.0006,
+ "loss": 4.18464469909668,
+ "step": 966
+ },
+ {
+ "epoch": 13.433377020532983,
+ "grad_norm": 0.24206851422786713,
+ "learning_rate": 0.0006,
+ "loss": 4.127564430236816,
+ "step": 967
+ },
+ {
+ "epoch": 13.447356924421145,
+ "grad_norm": 0.23800471425056458,
+ "learning_rate": 0.0006,
+ "loss": 4.163488388061523,
+ "step": 968
+ },
+ {
+ "epoch": 13.461336828309305,
+ "grad_norm": 0.22957314550876617,
+ "learning_rate": 0.0006,
+ "loss": 4.178133964538574,
+ "step": 969
+ },
+ {
+ "epoch": 13.475316732197467,
+ "grad_norm": 0.22867488861083984,
+ "learning_rate": 0.0006,
+ "loss": 4.159056186676025,
+ "step": 970
+ },
+ {
+ "epoch": 13.489296636085626,
+ "grad_norm": 0.21737419068813324,
+ "learning_rate": 0.0006,
+ "loss": 4.138628005981445,
+ "step": 971
+ },
+ {
+ "epoch": 13.503276539973788,
+ "grad_norm": 0.2319175899028778,
+ "learning_rate": 0.0006,
+ "loss": 4.14644718170166,
+ "step": 972
+ },
+ {
+ "epoch": 13.517256443861948,
+ "grad_norm": 0.2572193443775177,
+ "learning_rate": 0.0006,
+ "loss": 4.175213813781738,
+ "step": 973
+ },
+ {
+ "epoch": 13.53123634775011,
+ "grad_norm": 0.23483099043369293,
+ "learning_rate": 0.0006,
+ "loss": 4.133171558380127,
+ "step": 974
+ },
+ {
+ "epoch": 13.54521625163827,
+ "grad_norm": 0.2071552872657776,
+ "learning_rate": 0.0006,
+ "loss": 4.13730525970459,
+ "step": 975
+ },
+ {
+ "epoch": 13.55919615552643,
+ "grad_norm": 0.23074553906917572,
+ "learning_rate": 0.0006,
+ "loss": 4.175051689147949,
+ "step": 976
+ },
+ {
+ "epoch": 13.57317605941459,
+ "grad_norm": 0.2480078786611557,
+ "learning_rate": 0.0006,
+ "loss": 4.167630672454834,
+ "step": 977
+ },
+ {
+ "epoch": 13.587155963302752,
+ "grad_norm": 0.23444348573684692,
+ "learning_rate": 0.0006,
+ "loss": 4.141780853271484,
+ "step": 978
+ },
+ {
+ "epoch": 13.601135867190912,
+ "grad_norm": 0.2227829396724701,
+ "learning_rate": 0.0006,
+ "loss": 4.157566547393799,
+ "step": 979
+ },
+ {
+ "epoch": 13.615115771079074,
+ "grad_norm": 0.21478354930877686,
+ "learning_rate": 0.0006,
+ "loss": 4.131053447723389,
+ "step": 980
+ },
+ {
+ "epoch": 13.629095674967235,
+ "grad_norm": 0.1978664994239807,
+ "learning_rate": 0.0006,
+ "loss": 4.123660564422607,
+ "step": 981
+ },
+ {
+ "epoch": 13.643075578855395,
+ "grad_norm": 0.19980201125144958,
+ "learning_rate": 0.0006,
+ "loss": 4.174160480499268,
+ "step": 982
+ },
+ {
+ "epoch": 13.657055482743557,
+ "grad_norm": 0.19815555214881897,
+ "learning_rate": 0.0006,
+ "loss": 4.181703090667725,
+ "step": 983
+ },
+ {
+ "epoch": 13.671035386631717,
+ "grad_norm": 0.19524012506008148,
+ "learning_rate": 0.0006,
+ "loss": 4.163766860961914,
+ "step": 984
+ },
+ {
+ "epoch": 13.685015290519878,
+ "grad_norm": 0.2286096215248108,
+ "learning_rate": 0.0006,
+ "loss": 4.172213554382324,
+ "step": 985
+ },
+ {
+ "epoch": 13.698995194408038,
+ "grad_norm": 0.2210782766342163,
+ "learning_rate": 0.0006,
+ "loss": 4.187033653259277,
+ "step": 986
+ },
+ {
+ "epoch": 13.7129750982962,
+ "grad_norm": 0.21874216198921204,
+ "learning_rate": 0.0006,
+ "loss": 4.125125885009766,
+ "step": 987
+ },
+ {
+ "epoch": 13.72695500218436,
+ "grad_norm": 0.22848057746887207,
+ "learning_rate": 0.0006,
+ "loss": 4.153496742248535,
+ "step": 988
+ },
+ {
+ "epoch": 13.740934906072521,
+ "grad_norm": 0.2250450700521469,
+ "learning_rate": 0.0006,
+ "loss": 4.149165630340576,
+ "step": 989
+ },
+ {
+ "epoch": 13.754914809960681,
+ "grad_norm": 0.21443772315979004,
+ "learning_rate": 0.0006,
+ "loss": 4.1528825759887695,
+ "step": 990
+ },
+ {
+ "epoch": 13.768894713848843,
+ "grad_norm": 0.21927927434444427,
+ "learning_rate": 0.0006,
+ "loss": 4.146831512451172,
+ "step": 991
+ },
+ {
+ "epoch": 13.782874617737003,
+ "grad_norm": 0.2413124144077301,
+ "learning_rate": 0.0006,
+ "loss": 4.136909008026123,
+ "step": 992
+ },
+ {
+ "epoch": 13.796854521625164,
+ "grad_norm": 0.2603479325771332,
+ "learning_rate": 0.0006,
+ "loss": 4.12525749206543,
+ "step": 993
+ },
+ {
+ "epoch": 13.810834425513324,
+ "grad_norm": 0.26246970891952515,
+ "learning_rate": 0.0006,
+ "loss": 4.114049434661865,
+ "step": 994
+ },
+ {
+ "epoch": 13.824814329401486,
+ "grad_norm": 0.27031877636909485,
+ "learning_rate": 0.0006,
+ "loss": 4.1646552085876465,
+ "step": 995
+ },
+ {
+ "epoch": 13.838794233289645,
+ "grad_norm": 0.2499857395887375,
+ "learning_rate": 0.0006,
+ "loss": 4.139284133911133,
+ "step": 996
+ },
+ {
+ "epoch": 13.852774137177807,
+ "grad_norm": 0.22026537358760834,
+ "learning_rate": 0.0006,
+ "loss": 4.142191410064697,
+ "step": 997
+ },
+ {
+ "epoch": 13.866754041065967,
+ "grad_norm": 0.23738551139831543,
+ "learning_rate": 0.0006,
+ "loss": 4.1422882080078125,
+ "step": 998
+ },
+ {
+ "epoch": 13.880733944954128,
+ "grad_norm": 0.2416357398033142,
+ "learning_rate": 0.0006,
+ "loss": 4.14063835144043,
+ "step": 999
+ },
+ {
+ "epoch": 13.89471384884229,
+ "grad_norm": 0.33822184801101685,
+ "learning_rate": 0.0006,
+ "loss": 4.12839412689209,
+ "step": 1000
+ },
+ {
+ "epoch": 13.90869375273045,
+ "grad_norm": 0.3409678339958191,
+ "learning_rate": 0.0006,
+ "loss": 4.145351886749268,
+ "step": 1001
+ },
+ {
+ "epoch": 13.922673656618612,
+ "grad_norm": 0.2467597872018814,
+ "learning_rate": 0.0006,
+ "loss": 4.155339241027832,
+ "step": 1002
+ },
+ {
+ "epoch": 13.936653560506771,
+ "grad_norm": 0.2314649075269699,
+ "learning_rate": 0.0006,
+ "loss": 4.130176067352295,
+ "step": 1003
+ },
+ {
+ "epoch": 13.950633464394933,
+ "grad_norm": 0.23701290786266327,
+ "learning_rate": 0.0006,
+ "loss": 4.19205379486084,
+ "step": 1004
+ },
+ {
+ "epoch": 13.964613368283093,
+ "grad_norm": 0.2466491460800171,
+ "learning_rate": 0.0006,
+ "loss": 4.118908882141113,
+ "step": 1005
+ },
+ {
+ "epoch": 13.978593272171254,
+ "grad_norm": 0.23746836185455322,
+ "learning_rate": 0.0006,
+ "loss": 4.16111946105957,
+ "step": 1006
+ },
+ {
+ "epoch": 13.992573176059414,
+ "grad_norm": 0.24497751891613007,
+ "learning_rate": 0.0006,
+ "loss": 4.148624420166016,
+ "step": 1007
+ },
+ {
+ "epoch": 14.0,
+ "grad_norm": 0.25735899806022644,
+ "learning_rate": 0.0006,
+ "loss": 4.12002420425415,
+ "step": 1008
+ },
+ {
+ "epoch": 14.0,
+ "eval_loss": 4.335351467132568,
+ "eval_runtime": 44.0523,
+ "eval_samples_per_second": 55.434,
+ "eval_steps_per_second": 3.473,
+ "step": 1008
+ },
+ {
+ "epoch": 14.013979903888162,
+ "grad_norm": 0.24570082128047943,
+ "learning_rate": 0.0006,
+ "loss": 4.1036176681518555,
+ "step": 1009
+ },
+ {
+ "epoch": 14.027959807776321,
+ "grad_norm": 0.2525855302810669,
+ "learning_rate": 0.0006,
+ "loss": 4.142077445983887,
+ "step": 1010
+ },
+ {
+ "epoch": 14.041939711664483,
+ "grad_norm": 0.2701111435890198,
+ "learning_rate": 0.0006,
+ "loss": 4.096988677978516,
+ "step": 1011
+ },
+ {
+ "epoch": 14.055919615552643,
+ "grad_norm": 0.28173309564590454,
+ "learning_rate": 0.0006,
+ "loss": 4.148448944091797,
+ "step": 1012
+ },
+ {
+ "epoch": 14.069899519440805,
+ "grad_norm": 0.2651294469833374,
+ "learning_rate": 0.0006,
+ "loss": 4.121731281280518,
+ "step": 1013
+ },
+ {
+ "epoch": 14.083879423328964,
+ "grad_norm": 0.21160121262073517,
+ "learning_rate": 0.0006,
+ "loss": 4.108980178833008,
+ "step": 1014
+ },
+ {
+ "epoch": 14.097859327217126,
+ "grad_norm": 0.24786953628063202,
+ "learning_rate": 0.0006,
+ "loss": 4.133942604064941,
+ "step": 1015
+ },
+ {
+ "epoch": 14.111839231105286,
+ "grad_norm": 0.2722747027873993,
+ "learning_rate": 0.0006,
+ "loss": 4.115242958068848,
+ "step": 1016
+ },
+ {
+ "epoch": 14.125819134993447,
+ "grad_norm": 0.273360013961792,
+ "learning_rate": 0.0006,
+ "loss": 4.059296607971191,
+ "step": 1017
+ },
+ {
+ "epoch": 14.139799038881607,
+ "grad_norm": 0.2541784942150116,
+ "learning_rate": 0.0006,
+ "loss": 4.118365287780762,
+ "step": 1018
+ },
+ {
+ "epoch": 14.153778942769769,
+ "grad_norm": 0.23806381225585938,
+ "learning_rate": 0.0006,
+ "loss": 4.102812767028809,
+ "step": 1019
+ },
+ {
+ "epoch": 14.167758846657929,
+ "grad_norm": 0.2541005313396454,
+ "learning_rate": 0.0006,
+ "loss": 4.093264579772949,
+ "step": 1020
+ },
+ {
+ "epoch": 14.18173875054609,
+ "grad_norm": 0.2619539499282837,
+ "learning_rate": 0.0006,
+ "loss": 4.114917278289795,
+ "step": 1021
+ },
+ {
+ "epoch": 14.19571865443425,
+ "grad_norm": 0.2466963529586792,
+ "learning_rate": 0.0006,
+ "loss": 4.098258972167969,
+ "step": 1022
+ },
+ {
+ "epoch": 14.209698558322412,
+ "grad_norm": 0.24341611564159393,
+ "learning_rate": 0.0006,
+ "loss": 4.109346389770508,
+ "step": 1023
+ },
+ {
+ "epoch": 14.223678462210572,
+ "grad_norm": 0.23977765440940857,
+ "learning_rate": 0.0006,
+ "loss": 4.106716156005859,
+ "step": 1024
+ },
+ {
+ "epoch": 14.237658366098733,
+ "grad_norm": 0.253528356552124,
+ "learning_rate": 0.0006,
+ "loss": 4.102226257324219,
+ "step": 1025
+ },
+ {
+ "epoch": 14.251638269986893,
+ "grad_norm": 0.26954543590545654,
+ "learning_rate": 0.0006,
+ "loss": 4.107413291931152,
+ "step": 1026
+ },
+ {
+ "epoch": 14.265618173875055,
+ "grad_norm": 0.2610514760017395,
+ "learning_rate": 0.0006,
+ "loss": 4.110824108123779,
+ "step": 1027
+ },
+ {
+ "epoch": 14.279598077763215,
+ "grad_norm": 0.2579168677330017,
+ "learning_rate": 0.0006,
+ "loss": 4.082438945770264,
+ "step": 1028
+ },
+ {
+ "epoch": 14.293577981651376,
+ "grad_norm": 0.26916536688804626,
+ "learning_rate": 0.0006,
+ "loss": 4.075734615325928,
+ "step": 1029
+ },
+ {
+ "epoch": 14.307557885539538,
+ "grad_norm": 0.2998618185520172,
+ "learning_rate": 0.0006,
+ "loss": 4.088419437408447,
+ "step": 1030
+ },
+ {
+ "epoch": 14.321537789427698,
+ "grad_norm": 0.3162737190723419,
+ "learning_rate": 0.0006,
+ "loss": 4.125833034515381,
+ "step": 1031
+ },
+ {
+ "epoch": 14.33551769331586,
+ "grad_norm": 0.318601131439209,
+ "learning_rate": 0.0006,
+ "loss": 4.077424049377441,
+ "step": 1032
+ },
+ {
+ "epoch": 14.349497597204019,
+ "grad_norm": 0.32113415002822876,
+ "learning_rate": 0.0006,
+ "loss": 4.113360404968262,
+ "step": 1033
+ },
+ {
+ "epoch": 14.36347750109218,
+ "grad_norm": 0.3150886297225952,
+ "learning_rate": 0.0006,
+ "loss": 4.100013732910156,
+ "step": 1034
+ },
+ {
+ "epoch": 14.37745740498034,
+ "grad_norm": 0.29279956221580505,
+ "learning_rate": 0.0006,
+ "loss": 4.136394500732422,
+ "step": 1035
+ },
+ {
+ "epoch": 14.391437308868502,
+ "grad_norm": 0.28532543778419495,
+ "learning_rate": 0.0006,
+ "loss": 4.138948440551758,
+ "step": 1036
+ },
+ {
+ "epoch": 14.405417212756662,
+ "grad_norm": 0.2825978398323059,
+ "learning_rate": 0.0006,
+ "loss": 4.112217903137207,
+ "step": 1037
+ },
+ {
+ "epoch": 14.419397116644824,
+ "grad_norm": 0.2891198694705963,
+ "learning_rate": 0.0006,
+ "loss": 4.102682113647461,
+ "step": 1038
+ },
+ {
+ "epoch": 14.433377020532983,
+ "grad_norm": 0.2917391061782837,
+ "learning_rate": 0.0006,
+ "loss": 4.120752811431885,
+ "step": 1039
+ },
+ {
+ "epoch": 14.447356924421145,
+ "grad_norm": 0.2589806914329529,
+ "learning_rate": 0.0006,
+ "loss": 4.130519390106201,
+ "step": 1040
+ },
+ {
+ "epoch": 14.461336828309305,
+ "grad_norm": 0.2674788534641266,
+ "learning_rate": 0.0006,
+ "loss": 4.130382537841797,
+ "step": 1041
+ },
+ {
+ "epoch": 14.475316732197467,
+ "grad_norm": 0.2820362150669098,
+ "learning_rate": 0.0006,
+ "loss": 4.13947868347168,
+ "step": 1042
+ },
+ {
+ "epoch": 14.489296636085626,
+ "grad_norm": 0.2650109529495239,
+ "learning_rate": 0.0006,
+ "loss": 4.130346775054932,
+ "step": 1043
+ },
+ {
+ "epoch": 14.503276539973788,
+ "grad_norm": 0.29137638211250305,
+ "learning_rate": 0.0006,
+ "loss": 4.055751800537109,
+ "step": 1044
+ },
+ {
+ "epoch": 14.517256443861948,
+ "grad_norm": 0.3232433497905731,
+ "learning_rate": 0.0006,
+ "loss": 4.114810943603516,
+ "step": 1045
+ },
+ {
+ "epoch": 14.53123634775011,
+ "grad_norm": 0.2724473476409912,
+ "learning_rate": 0.0006,
+ "loss": 4.088351249694824,
+ "step": 1046
+ },
+ {
+ "epoch": 14.54521625163827,
+ "grad_norm": 0.23994430899620056,
+ "learning_rate": 0.0006,
+ "loss": 4.110936164855957,
+ "step": 1047
+ },
+ {
+ "epoch": 14.55919615552643,
+ "grad_norm": 0.2422720044851303,
+ "learning_rate": 0.0006,
+ "loss": 4.132844924926758,
+ "step": 1048
+ },
+ {
+ "epoch": 14.57317605941459,
+ "grad_norm": 0.21148815751075745,
+ "learning_rate": 0.0006,
+ "loss": 4.102499961853027,
+ "step": 1049
+ },
+ {
+ "epoch": 14.587155963302752,
+ "grad_norm": 0.22221639752388,
+ "learning_rate": 0.0006,
+ "loss": 4.126241683959961,
+ "step": 1050
+ },
+ {
+ "epoch": 14.601135867190912,
+ "grad_norm": 0.2538735866546631,
+ "learning_rate": 0.0006,
+ "loss": 4.116817951202393,
+ "step": 1051
+ },
+ {
+ "epoch": 14.615115771079074,
+ "grad_norm": 0.2555900514125824,
+ "learning_rate": 0.0006,
+ "loss": 4.106309413909912,
+ "step": 1052
+ },
+ {
+ "epoch": 14.629095674967235,
+ "grad_norm": 0.24753783643245697,
+ "learning_rate": 0.0006,
+ "loss": 4.1015119552612305,
+ "step": 1053
+ },
+ {
+ "epoch": 14.643075578855395,
+ "grad_norm": 0.238885298371315,
+ "learning_rate": 0.0006,
+ "loss": 4.120419502258301,
+ "step": 1054
+ },
+ {
+ "epoch": 14.657055482743557,
+ "grad_norm": 0.22693610191345215,
+ "learning_rate": 0.0006,
+ "loss": 4.084968566894531,
+ "step": 1055
+ },
+ {
+ "epoch": 14.671035386631717,
+ "grad_norm": 0.2100025862455368,
+ "learning_rate": 0.0006,
+ "loss": 4.108001708984375,
+ "step": 1056
+ },
+ {
+ "epoch": 14.685015290519878,
+ "grad_norm": 0.20437054336071014,
+ "learning_rate": 0.0006,
+ "loss": 4.151417255401611,
+ "step": 1057
+ },
+ {
+ "epoch": 14.698995194408038,
+ "grad_norm": 0.1926720291376114,
+ "learning_rate": 0.0006,
+ "loss": 4.091334342956543,
+ "step": 1058
+ },
+ {
+ "epoch": 14.7129750982962,
+ "grad_norm": 0.2120140641927719,
+ "learning_rate": 0.0006,
+ "loss": 4.111706256866455,
+ "step": 1059
+ },
+ {
+ "epoch": 14.72695500218436,
+ "grad_norm": 0.22877076268196106,
+ "learning_rate": 0.0006,
+ "loss": 4.123166084289551,
+ "step": 1060
+ },
+ {
+ "epoch": 14.740934906072521,
+ "grad_norm": 0.22149473428726196,
+ "learning_rate": 0.0006,
+ "loss": 4.099740028381348,
+ "step": 1061
+ },
+ {
+ "epoch": 14.754914809960681,
+ "grad_norm": 0.2351604402065277,
+ "learning_rate": 0.0006,
+ "loss": 4.066174507141113,
+ "step": 1062
+ },
+ {
+ "epoch": 14.768894713848843,
+ "grad_norm": 0.22895802557468414,
+ "learning_rate": 0.0006,
+ "loss": 4.101897239685059,
+ "step": 1063
+ },
+ {
+ "epoch": 14.782874617737003,
+ "grad_norm": 0.22050750255584717,
+ "learning_rate": 0.0006,
+ "loss": 4.122953414916992,
+ "step": 1064
+ },
+ {
+ "epoch": 14.796854521625164,
+ "grad_norm": 0.23255324363708496,
+ "learning_rate": 0.0006,
+ "loss": 4.11297607421875,
+ "step": 1065
+ },
+ {
+ "epoch": 14.810834425513324,
+ "grad_norm": 0.24522703886032104,
+ "learning_rate": 0.0006,
+ "loss": 4.131030082702637,
+ "step": 1066
+ },
+ {
+ "epoch": 14.824814329401486,
+ "grad_norm": 0.2492702752351761,
+ "learning_rate": 0.0006,
+ "loss": 4.076324939727783,
+ "step": 1067
+ },
+ {
+ "epoch": 14.838794233289645,
+ "grad_norm": 0.24410948157310486,
+ "learning_rate": 0.0006,
+ "loss": 4.109020709991455,
+ "step": 1068
+ },
+ {
+ "epoch": 14.852774137177807,
+ "grad_norm": 0.2463168203830719,
+ "learning_rate": 0.0006,
+ "loss": 4.135679244995117,
+ "step": 1069
+ },
+ {
+ "epoch": 14.866754041065967,
+ "grad_norm": 0.2563146650791168,
+ "learning_rate": 0.0006,
+ "loss": 4.0958027839660645,
+ "step": 1070
+ },
+ {
+ "epoch": 14.880733944954128,
+ "grad_norm": 0.261167049407959,
+ "learning_rate": 0.0006,
+ "loss": 4.114803314208984,
+ "step": 1071
+ },
+ {
+ "epoch": 14.89471384884229,
+ "grad_norm": 0.2593795955181122,
+ "learning_rate": 0.0006,
+ "loss": 4.1210618019104,
+ "step": 1072
+ },
+ {
+ "epoch": 14.90869375273045,
+ "grad_norm": 0.27184173464775085,
+ "learning_rate": 0.0006,
+ "loss": 4.095145225524902,
+ "step": 1073
+ },
+ {
+ "epoch": 14.922673656618612,
+ "grad_norm": 0.25289732217788696,
+ "learning_rate": 0.0006,
+ "loss": 4.107388973236084,
+ "step": 1074
+ },
+ {
+ "epoch": 14.936653560506771,
+ "grad_norm": 0.2176840454339981,
+ "learning_rate": 0.0006,
+ "loss": 4.105966567993164,
+ "step": 1075
+ },
+ {
+ "epoch": 14.950633464394933,
+ "grad_norm": 0.20930173993110657,
+ "learning_rate": 0.0006,
+ "loss": 4.126853942871094,
+ "step": 1076
+ },
+ {
+ "epoch": 14.964613368283093,
+ "grad_norm": 0.20850051939487457,
+ "learning_rate": 0.0006,
+ "loss": 4.074934959411621,
+ "step": 1077
+ },
+ {
+ "epoch": 14.978593272171254,
+ "grad_norm": 0.21987544000148773,
+ "learning_rate": 0.0006,
+ "loss": 4.123321533203125,
+ "step": 1078
+ },
+ {
+ "epoch": 14.992573176059414,
+ "grad_norm": 0.23821689188480377,
+ "learning_rate": 0.0006,
+ "loss": 4.082647323608398,
+ "step": 1079
+ },
+ {
+ "epoch": 15.0,
+ "grad_norm": 0.2590881288051605,
+ "learning_rate": 0.0006,
+ "loss": 4.113482475280762,
+ "step": 1080
+ },
+ {
+ "epoch": 15.0,
+ "eval_loss": 4.286936283111572,
+ "eval_runtime": 44.2665,
+ "eval_samples_per_second": 55.166,
+ "eval_steps_per_second": 3.456,
+ "step": 1080
+ },
+ {
+ "epoch": 15.013979903888162,
+ "grad_norm": 0.27885961532592773,
+ "learning_rate": 0.0006,
+ "loss": 4.0825958251953125,
+ "step": 1081
+ },
+ {
+ "epoch": 15.027959807776321,
+ "grad_norm": 0.2751246690750122,
+ "learning_rate": 0.0006,
+ "loss": 4.049782752990723,
+ "step": 1082
+ },
+ {
+ "epoch": 15.041939711664483,
+ "grad_norm": 0.25238561630249023,
+ "learning_rate": 0.0006,
+ "loss": 4.067366600036621,
+ "step": 1083
+ },
+ {
+ "epoch": 15.055919615552643,
+ "grad_norm": 0.27481040358543396,
+ "learning_rate": 0.0006,
+ "loss": 4.089946746826172,
+ "step": 1084
+ },
+ {
+ "epoch": 15.069899519440805,
+ "grad_norm": 0.2666703164577484,
+ "learning_rate": 0.0006,
+ "loss": 4.071957588195801,
+ "step": 1085
+ },
+ {
+ "epoch": 15.083879423328964,
+ "grad_norm": 0.2532065212726593,
+ "learning_rate": 0.0006,
+ "loss": 4.091561794281006,
+ "step": 1086
+ },
+ {
+ "epoch": 15.097859327217126,
+ "grad_norm": 0.23562374711036682,
+ "learning_rate": 0.0006,
+ "loss": 4.074953079223633,
+ "step": 1087
+ },
+ {
+ "epoch": 15.111839231105286,
+ "grad_norm": 0.2498065084218979,
+ "learning_rate": 0.0006,
+ "loss": 4.056004047393799,
+ "step": 1088
+ },
+ {
+ "epoch": 15.125819134993447,
+ "grad_norm": 0.257046639919281,
+ "learning_rate": 0.0006,
+ "loss": 4.044149875640869,
+ "step": 1089
+ },
+ {
+ "epoch": 15.139799038881607,
+ "grad_norm": 0.2417808622121811,
+ "learning_rate": 0.0006,
+ "loss": 4.071811676025391,
+ "step": 1090
+ },
+ {
+ "epoch": 15.153778942769769,
+ "grad_norm": 0.24742013216018677,
+ "learning_rate": 0.0006,
+ "loss": 4.081482887268066,
+ "step": 1091
+ },
+ {
+ "epoch": 15.167758846657929,
+ "grad_norm": 0.2610231637954712,
+ "learning_rate": 0.0006,
+ "loss": 4.06953763961792,
+ "step": 1092
+ },
+ {
+ "epoch": 15.18173875054609,
+ "grad_norm": 0.24688200652599335,
+ "learning_rate": 0.0006,
+ "loss": 4.079700469970703,
+ "step": 1093
+ },
+ {
+ "epoch": 15.19571865443425,
+ "grad_norm": 0.2650167942047119,
+ "learning_rate": 0.0006,
+ "loss": 4.082088947296143,
+ "step": 1094
+ },
+ {
+ "epoch": 15.209698558322412,
+ "grad_norm": 0.25913330912590027,
+ "learning_rate": 0.0006,
+ "loss": 4.081713676452637,
+ "step": 1095
+ },
+ {
+ "epoch": 15.223678462210572,
+ "grad_norm": 0.2547631561756134,
+ "learning_rate": 0.0006,
+ "loss": 4.073573112487793,
+ "step": 1096
+ },
+ {
+ "epoch": 15.237658366098733,
+ "grad_norm": 0.2732609510421753,
+ "learning_rate": 0.0006,
+ "loss": 4.10186767578125,
+ "step": 1097
+ },
+ {
+ "epoch": 15.251638269986893,
+ "grad_norm": 0.2990017533302307,
+ "learning_rate": 0.0006,
+ "loss": 4.085466384887695,
+ "step": 1098
+ },
+ {
+ "epoch": 15.265618173875055,
+ "grad_norm": 0.30252209305763245,
+ "learning_rate": 0.0006,
+ "loss": 4.077337265014648,
+ "step": 1099
+ },
+ {
+ "epoch": 15.279598077763215,
+ "grad_norm": 0.30046045780181885,
+ "learning_rate": 0.0006,
+ "loss": 4.0895891189575195,
+ "step": 1100
+ },
+ {
+ "epoch": 15.293577981651376,
+ "grad_norm": 0.2779843211174011,
+ "learning_rate": 0.0006,
+ "loss": 4.060354709625244,
+ "step": 1101
+ },
+ {
+ "epoch": 15.307557885539538,
+ "grad_norm": 0.26914986968040466,
+ "learning_rate": 0.0006,
+ "loss": 4.07314395904541,
+ "step": 1102
+ },
+ {
+ "epoch": 15.321537789427698,
+ "grad_norm": 0.24605873227119446,
+ "learning_rate": 0.0006,
+ "loss": 4.051377296447754,
+ "step": 1103
+ },
+ {
+ "epoch": 15.33551769331586,
+ "grad_norm": 0.25634095072746277,
+ "learning_rate": 0.0006,
+ "loss": 4.082427024841309,
+ "step": 1104
+ },
+ {
+ "epoch": 15.349497597204019,
+ "grad_norm": 0.2888158857822418,
+ "learning_rate": 0.0006,
+ "loss": 4.074253082275391,
+ "step": 1105
+ },
+ {
+ "epoch": 15.36347750109218,
+ "grad_norm": 0.2758261561393738,
+ "learning_rate": 0.0006,
+ "loss": 4.08344841003418,
+ "step": 1106
+ },
+ {
+ "epoch": 15.37745740498034,
+ "grad_norm": 0.26937270164489746,
+ "learning_rate": 0.0006,
+ "loss": 4.063424587249756,
+ "step": 1107
+ },
+ {
+ "epoch": 15.391437308868502,
+ "grad_norm": 0.2739955484867096,
+ "learning_rate": 0.0006,
+ "loss": 4.08005952835083,
+ "step": 1108
+ },
+ {
+ "epoch": 15.405417212756662,
+ "grad_norm": 0.2635386288166046,
+ "learning_rate": 0.0006,
+ "loss": 4.087360382080078,
+ "step": 1109
+ },
+ {
+ "epoch": 15.419397116644824,
+ "grad_norm": 0.2619768977165222,
+ "learning_rate": 0.0006,
+ "loss": 4.072653770446777,
+ "step": 1110
+ },
+ {
+ "epoch": 15.433377020532983,
+ "grad_norm": 0.24154804646968842,
+ "learning_rate": 0.0006,
+ "loss": 4.084464073181152,
+ "step": 1111
+ },
+ {
+ "epoch": 15.447356924421145,
+ "grad_norm": 0.24236027896404266,
+ "learning_rate": 0.0006,
+ "loss": 4.078777313232422,
+ "step": 1112
+ },
+ {
+ "epoch": 15.461336828309305,
+ "grad_norm": 0.24653038382530212,
+ "learning_rate": 0.0006,
+ "loss": 4.075024604797363,
+ "step": 1113
+ },
+ {
+ "epoch": 15.475316732197467,
+ "grad_norm": 0.27106523513793945,
+ "learning_rate": 0.0006,
+ "loss": 4.060937881469727,
+ "step": 1114
+ },
+ {
+ "epoch": 15.489296636085626,
+ "grad_norm": 0.25109633803367615,
+ "learning_rate": 0.0006,
+ "loss": 4.081971168518066,
+ "step": 1115
+ },
+ {
+ "epoch": 15.503276539973788,
+ "grad_norm": 0.23452287912368774,
+ "learning_rate": 0.0006,
+ "loss": 4.0762834548950195,
+ "step": 1116
+ },
+ {
+ "epoch": 15.517256443861948,
+ "grad_norm": 0.25415024161338806,
+ "learning_rate": 0.0006,
+ "loss": 4.069386959075928,
+ "step": 1117
+ },
+ {
+ "epoch": 15.53123634775011,
+ "grad_norm": 0.25448229908943176,
+ "learning_rate": 0.0006,
+ "loss": 4.075098514556885,
+ "step": 1118
+ },
+ {
+ "epoch": 15.54521625163827,
+ "grad_norm": 0.25679755210876465,
+ "learning_rate": 0.0006,
+ "loss": 4.097431182861328,
+ "step": 1119
+ },
+ {
+ "epoch": 15.55919615552643,
+ "grad_norm": 0.25973212718963623,
+ "learning_rate": 0.0006,
+ "loss": 4.058948516845703,
+ "step": 1120
+ },
+ {
+ "epoch": 15.57317605941459,
+ "grad_norm": 0.24511456489562988,
+ "learning_rate": 0.0006,
+ "loss": 4.092263698577881,
+ "step": 1121
+ },
+ {
+ "epoch": 15.587155963302752,
+ "grad_norm": 0.22949442267417908,
+ "learning_rate": 0.0006,
+ "loss": 4.0526604652404785,
+ "step": 1122
+ },
+ {
+ "epoch": 15.601135867190912,
+ "grad_norm": 0.22486285865306854,
+ "learning_rate": 0.0006,
+ "loss": 4.051939010620117,
+ "step": 1123
+ },
+ {
+ "epoch": 15.615115771079074,
+ "grad_norm": 0.22183601558208466,
+ "learning_rate": 0.0006,
+ "loss": 4.065430641174316,
+ "step": 1124
+ },
+ {
+ "epoch": 15.629095674967235,
+ "grad_norm": 0.2531328797340393,
+ "learning_rate": 0.0006,
+ "loss": 4.069165229797363,
+ "step": 1125
+ },
+ {
+ "epoch": 15.643075578855395,
+ "grad_norm": 0.24403320252895355,
+ "learning_rate": 0.0006,
+ "loss": 4.055041790008545,
+ "step": 1126
+ },
+ {
+ "epoch": 15.657055482743557,
+ "grad_norm": 0.24504756927490234,
+ "learning_rate": 0.0006,
+ "loss": 4.035850524902344,
+ "step": 1127
+ },
+ {
+ "epoch": 15.671035386631717,
+ "grad_norm": 0.23812057077884674,
+ "learning_rate": 0.0006,
+ "loss": 4.049278259277344,
+ "step": 1128
+ },
+ {
+ "epoch": 15.685015290519878,
+ "grad_norm": 0.23694153130054474,
+ "learning_rate": 0.0006,
+ "loss": 4.065816402435303,
+ "step": 1129
+ },
+ {
+ "epoch": 15.698995194408038,
+ "grad_norm": 0.23252786695957184,
+ "learning_rate": 0.0006,
+ "loss": 4.05952262878418,
+ "step": 1130
+ },
+ {
+ "epoch": 15.7129750982962,
+ "grad_norm": 0.2243805080652237,
+ "learning_rate": 0.0006,
+ "loss": 4.058291435241699,
+ "step": 1131
+ },
+ {
+ "epoch": 15.72695500218436,
+ "grad_norm": 0.2200988084077835,
+ "learning_rate": 0.0006,
+ "loss": 4.040788650512695,
+ "step": 1132
+ },
+ {
+ "epoch": 15.740934906072521,
+ "grad_norm": 0.21460631489753723,
+ "learning_rate": 0.0006,
+ "loss": 4.072552680969238,
+ "step": 1133
+ },
+ {
+ "epoch": 15.754914809960681,
+ "grad_norm": 0.2056441456079483,
+ "learning_rate": 0.0006,
+ "loss": 4.059467315673828,
+ "step": 1134
+ },
+ {
+ "epoch": 15.768894713848843,
+ "grad_norm": 0.2068045437335968,
+ "learning_rate": 0.0006,
+ "loss": 4.063803195953369,
+ "step": 1135
+ },
+ {
+ "epoch": 15.782874617737003,
+ "grad_norm": 0.21307601034641266,
+ "learning_rate": 0.0006,
+ "loss": 4.093092918395996,
+ "step": 1136
+ },
+ {
+ "epoch": 15.796854521625164,
+ "grad_norm": 0.20729634165763855,
+ "learning_rate": 0.0006,
+ "loss": 4.066030502319336,
+ "step": 1137
+ },
+ {
+ "epoch": 15.810834425513324,
+ "grad_norm": 0.2097514122724533,
+ "learning_rate": 0.0006,
+ "loss": 4.077326774597168,
+ "step": 1138
+ },
+ {
+ "epoch": 15.824814329401486,
+ "grad_norm": 0.21884000301361084,
+ "learning_rate": 0.0006,
+ "loss": 4.0595598220825195,
+ "step": 1139
+ },
+ {
+ "epoch": 15.838794233289645,
+ "grad_norm": 0.22220250964164734,
+ "learning_rate": 0.0006,
+ "loss": 4.061574459075928,
+ "step": 1140
+ },
+ {
+ "epoch": 15.852774137177807,
+ "grad_norm": 0.23189949989318848,
+ "learning_rate": 0.0006,
+ "loss": 4.0504045486450195,
+ "step": 1141
+ },
+ {
+ "epoch": 15.866754041065967,
+ "grad_norm": 0.226649671792984,
+ "learning_rate": 0.0006,
+ "loss": 4.060986518859863,
+ "step": 1142
+ },
+ {
+ "epoch": 15.880733944954128,
+ "grad_norm": 0.2456834763288498,
+ "learning_rate": 0.0006,
+ "loss": 4.038525581359863,
+ "step": 1143
+ },
+ {
+ "epoch": 15.89471384884229,
+ "grad_norm": 0.2818352282047272,
+ "learning_rate": 0.0006,
+ "loss": 4.062709331512451,
+ "step": 1144
+ },
+ {
+ "epoch": 15.90869375273045,
+ "grad_norm": 0.2850170135498047,
+ "learning_rate": 0.0006,
+ "loss": 4.0683274269104,
+ "step": 1145
+ },
+ {
+ "epoch": 15.922673656618612,
+ "grad_norm": 0.27691730856895447,
+ "learning_rate": 0.0006,
+ "loss": 4.076540470123291,
+ "step": 1146
+ },
+ {
+ "epoch": 15.936653560506771,
+ "grad_norm": 0.2685548961162567,
+ "learning_rate": 0.0006,
+ "loss": 4.048116683959961,
+ "step": 1147
+ },
+ {
+ "epoch": 15.950633464394933,
+ "grad_norm": 0.2452288419008255,
+ "learning_rate": 0.0006,
+ "loss": 4.06640625,
+ "step": 1148
+ },
+ {
+ "epoch": 15.964613368283093,
+ "grad_norm": 0.2601441740989685,
+ "learning_rate": 0.0006,
+ "loss": 4.073277473449707,
+ "step": 1149
+ },
+ {
+ "epoch": 15.978593272171254,
+ "grad_norm": 0.2748197913169861,
+ "learning_rate": 0.0006,
+ "loss": 4.0332536697387695,
+ "step": 1150
+ },
+ {
+ "epoch": 15.992573176059414,
+ "grad_norm": 0.27249959111213684,
+ "learning_rate": 0.0006,
+ "loss": 3.9952516555786133,
+ "step": 1151
+ },
+ {
+ "epoch": 16.0,
+ "grad_norm": 0.3475601375102997,
+ "learning_rate": 0.0006,
+ "loss": 4.040761947631836,
+ "step": 1152
+ },
+ {
+ "epoch": 16.0,
+ "eval_loss": 4.237997531890869,
+ "eval_runtime": 43.8692,
+ "eval_samples_per_second": 55.665,
+ "eval_steps_per_second": 3.488,
+ "step": 1152
+ },
+ {
+ "epoch": 16.01397990388816,
+ "grad_norm": 0.3365611433982849,
+ "learning_rate": 0.0006,
+ "loss": 4.031302452087402,
+ "step": 1153
+ },
+ {
+ "epoch": 16.027959807776323,
+ "grad_norm": 0.3020530641078949,
+ "learning_rate": 0.0006,
+ "loss": 4.036273956298828,
+ "step": 1154
+ },
+ {
+ "epoch": 16.041939711664483,
+ "grad_norm": 0.25277993083000183,
+ "learning_rate": 0.0006,
+ "loss": 4.007067680358887,
+ "step": 1155
+ },
+ {
+ "epoch": 16.055919615552643,
+ "grad_norm": 0.24762840569019318,
+ "learning_rate": 0.0006,
+ "loss": 4.046561241149902,
+ "step": 1156
+ },
+ {
+ "epoch": 16.069899519440803,
+ "grad_norm": 0.25236397981643677,
+ "learning_rate": 0.0006,
+ "loss": 4.061616897583008,
+ "step": 1157
+ },
+ {
+ "epoch": 16.083879423328966,
+ "grad_norm": 0.22789105772972107,
+ "learning_rate": 0.0006,
+ "loss": 4.010061740875244,
+ "step": 1158
+ },
+ {
+ "epoch": 16.097859327217126,
+ "grad_norm": 0.21866244077682495,
+ "learning_rate": 0.0006,
+ "loss": 4.0181097984313965,
+ "step": 1159
+ },
+ {
+ "epoch": 16.111839231105286,
+ "grad_norm": 0.21889029443264008,
+ "learning_rate": 0.0006,
+ "loss": 4.012239456176758,
+ "step": 1160
+ },
+ {
+ "epoch": 16.125819134993446,
+ "grad_norm": 0.23002485930919647,
+ "learning_rate": 0.0006,
+ "loss": 4.034092426300049,
+ "step": 1161
+ },
+ {
+ "epoch": 16.13979903888161,
+ "grad_norm": 0.2271798551082611,
+ "learning_rate": 0.0006,
+ "loss": 4.026222229003906,
+ "step": 1162
+ },
+ {
+ "epoch": 16.15377894276977,
+ "grad_norm": 0.238200843334198,
+ "learning_rate": 0.0006,
+ "loss": 4.044692039489746,
+ "step": 1163
+ },
+ {
+ "epoch": 16.16775884665793,
+ "grad_norm": 0.2281467169523239,
+ "learning_rate": 0.0006,
+ "loss": 4.032305717468262,
+ "step": 1164
+ },
+ {
+ "epoch": 16.18173875054609,
+ "grad_norm": 0.2213946431875229,
+ "learning_rate": 0.0006,
+ "loss": 4.048737525939941,
+ "step": 1165
+ },
+ {
+ "epoch": 16.195718654434252,
+ "grad_norm": 0.26638558506965637,
+ "learning_rate": 0.0006,
+ "loss": 4.006335258483887,
+ "step": 1166
+ },
+ {
+ "epoch": 16.209698558322412,
+ "grad_norm": 0.2780219316482544,
+ "learning_rate": 0.0006,
+ "loss": 4.049234390258789,
+ "step": 1167
+ },
+ {
+ "epoch": 16.22367846221057,
+ "grad_norm": 0.27425870299339294,
+ "learning_rate": 0.0006,
+ "loss": 4.017177104949951,
+ "step": 1168
+ },
+ {
+ "epoch": 16.23765836609873,
+ "grad_norm": 0.2596667408943176,
+ "learning_rate": 0.0006,
+ "loss": 4.022942543029785,
+ "step": 1169
+ },
+ {
+ "epoch": 16.251638269986895,
+ "grad_norm": 0.26972314715385437,
+ "learning_rate": 0.0006,
+ "loss": 4.035310745239258,
+ "step": 1170
+ },
+ {
+ "epoch": 16.265618173875055,
+ "grad_norm": 0.2677772045135498,
+ "learning_rate": 0.0006,
+ "loss": 4.0280561447143555,
+ "step": 1171
+ },
+ {
+ "epoch": 16.279598077763215,
+ "grad_norm": 0.25433358550071716,
+ "learning_rate": 0.0006,
+ "loss": 4.03616189956665,
+ "step": 1172
+ },
+ {
+ "epoch": 16.293577981651374,
+ "grad_norm": 0.2583644688129425,
+ "learning_rate": 0.0006,
+ "loss": 4.073624134063721,
+ "step": 1173
+ },
+ {
+ "epoch": 16.307557885539538,
+ "grad_norm": 0.25437524914741516,
+ "learning_rate": 0.0006,
+ "loss": 4.057926654815674,
+ "step": 1174
+ },
+ {
+ "epoch": 16.321537789427698,
+ "grad_norm": 0.2819201350212097,
+ "learning_rate": 0.0006,
+ "loss": 4.020838737487793,
+ "step": 1175
+ },
+ {
+ "epoch": 16.335517693315857,
+ "grad_norm": 0.32689282298088074,
+ "learning_rate": 0.0006,
+ "loss": 4.062448501586914,
+ "step": 1176
+ },
+ {
+ "epoch": 16.34949759720402,
+ "grad_norm": 0.33002278208732605,
+ "learning_rate": 0.0006,
+ "loss": 4.052059173583984,
+ "step": 1177
+ },
+ {
+ "epoch": 16.36347750109218,
+ "grad_norm": 0.32472696900367737,
+ "learning_rate": 0.0006,
+ "loss": 4.042375564575195,
+ "step": 1178
+ },
+ {
+ "epoch": 16.37745740498034,
+ "grad_norm": 0.35279813408851624,
+ "learning_rate": 0.0006,
+ "loss": 4.028722763061523,
+ "step": 1179
+ },
+ {
+ "epoch": 16.3914373088685,
+ "grad_norm": 0.3243204951286316,
+ "learning_rate": 0.0006,
+ "loss": 4.045693874359131,
+ "step": 1180
+ },
+ {
+ "epoch": 16.405417212756664,
+ "grad_norm": 0.32171115279197693,
+ "learning_rate": 0.0006,
+ "loss": 4.018350124359131,
+ "step": 1181
+ },
+ {
+ "epoch": 16.419397116644824,
+ "grad_norm": 0.31459906697273254,
+ "learning_rate": 0.0006,
+ "loss": 4.039547443389893,
+ "step": 1182
+ },
+ {
+ "epoch": 16.433377020532983,
+ "grad_norm": 0.35038673877716064,
+ "learning_rate": 0.0006,
+ "loss": 4.005928039550781,
+ "step": 1183
+ },
+ {
+ "epoch": 16.447356924421143,
+ "grad_norm": 0.34110963344573975,
+ "learning_rate": 0.0006,
+ "loss": 4.042272090911865,
+ "step": 1184
+ },
+ {
+ "epoch": 16.461336828309307,
+ "grad_norm": 0.33760902285575867,
+ "learning_rate": 0.0006,
+ "loss": 4.02886962890625,
+ "step": 1185
+ },
+ {
+ "epoch": 16.475316732197467,
+ "grad_norm": 0.3162464499473572,
+ "learning_rate": 0.0006,
+ "loss": 4.059924125671387,
+ "step": 1186
+ },
+ {
+ "epoch": 16.489296636085626,
+ "grad_norm": 0.2667233645915985,
+ "learning_rate": 0.0006,
+ "loss": 4.069073677062988,
+ "step": 1187
+ },
+ {
+ "epoch": 16.503276539973786,
+ "grad_norm": 0.22626568377017975,
+ "learning_rate": 0.0006,
+ "loss": 4.044912338256836,
+ "step": 1188
+ },
+ {
+ "epoch": 16.51725644386195,
+ "grad_norm": 0.203303262591362,
+ "learning_rate": 0.0006,
+ "loss": 4.025210380554199,
+ "step": 1189
+ },
+ {
+ "epoch": 16.53123634775011,
+ "grad_norm": 0.2108820080757141,
+ "learning_rate": 0.0006,
+ "loss": 4.035998821258545,
+ "step": 1190
+ },
+ {
+ "epoch": 16.54521625163827,
+ "grad_norm": 0.20451335608959198,
+ "learning_rate": 0.0006,
+ "loss": 4.043377876281738,
+ "step": 1191
+ },
+ {
+ "epoch": 16.55919615552643,
+ "grad_norm": 0.23348836600780487,
+ "learning_rate": 0.0006,
+ "loss": 4.033735275268555,
+ "step": 1192
+ },
+ {
+ "epoch": 16.573176059414592,
+ "grad_norm": 0.24438607692718506,
+ "learning_rate": 0.0006,
+ "loss": 4.071747779846191,
+ "step": 1193
+ },
+ {
+ "epoch": 16.587155963302752,
+ "grad_norm": 0.24233631789684296,
+ "learning_rate": 0.0006,
+ "loss": 4.0138702392578125,
+ "step": 1194
+ },
+ {
+ "epoch": 16.601135867190912,
+ "grad_norm": 0.21625740826129913,
+ "learning_rate": 0.0006,
+ "loss": 4.013422012329102,
+ "step": 1195
+ },
+ {
+ "epoch": 16.615115771079076,
+ "grad_norm": 0.22447720170021057,
+ "learning_rate": 0.0006,
+ "loss": 4.056326866149902,
+ "step": 1196
+ },
+ {
+ "epoch": 16.629095674967235,
+ "grad_norm": 0.21899616718292236,
+ "learning_rate": 0.0006,
+ "loss": 4.006134033203125,
+ "step": 1197
+ },
+ {
+ "epoch": 16.643075578855395,
+ "grad_norm": 0.191362664103508,
+ "learning_rate": 0.0006,
+ "loss": 4.036748886108398,
+ "step": 1198
+ },
+ {
+ "epoch": 16.657055482743555,
+ "grad_norm": 0.20203463733196259,
+ "learning_rate": 0.0006,
+ "loss": 4.006264686584473,
+ "step": 1199
+ },
+ {
+ "epoch": 16.67103538663172,
+ "grad_norm": 0.20209139585494995,
+ "learning_rate": 0.0006,
+ "loss": 4.059018135070801,
+ "step": 1200
+ },
+ {
+ "epoch": 16.68501529051988,
+ "grad_norm": 0.20811820030212402,
+ "learning_rate": 0.0006,
+ "loss": 4.054325103759766,
+ "step": 1201
+ },
+ {
+ "epoch": 16.698995194408038,
+ "grad_norm": 0.22448928654193878,
+ "learning_rate": 0.0006,
+ "loss": 3.996121406555176,
+ "step": 1202
+ },
+ {
+ "epoch": 16.712975098296198,
+ "grad_norm": 0.21692240238189697,
+ "learning_rate": 0.0006,
+ "loss": 4.042046546936035,
+ "step": 1203
+ },
+ {
+ "epoch": 16.72695500218436,
+ "grad_norm": 0.20688563585281372,
+ "learning_rate": 0.0006,
+ "loss": 4.002251625061035,
+ "step": 1204
+ },
+ {
+ "epoch": 16.74093490607252,
+ "grad_norm": 0.1835535764694214,
+ "learning_rate": 0.0006,
+ "loss": 4.02545166015625,
+ "step": 1205
+ },
+ {
+ "epoch": 16.75491480996068,
+ "grad_norm": 0.20532558858394623,
+ "learning_rate": 0.0006,
+ "loss": 4.039333343505859,
+ "step": 1206
+ },
+ {
+ "epoch": 16.76889471384884,
+ "grad_norm": 0.2214215099811554,
+ "learning_rate": 0.0006,
+ "loss": 4.037858486175537,
+ "step": 1207
+ },
+ {
+ "epoch": 16.782874617737004,
+ "grad_norm": 0.24926038086414337,
+ "learning_rate": 0.0006,
+ "loss": 4.024799346923828,
+ "step": 1208
+ },
+ {
+ "epoch": 16.796854521625164,
+ "grad_norm": 0.26057952642440796,
+ "learning_rate": 0.0006,
+ "loss": 4.042788505554199,
+ "step": 1209
+ },
+ {
+ "epoch": 16.810834425513324,
+ "grad_norm": 0.2501208782196045,
+ "learning_rate": 0.0006,
+ "loss": 4.051809310913086,
+ "step": 1210
+ },
+ {
+ "epoch": 16.824814329401484,
+ "grad_norm": 0.21760012209415436,
+ "learning_rate": 0.0006,
+ "loss": 4.063589096069336,
+ "step": 1211
+ },
+ {
+ "epoch": 16.838794233289647,
+ "grad_norm": 0.2243622988462448,
+ "learning_rate": 0.0006,
+ "loss": 4.008829593658447,
+ "step": 1212
+ },
+ {
+ "epoch": 16.852774137177807,
+ "grad_norm": 0.2399163395166397,
+ "learning_rate": 0.0006,
+ "loss": 4.013262748718262,
+ "step": 1213
+ },
+ {
+ "epoch": 16.866754041065967,
+ "grad_norm": 0.23187831044197083,
+ "learning_rate": 0.0006,
+ "loss": 4.023053169250488,
+ "step": 1214
+ },
+ {
+ "epoch": 16.88073394495413,
+ "grad_norm": 0.23723892867565155,
+ "learning_rate": 0.0006,
+ "loss": 3.991321563720703,
+ "step": 1215
+ },
+ {
+ "epoch": 16.89471384884229,
+ "grad_norm": 0.21766342222690582,
+ "learning_rate": 0.0006,
+ "loss": 4.0250773429870605,
+ "step": 1216
+ },
+ {
+ "epoch": 16.90869375273045,
+ "grad_norm": 0.20715023577213287,
+ "learning_rate": 0.0006,
+ "loss": 4.063642978668213,
+ "step": 1217
+ },
+ {
+ "epoch": 16.92267365661861,
+ "grad_norm": 0.20165133476257324,
+ "learning_rate": 0.0006,
+ "loss": 3.9951367378234863,
+ "step": 1218
+ },
+ {
+ "epoch": 16.936653560506773,
+ "grad_norm": 0.19956178963184357,
+ "learning_rate": 0.0006,
+ "loss": 4.025641441345215,
+ "step": 1219
+ },
+ {
+ "epoch": 16.950633464394933,
+ "grad_norm": 0.2175494134426117,
+ "learning_rate": 0.0006,
+ "loss": 4.030346393585205,
+ "step": 1220
+ },
+ {
+ "epoch": 16.964613368283093,
+ "grad_norm": 0.22365593910217285,
+ "learning_rate": 0.0006,
+ "loss": 4.018105506896973,
+ "step": 1221
+ },
+ {
+ "epoch": 16.978593272171253,
+ "grad_norm": 0.21251538395881653,
+ "learning_rate": 0.0006,
+ "loss": 4.023580074310303,
+ "step": 1222
+ },
+ {
+ "epoch": 16.992573176059416,
+ "grad_norm": 0.2230125218629837,
+ "learning_rate": 0.0006,
+ "loss": 4.001980304718018,
+ "step": 1223
+ },
+ {
+ "epoch": 17.0,
+ "grad_norm": 0.24261972308158875,
+ "learning_rate": 0.0006,
+ "loss": 4.081348896026611,
+ "step": 1224
+ },
+ {
+ "epoch": 17.0,
+ "eval_loss": 4.225194931030273,
+ "eval_runtime": 44.247,
+ "eval_samples_per_second": 55.19,
+ "eval_steps_per_second": 3.458,
+ "step": 1224
+ },
+ {
+ "epoch": 17.01397990388816,
+ "grad_norm": 0.2438880205154419,
+ "learning_rate": 0.0006,
+ "loss": 4.0164794921875,
+ "step": 1225
+ },
+ {
+ "epoch": 17.027959807776323,
+ "grad_norm": 0.22459383308887482,
+ "learning_rate": 0.0006,
+ "loss": 3.991623878479004,
+ "step": 1226
+ },
+ {
+ "epoch": 17.041939711664483,
+ "grad_norm": 0.25021040439605713,
+ "learning_rate": 0.0006,
+ "loss": 4.003020286560059,
+ "step": 1227
+ },
+ {
+ "epoch": 17.055919615552643,
+ "grad_norm": 0.30358025431632996,
+ "learning_rate": 0.0006,
+ "loss": 3.980921983718872,
+ "step": 1228
+ },
+ {
+ "epoch": 17.069899519440803,
+ "grad_norm": 0.27313271164894104,
+ "learning_rate": 0.0006,
+ "loss": 3.992398977279663,
+ "step": 1229
+ },
+ {
+ "epoch": 17.083879423328966,
+ "grad_norm": 0.2293211966753006,
+ "learning_rate": 0.0006,
+ "loss": 4.02568244934082,
+ "step": 1230
+ },
+ {
+ "epoch": 17.097859327217126,
+ "grad_norm": 0.2363300621509552,
+ "learning_rate": 0.0006,
+ "loss": 3.977229356765747,
+ "step": 1231
+ },
+ {
+ "epoch": 17.111839231105286,
+ "grad_norm": 0.2809674143791199,
+ "learning_rate": 0.0006,
+ "loss": 3.9720497131347656,
+ "step": 1232
+ },
+ {
+ "epoch": 17.125819134993446,
+ "grad_norm": 0.2913855016231537,
+ "learning_rate": 0.0006,
+ "loss": 3.979529857635498,
+ "step": 1233
+ },
+ {
+ "epoch": 17.13979903888161,
+ "grad_norm": 0.2920287251472473,
+ "learning_rate": 0.0006,
+ "loss": 3.9678473472595215,
+ "step": 1234
+ },
+ {
+ "epoch": 17.15377894276977,
+ "grad_norm": 0.2521543502807617,
+ "learning_rate": 0.0006,
+ "loss": 3.9912607669830322,
+ "step": 1235
+ },
+ {
+ "epoch": 17.16775884665793,
+ "grad_norm": 0.22844268381595612,
+ "learning_rate": 0.0006,
+ "loss": 3.9898228645324707,
+ "step": 1236
+ },
+ {
+ "epoch": 17.18173875054609,
+ "grad_norm": 0.2199884057044983,
+ "learning_rate": 0.0006,
+ "loss": 4.0050740242004395,
+ "step": 1237
+ },
+ {
+ "epoch": 17.195718654434252,
+ "grad_norm": 0.23072892427444458,
+ "learning_rate": 0.0006,
+ "loss": 3.9957475662231445,
+ "step": 1238
+ },
+ {
+ "epoch": 17.209698558322412,
+ "grad_norm": 0.2034899890422821,
+ "learning_rate": 0.0006,
+ "loss": 3.9672317504882812,
+ "step": 1239
+ },
+ {
+ "epoch": 17.22367846221057,
+ "grad_norm": 0.21826180815696716,
+ "learning_rate": 0.0006,
+ "loss": 3.98543119430542,
+ "step": 1240
+ },
+ {
+ "epoch": 17.23765836609873,
+ "grad_norm": 0.21203237771987915,
+ "learning_rate": 0.0006,
+ "loss": 3.9971959590911865,
+ "step": 1241
+ },
+ {
+ "epoch": 17.251638269986895,
+ "grad_norm": 0.22139234840869904,
+ "learning_rate": 0.0006,
+ "loss": 4.017539978027344,
+ "step": 1242
+ },
+ {
+ "epoch": 17.265618173875055,
+ "grad_norm": 0.21553276479244232,
+ "learning_rate": 0.0006,
+ "loss": 3.98740553855896,
+ "step": 1243
+ },
+ {
+ "epoch": 17.279598077763215,
+ "grad_norm": 0.23259080946445465,
+ "learning_rate": 0.0006,
+ "loss": 3.9963035583496094,
+ "step": 1244
+ },
+ {
+ "epoch": 17.293577981651374,
+ "grad_norm": 0.2527932822704315,
+ "learning_rate": 0.0006,
+ "loss": 4.0202956199646,
+ "step": 1245
+ },
+ {
+ "epoch": 17.307557885539538,
+ "grad_norm": 0.28669068217277527,
+ "learning_rate": 0.0006,
+ "loss": 3.9947609901428223,
+ "step": 1246
+ },
+ {
+ "epoch": 17.321537789427698,
+ "grad_norm": 0.341602623462677,
+ "learning_rate": 0.0006,
+ "loss": 3.997032642364502,
+ "step": 1247
+ },
+ {
+ "epoch": 17.335517693315857,
+ "grad_norm": 0.3364104926586151,
+ "learning_rate": 0.0006,
+ "loss": 3.9881834983825684,
+ "step": 1248
+ },
+ {
+ "epoch": 17.34949759720402,
+ "grad_norm": 0.2979278266429901,
+ "learning_rate": 0.0006,
+ "loss": 4.045898914337158,
+ "step": 1249
+ },
+ {
+ "epoch": 17.36347750109218,
+ "grad_norm": 0.2857462465763092,
+ "learning_rate": 0.0006,
+ "loss": 4.0085272789001465,
+ "step": 1250
+ },
+ {
+ "epoch": 17.37745740498034,
+ "grad_norm": 0.2689058780670166,
+ "learning_rate": 0.0006,
+ "loss": 4.021465301513672,
+ "step": 1251
+ },
+ {
+ "epoch": 17.3914373088685,
+ "grad_norm": 0.24943363666534424,
+ "learning_rate": 0.0006,
+ "loss": 4.003451347351074,
+ "step": 1252
+ },
+ {
+ "epoch": 17.405417212756664,
+ "grad_norm": 0.2635347843170166,
+ "learning_rate": 0.0006,
+ "loss": 3.9837827682495117,
+ "step": 1253
+ },
+ {
+ "epoch": 17.419397116644824,
+ "grad_norm": 0.29126450419425964,
+ "learning_rate": 0.0006,
+ "loss": 3.9857311248779297,
+ "step": 1254
+ },
+ {
+ "epoch": 17.433377020532983,
+ "grad_norm": 0.3166918456554413,
+ "learning_rate": 0.0006,
+ "loss": 3.9842967987060547,
+ "step": 1255
+ },
+ {
+ "epoch": 17.447356924421143,
+ "grad_norm": 0.27869969606399536,
+ "learning_rate": 0.0006,
+ "loss": 4.012607574462891,
+ "step": 1256
+ },
+ {
+ "epoch": 17.461336828309307,
+ "grad_norm": 0.23719419538974762,
+ "learning_rate": 0.0006,
+ "loss": 3.981034755706787,
+ "step": 1257
+ },
+ {
+ "epoch": 17.475316732197467,
+ "grad_norm": 0.22687610983848572,
+ "learning_rate": 0.0006,
+ "loss": 4.011059761047363,
+ "step": 1258
+ },
+ {
+ "epoch": 17.489296636085626,
+ "grad_norm": 0.22034095227718353,
+ "learning_rate": 0.0006,
+ "loss": 4.015044689178467,
+ "step": 1259
+ },
+ {
+ "epoch": 17.503276539973786,
+ "grad_norm": 0.21208405494689941,
+ "learning_rate": 0.0006,
+ "loss": 4.003793716430664,
+ "step": 1260
+ },
+ {
+ "epoch": 17.51725644386195,
+ "grad_norm": 0.21759214997291565,
+ "learning_rate": 0.0006,
+ "loss": 3.978652238845825,
+ "step": 1261
+ },
+ {
+ "epoch": 17.53123634775011,
+ "grad_norm": 0.22481068968772888,
+ "learning_rate": 0.0006,
+ "loss": 4.034845352172852,
+ "step": 1262
+ },
+ {
+ "epoch": 17.54521625163827,
+ "grad_norm": 0.20376387238502502,
+ "learning_rate": 0.0006,
+ "loss": 3.990541934967041,
+ "step": 1263
+ },
+ {
+ "epoch": 17.55919615552643,
+ "grad_norm": 0.20459355413913727,
+ "learning_rate": 0.0006,
+ "loss": 4.006990432739258,
+ "step": 1264
+ },
+ {
+ "epoch": 17.573176059414592,
+ "grad_norm": 0.19306913018226624,
+ "learning_rate": 0.0006,
+ "loss": 3.993408679962158,
+ "step": 1265
+ },
+ {
+ "epoch": 17.587155963302752,
+ "grad_norm": 0.20727239549160004,
+ "learning_rate": 0.0006,
+ "loss": 3.988016128540039,
+ "step": 1266
+ },
+ {
+ "epoch": 17.601135867190912,
+ "grad_norm": 0.20213133096694946,
+ "learning_rate": 0.0006,
+ "loss": 4.0120368003845215,
+ "step": 1267
+ },
+ {
+ "epoch": 17.615115771079076,
+ "grad_norm": 0.21074117720127106,
+ "learning_rate": 0.0006,
+ "loss": 4.048871040344238,
+ "step": 1268
+ },
+ {
+ "epoch": 17.629095674967235,
+ "grad_norm": 0.2074330598115921,
+ "learning_rate": 0.0006,
+ "loss": 3.997509002685547,
+ "step": 1269
+ },
+ {
+ "epoch": 17.643075578855395,
+ "grad_norm": 0.20383669435977936,
+ "learning_rate": 0.0006,
+ "loss": 4.0028839111328125,
+ "step": 1270
+ },
+ {
+ "epoch": 17.657055482743555,
+ "grad_norm": 0.2060765027999878,
+ "learning_rate": 0.0006,
+ "loss": 3.998032331466675,
+ "step": 1271
+ },
+ {
+ "epoch": 17.67103538663172,
+ "grad_norm": 0.21851404011249542,
+ "learning_rate": 0.0006,
+ "loss": 3.9928741455078125,
+ "step": 1272
+ },
+ {
+ "epoch": 17.68501529051988,
+ "grad_norm": 0.24324250221252441,
+ "learning_rate": 0.0006,
+ "loss": 3.9896507263183594,
+ "step": 1273
+ },
+ {
+ "epoch": 17.698995194408038,
+ "grad_norm": 0.25584331154823303,
+ "learning_rate": 0.0006,
+ "loss": 4.010485649108887,
+ "step": 1274
+ },
+ {
+ "epoch": 17.712975098296198,
+ "grad_norm": 0.2490610033273697,
+ "learning_rate": 0.0006,
+ "loss": 3.9906954765319824,
+ "step": 1275
+ },
+ {
+ "epoch": 17.72695500218436,
+ "grad_norm": 0.24241414666175842,
+ "learning_rate": 0.0006,
+ "loss": 4.016420364379883,
+ "step": 1276
+ },
+ {
+ "epoch": 17.74093490607252,
+ "grad_norm": 0.2222128063440323,
+ "learning_rate": 0.0006,
+ "loss": 4.009827136993408,
+ "step": 1277
+ },
+ {
+ "epoch": 17.75491480996068,
+ "grad_norm": 0.23119516670703888,
+ "learning_rate": 0.0006,
+ "loss": 4.0034589767456055,
+ "step": 1278
+ },
+ {
+ "epoch": 17.76889471384884,
+ "grad_norm": 0.24596457183361053,
+ "learning_rate": 0.0006,
+ "loss": 4.003161907196045,
+ "step": 1279
+ },
+ {
+ "epoch": 17.782874617737004,
+ "grad_norm": 0.2607562839984894,
+ "learning_rate": 0.0006,
+ "loss": 3.9894633293151855,
+ "step": 1280
+ },
+ {
+ "epoch": 17.796854521625164,
+ "grad_norm": 0.28706878423690796,
+ "learning_rate": 0.0006,
+ "loss": 4.005712985992432,
+ "step": 1281
+ },
+ {
+ "epoch": 17.810834425513324,
+ "grad_norm": 0.27178290486335754,
+ "learning_rate": 0.0006,
+ "loss": 3.9784536361694336,
+ "step": 1282
+ },
+ {
+ "epoch": 17.824814329401484,
+ "grad_norm": 0.27962708473205566,
+ "learning_rate": 0.0006,
+ "loss": 4.012705326080322,
+ "step": 1283
+ },
+ {
+ "epoch": 17.838794233289647,
+ "grad_norm": 0.29147693514823914,
+ "learning_rate": 0.0006,
+ "loss": 4.0159783363342285,
+ "step": 1284
+ },
+ {
+ "epoch": 17.852774137177807,
+ "grad_norm": 0.2841821312904358,
+ "learning_rate": 0.0006,
+ "loss": 4.011552810668945,
+ "step": 1285
+ },
+ {
+ "epoch": 17.866754041065967,
+ "grad_norm": 0.24924969673156738,
+ "learning_rate": 0.0006,
+ "loss": 3.992421865463257,
+ "step": 1286
+ },
+ {
+ "epoch": 17.88073394495413,
+ "grad_norm": 0.24850749969482422,
+ "learning_rate": 0.0006,
+ "loss": 3.974897861480713,
+ "step": 1287
+ },
+ {
+ "epoch": 17.89471384884229,
+ "grad_norm": 0.2409554123878479,
+ "learning_rate": 0.0006,
+ "loss": 4.002941131591797,
+ "step": 1288
+ },
+ {
+ "epoch": 17.90869375273045,
+ "grad_norm": 0.2656126320362091,
+ "learning_rate": 0.0006,
+ "loss": 3.9804210662841797,
+ "step": 1289
+ },
+ {
+ "epoch": 17.92267365661861,
+ "grad_norm": 0.28210243582725525,
+ "learning_rate": 0.0006,
+ "loss": 4.007192134857178,
+ "step": 1290
+ },
+ {
+ "epoch": 17.936653560506773,
+ "grad_norm": 0.28427553176879883,
+ "learning_rate": 0.0006,
+ "loss": 3.9739556312561035,
+ "step": 1291
+ },
+ {
+ "epoch": 17.950633464394933,
+ "grad_norm": 0.28893420100212097,
+ "learning_rate": 0.0006,
+ "loss": 4.004766941070557,
+ "step": 1292
+ },
+ {
+ "epoch": 17.964613368283093,
+ "grad_norm": 0.2831471562385559,
+ "learning_rate": 0.0006,
+ "loss": 3.984936237335205,
+ "step": 1293
+ },
+ {
+ "epoch": 17.978593272171253,
+ "grad_norm": 0.2518300712108612,
+ "learning_rate": 0.0006,
+ "loss": 4.002814292907715,
+ "step": 1294
+ },
+ {
+ "epoch": 17.992573176059416,
+ "grad_norm": 0.24264675378799438,
+ "learning_rate": 0.0006,
+ "loss": 3.998900890350342,
+ "step": 1295
+ },
+ {
+ "epoch": 18.0,
+ "grad_norm": 0.24474996328353882,
+ "learning_rate": 0.0006,
+ "loss": 3.974229335784912,
+ "step": 1296
+ },
+ {
+ "epoch": 18.0,
+ "eval_loss": 4.195685863494873,
+ "eval_runtime": 44.0709,
+ "eval_samples_per_second": 55.411,
+ "eval_steps_per_second": 3.472,
+ "step": 1296
+ },
+ {
+ "epoch": 18.01397990388816,
+ "grad_norm": 0.2553016245365143,
+ "learning_rate": 0.0006,
+ "loss": 3.9522247314453125,
+ "step": 1297
+ },
+ {
+ "epoch": 18.027959807776323,
+ "grad_norm": 0.22350727021694183,
+ "learning_rate": 0.0006,
+ "loss": 3.9850122928619385,
+ "step": 1298
+ },
+ {
+ "epoch": 18.041939711664483,
+ "grad_norm": 0.23935550451278687,
+ "learning_rate": 0.0006,
+ "loss": 3.9758832454681396,
+ "step": 1299
+ },
+ {
+ "epoch": 18.055919615552643,
+ "grad_norm": 0.23868797719478607,
+ "learning_rate": 0.0006,
+ "loss": 3.9567959308624268,
+ "step": 1300
+ },
+ {
+ "epoch": 18.069899519440803,
+ "grad_norm": 0.23102357983589172,
+ "learning_rate": 0.0006,
+ "loss": 3.9399867057800293,
+ "step": 1301
+ },
+ {
+ "epoch": 18.083879423328966,
+ "grad_norm": 0.23706983029842377,
+ "learning_rate": 0.0006,
+ "loss": 3.993434190750122,
+ "step": 1302
+ },
+ {
+ "epoch": 18.097859327217126,
+ "grad_norm": 0.22207573056221008,
+ "learning_rate": 0.0006,
+ "loss": 3.993436574935913,
+ "step": 1303
+ },
+ {
+ "epoch": 18.111839231105286,
+ "grad_norm": 0.23975296318531036,
+ "learning_rate": 0.0006,
+ "loss": 3.981943368911743,
+ "step": 1304
+ },
+ {
+ "epoch": 18.125819134993446,
+ "grad_norm": 0.2520582675933838,
+ "learning_rate": 0.0006,
+ "loss": 3.965493679046631,
+ "step": 1305
+ },
+ {
+ "epoch": 18.13979903888161,
+ "grad_norm": 0.2230956256389618,
+ "learning_rate": 0.0006,
+ "loss": 3.9360928535461426,
+ "step": 1306
+ },
+ {
+ "epoch": 18.15377894276977,
+ "grad_norm": 0.22527500987052917,
+ "learning_rate": 0.0006,
+ "loss": 3.9814581871032715,
+ "step": 1307
+ },
+ {
+ "epoch": 18.16775884665793,
+ "grad_norm": 0.22389626502990723,
+ "learning_rate": 0.0006,
+ "loss": 3.961590051651001,
+ "step": 1308
+ },
+ {
+ "epoch": 18.18173875054609,
+ "grad_norm": 0.22279471158981323,
+ "learning_rate": 0.0006,
+ "loss": 3.952338695526123,
+ "step": 1309
+ },
+ {
+ "epoch": 18.195718654434252,
+ "grad_norm": 0.24635115265846252,
+ "learning_rate": 0.0006,
+ "loss": 3.9693849086761475,
+ "step": 1310
+ },
+ {
+ "epoch": 18.209698558322412,
+ "grad_norm": 0.2757279872894287,
+ "learning_rate": 0.0006,
+ "loss": 3.9956700801849365,
+ "step": 1311
+ },
+ {
+ "epoch": 18.22367846221057,
+ "grad_norm": 0.2619115710258484,
+ "learning_rate": 0.0006,
+ "loss": 3.948878765106201,
+ "step": 1312
+ },
+ {
+ "epoch": 18.23765836609873,
+ "grad_norm": 0.22853828966617584,
+ "learning_rate": 0.0006,
+ "loss": 3.9545674324035645,
+ "step": 1313
+ },
+ {
+ "epoch": 18.251638269986895,
+ "grad_norm": 0.22904761135578156,
+ "learning_rate": 0.0006,
+ "loss": 3.947535991668701,
+ "step": 1314
+ },
+ {
+ "epoch": 18.265618173875055,
+ "grad_norm": 0.23592644929885864,
+ "learning_rate": 0.0006,
+ "loss": 3.971926212310791,
+ "step": 1315
+ },
+ {
+ "epoch": 18.279598077763215,
+ "grad_norm": 0.22120243310928345,
+ "learning_rate": 0.0006,
+ "loss": 3.9471049308776855,
+ "step": 1316
+ },
+ {
+ "epoch": 18.293577981651374,
+ "grad_norm": 0.20308749377727509,
+ "learning_rate": 0.0006,
+ "loss": 3.967449188232422,
+ "step": 1317
+ },
+ {
+ "epoch": 18.307557885539538,
+ "grad_norm": 0.20013529062271118,
+ "learning_rate": 0.0006,
+ "loss": 3.966151237487793,
+ "step": 1318
+ },
+ {
+ "epoch": 18.321537789427698,
+ "grad_norm": 0.20635221898555756,
+ "learning_rate": 0.0006,
+ "loss": 3.9908885955810547,
+ "step": 1319
+ },
+ {
+ "epoch": 18.335517693315857,
+ "grad_norm": 0.2232237160205841,
+ "learning_rate": 0.0006,
+ "loss": 3.9488768577575684,
+ "step": 1320
+ },
+ {
+ "epoch": 18.34949759720402,
+ "grad_norm": 0.21916444599628448,
+ "learning_rate": 0.0006,
+ "loss": 3.973428726196289,
+ "step": 1321
+ },
+ {
+ "epoch": 18.36347750109218,
+ "grad_norm": 0.20427337288856506,
+ "learning_rate": 0.0006,
+ "loss": 3.969332695007324,
+ "step": 1322
+ },
+ {
+ "epoch": 18.37745740498034,
+ "grad_norm": 0.20138131082057953,
+ "learning_rate": 0.0006,
+ "loss": 3.9651856422424316,
+ "step": 1323
+ },
+ {
+ "epoch": 18.3914373088685,
+ "grad_norm": 0.18918880820274353,
+ "learning_rate": 0.0006,
+ "loss": 3.9772281646728516,
+ "step": 1324
+ },
+ {
+ "epoch": 18.405417212756664,
+ "grad_norm": 0.1860039383172989,
+ "learning_rate": 0.0006,
+ "loss": 3.9289052486419678,
+ "step": 1325
+ },
+ {
+ "epoch": 18.419397116644824,
+ "grad_norm": 0.19541646540164948,
+ "learning_rate": 0.0006,
+ "loss": 3.9527673721313477,
+ "step": 1326
+ },
+ {
+ "epoch": 18.433377020532983,
+ "grad_norm": 0.206914022564888,
+ "learning_rate": 0.0006,
+ "loss": 3.99316143989563,
+ "step": 1327
+ },
+ {
+ "epoch": 18.447356924421143,
+ "grad_norm": 0.209097757935524,
+ "learning_rate": 0.0006,
+ "loss": 3.978130340576172,
+ "step": 1328
+ },
+ {
+ "epoch": 18.461336828309307,
+ "grad_norm": 0.22163373231887817,
+ "learning_rate": 0.0006,
+ "loss": 3.951460361480713,
+ "step": 1329
+ },
+ {
+ "epoch": 18.475316732197467,
+ "grad_norm": 0.21446120738983154,
+ "learning_rate": 0.0006,
+ "loss": 3.963571071624756,
+ "step": 1330
+ },
+ {
+ "epoch": 18.489296636085626,
+ "grad_norm": 0.2341388761997223,
+ "learning_rate": 0.0006,
+ "loss": 4.010684013366699,
+ "step": 1331
+ },
+ {
+ "epoch": 18.503276539973786,
+ "grad_norm": 0.2433937042951584,
+ "learning_rate": 0.0006,
+ "loss": 3.987537384033203,
+ "step": 1332
+ },
+ {
+ "epoch": 18.51725644386195,
+ "grad_norm": 0.24916228652000427,
+ "learning_rate": 0.0006,
+ "loss": 3.953075647354126,
+ "step": 1333
+ },
+ {
+ "epoch": 18.53123634775011,
+ "grad_norm": 0.24542421102523804,
+ "learning_rate": 0.0006,
+ "loss": 3.9510841369628906,
+ "step": 1334
+ },
+ {
+ "epoch": 18.54521625163827,
+ "grad_norm": 0.2393690049648285,
+ "learning_rate": 0.0006,
+ "loss": 3.981747627258301,
+ "step": 1335
+ },
+ {
+ "epoch": 18.55919615552643,
+ "grad_norm": 0.22806711494922638,
+ "learning_rate": 0.0006,
+ "loss": 3.9714856147766113,
+ "step": 1336
+ },
+ {
+ "epoch": 18.573176059414592,
+ "grad_norm": 0.21948303282260895,
+ "learning_rate": 0.0006,
+ "loss": 3.9429898262023926,
+ "step": 1337
+ },
+ {
+ "epoch": 18.587155963302752,
+ "grad_norm": 0.21575778722763062,
+ "learning_rate": 0.0006,
+ "loss": 3.9639933109283447,
+ "step": 1338
+ },
+ {
+ "epoch": 18.601135867190912,
+ "grad_norm": 0.23370565474033356,
+ "learning_rate": 0.0006,
+ "loss": 3.9819254875183105,
+ "step": 1339
+ },
+ {
+ "epoch": 18.615115771079076,
+ "grad_norm": 0.2613106369972229,
+ "learning_rate": 0.0006,
+ "loss": 3.9654669761657715,
+ "step": 1340
+ },
+ {
+ "epoch": 18.629095674967235,
+ "grad_norm": 0.26682716608047485,
+ "learning_rate": 0.0006,
+ "loss": 3.9832968711853027,
+ "step": 1341
+ },
+ {
+ "epoch": 18.643075578855395,
+ "grad_norm": 0.24331490695476532,
+ "learning_rate": 0.0006,
+ "loss": 3.9926600456237793,
+ "step": 1342
+ },
+ {
+ "epoch": 18.657055482743555,
+ "grad_norm": 0.2459341287612915,
+ "learning_rate": 0.0006,
+ "loss": 3.9508986473083496,
+ "step": 1343
+ },
+ {
+ "epoch": 18.67103538663172,
+ "grad_norm": 0.26395753026008606,
+ "learning_rate": 0.0006,
+ "loss": 3.961359977722168,
+ "step": 1344
+ },
+ {
+ "epoch": 18.68501529051988,
+ "grad_norm": 0.26049068570137024,
+ "learning_rate": 0.0006,
+ "loss": 3.9763245582580566,
+ "step": 1345
+ },
+ {
+ "epoch": 18.698995194408038,
+ "grad_norm": 0.24018602073192596,
+ "learning_rate": 0.0006,
+ "loss": 3.951780319213867,
+ "step": 1346
+ },
+ {
+ "epoch": 18.712975098296198,
+ "grad_norm": 0.23886290192604065,
+ "learning_rate": 0.0006,
+ "loss": 3.9883017539978027,
+ "step": 1347
+ },
+ {
+ "epoch": 18.72695500218436,
+ "grad_norm": 0.2293774038553238,
+ "learning_rate": 0.0006,
+ "loss": 3.9852685928344727,
+ "step": 1348
+ },
+ {
+ "epoch": 18.74093490607252,
+ "grad_norm": 0.22172975540161133,
+ "learning_rate": 0.0006,
+ "loss": 3.967550277709961,
+ "step": 1349
+ },
+ {
+ "epoch": 18.75491480996068,
+ "grad_norm": 0.2170475423336029,
+ "learning_rate": 0.0006,
+ "loss": 3.9570775032043457,
+ "step": 1350
+ },
+ {
+ "epoch": 18.76889471384884,
+ "grad_norm": 0.21458806097507477,
+ "learning_rate": 0.0006,
+ "loss": 3.9461212158203125,
+ "step": 1351
+ },
+ {
+ "epoch": 18.782874617737004,
+ "grad_norm": 0.21101507544517517,
+ "learning_rate": 0.0006,
+ "loss": 3.984398365020752,
+ "step": 1352
+ },
+ {
+ "epoch": 18.796854521625164,
+ "grad_norm": 0.23480583727359772,
+ "learning_rate": 0.0006,
+ "loss": 3.950312614440918,
+ "step": 1353
+ },
+ {
+ "epoch": 18.810834425513324,
+ "grad_norm": 0.24728581309318542,
+ "learning_rate": 0.0006,
+ "loss": 3.9572393894195557,
+ "step": 1354
+ },
+ {
+ "epoch": 18.824814329401484,
+ "grad_norm": 0.26063451170921326,
+ "learning_rate": 0.0006,
+ "loss": 3.9653234481811523,
+ "step": 1355
+ },
+ {
+ "epoch": 18.838794233289647,
+ "grad_norm": 0.24679961800575256,
+ "learning_rate": 0.0006,
+ "loss": 3.9560108184814453,
+ "step": 1356
+ },
+ {
+ "epoch": 18.852774137177807,
+ "grad_norm": 0.23199526965618134,
+ "learning_rate": 0.0006,
+ "loss": 3.9948246479034424,
+ "step": 1357
+ },
+ {
+ "epoch": 18.866754041065967,
+ "grad_norm": 0.22619125247001648,
+ "learning_rate": 0.0006,
+ "loss": 3.9783573150634766,
+ "step": 1358
+ },
+ {
+ "epoch": 18.88073394495413,
+ "grad_norm": 0.25499874353408813,
+ "learning_rate": 0.0006,
+ "loss": 3.9674575328826904,
+ "step": 1359
+ },
+ {
+ "epoch": 18.89471384884229,
+ "grad_norm": 0.23961037397384644,
+ "learning_rate": 0.0006,
+ "loss": 3.969209909439087,
+ "step": 1360
+ },
+ {
+ "epoch": 18.90869375273045,
+ "grad_norm": 0.21039162576198578,
+ "learning_rate": 0.0006,
+ "loss": 3.978661060333252,
+ "step": 1361
+ },
+ {
+ "epoch": 18.92267365661861,
+ "grad_norm": 0.2297026664018631,
+ "learning_rate": 0.0006,
+ "loss": 3.9483046531677246,
+ "step": 1362
+ },
+ {
+ "epoch": 18.936653560506773,
+ "grad_norm": 0.26367098093032837,
+ "learning_rate": 0.0006,
+ "loss": 3.927133560180664,
+ "step": 1363
+ },
+ {
+ "epoch": 18.950633464394933,
+ "grad_norm": 0.26893147826194763,
+ "learning_rate": 0.0006,
+ "loss": 3.957932710647583,
+ "step": 1364
+ },
+ {
+ "epoch": 18.964613368283093,
+ "grad_norm": 0.27092233300209045,
+ "learning_rate": 0.0006,
+ "loss": 3.976621150970459,
+ "step": 1365
+ },
+ {
+ "epoch": 18.978593272171253,
+ "grad_norm": 0.2672635018825531,
+ "learning_rate": 0.0006,
+ "loss": 3.9577765464782715,
+ "step": 1366
+ },
+ {
+ "epoch": 18.992573176059416,
+ "grad_norm": 0.2721385359764099,
+ "learning_rate": 0.0006,
+ "loss": 3.986100196838379,
+ "step": 1367
+ },
+ {
+ "epoch": 19.0,
+ "grad_norm": 0.27648621797561646,
+ "learning_rate": 0.0006,
+ "loss": 3.9942402839660645,
+ "step": 1368
+ },
+ {
+ "epoch": 19.0,
+ "eval_loss": 4.180216312408447,
+ "eval_runtime": 44.0079,
+ "eval_samples_per_second": 55.49,
+ "eval_steps_per_second": 3.477,
+ "step": 1368
+ },
+ {
+ "epoch": 19.01397990388816,
+ "grad_norm": 0.2563098073005676,
+ "learning_rate": 0.0006,
+ "loss": 3.9267354011535645,
+ "step": 1369
+ },
+ {
+ "epoch": 19.027959807776323,
+ "grad_norm": 0.2531425952911377,
+ "learning_rate": 0.0006,
+ "loss": 3.9273324012756348,
+ "step": 1370
+ },
+ {
+ "epoch": 19.041939711664483,
+ "grad_norm": 0.27485427260398865,
+ "learning_rate": 0.0006,
+ "loss": 3.9542183876037598,
+ "step": 1371
+ },
+ {
+ "epoch": 19.055919615552643,
+ "grad_norm": 0.27509891986846924,
+ "learning_rate": 0.0006,
+ "loss": 3.921940326690674,
+ "step": 1372
+ },
+ {
+ "epoch": 19.069899519440803,
+ "grad_norm": 0.28154096007347107,
+ "learning_rate": 0.0006,
+ "loss": 3.926743984222412,
+ "step": 1373
+ },
+ {
+ "epoch": 19.083879423328966,
+ "grad_norm": 0.2749912738800049,
+ "learning_rate": 0.0006,
+ "loss": 3.9257748126983643,
+ "step": 1374
+ },
+ {
+ "epoch": 19.097859327217126,
+ "grad_norm": 0.26168501377105713,
+ "learning_rate": 0.0006,
+ "loss": 3.9403202533721924,
+ "step": 1375
+ },
+ {
+ "epoch": 19.111839231105286,
+ "grad_norm": 0.23410023748874664,
+ "learning_rate": 0.0006,
+ "loss": 3.935378313064575,
+ "step": 1376
+ },
+ {
+ "epoch": 19.125819134993446,
+ "grad_norm": 0.25790470838546753,
+ "learning_rate": 0.0006,
+ "loss": 3.946147918701172,
+ "step": 1377
+ },
+ {
+ "epoch": 19.13979903888161,
+ "grad_norm": 0.26704177260398865,
+ "learning_rate": 0.0006,
+ "loss": 3.9511594772338867,
+ "step": 1378
+ },
+ {
+ "epoch": 19.15377894276977,
+ "grad_norm": 0.2560667097568512,
+ "learning_rate": 0.0006,
+ "loss": 3.915806531906128,
+ "step": 1379
+ },
+ {
+ "epoch": 19.16775884665793,
+ "grad_norm": 0.24684149026870728,
+ "learning_rate": 0.0006,
+ "loss": 3.9162003993988037,
+ "step": 1380
+ },
+ {
+ "epoch": 19.18173875054609,
+ "grad_norm": 0.2097567766904831,
+ "learning_rate": 0.0006,
+ "loss": 3.915739059448242,
+ "step": 1381
+ },
+ {
+ "epoch": 19.195718654434252,
+ "grad_norm": 0.21646849811077118,
+ "learning_rate": 0.0006,
+ "loss": 3.9097084999084473,
+ "step": 1382
+ },
+ {
+ "epoch": 19.209698558322412,
+ "grad_norm": 0.20626980066299438,
+ "learning_rate": 0.0006,
+ "loss": 3.9541783332824707,
+ "step": 1383
+ },
+ {
+ "epoch": 19.22367846221057,
+ "grad_norm": 0.23362718522548676,
+ "learning_rate": 0.0006,
+ "loss": 3.950096845626831,
+ "step": 1384
+ },
+ {
+ "epoch": 19.23765836609873,
+ "grad_norm": 0.25402209162712097,
+ "learning_rate": 0.0006,
+ "loss": 3.927671432495117,
+ "step": 1385
+ },
+ {
+ "epoch": 19.251638269986895,
+ "grad_norm": 0.23714083433151245,
+ "learning_rate": 0.0006,
+ "loss": 3.939765453338623,
+ "step": 1386
+ },
+ {
+ "epoch": 19.265618173875055,
+ "grad_norm": 0.20895546674728394,
+ "learning_rate": 0.0006,
+ "loss": 3.9384806156158447,
+ "step": 1387
+ },
+ {
+ "epoch": 19.279598077763215,
+ "grad_norm": 0.21374300122261047,
+ "learning_rate": 0.0006,
+ "loss": 3.9523749351501465,
+ "step": 1388
+ },
+ {
+ "epoch": 19.293577981651374,
+ "grad_norm": 0.210394486784935,
+ "learning_rate": 0.0006,
+ "loss": 3.9540798664093018,
+ "step": 1389
+ },
+ {
+ "epoch": 19.307557885539538,
+ "grad_norm": 0.20646725594997406,
+ "learning_rate": 0.0006,
+ "loss": 3.9514098167419434,
+ "step": 1390
+ },
+ {
+ "epoch": 19.321537789427698,
+ "grad_norm": 0.21477538347244263,
+ "learning_rate": 0.0006,
+ "loss": 3.9369924068450928,
+ "step": 1391
+ },
+ {
+ "epoch": 19.335517693315857,
+ "grad_norm": 0.20431505143642426,
+ "learning_rate": 0.0006,
+ "loss": 3.9389796257019043,
+ "step": 1392
+ },
+ {
+ "epoch": 19.34949759720402,
+ "grad_norm": 0.19575877487659454,
+ "learning_rate": 0.0006,
+ "loss": 3.935976028442383,
+ "step": 1393
+ },
+ {
+ "epoch": 19.36347750109218,
+ "grad_norm": 0.20720405876636505,
+ "learning_rate": 0.0006,
+ "loss": 3.9670963287353516,
+ "step": 1394
+ },
+ {
+ "epoch": 19.37745740498034,
+ "grad_norm": 0.2173967957496643,
+ "learning_rate": 0.0006,
+ "loss": 3.903940439224243,
+ "step": 1395
+ },
+ {
+ "epoch": 19.3914373088685,
+ "grad_norm": 0.2180529683828354,
+ "learning_rate": 0.0006,
+ "loss": 3.8716301918029785,
+ "step": 1396
+ },
+ {
+ "epoch": 19.405417212756664,
+ "grad_norm": 0.20666591823101044,
+ "learning_rate": 0.0006,
+ "loss": 3.930936813354492,
+ "step": 1397
+ },
+ {
+ "epoch": 19.419397116644824,
+ "grad_norm": 0.20353034138679504,
+ "learning_rate": 0.0006,
+ "loss": 3.926954746246338,
+ "step": 1398
+ },
+ {
+ "epoch": 19.433377020532983,
+ "grad_norm": 0.22333289682865143,
+ "learning_rate": 0.0006,
+ "loss": 3.947504997253418,
+ "step": 1399
+ },
+ {
+ "epoch": 19.447356924421143,
+ "grad_norm": 0.21787697076797485,
+ "learning_rate": 0.0006,
+ "loss": 3.9325344562530518,
+ "step": 1400
+ },
+ {
+ "epoch": 19.461336828309307,
+ "grad_norm": 0.22805874049663544,
+ "learning_rate": 0.0006,
+ "loss": 3.9640727043151855,
+ "step": 1401
+ },
+ {
+ "epoch": 19.475316732197467,
+ "grad_norm": 0.22396457195281982,
+ "learning_rate": 0.0006,
+ "loss": 3.9537901878356934,
+ "step": 1402
+ },
+ {
+ "epoch": 19.489296636085626,
+ "grad_norm": 0.2333047240972519,
+ "learning_rate": 0.0006,
+ "loss": 3.935609817504883,
+ "step": 1403
+ },
+ {
+ "epoch": 19.503276539973786,
+ "grad_norm": 0.25063616037368774,
+ "learning_rate": 0.0006,
+ "loss": 3.9659228324890137,
+ "step": 1404
+ },
+ {
+ "epoch": 19.51725644386195,
+ "grad_norm": 0.29074087738990784,
+ "learning_rate": 0.0006,
+ "loss": 3.9552183151245117,
+ "step": 1405
+ },
+ {
+ "epoch": 19.53123634775011,
+ "grad_norm": 0.34876152873039246,
+ "learning_rate": 0.0006,
+ "loss": 3.976163387298584,
+ "step": 1406
+ },
+ {
+ "epoch": 19.54521625163827,
+ "grad_norm": 0.35026612877845764,
+ "learning_rate": 0.0006,
+ "loss": 3.961186408996582,
+ "step": 1407
+ },
+ {
+ "epoch": 19.55919615552643,
+ "grad_norm": 0.3199564218521118,
+ "learning_rate": 0.0006,
+ "loss": 3.9366297721862793,
+ "step": 1408
+ },
+ {
+ "epoch": 19.573176059414592,
+ "grad_norm": 0.2976185977458954,
+ "learning_rate": 0.0006,
+ "loss": 3.9502010345458984,
+ "step": 1409
+ },
+ {
+ "epoch": 19.587155963302752,
+ "grad_norm": 0.2951911687850952,
+ "learning_rate": 0.0006,
+ "loss": 3.9427943229675293,
+ "step": 1410
+ },
+ {
+ "epoch": 19.601135867190912,
+ "grad_norm": 0.27918702363967896,
+ "learning_rate": 0.0006,
+ "loss": 3.963700532913208,
+ "step": 1411
+ },
+ {
+ "epoch": 19.615115771079076,
+ "grad_norm": 0.26197490096092224,
+ "learning_rate": 0.0006,
+ "loss": 3.9636964797973633,
+ "step": 1412
+ },
+ {
+ "epoch": 19.629095674967235,
+ "grad_norm": 0.24242281913757324,
+ "learning_rate": 0.0006,
+ "loss": 3.961815595626831,
+ "step": 1413
+ },
+ {
+ "epoch": 19.643075578855395,
+ "grad_norm": 0.2606375515460968,
+ "learning_rate": 0.0006,
+ "loss": 3.946643352508545,
+ "step": 1414
+ },
+ {
+ "epoch": 19.657055482743555,
+ "grad_norm": 0.23353353142738342,
+ "learning_rate": 0.0006,
+ "loss": 3.973155975341797,
+ "step": 1415
+ },
+ {
+ "epoch": 19.67103538663172,
+ "grad_norm": 0.22872662544250488,
+ "learning_rate": 0.0006,
+ "loss": 3.9528894424438477,
+ "step": 1416
+ },
+ {
+ "epoch": 19.68501529051988,
+ "grad_norm": 0.24678432941436768,
+ "learning_rate": 0.0006,
+ "loss": 3.9313249588012695,
+ "step": 1417
+ },
+ {
+ "epoch": 19.698995194408038,
+ "grad_norm": 0.23895515501499176,
+ "learning_rate": 0.0006,
+ "loss": 3.944082498550415,
+ "step": 1418
+ },
+ {
+ "epoch": 19.712975098296198,
+ "grad_norm": 0.23649105429649353,
+ "learning_rate": 0.0006,
+ "loss": 3.962069034576416,
+ "step": 1419
+ },
+ {
+ "epoch": 19.72695500218436,
+ "grad_norm": 0.22031061351299286,
+ "learning_rate": 0.0006,
+ "loss": 3.912972927093506,
+ "step": 1420
+ },
+ {
+ "epoch": 19.74093490607252,
+ "grad_norm": 0.20231695473194122,
+ "learning_rate": 0.0006,
+ "loss": 3.964531421661377,
+ "step": 1421
+ },
+ {
+ "epoch": 19.75491480996068,
+ "grad_norm": 0.19980913400650024,
+ "learning_rate": 0.0006,
+ "loss": 3.9452600479125977,
+ "step": 1422
+ },
+ {
+ "epoch": 19.76889471384884,
+ "grad_norm": 0.21768775582313538,
+ "learning_rate": 0.0006,
+ "loss": 3.9214301109313965,
+ "step": 1423
+ },
+ {
+ "epoch": 19.782874617737004,
+ "grad_norm": 0.21287119388580322,
+ "learning_rate": 0.0006,
+ "loss": 3.9416494369506836,
+ "step": 1424
+ },
+ {
+ "epoch": 19.796854521625164,
+ "grad_norm": 0.21399827301502228,
+ "learning_rate": 0.0006,
+ "loss": 3.971010208129883,
+ "step": 1425
+ },
+ {
+ "epoch": 19.810834425513324,
+ "grad_norm": 0.1957658976316452,
+ "learning_rate": 0.0006,
+ "loss": 3.936331272125244,
+ "step": 1426
+ },
+ {
+ "epoch": 19.824814329401484,
+ "grad_norm": 0.19341488182544708,
+ "learning_rate": 0.0006,
+ "loss": 3.9321448802948,
+ "step": 1427
+ },
+ {
+ "epoch": 19.838794233289647,
+ "grad_norm": 0.18405723571777344,
+ "learning_rate": 0.0006,
+ "loss": 3.939542293548584,
+ "step": 1428
+ },
+ {
+ "epoch": 19.852774137177807,
+ "grad_norm": 0.19672836363315582,
+ "learning_rate": 0.0006,
+ "loss": 3.939652919769287,
+ "step": 1429
+ },
+ {
+ "epoch": 19.866754041065967,
+ "grad_norm": 0.1998940259218216,
+ "learning_rate": 0.0006,
+ "loss": 3.932892322540283,
+ "step": 1430
+ },
+ {
+ "epoch": 19.88073394495413,
+ "grad_norm": 0.2307668924331665,
+ "learning_rate": 0.0006,
+ "loss": 3.9402761459350586,
+ "step": 1431
+ },
+ {
+ "epoch": 19.89471384884229,
+ "grad_norm": 0.2531987726688385,
+ "learning_rate": 0.0006,
+ "loss": 3.9153199195861816,
+ "step": 1432
+ },
+ {
+ "epoch": 19.90869375273045,
+ "grad_norm": 0.2299388349056244,
+ "learning_rate": 0.0006,
+ "loss": 3.9569954872131348,
+ "step": 1433
+ },
+ {
+ "epoch": 19.92267365661861,
+ "grad_norm": 0.2503527104854584,
+ "learning_rate": 0.0006,
+ "loss": 3.9469428062438965,
+ "step": 1434
+ },
+ {
+ "epoch": 19.936653560506773,
+ "grad_norm": 0.25390249490737915,
+ "learning_rate": 0.0006,
+ "loss": 3.941803455352783,
+ "step": 1435
+ },
+ {
+ "epoch": 19.950633464394933,
+ "grad_norm": 0.2288687825202942,
+ "learning_rate": 0.0006,
+ "loss": 3.9385883808135986,
+ "step": 1436
+ },
+ {
+ "epoch": 19.964613368283093,
+ "grad_norm": 0.2231096774339676,
+ "learning_rate": 0.0006,
+ "loss": 3.9255237579345703,
+ "step": 1437
+ },
+ {
+ "epoch": 19.978593272171253,
+ "grad_norm": 0.20729343593120575,
+ "learning_rate": 0.0006,
+ "loss": 3.9443163871765137,
+ "step": 1438
+ },
+ {
+ "epoch": 19.992573176059416,
+ "grad_norm": 0.197743758559227,
+ "learning_rate": 0.0006,
+ "loss": 3.925455093383789,
+ "step": 1439
+ },
+ {
+ "epoch": 20.0,
+ "grad_norm": 0.23943661153316498,
+ "learning_rate": 0.0006,
+ "loss": 3.9458866119384766,
+ "step": 1440
+ },
+ {
+ "epoch": 20.0,
+ "eval_loss": 4.144192218780518,
+ "eval_runtime": 44.0278,
+ "eval_samples_per_second": 55.465,
+ "eval_steps_per_second": 3.475,
+ "step": 1440
+ },
+ {
+ "epoch": 20.01397990388816,
+ "grad_norm": 0.2032143622636795,
+ "learning_rate": 0.0006,
+ "loss": 3.9151499271392822,
+ "step": 1441
+ },
+ {
+ "epoch": 20.027959807776323,
+ "grad_norm": 0.20164789259433746,
+ "learning_rate": 0.0006,
+ "loss": 3.874115228652954,
+ "step": 1442
+ },
+ {
+ "epoch": 20.041939711664483,
+ "grad_norm": 0.20796619355678558,
+ "learning_rate": 0.0006,
+ "loss": 3.9090776443481445,
+ "step": 1443
+ },
+ {
+ "epoch": 20.055919615552643,
+ "grad_norm": 0.1999918520450592,
+ "learning_rate": 0.0006,
+ "loss": 3.926563262939453,
+ "step": 1444
+ },
+ {
+ "epoch": 20.069899519440803,
+ "grad_norm": 0.204790860414505,
+ "learning_rate": 0.0006,
+ "loss": 3.9088830947875977,
+ "step": 1445
+ },
+ {
+ "epoch": 20.083879423328966,
+ "grad_norm": 0.21507175266742706,
+ "learning_rate": 0.0006,
+ "loss": 3.916504383087158,
+ "step": 1446
+ },
+ {
+ "epoch": 20.097859327217126,
+ "grad_norm": 0.2398025095462799,
+ "learning_rate": 0.0006,
+ "loss": 3.9128990173339844,
+ "step": 1447
+ },
+ {
+ "epoch": 20.111839231105286,
+ "grad_norm": 0.26037144660949707,
+ "learning_rate": 0.0006,
+ "loss": 3.9125187397003174,
+ "step": 1448
+ },
+ {
+ "epoch": 20.125819134993446,
+ "grad_norm": 0.25564828515052795,
+ "learning_rate": 0.0006,
+ "loss": 3.891867160797119,
+ "step": 1449
+ },
+ {
+ "epoch": 20.13979903888161,
+ "grad_norm": 0.2767223119735718,
+ "learning_rate": 0.0006,
+ "loss": 3.9202775955200195,
+ "step": 1450
+ },
+ {
+ "epoch": 20.15377894276977,
+ "grad_norm": 0.27696558833122253,
+ "learning_rate": 0.0006,
+ "loss": 3.9231314659118652,
+ "step": 1451
+ },
+ {
+ "epoch": 20.16775884665793,
+ "grad_norm": 0.3054044246673584,
+ "learning_rate": 0.0006,
+ "loss": 3.918138027191162,
+ "step": 1452
+ },
+ {
+ "epoch": 20.18173875054609,
+ "grad_norm": 0.3018973171710968,
+ "learning_rate": 0.0006,
+ "loss": 3.890678882598877,
+ "step": 1453
+ },
+ {
+ "epoch": 20.195718654434252,
+ "grad_norm": 0.306232750415802,
+ "learning_rate": 0.0006,
+ "loss": 3.920753002166748,
+ "step": 1454
+ },
+ {
+ "epoch": 20.209698558322412,
+ "grad_norm": 0.29593729972839355,
+ "learning_rate": 0.0006,
+ "loss": 3.9455509185791016,
+ "step": 1455
+ },
+ {
+ "epoch": 20.22367846221057,
+ "grad_norm": 0.2937646210193634,
+ "learning_rate": 0.0006,
+ "loss": 3.9227709770202637,
+ "step": 1456
+ },
+ {
+ "epoch": 20.23765836609873,
+ "grad_norm": 0.26380231976509094,
+ "learning_rate": 0.0006,
+ "loss": 3.9097609519958496,
+ "step": 1457
+ },
+ {
+ "epoch": 20.251638269986895,
+ "grad_norm": 0.24992692470550537,
+ "learning_rate": 0.0006,
+ "loss": 3.9393627643585205,
+ "step": 1458
+ },
+ {
+ "epoch": 20.265618173875055,
+ "grad_norm": 0.270219087600708,
+ "learning_rate": 0.0006,
+ "loss": 3.929330348968506,
+ "step": 1459
+ },
+ {
+ "epoch": 20.279598077763215,
+ "grad_norm": 0.2860020399093628,
+ "learning_rate": 0.0006,
+ "loss": 3.8947913646698,
+ "step": 1460
+ },
+ {
+ "epoch": 20.293577981651374,
+ "grad_norm": 0.27494579553604126,
+ "learning_rate": 0.0006,
+ "loss": 3.9105992317199707,
+ "step": 1461
+ },
+ {
+ "epoch": 20.307557885539538,
+ "grad_norm": 0.26467713713645935,
+ "learning_rate": 0.0006,
+ "loss": 3.914632797241211,
+ "step": 1462
+ },
+ {
+ "epoch": 20.321537789427698,
+ "grad_norm": 0.25747713446617126,
+ "learning_rate": 0.0006,
+ "loss": 3.919846534729004,
+ "step": 1463
+ },
+ {
+ "epoch": 20.335517693315857,
+ "grad_norm": 0.24027711153030396,
+ "learning_rate": 0.0006,
+ "loss": 3.904740810394287,
+ "step": 1464
+ },
+ {
+ "epoch": 20.34949759720402,
+ "grad_norm": 0.24682414531707764,
+ "learning_rate": 0.0006,
+ "loss": 3.9190149307250977,
+ "step": 1465
+ },
+ {
+ "epoch": 20.36347750109218,
+ "grad_norm": 0.2619759440422058,
+ "learning_rate": 0.0006,
+ "loss": 3.9488329887390137,
+ "step": 1466
+ },
+ {
+ "epoch": 20.37745740498034,
+ "grad_norm": 0.2632448971271515,
+ "learning_rate": 0.0006,
+ "loss": 3.9216647148132324,
+ "step": 1467
+ },
+ {
+ "epoch": 20.3914373088685,
+ "grad_norm": 0.27569764852523804,
+ "learning_rate": 0.0006,
+ "loss": 3.9178895950317383,
+ "step": 1468
+ },
+ {
+ "epoch": 20.405417212756664,
+ "grad_norm": 0.2611774802207947,
+ "learning_rate": 0.0006,
+ "loss": 3.933730125427246,
+ "step": 1469
+ },
+ {
+ "epoch": 20.419397116644824,
+ "grad_norm": 0.2839447557926178,
+ "learning_rate": 0.0006,
+ "loss": 3.9261364936828613,
+ "step": 1470
+ },
+ {
+ "epoch": 20.433377020532983,
+ "grad_norm": 0.29006227850914,
+ "learning_rate": 0.0006,
+ "loss": 3.9157633781433105,
+ "step": 1471
+ },
+ {
+ "epoch": 20.447356924421143,
+ "grad_norm": 0.2809498906135559,
+ "learning_rate": 0.0006,
+ "loss": 3.9211745262145996,
+ "step": 1472
+ },
+ {
+ "epoch": 20.461336828309307,
+ "grad_norm": 0.27859532833099365,
+ "learning_rate": 0.0006,
+ "loss": 3.9115967750549316,
+ "step": 1473
+ },
+ {
+ "epoch": 20.475316732197467,
+ "grad_norm": 0.29114410281181335,
+ "learning_rate": 0.0006,
+ "loss": 3.9024441242218018,
+ "step": 1474
+ },
+ {
+ "epoch": 20.489296636085626,
+ "grad_norm": 0.2686930000782013,
+ "learning_rate": 0.0006,
+ "loss": 3.9497199058532715,
+ "step": 1475
+ },
+ {
+ "epoch": 20.503276539973786,
+ "grad_norm": 0.24120540916919708,
+ "learning_rate": 0.0006,
+ "loss": 3.9218955039978027,
+ "step": 1476
+ },
+ {
+ "epoch": 20.51725644386195,
+ "grad_norm": 0.23689547181129456,
+ "learning_rate": 0.0006,
+ "loss": 3.9410176277160645,
+ "step": 1477
+ },
+ {
+ "epoch": 20.53123634775011,
+ "grad_norm": 0.26382362842559814,
+ "learning_rate": 0.0006,
+ "loss": 3.8880343437194824,
+ "step": 1478
+ },
+ {
+ "epoch": 20.54521625163827,
+ "grad_norm": 0.21628661453723907,
+ "learning_rate": 0.0006,
+ "loss": 3.892622470855713,
+ "step": 1479
+ },
+ {
+ "epoch": 20.55919615552643,
+ "grad_norm": 0.19896996021270752,
+ "learning_rate": 0.0006,
+ "loss": 3.938734769821167,
+ "step": 1480
+ },
+ {
+ "epoch": 20.573176059414592,
+ "grad_norm": 0.20232494175434113,
+ "learning_rate": 0.0006,
+ "loss": 3.9197006225585938,
+ "step": 1481
+ },
+ {
+ "epoch": 20.587155963302752,
+ "grad_norm": 0.21807828545570374,
+ "learning_rate": 0.0006,
+ "loss": 3.9195618629455566,
+ "step": 1482
+ },
+ {
+ "epoch": 20.601135867190912,
+ "grad_norm": 0.21778680384159088,
+ "learning_rate": 0.0006,
+ "loss": 3.913395404815674,
+ "step": 1483
+ },
+ {
+ "epoch": 20.615115771079076,
+ "grad_norm": 0.21015185117721558,
+ "learning_rate": 0.0006,
+ "loss": 3.8858234882354736,
+ "step": 1484
+ },
+ {
+ "epoch": 20.629095674967235,
+ "grad_norm": 0.20131368935108185,
+ "learning_rate": 0.0006,
+ "loss": 3.927213430404663,
+ "step": 1485
+ },
+ {
+ "epoch": 20.643075578855395,
+ "grad_norm": 0.20746243000030518,
+ "learning_rate": 0.0006,
+ "loss": 3.913198471069336,
+ "step": 1486
+ },
+ {
+ "epoch": 20.657055482743555,
+ "grad_norm": 0.2024548053741455,
+ "learning_rate": 0.0006,
+ "loss": 3.923048257827759,
+ "step": 1487
+ },
+ {
+ "epoch": 20.67103538663172,
+ "grad_norm": 0.19735988974571228,
+ "learning_rate": 0.0006,
+ "loss": 3.9136500358581543,
+ "step": 1488
+ },
+ {
+ "epoch": 20.68501529051988,
+ "grad_norm": 0.19781625270843506,
+ "learning_rate": 0.0006,
+ "loss": 3.883793592453003,
+ "step": 1489
+ },
+ {
+ "epoch": 20.698995194408038,
+ "grad_norm": 0.1911996454000473,
+ "learning_rate": 0.0006,
+ "loss": 3.9078567028045654,
+ "step": 1490
+ },
+ {
+ "epoch": 20.712975098296198,
+ "grad_norm": 0.1989123821258545,
+ "learning_rate": 0.0006,
+ "loss": 3.9314043521881104,
+ "step": 1491
+ },
+ {
+ "epoch": 20.72695500218436,
+ "grad_norm": 0.18839342892169952,
+ "learning_rate": 0.0006,
+ "loss": 3.8955953121185303,
+ "step": 1492
+ },
+ {
+ "epoch": 20.74093490607252,
+ "grad_norm": 0.1944834142923355,
+ "learning_rate": 0.0006,
+ "loss": 3.9272377490997314,
+ "step": 1493
+ },
+ {
+ "epoch": 20.75491480996068,
+ "grad_norm": 0.20829126238822937,
+ "learning_rate": 0.0006,
+ "loss": 3.878857374191284,
+ "step": 1494
+ },
+ {
+ "epoch": 20.76889471384884,
+ "grad_norm": 0.21438424289226532,
+ "learning_rate": 0.0006,
+ "loss": 3.9155564308166504,
+ "step": 1495
+ },
+ {
+ "epoch": 20.782874617737004,
+ "grad_norm": 0.22309324145317078,
+ "learning_rate": 0.0006,
+ "loss": 3.9281692504882812,
+ "step": 1496
+ },
+ {
+ "epoch": 20.796854521625164,
+ "grad_norm": 0.2053767591714859,
+ "learning_rate": 0.0006,
+ "loss": 3.9096317291259766,
+ "step": 1497
+ },
+ {
+ "epoch": 20.810834425513324,
+ "grad_norm": 0.20429186522960663,
+ "learning_rate": 0.0006,
+ "loss": 3.9184865951538086,
+ "step": 1498
+ },
+ {
+ "epoch": 20.824814329401484,
+ "grad_norm": 0.21983473002910614,
+ "learning_rate": 0.0006,
+ "loss": 3.9130771160125732,
+ "step": 1499
+ },
+ {
+ "epoch": 20.838794233289647,
+ "grad_norm": 0.21649539470672607,
+ "learning_rate": 0.0006,
+ "loss": 3.921581268310547,
+ "step": 1500
+ },
+ {
+ "epoch": 20.852774137177807,
+ "grad_norm": 0.19645053148269653,
+ "learning_rate": 0.0006,
+ "loss": 3.966360092163086,
+ "step": 1501
+ },
+ {
+ "epoch": 20.866754041065967,
+ "grad_norm": 0.2126782387495041,
+ "learning_rate": 0.0006,
+ "loss": 3.9004554748535156,
+ "step": 1502
+ },
+ {
+ "epoch": 20.88073394495413,
+ "grad_norm": 0.22359658777713776,
+ "learning_rate": 0.0006,
+ "loss": 3.92336368560791,
+ "step": 1503
+ },
+ {
+ "epoch": 20.89471384884229,
+ "grad_norm": 0.2334042638540268,
+ "learning_rate": 0.0006,
+ "loss": 3.9188671112060547,
+ "step": 1504
+ },
+ {
+ "epoch": 20.90869375273045,
+ "grad_norm": 0.24595916271209717,
+ "learning_rate": 0.0006,
+ "loss": 3.9348371028900146,
+ "step": 1505
+ },
+ {
+ "epoch": 20.92267365661861,
+ "grad_norm": 0.24177910387516022,
+ "learning_rate": 0.0006,
+ "loss": 3.8796424865722656,
+ "step": 1506
+ },
+ {
+ "epoch": 20.936653560506773,
+ "grad_norm": 0.24193289875984192,
+ "learning_rate": 0.0006,
+ "loss": 3.892627716064453,
+ "step": 1507
+ },
+ {
+ "epoch": 20.950633464394933,
+ "grad_norm": 0.252849280834198,
+ "learning_rate": 0.0006,
+ "loss": 3.9300179481506348,
+ "step": 1508
+ },
+ {
+ "epoch": 20.964613368283093,
+ "grad_norm": 0.24933326244354248,
+ "learning_rate": 0.0006,
+ "loss": 3.9597225189208984,
+ "step": 1509
+ },
+ {
+ "epoch": 20.978593272171253,
+ "grad_norm": 0.23850969970226288,
+ "learning_rate": 0.0006,
+ "loss": 3.9027397632598877,
+ "step": 1510
+ },
+ {
+ "epoch": 20.992573176059416,
+ "grad_norm": 0.23298311233520508,
+ "learning_rate": 0.0006,
+ "loss": 3.9024105072021484,
+ "step": 1511
+ },
+ {
+ "epoch": 21.0,
+ "grad_norm": 0.2467455416917801,
+ "learning_rate": 0.0006,
+ "loss": 3.915929079055786,
+ "step": 1512
+ },
+ {
+ "epoch": 21.0,
+ "eval_loss": 4.136331081390381,
+ "eval_runtime": 43.9468,
+ "eval_samples_per_second": 55.567,
+ "eval_steps_per_second": 3.481,
+ "step": 1512
+ },
+ {
+ "epoch": 21.01397990388816,
+ "grad_norm": 0.2195885181427002,
+ "learning_rate": 0.0006,
+ "loss": 3.873412847518921,
+ "step": 1513
+ },
+ {
+ "epoch": 21.027959807776323,
+ "grad_norm": 0.24250614643096924,
+ "learning_rate": 0.0006,
+ "loss": 3.882302761077881,
+ "step": 1514
+ },
+ {
+ "epoch": 21.041939711664483,
+ "grad_norm": 0.249113991856575,
+ "learning_rate": 0.0006,
+ "loss": 3.9112048149108887,
+ "step": 1515
+ },
+ {
+ "epoch": 21.055919615552643,
+ "grad_norm": 0.25365301966667175,
+ "learning_rate": 0.0006,
+ "loss": 3.8625712394714355,
+ "step": 1516
+ },
+ {
+ "epoch": 21.069899519440803,
+ "grad_norm": 0.2218591272830963,
+ "learning_rate": 0.0006,
+ "loss": 3.876072406768799,
+ "step": 1517
+ },
+ {
+ "epoch": 21.083879423328966,
+ "grad_norm": 0.238582581281662,
+ "learning_rate": 0.0006,
+ "loss": 3.862060546875,
+ "step": 1518
+ },
+ {
+ "epoch": 21.097859327217126,
+ "grad_norm": 0.25051242113113403,
+ "learning_rate": 0.0006,
+ "loss": 3.905315399169922,
+ "step": 1519
+ },
+ {
+ "epoch": 21.111839231105286,
+ "grad_norm": 0.2391843944787979,
+ "learning_rate": 0.0006,
+ "loss": 3.909144401550293,
+ "step": 1520
+ },
+ {
+ "epoch": 21.125819134993446,
+ "grad_norm": 0.230543315410614,
+ "learning_rate": 0.0006,
+ "loss": 3.8856799602508545,
+ "step": 1521
+ },
+ {
+ "epoch": 21.13979903888161,
+ "grad_norm": 0.24165484309196472,
+ "learning_rate": 0.0006,
+ "loss": 3.893883228302002,
+ "step": 1522
+ },
+ {
+ "epoch": 21.15377894276977,
+ "grad_norm": 0.24657143652439117,
+ "learning_rate": 0.0006,
+ "loss": 3.901129722595215,
+ "step": 1523
+ },
+ {
+ "epoch": 21.16775884665793,
+ "grad_norm": 0.2659998834133148,
+ "learning_rate": 0.0006,
+ "loss": 3.910468101501465,
+ "step": 1524
+ },
+ {
+ "epoch": 21.18173875054609,
+ "grad_norm": 0.2673095166683197,
+ "learning_rate": 0.0006,
+ "loss": 3.917454242706299,
+ "step": 1525
+ },
+ {
+ "epoch": 21.195718654434252,
+ "grad_norm": 0.22122322022914886,
+ "learning_rate": 0.0006,
+ "loss": 3.9017257690429688,
+ "step": 1526
+ },
+ {
+ "epoch": 21.209698558322412,
+ "grad_norm": 0.21882867813110352,
+ "learning_rate": 0.0006,
+ "loss": 3.8605496883392334,
+ "step": 1527
+ },
+ {
+ "epoch": 21.22367846221057,
+ "grad_norm": 0.22335563600063324,
+ "learning_rate": 0.0006,
+ "loss": 3.88120174407959,
+ "step": 1528
+ },
+ {
+ "epoch": 21.23765836609873,
+ "grad_norm": 0.22973211109638214,
+ "learning_rate": 0.0006,
+ "loss": 3.8636834621429443,
+ "step": 1529
+ },
+ {
+ "epoch": 21.251638269986895,
+ "grad_norm": 0.2410288006067276,
+ "learning_rate": 0.0006,
+ "loss": 3.8698177337646484,
+ "step": 1530
+ },
+ {
+ "epoch": 21.265618173875055,
+ "grad_norm": 0.2454768717288971,
+ "learning_rate": 0.0006,
+ "loss": 3.905341148376465,
+ "step": 1531
+ },
+ {
+ "epoch": 21.279598077763215,
+ "grad_norm": 0.2271580696105957,
+ "learning_rate": 0.0006,
+ "loss": 3.864063262939453,
+ "step": 1532
+ },
+ {
+ "epoch": 21.293577981651374,
+ "grad_norm": 0.2200947403907776,
+ "learning_rate": 0.0006,
+ "loss": 3.8889589309692383,
+ "step": 1533
+ },
+ {
+ "epoch": 21.307557885539538,
+ "grad_norm": 0.2180824875831604,
+ "learning_rate": 0.0006,
+ "loss": 3.8873472213745117,
+ "step": 1534
+ },
+ {
+ "epoch": 21.321537789427698,
+ "grad_norm": 0.214975506067276,
+ "learning_rate": 0.0006,
+ "loss": 3.882307529449463,
+ "step": 1535
+ },
+ {
+ "epoch": 21.335517693315857,
+ "grad_norm": 0.21411260962486267,
+ "learning_rate": 0.0006,
+ "loss": 3.8861560821533203,
+ "step": 1536
+ },
+ {
+ "epoch": 21.34949759720402,
+ "grad_norm": 0.22635889053344727,
+ "learning_rate": 0.0006,
+ "loss": 3.9174342155456543,
+ "step": 1537
+ },
+ {
+ "epoch": 21.36347750109218,
+ "grad_norm": 0.22700625658035278,
+ "learning_rate": 0.0006,
+ "loss": 3.890416383743286,
+ "step": 1538
+ },
+ {
+ "epoch": 21.37745740498034,
+ "grad_norm": 0.2106025069952011,
+ "learning_rate": 0.0006,
+ "loss": 3.8672406673431396,
+ "step": 1539
+ },
+ {
+ "epoch": 21.3914373088685,
+ "grad_norm": 0.22994661331176758,
+ "learning_rate": 0.0006,
+ "loss": 3.893190383911133,
+ "step": 1540
+ },
+ {
+ "epoch": 21.405417212756664,
+ "grad_norm": 0.24701105058193207,
+ "learning_rate": 0.0006,
+ "loss": 3.898078441619873,
+ "step": 1541
+ },
+ {
+ "epoch": 21.419397116644824,
+ "grad_norm": 0.26914113759994507,
+ "learning_rate": 0.0006,
+ "loss": 3.905871868133545,
+ "step": 1542
+ },
+ {
+ "epoch": 21.433377020532983,
+ "grad_norm": 0.2904224097728729,
+ "learning_rate": 0.0006,
+ "loss": 3.8919103145599365,
+ "step": 1543
+ },
+ {
+ "epoch": 21.447356924421143,
+ "grad_norm": 0.2911844551563263,
+ "learning_rate": 0.0006,
+ "loss": 3.9073286056518555,
+ "step": 1544
+ },
+ {
+ "epoch": 21.461336828309307,
+ "grad_norm": 0.2742345929145813,
+ "learning_rate": 0.0006,
+ "loss": 3.9075546264648438,
+ "step": 1545
+ },
+ {
+ "epoch": 21.475316732197467,
+ "grad_norm": 0.2341093122959137,
+ "learning_rate": 0.0006,
+ "loss": 3.9232025146484375,
+ "step": 1546
+ },
+ {
+ "epoch": 21.489296636085626,
+ "grad_norm": 0.22808541357517242,
+ "learning_rate": 0.0006,
+ "loss": 3.9168174266815186,
+ "step": 1547
+ },
+ {
+ "epoch": 21.503276539973786,
+ "grad_norm": 0.23049889504909515,
+ "learning_rate": 0.0006,
+ "loss": 3.8850595951080322,
+ "step": 1548
+ },
+ {
+ "epoch": 21.51725644386195,
+ "grad_norm": 0.21519650518894196,
+ "learning_rate": 0.0006,
+ "loss": 3.891313076019287,
+ "step": 1549
+ },
+ {
+ "epoch": 21.53123634775011,
+ "grad_norm": 0.20999883115291595,
+ "learning_rate": 0.0006,
+ "loss": 3.894439220428467,
+ "step": 1550
+ },
+ {
+ "epoch": 21.54521625163827,
+ "grad_norm": 0.19641105830669403,
+ "learning_rate": 0.0006,
+ "loss": 3.894871473312378,
+ "step": 1551
+ },
+ {
+ "epoch": 21.55919615552643,
+ "grad_norm": 0.19108249247074127,
+ "learning_rate": 0.0006,
+ "loss": 3.905968189239502,
+ "step": 1552
+ },
+ {
+ "epoch": 21.573176059414592,
+ "grad_norm": 0.20222234725952148,
+ "learning_rate": 0.0006,
+ "loss": 3.90565824508667,
+ "step": 1553
+ },
+ {
+ "epoch": 21.587155963302752,
+ "grad_norm": 0.20620177686214447,
+ "learning_rate": 0.0006,
+ "loss": 3.9103245735168457,
+ "step": 1554
+ },
+ {
+ "epoch": 21.601135867190912,
+ "grad_norm": 0.2149713784456253,
+ "learning_rate": 0.0006,
+ "loss": 3.8864927291870117,
+ "step": 1555
+ },
+ {
+ "epoch": 21.615115771079076,
+ "grad_norm": 0.2354084551334381,
+ "learning_rate": 0.0006,
+ "loss": 3.905095100402832,
+ "step": 1556
+ },
+ {
+ "epoch": 21.629095674967235,
+ "grad_norm": 0.23949941992759705,
+ "learning_rate": 0.0006,
+ "loss": 3.901803493499756,
+ "step": 1557
+ },
+ {
+ "epoch": 21.643075578855395,
+ "grad_norm": 0.22914277017116547,
+ "learning_rate": 0.0006,
+ "loss": 3.876044273376465,
+ "step": 1558
+ },
+ {
+ "epoch": 21.657055482743555,
+ "grad_norm": 0.2363225370645523,
+ "learning_rate": 0.0006,
+ "loss": 3.910841703414917,
+ "step": 1559
+ },
+ {
+ "epoch": 21.67103538663172,
+ "grad_norm": 0.2635626792907715,
+ "learning_rate": 0.0006,
+ "loss": 3.847407579421997,
+ "step": 1560
+ },
+ {
+ "epoch": 21.68501529051988,
+ "grad_norm": 0.2499786615371704,
+ "learning_rate": 0.0006,
+ "loss": 3.8667140007019043,
+ "step": 1561
+ },
+ {
+ "epoch": 21.698995194408038,
+ "grad_norm": 0.21609611809253693,
+ "learning_rate": 0.0006,
+ "loss": 3.895470142364502,
+ "step": 1562
+ },
+ {
+ "epoch": 21.712975098296198,
+ "grad_norm": 0.2466774582862854,
+ "learning_rate": 0.0006,
+ "loss": 3.8853235244750977,
+ "step": 1563
+ },
+ {
+ "epoch": 21.72695500218436,
+ "grad_norm": 0.23791883885860443,
+ "learning_rate": 0.0006,
+ "loss": 3.899418354034424,
+ "step": 1564
+ },
+ {
+ "epoch": 21.74093490607252,
+ "grad_norm": 0.2048920840024948,
+ "learning_rate": 0.0006,
+ "loss": 3.8992419242858887,
+ "step": 1565
+ },
+ {
+ "epoch": 21.75491480996068,
+ "grad_norm": 0.22266621887683868,
+ "learning_rate": 0.0006,
+ "loss": 3.885765552520752,
+ "step": 1566
+ },
+ {
+ "epoch": 21.76889471384884,
+ "grad_norm": 0.2508748769760132,
+ "learning_rate": 0.0006,
+ "loss": 3.8797037601470947,
+ "step": 1567
+ },
+ {
+ "epoch": 21.782874617737004,
+ "grad_norm": 0.27245673537254333,
+ "learning_rate": 0.0006,
+ "loss": 3.8743176460266113,
+ "step": 1568
+ },
+ {
+ "epoch": 21.796854521625164,
+ "grad_norm": 0.25503191351890564,
+ "learning_rate": 0.0006,
+ "loss": 3.868906259536743,
+ "step": 1569
+ },
+ {
+ "epoch": 21.810834425513324,
+ "grad_norm": 0.22984394431114197,
+ "learning_rate": 0.0006,
+ "loss": 3.9051015377044678,
+ "step": 1570
+ },
+ {
+ "epoch": 21.824814329401484,
+ "grad_norm": 0.2411898821592331,
+ "learning_rate": 0.0006,
+ "loss": 3.8911490440368652,
+ "step": 1571
+ },
+ {
+ "epoch": 21.838794233289647,
+ "grad_norm": 0.22609318792819977,
+ "learning_rate": 0.0006,
+ "loss": 3.894839286804199,
+ "step": 1572
+ },
+ {
+ "epoch": 21.852774137177807,
+ "grad_norm": 0.21904583275318146,
+ "learning_rate": 0.0006,
+ "loss": 3.9314537048339844,
+ "step": 1573
+ },
+ {
+ "epoch": 21.866754041065967,
+ "grad_norm": 0.21869723498821259,
+ "learning_rate": 0.0006,
+ "loss": 3.9141433238983154,
+ "step": 1574
+ },
+ {
+ "epoch": 21.88073394495413,
+ "grad_norm": 0.21682019531726837,
+ "learning_rate": 0.0006,
+ "loss": 3.867898464202881,
+ "step": 1575
+ },
+ {
+ "epoch": 21.89471384884229,
+ "grad_norm": 0.2211964726448059,
+ "learning_rate": 0.0006,
+ "loss": 3.8892226219177246,
+ "step": 1576
+ },
+ {
+ "epoch": 21.90869375273045,
+ "grad_norm": 0.2097381353378296,
+ "learning_rate": 0.0006,
+ "loss": 3.9194154739379883,
+ "step": 1577
+ },
+ {
+ "epoch": 21.92267365661861,
+ "grad_norm": 0.21229565143585205,
+ "learning_rate": 0.0006,
+ "loss": 3.924694538116455,
+ "step": 1578
+ },
+ {
+ "epoch": 21.936653560506773,
+ "grad_norm": 0.2186083346605301,
+ "learning_rate": 0.0006,
+ "loss": 3.904440402984619,
+ "step": 1579
+ },
+ {
+ "epoch": 21.950633464394933,
+ "grad_norm": 0.21112321317195892,
+ "learning_rate": 0.0006,
+ "loss": 3.905674934387207,
+ "step": 1580
+ },
+ {
+ "epoch": 21.964613368283093,
+ "grad_norm": 0.20867373049259186,
+ "learning_rate": 0.0006,
+ "loss": 3.8761563301086426,
+ "step": 1581
+ },
+ {
+ "epoch": 21.978593272171253,
+ "grad_norm": 0.21640732884407043,
+ "learning_rate": 0.0006,
+ "loss": 3.871950149536133,
+ "step": 1582
+ },
+ {
+ "epoch": 21.992573176059416,
+ "grad_norm": 0.21920442581176758,
+ "learning_rate": 0.0006,
+ "loss": 3.8853464126586914,
+ "step": 1583
+ },
+ {
+ "epoch": 22.0,
+ "grad_norm": 0.24132665991783142,
+ "learning_rate": 0.0006,
+ "loss": 3.9012184143066406,
+ "step": 1584
+ },
+ {
+ "epoch": 22.0,
+ "eval_loss": 4.108598232269287,
+ "eval_runtime": 44.0434,
+ "eval_samples_per_second": 55.445,
+ "eval_steps_per_second": 3.474,
+ "step": 1584
+ },
+ {
+ "epoch": 22.01397990388816,
+ "grad_norm": 0.21989449858665466,
+ "learning_rate": 0.0006,
+ "loss": 3.8657469749450684,
+ "step": 1585
+ },
+ {
+ "epoch": 22.027959807776323,
+ "grad_norm": 0.20416802167892456,
+ "learning_rate": 0.0006,
+ "loss": 3.8682117462158203,
+ "step": 1586
+ },
+ {
+ "epoch": 22.041939711664483,
+ "grad_norm": 0.20651975274085999,
+ "learning_rate": 0.0006,
+ "loss": 3.8501222133636475,
+ "step": 1587
+ },
+ {
+ "epoch": 22.055919615552643,
+ "grad_norm": 0.22987176477909088,
+ "learning_rate": 0.0006,
+ "loss": 3.8830955028533936,
+ "step": 1588
+ },
+ {
+ "epoch": 22.069899519440803,
+ "grad_norm": 0.23308858275413513,
+ "learning_rate": 0.0006,
+ "loss": 3.8659040927886963,
+ "step": 1589
+ },
+ {
+ "epoch": 22.083879423328966,
+ "grad_norm": 0.2144266963005066,
+ "learning_rate": 0.0006,
+ "loss": 3.8311047554016113,
+ "step": 1590
+ },
+ {
+ "epoch": 22.097859327217126,
+ "grad_norm": 0.2052636295557022,
+ "learning_rate": 0.0006,
+ "loss": 3.8700156211853027,
+ "step": 1591
+ },
+ {
+ "epoch": 22.111839231105286,
+ "grad_norm": 0.22792384028434753,
+ "learning_rate": 0.0006,
+ "loss": 3.8799097537994385,
+ "step": 1592
+ },
+ {
+ "epoch": 22.125819134993446,
+ "grad_norm": 0.2533944249153137,
+ "learning_rate": 0.0006,
+ "loss": 3.874959945678711,
+ "step": 1593
+ },
+ {
+ "epoch": 22.13979903888161,
+ "grad_norm": 0.27126258611679077,
+ "learning_rate": 0.0006,
+ "loss": 3.863774299621582,
+ "step": 1594
+ },
+ {
+ "epoch": 22.15377894276977,
+ "grad_norm": 0.2634040415287018,
+ "learning_rate": 0.0006,
+ "loss": 3.8876869678497314,
+ "step": 1595
+ },
+ {
+ "epoch": 22.16775884665793,
+ "grad_norm": 0.267987459897995,
+ "learning_rate": 0.0006,
+ "loss": 3.871776819229126,
+ "step": 1596
+ },
+ {
+ "epoch": 22.18173875054609,
+ "grad_norm": 0.2972337305545807,
+ "learning_rate": 0.0006,
+ "loss": 3.8453969955444336,
+ "step": 1597
+ },
+ {
+ "epoch": 22.195718654434252,
+ "grad_norm": 0.3012159764766693,
+ "learning_rate": 0.0006,
+ "loss": 3.8774254322052,
+ "step": 1598
+ },
+ {
+ "epoch": 22.209698558322412,
+ "grad_norm": 0.27275875210762024,
+ "learning_rate": 0.0006,
+ "loss": 3.8558950424194336,
+ "step": 1599
+ },
+ {
+ "epoch": 22.22367846221057,
+ "grad_norm": 0.2817993462085724,
+ "learning_rate": 0.0006,
+ "loss": 3.872211217880249,
+ "step": 1600
+ },
+ {
+ "epoch": 22.23765836609873,
+ "grad_norm": 0.28823208808898926,
+ "learning_rate": 0.0006,
+ "loss": 3.847616672515869,
+ "step": 1601
+ },
+ {
+ "epoch": 22.251638269986895,
+ "grad_norm": 0.2646387815475464,
+ "learning_rate": 0.0006,
+ "loss": 3.8993802070617676,
+ "step": 1602
+ },
+ {
+ "epoch": 22.265618173875055,
+ "grad_norm": 0.27664077281951904,
+ "learning_rate": 0.0006,
+ "loss": 3.858553409576416,
+ "step": 1603
+ },
+ {
+ "epoch": 22.279598077763215,
+ "grad_norm": 0.27708905935287476,
+ "learning_rate": 0.0006,
+ "loss": 3.8691039085388184,
+ "step": 1604
+ },
+ {
+ "epoch": 22.293577981651374,
+ "grad_norm": 0.3045521378517151,
+ "learning_rate": 0.0006,
+ "loss": 3.8721439838409424,
+ "step": 1605
+ },
+ {
+ "epoch": 22.307557885539538,
+ "grad_norm": 0.3481914699077606,
+ "learning_rate": 0.0006,
+ "loss": 3.894503593444824,
+ "step": 1606
+ },
+ {
+ "epoch": 22.321537789427698,
+ "grad_norm": 0.3298046588897705,
+ "learning_rate": 0.0006,
+ "loss": 3.8420844078063965,
+ "step": 1607
+ },
+ {
+ "epoch": 22.335517693315857,
+ "grad_norm": 0.24967724084854126,
+ "learning_rate": 0.0006,
+ "loss": 3.8892619609832764,
+ "step": 1608
+ },
+ {
+ "epoch": 22.34949759720402,
+ "grad_norm": 0.22645241022109985,
+ "learning_rate": 0.0006,
+ "loss": 3.873265504837036,
+ "step": 1609
+ },
+ {
+ "epoch": 22.36347750109218,
+ "grad_norm": 0.22813954949378967,
+ "learning_rate": 0.0006,
+ "loss": 3.8658013343811035,
+ "step": 1610
+ },
+ {
+ "epoch": 22.37745740498034,
+ "grad_norm": 0.23825274407863617,
+ "learning_rate": 0.0006,
+ "loss": 3.885456085205078,
+ "step": 1611
+ },
+ {
+ "epoch": 22.3914373088685,
+ "grad_norm": 0.23612336814403534,
+ "learning_rate": 0.0006,
+ "loss": 3.851841449737549,
+ "step": 1612
+ },
+ {
+ "epoch": 22.405417212756664,
+ "grad_norm": 0.23851265013217926,
+ "learning_rate": 0.0006,
+ "loss": 3.8711647987365723,
+ "step": 1613
+ },
+ {
+ "epoch": 22.419397116644824,
+ "grad_norm": 0.22977286577224731,
+ "learning_rate": 0.0006,
+ "loss": 3.848539113998413,
+ "step": 1614
+ },
+ {
+ "epoch": 22.433377020532983,
+ "grad_norm": 0.20970143377780914,
+ "learning_rate": 0.0006,
+ "loss": 3.8709521293640137,
+ "step": 1615
+ },
+ {
+ "epoch": 22.447356924421143,
+ "grad_norm": 0.20714804530143738,
+ "learning_rate": 0.0006,
+ "loss": 3.875060558319092,
+ "step": 1616
+ },
+ {
+ "epoch": 22.461336828309307,
+ "grad_norm": 0.18881355226039886,
+ "learning_rate": 0.0006,
+ "loss": 3.8744640350341797,
+ "step": 1617
+ },
+ {
+ "epoch": 22.475316732197467,
+ "grad_norm": 0.1928759068250656,
+ "learning_rate": 0.0006,
+ "loss": 3.867971420288086,
+ "step": 1618
+ },
+ {
+ "epoch": 22.489296636085626,
+ "grad_norm": 0.18614749610424042,
+ "learning_rate": 0.0006,
+ "loss": 3.8738222122192383,
+ "step": 1619
+ },
+ {
+ "epoch": 22.503276539973786,
+ "grad_norm": 0.18614931404590607,
+ "learning_rate": 0.0006,
+ "loss": 3.8470513820648193,
+ "step": 1620
+ },
+ {
+ "epoch": 22.51725644386195,
+ "grad_norm": 0.17805059254169464,
+ "learning_rate": 0.0006,
+ "loss": 3.866396903991699,
+ "step": 1621
+ },
+ {
+ "epoch": 22.53123634775011,
+ "grad_norm": 0.16941314935684204,
+ "learning_rate": 0.0006,
+ "loss": 3.856832265853882,
+ "step": 1622
+ },
+ {
+ "epoch": 22.54521625163827,
+ "grad_norm": 0.1802310198545456,
+ "learning_rate": 0.0006,
+ "loss": 3.885653018951416,
+ "step": 1623
+ },
+ {
+ "epoch": 22.55919615552643,
+ "grad_norm": 0.1854856163263321,
+ "learning_rate": 0.0006,
+ "loss": 3.8779640197753906,
+ "step": 1624
+ },
+ {
+ "epoch": 22.573176059414592,
+ "grad_norm": 0.18765869736671448,
+ "learning_rate": 0.0006,
+ "loss": 3.8449032306671143,
+ "step": 1625
+ },
+ {
+ "epoch": 22.587155963302752,
+ "grad_norm": 0.1907789707183838,
+ "learning_rate": 0.0006,
+ "loss": 3.863029718399048,
+ "step": 1626
+ },
+ {
+ "epoch": 22.601135867190912,
+ "grad_norm": 0.19285395741462708,
+ "learning_rate": 0.0006,
+ "loss": 3.880145788192749,
+ "step": 1627
+ },
+ {
+ "epoch": 22.615115771079076,
+ "grad_norm": 0.19229751825332642,
+ "learning_rate": 0.0006,
+ "loss": 3.8521225452423096,
+ "step": 1628
+ },
+ {
+ "epoch": 22.629095674967235,
+ "grad_norm": 0.191694438457489,
+ "learning_rate": 0.0006,
+ "loss": 3.899827003479004,
+ "step": 1629
+ },
+ {
+ "epoch": 22.643075578855395,
+ "grad_norm": 0.20143048465251923,
+ "learning_rate": 0.0006,
+ "loss": 3.862064838409424,
+ "step": 1630
+ },
+ {
+ "epoch": 22.657055482743555,
+ "grad_norm": 0.1959840953350067,
+ "learning_rate": 0.0006,
+ "loss": 3.8955392837524414,
+ "step": 1631
+ },
+ {
+ "epoch": 22.67103538663172,
+ "grad_norm": 0.21454884111881256,
+ "learning_rate": 0.0006,
+ "loss": 3.8503167629241943,
+ "step": 1632
+ },
+ {
+ "epoch": 22.68501529051988,
+ "grad_norm": 0.21748484671115875,
+ "learning_rate": 0.0006,
+ "loss": 3.897134304046631,
+ "step": 1633
+ },
+ {
+ "epoch": 22.698995194408038,
+ "grad_norm": 0.21204186975955963,
+ "learning_rate": 0.0006,
+ "loss": 3.9292588233947754,
+ "step": 1634
+ },
+ {
+ "epoch": 22.712975098296198,
+ "grad_norm": 0.2112748771905899,
+ "learning_rate": 0.0006,
+ "loss": 3.89798641204834,
+ "step": 1635
+ },
+ {
+ "epoch": 22.72695500218436,
+ "grad_norm": 0.188576802611351,
+ "learning_rate": 0.0006,
+ "loss": 3.85627818107605,
+ "step": 1636
+ },
+ {
+ "epoch": 22.74093490607252,
+ "grad_norm": 0.17755994200706482,
+ "learning_rate": 0.0006,
+ "loss": 3.8480074405670166,
+ "step": 1637
+ },
+ {
+ "epoch": 22.75491480996068,
+ "grad_norm": 0.18037520349025726,
+ "learning_rate": 0.0006,
+ "loss": 3.8800172805786133,
+ "step": 1638
+ },
+ {
+ "epoch": 22.76889471384884,
+ "grad_norm": 0.19205765426158905,
+ "learning_rate": 0.0006,
+ "loss": 3.8658275604248047,
+ "step": 1639
+ },
+ {
+ "epoch": 22.782874617737004,
+ "grad_norm": 0.21801964938640594,
+ "learning_rate": 0.0006,
+ "loss": 3.8999452590942383,
+ "step": 1640
+ },
+ {
+ "epoch": 22.796854521625164,
+ "grad_norm": 0.23586086928844452,
+ "learning_rate": 0.0006,
+ "loss": 3.8660664558410645,
+ "step": 1641
+ },
+ {
+ "epoch": 22.810834425513324,
+ "grad_norm": 0.22289055585861206,
+ "learning_rate": 0.0006,
+ "loss": 3.86102557182312,
+ "step": 1642
+ },
+ {
+ "epoch": 22.824814329401484,
+ "grad_norm": 0.20695745944976807,
+ "learning_rate": 0.0006,
+ "loss": 3.8336222171783447,
+ "step": 1643
+ },
+ {
+ "epoch": 22.838794233289647,
+ "grad_norm": 0.2157406210899353,
+ "learning_rate": 0.0006,
+ "loss": 3.8923370838165283,
+ "step": 1644
+ },
+ {
+ "epoch": 22.852774137177807,
+ "grad_norm": 0.2326202690601349,
+ "learning_rate": 0.0006,
+ "loss": 3.8841443061828613,
+ "step": 1645
+ },
+ {
+ "epoch": 22.866754041065967,
+ "grad_norm": 0.2228803187608719,
+ "learning_rate": 0.0006,
+ "loss": 3.8791375160217285,
+ "step": 1646
+ },
+ {
+ "epoch": 22.88073394495413,
+ "grad_norm": 0.228999063372612,
+ "learning_rate": 0.0006,
+ "loss": 3.9005866050720215,
+ "step": 1647
+ },
+ {
+ "epoch": 22.89471384884229,
+ "grad_norm": 0.19673815369606018,
+ "learning_rate": 0.0006,
+ "loss": 3.8954291343688965,
+ "step": 1648
+ },
+ {
+ "epoch": 22.90869375273045,
+ "grad_norm": 0.1862584501504898,
+ "learning_rate": 0.0006,
+ "loss": 3.8591439723968506,
+ "step": 1649
+ },
+ {
+ "epoch": 22.92267365661861,
+ "grad_norm": 0.21360838413238525,
+ "learning_rate": 0.0006,
+ "loss": 3.862949848175049,
+ "step": 1650
+ },
+ {
+ "epoch": 22.936653560506773,
+ "grad_norm": 0.22538702189922333,
+ "learning_rate": 0.0006,
+ "loss": 3.8466529846191406,
+ "step": 1651
+ },
+ {
+ "epoch": 22.950633464394933,
+ "grad_norm": 0.21452727913856506,
+ "learning_rate": 0.0006,
+ "loss": 3.890007495880127,
+ "step": 1652
+ },
+ {
+ "epoch": 22.964613368283093,
+ "grad_norm": 0.21283482015132904,
+ "learning_rate": 0.0006,
+ "loss": 3.8820929527282715,
+ "step": 1653
+ },
+ {
+ "epoch": 22.978593272171253,
+ "grad_norm": 0.2035825103521347,
+ "learning_rate": 0.0006,
+ "loss": 3.8663241863250732,
+ "step": 1654
+ },
+ {
+ "epoch": 22.992573176059416,
+ "grad_norm": 0.22431661188602448,
+ "learning_rate": 0.0006,
+ "loss": 3.88238525390625,
+ "step": 1655
+ },
+ {
+ "epoch": 23.0,
+ "grad_norm": 0.2619943916797638,
+ "learning_rate": 0.0006,
+ "loss": 3.8482635021209717,
+ "step": 1656
+ },
+ {
+ "epoch": 23.0,
+ "eval_loss": 4.099980354309082,
+ "eval_runtime": 44.1311,
+ "eval_samples_per_second": 55.335,
+ "eval_steps_per_second": 3.467,
+ "step": 1656
+ },
+ {
+ "epoch": 23.01397990388816,
+ "grad_norm": 0.24712848663330078,
+ "learning_rate": 0.0006,
+ "loss": 3.836700916290283,
+ "step": 1657
+ },
+ {
+ "epoch": 23.027959807776323,
+ "grad_norm": 0.28568798303604126,
+ "learning_rate": 0.0006,
+ "loss": 3.8523952960968018,
+ "step": 1658
+ },
+ {
+ "epoch": 23.041939711664483,
+ "grad_norm": 0.2999744415283203,
+ "learning_rate": 0.0006,
+ "loss": 3.8229494094848633,
+ "step": 1659
+ },
+ {
+ "epoch": 23.055919615552643,
+ "grad_norm": 0.32080450654029846,
+ "learning_rate": 0.0006,
+ "loss": 3.8562774658203125,
+ "step": 1660
+ },
+ {
+ "epoch": 23.069899519440803,
+ "grad_norm": 0.293468177318573,
+ "learning_rate": 0.0006,
+ "loss": 3.889139175415039,
+ "step": 1661
+ },
+ {
+ "epoch": 23.083879423328966,
+ "grad_norm": 0.2605799436569214,
+ "learning_rate": 0.0006,
+ "loss": 3.838681221008301,
+ "step": 1662
+ },
+ {
+ "epoch": 23.097859327217126,
+ "grad_norm": 0.2656237483024597,
+ "learning_rate": 0.0006,
+ "loss": 3.8603532314300537,
+ "step": 1663
+ },
+ {
+ "epoch": 23.111839231105286,
+ "grad_norm": 0.27163293957710266,
+ "learning_rate": 0.0006,
+ "loss": 3.846987009048462,
+ "step": 1664
+ },
+ {
+ "epoch": 23.125819134993446,
+ "grad_norm": 0.2719763517379761,
+ "learning_rate": 0.0006,
+ "loss": 3.805354595184326,
+ "step": 1665
+ },
+ {
+ "epoch": 23.13979903888161,
+ "grad_norm": 0.25786274671554565,
+ "learning_rate": 0.0006,
+ "loss": 3.8486907482147217,
+ "step": 1666
+ },
+ {
+ "epoch": 23.15377894276977,
+ "grad_norm": 0.2675692141056061,
+ "learning_rate": 0.0006,
+ "loss": 3.816493511199951,
+ "step": 1667
+ },
+ {
+ "epoch": 23.16775884665793,
+ "grad_norm": 0.2711698114871979,
+ "learning_rate": 0.0006,
+ "loss": 3.851863384246826,
+ "step": 1668
+ },
+ {
+ "epoch": 23.18173875054609,
+ "grad_norm": 0.2588968873023987,
+ "learning_rate": 0.0006,
+ "loss": 3.860816717147827,
+ "step": 1669
+ },
+ {
+ "epoch": 23.195718654434252,
+ "grad_norm": 0.2458600401878357,
+ "learning_rate": 0.0006,
+ "loss": 3.8058223724365234,
+ "step": 1670
+ },
+ {
+ "epoch": 23.209698558322412,
+ "grad_norm": 0.22014005482196808,
+ "learning_rate": 0.0006,
+ "loss": 3.8686985969543457,
+ "step": 1671
+ },
+ {
+ "epoch": 23.22367846221057,
+ "grad_norm": 0.22450537979602814,
+ "learning_rate": 0.0006,
+ "loss": 3.8379364013671875,
+ "step": 1672
+ },
+ {
+ "epoch": 23.23765836609873,
+ "grad_norm": 0.22132326662540436,
+ "learning_rate": 0.0006,
+ "loss": 3.8873870372772217,
+ "step": 1673
+ },
+ {
+ "epoch": 23.251638269986895,
+ "grad_norm": 0.20994804799556732,
+ "learning_rate": 0.0006,
+ "loss": 3.821415424346924,
+ "step": 1674
+ },
+ {
+ "epoch": 23.265618173875055,
+ "grad_norm": 0.2040853649377823,
+ "learning_rate": 0.0006,
+ "loss": 3.831658124923706,
+ "step": 1675
+ },
+ {
+ "epoch": 23.279598077763215,
+ "grad_norm": 0.20878618955612183,
+ "learning_rate": 0.0006,
+ "loss": 3.838672637939453,
+ "step": 1676
+ },
+ {
+ "epoch": 23.293577981651374,
+ "grad_norm": 0.19974198937416077,
+ "learning_rate": 0.0006,
+ "loss": 3.8442561626434326,
+ "step": 1677
+ },
+ {
+ "epoch": 23.307557885539538,
+ "grad_norm": 0.20523984730243683,
+ "learning_rate": 0.0006,
+ "loss": 3.846139907836914,
+ "step": 1678
+ },
+ {
+ "epoch": 23.321537789427698,
+ "grad_norm": 0.2045847624540329,
+ "learning_rate": 0.0006,
+ "loss": 3.8597474098205566,
+ "step": 1679
+ },
+ {
+ "epoch": 23.335517693315857,
+ "grad_norm": 0.20957441627979279,
+ "learning_rate": 0.0006,
+ "loss": 3.8493881225585938,
+ "step": 1680
+ },
+ {
+ "epoch": 23.34949759720402,
+ "grad_norm": 0.2069379836320877,
+ "learning_rate": 0.0006,
+ "loss": 3.8510046005249023,
+ "step": 1681
+ },
+ {
+ "epoch": 23.36347750109218,
+ "grad_norm": 0.19627872109413147,
+ "learning_rate": 0.0006,
+ "loss": 3.844618320465088,
+ "step": 1682
+ },
+ {
+ "epoch": 23.37745740498034,
+ "grad_norm": 0.19599434733390808,
+ "learning_rate": 0.0006,
+ "loss": 3.8245465755462646,
+ "step": 1683
+ },
+ {
+ "epoch": 23.3914373088685,
+ "grad_norm": 0.2035072147846222,
+ "learning_rate": 0.0006,
+ "loss": 3.854422092437744,
+ "step": 1684
+ },
+ {
+ "epoch": 23.405417212756664,
+ "grad_norm": 0.21836814284324646,
+ "learning_rate": 0.0006,
+ "loss": 3.83512282371521,
+ "step": 1685
+ },
+ {
+ "epoch": 23.419397116644824,
+ "grad_norm": 0.22844630479812622,
+ "learning_rate": 0.0006,
+ "loss": 3.8744301795959473,
+ "step": 1686
+ },
+ {
+ "epoch": 23.433377020532983,
+ "grad_norm": 0.2259359359741211,
+ "learning_rate": 0.0006,
+ "loss": 3.8460323810577393,
+ "step": 1687
+ },
+ {
+ "epoch": 23.447356924421143,
+ "grad_norm": 0.24440120160579681,
+ "learning_rate": 0.0006,
+ "loss": 3.8543787002563477,
+ "step": 1688
+ },
+ {
+ "epoch": 23.461336828309307,
+ "grad_norm": 0.25063708424568176,
+ "learning_rate": 0.0006,
+ "loss": 3.851004123687744,
+ "step": 1689
+ },
+ {
+ "epoch": 23.475316732197467,
+ "grad_norm": 0.25515618920326233,
+ "learning_rate": 0.0006,
+ "loss": 3.8685030937194824,
+ "step": 1690
+ },
+ {
+ "epoch": 23.489296636085626,
+ "grad_norm": 0.23961050808429718,
+ "learning_rate": 0.0006,
+ "loss": 3.866792678833008,
+ "step": 1691
+ },
+ {
+ "epoch": 23.503276539973786,
+ "grad_norm": 0.20880955457687378,
+ "learning_rate": 0.0006,
+ "loss": 3.8416638374328613,
+ "step": 1692
+ },
+ {
+ "epoch": 23.51725644386195,
+ "grad_norm": 0.1989721804857254,
+ "learning_rate": 0.0006,
+ "loss": 3.8608641624450684,
+ "step": 1693
+ },
+ {
+ "epoch": 23.53123634775011,
+ "grad_norm": 0.207577183842659,
+ "learning_rate": 0.0006,
+ "loss": 3.8431811332702637,
+ "step": 1694
+ },
+ {
+ "epoch": 23.54521625163827,
+ "grad_norm": 0.20844359695911407,
+ "learning_rate": 0.0006,
+ "loss": 3.882844924926758,
+ "step": 1695
+ },
+ {
+ "epoch": 23.55919615552643,
+ "grad_norm": 0.22511139512062073,
+ "learning_rate": 0.0006,
+ "loss": 3.866156578063965,
+ "step": 1696
+ },
+ {
+ "epoch": 23.573176059414592,
+ "grad_norm": 0.21648484468460083,
+ "learning_rate": 0.0006,
+ "loss": 3.87117075920105,
+ "step": 1697
+ },
+ {
+ "epoch": 23.587155963302752,
+ "grad_norm": 0.2081802636384964,
+ "learning_rate": 0.0006,
+ "loss": 3.828132152557373,
+ "step": 1698
+ },
+ {
+ "epoch": 23.601135867190912,
+ "grad_norm": 0.2017381489276886,
+ "learning_rate": 0.0006,
+ "loss": 3.839737892150879,
+ "step": 1699
+ },
+ {
+ "epoch": 23.615115771079076,
+ "grad_norm": 0.2025786191225052,
+ "learning_rate": 0.0006,
+ "loss": 3.8787710666656494,
+ "step": 1700
+ },
+ {
+ "epoch": 23.629095674967235,
+ "grad_norm": 0.21394102275371552,
+ "learning_rate": 0.0006,
+ "loss": 3.824047088623047,
+ "step": 1701
+ },
+ {
+ "epoch": 23.643075578855395,
+ "grad_norm": 0.20749174058437347,
+ "learning_rate": 0.0006,
+ "loss": 3.877009153366089,
+ "step": 1702
+ },
+ {
+ "epoch": 23.657055482743555,
+ "grad_norm": 0.2132839858531952,
+ "learning_rate": 0.0006,
+ "loss": 3.844214916229248,
+ "step": 1703
+ },
+ {
+ "epoch": 23.67103538663172,
+ "grad_norm": 0.22408637404441833,
+ "learning_rate": 0.0006,
+ "loss": 3.8570785522460938,
+ "step": 1704
+ },
+ {
+ "epoch": 23.68501529051988,
+ "grad_norm": 0.2275897115468979,
+ "learning_rate": 0.0006,
+ "loss": 3.8599512577056885,
+ "step": 1705
+ },
+ {
+ "epoch": 23.698995194408038,
+ "grad_norm": 0.2230614721775055,
+ "learning_rate": 0.0006,
+ "loss": 3.86374568939209,
+ "step": 1706
+ },
+ {
+ "epoch": 23.712975098296198,
+ "grad_norm": 0.21873739361763,
+ "learning_rate": 0.0006,
+ "loss": 3.8530168533325195,
+ "step": 1707
+ },
+ {
+ "epoch": 23.72695500218436,
+ "grad_norm": 0.24418923258781433,
+ "learning_rate": 0.0006,
+ "loss": 3.8410465717315674,
+ "step": 1708
+ },
+ {
+ "epoch": 23.74093490607252,
+ "grad_norm": 0.24894575774669647,
+ "learning_rate": 0.0006,
+ "loss": 3.8386030197143555,
+ "step": 1709
+ },
+ {
+ "epoch": 23.75491480996068,
+ "grad_norm": 0.221230611205101,
+ "learning_rate": 0.0006,
+ "loss": 3.8116674423217773,
+ "step": 1710
+ },
+ {
+ "epoch": 23.76889471384884,
+ "grad_norm": 0.20560568571090698,
+ "learning_rate": 0.0006,
+ "loss": 3.8634426593780518,
+ "step": 1711
+ },
+ {
+ "epoch": 23.782874617737004,
+ "grad_norm": 0.20450648665428162,
+ "learning_rate": 0.0006,
+ "loss": 3.8690528869628906,
+ "step": 1712
+ },
+ {
+ "epoch": 23.796854521625164,
+ "grad_norm": 0.18996809422969818,
+ "learning_rate": 0.0006,
+ "loss": 3.8484325408935547,
+ "step": 1713
+ },
+ {
+ "epoch": 23.810834425513324,
+ "grad_norm": 0.20165087282657623,
+ "learning_rate": 0.0006,
+ "loss": 3.8823161125183105,
+ "step": 1714
+ },
+ {
+ "epoch": 23.824814329401484,
+ "grad_norm": 0.21149255335330963,
+ "learning_rate": 0.0006,
+ "loss": 3.8833112716674805,
+ "step": 1715
+ },
+ {
+ "epoch": 23.838794233289647,
+ "grad_norm": 0.21254824101924896,
+ "learning_rate": 0.0006,
+ "loss": 3.8414595127105713,
+ "step": 1716
+ },
+ {
+ "epoch": 23.852774137177807,
+ "grad_norm": 0.21313664317131042,
+ "learning_rate": 0.0006,
+ "loss": 3.8732268810272217,
+ "step": 1717
+ },
+ {
+ "epoch": 23.866754041065967,
+ "grad_norm": 0.21635662019252777,
+ "learning_rate": 0.0006,
+ "loss": 3.861222743988037,
+ "step": 1718
+ },
+ {
+ "epoch": 23.88073394495413,
+ "grad_norm": 0.20612190663814545,
+ "learning_rate": 0.0006,
+ "loss": 3.821854591369629,
+ "step": 1719
+ },
+ {
+ "epoch": 23.89471384884229,
+ "grad_norm": 0.1975104659795761,
+ "learning_rate": 0.0006,
+ "loss": 3.8815202713012695,
+ "step": 1720
+ },
+ {
+ "epoch": 23.90869375273045,
+ "grad_norm": 0.20893609523773193,
+ "learning_rate": 0.0006,
+ "loss": 3.8581607341766357,
+ "step": 1721
+ },
+ {
+ "epoch": 23.92267365661861,
+ "grad_norm": 0.2125461846590042,
+ "learning_rate": 0.0006,
+ "loss": 3.839498281478882,
+ "step": 1722
+ },
+ {
+ "epoch": 23.936653560506773,
+ "grad_norm": 0.19985878467559814,
+ "learning_rate": 0.0006,
+ "loss": 3.856555223464966,
+ "step": 1723
+ },
+ {
+ "epoch": 23.950633464394933,
+ "grad_norm": 0.1922348290681839,
+ "learning_rate": 0.0006,
+ "loss": 3.8956782817840576,
+ "step": 1724
+ },
+ {
+ "epoch": 23.964613368283093,
+ "grad_norm": 0.2191949337720871,
+ "learning_rate": 0.0006,
+ "loss": 3.8582406044006348,
+ "step": 1725
+ },
+ {
+ "epoch": 23.978593272171253,
+ "grad_norm": 0.2569248676300049,
+ "learning_rate": 0.0006,
+ "loss": 3.855678081512451,
+ "step": 1726
+ },
+ {
+ "epoch": 23.992573176059416,
+ "grad_norm": 0.2641172409057617,
+ "learning_rate": 0.0006,
+ "loss": 3.8426473140716553,
+ "step": 1727
+ },
+ {
+ "epoch": 24.0,
+ "grad_norm": 0.29637208580970764,
+ "learning_rate": 0.0006,
+ "loss": 3.843040704727173,
+ "step": 1728
+ },
+ {
+ "epoch": 24.0,
+ "eval_loss": 4.075617790222168,
+ "eval_runtime": 43.9795,
+ "eval_samples_per_second": 55.526,
+ "eval_steps_per_second": 3.479,
+ "step": 1728
+ },
+ {
+ "epoch": 24.01397990388816,
+ "grad_norm": 0.2804758548736572,
+ "learning_rate": 0.0006,
+ "loss": 3.819150924682617,
+ "step": 1729
+ },
+ {
+ "epoch": 24.027959807776323,
+ "grad_norm": 0.2796347141265869,
+ "learning_rate": 0.0006,
+ "loss": 3.8400537967681885,
+ "step": 1730
+ },
+ {
+ "epoch": 24.041939711664483,
+ "grad_norm": 0.28388649225234985,
+ "learning_rate": 0.0006,
+ "loss": 3.844595432281494,
+ "step": 1731
+ },
+ {
+ "epoch": 24.055919615552643,
+ "grad_norm": 0.2944681942462921,
+ "learning_rate": 0.0006,
+ "loss": 3.8048014640808105,
+ "step": 1732
+ },
+ {
+ "epoch": 24.069899519440803,
+ "grad_norm": 0.2956784665584564,
+ "learning_rate": 0.0006,
+ "loss": 3.8488049507141113,
+ "step": 1733
+ },
+ {
+ "epoch": 24.083879423328966,
+ "grad_norm": 0.2822059392929077,
+ "learning_rate": 0.0006,
+ "loss": 3.850322723388672,
+ "step": 1734
+ },
+ {
+ "epoch": 24.097859327217126,
+ "grad_norm": 0.3012927174568176,
+ "learning_rate": 0.0006,
+ "loss": 3.8748154640197754,
+ "step": 1735
+ },
+ {
+ "epoch": 24.111839231105286,
+ "grad_norm": 0.28868764638900757,
+ "learning_rate": 0.0006,
+ "loss": 3.8282783031463623,
+ "step": 1736
+ },
+ {
+ "epoch": 24.125819134993446,
+ "grad_norm": 0.277203768491745,
+ "learning_rate": 0.0006,
+ "loss": 3.8462908267974854,
+ "step": 1737
+ },
+ {
+ "epoch": 24.13979903888161,
+ "grad_norm": 0.2654508948326111,
+ "learning_rate": 0.0006,
+ "loss": 3.8043856620788574,
+ "step": 1738
+ },
+ {
+ "epoch": 24.15377894276977,
+ "grad_norm": 0.24425740540027618,
+ "learning_rate": 0.0006,
+ "loss": 3.8284308910369873,
+ "step": 1739
+ },
+ {
+ "epoch": 24.16775884665793,
+ "grad_norm": 0.24407348036766052,
+ "learning_rate": 0.0006,
+ "loss": 3.8489203453063965,
+ "step": 1740
+ },
+ {
+ "epoch": 24.18173875054609,
+ "grad_norm": 0.2387724369764328,
+ "learning_rate": 0.0006,
+ "loss": 3.8240389823913574,
+ "step": 1741
+ },
+ {
+ "epoch": 24.195718654434252,
+ "grad_norm": 0.2832290232181549,
+ "learning_rate": 0.0006,
+ "loss": 3.869053363800049,
+ "step": 1742
+ },
+ {
+ "epoch": 24.209698558322412,
+ "grad_norm": 0.26501718163490295,
+ "learning_rate": 0.0006,
+ "loss": 3.8624343872070312,
+ "step": 1743
+ },
+ {
+ "epoch": 24.22367846221057,
+ "grad_norm": 0.24234668910503387,
+ "learning_rate": 0.0006,
+ "loss": 3.823103904724121,
+ "step": 1744
+ },
+ {
+ "epoch": 24.23765836609873,
+ "grad_norm": 0.24160076677799225,
+ "learning_rate": 0.0006,
+ "loss": 3.8174376487731934,
+ "step": 1745
+ },
+ {
+ "epoch": 24.251638269986895,
+ "grad_norm": 0.2447604238986969,
+ "learning_rate": 0.0006,
+ "loss": 3.8345441818237305,
+ "step": 1746
+ },
+ {
+ "epoch": 24.265618173875055,
+ "grad_norm": 0.22864456474781036,
+ "learning_rate": 0.0006,
+ "loss": 3.833101272583008,
+ "step": 1747
+ },
+ {
+ "epoch": 24.279598077763215,
+ "grad_norm": 0.20429204404354095,
+ "learning_rate": 0.0006,
+ "loss": 3.8055219650268555,
+ "step": 1748
+ },
+ {
+ "epoch": 24.293577981651374,
+ "grad_norm": 0.21538510918617249,
+ "learning_rate": 0.0006,
+ "loss": 3.7929327487945557,
+ "step": 1749
+ },
+ {
+ "epoch": 24.307557885539538,
+ "grad_norm": 0.2189008593559265,
+ "learning_rate": 0.0006,
+ "loss": 3.852264881134033,
+ "step": 1750
+ },
+ {
+ "epoch": 24.321537789427698,
+ "grad_norm": 0.2228662073612213,
+ "learning_rate": 0.0006,
+ "loss": 3.831088066101074,
+ "step": 1751
+ },
+ {
+ "epoch": 24.335517693315857,
+ "grad_norm": 0.2039937973022461,
+ "learning_rate": 0.0006,
+ "loss": 3.8358256816864014,
+ "step": 1752
+ },
+ {
+ "epoch": 24.34949759720402,
+ "grad_norm": 0.19247715175151825,
+ "learning_rate": 0.0006,
+ "loss": 3.8077402114868164,
+ "step": 1753
+ },
+ {
+ "epoch": 24.36347750109218,
+ "grad_norm": 0.18301935493946075,
+ "learning_rate": 0.0006,
+ "loss": 3.81380033493042,
+ "step": 1754
+ },
+ {
+ "epoch": 24.37745740498034,
+ "grad_norm": 0.19325268268585205,
+ "learning_rate": 0.0006,
+ "loss": 3.8447322845458984,
+ "step": 1755
+ },
+ {
+ "epoch": 24.3914373088685,
+ "grad_norm": 0.2007269263267517,
+ "learning_rate": 0.0006,
+ "loss": 3.82779860496521,
+ "step": 1756
+ },
+ {
+ "epoch": 24.405417212756664,
+ "grad_norm": 0.20567037165164948,
+ "learning_rate": 0.0006,
+ "loss": 3.800354480743408,
+ "step": 1757
+ },
+ {
+ "epoch": 24.419397116644824,
+ "grad_norm": 0.22553028166294098,
+ "learning_rate": 0.0006,
+ "loss": 3.7910406589508057,
+ "step": 1758
+ },
+ {
+ "epoch": 24.433377020532983,
+ "grad_norm": 0.22697079181671143,
+ "learning_rate": 0.0006,
+ "loss": 3.857635974884033,
+ "step": 1759
+ },
+ {
+ "epoch": 24.447356924421143,
+ "grad_norm": 0.22090297937393188,
+ "learning_rate": 0.0006,
+ "loss": 3.8112804889678955,
+ "step": 1760
+ },
+ {
+ "epoch": 24.461336828309307,
+ "grad_norm": 0.24325518310070038,
+ "learning_rate": 0.0006,
+ "loss": 3.822084426879883,
+ "step": 1761
+ },
+ {
+ "epoch": 24.475316732197467,
+ "grad_norm": 0.2702929377555847,
+ "learning_rate": 0.0006,
+ "loss": 3.8307600021362305,
+ "step": 1762
+ },
+ {
+ "epoch": 24.489296636085626,
+ "grad_norm": 0.2699742317199707,
+ "learning_rate": 0.0006,
+ "loss": 3.8479247093200684,
+ "step": 1763
+ },
+ {
+ "epoch": 24.503276539973786,
+ "grad_norm": 0.2526061236858368,
+ "learning_rate": 0.0006,
+ "loss": 3.8615071773529053,
+ "step": 1764
+ },
+ {
+ "epoch": 24.51725644386195,
+ "grad_norm": 0.2633848190307617,
+ "learning_rate": 0.0006,
+ "loss": 3.8412697315216064,
+ "step": 1765
+ },
+ {
+ "epoch": 24.53123634775011,
+ "grad_norm": 0.2711184024810791,
+ "learning_rate": 0.0006,
+ "loss": 3.83647084236145,
+ "step": 1766
+ },
+ {
+ "epoch": 24.54521625163827,
+ "grad_norm": 0.2691243588924408,
+ "learning_rate": 0.0006,
+ "loss": 3.8489012718200684,
+ "step": 1767
+ },
+ {
+ "epoch": 24.55919615552643,
+ "grad_norm": 0.2580898404121399,
+ "learning_rate": 0.0006,
+ "loss": 3.8464407920837402,
+ "step": 1768
+ },
+ {
+ "epoch": 24.573176059414592,
+ "grad_norm": 0.21342119574546814,
+ "learning_rate": 0.0006,
+ "loss": 3.8279383182525635,
+ "step": 1769
+ },
+ {
+ "epoch": 24.587155963302752,
+ "grad_norm": 0.22102399170398712,
+ "learning_rate": 0.0006,
+ "loss": 3.841676712036133,
+ "step": 1770
+ },
+ {
+ "epoch": 24.601135867190912,
+ "grad_norm": 0.2882173955440521,
+ "learning_rate": 0.0006,
+ "loss": 3.825528383255005,
+ "step": 1771
+ },
+ {
+ "epoch": 24.615115771079076,
+ "grad_norm": 0.3403635323047638,
+ "learning_rate": 0.0006,
+ "loss": 3.8282246589660645,
+ "step": 1772
+ },
+ {
+ "epoch": 24.629095674967235,
+ "grad_norm": 0.32192692160606384,
+ "learning_rate": 0.0006,
+ "loss": 3.8411307334899902,
+ "step": 1773
+ },
+ {
+ "epoch": 24.643075578855395,
+ "grad_norm": 0.2534109055995941,
+ "learning_rate": 0.0006,
+ "loss": 3.843007802963257,
+ "step": 1774
+ },
+ {
+ "epoch": 24.657055482743555,
+ "grad_norm": 0.25483962893486023,
+ "learning_rate": 0.0006,
+ "loss": 3.848358154296875,
+ "step": 1775
+ },
+ {
+ "epoch": 24.67103538663172,
+ "grad_norm": 0.25175443291664124,
+ "learning_rate": 0.0006,
+ "loss": 3.8232598304748535,
+ "step": 1776
+ },
+ {
+ "epoch": 24.68501529051988,
+ "grad_norm": 0.20538510382175446,
+ "learning_rate": 0.0006,
+ "loss": 3.857635498046875,
+ "step": 1777
+ },
+ {
+ "epoch": 24.698995194408038,
+ "grad_norm": 0.240861177444458,
+ "learning_rate": 0.0006,
+ "loss": 3.83717679977417,
+ "step": 1778
+ },
+ {
+ "epoch": 24.712975098296198,
+ "grad_norm": 0.23646967113018036,
+ "learning_rate": 0.0006,
+ "loss": 3.81032133102417,
+ "step": 1779
+ },
+ {
+ "epoch": 24.72695500218436,
+ "grad_norm": 0.2164423167705536,
+ "learning_rate": 0.0006,
+ "loss": 3.807878255844116,
+ "step": 1780
+ },
+ {
+ "epoch": 24.74093490607252,
+ "grad_norm": 0.21160705387592316,
+ "learning_rate": 0.0006,
+ "loss": 3.870394468307495,
+ "step": 1781
+ },
+ {
+ "epoch": 24.75491480996068,
+ "grad_norm": 0.20284807682037354,
+ "learning_rate": 0.0006,
+ "loss": 3.842154026031494,
+ "step": 1782
+ },
+ {
+ "epoch": 24.76889471384884,
+ "grad_norm": 0.20738485455513,
+ "learning_rate": 0.0006,
+ "loss": 3.8347136974334717,
+ "step": 1783
+ },
+ {
+ "epoch": 24.782874617737004,
+ "grad_norm": 0.20253778994083405,
+ "learning_rate": 0.0006,
+ "loss": 3.814948320388794,
+ "step": 1784
+ },
+ {
+ "epoch": 24.796854521625164,
+ "grad_norm": 0.20567010343074799,
+ "learning_rate": 0.0006,
+ "loss": 3.8354592323303223,
+ "step": 1785
+ },
+ {
+ "epoch": 24.810834425513324,
+ "grad_norm": 0.20639720559120178,
+ "learning_rate": 0.0006,
+ "loss": 3.8336033821105957,
+ "step": 1786
+ },
+ {
+ "epoch": 24.824814329401484,
+ "grad_norm": 0.19978247582912445,
+ "learning_rate": 0.0006,
+ "loss": 3.8209140300750732,
+ "step": 1787
+ },
+ {
+ "epoch": 24.838794233289647,
+ "grad_norm": 0.20628373324871063,
+ "learning_rate": 0.0006,
+ "loss": 3.8372955322265625,
+ "step": 1788
+ },
+ {
+ "epoch": 24.852774137177807,
+ "grad_norm": 0.2266162782907486,
+ "learning_rate": 0.0006,
+ "loss": 3.850994110107422,
+ "step": 1789
+ },
+ {
+ "epoch": 24.866754041065967,
+ "grad_norm": 0.22567765414714813,
+ "learning_rate": 0.0006,
+ "loss": 3.8552165031433105,
+ "step": 1790
+ },
+ {
+ "epoch": 24.88073394495413,
+ "grad_norm": 0.228011354804039,
+ "learning_rate": 0.0006,
+ "loss": 3.8310747146606445,
+ "step": 1791
+ },
+ {
+ "epoch": 24.89471384884229,
+ "grad_norm": 0.23706914484500885,
+ "learning_rate": 0.0006,
+ "loss": 3.8369603157043457,
+ "step": 1792
+ },
+ {
+ "epoch": 24.90869375273045,
+ "grad_norm": 0.22669097781181335,
+ "learning_rate": 0.0006,
+ "loss": 3.8443825244903564,
+ "step": 1793
+ },
+ {
+ "epoch": 24.92267365661861,
+ "grad_norm": 0.2051001936197281,
+ "learning_rate": 0.0006,
+ "loss": 3.7938501834869385,
+ "step": 1794
+ },
+ {
+ "epoch": 24.936653560506773,
+ "grad_norm": 0.2091219276189804,
+ "learning_rate": 0.0006,
+ "loss": 3.8167076110839844,
+ "step": 1795
+ },
+ {
+ "epoch": 24.950633464394933,
+ "grad_norm": 0.20517204701900482,
+ "learning_rate": 0.0006,
+ "loss": 3.852670669555664,
+ "step": 1796
+ },
+ {
+ "epoch": 24.964613368283093,
+ "grad_norm": 0.19916993379592896,
+ "learning_rate": 0.0006,
+ "loss": 3.8410873413085938,
+ "step": 1797
+ },
+ {
+ "epoch": 24.978593272171253,
+ "grad_norm": 0.21313942968845367,
+ "learning_rate": 0.0006,
+ "loss": 3.8383948802948,
+ "step": 1798
+ },
+ {
+ "epoch": 24.992573176059416,
+ "grad_norm": 0.21042990684509277,
+ "learning_rate": 0.0006,
+ "loss": 3.8623173236846924,
+ "step": 1799
+ },
+ {
+ "epoch": 25.0,
+ "grad_norm": 0.23052045702934265,
+ "learning_rate": 0.0006,
+ "loss": 3.8646674156188965,
+ "step": 1800
+ },
+ {
+ "epoch": 25.0,
+ "eval_loss": 4.081690311431885,
+ "eval_runtime": 44.036,
+ "eval_samples_per_second": 55.455,
+ "eval_steps_per_second": 3.474,
+ "step": 1800
+ },
+ {
+ "epoch": 25.01397990388816,
+ "grad_norm": 0.22068746387958527,
+ "learning_rate": 0.0006,
+ "loss": 3.8002820014953613,
+ "step": 1801
+ },
+ {
+ "epoch": 25.027959807776323,
+ "grad_norm": 0.20711193978786469,
+ "learning_rate": 0.0006,
+ "loss": 3.787785768508911,
+ "step": 1802
+ },
+ {
+ "epoch": 25.041939711664483,
+ "grad_norm": 0.20659677684307098,
+ "learning_rate": 0.0006,
+ "loss": 3.80245304107666,
+ "step": 1803
+ },
+ {
+ "epoch": 25.055919615552643,
+ "grad_norm": 0.22891797125339508,
+ "learning_rate": 0.0006,
+ "loss": 3.784543514251709,
+ "step": 1804
+ },
+ {
+ "epoch": 25.069899519440803,
+ "grad_norm": 0.23679181933403015,
+ "learning_rate": 0.0006,
+ "loss": 3.8311429023742676,
+ "step": 1805
+ },
+ {
+ "epoch": 25.083879423328966,
+ "grad_norm": 0.2548872232437134,
+ "learning_rate": 0.0006,
+ "loss": 3.8047211170196533,
+ "step": 1806
+ },
+ {
+ "epoch": 25.097859327217126,
+ "grad_norm": 0.26181501150131226,
+ "learning_rate": 0.0006,
+ "loss": 3.837508201599121,
+ "step": 1807
+ },
+ {
+ "epoch": 25.111839231105286,
+ "grad_norm": 0.2548452913761139,
+ "learning_rate": 0.0006,
+ "loss": 3.831544876098633,
+ "step": 1808
+ },
+ {
+ "epoch": 25.125819134993446,
+ "grad_norm": 0.26177605986595154,
+ "learning_rate": 0.0006,
+ "loss": 3.805346965789795,
+ "step": 1809
+ },
+ {
+ "epoch": 25.13979903888161,
+ "grad_norm": 0.2608112394809723,
+ "learning_rate": 0.0006,
+ "loss": 3.8040924072265625,
+ "step": 1810
+ },
+ {
+ "epoch": 25.15377894276977,
+ "grad_norm": 0.2586037814617157,
+ "learning_rate": 0.0006,
+ "loss": 3.8102216720581055,
+ "step": 1811
+ },
+ {
+ "epoch": 25.16775884665793,
+ "grad_norm": 0.26258161664009094,
+ "learning_rate": 0.0006,
+ "loss": 3.8152549266815186,
+ "step": 1812
+ },
+ {
+ "epoch": 25.18173875054609,
+ "grad_norm": 0.2803022265434265,
+ "learning_rate": 0.0006,
+ "loss": 3.82576584815979,
+ "step": 1813
+ },
+ {
+ "epoch": 25.195718654434252,
+ "grad_norm": 0.2618221938610077,
+ "learning_rate": 0.0006,
+ "loss": 3.817220687866211,
+ "step": 1814
+ },
+ {
+ "epoch": 25.209698558322412,
+ "grad_norm": 0.23283469676971436,
+ "learning_rate": 0.0006,
+ "loss": 3.7999041080474854,
+ "step": 1815
+ },
+ {
+ "epoch": 25.22367846221057,
+ "grad_norm": 0.20110781490802765,
+ "learning_rate": 0.0006,
+ "loss": 3.783228874206543,
+ "step": 1816
+ },
+ {
+ "epoch": 25.23765836609873,
+ "grad_norm": 0.2231830358505249,
+ "learning_rate": 0.0006,
+ "loss": 3.8032913208007812,
+ "step": 1817
+ },
+ {
+ "epoch": 25.251638269986895,
+ "grad_norm": 0.21807286143302917,
+ "learning_rate": 0.0006,
+ "loss": 3.817028045654297,
+ "step": 1818
+ },
+ {
+ "epoch": 25.265618173875055,
+ "grad_norm": 0.22710664570331573,
+ "learning_rate": 0.0006,
+ "loss": 3.8201727867126465,
+ "step": 1819
+ },
+ {
+ "epoch": 25.279598077763215,
+ "grad_norm": 0.22299866378307343,
+ "learning_rate": 0.0006,
+ "loss": 3.8198719024658203,
+ "step": 1820
+ },
+ {
+ "epoch": 25.293577981651374,
+ "grad_norm": 0.20886564254760742,
+ "learning_rate": 0.0006,
+ "loss": 3.792414665222168,
+ "step": 1821
+ },
+ {
+ "epoch": 25.307557885539538,
+ "grad_norm": 0.20887352526187897,
+ "learning_rate": 0.0006,
+ "loss": 3.7634057998657227,
+ "step": 1822
+ },
+ {
+ "epoch": 25.321537789427698,
+ "grad_norm": 0.24560041725635529,
+ "learning_rate": 0.0006,
+ "loss": 3.79359769821167,
+ "step": 1823
+ },
+ {
+ "epoch": 25.335517693315857,
+ "grad_norm": 0.22767415642738342,
+ "learning_rate": 0.0006,
+ "loss": 3.8313469886779785,
+ "step": 1824
+ },
+ {
+ "epoch": 25.34949759720402,
+ "grad_norm": 0.21617893874645233,
+ "learning_rate": 0.0006,
+ "loss": 3.77200984954834,
+ "step": 1825
+ },
+ {
+ "epoch": 25.36347750109218,
+ "grad_norm": 0.21010833978652954,
+ "learning_rate": 0.0006,
+ "loss": 3.8042140007019043,
+ "step": 1826
+ },
+ {
+ "epoch": 25.37745740498034,
+ "grad_norm": 0.24087965488433838,
+ "learning_rate": 0.0006,
+ "loss": 3.8260979652404785,
+ "step": 1827
+ },
+ {
+ "epoch": 25.3914373088685,
+ "grad_norm": 0.2735275626182556,
+ "learning_rate": 0.0006,
+ "loss": 3.8499274253845215,
+ "step": 1828
+ },
+ {
+ "epoch": 25.405417212756664,
+ "grad_norm": 0.24831001460552216,
+ "learning_rate": 0.0006,
+ "loss": 3.8146448135375977,
+ "step": 1829
+ },
+ {
+ "epoch": 25.419397116644824,
+ "grad_norm": 0.21822866797447205,
+ "learning_rate": 0.0006,
+ "loss": 3.7845146656036377,
+ "step": 1830
+ },
+ {
+ "epoch": 25.433377020532983,
+ "grad_norm": 0.19948813319206238,
+ "learning_rate": 0.0006,
+ "loss": 3.823997974395752,
+ "step": 1831
+ },
+ {
+ "epoch": 25.447356924421143,
+ "grad_norm": 0.18342702090740204,
+ "learning_rate": 0.0006,
+ "loss": 3.8201193809509277,
+ "step": 1832
+ },
+ {
+ "epoch": 25.461336828309307,
+ "grad_norm": 0.19377560913562775,
+ "learning_rate": 0.0006,
+ "loss": 3.8069632053375244,
+ "step": 1833
+ },
+ {
+ "epoch": 25.475316732197467,
+ "grad_norm": 0.22348709404468536,
+ "learning_rate": 0.0006,
+ "loss": 3.7918643951416016,
+ "step": 1834
+ },
+ {
+ "epoch": 25.489296636085626,
+ "grad_norm": 0.24484702944755554,
+ "learning_rate": 0.0006,
+ "loss": 3.85046124458313,
+ "step": 1835
+ },
+ {
+ "epoch": 25.503276539973786,
+ "grad_norm": 0.2493520826101303,
+ "learning_rate": 0.0006,
+ "loss": 3.8043932914733887,
+ "step": 1836
+ },
+ {
+ "epoch": 25.51725644386195,
+ "grad_norm": 0.21509641408920288,
+ "learning_rate": 0.0006,
+ "loss": 3.8064627647399902,
+ "step": 1837
+ },
+ {
+ "epoch": 25.53123634775011,
+ "grad_norm": 0.21912820637226105,
+ "learning_rate": 0.0006,
+ "loss": 3.850588321685791,
+ "step": 1838
+ },
+ {
+ "epoch": 25.54521625163827,
+ "grad_norm": 0.28400927782058716,
+ "learning_rate": 0.0006,
+ "loss": 3.79818058013916,
+ "step": 1839
+ },
+ {
+ "epoch": 25.55919615552643,
+ "grad_norm": 0.32193225622177124,
+ "learning_rate": 0.0006,
+ "loss": 3.836275815963745,
+ "step": 1840
+ },
+ {
+ "epoch": 25.573176059414592,
+ "grad_norm": 0.2902325987815857,
+ "learning_rate": 0.0006,
+ "loss": 3.8080005645751953,
+ "step": 1841
+ },
+ {
+ "epoch": 25.587155963302752,
+ "grad_norm": 0.21759532392024994,
+ "learning_rate": 0.0006,
+ "loss": 3.8233771324157715,
+ "step": 1842
+ },
+ {
+ "epoch": 25.601135867190912,
+ "grad_norm": 0.19645214080810547,
+ "learning_rate": 0.0006,
+ "loss": 3.838881015777588,
+ "step": 1843
+ },
+ {
+ "epoch": 25.615115771079076,
+ "grad_norm": 0.19322903454303741,
+ "learning_rate": 0.0006,
+ "loss": 3.7870054244995117,
+ "step": 1844
+ },
+ {
+ "epoch": 25.629095674967235,
+ "grad_norm": 0.2074001580476761,
+ "learning_rate": 0.0006,
+ "loss": 3.8239974975585938,
+ "step": 1845
+ },
+ {
+ "epoch": 25.643075578855395,
+ "grad_norm": 0.2166101336479187,
+ "learning_rate": 0.0006,
+ "loss": 3.8290855884552,
+ "step": 1846
+ },
+ {
+ "epoch": 25.657055482743555,
+ "grad_norm": 0.23738539218902588,
+ "learning_rate": 0.0006,
+ "loss": 3.7993364334106445,
+ "step": 1847
+ },
+ {
+ "epoch": 25.67103538663172,
+ "grad_norm": 0.23882314562797546,
+ "learning_rate": 0.0006,
+ "loss": 3.802586078643799,
+ "step": 1848
+ },
+ {
+ "epoch": 25.68501529051988,
+ "grad_norm": 0.24168142676353455,
+ "learning_rate": 0.0006,
+ "loss": 3.8303489685058594,
+ "step": 1849
+ },
+ {
+ "epoch": 25.698995194408038,
+ "grad_norm": 0.22423343360424042,
+ "learning_rate": 0.0006,
+ "loss": 3.836228370666504,
+ "step": 1850
+ },
+ {
+ "epoch": 25.712975098296198,
+ "grad_norm": 0.23816974461078644,
+ "learning_rate": 0.0006,
+ "loss": 3.8380274772644043,
+ "step": 1851
+ },
+ {
+ "epoch": 25.72695500218436,
+ "grad_norm": 0.22465108335018158,
+ "learning_rate": 0.0006,
+ "loss": 3.8496339321136475,
+ "step": 1852
+ },
+ {
+ "epoch": 25.74093490607252,
+ "grad_norm": 0.20792442560195923,
+ "learning_rate": 0.0006,
+ "loss": 3.797853946685791,
+ "step": 1853
+ },
+ {
+ "epoch": 25.75491480996068,
+ "grad_norm": 0.20770230889320374,
+ "learning_rate": 0.0006,
+ "loss": 3.842322826385498,
+ "step": 1854
+ },
+ {
+ "epoch": 25.76889471384884,
+ "grad_norm": 0.1928192526102066,
+ "learning_rate": 0.0006,
+ "loss": 3.836540699005127,
+ "step": 1855
+ },
+ {
+ "epoch": 25.782874617737004,
+ "grad_norm": 0.19045178592205048,
+ "learning_rate": 0.0006,
+ "loss": 3.7758889198303223,
+ "step": 1856
+ },
+ {
+ "epoch": 25.796854521625164,
+ "grad_norm": 0.205548495054245,
+ "learning_rate": 0.0006,
+ "loss": 3.8244709968566895,
+ "step": 1857
+ },
+ {
+ "epoch": 25.810834425513324,
+ "grad_norm": 0.20968270301818848,
+ "learning_rate": 0.0006,
+ "loss": 3.8376216888427734,
+ "step": 1858
+ },
+ {
+ "epoch": 25.824814329401484,
+ "grad_norm": 0.18917354941368103,
+ "learning_rate": 0.0006,
+ "loss": 3.8497915267944336,
+ "step": 1859
+ },
+ {
+ "epoch": 25.838794233289647,
+ "grad_norm": 0.2050701528787613,
+ "learning_rate": 0.0006,
+ "loss": 3.819628953933716,
+ "step": 1860
+ },
+ {
+ "epoch": 25.852774137177807,
+ "grad_norm": 0.1981319785118103,
+ "learning_rate": 0.0006,
+ "loss": 3.8007922172546387,
+ "step": 1861
+ },
+ {
+ "epoch": 25.866754041065967,
+ "grad_norm": 0.19055861234664917,
+ "learning_rate": 0.0006,
+ "loss": 3.8304519653320312,
+ "step": 1862
+ },
+ {
+ "epoch": 25.88073394495413,
+ "grad_norm": 0.19255517423152924,
+ "learning_rate": 0.0006,
+ "loss": 3.833280563354492,
+ "step": 1863
+ },
+ {
+ "epoch": 25.89471384884229,
+ "grad_norm": 0.19059430062770844,
+ "learning_rate": 0.0006,
+ "loss": 3.813796281814575,
+ "step": 1864
+ },
+ {
+ "epoch": 25.90869375273045,
+ "grad_norm": 0.18581309914588928,
+ "learning_rate": 0.0006,
+ "loss": 3.8211798667907715,
+ "step": 1865
+ },
+ {
+ "epoch": 25.92267365661861,
+ "grad_norm": 0.20181003212928772,
+ "learning_rate": 0.0006,
+ "loss": 3.8380484580993652,
+ "step": 1866
+ },
+ {
+ "epoch": 25.936653560506773,
+ "grad_norm": 0.22334498167037964,
+ "learning_rate": 0.0006,
+ "loss": 3.8294434547424316,
+ "step": 1867
+ },
+ {
+ "epoch": 25.950633464394933,
+ "grad_norm": 0.20456703007221222,
+ "learning_rate": 0.0006,
+ "loss": 3.819223642349243,
+ "step": 1868
+ },
+ {
+ "epoch": 25.964613368283093,
+ "grad_norm": 0.1885606348514557,
+ "learning_rate": 0.0006,
+ "loss": 3.8110103607177734,
+ "step": 1869
+ },
+ {
+ "epoch": 25.978593272171253,
+ "grad_norm": 0.18862110376358032,
+ "learning_rate": 0.0006,
+ "loss": 3.788691997528076,
+ "step": 1870
+ },
+ {
+ "epoch": 25.992573176059416,
+ "grad_norm": 0.19802744686603546,
+ "learning_rate": 0.0006,
+ "loss": 3.8423619270324707,
+ "step": 1871
+ },
+ {
+ "epoch": 26.0,
+ "grad_norm": 0.23762032389640808,
+ "learning_rate": 0.0006,
+ "loss": 3.7848567962646484,
+ "step": 1872
+ },
+ {
+ "epoch": 26.0,
+ "eval_loss": 4.054965019226074,
+ "eval_runtime": 44.2423,
+ "eval_samples_per_second": 55.196,
+ "eval_steps_per_second": 3.458,
+ "step": 1872
+ },
+ {
+ "epoch": 26.01397990388816,
+ "grad_norm": 0.21533054113388062,
+ "learning_rate": 0.0006,
+ "loss": 3.8123154640197754,
+ "step": 1873
+ },
+ {
+ "epoch": 26.027959807776323,
+ "grad_norm": 0.25094854831695557,
+ "learning_rate": 0.0006,
+ "loss": 3.7847447395324707,
+ "step": 1874
+ },
+ {
+ "epoch": 26.041939711664483,
+ "grad_norm": 0.24042077362537384,
+ "learning_rate": 0.0006,
+ "loss": 3.8033599853515625,
+ "step": 1875
+ },
+ {
+ "epoch": 26.055919615552643,
+ "grad_norm": 0.2425149381160736,
+ "learning_rate": 0.0006,
+ "loss": 3.7828550338745117,
+ "step": 1876
+ },
+ {
+ "epoch": 26.069899519440803,
+ "grad_norm": 0.2300514280796051,
+ "learning_rate": 0.0006,
+ "loss": 3.750882148742676,
+ "step": 1877
+ },
+ {
+ "epoch": 26.083879423328966,
+ "grad_norm": 0.2513943612575531,
+ "learning_rate": 0.0006,
+ "loss": 3.800323963165283,
+ "step": 1878
+ },
+ {
+ "epoch": 26.097859327217126,
+ "grad_norm": 0.2536966800689697,
+ "learning_rate": 0.0006,
+ "loss": 3.8198962211608887,
+ "step": 1879
+ },
+ {
+ "epoch": 26.111839231105286,
+ "grad_norm": 0.24483931064605713,
+ "learning_rate": 0.0006,
+ "loss": 3.825563907623291,
+ "step": 1880
+ },
+ {
+ "epoch": 26.125819134993446,
+ "grad_norm": 0.2502584755420685,
+ "learning_rate": 0.0006,
+ "loss": 3.78756046295166,
+ "step": 1881
+ },
+ {
+ "epoch": 26.13979903888161,
+ "grad_norm": 0.2695745527744293,
+ "learning_rate": 0.0006,
+ "loss": 3.8205409049987793,
+ "step": 1882
+ },
+ {
+ "epoch": 26.15377894276977,
+ "grad_norm": 0.2873472273349762,
+ "learning_rate": 0.0006,
+ "loss": 3.7880778312683105,
+ "step": 1883
+ },
+ {
+ "epoch": 26.16775884665793,
+ "grad_norm": 0.28609949350357056,
+ "learning_rate": 0.0006,
+ "loss": 3.788517951965332,
+ "step": 1884
+ },
+ {
+ "epoch": 26.18173875054609,
+ "grad_norm": 0.28352269530296326,
+ "learning_rate": 0.0006,
+ "loss": 3.778015613555908,
+ "step": 1885
+ },
+ {
+ "epoch": 26.195718654434252,
+ "grad_norm": 0.27055084705352783,
+ "learning_rate": 0.0006,
+ "loss": 3.7857203483581543,
+ "step": 1886
+ },
+ {
+ "epoch": 26.209698558322412,
+ "grad_norm": 0.255647748708725,
+ "learning_rate": 0.0006,
+ "loss": 3.791355609893799,
+ "step": 1887
+ },
+ {
+ "epoch": 26.22367846221057,
+ "grad_norm": 0.22624439001083374,
+ "learning_rate": 0.0006,
+ "loss": 3.7624831199645996,
+ "step": 1888
+ },
+ {
+ "epoch": 26.23765836609873,
+ "grad_norm": 0.2283596396446228,
+ "learning_rate": 0.0006,
+ "loss": 3.8052897453308105,
+ "step": 1889
+ },
+ {
+ "epoch": 26.251638269986895,
+ "grad_norm": 0.2336510866880417,
+ "learning_rate": 0.0006,
+ "loss": 3.789015054702759,
+ "step": 1890
+ },
+ {
+ "epoch": 26.265618173875055,
+ "grad_norm": 0.24107608199119568,
+ "learning_rate": 0.0006,
+ "loss": 3.756551742553711,
+ "step": 1891
+ },
+ {
+ "epoch": 26.279598077763215,
+ "grad_norm": 0.22438564896583557,
+ "learning_rate": 0.0006,
+ "loss": 3.797952651977539,
+ "step": 1892
+ },
+ {
+ "epoch": 26.293577981651374,
+ "grad_norm": 0.24594341218471527,
+ "learning_rate": 0.0006,
+ "loss": 3.7925708293914795,
+ "step": 1893
+ },
+ {
+ "epoch": 26.307557885539538,
+ "grad_norm": 0.23314352333545685,
+ "learning_rate": 0.0006,
+ "loss": 3.792447328567505,
+ "step": 1894
+ },
+ {
+ "epoch": 26.321537789427698,
+ "grad_norm": 0.20870383083820343,
+ "learning_rate": 0.0006,
+ "loss": 3.7888340950012207,
+ "step": 1895
+ },
+ {
+ "epoch": 26.335517693315857,
+ "grad_norm": 0.206504687666893,
+ "learning_rate": 0.0006,
+ "loss": 3.7856602668762207,
+ "step": 1896
+ },
+ {
+ "epoch": 26.34949759720402,
+ "grad_norm": 0.20193266868591309,
+ "learning_rate": 0.0006,
+ "loss": 3.810800552368164,
+ "step": 1897
+ },
+ {
+ "epoch": 26.36347750109218,
+ "grad_norm": 0.2143869698047638,
+ "learning_rate": 0.0006,
+ "loss": 3.818742275238037,
+ "step": 1898
+ },
+ {
+ "epoch": 26.37745740498034,
+ "grad_norm": 0.21388593316078186,
+ "learning_rate": 0.0006,
+ "loss": 3.7576632499694824,
+ "step": 1899
+ },
+ {
+ "epoch": 26.3914373088685,
+ "grad_norm": 0.1933414787054062,
+ "learning_rate": 0.0006,
+ "loss": 3.802579879760742,
+ "step": 1900
+ },
+ {
+ "epoch": 26.405417212756664,
+ "grad_norm": 0.18144549429416656,
+ "learning_rate": 0.0006,
+ "loss": 3.7830452919006348,
+ "step": 1901
+ },
+ {
+ "epoch": 26.419397116644824,
+ "grad_norm": 0.20027601718902588,
+ "learning_rate": 0.0006,
+ "loss": 3.8112521171569824,
+ "step": 1902
+ },
+ {
+ "epoch": 26.433377020532983,
+ "grad_norm": 0.19402910768985748,
+ "learning_rate": 0.0006,
+ "loss": 3.778012990951538,
+ "step": 1903
+ },
+ {
+ "epoch": 26.447356924421143,
+ "grad_norm": 0.19020743668079376,
+ "learning_rate": 0.0006,
+ "loss": 3.823355197906494,
+ "step": 1904
+ },
+ {
+ "epoch": 26.461336828309307,
+ "grad_norm": 0.1885242760181427,
+ "learning_rate": 0.0006,
+ "loss": 3.782108783721924,
+ "step": 1905
+ },
+ {
+ "epoch": 26.475316732197467,
+ "grad_norm": 0.2024235874414444,
+ "learning_rate": 0.0006,
+ "loss": 3.810448408126831,
+ "step": 1906
+ },
+ {
+ "epoch": 26.489296636085626,
+ "grad_norm": 0.21408027410507202,
+ "learning_rate": 0.0006,
+ "loss": 3.8185606002807617,
+ "step": 1907
+ },
+ {
+ "epoch": 26.503276539973786,
+ "grad_norm": 0.22810906171798706,
+ "learning_rate": 0.0006,
+ "loss": 3.8052706718444824,
+ "step": 1908
+ },
+ {
+ "epoch": 26.51725644386195,
+ "grad_norm": 0.21328197419643402,
+ "learning_rate": 0.0006,
+ "loss": 3.7858219146728516,
+ "step": 1909
+ },
+ {
+ "epoch": 26.53123634775011,
+ "grad_norm": 0.20843173563480377,
+ "learning_rate": 0.0006,
+ "loss": 3.8069310188293457,
+ "step": 1910
+ },
+ {
+ "epoch": 26.54521625163827,
+ "grad_norm": 0.2072986662387848,
+ "learning_rate": 0.0006,
+ "loss": 3.794975996017456,
+ "step": 1911
+ },
+ {
+ "epoch": 26.55919615552643,
+ "grad_norm": 0.2203216850757599,
+ "learning_rate": 0.0006,
+ "loss": 3.8070101737976074,
+ "step": 1912
+ },
+ {
+ "epoch": 26.573176059414592,
+ "grad_norm": 0.23449191451072693,
+ "learning_rate": 0.0006,
+ "loss": 3.828695774078369,
+ "step": 1913
+ },
+ {
+ "epoch": 26.587155963302752,
+ "grad_norm": 0.2222008854150772,
+ "learning_rate": 0.0006,
+ "loss": 3.781275749206543,
+ "step": 1914
+ },
+ {
+ "epoch": 26.601135867190912,
+ "grad_norm": 0.22328314185142517,
+ "learning_rate": 0.0006,
+ "loss": 3.7953736782073975,
+ "step": 1915
+ },
+ {
+ "epoch": 26.615115771079076,
+ "grad_norm": 0.2377961128950119,
+ "learning_rate": 0.0006,
+ "loss": 3.8428916931152344,
+ "step": 1916
+ },
+ {
+ "epoch": 26.629095674967235,
+ "grad_norm": 0.2546147108078003,
+ "learning_rate": 0.0006,
+ "loss": 3.7940590381622314,
+ "step": 1917
+ },
+ {
+ "epoch": 26.643075578855395,
+ "grad_norm": 0.24234509468078613,
+ "learning_rate": 0.0006,
+ "loss": 3.802234172821045,
+ "step": 1918
+ },
+ {
+ "epoch": 26.657055482743555,
+ "grad_norm": 0.21294651925563812,
+ "learning_rate": 0.0006,
+ "loss": 3.8159232139587402,
+ "step": 1919
+ },
+ {
+ "epoch": 26.67103538663172,
+ "grad_norm": 0.20008964836597443,
+ "learning_rate": 0.0006,
+ "loss": 3.796949863433838,
+ "step": 1920
+ },
+ {
+ "epoch": 26.68501529051988,
+ "grad_norm": 0.21031023561954498,
+ "learning_rate": 0.0006,
+ "loss": 3.8015570640563965,
+ "step": 1921
+ },
+ {
+ "epoch": 26.698995194408038,
+ "grad_norm": 0.2185603827238083,
+ "learning_rate": 0.0006,
+ "loss": 3.8022537231445312,
+ "step": 1922
+ },
+ {
+ "epoch": 26.712975098296198,
+ "grad_norm": 0.22957198321819305,
+ "learning_rate": 0.0006,
+ "loss": 3.7859907150268555,
+ "step": 1923
+ },
+ {
+ "epoch": 26.72695500218436,
+ "grad_norm": 0.23779156804084778,
+ "learning_rate": 0.0006,
+ "loss": 3.830345630645752,
+ "step": 1924
+ },
+ {
+ "epoch": 26.74093490607252,
+ "grad_norm": 0.23577193915843964,
+ "learning_rate": 0.0006,
+ "loss": 3.777338981628418,
+ "step": 1925
+ },
+ {
+ "epoch": 26.75491480996068,
+ "grad_norm": 0.2521933913230896,
+ "learning_rate": 0.0006,
+ "loss": 3.8215396404266357,
+ "step": 1926
+ },
+ {
+ "epoch": 26.76889471384884,
+ "grad_norm": 0.25050726532936096,
+ "learning_rate": 0.0006,
+ "loss": 3.817509651184082,
+ "step": 1927
+ },
+ {
+ "epoch": 26.782874617737004,
+ "grad_norm": 0.24442453682422638,
+ "learning_rate": 0.0006,
+ "loss": 3.8033013343811035,
+ "step": 1928
+ },
+ {
+ "epoch": 26.796854521625164,
+ "grad_norm": 0.2280828058719635,
+ "learning_rate": 0.0006,
+ "loss": 3.798625946044922,
+ "step": 1929
+ },
+ {
+ "epoch": 26.810834425513324,
+ "grad_norm": 0.23072117567062378,
+ "learning_rate": 0.0006,
+ "loss": 3.8109097480773926,
+ "step": 1930
+ },
+ {
+ "epoch": 26.824814329401484,
+ "grad_norm": 0.2690806984901428,
+ "learning_rate": 0.0006,
+ "loss": 3.7707223892211914,
+ "step": 1931
+ },
+ {
+ "epoch": 26.838794233289647,
+ "grad_norm": 0.24973517656326294,
+ "learning_rate": 0.0006,
+ "loss": 3.7788357734680176,
+ "step": 1932
+ },
+ {
+ "epoch": 26.852774137177807,
+ "grad_norm": 0.24221451580524445,
+ "learning_rate": 0.0006,
+ "loss": 3.8083114624023438,
+ "step": 1933
+ },
+ {
+ "epoch": 26.866754041065967,
+ "grad_norm": 0.23499037325382233,
+ "learning_rate": 0.0006,
+ "loss": 3.845512866973877,
+ "step": 1934
+ },
+ {
+ "epoch": 26.88073394495413,
+ "grad_norm": 0.2172643095254898,
+ "learning_rate": 0.0006,
+ "loss": 3.8171584606170654,
+ "step": 1935
+ },
+ {
+ "epoch": 26.89471384884229,
+ "grad_norm": 0.19935013353824615,
+ "learning_rate": 0.0006,
+ "loss": 3.808596611022949,
+ "step": 1936
+ },
+ {
+ "epoch": 26.90869375273045,
+ "grad_norm": 0.2077745944261551,
+ "learning_rate": 0.0006,
+ "loss": 3.842836856842041,
+ "step": 1937
+ },
+ {
+ "epoch": 26.92267365661861,
+ "grad_norm": 0.20017282664775848,
+ "learning_rate": 0.0006,
+ "loss": 3.791734457015991,
+ "step": 1938
+ },
+ {
+ "epoch": 26.936653560506773,
+ "grad_norm": 0.2082037627696991,
+ "learning_rate": 0.0006,
+ "loss": 3.7987842559814453,
+ "step": 1939
+ },
+ {
+ "epoch": 26.950633464394933,
+ "grad_norm": 0.21100632846355438,
+ "learning_rate": 0.0006,
+ "loss": 3.8033156394958496,
+ "step": 1940
+ },
+ {
+ "epoch": 26.964613368283093,
+ "grad_norm": 0.2091331034898758,
+ "learning_rate": 0.0006,
+ "loss": 3.8250908851623535,
+ "step": 1941
+ },
+ {
+ "epoch": 26.978593272171253,
+ "grad_norm": 0.19728544354438782,
+ "learning_rate": 0.0006,
+ "loss": 3.7934365272521973,
+ "step": 1942
+ },
+ {
+ "epoch": 26.992573176059416,
+ "grad_norm": 0.19266465306282043,
+ "learning_rate": 0.0006,
+ "loss": 3.8095879554748535,
+ "step": 1943
+ },
+ {
+ "epoch": 27.0,
+ "grad_norm": 0.2264554500579834,
+ "learning_rate": 0.0006,
+ "loss": 3.840135335922241,
+ "step": 1944
+ },
+ {
+ "epoch": 27.0,
+ "eval_loss": 4.046233654022217,
+ "eval_runtime": 44.0648,
+ "eval_samples_per_second": 55.418,
+ "eval_steps_per_second": 3.472,
+ "step": 1944
+ },
+ {
+ "epoch": 27.01397990388816,
+ "grad_norm": 0.24101831018924713,
+ "learning_rate": 0.0006,
+ "loss": 3.7463197708129883,
+ "step": 1945
+ },
+ {
+ "epoch": 27.027959807776323,
+ "grad_norm": 0.2917300760746002,
+ "learning_rate": 0.0006,
+ "loss": 3.769083261489868,
+ "step": 1946
+ },
+ {
+ "epoch": 27.041939711664483,
+ "grad_norm": 0.30864080786705017,
+ "learning_rate": 0.0006,
+ "loss": 3.7774248123168945,
+ "step": 1947
+ },
+ {
+ "epoch": 27.055919615552643,
+ "grad_norm": 0.28574317693710327,
+ "learning_rate": 0.0006,
+ "loss": 3.759530544281006,
+ "step": 1948
+ },
+ {
+ "epoch": 27.069899519440803,
+ "grad_norm": 0.23381628096103668,
+ "learning_rate": 0.0006,
+ "loss": 3.764347791671753,
+ "step": 1949
+ },
+ {
+ "epoch": 27.083879423328966,
+ "grad_norm": 0.2717961072921753,
+ "learning_rate": 0.0006,
+ "loss": 3.785306692123413,
+ "step": 1950
+ },
+ {
+ "epoch": 27.097859327217126,
+ "grad_norm": 0.2753375470638275,
+ "learning_rate": 0.0006,
+ "loss": 3.7511696815490723,
+ "step": 1951
+ },
+ {
+ "epoch": 27.111839231105286,
+ "grad_norm": 0.260250061750412,
+ "learning_rate": 0.0006,
+ "loss": 3.7775721549987793,
+ "step": 1952
+ },
+ {
+ "epoch": 27.125819134993446,
+ "grad_norm": 0.2462741732597351,
+ "learning_rate": 0.0006,
+ "loss": 3.775203227996826,
+ "step": 1953
+ },
+ {
+ "epoch": 27.13979903888161,
+ "grad_norm": 0.23599569499492645,
+ "learning_rate": 0.0006,
+ "loss": 3.7580947875976562,
+ "step": 1954
+ },
+ {
+ "epoch": 27.15377894276977,
+ "grad_norm": 0.21749968826770782,
+ "learning_rate": 0.0006,
+ "loss": 3.778254985809326,
+ "step": 1955
+ },
+ {
+ "epoch": 27.16775884665793,
+ "grad_norm": 0.22210343182086945,
+ "learning_rate": 0.0006,
+ "loss": 3.734727144241333,
+ "step": 1956
+ },
+ {
+ "epoch": 27.18173875054609,
+ "grad_norm": 0.23376141488552094,
+ "learning_rate": 0.0006,
+ "loss": 3.7892181873321533,
+ "step": 1957
+ },
+ {
+ "epoch": 27.195718654434252,
+ "grad_norm": 0.21751847863197327,
+ "learning_rate": 0.0006,
+ "loss": 3.801621913909912,
+ "step": 1958
+ },
+ {
+ "epoch": 27.209698558322412,
+ "grad_norm": 0.22995133697986603,
+ "learning_rate": 0.0006,
+ "loss": 3.8031363487243652,
+ "step": 1959
+ },
+ {
+ "epoch": 27.22367846221057,
+ "grad_norm": 0.22716350853443146,
+ "learning_rate": 0.0006,
+ "loss": 3.7591521739959717,
+ "step": 1960
+ },
+ {
+ "epoch": 27.23765836609873,
+ "grad_norm": 0.20819596946239471,
+ "learning_rate": 0.0006,
+ "loss": 3.7988929748535156,
+ "step": 1961
+ },
+ {
+ "epoch": 27.251638269986895,
+ "grad_norm": 0.19861504435539246,
+ "learning_rate": 0.0006,
+ "loss": 3.7752838134765625,
+ "step": 1962
+ },
+ {
+ "epoch": 27.265618173875055,
+ "grad_norm": 0.1959371268749237,
+ "learning_rate": 0.0006,
+ "loss": 3.7707290649414062,
+ "step": 1963
+ },
+ {
+ "epoch": 27.279598077763215,
+ "grad_norm": 0.18772225081920624,
+ "learning_rate": 0.0006,
+ "loss": 3.7714555263519287,
+ "step": 1964
+ },
+ {
+ "epoch": 27.293577981651374,
+ "grad_norm": 0.20839282870292664,
+ "learning_rate": 0.0006,
+ "loss": 3.7857258319854736,
+ "step": 1965
+ },
+ {
+ "epoch": 27.307557885539538,
+ "grad_norm": 0.22521957755088806,
+ "learning_rate": 0.0006,
+ "loss": 3.776909351348877,
+ "step": 1966
+ },
+ {
+ "epoch": 27.321537789427698,
+ "grad_norm": 0.19533076882362366,
+ "learning_rate": 0.0006,
+ "loss": 3.8152523040771484,
+ "step": 1967
+ },
+ {
+ "epoch": 27.335517693315857,
+ "grad_norm": 0.18678881227970123,
+ "learning_rate": 0.0006,
+ "loss": 3.751555919647217,
+ "step": 1968
+ },
+ {
+ "epoch": 27.34949759720402,
+ "grad_norm": 0.18257129192352295,
+ "learning_rate": 0.0006,
+ "loss": 3.7701754570007324,
+ "step": 1969
+ },
+ {
+ "epoch": 27.36347750109218,
+ "grad_norm": 0.18191468715667725,
+ "learning_rate": 0.0006,
+ "loss": 3.817451238632202,
+ "step": 1970
+ },
+ {
+ "epoch": 27.37745740498034,
+ "grad_norm": 0.18665607273578644,
+ "learning_rate": 0.0006,
+ "loss": 3.78645658493042,
+ "step": 1971
+ },
+ {
+ "epoch": 27.3914373088685,
+ "grad_norm": 0.19604510068893433,
+ "learning_rate": 0.0006,
+ "loss": 3.7735626697540283,
+ "step": 1972
+ },
+ {
+ "epoch": 27.405417212756664,
+ "grad_norm": 0.20136640965938568,
+ "learning_rate": 0.0006,
+ "loss": 3.77310848236084,
+ "step": 1973
+ },
+ {
+ "epoch": 27.419397116644824,
+ "grad_norm": 0.19314947724342346,
+ "learning_rate": 0.0006,
+ "loss": 3.8084068298339844,
+ "step": 1974
+ },
+ {
+ "epoch": 27.433377020532983,
+ "grad_norm": 0.20761604607105255,
+ "learning_rate": 0.0006,
+ "loss": 3.80732798576355,
+ "step": 1975
+ },
+ {
+ "epoch": 27.447356924421143,
+ "grad_norm": 0.2239987850189209,
+ "learning_rate": 0.0006,
+ "loss": 3.7950329780578613,
+ "step": 1976
+ },
+ {
+ "epoch": 27.461336828309307,
+ "grad_norm": 0.22146444022655487,
+ "learning_rate": 0.0006,
+ "loss": 3.7957234382629395,
+ "step": 1977
+ },
+ {
+ "epoch": 27.475316732197467,
+ "grad_norm": 0.23218585550785065,
+ "learning_rate": 0.0006,
+ "loss": 3.806377410888672,
+ "step": 1978
+ },
+ {
+ "epoch": 27.489296636085626,
+ "grad_norm": 0.23549026250839233,
+ "learning_rate": 0.0006,
+ "loss": 3.7833383083343506,
+ "step": 1979
+ },
+ {
+ "epoch": 27.503276539973786,
+ "grad_norm": 0.24219457805156708,
+ "learning_rate": 0.0006,
+ "loss": 3.8154187202453613,
+ "step": 1980
+ },
+ {
+ "epoch": 27.51725644386195,
+ "grad_norm": 0.23703953623771667,
+ "learning_rate": 0.0006,
+ "loss": 3.7846405506134033,
+ "step": 1981
+ },
+ {
+ "epoch": 27.53123634775011,
+ "grad_norm": 0.23596109449863434,
+ "learning_rate": 0.0006,
+ "loss": 3.7698163986206055,
+ "step": 1982
+ },
+ {
+ "epoch": 27.54521625163827,
+ "grad_norm": 0.23073506355285645,
+ "learning_rate": 0.0006,
+ "loss": 3.8114185333251953,
+ "step": 1983
+ },
+ {
+ "epoch": 27.55919615552643,
+ "grad_norm": 0.24761143326759338,
+ "learning_rate": 0.0006,
+ "loss": 3.7548117637634277,
+ "step": 1984
+ },
+ {
+ "epoch": 27.573176059414592,
+ "grad_norm": 0.2834068238735199,
+ "learning_rate": 0.0006,
+ "loss": 3.7990212440490723,
+ "step": 1985
+ },
+ {
+ "epoch": 27.587155963302752,
+ "grad_norm": 0.29774922132492065,
+ "learning_rate": 0.0006,
+ "loss": 3.7845072746276855,
+ "step": 1986
+ },
+ {
+ "epoch": 27.601135867190912,
+ "grad_norm": 0.2732089161872864,
+ "learning_rate": 0.0006,
+ "loss": 3.8050694465637207,
+ "step": 1987
+ },
+ {
+ "epoch": 27.615115771079076,
+ "grad_norm": 0.24433180689811707,
+ "learning_rate": 0.0006,
+ "loss": 3.762704372406006,
+ "step": 1988
+ },
+ {
+ "epoch": 27.629095674967235,
+ "grad_norm": 0.21340419352054596,
+ "learning_rate": 0.0006,
+ "loss": 3.826023817062378,
+ "step": 1989
+ },
+ {
+ "epoch": 27.643075578855395,
+ "grad_norm": 0.22518761456012726,
+ "learning_rate": 0.0006,
+ "loss": 3.7823970317840576,
+ "step": 1990
+ },
+ {
+ "epoch": 27.657055482743555,
+ "grad_norm": 0.2196940928697586,
+ "learning_rate": 0.0006,
+ "loss": 3.787463426589966,
+ "step": 1991
+ },
+ {
+ "epoch": 27.67103538663172,
+ "grad_norm": 0.21906471252441406,
+ "learning_rate": 0.0006,
+ "loss": 3.7856104373931885,
+ "step": 1992
+ },
+ {
+ "epoch": 27.68501529051988,
+ "grad_norm": 0.2280956357717514,
+ "learning_rate": 0.0006,
+ "loss": 3.7829794883728027,
+ "step": 1993
+ },
+ {
+ "epoch": 27.698995194408038,
+ "grad_norm": 0.22567005455493927,
+ "learning_rate": 0.0006,
+ "loss": 3.762316942214966,
+ "step": 1994
+ },
+ {
+ "epoch": 27.712975098296198,
+ "grad_norm": 0.21703341603279114,
+ "learning_rate": 0.0006,
+ "loss": 3.772535800933838,
+ "step": 1995
+ },
+ {
+ "epoch": 27.72695500218436,
+ "grad_norm": 0.20586732029914856,
+ "learning_rate": 0.0006,
+ "loss": 3.775930881500244,
+ "step": 1996
+ },
+ {
+ "epoch": 27.74093490607252,
+ "grad_norm": 0.2126319408416748,
+ "learning_rate": 0.0006,
+ "loss": 3.793353796005249,
+ "step": 1997
+ },
+ {
+ "epoch": 27.75491480996068,
+ "grad_norm": 0.19664280116558075,
+ "learning_rate": 0.0006,
+ "loss": 3.7721195220947266,
+ "step": 1998
+ },
+ {
+ "epoch": 27.76889471384884,
+ "grad_norm": 0.17695854604244232,
+ "learning_rate": 0.0006,
+ "loss": 3.7931227684020996,
+ "step": 1999
+ },
+ {
+ "epoch": 27.782874617737004,
+ "grad_norm": 0.1899620145559311,
+ "learning_rate": 0.0006,
+ "loss": 3.798692226409912,
+ "step": 2000
+ },
+ {
+ "epoch": 27.796854521625164,
+ "grad_norm": 0.20334762334823608,
+ "learning_rate": 0.0006,
+ "loss": 3.774670124053955,
+ "step": 2001
+ },
+ {
+ "epoch": 27.810834425513324,
+ "grad_norm": 0.21150588989257812,
+ "learning_rate": 0.0006,
+ "loss": 3.803859233856201,
+ "step": 2002
+ },
+ {
+ "epoch": 27.824814329401484,
+ "grad_norm": 0.20425523817539215,
+ "learning_rate": 0.0006,
+ "loss": 3.810410976409912,
+ "step": 2003
+ },
+ {
+ "epoch": 27.838794233289647,
+ "grad_norm": 0.20468413829803467,
+ "learning_rate": 0.0006,
+ "loss": 3.800917625427246,
+ "step": 2004
+ },
+ {
+ "epoch": 27.852774137177807,
+ "grad_norm": 0.2113286256790161,
+ "learning_rate": 0.0006,
+ "loss": 3.7581989765167236,
+ "step": 2005
+ },
+ {
+ "epoch": 27.866754041065967,
+ "grad_norm": 0.2098054736852646,
+ "learning_rate": 0.0006,
+ "loss": 3.7921502590179443,
+ "step": 2006
+ },
+ {
+ "epoch": 27.88073394495413,
+ "grad_norm": 0.21701586246490479,
+ "learning_rate": 0.0006,
+ "loss": 3.8166770935058594,
+ "step": 2007
+ },
+ {
+ "epoch": 27.89471384884229,
+ "grad_norm": 0.2086625099182129,
+ "learning_rate": 0.0006,
+ "loss": 3.7732229232788086,
+ "step": 2008
+ },
+ {
+ "epoch": 27.90869375273045,
+ "grad_norm": 0.2186812162399292,
+ "learning_rate": 0.0006,
+ "loss": 3.8067402839660645,
+ "step": 2009
+ },
+ {
+ "epoch": 27.92267365661861,
+ "grad_norm": 0.2168985903263092,
+ "learning_rate": 0.0006,
+ "loss": 3.798159122467041,
+ "step": 2010
+ },
+ {
+ "epoch": 27.936653560506773,
+ "grad_norm": 0.23713620007038116,
+ "learning_rate": 0.0006,
+ "loss": 3.7958693504333496,
+ "step": 2011
+ },
+ {
+ "epoch": 27.950633464394933,
+ "grad_norm": 0.23592841625213623,
+ "learning_rate": 0.0006,
+ "loss": 3.795126438140869,
+ "step": 2012
+ },
+ {
+ "epoch": 27.964613368283093,
+ "grad_norm": 0.22210197150707245,
+ "learning_rate": 0.0006,
+ "loss": 3.791013240814209,
+ "step": 2013
+ },
+ {
+ "epoch": 27.978593272171253,
+ "grad_norm": 0.23190008103847504,
+ "learning_rate": 0.0006,
+ "loss": 3.813408374786377,
+ "step": 2014
+ },
+ {
+ "epoch": 27.992573176059416,
+ "grad_norm": 0.22158131003379822,
+ "learning_rate": 0.0006,
+ "loss": 3.7975716590881348,
+ "step": 2015
+ },
+ {
+ "epoch": 28.0,
+ "grad_norm": 0.2300519198179245,
+ "learning_rate": 0.0006,
+ "loss": 3.776214838027954,
+ "step": 2016
+ },
+ {
+ "epoch": 28.0,
+ "eval_loss": 4.04406213760376,
+ "eval_runtime": 44.0285,
+ "eval_samples_per_second": 55.464,
+ "eval_steps_per_second": 3.475,
+ "step": 2016
+ },
+ {
+ "epoch": 28.01397990388816,
+ "grad_norm": 0.21007688343524933,
+ "learning_rate": 0.0006,
+ "loss": 3.7366907596588135,
+ "step": 2017
+ },
+ {
+ "epoch": 28.027959807776323,
+ "grad_norm": 0.1941644549369812,
+ "learning_rate": 0.0006,
+ "loss": 3.744373321533203,
+ "step": 2018
+ },
+ {
+ "epoch": 28.041939711664483,
+ "grad_norm": 0.21308493614196777,
+ "learning_rate": 0.0006,
+ "loss": 3.7650012969970703,
+ "step": 2019
+ },
+ {
+ "epoch": 28.055919615552643,
+ "grad_norm": 0.20114868879318237,
+ "learning_rate": 0.0006,
+ "loss": 3.7652382850646973,
+ "step": 2020
+ },
+ {
+ "epoch": 28.069899519440803,
+ "grad_norm": 0.20266319811344147,
+ "learning_rate": 0.0006,
+ "loss": 3.7710442543029785,
+ "step": 2021
+ },
+ {
+ "epoch": 28.083879423328966,
+ "grad_norm": 0.205102801322937,
+ "learning_rate": 0.0006,
+ "loss": 3.7515463829040527,
+ "step": 2022
+ },
+ {
+ "epoch": 28.097859327217126,
+ "grad_norm": 0.22002041339874268,
+ "learning_rate": 0.0006,
+ "loss": 3.762019157409668,
+ "step": 2023
+ },
+ {
+ "epoch": 28.111839231105286,
+ "grad_norm": 0.2063235342502594,
+ "learning_rate": 0.0006,
+ "loss": 3.765453338623047,
+ "step": 2024
+ },
+ {
+ "epoch": 28.125819134993446,
+ "grad_norm": 0.19145619869232178,
+ "learning_rate": 0.0006,
+ "loss": 3.769411325454712,
+ "step": 2025
+ },
+ {
+ "epoch": 28.13979903888161,
+ "grad_norm": 0.19308455288410187,
+ "learning_rate": 0.0006,
+ "loss": 3.8009989261627197,
+ "step": 2026
+ },
+ {
+ "epoch": 28.15377894276977,
+ "grad_norm": 0.220510333776474,
+ "learning_rate": 0.0006,
+ "loss": 3.7582602500915527,
+ "step": 2027
+ },
+ {
+ "epoch": 28.16775884665793,
+ "grad_norm": 0.22855883836746216,
+ "learning_rate": 0.0006,
+ "loss": 3.803917407989502,
+ "step": 2028
+ },
+ {
+ "epoch": 28.18173875054609,
+ "grad_norm": 0.24206340312957764,
+ "learning_rate": 0.0006,
+ "loss": 3.764101028442383,
+ "step": 2029
+ },
+ {
+ "epoch": 28.195718654434252,
+ "grad_norm": 0.23973612487316132,
+ "learning_rate": 0.0006,
+ "loss": 3.787308931350708,
+ "step": 2030
+ },
+ {
+ "epoch": 28.209698558322412,
+ "grad_norm": 0.21400697529315948,
+ "learning_rate": 0.0006,
+ "loss": 3.7706117630004883,
+ "step": 2031
+ },
+ {
+ "epoch": 28.22367846221057,
+ "grad_norm": 0.21983976662158966,
+ "learning_rate": 0.0006,
+ "loss": 3.772731304168701,
+ "step": 2032
+ },
+ {
+ "epoch": 28.23765836609873,
+ "grad_norm": 0.22427113354206085,
+ "learning_rate": 0.0006,
+ "loss": 3.7724413871765137,
+ "step": 2033
+ },
+ {
+ "epoch": 28.251638269986895,
+ "grad_norm": 0.23665079474449158,
+ "learning_rate": 0.0006,
+ "loss": 3.769845962524414,
+ "step": 2034
+ },
+ {
+ "epoch": 28.265618173875055,
+ "grad_norm": 0.22663180530071259,
+ "learning_rate": 0.0006,
+ "loss": 3.764380931854248,
+ "step": 2035
+ },
+ {
+ "epoch": 28.279598077763215,
+ "grad_norm": 0.21094927191734314,
+ "learning_rate": 0.0006,
+ "loss": 3.7598326206207275,
+ "step": 2036
+ },
+ {
+ "epoch": 28.293577981651374,
+ "grad_norm": 0.20419518649578094,
+ "learning_rate": 0.0006,
+ "loss": 3.7737207412719727,
+ "step": 2037
+ },
+ {
+ "epoch": 28.307557885539538,
+ "grad_norm": 0.2171909660100937,
+ "learning_rate": 0.0006,
+ "loss": 3.7499468326568604,
+ "step": 2038
+ },
+ {
+ "epoch": 28.321537789427698,
+ "grad_norm": 0.22749298810958862,
+ "learning_rate": 0.0006,
+ "loss": 3.767536163330078,
+ "step": 2039
+ },
+ {
+ "epoch": 28.335517693315857,
+ "grad_norm": 0.22821909189224243,
+ "learning_rate": 0.0006,
+ "loss": 3.744386672973633,
+ "step": 2040
+ },
+ {
+ "epoch": 28.34949759720402,
+ "grad_norm": 0.2227880209684372,
+ "learning_rate": 0.0006,
+ "loss": 3.72955322265625,
+ "step": 2041
+ },
+ {
+ "epoch": 28.36347750109218,
+ "grad_norm": 0.22204327583312988,
+ "learning_rate": 0.0006,
+ "loss": 3.793854236602783,
+ "step": 2042
+ },
+ {
+ "epoch": 28.37745740498034,
+ "grad_norm": 0.21621409058570862,
+ "learning_rate": 0.0006,
+ "loss": 3.775379180908203,
+ "step": 2043
+ },
+ {
+ "epoch": 28.3914373088685,
+ "grad_norm": 0.2439221441745758,
+ "learning_rate": 0.0006,
+ "loss": 3.727464199066162,
+ "step": 2044
+ },
+ {
+ "epoch": 28.405417212756664,
+ "grad_norm": 0.24408605694770813,
+ "learning_rate": 0.0006,
+ "loss": 3.761747360229492,
+ "step": 2045
+ },
+ {
+ "epoch": 28.419397116644824,
+ "grad_norm": 0.26118648052215576,
+ "learning_rate": 0.0006,
+ "loss": 3.7587313652038574,
+ "step": 2046
+ },
+ {
+ "epoch": 28.433377020532983,
+ "grad_norm": 0.25948166847229004,
+ "learning_rate": 0.0006,
+ "loss": 3.7698440551757812,
+ "step": 2047
+ },
+ {
+ "epoch": 28.447356924421143,
+ "grad_norm": 0.26413780450820923,
+ "learning_rate": 0.0006,
+ "loss": 3.799107551574707,
+ "step": 2048
+ },
+ {
+ "epoch": 28.461336828309307,
+ "grad_norm": 0.2687148153781891,
+ "learning_rate": 0.0006,
+ "loss": 3.7564382553100586,
+ "step": 2049
+ },
+ {
+ "epoch": 28.475316732197467,
+ "grad_norm": 0.2676694691181183,
+ "learning_rate": 0.0006,
+ "loss": 3.754267692565918,
+ "step": 2050
+ },
+ {
+ "epoch": 28.489296636085626,
+ "grad_norm": 0.27275168895721436,
+ "learning_rate": 0.0006,
+ "loss": 3.802988052368164,
+ "step": 2051
+ },
+ {
+ "epoch": 28.503276539973786,
+ "grad_norm": 0.28783538937568665,
+ "learning_rate": 0.0006,
+ "loss": 3.762540817260742,
+ "step": 2052
+ },
+ {
+ "epoch": 28.51725644386195,
+ "grad_norm": 0.2628997266292572,
+ "learning_rate": 0.0006,
+ "loss": 3.7933349609375,
+ "step": 2053
+ },
+ {
+ "epoch": 28.53123634775011,
+ "grad_norm": 0.2498515099287033,
+ "learning_rate": 0.0006,
+ "loss": 3.7773094177246094,
+ "step": 2054
+ },
+ {
+ "epoch": 28.54521625163827,
+ "grad_norm": 0.22625942528247833,
+ "learning_rate": 0.0006,
+ "loss": 3.803457021713257,
+ "step": 2055
+ },
+ {
+ "epoch": 28.55919615552643,
+ "grad_norm": 0.21488751471042633,
+ "learning_rate": 0.0006,
+ "loss": 3.78924560546875,
+ "step": 2056
+ },
+ {
+ "epoch": 28.573176059414592,
+ "grad_norm": 0.22041267156600952,
+ "learning_rate": 0.0006,
+ "loss": 3.79361629486084,
+ "step": 2057
+ },
+ {
+ "epoch": 28.587155963302752,
+ "grad_norm": 0.23164816200733185,
+ "learning_rate": 0.0006,
+ "loss": 3.735037326812744,
+ "step": 2058
+ },
+ {
+ "epoch": 28.601135867190912,
+ "grad_norm": 0.22371916472911835,
+ "learning_rate": 0.0006,
+ "loss": 3.731417179107666,
+ "step": 2059
+ },
+ {
+ "epoch": 28.615115771079076,
+ "grad_norm": 0.2280314862728119,
+ "learning_rate": 0.0006,
+ "loss": 3.796154499053955,
+ "step": 2060
+ },
+ {
+ "epoch": 28.629095674967235,
+ "grad_norm": 0.21386604011058807,
+ "learning_rate": 0.0006,
+ "loss": 3.778648614883423,
+ "step": 2061
+ },
+ {
+ "epoch": 28.643075578855395,
+ "grad_norm": 0.20433050394058228,
+ "learning_rate": 0.0006,
+ "loss": 3.772826910018921,
+ "step": 2062
+ },
+ {
+ "epoch": 28.657055482743555,
+ "grad_norm": 0.2049262523651123,
+ "learning_rate": 0.0006,
+ "loss": 3.7410364151000977,
+ "step": 2063
+ },
+ {
+ "epoch": 28.67103538663172,
+ "grad_norm": 0.22041259706020355,
+ "learning_rate": 0.0006,
+ "loss": 3.796724319458008,
+ "step": 2064
+ },
+ {
+ "epoch": 28.68501529051988,
+ "grad_norm": 0.2018800675868988,
+ "learning_rate": 0.0006,
+ "loss": 3.775252342224121,
+ "step": 2065
+ },
+ {
+ "epoch": 28.698995194408038,
+ "grad_norm": 0.2159280925989151,
+ "learning_rate": 0.0006,
+ "loss": 3.766021251678467,
+ "step": 2066
+ },
+ {
+ "epoch": 28.712975098296198,
+ "grad_norm": 0.2072775512933731,
+ "learning_rate": 0.0006,
+ "loss": 3.765397548675537,
+ "step": 2067
+ },
+ {
+ "epoch": 28.72695500218436,
+ "grad_norm": 0.19592848420143127,
+ "learning_rate": 0.0006,
+ "loss": 3.8151614665985107,
+ "step": 2068
+ },
+ {
+ "epoch": 28.74093490607252,
+ "grad_norm": 0.19266322255134583,
+ "learning_rate": 0.0006,
+ "loss": 3.774945020675659,
+ "step": 2069
+ },
+ {
+ "epoch": 28.75491480996068,
+ "grad_norm": 0.19442392885684967,
+ "learning_rate": 0.0006,
+ "loss": 3.816283702850342,
+ "step": 2070
+ },
+ {
+ "epoch": 28.76889471384884,
+ "grad_norm": 0.19080746173858643,
+ "learning_rate": 0.0006,
+ "loss": 3.7784247398376465,
+ "step": 2071
+ },
+ {
+ "epoch": 28.782874617737004,
+ "grad_norm": 0.20150451362133026,
+ "learning_rate": 0.0006,
+ "loss": 3.7710249423980713,
+ "step": 2072
+ },
+ {
+ "epoch": 28.796854521625164,
+ "grad_norm": 0.1835816204547882,
+ "learning_rate": 0.0006,
+ "loss": 3.750032901763916,
+ "step": 2073
+ },
+ {
+ "epoch": 28.810834425513324,
+ "grad_norm": 0.1855502873659134,
+ "learning_rate": 0.0006,
+ "loss": 3.7276318073272705,
+ "step": 2074
+ },
+ {
+ "epoch": 28.824814329401484,
+ "grad_norm": 0.18683169782161713,
+ "learning_rate": 0.0006,
+ "loss": 3.7516555786132812,
+ "step": 2075
+ },
+ {
+ "epoch": 28.838794233289647,
+ "grad_norm": 0.2034577578306198,
+ "learning_rate": 0.0006,
+ "loss": 3.749875068664551,
+ "step": 2076
+ },
+ {
+ "epoch": 28.852774137177807,
+ "grad_norm": 0.2234230488538742,
+ "learning_rate": 0.0006,
+ "loss": 3.791429042816162,
+ "step": 2077
+ },
+ {
+ "epoch": 28.866754041065967,
+ "grad_norm": 0.25600525736808777,
+ "learning_rate": 0.0006,
+ "loss": 3.7769298553466797,
+ "step": 2078
+ },
+ {
+ "epoch": 28.88073394495413,
+ "grad_norm": 0.2741529643535614,
+ "learning_rate": 0.0006,
+ "loss": 3.771848201751709,
+ "step": 2079
+ },
+ {
+ "epoch": 28.89471384884229,
+ "grad_norm": 0.2710304260253906,
+ "learning_rate": 0.0006,
+ "loss": 3.8235626220703125,
+ "step": 2080
+ },
+ {
+ "epoch": 28.90869375273045,
+ "grad_norm": 0.25497519969940186,
+ "learning_rate": 0.0006,
+ "loss": 3.811288595199585,
+ "step": 2081
+ },
+ {
+ "epoch": 28.92267365661861,
+ "grad_norm": 0.25689464807510376,
+ "learning_rate": 0.0006,
+ "loss": 3.7848939895629883,
+ "step": 2082
+ },
+ {
+ "epoch": 28.936653560506773,
+ "grad_norm": 0.2794921398162842,
+ "learning_rate": 0.0006,
+ "loss": 3.7836732864379883,
+ "step": 2083
+ },
+ {
+ "epoch": 28.950633464394933,
+ "grad_norm": 0.24730202555656433,
+ "learning_rate": 0.0006,
+ "loss": 3.7703347206115723,
+ "step": 2084
+ },
+ {
+ "epoch": 28.964613368283093,
+ "grad_norm": 0.21078833937644958,
+ "learning_rate": 0.0006,
+ "loss": 3.7521653175354004,
+ "step": 2085
+ },
+ {
+ "epoch": 28.978593272171253,
+ "grad_norm": 0.2188870757818222,
+ "learning_rate": 0.0006,
+ "loss": 3.769604206085205,
+ "step": 2086
+ },
+ {
+ "epoch": 28.992573176059416,
+ "grad_norm": 0.20447929203510284,
+ "learning_rate": 0.0006,
+ "loss": 3.7842764854431152,
+ "step": 2087
+ },
+ {
+ "epoch": 29.0,
+ "grad_norm": 0.21607689559459686,
+ "learning_rate": 0.0006,
+ "loss": 3.7428855895996094,
+ "step": 2088
+ },
+ {
+ "epoch": 29.0,
+ "eval_loss": 4.0355753898620605,
+ "eval_runtime": 44.1435,
+ "eval_samples_per_second": 55.32,
+ "eval_steps_per_second": 3.466,
+ "step": 2088
+ },
+ {
+ "epoch": 29.01397990388816,
+ "grad_norm": 0.21270133554935455,
+ "learning_rate": 0.0006,
+ "loss": 3.7548413276672363,
+ "step": 2089
+ },
+ {
+ "epoch": 29.027959807776323,
+ "grad_norm": 0.21576301753520966,
+ "learning_rate": 0.0006,
+ "loss": 3.754613161087036,
+ "step": 2090
+ },
+ {
+ "epoch": 29.041939711664483,
+ "grad_norm": 0.2162923663854599,
+ "learning_rate": 0.0006,
+ "loss": 3.755772590637207,
+ "step": 2091
+ },
+ {
+ "epoch": 29.055919615552643,
+ "grad_norm": 0.22236663103103638,
+ "learning_rate": 0.0006,
+ "loss": 3.743497848510742,
+ "step": 2092
+ },
+ {
+ "epoch": 29.069899519440803,
+ "grad_norm": 0.2391042858362198,
+ "learning_rate": 0.0006,
+ "loss": 3.749204158782959,
+ "step": 2093
+ },
+ {
+ "epoch": 29.083879423328966,
+ "grad_norm": 0.23387965559959412,
+ "learning_rate": 0.0006,
+ "loss": 3.7286791801452637,
+ "step": 2094
+ },
+ {
+ "epoch": 29.097859327217126,
+ "grad_norm": 0.23677746951580048,
+ "learning_rate": 0.0006,
+ "loss": 3.755279541015625,
+ "step": 2095
+ },
+ {
+ "epoch": 29.111839231105286,
+ "grad_norm": 0.22771087288856506,
+ "learning_rate": 0.0006,
+ "loss": 3.722566604614258,
+ "step": 2096
+ },
+ {
+ "epoch": 29.125819134993446,
+ "grad_norm": 0.2132875621318817,
+ "learning_rate": 0.0006,
+ "loss": 3.748939037322998,
+ "step": 2097
+ },
+ {
+ "epoch": 29.13979903888161,
+ "grad_norm": 0.2033746838569641,
+ "learning_rate": 0.0006,
+ "loss": 3.7393670082092285,
+ "step": 2098
+ },
+ {
+ "epoch": 29.15377894276977,
+ "grad_norm": 0.1997237652540207,
+ "learning_rate": 0.0006,
+ "loss": 3.718498945236206,
+ "step": 2099
+ },
+ {
+ "epoch": 29.16775884665793,
+ "grad_norm": 0.19102543592453003,
+ "learning_rate": 0.0006,
+ "loss": 3.748950719833374,
+ "step": 2100
+ },
+ {
+ "epoch": 29.18173875054609,
+ "grad_norm": 0.19801580905914307,
+ "learning_rate": 0.0006,
+ "loss": 3.7123501300811768,
+ "step": 2101
+ },
+ {
+ "epoch": 29.195718654434252,
+ "grad_norm": 0.20186249911785126,
+ "learning_rate": 0.0006,
+ "loss": 3.7632713317871094,
+ "step": 2102
+ },
+ {
+ "epoch": 29.209698558322412,
+ "grad_norm": 0.22725415229797363,
+ "learning_rate": 0.0006,
+ "loss": 3.753506660461426,
+ "step": 2103
+ },
+ {
+ "epoch": 29.22367846221057,
+ "grad_norm": 0.23138119280338287,
+ "learning_rate": 0.0006,
+ "loss": 3.753282070159912,
+ "step": 2104
+ },
+ {
+ "epoch": 29.23765836609873,
+ "grad_norm": 0.23171944916248322,
+ "learning_rate": 0.0006,
+ "loss": 3.73783540725708,
+ "step": 2105
+ },
+ {
+ "epoch": 29.251638269986895,
+ "grad_norm": 0.2166522741317749,
+ "learning_rate": 0.0006,
+ "loss": 3.778803825378418,
+ "step": 2106
+ },
+ {
+ "epoch": 29.265618173875055,
+ "grad_norm": 0.2009056806564331,
+ "learning_rate": 0.0006,
+ "loss": 3.738290786743164,
+ "step": 2107
+ },
+ {
+ "epoch": 29.279598077763215,
+ "grad_norm": 0.19451597332954407,
+ "learning_rate": 0.0006,
+ "loss": 3.7553348541259766,
+ "step": 2108
+ },
+ {
+ "epoch": 29.293577981651374,
+ "grad_norm": 0.19246742129325867,
+ "learning_rate": 0.0006,
+ "loss": 3.7321622371673584,
+ "step": 2109
+ },
+ {
+ "epoch": 29.307557885539538,
+ "grad_norm": 0.18917441368103027,
+ "learning_rate": 0.0006,
+ "loss": 3.7408928871154785,
+ "step": 2110
+ },
+ {
+ "epoch": 29.321537789427698,
+ "grad_norm": 0.19067776203155518,
+ "learning_rate": 0.0006,
+ "loss": 3.780052900314331,
+ "step": 2111
+ },
+ {
+ "epoch": 29.335517693315857,
+ "grad_norm": 0.18849676847457886,
+ "learning_rate": 0.0006,
+ "loss": 3.749375820159912,
+ "step": 2112
+ },
+ {
+ "epoch": 29.34949759720402,
+ "grad_norm": 0.19713285565376282,
+ "learning_rate": 0.0006,
+ "loss": 3.7128982543945312,
+ "step": 2113
+ },
+ {
+ "epoch": 29.36347750109218,
+ "grad_norm": 0.196336030960083,
+ "learning_rate": 0.0006,
+ "loss": 3.7528390884399414,
+ "step": 2114
+ },
+ {
+ "epoch": 29.37745740498034,
+ "grad_norm": 0.19574350118637085,
+ "learning_rate": 0.0006,
+ "loss": 3.7105777263641357,
+ "step": 2115
+ },
+ {
+ "epoch": 29.3914373088685,
+ "grad_norm": 0.20396539568901062,
+ "learning_rate": 0.0006,
+ "loss": 3.782249927520752,
+ "step": 2116
+ },
+ {
+ "epoch": 29.405417212756664,
+ "grad_norm": 0.24702422320842743,
+ "learning_rate": 0.0006,
+ "loss": 3.7685647010803223,
+ "step": 2117
+ },
+ {
+ "epoch": 29.419397116644824,
+ "grad_norm": 0.2729755640029907,
+ "learning_rate": 0.0006,
+ "loss": 3.7731213569641113,
+ "step": 2118
+ },
+ {
+ "epoch": 29.433377020532983,
+ "grad_norm": 0.29240545630455017,
+ "learning_rate": 0.0006,
+ "loss": 3.770162343978882,
+ "step": 2119
+ },
+ {
+ "epoch": 29.447356924421143,
+ "grad_norm": 0.2469114065170288,
+ "learning_rate": 0.0006,
+ "loss": 3.764681339263916,
+ "step": 2120
+ },
+ {
+ "epoch": 29.461336828309307,
+ "grad_norm": 0.19837401807308197,
+ "learning_rate": 0.0006,
+ "loss": 3.7600088119506836,
+ "step": 2121
+ },
+ {
+ "epoch": 29.475316732197467,
+ "grad_norm": 0.21266621351242065,
+ "learning_rate": 0.0006,
+ "loss": 3.769454002380371,
+ "step": 2122
+ },
+ {
+ "epoch": 29.489296636085626,
+ "grad_norm": 0.25908344984054565,
+ "learning_rate": 0.0006,
+ "loss": 3.7230491638183594,
+ "step": 2123
+ },
+ {
+ "epoch": 29.503276539973786,
+ "grad_norm": 0.2914169728755951,
+ "learning_rate": 0.0006,
+ "loss": 3.767849922180176,
+ "step": 2124
+ },
+ {
+ "epoch": 29.51725644386195,
+ "grad_norm": 0.2796176075935364,
+ "learning_rate": 0.0006,
+ "loss": 3.741734266281128,
+ "step": 2125
+ },
+ {
+ "epoch": 29.53123634775011,
+ "grad_norm": 0.276309996843338,
+ "learning_rate": 0.0006,
+ "loss": 3.8001914024353027,
+ "step": 2126
+ },
+ {
+ "epoch": 29.54521625163827,
+ "grad_norm": 0.26512834429740906,
+ "learning_rate": 0.0006,
+ "loss": 3.7741384506225586,
+ "step": 2127
+ },
+ {
+ "epoch": 29.55919615552643,
+ "grad_norm": 0.26514101028442383,
+ "learning_rate": 0.0006,
+ "loss": 3.7466959953308105,
+ "step": 2128
+ },
+ {
+ "epoch": 29.573176059414592,
+ "grad_norm": 0.24121330678462982,
+ "learning_rate": 0.0006,
+ "loss": 3.759542465209961,
+ "step": 2129
+ },
+ {
+ "epoch": 29.587155963302752,
+ "grad_norm": 0.2264087200164795,
+ "learning_rate": 0.0006,
+ "loss": 3.791344165802002,
+ "step": 2130
+ },
+ {
+ "epoch": 29.601135867190912,
+ "grad_norm": 0.21915403008460999,
+ "learning_rate": 0.0006,
+ "loss": 3.7540485858917236,
+ "step": 2131
+ },
+ {
+ "epoch": 29.615115771079076,
+ "grad_norm": 0.20453961193561554,
+ "learning_rate": 0.0006,
+ "loss": 3.765617609024048,
+ "step": 2132
+ },
+ {
+ "epoch": 29.629095674967235,
+ "grad_norm": 0.2194051444530487,
+ "learning_rate": 0.0006,
+ "loss": 3.7664294242858887,
+ "step": 2133
+ },
+ {
+ "epoch": 29.643075578855395,
+ "grad_norm": 0.21926000714302063,
+ "learning_rate": 0.0006,
+ "loss": 3.7551684379577637,
+ "step": 2134
+ },
+ {
+ "epoch": 29.657055482743555,
+ "grad_norm": 0.20835602283477783,
+ "learning_rate": 0.0006,
+ "loss": 3.7654306888580322,
+ "step": 2135
+ },
+ {
+ "epoch": 29.67103538663172,
+ "grad_norm": 0.23094356060028076,
+ "learning_rate": 0.0006,
+ "loss": 3.7847180366516113,
+ "step": 2136
+ },
+ {
+ "epoch": 29.68501529051988,
+ "grad_norm": 0.23871271312236786,
+ "learning_rate": 0.0006,
+ "loss": 3.789036273956299,
+ "step": 2137
+ },
+ {
+ "epoch": 29.698995194408038,
+ "grad_norm": 0.22263272106647491,
+ "learning_rate": 0.0006,
+ "loss": 3.7677512168884277,
+ "step": 2138
+ },
+ {
+ "epoch": 29.712975098296198,
+ "grad_norm": 0.2293892651796341,
+ "learning_rate": 0.0006,
+ "loss": 3.777097225189209,
+ "step": 2139
+ },
+ {
+ "epoch": 29.72695500218436,
+ "grad_norm": 0.21068568527698517,
+ "learning_rate": 0.0006,
+ "loss": 3.785336494445801,
+ "step": 2140
+ },
+ {
+ "epoch": 29.74093490607252,
+ "grad_norm": 0.19600282609462738,
+ "learning_rate": 0.0006,
+ "loss": 3.7363505363464355,
+ "step": 2141
+ },
+ {
+ "epoch": 29.75491480996068,
+ "grad_norm": 0.20053936541080475,
+ "learning_rate": 0.0006,
+ "loss": 3.753859043121338,
+ "step": 2142
+ },
+ {
+ "epoch": 29.76889471384884,
+ "grad_norm": 0.22790539264678955,
+ "learning_rate": 0.0006,
+ "loss": 3.749492645263672,
+ "step": 2143
+ },
+ {
+ "epoch": 29.782874617737004,
+ "grad_norm": 0.26042407751083374,
+ "learning_rate": 0.0006,
+ "loss": 3.7905430793762207,
+ "step": 2144
+ },
+ {
+ "epoch": 29.796854521625164,
+ "grad_norm": 0.2753683626651764,
+ "learning_rate": 0.0006,
+ "loss": 3.756442070007324,
+ "step": 2145
+ },
+ {
+ "epoch": 29.810834425513324,
+ "grad_norm": 0.2795007526874542,
+ "learning_rate": 0.0006,
+ "loss": 3.7691903114318848,
+ "step": 2146
+ },
+ {
+ "epoch": 29.824814329401484,
+ "grad_norm": 0.2461438924074173,
+ "learning_rate": 0.0006,
+ "loss": 3.7573065757751465,
+ "step": 2147
+ },
+ {
+ "epoch": 29.838794233289647,
+ "grad_norm": 0.21051941812038422,
+ "learning_rate": 0.0006,
+ "loss": 3.7540078163146973,
+ "step": 2148
+ },
+ {
+ "epoch": 29.852774137177807,
+ "grad_norm": 0.197485089302063,
+ "learning_rate": 0.0006,
+ "loss": 3.734403133392334,
+ "step": 2149
+ },
+ {
+ "epoch": 29.866754041065967,
+ "grad_norm": 0.203064426779747,
+ "learning_rate": 0.0006,
+ "loss": 3.7888364791870117,
+ "step": 2150
+ },
+ {
+ "epoch": 29.88073394495413,
+ "grad_norm": 0.2000301480293274,
+ "learning_rate": 0.0006,
+ "loss": 3.7444958686828613,
+ "step": 2151
+ },
+ {
+ "epoch": 29.89471384884229,
+ "grad_norm": 0.20492053031921387,
+ "learning_rate": 0.0006,
+ "loss": 3.7878224849700928,
+ "step": 2152
+ },
+ {
+ "epoch": 29.90869375273045,
+ "grad_norm": 0.22565388679504395,
+ "learning_rate": 0.0006,
+ "loss": 3.7539188861846924,
+ "step": 2153
+ },
+ {
+ "epoch": 29.92267365661861,
+ "grad_norm": 0.20258226990699768,
+ "learning_rate": 0.0006,
+ "loss": 3.7491893768310547,
+ "step": 2154
+ },
+ {
+ "epoch": 29.936653560506773,
+ "grad_norm": 0.20028717815876007,
+ "learning_rate": 0.0006,
+ "loss": 3.7497997283935547,
+ "step": 2155
+ },
+ {
+ "epoch": 29.950633464394933,
+ "grad_norm": 0.2246360331773758,
+ "learning_rate": 0.0006,
+ "loss": 3.773930788040161,
+ "step": 2156
+ },
+ {
+ "epoch": 29.964613368283093,
+ "grad_norm": 0.22432482242584229,
+ "learning_rate": 0.0006,
+ "loss": 3.7926344871520996,
+ "step": 2157
+ },
+ {
+ "epoch": 29.978593272171253,
+ "grad_norm": 0.2165718674659729,
+ "learning_rate": 0.0006,
+ "loss": 3.7436647415161133,
+ "step": 2158
+ },
+ {
+ "epoch": 29.992573176059416,
+ "grad_norm": 0.20629167556762695,
+ "learning_rate": 0.0006,
+ "loss": 3.7619552612304688,
+ "step": 2159
+ },
+ {
+ "epoch": 30.0,
+ "grad_norm": 0.24264708161354065,
+ "learning_rate": 0.0006,
+ "loss": 3.772679328918457,
+ "step": 2160
+ },
+ {
+ "epoch": 30.0,
+ "eval_loss": 4.024484634399414,
+ "eval_runtime": 44.3611,
+ "eval_samples_per_second": 55.048,
+ "eval_steps_per_second": 3.449,
+ "step": 2160
+ },
+ {
+ "epoch": 30.01397990388816,
+ "grad_norm": 0.2373432070016861,
+ "learning_rate": 0.0006,
+ "loss": 3.7423200607299805,
+ "step": 2161
+ },
+ {
+ "epoch": 30.027959807776323,
+ "grad_norm": 0.26835134625434875,
+ "learning_rate": 0.0006,
+ "loss": 3.7215471267700195,
+ "step": 2162
+ },
+ {
+ "epoch": 30.041939711664483,
+ "grad_norm": 0.2743220329284668,
+ "learning_rate": 0.0006,
+ "loss": 3.7190256118774414,
+ "step": 2163
+ },
+ {
+ "epoch": 30.055919615552643,
+ "grad_norm": 0.2292490005493164,
+ "learning_rate": 0.0006,
+ "loss": 3.731855869293213,
+ "step": 2164
+ },
+ {
+ "epoch": 30.069899519440803,
+ "grad_norm": 0.22704607248306274,
+ "learning_rate": 0.0006,
+ "loss": 3.7649693489074707,
+ "step": 2165
+ },
+ {
+ "epoch": 30.083879423328966,
+ "grad_norm": 0.23255930840969086,
+ "learning_rate": 0.0006,
+ "loss": 3.7547781467437744,
+ "step": 2166
+ },
+ {
+ "epoch": 30.097859327217126,
+ "grad_norm": 0.2068684846162796,
+ "learning_rate": 0.0006,
+ "loss": 3.7343382835388184,
+ "step": 2167
+ },
+ {
+ "epoch": 30.111839231105286,
+ "grad_norm": 0.22523464262485504,
+ "learning_rate": 0.0006,
+ "loss": 3.7304530143737793,
+ "step": 2168
+ },
+ {
+ "epoch": 30.125819134993446,
+ "grad_norm": 0.24650199711322784,
+ "learning_rate": 0.0006,
+ "loss": 3.7414379119873047,
+ "step": 2169
+ },
+ {
+ "epoch": 30.13979903888161,
+ "grad_norm": 0.2392522394657135,
+ "learning_rate": 0.0006,
+ "loss": 3.754481792449951,
+ "step": 2170
+ },
+ {
+ "epoch": 30.15377894276977,
+ "grad_norm": 0.21174749732017517,
+ "learning_rate": 0.0006,
+ "loss": 3.7249929904937744,
+ "step": 2171
+ },
+ {
+ "epoch": 30.16775884665793,
+ "grad_norm": 0.20847836136817932,
+ "learning_rate": 0.0006,
+ "loss": 3.7146458625793457,
+ "step": 2172
+ },
+ {
+ "epoch": 30.18173875054609,
+ "grad_norm": 0.22131472826004028,
+ "learning_rate": 0.0006,
+ "loss": 3.7569539546966553,
+ "step": 2173
+ },
+ {
+ "epoch": 30.195718654434252,
+ "grad_norm": 0.23528096079826355,
+ "learning_rate": 0.0006,
+ "loss": 3.743435859680176,
+ "step": 2174
+ },
+ {
+ "epoch": 30.209698558322412,
+ "grad_norm": 0.2382429540157318,
+ "learning_rate": 0.0006,
+ "loss": 3.745307445526123,
+ "step": 2175
+ },
+ {
+ "epoch": 30.22367846221057,
+ "grad_norm": 0.2477114498615265,
+ "learning_rate": 0.0006,
+ "loss": 3.742305278778076,
+ "step": 2176
+ },
+ {
+ "epoch": 30.23765836609873,
+ "grad_norm": 0.24507801234722137,
+ "learning_rate": 0.0006,
+ "loss": 3.733564853668213,
+ "step": 2177
+ },
+ {
+ "epoch": 30.251638269986895,
+ "grad_norm": 0.2266329675912857,
+ "learning_rate": 0.0006,
+ "loss": 3.747429370880127,
+ "step": 2178
+ },
+ {
+ "epoch": 30.265618173875055,
+ "grad_norm": 0.22146396338939667,
+ "learning_rate": 0.0006,
+ "loss": 3.738630533218384,
+ "step": 2179
+ },
+ {
+ "epoch": 30.279598077763215,
+ "grad_norm": 0.20202279090881348,
+ "learning_rate": 0.0006,
+ "loss": 3.74582839012146,
+ "step": 2180
+ },
+ {
+ "epoch": 30.293577981651374,
+ "grad_norm": 0.20591886341571808,
+ "learning_rate": 0.0006,
+ "loss": 3.792062997817993,
+ "step": 2181
+ },
+ {
+ "epoch": 30.307557885539538,
+ "grad_norm": 0.21744129061698914,
+ "learning_rate": 0.0006,
+ "loss": 3.7389049530029297,
+ "step": 2182
+ },
+ {
+ "epoch": 30.321537789427698,
+ "grad_norm": 0.22641272842884064,
+ "learning_rate": 0.0006,
+ "loss": 3.756775140762329,
+ "step": 2183
+ },
+ {
+ "epoch": 30.335517693315857,
+ "grad_norm": 0.22433501482009888,
+ "learning_rate": 0.0006,
+ "loss": 3.764744758605957,
+ "step": 2184
+ },
+ {
+ "epoch": 30.34949759720402,
+ "grad_norm": 0.20184539258480072,
+ "learning_rate": 0.0006,
+ "loss": 3.747469902038574,
+ "step": 2185
+ },
+ {
+ "epoch": 30.36347750109218,
+ "grad_norm": 0.20864923298358917,
+ "learning_rate": 0.0006,
+ "loss": 3.7472925186157227,
+ "step": 2186
+ },
+ {
+ "epoch": 30.37745740498034,
+ "grad_norm": 0.22537396848201752,
+ "learning_rate": 0.0006,
+ "loss": 3.7194581031799316,
+ "step": 2187
+ },
+ {
+ "epoch": 30.3914373088685,
+ "grad_norm": 0.23159919679164886,
+ "learning_rate": 0.0006,
+ "loss": 3.7124292850494385,
+ "step": 2188
+ },
+ {
+ "epoch": 30.405417212756664,
+ "grad_norm": 0.24334494769573212,
+ "learning_rate": 0.0006,
+ "loss": 3.7769203186035156,
+ "step": 2189
+ },
+ {
+ "epoch": 30.419397116644824,
+ "grad_norm": 0.3031228482723236,
+ "learning_rate": 0.0006,
+ "loss": 3.762169361114502,
+ "step": 2190
+ },
+ {
+ "epoch": 30.433377020532983,
+ "grad_norm": 0.29114583134651184,
+ "learning_rate": 0.0006,
+ "loss": 3.76554799079895,
+ "step": 2191
+ },
+ {
+ "epoch": 30.447356924421143,
+ "grad_norm": 0.26824963092803955,
+ "learning_rate": 0.0006,
+ "loss": 3.732962131500244,
+ "step": 2192
+ },
+ {
+ "epoch": 30.461336828309307,
+ "grad_norm": 0.3026561141014099,
+ "learning_rate": 0.0006,
+ "loss": 3.7567975521087646,
+ "step": 2193
+ },
+ {
+ "epoch": 30.475316732197467,
+ "grad_norm": 0.27224525809288025,
+ "learning_rate": 0.0006,
+ "loss": 3.7856051921844482,
+ "step": 2194
+ },
+ {
+ "epoch": 30.489296636085626,
+ "grad_norm": 0.24295508861541748,
+ "learning_rate": 0.0006,
+ "loss": 3.7514901161193848,
+ "step": 2195
+ },
+ {
+ "epoch": 30.503276539973786,
+ "grad_norm": 0.24435290694236755,
+ "learning_rate": 0.0006,
+ "loss": 3.715973138809204,
+ "step": 2196
+ },
+ {
+ "epoch": 30.51725644386195,
+ "grad_norm": 0.2298959195613861,
+ "learning_rate": 0.0006,
+ "loss": 3.7960405349731445,
+ "step": 2197
+ },
+ {
+ "epoch": 30.53123634775011,
+ "grad_norm": 0.20313066244125366,
+ "learning_rate": 0.0006,
+ "loss": 3.7377915382385254,
+ "step": 2198
+ },
+ {
+ "epoch": 30.54521625163827,
+ "grad_norm": 0.2018895149230957,
+ "learning_rate": 0.0006,
+ "loss": 3.6980559825897217,
+ "step": 2199
+ },
+ {
+ "epoch": 30.55919615552643,
+ "grad_norm": 0.20048382878303528,
+ "learning_rate": 0.0006,
+ "loss": 3.7474141120910645,
+ "step": 2200
+ },
+ {
+ "epoch": 30.573176059414592,
+ "grad_norm": 0.19821316003799438,
+ "learning_rate": 0.0006,
+ "loss": 3.7668564319610596,
+ "step": 2201
+ },
+ {
+ "epoch": 30.587155963302752,
+ "grad_norm": 0.21467992663383484,
+ "learning_rate": 0.0006,
+ "loss": 3.7636144161224365,
+ "step": 2202
+ },
+ {
+ "epoch": 30.601135867190912,
+ "grad_norm": 0.20192000269889832,
+ "learning_rate": 0.0006,
+ "loss": 3.745736837387085,
+ "step": 2203
+ },
+ {
+ "epoch": 30.615115771079076,
+ "grad_norm": 0.2078823447227478,
+ "learning_rate": 0.0006,
+ "loss": 3.726665496826172,
+ "step": 2204
+ },
+ {
+ "epoch": 30.629095674967235,
+ "grad_norm": 0.22535845637321472,
+ "learning_rate": 0.0006,
+ "loss": 3.745058059692383,
+ "step": 2205
+ },
+ {
+ "epoch": 30.643075578855395,
+ "grad_norm": 0.22277814149856567,
+ "learning_rate": 0.0006,
+ "loss": 3.7488319873809814,
+ "step": 2206
+ },
+ {
+ "epoch": 30.657055482743555,
+ "grad_norm": 0.20940838754177094,
+ "learning_rate": 0.0006,
+ "loss": 3.7395732402801514,
+ "step": 2207
+ },
+ {
+ "epoch": 30.67103538663172,
+ "grad_norm": 0.21384629607200623,
+ "learning_rate": 0.0006,
+ "loss": 3.7275657653808594,
+ "step": 2208
+ },
+ {
+ "epoch": 30.68501529051988,
+ "grad_norm": 0.18796643614768982,
+ "learning_rate": 0.0006,
+ "loss": 3.743420124053955,
+ "step": 2209
+ },
+ {
+ "epoch": 30.698995194408038,
+ "grad_norm": 0.213258296251297,
+ "learning_rate": 0.0006,
+ "loss": 3.7227492332458496,
+ "step": 2210
+ },
+ {
+ "epoch": 30.712975098296198,
+ "grad_norm": 0.22714753448963165,
+ "learning_rate": 0.0006,
+ "loss": 3.7301113605499268,
+ "step": 2211
+ },
+ {
+ "epoch": 30.72695500218436,
+ "grad_norm": 0.21657656133174896,
+ "learning_rate": 0.0006,
+ "loss": 3.7336206436157227,
+ "step": 2212
+ },
+ {
+ "epoch": 30.74093490607252,
+ "grad_norm": 0.19550828635692596,
+ "learning_rate": 0.0006,
+ "loss": 3.7367351055145264,
+ "step": 2213
+ },
+ {
+ "epoch": 30.75491480996068,
+ "grad_norm": 0.17011769115924835,
+ "learning_rate": 0.0006,
+ "loss": 3.7401928901672363,
+ "step": 2214
+ },
+ {
+ "epoch": 30.76889471384884,
+ "grad_norm": 0.19110196828842163,
+ "learning_rate": 0.0006,
+ "loss": 3.7496562004089355,
+ "step": 2215
+ },
+ {
+ "epoch": 30.782874617737004,
+ "grad_norm": 0.20054543018341064,
+ "learning_rate": 0.0006,
+ "loss": 3.7532992362976074,
+ "step": 2216
+ },
+ {
+ "epoch": 30.796854521625164,
+ "grad_norm": 0.20667670667171478,
+ "learning_rate": 0.0006,
+ "loss": 3.746974468231201,
+ "step": 2217
+ },
+ {
+ "epoch": 30.810834425513324,
+ "grad_norm": 0.19850662350654602,
+ "learning_rate": 0.0006,
+ "loss": 3.7566256523132324,
+ "step": 2218
+ },
+ {
+ "epoch": 30.824814329401484,
+ "grad_norm": 0.19666457176208496,
+ "learning_rate": 0.0006,
+ "loss": 3.7356925010681152,
+ "step": 2219
+ },
+ {
+ "epoch": 30.838794233289647,
+ "grad_norm": 0.20022115111351013,
+ "learning_rate": 0.0006,
+ "loss": 3.768794536590576,
+ "step": 2220
+ },
+ {
+ "epoch": 30.852774137177807,
+ "grad_norm": 0.225278839468956,
+ "learning_rate": 0.0006,
+ "loss": 3.730262279510498,
+ "step": 2221
+ },
+ {
+ "epoch": 30.866754041065967,
+ "grad_norm": 0.2155608832836151,
+ "learning_rate": 0.0006,
+ "loss": 3.758157968521118,
+ "step": 2222
+ },
+ {
+ "epoch": 30.88073394495413,
+ "grad_norm": 0.20914921164512634,
+ "learning_rate": 0.0006,
+ "loss": 3.7290844917297363,
+ "step": 2223
+ },
+ {
+ "epoch": 30.89471384884229,
+ "grad_norm": 0.21579554677009583,
+ "learning_rate": 0.0006,
+ "loss": 3.7666125297546387,
+ "step": 2224
+ },
+ {
+ "epoch": 30.90869375273045,
+ "grad_norm": 0.22606384754180908,
+ "learning_rate": 0.0006,
+ "loss": 3.7396788597106934,
+ "step": 2225
+ },
+ {
+ "epoch": 30.92267365661861,
+ "grad_norm": 0.22218658030033112,
+ "learning_rate": 0.0006,
+ "loss": 3.7363057136535645,
+ "step": 2226
+ },
+ {
+ "epoch": 30.936653560506773,
+ "grad_norm": 0.2107125222682953,
+ "learning_rate": 0.0006,
+ "loss": 3.7402844429016113,
+ "step": 2227
+ },
+ {
+ "epoch": 30.950633464394933,
+ "grad_norm": 0.2143280804157257,
+ "learning_rate": 0.0006,
+ "loss": 3.7715706825256348,
+ "step": 2228
+ },
+ {
+ "epoch": 30.964613368283093,
+ "grad_norm": 0.20918118953704834,
+ "learning_rate": 0.0006,
+ "loss": 3.783510446548462,
+ "step": 2229
+ },
+ {
+ "epoch": 30.978593272171253,
+ "grad_norm": 0.2184133678674698,
+ "learning_rate": 0.0006,
+ "loss": 3.729846954345703,
+ "step": 2230
+ },
+ {
+ "epoch": 30.992573176059416,
+ "grad_norm": 0.20314796268939972,
+ "learning_rate": 0.0006,
+ "loss": 3.753312110900879,
+ "step": 2231
+ },
+ {
+ "epoch": 31.0,
+ "grad_norm": 0.21582408249378204,
+ "learning_rate": 0.0006,
+ "loss": 3.7653090953826904,
+ "step": 2232
+ },
+ {
+ "epoch": 31.0,
+ "eval_loss": 4.030437469482422,
+ "eval_runtime": 43.8529,
+ "eval_samples_per_second": 55.686,
+ "eval_steps_per_second": 3.489,
+ "step": 2232
+ },
+ {
+ "epoch": 31.01397990388816,
+ "grad_norm": 0.214233860373497,
+ "learning_rate": 0.0006,
+ "loss": 3.7179880142211914,
+ "step": 2233
+ },
+ {
+ "epoch": 31.027959807776323,
+ "grad_norm": 0.24621504545211792,
+ "learning_rate": 0.0006,
+ "loss": 3.712569236755371,
+ "step": 2234
+ },
+ {
+ "epoch": 31.041939711664483,
+ "grad_norm": 0.24189279973506927,
+ "learning_rate": 0.0006,
+ "loss": 3.7503058910369873,
+ "step": 2235
+ },
+ {
+ "epoch": 31.055919615552643,
+ "grad_norm": 0.22872278094291687,
+ "learning_rate": 0.0006,
+ "loss": 3.7386386394500732,
+ "step": 2236
+ },
+ {
+ "epoch": 31.069899519440803,
+ "grad_norm": 0.25036823749542236,
+ "learning_rate": 0.0006,
+ "loss": 3.710566997528076,
+ "step": 2237
+ },
+ {
+ "epoch": 31.083879423328966,
+ "grad_norm": 0.2506193220615387,
+ "learning_rate": 0.0006,
+ "loss": 3.7270963191986084,
+ "step": 2238
+ },
+ {
+ "epoch": 31.097859327217126,
+ "grad_norm": 0.24819663166999817,
+ "learning_rate": 0.0006,
+ "loss": 3.716430425643921,
+ "step": 2239
+ },
+ {
+ "epoch": 31.111839231105286,
+ "grad_norm": 0.27226534485816956,
+ "learning_rate": 0.0006,
+ "loss": 3.704428195953369,
+ "step": 2240
+ },
+ {
+ "epoch": 31.125819134993446,
+ "grad_norm": 0.27718204259872437,
+ "learning_rate": 0.0006,
+ "loss": 3.7309701442718506,
+ "step": 2241
+ },
+ {
+ "epoch": 31.13979903888161,
+ "grad_norm": 0.27272021770477295,
+ "learning_rate": 0.0006,
+ "loss": 3.7325143814086914,
+ "step": 2242
+ },
+ {
+ "epoch": 31.15377894276977,
+ "grad_norm": 0.2666020095348358,
+ "learning_rate": 0.0006,
+ "loss": 3.715268611907959,
+ "step": 2243
+ },
+ {
+ "epoch": 31.16775884665793,
+ "grad_norm": 0.258543461561203,
+ "learning_rate": 0.0006,
+ "loss": 3.7336134910583496,
+ "step": 2244
+ },
+ {
+ "epoch": 31.18173875054609,
+ "grad_norm": 0.2528740167617798,
+ "learning_rate": 0.0006,
+ "loss": 3.724491596221924,
+ "step": 2245
+ },
+ {
+ "epoch": 31.195718654434252,
+ "grad_norm": 0.2659667730331421,
+ "learning_rate": 0.0006,
+ "loss": 3.7144742012023926,
+ "step": 2246
+ },
+ {
+ "epoch": 31.209698558322412,
+ "grad_norm": 0.26563164591789246,
+ "learning_rate": 0.0006,
+ "loss": 3.741182327270508,
+ "step": 2247
+ },
+ {
+ "epoch": 31.22367846221057,
+ "grad_norm": 0.26326918601989746,
+ "learning_rate": 0.0006,
+ "loss": 3.7306275367736816,
+ "step": 2248
+ },
+ {
+ "epoch": 31.23765836609873,
+ "grad_norm": 0.23020948469638824,
+ "learning_rate": 0.0006,
+ "loss": 3.7212486267089844,
+ "step": 2249
+ },
+ {
+ "epoch": 31.251638269986895,
+ "grad_norm": 0.21207433938980103,
+ "learning_rate": 0.0006,
+ "loss": 3.6914258003234863,
+ "step": 2250
+ },
+ {
+ "epoch": 31.265618173875055,
+ "grad_norm": 0.2392292022705078,
+ "learning_rate": 0.0006,
+ "loss": 3.7117457389831543,
+ "step": 2251
+ },
+ {
+ "epoch": 31.279598077763215,
+ "grad_norm": 0.22084997594356537,
+ "learning_rate": 0.0006,
+ "loss": 3.728043794631958,
+ "step": 2252
+ },
+ {
+ "epoch": 31.293577981651374,
+ "grad_norm": 0.20818188786506653,
+ "learning_rate": 0.0006,
+ "loss": 3.751762866973877,
+ "step": 2253
+ },
+ {
+ "epoch": 31.307557885539538,
+ "grad_norm": 0.21866194903850555,
+ "learning_rate": 0.0006,
+ "loss": 3.72676420211792,
+ "step": 2254
+ },
+ {
+ "epoch": 31.321537789427698,
+ "grad_norm": 0.20727522671222687,
+ "learning_rate": 0.0006,
+ "loss": 3.735708236694336,
+ "step": 2255
+ },
+ {
+ "epoch": 31.335517693315857,
+ "grad_norm": 0.20655220746994019,
+ "learning_rate": 0.0006,
+ "loss": 3.714116096496582,
+ "step": 2256
+ },
+ {
+ "epoch": 31.34949759720402,
+ "grad_norm": 0.21738854050636292,
+ "learning_rate": 0.0006,
+ "loss": 3.731657028198242,
+ "step": 2257
+ },
+ {
+ "epoch": 31.36347750109218,
+ "grad_norm": 0.20758475363254547,
+ "learning_rate": 0.0006,
+ "loss": 3.7378528118133545,
+ "step": 2258
+ },
+ {
+ "epoch": 31.37745740498034,
+ "grad_norm": 0.20107139647006989,
+ "learning_rate": 0.0006,
+ "loss": 3.748572826385498,
+ "step": 2259
+ },
+ {
+ "epoch": 31.3914373088685,
+ "grad_norm": 0.18707452714443207,
+ "learning_rate": 0.0006,
+ "loss": 3.7237391471862793,
+ "step": 2260
+ },
+ {
+ "epoch": 31.405417212756664,
+ "grad_norm": 0.20745301246643066,
+ "learning_rate": 0.0006,
+ "loss": 3.734435558319092,
+ "step": 2261
+ },
+ {
+ "epoch": 31.419397116644824,
+ "grad_norm": 0.20793399214744568,
+ "learning_rate": 0.0006,
+ "loss": 3.7639012336730957,
+ "step": 2262
+ },
+ {
+ "epoch": 31.433377020532983,
+ "grad_norm": 0.20193757116794586,
+ "learning_rate": 0.0006,
+ "loss": 3.754117727279663,
+ "step": 2263
+ },
+ {
+ "epoch": 31.447356924421143,
+ "grad_norm": 0.1912323236465454,
+ "learning_rate": 0.0006,
+ "loss": 3.728111982345581,
+ "step": 2264
+ },
+ {
+ "epoch": 31.461336828309307,
+ "grad_norm": 0.19441582262516022,
+ "learning_rate": 0.0006,
+ "loss": 3.7533278465270996,
+ "step": 2265
+ },
+ {
+ "epoch": 31.475316732197467,
+ "grad_norm": 0.19807079434394836,
+ "learning_rate": 0.0006,
+ "loss": 3.7351698875427246,
+ "step": 2266
+ },
+ {
+ "epoch": 31.489296636085626,
+ "grad_norm": 0.20373263955116272,
+ "learning_rate": 0.0006,
+ "loss": 3.714097023010254,
+ "step": 2267
+ },
+ {
+ "epoch": 31.503276539973786,
+ "grad_norm": 0.21868768334388733,
+ "learning_rate": 0.0006,
+ "loss": 3.736743688583374,
+ "step": 2268
+ },
+ {
+ "epoch": 31.51725644386195,
+ "grad_norm": 0.20767922699451447,
+ "learning_rate": 0.0006,
+ "loss": 3.7097702026367188,
+ "step": 2269
+ },
+ {
+ "epoch": 31.53123634775011,
+ "grad_norm": 0.18425600230693817,
+ "learning_rate": 0.0006,
+ "loss": 3.7349140644073486,
+ "step": 2270
+ },
+ {
+ "epoch": 31.54521625163827,
+ "grad_norm": 0.18813826143741608,
+ "learning_rate": 0.0006,
+ "loss": 3.7023448944091797,
+ "step": 2271
+ },
+ {
+ "epoch": 31.55919615552643,
+ "grad_norm": 0.1892116516828537,
+ "learning_rate": 0.0006,
+ "loss": 3.7170143127441406,
+ "step": 2272
+ },
+ {
+ "epoch": 31.573176059414592,
+ "grad_norm": 0.2067834585905075,
+ "learning_rate": 0.0006,
+ "loss": 3.7312588691711426,
+ "step": 2273
+ },
+ {
+ "epoch": 31.587155963302752,
+ "grad_norm": 0.204023078083992,
+ "learning_rate": 0.0006,
+ "loss": 3.7399091720581055,
+ "step": 2274
+ },
+ {
+ "epoch": 31.601135867190912,
+ "grad_norm": 0.20245152711868286,
+ "learning_rate": 0.0006,
+ "loss": 3.7259416580200195,
+ "step": 2275
+ },
+ {
+ "epoch": 31.615115771079076,
+ "grad_norm": 0.21125490963459015,
+ "learning_rate": 0.0006,
+ "loss": 3.7217836380004883,
+ "step": 2276
+ },
+ {
+ "epoch": 31.629095674967235,
+ "grad_norm": 0.2093241959810257,
+ "learning_rate": 0.0006,
+ "loss": 3.707627773284912,
+ "step": 2277
+ },
+ {
+ "epoch": 31.643075578855395,
+ "grad_norm": 0.19290480017662048,
+ "learning_rate": 0.0006,
+ "loss": 3.7467126846313477,
+ "step": 2278
+ },
+ {
+ "epoch": 31.657055482743555,
+ "grad_norm": 0.1853940635919571,
+ "learning_rate": 0.0006,
+ "loss": 3.7565581798553467,
+ "step": 2279
+ },
+ {
+ "epoch": 31.67103538663172,
+ "grad_norm": 0.18917642533779144,
+ "learning_rate": 0.0006,
+ "loss": 3.7286229133605957,
+ "step": 2280
+ },
+ {
+ "epoch": 31.68501529051988,
+ "grad_norm": 0.2094079703092575,
+ "learning_rate": 0.0006,
+ "loss": 3.7297096252441406,
+ "step": 2281
+ },
+ {
+ "epoch": 31.698995194408038,
+ "grad_norm": 0.20020027458667755,
+ "learning_rate": 0.0006,
+ "loss": 3.7565250396728516,
+ "step": 2282
+ },
+ {
+ "epoch": 31.712975098296198,
+ "grad_norm": 0.19156186282634735,
+ "learning_rate": 0.0006,
+ "loss": 3.7401509284973145,
+ "step": 2283
+ },
+ {
+ "epoch": 31.72695500218436,
+ "grad_norm": 0.19176368415355682,
+ "learning_rate": 0.0006,
+ "loss": 3.751206398010254,
+ "step": 2284
+ },
+ {
+ "epoch": 31.74093490607252,
+ "grad_norm": 0.18351277709007263,
+ "learning_rate": 0.0006,
+ "loss": 3.752984046936035,
+ "step": 2285
+ },
+ {
+ "epoch": 31.75491480996068,
+ "grad_norm": 0.1879221349954605,
+ "learning_rate": 0.0006,
+ "loss": 3.7156834602355957,
+ "step": 2286
+ },
+ {
+ "epoch": 31.76889471384884,
+ "grad_norm": 0.19232559204101562,
+ "learning_rate": 0.0006,
+ "loss": 3.732879638671875,
+ "step": 2287
+ },
+ {
+ "epoch": 31.782874617737004,
+ "grad_norm": 0.18484069406986237,
+ "learning_rate": 0.0006,
+ "loss": 3.7489013671875,
+ "step": 2288
+ },
+ {
+ "epoch": 31.796854521625164,
+ "grad_norm": 0.20705144107341766,
+ "learning_rate": 0.0006,
+ "loss": 3.7214112281799316,
+ "step": 2289
+ },
+ {
+ "epoch": 31.810834425513324,
+ "grad_norm": 0.23424774408340454,
+ "learning_rate": 0.0006,
+ "loss": 3.714550256729126,
+ "step": 2290
+ },
+ {
+ "epoch": 31.824814329401484,
+ "grad_norm": 0.24061693251132965,
+ "learning_rate": 0.0006,
+ "loss": 3.717336654663086,
+ "step": 2291
+ },
+ {
+ "epoch": 31.838794233289647,
+ "grad_norm": 0.23156678676605225,
+ "learning_rate": 0.0006,
+ "loss": 3.7345399856567383,
+ "step": 2292
+ },
+ {
+ "epoch": 31.852774137177807,
+ "grad_norm": 0.2256302684545517,
+ "learning_rate": 0.0006,
+ "loss": 3.7596092224121094,
+ "step": 2293
+ },
+ {
+ "epoch": 31.866754041065967,
+ "grad_norm": 0.2118781954050064,
+ "learning_rate": 0.0006,
+ "loss": 3.725433588027954,
+ "step": 2294
+ },
+ {
+ "epoch": 31.88073394495413,
+ "grad_norm": 0.1874573826789856,
+ "learning_rate": 0.0006,
+ "loss": 3.738901138305664,
+ "step": 2295
+ },
+ {
+ "epoch": 31.89471384884229,
+ "grad_norm": 0.2062024176120758,
+ "learning_rate": 0.0006,
+ "loss": 3.7439217567443848,
+ "step": 2296
+ },
+ {
+ "epoch": 31.90869375273045,
+ "grad_norm": 0.19886671006679535,
+ "learning_rate": 0.0006,
+ "loss": 3.7583155632019043,
+ "step": 2297
+ },
+ {
+ "epoch": 31.92267365661861,
+ "grad_norm": 0.2079734355211258,
+ "learning_rate": 0.0006,
+ "loss": 3.7251501083374023,
+ "step": 2298
+ },
+ {
+ "epoch": 31.936653560506773,
+ "grad_norm": 0.19710204005241394,
+ "learning_rate": 0.0006,
+ "loss": 3.765778064727783,
+ "step": 2299
+ },
+ {
+ "epoch": 31.950633464394933,
+ "grad_norm": 0.1949392408132553,
+ "learning_rate": 0.0006,
+ "loss": 3.7634787559509277,
+ "step": 2300
+ },
+ {
+ "epoch": 31.964613368283093,
+ "grad_norm": 0.21466250717639923,
+ "learning_rate": 0.0006,
+ "loss": 3.7673215866088867,
+ "step": 2301
+ },
+ {
+ "epoch": 31.978593272171253,
+ "grad_norm": 0.21624267101287842,
+ "learning_rate": 0.0006,
+ "loss": 3.7617220878601074,
+ "step": 2302
+ },
+ {
+ "epoch": 31.992573176059416,
+ "grad_norm": 0.22880229353904724,
+ "learning_rate": 0.0006,
+ "loss": 3.7190351486206055,
+ "step": 2303
+ },
+ {
+ "epoch": 32.0,
+ "grad_norm": 0.23227518796920776,
+ "learning_rate": 0.0006,
+ "loss": 3.740169048309326,
+ "step": 2304
+ },
+ {
+ "epoch": 32.0,
+ "eval_loss": 4.017981052398682,
+ "eval_runtime": 44.4134,
+ "eval_samples_per_second": 54.983,
+ "eval_steps_per_second": 3.445,
+ "step": 2304
+ },
+ {
+ "epoch": 32.01397990388816,
+ "grad_norm": 0.1893721967935562,
+ "learning_rate": 0.0006,
+ "loss": 3.71738338470459,
+ "step": 2305
+ },
+ {
+ "epoch": 32.02795980777632,
+ "grad_norm": 0.23771171271800995,
+ "learning_rate": 0.0006,
+ "loss": 3.71402645111084,
+ "step": 2306
+ },
+ {
+ "epoch": 32.04193971166448,
+ "grad_norm": 0.26343807578086853,
+ "learning_rate": 0.0006,
+ "loss": 3.6926395893096924,
+ "step": 2307
+ },
+ {
+ "epoch": 32.05591961555265,
+ "grad_norm": 0.25092509388923645,
+ "learning_rate": 0.0006,
+ "loss": 3.715243339538574,
+ "step": 2308
+ },
+ {
+ "epoch": 32.0698995194408,
+ "grad_norm": 0.23148509860038757,
+ "learning_rate": 0.0006,
+ "loss": 3.690734386444092,
+ "step": 2309
+ },
+ {
+ "epoch": 32.083879423328966,
+ "grad_norm": 0.23314623534679413,
+ "learning_rate": 0.0006,
+ "loss": 3.6980109214782715,
+ "step": 2310
+ },
+ {
+ "epoch": 32.09785932721712,
+ "grad_norm": 0.2210417091846466,
+ "learning_rate": 0.0006,
+ "loss": 3.7395730018615723,
+ "step": 2311
+ },
+ {
+ "epoch": 32.111839231105286,
+ "grad_norm": 0.20263685286045074,
+ "learning_rate": 0.0006,
+ "loss": 3.678412914276123,
+ "step": 2312
+ },
+ {
+ "epoch": 32.12581913499345,
+ "grad_norm": 0.20412251353263855,
+ "learning_rate": 0.0006,
+ "loss": 3.688762903213501,
+ "step": 2313
+ },
+ {
+ "epoch": 32.139799038881605,
+ "grad_norm": 0.2041679322719574,
+ "learning_rate": 0.0006,
+ "loss": 3.7231521606445312,
+ "step": 2314
+ },
+ {
+ "epoch": 32.15377894276977,
+ "grad_norm": 0.23270174860954285,
+ "learning_rate": 0.0006,
+ "loss": 3.7102620601654053,
+ "step": 2315
+ },
+ {
+ "epoch": 32.16775884665793,
+ "grad_norm": 0.25470519065856934,
+ "learning_rate": 0.0006,
+ "loss": 3.7353053092956543,
+ "step": 2316
+ },
+ {
+ "epoch": 32.18173875054609,
+ "grad_norm": 0.2930106222629547,
+ "learning_rate": 0.0006,
+ "loss": 3.7418713569641113,
+ "step": 2317
+ },
+ {
+ "epoch": 32.19571865443425,
+ "grad_norm": 0.3181219696998596,
+ "learning_rate": 0.0006,
+ "loss": 3.6716184616088867,
+ "step": 2318
+ },
+ {
+ "epoch": 32.20969855832241,
+ "grad_norm": 0.2752978801727295,
+ "learning_rate": 0.0006,
+ "loss": 3.70334792137146,
+ "step": 2319
+ },
+ {
+ "epoch": 32.22367846221057,
+ "grad_norm": 0.28381186723709106,
+ "learning_rate": 0.0006,
+ "loss": 3.719794750213623,
+ "step": 2320
+ },
+ {
+ "epoch": 32.237658366098735,
+ "grad_norm": 0.3287750482559204,
+ "learning_rate": 0.0006,
+ "loss": 3.7363362312316895,
+ "step": 2321
+ },
+ {
+ "epoch": 32.25163826998689,
+ "grad_norm": 0.32669803500175476,
+ "learning_rate": 0.0006,
+ "loss": 3.739394426345825,
+ "step": 2322
+ },
+ {
+ "epoch": 32.265618173875055,
+ "grad_norm": 0.27423885464668274,
+ "learning_rate": 0.0006,
+ "loss": 3.7381205558776855,
+ "step": 2323
+ },
+ {
+ "epoch": 32.27959807776322,
+ "grad_norm": 0.2594660818576813,
+ "learning_rate": 0.0006,
+ "loss": 3.698683738708496,
+ "step": 2324
+ },
+ {
+ "epoch": 32.293577981651374,
+ "grad_norm": 0.2785511016845703,
+ "learning_rate": 0.0006,
+ "loss": 3.688774824142456,
+ "step": 2325
+ },
+ {
+ "epoch": 32.30755788553954,
+ "grad_norm": 0.2690320611000061,
+ "learning_rate": 0.0006,
+ "loss": 3.7209150791168213,
+ "step": 2326
+ },
+ {
+ "epoch": 32.3215377894277,
+ "grad_norm": 0.23331770300865173,
+ "learning_rate": 0.0006,
+ "loss": 3.682931423187256,
+ "step": 2327
+ },
+ {
+ "epoch": 32.33551769331586,
+ "grad_norm": 0.22380802035331726,
+ "learning_rate": 0.0006,
+ "loss": 3.720445156097412,
+ "step": 2328
+ },
+ {
+ "epoch": 32.34949759720402,
+ "grad_norm": 0.2065964937210083,
+ "learning_rate": 0.0006,
+ "loss": 3.705427885055542,
+ "step": 2329
+ },
+ {
+ "epoch": 32.36347750109218,
+ "grad_norm": 0.20701853930950165,
+ "learning_rate": 0.0006,
+ "loss": 3.7078697681427,
+ "step": 2330
+ },
+ {
+ "epoch": 32.37745740498034,
+ "grad_norm": 0.2063559591770172,
+ "learning_rate": 0.0006,
+ "loss": 3.745004653930664,
+ "step": 2331
+ },
+ {
+ "epoch": 32.391437308868504,
+ "grad_norm": 0.19377011060714722,
+ "learning_rate": 0.0006,
+ "loss": 3.713808059692383,
+ "step": 2332
+ },
+ {
+ "epoch": 32.40541721275666,
+ "grad_norm": 0.19260725378990173,
+ "learning_rate": 0.0006,
+ "loss": 3.717043876647949,
+ "step": 2333
+ },
+ {
+ "epoch": 32.419397116644824,
+ "grad_norm": 0.20792821049690247,
+ "learning_rate": 0.0006,
+ "loss": 3.68632173538208,
+ "step": 2334
+ },
+ {
+ "epoch": 32.43337702053299,
+ "grad_norm": 0.22278444468975067,
+ "learning_rate": 0.0006,
+ "loss": 3.7345821857452393,
+ "step": 2335
+ },
+ {
+ "epoch": 32.44735692442114,
+ "grad_norm": 0.22533579170703888,
+ "learning_rate": 0.0006,
+ "loss": 3.7224173545837402,
+ "step": 2336
+ },
+ {
+ "epoch": 32.46133682830931,
+ "grad_norm": 0.20228394865989685,
+ "learning_rate": 0.0006,
+ "loss": 3.748530149459839,
+ "step": 2337
+ },
+ {
+ "epoch": 32.47531673219746,
+ "grad_norm": 0.19944614171981812,
+ "learning_rate": 0.0006,
+ "loss": 3.707085371017456,
+ "step": 2338
+ },
+ {
+ "epoch": 32.489296636085626,
+ "grad_norm": 0.19856145977973938,
+ "learning_rate": 0.0006,
+ "loss": 3.6898274421691895,
+ "step": 2339
+ },
+ {
+ "epoch": 32.50327653997379,
+ "grad_norm": 0.20734605193138123,
+ "learning_rate": 0.0006,
+ "loss": 3.7511792182922363,
+ "step": 2340
+ },
+ {
+ "epoch": 32.517256443861946,
+ "grad_norm": 0.19489309191703796,
+ "learning_rate": 0.0006,
+ "loss": 3.736445426940918,
+ "step": 2341
+ },
+ {
+ "epoch": 32.53123634775011,
+ "grad_norm": 0.18899282813072205,
+ "learning_rate": 0.0006,
+ "loss": 3.727325916290283,
+ "step": 2342
+ },
+ {
+ "epoch": 32.54521625163827,
+ "grad_norm": 0.19670401513576508,
+ "learning_rate": 0.0006,
+ "loss": 3.7326102256774902,
+ "step": 2343
+ },
+ {
+ "epoch": 32.55919615552643,
+ "grad_norm": 0.20061780512332916,
+ "learning_rate": 0.0006,
+ "loss": 3.698716402053833,
+ "step": 2344
+ },
+ {
+ "epoch": 32.57317605941459,
+ "grad_norm": 0.1991659700870514,
+ "learning_rate": 0.0006,
+ "loss": 3.6913180351257324,
+ "step": 2345
+ },
+ {
+ "epoch": 32.58715596330275,
+ "grad_norm": 0.18856225907802582,
+ "learning_rate": 0.0006,
+ "loss": 3.7130961418151855,
+ "step": 2346
+ },
+ {
+ "epoch": 32.60113586719091,
+ "grad_norm": 0.1983972191810608,
+ "learning_rate": 0.0006,
+ "loss": 3.7530808448791504,
+ "step": 2347
+ },
+ {
+ "epoch": 32.615115771079076,
+ "grad_norm": 0.2037997543811798,
+ "learning_rate": 0.0006,
+ "loss": 3.7076587677001953,
+ "step": 2348
+ },
+ {
+ "epoch": 32.62909567496723,
+ "grad_norm": 0.21008458733558655,
+ "learning_rate": 0.0006,
+ "loss": 3.7379021644592285,
+ "step": 2349
+ },
+ {
+ "epoch": 32.643075578855395,
+ "grad_norm": 0.2129313349723816,
+ "learning_rate": 0.0006,
+ "loss": 3.7031373977661133,
+ "step": 2350
+ },
+ {
+ "epoch": 32.65705548274356,
+ "grad_norm": 0.18756245076656342,
+ "learning_rate": 0.0006,
+ "loss": 3.7066285610198975,
+ "step": 2351
+ },
+ {
+ "epoch": 32.671035386631715,
+ "grad_norm": 0.17946591973304749,
+ "learning_rate": 0.0006,
+ "loss": 3.73781681060791,
+ "step": 2352
+ },
+ {
+ "epoch": 32.68501529051988,
+ "grad_norm": 0.18983198702335358,
+ "learning_rate": 0.0006,
+ "loss": 3.718855381011963,
+ "step": 2353
+ },
+ {
+ "epoch": 32.69899519440804,
+ "grad_norm": 0.2080942839384079,
+ "learning_rate": 0.0006,
+ "loss": 3.7111258506774902,
+ "step": 2354
+ },
+ {
+ "epoch": 32.7129750982962,
+ "grad_norm": 0.23633413016796112,
+ "learning_rate": 0.0006,
+ "loss": 3.709766149520874,
+ "step": 2355
+ },
+ {
+ "epoch": 32.72695500218436,
+ "grad_norm": 0.2723144590854645,
+ "learning_rate": 0.0006,
+ "loss": 3.745850086212158,
+ "step": 2356
+ },
+ {
+ "epoch": 32.74093490607252,
+ "grad_norm": 0.29774025082588196,
+ "learning_rate": 0.0006,
+ "loss": 3.733771324157715,
+ "step": 2357
+ },
+ {
+ "epoch": 32.75491480996068,
+ "grad_norm": 0.25976699590682983,
+ "learning_rate": 0.0006,
+ "loss": 3.734194278717041,
+ "step": 2358
+ },
+ {
+ "epoch": 32.768894713848844,
+ "grad_norm": 0.20038039982318878,
+ "learning_rate": 0.0006,
+ "loss": 3.735656261444092,
+ "step": 2359
+ },
+ {
+ "epoch": 32.782874617737,
+ "grad_norm": 0.19745637476444244,
+ "learning_rate": 0.0006,
+ "loss": 3.7335894107818604,
+ "step": 2360
+ },
+ {
+ "epoch": 32.796854521625164,
+ "grad_norm": 0.22022396326065063,
+ "learning_rate": 0.0006,
+ "loss": 3.708998680114746,
+ "step": 2361
+ },
+ {
+ "epoch": 32.81083442551333,
+ "grad_norm": 0.24754752218723297,
+ "learning_rate": 0.0006,
+ "loss": 3.7616286277770996,
+ "step": 2362
+ },
+ {
+ "epoch": 32.824814329401484,
+ "grad_norm": 0.26438358426094055,
+ "learning_rate": 0.0006,
+ "loss": 3.737079620361328,
+ "step": 2363
+ },
+ {
+ "epoch": 32.83879423328965,
+ "grad_norm": 0.2507241666316986,
+ "learning_rate": 0.0006,
+ "loss": 3.708500385284424,
+ "step": 2364
+ },
+ {
+ "epoch": 32.8527741371778,
+ "grad_norm": 0.25688016414642334,
+ "learning_rate": 0.0006,
+ "loss": 3.7389419078826904,
+ "step": 2365
+ },
+ {
+ "epoch": 32.86675404106597,
+ "grad_norm": 0.257447749376297,
+ "learning_rate": 0.0006,
+ "loss": 3.7253334522247314,
+ "step": 2366
+ },
+ {
+ "epoch": 32.88073394495413,
+ "grad_norm": 0.2621215879917145,
+ "learning_rate": 0.0006,
+ "loss": 3.773163318634033,
+ "step": 2367
+ },
+ {
+ "epoch": 32.89471384884229,
+ "grad_norm": 0.23554839193820953,
+ "learning_rate": 0.0006,
+ "loss": 3.7534430027008057,
+ "step": 2368
+ },
+ {
+ "epoch": 32.90869375273045,
+ "grad_norm": 0.19698940217494965,
+ "learning_rate": 0.0006,
+ "loss": 3.7094414234161377,
+ "step": 2369
+ },
+ {
+ "epoch": 32.92267365661861,
+ "grad_norm": 0.21380476653575897,
+ "learning_rate": 0.0006,
+ "loss": 3.7666497230529785,
+ "step": 2370
+ },
+ {
+ "epoch": 32.93665356050677,
+ "grad_norm": 0.20876452326774597,
+ "learning_rate": 0.0006,
+ "loss": 3.7467992305755615,
+ "step": 2371
+ },
+ {
+ "epoch": 32.95063346439493,
+ "grad_norm": 0.1989884227514267,
+ "learning_rate": 0.0006,
+ "loss": 3.749878168106079,
+ "step": 2372
+ },
+ {
+ "epoch": 32.964613368283096,
+ "grad_norm": 0.19089168310165405,
+ "learning_rate": 0.0006,
+ "loss": 3.7211015224456787,
+ "step": 2373
+ },
+ {
+ "epoch": 32.97859327217125,
+ "grad_norm": 0.1962461918592453,
+ "learning_rate": 0.0006,
+ "loss": 3.728684425354004,
+ "step": 2374
+ },
+ {
+ "epoch": 32.992573176059416,
+ "grad_norm": 0.22518110275268555,
+ "learning_rate": 0.0006,
+ "loss": 3.7361507415771484,
+ "step": 2375
+ },
+ {
+ "epoch": 33.0,
+ "grad_norm": 0.26704078912734985,
+ "learning_rate": 0.0006,
+ "loss": 3.7478318214416504,
+ "step": 2376
+ },
+ {
+ "epoch": 33.0,
+ "eval_loss": 4.024221897125244,
+ "eval_runtime": 43.9826,
+ "eval_samples_per_second": 55.522,
+ "eval_steps_per_second": 3.479,
+ "step": 2376
+ },
+ {
+ "epoch": 33.01397990388816,
+ "grad_norm": 0.23387742042541504,
+ "learning_rate": 0.0006,
+ "loss": 3.7043614387512207,
+ "step": 2377
+ },
+ {
+ "epoch": 33.02795980777632,
+ "grad_norm": 0.21334673464298248,
+ "learning_rate": 0.0006,
+ "loss": 3.6714677810668945,
+ "step": 2378
+ },
+ {
+ "epoch": 33.04193971166448,
+ "grad_norm": 0.2608581483364105,
+ "learning_rate": 0.0006,
+ "loss": 3.678460121154785,
+ "step": 2379
+ },
+ {
+ "epoch": 33.05591961555265,
+ "grad_norm": 0.31364381313323975,
+ "learning_rate": 0.0006,
+ "loss": 3.6771793365478516,
+ "step": 2380
+ },
+ {
+ "epoch": 33.0698995194408,
+ "grad_norm": 0.31785935163497925,
+ "learning_rate": 0.0006,
+ "loss": 3.7248926162719727,
+ "step": 2381
+ },
+ {
+ "epoch": 33.083879423328966,
+ "grad_norm": 0.29244646430015564,
+ "learning_rate": 0.0006,
+ "loss": 3.677882194519043,
+ "step": 2382
+ },
+ {
+ "epoch": 33.09785932721712,
+ "grad_norm": 0.23943741619586945,
+ "learning_rate": 0.0006,
+ "loss": 3.7365124225616455,
+ "step": 2383
+ },
+ {
+ "epoch": 33.111839231105286,
+ "grad_norm": 0.2547394931316376,
+ "learning_rate": 0.0006,
+ "loss": 3.7031357288360596,
+ "step": 2384
+ },
+ {
+ "epoch": 33.12581913499345,
+ "grad_norm": 0.2696659564971924,
+ "learning_rate": 0.0006,
+ "loss": 3.6904754638671875,
+ "step": 2385
+ },
+ {
+ "epoch": 33.139799038881605,
+ "grad_norm": 0.24271385371685028,
+ "learning_rate": 0.0006,
+ "loss": 3.7137649059295654,
+ "step": 2386
+ },
+ {
+ "epoch": 33.15377894276977,
+ "grad_norm": 0.23435993492603302,
+ "learning_rate": 0.0006,
+ "loss": 3.707383632659912,
+ "step": 2387
+ },
+ {
+ "epoch": 33.16775884665793,
+ "grad_norm": 0.21428440511226654,
+ "learning_rate": 0.0006,
+ "loss": 3.7148897647857666,
+ "step": 2388
+ },
+ {
+ "epoch": 33.18173875054609,
+ "grad_norm": 0.22420962154865265,
+ "learning_rate": 0.0006,
+ "loss": 3.710111141204834,
+ "step": 2389
+ },
+ {
+ "epoch": 33.19571865443425,
+ "grad_norm": 0.26222777366638184,
+ "learning_rate": 0.0006,
+ "loss": 3.677438259124756,
+ "step": 2390
+ },
+ {
+ "epoch": 33.20969855832241,
+ "grad_norm": 0.29910165071487427,
+ "learning_rate": 0.0006,
+ "loss": 3.6895523071289062,
+ "step": 2391
+ },
+ {
+ "epoch": 33.22367846221057,
+ "grad_norm": 0.2615569531917572,
+ "learning_rate": 0.0006,
+ "loss": 3.7339906692504883,
+ "step": 2392
+ },
+ {
+ "epoch": 33.237658366098735,
+ "grad_norm": 0.23396961390972137,
+ "learning_rate": 0.0006,
+ "loss": 3.7179932594299316,
+ "step": 2393
+ },
+ {
+ "epoch": 33.25163826998689,
+ "grad_norm": 0.24844495952129364,
+ "learning_rate": 0.0006,
+ "loss": 3.7191576957702637,
+ "step": 2394
+ },
+ {
+ "epoch": 33.265618173875055,
+ "grad_norm": 0.2306993454694748,
+ "learning_rate": 0.0006,
+ "loss": 3.7172658443450928,
+ "step": 2395
+ },
+ {
+ "epoch": 33.27959807776322,
+ "grad_norm": 0.24935221672058105,
+ "learning_rate": 0.0006,
+ "loss": 3.6917519569396973,
+ "step": 2396
+ },
+ {
+ "epoch": 33.293577981651374,
+ "grad_norm": 0.2522840201854706,
+ "learning_rate": 0.0006,
+ "loss": 3.7263593673706055,
+ "step": 2397
+ },
+ {
+ "epoch": 33.30755788553954,
+ "grad_norm": 0.26411181688308716,
+ "learning_rate": 0.0006,
+ "loss": 3.6981635093688965,
+ "step": 2398
+ },
+ {
+ "epoch": 33.3215377894277,
+ "grad_norm": 0.22396239638328552,
+ "learning_rate": 0.0006,
+ "loss": 3.713247299194336,
+ "step": 2399
+ },
+ {
+ "epoch": 33.33551769331586,
+ "grad_norm": 0.20579157769680023,
+ "learning_rate": 0.0006,
+ "loss": 3.7058467864990234,
+ "step": 2400
+ },
+ {
+ "epoch": 33.34949759720402,
+ "grad_norm": 0.20103922486305237,
+ "learning_rate": 0.0006,
+ "loss": 3.700924873352051,
+ "step": 2401
+ },
+ {
+ "epoch": 33.36347750109218,
+ "grad_norm": 0.19964663684368134,
+ "learning_rate": 0.0006,
+ "loss": 3.6985437870025635,
+ "step": 2402
+ },
+ {
+ "epoch": 33.37745740498034,
+ "grad_norm": 0.20860575139522552,
+ "learning_rate": 0.0006,
+ "loss": 3.7480058670043945,
+ "step": 2403
+ },
+ {
+ "epoch": 33.391437308868504,
+ "grad_norm": 0.19043605029582977,
+ "learning_rate": 0.0006,
+ "loss": 3.6952016353607178,
+ "step": 2404
+ },
+ {
+ "epoch": 33.40541721275666,
+ "grad_norm": 0.1968909204006195,
+ "learning_rate": 0.0006,
+ "loss": 3.69362735748291,
+ "step": 2405
+ },
+ {
+ "epoch": 33.419397116644824,
+ "grad_norm": 0.23492494225502014,
+ "learning_rate": 0.0006,
+ "loss": 3.707993984222412,
+ "step": 2406
+ },
+ {
+ "epoch": 33.43337702053299,
+ "grad_norm": 0.23970453441143036,
+ "learning_rate": 0.0006,
+ "loss": 3.707731246948242,
+ "step": 2407
+ },
+ {
+ "epoch": 33.44735692442114,
+ "grad_norm": 0.2515844404697418,
+ "learning_rate": 0.0006,
+ "loss": 3.723824977874756,
+ "step": 2408
+ },
+ {
+ "epoch": 33.46133682830931,
+ "grad_norm": 0.2343570590019226,
+ "learning_rate": 0.0006,
+ "loss": 3.7068886756896973,
+ "step": 2409
+ },
+ {
+ "epoch": 33.47531673219746,
+ "grad_norm": 0.23419860005378723,
+ "learning_rate": 0.0006,
+ "loss": 3.6964287757873535,
+ "step": 2410
+ },
+ {
+ "epoch": 33.489296636085626,
+ "grad_norm": 0.21280375123023987,
+ "learning_rate": 0.0006,
+ "loss": 3.7020950317382812,
+ "step": 2411
+ },
+ {
+ "epoch": 33.50327653997379,
+ "grad_norm": 0.2061092108488083,
+ "learning_rate": 0.0006,
+ "loss": 3.750861406326294,
+ "step": 2412
+ },
+ {
+ "epoch": 33.517256443861946,
+ "grad_norm": 0.19693219661712646,
+ "learning_rate": 0.0006,
+ "loss": 3.717020034790039,
+ "step": 2413
+ },
+ {
+ "epoch": 33.53123634775011,
+ "grad_norm": 0.18199551105499268,
+ "learning_rate": 0.0006,
+ "loss": 3.7242612838745117,
+ "step": 2414
+ },
+ {
+ "epoch": 33.54521625163827,
+ "grad_norm": 0.20131248235702515,
+ "learning_rate": 0.0006,
+ "loss": 3.6758954524993896,
+ "step": 2415
+ },
+ {
+ "epoch": 33.55919615552643,
+ "grad_norm": 0.2219412475824356,
+ "learning_rate": 0.0006,
+ "loss": 3.707927703857422,
+ "step": 2416
+ },
+ {
+ "epoch": 33.57317605941459,
+ "grad_norm": 0.22541435062885284,
+ "learning_rate": 0.0006,
+ "loss": 3.696967601776123,
+ "step": 2417
+ },
+ {
+ "epoch": 33.58715596330275,
+ "grad_norm": 0.20367272198200226,
+ "learning_rate": 0.0006,
+ "loss": 3.730795383453369,
+ "step": 2418
+ },
+ {
+ "epoch": 33.60113586719091,
+ "grad_norm": 0.20861074328422546,
+ "learning_rate": 0.0006,
+ "loss": 3.707066535949707,
+ "step": 2419
+ },
+ {
+ "epoch": 33.615115771079076,
+ "grad_norm": 0.20570263266563416,
+ "learning_rate": 0.0006,
+ "loss": 3.730602502822876,
+ "step": 2420
+ },
+ {
+ "epoch": 33.62909567496723,
+ "grad_norm": 0.21318231523036957,
+ "learning_rate": 0.0006,
+ "loss": 3.7073278427124023,
+ "step": 2421
+ },
+ {
+ "epoch": 33.643075578855395,
+ "grad_norm": 0.2142639458179474,
+ "learning_rate": 0.0006,
+ "loss": 3.718470573425293,
+ "step": 2422
+ },
+ {
+ "epoch": 33.65705548274356,
+ "grad_norm": 0.19620704650878906,
+ "learning_rate": 0.0006,
+ "loss": 3.716036319732666,
+ "step": 2423
+ },
+ {
+ "epoch": 33.671035386631715,
+ "grad_norm": 0.19308267533779144,
+ "learning_rate": 0.0006,
+ "loss": 3.734597682952881,
+ "step": 2424
+ },
+ {
+ "epoch": 33.68501529051988,
+ "grad_norm": 0.19453389942646027,
+ "learning_rate": 0.0006,
+ "loss": 3.726262092590332,
+ "step": 2425
+ },
+ {
+ "epoch": 33.69899519440804,
+ "grad_norm": 0.20405639708042145,
+ "learning_rate": 0.0006,
+ "loss": 3.678340435028076,
+ "step": 2426
+ },
+ {
+ "epoch": 33.7129750982962,
+ "grad_norm": 0.19525611400604248,
+ "learning_rate": 0.0006,
+ "loss": 3.723907470703125,
+ "step": 2427
+ },
+ {
+ "epoch": 33.72695500218436,
+ "grad_norm": 0.19390441477298737,
+ "learning_rate": 0.0006,
+ "loss": 3.707897186279297,
+ "step": 2428
+ },
+ {
+ "epoch": 33.74093490607252,
+ "grad_norm": 0.2032899558544159,
+ "learning_rate": 0.0006,
+ "loss": 3.735041618347168,
+ "step": 2429
+ },
+ {
+ "epoch": 33.75491480996068,
+ "grad_norm": 0.2134784460067749,
+ "learning_rate": 0.0006,
+ "loss": 3.674978017807007,
+ "step": 2430
+ },
+ {
+ "epoch": 33.768894713848844,
+ "grad_norm": 0.24691973626613617,
+ "learning_rate": 0.0006,
+ "loss": 3.7028675079345703,
+ "step": 2431
+ },
+ {
+ "epoch": 33.782874617737,
+ "grad_norm": 0.2272702008485794,
+ "learning_rate": 0.0006,
+ "loss": 3.7277941703796387,
+ "step": 2432
+ },
+ {
+ "epoch": 33.796854521625164,
+ "grad_norm": 0.20052100718021393,
+ "learning_rate": 0.0006,
+ "loss": 3.7146830558776855,
+ "step": 2433
+ },
+ {
+ "epoch": 33.81083442551333,
+ "grad_norm": 0.1958577185869217,
+ "learning_rate": 0.0006,
+ "loss": 3.6936864852905273,
+ "step": 2434
+ },
+ {
+ "epoch": 33.824814329401484,
+ "grad_norm": 0.191860631108284,
+ "learning_rate": 0.0006,
+ "loss": 3.7451858520507812,
+ "step": 2435
+ },
+ {
+ "epoch": 33.83879423328965,
+ "grad_norm": 0.20961424708366394,
+ "learning_rate": 0.0006,
+ "loss": 3.722400665283203,
+ "step": 2436
+ },
+ {
+ "epoch": 33.8527741371778,
+ "grad_norm": 0.19784288108348846,
+ "learning_rate": 0.0006,
+ "loss": 3.712474822998047,
+ "step": 2437
+ },
+ {
+ "epoch": 33.86675404106597,
+ "grad_norm": 0.18645426630973816,
+ "learning_rate": 0.0006,
+ "loss": 3.7054500579833984,
+ "step": 2438
+ },
+ {
+ "epoch": 33.88073394495413,
+ "grad_norm": 0.19622360169887543,
+ "learning_rate": 0.0006,
+ "loss": 3.7010550498962402,
+ "step": 2439
+ },
+ {
+ "epoch": 33.89471384884229,
+ "grad_norm": 0.20283745229244232,
+ "learning_rate": 0.0006,
+ "loss": 3.7252519130706787,
+ "step": 2440
+ },
+ {
+ "epoch": 33.90869375273045,
+ "grad_norm": 0.18671709299087524,
+ "learning_rate": 0.0006,
+ "loss": 3.6932945251464844,
+ "step": 2441
+ },
+ {
+ "epoch": 33.92267365661861,
+ "grad_norm": 0.17953112721443176,
+ "learning_rate": 0.0006,
+ "loss": 3.7453854084014893,
+ "step": 2442
+ },
+ {
+ "epoch": 33.93665356050677,
+ "grad_norm": 0.1945437788963318,
+ "learning_rate": 0.0006,
+ "loss": 3.722881317138672,
+ "step": 2443
+ },
+ {
+ "epoch": 33.95063346439493,
+ "grad_norm": 0.18414495885372162,
+ "learning_rate": 0.0006,
+ "loss": 3.7402591705322266,
+ "step": 2444
+ },
+ {
+ "epoch": 33.964613368283096,
+ "grad_norm": 0.1936541497707367,
+ "learning_rate": 0.0006,
+ "loss": 3.720057964324951,
+ "step": 2445
+ },
+ {
+ "epoch": 33.97859327217125,
+ "grad_norm": 0.20177008211612701,
+ "learning_rate": 0.0006,
+ "loss": 3.6983802318573,
+ "step": 2446
+ },
+ {
+ "epoch": 33.992573176059416,
+ "grad_norm": 0.18977557122707367,
+ "learning_rate": 0.0006,
+ "loss": 3.7202203273773193,
+ "step": 2447
+ },
+ {
+ "epoch": 34.0,
+ "grad_norm": 0.220163956284523,
+ "learning_rate": 0.0006,
+ "loss": 3.72540283203125,
+ "step": 2448
+ },
+ {
+ "epoch": 34.0,
+ "eval_loss": 4.009343147277832,
+ "eval_runtime": 44.1825,
+ "eval_samples_per_second": 55.271,
+ "eval_steps_per_second": 3.463,
+ "step": 2448
+ },
+ {
+ "epoch": 34.01397990388816,
+ "grad_norm": 0.19843372702598572,
+ "learning_rate": 0.0006,
+ "loss": 3.664431571960449,
+ "step": 2449
+ },
+ {
+ "epoch": 34.02795980777632,
+ "grad_norm": 0.20413008332252502,
+ "learning_rate": 0.0006,
+ "loss": 3.699094533920288,
+ "step": 2450
+ },
+ {
+ "epoch": 34.04193971166448,
+ "grad_norm": 0.22086848318576813,
+ "learning_rate": 0.0006,
+ "loss": 3.681825637817383,
+ "step": 2451
+ },
+ {
+ "epoch": 34.05591961555265,
+ "grad_norm": 0.20753061771392822,
+ "learning_rate": 0.0006,
+ "loss": 3.677116870880127,
+ "step": 2452
+ },
+ {
+ "epoch": 34.0698995194408,
+ "grad_norm": 0.21835783123970032,
+ "learning_rate": 0.0006,
+ "loss": 3.7079062461853027,
+ "step": 2453
+ },
+ {
+ "epoch": 34.083879423328966,
+ "grad_norm": 0.2244357019662857,
+ "learning_rate": 0.0006,
+ "loss": 3.69844913482666,
+ "step": 2454
+ },
+ {
+ "epoch": 34.09785932721712,
+ "grad_norm": 0.2238784283399582,
+ "learning_rate": 0.0006,
+ "loss": 3.6835570335388184,
+ "step": 2455
+ },
+ {
+ "epoch": 34.111839231105286,
+ "grad_norm": 0.24816176295280457,
+ "learning_rate": 0.0006,
+ "loss": 3.6832966804504395,
+ "step": 2456
+ },
+ {
+ "epoch": 34.12581913499345,
+ "grad_norm": 0.2445257306098938,
+ "learning_rate": 0.0006,
+ "loss": 3.7190022468566895,
+ "step": 2457
+ },
+ {
+ "epoch": 34.139799038881605,
+ "grad_norm": 0.24510814249515533,
+ "learning_rate": 0.0006,
+ "loss": 3.678098201751709,
+ "step": 2458
+ },
+ {
+ "epoch": 34.15377894276977,
+ "grad_norm": 0.2550753653049469,
+ "learning_rate": 0.0006,
+ "loss": 3.69335675239563,
+ "step": 2459
+ },
+ {
+ "epoch": 34.16775884665793,
+ "grad_norm": 0.2435017228126526,
+ "learning_rate": 0.0006,
+ "loss": 3.70463228225708,
+ "step": 2460
+ },
+ {
+ "epoch": 34.18173875054609,
+ "grad_norm": 0.26441144943237305,
+ "learning_rate": 0.0006,
+ "loss": 3.6757068634033203,
+ "step": 2461
+ },
+ {
+ "epoch": 34.19571865443425,
+ "grad_norm": 0.2737993001937866,
+ "learning_rate": 0.0006,
+ "loss": 3.6510863304138184,
+ "step": 2462
+ },
+ {
+ "epoch": 34.20969855832241,
+ "grad_norm": 0.24625736474990845,
+ "learning_rate": 0.0006,
+ "loss": 3.707612991333008,
+ "step": 2463
+ },
+ {
+ "epoch": 34.22367846221057,
+ "grad_norm": 0.22222039103507996,
+ "learning_rate": 0.0006,
+ "loss": 3.7145133018493652,
+ "step": 2464
+ },
+ {
+ "epoch": 34.237658366098735,
+ "grad_norm": 0.2173531949520111,
+ "learning_rate": 0.0006,
+ "loss": 3.685112476348877,
+ "step": 2465
+ },
+ {
+ "epoch": 34.25163826998689,
+ "grad_norm": 0.23102006316184998,
+ "learning_rate": 0.0006,
+ "loss": 3.6742453575134277,
+ "step": 2466
+ },
+ {
+ "epoch": 34.265618173875055,
+ "grad_norm": 0.22287188470363617,
+ "learning_rate": 0.0006,
+ "loss": 3.7030534744262695,
+ "step": 2467
+ },
+ {
+ "epoch": 34.27959807776322,
+ "grad_norm": 0.20377251505851746,
+ "learning_rate": 0.0006,
+ "loss": 3.6866259574890137,
+ "step": 2468
+ },
+ {
+ "epoch": 34.293577981651374,
+ "grad_norm": 0.19867438077926636,
+ "learning_rate": 0.0006,
+ "loss": 3.70395565032959,
+ "step": 2469
+ },
+ {
+ "epoch": 34.30755788553954,
+ "grad_norm": 0.2014918178319931,
+ "learning_rate": 0.0006,
+ "loss": 3.660795211791992,
+ "step": 2470
+ },
+ {
+ "epoch": 34.3215377894277,
+ "grad_norm": 0.20981402695178986,
+ "learning_rate": 0.0006,
+ "loss": 3.7045323848724365,
+ "step": 2471
+ },
+ {
+ "epoch": 34.33551769331586,
+ "grad_norm": 0.20968124270439148,
+ "learning_rate": 0.0006,
+ "loss": 3.7113170623779297,
+ "step": 2472
+ },
+ {
+ "epoch": 34.34949759720402,
+ "grad_norm": 0.2214043140411377,
+ "learning_rate": 0.0006,
+ "loss": 3.7330074310302734,
+ "step": 2473
+ },
+ {
+ "epoch": 34.36347750109218,
+ "grad_norm": 0.21231533586978912,
+ "learning_rate": 0.0006,
+ "loss": 3.6706933975219727,
+ "step": 2474
+ },
+ {
+ "epoch": 34.37745740498034,
+ "grad_norm": 0.2022094875574112,
+ "learning_rate": 0.0006,
+ "loss": 3.7230453491210938,
+ "step": 2475
+ },
+ {
+ "epoch": 34.391437308868504,
+ "grad_norm": 0.2281145304441452,
+ "learning_rate": 0.0006,
+ "loss": 3.7197465896606445,
+ "step": 2476
+ },
+ {
+ "epoch": 34.40541721275666,
+ "grad_norm": 0.2147362381219864,
+ "learning_rate": 0.0006,
+ "loss": 3.7092337608337402,
+ "step": 2477
+ },
+ {
+ "epoch": 34.419397116644824,
+ "grad_norm": 0.19984203577041626,
+ "learning_rate": 0.0006,
+ "loss": 3.6939496994018555,
+ "step": 2478
+ },
+ {
+ "epoch": 34.43337702053299,
+ "grad_norm": 0.21088480949401855,
+ "learning_rate": 0.0006,
+ "loss": 3.6942667961120605,
+ "step": 2479
+ },
+ {
+ "epoch": 34.44735692442114,
+ "grad_norm": 0.20444616675376892,
+ "learning_rate": 0.0006,
+ "loss": 3.718186378479004,
+ "step": 2480
+ },
+ {
+ "epoch": 34.46133682830931,
+ "grad_norm": 0.19133952260017395,
+ "learning_rate": 0.0006,
+ "loss": 3.697197437286377,
+ "step": 2481
+ },
+ {
+ "epoch": 34.47531673219746,
+ "grad_norm": 0.2219255417585373,
+ "learning_rate": 0.0006,
+ "loss": 3.684386730194092,
+ "step": 2482
+ },
+ {
+ "epoch": 34.489296636085626,
+ "grad_norm": 0.2480643391609192,
+ "learning_rate": 0.0006,
+ "loss": 3.6656622886657715,
+ "step": 2483
+ },
+ {
+ "epoch": 34.50327653997379,
+ "grad_norm": 0.22907346487045288,
+ "learning_rate": 0.0006,
+ "loss": 3.741391897201538,
+ "step": 2484
+ },
+ {
+ "epoch": 34.517256443861946,
+ "grad_norm": 0.20277173817157745,
+ "learning_rate": 0.0006,
+ "loss": 3.7062582969665527,
+ "step": 2485
+ },
+ {
+ "epoch": 34.53123634775011,
+ "grad_norm": 0.21411100029945374,
+ "learning_rate": 0.0006,
+ "loss": 3.691784381866455,
+ "step": 2486
+ },
+ {
+ "epoch": 34.54521625163827,
+ "grad_norm": 0.20261600613594055,
+ "learning_rate": 0.0006,
+ "loss": 3.6855502128601074,
+ "step": 2487
+ },
+ {
+ "epoch": 34.55919615552643,
+ "grad_norm": 0.23913109302520752,
+ "learning_rate": 0.0006,
+ "loss": 3.670754909515381,
+ "step": 2488
+ },
+ {
+ "epoch": 34.57317605941459,
+ "grad_norm": 0.24427077174186707,
+ "learning_rate": 0.0006,
+ "loss": 3.700611114501953,
+ "step": 2489
+ },
+ {
+ "epoch": 34.58715596330275,
+ "grad_norm": 0.20305761694908142,
+ "learning_rate": 0.0006,
+ "loss": 3.7284226417541504,
+ "step": 2490
+ },
+ {
+ "epoch": 34.60113586719091,
+ "grad_norm": 0.20398905873298645,
+ "learning_rate": 0.0006,
+ "loss": 3.6860880851745605,
+ "step": 2491
+ },
+ {
+ "epoch": 34.615115771079076,
+ "grad_norm": 0.21016651391983032,
+ "learning_rate": 0.0006,
+ "loss": 3.7366015911102295,
+ "step": 2492
+ },
+ {
+ "epoch": 34.62909567496723,
+ "grad_norm": 0.22279402613639832,
+ "learning_rate": 0.0006,
+ "loss": 3.7024295330047607,
+ "step": 2493
+ },
+ {
+ "epoch": 34.643075578855395,
+ "grad_norm": 0.25080347061157227,
+ "learning_rate": 0.0006,
+ "loss": 3.68355655670166,
+ "step": 2494
+ },
+ {
+ "epoch": 34.65705548274356,
+ "grad_norm": 0.2702971398830414,
+ "learning_rate": 0.0006,
+ "loss": 3.7400612831115723,
+ "step": 2495
+ },
+ {
+ "epoch": 34.671035386631715,
+ "grad_norm": 0.299398273229599,
+ "learning_rate": 0.0006,
+ "loss": 3.7160325050354004,
+ "step": 2496
+ },
+ {
+ "epoch": 34.68501529051988,
+ "grad_norm": 0.29151082038879395,
+ "learning_rate": 0.0006,
+ "loss": 3.7124147415161133,
+ "step": 2497
+ },
+ {
+ "epoch": 34.69899519440804,
+ "grad_norm": 0.23828288912773132,
+ "learning_rate": 0.0006,
+ "loss": 3.7181267738342285,
+ "step": 2498
+ },
+ {
+ "epoch": 34.7129750982962,
+ "grad_norm": 0.21776588261127472,
+ "learning_rate": 0.0006,
+ "loss": 3.6811792850494385,
+ "step": 2499
+ },
+ {
+ "epoch": 34.72695500218436,
+ "grad_norm": 0.2318469136953354,
+ "learning_rate": 0.0006,
+ "loss": 3.698467254638672,
+ "step": 2500
+ },
+ {
+ "epoch": 34.74093490607252,
+ "grad_norm": 0.22341546416282654,
+ "learning_rate": 0.0006,
+ "loss": 3.7406411170959473,
+ "step": 2501
+ },
+ {
+ "epoch": 34.75491480996068,
+ "grad_norm": 0.20676901936531067,
+ "learning_rate": 0.0006,
+ "loss": 3.6914243698120117,
+ "step": 2502
+ },
+ {
+ "epoch": 34.768894713848844,
+ "grad_norm": 0.20459024608135223,
+ "learning_rate": 0.0006,
+ "loss": 3.713369607925415,
+ "step": 2503
+ },
+ {
+ "epoch": 34.782874617737,
+ "grad_norm": 0.22369320690631866,
+ "learning_rate": 0.0006,
+ "loss": 3.697587490081787,
+ "step": 2504
+ },
+ {
+ "epoch": 34.796854521625164,
+ "grad_norm": 0.2393338829278946,
+ "learning_rate": 0.0006,
+ "loss": 3.7171854972839355,
+ "step": 2505
+ },
+ {
+ "epoch": 34.81083442551333,
+ "grad_norm": 0.23756961524486542,
+ "learning_rate": 0.0006,
+ "loss": 3.6969614028930664,
+ "step": 2506
+ },
+ {
+ "epoch": 34.824814329401484,
+ "grad_norm": 0.22761376202106476,
+ "learning_rate": 0.0006,
+ "loss": 3.722501754760742,
+ "step": 2507
+ },
+ {
+ "epoch": 34.83879423328965,
+ "grad_norm": 0.23564888536930084,
+ "learning_rate": 0.0006,
+ "loss": 3.714003086090088,
+ "step": 2508
+ },
+ {
+ "epoch": 34.8527741371778,
+ "grad_norm": 0.22197313606739044,
+ "learning_rate": 0.0006,
+ "loss": 3.7107110023498535,
+ "step": 2509
+ },
+ {
+ "epoch": 34.86675404106597,
+ "grad_norm": 0.20199328660964966,
+ "learning_rate": 0.0006,
+ "loss": 3.7167551517486572,
+ "step": 2510
+ },
+ {
+ "epoch": 34.88073394495413,
+ "grad_norm": 0.19569700956344604,
+ "learning_rate": 0.0006,
+ "loss": 3.679098129272461,
+ "step": 2511
+ },
+ {
+ "epoch": 34.89471384884229,
+ "grad_norm": 0.21320141851902008,
+ "learning_rate": 0.0006,
+ "loss": 3.733187675476074,
+ "step": 2512
+ },
+ {
+ "epoch": 34.90869375273045,
+ "grad_norm": 0.20074625313282013,
+ "learning_rate": 0.0006,
+ "loss": 3.713339328765869,
+ "step": 2513
+ },
+ {
+ "epoch": 34.92267365661861,
+ "grad_norm": 0.20249252021312714,
+ "learning_rate": 0.0006,
+ "loss": 3.680785655975342,
+ "step": 2514
+ },
+ {
+ "epoch": 34.93665356050677,
+ "grad_norm": 0.22165577113628387,
+ "learning_rate": 0.0006,
+ "loss": 3.696131706237793,
+ "step": 2515
+ },
+ {
+ "epoch": 34.95063346439493,
+ "grad_norm": 0.20769749581813812,
+ "learning_rate": 0.0006,
+ "loss": 3.6910316944122314,
+ "step": 2516
+ },
+ {
+ "epoch": 34.964613368283096,
+ "grad_norm": 0.20857223868370056,
+ "learning_rate": 0.0006,
+ "loss": 3.7327451705932617,
+ "step": 2517
+ },
+ {
+ "epoch": 34.97859327217125,
+ "grad_norm": 0.19155766069889069,
+ "learning_rate": 0.0006,
+ "loss": 3.705609083175659,
+ "step": 2518
+ },
+ {
+ "epoch": 34.992573176059416,
+ "grad_norm": 0.17890529334545135,
+ "learning_rate": 0.0006,
+ "loss": 3.6844797134399414,
+ "step": 2519
+ },
+ {
+ "epoch": 35.0,
+ "grad_norm": 0.2053528130054474,
+ "learning_rate": 0.0006,
+ "loss": 3.6942501068115234,
+ "step": 2520
+ },
+ {
+ "epoch": 35.0,
+ "eval_loss": 3.998469591140747,
+ "eval_runtime": 43.9147,
+ "eval_samples_per_second": 55.608,
+ "eval_steps_per_second": 3.484,
+ "step": 2520
+ },
+ {
+ "epoch": 35.01397990388816,
+ "grad_norm": 0.2288869470357895,
+ "learning_rate": 0.0006,
+ "loss": 3.6966426372528076,
+ "step": 2521
+ },
+ {
+ "epoch": 35.02795980777632,
+ "grad_norm": 0.25702035427093506,
+ "learning_rate": 0.0006,
+ "loss": 3.6622562408447266,
+ "step": 2522
+ },
+ {
+ "epoch": 35.04193971166448,
+ "grad_norm": 0.254422128200531,
+ "learning_rate": 0.0006,
+ "loss": 3.690046548843384,
+ "step": 2523
+ },
+ {
+ "epoch": 35.05591961555265,
+ "grad_norm": 0.24177077412605286,
+ "learning_rate": 0.0006,
+ "loss": 3.685335874557495,
+ "step": 2524
+ },
+ {
+ "epoch": 35.0698995194408,
+ "grad_norm": 0.23959586024284363,
+ "learning_rate": 0.0006,
+ "loss": 3.6534650325775146,
+ "step": 2525
+ },
+ {
+ "epoch": 35.083879423328966,
+ "grad_norm": 0.23474839329719543,
+ "learning_rate": 0.0006,
+ "loss": 3.7092814445495605,
+ "step": 2526
+ },
+ {
+ "epoch": 35.09785932721712,
+ "grad_norm": 0.23240867257118225,
+ "learning_rate": 0.0006,
+ "loss": 3.6819097995758057,
+ "step": 2527
+ },
+ {
+ "epoch": 35.111839231105286,
+ "grad_norm": 0.26267048716545105,
+ "learning_rate": 0.0006,
+ "loss": 3.6566696166992188,
+ "step": 2528
+ },
+ {
+ "epoch": 35.12581913499345,
+ "grad_norm": 0.27070754766464233,
+ "learning_rate": 0.0006,
+ "loss": 3.676304340362549,
+ "step": 2529
+ },
+ {
+ "epoch": 35.139799038881605,
+ "grad_norm": 0.25297826528549194,
+ "learning_rate": 0.0006,
+ "loss": 3.65259051322937,
+ "step": 2530
+ },
+ {
+ "epoch": 35.15377894276977,
+ "grad_norm": 0.22776272892951965,
+ "learning_rate": 0.0006,
+ "loss": 3.6813838481903076,
+ "step": 2531
+ },
+ {
+ "epoch": 35.16775884665793,
+ "grad_norm": 0.2288261204957962,
+ "learning_rate": 0.0006,
+ "loss": 3.6916379928588867,
+ "step": 2532
+ },
+ {
+ "epoch": 35.18173875054609,
+ "grad_norm": 0.20445892214775085,
+ "learning_rate": 0.0006,
+ "loss": 3.6550145149230957,
+ "step": 2533
+ },
+ {
+ "epoch": 35.19571865443425,
+ "grad_norm": 0.20298904180526733,
+ "learning_rate": 0.0006,
+ "loss": 3.704042434692383,
+ "step": 2534
+ },
+ {
+ "epoch": 35.20969855832241,
+ "grad_norm": 0.2264423668384552,
+ "learning_rate": 0.0006,
+ "loss": 3.646308183670044,
+ "step": 2535
+ },
+ {
+ "epoch": 35.22367846221057,
+ "grad_norm": 0.21537378430366516,
+ "learning_rate": 0.0006,
+ "loss": 3.686048984527588,
+ "step": 2536
+ },
+ {
+ "epoch": 35.237658366098735,
+ "grad_norm": 0.19820059835910797,
+ "learning_rate": 0.0006,
+ "loss": 3.6993050575256348,
+ "step": 2537
+ },
+ {
+ "epoch": 35.25163826998689,
+ "grad_norm": 0.19485290348529816,
+ "learning_rate": 0.0006,
+ "loss": 3.6507070064544678,
+ "step": 2538
+ },
+ {
+ "epoch": 35.265618173875055,
+ "grad_norm": 0.21234364807605743,
+ "learning_rate": 0.0006,
+ "loss": 3.6913719177246094,
+ "step": 2539
+ },
+ {
+ "epoch": 35.27959807776322,
+ "grad_norm": 0.19834300875663757,
+ "learning_rate": 0.0006,
+ "loss": 3.6793041229248047,
+ "step": 2540
+ },
+ {
+ "epoch": 35.293577981651374,
+ "grad_norm": 0.1969013512134552,
+ "learning_rate": 0.0006,
+ "loss": 3.7063517570495605,
+ "step": 2541
+ },
+ {
+ "epoch": 35.30755788553954,
+ "grad_norm": 0.196136936545372,
+ "learning_rate": 0.0006,
+ "loss": 3.679825782775879,
+ "step": 2542
+ },
+ {
+ "epoch": 35.3215377894277,
+ "grad_norm": 0.20465479791164398,
+ "learning_rate": 0.0006,
+ "loss": 3.698906421661377,
+ "step": 2543
+ },
+ {
+ "epoch": 35.33551769331586,
+ "grad_norm": 0.204293355345726,
+ "learning_rate": 0.0006,
+ "loss": 3.728549003601074,
+ "step": 2544
+ },
+ {
+ "epoch": 35.34949759720402,
+ "grad_norm": 0.18861903250217438,
+ "learning_rate": 0.0006,
+ "loss": 3.687018632888794,
+ "step": 2545
+ },
+ {
+ "epoch": 35.36347750109218,
+ "grad_norm": 0.19066226482391357,
+ "learning_rate": 0.0006,
+ "loss": 3.667919158935547,
+ "step": 2546
+ },
+ {
+ "epoch": 35.37745740498034,
+ "grad_norm": 0.19985736906528473,
+ "learning_rate": 0.0006,
+ "loss": 3.6697773933410645,
+ "step": 2547
+ },
+ {
+ "epoch": 35.391437308868504,
+ "grad_norm": 0.20669348537921906,
+ "learning_rate": 0.0006,
+ "loss": 3.6718077659606934,
+ "step": 2548
+ },
+ {
+ "epoch": 35.40541721275666,
+ "grad_norm": 0.22164477407932281,
+ "learning_rate": 0.0006,
+ "loss": 3.692106246948242,
+ "step": 2549
+ },
+ {
+ "epoch": 35.419397116644824,
+ "grad_norm": 0.20884688198566437,
+ "learning_rate": 0.0006,
+ "loss": 3.714324712753296,
+ "step": 2550
+ },
+ {
+ "epoch": 35.43337702053299,
+ "grad_norm": 0.21811005473136902,
+ "learning_rate": 0.0006,
+ "loss": 3.678694725036621,
+ "step": 2551
+ },
+ {
+ "epoch": 35.44735692442114,
+ "grad_norm": 0.2427632063627243,
+ "learning_rate": 0.0006,
+ "loss": 3.6584935188293457,
+ "step": 2552
+ },
+ {
+ "epoch": 35.46133682830931,
+ "grad_norm": 0.2584928572177887,
+ "learning_rate": 0.0006,
+ "loss": 3.694148063659668,
+ "step": 2553
+ },
+ {
+ "epoch": 35.47531673219746,
+ "grad_norm": 0.2594548761844635,
+ "learning_rate": 0.0006,
+ "loss": 3.690629005432129,
+ "step": 2554
+ },
+ {
+ "epoch": 35.489296636085626,
+ "grad_norm": 0.2521844208240509,
+ "learning_rate": 0.0006,
+ "loss": 3.6949915885925293,
+ "step": 2555
+ },
+ {
+ "epoch": 35.50327653997379,
+ "grad_norm": 0.2284533679485321,
+ "learning_rate": 0.0006,
+ "loss": 3.6822848320007324,
+ "step": 2556
+ },
+ {
+ "epoch": 35.517256443861946,
+ "grad_norm": 0.2350241094827652,
+ "learning_rate": 0.0006,
+ "loss": 3.6841659545898438,
+ "step": 2557
+ },
+ {
+ "epoch": 35.53123634775011,
+ "grad_norm": 0.22496885061264038,
+ "learning_rate": 0.0006,
+ "loss": 3.676447629928589,
+ "step": 2558
+ },
+ {
+ "epoch": 35.54521625163827,
+ "grad_norm": 0.24326276779174805,
+ "learning_rate": 0.0006,
+ "loss": 3.681678533554077,
+ "step": 2559
+ },
+ {
+ "epoch": 35.55919615552643,
+ "grad_norm": 0.26298362016677856,
+ "learning_rate": 0.0006,
+ "loss": 3.6877617835998535,
+ "step": 2560
+ },
+ {
+ "epoch": 35.57317605941459,
+ "grad_norm": 0.2507239282131195,
+ "learning_rate": 0.0006,
+ "loss": 3.7089176177978516,
+ "step": 2561
+ },
+ {
+ "epoch": 35.58715596330275,
+ "grad_norm": 0.2276458442211151,
+ "learning_rate": 0.0006,
+ "loss": 3.705570936203003,
+ "step": 2562
+ },
+ {
+ "epoch": 35.60113586719091,
+ "grad_norm": 0.23317085206508636,
+ "learning_rate": 0.0006,
+ "loss": 3.6772396564483643,
+ "step": 2563
+ },
+ {
+ "epoch": 35.615115771079076,
+ "grad_norm": 0.23301710188388824,
+ "learning_rate": 0.0006,
+ "loss": 3.694855213165283,
+ "step": 2564
+ },
+ {
+ "epoch": 35.62909567496723,
+ "grad_norm": 0.2170179933309555,
+ "learning_rate": 0.0006,
+ "loss": 3.7095537185668945,
+ "step": 2565
+ },
+ {
+ "epoch": 35.643075578855395,
+ "grad_norm": 0.21211965382099152,
+ "learning_rate": 0.0006,
+ "loss": 3.670109272003174,
+ "step": 2566
+ },
+ {
+ "epoch": 35.65705548274356,
+ "grad_norm": 0.21052585542201996,
+ "learning_rate": 0.0006,
+ "loss": 3.6576027870178223,
+ "step": 2567
+ },
+ {
+ "epoch": 35.671035386631715,
+ "grad_norm": 0.21556039154529572,
+ "learning_rate": 0.0006,
+ "loss": 3.6870639324188232,
+ "step": 2568
+ },
+ {
+ "epoch": 35.68501529051988,
+ "grad_norm": 0.2246469408273697,
+ "learning_rate": 0.0006,
+ "loss": 3.675652503967285,
+ "step": 2569
+ },
+ {
+ "epoch": 35.69899519440804,
+ "grad_norm": 0.21891754865646362,
+ "learning_rate": 0.0006,
+ "loss": 3.692298650741577,
+ "step": 2570
+ },
+ {
+ "epoch": 35.7129750982962,
+ "grad_norm": 0.18774104118347168,
+ "learning_rate": 0.0006,
+ "loss": 3.681035041809082,
+ "step": 2571
+ },
+ {
+ "epoch": 35.72695500218436,
+ "grad_norm": 0.19461573660373688,
+ "learning_rate": 0.0006,
+ "loss": 3.7007932662963867,
+ "step": 2572
+ },
+ {
+ "epoch": 35.74093490607252,
+ "grad_norm": 0.25579094886779785,
+ "learning_rate": 0.0006,
+ "loss": 3.724409580230713,
+ "step": 2573
+ },
+ {
+ "epoch": 35.75491480996068,
+ "grad_norm": 0.27635645866394043,
+ "learning_rate": 0.0006,
+ "loss": 3.68107271194458,
+ "step": 2574
+ },
+ {
+ "epoch": 35.768894713848844,
+ "grad_norm": 0.2233380675315857,
+ "learning_rate": 0.0006,
+ "loss": 3.7123913764953613,
+ "step": 2575
+ },
+ {
+ "epoch": 35.782874617737,
+ "grad_norm": 0.19383835792541504,
+ "learning_rate": 0.0006,
+ "loss": 3.6948328018188477,
+ "step": 2576
+ },
+ {
+ "epoch": 35.796854521625164,
+ "grad_norm": 0.18138426542282104,
+ "learning_rate": 0.0006,
+ "loss": 3.6837103366851807,
+ "step": 2577
+ },
+ {
+ "epoch": 35.81083442551333,
+ "grad_norm": 0.18680135905742645,
+ "learning_rate": 0.0006,
+ "loss": 3.7106502056121826,
+ "step": 2578
+ },
+ {
+ "epoch": 35.824814329401484,
+ "grad_norm": 0.19226312637329102,
+ "learning_rate": 0.0006,
+ "loss": 3.69488787651062,
+ "step": 2579
+ },
+ {
+ "epoch": 35.83879423328965,
+ "grad_norm": 0.19224657118320465,
+ "learning_rate": 0.0006,
+ "loss": 3.7103662490844727,
+ "step": 2580
+ },
+ {
+ "epoch": 35.8527741371778,
+ "grad_norm": 0.18991880118846893,
+ "learning_rate": 0.0006,
+ "loss": 3.7154245376586914,
+ "step": 2581
+ },
+ {
+ "epoch": 35.86675404106597,
+ "grad_norm": 0.2036849409341812,
+ "learning_rate": 0.0006,
+ "loss": 3.723738193511963,
+ "step": 2582
+ },
+ {
+ "epoch": 35.88073394495413,
+ "grad_norm": 0.24730375409126282,
+ "learning_rate": 0.0006,
+ "loss": 3.6830549240112305,
+ "step": 2583
+ },
+ {
+ "epoch": 35.89471384884229,
+ "grad_norm": 0.26552343368530273,
+ "learning_rate": 0.0006,
+ "loss": 3.7025017738342285,
+ "step": 2584
+ },
+ {
+ "epoch": 35.90869375273045,
+ "grad_norm": 0.2621893286705017,
+ "learning_rate": 0.0006,
+ "loss": 3.697399854660034,
+ "step": 2585
+ },
+ {
+ "epoch": 35.92267365661861,
+ "grad_norm": 0.2320089191198349,
+ "learning_rate": 0.0006,
+ "loss": 3.722207546234131,
+ "step": 2586
+ },
+ {
+ "epoch": 35.93665356050677,
+ "grad_norm": 0.1848745346069336,
+ "learning_rate": 0.0006,
+ "loss": 3.711249351501465,
+ "step": 2587
+ },
+ {
+ "epoch": 35.95063346439493,
+ "grad_norm": 0.24218113720417023,
+ "learning_rate": 0.0006,
+ "loss": 3.698894500732422,
+ "step": 2588
+ },
+ {
+ "epoch": 35.964613368283096,
+ "grad_norm": 0.29338452219963074,
+ "learning_rate": 0.0006,
+ "loss": 3.7470521926879883,
+ "step": 2589
+ },
+ {
+ "epoch": 35.97859327217125,
+ "grad_norm": 0.2804136276245117,
+ "learning_rate": 0.0006,
+ "loss": 3.750649929046631,
+ "step": 2590
+ },
+ {
+ "epoch": 35.992573176059416,
+ "grad_norm": 0.26404470205307007,
+ "learning_rate": 0.0006,
+ "loss": 3.6995797157287598,
+ "step": 2591
+ },
+ {
+ "epoch": 36.0,
+ "grad_norm": 0.27446141839027405,
+ "learning_rate": 0.0006,
+ "loss": 3.715768814086914,
+ "step": 2592
+ },
+ {
+ "epoch": 36.0,
+ "eval_loss": 4.007599830627441,
+ "eval_runtime": 44.0149,
+ "eval_samples_per_second": 55.481,
+ "eval_steps_per_second": 3.476,
+ "step": 2592
+ },
+ {
+ "epoch": 36.01397990388816,
+ "grad_norm": 0.2365594208240509,
+ "learning_rate": 0.0006,
+ "loss": 3.6529457569122314,
+ "step": 2593
+ },
+ {
+ "epoch": 36.02795980777632,
+ "grad_norm": 0.24824099242687225,
+ "learning_rate": 0.0006,
+ "loss": 3.6703386306762695,
+ "step": 2594
+ },
+ {
+ "epoch": 36.04193971166448,
+ "grad_norm": 0.26802200078964233,
+ "learning_rate": 0.0006,
+ "loss": 3.688307762145996,
+ "step": 2595
+ },
+ {
+ "epoch": 36.05591961555265,
+ "grad_norm": 0.2552911341190338,
+ "learning_rate": 0.0006,
+ "loss": 3.681797981262207,
+ "step": 2596
+ },
+ {
+ "epoch": 36.0698995194408,
+ "grad_norm": 0.254991739988327,
+ "learning_rate": 0.0006,
+ "loss": 3.644087791442871,
+ "step": 2597
+ },
+ {
+ "epoch": 36.083879423328966,
+ "grad_norm": 0.2496735155582428,
+ "learning_rate": 0.0006,
+ "loss": 3.644047737121582,
+ "step": 2598
+ },
+ {
+ "epoch": 36.09785932721712,
+ "grad_norm": 0.23637443780899048,
+ "learning_rate": 0.0006,
+ "loss": 3.684454917907715,
+ "step": 2599
+ },
+ {
+ "epoch": 36.111839231105286,
+ "grad_norm": 0.22065003216266632,
+ "learning_rate": 0.0006,
+ "loss": 3.661752700805664,
+ "step": 2600
+ },
+ {
+ "epoch": 36.12581913499345,
+ "grad_norm": 0.2292395532131195,
+ "learning_rate": 0.0006,
+ "loss": 3.6709558963775635,
+ "step": 2601
+ },
+ {
+ "epoch": 36.139799038881605,
+ "grad_norm": 0.22295089066028595,
+ "learning_rate": 0.0006,
+ "loss": 3.642230987548828,
+ "step": 2602
+ },
+ {
+ "epoch": 36.15377894276977,
+ "grad_norm": 0.2220531553030014,
+ "learning_rate": 0.0006,
+ "loss": 3.653268814086914,
+ "step": 2603
+ },
+ {
+ "epoch": 36.16775884665793,
+ "grad_norm": 0.21605174243450165,
+ "learning_rate": 0.0006,
+ "loss": 3.6791329383850098,
+ "step": 2604
+ },
+ {
+ "epoch": 36.18173875054609,
+ "grad_norm": 0.20932699739933014,
+ "learning_rate": 0.0006,
+ "loss": 3.6496856212615967,
+ "step": 2605
+ },
+ {
+ "epoch": 36.19571865443425,
+ "grad_norm": 0.20941385626792908,
+ "learning_rate": 0.0006,
+ "loss": 3.6445729732513428,
+ "step": 2606
+ },
+ {
+ "epoch": 36.20969855832241,
+ "grad_norm": 0.1987197995185852,
+ "learning_rate": 0.0006,
+ "loss": 3.6481809616088867,
+ "step": 2607
+ },
+ {
+ "epoch": 36.22367846221057,
+ "grad_norm": 0.19054439663887024,
+ "learning_rate": 0.0006,
+ "loss": 3.66894268989563,
+ "step": 2608
+ },
+ {
+ "epoch": 36.237658366098735,
+ "grad_norm": 0.19940806925296783,
+ "learning_rate": 0.0006,
+ "loss": 3.7123427391052246,
+ "step": 2609
+ },
+ {
+ "epoch": 36.25163826998689,
+ "grad_norm": 0.22157685458660126,
+ "learning_rate": 0.0006,
+ "loss": 3.6707541942596436,
+ "step": 2610
+ },
+ {
+ "epoch": 36.265618173875055,
+ "grad_norm": 0.2362316995859146,
+ "learning_rate": 0.0006,
+ "loss": 3.6906795501708984,
+ "step": 2611
+ },
+ {
+ "epoch": 36.27959807776322,
+ "grad_norm": 0.24560341238975525,
+ "learning_rate": 0.0006,
+ "loss": 3.668379783630371,
+ "step": 2612
+ },
+ {
+ "epoch": 36.293577981651374,
+ "grad_norm": 0.22814054787158966,
+ "learning_rate": 0.0006,
+ "loss": 3.665527820587158,
+ "step": 2613
+ },
+ {
+ "epoch": 36.30755788553954,
+ "grad_norm": 0.2156696617603302,
+ "learning_rate": 0.0006,
+ "loss": 3.673835277557373,
+ "step": 2614
+ },
+ {
+ "epoch": 36.3215377894277,
+ "grad_norm": 0.20152772963047028,
+ "learning_rate": 0.0006,
+ "loss": 3.6512670516967773,
+ "step": 2615
+ },
+ {
+ "epoch": 36.33551769331586,
+ "grad_norm": 0.22466860711574554,
+ "learning_rate": 0.0006,
+ "loss": 3.6877706050872803,
+ "step": 2616
+ },
+ {
+ "epoch": 36.34949759720402,
+ "grad_norm": 0.21688112616539001,
+ "learning_rate": 0.0006,
+ "loss": 3.6895859241485596,
+ "step": 2617
+ },
+ {
+ "epoch": 36.36347750109218,
+ "grad_norm": 0.19836577773094177,
+ "learning_rate": 0.0006,
+ "loss": 3.6658992767333984,
+ "step": 2618
+ },
+ {
+ "epoch": 36.37745740498034,
+ "grad_norm": 0.1995069831609726,
+ "learning_rate": 0.0006,
+ "loss": 3.677614450454712,
+ "step": 2619
+ },
+ {
+ "epoch": 36.391437308868504,
+ "grad_norm": 0.21234792470932007,
+ "learning_rate": 0.0006,
+ "loss": 3.6971967220306396,
+ "step": 2620
+ },
+ {
+ "epoch": 36.40541721275666,
+ "grad_norm": 0.20898285508155823,
+ "learning_rate": 0.0006,
+ "loss": 3.6936516761779785,
+ "step": 2621
+ },
+ {
+ "epoch": 36.419397116644824,
+ "grad_norm": 0.2115008533000946,
+ "learning_rate": 0.0006,
+ "loss": 3.6674065589904785,
+ "step": 2622
+ },
+ {
+ "epoch": 36.43337702053299,
+ "grad_norm": 0.2041143774986267,
+ "learning_rate": 0.0006,
+ "loss": 3.6455483436584473,
+ "step": 2623
+ },
+ {
+ "epoch": 36.44735692442114,
+ "grad_norm": 0.1966932713985443,
+ "learning_rate": 0.0006,
+ "loss": 3.6938109397888184,
+ "step": 2624
+ },
+ {
+ "epoch": 36.46133682830931,
+ "grad_norm": 0.20062223076820374,
+ "learning_rate": 0.0006,
+ "loss": 3.6775765419006348,
+ "step": 2625
+ },
+ {
+ "epoch": 36.47531673219746,
+ "grad_norm": 0.20610390603542328,
+ "learning_rate": 0.0006,
+ "loss": 3.6835384368896484,
+ "step": 2626
+ },
+ {
+ "epoch": 36.489296636085626,
+ "grad_norm": 0.20481473207473755,
+ "learning_rate": 0.0006,
+ "loss": 3.6794047355651855,
+ "step": 2627
+ },
+ {
+ "epoch": 36.50327653997379,
+ "grad_norm": 0.18964581191539764,
+ "learning_rate": 0.0006,
+ "loss": 3.7035841941833496,
+ "step": 2628
+ },
+ {
+ "epoch": 36.517256443861946,
+ "grad_norm": 0.2029343545436859,
+ "learning_rate": 0.0006,
+ "loss": 3.6667590141296387,
+ "step": 2629
+ },
+ {
+ "epoch": 36.53123634775011,
+ "grad_norm": 0.23656968772411346,
+ "learning_rate": 0.0006,
+ "loss": 3.6974546909332275,
+ "step": 2630
+ },
+ {
+ "epoch": 36.54521625163827,
+ "grad_norm": 0.23401431739330292,
+ "learning_rate": 0.0006,
+ "loss": 3.668936252593994,
+ "step": 2631
+ },
+ {
+ "epoch": 36.55919615552643,
+ "grad_norm": 0.22258102893829346,
+ "learning_rate": 0.0006,
+ "loss": 3.667977809906006,
+ "step": 2632
+ },
+ {
+ "epoch": 36.57317605941459,
+ "grad_norm": 0.20849554240703583,
+ "learning_rate": 0.0006,
+ "loss": 3.6674845218658447,
+ "step": 2633
+ },
+ {
+ "epoch": 36.58715596330275,
+ "grad_norm": 0.20684309303760529,
+ "learning_rate": 0.0006,
+ "loss": 3.6828644275665283,
+ "step": 2634
+ },
+ {
+ "epoch": 36.60113586719091,
+ "grad_norm": 0.19114233553409576,
+ "learning_rate": 0.0006,
+ "loss": 3.7084832191467285,
+ "step": 2635
+ },
+ {
+ "epoch": 36.615115771079076,
+ "grad_norm": 0.20382429659366608,
+ "learning_rate": 0.0006,
+ "loss": 3.68354868888855,
+ "step": 2636
+ },
+ {
+ "epoch": 36.62909567496723,
+ "grad_norm": 0.22526590526103973,
+ "learning_rate": 0.0006,
+ "loss": 3.684112310409546,
+ "step": 2637
+ },
+ {
+ "epoch": 36.643075578855395,
+ "grad_norm": 0.20735391974449158,
+ "learning_rate": 0.0006,
+ "loss": 3.67702054977417,
+ "step": 2638
+ },
+ {
+ "epoch": 36.65705548274356,
+ "grad_norm": 0.18549653887748718,
+ "learning_rate": 0.0006,
+ "loss": 3.6840810775756836,
+ "step": 2639
+ },
+ {
+ "epoch": 36.671035386631715,
+ "grad_norm": 0.1805262714624405,
+ "learning_rate": 0.0006,
+ "loss": 3.688119411468506,
+ "step": 2640
+ },
+ {
+ "epoch": 36.68501529051988,
+ "grad_norm": 0.17545704543590546,
+ "learning_rate": 0.0006,
+ "loss": 3.6477861404418945,
+ "step": 2641
+ },
+ {
+ "epoch": 36.69899519440804,
+ "grad_norm": 0.1772221326828003,
+ "learning_rate": 0.0006,
+ "loss": 3.6935806274414062,
+ "step": 2642
+ },
+ {
+ "epoch": 36.7129750982962,
+ "grad_norm": 0.18701671063899994,
+ "learning_rate": 0.0006,
+ "loss": 3.6820428371429443,
+ "step": 2643
+ },
+ {
+ "epoch": 36.72695500218436,
+ "grad_norm": 0.2057863473892212,
+ "learning_rate": 0.0006,
+ "loss": 3.669762134552002,
+ "step": 2644
+ },
+ {
+ "epoch": 36.74093490607252,
+ "grad_norm": 0.2565848231315613,
+ "learning_rate": 0.0006,
+ "loss": 3.717599391937256,
+ "step": 2645
+ },
+ {
+ "epoch": 36.75491480996068,
+ "grad_norm": 0.24362123012542725,
+ "learning_rate": 0.0006,
+ "loss": 3.671900987625122,
+ "step": 2646
+ },
+ {
+ "epoch": 36.768894713848844,
+ "grad_norm": 0.19606009125709534,
+ "learning_rate": 0.0006,
+ "loss": 3.6782546043395996,
+ "step": 2647
+ },
+ {
+ "epoch": 36.782874617737,
+ "grad_norm": 0.1948748379945755,
+ "learning_rate": 0.0006,
+ "loss": 3.6823501586914062,
+ "step": 2648
+ },
+ {
+ "epoch": 36.796854521625164,
+ "grad_norm": 0.22289852797985077,
+ "learning_rate": 0.0006,
+ "loss": 3.693469762802124,
+ "step": 2649
+ },
+ {
+ "epoch": 36.81083442551333,
+ "grad_norm": 0.24751701951026917,
+ "learning_rate": 0.0006,
+ "loss": 3.700678825378418,
+ "step": 2650
+ },
+ {
+ "epoch": 36.824814329401484,
+ "grad_norm": 0.28663966059684753,
+ "learning_rate": 0.0006,
+ "loss": 3.6960878372192383,
+ "step": 2651
+ },
+ {
+ "epoch": 36.83879423328965,
+ "grad_norm": 0.3288552165031433,
+ "learning_rate": 0.0006,
+ "loss": 3.7255043983459473,
+ "step": 2652
+ },
+ {
+ "epoch": 36.8527741371778,
+ "grad_norm": 0.3555443286895752,
+ "learning_rate": 0.0006,
+ "loss": 3.725308418273926,
+ "step": 2653
+ },
+ {
+ "epoch": 36.86675404106597,
+ "grad_norm": 0.3204147219657898,
+ "learning_rate": 0.0006,
+ "loss": 3.7137985229492188,
+ "step": 2654
+ },
+ {
+ "epoch": 36.88073394495413,
+ "grad_norm": 0.2944706976413727,
+ "learning_rate": 0.0006,
+ "loss": 3.7032840251922607,
+ "step": 2655
+ },
+ {
+ "epoch": 36.89471384884229,
+ "grad_norm": 0.2845679223537445,
+ "learning_rate": 0.0006,
+ "loss": 3.6840004920959473,
+ "step": 2656
+ },
+ {
+ "epoch": 36.90869375273045,
+ "grad_norm": 0.2815704047679901,
+ "learning_rate": 0.0006,
+ "loss": 3.6958417892456055,
+ "step": 2657
+ },
+ {
+ "epoch": 36.92267365661861,
+ "grad_norm": 0.2733481228351593,
+ "learning_rate": 0.0006,
+ "loss": 3.677690029144287,
+ "step": 2658
+ },
+ {
+ "epoch": 36.93665356050677,
+ "grad_norm": 0.29572054743766785,
+ "learning_rate": 0.0006,
+ "loss": 3.6983718872070312,
+ "step": 2659
+ },
+ {
+ "epoch": 36.95063346439493,
+ "grad_norm": 0.2487923800945282,
+ "learning_rate": 0.0006,
+ "loss": 3.7041163444519043,
+ "step": 2660
+ },
+ {
+ "epoch": 36.964613368283096,
+ "grad_norm": 0.2541966438293457,
+ "learning_rate": 0.0006,
+ "loss": 3.7038979530334473,
+ "step": 2661
+ },
+ {
+ "epoch": 36.97859327217125,
+ "grad_norm": 0.2441335767507553,
+ "learning_rate": 0.0006,
+ "loss": 3.717966079711914,
+ "step": 2662
+ },
+ {
+ "epoch": 36.992573176059416,
+ "grad_norm": 0.2304554283618927,
+ "learning_rate": 0.0006,
+ "loss": 3.671098232269287,
+ "step": 2663
+ },
+ {
+ "epoch": 37.0,
+ "grad_norm": 0.2346591204404831,
+ "learning_rate": 0.0006,
+ "loss": 3.680298089981079,
+ "step": 2664
+ },
+ {
+ "epoch": 37.0,
+ "eval_loss": 3.9944777488708496,
+ "eval_runtime": 43.9862,
+ "eval_samples_per_second": 55.517,
+ "eval_steps_per_second": 3.478,
+ "step": 2664
+ },
+ {
+ "epoch": 37.01397990388816,
+ "grad_norm": 0.22970618307590485,
+ "learning_rate": 0.0006,
+ "loss": 3.6835923194885254,
+ "step": 2665
+ },
+ {
+ "epoch": 37.02795980777632,
+ "grad_norm": 0.25463759899139404,
+ "learning_rate": 0.0006,
+ "loss": 3.658339023590088,
+ "step": 2666
+ },
+ {
+ "epoch": 37.04193971166448,
+ "grad_norm": 0.2520577311515808,
+ "learning_rate": 0.0006,
+ "loss": 3.6275506019592285,
+ "step": 2667
+ },
+ {
+ "epoch": 37.05591961555265,
+ "grad_norm": 0.22698813676834106,
+ "learning_rate": 0.0006,
+ "loss": 3.65043568611145,
+ "step": 2668
+ },
+ {
+ "epoch": 37.0698995194408,
+ "grad_norm": 0.21133972704410553,
+ "learning_rate": 0.0006,
+ "loss": 3.6262078285217285,
+ "step": 2669
+ },
+ {
+ "epoch": 37.083879423328966,
+ "grad_norm": 0.21940460801124573,
+ "learning_rate": 0.0006,
+ "loss": 3.6709489822387695,
+ "step": 2670
+ },
+ {
+ "epoch": 37.09785932721712,
+ "grad_norm": 0.21897517144680023,
+ "learning_rate": 0.0006,
+ "loss": 3.6621508598327637,
+ "step": 2671
+ },
+ {
+ "epoch": 37.111839231105286,
+ "grad_norm": 0.2270219624042511,
+ "learning_rate": 0.0006,
+ "loss": 3.6334924697875977,
+ "step": 2672
+ },
+ {
+ "epoch": 37.12581913499345,
+ "grad_norm": 0.22082042694091797,
+ "learning_rate": 0.0006,
+ "loss": 3.662209987640381,
+ "step": 2673
+ },
+ {
+ "epoch": 37.139799038881605,
+ "grad_norm": 0.19931960105895996,
+ "learning_rate": 0.0006,
+ "loss": 3.6655359268188477,
+ "step": 2674
+ },
+ {
+ "epoch": 37.15377894276977,
+ "grad_norm": 0.21451307833194733,
+ "learning_rate": 0.0006,
+ "loss": 3.656287670135498,
+ "step": 2675
+ },
+ {
+ "epoch": 37.16775884665793,
+ "grad_norm": 0.2131514698266983,
+ "learning_rate": 0.0006,
+ "loss": 3.635054111480713,
+ "step": 2676
+ },
+ {
+ "epoch": 37.18173875054609,
+ "grad_norm": 0.20425808429718018,
+ "learning_rate": 0.0006,
+ "loss": 3.67653226852417,
+ "step": 2677
+ },
+ {
+ "epoch": 37.19571865443425,
+ "grad_norm": 0.19423379004001617,
+ "learning_rate": 0.0006,
+ "loss": 3.6827316284179688,
+ "step": 2678
+ },
+ {
+ "epoch": 37.20969855832241,
+ "grad_norm": 0.1954883486032486,
+ "learning_rate": 0.0006,
+ "loss": 3.658092498779297,
+ "step": 2679
+ },
+ {
+ "epoch": 37.22367846221057,
+ "grad_norm": 0.21153928339481354,
+ "learning_rate": 0.0006,
+ "loss": 3.6675186157226562,
+ "step": 2680
+ },
+ {
+ "epoch": 37.237658366098735,
+ "grad_norm": 0.2032976895570755,
+ "learning_rate": 0.0006,
+ "loss": 3.6725759506225586,
+ "step": 2681
+ },
+ {
+ "epoch": 37.25163826998689,
+ "grad_norm": 0.19839346408843994,
+ "learning_rate": 0.0006,
+ "loss": 3.660851240158081,
+ "step": 2682
+ },
+ {
+ "epoch": 37.265618173875055,
+ "grad_norm": 0.1884699910879135,
+ "learning_rate": 0.0006,
+ "loss": 3.6653623580932617,
+ "step": 2683
+ },
+ {
+ "epoch": 37.27959807776322,
+ "grad_norm": 0.19558705389499664,
+ "learning_rate": 0.0006,
+ "loss": 3.648016929626465,
+ "step": 2684
+ },
+ {
+ "epoch": 37.293577981651374,
+ "grad_norm": 0.19453682005405426,
+ "learning_rate": 0.0006,
+ "loss": 3.6804773807525635,
+ "step": 2685
+ },
+ {
+ "epoch": 37.30755788553954,
+ "grad_norm": 0.1901177167892456,
+ "learning_rate": 0.0006,
+ "loss": 3.6533353328704834,
+ "step": 2686
+ },
+ {
+ "epoch": 37.3215377894277,
+ "grad_norm": 0.19425596296787262,
+ "learning_rate": 0.0006,
+ "loss": 3.665745735168457,
+ "step": 2687
+ },
+ {
+ "epoch": 37.33551769331586,
+ "grad_norm": 0.17583411931991577,
+ "learning_rate": 0.0006,
+ "loss": 3.679112434387207,
+ "step": 2688
+ },
+ {
+ "epoch": 37.34949759720402,
+ "grad_norm": 0.19667863845825195,
+ "learning_rate": 0.0006,
+ "loss": 3.6650352478027344,
+ "step": 2689
+ },
+ {
+ "epoch": 37.36347750109218,
+ "grad_norm": 0.22803270816802979,
+ "learning_rate": 0.0006,
+ "loss": 3.6658573150634766,
+ "step": 2690
+ },
+ {
+ "epoch": 37.37745740498034,
+ "grad_norm": 0.20589298009872437,
+ "learning_rate": 0.0006,
+ "loss": 3.6587300300598145,
+ "step": 2691
+ },
+ {
+ "epoch": 37.391437308868504,
+ "grad_norm": 0.1946951299905777,
+ "learning_rate": 0.0006,
+ "loss": 3.6515092849731445,
+ "step": 2692
+ },
+ {
+ "epoch": 37.40541721275666,
+ "grad_norm": 0.19029614329338074,
+ "learning_rate": 0.0006,
+ "loss": 3.6383113861083984,
+ "step": 2693
+ },
+ {
+ "epoch": 37.419397116644824,
+ "grad_norm": 0.1944548338651657,
+ "learning_rate": 0.0006,
+ "loss": 3.7017135620117188,
+ "step": 2694
+ },
+ {
+ "epoch": 37.43337702053299,
+ "grad_norm": 0.19482386112213135,
+ "learning_rate": 0.0006,
+ "loss": 3.6791775226593018,
+ "step": 2695
+ },
+ {
+ "epoch": 37.44735692442114,
+ "grad_norm": 0.23276680707931519,
+ "learning_rate": 0.0006,
+ "loss": 3.672245979309082,
+ "step": 2696
+ },
+ {
+ "epoch": 37.46133682830931,
+ "grad_norm": 0.22267542779445648,
+ "learning_rate": 0.0006,
+ "loss": 3.683380365371704,
+ "step": 2697
+ },
+ {
+ "epoch": 37.47531673219746,
+ "grad_norm": 0.1942203938961029,
+ "learning_rate": 0.0006,
+ "loss": 3.6760759353637695,
+ "step": 2698
+ },
+ {
+ "epoch": 37.489296636085626,
+ "grad_norm": 0.21212540566921234,
+ "learning_rate": 0.0006,
+ "loss": 3.660719633102417,
+ "step": 2699
+ },
+ {
+ "epoch": 37.50327653997379,
+ "grad_norm": 0.2365427315235138,
+ "learning_rate": 0.0006,
+ "loss": 3.6727194786071777,
+ "step": 2700
+ },
+ {
+ "epoch": 37.517256443861946,
+ "grad_norm": 0.2379675805568695,
+ "learning_rate": 0.0006,
+ "loss": 3.6691598892211914,
+ "step": 2701
+ },
+ {
+ "epoch": 37.53123634775011,
+ "grad_norm": 0.22142401337623596,
+ "learning_rate": 0.0006,
+ "loss": 3.6882128715515137,
+ "step": 2702
+ },
+ {
+ "epoch": 37.54521625163827,
+ "grad_norm": 0.19993607699871063,
+ "learning_rate": 0.0006,
+ "loss": 3.6651787757873535,
+ "step": 2703
+ },
+ {
+ "epoch": 37.55919615552643,
+ "grad_norm": 0.19934895634651184,
+ "learning_rate": 0.0006,
+ "loss": 3.6680638790130615,
+ "step": 2704
+ },
+ {
+ "epoch": 37.57317605941459,
+ "grad_norm": 0.21202369034290314,
+ "learning_rate": 0.0006,
+ "loss": 3.697615623474121,
+ "step": 2705
+ },
+ {
+ "epoch": 37.58715596330275,
+ "grad_norm": 0.1994577795267105,
+ "learning_rate": 0.0006,
+ "loss": 3.688243865966797,
+ "step": 2706
+ },
+ {
+ "epoch": 37.60113586719091,
+ "grad_norm": 0.20365118980407715,
+ "learning_rate": 0.0006,
+ "loss": 3.6615519523620605,
+ "step": 2707
+ },
+ {
+ "epoch": 37.615115771079076,
+ "grad_norm": 0.22466035187244415,
+ "learning_rate": 0.0006,
+ "loss": 3.703111171722412,
+ "step": 2708
+ },
+ {
+ "epoch": 37.62909567496723,
+ "grad_norm": 0.21140407025814056,
+ "learning_rate": 0.0006,
+ "loss": 3.6744728088378906,
+ "step": 2709
+ },
+ {
+ "epoch": 37.643075578855395,
+ "grad_norm": 0.22220195829868317,
+ "learning_rate": 0.0006,
+ "loss": 3.671501874923706,
+ "step": 2710
+ },
+ {
+ "epoch": 37.65705548274356,
+ "grad_norm": 0.23279480636119843,
+ "learning_rate": 0.0006,
+ "loss": 3.6962859630584717,
+ "step": 2711
+ },
+ {
+ "epoch": 37.671035386631715,
+ "grad_norm": 0.23284408450126648,
+ "learning_rate": 0.0006,
+ "loss": 3.670231342315674,
+ "step": 2712
+ },
+ {
+ "epoch": 37.68501529051988,
+ "grad_norm": 0.21935738623142242,
+ "learning_rate": 0.0006,
+ "loss": 3.6908650398254395,
+ "step": 2713
+ },
+ {
+ "epoch": 37.69899519440804,
+ "grad_norm": 0.2072262167930603,
+ "learning_rate": 0.0006,
+ "loss": 3.7204506397247314,
+ "step": 2714
+ },
+ {
+ "epoch": 37.7129750982962,
+ "grad_norm": 0.22547709941864014,
+ "learning_rate": 0.0006,
+ "loss": 3.6740894317626953,
+ "step": 2715
+ },
+ {
+ "epoch": 37.72695500218436,
+ "grad_norm": 0.2460414469242096,
+ "learning_rate": 0.0006,
+ "loss": 3.6938390731811523,
+ "step": 2716
+ },
+ {
+ "epoch": 37.74093490607252,
+ "grad_norm": 0.24756456911563873,
+ "learning_rate": 0.0006,
+ "loss": 3.692173480987549,
+ "step": 2717
+ },
+ {
+ "epoch": 37.75491480996068,
+ "grad_norm": 0.20149244368076324,
+ "learning_rate": 0.0006,
+ "loss": 3.6677675247192383,
+ "step": 2718
+ },
+ {
+ "epoch": 37.768894713848844,
+ "grad_norm": 0.19834814965724945,
+ "learning_rate": 0.0006,
+ "loss": 3.6717336177825928,
+ "step": 2719
+ },
+ {
+ "epoch": 37.782874617737,
+ "grad_norm": 0.22929978370666504,
+ "learning_rate": 0.0006,
+ "loss": 3.6818275451660156,
+ "step": 2720
+ },
+ {
+ "epoch": 37.796854521625164,
+ "grad_norm": 0.23674434423446655,
+ "learning_rate": 0.0006,
+ "loss": 3.689767360687256,
+ "step": 2721
+ },
+ {
+ "epoch": 37.81083442551333,
+ "grad_norm": 0.22798952460289001,
+ "learning_rate": 0.0006,
+ "loss": 3.6928915977478027,
+ "step": 2722
+ },
+ {
+ "epoch": 37.824814329401484,
+ "grad_norm": 0.2270302027463913,
+ "learning_rate": 0.0006,
+ "loss": 3.6884233951568604,
+ "step": 2723
+ },
+ {
+ "epoch": 37.83879423328965,
+ "grad_norm": 0.23563820123672485,
+ "learning_rate": 0.0006,
+ "loss": 3.6962456703186035,
+ "step": 2724
+ },
+ {
+ "epoch": 37.8527741371778,
+ "grad_norm": 0.2240045815706253,
+ "learning_rate": 0.0006,
+ "loss": 3.6985082626342773,
+ "step": 2725
+ },
+ {
+ "epoch": 37.86675404106597,
+ "grad_norm": 0.21541155874729156,
+ "learning_rate": 0.0006,
+ "loss": 3.6960105895996094,
+ "step": 2726
+ },
+ {
+ "epoch": 37.88073394495413,
+ "grad_norm": 0.23257222771644592,
+ "learning_rate": 0.0006,
+ "loss": 3.667404890060425,
+ "step": 2727
+ },
+ {
+ "epoch": 37.89471384884229,
+ "grad_norm": 0.226792573928833,
+ "learning_rate": 0.0006,
+ "loss": 3.6549744606018066,
+ "step": 2728
+ },
+ {
+ "epoch": 37.90869375273045,
+ "grad_norm": 0.18993401527404785,
+ "learning_rate": 0.0006,
+ "loss": 3.6772334575653076,
+ "step": 2729
+ },
+ {
+ "epoch": 37.92267365661861,
+ "grad_norm": 0.20936095714569092,
+ "learning_rate": 0.0006,
+ "loss": 3.671116352081299,
+ "step": 2730
+ },
+ {
+ "epoch": 37.93665356050677,
+ "grad_norm": 0.2203974425792694,
+ "learning_rate": 0.0006,
+ "loss": 3.6549739837646484,
+ "step": 2731
+ },
+ {
+ "epoch": 37.95063346439493,
+ "grad_norm": 0.19504620134830475,
+ "learning_rate": 0.0006,
+ "loss": 3.6755447387695312,
+ "step": 2732
+ },
+ {
+ "epoch": 37.964613368283096,
+ "grad_norm": 0.2025984674692154,
+ "learning_rate": 0.0006,
+ "loss": 3.678955554962158,
+ "step": 2733
+ },
+ {
+ "epoch": 37.97859327217125,
+ "grad_norm": 0.21556107699871063,
+ "learning_rate": 0.0006,
+ "loss": 3.6680502891540527,
+ "step": 2734
+ },
+ {
+ "epoch": 37.992573176059416,
+ "grad_norm": 0.21011291444301605,
+ "learning_rate": 0.0006,
+ "loss": 3.672039031982422,
+ "step": 2735
+ },
+ {
+ "epoch": 38.0,
+ "grad_norm": 0.23710957169532776,
+ "learning_rate": 0.0006,
+ "loss": 3.6326794624328613,
+ "step": 2736
+ },
+ {
+ "epoch": 38.0,
+ "eval_loss": 3.990501880645752,
+ "eval_runtime": 43.8951,
+ "eval_samples_per_second": 55.633,
+ "eval_steps_per_second": 3.486,
+ "step": 2736
+ },
+ {
+ "epoch": 38.01397990388816,
+ "grad_norm": 0.20711326599121094,
+ "learning_rate": 0.0006,
+ "loss": 3.6364657878875732,
+ "step": 2737
+ },
+ {
+ "epoch": 38.02795980777632,
+ "grad_norm": 0.2250880002975464,
+ "learning_rate": 0.0006,
+ "loss": 3.637646436691284,
+ "step": 2738
+ },
+ {
+ "epoch": 38.04193971166448,
+ "grad_norm": 0.2448352724313736,
+ "learning_rate": 0.0006,
+ "loss": 3.63557767868042,
+ "step": 2739
+ },
+ {
+ "epoch": 38.05591961555265,
+ "grad_norm": 0.23031368851661682,
+ "learning_rate": 0.0006,
+ "loss": 3.627117395401001,
+ "step": 2740
+ },
+ {
+ "epoch": 38.0698995194408,
+ "grad_norm": 0.2045450210571289,
+ "learning_rate": 0.0006,
+ "loss": 3.6594958305358887,
+ "step": 2741
+ },
+ {
+ "epoch": 38.083879423328966,
+ "grad_norm": 0.21253496408462524,
+ "learning_rate": 0.0006,
+ "loss": 3.65494441986084,
+ "step": 2742
+ },
+ {
+ "epoch": 38.09785932721712,
+ "grad_norm": 0.20196112990379333,
+ "learning_rate": 0.0006,
+ "loss": 3.645289421081543,
+ "step": 2743
+ },
+ {
+ "epoch": 38.111839231105286,
+ "grad_norm": 0.20258229970932007,
+ "learning_rate": 0.0006,
+ "loss": 3.6698505878448486,
+ "step": 2744
+ },
+ {
+ "epoch": 38.12581913499345,
+ "grad_norm": 0.22182606160640717,
+ "learning_rate": 0.0006,
+ "loss": 3.6427698135375977,
+ "step": 2745
+ },
+ {
+ "epoch": 38.139799038881605,
+ "grad_norm": 0.21281519532203674,
+ "learning_rate": 0.0006,
+ "loss": 3.668337345123291,
+ "step": 2746
+ },
+ {
+ "epoch": 38.15377894276977,
+ "grad_norm": 0.21680216491222382,
+ "learning_rate": 0.0006,
+ "loss": 3.6362109184265137,
+ "step": 2747
+ },
+ {
+ "epoch": 38.16775884665793,
+ "grad_norm": 0.24396903812885284,
+ "learning_rate": 0.0006,
+ "loss": 3.660510540008545,
+ "step": 2748
+ },
+ {
+ "epoch": 38.18173875054609,
+ "grad_norm": 0.2546434700489044,
+ "learning_rate": 0.0006,
+ "loss": 3.6562418937683105,
+ "step": 2749
+ },
+ {
+ "epoch": 38.19571865443425,
+ "grad_norm": 0.22705447673797607,
+ "learning_rate": 0.0006,
+ "loss": 3.6801514625549316,
+ "step": 2750
+ },
+ {
+ "epoch": 38.20969855832241,
+ "grad_norm": 0.21516330540180206,
+ "learning_rate": 0.0006,
+ "loss": 3.6633429527282715,
+ "step": 2751
+ },
+ {
+ "epoch": 38.22367846221057,
+ "grad_norm": 0.20895853638648987,
+ "learning_rate": 0.0006,
+ "loss": 3.619896411895752,
+ "step": 2752
+ },
+ {
+ "epoch": 38.237658366098735,
+ "grad_norm": 0.21183325350284576,
+ "learning_rate": 0.0006,
+ "loss": 3.639491558074951,
+ "step": 2753
+ },
+ {
+ "epoch": 38.25163826998689,
+ "grad_norm": 0.21439522504806519,
+ "learning_rate": 0.0006,
+ "loss": 3.671931028366089,
+ "step": 2754
+ },
+ {
+ "epoch": 38.265618173875055,
+ "grad_norm": 0.2017785906791687,
+ "learning_rate": 0.0006,
+ "loss": 3.639533519744873,
+ "step": 2755
+ },
+ {
+ "epoch": 38.27959807776322,
+ "grad_norm": 0.20015068352222443,
+ "learning_rate": 0.0006,
+ "loss": 3.654262065887451,
+ "step": 2756
+ },
+ {
+ "epoch": 38.293577981651374,
+ "grad_norm": 0.21518948674201965,
+ "learning_rate": 0.0006,
+ "loss": 3.649919033050537,
+ "step": 2757
+ },
+ {
+ "epoch": 38.30755788553954,
+ "grad_norm": 0.21994580328464508,
+ "learning_rate": 0.0006,
+ "loss": 3.6756131649017334,
+ "step": 2758
+ },
+ {
+ "epoch": 38.3215377894277,
+ "grad_norm": 0.2053978443145752,
+ "learning_rate": 0.0006,
+ "loss": 3.651520252227783,
+ "step": 2759
+ },
+ {
+ "epoch": 38.33551769331586,
+ "grad_norm": 0.2066337615251541,
+ "learning_rate": 0.0006,
+ "loss": 3.6404507160186768,
+ "step": 2760
+ },
+ {
+ "epoch": 38.34949759720402,
+ "grad_norm": 0.20898301899433136,
+ "learning_rate": 0.0006,
+ "loss": 3.637200355529785,
+ "step": 2761
+ },
+ {
+ "epoch": 38.36347750109218,
+ "grad_norm": 0.19212259352207184,
+ "learning_rate": 0.0006,
+ "loss": 3.68394136428833,
+ "step": 2762
+ },
+ {
+ "epoch": 38.37745740498034,
+ "grad_norm": 0.2011883556842804,
+ "learning_rate": 0.0006,
+ "loss": 3.6494975090026855,
+ "step": 2763
+ },
+ {
+ "epoch": 38.391437308868504,
+ "grad_norm": 0.23072998225688934,
+ "learning_rate": 0.0006,
+ "loss": 3.6644320487976074,
+ "step": 2764
+ },
+ {
+ "epoch": 38.40541721275666,
+ "grad_norm": 0.2195347547531128,
+ "learning_rate": 0.0006,
+ "loss": 3.6666269302368164,
+ "step": 2765
+ },
+ {
+ "epoch": 38.419397116644824,
+ "grad_norm": 0.19820117950439453,
+ "learning_rate": 0.0006,
+ "loss": 3.690683364868164,
+ "step": 2766
+ },
+ {
+ "epoch": 38.43337702053299,
+ "grad_norm": 0.20381149649620056,
+ "learning_rate": 0.0006,
+ "loss": 3.6647756099700928,
+ "step": 2767
+ },
+ {
+ "epoch": 38.44735692442114,
+ "grad_norm": 0.19477297365665436,
+ "learning_rate": 0.0006,
+ "loss": 3.6419155597686768,
+ "step": 2768
+ },
+ {
+ "epoch": 38.46133682830931,
+ "grad_norm": 0.20118845999240875,
+ "learning_rate": 0.0006,
+ "loss": 3.678511142730713,
+ "step": 2769
+ },
+ {
+ "epoch": 38.47531673219746,
+ "grad_norm": 0.19538167119026184,
+ "learning_rate": 0.0006,
+ "loss": 3.632112503051758,
+ "step": 2770
+ },
+ {
+ "epoch": 38.489296636085626,
+ "grad_norm": 0.18136411905288696,
+ "learning_rate": 0.0006,
+ "loss": 3.6631078720092773,
+ "step": 2771
+ },
+ {
+ "epoch": 38.50327653997379,
+ "grad_norm": 0.1993526667356491,
+ "learning_rate": 0.0006,
+ "loss": 3.6800379753112793,
+ "step": 2772
+ },
+ {
+ "epoch": 38.517256443861946,
+ "grad_norm": 0.21409109234809875,
+ "learning_rate": 0.0006,
+ "loss": 3.6355738639831543,
+ "step": 2773
+ },
+ {
+ "epoch": 38.53123634775011,
+ "grad_norm": 0.20932911336421967,
+ "learning_rate": 0.0006,
+ "loss": 3.6639811992645264,
+ "step": 2774
+ },
+ {
+ "epoch": 38.54521625163827,
+ "grad_norm": 0.22266243398189545,
+ "learning_rate": 0.0006,
+ "loss": 3.6927733421325684,
+ "step": 2775
+ },
+ {
+ "epoch": 38.55919615552643,
+ "grad_norm": 0.22916539013385773,
+ "learning_rate": 0.0006,
+ "loss": 3.6381587982177734,
+ "step": 2776
+ },
+ {
+ "epoch": 38.57317605941459,
+ "grad_norm": 0.21507245302200317,
+ "learning_rate": 0.0006,
+ "loss": 3.6724753379821777,
+ "step": 2777
+ },
+ {
+ "epoch": 38.58715596330275,
+ "grad_norm": 0.21132487058639526,
+ "learning_rate": 0.0006,
+ "loss": 3.68450927734375,
+ "step": 2778
+ },
+ {
+ "epoch": 38.60113586719091,
+ "grad_norm": 0.2323923259973526,
+ "learning_rate": 0.0006,
+ "loss": 3.6917476654052734,
+ "step": 2779
+ },
+ {
+ "epoch": 38.615115771079076,
+ "grad_norm": 0.2862907648086548,
+ "learning_rate": 0.0006,
+ "loss": 3.6832518577575684,
+ "step": 2780
+ },
+ {
+ "epoch": 38.62909567496723,
+ "grad_norm": 0.28132742643356323,
+ "learning_rate": 0.0006,
+ "loss": 3.6619668006896973,
+ "step": 2781
+ },
+ {
+ "epoch": 38.643075578855395,
+ "grad_norm": 0.24933350086212158,
+ "learning_rate": 0.0006,
+ "loss": 3.6342711448669434,
+ "step": 2782
+ },
+ {
+ "epoch": 38.65705548274356,
+ "grad_norm": 0.23482646048069,
+ "learning_rate": 0.0006,
+ "loss": 3.667548656463623,
+ "step": 2783
+ },
+ {
+ "epoch": 38.671035386631715,
+ "grad_norm": 0.2529793083667755,
+ "learning_rate": 0.0006,
+ "loss": 3.6613709926605225,
+ "step": 2784
+ },
+ {
+ "epoch": 38.68501529051988,
+ "grad_norm": 0.2306097447872162,
+ "learning_rate": 0.0006,
+ "loss": 3.653153419494629,
+ "step": 2785
+ },
+ {
+ "epoch": 38.69899519440804,
+ "grad_norm": 0.21787869930267334,
+ "learning_rate": 0.0006,
+ "loss": 3.6991848945617676,
+ "step": 2786
+ },
+ {
+ "epoch": 38.7129750982962,
+ "grad_norm": 0.24818190932273865,
+ "learning_rate": 0.0006,
+ "loss": 3.664022445678711,
+ "step": 2787
+ },
+ {
+ "epoch": 38.72695500218436,
+ "grad_norm": 0.23205995559692383,
+ "learning_rate": 0.0006,
+ "loss": 3.656064987182617,
+ "step": 2788
+ },
+ {
+ "epoch": 38.74093490607252,
+ "grad_norm": 0.2268102467060089,
+ "learning_rate": 0.0006,
+ "loss": 3.678421974182129,
+ "step": 2789
+ },
+ {
+ "epoch": 38.75491480996068,
+ "grad_norm": 0.22549907863140106,
+ "learning_rate": 0.0006,
+ "loss": 3.6483302116394043,
+ "step": 2790
+ },
+ {
+ "epoch": 38.768894713848844,
+ "grad_norm": 0.2293119877576828,
+ "learning_rate": 0.0006,
+ "loss": 3.646825075149536,
+ "step": 2791
+ },
+ {
+ "epoch": 38.782874617737,
+ "grad_norm": 0.21879418194293976,
+ "learning_rate": 0.0006,
+ "loss": 3.682124614715576,
+ "step": 2792
+ },
+ {
+ "epoch": 38.796854521625164,
+ "grad_norm": 0.22012849152088165,
+ "learning_rate": 0.0006,
+ "loss": 3.6590089797973633,
+ "step": 2793
+ },
+ {
+ "epoch": 38.81083442551333,
+ "grad_norm": 0.2449142336845398,
+ "learning_rate": 0.0006,
+ "loss": 3.7053747177124023,
+ "step": 2794
+ },
+ {
+ "epoch": 38.824814329401484,
+ "grad_norm": 0.2677161395549774,
+ "learning_rate": 0.0006,
+ "loss": 3.666144371032715,
+ "step": 2795
+ },
+ {
+ "epoch": 38.83879423328965,
+ "grad_norm": 0.2654981315135956,
+ "learning_rate": 0.0006,
+ "loss": 3.637512683868408,
+ "step": 2796
+ },
+ {
+ "epoch": 38.8527741371778,
+ "grad_norm": 0.23169654607772827,
+ "learning_rate": 0.0006,
+ "loss": 3.6885948181152344,
+ "step": 2797
+ },
+ {
+ "epoch": 38.86675404106597,
+ "grad_norm": 0.22195108234882355,
+ "learning_rate": 0.0006,
+ "loss": 3.6597604751586914,
+ "step": 2798
+ },
+ {
+ "epoch": 38.88073394495413,
+ "grad_norm": 0.23703525960445404,
+ "learning_rate": 0.0006,
+ "loss": 3.6808712482452393,
+ "step": 2799
+ },
+ {
+ "epoch": 38.89471384884229,
+ "grad_norm": 0.24711088836193085,
+ "learning_rate": 0.0006,
+ "loss": 3.733792781829834,
+ "step": 2800
+ },
+ {
+ "epoch": 38.90869375273045,
+ "grad_norm": 0.216362863779068,
+ "learning_rate": 0.0006,
+ "loss": 3.670599937438965,
+ "step": 2801
+ },
+ {
+ "epoch": 38.92267365661861,
+ "grad_norm": 0.19483810663223267,
+ "learning_rate": 0.0006,
+ "loss": 3.6965198516845703,
+ "step": 2802
+ },
+ {
+ "epoch": 38.93665356050677,
+ "grad_norm": 0.1941208392381668,
+ "learning_rate": 0.0006,
+ "loss": 3.678022861480713,
+ "step": 2803
+ },
+ {
+ "epoch": 38.95063346439493,
+ "grad_norm": 0.1919465959072113,
+ "learning_rate": 0.0006,
+ "loss": 3.6763226985931396,
+ "step": 2804
+ },
+ {
+ "epoch": 38.964613368283096,
+ "grad_norm": 0.2003280073404312,
+ "learning_rate": 0.0006,
+ "loss": 3.670313835144043,
+ "step": 2805
+ },
+ {
+ "epoch": 38.97859327217125,
+ "grad_norm": 0.198478564620018,
+ "learning_rate": 0.0006,
+ "loss": 3.675569772720337,
+ "step": 2806
+ },
+ {
+ "epoch": 38.992573176059416,
+ "grad_norm": 0.23692303895950317,
+ "learning_rate": 0.0006,
+ "loss": 3.696561336517334,
+ "step": 2807
+ },
+ {
+ "epoch": 39.0,
+ "grad_norm": 0.3208145797252655,
+ "learning_rate": 0.0006,
+ "loss": 3.6791436672210693,
+ "step": 2808
+ },
+ {
+ "epoch": 39.0,
+ "eval_loss": 4.0079450607299805,
+ "eval_runtime": 43.8573,
+ "eval_samples_per_second": 55.681,
+ "eval_steps_per_second": 3.489,
+ "step": 2808
+ },
+ {
+ "epoch": 39.01397990388816,
+ "grad_norm": 0.28338733315467834,
+ "learning_rate": 0.0006,
+ "loss": 3.6277060508728027,
+ "step": 2809
+ },
+ {
+ "epoch": 39.02795980777632,
+ "grad_norm": 0.22057899832725525,
+ "learning_rate": 0.0006,
+ "loss": 3.6132822036743164,
+ "step": 2810
+ },
+ {
+ "epoch": 39.04193971166448,
+ "grad_norm": 0.20630282163619995,
+ "learning_rate": 0.0006,
+ "loss": 3.6143927574157715,
+ "step": 2811
+ },
+ {
+ "epoch": 39.05591961555265,
+ "grad_norm": 0.2178523689508438,
+ "learning_rate": 0.0006,
+ "loss": 3.6304664611816406,
+ "step": 2812
+ },
+ {
+ "epoch": 39.0698995194408,
+ "grad_norm": 0.19613824784755707,
+ "learning_rate": 0.0006,
+ "loss": 3.6137919425964355,
+ "step": 2813
+ },
+ {
+ "epoch": 39.083879423328966,
+ "grad_norm": 0.2047276794910431,
+ "learning_rate": 0.0006,
+ "loss": 3.6854846477508545,
+ "step": 2814
+ },
+ {
+ "epoch": 39.09785932721712,
+ "grad_norm": 0.20082715153694153,
+ "learning_rate": 0.0006,
+ "loss": 3.632091522216797,
+ "step": 2815
+ },
+ {
+ "epoch": 39.111839231105286,
+ "grad_norm": 0.21746563911437988,
+ "learning_rate": 0.0006,
+ "loss": 3.640477180480957,
+ "step": 2816
+ },
+ {
+ "epoch": 39.12581913499345,
+ "grad_norm": 0.2128882110118866,
+ "learning_rate": 0.0006,
+ "loss": 3.643984317779541,
+ "step": 2817
+ },
+ {
+ "epoch": 39.139799038881605,
+ "grad_norm": 0.2110479772090912,
+ "learning_rate": 0.0006,
+ "loss": 3.6328823566436768,
+ "step": 2818
+ },
+ {
+ "epoch": 39.15377894276977,
+ "grad_norm": 0.22304436564445496,
+ "learning_rate": 0.0006,
+ "loss": 3.6669845581054688,
+ "step": 2819
+ },
+ {
+ "epoch": 39.16775884665793,
+ "grad_norm": 0.22310666739940643,
+ "learning_rate": 0.0006,
+ "loss": 3.609743595123291,
+ "step": 2820
+ },
+ {
+ "epoch": 39.18173875054609,
+ "grad_norm": 0.21002045273780823,
+ "learning_rate": 0.0006,
+ "loss": 3.601900815963745,
+ "step": 2821
+ },
+ {
+ "epoch": 39.19571865443425,
+ "grad_norm": 0.20531952381134033,
+ "learning_rate": 0.0006,
+ "loss": 3.6405060291290283,
+ "step": 2822
+ },
+ {
+ "epoch": 39.20969855832241,
+ "grad_norm": 0.20646385848522186,
+ "learning_rate": 0.0006,
+ "loss": 3.669617176055908,
+ "step": 2823
+ },
+ {
+ "epoch": 39.22367846221057,
+ "grad_norm": 0.2553980350494385,
+ "learning_rate": 0.0006,
+ "loss": 3.642709255218506,
+ "step": 2824
+ },
+ {
+ "epoch": 39.237658366098735,
+ "grad_norm": 0.2753220498561859,
+ "learning_rate": 0.0006,
+ "loss": 3.668405055999756,
+ "step": 2825
+ },
+ {
+ "epoch": 39.25163826998689,
+ "grad_norm": 0.2425055354833603,
+ "learning_rate": 0.0006,
+ "loss": 3.659559726715088,
+ "step": 2826
+ },
+ {
+ "epoch": 39.265618173875055,
+ "grad_norm": 0.2199426293373108,
+ "learning_rate": 0.0006,
+ "loss": 3.6466197967529297,
+ "step": 2827
+ },
+ {
+ "epoch": 39.27959807776322,
+ "grad_norm": 0.221355602145195,
+ "learning_rate": 0.0006,
+ "loss": 3.639418125152588,
+ "step": 2828
+ },
+ {
+ "epoch": 39.293577981651374,
+ "grad_norm": 0.20777100324630737,
+ "learning_rate": 0.0006,
+ "loss": 3.68102765083313,
+ "step": 2829
+ },
+ {
+ "epoch": 39.30755788553954,
+ "grad_norm": 0.20557557046413422,
+ "learning_rate": 0.0006,
+ "loss": 3.663064956665039,
+ "step": 2830
+ },
+ {
+ "epoch": 39.3215377894277,
+ "grad_norm": 0.2385585904121399,
+ "learning_rate": 0.0006,
+ "loss": 3.6598849296569824,
+ "step": 2831
+ },
+ {
+ "epoch": 39.33551769331586,
+ "grad_norm": 0.25222650170326233,
+ "learning_rate": 0.0006,
+ "loss": 3.635199546813965,
+ "step": 2832
+ },
+ {
+ "epoch": 39.34949759720402,
+ "grad_norm": 0.22894687950611115,
+ "learning_rate": 0.0006,
+ "loss": 3.6100258827209473,
+ "step": 2833
+ },
+ {
+ "epoch": 39.36347750109218,
+ "grad_norm": 0.22945865988731384,
+ "learning_rate": 0.0006,
+ "loss": 3.63069748878479,
+ "step": 2834
+ },
+ {
+ "epoch": 39.37745740498034,
+ "grad_norm": 0.2466309368610382,
+ "learning_rate": 0.0006,
+ "loss": 3.6615123748779297,
+ "step": 2835
+ },
+ {
+ "epoch": 39.391437308868504,
+ "grad_norm": 0.23845571279525757,
+ "learning_rate": 0.0006,
+ "loss": 3.655045509338379,
+ "step": 2836
+ },
+ {
+ "epoch": 39.40541721275666,
+ "grad_norm": 0.20273560285568237,
+ "learning_rate": 0.0006,
+ "loss": 3.6497647762298584,
+ "step": 2837
+ },
+ {
+ "epoch": 39.419397116644824,
+ "grad_norm": 0.19820313155651093,
+ "learning_rate": 0.0006,
+ "loss": 3.6728386878967285,
+ "step": 2838
+ },
+ {
+ "epoch": 39.43337702053299,
+ "grad_norm": 0.21581435203552246,
+ "learning_rate": 0.0006,
+ "loss": 3.660247325897217,
+ "step": 2839
+ },
+ {
+ "epoch": 39.44735692442114,
+ "grad_norm": 0.20559731125831604,
+ "learning_rate": 0.0006,
+ "loss": 3.6244559288024902,
+ "step": 2840
+ },
+ {
+ "epoch": 39.46133682830931,
+ "grad_norm": 0.22041910886764526,
+ "learning_rate": 0.0006,
+ "loss": 3.6577587127685547,
+ "step": 2841
+ },
+ {
+ "epoch": 39.47531673219746,
+ "grad_norm": 0.1966651976108551,
+ "learning_rate": 0.0006,
+ "loss": 3.673975944519043,
+ "step": 2842
+ },
+ {
+ "epoch": 39.489296636085626,
+ "grad_norm": 0.19127163290977478,
+ "learning_rate": 0.0006,
+ "loss": 3.7022414207458496,
+ "step": 2843
+ },
+ {
+ "epoch": 39.50327653997379,
+ "grad_norm": 0.20260316133499146,
+ "learning_rate": 0.0006,
+ "loss": 3.6155128479003906,
+ "step": 2844
+ },
+ {
+ "epoch": 39.517256443861946,
+ "grad_norm": 0.2302546352148056,
+ "learning_rate": 0.0006,
+ "loss": 3.670212984085083,
+ "step": 2845
+ },
+ {
+ "epoch": 39.53123634775011,
+ "grad_norm": 0.2512998878955841,
+ "learning_rate": 0.0006,
+ "loss": 3.6257572174072266,
+ "step": 2846
+ },
+ {
+ "epoch": 39.54521625163827,
+ "grad_norm": 0.24780063331127167,
+ "learning_rate": 0.0006,
+ "loss": 3.6458964347839355,
+ "step": 2847
+ },
+ {
+ "epoch": 39.55919615552643,
+ "grad_norm": 0.21305061876773834,
+ "learning_rate": 0.0006,
+ "loss": 3.666834831237793,
+ "step": 2848
+ },
+ {
+ "epoch": 39.57317605941459,
+ "grad_norm": 0.20699542760849,
+ "learning_rate": 0.0006,
+ "loss": 3.660571813583374,
+ "step": 2849
+ },
+ {
+ "epoch": 39.58715596330275,
+ "grad_norm": 0.20799173414707184,
+ "learning_rate": 0.0006,
+ "loss": 3.649744987487793,
+ "step": 2850
+ },
+ {
+ "epoch": 39.60113586719091,
+ "grad_norm": 0.20118695497512817,
+ "learning_rate": 0.0006,
+ "loss": 3.663865089416504,
+ "step": 2851
+ },
+ {
+ "epoch": 39.615115771079076,
+ "grad_norm": 0.2019277960062027,
+ "learning_rate": 0.0006,
+ "loss": 3.6600584983825684,
+ "step": 2852
+ },
+ {
+ "epoch": 39.62909567496723,
+ "grad_norm": 0.2093067765235901,
+ "learning_rate": 0.0006,
+ "loss": 3.6926870346069336,
+ "step": 2853
+ },
+ {
+ "epoch": 39.643075578855395,
+ "grad_norm": 0.2280927449464798,
+ "learning_rate": 0.0006,
+ "loss": 3.677157402038574,
+ "step": 2854
+ },
+ {
+ "epoch": 39.65705548274356,
+ "grad_norm": 0.219201922416687,
+ "learning_rate": 0.0006,
+ "loss": 3.6763858795166016,
+ "step": 2855
+ },
+ {
+ "epoch": 39.671035386631715,
+ "grad_norm": 0.2132134735584259,
+ "learning_rate": 0.0006,
+ "loss": 3.6853187084198,
+ "step": 2856
+ },
+ {
+ "epoch": 39.68501529051988,
+ "grad_norm": 0.1979551613330841,
+ "learning_rate": 0.0006,
+ "loss": 3.633850574493408,
+ "step": 2857
+ },
+ {
+ "epoch": 39.69899519440804,
+ "grad_norm": 0.2181098908185959,
+ "learning_rate": 0.0006,
+ "loss": 3.671356201171875,
+ "step": 2858
+ },
+ {
+ "epoch": 39.7129750982962,
+ "grad_norm": 0.21820145845413208,
+ "learning_rate": 0.0006,
+ "loss": 3.640101432800293,
+ "step": 2859
+ },
+ {
+ "epoch": 39.72695500218436,
+ "grad_norm": 0.22734931111335754,
+ "learning_rate": 0.0006,
+ "loss": 3.6326088905334473,
+ "step": 2860
+ },
+ {
+ "epoch": 39.74093490607252,
+ "grad_norm": 0.2407236248254776,
+ "learning_rate": 0.0006,
+ "loss": 3.665416955947876,
+ "step": 2861
+ },
+ {
+ "epoch": 39.75491480996068,
+ "grad_norm": 0.2507246434688568,
+ "learning_rate": 0.0006,
+ "loss": 3.6996266841888428,
+ "step": 2862
+ },
+ {
+ "epoch": 39.768894713848844,
+ "grad_norm": 0.2273668497800827,
+ "learning_rate": 0.0006,
+ "loss": 3.6786417961120605,
+ "step": 2863
+ },
+ {
+ "epoch": 39.782874617737,
+ "grad_norm": 0.20584821701049805,
+ "learning_rate": 0.0006,
+ "loss": 3.6539974212646484,
+ "step": 2864
+ },
+ {
+ "epoch": 39.796854521625164,
+ "grad_norm": 0.2327643632888794,
+ "learning_rate": 0.0006,
+ "loss": 3.681267738342285,
+ "step": 2865
+ },
+ {
+ "epoch": 39.81083442551333,
+ "grad_norm": 0.24243171513080597,
+ "learning_rate": 0.0006,
+ "loss": 3.6814589500427246,
+ "step": 2866
+ },
+ {
+ "epoch": 39.824814329401484,
+ "grad_norm": 0.21462969481945038,
+ "learning_rate": 0.0006,
+ "loss": 3.681321620941162,
+ "step": 2867
+ },
+ {
+ "epoch": 39.83879423328965,
+ "grad_norm": 0.20973211526870728,
+ "learning_rate": 0.0006,
+ "loss": 3.636986017227173,
+ "step": 2868
+ },
+ {
+ "epoch": 39.8527741371778,
+ "grad_norm": 0.20357508957386017,
+ "learning_rate": 0.0006,
+ "loss": 3.6664552688598633,
+ "step": 2869
+ },
+ {
+ "epoch": 39.86675404106597,
+ "grad_norm": 0.20389088988304138,
+ "learning_rate": 0.0006,
+ "loss": 3.6685709953308105,
+ "step": 2870
+ },
+ {
+ "epoch": 39.88073394495413,
+ "grad_norm": 0.21024158596992493,
+ "learning_rate": 0.0006,
+ "loss": 3.650658130645752,
+ "step": 2871
+ },
+ {
+ "epoch": 39.89471384884229,
+ "grad_norm": 0.19477778673171997,
+ "learning_rate": 0.0006,
+ "loss": 3.664834976196289,
+ "step": 2872
+ },
+ {
+ "epoch": 39.90869375273045,
+ "grad_norm": 0.22345365583896637,
+ "learning_rate": 0.0006,
+ "loss": 3.6652634143829346,
+ "step": 2873
+ },
+ {
+ "epoch": 39.92267365661861,
+ "grad_norm": 0.206041157245636,
+ "learning_rate": 0.0006,
+ "loss": 3.6649513244628906,
+ "step": 2874
+ },
+ {
+ "epoch": 39.93665356050677,
+ "grad_norm": 0.18524570763111115,
+ "learning_rate": 0.0006,
+ "loss": 3.665579080581665,
+ "step": 2875
+ },
+ {
+ "epoch": 39.95063346439493,
+ "grad_norm": 0.17730890214443207,
+ "learning_rate": 0.0006,
+ "loss": 3.6372880935668945,
+ "step": 2876
+ },
+ {
+ "epoch": 39.964613368283096,
+ "grad_norm": 0.213678777217865,
+ "learning_rate": 0.0006,
+ "loss": 3.681305408477783,
+ "step": 2877
+ },
+ {
+ "epoch": 39.97859327217125,
+ "grad_norm": 0.2595686614513397,
+ "learning_rate": 0.0006,
+ "loss": 3.6660351753234863,
+ "step": 2878
+ },
+ {
+ "epoch": 39.992573176059416,
+ "grad_norm": 0.22678600251674652,
+ "learning_rate": 0.0006,
+ "loss": 3.681619644165039,
+ "step": 2879
+ },
+ {
+ "epoch": 40.0,
+ "grad_norm": 0.2294030636548996,
+ "learning_rate": 0.0006,
+ "loss": 3.654366970062256,
+ "step": 2880
+ },
+ {
+ "epoch": 40.0,
+ "eval_loss": 3.9810431003570557,
+ "eval_runtime": 43.832,
+ "eval_samples_per_second": 55.713,
+ "eval_steps_per_second": 3.491,
+ "step": 2880
+ },
+ {
+ "epoch": 40.01397990388816,
+ "grad_norm": 0.220590278506279,
+ "learning_rate": 0.0006,
+ "loss": 3.6346259117126465,
+ "step": 2881
+ },
+ {
+ "epoch": 40.02795980777632,
+ "grad_norm": 0.2568257749080658,
+ "learning_rate": 0.0006,
+ "loss": 3.64436674118042,
+ "step": 2882
+ },
+ {
+ "epoch": 40.04193971166448,
+ "grad_norm": 0.2869258224964142,
+ "learning_rate": 0.0006,
+ "loss": 3.613316059112549,
+ "step": 2883
+ },
+ {
+ "epoch": 40.05591961555265,
+ "grad_norm": 0.3005172908306122,
+ "learning_rate": 0.0006,
+ "loss": 3.607339859008789,
+ "step": 2884
+ },
+ {
+ "epoch": 40.0698995194408,
+ "grad_norm": 0.28642305731773376,
+ "learning_rate": 0.0006,
+ "loss": 3.65151047706604,
+ "step": 2885
+ },
+ {
+ "epoch": 40.083879423328966,
+ "grad_norm": 0.24176034331321716,
+ "learning_rate": 0.0006,
+ "loss": 3.633742332458496,
+ "step": 2886
+ },
+ {
+ "epoch": 40.09785932721712,
+ "grad_norm": 0.2139386385679245,
+ "learning_rate": 0.0006,
+ "loss": 3.614245653152466,
+ "step": 2887
+ },
+ {
+ "epoch": 40.111839231105286,
+ "grad_norm": 0.28025752305984497,
+ "learning_rate": 0.0006,
+ "loss": 3.6415746212005615,
+ "step": 2888
+ },
+ {
+ "epoch": 40.12581913499345,
+ "grad_norm": 0.28534311056137085,
+ "learning_rate": 0.0006,
+ "loss": 3.6302027702331543,
+ "step": 2889
+ },
+ {
+ "epoch": 40.139799038881605,
+ "grad_norm": 0.26842808723449707,
+ "learning_rate": 0.0006,
+ "loss": 3.657480239868164,
+ "step": 2890
+ },
+ {
+ "epoch": 40.15377894276977,
+ "grad_norm": 0.25235965847969055,
+ "learning_rate": 0.0006,
+ "loss": 3.6843931674957275,
+ "step": 2891
+ },
+ {
+ "epoch": 40.16775884665793,
+ "grad_norm": 0.22192128002643585,
+ "learning_rate": 0.0006,
+ "loss": 3.6374592781066895,
+ "step": 2892
+ },
+ {
+ "epoch": 40.18173875054609,
+ "grad_norm": 0.21524523198604584,
+ "learning_rate": 0.0006,
+ "loss": 3.6052589416503906,
+ "step": 2893
+ },
+ {
+ "epoch": 40.19571865443425,
+ "grad_norm": 0.21011514961719513,
+ "learning_rate": 0.0006,
+ "loss": 3.62197208404541,
+ "step": 2894
+ },
+ {
+ "epoch": 40.20969855832241,
+ "grad_norm": 0.23187001049518585,
+ "learning_rate": 0.0006,
+ "loss": 3.6505377292633057,
+ "step": 2895
+ },
+ {
+ "epoch": 40.22367846221057,
+ "grad_norm": 0.21962887048721313,
+ "learning_rate": 0.0006,
+ "loss": 3.594991683959961,
+ "step": 2896
+ },
+ {
+ "epoch": 40.237658366098735,
+ "grad_norm": 0.23299361765384674,
+ "learning_rate": 0.0006,
+ "loss": 3.6370339393615723,
+ "step": 2897
+ },
+ {
+ "epoch": 40.25163826998689,
+ "grad_norm": 0.22504881024360657,
+ "learning_rate": 0.0006,
+ "loss": 3.6173815727233887,
+ "step": 2898
+ },
+ {
+ "epoch": 40.265618173875055,
+ "grad_norm": 0.21678344905376434,
+ "learning_rate": 0.0006,
+ "loss": 3.6231422424316406,
+ "step": 2899
+ },
+ {
+ "epoch": 40.27959807776322,
+ "grad_norm": 0.2184615284204483,
+ "learning_rate": 0.0006,
+ "loss": 3.6552987098693848,
+ "step": 2900
+ },
+ {
+ "epoch": 40.293577981651374,
+ "grad_norm": 0.2145485281944275,
+ "learning_rate": 0.0006,
+ "loss": 3.628025531768799,
+ "step": 2901
+ },
+ {
+ "epoch": 40.30755788553954,
+ "grad_norm": 0.21119336783885956,
+ "learning_rate": 0.0006,
+ "loss": 3.6511590480804443,
+ "step": 2902
+ },
+ {
+ "epoch": 40.3215377894277,
+ "grad_norm": 0.2158869504928589,
+ "learning_rate": 0.0006,
+ "loss": 3.6302051544189453,
+ "step": 2903
+ },
+ {
+ "epoch": 40.33551769331586,
+ "grad_norm": 0.22736455500125885,
+ "learning_rate": 0.0006,
+ "loss": 3.6678733825683594,
+ "step": 2904
+ },
+ {
+ "epoch": 40.34949759720402,
+ "grad_norm": 0.22723783552646637,
+ "learning_rate": 0.0006,
+ "loss": 3.632068634033203,
+ "step": 2905
+ },
+ {
+ "epoch": 40.36347750109218,
+ "grad_norm": 0.20606189966201782,
+ "learning_rate": 0.0006,
+ "loss": 3.6534624099731445,
+ "step": 2906
+ },
+ {
+ "epoch": 40.37745740498034,
+ "grad_norm": 0.21033786237239838,
+ "learning_rate": 0.0006,
+ "loss": 3.6194064617156982,
+ "step": 2907
+ },
+ {
+ "epoch": 40.391437308868504,
+ "grad_norm": 0.2175762951374054,
+ "learning_rate": 0.0006,
+ "loss": 3.637385368347168,
+ "step": 2908
+ },
+ {
+ "epoch": 40.40541721275666,
+ "grad_norm": 0.21063381433486938,
+ "learning_rate": 0.0006,
+ "loss": 3.656857967376709,
+ "step": 2909
+ },
+ {
+ "epoch": 40.419397116644824,
+ "grad_norm": 0.19982226192951202,
+ "learning_rate": 0.0006,
+ "loss": 3.655738353729248,
+ "step": 2910
+ },
+ {
+ "epoch": 40.43337702053299,
+ "grad_norm": 0.20608870685100555,
+ "learning_rate": 0.0006,
+ "loss": 3.6521377563476562,
+ "step": 2911
+ },
+ {
+ "epoch": 40.44735692442114,
+ "grad_norm": 0.19817334413528442,
+ "learning_rate": 0.0006,
+ "loss": 3.61527681350708,
+ "step": 2912
+ },
+ {
+ "epoch": 40.46133682830931,
+ "grad_norm": 0.20407769083976746,
+ "learning_rate": 0.0006,
+ "loss": 3.6668765544891357,
+ "step": 2913
+ },
+ {
+ "epoch": 40.47531673219746,
+ "grad_norm": 0.19874799251556396,
+ "learning_rate": 0.0006,
+ "loss": 3.6748533248901367,
+ "step": 2914
+ },
+ {
+ "epoch": 40.489296636085626,
+ "grad_norm": 0.1979510486125946,
+ "learning_rate": 0.0006,
+ "loss": 3.6141977310180664,
+ "step": 2915
+ },
+ {
+ "epoch": 40.50327653997379,
+ "grad_norm": 0.19811518490314484,
+ "learning_rate": 0.0006,
+ "loss": 3.6391215324401855,
+ "step": 2916
+ },
+ {
+ "epoch": 40.517256443861946,
+ "grad_norm": 0.20208898186683655,
+ "learning_rate": 0.0006,
+ "loss": 3.664179801940918,
+ "step": 2917
+ },
+ {
+ "epoch": 40.53123634775011,
+ "grad_norm": 0.22063760459423065,
+ "learning_rate": 0.0006,
+ "loss": 3.645388126373291,
+ "step": 2918
+ },
+ {
+ "epoch": 40.54521625163827,
+ "grad_norm": 0.23420891165733337,
+ "learning_rate": 0.0006,
+ "loss": 3.6424708366394043,
+ "step": 2919
+ },
+ {
+ "epoch": 40.55919615552643,
+ "grad_norm": 0.2263612151145935,
+ "learning_rate": 0.0006,
+ "loss": 3.6649224758148193,
+ "step": 2920
+ },
+ {
+ "epoch": 40.57317605941459,
+ "grad_norm": 0.22745433449745178,
+ "learning_rate": 0.0006,
+ "loss": 3.631586790084839,
+ "step": 2921
+ },
+ {
+ "epoch": 40.58715596330275,
+ "grad_norm": 0.22413238883018494,
+ "learning_rate": 0.0006,
+ "loss": 3.6666674613952637,
+ "step": 2922
+ },
+ {
+ "epoch": 40.60113586719091,
+ "grad_norm": 0.2178265005350113,
+ "learning_rate": 0.0006,
+ "loss": 3.6002111434936523,
+ "step": 2923
+ },
+ {
+ "epoch": 40.615115771079076,
+ "grad_norm": 0.21822521090507507,
+ "learning_rate": 0.0006,
+ "loss": 3.6538329124450684,
+ "step": 2924
+ },
+ {
+ "epoch": 40.62909567496723,
+ "grad_norm": 0.21728558838367462,
+ "learning_rate": 0.0006,
+ "loss": 3.651254653930664,
+ "step": 2925
+ },
+ {
+ "epoch": 40.643075578855395,
+ "grad_norm": 0.22377707064151764,
+ "learning_rate": 0.0006,
+ "loss": 3.6505789756774902,
+ "step": 2926
+ },
+ {
+ "epoch": 40.65705548274356,
+ "grad_norm": 0.2035706788301468,
+ "learning_rate": 0.0006,
+ "loss": 3.6471967697143555,
+ "step": 2927
+ },
+ {
+ "epoch": 40.671035386631715,
+ "grad_norm": 0.2011154741048813,
+ "learning_rate": 0.0006,
+ "loss": 3.6582741737365723,
+ "step": 2928
+ },
+ {
+ "epoch": 40.68501529051988,
+ "grad_norm": 0.23812712728977203,
+ "learning_rate": 0.0006,
+ "loss": 3.6388421058654785,
+ "step": 2929
+ },
+ {
+ "epoch": 40.69899519440804,
+ "grad_norm": 0.2117796689271927,
+ "learning_rate": 0.0006,
+ "loss": 3.688337802886963,
+ "step": 2930
+ },
+ {
+ "epoch": 40.7129750982962,
+ "grad_norm": 0.18440942466259003,
+ "learning_rate": 0.0006,
+ "loss": 3.6409997940063477,
+ "step": 2931
+ },
+ {
+ "epoch": 40.72695500218436,
+ "grad_norm": 0.19005917012691498,
+ "learning_rate": 0.0006,
+ "loss": 3.6760218143463135,
+ "step": 2932
+ },
+ {
+ "epoch": 40.74093490607252,
+ "grad_norm": 0.19982726871967316,
+ "learning_rate": 0.0006,
+ "loss": 3.6375021934509277,
+ "step": 2933
+ },
+ {
+ "epoch": 40.75491480996068,
+ "grad_norm": 0.19240257143974304,
+ "learning_rate": 0.0006,
+ "loss": 3.636807918548584,
+ "step": 2934
+ },
+ {
+ "epoch": 40.768894713848844,
+ "grad_norm": 0.20563434064388275,
+ "learning_rate": 0.0006,
+ "loss": 3.6667532920837402,
+ "step": 2935
+ },
+ {
+ "epoch": 40.782874617737,
+ "grad_norm": 0.26531776785850525,
+ "learning_rate": 0.0006,
+ "loss": 3.6332945823669434,
+ "step": 2936
+ },
+ {
+ "epoch": 40.796854521625164,
+ "grad_norm": 0.2766861021518707,
+ "learning_rate": 0.0006,
+ "loss": 3.6645212173461914,
+ "step": 2937
+ },
+ {
+ "epoch": 40.81083442551333,
+ "grad_norm": 0.235750213265419,
+ "learning_rate": 0.0006,
+ "loss": 3.67067813873291,
+ "step": 2938
+ },
+ {
+ "epoch": 40.824814329401484,
+ "grad_norm": 0.20778773725032806,
+ "learning_rate": 0.0006,
+ "loss": 3.6565768718719482,
+ "step": 2939
+ },
+ {
+ "epoch": 40.83879423328965,
+ "grad_norm": 0.187322199344635,
+ "learning_rate": 0.0006,
+ "loss": 3.620129346847534,
+ "step": 2940
+ },
+ {
+ "epoch": 40.8527741371778,
+ "grad_norm": 0.20576219260692596,
+ "learning_rate": 0.0006,
+ "loss": 3.6700220108032227,
+ "step": 2941
+ },
+ {
+ "epoch": 40.86675404106597,
+ "grad_norm": 0.2197345495223999,
+ "learning_rate": 0.0006,
+ "loss": 3.709311008453369,
+ "step": 2942
+ },
+ {
+ "epoch": 40.88073394495413,
+ "grad_norm": 0.20205345749855042,
+ "learning_rate": 0.0006,
+ "loss": 3.6646361351013184,
+ "step": 2943
+ },
+ {
+ "epoch": 40.89471384884229,
+ "grad_norm": 0.20026250183582306,
+ "learning_rate": 0.0006,
+ "loss": 3.6639604568481445,
+ "step": 2944
+ },
+ {
+ "epoch": 40.90869375273045,
+ "grad_norm": 0.224214106798172,
+ "learning_rate": 0.0006,
+ "loss": 3.6669654846191406,
+ "step": 2945
+ },
+ {
+ "epoch": 40.92267365661861,
+ "grad_norm": 0.2155972272157669,
+ "learning_rate": 0.0006,
+ "loss": 3.6494603157043457,
+ "step": 2946
+ },
+ {
+ "epoch": 40.93665356050677,
+ "grad_norm": 0.23038871586322784,
+ "learning_rate": 0.0006,
+ "loss": 3.6368541717529297,
+ "step": 2947
+ },
+ {
+ "epoch": 40.95063346439493,
+ "grad_norm": 0.2001815289258957,
+ "learning_rate": 0.0006,
+ "loss": 3.711174249649048,
+ "step": 2948
+ },
+ {
+ "epoch": 40.964613368283096,
+ "grad_norm": 0.20428860187530518,
+ "learning_rate": 0.0006,
+ "loss": 3.6342315673828125,
+ "step": 2949
+ },
+ {
+ "epoch": 40.97859327217125,
+ "grad_norm": 0.20724134147167206,
+ "learning_rate": 0.0006,
+ "loss": 3.679375171661377,
+ "step": 2950
+ },
+ {
+ "epoch": 40.992573176059416,
+ "grad_norm": 0.20723849534988403,
+ "learning_rate": 0.0006,
+ "loss": 3.6477675437927246,
+ "step": 2951
+ },
+ {
+ "epoch": 41.0,
+ "grad_norm": 0.23891447484493256,
+ "learning_rate": 0.0006,
+ "loss": 3.632950782775879,
+ "step": 2952
+ },
+ {
+ "epoch": 41.0,
+ "eval_loss": 3.9871256351470947,
+ "eval_runtime": 43.8367,
+ "eval_samples_per_second": 55.707,
+ "eval_steps_per_second": 3.49,
+ "step": 2952
+ },
+ {
+ "epoch": 41.01397990388816,
+ "grad_norm": 0.2258434295654297,
+ "learning_rate": 0.0006,
+ "loss": 3.631239414215088,
+ "step": 2953
+ },
+ {
+ "epoch": 41.02795980777632,
+ "grad_norm": 0.24932795763015747,
+ "learning_rate": 0.0006,
+ "loss": 3.601083517074585,
+ "step": 2954
+ },
+ {
+ "epoch": 41.04193971166448,
+ "grad_norm": 0.2688388228416443,
+ "learning_rate": 0.0006,
+ "loss": 3.655724048614502,
+ "step": 2955
+ },
+ {
+ "epoch": 41.05591961555265,
+ "grad_norm": 0.23880694806575775,
+ "learning_rate": 0.0006,
+ "loss": 3.617628812789917,
+ "step": 2956
+ },
+ {
+ "epoch": 41.0698995194408,
+ "grad_norm": 0.23784616589546204,
+ "learning_rate": 0.0006,
+ "loss": 3.6309127807617188,
+ "step": 2957
+ },
+ {
+ "epoch": 41.083879423328966,
+ "grad_norm": 0.22609511017799377,
+ "learning_rate": 0.0006,
+ "loss": 3.6138553619384766,
+ "step": 2958
+ },
+ {
+ "epoch": 41.09785932721712,
+ "grad_norm": 0.22936329245567322,
+ "learning_rate": 0.0006,
+ "loss": 3.6620094776153564,
+ "step": 2959
+ },
+ {
+ "epoch": 41.111839231105286,
+ "grad_norm": 0.23354190587997437,
+ "learning_rate": 0.0006,
+ "loss": 3.59959077835083,
+ "step": 2960
+ },
+ {
+ "epoch": 41.12581913499345,
+ "grad_norm": 0.2496265172958374,
+ "learning_rate": 0.0006,
+ "loss": 3.588359832763672,
+ "step": 2961
+ },
+ {
+ "epoch": 41.139799038881605,
+ "grad_norm": 0.23618635535240173,
+ "learning_rate": 0.0006,
+ "loss": 3.6341018676757812,
+ "step": 2962
+ },
+ {
+ "epoch": 41.15377894276977,
+ "grad_norm": 0.23724640905857086,
+ "learning_rate": 0.0006,
+ "loss": 3.6170616149902344,
+ "step": 2963
+ },
+ {
+ "epoch": 41.16775884665793,
+ "grad_norm": 0.20944789052009583,
+ "learning_rate": 0.0006,
+ "loss": 3.6158995628356934,
+ "step": 2964
+ },
+ {
+ "epoch": 41.18173875054609,
+ "grad_norm": 0.2089492678642273,
+ "learning_rate": 0.0006,
+ "loss": 3.586538314819336,
+ "step": 2965
+ },
+ {
+ "epoch": 41.19571865443425,
+ "grad_norm": 0.2370915710926056,
+ "learning_rate": 0.0006,
+ "loss": 3.599236011505127,
+ "step": 2966
+ },
+ {
+ "epoch": 41.20969855832241,
+ "grad_norm": 0.25749558210372925,
+ "learning_rate": 0.0006,
+ "loss": 3.631399154663086,
+ "step": 2967
+ },
+ {
+ "epoch": 41.22367846221057,
+ "grad_norm": 0.24754776060581207,
+ "learning_rate": 0.0006,
+ "loss": 3.6503920555114746,
+ "step": 2968
+ },
+ {
+ "epoch": 41.237658366098735,
+ "grad_norm": 0.22060903906822205,
+ "learning_rate": 0.0006,
+ "loss": 3.671673536300659,
+ "step": 2969
+ },
+ {
+ "epoch": 41.25163826998689,
+ "grad_norm": 0.19416594505310059,
+ "learning_rate": 0.0006,
+ "loss": 3.6158413887023926,
+ "step": 2970
+ },
+ {
+ "epoch": 41.265618173875055,
+ "grad_norm": 0.22596411406993866,
+ "learning_rate": 0.0006,
+ "loss": 3.64003849029541,
+ "step": 2971
+ },
+ {
+ "epoch": 41.27959807776322,
+ "grad_norm": 0.26785415410995483,
+ "learning_rate": 0.0006,
+ "loss": 3.642327308654785,
+ "step": 2972
+ },
+ {
+ "epoch": 41.293577981651374,
+ "grad_norm": 0.2988710403442383,
+ "learning_rate": 0.0006,
+ "loss": 3.6018929481506348,
+ "step": 2973
+ },
+ {
+ "epoch": 41.30755788553954,
+ "grad_norm": 0.2428133338689804,
+ "learning_rate": 0.0006,
+ "loss": 3.645270824432373,
+ "step": 2974
+ },
+ {
+ "epoch": 41.3215377894277,
+ "grad_norm": 0.20330320298671722,
+ "learning_rate": 0.0006,
+ "loss": 3.625495433807373,
+ "step": 2975
+ },
+ {
+ "epoch": 41.33551769331586,
+ "grad_norm": 0.2267787605524063,
+ "learning_rate": 0.0006,
+ "loss": 3.6469204425811768,
+ "step": 2976
+ },
+ {
+ "epoch": 41.34949759720402,
+ "grad_norm": 0.20702822506427765,
+ "learning_rate": 0.0006,
+ "loss": 3.644191265106201,
+ "step": 2977
+ },
+ {
+ "epoch": 41.36347750109218,
+ "grad_norm": 0.19693221151828766,
+ "learning_rate": 0.0006,
+ "loss": 3.591794967651367,
+ "step": 2978
+ },
+ {
+ "epoch": 41.37745740498034,
+ "grad_norm": 0.21193185448646545,
+ "learning_rate": 0.0006,
+ "loss": 3.6283936500549316,
+ "step": 2979
+ },
+ {
+ "epoch": 41.391437308868504,
+ "grad_norm": 0.20953163504600525,
+ "learning_rate": 0.0006,
+ "loss": 3.617565155029297,
+ "step": 2980
+ },
+ {
+ "epoch": 41.40541721275666,
+ "grad_norm": 0.21839819848537445,
+ "learning_rate": 0.0006,
+ "loss": 3.621209144592285,
+ "step": 2981
+ },
+ {
+ "epoch": 41.419397116644824,
+ "grad_norm": 0.2152671068906784,
+ "learning_rate": 0.0006,
+ "loss": 3.643197536468506,
+ "step": 2982
+ },
+ {
+ "epoch": 41.43337702053299,
+ "grad_norm": 0.2507486641407013,
+ "learning_rate": 0.0006,
+ "loss": 3.657499313354492,
+ "step": 2983
+ },
+ {
+ "epoch": 41.44735692442114,
+ "grad_norm": 0.24695388972759247,
+ "learning_rate": 0.0006,
+ "loss": 3.62170672416687,
+ "step": 2984
+ },
+ {
+ "epoch": 41.46133682830931,
+ "grad_norm": 0.22652822732925415,
+ "learning_rate": 0.0006,
+ "loss": 3.64322566986084,
+ "step": 2985
+ },
+ {
+ "epoch": 41.47531673219746,
+ "grad_norm": 0.2575881779193878,
+ "learning_rate": 0.0006,
+ "loss": 3.659621477127075,
+ "step": 2986
+ },
+ {
+ "epoch": 41.489296636085626,
+ "grad_norm": 0.24162672460079193,
+ "learning_rate": 0.0006,
+ "loss": 3.6527223587036133,
+ "step": 2987
+ },
+ {
+ "epoch": 41.50327653997379,
+ "grad_norm": 0.20930497348308563,
+ "learning_rate": 0.0006,
+ "loss": 3.6412787437438965,
+ "step": 2988
+ },
+ {
+ "epoch": 41.517256443861946,
+ "grad_norm": 0.20480819046497345,
+ "learning_rate": 0.0006,
+ "loss": 3.614767074584961,
+ "step": 2989
+ },
+ {
+ "epoch": 41.53123634775011,
+ "grad_norm": 0.20015820860862732,
+ "learning_rate": 0.0006,
+ "loss": 3.6512045860290527,
+ "step": 2990
+ },
+ {
+ "epoch": 41.54521625163827,
+ "grad_norm": 0.20220743119716644,
+ "learning_rate": 0.0006,
+ "loss": 3.6732325553894043,
+ "step": 2991
+ },
+ {
+ "epoch": 41.55919615552643,
+ "grad_norm": 0.20505326986312866,
+ "learning_rate": 0.0006,
+ "loss": 3.6374664306640625,
+ "step": 2992
+ },
+ {
+ "epoch": 41.57317605941459,
+ "grad_norm": 0.19423344731330872,
+ "learning_rate": 0.0006,
+ "loss": 3.6564126014709473,
+ "step": 2993
+ },
+ {
+ "epoch": 41.58715596330275,
+ "grad_norm": 0.19284583628177643,
+ "learning_rate": 0.0006,
+ "loss": 3.6460509300231934,
+ "step": 2994
+ },
+ {
+ "epoch": 41.60113586719091,
+ "grad_norm": 0.18488959968090057,
+ "learning_rate": 0.0006,
+ "loss": 3.632859468460083,
+ "step": 2995
+ },
+ {
+ "epoch": 41.615115771079076,
+ "grad_norm": 0.18816296756267548,
+ "learning_rate": 0.0006,
+ "loss": 3.5958361625671387,
+ "step": 2996
+ },
+ {
+ "epoch": 41.62909567496723,
+ "grad_norm": 0.18987809121608734,
+ "learning_rate": 0.0006,
+ "loss": 3.6330695152282715,
+ "step": 2997
+ },
+ {
+ "epoch": 41.643075578855395,
+ "grad_norm": 0.18999919295310974,
+ "learning_rate": 0.0006,
+ "loss": 3.6486730575561523,
+ "step": 2998
+ },
+ {
+ "epoch": 41.65705548274356,
+ "grad_norm": 0.20190183818340302,
+ "learning_rate": 0.0006,
+ "loss": 3.6564230918884277,
+ "step": 2999
+ },
+ {
+ "epoch": 41.671035386631715,
+ "grad_norm": 0.20331363379955292,
+ "learning_rate": 0.0006,
+ "loss": 3.6789698600769043,
+ "step": 3000
+ },
+ {
+ "epoch": 41.68501529051988,
+ "grad_norm": 0.21599505841732025,
+ "learning_rate": 0.0006,
+ "loss": 3.6544511318206787,
+ "step": 3001
+ },
+ {
+ "epoch": 41.69899519440804,
+ "grad_norm": 0.21123184263706207,
+ "learning_rate": 0.0006,
+ "loss": 3.6506948471069336,
+ "step": 3002
+ },
+ {
+ "epoch": 41.7129750982962,
+ "grad_norm": 0.21337002515792847,
+ "learning_rate": 0.0006,
+ "loss": 3.676854372024536,
+ "step": 3003
+ },
+ {
+ "epoch": 41.72695500218436,
+ "grad_norm": 0.22567597031593323,
+ "learning_rate": 0.0006,
+ "loss": 3.6467485427856445,
+ "step": 3004
+ },
+ {
+ "epoch": 41.74093490607252,
+ "grad_norm": 0.22923491895198822,
+ "learning_rate": 0.0006,
+ "loss": 3.663224697113037,
+ "step": 3005
+ },
+ {
+ "epoch": 41.75491480996068,
+ "grad_norm": 0.21511489152908325,
+ "learning_rate": 0.0006,
+ "loss": 3.6290054321289062,
+ "step": 3006
+ },
+ {
+ "epoch": 41.768894713848844,
+ "grad_norm": 0.23855915665626526,
+ "learning_rate": 0.0006,
+ "loss": 3.631225109100342,
+ "step": 3007
+ },
+ {
+ "epoch": 41.782874617737,
+ "grad_norm": 0.22771067917346954,
+ "learning_rate": 0.0006,
+ "loss": 3.652575731277466,
+ "step": 3008
+ },
+ {
+ "epoch": 41.796854521625164,
+ "grad_norm": 0.2006237953901291,
+ "learning_rate": 0.0006,
+ "loss": 3.6883468627929688,
+ "step": 3009
+ },
+ {
+ "epoch": 41.81083442551333,
+ "grad_norm": 0.21182459592819214,
+ "learning_rate": 0.0006,
+ "loss": 3.6443567276000977,
+ "step": 3010
+ },
+ {
+ "epoch": 41.824814329401484,
+ "grad_norm": 0.21083690226078033,
+ "learning_rate": 0.0006,
+ "loss": 3.66660475730896,
+ "step": 3011
+ },
+ {
+ "epoch": 41.83879423328965,
+ "grad_norm": 0.21232296526432037,
+ "learning_rate": 0.0006,
+ "loss": 3.6436524391174316,
+ "step": 3012
+ },
+ {
+ "epoch": 41.8527741371778,
+ "grad_norm": 0.2089361697435379,
+ "learning_rate": 0.0006,
+ "loss": 3.648113250732422,
+ "step": 3013
+ },
+ {
+ "epoch": 41.86675404106597,
+ "grad_norm": 0.21517033874988556,
+ "learning_rate": 0.0006,
+ "loss": 3.6382269859313965,
+ "step": 3014
+ },
+ {
+ "epoch": 41.88073394495413,
+ "grad_norm": 0.1930733323097229,
+ "learning_rate": 0.0006,
+ "loss": 3.639441967010498,
+ "step": 3015
+ },
+ {
+ "epoch": 41.89471384884229,
+ "grad_norm": 0.18282832205295563,
+ "learning_rate": 0.0006,
+ "loss": 3.652860164642334,
+ "step": 3016
+ },
+ {
+ "epoch": 41.90869375273045,
+ "grad_norm": 0.18649716675281525,
+ "learning_rate": 0.0006,
+ "loss": 3.6335558891296387,
+ "step": 3017
+ },
+ {
+ "epoch": 41.92267365661861,
+ "grad_norm": 0.18873754143714905,
+ "learning_rate": 0.0006,
+ "loss": 3.6743149757385254,
+ "step": 3018
+ },
+ {
+ "epoch": 41.93665356050677,
+ "grad_norm": 0.1937907189130783,
+ "learning_rate": 0.0006,
+ "loss": 3.6749300956726074,
+ "step": 3019
+ },
+ {
+ "epoch": 41.95063346439493,
+ "grad_norm": 0.20620854198932648,
+ "learning_rate": 0.0006,
+ "loss": 3.6591262817382812,
+ "step": 3020
+ },
+ {
+ "epoch": 41.964613368283096,
+ "grad_norm": 0.18541009724140167,
+ "learning_rate": 0.0006,
+ "loss": 3.647010326385498,
+ "step": 3021
+ },
+ {
+ "epoch": 41.97859327217125,
+ "grad_norm": 0.19224928319454193,
+ "learning_rate": 0.0006,
+ "loss": 3.629920482635498,
+ "step": 3022
+ },
+ {
+ "epoch": 41.992573176059416,
+ "grad_norm": 0.21286419034004211,
+ "learning_rate": 0.0006,
+ "loss": 3.6516964435577393,
+ "step": 3023
+ },
+ {
+ "epoch": 42.0,
+ "grad_norm": 0.24787360429763794,
+ "learning_rate": 0.0006,
+ "loss": 3.6378865242004395,
+ "step": 3024
+ },
+ {
+ "epoch": 42.0,
+ "eval_loss": 3.9910318851470947,
+ "eval_runtime": 43.7914,
+ "eval_samples_per_second": 55.764,
+ "eval_steps_per_second": 3.494,
+ "step": 3024
+ },
+ {
+ "epoch": 42.01397990388816,
+ "grad_norm": 0.21036255359649658,
+ "learning_rate": 0.0006,
+ "loss": 3.6604344844818115,
+ "step": 3025
+ },
+ {
+ "epoch": 42.02795980777632,
+ "grad_norm": 0.22240597009658813,
+ "learning_rate": 0.0006,
+ "loss": 3.6160645484924316,
+ "step": 3026
+ },
+ {
+ "epoch": 42.04193971166448,
+ "grad_norm": 0.2487850785255432,
+ "learning_rate": 0.0006,
+ "loss": 3.6293773651123047,
+ "step": 3027
+ },
+ {
+ "epoch": 42.05591961555265,
+ "grad_norm": 0.27058133482933044,
+ "learning_rate": 0.0006,
+ "loss": 3.5827436447143555,
+ "step": 3028
+ },
+ {
+ "epoch": 42.0698995194408,
+ "grad_norm": 0.25001782178878784,
+ "learning_rate": 0.0006,
+ "loss": 3.5833029747009277,
+ "step": 3029
+ },
+ {
+ "epoch": 42.083879423328966,
+ "grad_norm": 0.23811939358711243,
+ "learning_rate": 0.0006,
+ "loss": 3.605585813522339,
+ "step": 3030
+ },
+ {
+ "epoch": 42.09785932721712,
+ "grad_norm": 0.23279601335525513,
+ "learning_rate": 0.0006,
+ "loss": 3.607205867767334,
+ "step": 3031
+ },
+ {
+ "epoch": 42.111839231105286,
+ "grad_norm": 0.24410508573055267,
+ "learning_rate": 0.0006,
+ "loss": 3.621175765991211,
+ "step": 3032
+ },
+ {
+ "epoch": 42.12581913499345,
+ "grad_norm": 0.24782028794288635,
+ "learning_rate": 0.0006,
+ "loss": 3.6236867904663086,
+ "step": 3033
+ },
+ {
+ "epoch": 42.139799038881605,
+ "grad_norm": 0.2301972657442093,
+ "learning_rate": 0.0006,
+ "loss": 3.603853464126587,
+ "step": 3034
+ },
+ {
+ "epoch": 42.15377894276977,
+ "grad_norm": 0.21988637745380402,
+ "learning_rate": 0.0006,
+ "loss": 3.600142002105713,
+ "step": 3035
+ },
+ {
+ "epoch": 42.16775884665793,
+ "grad_norm": 0.22623786330223083,
+ "learning_rate": 0.0006,
+ "loss": 3.61971116065979,
+ "step": 3036
+ },
+ {
+ "epoch": 42.18173875054609,
+ "grad_norm": 0.21844688057899475,
+ "learning_rate": 0.0006,
+ "loss": 3.61320161819458,
+ "step": 3037
+ },
+ {
+ "epoch": 42.19571865443425,
+ "grad_norm": 0.20444536209106445,
+ "learning_rate": 0.0006,
+ "loss": 3.6179633140563965,
+ "step": 3038
+ },
+ {
+ "epoch": 42.20969855832241,
+ "grad_norm": 0.22862036526203156,
+ "learning_rate": 0.0006,
+ "loss": 3.605433940887451,
+ "step": 3039
+ },
+ {
+ "epoch": 42.22367846221057,
+ "grad_norm": 0.2906605005264282,
+ "learning_rate": 0.0006,
+ "loss": 3.6279449462890625,
+ "step": 3040
+ },
+ {
+ "epoch": 42.237658366098735,
+ "grad_norm": 0.29074418544769287,
+ "learning_rate": 0.0006,
+ "loss": 3.5959763526916504,
+ "step": 3041
+ },
+ {
+ "epoch": 42.25163826998689,
+ "grad_norm": 0.1994444876909256,
+ "learning_rate": 0.0006,
+ "loss": 3.5858588218688965,
+ "step": 3042
+ },
+ {
+ "epoch": 42.265618173875055,
+ "grad_norm": 0.20793452858924866,
+ "learning_rate": 0.0006,
+ "loss": 3.604630470275879,
+ "step": 3043
+ },
+ {
+ "epoch": 42.27959807776322,
+ "grad_norm": 0.2119535505771637,
+ "learning_rate": 0.0006,
+ "loss": 3.6287126541137695,
+ "step": 3044
+ },
+ {
+ "epoch": 42.293577981651374,
+ "grad_norm": 0.21092535555362701,
+ "learning_rate": 0.0006,
+ "loss": 3.646294593811035,
+ "step": 3045
+ },
+ {
+ "epoch": 42.30755788553954,
+ "grad_norm": 0.21474479138851166,
+ "learning_rate": 0.0006,
+ "loss": 3.6364355087280273,
+ "step": 3046
+ },
+ {
+ "epoch": 42.3215377894277,
+ "grad_norm": 0.21100781857967377,
+ "learning_rate": 0.0006,
+ "loss": 3.622528553009033,
+ "step": 3047
+ },
+ {
+ "epoch": 42.33551769331586,
+ "grad_norm": 0.20739853382110596,
+ "learning_rate": 0.0006,
+ "loss": 3.6261959075927734,
+ "step": 3048
+ },
+ {
+ "epoch": 42.34949759720402,
+ "grad_norm": 0.22264131903648376,
+ "learning_rate": 0.0006,
+ "loss": 3.6195173263549805,
+ "step": 3049
+ },
+ {
+ "epoch": 42.36347750109218,
+ "grad_norm": 0.23696285486221313,
+ "learning_rate": 0.0006,
+ "loss": 3.631103515625,
+ "step": 3050
+ },
+ {
+ "epoch": 42.37745740498034,
+ "grad_norm": 0.2124902606010437,
+ "learning_rate": 0.0006,
+ "loss": 3.6490437984466553,
+ "step": 3051
+ },
+ {
+ "epoch": 42.391437308868504,
+ "grad_norm": 0.18831083178520203,
+ "learning_rate": 0.0006,
+ "loss": 3.628459930419922,
+ "step": 3052
+ },
+ {
+ "epoch": 42.40541721275666,
+ "grad_norm": 0.20390060544013977,
+ "learning_rate": 0.0006,
+ "loss": 3.6348538398742676,
+ "step": 3053
+ },
+ {
+ "epoch": 42.419397116644824,
+ "grad_norm": 0.2205851823091507,
+ "learning_rate": 0.0006,
+ "loss": 3.6286797523498535,
+ "step": 3054
+ },
+ {
+ "epoch": 42.43337702053299,
+ "grad_norm": 0.21518434584140778,
+ "learning_rate": 0.0006,
+ "loss": 3.5918965339660645,
+ "step": 3055
+ },
+ {
+ "epoch": 42.44735692442114,
+ "grad_norm": 0.2342296987771988,
+ "learning_rate": 0.0006,
+ "loss": 3.6364407539367676,
+ "step": 3056
+ },
+ {
+ "epoch": 42.46133682830931,
+ "grad_norm": 0.2304094135761261,
+ "learning_rate": 0.0006,
+ "loss": 3.6561477184295654,
+ "step": 3057
+ },
+ {
+ "epoch": 42.47531673219746,
+ "grad_norm": 0.20882441103458405,
+ "learning_rate": 0.0006,
+ "loss": 3.611250638961792,
+ "step": 3058
+ },
+ {
+ "epoch": 42.489296636085626,
+ "grad_norm": 0.24346643686294556,
+ "learning_rate": 0.0006,
+ "loss": 3.580082416534424,
+ "step": 3059
+ },
+ {
+ "epoch": 42.50327653997379,
+ "grad_norm": 0.260711133480072,
+ "learning_rate": 0.0006,
+ "loss": 3.6179792881011963,
+ "step": 3060
+ },
+ {
+ "epoch": 42.517256443861946,
+ "grad_norm": 0.21223759651184082,
+ "learning_rate": 0.0006,
+ "loss": 3.6153154373168945,
+ "step": 3061
+ },
+ {
+ "epoch": 42.53123634775011,
+ "grad_norm": 0.21429137885570526,
+ "learning_rate": 0.0006,
+ "loss": 3.6003379821777344,
+ "step": 3062
+ },
+ {
+ "epoch": 42.54521625163827,
+ "grad_norm": 0.23659434914588928,
+ "learning_rate": 0.0006,
+ "loss": 3.6540589332580566,
+ "step": 3063
+ },
+ {
+ "epoch": 42.55919615552643,
+ "grad_norm": 0.280344158411026,
+ "learning_rate": 0.0006,
+ "loss": 3.6406192779541016,
+ "step": 3064
+ },
+ {
+ "epoch": 42.57317605941459,
+ "grad_norm": 0.2903953194618225,
+ "learning_rate": 0.0006,
+ "loss": 3.643479824066162,
+ "step": 3065
+ },
+ {
+ "epoch": 42.58715596330275,
+ "grad_norm": 0.24958311021327972,
+ "learning_rate": 0.0006,
+ "loss": 3.6320221424102783,
+ "step": 3066
+ },
+ {
+ "epoch": 42.60113586719091,
+ "grad_norm": 0.22525225579738617,
+ "learning_rate": 0.0006,
+ "loss": 3.641676425933838,
+ "step": 3067
+ },
+ {
+ "epoch": 42.615115771079076,
+ "grad_norm": 0.23025161027908325,
+ "learning_rate": 0.0006,
+ "loss": 3.6465210914611816,
+ "step": 3068
+ },
+ {
+ "epoch": 42.62909567496723,
+ "grad_norm": 0.21947328746318817,
+ "learning_rate": 0.0006,
+ "loss": 3.667877435684204,
+ "step": 3069
+ },
+ {
+ "epoch": 42.643075578855395,
+ "grad_norm": 0.22809366881847382,
+ "learning_rate": 0.0006,
+ "loss": 3.663166046142578,
+ "step": 3070
+ },
+ {
+ "epoch": 42.65705548274356,
+ "grad_norm": 0.21938708424568176,
+ "learning_rate": 0.0006,
+ "loss": 3.619001865386963,
+ "step": 3071
+ },
+ {
+ "epoch": 42.671035386631715,
+ "grad_norm": 0.231620192527771,
+ "learning_rate": 0.0006,
+ "loss": 3.652332305908203,
+ "step": 3072
+ },
+ {
+ "epoch": 42.68501529051988,
+ "grad_norm": 0.23683936893939972,
+ "learning_rate": 0.0006,
+ "loss": 3.6633410453796387,
+ "step": 3073
+ },
+ {
+ "epoch": 42.69899519440804,
+ "grad_norm": 0.23752044141292572,
+ "learning_rate": 0.0006,
+ "loss": 3.646064281463623,
+ "step": 3074
+ },
+ {
+ "epoch": 42.7129750982962,
+ "grad_norm": 0.23041971027851105,
+ "learning_rate": 0.0006,
+ "loss": 3.6431851387023926,
+ "step": 3075
+ },
+ {
+ "epoch": 42.72695500218436,
+ "grad_norm": 0.220438614487648,
+ "learning_rate": 0.0006,
+ "loss": 3.6499950885772705,
+ "step": 3076
+ },
+ {
+ "epoch": 42.74093490607252,
+ "grad_norm": 0.24297107756137848,
+ "learning_rate": 0.0006,
+ "loss": 3.6655125617980957,
+ "step": 3077
+ },
+ {
+ "epoch": 42.75491480996068,
+ "grad_norm": 0.21835893392562866,
+ "learning_rate": 0.0006,
+ "loss": 3.61672043800354,
+ "step": 3078
+ },
+ {
+ "epoch": 42.768894713848844,
+ "grad_norm": 0.22490793466567993,
+ "learning_rate": 0.0006,
+ "loss": 3.652825355529785,
+ "step": 3079
+ },
+ {
+ "epoch": 42.782874617737,
+ "grad_norm": 0.2246086746454239,
+ "learning_rate": 0.0006,
+ "loss": 3.6290056705474854,
+ "step": 3080
+ },
+ {
+ "epoch": 42.796854521625164,
+ "grad_norm": 0.21527042984962463,
+ "learning_rate": 0.0006,
+ "loss": 3.6587281227111816,
+ "step": 3081
+ },
+ {
+ "epoch": 42.81083442551333,
+ "grad_norm": 0.19586899876594543,
+ "learning_rate": 0.0006,
+ "loss": 3.639626979827881,
+ "step": 3082
+ },
+ {
+ "epoch": 42.824814329401484,
+ "grad_norm": 0.20881155133247375,
+ "learning_rate": 0.0006,
+ "loss": 3.6305861473083496,
+ "step": 3083
+ },
+ {
+ "epoch": 42.83879423328965,
+ "grad_norm": 0.20094981789588928,
+ "learning_rate": 0.0006,
+ "loss": 3.609614849090576,
+ "step": 3084
+ },
+ {
+ "epoch": 42.8527741371778,
+ "grad_norm": 0.21786150336265564,
+ "learning_rate": 0.0006,
+ "loss": 3.6423556804656982,
+ "step": 3085
+ },
+ {
+ "epoch": 42.86675404106597,
+ "grad_norm": 0.24493595957756042,
+ "learning_rate": 0.0006,
+ "loss": 3.631321668624878,
+ "step": 3086
+ },
+ {
+ "epoch": 42.88073394495413,
+ "grad_norm": 0.2437327355146408,
+ "learning_rate": 0.0006,
+ "loss": 3.6624178886413574,
+ "step": 3087
+ },
+ {
+ "epoch": 42.89471384884229,
+ "grad_norm": 0.21020543575286865,
+ "learning_rate": 0.0006,
+ "loss": 3.6567513942718506,
+ "step": 3088
+ },
+ {
+ "epoch": 42.90869375273045,
+ "grad_norm": 0.18977083265781403,
+ "learning_rate": 0.0006,
+ "loss": 3.6268601417541504,
+ "step": 3089
+ },
+ {
+ "epoch": 42.92267365661861,
+ "grad_norm": 0.2211192399263382,
+ "learning_rate": 0.0006,
+ "loss": 3.6690402030944824,
+ "step": 3090
+ },
+ {
+ "epoch": 42.93665356050677,
+ "grad_norm": 0.2695990204811096,
+ "learning_rate": 0.0006,
+ "loss": 3.667701244354248,
+ "step": 3091
+ },
+ {
+ "epoch": 42.95063346439493,
+ "grad_norm": 0.25910887122154236,
+ "learning_rate": 0.0006,
+ "loss": 3.627504587173462,
+ "step": 3092
+ },
+ {
+ "epoch": 42.964613368283096,
+ "grad_norm": 0.2466248720884323,
+ "learning_rate": 0.0006,
+ "loss": 3.6462182998657227,
+ "step": 3093
+ },
+ {
+ "epoch": 42.97859327217125,
+ "grad_norm": 0.22997038066387177,
+ "learning_rate": 0.0006,
+ "loss": 3.647430896759033,
+ "step": 3094
+ },
+ {
+ "epoch": 42.992573176059416,
+ "grad_norm": 0.1989113837480545,
+ "learning_rate": 0.0006,
+ "loss": 3.6502084732055664,
+ "step": 3095
+ },
+ {
+ "epoch": 43.0,
+ "grad_norm": 0.22976496815681458,
+ "learning_rate": 0.0006,
+ "loss": 3.6963884830474854,
+ "step": 3096
+ },
+ {
+ "epoch": 43.0,
+ "eval_loss": 3.9656779766082764,
+ "eval_runtime": 43.9281,
+ "eval_samples_per_second": 55.591,
+ "eval_steps_per_second": 3.483,
+ "step": 3096
+ },
+ {
+ "epoch": 43.01397990388816,
+ "grad_norm": 0.2862325608730316,
+ "learning_rate": 0.0006,
+ "loss": 3.581247568130493,
+ "step": 3097
+ },
+ {
+ "epoch": 43.02795980777632,
+ "grad_norm": 0.3867015540599823,
+ "learning_rate": 0.0006,
+ "loss": 3.611076593399048,
+ "step": 3098
+ },
+ {
+ "epoch": 43.04193971166448,
+ "grad_norm": 0.4139448404312134,
+ "learning_rate": 0.0006,
+ "loss": 3.625164031982422,
+ "step": 3099
+ },
+ {
+ "epoch": 43.05591961555265,
+ "grad_norm": 0.292407363653183,
+ "learning_rate": 0.0006,
+ "loss": 3.615546703338623,
+ "step": 3100
+ },
+ {
+ "epoch": 43.0698995194408,
+ "grad_norm": 0.24272124469280243,
+ "learning_rate": 0.0006,
+ "loss": 3.5965943336486816,
+ "step": 3101
+ },
+ {
+ "epoch": 43.083879423328966,
+ "grad_norm": 0.2761254608631134,
+ "learning_rate": 0.0006,
+ "loss": 3.605706214904785,
+ "step": 3102
+ },
+ {
+ "epoch": 43.09785932721712,
+ "grad_norm": 0.25232183933258057,
+ "learning_rate": 0.0006,
+ "loss": 3.6252012252807617,
+ "step": 3103
+ },
+ {
+ "epoch": 43.111839231105286,
+ "grad_norm": 0.248970165848732,
+ "learning_rate": 0.0006,
+ "loss": 3.6028337478637695,
+ "step": 3104
+ },
+ {
+ "epoch": 43.12581913499345,
+ "grad_norm": 0.22088921070098877,
+ "learning_rate": 0.0006,
+ "loss": 3.591614007949829,
+ "step": 3105
+ },
+ {
+ "epoch": 43.139799038881605,
+ "grad_norm": 0.21528655290603638,
+ "learning_rate": 0.0006,
+ "loss": 3.6237306594848633,
+ "step": 3106
+ },
+ {
+ "epoch": 43.15377894276977,
+ "grad_norm": 0.22799135744571686,
+ "learning_rate": 0.0006,
+ "loss": 3.5968847274780273,
+ "step": 3107
+ },
+ {
+ "epoch": 43.16775884665793,
+ "grad_norm": 0.23102127015590668,
+ "learning_rate": 0.0006,
+ "loss": 3.6046414375305176,
+ "step": 3108
+ },
+ {
+ "epoch": 43.18173875054609,
+ "grad_norm": 0.22876501083374023,
+ "learning_rate": 0.0006,
+ "loss": 3.635608196258545,
+ "step": 3109
+ },
+ {
+ "epoch": 43.19571865443425,
+ "grad_norm": 0.24920420348644257,
+ "learning_rate": 0.0006,
+ "loss": 3.628662109375,
+ "step": 3110
+ },
+ {
+ "epoch": 43.20969855832241,
+ "grad_norm": 0.2527749538421631,
+ "learning_rate": 0.0006,
+ "loss": 3.6109046936035156,
+ "step": 3111
+ },
+ {
+ "epoch": 43.22367846221057,
+ "grad_norm": 0.22529229521751404,
+ "learning_rate": 0.0006,
+ "loss": 3.6536030769348145,
+ "step": 3112
+ },
+ {
+ "epoch": 43.237658366098735,
+ "grad_norm": 0.20031821727752686,
+ "learning_rate": 0.0006,
+ "loss": 3.6328792572021484,
+ "step": 3113
+ },
+ {
+ "epoch": 43.25163826998689,
+ "grad_norm": 0.21075189113616943,
+ "learning_rate": 0.0006,
+ "loss": 3.6200530529022217,
+ "step": 3114
+ },
+ {
+ "epoch": 43.265618173875055,
+ "grad_norm": 0.21164856851100922,
+ "learning_rate": 0.0006,
+ "loss": 3.6276001930236816,
+ "step": 3115
+ },
+ {
+ "epoch": 43.27959807776322,
+ "grad_norm": 0.19306758046150208,
+ "learning_rate": 0.0006,
+ "loss": 3.608675956726074,
+ "step": 3116
+ },
+ {
+ "epoch": 43.293577981651374,
+ "grad_norm": 0.20288796722888947,
+ "learning_rate": 0.0006,
+ "loss": 3.6057004928588867,
+ "step": 3117
+ },
+ {
+ "epoch": 43.30755788553954,
+ "grad_norm": 0.1901484876871109,
+ "learning_rate": 0.0006,
+ "loss": 3.6191725730895996,
+ "step": 3118
+ },
+ {
+ "epoch": 43.3215377894277,
+ "grad_norm": 0.19438181817531586,
+ "learning_rate": 0.0006,
+ "loss": 3.5814337730407715,
+ "step": 3119
+ },
+ {
+ "epoch": 43.33551769331586,
+ "grad_norm": 0.19924484193325043,
+ "learning_rate": 0.0006,
+ "loss": 3.6168713569641113,
+ "step": 3120
+ },
+ {
+ "epoch": 43.34949759720402,
+ "grad_norm": 0.20757409930229187,
+ "learning_rate": 0.0006,
+ "loss": 3.6281509399414062,
+ "step": 3121
+ },
+ {
+ "epoch": 43.36347750109218,
+ "grad_norm": 0.22500184178352356,
+ "learning_rate": 0.0006,
+ "loss": 3.635101795196533,
+ "step": 3122
+ },
+ {
+ "epoch": 43.37745740498034,
+ "grad_norm": 0.22061555087566376,
+ "learning_rate": 0.0006,
+ "loss": 3.630622386932373,
+ "step": 3123
+ },
+ {
+ "epoch": 43.391437308868504,
+ "grad_norm": 0.2094152420759201,
+ "learning_rate": 0.0006,
+ "loss": 3.581803798675537,
+ "step": 3124
+ },
+ {
+ "epoch": 43.40541721275666,
+ "grad_norm": 0.19607678055763245,
+ "learning_rate": 0.0006,
+ "loss": 3.6149864196777344,
+ "step": 3125
+ },
+ {
+ "epoch": 43.419397116644824,
+ "grad_norm": 0.18985028564929962,
+ "learning_rate": 0.0006,
+ "loss": 3.6338040828704834,
+ "step": 3126
+ },
+ {
+ "epoch": 43.43337702053299,
+ "grad_norm": 0.20490778982639313,
+ "learning_rate": 0.0006,
+ "loss": 3.63275146484375,
+ "step": 3127
+ },
+ {
+ "epoch": 43.44735692442114,
+ "grad_norm": 0.24385297298431396,
+ "learning_rate": 0.0006,
+ "loss": 3.6412134170532227,
+ "step": 3128
+ },
+ {
+ "epoch": 43.46133682830931,
+ "grad_norm": 0.243601992726326,
+ "learning_rate": 0.0006,
+ "loss": 3.594238758087158,
+ "step": 3129
+ },
+ {
+ "epoch": 43.47531673219746,
+ "grad_norm": 0.21314913034439087,
+ "learning_rate": 0.0006,
+ "loss": 3.5962629318237305,
+ "step": 3130
+ },
+ {
+ "epoch": 43.489296636085626,
+ "grad_norm": 0.20499329268932343,
+ "learning_rate": 0.0006,
+ "loss": 3.61600923538208,
+ "step": 3131
+ },
+ {
+ "epoch": 43.50327653997379,
+ "grad_norm": 0.20199540257453918,
+ "learning_rate": 0.0006,
+ "loss": 3.638469934463501,
+ "step": 3132
+ },
+ {
+ "epoch": 43.517256443861946,
+ "grad_norm": 0.19932983815670013,
+ "learning_rate": 0.0006,
+ "loss": 3.619145393371582,
+ "step": 3133
+ },
+ {
+ "epoch": 43.53123634775011,
+ "grad_norm": 0.20401954650878906,
+ "learning_rate": 0.0006,
+ "loss": 3.643700122833252,
+ "step": 3134
+ },
+ {
+ "epoch": 43.54521625163827,
+ "grad_norm": 0.20784904062747955,
+ "learning_rate": 0.0006,
+ "loss": 3.619272232055664,
+ "step": 3135
+ },
+ {
+ "epoch": 43.55919615552643,
+ "grad_norm": 0.21003122627735138,
+ "learning_rate": 0.0006,
+ "loss": 3.629542827606201,
+ "step": 3136
+ },
+ {
+ "epoch": 43.57317605941459,
+ "grad_norm": 0.2220298945903778,
+ "learning_rate": 0.0006,
+ "loss": 3.655543804168701,
+ "step": 3137
+ },
+ {
+ "epoch": 43.58715596330275,
+ "grad_norm": 0.21159163117408752,
+ "learning_rate": 0.0006,
+ "loss": 3.6092495918273926,
+ "step": 3138
+ },
+ {
+ "epoch": 43.60113586719091,
+ "grad_norm": 0.19462746381759644,
+ "learning_rate": 0.0006,
+ "loss": 3.6447129249572754,
+ "step": 3139
+ },
+ {
+ "epoch": 43.615115771079076,
+ "grad_norm": 0.20523829758167267,
+ "learning_rate": 0.0006,
+ "loss": 3.6292669773101807,
+ "step": 3140
+ },
+ {
+ "epoch": 43.62909567496723,
+ "grad_norm": 0.2172321230173111,
+ "learning_rate": 0.0006,
+ "loss": 3.6144580841064453,
+ "step": 3141
+ },
+ {
+ "epoch": 43.643075578855395,
+ "grad_norm": 0.21751564741134644,
+ "learning_rate": 0.0006,
+ "loss": 3.6381068229675293,
+ "step": 3142
+ },
+ {
+ "epoch": 43.65705548274356,
+ "grad_norm": 0.1914236694574356,
+ "learning_rate": 0.0006,
+ "loss": 3.6392078399658203,
+ "step": 3143
+ },
+ {
+ "epoch": 43.671035386631715,
+ "grad_norm": 0.19792547821998596,
+ "learning_rate": 0.0006,
+ "loss": 3.6394457817077637,
+ "step": 3144
+ },
+ {
+ "epoch": 43.68501529051988,
+ "grad_norm": 0.2106214165687561,
+ "learning_rate": 0.0006,
+ "loss": 3.626147747039795,
+ "step": 3145
+ },
+ {
+ "epoch": 43.69899519440804,
+ "grad_norm": 0.21802955865859985,
+ "learning_rate": 0.0006,
+ "loss": 3.63372802734375,
+ "step": 3146
+ },
+ {
+ "epoch": 43.7129750982962,
+ "grad_norm": 0.21498727798461914,
+ "learning_rate": 0.0006,
+ "loss": 3.6193063259124756,
+ "step": 3147
+ },
+ {
+ "epoch": 43.72695500218436,
+ "grad_norm": 0.2176690250635147,
+ "learning_rate": 0.0006,
+ "loss": 3.6431519985198975,
+ "step": 3148
+ },
+ {
+ "epoch": 43.74093490607252,
+ "grad_norm": 0.26883506774902344,
+ "learning_rate": 0.0006,
+ "loss": 3.6216721534729004,
+ "step": 3149
+ },
+ {
+ "epoch": 43.75491480996068,
+ "grad_norm": 0.23485299944877625,
+ "learning_rate": 0.0006,
+ "loss": 3.6361191272735596,
+ "step": 3150
+ },
+ {
+ "epoch": 43.768894713848844,
+ "grad_norm": 0.20496341586112976,
+ "learning_rate": 0.0006,
+ "loss": 3.6258792877197266,
+ "step": 3151
+ },
+ {
+ "epoch": 43.782874617737,
+ "grad_norm": 0.21792510151863098,
+ "learning_rate": 0.0006,
+ "loss": 3.6522839069366455,
+ "step": 3152
+ },
+ {
+ "epoch": 43.796854521625164,
+ "grad_norm": 0.2589452564716339,
+ "learning_rate": 0.0006,
+ "loss": 3.651235580444336,
+ "step": 3153
+ },
+ {
+ "epoch": 43.81083442551333,
+ "grad_norm": 0.24883611500263214,
+ "learning_rate": 0.0006,
+ "loss": 3.6382546424865723,
+ "step": 3154
+ },
+ {
+ "epoch": 43.824814329401484,
+ "grad_norm": 0.22466720640659332,
+ "learning_rate": 0.0006,
+ "loss": 3.6232261657714844,
+ "step": 3155
+ },
+ {
+ "epoch": 43.83879423328965,
+ "grad_norm": 0.19477292895317078,
+ "learning_rate": 0.0006,
+ "loss": 3.6350135803222656,
+ "step": 3156
+ },
+ {
+ "epoch": 43.8527741371778,
+ "grad_norm": 0.20302540063858032,
+ "learning_rate": 0.0006,
+ "loss": 3.638143539428711,
+ "step": 3157
+ },
+ {
+ "epoch": 43.86675404106597,
+ "grad_norm": 0.2112276554107666,
+ "learning_rate": 0.0006,
+ "loss": 3.6415610313415527,
+ "step": 3158
+ },
+ {
+ "epoch": 43.88073394495413,
+ "grad_norm": 0.20544779300689697,
+ "learning_rate": 0.0006,
+ "loss": 3.6437134742736816,
+ "step": 3159
+ },
+ {
+ "epoch": 43.89471384884229,
+ "grad_norm": 0.2320292890071869,
+ "learning_rate": 0.0006,
+ "loss": 3.6178359985351562,
+ "step": 3160
+ },
+ {
+ "epoch": 43.90869375273045,
+ "grad_norm": 0.25862693786621094,
+ "learning_rate": 0.0006,
+ "loss": 3.618229389190674,
+ "step": 3161
+ },
+ {
+ "epoch": 43.92267365661861,
+ "grad_norm": 0.2741934061050415,
+ "learning_rate": 0.0006,
+ "loss": 3.6046690940856934,
+ "step": 3162
+ },
+ {
+ "epoch": 43.93665356050677,
+ "grad_norm": 0.24312593042850494,
+ "learning_rate": 0.0006,
+ "loss": 3.5835556983947754,
+ "step": 3163
+ },
+ {
+ "epoch": 43.95063346439493,
+ "grad_norm": 0.22174517810344696,
+ "learning_rate": 0.0006,
+ "loss": 3.6505162715911865,
+ "step": 3164
+ },
+ {
+ "epoch": 43.964613368283096,
+ "grad_norm": 0.22016975283622742,
+ "learning_rate": 0.0006,
+ "loss": 3.6385562419891357,
+ "step": 3165
+ },
+ {
+ "epoch": 43.97859327217125,
+ "grad_norm": 0.23034313321113586,
+ "learning_rate": 0.0006,
+ "loss": 3.6345865726470947,
+ "step": 3166
+ },
+ {
+ "epoch": 43.992573176059416,
+ "grad_norm": 0.21236231923103333,
+ "learning_rate": 0.0006,
+ "loss": 3.6337084770202637,
+ "step": 3167
+ },
+ {
+ "epoch": 44.0,
+ "grad_norm": 0.2344549298286438,
+ "learning_rate": 0.0006,
+ "loss": 3.677978515625,
+ "step": 3168
+ },
+ {
+ "epoch": 44.0,
+ "eval_loss": 3.9817888736724854,
+ "eval_runtime": 44.4396,
+ "eval_samples_per_second": 54.951,
+ "eval_steps_per_second": 3.443,
+ "step": 3168
+ },
+ {
+ "epoch": 44.01397990388816,
+ "grad_norm": 0.19790801405906677,
+ "learning_rate": 0.0006,
+ "loss": 3.590817451477051,
+ "step": 3169
+ },
+ {
+ "epoch": 44.02795980777632,
+ "grad_norm": 0.22922387719154358,
+ "learning_rate": 0.0006,
+ "loss": 3.643888473510742,
+ "step": 3170
+ },
+ {
+ "epoch": 44.04193971166448,
+ "grad_norm": 0.24750149250030518,
+ "learning_rate": 0.0006,
+ "loss": 3.596278667449951,
+ "step": 3171
+ },
+ {
+ "epoch": 44.05591961555265,
+ "grad_norm": 0.2511967420578003,
+ "learning_rate": 0.0006,
+ "loss": 3.6138253211975098,
+ "step": 3172
+ },
+ {
+ "epoch": 44.0698995194408,
+ "grad_norm": 0.2530326843261719,
+ "learning_rate": 0.0006,
+ "loss": 3.5710060596466064,
+ "step": 3173
+ },
+ {
+ "epoch": 44.083879423328966,
+ "grad_norm": 0.2629041373729706,
+ "learning_rate": 0.0006,
+ "loss": 3.61676025390625,
+ "step": 3174
+ },
+ {
+ "epoch": 44.09785932721712,
+ "grad_norm": 0.27373939752578735,
+ "learning_rate": 0.0006,
+ "loss": 3.613091230392456,
+ "step": 3175
+ },
+ {
+ "epoch": 44.111839231105286,
+ "grad_norm": 0.24354346096515656,
+ "learning_rate": 0.0006,
+ "loss": 3.6133360862731934,
+ "step": 3176
+ },
+ {
+ "epoch": 44.12581913499345,
+ "grad_norm": 0.21540892124176025,
+ "learning_rate": 0.0006,
+ "loss": 3.6367645263671875,
+ "step": 3177
+ },
+ {
+ "epoch": 44.139799038881605,
+ "grad_norm": 0.22251278162002563,
+ "learning_rate": 0.0006,
+ "loss": 3.6266322135925293,
+ "step": 3178
+ },
+ {
+ "epoch": 44.15377894276977,
+ "grad_norm": 0.26196029782295227,
+ "learning_rate": 0.0006,
+ "loss": 3.616487979888916,
+ "step": 3179
+ },
+ {
+ "epoch": 44.16775884665793,
+ "grad_norm": 0.2614341080188751,
+ "learning_rate": 0.0006,
+ "loss": 3.5902786254882812,
+ "step": 3180
+ },
+ {
+ "epoch": 44.18173875054609,
+ "grad_norm": 0.23517177999019623,
+ "learning_rate": 0.0006,
+ "loss": 3.610124111175537,
+ "step": 3181
+ },
+ {
+ "epoch": 44.19571865443425,
+ "grad_norm": 0.20091469585895538,
+ "learning_rate": 0.0006,
+ "loss": 3.5861713886260986,
+ "step": 3182
+ },
+ {
+ "epoch": 44.20969855832241,
+ "grad_norm": 0.19659830629825592,
+ "learning_rate": 0.0006,
+ "loss": 3.6157889366149902,
+ "step": 3183
+ },
+ {
+ "epoch": 44.22367846221057,
+ "grad_norm": 0.20690861344337463,
+ "learning_rate": 0.0006,
+ "loss": 3.5710649490356445,
+ "step": 3184
+ },
+ {
+ "epoch": 44.237658366098735,
+ "grad_norm": 0.2478247433900833,
+ "learning_rate": 0.0006,
+ "loss": 3.609031915664673,
+ "step": 3185
+ },
+ {
+ "epoch": 44.25163826998689,
+ "grad_norm": 0.2678471505641937,
+ "learning_rate": 0.0006,
+ "loss": 3.6412887573242188,
+ "step": 3186
+ },
+ {
+ "epoch": 44.265618173875055,
+ "grad_norm": 0.21856079995632172,
+ "learning_rate": 0.0006,
+ "loss": 3.6113123893737793,
+ "step": 3187
+ },
+ {
+ "epoch": 44.27959807776322,
+ "grad_norm": 0.23104850947856903,
+ "learning_rate": 0.0006,
+ "loss": 3.6022086143493652,
+ "step": 3188
+ },
+ {
+ "epoch": 44.293577981651374,
+ "grad_norm": 0.2380223423242569,
+ "learning_rate": 0.0006,
+ "loss": 3.598735809326172,
+ "step": 3189
+ },
+ {
+ "epoch": 44.30755788553954,
+ "grad_norm": 0.23005320131778717,
+ "learning_rate": 0.0006,
+ "loss": 3.595881938934326,
+ "step": 3190
+ },
+ {
+ "epoch": 44.3215377894277,
+ "grad_norm": 0.23327432572841644,
+ "learning_rate": 0.0006,
+ "loss": 3.6198601722717285,
+ "step": 3191
+ },
+ {
+ "epoch": 44.33551769331586,
+ "grad_norm": 0.2272268831729889,
+ "learning_rate": 0.0006,
+ "loss": 3.6135387420654297,
+ "step": 3192
+ },
+ {
+ "epoch": 44.34949759720402,
+ "grad_norm": 0.2518279552459717,
+ "learning_rate": 0.0006,
+ "loss": 3.6084556579589844,
+ "step": 3193
+ },
+ {
+ "epoch": 44.36347750109218,
+ "grad_norm": 0.27668607234954834,
+ "learning_rate": 0.0006,
+ "loss": 3.644430160522461,
+ "step": 3194
+ },
+ {
+ "epoch": 44.37745740498034,
+ "grad_norm": 0.26110342144966125,
+ "learning_rate": 0.0006,
+ "loss": 3.64072322845459,
+ "step": 3195
+ },
+ {
+ "epoch": 44.391437308868504,
+ "grad_norm": 0.22767964005470276,
+ "learning_rate": 0.0006,
+ "loss": 3.5570502281188965,
+ "step": 3196
+ },
+ {
+ "epoch": 44.40541721275666,
+ "grad_norm": 0.2199093997478485,
+ "learning_rate": 0.0006,
+ "loss": 3.558889150619507,
+ "step": 3197
+ },
+ {
+ "epoch": 44.419397116644824,
+ "grad_norm": 0.21653494238853455,
+ "learning_rate": 0.0006,
+ "loss": 3.6215333938598633,
+ "step": 3198
+ },
+ {
+ "epoch": 44.43337702053299,
+ "grad_norm": 0.1958773136138916,
+ "learning_rate": 0.0006,
+ "loss": 3.588468551635742,
+ "step": 3199
+ },
+ {
+ "epoch": 44.44735692442114,
+ "grad_norm": 0.20205403864383698,
+ "learning_rate": 0.0006,
+ "loss": 3.6109578609466553,
+ "step": 3200
+ },
+ {
+ "epoch": 44.46133682830931,
+ "grad_norm": 0.19632115960121155,
+ "learning_rate": 0.0006,
+ "loss": 3.634315013885498,
+ "step": 3201
+ },
+ {
+ "epoch": 44.47531673219746,
+ "grad_norm": 0.19327203929424286,
+ "learning_rate": 0.0006,
+ "loss": 3.6335930824279785,
+ "step": 3202
+ },
+ {
+ "epoch": 44.489296636085626,
+ "grad_norm": 0.19743897020816803,
+ "learning_rate": 0.0006,
+ "loss": 3.6164016723632812,
+ "step": 3203
+ },
+ {
+ "epoch": 44.50327653997379,
+ "grad_norm": 0.20413564145565033,
+ "learning_rate": 0.0006,
+ "loss": 3.663613796234131,
+ "step": 3204
+ },
+ {
+ "epoch": 44.517256443861946,
+ "grad_norm": 0.2057798206806183,
+ "learning_rate": 0.0006,
+ "loss": 3.625131130218506,
+ "step": 3205
+ },
+ {
+ "epoch": 44.53123634775011,
+ "grad_norm": 0.20076915621757507,
+ "learning_rate": 0.0006,
+ "loss": 3.6362178325653076,
+ "step": 3206
+ },
+ {
+ "epoch": 44.54521625163827,
+ "grad_norm": 0.2381955236196518,
+ "learning_rate": 0.0006,
+ "loss": 3.621263265609741,
+ "step": 3207
+ },
+ {
+ "epoch": 44.55919615552643,
+ "grad_norm": 0.27008768916130066,
+ "learning_rate": 0.0006,
+ "loss": 3.6133322715759277,
+ "step": 3208
+ },
+ {
+ "epoch": 44.57317605941459,
+ "grad_norm": 0.25677573680877686,
+ "learning_rate": 0.0006,
+ "loss": 3.6210851669311523,
+ "step": 3209
+ },
+ {
+ "epoch": 44.58715596330275,
+ "grad_norm": 0.21022997796535492,
+ "learning_rate": 0.0006,
+ "loss": 3.626483917236328,
+ "step": 3210
+ },
+ {
+ "epoch": 44.60113586719091,
+ "grad_norm": 0.19918566942214966,
+ "learning_rate": 0.0006,
+ "loss": 3.6321091651916504,
+ "step": 3211
+ },
+ {
+ "epoch": 44.615115771079076,
+ "grad_norm": 0.2114727795124054,
+ "learning_rate": 0.0006,
+ "loss": 3.5767595767974854,
+ "step": 3212
+ },
+ {
+ "epoch": 44.62909567496723,
+ "grad_norm": 0.20968441665172577,
+ "learning_rate": 0.0006,
+ "loss": 3.6040430068969727,
+ "step": 3213
+ },
+ {
+ "epoch": 44.643075578855395,
+ "grad_norm": 0.19996227324008942,
+ "learning_rate": 0.0006,
+ "loss": 3.6688590049743652,
+ "step": 3214
+ },
+ {
+ "epoch": 44.65705548274356,
+ "grad_norm": 0.19998830556869507,
+ "learning_rate": 0.0006,
+ "loss": 3.6349434852600098,
+ "step": 3215
+ },
+ {
+ "epoch": 44.671035386631715,
+ "grad_norm": 0.20812496542930603,
+ "learning_rate": 0.0006,
+ "loss": 3.6363840103149414,
+ "step": 3216
+ },
+ {
+ "epoch": 44.68501529051988,
+ "grad_norm": 0.1988825500011444,
+ "learning_rate": 0.0006,
+ "loss": 3.6180496215820312,
+ "step": 3217
+ },
+ {
+ "epoch": 44.69899519440804,
+ "grad_norm": 0.2114664614200592,
+ "learning_rate": 0.0006,
+ "loss": 3.6362106800079346,
+ "step": 3218
+ },
+ {
+ "epoch": 44.7129750982962,
+ "grad_norm": 0.19847962260246277,
+ "learning_rate": 0.0006,
+ "loss": 3.618500232696533,
+ "step": 3219
+ },
+ {
+ "epoch": 44.72695500218436,
+ "grad_norm": 0.19903887808322906,
+ "learning_rate": 0.0006,
+ "loss": 3.6360888481140137,
+ "step": 3220
+ },
+ {
+ "epoch": 44.74093490607252,
+ "grad_norm": 0.21198545396327972,
+ "learning_rate": 0.0006,
+ "loss": 3.6347005367279053,
+ "step": 3221
+ },
+ {
+ "epoch": 44.75491480996068,
+ "grad_norm": 0.18334898352622986,
+ "learning_rate": 0.0006,
+ "loss": 3.6160783767700195,
+ "step": 3222
+ },
+ {
+ "epoch": 44.768894713848844,
+ "grad_norm": 0.19260665774345398,
+ "learning_rate": 0.0006,
+ "loss": 3.6322834491729736,
+ "step": 3223
+ },
+ {
+ "epoch": 44.782874617737,
+ "grad_norm": 0.2084558755159378,
+ "learning_rate": 0.0006,
+ "loss": 3.615227699279785,
+ "step": 3224
+ },
+ {
+ "epoch": 44.796854521625164,
+ "grad_norm": 0.24538686871528625,
+ "learning_rate": 0.0006,
+ "loss": 3.6387081146240234,
+ "step": 3225
+ },
+ {
+ "epoch": 44.81083442551333,
+ "grad_norm": 0.23291894793510437,
+ "learning_rate": 0.0006,
+ "loss": 3.6245408058166504,
+ "step": 3226
+ },
+ {
+ "epoch": 44.824814329401484,
+ "grad_norm": 0.20715969800949097,
+ "learning_rate": 0.0006,
+ "loss": 3.633620262145996,
+ "step": 3227
+ },
+ {
+ "epoch": 44.83879423328965,
+ "grad_norm": 0.20866821706295013,
+ "learning_rate": 0.0006,
+ "loss": 3.613438129425049,
+ "step": 3228
+ },
+ {
+ "epoch": 44.8527741371778,
+ "grad_norm": 0.2048904299736023,
+ "learning_rate": 0.0006,
+ "loss": 3.668807029724121,
+ "step": 3229
+ },
+ {
+ "epoch": 44.86675404106597,
+ "grad_norm": 0.2073894739151001,
+ "learning_rate": 0.0006,
+ "loss": 3.6000914573669434,
+ "step": 3230
+ },
+ {
+ "epoch": 44.88073394495413,
+ "grad_norm": 0.22017404437065125,
+ "learning_rate": 0.0006,
+ "loss": 3.6024718284606934,
+ "step": 3231
+ },
+ {
+ "epoch": 44.89471384884229,
+ "grad_norm": 0.23971669375896454,
+ "learning_rate": 0.0006,
+ "loss": 3.6339516639709473,
+ "step": 3232
+ },
+ {
+ "epoch": 44.90869375273045,
+ "grad_norm": 0.2258273959159851,
+ "learning_rate": 0.0006,
+ "loss": 3.6480093002319336,
+ "step": 3233
+ },
+ {
+ "epoch": 44.92267365661861,
+ "grad_norm": 0.22079502046108246,
+ "learning_rate": 0.0006,
+ "loss": 3.643446922302246,
+ "step": 3234
+ },
+ {
+ "epoch": 44.93665356050677,
+ "grad_norm": 0.22109337151050568,
+ "learning_rate": 0.0006,
+ "loss": 3.5975499153137207,
+ "step": 3235
+ },
+ {
+ "epoch": 44.95063346439493,
+ "grad_norm": 0.20142309367656708,
+ "learning_rate": 0.0006,
+ "loss": 3.6057305335998535,
+ "step": 3236
+ },
+ {
+ "epoch": 44.964613368283096,
+ "grad_norm": 0.20089569687843323,
+ "learning_rate": 0.0006,
+ "loss": 3.5900750160217285,
+ "step": 3237
+ },
+ {
+ "epoch": 44.97859327217125,
+ "grad_norm": 0.19860075414180756,
+ "learning_rate": 0.0006,
+ "loss": 3.5954184532165527,
+ "step": 3238
+ },
+ {
+ "epoch": 44.992573176059416,
+ "grad_norm": 0.19166013598442078,
+ "learning_rate": 0.0006,
+ "loss": 3.6568803787231445,
+ "step": 3239
+ },
+ {
+ "epoch": 45.0,
+ "grad_norm": 0.22416932880878448,
+ "learning_rate": 0.0006,
+ "loss": 3.6483092308044434,
+ "step": 3240
+ },
+ {
+ "epoch": 45.0,
+ "eval_loss": 3.9821224212646484,
+ "eval_runtime": 44.5415,
+ "eval_samples_per_second": 54.825,
+ "eval_steps_per_second": 3.435,
+ "step": 3240
+ },
+ {
+ "epoch": 45.01397990388816,
+ "grad_norm": 0.2107669562101364,
+ "learning_rate": 0.0006,
+ "loss": 3.5858099460601807,
+ "step": 3241
+ },
+ {
+ "epoch": 45.02795980777632,
+ "grad_norm": 0.20831939578056335,
+ "learning_rate": 0.0006,
+ "loss": 3.5793800354003906,
+ "step": 3242
+ },
+ {
+ "epoch": 45.04193971166448,
+ "grad_norm": 0.2169167846441269,
+ "learning_rate": 0.0006,
+ "loss": 3.601961135864258,
+ "step": 3243
+ },
+ {
+ "epoch": 45.05591961555265,
+ "grad_norm": 0.22451531887054443,
+ "learning_rate": 0.0006,
+ "loss": 3.586371898651123,
+ "step": 3244
+ },
+ {
+ "epoch": 45.0698995194408,
+ "grad_norm": 0.2187003344297409,
+ "learning_rate": 0.0006,
+ "loss": 3.58760929107666,
+ "step": 3245
+ },
+ {
+ "epoch": 45.083879423328966,
+ "grad_norm": 0.22805631160736084,
+ "learning_rate": 0.0006,
+ "loss": 3.554107904434204,
+ "step": 3246
+ },
+ {
+ "epoch": 45.09785932721712,
+ "grad_norm": 0.2573186159133911,
+ "learning_rate": 0.0006,
+ "loss": 3.5815420150756836,
+ "step": 3247
+ },
+ {
+ "epoch": 45.111839231105286,
+ "grad_norm": 0.25940126180648804,
+ "learning_rate": 0.0006,
+ "loss": 3.5754308700561523,
+ "step": 3248
+ },
+ {
+ "epoch": 45.12581913499345,
+ "grad_norm": 0.23834384977817535,
+ "learning_rate": 0.0006,
+ "loss": 3.5857350826263428,
+ "step": 3249
+ },
+ {
+ "epoch": 45.139799038881605,
+ "grad_norm": 0.23342885076999664,
+ "learning_rate": 0.0006,
+ "loss": 3.6116228103637695,
+ "step": 3250
+ },
+ {
+ "epoch": 45.15377894276977,
+ "grad_norm": 0.23284269869327545,
+ "learning_rate": 0.0006,
+ "loss": 3.5778629779815674,
+ "step": 3251
+ },
+ {
+ "epoch": 45.16775884665793,
+ "grad_norm": 0.30510780215263367,
+ "learning_rate": 0.0006,
+ "loss": 3.5888915061950684,
+ "step": 3252
+ },
+ {
+ "epoch": 45.18173875054609,
+ "grad_norm": 0.3462519645690918,
+ "learning_rate": 0.0006,
+ "loss": 3.5955758094787598,
+ "step": 3253
+ },
+ {
+ "epoch": 45.19571865443425,
+ "grad_norm": 0.2795974314212799,
+ "learning_rate": 0.0006,
+ "loss": 3.6222946643829346,
+ "step": 3254
+ },
+ {
+ "epoch": 45.20969855832241,
+ "grad_norm": 0.24624103307724,
+ "learning_rate": 0.0006,
+ "loss": 3.63046932220459,
+ "step": 3255
+ },
+ {
+ "epoch": 45.22367846221057,
+ "grad_norm": 0.23007310926914215,
+ "learning_rate": 0.0006,
+ "loss": 3.652526378631592,
+ "step": 3256
+ },
+ {
+ "epoch": 45.237658366098735,
+ "grad_norm": 0.21325333416461945,
+ "learning_rate": 0.0006,
+ "loss": 3.5960049629211426,
+ "step": 3257
+ },
+ {
+ "epoch": 45.25163826998689,
+ "grad_norm": 0.22697314620018005,
+ "learning_rate": 0.0006,
+ "loss": 3.5723695755004883,
+ "step": 3258
+ },
+ {
+ "epoch": 45.265618173875055,
+ "grad_norm": 0.21900491416454315,
+ "learning_rate": 0.0006,
+ "loss": 3.613572120666504,
+ "step": 3259
+ },
+ {
+ "epoch": 45.27959807776322,
+ "grad_norm": 0.21030694246292114,
+ "learning_rate": 0.0006,
+ "loss": 3.5830235481262207,
+ "step": 3260
+ },
+ {
+ "epoch": 45.293577981651374,
+ "grad_norm": 0.20229968428611755,
+ "learning_rate": 0.0006,
+ "loss": 3.620349884033203,
+ "step": 3261
+ },
+ {
+ "epoch": 45.30755788553954,
+ "grad_norm": 0.21611201763153076,
+ "learning_rate": 0.0006,
+ "loss": 3.5937819480895996,
+ "step": 3262
+ },
+ {
+ "epoch": 45.3215377894277,
+ "grad_norm": 0.21876764297485352,
+ "learning_rate": 0.0006,
+ "loss": 3.6180777549743652,
+ "step": 3263
+ },
+ {
+ "epoch": 45.33551769331586,
+ "grad_norm": 0.200356587767601,
+ "learning_rate": 0.0006,
+ "loss": 3.6140146255493164,
+ "step": 3264
+ },
+ {
+ "epoch": 45.34949759720402,
+ "grad_norm": 0.19151835143566132,
+ "learning_rate": 0.0006,
+ "loss": 3.607077121734619,
+ "step": 3265
+ },
+ {
+ "epoch": 45.36347750109218,
+ "grad_norm": 0.1994648575782776,
+ "learning_rate": 0.0006,
+ "loss": 3.646780490875244,
+ "step": 3266
+ },
+ {
+ "epoch": 45.37745740498034,
+ "grad_norm": 0.23145829141139984,
+ "learning_rate": 0.0006,
+ "loss": 3.624591588973999,
+ "step": 3267
+ },
+ {
+ "epoch": 45.391437308868504,
+ "grad_norm": 0.23608829081058502,
+ "learning_rate": 0.0006,
+ "loss": 3.598904609680176,
+ "step": 3268
+ },
+ {
+ "epoch": 45.40541721275666,
+ "grad_norm": 0.22254547476768494,
+ "learning_rate": 0.0006,
+ "loss": 3.581087827682495,
+ "step": 3269
+ },
+ {
+ "epoch": 45.419397116644824,
+ "grad_norm": 0.21640023589134216,
+ "learning_rate": 0.0006,
+ "loss": 3.5961151123046875,
+ "step": 3270
+ },
+ {
+ "epoch": 45.43337702053299,
+ "grad_norm": 0.2252444475889206,
+ "learning_rate": 0.0006,
+ "loss": 3.590231418609619,
+ "step": 3271
+ },
+ {
+ "epoch": 45.44735692442114,
+ "grad_norm": 0.23785367608070374,
+ "learning_rate": 0.0006,
+ "loss": 3.615896701812744,
+ "step": 3272
+ },
+ {
+ "epoch": 45.46133682830931,
+ "grad_norm": 0.2509191036224365,
+ "learning_rate": 0.0006,
+ "loss": 3.6413722038269043,
+ "step": 3273
+ },
+ {
+ "epoch": 45.47531673219746,
+ "grad_norm": 0.23734210431575775,
+ "learning_rate": 0.0006,
+ "loss": 3.608898639678955,
+ "step": 3274
+ },
+ {
+ "epoch": 45.489296636085626,
+ "grad_norm": 0.19802412390708923,
+ "learning_rate": 0.0006,
+ "loss": 3.5957250595092773,
+ "step": 3275
+ },
+ {
+ "epoch": 45.50327653997379,
+ "grad_norm": 0.20621423423290253,
+ "learning_rate": 0.0006,
+ "loss": 3.607945442199707,
+ "step": 3276
+ },
+ {
+ "epoch": 45.517256443861946,
+ "grad_norm": 0.225870743393898,
+ "learning_rate": 0.0006,
+ "loss": 3.641449451446533,
+ "step": 3277
+ },
+ {
+ "epoch": 45.53123634775011,
+ "grad_norm": 0.21482397615909576,
+ "learning_rate": 0.0006,
+ "loss": 3.61629581451416,
+ "step": 3278
+ },
+ {
+ "epoch": 45.54521625163827,
+ "grad_norm": 0.21159376204013824,
+ "learning_rate": 0.0006,
+ "loss": 3.5977988243103027,
+ "step": 3279
+ },
+ {
+ "epoch": 45.55919615552643,
+ "grad_norm": 0.2031678408384323,
+ "learning_rate": 0.0006,
+ "loss": 3.629343032836914,
+ "step": 3280
+ },
+ {
+ "epoch": 45.57317605941459,
+ "grad_norm": 0.1827101707458496,
+ "learning_rate": 0.0006,
+ "loss": 3.6161365509033203,
+ "step": 3281
+ },
+ {
+ "epoch": 45.58715596330275,
+ "grad_norm": 0.21884584426879883,
+ "learning_rate": 0.0006,
+ "loss": 3.6131834983825684,
+ "step": 3282
+ },
+ {
+ "epoch": 45.60113586719091,
+ "grad_norm": 0.21764980256557465,
+ "learning_rate": 0.0006,
+ "loss": 3.612516164779663,
+ "step": 3283
+ },
+ {
+ "epoch": 45.615115771079076,
+ "grad_norm": 0.22257080674171448,
+ "learning_rate": 0.0006,
+ "loss": 3.63425874710083,
+ "step": 3284
+ },
+ {
+ "epoch": 45.62909567496723,
+ "grad_norm": 0.2419128566980362,
+ "learning_rate": 0.0006,
+ "loss": 3.602997064590454,
+ "step": 3285
+ },
+ {
+ "epoch": 45.643075578855395,
+ "grad_norm": 0.20856884121894836,
+ "learning_rate": 0.0006,
+ "loss": 3.597352981567383,
+ "step": 3286
+ },
+ {
+ "epoch": 45.65705548274356,
+ "grad_norm": 0.20298589766025543,
+ "learning_rate": 0.0006,
+ "loss": 3.5961315631866455,
+ "step": 3287
+ },
+ {
+ "epoch": 45.671035386631715,
+ "grad_norm": 0.19006133079528809,
+ "learning_rate": 0.0006,
+ "loss": 3.6314568519592285,
+ "step": 3288
+ },
+ {
+ "epoch": 45.68501529051988,
+ "grad_norm": 0.20886142551898956,
+ "learning_rate": 0.0006,
+ "loss": 3.6200413703918457,
+ "step": 3289
+ },
+ {
+ "epoch": 45.69899519440804,
+ "grad_norm": 0.18085862696170807,
+ "learning_rate": 0.0006,
+ "loss": 3.6273961067199707,
+ "step": 3290
+ },
+ {
+ "epoch": 45.7129750982962,
+ "grad_norm": 0.18651945888996124,
+ "learning_rate": 0.0006,
+ "loss": 3.6490976810455322,
+ "step": 3291
+ },
+ {
+ "epoch": 45.72695500218436,
+ "grad_norm": 0.19668170809745789,
+ "learning_rate": 0.0006,
+ "loss": 3.610409736633301,
+ "step": 3292
+ },
+ {
+ "epoch": 45.74093490607252,
+ "grad_norm": 0.19865764677524567,
+ "learning_rate": 0.0006,
+ "loss": 3.614025115966797,
+ "step": 3293
+ },
+ {
+ "epoch": 45.75491480996068,
+ "grad_norm": 0.20814085006713867,
+ "learning_rate": 0.0006,
+ "loss": 3.6220510005950928,
+ "step": 3294
+ },
+ {
+ "epoch": 45.768894713848844,
+ "grad_norm": 0.20996463298797607,
+ "learning_rate": 0.0006,
+ "loss": 3.5754218101501465,
+ "step": 3295
+ },
+ {
+ "epoch": 45.782874617737,
+ "grad_norm": 0.1987130492925644,
+ "learning_rate": 0.0006,
+ "loss": 3.614746570587158,
+ "step": 3296
+ },
+ {
+ "epoch": 45.796854521625164,
+ "grad_norm": 0.23048028349876404,
+ "learning_rate": 0.0006,
+ "loss": 3.602620840072632,
+ "step": 3297
+ },
+ {
+ "epoch": 45.81083442551333,
+ "grad_norm": 0.21877387166023254,
+ "learning_rate": 0.0006,
+ "loss": 3.6294198036193848,
+ "step": 3298
+ },
+ {
+ "epoch": 45.824814329401484,
+ "grad_norm": 0.20007763803005219,
+ "learning_rate": 0.0006,
+ "loss": 3.630868434906006,
+ "step": 3299
+ },
+ {
+ "epoch": 45.83879423328965,
+ "grad_norm": 0.200496107339859,
+ "learning_rate": 0.0006,
+ "loss": 3.5972986221313477,
+ "step": 3300
+ },
+ {
+ "epoch": 45.8527741371778,
+ "grad_norm": 0.20494480431079865,
+ "learning_rate": 0.0006,
+ "loss": 3.61934494972229,
+ "step": 3301
+ },
+ {
+ "epoch": 45.86675404106597,
+ "grad_norm": 0.21374984085559845,
+ "learning_rate": 0.0006,
+ "loss": 3.6236257553100586,
+ "step": 3302
+ },
+ {
+ "epoch": 45.88073394495413,
+ "grad_norm": 0.22020408511161804,
+ "learning_rate": 0.0006,
+ "loss": 3.6030755043029785,
+ "step": 3303
+ },
+ {
+ "epoch": 45.89471384884229,
+ "grad_norm": 0.2239987701177597,
+ "learning_rate": 0.0006,
+ "loss": 3.6778974533081055,
+ "step": 3304
+ },
+ {
+ "epoch": 45.90869375273045,
+ "grad_norm": 0.22156383097171783,
+ "learning_rate": 0.0006,
+ "loss": 3.6186561584472656,
+ "step": 3305
+ },
+ {
+ "epoch": 45.92267365661861,
+ "grad_norm": 0.2264711856842041,
+ "learning_rate": 0.0006,
+ "loss": 3.6349918842315674,
+ "step": 3306
+ },
+ {
+ "epoch": 45.93665356050677,
+ "grad_norm": 0.2287975549697876,
+ "learning_rate": 0.0006,
+ "loss": 3.600268840789795,
+ "step": 3307
+ },
+ {
+ "epoch": 45.95063346439493,
+ "grad_norm": 0.22459761798381805,
+ "learning_rate": 0.0006,
+ "loss": 3.6029114723205566,
+ "step": 3308
+ },
+ {
+ "epoch": 45.964613368283096,
+ "grad_norm": 0.2430959790945053,
+ "learning_rate": 0.0006,
+ "loss": 3.6781656742095947,
+ "step": 3309
+ },
+ {
+ "epoch": 45.97859327217125,
+ "grad_norm": 0.2718662619590759,
+ "learning_rate": 0.0006,
+ "loss": 3.606778144836426,
+ "step": 3310
+ },
+ {
+ "epoch": 45.992573176059416,
+ "grad_norm": 0.27250170707702637,
+ "learning_rate": 0.0006,
+ "loss": 3.6142611503601074,
+ "step": 3311
+ },
+ {
+ "epoch": 46.0,
+ "grad_norm": 0.26663821935653687,
+ "learning_rate": 0.0006,
+ "loss": 3.6367483139038086,
+ "step": 3312
+ },
+ {
+ "epoch": 46.0,
+ "eval_loss": 3.9835095405578613,
+ "eval_runtime": 44.6504,
+ "eval_samples_per_second": 54.692,
+ "eval_steps_per_second": 3.427,
+ "step": 3312
+ },
+ {
+ "epoch": 46.01397990388816,
+ "grad_norm": 0.22670713067054749,
+ "learning_rate": 0.0006,
+ "loss": 3.5553648471832275,
+ "step": 3313
+ },
+ {
+ "epoch": 46.02795980777632,
+ "grad_norm": 0.2759886384010315,
+ "learning_rate": 0.0006,
+ "loss": 3.595186948776245,
+ "step": 3314
+ },
+ {
+ "epoch": 46.04193971166448,
+ "grad_norm": 0.31634145975112915,
+ "learning_rate": 0.0006,
+ "loss": 3.5805907249450684,
+ "step": 3315
+ },
+ {
+ "epoch": 46.05591961555265,
+ "grad_norm": 0.3097986578941345,
+ "learning_rate": 0.0006,
+ "loss": 3.593407154083252,
+ "step": 3316
+ },
+ {
+ "epoch": 46.0698995194408,
+ "grad_norm": 0.24616138637065887,
+ "learning_rate": 0.0006,
+ "loss": 3.606736898422241,
+ "step": 3317
+ },
+ {
+ "epoch": 46.083879423328966,
+ "grad_norm": 0.22210408747196198,
+ "learning_rate": 0.0006,
+ "loss": 3.59546160697937,
+ "step": 3318
+ },
+ {
+ "epoch": 46.09785932721712,
+ "grad_norm": 0.2429778128862381,
+ "learning_rate": 0.0006,
+ "loss": 3.5900321006774902,
+ "step": 3319
+ },
+ {
+ "epoch": 46.111839231105286,
+ "grad_norm": 0.22875761985778809,
+ "learning_rate": 0.0006,
+ "loss": 3.5793521404266357,
+ "step": 3320
+ },
+ {
+ "epoch": 46.12581913499345,
+ "grad_norm": 0.21508760750293732,
+ "learning_rate": 0.0006,
+ "loss": 3.5462498664855957,
+ "step": 3321
+ },
+ {
+ "epoch": 46.139799038881605,
+ "grad_norm": 0.23590944707393646,
+ "learning_rate": 0.0006,
+ "loss": 3.6247925758361816,
+ "step": 3322
+ },
+ {
+ "epoch": 46.15377894276977,
+ "grad_norm": 0.22288036346435547,
+ "learning_rate": 0.0006,
+ "loss": 3.6063995361328125,
+ "step": 3323
+ },
+ {
+ "epoch": 46.16775884665793,
+ "grad_norm": 0.20460885763168335,
+ "learning_rate": 0.0006,
+ "loss": 3.5744826793670654,
+ "step": 3324
+ },
+ {
+ "epoch": 46.18173875054609,
+ "grad_norm": 0.20172059535980225,
+ "learning_rate": 0.0006,
+ "loss": 3.5827057361602783,
+ "step": 3325
+ },
+ {
+ "epoch": 46.19571865443425,
+ "grad_norm": 0.2268448770046234,
+ "learning_rate": 0.0006,
+ "loss": 3.5801379680633545,
+ "step": 3326
+ },
+ {
+ "epoch": 46.20969855832241,
+ "grad_norm": 0.2244444191455841,
+ "learning_rate": 0.0006,
+ "loss": 3.5790224075317383,
+ "step": 3327
+ },
+ {
+ "epoch": 46.22367846221057,
+ "grad_norm": 0.20954380929470062,
+ "learning_rate": 0.0006,
+ "loss": 3.5979342460632324,
+ "step": 3328
+ },
+ {
+ "epoch": 46.237658366098735,
+ "grad_norm": 0.21395887434482574,
+ "learning_rate": 0.0006,
+ "loss": 3.6015186309814453,
+ "step": 3329
+ },
+ {
+ "epoch": 46.25163826998689,
+ "grad_norm": 0.23200181126594543,
+ "learning_rate": 0.0006,
+ "loss": 3.5904979705810547,
+ "step": 3330
+ },
+ {
+ "epoch": 46.265618173875055,
+ "grad_norm": 0.20558731257915497,
+ "learning_rate": 0.0006,
+ "loss": 3.5745811462402344,
+ "step": 3331
+ },
+ {
+ "epoch": 46.27959807776322,
+ "grad_norm": 0.1973227560520172,
+ "learning_rate": 0.0006,
+ "loss": 3.588560104370117,
+ "step": 3332
+ },
+ {
+ "epoch": 46.293577981651374,
+ "grad_norm": 0.2137945592403412,
+ "learning_rate": 0.0006,
+ "loss": 3.606064796447754,
+ "step": 3333
+ },
+ {
+ "epoch": 46.30755788553954,
+ "grad_norm": 0.2082151472568512,
+ "learning_rate": 0.0006,
+ "loss": 3.569392442703247,
+ "step": 3334
+ },
+ {
+ "epoch": 46.3215377894277,
+ "grad_norm": 0.2151029258966446,
+ "learning_rate": 0.0006,
+ "loss": 3.6016604900360107,
+ "step": 3335
+ },
+ {
+ "epoch": 46.33551769331586,
+ "grad_norm": 0.2256474643945694,
+ "learning_rate": 0.0006,
+ "loss": 3.571319580078125,
+ "step": 3336
+ },
+ {
+ "epoch": 46.34949759720402,
+ "grad_norm": 0.21454207599163055,
+ "learning_rate": 0.0006,
+ "loss": 3.6028685569763184,
+ "step": 3337
+ },
+ {
+ "epoch": 46.36347750109218,
+ "grad_norm": 0.21864144504070282,
+ "learning_rate": 0.0006,
+ "loss": 3.6146860122680664,
+ "step": 3338
+ },
+ {
+ "epoch": 46.37745740498034,
+ "grad_norm": 0.24512453377246857,
+ "learning_rate": 0.0006,
+ "loss": 3.614696502685547,
+ "step": 3339
+ },
+ {
+ "epoch": 46.391437308868504,
+ "grad_norm": 0.26355695724487305,
+ "learning_rate": 0.0006,
+ "loss": 3.6124234199523926,
+ "step": 3340
+ },
+ {
+ "epoch": 46.40541721275666,
+ "grad_norm": 0.2778678834438324,
+ "learning_rate": 0.0006,
+ "loss": 3.6075634956359863,
+ "step": 3341
+ },
+ {
+ "epoch": 46.419397116644824,
+ "grad_norm": 0.2626822292804718,
+ "learning_rate": 0.0006,
+ "loss": 3.59267520904541,
+ "step": 3342
+ },
+ {
+ "epoch": 46.43337702053299,
+ "grad_norm": 0.2211887091398239,
+ "learning_rate": 0.0006,
+ "loss": 3.606135606765747,
+ "step": 3343
+ },
+ {
+ "epoch": 46.44735692442114,
+ "grad_norm": 0.20117639005184174,
+ "learning_rate": 0.0006,
+ "loss": 3.566512107849121,
+ "step": 3344
+ },
+ {
+ "epoch": 46.46133682830931,
+ "grad_norm": 0.20202599465847015,
+ "learning_rate": 0.0006,
+ "loss": 3.603398561477661,
+ "step": 3345
+ },
+ {
+ "epoch": 46.47531673219746,
+ "grad_norm": 0.22238481044769287,
+ "learning_rate": 0.0006,
+ "loss": 3.599888324737549,
+ "step": 3346
+ },
+ {
+ "epoch": 46.489296636085626,
+ "grad_norm": 0.23298178613185883,
+ "learning_rate": 0.0006,
+ "loss": 3.6135406494140625,
+ "step": 3347
+ },
+ {
+ "epoch": 46.50327653997379,
+ "grad_norm": 0.21998152136802673,
+ "learning_rate": 0.0006,
+ "loss": 3.6022939682006836,
+ "step": 3348
+ },
+ {
+ "epoch": 46.517256443861946,
+ "grad_norm": 0.22595210373401642,
+ "learning_rate": 0.0006,
+ "loss": 3.605905532836914,
+ "step": 3349
+ },
+ {
+ "epoch": 46.53123634775011,
+ "grad_norm": 0.23549678921699524,
+ "learning_rate": 0.0006,
+ "loss": 3.606264591217041,
+ "step": 3350
+ },
+ {
+ "epoch": 46.54521625163827,
+ "grad_norm": 0.2075573205947876,
+ "learning_rate": 0.0006,
+ "loss": 3.580575942993164,
+ "step": 3351
+ },
+ {
+ "epoch": 46.55919615552643,
+ "grad_norm": 0.19052642583847046,
+ "learning_rate": 0.0006,
+ "loss": 3.618326187133789,
+ "step": 3352
+ },
+ {
+ "epoch": 46.57317605941459,
+ "grad_norm": 0.20372900366783142,
+ "learning_rate": 0.0006,
+ "loss": 3.5817952156066895,
+ "step": 3353
+ },
+ {
+ "epoch": 46.58715596330275,
+ "grad_norm": 0.20024648308753967,
+ "learning_rate": 0.0006,
+ "loss": 3.6128273010253906,
+ "step": 3354
+ },
+ {
+ "epoch": 46.60113586719091,
+ "grad_norm": 0.20892181992530823,
+ "learning_rate": 0.0006,
+ "loss": 3.6173012256622314,
+ "step": 3355
+ },
+ {
+ "epoch": 46.615115771079076,
+ "grad_norm": 0.20254571735858917,
+ "learning_rate": 0.0006,
+ "loss": 3.5924699306488037,
+ "step": 3356
+ },
+ {
+ "epoch": 46.62909567496723,
+ "grad_norm": 0.20290599763393402,
+ "learning_rate": 0.0006,
+ "loss": 3.6134514808654785,
+ "step": 3357
+ },
+ {
+ "epoch": 46.643075578855395,
+ "grad_norm": 0.23314513266086578,
+ "learning_rate": 0.0006,
+ "loss": 3.604102611541748,
+ "step": 3358
+ },
+ {
+ "epoch": 46.65705548274356,
+ "grad_norm": 0.2352486401796341,
+ "learning_rate": 0.0006,
+ "loss": 3.6210808753967285,
+ "step": 3359
+ },
+ {
+ "epoch": 46.671035386631715,
+ "grad_norm": 0.2289503663778305,
+ "learning_rate": 0.0006,
+ "loss": 3.596968650817871,
+ "step": 3360
+ },
+ {
+ "epoch": 46.68501529051988,
+ "grad_norm": 0.19971057772636414,
+ "learning_rate": 0.0006,
+ "loss": 3.5973198413848877,
+ "step": 3361
+ },
+ {
+ "epoch": 46.69899519440804,
+ "grad_norm": 0.21000619232654572,
+ "learning_rate": 0.0006,
+ "loss": 3.607048511505127,
+ "step": 3362
+ },
+ {
+ "epoch": 46.7129750982962,
+ "grad_norm": 0.22295686602592468,
+ "learning_rate": 0.0006,
+ "loss": 3.6323728561401367,
+ "step": 3363
+ },
+ {
+ "epoch": 46.72695500218436,
+ "grad_norm": 0.21939052641391754,
+ "learning_rate": 0.0006,
+ "loss": 3.6073317527770996,
+ "step": 3364
+ },
+ {
+ "epoch": 46.74093490607252,
+ "grad_norm": 0.2192271202802658,
+ "learning_rate": 0.0006,
+ "loss": 3.6396851539611816,
+ "step": 3365
+ },
+ {
+ "epoch": 46.75491480996068,
+ "grad_norm": 0.20871607959270477,
+ "learning_rate": 0.0006,
+ "loss": 3.613509178161621,
+ "step": 3366
+ },
+ {
+ "epoch": 46.768894713848844,
+ "grad_norm": 0.1837828904390335,
+ "learning_rate": 0.0006,
+ "loss": 3.604039192199707,
+ "step": 3367
+ },
+ {
+ "epoch": 46.782874617737,
+ "grad_norm": 0.1904219537973404,
+ "learning_rate": 0.0006,
+ "loss": 3.6065895557403564,
+ "step": 3368
+ },
+ {
+ "epoch": 46.796854521625164,
+ "grad_norm": 0.19873572885990143,
+ "learning_rate": 0.0006,
+ "loss": 3.5927226543426514,
+ "step": 3369
+ },
+ {
+ "epoch": 46.81083442551333,
+ "grad_norm": 0.18319591879844666,
+ "learning_rate": 0.0006,
+ "loss": 3.6114919185638428,
+ "step": 3370
+ },
+ {
+ "epoch": 46.824814329401484,
+ "grad_norm": 0.19832435250282288,
+ "learning_rate": 0.0006,
+ "loss": 3.613637924194336,
+ "step": 3371
+ },
+ {
+ "epoch": 46.83879423328965,
+ "grad_norm": 0.21506333351135254,
+ "learning_rate": 0.0006,
+ "loss": 3.6116209030151367,
+ "step": 3372
+ },
+ {
+ "epoch": 46.8527741371778,
+ "grad_norm": 0.20374484360218048,
+ "learning_rate": 0.0006,
+ "loss": 3.5923004150390625,
+ "step": 3373
+ },
+ {
+ "epoch": 46.86675404106597,
+ "grad_norm": 0.19743360579013824,
+ "learning_rate": 0.0006,
+ "loss": 3.599381685256958,
+ "step": 3374
+ },
+ {
+ "epoch": 46.88073394495413,
+ "grad_norm": 0.20996616780757904,
+ "learning_rate": 0.0006,
+ "loss": 3.624969959259033,
+ "step": 3375
+ },
+ {
+ "epoch": 46.89471384884229,
+ "grad_norm": 0.22336791455745697,
+ "learning_rate": 0.0006,
+ "loss": 3.6152467727661133,
+ "step": 3376
+ },
+ {
+ "epoch": 46.90869375273045,
+ "grad_norm": 0.2337532341480255,
+ "learning_rate": 0.0006,
+ "loss": 3.6198863983154297,
+ "step": 3377
+ },
+ {
+ "epoch": 46.92267365661861,
+ "grad_norm": 0.23823462426662445,
+ "learning_rate": 0.0006,
+ "loss": 3.6411237716674805,
+ "step": 3378
+ },
+ {
+ "epoch": 46.93665356050677,
+ "grad_norm": 0.2521338164806366,
+ "learning_rate": 0.0006,
+ "loss": 3.621544122695923,
+ "step": 3379
+ },
+ {
+ "epoch": 46.95063346439493,
+ "grad_norm": 0.253682941198349,
+ "learning_rate": 0.0006,
+ "loss": 3.6570887565612793,
+ "step": 3380
+ },
+ {
+ "epoch": 46.964613368283096,
+ "grad_norm": 0.23392300307750702,
+ "learning_rate": 0.0006,
+ "loss": 3.669538974761963,
+ "step": 3381
+ },
+ {
+ "epoch": 46.97859327217125,
+ "grad_norm": 0.2154092937707901,
+ "learning_rate": 0.0006,
+ "loss": 3.6184825897216797,
+ "step": 3382
+ },
+ {
+ "epoch": 46.992573176059416,
+ "grad_norm": 0.1909833699464798,
+ "learning_rate": 0.0006,
+ "loss": 3.647658348083496,
+ "step": 3383
+ },
+ {
+ "epoch": 47.0,
+ "grad_norm": 0.2226407378911972,
+ "learning_rate": 0.0006,
+ "loss": 3.6413815021514893,
+ "step": 3384
+ },
+ {
+ "epoch": 47.0,
+ "eval_loss": 3.98313570022583,
+ "eval_runtime": 44.7152,
+ "eval_samples_per_second": 54.612,
+ "eval_steps_per_second": 3.422,
+ "step": 3384
+ },
+ {
+ "epoch": 47.01397990388816,
+ "grad_norm": 0.20830968022346497,
+ "learning_rate": 0.0006,
+ "loss": 3.5652623176574707,
+ "step": 3385
+ },
+ {
+ "epoch": 47.02795980777632,
+ "grad_norm": 0.18953651189804077,
+ "learning_rate": 0.0006,
+ "loss": 3.570180654525757,
+ "step": 3386
+ },
+ {
+ "epoch": 47.04193971166448,
+ "grad_norm": 0.20167700946331024,
+ "learning_rate": 0.0006,
+ "loss": 3.5623056888580322,
+ "step": 3387
+ },
+ {
+ "epoch": 47.05591961555265,
+ "grad_norm": 0.21554343402385712,
+ "learning_rate": 0.0006,
+ "loss": 3.549492835998535,
+ "step": 3388
+ },
+ {
+ "epoch": 47.0698995194408,
+ "grad_norm": 0.2232149988412857,
+ "learning_rate": 0.0006,
+ "loss": 3.584181785583496,
+ "step": 3389
+ },
+ {
+ "epoch": 47.083879423328966,
+ "grad_norm": 0.23489049077033997,
+ "learning_rate": 0.0006,
+ "loss": 3.581028461456299,
+ "step": 3390
+ },
+ {
+ "epoch": 47.09785932721712,
+ "grad_norm": 0.22486020624637604,
+ "learning_rate": 0.0006,
+ "loss": 3.600348949432373,
+ "step": 3391
+ },
+ {
+ "epoch": 47.111839231105286,
+ "grad_norm": 0.22932346165180206,
+ "learning_rate": 0.0006,
+ "loss": 3.5600457191467285,
+ "step": 3392
+ },
+ {
+ "epoch": 47.12581913499345,
+ "grad_norm": 0.2179419994354248,
+ "learning_rate": 0.0006,
+ "loss": 3.560136079788208,
+ "step": 3393
+ },
+ {
+ "epoch": 47.139799038881605,
+ "grad_norm": 0.2438054382801056,
+ "learning_rate": 0.0006,
+ "loss": 3.5955698490142822,
+ "step": 3394
+ },
+ {
+ "epoch": 47.15377894276977,
+ "grad_norm": 0.2652001976966858,
+ "learning_rate": 0.0006,
+ "loss": 3.5942912101745605,
+ "step": 3395
+ },
+ {
+ "epoch": 47.16775884665793,
+ "grad_norm": 0.270924836397171,
+ "learning_rate": 0.0006,
+ "loss": 3.5733351707458496,
+ "step": 3396
+ },
+ {
+ "epoch": 47.18173875054609,
+ "grad_norm": 0.28365132212638855,
+ "learning_rate": 0.0006,
+ "loss": 3.6042075157165527,
+ "step": 3397
+ },
+ {
+ "epoch": 47.19571865443425,
+ "grad_norm": 0.29530975222587585,
+ "learning_rate": 0.0006,
+ "loss": 3.588935375213623,
+ "step": 3398
+ },
+ {
+ "epoch": 47.20969855832241,
+ "grad_norm": 0.2658918797969818,
+ "learning_rate": 0.0006,
+ "loss": 3.5944671630859375,
+ "step": 3399
+ },
+ {
+ "epoch": 47.22367846221057,
+ "grad_norm": 0.24076500535011292,
+ "learning_rate": 0.0006,
+ "loss": 3.5853185653686523,
+ "step": 3400
+ },
+ {
+ "epoch": 47.237658366098735,
+ "grad_norm": 0.23032112419605255,
+ "learning_rate": 0.0006,
+ "loss": 3.620483875274658,
+ "step": 3401
+ },
+ {
+ "epoch": 47.25163826998689,
+ "grad_norm": 0.23124775290489197,
+ "learning_rate": 0.0006,
+ "loss": 3.6032004356384277,
+ "step": 3402
+ },
+ {
+ "epoch": 47.265618173875055,
+ "grad_norm": 0.21960225701332092,
+ "learning_rate": 0.0006,
+ "loss": 3.6079649925231934,
+ "step": 3403
+ },
+ {
+ "epoch": 47.27959807776322,
+ "grad_norm": 0.236652672290802,
+ "learning_rate": 0.0006,
+ "loss": 3.582645893096924,
+ "step": 3404
+ },
+ {
+ "epoch": 47.293577981651374,
+ "grad_norm": 0.2600267231464386,
+ "learning_rate": 0.0006,
+ "loss": 3.6067757606506348,
+ "step": 3405
+ },
+ {
+ "epoch": 47.30755788553954,
+ "grad_norm": 0.2337152659893036,
+ "learning_rate": 0.0006,
+ "loss": 3.5912275314331055,
+ "step": 3406
+ },
+ {
+ "epoch": 47.3215377894277,
+ "grad_norm": 0.21887873113155365,
+ "learning_rate": 0.0006,
+ "loss": 3.6008896827697754,
+ "step": 3407
+ },
+ {
+ "epoch": 47.33551769331586,
+ "grad_norm": 0.20265911519527435,
+ "learning_rate": 0.0006,
+ "loss": 3.5820152759552,
+ "step": 3408
+ },
+ {
+ "epoch": 47.34949759720402,
+ "grad_norm": 0.2005501389503479,
+ "learning_rate": 0.0006,
+ "loss": 3.604556083679199,
+ "step": 3409
+ },
+ {
+ "epoch": 47.36347750109218,
+ "grad_norm": 0.20682275295257568,
+ "learning_rate": 0.0006,
+ "loss": 3.584531307220459,
+ "step": 3410
+ },
+ {
+ "epoch": 47.37745740498034,
+ "grad_norm": 0.23283354938030243,
+ "learning_rate": 0.0006,
+ "loss": 3.59186053276062,
+ "step": 3411
+ },
+ {
+ "epoch": 47.391437308868504,
+ "grad_norm": 0.23033356666564941,
+ "learning_rate": 0.0006,
+ "loss": 3.5944037437438965,
+ "step": 3412
+ },
+ {
+ "epoch": 47.40541721275666,
+ "grad_norm": 0.21714402735233307,
+ "learning_rate": 0.0006,
+ "loss": 3.5834851264953613,
+ "step": 3413
+ },
+ {
+ "epoch": 47.419397116644824,
+ "grad_norm": 0.2138672024011612,
+ "learning_rate": 0.0006,
+ "loss": 3.6313700675964355,
+ "step": 3414
+ },
+ {
+ "epoch": 47.43337702053299,
+ "grad_norm": 0.23200160264968872,
+ "learning_rate": 0.0006,
+ "loss": 3.6112399101257324,
+ "step": 3415
+ },
+ {
+ "epoch": 47.44735692442114,
+ "grad_norm": 0.2632092833518982,
+ "learning_rate": 0.0006,
+ "loss": 3.6099038124084473,
+ "step": 3416
+ },
+ {
+ "epoch": 47.46133682830931,
+ "grad_norm": 0.23115520179271698,
+ "learning_rate": 0.0006,
+ "loss": 3.6060497760772705,
+ "step": 3417
+ },
+ {
+ "epoch": 47.47531673219746,
+ "grad_norm": 0.2596223056316376,
+ "learning_rate": 0.0006,
+ "loss": 3.5749685764312744,
+ "step": 3418
+ },
+ {
+ "epoch": 47.489296636085626,
+ "grad_norm": 0.27893415093421936,
+ "learning_rate": 0.0006,
+ "loss": 3.584045886993408,
+ "step": 3419
+ },
+ {
+ "epoch": 47.50327653997379,
+ "grad_norm": 0.23112469911575317,
+ "learning_rate": 0.0006,
+ "loss": 3.595407485961914,
+ "step": 3420
+ },
+ {
+ "epoch": 47.517256443861946,
+ "grad_norm": 0.23562486469745636,
+ "learning_rate": 0.0006,
+ "loss": 3.5657241344451904,
+ "step": 3421
+ },
+ {
+ "epoch": 47.53123634775011,
+ "grad_norm": 0.23366105556488037,
+ "learning_rate": 0.0006,
+ "loss": 3.624885082244873,
+ "step": 3422
+ },
+ {
+ "epoch": 47.54521625163827,
+ "grad_norm": 0.24383248388767242,
+ "learning_rate": 0.0006,
+ "loss": 3.638352394104004,
+ "step": 3423
+ },
+ {
+ "epoch": 47.55919615552643,
+ "grad_norm": 0.26388120651245117,
+ "learning_rate": 0.0006,
+ "loss": 3.614579200744629,
+ "step": 3424
+ },
+ {
+ "epoch": 47.57317605941459,
+ "grad_norm": 0.23676545917987823,
+ "learning_rate": 0.0006,
+ "loss": 3.609004259109497,
+ "step": 3425
+ },
+ {
+ "epoch": 47.58715596330275,
+ "grad_norm": 0.227967768907547,
+ "learning_rate": 0.0006,
+ "loss": 3.626171827316284,
+ "step": 3426
+ },
+ {
+ "epoch": 47.60113586719091,
+ "grad_norm": 0.23786529898643494,
+ "learning_rate": 0.0006,
+ "loss": 3.6205172538757324,
+ "step": 3427
+ },
+ {
+ "epoch": 47.615115771079076,
+ "grad_norm": 0.2599100172519684,
+ "learning_rate": 0.0006,
+ "loss": 3.6178271770477295,
+ "step": 3428
+ },
+ {
+ "epoch": 47.62909567496723,
+ "grad_norm": 0.2591858208179474,
+ "learning_rate": 0.0006,
+ "loss": 3.600297451019287,
+ "step": 3429
+ },
+ {
+ "epoch": 47.643075578855395,
+ "grad_norm": 0.2234215885400772,
+ "learning_rate": 0.0006,
+ "loss": 3.623141288757324,
+ "step": 3430
+ },
+ {
+ "epoch": 47.65705548274356,
+ "grad_norm": 0.23395098745822906,
+ "learning_rate": 0.0006,
+ "loss": 3.6243159770965576,
+ "step": 3431
+ },
+ {
+ "epoch": 47.671035386631715,
+ "grad_norm": 0.25706854462623596,
+ "learning_rate": 0.0006,
+ "loss": 3.5933618545532227,
+ "step": 3432
+ },
+ {
+ "epoch": 47.68501529051988,
+ "grad_norm": 0.22468037903308868,
+ "learning_rate": 0.0006,
+ "loss": 3.6048693656921387,
+ "step": 3433
+ },
+ {
+ "epoch": 47.69899519440804,
+ "grad_norm": 0.22432644665241241,
+ "learning_rate": 0.0006,
+ "loss": 3.604891777038574,
+ "step": 3434
+ },
+ {
+ "epoch": 47.7129750982962,
+ "grad_norm": 0.2278960943222046,
+ "learning_rate": 0.0006,
+ "loss": 3.610567092895508,
+ "step": 3435
+ },
+ {
+ "epoch": 47.72695500218436,
+ "grad_norm": 0.20652735233306885,
+ "learning_rate": 0.0006,
+ "loss": 3.60245418548584,
+ "step": 3436
+ },
+ {
+ "epoch": 47.74093490607252,
+ "grad_norm": 0.2141297310590744,
+ "learning_rate": 0.0006,
+ "loss": 3.5712027549743652,
+ "step": 3437
+ },
+ {
+ "epoch": 47.75491480996068,
+ "grad_norm": 0.23282566666603088,
+ "learning_rate": 0.0006,
+ "loss": 3.573568820953369,
+ "step": 3438
+ },
+ {
+ "epoch": 47.768894713848844,
+ "grad_norm": 0.21718674898147583,
+ "learning_rate": 0.0006,
+ "loss": 3.602047920227051,
+ "step": 3439
+ },
+ {
+ "epoch": 47.782874617737,
+ "grad_norm": 0.19592095911502838,
+ "learning_rate": 0.0006,
+ "loss": 3.6046957969665527,
+ "step": 3440
+ },
+ {
+ "epoch": 47.796854521625164,
+ "grad_norm": 0.21548260748386383,
+ "learning_rate": 0.0006,
+ "loss": 3.5808444023132324,
+ "step": 3441
+ },
+ {
+ "epoch": 47.81083442551333,
+ "grad_norm": 0.21945662796497345,
+ "learning_rate": 0.0006,
+ "loss": 3.6044554710388184,
+ "step": 3442
+ },
+ {
+ "epoch": 47.824814329401484,
+ "grad_norm": 0.20777440071105957,
+ "learning_rate": 0.0006,
+ "loss": 3.5991361141204834,
+ "step": 3443
+ },
+ {
+ "epoch": 47.83879423328965,
+ "grad_norm": 0.21566642820835114,
+ "learning_rate": 0.0006,
+ "loss": 3.6272850036621094,
+ "step": 3444
+ },
+ {
+ "epoch": 47.8527741371778,
+ "grad_norm": 0.22365771234035492,
+ "learning_rate": 0.0006,
+ "loss": 3.6323323249816895,
+ "step": 3445
+ },
+ {
+ "epoch": 47.86675404106597,
+ "grad_norm": 0.20193088054656982,
+ "learning_rate": 0.0006,
+ "loss": 3.5938191413879395,
+ "step": 3446
+ },
+ {
+ "epoch": 47.88073394495413,
+ "grad_norm": 0.20968061685562134,
+ "learning_rate": 0.0006,
+ "loss": 3.616640329360962,
+ "step": 3447
+ },
+ {
+ "epoch": 47.89471384884229,
+ "grad_norm": 0.20275580883026123,
+ "learning_rate": 0.0006,
+ "loss": 3.5769052505493164,
+ "step": 3448
+ },
+ {
+ "epoch": 47.90869375273045,
+ "grad_norm": 0.237605020403862,
+ "learning_rate": 0.0006,
+ "loss": 3.6221203804016113,
+ "step": 3449
+ },
+ {
+ "epoch": 47.92267365661861,
+ "grad_norm": 0.2820972502231598,
+ "learning_rate": 0.0006,
+ "loss": 3.5977487564086914,
+ "step": 3450
+ },
+ {
+ "epoch": 47.93665356050677,
+ "grad_norm": 0.23722891509532928,
+ "learning_rate": 0.0006,
+ "loss": 3.5963053703308105,
+ "step": 3451
+ },
+ {
+ "epoch": 47.95063346439493,
+ "grad_norm": 0.21471276879310608,
+ "learning_rate": 0.0006,
+ "loss": 3.6234917640686035,
+ "step": 3452
+ },
+ {
+ "epoch": 47.964613368283096,
+ "grad_norm": 0.2139028012752533,
+ "learning_rate": 0.0006,
+ "loss": 3.640500545501709,
+ "step": 3453
+ },
+ {
+ "epoch": 47.97859327217125,
+ "grad_norm": 0.1966913342475891,
+ "learning_rate": 0.0006,
+ "loss": 3.5856776237487793,
+ "step": 3454
+ },
+ {
+ "epoch": 47.992573176059416,
+ "grad_norm": 0.2375730276107788,
+ "learning_rate": 0.0006,
+ "loss": 3.6126937866210938,
+ "step": 3455
+ },
+ {
+ "epoch": 48.0,
+ "grad_norm": 0.2772855758666992,
+ "learning_rate": 0.0006,
+ "loss": 3.6041951179504395,
+ "step": 3456
+ },
+ {
+ "epoch": 48.0,
+ "eval_loss": 3.971400499343872,
+ "eval_runtime": 45.4792,
+ "eval_samples_per_second": 53.695,
+ "eval_steps_per_second": 3.364,
+ "step": 3456
+ },
+ {
+ "epoch": 48.01397990388816,
+ "grad_norm": 0.2269497811794281,
+ "learning_rate": 0.0006,
+ "loss": 3.525441884994507,
+ "step": 3457
+ },
+ {
+ "epoch": 48.02795980777632,
+ "grad_norm": 0.2080184519290924,
+ "learning_rate": 0.0006,
+ "loss": 3.5727145671844482,
+ "step": 3458
+ },
+ {
+ "epoch": 48.04193971166448,
+ "grad_norm": 0.21827049553394318,
+ "learning_rate": 0.0006,
+ "loss": 3.5799875259399414,
+ "step": 3459
+ },
+ {
+ "epoch": 48.05591961555265,
+ "grad_norm": 0.2173643410205841,
+ "learning_rate": 0.0006,
+ "loss": 3.587097406387329,
+ "step": 3460
+ },
+ {
+ "epoch": 48.0698995194408,
+ "grad_norm": 0.23125280439853668,
+ "learning_rate": 0.0006,
+ "loss": 3.593235969543457,
+ "step": 3461
+ },
+ {
+ "epoch": 48.083879423328966,
+ "grad_norm": 0.2235819697380066,
+ "learning_rate": 0.0006,
+ "loss": 3.5724973678588867,
+ "step": 3462
+ },
+ {
+ "epoch": 48.09785932721712,
+ "grad_norm": 0.2329849898815155,
+ "learning_rate": 0.0006,
+ "loss": 3.5689549446105957,
+ "step": 3463
+ },
+ {
+ "epoch": 48.111839231105286,
+ "grad_norm": 0.21178825199604034,
+ "learning_rate": 0.0006,
+ "loss": 3.5522305965423584,
+ "step": 3464
+ },
+ {
+ "epoch": 48.12581913499345,
+ "grad_norm": 0.22026701271533966,
+ "learning_rate": 0.0006,
+ "loss": 3.5622801780700684,
+ "step": 3465
+ },
+ {
+ "epoch": 48.139799038881605,
+ "grad_norm": 0.23427478969097137,
+ "learning_rate": 0.0006,
+ "loss": 3.6076972484588623,
+ "step": 3466
+ },
+ {
+ "epoch": 48.15377894276977,
+ "grad_norm": 0.22437651455402374,
+ "learning_rate": 0.0006,
+ "loss": 3.5898380279541016,
+ "step": 3467
+ },
+ {
+ "epoch": 48.16775884665793,
+ "grad_norm": 0.22911588847637177,
+ "learning_rate": 0.0006,
+ "loss": 3.584866523742676,
+ "step": 3468
+ },
+ {
+ "epoch": 48.18173875054609,
+ "grad_norm": 0.21358130872249603,
+ "learning_rate": 0.0006,
+ "loss": 3.581397533416748,
+ "step": 3469
+ },
+ {
+ "epoch": 48.19571865443425,
+ "grad_norm": 0.2102762758731842,
+ "learning_rate": 0.0006,
+ "loss": 3.6218419075012207,
+ "step": 3470
+ },
+ {
+ "epoch": 48.20969855832241,
+ "grad_norm": 0.22417177259922028,
+ "learning_rate": 0.0006,
+ "loss": 3.5875539779663086,
+ "step": 3471
+ },
+ {
+ "epoch": 48.22367846221057,
+ "grad_norm": 0.2096744030714035,
+ "learning_rate": 0.0006,
+ "loss": 3.6017215251922607,
+ "step": 3472
+ },
+ {
+ "epoch": 48.237658366098735,
+ "grad_norm": 0.18693844974040985,
+ "learning_rate": 0.0006,
+ "loss": 3.590221405029297,
+ "step": 3473
+ },
+ {
+ "epoch": 48.25163826998689,
+ "grad_norm": 0.21102994680404663,
+ "learning_rate": 0.0006,
+ "loss": 3.5685019493103027,
+ "step": 3474
+ },
+ {
+ "epoch": 48.265618173875055,
+ "grad_norm": 0.20756356418132782,
+ "learning_rate": 0.0006,
+ "loss": 3.577427387237549,
+ "step": 3475
+ },
+ {
+ "epoch": 48.27959807776322,
+ "grad_norm": 0.20425064861774445,
+ "learning_rate": 0.0006,
+ "loss": 3.602522134780884,
+ "step": 3476
+ },
+ {
+ "epoch": 48.293577981651374,
+ "grad_norm": 0.1976020187139511,
+ "learning_rate": 0.0006,
+ "loss": 3.5847134590148926,
+ "step": 3477
+ },
+ {
+ "epoch": 48.30755788553954,
+ "grad_norm": 0.19685129821300507,
+ "learning_rate": 0.0006,
+ "loss": 3.5638442039489746,
+ "step": 3478
+ },
+ {
+ "epoch": 48.3215377894277,
+ "grad_norm": 0.19657646119594574,
+ "learning_rate": 0.0006,
+ "loss": 3.5669779777526855,
+ "step": 3479
+ },
+ {
+ "epoch": 48.33551769331586,
+ "grad_norm": 0.19855819642543793,
+ "learning_rate": 0.0006,
+ "loss": 3.5712571144104004,
+ "step": 3480
+ },
+ {
+ "epoch": 48.34949759720402,
+ "grad_norm": 0.19961503148078918,
+ "learning_rate": 0.0006,
+ "loss": 3.5869312286376953,
+ "step": 3481
+ },
+ {
+ "epoch": 48.36347750109218,
+ "grad_norm": 0.19302639365196228,
+ "learning_rate": 0.0006,
+ "loss": 3.571394920349121,
+ "step": 3482
+ },
+ {
+ "epoch": 48.37745740498034,
+ "grad_norm": 0.1953866183757782,
+ "learning_rate": 0.0006,
+ "loss": 3.556633234024048,
+ "step": 3483
+ },
+ {
+ "epoch": 48.391437308868504,
+ "grad_norm": 0.20028206706047058,
+ "learning_rate": 0.0006,
+ "loss": 3.5559535026550293,
+ "step": 3484
+ },
+ {
+ "epoch": 48.40541721275666,
+ "grad_norm": 0.2286558896303177,
+ "learning_rate": 0.0006,
+ "loss": 3.6052510738372803,
+ "step": 3485
+ },
+ {
+ "epoch": 48.419397116644824,
+ "grad_norm": 0.21764399111270905,
+ "learning_rate": 0.0006,
+ "loss": 3.5955848693847656,
+ "step": 3486
+ },
+ {
+ "epoch": 48.43337702053299,
+ "grad_norm": 0.2257501780986786,
+ "learning_rate": 0.0006,
+ "loss": 3.586179256439209,
+ "step": 3487
+ },
+ {
+ "epoch": 48.44735692442114,
+ "grad_norm": 0.23023653030395508,
+ "learning_rate": 0.0006,
+ "loss": 3.593329906463623,
+ "step": 3488
+ },
+ {
+ "epoch": 48.46133682830931,
+ "grad_norm": 0.21283918619155884,
+ "learning_rate": 0.0006,
+ "loss": 3.5909814834594727,
+ "step": 3489
+ },
+ {
+ "epoch": 48.47531673219746,
+ "grad_norm": 0.2143639773130417,
+ "learning_rate": 0.0006,
+ "loss": 3.61320161819458,
+ "step": 3490
+ },
+ {
+ "epoch": 48.489296636085626,
+ "grad_norm": 0.2138844132423401,
+ "learning_rate": 0.0006,
+ "loss": 3.556607246398926,
+ "step": 3491
+ },
+ {
+ "epoch": 48.50327653997379,
+ "grad_norm": 0.22122617065906525,
+ "learning_rate": 0.0006,
+ "loss": 3.629208564758301,
+ "step": 3492
+ },
+ {
+ "epoch": 48.517256443861946,
+ "grad_norm": 0.22430218756198883,
+ "learning_rate": 0.0006,
+ "loss": 3.61891508102417,
+ "step": 3493
+ },
+ {
+ "epoch": 48.53123634775011,
+ "grad_norm": 0.23830844461917877,
+ "learning_rate": 0.0006,
+ "loss": 3.5818424224853516,
+ "step": 3494
+ },
+ {
+ "epoch": 48.54521625163827,
+ "grad_norm": 0.23596757650375366,
+ "learning_rate": 0.0006,
+ "loss": 3.609959602355957,
+ "step": 3495
+ },
+ {
+ "epoch": 48.55919615552643,
+ "grad_norm": 0.22046151757240295,
+ "learning_rate": 0.0006,
+ "loss": 3.585991382598877,
+ "step": 3496
+ },
+ {
+ "epoch": 48.57317605941459,
+ "grad_norm": 0.22838662564754486,
+ "learning_rate": 0.0006,
+ "loss": 3.6047747135162354,
+ "step": 3497
+ },
+ {
+ "epoch": 48.58715596330275,
+ "grad_norm": 0.22605256736278534,
+ "learning_rate": 0.0006,
+ "loss": 3.584585428237915,
+ "step": 3498
+ },
+ {
+ "epoch": 48.60113586719091,
+ "grad_norm": 0.22761467099189758,
+ "learning_rate": 0.0006,
+ "loss": 3.5680465698242188,
+ "step": 3499
+ },
+ {
+ "epoch": 48.615115771079076,
+ "grad_norm": 0.20537005364894867,
+ "learning_rate": 0.0006,
+ "loss": 3.5822806358337402,
+ "step": 3500
+ },
+ {
+ "epoch": 48.62909567496723,
+ "grad_norm": 0.21871088445186615,
+ "learning_rate": 0.0006,
+ "loss": 3.5643906593322754,
+ "step": 3501
+ },
+ {
+ "epoch": 48.643075578855395,
+ "grad_norm": 0.2291785329580307,
+ "learning_rate": 0.0006,
+ "loss": 3.6313328742980957,
+ "step": 3502
+ },
+ {
+ "epoch": 48.65705548274356,
+ "grad_norm": 0.2437039464712143,
+ "learning_rate": 0.0006,
+ "loss": 3.588334083557129,
+ "step": 3503
+ },
+ {
+ "epoch": 48.671035386631715,
+ "grad_norm": 0.23070715367794037,
+ "learning_rate": 0.0006,
+ "loss": 3.611356258392334,
+ "step": 3504
+ },
+ {
+ "epoch": 48.68501529051988,
+ "grad_norm": 0.23983895778656006,
+ "learning_rate": 0.0006,
+ "loss": 3.5953967571258545,
+ "step": 3505
+ },
+ {
+ "epoch": 48.69899519440804,
+ "grad_norm": 0.2283167690038681,
+ "learning_rate": 0.0006,
+ "loss": 3.605307102203369,
+ "step": 3506
+ },
+ {
+ "epoch": 48.7129750982962,
+ "grad_norm": 0.20861059427261353,
+ "learning_rate": 0.0006,
+ "loss": 3.598266363143921,
+ "step": 3507
+ },
+ {
+ "epoch": 48.72695500218436,
+ "grad_norm": 0.20209547877311707,
+ "learning_rate": 0.0006,
+ "loss": 3.6022191047668457,
+ "step": 3508
+ },
+ {
+ "epoch": 48.74093490607252,
+ "grad_norm": 0.19089370965957642,
+ "learning_rate": 0.0006,
+ "loss": 3.628640651702881,
+ "step": 3509
+ },
+ {
+ "epoch": 48.75491480996068,
+ "grad_norm": 0.18544727563858032,
+ "learning_rate": 0.0006,
+ "loss": 3.6204819679260254,
+ "step": 3510
+ },
+ {
+ "epoch": 48.768894713848844,
+ "grad_norm": 0.18295186758041382,
+ "learning_rate": 0.0006,
+ "loss": 3.5899410247802734,
+ "step": 3511
+ },
+ {
+ "epoch": 48.782874617737,
+ "grad_norm": 0.1953844279050827,
+ "learning_rate": 0.0006,
+ "loss": 3.581699848175049,
+ "step": 3512
+ },
+ {
+ "epoch": 48.796854521625164,
+ "grad_norm": 0.195505291223526,
+ "learning_rate": 0.0006,
+ "loss": 3.6046862602233887,
+ "step": 3513
+ },
+ {
+ "epoch": 48.81083442551333,
+ "grad_norm": 0.19805945456027985,
+ "learning_rate": 0.0006,
+ "loss": 3.609510898590088,
+ "step": 3514
+ },
+ {
+ "epoch": 48.824814329401484,
+ "grad_norm": 0.18694287538528442,
+ "learning_rate": 0.0006,
+ "loss": 3.580693483352661,
+ "step": 3515
+ },
+ {
+ "epoch": 48.83879423328965,
+ "grad_norm": 0.19227269291877747,
+ "learning_rate": 0.0006,
+ "loss": 3.6174416542053223,
+ "step": 3516
+ },
+ {
+ "epoch": 48.8527741371778,
+ "grad_norm": 0.1966937631368637,
+ "learning_rate": 0.0006,
+ "loss": 3.616194248199463,
+ "step": 3517
+ },
+ {
+ "epoch": 48.86675404106597,
+ "grad_norm": 0.20755162835121155,
+ "learning_rate": 0.0006,
+ "loss": 3.594695568084717,
+ "step": 3518
+ },
+ {
+ "epoch": 48.88073394495413,
+ "grad_norm": 0.2012479156255722,
+ "learning_rate": 0.0006,
+ "loss": 3.6069273948669434,
+ "step": 3519
+ },
+ {
+ "epoch": 48.89471384884229,
+ "grad_norm": 0.19260065257549286,
+ "learning_rate": 0.0006,
+ "loss": 3.573819160461426,
+ "step": 3520
+ },
+ {
+ "epoch": 48.90869375273045,
+ "grad_norm": 0.19911104440689087,
+ "learning_rate": 0.0006,
+ "loss": 3.632185459136963,
+ "step": 3521
+ },
+ {
+ "epoch": 48.92267365661861,
+ "grad_norm": 0.22266048192977905,
+ "learning_rate": 0.0006,
+ "loss": 3.607295513153076,
+ "step": 3522
+ },
+ {
+ "epoch": 48.93665356050677,
+ "grad_norm": 0.2542882561683655,
+ "learning_rate": 0.0006,
+ "loss": 3.6014773845672607,
+ "step": 3523
+ },
+ {
+ "epoch": 48.95063346439493,
+ "grad_norm": 0.2878575026988983,
+ "learning_rate": 0.0006,
+ "loss": 3.5825531482696533,
+ "step": 3524
+ },
+ {
+ "epoch": 48.964613368283096,
+ "grad_norm": 0.3157055675983429,
+ "learning_rate": 0.0006,
+ "loss": 3.5986037254333496,
+ "step": 3525
+ },
+ {
+ "epoch": 48.97859327217125,
+ "grad_norm": 0.2815262973308563,
+ "learning_rate": 0.0006,
+ "loss": 3.6099600791931152,
+ "step": 3526
+ },
+ {
+ "epoch": 48.992573176059416,
+ "grad_norm": 0.22102823853492737,
+ "learning_rate": 0.0006,
+ "loss": 3.5859827995300293,
+ "step": 3527
+ },
+ {
+ "epoch": 49.0,
+ "grad_norm": 0.24937094748020172,
+ "learning_rate": 0.0006,
+ "loss": 3.622842311859131,
+ "step": 3528
+ },
+ {
+ "epoch": 49.0,
+ "eval_loss": 3.977067232131958,
+ "eval_runtime": 45.5503,
+ "eval_samples_per_second": 53.611,
+ "eval_steps_per_second": 3.359,
+ "step": 3528
+ },
+ {
+ "epoch": 49.01397990388816,
+ "grad_norm": 0.25072216987609863,
+ "learning_rate": 0.0006,
+ "loss": 3.590653419494629,
+ "step": 3529
+ },
+ {
+ "epoch": 49.02795980777632,
+ "grad_norm": 0.2611052989959717,
+ "learning_rate": 0.0006,
+ "loss": 3.5504279136657715,
+ "step": 3530
+ },
+ {
+ "epoch": 49.04193971166448,
+ "grad_norm": 0.2547961473464966,
+ "learning_rate": 0.0006,
+ "loss": 3.5797581672668457,
+ "step": 3531
+ },
+ {
+ "epoch": 49.05591961555265,
+ "grad_norm": 0.25674310326576233,
+ "learning_rate": 0.0006,
+ "loss": 3.557278871536255,
+ "step": 3532
+ },
+ {
+ "epoch": 49.0698995194408,
+ "grad_norm": 0.25511929392814636,
+ "learning_rate": 0.0006,
+ "loss": 3.5788025856018066,
+ "step": 3533
+ },
+ {
+ "epoch": 49.083879423328966,
+ "grad_norm": 0.22920994460582733,
+ "learning_rate": 0.0006,
+ "loss": 3.580489158630371,
+ "step": 3534
+ },
+ {
+ "epoch": 49.09785932721712,
+ "grad_norm": 0.23436492681503296,
+ "learning_rate": 0.0006,
+ "loss": 3.5603699684143066,
+ "step": 3535
+ },
+ {
+ "epoch": 49.111839231105286,
+ "grad_norm": 0.2542382776737213,
+ "learning_rate": 0.0006,
+ "loss": 3.5937037467956543,
+ "step": 3536
+ },
+ {
+ "epoch": 49.12581913499345,
+ "grad_norm": 0.26718273758888245,
+ "learning_rate": 0.0006,
+ "loss": 3.6032168865203857,
+ "step": 3537
+ },
+ {
+ "epoch": 49.139799038881605,
+ "grad_norm": 0.2406773865222931,
+ "learning_rate": 0.0006,
+ "loss": 3.5737085342407227,
+ "step": 3538
+ },
+ {
+ "epoch": 49.15377894276977,
+ "grad_norm": 0.23408754169940948,
+ "learning_rate": 0.0006,
+ "loss": 3.592543601989746,
+ "step": 3539
+ },
+ {
+ "epoch": 49.16775884665793,
+ "grad_norm": 0.22974351048469543,
+ "learning_rate": 0.0006,
+ "loss": 3.543618679046631,
+ "step": 3540
+ },
+ {
+ "epoch": 49.18173875054609,
+ "grad_norm": 0.23479530215263367,
+ "learning_rate": 0.0006,
+ "loss": 3.547590732574463,
+ "step": 3541
+ },
+ {
+ "epoch": 49.19571865443425,
+ "grad_norm": 0.2100638598203659,
+ "learning_rate": 0.0006,
+ "loss": 3.6027469635009766,
+ "step": 3542
+ },
+ {
+ "epoch": 49.20969855832241,
+ "grad_norm": 0.20239035785198212,
+ "learning_rate": 0.0006,
+ "loss": 3.598567008972168,
+ "step": 3543
+ },
+ {
+ "epoch": 49.22367846221057,
+ "grad_norm": 0.20480065047740936,
+ "learning_rate": 0.0006,
+ "loss": 3.591038227081299,
+ "step": 3544
+ },
+ {
+ "epoch": 49.237658366098735,
+ "grad_norm": 0.20439887046813965,
+ "learning_rate": 0.0006,
+ "loss": 3.555039405822754,
+ "step": 3545
+ },
+ {
+ "epoch": 49.25163826998689,
+ "grad_norm": 0.21245788037776947,
+ "learning_rate": 0.0006,
+ "loss": 3.5772666931152344,
+ "step": 3546
+ },
+ {
+ "epoch": 49.265618173875055,
+ "grad_norm": 0.1993357390165329,
+ "learning_rate": 0.0006,
+ "loss": 3.5847411155700684,
+ "step": 3547
+ },
+ {
+ "epoch": 49.27959807776322,
+ "grad_norm": 0.22550229728221893,
+ "learning_rate": 0.0006,
+ "loss": 3.5679750442504883,
+ "step": 3548
+ },
+ {
+ "epoch": 49.293577981651374,
+ "grad_norm": 0.2383355349302292,
+ "learning_rate": 0.0006,
+ "loss": 3.57085919380188,
+ "step": 3549
+ },
+ {
+ "epoch": 49.30755788553954,
+ "grad_norm": 0.23968911170959473,
+ "learning_rate": 0.0006,
+ "loss": 3.557415246963501,
+ "step": 3550
+ },
+ {
+ "epoch": 49.3215377894277,
+ "grad_norm": 0.21453262865543365,
+ "learning_rate": 0.0006,
+ "loss": 3.5763611793518066,
+ "step": 3551
+ },
+ {
+ "epoch": 49.33551769331586,
+ "grad_norm": 0.20380273461341858,
+ "learning_rate": 0.0006,
+ "loss": 3.552011013031006,
+ "step": 3552
+ },
+ {
+ "epoch": 49.34949759720402,
+ "grad_norm": 0.19719970226287842,
+ "learning_rate": 0.0006,
+ "loss": 3.5719075202941895,
+ "step": 3553
+ },
+ {
+ "epoch": 49.36347750109218,
+ "grad_norm": 0.19018089771270752,
+ "learning_rate": 0.0006,
+ "loss": 3.5843467712402344,
+ "step": 3554
+ },
+ {
+ "epoch": 49.37745740498034,
+ "grad_norm": 0.18369099497795105,
+ "learning_rate": 0.0006,
+ "loss": 3.561741352081299,
+ "step": 3555
+ },
+ {
+ "epoch": 49.391437308868504,
+ "grad_norm": 0.2070280760526657,
+ "learning_rate": 0.0006,
+ "loss": 3.590721607208252,
+ "step": 3556
+ },
+ {
+ "epoch": 49.40541721275666,
+ "grad_norm": 0.23287905752658844,
+ "learning_rate": 0.0006,
+ "loss": 3.617081642150879,
+ "step": 3557
+ },
+ {
+ "epoch": 49.419397116644824,
+ "grad_norm": 0.21877793967723846,
+ "learning_rate": 0.0006,
+ "loss": 3.547166347503662,
+ "step": 3558
+ },
+ {
+ "epoch": 49.43337702053299,
+ "grad_norm": 0.21105137467384338,
+ "learning_rate": 0.0006,
+ "loss": 3.593552350997925,
+ "step": 3559
+ },
+ {
+ "epoch": 49.44735692442114,
+ "grad_norm": 0.24940872192382812,
+ "learning_rate": 0.0006,
+ "loss": 3.599729537963867,
+ "step": 3560
+ },
+ {
+ "epoch": 49.46133682830931,
+ "grad_norm": 0.26952996850013733,
+ "learning_rate": 0.0006,
+ "loss": 3.5915074348449707,
+ "step": 3561
+ },
+ {
+ "epoch": 49.47531673219746,
+ "grad_norm": 0.25706353783607483,
+ "learning_rate": 0.0006,
+ "loss": 3.587472915649414,
+ "step": 3562
+ },
+ {
+ "epoch": 49.489296636085626,
+ "grad_norm": 0.23666661977767944,
+ "learning_rate": 0.0006,
+ "loss": 3.561340808868408,
+ "step": 3563
+ },
+ {
+ "epoch": 49.50327653997379,
+ "grad_norm": 0.22524063289165497,
+ "learning_rate": 0.0006,
+ "loss": 3.587310314178467,
+ "step": 3564
+ },
+ {
+ "epoch": 49.517256443861946,
+ "grad_norm": 0.22991003096103668,
+ "learning_rate": 0.0006,
+ "loss": 3.56671142578125,
+ "step": 3565
+ },
+ {
+ "epoch": 49.53123634775011,
+ "grad_norm": 0.23067602515220642,
+ "learning_rate": 0.0006,
+ "loss": 3.578601837158203,
+ "step": 3566
+ },
+ {
+ "epoch": 49.54521625163827,
+ "grad_norm": 0.2133914828300476,
+ "learning_rate": 0.0006,
+ "loss": 3.593726873397827,
+ "step": 3567
+ },
+ {
+ "epoch": 49.55919615552643,
+ "grad_norm": 0.21879160404205322,
+ "learning_rate": 0.0006,
+ "loss": 3.5833992958068848,
+ "step": 3568
+ },
+ {
+ "epoch": 49.57317605941459,
+ "grad_norm": 0.2116270661354065,
+ "learning_rate": 0.0006,
+ "loss": 3.575761079788208,
+ "step": 3569
+ },
+ {
+ "epoch": 49.58715596330275,
+ "grad_norm": 0.19506660103797913,
+ "learning_rate": 0.0006,
+ "loss": 3.5600461959838867,
+ "step": 3570
+ },
+ {
+ "epoch": 49.60113586719091,
+ "grad_norm": 0.21305067837238312,
+ "learning_rate": 0.0006,
+ "loss": 3.5717577934265137,
+ "step": 3571
+ },
+ {
+ "epoch": 49.615115771079076,
+ "grad_norm": 0.21184347569942474,
+ "learning_rate": 0.0006,
+ "loss": 3.608819007873535,
+ "step": 3572
+ },
+ {
+ "epoch": 49.62909567496723,
+ "grad_norm": 0.22302201390266418,
+ "learning_rate": 0.0006,
+ "loss": 3.5871644020080566,
+ "step": 3573
+ },
+ {
+ "epoch": 49.643075578855395,
+ "grad_norm": 0.21942365169525146,
+ "learning_rate": 0.0006,
+ "loss": 3.596029043197632,
+ "step": 3574
+ },
+ {
+ "epoch": 49.65705548274356,
+ "grad_norm": 0.2627110481262207,
+ "learning_rate": 0.0006,
+ "loss": 3.5900766849517822,
+ "step": 3575
+ },
+ {
+ "epoch": 49.671035386631715,
+ "grad_norm": 0.28253448009490967,
+ "learning_rate": 0.0006,
+ "loss": 3.599386215209961,
+ "step": 3576
+ },
+ {
+ "epoch": 49.68501529051988,
+ "grad_norm": 0.24279426038265228,
+ "learning_rate": 0.0006,
+ "loss": 3.580909013748169,
+ "step": 3577
+ },
+ {
+ "epoch": 49.69899519440804,
+ "grad_norm": 0.22092898190021515,
+ "learning_rate": 0.0006,
+ "loss": 3.6043782234191895,
+ "step": 3578
+ },
+ {
+ "epoch": 49.7129750982962,
+ "grad_norm": 0.23356051743030548,
+ "learning_rate": 0.0006,
+ "loss": 3.6103105545043945,
+ "step": 3579
+ },
+ {
+ "epoch": 49.72695500218436,
+ "grad_norm": 0.24508118629455566,
+ "learning_rate": 0.0006,
+ "loss": 3.612980365753174,
+ "step": 3580
+ },
+ {
+ "epoch": 49.74093490607252,
+ "grad_norm": 0.2501833438873291,
+ "learning_rate": 0.0006,
+ "loss": 3.6111063957214355,
+ "step": 3581
+ },
+ {
+ "epoch": 49.75491480996068,
+ "grad_norm": 0.2263427972793579,
+ "learning_rate": 0.0006,
+ "loss": 3.5709285736083984,
+ "step": 3582
+ },
+ {
+ "epoch": 49.768894713848844,
+ "grad_norm": 0.19881728291511536,
+ "learning_rate": 0.0006,
+ "loss": 3.5836503505706787,
+ "step": 3583
+ },
+ {
+ "epoch": 49.782874617737,
+ "grad_norm": 0.22516517341136932,
+ "learning_rate": 0.0006,
+ "loss": 3.5797667503356934,
+ "step": 3584
+ },
+ {
+ "epoch": 49.796854521625164,
+ "grad_norm": 0.22347061336040497,
+ "learning_rate": 0.0006,
+ "loss": 3.6245951652526855,
+ "step": 3585
+ },
+ {
+ "epoch": 49.81083442551333,
+ "grad_norm": 0.2062593549489975,
+ "learning_rate": 0.0006,
+ "loss": 3.607572317123413,
+ "step": 3586
+ },
+ {
+ "epoch": 49.824814329401484,
+ "grad_norm": 0.20671074092388153,
+ "learning_rate": 0.0006,
+ "loss": 3.5671472549438477,
+ "step": 3587
+ },
+ {
+ "epoch": 49.83879423328965,
+ "grad_norm": 0.19981902837753296,
+ "learning_rate": 0.0006,
+ "loss": 3.6084837913513184,
+ "step": 3588
+ },
+ {
+ "epoch": 49.8527741371778,
+ "grad_norm": 0.2004556804895401,
+ "learning_rate": 0.0006,
+ "loss": 3.631455898284912,
+ "step": 3589
+ },
+ {
+ "epoch": 49.86675404106597,
+ "grad_norm": 0.20990414917469025,
+ "learning_rate": 0.0006,
+ "loss": 3.6017699241638184,
+ "step": 3590
+ },
+ {
+ "epoch": 49.88073394495413,
+ "grad_norm": 0.19016146659851074,
+ "learning_rate": 0.0006,
+ "loss": 3.6110801696777344,
+ "step": 3591
+ },
+ {
+ "epoch": 49.89471384884229,
+ "grad_norm": 0.2015834003686905,
+ "learning_rate": 0.0006,
+ "loss": 3.58852481842041,
+ "step": 3592
+ },
+ {
+ "epoch": 49.90869375273045,
+ "grad_norm": 0.205678328871727,
+ "learning_rate": 0.0006,
+ "loss": 3.581789970397949,
+ "step": 3593
+ },
+ {
+ "epoch": 49.92267365661861,
+ "grad_norm": 0.20975211262702942,
+ "learning_rate": 0.0006,
+ "loss": 3.6126320362091064,
+ "step": 3594
+ },
+ {
+ "epoch": 49.93665356050677,
+ "grad_norm": 0.20510081946849823,
+ "learning_rate": 0.0006,
+ "loss": 3.5970656871795654,
+ "step": 3595
+ },
+ {
+ "epoch": 49.95063346439493,
+ "grad_norm": 0.19842886924743652,
+ "learning_rate": 0.0006,
+ "loss": 3.6055545806884766,
+ "step": 3596
+ },
+ {
+ "epoch": 49.964613368283096,
+ "grad_norm": 0.20551791787147522,
+ "learning_rate": 0.0006,
+ "loss": 3.5861949920654297,
+ "step": 3597
+ },
+ {
+ "epoch": 49.97859327217125,
+ "grad_norm": 0.21147456765174866,
+ "learning_rate": 0.0006,
+ "loss": 3.585934638977051,
+ "step": 3598
+ },
+ {
+ "epoch": 49.992573176059416,
+ "grad_norm": 0.21793442964553833,
+ "learning_rate": 0.0006,
+ "loss": 3.5956411361694336,
+ "step": 3599
+ },
+ {
+ "epoch": 50.0,
+ "grad_norm": 0.24623161554336548,
+ "learning_rate": 0.0006,
+ "loss": 3.623453140258789,
+ "step": 3600
+ },
+ {
+ "epoch": 50.0,
+ "eval_loss": 3.9807891845703125,
+ "eval_runtime": 45.7708,
+ "eval_samples_per_second": 53.353,
+ "eval_steps_per_second": 3.343,
+ "step": 3600
+ },
+ {
+ "epoch": 50.01397990388816,
+ "grad_norm": 0.22322626411914825,
+ "learning_rate": 0.0006,
+ "loss": 3.5475401878356934,
+ "step": 3601
+ },
+ {
+ "epoch": 50.02795980777632,
+ "grad_norm": 0.21957066655158997,
+ "learning_rate": 0.0006,
+ "loss": 3.5616683959960938,
+ "step": 3602
+ },
+ {
+ "epoch": 50.04193971166448,
+ "grad_norm": 0.22030551731586456,
+ "learning_rate": 0.0006,
+ "loss": 3.56367826461792,
+ "step": 3603
+ },
+ {
+ "epoch": 50.05591961555265,
+ "grad_norm": 0.21536092460155487,
+ "learning_rate": 0.0006,
+ "loss": 3.5613503456115723,
+ "step": 3604
+ },
+ {
+ "epoch": 50.0698995194408,
+ "grad_norm": 0.22454269230365753,
+ "learning_rate": 0.0006,
+ "loss": 3.5348987579345703,
+ "step": 3605
+ },
+ {
+ "epoch": 50.083879423328966,
+ "grad_norm": 0.2281617820262909,
+ "learning_rate": 0.0006,
+ "loss": 3.5722241401672363,
+ "step": 3606
+ },
+ {
+ "epoch": 50.09785932721712,
+ "grad_norm": 0.23318710923194885,
+ "learning_rate": 0.0006,
+ "loss": 3.559063673019409,
+ "step": 3607
+ },
+ {
+ "epoch": 50.111839231105286,
+ "grad_norm": 0.2277889847755432,
+ "learning_rate": 0.0006,
+ "loss": 3.5632925033569336,
+ "step": 3608
+ },
+ {
+ "epoch": 50.12581913499345,
+ "grad_norm": 0.2317705601453781,
+ "learning_rate": 0.0006,
+ "loss": 3.5835886001586914,
+ "step": 3609
+ },
+ {
+ "epoch": 50.139799038881605,
+ "grad_norm": 0.21388863027095795,
+ "learning_rate": 0.0006,
+ "loss": 3.5976145267486572,
+ "step": 3610
+ },
+ {
+ "epoch": 50.15377894276977,
+ "grad_norm": 0.2070954293012619,
+ "learning_rate": 0.0006,
+ "loss": 3.5486221313476562,
+ "step": 3611
+ },
+ {
+ "epoch": 50.16775884665793,
+ "grad_norm": 0.21602077782154083,
+ "learning_rate": 0.0006,
+ "loss": 3.5897607803344727,
+ "step": 3612
+ },
+ {
+ "epoch": 50.18173875054609,
+ "grad_norm": 0.21106162667274475,
+ "learning_rate": 0.0006,
+ "loss": 3.5587167739868164,
+ "step": 3613
+ },
+ {
+ "epoch": 50.19571865443425,
+ "grad_norm": 0.2047950178384781,
+ "learning_rate": 0.0006,
+ "loss": 3.576798915863037,
+ "step": 3614
+ },
+ {
+ "epoch": 50.20969855832241,
+ "grad_norm": 0.2204097956418991,
+ "learning_rate": 0.0006,
+ "loss": 3.5466837882995605,
+ "step": 3615
+ },
+ {
+ "epoch": 50.22367846221057,
+ "grad_norm": 0.2220875471830368,
+ "learning_rate": 0.0006,
+ "loss": 3.5722036361694336,
+ "step": 3616
+ },
+ {
+ "epoch": 50.237658366098735,
+ "grad_norm": 0.2250797003507614,
+ "learning_rate": 0.0006,
+ "loss": 3.566347122192383,
+ "step": 3617
+ },
+ {
+ "epoch": 50.25163826998689,
+ "grad_norm": 0.22837485373020172,
+ "learning_rate": 0.0006,
+ "loss": 3.5673274993896484,
+ "step": 3618
+ },
+ {
+ "epoch": 50.265618173875055,
+ "grad_norm": 0.2281104475259781,
+ "learning_rate": 0.0006,
+ "loss": 3.5543737411499023,
+ "step": 3619
+ },
+ {
+ "epoch": 50.27959807776322,
+ "grad_norm": 0.2052381932735443,
+ "learning_rate": 0.0006,
+ "loss": 3.566401958465576,
+ "step": 3620
+ },
+ {
+ "epoch": 50.293577981651374,
+ "grad_norm": 0.2125921994447708,
+ "learning_rate": 0.0006,
+ "loss": 3.5467424392700195,
+ "step": 3621
+ },
+ {
+ "epoch": 50.30755788553954,
+ "grad_norm": 0.22641244530677795,
+ "learning_rate": 0.0006,
+ "loss": 3.548497200012207,
+ "step": 3622
+ },
+ {
+ "epoch": 50.3215377894277,
+ "grad_norm": 0.23039482533931732,
+ "learning_rate": 0.0006,
+ "loss": 3.5948381423950195,
+ "step": 3623
+ },
+ {
+ "epoch": 50.33551769331586,
+ "grad_norm": 0.22753404080867767,
+ "learning_rate": 0.0006,
+ "loss": 3.541825532913208,
+ "step": 3624
+ },
+ {
+ "epoch": 50.34949759720402,
+ "grad_norm": 0.2528170347213745,
+ "learning_rate": 0.0006,
+ "loss": 3.5937235355377197,
+ "step": 3625
+ },
+ {
+ "epoch": 50.36347750109218,
+ "grad_norm": 0.25434595346450806,
+ "learning_rate": 0.0006,
+ "loss": 3.5779776573181152,
+ "step": 3626
+ },
+ {
+ "epoch": 50.37745740498034,
+ "grad_norm": 0.22519059479236603,
+ "learning_rate": 0.0006,
+ "loss": 3.5456271171569824,
+ "step": 3627
+ },
+ {
+ "epoch": 50.391437308868504,
+ "grad_norm": 0.2077232301235199,
+ "learning_rate": 0.0006,
+ "loss": 3.5693111419677734,
+ "step": 3628
+ },
+ {
+ "epoch": 50.40541721275666,
+ "grad_norm": 0.20925411581993103,
+ "learning_rate": 0.0006,
+ "loss": 3.6063997745513916,
+ "step": 3629
+ },
+ {
+ "epoch": 50.419397116644824,
+ "grad_norm": 0.2114555686712265,
+ "learning_rate": 0.0006,
+ "loss": 3.5676894187927246,
+ "step": 3630
+ },
+ {
+ "epoch": 50.43337702053299,
+ "grad_norm": 0.23759354650974274,
+ "learning_rate": 0.0006,
+ "loss": 3.5465126037597656,
+ "step": 3631
+ },
+ {
+ "epoch": 50.44735692442114,
+ "grad_norm": 0.23809516429901123,
+ "learning_rate": 0.0006,
+ "loss": 3.571600914001465,
+ "step": 3632
+ },
+ {
+ "epoch": 50.46133682830931,
+ "grad_norm": 0.20501303672790527,
+ "learning_rate": 0.0006,
+ "loss": 3.573550224304199,
+ "step": 3633
+ },
+ {
+ "epoch": 50.47531673219746,
+ "grad_norm": 0.21562306582927704,
+ "learning_rate": 0.0006,
+ "loss": 3.5625600814819336,
+ "step": 3634
+ },
+ {
+ "epoch": 50.489296636085626,
+ "grad_norm": 0.20469479262828827,
+ "learning_rate": 0.0006,
+ "loss": 3.5737175941467285,
+ "step": 3635
+ },
+ {
+ "epoch": 50.50327653997379,
+ "grad_norm": 0.2078634798526764,
+ "learning_rate": 0.0006,
+ "loss": 3.5691545009613037,
+ "step": 3636
+ },
+ {
+ "epoch": 50.517256443861946,
+ "grad_norm": 0.20340897142887115,
+ "learning_rate": 0.0006,
+ "loss": 3.583918571472168,
+ "step": 3637
+ },
+ {
+ "epoch": 50.53123634775011,
+ "grad_norm": 0.2006944715976715,
+ "learning_rate": 0.0006,
+ "loss": 3.596034049987793,
+ "step": 3638
+ },
+ {
+ "epoch": 50.54521625163827,
+ "grad_norm": 0.19281257688999176,
+ "learning_rate": 0.0006,
+ "loss": 3.5993080139160156,
+ "step": 3639
+ },
+ {
+ "epoch": 50.55919615552643,
+ "grad_norm": 0.19528807699680328,
+ "learning_rate": 0.0006,
+ "loss": 3.6108102798461914,
+ "step": 3640
+ },
+ {
+ "epoch": 50.57317605941459,
+ "grad_norm": 0.19329112768173218,
+ "learning_rate": 0.0006,
+ "loss": 3.5964512825012207,
+ "step": 3641
+ },
+ {
+ "epoch": 50.58715596330275,
+ "grad_norm": 0.1928209513425827,
+ "learning_rate": 0.0006,
+ "loss": 3.5927724838256836,
+ "step": 3642
+ },
+ {
+ "epoch": 50.60113586719091,
+ "grad_norm": 0.20212236046791077,
+ "learning_rate": 0.0006,
+ "loss": 3.5778708457946777,
+ "step": 3643
+ },
+ {
+ "epoch": 50.615115771079076,
+ "grad_norm": 0.22244620323181152,
+ "learning_rate": 0.0006,
+ "loss": 3.6219539642333984,
+ "step": 3644
+ },
+ {
+ "epoch": 50.62909567496723,
+ "grad_norm": 0.2659119963645935,
+ "learning_rate": 0.0006,
+ "loss": 3.578831195831299,
+ "step": 3645
+ },
+ {
+ "epoch": 50.643075578855395,
+ "grad_norm": 0.2837344706058502,
+ "learning_rate": 0.0006,
+ "loss": 3.587677240371704,
+ "step": 3646
+ },
+ {
+ "epoch": 50.65705548274356,
+ "grad_norm": 0.26747965812683105,
+ "learning_rate": 0.0006,
+ "loss": 3.611286163330078,
+ "step": 3647
+ },
+ {
+ "epoch": 50.671035386631715,
+ "grad_norm": 0.24604788422584534,
+ "learning_rate": 0.0006,
+ "loss": 3.5740575790405273,
+ "step": 3648
+ },
+ {
+ "epoch": 50.68501529051988,
+ "grad_norm": 0.2379457652568817,
+ "learning_rate": 0.0006,
+ "loss": 3.5997209548950195,
+ "step": 3649
+ },
+ {
+ "epoch": 50.69899519440804,
+ "grad_norm": 0.2296321839094162,
+ "learning_rate": 0.0006,
+ "loss": 3.5975162982940674,
+ "step": 3650
+ },
+ {
+ "epoch": 50.7129750982962,
+ "grad_norm": 0.22054627537727356,
+ "learning_rate": 0.0006,
+ "loss": 3.5821738243103027,
+ "step": 3651
+ },
+ {
+ "epoch": 50.72695500218436,
+ "grad_norm": 0.22114980220794678,
+ "learning_rate": 0.0006,
+ "loss": 3.5769970417022705,
+ "step": 3652
+ },
+ {
+ "epoch": 50.74093490607252,
+ "grad_norm": 0.21389314532279968,
+ "learning_rate": 0.0006,
+ "loss": 3.5952796936035156,
+ "step": 3653
+ },
+ {
+ "epoch": 50.75491480996068,
+ "grad_norm": 0.21069210767745972,
+ "learning_rate": 0.0006,
+ "loss": 3.5884671211242676,
+ "step": 3654
+ },
+ {
+ "epoch": 50.768894713848844,
+ "grad_norm": 0.22028805315494537,
+ "learning_rate": 0.0006,
+ "loss": 3.593442440032959,
+ "step": 3655
+ },
+ {
+ "epoch": 50.782874617737,
+ "grad_norm": 0.21296948194503784,
+ "learning_rate": 0.0006,
+ "loss": 3.5656774044036865,
+ "step": 3656
+ },
+ {
+ "epoch": 50.796854521625164,
+ "grad_norm": 0.19871588051319122,
+ "learning_rate": 0.0006,
+ "loss": 3.5939064025878906,
+ "step": 3657
+ },
+ {
+ "epoch": 50.81083442551333,
+ "grad_norm": 0.19523470103740692,
+ "learning_rate": 0.0006,
+ "loss": 3.5806071758270264,
+ "step": 3658
+ },
+ {
+ "epoch": 50.824814329401484,
+ "grad_norm": 0.18718191981315613,
+ "learning_rate": 0.0006,
+ "loss": 3.5903120040893555,
+ "step": 3659
+ },
+ {
+ "epoch": 50.83879423328965,
+ "grad_norm": 0.18796689808368683,
+ "learning_rate": 0.0006,
+ "loss": 3.5799593925476074,
+ "step": 3660
+ },
+ {
+ "epoch": 50.8527741371778,
+ "grad_norm": 0.21794569492340088,
+ "learning_rate": 0.0006,
+ "loss": 3.5712361335754395,
+ "step": 3661
+ },
+ {
+ "epoch": 50.86675404106597,
+ "grad_norm": 0.2374759465456009,
+ "learning_rate": 0.0006,
+ "loss": 3.602503776550293,
+ "step": 3662
+ },
+ {
+ "epoch": 50.88073394495413,
+ "grad_norm": 0.20213527977466583,
+ "learning_rate": 0.0006,
+ "loss": 3.5756399631500244,
+ "step": 3663
+ },
+ {
+ "epoch": 50.89471384884229,
+ "grad_norm": 0.1875160187482834,
+ "learning_rate": 0.0006,
+ "loss": 3.625436305999756,
+ "step": 3664
+ },
+ {
+ "epoch": 50.90869375273045,
+ "grad_norm": 0.19908255338668823,
+ "learning_rate": 0.0006,
+ "loss": 3.592522621154785,
+ "step": 3665
+ },
+ {
+ "epoch": 50.92267365661861,
+ "grad_norm": 0.20776167511940002,
+ "learning_rate": 0.0006,
+ "loss": 3.5777883529663086,
+ "step": 3666
+ },
+ {
+ "epoch": 50.93665356050677,
+ "grad_norm": 0.19510093331336975,
+ "learning_rate": 0.0006,
+ "loss": 3.587306022644043,
+ "step": 3667
+ },
+ {
+ "epoch": 50.95063346439493,
+ "grad_norm": 0.2180490493774414,
+ "learning_rate": 0.0006,
+ "loss": 3.5855464935302734,
+ "step": 3668
+ },
+ {
+ "epoch": 50.964613368283096,
+ "grad_norm": 0.19967055320739746,
+ "learning_rate": 0.0006,
+ "loss": 3.609689235687256,
+ "step": 3669
+ },
+ {
+ "epoch": 50.97859327217125,
+ "grad_norm": 0.2081584632396698,
+ "learning_rate": 0.0006,
+ "loss": 3.625236749649048,
+ "step": 3670
+ },
+ {
+ "epoch": 50.992573176059416,
+ "grad_norm": 0.2312266230583191,
+ "learning_rate": 0.0006,
+ "loss": 3.5977330207824707,
+ "step": 3671
+ },
+ {
+ "epoch": 51.0,
+ "grad_norm": 0.2464766502380371,
+ "learning_rate": 0.0006,
+ "loss": 3.610635995864868,
+ "step": 3672
+ },
+ {
+ "epoch": 51.0,
+ "eval_loss": 3.9810166358947754,
+ "eval_runtime": 45.5851,
+ "eval_samples_per_second": 53.57,
+ "eval_steps_per_second": 3.356,
+ "step": 3672
+ },
+ {
+ "epoch": 51.01397990388816,
+ "grad_norm": 0.22583232820034027,
+ "learning_rate": 0.0006,
+ "loss": 3.547168016433716,
+ "step": 3673
+ },
+ {
+ "epoch": 51.02795980777632,
+ "grad_norm": 0.23001070320606232,
+ "learning_rate": 0.0006,
+ "loss": 3.546207904815674,
+ "step": 3674
+ },
+ {
+ "epoch": 51.04193971166448,
+ "grad_norm": 0.21891392767429352,
+ "learning_rate": 0.0006,
+ "loss": 3.564371109008789,
+ "step": 3675
+ },
+ {
+ "epoch": 51.05591961555265,
+ "grad_norm": 0.22195076942443848,
+ "learning_rate": 0.0006,
+ "loss": 3.538297414779663,
+ "step": 3676
+ },
+ {
+ "epoch": 51.0698995194408,
+ "grad_norm": 0.24688288569450378,
+ "learning_rate": 0.0006,
+ "loss": 3.5705811977386475,
+ "step": 3677
+ },
+ {
+ "epoch": 51.083879423328966,
+ "grad_norm": 0.2731003165245056,
+ "learning_rate": 0.0006,
+ "loss": 3.530763626098633,
+ "step": 3678
+ },
+ {
+ "epoch": 51.09785932721712,
+ "grad_norm": 0.27474021911621094,
+ "learning_rate": 0.0006,
+ "loss": 3.5559208393096924,
+ "step": 3679
+ },
+ {
+ "epoch": 51.111839231105286,
+ "grad_norm": 0.26311439275741577,
+ "learning_rate": 0.0006,
+ "loss": 3.5698819160461426,
+ "step": 3680
+ },
+ {
+ "epoch": 51.12581913499345,
+ "grad_norm": 0.21895965933799744,
+ "learning_rate": 0.0006,
+ "loss": 3.567232370376587,
+ "step": 3681
+ },
+ {
+ "epoch": 51.139799038881605,
+ "grad_norm": 0.19598282873630524,
+ "learning_rate": 0.0006,
+ "loss": 3.6033718585968018,
+ "step": 3682
+ },
+ {
+ "epoch": 51.15377894276977,
+ "grad_norm": 0.2183268666267395,
+ "learning_rate": 0.0006,
+ "loss": 3.5599026679992676,
+ "step": 3683
+ },
+ {
+ "epoch": 51.16775884665793,
+ "grad_norm": 0.22657731175422668,
+ "learning_rate": 0.0006,
+ "loss": 3.532038688659668,
+ "step": 3684
+ },
+ {
+ "epoch": 51.18173875054609,
+ "grad_norm": 0.21979935467243195,
+ "learning_rate": 0.0006,
+ "loss": 3.544640064239502,
+ "step": 3685
+ },
+ {
+ "epoch": 51.19571865443425,
+ "grad_norm": 0.20581361651420593,
+ "learning_rate": 0.0006,
+ "loss": 3.579803466796875,
+ "step": 3686
+ },
+ {
+ "epoch": 51.20969855832241,
+ "grad_norm": 0.22677212953567505,
+ "learning_rate": 0.0006,
+ "loss": 3.576796054840088,
+ "step": 3687
+ },
+ {
+ "epoch": 51.22367846221057,
+ "grad_norm": 0.2599104940891266,
+ "learning_rate": 0.0006,
+ "loss": 3.5657899379730225,
+ "step": 3688
+ },
+ {
+ "epoch": 51.237658366098735,
+ "grad_norm": 0.23320309817790985,
+ "learning_rate": 0.0006,
+ "loss": 3.5537824630737305,
+ "step": 3689
+ },
+ {
+ "epoch": 51.25163826998689,
+ "grad_norm": 0.2345186471939087,
+ "learning_rate": 0.0006,
+ "loss": 3.5699901580810547,
+ "step": 3690
+ },
+ {
+ "epoch": 51.265618173875055,
+ "grad_norm": 0.24723312258720398,
+ "learning_rate": 0.0006,
+ "loss": 3.553495168685913,
+ "step": 3691
+ },
+ {
+ "epoch": 51.27959807776322,
+ "grad_norm": 0.24195604026317596,
+ "learning_rate": 0.0006,
+ "loss": 3.6008248329162598,
+ "step": 3692
+ },
+ {
+ "epoch": 51.293577981651374,
+ "grad_norm": 0.23011726140975952,
+ "learning_rate": 0.0006,
+ "loss": 3.5842812061309814,
+ "step": 3693
+ },
+ {
+ "epoch": 51.30755788553954,
+ "grad_norm": 0.23412185907363892,
+ "learning_rate": 0.0006,
+ "loss": 3.5648040771484375,
+ "step": 3694
+ },
+ {
+ "epoch": 51.3215377894277,
+ "grad_norm": 0.22911828756332397,
+ "learning_rate": 0.0006,
+ "loss": 3.5599000453948975,
+ "step": 3695
+ },
+ {
+ "epoch": 51.33551769331586,
+ "grad_norm": 0.20045386254787445,
+ "learning_rate": 0.0006,
+ "loss": 3.559370517730713,
+ "step": 3696
+ },
+ {
+ "epoch": 51.34949759720402,
+ "grad_norm": 0.24723322689533234,
+ "learning_rate": 0.0006,
+ "loss": 3.5734081268310547,
+ "step": 3697
+ },
+ {
+ "epoch": 51.36347750109218,
+ "grad_norm": 0.28003066778182983,
+ "learning_rate": 0.0006,
+ "loss": 3.574591636657715,
+ "step": 3698
+ },
+ {
+ "epoch": 51.37745740498034,
+ "grad_norm": 0.27969157695770264,
+ "learning_rate": 0.0006,
+ "loss": 3.5703907012939453,
+ "step": 3699
+ },
+ {
+ "epoch": 51.391437308868504,
+ "grad_norm": 0.2352922111749649,
+ "learning_rate": 0.0006,
+ "loss": 3.540452480316162,
+ "step": 3700
+ },
+ {
+ "epoch": 51.40541721275666,
+ "grad_norm": 0.21332240104675293,
+ "learning_rate": 0.0006,
+ "loss": 3.5883522033691406,
+ "step": 3701
+ },
+ {
+ "epoch": 51.419397116644824,
+ "grad_norm": 0.2021809071302414,
+ "learning_rate": 0.0006,
+ "loss": 3.567544460296631,
+ "step": 3702
+ },
+ {
+ "epoch": 51.43337702053299,
+ "grad_norm": 0.23054654896259308,
+ "learning_rate": 0.0006,
+ "loss": 3.5927062034606934,
+ "step": 3703
+ },
+ {
+ "epoch": 51.44735692442114,
+ "grad_norm": 0.22398747503757477,
+ "learning_rate": 0.0006,
+ "loss": 3.5977213382720947,
+ "step": 3704
+ },
+ {
+ "epoch": 51.46133682830931,
+ "grad_norm": 0.2021128088235855,
+ "learning_rate": 0.0006,
+ "loss": 3.585836887359619,
+ "step": 3705
+ },
+ {
+ "epoch": 51.47531673219746,
+ "grad_norm": 0.23031292855739594,
+ "learning_rate": 0.0006,
+ "loss": 3.532315731048584,
+ "step": 3706
+ },
+ {
+ "epoch": 51.489296636085626,
+ "grad_norm": 0.26744455099105835,
+ "learning_rate": 0.0006,
+ "loss": 3.585782289505005,
+ "step": 3707
+ },
+ {
+ "epoch": 51.50327653997379,
+ "grad_norm": 0.2508980929851532,
+ "learning_rate": 0.0006,
+ "loss": 3.550276279449463,
+ "step": 3708
+ },
+ {
+ "epoch": 51.517256443861946,
+ "grad_norm": 0.2180585265159607,
+ "learning_rate": 0.0006,
+ "loss": 3.566798210144043,
+ "step": 3709
+ },
+ {
+ "epoch": 51.53123634775011,
+ "grad_norm": 0.18508869409561157,
+ "learning_rate": 0.0006,
+ "loss": 3.5295116901397705,
+ "step": 3710
+ },
+ {
+ "epoch": 51.54521625163827,
+ "grad_norm": 0.19017672538757324,
+ "learning_rate": 0.0006,
+ "loss": 3.5932717323303223,
+ "step": 3711
+ },
+ {
+ "epoch": 51.55919615552643,
+ "grad_norm": 0.2228020876646042,
+ "learning_rate": 0.0006,
+ "loss": 3.5660648345947266,
+ "step": 3712
+ },
+ {
+ "epoch": 51.57317605941459,
+ "grad_norm": 0.22948148846626282,
+ "learning_rate": 0.0006,
+ "loss": 3.5785627365112305,
+ "step": 3713
+ },
+ {
+ "epoch": 51.58715596330275,
+ "grad_norm": 0.2438911497592926,
+ "learning_rate": 0.0006,
+ "loss": 3.5885257720947266,
+ "step": 3714
+ },
+ {
+ "epoch": 51.60113586719091,
+ "grad_norm": 0.25012296438217163,
+ "learning_rate": 0.0006,
+ "loss": 3.577232599258423,
+ "step": 3715
+ },
+ {
+ "epoch": 51.615115771079076,
+ "grad_norm": 0.27102336287498474,
+ "learning_rate": 0.0006,
+ "loss": 3.5600078105926514,
+ "step": 3716
+ },
+ {
+ "epoch": 51.62909567496723,
+ "grad_norm": 0.26425355672836304,
+ "learning_rate": 0.0006,
+ "loss": 3.5694093704223633,
+ "step": 3717
+ },
+ {
+ "epoch": 51.643075578855395,
+ "grad_norm": 0.24292822182178497,
+ "learning_rate": 0.0006,
+ "loss": 3.5774331092834473,
+ "step": 3718
+ },
+ {
+ "epoch": 51.65705548274356,
+ "grad_norm": 0.22668084502220154,
+ "learning_rate": 0.0006,
+ "loss": 3.5912742614746094,
+ "step": 3719
+ },
+ {
+ "epoch": 51.671035386631715,
+ "grad_norm": 0.2090575248003006,
+ "learning_rate": 0.0006,
+ "loss": 3.5473170280456543,
+ "step": 3720
+ },
+ {
+ "epoch": 51.68501529051988,
+ "grad_norm": 0.22276616096496582,
+ "learning_rate": 0.0006,
+ "loss": 3.6076784133911133,
+ "step": 3721
+ },
+ {
+ "epoch": 51.69899519440804,
+ "grad_norm": 0.22105294466018677,
+ "learning_rate": 0.0006,
+ "loss": 3.5820791721343994,
+ "step": 3722
+ },
+ {
+ "epoch": 51.7129750982962,
+ "grad_norm": 0.19231240451335907,
+ "learning_rate": 0.0006,
+ "loss": 3.6017708778381348,
+ "step": 3723
+ },
+ {
+ "epoch": 51.72695500218436,
+ "grad_norm": 0.2050354927778244,
+ "learning_rate": 0.0006,
+ "loss": 3.5967769622802734,
+ "step": 3724
+ },
+ {
+ "epoch": 51.74093490607252,
+ "grad_norm": 0.19779305160045624,
+ "learning_rate": 0.0006,
+ "loss": 3.597214698791504,
+ "step": 3725
+ },
+ {
+ "epoch": 51.75491480996068,
+ "grad_norm": 0.22394844889640808,
+ "learning_rate": 0.0006,
+ "loss": 3.574063301086426,
+ "step": 3726
+ },
+ {
+ "epoch": 51.768894713848844,
+ "grad_norm": 0.2262638807296753,
+ "learning_rate": 0.0006,
+ "loss": 3.5754079818725586,
+ "step": 3727
+ },
+ {
+ "epoch": 51.782874617737,
+ "grad_norm": 0.2168288677930832,
+ "learning_rate": 0.0006,
+ "loss": 3.6079599857330322,
+ "step": 3728
+ },
+ {
+ "epoch": 51.796854521625164,
+ "grad_norm": 0.2035517394542694,
+ "learning_rate": 0.0006,
+ "loss": 3.5948667526245117,
+ "step": 3729
+ },
+ {
+ "epoch": 51.81083442551333,
+ "grad_norm": 0.20529425144195557,
+ "learning_rate": 0.0006,
+ "loss": 3.5589542388916016,
+ "step": 3730
+ },
+ {
+ "epoch": 51.824814329401484,
+ "grad_norm": 0.2464100867509842,
+ "learning_rate": 0.0006,
+ "loss": 3.5947155952453613,
+ "step": 3731
+ },
+ {
+ "epoch": 51.83879423328965,
+ "grad_norm": 0.28043219447135925,
+ "learning_rate": 0.0006,
+ "loss": 3.6102852821350098,
+ "step": 3732
+ },
+ {
+ "epoch": 51.8527741371778,
+ "grad_norm": 0.2879013121128082,
+ "learning_rate": 0.0006,
+ "loss": 3.5903573036193848,
+ "step": 3733
+ },
+ {
+ "epoch": 51.86675404106597,
+ "grad_norm": 0.2532044053077698,
+ "learning_rate": 0.0006,
+ "loss": 3.5704729557037354,
+ "step": 3734
+ },
+ {
+ "epoch": 51.88073394495413,
+ "grad_norm": 0.25126248598098755,
+ "learning_rate": 0.0006,
+ "loss": 3.5449633598327637,
+ "step": 3735
+ },
+ {
+ "epoch": 51.89471384884229,
+ "grad_norm": 0.2494364082813263,
+ "learning_rate": 0.0006,
+ "loss": 3.5825607776641846,
+ "step": 3736
+ },
+ {
+ "epoch": 51.90869375273045,
+ "grad_norm": 0.24867761135101318,
+ "learning_rate": 0.0006,
+ "loss": 3.5998034477233887,
+ "step": 3737
+ },
+ {
+ "epoch": 51.92267365661861,
+ "grad_norm": 0.2552012801170349,
+ "learning_rate": 0.0006,
+ "loss": 3.5487377643585205,
+ "step": 3738
+ },
+ {
+ "epoch": 51.93665356050677,
+ "grad_norm": 0.2243119329214096,
+ "learning_rate": 0.0006,
+ "loss": 3.6081466674804688,
+ "step": 3739
+ },
+ {
+ "epoch": 51.95063346439493,
+ "grad_norm": 0.2106700837612152,
+ "learning_rate": 0.0006,
+ "loss": 3.607586622238159,
+ "step": 3740
+ },
+ {
+ "epoch": 51.964613368283096,
+ "grad_norm": 0.2207096666097641,
+ "learning_rate": 0.0006,
+ "loss": 3.6094579696655273,
+ "step": 3741
+ },
+ {
+ "epoch": 51.97859327217125,
+ "grad_norm": 0.2310071736574173,
+ "learning_rate": 0.0006,
+ "loss": 3.5837807655334473,
+ "step": 3742
+ },
+ {
+ "epoch": 51.992573176059416,
+ "grad_norm": 0.258770614862442,
+ "learning_rate": 0.0006,
+ "loss": 3.639329433441162,
+ "step": 3743
+ },
+ {
+ "epoch": 52.0,
+ "grad_norm": 0.24004915356636047,
+ "learning_rate": 0.0006,
+ "loss": 3.6178512573242188,
+ "step": 3744
+ },
+ {
+ "epoch": 52.0,
+ "eval_loss": 3.97371244430542,
+ "eval_runtime": 46.1923,
+ "eval_samples_per_second": 52.866,
+ "eval_steps_per_second": 3.312,
+ "step": 3744
+ },
+ {
+ "epoch": 52.01397990388816,
+ "grad_norm": 0.21953323483467102,
+ "learning_rate": 0.0006,
+ "loss": 3.5929579734802246,
+ "step": 3745
+ },
+ {
+ "epoch": 52.02795980777632,
+ "grad_norm": 0.25547415018081665,
+ "learning_rate": 0.0006,
+ "loss": 3.5762600898742676,
+ "step": 3746
+ },
+ {
+ "epoch": 52.04193971166448,
+ "grad_norm": 0.28905144333839417,
+ "learning_rate": 0.0006,
+ "loss": 3.5794596672058105,
+ "step": 3747
+ },
+ {
+ "epoch": 52.05591961555265,
+ "grad_norm": 0.2618118226528168,
+ "learning_rate": 0.0006,
+ "loss": 3.543205499649048,
+ "step": 3748
+ },
+ {
+ "epoch": 52.0698995194408,
+ "grad_norm": 0.2288745492696762,
+ "learning_rate": 0.0006,
+ "loss": 3.562770366668701,
+ "step": 3749
+ },
+ {
+ "epoch": 52.083879423328966,
+ "grad_norm": 0.25327110290527344,
+ "learning_rate": 0.0006,
+ "loss": 3.5405054092407227,
+ "step": 3750
+ },
+ {
+ "epoch": 52.09785932721712,
+ "grad_norm": 0.2721746861934662,
+ "learning_rate": 0.0006,
+ "loss": 3.5650479793548584,
+ "step": 3751
+ },
+ {
+ "epoch": 52.111839231105286,
+ "grad_norm": 0.2890555262565613,
+ "learning_rate": 0.0006,
+ "loss": 3.556122303009033,
+ "step": 3752
+ },
+ {
+ "epoch": 52.12581913499345,
+ "grad_norm": 0.30541476607322693,
+ "learning_rate": 0.0006,
+ "loss": 3.544271469116211,
+ "step": 3753
+ },
+ {
+ "epoch": 52.139799038881605,
+ "grad_norm": 0.2555760443210602,
+ "learning_rate": 0.0006,
+ "loss": 3.5452728271484375,
+ "step": 3754
+ },
+ {
+ "epoch": 52.15377894276977,
+ "grad_norm": 0.2653098404407501,
+ "learning_rate": 0.0006,
+ "loss": 3.57212495803833,
+ "step": 3755
+ },
+ {
+ "epoch": 52.16775884665793,
+ "grad_norm": 0.2479168176651001,
+ "learning_rate": 0.0006,
+ "loss": 3.5893373489379883,
+ "step": 3756
+ },
+ {
+ "epoch": 52.18173875054609,
+ "grad_norm": 0.21718256175518036,
+ "learning_rate": 0.0006,
+ "loss": 3.5616965293884277,
+ "step": 3757
+ },
+ {
+ "epoch": 52.19571865443425,
+ "grad_norm": 0.22033235430717468,
+ "learning_rate": 0.0006,
+ "loss": 3.566401481628418,
+ "step": 3758
+ },
+ {
+ "epoch": 52.20969855832241,
+ "grad_norm": 0.2401825189590454,
+ "learning_rate": 0.0006,
+ "loss": 3.547682762145996,
+ "step": 3759
+ },
+ {
+ "epoch": 52.22367846221057,
+ "grad_norm": 0.24496418237686157,
+ "learning_rate": 0.0006,
+ "loss": 3.5405421257019043,
+ "step": 3760
+ },
+ {
+ "epoch": 52.237658366098735,
+ "grad_norm": 0.2311883270740509,
+ "learning_rate": 0.0006,
+ "loss": 3.5709781646728516,
+ "step": 3761
+ },
+ {
+ "epoch": 52.25163826998689,
+ "grad_norm": 0.20850200951099396,
+ "learning_rate": 0.0006,
+ "loss": 3.5563712120056152,
+ "step": 3762
+ },
+ {
+ "epoch": 52.265618173875055,
+ "grad_norm": 0.2073400765657425,
+ "learning_rate": 0.0006,
+ "loss": 3.542343854904175,
+ "step": 3763
+ },
+ {
+ "epoch": 52.27959807776322,
+ "grad_norm": 0.21886718273162842,
+ "learning_rate": 0.0006,
+ "loss": 3.5633034706115723,
+ "step": 3764
+ },
+ {
+ "epoch": 52.293577981651374,
+ "grad_norm": 0.2218562215566635,
+ "learning_rate": 0.0006,
+ "loss": 3.5644288063049316,
+ "step": 3765
+ },
+ {
+ "epoch": 52.30755788553954,
+ "grad_norm": 0.22043557465076447,
+ "learning_rate": 0.0006,
+ "loss": 3.564373731613159,
+ "step": 3766
+ },
+ {
+ "epoch": 52.3215377894277,
+ "grad_norm": 0.2095082402229309,
+ "learning_rate": 0.0006,
+ "loss": 3.5336289405822754,
+ "step": 3767
+ },
+ {
+ "epoch": 52.33551769331586,
+ "grad_norm": 0.21115876734256744,
+ "learning_rate": 0.0006,
+ "loss": 3.5761165618896484,
+ "step": 3768
+ },
+ {
+ "epoch": 52.34949759720402,
+ "grad_norm": 0.21558400988578796,
+ "learning_rate": 0.0006,
+ "loss": 3.573495388031006,
+ "step": 3769
+ },
+ {
+ "epoch": 52.36347750109218,
+ "grad_norm": 0.213745579123497,
+ "learning_rate": 0.0006,
+ "loss": 3.572171211242676,
+ "step": 3770
+ },
+ {
+ "epoch": 52.37745740498034,
+ "grad_norm": 0.1926180124282837,
+ "learning_rate": 0.0006,
+ "loss": 3.532592535018921,
+ "step": 3771
+ },
+ {
+ "epoch": 52.391437308868504,
+ "grad_norm": 0.1993863731622696,
+ "learning_rate": 0.0006,
+ "loss": 3.551880359649658,
+ "step": 3772
+ },
+ {
+ "epoch": 52.40541721275666,
+ "grad_norm": 0.2018740326166153,
+ "learning_rate": 0.0006,
+ "loss": 3.557328701019287,
+ "step": 3773
+ },
+ {
+ "epoch": 52.419397116644824,
+ "grad_norm": 0.19035610556602478,
+ "learning_rate": 0.0006,
+ "loss": 3.600301504135132,
+ "step": 3774
+ },
+ {
+ "epoch": 52.43337702053299,
+ "grad_norm": 0.20069538056850433,
+ "learning_rate": 0.0006,
+ "loss": 3.5938944816589355,
+ "step": 3775
+ },
+ {
+ "epoch": 52.44735692442114,
+ "grad_norm": 0.21255625784397125,
+ "learning_rate": 0.0006,
+ "loss": 3.561086893081665,
+ "step": 3776
+ },
+ {
+ "epoch": 52.46133682830931,
+ "grad_norm": 0.20132070779800415,
+ "learning_rate": 0.0006,
+ "loss": 3.5525574684143066,
+ "step": 3777
+ },
+ {
+ "epoch": 52.47531673219746,
+ "grad_norm": 0.20152916014194489,
+ "learning_rate": 0.0006,
+ "loss": 3.5697402954101562,
+ "step": 3778
+ },
+ {
+ "epoch": 52.489296636085626,
+ "grad_norm": 0.1984269767999649,
+ "learning_rate": 0.0006,
+ "loss": 3.5686168670654297,
+ "step": 3779
+ },
+ {
+ "epoch": 52.50327653997379,
+ "grad_norm": 0.212612584233284,
+ "learning_rate": 0.0006,
+ "loss": 3.5522124767303467,
+ "step": 3780
+ },
+ {
+ "epoch": 52.517256443861946,
+ "grad_norm": 0.21382521092891693,
+ "learning_rate": 0.0006,
+ "loss": 3.5692944526672363,
+ "step": 3781
+ },
+ {
+ "epoch": 52.53123634775011,
+ "grad_norm": 0.2118486911058426,
+ "learning_rate": 0.0006,
+ "loss": 3.562495708465576,
+ "step": 3782
+ },
+ {
+ "epoch": 52.54521625163827,
+ "grad_norm": 0.22253486514091492,
+ "learning_rate": 0.0006,
+ "loss": 3.5709781646728516,
+ "step": 3783
+ },
+ {
+ "epoch": 52.55919615552643,
+ "grad_norm": 0.23701436817646027,
+ "learning_rate": 0.0006,
+ "loss": 3.548953056335449,
+ "step": 3784
+ },
+ {
+ "epoch": 52.57317605941459,
+ "grad_norm": 0.21345193684101105,
+ "learning_rate": 0.0006,
+ "loss": 3.543029308319092,
+ "step": 3785
+ },
+ {
+ "epoch": 52.58715596330275,
+ "grad_norm": 0.1854170262813568,
+ "learning_rate": 0.0006,
+ "loss": 3.5490989685058594,
+ "step": 3786
+ },
+ {
+ "epoch": 52.60113586719091,
+ "grad_norm": 0.23733633756637573,
+ "learning_rate": 0.0006,
+ "loss": 3.5800132751464844,
+ "step": 3787
+ },
+ {
+ "epoch": 52.615115771079076,
+ "grad_norm": 0.26175495982170105,
+ "learning_rate": 0.0006,
+ "loss": 3.562596321105957,
+ "step": 3788
+ },
+ {
+ "epoch": 52.62909567496723,
+ "grad_norm": 0.23134057223796844,
+ "learning_rate": 0.0006,
+ "loss": 3.5685765743255615,
+ "step": 3789
+ },
+ {
+ "epoch": 52.643075578855395,
+ "grad_norm": 0.1974988877773285,
+ "learning_rate": 0.0006,
+ "loss": 3.570517063140869,
+ "step": 3790
+ },
+ {
+ "epoch": 52.65705548274356,
+ "grad_norm": 0.20049697160720825,
+ "learning_rate": 0.0006,
+ "loss": 3.573286533355713,
+ "step": 3791
+ },
+ {
+ "epoch": 52.671035386631715,
+ "grad_norm": 0.1956445872783661,
+ "learning_rate": 0.0006,
+ "loss": 3.565880537033081,
+ "step": 3792
+ },
+ {
+ "epoch": 52.68501529051988,
+ "grad_norm": 0.2082354575395584,
+ "learning_rate": 0.0006,
+ "loss": 3.587278366088867,
+ "step": 3793
+ },
+ {
+ "epoch": 52.69899519440804,
+ "grad_norm": 0.20923161506652832,
+ "learning_rate": 0.0006,
+ "loss": 3.569469451904297,
+ "step": 3794
+ },
+ {
+ "epoch": 52.7129750982962,
+ "grad_norm": 0.20482848584651947,
+ "learning_rate": 0.0006,
+ "loss": 3.5826265811920166,
+ "step": 3795
+ },
+ {
+ "epoch": 52.72695500218436,
+ "grad_norm": 0.20411530137062073,
+ "learning_rate": 0.0006,
+ "loss": 3.5870275497436523,
+ "step": 3796
+ },
+ {
+ "epoch": 52.74093490607252,
+ "grad_norm": 0.2205485701560974,
+ "learning_rate": 0.0006,
+ "loss": 3.58900785446167,
+ "step": 3797
+ },
+ {
+ "epoch": 52.75491480996068,
+ "grad_norm": 0.21134008467197418,
+ "learning_rate": 0.0006,
+ "loss": 3.591036558151245,
+ "step": 3798
+ },
+ {
+ "epoch": 52.768894713848844,
+ "grad_norm": 0.20001831650733948,
+ "learning_rate": 0.0006,
+ "loss": 3.5670390129089355,
+ "step": 3799
+ },
+ {
+ "epoch": 52.782874617737,
+ "grad_norm": 0.2175939679145813,
+ "learning_rate": 0.0006,
+ "loss": 3.594132423400879,
+ "step": 3800
+ },
+ {
+ "epoch": 52.796854521625164,
+ "grad_norm": 0.22054694592952728,
+ "learning_rate": 0.0006,
+ "loss": 3.5565545558929443,
+ "step": 3801
+ },
+ {
+ "epoch": 52.81083442551333,
+ "grad_norm": 0.22901731729507446,
+ "learning_rate": 0.0006,
+ "loss": 3.5837020874023438,
+ "step": 3802
+ },
+ {
+ "epoch": 52.824814329401484,
+ "grad_norm": 0.22492778301239014,
+ "learning_rate": 0.0006,
+ "loss": 3.608218193054199,
+ "step": 3803
+ },
+ {
+ "epoch": 52.83879423328965,
+ "grad_norm": 0.21645256876945496,
+ "learning_rate": 0.0006,
+ "loss": 3.5839202404022217,
+ "step": 3804
+ },
+ {
+ "epoch": 52.8527741371778,
+ "grad_norm": 0.19680161774158478,
+ "learning_rate": 0.0006,
+ "loss": 3.568756580352783,
+ "step": 3805
+ },
+ {
+ "epoch": 52.86675404106597,
+ "grad_norm": 0.2084486186504364,
+ "learning_rate": 0.0006,
+ "loss": 3.580197811126709,
+ "step": 3806
+ },
+ {
+ "epoch": 52.88073394495413,
+ "grad_norm": 0.19380393624305725,
+ "learning_rate": 0.0006,
+ "loss": 3.5871198177337646,
+ "step": 3807
+ },
+ {
+ "epoch": 52.89471384884229,
+ "grad_norm": 0.1962910294532776,
+ "learning_rate": 0.0006,
+ "loss": 3.5878777503967285,
+ "step": 3808
+ },
+ {
+ "epoch": 52.90869375273045,
+ "grad_norm": 0.23292803764343262,
+ "learning_rate": 0.0006,
+ "loss": 3.574855327606201,
+ "step": 3809
+ },
+ {
+ "epoch": 52.92267365661861,
+ "grad_norm": 0.26974233984947205,
+ "learning_rate": 0.0006,
+ "loss": 3.5731749534606934,
+ "step": 3810
+ },
+ {
+ "epoch": 52.93665356050677,
+ "grad_norm": 0.26665496826171875,
+ "learning_rate": 0.0006,
+ "loss": 3.552717685699463,
+ "step": 3811
+ },
+ {
+ "epoch": 52.95063346439493,
+ "grad_norm": 0.24156489968299866,
+ "learning_rate": 0.0006,
+ "loss": 3.581787109375,
+ "step": 3812
+ },
+ {
+ "epoch": 52.964613368283096,
+ "grad_norm": 0.22062325477600098,
+ "learning_rate": 0.0006,
+ "loss": 3.578994035720825,
+ "step": 3813
+ },
+ {
+ "epoch": 52.97859327217125,
+ "grad_norm": 0.19949151575565338,
+ "learning_rate": 0.0006,
+ "loss": 3.6157355308532715,
+ "step": 3814
+ },
+ {
+ "epoch": 52.992573176059416,
+ "grad_norm": 0.2157975435256958,
+ "learning_rate": 0.0006,
+ "loss": 3.5677759647369385,
+ "step": 3815
+ },
+ {
+ "epoch": 53.0,
+ "grad_norm": 0.23285679519176483,
+ "learning_rate": 0.0006,
+ "loss": 3.5541789531707764,
+ "step": 3816
+ },
+ {
+ "epoch": 53.0,
+ "eval_loss": 3.9737255573272705,
+ "eval_runtime": 46.0304,
+ "eval_samples_per_second": 53.052,
+ "eval_steps_per_second": 3.324,
+ "step": 3816
+ },
+ {
+ "epoch": 53.01397990388816,
+ "grad_norm": 0.212715283036232,
+ "learning_rate": 0.0006,
+ "loss": 3.5475640296936035,
+ "step": 3817
+ },
+ {
+ "epoch": 53.02795980777632,
+ "grad_norm": 0.24556505680084229,
+ "learning_rate": 0.0006,
+ "loss": 3.5197463035583496,
+ "step": 3818
+ },
+ {
+ "epoch": 53.04193971166448,
+ "grad_norm": 0.2898217737674713,
+ "learning_rate": 0.0006,
+ "loss": 3.527390956878662,
+ "step": 3819
+ },
+ {
+ "epoch": 53.05591961555265,
+ "grad_norm": 0.26151803135871887,
+ "learning_rate": 0.0006,
+ "loss": 3.5462024211883545,
+ "step": 3820
+ },
+ {
+ "epoch": 53.0698995194408,
+ "grad_norm": 0.24648059904575348,
+ "learning_rate": 0.0006,
+ "loss": 3.5584919452667236,
+ "step": 3821
+ },
+ {
+ "epoch": 53.083879423328966,
+ "grad_norm": 0.22295059263706207,
+ "learning_rate": 0.0006,
+ "loss": 3.517195701599121,
+ "step": 3822
+ },
+ {
+ "epoch": 53.09785932721712,
+ "grad_norm": 0.2206476330757141,
+ "learning_rate": 0.0006,
+ "loss": 3.570678234100342,
+ "step": 3823
+ },
+ {
+ "epoch": 53.111839231105286,
+ "grad_norm": 0.22069714963436127,
+ "learning_rate": 0.0006,
+ "loss": 3.5707359313964844,
+ "step": 3824
+ },
+ {
+ "epoch": 53.12581913499345,
+ "grad_norm": 0.21850740909576416,
+ "learning_rate": 0.0006,
+ "loss": 3.5730209350585938,
+ "step": 3825
+ },
+ {
+ "epoch": 53.139799038881605,
+ "grad_norm": 0.21554340422153473,
+ "learning_rate": 0.0006,
+ "loss": 3.5578367710113525,
+ "step": 3826
+ },
+ {
+ "epoch": 53.15377894276977,
+ "grad_norm": 0.21678747236728668,
+ "learning_rate": 0.0006,
+ "loss": 3.5603280067443848,
+ "step": 3827
+ },
+ {
+ "epoch": 53.16775884665793,
+ "grad_norm": 0.22017014026641846,
+ "learning_rate": 0.0006,
+ "loss": 3.577760696411133,
+ "step": 3828
+ },
+ {
+ "epoch": 53.18173875054609,
+ "grad_norm": 0.20485524833202362,
+ "learning_rate": 0.0006,
+ "loss": 3.574751853942871,
+ "step": 3829
+ },
+ {
+ "epoch": 53.19571865443425,
+ "grad_norm": 0.22951237857341766,
+ "learning_rate": 0.0006,
+ "loss": 3.5464377403259277,
+ "step": 3830
+ },
+ {
+ "epoch": 53.20969855832241,
+ "grad_norm": 0.2343965619802475,
+ "learning_rate": 0.0006,
+ "loss": 3.516113758087158,
+ "step": 3831
+ },
+ {
+ "epoch": 53.22367846221057,
+ "grad_norm": 0.24002069234848022,
+ "learning_rate": 0.0006,
+ "loss": 3.564629554748535,
+ "step": 3832
+ },
+ {
+ "epoch": 53.237658366098735,
+ "grad_norm": 0.23933765292167664,
+ "learning_rate": 0.0006,
+ "loss": 3.5518507957458496,
+ "step": 3833
+ },
+ {
+ "epoch": 53.25163826998689,
+ "grad_norm": 0.2188953459262848,
+ "learning_rate": 0.0006,
+ "loss": 3.5341856479644775,
+ "step": 3834
+ },
+ {
+ "epoch": 53.265618173875055,
+ "grad_norm": 0.22629091143608093,
+ "learning_rate": 0.0006,
+ "loss": 3.5479273796081543,
+ "step": 3835
+ },
+ {
+ "epoch": 53.27959807776322,
+ "grad_norm": 0.2386554479598999,
+ "learning_rate": 0.0006,
+ "loss": 3.6097445487976074,
+ "step": 3836
+ },
+ {
+ "epoch": 53.293577981651374,
+ "grad_norm": 0.23003390431404114,
+ "learning_rate": 0.0006,
+ "loss": 3.5435304641723633,
+ "step": 3837
+ },
+ {
+ "epoch": 53.30755788553954,
+ "grad_norm": 0.248053640127182,
+ "learning_rate": 0.0006,
+ "loss": 3.545290470123291,
+ "step": 3838
+ },
+ {
+ "epoch": 53.3215377894277,
+ "grad_norm": 0.23945583403110504,
+ "learning_rate": 0.0006,
+ "loss": 3.570158004760742,
+ "step": 3839
+ },
+ {
+ "epoch": 53.33551769331586,
+ "grad_norm": 0.22801059484481812,
+ "learning_rate": 0.0006,
+ "loss": 3.5600779056549072,
+ "step": 3840
+ },
+ {
+ "epoch": 53.34949759720402,
+ "grad_norm": 0.2303777039051056,
+ "learning_rate": 0.0006,
+ "loss": 3.576674222946167,
+ "step": 3841
+ },
+ {
+ "epoch": 53.36347750109218,
+ "grad_norm": 0.23318468034267426,
+ "learning_rate": 0.0006,
+ "loss": 3.5705552101135254,
+ "step": 3842
+ },
+ {
+ "epoch": 53.37745740498034,
+ "grad_norm": 0.2435566782951355,
+ "learning_rate": 0.0006,
+ "loss": 3.576536178588867,
+ "step": 3843
+ },
+ {
+ "epoch": 53.391437308868504,
+ "grad_norm": 0.2857200503349304,
+ "learning_rate": 0.0006,
+ "loss": 3.535977363586426,
+ "step": 3844
+ },
+ {
+ "epoch": 53.40541721275666,
+ "grad_norm": 0.2640133500099182,
+ "learning_rate": 0.0006,
+ "loss": 3.547731399536133,
+ "step": 3845
+ },
+ {
+ "epoch": 53.419397116644824,
+ "grad_norm": 0.22218745946884155,
+ "learning_rate": 0.0006,
+ "loss": 3.5798351764678955,
+ "step": 3846
+ },
+ {
+ "epoch": 53.43337702053299,
+ "grad_norm": 0.2537193298339844,
+ "learning_rate": 0.0006,
+ "loss": 3.5289204120635986,
+ "step": 3847
+ },
+ {
+ "epoch": 53.44735692442114,
+ "grad_norm": 0.28360968828201294,
+ "learning_rate": 0.0006,
+ "loss": 3.5503361225128174,
+ "step": 3848
+ },
+ {
+ "epoch": 53.46133682830931,
+ "grad_norm": 0.2892421782016754,
+ "learning_rate": 0.0006,
+ "loss": 3.5675411224365234,
+ "step": 3849
+ },
+ {
+ "epoch": 53.47531673219746,
+ "grad_norm": 0.28305584192276,
+ "learning_rate": 0.0006,
+ "loss": 3.573280096054077,
+ "step": 3850
+ },
+ {
+ "epoch": 53.489296636085626,
+ "grad_norm": 0.24628037214279175,
+ "learning_rate": 0.0006,
+ "loss": 3.5215024948120117,
+ "step": 3851
+ },
+ {
+ "epoch": 53.50327653997379,
+ "grad_norm": 0.2463715672492981,
+ "learning_rate": 0.0006,
+ "loss": 3.5790698528289795,
+ "step": 3852
+ },
+ {
+ "epoch": 53.517256443861946,
+ "grad_norm": 0.2646636664867401,
+ "learning_rate": 0.0006,
+ "loss": 3.589735269546509,
+ "step": 3853
+ },
+ {
+ "epoch": 53.53123634775011,
+ "grad_norm": 0.27668821811676025,
+ "learning_rate": 0.0006,
+ "loss": 3.5690393447875977,
+ "step": 3854
+ },
+ {
+ "epoch": 53.54521625163827,
+ "grad_norm": 0.2630347013473511,
+ "learning_rate": 0.0006,
+ "loss": 3.5846545696258545,
+ "step": 3855
+ },
+ {
+ "epoch": 53.55919615552643,
+ "grad_norm": 0.27177906036376953,
+ "learning_rate": 0.0006,
+ "loss": 3.5431671142578125,
+ "step": 3856
+ },
+ {
+ "epoch": 53.57317605941459,
+ "grad_norm": 0.27125081419944763,
+ "learning_rate": 0.0006,
+ "loss": 3.5905215740203857,
+ "step": 3857
+ },
+ {
+ "epoch": 53.58715596330275,
+ "grad_norm": 0.24802975356578827,
+ "learning_rate": 0.0006,
+ "loss": 3.5472917556762695,
+ "step": 3858
+ },
+ {
+ "epoch": 53.60113586719091,
+ "grad_norm": 0.23812460899353027,
+ "learning_rate": 0.0006,
+ "loss": 3.5917325019836426,
+ "step": 3859
+ },
+ {
+ "epoch": 53.615115771079076,
+ "grad_norm": 0.2597416937351227,
+ "learning_rate": 0.0006,
+ "loss": 3.5515074729919434,
+ "step": 3860
+ },
+ {
+ "epoch": 53.62909567496723,
+ "grad_norm": 0.24389132857322693,
+ "learning_rate": 0.0006,
+ "loss": 3.578125476837158,
+ "step": 3861
+ },
+ {
+ "epoch": 53.643075578855395,
+ "grad_norm": 0.23878274857997894,
+ "learning_rate": 0.0006,
+ "loss": 3.5612001419067383,
+ "step": 3862
+ },
+ {
+ "epoch": 53.65705548274356,
+ "grad_norm": 0.23248082399368286,
+ "learning_rate": 0.0006,
+ "loss": 3.5651350021362305,
+ "step": 3863
+ },
+ {
+ "epoch": 53.671035386631715,
+ "grad_norm": 0.22560833394527435,
+ "learning_rate": 0.0006,
+ "loss": 3.58971905708313,
+ "step": 3864
+ },
+ {
+ "epoch": 53.68501529051988,
+ "grad_norm": 0.22092120349407196,
+ "learning_rate": 0.0006,
+ "loss": 3.5567374229431152,
+ "step": 3865
+ },
+ {
+ "epoch": 53.69899519440804,
+ "grad_norm": 0.20171885192394257,
+ "learning_rate": 0.0006,
+ "loss": 3.5868449211120605,
+ "step": 3866
+ },
+ {
+ "epoch": 53.7129750982962,
+ "grad_norm": 0.2051871120929718,
+ "learning_rate": 0.0006,
+ "loss": 3.5853161811828613,
+ "step": 3867
+ },
+ {
+ "epoch": 53.72695500218436,
+ "grad_norm": 0.1912045031785965,
+ "learning_rate": 0.0006,
+ "loss": 3.5901622772216797,
+ "step": 3868
+ },
+ {
+ "epoch": 53.74093490607252,
+ "grad_norm": 0.20817188918590546,
+ "learning_rate": 0.0006,
+ "loss": 3.5759787559509277,
+ "step": 3869
+ },
+ {
+ "epoch": 53.75491480996068,
+ "grad_norm": 0.2157917469739914,
+ "learning_rate": 0.0006,
+ "loss": 3.5438575744628906,
+ "step": 3870
+ },
+ {
+ "epoch": 53.768894713848844,
+ "grad_norm": 0.2332053929567337,
+ "learning_rate": 0.0006,
+ "loss": 3.587697982788086,
+ "step": 3871
+ },
+ {
+ "epoch": 53.782874617737,
+ "grad_norm": 0.22700314223766327,
+ "learning_rate": 0.0006,
+ "loss": 3.586625337600708,
+ "step": 3872
+ },
+ {
+ "epoch": 53.796854521625164,
+ "grad_norm": 0.20737017691135406,
+ "learning_rate": 0.0006,
+ "loss": 3.552398204803467,
+ "step": 3873
+ },
+ {
+ "epoch": 53.81083442551333,
+ "grad_norm": 0.20355650782585144,
+ "learning_rate": 0.0006,
+ "loss": 3.5734331607818604,
+ "step": 3874
+ },
+ {
+ "epoch": 53.824814329401484,
+ "grad_norm": 0.18868018686771393,
+ "learning_rate": 0.0006,
+ "loss": 3.582509756088257,
+ "step": 3875
+ },
+ {
+ "epoch": 53.83879423328965,
+ "grad_norm": 0.20373275876045227,
+ "learning_rate": 0.0006,
+ "loss": 3.559354782104492,
+ "step": 3876
+ },
+ {
+ "epoch": 53.8527741371778,
+ "grad_norm": 0.1988871544599533,
+ "learning_rate": 0.0006,
+ "loss": 3.5575170516967773,
+ "step": 3877
+ },
+ {
+ "epoch": 53.86675404106597,
+ "grad_norm": 0.19602873921394348,
+ "learning_rate": 0.0006,
+ "loss": 3.5500855445861816,
+ "step": 3878
+ },
+ {
+ "epoch": 53.88073394495413,
+ "grad_norm": 0.201382577419281,
+ "learning_rate": 0.0006,
+ "loss": 3.563499927520752,
+ "step": 3879
+ },
+ {
+ "epoch": 53.89471384884229,
+ "grad_norm": 0.19682180881500244,
+ "learning_rate": 0.0006,
+ "loss": 3.586855888366699,
+ "step": 3880
+ },
+ {
+ "epoch": 53.90869375273045,
+ "grad_norm": 0.19423548877239227,
+ "learning_rate": 0.0006,
+ "loss": 3.5840401649475098,
+ "step": 3881
+ },
+ {
+ "epoch": 53.92267365661861,
+ "grad_norm": 0.1970449835062027,
+ "learning_rate": 0.0006,
+ "loss": 3.554568290710449,
+ "step": 3882
+ },
+ {
+ "epoch": 53.93665356050677,
+ "grad_norm": 0.20274291932582855,
+ "learning_rate": 0.0006,
+ "loss": 3.5928239822387695,
+ "step": 3883
+ },
+ {
+ "epoch": 53.95063346439493,
+ "grad_norm": 0.18485035002231598,
+ "learning_rate": 0.0006,
+ "loss": 3.576934337615967,
+ "step": 3884
+ },
+ {
+ "epoch": 53.964613368283096,
+ "grad_norm": 0.18437646329402924,
+ "learning_rate": 0.0006,
+ "loss": 3.574990749359131,
+ "step": 3885
+ },
+ {
+ "epoch": 53.97859327217125,
+ "grad_norm": 0.18616823852062225,
+ "learning_rate": 0.0006,
+ "loss": 3.5566892623901367,
+ "step": 3886
+ },
+ {
+ "epoch": 53.992573176059416,
+ "grad_norm": 0.19502122700214386,
+ "learning_rate": 0.0006,
+ "loss": 3.604814052581787,
+ "step": 3887
+ },
+ {
+ "epoch": 54.0,
+ "grad_norm": 0.2657789885997772,
+ "learning_rate": 0.0006,
+ "loss": 3.5094165802001953,
+ "step": 3888
+ },
+ {
+ "epoch": 54.0,
+ "eval_loss": 3.965742349624634,
+ "eval_runtime": 45.5851,
+ "eval_samples_per_second": 53.57,
+ "eval_steps_per_second": 3.356,
+ "step": 3888
+ },
+ {
+ "epoch": 54.01397990388816,
+ "grad_norm": 0.27879253029823303,
+ "learning_rate": 0.0006,
+ "loss": 3.565103530883789,
+ "step": 3889
+ },
+ {
+ "epoch": 54.02795980777632,
+ "grad_norm": 0.2959246337413788,
+ "learning_rate": 0.0006,
+ "loss": 3.5378212928771973,
+ "step": 3890
+ },
+ {
+ "epoch": 54.04193971166448,
+ "grad_norm": 0.32719552516937256,
+ "learning_rate": 0.0006,
+ "loss": 3.5566751956939697,
+ "step": 3891
+ },
+ {
+ "epoch": 54.05591961555265,
+ "grad_norm": 0.36854541301727295,
+ "learning_rate": 0.0006,
+ "loss": 3.5363879203796387,
+ "step": 3892
+ },
+ {
+ "epoch": 54.0698995194408,
+ "grad_norm": 0.34325551986694336,
+ "learning_rate": 0.0006,
+ "loss": 3.5306153297424316,
+ "step": 3893
+ },
+ {
+ "epoch": 54.083879423328966,
+ "grad_norm": 0.2798653244972229,
+ "learning_rate": 0.0006,
+ "loss": 3.5642261505126953,
+ "step": 3894
+ },
+ {
+ "epoch": 54.09785932721712,
+ "grad_norm": 0.24857765436172485,
+ "learning_rate": 0.0006,
+ "loss": 3.50216007232666,
+ "step": 3895
+ },
+ {
+ "epoch": 54.111839231105286,
+ "grad_norm": 0.2943299114704132,
+ "learning_rate": 0.0006,
+ "loss": 3.524904251098633,
+ "step": 3896
+ },
+ {
+ "epoch": 54.12581913499345,
+ "grad_norm": 0.2791048586368561,
+ "learning_rate": 0.0006,
+ "loss": 3.56490421295166,
+ "step": 3897
+ },
+ {
+ "epoch": 54.139799038881605,
+ "grad_norm": 0.2781159579753876,
+ "learning_rate": 0.0006,
+ "loss": 3.536180019378662,
+ "step": 3898
+ },
+ {
+ "epoch": 54.15377894276977,
+ "grad_norm": 0.30359897017478943,
+ "learning_rate": 0.0006,
+ "loss": 3.546919345855713,
+ "step": 3899
+ },
+ {
+ "epoch": 54.16775884665793,
+ "grad_norm": 0.2738530933856964,
+ "learning_rate": 0.0006,
+ "loss": 3.547968864440918,
+ "step": 3900
+ },
+ {
+ "epoch": 54.18173875054609,
+ "grad_norm": 0.24783718585968018,
+ "learning_rate": 0.0006,
+ "loss": 3.5802721977233887,
+ "step": 3901
+ },
+ {
+ "epoch": 54.19571865443425,
+ "grad_norm": 0.2544802725315094,
+ "learning_rate": 0.0006,
+ "loss": 3.5556836128234863,
+ "step": 3902
+ },
+ {
+ "epoch": 54.20969855832241,
+ "grad_norm": 0.26695969700813293,
+ "learning_rate": 0.0006,
+ "loss": 3.534266471862793,
+ "step": 3903
+ },
+ {
+ "epoch": 54.22367846221057,
+ "grad_norm": 0.24152538180351257,
+ "learning_rate": 0.0006,
+ "loss": 3.534069538116455,
+ "step": 3904
+ },
+ {
+ "epoch": 54.237658366098735,
+ "grad_norm": 0.21859917044639587,
+ "learning_rate": 0.0006,
+ "loss": 3.535362958908081,
+ "step": 3905
+ },
+ {
+ "epoch": 54.25163826998689,
+ "grad_norm": 0.24676479399204254,
+ "learning_rate": 0.0006,
+ "loss": 3.567283868789673,
+ "step": 3906
+ },
+ {
+ "epoch": 54.265618173875055,
+ "grad_norm": 0.26998138427734375,
+ "learning_rate": 0.0006,
+ "loss": 3.518892765045166,
+ "step": 3907
+ },
+ {
+ "epoch": 54.27959807776322,
+ "grad_norm": 0.30108749866485596,
+ "learning_rate": 0.0006,
+ "loss": 3.5865135192871094,
+ "step": 3908
+ },
+ {
+ "epoch": 54.293577981651374,
+ "grad_norm": 0.31310492753982544,
+ "learning_rate": 0.0006,
+ "loss": 3.546637535095215,
+ "step": 3909
+ },
+ {
+ "epoch": 54.30755788553954,
+ "grad_norm": 0.2994784712791443,
+ "learning_rate": 0.0006,
+ "loss": 3.5441226959228516,
+ "step": 3910
+ },
+ {
+ "epoch": 54.3215377894277,
+ "grad_norm": 0.25010061264038086,
+ "learning_rate": 0.0006,
+ "loss": 3.5619735717773438,
+ "step": 3911
+ },
+ {
+ "epoch": 54.33551769331586,
+ "grad_norm": 0.253129780292511,
+ "learning_rate": 0.0006,
+ "loss": 3.530210494995117,
+ "step": 3912
+ },
+ {
+ "epoch": 54.34949759720402,
+ "grad_norm": 0.2652498781681061,
+ "learning_rate": 0.0006,
+ "loss": 3.534478187561035,
+ "step": 3913
+ },
+ {
+ "epoch": 54.36347750109218,
+ "grad_norm": 0.250503808259964,
+ "learning_rate": 0.0006,
+ "loss": 3.545886516571045,
+ "step": 3914
+ },
+ {
+ "epoch": 54.37745740498034,
+ "grad_norm": 0.22186073660850525,
+ "learning_rate": 0.0006,
+ "loss": 3.5884604454040527,
+ "step": 3915
+ },
+ {
+ "epoch": 54.391437308868504,
+ "grad_norm": 0.21128980815410614,
+ "learning_rate": 0.0006,
+ "loss": 3.527862548828125,
+ "step": 3916
+ },
+ {
+ "epoch": 54.40541721275666,
+ "grad_norm": 0.23184002935886383,
+ "learning_rate": 0.0006,
+ "loss": 3.5599637031555176,
+ "step": 3917
+ },
+ {
+ "epoch": 54.419397116644824,
+ "grad_norm": 0.23710627853870392,
+ "learning_rate": 0.0006,
+ "loss": 3.54667329788208,
+ "step": 3918
+ },
+ {
+ "epoch": 54.43337702053299,
+ "grad_norm": 0.2314598113298416,
+ "learning_rate": 0.0006,
+ "loss": 3.518406391143799,
+ "step": 3919
+ },
+ {
+ "epoch": 54.44735692442114,
+ "grad_norm": 0.21623452007770538,
+ "learning_rate": 0.0006,
+ "loss": 3.5749731063842773,
+ "step": 3920
+ },
+ {
+ "epoch": 54.46133682830931,
+ "grad_norm": 0.22832012176513672,
+ "learning_rate": 0.0006,
+ "loss": 3.57436466217041,
+ "step": 3921
+ },
+ {
+ "epoch": 54.47531673219746,
+ "grad_norm": 0.2184043526649475,
+ "learning_rate": 0.0006,
+ "loss": 3.578040838241577,
+ "step": 3922
+ },
+ {
+ "epoch": 54.489296636085626,
+ "grad_norm": 0.2302335649728775,
+ "learning_rate": 0.0006,
+ "loss": 3.5646257400512695,
+ "step": 3923
+ },
+ {
+ "epoch": 54.50327653997379,
+ "grad_norm": 0.21635375916957855,
+ "learning_rate": 0.0006,
+ "loss": 3.546786308288574,
+ "step": 3924
+ },
+ {
+ "epoch": 54.517256443861946,
+ "grad_norm": 0.22332443296909332,
+ "learning_rate": 0.0006,
+ "loss": 3.5804502964019775,
+ "step": 3925
+ },
+ {
+ "epoch": 54.53123634775011,
+ "grad_norm": 0.21662919223308563,
+ "learning_rate": 0.0006,
+ "loss": 3.567797899246216,
+ "step": 3926
+ },
+ {
+ "epoch": 54.54521625163827,
+ "grad_norm": 0.21345169842243195,
+ "learning_rate": 0.0006,
+ "loss": 3.5746283531188965,
+ "step": 3927
+ },
+ {
+ "epoch": 54.55919615552643,
+ "grad_norm": 0.2111794501543045,
+ "learning_rate": 0.0006,
+ "loss": 3.5626277923583984,
+ "step": 3928
+ },
+ {
+ "epoch": 54.57317605941459,
+ "grad_norm": 0.22575712203979492,
+ "learning_rate": 0.0006,
+ "loss": 3.5856311321258545,
+ "step": 3929
+ },
+ {
+ "epoch": 54.58715596330275,
+ "grad_norm": 0.22963617742061615,
+ "learning_rate": 0.0006,
+ "loss": 3.584038257598877,
+ "step": 3930
+ },
+ {
+ "epoch": 54.60113586719091,
+ "grad_norm": 0.21805310249328613,
+ "learning_rate": 0.0006,
+ "loss": 3.5603089332580566,
+ "step": 3931
+ },
+ {
+ "epoch": 54.615115771079076,
+ "grad_norm": 0.22830283641815186,
+ "learning_rate": 0.0006,
+ "loss": 3.5533390045166016,
+ "step": 3932
+ },
+ {
+ "epoch": 54.62909567496723,
+ "grad_norm": 0.24158291518688202,
+ "learning_rate": 0.0006,
+ "loss": 3.5437779426574707,
+ "step": 3933
+ },
+ {
+ "epoch": 54.643075578855395,
+ "grad_norm": 0.22687768936157227,
+ "learning_rate": 0.0006,
+ "loss": 3.566315174102783,
+ "step": 3934
+ },
+ {
+ "epoch": 54.65705548274356,
+ "grad_norm": 0.21220184862613678,
+ "learning_rate": 0.0006,
+ "loss": 3.5772881507873535,
+ "step": 3935
+ },
+ {
+ "epoch": 54.671035386631715,
+ "grad_norm": 0.19508333504199982,
+ "learning_rate": 0.0006,
+ "loss": 3.5213584899902344,
+ "step": 3936
+ },
+ {
+ "epoch": 54.68501529051988,
+ "grad_norm": 0.199599027633667,
+ "learning_rate": 0.0006,
+ "loss": 3.553925037384033,
+ "step": 3937
+ },
+ {
+ "epoch": 54.69899519440804,
+ "grad_norm": 0.2063189297914505,
+ "learning_rate": 0.0006,
+ "loss": 3.5706050395965576,
+ "step": 3938
+ },
+ {
+ "epoch": 54.7129750982962,
+ "grad_norm": 0.2056119441986084,
+ "learning_rate": 0.0006,
+ "loss": 3.557199478149414,
+ "step": 3939
+ },
+ {
+ "epoch": 54.72695500218436,
+ "grad_norm": 0.2192074954509735,
+ "learning_rate": 0.0006,
+ "loss": 3.5869479179382324,
+ "step": 3940
+ },
+ {
+ "epoch": 54.74093490607252,
+ "grad_norm": 0.19796597957611084,
+ "learning_rate": 0.0006,
+ "loss": 3.559929609298706,
+ "step": 3941
+ },
+ {
+ "epoch": 54.75491480996068,
+ "grad_norm": 0.19003179669380188,
+ "learning_rate": 0.0006,
+ "loss": 3.5481486320495605,
+ "step": 3942
+ },
+ {
+ "epoch": 54.768894713848844,
+ "grad_norm": 0.189231738448143,
+ "learning_rate": 0.0006,
+ "loss": 3.5603561401367188,
+ "step": 3943
+ },
+ {
+ "epoch": 54.782874617737,
+ "grad_norm": 0.20949427783489227,
+ "learning_rate": 0.0006,
+ "loss": 3.567026138305664,
+ "step": 3944
+ },
+ {
+ "epoch": 54.796854521625164,
+ "grad_norm": 0.21650178730487823,
+ "learning_rate": 0.0006,
+ "loss": 3.5981621742248535,
+ "step": 3945
+ },
+ {
+ "epoch": 54.81083442551333,
+ "grad_norm": 0.21941770613193512,
+ "learning_rate": 0.0006,
+ "loss": 3.590226173400879,
+ "step": 3946
+ },
+ {
+ "epoch": 54.824814329401484,
+ "grad_norm": 0.2169734537601471,
+ "learning_rate": 0.0006,
+ "loss": 3.592764139175415,
+ "step": 3947
+ },
+ {
+ "epoch": 54.83879423328965,
+ "grad_norm": 0.20309467613697052,
+ "learning_rate": 0.0006,
+ "loss": 3.5706393718719482,
+ "step": 3948
+ },
+ {
+ "epoch": 54.8527741371778,
+ "grad_norm": 0.21803754568099976,
+ "learning_rate": 0.0006,
+ "loss": 3.5816526412963867,
+ "step": 3949
+ },
+ {
+ "epoch": 54.86675404106597,
+ "grad_norm": 0.22217069566249847,
+ "learning_rate": 0.0006,
+ "loss": 3.5895018577575684,
+ "step": 3950
+ },
+ {
+ "epoch": 54.88073394495413,
+ "grad_norm": 0.21204866468906403,
+ "learning_rate": 0.0006,
+ "loss": 3.5574231147766113,
+ "step": 3951
+ },
+ {
+ "epoch": 54.89471384884229,
+ "grad_norm": 0.2173423171043396,
+ "learning_rate": 0.0006,
+ "loss": 3.564763069152832,
+ "step": 3952
+ },
+ {
+ "epoch": 54.90869375273045,
+ "grad_norm": 0.2039082646369934,
+ "learning_rate": 0.0006,
+ "loss": 3.59708309173584,
+ "step": 3953
+ },
+ {
+ "epoch": 54.92267365661861,
+ "grad_norm": 0.20248384773731232,
+ "learning_rate": 0.0006,
+ "loss": 3.587890148162842,
+ "step": 3954
+ },
+ {
+ "epoch": 54.93665356050677,
+ "grad_norm": 0.20693068206310272,
+ "learning_rate": 0.0006,
+ "loss": 3.5569000244140625,
+ "step": 3955
+ },
+ {
+ "epoch": 54.95063346439493,
+ "grad_norm": 0.2109357714653015,
+ "learning_rate": 0.0006,
+ "loss": 3.552126884460449,
+ "step": 3956
+ },
+ {
+ "epoch": 54.964613368283096,
+ "grad_norm": 0.2278970628976822,
+ "learning_rate": 0.0006,
+ "loss": 3.564998149871826,
+ "step": 3957
+ },
+ {
+ "epoch": 54.97859327217125,
+ "grad_norm": 0.21663756668567657,
+ "learning_rate": 0.0006,
+ "loss": 3.571608543395996,
+ "step": 3958
+ },
+ {
+ "epoch": 54.992573176059416,
+ "grad_norm": 0.19653232395648956,
+ "learning_rate": 0.0006,
+ "loss": 3.5885231494903564,
+ "step": 3959
+ },
+ {
+ "epoch": 55.0,
+ "grad_norm": 0.21956856548786163,
+ "learning_rate": 0.0006,
+ "loss": 3.4966204166412354,
+ "step": 3960
+ },
+ {
+ "epoch": 55.0,
+ "eval_loss": 3.972649097442627,
+ "eval_runtime": 45.2298,
+ "eval_samples_per_second": 53.991,
+ "eval_steps_per_second": 3.383,
+ "step": 3960
+ },
+ {
+ "epoch": 55.01397990388816,
+ "grad_norm": 0.22733832895755768,
+ "learning_rate": 0.0006,
+ "loss": 3.546975612640381,
+ "step": 3961
+ },
+ {
+ "epoch": 55.02795980777632,
+ "grad_norm": 0.25451111793518066,
+ "learning_rate": 0.0006,
+ "loss": 3.54240083694458,
+ "step": 3962
+ },
+ {
+ "epoch": 55.04193971166448,
+ "grad_norm": 0.2394949048757553,
+ "learning_rate": 0.0006,
+ "loss": 3.5492677688598633,
+ "step": 3963
+ },
+ {
+ "epoch": 55.05591961555265,
+ "grad_norm": 0.2306671440601349,
+ "learning_rate": 0.0006,
+ "loss": 3.524200916290283,
+ "step": 3964
+ },
+ {
+ "epoch": 55.0698995194408,
+ "grad_norm": 0.2307029813528061,
+ "learning_rate": 0.0006,
+ "loss": 3.509249687194824,
+ "step": 3965
+ },
+ {
+ "epoch": 55.083879423328966,
+ "grad_norm": 0.24812111258506775,
+ "learning_rate": 0.0006,
+ "loss": 3.5500473976135254,
+ "step": 3966
+ },
+ {
+ "epoch": 55.09785932721712,
+ "grad_norm": 0.28564271330833435,
+ "learning_rate": 0.0006,
+ "loss": 3.5178303718566895,
+ "step": 3967
+ },
+ {
+ "epoch": 55.111839231105286,
+ "grad_norm": 0.26979005336761475,
+ "learning_rate": 0.0006,
+ "loss": 3.5306806564331055,
+ "step": 3968
+ },
+ {
+ "epoch": 55.12581913499345,
+ "grad_norm": 0.24274848401546478,
+ "learning_rate": 0.0006,
+ "loss": 3.5758519172668457,
+ "step": 3969
+ },
+ {
+ "epoch": 55.139799038881605,
+ "grad_norm": 0.2560444474220276,
+ "learning_rate": 0.0006,
+ "loss": 3.5417323112487793,
+ "step": 3970
+ },
+ {
+ "epoch": 55.15377894276977,
+ "grad_norm": 0.2553671598434448,
+ "learning_rate": 0.0006,
+ "loss": 3.5258004665374756,
+ "step": 3971
+ },
+ {
+ "epoch": 55.16775884665793,
+ "grad_norm": 0.2170111984014511,
+ "learning_rate": 0.0006,
+ "loss": 3.514847755432129,
+ "step": 3972
+ },
+ {
+ "epoch": 55.18173875054609,
+ "grad_norm": 0.20854522287845612,
+ "learning_rate": 0.0006,
+ "loss": 3.5248336791992188,
+ "step": 3973
+ },
+ {
+ "epoch": 55.19571865443425,
+ "grad_norm": 0.21873287856578827,
+ "learning_rate": 0.0006,
+ "loss": 3.5468008518218994,
+ "step": 3974
+ },
+ {
+ "epoch": 55.20969855832241,
+ "grad_norm": 0.21194154024124146,
+ "learning_rate": 0.0006,
+ "loss": 3.568512439727783,
+ "step": 3975
+ },
+ {
+ "epoch": 55.22367846221057,
+ "grad_norm": 0.23534680902957916,
+ "learning_rate": 0.0006,
+ "loss": 3.5285420417785645,
+ "step": 3976
+ },
+ {
+ "epoch": 55.237658366098735,
+ "grad_norm": 0.22674795985221863,
+ "learning_rate": 0.0006,
+ "loss": 3.5399436950683594,
+ "step": 3977
+ },
+ {
+ "epoch": 55.25163826998689,
+ "grad_norm": 0.2248486578464508,
+ "learning_rate": 0.0006,
+ "loss": 3.5241036415100098,
+ "step": 3978
+ },
+ {
+ "epoch": 55.265618173875055,
+ "grad_norm": 0.241151362657547,
+ "learning_rate": 0.0006,
+ "loss": 3.547079086303711,
+ "step": 3979
+ },
+ {
+ "epoch": 55.27959807776322,
+ "grad_norm": 0.2783249318599701,
+ "learning_rate": 0.0006,
+ "loss": 3.5442988872528076,
+ "step": 3980
+ },
+ {
+ "epoch": 55.293577981651374,
+ "grad_norm": 0.2743528485298157,
+ "learning_rate": 0.0006,
+ "loss": 3.529618978500366,
+ "step": 3981
+ },
+ {
+ "epoch": 55.30755788553954,
+ "grad_norm": 0.23901724815368652,
+ "learning_rate": 0.0006,
+ "loss": 3.5379443168640137,
+ "step": 3982
+ },
+ {
+ "epoch": 55.3215377894277,
+ "grad_norm": 0.22758841514587402,
+ "learning_rate": 0.0006,
+ "loss": 3.5446794033050537,
+ "step": 3983
+ },
+ {
+ "epoch": 55.33551769331586,
+ "grad_norm": 0.22634629905223846,
+ "learning_rate": 0.0006,
+ "loss": 3.521944522857666,
+ "step": 3984
+ },
+ {
+ "epoch": 55.34949759720402,
+ "grad_norm": 0.23372086882591248,
+ "learning_rate": 0.0006,
+ "loss": 3.565023899078369,
+ "step": 3985
+ },
+ {
+ "epoch": 55.36347750109218,
+ "grad_norm": 0.24722231924533844,
+ "learning_rate": 0.0006,
+ "loss": 3.535661220550537,
+ "step": 3986
+ },
+ {
+ "epoch": 55.37745740498034,
+ "grad_norm": 0.21684594452381134,
+ "learning_rate": 0.0006,
+ "loss": 3.59070086479187,
+ "step": 3987
+ },
+ {
+ "epoch": 55.391437308868504,
+ "grad_norm": 0.186308816075325,
+ "learning_rate": 0.0006,
+ "loss": 3.5373833179473877,
+ "step": 3988
+ },
+ {
+ "epoch": 55.40541721275666,
+ "grad_norm": 0.2240687608718872,
+ "learning_rate": 0.0006,
+ "loss": 3.613295555114746,
+ "step": 3989
+ },
+ {
+ "epoch": 55.419397116644824,
+ "grad_norm": 0.25724494457244873,
+ "learning_rate": 0.0006,
+ "loss": 3.581005096435547,
+ "step": 3990
+ },
+ {
+ "epoch": 55.43337702053299,
+ "grad_norm": 0.24023419618606567,
+ "learning_rate": 0.0006,
+ "loss": 3.563951015472412,
+ "step": 3991
+ },
+ {
+ "epoch": 55.44735692442114,
+ "grad_norm": 0.21473391354084015,
+ "learning_rate": 0.0006,
+ "loss": 3.5444185733795166,
+ "step": 3992
+ },
+ {
+ "epoch": 55.46133682830931,
+ "grad_norm": 0.20466852188110352,
+ "learning_rate": 0.0006,
+ "loss": 3.5585713386535645,
+ "step": 3993
+ },
+ {
+ "epoch": 55.47531673219746,
+ "grad_norm": 0.20925740897655487,
+ "learning_rate": 0.0006,
+ "loss": 3.5656747817993164,
+ "step": 3994
+ },
+ {
+ "epoch": 55.489296636085626,
+ "grad_norm": 0.2309556007385254,
+ "learning_rate": 0.0006,
+ "loss": 3.5653891563415527,
+ "step": 3995
+ },
+ {
+ "epoch": 55.50327653997379,
+ "grad_norm": 0.24270877242088318,
+ "learning_rate": 0.0006,
+ "loss": 3.5275917053222656,
+ "step": 3996
+ },
+ {
+ "epoch": 55.517256443861946,
+ "grad_norm": 0.22749851644039154,
+ "learning_rate": 0.0006,
+ "loss": 3.5392730236053467,
+ "step": 3997
+ },
+ {
+ "epoch": 55.53123634775011,
+ "grad_norm": 0.21618196368217468,
+ "learning_rate": 0.0006,
+ "loss": 3.5581812858581543,
+ "step": 3998
+ },
+ {
+ "epoch": 55.54521625163827,
+ "grad_norm": 0.22232134640216827,
+ "learning_rate": 0.0006,
+ "loss": 3.5340118408203125,
+ "step": 3999
+ },
+ {
+ "epoch": 55.55919615552643,
+ "grad_norm": 0.24543501436710358,
+ "learning_rate": 0.0006,
+ "loss": 3.572153329849243,
+ "step": 4000
+ },
+ {
+ "epoch": 55.57317605941459,
+ "grad_norm": 0.2385311722755432,
+ "learning_rate": 0.0006,
+ "loss": 3.5366618633270264,
+ "step": 4001
+ },
+ {
+ "epoch": 55.58715596330275,
+ "grad_norm": 0.27977821230888367,
+ "learning_rate": 0.0006,
+ "loss": 3.5788960456848145,
+ "step": 4002
+ },
+ {
+ "epoch": 55.60113586719091,
+ "grad_norm": 0.2929013967514038,
+ "learning_rate": 0.0006,
+ "loss": 3.61065936088562,
+ "step": 4003
+ },
+ {
+ "epoch": 55.615115771079076,
+ "grad_norm": 0.27820730209350586,
+ "learning_rate": 0.0006,
+ "loss": 3.538694381713867,
+ "step": 4004
+ },
+ {
+ "epoch": 55.62909567496723,
+ "grad_norm": 0.24188996851444244,
+ "learning_rate": 0.0006,
+ "loss": 3.571709632873535,
+ "step": 4005
+ },
+ {
+ "epoch": 55.643075578855395,
+ "grad_norm": 0.21659360826015472,
+ "learning_rate": 0.0006,
+ "loss": 3.5431199073791504,
+ "step": 4006
+ },
+ {
+ "epoch": 55.65705548274356,
+ "grad_norm": 0.23356232047080994,
+ "learning_rate": 0.0006,
+ "loss": 3.5664005279541016,
+ "step": 4007
+ },
+ {
+ "epoch": 55.671035386631715,
+ "grad_norm": 0.21523472666740417,
+ "learning_rate": 0.0006,
+ "loss": 3.575711250305176,
+ "step": 4008
+ },
+ {
+ "epoch": 55.68501529051988,
+ "grad_norm": 0.22101815044879913,
+ "learning_rate": 0.0006,
+ "loss": 3.5843849182128906,
+ "step": 4009
+ },
+ {
+ "epoch": 55.69899519440804,
+ "grad_norm": 0.24153906106948853,
+ "learning_rate": 0.0006,
+ "loss": 3.5737733840942383,
+ "step": 4010
+ },
+ {
+ "epoch": 55.7129750982962,
+ "grad_norm": 0.2181350439786911,
+ "learning_rate": 0.0006,
+ "loss": 3.582613945007324,
+ "step": 4011
+ },
+ {
+ "epoch": 55.72695500218436,
+ "grad_norm": 0.21046742796897888,
+ "learning_rate": 0.0006,
+ "loss": 3.5380563735961914,
+ "step": 4012
+ },
+ {
+ "epoch": 55.74093490607252,
+ "grad_norm": 0.23996953666210175,
+ "learning_rate": 0.0006,
+ "loss": 3.57753849029541,
+ "step": 4013
+ },
+ {
+ "epoch": 55.75491480996068,
+ "grad_norm": 0.24543973803520203,
+ "learning_rate": 0.0006,
+ "loss": 3.578747272491455,
+ "step": 4014
+ },
+ {
+ "epoch": 55.768894713848844,
+ "grad_norm": 0.23597940802574158,
+ "learning_rate": 0.0006,
+ "loss": 3.5816988945007324,
+ "step": 4015
+ },
+ {
+ "epoch": 55.782874617737,
+ "grad_norm": 0.237411230802536,
+ "learning_rate": 0.0006,
+ "loss": 3.5659806728363037,
+ "step": 4016
+ },
+ {
+ "epoch": 55.796854521625164,
+ "grad_norm": 0.23947440087795258,
+ "learning_rate": 0.0006,
+ "loss": 3.545125961303711,
+ "step": 4017
+ },
+ {
+ "epoch": 55.81083442551333,
+ "grad_norm": 0.21562735736370087,
+ "learning_rate": 0.0006,
+ "loss": 3.5571303367614746,
+ "step": 4018
+ },
+ {
+ "epoch": 55.824814329401484,
+ "grad_norm": 0.21958434581756592,
+ "learning_rate": 0.0006,
+ "loss": 3.5243420600891113,
+ "step": 4019
+ },
+ {
+ "epoch": 55.83879423328965,
+ "grad_norm": 0.23856471478939056,
+ "learning_rate": 0.0006,
+ "loss": 3.586078643798828,
+ "step": 4020
+ },
+ {
+ "epoch": 55.8527741371778,
+ "grad_norm": 0.20703551173210144,
+ "learning_rate": 0.0006,
+ "loss": 3.5503201484680176,
+ "step": 4021
+ },
+ {
+ "epoch": 55.86675404106597,
+ "grad_norm": 0.21183231472969055,
+ "learning_rate": 0.0006,
+ "loss": 3.5873844623565674,
+ "step": 4022
+ },
+ {
+ "epoch": 55.88073394495413,
+ "grad_norm": 0.2129688709974289,
+ "learning_rate": 0.0006,
+ "loss": 3.582061290740967,
+ "step": 4023
+ },
+ {
+ "epoch": 55.89471384884229,
+ "grad_norm": 0.2122214287519455,
+ "learning_rate": 0.0006,
+ "loss": 3.547175884246826,
+ "step": 4024
+ },
+ {
+ "epoch": 55.90869375273045,
+ "grad_norm": 0.214874267578125,
+ "learning_rate": 0.0006,
+ "loss": 3.5322279930114746,
+ "step": 4025
+ },
+ {
+ "epoch": 55.92267365661861,
+ "grad_norm": 0.24104614555835724,
+ "learning_rate": 0.0006,
+ "loss": 3.5742111206054688,
+ "step": 4026
+ },
+ {
+ "epoch": 55.93665356050677,
+ "grad_norm": 0.2257685512304306,
+ "learning_rate": 0.0006,
+ "loss": 3.5686793327331543,
+ "step": 4027
+ },
+ {
+ "epoch": 55.95063346439493,
+ "grad_norm": 0.2170567363500595,
+ "learning_rate": 0.0006,
+ "loss": 3.5670571327209473,
+ "step": 4028
+ },
+ {
+ "epoch": 55.964613368283096,
+ "grad_norm": 0.2003280222415924,
+ "learning_rate": 0.0006,
+ "loss": 3.533921718597412,
+ "step": 4029
+ },
+ {
+ "epoch": 55.97859327217125,
+ "grad_norm": 0.21483278274536133,
+ "learning_rate": 0.0006,
+ "loss": 3.539720058441162,
+ "step": 4030
+ },
+ {
+ "epoch": 55.992573176059416,
+ "grad_norm": 0.26908108592033386,
+ "learning_rate": 0.0006,
+ "loss": 3.575934886932373,
+ "step": 4031
+ },
+ {
+ "epoch": 56.0,
+ "grad_norm": 0.30002665519714355,
+ "learning_rate": 0.0006,
+ "loss": 3.5702414512634277,
+ "step": 4032
+ },
+ {
+ "epoch": 56.0,
+ "eval_loss": 3.9834072589874268,
+ "eval_runtime": 46.2268,
+ "eval_samples_per_second": 52.826,
+ "eval_steps_per_second": 3.31,
+ "step": 4032
+ },
+ {
+ "epoch": 56.01397990388816,
+ "grad_norm": 0.25298207998275757,
+ "learning_rate": 0.0006,
+ "loss": 3.538151741027832,
+ "step": 4033
+ },
+ {
+ "epoch": 56.02795980777632,
+ "grad_norm": 0.2231103479862213,
+ "learning_rate": 0.0006,
+ "loss": 3.551466941833496,
+ "step": 4034
+ },
+ {
+ "epoch": 56.04193971166448,
+ "grad_norm": 0.2504221796989441,
+ "learning_rate": 0.0006,
+ "loss": 3.5361199378967285,
+ "step": 4035
+ },
+ {
+ "epoch": 56.05591961555265,
+ "grad_norm": 0.23491773009300232,
+ "learning_rate": 0.0006,
+ "loss": 3.549346446990967,
+ "step": 4036
+ },
+ {
+ "epoch": 56.0698995194408,
+ "grad_norm": 0.23068852722644806,
+ "learning_rate": 0.0006,
+ "loss": 3.5243453979492188,
+ "step": 4037
+ },
+ {
+ "epoch": 56.083879423328966,
+ "grad_norm": 0.22160249948501587,
+ "learning_rate": 0.0006,
+ "loss": 3.551191806793213,
+ "step": 4038
+ },
+ {
+ "epoch": 56.09785932721712,
+ "grad_norm": 0.2389034926891327,
+ "learning_rate": 0.0006,
+ "loss": 3.5358071327209473,
+ "step": 4039
+ },
+ {
+ "epoch": 56.111839231105286,
+ "grad_norm": 0.2552168071269989,
+ "learning_rate": 0.0006,
+ "loss": 3.564204692840576,
+ "step": 4040
+ },
+ {
+ "epoch": 56.12581913499345,
+ "grad_norm": 0.2802336812019348,
+ "learning_rate": 0.0006,
+ "loss": 3.540386438369751,
+ "step": 4041
+ },
+ {
+ "epoch": 56.139799038881605,
+ "grad_norm": 0.2564619779586792,
+ "learning_rate": 0.0006,
+ "loss": 3.544264554977417,
+ "step": 4042
+ },
+ {
+ "epoch": 56.15377894276977,
+ "grad_norm": 0.24272632598876953,
+ "learning_rate": 0.0006,
+ "loss": 3.509497880935669,
+ "step": 4043
+ },
+ {
+ "epoch": 56.16775884665793,
+ "grad_norm": 0.23981881141662598,
+ "learning_rate": 0.0006,
+ "loss": 3.551090955734253,
+ "step": 4044
+ },
+ {
+ "epoch": 56.18173875054609,
+ "grad_norm": 0.22418269515037537,
+ "learning_rate": 0.0006,
+ "loss": 3.558614492416382,
+ "step": 4045
+ },
+ {
+ "epoch": 56.19571865443425,
+ "grad_norm": 0.21792462468147278,
+ "learning_rate": 0.0006,
+ "loss": 3.540558338165283,
+ "step": 4046
+ },
+ {
+ "epoch": 56.20969855832241,
+ "grad_norm": 0.21248634159564972,
+ "learning_rate": 0.0006,
+ "loss": 3.5273942947387695,
+ "step": 4047
+ },
+ {
+ "epoch": 56.22367846221057,
+ "grad_norm": 0.1863572895526886,
+ "learning_rate": 0.0006,
+ "loss": 3.555302143096924,
+ "step": 4048
+ },
+ {
+ "epoch": 56.237658366098735,
+ "grad_norm": 0.21031822264194489,
+ "learning_rate": 0.0006,
+ "loss": 3.547515630722046,
+ "step": 4049
+ },
+ {
+ "epoch": 56.25163826998689,
+ "grad_norm": 0.19754044711589813,
+ "learning_rate": 0.0006,
+ "loss": 3.5476508140563965,
+ "step": 4050
+ },
+ {
+ "epoch": 56.265618173875055,
+ "grad_norm": 0.19707852602005005,
+ "learning_rate": 0.0006,
+ "loss": 3.506730794906616,
+ "step": 4051
+ },
+ {
+ "epoch": 56.27959807776322,
+ "grad_norm": 0.21011239290237427,
+ "learning_rate": 0.0006,
+ "loss": 3.51116681098938,
+ "step": 4052
+ },
+ {
+ "epoch": 56.293577981651374,
+ "grad_norm": 0.20281212031841278,
+ "learning_rate": 0.0006,
+ "loss": 3.549513816833496,
+ "step": 4053
+ },
+ {
+ "epoch": 56.30755788553954,
+ "grad_norm": 0.19198910892009735,
+ "learning_rate": 0.0006,
+ "loss": 3.5299534797668457,
+ "step": 4054
+ },
+ {
+ "epoch": 56.3215377894277,
+ "grad_norm": 0.1861368715763092,
+ "learning_rate": 0.0006,
+ "loss": 3.513909339904785,
+ "step": 4055
+ },
+ {
+ "epoch": 56.33551769331586,
+ "grad_norm": 0.20779506862163544,
+ "learning_rate": 0.0006,
+ "loss": 3.5528712272644043,
+ "step": 4056
+ },
+ {
+ "epoch": 56.34949759720402,
+ "grad_norm": 0.2229684591293335,
+ "learning_rate": 0.0006,
+ "loss": 3.518359661102295,
+ "step": 4057
+ },
+ {
+ "epoch": 56.36347750109218,
+ "grad_norm": 0.22998179495334625,
+ "learning_rate": 0.0006,
+ "loss": 3.5004091262817383,
+ "step": 4058
+ },
+ {
+ "epoch": 56.37745740498034,
+ "grad_norm": 0.2176709622144699,
+ "learning_rate": 0.0006,
+ "loss": 3.550295829772949,
+ "step": 4059
+ },
+ {
+ "epoch": 56.391437308868504,
+ "grad_norm": 0.19512872397899628,
+ "learning_rate": 0.0006,
+ "loss": 3.5305161476135254,
+ "step": 4060
+ },
+ {
+ "epoch": 56.40541721275666,
+ "grad_norm": 0.23127448558807373,
+ "learning_rate": 0.0006,
+ "loss": 3.5341286659240723,
+ "step": 4061
+ },
+ {
+ "epoch": 56.419397116644824,
+ "grad_norm": 0.20905959606170654,
+ "learning_rate": 0.0006,
+ "loss": 3.553912401199341,
+ "step": 4062
+ },
+ {
+ "epoch": 56.43337702053299,
+ "grad_norm": 0.23370878398418427,
+ "learning_rate": 0.0006,
+ "loss": 3.5700249671936035,
+ "step": 4063
+ },
+ {
+ "epoch": 56.44735692442114,
+ "grad_norm": 0.233205646276474,
+ "learning_rate": 0.0006,
+ "loss": 3.5184097290039062,
+ "step": 4064
+ },
+ {
+ "epoch": 56.46133682830931,
+ "grad_norm": 0.23928777873516083,
+ "learning_rate": 0.0006,
+ "loss": 3.535874366760254,
+ "step": 4065
+ },
+ {
+ "epoch": 56.47531673219746,
+ "grad_norm": 0.24950815737247467,
+ "learning_rate": 0.0006,
+ "loss": 3.508136749267578,
+ "step": 4066
+ },
+ {
+ "epoch": 56.489296636085626,
+ "grad_norm": 0.24821820855140686,
+ "learning_rate": 0.0006,
+ "loss": 3.5421361923217773,
+ "step": 4067
+ },
+ {
+ "epoch": 56.50327653997379,
+ "grad_norm": 0.2252482771873474,
+ "learning_rate": 0.0006,
+ "loss": 3.5516514778137207,
+ "step": 4068
+ },
+ {
+ "epoch": 56.517256443861946,
+ "grad_norm": 0.2238101363182068,
+ "learning_rate": 0.0006,
+ "loss": 3.567741632461548,
+ "step": 4069
+ },
+ {
+ "epoch": 56.53123634775011,
+ "grad_norm": 0.20759683847427368,
+ "learning_rate": 0.0006,
+ "loss": 3.544705390930176,
+ "step": 4070
+ },
+ {
+ "epoch": 56.54521625163827,
+ "grad_norm": 0.21918460726737976,
+ "learning_rate": 0.0006,
+ "loss": 3.5725836753845215,
+ "step": 4071
+ },
+ {
+ "epoch": 56.55919615552643,
+ "grad_norm": 0.22640042006969452,
+ "learning_rate": 0.0006,
+ "loss": 3.5447535514831543,
+ "step": 4072
+ },
+ {
+ "epoch": 56.57317605941459,
+ "grad_norm": 0.23130203783512115,
+ "learning_rate": 0.0006,
+ "loss": 3.5620853900909424,
+ "step": 4073
+ },
+ {
+ "epoch": 56.58715596330275,
+ "grad_norm": 0.2215641736984253,
+ "learning_rate": 0.0006,
+ "loss": 3.5416438579559326,
+ "step": 4074
+ },
+ {
+ "epoch": 56.60113586719091,
+ "grad_norm": 0.20106497406959534,
+ "learning_rate": 0.0006,
+ "loss": 3.537386178970337,
+ "step": 4075
+ },
+ {
+ "epoch": 56.615115771079076,
+ "grad_norm": 0.2045976221561432,
+ "learning_rate": 0.0006,
+ "loss": 3.555032730102539,
+ "step": 4076
+ },
+ {
+ "epoch": 56.62909567496723,
+ "grad_norm": 0.20097647607326508,
+ "learning_rate": 0.0006,
+ "loss": 3.559572458267212,
+ "step": 4077
+ },
+ {
+ "epoch": 56.643075578855395,
+ "grad_norm": 0.24158388376235962,
+ "learning_rate": 0.0006,
+ "loss": 3.56520938873291,
+ "step": 4078
+ },
+ {
+ "epoch": 56.65705548274356,
+ "grad_norm": 0.2687791585922241,
+ "learning_rate": 0.0006,
+ "loss": 3.545924663543701,
+ "step": 4079
+ },
+ {
+ "epoch": 56.671035386631715,
+ "grad_norm": 0.22466111183166504,
+ "learning_rate": 0.0006,
+ "loss": 3.5556845664978027,
+ "step": 4080
+ },
+ {
+ "epoch": 56.68501529051988,
+ "grad_norm": 0.2177814394235611,
+ "learning_rate": 0.0006,
+ "loss": 3.5799131393432617,
+ "step": 4081
+ },
+ {
+ "epoch": 56.69899519440804,
+ "grad_norm": 0.2700476050376892,
+ "learning_rate": 0.0006,
+ "loss": 3.5859055519104004,
+ "step": 4082
+ },
+ {
+ "epoch": 56.7129750982962,
+ "grad_norm": 0.28230178356170654,
+ "learning_rate": 0.0006,
+ "loss": 3.5733890533447266,
+ "step": 4083
+ },
+ {
+ "epoch": 56.72695500218436,
+ "grad_norm": 0.29298731684684753,
+ "learning_rate": 0.0006,
+ "loss": 3.556626319885254,
+ "step": 4084
+ },
+ {
+ "epoch": 56.74093490607252,
+ "grad_norm": 0.2818183898925781,
+ "learning_rate": 0.0006,
+ "loss": 3.5884718894958496,
+ "step": 4085
+ },
+ {
+ "epoch": 56.75491480996068,
+ "grad_norm": 0.24008697271347046,
+ "learning_rate": 0.0006,
+ "loss": 3.5464529991149902,
+ "step": 4086
+ },
+ {
+ "epoch": 56.768894713848844,
+ "grad_norm": 0.23406296968460083,
+ "learning_rate": 0.0006,
+ "loss": 3.5622801780700684,
+ "step": 4087
+ },
+ {
+ "epoch": 56.782874617737,
+ "grad_norm": 0.26089322566986084,
+ "learning_rate": 0.0006,
+ "loss": 3.5775020122528076,
+ "step": 4088
+ },
+ {
+ "epoch": 56.796854521625164,
+ "grad_norm": 0.2576654851436615,
+ "learning_rate": 0.0006,
+ "loss": 3.5543627738952637,
+ "step": 4089
+ },
+ {
+ "epoch": 56.81083442551333,
+ "grad_norm": 0.26576393842697144,
+ "learning_rate": 0.0006,
+ "loss": 3.546170711517334,
+ "step": 4090
+ },
+ {
+ "epoch": 56.824814329401484,
+ "grad_norm": 0.22380715608596802,
+ "learning_rate": 0.0006,
+ "loss": 3.5437729358673096,
+ "step": 4091
+ },
+ {
+ "epoch": 56.83879423328965,
+ "grad_norm": 0.20786714553833008,
+ "learning_rate": 0.0006,
+ "loss": 3.5951266288757324,
+ "step": 4092
+ },
+ {
+ "epoch": 56.8527741371778,
+ "grad_norm": 0.23177042603492737,
+ "learning_rate": 0.0006,
+ "loss": 3.549454689025879,
+ "step": 4093
+ },
+ {
+ "epoch": 56.86675404106597,
+ "grad_norm": 0.21466009318828583,
+ "learning_rate": 0.0006,
+ "loss": 3.5611233711242676,
+ "step": 4094
+ },
+ {
+ "epoch": 56.88073394495413,
+ "grad_norm": 0.20928414165973663,
+ "learning_rate": 0.0006,
+ "loss": 3.5550684928894043,
+ "step": 4095
+ },
+ {
+ "epoch": 56.89471384884229,
+ "grad_norm": 0.20727156102657318,
+ "learning_rate": 0.0006,
+ "loss": 3.552496910095215,
+ "step": 4096
+ },
+ {
+ "epoch": 56.90869375273045,
+ "grad_norm": 0.21370401978492737,
+ "learning_rate": 0.0006,
+ "loss": 3.5763869285583496,
+ "step": 4097
+ },
+ {
+ "epoch": 56.92267365661861,
+ "grad_norm": 0.22490337491035461,
+ "learning_rate": 0.0006,
+ "loss": 3.538986921310425,
+ "step": 4098
+ },
+ {
+ "epoch": 56.93665356050677,
+ "grad_norm": 0.23320236802101135,
+ "learning_rate": 0.0006,
+ "loss": 3.5514214038848877,
+ "step": 4099
+ },
+ {
+ "epoch": 56.95063346439493,
+ "grad_norm": 0.22050419449806213,
+ "learning_rate": 0.0006,
+ "loss": 3.5486960411071777,
+ "step": 4100
+ },
+ {
+ "epoch": 56.964613368283096,
+ "grad_norm": 0.2241443395614624,
+ "learning_rate": 0.0006,
+ "loss": 3.5858001708984375,
+ "step": 4101
+ },
+ {
+ "epoch": 56.97859327217125,
+ "grad_norm": 0.24904389679431915,
+ "learning_rate": 0.0006,
+ "loss": 3.586472511291504,
+ "step": 4102
+ },
+ {
+ "epoch": 56.992573176059416,
+ "grad_norm": 0.2333211451768875,
+ "learning_rate": 0.0006,
+ "loss": 3.5463132858276367,
+ "step": 4103
+ },
+ {
+ "epoch": 57.0,
+ "grad_norm": 0.24142783880233765,
+ "learning_rate": 0.0006,
+ "loss": 3.5642542839050293,
+ "step": 4104
+ },
+ {
+ "epoch": 57.0,
+ "eval_loss": 3.973973035812378,
+ "eval_runtime": 46.2906,
+ "eval_samples_per_second": 52.754,
+ "eval_steps_per_second": 3.305,
+ "step": 4104
+ },
+ {
+ "epoch": 57.01397990388816,
+ "grad_norm": 0.21989624202251434,
+ "learning_rate": 0.0006,
+ "loss": 3.539435863494873,
+ "step": 4105
+ },
+ {
+ "epoch": 57.02795980777632,
+ "grad_norm": 0.24061834812164307,
+ "learning_rate": 0.0006,
+ "loss": 3.5251410007476807,
+ "step": 4106
+ },
+ {
+ "epoch": 57.04193971166448,
+ "grad_norm": 0.2483278512954712,
+ "learning_rate": 0.0006,
+ "loss": 3.5104010105133057,
+ "step": 4107
+ },
+ {
+ "epoch": 57.05591961555265,
+ "grad_norm": 0.2717698812484741,
+ "learning_rate": 0.0006,
+ "loss": 3.5134170055389404,
+ "step": 4108
+ },
+ {
+ "epoch": 57.0698995194408,
+ "grad_norm": 0.27335646748542786,
+ "learning_rate": 0.0006,
+ "loss": 3.53574275970459,
+ "step": 4109
+ },
+ {
+ "epoch": 57.083879423328966,
+ "grad_norm": 0.2423052042722702,
+ "learning_rate": 0.0006,
+ "loss": 3.4960169792175293,
+ "step": 4110
+ },
+ {
+ "epoch": 57.09785932721712,
+ "grad_norm": 0.2241092175245285,
+ "learning_rate": 0.0006,
+ "loss": 3.5409107208251953,
+ "step": 4111
+ },
+ {
+ "epoch": 57.111839231105286,
+ "grad_norm": 0.23098452389240265,
+ "learning_rate": 0.0006,
+ "loss": 3.5326709747314453,
+ "step": 4112
+ },
+ {
+ "epoch": 57.12581913499345,
+ "grad_norm": 0.2500186562538147,
+ "learning_rate": 0.0006,
+ "loss": 3.509953498840332,
+ "step": 4113
+ },
+ {
+ "epoch": 57.139799038881605,
+ "grad_norm": 0.26994550228118896,
+ "learning_rate": 0.0006,
+ "loss": 3.560410499572754,
+ "step": 4114
+ },
+ {
+ "epoch": 57.15377894276977,
+ "grad_norm": 0.24950402975082397,
+ "learning_rate": 0.0006,
+ "loss": 3.517613649368286,
+ "step": 4115
+ },
+ {
+ "epoch": 57.16775884665793,
+ "grad_norm": 0.21742430329322815,
+ "learning_rate": 0.0006,
+ "loss": 3.531256675720215,
+ "step": 4116
+ },
+ {
+ "epoch": 57.18173875054609,
+ "grad_norm": 0.29069146513938904,
+ "learning_rate": 0.0006,
+ "loss": 3.5283756256103516,
+ "step": 4117
+ },
+ {
+ "epoch": 57.19571865443425,
+ "grad_norm": 0.2901996970176697,
+ "learning_rate": 0.0006,
+ "loss": 3.5460801124572754,
+ "step": 4118
+ },
+ {
+ "epoch": 57.20969855832241,
+ "grad_norm": 0.2534845471382141,
+ "learning_rate": 0.0006,
+ "loss": 3.515536308288574,
+ "step": 4119
+ },
+ {
+ "epoch": 57.22367846221057,
+ "grad_norm": 0.2352340817451477,
+ "learning_rate": 0.0006,
+ "loss": 3.5281717777252197,
+ "step": 4120
+ },
+ {
+ "epoch": 57.237658366098735,
+ "grad_norm": 0.2263645976781845,
+ "learning_rate": 0.0006,
+ "loss": 3.5629191398620605,
+ "step": 4121
+ },
+ {
+ "epoch": 57.25163826998689,
+ "grad_norm": 0.21413370966911316,
+ "learning_rate": 0.0006,
+ "loss": 3.5342142581939697,
+ "step": 4122
+ },
+ {
+ "epoch": 57.265618173875055,
+ "grad_norm": 0.1969698667526245,
+ "learning_rate": 0.0006,
+ "loss": 3.5467586517333984,
+ "step": 4123
+ },
+ {
+ "epoch": 57.27959807776322,
+ "grad_norm": 0.2106606364250183,
+ "learning_rate": 0.0006,
+ "loss": 3.5409536361694336,
+ "step": 4124
+ },
+ {
+ "epoch": 57.293577981651374,
+ "grad_norm": 0.21824438869953156,
+ "learning_rate": 0.0006,
+ "loss": 3.5246548652648926,
+ "step": 4125
+ },
+ {
+ "epoch": 57.30755788553954,
+ "grad_norm": 0.2147768884897232,
+ "learning_rate": 0.0006,
+ "loss": 3.5411794185638428,
+ "step": 4126
+ },
+ {
+ "epoch": 57.3215377894277,
+ "grad_norm": 0.21352852880954742,
+ "learning_rate": 0.0006,
+ "loss": 3.569387197494507,
+ "step": 4127
+ },
+ {
+ "epoch": 57.33551769331586,
+ "grad_norm": 0.20957978069782257,
+ "learning_rate": 0.0006,
+ "loss": 3.522695779800415,
+ "step": 4128
+ },
+ {
+ "epoch": 57.34949759720402,
+ "grad_norm": 0.2013026475906372,
+ "learning_rate": 0.0006,
+ "loss": 3.5485787391662598,
+ "step": 4129
+ },
+ {
+ "epoch": 57.36347750109218,
+ "grad_norm": 0.2260376214981079,
+ "learning_rate": 0.0006,
+ "loss": 3.547607421875,
+ "step": 4130
+ },
+ {
+ "epoch": 57.37745740498034,
+ "grad_norm": 0.22991685569286346,
+ "learning_rate": 0.0006,
+ "loss": 3.5464730262756348,
+ "step": 4131
+ },
+ {
+ "epoch": 57.391437308868504,
+ "grad_norm": 0.19638051092624664,
+ "learning_rate": 0.0006,
+ "loss": 3.54355525970459,
+ "step": 4132
+ },
+ {
+ "epoch": 57.40541721275666,
+ "grad_norm": 0.19450774788856506,
+ "learning_rate": 0.0006,
+ "loss": 3.5490050315856934,
+ "step": 4133
+ },
+ {
+ "epoch": 57.419397116644824,
+ "grad_norm": 0.21798551082611084,
+ "learning_rate": 0.0006,
+ "loss": 3.56355619430542,
+ "step": 4134
+ },
+ {
+ "epoch": 57.43337702053299,
+ "grad_norm": 0.2129846215248108,
+ "learning_rate": 0.0006,
+ "loss": 3.5607380867004395,
+ "step": 4135
+ },
+ {
+ "epoch": 57.44735692442114,
+ "grad_norm": 0.20589227974414825,
+ "learning_rate": 0.0006,
+ "loss": 3.523768663406372,
+ "step": 4136
+ },
+ {
+ "epoch": 57.46133682830931,
+ "grad_norm": 0.21841686964035034,
+ "learning_rate": 0.0006,
+ "loss": 3.5187885761260986,
+ "step": 4137
+ },
+ {
+ "epoch": 57.47531673219746,
+ "grad_norm": 0.2118791788816452,
+ "learning_rate": 0.0006,
+ "loss": 3.5271782875061035,
+ "step": 4138
+ },
+ {
+ "epoch": 57.489296636085626,
+ "grad_norm": 0.21905459463596344,
+ "learning_rate": 0.0006,
+ "loss": 3.546968460083008,
+ "step": 4139
+ },
+ {
+ "epoch": 57.50327653997379,
+ "grad_norm": 0.23899133503437042,
+ "learning_rate": 0.0006,
+ "loss": 3.5156688690185547,
+ "step": 4140
+ },
+ {
+ "epoch": 57.517256443861946,
+ "grad_norm": 0.23873545229434967,
+ "learning_rate": 0.0006,
+ "loss": 3.5271472930908203,
+ "step": 4141
+ },
+ {
+ "epoch": 57.53123634775011,
+ "grad_norm": 0.20691858232021332,
+ "learning_rate": 0.0006,
+ "loss": 3.552854537963867,
+ "step": 4142
+ },
+ {
+ "epoch": 57.54521625163827,
+ "grad_norm": 0.21962891519069672,
+ "learning_rate": 0.0006,
+ "loss": 3.5258498191833496,
+ "step": 4143
+ },
+ {
+ "epoch": 57.55919615552643,
+ "grad_norm": 0.21762165427207947,
+ "learning_rate": 0.0006,
+ "loss": 3.566831588745117,
+ "step": 4144
+ },
+ {
+ "epoch": 57.57317605941459,
+ "grad_norm": 0.19603654742240906,
+ "learning_rate": 0.0006,
+ "loss": 3.5393714904785156,
+ "step": 4145
+ },
+ {
+ "epoch": 57.58715596330275,
+ "grad_norm": 0.20347437262535095,
+ "learning_rate": 0.0006,
+ "loss": 3.538390874862671,
+ "step": 4146
+ },
+ {
+ "epoch": 57.60113586719091,
+ "grad_norm": 0.2179173231124878,
+ "learning_rate": 0.0006,
+ "loss": 3.566631317138672,
+ "step": 4147
+ },
+ {
+ "epoch": 57.615115771079076,
+ "grad_norm": 0.19678309559822083,
+ "learning_rate": 0.0006,
+ "loss": 3.5659375190734863,
+ "step": 4148
+ },
+ {
+ "epoch": 57.62909567496723,
+ "grad_norm": 0.20221677422523499,
+ "learning_rate": 0.0006,
+ "loss": 3.5679430961608887,
+ "step": 4149
+ },
+ {
+ "epoch": 57.643075578855395,
+ "grad_norm": 0.21337579190731049,
+ "learning_rate": 0.0006,
+ "loss": 3.5330681800842285,
+ "step": 4150
+ },
+ {
+ "epoch": 57.65705548274356,
+ "grad_norm": 0.2646789848804474,
+ "learning_rate": 0.0006,
+ "loss": 3.5216803550720215,
+ "step": 4151
+ },
+ {
+ "epoch": 57.671035386631715,
+ "grad_norm": 0.304950088262558,
+ "learning_rate": 0.0006,
+ "loss": 3.5570156574249268,
+ "step": 4152
+ },
+ {
+ "epoch": 57.68501529051988,
+ "grad_norm": 0.2739402651786804,
+ "learning_rate": 0.0006,
+ "loss": 3.5844314098358154,
+ "step": 4153
+ },
+ {
+ "epoch": 57.69899519440804,
+ "grad_norm": 0.19060099124908447,
+ "learning_rate": 0.0006,
+ "loss": 3.571052074432373,
+ "step": 4154
+ },
+ {
+ "epoch": 57.7129750982962,
+ "grad_norm": 0.2941007614135742,
+ "learning_rate": 0.0006,
+ "loss": 3.543100357055664,
+ "step": 4155
+ },
+ {
+ "epoch": 57.72695500218436,
+ "grad_norm": 0.34624332189559937,
+ "learning_rate": 0.0006,
+ "loss": 3.564270496368408,
+ "step": 4156
+ },
+ {
+ "epoch": 57.74093490607252,
+ "grad_norm": 0.30635201930999756,
+ "learning_rate": 0.0006,
+ "loss": 3.5390584468841553,
+ "step": 4157
+ },
+ {
+ "epoch": 57.75491480996068,
+ "grad_norm": 0.2204878330230713,
+ "learning_rate": 0.0006,
+ "loss": 3.5427281856536865,
+ "step": 4158
+ },
+ {
+ "epoch": 57.768894713848844,
+ "grad_norm": 0.20659378170967102,
+ "learning_rate": 0.0006,
+ "loss": 3.528977155685425,
+ "step": 4159
+ },
+ {
+ "epoch": 57.782874617737,
+ "grad_norm": 0.2281361073255539,
+ "learning_rate": 0.0006,
+ "loss": 3.5531792640686035,
+ "step": 4160
+ },
+ {
+ "epoch": 57.796854521625164,
+ "grad_norm": 0.22478239238262177,
+ "learning_rate": 0.0006,
+ "loss": 3.566704750061035,
+ "step": 4161
+ },
+ {
+ "epoch": 57.81083442551333,
+ "grad_norm": 0.20797103643417358,
+ "learning_rate": 0.0006,
+ "loss": 3.5684943199157715,
+ "step": 4162
+ },
+ {
+ "epoch": 57.824814329401484,
+ "grad_norm": 0.2108374983072281,
+ "learning_rate": 0.0006,
+ "loss": 3.5475950241088867,
+ "step": 4163
+ },
+ {
+ "epoch": 57.83879423328965,
+ "grad_norm": 0.2268034815788269,
+ "learning_rate": 0.0006,
+ "loss": 3.5456833839416504,
+ "step": 4164
+ },
+ {
+ "epoch": 57.8527741371778,
+ "grad_norm": 0.2131519913673401,
+ "learning_rate": 0.0006,
+ "loss": 3.5316243171691895,
+ "step": 4165
+ },
+ {
+ "epoch": 57.86675404106597,
+ "grad_norm": 0.20163841545581818,
+ "learning_rate": 0.0006,
+ "loss": 3.5320897102355957,
+ "step": 4166
+ },
+ {
+ "epoch": 57.88073394495413,
+ "grad_norm": 0.20961757004261017,
+ "learning_rate": 0.0006,
+ "loss": 3.5800695419311523,
+ "step": 4167
+ },
+ {
+ "epoch": 57.89471384884229,
+ "grad_norm": 0.2061416506767273,
+ "learning_rate": 0.0006,
+ "loss": 3.544395923614502,
+ "step": 4168
+ },
+ {
+ "epoch": 57.90869375273045,
+ "grad_norm": 0.20306318998336792,
+ "learning_rate": 0.0006,
+ "loss": 3.554436683654785,
+ "step": 4169
+ },
+ {
+ "epoch": 57.92267365661861,
+ "grad_norm": 0.20685963332653046,
+ "learning_rate": 0.0006,
+ "loss": 3.5614635944366455,
+ "step": 4170
+ },
+ {
+ "epoch": 57.93665356050677,
+ "grad_norm": 0.19938082993030548,
+ "learning_rate": 0.0006,
+ "loss": 3.578136920928955,
+ "step": 4171
+ },
+ {
+ "epoch": 57.95063346439493,
+ "grad_norm": 0.2150411158800125,
+ "learning_rate": 0.0006,
+ "loss": 3.5754270553588867,
+ "step": 4172
+ },
+ {
+ "epoch": 57.964613368283096,
+ "grad_norm": 0.23399604856967926,
+ "learning_rate": 0.0006,
+ "loss": 3.5553112030029297,
+ "step": 4173
+ },
+ {
+ "epoch": 57.97859327217125,
+ "grad_norm": 0.2496841847896576,
+ "learning_rate": 0.0006,
+ "loss": 3.5509696006774902,
+ "step": 4174
+ },
+ {
+ "epoch": 57.992573176059416,
+ "grad_norm": 0.23759980499744415,
+ "learning_rate": 0.0006,
+ "loss": 3.5806684494018555,
+ "step": 4175
+ },
+ {
+ "epoch": 58.0,
+ "grad_norm": 0.2494540512561798,
+ "learning_rate": 0.0006,
+ "loss": 3.541708469390869,
+ "step": 4176
+ },
+ {
+ "epoch": 58.0,
+ "eval_loss": 3.970658779144287,
+ "eval_runtime": 46.0262,
+ "eval_samples_per_second": 53.057,
+ "eval_steps_per_second": 3.324,
+ "step": 4176
+ },
+ {
+ "epoch": 58.01397990388816,
+ "grad_norm": 0.2053643763065338,
+ "learning_rate": 0.0006,
+ "loss": 3.5264205932617188,
+ "step": 4177
+ },
+ {
+ "epoch": 58.02795980777632,
+ "grad_norm": 0.20680591464042664,
+ "learning_rate": 0.0006,
+ "loss": 3.495445728302002,
+ "step": 4178
+ },
+ {
+ "epoch": 58.04193971166448,
+ "grad_norm": 0.22180874645709991,
+ "learning_rate": 0.0006,
+ "loss": 3.546283483505249,
+ "step": 4179
+ },
+ {
+ "epoch": 58.05591961555265,
+ "grad_norm": 0.24255339801311493,
+ "learning_rate": 0.0006,
+ "loss": 3.50639271736145,
+ "step": 4180
+ },
+ {
+ "epoch": 58.0698995194408,
+ "grad_norm": 0.2747100591659546,
+ "learning_rate": 0.0006,
+ "loss": 3.514240026473999,
+ "step": 4181
+ },
+ {
+ "epoch": 58.083879423328966,
+ "grad_norm": 0.27960914373397827,
+ "learning_rate": 0.0006,
+ "loss": 3.5614311695098877,
+ "step": 4182
+ },
+ {
+ "epoch": 58.09785932721712,
+ "grad_norm": 0.25837743282318115,
+ "learning_rate": 0.0006,
+ "loss": 3.533560276031494,
+ "step": 4183
+ },
+ {
+ "epoch": 58.111839231105286,
+ "grad_norm": 0.24635657668113708,
+ "learning_rate": 0.0006,
+ "loss": 3.4867968559265137,
+ "step": 4184
+ },
+ {
+ "epoch": 58.12581913499345,
+ "grad_norm": 0.31520891189575195,
+ "learning_rate": 0.0006,
+ "loss": 3.5131611824035645,
+ "step": 4185
+ },
+ {
+ "epoch": 58.139799038881605,
+ "grad_norm": 0.36781513690948486,
+ "learning_rate": 0.0006,
+ "loss": 3.5149288177490234,
+ "step": 4186
+ },
+ {
+ "epoch": 58.15377894276977,
+ "grad_norm": 0.32433459162712097,
+ "learning_rate": 0.0006,
+ "loss": 3.5485405921936035,
+ "step": 4187
+ },
+ {
+ "epoch": 58.16775884665793,
+ "grad_norm": 0.2532205283641815,
+ "learning_rate": 0.0006,
+ "loss": 3.4994513988494873,
+ "step": 4188
+ },
+ {
+ "epoch": 58.18173875054609,
+ "grad_norm": 0.29780858755111694,
+ "learning_rate": 0.0006,
+ "loss": 3.496187448501587,
+ "step": 4189
+ },
+ {
+ "epoch": 58.19571865443425,
+ "grad_norm": 0.2804715037345886,
+ "learning_rate": 0.0006,
+ "loss": 3.5210375785827637,
+ "step": 4190
+ },
+ {
+ "epoch": 58.20969855832241,
+ "grad_norm": 0.2186010330915451,
+ "learning_rate": 0.0006,
+ "loss": 3.5139119625091553,
+ "step": 4191
+ },
+ {
+ "epoch": 58.22367846221057,
+ "grad_norm": 0.21566270291805267,
+ "learning_rate": 0.0006,
+ "loss": 3.5011606216430664,
+ "step": 4192
+ },
+ {
+ "epoch": 58.237658366098735,
+ "grad_norm": 0.21042031049728394,
+ "learning_rate": 0.0006,
+ "loss": 3.52295184135437,
+ "step": 4193
+ },
+ {
+ "epoch": 58.25163826998689,
+ "grad_norm": 0.20117411017417908,
+ "learning_rate": 0.0006,
+ "loss": 3.54593563079834,
+ "step": 4194
+ },
+ {
+ "epoch": 58.265618173875055,
+ "grad_norm": 0.21747945249080658,
+ "learning_rate": 0.0006,
+ "loss": 3.5341522693634033,
+ "step": 4195
+ },
+ {
+ "epoch": 58.27959807776322,
+ "grad_norm": 0.266024649143219,
+ "learning_rate": 0.0006,
+ "loss": 3.536393165588379,
+ "step": 4196
+ },
+ {
+ "epoch": 58.293577981651374,
+ "grad_norm": 0.2577304542064667,
+ "learning_rate": 0.0006,
+ "loss": 3.557468891143799,
+ "step": 4197
+ },
+ {
+ "epoch": 58.30755788553954,
+ "grad_norm": 0.22055941820144653,
+ "learning_rate": 0.0006,
+ "loss": 3.5307652950286865,
+ "step": 4198
+ },
+ {
+ "epoch": 58.3215377894277,
+ "grad_norm": 0.22490856051445007,
+ "learning_rate": 0.0006,
+ "loss": 3.506265163421631,
+ "step": 4199
+ },
+ {
+ "epoch": 58.33551769331586,
+ "grad_norm": 0.23600345849990845,
+ "learning_rate": 0.0006,
+ "loss": 3.523414134979248,
+ "step": 4200
+ },
+ {
+ "epoch": 58.34949759720402,
+ "grad_norm": 0.24872642755508423,
+ "learning_rate": 0.0006,
+ "loss": 3.561278820037842,
+ "step": 4201
+ },
+ {
+ "epoch": 58.36347750109218,
+ "grad_norm": 0.2702998220920563,
+ "learning_rate": 0.0006,
+ "loss": 3.573561191558838,
+ "step": 4202
+ },
+ {
+ "epoch": 58.37745740498034,
+ "grad_norm": 0.2532080411911011,
+ "learning_rate": 0.0006,
+ "loss": 3.5476837158203125,
+ "step": 4203
+ },
+ {
+ "epoch": 58.391437308868504,
+ "grad_norm": 0.23641079664230347,
+ "learning_rate": 0.0006,
+ "loss": 3.5464468002319336,
+ "step": 4204
+ },
+ {
+ "epoch": 58.40541721275666,
+ "grad_norm": 0.29965463280677795,
+ "learning_rate": 0.0006,
+ "loss": 3.560166835784912,
+ "step": 4205
+ },
+ {
+ "epoch": 58.419397116644824,
+ "grad_norm": 0.2778814136981964,
+ "learning_rate": 0.0006,
+ "loss": 3.5363056659698486,
+ "step": 4206
+ },
+ {
+ "epoch": 58.43337702053299,
+ "grad_norm": 0.23625248670578003,
+ "learning_rate": 0.0006,
+ "loss": 3.5575437545776367,
+ "step": 4207
+ },
+ {
+ "epoch": 58.44735692442114,
+ "grad_norm": 0.2165721356868744,
+ "learning_rate": 0.0006,
+ "loss": 3.541654109954834,
+ "step": 4208
+ },
+ {
+ "epoch": 58.46133682830931,
+ "grad_norm": 0.2261950671672821,
+ "learning_rate": 0.0006,
+ "loss": 3.5462238788604736,
+ "step": 4209
+ },
+ {
+ "epoch": 58.47531673219746,
+ "grad_norm": 0.23496517539024353,
+ "learning_rate": 0.0006,
+ "loss": 3.510138988494873,
+ "step": 4210
+ },
+ {
+ "epoch": 58.489296636085626,
+ "grad_norm": 0.27041929960250854,
+ "learning_rate": 0.0006,
+ "loss": 3.527822971343994,
+ "step": 4211
+ },
+ {
+ "epoch": 58.50327653997379,
+ "grad_norm": 0.2594013512134552,
+ "learning_rate": 0.0006,
+ "loss": 3.5358262062072754,
+ "step": 4212
+ },
+ {
+ "epoch": 58.517256443861946,
+ "grad_norm": 0.23336786031723022,
+ "learning_rate": 0.0006,
+ "loss": 3.530122756958008,
+ "step": 4213
+ },
+ {
+ "epoch": 58.53123634775011,
+ "grad_norm": 0.21956655383110046,
+ "learning_rate": 0.0006,
+ "loss": 3.541039228439331,
+ "step": 4214
+ },
+ {
+ "epoch": 58.54521625163827,
+ "grad_norm": 0.22432804107666016,
+ "learning_rate": 0.0006,
+ "loss": 3.520948886871338,
+ "step": 4215
+ },
+ {
+ "epoch": 58.55919615552643,
+ "grad_norm": 0.21589893102645874,
+ "learning_rate": 0.0006,
+ "loss": 3.569808006286621,
+ "step": 4216
+ },
+ {
+ "epoch": 58.57317605941459,
+ "grad_norm": 0.20264557003974915,
+ "learning_rate": 0.0006,
+ "loss": 3.514918088912964,
+ "step": 4217
+ },
+ {
+ "epoch": 58.58715596330275,
+ "grad_norm": 0.20911480486392975,
+ "learning_rate": 0.0006,
+ "loss": 3.5340771675109863,
+ "step": 4218
+ },
+ {
+ "epoch": 58.60113586719091,
+ "grad_norm": 0.21068964898586273,
+ "learning_rate": 0.0006,
+ "loss": 3.5388903617858887,
+ "step": 4219
+ },
+ {
+ "epoch": 58.615115771079076,
+ "grad_norm": 0.19314789772033691,
+ "learning_rate": 0.0006,
+ "loss": 3.5405967235565186,
+ "step": 4220
+ },
+ {
+ "epoch": 58.62909567496723,
+ "grad_norm": 0.18347802758216858,
+ "learning_rate": 0.0006,
+ "loss": 3.5208020210266113,
+ "step": 4221
+ },
+ {
+ "epoch": 58.643075578855395,
+ "grad_norm": 0.2082843780517578,
+ "learning_rate": 0.0006,
+ "loss": 3.5454647541046143,
+ "step": 4222
+ },
+ {
+ "epoch": 58.65705548274356,
+ "grad_norm": 0.2049611210823059,
+ "learning_rate": 0.0006,
+ "loss": 3.529350996017456,
+ "step": 4223
+ },
+ {
+ "epoch": 58.671035386631715,
+ "grad_norm": 0.19259536266326904,
+ "learning_rate": 0.0006,
+ "loss": 3.5589945316314697,
+ "step": 4224
+ },
+ {
+ "epoch": 58.68501529051988,
+ "grad_norm": 0.19039863348007202,
+ "learning_rate": 0.0006,
+ "loss": 3.5593101978302,
+ "step": 4225
+ },
+ {
+ "epoch": 58.69899519440804,
+ "grad_norm": 0.21481311321258545,
+ "learning_rate": 0.0006,
+ "loss": 3.55385422706604,
+ "step": 4226
+ },
+ {
+ "epoch": 58.7129750982962,
+ "grad_norm": 0.2053634226322174,
+ "learning_rate": 0.0006,
+ "loss": 3.535224437713623,
+ "step": 4227
+ },
+ {
+ "epoch": 58.72695500218436,
+ "grad_norm": 0.21111956238746643,
+ "learning_rate": 0.0006,
+ "loss": 3.5208349227905273,
+ "step": 4228
+ },
+ {
+ "epoch": 58.74093490607252,
+ "grad_norm": 0.22069109976291656,
+ "learning_rate": 0.0006,
+ "loss": 3.5292487144470215,
+ "step": 4229
+ },
+ {
+ "epoch": 58.75491480996068,
+ "grad_norm": 0.22549185156822205,
+ "learning_rate": 0.0006,
+ "loss": 3.556830406188965,
+ "step": 4230
+ },
+ {
+ "epoch": 58.768894713848844,
+ "grad_norm": 0.22341859340667725,
+ "learning_rate": 0.0006,
+ "loss": 3.5573582649230957,
+ "step": 4231
+ },
+ {
+ "epoch": 58.782874617737,
+ "grad_norm": 0.20664502680301666,
+ "learning_rate": 0.0006,
+ "loss": 3.578657865524292,
+ "step": 4232
+ },
+ {
+ "epoch": 58.796854521625164,
+ "grad_norm": 0.19885236024856567,
+ "learning_rate": 0.0006,
+ "loss": 3.5604476928710938,
+ "step": 4233
+ },
+ {
+ "epoch": 58.81083442551333,
+ "grad_norm": 0.19446797668933868,
+ "learning_rate": 0.0006,
+ "loss": 3.5686912536621094,
+ "step": 4234
+ },
+ {
+ "epoch": 58.824814329401484,
+ "grad_norm": 0.20658083260059357,
+ "learning_rate": 0.0006,
+ "loss": 3.563167095184326,
+ "step": 4235
+ },
+ {
+ "epoch": 58.83879423328965,
+ "grad_norm": 0.21075408160686493,
+ "learning_rate": 0.0006,
+ "loss": 3.5597028732299805,
+ "step": 4236
+ },
+ {
+ "epoch": 58.8527741371778,
+ "grad_norm": 0.20652376115322113,
+ "learning_rate": 0.0006,
+ "loss": 3.5651087760925293,
+ "step": 4237
+ },
+ {
+ "epoch": 58.86675404106597,
+ "grad_norm": 0.2243892401456833,
+ "learning_rate": 0.0006,
+ "loss": 3.5442488193511963,
+ "step": 4238
+ },
+ {
+ "epoch": 58.88073394495413,
+ "grad_norm": 0.23486459255218506,
+ "learning_rate": 0.0006,
+ "loss": 3.545135974884033,
+ "step": 4239
+ },
+ {
+ "epoch": 58.89471384884229,
+ "grad_norm": 0.23100663721561432,
+ "learning_rate": 0.0006,
+ "loss": 3.57177734375,
+ "step": 4240
+ },
+ {
+ "epoch": 58.90869375273045,
+ "grad_norm": 0.2269909679889679,
+ "learning_rate": 0.0006,
+ "loss": 3.528768301010132,
+ "step": 4241
+ },
+ {
+ "epoch": 58.92267365661861,
+ "grad_norm": 0.20349252223968506,
+ "learning_rate": 0.0006,
+ "loss": 3.591031789779663,
+ "step": 4242
+ },
+ {
+ "epoch": 58.93665356050677,
+ "grad_norm": 0.21038702130317688,
+ "learning_rate": 0.0006,
+ "loss": 3.5696892738342285,
+ "step": 4243
+ },
+ {
+ "epoch": 58.95063346439493,
+ "grad_norm": 0.21356560289859772,
+ "learning_rate": 0.0006,
+ "loss": 3.5708963871002197,
+ "step": 4244
+ },
+ {
+ "epoch": 58.964613368283096,
+ "grad_norm": 0.20008863508701324,
+ "learning_rate": 0.0006,
+ "loss": 3.524749279022217,
+ "step": 4245
+ },
+ {
+ "epoch": 58.97859327217125,
+ "grad_norm": 0.20453840494155884,
+ "learning_rate": 0.0006,
+ "loss": 3.5677876472473145,
+ "step": 4246
+ },
+ {
+ "epoch": 58.992573176059416,
+ "grad_norm": 0.21549056470394135,
+ "learning_rate": 0.0006,
+ "loss": 3.550870418548584,
+ "step": 4247
+ },
+ {
+ "epoch": 59.0,
+ "grad_norm": 0.2592930793762207,
+ "learning_rate": 0.0006,
+ "loss": 3.550673484802246,
+ "step": 4248
+ },
+ {
+ "epoch": 59.0,
+ "eval_loss": 3.968780279159546,
+ "eval_runtime": 45.6246,
+ "eval_samples_per_second": 53.524,
+ "eval_steps_per_second": 3.353,
+ "step": 4248
+ },
+ {
+ "epoch": 59.01397990388816,
+ "grad_norm": 0.218043252825737,
+ "learning_rate": 0.0006,
+ "loss": 3.49605655670166,
+ "step": 4249
+ },
+ {
+ "epoch": 59.02795980777632,
+ "grad_norm": 0.25112417340278625,
+ "learning_rate": 0.0006,
+ "loss": 3.534919023513794,
+ "step": 4250
+ },
+ {
+ "epoch": 59.04193971166448,
+ "grad_norm": 0.2785079777240753,
+ "learning_rate": 0.0006,
+ "loss": 3.5425362586975098,
+ "step": 4251
+ },
+ {
+ "epoch": 59.05591961555265,
+ "grad_norm": 0.2667599618434906,
+ "learning_rate": 0.0006,
+ "loss": 3.4955453872680664,
+ "step": 4252
+ },
+ {
+ "epoch": 59.0698995194408,
+ "grad_norm": 0.24012432992458344,
+ "learning_rate": 0.0006,
+ "loss": 3.4949915409088135,
+ "step": 4253
+ },
+ {
+ "epoch": 59.083879423328966,
+ "grad_norm": 0.2502294182777405,
+ "learning_rate": 0.0006,
+ "loss": 3.5163769721984863,
+ "step": 4254
+ },
+ {
+ "epoch": 59.09785932721712,
+ "grad_norm": 0.28585609793663025,
+ "learning_rate": 0.0006,
+ "loss": 3.4852542877197266,
+ "step": 4255
+ },
+ {
+ "epoch": 59.111839231105286,
+ "grad_norm": 0.2815989553928375,
+ "learning_rate": 0.0006,
+ "loss": 3.4991462230682373,
+ "step": 4256
+ },
+ {
+ "epoch": 59.12581913499345,
+ "grad_norm": 0.22922837734222412,
+ "learning_rate": 0.0006,
+ "loss": 3.511322021484375,
+ "step": 4257
+ },
+ {
+ "epoch": 59.139799038881605,
+ "grad_norm": 0.24964241683483124,
+ "learning_rate": 0.0006,
+ "loss": 3.521056652069092,
+ "step": 4258
+ },
+ {
+ "epoch": 59.15377894276977,
+ "grad_norm": 0.27568385004997253,
+ "learning_rate": 0.0006,
+ "loss": 3.514004707336426,
+ "step": 4259
+ },
+ {
+ "epoch": 59.16775884665793,
+ "grad_norm": 0.2605166733264923,
+ "learning_rate": 0.0006,
+ "loss": 3.5132668018341064,
+ "step": 4260
+ },
+ {
+ "epoch": 59.18173875054609,
+ "grad_norm": 0.24248117208480835,
+ "learning_rate": 0.0006,
+ "loss": 3.5492095947265625,
+ "step": 4261
+ },
+ {
+ "epoch": 59.19571865443425,
+ "grad_norm": 0.26359522342681885,
+ "learning_rate": 0.0006,
+ "loss": 3.521390438079834,
+ "step": 4262
+ },
+ {
+ "epoch": 59.20969855832241,
+ "grad_norm": 0.262248694896698,
+ "learning_rate": 0.0006,
+ "loss": 3.556307315826416,
+ "step": 4263
+ },
+ {
+ "epoch": 59.22367846221057,
+ "grad_norm": 0.23514866828918457,
+ "learning_rate": 0.0006,
+ "loss": 3.4989941120147705,
+ "step": 4264
+ },
+ {
+ "epoch": 59.237658366098735,
+ "grad_norm": 0.22758382558822632,
+ "learning_rate": 0.0006,
+ "loss": 3.5307068824768066,
+ "step": 4265
+ },
+ {
+ "epoch": 59.25163826998689,
+ "grad_norm": 0.24037839472293854,
+ "learning_rate": 0.0006,
+ "loss": 3.495872974395752,
+ "step": 4266
+ },
+ {
+ "epoch": 59.265618173875055,
+ "grad_norm": 0.22763589024543762,
+ "learning_rate": 0.0006,
+ "loss": 3.54052472114563,
+ "step": 4267
+ },
+ {
+ "epoch": 59.27959807776322,
+ "grad_norm": 0.22400406002998352,
+ "learning_rate": 0.0006,
+ "loss": 3.498671054840088,
+ "step": 4268
+ },
+ {
+ "epoch": 59.293577981651374,
+ "grad_norm": 0.2326328009366989,
+ "learning_rate": 0.0006,
+ "loss": 3.559108257293701,
+ "step": 4269
+ },
+ {
+ "epoch": 59.30755788553954,
+ "grad_norm": 0.24426043033599854,
+ "learning_rate": 0.0006,
+ "loss": 3.5245609283447266,
+ "step": 4270
+ },
+ {
+ "epoch": 59.3215377894277,
+ "grad_norm": 0.2159317582845688,
+ "learning_rate": 0.0006,
+ "loss": 3.5189900398254395,
+ "step": 4271
+ },
+ {
+ "epoch": 59.33551769331586,
+ "grad_norm": 0.19148702919483185,
+ "learning_rate": 0.0006,
+ "loss": 3.548433303833008,
+ "step": 4272
+ },
+ {
+ "epoch": 59.34949759720402,
+ "grad_norm": 0.23349083960056305,
+ "learning_rate": 0.0006,
+ "loss": 3.5475196838378906,
+ "step": 4273
+ },
+ {
+ "epoch": 59.36347750109218,
+ "grad_norm": 0.24024079740047455,
+ "learning_rate": 0.0006,
+ "loss": 3.5172529220581055,
+ "step": 4274
+ },
+ {
+ "epoch": 59.37745740498034,
+ "grad_norm": 0.23772001266479492,
+ "learning_rate": 0.0006,
+ "loss": 3.5428695678710938,
+ "step": 4275
+ },
+ {
+ "epoch": 59.391437308868504,
+ "grad_norm": 0.21134959161281586,
+ "learning_rate": 0.0006,
+ "loss": 3.523099422454834,
+ "step": 4276
+ },
+ {
+ "epoch": 59.40541721275666,
+ "grad_norm": 0.20760025084018707,
+ "learning_rate": 0.0006,
+ "loss": 3.55435848236084,
+ "step": 4277
+ },
+ {
+ "epoch": 59.419397116644824,
+ "grad_norm": 0.21113243699073792,
+ "learning_rate": 0.0006,
+ "loss": 3.5355324745178223,
+ "step": 4278
+ },
+ {
+ "epoch": 59.43337702053299,
+ "grad_norm": 0.21604566276073456,
+ "learning_rate": 0.0006,
+ "loss": 3.5517663955688477,
+ "step": 4279
+ },
+ {
+ "epoch": 59.44735692442114,
+ "grad_norm": 0.19646669924259186,
+ "learning_rate": 0.0006,
+ "loss": 3.538435935974121,
+ "step": 4280
+ },
+ {
+ "epoch": 59.46133682830931,
+ "grad_norm": 0.20394550263881683,
+ "learning_rate": 0.0006,
+ "loss": 3.528444290161133,
+ "step": 4281
+ },
+ {
+ "epoch": 59.47531673219746,
+ "grad_norm": 0.24543620645999908,
+ "learning_rate": 0.0006,
+ "loss": 3.5355372428894043,
+ "step": 4282
+ },
+ {
+ "epoch": 59.489296636085626,
+ "grad_norm": 0.24048425257205963,
+ "learning_rate": 0.0006,
+ "loss": 3.521336078643799,
+ "step": 4283
+ },
+ {
+ "epoch": 59.50327653997379,
+ "grad_norm": 0.23630213737487793,
+ "learning_rate": 0.0006,
+ "loss": 3.556244373321533,
+ "step": 4284
+ },
+ {
+ "epoch": 59.517256443861946,
+ "grad_norm": 0.2791444659233093,
+ "learning_rate": 0.0006,
+ "loss": 3.5927138328552246,
+ "step": 4285
+ },
+ {
+ "epoch": 59.53123634775011,
+ "grad_norm": 0.30325770378112793,
+ "learning_rate": 0.0006,
+ "loss": 3.559296131134033,
+ "step": 4286
+ },
+ {
+ "epoch": 59.54521625163827,
+ "grad_norm": 0.2708670496940613,
+ "learning_rate": 0.0006,
+ "loss": 3.531050205230713,
+ "step": 4287
+ },
+ {
+ "epoch": 59.55919615552643,
+ "grad_norm": 0.23795515298843384,
+ "learning_rate": 0.0006,
+ "loss": 3.5365982055664062,
+ "step": 4288
+ },
+ {
+ "epoch": 59.57317605941459,
+ "grad_norm": 0.20949627459049225,
+ "learning_rate": 0.0006,
+ "loss": 3.5591273307800293,
+ "step": 4289
+ },
+ {
+ "epoch": 59.58715596330275,
+ "grad_norm": 0.21885769069194794,
+ "learning_rate": 0.0006,
+ "loss": 3.4965288639068604,
+ "step": 4290
+ },
+ {
+ "epoch": 59.60113586719091,
+ "grad_norm": 0.22365590929985046,
+ "learning_rate": 0.0006,
+ "loss": 3.538118362426758,
+ "step": 4291
+ },
+ {
+ "epoch": 59.615115771079076,
+ "grad_norm": 0.23178881406784058,
+ "learning_rate": 0.0006,
+ "loss": 3.515933036804199,
+ "step": 4292
+ },
+ {
+ "epoch": 59.62909567496723,
+ "grad_norm": 0.21539060771465302,
+ "learning_rate": 0.0006,
+ "loss": 3.54185152053833,
+ "step": 4293
+ },
+ {
+ "epoch": 59.643075578855395,
+ "grad_norm": 0.22033682465553284,
+ "learning_rate": 0.0006,
+ "loss": 3.526728630065918,
+ "step": 4294
+ },
+ {
+ "epoch": 59.65705548274356,
+ "grad_norm": 0.23003938794136047,
+ "learning_rate": 0.0006,
+ "loss": 3.555710792541504,
+ "step": 4295
+ },
+ {
+ "epoch": 59.671035386631715,
+ "grad_norm": 0.22887346148490906,
+ "learning_rate": 0.0006,
+ "loss": 3.580883502960205,
+ "step": 4296
+ },
+ {
+ "epoch": 59.68501529051988,
+ "grad_norm": 0.2147892713546753,
+ "learning_rate": 0.0006,
+ "loss": 3.5318822860717773,
+ "step": 4297
+ },
+ {
+ "epoch": 59.69899519440804,
+ "grad_norm": 0.22063598036766052,
+ "learning_rate": 0.0006,
+ "loss": 3.5179357528686523,
+ "step": 4298
+ },
+ {
+ "epoch": 59.7129750982962,
+ "grad_norm": 0.22569656372070312,
+ "learning_rate": 0.0006,
+ "loss": 3.583181381225586,
+ "step": 4299
+ },
+ {
+ "epoch": 59.72695500218436,
+ "grad_norm": 0.2252701222896576,
+ "learning_rate": 0.0006,
+ "loss": 3.5780375003814697,
+ "step": 4300
+ },
+ {
+ "epoch": 59.74093490607252,
+ "grad_norm": 0.2288130521774292,
+ "learning_rate": 0.0006,
+ "loss": 3.570399284362793,
+ "step": 4301
+ },
+ {
+ "epoch": 59.75491480996068,
+ "grad_norm": 0.21879231929779053,
+ "learning_rate": 0.0006,
+ "loss": 3.540292739868164,
+ "step": 4302
+ },
+ {
+ "epoch": 59.768894713848844,
+ "grad_norm": 0.20675964653491974,
+ "learning_rate": 0.0006,
+ "loss": 3.532649040222168,
+ "step": 4303
+ },
+ {
+ "epoch": 59.782874617737,
+ "grad_norm": 0.21810708940029144,
+ "learning_rate": 0.0006,
+ "loss": 3.5156657695770264,
+ "step": 4304
+ },
+ {
+ "epoch": 59.796854521625164,
+ "grad_norm": 0.22701260447502136,
+ "learning_rate": 0.0006,
+ "loss": 3.5535266399383545,
+ "step": 4305
+ },
+ {
+ "epoch": 59.81083442551333,
+ "grad_norm": 0.23433080315589905,
+ "learning_rate": 0.0006,
+ "loss": 3.5280754566192627,
+ "step": 4306
+ },
+ {
+ "epoch": 59.824814329401484,
+ "grad_norm": 0.2254341095685959,
+ "learning_rate": 0.0006,
+ "loss": 3.534045696258545,
+ "step": 4307
+ },
+ {
+ "epoch": 59.83879423328965,
+ "grad_norm": 0.21756123006343842,
+ "learning_rate": 0.0006,
+ "loss": 3.5621533393859863,
+ "step": 4308
+ },
+ {
+ "epoch": 59.8527741371778,
+ "grad_norm": 0.19731850922107697,
+ "learning_rate": 0.0006,
+ "loss": 3.536633253097534,
+ "step": 4309
+ },
+ {
+ "epoch": 59.86675404106597,
+ "grad_norm": 0.2260110229253769,
+ "learning_rate": 0.0006,
+ "loss": 3.5721538066864014,
+ "step": 4310
+ },
+ {
+ "epoch": 59.88073394495413,
+ "grad_norm": 0.22728438675403595,
+ "learning_rate": 0.0006,
+ "loss": 3.5576961040496826,
+ "step": 4311
+ },
+ {
+ "epoch": 59.89471384884229,
+ "grad_norm": 0.20675411820411682,
+ "learning_rate": 0.0006,
+ "loss": 3.5070700645446777,
+ "step": 4312
+ },
+ {
+ "epoch": 59.90869375273045,
+ "grad_norm": 0.22258996963500977,
+ "learning_rate": 0.0006,
+ "loss": 3.564357280731201,
+ "step": 4313
+ },
+ {
+ "epoch": 59.92267365661861,
+ "grad_norm": 0.2429998815059662,
+ "learning_rate": 0.0006,
+ "loss": 3.519744873046875,
+ "step": 4314
+ },
+ {
+ "epoch": 59.93665356050677,
+ "grad_norm": 0.2394791841506958,
+ "learning_rate": 0.0006,
+ "loss": 3.533292055130005,
+ "step": 4315
+ },
+ {
+ "epoch": 59.95063346439493,
+ "grad_norm": 0.20659418404102325,
+ "learning_rate": 0.0006,
+ "loss": 3.5475940704345703,
+ "step": 4316
+ },
+ {
+ "epoch": 59.964613368283096,
+ "grad_norm": 0.19679132103919983,
+ "learning_rate": 0.0006,
+ "loss": 3.5794930458068848,
+ "step": 4317
+ },
+ {
+ "epoch": 59.97859327217125,
+ "grad_norm": 0.2133002132177353,
+ "learning_rate": 0.0006,
+ "loss": 3.5506505966186523,
+ "step": 4318
+ },
+ {
+ "epoch": 59.992573176059416,
+ "grad_norm": 0.22383661568164825,
+ "learning_rate": 0.0006,
+ "loss": 3.547708511352539,
+ "step": 4319
+ },
+ {
+ "epoch": 60.0,
+ "grad_norm": 0.25744178891181946,
+ "learning_rate": 0.0006,
+ "loss": 3.5519227981567383,
+ "step": 4320
+ },
+ {
+ "epoch": 60.0,
+ "eval_loss": 3.9816012382507324,
+ "eval_runtime": 46.3931,
+ "eval_samples_per_second": 52.637,
+ "eval_steps_per_second": 3.298,
+ "step": 4320
+ },
+ {
+ "epoch": 60.01397990388816,
+ "grad_norm": 0.2202005684375763,
+ "learning_rate": 0.0006,
+ "loss": 3.51010799407959,
+ "step": 4321
+ },
+ {
+ "epoch": 60.02795980777632,
+ "grad_norm": 0.24285688996315002,
+ "learning_rate": 0.0006,
+ "loss": 3.519137382507324,
+ "step": 4322
+ },
+ {
+ "epoch": 60.04193971166448,
+ "grad_norm": 0.2700578570365906,
+ "learning_rate": 0.0006,
+ "loss": 3.523392915725708,
+ "step": 4323
+ },
+ {
+ "epoch": 60.05591961555265,
+ "grad_norm": 0.30088669061660767,
+ "learning_rate": 0.0006,
+ "loss": 3.48724627494812,
+ "step": 4324
+ },
+ {
+ "epoch": 60.0698995194408,
+ "grad_norm": 0.30426669120788574,
+ "learning_rate": 0.0006,
+ "loss": 3.479025363922119,
+ "step": 4325
+ },
+ {
+ "epoch": 60.083879423328966,
+ "grad_norm": 0.2718220055103302,
+ "learning_rate": 0.0006,
+ "loss": 3.4923276901245117,
+ "step": 4326
+ },
+ {
+ "epoch": 60.09785932721712,
+ "grad_norm": 0.23625287413597107,
+ "learning_rate": 0.0006,
+ "loss": 3.5152812004089355,
+ "step": 4327
+ },
+ {
+ "epoch": 60.111839231105286,
+ "grad_norm": 0.23336869478225708,
+ "learning_rate": 0.0006,
+ "loss": 3.512453079223633,
+ "step": 4328
+ },
+ {
+ "epoch": 60.12581913499345,
+ "grad_norm": 0.24780215322971344,
+ "learning_rate": 0.0006,
+ "loss": 3.505812168121338,
+ "step": 4329
+ },
+ {
+ "epoch": 60.139799038881605,
+ "grad_norm": 0.25600194931030273,
+ "learning_rate": 0.0006,
+ "loss": 3.5281314849853516,
+ "step": 4330
+ },
+ {
+ "epoch": 60.15377894276977,
+ "grad_norm": 0.2458304911851883,
+ "learning_rate": 0.0006,
+ "loss": 3.4932949542999268,
+ "step": 4331
+ },
+ {
+ "epoch": 60.16775884665793,
+ "grad_norm": 0.2246888130903244,
+ "learning_rate": 0.0006,
+ "loss": 3.5295495986938477,
+ "step": 4332
+ },
+ {
+ "epoch": 60.18173875054609,
+ "grad_norm": 0.23762951791286469,
+ "learning_rate": 0.0006,
+ "loss": 3.4938201904296875,
+ "step": 4333
+ },
+ {
+ "epoch": 60.19571865443425,
+ "grad_norm": 0.24483945965766907,
+ "learning_rate": 0.0006,
+ "loss": 3.544774055480957,
+ "step": 4334
+ },
+ {
+ "epoch": 60.20969855832241,
+ "grad_norm": 0.24154368042945862,
+ "learning_rate": 0.0006,
+ "loss": 3.5352816581726074,
+ "step": 4335
+ },
+ {
+ "epoch": 60.22367846221057,
+ "grad_norm": 0.22929225862026215,
+ "learning_rate": 0.0006,
+ "loss": 3.5546953678131104,
+ "step": 4336
+ },
+ {
+ "epoch": 60.237658366098735,
+ "grad_norm": 0.21391373872756958,
+ "learning_rate": 0.0006,
+ "loss": 3.537647247314453,
+ "step": 4337
+ },
+ {
+ "epoch": 60.25163826998689,
+ "grad_norm": 0.20410357415676117,
+ "learning_rate": 0.0006,
+ "loss": 3.535831928253174,
+ "step": 4338
+ },
+ {
+ "epoch": 60.265618173875055,
+ "grad_norm": 0.2070329487323761,
+ "learning_rate": 0.0006,
+ "loss": 3.5234389305114746,
+ "step": 4339
+ },
+ {
+ "epoch": 60.27959807776322,
+ "grad_norm": 0.20540225505828857,
+ "learning_rate": 0.0006,
+ "loss": 3.557478427886963,
+ "step": 4340
+ },
+ {
+ "epoch": 60.293577981651374,
+ "grad_norm": 0.2124919891357422,
+ "learning_rate": 0.0006,
+ "loss": 3.532726764678955,
+ "step": 4341
+ },
+ {
+ "epoch": 60.30755788553954,
+ "grad_norm": 0.22207678854465485,
+ "learning_rate": 0.0006,
+ "loss": 3.5314202308654785,
+ "step": 4342
+ },
+ {
+ "epoch": 60.3215377894277,
+ "grad_norm": 0.2137281745672226,
+ "learning_rate": 0.0006,
+ "loss": 3.5491206645965576,
+ "step": 4343
+ },
+ {
+ "epoch": 60.33551769331586,
+ "grad_norm": 0.20728953182697296,
+ "learning_rate": 0.0006,
+ "loss": 3.5111031532287598,
+ "step": 4344
+ },
+ {
+ "epoch": 60.34949759720402,
+ "grad_norm": 0.22547020018100739,
+ "learning_rate": 0.0006,
+ "loss": 3.5311098098754883,
+ "step": 4345
+ },
+ {
+ "epoch": 60.36347750109218,
+ "grad_norm": 0.23352888226509094,
+ "learning_rate": 0.0006,
+ "loss": 3.5200939178466797,
+ "step": 4346
+ },
+ {
+ "epoch": 60.37745740498034,
+ "grad_norm": 0.21329060196876526,
+ "learning_rate": 0.0006,
+ "loss": 3.508589744567871,
+ "step": 4347
+ },
+ {
+ "epoch": 60.391437308868504,
+ "grad_norm": 0.1904045194387436,
+ "learning_rate": 0.0006,
+ "loss": 3.4850475788116455,
+ "step": 4348
+ },
+ {
+ "epoch": 60.40541721275666,
+ "grad_norm": 0.20586109161376953,
+ "learning_rate": 0.0006,
+ "loss": 3.5503551959991455,
+ "step": 4349
+ },
+ {
+ "epoch": 60.419397116644824,
+ "grad_norm": 0.21311818063259125,
+ "learning_rate": 0.0006,
+ "loss": 3.5243923664093018,
+ "step": 4350
+ },
+ {
+ "epoch": 60.43337702053299,
+ "grad_norm": 0.21479184925556183,
+ "learning_rate": 0.0006,
+ "loss": 3.553647041320801,
+ "step": 4351
+ },
+ {
+ "epoch": 60.44735692442114,
+ "grad_norm": 0.19994449615478516,
+ "learning_rate": 0.0006,
+ "loss": 3.5558884143829346,
+ "step": 4352
+ },
+ {
+ "epoch": 60.46133682830931,
+ "grad_norm": 0.21455694735050201,
+ "learning_rate": 0.0006,
+ "loss": 3.5186543464660645,
+ "step": 4353
+ },
+ {
+ "epoch": 60.47531673219746,
+ "grad_norm": 0.21904151141643524,
+ "learning_rate": 0.0006,
+ "loss": 3.526367425918579,
+ "step": 4354
+ },
+ {
+ "epoch": 60.489296636085626,
+ "grad_norm": 0.1908986121416092,
+ "learning_rate": 0.0006,
+ "loss": 3.541072368621826,
+ "step": 4355
+ },
+ {
+ "epoch": 60.50327653997379,
+ "grad_norm": 0.20290519297122955,
+ "learning_rate": 0.0006,
+ "loss": 3.530333995819092,
+ "step": 4356
+ },
+ {
+ "epoch": 60.517256443861946,
+ "grad_norm": 0.2318771779537201,
+ "learning_rate": 0.0006,
+ "loss": 3.5260486602783203,
+ "step": 4357
+ },
+ {
+ "epoch": 60.53123634775011,
+ "grad_norm": 0.25559669733047485,
+ "learning_rate": 0.0006,
+ "loss": 3.56851863861084,
+ "step": 4358
+ },
+ {
+ "epoch": 60.54521625163827,
+ "grad_norm": 0.2529429793357849,
+ "learning_rate": 0.0006,
+ "loss": 3.5519490242004395,
+ "step": 4359
+ },
+ {
+ "epoch": 60.55919615552643,
+ "grad_norm": 0.22857248783111572,
+ "learning_rate": 0.0006,
+ "loss": 3.5556063652038574,
+ "step": 4360
+ },
+ {
+ "epoch": 60.57317605941459,
+ "grad_norm": 0.21628573536872864,
+ "learning_rate": 0.0006,
+ "loss": 3.5321288108825684,
+ "step": 4361
+ },
+ {
+ "epoch": 60.58715596330275,
+ "grad_norm": 0.19497910141944885,
+ "learning_rate": 0.0006,
+ "loss": 3.5480406284332275,
+ "step": 4362
+ },
+ {
+ "epoch": 60.60113586719091,
+ "grad_norm": 0.204348623752594,
+ "learning_rate": 0.0006,
+ "loss": 3.522806167602539,
+ "step": 4363
+ },
+ {
+ "epoch": 60.615115771079076,
+ "grad_norm": 0.23013663291931152,
+ "learning_rate": 0.0006,
+ "loss": 3.512876033782959,
+ "step": 4364
+ },
+ {
+ "epoch": 60.62909567496723,
+ "grad_norm": 0.22948725521564484,
+ "learning_rate": 0.0006,
+ "loss": 3.54276704788208,
+ "step": 4365
+ },
+ {
+ "epoch": 60.643075578855395,
+ "grad_norm": 0.20528492331504822,
+ "learning_rate": 0.0006,
+ "loss": 3.5592503547668457,
+ "step": 4366
+ },
+ {
+ "epoch": 60.65705548274356,
+ "grad_norm": 0.214582160115242,
+ "learning_rate": 0.0006,
+ "loss": 3.5168166160583496,
+ "step": 4367
+ },
+ {
+ "epoch": 60.671035386631715,
+ "grad_norm": 0.18893493711948395,
+ "learning_rate": 0.0006,
+ "loss": 3.51012921333313,
+ "step": 4368
+ },
+ {
+ "epoch": 60.68501529051988,
+ "grad_norm": 0.19301992654800415,
+ "learning_rate": 0.0006,
+ "loss": 3.5396199226379395,
+ "step": 4369
+ },
+ {
+ "epoch": 60.69899519440804,
+ "grad_norm": 0.22339801490306854,
+ "learning_rate": 0.0006,
+ "loss": 3.5463967323303223,
+ "step": 4370
+ },
+ {
+ "epoch": 60.7129750982962,
+ "grad_norm": 0.19028180837631226,
+ "learning_rate": 0.0006,
+ "loss": 3.534419536590576,
+ "step": 4371
+ },
+ {
+ "epoch": 60.72695500218436,
+ "grad_norm": 0.2078639566898346,
+ "learning_rate": 0.0006,
+ "loss": 3.5345680713653564,
+ "step": 4372
+ },
+ {
+ "epoch": 60.74093490607252,
+ "grad_norm": 0.24292199313640594,
+ "learning_rate": 0.0006,
+ "loss": 3.5291242599487305,
+ "step": 4373
+ },
+ {
+ "epoch": 60.75491480996068,
+ "grad_norm": 0.25118497014045715,
+ "learning_rate": 0.0006,
+ "loss": 3.5362191200256348,
+ "step": 4374
+ },
+ {
+ "epoch": 60.768894713848844,
+ "grad_norm": 0.24816395342350006,
+ "learning_rate": 0.0006,
+ "loss": 3.539637804031372,
+ "step": 4375
+ },
+ {
+ "epoch": 60.782874617737,
+ "grad_norm": 0.23654010891914368,
+ "learning_rate": 0.0006,
+ "loss": 3.482605457305908,
+ "step": 4376
+ },
+ {
+ "epoch": 60.796854521625164,
+ "grad_norm": 0.21593770384788513,
+ "learning_rate": 0.0006,
+ "loss": 3.550279140472412,
+ "step": 4377
+ },
+ {
+ "epoch": 60.81083442551333,
+ "grad_norm": 0.21346014738082886,
+ "learning_rate": 0.0006,
+ "loss": 3.541086196899414,
+ "step": 4378
+ },
+ {
+ "epoch": 60.824814329401484,
+ "grad_norm": 0.2284841537475586,
+ "learning_rate": 0.0006,
+ "loss": 3.544254779815674,
+ "step": 4379
+ },
+ {
+ "epoch": 60.83879423328965,
+ "grad_norm": 0.23353151977062225,
+ "learning_rate": 0.0006,
+ "loss": 3.5606589317321777,
+ "step": 4380
+ },
+ {
+ "epoch": 60.8527741371778,
+ "grad_norm": 0.2201574146747589,
+ "learning_rate": 0.0006,
+ "loss": 3.524120807647705,
+ "step": 4381
+ },
+ {
+ "epoch": 60.86675404106597,
+ "grad_norm": 0.2277211993932724,
+ "learning_rate": 0.0006,
+ "loss": 3.553539276123047,
+ "step": 4382
+ },
+ {
+ "epoch": 60.88073394495413,
+ "grad_norm": 0.2282724678516388,
+ "learning_rate": 0.0006,
+ "loss": 3.5247130393981934,
+ "step": 4383
+ },
+ {
+ "epoch": 60.89471384884229,
+ "grad_norm": 0.20859065651893616,
+ "learning_rate": 0.0006,
+ "loss": 3.5654680728912354,
+ "step": 4384
+ },
+ {
+ "epoch": 60.90869375273045,
+ "grad_norm": 0.1995432823896408,
+ "learning_rate": 0.0006,
+ "loss": 3.5091423988342285,
+ "step": 4385
+ },
+ {
+ "epoch": 60.92267365661861,
+ "grad_norm": 0.19769565761089325,
+ "learning_rate": 0.0006,
+ "loss": 3.5375986099243164,
+ "step": 4386
+ },
+ {
+ "epoch": 60.93665356050677,
+ "grad_norm": 0.21246176958084106,
+ "learning_rate": 0.0006,
+ "loss": 3.570774793624878,
+ "step": 4387
+ },
+ {
+ "epoch": 60.95063346439493,
+ "grad_norm": 0.2212657630443573,
+ "learning_rate": 0.0006,
+ "loss": 3.5192928314208984,
+ "step": 4388
+ },
+ {
+ "epoch": 60.964613368283096,
+ "grad_norm": 0.2258632481098175,
+ "learning_rate": 0.0006,
+ "loss": 3.5356457233428955,
+ "step": 4389
+ },
+ {
+ "epoch": 60.97859327217125,
+ "grad_norm": 0.1998971700668335,
+ "learning_rate": 0.0006,
+ "loss": 3.52758526802063,
+ "step": 4390
+ },
+ {
+ "epoch": 60.992573176059416,
+ "grad_norm": 0.1932399868965149,
+ "learning_rate": 0.0006,
+ "loss": 3.562718391418457,
+ "step": 4391
+ },
+ {
+ "epoch": 61.0,
+ "grad_norm": 0.24292197823524475,
+ "learning_rate": 0.0006,
+ "loss": 3.550189971923828,
+ "step": 4392
+ },
+ {
+ "epoch": 61.0,
+ "eval_loss": 3.974423408508301,
+ "eval_runtime": 45.8822,
+ "eval_samples_per_second": 53.223,
+ "eval_steps_per_second": 3.335,
+ "step": 4392
+ },
+ {
+ "epoch": 61.01397990388816,
+ "grad_norm": 0.2216092199087143,
+ "learning_rate": 0.0006,
+ "loss": 3.51747989654541,
+ "step": 4393
+ },
+ {
+ "epoch": 61.02795980777632,
+ "grad_norm": 0.23488417267799377,
+ "learning_rate": 0.0006,
+ "loss": 3.529064178466797,
+ "step": 4394
+ },
+ {
+ "epoch": 61.04193971166448,
+ "grad_norm": 0.2805800437927246,
+ "learning_rate": 0.0006,
+ "loss": 3.4868035316467285,
+ "step": 4395
+ },
+ {
+ "epoch": 61.05591961555265,
+ "grad_norm": 0.32623469829559326,
+ "learning_rate": 0.0006,
+ "loss": 3.5209708213806152,
+ "step": 4396
+ },
+ {
+ "epoch": 61.0698995194408,
+ "grad_norm": 0.2645402252674103,
+ "learning_rate": 0.0006,
+ "loss": 3.524512767791748,
+ "step": 4397
+ },
+ {
+ "epoch": 61.083879423328966,
+ "grad_norm": 0.21118173003196716,
+ "learning_rate": 0.0006,
+ "loss": 3.5167856216430664,
+ "step": 4398
+ },
+ {
+ "epoch": 61.09785932721712,
+ "grad_norm": 0.28649622201919556,
+ "learning_rate": 0.0006,
+ "loss": 3.5122973918914795,
+ "step": 4399
+ },
+ {
+ "epoch": 61.111839231105286,
+ "grad_norm": 0.39095914363861084,
+ "learning_rate": 0.0006,
+ "loss": 3.481421947479248,
+ "step": 4400
+ },
+ {
+ "epoch": 61.12581913499345,
+ "grad_norm": 0.4013976454734802,
+ "learning_rate": 0.0006,
+ "loss": 3.4859061241149902,
+ "step": 4401
+ },
+ {
+ "epoch": 61.139799038881605,
+ "grad_norm": 0.30067047476768494,
+ "learning_rate": 0.0006,
+ "loss": 3.524209976196289,
+ "step": 4402
+ },
+ {
+ "epoch": 61.15377894276977,
+ "grad_norm": 0.2086855173110962,
+ "learning_rate": 0.0006,
+ "loss": 3.4974379539489746,
+ "step": 4403
+ },
+ {
+ "epoch": 61.16775884665793,
+ "grad_norm": 0.25443482398986816,
+ "learning_rate": 0.0006,
+ "loss": 3.517038345336914,
+ "step": 4404
+ },
+ {
+ "epoch": 61.18173875054609,
+ "grad_norm": 0.27545589208602905,
+ "learning_rate": 0.0006,
+ "loss": 3.5075795650482178,
+ "step": 4405
+ },
+ {
+ "epoch": 61.19571865443425,
+ "grad_norm": 0.269279420375824,
+ "learning_rate": 0.0006,
+ "loss": 3.512235641479492,
+ "step": 4406
+ },
+ {
+ "epoch": 61.20969855832241,
+ "grad_norm": 0.24606923758983612,
+ "learning_rate": 0.0006,
+ "loss": 3.5362367630004883,
+ "step": 4407
+ },
+ {
+ "epoch": 61.22367846221057,
+ "grad_norm": 0.23358067870140076,
+ "learning_rate": 0.0006,
+ "loss": 3.5256686210632324,
+ "step": 4408
+ },
+ {
+ "epoch": 61.237658366098735,
+ "grad_norm": 0.2528085708618164,
+ "learning_rate": 0.0006,
+ "loss": 3.504239559173584,
+ "step": 4409
+ },
+ {
+ "epoch": 61.25163826998689,
+ "grad_norm": 0.28145745396614075,
+ "learning_rate": 0.0006,
+ "loss": 3.4862139225006104,
+ "step": 4410
+ },
+ {
+ "epoch": 61.265618173875055,
+ "grad_norm": 0.26570039987564087,
+ "learning_rate": 0.0006,
+ "loss": 3.5138425827026367,
+ "step": 4411
+ },
+ {
+ "epoch": 61.27959807776322,
+ "grad_norm": 0.2391415685415268,
+ "learning_rate": 0.0006,
+ "loss": 3.537569999694824,
+ "step": 4412
+ },
+ {
+ "epoch": 61.293577981651374,
+ "grad_norm": 0.22194577753543854,
+ "learning_rate": 0.0006,
+ "loss": 3.5367543697357178,
+ "step": 4413
+ },
+ {
+ "epoch": 61.30755788553954,
+ "grad_norm": 0.2388865202665329,
+ "learning_rate": 0.0006,
+ "loss": 3.533341407775879,
+ "step": 4414
+ },
+ {
+ "epoch": 61.3215377894277,
+ "grad_norm": 0.2666625380516052,
+ "learning_rate": 0.0006,
+ "loss": 3.501162528991699,
+ "step": 4415
+ },
+ {
+ "epoch": 61.33551769331586,
+ "grad_norm": 0.25569409132003784,
+ "learning_rate": 0.0006,
+ "loss": 3.529283046722412,
+ "step": 4416
+ },
+ {
+ "epoch": 61.34949759720402,
+ "grad_norm": 0.24683351814746857,
+ "learning_rate": 0.0006,
+ "loss": 3.508152484893799,
+ "step": 4417
+ },
+ {
+ "epoch": 61.36347750109218,
+ "grad_norm": 0.22290605306625366,
+ "learning_rate": 0.0006,
+ "loss": 3.5309581756591797,
+ "step": 4418
+ },
+ {
+ "epoch": 61.37745740498034,
+ "grad_norm": 0.2174215167760849,
+ "learning_rate": 0.0006,
+ "loss": 3.508796453475952,
+ "step": 4419
+ },
+ {
+ "epoch": 61.391437308868504,
+ "grad_norm": 0.23006199300289154,
+ "learning_rate": 0.0006,
+ "loss": 3.5497584342956543,
+ "step": 4420
+ },
+ {
+ "epoch": 61.40541721275666,
+ "grad_norm": 0.2311345487833023,
+ "learning_rate": 0.0006,
+ "loss": 3.5524582862854004,
+ "step": 4421
+ },
+ {
+ "epoch": 61.419397116644824,
+ "grad_norm": 0.2296203076839447,
+ "learning_rate": 0.0006,
+ "loss": 3.5146689414978027,
+ "step": 4422
+ },
+ {
+ "epoch": 61.43337702053299,
+ "grad_norm": 0.24848754703998566,
+ "learning_rate": 0.0006,
+ "loss": 3.489335060119629,
+ "step": 4423
+ },
+ {
+ "epoch": 61.44735692442114,
+ "grad_norm": 0.23717737197875977,
+ "learning_rate": 0.0006,
+ "loss": 3.4982404708862305,
+ "step": 4424
+ },
+ {
+ "epoch": 61.46133682830931,
+ "grad_norm": 0.21826806664466858,
+ "learning_rate": 0.0006,
+ "loss": 3.5134825706481934,
+ "step": 4425
+ },
+ {
+ "epoch": 61.47531673219746,
+ "grad_norm": 0.22878992557525635,
+ "learning_rate": 0.0006,
+ "loss": 3.512604236602783,
+ "step": 4426
+ },
+ {
+ "epoch": 61.489296636085626,
+ "grad_norm": 0.21184465289115906,
+ "learning_rate": 0.0006,
+ "loss": 3.5314245223999023,
+ "step": 4427
+ },
+ {
+ "epoch": 61.50327653997379,
+ "grad_norm": 0.2129429429769516,
+ "learning_rate": 0.0006,
+ "loss": 3.51242733001709,
+ "step": 4428
+ },
+ {
+ "epoch": 61.517256443861946,
+ "grad_norm": 0.21566109359264374,
+ "learning_rate": 0.0006,
+ "loss": 3.5287160873413086,
+ "step": 4429
+ },
+ {
+ "epoch": 61.53123634775011,
+ "grad_norm": 0.2010934203863144,
+ "learning_rate": 0.0006,
+ "loss": 3.5250844955444336,
+ "step": 4430
+ },
+ {
+ "epoch": 61.54521625163827,
+ "grad_norm": 0.1979563683271408,
+ "learning_rate": 0.0006,
+ "loss": 3.553415536880493,
+ "step": 4431
+ },
+ {
+ "epoch": 61.55919615552643,
+ "grad_norm": 0.19513480365276337,
+ "learning_rate": 0.0006,
+ "loss": 3.500551223754883,
+ "step": 4432
+ },
+ {
+ "epoch": 61.57317605941459,
+ "grad_norm": 0.19601108133792877,
+ "learning_rate": 0.0006,
+ "loss": 3.532161235809326,
+ "step": 4433
+ },
+ {
+ "epoch": 61.58715596330275,
+ "grad_norm": 0.2054651528596878,
+ "learning_rate": 0.0006,
+ "loss": 3.5360732078552246,
+ "step": 4434
+ },
+ {
+ "epoch": 61.60113586719091,
+ "grad_norm": 0.2096887230873108,
+ "learning_rate": 0.0006,
+ "loss": 3.522620916366577,
+ "step": 4435
+ },
+ {
+ "epoch": 61.615115771079076,
+ "grad_norm": 0.19664394855499268,
+ "learning_rate": 0.0006,
+ "loss": 3.5298569202423096,
+ "step": 4436
+ },
+ {
+ "epoch": 61.62909567496723,
+ "grad_norm": 0.20641925930976868,
+ "learning_rate": 0.0006,
+ "loss": 3.521233320236206,
+ "step": 4437
+ },
+ {
+ "epoch": 61.643075578855395,
+ "grad_norm": 0.2013241946697235,
+ "learning_rate": 0.0006,
+ "loss": 3.536212682723999,
+ "step": 4438
+ },
+ {
+ "epoch": 61.65705548274356,
+ "grad_norm": 0.19561146199703217,
+ "learning_rate": 0.0006,
+ "loss": 3.569584846496582,
+ "step": 4439
+ },
+ {
+ "epoch": 61.671035386631715,
+ "grad_norm": 0.2281758189201355,
+ "learning_rate": 0.0006,
+ "loss": 3.5208396911621094,
+ "step": 4440
+ },
+ {
+ "epoch": 61.68501529051988,
+ "grad_norm": 0.2387618124485016,
+ "learning_rate": 0.0006,
+ "loss": 3.5338330268859863,
+ "step": 4441
+ },
+ {
+ "epoch": 61.69899519440804,
+ "grad_norm": 0.23753441870212555,
+ "learning_rate": 0.0006,
+ "loss": 3.5454416275024414,
+ "step": 4442
+ },
+ {
+ "epoch": 61.7129750982962,
+ "grad_norm": 0.2477191686630249,
+ "learning_rate": 0.0006,
+ "loss": 3.5409836769104004,
+ "step": 4443
+ },
+ {
+ "epoch": 61.72695500218436,
+ "grad_norm": 0.25156062841415405,
+ "learning_rate": 0.0006,
+ "loss": 3.5135607719421387,
+ "step": 4444
+ },
+ {
+ "epoch": 61.74093490607252,
+ "grad_norm": 0.21422065794467926,
+ "learning_rate": 0.0006,
+ "loss": 3.5514771938323975,
+ "step": 4445
+ },
+ {
+ "epoch": 61.75491480996068,
+ "grad_norm": 0.2103811502456665,
+ "learning_rate": 0.0006,
+ "loss": 3.544037103652954,
+ "step": 4446
+ },
+ {
+ "epoch": 61.768894713848844,
+ "grad_norm": 0.21455387771129608,
+ "learning_rate": 0.0006,
+ "loss": 3.5526280403137207,
+ "step": 4447
+ },
+ {
+ "epoch": 61.782874617737,
+ "grad_norm": 0.22101432085037231,
+ "learning_rate": 0.0006,
+ "loss": 3.510197639465332,
+ "step": 4448
+ },
+ {
+ "epoch": 61.796854521625164,
+ "grad_norm": 0.2093520164489746,
+ "learning_rate": 0.0006,
+ "loss": 3.52504301071167,
+ "step": 4449
+ },
+ {
+ "epoch": 61.81083442551333,
+ "grad_norm": 0.2224605530500412,
+ "learning_rate": 0.0006,
+ "loss": 3.5590806007385254,
+ "step": 4450
+ },
+ {
+ "epoch": 61.824814329401484,
+ "grad_norm": 0.22242501378059387,
+ "learning_rate": 0.0006,
+ "loss": 3.5409610271453857,
+ "step": 4451
+ },
+ {
+ "epoch": 61.83879423328965,
+ "grad_norm": 0.22488343715667725,
+ "learning_rate": 0.0006,
+ "loss": 3.537534236907959,
+ "step": 4452
+ },
+ {
+ "epoch": 61.8527741371778,
+ "grad_norm": 0.23510107398033142,
+ "learning_rate": 0.0006,
+ "loss": 3.5561342239379883,
+ "step": 4453
+ },
+ {
+ "epoch": 61.86675404106597,
+ "grad_norm": 0.237285315990448,
+ "learning_rate": 0.0006,
+ "loss": 3.539592742919922,
+ "step": 4454
+ },
+ {
+ "epoch": 61.88073394495413,
+ "grad_norm": 0.21573765575885773,
+ "learning_rate": 0.0006,
+ "loss": 3.552250385284424,
+ "step": 4455
+ },
+ {
+ "epoch": 61.89471384884229,
+ "grad_norm": 0.20348075032234192,
+ "learning_rate": 0.0006,
+ "loss": 3.5406012535095215,
+ "step": 4456
+ },
+ {
+ "epoch": 61.90869375273045,
+ "grad_norm": 0.21306075155735016,
+ "learning_rate": 0.0006,
+ "loss": 3.504248857498169,
+ "step": 4457
+ },
+ {
+ "epoch": 61.92267365661861,
+ "grad_norm": 0.2184341996908188,
+ "learning_rate": 0.0006,
+ "loss": 3.5441558361053467,
+ "step": 4458
+ },
+ {
+ "epoch": 61.93665356050677,
+ "grad_norm": 0.20888687670230865,
+ "learning_rate": 0.0006,
+ "loss": 3.517657518386841,
+ "step": 4459
+ },
+ {
+ "epoch": 61.95063346439493,
+ "grad_norm": 0.2066143900156021,
+ "learning_rate": 0.0006,
+ "loss": 3.525796890258789,
+ "step": 4460
+ },
+ {
+ "epoch": 61.964613368283096,
+ "grad_norm": 0.1906299591064453,
+ "learning_rate": 0.0006,
+ "loss": 3.550924777984619,
+ "step": 4461
+ },
+ {
+ "epoch": 61.97859327217125,
+ "grad_norm": 0.1834334284067154,
+ "learning_rate": 0.0006,
+ "loss": 3.5818099975585938,
+ "step": 4462
+ },
+ {
+ "epoch": 61.992573176059416,
+ "grad_norm": 0.22725825011730194,
+ "learning_rate": 0.0006,
+ "loss": 3.5573811531066895,
+ "step": 4463
+ },
+ {
+ "epoch": 62.0,
+ "grad_norm": 0.29936420917510986,
+ "learning_rate": 0.0006,
+ "loss": 3.557694435119629,
+ "step": 4464
+ },
+ {
+ "epoch": 62.0,
+ "eval_loss": 3.985543966293335,
+ "eval_runtime": 46.6388,
+ "eval_samples_per_second": 52.36,
+ "eval_steps_per_second": 3.281,
+ "step": 4464
+ },
+ {
+ "epoch": 62.01397990388816,
+ "grad_norm": 0.30896103382110596,
+ "learning_rate": 0.0006,
+ "loss": 3.4991438388824463,
+ "step": 4465
+ },
+ {
+ "epoch": 62.02795980777632,
+ "grad_norm": 0.27383437752723694,
+ "learning_rate": 0.0006,
+ "loss": 3.4710259437561035,
+ "step": 4466
+ },
+ {
+ "epoch": 62.04193971166448,
+ "grad_norm": 0.24412496387958527,
+ "learning_rate": 0.0006,
+ "loss": 3.4983878135681152,
+ "step": 4467
+ },
+ {
+ "epoch": 62.05591961555265,
+ "grad_norm": 0.2649880051612854,
+ "learning_rate": 0.0006,
+ "loss": 3.5481886863708496,
+ "step": 4468
+ },
+ {
+ "epoch": 62.0698995194408,
+ "grad_norm": 0.2625769078731537,
+ "learning_rate": 0.0006,
+ "loss": 3.5114197731018066,
+ "step": 4469
+ },
+ {
+ "epoch": 62.083879423328966,
+ "grad_norm": 0.234181210398674,
+ "learning_rate": 0.0006,
+ "loss": 3.504152536392212,
+ "step": 4470
+ },
+ {
+ "epoch": 62.09785932721712,
+ "grad_norm": 0.21403342485427856,
+ "learning_rate": 0.0006,
+ "loss": 3.50738525390625,
+ "step": 4471
+ },
+ {
+ "epoch": 62.111839231105286,
+ "grad_norm": 0.22780060768127441,
+ "learning_rate": 0.0006,
+ "loss": 3.518354892730713,
+ "step": 4472
+ },
+ {
+ "epoch": 62.12581913499345,
+ "grad_norm": 0.23725424706935883,
+ "learning_rate": 0.0006,
+ "loss": 3.5227513313293457,
+ "step": 4473
+ },
+ {
+ "epoch": 62.139799038881605,
+ "grad_norm": 0.23643283545970917,
+ "learning_rate": 0.0006,
+ "loss": 3.504271984100342,
+ "step": 4474
+ },
+ {
+ "epoch": 62.15377894276977,
+ "grad_norm": 0.22513480484485626,
+ "learning_rate": 0.0006,
+ "loss": 3.5232059955596924,
+ "step": 4475
+ },
+ {
+ "epoch": 62.16775884665793,
+ "grad_norm": 0.23375700414180756,
+ "learning_rate": 0.0006,
+ "loss": 3.506519317626953,
+ "step": 4476
+ },
+ {
+ "epoch": 62.18173875054609,
+ "grad_norm": 0.24691303074359894,
+ "learning_rate": 0.0006,
+ "loss": 3.5212974548339844,
+ "step": 4477
+ },
+ {
+ "epoch": 62.19571865443425,
+ "grad_norm": 0.23466123640537262,
+ "learning_rate": 0.0006,
+ "loss": 3.5295071601867676,
+ "step": 4478
+ },
+ {
+ "epoch": 62.20969855832241,
+ "grad_norm": 0.2432340532541275,
+ "learning_rate": 0.0006,
+ "loss": 3.487830638885498,
+ "step": 4479
+ },
+ {
+ "epoch": 62.22367846221057,
+ "grad_norm": 0.24575389921665192,
+ "learning_rate": 0.0006,
+ "loss": 3.5329103469848633,
+ "step": 4480
+ },
+ {
+ "epoch": 62.237658366098735,
+ "grad_norm": 0.2441941201686859,
+ "learning_rate": 0.0006,
+ "loss": 3.5230906009674072,
+ "step": 4481
+ },
+ {
+ "epoch": 62.25163826998689,
+ "grad_norm": 0.2278154343366623,
+ "learning_rate": 0.0006,
+ "loss": 3.4919002056121826,
+ "step": 4482
+ },
+ {
+ "epoch": 62.265618173875055,
+ "grad_norm": 0.23517796397209167,
+ "learning_rate": 0.0006,
+ "loss": 3.5137887001037598,
+ "step": 4483
+ },
+ {
+ "epoch": 62.27959807776322,
+ "grad_norm": 0.2533835470676422,
+ "learning_rate": 0.0006,
+ "loss": 3.526322841644287,
+ "step": 4484
+ },
+ {
+ "epoch": 62.293577981651374,
+ "grad_norm": 0.24535894393920898,
+ "learning_rate": 0.0006,
+ "loss": 3.5060930252075195,
+ "step": 4485
+ },
+ {
+ "epoch": 62.30755788553954,
+ "grad_norm": 0.23312991857528687,
+ "learning_rate": 0.0006,
+ "loss": 3.5015740394592285,
+ "step": 4486
+ },
+ {
+ "epoch": 62.3215377894277,
+ "grad_norm": 0.2073916792869568,
+ "learning_rate": 0.0006,
+ "loss": 3.5239500999450684,
+ "step": 4487
+ },
+ {
+ "epoch": 62.33551769331586,
+ "grad_norm": 0.23528249561786652,
+ "learning_rate": 0.0006,
+ "loss": 3.4946212768554688,
+ "step": 4488
+ },
+ {
+ "epoch": 62.34949759720402,
+ "grad_norm": 0.25181272625923157,
+ "learning_rate": 0.0006,
+ "loss": 3.5492000579833984,
+ "step": 4489
+ },
+ {
+ "epoch": 62.36347750109218,
+ "grad_norm": 0.250745564699173,
+ "learning_rate": 0.0006,
+ "loss": 3.491637706756592,
+ "step": 4490
+ },
+ {
+ "epoch": 62.37745740498034,
+ "grad_norm": 0.2461264729499817,
+ "learning_rate": 0.0006,
+ "loss": 3.514125108718872,
+ "step": 4491
+ },
+ {
+ "epoch": 62.391437308868504,
+ "grad_norm": 0.2265472114086151,
+ "learning_rate": 0.0006,
+ "loss": 3.5513534545898438,
+ "step": 4492
+ },
+ {
+ "epoch": 62.40541721275666,
+ "grad_norm": 0.21937128901481628,
+ "learning_rate": 0.0006,
+ "loss": 3.541867733001709,
+ "step": 4493
+ },
+ {
+ "epoch": 62.419397116644824,
+ "grad_norm": 0.21318639814853668,
+ "learning_rate": 0.0006,
+ "loss": 3.530449867248535,
+ "step": 4494
+ },
+ {
+ "epoch": 62.43337702053299,
+ "grad_norm": 0.21287934482097626,
+ "learning_rate": 0.0006,
+ "loss": 3.51837158203125,
+ "step": 4495
+ },
+ {
+ "epoch": 62.44735692442114,
+ "grad_norm": 0.21953676640987396,
+ "learning_rate": 0.0006,
+ "loss": 3.517456293106079,
+ "step": 4496
+ },
+ {
+ "epoch": 62.46133682830931,
+ "grad_norm": 0.23475255072116852,
+ "learning_rate": 0.0006,
+ "loss": 3.493858575820923,
+ "step": 4497
+ },
+ {
+ "epoch": 62.47531673219746,
+ "grad_norm": 0.21805652976036072,
+ "learning_rate": 0.0006,
+ "loss": 3.533367872238159,
+ "step": 4498
+ },
+ {
+ "epoch": 62.489296636085626,
+ "grad_norm": 0.21494100987911224,
+ "learning_rate": 0.0006,
+ "loss": 3.509060859680176,
+ "step": 4499
+ },
+ {
+ "epoch": 62.50327653997379,
+ "grad_norm": 0.20512273907661438,
+ "learning_rate": 0.0006,
+ "loss": 3.524643659591675,
+ "step": 4500
+ },
+ {
+ "epoch": 62.517256443861946,
+ "grad_norm": 0.2046528458595276,
+ "learning_rate": 0.0006,
+ "loss": 3.520662784576416,
+ "step": 4501
+ },
+ {
+ "epoch": 62.53123634775011,
+ "grad_norm": 0.21108978986740112,
+ "learning_rate": 0.0006,
+ "loss": 3.5121688842773438,
+ "step": 4502
+ },
+ {
+ "epoch": 62.54521625163827,
+ "grad_norm": 0.19229449331760406,
+ "learning_rate": 0.0006,
+ "loss": 3.5201103687286377,
+ "step": 4503
+ },
+ {
+ "epoch": 62.55919615552643,
+ "grad_norm": 0.1984805464744568,
+ "learning_rate": 0.0006,
+ "loss": 3.546898365020752,
+ "step": 4504
+ },
+ {
+ "epoch": 62.57317605941459,
+ "grad_norm": 0.21615411341190338,
+ "learning_rate": 0.0006,
+ "loss": 3.4933600425720215,
+ "step": 4505
+ },
+ {
+ "epoch": 62.58715596330275,
+ "grad_norm": 0.22868046164512634,
+ "learning_rate": 0.0006,
+ "loss": 3.506098747253418,
+ "step": 4506
+ },
+ {
+ "epoch": 62.60113586719091,
+ "grad_norm": 0.21856851875782013,
+ "learning_rate": 0.0006,
+ "loss": 3.5790011882781982,
+ "step": 4507
+ },
+ {
+ "epoch": 62.615115771079076,
+ "grad_norm": 0.20573008060455322,
+ "learning_rate": 0.0006,
+ "loss": 3.5236854553222656,
+ "step": 4508
+ },
+ {
+ "epoch": 62.62909567496723,
+ "grad_norm": 0.21287901699543,
+ "learning_rate": 0.0006,
+ "loss": 3.5323190689086914,
+ "step": 4509
+ },
+ {
+ "epoch": 62.643075578855395,
+ "grad_norm": 0.22703637182712555,
+ "learning_rate": 0.0006,
+ "loss": 3.5300045013427734,
+ "step": 4510
+ },
+ {
+ "epoch": 62.65705548274356,
+ "grad_norm": 0.2194957137107849,
+ "learning_rate": 0.0006,
+ "loss": 3.5727438926696777,
+ "step": 4511
+ },
+ {
+ "epoch": 62.671035386631715,
+ "grad_norm": 0.22334235906600952,
+ "learning_rate": 0.0006,
+ "loss": 3.521441698074341,
+ "step": 4512
+ },
+ {
+ "epoch": 62.68501529051988,
+ "grad_norm": 0.2559402883052826,
+ "learning_rate": 0.0006,
+ "loss": 3.513730525970459,
+ "step": 4513
+ },
+ {
+ "epoch": 62.69899519440804,
+ "grad_norm": 0.25041815638542175,
+ "learning_rate": 0.0006,
+ "loss": 3.536247968673706,
+ "step": 4514
+ },
+ {
+ "epoch": 62.7129750982962,
+ "grad_norm": 0.24958674609661102,
+ "learning_rate": 0.0006,
+ "loss": 3.5245871543884277,
+ "step": 4515
+ },
+ {
+ "epoch": 62.72695500218436,
+ "grad_norm": 0.22527511417865753,
+ "learning_rate": 0.0006,
+ "loss": 3.508802652359009,
+ "step": 4516
+ },
+ {
+ "epoch": 62.74093490607252,
+ "grad_norm": 0.19455862045288086,
+ "learning_rate": 0.0006,
+ "loss": 3.5296337604522705,
+ "step": 4517
+ },
+ {
+ "epoch": 62.75491480996068,
+ "grad_norm": 0.20303845405578613,
+ "learning_rate": 0.0006,
+ "loss": 3.57499098777771,
+ "step": 4518
+ },
+ {
+ "epoch": 62.768894713848844,
+ "grad_norm": 0.20851430296897888,
+ "learning_rate": 0.0006,
+ "loss": 3.5139262676239014,
+ "step": 4519
+ },
+ {
+ "epoch": 62.782874617737,
+ "grad_norm": 0.19765593111515045,
+ "learning_rate": 0.0006,
+ "loss": 3.5398616790771484,
+ "step": 4520
+ },
+ {
+ "epoch": 62.796854521625164,
+ "grad_norm": 0.20502524077892303,
+ "learning_rate": 0.0006,
+ "loss": 3.5163207054138184,
+ "step": 4521
+ },
+ {
+ "epoch": 62.81083442551333,
+ "grad_norm": 0.20211154222488403,
+ "learning_rate": 0.0006,
+ "loss": 3.5164661407470703,
+ "step": 4522
+ },
+ {
+ "epoch": 62.824814329401484,
+ "grad_norm": 0.19798780977725983,
+ "learning_rate": 0.0006,
+ "loss": 3.533470869064331,
+ "step": 4523
+ },
+ {
+ "epoch": 62.83879423328965,
+ "grad_norm": 0.21921277046203613,
+ "learning_rate": 0.0006,
+ "loss": 3.532498598098755,
+ "step": 4524
+ },
+ {
+ "epoch": 62.8527741371778,
+ "grad_norm": 0.2352060228586197,
+ "learning_rate": 0.0006,
+ "loss": 3.5674972534179688,
+ "step": 4525
+ },
+ {
+ "epoch": 62.86675404106597,
+ "grad_norm": 0.21286381781101227,
+ "learning_rate": 0.0006,
+ "loss": 3.508051872253418,
+ "step": 4526
+ },
+ {
+ "epoch": 62.88073394495413,
+ "grad_norm": 0.21557490527629852,
+ "learning_rate": 0.0006,
+ "loss": 3.5300607681274414,
+ "step": 4527
+ },
+ {
+ "epoch": 62.89471384884229,
+ "grad_norm": 0.23020988702774048,
+ "learning_rate": 0.0006,
+ "loss": 3.508237361907959,
+ "step": 4528
+ },
+ {
+ "epoch": 62.90869375273045,
+ "grad_norm": 0.26428425312042236,
+ "learning_rate": 0.0006,
+ "loss": 3.52371883392334,
+ "step": 4529
+ },
+ {
+ "epoch": 62.92267365661861,
+ "grad_norm": 0.2568773925304413,
+ "learning_rate": 0.0006,
+ "loss": 3.5371956825256348,
+ "step": 4530
+ },
+ {
+ "epoch": 62.93665356050677,
+ "grad_norm": 0.2216598093509674,
+ "learning_rate": 0.0006,
+ "loss": 3.5286736488342285,
+ "step": 4531
+ },
+ {
+ "epoch": 62.95063346439493,
+ "grad_norm": 0.23094940185546875,
+ "learning_rate": 0.0006,
+ "loss": 3.5389769077301025,
+ "step": 4532
+ },
+ {
+ "epoch": 62.964613368283096,
+ "grad_norm": 0.23469413816928864,
+ "learning_rate": 0.0006,
+ "loss": 3.546466588973999,
+ "step": 4533
+ },
+ {
+ "epoch": 62.97859327217125,
+ "grad_norm": 0.2289242148399353,
+ "learning_rate": 0.0006,
+ "loss": 3.565002679824829,
+ "step": 4534
+ },
+ {
+ "epoch": 62.992573176059416,
+ "grad_norm": 0.262317955493927,
+ "learning_rate": 0.0006,
+ "loss": 3.5388731956481934,
+ "step": 4535
+ },
+ {
+ "epoch": 63.0,
+ "grad_norm": 0.273183137178421,
+ "learning_rate": 0.0006,
+ "loss": 3.482903003692627,
+ "step": 4536
+ },
+ {
+ "epoch": 63.0,
+ "eval_loss": 3.973074436187744,
+ "eval_runtime": 45.5476,
+ "eval_samples_per_second": 53.614,
+ "eval_steps_per_second": 3.359,
+ "step": 4536
+ },
+ {
+ "epoch": 63.01397990388816,
+ "grad_norm": 0.22226323187351227,
+ "learning_rate": 0.0006,
+ "loss": 3.483798027038574,
+ "step": 4537
+ },
+ {
+ "epoch": 63.02795980777632,
+ "grad_norm": 0.24443542957305908,
+ "learning_rate": 0.0006,
+ "loss": 3.496903419494629,
+ "step": 4538
+ },
+ {
+ "epoch": 63.04193971166448,
+ "grad_norm": 0.2508153021335602,
+ "learning_rate": 0.0006,
+ "loss": 3.5234804153442383,
+ "step": 4539
+ },
+ {
+ "epoch": 63.05591961555265,
+ "grad_norm": 0.2610569894313812,
+ "learning_rate": 0.0006,
+ "loss": 3.502870798110962,
+ "step": 4540
+ },
+ {
+ "epoch": 63.0698995194408,
+ "grad_norm": 0.27980759739875793,
+ "learning_rate": 0.0006,
+ "loss": 3.50645112991333,
+ "step": 4541
+ },
+ {
+ "epoch": 63.083879423328966,
+ "grad_norm": 0.292883038520813,
+ "learning_rate": 0.0006,
+ "loss": 3.478863000869751,
+ "step": 4542
+ },
+ {
+ "epoch": 63.09785932721712,
+ "grad_norm": 0.2593323588371277,
+ "learning_rate": 0.0006,
+ "loss": 3.506967067718506,
+ "step": 4543
+ },
+ {
+ "epoch": 63.111839231105286,
+ "grad_norm": 0.23973147571086884,
+ "learning_rate": 0.0006,
+ "loss": 3.513401746749878,
+ "step": 4544
+ },
+ {
+ "epoch": 63.12581913499345,
+ "grad_norm": 0.22731348872184753,
+ "learning_rate": 0.0006,
+ "loss": 3.4880478382110596,
+ "step": 4545
+ },
+ {
+ "epoch": 63.139799038881605,
+ "grad_norm": 0.22627407312393188,
+ "learning_rate": 0.0006,
+ "loss": 3.4975132942199707,
+ "step": 4546
+ },
+ {
+ "epoch": 63.15377894276977,
+ "grad_norm": 0.25107741355895996,
+ "learning_rate": 0.0006,
+ "loss": 3.5068140029907227,
+ "step": 4547
+ },
+ {
+ "epoch": 63.16775884665793,
+ "grad_norm": 0.23031412065029144,
+ "learning_rate": 0.0006,
+ "loss": 3.515760898590088,
+ "step": 4548
+ },
+ {
+ "epoch": 63.18173875054609,
+ "grad_norm": 0.21028949320316315,
+ "learning_rate": 0.0006,
+ "loss": 3.521303415298462,
+ "step": 4549
+ },
+ {
+ "epoch": 63.19571865443425,
+ "grad_norm": 0.22366516292095184,
+ "learning_rate": 0.0006,
+ "loss": 3.5283193588256836,
+ "step": 4550
+ },
+ {
+ "epoch": 63.20969855832241,
+ "grad_norm": 0.2176598459482193,
+ "learning_rate": 0.0006,
+ "loss": 3.490306854248047,
+ "step": 4551
+ },
+ {
+ "epoch": 63.22367846221057,
+ "grad_norm": 0.20985916256904602,
+ "learning_rate": 0.0006,
+ "loss": 3.5335614681243896,
+ "step": 4552
+ },
+ {
+ "epoch": 63.237658366098735,
+ "grad_norm": 0.2085118442773819,
+ "learning_rate": 0.0006,
+ "loss": 3.5108132362365723,
+ "step": 4553
+ },
+ {
+ "epoch": 63.25163826998689,
+ "grad_norm": 0.22644028067588806,
+ "learning_rate": 0.0006,
+ "loss": 3.4813215732574463,
+ "step": 4554
+ },
+ {
+ "epoch": 63.265618173875055,
+ "grad_norm": 0.21942120790481567,
+ "learning_rate": 0.0006,
+ "loss": 3.5310909748077393,
+ "step": 4555
+ },
+ {
+ "epoch": 63.27959807776322,
+ "grad_norm": 0.2335938662290573,
+ "learning_rate": 0.0006,
+ "loss": 3.530893564224243,
+ "step": 4556
+ },
+ {
+ "epoch": 63.293577981651374,
+ "grad_norm": 0.2409360110759735,
+ "learning_rate": 0.0006,
+ "loss": 3.5301408767700195,
+ "step": 4557
+ },
+ {
+ "epoch": 63.30755788553954,
+ "grad_norm": 0.2354922890663147,
+ "learning_rate": 0.0006,
+ "loss": 3.5211031436920166,
+ "step": 4558
+ },
+ {
+ "epoch": 63.3215377894277,
+ "grad_norm": 0.23376664519309998,
+ "learning_rate": 0.0006,
+ "loss": 3.538367509841919,
+ "step": 4559
+ },
+ {
+ "epoch": 63.33551769331586,
+ "grad_norm": 0.25319674611091614,
+ "learning_rate": 0.0006,
+ "loss": 3.494905471801758,
+ "step": 4560
+ },
+ {
+ "epoch": 63.34949759720402,
+ "grad_norm": 0.24088945984840393,
+ "learning_rate": 0.0006,
+ "loss": 3.5189433097839355,
+ "step": 4561
+ },
+ {
+ "epoch": 63.36347750109218,
+ "grad_norm": 0.2373911589384079,
+ "learning_rate": 0.0006,
+ "loss": 3.4956908226013184,
+ "step": 4562
+ },
+ {
+ "epoch": 63.37745740498034,
+ "grad_norm": 0.2590023875236511,
+ "learning_rate": 0.0006,
+ "loss": 3.511784076690674,
+ "step": 4563
+ },
+ {
+ "epoch": 63.391437308868504,
+ "grad_norm": 0.2600874900817871,
+ "learning_rate": 0.0006,
+ "loss": 3.478942394256592,
+ "step": 4564
+ },
+ {
+ "epoch": 63.40541721275666,
+ "grad_norm": 0.24018031358718872,
+ "learning_rate": 0.0006,
+ "loss": 3.521773338317871,
+ "step": 4565
+ },
+ {
+ "epoch": 63.419397116644824,
+ "grad_norm": 0.2552972435951233,
+ "learning_rate": 0.0006,
+ "loss": 3.4893441200256348,
+ "step": 4566
+ },
+ {
+ "epoch": 63.43337702053299,
+ "grad_norm": 0.26195958256721497,
+ "learning_rate": 0.0006,
+ "loss": 3.5366687774658203,
+ "step": 4567
+ },
+ {
+ "epoch": 63.44735692442114,
+ "grad_norm": 0.24390678107738495,
+ "learning_rate": 0.0006,
+ "loss": 3.4948301315307617,
+ "step": 4568
+ },
+ {
+ "epoch": 63.46133682830931,
+ "grad_norm": 0.21185952425003052,
+ "learning_rate": 0.0006,
+ "loss": 3.486267566680908,
+ "step": 4569
+ },
+ {
+ "epoch": 63.47531673219746,
+ "grad_norm": 0.21932153403759003,
+ "learning_rate": 0.0006,
+ "loss": 3.499481201171875,
+ "step": 4570
+ },
+ {
+ "epoch": 63.489296636085626,
+ "grad_norm": 0.22503717243671417,
+ "learning_rate": 0.0006,
+ "loss": 3.4932126998901367,
+ "step": 4571
+ },
+ {
+ "epoch": 63.50327653997379,
+ "grad_norm": 0.23853568732738495,
+ "learning_rate": 0.0006,
+ "loss": 3.4893674850463867,
+ "step": 4572
+ },
+ {
+ "epoch": 63.517256443861946,
+ "grad_norm": 0.2531817853450775,
+ "learning_rate": 0.0006,
+ "loss": 3.5391907691955566,
+ "step": 4573
+ },
+ {
+ "epoch": 63.53123634775011,
+ "grad_norm": 0.23776786029338837,
+ "learning_rate": 0.0006,
+ "loss": 3.5097427368164062,
+ "step": 4574
+ },
+ {
+ "epoch": 63.54521625163827,
+ "grad_norm": 0.24308739602565765,
+ "learning_rate": 0.0006,
+ "loss": 3.4988107681274414,
+ "step": 4575
+ },
+ {
+ "epoch": 63.55919615552643,
+ "grad_norm": 0.24214281141757965,
+ "learning_rate": 0.0006,
+ "loss": 3.506901502609253,
+ "step": 4576
+ },
+ {
+ "epoch": 63.57317605941459,
+ "grad_norm": 0.21378614008426666,
+ "learning_rate": 0.0006,
+ "loss": 3.54103684425354,
+ "step": 4577
+ },
+ {
+ "epoch": 63.58715596330275,
+ "grad_norm": 0.21135152876377106,
+ "learning_rate": 0.0006,
+ "loss": 3.534852981567383,
+ "step": 4578
+ },
+ {
+ "epoch": 63.60113586719091,
+ "grad_norm": 0.2335089147090912,
+ "learning_rate": 0.0006,
+ "loss": 3.542457342147827,
+ "step": 4579
+ },
+ {
+ "epoch": 63.615115771079076,
+ "grad_norm": 0.23693214356899261,
+ "learning_rate": 0.0006,
+ "loss": 3.4781997203826904,
+ "step": 4580
+ },
+ {
+ "epoch": 63.62909567496723,
+ "grad_norm": 0.21237023174762726,
+ "learning_rate": 0.0006,
+ "loss": 3.4980621337890625,
+ "step": 4581
+ },
+ {
+ "epoch": 63.643075578855395,
+ "grad_norm": 0.20930461585521698,
+ "learning_rate": 0.0006,
+ "loss": 3.5177974700927734,
+ "step": 4582
+ },
+ {
+ "epoch": 63.65705548274356,
+ "grad_norm": 0.22565403580665588,
+ "learning_rate": 0.0006,
+ "loss": 3.5385828018188477,
+ "step": 4583
+ },
+ {
+ "epoch": 63.671035386631715,
+ "grad_norm": 0.22187408804893494,
+ "learning_rate": 0.0006,
+ "loss": 3.5461559295654297,
+ "step": 4584
+ },
+ {
+ "epoch": 63.68501529051988,
+ "grad_norm": 0.23496168851852417,
+ "learning_rate": 0.0006,
+ "loss": 3.526822090148926,
+ "step": 4585
+ },
+ {
+ "epoch": 63.69899519440804,
+ "grad_norm": 0.2432301938533783,
+ "learning_rate": 0.0006,
+ "loss": 3.5248091220855713,
+ "step": 4586
+ },
+ {
+ "epoch": 63.7129750982962,
+ "grad_norm": 0.22797444462776184,
+ "learning_rate": 0.0006,
+ "loss": 3.5276098251342773,
+ "step": 4587
+ },
+ {
+ "epoch": 63.72695500218436,
+ "grad_norm": 0.2332911491394043,
+ "learning_rate": 0.0006,
+ "loss": 3.5454764366149902,
+ "step": 4588
+ },
+ {
+ "epoch": 63.74093490607252,
+ "grad_norm": 0.23016804456710815,
+ "learning_rate": 0.0006,
+ "loss": 3.519209384918213,
+ "step": 4589
+ },
+ {
+ "epoch": 63.75491480996068,
+ "grad_norm": 0.2160855233669281,
+ "learning_rate": 0.0006,
+ "loss": 3.536961317062378,
+ "step": 4590
+ },
+ {
+ "epoch": 63.768894713848844,
+ "grad_norm": 0.25935620069503784,
+ "learning_rate": 0.0006,
+ "loss": 3.5653820037841797,
+ "step": 4591
+ },
+ {
+ "epoch": 63.782874617737,
+ "grad_norm": 0.26625221967697144,
+ "learning_rate": 0.0006,
+ "loss": 3.5492172241210938,
+ "step": 4592
+ },
+ {
+ "epoch": 63.796854521625164,
+ "grad_norm": 0.25456854701042175,
+ "learning_rate": 0.0006,
+ "loss": 3.516575336456299,
+ "step": 4593
+ },
+ {
+ "epoch": 63.81083442551333,
+ "grad_norm": 0.26114824414253235,
+ "learning_rate": 0.0006,
+ "loss": 3.5429139137268066,
+ "step": 4594
+ },
+ {
+ "epoch": 63.824814329401484,
+ "grad_norm": 0.27836596965789795,
+ "learning_rate": 0.0006,
+ "loss": 3.5567727088928223,
+ "step": 4595
+ },
+ {
+ "epoch": 63.83879423328965,
+ "grad_norm": 0.2674464285373688,
+ "learning_rate": 0.0006,
+ "loss": 3.5093564987182617,
+ "step": 4596
+ },
+ {
+ "epoch": 63.8527741371778,
+ "grad_norm": 0.27393433451652527,
+ "learning_rate": 0.0006,
+ "loss": 3.5500247478485107,
+ "step": 4597
+ },
+ {
+ "epoch": 63.86675404106597,
+ "grad_norm": 0.30968594551086426,
+ "learning_rate": 0.0006,
+ "loss": 3.539085865020752,
+ "step": 4598
+ },
+ {
+ "epoch": 63.88073394495413,
+ "grad_norm": 0.279060423374176,
+ "learning_rate": 0.0006,
+ "loss": 3.517862319946289,
+ "step": 4599
+ },
+ {
+ "epoch": 63.89471384884229,
+ "grad_norm": 0.22436867654323578,
+ "learning_rate": 0.0006,
+ "loss": 3.5714004039764404,
+ "step": 4600
+ },
+ {
+ "epoch": 63.90869375273045,
+ "grad_norm": 0.22473126649856567,
+ "learning_rate": 0.0006,
+ "loss": 3.5212388038635254,
+ "step": 4601
+ },
+ {
+ "epoch": 63.92267365661861,
+ "grad_norm": 0.2802466154098511,
+ "learning_rate": 0.0006,
+ "loss": 3.5112411975860596,
+ "step": 4602
+ },
+ {
+ "epoch": 63.93665356050677,
+ "grad_norm": 0.29435867071151733,
+ "learning_rate": 0.0006,
+ "loss": 3.554875373840332,
+ "step": 4603
+ },
+ {
+ "epoch": 63.95063346439493,
+ "grad_norm": 0.24592025578022003,
+ "learning_rate": 0.0006,
+ "loss": 3.5593767166137695,
+ "step": 4604
+ },
+ {
+ "epoch": 63.964613368283096,
+ "grad_norm": 0.25918886065483093,
+ "learning_rate": 0.0006,
+ "loss": 3.5020017623901367,
+ "step": 4605
+ },
+ {
+ "epoch": 63.97859327217125,
+ "grad_norm": 0.24892419576644897,
+ "learning_rate": 0.0006,
+ "loss": 3.520456314086914,
+ "step": 4606
+ },
+ {
+ "epoch": 63.992573176059416,
+ "grad_norm": 0.24131213128566742,
+ "learning_rate": 0.0006,
+ "loss": 3.5576815605163574,
+ "step": 4607
+ },
+ {
+ "epoch": 64.0,
+ "grad_norm": 0.2348976731300354,
+ "learning_rate": 0.0006,
+ "loss": 3.524242401123047,
+ "step": 4608
+ },
+ {
+ "epoch": 64.0,
+ "eval_loss": 3.972158670425415,
+ "eval_runtime": 45.883,
+ "eval_samples_per_second": 53.222,
+ "eval_steps_per_second": 3.335,
+ "step": 4608
+ },
+ {
+ "epoch": 64.01397990388816,
+ "grad_norm": 0.24034473299980164,
+ "learning_rate": 0.0006,
+ "loss": 3.463156223297119,
+ "step": 4609
+ },
+ {
+ "epoch": 64.02795980777633,
+ "grad_norm": 0.28686341643333435,
+ "learning_rate": 0.0006,
+ "loss": 3.5137135982513428,
+ "step": 4610
+ },
+ {
+ "epoch": 64.04193971166448,
+ "grad_norm": 0.30763131380081177,
+ "learning_rate": 0.0006,
+ "loss": 3.490610361099243,
+ "step": 4611
+ },
+ {
+ "epoch": 64.05591961555264,
+ "grad_norm": 0.2775363624095917,
+ "learning_rate": 0.0006,
+ "loss": 3.516378879547119,
+ "step": 4612
+ },
+ {
+ "epoch": 64.06989951944081,
+ "grad_norm": 0.2643020749092102,
+ "learning_rate": 0.0006,
+ "loss": 3.511389970779419,
+ "step": 4613
+ },
+ {
+ "epoch": 64.08387942332897,
+ "grad_norm": 0.2859032452106476,
+ "learning_rate": 0.0006,
+ "loss": 3.5125572681427,
+ "step": 4614
+ },
+ {
+ "epoch": 64.09785932721712,
+ "grad_norm": 0.28378766775131226,
+ "learning_rate": 0.0006,
+ "loss": 3.4953627586364746,
+ "step": 4615
+ },
+ {
+ "epoch": 64.1118392311053,
+ "grad_norm": 0.2809223234653473,
+ "learning_rate": 0.0006,
+ "loss": 3.5114667415618896,
+ "step": 4616
+ },
+ {
+ "epoch": 64.12581913499345,
+ "grad_norm": 0.251823753118515,
+ "learning_rate": 0.0006,
+ "loss": 3.529876232147217,
+ "step": 4617
+ },
+ {
+ "epoch": 64.1397990388816,
+ "grad_norm": 0.236602321267128,
+ "learning_rate": 0.0006,
+ "loss": 3.5067150592803955,
+ "step": 4618
+ },
+ {
+ "epoch": 64.15377894276976,
+ "grad_norm": 0.2317773550748825,
+ "learning_rate": 0.0006,
+ "loss": 3.5166091918945312,
+ "step": 4619
+ },
+ {
+ "epoch": 64.16775884665793,
+ "grad_norm": 0.2237853854894638,
+ "learning_rate": 0.0006,
+ "loss": 3.492464065551758,
+ "step": 4620
+ },
+ {
+ "epoch": 64.18173875054609,
+ "grad_norm": 0.22309459745883942,
+ "learning_rate": 0.0006,
+ "loss": 3.4892983436584473,
+ "step": 4621
+ },
+ {
+ "epoch": 64.19571865443424,
+ "grad_norm": 0.21838971972465515,
+ "learning_rate": 0.0006,
+ "loss": 3.528764486312866,
+ "step": 4622
+ },
+ {
+ "epoch": 64.20969855832242,
+ "grad_norm": 0.22414161264896393,
+ "learning_rate": 0.0006,
+ "loss": 3.506270170211792,
+ "step": 4623
+ },
+ {
+ "epoch": 64.22367846221057,
+ "grad_norm": 0.22375065088272095,
+ "learning_rate": 0.0006,
+ "loss": 3.4844071865081787,
+ "step": 4624
+ },
+ {
+ "epoch": 64.23765836609873,
+ "grad_norm": 0.2091676890850067,
+ "learning_rate": 0.0006,
+ "loss": 3.4983415603637695,
+ "step": 4625
+ },
+ {
+ "epoch": 64.2516382699869,
+ "grad_norm": 0.22184209525585175,
+ "learning_rate": 0.0006,
+ "loss": 3.4846835136413574,
+ "step": 4626
+ },
+ {
+ "epoch": 64.26561817387505,
+ "grad_norm": 0.21549198031425476,
+ "learning_rate": 0.0006,
+ "loss": 3.4933011531829834,
+ "step": 4627
+ },
+ {
+ "epoch": 64.27959807776321,
+ "grad_norm": 0.21613609790802002,
+ "learning_rate": 0.0006,
+ "loss": 3.523514986038208,
+ "step": 4628
+ },
+ {
+ "epoch": 64.29357798165138,
+ "grad_norm": 0.22394488751888275,
+ "learning_rate": 0.0006,
+ "loss": 3.512820243835449,
+ "step": 4629
+ },
+ {
+ "epoch": 64.30755788553954,
+ "grad_norm": 0.22381016612052917,
+ "learning_rate": 0.0006,
+ "loss": 3.4967026710510254,
+ "step": 4630
+ },
+ {
+ "epoch": 64.3215377894277,
+ "grad_norm": 0.22533059120178223,
+ "learning_rate": 0.0006,
+ "loss": 3.5051097869873047,
+ "step": 4631
+ },
+ {
+ "epoch": 64.33551769331586,
+ "grad_norm": 0.23043590784072876,
+ "learning_rate": 0.0006,
+ "loss": 3.4784820079803467,
+ "step": 4632
+ },
+ {
+ "epoch": 64.34949759720402,
+ "grad_norm": 0.20840506255626678,
+ "learning_rate": 0.0006,
+ "loss": 3.496629238128662,
+ "step": 4633
+ },
+ {
+ "epoch": 64.36347750109218,
+ "grad_norm": 0.20293036103248596,
+ "learning_rate": 0.0006,
+ "loss": 3.500199317932129,
+ "step": 4634
+ },
+ {
+ "epoch": 64.37745740498035,
+ "grad_norm": 0.20510733127593994,
+ "learning_rate": 0.0006,
+ "loss": 3.4943113327026367,
+ "step": 4635
+ },
+ {
+ "epoch": 64.3914373088685,
+ "grad_norm": 0.21207642555236816,
+ "learning_rate": 0.0006,
+ "loss": 3.5024590492248535,
+ "step": 4636
+ },
+ {
+ "epoch": 64.40541721275666,
+ "grad_norm": 0.19878660142421722,
+ "learning_rate": 0.0006,
+ "loss": 3.5065855979919434,
+ "step": 4637
+ },
+ {
+ "epoch": 64.41939711664482,
+ "grad_norm": 0.22502431273460388,
+ "learning_rate": 0.0006,
+ "loss": 3.527764081954956,
+ "step": 4638
+ },
+ {
+ "epoch": 64.43337702053299,
+ "grad_norm": 0.2167922705411911,
+ "learning_rate": 0.0006,
+ "loss": 3.5075361728668213,
+ "step": 4639
+ },
+ {
+ "epoch": 64.44735692442114,
+ "grad_norm": 0.21200154721736908,
+ "learning_rate": 0.0006,
+ "loss": 3.5339698791503906,
+ "step": 4640
+ },
+ {
+ "epoch": 64.4613368283093,
+ "grad_norm": 0.22495608031749725,
+ "learning_rate": 0.0006,
+ "loss": 3.5342869758605957,
+ "step": 4641
+ },
+ {
+ "epoch": 64.47531673219747,
+ "grad_norm": 0.21426217257976532,
+ "learning_rate": 0.0006,
+ "loss": 3.5065689086914062,
+ "step": 4642
+ },
+ {
+ "epoch": 64.48929663608563,
+ "grad_norm": 0.19980023801326752,
+ "learning_rate": 0.0006,
+ "loss": 3.508183002471924,
+ "step": 4643
+ },
+ {
+ "epoch": 64.50327653997378,
+ "grad_norm": 0.2054566591978073,
+ "learning_rate": 0.0006,
+ "loss": 3.5098650455474854,
+ "step": 4644
+ },
+ {
+ "epoch": 64.51725644386195,
+ "grad_norm": 0.2038603276014328,
+ "learning_rate": 0.0006,
+ "loss": 3.517388105392456,
+ "step": 4645
+ },
+ {
+ "epoch": 64.53123634775011,
+ "grad_norm": 0.22438357770442963,
+ "learning_rate": 0.0006,
+ "loss": 3.5215954780578613,
+ "step": 4646
+ },
+ {
+ "epoch": 64.54521625163827,
+ "grad_norm": 0.23507612943649292,
+ "learning_rate": 0.0006,
+ "loss": 3.488262176513672,
+ "step": 4647
+ },
+ {
+ "epoch": 64.55919615552644,
+ "grad_norm": 0.21669664978981018,
+ "learning_rate": 0.0006,
+ "loss": 3.4945027828216553,
+ "step": 4648
+ },
+ {
+ "epoch": 64.57317605941459,
+ "grad_norm": 0.20035886764526367,
+ "learning_rate": 0.0006,
+ "loss": 3.516415596008301,
+ "step": 4649
+ },
+ {
+ "epoch": 64.58715596330275,
+ "grad_norm": 0.21818110346794128,
+ "learning_rate": 0.0006,
+ "loss": 3.4944982528686523,
+ "step": 4650
+ },
+ {
+ "epoch": 64.60113586719092,
+ "grad_norm": 0.20609644055366516,
+ "learning_rate": 0.0006,
+ "loss": 3.4914844036102295,
+ "step": 4651
+ },
+ {
+ "epoch": 64.61511577107908,
+ "grad_norm": 0.21921353042125702,
+ "learning_rate": 0.0006,
+ "loss": 3.5292391777038574,
+ "step": 4652
+ },
+ {
+ "epoch": 64.62909567496723,
+ "grad_norm": 0.23570363223552704,
+ "learning_rate": 0.0006,
+ "loss": 3.5353617668151855,
+ "step": 4653
+ },
+ {
+ "epoch": 64.6430755788554,
+ "grad_norm": 0.20933061838150024,
+ "learning_rate": 0.0006,
+ "loss": 3.524240016937256,
+ "step": 4654
+ },
+ {
+ "epoch": 64.65705548274356,
+ "grad_norm": 0.22739441692829132,
+ "learning_rate": 0.0006,
+ "loss": 3.529047966003418,
+ "step": 4655
+ },
+ {
+ "epoch": 64.67103538663171,
+ "grad_norm": 0.22208894789218903,
+ "learning_rate": 0.0006,
+ "loss": 3.5492024421691895,
+ "step": 4656
+ },
+ {
+ "epoch": 64.68501529051987,
+ "grad_norm": 0.23031534254550934,
+ "learning_rate": 0.0006,
+ "loss": 3.532979726791382,
+ "step": 4657
+ },
+ {
+ "epoch": 64.69899519440804,
+ "grad_norm": 0.25316348671913147,
+ "learning_rate": 0.0006,
+ "loss": 3.5105819702148438,
+ "step": 4658
+ },
+ {
+ "epoch": 64.7129750982962,
+ "grad_norm": 0.23601582646369934,
+ "learning_rate": 0.0006,
+ "loss": 3.5270726680755615,
+ "step": 4659
+ },
+ {
+ "epoch": 64.72695500218435,
+ "grad_norm": 0.20309361815452576,
+ "learning_rate": 0.0006,
+ "loss": 3.5072035789489746,
+ "step": 4660
+ },
+ {
+ "epoch": 64.74093490607252,
+ "grad_norm": 0.21525762975215912,
+ "learning_rate": 0.0006,
+ "loss": 3.531649112701416,
+ "step": 4661
+ },
+ {
+ "epoch": 64.75491480996068,
+ "grad_norm": 0.2262735813856125,
+ "learning_rate": 0.0006,
+ "loss": 3.5053927898406982,
+ "step": 4662
+ },
+ {
+ "epoch": 64.76889471384884,
+ "grad_norm": 0.2223973125219345,
+ "learning_rate": 0.0006,
+ "loss": 3.5400562286376953,
+ "step": 4663
+ },
+ {
+ "epoch": 64.78287461773701,
+ "grad_norm": 0.22822168469429016,
+ "learning_rate": 0.0006,
+ "loss": 3.502312421798706,
+ "step": 4664
+ },
+ {
+ "epoch": 64.79685452162516,
+ "grad_norm": 0.2337028533220291,
+ "learning_rate": 0.0006,
+ "loss": 3.524888038635254,
+ "step": 4665
+ },
+ {
+ "epoch": 64.81083442551332,
+ "grad_norm": 0.22423268854618073,
+ "learning_rate": 0.0006,
+ "loss": 3.5380213260650635,
+ "step": 4666
+ },
+ {
+ "epoch": 64.82481432940149,
+ "grad_norm": 0.21429643034934998,
+ "learning_rate": 0.0006,
+ "loss": 3.5499157905578613,
+ "step": 4667
+ },
+ {
+ "epoch": 64.83879423328965,
+ "grad_norm": 0.22421850264072418,
+ "learning_rate": 0.0006,
+ "loss": 3.5034070014953613,
+ "step": 4668
+ },
+ {
+ "epoch": 64.8527741371778,
+ "grad_norm": 0.21886403858661652,
+ "learning_rate": 0.0006,
+ "loss": 3.5276694297790527,
+ "step": 4669
+ },
+ {
+ "epoch": 64.86675404106597,
+ "grad_norm": 0.2404339462518692,
+ "learning_rate": 0.0006,
+ "loss": 3.515219211578369,
+ "step": 4670
+ },
+ {
+ "epoch": 64.88073394495413,
+ "grad_norm": 0.2837470769882202,
+ "learning_rate": 0.0006,
+ "loss": 3.561008930206299,
+ "step": 4671
+ },
+ {
+ "epoch": 64.89471384884229,
+ "grad_norm": 0.3101402223110199,
+ "learning_rate": 0.0006,
+ "loss": 3.556626319885254,
+ "step": 4672
+ },
+ {
+ "epoch": 64.90869375273044,
+ "grad_norm": 0.30606821179389954,
+ "learning_rate": 0.0006,
+ "loss": 3.540271282196045,
+ "step": 4673
+ },
+ {
+ "epoch": 64.92267365661861,
+ "grad_norm": 0.2715052664279938,
+ "learning_rate": 0.0006,
+ "loss": 3.5128841400146484,
+ "step": 4674
+ },
+ {
+ "epoch": 64.93665356050677,
+ "grad_norm": 0.24061815440654755,
+ "learning_rate": 0.0006,
+ "loss": 3.554208278656006,
+ "step": 4675
+ },
+ {
+ "epoch": 64.95063346439493,
+ "grad_norm": 0.23540185391902924,
+ "learning_rate": 0.0006,
+ "loss": 3.544139862060547,
+ "step": 4676
+ },
+ {
+ "epoch": 64.9646133682831,
+ "grad_norm": 0.26172906160354614,
+ "learning_rate": 0.0006,
+ "loss": 3.567110061645508,
+ "step": 4677
+ },
+ {
+ "epoch": 64.97859327217125,
+ "grad_norm": 0.2766035795211792,
+ "learning_rate": 0.0006,
+ "loss": 3.494391918182373,
+ "step": 4678
+ },
+ {
+ "epoch": 64.99257317605941,
+ "grad_norm": 0.2400948703289032,
+ "learning_rate": 0.0006,
+ "loss": 3.5130133628845215,
+ "step": 4679
+ },
+ {
+ "epoch": 65.0,
+ "grad_norm": 0.24790917336940765,
+ "learning_rate": 0.0006,
+ "loss": 3.5481390953063965,
+ "step": 4680
+ },
+ {
+ "epoch": 65.0,
+ "eval_loss": 3.976747989654541,
+ "eval_runtime": 46.3575,
+ "eval_samples_per_second": 52.678,
+ "eval_steps_per_second": 3.3,
+ "step": 4680
+ },
+ {
+ "epoch": 65.01397990388816,
+ "grad_norm": 0.22275416553020477,
+ "learning_rate": 0.0006,
+ "loss": 3.4832773208618164,
+ "step": 4681
+ },
+ {
+ "epoch": 65.02795980777633,
+ "grad_norm": 0.23779742419719696,
+ "learning_rate": 0.0006,
+ "loss": 3.5049266815185547,
+ "step": 4682
+ },
+ {
+ "epoch": 65.04193971166448,
+ "grad_norm": 0.2394440770149231,
+ "learning_rate": 0.0006,
+ "loss": 3.5335357189178467,
+ "step": 4683
+ },
+ {
+ "epoch": 65.05591961555264,
+ "grad_norm": 0.22160623967647552,
+ "learning_rate": 0.0006,
+ "loss": 3.5066094398498535,
+ "step": 4684
+ },
+ {
+ "epoch": 65.06989951944081,
+ "grad_norm": 0.22387197613716125,
+ "learning_rate": 0.0006,
+ "loss": 3.474155902862549,
+ "step": 4685
+ },
+ {
+ "epoch": 65.08387942332897,
+ "grad_norm": 0.24355316162109375,
+ "learning_rate": 0.0006,
+ "loss": 3.4905145168304443,
+ "step": 4686
+ },
+ {
+ "epoch": 65.09785932721712,
+ "grad_norm": 0.25801026821136475,
+ "learning_rate": 0.0006,
+ "loss": 3.50339937210083,
+ "step": 4687
+ },
+ {
+ "epoch": 65.1118392311053,
+ "grad_norm": 0.26155906915664673,
+ "learning_rate": 0.0006,
+ "loss": 3.523623466491699,
+ "step": 4688
+ },
+ {
+ "epoch": 65.12581913499345,
+ "grad_norm": 0.2512831389904022,
+ "learning_rate": 0.0006,
+ "loss": 3.490898609161377,
+ "step": 4689
+ },
+ {
+ "epoch": 65.1397990388816,
+ "grad_norm": 0.25024810433387756,
+ "learning_rate": 0.0006,
+ "loss": 3.4742162227630615,
+ "step": 4690
+ },
+ {
+ "epoch": 65.15377894276976,
+ "grad_norm": 0.27639806270599365,
+ "learning_rate": 0.0006,
+ "loss": 3.503298282623291,
+ "step": 4691
+ },
+ {
+ "epoch": 65.16775884665793,
+ "grad_norm": 0.2543538510799408,
+ "learning_rate": 0.0006,
+ "loss": 3.4785704612731934,
+ "step": 4692
+ },
+ {
+ "epoch": 65.18173875054609,
+ "grad_norm": 0.24148274958133698,
+ "learning_rate": 0.0006,
+ "loss": 3.48526668548584,
+ "step": 4693
+ },
+ {
+ "epoch": 65.19571865443424,
+ "grad_norm": 0.2161206603050232,
+ "learning_rate": 0.0006,
+ "loss": 3.477449417114258,
+ "step": 4694
+ },
+ {
+ "epoch": 65.20969855832242,
+ "grad_norm": 0.21417468786239624,
+ "learning_rate": 0.0006,
+ "loss": 3.5010929107666016,
+ "step": 4695
+ },
+ {
+ "epoch": 65.22367846221057,
+ "grad_norm": 0.22810059785842896,
+ "learning_rate": 0.0006,
+ "loss": 3.4384589195251465,
+ "step": 4696
+ },
+ {
+ "epoch": 65.23765836609873,
+ "grad_norm": 0.23555037379264832,
+ "learning_rate": 0.0006,
+ "loss": 3.4912073612213135,
+ "step": 4697
+ },
+ {
+ "epoch": 65.2516382699869,
+ "grad_norm": 0.2628633975982666,
+ "learning_rate": 0.0006,
+ "loss": 3.4763574600219727,
+ "step": 4698
+ },
+ {
+ "epoch": 65.26561817387505,
+ "grad_norm": 0.2515856921672821,
+ "learning_rate": 0.0006,
+ "loss": 3.480222463607788,
+ "step": 4699
+ },
+ {
+ "epoch": 65.27959807776321,
+ "grad_norm": 0.19862835109233856,
+ "learning_rate": 0.0006,
+ "loss": 3.510263204574585,
+ "step": 4700
+ },
+ {
+ "epoch": 65.29357798165138,
+ "grad_norm": 0.22558043897151947,
+ "learning_rate": 0.0006,
+ "loss": 3.4952306747436523,
+ "step": 4701
+ },
+ {
+ "epoch": 65.30755788553954,
+ "grad_norm": 0.2351200133562088,
+ "learning_rate": 0.0006,
+ "loss": 3.5010221004486084,
+ "step": 4702
+ },
+ {
+ "epoch": 65.3215377894277,
+ "grad_norm": 0.21748903393745422,
+ "learning_rate": 0.0006,
+ "loss": 3.5186777114868164,
+ "step": 4703
+ },
+ {
+ "epoch": 65.33551769331586,
+ "grad_norm": 0.2073124349117279,
+ "learning_rate": 0.0006,
+ "loss": 3.5397891998291016,
+ "step": 4704
+ },
+ {
+ "epoch": 65.34949759720402,
+ "grad_norm": 0.1948464810848236,
+ "learning_rate": 0.0006,
+ "loss": 3.5413217544555664,
+ "step": 4705
+ },
+ {
+ "epoch": 65.36347750109218,
+ "grad_norm": 0.19741199910640717,
+ "learning_rate": 0.0006,
+ "loss": 3.515199899673462,
+ "step": 4706
+ },
+ {
+ "epoch": 65.37745740498035,
+ "grad_norm": 0.22518441081047058,
+ "learning_rate": 0.0006,
+ "loss": 3.512284278869629,
+ "step": 4707
+ },
+ {
+ "epoch": 65.3914373088685,
+ "grad_norm": 0.24368613958358765,
+ "learning_rate": 0.0006,
+ "loss": 3.528355121612549,
+ "step": 4708
+ },
+ {
+ "epoch": 65.40541721275666,
+ "grad_norm": 0.21857064962387085,
+ "learning_rate": 0.0006,
+ "loss": 3.494401454925537,
+ "step": 4709
+ },
+ {
+ "epoch": 65.41939711664482,
+ "grad_norm": 0.2199285924434662,
+ "learning_rate": 0.0006,
+ "loss": 3.49814772605896,
+ "step": 4710
+ },
+ {
+ "epoch": 65.43337702053299,
+ "grad_norm": 0.23801206052303314,
+ "learning_rate": 0.0006,
+ "loss": 3.4678444862365723,
+ "step": 4711
+ },
+ {
+ "epoch": 65.44735692442114,
+ "grad_norm": 0.231369748711586,
+ "learning_rate": 0.0006,
+ "loss": 3.501521587371826,
+ "step": 4712
+ },
+ {
+ "epoch": 65.4613368283093,
+ "grad_norm": 0.20447038114070892,
+ "learning_rate": 0.0006,
+ "loss": 3.508510112762451,
+ "step": 4713
+ },
+ {
+ "epoch": 65.47531673219747,
+ "grad_norm": 0.21331779658794403,
+ "learning_rate": 0.0006,
+ "loss": 3.498544692993164,
+ "step": 4714
+ },
+ {
+ "epoch": 65.48929663608563,
+ "grad_norm": 0.2365437150001526,
+ "learning_rate": 0.0006,
+ "loss": 3.4972000122070312,
+ "step": 4715
+ },
+ {
+ "epoch": 65.50327653997378,
+ "grad_norm": 0.2236112356185913,
+ "learning_rate": 0.0006,
+ "loss": 3.5397965908050537,
+ "step": 4716
+ },
+ {
+ "epoch": 65.51725644386195,
+ "grad_norm": 0.20595021545886993,
+ "learning_rate": 0.0006,
+ "loss": 3.532902717590332,
+ "step": 4717
+ },
+ {
+ "epoch": 65.53123634775011,
+ "grad_norm": 0.2043730616569519,
+ "learning_rate": 0.0006,
+ "loss": 3.5136585235595703,
+ "step": 4718
+ },
+ {
+ "epoch": 65.54521625163827,
+ "grad_norm": 0.21925127506256104,
+ "learning_rate": 0.0006,
+ "loss": 3.526590347290039,
+ "step": 4719
+ },
+ {
+ "epoch": 65.55919615552644,
+ "grad_norm": 0.21580299735069275,
+ "learning_rate": 0.0006,
+ "loss": 3.530301332473755,
+ "step": 4720
+ },
+ {
+ "epoch": 65.57317605941459,
+ "grad_norm": 0.2296830266714096,
+ "learning_rate": 0.0006,
+ "loss": 3.527580976486206,
+ "step": 4721
+ },
+ {
+ "epoch": 65.58715596330275,
+ "grad_norm": 0.21846120059490204,
+ "learning_rate": 0.0006,
+ "loss": 3.524075746536255,
+ "step": 4722
+ },
+ {
+ "epoch": 65.60113586719092,
+ "grad_norm": 0.19835807383060455,
+ "learning_rate": 0.0006,
+ "loss": 3.4560012817382812,
+ "step": 4723
+ },
+ {
+ "epoch": 65.61511577107908,
+ "grad_norm": 0.20501157641410828,
+ "learning_rate": 0.0006,
+ "loss": 3.508017063140869,
+ "step": 4724
+ },
+ {
+ "epoch": 65.62909567496723,
+ "grad_norm": 0.21347478032112122,
+ "learning_rate": 0.0006,
+ "loss": 3.5479536056518555,
+ "step": 4725
+ },
+ {
+ "epoch": 65.6430755788554,
+ "grad_norm": 0.19286541640758514,
+ "learning_rate": 0.0006,
+ "loss": 3.537360906600952,
+ "step": 4726
+ },
+ {
+ "epoch": 65.65705548274356,
+ "grad_norm": 0.19364185631275177,
+ "learning_rate": 0.0006,
+ "loss": 3.5186867713928223,
+ "step": 4727
+ },
+ {
+ "epoch": 65.67103538663171,
+ "grad_norm": 0.19047997891902924,
+ "learning_rate": 0.0006,
+ "loss": 3.5242767333984375,
+ "step": 4728
+ },
+ {
+ "epoch": 65.68501529051987,
+ "grad_norm": 0.19712361693382263,
+ "learning_rate": 0.0006,
+ "loss": 3.5176010131835938,
+ "step": 4729
+ },
+ {
+ "epoch": 65.69899519440804,
+ "grad_norm": 0.2034953087568283,
+ "learning_rate": 0.0006,
+ "loss": 3.510268211364746,
+ "step": 4730
+ },
+ {
+ "epoch": 65.7129750982962,
+ "grad_norm": 0.20022697746753693,
+ "learning_rate": 0.0006,
+ "loss": 3.53619647026062,
+ "step": 4731
+ },
+ {
+ "epoch": 65.72695500218435,
+ "grad_norm": 0.20698072016239166,
+ "learning_rate": 0.0006,
+ "loss": 3.5179615020751953,
+ "step": 4732
+ },
+ {
+ "epoch": 65.74093490607252,
+ "grad_norm": 0.2297508418560028,
+ "learning_rate": 0.0006,
+ "loss": 3.5308024883270264,
+ "step": 4733
+ },
+ {
+ "epoch": 65.75491480996068,
+ "grad_norm": 0.227255716919899,
+ "learning_rate": 0.0006,
+ "loss": 3.5443387031555176,
+ "step": 4734
+ },
+ {
+ "epoch": 65.76889471384884,
+ "grad_norm": 0.21772262454032898,
+ "learning_rate": 0.0006,
+ "loss": 3.52345871925354,
+ "step": 4735
+ },
+ {
+ "epoch": 65.78287461773701,
+ "grad_norm": 0.22124525904655457,
+ "learning_rate": 0.0006,
+ "loss": 3.5262577533721924,
+ "step": 4736
+ },
+ {
+ "epoch": 65.79685452162516,
+ "grad_norm": 0.22992224991321564,
+ "learning_rate": 0.0006,
+ "loss": 3.531507730484009,
+ "step": 4737
+ },
+ {
+ "epoch": 65.81083442551332,
+ "grad_norm": 0.24775296449661255,
+ "learning_rate": 0.0006,
+ "loss": 3.4781999588012695,
+ "step": 4738
+ },
+ {
+ "epoch": 65.82481432940149,
+ "grad_norm": 0.24917690455913544,
+ "learning_rate": 0.0006,
+ "loss": 3.5157413482666016,
+ "step": 4739
+ },
+ {
+ "epoch": 65.83879423328965,
+ "grad_norm": 0.23374824225902557,
+ "learning_rate": 0.0006,
+ "loss": 3.536634683609009,
+ "step": 4740
+ },
+ {
+ "epoch": 65.8527741371778,
+ "grad_norm": 0.25592541694641113,
+ "learning_rate": 0.0006,
+ "loss": 3.5343942642211914,
+ "step": 4741
+ },
+ {
+ "epoch": 65.86675404106597,
+ "grad_norm": 0.2698819935321808,
+ "learning_rate": 0.0006,
+ "loss": 3.4906277656555176,
+ "step": 4742
+ },
+ {
+ "epoch": 65.88073394495413,
+ "grad_norm": 0.2175036370754242,
+ "learning_rate": 0.0006,
+ "loss": 3.506230354309082,
+ "step": 4743
+ },
+ {
+ "epoch": 65.89471384884229,
+ "grad_norm": 0.22451810538768768,
+ "learning_rate": 0.0006,
+ "loss": 3.5139262676239014,
+ "step": 4744
+ },
+ {
+ "epoch": 65.90869375273044,
+ "grad_norm": 0.24293720722198486,
+ "learning_rate": 0.0006,
+ "loss": 3.528148651123047,
+ "step": 4745
+ },
+ {
+ "epoch": 65.92267365661861,
+ "grad_norm": 0.2138707935810089,
+ "learning_rate": 0.0006,
+ "loss": 3.516911029815674,
+ "step": 4746
+ },
+ {
+ "epoch": 65.93665356050677,
+ "grad_norm": 0.2216160148382187,
+ "learning_rate": 0.0006,
+ "loss": 3.540201187133789,
+ "step": 4747
+ },
+ {
+ "epoch": 65.95063346439493,
+ "grad_norm": 0.2276899367570877,
+ "learning_rate": 0.0006,
+ "loss": 3.525435447692871,
+ "step": 4748
+ },
+ {
+ "epoch": 65.9646133682831,
+ "grad_norm": 0.2441754788160324,
+ "learning_rate": 0.0006,
+ "loss": 3.5337369441986084,
+ "step": 4749
+ },
+ {
+ "epoch": 65.97859327217125,
+ "grad_norm": 0.2364634871482849,
+ "learning_rate": 0.0006,
+ "loss": 3.5289382934570312,
+ "step": 4750
+ },
+ {
+ "epoch": 65.99257317605941,
+ "grad_norm": 0.2322802096605301,
+ "learning_rate": 0.0006,
+ "loss": 3.519960403442383,
+ "step": 4751
+ },
+ {
+ "epoch": 66.0,
+ "grad_norm": 0.28910940885543823,
+ "learning_rate": 0.0006,
+ "loss": 3.535785436630249,
+ "step": 4752
+ },
+ {
+ "epoch": 66.0,
+ "eval_loss": 3.9755074977874756,
+ "eval_runtime": 44.9956,
+ "eval_samples_per_second": 54.272,
+ "eval_steps_per_second": 3.4,
+ "step": 4752
+ },
+ {
+ "epoch": 66.01397990388816,
+ "grad_norm": 0.2833491861820221,
+ "learning_rate": 0.0006,
+ "loss": 3.4532885551452637,
+ "step": 4753
+ },
+ {
+ "epoch": 66.02795980777633,
+ "grad_norm": 0.31011638045310974,
+ "learning_rate": 0.0006,
+ "loss": 3.5164999961853027,
+ "step": 4754
+ },
+ {
+ "epoch": 66.04193971166448,
+ "grad_norm": 0.34583768248558044,
+ "learning_rate": 0.0006,
+ "loss": 3.463331937789917,
+ "step": 4755
+ },
+ {
+ "epoch": 66.05591961555264,
+ "grad_norm": 0.3586544990539551,
+ "learning_rate": 0.0006,
+ "loss": 3.4739010334014893,
+ "step": 4756
+ },
+ {
+ "epoch": 66.06989951944081,
+ "grad_norm": 0.32337963581085205,
+ "learning_rate": 0.0006,
+ "loss": 3.5309596061706543,
+ "step": 4757
+ },
+ {
+ "epoch": 66.08387942332897,
+ "grad_norm": 0.3091002404689789,
+ "learning_rate": 0.0006,
+ "loss": 3.479280471801758,
+ "step": 4758
+ },
+ {
+ "epoch": 66.09785932721712,
+ "grad_norm": 0.29722821712493896,
+ "learning_rate": 0.0006,
+ "loss": 3.52632999420166,
+ "step": 4759
+ },
+ {
+ "epoch": 66.1118392311053,
+ "grad_norm": 0.2636614739894867,
+ "learning_rate": 0.0006,
+ "loss": 3.4953694343566895,
+ "step": 4760
+ },
+ {
+ "epoch": 66.12581913499345,
+ "grad_norm": 0.2646677494049072,
+ "learning_rate": 0.0006,
+ "loss": 3.519223213195801,
+ "step": 4761
+ },
+ {
+ "epoch": 66.1397990388816,
+ "grad_norm": 0.26999902725219727,
+ "learning_rate": 0.0006,
+ "loss": 3.500627040863037,
+ "step": 4762
+ },
+ {
+ "epoch": 66.15377894276976,
+ "grad_norm": 0.26489800214767456,
+ "learning_rate": 0.0006,
+ "loss": 3.486992120742798,
+ "step": 4763
+ },
+ {
+ "epoch": 66.16775884665793,
+ "grad_norm": 0.23870280385017395,
+ "learning_rate": 0.0006,
+ "loss": 3.5312767028808594,
+ "step": 4764
+ },
+ {
+ "epoch": 66.18173875054609,
+ "grad_norm": 0.260374516248703,
+ "learning_rate": 0.0006,
+ "loss": 3.529757499694824,
+ "step": 4765
+ },
+ {
+ "epoch": 66.19571865443424,
+ "grad_norm": 0.22300437092781067,
+ "learning_rate": 0.0006,
+ "loss": 3.534423351287842,
+ "step": 4766
+ },
+ {
+ "epoch": 66.20969855832242,
+ "grad_norm": 0.22216713428497314,
+ "learning_rate": 0.0006,
+ "loss": 3.4944376945495605,
+ "step": 4767
+ },
+ {
+ "epoch": 66.22367846221057,
+ "grad_norm": 0.22038567066192627,
+ "learning_rate": 0.0006,
+ "loss": 3.500737190246582,
+ "step": 4768
+ },
+ {
+ "epoch": 66.23765836609873,
+ "grad_norm": 0.23068127036094666,
+ "learning_rate": 0.0006,
+ "loss": 3.486678123474121,
+ "step": 4769
+ },
+ {
+ "epoch": 66.2516382699869,
+ "grad_norm": 0.22809696197509766,
+ "learning_rate": 0.0006,
+ "loss": 3.49131441116333,
+ "step": 4770
+ },
+ {
+ "epoch": 66.26561817387505,
+ "grad_norm": 0.2096482366323471,
+ "learning_rate": 0.0006,
+ "loss": 3.462193012237549,
+ "step": 4771
+ },
+ {
+ "epoch": 66.27959807776321,
+ "grad_norm": 0.20821219682693481,
+ "learning_rate": 0.0006,
+ "loss": 3.482736110687256,
+ "step": 4772
+ },
+ {
+ "epoch": 66.29357798165138,
+ "grad_norm": 0.20735417306423187,
+ "learning_rate": 0.0006,
+ "loss": 3.4810829162597656,
+ "step": 4773
+ },
+ {
+ "epoch": 66.30755788553954,
+ "grad_norm": 0.21598318219184875,
+ "learning_rate": 0.0006,
+ "loss": 3.5151000022888184,
+ "step": 4774
+ },
+ {
+ "epoch": 66.3215377894277,
+ "grad_norm": 0.20589035749435425,
+ "learning_rate": 0.0006,
+ "loss": 3.4938106536865234,
+ "step": 4775
+ },
+ {
+ "epoch": 66.33551769331586,
+ "grad_norm": 0.22494125366210938,
+ "learning_rate": 0.0006,
+ "loss": 3.4739134311676025,
+ "step": 4776
+ },
+ {
+ "epoch": 66.34949759720402,
+ "grad_norm": 0.24715618789196014,
+ "learning_rate": 0.0006,
+ "loss": 3.492598295211792,
+ "step": 4777
+ },
+ {
+ "epoch": 66.36347750109218,
+ "grad_norm": 0.26689210534095764,
+ "learning_rate": 0.0006,
+ "loss": 3.5183334350585938,
+ "step": 4778
+ },
+ {
+ "epoch": 66.37745740498035,
+ "grad_norm": 0.29018405079841614,
+ "learning_rate": 0.0006,
+ "loss": 3.4874320030212402,
+ "step": 4779
+ },
+ {
+ "epoch": 66.3914373088685,
+ "grad_norm": 0.2511773109436035,
+ "learning_rate": 0.0006,
+ "loss": 3.5105361938476562,
+ "step": 4780
+ },
+ {
+ "epoch": 66.40541721275666,
+ "grad_norm": 0.20808005332946777,
+ "learning_rate": 0.0006,
+ "loss": 3.4932327270507812,
+ "step": 4781
+ },
+ {
+ "epoch": 66.41939711664482,
+ "grad_norm": 0.21036715805530548,
+ "learning_rate": 0.0006,
+ "loss": 3.5223588943481445,
+ "step": 4782
+ },
+ {
+ "epoch": 66.43337702053299,
+ "grad_norm": 0.2151600569486618,
+ "learning_rate": 0.0006,
+ "loss": 3.491854190826416,
+ "step": 4783
+ },
+ {
+ "epoch": 66.44735692442114,
+ "grad_norm": 0.23702189326286316,
+ "learning_rate": 0.0006,
+ "loss": 3.4869368076324463,
+ "step": 4784
+ },
+ {
+ "epoch": 66.4613368283093,
+ "grad_norm": 0.23089149594306946,
+ "learning_rate": 0.0006,
+ "loss": 3.5014419555664062,
+ "step": 4785
+ },
+ {
+ "epoch": 66.47531673219747,
+ "grad_norm": 0.25527265667915344,
+ "learning_rate": 0.0006,
+ "loss": 3.5148048400878906,
+ "step": 4786
+ },
+ {
+ "epoch": 66.48929663608563,
+ "grad_norm": 0.2308386117219925,
+ "learning_rate": 0.0006,
+ "loss": 3.5196022987365723,
+ "step": 4787
+ },
+ {
+ "epoch": 66.50327653997378,
+ "grad_norm": 0.23467418551445007,
+ "learning_rate": 0.0006,
+ "loss": 3.478280544281006,
+ "step": 4788
+ },
+ {
+ "epoch": 66.51725644386195,
+ "grad_norm": 0.23607908189296722,
+ "learning_rate": 0.0006,
+ "loss": 3.4826481342315674,
+ "step": 4789
+ },
+ {
+ "epoch": 66.53123634775011,
+ "grad_norm": 0.255309522151947,
+ "learning_rate": 0.0006,
+ "loss": 3.498870849609375,
+ "step": 4790
+ },
+ {
+ "epoch": 66.54521625163827,
+ "grad_norm": 0.29246363043785095,
+ "learning_rate": 0.0006,
+ "loss": 3.544440269470215,
+ "step": 4791
+ },
+ {
+ "epoch": 66.55919615552644,
+ "grad_norm": 0.2658552825450897,
+ "learning_rate": 0.0006,
+ "loss": 3.4844512939453125,
+ "step": 4792
+ },
+ {
+ "epoch": 66.57317605941459,
+ "grad_norm": 0.23498542606830597,
+ "learning_rate": 0.0006,
+ "loss": 3.5411434173583984,
+ "step": 4793
+ },
+ {
+ "epoch": 66.58715596330275,
+ "grad_norm": 0.2616438567638397,
+ "learning_rate": 0.0006,
+ "loss": 3.501821994781494,
+ "step": 4794
+ },
+ {
+ "epoch": 66.60113586719092,
+ "grad_norm": 0.2577981650829315,
+ "learning_rate": 0.0006,
+ "loss": 3.519040584564209,
+ "step": 4795
+ },
+ {
+ "epoch": 66.61511577107908,
+ "grad_norm": 0.25896304845809937,
+ "learning_rate": 0.0006,
+ "loss": 3.514458656311035,
+ "step": 4796
+ },
+ {
+ "epoch": 66.62909567496723,
+ "grad_norm": 0.26136472821235657,
+ "learning_rate": 0.0006,
+ "loss": 3.5054283142089844,
+ "step": 4797
+ },
+ {
+ "epoch": 66.6430755788554,
+ "grad_norm": 0.2134191244840622,
+ "learning_rate": 0.0006,
+ "loss": 3.551358222961426,
+ "step": 4798
+ },
+ {
+ "epoch": 66.65705548274356,
+ "grad_norm": 0.20154543220996857,
+ "learning_rate": 0.0006,
+ "loss": 3.5363516807556152,
+ "step": 4799
+ },
+ {
+ "epoch": 66.67103538663171,
+ "grad_norm": 0.20807082951068878,
+ "learning_rate": 0.0006,
+ "loss": 3.4861817359924316,
+ "step": 4800
+ },
+ {
+ "epoch": 66.68501529051987,
+ "grad_norm": 0.22268050909042358,
+ "learning_rate": 0.0006,
+ "loss": 3.5229034423828125,
+ "step": 4801
+ },
+ {
+ "epoch": 66.69899519440804,
+ "grad_norm": 0.21031907200813293,
+ "learning_rate": 0.0006,
+ "loss": 3.499587059020996,
+ "step": 4802
+ },
+ {
+ "epoch": 66.7129750982962,
+ "grad_norm": 0.207321435213089,
+ "learning_rate": 0.0006,
+ "loss": 3.5246481895446777,
+ "step": 4803
+ },
+ {
+ "epoch": 66.72695500218435,
+ "grad_norm": 0.21961352229118347,
+ "learning_rate": 0.0006,
+ "loss": 3.5126147270202637,
+ "step": 4804
+ },
+ {
+ "epoch": 66.74093490607252,
+ "grad_norm": 0.2144167572259903,
+ "learning_rate": 0.0006,
+ "loss": 3.5319013595581055,
+ "step": 4805
+ },
+ {
+ "epoch": 66.75491480996068,
+ "grad_norm": 0.19109441339969635,
+ "learning_rate": 0.0006,
+ "loss": 3.5124895572662354,
+ "step": 4806
+ },
+ {
+ "epoch": 66.76889471384884,
+ "grad_norm": 0.20463025569915771,
+ "learning_rate": 0.0006,
+ "loss": 3.5368666648864746,
+ "step": 4807
+ },
+ {
+ "epoch": 66.78287461773701,
+ "grad_norm": 0.20978771150112152,
+ "learning_rate": 0.0006,
+ "loss": 3.5166687965393066,
+ "step": 4808
+ },
+ {
+ "epoch": 66.79685452162516,
+ "grad_norm": 0.2258925437927246,
+ "learning_rate": 0.0006,
+ "loss": 3.532341957092285,
+ "step": 4809
+ },
+ {
+ "epoch": 66.81083442551332,
+ "grad_norm": 0.21758350729942322,
+ "learning_rate": 0.0006,
+ "loss": 3.5155858993530273,
+ "step": 4810
+ },
+ {
+ "epoch": 66.82481432940149,
+ "grad_norm": 0.20124484598636627,
+ "learning_rate": 0.0006,
+ "loss": 3.491522789001465,
+ "step": 4811
+ },
+ {
+ "epoch": 66.83879423328965,
+ "grad_norm": 0.21627238392829895,
+ "learning_rate": 0.0006,
+ "loss": 3.5303220748901367,
+ "step": 4812
+ },
+ {
+ "epoch": 66.8527741371778,
+ "grad_norm": 0.21125555038452148,
+ "learning_rate": 0.0006,
+ "loss": 3.535466194152832,
+ "step": 4813
+ },
+ {
+ "epoch": 66.86675404106597,
+ "grad_norm": 0.2247028350830078,
+ "learning_rate": 0.0006,
+ "loss": 3.51188325881958,
+ "step": 4814
+ },
+ {
+ "epoch": 66.88073394495413,
+ "grad_norm": 0.21800914406776428,
+ "learning_rate": 0.0006,
+ "loss": 3.5084712505340576,
+ "step": 4815
+ },
+ {
+ "epoch": 66.89471384884229,
+ "grad_norm": 0.2118908166885376,
+ "learning_rate": 0.0006,
+ "loss": 3.5099692344665527,
+ "step": 4816
+ },
+ {
+ "epoch": 66.90869375273044,
+ "grad_norm": 0.22638460993766785,
+ "learning_rate": 0.0006,
+ "loss": 3.5099596977233887,
+ "step": 4817
+ },
+ {
+ "epoch": 66.92267365661861,
+ "grad_norm": 0.1987311840057373,
+ "learning_rate": 0.0006,
+ "loss": 3.5497078895568848,
+ "step": 4818
+ },
+ {
+ "epoch": 66.93665356050677,
+ "grad_norm": 0.21048952639102936,
+ "learning_rate": 0.0006,
+ "loss": 3.524364948272705,
+ "step": 4819
+ },
+ {
+ "epoch": 66.95063346439493,
+ "grad_norm": 0.21481701731681824,
+ "learning_rate": 0.0006,
+ "loss": 3.5121915340423584,
+ "step": 4820
+ },
+ {
+ "epoch": 66.9646133682831,
+ "grad_norm": 0.22060725092887878,
+ "learning_rate": 0.0006,
+ "loss": 3.5288822650909424,
+ "step": 4821
+ },
+ {
+ "epoch": 66.97859327217125,
+ "grad_norm": 0.22192992269992828,
+ "learning_rate": 0.0006,
+ "loss": 3.504401206970215,
+ "step": 4822
+ },
+ {
+ "epoch": 66.99257317605941,
+ "grad_norm": 0.21677598357200623,
+ "learning_rate": 0.0006,
+ "loss": 3.5447967052459717,
+ "step": 4823
+ },
+ {
+ "epoch": 67.0,
+ "grad_norm": 0.24961385130882263,
+ "learning_rate": 0.0006,
+ "loss": 3.4890012741088867,
+ "step": 4824
+ },
+ {
+ "epoch": 67.0,
+ "eval_loss": 3.9784040451049805,
+ "eval_runtime": 45.0843,
+ "eval_samples_per_second": 54.165,
+ "eval_steps_per_second": 3.394,
+ "step": 4824
+ },
+ {
+ "epoch": 67.01397990388816,
+ "grad_norm": 0.22992873191833496,
+ "learning_rate": 0.0006,
+ "loss": 3.470973491668701,
+ "step": 4825
+ },
+ {
+ "epoch": 67.02795980777633,
+ "grad_norm": 0.2189949005842209,
+ "learning_rate": 0.0006,
+ "loss": 3.4956774711608887,
+ "step": 4826
+ },
+ {
+ "epoch": 67.04193971166448,
+ "grad_norm": 0.22506096959114075,
+ "learning_rate": 0.0006,
+ "loss": 3.448911190032959,
+ "step": 4827
+ },
+ {
+ "epoch": 67.05591961555264,
+ "grad_norm": 0.2447187304496765,
+ "learning_rate": 0.0006,
+ "loss": 3.465512275695801,
+ "step": 4828
+ },
+ {
+ "epoch": 67.06989951944081,
+ "grad_norm": 0.27052751183509827,
+ "learning_rate": 0.0006,
+ "loss": 3.493760824203491,
+ "step": 4829
+ },
+ {
+ "epoch": 67.08387942332897,
+ "grad_norm": 0.29693296551704407,
+ "learning_rate": 0.0006,
+ "loss": 3.4922988414764404,
+ "step": 4830
+ },
+ {
+ "epoch": 67.09785932721712,
+ "grad_norm": 0.27461376786231995,
+ "learning_rate": 0.0006,
+ "loss": 3.4782471656799316,
+ "step": 4831
+ },
+ {
+ "epoch": 67.1118392311053,
+ "grad_norm": 0.21409225463867188,
+ "learning_rate": 0.0006,
+ "loss": 3.4636545181274414,
+ "step": 4832
+ },
+ {
+ "epoch": 67.12581913499345,
+ "grad_norm": 0.24362294375896454,
+ "learning_rate": 0.0006,
+ "loss": 3.4836316108703613,
+ "step": 4833
+ },
+ {
+ "epoch": 67.1397990388816,
+ "grad_norm": 0.3237941265106201,
+ "learning_rate": 0.0006,
+ "loss": 3.4853315353393555,
+ "step": 4834
+ },
+ {
+ "epoch": 67.15377894276976,
+ "grad_norm": 0.3138698935508728,
+ "learning_rate": 0.0006,
+ "loss": 3.5045557022094727,
+ "step": 4835
+ },
+ {
+ "epoch": 67.16775884665793,
+ "grad_norm": 0.24102728068828583,
+ "learning_rate": 0.0006,
+ "loss": 3.450237512588501,
+ "step": 4836
+ },
+ {
+ "epoch": 67.18173875054609,
+ "grad_norm": 0.22504228353500366,
+ "learning_rate": 0.0006,
+ "loss": 3.5141711235046387,
+ "step": 4837
+ },
+ {
+ "epoch": 67.19571865443424,
+ "grad_norm": 0.2226196974515915,
+ "learning_rate": 0.0006,
+ "loss": 3.4973597526550293,
+ "step": 4838
+ },
+ {
+ "epoch": 67.20969855832242,
+ "grad_norm": 0.23295332491397858,
+ "learning_rate": 0.0006,
+ "loss": 3.455085277557373,
+ "step": 4839
+ },
+ {
+ "epoch": 67.22367846221057,
+ "grad_norm": 0.24799001216888428,
+ "learning_rate": 0.0006,
+ "loss": 3.5016517639160156,
+ "step": 4840
+ },
+ {
+ "epoch": 67.23765836609873,
+ "grad_norm": 0.2431265115737915,
+ "learning_rate": 0.0006,
+ "loss": 3.5138516426086426,
+ "step": 4841
+ },
+ {
+ "epoch": 67.2516382699869,
+ "grad_norm": 0.22402037680149078,
+ "learning_rate": 0.0006,
+ "loss": 3.5154635906219482,
+ "step": 4842
+ },
+ {
+ "epoch": 67.26561817387505,
+ "grad_norm": 0.2097088098526001,
+ "learning_rate": 0.0006,
+ "loss": 3.512531280517578,
+ "step": 4843
+ },
+ {
+ "epoch": 67.27959807776321,
+ "grad_norm": 0.21303699910640717,
+ "learning_rate": 0.0006,
+ "loss": 3.489511728286743,
+ "step": 4844
+ },
+ {
+ "epoch": 67.29357798165138,
+ "grad_norm": 0.2164260894060135,
+ "learning_rate": 0.0006,
+ "loss": 3.521756172180176,
+ "step": 4845
+ },
+ {
+ "epoch": 67.30755788553954,
+ "grad_norm": 0.2179967612028122,
+ "learning_rate": 0.0006,
+ "loss": 3.4991297721862793,
+ "step": 4846
+ },
+ {
+ "epoch": 67.3215377894277,
+ "grad_norm": 0.21892501413822174,
+ "learning_rate": 0.0006,
+ "loss": 3.475011110305786,
+ "step": 4847
+ },
+ {
+ "epoch": 67.33551769331586,
+ "grad_norm": 0.2372686117887497,
+ "learning_rate": 0.0006,
+ "loss": 3.49537992477417,
+ "step": 4848
+ },
+ {
+ "epoch": 67.34949759720402,
+ "grad_norm": 0.24897949397563934,
+ "learning_rate": 0.0006,
+ "loss": 3.4762938022613525,
+ "step": 4849
+ },
+ {
+ "epoch": 67.36347750109218,
+ "grad_norm": 0.24987933039665222,
+ "learning_rate": 0.0006,
+ "loss": 3.511708974838257,
+ "step": 4850
+ },
+ {
+ "epoch": 67.37745740498035,
+ "grad_norm": 0.24062976241111755,
+ "learning_rate": 0.0006,
+ "loss": 3.4955873489379883,
+ "step": 4851
+ },
+ {
+ "epoch": 67.3914373088685,
+ "grad_norm": 0.2277272790670395,
+ "learning_rate": 0.0006,
+ "loss": 3.5036606788635254,
+ "step": 4852
+ },
+ {
+ "epoch": 67.40541721275666,
+ "grad_norm": 0.23996487259864807,
+ "learning_rate": 0.0006,
+ "loss": 3.515568971633911,
+ "step": 4853
+ },
+ {
+ "epoch": 67.41939711664482,
+ "grad_norm": 0.23224318027496338,
+ "learning_rate": 0.0006,
+ "loss": 3.4915125370025635,
+ "step": 4854
+ },
+ {
+ "epoch": 67.43337702053299,
+ "grad_norm": 0.21011298894882202,
+ "learning_rate": 0.0006,
+ "loss": 3.5076327323913574,
+ "step": 4855
+ },
+ {
+ "epoch": 67.44735692442114,
+ "grad_norm": 0.21975480020046234,
+ "learning_rate": 0.0006,
+ "loss": 3.4929163455963135,
+ "step": 4856
+ },
+ {
+ "epoch": 67.4613368283093,
+ "grad_norm": 0.21966299414634705,
+ "learning_rate": 0.0006,
+ "loss": 3.50154447555542,
+ "step": 4857
+ },
+ {
+ "epoch": 67.47531673219747,
+ "grad_norm": 0.2167058289051056,
+ "learning_rate": 0.0006,
+ "loss": 3.4866533279418945,
+ "step": 4858
+ },
+ {
+ "epoch": 67.48929663608563,
+ "grad_norm": 0.2072296291589737,
+ "learning_rate": 0.0006,
+ "loss": 3.506241798400879,
+ "step": 4859
+ },
+ {
+ "epoch": 67.50327653997378,
+ "grad_norm": 0.2358800321817398,
+ "learning_rate": 0.0006,
+ "loss": 3.51871919631958,
+ "step": 4860
+ },
+ {
+ "epoch": 67.51725644386195,
+ "grad_norm": 0.2841838598251343,
+ "learning_rate": 0.0006,
+ "loss": 3.531181812286377,
+ "step": 4861
+ },
+ {
+ "epoch": 67.53123634775011,
+ "grad_norm": 0.2744826078414917,
+ "learning_rate": 0.0006,
+ "loss": 3.4916810989379883,
+ "step": 4862
+ },
+ {
+ "epoch": 67.54521625163827,
+ "grad_norm": 0.229517862200737,
+ "learning_rate": 0.0006,
+ "loss": 3.522495746612549,
+ "step": 4863
+ },
+ {
+ "epoch": 67.55919615552644,
+ "grad_norm": 0.22933268547058105,
+ "learning_rate": 0.0006,
+ "loss": 3.522249698638916,
+ "step": 4864
+ },
+ {
+ "epoch": 67.57317605941459,
+ "grad_norm": 0.2578641176223755,
+ "learning_rate": 0.0006,
+ "loss": 3.497955799102783,
+ "step": 4865
+ },
+ {
+ "epoch": 67.58715596330275,
+ "grad_norm": 0.26098695397377014,
+ "learning_rate": 0.0006,
+ "loss": 3.508647918701172,
+ "step": 4866
+ },
+ {
+ "epoch": 67.60113586719092,
+ "grad_norm": 0.26429283618927,
+ "learning_rate": 0.0006,
+ "loss": 3.504948139190674,
+ "step": 4867
+ },
+ {
+ "epoch": 67.61511577107908,
+ "grad_norm": 0.2604367136955261,
+ "learning_rate": 0.0006,
+ "loss": 3.529656410217285,
+ "step": 4868
+ },
+ {
+ "epoch": 67.62909567496723,
+ "grad_norm": 0.26351016759872437,
+ "learning_rate": 0.0006,
+ "loss": 3.497729778289795,
+ "step": 4869
+ },
+ {
+ "epoch": 67.6430755788554,
+ "grad_norm": 0.23902031779289246,
+ "learning_rate": 0.0006,
+ "loss": 3.5174601078033447,
+ "step": 4870
+ },
+ {
+ "epoch": 67.65705548274356,
+ "grad_norm": 0.2439061552286148,
+ "learning_rate": 0.0006,
+ "loss": 3.472304344177246,
+ "step": 4871
+ },
+ {
+ "epoch": 67.67103538663171,
+ "grad_norm": 0.28729668259620667,
+ "learning_rate": 0.0006,
+ "loss": 3.4945883750915527,
+ "step": 4872
+ },
+ {
+ "epoch": 67.68501529051987,
+ "grad_norm": 0.2690763771533966,
+ "learning_rate": 0.0006,
+ "loss": 3.524843215942383,
+ "step": 4873
+ },
+ {
+ "epoch": 67.69899519440804,
+ "grad_norm": 0.24424311518669128,
+ "learning_rate": 0.0006,
+ "loss": 3.5337445735931396,
+ "step": 4874
+ },
+ {
+ "epoch": 67.7129750982962,
+ "grad_norm": 0.25736868381500244,
+ "learning_rate": 0.0006,
+ "loss": 3.51664400100708,
+ "step": 4875
+ },
+ {
+ "epoch": 67.72695500218435,
+ "grad_norm": 0.24504248797893524,
+ "learning_rate": 0.0006,
+ "loss": 3.5089268684387207,
+ "step": 4876
+ },
+ {
+ "epoch": 67.74093490607252,
+ "grad_norm": 0.24296091496944427,
+ "learning_rate": 0.0006,
+ "loss": 3.5506460666656494,
+ "step": 4877
+ },
+ {
+ "epoch": 67.75491480996068,
+ "grad_norm": 0.24984019994735718,
+ "learning_rate": 0.0006,
+ "loss": 3.5290684700012207,
+ "step": 4878
+ },
+ {
+ "epoch": 67.76889471384884,
+ "grad_norm": 0.23878677189350128,
+ "learning_rate": 0.0006,
+ "loss": 3.522343635559082,
+ "step": 4879
+ },
+ {
+ "epoch": 67.78287461773701,
+ "grad_norm": 0.2275245040655136,
+ "learning_rate": 0.0006,
+ "loss": 3.5218796730041504,
+ "step": 4880
+ },
+ {
+ "epoch": 67.79685452162516,
+ "grad_norm": 0.21045760810375214,
+ "learning_rate": 0.0006,
+ "loss": 3.512430191040039,
+ "step": 4881
+ },
+ {
+ "epoch": 67.81083442551332,
+ "grad_norm": 0.21902696788311005,
+ "learning_rate": 0.0006,
+ "loss": 3.537611484527588,
+ "step": 4882
+ },
+ {
+ "epoch": 67.82481432940149,
+ "grad_norm": 0.20757564902305603,
+ "learning_rate": 0.0006,
+ "loss": 3.470278263092041,
+ "step": 4883
+ },
+ {
+ "epoch": 67.83879423328965,
+ "grad_norm": 0.22352434694766998,
+ "learning_rate": 0.0006,
+ "loss": 3.4816718101501465,
+ "step": 4884
+ },
+ {
+ "epoch": 67.8527741371778,
+ "grad_norm": 0.20459680259227753,
+ "learning_rate": 0.0006,
+ "loss": 3.508671998977661,
+ "step": 4885
+ },
+ {
+ "epoch": 67.86675404106597,
+ "grad_norm": 0.20641672611236572,
+ "learning_rate": 0.0006,
+ "loss": 3.500471591949463,
+ "step": 4886
+ },
+ {
+ "epoch": 67.88073394495413,
+ "grad_norm": 0.20340596139431,
+ "learning_rate": 0.0006,
+ "loss": 3.5282673835754395,
+ "step": 4887
+ },
+ {
+ "epoch": 67.89471384884229,
+ "grad_norm": 0.20768426358699799,
+ "learning_rate": 0.0006,
+ "loss": 3.528446912765503,
+ "step": 4888
+ },
+ {
+ "epoch": 67.90869375273044,
+ "grad_norm": 0.19998659193515778,
+ "learning_rate": 0.0006,
+ "loss": 3.501742124557495,
+ "step": 4889
+ },
+ {
+ "epoch": 67.92267365661861,
+ "grad_norm": 0.20472751557826996,
+ "learning_rate": 0.0006,
+ "loss": 3.510523796081543,
+ "step": 4890
+ },
+ {
+ "epoch": 67.93665356050677,
+ "grad_norm": 0.21528398990631104,
+ "learning_rate": 0.0006,
+ "loss": 3.529409170150757,
+ "step": 4891
+ },
+ {
+ "epoch": 67.95063346439493,
+ "grad_norm": 0.19671283662319183,
+ "learning_rate": 0.0006,
+ "loss": 3.5512051582336426,
+ "step": 4892
+ },
+ {
+ "epoch": 67.9646133682831,
+ "grad_norm": 0.20629945397377014,
+ "learning_rate": 0.0006,
+ "loss": 3.5127525329589844,
+ "step": 4893
+ },
+ {
+ "epoch": 67.97859327217125,
+ "grad_norm": 0.2121579945087433,
+ "learning_rate": 0.0006,
+ "loss": 3.5242156982421875,
+ "step": 4894
+ },
+ {
+ "epoch": 67.99257317605941,
+ "grad_norm": 0.20770777761936188,
+ "learning_rate": 0.0006,
+ "loss": 3.5094361305236816,
+ "step": 4895
+ },
+ {
+ "epoch": 68.0,
+ "grad_norm": 0.2619984447956085,
+ "learning_rate": 0.0006,
+ "loss": 3.491684675216675,
+ "step": 4896
+ },
+ {
+ "epoch": 68.0,
+ "eval_loss": 3.97202730178833,
+ "eval_runtime": 44.2471,
+ "eval_samples_per_second": 55.19,
+ "eval_steps_per_second": 3.458,
+ "step": 4896
+ },
+ {
+ "epoch": 68.01397990388816,
+ "grad_norm": 0.25237807631492615,
+ "learning_rate": 0.0006,
+ "loss": 3.4720845222473145,
+ "step": 4897
+ },
+ {
+ "epoch": 68.02795980777633,
+ "grad_norm": 0.26686927676200867,
+ "learning_rate": 0.0006,
+ "loss": 3.4825453758239746,
+ "step": 4898
+ },
+ {
+ "epoch": 68.04193971166448,
+ "grad_norm": 0.2826477885246277,
+ "learning_rate": 0.0006,
+ "loss": 3.489805221557617,
+ "step": 4899
+ },
+ {
+ "epoch": 68.05591961555264,
+ "grad_norm": 0.291363000869751,
+ "learning_rate": 0.0006,
+ "loss": 3.464585304260254,
+ "step": 4900
+ },
+ {
+ "epoch": 68.06989951944081,
+ "grad_norm": 0.2645387649536133,
+ "learning_rate": 0.0006,
+ "loss": 3.4891953468322754,
+ "step": 4901
+ },
+ {
+ "epoch": 68.08387942332897,
+ "grad_norm": 0.2398659586906433,
+ "learning_rate": 0.0006,
+ "loss": 3.474371910095215,
+ "step": 4902
+ },
+ {
+ "epoch": 68.09785932721712,
+ "grad_norm": 0.23359309136867523,
+ "learning_rate": 0.0006,
+ "loss": 3.5011367797851562,
+ "step": 4903
+ },
+ {
+ "epoch": 68.1118392311053,
+ "grad_norm": 0.235616534948349,
+ "learning_rate": 0.0006,
+ "loss": 3.472562551498413,
+ "step": 4904
+ },
+ {
+ "epoch": 68.12581913499345,
+ "grad_norm": 0.25396600365638733,
+ "learning_rate": 0.0006,
+ "loss": 3.484182834625244,
+ "step": 4905
+ },
+ {
+ "epoch": 68.1397990388816,
+ "grad_norm": 0.2668958604335785,
+ "learning_rate": 0.0006,
+ "loss": 3.4625918865203857,
+ "step": 4906
+ },
+ {
+ "epoch": 68.15377894276976,
+ "grad_norm": 0.2608959674835205,
+ "learning_rate": 0.0006,
+ "loss": 3.4769415855407715,
+ "step": 4907
+ },
+ {
+ "epoch": 68.16775884665793,
+ "grad_norm": 0.2817389667034149,
+ "learning_rate": 0.0006,
+ "loss": 3.4722979068756104,
+ "step": 4908
+ },
+ {
+ "epoch": 68.18173875054609,
+ "grad_norm": 0.24425546824932098,
+ "learning_rate": 0.0006,
+ "loss": 3.4710354804992676,
+ "step": 4909
+ },
+ {
+ "epoch": 68.19571865443424,
+ "grad_norm": 0.2355373501777649,
+ "learning_rate": 0.0006,
+ "loss": 3.475369453430176,
+ "step": 4910
+ },
+ {
+ "epoch": 68.20969855832242,
+ "grad_norm": 0.23627427220344543,
+ "learning_rate": 0.0006,
+ "loss": 3.50154447555542,
+ "step": 4911
+ },
+ {
+ "epoch": 68.22367846221057,
+ "grad_norm": 0.21174706518650055,
+ "learning_rate": 0.0006,
+ "loss": 3.5018253326416016,
+ "step": 4912
+ },
+ {
+ "epoch": 68.23765836609873,
+ "grad_norm": 0.2101593017578125,
+ "learning_rate": 0.0006,
+ "loss": 3.4931211471557617,
+ "step": 4913
+ },
+ {
+ "epoch": 68.2516382699869,
+ "grad_norm": 0.21808475255966187,
+ "learning_rate": 0.0006,
+ "loss": 3.5047576427459717,
+ "step": 4914
+ },
+ {
+ "epoch": 68.26561817387505,
+ "grad_norm": 0.2354060262441635,
+ "learning_rate": 0.0006,
+ "loss": 3.471801996231079,
+ "step": 4915
+ },
+ {
+ "epoch": 68.27959807776321,
+ "grad_norm": 0.2839724123477936,
+ "learning_rate": 0.0006,
+ "loss": 3.4861397743225098,
+ "step": 4916
+ },
+ {
+ "epoch": 68.29357798165138,
+ "grad_norm": 0.2884398102760315,
+ "learning_rate": 0.0006,
+ "loss": 3.497713088989258,
+ "step": 4917
+ },
+ {
+ "epoch": 68.30755788553954,
+ "grad_norm": 0.24654951691627502,
+ "learning_rate": 0.0006,
+ "loss": 3.4795613288879395,
+ "step": 4918
+ },
+ {
+ "epoch": 68.3215377894277,
+ "grad_norm": 0.22197365760803223,
+ "learning_rate": 0.0006,
+ "loss": 3.495490550994873,
+ "step": 4919
+ },
+ {
+ "epoch": 68.33551769331586,
+ "grad_norm": 0.22666935622692108,
+ "learning_rate": 0.0006,
+ "loss": 3.4859418869018555,
+ "step": 4920
+ },
+ {
+ "epoch": 68.34949759720402,
+ "grad_norm": 0.22135236859321594,
+ "learning_rate": 0.0006,
+ "loss": 3.475436210632324,
+ "step": 4921
+ },
+ {
+ "epoch": 68.36347750109218,
+ "grad_norm": 0.28992167115211487,
+ "learning_rate": 0.0006,
+ "loss": 3.5220274925231934,
+ "step": 4922
+ },
+ {
+ "epoch": 68.37745740498035,
+ "grad_norm": 0.296501100063324,
+ "learning_rate": 0.0006,
+ "loss": 3.4783244132995605,
+ "step": 4923
+ },
+ {
+ "epoch": 68.3914373088685,
+ "grad_norm": 0.24111351370811462,
+ "learning_rate": 0.0006,
+ "loss": 3.4972972869873047,
+ "step": 4924
+ },
+ {
+ "epoch": 68.40541721275666,
+ "grad_norm": 0.22319315373897552,
+ "learning_rate": 0.0006,
+ "loss": 3.517050266265869,
+ "step": 4925
+ },
+ {
+ "epoch": 68.41939711664482,
+ "grad_norm": 0.20984329283237457,
+ "learning_rate": 0.0006,
+ "loss": 3.5097880363464355,
+ "step": 4926
+ },
+ {
+ "epoch": 68.43337702053299,
+ "grad_norm": 0.2221212387084961,
+ "learning_rate": 0.0006,
+ "loss": 3.4824156761169434,
+ "step": 4927
+ },
+ {
+ "epoch": 68.44735692442114,
+ "grad_norm": 0.23731078207492828,
+ "learning_rate": 0.0006,
+ "loss": 3.5319526195526123,
+ "step": 4928
+ },
+ {
+ "epoch": 68.4613368283093,
+ "grad_norm": 0.233421191573143,
+ "learning_rate": 0.0006,
+ "loss": 3.4952187538146973,
+ "step": 4929
+ },
+ {
+ "epoch": 68.47531673219747,
+ "grad_norm": 0.2320558875799179,
+ "learning_rate": 0.0006,
+ "loss": 3.5152385234832764,
+ "step": 4930
+ },
+ {
+ "epoch": 68.48929663608563,
+ "grad_norm": 0.21786290407180786,
+ "learning_rate": 0.0006,
+ "loss": 3.4857373237609863,
+ "step": 4931
+ },
+ {
+ "epoch": 68.50327653997378,
+ "grad_norm": 0.20560047030448914,
+ "learning_rate": 0.0006,
+ "loss": 3.487344264984131,
+ "step": 4932
+ },
+ {
+ "epoch": 68.51725644386195,
+ "grad_norm": 0.2326865941286087,
+ "learning_rate": 0.0006,
+ "loss": 3.5202066898345947,
+ "step": 4933
+ },
+ {
+ "epoch": 68.53123634775011,
+ "grad_norm": 0.2338377833366394,
+ "learning_rate": 0.0006,
+ "loss": 3.4967358112335205,
+ "step": 4934
+ },
+ {
+ "epoch": 68.54521625163827,
+ "grad_norm": 0.22698800265789032,
+ "learning_rate": 0.0006,
+ "loss": 3.484452724456787,
+ "step": 4935
+ },
+ {
+ "epoch": 68.55919615552644,
+ "grad_norm": 0.21141181886196136,
+ "learning_rate": 0.0006,
+ "loss": 3.4950156211853027,
+ "step": 4936
+ },
+ {
+ "epoch": 68.57317605941459,
+ "grad_norm": 0.22393199801445007,
+ "learning_rate": 0.0006,
+ "loss": 3.4950199127197266,
+ "step": 4937
+ },
+ {
+ "epoch": 68.58715596330275,
+ "grad_norm": 0.22276045382022858,
+ "learning_rate": 0.0006,
+ "loss": 3.5180115699768066,
+ "step": 4938
+ },
+ {
+ "epoch": 68.60113586719092,
+ "grad_norm": 0.22738748788833618,
+ "learning_rate": 0.0006,
+ "loss": 3.5053911209106445,
+ "step": 4939
+ },
+ {
+ "epoch": 68.61511577107908,
+ "grad_norm": 0.21496275067329407,
+ "learning_rate": 0.0006,
+ "loss": 3.5315306186676025,
+ "step": 4940
+ },
+ {
+ "epoch": 68.62909567496723,
+ "grad_norm": 0.20695674419403076,
+ "learning_rate": 0.0006,
+ "loss": 3.514780044555664,
+ "step": 4941
+ },
+ {
+ "epoch": 68.6430755788554,
+ "grad_norm": 0.22777840495109558,
+ "learning_rate": 0.0006,
+ "loss": 3.5249099731445312,
+ "step": 4942
+ },
+ {
+ "epoch": 68.65705548274356,
+ "grad_norm": 0.26664453744888306,
+ "learning_rate": 0.0006,
+ "loss": 3.4763400554656982,
+ "step": 4943
+ },
+ {
+ "epoch": 68.67103538663171,
+ "grad_norm": 0.3005792498588562,
+ "learning_rate": 0.0006,
+ "loss": 3.4936861991882324,
+ "step": 4944
+ },
+ {
+ "epoch": 68.68501529051987,
+ "grad_norm": 0.2860395908355713,
+ "learning_rate": 0.0006,
+ "loss": 3.4994754791259766,
+ "step": 4945
+ },
+ {
+ "epoch": 68.69899519440804,
+ "grad_norm": 0.21164822578430176,
+ "learning_rate": 0.0006,
+ "loss": 3.5011136531829834,
+ "step": 4946
+ },
+ {
+ "epoch": 68.7129750982962,
+ "grad_norm": 0.2122834324836731,
+ "learning_rate": 0.0006,
+ "loss": 3.52018404006958,
+ "step": 4947
+ },
+ {
+ "epoch": 68.72695500218435,
+ "grad_norm": 0.23951229453086853,
+ "learning_rate": 0.0006,
+ "loss": 3.4910717010498047,
+ "step": 4948
+ },
+ {
+ "epoch": 68.74093490607252,
+ "grad_norm": 0.22745490074157715,
+ "learning_rate": 0.0006,
+ "loss": 3.5251622200012207,
+ "step": 4949
+ },
+ {
+ "epoch": 68.75491480996068,
+ "grad_norm": 0.21616250276565552,
+ "learning_rate": 0.0006,
+ "loss": 3.4933743476867676,
+ "step": 4950
+ },
+ {
+ "epoch": 68.76889471384884,
+ "grad_norm": 0.2164236605167389,
+ "learning_rate": 0.0006,
+ "loss": 3.513286590576172,
+ "step": 4951
+ },
+ {
+ "epoch": 68.78287461773701,
+ "grad_norm": 0.2450464814901352,
+ "learning_rate": 0.0006,
+ "loss": 3.5084245204925537,
+ "step": 4952
+ },
+ {
+ "epoch": 68.79685452162516,
+ "grad_norm": 0.29221615195274353,
+ "learning_rate": 0.0006,
+ "loss": 3.5463311672210693,
+ "step": 4953
+ },
+ {
+ "epoch": 68.81083442551332,
+ "grad_norm": 0.24574553966522217,
+ "learning_rate": 0.0006,
+ "loss": 3.5099716186523438,
+ "step": 4954
+ },
+ {
+ "epoch": 68.82481432940149,
+ "grad_norm": 0.20879139006137848,
+ "learning_rate": 0.0006,
+ "loss": 3.5220701694488525,
+ "step": 4955
+ },
+ {
+ "epoch": 68.83879423328965,
+ "grad_norm": 0.295693963766098,
+ "learning_rate": 0.0006,
+ "loss": 3.4854037761688232,
+ "step": 4956
+ },
+ {
+ "epoch": 68.8527741371778,
+ "grad_norm": 0.35441911220550537,
+ "learning_rate": 0.0006,
+ "loss": 3.5216379165649414,
+ "step": 4957
+ },
+ {
+ "epoch": 68.86675404106597,
+ "grad_norm": 0.2840341031551361,
+ "learning_rate": 0.0006,
+ "loss": 3.5208358764648438,
+ "step": 4958
+ },
+ {
+ "epoch": 68.88073394495413,
+ "grad_norm": 0.2082499861717224,
+ "learning_rate": 0.0006,
+ "loss": 3.5028862953186035,
+ "step": 4959
+ },
+ {
+ "epoch": 68.89471384884229,
+ "grad_norm": 0.2505369186401367,
+ "learning_rate": 0.0006,
+ "loss": 3.4982357025146484,
+ "step": 4960
+ },
+ {
+ "epoch": 68.90869375273044,
+ "grad_norm": 0.24573875963687897,
+ "learning_rate": 0.0006,
+ "loss": 3.5239524841308594,
+ "step": 4961
+ },
+ {
+ "epoch": 68.92267365661861,
+ "grad_norm": 0.23462185263633728,
+ "learning_rate": 0.0006,
+ "loss": 3.544379234313965,
+ "step": 4962
+ },
+ {
+ "epoch": 68.93665356050677,
+ "grad_norm": 0.26491034030914307,
+ "learning_rate": 0.0006,
+ "loss": 3.518372058868408,
+ "step": 4963
+ },
+ {
+ "epoch": 68.95063346439493,
+ "grad_norm": 0.2729686498641968,
+ "learning_rate": 0.0006,
+ "loss": 3.517185926437378,
+ "step": 4964
+ },
+ {
+ "epoch": 68.9646133682831,
+ "grad_norm": 0.26077502965927124,
+ "learning_rate": 0.0006,
+ "loss": 3.5147576332092285,
+ "step": 4965
+ },
+ {
+ "epoch": 68.97859327217125,
+ "grad_norm": 0.2313229888677597,
+ "learning_rate": 0.0006,
+ "loss": 3.5008926391601562,
+ "step": 4966
+ },
+ {
+ "epoch": 68.99257317605941,
+ "grad_norm": 0.21773307025432587,
+ "learning_rate": 0.0006,
+ "loss": 3.5004096031188965,
+ "step": 4967
+ },
+ {
+ "epoch": 69.0,
+ "grad_norm": 0.2326030433177948,
+ "learning_rate": 0.0006,
+ "loss": 3.5572075843811035,
+ "step": 4968
+ },
+ {
+ "epoch": 69.0,
+ "eval_loss": 3.993666410446167,
+ "eval_runtime": 45.2778,
+ "eval_samples_per_second": 53.934,
+ "eval_steps_per_second": 3.379,
+ "step": 4968
+ },
+ {
+ "epoch": 69.01397990388816,
+ "grad_norm": 0.22886492311954498,
+ "learning_rate": 0.0006,
+ "loss": 3.4994781017303467,
+ "step": 4969
+ },
+ {
+ "epoch": 69.02795980777633,
+ "grad_norm": 0.2972700595855713,
+ "learning_rate": 0.0006,
+ "loss": 3.5022270679473877,
+ "step": 4970
+ },
+ {
+ "epoch": 69.04193971166448,
+ "grad_norm": 0.32146573066711426,
+ "learning_rate": 0.0006,
+ "loss": 3.49113130569458,
+ "step": 4971
+ },
+ {
+ "epoch": 69.05591961555264,
+ "grad_norm": 0.26019641757011414,
+ "learning_rate": 0.0006,
+ "loss": 3.4609522819519043,
+ "step": 4972
+ },
+ {
+ "epoch": 69.06989951944081,
+ "grad_norm": 0.2116279900074005,
+ "learning_rate": 0.0006,
+ "loss": 3.518007278442383,
+ "step": 4973
+ },
+ {
+ "epoch": 69.08387942332897,
+ "grad_norm": 0.24797578155994415,
+ "learning_rate": 0.0006,
+ "loss": 3.465017318725586,
+ "step": 4974
+ },
+ {
+ "epoch": 69.09785932721712,
+ "grad_norm": 0.2988112270832062,
+ "learning_rate": 0.0006,
+ "loss": 3.46774959564209,
+ "step": 4975
+ },
+ {
+ "epoch": 69.1118392311053,
+ "grad_norm": 0.2741694450378418,
+ "learning_rate": 0.0006,
+ "loss": 3.4726247787475586,
+ "step": 4976
+ },
+ {
+ "epoch": 69.12581913499345,
+ "grad_norm": 0.246512308716774,
+ "learning_rate": 0.0006,
+ "loss": 3.4634053707122803,
+ "step": 4977
+ },
+ {
+ "epoch": 69.1397990388816,
+ "grad_norm": 0.25938132405281067,
+ "learning_rate": 0.0006,
+ "loss": 3.4496707916259766,
+ "step": 4978
+ },
+ {
+ "epoch": 69.15377894276976,
+ "grad_norm": 0.30637112259864807,
+ "learning_rate": 0.0006,
+ "loss": 3.4703760147094727,
+ "step": 4979
+ },
+ {
+ "epoch": 69.16775884665793,
+ "grad_norm": 0.26681914925575256,
+ "learning_rate": 0.0006,
+ "loss": 3.50388240814209,
+ "step": 4980
+ },
+ {
+ "epoch": 69.18173875054609,
+ "grad_norm": 0.24075748026371002,
+ "learning_rate": 0.0006,
+ "loss": 3.517247438430786,
+ "step": 4981
+ },
+ {
+ "epoch": 69.19571865443424,
+ "grad_norm": 0.21730124950408936,
+ "learning_rate": 0.0006,
+ "loss": 3.49320650100708,
+ "step": 4982
+ },
+ {
+ "epoch": 69.20969855832242,
+ "grad_norm": 0.21399953961372375,
+ "learning_rate": 0.0006,
+ "loss": 3.4763529300689697,
+ "step": 4983
+ },
+ {
+ "epoch": 69.22367846221057,
+ "grad_norm": 0.22505059838294983,
+ "learning_rate": 0.0006,
+ "loss": 3.4744338989257812,
+ "step": 4984
+ },
+ {
+ "epoch": 69.23765836609873,
+ "grad_norm": 0.23260554671287537,
+ "learning_rate": 0.0006,
+ "loss": 3.469099760055542,
+ "step": 4985
+ },
+ {
+ "epoch": 69.2516382699869,
+ "grad_norm": 0.2212911993265152,
+ "learning_rate": 0.0006,
+ "loss": 3.484243869781494,
+ "step": 4986
+ },
+ {
+ "epoch": 69.26561817387505,
+ "grad_norm": 0.22414085268974304,
+ "learning_rate": 0.0006,
+ "loss": 3.485083818435669,
+ "step": 4987
+ },
+ {
+ "epoch": 69.27959807776321,
+ "grad_norm": 0.2222541719675064,
+ "learning_rate": 0.0006,
+ "loss": 3.4827499389648438,
+ "step": 4988
+ },
+ {
+ "epoch": 69.29357798165138,
+ "grad_norm": 0.23511181771755219,
+ "learning_rate": 0.0006,
+ "loss": 3.4688282012939453,
+ "step": 4989
+ },
+ {
+ "epoch": 69.30755788553954,
+ "grad_norm": 0.23599068820476532,
+ "learning_rate": 0.0006,
+ "loss": 3.498142719268799,
+ "step": 4990
+ },
+ {
+ "epoch": 69.3215377894277,
+ "grad_norm": 0.22533927857875824,
+ "learning_rate": 0.0006,
+ "loss": 3.4815826416015625,
+ "step": 4991
+ },
+ {
+ "epoch": 69.33551769331586,
+ "grad_norm": 0.2343030720949173,
+ "learning_rate": 0.0006,
+ "loss": 3.483752489089966,
+ "step": 4992
+ },
+ {
+ "epoch": 69.34949759720402,
+ "grad_norm": 0.23283112049102783,
+ "learning_rate": 0.0006,
+ "loss": 3.4877965450286865,
+ "step": 4993
+ },
+ {
+ "epoch": 69.36347750109218,
+ "grad_norm": 0.24869517982006073,
+ "learning_rate": 0.0006,
+ "loss": 3.480337142944336,
+ "step": 4994
+ },
+ {
+ "epoch": 69.37745740498035,
+ "grad_norm": 0.22779154777526855,
+ "learning_rate": 0.0006,
+ "loss": 3.4828710556030273,
+ "step": 4995
+ },
+ {
+ "epoch": 69.3914373088685,
+ "grad_norm": 0.22645261883735657,
+ "learning_rate": 0.0006,
+ "loss": 3.509845018386841,
+ "step": 4996
+ },
+ {
+ "epoch": 69.40541721275666,
+ "grad_norm": 0.2432178109884262,
+ "learning_rate": 0.0006,
+ "loss": 3.4617137908935547,
+ "step": 4997
+ },
+ {
+ "epoch": 69.41939711664482,
+ "grad_norm": 0.2587018311023712,
+ "learning_rate": 0.0006,
+ "loss": 3.4713127613067627,
+ "step": 4998
+ },
+ {
+ "epoch": 69.43337702053299,
+ "grad_norm": 0.21907378733158112,
+ "learning_rate": 0.0006,
+ "loss": 3.509188175201416,
+ "step": 4999
+ },
+ {
+ "epoch": 69.44735692442114,
+ "grad_norm": 0.22740772366523743,
+ "learning_rate": 0.0006,
+ "loss": 3.4754276275634766,
+ "step": 5000
+ },
+ {
+ "epoch": 69.4613368283093,
+ "grad_norm": 0.21934257447719574,
+ "learning_rate": 0.0006,
+ "loss": 3.4663891792297363,
+ "step": 5001
+ },
+ {
+ "epoch": 69.47531673219747,
+ "grad_norm": 0.2244742065668106,
+ "learning_rate": 0.0006,
+ "loss": 3.4800233840942383,
+ "step": 5002
+ },
+ {
+ "epoch": 69.48929663608563,
+ "grad_norm": 0.20470912754535675,
+ "learning_rate": 0.0006,
+ "loss": 3.5089359283447266,
+ "step": 5003
+ },
+ {
+ "epoch": 69.50327653997378,
+ "grad_norm": 0.21532751619815826,
+ "learning_rate": 0.0006,
+ "loss": 3.5029287338256836,
+ "step": 5004
+ },
+ {
+ "epoch": 69.51725644386195,
+ "grad_norm": 0.2311217337846756,
+ "learning_rate": 0.0006,
+ "loss": 3.5031962394714355,
+ "step": 5005
+ },
+ {
+ "epoch": 69.53123634775011,
+ "grad_norm": 0.22248436510562897,
+ "learning_rate": 0.0006,
+ "loss": 3.5059356689453125,
+ "step": 5006
+ },
+ {
+ "epoch": 69.54521625163827,
+ "grad_norm": 0.2108408361673355,
+ "learning_rate": 0.0006,
+ "loss": 3.498697280883789,
+ "step": 5007
+ },
+ {
+ "epoch": 69.55919615552644,
+ "grad_norm": 0.22833184897899628,
+ "learning_rate": 0.0006,
+ "loss": 3.505685806274414,
+ "step": 5008
+ },
+ {
+ "epoch": 69.57317605941459,
+ "grad_norm": 0.22630111873149872,
+ "learning_rate": 0.0006,
+ "loss": 3.497771978378296,
+ "step": 5009
+ },
+ {
+ "epoch": 69.58715596330275,
+ "grad_norm": 0.23363569378852844,
+ "learning_rate": 0.0006,
+ "loss": 3.5422916412353516,
+ "step": 5010
+ },
+ {
+ "epoch": 69.60113586719092,
+ "grad_norm": 0.23720940947532654,
+ "learning_rate": 0.0006,
+ "loss": 3.504817008972168,
+ "step": 5011
+ },
+ {
+ "epoch": 69.61511577107908,
+ "grad_norm": 0.22822913527488708,
+ "learning_rate": 0.0006,
+ "loss": 3.51149320602417,
+ "step": 5012
+ },
+ {
+ "epoch": 69.62909567496723,
+ "grad_norm": 0.24143314361572266,
+ "learning_rate": 0.0006,
+ "loss": 3.509063720703125,
+ "step": 5013
+ },
+ {
+ "epoch": 69.6430755788554,
+ "grad_norm": 0.2394775152206421,
+ "learning_rate": 0.0006,
+ "loss": 3.5275425910949707,
+ "step": 5014
+ },
+ {
+ "epoch": 69.65705548274356,
+ "grad_norm": 0.23898433148860931,
+ "learning_rate": 0.0006,
+ "loss": 3.5251870155334473,
+ "step": 5015
+ },
+ {
+ "epoch": 69.67103538663171,
+ "grad_norm": 0.22647695243358612,
+ "learning_rate": 0.0006,
+ "loss": 3.4790940284729004,
+ "step": 5016
+ },
+ {
+ "epoch": 69.68501529051987,
+ "grad_norm": 0.23094546794891357,
+ "learning_rate": 0.0006,
+ "loss": 3.515676975250244,
+ "step": 5017
+ },
+ {
+ "epoch": 69.69899519440804,
+ "grad_norm": 0.21791698038578033,
+ "learning_rate": 0.0006,
+ "loss": 3.4938859939575195,
+ "step": 5018
+ },
+ {
+ "epoch": 69.7129750982962,
+ "grad_norm": 0.2420767843723297,
+ "learning_rate": 0.0006,
+ "loss": 3.489206075668335,
+ "step": 5019
+ },
+ {
+ "epoch": 69.72695500218435,
+ "grad_norm": 0.22724151611328125,
+ "learning_rate": 0.0006,
+ "loss": 3.502804756164551,
+ "step": 5020
+ },
+ {
+ "epoch": 69.74093490607252,
+ "grad_norm": 0.23462660610675812,
+ "learning_rate": 0.0006,
+ "loss": 3.4947867393493652,
+ "step": 5021
+ },
+ {
+ "epoch": 69.75491480996068,
+ "grad_norm": 0.2545832097530365,
+ "learning_rate": 0.0006,
+ "loss": 3.500843048095703,
+ "step": 5022
+ },
+ {
+ "epoch": 69.76889471384884,
+ "grad_norm": 0.26692283153533936,
+ "learning_rate": 0.0006,
+ "loss": 3.5054852962493896,
+ "step": 5023
+ },
+ {
+ "epoch": 69.78287461773701,
+ "grad_norm": 0.22788259387016296,
+ "learning_rate": 0.0006,
+ "loss": 3.5261473655700684,
+ "step": 5024
+ },
+ {
+ "epoch": 69.79685452162516,
+ "grad_norm": 0.24453137814998627,
+ "learning_rate": 0.0006,
+ "loss": 3.5090155601501465,
+ "step": 5025
+ },
+ {
+ "epoch": 69.81083442551332,
+ "grad_norm": 0.27876126766204834,
+ "learning_rate": 0.0006,
+ "loss": 3.5091753005981445,
+ "step": 5026
+ },
+ {
+ "epoch": 69.82481432940149,
+ "grad_norm": 0.280249685049057,
+ "learning_rate": 0.0006,
+ "loss": 3.5129857063293457,
+ "step": 5027
+ },
+ {
+ "epoch": 69.83879423328965,
+ "grad_norm": 0.2260117530822754,
+ "learning_rate": 0.0006,
+ "loss": 3.5320475101470947,
+ "step": 5028
+ },
+ {
+ "epoch": 69.8527741371778,
+ "grad_norm": 0.2237965613603592,
+ "learning_rate": 0.0006,
+ "loss": 3.5061261653900146,
+ "step": 5029
+ },
+ {
+ "epoch": 69.86675404106597,
+ "grad_norm": 0.226779967546463,
+ "learning_rate": 0.0006,
+ "loss": 3.5076608657836914,
+ "step": 5030
+ },
+ {
+ "epoch": 69.88073394495413,
+ "grad_norm": 0.23626334965229034,
+ "learning_rate": 0.0006,
+ "loss": 3.50716495513916,
+ "step": 5031
+ },
+ {
+ "epoch": 69.89471384884229,
+ "grad_norm": 0.2639276385307312,
+ "learning_rate": 0.0006,
+ "loss": 3.5299901962280273,
+ "step": 5032
+ },
+ {
+ "epoch": 69.90869375273044,
+ "grad_norm": 0.23369482159614563,
+ "learning_rate": 0.0006,
+ "loss": 3.5289621353149414,
+ "step": 5033
+ },
+ {
+ "epoch": 69.92267365661861,
+ "grad_norm": 0.23041120171546936,
+ "learning_rate": 0.0006,
+ "loss": 3.5174753665924072,
+ "step": 5034
+ },
+ {
+ "epoch": 69.93665356050677,
+ "grad_norm": 0.21268987655639648,
+ "learning_rate": 0.0006,
+ "loss": 3.506927967071533,
+ "step": 5035
+ },
+ {
+ "epoch": 69.95063346439493,
+ "grad_norm": 0.22524571418762207,
+ "learning_rate": 0.0006,
+ "loss": 3.5054068565368652,
+ "step": 5036
+ },
+ {
+ "epoch": 69.9646133682831,
+ "grad_norm": 0.26068753004074097,
+ "learning_rate": 0.0006,
+ "loss": 3.502107620239258,
+ "step": 5037
+ },
+ {
+ "epoch": 69.97859327217125,
+ "grad_norm": 0.2473640888929367,
+ "learning_rate": 0.0006,
+ "loss": 3.4879817962646484,
+ "step": 5038
+ },
+ {
+ "epoch": 69.99257317605941,
+ "grad_norm": 0.23933477699756622,
+ "learning_rate": 0.0006,
+ "loss": 3.52518892288208,
+ "step": 5039
+ },
+ {
+ "epoch": 70.0,
+ "grad_norm": 0.26498401165008545,
+ "learning_rate": 0.0006,
+ "loss": 3.528074026107788,
+ "step": 5040
+ },
+ {
+ "epoch": 70.0,
+ "eval_loss": 3.9862265586853027,
+ "eval_runtime": 45.1344,
+ "eval_samples_per_second": 54.105,
+ "eval_steps_per_second": 3.39,
+ "step": 5040
+ },
+ {
+ "epoch": 70.01397990388816,
+ "grad_norm": 0.23711830377578735,
+ "learning_rate": 0.0006,
+ "loss": 3.4622411727905273,
+ "step": 5041
+ },
+ {
+ "epoch": 70.02795980777633,
+ "grad_norm": 0.25422438979148865,
+ "learning_rate": 0.0006,
+ "loss": 3.4546890258789062,
+ "step": 5042
+ },
+ {
+ "epoch": 70.04193971166448,
+ "grad_norm": 0.2520093619823456,
+ "learning_rate": 0.0006,
+ "loss": 3.4625046253204346,
+ "step": 5043
+ },
+ {
+ "epoch": 70.05591961555264,
+ "grad_norm": 0.23353877663612366,
+ "learning_rate": 0.0006,
+ "loss": 3.5090699195861816,
+ "step": 5044
+ },
+ {
+ "epoch": 70.06989951944081,
+ "grad_norm": 0.2775326669216156,
+ "learning_rate": 0.0006,
+ "loss": 3.4860758781433105,
+ "step": 5045
+ },
+ {
+ "epoch": 70.08387942332897,
+ "grad_norm": 0.297573447227478,
+ "learning_rate": 0.0006,
+ "loss": 3.5181596279144287,
+ "step": 5046
+ },
+ {
+ "epoch": 70.09785932721712,
+ "grad_norm": 0.29662513732910156,
+ "learning_rate": 0.0006,
+ "loss": 3.4715771675109863,
+ "step": 5047
+ },
+ {
+ "epoch": 70.1118392311053,
+ "grad_norm": 0.2619902193546295,
+ "learning_rate": 0.0006,
+ "loss": 3.430412769317627,
+ "step": 5048
+ },
+ {
+ "epoch": 70.12581913499345,
+ "grad_norm": 0.21740001440048218,
+ "learning_rate": 0.0006,
+ "loss": 3.473442792892456,
+ "step": 5049
+ },
+ {
+ "epoch": 70.1397990388816,
+ "grad_norm": 0.221281036734581,
+ "learning_rate": 0.0006,
+ "loss": 3.4651594161987305,
+ "step": 5050
+ },
+ {
+ "epoch": 70.15377894276976,
+ "grad_norm": 0.21638400852680206,
+ "learning_rate": 0.0006,
+ "loss": 3.475860118865967,
+ "step": 5051
+ },
+ {
+ "epoch": 70.16775884665793,
+ "grad_norm": 0.21825452148914337,
+ "learning_rate": 0.0006,
+ "loss": 3.467684268951416,
+ "step": 5052
+ },
+ {
+ "epoch": 70.18173875054609,
+ "grad_norm": 0.22535094618797302,
+ "learning_rate": 0.0006,
+ "loss": 3.4543721675872803,
+ "step": 5053
+ },
+ {
+ "epoch": 70.19571865443424,
+ "grad_norm": 0.22751732170581818,
+ "learning_rate": 0.0006,
+ "loss": 3.480132818222046,
+ "step": 5054
+ },
+ {
+ "epoch": 70.20969855832242,
+ "grad_norm": 0.21935929358005524,
+ "learning_rate": 0.0006,
+ "loss": 3.4883337020874023,
+ "step": 5055
+ },
+ {
+ "epoch": 70.22367846221057,
+ "grad_norm": 0.2164992392063141,
+ "learning_rate": 0.0006,
+ "loss": 3.4758238792419434,
+ "step": 5056
+ },
+ {
+ "epoch": 70.23765836609873,
+ "grad_norm": 0.2284509837627411,
+ "learning_rate": 0.0006,
+ "loss": 3.4639101028442383,
+ "step": 5057
+ },
+ {
+ "epoch": 70.2516382699869,
+ "grad_norm": 0.2616494297981262,
+ "learning_rate": 0.0006,
+ "loss": 3.4850382804870605,
+ "step": 5058
+ },
+ {
+ "epoch": 70.26561817387505,
+ "grad_norm": 0.25582870841026306,
+ "learning_rate": 0.0006,
+ "loss": 3.4912681579589844,
+ "step": 5059
+ },
+ {
+ "epoch": 70.27959807776321,
+ "grad_norm": 0.23707713186740875,
+ "learning_rate": 0.0006,
+ "loss": 3.493809700012207,
+ "step": 5060
+ },
+ {
+ "epoch": 70.29357798165138,
+ "grad_norm": 0.233265221118927,
+ "learning_rate": 0.0006,
+ "loss": 3.5143074989318848,
+ "step": 5061
+ },
+ {
+ "epoch": 70.30755788553954,
+ "grad_norm": 0.2607567012310028,
+ "learning_rate": 0.0006,
+ "loss": 3.5042223930358887,
+ "step": 5062
+ },
+ {
+ "epoch": 70.3215377894277,
+ "grad_norm": 0.21082724630832672,
+ "learning_rate": 0.0006,
+ "loss": 3.493569850921631,
+ "step": 5063
+ },
+ {
+ "epoch": 70.33551769331586,
+ "grad_norm": 0.2609533369541168,
+ "learning_rate": 0.0006,
+ "loss": 3.503533363342285,
+ "step": 5064
+ },
+ {
+ "epoch": 70.34949759720402,
+ "grad_norm": 0.2863939702510834,
+ "learning_rate": 0.0006,
+ "loss": 3.465226173400879,
+ "step": 5065
+ },
+ {
+ "epoch": 70.36347750109218,
+ "grad_norm": 0.26796457171440125,
+ "learning_rate": 0.0006,
+ "loss": 3.517176866531372,
+ "step": 5066
+ },
+ {
+ "epoch": 70.37745740498035,
+ "grad_norm": 0.2766019105911255,
+ "learning_rate": 0.0006,
+ "loss": 3.5126867294311523,
+ "step": 5067
+ },
+ {
+ "epoch": 70.3914373088685,
+ "grad_norm": 0.24560758471488953,
+ "learning_rate": 0.0006,
+ "loss": 3.515030860900879,
+ "step": 5068
+ },
+ {
+ "epoch": 70.40541721275666,
+ "grad_norm": 0.20993568003177643,
+ "learning_rate": 0.0006,
+ "loss": 3.4899773597717285,
+ "step": 5069
+ },
+ {
+ "epoch": 70.41939711664482,
+ "grad_norm": 0.20855914056301117,
+ "learning_rate": 0.0006,
+ "loss": 3.4906468391418457,
+ "step": 5070
+ },
+ {
+ "epoch": 70.43337702053299,
+ "grad_norm": 0.2210836559534073,
+ "learning_rate": 0.0006,
+ "loss": 3.482866048812866,
+ "step": 5071
+ },
+ {
+ "epoch": 70.44735692442114,
+ "grad_norm": 0.2210542857646942,
+ "learning_rate": 0.0006,
+ "loss": 3.501636028289795,
+ "step": 5072
+ },
+ {
+ "epoch": 70.4613368283093,
+ "grad_norm": 0.21207138895988464,
+ "learning_rate": 0.0006,
+ "loss": 3.519104242324829,
+ "step": 5073
+ },
+ {
+ "epoch": 70.47531673219747,
+ "grad_norm": 0.19901272654533386,
+ "learning_rate": 0.0006,
+ "loss": 3.486097574234009,
+ "step": 5074
+ },
+ {
+ "epoch": 70.48929663608563,
+ "grad_norm": 0.21536870300769806,
+ "learning_rate": 0.0006,
+ "loss": 3.476889133453369,
+ "step": 5075
+ },
+ {
+ "epoch": 70.50327653997378,
+ "grad_norm": 0.22002893686294556,
+ "learning_rate": 0.0006,
+ "loss": 3.5007381439208984,
+ "step": 5076
+ },
+ {
+ "epoch": 70.51725644386195,
+ "grad_norm": 0.20761331915855408,
+ "learning_rate": 0.0006,
+ "loss": 3.4693777561187744,
+ "step": 5077
+ },
+ {
+ "epoch": 70.53123634775011,
+ "grad_norm": 0.2145029455423355,
+ "learning_rate": 0.0006,
+ "loss": 3.438809871673584,
+ "step": 5078
+ },
+ {
+ "epoch": 70.54521625163827,
+ "grad_norm": 0.1961168795824051,
+ "learning_rate": 0.0006,
+ "loss": 3.4975242614746094,
+ "step": 5079
+ },
+ {
+ "epoch": 70.55919615552644,
+ "grad_norm": 0.20411522686481476,
+ "learning_rate": 0.0006,
+ "loss": 3.4908413887023926,
+ "step": 5080
+ },
+ {
+ "epoch": 70.57317605941459,
+ "grad_norm": 0.22646412253379822,
+ "learning_rate": 0.0006,
+ "loss": 3.4542629718780518,
+ "step": 5081
+ },
+ {
+ "epoch": 70.58715596330275,
+ "grad_norm": 0.2181357741355896,
+ "learning_rate": 0.0006,
+ "loss": 3.522963047027588,
+ "step": 5082
+ },
+ {
+ "epoch": 70.60113586719092,
+ "grad_norm": 0.23564083874225616,
+ "learning_rate": 0.0006,
+ "loss": 3.475222110748291,
+ "step": 5083
+ },
+ {
+ "epoch": 70.61511577107908,
+ "grad_norm": 0.22964410483837128,
+ "learning_rate": 0.0006,
+ "loss": 3.517993927001953,
+ "step": 5084
+ },
+ {
+ "epoch": 70.62909567496723,
+ "grad_norm": 0.20958925783634186,
+ "learning_rate": 0.0006,
+ "loss": 3.4651894569396973,
+ "step": 5085
+ },
+ {
+ "epoch": 70.6430755788554,
+ "grad_norm": 0.19693933427333832,
+ "learning_rate": 0.0006,
+ "loss": 3.4992640018463135,
+ "step": 5086
+ },
+ {
+ "epoch": 70.65705548274356,
+ "grad_norm": 0.22487083077430725,
+ "learning_rate": 0.0006,
+ "loss": 3.502739906311035,
+ "step": 5087
+ },
+ {
+ "epoch": 70.67103538663171,
+ "grad_norm": 0.22145701944828033,
+ "learning_rate": 0.0006,
+ "loss": 3.4855666160583496,
+ "step": 5088
+ },
+ {
+ "epoch": 70.68501529051987,
+ "grad_norm": 0.2145165652036667,
+ "learning_rate": 0.0006,
+ "loss": 3.5234193801879883,
+ "step": 5089
+ },
+ {
+ "epoch": 70.69899519440804,
+ "grad_norm": 0.2453656941652298,
+ "learning_rate": 0.0006,
+ "loss": 3.497983932495117,
+ "step": 5090
+ },
+ {
+ "epoch": 70.7129750982962,
+ "grad_norm": 0.2324638068675995,
+ "learning_rate": 0.0006,
+ "loss": 3.487849712371826,
+ "step": 5091
+ },
+ {
+ "epoch": 70.72695500218435,
+ "grad_norm": 0.2176654040813446,
+ "learning_rate": 0.0006,
+ "loss": 3.496427059173584,
+ "step": 5092
+ },
+ {
+ "epoch": 70.74093490607252,
+ "grad_norm": 0.20912162959575653,
+ "learning_rate": 0.0006,
+ "loss": 3.4953227043151855,
+ "step": 5093
+ },
+ {
+ "epoch": 70.75491480996068,
+ "grad_norm": 0.1988947093486786,
+ "learning_rate": 0.0006,
+ "loss": 3.4566853046417236,
+ "step": 5094
+ },
+ {
+ "epoch": 70.76889471384884,
+ "grad_norm": 0.23707804083824158,
+ "learning_rate": 0.0006,
+ "loss": 3.5447797775268555,
+ "step": 5095
+ },
+ {
+ "epoch": 70.78287461773701,
+ "grad_norm": 0.24296057224273682,
+ "learning_rate": 0.0006,
+ "loss": 3.5124454498291016,
+ "step": 5096
+ },
+ {
+ "epoch": 70.79685452162516,
+ "grad_norm": 0.21297545731067657,
+ "learning_rate": 0.0006,
+ "loss": 3.5096077919006348,
+ "step": 5097
+ },
+ {
+ "epoch": 70.81083442551332,
+ "grad_norm": 0.20642022788524628,
+ "learning_rate": 0.0006,
+ "loss": 3.5008912086486816,
+ "step": 5098
+ },
+ {
+ "epoch": 70.82481432940149,
+ "grad_norm": 0.2428225725889206,
+ "learning_rate": 0.0006,
+ "loss": 3.511782169342041,
+ "step": 5099
+ },
+ {
+ "epoch": 70.83879423328965,
+ "grad_norm": 0.2369006872177124,
+ "learning_rate": 0.0006,
+ "loss": 3.5016889572143555,
+ "step": 5100
+ },
+ {
+ "epoch": 70.8527741371778,
+ "grad_norm": 0.2299226075410843,
+ "learning_rate": 0.0006,
+ "loss": 3.5024492740631104,
+ "step": 5101
+ },
+ {
+ "epoch": 70.86675404106597,
+ "grad_norm": 0.2069583684206009,
+ "learning_rate": 0.0006,
+ "loss": 3.5401811599731445,
+ "step": 5102
+ },
+ {
+ "epoch": 70.88073394495413,
+ "grad_norm": 0.21548444032669067,
+ "learning_rate": 0.0006,
+ "loss": 3.506899833679199,
+ "step": 5103
+ },
+ {
+ "epoch": 70.89471384884229,
+ "grad_norm": 0.24152785539627075,
+ "learning_rate": 0.0006,
+ "loss": 3.517747163772583,
+ "step": 5104
+ },
+ {
+ "epoch": 70.90869375273044,
+ "grad_norm": 0.2301841676235199,
+ "learning_rate": 0.0006,
+ "loss": 3.4825563430786133,
+ "step": 5105
+ },
+ {
+ "epoch": 70.92267365661861,
+ "grad_norm": 0.20378732681274414,
+ "learning_rate": 0.0006,
+ "loss": 3.51491641998291,
+ "step": 5106
+ },
+ {
+ "epoch": 70.93665356050677,
+ "grad_norm": 0.23954246938228607,
+ "learning_rate": 0.0006,
+ "loss": 3.505157709121704,
+ "step": 5107
+ },
+ {
+ "epoch": 70.95063346439493,
+ "grad_norm": 0.24072174727916718,
+ "learning_rate": 0.0006,
+ "loss": 3.5006208419799805,
+ "step": 5108
+ },
+ {
+ "epoch": 70.9646133682831,
+ "grad_norm": 0.2187308371067047,
+ "learning_rate": 0.0006,
+ "loss": 3.5031535625457764,
+ "step": 5109
+ },
+ {
+ "epoch": 70.97859327217125,
+ "grad_norm": 0.22237645089626312,
+ "learning_rate": 0.0006,
+ "loss": 3.5143189430236816,
+ "step": 5110
+ },
+ {
+ "epoch": 70.99257317605941,
+ "grad_norm": 0.22169137001037598,
+ "learning_rate": 0.0006,
+ "loss": 3.4963934421539307,
+ "step": 5111
+ },
+ {
+ "epoch": 71.0,
+ "grad_norm": 0.257404088973999,
+ "learning_rate": 0.0006,
+ "loss": 3.5386219024658203,
+ "step": 5112
+ },
+ {
+ "epoch": 71.0,
+ "eval_loss": 3.9918019771575928,
+ "eval_runtime": 46.6377,
+ "eval_samples_per_second": 52.361,
+ "eval_steps_per_second": 3.281,
+ "step": 5112
+ },
+ {
+ "epoch": 71.01397990388816,
+ "grad_norm": 0.22763817012310028,
+ "learning_rate": 0.0006,
+ "loss": 3.4723024368286133,
+ "step": 5113
+ },
+ {
+ "epoch": 71.02795980777633,
+ "grad_norm": 0.22345447540283203,
+ "learning_rate": 0.0006,
+ "loss": 3.491352081298828,
+ "step": 5114
+ },
+ {
+ "epoch": 71.04193971166448,
+ "grad_norm": 0.28975343704223633,
+ "learning_rate": 0.0006,
+ "loss": 3.474012851715088,
+ "step": 5115
+ },
+ {
+ "epoch": 71.05591961555264,
+ "grad_norm": 0.34715282917022705,
+ "learning_rate": 0.0006,
+ "loss": 3.460543155670166,
+ "step": 5116
+ },
+ {
+ "epoch": 71.06989951944081,
+ "grad_norm": 0.3298324942588806,
+ "learning_rate": 0.0006,
+ "loss": 3.481487512588501,
+ "step": 5117
+ },
+ {
+ "epoch": 71.08387942332897,
+ "grad_norm": 0.25802168250083923,
+ "learning_rate": 0.0006,
+ "loss": 3.472047805786133,
+ "step": 5118
+ },
+ {
+ "epoch": 71.09785932721712,
+ "grad_norm": 0.27691733837127686,
+ "learning_rate": 0.0006,
+ "loss": 3.471902847290039,
+ "step": 5119
+ },
+ {
+ "epoch": 71.1118392311053,
+ "grad_norm": 0.3614637851715088,
+ "learning_rate": 0.0006,
+ "loss": 3.482367992401123,
+ "step": 5120
+ },
+ {
+ "epoch": 71.12581913499345,
+ "grad_norm": 0.3808763027191162,
+ "learning_rate": 0.0006,
+ "loss": 3.468003273010254,
+ "step": 5121
+ },
+ {
+ "epoch": 71.1397990388816,
+ "grad_norm": 0.30960485339164734,
+ "learning_rate": 0.0006,
+ "loss": 3.4756040573120117,
+ "step": 5122
+ },
+ {
+ "epoch": 71.15377894276976,
+ "grad_norm": 0.23345506191253662,
+ "learning_rate": 0.0006,
+ "loss": 3.4682583808898926,
+ "step": 5123
+ },
+ {
+ "epoch": 71.16775884665793,
+ "grad_norm": 0.23517020046710968,
+ "learning_rate": 0.0006,
+ "loss": 3.481360912322998,
+ "step": 5124
+ },
+ {
+ "epoch": 71.18173875054609,
+ "grad_norm": 0.23654034733772278,
+ "learning_rate": 0.0006,
+ "loss": 3.4833765029907227,
+ "step": 5125
+ },
+ {
+ "epoch": 71.19571865443424,
+ "grad_norm": 0.2085893303155899,
+ "learning_rate": 0.0006,
+ "loss": 3.486340045928955,
+ "step": 5126
+ },
+ {
+ "epoch": 71.20969855832242,
+ "grad_norm": 0.23823733627796173,
+ "learning_rate": 0.0006,
+ "loss": 3.477477550506592,
+ "step": 5127
+ },
+ {
+ "epoch": 71.22367846221057,
+ "grad_norm": 0.2195197194814682,
+ "learning_rate": 0.0006,
+ "loss": 3.4914462566375732,
+ "step": 5128
+ },
+ {
+ "epoch": 71.23765836609873,
+ "grad_norm": 0.20015183091163635,
+ "learning_rate": 0.0006,
+ "loss": 3.4731597900390625,
+ "step": 5129
+ },
+ {
+ "epoch": 71.2516382699869,
+ "grad_norm": 0.22865013778209686,
+ "learning_rate": 0.0006,
+ "loss": 3.474112033843994,
+ "step": 5130
+ },
+ {
+ "epoch": 71.26561817387505,
+ "grad_norm": 0.23216912150382996,
+ "learning_rate": 0.0006,
+ "loss": 3.4641566276550293,
+ "step": 5131
+ },
+ {
+ "epoch": 71.27959807776321,
+ "grad_norm": 0.229189932346344,
+ "learning_rate": 0.0006,
+ "loss": 3.499788999557495,
+ "step": 5132
+ },
+ {
+ "epoch": 71.29357798165138,
+ "grad_norm": 0.21727289259433746,
+ "learning_rate": 0.0006,
+ "loss": 3.4823837280273438,
+ "step": 5133
+ },
+ {
+ "epoch": 71.30755788553954,
+ "grad_norm": 0.21023842692375183,
+ "learning_rate": 0.0006,
+ "loss": 3.4864656925201416,
+ "step": 5134
+ },
+ {
+ "epoch": 71.3215377894277,
+ "grad_norm": 0.2303229570388794,
+ "learning_rate": 0.0006,
+ "loss": 3.4989194869995117,
+ "step": 5135
+ },
+ {
+ "epoch": 71.33551769331586,
+ "grad_norm": 0.2317735254764557,
+ "learning_rate": 0.0006,
+ "loss": 3.460954189300537,
+ "step": 5136
+ },
+ {
+ "epoch": 71.34949759720402,
+ "grad_norm": 0.22612634301185608,
+ "learning_rate": 0.0006,
+ "loss": 3.5102381706237793,
+ "step": 5137
+ },
+ {
+ "epoch": 71.36347750109218,
+ "grad_norm": 0.23815463483333588,
+ "learning_rate": 0.0006,
+ "loss": 3.446244239807129,
+ "step": 5138
+ },
+ {
+ "epoch": 71.37745740498035,
+ "grad_norm": 0.22914297878742218,
+ "learning_rate": 0.0006,
+ "loss": 3.4789650440216064,
+ "step": 5139
+ },
+ {
+ "epoch": 71.3914373088685,
+ "grad_norm": 0.22563296556472778,
+ "learning_rate": 0.0006,
+ "loss": 3.490419864654541,
+ "step": 5140
+ },
+ {
+ "epoch": 71.40541721275666,
+ "grad_norm": 0.21704672276973724,
+ "learning_rate": 0.0006,
+ "loss": 3.503981113433838,
+ "step": 5141
+ },
+ {
+ "epoch": 71.41939711664482,
+ "grad_norm": 0.2196325659751892,
+ "learning_rate": 0.0006,
+ "loss": 3.4878809452056885,
+ "step": 5142
+ },
+ {
+ "epoch": 71.43337702053299,
+ "grad_norm": 0.21130836009979248,
+ "learning_rate": 0.0006,
+ "loss": 3.4546194076538086,
+ "step": 5143
+ },
+ {
+ "epoch": 71.44735692442114,
+ "grad_norm": 0.21542105078697205,
+ "learning_rate": 0.0006,
+ "loss": 3.4721519947052,
+ "step": 5144
+ },
+ {
+ "epoch": 71.4613368283093,
+ "grad_norm": 0.22387142479419708,
+ "learning_rate": 0.0006,
+ "loss": 3.4667282104492188,
+ "step": 5145
+ },
+ {
+ "epoch": 71.47531673219747,
+ "grad_norm": 0.23259611427783966,
+ "learning_rate": 0.0006,
+ "loss": 3.467545986175537,
+ "step": 5146
+ },
+ {
+ "epoch": 71.48929663608563,
+ "grad_norm": 0.2771410644054413,
+ "learning_rate": 0.0006,
+ "loss": 3.4783425331115723,
+ "step": 5147
+ },
+ {
+ "epoch": 71.50327653997378,
+ "grad_norm": 0.29756635427474976,
+ "learning_rate": 0.0006,
+ "loss": 3.492600440979004,
+ "step": 5148
+ },
+ {
+ "epoch": 71.51725644386195,
+ "grad_norm": 0.26306024193763733,
+ "learning_rate": 0.0006,
+ "loss": 3.510770559310913,
+ "step": 5149
+ },
+ {
+ "epoch": 71.53123634775011,
+ "grad_norm": 0.20751827955245972,
+ "learning_rate": 0.0006,
+ "loss": 3.466935634613037,
+ "step": 5150
+ },
+ {
+ "epoch": 71.54521625163827,
+ "grad_norm": 0.21394366025924683,
+ "learning_rate": 0.0006,
+ "loss": 3.436068058013916,
+ "step": 5151
+ },
+ {
+ "epoch": 71.55919615552644,
+ "grad_norm": 0.25711846351623535,
+ "learning_rate": 0.0006,
+ "loss": 3.484564781188965,
+ "step": 5152
+ },
+ {
+ "epoch": 71.57317605941459,
+ "grad_norm": 0.29579317569732666,
+ "learning_rate": 0.0006,
+ "loss": 3.4905800819396973,
+ "step": 5153
+ },
+ {
+ "epoch": 71.58715596330275,
+ "grad_norm": 0.3033061921596527,
+ "learning_rate": 0.0006,
+ "loss": 3.508679151535034,
+ "step": 5154
+ },
+ {
+ "epoch": 71.60113586719092,
+ "grad_norm": 0.2520291805267334,
+ "learning_rate": 0.0006,
+ "loss": 3.5057215690612793,
+ "step": 5155
+ },
+ {
+ "epoch": 71.61511577107908,
+ "grad_norm": 0.226261705160141,
+ "learning_rate": 0.0006,
+ "loss": 3.5037670135498047,
+ "step": 5156
+ },
+ {
+ "epoch": 71.62909567496723,
+ "grad_norm": 0.20596027374267578,
+ "learning_rate": 0.0006,
+ "loss": 3.495021343231201,
+ "step": 5157
+ },
+ {
+ "epoch": 71.6430755788554,
+ "grad_norm": 0.20619751513004303,
+ "learning_rate": 0.0006,
+ "loss": 3.4958693981170654,
+ "step": 5158
+ },
+ {
+ "epoch": 71.65705548274356,
+ "grad_norm": 0.24510066211223602,
+ "learning_rate": 0.0006,
+ "loss": 3.5301260948181152,
+ "step": 5159
+ },
+ {
+ "epoch": 71.67103538663171,
+ "grad_norm": 0.26109805703163147,
+ "learning_rate": 0.0006,
+ "loss": 3.5022244453430176,
+ "step": 5160
+ },
+ {
+ "epoch": 71.68501529051987,
+ "grad_norm": 0.28911513090133667,
+ "learning_rate": 0.0006,
+ "loss": 3.488947868347168,
+ "step": 5161
+ },
+ {
+ "epoch": 71.69899519440804,
+ "grad_norm": 0.2741655111312866,
+ "learning_rate": 0.0006,
+ "loss": 3.4888229370117188,
+ "step": 5162
+ },
+ {
+ "epoch": 71.7129750982962,
+ "grad_norm": 0.2789880633354187,
+ "learning_rate": 0.0006,
+ "loss": 3.4911744594573975,
+ "step": 5163
+ },
+ {
+ "epoch": 71.72695500218435,
+ "grad_norm": 0.23872195184230804,
+ "learning_rate": 0.0006,
+ "loss": 3.5175111293792725,
+ "step": 5164
+ },
+ {
+ "epoch": 71.74093490607252,
+ "grad_norm": 0.23090124130249023,
+ "learning_rate": 0.0006,
+ "loss": 3.477285861968994,
+ "step": 5165
+ },
+ {
+ "epoch": 71.75491480996068,
+ "grad_norm": 0.25918251276016235,
+ "learning_rate": 0.0006,
+ "loss": 3.5374622344970703,
+ "step": 5166
+ },
+ {
+ "epoch": 71.76889471384884,
+ "grad_norm": 0.28394266963005066,
+ "learning_rate": 0.0006,
+ "loss": 3.505443572998047,
+ "step": 5167
+ },
+ {
+ "epoch": 71.78287461773701,
+ "grad_norm": 0.29756471514701843,
+ "learning_rate": 0.0006,
+ "loss": 3.4858479499816895,
+ "step": 5168
+ },
+ {
+ "epoch": 71.79685452162516,
+ "grad_norm": 0.2913147211074829,
+ "learning_rate": 0.0006,
+ "loss": 3.4602723121643066,
+ "step": 5169
+ },
+ {
+ "epoch": 71.81083442551332,
+ "grad_norm": 0.23923781514167786,
+ "learning_rate": 0.0006,
+ "loss": 3.4713358879089355,
+ "step": 5170
+ },
+ {
+ "epoch": 71.82481432940149,
+ "grad_norm": 0.23478655517101288,
+ "learning_rate": 0.0006,
+ "loss": 3.4848878383636475,
+ "step": 5171
+ },
+ {
+ "epoch": 71.83879423328965,
+ "grad_norm": 0.2668255865573883,
+ "learning_rate": 0.0006,
+ "loss": 3.507920742034912,
+ "step": 5172
+ },
+ {
+ "epoch": 71.8527741371778,
+ "grad_norm": 0.2818165719509125,
+ "learning_rate": 0.0006,
+ "loss": 3.5128116607666016,
+ "step": 5173
+ },
+ {
+ "epoch": 71.86675404106597,
+ "grad_norm": 0.22830909490585327,
+ "learning_rate": 0.0006,
+ "loss": 3.4789090156555176,
+ "step": 5174
+ },
+ {
+ "epoch": 71.88073394495413,
+ "grad_norm": 0.2291419357061386,
+ "learning_rate": 0.0006,
+ "loss": 3.4977774620056152,
+ "step": 5175
+ },
+ {
+ "epoch": 71.89471384884229,
+ "grad_norm": 0.22237083315849304,
+ "learning_rate": 0.0006,
+ "loss": 3.5563011169433594,
+ "step": 5176
+ },
+ {
+ "epoch": 71.90869375273044,
+ "grad_norm": 0.2287488579750061,
+ "learning_rate": 0.0006,
+ "loss": 3.515289783477783,
+ "step": 5177
+ },
+ {
+ "epoch": 71.92267365661861,
+ "grad_norm": 0.21992293000221252,
+ "learning_rate": 0.0006,
+ "loss": 3.5213077068328857,
+ "step": 5178
+ },
+ {
+ "epoch": 71.93665356050677,
+ "grad_norm": 0.21338967978954315,
+ "learning_rate": 0.0006,
+ "loss": 3.5168190002441406,
+ "step": 5179
+ },
+ {
+ "epoch": 71.95063346439493,
+ "grad_norm": 0.2198970913887024,
+ "learning_rate": 0.0006,
+ "loss": 3.517268180847168,
+ "step": 5180
+ },
+ {
+ "epoch": 71.9646133682831,
+ "grad_norm": 0.2309885025024414,
+ "learning_rate": 0.0006,
+ "loss": 3.5538675785064697,
+ "step": 5181
+ },
+ {
+ "epoch": 71.97859327217125,
+ "grad_norm": 0.23529282212257385,
+ "learning_rate": 0.0006,
+ "loss": 3.477951765060425,
+ "step": 5182
+ },
+ {
+ "epoch": 71.99257317605941,
+ "grad_norm": 0.2553477883338928,
+ "learning_rate": 0.0006,
+ "loss": 3.502894878387451,
+ "step": 5183
+ },
+ {
+ "epoch": 72.0,
+ "grad_norm": 0.2943936288356781,
+ "learning_rate": 0.0006,
+ "loss": 3.5049710273742676,
+ "step": 5184
+ },
+ {
+ "epoch": 72.0,
+ "eval_loss": 3.9860572814941406,
+ "eval_runtime": 46.9591,
+ "eval_samples_per_second": 52.003,
+ "eval_steps_per_second": 3.258,
+ "step": 5184
+ },
+ {
+ "epoch": 72.01397990388816,
+ "grad_norm": 0.25285470485687256,
+ "learning_rate": 0.0006,
+ "loss": 3.4515252113342285,
+ "step": 5185
+ },
+ {
+ "epoch": 72.02795980777633,
+ "grad_norm": 0.29215890169143677,
+ "learning_rate": 0.0006,
+ "loss": 3.4472908973693848,
+ "step": 5186
+ },
+ {
+ "epoch": 72.04193971166448,
+ "grad_norm": 0.34719136357307434,
+ "learning_rate": 0.0006,
+ "loss": 3.4762914180755615,
+ "step": 5187
+ },
+ {
+ "epoch": 72.05591961555264,
+ "grad_norm": 0.31336039304733276,
+ "learning_rate": 0.0006,
+ "loss": 3.4866042137145996,
+ "step": 5188
+ },
+ {
+ "epoch": 72.06989951944081,
+ "grad_norm": 0.2586875557899475,
+ "learning_rate": 0.0006,
+ "loss": 3.4296340942382812,
+ "step": 5189
+ },
+ {
+ "epoch": 72.08387942332897,
+ "grad_norm": 0.2677823603153229,
+ "learning_rate": 0.0006,
+ "loss": 3.442481517791748,
+ "step": 5190
+ },
+ {
+ "epoch": 72.09785932721712,
+ "grad_norm": 0.30640944838523865,
+ "learning_rate": 0.0006,
+ "loss": 3.435530424118042,
+ "step": 5191
+ },
+ {
+ "epoch": 72.1118392311053,
+ "grad_norm": 0.29822733998298645,
+ "learning_rate": 0.0006,
+ "loss": 3.4399731159210205,
+ "step": 5192
+ },
+ {
+ "epoch": 72.12581913499345,
+ "grad_norm": 0.25714683532714844,
+ "learning_rate": 0.0006,
+ "loss": 3.4679667949676514,
+ "step": 5193
+ },
+ {
+ "epoch": 72.1397990388816,
+ "grad_norm": 0.2347356528043747,
+ "learning_rate": 0.0006,
+ "loss": 3.4473838806152344,
+ "step": 5194
+ },
+ {
+ "epoch": 72.15377894276976,
+ "grad_norm": 0.23640039563179016,
+ "learning_rate": 0.0006,
+ "loss": 3.4716782569885254,
+ "step": 5195
+ },
+ {
+ "epoch": 72.16775884665793,
+ "grad_norm": 0.2285412698984146,
+ "learning_rate": 0.0006,
+ "loss": 3.4927384853363037,
+ "step": 5196
+ },
+ {
+ "epoch": 72.18173875054609,
+ "grad_norm": 0.2305673509836197,
+ "learning_rate": 0.0006,
+ "loss": 3.5064914226531982,
+ "step": 5197
+ },
+ {
+ "epoch": 72.19571865443424,
+ "grad_norm": 0.21706514060497284,
+ "learning_rate": 0.0006,
+ "loss": 3.4467828273773193,
+ "step": 5198
+ },
+ {
+ "epoch": 72.20969855832242,
+ "grad_norm": 0.21769501268863678,
+ "learning_rate": 0.0006,
+ "loss": 3.473309278488159,
+ "step": 5199
+ },
+ {
+ "epoch": 72.22367846221057,
+ "grad_norm": 0.23256097733974457,
+ "learning_rate": 0.0006,
+ "loss": 3.457587718963623,
+ "step": 5200
+ },
+ {
+ "epoch": 72.23765836609873,
+ "grad_norm": 0.23531964421272278,
+ "learning_rate": 0.0006,
+ "loss": 3.485863208770752,
+ "step": 5201
+ },
+ {
+ "epoch": 72.2516382699869,
+ "grad_norm": 0.2240941971540451,
+ "learning_rate": 0.0006,
+ "loss": 3.4677062034606934,
+ "step": 5202
+ },
+ {
+ "epoch": 72.26561817387505,
+ "grad_norm": 0.22390629351139069,
+ "learning_rate": 0.0006,
+ "loss": 3.5203280448913574,
+ "step": 5203
+ },
+ {
+ "epoch": 72.27959807776321,
+ "grad_norm": 0.21178147196769714,
+ "learning_rate": 0.0006,
+ "loss": 3.4824347496032715,
+ "step": 5204
+ },
+ {
+ "epoch": 72.29357798165138,
+ "grad_norm": 0.21738161146640778,
+ "learning_rate": 0.0006,
+ "loss": 3.4587113857269287,
+ "step": 5205
+ },
+ {
+ "epoch": 72.30755788553954,
+ "grad_norm": 0.21534697711467743,
+ "learning_rate": 0.0006,
+ "loss": 3.499147415161133,
+ "step": 5206
+ },
+ {
+ "epoch": 72.3215377894277,
+ "grad_norm": 0.22616741061210632,
+ "learning_rate": 0.0006,
+ "loss": 3.5025434494018555,
+ "step": 5207
+ },
+ {
+ "epoch": 72.33551769331586,
+ "grad_norm": 0.26784682273864746,
+ "learning_rate": 0.0006,
+ "loss": 3.4733633995056152,
+ "step": 5208
+ },
+ {
+ "epoch": 72.34949759720402,
+ "grad_norm": 0.2774837911128998,
+ "learning_rate": 0.0006,
+ "loss": 3.508082389831543,
+ "step": 5209
+ },
+ {
+ "epoch": 72.36347750109218,
+ "grad_norm": 0.28039997816085815,
+ "learning_rate": 0.0006,
+ "loss": 3.503880500793457,
+ "step": 5210
+ },
+ {
+ "epoch": 72.37745740498035,
+ "grad_norm": 0.2990040183067322,
+ "learning_rate": 0.0006,
+ "loss": 3.4885363578796387,
+ "step": 5211
+ },
+ {
+ "epoch": 72.3914373088685,
+ "grad_norm": 0.2857728600502014,
+ "learning_rate": 0.0006,
+ "loss": 3.4977049827575684,
+ "step": 5212
+ },
+ {
+ "epoch": 72.40541721275666,
+ "grad_norm": 0.2675400972366333,
+ "learning_rate": 0.0006,
+ "loss": 3.49003267288208,
+ "step": 5213
+ },
+ {
+ "epoch": 72.41939711664482,
+ "grad_norm": 0.258004367351532,
+ "learning_rate": 0.0006,
+ "loss": 3.4726967811584473,
+ "step": 5214
+ },
+ {
+ "epoch": 72.43337702053299,
+ "grad_norm": 0.20816923677921295,
+ "learning_rate": 0.0006,
+ "loss": 3.4798901081085205,
+ "step": 5215
+ },
+ {
+ "epoch": 72.44735692442114,
+ "grad_norm": 0.21589888632297516,
+ "learning_rate": 0.0006,
+ "loss": 3.4784836769104004,
+ "step": 5216
+ },
+ {
+ "epoch": 72.4613368283093,
+ "grad_norm": 0.22663359344005585,
+ "learning_rate": 0.0006,
+ "loss": 3.5278806686401367,
+ "step": 5217
+ },
+ {
+ "epoch": 72.47531673219747,
+ "grad_norm": 0.2165268212556839,
+ "learning_rate": 0.0006,
+ "loss": 3.5198988914489746,
+ "step": 5218
+ },
+ {
+ "epoch": 72.48929663608563,
+ "grad_norm": 0.22635547816753387,
+ "learning_rate": 0.0006,
+ "loss": 3.476203441619873,
+ "step": 5219
+ },
+ {
+ "epoch": 72.50327653997378,
+ "grad_norm": 0.23315833508968353,
+ "learning_rate": 0.0006,
+ "loss": 3.4451494216918945,
+ "step": 5220
+ },
+ {
+ "epoch": 72.51725644386195,
+ "grad_norm": 0.2262018620967865,
+ "learning_rate": 0.0006,
+ "loss": 3.5126566886901855,
+ "step": 5221
+ },
+ {
+ "epoch": 72.53123634775011,
+ "grad_norm": 0.2273683398962021,
+ "learning_rate": 0.0006,
+ "loss": 3.485413074493408,
+ "step": 5222
+ },
+ {
+ "epoch": 72.54521625163827,
+ "grad_norm": 0.25254759192466736,
+ "learning_rate": 0.0006,
+ "loss": 3.4997940063476562,
+ "step": 5223
+ },
+ {
+ "epoch": 72.55919615552644,
+ "grad_norm": 0.23467472195625305,
+ "learning_rate": 0.0006,
+ "loss": 3.4924259185791016,
+ "step": 5224
+ },
+ {
+ "epoch": 72.57317605941459,
+ "grad_norm": 0.20206208527088165,
+ "learning_rate": 0.0006,
+ "loss": 3.5010361671447754,
+ "step": 5225
+ },
+ {
+ "epoch": 72.58715596330275,
+ "grad_norm": 0.21526813507080078,
+ "learning_rate": 0.0006,
+ "loss": 3.4889681339263916,
+ "step": 5226
+ },
+ {
+ "epoch": 72.60113586719092,
+ "grad_norm": 0.212263822555542,
+ "learning_rate": 0.0006,
+ "loss": 3.467782497406006,
+ "step": 5227
+ },
+ {
+ "epoch": 72.61511577107908,
+ "grad_norm": 0.2126736342906952,
+ "learning_rate": 0.0006,
+ "loss": 3.470729112625122,
+ "step": 5228
+ },
+ {
+ "epoch": 72.62909567496723,
+ "grad_norm": 0.22448696196079254,
+ "learning_rate": 0.0006,
+ "loss": 3.4688234329223633,
+ "step": 5229
+ },
+ {
+ "epoch": 72.6430755788554,
+ "grad_norm": 0.2322869449853897,
+ "learning_rate": 0.0006,
+ "loss": 3.490103244781494,
+ "step": 5230
+ },
+ {
+ "epoch": 72.65705548274356,
+ "grad_norm": 0.220216765999794,
+ "learning_rate": 0.0006,
+ "loss": 3.474886894226074,
+ "step": 5231
+ },
+ {
+ "epoch": 72.67103538663171,
+ "grad_norm": 0.2191896289587021,
+ "learning_rate": 0.0006,
+ "loss": 3.4965224266052246,
+ "step": 5232
+ },
+ {
+ "epoch": 72.68501529051987,
+ "grad_norm": 0.2120339423418045,
+ "learning_rate": 0.0006,
+ "loss": 3.4710934162139893,
+ "step": 5233
+ },
+ {
+ "epoch": 72.69899519440804,
+ "grad_norm": 0.21517711877822876,
+ "learning_rate": 0.0006,
+ "loss": 3.4698405265808105,
+ "step": 5234
+ },
+ {
+ "epoch": 72.7129750982962,
+ "grad_norm": 0.22012922167778015,
+ "learning_rate": 0.0006,
+ "loss": 3.513930320739746,
+ "step": 5235
+ },
+ {
+ "epoch": 72.72695500218435,
+ "grad_norm": 0.19231025874614716,
+ "learning_rate": 0.0006,
+ "loss": 3.476353168487549,
+ "step": 5236
+ },
+ {
+ "epoch": 72.74093490607252,
+ "grad_norm": 0.19383855164051056,
+ "learning_rate": 0.0006,
+ "loss": 3.5002031326293945,
+ "step": 5237
+ },
+ {
+ "epoch": 72.75491480996068,
+ "grad_norm": 0.22001665830612183,
+ "learning_rate": 0.0006,
+ "loss": 3.5080370903015137,
+ "step": 5238
+ },
+ {
+ "epoch": 72.76889471384884,
+ "grad_norm": 0.27273863554000854,
+ "learning_rate": 0.0006,
+ "loss": 3.504277229309082,
+ "step": 5239
+ },
+ {
+ "epoch": 72.78287461773701,
+ "grad_norm": 0.29014623165130615,
+ "learning_rate": 0.0006,
+ "loss": 3.493192195892334,
+ "step": 5240
+ },
+ {
+ "epoch": 72.79685452162516,
+ "grad_norm": 0.23816372454166412,
+ "learning_rate": 0.0006,
+ "loss": 3.519443988800049,
+ "step": 5241
+ },
+ {
+ "epoch": 72.81083442551332,
+ "grad_norm": 0.24076248705387115,
+ "learning_rate": 0.0006,
+ "loss": 3.4935712814331055,
+ "step": 5242
+ },
+ {
+ "epoch": 72.82481432940149,
+ "grad_norm": 0.264731764793396,
+ "learning_rate": 0.0006,
+ "loss": 3.5004658699035645,
+ "step": 5243
+ },
+ {
+ "epoch": 72.83879423328965,
+ "grad_norm": 0.2939820885658264,
+ "learning_rate": 0.0006,
+ "loss": 3.5297188758850098,
+ "step": 5244
+ },
+ {
+ "epoch": 72.8527741371778,
+ "grad_norm": 0.2904265522956848,
+ "learning_rate": 0.0006,
+ "loss": 3.496081829071045,
+ "step": 5245
+ },
+ {
+ "epoch": 72.86675404106597,
+ "grad_norm": 0.23428429663181305,
+ "learning_rate": 0.0006,
+ "loss": 3.493727684020996,
+ "step": 5246
+ },
+ {
+ "epoch": 72.88073394495413,
+ "grad_norm": 0.22780542075634003,
+ "learning_rate": 0.0006,
+ "loss": 3.523094654083252,
+ "step": 5247
+ },
+ {
+ "epoch": 72.89471384884229,
+ "grad_norm": 0.2745443284511566,
+ "learning_rate": 0.0006,
+ "loss": 3.497293472290039,
+ "step": 5248
+ },
+ {
+ "epoch": 72.90869375273044,
+ "grad_norm": 0.2678476870059967,
+ "learning_rate": 0.0006,
+ "loss": 3.5067732334136963,
+ "step": 5249
+ },
+ {
+ "epoch": 72.92267365661861,
+ "grad_norm": 0.2085755169391632,
+ "learning_rate": 0.0006,
+ "loss": 3.4695444107055664,
+ "step": 5250
+ },
+ {
+ "epoch": 72.93665356050677,
+ "grad_norm": 0.21488192677497864,
+ "learning_rate": 0.0006,
+ "loss": 3.522829055786133,
+ "step": 5251
+ },
+ {
+ "epoch": 72.95063346439493,
+ "grad_norm": 0.21374237537384033,
+ "learning_rate": 0.0006,
+ "loss": 3.5045344829559326,
+ "step": 5252
+ },
+ {
+ "epoch": 72.9646133682831,
+ "grad_norm": 0.23072510957717896,
+ "learning_rate": 0.0006,
+ "loss": 3.474557399749756,
+ "step": 5253
+ },
+ {
+ "epoch": 72.97859327217125,
+ "grad_norm": 0.22491991519927979,
+ "learning_rate": 0.0006,
+ "loss": 3.489443778991699,
+ "step": 5254
+ },
+ {
+ "epoch": 72.99257317605941,
+ "grad_norm": 0.22613948583602905,
+ "learning_rate": 0.0006,
+ "loss": 3.5056793689727783,
+ "step": 5255
+ },
+ {
+ "epoch": 73.0,
+ "grad_norm": 0.23435193300247192,
+ "learning_rate": 0.0006,
+ "loss": 3.520559787750244,
+ "step": 5256
+ },
+ {
+ "epoch": 73.0,
+ "eval_loss": 3.982722282409668,
+ "eval_runtime": 46.464,
+ "eval_samples_per_second": 52.557,
+ "eval_steps_per_second": 3.293,
+ "step": 5256
+ },
+ {
+ "epoch": 73.01397990388816,
+ "grad_norm": 0.22881661355495453,
+ "learning_rate": 0.0006,
+ "loss": 3.468254566192627,
+ "step": 5257
+ },
+ {
+ "epoch": 73.02795980777633,
+ "grad_norm": 0.2834230959415436,
+ "learning_rate": 0.0006,
+ "loss": 3.4606356620788574,
+ "step": 5258
+ },
+ {
+ "epoch": 73.04193971166448,
+ "grad_norm": 0.319560170173645,
+ "learning_rate": 0.0006,
+ "loss": 3.475505828857422,
+ "step": 5259
+ },
+ {
+ "epoch": 73.05591961555264,
+ "grad_norm": 0.32880520820617676,
+ "learning_rate": 0.0006,
+ "loss": 3.493833541870117,
+ "step": 5260
+ },
+ {
+ "epoch": 73.06989951944081,
+ "grad_norm": 0.2588718831539154,
+ "learning_rate": 0.0006,
+ "loss": 3.469942092895508,
+ "step": 5261
+ },
+ {
+ "epoch": 73.08387942332897,
+ "grad_norm": 0.2732829749584198,
+ "learning_rate": 0.0006,
+ "loss": 3.4531373977661133,
+ "step": 5262
+ },
+ {
+ "epoch": 73.09785932721712,
+ "grad_norm": 0.320829302072525,
+ "learning_rate": 0.0006,
+ "loss": 3.492429256439209,
+ "step": 5263
+ },
+ {
+ "epoch": 73.1118392311053,
+ "grad_norm": 0.24258096516132355,
+ "learning_rate": 0.0006,
+ "loss": 3.4776196479797363,
+ "step": 5264
+ },
+ {
+ "epoch": 73.12581913499345,
+ "grad_norm": 0.24697262048721313,
+ "learning_rate": 0.0006,
+ "loss": 3.4624526500701904,
+ "step": 5265
+ },
+ {
+ "epoch": 73.1397990388816,
+ "grad_norm": 0.2629360258579254,
+ "learning_rate": 0.0006,
+ "loss": 3.4608631134033203,
+ "step": 5266
+ },
+ {
+ "epoch": 73.15377894276976,
+ "grad_norm": 0.27060654759407043,
+ "learning_rate": 0.0006,
+ "loss": 3.4834189414978027,
+ "step": 5267
+ },
+ {
+ "epoch": 73.16775884665793,
+ "grad_norm": 0.246307834982872,
+ "learning_rate": 0.0006,
+ "loss": 3.477510929107666,
+ "step": 5268
+ },
+ {
+ "epoch": 73.18173875054609,
+ "grad_norm": 0.2469998300075531,
+ "learning_rate": 0.0006,
+ "loss": 3.4855780601501465,
+ "step": 5269
+ },
+ {
+ "epoch": 73.19571865443424,
+ "grad_norm": 0.24349135160446167,
+ "learning_rate": 0.0006,
+ "loss": 3.468322277069092,
+ "step": 5270
+ },
+ {
+ "epoch": 73.20969855832242,
+ "grad_norm": 0.22562023997306824,
+ "learning_rate": 0.0006,
+ "loss": 3.4036335945129395,
+ "step": 5271
+ },
+ {
+ "epoch": 73.22367846221057,
+ "grad_norm": 0.2311064749956131,
+ "learning_rate": 0.0006,
+ "loss": 3.4399924278259277,
+ "step": 5272
+ },
+ {
+ "epoch": 73.23765836609873,
+ "grad_norm": 0.21685704588890076,
+ "learning_rate": 0.0006,
+ "loss": 3.476149797439575,
+ "step": 5273
+ },
+ {
+ "epoch": 73.2516382699869,
+ "grad_norm": 0.22484169900417328,
+ "learning_rate": 0.0006,
+ "loss": 3.475130081176758,
+ "step": 5274
+ },
+ {
+ "epoch": 73.26561817387505,
+ "grad_norm": 0.22753819823265076,
+ "learning_rate": 0.0006,
+ "loss": 3.5259978771209717,
+ "step": 5275
+ },
+ {
+ "epoch": 73.27959807776321,
+ "grad_norm": 0.23297421634197235,
+ "learning_rate": 0.0006,
+ "loss": 3.4897689819335938,
+ "step": 5276
+ },
+ {
+ "epoch": 73.29357798165138,
+ "grad_norm": 0.22227609157562256,
+ "learning_rate": 0.0006,
+ "loss": 3.4681925773620605,
+ "step": 5277
+ },
+ {
+ "epoch": 73.30755788553954,
+ "grad_norm": 0.23390381038188934,
+ "learning_rate": 0.0006,
+ "loss": 3.4816267490386963,
+ "step": 5278
+ },
+ {
+ "epoch": 73.3215377894277,
+ "grad_norm": 0.25036972761154175,
+ "learning_rate": 0.0006,
+ "loss": 3.4513161182403564,
+ "step": 5279
+ },
+ {
+ "epoch": 73.33551769331586,
+ "grad_norm": 0.22425831854343414,
+ "learning_rate": 0.0006,
+ "loss": 3.504206657409668,
+ "step": 5280
+ },
+ {
+ "epoch": 73.34949759720402,
+ "grad_norm": 0.20987127721309662,
+ "learning_rate": 0.0006,
+ "loss": 3.463526487350464,
+ "step": 5281
+ },
+ {
+ "epoch": 73.36347750109218,
+ "grad_norm": 0.22594138979911804,
+ "learning_rate": 0.0006,
+ "loss": 3.467395067214966,
+ "step": 5282
+ },
+ {
+ "epoch": 73.37745740498035,
+ "grad_norm": 0.2819368243217468,
+ "learning_rate": 0.0006,
+ "loss": 3.458601236343384,
+ "step": 5283
+ },
+ {
+ "epoch": 73.3914373088685,
+ "grad_norm": 0.28703081607818604,
+ "learning_rate": 0.0006,
+ "loss": 3.489081382751465,
+ "step": 5284
+ },
+ {
+ "epoch": 73.40541721275666,
+ "grad_norm": 0.22495481371879578,
+ "learning_rate": 0.0006,
+ "loss": 3.4584622383117676,
+ "step": 5285
+ },
+ {
+ "epoch": 73.41939711664482,
+ "grad_norm": 0.26278403401374817,
+ "learning_rate": 0.0006,
+ "loss": 3.4610750675201416,
+ "step": 5286
+ },
+ {
+ "epoch": 73.43337702053299,
+ "grad_norm": 0.2335882931947708,
+ "learning_rate": 0.0006,
+ "loss": 3.4642205238342285,
+ "step": 5287
+ },
+ {
+ "epoch": 73.44735692442114,
+ "grad_norm": 0.23634950816631317,
+ "learning_rate": 0.0006,
+ "loss": 3.4628195762634277,
+ "step": 5288
+ },
+ {
+ "epoch": 73.4613368283093,
+ "grad_norm": 0.2428942620754242,
+ "learning_rate": 0.0006,
+ "loss": 3.486786365509033,
+ "step": 5289
+ },
+ {
+ "epoch": 73.47531673219747,
+ "grad_norm": 0.2235412299633026,
+ "learning_rate": 0.0006,
+ "loss": 3.4655373096466064,
+ "step": 5290
+ },
+ {
+ "epoch": 73.48929663608563,
+ "grad_norm": 0.22825124859809875,
+ "learning_rate": 0.0006,
+ "loss": 3.519115924835205,
+ "step": 5291
+ },
+ {
+ "epoch": 73.50327653997378,
+ "grad_norm": 0.22555601596832275,
+ "learning_rate": 0.0006,
+ "loss": 3.4672327041625977,
+ "step": 5292
+ },
+ {
+ "epoch": 73.51725644386195,
+ "grad_norm": 0.21196876466274261,
+ "learning_rate": 0.0006,
+ "loss": 3.477919101715088,
+ "step": 5293
+ },
+ {
+ "epoch": 73.53123634775011,
+ "grad_norm": 0.21254780888557434,
+ "learning_rate": 0.0006,
+ "loss": 3.493739604949951,
+ "step": 5294
+ },
+ {
+ "epoch": 73.54521625163827,
+ "grad_norm": 0.22243253886699677,
+ "learning_rate": 0.0006,
+ "loss": 3.5028891563415527,
+ "step": 5295
+ },
+ {
+ "epoch": 73.55919615552644,
+ "grad_norm": 0.1982688158750534,
+ "learning_rate": 0.0006,
+ "loss": 3.490211009979248,
+ "step": 5296
+ },
+ {
+ "epoch": 73.57317605941459,
+ "grad_norm": 0.19433127343654633,
+ "learning_rate": 0.0006,
+ "loss": 3.5000174045562744,
+ "step": 5297
+ },
+ {
+ "epoch": 73.58715596330275,
+ "grad_norm": 0.19470061361789703,
+ "learning_rate": 0.0006,
+ "loss": 3.4725089073181152,
+ "step": 5298
+ },
+ {
+ "epoch": 73.60113586719092,
+ "grad_norm": 0.20479093492031097,
+ "learning_rate": 0.0006,
+ "loss": 3.473649501800537,
+ "step": 5299
+ },
+ {
+ "epoch": 73.61511577107908,
+ "grad_norm": 0.22485226392745972,
+ "learning_rate": 0.0006,
+ "loss": 3.5234975814819336,
+ "step": 5300
+ },
+ {
+ "epoch": 73.62909567496723,
+ "grad_norm": 0.2219000905752182,
+ "learning_rate": 0.0006,
+ "loss": 3.483283281326294,
+ "step": 5301
+ },
+ {
+ "epoch": 73.6430755788554,
+ "grad_norm": 0.25735849142074585,
+ "learning_rate": 0.0006,
+ "loss": 3.4863831996917725,
+ "step": 5302
+ },
+ {
+ "epoch": 73.65705548274356,
+ "grad_norm": 0.2822291851043701,
+ "learning_rate": 0.0006,
+ "loss": 3.4864425659179688,
+ "step": 5303
+ },
+ {
+ "epoch": 73.67103538663171,
+ "grad_norm": 0.2965867817401886,
+ "learning_rate": 0.0006,
+ "loss": 3.487774133682251,
+ "step": 5304
+ },
+ {
+ "epoch": 73.68501529051987,
+ "grad_norm": 0.2446807473897934,
+ "learning_rate": 0.0006,
+ "loss": 3.485553741455078,
+ "step": 5305
+ },
+ {
+ "epoch": 73.69899519440804,
+ "grad_norm": 0.2298526167869568,
+ "learning_rate": 0.0006,
+ "loss": 3.4513039588928223,
+ "step": 5306
+ },
+ {
+ "epoch": 73.7129750982962,
+ "grad_norm": 0.24967409670352936,
+ "learning_rate": 0.0006,
+ "loss": 3.4974756240844727,
+ "step": 5307
+ },
+ {
+ "epoch": 73.72695500218435,
+ "grad_norm": 0.22180770337581635,
+ "learning_rate": 0.0006,
+ "loss": 3.501955509185791,
+ "step": 5308
+ },
+ {
+ "epoch": 73.74093490607252,
+ "grad_norm": 0.21294254064559937,
+ "learning_rate": 0.0006,
+ "loss": 3.52626371383667,
+ "step": 5309
+ },
+ {
+ "epoch": 73.75491480996068,
+ "grad_norm": 0.23970918357372284,
+ "learning_rate": 0.0006,
+ "loss": 3.479355812072754,
+ "step": 5310
+ },
+ {
+ "epoch": 73.76889471384884,
+ "grad_norm": 0.22978267073631287,
+ "learning_rate": 0.0006,
+ "loss": 3.4972357749938965,
+ "step": 5311
+ },
+ {
+ "epoch": 73.78287461773701,
+ "grad_norm": 0.22393731772899628,
+ "learning_rate": 0.0006,
+ "loss": 3.499718189239502,
+ "step": 5312
+ },
+ {
+ "epoch": 73.79685452162516,
+ "grad_norm": 0.2265646904706955,
+ "learning_rate": 0.0006,
+ "loss": 3.5240416526794434,
+ "step": 5313
+ },
+ {
+ "epoch": 73.81083442551332,
+ "grad_norm": 0.23060904443264008,
+ "learning_rate": 0.0006,
+ "loss": 3.4981179237365723,
+ "step": 5314
+ },
+ {
+ "epoch": 73.82481432940149,
+ "grad_norm": 0.2358054369688034,
+ "learning_rate": 0.0006,
+ "loss": 3.4671754837036133,
+ "step": 5315
+ },
+ {
+ "epoch": 73.83879423328965,
+ "grad_norm": 0.22466880083084106,
+ "learning_rate": 0.0006,
+ "loss": 3.5178170204162598,
+ "step": 5316
+ },
+ {
+ "epoch": 73.8527741371778,
+ "grad_norm": 0.24523386359214783,
+ "learning_rate": 0.0006,
+ "loss": 3.5059657096862793,
+ "step": 5317
+ },
+ {
+ "epoch": 73.86675404106597,
+ "grad_norm": 0.24812379479408264,
+ "learning_rate": 0.0006,
+ "loss": 3.4979734420776367,
+ "step": 5318
+ },
+ {
+ "epoch": 73.88073394495413,
+ "grad_norm": 0.2210223525762558,
+ "learning_rate": 0.0006,
+ "loss": 3.5158674716949463,
+ "step": 5319
+ },
+ {
+ "epoch": 73.89471384884229,
+ "grad_norm": 0.23374506831169128,
+ "learning_rate": 0.0006,
+ "loss": 3.4730381965637207,
+ "step": 5320
+ },
+ {
+ "epoch": 73.90869375273044,
+ "grad_norm": 0.2209903597831726,
+ "learning_rate": 0.0006,
+ "loss": 3.5152671337127686,
+ "step": 5321
+ },
+ {
+ "epoch": 73.92267365661861,
+ "grad_norm": 0.19783467054367065,
+ "learning_rate": 0.0006,
+ "loss": 3.508627414703369,
+ "step": 5322
+ },
+ {
+ "epoch": 73.93665356050677,
+ "grad_norm": 0.20683151483535767,
+ "learning_rate": 0.0006,
+ "loss": 3.5041322708129883,
+ "step": 5323
+ },
+ {
+ "epoch": 73.95063346439493,
+ "grad_norm": 0.20111984014511108,
+ "learning_rate": 0.0006,
+ "loss": 3.4618184566497803,
+ "step": 5324
+ },
+ {
+ "epoch": 73.9646133682831,
+ "grad_norm": 0.22296449542045593,
+ "learning_rate": 0.0006,
+ "loss": 3.4695611000061035,
+ "step": 5325
+ },
+ {
+ "epoch": 73.97859327217125,
+ "grad_norm": 0.22317543625831604,
+ "learning_rate": 0.0006,
+ "loss": 3.497115135192871,
+ "step": 5326
+ },
+ {
+ "epoch": 73.99257317605941,
+ "grad_norm": 0.19182799756526947,
+ "learning_rate": 0.0006,
+ "loss": 3.502279758453369,
+ "step": 5327
+ },
+ {
+ "epoch": 74.0,
+ "grad_norm": 0.2484123259782791,
+ "learning_rate": 0.0006,
+ "loss": 3.4998650550842285,
+ "step": 5328
+ },
+ {
+ "epoch": 74.0,
+ "eval_loss": 3.977353572845459,
+ "eval_runtime": 46.9154,
+ "eval_samples_per_second": 52.051,
+ "eval_steps_per_second": 3.261,
+ "step": 5328
+ },
+ {
+ "epoch": 74.01397990388816,
+ "grad_norm": 0.2512458860874176,
+ "learning_rate": 0.0006,
+ "loss": 3.454616069793701,
+ "step": 5329
+ },
+ {
+ "epoch": 74.02795980777633,
+ "grad_norm": 0.2781964838504791,
+ "learning_rate": 0.0006,
+ "loss": 3.4444780349731445,
+ "step": 5330
+ },
+ {
+ "epoch": 74.04193971166448,
+ "grad_norm": 0.3014058470726013,
+ "learning_rate": 0.0006,
+ "loss": 3.4059829711914062,
+ "step": 5331
+ },
+ {
+ "epoch": 74.05591961555264,
+ "grad_norm": 0.28226929903030396,
+ "learning_rate": 0.0006,
+ "loss": 3.474538803100586,
+ "step": 5332
+ },
+ {
+ "epoch": 74.06989951944081,
+ "grad_norm": 0.22589807212352753,
+ "learning_rate": 0.0006,
+ "loss": 3.4484004974365234,
+ "step": 5333
+ },
+ {
+ "epoch": 74.08387942332897,
+ "grad_norm": 0.2317565679550171,
+ "learning_rate": 0.0006,
+ "loss": 3.4559502601623535,
+ "step": 5334
+ },
+ {
+ "epoch": 74.09785932721712,
+ "grad_norm": 0.2484085112810135,
+ "learning_rate": 0.0006,
+ "loss": 3.4723763465881348,
+ "step": 5335
+ },
+ {
+ "epoch": 74.1118392311053,
+ "grad_norm": 0.24313412606716156,
+ "learning_rate": 0.0006,
+ "loss": 3.4581704139709473,
+ "step": 5336
+ },
+ {
+ "epoch": 74.12581913499345,
+ "grad_norm": 0.2317453771829605,
+ "learning_rate": 0.0006,
+ "loss": 3.4556710720062256,
+ "step": 5337
+ },
+ {
+ "epoch": 74.1397990388816,
+ "grad_norm": 0.2423294484615326,
+ "learning_rate": 0.0006,
+ "loss": 3.450899124145508,
+ "step": 5338
+ },
+ {
+ "epoch": 74.15377894276976,
+ "grad_norm": 0.24861979484558105,
+ "learning_rate": 0.0006,
+ "loss": 3.4524154663085938,
+ "step": 5339
+ },
+ {
+ "epoch": 74.16775884665793,
+ "grad_norm": 0.27226537466049194,
+ "learning_rate": 0.0006,
+ "loss": 3.4728293418884277,
+ "step": 5340
+ },
+ {
+ "epoch": 74.18173875054609,
+ "grad_norm": 0.29282820224761963,
+ "learning_rate": 0.0006,
+ "loss": 3.482450008392334,
+ "step": 5341
+ },
+ {
+ "epoch": 74.19571865443424,
+ "grad_norm": 0.2666662931442261,
+ "learning_rate": 0.0006,
+ "loss": 3.4708619117736816,
+ "step": 5342
+ },
+ {
+ "epoch": 74.20969855832242,
+ "grad_norm": 0.22029168903827667,
+ "learning_rate": 0.0006,
+ "loss": 3.4592952728271484,
+ "step": 5343
+ },
+ {
+ "epoch": 74.22367846221057,
+ "grad_norm": 0.21203964948654175,
+ "learning_rate": 0.0006,
+ "loss": 3.4983129501342773,
+ "step": 5344
+ },
+ {
+ "epoch": 74.23765836609873,
+ "grad_norm": 0.24254444241523743,
+ "learning_rate": 0.0006,
+ "loss": 3.4695663452148438,
+ "step": 5345
+ },
+ {
+ "epoch": 74.2516382699869,
+ "grad_norm": 0.28514090180397034,
+ "learning_rate": 0.0006,
+ "loss": 3.501779556274414,
+ "step": 5346
+ },
+ {
+ "epoch": 74.26561817387505,
+ "grad_norm": 0.27082809805870056,
+ "learning_rate": 0.0006,
+ "loss": 3.4754765033721924,
+ "step": 5347
+ },
+ {
+ "epoch": 74.27959807776321,
+ "grad_norm": 0.21144570410251617,
+ "learning_rate": 0.0006,
+ "loss": 3.481623649597168,
+ "step": 5348
+ },
+ {
+ "epoch": 74.29357798165138,
+ "grad_norm": 0.23012803494930267,
+ "learning_rate": 0.0006,
+ "loss": 3.478872776031494,
+ "step": 5349
+ },
+ {
+ "epoch": 74.30755788553954,
+ "grad_norm": 0.2497818022966385,
+ "learning_rate": 0.0006,
+ "loss": 3.465214252471924,
+ "step": 5350
+ },
+ {
+ "epoch": 74.3215377894277,
+ "grad_norm": 0.27346086502075195,
+ "learning_rate": 0.0006,
+ "loss": 3.4749603271484375,
+ "step": 5351
+ },
+ {
+ "epoch": 74.33551769331586,
+ "grad_norm": 0.24193984270095825,
+ "learning_rate": 0.0006,
+ "loss": 3.4898180961608887,
+ "step": 5352
+ },
+ {
+ "epoch": 74.34949759720402,
+ "grad_norm": 0.2432994395494461,
+ "learning_rate": 0.0006,
+ "loss": 3.478156089782715,
+ "step": 5353
+ },
+ {
+ "epoch": 74.36347750109218,
+ "grad_norm": 0.331503689289093,
+ "learning_rate": 0.0006,
+ "loss": 3.496690273284912,
+ "step": 5354
+ },
+ {
+ "epoch": 74.37745740498035,
+ "grad_norm": 0.27467086911201477,
+ "learning_rate": 0.0006,
+ "loss": 3.472379684448242,
+ "step": 5355
+ },
+ {
+ "epoch": 74.3914373088685,
+ "grad_norm": 0.23563839495182037,
+ "learning_rate": 0.0006,
+ "loss": 3.4963388442993164,
+ "step": 5356
+ },
+ {
+ "epoch": 74.40541721275666,
+ "grad_norm": 0.23829393088817596,
+ "learning_rate": 0.0006,
+ "loss": 3.473438262939453,
+ "step": 5357
+ },
+ {
+ "epoch": 74.41939711664482,
+ "grad_norm": 0.28113624453544617,
+ "learning_rate": 0.0006,
+ "loss": 3.481104612350464,
+ "step": 5358
+ },
+ {
+ "epoch": 74.43337702053299,
+ "grad_norm": 0.29099389910697937,
+ "learning_rate": 0.0006,
+ "loss": 3.497255325317383,
+ "step": 5359
+ },
+ {
+ "epoch": 74.44735692442114,
+ "grad_norm": 0.24911890923976898,
+ "learning_rate": 0.0006,
+ "loss": 3.4622669219970703,
+ "step": 5360
+ },
+ {
+ "epoch": 74.4613368283093,
+ "grad_norm": 0.2488860785961151,
+ "learning_rate": 0.0006,
+ "loss": 3.4906888008117676,
+ "step": 5361
+ },
+ {
+ "epoch": 74.47531673219747,
+ "grad_norm": 0.27969980239868164,
+ "learning_rate": 0.0006,
+ "loss": 3.495727300643921,
+ "step": 5362
+ },
+ {
+ "epoch": 74.48929663608563,
+ "grad_norm": 0.2811402380466461,
+ "learning_rate": 0.0006,
+ "loss": 3.4817042350769043,
+ "step": 5363
+ },
+ {
+ "epoch": 74.50327653997378,
+ "grad_norm": 0.25717079639434814,
+ "learning_rate": 0.0006,
+ "loss": 3.4818572998046875,
+ "step": 5364
+ },
+ {
+ "epoch": 74.51725644386195,
+ "grad_norm": 0.2527103126049042,
+ "learning_rate": 0.0006,
+ "loss": 3.494536876678467,
+ "step": 5365
+ },
+ {
+ "epoch": 74.53123634775011,
+ "grad_norm": 0.24561476707458496,
+ "learning_rate": 0.0006,
+ "loss": 3.4908809661865234,
+ "step": 5366
+ },
+ {
+ "epoch": 74.54521625163827,
+ "grad_norm": 0.2540345788002014,
+ "learning_rate": 0.0006,
+ "loss": 3.477179765701294,
+ "step": 5367
+ },
+ {
+ "epoch": 74.55919615552644,
+ "grad_norm": 0.2220340371131897,
+ "learning_rate": 0.0006,
+ "loss": 3.4914112091064453,
+ "step": 5368
+ },
+ {
+ "epoch": 74.57317605941459,
+ "grad_norm": 0.21146169304847717,
+ "learning_rate": 0.0006,
+ "loss": 3.457792043685913,
+ "step": 5369
+ },
+ {
+ "epoch": 74.58715596330275,
+ "grad_norm": 0.2657042443752289,
+ "learning_rate": 0.0006,
+ "loss": 3.4626612663269043,
+ "step": 5370
+ },
+ {
+ "epoch": 74.60113586719092,
+ "grad_norm": 0.2684510350227356,
+ "learning_rate": 0.0006,
+ "loss": 3.472271203994751,
+ "step": 5371
+ },
+ {
+ "epoch": 74.61511577107908,
+ "grad_norm": 0.22635070979595184,
+ "learning_rate": 0.0006,
+ "loss": 3.4719159603118896,
+ "step": 5372
+ },
+ {
+ "epoch": 74.62909567496723,
+ "grad_norm": 0.22514945268630981,
+ "learning_rate": 0.0006,
+ "loss": 3.4851810932159424,
+ "step": 5373
+ },
+ {
+ "epoch": 74.6430755788554,
+ "grad_norm": 0.24570822715759277,
+ "learning_rate": 0.0006,
+ "loss": 3.4688820838928223,
+ "step": 5374
+ },
+ {
+ "epoch": 74.65705548274356,
+ "grad_norm": 0.24397042393684387,
+ "learning_rate": 0.0006,
+ "loss": 3.4923229217529297,
+ "step": 5375
+ },
+ {
+ "epoch": 74.67103538663171,
+ "grad_norm": 0.23729953169822693,
+ "learning_rate": 0.0006,
+ "loss": 3.4608895778656006,
+ "step": 5376
+ },
+ {
+ "epoch": 74.68501529051987,
+ "grad_norm": 0.2729131877422333,
+ "learning_rate": 0.0006,
+ "loss": 3.4602279663085938,
+ "step": 5377
+ },
+ {
+ "epoch": 74.69899519440804,
+ "grad_norm": 0.25115323066711426,
+ "learning_rate": 0.0006,
+ "loss": 3.514993906021118,
+ "step": 5378
+ },
+ {
+ "epoch": 74.7129750982962,
+ "grad_norm": 0.22035203874111176,
+ "learning_rate": 0.0006,
+ "loss": 3.4471445083618164,
+ "step": 5379
+ },
+ {
+ "epoch": 74.72695500218435,
+ "grad_norm": 0.21248559653759003,
+ "learning_rate": 0.0006,
+ "loss": 3.495924472808838,
+ "step": 5380
+ },
+ {
+ "epoch": 74.74093490607252,
+ "grad_norm": 0.2532788813114166,
+ "learning_rate": 0.0006,
+ "loss": 3.4937939643859863,
+ "step": 5381
+ },
+ {
+ "epoch": 74.75491480996068,
+ "grad_norm": 0.3140663206577301,
+ "learning_rate": 0.0006,
+ "loss": 3.47257661819458,
+ "step": 5382
+ },
+ {
+ "epoch": 74.76889471384884,
+ "grad_norm": 0.24233469367027283,
+ "learning_rate": 0.0006,
+ "loss": 3.522697925567627,
+ "step": 5383
+ },
+ {
+ "epoch": 74.78287461773701,
+ "grad_norm": 0.21789517998695374,
+ "learning_rate": 0.0006,
+ "loss": 3.4718894958496094,
+ "step": 5384
+ },
+ {
+ "epoch": 74.79685452162516,
+ "grad_norm": 0.27909520268440247,
+ "learning_rate": 0.0006,
+ "loss": 3.495565891265869,
+ "step": 5385
+ },
+ {
+ "epoch": 74.81083442551332,
+ "grad_norm": 0.2829185724258423,
+ "learning_rate": 0.0006,
+ "loss": 3.498117446899414,
+ "step": 5386
+ },
+ {
+ "epoch": 74.82481432940149,
+ "grad_norm": 0.24295735359191895,
+ "learning_rate": 0.0006,
+ "loss": 3.520672559738159,
+ "step": 5387
+ },
+ {
+ "epoch": 74.83879423328965,
+ "grad_norm": 0.22691823542118073,
+ "learning_rate": 0.0006,
+ "loss": 3.493411064147949,
+ "step": 5388
+ },
+ {
+ "epoch": 74.8527741371778,
+ "grad_norm": 0.2304782122373581,
+ "learning_rate": 0.0006,
+ "loss": 3.515381336212158,
+ "step": 5389
+ },
+ {
+ "epoch": 74.86675404106597,
+ "grad_norm": 0.2201395034790039,
+ "learning_rate": 0.0006,
+ "loss": 3.4841480255126953,
+ "step": 5390
+ },
+ {
+ "epoch": 74.88073394495413,
+ "grad_norm": 0.2174619734287262,
+ "learning_rate": 0.0006,
+ "loss": 3.522420883178711,
+ "step": 5391
+ },
+ {
+ "epoch": 74.89471384884229,
+ "grad_norm": 0.2168722301721573,
+ "learning_rate": 0.0006,
+ "loss": 3.5378670692443848,
+ "step": 5392
+ },
+ {
+ "epoch": 74.90869375273044,
+ "grad_norm": 0.2191118448972702,
+ "learning_rate": 0.0006,
+ "loss": 3.4727582931518555,
+ "step": 5393
+ },
+ {
+ "epoch": 74.92267365661861,
+ "grad_norm": 0.20210173726081848,
+ "learning_rate": 0.0006,
+ "loss": 3.482863426208496,
+ "step": 5394
+ },
+ {
+ "epoch": 74.93665356050677,
+ "grad_norm": 0.2193301022052765,
+ "learning_rate": 0.0006,
+ "loss": 3.504102945327759,
+ "step": 5395
+ },
+ {
+ "epoch": 74.95063346439493,
+ "grad_norm": 0.24017557501792908,
+ "learning_rate": 0.0006,
+ "loss": 3.5117030143737793,
+ "step": 5396
+ },
+ {
+ "epoch": 74.9646133682831,
+ "grad_norm": 0.2410554140806198,
+ "learning_rate": 0.0006,
+ "loss": 3.4764766693115234,
+ "step": 5397
+ },
+ {
+ "epoch": 74.97859327217125,
+ "grad_norm": 0.22423039376735687,
+ "learning_rate": 0.0006,
+ "loss": 3.480515480041504,
+ "step": 5398
+ },
+ {
+ "epoch": 74.99257317605941,
+ "grad_norm": 0.21722744405269623,
+ "learning_rate": 0.0006,
+ "loss": 3.498002052307129,
+ "step": 5399
+ },
+ {
+ "epoch": 75.0,
+ "grad_norm": 0.25303882360458374,
+ "learning_rate": 0.0006,
+ "loss": 3.5146775245666504,
+ "step": 5400
+ },
+ {
+ "epoch": 75.0,
+ "eval_loss": 3.98659610748291,
+ "eval_runtime": 46.184,
+ "eval_samples_per_second": 52.875,
+ "eval_steps_per_second": 3.313,
+ "step": 5400
+ },
+ {
+ "epoch": 75.01397990388816,
+ "grad_norm": 0.22890645265579224,
+ "learning_rate": 0.0006,
+ "loss": 3.4320144653320312,
+ "step": 5401
+ },
+ {
+ "epoch": 75.02795980777633,
+ "grad_norm": 0.21108074486255646,
+ "learning_rate": 0.0006,
+ "loss": 3.4783573150634766,
+ "step": 5402
+ },
+ {
+ "epoch": 75.04193971166448,
+ "grad_norm": 0.24622507393360138,
+ "learning_rate": 0.0006,
+ "loss": 3.443662643432617,
+ "step": 5403
+ },
+ {
+ "epoch": 75.05591961555264,
+ "grad_norm": 0.27554580569267273,
+ "learning_rate": 0.0006,
+ "loss": 3.4758429527282715,
+ "step": 5404
+ },
+ {
+ "epoch": 75.06989951944081,
+ "grad_norm": 0.23775196075439453,
+ "learning_rate": 0.0006,
+ "loss": 3.433439254760742,
+ "step": 5405
+ },
+ {
+ "epoch": 75.08387942332897,
+ "grad_norm": 0.24933192133903503,
+ "learning_rate": 0.0006,
+ "loss": 3.474876642227173,
+ "step": 5406
+ },
+ {
+ "epoch": 75.09785932721712,
+ "grad_norm": 0.25970155000686646,
+ "learning_rate": 0.0006,
+ "loss": 3.4557571411132812,
+ "step": 5407
+ },
+ {
+ "epoch": 75.1118392311053,
+ "grad_norm": 0.24002394080162048,
+ "learning_rate": 0.0006,
+ "loss": 3.487683057785034,
+ "step": 5408
+ },
+ {
+ "epoch": 75.12581913499345,
+ "grad_norm": 0.23790079355239868,
+ "learning_rate": 0.0006,
+ "loss": 3.4572582244873047,
+ "step": 5409
+ },
+ {
+ "epoch": 75.1397990388816,
+ "grad_norm": 0.24431537091732025,
+ "learning_rate": 0.0006,
+ "loss": 3.47338604927063,
+ "step": 5410
+ },
+ {
+ "epoch": 75.15377894276976,
+ "grad_norm": 0.23062901198863983,
+ "learning_rate": 0.0006,
+ "loss": 3.4597620964050293,
+ "step": 5411
+ },
+ {
+ "epoch": 75.16775884665793,
+ "grad_norm": 0.22011473774909973,
+ "learning_rate": 0.0006,
+ "loss": 3.442854404449463,
+ "step": 5412
+ },
+ {
+ "epoch": 75.18173875054609,
+ "grad_norm": 0.22079597413539886,
+ "learning_rate": 0.0006,
+ "loss": 3.4655394554138184,
+ "step": 5413
+ },
+ {
+ "epoch": 75.19571865443424,
+ "grad_norm": 0.2491050660610199,
+ "learning_rate": 0.0006,
+ "loss": 3.4235432147979736,
+ "step": 5414
+ },
+ {
+ "epoch": 75.20969855832242,
+ "grad_norm": 0.2579537332057953,
+ "learning_rate": 0.0006,
+ "loss": 3.4655489921569824,
+ "step": 5415
+ },
+ {
+ "epoch": 75.22367846221057,
+ "grad_norm": 0.2544846832752228,
+ "learning_rate": 0.0006,
+ "loss": 3.4843227863311768,
+ "step": 5416
+ },
+ {
+ "epoch": 75.23765836609873,
+ "grad_norm": 0.2496761977672577,
+ "learning_rate": 0.0006,
+ "loss": 3.4830572605133057,
+ "step": 5417
+ },
+ {
+ "epoch": 75.2516382699869,
+ "grad_norm": 0.23450163006782532,
+ "learning_rate": 0.0006,
+ "loss": 3.4443750381469727,
+ "step": 5418
+ },
+ {
+ "epoch": 75.26561817387505,
+ "grad_norm": 0.21221424639225006,
+ "learning_rate": 0.0006,
+ "loss": 3.4960341453552246,
+ "step": 5419
+ },
+ {
+ "epoch": 75.27959807776321,
+ "grad_norm": 0.24375751614570618,
+ "learning_rate": 0.0006,
+ "loss": 3.489213466644287,
+ "step": 5420
+ },
+ {
+ "epoch": 75.29357798165138,
+ "grad_norm": 0.2396956831216812,
+ "learning_rate": 0.0006,
+ "loss": 3.4710469245910645,
+ "step": 5421
+ },
+ {
+ "epoch": 75.30755788553954,
+ "grad_norm": 0.2423015981912613,
+ "learning_rate": 0.0006,
+ "loss": 3.4676403999328613,
+ "step": 5422
+ },
+ {
+ "epoch": 75.3215377894277,
+ "grad_norm": 0.21398219466209412,
+ "learning_rate": 0.0006,
+ "loss": 3.4844627380371094,
+ "step": 5423
+ },
+ {
+ "epoch": 75.33551769331586,
+ "grad_norm": 0.22983498871326447,
+ "learning_rate": 0.0006,
+ "loss": 3.499535083770752,
+ "step": 5424
+ },
+ {
+ "epoch": 75.34949759720402,
+ "grad_norm": 0.2247568666934967,
+ "learning_rate": 0.0006,
+ "loss": 3.459460973739624,
+ "step": 5425
+ },
+ {
+ "epoch": 75.36347750109218,
+ "grad_norm": 0.2223675400018692,
+ "learning_rate": 0.0006,
+ "loss": 3.483078718185425,
+ "step": 5426
+ },
+ {
+ "epoch": 75.37745740498035,
+ "grad_norm": 0.25076913833618164,
+ "learning_rate": 0.0006,
+ "loss": 3.4823365211486816,
+ "step": 5427
+ },
+ {
+ "epoch": 75.3914373088685,
+ "grad_norm": 0.23170171678066254,
+ "learning_rate": 0.0006,
+ "loss": 3.487278461456299,
+ "step": 5428
+ },
+ {
+ "epoch": 75.40541721275666,
+ "grad_norm": 0.22735518217086792,
+ "learning_rate": 0.0006,
+ "loss": 3.4565181732177734,
+ "step": 5429
+ },
+ {
+ "epoch": 75.41939711664482,
+ "grad_norm": 0.2241843193769455,
+ "learning_rate": 0.0006,
+ "loss": 3.4886221885681152,
+ "step": 5430
+ },
+ {
+ "epoch": 75.43337702053299,
+ "grad_norm": 0.23641140758991241,
+ "learning_rate": 0.0006,
+ "loss": 3.4589765071868896,
+ "step": 5431
+ },
+ {
+ "epoch": 75.44735692442114,
+ "grad_norm": 0.22404645383358002,
+ "learning_rate": 0.0006,
+ "loss": 3.4804739952087402,
+ "step": 5432
+ },
+ {
+ "epoch": 75.4613368283093,
+ "grad_norm": 0.22107535600662231,
+ "learning_rate": 0.0006,
+ "loss": 3.5022053718566895,
+ "step": 5433
+ },
+ {
+ "epoch": 75.47531673219747,
+ "grad_norm": 0.26106131076812744,
+ "learning_rate": 0.0006,
+ "loss": 3.4907431602478027,
+ "step": 5434
+ },
+ {
+ "epoch": 75.48929663608563,
+ "grad_norm": 0.24156032502651215,
+ "learning_rate": 0.0006,
+ "loss": 3.4733991622924805,
+ "step": 5435
+ },
+ {
+ "epoch": 75.50327653997378,
+ "grad_norm": 0.24767442047595978,
+ "learning_rate": 0.0006,
+ "loss": 3.4697909355163574,
+ "step": 5436
+ },
+ {
+ "epoch": 75.51725644386195,
+ "grad_norm": 0.2323860228061676,
+ "learning_rate": 0.0006,
+ "loss": 3.4606242179870605,
+ "step": 5437
+ },
+ {
+ "epoch": 75.53123634775011,
+ "grad_norm": 0.2262393981218338,
+ "learning_rate": 0.0006,
+ "loss": 3.4854025840759277,
+ "step": 5438
+ },
+ {
+ "epoch": 75.54521625163827,
+ "grad_norm": 0.23461535573005676,
+ "learning_rate": 0.0006,
+ "loss": 3.4778385162353516,
+ "step": 5439
+ },
+ {
+ "epoch": 75.55919615552644,
+ "grad_norm": 0.27161163091659546,
+ "learning_rate": 0.0006,
+ "loss": 3.495377540588379,
+ "step": 5440
+ },
+ {
+ "epoch": 75.57317605941459,
+ "grad_norm": 0.24618741869926453,
+ "learning_rate": 0.0006,
+ "loss": 3.47642183303833,
+ "step": 5441
+ },
+ {
+ "epoch": 75.58715596330275,
+ "grad_norm": 0.22948747873306274,
+ "learning_rate": 0.0006,
+ "loss": 3.4459116458892822,
+ "step": 5442
+ },
+ {
+ "epoch": 75.60113586719092,
+ "grad_norm": 0.23935501277446747,
+ "learning_rate": 0.0006,
+ "loss": 3.487091541290283,
+ "step": 5443
+ },
+ {
+ "epoch": 75.61511577107908,
+ "grad_norm": 0.2796297073364258,
+ "learning_rate": 0.0006,
+ "loss": 3.473480701446533,
+ "step": 5444
+ },
+ {
+ "epoch": 75.62909567496723,
+ "grad_norm": 0.29329824447631836,
+ "learning_rate": 0.0006,
+ "loss": 3.5074462890625,
+ "step": 5445
+ },
+ {
+ "epoch": 75.6430755788554,
+ "grad_norm": 0.2570355534553528,
+ "learning_rate": 0.0006,
+ "loss": 3.489321231842041,
+ "step": 5446
+ },
+ {
+ "epoch": 75.65705548274356,
+ "grad_norm": 0.2363484650850296,
+ "learning_rate": 0.0006,
+ "loss": 3.468007802963257,
+ "step": 5447
+ },
+ {
+ "epoch": 75.67103538663171,
+ "grad_norm": 0.2406139075756073,
+ "learning_rate": 0.0006,
+ "loss": 3.46791410446167,
+ "step": 5448
+ },
+ {
+ "epoch": 75.68501529051987,
+ "grad_norm": 0.21734113991260529,
+ "learning_rate": 0.0006,
+ "loss": 3.4879536628723145,
+ "step": 5449
+ },
+ {
+ "epoch": 75.69899519440804,
+ "grad_norm": 0.23314808309078217,
+ "learning_rate": 0.0006,
+ "loss": 3.4743285179138184,
+ "step": 5450
+ },
+ {
+ "epoch": 75.7129750982962,
+ "grad_norm": 0.23886935412883759,
+ "learning_rate": 0.0006,
+ "loss": 3.4746532440185547,
+ "step": 5451
+ },
+ {
+ "epoch": 75.72695500218435,
+ "grad_norm": 0.22808042168617249,
+ "learning_rate": 0.0006,
+ "loss": 3.4969987869262695,
+ "step": 5452
+ },
+ {
+ "epoch": 75.74093490607252,
+ "grad_norm": 0.2143876552581787,
+ "learning_rate": 0.0006,
+ "loss": 3.4843339920043945,
+ "step": 5453
+ },
+ {
+ "epoch": 75.75491480996068,
+ "grad_norm": 0.21905699372291565,
+ "learning_rate": 0.0006,
+ "loss": 3.4854626655578613,
+ "step": 5454
+ },
+ {
+ "epoch": 75.76889471384884,
+ "grad_norm": 0.222469300031662,
+ "learning_rate": 0.0006,
+ "loss": 3.4997758865356445,
+ "step": 5455
+ },
+ {
+ "epoch": 75.78287461773701,
+ "grad_norm": 0.23095394670963287,
+ "learning_rate": 0.0006,
+ "loss": 3.515315532684326,
+ "step": 5456
+ },
+ {
+ "epoch": 75.79685452162516,
+ "grad_norm": 0.23326516151428223,
+ "learning_rate": 0.0006,
+ "loss": 3.482665538787842,
+ "step": 5457
+ },
+ {
+ "epoch": 75.81083442551332,
+ "grad_norm": 0.22779764235019684,
+ "learning_rate": 0.0006,
+ "loss": 3.5068790912628174,
+ "step": 5458
+ },
+ {
+ "epoch": 75.82481432940149,
+ "grad_norm": 0.2396935224533081,
+ "learning_rate": 0.0006,
+ "loss": 3.4874000549316406,
+ "step": 5459
+ },
+ {
+ "epoch": 75.83879423328965,
+ "grad_norm": 0.25353050231933594,
+ "learning_rate": 0.0006,
+ "loss": 3.4948503971099854,
+ "step": 5460
+ },
+ {
+ "epoch": 75.8527741371778,
+ "grad_norm": 0.21191656589508057,
+ "learning_rate": 0.0006,
+ "loss": 3.4621965885162354,
+ "step": 5461
+ },
+ {
+ "epoch": 75.86675404106597,
+ "grad_norm": 0.2224014550447464,
+ "learning_rate": 0.0006,
+ "loss": 3.4568324089050293,
+ "step": 5462
+ },
+ {
+ "epoch": 75.88073394495413,
+ "grad_norm": 0.2205243706703186,
+ "learning_rate": 0.0006,
+ "loss": 3.4809136390686035,
+ "step": 5463
+ },
+ {
+ "epoch": 75.89471384884229,
+ "grad_norm": 0.2065657079219818,
+ "learning_rate": 0.0006,
+ "loss": 3.4930431842803955,
+ "step": 5464
+ },
+ {
+ "epoch": 75.90869375273044,
+ "grad_norm": 0.23017582297325134,
+ "learning_rate": 0.0006,
+ "loss": 3.471113443374634,
+ "step": 5465
+ },
+ {
+ "epoch": 75.92267365661861,
+ "grad_norm": 0.23186780512332916,
+ "learning_rate": 0.0006,
+ "loss": 3.4903316497802734,
+ "step": 5466
+ },
+ {
+ "epoch": 75.93665356050677,
+ "grad_norm": 0.21441741287708282,
+ "learning_rate": 0.0006,
+ "loss": 3.4762520790100098,
+ "step": 5467
+ },
+ {
+ "epoch": 75.95063346439493,
+ "grad_norm": 0.23942787945270538,
+ "learning_rate": 0.0006,
+ "loss": 3.5144190788269043,
+ "step": 5468
+ },
+ {
+ "epoch": 75.9646133682831,
+ "grad_norm": 0.2516455352306366,
+ "learning_rate": 0.0006,
+ "loss": 3.496724843978882,
+ "step": 5469
+ },
+ {
+ "epoch": 75.97859327217125,
+ "grad_norm": 0.26983004808425903,
+ "learning_rate": 0.0006,
+ "loss": 3.4975180625915527,
+ "step": 5470
+ },
+ {
+ "epoch": 75.99257317605941,
+ "grad_norm": 0.2471132129430771,
+ "learning_rate": 0.0006,
+ "loss": 3.4897234439849854,
+ "step": 5471
+ },
+ {
+ "epoch": 76.0,
+ "grad_norm": 0.2606436014175415,
+ "learning_rate": 0.0006,
+ "loss": 3.4784388542175293,
+ "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/mask15-l2r50-fulle-lm/checkpoint-5472/training_args.bin b/runs/mask15-l2r50-fulle-lm/checkpoint-5472/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..43721c50815fe94f90cb043bf545b8f7bd9afc38
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-5472/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:a0b8d7bb9ac952b1abed3bd1e5c8f6ebd20daa957b3a85688954f8df03be6eb9
+size 4856
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-576/chat_template.jinja b/runs/mask15-l2r50-fulle-lm/checkpoint-576/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/mask15-l2r50-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/mask15-l2r50-fulle-lm/checkpoint-576/config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-576/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..1b4ac3c550d6003148026765eba4cb1512b216c9
--- /dev/null
+++ b/runs/mask15-l2r50-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": 151672
+}
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-576/generation_config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-576/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..5cd15fe1269fd505cfdefe9b3e9989dacd9f68f4
--- /dev/null
+++ b/runs/mask15-l2r50-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/mask15-l2r50-fulle-lm/checkpoint-576/model.safetensors b/runs/mask15-l2r50-fulle-lm/checkpoint-576/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..3447b0a89082b9c44f9bdf866cd9cd1b672dc4ac
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-576/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:79997f43a2820f0b8b2664fbabecfb39ea0018e46688401de120c07b9321878e
+size 583358280
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-576/optimizer.pt b/runs/mask15-l2r50-fulle-lm/checkpoint-576/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..8e27520487204a3442221f2207061fc6f0610927
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-576/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:9090f16de779020316504cad0bb1b647ffe8c9c97ca39a3a3d549723b9e34588
+size 1166829434
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-576/rng_state_0.pth b/runs/mask15-l2r50-fulle-lm/checkpoint-576/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..fd2a802a27efcfe5b0c469d1d81eb67912fe77f0
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-576/rng_state_0.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:ceec8908661b7a04aa33ece309214a047b91fd01ded9d6de474167c80475a951
+size 14512
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-576/rng_state_1.pth b/runs/mask15-l2r50-fulle-lm/checkpoint-576/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..97abb9cc20a5f92bd928c5f1146ba4382070e4d6
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-576/rng_state_1.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:dfd75e967c854314c0f0a6322ec7b26143252a64bd6b1b4cbd8afd0c13ec14bc
+size 14512
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-576/scheduler.pt b/runs/mask15-l2r50-fulle-lm/checkpoint-576/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..dbc454a52c5d1edb241846f7cbf86268ced2c2ff
--- /dev/null
+++ b/runs/mask15-l2r50-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/mask15-l2r50-fulle-lm/checkpoint-576/tokenizer.json b/runs/mask15-l2r50-fulle-lm/checkpoint-576/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..6226bf25372d1a86dbd704ec75d2129960f1ba88
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-576/tokenizer.json
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:9245fe3cb2d40f9ed8d5d8ddd1d58701ba2a236beec08f656162281673f30560
+size 11424264
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-576/tokenizer_config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-576/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..01bc9676576e8cf62a08a9db166d6c5bab1d6727
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-576/tokenizer_config.json
@@ -0,0 +1,20 @@
+{
+ "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|>",
+ "<|mask|>"
+ ],
+ "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/mask15-l2r50-fulle-lm/checkpoint-576/trainer_state.json b/runs/mask15-l2r50-fulle-lm/checkpoint-576/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..f7eb6112bb1628c8bb1e12ae0d100d1be1748eb7
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-576/trainer_state.json
@@ -0,0 +1,4122 @@
+{
+ "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": 9.807971954345703,
+ "learning_rate": 0.0,
+ "loss": 11.989814758300781,
+ "step": 1
+ },
+ {
+ "epoch": 0.027959807776321538,
+ "grad_norm": 9.834383010864258,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 11.993022918701172,
+ "step": 2
+ },
+ {
+ "epoch": 0.04193971166448231,
+ "grad_norm": 9.482470512390137,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 11.854345321655273,
+ "step": 3
+ },
+ {
+ "epoch": 0.055919615552643076,
+ "grad_norm": 7.678808689117432,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 11.618255615234375,
+ "step": 4
+ },
+ {
+ "epoch": 0.06989951944080385,
+ "grad_norm": 6.011275291442871,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 11.351423263549805,
+ "step": 5
+ },
+ {
+ "epoch": 0.08387942332896461,
+ "grad_norm": 5.244393825531006,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 11.128631591796875,
+ "step": 6
+ },
+ {
+ "epoch": 0.09785932721712538,
+ "grad_norm": 4.577618598937988,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 10.921937942504883,
+ "step": 7
+ },
+ {
+ "epoch": 0.11183923110528615,
+ "grad_norm": 4.03810453414917,
+ "learning_rate": 4.2e-05,
+ "loss": 10.742650985717773,
+ "step": 8
+ },
+ {
+ "epoch": 0.1258191349934469,
+ "grad_norm": 3.657679796218872,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 10.600778579711914,
+ "step": 9
+ },
+ {
+ "epoch": 0.1397990388816077,
+ "grad_norm": 3.352902889251709,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 10.489639282226562,
+ "step": 10
+ },
+ {
+ "epoch": 0.15377894276976845,
+ "grad_norm": 3.1162633895874023,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 10.417770385742188,
+ "step": 11
+ },
+ {
+ "epoch": 0.16775884665792923,
+ "grad_norm": 3.0402638912200928,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 10.35334587097168,
+ "step": 12
+ },
+ {
+ "epoch": 0.18173875054608998,
+ "grad_norm": 3.030630111694336,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 10.306867599487305,
+ "step": 13
+ },
+ {
+ "epoch": 0.19571865443425077,
+ "grad_norm": 3.035292148590088,
+ "learning_rate": 7.8e-05,
+ "loss": 10.26003646850586,
+ "step": 14
+ },
+ {
+ "epoch": 0.20969855832241152,
+ "grad_norm": 3.0125675201416016,
+ "learning_rate": 8.4e-05,
+ "loss": 10.219265937805176,
+ "step": 15
+ },
+ {
+ "epoch": 0.2236784622105723,
+ "grad_norm": 2.9998886585235596,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 10.161077499389648,
+ "step": 16
+ },
+ {
+ "epoch": 0.23765836609873306,
+ "grad_norm": 2.9411966800689697,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 10.107423782348633,
+ "step": 17
+ },
+ {
+ "epoch": 0.2516382699868938,
+ "grad_norm": 2.88081955909729,
+ "learning_rate": 0.000102,
+ "loss": 10.04700756072998,
+ "step": 18
+ },
+ {
+ "epoch": 0.2656181738750546,
+ "grad_norm": 2.8219687938690186,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 9.981185913085938,
+ "step": 19
+ },
+ {
+ "epoch": 0.2795980777632154,
+ "grad_norm": 2.79306960105896,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 9.89747142791748,
+ "step": 20
+ },
+ {
+ "epoch": 0.29357798165137616,
+ "grad_norm": 2.7314443588256836,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 9.829219818115234,
+ "step": 21
+ },
+ {
+ "epoch": 0.3075578855395369,
+ "grad_norm": 2.6923747062683105,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 9.747566223144531,
+ "step": 22
+ },
+ {
+ "epoch": 0.3215377894276977,
+ "grad_norm": 2.650602340698242,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 9.66455078125,
+ "step": 23
+ },
+ {
+ "epoch": 0.33551769331585846,
+ "grad_norm": 2.606977701187134,
+ "learning_rate": 0.000138,
+ "loss": 9.582326889038086,
+ "step": 24
+ },
+ {
+ "epoch": 0.34949759720401924,
+ "grad_norm": 2.567256212234497,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 9.492591857910156,
+ "step": 25
+ },
+ {
+ "epoch": 0.36347750109217997,
+ "grad_norm": 2.520740509033203,
+ "learning_rate": 0.00015,
+ "loss": 9.396563529968262,
+ "step": 26
+ },
+ {
+ "epoch": 0.37745740498034075,
+ "grad_norm": 2.471588611602783,
+ "learning_rate": 0.000156,
+ "loss": 9.303571701049805,
+ "step": 27
+ },
+ {
+ "epoch": 0.39143730886850153,
+ "grad_norm": 2.4341530799865723,
+ "learning_rate": 0.000162,
+ "loss": 9.191819190979004,
+ "step": 28
+ },
+ {
+ "epoch": 0.4054172127566623,
+ "grad_norm": 2.369244337081909,
+ "learning_rate": 0.000168,
+ "loss": 9.092012405395508,
+ "step": 29
+ },
+ {
+ "epoch": 0.41939711664482304,
+ "grad_norm": 2.28625226020813,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 8.984567642211914,
+ "step": 30
+ },
+ {
+ "epoch": 0.4333770205329838,
+ "grad_norm": 2.2082231044769287,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 8.889009475708008,
+ "step": 31
+ },
+ {
+ "epoch": 0.4473569244211446,
+ "grad_norm": 2.1429483890533447,
+ "learning_rate": 0.000186,
+ "loss": 8.778556823730469,
+ "step": 32
+ },
+ {
+ "epoch": 0.4613368283093054,
+ "grad_norm": 2.0937352180480957,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 8.661166191101074,
+ "step": 33
+ },
+ {
+ "epoch": 0.4753167321974661,
+ "grad_norm": 2.040790557861328,
+ "learning_rate": 0.000198,
+ "loss": 8.550382614135742,
+ "step": 34
+ },
+ {
+ "epoch": 0.4892966360856269,
+ "grad_norm": 1.93914794921875,
+ "learning_rate": 0.000204,
+ "loss": 8.463907241821289,
+ "step": 35
+ },
+ {
+ "epoch": 0.5032765399737876,
+ "grad_norm": 1.8624178171157837,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 8.3438720703125,
+ "step": 36
+ },
+ {
+ "epoch": 0.5172564438619485,
+ "grad_norm": 1.8107167482376099,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 8.21871566772461,
+ "step": 37
+ },
+ {
+ "epoch": 0.5312363477501092,
+ "grad_norm": 1.717979073524475,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 8.113494873046875,
+ "step": 38
+ },
+ {
+ "epoch": 0.54521625163827,
+ "grad_norm": 1.668742060661316,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 8.006099700927734,
+ "step": 39
+ },
+ {
+ "epoch": 0.5591961555264308,
+ "grad_norm": 1.6147786378860474,
+ "learning_rate": 0.000234,
+ "loss": 7.911509037017822,
+ "step": 40
+ },
+ {
+ "epoch": 0.5731760594145915,
+ "grad_norm": 1.535750150680542,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 7.822839736938477,
+ "step": 41
+ },
+ {
+ "epoch": 0.5871559633027523,
+ "grad_norm": 1.4700065851211548,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 7.713842868804932,
+ "step": 42
+ },
+ {
+ "epoch": 0.601135867190913,
+ "grad_norm": 1.39020574092865,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 7.6040191650390625,
+ "step": 43
+ },
+ {
+ "epoch": 0.6151157710790738,
+ "grad_norm": 1.2875399589538574,
+ "learning_rate": 0.000258,
+ "loss": 7.550642013549805,
+ "step": 44
+ },
+ {
+ "epoch": 0.6290956749672346,
+ "grad_norm": 1.2094247341156006,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 7.460824012756348,
+ "step": 45
+ },
+ {
+ "epoch": 0.6430755788553953,
+ "grad_norm": 1.126452088356018,
+ "learning_rate": 0.00027,
+ "loss": 7.380537986755371,
+ "step": 46
+ },
+ {
+ "epoch": 0.6570554827435562,
+ "grad_norm": 1.0313163995742798,
+ "learning_rate": 0.000276,
+ "loss": 7.286153793334961,
+ "step": 47
+ },
+ {
+ "epoch": 0.6710353866317169,
+ "grad_norm": 0.9172859787940979,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 7.2064714431762695,
+ "step": 48
+ },
+ {
+ "epoch": 0.6850152905198776,
+ "grad_norm": 0.8148201107978821,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 7.158207416534424,
+ "step": 49
+ },
+ {
+ "epoch": 0.6989951944080385,
+ "grad_norm": 0.650123119354248,
+ "learning_rate": 0.000294,
+ "loss": 7.108791828155518,
+ "step": 50
+ },
+ {
+ "epoch": 0.7129750982961992,
+ "grad_norm": 0.5437585711479187,
+ "learning_rate": 0.0003,
+ "loss": 7.083050727844238,
+ "step": 51
+ },
+ {
+ "epoch": 0.7269550021843599,
+ "grad_norm": 0.46762895584106445,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 7.058027267456055,
+ "step": 52
+ },
+ {
+ "epoch": 0.7409349060725208,
+ "grad_norm": 0.47947561740875244,
+ "learning_rate": 0.000312,
+ "loss": 7.015172958374023,
+ "step": 53
+ },
+ {
+ "epoch": 0.7549148099606815,
+ "grad_norm": 0.7546492218971252,
+ "learning_rate": 0.000318,
+ "loss": 7.024629592895508,
+ "step": 54
+ },
+ {
+ "epoch": 0.7688947138488423,
+ "grad_norm": 0.6153718829154968,
+ "learning_rate": 0.000324,
+ "loss": 7.026667594909668,
+ "step": 55
+ },
+ {
+ "epoch": 0.7828746177370031,
+ "grad_norm": 0.3359069228172302,
+ "learning_rate": 0.00033,
+ "loss": 7.008166313171387,
+ "step": 56
+ },
+ {
+ "epoch": 0.7968545216251638,
+ "grad_norm": 0.48906823992729187,
+ "learning_rate": 0.000336,
+ "loss": 7.019716262817383,
+ "step": 57
+ },
+ {
+ "epoch": 0.8108344255133246,
+ "grad_norm": 0.5525421500205994,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 7.02108097076416,
+ "step": 58
+ },
+ {
+ "epoch": 0.8248143294014854,
+ "grad_norm": 0.3103712201118469,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 7.003164768218994,
+ "step": 59
+ },
+ {
+ "epoch": 0.8387942332896461,
+ "grad_norm": 0.4431874752044678,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 7.003463268280029,
+ "step": 60
+ },
+ {
+ "epoch": 0.8527741371778069,
+ "grad_norm": 0.4291120767593384,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 6.96931791305542,
+ "step": 61
+ },
+ {
+ "epoch": 0.8667540410659677,
+ "grad_norm": 0.6566054224967957,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 6.989445686340332,
+ "step": 62
+ },
+ {
+ "epoch": 0.8807339449541285,
+ "grad_norm": 0.20663189888000488,
+ "learning_rate": 0.000372,
+ "loss": 6.9669342041015625,
+ "step": 63
+ },
+ {
+ "epoch": 0.8947138488422892,
+ "grad_norm": 0.6242535710334778,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 6.949883460998535,
+ "step": 64
+ },
+ {
+ "epoch": 0.9086937527304499,
+ "grad_norm": 0.6984224915504456,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 6.955153465270996,
+ "step": 65
+ },
+ {
+ "epoch": 0.9226736566186108,
+ "grad_norm": 0.6328083872795105,
+ "learning_rate": 0.00039,
+ "loss": 6.965421676635742,
+ "step": 66
+ },
+ {
+ "epoch": 0.9366535605067715,
+ "grad_norm": 1.213352918624878,
+ "learning_rate": 0.000396,
+ "loss": 6.9454345703125,
+ "step": 67
+ },
+ {
+ "epoch": 0.9506334643949322,
+ "grad_norm": 0.9221940636634827,
+ "learning_rate": 0.000402,
+ "loss": 6.923908233642578,
+ "step": 68
+ },
+ {
+ "epoch": 0.9646133682830931,
+ "grad_norm": 0.6825450658798218,
+ "learning_rate": 0.000408,
+ "loss": 6.910131454467773,
+ "step": 69
+ },
+ {
+ "epoch": 0.9785932721712538,
+ "grad_norm": 0.5690162181854248,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 6.89891242980957,
+ "step": 70
+ },
+ {
+ "epoch": 0.9925731760594146,
+ "grad_norm": 0.4320870041847229,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 6.896081924438477,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.31632405519485474,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 6.897444725036621,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 7.757839679718018,
+ "eval_runtime": 43.8338,
+ "eval_samples_per_second": 55.71,
+ "eval_steps_per_second": 3.49,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139799038881607,
+ "grad_norm": 0.3789916932582855,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 6.877245903015137,
+ "step": 73
+ },
+ {
+ "epoch": 1.0279598077763215,
+ "grad_norm": 0.9167932868003845,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 6.921600341796875,
+ "step": 74
+ },
+ {
+ "epoch": 1.0419397116644824,
+ "grad_norm": 0.581188440322876,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 6.861001968383789,
+ "step": 75
+ },
+ {
+ "epoch": 1.0559196155526431,
+ "grad_norm": 0.4179714024066925,
+ "learning_rate": 0.00045,
+ "loss": 6.875657081604004,
+ "step": 76
+ },
+ {
+ "epoch": 1.0698995194408039,
+ "grad_norm": 1.0669957399368286,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 6.857122421264648,
+ "step": 77
+ },
+ {
+ "epoch": 1.0838794233289646,
+ "grad_norm": 0.27855145931243896,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 6.828852653503418,
+ "step": 78
+ },
+ {
+ "epoch": 1.0978593272171253,
+ "grad_norm": 0.7192047834396362,
+ "learning_rate": 0.000468,
+ "loss": 6.870839595794678,
+ "step": 79
+ },
+ {
+ "epoch": 1.1118392311052863,
+ "grad_norm": 0.5583325624465942,
+ "learning_rate": 0.000474,
+ "loss": 6.8497514724731445,
+ "step": 80
+ },
+ {
+ "epoch": 1.125819134993447,
+ "grad_norm": 0.3001925051212311,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 6.858528137207031,
+ "step": 81
+ },
+ {
+ "epoch": 1.1397990388816077,
+ "grad_norm": 0.2408239096403122,
+ "learning_rate": 0.000486,
+ "loss": 6.83231258392334,
+ "step": 82
+ },
+ {
+ "epoch": 1.1537789427697684,
+ "grad_norm": 0.28230324387550354,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 6.815476894378662,
+ "step": 83
+ },
+ {
+ "epoch": 1.1677588466579292,
+ "grad_norm": 0.3247123658657074,
+ "learning_rate": 0.000498,
+ "loss": 6.780126094818115,
+ "step": 84
+ },
+ {
+ "epoch": 1.18173875054609,
+ "grad_norm": 0.25713011622428894,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 6.7798309326171875,
+ "step": 85
+ },
+ {
+ "epoch": 1.1957186544342508,
+ "grad_norm": 0.5386835932731628,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 6.791745185852051,
+ "step": 86
+ },
+ {
+ "epoch": 1.2096985583224116,
+ "grad_norm": 0.2226393222808838,
+ "learning_rate": 0.000516,
+ "loss": 6.7826972007751465,
+ "step": 87
+ },
+ {
+ "epoch": 1.2236784622105723,
+ "grad_norm": 0.4338362216949463,
+ "learning_rate": 0.000522,
+ "loss": 6.805043697357178,
+ "step": 88
+ },
+ {
+ "epoch": 1.237658366098733,
+ "grad_norm": 0.2953208386898041,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 6.768434524536133,
+ "step": 89
+ },
+ {
+ "epoch": 1.2516382699868938,
+ "grad_norm": 0.13453717529773712,
+ "learning_rate": 0.000534,
+ "loss": 6.773697376251221,
+ "step": 90
+ },
+ {
+ "epoch": 1.2656181738750547,
+ "grad_norm": 0.35774412751197815,
+ "learning_rate": 0.00054,
+ "loss": 6.766414642333984,
+ "step": 91
+ },
+ {
+ "epoch": 1.2795980777632154,
+ "grad_norm": 0.4669720530509949,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 6.754847526550293,
+ "step": 92
+ },
+ {
+ "epoch": 1.2935779816513762,
+ "grad_norm": 0.13806621730327606,
+ "learning_rate": 0.000552,
+ "loss": 6.746858596801758,
+ "step": 93
+ },
+ {
+ "epoch": 1.307557885539537,
+ "grad_norm": 0.3280332386493683,
+ "learning_rate": 0.000558,
+ "loss": 6.715662956237793,
+ "step": 94
+ },
+ {
+ "epoch": 1.3215377894276976,
+ "grad_norm": 0.4689937233924866,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 6.734938144683838,
+ "step": 95
+ },
+ {
+ "epoch": 1.3355176933158583,
+ "grad_norm": 0.35371264815330505,
+ "learning_rate": 0.00057,
+ "loss": 6.748386383056641,
+ "step": 96
+ },
+ {
+ "epoch": 1.3494975972040193,
+ "grad_norm": 0.15232303738594055,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 6.705557823181152,
+ "step": 97
+ },
+ {
+ "epoch": 1.36347750109218,
+ "grad_norm": 0.30132821202278137,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 6.7199859619140625,
+ "step": 98
+ },
+ {
+ "epoch": 1.3774574049803407,
+ "grad_norm": 0.42174842953681946,
+ "learning_rate": 0.000588,
+ "loss": 6.715370178222656,
+ "step": 99
+ },
+ {
+ "epoch": 1.3914373088685015,
+ "grad_norm": 0.6257228851318359,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 6.707026958465576,
+ "step": 100
+ },
+ {
+ "epoch": 1.4054172127566624,
+ "grad_norm": 0.4551195800304413,
+ "learning_rate": 0.0006,
+ "loss": 6.7078423500061035,
+ "step": 101
+ },
+ {
+ "epoch": 1.4193971166448232,
+ "grad_norm": 0.41940346360206604,
+ "learning_rate": 0.0006,
+ "loss": 6.6959357261657715,
+ "step": 102
+ },
+ {
+ "epoch": 1.4333770205329839,
+ "grad_norm": 0.32251718640327454,
+ "learning_rate": 0.0006,
+ "loss": 6.689168930053711,
+ "step": 103
+ },
+ {
+ "epoch": 1.4473569244211446,
+ "grad_norm": 0.2992720305919647,
+ "learning_rate": 0.0006,
+ "loss": 6.680738925933838,
+ "step": 104
+ },
+ {
+ "epoch": 1.4613368283093053,
+ "grad_norm": 0.3228456974029541,
+ "learning_rate": 0.0006,
+ "loss": 6.672350883483887,
+ "step": 105
+ },
+ {
+ "epoch": 1.475316732197466,
+ "grad_norm": 0.24954743683338165,
+ "learning_rate": 0.0006,
+ "loss": 6.653716087341309,
+ "step": 106
+ },
+ {
+ "epoch": 1.4892966360856268,
+ "grad_norm": 0.30740687251091003,
+ "learning_rate": 0.0006,
+ "loss": 6.676583290100098,
+ "step": 107
+ },
+ {
+ "epoch": 1.5032765399737875,
+ "grad_norm": 0.24950599670410156,
+ "learning_rate": 0.0006,
+ "loss": 6.656691551208496,
+ "step": 108
+ },
+ {
+ "epoch": 1.5172564438619485,
+ "grad_norm": 0.24293005466461182,
+ "learning_rate": 0.0006,
+ "loss": 6.640995979309082,
+ "step": 109
+ },
+ {
+ "epoch": 1.5312363477501092,
+ "grad_norm": 0.30167272686958313,
+ "learning_rate": 0.0006,
+ "loss": 6.647380352020264,
+ "step": 110
+ },
+ {
+ "epoch": 1.5452162516382701,
+ "grad_norm": 0.4424632787704468,
+ "learning_rate": 0.0006,
+ "loss": 6.6548261642456055,
+ "step": 111
+ },
+ {
+ "epoch": 1.5591961555264309,
+ "grad_norm": 0.5295748114585876,
+ "learning_rate": 0.0006,
+ "loss": 6.64370059967041,
+ "step": 112
+ },
+ {
+ "epoch": 1.5731760594145916,
+ "grad_norm": 0.6829339265823364,
+ "learning_rate": 0.0006,
+ "loss": 6.654196739196777,
+ "step": 113
+ },
+ {
+ "epoch": 1.5871559633027523,
+ "grad_norm": 0.6534460186958313,
+ "learning_rate": 0.0006,
+ "loss": 6.675765037536621,
+ "step": 114
+ },
+ {
+ "epoch": 1.601135867190913,
+ "grad_norm": 0.6172244548797607,
+ "learning_rate": 0.0006,
+ "loss": 6.631234169006348,
+ "step": 115
+ },
+ {
+ "epoch": 1.6151157710790738,
+ "grad_norm": 0.5650008320808411,
+ "learning_rate": 0.0006,
+ "loss": 6.654262542724609,
+ "step": 116
+ },
+ {
+ "epoch": 1.6290956749672345,
+ "grad_norm": 0.3890475928783417,
+ "learning_rate": 0.0006,
+ "loss": 6.627526760101318,
+ "step": 117
+ },
+ {
+ "epoch": 1.6430755788553952,
+ "grad_norm": 0.6409873366355896,
+ "learning_rate": 0.0006,
+ "loss": 6.619794845581055,
+ "step": 118
+ },
+ {
+ "epoch": 1.6570554827435562,
+ "grad_norm": 0.5052326321601868,
+ "learning_rate": 0.0006,
+ "loss": 6.612556457519531,
+ "step": 119
+ },
+ {
+ "epoch": 1.671035386631717,
+ "grad_norm": 0.5001237988471985,
+ "learning_rate": 0.0006,
+ "loss": 6.577266693115234,
+ "step": 120
+ },
+ {
+ "epoch": 1.6850152905198776,
+ "grad_norm": 0.5328938364982605,
+ "learning_rate": 0.0006,
+ "loss": 6.59553337097168,
+ "step": 121
+ },
+ {
+ "epoch": 1.6989951944080386,
+ "grad_norm": 0.3568951189517975,
+ "learning_rate": 0.0006,
+ "loss": 6.602717399597168,
+ "step": 122
+ },
+ {
+ "epoch": 1.7129750982961993,
+ "grad_norm": 0.4017309546470642,
+ "learning_rate": 0.0006,
+ "loss": 6.589657783508301,
+ "step": 123
+ },
+ {
+ "epoch": 1.72695500218436,
+ "grad_norm": 0.21432629227638245,
+ "learning_rate": 0.0006,
+ "loss": 6.586555480957031,
+ "step": 124
+ },
+ {
+ "epoch": 1.7409349060725208,
+ "grad_norm": 0.21038052439689636,
+ "learning_rate": 0.0006,
+ "loss": 6.576569557189941,
+ "step": 125
+ },
+ {
+ "epoch": 1.7549148099606815,
+ "grad_norm": 0.23074904084205627,
+ "learning_rate": 0.0006,
+ "loss": 6.5880632400512695,
+ "step": 126
+ },
+ {
+ "epoch": 1.7688947138488422,
+ "grad_norm": 0.42963048815727234,
+ "learning_rate": 0.0006,
+ "loss": 6.603862762451172,
+ "step": 127
+ },
+ {
+ "epoch": 1.782874617737003,
+ "grad_norm": 0.361331045627594,
+ "learning_rate": 0.0006,
+ "loss": 6.579834938049316,
+ "step": 128
+ },
+ {
+ "epoch": 1.7968545216251637,
+ "grad_norm": 0.4951060712337494,
+ "learning_rate": 0.0006,
+ "loss": 6.570443630218506,
+ "step": 129
+ },
+ {
+ "epoch": 1.8108344255133246,
+ "grad_norm": 0.2258434295654297,
+ "learning_rate": 0.0006,
+ "loss": 6.5664777755737305,
+ "step": 130
+ },
+ {
+ "epoch": 1.8248143294014854,
+ "grad_norm": 0.2922155559062958,
+ "learning_rate": 0.0006,
+ "loss": 6.561326503753662,
+ "step": 131
+ },
+ {
+ "epoch": 1.838794233289646,
+ "grad_norm": 0.19068220257759094,
+ "learning_rate": 0.0006,
+ "loss": 6.528727054595947,
+ "step": 132
+ },
+ {
+ "epoch": 1.852774137177807,
+ "grad_norm": 0.2122010439634323,
+ "learning_rate": 0.0006,
+ "loss": 6.535636901855469,
+ "step": 133
+ },
+ {
+ "epoch": 1.8667540410659678,
+ "grad_norm": 0.25760164856910706,
+ "learning_rate": 0.0006,
+ "loss": 6.530498504638672,
+ "step": 134
+ },
+ {
+ "epoch": 1.8807339449541285,
+ "grad_norm": 0.1761016845703125,
+ "learning_rate": 0.0006,
+ "loss": 6.514466285705566,
+ "step": 135
+ },
+ {
+ "epoch": 1.8947138488422892,
+ "grad_norm": 0.2250051498413086,
+ "learning_rate": 0.0006,
+ "loss": 6.521268844604492,
+ "step": 136
+ },
+ {
+ "epoch": 1.90869375273045,
+ "grad_norm": 0.34458497166633606,
+ "learning_rate": 0.0006,
+ "loss": 6.512831687927246,
+ "step": 137
+ },
+ {
+ "epoch": 1.9226736566186107,
+ "grad_norm": 0.3468617796897888,
+ "learning_rate": 0.0006,
+ "loss": 6.515641689300537,
+ "step": 138
+ },
+ {
+ "epoch": 1.9366535605067714,
+ "grad_norm": 0.5051495432853699,
+ "learning_rate": 0.0006,
+ "loss": 6.5147905349731445,
+ "step": 139
+ },
+ {
+ "epoch": 1.9506334643949321,
+ "grad_norm": 0.7106727361679077,
+ "learning_rate": 0.0006,
+ "loss": 6.519277572631836,
+ "step": 140
+ },
+ {
+ "epoch": 1.964613368283093,
+ "grad_norm": 0.8881394267082214,
+ "learning_rate": 0.0006,
+ "loss": 6.526865482330322,
+ "step": 141
+ },
+ {
+ "epoch": 1.9785932721712538,
+ "grad_norm": 0.5552834272384644,
+ "learning_rate": 0.0006,
+ "loss": 6.469970226287842,
+ "step": 142
+ },
+ {
+ "epoch": 1.9925731760594148,
+ "grad_norm": 0.6903126835823059,
+ "learning_rate": 0.0006,
+ "loss": 6.476300239562988,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.47679027915000916,
+ "learning_rate": 0.0006,
+ "loss": 6.463827133178711,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 7.388528823852539,
+ "eval_runtime": 44.2519,
+ "eval_samples_per_second": 55.184,
+ "eval_steps_per_second": 3.457,
+ "step": 144
+ },
+ {
+ "epoch": 2.0139799038881607,
+ "grad_norm": 0.4719221293926239,
+ "learning_rate": 0.0006,
+ "loss": 6.480956077575684,
+ "step": 145
+ },
+ {
+ "epoch": 2.0279598077763215,
+ "grad_norm": 0.41137924790382385,
+ "learning_rate": 0.0006,
+ "loss": 6.449707984924316,
+ "step": 146
+ },
+ {
+ "epoch": 2.041939711664482,
+ "grad_norm": 0.4237765371799469,
+ "learning_rate": 0.0006,
+ "loss": 6.467435836791992,
+ "step": 147
+ },
+ {
+ "epoch": 2.055919615552643,
+ "grad_norm": 0.44081810116767883,
+ "learning_rate": 0.0006,
+ "loss": 6.436868667602539,
+ "step": 148
+ },
+ {
+ "epoch": 2.0698995194408036,
+ "grad_norm": 0.4163798391819,
+ "learning_rate": 0.0006,
+ "loss": 6.4642014503479,
+ "step": 149
+ },
+ {
+ "epoch": 2.083879423328965,
+ "grad_norm": 0.3831583261489868,
+ "learning_rate": 0.0006,
+ "loss": 6.454092025756836,
+ "step": 150
+ },
+ {
+ "epoch": 2.0978593272171255,
+ "grad_norm": 0.37721413373947144,
+ "learning_rate": 0.0006,
+ "loss": 6.426377296447754,
+ "step": 151
+ },
+ {
+ "epoch": 2.1118392311052863,
+ "grad_norm": 0.3323550224304199,
+ "learning_rate": 0.0006,
+ "loss": 6.421375274658203,
+ "step": 152
+ },
+ {
+ "epoch": 2.125819134993447,
+ "grad_norm": 0.47739624977111816,
+ "learning_rate": 0.0006,
+ "loss": 6.412004470825195,
+ "step": 153
+ },
+ {
+ "epoch": 2.1397990388816077,
+ "grad_norm": 0.8530274629592896,
+ "learning_rate": 0.0006,
+ "loss": 6.410468578338623,
+ "step": 154
+ },
+ {
+ "epoch": 2.1537789427697684,
+ "grad_norm": 0.6420364379882812,
+ "learning_rate": 0.0006,
+ "loss": 6.413525581359863,
+ "step": 155
+ },
+ {
+ "epoch": 2.167758846657929,
+ "grad_norm": 0.5005049109458923,
+ "learning_rate": 0.0006,
+ "loss": 6.401463508605957,
+ "step": 156
+ },
+ {
+ "epoch": 2.18173875054609,
+ "grad_norm": 0.3614683449268341,
+ "learning_rate": 0.0006,
+ "loss": 6.390063285827637,
+ "step": 157
+ },
+ {
+ "epoch": 2.1957186544342506,
+ "grad_norm": 0.595215380191803,
+ "learning_rate": 0.0006,
+ "loss": 6.369806289672852,
+ "step": 158
+ },
+ {
+ "epoch": 2.2096985583224114,
+ "grad_norm": 0.5700321793556213,
+ "learning_rate": 0.0006,
+ "loss": 6.368378639221191,
+ "step": 159
+ },
+ {
+ "epoch": 2.2236784622105725,
+ "grad_norm": 0.36273983120918274,
+ "learning_rate": 0.0006,
+ "loss": 6.366860389709473,
+ "step": 160
+ },
+ {
+ "epoch": 2.2376583660987333,
+ "grad_norm": 0.2850998342037201,
+ "learning_rate": 0.0006,
+ "loss": 6.352144718170166,
+ "step": 161
+ },
+ {
+ "epoch": 2.251638269986894,
+ "grad_norm": 0.38558584451675415,
+ "learning_rate": 0.0006,
+ "loss": 6.375765800476074,
+ "step": 162
+ },
+ {
+ "epoch": 2.2656181738750547,
+ "grad_norm": 0.34809231758117676,
+ "learning_rate": 0.0006,
+ "loss": 6.350445747375488,
+ "step": 163
+ },
+ {
+ "epoch": 2.2795980777632154,
+ "grad_norm": 0.5211818814277649,
+ "learning_rate": 0.0006,
+ "loss": 6.354585647583008,
+ "step": 164
+ },
+ {
+ "epoch": 2.293577981651376,
+ "grad_norm": 1.0809133052825928,
+ "learning_rate": 0.0006,
+ "loss": 6.3752007484436035,
+ "step": 165
+ },
+ {
+ "epoch": 2.307557885539537,
+ "grad_norm": 0.8293641209602356,
+ "learning_rate": 0.0006,
+ "loss": 6.35113525390625,
+ "step": 166
+ },
+ {
+ "epoch": 2.3215377894276976,
+ "grad_norm": 0.3428577780723572,
+ "learning_rate": 0.0006,
+ "loss": 6.334470748901367,
+ "step": 167
+ },
+ {
+ "epoch": 2.3355176933158583,
+ "grad_norm": 0.7587600946426392,
+ "learning_rate": 0.0006,
+ "loss": 6.353979587554932,
+ "step": 168
+ },
+ {
+ "epoch": 2.349497597204019,
+ "grad_norm": 0.4227249026298523,
+ "learning_rate": 0.0006,
+ "loss": 6.34018611907959,
+ "step": 169
+ },
+ {
+ "epoch": 2.36347750109218,
+ "grad_norm": 0.4226846694946289,
+ "learning_rate": 0.0006,
+ "loss": 6.290019989013672,
+ "step": 170
+ },
+ {
+ "epoch": 2.3774574049803405,
+ "grad_norm": 0.38412365317344666,
+ "learning_rate": 0.0006,
+ "loss": 6.309510231018066,
+ "step": 171
+ },
+ {
+ "epoch": 2.3914373088685017,
+ "grad_norm": 0.45698508620262146,
+ "learning_rate": 0.0006,
+ "loss": 6.283290863037109,
+ "step": 172
+ },
+ {
+ "epoch": 2.4054172127566624,
+ "grad_norm": 0.7575915455818176,
+ "learning_rate": 0.0006,
+ "loss": 6.306073188781738,
+ "step": 173
+ },
+ {
+ "epoch": 2.419397116644823,
+ "grad_norm": 0.695123553276062,
+ "learning_rate": 0.0006,
+ "loss": 6.308144569396973,
+ "step": 174
+ },
+ {
+ "epoch": 2.433377020532984,
+ "grad_norm": 0.5035743117332458,
+ "learning_rate": 0.0006,
+ "loss": 6.282073974609375,
+ "step": 175
+ },
+ {
+ "epoch": 2.4473569244211446,
+ "grad_norm": 0.3158020079135895,
+ "learning_rate": 0.0006,
+ "loss": 6.282169342041016,
+ "step": 176
+ },
+ {
+ "epoch": 2.4613368283093053,
+ "grad_norm": 0.4829689860343933,
+ "learning_rate": 0.0006,
+ "loss": 6.264578819274902,
+ "step": 177
+ },
+ {
+ "epoch": 2.475316732197466,
+ "grad_norm": 0.3992770314216614,
+ "learning_rate": 0.0006,
+ "loss": 6.228628158569336,
+ "step": 178
+ },
+ {
+ "epoch": 2.489296636085627,
+ "grad_norm": 0.40887606143951416,
+ "learning_rate": 0.0006,
+ "loss": 6.230792045593262,
+ "step": 179
+ },
+ {
+ "epoch": 2.5032765399737875,
+ "grad_norm": 0.3540310263633728,
+ "learning_rate": 0.0006,
+ "loss": 6.222573280334473,
+ "step": 180
+ },
+ {
+ "epoch": 2.5172564438619487,
+ "grad_norm": 0.496219664812088,
+ "learning_rate": 0.0006,
+ "loss": 6.212109565734863,
+ "step": 181
+ },
+ {
+ "epoch": 2.5312363477501094,
+ "grad_norm": 0.435173898935318,
+ "learning_rate": 0.0006,
+ "loss": 6.221210479736328,
+ "step": 182
+ },
+ {
+ "epoch": 2.54521625163827,
+ "grad_norm": 0.5364007949829102,
+ "learning_rate": 0.0006,
+ "loss": 6.217929840087891,
+ "step": 183
+ },
+ {
+ "epoch": 2.559196155526431,
+ "grad_norm": 0.5946390628814697,
+ "learning_rate": 0.0006,
+ "loss": 6.189267158508301,
+ "step": 184
+ },
+ {
+ "epoch": 2.5731760594145916,
+ "grad_norm": 0.41621312499046326,
+ "learning_rate": 0.0006,
+ "loss": 6.182415008544922,
+ "step": 185
+ },
+ {
+ "epoch": 2.5871559633027523,
+ "grad_norm": 0.5442072749137878,
+ "learning_rate": 0.0006,
+ "loss": 6.150757789611816,
+ "step": 186
+ },
+ {
+ "epoch": 2.601135867190913,
+ "grad_norm": 0.727843165397644,
+ "learning_rate": 0.0006,
+ "loss": 6.146082878112793,
+ "step": 187
+ },
+ {
+ "epoch": 2.615115771079074,
+ "grad_norm": 0.8898891806602478,
+ "learning_rate": 0.0006,
+ "loss": 6.190483093261719,
+ "step": 188
+ },
+ {
+ "epoch": 2.6290956749672345,
+ "grad_norm": 0.5173947215080261,
+ "learning_rate": 0.0006,
+ "loss": 6.151251792907715,
+ "step": 189
+ },
+ {
+ "epoch": 2.6430755788553952,
+ "grad_norm": 0.6476729512214661,
+ "learning_rate": 0.0006,
+ "loss": 6.154841423034668,
+ "step": 190
+ },
+ {
+ "epoch": 2.657055482743556,
+ "grad_norm": 0.3538810908794403,
+ "learning_rate": 0.0006,
+ "loss": 6.103879928588867,
+ "step": 191
+ },
+ {
+ "epoch": 2.6710353866317167,
+ "grad_norm": 0.4773508310317993,
+ "learning_rate": 0.0006,
+ "loss": 6.118101119995117,
+ "step": 192
+ },
+ {
+ "epoch": 2.6850152905198774,
+ "grad_norm": 0.29213786125183105,
+ "learning_rate": 0.0006,
+ "loss": 6.108916282653809,
+ "step": 193
+ },
+ {
+ "epoch": 2.6989951944080386,
+ "grad_norm": 0.40800607204437256,
+ "learning_rate": 0.0006,
+ "loss": 6.113438606262207,
+ "step": 194
+ },
+ {
+ "epoch": 2.7129750982961993,
+ "grad_norm": 0.31157299876213074,
+ "learning_rate": 0.0006,
+ "loss": 6.101809501647949,
+ "step": 195
+ },
+ {
+ "epoch": 2.72695500218436,
+ "grad_norm": 0.28660309314727783,
+ "learning_rate": 0.0006,
+ "loss": 6.075886249542236,
+ "step": 196
+ },
+ {
+ "epoch": 2.7409349060725208,
+ "grad_norm": 0.3810449540615082,
+ "learning_rate": 0.0006,
+ "loss": 6.053257942199707,
+ "step": 197
+ },
+ {
+ "epoch": 2.7549148099606815,
+ "grad_norm": 0.21741755306720734,
+ "learning_rate": 0.0006,
+ "loss": 6.013825416564941,
+ "step": 198
+ },
+ {
+ "epoch": 2.7688947138488422,
+ "grad_norm": 0.2777678966522217,
+ "learning_rate": 0.0006,
+ "loss": 6.054204940795898,
+ "step": 199
+ },
+ {
+ "epoch": 2.782874617737003,
+ "grad_norm": 0.28503066301345825,
+ "learning_rate": 0.0006,
+ "loss": 6.035628318786621,
+ "step": 200
+ },
+ {
+ "epoch": 2.7968545216251637,
+ "grad_norm": 0.41954755783081055,
+ "learning_rate": 0.0006,
+ "loss": 6.028354644775391,
+ "step": 201
+ },
+ {
+ "epoch": 2.810834425513325,
+ "grad_norm": 0.8785563111305237,
+ "learning_rate": 0.0006,
+ "loss": 6.055761337280273,
+ "step": 202
+ },
+ {
+ "epoch": 2.8248143294014856,
+ "grad_norm": 1.7459558248519897,
+ "learning_rate": 0.0006,
+ "loss": 6.11599588394165,
+ "step": 203
+ },
+ {
+ "epoch": 2.8387942332896463,
+ "grad_norm": 0.5725523233413696,
+ "learning_rate": 0.0006,
+ "loss": 6.024280548095703,
+ "step": 204
+ },
+ {
+ "epoch": 2.852774137177807,
+ "grad_norm": 0.5913150906562805,
+ "learning_rate": 0.0006,
+ "loss": 6.050281524658203,
+ "step": 205
+ },
+ {
+ "epoch": 2.8667540410659678,
+ "grad_norm": 0.5929384827613831,
+ "learning_rate": 0.0006,
+ "loss": 6.041121482849121,
+ "step": 206
+ },
+ {
+ "epoch": 2.8807339449541285,
+ "grad_norm": 0.5650724768638611,
+ "learning_rate": 0.0006,
+ "loss": 6.004258155822754,
+ "step": 207
+ },
+ {
+ "epoch": 2.894713848842289,
+ "grad_norm": 0.3420545756816864,
+ "learning_rate": 0.0006,
+ "loss": 5.983296871185303,
+ "step": 208
+ },
+ {
+ "epoch": 2.90869375273045,
+ "grad_norm": 0.2960914075374603,
+ "learning_rate": 0.0006,
+ "loss": 5.988578796386719,
+ "step": 209
+ },
+ {
+ "epoch": 2.9226736566186107,
+ "grad_norm": 0.3252662718296051,
+ "learning_rate": 0.0006,
+ "loss": 5.99103307723999,
+ "step": 210
+ },
+ {
+ "epoch": 2.9366535605067714,
+ "grad_norm": 0.4851132929325104,
+ "learning_rate": 0.0006,
+ "loss": 6.0028977394104,
+ "step": 211
+ },
+ {
+ "epoch": 2.950633464394932,
+ "grad_norm": 0.5639995336532593,
+ "learning_rate": 0.0006,
+ "loss": 5.965080738067627,
+ "step": 212
+ },
+ {
+ "epoch": 2.964613368283093,
+ "grad_norm": 0.4514601230621338,
+ "learning_rate": 0.0006,
+ "loss": 5.961450576782227,
+ "step": 213
+ },
+ {
+ "epoch": 2.9785932721712536,
+ "grad_norm": 0.5397921800613403,
+ "learning_rate": 0.0006,
+ "loss": 5.965290546417236,
+ "step": 214
+ },
+ {
+ "epoch": 2.9925731760594148,
+ "grad_norm": 0.4735587239265442,
+ "learning_rate": 0.0006,
+ "loss": 5.952754497528076,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.32061058282852173,
+ "learning_rate": 0.0006,
+ "loss": 5.961667060852051,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 6.8517303466796875,
+ "eval_runtime": 44.03,
+ "eval_samples_per_second": 55.462,
+ "eval_steps_per_second": 3.475,
+ "step": 216
+ },
+ {
+ "epoch": 3.0139799038881607,
+ "grad_norm": 0.3537784814834595,
+ "learning_rate": 0.0006,
+ "loss": 5.928008079528809,
+ "step": 217
+ },
+ {
+ "epoch": 3.0279598077763215,
+ "grad_norm": 0.40713080763816833,
+ "learning_rate": 0.0006,
+ "loss": 5.9150800704956055,
+ "step": 218
+ },
+ {
+ "epoch": 3.041939711664482,
+ "grad_norm": 0.2548826336860657,
+ "learning_rate": 0.0006,
+ "loss": 5.919757843017578,
+ "step": 219
+ },
+ {
+ "epoch": 3.055919615552643,
+ "grad_norm": 0.2818543016910553,
+ "learning_rate": 0.0006,
+ "loss": 5.913688659667969,
+ "step": 220
+ },
+ {
+ "epoch": 3.0698995194408036,
+ "grad_norm": 0.4196692705154419,
+ "learning_rate": 0.0006,
+ "loss": 5.8675336837768555,
+ "step": 221
+ },
+ {
+ "epoch": 3.083879423328965,
+ "grad_norm": 0.35272282361984253,
+ "learning_rate": 0.0006,
+ "loss": 5.878874778747559,
+ "step": 222
+ },
+ {
+ "epoch": 3.0978593272171255,
+ "grad_norm": 0.3254282772541046,
+ "learning_rate": 0.0006,
+ "loss": 5.8823041915893555,
+ "step": 223
+ },
+ {
+ "epoch": 3.1118392311052863,
+ "grad_norm": 0.4052561819553375,
+ "learning_rate": 0.0006,
+ "loss": 5.867744445800781,
+ "step": 224
+ },
+ {
+ "epoch": 3.125819134993447,
+ "grad_norm": 0.31246256828308105,
+ "learning_rate": 0.0006,
+ "loss": 5.886094093322754,
+ "step": 225
+ },
+ {
+ "epoch": 3.1397990388816077,
+ "grad_norm": 0.3479118347167969,
+ "learning_rate": 0.0006,
+ "loss": 5.850762367248535,
+ "step": 226
+ },
+ {
+ "epoch": 3.1537789427697684,
+ "grad_norm": 0.5037238597869873,
+ "learning_rate": 0.0006,
+ "loss": 5.844175815582275,
+ "step": 227
+ },
+ {
+ "epoch": 3.167758846657929,
+ "grad_norm": 0.6271815896034241,
+ "learning_rate": 0.0006,
+ "loss": 5.871790885925293,
+ "step": 228
+ },
+ {
+ "epoch": 3.18173875054609,
+ "grad_norm": 0.43838298320770264,
+ "learning_rate": 0.0006,
+ "loss": 5.844024658203125,
+ "step": 229
+ },
+ {
+ "epoch": 3.1957186544342506,
+ "grad_norm": 0.4755159616470337,
+ "learning_rate": 0.0006,
+ "loss": 5.846892356872559,
+ "step": 230
+ },
+ {
+ "epoch": 3.2096985583224114,
+ "grad_norm": 0.5229779481887817,
+ "learning_rate": 0.0006,
+ "loss": 5.827000617980957,
+ "step": 231
+ },
+ {
+ "epoch": 3.2236784622105725,
+ "grad_norm": 0.8264499306678772,
+ "learning_rate": 0.0006,
+ "loss": 5.867050647735596,
+ "step": 232
+ },
+ {
+ "epoch": 3.2376583660987333,
+ "grad_norm": 1.0607538223266602,
+ "learning_rate": 0.0006,
+ "loss": 5.877876281738281,
+ "step": 233
+ },
+ {
+ "epoch": 3.251638269986894,
+ "grad_norm": 0.7656505703926086,
+ "learning_rate": 0.0006,
+ "loss": 5.86760139465332,
+ "step": 234
+ },
+ {
+ "epoch": 3.2656181738750547,
+ "grad_norm": 0.7940183281898499,
+ "learning_rate": 0.0006,
+ "loss": 5.861355781555176,
+ "step": 235
+ },
+ {
+ "epoch": 3.2795980777632154,
+ "grad_norm": 0.45171424746513367,
+ "learning_rate": 0.0006,
+ "loss": 5.799808502197266,
+ "step": 236
+ },
+ {
+ "epoch": 3.293577981651376,
+ "grad_norm": 0.6174989342689514,
+ "learning_rate": 0.0006,
+ "loss": 5.8585920333862305,
+ "step": 237
+ },
+ {
+ "epoch": 3.307557885539537,
+ "grad_norm": 0.5341290831565857,
+ "learning_rate": 0.0006,
+ "loss": 5.8116044998168945,
+ "step": 238
+ },
+ {
+ "epoch": 3.3215377894276976,
+ "grad_norm": 0.3938343822956085,
+ "learning_rate": 0.0006,
+ "loss": 5.83797550201416,
+ "step": 239
+ },
+ {
+ "epoch": 3.3355176933158583,
+ "grad_norm": 0.5106972455978394,
+ "learning_rate": 0.0006,
+ "loss": 5.832303047180176,
+ "step": 240
+ },
+ {
+ "epoch": 3.349497597204019,
+ "grad_norm": 0.3791428506374359,
+ "learning_rate": 0.0006,
+ "loss": 5.794981956481934,
+ "step": 241
+ },
+ {
+ "epoch": 3.36347750109218,
+ "grad_norm": 0.42287978529930115,
+ "learning_rate": 0.0006,
+ "loss": 5.788144111633301,
+ "step": 242
+ },
+ {
+ "epoch": 3.3774574049803405,
+ "grad_norm": 0.27334436774253845,
+ "learning_rate": 0.0006,
+ "loss": 5.771070957183838,
+ "step": 243
+ },
+ {
+ "epoch": 3.3914373088685017,
+ "grad_norm": 0.2470470368862152,
+ "learning_rate": 0.0006,
+ "loss": 5.755998611450195,
+ "step": 244
+ },
+ {
+ "epoch": 3.4054172127566624,
+ "grad_norm": 0.3043915033340454,
+ "learning_rate": 0.0006,
+ "loss": 5.779492378234863,
+ "step": 245
+ },
+ {
+ "epoch": 3.419397116644823,
+ "grad_norm": 0.2960112988948822,
+ "learning_rate": 0.0006,
+ "loss": 5.750328063964844,
+ "step": 246
+ },
+ {
+ "epoch": 3.433377020532984,
+ "grad_norm": 0.3046723008155823,
+ "learning_rate": 0.0006,
+ "loss": 5.776517868041992,
+ "step": 247
+ },
+ {
+ "epoch": 3.4473569244211446,
+ "grad_norm": 0.22461780905723572,
+ "learning_rate": 0.0006,
+ "loss": 5.760989665985107,
+ "step": 248
+ },
+ {
+ "epoch": 3.4613368283093053,
+ "grad_norm": 0.24625757336616516,
+ "learning_rate": 0.0006,
+ "loss": 5.759706497192383,
+ "step": 249
+ },
+ {
+ "epoch": 3.475316732197466,
+ "grad_norm": 0.18207131326198578,
+ "learning_rate": 0.0006,
+ "loss": 5.747040748596191,
+ "step": 250
+ },
+ {
+ "epoch": 3.489296636085627,
+ "grad_norm": 0.16473834216594696,
+ "learning_rate": 0.0006,
+ "loss": 5.761577606201172,
+ "step": 251
+ },
+ {
+ "epoch": 3.5032765399737875,
+ "grad_norm": 0.25155773758888245,
+ "learning_rate": 0.0006,
+ "loss": 5.696502208709717,
+ "step": 252
+ },
+ {
+ "epoch": 3.5172564438619487,
+ "grad_norm": 0.24115674197673798,
+ "learning_rate": 0.0006,
+ "loss": 5.676957130432129,
+ "step": 253
+ },
+ {
+ "epoch": 3.5312363477501094,
+ "grad_norm": 0.40912172198295593,
+ "learning_rate": 0.0006,
+ "loss": 5.695090293884277,
+ "step": 254
+ },
+ {
+ "epoch": 3.54521625163827,
+ "grad_norm": 0.6727662682533264,
+ "learning_rate": 0.0006,
+ "loss": 5.722194671630859,
+ "step": 255
+ },
+ {
+ "epoch": 3.559196155526431,
+ "grad_norm": 0.8450719118118286,
+ "learning_rate": 0.0006,
+ "loss": 5.764680862426758,
+ "step": 256
+ },
+ {
+ "epoch": 3.5731760594145916,
+ "grad_norm": 0.9916183352470398,
+ "learning_rate": 0.0006,
+ "loss": 5.754530429840088,
+ "step": 257
+ },
+ {
+ "epoch": 3.5871559633027523,
+ "grad_norm": 1.041922688484192,
+ "learning_rate": 0.0006,
+ "loss": 5.781468391418457,
+ "step": 258
+ },
+ {
+ "epoch": 3.601135867190913,
+ "grad_norm": 0.972039520740509,
+ "learning_rate": 0.0006,
+ "loss": 5.760323524475098,
+ "step": 259
+ },
+ {
+ "epoch": 3.615115771079074,
+ "grad_norm": 0.6802462935447693,
+ "learning_rate": 0.0006,
+ "loss": 5.750064849853516,
+ "step": 260
+ },
+ {
+ "epoch": 3.6290956749672345,
+ "grad_norm": 0.48553529381752014,
+ "learning_rate": 0.0006,
+ "loss": 5.7464094161987305,
+ "step": 261
+ },
+ {
+ "epoch": 3.6430755788553952,
+ "grad_norm": 0.4066704213619232,
+ "learning_rate": 0.0006,
+ "loss": 5.719789505004883,
+ "step": 262
+ },
+ {
+ "epoch": 3.657055482743556,
+ "grad_norm": 0.3300860822200775,
+ "learning_rate": 0.0006,
+ "loss": 5.719920635223389,
+ "step": 263
+ },
+ {
+ "epoch": 3.6710353866317167,
+ "grad_norm": 0.3286679983139038,
+ "learning_rate": 0.0006,
+ "loss": 5.723465919494629,
+ "step": 264
+ },
+ {
+ "epoch": 3.6850152905198774,
+ "grad_norm": 0.27653390169143677,
+ "learning_rate": 0.0006,
+ "loss": 5.713820457458496,
+ "step": 265
+ },
+ {
+ "epoch": 3.6989951944080386,
+ "grad_norm": 0.26138055324554443,
+ "learning_rate": 0.0006,
+ "loss": 5.683221817016602,
+ "step": 266
+ },
+ {
+ "epoch": 3.7129750982961993,
+ "grad_norm": 0.23706290125846863,
+ "learning_rate": 0.0006,
+ "loss": 5.6896867752075195,
+ "step": 267
+ },
+ {
+ "epoch": 3.72695500218436,
+ "grad_norm": 0.2751729190349579,
+ "learning_rate": 0.0006,
+ "loss": 5.710301876068115,
+ "step": 268
+ },
+ {
+ "epoch": 3.7409349060725208,
+ "grad_norm": 0.255393385887146,
+ "learning_rate": 0.0006,
+ "loss": 5.687932968139648,
+ "step": 269
+ },
+ {
+ "epoch": 3.7549148099606815,
+ "grad_norm": 0.21453925967216492,
+ "learning_rate": 0.0006,
+ "loss": 5.68234395980835,
+ "step": 270
+ },
+ {
+ "epoch": 3.7688947138488422,
+ "grad_norm": 0.21771012246608734,
+ "learning_rate": 0.0006,
+ "loss": 5.683980464935303,
+ "step": 271
+ },
+ {
+ "epoch": 3.782874617737003,
+ "grad_norm": 0.1884593963623047,
+ "learning_rate": 0.0006,
+ "loss": 5.662779808044434,
+ "step": 272
+ },
+ {
+ "epoch": 3.7968545216251637,
+ "grad_norm": 0.20429612696170807,
+ "learning_rate": 0.0006,
+ "loss": 5.650941848754883,
+ "step": 273
+ },
+ {
+ "epoch": 3.810834425513325,
+ "grad_norm": 0.22586797177791595,
+ "learning_rate": 0.0006,
+ "loss": 5.639376640319824,
+ "step": 274
+ },
+ {
+ "epoch": 3.8248143294014856,
+ "grad_norm": 0.19651705026626587,
+ "learning_rate": 0.0006,
+ "loss": 5.612030029296875,
+ "step": 275
+ },
+ {
+ "epoch": 3.8387942332896463,
+ "grad_norm": 0.2125253826379776,
+ "learning_rate": 0.0006,
+ "loss": 5.622836589813232,
+ "step": 276
+ },
+ {
+ "epoch": 3.852774137177807,
+ "grad_norm": 0.2905234694480896,
+ "learning_rate": 0.0006,
+ "loss": 5.624594688415527,
+ "step": 277
+ },
+ {
+ "epoch": 3.8667540410659678,
+ "grad_norm": 0.2718426585197449,
+ "learning_rate": 0.0006,
+ "loss": 5.619892120361328,
+ "step": 278
+ },
+ {
+ "epoch": 3.8807339449541285,
+ "grad_norm": 0.26481127738952637,
+ "learning_rate": 0.0006,
+ "loss": 5.612496852874756,
+ "step": 279
+ },
+ {
+ "epoch": 3.894713848842289,
+ "grad_norm": 0.2876453399658203,
+ "learning_rate": 0.0006,
+ "loss": 5.59157133102417,
+ "step": 280
+ },
+ {
+ "epoch": 3.90869375273045,
+ "grad_norm": 0.22829554975032806,
+ "learning_rate": 0.0006,
+ "loss": 5.5884199142456055,
+ "step": 281
+ },
+ {
+ "epoch": 3.9226736566186107,
+ "grad_norm": 0.22852344810962677,
+ "learning_rate": 0.0006,
+ "loss": 5.618719100952148,
+ "step": 282
+ },
+ {
+ "epoch": 3.9366535605067714,
+ "grad_norm": 0.37366563081741333,
+ "learning_rate": 0.0006,
+ "loss": 5.611738204956055,
+ "step": 283
+ },
+ {
+ "epoch": 3.950633464394932,
+ "grad_norm": 0.5650382041931152,
+ "learning_rate": 0.0006,
+ "loss": 5.606371879577637,
+ "step": 284
+ },
+ {
+ "epoch": 3.964613368283093,
+ "grad_norm": 0.5960066914558411,
+ "learning_rate": 0.0006,
+ "loss": 5.595022201538086,
+ "step": 285
+ },
+ {
+ "epoch": 3.9785932721712536,
+ "grad_norm": 0.3561663031578064,
+ "learning_rate": 0.0006,
+ "loss": 5.581035614013672,
+ "step": 286
+ },
+ {
+ "epoch": 3.9925731760594148,
+ "grad_norm": 0.44699913263320923,
+ "learning_rate": 0.0006,
+ "loss": 5.568033218383789,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.42783990502357483,
+ "learning_rate": 0.0006,
+ "loss": 5.571993827819824,
+ "step": 288
+ },
+ {
+ "epoch": 4.0,
+ "eval_loss": 6.349016189575195,
+ "eval_runtime": 44.3326,
+ "eval_samples_per_second": 55.084,
+ "eval_steps_per_second": 3.451,
+ "step": 288
+ },
+ {
+ "epoch": 4.013979903888161,
+ "grad_norm": 0.41305896639823914,
+ "learning_rate": 0.0006,
+ "loss": 5.562954902648926,
+ "step": 289
+ },
+ {
+ "epoch": 4.0279598077763215,
+ "grad_norm": 0.3966459035873413,
+ "learning_rate": 0.0006,
+ "loss": 5.5671916007995605,
+ "step": 290
+ },
+ {
+ "epoch": 4.041939711664482,
+ "grad_norm": 0.4846104085445404,
+ "learning_rate": 0.0006,
+ "loss": 5.548027038574219,
+ "step": 291
+ },
+ {
+ "epoch": 4.055919615552643,
+ "grad_norm": 0.5916333794593811,
+ "learning_rate": 0.0006,
+ "loss": 5.5900068283081055,
+ "step": 292
+ },
+ {
+ "epoch": 4.069899519440804,
+ "grad_norm": 0.5973889231681824,
+ "learning_rate": 0.0006,
+ "loss": 5.537594795227051,
+ "step": 293
+ },
+ {
+ "epoch": 4.083879423328964,
+ "grad_norm": 0.4190494418144226,
+ "learning_rate": 0.0006,
+ "loss": 5.534749984741211,
+ "step": 294
+ },
+ {
+ "epoch": 4.097859327217125,
+ "grad_norm": 0.5956901907920837,
+ "learning_rate": 0.0006,
+ "loss": 5.554540634155273,
+ "step": 295
+ },
+ {
+ "epoch": 4.111839231105286,
+ "grad_norm": 0.8257920742034912,
+ "learning_rate": 0.0006,
+ "loss": 5.5728068351745605,
+ "step": 296
+ },
+ {
+ "epoch": 4.1258191349934465,
+ "grad_norm": 0.7241750955581665,
+ "learning_rate": 0.0006,
+ "loss": 5.5643815994262695,
+ "step": 297
+ },
+ {
+ "epoch": 4.139799038881607,
+ "grad_norm": 0.45730507373809814,
+ "learning_rate": 0.0006,
+ "loss": 5.554225921630859,
+ "step": 298
+ },
+ {
+ "epoch": 4.153778942769769,
+ "grad_norm": 0.5166977643966675,
+ "learning_rate": 0.0006,
+ "loss": 5.540790557861328,
+ "step": 299
+ },
+ {
+ "epoch": 4.16775884665793,
+ "grad_norm": 0.433237761259079,
+ "learning_rate": 0.0006,
+ "loss": 5.536884784698486,
+ "step": 300
+ },
+ {
+ "epoch": 4.18173875054609,
+ "grad_norm": 0.3369830250740051,
+ "learning_rate": 0.0006,
+ "loss": 5.532837867736816,
+ "step": 301
+ },
+ {
+ "epoch": 4.195718654434251,
+ "grad_norm": 0.33091458678245544,
+ "learning_rate": 0.0006,
+ "loss": 5.547643661499023,
+ "step": 302
+ },
+ {
+ "epoch": 4.209698558322412,
+ "grad_norm": 0.36462724208831787,
+ "learning_rate": 0.0006,
+ "loss": 5.525021076202393,
+ "step": 303
+ },
+ {
+ "epoch": 4.2236784622105725,
+ "grad_norm": 0.3342771530151367,
+ "learning_rate": 0.0006,
+ "loss": 5.512082099914551,
+ "step": 304
+ },
+ {
+ "epoch": 4.237658366098733,
+ "grad_norm": 0.26784762740135193,
+ "learning_rate": 0.0006,
+ "loss": 5.488072395324707,
+ "step": 305
+ },
+ {
+ "epoch": 4.251638269986894,
+ "grad_norm": 0.25986987352371216,
+ "learning_rate": 0.0006,
+ "loss": 5.4960455894470215,
+ "step": 306
+ },
+ {
+ "epoch": 4.265618173875055,
+ "grad_norm": 0.24595795571804047,
+ "learning_rate": 0.0006,
+ "loss": 5.513367176055908,
+ "step": 307
+ },
+ {
+ "epoch": 4.279598077763215,
+ "grad_norm": 0.2224857211112976,
+ "learning_rate": 0.0006,
+ "loss": 5.465205192565918,
+ "step": 308
+ },
+ {
+ "epoch": 4.293577981651376,
+ "grad_norm": 0.26799243688583374,
+ "learning_rate": 0.0006,
+ "loss": 5.476632118225098,
+ "step": 309
+ },
+ {
+ "epoch": 4.307557885539537,
+ "grad_norm": 0.20443417131900787,
+ "learning_rate": 0.0006,
+ "loss": 5.442601203918457,
+ "step": 310
+ },
+ {
+ "epoch": 4.321537789427698,
+ "grad_norm": 0.2275059074163437,
+ "learning_rate": 0.0006,
+ "loss": 5.453519344329834,
+ "step": 311
+ },
+ {
+ "epoch": 4.335517693315858,
+ "grad_norm": 0.2860901951789856,
+ "learning_rate": 0.0006,
+ "loss": 5.439424514770508,
+ "step": 312
+ },
+ {
+ "epoch": 4.349497597204019,
+ "grad_norm": 0.3378142714500427,
+ "learning_rate": 0.0006,
+ "loss": 5.476953983306885,
+ "step": 313
+ },
+ {
+ "epoch": 4.36347750109218,
+ "grad_norm": 0.3487110733985901,
+ "learning_rate": 0.0006,
+ "loss": 5.47003698348999,
+ "step": 314
+ },
+ {
+ "epoch": 4.3774574049803405,
+ "grad_norm": 0.3655227720737457,
+ "learning_rate": 0.0006,
+ "loss": 5.454250812530518,
+ "step": 315
+ },
+ {
+ "epoch": 4.391437308868501,
+ "grad_norm": 0.3754786252975464,
+ "learning_rate": 0.0006,
+ "loss": 5.475249290466309,
+ "step": 316
+ },
+ {
+ "epoch": 4.405417212756662,
+ "grad_norm": 0.42494088411331177,
+ "learning_rate": 0.0006,
+ "loss": 5.4552459716796875,
+ "step": 317
+ },
+ {
+ "epoch": 4.419397116644823,
+ "grad_norm": 0.4914703667163849,
+ "learning_rate": 0.0006,
+ "loss": 5.431845188140869,
+ "step": 318
+ },
+ {
+ "epoch": 4.433377020532983,
+ "grad_norm": 0.42470860481262207,
+ "learning_rate": 0.0006,
+ "loss": 5.454581260681152,
+ "step": 319
+ },
+ {
+ "epoch": 4.447356924421145,
+ "grad_norm": 0.3828011155128479,
+ "learning_rate": 0.0006,
+ "loss": 5.435178756713867,
+ "step": 320
+ },
+ {
+ "epoch": 4.461336828309306,
+ "grad_norm": 0.47256892919540405,
+ "learning_rate": 0.0006,
+ "loss": 5.428861618041992,
+ "step": 321
+ },
+ {
+ "epoch": 4.4753167321974665,
+ "grad_norm": 0.5665146708488464,
+ "learning_rate": 0.0006,
+ "loss": 5.424633026123047,
+ "step": 322
+ },
+ {
+ "epoch": 4.489296636085627,
+ "grad_norm": 0.48146721720695496,
+ "learning_rate": 0.0006,
+ "loss": 5.4577860832214355,
+ "step": 323
+ },
+ {
+ "epoch": 4.503276539973788,
+ "grad_norm": 0.3378535509109497,
+ "learning_rate": 0.0006,
+ "loss": 5.422727108001709,
+ "step": 324
+ },
+ {
+ "epoch": 4.517256443861949,
+ "grad_norm": 0.41981473565101624,
+ "learning_rate": 0.0006,
+ "loss": 5.418993949890137,
+ "step": 325
+ },
+ {
+ "epoch": 4.531236347750109,
+ "grad_norm": 0.39389684796333313,
+ "learning_rate": 0.0006,
+ "loss": 5.41835880279541,
+ "step": 326
+ },
+ {
+ "epoch": 4.54521625163827,
+ "grad_norm": 0.5912176370620728,
+ "learning_rate": 0.0006,
+ "loss": 5.40073299407959,
+ "step": 327
+ },
+ {
+ "epoch": 4.559196155526431,
+ "grad_norm": 0.6877487897872925,
+ "learning_rate": 0.0006,
+ "loss": 5.445301055908203,
+ "step": 328
+ },
+ {
+ "epoch": 4.573176059414592,
+ "grad_norm": 0.580555260181427,
+ "learning_rate": 0.0006,
+ "loss": 5.431069374084473,
+ "step": 329
+ },
+ {
+ "epoch": 4.587155963302752,
+ "grad_norm": 0.5974457859992981,
+ "learning_rate": 0.0006,
+ "loss": 5.422694206237793,
+ "step": 330
+ },
+ {
+ "epoch": 4.601135867190913,
+ "grad_norm": 0.722481906414032,
+ "learning_rate": 0.0006,
+ "loss": 5.447752952575684,
+ "step": 331
+ },
+ {
+ "epoch": 4.615115771079074,
+ "grad_norm": 0.7687886953353882,
+ "learning_rate": 0.0006,
+ "loss": 5.437956809997559,
+ "step": 332
+ },
+ {
+ "epoch": 4.6290956749672345,
+ "grad_norm": 0.7368173003196716,
+ "learning_rate": 0.0006,
+ "loss": 5.4367241859436035,
+ "step": 333
+ },
+ {
+ "epoch": 4.643075578855395,
+ "grad_norm": 0.6650524139404297,
+ "learning_rate": 0.0006,
+ "loss": 5.4288434982299805,
+ "step": 334
+ },
+ {
+ "epoch": 4.657055482743556,
+ "grad_norm": 0.4997614920139313,
+ "learning_rate": 0.0006,
+ "loss": 5.412769317626953,
+ "step": 335
+ },
+ {
+ "epoch": 4.671035386631717,
+ "grad_norm": 0.44208982586860657,
+ "learning_rate": 0.0006,
+ "loss": 5.42405366897583,
+ "step": 336
+ },
+ {
+ "epoch": 4.685015290519877,
+ "grad_norm": 0.39510273933410645,
+ "learning_rate": 0.0006,
+ "loss": 5.402547836303711,
+ "step": 337
+ },
+ {
+ "epoch": 4.698995194408038,
+ "grad_norm": 0.44970476627349854,
+ "learning_rate": 0.0006,
+ "loss": 5.377168655395508,
+ "step": 338
+ },
+ {
+ "epoch": 4.712975098296199,
+ "grad_norm": 0.3902331590652466,
+ "learning_rate": 0.0006,
+ "loss": 5.401622772216797,
+ "step": 339
+ },
+ {
+ "epoch": 4.72695500218436,
+ "grad_norm": 0.33485135436058044,
+ "learning_rate": 0.0006,
+ "loss": 5.397945880889893,
+ "step": 340
+ },
+ {
+ "epoch": 4.740934906072521,
+ "grad_norm": 0.29062309861183167,
+ "learning_rate": 0.0006,
+ "loss": 5.356175422668457,
+ "step": 341
+ },
+ {
+ "epoch": 4.754914809960681,
+ "grad_norm": 0.23617377877235413,
+ "learning_rate": 0.0006,
+ "loss": 5.388517379760742,
+ "step": 342
+ },
+ {
+ "epoch": 4.768894713848843,
+ "grad_norm": 0.2704737186431885,
+ "learning_rate": 0.0006,
+ "loss": 5.3746137619018555,
+ "step": 343
+ },
+ {
+ "epoch": 4.782874617737003,
+ "grad_norm": 0.20488551259040833,
+ "learning_rate": 0.0006,
+ "loss": 5.3754472732543945,
+ "step": 344
+ },
+ {
+ "epoch": 4.796854521625164,
+ "grad_norm": 0.2007082849740982,
+ "learning_rate": 0.0006,
+ "loss": 5.3538618087768555,
+ "step": 345
+ },
+ {
+ "epoch": 4.810834425513325,
+ "grad_norm": 0.21732935309410095,
+ "learning_rate": 0.0006,
+ "loss": 5.351774215698242,
+ "step": 346
+ },
+ {
+ "epoch": 4.824814329401486,
+ "grad_norm": 0.1944841742515564,
+ "learning_rate": 0.0006,
+ "loss": 5.357545852661133,
+ "step": 347
+ },
+ {
+ "epoch": 4.838794233289646,
+ "grad_norm": 0.1953933835029602,
+ "learning_rate": 0.0006,
+ "loss": 5.321681022644043,
+ "step": 348
+ },
+ {
+ "epoch": 4.852774137177807,
+ "grad_norm": 0.1743433028459549,
+ "learning_rate": 0.0006,
+ "loss": 5.340302467346191,
+ "step": 349
+ },
+ {
+ "epoch": 4.866754041065968,
+ "grad_norm": 0.19655466079711914,
+ "learning_rate": 0.0006,
+ "loss": 5.325471878051758,
+ "step": 350
+ },
+ {
+ "epoch": 4.8807339449541285,
+ "grad_norm": 0.15761791169643402,
+ "learning_rate": 0.0006,
+ "loss": 5.3453240394592285,
+ "step": 351
+ },
+ {
+ "epoch": 4.894713848842289,
+ "grad_norm": 0.19164425134658813,
+ "learning_rate": 0.0006,
+ "loss": 5.315583229064941,
+ "step": 352
+ },
+ {
+ "epoch": 4.90869375273045,
+ "grad_norm": 0.28084540367126465,
+ "learning_rate": 0.0006,
+ "loss": 5.309171676635742,
+ "step": 353
+ },
+ {
+ "epoch": 4.922673656618611,
+ "grad_norm": 0.4681853652000427,
+ "learning_rate": 0.0006,
+ "loss": 5.318211078643799,
+ "step": 354
+ },
+ {
+ "epoch": 4.936653560506771,
+ "grad_norm": 0.6417295932769775,
+ "learning_rate": 0.0006,
+ "loss": 5.309263706207275,
+ "step": 355
+ },
+ {
+ "epoch": 4.950633464394932,
+ "grad_norm": 0.501312792301178,
+ "learning_rate": 0.0006,
+ "loss": 5.321534156799316,
+ "step": 356
+ },
+ {
+ "epoch": 4.964613368283093,
+ "grad_norm": 0.47502145171165466,
+ "learning_rate": 0.0006,
+ "loss": 5.323659896850586,
+ "step": 357
+ },
+ {
+ "epoch": 4.978593272171254,
+ "grad_norm": 0.5366594791412354,
+ "learning_rate": 0.0006,
+ "loss": 5.327367782592773,
+ "step": 358
+ },
+ {
+ "epoch": 4.992573176059414,
+ "grad_norm": 0.6986395120620728,
+ "learning_rate": 0.0006,
+ "loss": 5.311097145080566,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.6626625657081604,
+ "learning_rate": 0.0006,
+ "loss": 5.337558269500732,
+ "step": 360
+ },
+ {
+ "epoch": 5.0,
+ "eval_loss": 5.929230690002441,
+ "eval_runtime": 44.5268,
+ "eval_samples_per_second": 54.843,
+ "eval_steps_per_second": 3.436,
+ "step": 360
+ },
+ {
+ "epoch": 5.013979903888161,
+ "grad_norm": 0.7383704781532288,
+ "learning_rate": 0.0006,
+ "loss": 5.315563678741455,
+ "step": 361
+ },
+ {
+ "epoch": 5.0279598077763215,
+ "grad_norm": 0.7730138301849365,
+ "learning_rate": 0.0006,
+ "loss": 5.324905872344971,
+ "step": 362
+ },
+ {
+ "epoch": 5.041939711664482,
+ "grad_norm": 0.8170825839042664,
+ "learning_rate": 0.0006,
+ "loss": 5.350251197814941,
+ "step": 363
+ },
+ {
+ "epoch": 5.055919615552643,
+ "grad_norm": 0.6950958371162415,
+ "learning_rate": 0.0006,
+ "loss": 5.338744163513184,
+ "step": 364
+ },
+ {
+ "epoch": 5.069899519440804,
+ "grad_norm": 0.5582894086837769,
+ "learning_rate": 0.0006,
+ "loss": 5.340539932250977,
+ "step": 365
+ },
+ {
+ "epoch": 5.083879423328964,
+ "grad_norm": 0.4772159159183502,
+ "learning_rate": 0.0006,
+ "loss": 5.344161033630371,
+ "step": 366
+ },
+ {
+ "epoch": 5.097859327217125,
+ "grad_norm": 0.5432839393615723,
+ "learning_rate": 0.0006,
+ "loss": 5.312403678894043,
+ "step": 367
+ },
+ {
+ "epoch": 5.111839231105286,
+ "grad_norm": 0.4944784641265869,
+ "learning_rate": 0.0006,
+ "loss": 5.30281925201416,
+ "step": 368
+ },
+ {
+ "epoch": 5.1258191349934465,
+ "grad_norm": 0.4298315942287445,
+ "learning_rate": 0.0006,
+ "loss": 5.29564094543457,
+ "step": 369
+ },
+ {
+ "epoch": 5.139799038881607,
+ "grad_norm": 0.349889874458313,
+ "learning_rate": 0.0006,
+ "loss": 5.287062644958496,
+ "step": 370
+ },
+ {
+ "epoch": 5.153778942769769,
+ "grad_norm": 0.2823719084262848,
+ "learning_rate": 0.0006,
+ "loss": 5.28826904296875,
+ "step": 371
+ },
+ {
+ "epoch": 5.16775884665793,
+ "grad_norm": 0.32975050806999207,
+ "learning_rate": 0.0006,
+ "loss": 5.256399631500244,
+ "step": 372
+ },
+ {
+ "epoch": 5.18173875054609,
+ "grad_norm": 0.2963952124118805,
+ "learning_rate": 0.0006,
+ "loss": 5.273757457733154,
+ "step": 373
+ },
+ {
+ "epoch": 5.195718654434251,
+ "grad_norm": 0.21345984935760498,
+ "learning_rate": 0.0006,
+ "loss": 5.274978160858154,
+ "step": 374
+ },
+ {
+ "epoch": 5.209698558322412,
+ "grad_norm": 0.2363101840019226,
+ "learning_rate": 0.0006,
+ "loss": 5.261585235595703,
+ "step": 375
+ },
+ {
+ "epoch": 5.2236784622105725,
+ "grad_norm": 0.19626963138580322,
+ "learning_rate": 0.0006,
+ "loss": 5.259700298309326,
+ "step": 376
+ },
+ {
+ "epoch": 5.237658366098733,
+ "grad_norm": 0.21083571016788483,
+ "learning_rate": 0.0006,
+ "loss": 5.233585357666016,
+ "step": 377
+ },
+ {
+ "epoch": 5.251638269986894,
+ "grad_norm": 0.2273513823747635,
+ "learning_rate": 0.0006,
+ "loss": 5.231740474700928,
+ "step": 378
+ },
+ {
+ "epoch": 5.265618173875055,
+ "grad_norm": 0.18299247324466705,
+ "learning_rate": 0.0006,
+ "loss": 5.251256465911865,
+ "step": 379
+ },
+ {
+ "epoch": 5.279598077763215,
+ "grad_norm": 0.19578224420547485,
+ "learning_rate": 0.0006,
+ "loss": 5.230329513549805,
+ "step": 380
+ },
+ {
+ "epoch": 5.293577981651376,
+ "grad_norm": 0.20308879017829895,
+ "learning_rate": 0.0006,
+ "loss": 5.243951797485352,
+ "step": 381
+ },
+ {
+ "epoch": 5.307557885539537,
+ "grad_norm": 0.21053212881088257,
+ "learning_rate": 0.0006,
+ "loss": 5.210272789001465,
+ "step": 382
+ },
+ {
+ "epoch": 5.321537789427698,
+ "grad_norm": 0.21852520108222961,
+ "learning_rate": 0.0006,
+ "loss": 5.215418815612793,
+ "step": 383
+ },
+ {
+ "epoch": 5.335517693315858,
+ "grad_norm": 0.24872010946273804,
+ "learning_rate": 0.0006,
+ "loss": 5.225139617919922,
+ "step": 384
+ },
+ {
+ "epoch": 5.349497597204019,
+ "grad_norm": 0.27780187129974365,
+ "learning_rate": 0.0006,
+ "loss": 5.241010665893555,
+ "step": 385
+ },
+ {
+ "epoch": 5.36347750109218,
+ "grad_norm": 0.261767715215683,
+ "learning_rate": 0.0006,
+ "loss": 5.230723857879639,
+ "step": 386
+ },
+ {
+ "epoch": 5.3774574049803405,
+ "grad_norm": 0.2111261785030365,
+ "learning_rate": 0.0006,
+ "loss": 5.1848602294921875,
+ "step": 387
+ },
+ {
+ "epoch": 5.391437308868501,
+ "grad_norm": 0.24325387179851532,
+ "learning_rate": 0.0006,
+ "loss": 5.180911064147949,
+ "step": 388
+ },
+ {
+ "epoch": 5.405417212756662,
+ "grad_norm": 0.19542962312698364,
+ "learning_rate": 0.0006,
+ "loss": 5.189907073974609,
+ "step": 389
+ },
+ {
+ "epoch": 5.419397116644823,
+ "grad_norm": 0.20489346981048584,
+ "learning_rate": 0.0006,
+ "loss": 5.184634208679199,
+ "step": 390
+ },
+ {
+ "epoch": 5.433377020532983,
+ "grad_norm": 0.2753409147262573,
+ "learning_rate": 0.0006,
+ "loss": 5.190083026885986,
+ "step": 391
+ },
+ {
+ "epoch": 5.447356924421145,
+ "grad_norm": 0.3758019208908081,
+ "learning_rate": 0.0006,
+ "loss": 5.189423561096191,
+ "step": 392
+ },
+ {
+ "epoch": 5.461336828309306,
+ "grad_norm": 0.4425095021724701,
+ "learning_rate": 0.0006,
+ "loss": 5.17152214050293,
+ "step": 393
+ },
+ {
+ "epoch": 5.4753167321974665,
+ "grad_norm": 0.39721858501434326,
+ "learning_rate": 0.0006,
+ "loss": 5.189178466796875,
+ "step": 394
+ },
+ {
+ "epoch": 5.489296636085627,
+ "grad_norm": 0.43441957235336304,
+ "learning_rate": 0.0006,
+ "loss": 5.1823577880859375,
+ "step": 395
+ },
+ {
+ "epoch": 5.503276539973788,
+ "grad_norm": 0.3583861291408539,
+ "learning_rate": 0.0006,
+ "loss": 5.160187721252441,
+ "step": 396
+ },
+ {
+ "epoch": 5.517256443861949,
+ "grad_norm": 0.323290079832077,
+ "learning_rate": 0.0006,
+ "loss": 5.113046646118164,
+ "step": 397
+ },
+ {
+ "epoch": 5.531236347750109,
+ "grad_norm": 0.3049418330192566,
+ "learning_rate": 0.0006,
+ "loss": 5.172209739685059,
+ "step": 398
+ },
+ {
+ "epoch": 5.54521625163827,
+ "grad_norm": 0.3253744840621948,
+ "learning_rate": 0.0006,
+ "loss": 5.1970720291137695,
+ "step": 399
+ },
+ {
+ "epoch": 5.559196155526431,
+ "grad_norm": 0.3232555091381073,
+ "learning_rate": 0.0006,
+ "loss": 5.173195838928223,
+ "step": 400
+ },
+ {
+ "epoch": 5.573176059414592,
+ "grad_norm": 0.33751845359802246,
+ "learning_rate": 0.0006,
+ "loss": 5.137526988983154,
+ "step": 401
+ },
+ {
+ "epoch": 5.587155963302752,
+ "grad_norm": 0.45970913767814636,
+ "learning_rate": 0.0006,
+ "loss": 5.123377799987793,
+ "step": 402
+ },
+ {
+ "epoch": 5.601135867190913,
+ "grad_norm": 0.5383784770965576,
+ "learning_rate": 0.0006,
+ "loss": 5.154180526733398,
+ "step": 403
+ },
+ {
+ "epoch": 5.615115771079074,
+ "grad_norm": 0.45765912532806396,
+ "learning_rate": 0.0006,
+ "loss": 5.1485209465026855,
+ "step": 404
+ },
+ {
+ "epoch": 5.6290956749672345,
+ "grad_norm": 0.5079503059387207,
+ "learning_rate": 0.0006,
+ "loss": 5.158293724060059,
+ "step": 405
+ },
+ {
+ "epoch": 5.643075578855395,
+ "grad_norm": 0.4860183894634247,
+ "learning_rate": 0.0006,
+ "loss": 5.1610212326049805,
+ "step": 406
+ },
+ {
+ "epoch": 5.657055482743556,
+ "grad_norm": 0.4065648913383484,
+ "learning_rate": 0.0006,
+ "loss": 5.1260786056518555,
+ "step": 407
+ },
+ {
+ "epoch": 5.671035386631717,
+ "grad_norm": 0.39606142044067383,
+ "learning_rate": 0.0006,
+ "loss": 5.1598711013793945,
+ "step": 408
+ },
+ {
+ "epoch": 5.685015290519877,
+ "grad_norm": 0.4705151319503784,
+ "learning_rate": 0.0006,
+ "loss": 5.166455268859863,
+ "step": 409
+ },
+ {
+ "epoch": 5.698995194408038,
+ "grad_norm": 0.5040799379348755,
+ "learning_rate": 0.0006,
+ "loss": 5.1408209800720215,
+ "step": 410
+ },
+ {
+ "epoch": 5.712975098296199,
+ "grad_norm": 0.5012556910514832,
+ "learning_rate": 0.0006,
+ "loss": 5.144109725952148,
+ "step": 411
+ },
+ {
+ "epoch": 5.72695500218436,
+ "grad_norm": 0.44301411509513855,
+ "learning_rate": 0.0006,
+ "loss": 5.155509948730469,
+ "step": 412
+ },
+ {
+ "epoch": 5.740934906072521,
+ "grad_norm": 0.36632269620895386,
+ "learning_rate": 0.0006,
+ "loss": 5.123111248016357,
+ "step": 413
+ },
+ {
+ "epoch": 5.754914809960681,
+ "grad_norm": 0.2980524003505707,
+ "learning_rate": 0.0006,
+ "loss": 5.1355719566345215,
+ "step": 414
+ },
+ {
+ "epoch": 5.768894713848843,
+ "grad_norm": 0.3441782295703888,
+ "learning_rate": 0.0006,
+ "loss": 5.132327079772949,
+ "step": 415
+ },
+ {
+ "epoch": 5.782874617737003,
+ "grad_norm": 0.4150780737400055,
+ "learning_rate": 0.0006,
+ "loss": 5.148543357849121,
+ "step": 416
+ },
+ {
+ "epoch": 5.796854521625164,
+ "grad_norm": 0.48417383432388306,
+ "learning_rate": 0.0006,
+ "loss": 5.104989528656006,
+ "step": 417
+ },
+ {
+ "epoch": 5.810834425513325,
+ "grad_norm": 0.3216031491756439,
+ "learning_rate": 0.0006,
+ "loss": 5.0926127433776855,
+ "step": 418
+ },
+ {
+ "epoch": 5.824814329401486,
+ "grad_norm": 0.2821158468723297,
+ "learning_rate": 0.0006,
+ "loss": 5.112299919128418,
+ "step": 419
+ },
+ {
+ "epoch": 5.838794233289646,
+ "grad_norm": 0.29821011424064636,
+ "learning_rate": 0.0006,
+ "loss": 5.091662406921387,
+ "step": 420
+ },
+ {
+ "epoch": 5.852774137177807,
+ "grad_norm": 0.30570563673973083,
+ "learning_rate": 0.0006,
+ "loss": 5.137539863586426,
+ "step": 421
+ },
+ {
+ "epoch": 5.866754041065968,
+ "grad_norm": 0.4029594957828522,
+ "learning_rate": 0.0006,
+ "loss": 5.112751007080078,
+ "step": 422
+ },
+ {
+ "epoch": 5.8807339449541285,
+ "grad_norm": 0.3878514766693115,
+ "learning_rate": 0.0006,
+ "loss": 5.094973564147949,
+ "step": 423
+ },
+ {
+ "epoch": 5.894713848842289,
+ "grad_norm": 0.31936126947402954,
+ "learning_rate": 0.0006,
+ "loss": 5.081070899963379,
+ "step": 424
+ },
+ {
+ "epoch": 5.90869375273045,
+ "grad_norm": 0.3309082090854645,
+ "learning_rate": 0.0006,
+ "loss": 5.06803560256958,
+ "step": 425
+ },
+ {
+ "epoch": 5.922673656618611,
+ "grad_norm": 0.27830439805984497,
+ "learning_rate": 0.0006,
+ "loss": 5.044766426086426,
+ "step": 426
+ },
+ {
+ "epoch": 5.936653560506771,
+ "grad_norm": 0.3301011919975281,
+ "learning_rate": 0.0006,
+ "loss": 5.093942165374756,
+ "step": 427
+ },
+ {
+ "epoch": 5.950633464394932,
+ "grad_norm": 0.40845948457717896,
+ "learning_rate": 0.0006,
+ "loss": 5.0889458656311035,
+ "step": 428
+ },
+ {
+ "epoch": 5.964613368283093,
+ "grad_norm": 0.4412153959274292,
+ "learning_rate": 0.0006,
+ "loss": 5.064834117889404,
+ "step": 429
+ },
+ {
+ "epoch": 5.978593272171254,
+ "grad_norm": 0.3592590093612671,
+ "learning_rate": 0.0006,
+ "loss": 5.066648006439209,
+ "step": 430
+ },
+ {
+ "epoch": 5.992573176059414,
+ "grad_norm": 0.3952840268611908,
+ "learning_rate": 0.0006,
+ "loss": 5.066549301147461,
+ "step": 431
+ },
+ {
+ "epoch": 6.0,
+ "grad_norm": 0.38878682255744934,
+ "learning_rate": 0.0006,
+ "loss": 5.0354323387146,
+ "step": 432
+ },
+ {
+ "epoch": 6.0,
+ "eval_loss": 5.473907947540283,
+ "eval_runtime": 44.5121,
+ "eval_samples_per_second": 54.861,
+ "eval_steps_per_second": 3.437,
+ "step": 432
+ },
+ {
+ "epoch": 6.013979903888161,
+ "grad_norm": 0.42730140686035156,
+ "learning_rate": 0.0006,
+ "loss": 5.048557281494141,
+ "step": 433
+ },
+ {
+ "epoch": 6.0279598077763215,
+ "grad_norm": 0.32713913917541504,
+ "learning_rate": 0.0006,
+ "loss": 5.041255950927734,
+ "step": 434
+ },
+ {
+ "epoch": 6.041939711664482,
+ "grad_norm": 0.32520365715026855,
+ "learning_rate": 0.0006,
+ "loss": 5.043124198913574,
+ "step": 435
+ },
+ {
+ "epoch": 6.055919615552643,
+ "grad_norm": 0.2941839098930359,
+ "learning_rate": 0.0006,
+ "loss": 5.0407304763793945,
+ "step": 436
+ },
+ {
+ "epoch": 6.069899519440804,
+ "grad_norm": 0.3088819682598114,
+ "learning_rate": 0.0006,
+ "loss": 5.020771026611328,
+ "step": 437
+ },
+ {
+ "epoch": 6.083879423328964,
+ "grad_norm": 0.34334254264831543,
+ "learning_rate": 0.0006,
+ "loss": 5.0260009765625,
+ "step": 438
+ },
+ {
+ "epoch": 6.097859327217125,
+ "grad_norm": 0.33016136288642883,
+ "learning_rate": 0.0006,
+ "loss": 4.994412899017334,
+ "step": 439
+ },
+ {
+ "epoch": 6.111839231105286,
+ "grad_norm": 0.2527366280555725,
+ "learning_rate": 0.0006,
+ "loss": 4.997830390930176,
+ "step": 440
+ },
+ {
+ "epoch": 6.1258191349934465,
+ "grad_norm": 0.24742509424686432,
+ "learning_rate": 0.0006,
+ "loss": 5.017087936401367,
+ "step": 441
+ },
+ {
+ "epoch": 6.139799038881607,
+ "grad_norm": 0.22578303515911102,
+ "learning_rate": 0.0006,
+ "loss": 5.000683784484863,
+ "step": 442
+ },
+ {
+ "epoch": 6.153778942769769,
+ "grad_norm": 0.21213896572589874,
+ "learning_rate": 0.0006,
+ "loss": 4.993280410766602,
+ "step": 443
+ },
+ {
+ "epoch": 6.16775884665793,
+ "grad_norm": 0.22559592127799988,
+ "learning_rate": 0.0006,
+ "loss": 5.005735874176025,
+ "step": 444
+ },
+ {
+ "epoch": 6.18173875054609,
+ "grad_norm": 0.18574322760105133,
+ "learning_rate": 0.0006,
+ "loss": 4.996601104736328,
+ "step": 445
+ },
+ {
+ "epoch": 6.195718654434251,
+ "grad_norm": 0.1793852299451828,
+ "learning_rate": 0.0006,
+ "loss": 4.977394104003906,
+ "step": 446
+ },
+ {
+ "epoch": 6.209698558322412,
+ "grad_norm": 0.1851297914981842,
+ "learning_rate": 0.0006,
+ "loss": 4.983541488647461,
+ "step": 447
+ },
+ {
+ "epoch": 6.2236784622105725,
+ "grad_norm": 0.2045268565416336,
+ "learning_rate": 0.0006,
+ "loss": 4.992830276489258,
+ "step": 448
+ },
+ {
+ "epoch": 6.237658366098733,
+ "grad_norm": 0.21707463264465332,
+ "learning_rate": 0.0006,
+ "loss": 4.998589515686035,
+ "step": 449
+ },
+ {
+ "epoch": 6.251638269986894,
+ "grad_norm": 0.2805860638618469,
+ "learning_rate": 0.0006,
+ "loss": 4.973134517669678,
+ "step": 450
+ },
+ {
+ "epoch": 6.265618173875055,
+ "grad_norm": 0.33102089166641235,
+ "learning_rate": 0.0006,
+ "loss": 4.957348823547363,
+ "step": 451
+ },
+ {
+ "epoch": 6.279598077763215,
+ "grad_norm": 0.3763096034526825,
+ "learning_rate": 0.0006,
+ "loss": 5.0133256912231445,
+ "step": 452
+ },
+ {
+ "epoch": 6.293577981651376,
+ "grad_norm": 0.4676196575164795,
+ "learning_rate": 0.0006,
+ "loss": 4.972289562225342,
+ "step": 453
+ },
+ {
+ "epoch": 6.307557885539537,
+ "grad_norm": 0.6158978343009949,
+ "learning_rate": 0.0006,
+ "loss": 4.989326477050781,
+ "step": 454
+ },
+ {
+ "epoch": 6.321537789427698,
+ "grad_norm": 0.537460446357727,
+ "learning_rate": 0.0006,
+ "loss": 5.0210676193237305,
+ "step": 455
+ },
+ {
+ "epoch": 6.335517693315858,
+ "grad_norm": 0.5342532396316528,
+ "learning_rate": 0.0006,
+ "loss": 4.988524436950684,
+ "step": 456
+ },
+ {
+ "epoch": 6.349497597204019,
+ "grad_norm": 0.5736384987831116,
+ "learning_rate": 0.0006,
+ "loss": 4.977508068084717,
+ "step": 457
+ },
+ {
+ "epoch": 6.36347750109218,
+ "grad_norm": 0.6656201481819153,
+ "learning_rate": 0.0006,
+ "loss": 5.047934055328369,
+ "step": 458
+ },
+ {
+ "epoch": 6.3774574049803405,
+ "grad_norm": 0.6388342380523682,
+ "learning_rate": 0.0006,
+ "loss": 5.017617225646973,
+ "step": 459
+ },
+ {
+ "epoch": 6.391437308868501,
+ "grad_norm": 0.6620904207229614,
+ "learning_rate": 0.0006,
+ "loss": 5.032195091247559,
+ "step": 460
+ },
+ {
+ "epoch": 6.405417212756662,
+ "grad_norm": 0.693274974822998,
+ "learning_rate": 0.0006,
+ "loss": 5.02433967590332,
+ "step": 461
+ },
+ {
+ "epoch": 6.419397116644823,
+ "grad_norm": 0.6888924241065979,
+ "learning_rate": 0.0006,
+ "loss": 5.010735511779785,
+ "step": 462
+ },
+ {
+ "epoch": 6.433377020532983,
+ "grad_norm": 0.7181721925735474,
+ "learning_rate": 0.0006,
+ "loss": 5.049690246582031,
+ "step": 463
+ },
+ {
+ "epoch": 6.447356924421145,
+ "grad_norm": 0.7225117087364197,
+ "learning_rate": 0.0006,
+ "loss": 5.031939506530762,
+ "step": 464
+ },
+ {
+ "epoch": 6.461336828309306,
+ "grad_norm": 0.5268304347991943,
+ "learning_rate": 0.0006,
+ "loss": 5.01638126373291,
+ "step": 465
+ },
+ {
+ "epoch": 6.4753167321974665,
+ "grad_norm": 0.38218435645103455,
+ "learning_rate": 0.0006,
+ "loss": 4.997034072875977,
+ "step": 466
+ },
+ {
+ "epoch": 6.489296636085627,
+ "grad_norm": 0.3576396703720093,
+ "learning_rate": 0.0006,
+ "loss": 5.006804943084717,
+ "step": 467
+ },
+ {
+ "epoch": 6.503276539973788,
+ "grad_norm": 0.3305981755256653,
+ "learning_rate": 0.0006,
+ "loss": 4.994671821594238,
+ "step": 468
+ },
+ {
+ "epoch": 6.517256443861949,
+ "grad_norm": 0.3254900574684143,
+ "learning_rate": 0.0006,
+ "loss": 4.9747490882873535,
+ "step": 469
+ },
+ {
+ "epoch": 6.531236347750109,
+ "grad_norm": 0.2655033469200134,
+ "learning_rate": 0.0006,
+ "loss": 5.002863883972168,
+ "step": 470
+ },
+ {
+ "epoch": 6.54521625163827,
+ "grad_norm": 0.2620532810688019,
+ "learning_rate": 0.0006,
+ "loss": 4.9813337326049805,
+ "step": 471
+ },
+ {
+ "epoch": 6.559196155526431,
+ "grad_norm": 0.22128869593143463,
+ "learning_rate": 0.0006,
+ "loss": 4.978368759155273,
+ "step": 472
+ },
+ {
+ "epoch": 6.573176059414592,
+ "grad_norm": 0.22638699412345886,
+ "learning_rate": 0.0006,
+ "loss": 4.944509029388428,
+ "step": 473
+ },
+ {
+ "epoch": 6.587155963302752,
+ "grad_norm": 0.20720207691192627,
+ "learning_rate": 0.0006,
+ "loss": 4.98404598236084,
+ "step": 474
+ },
+ {
+ "epoch": 6.601135867190913,
+ "grad_norm": 0.21577289700508118,
+ "learning_rate": 0.0006,
+ "loss": 4.958878040313721,
+ "step": 475
+ },
+ {
+ "epoch": 6.615115771079074,
+ "grad_norm": 0.22453972697257996,
+ "learning_rate": 0.0006,
+ "loss": 4.935467720031738,
+ "step": 476
+ },
+ {
+ "epoch": 6.6290956749672345,
+ "grad_norm": 0.20757712423801422,
+ "learning_rate": 0.0006,
+ "loss": 4.943334579467773,
+ "step": 477
+ },
+ {
+ "epoch": 6.643075578855395,
+ "grad_norm": 0.22808043658733368,
+ "learning_rate": 0.0006,
+ "loss": 4.936544418334961,
+ "step": 478
+ },
+ {
+ "epoch": 6.657055482743556,
+ "grad_norm": 0.2193756401538849,
+ "learning_rate": 0.0006,
+ "loss": 4.938162326812744,
+ "step": 479
+ },
+ {
+ "epoch": 6.671035386631717,
+ "grad_norm": 0.19677500426769257,
+ "learning_rate": 0.0006,
+ "loss": 4.9026713371276855,
+ "step": 480
+ },
+ {
+ "epoch": 6.685015290519877,
+ "grad_norm": 0.17271658778190613,
+ "learning_rate": 0.0006,
+ "loss": 4.912519454956055,
+ "step": 481
+ },
+ {
+ "epoch": 6.698995194408038,
+ "grad_norm": 0.17551499605178833,
+ "learning_rate": 0.0006,
+ "loss": 4.929941177368164,
+ "step": 482
+ },
+ {
+ "epoch": 6.712975098296199,
+ "grad_norm": 0.1582687348127365,
+ "learning_rate": 0.0006,
+ "loss": 4.908967971801758,
+ "step": 483
+ },
+ {
+ "epoch": 6.72695500218436,
+ "grad_norm": 0.1593410074710846,
+ "learning_rate": 0.0006,
+ "loss": 4.901554107666016,
+ "step": 484
+ },
+ {
+ "epoch": 6.740934906072521,
+ "grad_norm": 0.16746895015239716,
+ "learning_rate": 0.0006,
+ "loss": 4.917915344238281,
+ "step": 485
+ },
+ {
+ "epoch": 6.754914809960681,
+ "grad_norm": 0.17066062986850739,
+ "learning_rate": 0.0006,
+ "loss": 4.912853240966797,
+ "step": 486
+ },
+ {
+ "epoch": 6.768894713848843,
+ "grad_norm": 0.16727769374847412,
+ "learning_rate": 0.0006,
+ "loss": 4.895434856414795,
+ "step": 487
+ },
+ {
+ "epoch": 6.782874617737003,
+ "grad_norm": 0.1784558743238449,
+ "learning_rate": 0.0006,
+ "loss": 4.8805341720581055,
+ "step": 488
+ },
+ {
+ "epoch": 6.796854521625164,
+ "grad_norm": 0.176686093211174,
+ "learning_rate": 0.0006,
+ "loss": 4.855296611785889,
+ "step": 489
+ },
+ {
+ "epoch": 6.810834425513325,
+ "grad_norm": 0.21577849984169006,
+ "learning_rate": 0.0006,
+ "loss": 4.885506629943848,
+ "step": 490
+ },
+ {
+ "epoch": 6.824814329401486,
+ "grad_norm": 0.27615776658058167,
+ "learning_rate": 0.0006,
+ "loss": 4.913756847381592,
+ "step": 491
+ },
+ {
+ "epoch": 6.838794233289646,
+ "grad_norm": 0.3653675615787506,
+ "learning_rate": 0.0006,
+ "loss": 4.880918979644775,
+ "step": 492
+ },
+ {
+ "epoch": 6.852774137177807,
+ "grad_norm": 0.41473883390426636,
+ "learning_rate": 0.0006,
+ "loss": 4.894164562225342,
+ "step": 493
+ },
+ {
+ "epoch": 6.866754041065968,
+ "grad_norm": 0.45850715041160583,
+ "learning_rate": 0.0006,
+ "loss": 4.907922744750977,
+ "step": 494
+ },
+ {
+ "epoch": 6.8807339449541285,
+ "grad_norm": 0.4675290882587433,
+ "learning_rate": 0.0006,
+ "loss": 4.883112907409668,
+ "step": 495
+ },
+ {
+ "epoch": 6.894713848842289,
+ "grad_norm": 0.45795994997024536,
+ "learning_rate": 0.0006,
+ "loss": 4.897843360900879,
+ "step": 496
+ },
+ {
+ "epoch": 6.90869375273045,
+ "grad_norm": 0.46130508184432983,
+ "learning_rate": 0.0006,
+ "loss": 4.890612602233887,
+ "step": 497
+ },
+ {
+ "epoch": 6.922673656618611,
+ "grad_norm": 0.44783803820610046,
+ "learning_rate": 0.0006,
+ "loss": 4.880192756652832,
+ "step": 498
+ },
+ {
+ "epoch": 6.936653560506771,
+ "grad_norm": 0.35361284017562866,
+ "learning_rate": 0.0006,
+ "loss": 4.840778350830078,
+ "step": 499
+ },
+ {
+ "epoch": 6.950633464394932,
+ "grad_norm": 0.34027689695358276,
+ "learning_rate": 0.0006,
+ "loss": 4.871222496032715,
+ "step": 500
+ },
+ {
+ "epoch": 6.964613368283093,
+ "grad_norm": 0.30228909850120544,
+ "learning_rate": 0.0006,
+ "loss": 4.868077278137207,
+ "step": 501
+ },
+ {
+ "epoch": 6.978593272171254,
+ "grad_norm": 0.27706998586654663,
+ "learning_rate": 0.0006,
+ "loss": 4.895936012268066,
+ "step": 502
+ },
+ {
+ "epoch": 6.992573176059414,
+ "grad_norm": 0.3516870439052582,
+ "learning_rate": 0.0006,
+ "loss": 4.824636459350586,
+ "step": 503
+ },
+ {
+ "epoch": 7.0,
+ "grad_norm": 0.36831387877464294,
+ "learning_rate": 0.0006,
+ "loss": 4.874397277832031,
+ "step": 504
+ },
+ {
+ "epoch": 7.0,
+ "eval_loss": 5.176281452178955,
+ "eval_runtime": 44.2386,
+ "eval_samples_per_second": 55.201,
+ "eval_steps_per_second": 3.459,
+ "step": 504
+ },
+ {
+ "epoch": 7.013979903888161,
+ "grad_norm": 0.4265240430831909,
+ "learning_rate": 0.0006,
+ "loss": 4.814333438873291,
+ "step": 505
+ },
+ {
+ "epoch": 7.0279598077763215,
+ "grad_norm": 0.5126975774765015,
+ "learning_rate": 0.0006,
+ "loss": 4.852343559265137,
+ "step": 506
+ },
+ {
+ "epoch": 7.041939711664482,
+ "grad_norm": 0.43080806732177734,
+ "learning_rate": 0.0006,
+ "loss": 4.843439102172852,
+ "step": 507
+ },
+ {
+ "epoch": 7.055919615552643,
+ "grad_norm": 0.43170198798179626,
+ "learning_rate": 0.0006,
+ "loss": 4.845984935760498,
+ "step": 508
+ },
+ {
+ "epoch": 7.069899519440804,
+ "grad_norm": 0.5640552043914795,
+ "learning_rate": 0.0006,
+ "loss": 4.840991973876953,
+ "step": 509
+ },
+ {
+ "epoch": 7.083879423328964,
+ "grad_norm": 0.540381133556366,
+ "learning_rate": 0.0006,
+ "loss": 4.801316738128662,
+ "step": 510
+ },
+ {
+ "epoch": 7.097859327217125,
+ "grad_norm": 0.5412097573280334,
+ "learning_rate": 0.0006,
+ "loss": 4.886598587036133,
+ "step": 511
+ },
+ {
+ "epoch": 7.111839231105286,
+ "grad_norm": 0.630648136138916,
+ "learning_rate": 0.0006,
+ "loss": 4.849774360656738,
+ "step": 512
+ },
+ {
+ "epoch": 7.1258191349934465,
+ "grad_norm": 0.569952130317688,
+ "learning_rate": 0.0006,
+ "loss": 4.870607376098633,
+ "step": 513
+ },
+ {
+ "epoch": 7.139799038881607,
+ "grad_norm": 0.42051541805267334,
+ "learning_rate": 0.0006,
+ "loss": 4.83833122253418,
+ "step": 514
+ },
+ {
+ "epoch": 7.153778942769769,
+ "grad_norm": 0.3930990397930145,
+ "learning_rate": 0.0006,
+ "loss": 4.853984355926514,
+ "step": 515
+ },
+ {
+ "epoch": 7.16775884665793,
+ "grad_norm": 0.512886106967926,
+ "learning_rate": 0.0006,
+ "loss": 4.815458297729492,
+ "step": 516
+ },
+ {
+ "epoch": 7.18173875054609,
+ "grad_norm": 0.42580172419548035,
+ "learning_rate": 0.0006,
+ "loss": 4.825312614440918,
+ "step": 517
+ },
+ {
+ "epoch": 7.195718654434251,
+ "grad_norm": 0.31628182530403137,
+ "learning_rate": 0.0006,
+ "loss": 4.806377410888672,
+ "step": 518
+ },
+ {
+ "epoch": 7.209698558322412,
+ "grad_norm": 0.3109956681728363,
+ "learning_rate": 0.0006,
+ "loss": 4.819339752197266,
+ "step": 519
+ },
+ {
+ "epoch": 7.2236784622105725,
+ "grad_norm": 0.2740071415901184,
+ "learning_rate": 0.0006,
+ "loss": 4.81319522857666,
+ "step": 520
+ },
+ {
+ "epoch": 7.237658366098733,
+ "grad_norm": 0.26441165804862976,
+ "learning_rate": 0.0006,
+ "loss": 4.8107380867004395,
+ "step": 521
+ },
+ {
+ "epoch": 7.251638269986894,
+ "grad_norm": 0.2496110051870346,
+ "learning_rate": 0.0006,
+ "loss": 4.785193920135498,
+ "step": 522
+ },
+ {
+ "epoch": 7.265618173875055,
+ "grad_norm": 0.2565560042858124,
+ "learning_rate": 0.0006,
+ "loss": 4.802750587463379,
+ "step": 523
+ },
+ {
+ "epoch": 7.279598077763215,
+ "grad_norm": 0.2126980572938919,
+ "learning_rate": 0.0006,
+ "loss": 4.763580322265625,
+ "step": 524
+ },
+ {
+ "epoch": 7.293577981651376,
+ "grad_norm": 0.2169921100139618,
+ "learning_rate": 0.0006,
+ "loss": 4.756124973297119,
+ "step": 525
+ },
+ {
+ "epoch": 7.307557885539537,
+ "grad_norm": 0.2372167706489563,
+ "learning_rate": 0.0006,
+ "loss": 4.786888599395752,
+ "step": 526
+ },
+ {
+ "epoch": 7.321537789427698,
+ "grad_norm": 0.2124386429786682,
+ "learning_rate": 0.0006,
+ "loss": 4.777996063232422,
+ "step": 527
+ },
+ {
+ "epoch": 7.335517693315858,
+ "grad_norm": 0.18585442006587982,
+ "learning_rate": 0.0006,
+ "loss": 4.770537853240967,
+ "step": 528
+ },
+ {
+ "epoch": 7.349497597204019,
+ "grad_norm": 0.20515340566635132,
+ "learning_rate": 0.0006,
+ "loss": 4.769230842590332,
+ "step": 529
+ },
+ {
+ "epoch": 7.36347750109218,
+ "grad_norm": 0.19906704127788544,
+ "learning_rate": 0.0006,
+ "loss": 4.752581596374512,
+ "step": 530
+ },
+ {
+ "epoch": 7.3774574049803405,
+ "grad_norm": 0.2030428946018219,
+ "learning_rate": 0.0006,
+ "loss": 4.7353715896606445,
+ "step": 531
+ },
+ {
+ "epoch": 7.391437308868501,
+ "grad_norm": 0.17820630967617035,
+ "learning_rate": 0.0006,
+ "loss": 4.742705345153809,
+ "step": 532
+ },
+ {
+ "epoch": 7.405417212756662,
+ "grad_norm": 0.17642682790756226,
+ "learning_rate": 0.0006,
+ "loss": 4.752669334411621,
+ "step": 533
+ },
+ {
+ "epoch": 7.419397116644823,
+ "grad_norm": 0.18088409304618835,
+ "learning_rate": 0.0006,
+ "loss": 4.734611511230469,
+ "step": 534
+ },
+ {
+ "epoch": 7.433377020532983,
+ "grad_norm": 0.20897020399570465,
+ "learning_rate": 0.0006,
+ "loss": 4.756442070007324,
+ "step": 535
+ },
+ {
+ "epoch": 7.447356924421145,
+ "grad_norm": 0.23166777193546295,
+ "learning_rate": 0.0006,
+ "loss": 4.712922096252441,
+ "step": 536
+ },
+ {
+ "epoch": 7.461336828309306,
+ "grad_norm": 0.2205347716808319,
+ "learning_rate": 0.0006,
+ "loss": 4.75001335144043,
+ "step": 537
+ },
+ {
+ "epoch": 7.4753167321974665,
+ "grad_norm": 0.23868022859096527,
+ "learning_rate": 0.0006,
+ "loss": 4.726134300231934,
+ "step": 538
+ },
+ {
+ "epoch": 7.489296636085627,
+ "grad_norm": 0.2861441373825073,
+ "learning_rate": 0.0006,
+ "loss": 4.754112243652344,
+ "step": 539
+ },
+ {
+ "epoch": 7.503276539973788,
+ "grad_norm": 0.28980305790901184,
+ "learning_rate": 0.0006,
+ "loss": 4.716021537780762,
+ "step": 540
+ },
+ {
+ "epoch": 7.517256443861949,
+ "grad_norm": 0.2784835696220398,
+ "learning_rate": 0.0006,
+ "loss": 4.713929176330566,
+ "step": 541
+ },
+ {
+ "epoch": 7.531236347750109,
+ "grad_norm": 0.2962653934955597,
+ "learning_rate": 0.0006,
+ "loss": 4.711845397949219,
+ "step": 542
+ },
+ {
+ "epoch": 7.54521625163827,
+ "grad_norm": 0.3333161175251007,
+ "learning_rate": 0.0006,
+ "loss": 4.709834575653076,
+ "step": 543
+ },
+ {
+ "epoch": 7.559196155526431,
+ "grad_norm": 0.35304850339889526,
+ "learning_rate": 0.0006,
+ "loss": 4.732914924621582,
+ "step": 544
+ },
+ {
+ "epoch": 7.573176059414592,
+ "grad_norm": 0.4165869355201721,
+ "learning_rate": 0.0006,
+ "loss": 4.716190338134766,
+ "step": 545
+ },
+ {
+ "epoch": 7.587155963302752,
+ "grad_norm": 0.4878059923648834,
+ "learning_rate": 0.0006,
+ "loss": 4.723773002624512,
+ "step": 546
+ },
+ {
+ "epoch": 7.601135867190913,
+ "grad_norm": 0.36643707752227783,
+ "learning_rate": 0.0006,
+ "loss": 4.721458911895752,
+ "step": 547
+ },
+ {
+ "epoch": 7.615115771079074,
+ "grad_norm": 0.4046908915042877,
+ "learning_rate": 0.0006,
+ "loss": 4.715397834777832,
+ "step": 548
+ },
+ {
+ "epoch": 7.6290956749672345,
+ "grad_norm": 0.44426342844963074,
+ "learning_rate": 0.0006,
+ "loss": 4.737357139587402,
+ "step": 549
+ },
+ {
+ "epoch": 7.643075578855395,
+ "grad_norm": 0.4181079864501953,
+ "learning_rate": 0.0006,
+ "loss": 4.731383800506592,
+ "step": 550
+ },
+ {
+ "epoch": 7.657055482743556,
+ "grad_norm": 0.3486088216304779,
+ "learning_rate": 0.0006,
+ "loss": 4.728029727935791,
+ "step": 551
+ },
+ {
+ "epoch": 7.671035386631717,
+ "grad_norm": 0.37150970101356506,
+ "learning_rate": 0.0006,
+ "loss": 4.7083210945129395,
+ "step": 552
+ },
+ {
+ "epoch": 7.685015290519877,
+ "grad_norm": 0.43324410915374756,
+ "learning_rate": 0.0006,
+ "loss": 4.728720664978027,
+ "step": 553
+ },
+ {
+ "epoch": 7.698995194408038,
+ "grad_norm": 0.5026620626449585,
+ "learning_rate": 0.0006,
+ "loss": 4.698156356811523,
+ "step": 554
+ },
+ {
+ "epoch": 7.712975098296199,
+ "grad_norm": 0.4873499274253845,
+ "learning_rate": 0.0006,
+ "loss": 4.7169952392578125,
+ "step": 555
+ },
+ {
+ "epoch": 7.72695500218436,
+ "grad_norm": 0.4285493791103363,
+ "learning_rate": 0.0006,
+ "loss": 4.6877241134643555,
+ "step": 556
+ },
+ {
+ "epoch": 7.740934906072521,
+ "grad_norm": 0.5179854035377502,
+ "learning_rate": 0.0006,
+ "loss": 4.704267501831055,
+ "step": 557
+ },
+ {
+ "epoch": 7.754914809960681,
+ "grad_norm": 0.4642147421836853,
+ "learning_rate": 0.0006,
+ "loss": 4.695004463195801,
+ "step": 558
+ },
+ {
+ "epoch": 7.768894713848843,
+ "grad_norm": 0.47149503231048584,
+ "learning_rate": 0.0006,
+ "loss": 4.694338798522949,
+ "step": 559
+ },
+ {
+ "epoch": 7.782874617737003,
+ "grad_norm": 0.5422149300575256,
+ "learning_rate": 0.0006,
+ "loss": 4.749478340148926,
+ "step": 560
+ },
+ {
+ "epoch": 7.796854521625164,
+ "grad_norm": 0.4360728859901428,
+ "learning_rate": 0.0006,
+ "loss": 4.685191631317139,
+ "step": 561
+ },
+ {
+ "epoch": 7.810834425513325,
+ "grad_norm": 0.4243801534175873,
+ "learning_rate": 0.0006,
+ "loss": 4.69228458404541,
+ "step": 562
+ },
+ {
+ "epoch": 7.824814329401486,
+ "grad_norm": 0.40380290150642395,
+ "learning_rate": 0.0006,
+ "loss": 4.690923690795898,
+ "step": 563
+ },
+ {
+ "epoch": 7.838794233289646,
+ "grad_norm": 0.4352976381778717,
+ "learning_rate": 0.0006,
+ "loss": 4.720489978790283,
+ "step": 564
+ },
+ {
+ "epoch": 7.852774137177807,
+ "grad_norm": 0.44634920358657837,
+ "learning_rate": 0.0006,
+ "loss": 4.683789253234863,
+ "step": 565
+ },
+ {
+ "epoch": 7.866754041065968,
+ "grad_norm": 0.3818186819553375,
+ "learning_rate": 0.0006,
+ "loss": 4.696887016296387,
+ "step": 566
+ },
+ {
+ "epoch": 7.8807339449541285,
+ "grad_norm": 0.35270464420318604,
+ "learning_rate": 0.0006,
+ "loss": 4.715676307678223,
+ "step": 567
+ },
+ {
+ "epoch": 7.894713848842289,
+ "grad_norm": 0.249756321310997,
+ "learning_rate": 0.0006,
+ "loss": 4.672721862792969,
+ "step": 568
+ },
+ {
+ "epoch": 7.90869375273045,
+ "grad_norm": 0.25097888708114624,
+ "learning_rate": 0.0006,
+ "loss": 4.663518905639648,
+ "step": 569
+ },
+ {
+ "epoch": 7.922673656618611,
+ "grad_norm": 0.26563209295272827,
+ "learning_rate": 0.0006,
+ "loss": 4.675405025482178,
+ "step": 570
+ },
+ {
+ "epoch": 7.936653560506771,
+ "grad_norm": 0.26451292634010315,
+ "learning_rate": 0.0006,
+ "loss": 4.651235103607178,
+ "step": 571
+ },
+ {
+ "epoch": 7.950633464394932,
+ "grad_norm": 0.24185842275619507,
+ "learning_rate": 0.0006,
+ "loss": 4.671639919281006,
+ "step": 572
+ },
+ {
+ "epoch": 7.964613368283093,
+ "grad_norm": 0.21506108343601227,
+ "learning_rate": 0.0006,
+ "loss": 4.665352821350098,
+ "step": 573
+ },
+ {
+ "epoch": 7.978593272171254,
+ "grad_norm": 0.24365705251693726,
+ "learning_rate": 0.0006,
+ "loss": 4.663162708282471,
+ "step": 574
+ },
+ {
+ "epoch": 7.992573176059414,
+ "grad_norm": 0.24251042306423187,
+ "learning_rate": 0.0006,
+ "loss": 4.666633605957031,
+ "step": 575
+ },
+ {
+ "epoch": 8.0,
+ "grad_norm": 0.24187657237052917,
+ "learning_rate": 0.0006,
+ "loss": 4.63957405090332,
+ "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/mask15-l2r50-fulle-lm/checkpoint-576/training_args.bin b/runs/mask15-l2r50-fulle-lm/checkpoint-576/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..43721c50815fe94f90cb043bf545b8f7bd9afc38
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-576/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:a0b8d7bb9ac952b1abed3bd1e5c8f6ebd20daa957b3a85688954f8df03be6eb9
+size 4856
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-5760/chat_template.jinja b/runs/mask15-l2r50-fulle-lm/checkpoint-5760/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/mask15-l2r50-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/mask15-l2r50-fulle-lm/checkpoint-5760/config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-5760/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..1b4ac3c550d6003148026765eba4cb1512b216c9
--- /dev/null
+++ b/runs/mask15-l2r50-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": 151672
+}
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-5760/generation_config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-5760/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..5cd15fe1269fd505cfdefe9b3e9989dacd9f68f4
--- /dev/null
+++ b/runs/mask15-l2r50-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/mask15-l2r50-fulle-lm/checkpoint-5760/model.safetensors b/runs/mask15-l2r50-fulle-lm/checkpoint-5760/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..d842403f8e7528d31e711bc14f8146c78cdc9331
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-5760/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:2f2a486586f422bb8d6f9422aaa889e7c605be3043a3c0eb391666b2103cb644
+size 583358280
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-5760/optimizer.pt b/runs/mask15-l2r50-fulle-lm/checkpoint-5760/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..081d8400949ed9666e8c6843493bf01d8e4f6c1b
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-5760/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:fbd5ca8fc5fc4282a850ffd71bd3faa5834d6090d434ed29f9b00169d3ae5d19
+size 1166829434
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-5760/rng_state_0.pth b/runs/mask15-l2r50-fulle-lm/checkpoint-5760/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..a2689ca9b01e0b93a7577ea32ebeb5e3d16aad24
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-5760/rng_state_0.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:c467567a6041b6f642f0c47e25541dbf924081cbc6bb24ed1b1e58e4bf8e33ee
+size 14512
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-5760/rng_state_1.pth b/runs/mask15-l2r50-fulle-lm/checkpoint-5760/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..3bc580903b6cf3b982ef89d988163e2363a8df66
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-5760/rng_state_1.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:1c6035cc095fb77f5cce814855b1700bddb9d6164e33bf94e61679e9d2e2a354
+size 14512
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-5760/scheduler.pt b/runs/mask15-l2r50-fulle-lm/checkpoint-5760/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..146fac8459db1a89ef1d0b02179a40f96280dd47
--- /dev/null
+++ b/runs/mask15-l2r50-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/mask15-l2r50-fulle-lm/checkpoint-5760/tokenizer.json b/runs/mask15-l2r50-fulle-lm/checkpoint-5760/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..6226bf25372d1a86dbd704ec75d2129960f1ba88
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-5760/tokenizer.json
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:9245fe3cb2d40f9ed8d5d8ddd1d58701ba2a236beec08f656162281673f30560
+size 11424264
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-5760/tokenizer_config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-5760/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..01bc9676576e8cf62a08a9db166d6c5bab1d6727
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-5760/tokenizer_config.json
@@ -0,0 +1,20 @@
+{
+ "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|>",
+ "<|mask|>"
+ ],
+ "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/mask15-l2r50-fulle-lm/checkpoint-5760/trainer_state.json b/runs/mask15-l2r50-fulle-lm/checkpoint-5760/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..9b77008ed2b4d8de0afa07d12872430bf6b6bc86
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-5760/trainer_state.json
@@ -0,0 +1,40986 @@
+{
+ "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": 9.807971954345703,
+ "learning_rate": 0.0,
+ "loss": 11.989814758300781,
+ "step": 1
+ },
+ {
+ "epoch": 0.027959807776321538,
+ "grad_norm": 9.834383010864258,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 11.993022918701172,
+ "step": 2
+ },
+ {
+ "epoch": 0.04193971166448231,
+ "grad_norm": 9.482470512390137,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 11.854345321655273,
+ "step": 3
+ },
+ {
+ "epoch": 0.055919615552643076,
+ "grad_norm": 7.678808689117432,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 11.618255615234375,
+ "step": 4
+ },
+ {
+ "epoch": 0.06989951944080385,
+ "grad_norm": 6.011275291442871,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 11.351423263549805,
+ "step": 5
+ },
+ {
+ "epoch": 0.08387942332896461,
+ "grad_norm": 5.244393825531006,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 11.128631591796875,
+ "step": 6
+ },
+ {
+ "epoch": 0.09785932721712538,
+ "grad_norm": 4.577618598937988,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 10.921937942504883,
+ "step": 7
+ },
+ {
+ "epoch": 0.11183923110528615,
+ "grad_norm": 4.03810453414917,
+ "learning_rate": 4.2e-05,
+ "loss": 10.742650985717773,
+ "step": 8
+ },
+ {
+ "epoch": 0.1258191349934469,
+ "grad_norm": 3.657679796218872,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 10.600778579711914,
+ "step": 9
+ },
+ {
+ "epoch": 0.1397990388816077,
+ "grad_norm": 3.352902889251709,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 10.489639282226562,
+ "step": 10
+ },
+ {
+ "epoch": 0.15377894276976845,
+ "grad_norm": 3.1162633895874023,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 10.417770385742188,
+ "step": 11
+ },
+ {
+ "epoch": 0.16775884665792923,
+ "grad_norm": 3.0402638912200928,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 10.35334587097168,
+ "step": 12
+ },
+ {
+ "epoch": 0.18173875054608998,
+ "grad_norm": 3.030630111694336,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 10.306867599487305,
+ "step": 13
+ },
+ {
+ "epoch": 0.19571865443425077,
+ "grad_norm": 3.035292148590088,
+ "learning_rate": 7.8e-05,
+ "loss": 10.26003646850586,
+ "step": 14
+ },
+ {
+ "epoch": 0.20969855832241152,
+ "grad_norm": 3.0125675201416016,
+ "learning_rate": 8.4e-05,
+ "loss": 10.219265937805176,
+ "step": 15
+ },
+ {
+ "epoch": 0.2236784622105723,
+ "grad_norm": 2.9998886585235596,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 10.161077499389648,
+ "step": 16
+ },
+ {
+ "epoch": 0.23765836609873306,
+ "grad_norm": 2.9411966800689697,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 10.107423782348633,
+ "step": 17
+ },
+ {
+ "epoch": 0.2516382699868938,
+ "grad_norm": 2.88081955909729,
+ "learning_rate": 0.000102,
+ "loss": 10.04700756072998,
+ "step": 18
+ },
+ {
+ "epoch": 0.2656181738750546,
+ "grad_norm": 2.8219687938690186,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 9.981185913085938,
+ "step": 19
+ },
+ {
+ "epoch": 0.2795980777632154,
+ "grad_norm": 2.79306960105896,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 9.89747142791748,
+ "step": 20
+ },
+ {
+ "epoch": 0.29357798165137616,
+ "grad_norm": 2.7314443588256836,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 9.829219818115234,
+ "step": 21
+ },
+ {
+ "epoch": 0.3075578855395369,
+ "grad_norm": 2.6923747062683105,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 9.747566223144531,
+ "step": 22
+ },
+ {
+ "epoch": 0.3215377894276977,
+ "grad_norm": 2.650602340698242,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 9.66455078125,
+ "step": 23
+ },
+ {
+ "epoch": 0.33551769331585846,
+ "grad_norm": 2.606977701187134,
+ "learning_rate": 0.000138,
+ "loss": 9.582326889038086,
+ "step": 24
+ },
+ {
+ "epoch": 0.34949759720401924,
+ "grad_norm": 2.567256212234497,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 9.492591857910156,
+ "step": 25
+ },
+ {
+ "epoch": 0.36347750109217997,
+ "grad_norm": 2.520740509033203,
+ "learning_rate": 0.00015,
+ "loss": 9.396563529968262,
+ "step": 26
+ },
+ {
+ "epoch": 0.37745740498034075,
+ "grad_norm": 2.471588611602783,
+ "learning_rate": 0.000156,
+ "loss": 9.303571701049805,
+ "step": 27
+ },
+ {
+ "epoch": 0.39143730886850153,
+ "grad_norm": 2.4341530799865723,
+ "learning_rate": 0.000162,
+ "loss": 9.191819190979004,
+ "step": 28
+ },
+ {
+ "epoch": 0.4054172127566623,
+ "grad_norm": 2.369244337081909,
+ "learning_rate": 0.000168,
+ "loss": 9.092012405395508,
+ "step": 29
+ },
+ {
+ "epoch": 0.41939711664482304,
+ "grad_norm": 2.28625226020813,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 8.984567642211914,
+ "step": 30
+ },
+ {
+ "epoch": 0.4333770205329838,
+ "grad_norm": 2.2082231044769287,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 8.889009475708008,
+ "step": 31
+ },
+ {
+ "epoch": 0.4473569244211446,
+ "grad_norm": 2.1429483890533447,
+ "learning_rate": 0.000186,
+ "loss": 8.778556823730469,
+ "step": 32
+ },
+ {
+ "epoch": 0.4613368283093054,
+ "grad_norm": 2.0937352180480957,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 8.661166191101074,
+ "step": 33
+ },
+ {
+ "epoch": 0.4753167321974661,
+ "grad_norm": 2.040790557861328,
+ "learning_rate": 0.000198,
+ "loss": 8.550382614135742,
+ "step": 34
+ },
+ {
+ "epoch": 0.4892966360856269,
+ "grad_norm": 1.93914794921875,
+ "learning_rate": 0.000204,
+ "loss": 8.463907241821289,
+ "step": 35
+ },
+ {
+ "epoch": 0.5032765399737876,
+ "grad_norm": 1.8624178171157837,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 8.3438720703125,
+ "step": 36
+ },
+ {
+ "epoch": 0.5172564438619485,
+ "grad_norm": 1.8107167482376099,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 8.21871566772461,
+ "step": 37
+ },
+ {
+ "epoch": 0.5312363477501092,
+ "grad_norm": 1.717979073524475,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 8.113494873046875,
+ "step": 38
+ },
+ {
+ "epoch": 0.54521625163827,
+ "grad_norm": 1.668742060661316,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 8.006099700927734,
+ "step": 39
+ },
+ {
+ "epoch": 0.5591961555264308,
+ "grad_norm": 1.6147786378860474,
+ "learning_rate": 0.000234,
+ "loss": 7.911509037017822,
+ "step": 40
+ },
+ {
+ "epoch": 0.5731760594145915,
+ "grad_norm": 1.535750150680542,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 7.822839736938477,
+ "step": 41
+ },
+ {
+ "epoch": 0.5871559633027523,
+ "grad_norm": 1.4700065851211548,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 7.713842868804932,
+ "step": 42
+ },
+ {
+ "epoch": 0.601135867190913,
+ "grad_norm": 1.39020574092865,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 7.6040191650390625,
+ "step": 43
+ },
+ {
+ "epoch": 0.6151157710790738,
+ "grad_norm": 1.2875399589538574,
+ "learning_rate": 0.000258,
+ "loss": 7.550642013549805,
+ "step": 44
+ },
+ {
+ "epoch": 0.6290956749672346,
+ "grad_norm": 1.2094247341156006,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 7.460824012756348,
+ "step": 45
+ },
+ {
+ "epoch": 0.6430755788553953,
+ "grad_norm": 1.126452088356018,
+ "learning_rate": 0.00027,
+ "loss": 7.380537986755371,
+ "step": 46
+ },
+ {
+ "epoch": 0.6570554827435562,
+ "grad_norm": 1.0313163995742798,
+ "learning_rate": 0.000276,
+ "loss": 7.286153793334961,
+ "step": 47
+ },
+ {
+ "epoch": 0.6710353866317169,
+ "grad_norm": 0.9172859787940979,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 7.2064714431762695,
+ "step": 48
+ },
+ {
+ "epoch": 0.6850152905198776,
+ "grad_norm": 0.8148201107978821,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 7.158207416534424,
+ "step": 49
+ },
+ {
+ "epoch": 0.6989951944080385,
+ "grad_norm": 0.650123119354248,
+ "learning_rate": 0.000294,
+ "loss": 7.108791828155518,
+ "step": 50
+ },
+ {
+ "epoch": 0.7129750982961992,
+ "grad_norm": 0.5437585711479187,
+ "learning_rate": 0.0003,
+ "loss": 7.083050727844238,
+ "step": 51
+ },
+ {
+ "epoch": 0.7269550021843599,
+ "grad_norm": 0.46762895584106445,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 7.058027267456055,
+ "step": 52
+ },
+ {
+ "epoch": 0.7409349060725208,
+ "grad_norm": 0.47947561740875244,
+ "learning_rate": 0.000312,
+ "loss": 7.015172958374023,
+ "step": 53
+ },
+ {
+ "epoch": 0.7549148099606815,
+ "grad_norm": 0.7546492218971252,
+ "learning_rate": 0.000318,
+ "loss": 7.024629592895508,
+ "step": 54
+ },
+ {
+ "epoch": 0.7688947138488423,
+ "grad_norm": 0.6153718829154968,
+ "learning_rate": 0.000324,
+ "loss": 7.026667594909668,
+ "step": 55
+ },
+ {
+ "epoch": 0.7828746177370031,
+ "grad_norm": 0.3359069228172302,
+ "learning_rate": 0.00033,
+ "loss": 7.008166313171387,
+ "step": 56
+ },
+ {
+ "epoch": 0.7968545216251638,
+ "grad_norm": 0.48906823992729187,
+ "learning_rate": 0.000336,
+ "loss": 7.019716262817383,
+ "step": 57
+ },
+ {
+ "epoch": 0.8108344255133246,
+ "grad_norm": 0.5525421500205994,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 7.02108097076416,
+ "step": 58
+ },
+ {
+ "epoch": 0.8248143294014854,
+ "grad_norm": 0.3103712201118469,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 7.003164768218994,
+ "step": 59
+ },
+ {
+ "epoch": 0.8387942332896461,
+ "grad_norm": 0.4431874752044678,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 7.003463268280029,
+ "step": 60
+ },
+ {
+ "epoch": 0.8527741371778069,
+ "grad_norm": 0.4291120767593384,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 6.96931791305542,
+ "step": 61
+ },
+ {
+ "epoch": 0.8667540410659677,
+ "grad_norm": 0.6566054224967957,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 6.989445686340332,
+ "step": 62
+ },
+ {
+ "epoch": 0.8807339449541285,
+ "grad_norm": 0.20663189888000488,
+ "learning_rate": 0.000372,
+ "loss": 6.9669342041015625,
+ "step": 63
+ },
+ {
+ "epoch": 0.8947138488422892,
+ "grad_norm": 0.6242535710334778,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 6.949883460998535,
+ "step": 64
+ },
+ {
+ "epoch": 0.9086937527304499,
+ "grad_norm": 0.6984224915504456,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 6.955153465270996,
+ "step": 65
+ },
+ {
+ "epoch": 0.9226736566186108,
+ "grad_norm": 0.6328083872795105,
+ "learning_rate": 0.00039,
+ "loss": 6.965421676635742,
+ "step": 66
+ },
+ {
+ "epoch": 0.9366535605067715,
+ "grad_norm": 1.213352918624878,
+ "learning_rate": 0.000396,
+ "loss": 6.9454345703125,
+ "step": 67
+ },
+ {
+ "epoch": 0.9506334643949322,
+ "grad_norm": 0.9221940636634827,
+ "learning_rate": 0.000402,
+ "loss": 6.923908233642578,
+ "step": 68
+ },
+ {
+ "epoch": 0.9646133682830931,
+ "grad_norm": 0.6825450658798218,
+ "learning_rate": 0.000408,
+ "loss": 6.910131454467773,
+ "step": 69
+ },
+ {
+ "epoch": 0.9785932721712538,
+ "grad_norm": 0.5690162181854248,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 6.89891242980957,
+ "step": 70
+ },
+ {
+ "epoch": 0.9925731760594146,
+ "grad_norm": 0.4320870041847229,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 6.896081924438477,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.31632405519485474,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 6.897444725036621,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 7.757839679718018,
+ "eval_runtime": 43.8338,
+ "eval_samples_per_second": 55.71,
+ "eval_steps_per_second": 3.49,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139799038881607,
+ "grad_norm": 0.3789916932582855,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 6.877245903015137,
+ "step": 73
+ },
+ {
+ "epoch": 1.0279598077763215,
+ "grad_norm": 0.9167932868003845,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 6.921600341796875,
+ "step": 74
+ },
+ {
+ "epoch": 1.0419397116644824,
+ "grad_norm": 0.581188440322876,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 6.861001968383789,
+ "step": 75
+ },
+ {
+ "epoch": 1.0559196155526431,
+ "grad_norm": 0.4179714024066925,
+ "learning_rate": 0.00045,
+ "loss": 6.875657081604004,
+ "step": 76
+ },
+ {
+ "epoch": 1.0698995194408039,
+ "grad_norm": 1.0669957399368286,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 6.857122421264648,
+ "step": 77
+ },
+ {
+ "epoch": 1.0838794233289646,
+ "grad_norm": 0.27855145931243896,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 6.828852653503418,
+ "step": 78
+ },
+ {
+ "epoch": 1.0978593272171253,
+ "grad_norm": 0.7192047834396362,
+ "learning_rate": 0.000468,
+ "loss": 6.870839595794678,
+ "step": 79
+ },
+ {
+ "epoch": 1.1118392311052863,
+ "grad_norm": 0.5583325624465942,
+ "learning_rate": 0.000474,
+ "loss": 6.8497514724731445,
+ "step": 80
+ },
+ {
+ "epoch": 1.125819134993447,
+ "grad_norm": 0.3001925051212311,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 6.858528137207031,
+ "step": 81
+ },
+ {
+ "epoch": 1.1397990388816077,
+ "grad_norm": 0.2408239096403122,
+ "learning_rate": 0.000486,
+ "loss": 6.83231258392334,
+ "step": 82
+ },
+ {
+ "epoch": 1.1537789427697684,
+ "grad_norm": 0.28230324387550354,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 6.815476894378662,
+ "step": 83
+ },
+ {
+ "epoch": 1.1677588466579292,
+ "grad_norm": 0.3247123658657074,
+ "learning_rate": 0.000498,
+ "loss": 6.780126094818115,
+ "step": 84
+ },
+ {
+ "epoch": 1.18173875054609,
+ "grad_norm": 0.25713011622428894,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 6.7798309326171875,
+ "step": 85
+ },
+ {
+ "epoch": 1.1957186544342508,
+ "grad_norm": 0.5386835932731628,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 6.791745185852051,
+ "step": 86
+ },
+ {
+ "epoch": 1.2096985583224116,
+ "grad_norm": 0.2226393222808838,
+ "learning_rate": 0.000516,
+ "loss": 6.7826972007751465,
+ "step": 87
+ },
+ {
+ "epoch": 1.2236784622105723,
+ "grad_norm": 0.4338362216949463,
+ "learning_rate": 0.000522,
+ "loss": 6.805043697357178,
+ "step": 88
+ },
+ {
+ "epoch": 1.237658366098733,
+ "grad_norm": 0.2953208386898041,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 6.768434524536133,
+ "step": 89
+ },
+ {
+ "epoch": 1.2516382699868938,
+ "grad_norm": 0.13453717529773712,
+ "learning_rate": 0.000534,
+ "loss": 6.773697376251221,
+ "step": 90
+ },
+ {
+ "epoch": 1.2656181738750547,
+ "grad_norm": 0.35774412751197815,
+ "learning_rate": 0.00054,
+ "loss": 6.766414642333984,
+ "step": 91
+ },
+ {
+ "epoch": 1.2795980777632154,
+ "grad_norm": 0.4669720530509949,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 6.754847526550293,
+ "step": 92
+ },
+ {
+ "epoch": 1.2935779816513762,
+ "grad_norm": 0.13806621730327606,
+ "learning_rate": 0.000552,
+ "loss": 6.746858596801758,
+ "step": 93
+ },
+ {
+ "epoch": 1.307557885539537,
+ "grad_norm": 0.3280332386493683,
+ "learning_rate": 0.000558,
+ "loss": 6.715662956237793,
+ "step": 94
+ },
+ {
+ "epoch": 1.3215377894276976,
+ "grad_norm": 0.4689937233924866,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 6.734938144683838,
+ "step": 95
+ },
+ {
+ "epoch": 1.3355176933158583,
+ "grad_norm": 0.35371264815330505,
+ "learning_rate": 0.00057,
+ "loss": 6.748386383056641,
+ "step": 96
+ },
+ {
+ "epoch": 1.3494975972040193,
+ "grad_norm": 0.15232303738594055,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 6.705557823181152,
+ "step": 97
+ },
+ {
+ "epoch": 1.36347750109218,
+ "grad_norm": 0.30132821202278137,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 6.7199859619140625,
+ "step": 98
+ },
+ {
+ "epoch": 1.3774574049803407,
+ "grad_norm": 0.42174842953681946,
+ "learning_rate": 0.000588,
+ "loss": 6.715370178222656,
+ "step": 99
+ },
+ {
+ "epoch": 1.3914373088685015,
+ "grad_norm": 0.6257228851318359,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 6.707026958465576,
+ "step": 100
+ },
+ {
+ "epoch": 1.4054172127566624,
+ "grad_norm": 0.4551195800304413,
+ "learning_rate": 0.0006,
+ "loss": 6.7078423500061035,
+ "step": 101
+ },
+ {
+ "epoch": 1.4193971166448232,
+ "grad_norm": 0.41940346360206604,
+ "learning_rate": 0.0006,
+ "loss": 6.6959357261657715,
+ "step": 102
+ },
+ {
+ "epoch": 1.4333770205329839,
+ "grad_norm": 0.32251718640327454,
+ "learning_rate": 0.0006,
+ "loss": 6.689168930053711,
+ "step": 103
+ },
+ {
+ "epoch": 1.4473569244211446,
+ "grad_norm": 0.2992720305919647,
+ "learning_rate": 0.0006,
+ "loss": 6.680738925933838,
+ "step": 104
+ },
+ {
+ "epoch": 1.4613368283093053,
+ "grad_norm": 0.3228456974029541,
+ "learning_rate": 0.0006,
+ "loss": 6.672350883483887,
+ "step": 105
+ },
+ {
+ "epoch": 1.475316732197466,
+ "grad_norm": 0.24954743683338165,
+ "learning_rate": 0.0006,
+ "loss": 6.653716087341309,
+ "step": 106
+ },
+ {
+ "epoch": 1.4892966360856268,
+ "grad_norm": 0.30740687251091003,
+ "learning_rate": 0.0006,
+ "loss": 6.676583290100098,
+ "step": 107
+ },
+ {
+ "epoch": 1.5032765399737875,
+ "grad_norm": 0.24950599670410156,
+ "learning_rate": 0.0006,
+ "loss": 6.656691551208496,
+ "step": 108
+ },
+ {
+ "epoch": 1.5172564438619485,
+ "grad_norm": 0.24293005466461182,
+ "learning_rate": 0.0006,
+ "loss": 6.640995979309082,
+ "step": 109
+ },
+ {
+ "epoch": 1.5312363477501092,
+ "grad_norm": 0.30167272686958313,
+ "learning_rate": 0.0006,
+ "loss": 6.647380352020264,
+ "step": 110
+ },
+ {
+ "epoch": 1.5452162516382701,
+ "grad_norm": 0.4424632787704468,
+ "learning_rate": 0.0006,
+ "loss": 6.6548261642456055,
+ "step": 111
+ },
+ {
+ "epoch": 1.5591961555264309,
+ "grad_norm": 0.5295748114585876,
+ "learning_rate": 0.0006,
+ "loss": 6.64370059967041,
+ "step": 112
+ },
+ {
+ "epoch": 1.5731760594145916,
+ "grad_norm": 0.6829339265823364,
+ "learning_rate": 0.0006,
+ "loss": 6.654196739196777,
+ "step": 113
+ },
+ {
+ "epoch": 1.5871559633027523,
+ "grad_norm": 0.6534460186958313,
+ "learning_rate": 0.0006,
+ "loss": 6.675765037536621,
+ "step": 114
+ },
+ {
+ "epoch": 1.601135867190913,
+ "grad_norm": 0.6172244548797607,
+ "learning_rate": 0.0006,
+ "loss": 6.631234169006348,
+ "step": 115
+ },
+ {
+ "epoch": 1.6151157710790738,
+ "grad_norm": 0.5650008320808411,
+ "learning_rate": 0.0006,
+ "loss": 6.654262542724609,
+ "step": 116
+ },
+ {
+ "epoch": 1.6290956749672345,
+ "grad_norm": 0.3890475928783417,
+ "learning_rate": 0.0006,
+ "loss": 6.627526760101318,
+ "step": 117
+ },
+ {
+ "epoch": 1.6430755788553952,
+ "grad_norm": 0.6409873366355896,
+ "learning_rate": 0.0006,
+ "loss": 6.619794845581055,
+ "step": 118
+ },
+ {
+ "epoch": 1.6570554827435562,
+ "grad_norm": 0.5052326321601868,
+ "learning_rate": 0.0006,
+ "loss": 6.612556457519531,
+ "step": 119
+ },
+ {
+ "epoch": 1.671035386631717,
+ "grad_norm": 0.5001237988471985,
+ "learning_rate": 0.0006,
+ "loss": 6.577266693115234,
+ "step": 120
+ },
+ {
+ "epoch": 1.6850152905198776,
+ "grad_norm": 0.5328938364982605,
+ "learning_rate": 0.0006,
+ "loss": 6.59553337097168,
+ "step": 121
+ },
+ {
+ "epoch": 1.6989951944080386,
+ "grad_norm": 0.3568951189517975,
+ "learning_rate": 0.0006,
+ "loss": 6.602717399597168,
+ "step": 122
+ },
+ {
+ "epoch": 1.7129750982961993,
+ "grad_norm": 0.4017309546470642,
+ "learning_rate": 0.0006,
+ "loss": 6.589657783508301,
+ "step": 123
+ },
+ {
+ "epoch": 1.72695500218436,
+ "grad_norm": 0.21432629227638245,
+ "learning_rate": 0.0006,
+ "loss": 6.586555480957031,
+ "step": 124
+ },
+ {
+ "epoch": 1.7409349060725208,
+ "grad_norm": 0.21038052439689636,
+ "learning_rate": 0.0006,
+ "loss": 6.576569557189941,
+ "step": 125
+ },
+ {
+ "epoch": 1.7549148099606815,
+ "grad_norm": 0.23074904084205627,
+ "learning_rate": 0.0006,
+ "loss": 6.5880632400512695,
+ "step": 126
+ },
+ {
+ "epoch": 1.7688947138488422,
+ "grad_norm": 0.42963048815727234,
+ "learning_rate": 0.0006,
+ "loss": 6.603862762451172,
+ "step": 127
+ },
+ {
+ "epoch": 1.782874617737003,
+ "grad_norm": 0.361331045627594,
+ "learning_rate": 0.0006,
+ "loss": 6.579834938049316,
+ "step": 128
+ },
+ {
+ "epoch": 1.7968545216251637,
+ "grad_norm": 0.4951060712337494,
+ "learning_rate": 0.0006,
+ "loss": 6.570443630218506,
+ "step": 129
+ },
+ {
+ "epoch": 1.8108344255133246,
+ "grad_norm": 0.2258434295654297,
+ "learning_rate": 0.0006,
+ "loss": 6.5664777755737305,
+ "step": 130
+ },
+ {
+ "epoch": 1.8248143294014854,
+ "grad_norm": 0.2922155559062958,
+ "learning_rate": 0.0006,
+ "loss": 6.561326503753662,
+ "step": 131
+ },
+ {
+ "epoch": 1.838794233289646,
+ "grad_norm": 0.19068220257759094,
+ "learning_rate": 0.0006,
+ "loss": 6.528727054595947,
+ "step": 132
+ },
+ {
+ "epoch": 1.852774137177807,
+ "grad_norm": 0.2122010439634323,
+ "learning_rate": 0.0006,
+ "loss": 6.535636901855469,
+ "step": 133
+ },
+ {
+ "epoch": 1.8667540410659678,
+ "grad_norm": 0.25760164856910706,
+ "learning_rate": 0.0006,
+ "loss": 6.530498504638672,
+ "step": 134
+ },
+ {
+ "epoch": 1.8807339449541285,
+ "grad_norm": 0.1761016845703125,
+ "learning_rate": 0.0006,
+ "loss": 6.514466285705566,
+ "step": 135
+ },
+ {
+ "epoch": 1.8947138488422892,
+ "grad_norm": 0.2250051498413086,
+ "learning_rate": 0.0006,
+ "loss": 6.521268844604492,
+ "step": 136
+ },
+ {
+ "epoch": 1.90869375273045,
+ "grad_norm": 0.34458497166633606,
+ "learning_rate": 0.0006,
+ "loss": 6.512831687927246,
+ "step": 137
+ },
+ {
+ "epoch": 1.9226736566186107,
+ "grad_norm": 0.3468617796897888,
+ "learning_rate": 0.0006,
+ "loss": 6.515641689300537,
+ "step": 138
+ },
+ {
+ "epoch": 1.9366535605067714,
+ "grad_norm": 0.5051495432853699,
+ "learning_rate": 0.0006,
+ "loss": 6.5147905349731445,
+ "step": 139
+ },
+ {
+ "epoch": 1.9506334643949321,
+ "grad_norm": 0.7106727361679077,
+ "learning_rate": 0.0006,
+ "loss": 6.519277572631836,
+ "step": 140
+ },
+ {
+ "epoch": 1.964613368283093,
+ "grad_norm": 0.8881394267082214,
+ "learning_rate": 0.0006,
+ "loss": 6.526865482330322,
+ "step": 141
+ },
+ {
+ "epoch": 1.9785932721712538,
+ "grad_norm": 0.5552834272384644,
+ "learning_rate": 0.0006,
+ "loss": 6.469970226287842,
+ "step": 142
+ },
+ {
+ "epoch": 1.9925731760594148,
+ "grad_norm": 0.6903126835823059,
+ "learning_rate": 0.0006,
+ "loss": 6.476300239562988,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.47679027915000916,
+ "learning_rate": 0.0006,
+ "loss": 6.463827133178711,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 7.388528823852539,
+ "eval_runtime": 44.2519,
+ "eval_samples_per_second": 55.184,
+ "eval_steps_per_second": 3.457,
+ "step": 144
+ },
+ {
+ "epoch": 2.0139799038881607,
+ "grad_norm": 0.4719221293926239,
+ "learning_rate": 0.0006,
+ "loss": 6.480956077575684,
+ "step": 145
+ },
+ {
+ "epoch": 2.0279598077763215,
+ "grad_norm": 0.41137924790382385,
+ "learning_rate": 0.0006,
+ "loss": 6.449707984924316,
+ "step": 146
+ },
+ {
+ "epoch": 2.041939711664482,
+ "grad_norm": 0.4237765371799469,
+ "learning_rate": 0.0006,
+ "loss": 6.467435836791992,
+ "step": 147
+ },
+ {
+ "epoch": 2.055919615552643,
+ "grad_norm": 0.44081810116767883,
+ "learning_rate": 0.0006,
+ "loss": 6.436868667602539,
+ "step": 148
+ },
+ {
+ "epoch": 2.0698995194408036,
+ "grad_norm": 0.4163798391819,
+ "learning_rate": 0.0006,
+ "loss": 6.4642014503479,
+ "step": 149
+ },
+ {
+ "epoch": 2.083879423328965,
+ "grad_norm": 0.3831583261489868,
+ "learning_rate": 0.0006,
+ "loss": 6.454092025756836,
+ "step": 150
+ },
+ {
+ "epoch": 2.0978593272171255,
+ "grad_norm": 0.37721413373947144,
+ "learning_rate": 0.0006,
+ "loss": 6.426377296447754,
+ "step": 151
+ },
+ {
+ "epoch": 2.1118392311052863,
+ "grad_norm": 0.3323550224304199,
+ "learning_rate": 0.0006,
+ "loss": 6.421375274658203,
+ "step": 152
+ },
+ {
+ "epoch": 2.125819134993447,
+ "grad_norm": 0.47739624977111816,
+ "learning_rate": 0.0006,
+ "loss": 6.412004470825195,
+ "step": 153
+ },
+ {
+ "epoch": 2.1397990388816077,
+ "grad_norm": 0.8530274629592896,
+ "learning_rate": 0.0006,
+ "loss": 6.410468578338623,
+ "step": 154
+ },
+ {
+ "epoch": 2.1537789427697684,
+ "grad_norm": 0.6420364379882812,
+ "learning_rate": 0.0006,
+ "loss": 6.413525581359863,
+ "step": 155
+ },
+ {
+ "epoch": 2.167758846657929,
+ "grad_norm": 0.5005049109458923,
+ "learning_rate": 0.0006,
+ "loss": 6.401463508605957,
+ "step": 156
+ },
+ {
+ "epoch": 2.18173875054609,
+ "grad_norm": 0.3614683449268341,
+ "learning_rate": 0.0006,
+ "loss": 6.390063285827637,
+ "step": 157
+ },
+ {
+ "epoch": 2.1957186544342506,
+ "grad_norm": 0.595215380191803,
+ "learning_rate": 0.0006,
+ "loss": 6.369806289672852,
+ "step": 158
+ },
+ {
+ "epoch": 2.2096985583224114,
+ "grad_norm": 0.5700321793556213,
+ "learning_rate": 0.0006,
+ "loss": 6.368378639221191,
+ "step": 159
+ },
+ {
+ "epoch": 2.2236784622105725,
+ "grad_norm": 0.36273983120918274,
+ "learning_rate": 0.0006,
+ "loss": 6.366860389709473,
+ "step": 160
+ },
+ {
+ "epoch": 2.2376583660987333,
+ "grad_norm": 0.2850998342037201,
+ "learning_rate": 0.0006,
+ "loss": 6.352144718170166,
+ "step": 161
+ },
+ {
+ "epoch": 2.251638269986894,
+ "grad_norm": 0.38558584451675415,
+ "learning_rate": 0.0006,
+ "loss": 6.375765800476074,
+ "step": 162
+ },
+ {
+ "epoch": 2.2656181738750547,
+ "grad_norm": 0.34809231758117676,
+ "learning_rate": 0.0006,
+ "loss": 6.350445747375488,
+ "step": 163
+ },
+ {
+ "epoch": 2.2795980777632154,
+ "grad_norm": 0.5211818814277649,
+ "learning_rate": 0.0006,
+ "loss": 6.354585647583008,
+ "step": 164
+ },
+ {
+ "epoch": 2.293577981651376,
+ "grad_norm": 1.0809133052825928,
+ "learning_rate": 0.0006,
+ "loss": 6.3752007484436035,
+ "step": 165
+ },
+ {
+ "epoch": 2.307557885539537,
+ "grad_norm": 0.8293641209602356,
+ "learning_rate": 0.0006,
+ "loss": 6.35113525390625,
+ "step": 166
+ },
+ {
+ "epoch": 2.3215377894276976,
+ "grad_norm": 0.3428577780723572,
+ "learning_rate": 0.0006,
+ "loss": 6.334470748901367,
+ "step": 167
+ },
+ {
+ "epoch": 2.3355176933158583,
+ "grad_norm": 0.7587600946426392,
+ "learning_rate": 0.0006,
+ "loss": 6.353979587554932,
+ "step": 168
+ },
+ {
+ "epoch": 2.349497597204019,
+ "grad_norm": 0.4227249026298523,
+ "learning_rate": 0.0006,
+ "loss": 6.34018611907959,
+ "step": 169
+ },
+ {
+ "epoch": 2.36347750109218,
+ "grad_norm": 0.4226846694946289,
+ "learning_rate": 0.0006,
+ "loss": 6.290019989013672,
+ "step": 170
+ },
+ {
+ "epoch": 2.3774574049803405,
+ "grad_norm": 0.38412365317344666,
+ "learning_rate": 0.0006,
+ "loss": 6.309510231018066,
+ "step": 171
+ },
+ {
+ "epoch": 2.3914373088685017,
+ "grad_norm": 0.45698508620262146,
+ "learning_rate": 0.0006,
+ "loss": 6.283290863037109,
+ "step": 172
+ },
+ {
+ "epoch": 2.4054172127566624,
+ "grad_norm": 0.7575915455818176,
+ "learning_rate": 0.0006,
+ "loss": 6.306073188781738,
+ "step": 173
+ },
+ {
+ "epoch": 2.419397116644823,
+ "grad_norm": 0.695123553276062,
+ "learning_rate": 0.0006,
+ "loss": 6.308144569396973,
+ "step": 174
+ },
+ {
+ "epoch": 2.433377020532984,
+ "grad_norm": 0.5035743117332458,
+ "learning_rate": 0.0006,
+ "loss": 6.282073974609375,
+ "step": 175
+ },
+ {
+ "epoch": 2.4473569244211446,
+ "grad_norm": 0.3158020079135895,
+ "learning_rate": 0.0006,
+ "loss": 6.282169342041016,
+ "step": 176
+ },
+ {
+ "epoch": 2.4613368283093053,
+ "grad_norm": 0.4829689860343933,
+ "learning_rate": 0.0006,
+ "loss": 6.264578819274902,
+ "step": 177
+ },
+ {
+ "epoch": 2.475316732197466,
+ "grad_norm": 0.3992770314216614,
+ "learning_rate": 0.0006,
+ "loss": 6.228628158569336,
+ "step": 178
+ },
+ {
+ "epoch": 2.489296636085627,
+ "grad_norm": 0.40887606143951416,
+ "learning_rate": 0.0006,
+ "loss": 6.230792045593262,
+ "step": 179
+ },
+ {
+ "epoch": 2.5032765399737875,
+ "grad_norm": 0.3540310263633728,
+ "learning_rate": 0.0006,
+ "loss": 6.222573280334473,
+ "step": 180
+ },
+ {
+ "epoch": 2.5172564438619487,
+ "grad_norm": 0.496219664812088,
+ "learning_rate": 0.0006,
+ "loss": 6.212109565734863,
+ "step": 181
+ },
+ {
+ "epoch": 2.5312363477501094,
+ "grad_norm": 0.435173898935318,
+ "learning_rate": 0.0006,
+ "loss": 6.221210479736328,
+ "step": 182
+ },
+ {
+ "epoch": 2.54521625163827,
+ "grad_norm": 0.5364007949829102,
+ "learning_rate": 0.0006,
+ "loss": 6.217929840087891,
+ "step": 183
+ },
+ {
+ "epoch": 2.559196155526431,
+ "grad_norm": 0.5946390628814697,
+ "learning_rate": 0.0006,
+ "loss": 6.189267158508301,
+ "step": 184
+ },
+ {
+ "epoch": 2.5731760594145916,
+ "grad_norm": 0.41621312499046326,
+ "learning_rate": 0.0006,
+ "loss": 6.182415008544922,
+ "step": 185
+ },
+ {
+ "epoch": 2.5871559633027523,
+ "grad_norm": 0.5442072749137878,
+ "learning_rate": 0.0006,
+ "loss": 6.150757789611816,
+ "step": 186
+ },
+ {
+ "epoch": 2.601135867190913,
+ "grad_norm": 0.727843165397644,
+ "learning_rate": 0.0006,
+ "loss": 6.146082878112793,
+ "step": 187
+ },
+ {
+ "epoch": 2.615115771079074,
+ "grad_norm": 0.8898891806602478,
+ "learning_rate": 0.0006,
+ "loss": 6.190483093261719,
+ "step": 188
+ },
+ {
+ "epoch": 2.6290956749672345,
+ "grad_norm": 0.5173947215080261,
+ "learning_rate": 0.0006,
+ "loss": 6.151251792907715,
+ "step": 189
+ },
+ {
+ "epoch": 2.6430755788553952,
+ "grad_norm": 0.6476729512214661,
+ "learning_rate": 0.0006,
+ "loss": 6.154841423034668,
+ "step": 190
+ },
+ {
+ "epoch": 2.657055482743556,
+ "grad_norm": 0.3538810908794403,
+ "learning_rate": 0.0006,
+ "loss": 6.103879928588867,
+ "step": 191
+ },
+ {
+ "epoch": 2.6710353866317167,
+ "grad_norm": 0.4773508310317993,
+ "learning_rate": 0.0006,
+ "loss": 6.118101119995117,
+ "step": 192
+ },
+ {
+ "epoch": 2.6850152905198774,
+ "grad_norm": 0.29213786125183105,
+ "learning_rate": 0.0006,
+ "loss": 6.108916282653809,
+ "step": 193
+ },
+ {
+ "epoch": 2.6989951944080386,
+ "grad_norm": 0.40800607204437256,
+ "learning_rate": 0.0006,
+ "loss": 6.113438606262207,
+ "step": 194
+ },
+ {
+ "epoch": 2.7129750982961993,
+ "grad_norm": 0.31157299876213074,
+ "learning_rate": 0.0006,
+ "loss": 6.101809501647949,
+ "step": 195
+ },
+ {
+ "epoch": 2.72695500218436,
+ "grad_norm": 0.28660309314727783,
+ "learning_rate": 0.0006,
+ "loss": 6.075886249542236,
+ "step": 196
+ },
+ {
+ "epoch": 2.7409349060725208,
+ "grad_norm": 0.3810449540615082,
+ "learning_rate": 0.0006,
+ "loss": 6.053257942199707,
+ "step": 197
+ },
+ {
+ "epoch": 2.7549148099606815,
+ "grad_norm": 0.21741755306720734,
+ "learning_rate": 0.0006,
+ "loss": 6.013825416564941,
+ "step": 198
+ },
+ {
+ "epoch": 2.7688947138488422,
+ "grad_norm": 0.2777678966522217,
+ "learning_rate": 0.0006,
+ "loss": 6.054204940795898,
+ "step": 199
+ },
+ {
+ "epoch": 2.782874617737003,
+ "grad_norm": 0.28503066301345825,
+ "learning_rate": 0.0006,
+ "loss": 6.035628318786621,
+ "step": 200
+ },
+ {
+ "epoch": 2.7968545216251637,
+ "grad_norm": 0.41954755783081055,
+ "learning_rate": 0.0006,
+ "loss": 6.028354644775391,
+ "step": 201
+ },
+ {
+ "epoch": 2.810834425513325,
+ "grad_norm": 0.8785563111305237,
+ "learning_rate": 0.0006,
+ "loss": 6.055761337280273,
+ "step": 202
+ },
+ {
+ "epoch": 2.8248143294014856,
+ "grad_norm": 1.7459558248519897,
+ "learning_rate": 0.0006,
+ "loss": 6.11599588394165,
+ "step": 203
+ },
+ {
+ "epoch": 2.8387942332896463,
+ "grad_norm": 0.5725523233413696,
+ "learning_rate": 0.0006,
+ "loss": 6.024280548095703,
+ "step": 204
+ },
+ {
+ "epoch": 2.852774137177807,
+ "grad_norm": 0.5913150906562805,
+ "learning_rate": 0.0006,
+ "loss": 6.050281524658203,
+ "step": 205
+ },
+ {
+ "epoch": 2.8667540410659678,
+ "grad_norm": 0.5929384827613831,
+ "learning_rate": 0.0006,
+ "loss": 6.041121482849121,
+ "step": 206
+ },
+ {
+ "epoch": 2.8807339449541285,
+ "grad_norm": 0.5650724768638611,
+ "learning_rate": 0.0006,
+ "loss": 6.004258155822754,
+ "step": 207
+ },
+ {
+ "epoch": 2.894713848842289,
+ "grad_norm": 0.3420545756816864,
+ "learning_rate": 0.0006,
+ "loss": 5.983296871185303,
+ "step": 208
+ },
+ {
+ "epoch": 2.90869375273045,
+ "grad_norm": 0.2960914075374603,
+ "learning_rate": 0.0006,
+ "loss": 5.988578796386719,
+ "step": 209
+ },
+ {
+ "epoch": 2.9226736566186107,
+ "grad_norm": 0.3252662718296051,
+ "learning_rate": 0.0006,
+ "loss": 5.99103307723999,
+ "step": 210
+ },
+ {
+ "epoch": 2.9366535605067714,
+ "grad_norm": 0.4851132929325104,
+ "learning_rate": 0.0006,
+ "loss": 6.0028977394104,
+ "step": 211
+ },
+ {
+ "epoch": 2.950633464394932,
+ "grad_norm": 0.5639995336532593,
+ "learning_rate": 0.0006,
+ "loss": 5.965080738067627,
+ "step": 212
+ },
+ {
+ "epoch": 2.964613368283093,
+ "grad_norm": 0.4514601230621338,
+ "learning_rate": 0.0006,
+ "loss": 5.961450576782227,
+ "step": 213
+ },
+ {
+ "epoch": 2.9785932721712536,
+ "grad_norm": 0.5397921800613403,
+ "learning_rate": 0.0006,
+ "loss": 5.965290546417236,
+ "step": 214
+ },
+ {
+ "epoch": 2.9925731760594148,
+ "grad_norm": 0.4735587239265442,
+ "learning_rate": 0.0006,
+ "loss": 5.952754497528076,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.32061058282852173,
+ "learning_rate": 0.0006,
+ "loss": 5.961667060852051,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 6.8517303466796875,
+ "eval_runtime": 44.03,
+ "eval_samples_per_second": 55.462,
+ "eval_steps_per_second": 3.475,
+ "step": 216
+ },
+ {
+ "epoch": 3.0139799038881607,
+ "grad_norm": 0.3537784814834595,
+ "learning_rate": 0.0006,
+ "loss": 5.928008079528809,
+ "step": 217
+ },
+ {
+ "epoch": 3.0279598077763215,
+ "grad_norm": 0.40713080763816833,
+ "learning_rate": 0.0006,
+ "loss": 5.9150800704956055,
+ "step": 218
+ },
+ {
+ "epoch": 3.041939711664482,
+ "grad_norm": 0.2548826336860657,
+ "learning_rate": 0.0006,
+ "loss": 5.919757843017578,
+ "step": 219
+ },
+ {
+ "epoch": 3.055919615552643,
+ "grad_norm": 0.2818543016910553,
+ "learning_rate": 0.0006,
+ "loss": 5.913688659667969,
+ "step": 220
+ },
+ {
+ "epoch": 3.0698995194408036,
+ "grad_norm": 0.4196692705154419,
+ "learning_rate": 0.0006,
+ "loss": 5.8675336837768555,
+ "step": 221
+ },
+ {
+ "epoch": 3.083879423328965,
+ "grad_norm": 0.35272282361984253,
+ "learning_rate": 0.0006,
+ "loss": 5.878874778747559,
+ "step": 222
+ },
+ {
+ "epoch": 3.0978593272171255,
+ "grad_norm": 0.3254282772541046,
+ "learning_rate": 0.0006,
+ "loss": 5.8823041915893555,
+ "step": 223
+ },
+ {
+ "epoch": 3.1118392311052863,
+ "grad_norm": 0.4052561819553375,
+ "learning_rate": 0.0006,
+ "loss": 5.867744445800781,
+ "step": 224
+ },
+ {
+ "epoch": 3.125819134993447,
+ "grad_norm": 0.31246256828308105,
+ "learning_rate": 0.0006,
+ "loss": 5.886094093322754,
+ "step": 225
+ },
+ {
+ "epoch": 3.1397990388816077,
+ "grad_norm": 0.3479118347167969,
+ "learning_rate": 0.0006,
+ "loss": 5.850762367248535,
+ "step": 226
+ },
+ {
+ "epoch": 3.1537789427697684,
+ "grad_norm": 0.5037238597869873,
+ "learning_rate": 0.0006,
+ "loss": 5.844175815582275,
+ "step": 227
+ },
+ {
+ "epoch": 3.167758846657929,
+ "grad_norm": 0.6271815896034241,
+ "learning_rate": 0.0006,
+ "loss": 5.871790885925293,
+ "step": 228
+ },
+ {
+ "epoch": 3.18173875054609,
+ "grad_norm": 0.43838298320770264,
+ "learning_rate": 0.0006,
+ "loss": 5.844024658203125,
+ "step": 229
+ },
+ {
+ "epoch": 3.1957186544342506,
+ "grad_norm": 0.4755159616470337,
+ "learning_rate": 0.0006,
+ "loss": 5.846892356872559,
+ "step": 230
+ },
+ {
+ "epoch": 3.2096985583224114,
+ "grad_norm": 0.5229779481887817,
+ "learning_rate": 0.0006,
+ "loss": 5.827000617980957,
+ "step": 231
+ },
+ {
+ "epoch": 3.2236784622105725,
+ "grad_norm": 0.8264499306678772,
+ "learning_rate": 0.0006,
+ "loss": 5.867050647735596,
+ "step": 232
+ },
+ {
+ "epoch": 3.2376583660987333,
+ "grad_norm": 1.0607538223266602,
+ "learning_rate": 0.0006,
+ "loss": 5.877876281738281,
+ "step": 233
+ },
+ {
+ "epoch": 3.251638269986894,
+ "grad_norm": 0.7656505703926086,
+ "learning_rate": 0.0006,
+ "loss": 5.86760139465332,
+ "step": 234
+ },
+ {
+ "epoch": 3.2656181738750547,
+ "grad_norm": 0.7940183281898499,
+ "learning_rate": 0.0006,
+ "loss": 5.861355781555176,
+ "step": 235
+ },
+ {
+ "epoch": 3.2795980777632154,
+ "grad_norm": 0.45171424746513367,
+ "learning_rate": 0.0006,
+ "loss": 5.799808502197266,
+ "step": 236
+ },
+ {
+ "epoch": 3.293577981651376,
+ "grad_norm": 0.6174989342689514,
+ "learning_rate": 0.0006,
+ "loss": 5.8585920333862305,
+ "step": 237
+ },
+ {
+ "epoch": 3.307557885539537,
+ "grad_norm": 0.5341290831565857,
+ "learning_rate": 0.0006,
+ "loss": 5.8116044998168945,
+ "step": 238
+ },
+ {
+ "epoch": 3.3215377894276976,
+ "grad_norm": 0.3938343822956085,
+ "learning_rate": 0.0006,
+ "loss": 5.83797550201416,
+ "step": 239
+ },
+ {
+ "epoch": 3.3355176933158583,
+ "grad_norm": 0.5106972455978394,
+ "learning_rate": 0.0006,
+ "loss": 5.832303047180176,
+ "step": 240
+ },
+ {
+ "epoch": 3.349497597204019,
+ "grad_norm": 0.3791428506374359,
+ "learning_rate": 0.0006,
+ "loss": 5.794981956481934,
+ "step": 241
+ },
+ {
+ "epoch": 3.36347750109218,
+ "grad_norm": 0.42287978529930115,
+ "learning_rate": 0.0006,
+ "loss": 5.788144111633301,
+ "step": 242
+ },
+ {
+ "epoch": 3.3774574049803405,
+ "grad_norm": 0.27334436774253845,
+ "learning_rate": 0.0006,
+ "loss": 5.771070957183838,
+ "step": 243
+ },
+ {
+ "epoch": 3.3914373088685017,
+ "grad_norm": 0.2470470368862152,
+ "learning_rate": 0.0006,
+ "loss": 5.755998611450195,
+ "step": 244
+ },
+ {
+ "epoch": 3.4054172127566624,
+ "grad_norm": 0.3043915033340454,
+ "learning_rate": 0.0006,
+ "loss": 5.779492378234863,
+ "step": 245
+ },
+ {
+ "epoch": 3.419397116644823,
+ "grad_norm": 0.2960112988948822,
+ "learning_rate": 0.0006,
+ "loss": 5.750328063964844,
+ "step": 246
+ },
+ {
+ "epoch": 3.433377020532984,
+ "grad_norm": 0.3046723008155823,
+ "learning_rate": 0.0006,
+ "loss": 5.776517868041992,
+ "step": 247
+ },
+ {
+ "epoch": 3.4473569244211446,
+ "grad_norm": 0.22461780905723572,
+ "learning_rate": 0.0006,
+ "loss": 5.760989665985107,
+ "step": 248
+ },
+ {
+ "epoch": 3.4613368283093053,
+ "grad_norm": 0.24625757336616516,
+ "learning_rate": 0.0006,
+ "loss": 5.759706497192383,
+ "step": 249
+ },
+ {
+ "epoch": 3.475316732197466,
+ "grad_norm": 0.18207131326198578,
+ "learning_rate": 0.0006,
+ "loss": 5.747040748596191,
+ "step": 250
+ },
+ {
+ "epoch": 3.489296636085627,
+ "grad_norm": 0.16473834216594696,
+ "learning_rate": 0.0006,
+ "loss": 5.761577606201172,
+ "step": 251
+ },
+ {
+ "epoch": 3.5032765399737875,
+ "grad_norm": 0.25155773758888245,
+ "learning_rate": 0.0006,
+ "loss": 5.696502208709717,
+ "step": 252
+ },
+ {
+ "epoch": 3.5172564438619487,
+ "grad_norm": 0.24115674197673798,
+ "learning_rate": 0.0006,
+ "loss": 5.676957130432129,
+ "step": 253
+ },
+ {
+ "epoch": 3.5312363477501094,
+ "grad_norm": 0.40912172198295593,
+ "learning_rate": 0.0006,
+ "loss": 5.695090293884277,
+ "step": 254
+ },
+ {
+ "epoch": 3.54521625163827,
+ "grad_norm": 0.6727662682533264,
+ "learning_rate": 0.0006,
+ "loss": 5.722194671630859,
+ "step": 255
+ },
+ {
+ "epoch": 3.559196155526431,
+ "grad_norm": 0.8450719118118286,
+ "learning_rate": 0.0006,
+ "loss": 5.764680862426758,
+ "step": 256
+ },
+ {
+ "epoch": 3.5731760594145916,
+ "grad_norm": 0.9916183352470398,
+ "learning_rate": 0.0006,
+ "loss": 5.754530429840088,
+ "step": 257
+ },
+ {
+ "epoch": 3.5871559633027523,
+ "grad_norm": 1.041922688484192,
+ "learning_rate": 0.0006,
+ "loss": 5.781468391418457,
+ "step": 258
+ },
+ {
+ "epoch": 3.601135867190913,
+ "grad_norm": 0.972039520740509,
+ "learning_rate": 0.0006,
+ "loss": 5.760323524475098,
+ "step": 259
+ },
+ {
+ "epoch": 3.615115771079074,
+ "grad_norm": 0.6802462935447693,
+ "learning_rate": 0.0006,
+ "loss": 5.750064849853516,
+ "step": 260
+ },
+ {
+ "epoch": 3.6290956749672345,
+ "grad_norm": 0.48553529381752014,
+ "learning_rate": 0.0006,
+ "loss": 5.7464094161987305,
+ "step": 261
+ },
+ {
+ "epoch": 3.6430755788553952,
+ "grad_norm": 0.4066704213619232,
+ "learning_rate": 0.0006,
+ "loss": 5.719789505004883,
+ "step": 262
+ },
+ {
+ "epoch": 3.657055482743556,
+ "grad_norm": 0.3300860822200775,
+ "learning_rate": 0.0006,
+ "loss": 5.719920635223389,
+ "step": 263
+ },
+ {
+ "epoch": 3.6710353866317167,
+ "grad_norm": 0.3286679983139038,
+ "learning_rate": 0.0006,
+ "loss": 5.723465919494629,
+ "step": 264
+ },
+ {
+ "epoch": 3.6850152905198774,
+ "grad_norm": 0.27653390169143677,
+ "learning_rate": 0.0006,
+ "loss": 5.713820457458496,
+ "step": 265
+ },
+ {
+ "epoch": 3.6989951944080386,
+ "grad_norm": 0.26138055324554443,
+ "learning_rate": 0.0006,
+ "loss": 5.683221817016602,
+ "step": 266
+ },
+ {
+ "epoch": 3.7129750982961993,
+ "grad_norm": 0.23706290125846863,
+ "learning_rate": 0.0006,
+ "loss": 5.6896867752075195,
+ "step": 267
+ },
+ {
+ "epoch": 3.72695500218436,
+ "grad_norm": 0.2751729190349579,
+ "learning_rate": 0.0006,
+ "loss": 5.710301876068115,
+ "step": 268
+ },
+ {
+ "epoch": 3.7409349060725208,
+ "grad_norm": 0.255393385887146,
+ "learning_rate": 0.0006,
+ "loss": 5.687932968139648,
+ "step": 269
+ },
+ {
+ "epoch": 3.7549148099606815,
+ "grad_norm": 0.21453925967216492,
+ "learning_rate": 0.0006,
+ "loss": 5.68234395980835,
+ "step": 270
+ },
+ {
+ "epoch": 3.7688947138488422,
+ "grad_norm": 0.21771012246608734,
+ "learning_rate": 0.0006,
+ "loss": 5.683980464935303,
+ "step": 271
+ },
+ {
+ "epoch": 3.782874617737003,
+ "grad_norm": 0.1884593963623047,
+ "learning_rate": 0.0006,
+ "loss": 5.662779808044434,
+ "step": 272
+ },
+ {
+ "epoch": 3.7968545216251637,
+ "grad_norm": 0.20429612696170807,
+ "learning_rate": 0.0006,
+ "loss": 5.650941848754883,
+ "step": 273
+ },
+ {
+ "epoch": 3.810834425513325,
+ "grad_norm": 0.22586797177791595,
+ "learning_rate": 0.0006,
+ "loss": 5.639376640319824,
+ "step": 274
+ },
+ {
+ "epoch": 3.8248143294014856,
+ "grad_norm": 0.19651705026626587,
+ "learning_rate": 0.0006,
+ "loss": 5.612030029296875,
+ "step": 275
+ },
+ {
+ "epoch": 3.8387942332896463,
+ "grad_norm": 0.2125253826379776,
+ "learning_rate": 0.0006,
+ "loss": 5.622836589813232,
+ "step": 276
+ },
+ {
+ "epoch": 3.852774137177807,
+ "grad_norm": 0.2905234694480896,
+ "learning_rate": 0.0006,
+ "loss": 5.624594688415527,
+ "step": 277
+ },
+ {
+ "epoch": 3.8667540410659678,
+ "grad_norm": 0.2718426585197449,
+ "learning_rate": 0.0006,
+ "loss": 5.619892120361328,
+ "step": 278
+ },
+ {
+ "epoch": 3.8807339449541285,
+ "grad_norm": 0.26481127738952637,
+ "learning_rate": 0.0006,
+ "loss": 5.612496852874756,
+ "step": 279
+ },
+ {
+ "epoch": 3.894713848842289,
+ "grad_norm": 0.2876453399658203,
+ "learning_rate": 0.0006,
+ "loss": 5.59157133102417,
+ "step": 280
+ },
+ {
+ "epoch": 3.90869375273045,
+ "grad_norm": 0.22829554975032806,
+ "learning_rate": 0.0006,
+ "loss": 5.5884199142456055,
+ "step": 281
+ },
+ {
+ "epoch": 3.9226736566186107,
+ "grad_norm": 0.22852344810962677,
+ "learning_rate": 0.0006,
+ "loss": 5.618719100952148,
+ "step": 282
+ },
+ {
+ "epoch": 3.9366535605067714,
+ "grad_norm": 0.37366563081741333,
+ "learning_rate": 0.0006,
+ "loss": 5.611738204956055,
+ "step": 283
+ },
+ {
+ "epoch": 3.950633464394932,
+ "grad_norm": 0.5650382041931152,
+ "learning_rate": 0.0006,
+ "loss": 5.606371879577637,
+ "step": 284
+ },
+ {
+ "epoch": 3.964613368283093,
+ "grad_norm": 0.5960066914558411,
+ "learning_rate": 0.0006,
+ "loss": 5.595022201538086,
+ "step": 285
+ },
+ {
+ "epoch": 3.9785932721712536,
+ "grad_norm": 0.3561663031578064,
+ "learning_rate": 0.0006,
+ "loss": 5.581035614013672,
+ "step": 286
+ },
+ {
+ "epoch": 3.9925731760594148,
+ "grad_norm": 0.44699913263320923,
+ "learning_rate": 0.0006,
+ "loss": 5.568033218383789,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.42783990502357483,
+ "learning_rate": 0.0006,
+ "loss": 5.571993827819824,
+ "step": 288
+ },
+ {
+ "epoch": 4.0,
+ "eval_loss": 6.349016189575195,
+ "eval_runtime": 44.3326,
+ "eval_samples_per_second": 55.084,
+ "eval_steps_per_second": 3.451,
+ "step": 288
+ },
+ {
+ "epoch": 4.013979903888161,
+ "grad_norm": 0.41305896639823914,
+ "learning_rate": 0.0006,
+ "loss": 5.562954902648926,
+ "step": 289
+ },
+ {
+ "epoch": 4.0279598077763215,
+ "grad_norm": 0.3966459035873413,
+ "learning_rate": 0.0006,
+ "loss": 5.5671916007995605,
+ "step": 290
+ },
+ {
+ "epoch": 4.041939711664482,
+ "grad_norm": 0.4846104085445404,
+ "learning_rate": 0.0006,
+ "loss": 5.548027038574219,
+ "step": 291
+ },
+ {
+ "epoch": 4.055919615552643,
+ "grad_norm": 0.5916333794593811,
+ "learning_rate": 0.0006,
+ "loss": 5.5900068283081055,
+ "step": 292
+ },
+ {
+ "epoch": 4.069899519440804,
+ "grad_norm": 0.5973889231681824,
+ "learning_rate": 0.0006,
+ "loss": 5.537594795227051,
+ "step": 293
+ },
+ {
+ "epoch": 4.083879423328964,
+ "grad_norm": 0.4190494418144226,
+ "learning_rate": 0.0006,
+ "loss": 5.534749984741211,
+ "step": 294
+ },
+ {
+ "epoch": 4.097859327217125,
+ "grad_norm": 0.5956901907920837,
+ "learning_rate": 0.0006,
+ "loss": 5.554540634155273,
+ "step": 295
+ },
+ {
+ "epoch": 4.111839231105286,
+ "grad_norm": 0.8257920742034912,
+ "learning_rate": 0.0006,
+ "loss": 5.5728068351745605,
+ "step": 296
+ },
+ {
+ "epoch": 4.1258191349934465,
+ "grad_norm": 0.7241750955581665,
+ "learning_rate": 0.0006,
+ "loss": 5.5643815994262695,
+ "step": 297
+ },
+ {
+ "epoch": 4.139799038881607,
+ "grad_norm": 0.45730507373809814,
+ "learning_rate": 0.0006,
+ "loss": 5.554225921630859,
+ "step": 298
+ },
+ {
+ "epoch": 4.153778942769769,
+ "grad_norm": 0.5166977643966675,
+ "learning_rate": 0.0006,
+ "loss": 5.540790557861328,
+ "step": 299
+ },
+ {
+ "epoch": 4.16775884665793,
+ "grad_norm": 0.433237761259079,
+ "learning_rate": 0.0006,
+ "loss": 5.536884784698486,
+ "step": 300
+ },
+ {
+ "epoch": 4.18173875054609,
+ "grad_norm": 0.3369830250740051,
+ "learning_rate": 0.0006,
+ "loss": 5.532837867736816,
+ "step": 301
+ },
+ {
+ "epoch": 4.195718654434251,
+ "grad_norm": 0.33091458678245544,
+ "learning_rate": 0.0006,
+ "loss": 5.547643661499023,
+ "step": 302
+ },
+ {
+ "epoch": 4.209698558322412,
+ "grad_norm": 0.36462724208831787,
+ "learning_rate": 0.0006,
+ "loss": 5.525021076202393,
+ "step": 303
+ },
+ {
+ "epoch": 4.2236784622105725,
+ "grad_norm": 0.3342771530151367,
+ "learning_rate": 0.0006,
+ "loss": 5.512082099914551,
+ "step": 304
+ },
+ {
+ "epoch": 4.237658366098733,
+ "grad_norm": 0.26784762740135193,
+ "learning_rate": 0.0006,
+ "loss": 5.488072395324707,
+ "step": 305
+ },
+ {
+ "epoch": 4.251638269986894,
+ "grad_norm": 0.25986987352371216,
+ "learning_rate": 0.0006,
+ "loss": 5.4960455894470215,
+ "step": 306
+ },
+ {
+ "epoch": 4.265618173875055,
+ "grad_norm": 0.24595795571804047,
+ "learning_rate": 0.0006,
+ "loss": 5.513367176055908,
+ "step": 307
+ },
+ {
+ "epoch": 4.279598077763215,
+ "grad_norm": 0.2224857211112976,
+ "learning_rate": 0.0006,
+ "loss": 5.465205192565918,
+ "step": 308
+ },
+ {
+ "epoch": 4.293577981651376,
+ "grad_norm": 0.26799243688583374,
+ "learning_rate": 0.0006,
+ "loss": 5.476632118225098,
+ "step": 309
+ },
+ {
+ "epoch": 4.307557885539537,
+ "grad_norm": 0.20443417131900787,
+ "learning_rate": 0.0006,
+ "loss": 5.442601203918457,
+ "step": 310
+ },
+ {
+ "epoch": 4.321537789427698,
+ "grad_norm": 0.2275059074163437,
+ "learning_rate": 0.0006,
+ "loss": 5.453519344329834,
+ "step": 311
+ },
+ {
+ "epoch": 4.335517693315858,
+ "grad_norm": 0.2860901951789856,
+ "learning_rate": 0.0006,
+ "loss": 5.439424514770508,
+ "step": 312
+ },
+ {
+ "epoch": 4.349497597204019,
+ "grad_norm": 0.3378142714500427,
+ "learning_rate": 0.0006,
+ "loss": 5.476953983306885,
+ "step": 313
+ },
+ {
+ "epoch": 4.36347750109218,
+ "grad_norm": 0.3487110733985901,
+ "learning_rate": 0.0006,
+ "loss": 5.47003698348999,
+ "step": 314
+ },
+ {
+ "epoch": 4.3774574049803405,
+ "grad_norm": 0.3655227720737457,
+ "learning_rate": 0.0006,
+ "loss": 5.454250812530518,
+ "step": 315
+ },
+ {
+ "epoch": 4.391437308868501,
+ "grad_norm": 0.3754786252975464,
+ "learning_rate": 0.0006,
+ "loss": 5.475249290466309,
+ "step": 316
+ },
+ {
+ "epoch": 4.405417212756662,
+ "grad_norm": 0.42494088411331177,
+ "learning_rate": 0.0006,
+ "loss": 5.4552459716796875,
+ "step": 317
+ },
+ {
+ "epoch": 4.419397116644823,
+ "grad_norm": 0.4914703667163849,
+ "learning_rate": 0.0006,
+ "loss": 5.431845188140869,
+ "step": 318
+ },
+ {
+ "epoch": 4.433377020532983,
+ "grad_norm": 0.42470860481262207,
+ "learning_rate": 0.0006,
+ "loss": 5.454581260681152,
+ "step": 319
+ },
+ {
+ "epoch": 4.447356924421145,
+ "grad_norm": 0.3828011155128479,
+ "learning_rate": 0.0006,
+ "loss": 5.435178756713867,
+ "step": 320
+ },
+ {
+ "epoch": 4.461336828309306,
+ "grad_norm": 0.47256892919540405,
+ "learning_rate": 0.0006,
+ "loss": 5.428861618041992,
+ "step": 321
+ },
+ {
+ "epoch": 4.4753167321974665,
+ "grad_norm": 0.5665146708488464,
+ "learning_rate": 0.0006,
+ "loss": 5.424633026123047,
+ "step": 322
+ },
+ {
+ "epoch": 4.489296636085627,
+ "grad_norm": 0.48146721720695496,
+ "learning_rate": 0.0006,
+ "loss": 5.4577860832214355,
+ "step": 323
+ },
+ {
+ "epoch": 4.503276539973788,
+ "grad_norm": 0.3378535509109497,
+ "learning_rate": 0.0006,
+ "loss": 5.422727108001709,
+ "step": 324
+ },
+ {
+ "epoch": 4.517256443861949,
+ "grad_norm": 0.41981473565101624,
+ "learning_rate": 0.0006,
+ "loss": 5.418993949890137,
+ "step": 325
+ },
+ {
+ "epoch": 4.531236347750109,
+ "grad_norm": 0.39389684796333313,
+ "learning_rate": 0.0006,
+ "loss": 5.41835880279541,
+ "step": 326
+ },
+ {
+ "epoch": 4.54521625163827,
+ "grad_norm": 0.5912176370620728,
+ "learning_rate": 0.0006,
+ "loss": 5.40073299407959,
+ "step": 327
+ },
+ {
+ "epoch": 4.559196155526431,
+ "grad_norm": 0.6877487897872925,
+ "learning_rate": 0.0006,
+ "loss": 5.445301055908203,
+ "step": 328
+ },
+ {
+ "epoch": 4.573176059414592,
+ "grad_norm": 0.580555260181427,
+ "learning_rate": 0.0006,
+ "loss": 5.431069374084473,
+ "step": 329
+ },
+ {
+ "epoch": 4.587155963302752,
+ "grad_norm": 0.5974457859992981,
+ "learning_rate": 0.0006,
+ "loss": 5.422694206237793,
+ "step": 330
+ },
+ {
+ "epoch": 4.601135867190913,
+ "grad_norm": 0.722481906414032,
+ "learning_rate": 0.0006,
+ "loss": 5.447752952575684,
+ "step": 331
+ },
+ {
+ "epoch": 4.615115771079074,
+ "grad_norm": 0.7687886953353882,
+ "learning_rate": 0.0006,
+ "loss": 5.437956809997559,
+ "step": 332
+ },
+ {
+ "epoch": 4.6290956749672345,
+ "grad_norm": 0.7368173003196716,
+ "learning_rate": 0.0006,
+ "loss": 5.4367241859436035,
+ "step": 333
+ },
+ {
+ "epoch": 4.643075578855395,
+ "grad_norm": 0.6650524139404297,
+ "learning_rate": 0.0006,
+ "loss": 5.4288434982299805,
+ "step": 334
+ },
+ {
+ "epoch": 4.657055482743556,
+ "grad_norm": 0.4997614920139313,
+ "learning_rate": 0.0006,
+ "loss": 5.412769317626953,
+ "step": 335
+ },
+ {
+ "epoch": 4.671035386631717,
+ "grad_norm": 0.44208982586860657,
+ "learning_rate": 0.0006,
+ "loss": 5.42405366897583,
+ "step": 336
+ },
+ {
+ "epoch": 4.685015290519877,
+ "grad_norm": 0.39510273933410645,
+ "learning_rate": 0.0006,
+ "loss": 5.402547836303711,
+ "step": 337
+ },
+ {
+ "epoch": 4.698995194408038,
+ "grad_norm": 0.44970476627349854,
+ "learning_rate": 0.0006,
+ "loss": 5.377168655395508,
+ "step": 338
+ },
+ {
+ "epoch": 4.712975098296199,
+ "grad_norm": 0.3902331590652466,
+ "learning_rate": 0.0006,
+ "loss": 5.401622772216797,
+ "step": 339
+ },
+ {
+ "epoch": 4.72695500218436,
+ "grad_norm": 0.33485135436058044,
+ "learning_rate": 0.0006,
+ "loss": 5.397945880889893,
+ "step": 340
+ },
+ {
+ "epoch": 4.740934906072521,
+ "grad_norm": 0.29062309861183167,
+ "learning_rate": 0.0006,
+ "loss": 5.356175422668457,
+ "step": 341
+ },
+ {
+ "epoch": 4.754914809960681,
+ "grad_norm": 0.23617377877235413,
+ "learning_rate": 0.0006,
+ "loss": 5.388517379760742,
+ "step": 342
+ },
+ {
+ "epoch": 4.768894713848843,
+ "grad_norm": 0.2704737186431885,
+ "learning_rate": 0.0006,
+ "loss": 5.3746137619018555,
+ "step": 343
+ },
+ {
+ "epoch": 4.782874617737003,
+ "grad_norm": 0.20488551259040833,
+ "learning_rate": 0.0006,
+ "loss": 5.3754472732543945,
+ "step": 344
+ },
+ {
+ "epoch": 4.796854521625164,
+ "grad_norm": 0.2007082849740982,
+ "learning_rate": 0.0006,
+ "loss": 5.3538618087768555,
+ "step": 345
+ },
+ {
+ "epoch": 4.810834425513325,
+ "grad_norm": 0.21732935309410095,
+ "learning_rate": 0.0006,
+ "loss": 5.351774215698242,
+ "step": 346
+ },
+ {
+ "epoch": 4.824814329401486,
+ "grad_norm": 0.1944841742515564,
+ "learning_rate": 0.0006,
+ "loss": 5.357545852661133,
+ "step": 347
+ },
+ {
+ "epoch": 4.838794233289646,
+ "grad_norm": 0.1953933835029602,
+ "learning_rate": 0.0006,
+ "loss": 5.321681022644043,
+ "step": 348
+ },
+ {
+ "epoch": 4.852774137177807,
+ "grad_norm": 0.1743433028459549,
+ "learning_rate": 0.0006,
+ "loss": 5.340302467346191,
+ "step": 349
+ },
+ {
+ "epoch": 4.866754041065968,
+ "grad_norm": 0.19655466079711914,
+ "learning_rate": 0.0006,
+ "loss": 5.325471878051758,
+ "step": 350
+ },
+ {
+ "epoch": 4.8807339449541285,
+ "grad_norm": 0.15761791169643402,
+ "learning_rate": 0.0006,
+ "loss": 5.3453240394592285,
+ "step": 351
+ },
+ {
+ "epoch": 4.894713848842289,
+ "grad_norm": 0.19164425134658813,
+ "learning_rate": 0.0006,
+ "loss": 5.315583229064941,
+ "step": 352
+ },
+ {
+ "epoch": 4.90869375273045,
+ "grad_norm": 0.28084540367126465,
+ "learning_rate": 0.0006,
+ "loss": 5.309171676635742,
+ "step": 353
+ },
+ {
+ "epoch": 4.922673656618611,
+ "grad_norm": 0.4681853652000427,
+ "learning_rate": 0.0006,
+ "loss": 5.318211078643799,
+ "step": 354
+ },
+ {
+ "epoch": 4.936653560506771,
+ "grad_norm": 0.6417295932769775,
+ "learning_rate": 0.0006,
+ "loss": 5.309263706207275,
+ "step": 355
+ },
+ {
+ "epoch": 4.950633464394932,
+ "grad_norm": 0.501312792301178,
+ "learning_rate": 0.0006,
+ "loss": 5.321534156799316,
+ "step": 356
+ },
+ {
+ "epoch": 4.964613368283093,
+ "grad_norm": 0.47502145171165466,
+ "learning_rate": 0.0006,
+ "loss": 5.323659896850586,
+ "step": 357
+ },
+ {
+ "epoch": 4.978593272171254,
+ "grad_norm": 0.5366594791412354,
+ "learning_rate": 0.0006,
+ "loss": 5.327367782592773,
+ "step": 358
+ },
+ {
+ "epoch": 4.992573176059414,
+ "grad_norm": 0.6986395120620728,
+ "learning_rate": 0.0006,
+ "loss": 5.311097145080566,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.6626625657081604,
+ "learning_rate": 0.0006,
+ "loss": 5.337558269500732,
+ "step": 360
+ },
+ {
+ "epoch": 5.0,
+ "eval_loss": 5.929230690002441,
+ "eval_runtime": 44.5268,
+ "eval_samples_per_second": 54.843,
+ "eval_steps_per_second": 3.436,
+ "step": 360
+ },
+ {
+ "epoch": 5.013979903888161,
+ "grad_norm": 0.7383704781532288,
+ "learning_rate": 0.0006,
+ "loss": 5.315563678741455,
+ "step": 361
+ },
+ {
+ "epoch": 5.0279598077763215,
+ "grad_norm": 0.7730138301849365,
+ "learning_rate": 0.0006,
+ "loss": 5.324905872344971,
+ "step": 362
+ },
+ {
+ "epoch": 5.041939711664482,
+ "grad_norm": 0.8170825839042664,
+ "learning_rate": 0.0006,
+ "loss": 5.350251197814941,
+ "step": 363
+ },
+ {
+ "epoch": 5.055919615552643,
+ "grad_norm": 0.6950958371162415,
+ "learning_rate": 0.0006,
+ "loss": 5.338744163513184,
+ "step": 364
+ },
+ {
+ "epoch": 5.069899519440804,
+ "grad_norm": 0.5582894086837769,
+ "learning_rate": 0.0006,
+ "loss": 5.340539932250977,
+ "step": 365
+ },
+ {
+ "epoch": 5.083879423328964,
+ "grad_norm": 0.4772159159183502,
+ "learning_rate": 0.0006,
+ "loss": 5.344161033630371,
+ "step": 366
+ },
+ {
+ "epoch": 5.097859327217125,
+ "grad_norm": 0.5432839393615723,
+ "learning_rate": 0.0006,
+ "loss": 5.312403678894043,
+ "step": 367
+ },
+ {
+ "epoch": 5.111839231105286,
+ "grad_norm": 0.4944784641265869,
+ "learning_rate": 0.0006,
+ "loss": 5.30281925201416,
+ "step": 368
+ },
+ {
+ "epoch": 5.1258191349934465,
+ "grad_norm": 0.4298315942287445,
+ "learning_rate": 0.0006,
+ "loss": 5.29564094543457,
+ "step": 369
+ },
+ {
+ "epoch": 5.139799038881607,
+ "grad_norm": 0.349889874458313,
+ "learning_rate": 0.0006,
+ "loss": 5.287062644958496,
+ "step": 370
+ },
+ {
+ "epoch": 5.153778942769769,
+ "grad_norm": 0.2823719084262848,
+ "learning_rate": 0.0006,
+ "loss": 5.28826904296875,
+ "step": 371
+ },
+ {
+ "epoch": 5.16775884665793,
+ "grad_norm": 0.32975050806999207,
+ "learning_rate": 0.0006,
+ "loss": 5.256399631500244,
+ "step": 372
+ },
+ {
+ "epoch": 5.18173875054609,
+ "grad_norm": 0.2963952124118805,
+ "learning_rate": 0.0006,
+ "loss": 5.273757457733154,
+ "step": 373
+ },
+ {
+ "epoch": 5.195718654434251,
+ "grad_norm": 0.21345984935760498,
+ "learning_rate": 0.0006,
+ "loss": 5.274978160858154,
+ "step": 374
+ },
+ {
+ "epoch": 5.209698558322412,
+ "grad_norm": 0.2363101840019226,
+ "learning_rate": 0.0006,
+ "loss": 5.261585235595703,
+ "step": 375
+ },
+ {
+ "epoch": 5.2236784622105725,
+ "grad_norm": 0.19626963138580322,
+ "learning_rate": 0.0006,
+ "loss": 5.259700298309326,
+ "step": 376
+ },
+ {
+ "epoch": 5.237658366098733,
+ "grad_norm": 0.21083571016788483,
+ "learning_rate": 0.0006,
+ "loss": 5.233585357666016,
+ "step": 377
+ },
+ {
+ "epoch": 5.251638269986894,
+ "grad_norm": 0.2273513823747635,
+ "learning_rate": 0.0006,
+ "loss": 5.231740474700928,
+ "step": 378
+ },
+ {
+ "epoch": 5.265618173875055,
+ "grad_norm": 0.18299247324466705,
+ "learning_rate": 0.0006,
+ "loss": 5.251256465911865,
+ "step": 379
+ },
+ {
+ "epoch": 5.279598077763215,
+ "grad_norm": 0.19578224420547485,
+ "learning_rate": 0.0006,
+ "loss": 5.230329513549805,
+ "step": 380
+ },
+ {
+ "epoch": 5.293577981651376,
+ "grad_norm": 0.20308879017829895,
+ "learning_rate": 0.0006,
+ "loss": 5.243951797485352,
+ "step": 381
+ },
+ {
+ "epoch": 5.307557885539537,
+ "grad_norm": 0.21053212881088257,
+ "learning_rate": 0.0006,
+ "loss": 5.210272789001465,
+ "step": 382
+ },
+ {
+ "epoch": 5.321537789427698,
+ "grad_norm": 0.21852520108222961,
+ "learning_rate": 0.0006,
+ "loss": 5.215418815612793,
+ "step": 383
+ },
+ {
+ "epoch": 5.335517693315858,
+ "grad_norm": 0.24872010946273804,
+ "learning_rate": 0.0006,
+ "loss": 5.225139617919922,
+ "step": 384
+ },
+ {
+ "epoch": 5.349497597204019,
+ "grad_norm": 0.27780187129974365,
+ "learning_rate": 0.0006,
+ "loss": 5.241010665893555,
+ "step": 385
+ },
+ {
+ "epoch": 5.36347750109218,
+ "grad_norm": 0.261767715215683,
+ "learning_rate": 0.0006,
+ "loss": 5.230723857879639,
+ "step": 386
+ },
+ {
+ "epoch": 5.3774574049803405,
+ "grad_norm": 0.2111261785030365,
+ "learning_rate": 0.0006,
+ "loss": 5.1848602294921875,
+ "step": 387
+ },
+ {
+ "epoch": 5.391437308868501,
+ "grad_norm": 0.24325387179851532,
+ "learning_rate": 0.0006,
+ "loss": 5.180911064147949,
+ "step": 388
+ },
+ {
+ "epoch": 5.405417212756662,
+ "grad_norm": 0.19542962312698364,
+ "learning_rate": 0.0006,
+ "loss": 5.189907073974609,
+ "step": 389
+ },
+ {
+ "epoch": 5.419397116644823,
+ "grad_norm": 0.20489346981048584,
+ "learning_rate": 0.0006,
+ "loss": 5.184634208679199,
+ "step": 390
+ },
+ {
+ "epoch": 5.433377020532983,
+ "grad_norm": 0.2753409147262573,
+ "learning_rate": 0.0006,
+ "loss": 5.190083026885986,
+ "step": 391
+ },
+ {
+ "epoch": 5.447356924421145,
+ "grad_norm": 0.3758019208908081,
+ "learning_rate": 0.0006,
+ "loss": 5.189423561096191,
+ "step": 392
+ },
+ {
+ "epoch": 5.461336828309306,
+ "grad_norm": 0.4425095021724701,
+ "learning_rate": 0.0006,
+ "loss": 5.17152214050293,
+ "step": 393
+ },
+ {
+ "epoch": 5.4753167321974665,
+ "grad_norm": 0.39721858501434326,
+ "learning_rate": 0.0006,
+ "loss": 5.189178466796875,
+ "step": 394
+ },
+ {
+ "epoch": 5.489296636085627,
+ "grad_norm": 0.43441957235336304,
+ "learning_rate": 0.0006,
+ "loss": 5.1823577880859375,
+ "step": 395
+ },
+ {
+ "epoch": 5.503276539973788,
+ "grad_norm": 0.3583861291408539,
+ "learning_rate": 0.0006,
+ "loss": 5.160187721252441,
+ "step": 396
+ },
+ {
+ "epoch": 5.517256443861949,
+ "grad_norm": 0.323290079832077,
+ "learning_rate": 0.0006,
+ "loss": 5.113046646118164,
+ "step": 397
+ },
+ {
+ "epoch": 5.531236347750109,
+ "grad_norm": 0.3049418330192566,
+ "learning_rate": 0.0006,
+ "loss": 5.172209739685059,
+ "step": 398
+ },
+ {
+ "epoch": 5.54521625163827,
+ "grad_norm": 0.3253744840621948,
+ "learning_rate": 0.0006,
+ "loss": 5.1970720291137695,
+ "step": 399
+ },
+ {
+ "epoch": 5.559196155526431,
+ "grad_norm": 0.3232555091381073,
+ "learning_rate": 0.0006,
+ "loss": 5.173195838928223,
+ "step": 400
+ },
+ {
+ "epoch": 5.573176059414592,
+ "grad_norm": 0.33751845359802246,
+ "learning_rate": 0.0006,
+ "loss": 5.137526988983154,
+ "step": 401
+ },
+ {
+ "epoch": 5.587155963302752,
+ "grad_norm": 0.45970913767814636,
+ "learning_rate": 0.0006,
+ "loss": 5.123377799987793,
+ "step": 402
+ },
+ {
+ "epoch": 5.601135867190913,
+ "grad_norm": 0.5383784770965576,
+ "learning_rate": 0.0006,
+ "loss": 5.154180526733398,
+ "step": 403
+ },
+ {
+ "epoch": 5.615115771079074,
+ "grad_norm": 0.45765912532806396,
+ "learning_rate": 0.0006,
+ "loss": 5.1485209465026855,
+ "step": 404
+ },
+ {
+ "epoch": 5.6290956749672345,
+ "grad_norm": 0.5079503059387207,
+ "learning_rate": 0.0006,
+ "loss": 5.158293724060059,
+ "step": 405
+ },
+ {
+ "epoch": 5.643075578855395,
+ "grad_norm": 0.4860183894634247,
+ "learning_rate": 0.0006,
+ "loss": 5.1610212326049805,
+ "step": 406
+ },
+ {
+ "epoch": 5.657055482743556,
+ "grad_norm": 0.4065648913383484,
+ "learning_rate": 0.0006,
+ "loss": 5.1260786056518555,
+ "step": 407
+ },
+ {
+ "epoch": 5.671035386631717,
+ "grad_norm": 0.39606142044067383,
+ "learning_rate": 0.0006,
+ "loss": 5.1598711013793945,
+ "step": 408
+ },
+ {
+ "epoch": 5.685015290519877,
+ "grad_norm": 0.4705151319503784,
+ "learning_rate": 0.0006,
+ "loss": 5.166455268859863,
+ "step": 409
+ },
+ {
+ "epoch": 5.698995194408038,
+ "grad_norm": 0.5040799379348755,
+ "learning_rate": 0.0006,
+ "loss": 5.1408209800720215,
+ "step": 410
+ },
+ {
+ "epoch": 5.712975098296199,
+ "grad_norm": 0.5012556910514832,
+ "learning_rate": 0.0006,
+ "loss": 5.144109725952148,
+ "step": 411
+ },
+ {
+ "epoch": 5.72695500218436,
+ "grad_norm": 0.44301411509513855,
+ "learning_rate": 0.0006,
+ "loss": 5.155509948730469,
+ "step": 412
+ },
+ {
+ "epoch": 5.740934906072521,
+ "grad_norm": 0.36632269620895386,
+ "learning_rate": 0.0006,
+ "loss": 5.123111248016357,
+ "step": 413
+ },
+ {
+ "epoch": 5.754914809960681,
+ "grad_norm": 0.2980524003505707,
+ "learning_rate": 0.0006,
+ "loss": 5.1355719566345215,
+ "step": 414
+ },
+ {
+ "epoch": 5.768894713848843,
+ "grad_norm": 0.3441782295703888,
+ "learning_rate": 0.0006,
+ "loss": 5.132327079772949,
+ "step": 415
+ },
+ {
+ "epoch": 5.782874617737003,
+ "grad_norm": 0.4150780737400055,
+ "learning_rate": 0.0006,
+ "loss": 5.148543357849121,
+ "step": 416
+ },
+ {
+ "epoch": 5.796854521625164,
+ "grad_norm": 0.48417383432388306,
+ "learning_rate": 0.0006,
+ "loss": 5.104989528656006,
+ "step": 417
+ },
+ {
+ "epoch": 5.810834425513325,
+ "grad_norm": 0.3216031491756439,
+ "learning_rate": 0.0006,
+ "loss": 5.0926127433776855,
+ "step": 418
+ },
+ {
+ "epoch": 5.824814329401486,
+ "grad_norm": 0.2821158468723297,
+ "learning_rate": 0.0006,
+ "loss": 5.112299919128418,
+ "step": 419
+ },
+ {
+ "epoch": 5.838794233289646,
+ "grad_norm": 0.29821011424064636,
+ "learning_rate": 0.0006,
+ "loss": 5.091662406921387,
+ "step": 420
+ },
+ {
+ "epoch": 5.852774137177807,
+ "grad_norm": 0.30570563673973083,
+ "learning_rate": 0.0006,
+ "loss": 5.137539863586426,
+ "step": 421
+ },
+ {
+ "epoch": 5.866754041065968,
+ "grad_norm": 0.4029594957828522,
+ "learning_rate": 0.0006,
+ "loss": 5.112751007080078,
+ "step": 422
+ },
+ {
+ "epoch": 5.8807339449541285,
+ "grad_norm": 0.3878514766693115,
+ "learning_rate": 0.0006,
+ "loss": 5.094973564147949,
+ "step": 423
+ },
+ {
+ "epoch": 5.894713848842289,
+ "grad_norm": 0.31936126947402954,
+ "learning_rate": 0.0006,
+ "loss": 5.081070899963379,
+ "step": 424
+ },
+ {
+ "epoch": 5.90869375273045,
+ "grad_norm": 0.3309082090854645,
+ "learning_rate": 0.0006,
+ "loss": 5.06803560256958,
+ "step": 425
+ },
+ {
+ "epoch": 5.922673656618611,
+ "grad_norm": 0.27830439805984497,
+ "learning_rate": 0.0006,
+ "loss": 5.044766426086426,
+ "step": 426
+ },
+ {
+ "epoch": 5.936653560506771,
+ "grad_norm": 0.3301011919975281,
+ "learning_rate": 0.0006,
+ "loss": 5.093942165374756,
+ "step": 427
+ },
+ {
+ "epoch": 5.950633464394932,
+ "grad_norm": 0.40845948457717896,
+ "learning_rate": 0.0006,
+ "loss": 5.0889458656311035,
+ "step": 428
+ },
+ {
+ "epoch": 5.964613368283093,
+ "grad_norm": 0.4412153959274292,
+ "learning_rate": 0.0006,
+ "loss": 5.064834117889404,
+ "step": 429
+ },
+ {
+ "epoch": 5.978593272171254,
+ "grad_norm": 0.3592590093612671,
+ "learning_rate": 0.0006,
+ "loss": 5.066648006439209,
+ "step": 430
+ },
+ {
+ "epoch": 5.992573176059414,
+ "grad_norm": 0.3952840268611908,
+ "learning_rate": 0.0006,
+ "loss": 5.066549301147461,
+ "step": 431
+ },
+ {
+ "epoch": 6.0,
+ "grad_norm": 0.38878682255744934,
+ "learning_rate": 0.0006,
+ "loss": 5.0354323387146,
+ "step": 432
+ },
+ {
+ "epoch": 6.0,
+ "eval_loss": 5.473907947540283,
+ "eval_runtime": 44.5121,
+ "eval_samples_per_second": 54.861,
+ "eval_steps_per_second": 3.437,
+ "step": 432
+ },
+ {
+ "epoch": 6.013979903888161,
+ "grad_norm": 0.42730140686035156,
+ "learning_rate": 0.0006,
+ "loss": 5.048557281494141,
+ "step": 433
+ },
+ {
+ "epoch": 6.0279598077763215,
+ "grad_norm": 0.32713913917541504,
+ "learning_rate": 0.0006,
+ "loss": 5.041255950927734,
+ "step": 434
+ },
+ {
+ "epoch": 6.041939711664482,
+ "grad_norm": 0.32520365715026855,
+ "learning_rate": 0.0006,
+ "loss": 5.043124198913574,
+ "step": 435
+ },
+ {
+ "epoch": 6.055919615552643,
+ "grad_norm": 0.2941839098930359,
+ "learning_rate": 0.0006,
+ "loss": 5.0407304763793945,
+ "step": 436
+ },
+ {
+ "epoch": 6.069899519440804,
+ "grad_norm": 0.3088819682598114,
+ "learning_rate": 0.0006,
+ "loss": 5.020771026611328,
+ "step": 437
+ },
+ {
+ "epoch": 6.083879423328964,
+ "grad_norm": 0.34334254264831543,
+ "learning_rate": 0.0006,
+ "loss": 5.0260009765625,
+ "step": 438
+ },
+ {
+ "epoch": 6.097859327217125,
+ "grad_norm": 0.33016136288642883,
+ "learning_rate": 0.0006,
+ "loss": 4.994412899017334,
+ "step": 439
+ },
+ {
+ "epoch": 6.111839231105286,
+ "grad_norm": 0.2527366280555725,
+ "learning_rate": 0.0006,
+ "loss": 4.997830390930176,
+ "step": 440
+ },
+ {
+ "epoch": 6.1258191349934465,
+ "grad_norm": 0.24742509424686432,
+ "learning_rate": 0.0006,
+ "loss": 5.017087936401367,
+ "step": 441
+ },
+ {
+ "epoch": 6.139799038881607,
+ "grad_norm": 0.22578303515911102,
+ "learning_rate": 0.0006,
+ "loss": 5.000683784484863,
+ "step": 442
+ },
+ {
+ "epoch": 6.153778942769769,
+ "grad_norm": 0.21213896572589874,
+ "learning_rate": 0.0006,
+ "loss": 4.993280410766602,
+ "step": 443
+ },
+ {
+ "epoch": 6.16775884665793,
+ "grad_norm": 0.22559592127799988,
+ "learning_rate": 0.0006,
+ "loss": 5.005735874176025,
+ "step": 444
+ },
+ {
+ "epoch": 6.18173875054609,
+ "grad_norm": 0.18574322760105133,
+ "learning_rate": 0.0006,
+ "loss": 4.996601104736328,
+ "step": 445
+ },
+ {
+ "epoch": 6.195718654434251,
+ "grad_norm": 0.1793852299451828,
+ "learning_rate": 0.0006,
+ "loss": 4.977394104003906,
+ "step": 446
+ },
+ {
+ "epoch": 6.209698558322412,
+ "grad_norm": 0.1851297914981842,
+ "learning_rate": 0.0006,
+ "loss": 4.983541488647461,
+ "step": 447
+ },
+ {
+ "epoch": 6.2236784622105725,
+ "grad_norm": 0.2045268565416336,
+ "learning_rate": 0.0006,
+ "loss": 4.992830276489258,
+ "step": 448
+ },
+ {
+ "epoch": 6.237658366098733,
+ "grad_norm": 0.21707463264465332,
+ "learning_rate": 0.0006,
+ "loss": 4.998589515686035,
+ "step": 449
+ },
+ {
+ "epoch": 6.251638269986894,
+ "grad_norm": 0.2805860638618469,
+ "learning_rate": 0.0006,
+ "loss": 4.973134517669678,
+ "step": 450
+ },
+ {
+ "epoch": 6.265618173875055,
+ "grad_norm": 0.33102089166641235,
+ "learning_rate": 0.0006,
+ "loss": 4.957348823547363,
+ "step": 451
+ },
+ {
+ "epoch": 6.279598077763215,
+ "grad_norm": 0.3763096034526825,
+ "learning_rate": 0.0006,
+ "loss": 5.0133256912231445,
+ "step": 452
+ },
+ {
+ "epoch": 6.293577981651376,
+ "grad_norm": 0.4676196575164795,
+ "learning_rate": 0.0006,
+ "loss": 4.972289562225342,
+ "step": 453
+ },
+ {
+ "epoch": 6.307557885539537,
+ "grad_norm": 0.6158978343009949,
+ "learning_rate": 0.0006,
+ "loss": 4.989326477050781,
+ "step": 454
+ },
+ {
+ "epoch": 6.321537789427698,
+ "grad_norm": 0.537460446357727,
+ "learning_rate": 0.0006,
+ "loss": 5.0210676193237305,
+ "step": 455
+ },
+ {
+ "epoch": 6.335517693315858,
+ "grad_norm": 0.5342532396316528,
+ "learning_rate": 0.0006,
+ "loss": 4.988524436950684,
+ "step": 456
+ },
+ {
+ "epoch": 6.349497597204019,
+ "grad_norm": 0.5736384987831116,
+ "learning_rate": 0.0006,
+ "loss": 4.977508068084717,
+ "step": 457
+ },
+ {
+ "epoch": 6.36347750109218,
+ "grad_norm": 0.6656201481819153,
+ "learning_rate": 0.0006,
+ "loss": 5.047934055328369,
+ "step": 458
+ },
+ {
+ "epoch": 6.3774574049803405,
+ "grad_norm": 0.6388342380523682,
+ "learning_rate": 0.0006,
+ "loss": 5.017617225646973,
+ "step": 459
+ },
+ {
+ "epoch": 6.391437308868501,
+ "grad_norm": 0.6620904207229614,
+ "learning_rate": 0.0006,
+ "loss": 5.032195091247559,
+ "step": 460
+ },
+ {
+ "epoch": 6.405417212756662,
+ "grad_norm": 0.693274974822998,
+ "learning_rate": 0.0006,
+ "loss": 5.02433967590332,
+ "step": 461
+ },
+ {
+ "epoch": 6.419397116644823,
+ "grad_norm": 0.6888924241065979,
+ "learning_rate": 0.0006,
+ "loss": 5.010735511779785,
+ "step": 462
+ },
+ {
+ "epoch": 6.433377020532983,
+ "grad_norm": 0.7181721925735474,
+ "learning_rate": 0.0006,
+ "loss": 5.049690246582031,
+ "step": 463
+ },
+ {
+ "epoch": 6.447356924421145,
+ "grad_norm": 0.7225117087364197,
+ "learning_rate": 0.0006,
+ "loss": 5.031939506530762,
+ "step": 464
+ },
+ {
+ "epoch": 6.461336828309306,
+ "grad_norm": 0.5268304347991943,
+ "learning_rate": 0.0006,
+ "loss": 5.01638126373291,
+ "step": 465
+ },
+ {
+ "epoch": 6.4753167321974665,
+ "grad_norm": 0.38218435645103455,
+ "learning_rate": 0.0006,
+ "loss": 4.997034072875977,
+ "step": 466
+ },
+ {
+ "epoch": 6.489296636085627,
+ "grad_norm": 0.3576396703720093,
+ "learning_rate": 0.0006,
+ "loss": 5.006804943084717,
+ "step": 467
+ },
+ {
+ "epoch": 6.503276539973788,
+ "grad_norm": 0.3305981755256653,
+ "learning_rate": 0.0006,
+ "loss": 4.994671821594238,
+ "step": 468
+ },
+ {
+ "epoch": 6.517256443861949,
+ "grad_norm": 0.3254900574684143,
+ "learning_rate": 0.0006,
+ "loss": 4.9747490882873535,
+ "step": 469
+ },
+ {
+ "epoch": 6.531236347750109,
+ "grad_norm": 0.2655033469200134,
+ "learning_rate": 0.0006,
+ "loss": 5.002863883972168,
+ "step": 470
+ },
+ {
+ "epoch": 6.54521625163827,
+ "grad_norm": 0.2620532810688019,
+ "learning_rate": 0.0006,
+ "loss": 4.9813337326049805,
+ "step": 471
+ },
+ {
+ "epoch": 6.559196155526431,
+ "grad_norm": 0.22128869593143463,
+ "learning_rate": 0.0006,
+ "loss": 4.978368759155273,
+ "step": 472
+ },
+ {
+ "epoch": 6.573176059414592,
+ "grad_norm": 0.22638699412345886,
+ "learning_rate": 0.0006,
+ "loss": 4.944509029388428,
+ "step": 473
+ },
+ {
+ "epoch": 6.587155963302752,
+ "grad_norm": 0.20720207691192627,
+ "learning_rate": 0.0006,
+ "loss": 4.98404598236084,
+ "step": 474
+ },
+ {
+ "epoch": 6.601135867190913,
+ "grad_norm": 0.21577289700508118,
+ "learning_rate": 0.0006,
+ "loss": 4.958878040313721,
+ "step": 475
+ },
+ {
+ "epoch": 6.615115771079074,
+ "grad_norm": 0.22453972697257996,
+ "learning_rate": 0.0006,
+ "loss": 4.935467720031738,
+ "step": 476
+ },
+ {
+ "epoch": 6.6290956749672345,
+ "grad_norm": 0.20757712423801422,
+ "learning_rate": 0.0006,
+ "loss": 4.943334579467773,
+ "step": 477
+ },
+ {
+ "epoch": 6.643075578855395,
+ "grad_norm": 0.22808043658733368,
+ "learning_rate": 0.0006,
+ "loss": 4.936544418334961,
+ "step": 478
+ },
+ {
+ "epoch": 6.657055482743556,
+ "grad_norm": 0.2193756401538849,
+ "learning_rate": 0.0006,
+ "loss": 4.938162326812744,
+ "step": 479
+ },
+ {
+ "epoch": 6.671035386631717,
+ "grad_norm": 0.19677500426769257,
+ "learning_rate": 0.0006,
+ "loss": 4.9026713371276855,
+ "step": 480
+ },
+ {
+ "epoch": 6.685015290519877,
+ "grad_norm": 0.17271658778190613,
+ "learning_rate": 0.0006,
+ "loss": 4.912519454956055,
+ "step": 481
+ },
+ {
+ "epoch": 6.698995194408038,
+ "grad_norm": 0.17551499605178833,
+ "learning_rate": 0.0006,
+ "loss": 4.929941177368164,
+ "step": 482
+ },
+ {
+ "epoch": 6.712975098296199,
+ "grad_norm": 0.1582687348127365,
+ "learning_rate": 0.0006,
+ "loss": 4.908967971801758,
+ "step": 483
+ },
+ {
+ "epoch": 6.72695500218436,
+ "grad_norm": 0.1593410074710846,
+ "learning_rate": 0.0006,
+ "loss": 4.901554107666016,
+ "step": 484
+ },
+ {
+ "epoch": 6.740934906072521,
+ "grad_norm": 0.16746895015239716,
+ "learning_rate": 0.0006,
+ "loss": 4.917915344238281,
+ "step": 485
+ },
+ {
+ "epoch": 6.754914809960681,
+ "grad_norm": 0.17066062986850739,
+ "learning_rate": 0.0006,
+ "loss": 4.912853240966797,
+ "step": 486
+ },
+ {
+ "epoch": 6.768894713848843,
+ "grad_norm": 0.16727769374847412,
+ "learning_rate": 0.0006,
+ "loss": 4.895434856414795,
+ "step": 487
+ },
+ {
+ "epoch": 6.782874617737003,
+ "grad_norm": 0.1784558743238449,
+ "learning_rate": 0.0006,
+ "loss": 4.8805341720581055,
+ "step": 488
+ },
+ {
+ "epoch": 6.796854521625164,
+ "grad_norm": 0.176686093211174,
+ "learning_rate": 0.0006,
+ "loss": 4.855296611785889,
+ "step": 489
+ },
+ {
+ "epoch": 6.810834425513325,
+ "grad_norm": 0.21577849984169006,
+ "learning_rate": 0.0006,
+ "loss": 4.885506629943848,
+ "step": 490
+ },
+ {
+ "epoch": 6.824814329401486,
+ "grad_norm": 0.27615776658058167,
+ "learning_rate": 0.0006,
+ "loss": 4.913756847381592,
+ "step": 491
+ },
+ {
+ "epoch": 6.838794233289646,
+ "grad_norm": 0.3653675615787506,
+ "learning_rate": 0.0006,
+ "loss": 4.880918979644775,
+ "step": 492
+ },
+ {
+ "epoch": 6.852774137177807,
+ "grad_norm": 0.41473883390426636,
+ "learning_rate": 0.0006,
+ "loss": 4.894164562225342,
+ "step": 493
+ },
+ {
+ "epoch": 6.866754041065968,
+ "grad_norm": 0.45850715041160583,
+ "learning_rate": 0.0006,
+ "loss": 4.907922744750977,
+ "step": 494
+ },
+ {
+ "epoch": 6.8807339449541285,
+ "grad_norm": 0.4675290882587433,
+ "learning_rate": 0.0006,
+ "loss": 4.883112907409668,
+ "step": 495
+ },
+ {
+ "epoch": 6.894713848842289,
+ "grad_norm": 0.45795994997024536,
+ "learning_rate": 0.0006,
+ "loss": 4.897843360900879,
+ "step": 496
+ },
+ {
+ "epoch": 6.90869375273045,
+ "grad_norm": 0.46130508184432983,
+ "learning_rate": 0.0006,
+ "loss": 4.890612602233887,
+ "step": 497
+ },
+ {
+ "epoch": 6.922673656618611,
+ "grad_norm": 0.44783803820610046,
+ "learning_rate": 0.0006,
+ "loss": 4.880192756652832,
+ "step": 498
+ },
+ {
+ "epoch": 6.936653560506771,
+ "grad_norm": 0.35361284017562866,
+ "learning_rate": 0.0006,
+ "loss": 4.840778350830078,
+ "step": 499
+ },
+ {
+ "epoch": 6.950633464394932,
+ "grad_norm": 0.34027689695358276,
+ "learning_rate": 0.0006,
+ "loss": 4.871222496032715,
+ "step": 500
+ },
+ {
+ "epoch": 6.964613368283093,
+ "grad_norm": 0.30228909850120544,
+ "learning_rate": 0.0006,
+ "loss": 4.868077278137207,
+ "step": 501
+ },
+ {
+ "epoch": 6.978593272171254,
+ "grad_norm": 0.27706998586654663,
+ "learning_rate": 0.0006,
+ "loss": 4.895936012268066,
+ "step": 502
+ },
+ {
+ "epoch": 6.992573176059414,
+ "grad_norm": 0.3516870439052582,
+ "learning_rate": 0.0006,
+ "loss": 4.824636459350586,
+ "step": 503
+ },
+ {
+ "epoch": 7.0,
+ "grad_norm": 0.36831387877464294,
+ "learning_rate": 0.0006,
+ "loss": 4.874397277832031,
+ "step": 504
+ },
+ {
+ "epoch": 7.0,
+ "eval_loss": 5.176281452178955,
+ "eval_runtime": 44.2386,
+ "eval_samples_per_second": 55.201,
+ "eval_steps_per_second": 3.459,
+ "step": 504
+ },
+ {
+ "epoch": 7.013979903888161,
+ "grad_norm": 0.4265240430831909,
+ "learning_rate": 0.0006,
+ "loss": 4.814333438873291,
+ "step": 505
+ },
+ {
+ "epoch": 7.0279598077763215,
+ "grad_norm": 0.5126975774765015,
+ "learning_rate": 0.0006,
+ "loss": 4.852343559265137,
+ "step": 506
+ },
+ {
+ "epoch": 7.041939711664482,
+ "grad_norm": 0.43080806732177734,
+ "learning_rate": 0.0006,
+ "loss": 4.843439102172852,
+ "step": 507
+ },
+ {
+ "epoch": 7.055919615552643,
+ "grad_norm": 0.43170198798179626,
+ "learning_rate": 0.0006,
+ "loss": 4.845984935760498,
+ "step": 508
+ },
+ {
+ "epoch": 7.069899519440804,
+ "grad_norm": 0.5640552043914795,
+ "learning_rate": 0.0006,
+ "loss": 4.840991973876953,
+ "step": 509
+ },
+ {
+ "epoch": 7.083879423328964,
+ "grad_norm": 0.540381133556366,
+ "learning_rate": 0.0006,
+ "loss": 4.801316738128662,
+ "step": 510
+ },
+ {
+ "epoch": 7.097859327217125,
+ "grad_norm": 0.5412097573280334,
+ "learning_rate": 0.0006,
+ "loss": 4.886598587036133,
+ "step": 511
+ },
+ {
+ "epoch": 7.111839231105286,
+ "grad_norm": 0.630648136138916,
+ "learning_rate": 0.0006,
+ "loss": 4.849774360656738,
+ "step": 512
+ },
+ {
+ "epoch": 7.1258191349934465,
+ "grad_norm": 0.569952130317688,
+ "learning_rate": 0.0006,
+ "loss": 4.870607376098633,
+ "step": 513
+ },
+ {
+ "epoch": 7.139799038881607,
+ "grad_norm": 0.42051541805267334,
+ "learning_rate": 0.0006,
+ "loss": 4.83833122253418,
+ "step": 514
+ },
+ {
+ "epoch": 7.153778942769769,
+ "grad_norm": 0.3930990397930145,
+ "learning_rate": 0.0006,
+ "loss": 4.853984355926514,
+ "step": 515
+ },
+ {
+ "epoch": 7.16775884665793,
+ "grad_norm": 0.512886106967926,
+ "learning_rate": 0.0006,
+ "loss": 4.815458297729492,
+ "step": 516
+ },
+ {
+ "epoch": 7.18173875054609,
+ "grad_norm": 0.42580172419548035,
+ "learning_rate": 0.0006,
+ "loss": 4.825312614440918,
+ "step": 517
+ },
+ {
+ "epoch": 7.195718654434251,
+ "grad_norm": 0.31628182530403137,
+ "learning_rate": 0.0006,
+ "loss": 4.806377410888672,
+ "step": 518
+ },
+ {
+ "epoch": 7.209698558322412,
+ "grad_norm": 0.3109956681728363,
+ "learning_rate": 0.0006,
+ "loss": 4.819339752197266,
+ "step": 519
+ },
+ {
+ "epoch": 7.2236784622105725,
+ "grad_norm": 0.2740071415901184,
+ "learning_rate": 0.0006,
+ "loss": 4.81319522857666,
+ "step": 520
+ },
+ {
+ "epoch": 7.237658366098733,
+ "grad_norm": 0.26441165804862976,
+ "learning_rate": 0.0006,
+ "loss": 4.8107380867004395,
+ "step": 521
+ },
+ {
+ "epoch": 7.251638269986894,
+ "grad_norm": 0.2496110051870346,
+ "learning_rate": 0.0006,
+ "loss": 4.785193920135498,
+ "step": 522
+ },
+ {
+ "epoch": 7.265618173875055,
+ "grad_norm": 0.2565560042858124,
+ "learning_rate": 0.0006,
+ "loss": 4.802750587463379,
+ "step": 523
+ },
+ {
+ "epoch": 7.279598077763215,
+ "grad_norm": 0.2126980572938919,
+ "learning_rate": 0.0006,
+ "loss": 4.763580322265625,
+ "step": 524
+ },
+ {
+ "epoch": 7.293577981651376,
+ "grad_norm": 0.2169921100139618,
+ "learning_rate": 0.0006,
+ "loss": 4.756124973297119,
+ "step": 525
+ },
+ {
+ "epoch": 7.307557885539537,
+ "grad_norm": 0.2372167706489563,
+ "learning_rate": 0.0006,
+ "loss": 4.786888599395752,
+ "step": 526
+ },
+ {
+ "epoch": 7.321537789427698,
+ "grad_norm": 0.2124386429786682,
+ "learning_rate": 0.0006,
+ "loss": 4.777996063232422,
+ "step": 527
+ },
+ {
+ "epoch": 7.335517693315858,
+ "grad_norm": 0.18585442006587982,
+ "learning_rate": 0.0006,
+ "loss": 4.770537853240967,
+ "step": 528
+ },
+ {
+ "epoch": 7.349497597204019,
+ "grad_norm": 0.20515340566635132,
+ "learning_rate": 0.0006,
+ "loss": 4.769230842590332,
+ "step": 529
+ },
+ {
+ "epoch": 7.36347750109218,
+ "grad_norm": 0.19906704127788544,
+ "learning_rate": 0.0006,
+ "loss": 4.752581596374512,
+ "step": 530
+ },
+ {
+ "epoch": 7.3774574049803405,
+ "grad_norm": 0.2030428946018219,
+ "learning_rate": 0.0006,
+ "loss": 4.7353715896606445,
+ "step": 531
+ },
+ {
+ "epoch": 7.391437308868501,
+ "grad_norm": 0.17820630967617035,
+ "learning_rate": 0.0006,
+ "loss": 4.742705345153809,
+ "step": 532
+ },
+ {
+ "epoch": 7.405417212756662,
+ "grad_norm": 0.17642682790756226,
+ "learning_rate": 0.0006,
+ "loss": 4.752669334411621,
+ "step": 533
+ },
+ {
+ "epoch": 7.419397116644823,
+ "grad_norm": 0.18088409304618835,
+ "learning_rate": 0.0006,
+ "loss": 4.734611511230469,
+ "step": 534
+ },
+ {
+ "epoch": 7.433377020532983,
+ "grad_norm": 0.20897020399570465,
+ "learning_rate": 0.0006,
+ "loss": 4.756442070007324,
+ "step": 535
+ },
+ {
+ "epoch": 7.447356924421145,
+ "grad_norm": 0.23166777193546295,
+ "learning_rate": 0.0006,
+ "loss": 4.712922096252441,
+ "step": 536
+ },
+ {
+ "epoch": 7.461336828309306,
+ "grad_norm": 0.2205347716808319,
+ "learning_rate": 0.0006,
+ "loss": 4.75001335144043,
+ "step": 537
+ },
+ {
+ "epoch": 7.4753167321974665,
+ "grad_norm": 0.23868022859096527,
+ "learning_rate": 0.0006,
+ "loss": 4.726134300231934,
+ "step": 538
+ },
+ {
+ "epoch": 7.489296636085627,
+ "grad_norm": 0.2861441373825073,
+ "learning_rate": 0.0006,
+ "loss": 4.754112243652344,
+ "step": 539
+ },
+ {
+ "epoch": 7.503276539973788,
+ "grad_norm": 0.28980305790901184,
+ "learning_rate": 0.0006,
+ "loss": 4.716021537780762,
+ "step": 540
+ },
+ {
+ "epoch": 7.517256443861949,
+ "grad_norm": 0.2784835696220398,
+ "learning_rate": 0.0006,
+ "loss": 4.713929176330566,
+ "step": 541
+ },
+ {
+ "epoch": 7.531236347750109,
+ "grad_norm": 0.2962653934955597,
+ "learning_rate": 0.0006,
+ "loss": 4.711845397949219,
+ "step": 542
+ },
+ {
+ "epoch": 7.54521625163827,
+ "grad_norm": 0.3333161175251007,
+ "learning_rate": 0.0006,
+ "loss": 4.709834575653076,
+ "step": 543
+ },
+ {
+ "epoch": 7.559196155526431,
+ "grad_norm": 0.35304850339889526,
+ "learning_rate": 0.0006,
+ "loss": 4.732914924621582,
+ "step": 544
+ },
+ {
+ "epoch": 7.573176059414592,
+ "grad_norm": 0.4165869355201721,
+ "learning_rate": 0.0006,
+ "loss": 4.716190338134766,
+ "step": 545
+ },
+ {
+ "epoch": 7.587155963302752,
+ "grad_norm": 0.4878059923648834,
+ "learning_rate": 0.0006,
+ "loss": 4.723773002624512,
+ "step": 546
+ },
+ {
+ "epoch": 7.601135867190913,
+ "grad_norm": 0.36643707752227783,
+ "learning_rate": 0.0006,
+ "loss": 4.721458911895752,
+ "step": 547
+ },
+ {
+ "epoch": 7.615115771079074,
+ "grad_norm": 0.4046908915042877,
+ "learning_rate": 0.0006,
+ "loss": 4.715397834777832,
+ "step": 548
+ },
+ {
+ "epoch": 7.6290956749672345,
+ "grad_norm": 0.44426342844963074,
+ "learning_rate": 0.0006,
+ "loss": 4.737357139587402,
+ "step": 549
+ },
+ {
+ "epoch": 7.643075578855395,
+ "grad_norm": 0.4181079864501953,
+ "learning_rate": 0.0006,
+ "loss": 4.731383800506592,
+ "step": 550
+ },
+ {
+ "epoch": 7.657055482743556,
+ "grad_norm": 0.3486088216304779,
+ "learning_rate": 0.0006,
+ "loss": 4.728029727935791,
+ "step": 551
+ },
+ {
+ "epoch": 7.671035386631717,
+ "grad_norm": 0.37150970101356506,
+ "learning_rate": 0.0006,
+ "loss": 4.7083210945129395,
+ "step": 552
+ },
+ {
+ "epoch": 7.685015290519877,
+ "grad_norm": 0.43324410915374756,
+ "learning_rate": 0.0006,
+ "loss": 4.728720664978027,
+ "step": 553
+ },
+ {
+ "epoch": 7.698995194408038,
+ "grad_norm": 0.5026620626449585,
+ "learning_rate": 0.0006,
+ "loss": 4.698156356811523,
+ "step": 554
+ },
+ {
+ "epoch": 7.712975098296199,
+ "grad_norm": 0.4873499274253845,
+ "learning_rate": 0.0006,
+ "loss": 4.7169952392578125,
+ "step": 555
+ },
+ {
+ "epoch": 7.72695500218436,
+ "grad_norm": 0.4285493791103363,
+ "learning_rate": 0.0006,
+ "loss": 4.6877241134643555,
+ "step": 556
+ },
+ {
+ "epoch": 7.740934906072521,
+ "grad_norm": 0.5179854035377502,
+ "learning_rate": 0.0006,
+ "loss": 4.704267501831055,
+ "step": 557
+ },
+ {
+ "epoch": 7.754914809960681,
+ "grad_norm": 0.4642147421836853,
+ "learning_rate": 0.0006,
+ "loss": 4.695004463195801,
+ "step": 558
+ },
+ {
+ "epoch": 7.768894713848843,
+ "grad_norm": 0.47149503231048584,
+ "learning_rate": 0.0006,
+ "loss": 4.694338798522949,
+ "step": 559
+ },
+ {
+ "epoch": 7.782874617737003,
+ "grad_norm": 0.5422149300575256,
+ "learning_rate": 0.0006,
+ "loss": 4.749478340148926,
+ "step": 560
+ },
+ {
+ "epoch": 7.796854521625164,
+ "grad_norm": 0.4360728859901428,
+ "learning_rate": 0.0006,
+ "loss": 4.685191631317139,
+ "step": 561
+ },
+ {
+ "epoch": 7.810834425513325,
+ "grad_norm": 0.4243801534175873,
+ "learning_rate": 0.0006,
+ "loss": 4.69228458404541,
+ "step": 562
+ },
+ {
+ "epoch": 7.824814329401486,
+ "grad_norm": 0.40380290150642395,
+ "learning_rate": 0.0006,
+ "loss": 4.690923690795898,
+ "step": 563
+ },
+ {
+ "epoch": 7.838794233289646,
+ "grad_norm": 0.4352976381778717,
+ "learning_rate": 0.0006,
+ "loss": 4.720489978790283,
+ "step": 564
+ },
+ {
+ "epoch": 7.852774137177807,
+ "grad_norm": 0.44634920358657837,
+ "learning_rate": 0.0006,
+ "loss": 4.683789253234863,
+ "step": 565
+ },
+ {
+ "epoch": 7.866754041065968,
+ "grad_norm": 0.3818186819553375,
+ "learning_rate": 0.0006,
+ "loss": 4.696887016296387,
+ "step": 566
+ },
+ {
+ "epoch": 7.8807339449541285,
+ "grad_norm": 0.35270464420318604,
+ "learning_rate": 0.0006,
+ "loss": 4.715676307678223,
+ "step": 567
+ },
+ {
+ "epoch": 7.894713848842289,
+ "grad_norm": 0.249756321310997,
+ "learning_rate": 0.0006,
+ "loss": 4.672721862792969,
+ "step": 568
+ },
+ {
+ "epoch": 7.90869375273045,
+ "grad_norm": 0.25097888708114624,
+ "learning_rate": 0.0006,
+ "loss": 4.663518905639648,
+ "step": 569
+ },
+ {
+ "epoch": 7.922673656618611,
+ "grad_norm": 0.26563209295272827,
+ "learning_rate": 0.0006,
+ "loss": 4.675405025482178,
+ "step": 570
+ },
+ {
+ "epoch": 7.936653560506771,
+ "grad_norm": 0.26451292634010315,
+ "learning_rate": 0.0006,
+ "loss": 4.651235103607178,
+ "step": 571
+ },
+ {
+ "epoch": 7.950633464394932,
+ "grad_norm": 0.24185842275619507,
+ "learning_rate": 0.0006,
+ "loss": 4.671639919281006,
+ "step": 572
+ },
+ {
+ "epoch": 7.964613368283093,
+ "grad_norm": 0.21506108343601227,
+ "learning_rate": 0.0006,
+ "loss": 4.665352821350098,
+ "step": 573
+ },
+ {
+ "epoch": 7.978593272171254,
+ "grad_norm": 0.24365705251693726,
+ "learning_rate": 0.0006,
+ "loss": 4.663162708282471,
+ "step": 574
+ },
+ {
+ "epoch": 7.992573176059414,
+ "grad_norm": 0.24251042306423187,
+ "learning_rate": 0.0006,
+ "loss": 4.666633605957031,
+ "step": 575
+ },
+ {
+ "epoch": 8.0,
+ "grad_norm": 0.24187657237052917,
+ "learning_rate": 0.0006,
+ "loss": 4.63957405090332,
+ "step": 576
+ },
+ {
+ "epoch": 8.0,
+ "eval_loss": 4.923156261444092,
+ "eval_runtime": 44.1587,
+ "eval_samples_per_second": 55.301,
+ "eval_steps_per_second": 3.465,
+ "step": 576
+ },
+ {
+ "epoch": 8.013979903888162,
+ "grad_norm": 0.21323645114898682,
+ "learning_rate": 0.0006,
+ "loss": 4.636347770690918,
+ "step": 577
+ },
+ {
+ "epoch": 8.027959807776321,
+ "grad_norm": 0.2325759083032608,
+ "learning_rate": 0.0006,
+ "loss": 4.60684871673584,
+ "step": 578
+ },
+ {
+ "epoch": 8.041939711664483,
+ "grad_norm": 0.26741257309913635,
+ "learning_rate": 0.0006,
+ "loss": 4.647780418395996,
+ "step": 579
+ },
+ {
+ "epoch": 8.055919615552643,
+ "grad_norm": 0.285720556974411,
+ "learning_rate": 0.0006,
+ "loss": 4.629637718200684,
+ "step": 580
+ },
+ {
+ "epoch": 8.069899519440805,
+ "grad_norm": 0.2453618347644806,
+ "learning_rate": 0.0006,
+ "loss": 4.62420654296875,
+ "step": 581
+ },
+ {
+ "epoch": 8.083879423328964,
+ "grad_norm": 0.19662636518478394,
+ "learning_rate": 0.0006,
+ "loss": 4.593767166137695,
+ "step": 582
+ },
+ {
+ "epoch": 8.097859327217126,
+ "grad_norm": 0.22731931507587433,
+ "learning_rate": 0.0006,
+ "loss": 4.627089023590088,
+ "step": 583
+ },
+ {
+ "epoch": 8.111839231105286,
+ "grad_norm": 0.24452590942382812,
+ "learning_rate": 0.0006,
+ "loss": 4.613677024841309,
+ "step": 584
+ },
+ {
+ "epoch": 8.125819134993447,
+ "grad_norm": 0.2952791154384613,
+ "learning_rate": 0.0006,
+ "loss": 4.604985237121582,
+ "step": 585
+ },
+ {
+ "epoch": 8.139799038881607,
+ "grad_norm": 0.3184696137905121,
+ "learning_rate": 0.0006,
+ "loss": 4.589205741882324,
+ "step": 586
+ },
+ {
+ "epoch": 8.153778942769769,
+ "grad_norm": 0.2948093116283417,
+ "learning_rate": 0.0006,
+ "loss": 4.605442047119141,
+ "step": 587
+ },
+ {
+ "epoch": 8.167758846657929,
+ "grad_norm": 0.2450508326292038,
+ "learning_rate": 0.0006,
+ "loss": 4.615349292755127,
+ "step": 588
+ },
+ {
+ "epoch": 8.18173875054609,
+ "grad_norm": 0.25664836168289185,
+ "learning_rate": 0.0006,
+ "loss": 4.592251777648926,
+ "step": 589
+ },
+ {
+ "epoch": 8.19571865443425,
+ "grad_norm": 0.24479512870311737,
+ "learning_rate": 0.0006,
+ "loss": 4.6145920753479,
+ "step": 590
+ },
+ {
+ "epoch": 8.209698558322412,
+ "grad_norm": 0.24395205080509186,
+ "learning_rate": 0.0006,
+ "loss": 4.600954055786133,
+ "step": 591
+ },
+ {
+ "epoch": 8.223678462210572,
+ "grad_norm": 0.21804189682006836,
+ "learning_rate": 0.0006,
+ "loss": 4.607785224914551,
+ "step": 592
+ },
+ {
+ "epoch": 8.237658366098733,
+ "grad_norm": 0.20951785147190094,
+ "learning_rate": 0.0006,
+ "loss": 4.58140754699707,
+ "step": 593
+ },
+ {
+ "epoch": 8.251638269986893,
+ "grad_norm": 0.20415149629116058,
+ "learning_rate": 0.0006,
+ "loss": 4.593405723571777,
+ "step": 594
+ },
+ {
+ "epoch": 8.265618173875055,
+ "grad_norm": 0.19210249185562134,
+ "learning_rate": 0.0006,
+ "loss": 4.603294372558594,
+ "step": 595
+ },
+ {
+ "epoch": 8.279598077763215,
+ "grad_norm": 0.20719751715660095,
+ "learning_rate": 0.0006,
+ "loss": 4.55255651473999,
+ "step": 596
+ },
+ {
+ "epoch": 8.293577981651376,
+ "grad_norm": 0.20101022720336914,
+ "learning_rate": 0.0006,
+ "loss": 4.5928192138671875,
+ "step": 597
+ },
+ {
+ "epoch": 8.307557885539538,
+ "grad_norm": 0.19254222512245178,
+ "learning_rate": 0.0006,
+ "loss": 4.590397834777832,
+ "step": 598
+ },
+ {
+ "epoch": 8.321537789427698,
+ "grad_norm": 0.23234105110168457,
+ "learning_rate": 0.0006,
+ "loss": 4.5987677574157715,
+ "step": 599
+ },
+ {
+ "epoch": 8.33551769331586,
+ "grad_norm": 0.2537451982498169,
+ "learning_rate": 0.0006,
+ "loss": 4.543115615844727,
+ "step": 600
+ },
+ {
+ "epoch": 8.349497597204019,
+ "grad_norm": 0.29171040654182434,
+ "learning_rate": 0.0006,
+ "loss": 4.597387313842773,
+ "step": 601
+ },
+ {
+ "epoch": 8.36347750109218,
+ "grad_norm": 0.3035930097103119,
+ "learning_rate": 0.0006,
+ "loss": 4.566247463226318,
+ "step": 602
+ },
+ {
+ "epoch": 8.37745740498034,
+ "grad_norm": 0.2826756238937378,
+ "learning_rate": 0.0006,
+ "loss": 4.57047176361084,
+ "step": 603
+ },
+ {
+ "epoch": 8.391437308868502,
+ "grad_norm": 0.2959657609462738,
+ "learning_rate": 0.0006,
+ "loss": 4.582820892333984,
+ "step": 604
+ },
+ {
+ "epoch": 8.405417212756662,
+ "grad_norm": 0.3180356025695801,
+ "learning_rate": 0.0006,
+ "loss": 4.5573272705078125,
+ "step": 605
+ },
+ {
+ "epoch": 8.419397116644824,
+ "grad_norm": 0.3617221713066101,
+ "learning_rate": 0.0006,
+ "loss": 4.593079090118408,
+ "step": 606
+ },
+ {
+ "epoch": 8.433377020532983,
+ "grad_norm": 0.35198062658309937,
+ "learning_rate": 0.0006,
+ "loss": 4.615298271179199,
+ "step": 607
+ },
+ {
+ "epoch": 8.447356924421145,
+ "grad_norm": 0.3944903314113617,
+ "learning_rate": 0.0006,
+ "loss": 4.561809539794922,
+ "step": 608
+ },
+ {
+ "epoch": 8.461336828309305,
+ "grad_norm": 0.4525868594646454,
+ "learning_rate": 0.0006,
+ "loss": 4.613105773925781,
+ "step": 609
+ },
+ {
+ "epoch": 8.475316732197467,
+ "grad_norm": 0.4915139079093933,
+ "learning_rate": 0.0006,
+ "loss": 4.566202163696289,
+ "step": 610
+ },
+ {
+ "epoch": 8.489296636085626,
+ "grad_norm": 0.49231988191604614,
+ "learning_rate": 0.0006,
+ "loss": 4.556222915649414,
+ "step": 611
+ },
+ {
+ "epoch": 8.503276539973788,
+ "grad_norm": 0.43036946654319763,
+ "learning_rate": 0.0006,
+ "loss": 4.55517578125,
+ "step": 612
+ },
+ {
+ "epoch": 8.517256443861948,
+ "grad_norm": 0.42405328154563904,
+ "learning_rate": 0.0006,
+ "loss": 4.574039936065674,
+ "step": 613
+ },
+ {
+ "epoch": 8.53123634775011,
+ "grad_norm": 0.3955961763858795,
+ "learning_rate": 0.0006,
+ "loss": 4.6082611083984375,
+ "step": 614
+ },
+ {
+ "epoch": 8.54521625163827,
+ "grad_norm": 0.4377101957798004,
+ "learning_rate": 0.0006,
+ "loss": 4.555740833282471,
+ "step": 615
+ },
+ {
+ "epoch": 8.55919615552643,
+ "grad_norm": 0.4601984918117523,
+ "learning_rate": 0.0006,
+ "loss": 4.553995132446289,
+ "step": 616
+ },
+ {
+ "epoch": 8.57317605941459,
+ "grad_norm": 0.42025700211524963,
+ "learning_rate": 0.0006,
+ "loss": 4.567340850830078,
+ "step": 617
+ },
+ {
+ "epoch": 8.587155963302752,
+ "grad_norm": 0.35569432377815247,
+ "learning_rate": 0.0006,
+ "loss": 4.570140361785889,
+ "step": 618
+ },
+ {
+ "epoch": 8.601135867190912,
+ "grad_norm": 0.37940406799316406,
+ "learning_rate": 0.0006,
+ "loss": 4.581291198730469,
+ "step": 619
+ },
+ {
+ "epoch": 8.615115771079074,
+ "grad_norm": 0.3658490777015686,
+ "learning_rate": 0.0006,
+ "loss": 4.55476188659668,
+ "step": 620
+ },
+ {
+ "epoch": 8.629095674967235,
+ "grad_norm": 0.2908247113227844,
+ "learning_rate": 0.0006,
+ "loss": 4.564087867736816,
+ "step": 621
+ },
+ {
+ "epoch": 8.643075578855395,
+ "grad_norm": 0.29961925745010376,
+ "learning_rate": 0.0006,
+ "loss": 4.556543350219727,
+ "step": 622
+ },
+ {
+ "epoch": 8.657055482743557,
+ "grad_norm": 0.3144846558570862,
+ "learning_rate": 0.0006,
+ "loss": 4.553670883178711,
+ "step": 623
+ },
+ {
+ "epoch": 8.671035386631717,
+ "grad_norm": 0.2845900356769562,
+ "learning_rate": 0.0006,
+ "loss": 4.567296981811523,
+ "step": 624
+ },
+ {
+ "epoch": 8.685015290519878,
+ "grad_norm": 0.253591388463974,
+ "learning_rate": 0.0006,
+ "loss": 4.554507255554199,
+ "step": 625
+ },
+ {
+ "epoch": 8.698995194408038,
+ "grad_norm": 0.2563088536262512,
+ "learning_rate": 0.0006,
+ "loss": 4.542218208312988,
+ "step": 626
+ },
+ {
+ "epoch": 8.7129750982962,
+ "grad_norm": 0.26058217883110046,
+ "learning_rate": 0.0006,
+ "loss": 4.535512447357178,
+ "step": 627
+ },
+ {
+ "epoch": 8.72695500218436,
+ "grad_norm": 0.20749829709529877,
+ "learning_rate": 0.0006,
+ "loss": 4.516959190368652,
+ "step": 628
+ },
+ {
+ "epoch": 8.740934906072521,
+ "grad_norm": 0.2034810334444046,
+ "learning_rate": 0.0006,
+ "loss": 4.55794095993042,
+ "step": 629
+ },
+ {
+ "epoch": 8.754914809960681,
+ "grad_norm": 0.18418121337890625,
+ "learning_rate": 0.0006,
+ "loss": 4.5421247482299805,
+ "step": 630
+ },
+ {
+ "epoch": 8.768894713848843,
+ "grad_norm": 0.20551933348178864,
+ "learning_rate": 0.0006,
+ "loss": 4.50805139541626,
+ "step": 631
+ },
+ {
+ "epoch": 8.782874617737003,
+ "grad_norm": 0.21615999937057495,
+ "learning_rate": 0.0006,
+ "loss": 4.520708084106445,
+ "step": 632
+ },
+ {
+ "epoch": 8.796854521625164,
+ "grad_norm": 0.24864810705184937,
+ "learning_rate": 0.0006,
+ "loss": 4.509330749511719,
+ "step": 633
+ },
+ {
+ "epoch": 8.810834425513324,
+ "grad_norm": 0.2573665380477905,
+ "learning_rate": 0.0006,
+ "loss": 4.531505584716797,
+ "step": 634
+ },
+ {
+ "epoch": 8.824814329401486,
+ "grad_norm": 0.22452878952026367,
+ "learning_rate": 0.0006,
+ "loss": 4.529216289520264,
+ "step": 635
+ },
+ {
+ "epoch": 8.838794233289645,
+ "grad_norm": 0.19727355241775513,
+ "learning_rate": 0.0006,
+ "loss": 4.519906520843506,
+ "step": 636
+ },
+ {
+ "epoch": 8.852774137177807,
+ "grad_norm": 0.19937913119792938,
+ "learning_rate": 0.0006,
+ "loss": 4.536892414093018,
+ "step": 637
+ },
+ {
+ "epoch": 8.866754041065967,
+ "grad_norm": 0.2070389986038208,
+ "learning_rate": 0.0006,
+ "loss": 4.51191520690918,
+ "step": 638
+ },
+ {
+ "epoch": 8.880733944954128,
+ "grad_norm": 0.2293873429298401,
+ "learning_rate": 0.0006,
+ "loss": 4.505377769470215,
+ "step": 639
+ },
+ {
+ "epoch": 8.89471384884229,
+ "grad_norm": 0.21285250782966614,
+ "learning_rate": 0.0006,
+ "loss": 4.5138959884643555,
+ "step": 640
+ },
+ {
+ "epoch": 8.90869375273045,
+ "grad_norm": 0.19487562775611877,
+ "learning_rate": 0.0006,
+ "loss": 4.506108283996582,
+ "step": 641
+ },
+ {
+ "epoch": 8.922673656618612,
+ "grad_norm": 0.21986965835094452,
+ "learning_rate": 0.0006,
+ "loss": 4.506397247314453,
+ "step": 642
+ },
+ {
+ "epoch": 8.936653560506771,
+ "grad_norm": 0.20763885974884033,
+ "learning_rate": 0.0006,
+ "loss": 4.508007049560547,
+ "step": 643
+ },
+ {
+ "epoch": 8.950633464394933,
+ "grad_norm": 0.22858479619026184,
+ "learning_rate": 0.0006,
+ "loss": 4.520846366882324,
+ "step": 644
+ },
+ {
+ "epoch": 8.964613368283093,
+ "grad_norm": 0.23923712968826294,
+ "learning_rate": 0.0006,
+ "loss": 4.535306930541992,
+ "step": 645
+ },
+ {
+ "epoch": 8.978593272171254,
+ "grad_norm": 0.23717579245567322,
+ "learning_rate": 0.0006,
+ "loss": 4.485929489135742,
+ "step": 646
+ },
+ {
+ "epoch": 8.992573176059414,
+ "grad_norm": 0.24033977091312408,
+ "learning_rate": 0.0006,
+ "loss": 4.508999824523926,
+ "step": 647
+ },
+ {
+ "epoch": 9.0,
+ "grad_norm": 0.22432062029838562,
+ "learning_rate": 0.0006,
+ "loss": 4.473136901855469,
+ "step": 648
+ },
+ {
+ "epoch": 9.0,
+ "eval_loss": 4.735903263092041,
+ "eval_runtime": 44.2163,
+ "eval_samples_per_second": 55.228,
+ "eval_steps_per_second": 3.46,
+ "step": 648
+ },
+ {
+ "epoch": 9.013979903888162,
+ "grad_norm": 0.22491489350795746,
+ "learning_rate": 0.0006,
+ "loss": 4.468614101409912,
+ "step": 649
+ },
+ {
+ "epoch": 9.027959807776321,
+ "grad_norm": 0.255759060382843,
+ "learning_rate": 0.0006,
+ "loss": 4.516196250915527,
+ "step": 650
+ },
+ {
+ "epoch": 9.041939711664483,
+ "grad_norm": 0.2591100335121155,
+ "learning_rate": 0.0006,
+ "loss": 4.478276252746582,
+ "step": 651
+ },
+ {
+ "epoch": 9.055919615552643,
+ "grad_norm": 0.30472296476364136,
+ "learning_rate": 0.0006,
+ "loss": 4.479726791381836,
+ "step": 652
+ },
+ {
+ "epoch": 9.069899519440805,
+ "grad_norm": 0.2840559780597687,
+ "learning_rate": 0.0006,
+ "loss": 4.4437384605407715,
+ "step": 653
+ },
+ {
+ "epoch": 9.083879423328964,
+ "grad_norm": 0.2695577144622803,
+ "learning_rate": 0.0006,
+ "loss": 4.476065635681152,
+ "step": 654
+ },
+ {
+ "epoch": 9.097859327217126,
+ "grad_norm": 0.27912381291389465,
+ "learning_rate": 0.0006,
+ "loss": 4.484747409820557,
+ "step": 655
+ },
+ {
+ "epoch": 9.111839231105286,
+ "grad_norm": 0.3091907501220703,
+ "learning_rate": 0.0006,
+ "loss": 4.449443817138672,
+ "step": 656
+ },
+ {
+ "epoch": 9.125819134993447,
+ "grad_norm": 0.30756646394729614,
+ "learning_rate": 0.0006,
+ "loss": 4.496490001678467,
+ "step": 657
+ },
+ {
+ "epoch": 9.139799038881607,
+ "grad_norm": 0.305698037147522,
+ "learning_rate": 0.0006,
+ "loss": 4.466765880584717,
+ "step": 658
+ },
+ {
+ "epoch": 9.153778942769769,
+ "grad_norm": 0.3031201660633087,
+ "learning_rate": 0.0006,
+ "loss": 4.462430953979492,
+ "step": 659
+ },
+ {
+ "epoch": 9.167758846657929,
+ "grad_norm": 0.32725608348846436,
+ "learning_rate": 0.0006,
+ "loss": 4.479879379272461,
+ "step": 660
+ },
+ {
+ "epoch": 9.18173875054609,
+ "grad_norm": 0.31773585081100464,
+ "learning_rate": 0.0006,
+ "loss": 4.473912239074707,
+ "step": 661
+ },
+ {
+ "epoch": 9.19571865443425,
+ "grad_norm": 0.30025365948677063,
+ "learning_rate": 0.0006,
+ "loss": 4.476703643798828,
+ "step": 662
+ },
+ {
+ "epoch": 9.209698558322412,
+ "grad_norm": 0.3177371025085449,
+ "learning_rate": 0.0006,
+ "loss": 4.439765930175781,
+ "step": 663
+ },
+ {
+ "epoch": 9.223678462210572,
+ "grad_norm": 0.3060745894908905,
+ "learning_rate": 0.0006,
+ "loss": 4.487849235534668,
+ "step": 664
+ },
+ {
+ "epoch": 9.237658366098733,
+ "grad_norm": 0.33287373185157776,
+ "learning_rate": 0.0006,
+ "loss": 4.443496227264404,
+ "step": 665
+ },
+ {
+ "epoch": 9.251638269986893,
+ "grad_norm": 0.3758000433444977,
+ "learning_rate": 0.0006,
+ "loss": 4.478017330169678,
+ "step": 666
+ },
+ {
+ "epoch": 9.265618173875055,
+ "grad_norm": 0.32124510407447815,
+ "learning_rate": 0.0006,
+ "loss": 4.4092206954956055,
+ "step": 667
+ },
+ {
+ "epoch": 9.279598077763215,
+ "grad_norm": 0.2786794602870941,
+ "learning_rate": 0.0006,
+ "loss": 4.432734489440918,
+ "step": 668
+ },
+ {
+ "epoch": 9.293577981651376,
+ "grad_norm": 0.35042962431907654,
+ "learning_rate": 0.0006,
+ "loss": 4.462737083435059,
+ "step": 669
+ },
+ {
+ "epoch": 9.307557885539538,
+ "grad_norm": 0.4080469310283661,
+ "learning_rate": 0.0006,
+ "loss": 4.429462432861328,
+ "step": 670
+ },
+ {
+ "epoch": 9.321537789427698,
+ "grad_norm": 0.465158075094223,
+ "learning_rate": 0.0006,
+ "loss": 4.465776443481445,
+ "step": 671
+ },
+ {
+ "epoch": 9.33551769331586,
+ "grad_norm": 0.44833582639694214,
+ "learning_rate": 0.0006,
+ "loss": 4.454195976257324,
+ "step": 672
+ },
+ {
+ "epoch": 9.349497597204019,
+ "grad_norm": 0.451052188873291,
+ "learning_rate": 0.0006,
+ "loss": 4.456139087677002,
+ "step": 673
+ },
+ {
+ "epoch": 9.36347750109218,
+ "grad_norm": 0.3759656250476837,
+ "learning_rate": 0.0006,
+ "loss": 4.461119651794434,
+ "step": 674
+ },
+ {
+ "epoch": 9.37745740498034,
+ "grad_norm": 0.514560341835022,
+ "learning_rate": 0.0006,
+ "loss": 4.49595832824707,
+ "step": 675
+ },
+ {
+ "epoch": 9.391437308868502,
+ "grad_norm": 0.5650647282600403,
+ "learning_rate": 0.0006,
+ "loss": 4.461362838745117,
+ "step": 676
+ },
+ {
+ "epoch": 9.405417212756662,
+ "grad_norm": 0.4218835234642029,
+ "learning_rate": 0.0006,
+ "loss": 4.469146728515625,
+ "step": 677
+ },
+ {
+ "epoch": 9.419397116644824,
+ "grad_norm": 0.4169512689113617,
+ "learning_rate": 0.0006,
+ "loss": 4.470132827758789,
+ "step": 678
+ },
+ {
+ "epoch": 9.433377020532983,
+ "grad_norm": 0.3772219717502594,
+ "learning_rate": 0.0006,
+ "loss": 4.4742608070373535,
+ "step": 679
+ },
+ {
+ "epoch": 9.447356924421145,
+ "grad_norm": 0.35755908489227295,
+ "learning_rate": 0.0006,
+ "loss": 4.461928367614746,
+ "step": 680
+ },
+ {
+ "epoch": 9.461336828309305,
+ "grad_norm": 0.3141227662563324,
+ "learning_rate": 0.0006,
+ "loss": 4.491983413696289,
+ "step": 681
+ },
+ {
+ "epoch": 9.475316732197467,
+ "grad_norm": 0.282461017370224,
+ "learning_rate": 0.0006,
+ "loss": 4.460200309753418,
+ "step": 682
+ },
+ {
+ "epoch": 9.489296636085626,
+ "grad_norm": 0.27174389362335205,
+ "learning_rate": 0.0006,
+ "loss": 4.416125297546387,
+ "step": 683
+ },
+ {
+ "epoch": 9.503276539973788,
+ "grad_norm": 0.24570637941360474,
+ "learning_rate": 0.0006,
+ "loss": 4.4451093673706055,
+ "step": 684
+ },
+ {
+ "epoch": 9.517256443861948,
+ "grad_norm": 0.2741486132144928,
+ "learning_rate": 0.0006,
+ "loss": 4.453263282775879,
+ "step": 685
+ },
+ {
+ "epoch": 9.53123634775011,
+ "grad_norm": 0.24753718078136444,
+ "learning_rate": 0.0006,
+ "loss": 4.483033180236816,
+ "step": 686
+ },
+ {
+ "epoch": 9.54521625163827,
+ "grad_norm": 0.24288412928581238,
+ "learning_rate": 0.0006,
+ "loss": 4.452961444854736,
+ "step": 687
+ },
+ {
+ "epoch": 9.55919615552643,
+ "grad_norm": 0.21554753184318542,
+ "learning_rate": 0.0006,
+ "loss": 4.476005554199219,
+ "step": 688
+ },
+ {
+ "epoch": 9.57317605941459,
+ "grad_norm": 0.22775942087173462,
+ "learning_rate": 0.0006,
+ "loss": 4.4479193687438965,
+ "step": 689
+ },
+ {
+ "epoch": 9.587155963302752,
+ "grad_norm": 0.2610701024532318,
+ "learning_rate": 0.0006,
+ "loss": 4.474987506866455,
+ "step": 690
+ },
+ {
+ "epoch": 9.601135867190912,
+ "grad_norm": 0.2394690215587616,
+ "learning_rate": 0.0006,
+ "loss": 4.444857597351074,
+ "step": 691
+ },
+ {
+ "epoch": 9.615115771079074,
+ "grad_norm": 0.20868559181690216,
+ "learning_rate": 0.0006,
+ "loss": 4.4220709800720215,
+ "step": 692
+ },
+ {
+ "epoch": 9.629095674967235,
+ "grad_norm": 0.21869882941246033,
+ "learning_rate": 0.0006,
+ "loss": 4.451737403869629,
+ "step": 693
+ },
+ {
+ "epoch": 9.643075578855395,
+ "grad_norm": 0.1802823394536972,
+ "learning_rate": 0.0006,
+ "loss": 4.409085273742676,
+ "step": 694
+ },
+ {
+ "epoch": 9.657055482743557,
+ "grad_norm": 0.17046281695365906,
+ "learning_rate": 0.0006,
+ "loss": 4.424643516540527,
+ "step": 695
+ },
+ {
+ "epoch": 9.671035386631717,
+ "grad_norm": 0.19561922550201416,
+ "learning_rate": 0.0006,
+ "loss": 4.412302017211914,
+ "step": 696
+ },
+ {
+ "epoch": 9.685015290519878,
+ "grad_norm": 0.21928799152374268,
+ "learning_rate": 0.0006,
+ "loss": 4.427582263946533,
+ "step": 697
+ },
+ {
+ "epoch": 9.698995194408038,
+ "grad_norm": 0.244873046875,
+ "learning_rate": 0.0006,
+ "loss": 4.431827545166016,
+ "step": 698
+ },
+ {
+ "epoch": 9.7129750982962,
+ "grad_norm": 0.2799488604068756,
+ "learning_rate": 0.0006,
+ "loss": 4.407991409301758,
+ "step": 699
+ },
+ {
+ "epoch": 9.72695500218436,
+ "grad_norm": 0.2699538767337799,
+ "learning_rate": 0.0006,
+ "loss": 4.412313461303711,
+ "step": 700
+ },
+ {
+ "epoch": 9.740934906072521,
+ "grad_norm": 0.22293835878372192,
+ "learning_rate": 0.0006,
+ "loss": 4.423369884490967,
+ "step": 701
+ },
+ {
+ "epoch": 9.754914809960681,
+ "grad_norm": 0.21554361283779144,
+ "learning_rate": 0.0006,
+ "loss": 4.42026948928833,
+ "step": 702
+ },
+ {
+ "epoch": 9.768894713848843,
+ "grad_norm": 0.22135840356349945,
+ "learning_rate": 0.0006,
+ "loss": 4.400010108947754,
+ "step": 703
+ },
+ {
+ "epoch": 9.782874617737003,
+ "grad_norm": 0.2169952541589737,
+ "learning_rate": 0.0006,
+ "loss": 4.394582271575928,
+ "step": 704
+ },
+ {
+ "epoch": 9.796854521625164,
+ "grad_norm": 0.18913042545318604,
+ "learning_rate": 0.0006,
+ "loss": 4.395880699157715,
+ "step": 705
+ },
+ {
+ "epoch": 9.810834425513324,
+ "grad_norm": 0.191524475812912,
+ "learning_rate": 0.0006,
+ "loss": 4.378962516784668,
+ "step": 706
+ },
+ {
+ "epoch": 9.824814329401486,
+ "grad_norm": 0.20057640969753265,
+ "learning_rate": 0.0006,
+ "loss": 4.431066513061523,
+ "step": 707
+ },
+ {
+ "epoch": 9.838794233289645,
+ "grad_norm": 0.21670377254486084,
+ "learning_rate": 0.0006,
+ "loss": 4.364682197570801,
+ "step": 708
+ },
+ {
+ "epoch": 9.852774137177807,
+ "grad_norm": 0.21653099358081818,
+ "learning_rate": 0.0006,
+ "loss": 4.4050445556640625,
+ "step": 709
+ },
+ {
+ "epoch": 9.866754041065967,
+ "grad_norm": 0.2217673808336258,
+ "learning_rate": 0.0006,
+ "loss": 4.423664093017578,
+ "step": 710
+ },
+ {
+ "epoch": 9.880733944954128,
+ "grad_norm": 0.251078337430954,
+ "learning_rate": 0.0006,
+ "loss": 4.405768394470215,
+ "step": 711
+ },
+ {
+ "epoch": 9.89471384884229,
+ "grad_norm": 0.28962627053260803,
+ "learning_rate": 0.0006,
+ "loss": 4.421207427978516,
+ "step": 712
+ },
+ {
+ "epoch": 9.90869375273045,
+ "grad_norm": 0.3478074371814728,
+ "learning_rate": 0.0006,
+ "loss": 4.414942741394043,
+ "step": 713
+ },
+ {
+ "epoch": 9.922673656618612,
+ "grad_norm": 0.40396368503570557,
+ "learning_rate": 0.0006,
+ "loss": 4.415163993835449,
+ "step": 714
+ },
+ {
+ "epoch": 9.936653560506771,
+ "grad_norm": 0.3689858019351959,
+ "learning_rate": 0.0006,
+ "loss": 4.381345272064209,
+ "step": 715
+ },
+ {
+ "epoch": 9.950633464394933,
+ "grad_norm": 0.344868004322052,
+ "learning_rate": 0.0006,
+ "loss": 4.433088302612305,
+ "step": 716
+ },
+ {
+ "epoch": 9.964613368283093,
+ "grad_norm": 0.37976378202438354,
+ "learning_rate": 0.0006,
+ "loss": 4.431371212005615,
+ "step": 717
+ },
+ {
+ "epoch": 9.978593272171254,
+ "grad_norm": 0.4354130029678345,
+ "learning_rate": 0.0006,
+ "loss": 4.434148788452148,
+ "step": 718
+ },
+ {
+ "epoch": 9.992573176059414,
+ "grad_norm": 0.35859373211860657,
+ "learning_rate": 0.0006,
+ "loss": 4.428055763244629,
+ "step": 719
+ },
+ {
+ "epoch": 10.0,
+ "grad_norm": 0.3365023732185364,
+ "learning_rate": 0.0006,
+ "loss": 4.3888654708862305,
+ "step": 720
+ },
+ {
+ "epoch": 10.0,
+ "eval_loss": 4.638620853424072,
+ "eval_runtime": 44.3054,
+ "eval_samples_per_second": 55.117,
+ "eval_steps_per_second": 3.453,
+ "step": 720
+ },
+ {
+ "epoch": 10.013979903888162,
+ "grad_norm": 0.3267960250377655,
+ "learning_rate": 0.0006,
+ "loss": 4.386068344116211,
+ "step": 721
+ },
+ {
+ "epoch": 10.027959807776321,
+ "grad_norm": 0.33440953493118286,
+ "learning_rate": 0.0006,
+ "loss": 4.397515296936035,
+ "step": 722
+ },
+ {
+ "epoch": 10.041939711664483,
+ "grad_norm": 0.30047518014907837,
+ "learning_rate": 0.0006,
+ "loss": 4.398358345031738,
+ "step": 723
+ },
+ {
+ "epoch": 10.055919615552643,
+ "grad_norm": 0.2912217378616333,
+ "learning_rate": 0.0006,
+ "loss": 4.341166973114014,
+ "step": 724
+ },
+ {
+ "epoch": 10.069899519440805,
+ "grad_norm": 0.3199564218521118,
+ "learning_rate": 0.0006,
+ "loss": 4.388717174530029,
+ "step": 725
+ },
+ {
+ "epoch": 10.083879423328964,
+ "grad_norm": 0.2765582799911499,
+ "learning_rate": 0.0006,
+ "loss": 4.392992973327637,
+ "step": 726
+ },
+ {
+ "epoch": 10.097859327217126,
+ "grad_norm": 0.27138450741767883,
+ "learning_rate": 0.0006,
+ "loss": 4.382307529449463,
+ "step": 727
+ },
+ {
+ "epoch": 10.111839231105286,
+ "grad_norm": 0.29230645298957825,
+ "learning_rate": 0.0006,
+ "loss": 4.357486724853516,
+ "step": 728
+ },
+ {
+ "epoch": 10.125819134993447,
+ "grad_norm": 0.3127598464488983,
+ "learning_rate": 0.0006,
+ "loss": 4.39072322845459,
+ "step": 729
+ },
+ {
+ "epoch": 10.139799038881607,
+ "grad_norm": 0.3230913281440735,
+ "learning_rate": 0.0006,
+ "loss": 4.35037899017334,
+ "step": 730
+ },
+ {
+ "epoch": 10.153778942769769,
+ "grad_norm": 0.333675354719162,
+ "learning_rate": 0.0006,
+ "loss": 4.378030776977539,
+ "step": 731
+ },
+ {
+ "epoch": 10.167758846657929,
+ "grad_norm": 0.30325770378112793,
+ "learning_rate": 0.0006,
+ "loss": 4.372736930847168,
+ "step": 732
+ },
+ {
+ "epoch": 10.18173875054609,
+ "grad_norm": 0.2888163924217224,
+ "learning_rate": 0.0006,
+ "loss": 4.397604942321777,
+ "step": 733
+ },
+ {
+ "epoch": 10.19571865443425,
+ "grad_norm": 0.3378832936286926,
+ "learning_rate": 0.0006,
+ "loss": 4.395705223083496,
+ "step": 734
+ },
+ {
+ "epoch": 10.209698558322412,
+ "grad_norm": 0.30980268120765686,
+ "learning_rate": 0.0006,
+ "loss": 4.3861212730407715,
+ "step": 735
+ },
+ {
+ "epoch": 10.223678462210572,
+ "grad_norm": 0.2965783178806305,
+ "learning_rate": 0.0006,
+ "loss": 4.394898414611816,
+ "step": 736
+ },
+ {
+ "epoch": 10.237658366098733,
+ "grad_norm": 0.2818217873573303,
+ "learning_rate": 0.0006,
+ "loss": 4.36171817779541,
+ "step": 737
+ },
+ {
+ "epoch": 10.251638269986893,
+ "grad_norm": 0.2418123185634613,
+ "learning_rate": 0.0006,
+ "loss": 4.370945930480957,
+ "step": 738
+ },
+ {
+ "epoch": 10.265618173875055,
+ "grad_norm": 0.22372810542583466,
+ "learning_rate": 0.0006,
+ "loss": 4.354825973510742,
+ "step": 739
+ },
+ {
+ "epoch": 10.279598077763215,
+ "grad_norm": 0.238066166639328,
+ "learning_rate": 0.0006,
+ "loss": 4.376237392425537,
+ "step": 740
+ },
+ {
+ "epoch": 10.293577981651376,
+ "grad_norm": 0.22352449595928192,
+ "learning_rate": 0.0006,
+ "loss": 4.317084312438965,
+ "step": 741
+ },
+ {
+ "epoch": 10.307557885539538,
+ "grad_norm": 0.21685205399990082,
+ "learning_rate": 0.0006,
+ "loss": 4.335271835327148,
+ "step": 742
+ },
+ {
+ "epoch": 10.321537789427698,
+ "grad_norm": 0.19584694504737854,
+ "learning_rate": 0.0006,
+ "loss": 4.357963562011719,
+ "step": 743
+ },
+ {
+ "epoch": 10.33551769331586,
+ "grad_norm": 0.20373336970806122,
+ "learning_rate": 0.0006,
+ "loss": 4.401963233947754,
+ "step": 744
+ },
+ {
+ "epoch": 10.349497597204019,
+ "grad_norm": 0.2247837632894516,
+ "learning_rate": 0.0006,
+ "loss": 4.357202529907227,
+ "step": 745
+ },
+ {
+ "epoch": 10.36347750109218,
+ "grad_norm": 0.2416863739490509,
+ "learning_rate": 0.0006,
+ "loss": 4.364739418029785,
+ "step": 746
+ },
+ {
+ "epoch": 10.37745740498034,
+ "grad_norm": 0.22281162440776825,
+ "learning_rate": 0.0006,
+ "loss": 4.351607799530029,
+ "step": 747
+ },
+ {
+ "epoch": 10.391437308868502,
+ "grad_norm": 0.20751096308231354,
+ "learning_rate": 0.0006,
+ "loss": 4.370017051696777,
+ "step": 748
+ },
+ {
+ "epoch": 10.405417212756662,
+ "grad_norm": 0.19178363680839539,
+ "learning_rate": 0.0006,
+ "loss": 4.360328674316406,
+ "step": 749
+ },
+ {
+ "epoch": 10.419397116644824,
+ "grad_norm": 0.20534078776836395,
+ "learning_rate": 0.0006,
+ "loss": 4.3735432624816895,
+ "step": 750
+ },
+ {
+ "epoch": 10.433377020532983,
+ "grad_norm": 0.20533937215805054,
+ "learning_rate": 0.0006,
+ "loss": 4.326902389526367,
+ "step": 751
+ },
+ {
+ "epoch": 10.447356924421145,
+ "grad_norm": 0.22057875990867615,
+ "learning_rate": 0.0006,
+ "loss": 4.360934257507324,
+ "step": 752
+ },
+ {
+ "epoch": 10.461336828309305,
+ "grad_norm": 0.25568997859954834,
+ "learning_rate": 0.0006,
+ "loss": 4.345063209533691,
+ "step": 753
+ },
+ {
+ "epoch": 10.475316732197467,
+ "grad_norm": 0.31471487879753113,
+ "learning_rate": 0.0006,
+ "loss": 4.324014186859131,
+ "step": 754
+ },
+ {
+ "epoch": 10.489296636085626,
+ "grad_norm": 0.2716822624206543,
+ "learning_rate": 0.0006,
+ "loss": 4.318459510803223,
+ "step": 755
+ },
+ {
+ "epoch": 10.503276539973788,
+ "grad_norm": 0.19552019238471985,
+ "learning_rate": 0.0006,
+ "loss": 4.3367509841918945,
+ "step": 756
+ },
+ {
+ "epoch": 10.517256443861948,
+ "grad_norm": 0.22822986543178558,
+ "learning_rate": 0.0006,
+ "loss": 4.328935623168945,
+ "step": 757
+ },
+ {
+ "epoch": 10.53123634775011,
+ "grad_norm": 0.22282928228378296,
+ "learning_rate": 0.0006,
+ "loss": 4.358272552490234,
+ "step": 758
+ },
+ {
+ "epoch": 10.54521625163827,
+ "grad_norm": 0.23303352296352386,
+ "learning_rate": 0.0006,
+ "loss": 4.336641311645508,
+ "step": 759
+ },
+ {
+ "epoch": 10.55919615552643,
+ "grad_norm": 0.29474690556526184,
+ "learning_rate": 0.0006,
+ "loss": 4.343188285827637,
+ "step": 760
+ },
+ {
+ "epoch": 10.57317605941459,
+ "grad_norm": 0.36269059777259827,
+ "learning_rate": 0.0006,
+ "loss": 4.313019752502441,
+ "step": 761
+ },
+ {
+ "epoch": 10.587155963302752,
+ "grad_norm": 0.3742978870868683,
+ "learning_rate": 0.0006,
+ "loss": 4.361410140991211,
+ "step": 762
+ },
+ {
+ "epoch": 10.601135867190912,
+ "grad_norm": 0.34412163496017456,
+ "learning_rate": 0.0006,
+ "loss": 4.321324825286865,
+ "step": 763
+ },
+ {
+ "epoch": 10.615115771079074,
+ "grad_norm": 0.3464587926864624,
+ "learning_rate": 0.0006,
+ "loss": 4.341907501220703,
+ "step": 764
+ },
+ {
+ "epoch": 10.629095674967235,
+ "grad_norm": 0.3318136930465698,
+ "learning_rate": 0.0006,
+ "loss": 4.329099655151367,
+ "step": 765
+ },
+ {
+ "epoch": 10.643075578855395,
+ "grad_norm": 0.31292903423309326,
+ "learning_rate": 0.0006,
+ "loss": 4.332015037536621,
+ "step": 766
+ },
+ {
+ "epoch": 10.657055482743557,
+ "grad_norm": 0.2904847264289856,
+ "learning_rate": 0.0006,
+ "loss": 4.341764450073242,
+ "step": 767
+ },
+ {
+ "epoch": 10.671035386631717,
+ "grad_norm": 0.3287692666053772,
+ "learning_rate": 0.0006,
+ "loss": 4.342329025268555,
+ "step": 768
+ },
+ {
+ "epoch": 10.685015290519878,
+ "grad_norm": 0.3115365207195282,
+ "learning_rate": 0.0006,
+ "loss": 4.3530073165893555,
+ "step": 769
+ },
+ {
+ "epoch": 10.698995194408038,
+ "grad_norm": 0.24133864045143127,
+ "learning_rate": 0.0006,
+ "loss": 4.321497917175293,
+ "step": 770
+ },
+ {
+ "epoch": 10.7129750982962,
+ "grad_norm": 0.24658630788326263,
+ "learning_rate": 0.0006,
+ "loss": 4.32669734954834,
+ "step": 771
+ },
+ {
+ "epoch": 10.72695500218436,
+ "grad_norm": 0.2342129647731781,
+ "learning_rate": 0.0006,
+ "loss": 4.345459461212158,
+ "step": 772
+ },
+ {
+ "epoch": 10.740934906072521,
+ "grad_norm": 0.23360829055309296,
+ "learning_rate": 0.0006,
+ "loss": 4.33249568939209,
+ "step": 773
+ },
+ {
+ "epoch": 10.754914809960681,
+ "grad_norm": 0.24314677715301514,
+ "learning_rate": 0.0006,
+ "loss": 4.30499792098999,
+ "step": 774
+ },
+ {
+ "epoch": 10.768894713848843,
+ "grad_norm": 0.22105181217193604,
+ "learning_rate": 0.0006,
+ "loss": 4.33706521987915,
+ "step": 775
+ },
+ {
+ "epoch": 10.782874617737003,
+ "grad_norm": 0.23307174444198608,
+ "learning_rate": 0.0006,
+ "loss": 4.320387840270996,
+ "step": 776
+ },
+ {
+ "epoch": 10.796854521625164,
+ "grad_norm": 0.24946169555187225,
+ "learning_rate": 0.0006,
+ "loss": 4.316012382507324,
+ "step": 777
+ },
+ {
+ "epoch": 10.810834425513324,
+ "grad_norm": 0.26023536920547485,
+ "learning_rate": 0.0006,
+ "loss": 4.315193176269531,
+ "step": 778
+ },
+ {
+ "epoch": 10.824814329401486,
+ "grad_norm": 0.2688547968864441,
+ "learning_rate": 0.0006,
+ "loss": 4.3243255615234375,
+ "step": 779
+ },
+ {
+ "epoch": 10.838794233289645,
+ "grad_norm": 0.28188297152519226,
+ "learning_rate": 0.0006,
+ "loss": 4.3202972412109375,
+ "step": 780
+ },
+ {
+ "epoch": 10.852774137177807,
+ "grad_norm": 0.2890053689479828,
+ "learning_rate": 0.0006,
+ "loss": 4.318799018859863,
+ "step": 781
+ },
+ {
+ "epoch": 10.866754041065967,
+ "grad_norm": 0.2914353013038635,
+ "learning_rate": 0.0006,
+ "loss": 4.314262390136719,
+ "step": 782
+ },
+ {
+ "epoch": 10.880733944954128,
+ "grad_norm": 0.3145572543144226,
+ "learning_rate": 0.0006,
+ "loss": 4.339262008666992,
+ "step": 783
+ },
+ {
+ "epoch": 10.89471384884229,
+ "grad_norm": 0.323062002658844,
+ "learning_rate": 0.0006,
+ "loss": 4.354856491088867,
+ "step": 784
+ },
+ {
+ "epoch": 10.90869375273045,
+ "grad_norm": 0.32741227746009827,
+ "learning_rate": 0.0006,
+ "loss": 4.325577735900879,
+ "step": 785
+ },
+ {
+ "epoch": 10.922673656618612,
+ "grad_norm": 0.2855733036994934,
+ "learning_rate": 0.0006,
+ "loss": 4.324419021606445,
+ "step": 786
+ },
+ {
+ "epoch": 10.936653560506771,
+ "grad_norm": 0.2969444990158081,
+ "learning_rate": 0.0006,
+ "loss": 4.320681095123291,
+ "step": 787
+ },
+ {
+ "epoch": 10.950633464394933,
+ "grad_norm": 0.28108111023902893,
+ "learning_rate": 0.0006,
+ "loss": 4.32673454284668,
+ "step": 788
+ },
+ {
+ "epoch": 10.964613368283093,
+ "grad_norm": 0.2537972629070282,
+ "learning_rate": 0.0006,
+ "loss": 4.3197021484375,
+ "step": 789
+ },
+ {
+ "epoch": 10.978593272171254,
+ "grad_norm": 0.2354544699192047,
+ "learning_rate": 0.0006,
+ "loss": 4.3354973793029785,
+ "step": 790
+ },
+ {
+ "epoch": 10.992573176059414,
+ "grad_norm": 0.26195117831230164,
+ "learning_rate": 0.0006,
+ "loss": 4.3172526359558105,
+ "step": 791
+ },
+ {
+ "epoch": 11.0,
+ "grad_norm": 0.27089616656303406,
+ "learning_rate": 0.0006,
+ "loss": 4.324293613433838,
+ "step": 792
+ },
+ {
+ "epoch": 11.0,
+ "eval_loss": 4.531813621520996,
+ "eval_runtime": 44.1656,
+ "eval_samples_per_second": 55.292,
+ "eval_steps_per_second": 3.464,
+ "step": 792
+ },
+ {
+ "epoch": 11.013979903888162,
+ "grad_norm": 0.2526339590549469,
+ "learning_rate": 0.0006,
+ "loss": 4.287600517272949,
+ "step": 793
+ },
+ {
+ "epoch": 11.027959807776321,
+ "grad_norm": 0.24318458139896393,
+ "learning_rate": 0.0006,
+ "loss": 4.268078327178955,
+ "step": 794
+ },
+ {
+ "epoch": 11.041939711664483,
+ "grad_norm": 0.2450830638408661,
+ "learning_rate": 0.0006,
+ "loss": 4.265467643737793,
+ "step": 795
+ },
+ {
+ "epoch": 11.055919615552643,
+ "grad_norm": 0.23963099718093872,
+ "learning_rate": 0.0006,
+ "loss": 4.267931938171387,
+ "step": 796
+ },
+ {
+ "epoch": 11.069899519440805,
+ "grad_norm": 0.2488657534122467,
+ "learning_rate": 0.0006,
+ "loss": 4.30262565612793,
+ "step": 797
+ },
+ {
+ "epoch": 11.083879423328964,
+ "grad_norm": 0.2319781631231308,
+ "learning_rate": 0.0006,
+ "loss": 4.28665828704834,
+ "step": 798
+ },
+ {
+ "epoch": 11.097859327217126,
+ "grad_norm": 0.2425263375043869,
+ "learning_rate": 0.0006,
+ "loss": 4.284830570220947,
+ "step": 799
+ },
+ {
+ "epoch": 11.111839231105286,
+ "grad_norm": 0.23096567392349243,
+ "learning_rate": 0.0006,
+ "loss": 4.2817206382751465,
+ "step": 800
+ },
+ {
+ "epoch": 11.125819134993447,
+ "grad_norm": 0.2846364676952362,
+ "learning_rate": 0.0006,
+ "loss": 4.276104927062988,
+ "step": 801
+ },
+ {
+ "epoch": 11.139799038881607,
+ "grad_norm": 0.2984965741634369,
+ "learning_rate": 0.0006,
+ "loss": 4.2909650802612305,
+ "step": 802
+ },
+ {
+ "epoch": 11.153778942769769,
+ "grad_norm": 0.2841213643550873,
+ "learning_rate": 0.0006,
+ "loss": 4.283358097076416,
+ "step": 803
+ },
+ {
+ "epoch": 11.167758846657929,
+ "grad_norm": 0.29192933440208435,
+ "learning_rate": 0.0006,
+ "loss": 4.267040729522705,
+ "step": 804
+ },
+ {
+ "epoch": 11.18173875054609,
+ "grad_norm": 0.3254184126853943,
+ "learning_rate": 0.0006,
+ "loss": 4.301564693450928,
+ "step": 805
+ },
+ {
+ "epoch": 11.19571865443425,
+ "grad_norm": 0.3347095847129822,
+ "learning_rate": 0.0006,
+ "loss": 4.271395683288574,
+ "step": 806
+ },
+ {
+ "epoch": 11.209698558322412,
+ "grad_norm": 0.25609350204467773,
+ "learning_rate": 0.0006,
+ "loss": 4.2963056564331055,
+ "step": 807
+ },
+ {
+ "epoch": 11.223678462210572,
+ "grad_norm": 0.29272061586380005,
+ "learning_rate": 0.0006,
+ "loss": 4.298416614532471,
+ "step": 808
+ },
+ {
+ "epoch": 11.237658366098733,
+ "grad_norm": 0.32179465889930725,
+ "learning_rate": 0.0006,
+ "loss": 4.294036865234375,
+ "step": 809
+ },
+ {
+ "epoch": 11.251638269986893,
+ "grad_norm": 0.3336549401283264,
+ "learning_rate": 0.0006,
+ "loss": 4.291993141174316,
+ "step": 810
+ },
+ {
+ "epoch": 11.265618173875055,
+ "grad_norm": 0.32273536920547485,
+ "learning_rate": 0.0006,
+ "loss": 4.311004638671875,
+ "step": 811
+ },
+ {
+ "epoch": 11.279598077763215,
+ "grad_norm": 0.3575087785720825,
+ "learning_rate": 0.0006,
+ "loss": 4.300217628479004,
+ "step": 812
+ },
+ {
+ "epoch": 11.293577981651376,
+ "grad_norm": 0.3332885205745697,
+ "learning_rate": 0.0006,
+ "loss": 4.278337478637695,
+ "step": 813
+ },
+ {
+ "epoch": 11.307557885539538,
+ "grad_norm": 0.31440407037734985,
+ "learning_rate": 0.0006,
+ "loss": 4.273826599121094,
+ "step": 814
+ },
+ {
+ "epoch": 11.321537789427698,
+ "grad_norm": 0.29822009801864624,
+ "learning_rate": 0.0006,
+ "loss": 4.284292221069336,
+ "step": 815
+ },
+ {
+ "epoch": 11.33551769331586,
+ "grad_norm": 0.30695512890815735,
+ "learning_rate": 0.0006,
+ "loss": 4.2831926345825195,
+ "step": 816
+ },
+ {
+ "epoch": 11.349497597204019,
+ "grad_norm": 0.30576950311660767,
+ "learning_rate": 0.0006,
+ "loss": 4.277133464813232,
+ "step": 817
+ },
+ {
+ "epoch": 11.36347750109218,
+ "grad_norm": 0.2859647870063782,
+ "learning_rate": 0.0006,
+ "loss": 4.3130106925964355,
+ "step": 818
+ },
+ {
+ "epoch": 11.37745740498034,
+ "grad_norm": 0.32417574524879456,
+ "learning_rate": 0.0006,
+ "loss": 4.310303211212158,
+ "step": 819
+ },
+ {
+ "epoch": 11.391437308868502,
+ "grad_norm": 0.3512463867664337,
+ "learning_rate": 0.0006,
+ "loss": 4.287015438079834,
+ "step": 820
+ },
+ {
+ "epoch": 11.405417212756662,
+ "grad_norm": 0.32578620314598083,
+ "learning_rate": 0.0006,
+ "loss": 4.2957940101623535,
+ "step": 821
+ },
+ {
+ "epoch": 11.419397116644824,
+ "grad_norm": 0.287949800491333,
+ "learning_rate": 0.0006,
+ "loss": 4.2881879806518555,
+ "step": 822
+ },
+ {
+ "epoch": 11.433377020532983,
+ "grad_norm": 0.28048595786094666,
+ "learning_rate": 0.0006,
+ "loss": 4.274960517883301,
+ "step": 823
+ },
+ {
+ "epoch": 11.447356924421145,
+ "grad_norm": 0.2541540563106537,
+ "learning_rate": 0.0006,
+ "loss": 4.261083602905273,
+ "step": 824
+ },
+ {
+ "epoch": 11.461336828309305,
+ "grad_norm": 0.2348361313343048,
+ "learning_rate": 0.0006,
+ "loss": 4.271036148071289,
+ "step": 825
+ },
+ {
+ "epoch": 11.475316732197467,
+ "grad_norm": 0.20913535356521606,
+ "learning_rate": 0.0006,
+ "loss": 4.307661056518555,
+ "step": 826
+ },
+ {
+ "epoch": 11.489296636085626,
+ "grad_norm": 0.22298868000507355,
+ "learning_rate": 0.0006,
+ "loss": 4.26902961730957,
+ "step": 827
+ },
+ {
+ "epoch": 11.503276539973788,
+ "grad_norm": 0.22752761840820312,
+ "learning_rate": 0.0006,
+ "loss": 4.305529594421387,
+ "step": 828
+ },
+ {
+ "epoch": 11.517256443861948,
+ "grad_norm": 0.2149917483329773,
+ "learning_rate": 0.0006,
+ "loss": 4.25134801864624,
+ "step": 829
+ },
+ {
+ "epoch": 11.53123634775011,
+ "grad_norm": 0.21085695922374725,
+ "learning_rate": 0.0006,
+ "loss": 4.266982078552246,
+ "step": 830
+ },
+ {
+ "epoch": 11.54521625163827,
+ "grad_norm": 0.21586747467517853,
+ "learning_rate": 0.0006,
+ "loss": 4.235255718231201,
+ "step": 831
+ },
+ {
+ "epoch": 11.55919615552643,
+ "grad_norm": 0.2520856559276581,
+ "learning_rate": 0.0006,
+ "loss": 4.283442497253418,
+ "step": 832
+ },
+ {
+ "epoch": 11.57317605941459,
+ "grad_norm": 0.2825471758842468,
+ "learning_rate": 0.0006,
+ "loss": 4.234672546386719,
+ "step": 833
+ },
+ {
+ "epoch": 11.587155963302752,
+ "grad_norm": 0.27437824010849,
+ "learning_rate": 0.0006,
+ "loss": 4.246068000793457,
+ "step": 834
+ },
+ {
+ "epoch": 11.601135867190912,
+ "grad_norm": 0.2596757411956787,
+ "learning_rate": 0.0006,
+ "loss": 4.278448104858398,
+ "step": 835
+ },
+ {
+ "epoch": 11.615115771079074,
+ "grad_norm": 0.25663474202156067,
+ "learning_rate": 0.0006,
+ "loss": 4.308779716491699,
+ "step": 836
+ },
+ {
+ "epoch": 11.629095674967235,
+ "grad_norm": 0.2546203136444092,
+ "learning_rate": 0.0006,
+ "loss": 4.261247634887695,
+ "step": 837
+ },
+ {
+ "epoch": 11.643075578855395,
+ "grad_norm": 0.24722838401794434,
+ "learning_rate": 0.0006,
+ "loss": 4.275888442993164,
+ "step": 838
+ },
+ {
+ "epoch": 11.657055482743557,
+ "grad_norm": 0.3022806644439697,
+ "learning_rate": 0.0006,
+ "loss": 4.2572407722473145,
+ "step": 839
+ },
+ {
+ "epoch": 11.671035386631717,
+ "grad_norm": 0.31170839071273804,
+ "learning_rate": 0.0006,
+ "loss": 4.26992654800415,
+ "step": 840
+ },
+ {
+ "epoch": 11.685015290519878,
+ "grad_norm": 0.31362825632095337,
+ "learning_rate": 0.0006,
+ "loss": 4.2354655265808105,
+ "step": 841
+ },
+ {
+ "epoch": 11.698995194408038,
+ "grad_norm": 0.28741633892059326,
+ "learning_rate": 0.0006,
+ "loss": 4.263496398925781,
+ "step": 842
+ },
+ {
+ "epoch": 11.7129750982962,
+ "grad_norm": 0.2492494285106659,
+ "learning_rate": 0.0006,
+ "loss": 4.26463508605957,
+ "step": 843
+ },
+ {
+ "epoch": 11.72695500218436,
+ "grad_norm": 0.24324660003185272,
+ "learning_rate": 0.0006,
+ "loss": 4.245428085327148,
+ "step": 844
+ },
+ {
+ "epoch": 11.740934906072521,
+ "grad_norm": 0.23591114580631256,
+ "learning_rate": 0.0006,
+ "loss": 4.249845504760742,
+ "step": 845
+ },
+ {
+ "epoch": 11.754914809960681,
+ "grad_norm": 0.2202281504869461,
+ "learning_rate": 0.0006,
+ "loss": 4.245006084442139,
+ "step": 846
+ },
+ {
+ "epoch": 11.768894713848843,
+ "grad_norm": 0.22117942571640015,
+ "learning_rate": 0.0006,
+ "loss": 4.27812385559082,
+ "step": 847
+ },
+ {
+ "epoch": 11.782874617737003,
+ "grad_norm": 0.26361414790153503,
+ "learning_rate": 0.0006,
+ "loss": 4.250475883483887,
+ "step": 848
+ },
+ {
+ "epoch": 11.796854521625164,
+ "grad_norm": 0.2820321321487427,
+ "learning_rate": 0.0006,
+ "loss": 4.265835762023926,
+ "step": 849
+ },
+ {
+ "epoch": 11.810834425513324,
+ "grad_norm": 0.2078961282968521,
+ "learning_rate": 0.0006,
+ "loss": 4.251298904418945,
+ "step": 850
+ },
+ {
+ "epoch": 11.824814329401486,
+ "grad_norm": 0.21548646688461304,
+ "learning_rate": 0.0006,
+ "loss": 4.288539886474609,
+ "step": 851
+ },
+ {
+ "epoch": 11.838794233289645,
+ "grad_norm": 0.22719401121139526,
+ "learning_rate": 0.0006,
+ "loss": 4.252035140991211,
+ "step": 852
+ },
+ {
+ "epoch": 11.852774137177807,
+ "grad_norm": 0.21628320217132568,
+ "learning_rate": 0.0006,
+ "loss": 4.268622398376465,
+ "step": 853
+ },
+ {
+ "epoch": 11.866754041065967,
+ "grad_norm": 0.20855145156383514,
+ "learning_rate": 0.0006,
+ "loss": 4.253366470336914,
+ "step": 854
+ },
+ {
+ "epoch": 11.880733944954128,
+ "grad_norm": 0.2091914266347885,
+ "learning_rate": 0.0006,
+ "loss": 4.237805366516113,
+ "step": 855
+ },
+ {
+ "epoch": 11.89471384884229,
+ "grad_norm": 0.2000127136707306,
+ "learning_rate": 0.0006,
+ "loss": 4.268559455871582,
+ "step": 856
+ },
+ {
+ "epoch": 11.90869375273045,
+ "grad_norm": 0.21080894768238068,
+ "learning_rate": 0.0006,
+ "loss": 4.208702087402344,
+ "step": 857
+ },
+ {
+ "epoch": 11.922673656618612,
+ "grad_norm": 0.22125796973705292,
+ "learning_rate": 0.0006,
+ "loss": 4.250210762023926,
+ "step": 858
+ },
+ {
+ "epoch": 11.936653560506771,
+ "grad_norm": 0.25905469059944153,
+ "learning_rate": 0.0006,
+ "loss": 4.2263593673706055,
+ "step": 859
+ },
+ {
+ "epoch": 11.950633464394933,
+ "grad_norm": 0.29970306158065796,
+ "learning_rate": 0.0006,
+ "loss": 4.250848770141602,
+ "step": 860
+ },
+ {
+ "epoch": 11.964613368283093,
+ "grad_norm": 0.28155168890953064,
+ "learning_rate": 0.0006,
+ "loss": 4.272709369659424,
+ "step": 861
+ },
+ {
+ "epoch": 11.978593272171254,
+ "grad_norm": 0.23396113514900208,
+ "learning_rate": 0.0006,
+ "loss": 4.2674970626831055,
+ "step": 862
+ },
+ {
+ "epoch": 11.992573176059414,
+ "grad_norm": 0.23619577288627625,
+ "learning_rate": 0.0006,
+ "loss": 4.240267753601074,
+ "step": 863
+ },
+ {
+ "epoch": 12.0,
+ "grad_norm": 0.2779577076435089,
+ "learning_rate": 0.0006,
+ "loss": 4.267625331878662,
+ "step": 864
+ },
+ {
+ "epoch": 12.0,
+ "eval_loss": 4.437657356262207,
+ "eval_runtime": 44.4959,
+ "eval_samples_per_second": 54.881,
+ "eval_steps_per_second": 3.439,
+ "step": 864
+ },
+ {
+ "epoch": 12.013979903888162,
+ "grad_norm": 0.2948288321495056,
+ "learning_rate": 0.0006,
+ "loss": 4.232182502746582,
+ "step": 865
+ },
+ {
+ "epoch": 12.027959807776321,
+ "grad_norm": 0.3715663254261017,
+ "learning_rate": 0.0006,
+ "loss": 4.233771324157715,
+ "step": 866
+ },
+ {
+ "epoch": 12.041939711664483,
+ "grad_norm": 0.38358673453330994,
+ "learning_rate": 0.0006,
+ "loss": 4.208967685699463,
+ "step": 867
+ },
+ {
+ "epoch": 12.055919615552643,
+ "grad_norm": 0.3314538896083832,
+ "learning_rate": 0.0006,
+ "loss": 4.230685234069824,
+ "step": 868
+ },
+ {
+ "epoch": 12.069899519440805,
+ "grad_norm": 0.34171539545059204,
+ "learning_rate": 0.0006,
+ "loss": 4.231358528137207,
+ "step": 869
+ },
+ {
+ "epoch": 12.083879423328964,
+ "grad_norm": 0.3253359794616699,
+ "learning_rate": 0.0006,
+ "loss": 4.276405334472656,
+ "step": 870
+ },
+ {
+ "epoch": 12.097859327217126,
+ "grad_norm": 0.29008302092552185,
+ "learning_rate": 0.0006,
+ "loss": 4.232935905456543,
+ "step": 871
+ },
+ {
+ "epoch": 12.111839231105286,
+ "grad_norm": 0.28490355610847473,
+ "learning_rate": 0.0006,
+ "loss": 4.238036632537842,
+ "step": 872
+ },
+ {
+ "epoch": 12.125819134993447,
+ "grad_norm": 0.28446322679519653,
+ "learning_rate": 0.0006,
+ "loss": 4.210229873657227,
+ "step": 873
+ },
+ {
+ "epoch": 12.139799038881607,
+ "grad_norm": 0.29664531350135803,
+ "learning_rate": 0.0006,
+ "loss": 4.221309185028076,
+ "step": 874
+ },
+ {
+ "epoch": 12.153778942769769,
+ "grad_norm": 0.3083505928516388,
+ "learning_rate": 0.0006,
+ "loss": 4.221837997436523,
+ "step": 875
+ },
+ {
+ "epoch": 12.167758846657929,
+ "grad_norm": 0.3282921314239502,
+ "learning_rate": 0.0006,
+ "loss": 4.236713409423828,
+ "step": 876
+ },
+ {
+ "epoch": 12.18173875054609,
+ "grad_norm": 0.3603622615337372,
+ "learning_rate": 0.0006,
+ "loss": 4.245080947875977,
+ "step": 877
+ },
+ {
+ "epoch": 12.19571865443425,
+ "grad_norm": 0.38070905208587646,
+ "learning_rate": 0.0006,
+ "loss": 4.240756988525391,
+ "step": 878
+ },
+ {
+ "epoch": 12.209698558322412,
+ "grad_norm": 0.34479081630706787,
+ "learning_rate": 0.0006,
+ "loss": 4.200998306274414,
+ "step": 879
+ },
+ {
+ "epoch": 12.223678462210572,
+ "grad_norm": 0.3006879389286041,
+ "learning_rate": 0.0006,
+ "loss": 4.23531436920166,
+ "step": 880
+ },
+ {
+ "epoch": 12.237658366098733,
+ "grad_norm": 0.36835649609565735,
+ "learning_rate": 0.0006,
+ "loss": 4.229718208312988,
+ "step": 881
+ },
+ {
+ "epoch": 12.251638269986893,
+ "grad_norm": 0.4386984407901764,
+ "learning_rate": 0.0006,
+ "loss": 4.241188049316406,
+ "step": 882
+ },
+ {
+ "epoch": 12.265618173875055,
+ "grad_norm": 0.4442787170410156,
+ "learning_rate": 0.0006,
+ "loss": 4.239102840423584,
+ "step": 883
+ },
+ {
+ "epoch": 12.279598077763215,
+ "grad_norm": 0.324411541223526,
+ "learning_rate": 0.0006,
+ "loss": 4.198982238769531,
+ "step": 884
+ },
+ {
+ "epoch": 12.293577981651376,
+ "grad_norm": 0.2824151813983917,
+ "learning_rate": 0.0006,
+ "loss": 4.248816967010498,
+ "step": 885
+ },
+ {
+ "epoch": 12.307557885539538,
+ "grad_norm": 0.31407129764556885,
+ "learning_rate": 0.0006,
+ "loss": 4.2371320724487305,
+ "step": 886
+ },
+ {
+ "epoch": 12.321537789427698,
+ "grad_norm": 0.32920050621032715,
+ "learning_rate": 0.0006,
+ "loss": 4.210432052612305,
+ "step": 887
+ },
+ {
+ "epoch": 12.33551769331586,
+ "grad_norm": 0.315231055021286,
+ "learning_rate": 0.0006,
+ "loss": 4.219416618347168,
+ "step": 888
+ },
+ {
+ "epoch": 12.349497597204019,
+ "grad_norm": 0.30932050943374634,
+ "learning_rate": 0.0006,
+ "loss": 4.225022315979004,
+ "step": 889
+ },
+ {
+ "epoch": 12.36347750109218,
+ "grad_norm": 0.30242064595222473,
+ "learning_rate": 0.0006,
+ "loss": 4.2738518714904785,
+ "step": 890
+ },
+ {
+ "epoch": 12.37745740498034,
+ "grad_norm": 0.2926250994205475,
+ "learning_rate": 0.0006,
+ "loss": 4.231094837188721,
+ "step": 891
+ },
+ {
+ "epoch": 12.391437308868502,
+ "grad_norm": 0.2541215717792511,
+ "learning_rate": 0.0006,
+ "loss": 4.211821556091309,
+ "step": 892
+ },
+ {
+ "epoch": 12.405417212756662,
+ "grad_norm": 0.23693418502807617,
+ "learning_rate": 0.0006,
+ "loss": 4.208099365234375,
+ "step": 893
+ },
+ {
+ "epoch": 12.419397116644824,
+ "grad_norm": 0.22063226997852325,
+ "learning_rate": 0.0006,
+ "loss": 4.211234092712402,
+ "step": 894
+ },
+ {
+ "epoch": 12.433377020532983,
+ "grad_norm": 0.21536271274089813,
+ "learning_rate": 0.0006,
+ "loss": 4.199228286743164,
+ "step": 895
+ },
+ {
+ "epoch": 12.447356924421145,
+ "grad_norm": 0.243179589509964,
+ "learning_rate": 0.0006,
+ "loss": 4.204344749450684,
+ "step": 896
+ },
+ {
+ "epoch": 12.461336828309305,
+ "grad_norm": 0.2299746423959732,
+ "learning_rate": 0.0006,
+ "loss": 4.1565752029418945,
+ "step": 897
+ },
+ {
+ "epoch": 12.475316732197467,
+ "grad_norm": 0.2286847084760666,
+ "learning_rate": 0.0006,
+ "loss": 4.242953777313232,
+ "step": 898
+ },
+ {
+ "epoch": 12.489296636085626,
+ "grad_norm": 0.19463586807250977,
+ "learning_rate": 0.0006,
+ "loss": 4.214809417724609,
+ "step": 899
+ },
+ {
+ "epoch": 12.503276539973788,
+ "grad_norm": 0.1978398710489273,
+ "learning_rate": 0.0006,
+ "loss": 4.159815311431885,
+ "step": 900
+ },
+ {
+ "epoch": 12.517256443861948,
+ "grad_norm": 0.23177850246429443,
+ "learning_rate": 0.0006,
+ "loss": 4.2069902420043945,
+ "step": 901
+ },
+ {
+ "epoch": 12.53123634775011,
+ "grad_norm": 0.2408912032842636,
+ "learning_rate": 0.0006,
+ "loss": 4.206778526306152,
+ "step": 902
+ },
+ {
+ "epoch": 12.54521625163827,
+ "grad_norm": 0.21839919686317444,
+ "learning_rate": 0.0006,
+ "loss": 4.197076320648193,
+ "step": 903
+ },
+ {
+ "epoch": 12.55919615552643,
+ "grad_norm": 0.2053343504667282,
+ "learning_rate": 0.0006,
+ "loss": 4.21247673034668,
+ "step": 904
+ },
+ {
+ "epoch": 12.57317605941459,
+ "grad_norm": 0.19943439960479736,
+ "learning_rate": 0.0006,
+ "loss": 4.176966667175293,
+ "step": 905
+ },
+ {
+ "epoch": 12.587155963302752,
+ "grad_norm": 0.2012074887752533,
+ "learning_rate": 0.0006,
+ "loss": 4.210303783416748,
+ "step": 906
+ },
+ {
+ "epoch": 12.601135867190912,
+ "grad_norm": 0.22240376472473145,
+ "learning_rate": 0.0006,
+ "loss": 4.200625896453857,
+ "step": 907
+ },
+ {
+ "epoch": 12.615115771079074,
+ "grad_norm": 0.21729710698127747,
+ "learning_rate": 0.0006,
+ "loss": 4.2001953125,
+ "step": 908
+ },
+ {
+ "epoch": 12.629095674967235,
+ "grad_norm": 0.22470413148403168,
+ "learning_rate": 0.0006,
+ "loss": 4.197505950927734,
+ "step": 909
+ },
+ {
+ "epoch": 12.643075578855395,
+ "grad_norm": 0.23776157200336456,
+ "learning_rate": 0.0006,
+ "loss": 4.235603332519531,
+ "step": 910
+ },
+ {
+ "epoch": 12.657055482743557,
+ "grad_norm": 0.20616604387760162,
+ "learning_rate": 0.0006,
+ "loss": 4.193584442138672,
+ "step": 911
+ },
+ {
+ "epoch": 12.671035386631717,
+ "grad_norm": 0.1913922131061554,
+ "learning_rate": 0.0006,
+ "loss": 4.209191799163818,
+ "step": 912
+ },
+ {
+ "epoch": 12.685015290519878,
+ "grad_norm": 0.19427193701267242,
+ "learning_rate": 0.0006,
+ "loss": 4.219709396362305,
+ "step": 913
+ },
+ {
+ "epoch": 12.698995194408038,
+ "grad_norm": 0.20976558327674866,
+ "learning_rate": 0.0006,
+ "loss": 4.210859298706055,
+ "step": 914
+ },
+ {
+ "epoch": 12.7129750982962,
+ "grad_norm": 0.21571609377861023,
+ "learning_rate": 0.0006,
+ "loss": 4.189394950866699,
+ "step": 915
+ },
+ {
+ "epoch": 12.72695500218436,
+ "grad_norm": 0.2152620255947113,
+ "learning_rate": 0.0006,
+ "loss": 4.223589897155762,
+ "step": 916
+ },
+ {
+ "epoch": 12.740934906072521,
+ "grad_norm": 0.21867749094963074,
+ "learning_rate": 0.0006,
+ "loss": 4.198590278625488,
+ "step": 917
+ },
+ {
+ "epoch": 12.754914809960681,
+ "grad_norm": 0.22300855815410614,
+ "learning_rate": 0.0006,
+ "loss": 4.188891410827637,
+ "step": 918
+ },
+ {
+ "epoch": 12.768894713848843,
+ "grad_norm": 0.22197802364826202,
+ "learning_rate": 0.0006,
+ "loss": 4.190221309661865,
+ "step": 919
+ },
+ {
+ "epoch": 12.782874617737003,
+ "grad_norm": 0.20003341138362885,
+ "learning_rate": 0.0006,
+ "loss": 4.215453147888184,
+ "step": 920
+ },
+ {
+ "epoch": 12.796854521625164,
+ "grad_norm": 0.19887958467006683,
+ "learning_rate": 0.0006,
+ "loss": 4.18174934387207,
+ "step": 921
+ },
+ {
+ "epoch": 12.810834425513324,
+ "grad_norm": 0.20945803821086884,
+ "learning_rate": 0.0006,
+ "loss": 4.234947204589844,
+ "step": 922
+ },
+ {
+ "epoch": 12.824814329401486,
+ "grad_norm": 0.2253490388393402,
+ "learning_rate": 0.0006,
+ "loss": 4.2177228927612305,
+ "step": 923
+ },
+ {
+ "epoch": 12.838794233289645,
+ "grad_norm": 0.247610405087471,
+ "learning_rate": 0.0006,
+ "loss": 4.2013139724731445,
+ "step": 924
+ },
+ {
+ "epoch": 12.852774137177807,
+ "grad_norm": 0.2792088985443115,
+ "learning_rate": 0.0006,
+ "loss": 4.204774379730225,
+ "step": 925
+ },
+ {
+ "epoch": 12.866754041065967,
+ "grad_norm": 0.2839066982269287,
+ "learning_rate": 0.0006,
+ "loss": 4.186254978179932,
+ "step": 926
+ },
+ {
+ "epoch": 12.880733944954128,
+ "grad_norm": 0.2793181836605072,
+ "learning_rate": 0.0006,
+ "loss": 4.172411918640137,
+ "step": 927
+ },
+ {
+ "epoch": 12.89471384884229,
+ "grad_norm": 0.29506033658981323,
+ "learning_rate": 0.0006,
+ "loss": 4.202878475189209,
+ "step": 928
+ },
+ {
+ "epoch": 12.90869375273045,
+ "grad_norm": 0.2799845039844513,
+ "learning_rate": 0.0006,
+ "loss": 4.1563310623168945,
+ "step": 929
+ },
+ {
+ "epoch": 12.922673656618612,
+ "grad_norm": 0.23972125351428986,
+ "learning_rate": 0.0006,
+ "loss": 4.224601745605469,
+ "step": 930
+ },
+ {
+ "epoch": 12.936653560506771,
+ "grad_norm": 0.21558353304862976,
+ "learning_rate": 0.0006,
+ "loss": 4.167957305908203,
+ "step": 931
+ },
+ {
+ "epoch": 12.950633464394933,
+ "grad_norm": 0.21800188720226288,
+ "learning_rate": 0.0006,
+ "loss": 4.1746039390563965,
+ "step": 932
+ },
+ {
+ "epoch": 12.964613368283093,
+ "grad_norm": 0.2086547315120697,
+ "learning_rate": 0.0006,
+ "loss": 4.188137054443359,
+ "step": 933
+ },
+ {
+ "epoch": 12.978593272171254,
+ "grad_norm": 0.2174186110496521,
+ "learning_rate": 0.0006,
+ "loss": 4.184014320373535,
+ "step": 934
+ },
+ {
+ "epoch": 12.992573176059414,
+ "grad_norm": 0.22755110263824463,
+ "learning_rate": 0.0006,
+ "loss": 4.180912017822266,
+ "step": 935
+ },
+ {
+ "epoch": 13.0,
+ "grad_norm": 0.2735324203968048,
+ "learning_rate": 0.0006,
+ "loss": 4.201578617095947,
+ "step": 936
+ },
+ {
+ "epoch": 13.0,
+ "eval_loss": 4.396903038024902,
+ "eval_runtime": 44.5664,
+ "eval_samples_per_second": 54.795,
+ "eval_steps_per_second": 3.433,
+ "step": 936
+ },
+ {
+ "epoch": 13.013979903888162,
+ "grad_norm": 0.27577832341194153,
+ "learning_rate": 0.0006,
+ "loss": 4.149985313415527,
+ "step": 937
+ },
+ {
+ "epoch": 13.027959807776321,
+ "grad_norm": 0.25817009806632996,
+ "learning_rate": 0.0006,
+ "loss": 4.1526103019714355,
+ "step": 938
+ },
+ {
+ "epoch": 13.041939711664483,
+ "grad_norm": 0.24564379453659058,
+ "learning_rate": 0.0006,
+ "loss": 4.1661152839660645,
+ "step": 939
+ },
+ {
+ "epoch": 13.055919615552643,
+ "grad_norm": 0.2465466856956482,
+ "learning_rate": 0.0006,
+ "loss": 4.152953624725342,
+ "step": 940
+ },
+ {
+ "epoch": 13.069899519440805,
+ "grad_norm": 0.22702018916606903,
+ "learning_rate": 0.0006,
+ "loss": 4.145125389099121,
+ "step": 941
+ },
+ {
+ "epoch": 13.083879423328964,
+ "grad_norm": 0.24350613355636597,
+ "learning_rate": 0.0006,
+ "loss": 4.163095474243164,
+ "step": 942
+ },
+ {
+ "epoch": 13.097859327217126,
+ "grad_norm": 0.2504431903362274,
+ "learning_rate": 0.0006,
+ "loss": 4.136016845703125,
+ "step": 943
+ },
+ {
+ "epoch": 13.111839231105286,
+ "grad_norm": 0.24968865513801575,
+ "learning_rate": 0.0006,
+ "loss": 4.163487911224365,
+ "step": 944
+ },
+ {
+ "epoch": 13.125819134993447,
+ "grad_norm": 0.27164196968078613,
+ "learning_rate": 0.0006,
+ "loss": 4.1194353103637695,
+ "step": 945
+ },
+ {
+ "epoch": 13.139799038881607,
+ "grad_norm": 0.28127020597457886,
+ "learning_rate": 0.0006,
+ "loss": 4.184807300567627,
+ "step": 946
+ },
+ {
+ "epoch": 13.153778942769769,
+ "grad_norm": 0.24574966728687286,
+ "learning_rate": 0.0006,
+ "loss": 4.154998779296875,
+ "step": 947
+ },
+ {
+ "epoch": 13.167758846657929,
+ "grad_norm": 0.22310060262680054,
+ "learning_rate": 0.0006,
+ "loss": 4.182928085327148,
+ "step": 948
+ },
+ {
+ "epoch": 13.18173875054609,
+ "grad_norm": 0.2539508640766144,
+ "learning_rate": 0.0006,
+ "loss": 4.176900386810303,
+ "step": 949
+ },
+ {
+ "epoch": 13.19571865443425,
+ "grad_norm": 0.30925488471984863,
+ "learning_rate": 0.0006,
+ "loss": 4.1760711669921875,
+ "step": 950
+ },
+ {
+ "epoch": 13.209698558322412,
+ "grad_norm": 0.3842967450618744,
+ "learning_rate": 0.0006,
+ "loss": 4.1830949783325195,
+ "step": 951
+ },
+ {
+ "epoch": 13.223678462210572,
+ "grad_norm": 0.35950011014938354,
+ "learning_rate": 0.0006,
+ "loss": 4.131983757019043,
+ "step": 952
+ },
+ {
+ "epoch": 13.237658366098733,
+ "grad_norm": 0.29913705587387085,
+ "learning_rate": 0.0006,
+ "loss": 4.166984558105469,
+ "step": 953
+ },
+ {
+ "epoch": 13.251638269986893,
+ "grad_norm": 0.32008400559425354,
+ "learning_rate": 0.0006,
+ "loss": 4.156482696533203,
+ "step": 954
+ },
+ {
+ "epoch": 13.265618173875055,
+ "grad_norm": 0.3186642825603485,
+ "learning_rate": 0.0006,
+ "loss": 4.1661057472229,
+ "step": 955
+ },
+ {
+ "epoch": 13.279598077763215,
+ "grad_norm": 0.3194582462310791,
+ "learning_rate": 0.0006,
+ "loss": 4.169328689575195,
+ "step": 956
+ },
+ {
+ "epoch": 13.293577981651376,
+ "grad_norm": 0.3133867084980011,
+ "learning_rate": 0.0006,
+ "loss": 4.165459632873535,
+ "step": 957
+ },
+ {
+ "epoch": 13.307557885539538,
+ "grad_norm": 0.3232237696647644,
+ "learning_rate": 0.0006,
+ "loss": 4.2107439041137695,
+ "step": 958
+ },
+ {
+ "epoch": 13.321537789427698,
+ "grad_norm": 0.3133196234703064,
+ "learning_rate": 0.0006,
+ "loss": 4.184182167053223,
+ "step": 959
+ },
+ {
+ "epoch": 13.33551769331586,
+ "grad_norm": 0.296129435300827,
+ "learning_rate": 0.0006,
+ "loss": 4.168312072753906,
+ "step": 960
+ },
+ {
+ "epoch": 13.349497597204019,
+ "grad_norm": 0.2685348391532898,
+ "learning_rate": 0.0006,
+ "loss": 4.159984588623047,
+ "step": 961
+ },
+ {
+ "epoch": 13.36347750109218,
+ "grad_norm": 0.2644975781440735,
+ "learning_rate": 0.0006,
+ "loss": 4.164909362792969,
+ "step": 962
+ },
+ {
+ "epoch": 13.37745740498034,
+ "grad_norm": 0.2712913155555725,
+ "learning_rate": 0.0006,
+ "loss": 4.158056259155273,
+ "step": 963
+ },
+ {
+ "epoch": 13.391437308868502,
+ "grad_norm": 0.2687259316444397,
+ "learning_rate": 0.0006,
+ "loss": 4.182924270629883,
+ "step": 964
+ },
+ {
+ "epoch": 13.405417212756662,
+ "grad_norm": 0.25640392303466797,
+ "learning_rate": 0.0006,
+ "loss": 4.153351783752441,
+ "step": 965
+ },
+ {
+ "epoch": 13.419397116644824,
+ "grad_norm": 0.2646305561065674,
+ "learning_rate": 0.0006,
+ "loss": 4.18464469909668,
+ "step": 966
+ },
+ {
+ "epoch": 13.433377020532983,
+ "grad_norm": 0.24206851422786713,
+ "learning_rate": 0.0006,
+ "loss": 4.127564430236816,
+ "step": 967
+ },
+ {
+ "epoch": 13.447356924421145,
+ "grad_norm": 0.23800471425056458,
+ "learning_rate": 0.0006,
+ "loss": 4.163488388061523,
+ "step": 968
+ },
+ {
+ "epoch": 13.461336828309305,
+ "grad_norm": 0.22957314550876617,
+ "learning_rate": 0.0006,
+ "loss": 4.178133964538574,
+ "step": 969
+ },
+ {
+ "epoch": 13.475316732197467,
+ "grad_norm": 0.22867488861083984,
+ "learning_rate": 0.0006,
+ "loss": 4.159056186676025,
+ "step": 970
+ },
+ {
+ "epoch": 13.489296636085626,
+ "grad_norm": 0.21737419068813324,
+ "learning_rate": 0.0006,
+ "loss": 4.138628005981445,
+ "step": 971
+ },
+ {
+ "epoch": 13.503276539973788,
+ "grad_norm": 0.2319175899028778,
+ "learning_rate": 0.0006,
+ "loss": 4.14644718170166,
+ "step": 972
+ },
+ {
+ "epoch": 13.517256443861948,
+ "grad_norm": 0.2572193443775177,
+ "learning_rate": 0.0006,
+ "loss": 4.175213813781738,
+ "step": 973
+ },
+ {
+ "epoch": 13.53123634775011,
+ "grad_norm": 0.23483099043369293,
+ "learning_rate": 0.0006,
+ "loss": 4.133171558380127,
+ "step": 974
+ },
+ {
+ "epoch": 13.54521625163827,
+ "grad_norm": 0.2071552872657776,
+ "learning_rate": 0.0006,
+ "loss": 4.13730525970459,
+ "step": 975
+ },
+ {
+ "epoch": 13.55919615552643,
+ "grad_norm": 0.23074553906917572,
+ "learning_rate": 0.0006,
+ "loss": 4.175051689147949,
+ "step": 976
+ },
+ {
+ "epoch": 13.57317605941459,
+ "grad_norm": 0.2480078786611557,
+ "learning_rate": 0.0006,
+ "loss": 4.167630672454834,
+ "step": 977
+ },
+ {
+ "epoch": 13.587155963302752,
+ "grad_norm": 0.23444348573684692,
+ "learning_rate": 0.0006,
+ "loss": 4.141780853271484,
+ "step": 978
+ },
+ {
+ "epoch": 13.601135867190912,
+ "grad_norm": 0.2227829396724701,
+ "learning_rate": 0.0006,
+ "loss": 4.157566547393799,
+ "step": 979
+ },
+ {
+ "epoch": 13.615115771079074,
+ "grad_norm": 0.21478354930877686,
+ "learning_rate": 0.0006,
+ "loss": 4.131053447723389,
+ "step": 980
+ },
+ {
+ "epoch": 13.629095674967235,
+ "grad_norm": 0.1978664994239807,
+ "learning_rate": 0.0006,
+ "loss": 4.123660564422607,
+ "step": 981
+ },
+ {
+ "epoch": 13.643075578855395,
+ "grad_norm": 0.19980201125144958,
+ "learning_rate": 0.0006,
+ "loss": 4.174160480499268,
+ "step": 982
+ },
+ {
+ "epoch": 13.657055482743557,
+ "grad_norm": 0.19815555214881897,
+ "learning_rate": 0.0006,
+ "loss": 4.181703090667725,
+ "step": 983
+ },
+ {
+ "epoch": 13.671035386631717,
+ "grad_norm": 0.19524012506008148,
+ "learning_rate": 0.0006,
+ "loss": 4.163766860961914,
+ "step": 984
+ },
+ {
+ "epoch": 13.685015290519878,
+ "grad_norm": 0.2286096215248108,
+ "learning_rate": 0.0006,
+ "loss": 4.172213554382324,
+ "step": 985
+ },
+ {
+ "epoch": 13.698995194408038,
+ "grad_norm": 0.2210782766342163,
+ "learning_rate": 0.0006,
+ "loss": 4.187033653259277,
+ "step": 986
+ },
+ {
+ "epoch": 13.7129750982962,
+ "grad_norm": 0.21874216198921204,
+ "learning_rate": 0.0006,
+ "loss": 4.125125885009766,
+ "step": 987
+ },
+ {
+ "epoch": 13.72695500218436,
+ "grad_norm": 0.22848057746887207,
+ "learning_rate": 0.0006,
+ "loss": 4.153496742248535,
+ "step": 988
+ },
+ {
+ "epoch": 13.740934906072521,
+ "grad_norm": 0.2250450700521469,
+ "learning_rate": 0.0006,
+ "loss": 4.149165630340576,
+ "step": 989
+ },
+ {
+ "epoch": 13.754914809960681,
+ "grad_norm": 0.21443772315979004,
+ "learning_rate": 0.0006,
+ "loss": 4.1528825759887695,
+ "step": 990
+ },
+ {
+ "epoch": 13.768894713848843,
+ "grad_norm": 0.21927927434444427,
+ "learning_rate": 0.0006,
+ "loss": 4.146831512451172,
+ "step": 991
+ },
+ {
+ "epoch": 13.782874617737003,
+ "grad_norm": 0.2413124144077301,
+ "learning_rate": 0.0006,
+ "loss": 4.136909008026123,
+ "step": 992
+ },
+ {
+ "epoch": 13.796854521625164,
+ "grad_norm": 0.2603479325771332,
+ "learning_rate": 0.0006,
+ "loss": 4.12525749206543,
+ "step": 993
+ },
+ {
+ "epoch": 13.810834425513324,
+ "grad_norm": 0.26246970891952515,
+ "learning_rate": 0.0006,
+ "loss": 4.114049434661865,
+ "step": 994
+ },
+ {
+ "epoch": 13.824814329401486,
+ "grad_norm": 0.27031877636909485,
+ "learning_rate": 0.0006,
+ "loss": 4.1646552085876465,
+ "step": 995
+ },
+ {
+ "epoch": 13.838794233289645,
+ "grad_norm": 0.2499857395887375,
+ "learning_rate": 0.0006,
+ "loss": 4.139284133911133,
+ "step": 996
+ },
+ {
+ "epoch": 13.852774137177807,
+ "grad_norm": 0.22026537358760834,
+ "learning_rate": 0.0006,
+ "loss": 4.142191410064697,
+ "step": 997
+ },
+ {
+ "epoch": 13.866754041065967,
+ "grad_norm": 0.23738551139831543,
+ "learning_rate": 0.0006,
+ "loss": 4.1422882080078125,
+ "step": 998
+ },
+ {
+ "epoch": 13.880733944954128,
+ "grad_norm": 0.2416357398033142,
+ "learning_rate": 0.0006,
+ "loss": 4.14063835144043,
+ "step": 999
+ },
+ {
+ "epoch": 13.89471384884229,
+ "grad_norm": 0.33822184801101685,
+ "learning_rate": 0.0006,
+ "loss": 4.12839412689209,
+ "step": 1000
+ },
+ {
+ "epoch": 13.90869375273045,
+ "grad_norm": 0.3409678339958191,
+ "learning_rate": 0.0006,
+ "loss": 4.145351886749268,
+ "step": 1001
+ },
+ {
+ "epoch": 13.922673656618612,
+ "grad_norm": 0.2467597872018814,
+ "learning_rate": 0.0006,
+ "loss": 4.155339241027832,
+ "step": 1002
+ },
+ {
+ "epoch": 13.936653560506771,
+ "grad_norm": 0.2314649075269699,
+ "learning_rate": 0.0006,
+ "loss": 4.130176067352295,
+ "step": 1003
+ },
+ {
+ "epoch": 13.950633464394933,
+ "grad_norm": 0.23701290786266327,
+ "learning_rate": 0.0006,
+ "loss": 4.19205379486084,
+ "step": 1004
+ },
+ {
+ "epoch": 13.964613368283093,
+ "grad_norm": 0.2466491460800171,
+ "learning_rate": 0.0006,
+ "loss": 4.118908882141113,
+ "step": 1005
+ },
+ {
+ "epoch": 13.978593272171254,
+ "grad_norm": 0.23746836185455322,
+ "learning_rate": 0.0006,
+ "loss": 4.16111946105957,
+ "step": 1006
+ },
+ {
+ "epoch": 13.992573176059414,
+ "grad_norm": 0.24497751891613007,
+ "learning_rate": 0.0006,
+ "loss": 4.148624420166016,
+ "step": 1007
+ },
+ {
+ "epoch": 14.0,
+ "grad_norm": 0.25735899806022644,
+ "learning_rate": 0.0006,
+ "loss": 4.12002420425415,
+ "step": 1008
+ },
+ {
+ "epoch": 14.0,
+ "eval_loss": 4.335351467132568,
+ "eval_runtime": 44.0523,
+ "eval_samples_per_second": 55.434,
+ "eval_steps_per_second": 3.473,
+ "step": 1008
+ },
+ {
+ "epoch": 14.013979903888162,
+ "grad_norm": 0.24570082128047943,
+ "learning_rate": 0.0006,
+ "loss": 4.1036176681518555,
+ "step": 1009
+ },
+ {
+ "epoch": 14.027959807776321,
+ "grad_norm": 0.2525855302810669,
+ "learning_rate": 0.0006,
+ "loss": 4.142077445983887,
+ "step": 1010
+ },
+ {
+ "epoch": 14.041939711664483,
+ "grad_norm": 0.2701111435890198,
+ "learning_rate": 0.0006,
+ "loss": 4.096988677978516,
+ "step": 1011
+ },
+ {
+ "epoch": 14.055919615552643,
+ "grad_norm": 0.28173309564590454,
+ "learning_rate": 0.0006,
+ "loss": 4.148448944091797,
+ "step": 1012
+ },
+ {
+ "epoch": 14.069899519440805,
+ "grad_norm": 0.2651294469833374,
+ "learning_rate": 0.0006,
+ "loss": 4.121731281280518,
+ "step": 1013
+ },
+ {
+ "epoch": 14.083879423328964,
+ "grad_norm": 0.21160121262073517,
+ "learning_rate": 0.0006,
+ "loss": 4.108980178833008,
+ "step": 1014
+ },
+ {
+ "epoch": 14.097859327217126,
+ "grad_norm": 0.24786953628063202,
+ "learning_rate": 0.0006,
+ "loss": 4.133942604064941,
+ "step": 1015
+ },
+ {
+ "epoch": 14.111839231105286,
+ "grad_norm": 0.2722747027873993,
+ "learning_rate": 0.0006,
+ "loss": 4.115242958068848,
+ "step": 1016
+ },
+ {
+ "epoch": 14.125819134993447,
+ "grad_norm": 0.273360013961792,
+ "learning_rate": 0.0006,
+ "loss": 4.059296607971191,
+ "step": 1017
+ },
+ {
+ "epoch": 14.139799038881607,
+ "grad_norm": 0.2541784942150116,
+ "learning_rate": 0.0006,
+ "loss": 4.118365287780762,
+ "step": 1018
+ },
+ {
+ "epoch": 14.153778942769769,
+ "grad_norm": 0.23806381225585938,
+ "learning_rate": 0.0006,
+ "loss": 4.102812767028809,
+ "step": 1019
+ },
+ {
+ "epoch": 14.167758846657929,
+ "grad_norm": 0.2541005313396454,
+ "learning_rate": 0.0006,
+ "loss": 4.093264579772949,
+ "step": 1020
+ },
+ {
+ "epoch": 14.18173875054609,
+ "grad_norm": 0.2619539499282837,
+ "learning_rate": 0.0006,
+ "loss": 4.114917278289795,
+ "step": 1021
+ },
+ {
+ "epoch": 14.19571865443425,
+ "grad_norm": 0.2466963529586792,
+ "learning_rate": 0.0006,
+ "loss": 4.098258972167969,
+ "step": 1022
+ },
+ {
+ "epoch": 14.209698558322412,
+ "grad_norm": 0.24341611564159393,
+ "learning_rate": 0.0006,
+ "loss": 4.109346389770508,
+ "step": 1023
+ },
+ {
+ "epoch": 14.223678462210572,
+ "grad_norm": 0.23977765440940857,
+ "learning_rate": 0.0006,
+ "loss": 4.106716156005859,
+ "step": 1024
+ },
+ {
+ "epoch": 14.237658366098733,
+ "grad_norm": 0.253528356552124,
+ "learning_rate": 0.0006,
+ "loss": 4.102226257324219,
+ "step": 1025
+ },
+ {
+ "epoch": 14.251638269986893,
+ "grad_norm": 0.26954543590545654,
+ "learning_rate": 0.0006,
+ "loss": 4.107413291931152,
+ "step": 1026
+ },
+ {
+ "epoch": 14.265618173875055,
+ "grad_norm": 0.2610514760017395,
+ "learning_rate": 0.0006,
+ "loss": 4.110824108123779,
+ "step": 1027
+ },
+ {
+ "epoch": 14.279598077763215,
+ "grad_norm": 0.2579168677330017,
+ "learning_rate": 0.0006,
+ "loss": 4.082438945770264,
+ "step": 1028
+ },
+ {
+ "epoch": 14.293577981651376,
+ "grad_norm": 0.26916536688804626,
+ "learning_rate": 0.0006,
+ "loss": 4.075734615325928,
+ "step": 1029
+ },
+ {
+ "epoch": 14.307557885539538,
+ "grad_norm": 0.2998618185520172,
+ "learning_rate": 0.0006,
+ "loss": 4.088419437408447,
+ "step": 1030
+ },
+ {
+ "epoch": 14.321537789427698,
+ "grad_norm": 0.3162737190723419,
+ "learning_rate": 0.0006,
+ "loss": 4.125833034515381,
+ "step": 1031
+ },
+ {
+ "epoch": 14.33551769331586,
+ "grad_norm": 0.318601131439209,
+ "learning_rate": 0.0006,
+ "loss": 4.077424049377441,
+ "step": 1032
+ },
+ {
+ "epoch": 14.349497597204019,
+ "grad_norm": 0.32113415002822876,
+ "learning_rate": 0.0006,
+ "loss": 4.113360404968262,
+ "step": 1033
+ },
+ {
+ "epoch": 14.36347750109218,
+ "grad_norm": 0.3150886297225952,
+ "learning_rate": 0.0006,
+ "loss": 4.100013732910156,
+ "step": 1034
+ },
+ {
+ "epoch": 14.37745740498034,
+ "grad_norm": 0.29279956221580505,
+ "learning_rate": 0.0006,
+ "loss": 4.136394500732422,
+ "step": 1035
+ },
+ {
+ "epoch": 14.391437308868502,
+ "grad_norm": 0.28532543778419495,
+ "learning_rate": 0.0006,
+ "loss": 4.138948440551758,
+ "step": 1036
+ },
+ {
+ "epoch": 14.405417212756662,
+ "grad_norm": 0.2825978398323059,
+ "learning_rate": 0.0006,
+ "loss": 4.112217903137207,
+ "step": 1037
+ },
+ {
+ "epoch": 14.419397116644824,
+ "grad_norm": 0.2891198694705963,
+ "learning_rate": 0.0006,
+ "loss": 4.102682113647461,
+ "step": 1038
+ },
+ {
+ "epoch": 14.433377020532983,
+ "grad_norm": 0.2917391061782837,
+ "learning_rate": 0.0006,
+ "loss": 4.120752811431885,
+ "step": 1039
+ },
+ {
+ "epoch": 14.447356924421145,
+ "grad_norm": 0.2589806914329529,
+ "learning_rate": 0.0006,
+ "loss": 4.130519390106201,
+ "step": 1040
+ },
+ {
+ "epoch": 14.461336828309305,
+ "grad_norm": 0.2674788534641266,
+ "learning_rate": 0.0006,
+ "loss": 4.130382537841797,
+ "step": 1041
+ },
+ {
+ "epoch": 14.475316732197467,
+ "grad_norm": 0.2820362150669098,
+ "learning_rate": 0.0006,
+ "loss": 4.13947868347168,
+ "step": 1042
+ },
+ {
+ "epoch": 14.489296636085626,
+ "grad_norm": 0.2650109529495239,
+ "learning_rate": 0.0006,
+ "loss": 4.130346775054932,
+ "step": 1043
+ },
+ {
+ "epoch": 14.503276539973788,
+ "grad_norm": 0.29137638211250305,
+ "learning_rate": 0.0006,
+ "loss": 4.055751800537109,
+ "step": 1044
+ },
+ {
+ "epoch": 14.517256443861948,
+ "grad_norm": 0.3232433497905731,
+ "learning_rate": 0.0006,
+ "loss": 4.114810943603516,
+ "step": 1045
+ },
+ {
+ "epoch": 14.53123634775011,
+ "grad_norm": 0.2724473476409912,
+ "learning_rate": 0.0006,
+ "loss": 4.088351249694824,
+ "step": 1046
+ },
+ {
+ "epoch": 14.54521625163827,
+ "grad_norm": 0.23994430899620056,
+ "learning_rate": 0.0006,
+ "loss": 4.110936164855957,
+ "step": 1047
+ },
+ {
+ "epoch": 14.55919615552643,
+ "grad_norm": 0.2422720044851303,
+ "learning_rate": 0.0006,
+ "loss": 4.132844924926758,
+ "step": 1048
+ },
+ {
+ "epoch": 14.57317605941459,
+ "grad_norm": 0.21148815751075745,
+ "learning_rate": 0.0006,
+ "loss": 4.102499961853027,
+ "step": 1049
+ },
+ {
+ "epoch": 14.587155963302752,
+ "grad_norm": 0.22221639752388,
+ "learning_rate": 0.0006,
+ "loss": 4.126241683959961,
+ "step": 1050
+ },
+ {
+ "epoch": 14.601135867190912,
+ "grad_norm": 0.2538735866546631,
+ "learning_rate": 0.0006,
+ "loss": 4.116817951202393,
+ "step": 1051
+ },
+ {
+ "epoch": 14.615115771079074,
+ "grad_norm": 0.2555900514125824,
+ "learning_rate": 0.0006,
+ "loss": 4.106309413909912,
+ "step": 1052
+ },
+ {
+ "epoch": 14.629095674967235,
+ "grad_norm": 0.24753783643245697,
+ "learning_rate": 0.0006,
+ "loss": 4.1015119552612305,
+ "step": 1053
+ },
+ {
+ "epoch": 14.643075578855395,
+ "grad_norm": 0.238885298371315,
+ "learning_rate": 0.0006,
+ "loss": 4.120419502258301,
+ "step": 1054
+ },
+ {
+ "epoch": 14.657055482743557,
+ "grad_norm": 0.22693610191345215,
+ "learning_rate": 0.0006,
+ "loss": 4.084968566894531,
+ "step": 1055
+ },
+ {
+ "epoch": 14.671035386631717,
+ "grad_norm": 0.2100025862455368,
+ "learning_rate": 0.0006,
+ "loss": 4.108001708984375,
+ "step": 1056
+ },
+ {
+ "epoch": 14.685015290519878,
+ "grad_norm": 0.20437054336071014,
+ "learning_rate": 0.0006,
+ "loss": 4.151417255401611,
+ "step": 1057
+ },
+ {
+ "epoch": 14.698995194408038,
+ "grad_norm": 0.1926720291376114,
+ "learning_rate": 0.0006,
+ "loss": 4.091334342956543,
+ "step": 1058
+ },
+ {
+ "epoch": 14.7129750982962,
+ "grad_norm": 0.2120140641927719,
+ "learning_rate": 0.0006,
+ "loss": 4.111706256866455,
+ "step": 1059
+ },
+ {
+ "epoch": 14.72695500218436,
+ "grad_norm": 0.22877076268196106,
+ "learning_rate": 0.0006,
+ "loss": 4.123166084289551,
+ "step": 1060
+ },
+ {
+ "epoch": 14.740934906072521,
+ "grad_norm": 0.22149473428726196,
+ "learning_rate": 0.0006,
+ "loss": 4.099740028381348,
+ "step": 1061
+ },
+ {
+ "epoch": 14.754914809960681,
+ "grad_norm": 0.2351604402065277,
+ "learning_rate": 0.0006,
+ "loss": 4.066174507141113,
+ "step": 1062
+ },
+ {
+ "epoch": 14.768894713848843,
+ "grad_norm": 0.22895802557468414,
+ "learning_rate": 0.0006,
+ "loss": 4.101897239685059,
+ "step": 1063
+ },
+ {
+ "epoch": 14.782874617737003,
+ "grad_norm": 0.22050750255584717,
+ "learning_rate": 0.0006,
+ "loss": 4.122953414916992,
+ "step": 1064
+ },
+ {
+ "epoch": 14.796854521625164,
+ "grad_norm": 0.23255324363708496,
+ "learning_rate": 0.0006,
+ "loss": 4.11297607421875,
+ "step": 1065
+ },
+ {
+ "epoch": 14.810834425513324,
+ "grad_norm": 0.24522703886032104,
+ "learning_rate": 0.0006,
+ "loss": 4.131030082702637,
+ "step": 1066
+ },
+ {
+ "epoch": 14.824814329401486,
+ "grad_norm": 0.2492702752351761,
+ "learning_rate": 0.0006,
+ "loss": 4.076324939727783,
+ "step": 1067
+ },
+ {
+ "epoch": 14.838794233289645,
+ "grad_norm": 0.24410948157310486,
+ "learning_rate": 0.0006,
+ "loss": 4.109020709991455,
+ "step": 1068
+ },
+ {
+ "epoch": 14.852774137177807,
+ "grad_norm": 0.2463168203830719,
+ "learning_rate": 0.0006,
+ "loss": 4.135679244995117,
+ "step": 1069
+ },
+ {
+ "epoch": 14.866754041065967,
+ "grad_norm": 0.2563146650791168,
+ "learning_rate": 0.0006,
+ "loss": 4.0958027839660645,
+ "step": 1070
+ },
+ {
+ "epoch": 14.880733944954128,
+ "grad_norm": 0.261167049407959,
+ "learning_rate": 0.0006,
+ "loss": 4.114803314208984,
+ "step": 1071
+ },
+ {
+ "epoch": 14.89471384884229,
+ "grad_norm": 0.2593795955181122,
+ "learning_rate": 0.0006,
+ "loss": 4.1210618019104,
+ "step": 1072
+ },
+ {
+ "epoch": 14.90869375273045,
+ "grad_norm": 0.27184173464775085,
+ "learning_rate": 0.0006,
+ "loss": 4.095145225524902,
+ "step": 1073
+ },
+ {
+ "epoch": 14.922673656618612,
+ "grad_norm": 0.25289732217788696,
+ "learning_rate": 0.0006,
+ "loss": 4.107388973236084,
+ "step": 1074
+ },
+ {
+ "epoch": 14.936653560506771,
+ "grad_norm": 0.2176840454339981,
+ "learning_rate": 0.0006,
+ "loss": 4.105966567993164,
+ "step": 1075
+ },
+ {
+ "epoch": 14.950633464394933,
+ "grad_norm": 0.20930173993110657,
+ "learning_rate": 0.0006,
+ "loss": 4.126853942871094,
+ "step": 1076
+ },
+ {
+ "epoch": 14.964613368283093,
+ "grad_norm": 0.20850051939487457,
+ "learning_rate": 0.0006,
+ "loss": 4.074934959411621,
+ "step": 1077
+ },
+ {
+ "epoch": 14.978593272171254,
+ "grad_norm": 0.21987544000148773,
+ "learning_rate": 0.0006,
+ "loss": 4.123321533203125,
+ "step": 1078
+ },
+ {
+ "epoch": 14.992573176059414,
+ "grad_norm": 0.23821689188480377,
+ "learning_rate": 0.0006,
+ "loss": 4.082647323608398,
+ "step": 1079
+ },
+ {
+ "epoch": 15.0,
+ "grad_norm": 0.2590881288051605,
+ "learning_rate": 0.0006,
+ "loss": 4.113482475280762,
+ "step": 1080
+ },
+ {
+ "epoch": 15.0,
+ "eval_loss": 4.286936283111572,
+ "eval_runtime": 44.2665,
+ "eval_samples_per_second": 55.166,
+ "eval_steps_per_second": 3.456,
+ "step": 1080
+ },
+ {
+ "epoch": 15.013979903888162,
+ "grad_norm": 0.27885961532592773,
+ "learning_rate": 0.0006,
+ "loss": 4.0825958251953125,
+ "step": 1081
+ },
+ {
+ "epoch": 15.027959807776321,
+ "grad_norm": 0.2751246690750122,
+ "learning_rate": 0.0006,
+ "loss": 4.049782752990723,
+ "step": 1082
+ },
+ {
+ "epoch": 15.041939711664483,
+ "grad_norm": 0.25238561630249023,
+ "learning_rate": 0.0006,
+ "loss": 4.067366600036621,
+ "step": 1083
+ },
+ {
+ "epoch": 15.055919615552643,
+ "grad_norm": 0.27481040358543396,
+ "learning_rate": 0.0006,
+ "loss": 4.089946746826172,
+ "step": 1084
+ },
+ {
+ "epoch": 15.069899519440805,
+ "grad_norm": 0.2666703164577484,
+ "learning_rate": 0.0006,
+ "loss": 4.071957588195801,
+ "step": 1085
+ },
+ {
+ "epoch": 15.083879423328964,
+ "grad_norm": 0.2532065212726593,
+ "learning_rate": 0.0006,
+ "loss": 4.091561794281006,
+ "step": 1086
+ },
+ {
+ "epoch": 15.097859327217126,
+ "grad_norm": 0.23562374711036682,
+ "learning_rate": 0.0006,
+ "loss": 4.074953079223633,
+ "step": 1087
+ },
+ {
+ "epoch": 15.111839231105286,
+ "grad_norm": 0.2498065084218979,
+ "learning_rate": 0.0006,
+ "loss": 4.056004047393799,
+ "step": 1088
+ },
+ {
+ "epoch": 15.125819134993447,
+ "grad_norm": 0.257046639919281,
+ "learning_rate": 0.0006,
+ "loss": 4.044149875640869,
+ "step": 1089
+ },
+ {
+ "epoch": 15.139799038881607,
+ "grad_norm": 0.2417808622121811,
+ "learning_rate": 0.0006,
+ "loss": 4.071811676025391,
+ "step": 1090
+ },
+ {
+ "epoch": 15.153778942769769,
+ "grad_norm": 0.24742013216018677,
+ "learning_rate": 0.0006,
+ "loss": 4.081482887268066,
+ "step": 1091
+ },
+ {
+ "epoch": 15.167758846657929,
+ "grad_norm": 0.2610231637954712,
+ "learning_rate": 0.0006,
+ "loss": 4.06953763961792,
+ "step": 1092
+ },
+ {
+ "epoch": 15.18173875054609,
+ "grad_norm": 0.24688200652599335,
+ "learning_rate": 0.0006,
+ "loss": 4.079700469970703,
+ "step": 1093
+ },
+ {
+ "epoch": 15.19571865443425,
+ "grad_norm": 0.2650167942047119,
+ "learning_rate": 0.0006,
+ "loss": 4.082088947296143,
+ "step": 1094
+ },
+ {
+ "epoch": 15.209698558322412,
+ "grad_norm": 0.25913330912590027,
+ "learning_rate": 0.0006,
+ "loss": 4.081713676452637,
+ "step": 1095
+ },
+ {
+ "epoch": 15.223678462210572,
+ "grad_norm": 0.2547631561756134,
+ "learning_rate": 0.0006,
+ "loss": 4.073573112487793,
+ "step": 1096
+ },
+ {
+ "epoch": 15.237658366098733,
+ "grad_norm": 0.2732609510421753,
+ "learning_rate": 0.0006,
+ "loss": 4.10186767578125,
+ "step": 1097
+ },
+ {
+ "epoch": 15.251638269986893,
+ "grad_norm": 0.2990017533302307,
+ "learning_rate": 0.0006,
+ "loss": 4.085466384887695,
+ "step": 1098
+ },
+ {
+ "epoch": 15.265618173875055,
+ "grad_norm": 0.30252209305763245,
+ "learning_rate": 0.0006,
+ "loss": 4.077337265014648,
+ "step": 1099
+ },
+ {
+ "epoch": 15.279598077763215,
+ "grad_norm": 0.30046045780181885,
+ "learning_rate": 0.0006,
+ "loss": 4.0895891189575195,
+ "step": 1100
+ },
+ {
+ "epoch": 15.293577981651376,
+ "grad_norm": 0.2779843211174011,
+ "learning_rate": 0.0006,
+ "loss": 4.060354709625244,
+ "step": 1101
+ },
+ {
+ "epoch": 15.307557885539538,
+ "grad_norm": 0.26914986968040466,
+ "learning_rate": 0.0006,
+ "loss": 4.07314395904541,
+ "step": 1102
+ },
+ {
+ "epoch": 15.321537789427698,
+ "grad_norm": 0.24605873227119446,
+ "learning_rate": 0.0006,
+ "loss": 4.051377296447754,
+ "step": 1103
+ },
+ {
+ "epoch": 15.33551769331586,
+ "grad_norm": 0.25634095072746277,
+ "learning_rate": 0.0006,
+ "loss": 4.082427024841309,
+ "step": 1104
+ },
+ {
+ "epoch": 15.349497597204019,
+ "grad_norm": 0.2888158857822418,
+ "learning_rate": 0.0006,
+ "loss": 4.074253082275391,
+ "step": 1105
+ },
+ {
+ "epoch": 15.36347750109218,
+ "grad_norm": 0.2758261561393738,
+ "learning_rate": 0.0006,
+ "loss": 4.08344841003418,
+ "step": 1106
+ },
+ {
+ "epoch": 15.37745740498034,
+ "grad_norm": 0.26937270164489746,
+ "learning_rate": 0.0006,
+ "loss": 4.063424587249756,
+ "step": 1107
+ },
+ {
+ "epoch": 15.391437308868502,
+ "grad_norm": 0.2739955484867096,
+ "learning_rate": 0.0006,
+ "loss": 4.08005952835083,
+ "step": 1108
+ },
+ {
+ "epoch": 15.405417212756662,
+ "grad_norm": 0.2635386288166046,
+ "learning_rate": 0.0006,
+ "loss": 4.087360382080078,
+ "step": 1109
+ },
+ {
+ "epoch": 15.419397116644824,
+ "grad_norm": 0.2619768977165222,
+ "learning_rate": 0.0006,
+ "loss": 4.072653770446777,
+ "step": 1110
+ },
+ {
+ "epoch": 15.433377020532983,
+ "grad_norm": 0.24154804646968842,
+ "learning_rate": 0.0006,
+ "loss": 4.084464073181152,
+ "step": 1111
+ },
+ {
+ "epoch": 15.447356924421145,
+ "grad_norm": 0.24236027896404266,
+ "learning_rate": 0.0006,
+ "loss": 4.078777313232422,
+ "step": 1112
+ },
+ {
+ "epoch": 15.461336828309305,
+ "grad_norm": 0.24653038382530212,
+ "learning_rate": 0.0006,
+ "loss": 4.075024604797363,
+ "step": 1113
+ },
+ {
+ "epoch": 15.475316732197467,
+ "grad_norm": 0.27106523513793945,
+ "learning_rate": 0.0006,
+ "loss": 4.060937881469727,
+ "step": 1114
+ },
+ {
+ "epoch": 15.489296636085626,
+ "grad_norm": 0.25109633803367615,
+ "learning_rate": 0.0006,
+ "loss": 4.081971168518066,
+ "step": 1115
+ },
+ {
+ "epoch": 15.503276539973788,
+ "grad_norm": 0.23452287912368774,
+ "learning_rate": 0.0006,
+ "loss": 4.0762834548950195,
+ "step": 1116
+ },
+ {
+ "epoch": 15.517256443861948,
+ "grad_norm": 0.25415024161338806,
+ "learning_rate": 0.0006,
+ "loss": 4.069386959075928,
+ "step": 1117
+ },
+ {
+ "epoch": 15.53123634775011,
+ "grad_norm": 0.25448229908943176,
+ "learning_rate": 0.0006,
+ "loss": 4.075098514556885,
+ "step": 1118
+ },
+ {
+ "epoch": 15.54521625163827,
+ "grad_norm": 0.25679755210876465,
+ "learning_rate": 0.0006,
+ "loss": 4.097431182861328,
+ "step": 1119
+ },
+ {
+ "epoch": 15.55919615552643,
+ "grad_norm": 0.25973212718963623,
+ "learning_rate": 0.0006,
+ "loss": 4.058948516845703,
+ "step": 1120
+ },
+ {
+ "epoch": 15.57317605941459,
+ "grad_norm": 0.24511456489562988,
+ "learning_rate": 0.0006,
+ "loss": 4.092263698577881,
+ "step": 1121
+ },
+ {
+ "epoch": 15.587155963302752,
+ "grad_norm": 0.22949442267417908,
+ "learning_rate": 0.0006,
+ "loss": 4.0526604652404785,
+ "step": 1122
+ },
+ {
+ "epoch": 15.601135867190912,
+ "grad_norm": 0.22486285865306854,
+ "learning_rate": 0.0006,
+ "loss": 4.051939010620117,
+ "step": 1123
+ },
+ {
+ "epoch": 15.615115771079074,
+ "grad_norm": 0.22183601558208466,
+ "learning_rate": 0.0006,
+ "loss": 4.065430641174316,
+ "step": 1124
+ },
+ {
+ "epoch": 15.629095674967235,
+ "grad_norm": 0.2531328797340393,
+ "learning_rate": 0.0006,
+ "loss": 4.069165229797363,
+ "step": 1125
+ },
+ {
+ "epoch": 15.643075578855395,
+ "grad_norm": 0.24403320252895355,
+ "learning_rate": 0.0006,
+ "loss": 4.055041790008545,
+ "step": 1126
+ },
+ {
+ "epoch": 15.657055482743557,
+ "grad_norm": 0.24504756927490234,
+ "learning_rate": 0.0006,
+ "loss": 4.035850524902344,
+ "step": 1127
+ },
+ {
+ "epoch": 15.671035386631717,
+ "grad_norm": 0.23812057077884674,
+ "learning_rate": 0.0006,
+ "loss": 4.049278259277344,
+ "step": 1128
+ },
+ {
+ "epoch": 15.685015290519878,
+ "grad_norm": 0.23694153130054474,
+ "learning_rate": 0.0006,
+ "loss": 4.065816402435303,
+ "step": 1129
+ },
+ {
+ "epoch": 15.698995194408038,
+ "grad_norm": 0.23252786695957184,
+ "learning_rate": 0.0006,
+ "loss": 4.05952262878418,
+ "step": 1130
+ },
+ {
+ "epoch": 15.7129750982962,
+ "grad_norm": 0.2243805080652237,
+ "learning_rate": 0.0006,
+ "loss": 4.058291435241699,
+ "step": 1131
+ },
+ {
+ "epoch": 15.72695500218436,
+ "grad_norm": 0.2200988084077835,
+ "learning_rate": 0.0006,
+ "loss": 4.040788650512695,
+ "step": 1132
+ },
+ {
+ "epoch": 15.740934906072521,
+ "grad_norm": 0.21460631489753723,
+ "learning_rate": 0.0006,
+ "loss": 4.072552680969238,
+ "step": 1133
+ },
+ {
+ "epoch": 15.754914809960681,
+ "grad_norm": 0.2056441456079483,
+ "learning_rate": 0.0006,
+ "loss": 4.059467315673828,
+ "step": 1134
+ },
+ {
+ "epoch": 15.768894713848843,
+ "grad_norm": 0.2068045437335968,
+ "learning_rate": 0.0006,
+ "loss": 4.063803195953369,
+ "step": 1135
+ },
+ {
+ "epoch": 15.782874617737003,
+ "grad_norm": 0.21307601034641266,
+ "learning_rate": 0.0006,
+ "loss": 4.093092918395996,
+ "step": 1136
+ },
+ {
+ "epoch": 15.796854521625164,
+ "grad_norm": 0.20729634165763855,
+ "learning_rate": 0.0006,
+ "loss": 4.066030502319336,
+ "step": 1137
+ },
+ {
+ "epoch": 15.810834425513324,
+ "grad_norm": 0.2097514122724533,
+ "learning_rate": 0.0006,
+ "loss": 4.077326774597168,
+ "step": 1138
+ },
+ {
+ "epoch": 15.824814329401486,
+ "grad_norm": 0.21884000301361084,
+ "learning_rate": 0.0006,
+ "loss": 4.0595598220825195,
+ "step": 1139
+ },
+ {
+ "epoch": 15.838794233289645,
+ "grad_norm": 0.22220250964164734,
+ "learning_rate": 0.0006,
+ "loss": 4.061574459075928,
+ "step": 1140
+ },
+ {
+ "epoch": 15.852774137177807,
+ "grad_norm": 0.23189949989318848,
+ "learning_rate": 0.0006,
+ "loss": 4.0504045486450195,
+ "step": 1141
+ },
+ {
+ "epoch": 15.866754041065967,
+ "grad_norm": 0.226649671792984,
+ "learning_rate": 0.0006,
+ "loss": 4.060986518859863,
+ "step": 1142
+ },
+ {
+ "epoch": 15.880733944954128,
+ "grad_norm": 0.2456834763288498,
+ "learning_rate": 0.0006,
+ "loss": 4.038525581359863,
+ "step": 1143
+ },
+ {
+ "epoch": 15.89471384884229,
+ "grad_norm": 0.2818352282047272,
+ "learning_rate": 0.0006,
+ "loss": 4.062709331512451,
+ "step": 1144
+ },
+ {
+ "epoch": 15.90869375273045,
+ "grad_norm": 0.2850170135498047,
+ "learning_rate": 0.0006,
+ "loss": 4.0683274269104,
+ "step": 1145
+ },
+ {
+ "epoch": 15.922673656618612,
+ "grad_norm": 0.27691730856895447,
+ "learning_rate": 0.0006,
+ "loss": 4.076540470123291,
+ "step": 1146
+ },
+ {
+ "epoch": 15.936653560506771,
+ "grad_norm": 0.2685548961162567,
+ "learning_rate": 0.0006,
+ "loss": 4.048116683959961,
+ "step": 1147
+ },
+ {
+ "epoch": 15.950633464394933,
+ "grad_norm": 0.2452288419008255,
+ "learning_rate": 0.0006,
+ "loss": 4.06640625,
+ "step": 1148
+ },
+ {
+ "epoch": 15.964613368283093,
+ "grad_norm": 0.2601441740989685,
+ "learning_rate": 0.0006,
+ "loss": 4.073277473449707,
+ "step": 1149
+ },
+ {
+ "epoch": 15.978593272171254,
+ "grad_norm": 0.2748197913169861,
+ "learning_rate": 0.0006,
+ "loss": 4.0332536697387695,
+ "step": 1150
+ },
+ {
+ "epoch": 15.992573176059414,
+ "grad_norm": 0.27249959111213684,
+ "learning_rate": 0.0006,
+ "loss": 3.9952516555786133,
+ "step": 1151
+ },
+ {
+ "epoch": 16.0,
+ "grad_norm": 0.3475601375102997,
+ "learning_rate": 0.0006,
+ "loss": 4.040761947631836,
+ "step": 1152
+ },
+ {
+ "epoch": 16.0,
+ "eval_loss": 4.237997531890869,
+ "eval_runtime": 43.8692,
+ "eval_samples_per_second": 55.665,
+ "eval_steps_per_second": 3.488,
+ "step": 1152
+ },
+ {
+ "epoch": 16.01397990388816,
+ "grad_norm": 0.3365611433982849,
+ "learning_rate": 0.0006,
+ "loss": 4.031302452087402,
+ "step": 1153
+ },
+ {
+ "epoch": 16.027959807776323,
+ "grad_norm": 0.3020530641078949,
+ "learning_rate": 0.0006,
+ "loss": 4.036273956298828,
+ "step": 1154
+ },
+ {
+ "epoch": 16.041939711664483,
+ "grad_norm": 0.25277993083000183,
+ "learning_rate": 0.0006,
+ "loss": 4.007067680358887,
+ "step": 1155
+ },
+ {
+ "epoch": 16.055919615552643,
+ "grad_norm": 0.24762840569019318,
+ "learning_rate": 0.0006,
+ "loss": 4.046561241149902,
+ "step": 1156
+ },
+ {
+ "epoch": 16.069899519440803,
+ "grad_norm": 0.25236397981643677,
+ "learning_rate": 0.0006,
+ "loss": 4.061616897583008,
+ "step": 1157
+ },
+ {
+ "epoch": 16.083879423328966,
+ "grad_norm": 0.22789105772972107,
+ "learning_rate": 0.0006,
+ "loss": 4.010061740875244,
+ "step": 1158
+ },
+ {
+ "epoch": 16.097859327217126,
+ "grad_norm": 0.21866244077682495,
+ "learning_rate": 0.0006,
+ "loss": 4.0181097984313965,
+ "step": 1159
+ },
+ {
+ "epoch": 16.111839231105286,
+ "grad_norm": 0.21889029443264008,
+ "learning_rate": 0.0006,
+ "loss": 4.012239456176758,
+ "step": 1160
+ },
+ {
+ "epoch": 16.125819134993446,
+ "grad_norm": 0.23002485930919647,
+ "learning_rate": 0.0006,
+ "loss": 4.034092426300049,
+ "step": 1161
+ },
+ {
+ "epoch": 16.13979903888161,
+ "grad_norm": 0.2271798551082611,
+ "learning_rate": 0.0006,
+ "loss": 4.026222229003906,
+ "step": 1162
+ },
+ {
+ "epoch": 16.15377894276977,
+ "grad_norm": 0.238200843334198,
+ "learning_rate": 0.0006,
+ "loss": 4.044692039489746,
+ "step": 1163
+ },
+ {
+ "epoch": 16.16775884665793,
+ "grad_norm": 0.2281467169523239,
+ "learning_rate": 0.0006,
+ "loss": 4.032305717468262,
+ "step": 1164
+ },
+ {
+ "epoch": 16.18173875054609,
+ "grad_norm": 0.2213946431875229,
+ "learning_rate": 0.0006,
+ "loss": 4.048737525939941,
+ "step": 1165
+ },
+ {
+ "epoch": 16.195718654434252,
+ "grad_norm": 0.26638558506965637,
+ "learning_rate": 0.0006,
+ "loss": 4.006335258483887,
+ "step": 1166
+ },
+ {
+ "epoch": 16.209698558322412,
+ "grad_norm": 0.2780219316482544,
+ "learning_rate": 0.0006,
+ "loss": 4.049234390258789,
+ "step": 1167
+ },
+ {
+ "epoch": 16.22367846221057,
+ "grad_norm": 0.27425870299339294,
+ "learning_rate": 0.0006,
+ "loss": 4.017177104949951,
+ "step": 1168
+ },
+ {
+ "epoch": 16.23765836609873,
+ "grad_norm": 0.2596667408943176,
+ "learning_rate": 0.0006,
+ "loss": 4.022942543029785,
+ "step": 1169
+ },
+ {
+ "epoch": 16.251638269986895,
+ "grad_norm": 0.26972314715385437,
+ "learning_rate": 0.0006,
+ "loss": 4.035310745239258,
+ "step": 1170
+ },
+ {
+ "epoch": 16.265618173875055,
+ "grad_norm": 0.2677772045135498,
+ "learning_rate": 0.0006,
+ "loss": 4.0280561447143555,
+ "step": 1171
+ },
+ {
+ "epoch": 16.279598077763215,
+ "grad_norm": 0.25433358550071716,
+ "learning_rate": 0.0006,
+ "loss": 4.03616189956665,
+ "step": 1172
+ },
+ {
+ "epoch": 16.293577981651374,
+ "grad_norm": 0.2583644688129425,
+ "learning_rate": 0.0006,
+ "loss": 4.073624134063721,
+ "step": 1173
+ },
+ {
+ "epoch": 16.307557885539538,
+ "grad_norm": 0.25437524914741516,
+ "learning_rate": 0.0006,
+ "loss": 4.057926654815674,
+ "step": 1174
+ },
+ {
+ "epoch": 16.321537789427698,
+ "grad_norm": 0.2819201350212097,
+ "learning_rate": 0.0006,
+ "loss": 4.020838737487793,
+ "step": 1175
+ },
+ {
+ "epoch": 16.335517693315857,
+ "grad_norm": 0.32689282298088074,
+ "learning_rate": 0.0006,
+ "loss": 4.062448501586914,
+ "step": 1176
+ },
+ {
+ "epoch": 16.34949759720402,
+ "grad_norm": 0.33002278208732605,
+ "learning_rate": 0.0006,
+ "loss": 4.052059173583984,
+ "step": 1177
+ },
+ {
+ "epoch": 16.36347750109218,
+ "grad_norm": 0.32472696900367737,
+ "learning_rate": 0.0006,
+ "loss": 4.042375564575195,
+ "step": 1178
+ },
+ {
+ "epoch": 16.37745740498034,
+ "grad_norm": 0.35279813408851624,
+ "learning_rate": 0.0006,
+ "loss": 4.028722763061523,
+ "step": 1179
+ },
+ {
+ "epoch": 16.3914373088685,
+ "grad_norm": 0.3243204951286316,
+ "learning_rate": 0.0006,
+ "loss": 4.045693874359131,
+ "step": 1180
+ },
+ {
+ "epoch": 16.405417212756664,
+ "grad_norm": 0.32171115279197693,
+ "learning_rate": 0.0006,
+ "loss": 4.018350124359131,
+ "step": 1181
+ },
+ {
+ "epoch": 16.419397116644824,
+ "grad_norm": 0.31459906697273254,
+ "learning_rate": 0.0006,
+ "loss": 4.039547443389893,
+ "step": 1182
+ },
+ {
+ "epoch": 16.433377020532983,
+ "grad_norm": 0.35038673877716064,
+ "learning_rate": 0.0006,
+ "loss": 4.005928039550781,
+ "step": 1183
+ },
+ {
+ "epoch": 16.447356924421143,
+ "grad_norm": 0.34110963344573975,
+ "learning_rate": 0.0006,
+ "loss": 4.042272090911865,
+ "step": 1184
+ },
+ {
+ "epoch": 16.461336828309307,
+ "grad_norm": 0.33760902285575867,
+ "learning_rate": 0.0006,
+ "loss": 4.02886962890625,
+ "step": 1185
+ },
+ {
+ "epoch": 16.475316732197467,
+ "grad_norm": 0.3162464499473572,
+ "learning_rate": 0.0006,
+ "loss": 4.059924125671387,
+ "step": 1186
+ },
+ {
+ "epoch": 16.489296636085626,
+ "grad_norm": 0.2667233645915985,
+ "learning_rate": 0.0006,
+ "loss": 4.069073677062988,
+ "step": 1187
+ },
+ {
+ "epoch": 16.503276539973786,
+ "grad_norm": 0.22626568377017975,
+ "learning_rate": 0.0006,
+ "loss": 4.044912338256836,
+ "step": 1188
+ },
+ {
+ "epoch": 16.51725644386195,
+ "grad_norm": 0.203303262591362,
+ "learning_rate": 0.0006,
+ "loss": 4.025210380554199,
+ "step": 1189
+ },
+ {
+ "epoch": 16.53123634775011,
+ "grad_norm": 0.2108820080757141,
+ "learning_rate": 0.0006,
+ "loss": 4.035998821258545,
+ "step": 1190
+ },
+ {
+ "epoch": 16.54521625163827,
+ "grad_norm": 0.20451335608959198,
+ "learning_rate": 0.0006,
+ "loss": 4.043377876281738,
+ "step": 1191
+ },
+ {
+ "epoch": 16.55919615552643,
+ "grad_norm": 0.23348836600780487,
+ "learning_rate": 0.0006,
+ "loss": 4.033735275268555,
+ "step": 1192
+ },
+ {
+ "epoch": 16.573176059414592,
+ "grad_norm": 0.24438607692718506,
+ "learning_rate": 0.0006,
+ "loss": 4.071747779846191,
+ "step": 1193
+ },
+ {
+ "epoch": 16.587155963302752,
+ "grad_norm": 0.24233631789684296,
+ "learning_rate": 0.0006,
+ "loss": 4.0138702392578125,
+ "step": 1194
+ },
+ {
+ "epoch": 16.601135867190912,
+ "grad_norm": 0.21625740826129913,
+ "learning_rate": 0.0006,
+ "loss": 4.013422012329102,
+ "step": 1195
+ },
+ {
+ "epoch": 16.615115771079076,
+ "grad_norm": 0.22447720170021057,
+ "learning_rate": 0.0006,
+ "loss": 4.056326866149902,
+ "step": 1196
+ },
+ {
+ "epoch": 16.629095674967235,
+ "grad_norm": 0.21899616718292236,
+ "learning_rate": 0.0006,
+ "loss": 4.006134033203125,
+ "step": 1197
+ },
+ {
+ "epoch": 16.643075578855395,
+ "grad_norm": 0.191362664103508,
+ "learning_rate": 0.0006,
+ "loss": 4.036748886108398,
+ "step": 1198
+ },
+ {
+ "epoch": 16.657055482743555,
+ "grad_norm": 0.20203463733196259,
+ "learning_rate": 0.0006,
+ "loss": 4.006264686584473,
+ "step": 1199
+ },
+ {
+ "epoch": 16.67103538663172,
+ "grad_norm": 0.20209139585494995,
+ "learning_rate": 0.0006,
+ "loss": 4.059018135070801,
+ "step": 1200
+ },
+ {
+ "epoch": 16.68501529051988,
+ "grad_norm": 0.20811820030212402,
+ "learning_rate": 0.0006,
+ "loss": 4.054325103759766,
+ "step": 1201
+ },
+ {
+ "epoch": 16.698995194408038,
+ "grad_norm": 0.22448928654193878,
+ "learning_rate": 0.0006,
+ "loss": 3.996121406555176,
+ "step": 1202
+ },
+ {
+ "epoch": 16.712975098296198,
+ "grad_norm": 0.21692240238189697,
+ "learning_rate": 0.0006,
+ "loss": 4.042046546936035,
+ "step": 1203
+ },
+ {
+ "epoch": 16.72695500218436,
+ "grad_norm": 0.20688563585281372,
+ "learning_rate": 0.0006,
+ "loss": 4.002251625061035,
+ "step": 1204
+ },
+ {
+ "epoch": 16.74093490607252,
+ "grad_norm": 0.1835535764694214,
+ "learning_rate": 0.0006,
+ "loss": 4.02545166015625,
+ "step": 1205
+ },
+ {
+ "epoch": 16.75491480996068,
+ "grad_norm": 0.20532558858394623,
+ "learning_rate": 0.0006,
+ "loss": 4.039333343505859,
+ "step": 1206
+ },
+ {
+ "epoch": 16.76889471384884,
+ "grad_norm": 0.2214215099811554,
+ "learning_rate": 0.0006,
+ "loss": 4.037858486175537,
+ "step": 1207
+ },
+ {
+ "epoch": 16.782874617737004,
+ "grad_norm": 0.24926038086414337,
+ "learning_rate": 0.0006,
+ "loss": 4.024799346923828,
+ "step": 1208
+ },
+ {
+ "epoch": 16.796854521625164,
+ "grad_norm": 0.26057952642440796,
+ "learning_rate": 0.0006,
+ "loss": 4.042788505554199,
+ "step": 1209
+ },
+ {
+ "epoch": 16.810834425513324,
+ "grad_norm": 0.2501208782196045,
+ "learning_rate": 0.0006,
+ "loss": 4.051809310913086,
+ "step": 1210
+ },
+ {
+ "epoch": 16.824814329401484,
+ "grad_norm": 0.21760012209415436,
+ "learning_rate": 0.0006,
+ "loss": 4.063589096069336,
+ "step": 1211
+ },
+ {
+ "epoch": 16.838794233289647,
+ "grad_norm": 0.2243622988462448,
+ "learning_rate": 0.0006,
+ "loss": 4.008829593658447,
+ "step": 1212
+ },
+ {
+ "epoch": 16.852774137177807,
+ "grad_norm": 0.2399163395166397,
+ "learning_rate": 0.0006,
+ "loss": 4.013262748718262,
+ "step": 1213
+ },
+ {
+ "epoch": 16.866754041065967,
+ "grad_norm": 0.23187831044197083,
+ "learning_rate": 0.0006,
+ "loss": 4.023053169250488,
+ "step": 1214
+ },
+ {
+ "epoch": 16.88073394495413,
+ "grad_norm": 0.23723892867565155,
+ "learning_rate": 0.0006,
+ "loss": 3.991321563720703,
+ "step": 1215
+ },
+ {
+ "epoch": 16.89471384884229,
+ "grad_norm": 0.21766342222690582,
+ "learning_rate": 0.0006,
+ "loss": 4.0250773429870605,
+ "step": 1216
+ },
+ {
+ "epoch": 16.90869375273045,
+ "grad_norm": 0.20715023577213287,
+ "learning_rate": 0.0006,
+ "loss": 4.063642978668213,
+ "step": 1217
+ },
+ {
+ "epoch": 16.92267365661861,
+ "grad_norm": 0.20165133476257324,
+ "learning_rate": 0.0006,
+ "loss": 3.9951367378234863,
+ "step": 1218
+ },
+ {
+ "epoch": 16.936653560506773,
+ "grad_norm": 0.19956178963184357,
+ "learning_rate": 0.0006,
+ "loss": 4.025641441345215,
+ "step": 1219
+ },
+ {
+ "epoch": 16.950633464394933,
+ "grad_norm": 0.2175494134426117,
+ "learning_rate": 0.0006,
+ "loss": 4.030346393585205,
+ "step": 1220
+ },
+ {
+ "epoch": 16.964613368283093,
+ "grad_norm": 0.22365593910217285,
+ "learning_rate": 0.0006,
+ "loss": 4.018105506896973,
+ "step": 1221
+ },
+ {
+ "epoch": 16.978593272171253,
+ "grad_norm": 0.21251538395881653,
+ "learning_rate": 0.0006,
+ "loss": 4.023580074310303,
+ "step": 1222
+ },
+ {
+ "epoch": 16.992573176059416,
+ "grad_norm": 0.2230125218629837,
+ "learning_rate": 0.0006,
+ "loss": 4.001980304718018,
+ "step": 1223
+ },
+ {
+ "epoch": 17.0,
+ "grad_norm": 0.24261972308158875,
+ "learning_rate": 0.0006,
+ "loss": 4.081348896026611,
+ "step": 1224
+ },
+ {
+ "epoch": 17.0,
+ "eval_loss": 4.225194931030273,
+ "eval_runtime": 44.247,
+ "eval_samples_per_second": 55.19,
+ "eval_steps_per_second": 3.458,
+ "step": 1224
+ },
+ {
+ "epoch": 17.01397990388816,
+ "grad_norm": 0.2438880205154419,
+ "learning_rate": 0.0006,
+ "loss": 4.0164794921875,
+ "step": 1225
+ },
+ {
+ "epoch": 17.027959807776323,
+ "grad_norm": 0.22459383308887482,
+ "learning_rate": 0.0006,
+ "loss": 3.991623878479004,
+ "step": 1226
+ },
+ {
+ "epoch": 17.041939711664483,
+ "grad_norm": 0.25021040439605713,
+ "learning_rate": 0.0006,
+ "loss": 4.003020286560059,
+ "step": 1227
+ },
+ {
+ "epoch": 17.055919615552643,
+ "grad_norm": 0.30358025431632996,
+ "learning_rate": 0.0006,
+ "loss": 3.980921983718872,
+ "step": 1228
+ },
+ {
+ "epoch": 17.069899519440803,
+ "grad_norm": 0.27313271164894104,
+ "learning_rate": 0.0006,
+ "loss": 3.992398977279663,
+ "step": 1229
+ },
+ {
+ "epoch": 17.083879423328966,
+ "grad_norm": 0.2293211966753006,
+ "learning_rate": 0.0006,
+ "loss": 4.02568244934082,
+ "step": 1230
+ },
+ {
+ "epoch": 17.097859327217126,
+ "grad_norm": 0.2363300621509552,
+ "learning_rate": 0.0006,
+ "loss": 3.977229356765747,
+ "step": 1231
+ },
+ {
+ "epoch": 17.111839231105286,
+ "grad_norm": 0.2809674143791199,
+ "learning_rate": 0.0006,
+ "loss": 3.9720497131347656,
+ "step": 1232
+ },
+ {
+ "epoch": 17.125819134993446,
+ "grad_norm": 0.2913855016231537,
+ "learning_rate": 0.0006,
+ "loss": 3.979529857635498,
+ "step": 1233
+ },
+ {
+ "epoch": 17.13979903888161,
+ "grad_norm": 0.2920287251472473,
+ "learning_rate": 0.0006,
+ "loss": 3.9678473472595215,
+ "step": 1234
+ },
+ {
+ "epoch": 17.15377894276977,
+ "grad_norm": 0.2521543502807617,
+ "learning_rate": 0.0006,
+ "loss": 3.9912607669830322,
+ "step": 1235
+ },
+ {
+ "epoch": 17.16775884665793,
+ "grad_norm": 0.22844268381595612,
+ "learning_rate": 0.0006,
+ "loss": 3.9898228645324707,
+ "step": 1236
+ },
+ {
+ "epoch": 17.18173875054609,
+ "grad_norm": 0.2199884057044983,
+ "learning_rate": 0.0006,
+ "loss": 4.0050740242004395,
+ "step": 1237
+ },
+ {
+ "epoch": 17.195718654434252,
+ "grad_norm": 0.23072892427444458,
+ "learning_rate": 0.0006,
+ "loss": 3.9957475662231445,
+ "step": 1238
+ },
+ {
+ "epoch": 17.209698558322412,
+ "grad_norm": 0.2034899890422821,
+ "learning_rate": 0.0006,
+ "loss": 3.9672317504882812,
+ "step": 1239
+ },
+ {
+ "epoch": 17.22367846221057,
+ "grad_norm": 0.21826180815696716,
+ "learning_rate": 0.0006,
+ "loss": 3.98543119430542,
+ "step": 1240
+ },
+ {
+ "epoch": 17.23765836609873,
+ "grad_norm": 0.21203237771987915,
+ "learning_rate": 0.0006,
+ "loss": 3.9971959590911865,
+ "step": 1241
+ },
+ {
+ "epoch": 17.251638269986895,
+ "grad_norm": 0.22139234840869904,
+ "learning_rate": 0.0006,
+ "loss": 4.017539978027344,
+ "step": 1242
+ },
+ {
+ "epoch": 17.265618173875055,
+ "grad_norm": 0.21553276479244232,
+ "learning_rate": 0.0006,
+ "loss": 3.98740553855896,
+ "step": 1243
+ },
+ {
+ "epoch": 17.279598077763215,
+ "grad_norm": 0.23259080946445465,
+ "learning_rate": 0.0006,
+ "loss": 3.9963035583496094,
+ "step": 1244
+ },
+ {
+ "epoch": 17.293577981651374,
+ "grad_norm": 0.2527932822704315,
+ "learning_rate": 0.0006,
+ "loss": 4.0202956199646,
+ "step": 1245
+ },
+ {
+ "epoch": 17.307557885539538,
+ "grad_norm": 0.28669068217277527,
+ "learning_rate": 0.0006,
+ "loss": 3.9947609901428223,
+ "step": 1246
+ },
+ {
+ "epoch": 17.321537789427698,
+ "grad_norm": 0.341602623462677,
+ "learning_rate": 0.0006,
+ "loss": 3.997032642364502,
+ "step": 1247
+ },
+ {
+ "epoch": 17.335517693315857,
+ "grad_norm": 0.3364104926586151,
+ "learning_rate": 0.0006,
+ "loss": 3.9881834983825684,
+ "step": 1248
+ },
+ {
+ "epoch": 17.34949759720402,
+ "grad_norm": 0.2979278266429901,
+ "learning_rate": 0.0006,
+ "loss": 4.045898914337158,
+ "step": 1249
+ },
+ {
+ "epoch": 17.36347750109218,
+ "grad_norm": 0.2857462465763092,
+ "learning_rate": 0.0006,
+ "loss": 4.0085272789001465,
+ "step": 1250
+ },
+ {
+ "epoch": 17.37745740498034,
+ "grad_norm": 0.2689058780670166,
+ "learning_rate": 0.0006,
+ "loss": 4.021465301513672,
+ "step": 1251
+ },
+ {
+ "epoch": 17.3914373088685,
+ "grad_norm": 0.24943363666534424,
+ "learning_rate": 0.0006,
+ "loss": 4.003451347351074,
+ "step": 1252
+ },
+ {
+ "epoch": 17.405417212756664,
+ "grad_norm": 0.2635347843170166,
+ "learning_rate": 0.0006,
+ "loss": 3.9837827682495117,
+ "step": 1253
+ },
+ {
+ "epoch": 17.419397116644824,
+ "grad_norm": 0.29126450419425964,
+ "learning_rate": 0.0006,
+ "loss": 3.9857311248779297,
+ "step": 1254
+ },
+ {
+ "epoch": 17.433377020532983,
+ "grad_norm": 0.3166918456554413,
+ "learning_rate": 0.0006,
+ "loss": 3.9842967987060547,
+ "step": 1255
+ },
+ {
+ "epoch": 17.447356924421143,
+ "grad_norm": 0.27869969606399536,
+ "learning_rate": 0.0006,
+ "loss": 4.012607574462891,
+ "step": 1256
+ },
+ {
+ "epoch": 17.461336828309307,
+ "grad_norm": 0.23719419538974762,
+ "learning_rate": 0.0006,
+ "loss": 3.981034755706787,
+ "step": 1257
+ },
+ {
+ "epoch": 17.475316732197467,
+ "grad_norm": 0.22687610983848572,
+ "learning_rate": 0.0006,
+ "loss": 4.011059761047363,
+ "step": 1258
+ },
+ {
+ "epoch": 17.489296636085626,
+ "grad_norm": 0.22034095227718353,
+ "learning_rate": 0.0006,
+ "loss": 4.015044689178467,
+ "step": 1259
+ },
+ {
+ "epoch": 17.503276539973786,
+ "grad_norm": 0.21208405494689941,
+ "learning_rate": 0.0006,
+ "loss": 4.003793716430664,
+ "step": 1260
+ },
+ {
+ "epoch": 17.51725644386195,
+ "grad_norm": 0.21759214997291565,
+ "learning_rate": 0.0006,
+ "loss": 3.978652238845825,
+ "step": 1261
+ },
+ {
+ "epoch": 17.53123634775011,
+ "grad_norm": 0.22481068968772888,
+ "learning_rate": 0.0006,
+ "loss": 4.034845352172852,
+ "step": 1262
+ },
+ {
+ "epoch": 17.54521625163827,
+ "grad_norm": 0.20376387238502502,
+ "learning_rate": 0.0006,
+ "loss": 3.990541934967041,
+ "step": 1263
+ },
+ {
+ "epoch": 17.55919615552643,
+ "grad_norm": 0.20459355413913727,
+ "learning_rate": 0.0006,
+ "loss": 4.006990432739258,
+ "step": 1264
+ },
+ {
+ "epoch": 17.573176059414592,
+ "grad_norm": 0.19306913018226624,
+ "learning_rate": 0.0006,
+ "loss": 3.993408679962158,
+ "step": 1265
+ },
+ {
+ "epoch": 17.587155963302752,
+ "grad_norm": 0.20727239549160004,
+ "learning_rate": 0.0006,
+ "loss": 3.988016128540039,
+ "step": 1266
+ },
+ {
+ "epoch": 17.601135867190912,
+ "grad_norm": 0.20213133096694946,
+ "learning_rate": 0.0006,
+ "loss": 4.0120368003845215,
+ "step": 1267
+ },
+ {
+ "epoch": 17.615115771079076,
+ "grad_norm": 0.21074117720127106,
+ "learning_rate": 0.0006,
+ "loss": 4.048871040344238,
+ "step": 1268
+ },
+ {
+ "epoch": 17.629095674967235,
+ "grad_norm": 0.2074330598115921,
+ "learning_rate": 0.0006,
+ "loss": 3.997509002685547,
+ "step": 1269
+ },
+ {
+ "epoch": 17.643075578855395,
+ "grad_norm": 0.20383669435977936,
+ "learning_rate": 0.0006,
+ "loss": 4.0028839111328125,
+ "step": 1270
+ },
+ {
+ "epoch": 17.657055482743555,
+ "grad_norm": 0.2060765027999878,
+ "learning_rate": 0.0006,
+ "loss": 3.998032331466675,
+ "step": 1271
+ },
+ {
+ "epoch": 17.67103538663172,
+ "grad_norm": 0.21851404011249542,
+ "learning_rate": 0.0006,
+ "loss": 3.9928741455078125,
+ "step": 1272
+ },
+ {
+ "epoch": 17.68501529051988,
+ "grad_norm": 0.24324250221252441,
+ "learning_rate": 0.0006,
+ "loss": 3.9896507263183594,
+ "step": 1273
+ },
+ {
+ "epoch": 17.698995194408038,
+ "grad_norm": 0.25584331154823303,
+ "learning_rate": 0.0006,
+ "loss": 4.010485649108887,
+ "step": 1274
+ },
+ {
+ "epoch": 17.712975098296198,
+ "grad_norm": 0.2490610033273697,
+ "learning_rate": 0.0006,
+ "loss": 3.9906954765319824,
+ "step": 1275
+ },
+ {
+ "epoch": 17.72695500218436,
+ "grad_norm": 0.24241414666175842,
+ "learning_rate": 0.0006,
+ "loss": 4.016420364379883,
+ "step": 1276
+ },
+ {
+ "epoch": 17.74093490607252,
+ "grad_norm": 0.2222128063440323,
+ "learning_rate": 0.0006,
+ "loss": 4.009827136993408,
+ "step": 1277
+ },
+ {
+ "epoch": 17.75491480996068,
+ "grad_norm": 0.23119516670703888,
+ "learning_rate": 0.0006,
+ "loss": 4.0034589767456055,
+ "step": 1278
+ },
+ {
+ "epoch": 17.76889471384884,
+ "grad_norm": 0.24596457183361053,
+ "learning_rate": 0.0006,
+ "loss": 4.003161907196045,
+ "step": 1279
+ },
+ {
+ "epoch": 17.782874617737004,
+ "grad_norm": 0.2607562839984894,
+ "learning_rate": 0.0006,
+ "loss": 3.9894633293151855,
+ "step": 1280
+ },
+ {
+ "epoch": 17.796854521625164,
+ "grad_norm": 0.28706878423690796,
+ "learning_rate": 0.0006,
+ "loss": 4.005712985992432,
+ "step": 1281
+ },
+ {
+ "epoch": 17.810834425513324,
+ "grad_norm": 0.27178290486335754,
+ "learning_rate": 0.0006,
+ "loss": 3.9784536361694336,
+ "step": 1282
+ },
+ {
+ "epoch": 17.824814329401484,
+ "grad_norm": 0.27962708473205566,
+ "learning_rate": 0.0006,
+ "loss": 4.012705326080322,
+ "step": 1283
+ },
+ {
+ "epoch": 17.838794233289647,
+ "grad_norm": 0.29147693514823914,
+ "learning_rate": 0.0006,
+ "loss": 4.0159783363342285,
+ "step": 1284
+ },
+ {
+ "epoch": 17.852774137177807,
+ "grad_norm": 0.2841821312904358,
+ "learning_rate": 0.0006,
+ "loss": 4.011552810668945,
+ "step": 1285
+ },
+ {
+ "epoch": 17.866754041065967,
+ "grad_norm": 0.24924969673156738,
+ "learning_rate": 0.0006,
+ "loss": 3.992421865463257,
+ "step": 1286
+ },
+ {
+ "epoch": 17.88073394495413,
+ "grad_norm": 0.24850749969482422,
+ "learning_rate": 0.0006,
+ "loss": 3.974897861480713,
+ "step": 1287
+ },
+ {
+ "epoch": 17.89471384884229,
+ "grad_norm": 0.2409554123878479,
+ "learning_rate": 0.0006,
+ "loss": 4.002941131591797,
+ "step": 1288
+ },
+ {
+ "epoch": 17.90869375273045,
+ "grad_norm": 0.2656126320362091,
+ "learning_rate": 0.0006,
+ "loss": 3.9804210662841797,
+ "step": 1289
+ },
+ {
+ "epoch": 17.92267365661861,
+ "grad_norm": 0.28210243582725525,
+ "learning_rate": 0.0006,
+ "loss": 4.007192134857178,
+ "step": 1290
+ },
+ {
+ "epoch": 17.936653560506773,
+ "grad_norm": 0.28427553176879883,
+ "learning_rate": 0.0006,
+ "loss": 3.9739556312561035,
+ "step": 1291
+ },
+ {
+ "epoch": 17.950633464394933,
+ "grad_norm": 0.28893420100212097,
+ "learning_rate": 0.0006,
+ "loss": 4.004766941070557,
+ "step": 1292
+ },
+ {
+ "epoch": 17.964613368283093,
+ "grad_norm": 0.2831471562385559,
+ "learning_rate": 0.0006,
+ "loss": 3.984936237335205,
+ "step": 1293
+ },
+ {
+ "epoch": 17.978593272171253,
+ "grad_norm": 0.2518300712108612,
+ "learning_rate": 0.0006,
+ "loss": 4.002814292907715,
+ "step": 1294
+ },
+ {
+ "epoch": 17.992573176059416,
+ "grad_norm": 0.24264675378799438,
+ "learning_rate": 0.0006,
+ "loss": 3.998900890350342,
+ "step": 1295
+ },
+ {
+ "epoch": 18.0,
+ "grad_norm": 0.24474996328353882,
+ "learning_rate": 0.0006,
+ "loss": 3.974229335784912,
+ "step": 1296
+ },
+ {
+ "epoch": 18.0,
+ "eval_loss": 4.195685863494873,
+ "eval_runtime": 44.0709,
+ "eval_samples_per_second": 55.411,
+ "eval_steps_per_second": 3.472,
+ "step": 1296
+ },
+ {
+ "epoch": 18.01397990388816,
+ "grad_norm": 0.2553016245365143,
+ "learning_rate": 0.0006,
+ "loss": 3.9522247314453125,
+ "step": 1297
+ },
+ {
+ "epoch": 18.027959807776323,
+ "grad_norm": 0.22350727021694183,
+ "learning_rate": 0.0006,
+ "loss": 3.9850122928619385,
+ "step": 1298
+ },
+ {
+ "epoch": 18.041939711664483,
+ "grad_norm": 0.23935550451278687,
+ "learning_rate": 0.0006,
+ "loss": 3.9758832454681396,
+ "step": 1299
+ },
+ {
+ "epoch": 18.055919615552643,
+ "grad_norm": 0.23868797719478607,
+ "learning_rate": 0.0006,
+ "loss": 3.9567959308624268,
+ "step": 1300
+ },
+ {
+ "epoch": 18.069899519440803,
+ "grad_norm": 0.23102357983589172,
+ "learning_rate": 0.0006,
+ "loss": 3.9399867057800293,
+ "step": 1301
+ },
+ {
+ "epoch": 18.083879423328966,
+ "grad_norm": 0.23706983029842377,
+ "learning_rate": 0.0006,
+ "loss": 3.993434190750122,
+ "step": 1302
+ },
+ {
+ "epoch": 18.097859327217126,
+ "grad_norm": 0.22207573056221008,
+ "learning_rate": 0.0006,
+ "loss": 3.993436574935913,
+ "step": 1303
+ },
+ {
+ "epoch": 18.111839231105286,
+ "grad_norm": 0.23975296318531036,
+ "learning_rate": 0.0006,
+ "loss": 3.981943368911743,
+ "step": 1304
+ },
+ {
+ "epoch": 18.125819134993446,
+ "grad_norm": 0.2520582675933838,
+ "learning_rate": 0.0006,
+ "loss": 3.965493679046631,
+ "step": 1305
+ },
+ {
+ "epoch": 18.13979903888161,
+ "grad_norm": 0.2230956256389618,
+ "learning_rate": 0.0006,
+ "loss": 3.9360928535461426,
+ "step": 1306
+ },
+ {
+ "epoch": 18.15377894276977,
+ "grad_norm": 0.22527500987052917,
+ "learning_rate": 0.0006,
+ "loss": 3.9814581871032715,
+ "step": 1307
+ },
+ {
+ "epoch": 18.16775884665793,
+ "grad_norm": 0.22389626502990723,
+ "learning_rate": 0.0006,
+ "loss": 3.961590051651001,
+ "step": 1308
+ },
+ {
+ "epoch": 18.18173875054609,
+ "grad_norm": 0.22279471158981323,
+ "learning_rate": 0.0006,
+ "loss": 3.952338695526123,
+ "step": 1309
+ },
+ {
+ "epoch": 18.195718654434252,
+ "grad_norm": 0.24635115265846252,
+ "learning_rate": 0.0006,
+ "loss": 3.9693849086761475,
+ "step": 1310
+ },
+ {
+ "epoch": 18.209698558322412,
+ "grad_norm": 0.2757279872894287,
+ "learning_rate": 0.0006,
+ "loss": 3.9956700801849365,
+ "step": 1311
+ },
+ {
+ "epoch": 18.22367846221057,
+ "grad_norm": 0.2619115710258484,
+ "learning_rate": 0.0006,
+ "loss": 3.948878765106201,
+ "step": 1312
+ },
+ {
+ "epoch": 18.23765836609873,
+ "grad_norm": 0.22853828966617584,
+ "learning_rate": 0.0006,
+ "loss": 3.9545674324035645,
+ "step": 1313
+ },
+ {
+ "epoch": 18.251638269986895,
+ "grad_norm": 0.22904761135578156,
+ "learning_rate": 0.0006,
+ "loss": 3.947535991668701,
+ "step": 1314
+ },
+ {
+ "epoch": 18.265618173875055,
+ "grad_norm": 0.23592644929885864,
+ "learning_rate": 0.0006,
+ "loss": 3.971926212310791,
+ "step": 1315
+ },
+ {
+ "epoch": 18.279598077763215,
+ "grad_norm": 0.22120243310928345,
+ "learning_rate": 0.0006,
+ "loss": 3.9471049308776855,
+ "step": 1316
+ },
+ {
+ "epoch": 18.293577981651374,
+ "grad_norm": 0.20308749377727509,
+ "learning_rate": 0.0006,
+ "loss": 3.967449188232422,
+ "step": 1317
+ },
+ {
+ "epoch": 18.307557885539538,
+ "grad_norm": 0.20013529062271118,
+ "learning_rate": 0.0006,
+ "loss": 3.966151237487793,
+ "step": 1318
+ },
+ {
+ "epoch": 18.321537789427698,
+ "grad_norm": 0.20635221898555756,
+ "learning_rate": 0.0006,
+ "loss": 3.9908885955810547,
+ "step": 1319
+ },
+ {
+ "epoch": 18.335517693315857,
+ "grad_norm": 0.2232237160205841,
+ "learning_rate": 0.0006,
+ "loss": 3.9488768577575684,
+ "step": 1320
+ },
+ {
+ "epoch": 18.34949759720402,
+ "grad_norm": 0.21916444599628448,
+ "learning_rate": 0.0006,
+ "loss": 3.973428726196289,
+ "step": 1321
+ },
+ {
+ "epoch": 18.36347750109218,
+ "grad_norm": 0.20427337288856506,
+ "learning_rate": 0.0006,
+ "loss": 3.969332695007324,
+ "step": 1322
+ },
+ {
+ "epoch": 18.37745740498034,
+ "grad_norm": 0.20138131082057953,
+ "learning_rate": 0.0006,
+ "loss": 3.9651856422424316,
+ "step": 1323
+ },
+ {
+ "epoch": 18.3914373088685,
+ "grad_norm": 0.18918880820274353,
+ "learning_rate": 0.0006,
+ "loss": 3.9772281646728516,
+ "step": 1324
+ },
+ {
+ "epoch": 18.405417212756664,
+ "grad_norm": 0.1860039383172989,
+ "learning_rate": 0.0006,
+ "loss": 3.9289052486419678,
+ "step": 1325
+ },
+ {
+ "epoch": 18.419397116644824,
+ "grad_norm": 0.19541646540164948,
+ "learning_rate": 0.0006,
+ "loss": 3.9527673721313477,
+ "step": 1326
+ },
+ {
+ "epoch": 18.433377020532983,
+ "grad_norm": 0.206914022564888,
+ "learning_rate": 0.0006,
+ "loss": 3.99316143989563,
+ "step": 1327
+ },
+ {
+ "epoch": 18.447356924421143,
+ "grad_norm": 0.209097757935524,
+ "learning_rate": 0.0006,
+ "loss": 3.978130340576172,
+ "step": 1328
+ },
+ {
+ "epoch": 18.461336828309307,
+ "grad_norm": 0.22163373231887817,
+ "learning_rate": 0.0006,
+ "loss": 3.951460361480713,
+ "step": 1329
+ },
+ {
+ "epoch": 18.475316732197467,
+ "grad_norm": 0.21446120738983154,
+ "learning_rate": 0.0006,
+ "loss": 3.963571071624756,
+ "step": 1330
+ },
+ {
+ "epoch": 18.489296636085626,
+ "grad_norm": 0.2341388761997223,
+ "learning_rate": 0.0006,
+ "loss": 4.010684013366699,
+ "step": 1331
+ },
+ {
+ "epoch": 18.503276539973786,
+ "grad_norm": 0.2433937042951584,
+ "learning_rate": 0.0006,
+ "loss": 3.987537384033203,
+ "step": 1332
+ },
+ {
+ "epoch": 18.51725644386195,
+ "grad_norm": 0.24916228652000427,
+ "learning_rate": 0.0006,
+ "loss": 3.953075647354126,
+ "step": 1333
+ },
+ {
+ "epoch": 18.53123634775011,
+ "grad_norm": 0.24542421102523804,
+ "learning_rate": 0.0006,
+ "loss": 3.9510841369628906,
+ "step": 1334
+ },
+ {
+ "epoch": 18.54521625163827,
+ "grad_norm": 0.2393690049648285,
+ "learning_rate": 0.0006,
+ "loss": 3.981747627258301,
+ "step": 1335
+ },
+ {
+ "epoch": 18.55919615552643,
+ "grad_norm": 0.22806711494922638,
+ "learning_rate": 0.0006,
+ "loss": 3.9714856147766113,
+ "step": 1336
+ },
+ {
+ "epoch": 18.573176059414592,
+ "grad_norm": 0.21948303282260895,
+ "learning_rate": 0.0006,
+ "loss": 3.9429898262023926,
+ "step": 1337
+ },
+ {
+ "epoch": 18.587155963302752,
+ "grad_norm": 0.21575778722763062,
+ "learning_rate": 0.0006,
+ "loss": 3.9639933109283447,
+ "step": 1338
+ },
+ {
+ "epoch": 18.601135867190912,
+ "grad_norm": 0.23370565474033356,
+ "learning_rate": 0.0006,
+ "loss": 3.9819254875183105,
+ "step": 1339
+ },
+ {
+ "epoch": 18.615115771079076,
+ "grad_norm": 0.2613106369972229,
+ "learning_rate": 0.0006,
+ "loss": 3.9654669761657715,
+ "step": 1340
+ },
+ {
+ "epoch": 18.629095674967235,
+ "grad_norm": 0.26682716608047485,
+ "learning_rate": 0.0006,
+ "loss": 3.9832968711853027,
+ "step": 1341
+ },
+ {
+ "epoch": 18.643075578855395,
+ "grad_norm": 0.24331490695476532,
+ "learning_rate": 0.0006,
+ "loss": 3.9926600456237793,
+ "step": 1342
+ },
+ {
+ "epoch": 18.657055482743555,
+ "grad_norm": 0.2459341287612915,
+ "learning_rate": 0.0006,
+ "loss": 3.9508986473083496,
+ "step": 1343
+ },
+ {
+ "epoch": 18.67103538663172,
+ "grad_norm": 0.26395753026008606,
+ "learning_rate": 0.0006,
+ "loss": 3.961359977722168,
+ "step": 1344
+ },
+ {
+ "epoch": 18.68501529051988,
+ "grad_norm": 0.26049068570137024,
+ "learning_rate": 0.0006,
+ "loss": 3.9763245582580566,
+ "step": 1345
+ },
+ {
+ "epoch": 18.698995194408038,
+ "grad_norm": 0.24018602073192596,
+ "learning_rate": 0.0006,
+ "loss": 3.951780319213867,
+ "step": 1346
+ },
+ {
+ "epoch": 18.712975098296198,
+ "grad_norm": 0.23886290192604065,
+ "learning_rate": 0.0006,
+ "loss": 3.9883017539978027,
+ "step": 1347
+ },
+ {
+ "epoch": 18.72695500218436,
+ "grad_norm": 0.2293774038553238,
+ "learning_rate": 0.0006,
+ "loss": 3.9852685928344727,
+ "step": 1348
+ },
+ {
+ "epoch": 18.74093490607252,
+ "grad_norm": 0.22172975540161133,
+ "learning_rate": 0.0006,
+ "loss": 3.967550277709961,
+ "step": 1349
+ },
+ {
+ "epoch": 18.75491480996068,
+ "grad_norm": 0.2170475423336029,
+ "learning_rate": 0.0006,
+ "loss": 3.9570775032043457,
+ "step": 1350
+ },
+ {
+ "epoch": 18.76889471384884,
+ "grad_norm": 0.21458806097507477,
+ "learning_rate": 0.0006,
+ "loss": 3.9461212158203125,
+ "step": 1351
+ },
+ {
+ "epoch": 18.782874617737004,
+ "grad_norm": 0.21101507544517517,
+ "learning_rate": 0.0006,
+ "loss": 3.984398365020752,
+ "step": 1352
+ },
+ {
+ "epoch": 18.796854521625164,
+ "grad_norm": 0.23480583727359772,
+ "learning_rate": 0.0006,
+ "loss": 3.950312614440918,
+ "step": 1353
+ },
+ {
+ "epoch": 18.810834425513324,
+ "grad_norm": 0.24728581309318542,
+ "learning_rate": 0.0006,
+ "loss": 3.9572393894195557,
+ "step": 1354
+ },
+ {
+ "epoch": 18.824814329401484,
+ "grad_norm": 0.26063451170921326,
+ "learning_rate": 0.0006,
+ "loss": 3.9653234481811523,
+ "step": 1355
+ },
+ {
+ "epoch": 18.838794233289647,
+ "grad_norm": 0.24679961800575256,
+ "learning_rate": 0.0006,
+ "loss": 3.9560108184814453,
+ "step": 1356
+ },
+ {
+ "epoch": 18.852774137177807,
+ "grad_norm": 0.23199526965618134,
+ "learning_rate": 0.0006,
+ "loss": 3.9948246479034424,
+ "step": 1357
+ },
+ {
+ "epoch": 18.866754041065967,
+ "grad_norm": 0.22619125247001648,
+ "learning_rate": 0.0006,
+ "loss": 3.9783573150634766,
+ "step": 1358
+ },
+ {
+ "epoch": 18.88073394495413,
+ "grad_norm": 0.25499874353408813,
+ "learning_rate": 0.0006,
+ "loss": 3.9674575328826904,
+ "step": 1359
+ },
+ {
+ "epoch": 18.89471384884229,
+ "grad_norm": 0.23961037397384644,
+ "learning_rate": 0.0006,
+ "loss": 3.969209909439087,
+ "step": 1360
+ },
+ {
+ "epoch": 18.90869375273045,
+ "grad_norm": 0.21039162576198578,
+ "learning_rate": 0.0006,
+ "loss": 3.978661060333252,
+ "step": 1361
+ },
+ {
+ "epoch": 18.92267365661861,
+ "grad_norm": 0.2297026664018631,
+ "learning_rate": 0.0006,
+ "loss": 3.9483046531677246,
+ "step": 1362
+ },
+ {
+ "epoch": 18.936653560506773,
+ "grad_norm": 0.26367098093032837,
+ "learning_rate": 0.0006,
+ "loss": 3.927133560180664,
+ "step": 1363
+ },
+ {
+ "epoch": 18.950633464394933,
+ "grad_norm": 0.26893147826194763,
+ "learning_rate": 0.0006,
+ "loss": 3.957932710647583,
+ "step": 1364
+ },
+ {
+ "epoch": 18.964613368283093,
+ "grad_norm": 0.27092233300209045,
+ "learning_rate": 0.0006,
+ "loss": 3.976621150970459,
+ "step": 1365
+ },
+ {
+ "epoch": 18.978593272171253,
+ "grad_norm": 0.2672635018825531,
+ "learning_rate": 0.0006,
+ "loss": 3.9577765464782715,
+ "step": 1366
+ },
+ {
+ "epoch": 18.992573176059416,
+ "grad_norm": 0.2721385359764099,
+ "learning_rate": 0.0006,
+ "loss": 3.986100196838379,
+ "step": 1367
+ },
+ {
+ "epoch": 19.0,
+ "grad_norm": 0.27648621797561646,
+ "learning_rate": 0.0006,
+ "loss": 3.9942402839660645,
+ "step": 1368
+ },
+ {
+ "epoch": 19.0,
+ "eval_loss": 4.180216312408447,
+ "eval_runtime": 44.0079,
+ "eval_samples_per_second": 55.49,
+ "eval_steps_per_second": 3.477,
+ "step": 1368
+ },
+ {
+ "epoch": 19.01397990388816,
+ "grad_norm": 0.2563098073005676,
+ "learning_rate": 0.0006,
+ "loss": 3.9267354011535645,
+ "step": 1369
+ },
+ {
+ "epoch": 19.027959807776323,
+ "grad_norm": 0.2531425952911377,
+ "learning_rate": 0.0006,
+ "loss": 3.9273324012756348,
+ "step": 1370
+ },
+ {
+ "epoch": 19.041939711664483,
+ "grad_norm": 0.27485427260398865,
+ "learning_rate": 0.0006,
+ "loss": 3.9542183876037598,
+ "step": 1371
+ },
+ {
+ "epoch": 19.055919615552643,
+ "grad_norm": 0.27509891986846924,
+ "learning_rate": 0.0006,
+ "loss": 3.921940326690674,
+ "step": 1372
+ },
+ {
+ "epoch": 19.069899519440803,
+ "grad_norm": 0.28154096007347107,
+ "learning_rate": 0.0006,
+ "loss": 3.926743984222412,
+ "step": 1373
+ },
+ {
+ "epoch": 19.083879423328966,
+ "grad_norm": 0.2749912738800049,
+ "learning_rate": 0.0006,
+ "loss": 3.9257748126983643,
+ "step": 1374
+ },
+ {
+ "epoch": 19.097859327217126,
+ "grad_norm": 0.26168501377105713,
+ "learning_rate": 0.0006,
+ "loss": 3.9403202533721924,
+ "step": 1375
+ },
+ {
+ "epoch": 19.111839231105286,
+ "grad_norm": 0.23410023748874664,
+ "learning_rate": 0.0006,
+ "loss": 3.935378313064575,
+ "step": 1376
+ },
+ {
+ "epoch": 19.125819134993446,
+ "grad_norm": 0.25790470838546753,
+ "learning_rate": 0.0006,
+ "loss": 3.946147918701172,
+ "step": 1377
+ },
+ {
+ "epoch": 19.13979903888161,
+ "grad_norm": 0.26704177260398865,
+ "learning_rate": 0.0006,
+ "loss": 3.9511594772338867,
+ "step": 1378
+ },
+ {
+ "epoch": 19.15377894276977,
+ "grad_norm": 0.2560667097568512,
+ "learning_rate": 0.0006,
+ "loss": 3.915806531906128,
+ "step": 1379
+ },
+ {
+ "epoch": 19.16775884665793,
+ "grad_norm": 0.24684149026870728,
+ "learning_rate": 0.0006,
+ "loss": 3.9162003993988037,
+ "step": 1380
+ },
+ {
+ "epoch": 19.18173875054609,
+ "grad_norm": 0.2097567766904831,
+ "learning_rate": 0.0006,
+ "loss": 3.915739059448242,
+ "step": 1381
+ },
+ {
+ "epoch": 19.195718654434252,
+ "grad_norm": 0.21646849811077118,
+ "learning_rate": 0.0006,
+ "loss": 3.9097084999084473,
+ "step": 1382
+ },
+ {
+ "epoch": 19.209698558322412,
+ "grad_norm": 0.20626980066299438,
+ "learning_rate": 0.0006,
+ "loss": 3.9541783332824707,
+ "step": 1383
+ },
+ {
+ "epoch": 19.22367846221057,
+ "grad_norm": 0.23362718522548676,
+ "learning_rate": 0.0006,
+ "loss": 3.950096845626831,
+ "step": 1384
+ },
+ {
+ "epoch": 19.23765836609873,
+ "grad_norm": 0.25402209162712097,
+ "learning_rate": 0.0006,
+ "loss": 3.927671432495117,
+ "step": 1385
+ },
+ {
+ "epoch": 19.251638269986895,
+ "grad_norm": 0.23714083433151245,
+ "learning_rate": 0.0006,
+ "loss": 3.939765453338623,
+ "step": 1386
+ },
+ {
+ "epoch": 19.265618173875055,
+ "grad_norm": 0.20895546674728394,
+ "learning_rate": 0.0006,
+ "loss": 3.9384806156158447,
+ "step": 1387
+ },
+ {
+ "epoch": 19.279598077763215,
+ "grad_norm": 0.21374300122261047,
+ "learning_rate": 0.0006,
+ "loss": 3.9523749351501465,
+ "step": 1388
+ },
+ {
+ "epoch": 19.293577981651374,
+ "grad_norm": 0.210394486784935,
+ "learning_rate": 0.0006,
+ "loss": 3.9540798664093018,
+ "step": 1389
+ },
+ {
+ "epoch": 19.307557885539538,
+ "grad_norm": 0.20646725594997406,
+ "learning_rate": 0.0006,
+ "loss": 3.9514098167419434,
+ "step": 1390
+ },
+ {
+ "epoch": 19.321537789427698,
+ "grad_norm": 0.21477538347244263,
+ "learning_rate": 0.0006,
+ "loss": 3.9369924068450928,
+ "step": 1391
+ },
+ {
+ "epoch": 19.335517693315857,
+ "grad_norm": 0.20431505143642426,
+ "learning_rate": 0.0006,
+ "loss": 3.9389796257019043,
+ "step": 1392
+ },
+ {
+ "epoch": 19.34949759720402,
+ "grad_norm": 0.19575877487659454,
+ "learning_rate": 0.0006,
+ "loss": 3.935976028442383,
+ "step": 1393
+ },
+ {
+ "epoch": 19.36347750109218,
+ "grad_norm": 0.20720405876636505,
+ "learning_rate": 0.0006,
+ "loss": 3.9670963287353516,
+ "step": 1394
+ },
+ {
+ "epoch": 19.37745740498034,
+ "grad_norm": 0.2173967957496643,
+ "learning_rate": 0.0006,
+ "loss": 3.903940439224243,
+ "step": 1395
+ },
+ {
+ "epoch": 19.3914373088685,
+ "grad_norm": 0.2180529683828354,
+ "learning_rate": 0.0006,
+ "loss": 3.8716301918029785,
+ "step": 1396
+ },
+ {
+ "epoch": 19.405417212756664,
+ "grad_norm": 0.20666591823101044,
+ "learning_rate": 0.0006,
+ "loss": 3.930936813354492,
+ "step": 1397
+ },
+ {
+ "epoch": 19.419397116644824,
+ "grad_norm": 0.20353034138679504,
+ "learning_rate": 0.0006,
+ "loss": 3.926954746246338,
+ "step": 1398
+ },
+ {
+ "epoch": 19.433377020532983,
+ "grad_norm": 0.22333289682865143,
+ "learning_rate": 0.0006,
+ "loss": 3.947504997253418,
+ "step": 1399
+ },
+ {
+ "epoch": 19.447356924421143,
+ "grad_norm": 0.21787697076797485,
+ "learning_rate": 0.0006,
+ "loss": 3.9325344562530518,
+ "step": 1400
+ },
+ {
+ "epoch": 19.461336828309307,
+ "grad_norm": 0.22805874049663544,
+ "learning_rate": 0.0006,
+ "loss": 3.9640727043151855,
+ "step": 1401
+ },
+ {
+ "epoch": 19.475316732197467,
+ "grad_norm": 0.22396457195281982,
+ "learning_rate": 0.0006,
+ "loss": 3.9537901878356934,
+ "step": 1402
+ },
+ {
+ "epoch": 19.489296636085626,
+ "grad_norm": 0.2333047240972519,
+ "learning_rate": 0.0006,
+ "loss": 3.935609817504883,
+ "step": 1403
+ },
+ {
+ "epoch": 19.503276539973786,
+ "grad_norm": 0.25063616037368774,
+ "learning_rate": 0.0006,
+ "loss": 3.9659228324890137,
+ "step": 1404
+ },
+ {
+ "epoch": 19.51725644386195,
+ "grad_norm": 0.29074087738990784,
+ "learning_rate": 0.0006,
+ "loss": 3.9552183151245117,
+ "step": 1405
+ },
+ {
+ "epoch": 19.53123634775011,
+ "grad_norm": 0.34876152873039246,
+ "learning_rate": 0.0006,
+ "loss": 3.976163387298584,
+ "step": 1406
+ },
+ {
+ "epoch": 19.54521625163827,
+ "grad_norm": 0.35026612877845764,
+ "learning_rate": 0.0006,
+ "loss": 3.961186408996582,
+ "step": 1407
+ },
+ {
+ "epoch": 19.55919615552643,
+ "grad_norm": 0.3199564218521118,
+ "learning_rate": 0.0006,
+ "loss": 3.9366297721862793,
+ "step": 1408
+ },
+ {
+ "epoch": 19.573176059414592,
+ "grad_norm": 0.2976185977458954,
+ "learning_rate": 0.0006,
+ "loss": 3.9502010345458984,
+ "step": 1409
+ },
+ {
+ "epoch": 19.587155963302752,
+ "grad_norm": 0.2951911687850952,
+ "learning_rate": 0.0006,
+ "loss": 3.9427943229675293,
+ "step": 1410
+ },
+ {
+ "epoch": 19.601135867190912,
+ "grad_norm": 0.27918702363967896,
+ "learning_rate": 0.0006,
+ "loss": 3.963700532913208,
+ "step": 1411
+ },
+ {
+ "epoch": 19.615115771079076,
+ "grad_norm": 0.26197490096092224,
+ "learning_rate": 0.0006,
+ "loss": 3.9636964797973633,
+ "step": 1412
+ },
+ {
+ "epoch": 19.629095674967235,
+ "grad_norm": 0.24242281913757324,
+ "learning_rate": 0.0006,
+ "loss": 3.961815595626831,
+ "step": 1413
+ },
+ {
+ "epoch": 19.643075578855395,
+ "grad_norm": 0.2606375515460968,
+ "learning_rate": 0.0006,
+ "loss": 3.946643352508545,
+ "step": 1414
+ },
+ {
+ "epoch": 19.657055482743555,
+ "grad_norm": 0.23353353142738342,
+ "learning_rate": 0.0006,
+ "loss": 3.973155975341797,
+ "step": 1415
+ },
+ {
+ "epoch": 19.67103538663172,
+ "grad_norm": 0.22872662544250488,
+ "learning_rate": 0.0006,
+ "loss": 3.9528894424438477,
+ "step": 1416
+ },
+ {
+ "epoch": 19.68501529051988,
+ "grad_norm": 0.24678432941436768,
+ "learning_rate": 0.0006,
+ "loss": 3.9313249588012695,
+ "step": 1417
+ },
+ {
+ "epoch": 19.698995194408038,
+ "grad_norm": 0.23895515501499176,
+ "learning_rate": 0.0006,
+ "loss": 3.944082498550415,
+ "step": 1418
+ },
+ {
+ "epoch": 19.712975098296198,
+ "grad_norm": 0.23649105429649353,
+ "learning_rate": 0.0006,
+ "loss": 3.962069034576416,
+ "step": 1419
+ },
+ {
+ "epoch": 19.72695500218436,
+ "grad_norm": 0.22031061351299286,
+ "learning_rate": 0.0006,
+ "loss": 3.912972927093506,
+ "step": 1420
+ },
+ {
+ "epoch": 19.74093490607252,
+ "grad_norm": 0.20231695473194122,
+ "learning_rate": 0.0006,
+ "loss": 3.964531421661377,
+ "step": 1421
+ },
+ {
+ "epoch": 19.75491480996068,
+ "grad_norm": 0.19980913400650024,
+ "learning_rate": 0.0006,
+ "loss": 3.9452600479125977,
+ "step": 1422
+ },
+ {
+ "epoch": 19.76889471384884,
+ "grad_norm": 0.21768775582313538,
+ "learning_rate": 0.0006,
+ "loss": 3.9214301109313965,
+ "step": 1423
+ },
+ {
+ "epoch": 19.782874617737004,
+ "grad_norm": 0.21287119388580322,
+ "learning_rate": 0.0006,
+ "loss": 3.9416494369506836,
+ "step": 1424
+ },
+ {
+ "epoch": 19.796854521625164,
+ "grad_norm": 0.21399827301502228,
+ "learning_rate": 0.0006,
+ "loss": 3.971010208129883,
+ "step": 1425
+ },
+ {
+ "epoch": 19.810834425513324,
+ "grad_norm": 0.1957658976316452,
+ "learning_rate": 0.0006,
+ "loss": 3.936331272125244,
+ "step": 1426
+ },
+ {
+ "epoch": 19.824814329401484,
+ "grad_norm": 0.19341488182544708,
+ "learning_rate": 0.0006,
+ "loss": 3.9321448802948,
+ "step": 1427
+ },
+ {
+ "epoch": 19.838794233289647,
+ "grad_norm": 0.18405723571777344,
+ "learning_rate": 0.0006,
+ "loss": 3.939542293548584,
+ "step": 1428
+ },
+ {
+ "epoch": 19.852774137177807,
+ "grad_norm": 0.19672836363315582,
+ "learning_rate": 0.0006,
+ "loss": 3.939652919769287,
+ "step": 1429
+ },
+ {
+ "epoch": 19.866754041065967,
+ "grad_norm": 0.1998940259218216,
+ "learning_rate": 0.0006,
+ "loss": 3.932892322540283,
+ "step": 1430
+ },
+ {
+ "epoch": 19.88073394495413,
+ "grad_norm": 0.2307668924331665,
+ "learning_rate": 0.0006,
+ "loss": 3.9402761459350586,
+ "step": 1431
+ },
+ {
+ "epoch": 19.89471384884229,
+ "grad_norm": 0.2531987726688385,
+ "learning_rate": 0.0006,
+ "loss": 3.9153199195861816,
+ "step": 1432
+ },
+ {
+ "epoch": 19.90869375273045,
+ "grad_norm": 0.2299388349056244,
+ "learning_rate": 0.0006,
+ "loss": 3.9569954872131348,
+ "step": 1433
+ },
+ {
+ "epoch": 19.92267365661861,
+ "grad_norm": 0.2503527104854584,
+ "learning_rate": 0.0006,
+ "loss": 3.9469428062438965,
+ "step": 1434
+ },
+ {
+ "epoch": 19.936653560506773,
+ "grad_norm": 0.25390249490737915,
+ "learning_rate": 0.0006,
+ "loss": 3.941803455352783,
+ "step": 1435
+ },
+ {
+ "epoch": 19.950633464394933,
+ "grad_norm": 0.2288687825202942,
+ "learning_rate": 0.0006,
+ "loss": 3.9385883808135986,
+ "step": 1436
+ },
+ {
+ "epoch": 19.964613368283093,
+ "grad_norm": 0.2231096774339676,
+ "learning_rate": 0.0006,
+ "loss": 3.9255237579345703,
+ "step": 1437
+ },
+ {
+ "epoch": 19.978593272171253,
+ "grad_norm": 0.20729343593120575,
+ "learning_rate": 0.0006,
+ "loss": 3.9443163871765137,
+ "step": 1438
+ },
+ {
+ "epoch": 19.992573176059416,
+ "grad_norm": 0.197743758559227,
+ "learning_rate": 0.0006,
+ "loss": 3.925455093383789,
+ "step": 1439
+ },
+ {
+ "epoch": 20.0,
+ "grad_norm": 0.23943661153316498,
+ "learning_rate": 0.0006,
+ "loss": 3.9458866119384766,
+ "step": 1440
+ },
+ {
+ "epoch": 20.0,
+ "eval_loss": 4.144192218780518,
+ "eval_runtime": 44.0278,
+ "eval_samples_per_second": 55.465,
+ "eval_steps_per_second": 3.475,
+ "step": 1440
+ },
+ {
+ "epoch": 20.01397990388816,
+ "grad_norm": 0.2032143622636795,
+ "learning_rate": 0.0006,
+ "loss": 3.9151499271392822,
+ "step": 1441
+ },
+ {
+ "epoch": 20.027959807776323,
+ "grad_norm": 0.20164789259433746,
+ "learning_rate": 0.0006,
+ "loss": 3.874115228652954,
+ "step": 1442
+ },
+ {
+ "epoch": 20.041939711664483,
+ "grad_norm": 0.20796619355678558,
+ "learning_rate": 0.0006,
+ "loss": 3.9090776443481445,
+ "step": 1443
+ },
+ {
+ "epoch": 20.055919615552643,
+ "grad_norm": 0.1999918520450592,
+ "learning_rate": 0.0006,
+ "loss": 3.926563262939453,
+ "step": 1444
+ },
+ {
+ "epoch": 20.069899519440803,
+ "grad_norm": 0.204790860414505,
+ "learning_rate": 0.0006,
+ "loss": 3.9088830947875977,
+ "step": 1445
+ },
+ {
+ "epoch": 20.083879423328966,
+ "grad_norm": 0.21507175266742706,
+ "learning_rate": 0.0006,
+ "loss": 3.916504383087158,
+ "step": 1446
+ },
+ {
+ "epoch": 20.097859327217126,
+ "grad_norm": 0.2398025095462799,
+ "learning_rate": 0.0006,
+ "loss": 3.9128990173339844,
+ "step": 1447
+ },
+ {
+ "epoch": 20.111839231105286,
+ "grad_norm": 0.26037144660949707,
+ "learning_rate": 0.0006,
+ "loss": 3.9125187397003174,
+ "step": 1448
+ },
+ {
+ "epoch": 20.125819134993446,
+ "grad_norm": 0.25564828515052795,
+ "learning_rate": 0.0006,
+ "loss": 3.891867160797119,
+ "step": 1449
+ },
+ {
+ "epoch": 20.13979903888161,
+ "grad_norm": 0.2767223119735718,
+ "learning_rate": 0.0006,
+ "loss": 3.9202775955200195,
+ "step": 1450
+ },
+ {
+ "epoch": 20.15377894276977,
+ "grad_norm": 0.27696558833122253,
+ "learning_rate": 0.0006,
+ "loss": 3.9231314659118652,
+ "step": 1451
+ },
+ {
+ "epoch": 20.16775884665793,
+ "grad_norm": 0.3054044246673584,
+ "learning_rate": 0.0006,
+ "loss": 3.918138027191162,
+ "step": 1452
+ },
+ {
+ "epoch": 20.18173875054609,
+ "grad_norm": 0.3018973171710968,
+ "learning_rate": 0.0006,
+ "loss": 3.890678882598877,
+ "step": 1453
+ },
+ {
+ "epoch": 20.195718654434252,
+ "grad_norm": 0.306232750415802,
+ "learning_rate": 0.0006,
+ "loss": 3.920753002166748,
+ "step": 1454
+ },
+ {
+ "epoch": 20.209698558322412,
+ "grad_norm": 0.29593729972839355,
+ "learning_rate": 0.0006,
+ "loss": 3.9455509185791016,
+ "step": 1455
+ },
+ {
+ "epoch": 20.22367846221057,
+ "grad_norm": 0.2937646210193634,
+ "learning_rate": 0.0006,
+ "loss": 3.9227709770202637,
+ "step": 1456
+ },
+ {
+ "epoch": 20.23765836609873,
+ "grad_norm": 0.26380231976509094,
+ "learning_rate": 0.0006,
+ "loss": 3.9097609519958496,
+ "step": 1457
+ },
+ {
+ "epoch": 20.251638269986895,
+ "grad_norm": 0.24992692470550537,
+ "learning_rate": 0.0006,
+ "loss": 3.9393627643585205,
+ "step": 1458
+ },
+ {
+ "epoch": 20.265618173875055,
+ "grad_norm": 0.270219087600708,
+ "learning_rate": 0.0006,
+ "loss": 3.929330348968506,
+ "step": 1459
+ },
+ {
+ "epoch": 20.279598077763215,
+ "grad_norm": 0.2860020399093628,
+ "learning_rate": 0.0006,
+ "loss": 3.8947913646698,
+ "step": 1460
+ },
+ {
+ "epoch": 20.293577981651374,
+ "grad_norm": 0.27494579553604126,
+ "learning_rate": 0.0006,
+ "loss": 3.9105992317199707,
+ "step": 1461
+ },
+ {
+ "epoch": 20.307557885539538,
+ "grad_norm": 0.26467713713645935,
+ "learning_rate": 0.0006,
+ "loss": 3.914632797241211,
+ "step": 1462
+ },
+ {
+ "epoch": 20.321537789427698,
+ "grad_norm": 0.25747713446617126,
+ "learning_rate": 0.0006,
+ "loss": 3.919846534729004,
+ "step": 1463
+ },
+ {
+ "epoch": 20.335517693315857,
+ "grad_norm": 0.24027711153030396,
+ "learning_rate": 0.0006,
+ "loss": 3.904740810394287,
+ "step": 1464
+ },
+ {
+ "epoch": 20.34949759720402,
+ "grad_norm": 0.24682414531707764,
+ "learning_rate": 0.0006,
+ "loss": 3.9190149307250977,
+ "step": 1465
+ },
+ {
+ "epoch": 20.36347750109218,
+ "grad_norm": 0.2619759440422058,
+ "learning_rate": 0.0006,
+ "loss": 3.9488329887390137,
+ "step": 1466
+ },
+ {
+ "epoch": 20.37745740498034,
+ "grad_norm": 0.2632448971271515,
+ "learning_rate": 0.0006,
+ "loss": 3.9216647148132324,
+ "step": 1467
+ },
+ {
+ "epoch": 20.3914373088685,
+ "grad_norm": 0.27569764852523804,
+ "learning_rate": 0.0006,
+ "loss": 3.9178895950317383,
+ "step": 1468
+ },
+ {
+ "epoch": 20.405417212756664,
+ "grad_norm": 0.2611774802207947,
+ "learning_rate": 0.0006,
+ "loss": 3.933730125427246,
+ "step": 1469
+ },
+ {
+ "epoch": 20.419397116644824,
+ "grad_norm": 0.2839447557926178,
+ "learning_rate": 0.0006,
+ "loss": 3.9261364936828613,
+ "step": 1470
+ },
+ {
+ "epoch": 20.433377020532983,
+ "grad_norm": 0.29006227850914,
+ "learning_rate": 0.0006,
+ "loss": 3.9157633781433105,
+ "step": 1471
+ },
+ {
+ "epoch": 20.447356924421143,
+ "grad_norm": 0.2809498906135559,
+ "learning_rate": 0.0006,
+ "loss": 3.9211745262145996,
+ "step": 1472
+ },
+ {
+ "epoch": 20.461336828309307,
+ "grad_norm": 0.27859532833099365,
+ "learning_rate": 0.0006,
+ "loss": 3.9115967750549316,
+ "step": 1473
+ },
+ {
+ "epoch": 20.475316732197467,
+ "grad_norm": 0.29114410281181335,
+ "learning_rate": 0.0006,
+ "loss": 3.9024441242218018,
+ "step": 1474
+ },
+ {
+ "epoch": 20.489296636085626,
+ "grad_norm": 0.2686930000782013,
+ "learning_rate": 0.0006,
+ "loss": 3.9497199058532715,
+ "step": 1475
+ },
+ {
+ "epoch": 20.503276539973786,
+ "grad_norm": 0.24120540916919708,
+ "learning_rate": 0.0006,
+ "loss": 3.9218955039978027,
+ "step": 1476
+ },
+ {
+ "epoch": 20.51725644386195,
+ "grad_norm": 0.23689547181129456,
+ "learning_rate": 0.0006,
+ "loss": 3.9410176277160645,
+ "step": 1477
+ },
+ {
+ "epoch": 20.53123634775011,
+ "grad_norm": 0.26382362842559814,
+ "learning_rate": 0.0006,
+ "loss": 3.8880343437194824,
+ "step": 1478
+ },
+ {
+ "epoch": 20.54521625163827,
+ "grad_norm": 0.21628661453723907,
+ "learning_rate": 0.0006,
+ "loss": 3.892622470855713,
+ "step": 1479
+ },
+ {
+ "epoch": 20.55919615552643,
+ "grad_norm": 0.19896996021270752,
+ "learning_rate": 0.0006,
+ "loss": 3.938734769821167,
+ "step": 1480
+ },
+ {
+ "epoch": 20.573176059414592,
+ "grad_norm": 0.20232494175434113,
+ "learning_rate": 0.0006,
+ "loss": 3.9197006225585938,
+ "step": 1481
+ },
+ {
+ "epoch": 20.587155963302752,
+ "grad_norm": 0.21807828545570374,
+ "learning_rate": 0.0006,
+ "loss": 3.9195618629455566,
+ "step": 1482
+ },
+ {
+ "epoch": 20.601135867190912,
+ "grad_norm": 0.21778680384159088,
+ "learning_rate": 0.0006,
+ "loss": 3.913395404815674,
+ "step": 1483
+ },
+ {
+ "epoch": 20.615115771079076,
+ "grad_norm": 0.21015185117721558,
+ "learning_rate": 0.0006,
+ "loss": 3.8858234882354736,
+ "step": 1484
+ },
+ {
+ "epoch": 20.629095674967235,
+ "grad_norm": 0.20131368935108185,
+ "learning_rate": 0.0006,
+ "loss": 3.927213430404663,
+ "step": 1485
+ },
+ {
+ "epoch": 20.643075578855395,
+ "grad_norm": 0.20746243000030518,
+ "learning_rate": 0.0006,
+ "loss": 3.913198471069336,
+ "step": 1486
+ },
+ {
+ "epoch": 20.657055482743555,
+ "grad_norm": 0.2024548053741455,
+ "learning_rate": 0.0006,
+ "loss": 3.923048257827759,
+ "step": 1487
+ },
+ {
+ "epoch": 20.67103538663172,
+ "grad_norm": 0.19735988974571228,
+ "learning_rate": 0.0006,
+ "loss": 3.9136500358581543,
+ "step": 1488
+ },
+ {
+ "epoch": 20.68501529051988,
+ "grad_norm": 0.19781625270843506,
+ "learning_rate": 0.0006,
+ "loss": 3.883793592453003,
+ "step": 1489
+ },
+ {
+ "epoch": 20.698995194408038,
+ "grad_norm": 0.1911996454000473,
+ "learning_rate": 0.0006,
+ "loss": 3.9078567028045654,
+ "step": 1490
+ },
+ {
+ "epoch": 20.712975098296198,
+ "grad_norm": 0.1989123821258545,
+ "learning_rate": 0.0006,
+ "loss": 3.9314043521881104,
+ "step": 1491
+ },
+ {
+ "epoch": 20.72695500218436,
+ "grad_norm": 0.18839342892169952,
+ "learning_rate": 0.0006,
+ "loss": 3.8955953121185303,
+ "step": 1492
+ },
+ {
+ "epoch": 20.74093490607252,
+ "grad_norm": 0.1944834142923355,
+ "learning_rate": 0.0006,
+ "loss": 3.9272377490997314,
+ "step": 1493
+ },
+ {
+ "epoch": 20.75491480996068,
+ "grad_norm": 0.20829126238822937,
+ "learning_rate": 0.0006,
+ "loss": 3.878857374191284,
+ "step": 1494
+ },
+ {
+ "epoch": 20.76889471384884,
+ "grad_norm": 0.21438424289226532,
+ "learning_rate": 0.0006,
+ "loss": 3.9155564308166504,
+ "step": 1495
+ },
+ {
+ "epoch": 20.782874617737004,
+ "grad_norm": 0.22309324145317078,
+ "learning_rate": 0.0006,
+ "loss": 3.9281692504882812,
+ "step": 1496
+ },
+ {
+ "epoch": 20.796854521625164,
+ "grad_norm": 0.2053767591714859,
+ "learning_rate": 0.0006,
+ "loss": 3.9096317291259766,
+ "step": 1497
+ },
+ {
+ "epoch": 20.810834425513324,
+ "grad_norm": 0.20429186522960663,
+ "learning_rate": 0.0006,
+ "loss": 3.9184865951538086,
+ "step": 1498
+ },
+ {
+ "epoch": 20.824814329401484,
+ "grad_norm": 0.21983473002910614,
+ "learning_rate": 0.0006,
+ "loss": 3.9130771160125732,
+ "step": 1499
+ },
+ {
+ "epoch": 20.838794233289647,
+ "grad_norm": 0.21649539470672607,
+ "learning_rate": 0.0006,
+ "loss": 3.921581268310547,
+ "step": 1500
+ },
+ {
+ "epoch": 20.852774137177807,
+ "grad_norm": 0.19645053148269653,
+ "learning_rate": 0.0006,
+ "loss": 3.966360092163086,
+ "step": 1501
+ },
+ {
+ "epoch": 20.866754041065967,
+ "grad_norm": 0.2126782387495041,
+ "learning_rate": 0.0006,
+ "loss": 3.9004554748535156,
+ "step": 1502
+ },
+ {
+ "epoch": 20.88073394495413,
+ "grad_norm": 0.22359658777713776,
+ "learning_rate": 0.0006,
+ "loss": 3.92336368560791,
+ "step": 1503
+ },
+ {
+ "epoch": 20.89471384884229,
+ "grad_norm": 0.2334042638540268,
+ "learning_rate": 0.0006,
+ "loss": 3.9188671112060547,
+ "step": 1504
+ },
+ {
+ "epoch": 20.90869375273045,
+ "grad_norm": 0.24595916271209717,
+ "learning_rate": 0.0006,
+ "loss": 3.9348371028900146,
+ "step": 1505
+ },
+ {
+ "epoch": 20.92267365661861,
+ "grad_norm": 0.24177910387516022,
+ "learning_rate": 0.0006,
+ "loss": 3.8796424865722656,
+ "step": 1506
+ },
+ {
+ "epoch": 20.936653560506773,
+ "grad_norm": 0.24193289875984192,
+ "learning_rate": 0.0006,
+ "loss": 3.892627716064453,
+ "step": 1507
+ },
+ {
+ "epoch": 20.950633464394933,
+ "grad_norm": 0.252849280834198,
+ "learning_rate": 0.0006,
+ "loss": 3.9300179481506348,
+ "step": 1508
+ },
+ {
+ "epoch": 20.964613368283093,
+ "grad_norm": 0.24933326244354248,
+ "learning_rate": 0.0006,
+ "loss": 3.9597225189208984,
+ "step": 1509
+ },
+ {
+ "epoch": 20.978593272171253,
+ "grad_norm": 0.23850969970226288,
+ "learning_rate": 0.0006,
+ "loss": 3.9027397632598877,
+ "step": 1510
+ },
+ {
+ "epoch": 20.992573176059416,
+ "grad_norm": 0.23298311233520508,
+ "learning_rate": 0.0006,
+ "loss": 3.9024105072021484,
+ "step": 1511
+ },
+ {
+ "epoch": 21.0,
+ "grad_norm": 0.2467455416917801,
+ "learning_rate": 0.0006,
+ "loss": 3.915929079055786,
+ "step": 1512
+ },
+ {
+ "epoch": 21.0,
+ "eval_loss": 4.136331081390381,
+ "eval_runtime": 43.9468,
+ "eval_samples_per_second": 55.567,
+ "eval_steps_per_second": 3.481,
+ "step": 1512
+ },
+ {
+ "epoch": 21.01397990388816,
+ "grad_norm": 0.2195885181427002,
+ "learning_rate": 0.0006,
+ "loss": 3.873412847518921,
+ "step": 1513
+ },
+ {
+ "epoch": 21.027959807776323,
+ "grad_norm": 0.24250614643096924,
+ "learning_rate": 0.0006,
+ "loss": 3.882302761077881,
+ "step": 1514
+ },
+ {
+ "epoch": 21.041939711664483,
+ "grad_norm": 0.249113991856575,
+ "learning_rate": 0.0006,
+ "loss": 3.9112048149108887,
+ "step": 1515
+ },
+ {
+ "epoch": 21.055919615552643,
+ "grad_norm": 0.25365301966667175,
+ "learning_rate": 0.0006,
+ "loss": 3.8625712394714355,
+ "step": 1516
+ },
+ {
+ "epoch": 21.069899519440803,
+ "grad_norm": 0.2218591272830963,
+ "learning_rate": 0.0006,
+ "loss": 3.876072406768799,
+ "step": 1517
+ },
+ {
+ "epoch": 21.083879423328966,
+ "grad_norm": 0.238582581281662,
+ "learning_rate": 0.0006,
+ "loss": 3.862060546875,
+ "step": 1518
+ },
+ {
+ "epoch": 21.097859327217126,
+ "grad_norm": 0.25051242113113403,
+ "learning_rate": 0.0006,
+ "loss": 3.905315399169922,
+ "step": 1519
+ },
+ {
+ "epoch": 21.111839231105286,
+ "grad_norm": 0.2391843944787979,
+ "learning_rate": 0.0006,
+ "loss": 3.909144401550293,
+ "step": 1520
+ },
+ {
+ "epoch": 21.125819134993446,
+ "grad_norm": 0.230543315410614,
+ "learning_rate": 0.0006,
+ "loss": 3.8856799602508545,
+ "step": 1521
+ },
+ {
+ "epoch": 21.13979903888161,
+ "grad_norm": 0.24165484309196472,
+ "learning_rate": 0.0006,
+ "loss": 3.893883228302002,
+ "step": 1522
+ },
+ {
+ "epoch": 21.15377894276977,
+ "grad_norm": 0.24657143652439117,
+ "learning_rate": 0.0006,
+ "loss": 3.901129722595215,
+ "step": 1523
+ },
+ {
+ "epoch": 21.16775884665793,
+ "grad_norm": 0.2659998834133148,
+ "learning_rate": 0.0006,
+ "loss": 3.910468101501465,
+ "step": 1524
+ },
+ {
+ "epoch": 21.18173875054609,
+ "grad_norm": 0.2673095166683197,
+ "learning_rate": 0.0006,
+ "loss": 3.917454242706299,
+ "step": 1525
+ },
+ {
+ "epoch": 21.195718654434252,
+ "grad_norm": 0.22122322022914886,
+ "learning_rate": 0.0006,
+ "loss": 3.9017257690429688,
+ "step": 1526
+ },
+ {
+ "epoch": 21.209698558322412,
+ "grad_norm": 0.21882867813110352,
+ "learning_rate": 0.0006,
+ "loss": 3.8605496883392334,
+ "step": 1527
+ },
+ {
+ "epoch": 21.22367846221057,
+ "grad_norm": 0.22335563600063324,
+ "learning_rate": 0.0006,
+ "loss": 3.88120174407959,
+ "step": 1528
+ },
+ {
+ "epoch": 21.23765836609873,
+ "grad_norm": 0.22973211109638214,
+ "learning_rate": 0.0006,
+ "loss": 3.8636834621429443,
+ "step": 1529
+ },
+ {
+ "epoch": 21.251638269986895,
+ "grad_norm": 0.2410288006067276,
+ "learning_rate": 0.0006,
+ "loss": 3.8698177337646484,
+ "step": 1530
+ },
+ {
+ "epoch": 21.265618173875055,
+ "grad_norm": 0.2454768717288971,
+ "learning_rate": 0.0006,
+ "loss": 3.905341148376465,
+ "step": 1531
+ },
+ {
+ "epoch": 21.279598077763215,
+ "grad_norm": 0.2271580696105957,
+ "learning_rate": 0.0006,
+ "loss": 3.864063262939453,
+ "step": 1532
+ },
+ {
+ "epoch": 21.293577981651374,
+ "grad_norm": 0.2200947403907776,
+ "learning_rate": 0.0006,
+ "loss": 3.8889589309692383,
+ "step": 1533
+ },
+ {
+ "epoch": 21.307557885539538,
+ "grad_norm": 0.2180824875831604,
+ "learning_rate": 0.0006,
+ "loss": 3.8873472213745117,
+ "step": 1534
+ },
+ {
+ "epoch": 21.321537789427698,
+ "grad_norm": 0.214975506067276,
+ "learning_rate": 0.0006,
+ "loss": 3.882307529449463,
+ "step": 1535
+ },
+ {
+ "epoch": 21.335517693315857,
+ "grad_norm": 0.21411260962486267,
+ "learning_rate": 0.0006,
+ "loss": 3.8861560821533203,
+ "step": 1536
+ },
+ {
+ "epoch": 21.34949759720402,
+ "grad_norm": 0.22635889053344727,
+ "learning_rate": 0.0006,
+ "loss": 3.9174342155456543,
+ "step": 1537
+ },
+ {
+ "epoch": 21.36347750109218,
+ "grad_norm": 0.22700625658035278,
+ "learning_rate": 0.0006,
+ "loss": 3.890416383743286,
+ "step": 1538
+ },
+ {
+ "epoch": 21.37745740498034,
+ "grad_norm": 0.2106025069952011,
+ "learning_rate": 0.0006,
+ "loss": 3.8672406673431396,
+ "step": 1539
+ },
+ {
+ "epoch": 21.3914373088685,
+ "grad_norm": 0.22994661331176758,
+ "learning_rate": 0.0006,
+ "loss": 3.893190383911133,
+ "step": 1540
+ },
+ {
+ "epoch": 21.405417212756664,
+ "grad_norm": 0.24701105058193207,
+ "learning_rate": 0.0006,
+ "loss": 3.898078441619873,
+ "step": 1541
+ },
+ {
+ "epoch": 21.419397116644824,
+ "grad_norm": 0.26914113759994507,
+ "learning_rate": 0.0006,
+ "loss": 3.905871868133545,
+ "step": 1542
+ },
+ {
+ "epoch": 21.433377020532983,
+ "grad_norm": 0.2904224097728729,
+ "learning_rate": 0.0006,
+ "loss": 3.8919103145599365,
+ "step": 1543
+ },
+ {
+ "epoch": 21.447356924421143,
+ "grad_norm": 0.2911844551563263,
+ "learning_rate": 0.0006,
+ "loss": 3.9073286056518555,
+ "step": 1544
+ },
+ {
+ "epoch": 21.461336828309307,
+ "grad_norm": 0.2742345929145813,
+ "learning_rate": 0.0006,
+ "loss": 3.9075546264648438,
+ "step": 1545
+ },
+ {
+ "epoch": 21.475316732197467,
+ "grad_norm": 0.2341093122959137,
+ "learning_rate": 0.0006,
+ "loss": 3.9232025146484375,
+ "step": 1546
+ },
+ {
+ "epoch": 21.489296636085626,
+ "grad_norm": 0.22808541357517242,
+ "learning_rate": 0.0006,
+ "loss": 3.9168174266815186,
+ "step": 1547
+ },
+ {
+ "epoch": 21.503276539973786,
+ "grad_norm": 0.23049889504909515,
+ "learning_rate": 0.0006,
+ "loss": 3.8850595951080322,
+ "step": 1548
+ },
+ {
+ "epoch": 21.51725644386195,
+ "grad_norm": 0.21519650518894196,
+ "learning_rate": 0.0006,
+ "loss": 3.891313076019287,
+ "step": 1549
+ },
+ {
+ "epoch": 21.53123634775011,
+ "grad_norm": 0.20999883115291595,
+ "learning_rate": 0.0006,
+ "loss": 3.894439220428467,
+ "step": 1550
+ },
+ {
+ "epoch": 21.54521625163827,
+ "grad_norm": 0.19641105830669403,
+ "learning_rate": 0.0006,
+ "loss": 3.894871473312378,
+ "step": 1551
+ },
+ {
+ "epoch": 21.55919615552643,
+ "grad_norm": 0.19108249247074127,
+ "learning_rate": 0.0006,
+ "loss": 3.905968189239502,
+ "step": 1552
+ },
+ {
+ "epoch": 21.573176059414592,
+ "grad_norm": 0.20222234725952148,
+ "learning_rate": 0.0006,
+ "loss": 3.90565824508667,
+ "step": 1553
+ },
+ {
+ "epoch": 21.587155963302752,
+ "grad_norm": 0.20620177686214447,
+ "learning_rate": 0.0006,
+ "loss": 3.9103245735168457,
+ "step": 1554
+ },
+ {
+ "epoch": 21.601135867190912,
+ "grad_norm": 0.2149713784456253,
+ "learning_rate": 0.0006,
+ "loss": 3.8864927291870117,
+ "step": 1555
+ },
+ {
+ "epoch": 21.615115771079076,
+ "grad_norm": 0.2354084551334381,
+ "learning_rate": 0.0006,
+ "loss": 3.905095100402832,
+ "step": 1556
+ },
+ {
+ "epoch": 21.629095674967235,
+ "grad_norm": 0.23949941992759705,
+ "learning_rate": 0.0006,
+ "loss": 3.901803493499756,
+ "step": 1557
+ },
+ {
+ "epoch": 21.643075578855395,
+ "grad_norm": 0.22914277017116547,
+ "learning_rate": 0.0006,
+ "loss": 3.876044273376465,
+ "step": 1558
+ },
+ {
+ "epoch": 21.657055482743555,
+ "grad_norm": 0.2363225370645523,
+ "learning_rate": 0.0006,
+ "loss": 3.910841703414917,
+ "step": 1559
+ },
+ {
+ "epoch": 21.67103538663172,
+ "grad_norm": 0.2635626792907715,
+ "learning_rate": 0.0006,
+ "loss": 3.847407579421997,
+ "step": 1560
+ },
+ {
+ "epoch": 21.68501529051988,
+ "grad_norm": 0.2499786615371704,
+ "learning_rate": 0.0006,
+ "loss": 3.8667140007019043,
+ "step": 1561
+ },
+ {
+ "epoch": 21.698995194408038,
+ "grad_norm": 0.21609611809253693,
+ "learning_rate": 0.0006,
+ "loss": 3.895470142364502,
+ "step": 1562
+ },
+ {
+ "epoch": 21.712975098296198,
+ "grad_norm": 0.2466774582862854,
+ "learning_rate": 0.0006,
+ "loss": 3.8853235244750977,
+ "step": 1563
+ },
+ {
+ "epoch": 21.72695500218436,
+ "grad_norm": 0.23791883885860443,
+ "learning_rate": 0.0006,
+ "loss": 3.899418354034424,
+ "step": 1564
+ },
+ {
+ "epoch": 21.74093490607252,
+ "grad_norm": 0.2048920840024948,
+ "learning_rate": 0.0006,
+ "loss": 3.8992419242858887,
+ "step": 1565
+ },
+ {
+ "epoch": 21.75491480996068,
+ "grad_norm": 0.22266621887683868,
+ "learning_rate": 0.0006,
+ "loss": 3.885765552520752,
+ "step": 1566
+ },
+ {
+ "epoch": 21.76889471384884,
+ "grad_norm": 0.2508748769760132,
+ "learning_rate": 0.0006,
+ "loss": 3.8797037601470947,
+ "step": 1567
+ },
+ {
+ "epoch": 21.782874617737004,
+ "grad_norm": 0.27245673537254333,
+ "learning_rate": 0.0006,
+ "loss": 3.8743176460266113,
+ "step": 1568
+ },
+ {
+ "epoch": 21.796854521625164,
+ "grad_norm": 0.25503191351890564,
+ "learning_rate": 0.0006,
+ "loss": 3.868906259536743,
+ "step": 1569
+ },
+ {
+ "epoch": 21.810834425513324,
+ "grad_norm": 0.22984394431114197,
+ "learning_rate": 0.0006,
+ "loss": 3.9051015377044678,
+ "step": 1570
+ },
+ {
+ "epoch": 21.824814329401484,
+ "grad_norm": 0.2411898821592331,
+ "learning_rate": 0.0006,
+ "loss": 3.8911490440368652,
+ "step": 1571
+ },
+ {
+ "epoch": 21.838794233289647,
+ "grad_norm": 0.22609318792819977,
+ "learning_rate": 0.0006,
+ "loss": 3.894839286804199,
+ "step": 1572
+ },
+ {
+ "epoch": 21.852774137177807,
+ "grad_norm": 0.21904583275318146,
+ "learning_rate": 0.0006,
+ "loss": 3.9314537048339844,
+ "step": 1573
+ },
+ {
+ "epoch": 21.866754041065967,
+ "grad_norm": 0.21869723498821259,
+ "learning_rate": 0.0006,
+ "loss": 3.9141433238983154,
+ "step": 1574
+ },
+ {
+ "epoch": 21.88073394495413,
+ "grad_norm": 0.21682019531726837,
+ "learning_rate": 0.0006,
+ "loss": 3.867898464202881,
+ "step": 1575
+ },
+ {
+ "epoch": 21.89471384884229,
+ "grad_norm": 0.2211964726448059,
+ "learning_rate": 0.0006,
+ "loss": 3.8892226219177246,
+ "step": 1576
+ },
+ {
+ "epoch": 21.90869375273045,
+ "grad_norm": 0.2097381353378296,
+ "learning_rate": 0.0006,
+ "loss": 3.9194154739379883,
+ "step": 1577
+ },
+ {
+ "epoch": 21.92267365661861,
+ "grad_norm": 0.21229565143585205,
+ "learning_rate": 0.0006,
+ "loss": 3.924694538116455,
+ "step": 1578
+ },
+ {
+ "epoch": 21.936653560506773,
+ "grad_norm": 0.2186083346605301,
+ "learning_rate": 0.0006,
+ "loss": 3.904440402984619,
+ "step": 1579
+ },
+ {
+ "epoch": 21.950633464394933,
+ "grad_norm": 0.21112321317195892,
+ "learning_rate": 0.0006,
+ "loss": 3.905674934387207,
+ "step": 1580
+ },
+ {
+ "epoch": 21.964613368283093,
+ "grad_norm": 0.20867373049259186,
+ "learning_rate": 0.0006,
+ "loss": 3.8761563301086426,
+ "step": 1581
+ },
+ {
+ "epoch": 21.978593272171253,
+ "grad_norm": 0.21640732884407043,
+ "learning_rate": 0.0006,
+ "loss": 3.871950149536133,
+ "step": 1582
+ },
+ {
+ "epoch": 21.992573176059416,
+ "grad_norm": 0.21920442581176758,
+ "learning_rate": 0.0006,
+ "loss": 3.8853464126586914,
+ "step": 1583
+ },
+ {
+ "epoch": 22.0,
+ "grad_norm": 0.24132665991783142,
+ "learning_rate": 0.0006,
+ "loss": 3.9012184143066406,
+ "step": 1584
+ },
+ {
+ "epoch": 22.0,
+ "eval_loss": 4.108598232269287,
+ "eval_runtime": 44.0434,
+ "eval_samples_per_second": 55.445,
+ "eval_steps_per_second": 3.474,
+ "step": 1584
+ },
+ {
+ "epoch": 22.01397990388816,
+ "grad_norm": 0.21989449858665466,
+ "learning_rate": 0.0006,
+ "loss": 3.8657469749450684,
+ "step": 1585
+ },
+ {
+ "epoch": 22.027959807776323,
+ "grad_norm": 0.20416802167892456,
+ "learning_rate": 0.0006,
+ "loss": 3.8682117462158203,
+ "step": 1586
+ },
+ {
+ "epoch": 22.041939711664483,
+ "grad_norm": 0.20651975274085999,
+ "learning_rate": 0.0006,
+ "loss": 3.8501222133636475,
+ "step": 1587
+ },
+ {
+ "epoch": 22.055919615552643,
+ "grad_norm": 0.22987176477909088,
+ "learning_rate": 0.0006,
+ "loss": 3.8830955028533936,
+ "step": 1588
+ },
+ {
+ "epoch": 22.069899519440803,
+ "grad_norm": 0.23308858275413513,
+ "learning_rate": 0.0006,
+ "loss": 3.8659040927886963,
+ "step": 1589
+ },
+ {
+ "epoch": 22.083879423328966,
+ "grad_norm": 0.2144266963005066,
+ "learning_rate": 0.0006,
+ "loss": 3.8311047554016113,
+ "step": 1590
+ },
+ {
+ "epoch": 22.097859327217126,
+ "grad_norm": 0.2052636295557022,
+ "learning_rate": 0.0006,
+ "loss": 3.8700156211853027,
+ "step": 1591
+ },
+ {
+ "epoch": 22.111839231105286,
+ "grad_norm": 0.22792384028434753,
+ "learning_rate": 0.0006,
+ "loss": 3.8799097537994385,
+ "step": 1592
+ },
+ {
+ "epoch": 22.125819134993446,
+ "grad_norm": 0.2533944249153137,
+ "learning_rate": 0.0006,
+ "loss": 3.874959945678711,
+ "step": 1593
+ },
+ {
+ "epoch": 22.13979903888161,
+ "grad_norm": 0.27126258611679077,
+ "learning_rate": 0.0006,
+ "loss": 3.863774299621582,
+ "step": 1594
+ },
+ {
+ "epoch": 22.15377894276977,
+ "grad_norm": 0.2634040415287018,
+ "learning_rate": 0.0006,
+ "loss": 3.8876869678497314,
+ "step": 1595
+ },
+ {
+ "epoch": 22.16775884665793,
+ "grad_norm": 0.267987459897995,
+ "learning_rate": 0.0006,
+ "loss": 3.871776819229126,
+ "step": 1596
+ },
+ {
+ "epoch": 22.18173875054609,
+ "grad_norm": 0.2972337305545807,
+ "learning_rate": 0.0006,
+ "loss": 3.8453969955444336,
+ "step": 1597
+ },
+ {
+ "epoch": 22.195718654434252,
+ "grad_norm": 0.3012159764766693,
+ "learning_rate": 0.0006,
+ "loss": 3.8774254322052,
+ "step": 1598
+ },
+ {
+ "epoch": 22.209698558322412,
+ "grad_norm": 0.27275875210762024,
+ "learning_rate": 0.0006,
+ "loss": 3.8558950424194336,
+ "step": 1599
+ },
+ {
+ "epoch": 22.22367846221057,
+ "grad_norm": 0.2817993462085724,
+ "learning_rate": 0.0006,
+ "loss": 3.872211217880249,
+ "step": 1600
+ },
+ {
+ "epoch": 22.23765836609873,
+ "grad_norm": 0.28823208808898926,
+ "learning_rate": 0.0006,
+ "loss": 3.847616672515869,
+ "step": 1601
+ },
+ {
+ "epoch": 22.251638269986895,
+ "grad_norm": 0.2646387815475464,
+ "learning_rate": 0.0006,
+ "loss": 3.8993802070617676,
+ "step": 1602
+ },
+ {
+ "epoch": 22.265618173875055,
+ "grad_norm": 0.27664077281951904,
+ "learning_rate": 0.0006,
+ "loss": 3.858553409576416,
+ "step": 1603
+ },
+ {
+ "epoch": 22.279598077763215,
+ "grad_norm": 0.27708905935287476,
+ "learning_rate": 0.0006,
+ "loss": 3.8691039085388184,
+ "step": 1604
+ },
+ {
+ "epoch": 22.293577981651374,
+ "grad_norm": 0.3045521378517151,
+ "learning_rate": 0.0006,
+ "loss": 3.8721439838409424,
+ "step": 1605
+ },
+ {
+ "epoch": 22.307557885539538,
+ "grad_norm": 0.3481914699077606,
+ "learning_rate": 0.0006,
+ "loss": 3.894503593444824,
+ "step": 1606
+ },
+ {
+ "epoch": 22.321537789427698,
+ "grad_norm": 0.3298046588897705,
+ "learning_rate": 0.0006,
+ "loss": 3.8420844078063965,
+ "step": 1607
+ },
+ {
+ "epoch": 22.335517693315857,
+ "grad_norm": 0.24967724084854126,
+ "learning_rate": 0.0006,
+ "loss": 3.8892619609832764,
+ "step": 1608
+ },
+ {
+ "epoch": 22.34949759720402,
+ "grad_norm": 0.22645241022109985,
+ "learning_rate": 0.0006,
+ "loss": 3.873265504837036,
+ "step": 1609
+ },
+ {
+ "epoch": 22.36347750109218,
+ "grad_norm": 0.22813954949378967,
+ "learning_rate": 0.0006,
+ "loss": 3.8658013343811035,
+ "step": 1610
+ },
+ {
+ "epoch": 22.37745740498034,
+ "grad_norm": 0.23825274407863617,
+ "learning_rate": 0.0006,
+ "loss": 3.885456085205078,
+ "step": 1611
+ },
+ {
+ "epoch": 22.3914373088685,
+ "grad_norm": 0.23612336814403534,
+ "learning_rate": 0.0006,
+ "loss": 3.851841449737549,
+ "step": 1612
+ },
+ {
+ "epoch": 22.405417212756664,
+ "grad_norm": 0.23851265013217926,
+ "learning_rate": 0.0006,
+ "loss": 3.8711647987365723,
+ "step": 1613
+ },
+ {
+ "epoch": 22.419397116644824,
+ "grad_norm": 0.22977286577224731,
+ "learning_rate": 0.0006,
+ "loss": 3.848539113998413,
+ "step": 1614
+ },
+ {
+ "epoch": 22.433377020532983,
+ "grad_norm": 0.20970143377780914,
+ "learning_rate": 0.0006,
+ "loss": 3.8709521293640137,
+ "step": 1615
+ },
+ {
+ "epoch": 22.447356924421143,
+ "grad_norm": 0.20714804530143738,
+ "learning_rate": 0.0006,
+ "loss": 3.875060558319092,
+ "step": 1616
+ },
+ {
+ "epoch": 22.461336828309307,
+ "grad_norm": 0.18881355226039886,
+ "learning_rate": 0.0006,
+ "loss": 3.8744640350341797,
+ "step": 1617
+ },
+ {
+ "epoch": 22.475316732197467,
+ "grad_norm": 0.1928759068250656,
+ "learning_rate": 0.0006,
+ "loss": 3.867971420288086,
+ "step": 1618
+ },
+ {
+ "epoch": 22.489296636085626,
+ "grad_norm": 0.18614749610424042,
+ "learning_rate": 0.0006,
+ "loss": 3.8738222122192383,
+ "step": 1619
+ },
+ {
+ "epoch": 22.503276539973786,
+ "grad_norm": 0.18614931404590607,
+ "learning_rate": 0.0006,
+ "loss": 3.8470513820648193,
+ "step": 1620
+ },
+ {
+ "epoch": 22.51725644386195,
+ "grad_norm": 0.17805059254169464,
+ "learning_rate": 0.0006,
+ "loss": 3.866396903991699,
+ "step": 1621
+ },
+ {
+ "epoch": 22.53123634775011,
+ "grad_norm": 0.16941314935684204,
+ "learning_rate": 0.0006,
+ "loss": 3.856832265853882,
+ "step": 1622
+ },
+ {
+ "epoch": 22.54521625163827,
+ "grad_norm": 0.1802310198545456,
+ "learning_rate": 0.0006,
+ "loss": 3.885653018951416,
+ "step": 1623
+ },
+ {
+ "epoch": 22.55919615552643,
+ "grad_norm": 0.1854856163263321,
+ "learning_rate": 0.0006,
+ "loss": 3.8779640197753906,
+ "step": 1624
+ },
+ {
+ "epoch": 22.573176059414592,
+ "grad_norm": 0.18765869736671448,
+ "learning_rate": 0.0006,
+ "loss": 3.8449032306671143,
+ "step": 1625
+ },
+ {
+ "epoch": 22.587155963302752,
+ "grad_norm": 0.1907789707183838,
+ "learning_rate": 0.0006,
+ "loss": 3.863029718399048,
+ "step": 1626
+ },
+ {
+ "epoch": 22.601135867190912,
+ "grad_norm": 0.19285395741462708,
+ "learning_rate": 0.0006,
+ "loss": 3.880145788192749,
+ "step": 1627
+ },
+ {
+ "epoch": 22.615115771079076,
+ "grad_norm": 0.19229751825332642,
+ "learning_rate": 0.0006,
+ "loss": 3.8521225452423096,
+ "step": 1628
+ },
+ {
+ "epoch": 22.629095674967235,
+ "grad_norm": 0.191694438457489,
+ "learning_rate": 0.0006,
+ "loss": 3.899827003479004,
+ "step": 1629
+ },
+ {
+ "epoch": 22.643075578855395,
+ "grad_norm": 0.20143048465251923,
+ "learning_rate": 0.0006,
+ "loss": 3.862064838409424,
+ "step": 1630
+ },
+ {
+ "epoch": 22.657055482743555,
+ "grad_norm": 0.1959840953350067,
+ "learning_rate": 0.0006,
+ "loss": 3.8955392837524414,
+ "step": 1631
+ },
+ {
+ "epoch": 22.67103538663172,
+ "grad_norm": 0.21454884111881256,
+ "learning_rate": 0.0006,
+ "loss": 3.8503167629241943,
+ "step": 1632
+ },
+ {
+ "epoch": 22.68501529051988,
+ "grad_norm": 0.21748484671115875,
+ "learning_rate": 0.0006,
+ "loss": 3.897134304046631,
+ "step": 1633
+ },
+ {
+ "epoch": 22.698995194408038,
+ "grad_norm": 0.21204186975955963,
+ "learning_rate": 0.0006,
+ "loss": 3.9292588233947754,
+ "step": 1634
+ },
+ {
+ "epoch": 22.712975098296198,
+ "grad_norm": 0.2112748771905899,
+ "learning_rate": 0.0006,
+ "loss": 3.89798641204834,
+ "step": 1635
+ },
+ {
+ "epoch": 22.72695500218436,
+ "grad_norm": 0.188576802611351,
+ "learning_rate": 0.0006,
+ "loss": 3.85627818107605,
+ "step": 1636
+ },
+ {
+ "epoch": 22.74093490607252,
+ "grad_norm": 0.17755994200706482,
+ "learning_rate": 0.0006,
+ "loss": 3.8480074405670166,
+ "step": 1637
+ },
+ {
+ "epoch": 22.75491480996068,
+ "grad_norm": 0.18037520349025726,
+ "learning_rate": 0.0006,
+ "loss": 3.8800172805786133,
+ "step": 1638
+ },
+ {
+ "epoch": 22.76889471384884,
+ "grad_norm": 0.19205765426158905,
+ "learning_rate": 0.0006,
+ "loss": 3.8658275604248047,
+ "step": 1639
+ },
+ {
+ "epoch": 22.782874617737004,
+ "grad_norm": 0.21801964938640594,
+ "learning_rate": 0.0006,
+ "loss": 3.8999452590942383,
+ "step": 1640
+ },
+ {
+ "epoch": 22.796854521625164,
+ "grad_norm": 0.23586086928844452,
+ "learning_rate": 0.0006,
+ "loss": 3.8660664558410645,
+ "step": 1641
+ },
+ {
+ "epoch": 22.810834425513324,
+ "grad_norm": 0.22289055585861206,
+ "learning_rate": 0.0006,
+ "loss": 3.86102557182312,
+ "step": 1642
+ },
+ {
+ "epoch": 22.824814329401484,
+ "grad_norm": 0.20695745944976807,
+ "learning_rate": 0.0006,
+ "loss": 3.8336222171783447,
+ "step": 1643
+ },
+ {
+ "epoch": 22.838794233289647,
+ "grad_norm": 0.2157406210899353,
+ "learning_rate": 0.0006,
+ "loss": 3.8923370838165283,
+ "step": 1644
+ },
+ {
+ "epoch": 22.852774137177807,
+ "grad_norm": 0.2326202690601349,
+ "learning_rate": 0.0006,
+ "loss": 3.8841443061828613,
+ "step": 1645
+ },
+ {
+ "epoch": 22.866754041065967,
+ "grad_norm": 0.2228803187608719,
+ "learning_rate": 0.0006,
+ "loss": 3.8791375160217285,
+ "step": 1646
+ },
+ {
+ "epoch": 22.88073394495413,
+ "grad_norm": 0.228999063372612,
+ "learning_rate": 0.0006,
+ "loss": 3.9005866050720215,
+ "step": 1647
+ },
+ {
+ "epoch": 22.89471384884229,
+ "grad_norm": 0.19673815369606018,
+ "learning_rate": 0.0006,
+ "loss": 3.8954291343688965,
+ "step": 1648
+ },
+ {
+ "epoch": 22.90869375273045,
+ "grad_norm": 0.1862584501504898,
+ "learning_rate": 0.0006,
+ "loss": 3.8591439723968506,
+ "step": 1649
+ },
+ {
+ "epoch": 22.92267365661861,
+ "grad_norm": 0.21360838413238525,
+ "learning_rate": 0.0006,
+ "loss": 3.862949848175049,
+ "step": 1650
+ },
+ {
+ "epoch": 22.936653560506773,
+ "grad_norm": 0.22538702189922333,
+ "learning_rate": 0.0006,
+ "loss": 3.8466529846191406,
+ "step": 1651
+ },
+ {
+ "epoch": 22.950633464394933,
+ "grad_norm": 0.21452727913856506,
+ "learning_rate": 0.0006,
+ "loss": 3.890007495880127,
+ "step": 1652
+ },
+ {
+ "epoch": 22.964613368283093,
+ "grad_norm": 0.21283482015132904,
+ "learning_rate": 0.0006,
+ "loss": 3.8820929527282715,
+ "step": 1653
+ },
+ {
+ "epoch": 22.978593272171253,
+ "grad_norm": 0.2035825103521347,
+ "learning_rate": 0.0006,
+ "loss": 3.8663241863250732,
+ "step": 1654
+ },
+ {
+ "epoch": 22.992573176059416,
+ "grad_norm": 0.22431661188602448,
+ "learning_rate": 0.0006,
+ "loss": 3.88238525390625,
+ "step": 1655
+ },
+ {
+ "epoch": 23.0,
+ "grad_norm": 0.2619943916797638,
+ "learning_rate": 0.0006,
+ "loss": 3.8482635021209717,
+ "step": 1656
+ },
+ {
+ "epoch": 23.0,
+ "eval_loss": 4.099980354309082,
+ "eval_runtime": 44.1311,
+ "eval_samples_per_second": 55.335,
+ "eval_steps_per_second": 3.467,
+ "step": 1656
+ },
+ {
+ "epoch": 23.01397990388816,
+ "grad_norm": 0.24712848663330078,
+ "learning_rate": 0.0006,
+ "loss": 3.836700916290283,
+ "step": 1657
+ },
+ {
+ "epoch": 23.027959807776323,
+ "grad_norm": 0.28568798303604126,
+ "learning_rate": 0.0006,
+ "loss": 3.8523952960968018,
+ "step": 1658
+ },
+ {
+ "epoch": 23.041939711664483,
+ "grad_norm": 0.2999744415283203,
+ "learning_rate": 0.0006,
+ "loss": 3.8229494094848633,
+ "step": 1659
+ },
+ {
+ "epoch": 23.055919615552643,
+ "grad_norm": 0.32080450654029846,
+ "learning_rate": 0.0006,
+ "loss": 3.8562774658203125,
+ "step": 1660
+ },
+ {
+ "epoch": 23.069899519440803,
+ "grad_norm": 0.293468177318573,
+ "learning_rate": 0.0006,
+ "loss": 3.889139175415039,
+ "step": 1661
+ },
+ {
+ "epoch": 23.083879423328966,
+ "grad_norm": 0.2605799436569214,
+ "learning_rate": 0.0006,
+ "loss": 3.838681221008301,
+ "step": 1662
+ },
+ {
+ "epoch": 23.097859327217126,
+ "grad_norm": 0.2656237483024597,
+ "learning_rate": 0.0006,
+ "loss": 3.8603532314300537,
+ "step": 1663
+ },
+ {
+ "epoch": 23.111839231105286,
+ "grad_norm": 0.27163293957710266,
+ "learning_rate": 0.0006,
+ "loss": 3.846987009048462,
+ "step": 1664
+ },
+ {
+ "epoch": 23.125819134993446,
+ "grad_norm": 0.2719763517379761,
+ "learning_rate": 0.0006,
+ "loss": 3.805354595184326,
+ "step": 1665
+ },
+ {
+ "epoch": 23.13979903888161,
+ "grad_norm": 0.25786274671554565,
+ "learning_rate": 0.0006,
+ "loss": 3.8486907482147217,
+ "step": 1666
+ },
+ {
+ "epoch": 23.15377894276977,
+ "grad_norm": 0.2675692141056061,
+ "learning_rate": 0.0006,
+ "loss": 3.816493511199951,
+ "step": 1667
+ },
+ {
+ "epoch": 23.16775884665793,
+ "grad_norm": 0.2711698114871979,
+ "learning_rate": 0.0006,
+ "loss": 3.851863384246826,
+ "step": 1668
+ },
+ {
+ "epoch": 23.18173875054609,
+ "grad_norm": 0.2588968873023987,
+ "learning_rate": 0.0006,
+ "loss": 3.860816717147827,
+ "step": 1669
+ },
+ {
+ "epoch": 23.195718654434252,
+ "grad_norm": 0.2458600401878357,
+ "learning_rate": 0.0006,
+ "loss": 3.8058223724365234,
+ "step": 1670
+ },
+ {
+ "epoch": 23.209698558322412,
+ "grad_norm": 0.22014005482196808,
+ "learning_rate": 0.0006,
+ "loss": 3.8686985969543457,
+ "step": 1671
+ },
+ {
+ "epoch": 23.22367846221057,
+ "grad_norm": 0.22450537979602814,
+ "learning_rate": 0.0006,
+ "loss": 3.8379364013671875,
+ "step": 1672
+ },
+ {
+ "epoch": 23.23765836609873,
+ "grad_norm": 0.22132326662540436,
+ "learning_rate": 0.0006,
+ "loss": 3.8873870372772217,
+ "step": 1673
+ },
+ {
+ "epoch": 23.251638269986895,
+ "grad_norm": 0.20994804799556732,
+ "learning_rate": 0.0006,
+ "loss": 3.821415424346924,
+ "step": 1674
+ },
+ {
+ "epoch": 23.265618173875055,
+ "grad_norm": 0.2040853649377823,
+ "learning_rate": 0.0006,
+ "loss": 3.831658124923706,
+ "step": 1675
+ },
+ {
+ "epoch": 23.279598077763215,
+ "grad_norm": 0.20878618955612183,
+ "learning_rate": 0.0006,
+ "loss": 3.838672637939453,
+ "step": 1676
+ },
+ {
+ "epoch": 23.293577981651374,
+ "grad_norm": 0.19974198937416077,
+ "learning_rate": 0.0006,
+ "loss": 3.8442561626434326,
+ "step": 1677
+ },
+ {
+ "epoch": 23.307557885539538,
+ "grad_norm": 0.20523984730243683,
+ "learning_rate": 0.0006,
+ "loss": 3.846139907836914,
+ "step": 1678
+ },
+ {
+ "epoch": 23.321537789427698,
+ "grad_norm": 0.2045847624540329,
+ "learning_rate": 0.0006,
+ "loss": 3.8597474098205566,
+ "step": 1679
+ },
+ {
+ "epoch": 23.335517693315857,
+ "grad_norm": 0.20957441627979279,
+ "learning_rate": 0.0006,
+ "loss": 3.8493881225585938,
+ "step": 1680
+ },
+ {
+ "epoch": 23.34949759720402,
+ "grad_norm": 0.2069379836320877,
+ "learning_rate": 0.0006,
+ "loss": 3.8510046005249023,
+ "step": 1681
+ },
+ {
+ "epoch": 23.36347750109218,
+ "grad_norm": 0.19627872109413147,
+ "learning_rate": 0.0006,
+ "loss": 3.844618320465088,
+ "step": 1682
+ },
+ {
+ "epoch": 23.37745740498034,
+ "grad_norm": 0.19599434733390808,
+ "learning_rate": 0.0006,
+ "loss": 3.8245465755462646,
+ "step": 1683
+ },
+ {
+ "epoch": 23.3914373088685,
+ "grad_norm": 0.2035072147846222,
+ "learning_rate": 0.0006,
+ "loss": 3.854422092437744,
+ "step": 1684
+ },
+ {
+ "epoch": 23.405417212756664,
+ "grad_norm": 0.21836814284324646,
+ "learning_rate": 0.0006,
+ "loss": 3.83512282371521,
+ "step": 1685
+ },
+ {
+ "epoch": 23.419397116644824,
+ "grad_norm": 0.22844630479812622,
+ "learning_rate": 0.0006,
+ "loss": 3.8744301795959473,
+ "step": 1686
+ },
+ {
+ "epoch": 23.433377020532983,
+ "grad_norm": 0.2259359359741211,
+ "learning_rate": 0.0006,
+ "loss": 3.8460323810577393,
+ "step": 1687
+ },
+ {
+ "epoch": 23.447356924421143,
+ "grad_norm": 0.24440120160579681,
+ "learning_rate": 0.0006,
+ "loss": 3.8543787002563477,
+ "step": 1688
+ },
+ {
+ "epoch": 23.461336828309307,
+ "grad_norm": 0.25063708424568176,
+ "learning_rate": 0.0006,
+ "loss": 3.851004123687744,
+ "step": 1689
+ },
+ {
+ "epoch": 23.475316732197467,
+ "grad_norm": 0.25515618920326233,
+ "learning_rate": 0.0006,
+ "loss": 3.8685030937194824,
+ "step": 1690
+ },
+ {
+ "epoch": 23.489296636085626,
+ "grad_norm": 0.23961050808429718,
+ "learning_rate": 0.0006,
+ "loss": 3.866792678833008,
+ "step": 1691
+ },
+ {
+ "epoch": 23.503276539973786,
+ "grad_norm": 0.20880955457687378,
+ "learning_rate": 0.0006,
+ "loss": 3.8416638374328613,
+ "step": 1692
+ },
+ {
+ "epoch": 23.51725644386195,
+ "grad_norm": 0.1989721804857254,
+ "learning_rate": 0.0006,
+ "loss": 3.8608641624450684,
+ "step": 1693
+ },
+ {
+ "epoch": 23.53123634775011,
+ "grad_norm": 0.207577183842659,
+ "learning_rate": 0.0006,
+ "loss": 3.8431811332702637,
+ "step": 1694
+ },
+ {
+ "epoch": 23.54521625163827,
+ "grad_norm": 0.20844359695911407,
+ "learning_rate": 0.0006,
+ "loss": 3.882844924926758,
+ "step": 1695
+ },
+ {
+ "epoch": 23.55919615552643,
+ "grad_norm": 0.22511139512062073,
+ "learning_rate": 0.0006,
+ "loss": 3.866156578063965,
+ "step": 1696
+ },
+ {
+ "epoch": 23.573176059414592,
+ "grad_norm": 0.21648484468460083,
+ "learning_rate": 0.0006,
+ "loss": 3.87117075920105,
+ "step": 1697
+ },
+ {
+ "epoch": 23.587155963302752,
+ "grad_norm": 0.2081802636384964,
+ "learning_rate": 0.0006,
+ "loss": 3.828132152557373,
+ "step": 1698
+ },
+ {
+ "epoch": 23.601135867190912,
+ "grad_norm": 0.2017381489276886,
+ "learning_rate": 0.0006,
+ "loss": 3.839737892150879,
+ "step": 1699
+ },
+ {
+ "epoch": 23.615115771079076,
+ "grad_norm": 0.2025786191225052,
+ "learning_rate": 0.0006,
+ "loss": 3.8787710666656494,
+ "step": 1700
+ },
+ {
+ "epoch": 23.629095674967235,
+ "grad_norm": 0.21394102275371552,
+ "learning_rate": 0.0006,
+ "loss": 3.824047088623047,
+ "step": 1701
+ },
+ {
+ "epoch": 23.643075578855395,
+ "grad_norm": 0.20749174058437347,
+ "learning_rate": 0.0006,
+ "loss": 3.877009153366089,
+ "step": 1702
+ },
+ {
+ "epoch": 23.657055482743555,
+ "grad_norm": 0.2132839858531952,
+ "learning_rate": 0.0006,
+ "loss": 3.844214916229248,
+ "step": 1703
+ },
+ {
+ "epoch": 23.67103538663172,
+ "grad_norm": 0.22408637404441833,
+ "learning_rate": 0.0006,
+ "loss": 3.8570785522460938,
+ "step": 1704
+ },
+ {
+ "epoch": 23.68501529051988,
+ "grad_norm": 0.2275897115468979,
+ "learning_rate": 0.0006,
+ "loss": 3.8599512577056885,
+ "step": 1705
+ },
+ {
+ "epoch": 23.698995194408038,
+ "grad_norm": 0.2230614721775055,
+ "learning_rate": 0.0006,
+ "loss": 3.86374568939209,
+ "step": 1706
+ },
+ {
+ "epoch": 23.712975098296198,
+ "grad_norm": 0.21873739361763,
+ "learning_rate": 0.0006,
+ "loss": 3.8530168533325195,
+ "step": 1707
+ },
+ {
+ "epoch": 23.72695500218436,
+ "grad_norm": 0.24418923258781433,
+ "learning_rate": 0.0006,
+ "loss": 3.8410465717315674,
+ "step": 1708
+ },
+ {
+ "epoch": 23.74093490607252,
+ "grad_norm": 0.24894575774669647,
+ "learning_rate": 0.0006,
+ "loss": 3.8386030197143555,
+ "step": 1709
+ },
+ {
+ "epoch": 23.75491480996068,
+ "grad_norm": 0.221230611205101,
+ "learning_rate": 0.0006,
+ "loss": 3.8116674423217773,
+ "step": 1710
+ },
+ {
+ "epoch": 23.76889471384884,
+ "grad_norm": 0.20560568571090698,
+ "learning_rate": 0.0006,
+ "loss": 3.8634426593780518,
+ "step": 1711
+ },
+ {
+ "epoch": 23.782874617737004,
+ "grad_norm": 0.20450648665428162,
+ "learning_rate": 0.0006,
+ "loss": 3.8690528869628906,
+ "step": 1712
+ },
+ {
+ "epoch": 23.796854521625164,
+ "grad_norm": 0.18996809422969818,
+ "learning_rate": 0.0006,
+ "loss": 3.8484325408935547,
+ "step": 1713
+ },
+ {
+ "epoch": 23.810834425513324,
+ "grad_norm": 0.20165087282657623,
+ "learning_rate": 0.0006,
+ "loss": 3.8823161125183105,
+ "step": 1714
+ },
+ {
+ "epoch": 23.824814329401484,
+ "grad_norm": 0.21149255335330963,
+ "learning_rate": 0.0006,
+ "loss": 3.8833112716674805,
+ "step": 1715
+ },
+ {
+ "epoch": 23.838794233289647,
+ "grad_norm": 0.21254824101924896,
+ "learning_rate": 0.0006,
+ "loss": 3.8414595127105713,
+ "step": 1716
+ },
+ {
+ "epoch": 23.852774137177807,
+ "grad_norm": 0.21313664317131042,
+ "learning_rate": 0.0006,
+ "loss": 3.8732268810272217,
+ "step": 1717
+ },
+ {
+ "epoch": 23.866754041065967,
+ "grad_norm": 0.21635662019252777,
+ "learning_rate": 0.0006,
+ "loss": 3.861222743988037,
+ "step": 1718
+ },
+ {
+ "epoch": 23.88073394495413,
+ "grad_norm": 0.20612190663814545,
+ "learning_rate": 0.0006,
+ "loss": 3.821854591369629,
+ "step": 1719
+ },
+ {
+ "epoch": 23.89471384884229,
+ "grad_norm": 0.1975104659795761,
+ "learning_rate": 0.0006,
+ "loss": 3.8815202713012695,
+ "step": 1720
+ },
+ {
+ "epoch": 23.90869375273045,
+ "grad_norm": 0.20893609523773193,
+ "learning_rate": 0.0006,
+ "loss": 3.8581607341766357,
+ "step": 1721
+ },
+ {
+ "epoch": 23.92267365661861,
+ "grad_norm": 0.2125461846590042,
+ "learning_rate": 0.0006,
+ "loss": 3.839498281478882,
+ "step": 1722
+ },
+ {
+ "epoch": 23.936653560506773,
+ "grad_norm": 0.19985878467559814,
+ "learning_rate": 0.0006,
+ "loss": 3.856555223464966,
+ "step": 1723
+ },
+ {
+ "epoch": 23.950633464394933,
+ "grad_norm": 0.1922348290681839,
+ "learning_rate": 0.0006,
+ "loss": 3.8956782817840576,
+ "step": 1724
+ },
+ {
+ "epoch": 23.964613368283093,
+ "grad_norm": 0.2191949337720871,
+ "learning_rate": 0.0006,
+ "loss": 3.8582406044006348,
+ "step": 1725
+ },
+ {
+ "epoch": 23.978593272171253,
+ "grad_norm": 0.2569248676300049,
+ "learning_rate": 0.0006,
+ "loss": 3.855678081512451,
+ "step": 1726
+ },
+ {
+ "epoch": 23.992573176059416,
+ "grad_norm": 0.2641172409057617,
+ "learning_rate": 0.0006,
+ "loss": 3.8426473140716553,
+ "step": 1727
+ },
+ {
+ "epoch": 24.0,
+ "grad_norm": 0.29637208580970764,
+ "learning_rate": 0.0006,
+ "loss": 3.843040704727173,
+ "step": 1728
+ },
+ {
+ "epoch": 24.0,
+ "eval_loss": 4.075617790222168,
+ "eval_runtime": 43.9795,
+ "eval_samples_per_second": 55.526,
+ "eval_steps_per_second": 3.479,
+ "step": 1728
+ },
+ {
+ "epoch": 24.01397990388816,
+ "grad_norm": 0.2804758548736572,
+ "learning_rate": 0.0006,
+ "loss": 3.819150924682617,
+ "step": 1729
+ },
+ {
+ "epoch": 24.027959807776323,
+ "grad_norm": 0.2796347141265869,
+ "learning_rate": 0.0006,
+ "loss": 3.8400537967681885,
+ "step": 1730
+ },
+ {
+ "epoch": 24.041939711664483,
+ "grad_norm": 0.28388649225234985,
+ "learning_rate": 0.0006,
+ "loss": 3.844595432281494,
+ "step": 1731
+ },
+ {
+ "epoch": 24.055919615552643,
+ "grad_norm": 0.2944681942462921,
+ "learning_rate": 0.0006,
+ "loss": 3.8048014640808105,
+ "step": 1732
+ },
+ {
+ "epoch": 24.069899519440803,
+ "grad_norm": 0.2956784665584564,
+ "learning_rate": 0.0006,
+ "loss": 3.8488049507141113,
+ "step": 1733
+ },
+ {
+ "epoch": 24.083879423328966,
+ "grad_norm": 0.2822059392929077,
+ "learning_rate": 0.0006,
+ "loss": 3.850322723388672,
+ "step": 1734
+ },
+ {
+ "epoch": 24.097859327217126,
+ "grad_norm": 0.3012927174568176,
+ "learning_rate": 0.0006,
+ "loss": 3.8748154640197754,
+ "step": 1735
+ },
+ {
+ "epoch": 24.111839231105286,
+ "grad_norm": 0.28868764638900757,
+ "learning_rate": 0.0006,
+ "loss": 3.8282783031463623,
+ "step": 1736
+ },
+ {
+ "epoch": 24.125819134993446,
+ "grad_norm": 0.277203768491745,
+ "learning_rate": 0.0006,
+ "loss": 3.8462908267974854,
+ "step": 1737
+ },
+ {
+ "epoch": 24.13979903888161,
+ "grad_norm": 0.2654508948326111,
+ "learning_rate": 0.0006,
+ "loss": 3.8043856620788574,
+ "step": 1738
+ },
+ {
+ "epoch": 24.15377894276977,
+ "grad_norm": 0.24425740540027618,
+ "learning_rate": 0.0006,
+ "loss": 3.8284308910369873,
+ "step": 1739
+ },
+ {
+ "epoch": 24.16775884665793,
+ "grad_norm": 0.24407348036766052,
+ "learning_rate": 0.0006,
+ "loss": 3.8489203453063965,
+ "step": 1740
+ },
+ {
+ "epoch": 24.18173875054609,
+ "grad_norm": 0.2387724369764328,
+ "learning_rate": 0.0006,
+ "loss": 3.8240389823913574,
+ "step": 1741
+ },
+ {
+ "epoch": 24.195718654434252,
+ "grad_norm": 0.2832290232181549,
+ "learning_rate": 0.0006,
+ "loss": 3.869053363800049,
+ "step": 1742
+ },
+ {
+ "epoch": 24.209698558322412,
+ "grad_norm": 0.26501718163490295,
+ "learning_rate": 0.0006,
+ "loss": 3.8624343872070312,
+ "step": 1743
+ },
+ {
+ "epoch": 24.22367846221057,
+ "grad_norm": 0.24234668910503387,
+ "learning_rate": 0.0006,
+ "loss": 3.823103904724121,
+ "step": 1744
+ },
+ {
+ "epoch": 24.23765836609873,
+ "grad_norm": 0.24160076677799225,
+ "learning_rate": 0.0006,
+ "loss": 3.8174376487731934,
+ "step": 1745
+ },
+ {
+ "epoch": 24.251638269986895,
+ "grad_norm": 0.2447604238986969,
+ "learning_rate": 0.0006,
+ "loss": 3.8345441818237305,
+ "step": 1746
+ },
+ {
+ "epoch": 24.265618173875055,
+ "grad_norm": 0.22864456474781036,
+ "learning_rate": 0.0006,
+ "loss": 3.833101272583008,
+ "step": 1747
+ },
+ {
+ "epoch": 24.279598077763215,
+ "grad_norm": 0.20429204404354095,
+ "learning_rate": 0.0006,
+ "loss": 3.8055219650268555,
+ "step": 1748
+ },
+ {
+ "epoch": 24.293577981651374,
+ "grad_norm": 0.21538510918617249,
+ "learning_rate": 0.0006,
+ "loss": 3.7929327487945557,
+ "step": 1749
+ },
+ {
+ "epoch": 24.307557885539538,
+ "grad_norm": 0.2189008593559265,
+ "learning_rate": 0.0006,
+ "loss": 3.852264881134033,
+ "step": 1750
+ },
+ {
+ "epoch": 24.321537789427698,
+ "grad_norm": 0.2228662073612213,
+ "learning_rate": 0.0006,
+ "loss": 3.831088066101074,
+ "step": 1751
+ },
+ {
+ "epoch": 24.335517693315857,
+ "grad_norm": 0.2039937973022461,
+ "learning_rate": 0.0006,
+ "loss": 3.8358256816864014,
+ "step": 1752
+ },
+ {
+ "epoch": 24.34949759720402,
+ "grad_norm": 0.19247715175151825,
+ "learning_rate": 0.0006,
+ "loss": 3.8077402114868164,
+ "step": 1753
+ },
+ {
+ "epoch": 24.36347750109218,
+ "grad_norm": 0.18301935493946075,
+ "learning_rate": 0.0006,
+ "loss": 3.81380033493042,
+ "step": 1754
+ },
+ {
+ "epoch": 24.37745740498034,
+ "grad_norm": 0.19325268268585205,
+ "learning_rate": 0.0006,
+ "loss": 3.8447322845458984,
+ "step": 1755
+ },
+ {
+ "epoch": 24.3914373088685,
+ "grad_norm": 0.2007269263267517,
+ "learning_rate": 0.0006,
+ "loss": 3.82779860496521,
+ "step": 1756
+ },
+ {
+ "epoch": 24.405417212756664,
+ "grad_norm": 0.20567037165164948,
+ "learning_rate": 0.0006,
+ "loss": 3.800354480743408,
+ "step": 1757
+ },
+ {
+ "epoch": 24.419397116644824,
+ "grad_norm": 0.22553028166294098,
+ "learning_rate": 0.0006,
+ "loss": 3.7910406589508057,
+ "step": 1758
+ },
+ {
+ "epoch": 24.433377020532983,
+ "grad_norm": 0.22697079181671143,
+ "learning_rate": 0.0006,
+ "loss": 3.857635974884033,
+ "step": 1759
+ },
+ {
+ "epoch": 24.447356924421143,
+ "grad_norm": 0.22090297937393188,
+ "learning_rate": 0.0006,
+ "loss": 3.8112804889678955,
+ "step": 1760
+ },
+ {
+ "epoch": 24.461336828309307,
+ "grad_norm": 0.24325518310070038,
+ "learning_rate": 0.0006,
+ "loss": 3.822084426879883,
+ "step": 1761
+ },
+ {
+ "epoch": 24.475316732197467,
+ "grad_norm": 0.2702929377555847,
+ "learning_rate": 0.0006,
+ "loss": 3.8307600021362305,
+ "step": 1762
+ },
+ {
+ "epoch": 24.489296636085626,
+ "grad_norm": 0.2699742317199707,
+ "learning_rate": 0.0006,
+ "loss": 3.8479247093200684,
+ "step": 1763
+ },
+ {
+ "epoch": 24.503276539973786,
+ "grad_norm": 0.2526061236858368,
+ "learning_rate": 0.0006,
+ "loss": 3.8615071773529053,
+ "step": 1764
+ },
+ {
+ "epoch": 24.51725644386195,
+ "grad_norm": 0.2633848190307617,
+ "learning_rate": 0.0006,
+ "loss": 3.8412697315216064,
+ "step": 1765
+ },
+ {
+ "epoch": 24.53123634775011,
+ "grad_norm": 0.2711184024810791,
+ "learning_rate": 0.0006,
+ "loss": 3.83647084236145,
+ "step": 1766
+ },
+ {
+ "epoch": 24.54521625163827,
+ "grad_norm": 0.2691243588924408,
+ "learning_rate": 0.0006,
+ "loss": 3.8489012718200684,
+ "step": 1767
+ },
+ {
+ "epoch": 24.55919615552643,
+ "grad_norm": 0.2580898404121399,
+ "learning_rate": 0.0006,
+ "loss": 3.8464407920837402,
+ "step": 1768
+ },
+ {
+ "epoch": 24.573176059414592,
+ "grad_norm": 0.21342119574546814,
+ "learning_rate": 0.0006,
+ "loss": 3.8279383182525635,
+ "step": 1769
+ },
+ {
+ "epoch": 24.587155963302752,
+ "grad_norm": 0.22102399170398712,
+ "learning_rate": 0.0006,
+ "loss": 3.841676712036133,
+ "step": 1770
+ },
+ {
+ "epoch": 24.601135867190912,
+ "grad_norm": 0.2882173955440521,
+ "learning_rate": 0.0006,
+ "loss": 3.825528383255005,
+ "step": 1771
+ },
+ {
+ "epoch": 24.615115771079076,
+ "grad_norm": 0.3403635323047638,
+ "learning_rate": 0.0006,
+ "loss": 3.8282246589660645,
+ "step": 1772
+ },
+ {
+ "epoch": 24.629095674967235,
+ "grad_norm": 0.32192692160606384,
+ "learning_rate": 0.0006,
+ "loss": 3.8411307334899902,
+ "step": 1773
+ },
+ {
+ "epoch": 24.643075578855395,
+ "grad_norm": 0.2534109055995941,
+ "learning_rate": 0.0006,
+ "loss": 3.843007802963257,
+ "step": 1774
+ },
+ {
+ "epoch": 24.657055482743555,
+ "grad_norm": 0.25483962893486023,
+ "learning_rate": 0.0006,
+ "loss": 3.848358154296875,
+ "step": 1775
+ },
+ {
+ "epoch": 24.67103538663172,
+ "grad_norm": 0.25175443291664124,
+ "learning_rate": 0.0006,
+ "loss": 3.8232598304748535,
+ "step": 1776
+ },
+ {
+ "epoch": 24.68501529051988,
+ "grad_norm": 0.20538510382175446,
+ "learning_rate": 0.0006,
+ "loss": 3.857635498046875,
+ "step": 1777
+ },
+ {
+ "epoch": 24.698995194408038,
+ "grad_norm": 0.240861177444458,
+ "learning_rate": 0.0006,
+ "loss": 3.83717679977417,
+ "step": 1778
+ },
+ {
+ "epoch": 24.712975098296198,
+ "grad_norm": 0.23646967113018036,
+ "learning_rate": 0.0006,
+ "loss": 3.81032133102417,
+ "step": 1779
+ },
+ {
+ "epoch": 24.72695500218436,
+ "grad_norm": 0.2164423167705536,
+ "learning_rate": 0.0006,
+ "loss": 3.807878255844116,
+ "step": 1780
+ },
+ {
+ "epoch": 24.74093490607252,
+ "grad_norm": 0.21160705387592316,
+ "learning_rate": 0.0006,
+ "loss": 3.870394468307495,
+ "step": 1781
+ },
+ {
+ "epoch": 24.75491480996068,
+ "grad_norm": 0.20284807682037354,
+ "learning_rate": 0.0006,
+ "loss": 3.842154026031494,
+ "step": 1782
+ },
+ {
+ "epoch": 24.76889471384884,
+ "grad_norm": 0.20738485455513,
+ "learning_rate": 0.0006,
+ "loss": 3.8347136974334717,
+ "step": 1783
+ },
+ {
+ "epoch": 24.782874617737004,
+ "grad_norm": 0.20253778994083405,
+ "learning_rate": 0.0006,
+ "loss": 3.814948320388794,
+ "step": 1784
+ },
+ {
+ "epoch": 24.796854521625164,
+ "grad_norm": 0.20567010343074799,
+ "learning_rate": 0.0006,
+ "loss": 3.8354592323303223,
+ "step": 1785
+ },
+ {
+ "epoch": 24.810834425513324,
+ "grad_norm": 0.20639720559120178,
+ "learning_rate": 0.0006,
+ "loss": 3.8336033821105957,
+ "step": 1786
+ },
+ {
+ "epoch": 24.824814329401484,
+ "grad_norm": 0.19978247582912445,
+ "learning_rate": 0.0006,
+ "loss": 3.8209140300750732,
+ "step": 1787
+ },
+ {
+ "epoch": 24.838794233289647,
+ "grad_norm": 0.20628373324871063,
+ "learning_rate": 0.0006,
+ "loss": 3.8372955322265625,
+ "step": 1788
+ },
+ {
+ "epoch": 24.852774137177807,
+ "grad_norm": 0.2266162782907486,
+ "learning_rate": 0.0006,
+ "loss": 3.850994110107422,
+ "step": 1789
+ },
+ {
+ "epoch": 24.866754041065967,
+ "grad_norm": 0.22567765414714813,
+ "learning_rate": 0.0006,
+ "loss": 3.8552165031433105,
+ "step": 1790
+ },
+ {
+ "epoch": 24.88073394495413,
+ "grad_norm": 0.228011354804039,
+ "learning_rate": 0.0006,
+ "loss": 3.8310747146606445,
+ "step": 1791
+ },
+ {
+ "epoch": 24.89471384884229,
+ "grad_norm": 0.23706914484500885,
+ "learning_rate": 0.0006,
+ "loss": 3.8369603157043457,
+ "step": 1792
+ },
+ {
+ "epoch": 24.90869375273045,
+ "grad_norm": 0.22669097781181335,
+ "learning_rate": 0.0006,
+ "loss": 3.8443825244903564,
+ "step": 1793
+ },
+ {
+ "epoch": 24.92267365661861,
+ "grad_norm": 0.2051001936197281,
+ "learning_rate": 0.0006,
+ "loss": 3.7938501834869385,
+ "step": 1794
+ },
+ {
+ "epoch": 24.936653560506773,
+ "grad_norm": 0.2091219276189804,
+ "learning_rate": 0.0006,
+ "loss": 3.8167076110839844,
+ "step": 1795
+ },
+ {
+ "epoch": 24.950633464394933,
+ "grad_norm": 0.20517204701900482,
+ "learning_rate": 0.0006,
+ "loss": 3.852670669555664,
+ "step": 1796
+ },
+ {
+ "epoch": 24.964613368283093,
+ "grad_norm": 0.19916993379592896,
+ "learning_rate": 0.0006,
+ "loss": 3.8410873413085938,
+ "step": 1797
+ },
+ {
+ "epoch": 24.978593272171253,
+ "grad_norm": 0.21313942968845367,
+ "learning_rate": 0.0006,
+ "loss": 3.8383948802948,
+ "step": 1798
+ },
+ {
+ "epoch": 24.992573176059416,
+ "grad_norm": 0.21042990684509277,
+ "learning_rate": 0.0006,
+ "loss": 3.8623173236846924,
+ "step": 1799
+ },
+ {
+ "epoch": 25.0,
+ "grad_norm": 0.23052045702934265,
+ "learning_rate": 0.0006,
+ "loss": 3.8646674156188965,
+ "step": 1800
+ },
+ {
+ "epoch": 25.0,
+ "eval_loss": 4.081690311431885,
+ "eval_runtime": 44.036,
+ "eval_samples_per_second": 55.455,
+ "eval_steps_per_second": 3.474,
+ "step": 1800
+ },
+ {
+ "epoch": 25.01397990388816,
+ "grad_norm": 0.22068746387958527,
+ "learning_rate": 0.0006,
+ "loss": 3.8002820014953613,
+ "step": 1801
+ },
+ {
+ "epoch": 25.027959807776323,
+ "grad_norm": 0.20711193978786469,
+ "learning_rate": 0.0006,
+ "loss": 3.787785768508911,
+ "step": 1802
+ },
+ {
+ "epoch": 25.041939711664483,
+ "grad_norm": 0.20659677684307098,
+ "learning_rate": 0.0006,
+ "loss": 3.80245304107666,
+ "step": 1803
+ },
+ {
+ "epoch": 25.055919615552643,
+ "grad_norm": 0.22891797125339508,
+ "learning_rate": 0.0006,
+ "loss": 3.784543514251709,
+ "step": 1804
+ },
+ {
+ "epoch": 25.069899519440803,
+ "grad_norm": 0.23679181933403015,
+ "learning_rate": 0.0006,
+ "loss": 3.8311429023742676,
+ "step": 1805
+ },
+ {
+ "epoch": 25.083879423328966,
+ "grad_norm": 0.2548872232437134,
+ "learning_rate": 0.0006,
+ "loss": 3.8047211170196533,
+ "step": 1806
+ },
+ {
+ "epoch": 25.097859327217126,
+ "grad_norm": 0.26181501150131226,
+ "learning_rate": 0.0006,
+ "loss": 3.837508201599121,
+ "step": 1807
+ },
+ {
+ "epoch": 25.111839231105286,
+ "grad_norm": 0.2548452913761139,
+ "learning_rate": 0.0006,
+ "loss": 3.831544876098633,
+ "step": 1808
+ },
+ {
+ "epoch": 25.125819134993446,
+ "grad_norm": 0.26177605986595154,
+ "learning_rate": 0.0006,
+ "loss": 3.805346965789795,
+ "step": 1809
+ },
+ {
+ "epoch": 25.13979903888161,
+ "grad_norm": 0.2608112394809723,
+ "learning_rate": 0.0006,
+ "loss": 3.8040924072265625,
+ "step": 1810
+ },
+ {
+ "epoch": 25.15377894276977,
+ "grad_norm": 0.2586037814617157,
+ "learning_rate": 0.0006,
+ "loss": 3.8102216720581055,
+ "step": 1811
+ },
+ {
+ "epoch": 25.16775884665793,
+ "grad_norm": 0.26258161664009094,
+ "learning_rate": 0.0006,
+ "loss": 3.8152549266815186,
+ "step": 1812
+ },
+ {
+ "epoch": 25.18173875054609,
+ "grad_norm": 0.2803022265434265,
+ "learning_rate": 0.0006,
+ "loss": 3.82576584815979,
+ "step": 1813
+ },
+ {
+ "epoch": 25.195718654434252,
+ "grad_norm": 0.2618221938610077,
+ "learning_rate": 0.0006,
+ "loss": 3.817220687866211,
+ "step": 1814
+ },
+ {
+ "epoch": 25.209698558322412,
+ "grad_norm": 0.23283469676971436,
+ "learning_rate": 0.0006,
+ "loss": 3.7999041080474854,
+ "step": 1815
+ },
+ {
+ "epoch": 25.22367846221057,
+ "grad_norm": 0.20110781490802765,
+ "learning_rate": 0.0006,
+ "loss": 3.783228874206543,
+ "step": 1816
+ },
+ {
+ "epoch": 25.23765836609873,
+ "grad_norm": 0.2231830358505249,
+ "learning_rate": 0.0006,
+ "loss": 3.8032913208007812,
+ "step": 1817
+ },
+ {
+ "epoch": 25.251638269986895,
+ "grad_norm": 0.21807286143302917,
+ "learning_rate": 0.0006,
+ "loss": 3.817028045654297,
+ "step": 1818
+ },
+ {
+ "epoch": 25.265618173875055,
+ "grad_norm": 0.22710664570331573,
+ "learning_rate": 0.0006,
+ "loss": 3.8201727867126465,
+ "step": 1819
+ },
+ {
+ "epoch": 25.279598077763215,
+ "grad_norm": 0.22299866378307343,
+ "learning_rate": 0.0006,
+ "loss": 3.8198719024658203,
+ "step": 1820
+ },
+ {
+ "epoch": 25.293577981651374,
+ "grad_norm": 0.20886564254760742,
+ "learning_rate": 0.0006,
+ "loss": 3.792414665222168,
+ "step": 1821
+ },
+ {
+ "epoch": 25.307557885539538,
+ "grad_norm": 0.20887352526187897,
+ "learning_rate": 0.0006,
+ "loss": 3.7634057998657227,
+ "step": 1822
+ },
+ {
+ "epoch": 25.321537789427698,
+ "grad_norm": 0.24560041725635529,
+ "learning_rate": 0.0006,
+ "loss": 3.79359769821167,
+ "step": 1823
+ },
+ {
+ "epoch": 25.335517693315857,
+ "grad_norm": 0.22767415642738342,
+ "learning_rate": 0.0006,
+ "loss": 3.8313469886779785,
+ "step": 1824
+ },
+ {
+ "epoch": 25.34949759720402,
+ "grad_norm": 0.21617893874645233,
+ "learning_rate": 0.0006,
+ "loss": 3.77200984954834,
+ "step": 1825
+ },
+ {
+ "epoch": 25.36347750109218,
+ "grad_norm": 0.21010833978652954,
+ "learning_rate": 0.0006,
+ "loss": 3.8042140007019043,
+ "step": 1826
+ },
+ {
+ "epoch": 25.37745740498034,
+ "grad_norm": 0.24087965488433838,
+ "learning_rate": 0.0006,
+ "loss": 3.8260979652404785,
+ "step": 1827
+ },
+ {
+ "epoch": 25.3914373088685,
+ "grad_norm": 0.2735275626182556,
+ "learning_rate": 0.0006,
+ "loss": 3.8499274253845215,
+ "step": 1828
+ },
+ {
+ "epoch": 25.405417212756664,
+ "grad_norm": 0.24831001460552216,
+ "learning_rate": 0.0006,
+ "loss": 3.8146448135375977,
+ "step": 1829
+ },
+ {
+ "epoch": 25.419397116644824,
+ "grad_norm": 0.21822866797447205,
+ "learning_rate": 0.0006,
+ "loss": 3.7845146656036377,
+ "step": 1830
+ },
+ {
+ "epoch": 25.433377020532983,
+ "grad_norm": 0.19948813319206238,
+ "learning_rate": 0.0006,
+ "loss": 3.823997974395752,
+ "step": 1831
+ },
+ {
+ "epoch": 25.447356924421143,
+ "grad_norm": 0.18342702090740204,
+ "learning_rate": 0.0006,
+ "loss": 3.8201193809509277,
+ "step": 1832
+ },
+ {
+ "epoch": 25.461336828309307,
+ "grad_norm": 0.19377560913562775,
+ "learning_rate": 0.0006,
+ "loss": 3.8069632053375244,
+ "step": 1833
+ },
+ {
+ "epoch": 25.475316732197467,
+ "grad_norm": 0.22348709404468536,
+ "learning_rate": 0.0006,
+ "loss": 3.7918643951416016,
+ "step": 1834
+ },
+ {
+ "epoch": 25.489296636085626,
+ "grad_norm": 0.24484702944755554,
+ "learning_rate": 0.0006,
+ "loss": 3.85046124458313,
+ "step": 1835
+ },
+ {
+ "epoch": 25.503276539973786,
+ "grad_norm": 0.2493520826101303,
+ "learning_rate": 0.0006,
+ "loss": 3.8043932914733887,
+ "step": 1836
+ },
+ {
+ "epoch": 25.51725644386195,
+ "grad_norm": 0.21509641408920288,
+ "learning_rate": 0.0006,
+ "loss": 3.8064627647399902,
+ "step": 1837
+ },
+ {
+ "epoch": 25.53123634775011,
+ "grad_norm": 0.21912820637226105,
+ "learning_rate": 0.0006,
+ "loss": 3.850588321685791,
+ "step": 1838
+ },
+ {
+ "epoch": 25.54521625163827,
+ "grad_norm": 0.28400927782058716,
+ "learning_rate": 0.0006,
+ "loss": 3.79818058013916,
+ "step": 1839
+ },
+ {
+ "epoch": 25.55919615552643,
+ "grad_norm": 0.32193225622177124,
+ "learning_rate": 0.0006,
+ "loss": 3.836275815963745,
+ "step": 1840
+ },
+ {
+ "epoch": 25.573176059414592,
+ "grad_norm": 0.2902325987815857,
+ "learning_rate": 0.0006,
+ "loss": 3.8080005645751953,
+ "step": 1841
+ },
+ {
+ "epoch": 25.587155963302752,
+ "grad_norm": 0.21759532392024994,
+ "learning_rate": 0.0006,
+ "loss": 3.8233771324157715,
+ "step": 1842
+ },
+ {
+ "epoch": 25.601135867190912,
+ "grad_norm": 0.19645214080810547,
+ "learning_rate": 0.0006,
+ "loss": 3.838881015777588,
+ "step": 1843
+ },
+ {
+ "epoch": 25.615115771079076,
+ "grad_norm": 0.19322903454303741,
+ "learning_rate": 0.0006,
+ "loss": 3.7870054244995117,
+ "step": 1844
+ },
+ {
+ "epoch": 25.629095674967235,
+ "grad_norm": 0.2074001580476761,
+ "learning_rate": 0.0006,
+ "loss": 3.8239974975585938,
+ "step": 1845
+ },
+ {
+ "epoch": 25.643075578855395,
+ "grad_norm": 0.2166101336479187,
+ "learning_rate": 0.0006,
+ "loss": 3.8290855884552,
+ "step": 1846
+ },
+ {
+ "epoch": 25.657055482743555,
+ "grad_norm": 0.23738539218902588,
+ "learning_rate": 0.0006,
+ "loss": 3.7993364334106445,
+ "step": 1847
+ },
+ {
+ "epoch": 25.67103538663172,
+ "grad_norm": 0.23882314562797546,
+ "learning_rate": 0.0006,
+ "loss": 3.802586078643799,
+ "step": 1848
+ },
+ {
+ "epoch": 25.68501529051988,
+ "grad_norm": 0.24168142676353455,
+ "learning_rate": 0.0006,
+ "loss": 3.8303489685058594,
+ "step": 1849
+ },
+ {
+ "epoch": 25.698995194408038,
+ "grad_norm": 0.22423343360424042,
+ "learning_rate": 0.0006,
+ "loss": 3.836228370666504,
+ "step": 1850
+ },
+ {
+ "epoch": 25.712975098296198,
+ "grad_norm": 0.23816974461078644,
+ "learning_rate": 0.0006,
+ "loss": 3.8380274772644043,
+ "step": 1851
+ },
+ {
+ "epoch": 25.72695500218436,
+ "grad_norm": 0.22465108335018158,
+ "learning_rate": 0.0006,
+ "loss": 3.8496339321136475,
+ "step": 1852
+ },
+ {
+ "epoch": 25.74093490607252,
+ "grad_norm": 0.20792442560195923,
+ "learning_rate": 0.0006,
+ "loss": 3.797853946685791,
+ "step": 1853
+ },
+ {
+ "epoch": 25.75491480996068,
+ "grad_norm": 0.20770230889320374,
+ "learning_rate": 0.0006,
+ "loss": 3.842322826385498,
+ "step": 1854
+ },
+ {
+ "epoch": 25.76889471384884,
+ "grad_norm": 0.1928192526102066,
+ "learning_rate": 0.0006,
+ "loss": 3.836540699005127,
+ "step": 1855
+ },
+ {
+ "epoch": 25.782874617737004,
+ "grad_norm": 0.19045178592205048,
+ "learning_rate": 0.0006,
+ "loss": 3.7758889198303223,
+ "step": 1856
+ },
+ {
+ "epoch": 25.796854521625164,
+ "grad_norm": 0.205548495054245,
+ "learning_rate": 0.0006,
+ "loss": 3.8244709968566895,
+ "step": 1857
+ },
+ {
+ "epoch": 25.810834425513324,
+ "grad_norm": 0.20968270301818848,
+ "learning_rate": 0.0006,
+ "loss": 3.8376216888427734,
+ "step": 1858
+ },
+ {
+ "epoch": 25.824814329401484,
+ "grad_norm": 0.18917354941368103,
+ "learning_rate": 0.0006,
+ "loss": 3.8497915267944336,
+ "step": 1859
+ },
+ {
+ "epoch": 25.838794233289647,
+ "grad_norm": 0.2050701528787613,
+ "learning_rate": 0.0006,
+ "loss": 3.819628953933716,
+ "step": 1860
+ },
+ {
+ "epoch": 25.852774137177807,
+ "grad_norm": 0.1981319785118103,
+ "learning_rate": 0.0006,
+ "loss": 3.8007922172546387,
+ "step": 1861
+ },
+ {
+ "epoch": 25.866754041065967,
+ "grad_norm": 0.19055861234664917,
+ "learning_rate": 0.0006,
+ "loss": 3.8304519653320312,
+ "step": 1862
+ },
+ {
+ "epoch": 25.88073394495413,
+ "grad_norm": 0.19255517423152924,
+ "learning_rate": 0.0006,
+ "loss": 3.833280563354492,
+ "step": 1863
+ },
+ {
+ "epoch": 25.89471384884229,
+ "grad_norm": 0.19059430062770844,
+ "learning_rate": 0.0006,
+ "loss": 3.813796281814575,
+ "step": 1864
+ },
+ {
+ "epoch": 25.90869375273045,
+ "grad_norm": 0.18581309914588928,
+ "learning_rate": 0.0006,
+ "loss": 3.8211798667907715,
+ "step": 1865
+ },
+ {
+ "epoch": 25.92267365661861,
+ "grad_norm": 0.20181003212928772,
+ "learning_rate": 0.0006,
+ "loss": 3.8380484580993652,
+ "step": 1866
+ },
+ {
+ "epoch": 25.936653560506773,
+ "grad_norm": 0.22334498167037964,
+ "learning_rate": 0.0006,
+ "loss": 3.8294434547424316,
+ "step": 1867
+ },
+ {
+ "epoch": 25.950633464394933,
+ "grad_norm": 0.20456703007221222,
+ "learning_rate": 0.0006,
+ "loss": 3.819223642349243,
+ "step": 1868
+ },
+ {
+ "epoch": 25.964613368283093,
+ "grad_norm": 0.1885606348514557,
+ "learning_rate": 0.0006,
+ "loss": 3.8110103607177734,
+ "step": 1869
+ },
+ {
+ "epoch": 25.978593272171253,
+ "grad_norm": 0.18862110376358032,
+ "learning_rate": 0.0006,
+ "loss": 3.788691997528076,
+ "step": 1870
+ },
+ {
+ "epoch": 25.992573176059416,
+ "grad_norm": 0.19802744686603546,
+ "learning_rate": 0.0006,
+ "loss": 3.8423619270324707,
+ "step": 1871
+ },
+ {
+ "epoch": 26.0,
+ "grad_norm": 0.23762032389640808,
+ "learning_rate": 0.0006,
+ "loss": 3.7848567962646484,
+ "step": 1872
+ },
+ {
+ "epoch": 26.0,
+ "eval_loss": 4.054965019226074,
+ "eval_runtime": 44.2423,
+ "eval_samples_per_second": 55.196,
+ "eval_steps_per_second": 3.458,
+ "step": 1872
+ },
+ {
+ "epoch": 26.01397990388816,
+ "grad_norm": 0.21533054113388062,
+ "learning_rate": 0.0006,
+ "loss": 3.8123154640197754,
+ "step": 1873
+ },
+ {
+ "epoch": 26.027959807776323,
+ "grad_norm": 0.25094854831695557,
+ "learning_rate": 0.0006,
+ "loss": 3.7847447395324707,
+ "step": 1874
+ },
+ {
+ "epoch": 26.041939711664483,
+ "grad_norm": 0.24042077362537384,
+ "learning_rate": 0.0006,
+ "loss": 3.8033599853515625,
+ "step": 1875
+ },
+ {
+ "epoch": 26.055919615552643,
+ "grad_norm": 0.2425149381160736,
+ "learning_rate": 0.0006,
+ "loss": 3.7828550338745117,
+ "step": 1876
+ },
+ {
+ "epoch": 26.069899519440803,
+ "grad_norm": 0.2300514280796051,
+ "learning_rate": 0.0006,
+ "loss": 3.750882148742676,
+ "step": 1877
+ },
+ {
+ "epoch": 26.083879423328966,
+ "grad_norm": 0.2513943612575531,
+ "learning_rate": 0.0006,
+ "loss": 3.800323963165283,
+ "step": 1878
+ },
+ {
+ "epoch": 26.097859327217126,
+ "grad_norm": 0.2536966800689697,
+ "learning_rate": 0.0006,
+ "loss": 3.8198962211608887,
+ "step": 1879
+ },
+ {
+ "epoch": 26.111839231105286,
+ "grad_norm": 0.24483931064605713,
+ "learning_rate": 0.0006,
+ "loss": 3.825563907623291,
+ "step": 1880
+ },
+ {
+ "epoch": 26.125819134993446,
+ "grad_norm": 0.2502584755420685,
+ "learning_rate": 0.0006,
+ "loss": 3.78756046295166,
+ "step": 1881
+ },
+ {
+ "epoch": 26.13979903888161,
+ "grad_norm": 0.2695745527744293,
+ "learning_rate": 0.0006,
+ "loss": 3.8205409049987793,
+ "step": 1882
+ },
+ {
+ "epoch": 26.15377894276977,
+ "grad_norm": 0.2873472273349762,
+ "learning_rate": 0.0006,
+ "loss": 3.7880778312683105,
+ "step": 1883
+ },
+ {
+ "epoch": 26.16775884665793,
+ "grad_norm": 0.28609949350357056,
+ "learning_rate": 0.0006,
+ "loss": 3.788517951965332,
+ "step": 1884
+ },
+ {
+ "epoch": 26.18173875054609,
+ "grad_norm": 0.28352269530296326,
+ "learning_rate": 0.0006,
+ "loss": 3.778015613555908,
+ "step": 1885
+ },
+ {
+ "epoch": 26.195718654434252,
+ "grad_norm": 0.27055084705352783,
+ "learning_rate": 0.0006,
+ "loss": 3.7857203483581543,
+ "step": 1886
+ },
+ {
+ "epoch": 26.209698558322412,
+ "grad_norm": 0.255647748708725,
+ "learning_rate": 0.0006,
+ "loss": 3.791355609893799,
+ "step": 1887
+ },
+ {
+ "epoch": 26.22367846221057,
+ "grad_norm": 0.22624439001083374,
+ "learning_rate": 0.0006,
+ "loss": 3.7624831199645996,
+ "step": 1888
+ },
+ {
+ "epoch": 26.23765836609873,
+ "grad_norm": 0.2283596396446228,
+ "learning_rate": 0.0006,
+ "loss": 3.8052897453308105,
+ "step": 1889
+ },
+ {
+ "epoch": 26.251638269986895,
+ "grad_norm": 0.2336510866880417,
+ "learning_rate": 0.0006,
+ "loss": 3.789015054702759,
+ "step": 1890
+ },
+ {
+ "epoch": 26.265618173875055,
+ "grad_norm": 0.24107608199119568,
+ "learning_rate": 0.0006,
+ "loss": 3.756551742553711,
+ "step": 1891
+ },
+ {
+ "epoch": 26.279598077763215,
+ "grad_norm": 0.22438564896583557,
+ "learning_rate": 0.0006,
+ "loss": 3.797952651977539,
+ "step": 1892
+ },
+ {
+ "epoch": 26.293577981651374,
+ "grad_norm": 0.24594341218471527,
+ "learning_rate": 0.0006,
+ "loss": 3.7925708293914795,
+ "step": 1893
+ },
+ {
+ "epoch": 26.307557885539538,
+ "grad_norm": 0.23314352333545685,
+ "learning_rate": 0.0006,
+ "loss": 3.792447328567505,
+ "step": 1894
+ },
+ {
+ "epoch": 26.321537789427698,
+ "grad_norm": 0.20870383083820343,
+ "learning_rate": 0.0006,
+ "loss": 3.7888340950012207,
+ "step": 1895
+ },
+ {
+ "epoch": 26.335517693315857,
+ "grad_norm": 0.206504687666893,
+ "learning_rate": 0.0006,
+ "loss": 3.7856602668762207,
+ "step": 1896
+ },
+ {
+ "epoch": 26.34949759720402,
+ "grad_norm": 0.20193266868591309,
+ "learning_rate": 0.0006,
+ "loss": 3.810800552368164,
+ "step": 1897
+ },
+ {
+ "epoch": 26.36347750109218,
+ "grad_norm": 0.2143869698047638,
+ "learning_rate": 0.0006,
+ "loss": 3.818742275238037,
+ "step": 1898
+ },
+ {
+ "epoch": 26.37745740498034,
+ "grad_norm": 0.21388593316078186,
+ "learning_rate": 0.0006,
+ "loss": 3.7576632499694824,
+ "step": 1899
+ },
+ {
+ "epoch": 26.3914373088685,
+ "grad_norm": 0.1933414787054062,
+ "learning_rate": 0.0006,
+ "loss": 3.802579879760742,
+ "step": 1900
+ },
+ {
+ "epoch": 26.405417212756664,
+ "grad_norm": 0.18144549429416656,
+ "learning_rate": 0.0006,
+ "loss": 3.7830452919006348,
+ "step": 1901
+ },
+ {
+ "epoch": 26.419397116644824,
+ "grad_norm": 0.20027601718902588,
+ "learning_rate": 0.0006,
+ "loss": 3.8112521171569824,
+ "step": 1902
+ },
+ {
+ "epoch": 26.433377020532983,
+ "grad_norm": 0.19402910768985748,
+ "learning_rate": 0.0006,
+ "loss": 3.778012990951538,
+ "step": 1903
+ },
+ {
+ "epoch": 26.447356924421143,
+ "grad_norm": 0.19020743668079376,
+ "learning_rate": 0.0006,
+ "loss": 3.823355197906494,
+ "step": 1904
+ },
+ {
+ "epoch": 26.461336828309307,
+ "grad_norm": 0.1885242760181427,
+ "learning_rate": 0.0006,
+ "loss": 3.782108783721924,
+ "step": 1905
+ },
+ {
+ "epoch": 26.475316732197467,
+ "grad_norm": 0.2024235874414444,
+ "learning_rate": 0.0006,
+ "loss": 3.810448408126831,
+ "step": 1906
+ },
+ {
+ "epoch": 26.489296636085626,
+ "grad_norm": 0.21408027410507202,
+ "learning_rate": 0.0006,
+ "loss": 3.8185606002807617,
+ "step": 1907
+ },
+ {
+ "epoch": 26.503276539973786,
+ "grad_norm": 0.22810906171798706,
+ "learning_rate": 0.0006,
+ "loss": 3.8052706718444824,
+ "step": 1908
+ },
+ {
+ "epoch": 26.51725644386195,
+ "grad_norm": 0.21328197419643402,
+ "learning_rate": 0.0006,
+ "loss": 3.7858219146728516,
+ "step": 1909
+ },
+ {
+ "epoch": 26.53123634775011,
+ "grad_norm": 0.20843173563480377,
+ "learning_rate": 0.0006,
+ "loss": 3.8069310188293457,
+ "step": 1910
+ },
+ {
+ "epoch": 26.54521625163827,
+ "grad_norm": 0.2072986662387848,
+ "learning_rate": 0.0006,
+ "loss": 3.794975996017456,
+ "step": 1911
+ },
+ {
+ "epoch": 26.55919615552643,
+ "grad_norm": 0.2203216850757599,
+ "learning_rate": 0.0006,
+ "loss": 3.8070101737976074,
+ "step": 1912
+ },
+ {
+ "epoch": 26.573176059414592,
+ "grad_norm": 0.23449191451072693,
+ "learning_rate": 0.0006,
+ "loss": 3.828695774078369,
+ "step": 1913
+ },
+ {
+ "epoch": 26.587155963302752,
+ "grad_norm": 0.2222008854150772,
+ "learning_rate": 0.0006,
+ "loss": 3.781275749206543,
+ "step": 1914
+ },
+ {
+ "epoch": 26.601135867190912,
+ "grad_norm": 0.22328314185142517,
+ "learning_rate": 0.0006,
+ "loss": 3.7953736782073975,
+ "step": 1915
+ },
+ {
+ "epoch": 26.615115771079076,
+ "grad_norm": 0.2377961128950119,
+ "learning_rate": 0.0006,
+ "loss": 3.8428916931152344,
+ "step": 1916
+ },
+ {
+ "epoch": 26.629095674967235,
+ "grad_norm": 0.2546147108078003,
+ "learning_rate": 0.0006,
+ "loss": 3.7940590381622314,
+ "step": 1917
+ },
+ {
+ "epoch": 26.643075578855395,
+ "grad_norm": 0.24234509468078613,
+ "learning_rate": 0.0006,
+ "loss": 3.802234172821045,
+ "step": 1918
+ },
+ {
+ "epoch": 26.657055482743555,
+ "grad_norm": 0.21294651925563812,
+ "learning_rate": 0.0006,
+ "loss": 3.8159232139587402,
+ "step": 1919
+ },
+ {
+ "epoch": 26.67103538663172,
+ "grad_norm": 0.20008964836597443,
+ "learning_rate": 0.0006,
+ "loss": 3.796949863433838,
+ "step": 1920
+ },
+ {
+ "epoch": 26.68501529051988,
+ "grad_norm": 0.21031023561954498,
+ "learning_rate": 0.0006,
+ "loss": 3.8015570640563965,
+ "step": 1921
+ },
+ {
+ "epoch": 26.698995194408038,
+ "grad_norm": 0.2185603827238083,
+ "learning_rate": 0.0006,
+ "loss": 3.8022537231445312,
+ "step": 1922
+ },
+ {
+ "epoch": 26.712975098296198,
+ "grad_norm": 0.22957198321819305,
+ "learning_rate": 0.0006,
+ "loss": 3.7859907150268555,
+ "step": 1923
+ },
+ {
+ "epoch": 26.72695500218436,
+ "grad_norm": 0.23779156804084778,
+ "learning_rate": 0.0006,
+ "loss": 3.830345630645752,
+ "step": 1924
+ },
+ {
+ "epoch": 26.74093490607252,
+ "grad_norm": 0.23577193915843964,
+ "learning_rate": 0.0006,
+ "loss": 3.777338981628418,
+ "step": 1925
+ },
+ {
+ "epoch": 26.75491480996068,
+ "grad_norm": 0.2521933913230896,
+ "learning_rate": 0.0006,
+ "loss": 3.8215396404266357,
+ "step": 1926
+ },
+ {
+ "epoch": 26.76889471384884,
+ "grad_norm": 0.25050726532936096,
+ "learning_rate": 0.0006,
+ "loss": 3.817509651184082,
+ "step": 1927
+ },
+ {
+ "epoch": 26.782874617737004,
+ "grad_norm": 0.24442453682422638,
+ "learning_rate": 0.0006,
+ "loss": 3.8033013343811035,
+ "step": 1928
+ },
+ {
+ "epoch": 26.796854521625164,
+ "grad_norm": 0.2280828058719635,
+ "learning_rate": 0.0006,
+ "loss": 3.798625946044922,
+ "step": 1929
+ },
+ {
+ "epoch": 26.810834425513324,
+ "grad_norm": 0.23072117567062378,
+ "learning_rate": 0.0006,
+ "loss": 3.8109097480773926,
+ "step": 1930
+ },
+ {
+ "epoch": 26.824814329401484,
+ "grad_norm": 0.2690806984901428,
+ "learning_rate": 0.0006,
+ "loss": 3.7707223892211914,
+ "step": 1931
+ },
+ {
+ "epoch": 26.838794233289647,
+ "grad_norm": 0.24973517656326294,
+ "learning_rate": 0.0006,
+ "loss": 3.7788357734680176,
+ "step": 1932
+ },
+ {
+ "epoch": 26.852774137177807,
+ "grad_norm": 0.24221451580524445,
+ "learning_rate": 0.0006,
+ "loss": 3.8083114624023438,
+ "step": 1933
+ },
+ {
+ "epoch": 26.866754041065967,
+ "grad_norm": 0.23499037325382233,
+ "learning_rate": 0.0006,
+ "loss": 3.845512866973877,
+ "step": 1934
+ },
+ {
+ "epoch": 26.88073394495413,
+ "grad_norm": 0.2172643095254898,
+ "learning_rate": 0.0006,
+ "loss": 3.8171584606170654,
+ "step": 1935
+ },
+ {
+ "epoch": 26.89471384884229,
+ "grad_norm": 0.19935013353824615,
+ "learning_rate": 0.0006,
+ "loss": 3.808596611022949,
+ "step": 1936
+ },
+ {
+ "epoch": 26.90869375273045,
+ "grad_norm": 0.2077745944261551,
+ "learning_rate": 0.0006,
+ "loss": 3.842836856842041,
+ "step": 1937
+ },
+ {
+ "epoch": 26.92267365661861,
+ "grad_norm": 0.20017282664775848,
+ "learning_rate": 0.0006,
+ "loss": 3.791734457015991,
+ "step": 1938
+ },
+ {
+ "epoch": 26.936653560506773,
+ "grad_norm": 0.2082037627696991,
+ "learning_rate": 0.0006,
+ "loss": 3.7987842559814453,
+ "step": 1939
+ },
+ {
+ "epoch": 26.950633464394933,
+ "grad_norm": 0.21100632846355438,
+ "learning_rate": 0.0006,
+ "loss": 3.8033156394958496,
+ "step": 1940
+ },
+ {
+ "epoch": 26.964613368283093,
+ "grad_norm": 0.2091331034898758,
+ "learning_rate": 0.0006,
+ "loss": 3.8250908851623535,
+ "step": 1941
+ },
+ {
+ "epoch": 26.978593272171253,
+ "grad_norm": 0.19728544354438782,
+ "learning_rate": 0.0006,
+ "loss": 3.7934365272521973,
+ "step": 1942
+ },
+ {
+ "epoch": 26.992573176059416,
+ "grad_norm": 0.19266465306282043,
+ "learning_rate": 0.0006,
+ "loss": 3.8095879554748535,
+ "step": 1943
+ },
+ {
+ "epoch": 27.0,
+ "grad_norm": 0.2264554500579834,
+ "learning_rate": 0.0006,
+ "loss": 3.840135335922241,
+ "step": 1944
+ },
+ {
+ "epoch": 27.0,
+ "eval_loss": 4.046233654022217,
+ "eval_runtime": 44.0648,
+ "eval_samples_per_second": 55.418,
+ "eval_steps_per_second": 3.472,
+ "step": 1944
+ },
+ {
+ "epoch": 27.01397990388816,
+ "grad_norm": 0.24101831018924713,
+ "learning_rate": 0.0006,
+ "loss": 3.7463197708129883,
+ "step": 1945
+ },
+ {
+ "epoch": 27.027959807776323,
+ "grad_norm": 0.2917300760746002,
+ "learning_rate": 0.0006,
+ "loss": 3.769083261489868,
+ "step": 1946
+ },
+ {
+ "epoch": 27.041939711664483,
+ "grad_norm": 0.30864080786705017,
+ "learning_rate": 0.0006,
+ "loss": 3.7774248123168945,
+ "step": 1947
+ },
+ {
+ "epoch": 27.055919615552643,
+ "grad_norm": 0.28574317693710327,
+ "learning_rate": 0.0006,
+ "loss": 3.759530544281006,
+ "step": 1948
+ },
+ {
+ "epoch": 27.069899519440803,
+ "grad_norm": 0.23381628096103668,
+ "learning_rate": 0.0006,
+ "loss": 3.764347791671753,
+ "step": 1949
+ },
+ {
+ "epoch": 27.083879423328966,
+ "grad_norm": 0.2717961072921753,
+ "learning_rate": 0.0006,
+ "loss": 3.785306692123413,
+ "step": 1950
+ },
+ {
+ "epoch": 27.097859327217126,
+ "grad_norm": 0.2753375470638275,
+ "learning_rate": 0.0006,
+ "loss": 3.7511696815490723,
+ "step": 1951
+ },
+ {
+ "epoch": 27.111839231105286,
+ "grad_norm": 0.260250061750412,
+ "learning_rate": 0.0006,
+ "loss": 3.7775721549987793,
+ "step": 1952
+ },
+ {
+ "epoch": 27.125819134993446,
+ "grad_norm": 0.2462741732597351,
+ "learning_rate": 0.0006,
+ "loss": 3.775203227996826,
+ "step": 1953
+ },
+ {
+ "epoch": 27.13979903888161,
+ "grad_norm": 0.23599569499492645,
+ "learning_rate": 0.0006,
+ "loss": 3.7580947875976562,
+ "step": 1954
+ },
+ {
+ "epoch": 27.15377894276977,
+ "grad_norm": 0.21749968826770782,
+ "learning_rate": 0.0006,
+ "loss": 3.778254985809326,
+ "step": 1955
+ },
+ {
+ "epoch": 27.16775884665793,
+ "grad_norm": 0.22210343182086945,
+ "learning_rate": 0.0006,
+ "loss": 3.734727144241333,
+ "step": 1956
+ },
+ {
+ "epoch": 27.18173875054609,
+ "grad_norm": 0.23376141488552094,
+ "learning_rate": 0.0006,
+ "loss": 3.7892181873321533,
+ "step": 1957
+ },
+ {
+ "epoch": 27.195718654434252,
+ "grad_norm": 0.21751847863197327,
+ "learning_rate": 0.0006,
+ "loss": 3.801621913909912,
+ "step": 1958
+ },
+ {
+ "epoch": 27.209698558322412,
+ "grad_norm": 0.22995133697986603,
+ "learning_rate": 0.0006,
+ "loss": 3.8031363487243652,
+ "step": 1959
+ },
+ {
+ "epoch": 27.22367846221057,
+ "grad_norm": 0.22716350853443146,
+ "learning_rate": 0.0006,
+ "loss": 3.7591521739959717,
+ "step": 1960
+ },
+ {
+ "epoch": 27.23765836609873,
+ "grad_norm": 0.20819596946239471,
+ "learning_rate": 0.0006,
+ "loss": 3.7988929748535156,
+ "step": 1961
+ },
+ {
+ "epoch": 27.251638269986895,
+ "grad_norm": 0.19861504435539246,
+ "learning_rate": 0.0006,
+ "loss": 3.7752838134765625,
+ "step": 1962
+ },
+ {
+ "epoch": 27.265618173875055,
+ "grad_norm": 0.1959371268749237,
+ "learning_rate": 0.0006,
+ "loss": 3.7707290649414062,
+ "step": 1963
+ },
+ {
+ "epoch": 27.279598077763215,
+ "grad_norm": 0.18772225081920624,
+ "learning_rate": 0.0006,
+ "loss": 3.7714555263519287,
+ "step": 1964
+ },
+ {
+ "epoch": 27.293577981651374,
+ "grad_norm": 0.20839282870292664,
+ "learning_rate": 0.0006,
+ "loss": 3.7857258319854736,
+ "step": 1965
+ },
+ {
+ "epoch": 27.307557885539538,
+ "grad_norm": 0.22521957755088806,
+ "learning_rate": 0.0006,
+ "loss": 3.776909351348877,
+ "step": 1966
+ },
+ {
+ "epoch": 27.321537789427698,
+ "grad_norm": 0.19533076882362366,
+ "learning_rate": 0.0006,
+ "loss": 3.8152523040771484,
+ "step": 1967
+ },
+ {
+ "epoch": 27.335517693315857,
+ "grad_norm": 0.18678881227970123,
+ "learning_rate": 0.0006,
+ "loss": 3.751555919647217,
+ "step": 1968
+ },
+ {
+ "epoch": 27.34949759720402,
+ "grad_norm": 0.18257129192352295,
+ "learning_rate": 0.0006,
+ "loss": 3.7701754570007324,
+ "step": 1969
+ },
+ {
+ "epoch": 27.36347750109218,
+ "grad_norm": 0.18191468715667725,
+ "learning_rate": 0.0006,
+ "loss": 3.817451238632202,
+ "step": 1970
+ },
+ {
+ "epoch": 27.37745740498034,
+ "grad_norm": 0.18665607273578644,
+ "learning_rate": 0.0006,
+ "loss": 3.78645658493042,
+ "step": 1971
+ },
+ {
+ "epoch": 27.3914373088685,
+ "grad_norm": 0.19604510068893433,
+ "learning_rate": 0.0006,
+ "loss": 3.7735626697540283,
+ "step": 1972
+ },
+ {
+ "epoch": 27.405417212756664,
+ "grad_norm": 0.20136640965938568,
+ "learning_rate": 0.0006,
+ "loss": 3.77310848236084,
+ "step": 1973
+ },
+ {
+ "epoch": 27.419397116644824,
+ "grad_norm": 0.19314947724342346,
+ "learning_rate": 0.0006,
+ "loss": 3.8084068298339844,
+ "step": 1974
+ },
+ {
+ "epoch": 27.433377020532983,
+ "grad_norm": 0.20761604607105255,
+ "learning_rate": 0.0006,
+ "loss": 3.80732798576355,
+ "step": 1975
+ },
+ {
+ "epoch": 27.447356924421143,
+ "grad_norm": 0.2239987850189209,
+ "learning_rate": 0.0006,
+ "loss": 3.7950329780578613,
+ "step": 1976
+ },
+ {
+ "epoch": 27.461336828309307,
+ "grad_norm": 0.22146444022655487,
+ "learning_rate": 0.0006,
+ "loss": 3.7957234382629395,
+ "step": 1977
+ },
+ {
+ "epoch": 27.475316732197467,
+ "grad_norm": 0.23218585550785065,
+ "learning_rate": 0.0006,
+ "loss": 3.806377410888672,
+ "step": 1978
+ },
+ {
+ "epoch": 27.489296636085626,
+ "grad_norm": 0.23549026250839233,
+ "learning_rate": 0.0006,
+ "loss": 3.7833383083343506,
+ "step": 1979
+ },
+ {
+ "epoch": 27.503276539973786,
+ "grad_norm": 0.24219457805156708,
+ "learning_rate": 0.0006,
+ "loss": 3.8154187202453613,
+ "step": 1980
+ },
+ {
+ "epoch": 27.51725644386195,
+ "grad_norm": 0.23703953623771667,
+ "learning_rate": 0.0006,
+ "loss": 3.7846405506134033,
+ "step": 1981
+ },
+ {
+ "epoch": 27.53123634775011,
+ "grad_norm": 0.23596109449863434,
+ "learning_rate": 0.0006,
+ "loss": 3.7698163986206055,
+ "step": 1982
+ },
+ {
+ "epoch": 27.54521625163827,
+ "grad_norm": 0.23073506355285645,
+ "learning_rate": 0.0006,
+ "loss": 3.8114185333251953,
+ "step": 1983
+ },
+ {
+ "epoch": 27.55919615552643,
+ "grad_norm": 0.24761143326759338,
+ "learning_rate": 0.0006,
+ "loss": 3.7548117637634277,
+ "step": 1984
+ },
+ {
+ "epoch": 27.573176059414592,
+ "grad_norm": 0.2834068238735199,
+ "learning_rate": 0.0006,
+ "loss": 3.7990212440490723,
+ "step": 1985
+ },
+ {
+ "epoch": 27.587155963302752,
+ "grad_norm": 0.29774922132492065,
+ "learning_rate": 0.0006,
+ "loss": 3.7845072746276855,
+ "step": 1986
+ },
+ {
+ "epoch": 27.601135867190912,
+ "grad_norm": 0.2732089161872864,
+ "learning_rate": 0.0006,
+ "loss": 3.8050694465637207,
+ "step": 1987
+ },
+ {
+ "epoch": 27.615115771079076,
+ "grad_norm": 0.24433180689811707,
+ "learning_rate": 0.0006,
+ "loss": 3.762704372406006,
+ "step": 1988
+ },
+ {
+ "epoch": 27.629095674967235,
+ "grad_norm": 0.21340419352054596,
+ "learning_rate": 0.0006,
+ "loss": 3.826023817062378,
+ "step": 1989
+ },
+ {
+ "epoch": 27.643075578855395,
+ "grad_norm": 0.22518761456012726,
+ "learning_rate": 0.0006,
+ "loss": 3.7823970317840576,
+ "step": 1990
+ },
+ {
+ "epoch": 27.657055482743555,
+ "grad_norm": 0.2196940928697586,
+ "learning_rate": 0.0006,
+ "loss": 3.787463426589966,
+ "step": 1991
+ },
+ {
+ "epoch": 27.67103538663172,
+ "grad_norm": 0.21906471252441406,
+ "learning_rate": 0.0006,
+ "loss": 3.7856104373931885,
+ "step": 1992
+ },
+ {
+ "epoch": 27.68501529051988,
+ "grad_norm": 0.2280956357717514,
+ "learning_rate": 0.0006,
+ "loss": 3.7829794883728027,
+ "step": 1993
+ },
+ {
+ "epoch": 27.698995194408038,
+ "grad_norm": 0.22567005455493927,
+ "learning_rate": 0.0006,
+ "loss": 3.762316942214966,
+ "step": 1994
+ },
+ {
+ "epoch": 27.712975098296198,
+ "grad_norm": 0.21703341603279114,
+ "learning_rate": 0.0006,
+ "loss": 3.772535800933838,
+ "step": 1995
+ },
+ {
+ "epoch": 27.72695500218436,
+ "grad_norm": 0.20586732029914856,
+ "learning_rate": 0.0006,
+ "loss": 3.775930881500244,
+ "step": 1996
+ },
+ {
+ "epoch": 27.74093490607252,
+ "grad_norm": 0.2126319408416748,
+ "learning_rate": 0.0006,
+ "loss": 3.793353796005249,
+ "step": 1997
+ },
+ {
+ "epoch": 27.75491480996068,
+ "grad_norm": 0.19664280116558075,
+ "learning_rate": 0.0006,
+ "loss": 3.7721195220947266,
+ "step": 1998
+ },
+ {
+ "epoch": 27.76889471384884,
+ "grad_norm": 0.17695854604244232,
+ "learning_rate": 0.0006,
+ "loss": 3.7931227684020996,
+ "step": 1999
+ },
+ {
+ "epoch": 27.782874617737004,
+ "grad_norm": 0.1899620145559311,
+ "learning_rate": 0.0006,
+ "loss": 3.798692226409912,
+ "step": 2000
+ },
+ {
+ "epoch": 27.796854521625164,
+ "grad_norm": 0.20334762334823608,
+ "learning_rate": 0.0006,
+ "loss": 3.774670124053955,
+ "step": 2001
+ },
+ {
+ "epoch": 27.810834425513324,
+ "grad_norm": 0.21150588989257812,
+ "learning_rate": 0.0006,
+ "loss": 3.803859233856201,
+ "step": 2002
+ },
+ {
+ "epoch": 27.824814329401484,
+ "grad_norm": 0.20425523817539215,
+ "learning_rate": 0.0006,
+ "loss": 3.810410976409912,
+ "step": 2003
+ },
+ {
+ "epoch": 27.838794233289647,
+ "grad_norm": 0.20468413829803467,
+ "learning_rate": 0.0006,
+ "loss": 3.800917625427246,
+ "step": 2004
+ },
+ {
+ "epoch": 27.852774137177807,
+ "grad_norm": 0.2113286256790161,
+ "learning_rate": 0.0006,
+ "loss": 3.7581989765167236,
+ "step": 2005
+ },
+ {
+ "epoch": 27.866754041065967,
+ "grad_norm": 0.2098054736852646,
+ "learning_rate": 0.0006,
+ "loss": 3.7921502590179443,
+ "step": 2006
+ },
+ {
+ "epoch": 27.88073394495413,
+ "grad_norm": 0.21701586246490479,
+ "learning_rate": 0.0006,
+ "loss": 3.8166770935058594,
+ "step": 2007
+ },
+ {
+ "epoch": 27.89471384884229,
+ "grad_norm": 0.2086625099182129,
+ "learning_rate": 0.0006,
+ "loss": 3.7732229232788086,
+ "step": 2008
+ },
+ {
+ "epoch": 27.90869375273045,
+ "grad_norm": 0.2186812162399292,
+ "learning_rate": 0.0006,
+ "loss": 3.8067402839660645,
+ "step": 2009
+ },
+ {
+ "epoch": 27.92267365661861,
+ "grad_norm": 0.2168985903263092,
+ "learning_rate": 0.0006,
+ "loss": 3.798159122467041,
+ "step": 2010
+ },
+ {
+ "epoch": 27.936653560506773,
+ "grad_norm": 0.23713620007038116,
+ "learning_rate": 0.0006,
+ "loss": 3.7958693504333496,
+ "step": 2011
+ },
+ {
+ "epoch": 27.950633464394933,
+ "grad_norm": 0.23592841625213623,
+ "learning_rate": 0.0006,
+ "loss": 3.795126438140869,
+ "step": 2012
+ },
+ {
+ "epoch": 27.964613368283093,
+ "grad_norm": 0.22210197150707245,
+ "learning_rate": 0.0006,
+ "loss": 3.791013240814209,
+ "step": 2013
+ },
+ {
+ "epoch": 27.978593272171253,
+ "grad_norm": 0.23190008103847504,
+ "learning_rate": 0.0006,
+ "loss": 3.813408374786377,
+ "step": 2014
+ },
+ {
+ "epoch": 27.992573176059416,
+ "grad_norm": 0.22158131003379822,
+ "learning_rate": 0.0006,
+ "loss": 3.7975716590881348,
+ "step": 2015
+ },
+ {
+ "epoch": 28.0,
+ "grad_norm": 0.2300519198179245,
+ "learning_rate": 0.0006,
+ "loss": 3.776214838027954,
+ "step": 2016
+ },
+ {
+ "epoch": 28.0,
+ "eval_loss": 4.04406213760376,
+ "eval_runtime": 44.0285,
+ "eval_samples_per_second": 55.464,
+ "eval_steps_per_second": 3.475,
+ "step": 2016
+ },
+ {
+ "epoch": 28.01397990388816,
+ "grad_norm": 0.21007688343524933,
+ "learning_rate": 0.0006,
+ "loss": 3.7366907596588135,
+ "step": 2017
+ },
+ {
+ "epoch": 28.027959807776323,
+ "grad_norm": 0.1941644549369812,
+ "learning_rate": 0.0006,
+ "loss": 3.744373321533203,
+ "step": 2018
+ },
+ {
+ "epoch": 28.041939711664483,
+ "grad_norm": 0.21308493614196777,
+ "learning_rate": 0.0006,
+ "loss": 3.7650012969970703,
+ "step": 2019
+ },
+ {
+ "epoch": 28.055919615552643,
+ "grad_norm": 0.20114868879318237,
+ "learning_rate": 0.0006,
+ "loss": 3.7652382850646973,
+ "step": 2020
+ },
+ {
+ "epoch": 28.069899519440803,
+ "grad_norm": 0.20266319811344147,
+ "learning_rate": 0.0006,
+ "loss": 3.7710442543029785,
+ "step": 2021
+ },
+ {
+ "epoch": 28.083879423328966,
+ "grad_norm": 0.205102801322937,
+ "learning_rate": 0.0006,
+ "loss": 3.7515463829040527,
+ "step": 2022
+ },
+ {
+ "epoch": 28.097859327217126,
+ "grad_norm": 0.22002041339874268,
+ "learning_rate": 0.0006,
+ "loss": 3.762019157409668,
+ "step": 2023
+ },
+ {
+ "epoch": 28.111839231105286,
+ "grad_norm": 0.2063235342502594,
+ "learning_rate": 0.0006,
+ "loss": 3.765453338623047,
+ "step": 2024
+ },
+ {
+ "epoch": 28.125819134993446,
+ "grad_norm": 0.19145619869232178,
+ "learning_rate": 0.0006,
+ "loss": 3.769411325454712,
+ "step": 2025
+ },
+ {
+ "epoch": 28.13979903888161,
+ "grad_norm": 0.19308455288410187,
+ "learning_rate": 0.0006,
+ "loss": 3.8009989261627197,
+ "step": 2026
+ },
+ {
+ "epoch": 28.15377894276977,
+ "grad_norm": 0.220510333776474,
+ "learning_rate": 0.0006,
+ "loss": 3.7582602500915527,
+ "step": 2027
+ },
+ {
+ "epoch": 28.16775884665793,
+ "grad_norm": 0.22855883836746216,
+ "learning_rate": 0.0006,
+ "loss": 3.803917407989502,
+ "step": 2028
+ },
+ {
+ "epoch": 28.18173875054609,
+ "grad_norm": 0.24206340312957764,
+ "learning_rate": 0.0006,
+ "loss": 3.764101028442383,
+ "step": 2029
+ },
+ {
+ "epoch": 28.195718654434252,
+ "grad_norm": 0.23973612487316132,
+ "learning_rate": 0.0006,
+ "loss": 3.787308931350708,
+ "step": 2030
+ },
+ {
+ "epoch": 28.209698558322412,
+ "grad_norm": 0.21400697529315948,
+ "learning_rate": 0.0006,
+ "loss": 3.7706117630004883,
+ "step": 2031
+ },
+ {
+ "epoch": 28.22367846221057,
+ "grad_norm": 0.21983976662158966,
+ "learning_rate": 0.0006,
+ "loss": 3.772731304168701,
+ "step": 2032
+ },
+ {
+ "epoch": 28.23765836609873,
+ "grad_norm": 0.22427113354206085,
+ "learning_rate": 0.0006,
+ "loss": 3.7724413871765137,
+ "step": 2033
+ },
+ {
+ "epoch": 28.251638269986895,
+ "grad_norm": 0.23665079474449158,
+ "learning_rate": 0.0006,
+ "loss": 3.769845962524414,
+ "step": 2034
+ },
+ {
+ "epoch": 28.265618173875055,
+ "grad_norm": 0.22663180530071259,
+ "learning_rate": 0.0006,
+ "loss": 3.764380931854248,
+ "step": 2035
+ },
+ {
+ "epoch": 28.279598077763215,
+ "grad_norm": 0.21094927191734314,
+ "learning_rate": 0.0006,
+ "loss": 3.7598326206207275,
+ "step": 2036
+ },
+ {
+ "epoch": 28.293577981651374,
+ "grad_norm": 0.20419518649578094,
+ "learning_rate": 0.0006,
+ "loss": 3.7737207412719727,
+ "step": 2037
+ },
+ {
+ "epoch": 28.307557885539538,
+ "grad_norm": 0.2171909660100937,
+ "learning_rate": 0.0006,
+ "loss": 3.7499468326568604,
+ "step": 2038
+ },
+ {
+ "epoch": 28.321537789427698,
+ "grad_norm": 0.22749298810958862,
+ "learning_rate": 0.0006,
+ "loss": 3.767536163330078,
+ "step": 2039
+ },
+ {
+ "epoch": 28.335517693315857,
+ "grad_norm": 0.22821909189224243,
+ "learning_rate": 0.0006,
+ "loss": 3.744386672973633,
+ "step": 2040
+ },
+ {
+ "epoch": 28.34949759720402,
+ "grad_norm": 0.2227880209684372,
+ "learning_rate": 0.0006,
+ "loss": 3.72955322265625,
+ "step": 2041
+ },
+ {
+ "epoch": 28.36347750109218,
+ "grad_norm": 0.22204327583312988,
+ "learning_rate": 0.0006,
+ "loss": 3.793854236602783,
+ "step": 2042
+ },
+ {
+ "epoch": 28.37745740498034,
+ "grad_norm": 0.21621409058570862,
+ "learning_rate": 0.0006,
+ "loss": 3.775379180908203,
+ "step": 2043
+ },
+ {
+ "epoch": 28.3914373088685,
+ "grad_norm": 0.2439221441745758,
+ "learning_rate": 0.0006,
+ "loss": 3.727464199066162,
+ "step": 2044
+ },
+ {
+ "epoch": 28.405417212756664,
+ "grad_norm": 0.24408605694770813,
+ "learning_rate": 0.0006,
+ "loss": 3.761747360229492,
+ "step": 2045
+ },
+ {
+ "epoch": 28.419397116644824,
+ "grad_norm": 0.26118648052215576,
+ "learning_rate": 0.0006,
+ "loss": 3.7587313652038574,
+ "step": 2046
+ },
+ {
+ "epoch": 28.433377020532983,
+ "grad_norm": 0.25948166847229004,
+ "learning_rate": 0.0006,
+ "loss": 3.7698440551757812,
+ "step": 2047
+ },
+ {
+ "epoch": 28.447356924421143,
+ "grad_norm": 0.26413780450820923,
+ "learning_rate": 0.0006,
+ "loss": 3.799107551574707,
+ "step": 2048
+ },
+ {
+ "epoch": 28.461336828309307,
+ "grad_norm": 0.2687148153781891,
+ "learning_rate": 0.0006,
+ "loss": 3.7564382553100586,
+ "step": 2049
+ },
+ {
+ "epoch": 28.475316732197467,
+ "grad_norm": 0.2676694691181183,
+ "learning_rate": 0.0006,
+ "loss": 3.754267692565918,
+ "step": 2050
+ },
+ {
+ "epoch": 28.489296636085626,
+ "grad_norm": 0.27275168895721436,
+ "learning_rate": 0.0006,
+ "loss": 3.802988052368164,
+ "step": 2051
+ },
+ {
+ "epoch": 28.503276539973786,
+ "grad_norm": 0.28783538937568665,
+ "learning_rate": 0.0006,
+ "loss": 3.762540817260742,
+ "step": 2052
+ },
+ {
+ "epoch": 28.51725644386195,
+ "grad_norm": 0.2628997266292572,
+ "learning_rate": 0.0006,
+ "loss": 3.7933349609375,
+ "step": 2053
+ },
+ {
+ "epoch": 28.53123634775011,
+ "grad_norm": 0.2498515099287033,
+ "learning_rate": 0.0006,
+ "loss": 3.7773094177246094,
+ "step": 2054
+ },
+ {
+ "epoch": 28.54521625163827,
+ "grad_norm": 0.22625942528247833,
+ "learning_rate": 0.0006,
+ "loss": 3.803457021713257,
+ "step": 2055
+ },
+ {
+ "epoch": 28.55919615552643,
+ "grad_norm": 0.21488751471042633,
+ "learning_rate": 0.0006,
+ "loss": 3.78924560546875,
+ "step": 2056
+ },
+ {
+ "epoch": 28.573176059414592,
+ "grad_norm": 0.22041267156600952,
+ "learning_rate": 0.0006,
+ "loss": 3.79361629486084,
+ "step": 2057
+ },
+ {
+ "epoch": 28.587155963302752,
+ "grad_norm": 0.23164816200733185,
+ "learning_rate": 0.0006,
+ "loss": 3.735037326812744,
+ "step": 2058
+ },
+ {
+ "epoch": 28.601135867190912,
+ "grad_norm": 0.22371916472911835,
+ "learning_rate": 0.0006,
+ "loss": 3.731417179107666,
+ "step": 2059
+ },
+ {
+ "epoch": 28.615115771079076,
+ "grad_norm": 0.2280314862728119,
+ "learning_rate": 0.0006,
+ "loss": 3.796154499053955,
+ "step": 2060
+ },
+ {
+ "epoch": 28.629095674967235,
+ "grad_norm": 0.21386604011058807,
+ "learning_rate": 0.0006,
+ "loss": 3.778648614883423,
+ "step": 2061
+ },
+ {
+ "epoch": 28.643075578855395,
+ "grad_norm": 0.20433050394058228,
+ "learning_rate": 0.0006,
+ "loss": 3.772826910018921,
+ "step": 2062
+ },
+ {
+ "epoch": 28.657055482743555,
+ "grad_norm": 0.2049262523651123,
+ "learning_rate": 0.0006,
+ "loss": 3.7410364151000977,
+ "step": 2063
+ },
+ {
+ "epoch": 28.67103538663172,
+ "grad_norm": 0.22041259706020355,
+ "learning_rate": 0.0006,
+ "loss": 3.796724319458008,
+ "step": 2064
+ },
+ {
+ "epoch": 28.68501529051988,
+ "grad_norm": 0.2018800675868988,
+ "learning_rate": 0.0006,
+ "loss": 3.775252342224121,
+ "step": 2065
+ },
+ {
+ "epoch": 28.698995194408038,
+ "grad_norm": 0.2159280925989151,
+ "learning_rate": 0.0006,
+ "loss": 3.766021251678467,
+ "step": 2066
+ },
+ {
+ "epoch": 28.712975098296198,
+ "grad_norm": 0.2072775512933731,
+ "learning_rate": 0.0006,
+ "loss": 3.765397548675537,
+ "step": 2067
+ },
+ {
+ "epoch": 28.72695500218436,
+ "grad_norm": 0.19592848420143127,
+ "learning_rate": 0.0006,
+ "loss": 3.8151614665985107,
+ "step": 2068
+ },
+ {
+ "epoch": 28.74093490607252,
+ "grad_norm": 0.19266322255134583,
+ "learning_rate": 0.0006,
+ "loss": 3.774945020675659,
+ "step": 2069
+ },
+ {
+ "epoch": 28.75491480996068,
+ "grad_norm": 0.19442392885684967,
+ "learning_rate": 0.0006,
+ "loss": 3.816283702850342,
+ "step": 2070
+ },
+ {
+ "epoch": 28.76889471384884,
+ "grad_norm": 0.19080746173858643,
+ "learning_rate": 0.0006,
+ "loss": 3.7784247398376465,
+ "step": 2071
+ },
+ {
+ "epoch": 28.782874617737004,
+ "grad_norm": 0.20150451362133026,
+ "learning_rate": 0.0006,
+ "loss": 3.7710249423980713,
+ "step": 2072
+ },
+ {
+ "epoch": 28.796854521625164,
+ "grad_norm": 0.1835816204547882,
+ "learning_rate": 0.0006,
+ "loss": 3.750032901763916,
+ "step": 2073
+ },
+ {
+ "epoch": 28.810834425513324,
+ "grad_norm": 0.1855502873659134,
+ "learning_rate": 0.0006,
+ "loss": 3.7276318073272705,
+ "step": 2074
+ },
+ {
+ "epoch": 28.824814329401484,
+ "grad_norm": 0.18683169782161713,
+ "learning_rate": 0.0006,
+ "loss": 3.7516555786132812,
+ "step": 2075
+ },
+ {
+ "epoch": 28.838794233289647,
+ "grad_norm": 0.2034577578306198,
+ "learning_rate": 0.0006,
+ "loss": 3.749875068664551,
+ "step": 2076
+ },
+ {
+ "epoch": 28.852774137177807,
+ "grad_norm": 0.2234230488538742,
+ "learning_rate": 0.0006,
+ "loss": 3.791429042816162,
+ "step": 2077
+ },
+ {
+ "epoch": 28.866754041065967,
+ "grad_norm": 0.25600525736808777,
+ "learning_rate": 0.0006,
+ "loss": 3.7769298553466797,
+ "step": 2078
+ },
+ {
+ "epoch": 28.88073394495413,
+ "grad_norm": 0.2741529643535614,
+ "learning_rate": 0.0006,
+ "loss": 3.771848201751709,
+ "step": 2079
+ },
+ {
+ "epoch": 28.89471384884229,
+ "grad_norm": 0.2710304260253906,
+ "learning_rate": 0.0006,
+ "loss": 3.8235626220703125,
+ "step": 2080
+ },
+ {
+ "epoch": 28.90869375273045,
+ "grad_norm": 0.25497519969940186,
+ "learning_rate": 0.0006,
+ "loss": 3.811288595199585,
+ "step": 2081
+ },
+ {
+ "epoch": 28.92267365661861,
+ "grad_norm": 0.25689464807510376,
+ "learning_rate": 0.0006,
+ "loss": 3.7848939895629883,
+ "step": 2082
+ },
+ {
+ "epoch": 28.936653560506773,
+ "grad_norm": 0.2794921398162842,
+ "learning_rate": 0.0006,
+ "loss": 3.7836732864379883,
+ "step": 2083
+ },
+ {
+ "epoch": 28.950633464394933,
+ "grad_norm": 0.24730202555656433,
+ "learning_rate": 0.0006,
+ "loss": 3.7703347206115723,
+ "step": 2084
+ },
+ {
+ "epoch": 28.964613368283093,
+ "grad_norm": 0.21078833937644958,
+ "learning_rate": 0.0006,
+ "loss": 3.7521653175354004,
+ "step": 2085
+ },
+ {
+ "epoch": 28.978593272171253,
+ "grad_norm": 0.2188870757818222,
+ "learning_rate": 0.0006,
+ "loss": 3.769604206085205,
+ "step": 2086
+ },
+ {
+ "epoch": 28.992573176059416,
+ "grad_norm": 0.20447929203510284,
+ "learning_rate": 0.0006,
+ "loss": 3.7842764854431152,
+ "step": 2087
+ },
+ {
+ "epoch": 29.0,
+ "grad_norm": 0.21607689559459686,
+ "learning_rate": 0.0006,
+ "loss": 3.7428855895996094,
+ "step": 2088
+ },
+ {
+ "epoch": 29.0,
+ "eval_loss": 4.0355753898620605,
+ "eval_runtime": 44.1435,
+ "eval_samples_per_second": 55.32,
+ "eval_steps_per_second": 3.466,
+ "step": 2088
+ },
+ {
+ "epoch": 29.01397990388816,
+ "grad_norm": 0.21270133554935455,
+ "learning_rate": 0.0006,
+ "loss": 3.7548413276672363,
+ "step": 2089
+ },
+ {
+ "epoch": 29.027959807776323,
+ "grad_norm": 0.21576301753520966,
+ "learning_rate": 0.0006,
+ "loss": 3.754613161087036,
+ "step": 2090
+ },
+ {
+ "epoch": 29.041939711664483,
+ "grad_norm": 0.2162923663854599,
+ "learning_rate": 0.0006,
+ "loss": 3.755772590637207,
+ "step": 2091
+ },
+ {
+ "epoch": 29.055919615552643,
+ "grad_norm": 0.22236663103103638,
+ "learning_rate": 0.0006,
+ "loss": 3.743497848510742,
+ "step": 2092
+ },
+ {
+ "epoch": 29.069899519440803,
+ "grad_norm": 0.2391042858362198,
+ "learning_rate": 0.0006,
+ "loss": 3.749204158782959,
+ "step": 2093
+ },
+ {
+ "epoch": 29.083879423328966,
+ "grad_norm": 0.23387965559959412,
+ "learning_rate": 0.0006,
+ "loss": 3.7286791801452637,
+ "step": 2094
+ },
+ {
+ "epoch": 29.097859327217126,
+ "grad_norm": 0.23677746951580048,
+ "learning_rate": 0.0006,
+ "loss": 3.755279541015625,
+ "step": 2095
+ },
+ {
+ "epoch": 29.111839231105286,
+ "grad_norm": 0.22771087288856506,
+ "learning_rate": 0.0006,
+ "loss": 3.722566604614258,
+ "step": 2096
+ },
+ {
+ "epoch": 29.125819134993446,
+ "grad_norm": 0.2132875621318817,
+ "learning_rate": 0.0006,
+ "loss": 3.748939037322998,
+ "step": 2097
+ },
+ {
+ "epoch": 29.13979903888161,
+ "grad_norm": 0.2033746838569641,
+ "learning_rate": 0.0006,
+ "loss": 3.7393670082092285,
+ "step": 2098
+ },
+ {
+ "epoch": 29.15377894276977,
+ "grad_norm": 0.1997237652540207,
+ "learning_rate": 0.0006,
+ "loss": 3.718498945236206,
+ "step": 2099
+ },
+ {
+ "epoch": 29.16775884665793,
+ "grad_norm": 0.19102543592453003,
+ "learning_rate": 0.0006,
+ "loss": 3.748950719833374,
+ "step": 2100
+ },
+ {
+ "epoch": 29.18173875054609,
+ "grad_norm": 0.19801580905914307,
+ "learning_rate": 0.0006,
+ "loss": 3.7123501300811768,
+ "step": 2101
+ },
+ {
+ "epoch": 29.195718654434252,
+ "grad_norm": 0.20186249911785126,
+ "learning_rate": 0.0006,
+ "loss": 3.7632713317871094,
+ "step": 2102
+ },
+ {
+ "epoch": 29.209698558322412,
+ "grad_norm": 0.22725415229797363,
+ "learning_rate": 0.0006,
+ "loss": 3.753506660461426,
+ "step": 2103
+ },
+ {
+ "epoch": 29.22367846221057,
+ "grad_norm": 0.23138119280338287,
+ "learning_rate": 0.0006,
+ "loss": 3.753282070159912,
+ "step": 2104
+ },
+ {
+ "epoch": 29.23765836609873,
+ "grad_norm": 0.23171944916248322,
+ "learning_rate": 0.0006,
+ "loss": 3.73783540725708,
+ "step": 2105
+ },
+ {
+ "epoch": 29.251638269986895,
+ "grad_norm": 0.2166522741317749,
+ "learning_rate": 0.0006,
+ "loss": 3.778803825378418,
+ "step": 2106
+ },
+ {
+ "epoch": 29.265618173875055,
+ "grad_norm": 0.2009056806564331,
+ "learning_rate": 0.0006,
+ "loss": 3.738290786743164,
+ "step": 2107
+ },
+ {
+ "epoch": 29.279598077763215,
+ "grad_norm": 0.19451597332954407,
+ "learning_rate": 0.0006,
+ "loss": 3.7553348541259766,
+ "step": 2108
+ },
+ {
+ "epoch": 29.293577981651374,
+ "grad_norm": 0.19246742129325867,
+ "learning_rate": 0.0006,
+ "loss": 3.7321622371673584,
+ "step": 2109
+ },
+ {
+ "epoch": 29.307557885539538,
+ "grad_norm": 0.18917441368103027,
+ "learning_rate": 0.0006,
+ "loss": 3.7408928871154785,
+ "step": 2110
+ },
+ {
+ "epoch": 29.321537789427698,
+ "grad_norm": 0.19067776203155518,
+ "learning_rate": 0.0006,
+ "loss": 3.780052900314331,
+ "step": 2111
+ },
+ {
+ "epoch": 29.335517693315857,
+ "grad_norm": 0.18849676847457886,
+ "learning_rate": 0.0006,
+ "loss": 3.749375820159912,
+ "step": 2112
+ },
+ {
+ "epoch": 29.34949759720402,
+ "grad_norm": 0.19713285565376282,
+ "learning_rate": 0.0006,
+ "loss": 3.7128982543945312,
+ "step": 2113
+ },
+ {
+ "epoch": 29.36347750109218,
+ "grad_norm": 0.196336030960083,
+ "learning_rate": 0.0006,
+ "loss": 3.7528390884399414,
+ "step": 2114
+ },
+ {
+ "epoch": 29.37745740498034,
+ "grad_norm": 0.19574350118637085,
+ "learning_rate": 0.0006,
+ "loss": 3.7105777263641357,
+ "step": 2115
+ },
+ {
+ "epoch": 29.3914373088685,
+ "grad_norm": 0.20396539568901062,
+ "learning_rate": 0.0006,
+ "loss": 3.782249927520752,
+ "step": 2116
+ },
+ {
+ "epoch": 29.405417212756664,
+ "grad_norm": 0.24702422320842743,
+ "learning_rate": 0.0006,
+ "loss": 3.7685647010803223,
+ "step": 2117
+ },
+ {
+ "epoch": 29.419397116644824,
+ "grad_norm": 0.2729755640029907,
+ "learning_rate": 0.0006,
+ "loss": 3.7731213569641113,
+ "step": 2118
+ },
+ {
+ "epoch": 29.433377020532983,
+ "grad_norm": 0.29240545630455017,
+ "learning_rate": 0.0006,
+ "loss": 3.770162343978882,
+ "step": 2119
+ },
+ {
+ "epoch": 29.447356924421143,
+ "grad_norm": 0.2469114065170288,
+ "learning_rate": 0.0006,
+ "loss": 3.764681339263916,
+ "step": 2120
+ },
+ {
+ "epoch": 29.461336828309307,
+ "grad_norm": 0.19837401807308197,
+ "learning_rate": 0.0006,
+ "loss": 3.7600088119506836,
+ "step": 2121
+ },
+ {
+ "epoch": 29.475316732197467,
+ "grad_norm": 0.21266621351242065,
+ "learning_rate": 0.0006,
+ "loss": 3.769454002380371,
+ "step": 2122
+ },
+ {
+ "epoch": 29.489296636085626,
+ "grad_norm": 0.25908344984054565,
+ "learning_rate": 0.0006,
+ "loss": 3.7230491638183594,
+ "step": 2123
+ },
+ {
+ "epoch": 29.503276539973786,
+ "grad_norm": 0.2914169728755951,
+ "learning_rate": 0.0006,
+ "loss": 3.767849922180176,
+ "step": 2124
+ },
+ {
+ "epoch": 29.51725644386195,
+ "grad_norm": 0.2796176075935364,
+ "learning_rate": 0.0006,
+ "loss": 3.741734266281128,
+ "step": 2125
+ },
+ {
+ "epoch": 29.53123634775011,
+ "grad_norm": 0.276309996843338,
+ "learning_rate": 0.0006,
+ "loss": 3.8001914024353027,
+ "step": 2126
+ },
+ {
+ "epoch": 29.54521625163827,
+ "grad_norm": 0.26512834429740906,
+ "learning_rate": 0.0006,
+ "loss": 3.7741384506225586,
+ "step": 2127
+ },
+ {
+ "epoch": 29.55919615552643,
+ "grad_norm": 0.26514101028442383,
+ "learning_rate": 0.0006,
+ "loss": 3.7466959953308105,
+ "step": 2128
+ },
+ {
+ "epoch": 29.573176059414592,
+ "grad_norm": 0.24121330678462982,
+ "learning_rate": 0.0006,
+ "loss": 3.759542465209961,
+ "step": 2129
+ },
+ {
+ "epoch": 29.587155963302752,
+ "grad_norm": 0.2264087200164795,
+ "learning_rate": 0.0006,
+ "loss": 3.791344165802002,
+ "step": 2130
+ },
+ {
+ "epoch": 29.601135867190912,
+ "grad_norm": 0.21915403008460999,
+ "learning_rate": 0.0006,
+ "loss": 3.7540485858917236,
+ "step": 2131
+ },
+ {
+ "epoch": 29.615115771079076,
+ "grad_norm": 0.20453961193561554,
+ "learning_rate": 0.0006,
+ "loss": 3.765617609024048,
+ "step": 2132
+ },
+ {
+ "epoch": 29.629095674967235,
+ "grad_norm": 0.2194051444530487,
+ "learning_rate": 0.0006,
+ "loss": 3.7664294242858887,
+ "step": 2133
+ },
+ {
+ "epoch": 29.643075578855395,
+ "grad_norm": 0.21926000714302063,
+ "learning_rate": 0.0006,
+ "loss": 3.7551684379577637,
+ "step": 2134
+ },
+ {
+ "epoch": 29.657055482743555,
+ "grad_norm": 0.20835602283477783,
+ "learning_rate": 0.0006,
+ "loss": 3.7654306888580322,
+ "step": 2135
+ },
+ {
+ "epoch": 29.67103538663172,
+ "grad_norm": 0.23094356060028076,
+ "learning_rate": 0.0006,
+ "loss": 3.7847180366516113,
+ "step": 2136
+ },
+ {
+ "epoch": 29.68501529051988,
+ "grad_norm": 0.23871271312236786,
+ "learning_rate": 0.0006,
+ "loss": 3.789036273956299,
+ "step": 2137
+ },
+ {
+ "epoch": 29.698995194408038,
+ "grad_norm": 0.22263272106647491,
+ "learning_rate": 0.0006,
+ "loss": 3.7677512168884277,
+ "step": 2138
+ },
+ {
+ "epoch": 29.712975098296198,
+ "grad_norm": 0.2293892651796341,
+ "learning_rate": 0.0006,
+ "loss": 3.777097225189209,
+ "step": 2139
+ },
+ {
+ "epoch": 29.72695500218436,
+ "grad_norm": 0.21068568527698517,
+ "learning_rate": 0.0006,
+ "loss": 3.785336494445801,
+ "step": 2140
+ },
+ {
+ "epoch": 29.74093490607252,
+ "grad_norm": 0.19600282609462738,
+ "learning_rate": 0.0006,
+ "loss": 3.7363505363464355,
+ "step": 2141
+ },
+ {
+ "epoch": 29.75491480996068,
+ "grad_norm": 0.20053936541080475,
+ "learning_rate": 0.0006,
+ "loss": 3.753859043121338,
+ "step": 2142
+ },
+ {
+ "epoch": 29.76889471384884,
+ "grad_norm": 0.22790539264678955,
+ "learning_rate": 0.0006,
+ "loss": 3.749492645263672,
+ "step": 2143
+ },
+ {
+ "epoch": 29.782874617737004,
+ "grad_norm": 0.26042407751083374,
+ "learning_rate": 0.0006,
+ "loss": 3.7905430793762207,
+ "step": 2144
+ },
+ {
+ "epoch": 29.796854521625164,
+ "grad_norm": 0.2753683626651764,
+ "learning_rate": 0.0006,
+ "loss": 3.756442070007324,
+ "step": 2145
+ },
+ {
+ "epoch": 29.810834425513324,
+ "grad_norm": 0.2795007526874542,
+ "learning_rate": 0.0006,
+ "loss": 3.7691903114318848,
+ "step": 2146
+ },
+ {
+ "epoch": 29.824814329401484,
+ "grad_norm": 0.2461438924074173,
+ "learning_rate": 0.0006,
+ "loss": 3.7573065757751465,
+ "step": 2147
+ },
+ {
+ "epoch": 29.838794233289647,
+ "grad_norm": 0.21051941812038422,
+ "learning_rate": 0.0006,
+ "loss": 3.7540078163146973,
+ "step": 2148
+ },
+ {
+ "epoch": 29.852774137177807,
+ "grad_norm": 0.197485089302063,
+ "learning_rate": 0.0006,
+ "loss": 3.734403133392334,
+ "step": 2149
+ },
+ {
+ "epoch": 29.866754041065967,
+ "grad_norm": 0.203064426779747,
+ "learning_rate": 0.0006,
+ "loss": 3.7888364791870117,
+ "step": 2150
+ },
+ {
+ "epoch": 29.88073394495413,
+ "grad_norm": 0.2000301480293274,
+ "learning_rate": 0.0006,
+ "loss": 3.7444958686828613,
+ "step": 2151
+ },
+ {
+ "epoch": 29.89471384884229,
+ "grad_norm": 0.20492053031921387,
+ "learning_rate": 0.0006,
+ "loss": 3.7878224849700928,
+ "step": 2152
+ },
+ {
+ "epoch": 29.90869375273045,
+ "grad_norm": 0.22565388679504395,
+ "learning_rate": 0.0006,
+ "loss": 3.7539188861846924,
+ "step": 2153
+ },
+ {
+ "epoch": 29.92267365661861,
+ "grad_norm": 0.20258226990699768,
+ "learning_rate": 0.0006,
+ "loss": 3.7491893768310547,
+ "step": 2154
+ },
+ {
+ "epoch": 29.936653560506773,
+ "grad_norm": 0.20028717815876007,
+ "learning_rate": 0.0006,
+ "loss": 3.7497997283935547,
+ "step": 2155
+ },
+ {
+ "epoch": 29.950633464394933,
+ "grad_norm": 0.2246360331773758,
+ "learning_rate": 0.0006,
+ "loss": 3.773930788040161,
+ "step": 2156
+ },
+ {
+ "epoch": 29.964613368283093,
+ "grad_norm": 0.22432482242584229,
+ "learning_rate": 0.0006,
+ "loss": 3.7926344871520996,
+ "step": 2157
+ },
+ {
+ "epoch": 29.978593272171253,
+ "grad_norm": 0.2165718674659729,
+ "learning_rate": 0.0006,
+ "loss": 3.7436647415161133,
+ "step": 2158
+ },
+ {
+ "epoch": 29.992573176059416,
+ "grad_norm": 0.20629167556762695,
+ "learning_rate": 0.0006,
+ "loss": 3.7619552612304688,
+ "step": 2159
+ },
+ {
+ "epoch": 30.0,
+ "grad_norm": 0.24264708161354065,
+ "learning_rate": 0.0006,
+ "loss": 3.772679328918457,
+ "step": 2160
+ },
+ {
+ "epoch": 30.0,
+ "eval_loss": 4.024484634399414,
+ "eval_runtime": 44.3611,
+ "eval_samples_per_second": 55.048,
+ "eval_steps_per_second": 3.449,
+ "step": 2160
+ },
+ {
+ "epoch": 30.01397990388816,
+ "grad_norm": 0.2373432070016861,
+ "learning_rate": 0.0006,
+ "loss": 3.7423200607299805,
+ "step": 2161
+ },
+ {
+ "epoch": 30.027959807776323,
+ "grad_norm": 0.26835134625434875,
+ "learning_rate": 0.0006,
+ "loss": 3.7215471267700195,
+ "step": 2162
+ },
+ {
+ "epoch": 30.041939711664483,
+ "grad_norm": 0.2743220329284668,
+ "learning_rate": 0.0006,
+ "loss": 3.7190256118774414,
+ "step": 2163
+ },
+ {
+ "epoch": 30.055919615552643,
+ "grad_norm": 0.2292490005493164,
+ "learning_rate": 0.0006,
+ "loss": 3.731855869293213,
+ "step": 2164
+ },
+ {
+ "epoch": 30.069899519440803,
+ "grad_norm": 0.22704607248306274,
+ "learning_rate": 0.0006,
+ "loss": 3.7649693489074707,
+ "step": 2165
+ },
+ {
+ "epoch": 30.083879423328966,
+ "grad_norm": 0.23255930840969086,
+ "learning_rate": 0.0006,
+ "loss": 3.7547781467437744,
+ "step": 2166
+ },
+ {
+ "epoch": 30.097859327217126,
+ "grad_norm": 0.2068684846162796,
+ "learning_rate": 0.0006,
+ "loss": 3.7343382835388184,
+ "step": 2167
+ },
+ {
+ "epoch": 30.111839231105286,
+ "grad_norm": 0.22523464262485504,
+ "learning_rate": 0.0006,
+ "loss": 3.7304530143737793,
+ "step": 2168
+ },
+ {
+ "epoch": 30.125819134993446,
+ "grad_norm": 0.24650199711322784,
+ "learning_rate": 0.0006,
+ "loss": 3.7414379119873047,
+ "step": 2169
+ },
+ {
+ "epoch": 30.13979903888161,
+ "grad_norm": 0.2392522394657135,
+ "learning_rate": 0.0006,
+ "loss": 3.754481792449951,
+ "step": 2170
+ },
+ {
+ "epoch": 30.15377894276977,
+ "grad_norm": 0.21174749732017517,
+ "learning_rate": 0.0006,
+ "loss": 3.7249929904937744,
+ "step": 2171
+ },
+ {
+ "epoch": 30.16775884665793,
+ "grad_norm": 0.20847836136817932,
+ "learning_rate": 0.0006,
+ "loss": 3.7146458625793457,
+ "step": 2172
+ },
+ {
+ "epoch": 30.18173875054609,
+ "grad_norm": 0.22131472826004028,
+ "learning_rate": 0.0006,
+ "loss": 3.7569539546966553,
+ "step": 2173
+ },
+ {
+ "epoch": 30.195718654434252,
+ "grad_norm": 0.23528096079826355,
+ "learning_rate": 0.0006,
+ "loss": 3.743435859680176,
+ "step": 2174
+ },
+ {
+ "epoch": 30.209698558322412,
+ "grad_norm": 0.2382429540157318,
+ "learning_rate": 0.0006,
+ "loss": 3.745307445526123,
+ "step": 2175
+ },
+ {
+ "epoch": 30.22367846221057,
+ "grad_norm": 0.2477114498615265,
+ "learning_rate": 0.0006,
+ "loss": 3.742305278778076,
+ "step": 2176
+ },
+ {
+ "epoch": 30.23765836609873,
+ "grad_norm": 0.24507801234722137,
+ "learning_rate": 0.0006,
+ "loss": 3.733564853668213,
+ "step": 2177
+ },
+ {
+ "epoch": 30.251638269986895,
+ "grad_norm": 0.2266329675912857,
+ "learning_rate": 0.0006,
+ "loss": 3.747429370880127,
+ "step": 2178
+ },
+ {
+ "epoch": 30.265618173875055,
+ "grad_norm": 0.22146396338939667,
+ "learning_rate": 0.0006,
+ "loss": 3.738630533218384,
+ "step": 2179
+ },
+ {
+ "epoch": 30.279598077763215,
+ "grad_norm": 0.20202279090881348,
+ "learning_rate": 0.0006,
+ "loss": 3.74582839012146,
+ "step": 2180
+ },
+ {
+ "epoch": 30.293577981651374,
+ "grad_norm": 0.20591886341571808,
+ "learning_rate": 0.0006,
+ "loss": 3.792062997817993,
+ "step": 2181
+ },
+ {
+ "epoch": 30.307557885539538,
+ "grad_norm": 0.21744129061698914,
+ "learning_rate": 0.0006,
+ "loss": 3.7389049530029297,
+ "step": 2182
+ },
+ {
+ "epoch": 30.321537789427698,
+ "grad_norm": 0.22641272842884064,
+ "learning_rate": 0.0006,
+ "loss": 3.756775140762329,
+ "step": 2183
+ },
+ {
+ "epoch": 30.335517693315857,
+ "grad_norm": 0.22433501482009888,
+ "learning_rate": 0.0006,
+ "loss": 3.764744758605957,
+ "step": 2184
+ },
+ {
+ "epoch": 30.34949759720402,
+ "grad_norm": 0.20184539258480072,
+ "learning_rate": 0.0006,
+ "loss": 3.747469902038574,
+ "step": 2185
+ },
+ {
+ "epoch": 30.36347750109218,
+ "grad_norm": 0.20864923298358917,
+ "learning_rate": 0.0006,
+ "loss": 3.7472925186157227,
+ "step": 2186
+ },
+ {
+ "epoch": 30.37745740498034,
+ "grad_norm": 0.22537396848201752,
+ "learning_rate": 0.0006,
+ "loss": 3.7194581031799316,
+ "step": 2187
+ },
+ {
+ "epoch": 30.3914373088685,
+ "grad_norm": 0.23159919679164886,
+ "learning_rate": 0.0006,
+ "loss": 3.7124292850494385,
+ "step": 2188
+ },
+ {
+ "epoch": 30.405417212756664,
+ "grad_norm": 0.24334494769573212,
+ "learning_rate": 0.0006,
+ "loss": 3.7769203186035156,
+ "step": 2189
+ },
+ {
+ "epoch": 30.419397116644824,
+ "grad_norm": 0.3031228482723236,
+ "learning_rate": 0.0006,
+ "loss": 3.762169361114502,
+ "step": 2190
+ },
+ {
+ "epoch": 30.433377020532983,
+ "grad_norm": 0.29114583134651184,
+ "learning_rate": 0.0006,
+ "loss": 3.76554799079895,
+ "step": 2191
+ },
+ {
+ "epoch": 30.447356924421143,
+ "grad_norm": 0.26824963092803955,
+ "learning_rate": 0.0006,
+ "loss": 3.732962131500244,
+ "step": 2192
+ },
+ {
+ "epoch": 30.461336828309307,
+ "grad_norm": 0.3026561141014099,
+ "learning_rate": 0.0006,
+ "loss": 3.7567975521087646,
+ "step": 2193
+ },
+ {
+ "epoch": 30.475316732197467,
+ "grad_norm": 0.27224525809288025,
+ "learning_rate": 0.0006,
+ "loss": 3.7856051921844482,
+ "step": 2194
+ },
+ {
+ "epoch": 30.489296636085626,
+ "grad_norm": 0.24295508861541748,
+ "learning_rate": 0.0006,
+ "loss": 3.7514901161193848,
+ "step": 2195
+ },
+ {
+ "epoch": 30.503276539973786,
+ "grad_norm": 0.24435290694236755,
+ "learning_rate": 0.0006,
+ "loss": 3.715973138809204,
+ "step": 2196
+ },
+ {
+ "epoch": 30.51725644386195,
+ "grad_norm": 0.2298959195613861,
+ "learning_rate": 0.0006,
+ "loss": 3.7960405349731445,
+ "step": 2197
+ },
+ {
+ "epoch": 30.53123634775011,
+ "grad_norm": 0.20313066244125366,
+ "learning_rate": 0.0006,
+ "loss": 3.7377915382385254,
+ "step": 2198
+ },
+ {
+ "epoch": 30.54521625163827,
+ "grad_norm": 0.2018895149230957,
+ "learning_rate": 0.0006,
+ "loss": 3.6980559825897217,
+ "step": 2199
+ },
+ {
+ "epoch": 30.55919615552643,
+ "grad_norm": 0.20048382878303528,
+ "learning_rate": 0.0006,
+ "loss": 3.7474141120910645,
+ "step": 2200
+ },
+ {
+ "epoch": 30.573176059414592,
+ "grad_norm": 0.19821316003799438,
+ "learning_rate": 0.0006,
+ "loss": 3.7668564319610596,
+ "step": 2201
+ },
+ {
+ "epoch": 30.587155963302752,
+ "grad_norm": 0.21467992663383484,
+ "learning_rate": 0.0006,
+ "loss": 3.7636144161224365,
+ "step": 2202
+ },
+ {
+ "epoch": 30.601135867190912,
+ "grad_norm": 0.20192000269889832,
+ "learning_rate": 0.0006,
+ "loss": 3.745736837387085,
+ "step": 2203
+ },
+ {
+ "epoch": 30.615115771079076,
+ "grad_norm": 0.2078823447227478,
+ "learning_rate": 0.0006,
+ "loss": 3.726665496826172,
+ "step": 2204
+ },
+ {
+ "epoch": 30.629095674967235,
+ "grad_norm": 0.22535845637321472,
+ "learning_rate": 0.0006,
+ "loss": 3.745058059692383,
+ "step": 2205
+ },
+ {
+ "epoch": 30.643075578855395,
+ "grad_norm": 0.22277814149856567,
+ "learning_rate": 0.0006,
+ "loss": 3.7488319873809814,
+ "step": 2206
+ },
+ {
+ "epoch": 30.657055482743555,
+ "grad_norm": 0.20940838754177094,
+ "learning_rate": 0.0006,
+ "loss": 3.7395732402801514,
+ "step": 2207
+ },
+ {
+ "epoch": 30.67103538663172,
+ "grad_norm": 0.21384629607200623,
+ "learning_rate": 0.0006,
+ "loss": 3.7275657653808594,
+ "step": 2208
+ },
+ {
+ "epoch": 30.68501529051988,
+ "grad_norm": 0.18796643614768982,
+ "learning_rate": 0.0006,
+ "loss": 3.743420124053955,
+ "step": 2209
+ },
+ {
+ "epoch": 30.698995194408038,
+ "grad_norm": 0.213258296251297,
+ "learning_rate": 0.0006,
+ "loss": 3.7227492332458496,
+ "step": 2210
+ },
+ {
+ "epoch": 30.712975098296198,
+ "grad_norm": 0.22714753448963165,
+ "learning_rate": 0.0006,
+ "loss": 3.7301113605499268,
+ "step": 2211
+ },
+ {
+ "epoch": 30.72695500218436,
+ "grad_norm": 0.21657656133174896,
+ "learning_rate": 0.0006,
+ "loss": 3.7336206436157227,
+ "step": 2212
+ },
+ {
+ "epoch": 30.74093490607252,
+ "grad_norm": 0.19550828635692596,
+ "learning_rate": 0.0006,
+ "loss": 3.7367351055145264,
+ "step": 2213
+ },
+ {
+ "epoch": 30.75491480996068,
+ "grad_norm": 0.17011769115924835,
+ "learning_rate": 0.0006,
+ "loss": 3.7401928901672363,
+ "step": 2214
+ },
+ {
+ "epoch": 30.76889471384884,
+ "grad_norm": 0.19110196828842163,
+ "learning_rate": 0.0006,
+ "loss": 3.7496562004089355,
+ "step": 2215
+ },
+ {
+ "epoch": 30.782874617737004,
+ "grad_norm": 0.20054543018341064,
+ "learning_rate": 0.0006,
+ "loss": 3.7532992362976074,
+ "step": 2216
+ },
+ {
+ "epoch": 30.796854521625164,
+ "grad_norm": 0.20667670667171478,
+ "learning_rate": 0.0006,
+ "loss": 3.746974468231201,
+ "step": 2217
+ },
+ {
+ "epoch": 30.810834425513324,
+ "grad_norm": 0.19850662350654602,
+ "learning_rate": 0.0006,
+ "loss": 3.7566256523132324,
+ "step": 2218
+ },
+ {
+ "epoch": 30.824814329401484,
+ "grad_norm": 0.19666457176208496,
+ "learning_rate": 0.0006,
+ "loss": 3.7356925010681152,
+ "step": 2219
+ },
+ {
+ "epoch": 30.838794233289647,
+ "grad_norm": 0.20022115111351013,
+ "learning_rate": 0.0006,
+ "loss": 3.768794536590576,
+ "step": 2220
+ },
+ {
+ "epoch": 30.852774137177807,
+ "grad_norm": 0.225278839468956,
+ "learning_rate": 0.0006,
+ "loss": 3.730262279510498,
+ "step": 2221
+ },
+ {
+ "epoch": 30.866754041065967,
+ "grad_norm": 0.2155608832836151,
+ "learning_rate": 0.0006,
+ "loss": 3.758157968521118,
+ "step": 2222
+ },
+ {
+ "epoch": 30.88073394495413,
+ "grad_norm": 0.20914921164512634,
+ "learning_rate": 0.0006,
+ "loss": 3.7290844917297363,
+ "step": 2223
+ },
+ {
+ "epoch": 30.89471384884229,
+ "grad_norm": 0.21579554677009583,
+ "learning_rate": 0.0006,
+ "loss": 3.7666125297546387,
+ "step": 2224
+ },
+ {
+ "epoch": 30.90869375273045,
+ "grad_norm": 0.22606384754180908,
+ "learning_rate": 0.0006,
+ "loss": 3.7396788597106934,
+ "step": 2225
+ },
+ {
+ "epoch": 30.92267365661861,
+ "grad_norm": 0.22218658030033112,
+ "learning_rate": 0.0006,
+ "loss": 3.7363057136535645,
+ "step": 2226
+ },
+ {
+ "epoch": 30.936653560506773,
+ "grad_norm": 0.2107125222682953,
+ "learning_rate": 0.0006,
+ "loss": 3.7402844429016113,
+ "step": 2227
+ },
+ {
+ "epoch": 30.950633464394933,
+ "grad_norm": 0.2143280804157257,
+ "learning_rate": 0.0006,
+ "loss": 3.7715706825256348,
+ "step": 2228
+ },
+ {
+ "epoch": 30.964613368283093,
+ "grad_norm": 0.20918118953704834,
+ "learning_rate": 0.0006,
+ "loss": 3.783510446548462,
+ "step": 2229
+ },
+ {
+ "epoch": 30.978593272171253,
+ "grad_norm": 0.2184133678674698,
+ "learning_rate": 0.0006,
+ "loss": 3.729846954345703,
+ "step": 2230
+ },
+ {
+ "epoch": 30.992573176059416,
+ "grad_norm": 0.20314796268939972,
+ "learning_rate": 0.0006,
+ "loss": 3.753312110900879,
+ "step": 2231
+ },
+ {
+ "epoch": 31.0,
+ "grad_norm": 0.21582408249378204,
+ "learning_rate": 0.0006,
+ "loss": 3.7653090953826904,
+ "step": 2232
+ },
+ {
+ "epoch": 31.0,
+ "eval_loss": 4.030437469482422,
+ "eval_runtime": 43.8529,
+ "eval_samples_per_second": 55.686,
+ "eval_steps_per_second": 3.489,
+ "step": 2232
+ },
+ {
+ "epoch": 31.01397990388816,
+ "grad_norm": 0.214233860373497,
+ "learning_rate": 0.0006,
+ "loss": 3.7179880142211914,
+ "step": 2233
+ },
+ {
+ "epoch": 31.027959807776323,
+ "grad_norm": 0.24621504545211792,
+ "learning_rate": 0.0006,
+ "loss": 3.712569236755371,
+ "step": 2234
+ },
+ {
+ "epoch": 31.041939711664483,
+ "grad_norm": 0.24189279973506927,
+ "learning_rate": 0.0006,
+ "loss": 3.7503058910369873,
+ "step": 2235
+ },
+ {
+ "epoch": 31.055919615552643,
+ "grad_norm": 0.22872278094291687,
+ "learning_rate": 0.0006,
+ "loss": 3.7386386394500732,
+ "step": 2236
+ },
+ {
+ "epoch": 31.069899519440803,
+ "grad_norm": 0.25036823749542236,
+ "learning_rate": 0.0006,
+ "loss": 3.710566997528076,
+ "step": 2237
+ },
+ {
+ "epoch": 31.083879423328966,
+ "grad_norm": 0.2506193220615387,
+ "learning_rate": 0.0006,
+ "loss": 3.7270963191986084,
+ "step": 2238
+ },
+ {
+ "epoch": 31.097859327217126,
+ "grad_norm": 0.24819663166999817,
+ "learning_rate": 0.0006,
+ "loss": 3.716430425643921,
+ "step": 2239
+ },
+ {
+ "epoch": 31.111839231105286,
+ "grad_norm": 0.27226534485816956,
+ "learning_rate": 0.0006,
+ "loss": 3.704428195953369,
+ "step": 2240
+ },
+ {
+ "epoch": 31.125819134993446,
+ "grad_norm": 0.27718204259872437,
+ "learning_rate": 0.0006,
+ "loss": 3.7309701442718506,
+ "step": 2241
+ },
+ {
+ "epoch": 31.13979903888161,
+ "grad_norm": 0.27272021770477295,
+ "learning_rate": 0.0006,
+ "loss": 3.7325143814086914,
+ "step": 2242
+ },
+ {
+ "epoch": 31.15377894276977,
+ "grad_norm": 0.2666020095348358,
+ "learning_rate": 0.0006,
+ "loss": 3.715268611907959,
+ "step": 2243
+ },
+ {
+ "epoch": 31.16775884665793,
+ "grad_norm": 0.258543461561203,
+ "learning_rate": 0.0006,
+ "loss": 3.7336134910583496,
+ "step": 2244
+ },
+ {
+ "epoch": 31.18173875054609,
+ "grad_norm": 0.2528740167617798,
+ "learning_rate": 0.0006,
+ "loss": 3.724491596221924,
+ "step": 2245
+ },
+ {
+ "epoch": 31.195718654434252,
+ "grad_norm": 0.2659667730331421,
+ "learning_rate": 0.0006,
+ "loss": 3.7144742012023926,
+ "step": 2246
+ },
+ {
+ "epoch": 31.209698558322412,
+ "grad_norm": 0.26563164591789246,
+ "learning_rate": 0.0006,
+ "loss": 3.741182327270508,
+ "step": 2247
+ },
+ {
+ "epoch": 31.22367846221057,
+ "grad_norm": 0.26326918601989746,
+ "learning_rate": 0.0006,
+ "loss": 3.7306275367736816,
+ "step": 2248
+ },
+ {
+ "epoch": 31.23765836609873,
+ "grad_norm": 0.23020948469638824,
+ "learning_rate": 0.0006,
+ "loss": 3.7212486267089844,
+ "step": 2249
+ },
+ {
+ "epoch": 31.251638269986895,
+ "grad_norm": 0.21207433938980103,
+ "learning_rate": 0.0006,
+ "loss": 3.6914258003234863,
+ "step": 2250
+ },
+ {
+ "epoch": 31.265618173875055,
+ "grad_norm": 0.2392292022705078,
+ "learning_rate": 0.0006,
+ "loss": 3.7117457389831543,
+ "step": 2251
+ },
+ {
+ "epoch": 31.279598077763215,
+ "grad_norm": 0.22084997594356537,
+ "learning_rate": 0.0006,
+ "loss": 3.728043794631958,
+ "step": 2252
+ },
+ {
+ "epoch": 31.293577981651374,
+ "grad_norm": 0.20818188786506653,
+ "learning_rate": 0.0006,
+ "loss": 3.751762866973877,
+ "step": 2253
+ },
+ {
+ "epoch": 31.307557885539538,
+ "grad_norm": 0.21866194903850555,
+ "learning_rate": 0.0006,
+ "loss": 3.72676420211792,
+ "step": 2254
+ },
+ {
+ "epoch": 31.321537789427698,
+ "grad_norm": 0.20727522671222687,
+ "learning_rate": 0.0006,
+ "loss": 3.735708236694336,
+ "step": 2255
+ },
+ {
+ "epoch": 31.335517693315857,
+ "grad_norm": 0.20655220746994019,
+ "learning_rate": 0.0006,
+ "loss": 3.714116096496582,
+ "step": 2256
+ },
+ {
+ "epoch": 31.34949759720402,
+ "grad_norm": 0.21738854050636292,
+ "learning_rate": 0.0006,
+ "loss": 3.731657028198242,
+ "step": 2257
+ },
+ {
+ "epoch": 31.36347750109218,
+ "grad_norm": 0.20758475363254547,
+ "learning_rate": 0.0006,
+ "loss": 3.7378528118133545,
+ "step": 2258
+ },
+ {
+ "epoch": 31.37745740498034,
+ "grad_norm": 0.20107139647006989,
+ "learning_rate": 0.0006,
+ "loss": 3.748572826385498,
+ "step": 2259
+ },
+ {
+ "epoch": 31.3914373088685,
+ "grad_norm": 0.18707452714443207,
+ "learning_rate": 0.0006,
+ "loss": 3.7237391471862793,
+ "step": 2260
+ },
+ {
+ "epoch": 31.405417212756664,
+ "grad_norm": 0.20745301246643066,
+ "learning_rate": 0.0006,
+ "loss": 3.734435558319092,
+ "step": 2261
+ },
+ {
+ "epoch": 31.419397116644824,
+ "grad_norm": 0.20793399214744568,
+ "learning_rate": 0.0006,
+ "loss": 3.7639012336730957,
+ "step": 2262
+ },
+ {
+ "epoch": 31.433377020532983,
+ "grad_norm": 0.20193757116794586,
+ "learning_rate": 0.0006,
+ "loss": 3.754117727279663,
+ "step": 2263
+ },
+ {
+ "epoch": 31.447356924421143,
+ "grad_norm": 0.1912323236465454,
+ "learning_rate": 0.0006,
+ "loss": 3.728111982345581,
+ "step": 2264
+ },
+ {
+ "epoch": 31.461336828309307,
+ "grad_norm": 0.19441582262516022,
+ "learning_rate": 0.0006,
+ "loss": 3.7533278465270996,
+ "step": 2265
+ },
+ {
+ "epoch": 31.475316732197467,
+ "grad_norm": 0.19807079434394836,
+ "learning_rate": 0.0006,
+ "loss": 3.7351698875427246,
+ "step": 2266
+ },
+ {
+ "epoch": 31.489296636085626,
+ "grad_norm": 0.20373263955116272,
+ "learning_rate": 0.0006,
+ "loss": 3.714097023010254,
+ "step": 2267
+ },
+ {
+ "epoch": 31.503276539973786,
+ "grad_norm": 0.21868768334388733,
+ "learning_rate": 0.0006,
+ "loss": 3.736743688583374,
+ "step": 2268
+ },
+ {
+ "epoch": 31.51725644386195,
+ "grad_norm": 0.20767922699451447,
+ "learning_rate": 0.0006,
+ "loss": 3.7097702026367188,
+ "step": 2269
+ },
+ {
+ "epoch": 31.53123634775011,
+ "grad_norm": 0.18425600230693817,
+ "learning_rate": 0.0006,
+ "loss": 3.7349140644073486,
+ "step": 2270
+ },
+ {
+ "epoch": 31.54521625163827,
+ "grad_norm": 0.18813826143741608,
+ "learning_rate": 0.0006,
+ "loss": 3.7023448944091797,
+ "step": 2271
+ },
+ {
+ "epoch": 31.55919615552643,
+ "grad_norm": 0.1892116516828537,
+ "learning_rate": 0.0006,
+ "loss": 3.7170143127441406,
+ "step": 2272
+ },
+ {
+ "epoch": 31.573176059414592,
+ "grad_norm": 0.2067834585905075,
+ "learning_rate": 0.0006,
+ "loss": 3.7312588691711426,
+ "step": 2273
+ },
+ {
+ "epoch": 31.587155963302752,
+ "grad_norm": 0.204023078083992,
+ "learning_rate": 0.0006,
+ "loss": 3.7399091720581055,
+ "step": 2274
+ },
+ {
+ "epoch": 31.601135867190912,
+ "grad_norm": 0.20245152711868286,
+ "learning_rate": 0.0006,
+ "loss": 3.7259416580200195,
+ "step": 2275
+ },
+ {
+ "epoch": 31.615115771079076,
+ "grad_norm": 0.21125490963459015,
+ "learning_rate": 0.0006,
+ "loss": 3.7217836380004883,
+ "step": 2276
+ },
+ {
+ "epoch": 31.629095674967235,
+ "grad_norm": 0.2093241959810257,
+ "learning_rate": 0.0006,
+ "loss": 3.707627773284912,
+ "step": 2277
+ },
+ {
+ "epoch": 31.643075578855395,
+ "grad_norm": 0.19290480017662048,
+ "learning_rate": 0.0006,
+ "loss": 3.7467126846313477,
+ "step": 2278
+ },
+ {
+ "epoch": 31.657055482743555,
+ "grad_norm": 0.1853940635919571,
+ "learning_rate": 0.0006,
+ "loss": 3.7565581798553467,
+ "step": 2279
+ },
+ {
+ "epoch": 31.67103538663172,
+ "grad_norm": 0.18917642533779144,
+ "learning_rate": 0.0006,
+ "loss": 3.7286229133605957,
+ "step": 2280
+ },
+ {
+ "epoch": 31.68501529051988,
+ "grad_norm": 0.2094079703092575,
+ "learning_rate": 0.0006,
+ "loss": 3.7297096252441406,
+ "step": 2281
+ },
+ {
+ "epoch": 31.698995194408038,
+ "grad_norm": 0.20020027458667755,
+ "learning_rate": 0.0006,
+ "loss": 3.7565250396728516,
+ "step": 2282
+ },
+ {
+ "epoch": 31.712975098296198,
+ "grad_norm": 0.19156186282634735,
+ "learning_rate": 0.0006,
+ "loss": 3.7401509284973145,
+ "step": 2283
+ },
+ {
+ "epoch": 31.72695500218436,
+ "grad_norm": 0.19176368415355682,
+ "learning_rate": 0.0006,
+ "loss": 3.751206398010254,
+ "step": 2284
+ },
+ {
+ "epoch": 31.74093490607252,
+ "grad_norm": 0.18351277709007263,
+ "learning_rate": 0.0006,
+ "loss": 3.752984046936035,
+ "step": 2285
+ },
+ {
+ "epoch": 31.75491480996068,
+ "grad_norm": 0.1879221349954605,
+ "learning_rate": 0.0006,
+ "loss": 3.7156834602355957,
+ "step": 2286
+ },
+ {
+ "epoch": 31.76889471384884,
+ "grad_norm": 0.19232559204101562,
+ "learning_rate": 0.0006,
+ "loss": 3.732879638671875,
+ "step": 2287
+ },
+ {
+ "epoch": 31.782874617737004,
+ "grad_norm": 0.18484069406986237,
+ "learning_rate": 0.0006,
+ "loss": 3.7489013671875,
+ "step": 2288
+ },
+ {
+ "epoch": 31.796854521625164,
+ "grad_norm": 0.20705144107341766,
+ "learning_rate": 0.0006,
+ "loss": 3.7214112281799316,
+ "step": 2289
+ },
+ {
+ "epoch": 31.810834425513324,
+ "grad_norm": 0.23424774408340454,
+ "learning_rate": 0.0006,
+ "loss": 3.714550256729126,
+ "step": 2290
+ },
+ {
+ "epoch": 31.824814329401484,
+ "grad_norm": 0.24061693251132965,
+ "learning_rate": 0.0006,
+ "loss": 3.717336654663086,
+ "step": 2291
+ },
+ {
+ "epoch": 31.838794233289647,
+ "grad_norm": 0.23156678676605225,
+ "learning_rate": 0.0006,
+ "loss": 3.7345399856567383,
+ "step": 2292
+ },
+ {
+ "epoch": 31.852774137177807,
+ "grad_norm": 0.2256302684545517,
+ "learning_rate": 0.0006,
+ "loss": 3.7596092224121094,
+ "step": 2293
+ },
+ {
+ "epoch": 31.866754041065967,
+ "grad_norm": 0.2118781954050064,
+ "learning_rate": 0.0006,
+ "loss": 3.725433588027954,
+ "step": 2294
+ },
+ {
+ "epoch": 31.88073394495413,
+ "grad_norm": 0.1874573826789856,
+ "learning_rate": 0.0006,
+ "loss": 3.738901138305664,
+ "step": 2295
+ },
+ {
+ "epoch": 31.89471384884229,
+ "grad_norm": 0.2062024176120758,
+ "learning_rate": 0.0006,
+ "loss": 3.7439217567443848,
+ "step": 2296
+ },
+ {
+ "epoch": 31.90869375273045,
+ "grad_norm": 0.19886671006679535,
+ "learning_rate": 0.0006,
+ "loss": 3.7583155632019043,
+ "step": 2297
+ },
+ {
+ "epoch": 31.92267365661861,
+ "grad_norm": 0.2079734355211258,
+ "learning_rate": 0.0006,
+ "loss": 3.7251501083374023,
+ "step": 2298
+ },
+ {
+ "epoch": 31.936653560506773,
+ "grad_norm": 0.19710204005241394,
+ "learning_rate": 0.0006,
+ "loss": 3.765778064727783,
+ "step": 2299
+ },
+ {
+ "epoch": 31.950633464394933,
+ "grad_norm": 0.1949392408132553,
+ "learning_rate": 0.0006,
+ "loss": 3.7634787559509277,
+ "step": 2300
+ },
+ {
+ "epoch": 31.964613368283093,
+ "grad_norm": 0.21466250717639923,
+ "learning_rate": 0.0006,
+ "loss": 3.7673215866088867,
+ "step": 2301
+ },
+ {
+ "epoch": 31.978593272171253,
+ "grad_norm": 0.21624267101287842,
+ "learning_rate": 0.0006,
+ "loss": 3.7617220878601074,
+ "step": 2302
+ },
+ {
+ "epoch": 31.992573176059416,
+ "grad_norm": 0.22880229353904724,
+ "learning_rate": 0.0006,
+ "loss": 3.7190351486206055,
+ "step": 2303
+ },
+ {
+ "epoch": 32.0,
+ "grad_norm": 0.23227518796920776,
+ "learning_rate": 0.0006,
+ "loss": 3.740169048309326,
+ "step": 2304
+ },
+ {
+ "epoch": 32.0,
+ "eval_loss": 4.017981052398682,
+ "eval_runtime": 44.4134,
+ "eval_samples_per_second": 54.983,
+ "eval_steps_per_second": 3.445,
+ "step": 2304
+ },
+ {
+ "epoch": 32.01397990388816,
+ "grad_norm": 0.1893721967935562,
+ "learning_rate": 0.0006,
+ "loss": 3.71738338470459,
+ "step": 2305
+ },
+ {
+ "epoch": 32.02795980777632,
+ "grad_norm": 0.23771171271800995,
+ "learning_rate": 0.0006,
+ "loss": 3.71402645111084,
+ "step": 2306
+ },
+ {
+ "epoch": 32.04193971166448,
+ "grad_norm": 0.26343807578086853,
+ "learning_rate": 0.0006,
+ "loss": 3.6926395893096924,
+ "step": 2307
+ },
+ {
+ "epoch": 32.05591961555265,
+ "grad_norm": 0.25092509388923645,
+ "learning_rate": 0.0006,
+ "loss": 3.715243339538574,
+ "step": 2308
+ },
+ {
+ "epoch": 32.0698995194408,
+ "grad_norm": 0.23148509860038757,
+ "learning_rate": 0.0006,
+ "loss": 3.690734386444092,
+ "step": 2309
+ },
+ {
+ "epoch": 32.083879423328966,
+ "grad_norm": 0.23314623534679413,
+ "learning_rate": 0.0006,
+ "loss": 3.6980109214782715,
+ "step": 2310
+ },
+ {
+ "epoch": 32.09785932721712,
+ "grad_norm": 0.2210417091846466,
+ "learning_rate": 0.0006,
+ "loss": 3.7395730018615723,
+ "step": 2311
+ },
+ {
+ "epoch": 32.111839231105286,
+ "grad_norm": 0.20263685286045074,
+ "learning_rate": 0.0006,
+ "loss": 3.678412914276123,
+ "step": 2312
+ },
+ {
+ "epoch": 32.12581913499345,
+ "grad_norm": 0.20412251353263855,
+ "learning_rate": 0.0006,
+ "loss": 3.688762903213501,
+ "step": 2313
+ },
+ {
+ "epoch": 32.139799038881605,
+ "grad_norm": 0.2041679322719574,
+ "learning_rate": 0.0006,
+ "loss": 3.7231521606445312,
+ "step": 2314
+ },
+ {
+ "epoch": 32.15377894276977,
+ "grad_norm": 0.23270174860954285,
+ "learning_rate": 0.0006,
+ "loss": 3.7102620601654053,
+ "step": 2315
+ },
+ {
+ "epoch": 32.16775884665793,
+ "grad_norm": 0.25470519065856934,
+ "learning_rate": 0.0006,
+ "loss": 3.7353053092956543,
+ "step": 2316
+ },
+ {
+ "epoch": 32.18173875054609,
+ "grad_norm": 0.2930106222629547,
+ "learning_rate": 0.0006,
+ "loss": 3.7418713569641113,
+ "step": 2317
+ },
+ {
+ "epoch": 32.19571865443425,
+ "grad_norm": 0.3181219696998596,
+ "learning_rate": 0.0006,
+ "loss": 3.6716184616088867,
+ "step": 2318
+ },
+ {
+ "epoch": 32.20969855832241,
+ "grad_norm": 0.2752978801727295,
+ "learning_rate": 0.0006,
+ "loss": 3.70334792137146,
+ "step": 2319
+ },
+ {
+ "epoch": 32.22367846221057,
+ "grad_norm": 0.28381186723709106,
+ "learning_rate": 0.0006,
+ "loss": 3.719794750213623,
+ "step": 2320
+ },
+ {
+ "epoch": 32.237658366098735,
+ "grad_norm": 0.3287750482559204,
+ "learning_rate": 0.0006,
+ "loss": 3.7363362312316895,
+ "step": 2321
+ },
+ {
+ "epoch": 32.25163826998689,
+ "grad_norm": 0.32669803500175476,
+ "learning_rate": 0.0006,
+ "loss": 3.739394426345825,
+ "step": 2322
+ },
+ {
+ "epoch": 32.265618173875055,
+ "grad_norm": 0.27423885464668274,
+ "learning_rate": 0.0006,
+ "loss": 3.7381205558776855,
+ "step": 2323
+ },
+ {
+ "epoch": 32.27959807776322,
+ "grad_norm": 0.2594660818576813,
+ "learning_rate": 0.0006,
+ "loss": 3.698683738708496,
+ "step": 2324
+ },
+ {
+ "epoch": 32.293577981651374,
+ "grad_norm": 0.2785511016845703,
+ "learning_rate": 0.0006,
+ "loss": 3.688774824142456,
+ "step": 2325
+ },
+ {
+ "epoch": 32.30755788553954,
+ "grad_norm": 0.2690320611000061,
+ "learning_rate": 0.0006,
+ "loss": 3.7209150791168213,
+ "step": 2326
+ },
+ {
+ "epoch": 32.3215377894277,
+ "grad_norm": 0.23331770300865173,
+ "learning_rate": 0.0006,
+ "loss": 3.682931423187256,
+ "step": 2327
+ },
+ {
+ "epoch": 32.33551769331586,
+ "grad_norm": 0.22380802035331726,
+ "learning_rate": 0.0006,
+ "loss": 3.720445156097412,
+ "step": 2328
+ },
+ {
+ "epoch": 32.34949759720402,
+ "grad_norm": 0.2065964937210083,
+ "learning_rate": 0.0006,
+ "loss": 3.705427885055542,
+ "step": 2329
+ },
+ {
+ "epoch": 32.36347750109218,
+ "grad_norm": 0.20701853930950165,
+ "learning_rate": 0.0006,
+ "loss": 3.7078697681427,
+ "step": 2330
+ },
+ {
+ "epoch": 32.37745740498034,
+ "grad_norm": 0.2063559591770172,
+ "learning_rate": 0.0006,
+ "loss": 3.745004653930664,
+ "step": 2331
+ },
+ {
+ "epoch": 32.391437308868504,
+ "grad_norm": 0.19377011060714722,
+ "learning_rate": 0.0006,
+ "loss": 3.713808059692383,
+ "step": 2332
+ },
+ {
+ "epoch": 32.40541721275666,
+ "grad_norm": 0.19260725378990173,
+ "learning_rate": 0.0006,
+ "loss": 3.717043876647949,
+ "step": 2333
+ },
+ {
+ "epoch": 32.419397116644824,
+ "grad_norm": 0.20792821049690247,
+ "learning_rate": 0.0006,
+ "loss": 3.68632173538208,
+ "step": 2334
+ },
+ {
+ "epoch": 32.43337702053299,
+ "grad_norm": 0.22278444468975067,
+ "learning_rate": 0.0006,
+ "loss": 3.7345821857452393,
+ "step": 2335
+ },
+ {
+ "epoch": 32.44735692442114,
+ "grad_norm": 0.22533579170703888,
+ "learning_rate": 0.0006,
+ "loss": 3.7224173545837402,
+ "step": 2336
+ },
+ {
+ "epoch": 32.46133682830931,
+ "grad_norm": 0.20228394865989685,
+ "learning_rate": 0.0006,
+ "loss": 3.748530149459839,
+ "step": 2337
+ },
+ {
+ "epoch": 32.47531673219746,
+ "grad_norm": 0.19944614171981812,
+ "learning_rate": 0.0006,
+ "loss": 3.707085371017456,
+ "step": 2338
+ },
+ {
+ "epoch": 32.489296636085626,
+ "grad_norm": 0.19856145977973938,
+ "learning_rate": 0.0006,
+ "loss": 3.6898274421691895,
+ "step": 2339
+ },
+ {
+ "epoch": 32.50327653997379,
+ "grad_norm": 0.20734605193138123,
+ "learning_rate": 0.0006,
+ "loss": 3.7511792182922363,
+ "step": 2340
+ },
+ {
+ "epoch": 32.517256443861946,
+ "grad_norm": 0.19489309191703796,
+ "learning_rate": 0.0006,
+ "loss": 3.736445426940918,
+ "step": 2341
+ },
+ {
+ "epoch": 32.53123634775011,
+ "grad_norm": 0.18899282813072205,
+ "learning_rate": 0.0006,
+ "loss": 3.727325916290283,
+ "step": 2342
+ },
+ {
+ "epoch": 32.54521625163827,
+ "grad_norm": 0.19670401513576508,
+ "learning_rate": 0.0006,
+ "loss": 3.7326102256774902,
+ "step": 2343
+ },
+ {
+ "epoch": 32.55919615552643,
+ "grad_norm": 0.20061780512332916,
+ "learning_rate": 0.0006,
+ "loss": 3.698716402053833,
+ "step": 2344
+ },
+ {
+ "epoch": 32.57317605941459,
+ "grad_norm": 0.1991659700870514,
+ "learning_rate": 0.0006,
+ "loss": 3.6913180351257324,
+ "step": 2345
+ },
+ {
+ "epoch": 32.58715596330275,
+ "grad_norm": 0.18856225907802582,
+ "learning_rate": 0.0006,
+ "loss": 3.7130961418151855,
+ "step": 2346
+ },
+ {
+ "epoch": 32.60113586719091,
+ "grad_norm": 0.1983972191810608,
+ "learning_rate": 0.0006,
+ "loss": 3.7530808448791504,
+ "step": 2347
+ },
+ {
+ "epoch": 32.615115771079076,
+ "grad_norm": 0.2037997543811798,
+ "learning_rate": 0.0006,
+ "loss": 3.7076587677001953,
+ "step": 2348
+ },
+ {
+ "epoch": 32.62909567496723,
+ "grad_norm": 0.21008458733558655,
+ "learning_rate": 0.0006,
+ "loss": 3.7379021644592285,
+ "step": 2349
+ },
+ {
+ "epoch": 32.643075578855395,
+ "grad_norm": 0.2129313349723816,
+ "learning_rate": 0.0006,
+ "loss": 3.7031373977661133,
+ "step": 2350
+ },
+ {
+ "epoch": 32.65705548274356,
+ "grad_norm": 0.18756245076656342,
+ "learning_rate": 0.0006,
+ "loss": 3.7066285610198975,
+ "step": 2351
+ },
+ {
+ "epoch": 32.671035386631715,
+ "grad_norm": 0.17946591973304749,
+ "learning_rate": 0.0006,
+ "loss": 3.73781681060791,
+ "step": 2352
+ },
+ {
+ "epoch": 32.68501529051988,
+ "grad_norm": 0.18983198702335358,
+ "learning_rate": 0.0006,
+ "loss": 3.718855381011963,
+ "step": 2353
+ },
+ {
+ "epoch": 32.69899519440804,
+ "grad_norm": 0.2080942839384079,
+ "learning_rate": 0.0006,
+ "loss": 3.7111258506774902,
+ "step": 2354
+ },
+ {
+ "epoch": 32.7129750982962,
+ "grad_norm": 0.23633413016796112,
+ "learning_rate": 0.0006,
+ "loss": 3.709766149520874,
+ "step": 2355
+ },
+ {
+ "epoch": 32.72695500218436,
+ "grad_norm": 0.2723144590854645,
+ "learning_rate": 0.0006,
+ "loss": 3.745850086212158,
+ "step": 2356
+ },
+ {
+ "epoch": 32.74093490607252,
+ "grad_norm": 0.29774025082588196,
+ "learning_rate": 0.0006,
+ "loss": 3.733771324157715,
+ "step": 2357
+ },
+ {
+ "epoch": 32.75491480996068,
+ "grad_norm": 0.25976699590682983,
+ "learning_rate": 0.0006,
+ "loss": 3.734194278717041,
+ "step": 2358
+ },
+ {
+ "epoch": 32.768894713848844,
+ "grad_norm": 0.20038039982318878,
+ "learning_rate": 0.0006,
+ "loss": 3.735656261444092,
+ "step": 2359
+ },
+ {
+ "epoch": 32.782874617737,
+ "grad_norm": 0.19745637476444244,
+ "learning_rate": 0.0006,
+ "loss": 3.7335894107818604,
+ "step": 2360
+ },
+ {
+ "epoch": 32.796854521625164,
+ "grad_norm": 0.22022396326065063,
+ "learning_rate": 0.0006,
+ "loss": 3.708998680114746,
+ "step": 2361
+ },
+ {
+ "epoch": 32.81083442551333,
+ "grad_norm": 0.24754752218723297,
+ "learning_rate": 0.0006,
+ "loss": 3.7616286277770996,
+ "step": 2362
+ },
+ {
+ "epoch": 32.824814329401484,
+ "grad_norm": 0.26438358426094055,
+ "learning_rate": 0.0006,
+ "loss": 3.737079620361328,
+ "step": 2363
+ },
+ {
+ "epoch": 32.83879423328965,
+ "grad_norm": 0.2507241666316986,
+ "learning_rate": 0.0006,
+ "loss": 3.708500385284424,
+ "step": 2364
+ },
+ {
+ "epoch": 32.8527741371778,
+ "grad_norm": 0.25688016414642334,
+ "learning_rate": 0.0006,
+ "loss": 3.7389419078826904,
+ "step": 2365
+ },
+ {
+ "epoch": 32.86675404106597,
+ "grad_norm": 0.257447749376297,
+ "learning_rate": 0.0006,
+ "loss": 3.7253334522247314,
+ "step": 2366
+ },
+ {
+ "epoch": 32.88073394495413,
+ "grad_norm": 0.2621215879917145,
+ "learning_rate": 0.0006,
+ "loss": 3.773163318634033,
+ "step": 2367
+ },
+ {
+ "epoch": 32.89471384884229,
+ "grad_norm": 0.23554839193820953,
+ "learning_rate": 0.0006,
+ "loss": 3.7534430027008057,
+ "step": 2368
+ },
+ {
+ "epoch": 32.90869375273045,
+ "grad_norm": 0.19698940217494965,
+ "learning_rate": 0.0006,
+ "loss": 3.7094414234161377,
+ "step": 2369
+ },
+ {
+ "epoch": 32.92267365661861,
+ "grad_norm": 0.21380476653575897,
+ "learning_rate": 0.0006,
+ "loss": 3.7666497230529785,
+ "step": 2370
+ },
+ {
+ "epoch": 32.93665356050677,
+ "grad_norm": 0.20876452326774597,
+ "learning_rate": 0.0006,
+ "loss": 3.7467992305755615,
+ "step": 2371
+ },
+ {
+ "epoch": 32.95063346439493,
+ "grad_norm": 0.1989884227514267,
+ "learning_rate": 0.0006,
+ "loss": 3.749878168106079,
+ "step": 2372
+ },
+ {
+ "epoch": 32.964613368283096,
+ "grad_norm": 0.19089168310165405,
+ "learning_rate": 0.0006,
+ "loss": 3.7211015224456787,
+ "step": 2373
+ },
+ {
+ "epoch": 32.97859327217125,
+ "grad_norm": 0.1962461918592453,
+ "learning_rate": 0.0006,
+ "loss": 3.728684425354004,
+ "step": 2374
+ },
+ {
+ "epoch": 32.992573176059416,
+ "grad_norm": 0.22518110275268555,
+ "learning_rate": 0.0006,
+ "loss": 3.7361507415771484,
+ "step": 2375
+ },
+ {
+ "epoch": 33.0,
+ "grad_norm": 0.26704078912734985,
+ "learning_rate": 0.0006,
+ "loss": 3.7478318214416504,
+ "step": 2376
+ },
+ {
+ "epoch": 33.0,
+ "eval_loss": 4.024221897125244,
+ "eval_runtime": 43.9826,
+ "eval_samples_per_second": 55.522,
+ "eval_steps_per_second": 3.479,
+ "step": 2376
+ },
+ {
+ "epoch": 33.01397990388816,
+ "grad_norm": 0.23387742042541504,
+ "learning_rate": 0.0006,
+ "loss": 3.7043614387512207,
+ "step": 2377
+ },
+ {
+ "epoch": 33.02795980777632,
+ "grad_norm": 0.21334673464298248,
+ "learning_rate": 0.0006,
+ "loss": 3.6714677810668945,
+ "step": 2378
+ },
+ {
+ "epoch": 33.04193971166448,
+ "grad_norm": 0.2608581483364105,
+ "learning_rate": 0.0006,
+ "loss": 3.678460121154785,
+ "step": 2379
+ },
+ {
+ "epoch": 33.05591961555265,
+ "grad_norm": 0.31364381313323975,
+ "learning_rate": 0.0006,
+ "loss": 3.6771793365478516,
+ "step": 2380
+ },
+ {
+ "epoch": 33.0698995194408,
+ "grad_norm": 0.31785935163497925,
+ "learning_rate": 0.0006,
+ "loss": 3.7248926162719727,
+ "step": 2381
+ },
+ {
+ "epoch": 33.083879423328966,
+ "grad_norm": 0.29244646430015564,
+ "learning_rate": 0.0006,
+ "loss": 3.677882194519043,
+ "step": 2382
+ },
+ {
+ "epoch": 33.09785932721712,
+ "grad_norm": 0.23943741619586945,
+ "learning_rate": 0.0006,
+ "loss": 3.7365124225616455,
+ "step": 2383
+ },
+ {
+ "epoch": 33.111839231105286,
+ "grad_norm": 0.2547394931316376,
+ "learning_rate": 0.0006,
+ "loss": 3.7031357288360596,
+ "step": 2384
+ },
+ {
+ "epoch": 33.12581913499345,
+ "grad_norm": 0.2696659564971924,
+ "learning_rate": 0.0006,
+ "loss": 3.6904754638671875,
+ "step": 2385
+ },
+ {
+ "epoch": 33.139799038881605,
+ "grad_norm": 0.24271385371685028,
+ "learning_rate": 0.0006,
+ "loss": 3.7137649059295654,
+ "step": 2386
+ },
+ {
+ "epoch": 33.15377894276977,
+ "grad_norm": 0.23435993492603302,
+ "learning_rate": 0.0006,
+ "loss": 3.707383632659912,
+ "step": 2387
+ },
+ {
+ "epoch": 33.16775884665793,
+ "grad_norm": 0.21428440511226654,
+ "learning_rate": 0.0006,
+ "loss": 3.7148897647857666,
+ "step": 2388
+ },
+ {
+ "epoch": 33.18173875054609,
+ "grad_norm": 0.22420962154865265,
+ "learning_rate": 0.0006,
+ "loss": 3.710111141204834,
+ "step": 2389
+ },
+ {
+ "epoch": 33.19571865443425,
+ "grad_norm": 0.26222777366638184,
+ "learning_rate": 0.0006,
+ "loss": 3.677438259124756,
+ "step": 2390
+ },
+ {
+ "epoch": 33.20969855832241,
+ "grad_norm": 0.29910165071487427,
+ "learning_rate": 0.0006,
+ "loss": 3.6895523071289062,
+ "step": 2391
+ },
+ {
+ "epoch": 33.22367846221057,
+ "grad_norm": 0.2615569531917572,
+ "learning_rate": 0.0006,
+ "loss": 3.7339906692504883,
+ "step": 2392
+ },
+ {
+ "epoch": 33.237658366098735,
+ "grad_norm": 0.23396961390972137,
+ "learning_rate": 0.0006,
+ "loss": 3.7179932594299316,
+ "step": 2393
+ },
+ {
+ "epoch": 33.25163826998689,
+ "grad_norm": 0.24844495952129364,
+ "learning_rate": 0.0006,
+ "loss": 3.7191576957702637,
+ "step": 2394
+ },
+ {
+ "epoch": 33.265618173875055,
+ "grad_norm": 0.2306993454694748,
+ "learning_rate": 0.0006,
+ "loss": 3.7172658443450928,
+ "step": 2395
+ },
+ {
+ "epoch": 33.27959807776322,
+ "grad_norm": 0.24935221672058105,
+ "learning_rate": 0.0006,
+ "loss": 3.6917519569396973,
+ "step": 2396
+ },
+ {
+ "epoch": 33.293577981651374,
+ "grad_norm": 0.2522840201854706,
+ "learning_rate": 0.0006,
+ "loss": 3.7263593673706055,
+ "step": 2397
+ },
+ {
+ "epoch": 33.30755788553954,
+ "grad_norm": 0.26411181688308716,
+ "learning_rate": 0.0006,
+ "loss": 3.6981635093688965,
+ "step": 2398
+ },
+ {
+ "epoch": 33.3215377894277,
+ "grad_norm": 0.22396239638328552,
+ "learning_rate": 0.0006,
+ "loss": 3.713247299194336,
+ "step": 2399
+ },
+ {
+ "epoch": 33.33551769331586,
+ "grad_norm": 0.20579157769680023,
+ "learning_rate": 0.0006,
+ "loss": 3.7058467864990234,
+ "step": 2400
+ },
+ {
+ "epoch": 33.34949759720402,
+ "grad_norm": 0.20103922486305237,
+ "learning_rate": 0.0006,
+ "loss": 3.700924873352051,
+ "step": 2401
+ },
+ {
+ "epoch": 33.36347750109218,
+ "grad_norm": 0.19964663684368134,
+ "learning_rate": 0.0006,
+ "loss": 3.6985437870025635,
+ "step": 2402
+ },
+ {
+ "epoch": 33.37745740498034,
+ "grad_norm": 0.20860575139522552,
+ "learning_rate": 0.0006,
+ "loss": 3.7480058670043945,
+ "step": 2403
+ },
+ {
+ "epoch": 33.391437308868504,
+ "grad_norm": 0.19043605029582977,
+ "learning_rate": 0.0006,
+ "loss": 3.6952016353607178,
+ "step": 2404
+ },
+ {
+ "epoch": 33.40541721275666,
+ "grad_norm": 0.1968909204006195,
+ "learning_rate": 0.0006,
+ "loss": 3.69362735748291,
+ "step": 2405
+ },
+ {
+ "epoch": 33.419397116644824,
+ "grad_norm": 0.23492494225502014,
+ "learning_rate": 0.0006,
+ "loss": 3.707993984222412,
+ "step": 2406
+ },
+ {
+ "epoch": 33.43337702053299,
+ "grad_norm": 0.23970453441143036,
+ "learning_rate": 0.0006,
+ "loss": 3.707731246948242,
+ "step": 2407
+ },
+ {
+ "epoch": 33.44735692442114,
+ "grad_norm": 0.2515844404697418,
+ "learning_rate": 0.0006,
+ "loss": 3.723824977874756,
+ "step": 2408
+ },
+ {
+ "epoch": 33.46133682830931,
+ "grad_norm": 0.2343570590019226,
+ "learning_rate": 0.0006,
+ "loss": 3.7068886756896973,
+ "step": 2409
+ },
+ {
+ "epoch": 33.47531673219746,
+ "grad_norm": 0.23419860005378723,
+ "learning_rate": 0.0006,
+ "loss": 3.6964287757873535,
+ "step": 2410
+ },
+ {
+ "epoch": 33.489296636085626,
+ "grad_norm": 0.21280375123023987,
+ "learning_rate": 0.0006,
+ "loss": 3.7020950317382812,
+ "step": 2411
+ },
+ {
+ "epoch": 33.50327653997379,
+ "grad_norm": 0.2061092108488083,
+ "learning_rate": 0.0006,
+ "loss": 3.750861406326294,
+ "step": 2412
+ },
+ {
+ "epoch": 33.517256443861946,
+ "grad_norm": 0.19693219661712646,
+ "learning_rate": 0.0006,
+ "loss": 3.717020034790039,
+ "step": 2413
+ },
+ {
+ "epoch": 33.53123634775011,
+ "grad_norm": 0.18199551105499268,
+ "learning_rate": 0.0006,
+ "loss": 3.7242612838745117,
+ "step": 2414
+ },
+ {
+ "epoch": 33.54521625163827,
+ "grad_norm": 0.20131248235702515,
+ "learning_rate": 0.0006,
+ "loss": 3.6758954524993896,
+ "step": 2415
+ },
+ {
+ "epoch": 33.55919615552643,
+ "grad_norm": 0.2219412475824356,
+ "learning_rate": 0.0006,
+ "loss": 3.707927703857422,
+ "step": 2416
+ },
+ {
+ "epoch": 33.57317605941459,
+ "grad_norm": 0.22541435062885284,
+ "learning_rate": 0.0006,
+ "loss": 3.696967601776123,
+ "step": 2417
+ },
+ {
+ "epoch": 33.58715596330275,
+ "grad_norm": 0.20367272198200226,
+ "learning_rate": 0.0006,
+ "loss": 3.730795383453369,
+ "step": 2418
+ },
+ {
+ "epoch": 33.60113586719091,
+ "grad_norm": 0.20861074328422546,
+ "learning_rate": 0.0006,
+ "loss": 3.707066535949707,
+ "step": 2419
+ },
+ {
+ "epoch": 33.615115771079076,
+ "grad_norm": 0.20570263266563416,
+ "learning_rate": 0.0006,
+ "loss": 3.730602502822876,
+ "step": 2420
+ },
+ {
+ "epoch": 33.62909567496723,
+ "grad_norm": 0.21318231523036957,
+ "learning_rate": 0.0006,
+ "loss": 3.7073278427124023,
+ "step": 2421
+ },
+ {
+ "epoch": 33.643075578855395,
+ "grad_norm": 0.2142639458179474,
+ "learning_rate": 0.0006,
+ "loss": 3.718470573425293,
+ "step": 2422
+ },
+ {
+ "epoch": 33.65705548274356,
+ "grad_norm": 0.19620704650878906,
+ "learning_rate": 0.0006,
+ "loss": 3.716036319732666,
+ "step": 2423
+ },
+ {
+ "epoch": 33.671035386631715,
+ "grad_norm": 0.19308267533779144,
+ "learning_rate": 0.0006,
+ "loss": 3.734597682952881,
+ "step": 2424
+ },
+ {
+ "epoch": 33.68501529051988,
+ "grad_norm": 0.19453389942646027,
+ "learning_rate": 0.0006,
+ "loss": 3.726262092590332,
+ "step": 2425
+ },
+ {
+ "epoch": 33.69899519440804,
+ "grad_norm": 0.20405639708042145,
+ "learning_rate": 0.0006,
+ "loss": 3.678340435028076,
+ "step": 2426
+ },
+ {
+ "epoch": 33.7129750982962,
+ "grad_norm": 0.19525611400604248,
+ "learning_rate": 0.0006,
+ "loss": 3.723907470703125,
+ "step": 2427
+ },
+ {
+ "epoch": 33.72695500218436,
+ "grad_norm": 0.19390441477298737,
+ "learning_rate": 0.0006,
+ "loss": 3.707897186279297,
+ "step": 2428
+ },
+ {
+ "epoch": 33.74093490607252,
+ "grad_norm": 0.2032899558544159,
+ "learning_rate": 0.0006,
+ "loss": 3.735041618347168,
+ "step": 2429
+ },
+ {
+ "epoch": 33.75491480996068,
+ "grad_norm": 0.2134784460067749,
+ "learning_rate": 0.0006,
+ "loss": 3.674978017807007,
+ "step": 2430
+ },
+ {
+ "epoch": 33.768894713848844,
+ "grad_norm": 0.24691973626613617,
+ "learning_rate": 0.0006,
+ "loss": 3.7028675079345703,
+ "step": 2431
+ },
+ {
+ "epoch": 33.782874617737,
+ "grad_norm": 0.2272702008485794,
+ "learning_rate": 0.0006,
+ "loss": 3.7277941703796387,
+ "step": 2432
+ },
+ {
+ "epoch": 33.796854521625164,
+ "grad_norm": 0.20052100718021393,
+ "learning_rate": 0.0006,
+ "loss": 3.7146830558776855,
+ "step": 2433
+ },
+ {
+ "epoch": 33.81083442551333,
+ "grad_norm": 0.1958577185869217,
+ "learning_rate": 0.0006,
+ "loss": 3.6936864852905273,
+ "step": 2434
+ },
+ {
+ "epoch": 33.824814329401484,
+ "grad_norm": 0.191860631108284,
+ "learning_rate": 0.0006,
+ "loss": 3.7451858520507812,
+ "step": 2435
+ },
+ {
+ "epoch": 33.83879423328965,
+ "grad_norm": 0.20961424708366394,
+ "learning_rate": 0.0006,
+ "loss": 3.722400665283203,
+ "step": 2436
+ },
+ {
+ "epoch": 33.8527741371778,
+ "grad_norm": 0.19784288108348846,
+ "learning_rate": 0.0006,
+ "loss": 3.712474822998047,
+ "step": 2437
+ },
+ {
+ "epoch": 33.86675404106597,
+ "grad_norm": 0.18645426630973816,
+ "learning_rate": 0.0006,
+ "loss": 3.7054500579833984,
+ "step": 2438
+ },
+ {
+ "epoch": 33.88073394495413,
+ "grad_norm": 0.19622360169887543,
+ "learning_rate": 0.0006,
+ "loss": 3.7010550498962402,
+ "step": 2439
+ },
+ {
+ "epoch": 33.89471384884229,
+ "grad_norm": 0.20283745229244232,
+ "learning_rate": 0.0006,
+ "loss": 3.7252519130706787,
+ "step": 2440
+ },
+ {
+ "epoch": 33.90869375273045,
+ "grad_norm": 0.18671709299087524,
+ "learning_rate": 0.0006,
+ "loss": 3.6932945251464844,
+ "step": 2441
+ },
+ {
+ "epoch": 33.92267365661861,
+ "grad_norm": 0.17953112721443176,
+ "learning_rate": 0.0006,
+ "loss": 3.7453854084014893,
+ "step": 2442
+ },
+ {
+ "epoch": 33.93665356050677,
+ "grad_norm": 0.1945437788963318,
+ "learning_rate": 0.0006,
+ "loss": 3.722881317138672,
+ "step": 2443
+ },
+ {
+ "epoch": 33.95063346439493,
+ "grad_norm": 0.18414495885372162,
+ "learning_rate": 0.0006,
+ "loss": 3.7402591705322266,
+ "step": 2444
+ },
+ {
+ "epoch": 33.964613368283096,
+ "grad_norm": 0.1936541497707367,
+ "learning_rate": 0.0006,
+ "loss": 3.720057964324951,
+ "step": 2445
+ },
+ {
+ "epoch": 33.97859327217125,
+ "grad_norm": 0.20177008211612701,
+ "learning_rate": 0.0006,
+ "loss": 3.6983802318573,
+ "step": 2446
+ },
+ {
+ "epoch": 33.992573176059416,
+ "grad_norm": 0.18977557122707367,
+ "learning_rate": 0.0006,
+ "loss": 3.7202203273773193,
+ "step": 2447
+ },
+ {
+ "epoch": 34.0,
+ "grad_norm": 0.220163956284523,
+ "learning_rate": 0.0006,
+ "loss": 3.72540283203125,
+ "step": 2448
+ },
+ {
+ "epoch": 34.0,
+ "eval_loss": 4.009343147277832,
+ "eval_runtime": 44.1825,
+ "eval_samples_per_second": 55.271,
+ "eval_steps_per_second": 3.463,
+ "step": 2448
+ },
+ {
+ "epoch": 34.01397990388816,
+ "grad_norm": 0.19843372702598572,
+ "learning_rate": 0.0006,
+ "loss": 3.664431571960449,
+ "step": 2449
+ },
+ {
+ "epoch": 34.02795980777632,
+ "grad_norm": 0.20413008332252502,
+ "learning_rate": 0.0006,
+ "loss": 3.699094533920288,
+ "step": 2450
+ },
+ {
+ "epoch": 34.04193971166448,
+ "grad_norm": 0.22086848318576813,
+ "learning_rate": 0.0006,
+ "loss": 3.681825637817383,
+ "step": 2451
+ },
+ {
+ "epoch": 34.05591961555265,
+ "grad_norm": 0.20753061771392822,
+ "learning_rate": 0.0006,
+ "loss": 3.677116870880127,
+ "step": 2452
+ },
+ {
+ "epoch": 34.0698995194408,
+ "grad_norm": 0.21835783123970032,
+ "learning_rate": 0.0006,
+ "loss": 3.7079062461853027,
+ "step": 2453
+ },
+ {
+ "epoch": 34.083879423328966,
+ "grad_norm": 0.2244357019662857,
+ "learning_rate": 0.0006,
+ "loss": 3.69844913482666,
+ "step": 2454
+ },
+ {
+ "epoch": 34.09785932721712,
+ "grad_norm": 0.2238784283399582,
+ "learning_rate": 0.0006,
+ "loss": 3.6835570335388184,
+ "step": 2455
+ },
+ {
+ "epoch": 34.111839231105286,
+ "grad_norm": 0.24816176295280457,
+ "learning_rate": 0.0006,
+ "loss": 3.6832966804504395,
+ "step": 2456
+ },
+ {
+ "epoch": 34.12581913499345,
+ "grad_norm": 0.2445257306098938,
+ "learning_rate": 0.0006,
+ "loss": 3.7190022468566895,
+ "step": 2457
+ },
+ {
+ "epoch": 34.139799038881605,
+ "grad_norm": 0.24510814249515533,
+ "learning_rate": 0.0006,
+ "loss": 3.678098201751709,
+ "step": 2458
+ },
+ {
+ "epoch": 34.15377894276977,
+ "grad_norm": 0.2550753653049469,
+ "learning_rate": 0.0006,
+ "loss": 3.69335675239563,
+ "step": 2459
+ },
+ {
+ "epoch": 34.16775884665793,
+ "grad_norm": 0.2435017228126526,
+ "learning_rate": 0.0006,
+ "loss": 3.70463228225708,
+ "step": 2460
+ },
+ {
+ "epoch": 34.18173875054609,
+ "grad_norm": 0.26441144943237305,
+ "learning_rate": 0.0006,
+ "loss": 3.6757068634033203,
+ "step": 2461
+ },
+ {
+ "epoch": 34.19571865443425,
+ "grad_norm": 0.2737993001937866,
+ "learning_rate": 0.0006,
+ "loss": 3.6510863304138184,
+ "step": 2462
+ },
+ {
+ "epoch": 34.20969855832241,
+ "grad_norm": 0.24625736474990845,
+ "learning_rate": 0.0006,
+ "loss": 3.707612991333008,
+ "step": 2463
+ },
+ {
+ "epoch": 34.22367846221057,
+ "grad_norm": 0.22222039103507996,
+ "learning_rate": 0.0006,
+ "loss": 3.7145133018493652,
+ "step": 2464
+ },
+ {
+ "epoch": 34.237658366098735,
+ "grad_norm": 0.2173531949520111,
+ "learning_rate": 0.0006,
+ "loss": 3.685112476348877,
+ "step": 2465
+ },
+ {
+ "epoch": 34.25163826998689,
+ "grad_norm": 0.23102006316184998,
+ "learning_rate": 0.0006,
+ "loss": 3.6742453575134277,
+ "step": 2466
+ },
+ {
+ "epoch": 34.265618173875055,
+ "grad_norm": 0.22287188470363617,
+ "learning_rate": 0.0006,
+ "loss": 3.7030534744262695,
+ "step": 2467
+ },
+ {
+ "epoch": 34.27959807776322,
+ "grad_norm": 0.20377251505851746,
+ "learning_rate": 0.0006,
+ "loss": 3.6866259574890137,
+ "step": 2468
+ },
+ {
+ "epoch": 34.293577981651374,
+ "grad_norm": 0.19867438077926636,
+ "learning_rate": 0.0006,
+ "loss": 3.70395565032959,
+ "step": 2469
+ },
+ {
+ "epoch": 34.30755788553954,
+ "grad_norm": 0.2014918178319931,
+ "learning_rate": 0.0006,
+ "loss": 3.660795211791992,
+ "step": 2470
+ },
+ {
+ "epoch": 34.3215377894277,
+ "grad_norm": 0.20981402695178986,
+ "learning_rate": 0.0006,
+ "loss": 3.7045323848724365,
+ "step": 2471
+ },
+ {
+ "epoch": 34.33551769331586,
+ "grad_norm": 0.20968124270439148,
+ "learning_rate": 0.0006,
+ "loss": 3.7113170623779297,
+ "step": 2472
+ },
+ {
+ "epoch": 34.34949759720402,
+ "grad_norm": 0.2214043140411377,
+ "learning_rate": 0.0006,
+ "loss": 3.7330074310302734,
+ "step": 2473
+ },
+ {
+ "epoch": 34.36347750109218,
+ "grad_norm": 0.21231533586978912,
+ "learning_rate": 0.0006,
+ "loss": 3.6706933975219727,
+ "step": 2474
+ },
+ {
+ "epoch": 34.37745740498034,
+ "grad_norm": 0.2022094875574112,
+ "learning_rate": 0.0006,
+ "loss": 3.7230453491210938,
+ "step": 2475
+ },
+ {
+ "epoch": 34.391437308868504,
+ "grad_norm": 0.2281145304441452,
+ "learning_rate": 0.0006,
+ "loss": 3.7197465896606445,
+ "step": 2476
+ },
+ {
+ "epoch": 34.40541721275666,
+ "grad_norm": 0.2147362381219864,
+ "learning_rate": 0.0006,
+ "loss": 3.7092337608337402,
+ "step": 2477
+ },
+ {
+ "epoch": 34.419397116644824,
+ "grad_norm": 0.19984203577041626,
+ "learning_rate": 0.0006,
+ "loss": 3.6939496994018555,
+ "step": 2478
+ },
+ {
+ "epoch": 34.43337702053299,
+ "grad_norm": 0.21088480949401855,
+ "learning_rate": 0.0006,
+ "loss": 3.6942667961120605,
+ "step": 2479
+ },
+ {
+ "epoch": 34.44735692442114,
+ "grad_norm": 0.20444616675376892,
+ "learning_rate": 0.0006,
+ "loss": 3.718186378479004,
+ "step": 2480
+ },
+ {
+ "epoch": 34.46133682830931,
+ "grad_norm": 0.19133952260017395,
+ "learning_rate": 0.0006,
+ "loss": 3.697197437286377,
+ "step": 2481
+ },
+ {
+ "epoch": 34.47531673219746,
+ "grad_norm": 0.2219255417585373,
+ "learning_rate": 0.0006,
+ "loss": 3.684386730194092,
+ "step": 2482
+ },
+ {
+ "epoch": 34.489296636085626,
+ "grad_norm": 0.2480643391609192,
+ "learning_rate": 0.0006,
+ "loss": 3.6656622886657715,
+ "step": 2483
+ },
+ {
+ "epoch": 34.50327653997379,
+ "grad_norm": 0.22907346487045288,
+ "learning_rate": 0.0006,
+ "loss": 3.741391897201538,
+ "step": 2484
+ },
+ {
+ "epoch": 34.517256443861946,
+ "grad_norm": 0.20277173817157745,
+ "learning_rate": 0.0006,
+ "loss": 3.7062582969665527,
+ "step": 2485
+ },
+ {
+ "epoch": 34.53123634775011,
+ "grad_norm": 0.21411100029945374,
+ "learning_rate": 0.0006,
+ "loss": 3.691784381866455,
+ "step": 2486
+ },
+ {
+ "epoch": 34.54521625163827,
+ "grad_norm": 0.20261600613594055,
+ "learning_rate": 0.0006,
+ "loss": 3.6855502128601074,
+ "step": 2487
+ },
+ {
+ "epoch": 34.55919615552643,
+ "grad_norm": 0.23913109302520752,
+ "learning_rate": 0.0006,
+ "loss": 3.670754909515381,
+ "step": 2488
+ },
+ {
+ "epoch": 34.57317605941459,
+ "grad_norm": 0.24427077174186707,
+ "learning_rate": 0.0006,
+ "loss": 3.700611114501953,
+ "step": 2489
+ },
+ {
+ "epoch": 34.58715596330275,
+ "grad_norm": 0.20305761694908142,
+ "learning_rate": 0.0006,
+ "loss": 3.7284226417541504,
+ "step": 2490
+ },
+ {
+ "epoch": 34.60113586719091,
+ "grad_norm": 0.20398905873298645,
+ "learning_rate": 0.0006,
+ "loss": 3.6860880851745605,
+ "step": 2491
+ },
+ {
+ "epoch": 34.615115771079076,
+ "grad_norm": 0.21016651391983032,
+ "learning_rate": 0.0006,
+ "loss": 3.7366015911102295,
+ "step": 2492
+ },
+ {
+ "epoch": 34.62909567496723,
+ "grad_norm": 0.22279402613639832,
+ "learning_rate": 0.0006,
+ "loss": 3.7024295330047607,
+ "step": 2493
+ },
+ {
+ "epoch": 34.643075578855395,
+ "grad_norm": 0.25080347061157227,
+ "learning_rate": 0.0006,
+ "loss": 3.68355655670166,
+ "step": 2494
+ },
+ {
+ "epoch": 34.65705548274356,
+ "grad_norm": 0.2702971398830414,
+ "learning_rate": 0.0006,
+ "loss": 3.7400612831115723,
+ "step": 2495
+ },
+ {
+ "epoch": 34.671035386631715,
+ "grad_norm": 0.299398273229599,
+ "learning_rate": 0.0006,
+ "loss": 3.7160325050354004,
+ "step": 2496
+ },
+ {
+ "epoch": 34.68501529051988,
+ "grad_norm": 0.29151082038879395,
+ "learning_rate": 0.0006,
+ "loss": 3.7124147415161133,
+ "step": 2497
+ },
+ {
+ "epoch": 34.69899519440804,
+ "grad_norm": 0.23828288912773132,
+ "learning_rate": 0.0006,
+ "loss": 3.7181267738342285,
+ "step": 2498
+ },
+ {
+ "epoch": 34.7129750982962,
+ "grad_norm": 0.21776588261127472,
+ "learning_rate": 0.0006,
+ "loss": 3.6811792850494385,
+ "step": 2499
+ },
+ {
+ "epoch": 34.72695500218436,
+ "grad_norm": 0.2318469136953354,
+ "learning_rate": 0.0006,
+ "loss": 3.698467254638672,
+ "step": 2500
+ },
+ {
+ "epoch": 34.74093490607252,
+ "grad_norm": 0.22341546416282654,
+ "learning_rate": 0.0006,
+ "loss": 3.7406411170959473,
+ "step": 2501
+ },
+ {
+ "epoch": 34.75491480996068,
+ "grad_norm": 0.20676901936531067,
+ "learning_rate": 0.0006,
+ "loss": 3.6914243698120117,
+ "step": 2502
+ },
+ {
+ "epoch": 34.768894713848844,
+ "grad_norm": 0.20459024608135223,
+ "learning_rate": 0.0006,
+ "loss": 3.713369607925415,
+ "step": 2503
+ },
+ {
+ "epoch": 34.782874617737,
+ "grad_norm": 0.22369320690631866,
+ "learning_rate": 0.0006,
+ "loss": 3.697587490081787,
+ "step": 2504
+ },
+ {
+ "epoch": 34.796854521625164,
+ "grad_norm": 0.2393338829278946,
+ "learning_rate": 0.0006,
+ "loss": 3.7171854972839355,
+ "step": 2505
+ },
+ {
+ "epoch": 34.81083442551333,
+ "grad_norm": 0.23756961524486542,
+ "learning_rate": 0.0006,
+ "loss": 3.6969614028930664,
+ "step": 2506
+ },
+ {
+ "epoch": 34.824814329401484,
+ "grad_norm": 0.22761376202106476,
+ "learning_rate": 0.0006,
+ "loss": 3.722501754760742,
+ "step": 2507
+ },
+ {
+ "epoch": 34.83879423328965,
+ "grad_norm": 0.23564888536930084,
+ "learning_rate": 0.0006,
+ "loss": 3.714003086090088,
+ "step": 2508
+ },
+ {
+ "epoch": 34.8527741371778,
+ "grad_norm": 0.22197313606739044,
+ "learning_rate": 0.0006,
+ "loss": 3.7107110023498535,
+ "step": 2509
+ },
+ {
+ "epoch": 34.86675404106597,
+ "grad_norm": 0.20199328660964966,
+ "learning_rate": 0.0006,
+ "loss": 3.7167551517486572,
+ "step": 2510
+ },
+ {
+ "epoch": 34.88073394495413,
+ "grad_norm": 0.19569700956344604,
+ "learning_rate": 0.0006,
+ "loss": 3.679098129272461,
+ "step": 2511
+ },
+ {
+ "epoch": 34.89471384884229,
+ "grad_norm": 0.21320141851902008,
+ "learning_rate": 0.0006,
+ "loss": 3.733187675476074,
+ "step": 2512
+ },
+ {
+ "epoch": 34.90869375273045,
+ "grad_norm": 0.20074625313282013,
+ "learning_rate": 0.0006,
+ "loss": 3.713339328765869,
+ "step": 2513
+ },
+ {
+ "epoch": 34.92267365661861,
+ "grad_norm": 0.20249252021312714,
+ "learning_rate": 0.0006,
+ "loss": 3.680785655975342,
+ "step": 2514
+ },
+ {
+ "epoch": 34.93665356050677,
+ "grad_norm": 0.22165577113628387,
+ "learning_rate": 0.0006,
+ "loss": 3.696131706237793,
+ "step": 2515
+ },
+ {
+ "epoch": 34.95063346439493,
+ "grad_norm": 0.20769749581813812,
+ "learning_rate": 0.0006,
+ "loss": 3.6910316944122314,
+ "step": 2516
+ },
+ {
+ "epoch": 34.964613368283096,
+ "grad_norm": 0.20857223868370056,
+ "learning_rate": 0.0006,
+ "loss": 3.7327451705932617,
+ "step": 2517
+ },
+ {
+ "epoch": 34.97859327217125,
+ "grad_norm": 0.19155766069889069,
+ "learning_rate": 0.0006,
+ "loss": 3.705609083175659,
+ "step": 2518
+ },
+ {
+ "epoch": 34.992573176059416,
+ "grad_norm": 0.17890529334545135,
+ "learning_rate": 0.0006,
+ "loss": 3.6844797134399414,
+ "step": 2519
+ },
+ {
+ "epoch": 35.0,
+ "grad_norm": 0.2053528130054474,
+ "learning_rate": 0.0006,
+ "loss": 3.6942501068115234,
+ "step": 2520
+ },
+ {
+ "epoch": 35.0,
+ "eval_loss": 3.998469591140747,
+ "eval_runtime": 43.9147,
+ "eval_samples_per_second": 55.608,
+ "eval_steps_per_second": 3.484,
+ "step": 2520
+ },
+ {
+ "epoch": 35.01397990388816,
+ "grad_norm": 0.2288869470357895,
+ "learning_rate": 0.0006,
+ "loss": 3.6966426372528076,
+ "step": 2521
+ },
+ {
+ "epoch": 35.02795980777632,
+ "grad_norm": 0.25702035427093506,
+ "learning_rate": 0.0006,
+ "loss": 3.6622562408447266,
+ "step": 2522
+ },
+ {
+ "epoch": 35.04193971166448,
+ "grad_norm": 0.254422128200531,
+ "learning_rate": 0.0006,
+ "loss": 3.690046548843384,
+ "step": 2523
+ },
+ {
+ "epoch": 35.05591961555265,
+ "grad_norm": 0.24177077412605286,
+ "learning_rate": 0.0006,
+ "loss": 3.685335874557495,
+ "step": 2524
+ },
+ {
+ "epoch": 35.0698995194408,
+ "grad_norm": 0.23959586024284363,
+ "learning_rate": 0.0006,
+ "loss": 3.6534650325775146,
+ "step": 2525
+ },
+ {
+ "epoch": 35.083879423328966,
+ "grad_norm": 0.23474839329719543,
+ "learning_rate": 0.0006,
+ "loss": 3.7092814445495605,
+ "step": 2526
+ },
+ {
+ "epoch": 35.09785932721712,
+ "grad_norm": 0.23240867257118225,
+ "learning_rate": 0.0006,
+ "loss": 3.6819097995758057,
+ "step": 2527
+ },
+ {
+ "epoch": 35.111839231105286,
+ "grad_norm": 0.26267048716545105,
+ "learning_rate": 0.0006,
+ "loss": 3.6566696166992188,
+ "step": 2528
+ },
+ {
+ "epoch": 35.12581913499345,
+ "grad_norm": 0.27070754766464233,
+ "learning_rate": 0.0006,
+ "loss": 3.676304340362549,
+ "step": 2529
+ },
+ {
+ "epoch": 35.139799038881605,
+ "grad_norm": 0.25297826528549194,
+ "learning_rate": 0.0006,
+ "loss": 3.65259051322937,
+ "step": 2530
+ },
+ {
+ "epoch": 35.15377894276977,
+ "grad_norm": 0.22776272892951965,
+ "learning_rate": 0.0006,
+ "loss": 3.6813838481903076,
+ "step": 2531
+ },
+ {
+ "epoch": 35.16775884665793,
+ "grad_norm": 0.2288261204957962,
+ "learning_rate": 0.0006,
+ "loss": 3.6916379928588867,
+ "step": 2532
+ },
+ {
+ "epoch": 35.18173875054609,
+ "grad_norm": 0.20445892214775085,
+ "learning_rate": 0.0006,
+ "loss": 3.6550145149230957,
+ "step": 2533
+ },
+ {
+ "epoch": 35.19571865443425,
+ "grad_norm": 0.20298904180526733,
+ "learning_rate": 0.0006,
+ "loss": 3.704042434692383,
+ "step": 2534
+ },
+ {
+ "epoch": 35.20969855832241,
+ "grad_norm": 0.2264423668384552,
+ "learning_rate": 0.0006,
+ "loss": 3.646308183670044,
+ "step": 2535
+ },
+ {
+ "epoch": 35.22367846221057,
+ "grad_norm": 0.21537378430366516,
+ "learning_rate": 0.0006,
+ "loss": 3.686048984527588,
+ "step": 2536
+ },
+ {
+ "epoch": 35.237658366098735,
+ "grad_norm": 0.19820059835910797,
+ "learning_rate": 0.0006,
+ "loss": 3.6993050575256348,
+ "step": 2537
+ },
+ {
+ "epoch": 35.25163826998689,
+ "grad_norm": 0.19485290348529816,
+ "learning_rate": 0.0006,
+ "loss": 3.6507070064544678,
+ "step": 2538
+ },
+ {
+ "epoch": 35.265618173875055,
+ "grad_norm": 0.21234364807605743,
+ "learning_rate": 0.0006,
+ "loss": 3.6913719177246094,
+ "step": 2539
+ },
+ {
+ "epoch": 35.27959807776322,
+ "grad_norm": 0.19834300875663757,
+ "learning_rate": 0.0006,
+ "loss": 3.6793041229248047,
+ "step": 2540
+ },
+ {
+ "epoch": 35.293577981651374,
+ "grad_norm": 0.1969013512134552,
+ "learning_rate": 0.0006,
+ "loss": 3.7063517570495605,
+ "step": 2541
+ },
+ {
+ "epoch": 35.30755788553954,
+ "grad_norm": 0.196136936545372,
+ "learning_rate": 0.0006,
+ "loss": 3.679825782775879,
+ "step": 2542
+ },
+ {
+ "epoch": 35.3215377894277,
+ "grad_norm": 0.20465479791164398,
+ "learning_rate": 0.0006,
+ "loss": 3.698906421661377,
+ "step": 2543
+ },
+ {
+ "epoch": 35.33551769331586,
+ "grad_norm": 0.204293355345726,
+ "learning_rate": 0.0006,
+ "loss": 3.728549003601074,
+ "step": 2544
+ },
+ {
+ "epoch": 35.34949759720402,
+ "grad_norm": 0.18861903250217438,
+ "learning_rate": 0.0006,
+ "loss": 3.687018632888794,
+ "step": 2545
+ },
+ {
+ "epoch": 35.36347750109218,
+ "grad_norm": 0.19066226482391357,
+ "learning_rate": 0.0006,
+ "loss": 3.667919158935547,
+ "step": 2546
+ },
+ {
+ "epoch": 35.37745740498034,
+ "grad_norm": 0.19985736906528473,
+ "learning_rate": 0.0006,
+ "loss": 3.6697773933410645,
+ "step": 2547
+ },
+ {
+ "epoch": 35.391437308868504,
+ "grad_norm": 0.20669348537921906,
+ "learning_rate": 0.0006,
+ "loss": 3.6718077659606934,
+ "step": 2548
+ },
+ {
+ "epoch": 35.40541721275666,
+ "grad_norm": 0.22164477407932281,
+ "learning_rate": 0.0006,
+ "loss": 3.692106246948242,
+ "step": 2549
+ },
+ {
+ "epoch": 35.419397116644824,
+ "grad_norm": 0.20884688198566437,
+ "learning_rate": 0.0006,
+ "loss": 3.714324712753296,
+ "step": 2550
+ },
+ {
+ "epoch": 35.43337702053299,
+ "grad_norm": 0.21811005473136902,
+ "learning_rate": 0.0006,
+ "loss": 3.678694725036621,
+ "step": 2551
+ },
+ {
+ "epoch": 35.44735692442114,
+ "grad_norm": 0.2427632063627243,
+ "learning_rate": 0.0006,
+ "loss": 3.6584935188293457,
+ "step": 2552
+ },
+ {
+ "epoch": 35.46133682830931,
+ "grad_norm": 0.2584928572177887,
+ "learning_rate": 0.0006,
+ "loss": 3.694148063659668,
+ "step": 2553
+ },
+ {
+ "epoch": 35.47531673219746,
+ "grad_norm": 0.2594548761844635,
+ "learning_rate": 0.0006,
+ "loss": 3.690629005432129,
+ "step": 2554
+ },
+ {
+ "epoch": 35.489296636085626,
+ "grad_norm": 0.2521844208240509,
+ "learning_rate": 0.0006,
+ "loss": 3.6949915885925293,
+ "step": 2555
+ },
+ {
+ "epoch": 35.50327653997379,
+ "grad_norm": 0.2284533679485321,
+ "learning_rate": 0.0006,
+ "loss": 3.6822848320007324,
+ "step": 2556
+ },
+ {
+ "epoch": 35.517256443861946,
+ "grad_norm": 0.2350241094827652,
+ "learning_rate": 0.0006,
+ "loss": 3.6841659545898438,
+ "step": 2557
+ },
+ {
+ "epoch": 35.53123634775011,
+ "grad_norm": 0.22496885061264038,
+ "learning_rate": 0.0006,
+ "loss": 3.676447629928589,
+ "step": 2558
+ },
+ {
+ "epoch": 35.54521625163827,
+ "grad_norm": 0.24326276779174805,
+ "learning_rate": 0.0006,
+ "loss": 3.681678533554077,
+ "step": 2559
+ },
+ {
+ "epoch": 35.55919615552643,
+ "grad_norm": 0.26298362016677856,
+ "learning_rate": 0.0006,
+ "loss": 3.6877617835998535,
+ "step": 2560
+ },
+ {
+ "epoch": 35.57317605941459,
+ "grad_norm": 0.2507239282131195,
+ "learning_rate": 0.0006,
+ "loss": 3.7089176177978516,
+ "step": 2561
+ },
+ {
+ "epoch": 35.58715596330275,
+ "grad_norm": 0.2276458442211151,
+ "learning_rate": 0.0006,
+ "loss": 3.705570936203003,
+ "step": 2562
+ },
+ {
+ "epoch": 35.60113586719091,
+ "grad_norm": 0.23317085206508636,
+ "learning_rate": 0.0006,
+ "loss": 3.6772396564483643,
+ "step": 2563
+ },
+ {
+ "epoch": 35.615115771079076,
+ "grad_norm": 0.23301710188388824,
+ "learning_rate": 0.0006,
+ "loss": 3.694855213165283,
+ "step": 2564
+ },
+ {
+ "epoch": 35.62909567496723,
+ "grad_norm": 0.2170179933309555,
+ "learning_rate": 0.0006,
+ "loss": 3.7095537185668945,
+ "step": 2565
+ },
+ {
+ "epoch": 35.643075578855395,
+ "grad_norm": 0.21211965382099152,
+ "learning_rate": 0.0006,
+ "loss": 3.670109272003174,
+ "step": 2566
+ },
+ {
+ "epoch": 35.65705548274356,
+ "grad_norm": 0.21052585542201996,
+ "learning_rate": 0.0006,
+ "loss": 3.6576027870178223,
+ "step": 2567
+ },
+ {
+ "epoch": 35.671035386631715,
+ "grad_norm": 0.21556039154529572,
+ "learning_rate": 0.0006,
+ "loss": 3.6870639324188232,
+ "step": 2568
+ },
+ {
+ "epoch": 35.68501529051988,
+ "grad_norm": 0.2246469408273697,
+ "learning_rate": 0.0006,
+ "loss": 3.675652503967285,
+ "step": 2569
+ },
+ {
+ "epoch": 35.69899519440804,
+ "grad_norm": 0.21891754865646362,
+ "learning_rate": 0.0006,
+ "loss": 3.692298650741577,
+ "step": 2570
+ },
+ {
+ "epoch": 35.7129750982962,
+ "grad_norm": 0.18774104118347168,
+ "learning_rate": 0.0006,
+ "loss": 3.681035041809082,
+ "step": 2571
+ },
+ {
+ "epoch": 35.72695500218436,
+ "grad_norm": 0.19461573660373688,
+ "learning_rate": 0.0006,
+ "loss": 3.7007932662963867,
+ "step": 2572
+ },
+ {
+ "epoch": 35.74093490607252,
+ "grad_norm": 0.25579094886779785,
+ "learning_rate": 0.0006,
+ "loss": 3.724409580230713,
+ "step": 2573
+ },
+ {
+ "epoch": 35.75491480996068,
+ "grad_norm": 0.27635645866394043,
+ "learning_rate": 0.0006,
+ "loss": 3.68107271194458,
+ "step": 2574
+ },
+ {
+ "epoch": 35.768894713848844,
+ "grad_norm": 0.2233380675315857,
+ "learning_rate": 0.0006,
+ "loss": 3.7123913764953613,
+ "step": 2575
+ },
+ {
+ "epoch": 35.782874617737,
+ "grad_norm": 0.19383835792541504,
+ "learning_rate": 0.0006,
+ "loss": 3.6948328018188477,
+ "step": 2576
+ },
+ {
+ "epoch": 35.796854521625164,
+ "grad_norm": 0.18138426542282104,
+ "learning_rate": 0.0006,
+ "loss": 3.6837103366851807,
+ "step": 2577
+ },
+ {
+ "epoch": 35.81083442551333,
+ "grad_norm": 0.18680135905742645,
+ "learning_rate": 0.0006,
+ "loss": 3.7106502056121826,
+ "step": 2578
+ },
+ {
+ "epoch": 35.824814329401484,
+ "grad_norm": 0.19226312637329102,
+ "learning_rate": 0.0006,
+ "loss": 3.69488787651062,
+ "step": 2579
+ },
+ {
+ "epoch": 35.83879423328965,
+ "grad_norm": 0.19224657118320465,
+ "learning_rate": 0.0006,
+ "loss": 3.7103662490844727,
+ "step": 2580
+ },
+ {
+ "epoch": 35.8527741371778,
+ "grad_norm": 0.18991880118846893,
+ "learning_rate": 0.0006,
+ "loss": 3.7154245376586914,
+ "step": 2581
+ },
+ {
+ "epoch": 35.86675404106597,
+ "grad_norm": 0.2036849409341812,
+ "learning_rate": 0.0006,
+ "loss": 3.723738193511963,
+ "step": 2582
+ },
+ {
+ "epoch": 35.88073394495413,
+ "grad_norm": 0.24730375409126282,
+ "learning_rate": 0.0006,
+ "loss": 3.6830549240112305,
+ "step": 2583
+ },
+ {
+ "epoch": 35.89471384884229,
+ "grad_norm": 0.26552343368530273,
+ "learning_rate": 0.0006,
+ "loss": 3.7025017738342285,
+ "step": 2584
+ },
+ {
+ "epoch": 35.90869375273045,
+ "grad_norm": 0.2621893286705017,
+ "learning_rate": 0.0006,
+ "loss": 3.697399854660034,
+ "step": 2585
+ },
+ {
+ "epoch": 35.92267365661861,
+ "grad_norm": 0.2320089191198349,
+ "learning_rate": 0.0006,
+ "loss": 3.722207546234131,
+ "step": 2586
+ },
+ {
+ "epoch": 35.93665356050677,
+ "grad_norm": 0.1848745346069336,
+ "learning_rate": 0.0006,
+ "loss": 3.711249351501465,
+ "step": 2587
+ },
+ {
+ "epoch": 35.95063346439493,
+ "grad_norm": 0.24218113720417023,
+ "learning_rate": 0.0006,
+ "loss": 3.698894500732422,
+ "step": 2588
+ },
+ {
+ "epoch": 35.964613368283096,
+ "grad_norm": 0.29338452219963074,
+ "learning_rate": 0.0006,
+ "loss": 3.7470521926879883,
+ "step": 2589
+ },
+ {
+ "epoch": 35.97859327217125,
+ "grad_norm": 0.2804136276245117,
+ "learning_rate": 0.0006,
+ "loss": 3.750649929046631,
+ "step": 2590
+ },
+ {
+ "epoch": 35.992573176059416,
+ "grad_norm": 0.26404470205307007,
+ "learning_rate": 0.0006,
+ "loss": 3.6995797157287598,
+ "step": 2591
+ },
+ {
+ "epoch": 36.0,
+ "grad_norm": 0.27446141839027405,
+ "learning_rate": 0.0006,
+ "loss": 3.715768814086914,
+ "step": 2592
+ },
+ {
+ "epoch": 36.0,
+ "eval_loss": 4.007599830627441,
+ "eval_runtime": 44.0149,
+ "eval_samples_per_second": 55.481,
+ "eval_steps_per_second": 3.476,
+ "step": 2592
+ },
+ {
+ "epoch": 36.01397990388816,
+ "grad_norm": 0.2365594208240509,
+ "learning_rate": 0.0006,
+ "loss": 3.6529457569122314,
+ "step": 2593
+ },
+ {
+ "epoch": 36.02795980777632,
+ "grad_norm": 0.24824099242687225,
+ "learning_rate": 0.0006,
+ "loss": 3.6703386306762695,
+ "step": 2594
+ },
+ {
+ "epoch": 36.04193971166448,
+ "grad_norm": 0.26802200078964233,
+ "learning_rate": 0.0006,
+ "loss": 3.688307762145996,
+ "step": 2595
+ },
+ {
+ "epoch": 36.05591961555265,
+ "grad_norm": 0.2552911341190338,
+ "learning_rate": 0.0006,
+ "loss": 3.681797981262207,
+ "step": 2596
+ },
+ {
+ "epoch": 36.0698995194408,
+ "grad_norm": 0.254991739988327,
+ "learning_rate": 0.0006,
+ "loss": 3.644087791442871,
+ "step": 2597
+ },
+ {
+ "epoch": 36.083879423328966,
+ "grad_norm": 0.2496735155582428,
+ "learning_rate": 0.0006,
+ "loss": 3.644047737121582,
+ "step": 2598
+ },
+ {
+ "epoch": 36.09785932721712,
+ "grad_norm": 0.23637443780899048,
+ "learning_rate": 0.0006,
+ "loss": 3.684454917907715,
+ "step": 2599
+ },
+ {
+ "epoch": 36.111839231105286,
+ "grad_norm": 0.22065003216266632,
+ "learning_rate": 0.0006,
+ "loss": 3.661752700805664,
+ "step": 2600
+ },
+ {
+ "epoch": 36.12581913499345,
+ "grad_norm": 0.2292395532131195,
+ "learning_rate": 0.0006,
+ "loss": 3.6709558963775635,
+ "step": 2601
+ },
+ {
+ "epoch": 36.139799038881605,
+ "grad_norm": 0.22295089066028595,
+ "learning_rate": 0.0006,
+ "loss": 3.642230987548828,
+ "step": 2602
+ },
+ {
+ "epoch": 36.15377894276977,
+ "grad_norm": 0.2220531553030014,
+ "learning_rate": 0.0006,
+ "loss": 3.653268814086914,
+ "step": 2603
+ },
+ {
+ "epoch": 36.16775884665793,
+ "grad_norm": 0.21605174243450165,
+ "learning_rate": 0.0006,
+ "loss": 3.6791329383850098,
+ "step": 2604
+ },
+ {
+ "epoch": 36.18173875054609,
+ "grad_norm": 0.20932699739933014,
+ "learning_rate": 0.0006,
+ "loss": 3.6496856212615967,
+ "step": 2605
+ },
+ {
+ "epoch": 36.19571865443425,
+ "grad_norm": 0.20941385626792908,
+ "learning_rate": 0.0006,
+ "loss": 3.6445729732513428,
+ "step": 2606
+ },
+ {
+ "epoch": 36.20969855832241,
+ "grad_norm": 0.1987197995185852,
+ "learning_rate": 0.0006,
+ "loss": 3.6481809616088867,
+ "step": 2607
+ },
+ {
+ "epoch": 36.22367846221057,
+ "grad_norm": 0.19054439663887024,
+ "learning_rate": 0.0006,
+ "loss": 3.66894268989563,
+ "step": 2608
+ },
+ {
+ "epoch": 36.237658366098735,
+ "grad_norm": 0.19940806925296783,
+ "learning_rate": 0.0006,
+ "loss": 3.7123427391052246,
+ "step": 2609
+ },
+ {
+ "epoch": 36.25163826998689,
+ "grad_norm": 0.22157685458660126,
+ "learning_rate": 0.0006,
+ "loss": 3.6707541942596436,
+ "step": 2610
+ },
+ {
+ "epoch": 36.265618173875055,
+ "grad_norm": 0.2362316995859146,
+ "learning_rate": 0.0006,
+ "loss": 3.6906795501708984,
+ "step": 2611
+ },
+ {
+ "epoch": 36.27959807776322,
+ "grad_norm": 0.24560341238975525,
+ "learning_rate": 0.0006,
+ "loss": 3.668379783630371,
+ "step": 2612
+ },
+ {
+ "epoch": 36.293577981651374,
+ "grad_norm": 0.22814054787158966,
+ "learning_rate": 0.0006,
+ "loss": 3.665527820587158,
+ "step": 2613
+ },
+ {
+ "epoch": 36.30755788553954,
+ "grad_norm": 0.2156696617603302,
+ "learning_rate": 0.0006,
+ "loss": 3.673835277557373,
+ "step": 2614
+ },
+ {
+ "epoch": 36.3215377894277,
+ "grad_norm": 0.20152772963047028,
+ "learning_rate": 0.0006,
+ "loss": 3.6512670516967773,
+ "step": 2615
+ },
+ {
+ "epoch": 36.33551769331586,
+ "grad_norm": 0.22466860711574554,
+ "learning_rate": 0.0006,
+ "loss": 3.6877706050872803,
+ "step": 2616
+ },
+ {
+ "epoch": 36.34949759720402,
+ "grad_norm": 0.21688112616539001,
+ "learning_rate": 0.0006,
+ "loss": 3.6895859241485596,
+ "step": 2617
+ },
+ {
+ "epoch": 36.36347750109218,
+ "grad_norm": 0.19836577773094177,
+ "learning_rate": 0.0006,
+ "loss": 3.6658992767333984,
+ "step": 2618
+ },
+ {
+ "epoch": 36.37745740498034,
+ "grad_norm": 0.1995069831609726,
+ "learning_rate": 0.0006,
+ "loss": 3.677614450454712,
+ "step": 2619
+ },
+ {
+ "epoch": 36.391437308868504,
+ "grad_norm": 0.21234792470932007,
+ "learning_rate": 0.0006,
+ "loss": 3.6971967220306396,
+ "step": 2620
+ },
+ {
+ "epoch": 36.40541721275666,
+ "grad_norm": 0.20898285508155823,
+ "learning_rate": 0.0006,
+ "loss": 3.6936516761779785,
+ "step": 2621
+ },
+ {
+ "epoch": 36.419397116644824,
+ "grad_norm": 0.2115008533000946,
+ "learning_rate": 0.0006,
+ "loss": 3.6674065589904785,
+ "step": 2622
+ },
+ {
+ "epoch": 36.43337702053299,
+ "grad_norm": 0.2041143774986267,
+ "learning_rate": 0.0006,
+ "loss": 3.6455483436584473,
+ "step": 2623
+ },
+ {
+ "epoch": 36.44735692442114,
+ "grad_norm": 0.1966932713985443,
+ "learning_rate": 0.0006,
+ "loss": 3.6938109397888184,
+ "step": 2624
+ },
+ {
+ "epoch": 36.46133682830931,
+ "grad_norm": 0.20062223076820374,
+ "learning_rate": 0.0006,
+ "loss": 3.6775765419006348,
+ "step": 2625
+ },
+ {
+ "epoch": 36.47531673219746,
+ "grad_norm": 0.20610390603542328,
+ "learning_rate": 0.0006,
+ "loss": 3.6835384368896484,
+ "step": 2626
+ },
+ {
+ "epoch": 36.489296636085626,
+ "grad_norm": 0.20481473207473755,
+ "learning_rate": 0.0006,
+ "loss": 3.6794047355651855,
+ "step": 2627
+ },
+ {
+ "epoch": 36.50327653997379,
+ "grad_norm": 0.18964581191539764,
+ "learning_rate": 0.0006,
+ "loss": 3.7035841941833496,
+ "step": 2628
+ },
+ {
+ "epoch": 36.517256443861946,
+ "grad_norm": 0.2029343545436859,
+ "learning_rate": 0.0006,
+ "loss": 3.6667590141296387,
+ "step": 2629
+ },
+ {
+ "epoch": 36.53123634775011,
+ "grad_norm": 0.23656968772411346,
+ "learning_rate": 0.0006,
+ "loss": 3.6974546909332275,
+ "step": 2630
+ },
+ {
+ "epoch": 36.54521625163827,
+ "grad_norm": 0.23401431739330292,
+ "learning_rate": 0.0006,
+ "loss": 3.668936252593994,
+ "step": 2631
+ },
+ {
+ "epoch": 36.55919615552643,
+ "grad_norm": 0.22258102893829346,
+ "learning_rate": 0.0006,
+ "loss": 3.667977809906006,
+ "step": 2632
+ },
+ {
+ "epoch": 36.57317605941459,
+ "grad_norm": 0.20849554240703583,
+ "learning_rate": 0.0006,
+ "loss": 3.6674845218658447,
+ "step": 2633
+ },
+ {
+ "epoch": 36.58715596330275,
+ "grad_norm": 0.20684309303760529,
+ "learning_rate": 0.0006,
+ "loss": 3.6828644275665283,
+ "step": 2634
+ },
+ {
+ "epoch": 36.60113586719091,
+ "grad_norm": 0.19114233553409576,
+ "learning_rate": 0.0006,
+ "loss": 3.7084832191467285,
+ "step": 2635
+ },
+ {
+ "epoch": 36.615115771079076,
+ "grad_norm": 0.20382429659366608,
+ "learning_rate": 0.0006,
+ "loss": 3.68354868888855,
+ "step": 2636
+ },
+ {
+ "epoch": 36.62909567496723,
+ "grad_norm": 0.22526590526103973,
+ "learning_rate": 0.0006,
+ "loss": 3.684112310409546,
+ "step": 2637
+ },
+ {
+ "epoch": 36.643075578855395,
+ "grad_norm": 0.20735391974449158,
+ "learning_rate": 0.0006,
+ "loss": 3.67702054977417,
+ "step": 2638
+ },
+ {
+ "epoch": 36.65705548274356,
+ "grad_norm": 0.18549653887748718,
+ "learning_rate": 0.0006,
+ "loss": 3.6840810775756836,
+ "step": 2639
+ },
+ {
+ "epoch": 36.671035386631715,
+ "grad_norm": 0.1805262714624405,
+ "learning_rate": 0.0006,
+ "loss": 3.688119411468506,
+ "step": 2640
+ },
+ {
+ "epoch": 36.68501529051988,
+ "grad_norm": 0.17545704543590546,
+ "learning_rate": 0.0006,
+ "loss": 3.6477861404418945,
+ "step": 2641
+ },
+ {
+ "epoch": 36.69899519440804,
+ "grad_norm": 0.1772221326828003,
+ "learning_rate": 0.0006,
+ "loss": 3.6935806274414062,
+ "step": 2642
+ },
+ {
+ "epoch": 36.7129750982962,
+ "grad_norm": 0.18701671063899994,
+ "learning_rate": 0.0006,
+ "loss": 3.6820428371429443,
+ "step": 2643
+ },
+ {
+ "epoch": 36.72695500218436,
+ "grad_norm": 0.2057863473892212,
+ "learning_rate": 0.0006,
+ "loss": 3.669762134552002,
+ "step": 2644
+ },
+ {
+ "epoch": 36.74093490607252,
+ "grad_norm": 0.2565848231315613,
+ "learning_rate": 0.0006,
+ "loss": 3.717599391937256,
+ "step": 2645
+ },
+ {
+ "epoch": 36.75491480996068,
+ "grad_norm": 0.24362123012542725,
+ "learning_rate": 0.0006,
+ "loss": 3.671900987625122,
+ "step": 2646
+ },
+ {
+ "epoch": 36.768894713848844,
+ "grad_norm": 0.19606009125709534,
+ "learning_rate": 0.0006,
+ "loss": 3.6782546043395996,
+ "step": 2647
+ },
+ {
+ "epoch": 36.782874617737,
+ "grad_norm": 0.1948748379945755,
+ "learning_rate": 0.0006,
+ "loss": 3.6823501586914062,
+ "step": 2648
+ },
+ {
+ "epoch": 36.796854521625164,
+ "grad_norm": 0.22289852797985077,
+ "learning_rate": 0.0006,
+ "loss": 3.693469762802124,
+ "step": 2649
+ },
+ {
+ "epoch": 36.81083442551333,
+ "grad_norm": 0.24751701951026917,
+ "learning_rate": 0.0006,
+ "loss": 3.700678825378418,
+ "step": 2650
+ },
+ {
+ "epoch": 36.824814329401484,
+ "grad_norm": 0.28663966059684753,
+ "learning_rate": 0.0006,
+ "loss": 3.6960878372192383,
+ "step": 2651
+ },
+ {
+ "epoch": 36.83879423328965,
+ "grad_norm": 0.3288552165031433,
+ "learning_rate": 0.0006,
+ "loss": 3.7255043983459473,
+ "step": 2652
+ },
+ {
+ "epoch": 36.8527741371778,
+ "grad_norm": 0.3555443286895752,
+ "learning_rate": 0.0006,
+ "loss": 3.725308418273926,
+ "step": 2653
+ },
+ {
+ "epoch": 36.86675404106597,
+ "grad_norm": 0.3204147219657898,
+ "learning_rate": 0.0006,
+ "loss": 3.7137985229492188,
+ "step": 2654
+ },
+ {
+ "epoch": 36.88073394495413,
+ "grad_norm": 0.2944706976413727,
+ "learning_rate": 0.0006,
+ "loss": 3.7032840251922607,
+ "step": 2655
+ },
+ {
+ "epoch": 36.89471384884229,
+ "grad_norm": 0.2845679223537445,
+ "learning_rate": 0.0006,
+ "loss": 3.6840004920959473,
+ "step": 2656
+ },
+ {
+ "epoch": 36.90869375273045,
+ "grad_norm": 0.2815704047679901,
+ "learning_rate": 0.0006,
+ "loss": 3.6958417892456055,
+ "step": 2657
+ },
+ {
+ "epoch": 36.92267365661861,
+ "grad_norm": 0.2733481228351593,
+ "learning_rate": 0.0006,
+ "loss": 3.677690029144287,
+ "step": 2658
+ },
+ {
+ "epoch": 36.93665356050677,
+ "grad_norm": 0.29572054743766785,
+ "learning_rate": 0.0006,
+ "loss": 3.6983718872070312,
+ "step": 2659
+ },
+ {
+ "epoch": 36.95063346439493,
+ "grad_norm": 0.2487923800945282,
+ "learning_rate": 0.0006,
+ "loss": 3.7041163444519043,
+ "step": 2660
+ },
+ {
+ "epoch": 36.964613368283096,
+ "grad_norm": 0.2541966438293457,
+ "learning_rate": 0.0006,
+ "loss": 3.7038979530334473,
+ "step": 2661
+ },
+ {
+ "epoch": 36.97859327217125,
+ "grad_norm": 0.2441335767507553,
+ "learning_rate": 0.0006,
+ "loss": 3.717966079711914,
+ "step": 2662
+ },
+ {
+ "epoch": 36.992573176059416,
+ "grad_norm": 0.2304554283618927,
+ "learning_rate": 0.0006,
+ "loss": 3.671098232269287,
+ "step": 2663
+ },
+ {
+ "epoch": 37.0,
+ "grad_norm": 0.2346591204404831,
+ "learning_rate": 0.0006,
+ "loss": 3.680298089981079,
+ "step": 2664
+ },
+ {
+ "epoch": 37.0,
+ "eval_loss": 3.9944777488708496,
+ "eval_runtime": 43.9862,
+ "eval_samples_per_second": 55.517,
+ "eval_steps_per_second": 3.478,
+ "step": 2664
+ },
+ {
+ "epoch": 37.01397990388816,
+ "grad_norm": 0.22970618307590485,
+ "learning_rate": 0.0006,
+ "loss": 3.6835923194885254,
+ "step": 2665
+ },
+ {
+ "epoch": 37.02795980777632,
+ "grad_norm": 0.25463759899139404,
+ "learning_rate": 0.0006,
+ "loss": 3.658339023590088,
+ "step": 2666
+ },
+ {
+ "epoch": 37.04193971166448,
+ "grad_norm": 0.2520577311515808,
+ "learning_rate": 0.0006,
+ "loss": 3.6275506019592285,
+ "step": 2667
+ },
+ {
+ "epoch": 37.05591961555265,
+ "grad_norm": 0.22698813676834106,
+ "learning_rate": 0.0006,
+ "loss": 3.65043568611145,
+ "step": 2668
+ },
+ {
+ "epoch": 37.0698995194408,
+ "grad_norm": 0.21133972704410553,
+ "learning_rate": 0.0006,
+ "loss": 3.6262078285217285,
+ "step": 2669
+ },
+ {
+ "epoch": 37.083879423328966,
+ "grad_norm": 0.21940460801124573,
+ "learning_rate": 0.0006,
+ "loss": 3.6709489822387695,
+ "step": 2670
+ },
+ {
+ "epoch": 37.09785932721712,
+ "grad_norm": 0.21897517144680023,
+ "learning_rate": 0.0006,
+ "loss": 3.6621508598327637,
+ "step": 2671
+ },
+ {
+ "epoch": 37.111839231105286,
+ "grad_norm": 0.2270219624042511,
+ "learning_rate": 0.0006,
+ "loss": 3.6334924697875977,
+ "step": 2672
+ },
+ {
+ "epoch": 37.12581913499345,
+ "grad_norm": 0.22082042694091797,
+ "learning_rate": 0.0006,
+ "loss": 3.662209987640381,
+ "step": 2673
+ },
+ {
+ "epoch": 37.139799038881605,
+ "grad_norm": 0.19931960105895996,
+ "learning_rate": 0.0006,
+ "loss": 3.6655359268188477,
+ "step": 2674
+ },
+ {
+ "epoch": 37.15377894276977,
+ "grad_norm": 0.21451307833194733,
+ "learning_rate": 0.0006,
+ "loss": 3.656287670135498,
+ "step": 2675
+ },
+ {
+ "epoch": 37.16775884665793,
+ "grad_norm": 0.2131514698266983,
+ "learning_rate": 0.0006,
+ "loss": 3.635054111480713,
+ "step": 2676
+ },
+ {
+ "epoch": 37.18173875054609,
+ "grad_norm": 0.20425808429718018,
+ "learning_rate": 0.0006,
+ "loss": 3.67653226852417,
+ "step": 2677
+ },
+ {
+ "epoch": 37.19571865443425,
+ "grad_norm": 0.19423379004001617,
+ "learning_rate": 0.0006,
+ "loss": 3.6827316284179688,
+ "step": 2678
+ },
+ {
+ "epoch": 37.20969855832241,
+ "grad_norm": 0.1954883486032486,
+ "learning_rate": 0.0006,
+ "loss": 3.658092498779297,
+ "step": 2679
+ },
+ {
+ "epoch": 37.22367846221057,
+ "grad_norm": 0.21153928339481354,
+ "learning_rate": 0.0006,
+ "loss": 3.6675186157226562,
+ "step": 2680
+ },
+ {
+ "epoch": 37.237658366098735,
+ "grad_norm": 0.2032976895570755,
+ "learning_rate": 0.0006,
+ "loss": 3.6725759506225586,
+ "step": 2681
+ },
+ {
+ "epoch": 37.25163826998689,
+ "grad_norm": 0.19839346408843994,
+ "learning_rate": 0.0006,
+ "loss": 3.660851240158081,
+ "step": 2682
+ },
+ {
+ "epoch": 37.265618173875055,
+ "grad_norm": 0.1884699910879135,
+ "learning_rate": 0.0006,
+ "loss": 3.6653623580932617,
+ "step": 2683
+ },
+ {
+ "epoch": 37.27959807776322,
+ "grad_norm": 0.19558705389499664,
+ "learning_rate": 0.0006,
+ "loss": 3.648016929626465,
+ "step": 2684
+ },
+ {
+ "epoch": 37.293577981651374,
+ "grad_norm": 0.19453682005405426,
+ "learning_rate": 0.0006,
+ "loss": 3.6804773807525635,
+ "step": 2685
+ },
+ {
+ "epoch": 37.30755788553954,
+ "grad_norm": 0.1901177167892456,
+ "learning_rate": 0.0006,
+ "loss": 3.6533353328704834,
+ "step": 2686
+ },
+ {
+ "epoch": 37.3215377894277,
+ "grad_norm": 0.19425596296787262,
+ "learning_rate": 0.0006,
+ "loss": 3.665745735168457,
+ "step": 2687
+ },
+ {
+ "epoch": 37.33551769331586,
+ "grad_norm": 0.17583411931991577,
+ "learning_rate": 0.0006,
+ "loss": 3.679112434387207,
+ "step": 2688
+ },
+ {
+ "epoch": 37.34949759720402,
+ "grad_norm": 0.19667863845825195,
+ "learning_rate": 0.0006,
+ "loss": 3.6650352478027344,
+ "step": 2689
+ },
+ {
+ "epoch": 37.36347750109218,
+ "grad_norm": 0.22803270816802979,
+ "learning_rate": 0.0006,
+ "loss": 3.6658573150634766,
+ "step": 2690
+ },
+ {
+ "epoch": 37.37745740498034,
+ "grad_norm": 0.20589298009872437,
+ "learning_rate": 0.0006,
+ "loss": 3.6587300300598145,
+ "step": 2691
+ },
+ {
+ "epoch": 37.391437308868504,
+ "grad_norm": 0.1946951299905777,
+ "learning_rate": 0.0006,
+ "loss": 3.6515092849731445,
+ "step": 2692
+ },
+ {
+ "epoch": 37.40541721275666,
+ "grad_norm": 0.19029614329338074,
+ "learning_rate": 0.0006,
+ "loss": 3.6383113861083984,
+ "step": 2693
+ },
+ {
+ "epoch": 37.419397116644824,
+ "grad_norm": 0.1944548338651657,
+ "learning_rate": 0.0006,
+ "loss": 3.7017135620117188,
+ "step": 2694
+ },
+ {
+ "epoch": 37.43337702053299,
+ "grad_norm": 0.19482386112213135,
+ "learning_rate": 0.0006,
+ "loss": 3.6791775226593018,
+ "step": 2695
+ },
+ {
+ "epoch": 37.44735692442114,
+ "grad_norm": 0.23276680707931519,
+ "learning_rate": 0.0006,
+ "loss": 3.672245979309082,
+ "step": 2696
+ },
+ {
+ "epoch": 37.46133682830931,
+ "grad_norm": 0.22267542779445648,
+ "learning_rate": 0.0006,
+ "loss": 3.683380365371704,
+ "step": 2697
+ },
+ {
+ "epoch": 37.47531673219746,
+ "grad_norm": 0.1942203938961029,
+ "learning_rate": 0.0006,
+ "loss": 3.6760759353637695,
+ "step": 2698
+ },
+ {
+ "epoch": 37.489296636085626,
+ "grad_norm": 0.21212540566921234,
+ "learning_rate": 0.0006,
+ "loss": 3.660719633102417,
+ "step": 2699
+ },
+ {
+ "epoch": 37.50327653997379,
+ "grad_norm": 0.2365427315235138,
+ "learning_rate": 0.0006,
+ "loss": 3.6727194786071777,
+ "step": 2700
+ },
+ {
+ "epoch": 37.517256443861946,
+ "grad_norm": 0.2379675805568695,
+ "learning_rate": 0.0006,
+ "loss": 3.6691598892211914,
+ "step": 2701
+ },
+ {
+ "epoch": 37.53123634775011,
+ "grad_norm": 0.22142401337623596,
+ "learning_rate": 0.0006,
+ "loss": 3.6882128715515137,
+ "step": 2702
+ },
+ {
+ "epoch": 37.54521625163827,
+ "grad_norm": 0.19993607699871063,
+ "learning_rate": 0.0006,
+ "loss": 3.6651787757873535,
+ "step": 2703
+ },
+ {
+ "epoch": 37.55919615552643,
+ "grad_norm": 0.19934895634651184,
+ "learning_rate": 0.0006,
+ "loss": 3.6680638790130615,
+ "step": 2704
+ },
+ {
+ "epoch": 37.57317605941459,
+ "grad_norm": 0.21202369034290314,
+ "learning_rate": 0.0006,
+ "loss": 3.697615623474121,
+ "step": 2705
+ },
+ {
+ "epoch": 37.58715596330275,
+ "grad_norm": 0.1994577795267105,
+ "learning_rate": 0.0006,
+ "loss": 3.688243865966797,
+ "step": 2706
+ },
+ {
+ "epoch": 37.60113586719091,
+ "grad_norm": 0.20365118980407715,
+ "learning_rate": 0.0006,
+ "loss": 3.6615519523620605,
+ "step": 2707
+ },
+ {
+ "epoch": 37.615115771079076,
+ "grad_norm": 0.22466035187244415,
+ "learning_rate": 0.0006,
+ "loss": 3.703111171722412,
+ "step": 2708
+ },
+ {
+ "epoch": 37.62909567496723,
+ "grad_norm": 0.21140407025814056,
+ "learning_rate": 0.0006,
+ "loss": 3.6744728088378906,
+ "step": 2709
+ },
+ {
+ "epoch": 37.643075578855395,
+ "grad_norm": 0.22220195829868317,
+ "learning_rate": 0.0006,
+ "loss": 3.671501874923706,
+ "step": 2710
+ },
+ {
+ "epoch": 37.65705548274356,
+ "grad_norm": 0.23279480636119843,
+ "learning_rate": 0.0006,
+ "loss": 3.6962859630584717,
+ "step": 2711
+ },
+ {
+ "epoch": 37.671035386631715,
+ "grad_norm": 0.23284408450126648,
+ "learning_rate": 0.0006,
+ "loss": 3.670231342315674,
+ "step": 2712
+ },
+ {
+ "epoch": 37.68501529051988,
+ "grad_norm": 0.21935738623142242,
+ "learning_rate": 0.0006,
+ "loss": 3.6908650398254395,
+ "step": 2713
+ },
+ {
+ "epoch": 37.69899519440804,
+ "grad_norm": 0.2072262167930603,
+ "learning_rate": 0.0006,
+ "loss": 3.7204506397247314,
+ "step": 2714
+ },
+ {
+ "epoch": 37.7129750982962,
+ "grad_norm": 0.22547709941864014,
+ "learning_rate": 0.0006,
+ "loss": 3.6740894317626953,
+ "step": 2715
+ },
+ {
+ "epoch": 37.72695500218436,
+ "grad_norm": 0.2460414469242096,
+ "learning_rate": 0.0006,
+ "loss": 3.6938390731811523,
+ "step": 2716
+ },
+ {
+ "epoch": 37.74093490607252,
+ "grad_norm": 0.24756456911563873,
+ "learning_rate": 0.0006,
+ "loss": 3.692173480987549,
+ "step": 2717
+ },
+ {
+ "epoch": 37.75491480996068,
+ "grad_norm": 0.20149244368076324,
+ "learning_rate": 0.0006,
+ "loss": 3.6677675247192383,
+ "step": 2718
+ },
+ {
+ "epoch": 37.768894713848844,
+ "grad_norm": 0.19834814965724945,
+ "learning_rate": 0.0006,
+ "loss": 3.6717336177825928,
+ "step": 2719
+ },
+ {
+ "epoch": 37.782874617737,
+ "grad_norm": 0.22929978370666504,
+ "learning_rate": 0.0006,
+ "loss": 3.6818275451660156,
+ "step": 2720
+ },
+ {
+ "epoch": 37.796854521625164,
+ "grad_norm": 0.23674434423446655,
+ "learning_rate": 0.0006,
+ "loss": 3.689767360687256,
+ "step": 2721
+ },
+ {
+ "epoch": 37.81083442551333,
+ "grad_norm": 0.22798952460289001,
+ "learning_rate": 0.0006,
+ "loss": 3.6928915977478027,
+ "step": 2722
+ },
+ {
+ "epoch": 37.824814329401484,
+ "grad_norm": 0.2270302027463913,
+ "learning_rate": 0.0006,
+ "loss": 3.6884233951568604,
+ "step": 2723
+ },
+ {
+ "epoch": 37.83879423328965,
+ "grad_norm": 0.23563820123672485,
+ "learning_rate": 0.0006,
+ "loss": 3.6962456703186035,
+ "step": 2724
+ },
+ {
+ "epoch": 37.8527741371778,
+ "grad_norm": 0.2240045815706253,
+ "learning_rate": 0.0006,
+ "loss": 3.6985082626342773,
+ "step": 2725
+ },
+ {
+ "epoch": 37.86675404106597,
+ "grad_norm": 0.21541155874729156,
+ "learning_rate": 0.0006,
+ "loss": 3.6960105895996094,
+ "step": 2726
+ },
+ {
+ "epoch": 37.88073394495413,
+ "grad_norm": 0.23257222771644592,
+ "learning_rate": 0.0006,
+ "loss": 3.667404890060425,
+ "step": 2727
+ },
+ {
+ "epoch": 37.89471384884229,
+ "grad_norm": 0.226792573928833,
+ "learning_rate": 0.0006,
+ "loss": 3.6549744606018066,
+ "step": 2728
+ },
+ {
+ "epoch": 37.90869375273045,
+ "grad_norm": 0.18993401527404785,
+ "learning_rate": 0.0006,
+ "loss": 3.6772334575653076,
+ "step": 2729
+ },
+ {
+ "epoch": 37.92267365661861,
+ "grad_norm": 0.20936095714569092,
+ "learning_rate": 0.0006,
+ "loss": 3.671116352081299,
+ "step": 2730
+ },
+ {
+ "epoch": 37.93665356050677,
+ "grad_norm": 0.2203974425792694,
+ "learning_rate": 0.0006,
+ "loss": 3.6549739837646484,
+ "step": 2731
+ },
+ {
+ "epoch": 37.95063346439493,
+ "grad_norm": 0.19504620134830475,
+ "learning_rate": 0.0006,
+ "loss": 3.6755447387695312,
+ "step": 2732
+ },
+ {
+ "epoch": 37.964613368283096,
+ "grad_norm": 0.2025984674692154,
+ "learning_rate": 0.0006,
+ "loss": 3.678955554962158,
+ "step": 2733
+ },
+ {
+ "epoch": 37.97859327217125,
+ "grad_norm": 0.21556107699871063,
+ "learning_rate": 0.0006,
+ "loss": 3.6680502891540527,
+ "step": 2734
+ },
+ {
+ "epoch": 37.992573176059416,
+ "grad_norm": 0.21011291444301605,
+ "learning_rate": 0.0006,
+ "loss": 3.672039031982422,
+ "step": 2735
+ },
+ {
+ "epoch": 38.0,
+ "grad_norm": 0.23710957169532776,
+ "learning_rate": 0.0006,
+ "loss": 3.6326794624328613,
+ "step": 2736
+ },
+ {
+ "epoch": 38.0,
+ "eval_loss": 3.990501880645752,
+ "eval_runtime": 43.8951,
+ "eval_samples_per_second": 55.633,
+ "eval_steps_per_second": 3.486,
+ "step": 2736
+ },
+ {
+ "epoch": 38.01397990388816,
+ "grad_norm": 0.20711326599121094,
+ "learning_rate": 0.0006,
+ "loss": 3.6364657878875732,
+ "step": 2737
+ },
+ {
+ "epoch": 38.02795980777632,
+ "grad_norm": 0.2250880002975464,
+ "learning_rate": 0.0006,
+ "loss": 3.637646436691284,
+ "step": 2738
+ },
+ {
+ "epoch": 38.04193971166448,
+ "grad_norm": 0.2448352724313736,
+ "learning_rate": 0.0006,
+ "loss": 3.63557767868042,
+ "step": 2739
+ },
+ {
+ "epoch": 38.05591961555265,
+ "grad_norm": 0.23031368851661682,
+ "learning_rate": 0.0006,
+ "loss": 3.627117395401001,
+ "step": 2740
+ },
+ {
+ "epoch": 38.0698995194408,
+ "grad_norm": 0.2045450210571289,
+ "learning_rate": 0.0006,
+ "loss": 3.6594958305358887,
+ "step": 2741
+ },
+ {
+ "epoch": 38.083879423328966,
+ "grad_norm": 0.21253496408462524,
+ "learning_rate": 0.0006,
+ "loss": 3.65494441986084,
+ "step": 2742
+ },
+ {
+ "epoch": 38.09785932721712,
+ "grad_norm": 0.20196112990379333,
+ "learning_rate": 0.0006,
+ "loss": 3.645289421081543,
+ "step": 2743
+ },
+ {
+ "epoch": 38.111839231105286,
+ "grad_norm": 0.20258229970932007,
+ "learning_rate": 0.0006,
+ "loss": 3.6698505878448486,
+ "step": 2744
+ },
+ {
+ "epoch": 38.12581913499345,
+ "grad_norm": 0.22182606160640717,
+ "learning_rate": 0.0006,
+ "loss": 3.6427698135375977,
+ "step": 2745
+ },
+ {
+ "epoch": 38.139799038881605,
+ "grad_norm": 0.21281519532203674,
+ "learning_rate": 0.0006,
+ "loss": 3.668337345123291,
+ "step": 2746
+ },
+ {
+ "epoch": 38.15377894276977,
+ "grad_norm": 0.21680216491222382,
+ "learning_rate": 0.0006,
+ "loss": 3.6362109184265137,
+ "step": 2747
+ },
+ {
+ "epoch": 38.16775884665793,
+ "grad_norm": 0.24396903812885284,
+ "learning_rate": 0.0006,
+ "loss": 3.660510540008545,
+ "step": 2748
+ },
+ {
+ "epoch": 38.18173875054609,
+ "grad_norm": 0.2546434700489044,
+ "learning_rate": 0.0006,
+ "loss": 3.6562418937683105,
+ "step": 2749
+ },
+ {
+ "epoch": 38.19571865443425,
+ "grad_norm": 0.22705447673797607,
+ "learning_rate": 0.0006,
+ "loss": 3.6801514625549316,
+ "step": 2750
+ },
+ {
+ "epoch": 38.20969855832241,
+ "grad_norm": 0.21516330540180206,
+ "learning_rate": 0.0006,
+ "loss": 3.6633429527282715,
+ "step": 2751
+ },
+ {
+ "epoch": 38.22367846221057,
+ "grad_norm": 0.20895853638648987,
+ "learning_rate": 0.0006,
+ "loss": 3.619896411895752,
+ "step": 2752
+ },
+ {
+ "epoch": 38.237658366098735,
+ "grad_norm": 0.21183325350284576,
+ "learning_rate": 0.0006,
+ "loss": 3.639491558074951,
+ "step": 2753
+ },
+ {
+ "epoch": 38.25163826998689,
+ "grad_norm": 0.21439522504806519,
+ "learning_rate": 0.0006,
+ "loss": 3.671931028366089,
+ "step": 2754
+ },
+ {
+ "epoch": 38.265618173875055,
+ "grad_norm": 0.2017785906791687,
+ "learning_rate": 0.0006,
+ "loss": 3.639533519744873,
+ "step": 2755
+ },
+ {
+ "epoch": 38.27959807776322,
+ "grad_norm": 0.20015068352222443,
+ "learning_rate": 0.0006,
+ "loss": 3.654262065887451,
+ "step": 2756
+ },
+ {
+ "epoch": 38.293577981651374,
+ "grad_norm": 0.21518948674201965,
+ "learning_rate": 0.0006,
+ "loss": 3.649919033050537,
+ "step": 2757
+ },
+ {
+ "epoch": 38.30755788553954,
+ "grad_norm": 0.21994580328464508,
+ "learning_rate": 0.0006,
+ "loss": 3.6756131649017334,
+ "step": 2758
+ },
+ {
+ "epoch": 38.3215377894277,
+ "grad_norm": 0.2053978443145752,
+ "learning_rate": 0.0006,
+ "loss": 3.651520252227783,
+ "step": 2759
+ },
+ {
+ "epoch": 38.33551769331586,
+ "grad_norm": 0.2066337615251541,
+ "learning_rate": 0.0006,
+ "loss": 3.6404507160186768,
+ "step": 2760
+ },
+ {
+ "epoch": 38.34949759720402,
+ "grad_norm": 0.20898301899433136,
+ "learning_rate": 0.0006,
+ "loss": 3.637200355529785,
+ "step": 2761
+ },
+ {
+ "epoch": 38.36347750109218,
+ "grad_norm": 0.19212259352207184,
+ "learning_rate": 0.0006,
+ "loss": 3.68394136428833,
+ "step": 2762
+ },
+ {
+ "epoch": 38.37745740498034,
+ "grad_norm": 0.2011883556842804,
+ "learning_rate": 0.0006,
+ "loss": 3.6494975090026855,
+ "step": 2763
+ },
+ {
+ "epoch": 38.391437308868504,
+ "grad_norm": 0.23072998225688934,
+ "learning_rate": 0.0006,
+ "loss": 3.6644320487976074,
+ "step": 2764
+ },
+ {
+ "epoch": 38.40541721275666,
+ "grad_norm": 0.2195347547531128,
+ "learning_rate": 0.0006,
+ "loss": 3.6666269302368164,
+ "step": 2765
+ },
+ {
+ "epoch": 38.419397116644824,
+ "grad_norm": 0.19820117950439453,
+ "learning_rate": 0.0006,
+ "loss": 3.690683364868164,
+ "step": 2766
+ },
+ {
+ "epoch": 38.43337702053299,
+ "grad_norm": 0.20381149649620056,
+ "learning_rate": 0.0006,
+ "loss": 3.6647756099700928,
+ "step": 2767
+ },
+ {
+ "epoch": 38.44735692442114,
+ "grad_norm": 0.19477297365665436,
+ "learning_rate": 0.0006,
+ "loss": 3.6419155597686768,
+ "step": 2768
+ },
+ {
+ "epoch": 38.46133682830931,
+ "grad_norm": 0.20118845999240875,
+ "learning_rate": 0.0006,
+ "loss": 3.678511142730713,
+ "step": 2769
+ },
+ {
+ "epoch": 38.47531673219746,
+ "grad_norm": 0.19538167119026184,
+ "learning_rate": 0.0006,
+ "loss": 3.632112503051758,
+ "step": 2770
+ },
+ {
+ "epoch": 38.489296636085626,
+ "grad_norm": 0.18136411905288696,
+ "learning_rate": 0.0006,
+ "loss": 3.6631078720092773,
+ "step": 2771
+ },
+ {
+ "epoch": 38.50327653997379,
+ "grad_norm": 0.1993526667356491,
+ "learning_rate": 0.0006,
+ "loss": 3.6800379753112793,
+ "step": 2772
+ },
+ {
+ "epoch": 38.517256443861946,
+ "grad_norm": 0.21409109234809875,
+ "learning_rate": 0.0006,
+ "loss": 3.6355738639831543,
+ "step": 2773
+ },
+ {
+ "epoch": 38.53123634775011,
+ "grad_norm": 0.20932911336421967,
+ "learning_rate": 0.0006,
+ "loss": 3.6639811992645264,
+ "step": 2774
+ },
+ {
+ "epoch": 38.54521625163827,
+ "grad_norm": 0.22266243398189545,
+ "learning_rate": 0.0006,
+ "loss": 3.6927733421325684,
+ "step": 2775
+ },
+ {
+ "epoch": 38.55919615552643,
+ "grad_norm": 0.22916539013385773,
+ "learning_rate": 0.0006,
+ "loss": 3.6381587982177734,
+ "step": 2776
+ },
+ {
+ "epoch": 38.57317605941459,
+ "grad_norm": 0.21507245302200317,
+ "learning_rate": 0.0006,
+ "loss": 3.6724753379821777,
+ "step": 2777
+ },
+ {
+ "epoch": 38.58715596330275,
+ "grad_norm": 0.21132487058639526,
+ "learning_rate": 0.0006,
+ "loss": 3.68450927734375,
+ "step": 2778
+ },
+ {
+ "epoch": 38.60113586719091,
+ "grad_norm": 0.2323923259973526,
+ "learning_rate": 0.0006,
+ "loss": 3.6917476654052734,
+ "step": 2779
+ },
+ {
+ "epoch": 38.615115771079076,
+ "grad_norm": 0.2862907648086548,
+ "learning_rate": 0.0006,
+ "loss": 3.6832518577575684,
+ "step": 2780
+ },
+ {
+ "epoch": 38.62909567496723,
+ "grad_norm": 0.28132742643356323,
+ "learning_rate": 0.0006,
+ "loss": 3.6619668006896973,
+ "step": 2781
+ },
+ {
+ "epoch": 38.643075578855395,
+ "grad_norm": 0.24933350086212158,
+ "learning_rate": 0.0006,
+ "loss": 3.6342711448669434,
+ "step": 2782
+ },
+ {
+ "epoch": 38.65705548274356,
+ "grad_norm": 0.23482646048069,
+ "learning_rate": 0.0006,
+ "loss": 3.667548656463623,
+ "step": 2783
+ },
+ {
+ "epoch": 38.671035386631715,
+ "grad_norm": 0.2529793083667755,
+ "learning_rate": 0.0006,
+ "loss": 3.6613709926605225,
+ "step": 2784
+ },
+ {
+ "epoch": 38.68501529051988,
+ "grad_norm": 0.2306097447872162,
+ "learning_rate": 0.0006,
+ "loss": 3.653153419494629,
+ "step": 2785
+ },
+ {
+ "epoch": 38.69899519440804,
+ "grad_norm": 0.21787869930267334,
+ "learning_rate": 0.0006,
+ "loss": 3.6991848945617676,
+ "step": 2786
+ },
+ {
+ "epoch": 38.7129750982962,
+ "grad_norm": 0.24818190932273865,
+ "learning_rate": 0.0006,
+ "loss": 3.664022445678711,
+ "step": 2787
+ },
+ {
+ "epoch": 38.72695500218436,
+ "grad_norm": 0.23205995559692383,
+ "learning_rate": 0.0006,
+ "loss": 3.656064987182617,
+ "step": 2788
+ },
+ {
+ "epoch": 38.74093490607252,
+ "grad_norm": 0.2268102467060089,
+ "learning_rate": 0.0006,
+ "loss": 3.678421974182129,
+ "step": 2789
+ },
+ {
+ "epoch": 38.75491480996068,
+ "grad_norm": 0.22549907863140106,
+ "learning_rate": 0.0006,
+ "loss": 3.6483302116394043,
+ "step": 2790
+ },
+ {
+ "epoch": 38.768894713848844,
+ "grad_norm": 0.2293119877576828,
+ "learning_rate": 0.0006,
+ "loss": 3.646825075149536,
+ "step": 2791
+ },
+ {
+ "epoch": 38.782874617737,
+ "grad_norm": 0.21879418194293976,
+ "learning_rate": 0.0006,
+ "loss": 3.682124614715576,
+ "step": 2792
+ },
+ {
+ "epoch": 38.796854521625164,
+ "grad_norm": 0.22012849152088165,
+ "learning_rate": 0.0006,
+ "loss": 3.6590089797973633,
+ "step": 2793
+ },
+ {
+ "epoch": 38.81083442551333,
+ "grad_norm": 0.2449142336845398,
+ "learning_rate": 0.0006,
+ "loss": 3.7053747177124023,
+ "step": 2794
+ },
+ {
+ "epoch": 38.824814329401484,
+ "grad_norm": 0.2677161395549774,
+ "learning_rate": 0.0006,
+ "loss": 3.666144371032715,
+ "step": 2795
+ },
+ {
+ "epoch": 38.83879423328965,
+ "grad_norm": 0.2654981315135956,
+ "learning_rate": 0.0006,
+ "loss": 3.637512683868408,
+ "step": 2796
+ },
+ {
+ "epoch": 38.8527741371778,
+ "grad_norm": 0.23169654607772827,
+ "learning_rate": 0.0006,
+ "loss": 3.6885948181152344,
+ "step": 2797
+ },
+ {
+ "epoch": 38.86675404106597,
+ "grad_norm": 0.22195108234882355,
+ "learning_rate": 0.0006,
+ "loss": 3.6597604751586914,
+ "step": 2798
+ },
+ {
+ "epoch": 38.88073394495413,
+ "grad_norm": 0.23703525960445404,
+ "learning_rate": 0.0006,
+ "loss": 3.6808712482452393,
+ "step": 2799
+ },
+ {
+ "epoch": 38.89471384884229,
+ "grad_norm": 0.24711088836193085,
+ "learning_rate": 0.0006,
+ "loss": 3.733792781829834,
+ "step": 2800
+ },
+ {
+ "epoch": 38.90869375273045,
+ "grad_norm": 0.216362863779068,
+ "learning_rate": 0.0006,
+ "loss": 3.670599937438965,
+ "step": 2801
+ },
+ {
+ "epoch": 38.92267365661861,
+ "grad_norm": 0.19483810663223267,
+ "learning_rate": 0.0006,
+ "loss": 3.6965198516845703,
+ "step": 2802
+ },
+ {
+ "epoch": 38.93665356050677,
+ "grad_norm": 0.1941208392381668,
+ "learning_rate": 0.0006,
+ "loss": 3.678022861480713,
+ "step": 2803
+ },
+ {
+ "epoch": 38.95063346439493,
+ "grad_norm": 0.1919465959072113,
+ "learning_rate": 0.0006,
+ "loss": 3.6763226985931396,
+ "step": 2804
+ },
+ {
+ "epoch": 38.964613368283096,
+ "grad_norm": 0.2003280073404312,
+ "learning_rate": 0.0006,
+ "loss": 3.670313835144043,
+ "step": 2805
+ },
+ {
+ "epoch": 38.97859327217125,
+ "grad_norm": 0.198478564620018,
+ "learning_rate": 0.0006,
+ "loss": 3.675569772720337,
+ "step": 2806
+ },
+ {
+ "epoch": 38.992573176059416,
+ "grad_norm": 0.23692303895950317,
+ "learning_rate": 0.0006,
+ "loss": 3.696561336517334,
+ "step": 2807
+ },
+ {
+ "epoch": 39.0,
+ "grad_norm": 0.3208145797252655,
+ "learning_rate": 0.0006,
+ "loss": 3.6791436672210693,
+ "step": 2808
+ },
+ {
+ "epoch": 39.0,
+ "eval_loss": 4.0079450607299805,
+ "eval_runtime": 43.8573,
+ "eval_samples_per_second": 55.681,
+ "eval_steps_per_second": 3.489,
+ "step": 2808
+ },
+ {
+ "epoch": 39.01397990388816,
+ "grad_norm": 0.28338733315467834,
+ "learning_rate": 0.0006,
+ "loss": 3.6277060508728027,
+ "step": 2809
+ },
+ {
+ "epoch": 39.02795980777632,
+ "grad_norm": 0.22057899832725525,
+ "learning_rate": 0.0006,
+ "loss": 3.6132822036743164,
+ "step": 2810
+ },
+ {
+ "epoch": 39.04193971166448,
+ "grad_norm": 0.20630282163619995,
+ "learning_rate": 0.0006,
+ "loss": 3.6143927574157715,
+ "step": 2811
+ },
+ {
+ "epoch": 39.05591961555265,
+ "grad_norm": 0.2178523689508438,
+ "learning_rate": 0.0006,
+ "loss": 3.6304664611816406,
+ "step": 2812
+ },
+ {
+ "epoch": 39.0698995194408,
+ "grad_norm": 0.19613824784755707,
+ "learning_rate": 0.0006,
+ "loss": 3.6137919425964355,
+ "step": 2813
+ },
+ {
+ "epoch": 39.083879423328966,
+ "grad_norm": 0.2047276794910431,
+ "learning_rate": 0.0006,
+ "loss": 3.6854846477508545,
+ "step": 2814
+ },
+ {
+ "epoch": 39.09785932721712,
+ "grad_norm": 0.20082715153694153,
+ "learning_rate": 0.0006,
+ "loss": 3.632091522216797,
+ "step": 2815
+ },
+ {
+ "epoch": 39.111839231105286,
+ "grad_norm": 0.21746563911437988,
+ "learning_rate": 0.0006,
+ "loss": 3.640477180480957,
+ "step": 2816
+ },
+ {
+ "epoch": 39.12581913499345,
+ "grad_norm": 0.2128882110118866,
+ "learning_rate": 0.0006,
+ "loss": 3.643984317779541,
+ "step": 2817
+ },
+ {
+ "epoch": 39.139799038881605,
+ "grad_norm": 0.2110479772090912,
+ "learning_rate": 0.0006,
+ "loss": 3.6328823566436768,
+ "step": 2818
+ },
+ {
+ "epoch": 39.15377894276977,
+ "grad_norm": 0.22304436564445496,
+ "learning_rate": 0.0006,
+ "loss": 3.6669845581054688,
+ "step": 2819
+ },
+ {
+ "epoch": 39.16775884665793,
+ "grad_norm": 0.22310666739940643,
+ "learning_rate": 0.0006,
+ "loss": 3.609743595123291,
+ "step": 2820
+ },
+ {
+ "epoch": 39.18173875054609,
+ "grad_norm": 0.21002045273780823,
+ "learning_rate": 0.0006,
+ "loss": 3.601900815963745,
+ "step": 2821
+ },
+ {
+ "epoch": 39.19571865443425,
+ "grad_norm": 0.20531952381134033,
+ "learning_rate": 0.0006,
+ "loss": 3.6405060291290283,
+ "step": 2822
+ },
+ {
+ "epoch": 39.20969855832241,
+ "grad_norm": 0.20646385848522186,
+ "learning_rate": 0.0006,
+ "loss": 3.669617176055908,
+ "step": 2823
+ },
+ {
+ "epoch": 39.22367846221057,
+ "grad_norm": 0.2553980350494385,
+ "learning_rate": 0.0006,
+ "loss": 3.642709255218506,
+ "step": 2824
+ },
+ {
+ "epoch": 39.237658366098735,
+ "grad_norm": 0.2753220498561859,
+ "learning_rate": 0.0006,
+ "loss": 3.668405055999756,
+ "step": 2825
+ },
+ {
+ "epoch": 39.25163826998689,
+ "grad_norm": 0.2425055354833603,
+ "learning_rate": 0.0006,
+ "loss": 3.659559726715088,
+ "step": 2826
+ },
+ {
+ "epoch": 39.265618173875055,
+ "grad_norm": 0.2199426293373108,
+ "learning_rate": 0.0006,
+ "loss": 3.6466197967529297,
+ "step": 2827
+ },
+ {
+ "epoch": 39.27959807776322,
+ "grad_norm": 0.221355602145195,
+ "learning_rate": 0.0006,
+ "loss": 3.639418125152588,
+ "step": 2828
+ },
+ {
+ "epoch": 39.293577981651374,
+ "grad_norm": 0.20777100324630737,
+ "learning_rate": 0.0006,
+ "loss": 3.68102765083313,
+ "step": 2829
+ },
+ {
+ "epoch": 39.30755788553954,
+ "grad_norm": 0.20557557046413422,
+ "learning_rate": 0.0006,
+ "loss": 3.663064956665039,
+ "step": 2830
+ },
+ {
+ "epoch": 39.3215377894277,
+ "grad_norm": 0.2385585904121399,
+ "learning_rate": 0.0006,
+ "loss": 3.6598849296569824,
+ "step": 2831
+ },
+ {
+ "epoch": 39.33551769331586,
+ "grad_norm": 0.25222650170326233,
+ "learning_rate": 0.0006,
+ "loss": 3.635199546813965,
+ "step": 2832
+ },
+ {
+ "epoch": 39.34949759720402,
+ "grad_norm": 0.22894687950611115,
+ "learning_rate": 0.0006,
+ "loss": 3.6100258827209473,
+ "step": 2833
+ },
+ {
+ "epoch": 39.36347750109218,
+ "grad_norm": 0.22945865988731384,
+ "learning_rate": 0.0006,
+ "loss": 3.63069748878479,
+ "step": 2834
+ },
+ {
+ "epoch": 39.37745740498034,
+ "grad_norm": 0.2466309368610382,
+ "learning_rate": 0.0006,
+ "loss": 3.6615123748779297,
+ "step": 2835
+ },
+ {
+ "epoch": 39.391437308868504,
+ "grad_norm": 0.23845571279525757,
+ "learning_rate": 0.0006,
+ "loss": 3.655045509338379,
+ "step": 2836
+ },
+ {
+ "epoch": 39.40541721275666,
+ "grad_norm": 0.20273560285568237,
+ "learning_rate": 0.0006,
+ "loss": 3.6497647762298584,
+ "step": 2837
+ },
+ {
+ "epoch": 39.419397116644824,
+ "grad_norm": 0.19820313155651093,
+ "learning_rate": 0.0006,
+ "loss": 3.6728386878967285,
+ "step": 2838
+ },
+ {
+ "epoch": 39.43337702053299,
+ "grad_norm": 0.21581435203552246,
+ "learning_rate": 0.0006,
+ "loss": 3.660247325897217,
+ "step": 2839
+ },
+ {
+ "epoch": 39.44735692442114,
+ "grad_norm": 0.20559731125831604,
+ "learning_rate": 0.0006,
+ "loss": 3.6244559288024902,
+ "step": 2840
+ },
+ {
+ "epoch": 39.46133682830931,
+ "grad_norm": 0.22041910886764526,
+ "learning_rate": 0.0006,
+ "loss": 3.6577587127685547,
+ "step": 2841
+ },
+ {
+ "epoch": 39.47531673219746,
+ "grad_norm": 0.1966651976108551,
+ "learning_rate": 0.0006,
+ "loss": 3.673975944519043,
+ "step": 2842
+ },
+ {
+ "epoch": 39.489296636085626,
+ "grad_norm": 0.19127163290977478,
+ "learning_rate": 0.0006,
+ "loss": 3.7022414207458496,
+ "step": 2843
+ },
+ {
+ "epoch": 39.50327653997379,
+ "grad_norm": 0.20260316133499146,
+ "learning_rate": 0.0006,
+ "loss": 3.6155128479003906,
+ "step": 2844
+ },
+ {
+ "epoch": 39.517256443861946,
+ "grad_norm": 0.2302546352148056,
+ "learning_rate": 0.0006,
+ "loss": 3.670212984085083,
+ "step": 2845
+ },
+ {
+ "epoch": 39.53123634775011,
+ "grad_norm": 0.2512998878955841,
+ "learning_rate": 0.0006,
+ "loss": 3.6257572174072266,
+ "step": 2846
+ },
+ {
+ "epoch": 39.54521625163827,
+ "grad_norm": 0.24780063331127167,
+ "learning_rate": 0.0006,
+ "loss": 3.6458964347839355,
+ "step": 2847
+ },
+ {
+ "epoch": 39.55919615552643,
+ "grad_norm": 0.21305061876773834,
+ "learning_rate": 0.0006,
+ "loss": 3.666834831237793,
+ "step": 2848
+ },
+ {
+ "epoch": 39.57317605941459,
+ "grad_norm": 0.20699542760849,
+ "learning_rate": 0.0006,
+ "loss": 3.660571813583374,
+ "step": 2849
+ },
+ {
+ "epoch": 39.58715596330275,
+ "grad_norm": 0.20799173414707184,
+ "learning_rate": 0.0006,
+ "loss": 3.649744987487793,
+ "step": 2850
+ },
+ {
+ "epoch": 39.60113586719091,
+ "grad_norm": 0.20118695497512817,
+ "learning_rate": 0.0006,
+ "loss": 3.663865089416504,
+ "step": 2851
+ },
+ {
+ "epoch": 39.615115771079076,
+ "grad_norm": 0.2019277960062027,
+ "learning_rate": 0.0006,
+ "loss": 3.6600584983825684,
+ "step": 2852
+ },
+ {
+ "epoch": 39.62909567496723,
+ "grad_norm": 0.2093067765235901,
+ "learning_rate": 0.0006,
+ "loss": 3.6926870346069336,
+ "step": 2853
+ },
+ {
+ "epoch": 39.643075578855395,
+ "grad_norm": 0.2280927449464798,
+ "learning_rate": 0.0006,
+ "loss": 3.677157402038574,
+ "step": 2854
+ },
+ {
+ "epoch": 39.65705548274356,
+ "grad_norm": 0.219201922416687,
+ "learning_rate": 0.0006,
+ "loss": 3.6763858795166016,
+ "step": 2855
+ },
+ {
+ "epoch": 39.671035386631715,
+ "grad_norm": 0.2132134735584259,
+ "learning_rate": 0.0006,
+ "loss": 3.6853187084198,
+ "step": 2856
+ },
+ {
+ "epoch": 39.68501529051988,
+ "grad_norm": 0.1979551613330841,
+ "learning_rate": 0.0006,
+ "loss": 3.633850574493408,
+ "step": 2857
+ },
+ {
+ "epoch": 39.69899519440804,
+ "grad_norm": 0.2181098908185959,
+ "learning_rate": 0.0006,
+ "loss": 3.671356201171875,
+ "step": 2858
+ },
+ {
+ "epoch": 39.7129750982962,
+ "grad_norm": 0.21820145845413208,
+ "learning_rate": 0.0006,
+ "loss": 3.640101432800293,
+ "step": 2859
+ },
+ {
+ "epoch": 39.72695500218436,
+ "grad_norm": 0.22734931111335754,
+ "learning_rate": 0.0006,
+ "loss": 3.6326088905334473,
+ "step": 2860
+ },
+ {
+ "epoch": 39.74093490607252,
+ "grad_norm": 0.2407236248254776,
+ "learning_rate": 0.0006,
+ "loss": 3.665416955947876,
+ "step": 2861
+ },
+ {
+ "epoch": 39.75491480996068,
+ "grad_norm": 0.2507246434688568,
+ "learning_rate": 0.0006,
+ "loss": 3.6996266841888428,
+ "step": 2862
+ },
+ {
+ "epoch": 39.768894713848844,
+ "grad_norm": 0.2273668497800827,
+ "learning_rate": 0.0006,
+ "loss": 3.6786417961120605,
+ "step": 2863
+ },
+ {
+ "epoch": 39.782874617737,
+ "grad_norm": 0.20584821701049805,
+ "learning_rate": 0.0006,
+ "loss": 3.6539974212646484,
+ "step": 2864
+ },
+ {
+ "epoch": 39.796854521625164,
+ "grad_norm": 0.2327643632888794,
+ "learning_rate": 0.0006,
+ "loss": 3.681267738342285,
+ "step": 2865
+ },
+ {
+ "epoch": 39.81083442551333,
+ "grad_norm": 0.24243171513080597,
+ "learning_rate": 0.0006,
+ "loss": 3.6814589500427246,
+ "step": 2866
+ },
+ {
+ "epoch": 39.824814329401484,
+ "grad_norm": 0.21462969481945038,
+ "learning_rate": 0.0006,
+ "loss": 3.681321620941162,
+ "step": 2867
+ },
+ {
+ "epoch": 39.83879423328965,
+ "grad_norm": 0.20973211526870728,
+ "learning_rate": 0.0006,
+ "loss": 3.636986017227173,
+ "step": 2868
+ },
+ {
+ "epoch": 39.8527741371778,
+ "grad_norm": 0.20357508957386017,
+ "learning_rate": 0.0006,
+ "loss": 3.6664552688598633,
+ "step": 2869
+ },
+ {
+ "epoch": 39.86675404106597,
+ "grad_norm": 0.20389088988304138,
+ "learning_rate": 0.0006,
+ "loss": 3.6685709953308105,
+ "step": 2870
+ },
+ {
+ "epoch": 39.88073394495413,
+ "grad_norm": 0.21024158596992493,
+ "learning_rate": 0.0006,
+ "loss": 3.650658130645752,
+ "step": 2871
+ },
+ {
+ "epoch": 39.89471384884229,
+ "grad_norm": 0.19477778673171997,
+ "learning_rate": 0.0006,
+ "loss": 3.664834976196289,
+ "step": 2872
+ },
+ {
+ "epoch": 39.90869375273045,
+ "grad_norm": 0.22345365583896637,
+ "learning_rate": 0.0006,
+ "loss": 3.6652634143829346,
+ "step": 2873
+ },
+ {
+ "epoch": 39.92267365661861,
+ "grad_norm": 0.206041157245636,
+ "learning_rate": 0.0006,
+ "loss": 3.6649513244628906,
+ "step": 2874
+ },
+ {
+ "epoch": 39.93665356050677,
+ "grad_norm": 0.18524570763111115,
+ "learning_rate": 0.0006,
+ "loss": 3.665579080581665,
+ "step": 2875
+ },
+ {
+ "epoch": 39.95063346439493,
+ "grad_norm": 0.17730890214443207,
+ "learning_rate": 0.0006,
+ "loss": 3.6372880935668945,
+ "step": 2876
+ },
+ {
+ "epoch": 39.964613368283096,
+ "grad_norm": 0.213678777217865,
+ "learning_rate": 0.0006,
+ "loss": 3.681305408477783,
+ "step": 2877
+ },
+ {
+ "epoch": 39.97859327217125,
+ "grad_norm": 0.2595686614513397,
+ "learning_rate": 0.0006,
+ "loss": 3.6660351753234863,
+ "step": 2878
+ },
+ {
+ "epoch": 39.992573176059416,
+ "grad_norm": 0.22678600251674652,
+ "learning_rate": 0.0006,
+ "loss": 3.681619644165039,
+ "step": 2879
+ },
+ {
+ "epoch": 40.0,
+ "grad_norm": 0.2294030636548996,
+ "learning_rate": 0.0006,
+ "loss": 3.654366970062256,
+ "step": 2880
+ },
+ {
+ "epoch": 40.0,
+ "eval_loss": 3.9810431003570557,
+ "eval_runtime": 43.832,
+ "eval_samples_per_second": 55.713,
+ "eval_steps_per_second": 3.491,
+ "step": 2880
+ },
+ {
+ "epoch": 40.01397990388816,
+ "grad_norm": 0.220590278506279,
+ "learning_rate": 0.0006,
+ "loss": 3.6346259117126465,
+ "step": 2881
+ },
+ {
+ "epoch": 40.02795980777632,
+ "grad_norm": 0.2568257749080658,
+ "learning_rate": 0.0006,
+ "loss": 3.64436674118042,
+ "step": 2882
+ },
+ {
+ "epoch": 40.04193971166448,
+ "grad_norm": 0.2869258224964142,
+ "learning_rate": 0.0006,
+ "loss": 3.613316059112549,
+ "step": 2883
+ },
+ {
+ "epoch": 40.05591961555265,
+ "grad_norm": 0.3005172908306122,
+ "learning_rate": 0.0006,
+ "loss": 3.607339859008789,
+ "step": 2884
+ },
+ {
+ "epoch": 40.0698995194408,
+ "grad_norm": 0.28642305731773376,
+ "learning_rate": 0.0006,
+ "loss": 3.65151047706604,
+ "step": 2885
+ },
+ {
+ "epoch": 40.083879423328966,
+ "grad_norm": 0.24176034331321716,
+ "learning_rate": 0.0006,
+ "loss": 3.633742332458496,
+ "step": 2886
+ },
+ {
+ "epoch": 40.09785932721712,
+ "grad_norm": 0.2139386385679245,
+ "learning_rate": 0.0006,
+ "loss": 3.614245653152466,
+ "step": 2887
+ },
+ {
+ "epoch": 40.111839231105286,
+ "grad_norm": 0.28025752305984497,
+ "learning_rate": 0.0006,
+ "loss": 3.6415746212005615,
+ "step": 2888
+ },
+ {
+ "epoch": 40.12581913499345,
+ "grad_norm": 0.28534311056137085,
+ "learning_rate": 0.0006,
+ "loss": 3.6302027702331543,
+ "step": 2889
+ },
+ {
+ "epoch": 40.139799038881605,
+ "grad_norm": 0.26842808723449707,
+ "learning_rate": 0.0006,
+ "loss": 3.657480239868164,
+ "step": 2890
+ },
+ {
+ "epoch": 40.15377894276977,
+ "grad_norm": 0.25235965847969055,
+ "learning_rate": 0.0006,
+ "loss": 3.6843931674957275,
+ "step": 2891
+ },
+ {
+ "epoch": 40.16775884665793,
+ "grad_norm": 0.22192128002643585,
+ "learning_rate": 0.0006,
+ "loss": 3.6374592781066895,
+ "step": 2892
+ },
+ {
+ "epoch": 40.18173875054609,
+ "grad_norm": 0.21524523198604584,
+ "learning_rate": 0.0006,
+ "loss": 3.6052589416503906,
+ "step": 2893
+ },
+ {
+ "epoch": 40.19571865443425,
+ "grad_norm": 0.21011514961719513,
+ "learning_rate": 0.0006,
+ "loss": 3.62197208404541,
+ "step": 2894
+ },
+ {
+ "epoch": 40.20969855832241,
+ "grad_norm": 0.23187001049518585,
+ "learning_rate": 0.0006,
+ "loss": 3.6505377292633057,
+ "step": 2895
+ },
+ {
+ "epoch": 40.22367846221057,
+ "grad_norm": 0.21962887048721313,
+ "learning_rate": 0.0006,
+ "loss": 3.594991683959961,
+ "step": 2896
+ },
+ {
+ "epoch": 40.237658366098735,
+ "grad_norm": 0.23299361765384674,
+ "learning_rate": 0.0006,
+ "loss": 3.6370339393615723,
+ "step": 2897
+ },
+ {
+ "epoch": 40.25163826998689,
+ "grad_norm": 0.22504881024360657,
+ "learning_rate": 0.0006,
+ "loss": 3.6173815727233887,
+ "step": 2898
+ },
+ {
+ "epoch": 40.265618173875055,
+ "grad_norm": 0.21678344905376434,
+ "learning_rate": 0.0006,
+ "loss": 3.6231422424316406,
+ "step": 2899
+ },
+ {
+ "epoch": 40.27959807776322,
+ "grad_norm": 0.2184615284204483,
+ "learning_rate": 0.0006,
+ "loss": 3.6552987098693848,
+ "step": 2900
+ },
+ {
+ "epoch": 40.293577981651374,
+ "grad_norm": 0.2145485281944275,
+ "learning_rate": 0.0006,
+ "loss": 3.628025531768799,
+ "step": 2901
+ },
+ {
+ "epoch": 40.30755788553954,
+ "grad_norm": 0.21119336783885956,
+ "learning_rate": 0.0006,
+ "loss": 3.6511590480804443,
+ "step": 2902
+ },
+ {
+ "epoch": 40.3215377894277,
+ "grad_norm": 0.2158869504928589,
+ "learning_rate": 0.0006,
+ "loss": 3.6302051544189453,
+ "step": 2903
+ },
+ {
+ "epoch": 40.33551769331586,
+ "grad_norm": 0.22736455500125885,
+ "learning_rate": 0.0006,
+ "loss": 3.6678733825683594,
+ "step": 2904
+ },
+ {
+ "epoch": 40.34949759720402,
+ "grad_norm": 0.22723783552646637,
+ "learning_rate": 0.0006,
+ "loss": 3.632068634033203,
+ "step": 2905
+ },
+ {
+ "epoch": 40.36347750109218,
+ "grad_norm": 0.20606189966201782,
+ "learning_rate": 0.0006,
+ "loss": 3.6534624099731445,
+ "step": 2906
+ },
+ {
+ "epoch": 40.37745740498034,
+ "grad_norm": 0.21033786237239838,
+ "learning_rate": 0.0006,
+ "loss": 3.6194064617156982,
+ "step": 2907
+ },
+ {
+ "epoch": 40.391437308868504,
+ "grad_norm": 0.2175762951374054,
+ "learning_rate": 0.0006,
+ "loss": 3.637385368347168,
+ "step": 2908
+ },
+ {
+ "epoch": 40.40541721275666,
+ "grad_norm": 0.21063381433486938,
+ "learning_rate": 0.0006,
+ "loss": 3.656857967376709,
+ "step": 2909
+ },
+ {
+ "epoch": 40.419397116644824,
+ "grad_norm": 0.19982226192951202,
+ "learning_rate": 0.0006,
+ "loss": 3.655738353729248,
+ "step": 2910
+ },
+ {
+ "epoch": 40.43337702053299,
+ "grad_norm": 0.20608870685100555,
+ "learning_rate": 0.0006,
+ "loss": 3.6521377563476562,
+ "step": 2911
+ },
+ {
+ "epoch": 40.44735692442114,
+ "grad_norm": 0.19817334413528442,
+ "learning_rate": 0.0006,
+ "loss": 3.61527681350708,
+ "step": 2912
+ },
+ {
+ "epoch": 40.46133682830931,
+ "grad_norm": 0.20407769083976746,
+ "learning_rate": 0.0006,
+ "loss": 3.6668765544891357,
+ "step": 2913
+ },
+ {
+ "epoch": 40.47531673219746,
+ "grad_norm": 0.19874799251556396,
+ "learning_rate": 0.0006,
+ "loss": 3.6748533248901367,
+ "step": 2914
+ },
+ {
+ "epoch": 40.489296636085626,
+ "grad_norm": 0.1979510486125946,
+ "learning_rate": 0.0006,
+ "loss": 3.6141977310180664,
+ "step": 2915
+ },
+ {
+ "epoch": 40.50327653997379,
+ "grad_norm": 0.19811518490314484,
+ "learning_rate": 0.0006,
+ "loss": 3.6391215324401855,
+ "step": 2916
+ },
+ {
+ "epoch": 40.517256443861946,
+ "grad_norm": 0.20208898186683655,
+ "learning_rate": 0.0006,
+ "loss": 3.664179801940918,
+ "step": 2917
+ },
+ {
+ "epoch": 40.53123634775011,
+ "grad_norm": 0.22063760459423065,
+ "learning_rate": 0.0006,
+ "loss": 3.645388126373291,
+ "step": 2918
+ },
+ {
+ "epoch": 40.54521625163827,
+ "grad_norm": 0.23420891165733337,
+ "learning_rate": 0.0006,
+ "loss": 3.6424708366394043,
+ "step": 2919
+ },
+ {
+ "epoch": 40.55919615552643,
+ "grad_norm": 0.2263612151145935,
+ "learning_rate": 0.0006,
+ "loss": 3.6649224758148193,
+ "step": 2920
+ },
+ {
+ "epoch": 40.57317605941459,
+ "grad_norm": 0.22745433449745178,
+ "learning_rate": 0.0006,
+ "loss": 3.631586790084839,
+ "step": 2921
+ },
+ {
+ "epoch": 40.58715596330275,
+ "grad_norm": 0.22413238883018494,
+ "learning_rate": 0.0006,
+ "loss": 3.6666674613952637,
+ "step": 2922
+ },
+ {
+ "epoch": 40.60113586719091,
+ "grad_norm": 0.2178265005350113,
+ "learning_rate": 0.0006,
+ "loss": 3.6002111434936523,
+ "step": 2923
+ },
+ {
+ "epoch": 40.615115771079076,
+ "grad_norm": 0.21822521090507507,
+ "learning_rate": 0.0006,
+ "loss": 3.6538329124450684,
+ "step": 2924
+ },
+ {
+ "epoch": 40.62909567496723,
+ "grad_norm": 0.21728558838367462,
+ "learning_rate": 0.0006,
+ "loss": 3.651254653930664,
+ "step": 2925
+ },
+ {
+ "epoch": 40.643075578855395,
+ "grad_norm": 0.22377707064151764,
+ "learning_rate": 0.0006,
+ "loss": 3.6505789756774902,
+ "step": 2926
+ },
+ {
+ "epoch": 40.65705548274356,
+ "grad_norm": 0.2035706788301468,
+ "learning_rate": 0.0006,
+ "loss": 3.6471967697143555,
+ "step": 2927
+ },
+ {
+ "epoch": 40.671035386631715,
+ "grad_norm": 0.2011154741048813,
+ "learning_rate": 0.0006,
+ "loss": 3.6582741737365723,
+ "step": 2928
+ },
+ {
+ "epoch": 40.68501529051988,
+ "grad_norm": 0.23812712728977203,
+ "learning_rate": 0.0006,
+ "loss": 3.6388421058654785,
+ "step": 2929
+ },
+ {
+ "epoch": 40.69899519440804,
+ "grad_norm": 0.2117796689271927,
+ "learning_rate": 0.0006,
+ "loss": 3.688337802886963,
+ "step": 2930
+ },
+ {
+ "epoch": 40.7129750982962,
+ "grad_norm": 0.18440942466259003,
+ "learning_rate": 0.0006,
+ "loss": 3.6409997940063477,
+ "step": 2931
+ },
+ {
+ "epoch": 40.72695500218436,
+ "grad_norm": 0.19005917012691498,
+ "learning_rate": 0.0006,
+ "loss": 3.6760218143463135,
+ "step": 2932
+ },
+ {
+ "epoch": 40.74093490607252,
+ "grad_norm": 0.19982726871967316,
+ "learning_rate": 0.0006,
+ "loss": 3.6375021934509277,
+ "step": 2933
+ },
+ {
+ "epoch": 40.75491480996068,
+ "grad_norm": 0.19240257143974304,
+ "learning_rate": 0.0006,
+ "loss": 3.636807918548584,
+ "step": 2934
+ },
+ {
+ "epoch": 40.768894713848844,
+ "grad_norm": 0.20563434064388275,
+ "learning_rate": 0.0006,
+ "loss": 3.6667532920837402,
+ "step": 2935
+ },
+ {
+ "epoch": 40.782874617737,
+ "grad_norm": 0.26531776785850525,
+ "learning_rate": 0.0006,
+ "loss": 3.6332945823669434,
+ "step": 2936
+ },
+ {
+ "epoch": 40.796854521625164,
+ "grad_norm": 0.2766861021518707,
+ "learning_rate": 0.0006,
+ "loss": 3.6645212173461914,
+ "step": 2937
+ },
+ {
+ "epoch": 40.81083442551333,
+ "grad_norm": 0.235750213265419,
+ "learning_rate": 0.0006,
+ "loss": 3.67067813873291,
+ "step": 2938
+ },
+ {
+ "epoch": 40.824814329401484,
+ "grad_norm": 0.20778773725032806,
+ "learning_rate": 0.0006,
+ "loss": 3.6565768718719482,
+ "step": 2939
+ },
+ {
+ "epoch": 40.83879423328965,
+ "grad_norm": 0.187322199344635,
+ "learning_rate": 0.0006,
+ "loss": 3.620129346847534,
+ "step": 2940
+ },
+ {
+ "epoch": 40.8527741371778,
+ "grad_norm": 0.20576219260692596,
+ "learning_rate": 0.0006,
+ "loss": 3.6700220108032227,
+ "step": 2941
+ },
+ {
+ "epoch": 40.86675404106597,
+ "grad_norm": 0.2197345495223999,
+ "learning_rate": 0.0006,
+ "loss": 3.709311008453369,
+ "step": 2942
+ },
+ {
+ "epoch": 40.88073394495413,
+ "grad_norm": 0.20205345749855042,
+ "learning_rate": 0.0006,
+ "loss": 3.6646361351013184,
+ "step": 2943
+ },
+ {
+ "epoch": 40.89471384884229,
+ "grad_norm": 0.20026250183582306,
+ "learning_rate": 0.0006,
+ "loss": 3.6639604568481445,
+ "step": 2944
+ },
+ {
+ "epoch": 40.90869375273045,
+ "grad_norm": 0.224214106798172,
+ "learning_rate": 0.0006,
+ "loss": 3.6669654846191406,
+ "step": 2945
+ },
+ {
+ "epoch": 40.92267365661861,
+ "grad_norm": 0.2155972272157669,
+ "learning_rate": 0.0006,
+ "loss": 3.6494603157043457,
+ "step": 2946
+ },
+ {
+ "epoch": 40.93665356050677,
+ "grad_norm": 0.23038871586322784,
+ "learning_rate": 0.0006,
+ "loss": 3.6368541717529297,
+ "step": 2947
+ },
+ {
+ "epoch": 40.95063346439493,
+ "grad_norm": 0.2001815289258957,
+ "learning_rate": 0.0006,
+ "loss": 3.711174249649048,
+ "step": 2948
+ },
+ {
+ "epoch": 40.964613368283096,
+ "grad_norm": 0.20428860187530518,
+ "learning_rate": 0.0006,
+ "loss": 3.6342315673828125,
+ "step": 2949
+ },
+ {
+ "epoch": 40.97859327217125,
+ "grad_norm": 0.20724134147167206,
+ "learning_rate": 0.0006,
+ "loss": 3.679375171661377,
+ "step": 2950
+ },
+ {
+ "epoch": 40.992573176059416,
+ "grad_norm": 0.20723849534988403,
+ "learning_rate": 0.0006,
+ "loss": 3.6477675437927246,
+ "step": 2951
+ },
+ {
+ "epoch": 41.0,
+ "grad_norm": 0.23891447484493256,
+ "learning_rate": 0.0006,
+ "loss": 3.632950782775879,
+ "step": 2952
+ },
+ {
+ "epoch": 41.0,
+ "eval_loss": 3.9871256351470947,
+ "eval_runtime": 43.8367,
+ "eval_samples_per_second": 55.707,
+ "eval_steps_per_second": 3.49,
+ "step": 2952
+ },
+ {
+ "epoch": 41.01397990388816,
+ "grad_norm": 0.2258434295654297,
+ "learning_rate": 0.0006,
+ "loss": 3.631239414215088,
+ "step": 2953
+ },
+ {
+ "epoch": 41.02795980777632,
+ "grad_norm": 0.24932795763015747,
+ "learning_rate": 0.0006,
+ "loss": 3.601083517074585,
+ "step": 2954
+ },
+ {
+ "epoch": 41.04193971166448,
+ "grad_norm": 0.2688388228416443,
+ "learning_rate": 0.0006,
+ "loss": 3.655724048614502,
+ "step": 2955
+ },
+ {
+ "epoch": 41.05591961555265,
+ "grad_norm": 0.23880694806575775,
+ "learning_rate": 0.0006,
+ "loss": 3.617628812789917,
+ "step": 2956
+ },
+ {
+ "epoch": 41.0698995194408,
+ "grad_norm": 0.23784616589546204,
+ "learning_rate": 0.0006,
+ "loss": 3.6309127807617188,
+ "step": 2957
+ },
+ {
+ "epoch": 41.083879423328966,
+ "grad_norm": 0.22609511017799377,
+ "learning_rate": 0.0006,
+ "loss": 3.6138553619384766,
+ "step": 2958
+ },
+ {
+ "epoch": 41.09785932721712,
+ "grad_norm": 0.22936329245567322,
+ "learning_rate": 0.0006,
+ "loss": 3.6620094776153564,
+ "step": 2959
+ },
+ {
+ "epoch": 41.111839231105286,
+ "grad_norm": 0.23354190587997437,
+ "learning_rate": 0.0006,
+ "loss": 3.59959077835083,
+ "step": 2960
+ },
+ {
+ "epoch": 41.12581913499345,
+ "grad_norm": 0.2496265172958374,
+ "learning_rate": 0.0006,
+ "loss": 3.588359832763672,
+ "step": 2961
+ },
+ {
+ "epoch": 41.139799038881605,
+ "grad_norm": 0.23618635535240173,
+ "learning_rate": 0.0006,
+ "loss": 3.6341018676757812,
+ "step": 2962
+ },
+ {
+ "epoch": 41.15377894276977,
+ "grad_norm": 0.23724640905857086,
+ "learning_rate": 0.0006,
+ "loss": 3.6170616149902344,
+ "step": 2963
+ },
+ {
+ "epoch": 41.16775884665793,
+ "grad_norm": 0.20944789052009583,
+ "learning_rate": 0.0006,
+ "loss": 3.6158995628356934,
+ "step": 2964
+ },
+ {
+ "epoch": 41.18173875054609,
+ "grad_norm": 0.2089492678642273,
+ "learning_rate": 0.0006,
+ "loss": 3.586538314819336,
+ "step": 2965
+ },
+ {
+ "epoch": 41.19571865443425,
+ "grad_norm": 0.2370915710926056,
+ "learning_rate": 0.0006,
+ "loss": 3.599236011505127,
+ "step": 2966
+ },
+ {
+ "epoch": 41.20969855832241,
+ "grad_norm": 0.25749558210372925,
+ "learning_rate": 0.0006,
+ "loss": 3.631399154663086,
+ "step": 2967
+ },
+ {
+ "epoch": 41.22367846221057,
+ "grad_norm": 0.24754776060581207,
+ "learning_rate": 0.0006,
+ "loss": 3.6503920555114746,
+ "step": 2968
+ },
+ {
+ "epoch": 41.237658366098735,
+ "grad_norm": 0.22060903906822205,
+ "learning_rate": 0.0006,
+ "loss": 3.671673536300659,
+ "step": 2969
+ },
+ {
+ "epoch": 41.25163826998689,
+ "grad_norm": 0.19416594505310059,
+ "learning_rate": 0.0006,
+ "loss": 3.6158413887023926,
+ "step": 2970
+ },
+ {
+ "epoch": 41.265618173875055,
+ "grad_norm": 0.22596411406993866,
+ "learning_rate": 0.0006,
+ "loss": 3.64003849029541,
+ "step": 2971
+ },
+ {
+ "epoch": 41.27959807776322,
+ "grad_norm": 0.26785415410995483,
+ "learning_rate": 0.0006,
+ "loss": 3.642327308654785,
+ "step": 2972
+ },
+ {
+ "epoch": 41.293577981651374,
+ "grad_norm": 0.2988710403442383,
+ "learning_rate": 0.0006,
+ "loss": 3.6018929481506348,
+ "step": 2973
+ },
+ {
+ "epoch": 41.30755788553954,
+ "grad_norm": 0.2428133338689804,
+ "learning_rate": 0.0006,
+ "loss": 3.645270824432373,
+ "step": 2974
+ },
+ {
+ "epoch": 41.3215377894277,
+ "grad_norm": 0.20330320298671722,
+ "learning_rate": 0.0006,
+ "loss": 3.625495433807373,
+ "step": 2975
+ },
+ {
+ "epoch": 41.33551769331586,
+ "grad_norm": 0.2267787605524063,
+ "learning_rate": 0.0006,
+ "loss": 3.6469204425811768,
+ "step": 2976
+ },
+ {
+ "epoch": 41.34949759720402,
+ "grad_norm": 0.20702822506427765,
+ "learning_rate": 0.0006,
+ "loss": 3.644191265106201,
+ "step": 2977
+ },
+ {
+ "epoch": 41.36347750109218,
+ "grad_norm": 0.19693221151828766,
+ "learning_rate": 0.0006,
+ "loss": 3.591794967651367,
+ "step": 2978
+ },
+ {
+ "epoch": 41.37745740498034,
+ "grad_norm": 0.21193185448646545,
+ "learning_rate": 0.0006,
+ "loss": 3.6283936500549316,
+ "step": 2979
+ },
+ {
+ "epoch": 41.391437308868504,
+ "grad_norm": 0.20953163504600525,
+ "learning_rate": 0.0006,
+ "loss": 3.617565155029297,
+ "step": 2980
+ },
+ {
+ "epoch": 41.40541721275666,
+ "grad_norm": 0.21839819848537445,
+ "learning_rate": 0.0006,
+ "loss": 3.621209144592285,
+ "step": 2981
+ },
+ {
+ "epoch": 41.419397116644824,
+ "grad_norm": 0.2152671068906784,
+ "learning_rate": 0.0006,
+ "loss": 3.643197536468506,
+ "step": 2982
+ },
+ {
+ "epoch": 41.43337702053299,
+ "grad_norm": 0.2507486641407013,
+ "learning_rate": 0.0006,
+ "loss": 3.657499313354492,
+ "step": 2983
+ },
+ {
+ "epoch": 41.44735692442114,
+ "grad_norm": 0.24695388972759247,
+ "learning_rate": 0.0006,
+ "loss": 3.62170672416687,
+ "step": 2984
+ },
+ {
+ "epoch": 41.46133682830931,
+ "grad_norm": 0.22652822732925415,
+ "learning_rate": 0.0006,
+ "loss": 3.64322566986084,
+ "step": 2985
+ },
+ {
+ "epoch": 41.47531673219746,
+ "grad_norm": 0.2575881779193878,
+ "learning_rate": 0.0006,
+ "loss": 3.659621477127075,
+ "step": 2986
+ },
+ {
+ "epoch": 41.489296636085626,
+ "grad_norm": 0.24162672460079193,
+ "learning_rate": 0.0006,
+ "loss": 3.6527223587036133,
+ "step": 2987
+ },
+ {
+ "epoch": 41.50327653997379,
+ "grad_norm": 0.20930497348308563,
+ "learning_rate": 0.0006,
+ "loss": 3.6412787437438965,
+ "step": 2988
+ },
+ {
+ "epoch": 41.517256443861946,
+ "grad_norm": 0.20480819046497345,
+ "learning_rate": 0.0006,
+ "loss": 3.614767074584961,
+ "step": 2989
+ },
+ {
+ "epoch": 41.53123634775011,
+ "grad_norm": 0.20015820860862732,
+ "learning_rate": 0.0006,
+ "loss": 3.6512045860290527,
+ "step": 2990
+ },
+ {
+ "epoch": 41.54521625163827,
+ "grad_norm": 0.20220743119716644,
+ "learning_rate": 0.0006,
+ "loss": 3.6732325553894043,
+ "step": 2991
+ },
+ {
+ "epoch": 41.55919615552643,
+ "grad_norm": 0.20505326986312866,
+ "learning_rate": 0.0006,
+ "loss": 3.6374664306640625,
+ "step": 2992
+ },
+ {
+ "epoch": 41.57317605941459,
+ "grad_norm": 0.19423344731330872,
+ "learning_rate": 0.0006,
+ "loss": 3.6564126014709473,
+ "step": 2993
+ },
+ {
+ "epoch": 41.58715596330275,
+ "grad_norm": 0.19284583628177643,
+ "learning_rate": 0.0006,
+ "loss": 3.6460509300231934,
+ "step": 2994
+ },
+ {
+ "epoch": 41.60113586719091,
+ "grad_norm": 0.18488959968090057,
+ "learning_rate": 0.0006,
+ "loss": 3.632859468460083,
+ "step": 2995
+ },
+ {
+ "epoch": 41.615115771079076,
+ "grad_norm": 0.18816296756267548,
+ "learning_rate": 0.0006,
+ "loss": 3.5958361625671387,
+ "step": 2996
+ },
+ {
+ "epoch": 41.62909567496723,
+ "grad_norm": 0.18987809121608734,
+ "learning_rate": 0.0006,
+ "loss": 3.6330695152282715,
+ "step": 2997
+ },
+ {
+ "epoch": 41.643075578855395,
+ "grad_norm": 0.18999919295310974,
+ "learning_rate": 0.0006,
+ "loss": 3.6486730575561523,
+ "step": 2998
+ },
+ {
+ "epoch": 41.65705548274356,
+ "grad_norm": 0.20190183818340302,
+ "learning_rate": 0.0006,
+ "loss": 3.6564230918884277,
+ "step": 2999
+ },
+ {
+ "epoch": 41.671035386631715,
+ "grad_norm": 0.20331363379955292,
+ "learning_rate": 0.0006,
+ "loss": 3.6789698600769043,
+ "step": 3000
+ },
+ {
+ "epoch": 41.68501529051988,
+ "grad_norm": 0.21599505841732025,
+ "learning_rate": 0.0006,
+ "loss": 3.6544511318206787,
+ "step": 3001
+ },
+ {
+ "epoch": 41.69899519440804,
+ "grad_norm": 0.21123184263706207,
+ "learning_rate": 0.0006,
+ "loss": 3.6506948471069336,
+ "step": 3002
+ },
+ {
+ "epoch": 41.7129750982962,
+ "grad_norm": 0.21337002515792847,
+ "learning_rate": 0.0006,
+ "loss": 3.676854372024536,
+ "step": 3003
+ },
+ {
+ "epoch": 41.72695500218436,
+ "grad_norm": 0.22567597031593323,
+ "learning_rate": 0.0006,
+ "loss": 3.6467485427856445,
+ "step": 3004
+ },
+ {
+ "epoch": 41.74093490607252,
+ "grad_norm": 0.22923491895198822,
+ "learning_rate": 0.0006,
+ "loss": 3.663224697113037,
+ "step": 3005
+ },
+ {
+ "epoch": 41.75491480996068,
+ "grad_norm": 0.21511489152908325,
+ "learning_rate": 0.0006,
+ "loss": 3.6290054321289062,
+ "step": 3006
+ },
+ {
+ "epoch": 41.768894713848844,
+ "grad_norm": 0.23855915665626526,
+ "learning_rate": 0.0006,
+ "loss": 3.631225109100342,
+ "step": 3007
+ },
+ {
+ "epoch": 41.782874617737,
+ "grad_norm": 0.22771067917346954,
+ "learning_rate": 0.0006,
+ "loss": 3.652575731277466,
+ "step": 3008
+ },
+ {
+ "epoch": 41.796854521625164,
+ "grad_norm": 0.2006237953901291,
+ "learning_rate": 0.0006,
+ "loss": 3.6883468627929688,
+ "step": 3009
+ },
+ {
+ "epoch": 41.81083442551333,
+ "grad_norm": 0.21182459592819214,
+ "learning_rate": 0.0006,
+ "loss": 3.6443567276000977,
+ "step": 3010
+ },
+ {
+ "epoch": 41.824814329401484,
+ "grad_norm": 0.21083690226078033,
+ "learning_rate": 0.0006,
+ "loss": 3.66660475730896,
+ "step": 3011
+ },
+ {
+ "epoch": 41.83879423328965,
+ "grad_norm": 0.21232296526432037,
+ "learning_rate": 0.0006,
+ "loss": 3.6436524391174316,
+ "step": 3012
+ },
+ {
+ "epoch": 41.8527741371778,
+ "grad_norm": 0.2089361697435379,
+ "learning_rate": 0.0006,
+ "loss": 3.648113250732422,
+ "step": 3013
+ },
+ {
+ "epoch": 41.86675404106597,
+ "grad_norm": 0.21517033874988556,
+ "learning_rate": 0.0006,
+ "loss": 3.6382269859313965,
+ "step": 3014
+ },
+ {
+ "epoch": 41.88073394495413,
+ "grad_norm": 0.1930733323097229,
+ "learning_rate": 0.0006,
+ "loss": 3.639441967010498,
+ "step": 3015
+ },
+ {
+ "epoch": 41.89471384884229,
+ "grad_norm": 0.18282832205295563,
+ "learning_rate": 0.0006,
+ "loss": 3.652860164642334,
+ "step": 3016
+ },
+ {
+ "epoch": 41.90869375273045,
+ "grad_norm": 0.18649716675281525,
+ "learning_rate": 0.0006,
+ "loss": 3.6335558891296387,
+ "step": 3017
+ },
+ {
+ "epoch": 41.92267365661861,
+ "grad_norm": 0.18873754143714905,
+ "learning_rate": 0.0006,
+ "loss": 3.6743149757385254,
+ "step": 3018
+ },
+ {
+ "epoch": 41.93665356050677,
+ "grad_norm": 0.1937907189130783,
+ "learning_rate": 0.0006,
+ "loss": 3.6749300956726074,
+ "step": 3019
+ },
+ {
+ "epoch": 41.95063346439493,
+ "grad_norm": 0.20620854198932648,
+ "learning_rate": 0.0006,
+ "loss": 3.6591262817382812,
+ "step": 3020
+ },
+ {
+ "epoch": 41.964613368283096,
+ "grad_norm": 0.18541009724140167,
+ "learning_rate": 0.0006,
+ "loss": 3.647010326385498,
+ "step": 3021
+ },
+ {
+ "epoch": 41.97859327217125,
+ "grad_norm": 0.19224928319454193,
+ "learning_rate": 0.0006,
+ "loss": 3.629920482635498,
+ "step": 3022
+ },
+ {
+ "epoch": 41.992573176059416,
+ "grad_norm": 0.21286419034004211,
+ "learning_rate": 0.0006,
+ "loss": 3.6516964435577393,
+ "step": 3023
+ },
+ {
+ "epoch": 42.0,
+ "grad_norm": 0.24787360429763794,
+ "learning_rate": 0.0006,
+ "loss": 3.6378865242004395,
+ "step": 3024
+ },
+ {
+ "epoch": 42.0,
+ "eval_loss": 3.9910318851470947,
+ "eval_runtime": 43.7914,
+ "eval_samples_per_second": 55.764,
+ "eval_steps_per_second": 3.494,
+ "step": 3024
+ },
+ {
+ "epoch": 42.01397990388816,
+ "grad_norm": 0.21036255359649658,
+ "learning_rate": 0.0006,
+ "loss": 3.6604344844818115,
+ "step": 3025
+ },
+ {
+ "epoch": 42.02795980777632,
+ "grad_norm": 0.22240597009658813,
+ "learning_rate": 0.0006,
+ "loss": 3.6160645484924316,
+ "step": 3026
+ },
+ {
+ "epoch": 42.04193971166448,
+ "grad_norm": 0.2487850785255432,
+ "learning_rate": 0.0006,
+ "loss": 3.6293773651123047,
+ "step": 3027
+ },
+ {
+ "epoch": 42.05591961555265,
+ "grad_norm": 0.27058133482933044,
+ "learning_rate": 0.0006,
+ "loss": 3.5827436447143555,
+ "step": 3028
+ },
+ {
+ "epoch": 42.0698995194408,
+ "grad_norm": 0.25001782178878784,
+ "learning_rate": 0.0006,
+ "loss": 3.5833029747009277,
+ "step": 3029
+ },
+ {
+ "epoch": 42.083879423328966,
+ "grad_norm": 0.23811939358711243,
+ "learning_rate": 0.0006,
+ "loss": 3.605585813522339,
+ "step": 3030
+ },
+ {
+ "epoch": 42.09785932721712,
+ "grad_norm": 0.23279601335525513,
+ "learning_rate": 0.0006,
+ "loss": 3.607205867767334,
+ "step": 3031
+ },
+ {
+ "epoch": 42.111839231105286,
+ "grad_norm": 0.24410508573055267,
+ "learning_rate": 0.0006,
+ "loss": 3.621175765991211,
+ "step": 3032
+ },
+ {
+ "epoch": 42.12581913499345,
+ "grad_norm": 0.24782028794288635,
+ "learning_rate": 0.0006,
+ "loss": 3.6236867904663086,
+ "step": 3033
+ },
+ {
+ "epoch": 42.139799038881605,
+ "grad_norm": 0.2301972657442093,
+ "learning_rate": 0.0006,
+ "loss": 3.603853464126587,
+ "step": 3034
+ },
+ {
+ "epoch": 42.15377894276977,
+ "grad_norm": 0.21988637745380402,
+ "learning_rate": 0.0006,
+ "loss": 3.600142002105713,
+ "step": 3035
+ },
+ {
+ "epoch": 42.16775884665793,
+ "grad_norm": 0.22623786330223083,
+ "learning_rate": 0.0006,
+ "loss": 3.61971116065979,
+ "step": 3036
+ },
+ {
+ "epoch": 42.18173875054609,
+ "grad_norm": 0.21844688057899475,
+ "learning_rate": 0.0006,
+ "loss": 3.61320161819458,
+ "step": 3037
+ },
+ {
+ "epoch": 42.19571865443425,
+ "grad_norm": 0.20444536209106445,
+ "learning_rate": 0.0006,
+ "loss": 3.6179633140563965,
+ "step": 3038
+ },
+ {
+ "epoch": 42.20969855832241,
+ "grad_norm": 0.22862036526203156,
+ "learning_rate": 0.0006,
+ "loss": 3.605433940887451,
+ "step": 3039
+ },
+ {
+ "epoch": 42.22367846221057,
+ "grad_norm": 0.2906605005264282,
+ "learning_rate": 0.0006,
+ "loss": 3.6279449462890625,
+ "step": 3040
+ },
+ {
+ "epoch": 42.237658366098735,
+ "grad_norm": 0.29074418544769287,
+ "learning_rate": 0.0006,
+ "loss": 3.5959763526916504,
+ "step": 3041
+ },
+ {
+ "epoch": 42.25163826998689,
+ "grad_norm": 0.1994444876909256,
+ "learning_rate": 0.0006,
+ "loss": 3.5858588218688965,
+ "step": 3042
+ },
+ {
+ "epoch": 42.265618173875055,
+ "grad_norm": 0.20793452858924866,
+ "learning_rate": 0.0006,
+ "loss": 3.604630470275879,
+ "step": 3043
+ },
+ {
+ "epoch": 42.27959807776322,
+ "grad_norm": 0.2119535505771637,
+ "learning_rate": 0.0006,
+ "loss": 3.6287126541137695,
+ "step": 3044
+ },
+ {
+ "epoch": 42.293577981651374,
+ "grad_norm": 0.21092535555362701,
+ "learning_rate": 0.0006,
+ "loss": 3.646294593811035,
+ "step": 3045
+ },
+ {
+ "epoch": 42.30755788553954,
+ "grad_norm": 0.21474479138851166,
+ "learning_rate": 0.0006,
+ "loss": 3.6364355087280273,
+ "step": 3046
+ },
+ {
+ "epoch": 42.3215377894277,
+ "grad_norm": 0.21100781857967377,
+ "learning_rate": 0.0006,
+ "loss": 3.622528553009033,
+ "step": 3047
+ },
+ {
+ "epoch": 42.33551769331586,
+ "grad_norm": 0.20739853382110596,
+ "learning_rate": 0.0006,
+ "loss": 3.6261959075927734,
+ "step": 3048
+ },
+ {
+ "epoch": 42.34949759720402,
+ "grad_norm": 0.22264131903648376,
+ "learning_rate": 0.0006,
+ "loss": 3.6195173263549805,
+ "step": 3049
+ },
+ {
+ "epoch": 42.36347750109218,
+ "grad_norm": 0.23696285486221313,
+ "learning_rate": 0.0006,
+ "loss": 3.631103515625,
+ "step": 3050
+ },
+ {
+ "epoch": 42.37745740498034,
+ "grad_norm": 0.2124902606010437,
+ "learning_rate": 0.0006,
+ "loss": 3.6490437984466553,
+ "step": 3051
+ },
+ {
+ "epoch": 42.391437308868504,
+ "grad_norm": 0.18831083178520203,
+ "learning_rate": 0.0006,
+ "loss": 3.628459930419922,
+ "step": 3052
+ },
+ {
+ "epoch": 42.40541721275666,
+ "grad_norm": 0.20390060544013977,
+ "learning_rate": 0.0006,
+ "loss": 3.6348538398742676,
+ "step": 3053
+ },
+ {
+ "epoch": 42.419397116644824,
+ "grad_norm": 0.2205851823091507,
+ "learning_rate": 0.0006,
+ "loss": 3.6286797523498535,
+ "step": 3054
+ },
+ {
+ "epoch": 42.43337702053299,
+ "grad_norm": 0.21518434584140778,
+ "learning_rate": 0.0006,
+ "loss": 3.5918965339660645,
+ "step": 3055
+ },
+ {
+ "epoch": 42.44735692442114,
+ "grad_norm": 0.2342296987771988,
+ "learning_rate": 0.0006,
+ "loss": 3.6364407539367676,
+ "step": 3056
+ },
+ {
+ "epoch": 42.46133682830931,
+ "grad_norm": 0.2304094135761261,
+ "learning_rate": 0.0006,
+ "loss": 3.6561477184295654,
+ "step": 3057
+ },
+ {
+ "epoch": 42.47531673219746,
+ "grad_norm": 0.20882441103458405,
+ "learning_rate": 0.0006,
+ "loss": 3.611250638961792,
+ "step": 3058
+ },
+ {
+ "epoch": 42.489296636085626,
+ "grad_norm": 0.24346643686294556,
+ "learning_rate": 0.0006,
+ "loss": 3.580082416534424,
+ "step": 3059
+ },
+ {
+ "epoch": 42.50327653997379,
+ "grad_norm": 0.260711133480072,
+ "learning_rate": 0.0006,
+ "loss": 3.6179792881011963,
+ "step": 3060
+ },
+ {
+ "epoch": 42.517256443861946,
+ "grad_norm": 0.21223759651184082,
+ "learning_rate": 0.0006,
+ "loss": 3.6153154373168945,
+ "step": 3061
+ },
+ {
+ "epoch": 42.53123634775011,
+ "grad_norm": 0.21429137885570526,
+ "learning_rate": 0.0006,
+ "loss": 3.6003379821777344,
+ "step": 3062
+ },
+ {
+ "epoch": 42.54521625163827,
+ "grad_norm": 0.23659434914588928,
+ "learning_rate": 0.0006,
+ "loss": 3.6540589332580566,
+ "step": 3063
+ },
+ {
+ "epoch": 42.55919615552643,
+ "grad_norm": 0.280344158411026,
+ "learning_rate": 0.0006,
+ "loss": 3.6406192779541016,
+ "step": 3064
+ },
+ {
+ "epoch": 42.57317605941459,
+ "grad_norm": 0.2903953194618225,
+ "learning_rate": 0.0006,
+ "loss": 3.643479824066162,
+ "step": 3065
+ },
+ {
+ "epoch": 42.58715596330275,
+ "grad_norm": 0.24958311021327972,
+ "learning_rate": 0.0006,
+ "loss": 3.6320221424102783,
+ "step": 3066
+ },
+ {
+ "epoch": 42.60113586719091,
+ "grad_norm": 0.22525225579738617,
+ "learning_rate": 0.0006,
+ "loss": 3.641676425933838,
+ "step": 3067
+ },
+ {
+ "epoch": 42.615115771079076,
+ "grad_norm": 0.23025161027908325,
+ "learning_rate": 0.0006,
+ "loss": 3.6465210914611816,
+ "step": 3068
+ },
+ {
+ "epoch": 42.62909567496723,
+ "grad_norm": 0.21947328746318817,
+ "learning_rate": 0.0006,
+ "loss": 3.667877435684204,
+ "step": 3069
+ },
+ {
+ "epoch": 42.643075578855395,
+ "grad_norm": 0.22809366881847382,
+ "learning_rate": 0.0006,
+ "loss": 3.663166046142578,
+ "step": 3070
+ },
+ {
+ "epoch": 42.65705548274356,
+ "grad_norm": 0.21938708424568176,
+ "learning_rate": 0.0006,
+ "loss": 3.619001865386963,
+ "step": 3071
+ },
+ {
+ "epoch": 42.671035386631715,
+ "grad_norm": 0.231620192527771,
+ "learning_rate": 0.0006,
+ "loss": 3.652332305908203,
+ "step": 3072
+ },
+ {
+ "epoch": 42.68501529051988,
+ "grad_norm": 0.23683936893939972,
+ "learning_rate": 0.0006,
+ "loss": 3.6633410453796387,
+ "step": 3073
+ },
+ {
+ "epoch": 42.69899519440804,
+ "grad_norm": 0.23752044141292572,
+ "learning_rate": 0.0006,
+ "loss": 3.646064281463623,
+ "step": 3074
+ },
+ {
+ "epoch": 42.7129750982962,
+ "grad_norm": 0.23041971027851105,
+ "learning_rate": 0.0006,
+ "loss": 3.6431851387023926,
+ "step": 3075
+ },
+ {
+ "epoch": 42.72695500218436,
+ "grad_norm": 0.220438614487648,
+ "learning_rate": 0.0006,
+ "loss": 3.6499950885772705,
+ "step": 3076
+ },
+ {
+ "epoch": 42.74093490607252,
+ "grad_norm": 0.24297107756137848,
+ "learning_rate": 0.0006,
+ "loss": 3.6655125617980957,
+ "step": 3077
+ },
+ {
+ "epoch": 42.75491480996068,
+ "grad_norm": 0.21835893392562866,
+ "learning_rate": 0.0006,
+ "loss": 3.61672043800354,
+ "step": 3078
+ },
+ {
+ "epoch": 42.768894713848844,
+ "grad_norm": 0.22490793466567993,
+ "learning_rate": 0.0006,
+ "loss": 3.652825355529785,
+ "step": 3079
+ },
+ {
+ "epoch": 42.782874617737,
+ "grad_norm": 0.2246086746454239,
+ "learning_rate": 0.0006,
+ "loss": 3.6290056705474854,
+ "step": 3080
+ },
+ {
+ "epoch": 42.796854521625164,
+ "grad_norm": 0.21527042984962463,
+ "learning_rate": 0.0006,
+ "loss": 3.6587281227111816,
+ "step": 3081
+ },
+ {
+ "epoch": 42.81083442551333,
+ "grad_norm": 0.19586899876594543,
+ "learning_rate": 0.0006,
+ "loss": 3.639626979827881,
+ "step": 3082
+ },
+ {
+ "epoch": 42.824814329401484,
+ "grad_norm": 0.20881155133247375,
+ "learning_rate": 0.0006,
+ "loss": 3.6305861473083496,
+ "step": 3083
+ },
+ {
+ "epoch": 42.83879423328965,
+ "grad_norm": 0.20094981789588928,
+ "learning_rate": 0.0006,
+ "loss": 3.609614849090576,
+ "step": 3084
+ },
+ {
+ "epoch": 42.8527741371778,
+ "grad_norm": 0.21786150336265564,
+ "learning_rate": 0.0006,
+ "loss": 3.6423556804656982,
+ "step": 3085
+ },
+ {
+ "epoch": 42.86675404106597,
+ "grad_norm": 0.24493595957756042,
+ "learning_rate": 0.0006,
+ "loss": 3.631321668624878,
+ "step": 3086
+ },
+ {
+ "epoch": 42.88073394495413,
+ "grad_norm": 0.2437327355146408,
+ "learning_rate": 0.0006,
+ "loss": 3.6624178886413574,
+ "step": 3087
+ },
+ {
+ "epoch": 42.89471384884229,
+ "grad_norm": 0.21020543575286865,
+ "learning_rate": 0.0006,
+ "loss": 3.6567513942718506,
+ "step": 3088
+ },
+ {
+ "epoch": 42.90869375273045,
+ "grad_norm": 0.18977083265781403,
+ "learning_rate": 0.0006,
+ "loss": 3.6268601417541504,
+ "step": 3089
+ },
+ {
+ "epoch": 42.92267365661861,
+ "grad_norm": 0.2211192399263382,
+ "learning_rate": 0.0006,
+ "loss": 3.6690402030944824,
+ "step": 3090
+ },
+ {
+ "epoch": 42.93665356050677,
+ "grad_norm": 0.2695990204811096,
+ "learning_rate": 0.0006,
+ "loss": 3.667701244354248,
+ "step": 3091
+ },
+ {
+ "epoch": 42.95063346439493,
+ "grad_norm": 0.25910887122154236,
+ "learning_rate": 0.0006,
+ "loss": 3.627504587173462,
+ "step": 3092
+ },
+ {
+ "epoch": 42.964613368283096,
+ "grad_norm": 0.2466248720884323,
+ "learning_rate": 0.0006,
+ "loss": 3.6462182998657227,
+ "step": 3093
+ },
+ {
+ "epoch": 42.97859327217125,
+ "grad_norm": 0.22997038066387177,
+ "learning_rate": 0.0006,
+ "loss": 3.647430896759033,
+ "step": 3094
+ },
+ {
+ "epoch": 42.992573176059416,
+ "grad_norm": 0.1989113837480545,
+ "learning_rate": 0.0006,
+ "loss": 3.6502084732055664,
+ "step": 3095
+ },
+ {
+ "epoch": 43.0,
+ "grad_norm": 0.22976496815681458,
+ "learning_rate": 0.0006,
+ "loss": 3.6963884830474854,
+ "step": 3096
+ },
+ {
+ "epoch": 43.0,
+ "eval_loss": 3.9656779766082764,
+ "eval_runtime": 43.9281,
+ "eval_samples_per_second": 55.591,
+ "eval_steps_per_second": 3.483,
+ "step": 3096
+ },
+ {
+ "epoch": 43.01397990388816,
+ "grad_norm": 0.2862325608730316,
+ "learning_rate": 0.0006,
+ "loss": 3.581247568130493,
+ "step": 3097
+ },
+ {
+ "epoch": 43.02795980777632,
+ "grad_norm": 0.3867015540599823,
+ "learning_rate": 0.0006,
+ "loss": 3.611076593399048,
+ "step": 3098
+ },
+ {
+ "epoch": 43.04193971166448,
+ "grad_norm": 0.4139448404312134,
+ "learning_rate": 0.0006,
+ "loss": 3.625164031982422,
+ "step": 3099
+ },
+ {
+ "epoch": 43.05591961555265,
+ "grad_norm": 0.292407363653183,
+ "learning_rate": 0.0006,
+ "loss": 3.615546703338623,
+ "step": 3100
+ },
+ {
+ "epoch": 43.0698995194408,
+ "grad_norm": 0.24272124469280243,
+ "learning_rate": 0.0006,
+ "loss": 3.5965943336486816,
+ "step": 3101
+ },
+ {
+ "epoch": 43.083879423328966,
+ "grad_norm": 0.2761254608631134,
+ "learning_rate": 0.0006,
+ "loss": 3.605706214904785,
+ "step": 3102
+ },
+ {
+ "epoch": 43.09785932721712,
+ "grad_norm": 0.25232183933258057,
+ "learning_rate": 0.0006,
+ "loss": 3.6252012252807617,
+ "step": 3103
+ },
+ {
+ "epoch": 43.111839231105286,
+ "grad_norm": 0.248970165848732,
+ "learning_rate": 0.0006,
+ "loss": 3.6028337478637695,
+ "step": 3104
+ },
+ {
+ "epoch": 43.12581913499345,
+ "grad_norm": 0.22088921070098877,
+ "learning_rate": 0.0006,
+ "loss": 3.591614007949829,
+ "step": 3105
+ },
+ {
+ "epoch": 43.139799038881605,
+ "grad_norm": 0.21528655290603638,
+ "learning_rate": 0.0006,
+ "loss": 3.6237306594848633,
+ "step": 3106
+ },
+ {
+ "epoch": 43.15377894276977,
+ "grad_norm": 0.22799135744571686,
+ "learning_rate": 0.0006,
+ "loss": 3.5968847274780273,
+ "step": 3107
+ },
+ {
+ "epoch": 43.16775884665793,
+ "grad_norm": 0.23102127015590668,
+ "learning_rate": 0.0006,
+ "loss": 3.6046414375305176,
+ "step": 3108
+ },
+ {
+ "epoch": 43.18173875054609,
+ "grad_norm": 0.22876501083374023,
+ "learning_rate": 0.0006,
+ "loss": 3.635608196258545,
+ "step": 3109
+ },
+ {
+ "epoch": 43.19571865443425,
+ "grad_norm": 0.24920420348644257,
+ "learning_rate": 0.0006,
+ "loss": 3.628662109375,
+ "step": 3110
+ },
+ {
+ "epoch": 43.20969855832241,
+ "grad_norm": 0.2527749538421631,
+ "learning_rate": 0.0006,
+ "loss": 3.6109046936035156,
+ "step": 3111
+ },
+ {
+ "epoch": 43.22367846221057,
+ "grad_norm": 0.22529229521751404,
+ "learning_rate": 0.0006,
+ "loss": 3.6536030769348145,
+ "step": 3112
+ },
+ {
+ "epoch": 43.237658366098735,
+ "grad_norm": 0.20031821727752686,
+ "learning_rate": 0.0006,
+ "loss": 3.6328792572021484,
+ "step": 3113
+ },
+ {
+ "epoch": 43.25163826998689,
+ "grad_norm": 0.21075189113616943,
+ "learning_rate": 0.0006,
+ "loss": 3.6200530529022217,
+ "step": 3114
+ },
+ {
+ "epoch": 43.265618173875055,
+ "grad_norm": 0.21164856851100922,
+ "learning_rate": 0.0006,
+ "loss": 3.6276001930236816,
+ "step": 3115
+ },
+ {
+ "epoch": 43.27959807776322,
+ "grad_norm": 0.19306758046150208,
+ "learning_rate": 0.0006,
+ "loss": 3.608675956726074,
+ "step": 3116
+ },
+ {
+ "epoch": 43.293577981651374,
+ "grad_norm": 0.20288796722888947,
+ "learning_rate": 0.0006,
+ "loss": 3.6057004928588867,
+ "step": 3117
+ },
+ {
+ "epoch": 43.30755788553954,
+ "grad_norm": 0.1901484876871109,
+ "learning_rate": 0.0006,
+ "loss": 3.6191725730895996,
+ "step": 3118
+ },
+ {
+ "epoch": 43.3215377894277,
+ "grad_norm": 0.19438181817531586,
+ "learning_rate": 0.0006,
+ "loss": 3.5814337730407715,
+ "step": 3119
+ },
+ {
+ "epoch": 43.33551769331586,
+ "grad_norm": 0.19924484193325043,
+ "learning_rate": 0.0006,
+ "loss": 3.6168713569641113,
+ "step": 3120
+ },
+ {
+ "epoch": 43.34949759720402,
+ "grad_norm": 0.20757409930229187,
+ "learning_rate": 0.0006,
+ "loss": 3.6281509399414062,
+ "step": 3121
+ },
+ {
+ "epoch": 43.36347750109218,
+ "grad_norm": 0.22500184178352356,
+ "learning_rate": 0.0006,
+ "loss": 3.635101795196533,
+ "step": 3122
+ },
+ {
+ "epoch": 43.37745740498034,
+ "grad_norm": 0.22061555087566376,
+ "learning_rate": 0.0006,
+ "loss": 3.630622386932373,
+ "step": 3123
+ },
+ {
+ "epoch": 43.391437308868504,
+ "grad_norm": 0.2094152420759201,
+ "learning_rate": 0.0006,
+ "loss": 3.581803798675537,
+ "step": 3124
+ },
+ {
+ "epoch": 43.40541721275666,
+ "grad_norm": 0.19607678055763245,
+ "learning_rate": 0.0006,
+ "loss": 3.6149864196777344,
+ "step": 3125
+ },
+ {
+ "epoch": 43.419397116644824,
+ "grad_norm": 0.18985028564929962,
+ "learning_rate": 0.0006,
+ "loss": 3.6338040828704834,
+ "step": 3126
+ },
+ {
+ "epoch": 43.43337702053299,
+ "grad_norm": 0.20490778982639313,
+ "learning_rate": 0.0006,
+ "loss": 3.63275146484375,
+ "step": 3127
+ },
+ {
+ "epoch": 43.44735692442114,
+ "grad_norm": 0.24385297298431396,
+ "learning_rate": 0.0006,
+ "loss": 3.6412134170532227,
+ "step": 3128
+ },
+ {
+ "epoch": 43.46133682830931,
+ "grad_norm": 0.243601992726326,
+ "learning_rate": 0.0006,
+ "loss": 3.594238758087158,
+ "step": 3129
+ },
+ {
+ "epoch": 43.47531673219746,
+ "grad_norm": 0.21314913034439087,
+ "learning_rate": 0.0006,
+ "loss": 3.5962629318237305,
+ "step": 3130
+ },
+ {
+ "epoch": 43.489296636085626,
+ "grad_norm": 0.20499329268932343,
+ "learning_rate": 0.0006,
+ "loss": 3.61600923538208,
+ "step": 3131
+ },
+ {
+ "epoch": 43.50327653997379,
+ "grad_norm": 0.20199540257453918,
+ "learning_rate": 0.0006,
+ "loss": 3.638469934463501,
+ "step": 3132
+ },
+ {
+ "epoch": 43.517256443861946,
+ "grad_norm": 0.19932983815670013,
+ "learning_rate": 0.0006,
+ "loss": 3.619145393371582,
+ "step": 3133
+ },
+ {
+ "epoch": 43.53123634775011,
+ "grad_norm": 0.20401954650878906,
+ "learning_rate": 0.0006,
+ "loss": 3.643700122833252,
+ "step": 3134
+ },
+ {
+ "epoch": 43.54521625163827,
+ "grad_norm": 0.20784904062747955,
+ "learning_rate": 0.0006,
+ "loss": 3.619272232055664,
+ "step": 3135
+ },
+ {
+ "epoch": 43.55919615552643,
+ "grad_norm": 0.21003122627735138,
+ "learning_rate": 0.0006,
+ "loss": 3.629542827606201,
+ "step": 3136
+ },
+ {
+ "epoch": 43.57317605941459,
+ "grad_norm": 0.2220298945903778,
+ "learning_rate": 0.0006,
+ "loss": 3.655543804168701,
+ "step": 3137
+ },
+ {
+ "epoch": 43.58715596330275,
+ "grad_norm": 0.21159163117408752,
+ "learning_rate": 0.0006,
+ "loss": 3.6092495918273926,
+ "step": 3138
+ },
+ {
+ "epoch": 43.60113586719091,
+ "grad_norm": 0.19462746381759644,
+ "learning_rate": 0.0006,
+ "loss": 3.6447129249572754,
+ "step": 3139
+ },
+ {
+ "epoch": 43.615115771079076,
+ "grad_norm": 0.20523829758167267,
+ "learning_rate": 0.0006,
+ "loss": 3.6292669773101807,
+ "step": 3140
+ },
+ {
+ "epoch": 43.62909567496723,
+ "grad_norm": 0.2172321230173111,
+ "learning_rate": 0.0006,
+ "loss": 3.6144580841064453,
+ "step": 3141
+ },
+ {
+ "epoch": 43.643075578855395,
+ "grad_norm": 0.21751564741134644,
+ "learning_rate": 0.0006,
+ "loss": 3.6381068229675293,
+ "step": 3142
+ },
+ {
+ "epoch": 43.65705548274356,
+ "grad_norm": 0.1914236694574356,
+ "learning_rate": 0.0006,
+ "loss": 3.6392078399658203,
+ "step": 3143
+ },
+ {
+ "epoch": 43.671035386631715,
+ "grad_norm": 0.19792547821998596,
+ "learning_rate": 0.0006,
+ "loss": 3.6394457817077637,
+ "step": 3144
+ },
+ {
+ "epoch": 43.68501529051988,
+ "grad_norm": 0.2106214165687561,
+ "learning_rate": 0.0006,
+ "loss": 3.626147747039795,
+ "step": 3145
+ },
+ {
+ "epoch": 43.69899519440804,
+ "grad_norm": 0.21802955865859985,
+ "learning_rate": 0.0006,
+ "loss": 3.63372802734375,
+ "step": 3146
+ },
+ {
+ "epoch": 43.7129750982962,
+ "grad_norm": 0.21498727798461914,
+ "learning_rate": 0.0006,
+ "loss": 3.6193063259124756,
+ "step": 3147
+ },
+ {
+ "epoch": 43.72695500218436,
+ "grad_norm": 0.2176690250635147,
+ "learning_rate": 0.0006,
+ "loss": 3.6431519985198975,
+ "step": 3148
+ },
+ {
+ "epoch": 43.74093490607252,
+ "grad_norm": 0.26883506774902344,
+ "learning_rate": 0.0006,
+ "loss": 3.6216721534729004,
+ "step": 3149
+ },
+ {
+ "epoch": 43.75491480996068,
+ "grad_norm": 0.23485299944877625,
+ "learning_rate": 0.0006,
+ "loss": 3.6361191272735596,
+ "step": 3150
+ },
+ {
+ "epoch": 43.768894713848844,
+ "grad_norm": 0.20496341586112976,
+ "learning_rate": 0.0006,
+ "loss": 3.6258792877197266,
+ "step": 3151
+ },
+ {
+ "epoch": 43.782874617737,
+ "grad_norm": 0.21792510151863098,
+ "learning_rate": 0.0006,
+ "loss": 3.6522839069366455,
+ "step": 3152
+ },
+ {
+ "epoch": 43.796854521625164,
+ "grad_norm": 0.2589452564716339,
+ "learning_rate": 0.0006,
+ "loss": 3.651235580444336,
+ "step": 3153
+ },
+ {
+ "epoch": 43.81083442551333,
+ "grad_norm": 0.24883611500263214,
+ "learning_rate": 0.0006,
+ "loss": 3.6382546424865723,
+ "step": 3154
+ },
+ {
+ "epoch": 43.824814329401484,
+ "grad_norm": 0.22466720640659332,
+ "learning_rate": 0.0006,
+ "loss": 3.6232261657714844,
+ "step": 3155
+ },
+ {
+ "epoch": 43.83879423328965,
+ "grad_norm": 0.19477292895317078,
+ "learning_rate": 0.0006,
+ "loss": 3.6350135803222656,
+ "step": 3156
+ },
+ {
+ "epoch": 43.8527741371778,
+ "grad_norm": 0.20302540063858032,
+ "learning_rate": 0.0006,
+ "loss": 3.638143539428711,
+ "step": 3157
+ },
+ {
+ "epoch": 43.86675404106597,
+ "grad_norm": 0.2112276554107666,
+ "learning_rate": 0.0006,
+ "loss": 3.6415610313415527,
+ "step": 3158
+ },
+ {
+ "epoch": 43.88073394495413,
+ "grad_norm": 0.20544779300689697,
+ "learning_rate": 0.0006,
+ "loss": 3.6437134742736816,
+ "step": 3159
+ },
+ {
+ "epoch": 43.89471384884229,
+ "grad_norm": 0.2320292890071869,
+ "learning_rate": 0.0006,
+ "loss": 3.6178359985351562,
+ "step": 3160
+ },
+ {
+ "epoch": 43.90869375273045,
+ "grad_norm": 0.25862693786621094,
+ "learning_rate": 0.0006,
+ "loss": 3.618229389190674,
+ "step": 3161
+ },
+ {
+ "epoch": 43.92267365661861,
+ "grad_norm": 0.2741934061050415,
+ "learning_rate": 0.0006,
+ "loss": 3.6046690940856934,
+ "step": 3162
+ },
+ {
+ "epoch": 43.93665356050677,
+ "grad_norm": 0.24312593042850494,
+ "learning_rate": 0.0006,
+ "loss": 3.5835556983947754,
+ "step": 3163
+ },
+ {
+ "epoch": 43.95063346439493,
+ "grad_norm": 0.22174517810344696,
+ "learning_rate": 0.0006,
+ "loss": 3.6505162715911865,
+ "step": 3164
+ },
+ {
+ "epoch": 43.964613368283096,
+ "grad_norm": 0.22016975283622742,
+ "learning_rate": 0.0006,
+ "loss": 3.6385562419891357,
+ "step": 3165
+ },
+ {
+ "epoch": 43.97859327217125,
+ "grad_norm": 0.23034313321113586,
+ "learning_rate": 0.0006,
+ "loss": 3.6345865726470947,
+ "step": 3166
+ },
+ {
+ "epoch": 43.992573176059416,
+ "grad_norm": 0.21236231923103333,
+ "learning_rate": 0.0006,
+ "loss": 3.6337084770202637,
+ "step": 3167
+ },
+ {
+ "epoch": 44.0,
+ "grad_norm": 0.2344549298286438,
+ "learning_rate": 0.0006,
+ "loss": 3.677978515625,
+ "step": 3168
+ },
+ {
+ "epoch": 44.0,
+ "eval_loss": 3.9817888736724854,
+ "eval_runtime": 44.4396,
+ "eval_samples_per_second": 54.951,
+ "eval_steps_per_second": 3.443,
+ "step": 3168
+ },
+ {
+ "epoch": 44.01397990388816,
+ "grad_norm": 0.19790801405906677,
+ "learning_rate": 0.0006,
+ "loss": 3.590817451477051,
+ "step": 3169
+ },
+ {
+ "epoch": 44.02795980777632,
+ "grad_norm": 0.22922387719154358,
+ "learning_rate": 0.0006,
+ "loss": 3.643888473510742,
+ "step": 3170
+ },
+ {
+ "epoch": 44.04193971166448,
+ "grad_norm": 0.24750149250030518,
+ "learning_rate": 0.0006,
+ "loss": 3.596278667449951,
+ "step": 3171
+ },
+ {
+ "epoch": 44.05591961555265,
+ "grad_norm": 0.2511967420578003,
+ "learning_rate": 0.0006,
+ "loss": 3.6138253211975098,
+ "step": 3172
+ },
+ {
+ "epoch": 44.0698995194408,
+ "grad_norm": 0.2530326843261719,
+ "learning_rate": 0.0006,
+ "loss": 3.5710060596466064,
+ "step": 3173
+ },
+ {
+ "epoch": 44.083879423328966,
+ "grad_norm": 0.2629041373729706,
+ "learning_rate": 0.0006,
+ "loss": 3.61676025390625,
+ "step": 3174
+ },
+ {
+ "epoch": 44.09785932721712,
+ "grad_norm": 0.27373939752578735,
+ "learning_rate": 0.0006,
+ "loss": 3.613091230392456,
+ "step": 3175
+ },
+ {
+ "epoch": 44.111839231105286,
+ "grad_norm": 0.24354346096515656,
+ "learning_rate": 0.0006,
+ "loss": 3.6133360862731934,
+ "step": 3176
+ },
+ {
+ "epoch": 44.12581913499345,
+ "grad_norm": 0.21540892124176025,
+ "learning_rate": 0.0006,
+ "loss": 3.6367645263671875,
+ "step": 3177
+ },
+ {
+ "epoch": 44.139799038881605,
+ "grad_norm": 0.22251278162002563,
+ "learning_rate": 0.0006,
+ "loss": 3.6266322135925293,
+ "step": 3178
+ },
+ {
+ "epoch": 44.15377894276977,
+ "grad_norm": 0.26196029782295227,
+ "learning_rate": 0.0006,
+ "loss": 3.616487979888916,
+ "step": 3179
+ },
+ {
+ "epoch": 44.16775884665793,
+ "grad_norm": 0.2614341080188751,
+ "learning_rate": 0.0006,
+ "loss": 3.5902786254882812,
+ "step": 3180
+ },
+ {
+ "epoch": 44.18173875054609,
+ "grad_norm": 0.23517177999019623,
+ "learning_rate": 0.0006,
+ "loss": 3.610124111175537,
+ "step": 3181
+ },
+ {
+ "epoch": 44.19571865443425,
+ "grad_norm": 0.20091469585895538,
+ "learning_rate": 0.0006,
+ "loss": 3.5861713886260986,
+ "step": 3182
+ },
+ {
+ "epoch": 44.20969855832241,
+ "grad_norm": 0.19659830629825592,
+ "learning_rate": 0.0006,
+ "loss": 3.6157889366149902,
+ "step": 3183
+ },
+ {
+ "epoch": 44.22367846221057,
+ "grad_norm": 0.20690861344337463,
+ "learning_rate": 0.0006,
+ "loss": 3.5710649490356445,
+ "step": 3184
+ },
+ {
+ "epoch": 44.237658366098735,
+ "grad_norm": 0.2478247433900833,
+ "learning_rate": 0.0006,
+ "loss": 3.609031915664673,
+ "step": 3185
+ },
+ {
+ "epoch": 44.25163826998689,
+ "grad_norm": 0.2678471505641937,
+ "learning_rate": 0.0006,
+ "loss": 3.6412887573242188,
+ "step": 3186
+ },
+ {
+ "epoch": 44.265618173875055,
+ "grad_norm": 0.21856079995632172,
+ "learning_rate": 0.0006,
+ "loss": 3.6113123893737793,
+ "step": 3187
+ },
+ {
+ "epoch": 44.27959807776322,
+ "grad_norm": 0.23104850947856903,
+ "learning_rate": 0.0006,
+ "loss": 3.6022086143493652,
+ "step": 3188
+ },
+ {
+ "epoch": 44.293577981651374,
+ "grad_norm": 0.2380223423242569,
+ "learning_rate": 0.0006,
+ "loss": 3.598735809326172,
+ "step": 3189
+ },
+ {
+ "epoch": 44.30755788553954,
+ "grad_norm": 0.23005320131778717,
+ "learning_rate": 0.0006,
+ "loss": 3.595881938934326,
+ "step": 3190
+ },
+ {
+ "epoch": 44.3215377894277,
+ "grad_norm": 0.23327432572841644,
+ "learning_rate": 0.0006,
+ "loss": 3.6198601722717285,
+ "step": 3191
+ },
+ {
+ "epoch": 44.33551769331586,
+ "grad_norm": 0.2272268831729889,
+ "learning_rate": 0.0006,
+ "loss": 3.6135387420654297,
+ "step": 3192
+ },
+ {
+ "epoch": 44.34949759720402,
+ "grad_norm": 0.2518279552459717,
+ "learning_rate": 0.0006,
+ "loss": 3.6084556579589844,
+ "step": 3193
+ },
+ {
+ "epoch": 44.36347750109218,
+ "grad_norm": 0.27668607234954834,
+ "learning_rate": 0.0006,
+ "loss": 3.644430160522461,
+ "step": 3194
+ },
+ {
+ "epoch": 44.37745740498034,
+ "grad_norm": 0.26110342144966125,
+ "learning_rate": 0.0006,
+ "loss": 3.64072322845459,
+ "step": 3195
+ },
+ {
+ "epoch": 44.391437308868504,
+ "grad_norm": 0.22767964005470276,
+ "learning_rate": 0.0006,
+ "loss": 3.5570502281188965,
+ "step": 3196
+ },
+ {
+ "epoch": 44.40541721275666,
+ "grad_norm": 0.2199093997478485,
+ "learning_rate": 0.0006,
+ "loss": 3.558889150619507,
+ "step": 3197
+ },
+ {
+ "epoch": 44.419397116644824,
+ "grad_norm": 0.21653494238853455,
+ "learning_rate": 0.0006,
+ "loss": 3.6215333938598633,
+ "step": 3198
+ },
+ {
+ "epoch": 44.43337702053299,
+ "grad_norm": 0.1958773136138916,
+ "learning_rate": 0.0006,
+ "loss": 3.588468551635742,
+ "step": 3199
+ },
+ {
+ "epoch": 44.44735692442114,
+ "grad_norm": 0.20205403864383698,
+ "learning_rate": 0.0006,
+ "loss": 3.6109578609466553,
+ "step": 3200
+ },
+ {
+ "epoch": 44.46133682830931,
+ "grad_norm": 0.19632115960121155,
+ "learning_rate": 0.0006,
+ "loss": 3.634315013885498,
+ "step": 3201
+ },
+ {
+ "epoch": 44.47531673219746,
+ "grad_norm": 0.19327203929424286,
+ "learning_rate": 0.0006,
+ "loss": 3.6335930824279785,
+ "step": 3202
+ },
+ {
+ "epoch": 44.489296636085626,
+ "grad_norm": 0.19743897020816803,
+ "learning_rate": 0.0006,
+ "loss": 3.6164016723632812,
+ "step": 3203
+ },
+ {
+ "epoch": 44.50327653997379,
+ "grad_norm": 0.20413564145565033,
+ "learning_rate": 0.0006,
+ "loss": 3.663613796234131,
+ "step": 3204
+ },
+ {
+ "epoch": 44.517256443861946,
+ "grad_norm": 0.2057798206806183,
+ "learning_rate": 0.0006,
+ "loss": 3.625131130218506,
+ "step": 3205
+ },
+ {
+ "epoch": 44.53123634775011,
+ "grad_norm": 0.20076915621757507,
+ "learning_rate": 0.0006,
+ "loss": 3.6362178325653076,
+ "step": 3206
+ },
+ {
+ "epoch": 44.54521625163827,
+ "grad_norm": 0.2381955236196518,
+ "learning_rate": 0.0006,
+ "loss": 3.621263265609741,
+ "step": 3207
+ },
+ {
+ "epoch": 44.55919615552643,
+ "grad_norm": 0.27008768916130066,
+ "learning_rate": 0.0006,
+ "loss": 3.6133322715759277,
+ "step": 3208
+ },
+ {
+ "epoch": 44.57317605941459,
+ "grad_norm": 0.25677573680877686,
+ "learning_rate": 0.0006,
+ "loss": 3.6210851669311523,
+ "step": 3209
+ },
+ {
+ "epoch": 44.58715596330275,
+ "grad_norm": 0.21022997796535492,
+ "learning_rate": 0.0006,
+ "loss": 3.626483917236328,
+ "step": 3210
+ },
+ {
+ "epoch": 44.60113586719091,
+ "grad_norm": 0.19918566942214966,
+ "learning_rate": 0.0006,
+ "loss": 3.6321091651916504,
+ "step": 3211
+ },
+ {
+ "epoch": 44.615115771079076,
+ "grad_norm": 0.2114727795124054,
+ "learning_rate": 0.0006,
+ "loss": 3.5767595767974854,
+ "step": 3212
+ },
+ {
+ "epoch": 44.62909567496723,
+ "grad_norm": 0.20968441665172577,
+ "learning_rate": 0.0006,
+ "loss": 3.6040430068969727,
+ "step": 3213
+ },
+ {
+ "epoch": 44.643075578855395,
+ "grad_norm": 0.19996227324008942,
+ "learning_rate": 0.0006,
+ "loss": 3.6688590049743652,
+ "step": 3214
+ },
+ {
+ "epoch": 44.65705548274356,
+ "grad_norm": 0.19998830556869507,
+ "learning_rate": 0.0006,
+ "loss": 3.6349434852600098,
+ "step": 3215
+ },
+ {
+ "epoch": 44.671035386631715,
+ "grad_norm": 0.20812496542930603,
+ "learning_rate": 0.0006,
+ "loss": 3.6363840103149414,
+ "step": 3216
+ },
+ {
+ "epoch": 44.68501529051988,
+ "grad_norm": 0.1988825500011444,
+ "learning_rate": 0.0006,
+ "loss": 3.6180496215820312,
+ "step": 3217
+ },
+ {
+ "epoch": 44.69899519440804,
+ "grad_norm": 0.2114664614200592,
+ "learning_rate": 0.0006,
+ "loss": 3.6362106800079346,
+ "step": 3218
+ },
+ {
+ "epoch": 44.7129750982962,
+ "grad_norm": 0.19847962260246277,
+ "learning_rate": 0.0006,
+ "loss": 3.618500232696533,
+ "step": 3219
+ },
+ {
+ "epoch": 44.72695500218436,
+ "grad_norm": 0.19903887808322906,
+ "learning_rate": 0.0006,
+ "loss": 3.6360888481140137,
+ "step": 3220
+ },
+ {
+ "epoch": 44.74093490607252,
+ "grad_norm": 0.21198545396327972,
+ "learning_rate": 0.0006,
+ "loss": 3.6347005367279053,
+ "step": 3221
+ },
+ {
+ "epoch": 44.75491480996068,
+ "grad_norm": 0.18334898352622986,
+ "learning_rate": 0.0006,
+ "loss": 3.6160783767700195,
+ "step": 3222
+ },
+ {
+ "epoch": 44.768894713848844,
+ "grad_norm": 0.19260665774345398,
+ "learning_rate": 0.0006,
+ "loss": 3.6322834491729736,
+ "step": 3223
+ },
+ {
+ "epoch": 44.782874617737,
+ "grad_norm": 0.2084558755159378,
+ "learning_rate": 0.0006,
+ "loss": 3.615227699279785,
+ "step": 3224
+ },
+ {
+ "epoch": 44.796854521625164,
+ "grad_norm": 0.24538686871528625,
+ "learning_rate": 0.0006,
+ "loss": 3.6387081146240234,
+ "step": 3225
+ },
+ {
+ "epoch": 44.81083442551333,
+ "grad_norm": 0.23291894793510437,
+ "learning_rate": 0.0006,
+ "loss": 3.6245408058166504,
+ "step": 3226
+ },
+ {
+ "epoch": 44.824814329401484,
+ "grad_norm": 0.20715969800949097,
+ "learning_rate": 0.0006,
+ "loss": 3.633620262145996,
+ "step": 3227
+ },
+ {
+ "epoch": 44.83879423328965,
+ "grad_norm": 0.20866821706295013,
+ "learning_rate": 0.0006,
+ "loss": 3.613438129425049,
+ "step": 3228
+ },
+ {
+ "epoch": 44.8527741371778,
+ "grad_norm": 0.2048904299736023,
+ "learning_rate": 0.0006,
+ "loss": 3.668807029724121,
+ "step": 3229
+ },
+ {
+ "epoch": 44.86675404106597,
+ "grad_norm": 0.2073894739151001,
+ "learning_rate": 0.0006,
+ "loss": 3.6000914573669434,
+ "step": 3230
+ },
+ {
+ "epoch": 44.88073394495413,
+ "grad_norm": 0.22017404437065125,
+ "learning_rate": 0.0006,
+ "loss": 3.6024718284606934,
+ "step": 3231
+ },
+ {
+ "epoch": 44.89471384884229,
+ "grad_norm": 0.23971669375896454,
+ "learning_rate": 0.0006,
+ "loss": 3.6339516639709473,
+ "step": 3232
+ },
+ {
+ "epoch": 44.90869375273045,
+ "grad_norm": 0.2258273959159851,
+ "learning_rate": 0.0006,
+ "loss": 3.6480093002319336,
+ "step": 3233
+ },
+ {
+ "epoch": 44.92267365661861,
+ "grad_norm": 0.22079502046108246,
+ "learning_rate": 0.0006,
+ "loss": 3.643446922302246,
+ "step": 3234
+ },
+ {
+ "epoch": 44.93665356050677,
+ "grad_norm": 0.22109337151050568,
+ "learning_rate": 0.0006,
+ "loss": 3.5975499153137207,
+ "step": 3235
+ },
+ {
+ "epoch": 44.95063346439493,
+ "grad_norm": 0.20142309367656708,
+ "learning_rate": 0.0006,
+ "loss": 3.6057305335998535,
+ "step": 3236
+ },
+ {
+ "epoch": 44.964613368283096,
+ "grad_norm": 0.20089569687843323,
+ "learning_rate": 0.0006,
+ "loss": 3.5900750160217285,
+ "step": 3237
+ },
+ {
+ "epoch": 44.97859327217125,
+ "grad_norm": 0.19860075414180756,
+ "learning_rate": 0.0006,
+ "loss": 3.5954184532165527,
+ "step": 3238
+ },
+ {
+ "epoch": 44.992573176059416,
+ "grad_norm": 0.19166013598442078,
+ "learning_rate": 0.0006,
+ "loss": 3.6568803787231445,
+ "step": 3239
+ },
+ {
+ "epoch": 45.0,
+ "grad_norm": 0.22416932880878448,
+ "learning_rate": 0.0006,
+ "loss": 3.6483092308044434,
+ "step": 3240
+ },
+ {
+ "epoch": 45.0,
+ "eval_loss": 3.9821224212646484,
+ "eval_runtime": 44.5415,
+ "eval_samples_per_second": 54.825,
+ "eval_steps_per_second": 3.435,
+ "step": 3240
+ },
+ {
+ "epoch": 45.01397990388816,
+ "grad_norm": 0.2107669562101364,
+ "learning_rate": 0.0006,
+ "loss": 3.5858099460601807,
+ "step": 3241
+ },
+ {
+ "epoch": 45.02795980777632,
+ "grad_norm": 0.20831939578056335,
+ "learning_rate": 0.0006,
+ "loss": 3.5793800354003906,
+ "step": 3242
+ },
+ {
+ "epoch": 45.04193971166448,
+ "grad_norm": 0.2169167846441269,
+ "learning_rate": 0.0006,
+ "loss": 3.601961135864258,
+ "step": 3243
+ },
+ {
+ "epoch": 45.05591961555265,
+ "grad_norm": 0.22451531887054443,
+ "learning_rate": 0.0006,
+ "loss": 3.586371898651123,
+ "step": 3244
+ },
+ {
+ "epoch": 45.0698995194408,
+ "grad_norm": 0.2187003344297409,
+ "learning_rate": 0.0006,
+ "loss": 3.58760929107666,
+ "step": 3245
+ },
+ {
+ "epoch": 45.083879423328966,
+ "grad_norm": 0.22805631160736084,
+ "learning_rate": 0.0006,
+ "loss": 3.554107904434204,
+ "step": 3246
+ },
+ {
+ "epoch": 45.09785932721712,
+ "grad_norm": 0.2573186159133911,
+ "learning_rate": 0.0006,
+ "loss": 3.5815420150756836,
+ "step": 3247
+ },
+ {
+ "epoch": 45.111839231105286,
+ "grad_norm": 0.25940126180648804,
+ "learning_rate": 0.0006,
+ "loss": 3.5754308700561523,
+ "step": 3248
+ },
+ {
+ "epoch": 45.12581913499345,
+ "grad_norm": 0.23834384977817535,
+ "learning_rate": 0.0006,
+ "loss": 3.5857350826263428,
+ "step": 3249
+ },
+ {
+ "epoch": 45.139799038881605,
+ "grad_norm": 0.23342885076999664,
+ "learning_rate": 0.0006,
+ "loss": 3.6116228103637695,
+ "step": 3250
+ },
+ {
+ "epoch": 45.15377894276977,
+ "grad_norm": 0.23284269869327545,
+ "learning_rate": 0.0006,
+ "loss": 3.5778629779815674,
+ "step": 3251
+ },
+ {
+ "epoch": 45.16775884665793,
+ "grad_norm": 0.30510780215263367,
+ "learning_rate": 0.0006,
+ "loss": 3.5888915061950684,
+ "step": 3252
+ },
+ {
+ "epoch": 45.18173875054609,
+ "grad_norm": 0.3462519645690918,
+ "learning_rate": 0.0006,
+ "loss": 3.5955758094787598,
+ "step": 3253
+ },
+ {
+ "epoch": 45.19571865443425,
+ "grad_norm": 0.2795974314212799,
+ "learning_rate": 0.0006,
+ "loss": 3.6222946643829346,
+ "step": 3254
+ },
+ {
+ "epoch": 45.20969855832241,
+ "grad_norm": 0.24624103307724,
+ "learning_rate": 0.0006,
+ "loss": 3.63046932220459,
+ "step": 3255
+ },
+ {
+ "epoch": 45.22367846221057,
+ "grad_norm": 0.23007310926914215,
+ "learning_rate": 0.0006,
+ "loss": 3.652526378631592,
+ "step": 3256
+ },
+ {
+ "epoch": 45.237658366098735,
+ "grad_norm": 0.21325333416461945,
+ "learning_rate": 0.0006,
+ "loss": 3.5960049629211426,
+ "step": 3257
+ },
+ {
+ "epoch": 45.25163826998689,
+ "grad_norm": 0.22697314620018005,
+ "learning_rate": 0.0006,
+ "loss": 3.5723695755004883,
+ "step": 3258
+ },
+ {
+ "epoch": 45.265618173875055,
+ "grad_norm": 0.21900491416454315,
+ "learning_rate": 0.0006,
+ "loss": 3.613572120666504,
+ "step": 3259
+ },
+ {
+ "epoch": 45.27959807776322,
+ "grad_norm": 0.21030694246292114,
+ "learning_rate": 0.0006,
+ "loss": 3.5830235481262207,
+ "step": 3260
+ },
+ {
+ "epoch": 45.293577981651374,
+ "grad_norm": 0.20229968428611755,
+ "learning_rate": 0.0006,
+ "loss": 3.620349884033203,
+ "step": 3261
+ },
+ {
+ "epoch": 45.30755788553954,
+ "grad_norm": 0.21611201763153076,
+ "learning_rate": 0.0006,
+ "loss": 3.5937819480895996,
+ "step": 3262
+ },
+ {
+ "epoch": 45.3215377894277,
+ "grad_norm": 0.21876764297485352,
+ "learning_rate": 0.0006,
+ "loss": 3.6180777549743652,
+ "step": 3263
+ },
+ {
+ "epoch": 45.33551769331586,
+ "grad_norm": 0.200356587767601,
+ "learning_rate": 0.0006,
+ "loss": 3.6140146255493164,
+ "step": 3264
+ },
+ {
+ "epoch": 45.34949759720402,
+ "grad_norm": 0.19151835143566132,
+ "learning_rate": 0.0006,
+ "loss": 3.607077121734619,
+ "step": 3265
+ },
+ {
+ "epoch": 45.36347750109218,
+ "grad_norm": 0.1994648575782776,
+ "learning_rate": 0.0006,
+ "loss": 3.646780490875244,
+ "step": 3266
+ },
+ {
+ "epoch": 45.37745740498034,
+ "grad_norm": 0.23145829141139984,
+ "learning_rate": 0.0006,
+ "loss": 3.624591588973999,
+ "step": 3267
+ },
+ {
+ "epoch": 45.391437308868504,
+ "grad_norm": 0.23608829081058502,
+ "learning_rate": 0.0006,
+ "loss": 3.598904609680176,
+ "step": 3268
+ },
+ {
+ "epoch": 45.40541721275666,
+ "grad_norm": 0.22254547476768494,
+ "learning_rate": 0.0006,
+ "loss": 3.581087827682495,
+ "step": 3269
+ },
+ {
+ "epoch": 45.419397116644824,
+ "grad_norm": 0.21640023589134216,
+ "learning_rate": 0.0006,
+ "loss": 3.5961151123046875,
+ "step": 3270
+ },
+ {
+ "epoch": 45.43337702053299,
+ "grad_norm": 0.2252444475889206,
+ "learning_rate": 0.0006,
+ "loss": 3.590231418609619,
+ "step": 3271
+ },
+ {
+ "epoch": 45.44735692442114,
+ "grad_norm": 0.23785367608070374,
+ "learning_rate": 0.0006,
+ "loss": 3.615896701812744,
+ "step": 3272
+ },
+ {
+ "epoch": 45.46133682830931,
+ "grad_norm": 0.2509191036224365,
+ "learning_rate": 0.0006,
+ "loss": 3.6413722038269043,
+ "step": 3273
+ },
+ {
+ "epoch": 45.47531673219746,
+ "grad_norm": 0.23734210431575775,
+ "learning_rate": 0.0006,
+ "loss": 3.608898639678955,
+ "step": 3274
+ },
+ {
+ "epoch": 45.489296636085626,
+ "grad_norm": 0.19802412390708923,
+ "learning_rate": 0.0006,
+ "loss": 3.5957250595092773,
+ "step": 3275
+ },
+ {
+ "epoch": 45.50327653997379,
+ "grad_norm": 0.20621423423290253,
+ "learning_rate": 0.0006,
+ "loss": 3.607945442199707,
+ "step": 3276
+ },
+ {
+ "epoch": 45.517256443861946,
+ "grad_norm": 0.225870743393898,
+ "learning_rate": 0.0006,
+ "loss": 3.641449451446533,
+ "step": 3277
+ },
+ {
+ "epoch": 45.53123634775011,
+ "grad_norm": 0.21482397615909576,
+ "learning_rate": 0.0006,
+ "loss": 3.61629581451416,
+ "step": 3278
+ },
+ {
+ "epoch": 45.54521625163827,
+ "grad_norm": 0.21159376204013824,
+ "learning_rate": 0.0006,
+ "loss": 3.5977988243103027,
+ "step": 3279
+ },
+ {
+ "epoch": 45.55919615552643,
+ "grad_norm": 0.2031678408384323,
+ "learning_rate": 0.0006,
+ "loss": 3.629343032836914,
+ "step": 3280
+ },
+ {
+ "epoch": 45.57317605941459,
+ "grad_norm": 0.1827101707458496,
+ "learning_rate": 0.0006,
+ "loss": 3.6161365509033203,
+ "step": 3281
+ },
+ {
+ "epoch": 45.58715596330275,
+ "grad_norm": 0.21884584426879883,
+ "learning_rate": 0.0006,
+ "loss": 3.6131834983825684,
+ "step": 3282
+ },
+ {
+ "epoch": 45.60113586719091,
+ "grad_norm": 0.21764980256557465,
+ "learning_rate": 0.0006,
+ "loss": 3.612516164779663,
+ "step": 3283
+ },
+ {
+ "epoch": 45.615115771079076,
+ "grad_norm": 0.22257080674171448,
+ "learning_rate": 0.0006,
+ "loss": 3.63425874710083,
+ "step": 3284
+ },
+ {
+ "epoch": 45.62909567496723,
+ "grad_norm": 0.2419128566980362,
+ "learning_rate": 0.0006,
+ "loss": 3.602997064590454,
+ "step": 3285
+ },
+ {
+ "epoch": 45.643075578855395,
+ "grad_norm": 0.20856884121894836,
+ "learning_rate": 0.0006,
+ "loss": 3.597352981567383,
+ "step": 3286
+ },
+ {
+ "epoch": 45.65705548274356,
+ "grad_norm": 0.20298589766025543,
+ "learning_rate": 0.0006,
+ "loss": 3.5961315631866455,
+ "step": 3287
+ },
+ {
+ "epoch": 45.671035386631715,
+ "grad_norm": 0.19006133079528809,
+ "learning_rate": 0.0006,
+ "loss": 3.6314568519592285,
+ "step": 3288
+ },
+ {
+ "epoch": 45.68501529051988,
+ "grad_norm": 0.20886142551898956,
+ "learning_rate": 0.0006,
+ "loss": 3.6200413703918457,
+ "step": 3289
+ },
+ {
+ "epoch": 45.69899519440804,
+ "grad_norm": 0.18085862696170807,
+ "learning_rate": 0.0006,
+ "loss": 3.6273961067199707,
+ "step": 3290
+ },
+ {
+ "epoch": 45.7129750982962,
+ "grad_norm": 0.18651945888996124,
+ "learning_rate": 0.0006,
+ "loss": 3.6490976810455322,
+ "step": 3291
+ },
+ {
+ "epoch": 45.72695500218436,
+ "grad_norm": 0.19668170809745789,
+ "learning_rate": 0.0006,
+ "loss": 3.610409736633301,
+ "step": 3292
+ },
+ {
+ "epoch": 45.74093490607252,
+ "grad_norm": 0.19865764677524567,
+ "learning_rate": 0.0006,
+ "loss": 3.614025115966797,
+ "step": 3293
+ },
+ {
+ "epoch": 45.75491480996068,
+ "grad_norm": 0.20814085006713867,
+ "learning_rate": 0.0006,
+ "loss": 3.6220510005950928,
+ "step": 3294
+ },
+ {
+ "epoch": 45.768894713848844,
+ "grad_norm": 0.20996463298797607,
+ "learning_rate": 0.0006,
+ "loss": 3.5754218101501465,
+ "step": 3295
+ },
+ {
+ "epoch": 45.782874617737,
+ "grad_norm": 0.1987130492925644,
+ "learning_rate": 0.0006,
+ "loss": 3.614746570587158,
+ "step": 3296
+ },
+ {
+ "epoch": 45.796854521625164,
+ "grad_norm": 0.23048028349876404,
+ "learning_rate": 0.0006,
+ "loss": 3.602620840072632,
+ "step": 3297
+ },
+ {
+ "epoch": 45.81083442551333,
+ "grad_norm": 0.21877387166023254,
+ "learning_rate": 0.0006,
+ "loss": 3.6294198036193848,
+ "step": 3298
+ },
+ {
+ "epoch": 45.824814329401484,
+ "grad_norm": 0.20007763803005219,
+ "learning_rate": 0.0006,
+ "loss": 3.630868434906006,
+ "step": 3299
+ },
+ {
+ "epoch": 45.83879423328965,
+ "grad_norm": 0.200496107339859,
+ "learning_rate": 0.0006,
+ "loss": 3.5972986221313477,
+ "step": 3300
+ },
+ {
+ "epoch": 45.8527741371778,
+ "grad_norm": 0.20494480431079865,
+ "learning_rate": 0.0006,
+ "loss": 3.61934494972229,
+ "step": 3301
+ },
+ {
+ "epoch": 45.86675404106597,
+ "grad_norm": 0.21374984085559845,
+ "learning_rate": 0.0006,
+ "loss": 3.6236257553100586,
+ "step": 3302
+ },
+ {
+ "epoch": 45.88073394495413,
+ "grad_norm": 0.22020408511161804,
+ "learning_rate": 0.0006,
+ "loss": 3.6030755043029785,
+ "step": 3303
+ },
+ {
+ "epoch": 45.89471384884229,
+ "grad_norm": 0.2239987701177597,
+ "learning_rate": 0.0006,
+ "loss": 3.6778974533081055,
+ "step": 3304
+ },
+ {
+ "epoch": 45.90869375273045,
+ "grad_norm": 0.22156383097171783,
+ "learning_rate": 0.0006,
+ "loss": 3.6186561584472656,
+ "step": 3305
+ },
+ {
+ "epoch": 45.92267365661861,
+ "grad_norm": 0.2264711856842041,
+ "learning_rate": 0.0006,
+ "loss": 3.6349918842315674,
+ "step": 3306
+ },
+ {
+ "epoch": 45.93665356050677,
+ "grad_norm": 0.2287975549697876,
+ "learning_rate": 0.0006,
+ "loss": 3.600268840789795,
+ "step": 3307
+ },
+ {
+ "epoch": 45.95063346439493,
+ "grad_norm": 0.22459761798381805,
+ "learning_rate": 0.0006,
+ "loss": 3.6029114723205566,
+ "step": 3308
+ },
+ {
+ "epoch": 45.964613368283096,
+ "grad_norm": 0.2430959790945053,
+ "learning_rate": 0.0006,
+ "loss": 3.6781656742095947,
+ "step": 3309
+ },
+ {
+ "epoch": 45.97859327217125,
+ "grad_norm": 0.2718662619590759,
+ "learning_rate": 0.0006,
+ "loss": 3.606778144836426,
+ "step": 3310
+ },
+ {
+ "epoch": 45.992573176059416,
+ "grad_norm": 0.27250170707702637,
+ "learning_rate": 0.0006,
+ "loss": 3.6142611503601074,
+ "step": 3311
+ },
+ {
+ "epoch": 46.0,
+ "grad_norm": 0.26663821935653687,
+ "learning_rate": 0.0006,
+ "loss": 3.6367483139038086,
+ "step": 3312
+ },
+ {
+ "epoch": 46.0,
+ "eval_loss": 3.9835095405578613,
+ "eval_runtime": 44.6504,
+ "eval_samples_per_second": 54.692,
+ "eval_steps_per_second": 3.427,
+ "step": 3312
+ },
+ {
+ "epoch": 46.01397990388816,
+ "grad_norm": 0.22670713067054749,
+ "learning_rate": 0.0006,
+ "loss": 3.5553648471832275,
+ "step": 3313
+ },
+ {
+ "epoch": 46.02795980777632,
+ "grad_norm": 0.2759886384010315,
+ "learning_rate": 0.0006,
+ "loss": 3.595186948776245,
+ "step": 3314
+ },
+ {
+ "epoch": 46.04193971166448,
+ "grad_norm": 0.31634145975112915,
+ "learning_rate": 0.0006,
+ "loss": 3.5805907249450684,
+ "step": 3315
+ },
+ {
+ "epoch": 46.05591961555265,
+ "grad_norm": 0.3097986578941345,
+ "learning_rate": 0.0006,
+ "loss": 3.593407154083252,
+ "step": 3316
+ },
+ {
+ "epoch": 46.0698995194408,
+ "grad_norm": 0.24616138637065887,
+ "learning_rate": 0.0006,
+ "loss": 3.606736898422241,
+ "step": 3317
+ },
+ {
+ "epoch": 46.083879423328966,
+ "grad_norm": 0.22210408747196198,
+ "learning_rate": 0.0006,
+ "loss": 3.59546160697937,
+ "step": 3318
+ },
+ {
+ "epoch": 46.09785932721712,
+ "grad_norm": 0.2429778128862381,
+ "learning_rate": 0.0006,
+ "loss": 3.5900321006774902,
+ "step": 3319
+ },
+ {
+ "epoch": 46.111839231105286,
+ "grad_norm": 0.22875761985778809,
+ "learning_rate": 0.0006,
+ "loss": 3.5793521404266357,
+ "step": 3320
+ },
+ {
+ "epoch": 46.12581913499345,
+ "grad_norm": 0.21508760750293732,
+ "learning_rate": 0.0006,
+ "loss": 3.5462498664855957,
+ "step": 3321
+ },
+ {
+ "epoch": 46.139799038881605,
+ "grad_norm": 0.23590944707393646,
+ "learning_rate": 0.0006,
+ "loss": 3.6247925758361816,
+ "step": 3322
+ },
+ {
+ "epoch": 46.15377894276977,
+ "grad_norm": 0.22288036346435547,
+ "learning_rate": 0.0006,
+ "loss": 3.6063995361328125,
+ "step": 3323
+ },
+ {
+ "epoch": 46.16775884665793,
+ "grad_norm": 0.20460885763168335,
+ "learning_rate": 0.0006,
+ "loss": 3.5744826793670654,
+ "step": 3324
+ },
+ {
+ "epoch": 46.18173875054609,
+ "grad_norm": 0.20172059535980225,
+ "learning_rate": 0.0006,
+ "loss": 3.5827057361602783,
+ "step": 3325
+ },
+ {
+ "epoch": 46.19571865443425,
+ "grad_norm": 0.2268448770046234,
+ "learning_rate": 0.0006,
+ "loss": 3.5801379680633545,
+ "step": 3326
+ },
+ {
+ "epoch": 46.20969855832241,
+ "grad_norm": 0.2244444191455841,
+ "learning_rate": 0.0006,
+ "loss": 3.5790224075317383,
+ "step": 3327
+ },
+ {
+ "epoch": 46.22367846221057,
+ "grad_norm": 0.20954380929470062,
+ "learning_rate": 0.0006,
+ "loss": 3.5979342460632324,
+ "step": 3328
+ },
+ {
+ "epoch": 46.237658366098735,
+ "grad_norm": 0.21395887434482574,
+ "learning_rate": 0.0006,
+ "loss": 3.6015186309814453,
+ "step": 3329
+ },
+ {
+ "epoch": 46.25163826998689,
+ "grad_norm": 0.23200181126594543,
+ "learning_rate": 0.0006,
+ "loss": 3.5904979705810547,
+ "step": 3330
+ },
+ {
+ "epoch": 46.265618173875055,
+ "grad_norm": 0.20558731257915497,
+ "learning_rate": 0.0006,
+ "loss": 3.5745811462402344,
+ "step": 3331
+ },
+ {
+ "epoch": 46.27959807776322,
+ "grad_norm": 0.1973227560520172,
+ "learning_rate": 0.0006,
+ "loss": 3.588560104370117,
+ "step": 3332
+ },
+ {
+ "epoch": 46.293577981651374,
+ "grad_norm": 0.2137945592403412,
+ "learning_rate": 0.0006,
+ "loss": 3.606064796447754,
+ "step": 3333
+ },
+ {
+ "epoch": 46.30755788553954,
+ "grad_norm": 0.2082151472568512,
+ "learning_rate": 0.0006,
+ "loss": 3.569392442703247,
+ "step": 3334
+ },
+ {
+ "epoch": 46.3215377894277,
+ "grad_norm": 0.2151029258966446,
+ "learning_rate": 0.0006,
+ "loss": 3.6016604900360107,
+ "step": 3335
+ },
+ {
+ "epoch": 46.33551769331586,
+ "grad_norm": 0.2256474643945694,
+ "learning_rate": 0.0006,
+ "loss": 3.571319580078125,
+ "step": 3336
+ },
+ {
+ "epoch": 46.34949759720402,
+ "grad_norm": 0.21454207599163055,
+ "learning_rate": 0.0006,
+ "loss": 3.6028685569763184,
+ "step": 3337
+ },
+ {
+ "epoch": 46.36347750109218,
+ "grad_norm": 0.21864144504070282,
+ "learning_rate": 0.0006,
+ "loss": 3.6146860122680664,
+ "step": 3338
+ },
+ {
+ "epoch": 46.37745740498034,
+ "grad_norm": 0.24512453377246857,
+ "learning_rate": 0.0006,
+ "loss": 3.614696502685547,
+ "step": 3339
+ },
+ {
+ "epoch": 46.391437308868504,
+ "grad_norm": 0.26355695724487305,
+ "learning_rate": 0.0006,
+ "loss": 3.6124234199523926,
+ "step": 3340
+ },
+ {
+ "epoch": 46.40541721275666,
+ "grad_norm": 0.2778678834438324,
+ "learning_rate": 0.0006,
+ "loss": 3.6075634956359863,
+ "step": 3341
+ },
+ {
+ "epoch": 46.419397116644824,
+ "grad_norm": 0.2626822292804718,
+ "learning_rate": 0.0006,
+ "loss": 3.59267520904541,
+ "step": 3342
+ },
+ {
+ "epoch": 46.43337702053299,
+ "grad_norm": 0.2211887091398239,
+ "learning_rate": 0.0006,
+ "loss": 3.606135606765747,
+ "step": 3343
+ },
+ {
+ "epoch": 46.44735692442114,
+ "grad_norm": 0.20117639005184174,
+ "learning_rate": 0.0006,
+ "loss": 3.566512107849121,
+ "step": 3344
+ },
+ {
+ "epoch": 46.46133682830931,
+ "grad_norm": 0.20202599465847015,
+ "learning_rate": 0.0006,
+ "loss": 3.603398561477661,
+ "step": 3345
+ },
+ {
+ "epoch": 46.47531673219746,
+ "grad_norm": 0.22238481044769287,
+ "learning_rate": 0.0006,
+ "loss": 3.599888324737549,
+ "step": 3346
+ },
+ {
+ "epoch": 46.489296636085626,
+ "grad_norm": 0.23298178613185883,
+ "learning_rate": 0.0006,
+ "loss": 3.6135406494140625,
+ "step": 3347
+ },
+ {
+ "epoch": 46.50327653997379,
+ "grad_norm": 0.21998152136802673,
+ "learning_rate": 0.0006,
+ "loss": 3.6022939682006836,
+ "step": 3348
+ },
+ {
+ "epoch": 46.517256443861946,
+ "grad_norm": 0.22595210373401642,
+ "learning_rate": 0.0006,
+ "loss": 3.605905532836914,
+ "step": 3349
+ },
+ {
+ "epoch": 46.53123634775011,
+ "grad_norm": 0.23549678921699524,
+ "learning_rate": 0.0006,
+ "loss": 3.606264591217041,
+ "step": 3350
+ },
+ {
+ "epoch": 46.54521625163827,
+ "grad_norm": 0.2075573205947876,
+ "learning_rate": 0.0006,
+ "loss": 3.580575942993164,
+ "step": 3351
+ },
+ {
+ "epoch": 46.55919615552643,
+ "grad_norm": 0.19052642583847046,
+ "learning_rate": 0.0006,
+ "loss": 3.618326187133789,
+ "step": 3352
+ },
+ {
+ "epoch": 46.57317605941459,
+ "grad_norm": 0.20372900366783142,
+ "learning_rate": 0.0006,
+ "loss": 3.5817952156066895,
+ "step": 3353
+ },
+ {
+ "epoch": 46.58715596330275,
+ "grad_norm": 0.20024648308753967,
+ "learning_rate": 0.0006,
+ "loss": 3.6128273010253906,
+ "step": 3354
+ },
+ {
+ "epoch": 46.60113586719091,
+ "grad_norm": 0.20892181992530823,
+ "learning_rate": 0.0006,
+ "loss": 3.6173012256622314,
+ "step": 3355
+ },
+ {
+ "epoch": 46.615115771079076,
+ "grad_norm": 0.20254571735858917,
+ "learning_rate": 0.0006,
+ "loss": 3.5924699306488037,
+ "step": 3356
+ },
+ {
+ "epoch": 46.62909567496723,
+ "grad_norm": 0.20290599763393402,
+ "learning_rate": 0.0006,
+ "loss": 3.6134514808654785,
+ "step": 3357
+ },
+ {
+ "epoch": 46.643075578855395,
+ "grad_norm": 0.23314513266086578,
+ "learning_rate": 0.0006,
+ "loss": 3.604102611541748,
+ "step": 3358
+ },
+ {
+ "epoch": 46.65705548274356,
+ "grad_norm": 0.2352486401796341,
+ "learning_rate": 0.0006,
+ "loss": 3.6210808753967285,
+ "step": 3359
+ },
+ {
+ "epoch": 46.671035386631715,
+ "grad_norm": 0.2289503663778305,
+ "learning_rate": 0.0006,
+ "loss": 3.596968650817871,
+ "step": 3360
+ },
+ {
+ "epoch": 46.68501529051988,
+ "grad_norm": 0.19971057772636414,
+ "learning_rate": 0.0006,
+ "loss": 3.5973198413848877,
+ "step": 3361
+ },
+ {
+ "epoch": 46.69899519440804,
+ "grad_norm": 0.21000619232654572,
+ "learning_rate": 0.0006,
+ "loss": 3.607048511505127,
+ "step": 3362
+ },
+ {
+ "epoch": 46.7129750982962,
+ "grad_norm": 0.22295686602592468,
+ "learning_rate": 0.0006,
+ "loss": 3.6323728561401367,
+ "step": 3363
+ },
+ {
+ "epoch": 46.72695500218436,
+ "grad_norm": 0.21939052641391754,
+ "learning_rate": 0.0006,
+ "loss": 3.6073317527770996,
+ "step": 3364
+ },
+ {
+ "epoch": 46.74093490607252,
+ "grad_norm": 0.2192271202802658,
+ "learning_rate": 0.0006,
+ "loss": 3.6396851539611816,
+ "step": 3365
+ },
+ {
+ "epoch": 46.75491480996068,
+ "grad_norm": 0.20871607959270477,
+ "learning_rate": 0.0006,
+ "loss": 3.613509178161621,
+ "step": 3366
+ },
+ {
+ "epoch": 46.768894713848844,
+ "grad_norm": 0.1837828904390335,
+ "learning_rate": 0.0006,
+ "loss": 3.604039192199707,
+ "step": 3367
+ },
+ {
+ "epoch": 46.782874617737,
+ "grad_norm": 0.1904219537973404,
+ "learning_rate": 0.0006,
+ "loss": 3.6065895557403564,
+ "step": 3368
+ },
+ {
+ "epoch": 46.796854521625164,
+ "grad_norm": 0.19873572885990143,
+ "learning_rate": 0.0006,
+ "loss": 3.5927226543426514,
+ "step": 3369
+ },
+ {
+ "epoch": 46.81083442551333,
+ "grad_norm": 0.18319591879844666,
+ "learning_rate": 0.0006,
+ "loss": 3.6114919185638428,
+ "step": 3370
+ },
+ {
+ "epoch": 46.824814329401484,
+ "grad_norm": 0.19832435250282288,
+ "learning_rate": 0.0006,
+ "loss": 3.613637924194336,
+ "step": 3371
+ },
+ {
+ "epoch": 46.83879423328965,
+ "grad_norm": 0.21506333351135254,
+ "learning_rate": 0.0006,
+ "loss": 3.6116209030151367,
+ "step": 3372
+ },
+ {
+ "epoch": 46.8527741371778,
+ "grad_norm": 0.20374484360218048,
+ "learning_rate": 0.0006,
+ "loss": 3.5923004150390625,
+ "step": 3373
+ },
+ {
+ "epoch": 46.86675404106597,
+ "grad_norm": 0.19743360579013824,
+ "learning_rate": 0.0006,
+ "loss": 3.599381685256958,
+ "step": 3374
+ },
+ {
+ "epoch": 46.88073394495413,
+ "grad_norm": 0.20996616780757904,
+ "learning_rate": 0.0006,
+ "loss": 3.624969959259033,
+ "step": 3375
+ },
+ {
+ "epoch": 46.89471384884229,
+ "grad_norm": 0.22336791455745697,
+ "learning_rate": 0.0006,
+ "loss": 3.6152467727661133,
+ "step": 3376
+ },
+ {
+ "epoch": 46.90869375273045,
+ "grad_norm": 0.2337532341480255,
+ "learning_rate": 0.0006,
+ "loss": 3.6198863983154297,
+ "step": 3377
+ },
+ {
+ "epoch": 46.92267365661861,
+ "grad_norm": 0.23823462426662445,
+ "learning_rate": 0.0006,
+ "loss": 3.6411237716674805,
+ "step": 3378
+ },
+ {
+ "epoch": 46.93665356050677,
+ "grad_norm": 0.2521338164806366,
+ "learning_rate": 0.0006,
+ "loss": 3.621544122695923,
+ "step": 3379
+ },
+ {
+ "epoch": 46.95063346439493,
+ "grad_norm": 0.253682941198349,
+ "learning_rate": 0.0006,
+ "loss": 3.6570887565612793,
+ "step": 3380
+ },
+ {
+ "epoch": 46.964613368283096,
+ "grad_norm": 0.23392300307750702,
+ "learning_rate": 0.0006,
+ "loss": 3.669538974761963,
+ "step": 3381
+ },
+ {
+ "epoch": 46.97859327217125,
+ "grad_norm": 0.2154092937707901,
+ "learning_rate": 0.0006,
+ "loss": 3.6184825897216797,
+ "step": 3382
+ },
+ {
+ "epoch": 46.992573176059416,
+ "grad_norm": 0.1909833699464798,
+ "learning_rate": 0.0006,
+ "loss": 3.647658348083496,
+ "step": 3383
+ },
+ {
+ "epoch": 47.0,
+ "grad_norm": 0.2226407378911972,
+ "learning_rate": 0.0006,
+ "loss": 3.6413815021514893,
+ "step": 3384
+ },
+ {
+ "epoch": 47.0,
+ "eval_loss": 3.98313570022583,
+ "eval_runtime": 44.7152,
+ "eval_samples_per_second": 54.612,
+ "eval_steps_per_second": 3.422,
+ "step": 3384
+ },
+ {
+ "epoch": 47.01397990388816,
+ "grad_norm": 0.20830968022346497,
+ "learning_rate": 0.0006,
+ "loss": 3.5652623176574707,
+ "step": 3385
+ },
+ {
+ "epoch": 47.02795980777632,
+ "grad_norm": 0.18953651189804077,
+ "learning_rate": 0.0006,
+ "loss": 3.570180654525757,
+ "step": 3386
+ },
+ {
+ "epoch": 47.04193971166448,
+ "grad_norm": 0.20167700946331024,
+ "learning_rate": 0.0006,
+ "loss": 3.5623056888580322,
+ "step": 3387
+ },
+ {
+ "epoch": 47.05591961555265,
+ "grad_norm": 0.21554343402385712,
+ "learning_rate": 0.0006,
+ "loss": 3.549492835998535,
+ "step": 3388
+ },
+ {
+ "epoch": 47.0698995194408,
+ "grad_norm": 0.2232149988412857,
+ "learning_rate": 0.0006,
+ "loss": 3.584181785583496,
+ "step": 3389
+ },
+ {
+ "epoch": 47.083879423328966,
+ "grad_norm": 0.23489049077033997,
+ "learning_rate": 0.0006,
+ "loss": 3.581028461456299,
+ "step": 3390
+ },
+ {
+ "epoch": 47.09785932721712,
+ "grad_norm": 0.22486020624637604,
+ "learning_rate": 0.0006,
+ "loss": 3.600348949432373,
+ "step": 3391
+ },
+ {
+ "epoch": 47.111839231105286,
+ "grad_norm": 0.22932346165180206,
+ "learning_rate": 0.0006,
+ "loss": 3.5600457191467285,
+ "step": 3392
+ },
+ {
+ "epoch": 47.12581913499345,
+ "grad_norm": 0.2179419994354248,
+ "learning_rate": 0.0006,
+ "loss": 3.560136079788208,
+ "step": 3393
+ },
+ {
+ "epoch": 47.139799038881605,
+ "grad_norm": 0.2438054382801056,
+ "learning_rate": 0.0006,
+ "loss": 3.5955698490142822,
+ "step": 3394
+ },
+ {
+ "epoch": 47.15377894276977,
+ "grad_norm": 0.2652001976966858,
+ "learning_rate": 0.0006,
+ "loss": 3.5942912101745605,
+ "step": 3395
+ },
+ {
+ "epoch": 47.16775884665793,
+ "grad_norm": 0.270924836397171,
+ "learning_rate": 0.0006,
+ "loss": 3.5733351707458496,
+ "step": 3396
+ },
+ {
+ "epoch": 47.18173875054609,
+ "grad_norm": 0.28365132212638855,
+ "learning_rate": 0.0006,
+ "loss": 3.6042075157165527,
+ "step": 3397
+ },
+ {
+ "epoch": 47.19571865443425,
+ "grad_norm": 0.29530975222587585,
+ "learning_rate": 0.0006,
+ "loss": 3.588935375213623,
+ "step": 3398
+ },
+ {
+ "epoch": 47.20969855832241,
+ "grad_norm": 0.2658918797969818,
+ "learning_rate": 0.0006,
+ "loss": 3.5944671630859375,
+ "step": 3399
+ },
+ {
+ "epoch": 47.22367846221057,
+ "grad_norm": 0.24076500535011292,
+ "learning_rate": 0.0006,
+ "loss": 3.5853185653686523,
+ "step": 3400
+ },
+ {
+ "epoch": 47.237658366098735,
+ "grad_norm": 0.23032112419605255,
+ "learning_rate": 0.0006,
+ "loss": 3.620483875274658,
+ "step": 3401
+ },
+ {
+ "epoch": 47.25163826998689,
+ "grad_norm": 0.23124775290489197,
+ "learning_rate": 0.0006,
+ "loss": 3.6032004356384277,
+ "step": 3402
+ },
+ {
+ "epoch": 47.265618173875055,
+ "grad_norm": 0.21960225701332092,
+ "learning_rate": 0.0006,
+ "loss": 3.6079649925231934,
+ "step": 3403
+ },
+ {
+ "epoch": 47.27959807776322,
+ "grad_norm": 0.236652672290802,
+ "learning_rate": 0.0006,
+ "loss": 3.582645893096924,
+ "step": 3404
+ },
+ {
+ "epoch": 47.293577981651374,
+ "grad_norm": 0.2600267231464386,
+ "learning_rate": 0.0006,
+ "loss": 3.6067757606506348,
+ "step": 3405
+ },
+ {
+ "epoch": 47.30755788553954,
+ "grad_norm": 0.2337152659893036,
+ "learning_rate": 0.0006,
+ "loss": 3.5912275314331055,
+ "step": 3406
+ },
+ {
+ "epoch": 47.3215377894277,
+ "grad_norm": 0.21887873113155365,
+ "learning_rate": 0.0006,
+ "loss": 3.6008896827697754,
+ "step": 3407
+ },
+ {
+ "epoch": 47.33551769331586,
+ "grad_norm": 0.20265911519527435,
+ "learning_rate": 0.0006,
+ "loss": 3.5820152759552,
+ "step": 3408
+ },
+ {
+ "epoch": 47.34949759720402,
+ "grad_norm": 0.2005501389503479,
+ "learning_rate": 0.0006,
+ "loss": 3.604556083679199,
+ "step": 3409
+ },
+ {
+ "epoch": 47.36347750109218,
+ "grad_norm": 0.20682275295257568,
+ "learning_rate": 0.0006,
+ "loss": 3.584531307220459,
+ "step": 3410
+ },
+ {
+ "epoch": 47.37745740498034,
+ "grad_norm": 0.23283354938030243,
+ "learning_rate": 0.0006,
+ "loss": 3.59186053276062,
+ "step": 3411
+ },
+ {
+ "epoch": 47.391437308868504,
+ "grad_norm": 0.23033356666564941,
+ "learning_rate": 0.0006,
+ "loss": 3.5944037437438965,
+ "step": 3412
+ },
+ {
+ "epoch": 47.40541721275666,
+ "grad_norm": 0.21714402735233307,
+ "learning_rate": 0.0006,
+ "loss": 3.5834851264953613,
+ "step": 3413
+ },
+ {
+ "epoch": 47.419397116644824,
+ "grad_norm": 0.2138672024011612,
+ "learning_rate": 0.0006,
+ "loss": 3.6313700675964355,
+ "step": 3414
+ },
+ {
+ "epoch": 47.43337702053299,
+ "grad_norm": 0.23200160264968872,
+ "learning_rate": 0.0006,
+ "loss": 3.6112399101257324,
+ "step": 3415
+ },
+ {
+ "epoch": 47.44735692442114,
+ "grad_norm": 0.2632092833518982,
+ "learning_rate": 0.0006,
+ "loss": 3.6099038124084473,
+ "step": 3416
+ },
+ {
+ "epoch": 47.46133682830931,
+ "grad_norm": 0.23115520179271698,
+ "learning_rate": 0.0006,
+ "loss": 3.6060497760772705,
+ "step": 3417
+ },
+ {
+ "epoch": 47.47531673219746,
+ "grad_norm": 0.2596223056316376,
+ "learning_rate": 0.0006,
+ "loss": 3.5749685764312744,
+ "step": 3418
+ },
+ {
+ "epoch": 47.489296636085626,
+ "grad_norm": 0.27893415093421936,
+ "learning_rate": 0.0006,
+ "loss": 3.584045886993408,
+ "step": 3419
+ },
+ {
+ "epoch": 47.50327653997379,
+ "grad_norm": 0.23112469911575317,
+ "learning_rate": 0.0006,
+ "loss": 3.595407485961914,
+ "step": 3420
+ },
+ {
+ "epoch": 47.517256443861946,
+ "grad_norm": 0.23562486469745636,
+ "learning_rate": 0.0006,
+ "loss": 3.5657241344451904,
+ "step": 3421
+ },
+ {
+ "epoch": 47.53123634775011,
+ "grad_norm": 0.23366105556488037,
+ "learning_rate": 0.0006,
+ "loss": 3.624885082244873,
+ "step": 3422
+ },
+ {
+ "epoch": 47.54521625163827,
+ "grad_norm": 0.24383248388767242,
+ "learning_rate": 0.0006,
+ "loss": 3.638352394104004,
+ "step": 3423
+ },
+ {
+ "epoch": 47.55919615552643,
+ "grad_norm": 0.26388120651245117,
+ "learning_rate": 0.0006,
+ "loss": 3.614579200744629,
+ "step": 3424
+ },
+ {
+ "epoch": 47.57317605941459,
+ "grad_norm": 0.23676545917987823,
+ "learning_rate": 0.0006,
+ "loss": 3.609004259109497,
+ "step": 3425
+ },
+ {
+ "epoch": 47.58715596330275,
+ "grad_norm": 0.227967768907547,
+ "learning_rate": 0.0006,
+ "loss": 3.626171827316284,
+ "step": 3426
+ },
+ {
+ "epoch": 47.60113586719091,
+ "grad_norm": 0.23786529898643494,
+ "learning_rate": 0.0006,
+ "loss": 3.6205172538757324,
+ "step": 3427
+ },
+ {
+ "epoch": 47.615115771079076,
+ "grad_norm": 0.2599100172519684,
+ "learning_rate": 0.0006,
+ "loss": 3.6178271770477295,
+ "step": 3428
+ },
+ {
+ "epoch": 47.62909567496723,
+ "grad_norm": 0.2591858208179474,
+ "learning_rate": 0.0006,
+ "loss": 3.600297451019287,
+ "step": 3429
+ },
+ {
+ "epoch": 47.643075578855395,
+ "grad_norm": 0.2234215885400772,
+ "learning_rate": 0.0006,
+ "loss": 3.623141288757324,
+ "step": 3430
+ },
+ {
+ "epoch": 47.65705548274356,
+ "grad_norm": 0.23395098745822906,
+ "learning_rate": 0.0006,
+ "loss": 3.6243159770965576,
+ "step": 3431
+ },
+ {
+ "epoch": 47.671035386631715,
+ "grad_norm": 0.25706854462623596,
+ "learning_rate": 0.0006,
+ "loss": 3.5933618545532227,
+ "step": 3432
+ },
+ {
+ "epoch": 47.68501529051988,
+ "grad_norm": 0.22468037903308868,
+ "learning_rate": 0.0006,
+ "loss": 3.6048693656921387,
+ "step": 3433
+ },
+ {
+ "epoch": 47.69899519440804,
+ "grad_norm": 0.22432644665241241,
+ "learning_rate": 0.0006,
+ "loss": 3.604891777038574,
+ "step": 3434
+ },
+ {
+ "epoch": 47.7129750982962,
+ "grad_norm": 0.2278960943222046,
+ "learning_rate": 0.0006,
+ "loss": 3.610567092895508,
+ "step": 3435
+ },
+ {
+ "epoch": 47.72695500218436,
+ "grad_norm": 0.20652735233306885,
+ "learning_rate": 0.0006,
+ "loss": 3.60245418548584,
+ "step": 3436
+ },
+ {
+ "epoch": 47.74093490607252,
+ "grad_norm": 0.2141297310590744,
+ "learning_rate": 0.0006,
+ "loss": 3.5712027549743652,
+ "step": 3437
+ },
+ {
+ "epoch": 47.75491480996068,
+ "grad_norm": 0.23282566666603088,
+ "learning_rate": 0.0006,
+ "loss": 3.573568820953369,
+ "step": 3438
+ },
+ {
+ "epoch": 47.768894713848844,
+ "grad_norm": 0.21718674898147583,
+ "learning_rate": 0.0006,
+ "loss": 3.602047920227051,
+ "step": 3439
+ },
+ {
+ "epoch": 47.782874617737,
+ "grad_norm": 0.19592095911502838,
+ "learning_rate": 0.0006,
+ "loss": 3.6046957969665527,
+ "step": 3440
+ },
+ {
+ "epoch": 47.796854521625164,
+ "grad_norm": 0.21548260748386383,
+ "learning_rate": 0.0006,
+ "loss": 3.5808444023132324,
+ "step": 3441
+ },
+ {
+ "epoch": 47.81083442551333,
+ "grad_norm": 0.21945662796497345,
+ "learning_rate": 0.0006,
+ "loss": 3.6044554710388184,
+ "step": 3442
+ },
+ {
+ "epoch": 47.824814329401484,
+ "grad_norm": 0.20777440071105957,
+ "learning_rate": 0.0006,
+ "loss": 3.5991361141204834,
+ "step": 3443
+ },
+ {
+ "epoch": 47.83879423328965,
+ "grad_norm": 0.21566642820835114,
+ "learning_rate": 0.0006,
+ "loss": 3.6272850036621094,
+ "step": 3444
+ },
+ {
+ "epoch": 47.8527741371778,
+ "grad_norm": 0.22365771234035492,
+ "learning_rate": 0.0006,
+ "loss": 3.6323323249816895,
+ "step": 3445
+ },
+ {
+ "epoch": 47.86675404106597,
+ "grad_norm": 0.20193088054656982,
+ "learning_rate": 0.0006,
+ "loss": 3.5938191413879395,
+ "step": 3446
+ },
+ {
+ "epoch": 47.88073394495413,
+ "grad_norm": 0.20968061685562134,
+ "learning_rate": 0.0006,
+ "loss": 3.616640329360962,
+ "step": 3447
+ },
+ {
+ "epoch": 47.89471384884229,
+ "grad_norm": 0.20275580883026123,
+ "learning_rate": 0.0006,
+ "loss": 3.5769052505493164,
+ "step": 3448
+ },
+ {
+ "epoch": 47.90869375273045,
+ "grad_norm": 0.237605020403862,
+ "learning_rate": 0.0006,
+ "loss": 3.6221203804016113,
+ "step": 3449
+ },
+ {
+ "epoch": 47.92267365661861,
+ "grad_norm": 0.2820972502231598,
+ "learning_rate": 0.0006,
+ "loss": 3.5977487564086914,
+ "step": 3450
+ },
+ {
+ "epoch": 47.93665356050677,
+ "grad_norm": 0.23722891509532928,
+ "learning_rate": 0.0006,
+ "loss": 3.5963053703308105,
+ "step": 3451
+ },
+ {
+ "epoch": 47.95063346439493,
+ "grad_norm": 0.21471276879310608,
+ "learning_rate": 0.0006,
+ "loss": 3.6234917640686035,
+ "step": 3452
+ },
+ {
+ "epoch": 47.964613368283096,
+ "grad_norm": 0.2139028012752533,
+ "learning_rate": 0.0006,
+ "loss": 3.640500545501709,
+ "step": 3453
+ },
+ {
+ "epoch": 47.97859327217125,
+ "grad_norm": 0.1966913342475891,
+ "learning_rate": 0.0006,
+ "loss": 3.5856776237487793,
+ "step": 3454
+ },
+ {
+ "epoch": 47.992573176059416,
+ "grad_norm": 0.2375730276107788,
+ "learning_rate": 0.0006,
+ "loss": 3.6126937866210938,
+ "step": 3455
+ },
+ {
+ "epoch": 48.0,
+ "grad_norm": 0.2772855758666992,
+ "learning_rate": 0.0006,
+ "loss": 3.6041951179504395,
+ "step": 3456
+ },
+ {
+ "epoch": 48.0,
+ "eval_loss": 3.971400499343872,
+ "eval_runtime": 45.4792,
+ "eval_samples_per_second": 53.695,
+ "eval_steps_per_second": 3.364,
+ "step": 3456
+ },
+ {
+ "epoch": 48.01397990388816,
+ "grad_norm": 0.2269497811794281,
+ "learning_rate": 0.0006,
+ "loss": 3.525441884994507,
+ "step": 3457
+ },
+ {
+ "epoch": 48.02795980777632,
+ "grad_norm": 0.2080184519290924,
+ "learning_rate": 0.0006,
+ "loss": 3.5727145671844482,
+ "step": 3458
+ },
+ {
+ "epoch": 48.04193971166448,
+ "grad_norm": 0.21827049553394318,
+ "learning_rate": 0.0006,
+ "loss": 3.5799875259399414,
+ "step": 3459
+ },
+ {
+ "epoch": 48.05591961555265,
+ "grad_norm": 0.2173643410205841,
+ "learning_rate": 0.0006,
+ "loss": 3.587097406387329,
+ "step": 3460
+ },
+ {
+ "epoch": 48.0698995194408,
+ "grad_norm": 0.23125280439853668,
+ "learning_rate": 0.0006,
+ "loss": 3.593235969543457,
+ "step": 3461
+ },
+ {
+ "epoch": 48.083879423328966,
+ "grad_norm": 0.2235819697380066,
+ "learning_rate": 0.0006,
+ "loss": 3.5724973678588867,
+ "step": 3462
+ },
+ {
+ "epoch": 48.09785932721712,
+ "grad_norm": 0.2329849898815155,
+ "learning_rate": 0.0006,
+ "loss": 3.5689549446105957,
+ "step": 3463
+ },
+ {
+ "epoch": 48.111839231105286,
+ "grad_norm": 0.21178825199604034,
+ "learning_rate": 0.0006,
+ "loss": 3.5522305965423584,
+ "step": 3464
+ },
+ {
+ "epoch": 48.12581913499345,
+ "grad_norm": 0.22026701271533966,
+ "learning_rate": 0.0006,
+ "loss": 3.5622801780700684,
+ "step": 3465
+ },
+ {
+ "epoch": 48.139799038881605,
+ "grad_norm": 0.23427478969097137,
+ "learning_rate": 0.0006,
+ "loss": 3.6076972484588623,
+ "step": 3466
+ },
+ {
+ "epoch": 48.15377894276977,
+ "grad_norm": 0.22437651455402374,
+ "learning_rate": 0.0006,
+ "loss": 3.5898380279541016,
+ "step": 3467
+ },
+ {
+ "epoch": 48.16775884665793,
+ "grad_norm": 0.22911588847637177,
+ "learning_rate": 0.0006,
+ "loss": 3.584866523742676,
+ "step": 3468
+ },
+ {
+ "epoch": 48.18173875054609,
+ "grad_norm": 0.21358130872249603,
+ "learning_rate": 0.0006,
+ "loss": 3.581397533416748,
+ "step": 3469
+ },
+ {
+ "epoch": 48.19571865443425,
+ "grad_norm": 0.2102762758731842,
+ "learning_rate": 0.0006,
+ "loss": 3.6218419075012207,
+ "step": 3470
+ },
+ {
+ "epoch": 48.20969855832241,
+ "grad_norm": 0.22417177259922028,
+ "learning_rate": 0.0006,
+ "loss": 3.5875539779663086,
+ "step": 3471
+ },
+ {
+ "epoch": 48.22367846221057,
+ "grad_norm": 0.2096744030714035,
+ "learning_rate": 0.0006,
+ "loss": 3.6017215251922607,
+ "step": 3472
+ },
+ {
+ "epoch": 48.237658366098735,
+ "grad_norm": 0.18693844974040985,
+ "learning_rate": 0.0006,
+ "loss": 3.590221405029297,
+ "step": 3473
+ },
+ {
+ "epoch": 48.25163826998689,
+ "grad_norm": 0.21102994680404663,
+ "learning_rate": 0.0006,
+ "loss": 3.5685019493103027,
+ "step": 3474
+ },
+ {
+ "epoch": 48.265618173875055,
+ "grad_norm": 0.20756356418132782,
+ "learning_rate": 0.0006,
+ "loss": 3.577427387237549,
+ "step": 3475
+ },
+ {
+ "epoch": 48.27959807776322,
+ "grad_norm": 0.20425064861774445,
+ "learning_rate": 0.0006,
+ "loss": 3.602522134780884,
+ "step": 3476
+ },
+ {
+ "epoch": 48.293577981651374,
+ "grad_norm": 0.1976020187139511,
+ "learning_rate": 0.0006,
+ "loss": 3.5847134590148926,
+ "step": 3477
+ },
+ {
+ "epoch": 48.30755788553954,
+ "grad_norm": 0.19685129821300507,
+ "learning_rate": 0.0006,
+ "loss": 3.5638442039489746,
+ "step": 3478
+ },
+ {
+ "epoch": 48.3215377894277,
+ "grad_norm": 0.19657646119594574,
+ "learning_rate": 0.0006,
+ "loss": 3.5669779777526855,
+ "step": 3479
+ },
+ {
+ "epoch": 48.33551769331586,
+ "grad_norm": 0.19855819642543793,
+ "learning_rate": 0.0006,
+ "loss": 3.5712571144104004,
+ "step": 3480
+ },
+ {
+ "epoch": 48.34949759720402,
+ "grad_norm": 0.19961503148078918,
+ "learning_rate": 0.0006,
+ "loss": 3.5869312286376953,
+ "step": 3481
+ },
+ {
+ "epoch": 48.36347750109218,
+ "grad_norm": 0.19302639365196228,
+ "learning_rate": 0.0006,
+ "loss": 3.571394920349121,
+ "step": 3482
+ },
+ {
+ "epoch": 48.37745740498034,
+ "grad_norm": 0.1953866183757782,
+ "learning_rate": 0.0006,
+ "loss": 3.556633234024048,
+ "step": 3483
+ },
+ {
+ "epoch": 48.391437308868504,
+ "grad_norm": 0.20028206706047058,
+ "learning_rate": 0.0006,
+ "loss": 3.5559535026550293,
+ "step": 3484
+ },
+ {
+ "epoch": 48.40541721275666,
+ "grad_norm": 0.2286558896303177,
+ "learning_rate": 0.0006,
+ "loss": 3.6052510738372803,
+ "step": 3485
+ },
+ {
+ "epoch": 48.419397116644824,
+ "grad_norm": 0.21764399111270905,
+ "learning_rate": 0.0006,
+ "loss": 3.5955848693847656,
+ "step": 3486
+ },
+ {
+ "epoch": 48.43337702053299,
+ "grad_norm": 0.2257501780986786,
+ "learning_rate": 0.0006,
+ "loss": 3.586179256439209,
+ "step": 3487
+ },
+ {
+ "epoch": 48.44735692442114,
+ "grad_norm": 0.23023653030395508,
+ "learning_rate": 0.0006,
+ "loss": 3.593329906463623,
+ "step": 3488
+ },
+ {
+ "epoch": 48.46133682830931,
+ "grad_norm": 0.21283918619155884,
+ "learning_rate": 0.0006,
+ "loss": 3.5909814834594727,
+ "step": 3489
+ },
+ {
+ "epoch": 48.47531673219746,
+ "grad_norm": 0.2143639773130417,
+ "learning_rate": 0.0006,
+ "loss": 3.61320161819458,
+ "step": 3490
+ },
+ {
+ "epoch": 48.489296636085626,
+ "grad_norm": 0.2138844132423401,
+ "learning_rate": 0.0006,
+ "loss": 3.556607246398926,
+ "step": 3491
+ },
+ {
+ "epoch": 48.50327653997379,
+ "grad_norm": 0.22122617065906525,
+ "learning_rate": 0.0006,
+ "loss": 3.629208564758301,
+ "step": 3492
+ },
+ {
+ "epoch": 48.517256443861946,
+ "grad_norm": 0.22430218756198883,
+ "learning_rate": 0.0006,
+ "loss": 3.61891508102417,
+ "step": 3493
+ },
+ {
+ "epoch": 48.53123634775011,
+ "grad_norm": 0.23830844461917877,
+ "learning_rate": 0.0006,
+ "loss": 3.5818424224853516,
+ "step": 3494
+ },
+ {
+ "epoch": 48.54521625163827,
+ "grad_norm": 0.23596757650375366,
+ "learning_rate": 0.0006,
+ "loss": 3.609959602355957,
+ "step": 3495
+ },
+ {
+ "epoch": 48.55919615552643,
+ "grad_norm": 0.22046151757240295,
+ "learning_rate": 0.0006,
+ "loss": 3.585991382598877,
+ "step": 3496
+ },
+ {
+ "epoch": 48.57317605941459,
+ "grad_norm": 0.22838662564754486,
+ "learning_rate": 0.0006,
+ "loss": 3.6047747135162354,
+ "step": 3497
+ },
+ {
+ "epoch": 48.58715596330275,
+ "grad_norm": 0.22605256736278534,
+ "learning_rate": 0.0006,
+ "loss": 3.584585428237915,
+ "step": 3498
+ },
+ {
+ "epoch": 48.60113586719091,
+ "grad_norm": 0.22761467099189758,
+ "learning_rate": 0.0006,
+ "loss": 3.5680465698242188,
+ "step": 3499
+ },
+ {
+ "epoch": 48.615115771079076,
+ "grad_norm": 0.20537005364894867,
+ "learning_rate": 0.0006,
+ "loss": 3.5822806358337402,
+ "step": 3500
+ },
+ {
+ "epoch": 48.62909567496723,
+ "grad_norm": 0.21871088445186615,
+ "learning_rate": 0.0006,
+ "loss": 3.5643906593322754,
+ "step": 3501
+ },
+ {
+ "epoch": 48.643075578855395,
+ "grad_norm": 0.2291785329580307,
+ "learning_rate": 0.0006,
+ "loss": 3.6313328742980957,
+ "step": 3502
+ },
+ {
+ "epoch": 48.65705548274356,
+ "grad_norm": 0.2437039464712143,
+ "learning_rate": 0.0006,
+ "loss": 3.588334083557129,
+ "step": 3503
+ },
+ {
+ "epoch": 48.671035386631715,
+ "grad_norm": 0.23070715367794037,
+ "learning_rate": 0.0006,
+ "loss": 3.611356258392334,
+ "step": 3504
+ },
+ {
+ "epoch": 48.68501529051988,
+ "grad_norm": 0.23983895778656006,
+ "learning_rate": 0.0006,
+ "loss": 3.5953967571258545,
+ "step": 3505
+ },
+ {
+ "epoch": 48.69899519440804,
+ "grad_norm": 0.2283167690038681,
+ "learning_rate": 0.0006,
+ "loss": 3.605307102203369,
+ "step": 3506
+ },
+ {
+ "epoch": 48.7129750982962,
+ "grad_norm": 0.20861059427261353,
+ "learning_rate": 0.0006,
+ "loss": 3.598266363143921,
+ "step": 3507
+ },
+ {
+ "epoch": 48.72695500218436,
+ "grad_norm": 0.20209547877311707,
+ "learning_rate": 0.0006,
+ "loss": 3.6022191047668457,
+ "step": 3508
+ },
+ {
+ "epoch": 48.74093490607252,
+ "grad_norm": 0.19089370965957642,
+ "learning_rate": 0.0006,
+ "loss": 3.628640651702881,
+ "step": 3509
+ },
+ {
+ "epoch": 48.75491480996068,
+ "grad_norm": 0.18544727563858032,
+ "learning_rate": 0.0006,
+ "loss": 3.6204819679260254,
+ "step": 3510
+ },
+ {
+ "epoch": 48.768894713848844,
+ "grad_norm": 0.18295186758041382,
+ "learning_rate": 0.0006,
+ "loss": 3.5899410247802734,
+ "step": 3511
+ },
+ {
+ "epoch": 48.782874617737,
+ "grad_norm": 0.1953844279050827,
+ "learning_rate": 0.0006,
+ "loss": 3.581699848175049,
+ "step": 3512
+ },
+ {
+ "epoch": 48.796854521625164,
+ "grad_norm": 0.195505291223526,
+ "learning_rate": 0.0006,
+ "loss": 3.6046862602233887,
+ "step": 3513
+ },
+ {
+ "epoch": 48.81083442551333,
+ "grad_norm": 0.19805945456027985,
+ "learning_rate": 0.0006,
+ "loss": 3.609510898590088,
+ "step": 3514
+ },
+ {
+ "epoch": 48.824814329401484,
+ "grad_norm": 0.18694287538528442,
+ "learning_rate": 0.0006,
+ "loss": 3.580693483352661,
+ "step": 3515
+ },
+ {
+ "epoch": 48.83879423328965,
+ "grad_norm": 0.19227269291877747,
+ "learning_rate": 0.0006,
+ "loss": 3.6174416542053223,
+ "step": 3516
+ },
+ {
+ "epoch": 48.8527741371778,
+ "grad_norm": 0.1966937631368637,
+ "learning_rate": 0.0006,
+ "loss": 3.616194248199463,
+ "step": 3517
+ },
+ {
+ "epoch": 48.86675404106597,
+ "grad_norm": 0.20755162835121155,
+ "learning_rate": 0.0006,
+ "loss": 3.594695568084717,
+ "step": 3518
+ },
+ {
+ "epoch": 48.88073394495413,
+ "grad_norm": 0.2012479156255722,
+ "learning_rate": 0.0006,
+ "loss": 3.6069273948669434,
+ "step": 3519
+ },
+ {
+ "epoch": 48.89471384884229,
+ "grad_norm": 0.19260065257549286,
+ "learning_rate": 0.0006,
+ "loss": 3.573819160461426,
+ "step": 3520
+ },
+ {
+ "epoch": 48.90869375273045,
+ "grad_norm": 0.19911104440689087,
+ "learning_rate": 0.0006,
+ "loss": 3.632185459136963,
+ "step": 3521
+ },
+ {
+ "epoch": 48.92267365661861,
+ "grad_norm": 0.22266048192977905,
+ "learning_rate": 0.0006,
+ "loss": 3.607295513153076,
+ "step": 3522
+ },
+ {
+ "epoch": 48.93665356050677,
+ "grad_norm": 0.2542882561683655,
+ "learning_rate": 0.0006,
+ "loss": 3.6014773845672607,
+ "step": 3523
+ },
+ {
+ "epoch": 48.95063346439493,
+ "grad_norm": 0.2878575026988983,
+ "learning_rate": 0.0006,
+ "loss": 3.5825531482696533,
+ "step": 3524
+ },
+ {
+ "epoch": 48.964613368283096,
+ "grad_norm": 0.3157055675983429,
+ "learning_rate": 0.0006,
+ "loss": 3.5986037254333496,
+ "step": 3525
+ },
+ {
+ "epoch": 48.97859327217125,
+ "grad_norm": 0.2815262973308563,
+ "learning_rate": 0.0006,
+ "loss": 3.6099600791931152,
+ "step": 3526
+ },
+ {
+ "epoch": 48.992573176059416,
+ "grad_norm": 0.22102823853492737,
+ "learning_rate": 0.0006,
+ "loss": 3.5859827995300293,
+ "step": 3527
+ },
+ {
+ "epoch": 49.0,
+ "grad_norm": 0.24937094748020172,
+ "learning_rate": 0.0006,
+ "loss": 3.622842311859131,
+ "step": 3528
+ },
+ {
+ "epoch": 49.0,
+ "eval_loss": 3.977067232131958,
+ "eval_runtime": 45.5503,
+ "eval_samples_per_second": 53.611,
+ "eval_steps_per_second": 3.359,
+ "step": 3528
+ },
+ {
+ "epoch": 49.01397990388816,
+ "grad_norm": 0.25072216987609863,
+ "learning_rate": 0.0006,
+ "loss": 3.590653419494629,
+ "step": 3529
+ },
+ {
+ "epoch": 49.02795980777632,
+ "grad_norm": 0.2611052989959717,
+ "learning_rate": 0.0006,
+ "loss": 3.5504279136657715,
+ "step": 3530
+ },
+ {
+ "epoch": 49.04193971166448,
+ "grad_norm": 0.2547961473464966,
+ "learning_rate": 0.0006,
+ "loss": 3.5797581672668457,
+ "step": 3531
+ },
+ {
+ "epoch": 49.05591961555265,
+ "grad_norm": 0.25674310326576233,
+ "learning_rate": 0.0006,
+ "loss": 3.557278871536255,
+ "step": 3532
+ },
+ {
+ "epoch": 49.0698995194408,
+ "grad_norm": 0.25511929392814636,
+ "learning_rate": 0.0006,
+ "loss": 3.5788025856018066,
+ "step": 3533
+ },
+ {
+ "epoch": 49.083879423328966,
+ "grad_norm": 0.22920994460582733,
+ "learning_rate": 0.0006,
+ "loss": 3.580489158630371,
+ "step": 3534
+ },
+ {
+ "epoch": 49.09785932721712,
+ "grad_norm": 0.23436492681503296,
+ "learning_rate": 0.0006,
+ "loss": 3.5603699684143066,
+ "step": 3535
+ },
+ {
+ "epoch": 49.111839231105286,
+ "grad_norm": 0.2542382776737213,
+ "learning_rate": 0.0006,
+ "loss": 3.5937037467956543,
+ "step": 3536
+ },
+ {
+ "epoch": 49.12581913499345,
+ "grad_norm": 0.26718273758888245,
+ "learning_rate": 0.0006,
+ "loss": 3.6032168865203857,
+ "step": 3537
+ },
+ {
+ "epoch": 49.139799038881605,
+ "grad_norm": 0.2406773865222931,
+ "learning_rate": 0.0006,
+ "loss": 3.5737085342407227,
+ "step": 3538
+ },
+ {
+ "epoch": 49.15377894276977,
+ "grad_norm": 0.23408754169940948,
+ "learning_rate": 0.0006,
+ "loss": 3.592543601989746,
+ "step": 3539
+ },
+ {
+ "epoch": 49.16775884665793,
+ "grad_norm": 0.22974351048469543,
+ "learning_rate": 0.0006,
+ "loss": 3.543618679046631,
+ "step": 3540
+ },
+ {
+ "epoch": 49.18173875054609,
+ "grad_norm": 0.23479530215263367,
+ "learning_rate": 0.0006,
+ "loss": 3.547590732574463,
+ "step": 3541
+ },
+ {
+ "epoch": 49.19571865443425,
+ "grad_norm": 0.2100638598203659,
+ "learning_rate": 0.0006,
+ "loss": 3.6027469635009766,
+ "step": 3542
+ },
+ {
+ "epoch": 49.20969855832241,
+ "grad_norm": 0.20239035785198212,
+ "learning_rate": 0.0006,
+ "loss": 3.598567008972168,
+ "step": 3543
+ },
+ {
+ "epoch": 49.22367846221057,
+ "grad_norm": 0.20480065047740936,
+ "learning_rate": 0.0006,
+ "loss": 3.591038227081299,
+ "step": 3544
+ },
+ {
+ "epoch": 49.237658366098735,
+ "grad_norm": 0.20439887046813965,
+ "learning_rate": 0.0006,
+ "loss": 3.555039405822754,
+ "step": 3545
+ },
+ {
+ "epoch": 49.25163826998689,
+ "grad_norm": 0.21245788037776947,
+ "learning_rate": 0.0006,
+ "loss": 3.5772666931152344,
+ "step": 3546
+ },
+ {
+ "epoch": 49.265618173875055,
+ "grad_norm": 0.1993357390165329,
+ "learning_rate": 0.0006,
+ "loss": 3.5847411155700684,
+ "step": 3547
+ },
+ {
+ "epoch": 49.27959807776322,
+ "grad_norm": 0.22550229728221893,
+ "learning_rate": 0.0006,
+ "loss": 3.5679750442504883,
+ "step": 3548
+ },
+ {
+ "epoch": 49.293577981651374,
+ "grad_norm": 0.2383355349302292,
+ "learning_rate": 0.0006,
+ "loss": 3.57085919380188,
+ "step": 3549
+ },
+ {
+ "epoch": 49.30755788553954,
+ "grad_norm": 0.23968911170959473,
+ "learning_rate": 0.0006,
+ "loss": 3.557415246963501,
+ "step": 3550
+ },
+ {
+ "epoch": 49.3215377894277,
+ "grad_norm": 0.21453262865543365,
+ "learning_rate": 0.0006,
+ "loss": 3.5763611793518066,
+ "step": 3551
+ },
+ {
+ "epoch": 49.33551769331586,
+ "grad_norm": 0.20380273461341858,
+ "learning_rate": 0.0006,
+ "loss": 3.552011013031006,
+ "step": 3552
+ },
+ {
+ "epoch": 49.34949759720402,
+ "grad_norm": 0.19719970226287842,
+ "learning_rate": 0.0006,
+ "loss": 3.5719075202941895,
+ "step": 3553
+ },
+ {
+ "epoch": 49.36347750109218,
+ "grad_norm": 0.19018089771270752,
+ "learning_rate": 0.0006,
+ "loss": 3.5843467712402344,
+ "step": 3554
+ },
+ {
+ "epoch": 49.37745740498034,
+ "grad_norm": 0.18369099497795105,
+ "learning_rate": 0.0006,
+ "loss": 3.561741352081299,
+ "step": 3555
+ },
+ {
+ "epoch": 49.391437308868504,
+ "grad_norm": 0.2070280760526657,
+ "learning_rate": 0.0006,
+ "loss": 3.590721607208252,
+ "step": 3556
+ },
+ {
+ "epoch": 49.40541721275666,
+ "grad_norm": 0.23287905752658844,
+ "learning_rate": 0.0006,
+ "loss": 3.617081642150879,
+ "step": 3557
+ },
+ {
+ "epoch": 49.419397116644824,
+ "grad_norm": 0.21877793967723846,
+ "learning_rate": 0.0006,
+ "loss": 3.547166347503662,
+ "step": 3558
+ },
+ {
+ "epoch": 49.43337702053299,
+ "grad_norm": 0.21105137467384338,
+ "learning_rate": 0.0006,
+ "loss": 3.593552350997925,
+ "step": 3559
+ },
+ {
+ "epoch": 49.44735692442114,
+ "grad_norm": 0.24940872192382812,
+ "learning_rate": 0.0006,
+ "loss": 3.599729537963867,
+ "step": 3560
+ },
+ {
+ "epoch": 49.46133682830931,
+ "grad_norm": 0.26952996850013733,
+ "learning_rate": 0.0006,
+ "loss": 3.5915074348449707,
+ "step": 3561
+ },
+ {
+ "epoch": 49.47531673219746,
+ "grad_norm": 0.25706353783607483,
+ "learning_rate": 0.0006,
+ "loss": 3.587472915649414,
+ "step": 3562
+ },
+ {
+ "epoch": 49.489296636085626,
+ "grad_norm": 0.23666661977767944,
+ "learning_rate": 0.0006,
+ "loss": 3.561340808868408,
+ "step": 3563
+ },
+ {
+ "epoch": 49.50327653997379,
+ "grad_norm": 0.22524063289165497,
+ "learning_rate": 0.0006,
+ "loss": 3.587310314178467,
+ "step": 3564
+ },
+ {
+ "epoch": 49.517256443861946,
+ "grad_norm": 0.22991003096103668,
+ "learning_rate": 0.0006,
+ "loss": 3.56671142578125,
+ "step": 3565
+ },
+ {
+ "epoch": 49.53123634775011,
+ "grad_norm": 0.23067602515220642,
+ "learning_rate": 0.0006,
+ "loss": 3.578601837158203,
+ "step": 3566
+ },
+ {
+ "epoch": 49.54521625163827,
+ "grad_norm": 0.2133914828300476,
+ "learning_rate": 0.0006,
+ "loss": 3.593726873397827,
+ "step": 3567
+ },
+ {
+ "epoch": 49.55919615552643,
+ "grad_norm": 0.21879160404205322,
+ "learning_rate": 0.0006,
+ "loss": 3.5833992958068848,
+ "step": 3568
+ },
+ {
+ "epoch": 49.57317605941459,
+ "grad_norm": 0.2116270661354065,
+ "learning_rate": 0.0006,
+ "loss": 3.575761079788208,
+ "step": 3569
+ },
+ {
+ "epoch": 49.58715596330275,
+ "grad_norm": 0.19506660103797913,
+ "learning_rate": 0.0006,
+ "loss": 3.5600461959838867,
+ "step": 3570
+ },
+ {
+ "epoch": 49.60113586719091,
+ "grad_norm": 0.21305067837238312,
+ "learning_rate": 0.0006,
+ "loss": 3.5717577934265137,
+ "step": 3571
+ },
+ {
+ "epoch": 49.615115771079076,
+ "grad_norm": 0.21184347569942474,
+ "learning_rate": 0.0006,
+ "loss": 3.608819007873535,
+ "step": 3572
+ },
+ {
+ "epoch": 49.62909567496723,
+ "grad_norm": 0.22302201390266418,
+ "learning_rate": 0.0006,
+ "loss": 3.5871644020080566,
+ "step": 3573
+ },
+ {
+ "epoch": 49.643075578855395,
+ "grad_norm": 0.21942365169525146,
+ "learning_rate": 0.0006,
+ "loss": 3.596029043197632,
+ "step": 3574
+ },
+ {
+ "epoch": 49.65705548274356,
+ "grad_norm": 0.2627110481262207,
+ "learning_rate": 0.0006,
+ "loss": 3.5900766849517822,
+ "step": 3575
+ },
+ {
+ "epoch": 49.671035386631715,
+ "grad_norm": 0.28253448009490967,
+ "learning_rate": 0.0006,
+ "loss": 3.599386215209961,
+ "step": 3576
+ },
+ {
+ "epoch": 49.68501529051988,
+ "grad_norm": 0.24279426038265228,
+ "learning_rate": 0.0006,
+ "loss": 3.580909013748169,
+ "step": 3577
+ },
+ {
+ "epoch": 49.69899519440804,
+ "grad_norm": 0.22092898190021515,
+ "learning_rate": 0.0006,
+ "loss": 3.6043782234191895,
+ "step": 3578
+ },
+ {
+ "epoch": 49.7129750982962,
+ "grad_norm": 0.23356051743030548,
+ "learning_rate": 0.0006,
+ "loss": 3.6103105545043945,
+ "step": 3579
+ },
+ {
+ "epoch": 49.72695500218436,
+ "grad_norm": 0.24508118629455566,
+ "learning_rate": 0.0006,
+ "loss": 3.612980365753174,
+ "step": 3580
+ },
+ {
+ "epoch": 49.74093490607252,
+ "grad_norm": 0.2501833438873291,
+ "learning_rate": 0.0006,
+ "loss": 3.6111063957214355,
+ "step": 3581
+ },
+ {
+ "epoch": 49.75491480996068,
+ "grad_norm": 0.2263427972793579,
+ "learning_rate": 0.0006,
+ "loss": 3.5709285736083984,
+ "step": 3582
+ },
+ {
+ "epoch": 49.768894713848844,
+ "grad_norm": 0.19881728291511536,
+ "learning_rate": 0.0006,
+ "loss": 3.5836503505706787,
+ "step": 3583
+ },
+ {
+ "epoch": 49.782874617737,
+ "grad_norm": 0.22516517341136932,
+ "learning_rate": 0.0006,
+ "loss": 3.5797667503356934,
+ "step": 3584
+ },
+ {
+ "epoch": 49.796854521625164,
+ "grad_norm": 0.22347061336040497,
+ "learning_rate": 0.0006,
+ "loss": 3.6245951652526855,
+ "step": 3585
+ },
+ {
+ "epoch": 49.81083442551333,
+ "grad_norm": 0.2062593549489975,
+ "learning_rate": 0.0006,
+ "loss": 3.607572317123413,
+ "step": 3586
+ },
+ {
+ "epoch": 49.824814329401484,
+ "grad_norm": 0.20671074092388153,
+ "learning_rate": 0.0006,
+ "loss": 3.5671472549438477,
+ "step": 3587
+ },
+ {
+ "epoch": 49.83879423328965,
+ "grad_norm": 0.19981902837753296,
+ "learning_rate": 0.0006,
+ "loss": 3.6084837913513184,
+ "step": 3588
+ },
+ {
+ "epoch": 49.8527741371778,
+ "grad_norm": 0.2004556804895401,
+ "learning_rate": 0.0006,
+ "loss": 3.631455898284912,
+ "step": 3589
+ },
+ {
+ "epoch": 49.86675404106597,
+ "grad_norm": 0.20990414917469025,
+ "learning_rate": 0.0006,
+ "loss": 3.6017699241638184,
+ "step": 3590
+ },
+ {
+ "epoch": 49.88073394495413,
+ "grad_norm": 0.19016146659851074,
+ "learning_rate": 0.0006,
+ "loss": 3.6110801696777344,
+ "step": 3591
+ },
+ {
+ "epoch": 49.89471384884229,
+ "grad_norm": 0.2015834003686905,
+ "learning_rate": 0.0006,
+ "loss": 3.58852481842041,
+ "step": 3592
+ },
+ {
+ "epoch": 49.90869375273045,
+ "grad_norm": 0.205678328871727,
+ "learning_rate": 0.0006,
+ "loss": 3.581789970397949,
+ "step": 3593
+ },
+ {
+ "epoch": 49.92267365661861,
+ "grad_norm": 0.20975211262702942,
+ "learning_rate": 0.0006,
+ "loss": 3.6126320362091064,
+ "step": 3594
+ },
+ {
+ "epoch": 49.93665356050677,
+ "grad_norm": 0.20510081946849823,
+ "learning_rate": 0.0006,
+ "loss": 3.5970656871795654,
+ "step": 3595
+ },
+ {
+ "epoch": 49.95063346439493,
+ "grad_norm": 0.19842886924743652,
+ "learning_rate": 0.0006,
+ "loss": 3.6055545806884766,
+ "step": 3596
+ },
+ {
+ "epoch": 49.964613368283096,
+ "grad_norm": 0.20551791787147522,
+ "learning_rate": 0.0006,
+ "loss": 3.5861949920654297,
+ "step": 3597
+ },
+ {
+ "epoch": 49.97859327217125,
+ "grad_norm": 0.21147456765174866,
+ "learning_rate": 0.0006,
+ "loss": 3.585934638977051,
+ "step": 3598
+ },
+ {
+ "epoch": 49.992573176059416,
+ "grad_norm": 0.21793442964553833,
+ "learning_rate": 0.0006,
+ "loss": 3.5956411361694336,
+ "step": 3599
+ },
+ {
+ "epoch": 50.0,
+ "grad_norm": 0.24623161554336548,
+ "learning_rate": 0.0006,
+ "loss": 3.623453140258789,
+ "step": 3600
+ },
+ {
+ "epoch": 50.0,
+ "eval_loss": 3.9807891845703125,
+ "eval_runtime": 45.7708,
+ "eval_samples_per_second": 53.353,
+ "eval_steps_per_second": 3.343,
+ "step": 3600
+ },
+ {
+ "epoch": 50.01397990388816,
+ "grad_norm": 0.22322626411914825,
+ "learning_rate": 0.0006,
+ "loss": 3.5475401878356934,
+ "step": 3601
+ },
+ {
+ "epoch": 50.02795980777632,
+ "grad_norm": 0.21957066655158997,
+ "learning_rate": 0.0006,
+ "loss": 3.5616683959960938,
+ "step": 3602
+ },
+ {
+ "epoch": 50.04193971166448,
+ "grad_norm": 0.22030551731586456,
+ "learning_rate": 0.0006,
+ "loss": 3.56367826461792,
+ "step": 3603
+ },
+ {
+ "epoch": 50.05591961555265,
+ "grad_norm": 0.21536092460155487,
+ "learning_rate": 0.0006,
+ "loss": 3.5613503456115723,
+ "step": 3604
+ },
+ {
+ "epoch": 50.0698995194408,
+ "grad_norm": 0.22454269230365753,
+ "learning_rate": 0.0006,
+ "loss": 3.5348987579345703,
+ "step": 3605
+ },
+ {
+ "epoch": 50.083879423328966,
+ "grad_norm": 0.2281617820262909,
+ "learning_rate": 0.0006,
+ "loss": 3.5722241401672363,
+ "step": 3606
+ },
+ {
+ "epoch": 50.09785932721712,
+ "grad_norm": 0.23318710923194885,
+ "learning_rate": 0.0006,
+ "loss": 3.559063673019409,
+ "step": 3607
+ },
+ {
+ "epoch": 50.111839231105286,
+ "grad_norm": 0.2277889847755432,
+ "learning_rate": 0.0006,
+ "loss": 3.5632925033569336,
+ "step": 3608
+ },
+ {
+ "epoch": 50.12581913499345,
+ "grad_norm": 0.2317705601453781,
+ "learning_rate": 0.0006,
+ "loss": 3.5835886001586914,
+ "step": 3609
+ },
+ {
+ "epoch": 50.139799038881605,
+ "grad_norm": 0.21388863027095795,
+ "learning_rate": 0.0006,
+ "loss": 3.5976145267486572,
+ "step": 3610
+ },
+ {
+ "epoch": 50.15377894276977,
+ "grad_norm": 0.2070954293012619,
+ "learning_rate": 0.0006,
+ "loss": 3.5486221313476562,
+ "step": 3611
+ },
+ {
+ "epoch": 50.16775884665793,
+ "grad_norm": 0.21602077782154083,
+ "learning_rate": 0.0006,
+ "loss": 3.5897607803344727,
+ "step": 3612
+ },
+ {
+ "epoch": 50.18173875054609,
+ "grad_norm": 0.21106162667274475,
+ "learning_rate": 0.0006,
+ "loss": 3.5587167739868164,
+ "step": 3613
+ },
+ {
+ "epoch": 50.19571865443425,
+ "grad_norm": 0.2047950178384781,
+ "learning_rate": 0.0006,
+ "loss": 3.576798915863037,
+ "step": 3614
+ },
+ {
+ "epoch": 50.20969855832241,
+ "grad_norm": 0.2204097956418991,
+ "learning_rate": 0.0006,
+ "loss": 3.5466837882995605,
+ "step": 3615
+ },
+ {
+ "epoch": 50.22367846221057,
+ "grad_norm": 0.2220875471830368,
+ "learning_rate": 0.0006,
+ "loss": 3.5722036361694336,
+ "step": 3616
+ },
+ {
+ "epoch": 50.237658366098735,
+ "grad_norm": 0.2250797003507614,
+ "learning_rate": 0.0006,
+ "loss": 3.566347122192383,
+ "step": 3617
+ },
+ {
+ "epoch": 50.25163826998689,
+ "grad_norm": 0.22837485373020172,
+ "learning_rate": 0.0006,
+ "loss": 3.5673274993896484,
+ "step": 3618
+ },
+ {
+ "epoch": 50.265618173875055,
+ "grad_norm": 0.2281104475259781,
+ "learning_rate": 0.0006,
+ "loss": 3.5543737411499023,
+ "step": 3619
+ },
+ {
+ "epoch": 50.27959807776322,
+ "grad_norm": 0.2052381932735443,
+ "learning_rate": 0.0006,
+ "loss": 3.566401958465576,
+ "step": 3620
+ },
+ {
+ "epoch": 50.293577981651374,
+ "grad_norm": 0.2125921994447708,
+ "learning_rate": 0.0006,
+ "loss": 3.5467424392700195,
+ "step": 3621
+ },
+ {
+ "epoch": 50.30755788553954,
+ "grad_norm": 0.22641244530677795,
+ "learning_rate": 0.0006,
+ "loss": 3.548497200012207,
+ "step": 3622
+ },
+ {
+ "epoch": 50.3215377894277,
+ "grad_norm": 0.23039482533931732,
+ "learning_rate": 0.0006,
+ "loss": 3.5948381423950195,
+ "step": 3623
+ },
+ {
+ "epoch": 50.33551769331586,
+ "grad_norm": 0.22753404080867767,
+ "learning_rate": 0.0006,
+ "loss": 3.541825532913208,
+ "step": 3624
+ },
+ {
+ "epoch": 50.34949759720402,
+ "grad_norm": 0.2528170347213745,
+ "learning_rate": 0.0006,
+ "loss": 3.5937235355377197,
+ "step": 3625
+ },
+ {
+ "epoch": 50.36347750109218,
+ "grad_norm": 0.25434595346450806,
+ "learning_rate": 0.0006,
+ "loss": 3.5779776573181152,
+ "step": 3626
+ },
+ {
+ "epoch": 50.37745740498034,
+ "grad_norm": 0.22519059479236603,
+ "learning_rate": 0.0006,
+ "loss": 3.5456271171569824,
+ "step": 3627
+ },
+ {
+ "epoch": 50.391437308868504,
+ "grad_norm": 0.2077232301235199,
+ "learning_rate": 0.0006,
+ "loss": 3.5693111419677734,
+ "step": 3628
+ },
+ {
+ "epoch": 50.40541721275666,
+ "grad_norm": 0.20925411581993103,
+ "learning_rate": 0.0006,
+ "loss": 3.6063997745513916,
+ "step": 3629
+ },
+ {
+ "epoch": 50.419397116644824,
+ "grad_norm": 0.2114555686712265,
+ "learning_rate": 0.0006,
+ "loss": 3.5676894187927246,
+ "step": 3630
+ },
+ {
+ "epoch": 50.43337702053299,
+ "grad_norm": 0.23759354650974274,
+ "learning_rate": 0.0006,
+ "loss": 3.5465126037597656,
+ "step": 3631
+ },
+ {
+ "epoch": 50.44735692442114,
+ "grad_norm": 0.23809516429901123,
+ "learning_rate": 0.0006,
+ "loss": 3.571600914001465,
+ "step": 3632
+ },
+ {
+ "epoch": 50.46133682830931,
+ "grad_norm": 0.20501303672790527,
+ "learning_rate": 0.0006,
+ "loss": 3.573550224304199,
+ "step": 3633
+ },
+ {
+ "epoch": 50.47531673219746,
+ "grad_norm": 0.21562306582927704,
+ "learning_rate": 0.0006,
+ "loss": 3.5625600814819336,
+ "step": 3634
+ },
+ {
+ "epoch": 50.489296636085626,
+ "grad_norm": 0.20469479262828827,
+ "learning_rate": 0.0006,
+ "loss": 3.5737175941467285,
+ "step": 3635
+ },
+ {
+ "epoch": 50.50327653997379,
+ "grad_norm": 0.2078634798526764,
+ "learning_rate": 0.0006,
+ "loss": 3.5691545009613037,
+ "step": 3636
+ },
+ {
+ "epoch": 50.517256443861946,
+ "grad_norm": 0.20340897142887115,
+ "learning_rate": 0.0006,
+ "loss": 3.583918571472168,
+ "step": 3637
+ },
+ {
+ "epoch": 50.53123634775011,
+ "grad_norm": 0.2006944715976715,
+ "learning_rate": 0.0006,
+ "loss": 3.596034049987793,
+ "step": 3638
+ },
+ {
+ "epoch": 50.54521625163827,
+ "grad_norm": 0.19281257688999176,
+ "learning_rate": 0.0006,
+ "loss": 3.5993080139160156,
+ "step": 3639
+ },
+ {
+ "epoch": 50.55919615552643,
+ "grad_norm": 0.19528807699680328,
+ "learning_rate": 0.0006,
+ "loss": 3.6108102798461914,
+ "step": 3640
+ },
+ {
+ "epoch": 50.57317605941459,
+ "grad_norm": 0.19329112768173218,
+ "learning_rate": 0.0006,
+ "loss": 3.5964512825012207,
+ "step": 3641
+ },
+ {
+ "epoch": 50.58715596330275,
+ "grad_norm": 0.1928209513425827,
+ "learning_rate": 0.0006,
+ "loss": 3.5927724838256836,
+ "step": 3642
+ },
+ {
+ "epoch": 50.60113586719091,
+ "grad_norm": 0.20212236046791077,
+ "learning_rate": 0.0006,
+ "loss": 3.5778708457946777,
+ "step": 3643
+ },
+ {
+ "epoch": 50.615115771079076,
+ "grad_norm": 0.22244620323181152,
+ "learning_rate": 0.0006,
+ "loss": 3.6219539642333984,
+ "step": 3644
+ },
+ {
+ "epoch": 50.62909567496723,
+ "grad_norm": 0.2659119963645935,
+ "learning_rate": 0.0006,
+ "loss": 3.578831195831299,
+ "step": 3645
+ },
+ {
+ "epoch": 50.643075578855395,
+ "grad_norm": 0.2837344706058502,
+ "learning_rate": 0.0006,
+ "loss": 3.587677240371704,
+ "step": 3646
+ },
+ {
+ "epoch": 50.65705548274356,
+ "grad_norm": 0.26747965812683105,
+ "learning_rate": 0.0006,
+ "loss": 3.611286163330078,
+ "step": 3647
+ },
+ {
+ "epoch": 50.671035386631715,
+ "grad_norm": 0.24604788422584534,
+ "learning_rate": 0.0006,
+ "loss": 3.5740575790405273,
+ "step": 3648
+ },
+ {
+ "epoch": 50.68501529051988,
+ "grad_norm": 0.2379457652568817,
+ "learning_rate": 0.0006,
+ "loss": 3.5997209548950195,
+ "step": 3649
+ },
+ {
+ "epoch": 50.69899519440804,
+ "grad_norm": 0.2296321839094162,
+ "learning_rate": 0.0006,
+ "loss": 3.5975162982940674,
+ "step": 3650
+ },
+ {
+ "epoch": 50.7129750982962,
+ "grad_norm": 0.22054627537727356,
+ "learning_rate": 0.0006,
+ "loss": 3.5821738243103027,
+ "step": 3651
+ },
+ {
+ "epoch": 50.72695500218436,
+ "grad_norm": 0.22114980220794678,
+ "learning_rate": 0.0006,
+ "loss": 3.5769970417022705,
+ "step": 3652
+ },
+ {
+ "epoch": 50.74093490607252,
+ "grad_norm": 0.21389314532279968,
+ "learning_rate": 0.0006,
+ "loss": 3.5952796936035156,
+ "step": 3653
+ },
+ {
+ "epoch": 50.75491480996068,
+ "grad_norm": 0.21069210767745972,
+ "learning_rate": 0.0006,
+ "loss": 3.5884671211242676,
+ "step": 3654
+ },
+ {
+ "epoch": 50.768894713848844,
+ "grad_norm": 0.22028805315494537,
+ "learning_rate": 0.0006,
+ "loss": 3.593442440032959,
+ "step": 3655
+ },
+ {
+ "epoch": 50.782874617737,
+ "grad_norm": 0.21296948194503784,
+ "learning_rate": 0.0006,
+ "loss": 3.5656774044036865,
+ "step": 3656
+ },
+ {
+ "epoch": 50.796854521625164,
+ "grad_norm": 0.19871588051319122,
+ "learning_rate": 0.0006,
+ "loss": 3.5939064025878906,
+ "step": 3657
+ },
+ {
+ "epoch": 50.81083442551333,
+ "grad_norm": 0.19523470103740692,
+ "learning_rate": 0.0006,
+ "loss": 3.5806071758270264,
+ "step": 3658
+ },
+ {
+ "epoch": 50.824814329401484,
+ "grad_norm": 0.18718191981315613,
+ "learning_rate": 0.0006,
+ "loss": 3.5903120040893555,
+ "step": 3659
+ },
+ {
+ "epoch": 50.83879423328965,
+ "grad_norm": 0.18796689808368683,
+ "learning_rate": 0.0006,
+ "loss": 3.5799593925476074,
+ "step": 3660
+ },
+ {
+ "epoch": 50.8527741371778,
+ "grad_norm": 0.21794569492340088,
+ "learning_rate": 0.0006,
+ "loss": 3.5712361335754395,
+ "step": 3661
+ },
+ {
+ "epoch": 50.86675404106597,
+ "grad_norm": 0.2374759465456009,
+ "learning_rate": 0.0006,
+ "loss": 3.602503776550293,
+ "step": 3662
+ },
+ {
+ "epoch": 50.88073394495413,
+ "grad_norm": 0.20213527977466583,
+ "learning_rate": 0.0006,
+ "loss": 3.5756399631500244,
+ "step": 3663
+ },
+ {
+ "epoch": 50.89471384884229,
+ "grad_norm": 0.1875160187482834,
+ "learning_rate": 0.0006,
+ "loss": 3.625436305999756,
+ "step": 3664
+ },
+ {
+ "epoch": 50.90869375273045,
+ "grad_norm": 0.19908255338668823,
+ "learning_rate": 0.0006,
+ "loss": 3.592522621154785,
+ "step": 3665
+ },
+ {
+ "epoch": 50.92267365661861,
+ "grad_norm": 0.20776167511940002,
+ "learning_rate": 0.0006,
+ "loss": 3.5777883529663086,
+ "step": 3666
+ },
+ {
+ "epoch": 50.93665356050677,
+ "grad_norm": 0.19510093331336975,
+ "learning_rate": 0.0006,
+ "loss": 3.587306022644043,
+ "step": 3667
+ },
+ {
+ "epoch": 50.95063346439493,
+ "grad_norm": 0.2180490493774414,
+ "learning_rate": 0.0006,
+ "loss": 3.5855464935302734,
+ "step": 3668
+ },
+ {
+ "epoch": 50.964613368283096,
+ "grad_norm": 0.19967055320739746,
+ "learning_rate": 0.0006,
+ "loss": 3.609689235687256,
+ "step": 3669
+ },
+ {
+ "epoch": 50.97859327217125,
+ "grad_norm": 0.2081584632396698,
+ "learning_rate": 0.0006,
+ "loss": 3.625236749649048,
+ "step": 3670
+ },
+ {
+ "epoch": 50.992573176059416,
+ "grad_norm": 0.2312266230583191,
+ "learning_rate": 0.0006,
+ "loss": 3.5977330207824707,
+ "step": 3671
+ },
+ {
+ "epoch": 51.0,
+ "grad_norm": 0.2464766502380371,
+ "learning_rate": 0.0006,
+ "loss": 3.610635995864868,
+ "step": 3672
+ },
+ {
+ "epoch": 51.0,
+ "eval_loss": 3.9810166358947754,
+ "eval_runtime": 45.5851,
+ "eval_samples_per_second": 53.57,
+ "eval_steps_per_second": 3.356,
+ "step": 3672
+ },
+ {
+ "epoch": 51.01397990388816,
+ "grad_norm": 0.22583232820034027,
+ "learning_rate": 0.0006,
+ "loss": 3.547168016433716,
+ "step": 3673
+ },
+ {
+ "epoch": 51.02795980777632,
+ "grad_norm": 0.23001070320606232,
+ "learning_rate": 0.0006,
+ "loss": 3.546207904815674,
+ "step": 3674
+ },
+ {
+ "epoch": 51.04193971166448,
+ "grad_norm": 0.21891392767429352,
+ "learning_rate": 0.0006,
+ "loss": 3.564371109008789,
+ "step": 3675
+ },
+ {
+ "epoch": 51.05591961555265,
+ "grad_norm": 0.22195076942443848,
+ "learning_rate": 0.0006,
+ "loss": 3.538297414779663,
+ "step": 3676
+ },
+ {
+ "epoch": 51.0698995194408,
+ "grad_norm": 0.24688288569450378,
+ "learning_rate": 0.0006,
+ "loss": 3.5705811977386475,
+ "step": 3677
+ },
+ {
+ "epoch": 51.083879423328966,
+ "grad_norm": 0.2731003165245056,
+ "learning_rate": 0.0006,
+ "loss": 3.530763626098633,
+ "step": 3678
+ },
+ {
+ "epoch": 51.09785932721712,
+ "grad_norm": 0.27474021911621094,
+ "learning_rate": 0.0006,
+ "loss": 3.5559208393096924,
+ "step": 3679
+ },
+ {
+ "epoch": 51.111839231105286,
+ "grad_norm": 0.26311439275741577,
+ "learning_rate": 0.0006,
+ "loss": 3.5698819160461426,
+ "step": 3680
+ },
+ {
+ "epoch": 51.12581913499345,
+ "grad_norm": 0.21895965933799744,
+ "learning_rate": 0.0006,
+ "loss": 3.567232370376587,
+ "step": 3681
+ },
+ {
+ "epoch": 51.139799038881605,
+ "grad_norm": 0.19598282873630524,
+ "learning_rate": 0.0006,
+ "loss": 3.6033718585968018,
+ "step": 3682
+ },
+ {
+ "epoch": 51.15377894276977,
+ "grad_norm": 0.2183268666267395,
+ "learning_rate": 0.0006,
+ "loss": 3.5599026679992676,
+ "step": 3683
+ },
+ {
+ "epoch": 51.16775884665793,
+ "grad_norm": 0.22657731175422668,
+ "learning_rate": 0.0006,
+ "loss": 3.532038688659668,
+ "step": 3684
+ },
+ {
+ "epoch": 51.18173875054609,
+ "grad_norm": 0.21979935467243195,
+ "learning_rate": 0.0006,
+ "loss": 3.544640064239502,
+ "step": 3685
+ },
+ {
+ "epoch": 51.19571865443425,
+ "grad_norm": 0.20581361651420593,
+ "learning_rate": 0.0006,
+ "loss": 3.579803466796875,
+ "step": 3686
+ },
+ {
+ "epoch": 51.20969855832241,
+ "grad_norm": 0.22677212953567505,
+ "learning_rate": 0.0006,
+ "loss": 3.576796054840088,
+ "step": 3687
+ },
+ {
+ "epoch": 51.22367846221057,
+ "grad_norm": 0.2599104940891266,
+ "learning_rate": 0.0006,
+ "loss": 3.5657899379730225,
+ "step": 3688
+ },
+ {
+ "epoch": 51.237658366098735,
+ "grad_norm": 0.23320309817790985,
+ "learning_rate": 0.0006,
+ "loss": 3.5537824630737305,
+ "step": 3689
+ },
+ {
+ "epoch": 51.25163826998689,
+ "grad_norm": 0.2345186471939087,
+ "learning_rate": 0.0006,
+ "loss": 3.5699901580810547,
+ "step": 3690
+ },
+ {
+ "epoch": 51.265618173875055,
+ "grad_norm": 0.24723312258720398,
+ "learning_rate": 0.0006,
+ "loss": 3.553495168685913,
+ "step": 3691
+ },
+ {
+ "epoch": 51.27959807776322,
+ "grad_norm": 0.24195604026317596,
+ "learning_rate": 0.0006,
+ "loss": 3.6008248329162598,
+ "step": 3692
+ },
+ {
+ "epoch": 51.293577981651374,
+ "grad_norm": 0.23011726140975952,
+ "learning_rate": 0.0006,
+ "loss": 3.5842812061309814,
+ "step": 3693
+ },
+ {
+ "epoch": 51.30755788553954,
+ "grad_norm": 0.23412185907363892,
+ "learning_rate": 0.0006,
+ "loss": 3.5648040771484375,
+ "step": 3694
+ },
+ {
+ "epoch": 51.3215377894277,
+ "grad_norm": 0.22911828756332397,
+ "learning_rate": 0.0006,
+ "loss": 3.5599000453948975,
+ "step": 3695
+ },
+ {
+ "epoch": 51.33551769331586,
+ "grad_norm": 0.20045386254787445,
+ "learning_rate": 0.0006,
+ "loss": 3.559370517730713,
+ "step": 3696
+ },
+ {
+ "epoch": 51.34949759720402,
+ "grad_norm": 0.24723322689533234,
+ "learning_rate": 0.0006,
+ "loss": 3.5734081268310547,
+ "step": 3697
+ },
+ {
+ "epoch": 51.36347750109218,
+ "grad_norm": 0.28003066778182983,
+ "learning_rate": 0.0006,
+ "loss": 3.574591636657715,
+ "step": 3698
+ },
+ {
+ "epoch": 51.37745740498034,
+ "grad_norm": 0.27969157695770264,
+ "learning_rate": 0.0006,
+ "loss": 3.5703907012939453,
+ "step": 3699
+ },
+ {
+ "epoch": 51.391437308868504,
+ "grad_norm": 0.2352922111749649,
+ "learning_rate": 0.0006,
+ "loss": 3.540452480316162,
+ "step": 3700
+ },
+ {
+ "epoch": 51.40541721275666,
+ "grad_norm": 0.21332240104675293,
+ "learning_rate": 0.0006,
+ "loss": 3.5883522033691406,
+ "step": 3701
+ },
+ {
+ "epoch": 51.419397116644824,
+ "grad_norm": 0.2021809071302414,
+ "learning_rate": 0.0006,
+ "loss": 3.567544460296631,
+ "step": 3702
+ },
+ {
+ "epoch": 51.43337702053299,
+ "grad_norm": 0.23054654896259308,
+ "learning_rate": 0.0006,
+ "loss": 3.5927062034606934,
+ "step": 3703
+ },
+ {
+ "epoch": 51.44735692442114,
+ "grad_norm": 0.22398747503757477,
+ "learning_rate": 0.0006,
+ "loss": 3.5977213382720947,
+ "step": 3704
+ },
+ {
+ "epoch": 51.46133682830931,
+ "grad_norm": 0.2021128088235855,
+ "learning_rate": 0.0006,
+ "loss": 3.585836887359619,
+ "step": 3705
+ },
+ {
+ "epoch": 51.47531673219746,
+ "grad_norm": 0.23031292855739594,
+ "learning_rate": 0.0006,
+ "loss": 3.532315731048584,
+ "step": 3706
+ },
+ {
+ "epoch": 51.489296636085626,
+ "grad_norm": 0.26744455099105835,
+ "learning_rate": 0.0006,
+ "loss": 3.585782289505005,
+ "step": 3707
+ },
+ {
+ "epoch": 51.50327653997379,
+ "grad_norm": 0.2508980929851532,
+ "learning_rate": 0.0006,
+ "loss": 3.550276279449463,
+ "step": 3708
+ },
+ {
+ "epoch": 51.517256443861946,
+ "grad_norm": 0.2180585265159607,
+ "learning_rate": 0.0006,
+ "loss": 3.566798210144043,
+ "step": 3709
+ },
+ {
+ "epoch": 51.53123634775011,
+ "grad_norm": 0.18508869409561157,
+ "learning_rate": 0.0006,
+ "loss": 3.5295116901397705,
+ "step": 3710
+ },
+ {
+ "epoch": 51.54521625163827,
+ "grad_norm": 0.19017672538757324,
+ "learning_rate": 0.0006,
+ "loss": 3.5932717323303223,
+ "step": 3711
+ },
+ {
+ "epoch": 51.55919615552643,
+ "grad_norm": 0.2228020876646042,
+ "learning_rate": 0.0006,
+ "loss": 3.5660648345947266,
+ "step": 3712
+ },
+ {
+ "epoch": 51.57317605941459,
+ "grad_norm": 0.22948148846626282,
+ "learning_rate": 0.0006,
+ "loss": 3.5785627365112305,
+ "step": 3713
+ },
+ {
+ "epoch": 51.58715596330275,
+ "grad_norm": 0.2438911497592926,
+ "learning_rate": 0.0006,
+ "loss": 3.5885257720947266,
+ "step": 3714
+ },
+ {
+ "epoch": 51.60113586719091,
+ "grad_norm": 0.25012296438217163,
+ "learning_rate": 0.0006,
+ "loss": 3.577232599258423,
+ "step": 3715
+ },
+ {
+ "epoch": 51.615115771079076,
+ "grad_norm": 0.27102336287498474,
+ "learning_rate": 0.0006,
+ "loss": 3.5600078105926514,
+ "step": 3716
+ },
+ {
+ "epoch": 51.62909567496723,
+ "grad_norm": 0.26425355672836304,
+ "learning_rate": 0.0006,
+ "loss": 3.5694093704223633,
+ "step": 3717
+ },
+ {
+ "epoch": 51.643075578855395,
+ "grad_norm": 0.24292822182178497,
+ "learning_rate": 0.0006,
+ "loss": 3.5774331092834473,
+ "step": 3718
+ },
+ {
+ "epoch": 51.65705548274356,
+ "grad_norm": 0.22668084502220154,
+ "learning_rate": 0.0006,
+ "loss": 3.5912742614746094,
+ "step": 3719
+ },
+ {
+ "epoch": 51.671035386631715,
+ "grad_norm": 0.2090575248003006,
+ "learning_rate": 0.0006,
+ "loss": 3.5473170280456543,
+ "step": 3720
+ },
+ {
+ "epoch": 51.68501529051988,
+ "grad_norm": 0.22276616096496582,
+ "learning_rate": 0.0006,
+ "loss": 3.6076784133911133,
+ "step": 3721
+ },
+ {
+ "epoch": 51.69899519440804,
+ "grad_norm": 0.22105294466018677,
+ "learning_rate": 0.0006,
+ "loss": 3.5820791721343994,
+ "step": 3722
+ },
+ {
+ "epoch": 51.7129750982962,
+ "grad_norm": 0.19231240451335907,
+ "learning_rate": 0.0006,
+ "loss": 3.6017708778381348,
+ "step": 3723
+ },
+ {
+ "epoch": 51.72695500218436,
+ "grad_norm": 0.2050354927778244,
+ "learning_rate": 0.0006,
+ "loss": 3.5967769622802734,
+ "step": 3724
+ },
+ {
+ "epoch": 51.74093490607252,
+ "grad_norm": 0.19779305160045624,
+ "learning_rate": 0.0006,
+ "loss": 3.597214698791504,
+ "step": 3725
+ },
+ {
+ "epoch": 51.75491480996068,
+ "grad_norm": 0.22394844889640808,
+ "learning_rate": 0.0006,
+ "loss": 3.574063301086426,
+ "step": 3726
+ },
+ {
+ "epoch": 51.768894713848844,
+ "grad_norm": 0.2262638807296753,
+ "learning_rate": 0.0006,
+ "loss": 3.5754079818725586,
+ "step": 3727
+ },
+ {
+ "epoch": 51.782874617737,
+ "grad_norm": 0.2168288677930832,
+ "learning_rate": 0.0006,
+ "loss": 3.6079599857330322,
+ "step": 3728
+ },
+ {
+ "epoch": 51.796854521625164,
+ "grad_norm": 0.2035517394542694,
+ "learning_rate": 0.0006,
+ "loss": 3.5948667526245117,
+ "step": 3729
+ },
+ {
+ "epoch": 51.81083442551333,
+ "grad_norm": 0.20529425144195557,
+ "learning_rate": 0.0006,
+ "loss": 3.5589542388916016,
+ "step": 3730
+ },
+ {
+ "epoch": 51.824814329401484,
+ "grad_norm": 0.2464100867509842,
+ "learning_rate": 0.0006,
+ "loss": 3.5947155952453613,
+ "step": 3731
+ },
+ {
+ "epoch": 51.83879423328965,
+ "grad_norm": 0.28043219447135925,
+ "learning_rate": 0.0006,
+ "loss": 3.6102852821350098,
+ "step": 3732
+ },
+ {
+ "epoch": 51.8527741371778,
+ "grad_norm": 0.2879013121128082,
+ "learning_rate": 0.0006,
+ "loss": 3.5903573036193848,
+ "step": 3733
+ },
+ {
+ "epoch": 51.86675404106597,
+ "grad_norm": 0.2532044053077698,
+ "learning_rate": 0.0006,
+ "loss": 3.5704729557037354,
+ "step": 3734
+ },
+ {
+ "epoch": 51.88073394495413,
+ "grad_norm": 0.25126248598098755,
+ "learning_rate": 0.0006,
+ "loss": 3.5449633598327637,
+ "step": 3735
+ },
+ {
+ "epoch": 51.89471384884229,
+ "grad_norm": 0.2494364082813263,
+ "learning_rate": 0.0006,
+ "loss": 3.5825607776641846,
+ "step": 3736
+ },
+ {
+ "epoch": 51.90869375273045,
+ "grad_norm": 0.24867761135101318,
+ "learning_rate": 0.0006,
+ "loss": 3.5998034477233887,
+ "step": 3737
+ },
+ {
+ "epoch": 51.92267365661861,
+ "grad_norm": 0.2552012801170349,
+ "learning_rate": 0.0006,
+ "loss": 3.5487377643585205,
+ "step": 3738
+ },
+ {
+ "epoch": 51.93665356050677,
+ "grad_norm": 0.2243119329214096,
+ "learning_rate": 0.0006,
+ "loss": 3.6081466674804688,
+ "step": 3739
+ },
+ {
+ "epoch": 51.95063346439493,
+ "grad_norm": 0.2106700837612152,
+ "learning_rate": 0.0006,
+ "loss": 3.607586622238159,
+ "step": 3740
+ },
+ {
+ "epoch": 51.964613368283096,
+ "grad_norm": 0.2207096666097641,
+ "learning_rate": 0.0006,
+ "loss": 3.6094579696655273,
+ "step": 3741
+ },
+ {
+ "epoch": 51.97859327217125,
+ "grad_norm": 0.2310071736574173,
+ "learning_rate": 0.0006,
+ "loss": 3.5837807655334473,
+ "step": 3742
+ },
+ {
+ "epoch": 51.992573176059416,
+ "grad_norm": 0.258770614862442,
+ "learning_rate": 0.0006,
+ "loss": 3.639329433441162,
+ "step": 3743
+ },
+ {
+ "epoch": 52.0,
+ "grad_norm": 0.24004915356636047,
+ "learning_rate": 0.0006,
+ "loss": 3.6178512573242188,
+ "step": 3744
+ },
+ {
+ "epoch": 52.0,
+ "eval_loss": 3.97371244430542,
+ "eval_runtime": 46.1923,
+ "eval_samples_per_second": 52.866,
+ "eval_steps_per_second": 3.312,
+ "step": 3744
+ },
+ {
+ "epoch": 52.01397990388816,
+ "grad_norm": 0.21953323483467102,
+ "learning_rate": 0.0006,
+ "loss": 3.5929579734802246,
+ "step": 3745
+ },
+ {
+ "epoch": 52.02795980777632,
+ "grad_norm": 0.25547415018081665,
+ "learning_rate": 0.0006,
+ "loss": 3.5762600898742676,
+ "step": 3746
+ },
+ {
+ "epoch": 52.04193971166448,
+ "grad_norm": 0.28905144333839417,
+ "learning_rate": 0.0006,
+ "loss": 3.5794596672058105,
+ "step": 3747
+ },
+ {
+ "epoch": 52.05591961555265,
+ "grad_norm": 0.2618118226528168,
+ "learning_rate": 0.0006,
+ "loss": 3.543205499649048,
+ "step": 3748
+ },
+ {
+ "epoch": 52.0698995194408,
+ "grad_norm": 0.2288745492696762,
+ "learning_rate": 0.0006,
+ "loss": 3.562770366668701,
+ "step": 3749
+ },
+ {
+ "epoch": 52.083879423328966,
+ "grad_norm": 0.25327110290527344,
+ "learning_rate": 0.0006,
+ "loss": 3.5405054092407227,
+ "step": 3750
+ },
+ {
+ "epoch": 52.09785932721712,
+ "grad_norm": 0.2721746861934662,
+ "learning_rate": 0.0006,
+ "loss": 3.5650479793548584,
+ "step": 3751
+ },
+ {
+ "epoch": 52.111839231105286,
+ "grad_norm": 0.2890555262565613,
+ "learning_rate": 0.0006,
+ "loss": 3.556122303009033,
+ "step": 3752
+ },
+ {
+ "epoch": 52.12581913499345,
+ "grad_norm": 0.30541476607322693,
+ "learning_rate": 0.0006,
+ "loss": 3.544271469116211,
+ "step": 3753
+ },
+ {
+ "epoch": 52.139799038881605,
+ "grad_norm": 0.2555760443210602,
+ "learning_rate": 0.0006,
+ "loss": 3.5452728271484375,
+ "step": 3754
+ },
+ {
+ "epoch": 52.15377894276977,
+ "grad_norm": 0.2653098404407501,
+ "learning_rate": 0.0006,
+ "loss": 3.57212495803833,
+ "step": 3755
+ },
+ {
+ "epoch": 52.16775884665793,
+ "grad_norm": 0.2479168176651001,
+ "learning_rate": 0.0006,
+ "loss": 3.5893373489379883,
+ "step": 3756
+ },
+ {
+ "epoch": 52.18173875054609,
+ "grad_norm": 0.21718256175518036,
+ "learning_rate": 0.0006,
+ "loss": 3.5616965293884277,
+ "step": 3757
+ },
+ {
+ "epoch": 52.19571865443425,
+ "grad_norm": 0.22033235430717468,
+ "learning_rate": 0.0006,
+ "loss": 3.566401481628418,
+ "step": 3758
+ },
+ {
+ "epoch": 52.20969855832241,
+ "grad_norm": 0.2401825189590454,
+ "learning_rate": 0.0006,
+ "loss": 3.547682762145996,
+ "step": 3759
+ },
+ {
+ "epoch": 52.22367846221057,
+ "grad_norm": 0.24496418237686157,
+ "learning_rate": 0.0006,
+ "loss": 3.5405421257019043,
+ "step": 3760
+ },
+ {
+ "epoch": 52.237658366098735,
+ "grad_norm": 0.2311883270740509,
+ "learning_rate": 0.0006,
+ "loss": 3.5709781646728516,
+ "step": 3761
+ },
+ {
+ "epoch": 52.25163826998689,
+ "grad_norm": 0.20850200951099396,
+ "learning_rate": 0.0006,
+ "loss": 3.5563712120056152,
+ "step": 3762
+ },
+ {
+ "epoch": 52.265618173875055,
+ "grad_norm": 0.2073400765657425,
+ "learning_rate": 0.0006,
+ "loss": 3.542343854904175,
+ "step": 3763
+ },
+ {
+ "epoch": 52.27959807776322,
+ "grad_norm": 0.21886718273162842,
+ "learning_rate": 0.0006,
+ "loss": 3.5633034706115723,
+ "step": 3764
+ },
+ {
+ "epoch": 52.293577981651374,
+ "grad_norm": 0.2218562215566635,
+ "learning_rate": 0.0006,
+ "loss": 3.5644288063049316,
+ "step": 3765
+ },
+ {
+ "epoch": 52.30755788553954,
+ "grad_norm": 0.22043557465076447,
+ "learning_rate": 0.0006,
+ "loss": 3.564373731613159,
+ "step": 3766
+ },
+ {
+ "epoch": 52.3215377894277,
+ "grad_norm": 0.2095082402229309,
+ "learning_rate": 0.0006,
+ "loss": 3.5336289405822754,
+ "step": 3767
+ },
+ {
+ "epoch": 52.33551769331586,
+ "grad_norm": 0.21115876734256744,
+ "learning_rate": 0.0006,
+ "loss": 3.5761165618896484,
+ "step": 3768
+ },
+ {
+ "epoch": 52.34949759720402,
+ "grad_norm": 0.21558400988578796,
+ "learning_rate": 0.0006,
+ "loss": 3.573495388031006,
+ "step": 3769
+ },
+ {
+ "epoch": 52.36347750109218,
+ "grad_norm": 0.213745579123497,
+ "learning_rate": 0.0006,
+ "loss": 3.572171211242676,
+ "step": 3770
+ },
+ {
+ "epoch": 52.37745740498034,
+ "grad_norm": 0.1926180124282837,
+ "learning_rate": 0.0006,
+ "loss": 3.532592535018921,
+ "step": 3771
+ },
+ {
+ "epoch": 52.391437308868504,
+ "grad_norm": 0.1993863731622696,
+ "learning_rate": 0.0006,
+ "loss": 3.551880359649658,
+ "step": 3772
+ },
+ {
+ "epoch": 52.40541721275666,
+ "grad_norm": 0.2018740326166153,
+ "learning_rate": 0.0006,
+ "loss": 3.557328701019287,
+ "step": 3773
+ },
+ {
+ "epoch": 52.419397116644824,
+ "grad_norm": 0.19035610556602478,
+ "learning_rate": 0.0006,
+ "loss": 3.600301504135132,
+ "step": 3774
+ },
+ {
+ "epoch": 52.43337702053299,
+ "grad_norm": 0.20069538056850433,
+ "learning_rate": 0.0006,
+ "loss": 3.5938944816589355,
+ "step": 3775
+ },
+ {
+ "epoch": 52.44735692442114,
+ "grad_norm": 0.21255625784397125,
+ "learning_rate": 0.0006,
+ "loss": 3.561086893081665,
+ "step": 3776
+ },
+ {
+ "epoch": 52.46133682830931,
+ "grad_norm": 0.20132070779800415,
+ "learning_rate": 0.0006,
+ "loss": 3.5525574684143066,
+ "step": 3777
+ },
+ {
+ "epoch": 52.47531673219746,
+ "grad_norm": 0.20152916014194489,
+ "learning_rate": 0.0006,
+ "loss": 3.5697402954101562,
+ "step": 3778
+ },
+ {
+ "epoch": 52.489296636085626,
+ "grad_norm": 0.1984269767999649,
+ "learning_rate": 0.0006,
+ "loss": 3.5686168670654297,
+ "step": 3779
+ },
+ {
+ "epoch": 52.50327653997379,
+ "grad_norm": 0.212612584233284,
+ "learning_rate": 0.0006,
+ "loss": 3.5522124767303467,
+ "step": 3780
+ },
+ {
+ "epoch": 52.517256443861946,
+ "grad_norm": 0.21382521092891693,
+ "learning_rate": 0.0006,
+ "loss": 3.5692944526672363,
+ "step": 3781
+ },
+ {
+ "epoch": 52.53123634775011,
+ "grad_norm": 0.2118486911058426,
+ "learning_rate": 0.0006,
+ "loss": 3.562495708465576,
+ "step": 3782
+ },
+ {
+ "epoch": 52.54521625163827,
+ "grad_norm": 0.22253486514091492,
+ "learning_rate": 0.0006,
+ "loss": 3.5709781646728516,
+ "step": 3783
+ },
+ {
+ "epoch": 52.55919615552643,
+ "grad_norm": 0.23701436817646027,
+ "learning_rate": 0.0006,
+ "loss": 3.548953056335449,
+ "step": 3784
+ },
+ {
+ "epoch": 52.57317605941459,
+ "grad_norm": 0.21345193684101105,
+ "learning_rate": 0.0006,
+ "loss": 3.543029308319092,
+ "step": 3785
+ },
+ {
+ "epoch": 52.58715596330275,
+ "grad_norm": 0.1854170262813568,
+ "learning_rate": 0.0006,
+ "loss": 3.5490989685058594,
+ "step": 3786
+ },
+ {
+ "epoch": 52.60113586719091,
+ "grad_norm": 0.23733633756637573,
+ "learning_rate": 0.0006,
+ "loss": 3.5800132751464844,
+ "step": 3787
+ },
+ {
+ "epoch": 52.615115771079076,
+ "grad_norm": 0.26175495982170105,
+ "learning_rate": 0.0006,
+ "loss": 3.562596321105957,
+ "step": 3788
+ },
+ {
+ "epoch": 52.62909567496723,
+ "grad_norm": 0.23134057223796844,
+ "learning_rate": 0.0006,
+ "loss": 3.5685765743255615,
+ "step": 3789
+ },
+ {
+ "epoch": 52.643075578855395,
+ "grad_norm": 0.1974988877773285,
+ "learning_rate": 0.0006,
+ "loss": 3.570517063140869,
+ "step": 3790
+ },
+ {
+ "epoch": 52.65705548274356,
+ "grad_norm": 0.20049697160720825,
+ "learning_rate": 0.0006,
+ "loss": 3.573286533355713,
+ "step": 3791
+ },
+ {
+ "epoch": 52.671035386631715,
+ "grad_norm": 0.1956445872783661,
+ "learning_rate": 0.0006,
+ "loss": 3.565880537033081,
+ "step": 3792
+ },
+ {
+ "epoch": 52.68501529051988,
+ "grad_norm": 0.2082354575395584,
+ "learning_rate": 0.0006,
+ "loss": 3.587278366088867,
+ "step": 3793
+ },
+ {
+ "epoch": 52.69899519440804,
+ "grad_norm": 0.20923161506652832,
+ "learning_rate": 0.0006,
+ "loss": 3.569469451904297,
+ "step": 3794
+ },
+ {
+ "epoch": 52.7129750982962,
+ "grad_norm": 0.20482848584651947,
+ "learning_rate": 0.0006,
+ "loss": 3.5826265811920166,
+ "step": 3795
+ },
+ {
+ "epoch": 52.72695500218436,
+ "grad_norm": 0.20411530137062073,
+ "learning_rate": 0.0006,
+ "loss": 3.5870275497436523,
+ "step": 3796
+ },
+ {
+ "epoch": 52.74093490607252,
+ "grad_norm": 0.2205485701560974,
+ "learning_rate": 0.0006,
+ "loss": 3.58900785446167,
+ "step": 3797
+ },
+ {
+ "epoch": 52.75491480996068,
+ "grad_norm": 0.21134008467197418,
+ "learning_rate": 0.0006,
+ "loss": 3.591036558151245,
+ "step": 3798
+ },
+ {
+ "epoch": 52.768894713848844,
+ "grad_norm": 0.20001831650733948,
+ "learning_rate": 0.0006,
+ "loss": 3.5670390129089355,
+ "step": 3799
+ },
+ {
+ "epoch": 52.782874617737,
+ "grad_norm": 0.2175939679145813,
+ "learning_rate": 0.0006,
+ "loss": 3.594132423400879,
+ "step": 3800
+ },
+ {
+ "epoch": 52.796854521625164,
+ "grad_norm": 0.22054694592952728,
+ "learning_rate": 0.0006,
+ "loss": 3.5565545558929443,
+ "step": 3801
+ },
+ {
+ "epoch": 52.81083442551333,
+ "grad_norm": 0.22901731729507446,
+ "learning_rate": 0.0006,
+ "loss": 3.5837020874023438,
+ "step": 3802
+ },
+ {
+ "epoch": 52.824814329401484,
+ "grad_norm": 0.22492778301239014,
+ "learning_rate": 0.0006,
+ "loss": 3.608218193054199,
+ "step": 3803
+ },
+ {
+ "epoch": 52.83879423328965,
+ "grad_norm": 0.21645256876945496,
+ "learning_rate": 0.0006,
+ "loss": 3.5839202404022217,
+ "step": 3804
+ },
+ {
+ "epoch": 52.8527741371778,
+ "grad_norm": 0.19680161774158478,
+ "learning_rate": 0.0006,
+ "loss": 3.568756580352783,
+ "step": 3805
+ },
+ {
+ "epoch": 52.86675404106597,
+ "grad_norm": 0.2084486186504364,
+ "learning_rate": 0.0006,
+ "loss": 3.580197811126709,
+ "step": 3806
+ },
+ {
+ "epoch": 52.88073394495413,
+ "grad_norm": 0.19380393624305725,
+ "learning_rate": 0.0006,
+ "loss": 3.5871198177337646,
+ "step": 3807
+ },
+ {
+ "epoch": 52.89471384884229,
+ "grad_norm": 0.1962910294532776,
+ "learning_rate": 0.0006,
+ "loss": 3.5878777503967285,
+ "step": 3808
+ },
+ {
+ "epoch": 52.90869375273045,
+ "grad_norm": 0.23292803764343262,
+ "learning_rate": 0.0006,
+ "loss": 3.574855327606201,
+ "step": 3809
+ },
+ {
+ "epoch": 52.92267365661861,
+ "grad_norm": 0.26974233984947205,
+ "learning_rate": 0.0006,
+ "loss": 3.5731749534606934,
+ "step": 3810
+ },
+ {
+ "epoch": 52.93665356050677,
+ "grad_norm": 0.26665496826171875,
+ "learning_rate": 0.0006,
+ "loss": 3.552717685699463,
+ "step": 3811
+ },
+ {
+ "epoch": 52.95063346439493,
+ "grad_norm": 0.24156489968299866,
+ "learning_rate": 0.0006,
+ "loss": 3.581787109375,
+ "step": 3812
+ },
+ {
+ "epoch": 52.964613368283096,
+ "grad_norm": 0.22062325477600098,
+ "learning_rate": 0.0006,
+ "loss": 3.578994035720825,
+ "step": 3813
+ },
+ {
+ "epoch": 52.97859327217125,
+ "grad_norm": 0.19949151575565338,
+ "learning_rate": 0.0006,
+ "loss": 3.6157355308532715,
+ "step": 3814
+ },
+ {
+ "epoch": 52.992573176059416,
+ "grad_norm": 0.2157975435256958,
+ "learning_rate": 0.0006,
+ "loss": 3.5677759647369385,
+ "step": 3815
+ },
+ {
+ "epoch": 53.0,
+ "grad_norm": 0.23285679519176483,
+ "learning_rate": 0.0006,
+ "loss": 3.5541789531707764,
+ "step": 3816
+ },
+ {
+ "epoch": 53.0,
+ "eval_loss": 3.9737255573272705,
+ "eval_runtime": 46.0304,
+ "eval_samples_per_second": 53.052,
+ "eval_steps_per_second": 3.324,
+ "step": 3816
+ },
+ {
+ "epoch": 53.01397990388816,
+ "grad_norm": 0.212715283036232,
+ "learning_rate": 0.0006,
+ "loss": 3.5475640296936035,
+ "step": 3817
+ },
+ {
+ "epoch": 53.02795980777632,
+ "grad_norm": 0.24556505680084229,
+ "learning_rate": 0.0006,
+ "loss": 3.5197463035583496,
+ "step": 3818
+ },
+ {
+ "epoch": 53.04193971166448,
+ "grad_norm": 0.2898217737674713,
+ "learning_rate": 0.0006,
+ "loss": 3.527390956878662,
+ "step": 3819
+ },
+ {
+ "epoch": 53.05591961555265,
+ "grad_norm": 0.26151803135871887,
+ "learning_rate": 0.0006,
+ "loss": 3.5462024211883545,
+ "step": 3820
+ },
+ {
+ "epoch": 53.0698995194408,
+ "grad_norm": 0.24648059904575348,
+ "learning_rate": 0.0006,
+ "loss": 3.5584919452667236,
+ "step": 3821
+ },
+ {
+ "epoch": 53.083879423328966,
+ "grad_norm": 0.22295059263706207,
+ "learning_rate": 0.0006,
+ "loss": 3.517195701599121,
+ "step": 3822
+ },
+ {
+ "epoch": 53.09785932721712,
+ "grad_norm": 0.2206476330757141,
+ "learning_rate": 0.0006,
+ "loss": 3.570678234100342,
+ "step": 3823
+ },
+ {
+ "epoch": 53.111839231105286,
+ "grad_norm": 0.22069714963436127,
+ "learning_rate": 0.0006,
+ "loss": 3.5707359313964844,
+ "step": 3824
+ },
+ {
+ "epoch": 53.12581913499345,
+ "grad_norm": 0.21850740909576416,
+ "learning_rate": 0.0006,
+ "loss": 3.5730209350585938,
+ "step": 3825
+ },
+ {
+ "epoch": 53.139799038881605,
+ "grad_norm": 0.21554340422153473,
+ "learning_rate": 0.0006,
+ "loss": 3.5578367710113525,
+ "step": 3826
+ },
+ {
+ "epoch": 53.15377894276977,
+ "grad_norm": 0.21678747236728668,
+ "learning_rate": 0.0006,
+ "loss": 3.5603280067443848,
+ "step": 3827
+ },
+ {
+ "epoch": 53.16775884665793,
+ "grad_norm": 0.22017014026641846,
+ "learning_rate": 0.0006,
+ "loss": 3.577760696411133,
+ "step": 3828
+ },
+ {
+ "epoch": 53.18173875054609,
+ "grad_norm": 0.20485524833202362,
+ "learning_rate": 0.0006,
+ "loss": 3.574751853942871,
+ "step": 3829
+ },
+ {
+ "epoch": 53.19571865443425,
+ "grad_norm": 0.22951237857341766,
+ "learning_rate": 0.0006,
+ "loss": 3.5464377403259277,
+ "step": 3830
+ },
+ {
+ "epoch": 53.20969855832241,
+ "grad_norm": 0.2343965619802475,
+ "learning_rate": 0.0006,
+ "loss": 3.516113758087158,
+ "step": 3831
+ },
+ {
+ "epoch": 53.22367846221057,
+ "grad_norm": 0.24002069234848022,
+ "learning_rate": 0.0006,
+ "loss": 3.564629554748535,
+ "step": 3832
+ },
+ {
+ "epoch": 53.237658366098735,
+ "grad_norm": 0.23933765292167664,
+ "learning_rate": 0.0006,
+ "loss": 3.5518507957458496,
+ "step": 3833
+ },
+ {
+ "epoch": 53.25163826998689,
+ "grad_norm": 0.2188953459262848,
+ "learning_rate": 0.0006,
+ "loss": 3.5341856479644775,
+ "step": 3834
+ },
+ {
+ "epoch": 53.265618173875055,
+ "grad_norm": 0.22629091143608093,
+ "learning_rate": 0.0006,
+ "loss": 3.5479273796081543,
+ "step": 3835
+ },
+ {
+ "epoch": 53.27959807776322,
+ "grad_norm": 0.2386554479598999,
+ "learning_rate": 0.0006,
+ "loss": 3.6097445487976074,
+ "step": 3836
+ },
+ {
+ "epoch": 53.293577981651374,
+ "grad_norm": 0.23003390431404114,
+ "learning_rate": 0.0006,
+ "loss": 3.5435304641723633,
+ "step": 3837
+ },
+ {
+ "epoch": 53.30755788553954,
+ "grad_norm": 0.248053640127182,
+ "learning_rate": 0.0006,
+ "loss": 3.545290470123291,
+ "step": 3838
+ },
+ {
+ "epoch": 53.3215377894277,
+ "grad_norm": 0.23945583403110504,
+ "learning_rate": 0.0006,
+ "loss": 3.570158004760742,
+ "step": 3839
+ },
+ {
+ "epoch": 53.33551769331586,
+ "grad_norm": 0.22801059484481812,
+ "learning_rate": 0.0006,
+ "loss": 3.5600779056549072,
+ "step": 3840
+ },
+ {
+ "epoch": 53.34949759720402,
+ "grad_norm": 0.2303777039051056,
+ "learning_rate": 0.0006,
+ "loss": 3.576674222946167,
+ "step": 3841
+ },
+ {
+ "epoch": 53.36347750109218,
+ "grad_norm": 0.23318468034267426,
+ "learning_rate": 0.0006,
+ "loss": 3.5705552101135254,
+ "step": 3842
+ },
+ {
+ "epoch": 53.37745740498034,
+ "grad_norm": 0.2435566782951355,
+ "learning_rate": 0.0006,
+ "loss": 3.576536178588867,
+ "step": 3843
+ },
+ {
+ "epoch": 53.391437308868504,
+ "grad_norm": 0.2857200503349304,
+ "learning_rate": 0.0006,
+ "loss": 3.535977363586426,
+ "step": 3844
+ },
+ {
+ "epoch": 53.40541721275666,
+ "grad_norm": 0.2640133500099182,
+ "learning_rate": 0.0006,
+ "loss": 3.547731399536133,
+ "step": 3845
+ },
+ {
+ "epoch": 53.419397116644824,
+ "grad_norm": 0.22218745946884155,
+ "learning_rate": 0.0006,
+ "loss": 3.5798351764678955,
+ "step": 3846
+ },
+ {
+ "epoch": 53.43337702053299,
+ "grad_norm": 0.2537193298339844,
+ "learning_rate": 0.0006,
+ "loss": 3.5289204120635986,
+ "step": 3847
+ },
+ {
+ "epoch": 53.44735692442114,
+ "grad_norm": 0.28360968828201294,
+ "learning_rate": 0.0006,
+ "loss": 3.5503361225128174,
+ "step": 3848
+ },
+ {
+ "epoch": 53.46133682830931,
+ "grad_norm": 0.2892421782016754,
+ "learning_rate": 0.0006,
+ "loss": 3.5675411224365234,
+ "step": 3849
+ },
+ {
+ "epoch": 53.47531673219746,
+ "grad_norm": 0.28305584192276,
+ "learning_rate": 0.0006,
+ "loss": 3.573280096054077,
+ "step": 3850
+ },
+ {
+ "epoch": 53.489296636085626,
+ "grad_norm": 0.24628037214279175,
+ "learning_rate": 0.0006,
+ "loss": 3.5215024948120117,
+ "step": 3851
+ },
+ {
+ "epoch": 53.50327653997379,
+ "grad_norm": 0.2463715672492981,
+ "learning_rate": 0.0006,
+ "loss": 3.5790698528289795,
+ "step": 3852
+ },
+ {
+ "epoch": 53.517256443861946,
+ "grad_norm": 0.2646636664867401,
+ "learning_rate": 0.0006,
+ "loss": 3.589735269546509,
+ "step": 3853
+ },
+ {
+ "epoch": 53.53123634775011,
+ "grad_norm": 0.27668821811676025,
+ "learning_rate": 0.0006,
+ "loss": 3.5690393447875977,
+ "step": 3854
+ },
+ {
+ "epoch": 53.54521625163827,
+ "grad_norm": 0.2630347013473511,
+ "learning_rate": 0.0006,
+ "loss": 3.5846545696258545,
+ "step": 3855
+ },
+ {
+ "epoch": 53.55919615552643,
+ "grad_norm": 0.27177906036376953,
+ "learning_rate": 0.0006,
+ "loss": 3.5431671142578125,
+ "step": 3856
+ },
+ {
+ "epoch": 53.57317605941459,
+ "grad_norm": 0.27125081419944763,
+ "learning_rate": 0.0006,
+ "loss": 3.5905215740203857,
+ "step": 3857
+ },
+ {
+ "epoch": 53.58715596330275,
+ "grad_norm": 0.24802975356578827,
+ "learning_rate": 0.0006,
+ "loss": 3.5472917556762695,
+ "step": 3858
+ },
+ {
+ "epoch": 53.60113586719091,
+ "grad_norm": 0.23812460899353027,
+ "learning_rate": 0.0006,
+ "loss": 3.5917325019836426,
+ "step": 3859
+ },
+ {
+ "epoch": 53.615115771079076,
+ "grad_norm": 0.2597416937351227,
+ "learning_rate": 0.0006,
+ "loss": 3.5515074729919434,
+ "step": 3860
+ },
+ {
+ "epoch": 53.62909567496723,
+ "grad_norm": 0.24389132857322693,
+ "learning_rate": 0.0006,
+ "loss": 3.578125476837158,
+ "step": 3861
+ },
+ {
+ "epoch": 53.643075578855395,
+ "grad_norm": 0.23878274857997894,
+ "learning_rate": 0.0006,
+ "loss": 3.5612001419067383,
+ "step": 3862
+ },
+ {
+ "epoch": 53.65705548274356,
+ "grad_norm": 0.23248082399368286,
+ "learning_rate": 0.0006,
+ "loss": 3.5651350021362305,
+ "step": 3863
+ },
+ {
+ "epoch": 53.671035386631715,
+ "grad_norm": 0.22560833394527435,
+ "learning_rate": 0.0006,
+ "loss": 3.58971905708313,
+ "step": 3864
+ },
+ {
+ "epoch": 53.68501529051988,
+ "grad_norm": 0.22092120349407196,
+ "learning_rate": 0.0006,
+ "loss": 3.5567374229431152,
+ "step": 3865
+ },
+ {
+ "epoch": 53.69899519440804,
+ "grad_norm": 0.20171885192394257,
+ "learning_rate": 0.0006,
+ "loss": 3.5868449211120605,
+ "step": 3866
+ },
+ {
+ "epoch": 53.7129750982962,
+ "grad_norm": 0.2051871120929718,
+ "learning_rate": 0.0006,
+ "loss": 3.5853161811828613,
+ "step": 3867
+ },
+ {
+ "epoch": 53.72695500218436,
+ "grad_norm": 0.1912045031785965,
+ "learning_rate": 0.0006,
+ "loss": 3.5901622772216797,
+ "step": 3868
+ },
+ {
+ "epoch": 53.74093490607252,
+ "grad_norm": 0.20817188918590546,
+ "learning_rate": 0.0006,
+ "loss": 3.5759787559509277,
+ "step": 3869
+ },
+ {
+ "epoch": 53.75491480996068,
+ "grad_norm": 0.2157917469739914,
+ "learning_rate": 0.0006,
+ "loss": 3.5438575744628906,
+ "step": 3870
+ },
+ {
+ "epoch": 53.768894713848844,
+ "grad_norm": 0.2332053929567337,
+ "learning_rate": 0.0006,
+ "loss": 3.587697982788086,
+ "step": 3871
+ },
+ {
+ "epoch": 53.782874617737,
+ "grad_norm": 0.22700314223766327,
+ "learning_rate": 0.0006,
+ "loss": 3.586625337600708,
+ "step": 3872
+ },
+ {
+ "epoch": 53.796854521625164,
+ "grad_norm": 0.20737017691135406,
+ "learning_rate": 0.0006,
+ "loss": 3.552398204803467,
+ "step": 3873
+ },
+ {
+ "epoch": 53.81083442551333,
+ "grad_norm": 0.20355650782585144,
+ "learning_rate": 0.0006,
+ "loss": 3.5734331607818604,
+ "step": 3874
+ },
+ {
+ "epoch": 53.824814329401484,
+ "grad_norm": 0.18868018686771393,
+ "learning_rate": 0.0006,
+ "loss": 3.582509756088257,
+ "step": 3875
+ },
+ {
+ "epoch": 53.83879423328965,
+ "grad_norm": 0.20373275876045227,
+ "learning_rate": 0.0006,
+ "loss": 3.559354782104492,
+ "step": 3876
+ },
+ {
+ "epoch": 53.8527741371778,
+ "grad_norm": 0.1988871544599533,
+ "learning_rate": 0.0006,
+ "loss": 3.5575170516967773,
+ "step": 3877
+ },
+ {
+ "epoch": 53.86675404106597,
+ "grad_norm": 0.19602873921394348,
+ "learning_rate": 0.0006,
+ "loss": 3.5500855445861816,
+ "step": 3878
+ },
+ {
+ "epoch": 53.88073394495413,
+ "grad_norm": 0.201382577419281,
+ "learning_rate": 0.0006,
+ "loss": 3.563499927520752,
+ "step": 3879
+ },
+ {
+ "epoch": 53.89471384884229,
+ "grad_norm": 0.19682180881500244,
+ "learning_rate": 0.0006,
+ "loss": 3.586855888366699,
+ "step": 3880
+ },
+ {
+ "epoch": 53.90869375273045,
+ "grad_norm": 0.19423548877239227,
+ "learning_rate": 0.0006,
+ "loss": 3.5840401649475098,
+ "step": 3881
+ },
+ {
+ "epoch": 53.92267365661861,
+ "grad_norm": 0.1970449835062027,
+ "learning_rate": 0.0006,
+ "loss": 3.554568290710449,
+ "step": 3882
+ },
+ {
+ "epoch": 53.93665356050677,
+ "grad_norm": 0.20274291932582855,
+ "learning_rate": 0.0006,
+ "loss": 3.5928239822387695,
+ "step": 3883
+ },
+ {
+ "epoch": 53.95063346439493,
+ "grad_norm": 0.18485035002231598,
+ "learning_rate": 0.0006,
+ "loss": 3.576934337615967,
+ "step": 3884
+ },
+ {
+ "epoch": 53.964613368283096,
+ "grad_norm": 0.18437646329402924,
+ "learning_rate": 0.0006,
+ "loss": 3.574990749359131,
+ "step": 3885
+ },
+ {
+ "epoch": 53.97859327217125,
+ "grad_norm": 0.18616823852062225,
+ "learning_rate": 0.0006,
+ "loss": 3.5566892623901367,
+ "step": 3886
+ },
+ {
+ "epoch": 53.992573176059416,
+ "grad_norm": 0.19502122700214386,
+ "learning_rate": 0.0006,
+ "loss": 3.604814052581787,
+ "step": 3887
+ },
+ {
+ "epoch": 54.0,
+ "grad_norm": 0.2657789885997772,
+ "learning_rate": 0.0006,
+ "loss": 3.5094165802001953,
+ "step": 3888
+ },
+ {
+ "epoch": 54.0,
+ "eval_loss": 3.965742349624634,
+ "eval_runtime": 45.5851,
+ "eval_samples_per_second": 53.57,
+ "eval_steps_per_second": 3.356,
+ "step": 3888
+ },
+ {
+ "epoch": 54.01397990388816,
+ "grad_norm": 0.27879253029823303,
+ "learning_rate": 0.0006,
+ "loss": 3.565103530883789,
+ "step": 3889
+ },
+ {
+ "epoch": 54.02795980777632,
+ "grad_norm": 0.2959246337413788,
+ "learning_rate": 0.0006,
+ "loss": 3.5378212928771973,
+ "step": 3890
+ },
+ {
+ "epoch": 54.04193971166448,
+ "grad_norm": 0.32719552516937256,
+ "learning_rate": 0.0006,
+ "loss": 3.5566751956939697,
+ "step": 3891
+ },
+ {
+ "epoch": 54.05591961555265,
+ "grad_norm": 0.36854541301727295,
+ "learning_rate": 0.0006,
+ "loss": 3.5363879203796387,
+ "step": 3892
+ },
+ {
+ "epoch": 54.0698995194408,
+ "grad_norm": 0.34325551986694336,
+ "learning_rate": 0.0006,
+ "loss": 3.5306153297424316,
+ "step": 3893
+ },
+ {
+ "epoch": 54.083879423328966,
+ "grad_norm": 0.2798653244972229,
+ "learning_rate": 0.0006,
+ "loss": 3.5642261505126953,
+ "step": 3894
+ },
+ {
+ "epoch": 54.09785932721712,
+ "grad_norm": 0.24857765436172485,
+ "learning_rate": 0.0006,
+ "loss": 3.50216007232666,
+ "step": 3895
+ },
+ {
+ "epoch": 54.111839231105286,
+ "grad_norm": 0.2943299114704132,
+ "learning_rate": 0.0006,
+ "loss": 3.524904251098633,
+ "step": 3896
+ },
+ {
+ "epoch": 54.12581913499345,
+ "grad_norm": 0.2791048586368561,
+ "learning_rate": 0.0006,
+ "loss": 3.56490421295166,
+ "step": 3897
+ },
+ {
+ "epoch": 54.139799038881605,
+ "grad_norm": 0.2781159579753876,
+ "learning_rate": 0.0006,
+ "loss": 3.536180019378662,
+ "step": 3898
+ },
+ {
+ "epoch": 54.15377894276977,
+ "grad_norm": 0.30359897017478943,
+ "learning_rate": 0.0006,
+ "loss": 3.546919345855713,
+ "step": 3899
+ },
+ {
+ "epoch": 54.16775884665793,
+ "grad_norm": 0.2738530933856964,
+ "learning_rate": 0.0006,
+ "loss": 3.547968864440918,
+ "step": 3900
+ },
+ {
+ "epoch": 54.18173875054609,
+ "grad_norm": 0.24783718585968018,
+ "learning_rate": 0.0006,
+ "loss": 3.5802721977233887,
+ "step": 3901
+ },
+ {
+ "epoch": 54.19571865443425,
+ "grad_norm": 0.2544802725315094,
+ "learning_rate": 0.0006,
+ "loss": 3.5556836128234863,
+ "step": 3902
+ },
+ {
+ "epoch": 54.20969855832241,
+ "grad_norm": 0.26695969700813293,
+ "learning_rate": 0.0006,
+ "loss": 3.534266471862793,
+ "step": 3903
+ },
+ {
+ "epoch": 54.22367846221057,
+ "grad_norm": 0.24152538180351257,
+ "learning_rate": 0.0006,
+ "loss": 3.534069538116455,
+ "step": 3904
+ },
+ {
+ "epoch": 54.237658366098735,
+ "grad_norm": 0.21859917044639587,
+ "learning_rate": 0.0006,
+ "loss": 3.535362958908081,
+ "step": 3905
+ },
+ {
+ "epoch": 54.25163826998689,
+ "grad_norm": 0.24676479399204254,
+ "learning_rate": 0.0006,
+ "loss": 3.567283868789673,
+ "step": 3906
+ },
+ {
+ "epoch": 54.265618173875055,
+ "grad_norm": 0.26998138427734375,
+ "learning_rate": 0.0006,
+ "loss": 3.518892765045166,
+ "step": 3907
+ },
+ {
+ "epoch": 54.27959807776322,
+ "grad_norm": 0.30108749866485596,
+ "learning_rate": 0.0006,
+ "loss": 3.5865135192871094,
+ "step": 3908
+ },
+ {
+ "epoch": 54.293577981651374,
+ "grad_norm": 0.31310492753982544,
+ "learning_rate": 0.0006,
+ "loss": 3.546637535095215,
+ "step": 3909
+ },
+ {
+ "epoch": 54.30755788553954,
+ "grad_norm": 0.2994784712791443,
+ "learning_rate": 0.0006,
+ "loss": 3.5441226959228516,
+ "step": 3910
+ },
+ {
+ "epoch": 54.3215377894277,
+ "grad_norm": 0.25010061264038086,
+ "learning_rate": 0.0006,
+ "loss": 3.5619735717773438,
+ "step": 3911
+ },
+ {
+ "epoch": 54.33551769331586,
+ "grad_norm": 0.253129780292511,
+ "learning_rate": 0.0006,
+ "loss": 3.530210494995117,
+ "step": 3912
+ },
+ {
+ "epoch": 54.34949759720402,
+ "grad_norm": 0.2652498781681061,
+ "learning_rate": 0.0006,
+ "loss": 3.534478187561035,
+ "step": 3913
+ },
+ {
+ "epoch": 54.36347750109218,
+ "grad_norm": 0.250503808259964,
+ "learning_rate": 0.0006,
+ "loss": 3.545886516571045,
+ "step": 3914
+ },
+ {
+ "epoch": 54.37745740498034,
+ "grad_norm": 0.22186073660850525,
+ "learning_rate": 0.0006,
+ "loss": 3.5884604454040527,
+ "step": 3915
+ },
+ {
+ "epoch": 54.391437308868504,
+ "grad_norm": 0.21128980815410614,
+ "learning_rate": 0.0006,
+ "loss": 3.527862548828125,
+ "step": 3916
+ },
+ {
+ "epoch": 54.40541721275666,
+ "grad_norm": 0.23184002935886383,
+ "learning_rate": 0.0006,
+ "loss": 3.5599637031555176,
+ "step": 3917
+ },
+ {
+ "epoch": 54.419397116644824,
+ "grad_norm": 0.23710627853870392,
+ "learning_rate": 0.0006,
+ "loss": 3.54667329788208,
+ "step": 3918
+ },
+ {
+ "epoch": 54.43337702053299,
+ "grad_norm": 0.2314598113298416,
+ "learning_rate": 0.0006,
+ "loss": 3.518406391143799,
+ "step": 3919
+ },
+ {
+ "epoch": 54.44735692442114,
+ "grad_norm": 0.21623452007770538,
+ "learning_rate": 0.0006,
+ "loss": 3.5749731063842773,
+ "step": 3920
+ },
+ {
+ "epoch": 54.46133682830931,
+ "grad_norm": 0.22832012176513672,
+ "learning_rate": 0.0006,
+ "loss": 3.57436466217041,
+ "step": 3921
+ },
+ {
+ "epoch": 54.47531673219746,
+ "grad_norm": 0.2184043526649475,
+ "learning_rate": 0.0006,
+ "loss": 3.578040838241577,
+ "step": 3922
+ },
+ {
+ "epoch": 54.489296636085626,
+ "grad_norm": 0.2302335649728775,
+ "learning_rate": 0.0006,
+ "loss": 3.5646257400512695,
+ "step": 3923
+ },
+ {
+ "epoch": 54.50327653997379,
+ "grad_norm": 0.21635375916957855,
+ "learning_rate": 0.0006,
+ "loss": 3.546786308288574,
+ "step": 3924
+ },
+ {
+ "epoch": 54.517256443861946,
+ "grad_norm": 0.22332443296909332,
+ "learning_rate": 0.0006,
+ "loss": 3.5804502964019775,
+ "step": 3925
+ },
+ {
+ "epoch": 54.53123634775011,
+ "grad_norm": 0.21662919223308563,
+ "learning_rate": 0.0006,
+ "loss": 3.567797899246216,
+ "step": 3926
+ },
+ {
+ "epoch": 54.54521625163827,
+ "grad_norm": 0.21345169842243195,
+ "learning_rate": 0.0006,
+ "loss": 3.5746283531188965,
+ "step": 3927
+ },
+ {
+ "epoch": 54.55919615552643,
+ "grad_norm": 0.2111794501543045,
+ "learning_rate": 0.0006,
+ "loss": 3.5626277923583984,
+ "step": 3928
+ },
+ {
+ "epoch": 54.57317605941459,
+ "grad_norm": 0.22575712203979492,
+ "learning_rate": 0.0006,
+ "loss": 3.5856311321258545,
+ "step": 3929
+ },
+ {
+ "epoch": 54.58715596330275,
+ "grad_norm": 0.22963617742061615,
+ "learning_rate": 0.0006,
+ "loss": 3.584038257598877,
+ "step": 3930
+ },
+ {
+ "epoch": 54.60113586719091,
+ "grad_norm": 0.21805310249328613,
+ "learning_rate": 0.0006,
+ "loss": 3.5603089332580566,
+ "step": 3931
+ },
+ {
+ "epoch": 54.615115771079076,
+ "grad_norm": 0.22830283641815186,
+ "learning_rate": 0.0006,
+ "loss": 3.5533390045166016,
+ "step": 3932
+ },
+ {
+ "epoch": 54.62909567496723,
+ "grad_norm": 0.24158291518688202,
+ "learning_rate": 0.0006,
+ "loss": 3.5437779426574707,
+ "step": 3933
+ },
+ {
+ "epoch": 54.643075578855395,
+ "grad_norm": 0.22687768936157227,
+ "learning_rate": 0.0006,
+ "loss": 3.566315174102783,
+ "step": 3934
+ },
+ {
+ "epoch": 54.65705548274356,
+ "grad_norm": 0.21220184862613678,
+ "learning_rate": 0.0006,
+ "loss": 3.5772881507873535,
+ "step": 3935
+ },
+ {
+ "epoch": 54.671035386631715,
+ "grad_norm": 0.19508333504199982,
+ "learning_rate": 0.0006,
+ "loss": 3.5213584899902344,
+ "step": 3936
+ },
+ {
+ "epoch": 54.68501529051988,
+ "grad_norm": 0.199599027633667,
+ "learning_rate": 0.0006,
+ "loss": 3.553925037384033,
+ "step": 3937
+ },
+ {
+ "epoch": 54.69899519440804,
+ "grad_norm": 0.2063189297914505,
+ "learning_rate": 0.0006,
+ "loss": 3.5706050395965576,
+ "step": 3938
+ },
+ {
+ "epoch": 54.7129750982962,
+ "grad_norm": 0.2056119441986084,
+ "learning_rate": 0.0006,
+ "loss": 3.557199478149414,
+ "step": 3939
+ },
+ {
+ "epoch": 54.72695500218436,
+ "grad_norm": 0.2192074954509735,
+ "learning_rate": 0.0006,
+ "loss": 3.5869479179382324,
+ "step": 3940
+ },
+ {
+ "epoch": 54.74093490607252,
+ "grad_norm": 0.19796597957611084,
+ "learning_rate": 0.0006,
+ "loss": 3.559929609298706,
+ "step": 3941
+ },
+ {
+ "epoch": 54.75491480996068,
+ "grad_norm": 0.19003179669380188,
+ "learning_rate": 0.0006,
+ "loss": 3.5481486320495605,
+ "step": 3942
+ },
+ {
+ "epoch": 54.768894713848844,
+ "grad_norm": 0.189231738448143,
+ "learning_rate": 0.0006,
+ "loss": 3.5603561401367188,
+ "step": 3943
+ },
+ {
+ "epoch": 54.782874617737,
+ "grad_norm": 0.20949427783489227,
+ "learning_rate": 0.0006,
+ "loss": 3.567026138305664,
+ "step": 3944
+ },
+ {
+ "epoch": 54.796854521625164,
+ "grad_norm": 0.21650178730487823,
+ "learning_rate": 0.0006,
+ "loss": 3.5981621742248535,
+ "step": 3945
+ },
+ {
+ "epoch": 54.81083442551333,
+ "grad_norm": 0.21941770613193512,
+ "learning_rate": 0.0006,
+ "loss": 3.590226173400879,
+ "step": 3946
+ },
+ {
+ "epoch": 54.824814329401484,
+ "grad_norm": 0.2169734537601471,
+ "learning_rate": 0.0006,
+ "loss": 3.592764139175415,
+ "step": 3947
+ },
+ {
+ "epoch": 54.83879423328965,
+ "grad_norm": 0.20309467613697052,
+ "learning_rate": 0.0006,
+ "loss": 3.5706393718719482,
+ "step": 3948
+ },
+ {
+ "epoch": 54.8527741371778,
+ "grad_norm": 0.21803754568099976,
+ "learning_rate": 0.0006,
+ "loss": 3.5816526412963867,
+ "step": 3949
+ },
+ {
+ "epoch": 54.86675404106597,
+ "grad_norm": 0.22217069566249847,
+ "learning_rate": 0.0006,
+ "loss": 3.5895018577575684,
+ "step": 3950
+ },
+ {
+ "epoch": 54.88073394495413,
+ "grad_norm": 0.21204866468906403,
+ "learning_rate": 0.0006,
+ "loss": 3.5574231147766113,
+ "step": 3951
+ },
+ {
+ "epoch": 54.89471384884229,
+ "grad_norm": 0.2173423171043396,
+ "learning_rate": 0.0006,
+ "loss": 3.564763069152832,
+ "step": 3952
+ },
+ {
+ "epoch": 54.90869375273045,
+ "grad_norm": 0.2039082646369934,
+ "learning_rate": 0.0006,
+ "loss": 3.59708309173584,
+ "step": 3953
+ },
+ {
+ "epoch": 54.92267365661861,
+ "grad_norm": 0.20248384773731232,
+ "learning_rate": 0.0006,
+ "loss": 3.587890148162842,
+ "step": 3954
+ },
+ {
+ "epoch": 54.93665356050677,
+ "grad_norm": 0.20693068206310272,
+ "learning_rate": 0.0006,
+ "loss": 3.5569000244140625,
+ "step": 3955
+ },
+ {
+ "epoch": 54.95063346439493,
+ "grad_norm": 0.2109357714653015,
+ "learning_rate": 0.0006,
+ "loss": 3.552126884460449,
+ "step": 3956
+ },
+ {
+ "epoch": 54.964613368283096,
+ "grad_norm": 0.2278970628976822,
+ "learning_rate": 0.0006,
+ "loss": 3.564998149871826,
+ "step": 3957
+ },
+ {
+ "epoch": 54.97859327217125,
+ "grad_norm": 0.21663756668567657,
+ "learning_rate": 0.0006,
+ "loss": 3.571608543395996,
+ "step": 3958
+ },
+ {
+ "epoch": 54.992573176059416,
+ "grad_norm": 0.19653232395648956,
+ "learning_rate": 0.0006,
+ "loss": 3.5885231494903564,
+ "step": 3959
+ },
+ {
+ "epoch": 55.0,
+ "grad_norm": 0.21956856548786163,
+ "learning_rate": 0.0006,
+ "loss": 3.4966204166412354,
+ "step": 3960
+ },
+ {
+ "epoch": 55.0,
+ "eval_loss": 3.972649097442627,
+ "eval_runtime": 45.2298,
+ "eval_samples_per_second": 53.991,
+ "eval_steps_per_second": 3.383,
+ "step": 3960
+ },
+ {
+ "epoch": 55.01397990388816,
+ "grad_norm": 0.22733832895755768,
+ "learning_rate": 0.0006,
+ "loss": 3.546975612640381,
+ "step": 3961
+ },
+ {
+ "epoch": 55.02795980777632,
+ "grad_norm": 0.25451111793518066,
+ "learning_rate": 0.0006,
+ "loss": 3.54240083694458,
+ "step": 3962
+ },
+ {
+ "epoch": 55.04193971166448,
+ "grad_norm": 0.2394949048757553,
+ "learning_rate": 0.0006,
+ "loss": 3.5492677688598633,
+ "step": 3963
+ },
+ {
+ "epoch": 55.05591961555265,
+ "grad_norm": 0.2306671440601349,
+ "learning_rate": 0.0006,
+ "loss": 3.524200916290283,
+ "step": 3964
+ },
+ {
+ "epoch": 55.0698995194408,
+ "grad_norm": 0.2307029813528061,
+ "learning_rate": 0.0006,
+ "loss": 3.509249687194824,
+ "step": 3965
+ },
+ {
+ "epoch": 55.083879423328966,
+ "grad_norm": 0.24812111258506775,
+ "learning_rate": 0.0006,
+ "loss": 3.5500473976135254,
+ "step": 3966
+ },
+ {
+ "epoch": 55.09785932721712,
+ "grad_norm": 0.28564271330833435,
+ "learning_rate": 0.0006,
+ "loss": 3.5178303718566895,
+ "step": 3967
+ },
+ {
+ "epoch": 55.111839231105286,
+ "grad_norm": 0.26979005336761475,
+ "learning_rate": 0.0006,
+ "loss": 3.5306806564331055,
+ "step": 3968
+ },
+ {
+ "epoch": 55.12581913499345,
+ "grad_norm": 0.24274848401546478,
+ "learning_rate": 0.0006,
+ "loss": 3.5758519172668457,
+ "step": 3969
+ },
+ {
+ "epoch": 55.139799038881605,
+ "grad_norm": 0.2560444474220276,
+ "learning_rate": 0.0006,
+ "loss": 3.5417323112487793,
+ "step": 3970
+ },
+ {
+ "epoch": 55.15377894276977,
+ "grad_norm": 0.2553671598434448,
+ "learning_rate": 0.0006,
+ "loss": 3.5258004665374756,
+ "step": 3971
+ },
+ {
+ "epoch": 55.16775884665793,
+ "grad_norm": 0.2170111984014511,
+ "learning_rate": 0.0006,
+ "loss": 3.514847755432129,
+ "step": 3972
+ },
+ {
+ "epoch": 55.18173875054609,
+ "grad_norm": 0.20854522287845612,
+ "learning_rate": 0.0006,
+ "loss": 3.5248336791992188,
+ "step": 3973
+ },
+ {
+ "epoch": 55.19571865443425,
+ "grad_norm": 0.21873287856578827,
+ "learning_rate": 0.0006,
+ "loss": 3.5468008518218994,
+ "step": 3974
+ },
+ {
+ "epoch": 55.20969855832241,
+ "grad_norm": 0.21194154024124146,
+ "learning_rate": 0.0006,
+ "loss": 3.568512439727783,
+ "step": 3975
+ },
+ {
+ "epoch": 55.22367846221057,
+ "grad_norm": 0.23534680902957916,
+ "learning_rate": 0.0006,
+ "loss": 3.5285420417785645,
+ "step": 3976
+ },
+ {
+ "epoch": 55.237658366098735,
+ "grad_norm": 0.22674795985221863,
+ "learning_rate": 0.0006,
+ "loss": 3.5399436950683594,
+ "step": 3977
+ },
+ {
+ "epoch": 55.25163826998689,
+ "grad_norm": 0.2248486578464508,
+ "learning_rate": 0.0006,
+ "loss": 3.5241036415100098,
+ "step": 3978
+ },
+ {
+ "epoch": 55.265618173875055,
+ "grad_norm": 0.241151362657547,
+ "learning_rate": 0.0006,
+ "loss": 3.547079086303711,
+ "step": 3979
+ },
+ {
+ "epoch": 55.27959807776322,
+ "grad_norm": 0.2783249318599701,
+ "learning_rate": 0.0006,
+ "loss": 3.5442988872528076,
+ "step": 3980
+ },
+ {
+ "epoch": 55.293577981651374,
+ "grad_norm": 0.2743528485298157,
+ "learning_rate": 0.0006,
+ "loss": 3.529618978500366,
+ "step": 3981
+ },
+ {
+ "epoch": 55.30755788553954,
+ "grad_norm": 0.23901724815368652,
+ "learning_rate": 0.0006,
+ "loss": 3.5379443168640137,
+ "step": 3982
+ },
+ {
+ "epoch": 55.3215377894277,
+ "grad_norm": 0.22758841514587402,
+ "learning_rate": 0.0006,
+ "loss": 3.5446794033050537,
+ "step": 3983
+ },
+ {
+ "epoch": 55.33551769331586,
+ "grad_norm": 0.22634629905223846,
+ "learning_rate": 0.0006,
+ "loss": 3.521944522857666,
+ "step": 3984
+ },
+ {
+ "epoch": 55.34949759720402,
+ "grad_norm": 0.23372086882591248,
+ "learning_rate": 0.0006,
+ "loss": 3.565023899078369,
+ "step": 3985
+ },
+ {
+ "epoch": 55.36347750109218,
+ "grad_norm": 0.24722231924533844,
+ "learning_rate": 0.0006,
+ "loss": 3.535661220550537,
+ "step": 3986
+ },
+ {
+ "epoch": 55.37745740498034,
+ "grad_norm": 0.21684594452381134,
+ "learning_rate": 0.0006,
+ "loss": 3.59070086479187,
+ "step": 3987
+ },
+ {
+ "epoch": 55.391437308868504,
+ "grad_norm": 0.186308816075325,
+ "learning_rate": 0.0006,
+ "loss": 3.5373833179473877,
+ "step": 3988
+ },
+ {
+ "epoch": 55.40541721275666,
+ "grad_norm": 0.2240687608718872,
+ "learning_rate": 0.0006,
+ "loss": 3.613295555114746,
+ "step": 3989
+ },
+ {
+ "epoch": 55.419397116644824,
+ "grad_norm": 0.25724494457244873,
+ "learning_rate": 0.0006,
+ "loss": 3.581005096435547,
+ "step": 3990
+ },
+ {
+ "epoch": 55.43337702053299,
+ "grad_norm": 0.24023419618606567,
+ "learning_rate": 0.0006,
+ "loss": 3.563951015472412,
+ "step": 3991
+ },
+ {
+ "epoch": 55.44735692442114,
+ "grad_norm": 0.21473391354084015,
+ "learning_rate": 0.0006,
+ "loss": 3.5444185733795166,
+ "step": 3992
+ },
+ {
+ "epoch": 55.46133682830931,
+ "grad_norm": 0.20466852188110352,
+ "learning_rate": 0.0006,
+ "loss": 3.5585713386535645,
+ "step": 3993
+ },
+ {
+ "epoch": 55.47531673219746,
+ "grad_norm": 0.20925740897655487,
+ "learning_rate": 0.0006,
+ "loss": 3.5656747817993164,
+ "step": 3994
+ },
+ {
+ "epoch": 55.489296636085626,
+ "grad_norm": 0.2309556007385254,
+ "learning_rate": 0.0006,
+ "loss": 3.5653891563415527,
+ "step": 3995
+ },
+ {
+ "epoch": 55.50327653997379,
+ "grad_norm": 0.24270877242088318,
+ "learning_rate": 0.0006,
+ "loss": 3.5275917053222656,
+ "step": 3996
+ },
+ {
+ "epoch": 55.517256443861946,
+ "grad_norm": 0.22749851644039154,
+ "learning_rate": 0.0006,
+ "loss": 3.5392730236053467,
+ "step": 3997
+ },
+ {
+ "epoch": 55.53123634775011,
+ "grad_norm": 0.21618196368217468,
+ "learning_rate": 0.0006,
+ "loss": 3.5581812858581543,
+ "step": 3998
+ },
+ {
+ "epoch": 55.54521625163827,
+ "grad_norm": 0.22232134640216827,
+ "learning_rate": 0.0006,
+ "loss": 3.5340118408203125,
+ "step": 3999
+ },
+ {
+ "epoch": 55.55919615552643,
+ "grad_norm": 0.24543501436710358,
+ "learning_rate": 0.0006,
+ "loss": 3.572153329849243,
+ "step": 4000
+ },
+ {
+ "epoch": 55.57317605941459,
+ "grad_norm": 0.2385311722755432,
+ "learning_rate": 0.0006,
+ "loss": 3.5366618633270264,
+ "step": 4001
+ },
+ {
+ "epoch": 55.58715596330275,
+ "grad_norm": 0.27977821230888367,
+ "learning_rate": 0.0006,
+ "loss": 3.5788960456848145,
+ "step": 4002
+ },
+ {
+ "epoch": 55.60113586719091,
+ "grad_norm": 0.2929013967514038,
+ "learning_rate": 0.0006,
+ "loss": 3.61065936088562,
+ "step": 4003
+ },
+ {
+ "epoch": 55.615115771079076,
+ "grad_norm": 0.27820730209350586,
+ "learning_rate": 0.0006,
+ "loss": 3.538694381713867,
+ "step": 4004
+ },
+ {
+ "epoch": 55.62909567496723,
+ "grad_norm": 0.24188996851444244,
+ "learning_rate": 0.0006,
+ "loss": 3.571709632873535,
+ "step": 4005
+ },
+ {
+ "epoch": 55.643075578855395,
+ "grad_norm": 0.21659360826015472,
+ "learning_rate": 0.0006,
+ "loss": 3.5431199073791504,
+ "step": 4006
+ },
+ {
+ "epoch": 55.65705548274356,
+ "grad_norm": 0.23356232047080994,
+ "learning_rate": 0.0006,
+ "loss": 3.5664005279541016,
+ "step": 4007
+ },
+ {
+ "epoch": 55.671035386631715,
+ "grad_norm": 0.21523472666740417,
+ "learning_rate": 0.0006,
+ "loss": 3.575711250305176,
+ "step": 4008
+ },
+ {
+ "epoch": 55.68501529051988,
+ "grad_norm": 0.22101815044879913,
+ "learning_rate": 0.0006,
+ "loss": 3.5843849182128906,
+ "step": 4009
+ },
+ {
+ "epoch": 55.69899519440804,
+ "grad_norm": 0.24153906106948853,
+ "learning_rate": 0.0006,
+ "loss": 3.5737733840942383,
+ "step": 4010
+ },
+ {
+ "epoch": 55.7129750982962,
+ "grad_norm": 0.2181350439786911,
+ "learning_rate": 0.0006,
+ "loss": 3.582613945007324,
+ "step": 4011
+ },
+ {
+ "epoch": 55.72695500218436,
+ "grad_norm": 0.21046742796897888,
+ "learning_rate": 0.0006,
+ "loss": 3.5380563735961914,
+ "step": 4012
+ },
+ {
+ "epoch": 55.74093490607252,
+ "grad_norm": 0.23996953666210175,
+ "learning_rate": 0.0006,
+ "loss": 3.57753849029541,
+ "step": 4013
+ },
+ {
+ "epoch": 55.75491480996068,
+ "grad_norm": 0.24543973803520203,
+ "learning_rate": 0.0006,
+ "loss": 3.578747272491455,
+ "step": 4014
+ },
+ {
+ "epoch": 55.768894713848844,
+ "grad_norm": 0.23597940802574158,
+ "learning_rate": 0.0006,
+ "loss": 3.5816988945007324,
+ "step": 4015
+ },
+ {
+ "epoch": 55.782874617737,
+ "grad_norm": 0.237411230802536,
+ "learning_rate": 0.0006,
+ "loss": 3.5659806728363037,
+ "step": 4016
+ },
+ {
+ "epoch": 55.796854521625164,
+ "grad_norm": 0.23947440087795258,
+ "learning_rate": 0.0006,
+ "loss": 3.545125961303711,
+ "step": 4017
+ },
+ {
+ "epoch": 55.81083442551333,
+ "grad_norm": 0.21562735736370087,
+ "learning_rate": 0.0006,
+ "loss": 3.5571303367614746,
+ "step": 4018
+ },
+ {
+ "epoch": 55.824814329401484,
+ "grad_norm": 0.21958434581756592,
+ "learning_rate": 0.0006,
+ "loss": 3.5243420600891113,
+ "step": 4019
+ },
+ {
+ "epoch": 55.83879423328965,
+ "grad_norm": 0.23856471478939056,
+ "learning_rate": 0.0006,
+ "loss": 3.586078643798828,
+ "step": 4020
+ },
+ {
+ "epoch": 55.8527741371778,
+ "grad_norm": 0.20703551173210144,
+ "learning_rate": 0.0006,
+ "loss": 3.5503201484680176,
+ "step": 4021
+ },
+ {
+ "epoch": 55.86675404106597,
+ "grad_norm": 0.21183231472969055,
+ "learning_rate": 0.0006,
+ "loss": 3.5873844623565674,
+ "step": 4022
+ },
+ {
+ "epoch": 55.88073394495413,
+ "grad_norm": 0.2129688709974289,
+ "learning_rate": 0.0006,
+ "loss": 3.582061290740967,
+ "step": 4023
+ },
+ {
+ "epoch": 55.89471384884229,
+ "grad_norm": 0.2122214287519455,
+ "learning_rate": 0.0006,
+ "loss": 3.547175884246826,
+ "step": 4024
+ },
+ {
+ "epoch": 55.90869375273045,
+ "grad_norm": 0.214874267578125,
+ "learning_rate": 0.0006,
+ "loss": 3.5322279930114746,
+ "step": 4025
+ },
+ {
+ "epoch": 55.92267365661861,
+ "grad_norm": 0.24104614555835724,
+ "learning_rate": 0.0006,
+ "loss": 3.5742111206054688,
+ "step": 4026
+ },
+ {
+ "epoch": 55.93665356050677,
+ "grad_norm": 0.2257685512304306,
+ "learning_rate": 0.0006,
+ "loss": 3.5686793327331543,
+ "step": 4027
+ },
+ {
+ "epoch": 55.95063346439493,
+ "grad_norm": 0.2170567363500595,
+ "learning_rate": 0.0006,
+ "loss": 3.5670571327209473,
+ "step": 4028
+ },
+ {
+ "epoch": 55.964613368283096,
+ "grad_norm": 0.2003280222415924,
+ "learning_rate": 0.0006,
+ "loss": 3.533921718597412,
+ "step": 4029
+ },
+ {
+ "epoch": 55.97859327217125,
+ "grad_norm": 0.21483278274536133,
+ "learning_rate": 0.0006,
+ "loss": 3.539720058441162,
+ "step": 4030
+ },
+ {
+ "epoch": 55.992573176059416,
+ "grad_norm": 0.26908108592033386,
+ "learning_rate": 0.0006,
+ "loss": 3.575934886932373,
+ "step": 4031
+ },
+ {
+ "epoch": 56.0,
+ "grad_norm": 0.30002665519714355,
+ "learning_rate": 0.0006,
+ "loss": 3.5702414512634277,
+ "step": 4032
+ },
+ {
+ "epoch": 56.0,
+ "eval_loss": 3.9834072589874268,
+ "eval_runtime": 46.2268,
+ "eval_samples_per_second": 52.826,
+ "eval_steps_per_second": 3.31,
+ "step": 4032
+ },
+ {
+ "epoch": 56.01397990388816,
+ "grad_norm": 0.25298207998275757,
+ "learning_rate": 0.0006,
+ "loss": 3.538151741027832,
+ "step": 4033
+ },
+ {
+ "epoch": 56.02795980777632,
+ "grad_norm": 0.2231103479862213,
+ "learning_rate": 0.0006,
+ "loss": 3.551466941833496,
+ "step": 4034
+ },
+ {
+ "epoch": 56.04193971166448,
+ "grad_norm": 0.2504221796989441,
+ "learning_rate": 0.0006,
+ "loss": 3.5361199378967285,
+ "step": 4035
+ },
+ {
+ "epoch": 56.05591961555265,
+ "grad_norm": 0.23491773009300232,
+ "learning_rate": 0.0006,
+ "loss": 3.549346446990967,
+ "step": 4036
+ },
+ {
+ "epoch": 56.0698995194408,
+ "grad_norm": 0.23068852722644806,
+ "learning_rate": 0.0006,
+ "loss": 3.5243453979492188,
+ "step": 4037
+ },
+ {
+ "epoch": 56.083879423328966,
+ "grad_norm": 0.22160249948501587,
+ "learning_rate": 0.0006,
+ "loss": 3.551191806793213,
+ "step": 4038
+ },
+ {
+ "epoch": 56.09785932721712,
+ "grad_norm": 0.2389034926891327,
+ "learning_rate": 0.0006,
+ "loss": 3.5358071327209473,
+ "step": 4039
+ },
+ {
+ "epoch": 56.111839231105286,
+ "grad_norm": 0.2552168071269989,
+ "learning_rate": 0.0006,
+ "loss": 3.564204692840576,
+ "step": 4040
+ },
+ {
+ "epoch": 56.12581913499345,
+ "grad_norm": 0.2802336812019348,
+ "learning_rate": 0.0006,
+ "loss": 3.540386438369751,
+ "step": 4041
+ },
+ {
+ "epoch": 56.139799038881605,
+ "grad_norm": 0.2564619779586792,
+ "learning_rate": 0.0006,
+ "loss": 3.544264554977417,
+ "step": 4042
+ },
+ {
+ "epoch": 56.15377894276977,
+ "grad_norm": 0.24272632598876953,
+ "learning_rate": 0.0006,
+ "loss": 3.509497880935669,
+ "step": 4043
+ },
+ {
+ "epoch": 56.16775884665793,
+ "grad_norm": 0.23981881141662598,
+ "learning_rate": 0.0006,
+ "loss": 3.551090955734253,
+ "step": 4044
+ },
+ {
+ "epoch": 56.18173875054609,
+ "grad_norm": 0.22418269515037537,
+ "learning_rate": 0.0006,
+ "loss": 3.558614492416382,
+ "step": 4045
+ },
+ {
+ "epoch": 56.19571865443425,
+ "grad_norm": 0.21792462468147278,
+ "learning_rate": 0.0006,
+ "loss": 3.540558338165283,
+ "step": 4046
+ },
+ {
+ "epoch": 56.20969855832241,
+ "grad_norm": 0.21248634159564972,
+ "learning_rate": 0.0006,
+ "loss": 3.5273942947387695,
+ "step": 4047
+ },
+ {
+ "epoch": 56.22367846221057,
+ "grad_norm": 0.1863572895526886,
+ "learning_rate": 0.0006,
+ "loss": 3.555302143096924,
+ "step": 4048
+ },
+ {
+ "epoch": 56.237658366098735,
+ "grad_norm": 0.21031822264194489,
+ "learning_rate": 0.0006,
+ "loss": 3.547515630722046,
+ "step": 4049
+ },
+ {
+ "epoch": 56.25163826998689,
+ "grad_norm": 0.19754044711589813,
+ "learning_rate": 0.0006,
+ "loss": 3.5476508140563965,
+ "step": 4050
+ },
+ {
+ "epoch": 56.265618173875055,
+ "grad_norm": 0.19707852602005005,
+ "learning_rate": 0.0006,
+ "loss": 3.506730794906616,
+ "step": 4051
+ },
+ {
+ "epoch": 56.27959807776322,
+ "grad_norm": 0.21011239290237427,
+ "learning_rate": 0.0006,
+ "loss": 3.51116681098938,
+ "step": 4052
+ },
+ {
+ "epoch": 56.293577981651374,
+ "grad_norm": 0.20281212031841278,
+ "learning_rate": 0.0006,
+ "loss": 3.549513816833496,
+ "step": 4053
+ },
+ {
+ "epoch": 56.30755788553954,
+ "grad_norm": 0.19198910892009735,
+ "learning_rate": 0.0006,
+ "loss": 3.5299534797668457,
+ "step": 4054
+ },
+ {
+ "epoch": 56.3215377894277,
+ "grad_norm": 0.1861368715763092,
+ "learning_rate": 0.0006,
+ "loss": 3.513909339904785,
+ "step": 4055
+ },
+ {
+ "epoch": 56.33551769331586,
+ "grad_norm": 0.20779506862163544,
+ "learning_rate": 0.0006,
+ "loss": 3.5528712272644043,
+ "step": 4056
+ },
+ {
+ "epoch": 56.34949759720402,
+ "grad_norm": 0.2229684591293335,
+ "learning_rate": 0.0006,
+ "loss": 3.518359661102295,
+ "step": 4057
+ },
+ {
+ "epoch": 56.36347750109218,
+ "grad_norm": 0.22998179495334625,
+ "learning_rate": 0.0006,
+ "loss": 3.5004091262817383,
+ "step": 4058
+ },
+ {
+ "epoch": 56.37745740498034,
+ "grad_norm": 0.2176709622144699,
+ "learning_rate": 0.0006,
+ "loss": 3.550295829772949,
+ "step": 4059
+ },
+ {
+ "epoch": 56.391437308868504,
+ "grad_norm": 0.19512872397899628,
+ "learning_rate": 0.0006,
+ "loss": 3.5305161476135254,
+ "step": 4060
+ },
+ {
+ "epoch": 56.40541721275666,
+ "grad_norm": 0.23127448558807373,
+ "learning_rate": 0.0006,
+ "loss": 3.5341286659240723,
+ "step": 4061
+ },
+ {
+ "epoch": 56.419397116644824,
+ "grad_norm": 0.20905959606170654,
+ "learning_rate": 0.0006,
+ "loss": 3.553912401199341,
+ "step": 4062
+ },
+ {
+ "epoch": 56.43337702053299,
+ "grad_norm": 0.23370878398418427,
+ "learning_rate": 0.0006,
+ "loss": 3.5700249671936035,
+ "step": 4063
+ },
+ {
+ "epoch": 56.44735692442114,
+ "grad_norm": 0.233205646276474,
+ "learning_rate": 0.0006,
+ "loss": 3.5184097290039062,
+ "step": 4064
+ },
+ {
+ "epoch": 56.46133682830931,
+ "grad_norm": 0.23928777873516083,
+ "learning_rate": 0.0006,
+ "loss": 3.535874366760254,
+ "step": 4065
+ },
+ {
+ "epoch": 56.47531673219746,
+ "grad_norm": 0.24950815737247467,
+ "learning_rate": 0.0006,
+ "loss": 3.508136749267578,
+ "step": 4066
+ },
+ {
+ "epoch": 56.489296636085626,
+ "grad_norm": 0.24821820855140686,
+ "learning_rate": 0.0006,
+ "loss": 3.5421361923217773,
+ "step": 4067
+ },
+ {
+ "epoch": 56.50327653997379,
+ "grad_norm": 0.2252482771873474,
+ "learning_rate": 0.0006,
+ "loss": 3.5516514778137207,
+ "step": 4068
+ },
+ {
+ "epoch": 56.517256443861946,
+ "grad_norm": 0.2238101363182068,
+ "learning_rate": 0.0006,
+ "loss": 3.567741632461548,
+ "step": 4069
+ },
+ {
+ "epoch": 56.53123634775011,
+ "grad_norm": 0.20759683847427368,
+ "learning_rate": 0.0006,
+ "loss": 3.544705390930176,
+ "step": 4070
+ },
+ {
+ "epoch": 56.54521625163827,
+ "grad_norm": 0.21918460726737976,
+ "learning_rate": 0.0006,
+ "loss": 3.5725836753845215,
+ "step": 4071
+ },
+ {
+ "epoch": 56.55919615552643,
+ "grad_norm": 0.22640042006969452,
+ "learning_rate": 0.0006,
+ "loss": 3.5447535514831543,
+ "step": 4072
+ },
+ {
+ "epoch": 56.57317605941459,
+ "grad_norm": 0.23130203783512115,
+ "learning_rate": 0.0006,
+ "loss": 3.5620853900909424,
+ "step": 4073
+ },
+ {
+ "epoch": 56.58715596330275,
+ "grad_norm": 0.2215641736984253,
+ "learning_rate": 0.0006,
+ "loss": 3.5416438579559326,
+ "step": 4074
+ },
+ {
+ "epoch": 56.60113586719091,
+ "grad_norm": 0.20106497406959534,
+ "learning_rate": 0.0006,
+ "loss": 3.537386178970337,
+ "step": 4075
+ },
+ {
+ "epoch": 56.615115771079076,
+ "grad_norm": 0.2045976221561432,
+ "learning_rate": 0.0006,
+ "loss": 3.555032730102539,
+ "step": 4076
+ },
+ {
+ "epoch": 56.62909567496723,
+ "grad_norm": 0.20097647607326508,
+ "learning_rate": 0.0006,
+ "loss": 3.559572458267212,
+ "step": 4077
+ },
+ {
+ "epoch": 56.643075578855395,
+ "grad_norm": 0.24158388376235962,
+ "learning_rate": 0.0006,
+ "loss": 3.56520938873291,
+ "step": 4078
+ },
+ {
+ "epoch": 56.65705548274356,
+ "grad_norm": 0.2687791585922241,
+ "learning_rate": 0.0006,
+ "loss": 3.545924663543701,
+ "step": 4079
+ },
+ {
+ "epoch": 56.671035386631715,
+ "grad_norm": 0.22466111183166504,
+ "learning_rate": 0.0006,
+ "loss": 3.5556845664978027,
+ "step": 4080
+ },
+ {
+ "epoch": 56.68501529051988,
+ "grad_norm": 0.2177814394235611,
+ "learning_rate": 0.0006,
+ "loss": 3.5799131393432617,
+ "step": 4081
+ },
+ {
+ "epoch": 56.69899519440804,
+ "grad_norm": 0.2700476050376892,
+ "learning_rate": 0.0006,
+ "loss": 3.5859055519104004,
+ "step": 4082
+ },
+ {
+ "epoch": 56.7129750982962,
+ "grad_norm": 0.28230178356170654,
+ "learning_rate": 0.0006,
+ "loss": 3.5733890533447266,
+ "step": 4083
+ },
+ {
+ "epoch": 56.72695500218436,
+ "grad_norm": 0.29298731684684753,
+ "learning_rate": 0.0006,
+ "loss": 3.556626319885254,
+ "step": 4084
+ },
+ {
+ "epoch": 56.74093490607252,
+ "grad_norm": 0.2818183898925781,
+ "learning_rate": 0.0006,
+ "loss": 3.5884718894958496,
+ "step": 4085
+ },
+ {
+ "epoch": 56.75491480996068,
+ "grad_norm": 0.24008697271347046,
+ "learning_rate": 0.0006,
+ "loss": 3.5464529991149902,
+ "step": 4086
+ },
+ {
+ "epoch": 56.768894713848844,
+ "grad_norm": 0.23406296968460083,
+ "learning_rate": 0.0006,
+ "loss": 3.5622801780700684,
+ "step": 4087
+ },
+ {
+ "epoch": 56.782874617737,
+ "grad_norm": 0.26089322566986084,
+ "learning_rate": 0.0006,
+ "loss": 3.5775020122528076,
+ "step": 4088
+ },
+ {
+ "epoch": 56.796854521625164,
+ "grad_norm": 0.2576654851436615,
+ "learning_rate": 0.0006,
+ "loss": 3.5543627738952637,
+ "step": 4089
+ },
+ {
+ "epoch": 56.81083442551333,
+ "grad_norm": 0.26576393842697144,
+ "learning_rate": 0.0006,
+ "loss": 3.546170711517334,
+ "step": 4090
+ },
+ {
+ "epoch": 56.824814329401484,
+ "grad_norm": 0.22380715608596802,
+ "learning_rate": 0.0006,
+ "loss": 3.5437729358673096,
+ "step": 4091
+ },
+ {
+ "epoch": 56.83879423328965,
+ "grad_norm": 0.20786714553833008,
+ "learning_rate": 0.0006,
+ "loss": 3.5951266288757324,
+ "step": 4092
+ },
+ {
+ "epoch": 56.8527741371778,
+ "grad_norm": 0.23177042603492737,
+ "learning_rate": 0.0006,
+ "loss": 3.549454689025879,
+ "step": 4093
+ },
+ {
+ "epoch": 56.86675404106597,
+ "grad_norm": 0.21466009318828583,
+ "learning_rate": 0.0006,
+ "loss": 3.5611233711242676,
+ "step": 4094
+ },
+ {
+ "epoch": 56.88073394495413,
+ "grad_norm": 0.20928414165973663,
+ "learning_rate": 0.0006,
+ "loss": 3.5550684928894043,
+ "step": 4095
+ },
+ {
+ "epoch": 56.89471384884229,
+ "grad_norm": 0.20727156102657318,
+ "learning_rate": 0.0006,
+ "loss": 3.552496910095215,
+ "step": 4096
+ },
+ {
+ "epoch": 56.90869375273045,
+ "grad_norm": 0.21370401978492737,
+ "learning_rate": 0.0006,
+ "loss": 3.5763869285583496,
+ "step": 4097
+ },
+ {
+ "epoch": 56.92267365661861,
+ "grad_norm": 0.22490337491035461,
+ "learning_rate": 0.0006,
+ "loss": 3.538986921310425,
+ "step": 4098
+ },
+ {
+ "epoch": 56.93665356050677,
+ "grad_norm": 0.23320236802101135,
+ "learning_rate": 0.0006,
+ "loss": 3.5514214038848877,
+ "step": 4099
+ },
+ {
+ "epoch": 56.95063346439493,
+ "grad_norm": 0.22050419449806213,
+ "learning_rate": 0.0006,
+ "loss": 3.5486960411071777,
+ "step": 4100
+ },
+ {
+ "epoch": 56.964613368283096,
+ "grad_norm": 0.2241443395614624,
+ "learning_rate": 0.0006,
+ "loss": 3.5858001708984375,
+ "step": 4101
+ },
+ {
+ "epoch": 56.97859327217125,
+ "grad_norm": 0.24904389679431915,
+ "learning_rate": 0.0006,
+ "loss": 3.586472511291504,
+ "step": 4102
+ },
+ {
+ "epoch": 56.992573176059416,
+ "grad_norm": 0.2333211451768875,
+ "learning_rate": 0.0006,
+ "loss": 3.5463132858276367,
+ "step": 4103
+ },
+ {
+ "epoch": 57.0,
+ "grad_norm": 0.24142783880233765,
+ "learning_rate": 0.0006,
+ "loss": 3.5642542839050293,
+ "step": 4104
+ },
+ {
+ "epoch": 57.0,
+ "eval_loss": 3.973973035812378,
+ "eval_runtime": 46.2906,
+ "eval_samples_per_second": 52.754,
+ "eval_steps_per_second": 3.305,
+ "step": 4104
+ },
+ {
+ "epoch": 57.01397990388816,
+ "grad_norm": 0.21989624202251434,
+ "learning_rate": 0.0006,
+ "loss": 3.539435863494873,
+ "step": 4105
+ },
+ {
+ "epoch": 57.02795980777632,
+ "grad_norm": 0.24061834812164307,
+ "learning_rate": 0.0006,
+ "loss": 3.5251410007476807,
+ "step": 4106
+ },
+ {
+ "epoch": 57.04193971166448,
+ "grad_norm": 0.2483278512954712,
+ "learning_rate": 0.0006,
+ "loss": 3.5104010105133057,
+ "step": 4107
+ },
+ {
+ "epoch": 57.05591961555265,
+ "grad_norm": 0.2717698812484741,
+ "learning_rate": 0.0006,
+ "loss": 3.5134170055389404,
+ "step": 4108
+ },
+ {
+ "epoch": 57.0698995194408,
+ "grad_norm": 0.27335646748542786,
+ "learning_rate": 0.0006,
+ "loss": 3.53574275970459,
+ "step": 4109
+ },
+ {
+ "epoch": 57.083879423328966,
+ "grad_norm": 0.2423052042722702,
+ "learning_rate": 0.0006,
+ "loss": 3.4960169792175293,
+ "step": 4110
+ },
+ {
+ "epoch": 57.09785932721712,
+ "grad_norm": 0.2241092175245285,
+ "learning_rate": 0.0006,
+ "loss": 3.5409107208251953,
+ "step": 4111
+ },
+ {
+ "epoch": 57.111839231105286,
+ "grad_norm": 0.23098452389240265,
+ "learning_rate": 0.0006,
+ "loss": 3.5326709747314453,
+ "step": 4112
+ },
+ {
+ "epoch": 57.12581913499345,
+ "grad_norm": 0.2500186562538147,
+ "learning_rate": 0.0006,
+ "loss": 3.509953498840332,
+ "step": 4113
+ },
+ {
+ "epoch": 57.139799038881605,
+ "grad_norm": 0.26994550228118896,
+ "learning_rate": 0.0006,
+ "loss": 3.560410499572754,
+ "step": 4114
+ },
+ {
+ "epoch": 57.15377894276977,
+ "grad_norm": 0.24950402975082397,
+ "learning_rate": 0.0006,
+ "loss": 3.517613649368286,
+ "step": 4115
+ },
+ {
+ "epoch": 57.16775884665793,
+ "grad_norm": 0.21742430329322815,
+ "learning_rate": 0.0006,
+ "loss": 3.531256675720215,
+ "step": 4116
+ },
+ {
+ "epoch": 57.18173875054609,
+ "grad_norm": 0.29069146513938904,
+ "learning_rate": 0.0006,
+ "loss": 3.5283756256103516,
+ "step": 4117
+ },
+ {
+ "epoch": 57.19571865443425,
+ "grad_norm": 0.2901996970176697,
+ "learning_rate": 0.0006,
+ "loss": 3.5460801124572754,
+ "step": 4118
+ },
+ {
+ "epoch": 57.20969855832241,
+ "grad_norm": 0.2534845471382141,
+ "learning_rate": 0.0006,
+ "loss": 3.515536308288574,
+ "step": 4119
+ },
+ {
+ "epoch": 57.22367846221057,
+ "grad_norm": 0.2352340817451477,
+ "learning_rate": 0.0006,
+ "loss": 3.5281717777252197,
+ "step": 4120
+ },
+ {
+ "epoch": 57.237658366098735,
+ "grad_norm": 0.2263645976781845,
+ "learning_rate": 0.0006,
+ "loss": 3.5629191398620605,
+ "step": 4121
+ },
+ {
+ "epoch": 57.25163826998689,
+ "grad_norm": 0.21413370966911316,
+ "learning_rate": 0.0006,
+ "loss": 3.5342142581939697,
+ "step": 4122
+ },
+ {
+ "epoch": 57.265618173875055,
+ "grad_norm": 0.1969698667526245,
+ "learning_rate": 0.0006,
+ "loss": 3.5467586517333984,
+ "step": 4123
+ },
+ {
+ "epoch": 57.27959807776322,
+ "grad_norm": 0.2106606364250183,
+ "learning_rate": 0.0006,
+ "loss": 3.5409536361694336,
+ "step": 4124
+ },
+ {
+ "epoch": 57.293577981651374,
+ "grad_norm": 0.21824438869953156,
+ "learning_rate": 0.0006,
+ "loss": 3.5246548652648926,
+ "step": 4125
+ },
+ {
+ "epoch": 57.30755788553954,
+ "grad_norm": 0.2147768884897232,
+ "learning_rate": 0.0006,
+ "loss": 3.5411794185638428,
+ "step": 4126
+ },
+ {
+ "epoch": 57.3215377894277,
+ "grad_norm": 0.21352852880954742,
+ "learning_rate": 0.0006,
+ "loss": 3.569387197494507,
+ "step": 4127
+ },
+ {
+ "epoch": 57.33551769331586,
+ "grad_norm": 0.20957978069782257,
+ "learning_rate": 0.0006,
+ "loss": 3.522695779800415,
+ "step": 4128
+ },
+ {
+ "epoch": 57.34949759720402,
+ "grad_norm": 0.2013026475906372,
+ "learning_rate": 0.0006,
+ "loss": 3.5485787391662598,
+ "step": 4129
+ },
+ {
+ "epoch": 57.36347750109218,
+ "grad_norm": 0.2260376214981079,
+ "learning_rate": 0.0006,
+ "loss": 3.547607421875,
+ "step": 4130
+ },
+ {
+ "epoch": 57.37745740498034,
+ "grad_norm": 0.22991685569286346,
+ "learning_rate": 0.0006,
+ "loss": 3.5464730262756348,
+ "step": 4131
+ },
+ {
+ "epoch": 57.391437308868504,
+ "grad_norm": 0.19638051092624664,
+ "learning_rate": 0.0006,
+ "loss": 3.54355525970459,
+ "step": 4132
+ },
+ {
+ "epoch": 57.40541721275666,
+ "grad_norm": 0.19450774788856506,
+ "learning_rate": 0.0006,
+ "loss": 3.5490050315856934,
+ "step": 4133
+ },
+ {
+ "epoch": 57.419397116644824,
+ "grad_norm": 0.21798551082611084,
+ "learning_rate": 0.0006,
+ "loss": 3.56355619430542,
+ "step": 4134
+ },
+ {
+ "epoch": 57.43337702053299,
+ "grad_norm": 0.2129846215248108,
+ "learning_rate": 0.0006,
+ "loss": 3.5607380867004395,
+ "step": 4135
+ },
+ {
+ "epoch": 57.44735692442114,
+ "grad_norm": 0.20589227974414825,
+ "learning_rate": 0.0006,
+ "loss": 3.523768663406372,
+ "step": 4136
+ },
+ {
+ "epoch": 57.46133682830931,
+ "grad_norm": 0.21841686964035034,
+ "learning_rate": 0.0006,
+ "loss": 3.5187885761260986,
+ "step": 4137
+ },
+ {
+ "epoch": 57.47531673219746,
+ "grad_norm": 0.2118791788816452,
+ "learning_rate": 0.0006,
+ "loss": 3.5271782875061035,
+ "step": 4138
+ },
+ {
+ "epoch": 57.489296636085626,
+ "grad_norm": 0.21905459463596344,
+ "learning_rate": 0.0006,
+ "loss": 3.546968460083008,
+ "step": 4139
+ },
+ {
+ "epoch": 57.50327653997379,
+ "grad_norm": 0.23899133503437042,
+ "learning_rate": 0.0006,
+ "loss": 3.5156688690185547,
+ "step": 4140
+ },
+ {
+ "epoch": 57.517256443861946,
+ "grad_norm": 0.23873545229434967,
+ "learning_rate": 0.0006,
+ "loss": 3.5271472930908203,
+ "step": 4141
+ },
+ {
+ "epoch": 57.53123634775011,
+ "grad_norm": 0.20691858232021332,
+ "learning_rate": 0.0006,
+ "loss": 3.552854537963867,
+ "step": 4142
+ },
+ {
+ "epoch": 57.54521625163827,
+ "grad_norm": 0.21962891519069672,
+ "learning_rate": 0.0006,
+ "loss": 3.5258498191833496,
+ "step": 4143
+ },
+ {
+ "epoch": 57.55919615552643,
+ "grad_norm": 0.21762165427207947,
+ "learning_rate": 0.0006,
+ "loss": 3.566831588745117,
+ "step": 4144
+ },
+ {
+ "epoch": 57.57317605941459,
+ "grad_norm": 0.19603654742240906,
+ "learning_rate": 0.0006,
+ "loss": 3.5393714904785156,
+ "step": 4145
+ },
+ {
+ "epoch": 57.58715596330275,
+ "grad_norm": 0.20347437262535095,
+ "learning_rate": 0.0006,
+ "loss": 3.538390874862671,
+ "step": 4146
+ },
+ {
+ "epoch": 57.60113586719091,
+ "grad_norm": 0.2179173231124878,
+ "learning_rate": 0.0006,
+ "loss": 3.566631317138672,
+ "step": 4147
+ },
+ {
+ "epoch": 57.615115771079076,
+ "grad_norm": 0.19678309559822083,
+ "learning_rate": 0.0006,
+ "loss": 3.5659375190734863,
+ "step": 4148
+ },
+ {
+ "epoch": 57.62909567496723,
+ "grad_norm": 0.20221677422523499,
+ "learning_rate": 0.0006,
+ "loss": 3.5679430961608887,
+ "step": 4149
+ },
+ {
+ "epoch": 57.643075578855395,
+ "grad_norm": 0.21337579190731049,
+ "learning_rate": 0.0006,
+ "loss": 3.5330681800842285,
+ "step": 4150
+ },
+ {
+ "epoch": 57.65705548274356,
+ "grad_norm": 0.2646789848804474,
+ "learning_rate": 0.0006,
+ "loss": 3.5216803550720215,
+ "step": 4151
+ },
+ {
+ "epoch": 57.671035386631715,
+ "grad_norm": 0.304950088262558,
+ "learning_rate": 0.0006,
+ "loss": 3.5570156574249268,
+ "step": 4152
+ },
+ {
+ "epoch": 57.68501529051988,
+ "grad_norm": 0.2739402651786804,
+ "learning_rate": 0.0006,
+ "loss": 3.5844314098358154,
+ "step": 4153
+ },
+ {
+ "epoch": 57.69899519440804,
+ "grad_norm": 0.19060099124908447,
+ "learning_rate": 0.0006,
+ "loss": 3.571052074432373,
+ "step": 4154
+ },
+ {
+ "epoch": 57.7129750982962,
+ "grad_norm": 0.2941007614135742,
+ "learning_rate": 0.0006,
+ "loss": 3.543100357055664,
+ "step": 4155
+ },
+ {
+ "epoch": 57.72695500218436,
+ "grad_norm": 0.34624332189559937,
+ "learning_rate": 0.0006,
+ "loss": 3.564270496368408,
+ "step": 4156
+ },
+ {
+ "epoch": 57.74093490607252,
+ "grad_norm": 0.30635201930999756,
+ "learning_rate": 0.0006,
+ "loss": 3.5390584468841553,
+ "step": 4157
+ },
+ {
+ "epoch": 57.75491480996068,
+ "grad_norm": 0.2204878330230713,
+ "learning_rate": 0.0006,
+ "loss": 3.5427281856536865,
+ "step": 4158
+ },
+ {
+ "epoch": 57.768894713848844,
+ "grad_norm": 0.20659378170967102,
+ "learning_rate": 0.0006,
+ "loss": 3.528977155685425,
+ "step": 4159
+ },
+ {
+ "epoch": 57.782874617737,
+ "grad_norm": 0.2281361073255539,
+ "learning_rate": 0.0006,
+ "loss": 3.5531792640686035,
+ "step": 4160
+ },
+ {
+ "epoch": 57.796854521625164,
+ "grad_norm": 0.22478239238262177,
+ "learning_rate": 0.0006,
+ "loss": 3.566704750061035,
+ "step": 4161
+ },
+ {
+ "epoch": 57.81083442551333,
+ "grad_norm": 0.20797103643417358,
+ "learning_rate": 0.0006,
+ "loss": 3.5684943199157715,
+ "step": 4162
+ },
+ {
+ "epoch": 57.824814329401484,
+ "grad_norm": 0.2108374983072281,
+ "learning_rate": 0.0006,
+ "loss": 3.5475950241088867,
+ "step": 4163
+ },
+ {
+ "epoch": 57.83879423328965,
+ "grad_norm": 0.2268034815788269,
+ "learning_rate": 0.0006,
+ "loss": 3.5456833839416504,
+ "step": 4164
+ },
+ {
+ "epoch": 57.8527741371778,
+ "grad_norm": 0.2131519913673401,
+ "learning_rate": 0.0006,
+ "loss": 3.5316243171691895,
+ "step": 4165
+ },
+ {
+ "epoch": 57.86675404106597,
+ "grad_norm": 0.20163841545581818,
+ "learning_rate": 0.0006,
+ "loss": 3.5320897102355957,
+ "step": 4166
+ },
+ {
+ "epoch": 57.88073394495413,
+ "grad_norm": 0.20961757004261017,
+ "learning_rate": 0.0006,
+ "loss": 3.5800695419311523,
+ "step": 4167
+ },
+ {
+ "epoch": 57.89471384884229,
+ "grad_norm": 0.2061416506767273,
+ "learning_rate": 0.0006,
+ "loss": 3.544395923614502,
+ "step": 4168
+ },
+ {
+ "epoch": 57.90869375273045,
+ "grad_norm": 0.20306318998336792,
+ "learning_rate": 0.0006,
+ "loss": 3.554436683654785,
+ "step": 4169
+ },
+ {
+ "epoch": 57.92267365661861,
+ "grad_norm": 0.20685963332653046,
+ "learning_rate": 0.0006,
+ "loss": 3.5614635944366455,
+ "step": 4170
+ },
+ {
+ "epoch": 57.93665356050677,
+ "grad_norm": 0.19938082993030548,
+ "learning_rate": 0.0006,
+ "loss": 3.578136920928955,
+ "step": 4171
+ },
+ {
+ "epoch": 57.95063346439493,
+ "grad_norm": 0.2150411158800125,
+ "learning_rate": 0.0006,
+ "loss": 3.5754270553588867,
+ "step": 4172
+ },
+ {
+ "epoch": 57.964613368283096,
+ "grad_norm": 0.23399604856967926,
+ "learning_rate": 0.0006,
+ "loss": 3.5553112030029297,
+ "step": 4173
+ },
+ {
+ "epoch": 57.97859327217125,
+ "grad_norm": 0.2496841847896576,
+ "learning_rate": 0.0006,
+ "loss": 3.5509696006774902,
+ "step": 4174
+ },
+ {
+ "epoch": 57.992573176059416,
+ "grad_norm": 0.23759980499744415,
+ "learning_rate": 0.0006,
+ "loss": 3.5806684494018555,
+ "step": 4175
+ },
+ {
+ "epoch": 58.0,
+ "grad_norm": 0.2494540512561798,
+ "learning_rate": 0.0006,
+ "loss": 3.541708469390869,
+ "step": 4176
+ },
+ {
+ "epoch": 58.0,
+ "eval_loss": 3.970658779144287,
+ "eval_runtime": 46.0262,
+ "eval_samples_per_second": 53.057,
+ "eval_steps_per_second": 3.324,
+ "step": 4176
+ },
+ {
+ "epoch": 58.01397990388816,
+ "grad_norm": 0.2053643763065338,
+ "learning_rate": 0.0006,
+ "loss": 3.5264205932617188,
+ "step": 4177
+ },
+ {
+ "epoch": 58.02795980777632,
+ "grad_norm": 0.20680591464042664,
+ "learning_rate": 0.0006,
+ "loss": 3.495445728302002,
+ "step": 4178
+ },
+ {
+ "epoch": 58.04193971166448,
+ "grad_norm": 0.22180874645709991,
+ "learning_rate": 0.0006,
+ "loss": 3.546283483505249,
+ "step": 4179
+ },
+ {
+ "epoch": 58.05591961555265,
+ "grad_norm": 0.24255339801311493,
+ "learning_rate": 0.0006,
+ "loss": 3.50639271736145,
+ "step": 4180
+ },
+ {
+ "epoch": 58.0698995194408,
+ "grad_norm": 0.2747100591659546,
+ "learning_rate": 0.0006,
+ "loss": 3.514240026473999,
+ "step": 4181
+ },
+ {
+ "epoch": 58.083879423328966,
+ "grad_norm": 0.27960914373397827,
+ "learning_rate": 0.0006,
+ "loss": 3.5614311695098877,
+ "step": 4182
+ },
+ {
+ "epoch": 58.09785932721712,
+ "grad_norm": 0.25837743282318115,
+ "learning_rate": 0.0006,
+ "loss": 3.533560276031494,
+ "step": 4183
+ },
+ {
+ "epoch": 58.111839231105286,
+ "grad_norm": 0.24635657668113708,
+ "learning_rate": 0.0006,
+ "loss": 3.4867968559265137,
+ "step": 4184
+ },
+ {
+ "epoch": 58.12581913499345,
+ "grad_norm": 0.31520891189575195,
+ "learning_rate": 0.0006,
+ "loss": 3.5131611824035645,
+ "step": 4185
+ },
+ {
+ "epoch": 58.139799038881605,
+ "grad_norm": 0.36781513690948486,
+ "learning_rate": 0.0006,
+ "loss": 3.5149288177490234,
+ "step": 4186
+ },
+ {
+ "epoch": 58.15377894276977,
+ "grad_norm": 0.32433459162712097,
+ "learning_rate": 0.0006,
+ "loss": 3.5485405921936035,
+ "step": 4187
+ },
+ {
+ "epoch": 58.16775884665793,
+ "grad_norm": 0.2532205283641815,
+ "learning_rate": 0.0006,
+ "loss": 3.4994513988494873,
+ "step": 4188
+ },
+ {
+ "epoch": 58.18173875054609,
+ "grad_norm": 0.29780858755111694,
+ "learning_rate": 0.0006,
+ "loss": 3.496187448501587,
+ "step": 4189
+ },
+ {
+ "epoch": 58.19571865443425,
+ "grad_norm": 0.2804715037345886,
+ "learning_rate": 0.0006,
+ "loss": 3.5210375785827637,
+ "step": 4190
+ },
+ {
+ "epoch": 58.20969855832241,
+ "grad_norm": 0.2186010330915451,
+ "learning_rate": 0.0006,
+ "loss": 3.5139119625091553,
+ "step": 4191
+ },
+ {
+ "epoch": 58.22367846221057,
+ "grad_norm": 0.21566270291805267,
+ "learning_rate": 0.0006,
+ "loss": 3.5011606216430664,
+ "step": 4192
+ },
+ {
+ "epoch": 58.237658366098735,
+ "grad_norm": 0.21042031049728394,
+ "learning_rate": 0.0006,
+ "loss": 3.52295184135437,
+ "step": 4193
+ },
+ {
+ "epoch": 58.25163826998689,
+ "grad_norm": 0.20117411017417908,
+ "learning_rate": 0.0006,
+ "loss": 3.54593563079834,
+ "step": 4194
+ },
+ {
+ "epoch": 58.265618173875055,
+ "grad_norm": 0.21747945249080658,
+ "learning_rate": 0.0006,
+ "loss": 3.5341522693634033,
+ "step": 4195
+ },
+ {
+ "epoch": 58.27959807776322,
+ "grad_norm": 0.266024649143219,
+ "learning_rate": 0.0006,
+ "loss": 3.536393165588379,
+ "step": 4196
+ },
+ {
+ "epoch": 58.293577981651374,
+ "grad_norm": 0.2577304542064667,
+ "learning_rate": 0.0006,
+ "loss": 3.557468891143799,
+ "step": 4197
+ },
+ {
+ "epoch": 58.30755788553954,
+ "grad_norm": 0.22055941820144653,
+ "learning_rate": 0.0006,
+ "loss": 3.5307652950286865,
+ "step": 4198
+ },
+ {
+ "epoch": 58.3215377894277,
+ "grad_norm": 0.22490856051445007,
+ "learning_rate": 0.0006,
+ "loss": 3.506265163421631,
+ "step": 4199
+ },
+ {
+ "epoch": 58.33551769331586,
+ "grad_norm": 0.23600345849990845,
+ "learning_rate": 0.0006,
+ "loss": 3.523414134979248,
+ "step": 4200
+ },
+ {
+ "epoch": 58.34949759720402,
+ "grad_norm": 0.24872642755508423,
+ "learning_rate": 0.0006,
+ "loss": 3.561278820037842,
+ "step": 4201
+ },
+ {
+ "epoch": 58.36347750109218,
+ "grad_norm": 0.2702998220920563,
+ "learning_rate": 0.0006,
+ "loss": 3.573561191558838,
+ "step": 4202
+ },
+ {
+ "epoch": 58.37745740498034,
+ "grad_norm": 0.2532080411911011,
+ "learning_rate": 0.0006,
+ "loss": 3.5476837158203125,
+ "step": 4203
+ },
+ {
+ "epoch": 58.391437308868504,
+ "grad_norm": 0.23641079664230347,
+ "learning_rate": 0.0006,
+ "loss": 3.5464468002319336,
+ "step": 4204
+ },
+ {
+ "epoch": 58.40541721275666,
+ "grad_norm": 0.29965463280677795,
+ "learning_rate": 0.0006,
+ "loss": 3.560166835784912,
+ "step": 4205
+ },
+ {
+ "epoch": 58.419397116644824,
+ "grad_norm": 0.2778814136981964,
+ "learning_rate": 0.0006,
+ "loss": 3.5363056659698486,
+ "step": 4206
+ },
+ {
+ "epoch": 58.43337702053299,
+ "grad_norm": 0.23625248670578003,
+ "learning_rate": 0.0006,
+ "loss": 3.5575437545776367,
+ "step": 4207
+ },
+ {
+ "epoch": 58.44735692442114,
+ "grad_norm": 0.2165721356868744,
+ "learning_rate": 0.0006,
+ "loss": 3.541654109954834,
+ "step": 4208
+ },
+ {
+ "epoch": 58.46133682830931,
+ "grad_norm": 0.2261950671672821,
+ "learning_rate": 0.0006,
+ "loss": 3.5462238788604736,
+ "step": 4209
+ },
+ {
+ "epoch": 58.47531673219746,
+ "grad_norm": 0.23496517539024353,
+ "learning_rate": 0.0006,
+ "loss": 3.510138988494873,
+ "step": 4210
+ },
+ {
+ "epoch": 58.489296636085626,
+ "grad_norm": 0.27041929960250854,
+ "learning_rate": 0.0006,
+ "loss": 3.527822971343994,
+ "step": 4211
+ },
+ {
+ "epoch": 58.50327653997379,
+ "grad_norm": 0.2594013512134552,
+ "learning_rate": 0.0006,
+ "loss": 3.5358262062072754,
+ "step": 4212
+ },
+ {
+ "epoch": 58.517256443861946,
+ "grad_norm": 0.23336786031723022,
+ "learning_rate": 0.0006,
+ "loss": 3.530122756958008,
+ "step": 4213
+ },
+ {
+ "epoch": 58.53123634775011,
+ "grad_norm": 0.21956655383110046,
+ "learning_rate": 0.0006,
+ "loss": 3.541039228439331,
+ "step": 4214
+ },
+ {
+ "epoch": 58.54521625163827,
+ "grad_norm": 0.22432804107666016,
+ "learning_rate": 0.0006,
+ "loss": 3.520948886871338,
+ "step": 4215
+ },
+ {
+ "epoch": 58.55919615552643,
+ "grad_norm": 0.21589893102645874,
+ "learning_rate": 0.0006,
+ "loss": 3.569808006286621,
+ "step": 4216
+ },
+ {
+ "epoch": 58.57317605941459,
+ "grad_norm": 0.20264557003974915,
+ "learning_rate": 0.0006,
+ "loss": 3.514918088912964,
+ "step": 4217
+ },
+ {
+ "epoch": 58.58715596330275,
+ "grad_norm": 0.20911480486392975,
+ "learning_rate": 0.0006,
+ "loss": 3.5340771675109863,
+ "step": 4218
+ },
+ {
+ "epoch": 58.60113586719091,
+ "grad_norm": 0.21068964898586273,
+ "learning_rate": 0.0006,
+ "loss": 3.5388903617858887,
+ "step": 4219
+ },
+ {
+ "epoch": 58.615115771079076,
+ "grad_norm": 0.19314789772033691,
+ "learning_rate": 0.0006,
+ "loss": 3.5405967235565186,
+ "step": 4220
+ },
+ {
+ "epoch": 58.62909567496723,
+ "grad_norm": 0.18347802758216858,
+ "learning_rate": 0.0006,
+ "loss": 3.5208020210266113,
+ "step": 4221
+ },
+ {
+ "epoch": 58.643075578855395,
+ "grad_norm": 0.2082843780517578,
+ "learning_rate": 0.0006,
+ "loss": 3.5454647541046143,
+ "step": 4222
+ },
+ {
+ "epoch": 58.65705548274356,
+ "grad_norm": 0.2049611210823059,
+ "learning_rate": 0.0006,
+ "loss": 3.529350996017456,
+ "step": 4223
+ },
+ {
+ "epoch": 58.671035386631715,
+ "grad_norm": 0.19259536266326904,
+ "learning_rate": 0.0006,
+ "loss": 3.5589945316314697,
+ "step": 4224
+ },
+ {
+ "epoch": 58.68501529051988,
+ "grad_norm": 0.19039863348007202,
+ "learning_rate": 0.0006,
+ "loss": 3.5593101978302,
+ "step": 4225
+ },
+ {
+ "epoch": 58.69899519440804,
+ "grad_norm": 0.21481311321258545,
+ "learning_rate": 0.0006,
+ "loss": 3.55385422706604,
+ "step": 4226
+ },
+ {
+ "epoch": 58.7129750982962,
+ "grad_norm": 0.2053634226322174,
+ "learning_rate": 0.0006,
+ "loss": 3.535224437713623,
+ "step": 4227
+ },
+ {
+ "epoch": 58.72695500218436,
+ "grad_norm": 0.21111956238746643,
+ "learning_rate": 0.0006,
+ "loss": 3.5208349227905273,
+ "step": 4228
+ },
+ {
+ "epoch": 58.74093490607252,
+ "grad_norm": 0.22069109976291656,
+ "learning_rate": 0.0006,
+ "loss": 3.5292487144470215,
+ "step": 4229
+ },
+ {
+ "epoch": 58.75491480996068,
+ "grad_norm": 0.22549185156822205,
+ "learning_rate": 0.0006,
+ "loss": 3.556830406188965,
+ "step": 4230
+ },
+ {
+ "epoch": 58.768894713848844,
+ "grad_norm": 0.22341859340667725,
+ "learning_rate": 0.0006,
+ "loss": 3.5573582649230957,
+ "step": 4231
+ },
+ {
+ "epoch": 58.782874617737,
+ "grad_norm": 0.20664502680301666,
+ "learning_rate": 0.0006,
+ "loss": 3.578657865524292,
+ "step": 4232
+ },
+ {
+ "epoch": 58.796854521625164,
+ "grad_norm": 0.19885236024856567,
+ "learning_rate": 0.0006,
+ "loss": 3.5604476928710938,
+ "step": 4233
+ },
+ {
+ "epoch": 58.81083442551333,
+ "grad_norm": 0.19446797668933868,
+ "learning_rate": 0.0006,
+ "loss": 3.5686912536621094,
+ "step": 4234
+ },
+ {
+ "epoch": 58.824814329401484,
+ "grad_norm": 0.20658083260059357,
+ "learning_rate": 0.0006,
+ "loss": 3.563167095184326,
+ "step": 4235
+ },
+ {
+ "epoch": 58.83879423328965,
+ "grad_norm": 0.21075408160686493,
+ "learning_rate": 0.0006,
+ "loss": 3.5597028732299805,
+ "step": 4236
+ },
+ {
+ "epoch": 58.8527741371778,
+ "grad_norm": 0.20652376115322113,
+ "learning_rate": 0.0006,
+ "loss": 3.5651087760925293,
+ "step": 4237
+ },
+ {
+ "epoch": 58.86675404106597,
+ "grad_norm": 0.2243892401456833,
+ "learning_rate": 0.0006,
+ "loss": 3.5442488193511963,
+ "step": 4238
+ },
+ {
+ "epoch": 58.88073394495413,
+ "grad_norm": 0.23486459255218506,
+ "learning_rate": 0.0006,
+ "loss": 3.545135974884033,
+ "step": 4239
+ },
+ {
+ "epoch": 58.89471384884229,
+ "grad_norm": 0.23100663721561432,
+ "learning_rate": 0.0006,
+ "loss": 3.57177734375,
+ "step": 4240
+ },
+ {
+ "epoch": 58.90869375273045,
+ "grad_norm": 0.2269909679889679,
+ "learning_rate": 0.0006,
+ "loss": 3.528768301010132,
+ "step": 4241
+ },
+ {
+ "epoch": 58.92267365661861,
+ "grad_norm": 0.20349252223968506,
+ "learning_rate": 0.0006,
+ "loss": 3.591031789779663,
+ "step": 4242
+ },
+ {
+ "epoch": 58.93665356050677,
+ "grad_norm": 0.21038702130317688,
+ "learning_rate": 0.0006,
+ "loss": 3.5696892738342285,
+ "step": 4243
+ },
+ {
+ "epoch": 58.95063346439493,
+ "grad_norm": 0.21356560289859772,
+ "learning_rate": 0.0006,
+ "loss": 3.5708963871002197,
+ "step": 4244
+ },
+ {
+ "epoch": 58.964613368283096,
+ "grad_norm": 0.20008863508701324,
+ "learning_rate": 0.0006,
+ "loss": 3.524749279022217,
+ "step": 4245
+ },
+ {
+ "epoch": 58.97859327217125,
+ "grad_norm": 0.20453840494155884,
+ "learning_rate": 0.0006,
+ "loss": 3.5677876472473145,
+ "step": 4246
+ },
+ {
+ "epoch": 58.992573176059416,
+ "grad_norm": 0.21549056470394135,
+ "learning_rate": 0.0006,
+ "loss": 3.550870418548584,
+ "step": 4247
+ },
+ {
+ "epoch": 59.0,
+ "grad_norm": 0.2592930793762207,
+ "learning_rate": 0.0006,
+ "loss": 3.550673484802246,
+ "step": 4248
+ },
+ {
+ "epoch": 59.0,
+ "eval_loss": 3.968780279159546,
+ "eval_runtime": 45.6246,
+ "eval_samples_per_second": 53.524,
+ "eval_steps_per_second": 3.353,
+ "step": 4248
+ },
+ {
+ "epoch": 59.01397990388816,
+ "grad_norm": 0.218043252825737,
+ "learning_rate": 0.0006,
+ "loss": 3.49605655670166,
+ "step": 4249
+ },
+ {
+ "epoch": 59.02795980777632,
+ "grad_norm": 0.25112417340278625,
+ "learning_rate": 0.0006,
+ "loss": 3.534919023513794,
+ "step": 4250
+ },
+ {
+ "epoch": 59.04193971166448,
+ "grad_norm": 0.2785079777240753,
+ "learning_rate": 0.0006,
+ "loss": 3.5425362586975098,
+ "step": 4251
+ },
+ {
+ "epoch": 59.05591961555265,
+ "grad_norm": 0.2667599618434906,
+ "learning_rate": 0.0006,
+ "loss": 3.4955453872680664,
+ "step": 4252
+ },
+ {
+ "epoch": 59.0698995194408,
+ "grad_norm": 0.24012432992458344,
+ "learning_rate": 0.0006,
+ "loss": 3.4949915409088135,
+ "step": 4253
+ },
+ {
+ "epoch": 59.083879423328966,
+ "grad_norm": 0.2502294182777405,
+ "learning_rate": 0.0006,
+ "loss": 3.5163769721984863,
+ "step": 4254
+ },
+ {
+ "epoch": 59.09785932721712,
+ "grad_norm": 0.28585609793663025,
+ "learning_rate": 0.0006,
+ "loss": 3.4852542877197266,
+ "step": 4255
+ },
+ {
+ "epoch": 59.111839231105286,
+ "grad_norm": 0.2815989553928375,
+ "learning_rate": 0.0006,
+ "loss": 3.4991462230682373,
+ "step": 4256
+ },
+ {
+ "epoch": 59.12581913499345,
+ "grad_norm": 0.22922837734222412,
+ "learning_rate": 0.0006,
+ "loss": 3.511322021484375,
+ "step": 4257
+ },
+ {
+ "epoch": 59.139799038881605,
+ "grad_norm": 0.24964241683483124,
+ "learning_rate": 0.0006,
+ "loss": 3.521056652069092,
+ "step": 4258
+ },
+ {
+ "epoch": 59.15377894276977,
+ "grad_norm": 0.27568385004997253,
+ "learning_rate": 0.0006,
+ "loss": 3.514004707336426,
+ "step": 4259
+ },
+ {
+ "epoch": 59.16775884665793,
+ "grad_norm": 0.2605166733264923,
+ "learning_rate": 0.0006,
+ "loss": 3.5132668018341064,
+ "step": 4260
+ },
+ {
+ "epoch": 59.18173875054609,
+ "grad_norm": 0.24248117208480835,
+ "learning_rate": 0.0006,
+ "loss": 3.5492095947265625,
+ "step": 4261
+ },
+ {
+ "epoch": 59.19571865443425,
+ "grad_norm": 0.26359522342681885,
+ "learning_rate": 0.0006,
+ "loss": 3.521390438079834,
+ "step": 4262
+ },
+ {
+ "epoch": 59.20969855832241,
+ "grad_norm": 0.262248694896698,
+ "learning_rate": 0.0006,
+ "loss": 3.556307315826416,
+ "step": 4263
+ },
+ {
+ "epoch": 59.22367846221057,
+ "grad_norm": 0.23514866828918457,
+ "learning_rate": 0.0006,
+ "loss": 3.4989941120147705,
+ "step": 4264
+ },
+ {
+ "epoch": 59.237658366098735,
+ "grad_norm": 0.22758382558822632,
+ "learning_rate": 0.0006,
+ "loss": 3.5307068824768066,
+ "step": 4265
+ },
+ {
+ "epoch": 59.25163826998689,
+ "grad_norm": 0.24037839472293854,
+ "learning_rate": 0.0006,
+ "loss": 3.495872974395752,
+ "step": 4266
+ },
+ {
+ "epoch": 59.265618173875055,
+ "grad_norm": 0.22763589024543762,
+ "learning_rate": 0.0006,
+ "loss": 3.54052472114563,
+ "step": 4267
+ },
+ {
+ "epoch": 59.27959807776322,
+ "grad_norm": 0.22400406002998352,
+ "learning_rate": 0.0006,
+ "loss": 3.498671054840088,
+ "step": 4268
+ },
+ {
+ "epoch": 59.293577981651374,
+ "grad_norm": 0.2326328009366989,
+ "learning_rate": 0.0006,
+ "loss": 3.559108257293701,
+ "step": 4269
+ },
+ {
+ "epoch": 59.30755788553954,
+ "grad_norm": 0.24426043033599854,
+ "learning_rate": 0.0006,
+ "loss": 3.5245609283447266,
+ "step": 4270
+ },
+ {
+ "epoch": 59.3215377894277,
+ "grad_norm": 0.2159317582845688,
+ "learning_rate": 0.0006,
+ "loss": 3.5189900398254395,
+ "step": 4271
+ },
+ {
+ "epoch": 59.33551769331586,
+ "grad_norm": 0.19148702919483185,
+ "learning_rate": 0.0006,
+ "loss": 3.548433303833008,
+ "step": 4272
+ },
+ {
+ "epoch": 59.34949759720402,
+ "grad_norm": 0.23349083960056305,
+ "learning_rate": 0.0006,
+ "loss": 3.5475196838378906,
+ "step": 4273
+ },
+ {
+ "epoch": 59.36347750109218,
+ "grad_norm": 0.24024079740047455,
+ "learning_rate": 0.0006,
+ "loss": 3.5172529220581055,
+ "step": 4274
+ },
+ {
+ "epoch": 59.37745740498034,
+ "grad_norm": 0.23772001266479492,
+ "learning_rate": 0.0006,
+ "loss": 3.5428695678710938,
+ "step": 4275
+ },
+ {
+ "epoch": 59.391437308868504,
+ "grad_norm": 0.21134959161281586,
+ "learning_rate": 0.0006,
+ "loss": 3.523099422454834,
+ "step": 4276
+ },
+ {
+ "epoch": 59.40541721275666,
+ "grad_norm": 0.20760025084018707,
+ "learning_rate": 0.0006,
+ "loss": 3.55435848236084,
+ "step": 4277
+ },
+ {
+ "epoch": 59.419397116644824,
+ "grad_norm": 0.21113243699073792,
+ "learning_rate": 0.0006,
+ "loss": 3.5355324745178223,
+ "step": 4278
+ },
+ {
+ "epoch": 59.43337702053299,
+ "grad_norm": 0.21604566276073456,
+ "learning_rate": 0.0006,
+ "loss": 3.5517663955688477,
+ "step": 4279
+ },
+ {
+ "epoch": 59.44735692442114,
+ "grad_norm": 0.19646669924259186,
+ "learning_rate": 0.0006,
+ "loss": 3.538435935974121,
+ "step": 4280
+ },
+ {
+ "epoch": 59.46133682830931,
+ "grad_norm": 0.20394550263881683,
+ "learning_rate": 0.0006,
+ "loss": 3.528444290161133,
+ "step": 4281
+ },
+ {
+ "epoch": 59.47531673219746,
+ "grad_norm": 0.24543620645999908,
+ "learning_rate": 0.0006,
+ "loss": 3.5355372428894043,
+ "step": 4282
+ },
+ {
+ "epoch": 59.489296636085626,
+ "grad_norm": 0.24048425257205963,
+ "learning_rate": 0.0006,
+ "loss": 3.521336078643799,
+ "step": 4283
+ },
+ {
+ "epoch": 59.50327653997379,
+ "grad_norm": 0.23630213737487793,
+ "learning_rate": 0.0006,
+ "loss": 3.556244373321533,
+ "step": 4284
+ },
+ {
+ "epoch": 59.517256443861946,
+ "grad_norm": 0.2791444659233093,
+ "learning_rate": 0.0006,
+ "loss": 3.5927138328552246,
+ "step": 4285
+ },
+ {
+ "epoch": 59.53123634775011,
+ "grad_norm": 0.30325770378112793,
+ "learning_rate": 0.0006,
+ "loss": 3.559296131134033,
+ "step": 4286
+ },
+ {
+ "epoch": 59.54521625163827,
+ "grad_norm": 0.2708670496940613,
+ "learning_rate": 0.0006,
+ "loss": 3.531050205230713,
+ "step": 4287
+ },
+ {
+ "epoch": 59.55919615552643,
+ "grad_norm": 0.23795515298843384,
+ "learning_rate": 0.0006,
+ "loss": 3.5365982055664062,
+ "step": 4288
+ },
+ {
+ "epoch": 59.57317605941459,
+ "grad_norm": 0.20949627459049225,
+ "learning_rate": 0.0006,
+ "loss": 3.5591273307800293,
+ "step": 4289
+ },
+ {
+ "epoch": 59.58715596330275,
+ "grad_norm": 0.21885769069194794,
+ "learning_rate": 0.0006,
+ "loss": 3.4965288639068604,
+ "step": 4290
+ },
+ {
+ "epoch": 59.60113586719091,
+ "grad_norm": 0.22365590929985046,
+ "learning_rate": 0.0006,
+ "loss": 3.538118362426758,
+ "step": 4291
+ },
+ {
+ "epoch": 59.615115771079076,
+ "grad_norm": 0.23178881406784058,
+ "learning_rate": 0.0006,
+ "loss": 3.515933036804199,
+ "step": 4292
+ },
+ {
+ "epoch": 59.62909567496723,
+ "grad_norm": 0.21539060771465302,
+ "learning_rate": 0.0006,
+ "loss": 3.54185152053833,
+ "step": 4293
+ },
+ {
+ "epoch": 59.643075578855395,
+ "grad_norm": 0.22033682465553284,
+ "learning_rate": 0.0006,
+ "loss": 3.526728630065918,
+ "step": 4294
+ },
+ {
+ "epoch": 59.65705548274356,
+ "grad_norm": 0.23003938794136047,
+ "learning_rate": 0.0006,
+ "loss": 3.555710792541504,
+ "step": 4295
+ },
+ {
+ "epoch": 59.671035386631715,
+ "grad_norm": 0.22887346148490906,
+ "learning_rate": 0.0006,
+ "loss": 3.580883502960205,
+ "step": 4296
+ },
+ {
+ "epoch": 59.68501529051988,
+ "grad_norm": 0.2147892713546753,
+ "learning_rate": 0.0006,
+ "loss": 3.5318822860717773,
+ "step": 4297
+ },
+ {
+ "epoch": 59.69899519440804,
+ "grad_norm": 0.22063598036766052,
+ "learning_rate": 0.0006,
+ "loss": 3.5179357528686523,
+ "step": 4298
+ },
+ {
+ "epoch": 59.7129750982962,
+ "grad_norm": 0.22569656372070312,
+ "learning_rate": 0.0006,
+ "loss": 3.583181381225586,
+ "step": 4299
+ },
+ {
+ "epoch": 59.72695500218436,
+ "grad_norm": 0.2252701222896576,
+ "learning_rate": 0.0006,
+ "loss": 3.5780375003814697,
+ "step": 4300
+ },
+ {
+ "epoch": 59.74093490607252,
+ "grad_norm": 0.2288130521774292,
+ "learning_rate": 0.0006,
+ "loss": 3.570399284362793,
+ "step": 4301
+ },
+ {
+ "epoch": 59.75491480996068,
+ "grad_norm": 0.21879231929779053,
+ "learning_rate": 0.0006,
+ "loss": 3.540292739868164,
+ "step": 4302
+ },
+ {
+ "epoch": 59.768894713848844,
+ "grad_norm": 0.20675964653491974,
+ "learning_rate": 0.0006,
+ "loss": 3.532649040222168,
+ "step": 4303
+ },
+ {
+ "epoch": 59.782874617737,
+ "grad_norm": 0.21810708940029144,
+ "learning_rate": 0.0006,
+ "loss": 3.5156657695770264,
+ "step": 4304
+ },
+ {
+ "epoch": 59.796854521625164,
+ "grad_norm": 0.22701260447502136,
+ "learning_rate": 0.0006,
+ "loss": 3.5535266399383545,
+ "step": 4305
+ },
+ {
+ "epoch": 59.81083442551333,
+ "grad_norm": 0.23433080315589905,
+ "learning_rate": 0.0006,
+ "loss": 3.5280754566192627,
+ "step": 4306
+ },
+ {
+ "epoch": 59.824814329401484,
+ "grad_norm": 0.2254341095685959,
+ "learning_rate": 0.0006,
+ "loss": 3.534045696258545,
+ "step": 4307
+ },
+ {
+ "epoch": 59.83879423328965,
+ "grad_norm": 0.21756123006343842,
+ "learning_rate": 0.0006,
+ "loss": 3.5621533393859863,
+ "step": 4308
+ },
+ {
+ "epoch": 59.8527741371778,
+ "grad_norm": 0.19731850922107697,
+ "learning_rate": 0.0006,
+ "loss": 3.536633253097534,
+ "step": 4309
+ },
+ {
+ "epoch": 59.86675404106597,
+ "grad_norm": 0.2260110229253769,
+ "learning_rate": 0.0006,
+ "loss": 3.5721538066864014,
+ "step": 4310
+ },
+ {
+ "epoch": 59.88073394495413,
+ "grad_norm": 0.22728438675403595,
+ "learning_rate": 0.0006,
+ "loss": 3.5576961040496826,
+ "step": 4311
+ },
+ {
+ "epoch": 59.89471384884229,
+ "grad_norm": 0.20675411820411682,
+ "learning_rate": 0.0006,
+ "loss": 3.5070700645446777,
+ "step": 4312
+ },
+ {
+ "epoch": 59.90869375273045,
+ "grad_norm": 0.22258996963500977,
+ "learning_rate": 0.0006,
+ "loss": 3.564357280731201,
+ "step": 4313
+ },
+ {
+ "epoch": 59.92267365661861,
+ "grad_norm": 0.2429998815059662,
+ "learning_rate": 0.0006,
+ "loss": 3.519744873046875,
+ "step": 4314
+ },
+ {
+ "epoch": 59.93665356050677,
+ "grad_norm": 0.2394791841506958,
+ "learning_rate": 0.0006,
+ "loss": 3.533292055130005,
+ "step": 4315
+ },
+ {
+ "epoch": 59.95063346439493,
+ "grad_norm": 0.20659418404102325,
+ "learning_rate": 0.0006,
+ "loss": 3.5475940704345703,
+ "step": 4316
+ },
+ {
+ "epoch": 59.964613368283096,
+ "grad_norm": 0.19679132103919983,
+ "learning_rate": 0.0006,
+ "loss": 3.5794930458068848,
+ "step": 4317
+ },
+ {
+ "epoch": 59.97859327217125,
+ "grad_norm": 0.2133002132177353,
+ "learning_rate": 0.0006,
+ "loss": 3.5506505966186523,
+ "step": 4318
+ },
+ {
+ "epoch": 59.992573176059416,
+ "grad_norm": 0.22383661568164825,
+ "learning_rate": 0.0006,
+ "loss": 3.547708511352539,
+ "step": 4319
+ },
+ {
+ "epoch": 60.0,
+ "grad_norm": 0.25744178891181946,
+ "learning_rate": 0.0006,
+ "loss": 3.5519227981567383,
+ "step": 4320
+ },
+ {
+ "epoch": 60.0,
+ "eval_loss": 3.9816012382507324,
+ "eval_runtime": 46.3931,
+ "eval_samples_per_second": 52.637,
+ "eval_steps_per_second": 3.298,
+ "step": 4320
+ },
+ {
+ "epoch": 60.01397990388816,
+ "grad_norm": 0.2202005684375763,
+ "learning_rate": 0.0006,
+ "loss": 3.51010799407959,
+ "step": 4321
+ },
+ {
+ "epoch": 60.02795980777632,
+ "grad_norm": 0.24285688996315002,
+ "learning_rate": 0.0006,
+ "loss": 3.519137382507324,
+ "step": 4322
+ },
+ {
+ "epoch": 60.04193971166448,
+ "grad_norm": 0.2700578570365906,
+ "learning_rate": 0.0006,
+ "loss": 3.523392915725708,
+ "step": 4323
+ },
+ {
+ "epoch": 60.05591961555265,
+ "grad_norm": 0.30088669061660767,
+ "learning_rate": 0.0006,
+ "loss": 3.48724627494812,
+ "step": 4324
+ },
+ {
+ "epoch": 60.0698995194408,
+ "grad_norm": 0.30426669120788574,
+ "learning_rate": 0.0006,
+ "loss": 3.479025363922119,
+ "step": 4325
+ },
+ {
+ "epoch": 60.083879423328966,
+ "grad_norm": 0.2718220055103302,
+ "learning_rate": 0.0006,
+ "loss": 3.4923276901245117,
+ "step": 4326
+ },
+ {
+ "epoch": 60.09785932721712,
+ "grad_norm": 0.23625287413597107,
+ "learning_rate": 0.0006,
+ "loss": 3.5152812004089355,
+ "step": 4327
+ },
+ {
+ "epoch": 60.111839231105286,
+ "grad_norm": 0.23336869478225708,
+ "learning_rate": 0.0006,
+ "loss": 3.512453079223633,
+ "step": 4328
+ },
+ {
+ "epoch": 60.12581913499345,
+ "grad_norm": 0.24780215322971344,
+ "learning_rate": 0.0006,
+ "loss": 3.505812168121338,
+ "step": 4329
+ },
+ {
+ "epoch": 60.139799038881605,
+ "grad_norm": 0.25600194931030273,
+ "learning_rate": 0.0006,
+ "loss": 3.5281314849853516,
+ "step": 4330
+ },
+ {
+ "epoch": 60.15377894276977,
+ "grad_norm": 0.2458304911851883,
+ "learning_rate": 0.0006,
+ "loss": 3.4932949542999268,
+ "step": 4331
+ },
+ {
+ "epoch": 60.16775884665793,
+ "grad_norm": 0.2246888130903244,
+ "learning_rate": 0.0006,
+ "loss": 3.5295495986938477,
+ "step": 4332
+ },
+ {
+ "epoch": 60.18173875054609,
+ "grad_norm": 0.23762951791286469,
+ "learning_rate": 0.0006,
+ "loss": 3.4938201904296875,
+ "step": 4333
+ },
+ {
+ "epoch": 60.19571865443425,
+ "grad_norm": 0.24483945965766907,
+ "learning_rate": 0.0006,
+ "loss": 3.544774055480957,
+ "step": 4334
+ },
+ {
+ "epoch": 60.20969855832241,
+ "grad_norm": 0.24154368042945862,
+ "learning_rate": 0.0006,
+ "loss": 3.5352816581726074,
+ "step": 4335
+ },
+ {
+ "epoch": 60.22367846221057,
+ "grad_norm": 0.22929225862026215,
+ "learning_rate": 0.0006,
+ "loss": 3.5546953678131104,
+ "step": 4336
+ },
+ {
+ "epoch": 60.237658366098735,
+ "grad_norm": 0.21391373872756958,
+ "learning_rate": 0.0006,
+ "loss": 3.537647247314453,
+ "step": 4337
+ },
+ {
+ "epoch": 60.25163826998689,
+ "grad_norm": 0.20410357415676117,
+ "learning_rate": 0.0006,
+ "loss": 3.535831928253174,
+ "step": 4338
+ },
+ {
+ "epoch": 60.265618173875055,
+ "grad_norm": 0.2070329487323761,
+ "learning_rate": 0.0006,
+ "loss": 3.5234389305114746,
+ "step": 4339
+ },
+ {
+ "epoch": 60.27959807776322,
+ "grad_norm": 0.20540225505828857,
+ "learning_rate": 0.0006,
+ "loss": 3.557478427886963,
+ "step": 4340
+ },
+ {
+ "epoch": 60.293577981651374,
+ "grad_norm": 0.2124919891357422,
+ "learning_rate": 0.0006,
+ "loss": 3.532726764678955,
+ "step": 4341
+ },
+ {
+ "epoch": 60.30755788553954,
+ "grad_norm": 0.22207678854465485,
+ "learning_rate": 0.0006,
+ "loss": 3.5314202308654785,
+ "step": 4342
+ },
+ {
+ "epoch": 60.3215377894277,
+ "grad_norm": 0.2137281745672226,
+ "learning_rate": 0.0006,
+ "loss": 3.5491206645965576,
+ "step": 4343
+ },
+ {
+ "epoch": 60.33551769331586,
+ "grad_norm": 0.20728953182697296,
+ "learning_rate": 0.0006,
+ "loss": 3.5111031532287598,
+ "step": 4344
+ },
+ {
+ "epoch": 60.34949759720402,
+ "grad_norm": 0.22547020018100739,
+ "learning_rate": 0.0006,
+ "loss": 3.5311098098754883,
+ "step": 4345
+ },
+ {
+ "epoch": 60.36347750109218,
+ "grad_norm": 0.23352888226509094,
+ "learning_rate": 0.0006,
+ "loss": 3.5200939178466797,
+ "step": 4346
+ },
+ {
+ "epoch": 60.37745740498034,
+ "grad_norm": 0.21329060196876526,
+ "learning_rate": 0.0006,
+ "loss": 3.508589744567871,
+ "step": 4347
+ },
+ {
+ "epoch": 60.391437308868504,
+ "grad_norm": 0.1904045194387436,
+ "learning_rate": 0.0006,
+ "loss": 3.4850475788116455,
+ "step": 4348
+ },
+ {
+ "epoch": 60.40541721275666,
+ "grad_norm": 0.20586109161376953,
+ "learning_rate": 0.0006,
+ "loss": 3.5503551959991455,
+ "step": 4349
+ },
+ {
+ "epoch": 60.419397116644824,
+ "grad_norm": 0.21311818063259125,
+ "learning_rate": 0.0006,
+ "loss": 3.5243923664093018,
+ "step": 4350
+ },
+ {
+ "epoch": 60.43337702053299,
+ "grad_norm": 0.21479184925556183,
+ "learning_rate": 0.0006,
+ "loss": 3.553647041320801,
+ "step": 4351
+ },
+ {
+ "epoch": 60.44735692442114,
+ "grad_norm": 0.19994449615478516,
+ "learning_rate": 0.0006,
+ "loss": 3.5558884143829346,
+ "step": 4352
+ },
+ {
+ "epoch": 60.46133682830931,
+ "grad_norm": 0.21455694735050201,
+ "learning_rate": 0.0006,
+ "loss": 3.5186543464660645,
+ "step": 4353
+ },
+ {
+ "epoch": 60.47531673219746,
+ "grad_norm": 0.21904151141643524,
+ "learning_rate": 0.0006,
+ "loss": 3.526367425918579,
+ "step": 4354
+ },
+ {
+ "epoch": 60.489296636085626,
+ "grad_norm": 0.1908986121416092,
+ "learning_rate": 0.0006,
+ "loss": 3.541072368621826,
+ "step": 4355
+ },
+ {
+ "epoch": 60.50327653997379,
+ "grad_norm": 0.20290519297122955,
+ "learning_rate": 0.0006,
+ "loss": 3.530333995819092,
+ "step": 4356
+ },
+ {
+ "epoch": 60.517256443861946,
+ "grad_norm": 0.2318771779537201,
+ "learning_rate": 0.0006,
+ "loss": 3.5260486602783203,
+ "step": 4357
+ },
+ {
+ "epoch": 60.53123634775011,
+ "grad_norm": 0.25559669733047485,
+ "learning_rate": 0.0006,
+ "loss": 3.56851863861084,
+ "step": 4358
+ },
+ {
+ "epoch": 60.54521625163827,
+ "grad_norm": 0.2529429793357849,
+ "learning_rate": 0.0006,
+ "loss": 3.5519490242004395,
+ "step": 4359
+ },
+ {
+ "epoch": 60.55919615552643,
+ "grad_norm": 0.22857248783111572,
+ "learning_rate": 0.0006,
+ "loss": 3.5556063652038574,
+ "step": 4360
+ },
+ {
+ "epoch": 60.57317605941459,
+ "grad_norm": 0.21628573536872864,
+ "learning_rate": 0.0006,
+ "loss": 3.5321288108825684,
+ "step": 4361
+ },
+ {
+ "epoch": 60.58715596330275,
+ "grad_norm": 0.19497910141944885,
+ "learning_rate": 0.0006,
+ "loss": 3.5480406284332275,
+ "step": 4362
+ },
+ {
+ "epoch": 60.60113586719091,
+ "grad_norm": 0.204348623752594,
+ "learning_rate": 0.0006,
+ "loss": 3.522806167602539,
+ "step": 4363
+ },
+ {
+ "epoch": 60.615115771079076,
+ "grad_norm": 0.23013663291931152,
+ "learning_rate": 0.0006,
+ "loss": 3.512876033782959,
+ "step": 4364
+ },
+ {
+ "epoch": 60.62909567496723,
+ "grad_norm": 0.22948725521564484,
+ "learning_rate": 0.0006,
+ "loss": 3.54276704788208,
+ "step": 4365
+ },
+ {
+ "epoch": 60.643075578855395,
+ "grad_norm": 0.20528492331504822,
+ "learning_rate": 0.0006,
+ "loss": 3.5592503547668457,
+ "step": 4366
+ },
+ {
+ "epoch": 60.65705548274356,
+ "grad_norm": 0.214582160115242,
+ "learning_rate": 0.0006,
+ "loss": 3.5168166160583496,
+ "step": 4367
+ },
+ {
+ "epoch": 60.671035386631715,
+ "grad_norm": 0.18893493711948395,
+ "learning_rate": 0.0006,
+ "loss": 3.51012921333313,
+ "step": 4368
+ },
+ {
+ "epoch": 60.68501529051988,
+ "grad_norm": 0.19301992654800415,
+ "learning_rate": 0.0006,
+ "loss": 3.5396199226379395,
+ "step": 4369
+ },
+ {
+ "epoch": 60.69899519440804,
+ "grad_norm": 0.22339801490306854,
+ "learning_rate": 0.0006,
+ "loss": 3.5463967323303223,
+ "step": 4370
+ },
+ {
+ "epoch": 60.7129750982962,
+ "grad_norm": 0.19028180837631226,
+ "learning_rate": 0.0006,
+ "loss": 3.534419536590576,
+ "step": 4371
+ },
+ {
+ "epoch": 60.72695500218436,
+ "grad_norm": 0.2078639566898346,
+ "learning_rate": 0.0006,
+ "loss": 3.5345680713653564,
+ "step": 4372
+ },
+ {
+ "epoch": 60.74093490607252,
+ "grad_norm": 0.24292199313640594,
+ "learning_rate": 0.0006,
+ "loss": 3.5291242599487305,
+ "step": 4373
+ },
+ {
+ "epoch": 60.75491480996068,
+ "grad_norm": 0.25118497014045715,
+ "learning_rate": 0.0006,
+ "loss": 3.5362191200256348,
+ "step": 4374
+ },
+ {
+ "epoch": 60.768894713848844,
+ "grad_norm": 0.24816395342350006,
+ "learning_rate": 0.0006,
+ "loss": 3.539637804031372,
+ "step": 4375
+ },
+ {
+ "epoch": 60.782874617737,
+ "grad_norm": 0.23654010891914368,
+ "learning_rate": 0.0006,
+ "loss": 3.482605457305908,
+ "step": 4376
+ },
+ {
+ "epoch": 60.796854521625164,
+ "grad_norm": 0.21593770384788513,
+ "learning_rate": 0.0006,
+ "loss": 3.550279140472412,
+ "step": 4377
+ },
+ {
+ "epoch": 60.81083442551333,
+ "grad_norm": 0.21346014738082886,
+ "learning_rate": 0.0006,
+ "loss": 3.541086196899414,
+ "step": 4378
+ },
+ {
+ "epoch": 60.824814329401484,
+ "grad_norm": 0.2284841537475586,
+ "learning_rate": 0.0006,
+ "loss": 3.544254779815674,
+ "step": 4379
+ },
+ {
+ "epoch": 60.83879423328965,
+ "grad_norm": 0.23353151977062225,
+ "learning_rate": 0.0006,
+ "loss": 3.5606589317321777,
+ "step": 4380
+ },
+ {
+ "epoch": 60.8527741371778,
+ "grad_norm": 0.2201574146747589,
+ "learning_rate": 0.0006,
+ "loss": 3.524120807647705,
+ "step": 4381
+ },
+ {
+ "epoch": 60.86675404106597,
+ "grad_norm": 0.2277211993932724,
+ "learning_rate": 0.0006,
+ "loss": 3.553539276123047,
+ "step": 4382
+ },
+ {
+ "epoch": 60.88073394495413,
+ "grad_norm": 0.2282724678516388,
+ "learning_rate": 0.0006,
+ "loss": 3.5247130393981934,
+ "step": 4383
+ },
+ {
+ "epoch": 60.89471384884229,
+ "grad_norm": 0.20859065651893616,
+ "learning_rate": 0.0006,
+ "loss": 3.5654680728912354,
+ "step": 4384
+ },
+ {
+ "epoch": 60.90869375273045,
+ "grad_norm": 0.1995432823896408,
+ "learning_rate": 0.0006,
+ "loss": 3.5091423988342285,
+ "step": 4385
+ },
+ {
+ "epoch": 60.92267365661861,
+ "grad_norm": 0.19769565761089325,
+ "learning_rate": 0.0006,
+ "loss": 3.5375986099243164,
+ "step": 4386
+ },
+ {
+ "epoch": 60.93665356050677,
+ "grad_norm": 0.21246176958084106,
+ "learning_rate": 0.0006,
+ "loss": 3.570774793624878,
+ "step": 4387
+ },
+ {
+ "epoch": 60.95063346439493,
+ "grad_norm": 0.2212657630443573,
+ "learning_rate": 0.0006,
+ "loss": 3.5192928314208984,
+ "step": 4388
+ },
+ {
+ "epoch": 60.964613368283096,
+ "grad_norm": 0.2258632481098175,
+ "learning_rate": 0.0006,
+ "loss": 3.5356457233428955,
+ "step": 4389
+ },
+ {
+ "epoch": 60.97859327217125,
+ "grad_norm": 0.1998971700668335,
+ "learning_rate": 0.0006,
+ "loss": 3.52758526802063,
+ "step": 4390
+ },
+ {
+ "epoch": 60.992573176059416,
+ "grad_norm": 0.1932399868965149,
+ "learning_rate": 0.0006,
+ "loss": 3.562718391418457,
+ "step": 4391
+ },
+ {
+ "epoch": 61.0,
+ "grad_norm": 0.24292197823524475,
+ "learning_rate": 0.0006,
+ "loss": 3.550189971923828,
+ "step": 4392
+ },
+ {
+ "epoch": 61.0,
+ "eval_loss": 3.974423408508301,
+ "eval_runtime": 45.8822,
+ "eval_samples_per_second": 53.223,
+ "eval_steps_per_second": 3.335,
+ "step": 4392
+ },
+ {
+ "epoch": 61.01397990388816,
+ "grad_norm": 0.2216092199087143,
+ "learning_rate": 0.0006,
+ "loss": 3.51747989654541,
+ "step": 4393
+ },
+ {
+ "epoch": 61.02795980777632,
+ "grad_norm": 0.23488417267799377,
+ "learning_rate": 0.0006,
+ "loss": 3.529064178466797,
+ "step": 4394
+ },
+ {
+ "epoch": 61.04193971166448,
+ "grad_norm": 0.2805800437927246,
+ "learning_rate": 0.0006,
+ "loss": 3.4868035316467285,
+ "step": 4395
+ },
+ {
+ "epoch": 61.05591961555265,
+ "grad_norm": 0.32623469829559326,
+ "learning_rate": 0.0006,
+ "loss": 3.5209708213806152,
+ "step": 4396
+ },
+ {
+ "epoch": 61.0698995194408,
+ "grad_norm": 0.2645402252674103,
+ "learning_rate": 0.0006,
+ "loss": 3.524512767791748,
+ "step": 4397
+ },
+ {
+ "epoch": 61.083879423328966,
+ "grad_norm": 0.21118173003196716,
+ "learning_rate": 0.0006,
+ "loss": 3.5167856216430664,
+ "step": 4398
+ },
+ {
+ "epoch": 61.09785932721712,
+ "grad_norm": 0.28649622201919556,
+ "learning_rate": 0.0006,
+ "loss": 3.5122973918914795,
+ "step": 4399
+ },
+ {
+ "epoch": 61.111839231105286,
+ "grad_norm": 0.39095914363861084,
+ "learning_rate": 0.0006,
+ "loss": 3.481421947479248,
+ "step": 4400
+ },
+ {
+ "epoch": 61.12581913499345,
+ "grad_norm": 0.4013976454734802,
+ "learning_rate": 0.0006,
+ "loss": 3.4859061241149902,
+ "step": 4401
+ },
+ {
+ "epoch": 61.139799038881605,
+ "grad_norm": 0.30067047476768494,
+ "learning_rate": 0.0006,
+ "loss": 3.524209976196289,
+ "step": 4402
+ },
+ {
+ "epoch": 61.15377894276977,
+ "grad_norm": 0.2086855173110962,
+ "learning_rate": 0.0006,
+ "loss": 3.4974379539489746,
+ "step": 4403
+ },
+ {
+ "epoch": 61.16775884665793,
+ "grad_norm": 0.25443482398986816,
+ "learning_rate": 0.0006,
+ "loss": 3.517038345336914,
+ "step": 4404
+ },
+ {
+ "epoch": 61.18173875054609,
+ "grad_norm": 0.27545589208602905,
+ "learning_rate": 0.0006,
+ "loss": 3.5075795650482178,
+ "step": 4405
+ },
+ {
+ "epoch": 61.19571865443425,
+ "grad_norm": 0.269279420375824,
+ "learning_rate": 0.0006,
+ "loss": 3.512235641479492,
+ "step": 4406
+ },
+ {
+ "epoch": 61.20969855832241,
+ "grad_norm": 0.24606923758983612,
+ "learning_rate": 0.0006,
+ "loss": 3.5362367630004883,
+ "step": 4407
+ },
+ {
+ "epoch": 61.22367846221057,
+ "grad_norm": 0.23358067870140076,
+ "learning_rate": 0.0006,
+ "loss": 3.5256686210632324,
+ "step": 4408
+ },
+ {
+ "epoch": 61.237658366098735,
+ "grad_norm": 0.2528085708618164,
+ "learning_rate": 0.0006,
+ "loss": 3.504239559173584,
+ "step": 4409
+ },
+ {
+ "epoch": 61.25163826998689,
+ "grad_norm": 0.28145745396614075,
+ "learning_rate": 0.0006,
+ "loss": 3.4862139225006104,
+ "step": 4410
+ },
+ {
+ "epoch": 61.265618173875055,
+ "grad_norm": 0.26570039987564087,
+ "learning_rate": 0.0006,
+ "loss": 3.5138425827026367,
+ "step": 4411
+ },
+ {
+ "epoch": 61.27959807776322,
+ "grad_norm": 0.2391415685415268,
+ "learning_rate": 0.0006,
+ "loss": 3.537569999694824,
+ "step": 4412
+ },
+ {
+ "epoch": 61.293577981651374,
+ "grad_norm": 0.22194577753543854,
+ "learning_rate": 0.0006,
+ "loss": 3.5367543697357178,
+ "step": 4413
+ },
+ {
+ "epoch": 61.30755788553954,
+ "grad_norm": 0.2388865202665329,
+ "learning_rate": 0.0006,
+ "loss": 3.533341407775879,
+ "step": 4414
+ },
+ {
+ "epoch": 61.3215377894277,
+ "grad_norm": 0.2666625380516052,
+ "learning_rate": 0.0006,
+ "loss": 3.501162528991699,
+ "step": 4415
+ },
+ {
+ "epoch": 61.33551769331586,
+ "grad_norm": 0.25569409132003784,
+ "learning_rate": 0.0006,
+ "loss": 3.529283046722412,
+ "step": 4416
+ },
+ {
+ "epoch": 61.34949759720402,
+ "grad_norm": 0.24683351814746857,
+ "learning_rate": 0.0006,
+ "loss": 3.508152484893799,
+ "step": 4417
+ },
+ {
+ "epoch": 61.36347750109218,
+ "grad_norm": 0.22290605306625366,
+ "learning_rate": 0.0006,
+ "loss": 3.5309581756591797,
+ "step": 4418
+ },
+ {
+ "epoch": 61.37745740498034,
+ "grad_norm": 0.2174215167760849,
+ "learning_rate": 0.0006,
+ "loss": 3.508796453475952,
+ "step": 4419
+ },
+ {
+ "epoch": 61.391437308868504,
+ "grad_norm": 0.23006199300289154,
+ "learning_rate": 0.0006,
+ "loss": 3.5497584342956543,
+ "step": 4420
+ },
+ {
+ "epoch": 61.40541721275666,
+ "grad_norm": 0.2311345487833023,
+ "learning_rate": 0.0006,
+ "loss": 3.5524582862854004,
+ "step": 4421
+ },
+ {
+ "epoch": 61.419397116644824,
+ "grad_norm": 0.2296203076839447,
+ "learning_rate": 0.0006,
+ "loss": 3.5146689414978027,
+ "step": 4422
+ },
+ {
+ "epoch": 61.43337702053299,
+ "grad_norm": 0.24848754703998566,
+ "learning_rate": 0.0006,
+ "loss": 3.489335060119629,
+ "step": 4423
+ },
+ {
+ "epoch": 61.44735692442114,
+ "grad_norm": 0.23717737197875977,
+ "learning_rate": 0.0006,
+ "loss": 3.4982404708862305,
+ "step": 4424
+ },
+ {
+ "epoch": 61.46133682830931,
+ "grad_norm": 0.21826806664466858,
+ "learning_rate": 0.0006,
+ "loss": 3.5134825706481934,
+ "step": 4425
+ },
+ {
+ "epoch": 61.47531673219746,
+ "grad_norm": 0.22878992557525635,
+ "learning_rate": 0.0006,
+ "loss": 3.512604236602783,
+ "step": 4426
+ },
+ {
+ "epoch": 61.489296636085626,
+ "grad_norm": 0.21184465289115906,
+ "learning_rate": 0.0006,
+ "loss": 3.5314245223999023,
+ "step": 4427
+ },
+ {
+ "epoch": 61.50327653997379,
+ "grad_norm": 0.2129429429769516,
+ "learning_rate": 0.0006,
+ "loss": 3.51242733001709,
+ "step": 4428
+ },
+ {
+ "epoch": 61.517256443861946,
+ "grad_norm": 0.21566109359264374,
+ "learning_rate": 0.0006,
+ "loss": 3.5287160873413086,
+ "step": 4429
+ },
+ {
+ "epoch": 61.53123634775011,
+ "grad_norm": 0.2010934203863144,
+ "learning_rate": 0.0006,
+ "loss": 3.5250844955444336,
+ "step": 4430
+ },
+ {
+ "epoch": 61.54521625163827,
+ "grad_norm": 0.1979563683271408,
+ "learning_rate": 0.0006,
+ "loss": 3.553415536880493,
+ "step": 4431
+ },
+ {
+ "epoch": 61.55919615552643,
+ "grad_norm": 0.19513480365276337,
+ "learning_rate": 0.0006,
+ "loss": 3.500551223754883,
+ "step": 4432
+ },
+ {
+ "epoch": 61.57317605941459,
+ "grad_norm": 0.19601108133792877,
+ "learning_rate": 0.0006,
+ "loss": 3.532161235809326,
+ "step": 4433
+ },
+ {
+ "epoch": 61.58715596330275,
+ "grad_norm": 0.2054651528596878,
+ "learning_rate": 0.0006,
+ "loss": 3.5360732078552246,
+ "step": 4434
+ },
+ {
+ "epoch": 61.60113586719091,
+ "grad_norm": 0.2096887230873108,
+ "learning_rate": 0.0006,
+ "loss": 3.522620916366577,
+ "step": 4435
+ },
+ {
+ "epoch": 61.615115771079076,
+ "grad_norm": 0.19664394855499268,
+ "learning_rate": 0.0006,
+ "loss": 3.5298569202423096,
+ "step": 4436
+ },
+ {
+ "epoch": 61.62909567496723,
+ "grad_norm": 0.20641925930976868,
+ "learning_rate": 0.0006,
+ "loss": 3.521233320236206,
+ "step": 4437
+ },
+ {
+ "epoch": 61.643075578855395,
+ "grad_norm": 0.2013241946697235,
+ "learning_rate": 0.0006,
+ "loss": 3.536212682723999,
+ "step": 4438
+ },
+ {
+ "epoch": 61.65705548274356,
+ "grad_norm": 0.19561146199703217,
+ "learning_rate": 0.0006,
+ "loss": 3.569584846496582,
+ "step": 4439
+ },
+ {
+ "epoch": 61.671035386631715,
+ "grad_norm": 0.2281758189201355,
+ "learning_rate": 0.0006,
+ "loss": 3.5208396911621094,
+ "step": 4440
+ },
+ {
+ "epoch": 61.68501529051988,
+ "grad_norm": 0.2387618124485016,
+ "learning_rate": 0.0006,
+ "loss": 3.5338330268859863,
+ "step": 4441
+ },
+ {
+ "epoch": 61.69899519440804,
+ "grad_norm": 0.23753441870212555,
+ "learning_rate": 0.0006,
+ "loss": 3.5454416275024414,
+ "step": 4442
+ },
+ {
+ "epoch": 61.7129750982962,
+ "grad_norm": 0.2477191686630249,
+ "learning_rate": 0.0006,
+ "loss": 3.5409836769104004,
+ "step": 4443
+ },
+ {
+ "epoch": 61.72695500218436,
+ "grad_norm": 0.25156062841415405,
+ "learning_rate": 0.0006,
+ "loss": 3.5135607719421387,
+ "step": 4444
+ },
+ {
+ "epoch": 61.74093490607252,
+ "grad_norm": 0.21422065794467926,
+ "learning_rate": 0.0006,
+ "loss": 3.5514771938323975,
+ "step": 4445
+ },
+ {
+ "epoch": 61.75491480996068,
+ "grad_norm": 0.2103811502456665,
+ "learning_rate": 0.0006,
+ "loss": 3.544037103652954,
+ "step": 4446
+ },
+ {
+ "epoch": 61.768894713848844,
+ "grad_norm": 0.21455387771129608,
+ "learning_rate": 0.0006,
+ "loss": 3.5526280403137207,
+ "step": 4447
+ },
+ {
+ "epoch": 61.782874617737,
+ "grad_norm": 0.22101432085037231,
+ "learning_rate": 0.0006,
+ "loss": 3.510197639465332,
+ "step": 4448
+ },
+ {
+ "epoch": 61.796854521625164,
+ "grad_norm": 0.2093520164489746,
+ "learning_rate": 0.0006,
+ "loss": 3.52504301071167,
+ "step": 4449
+ },
+ {
+ "epoch": 61.81083442551333,
+ "grad_norm": 0.2224605530500412,
+ "learning_rate": 0.0006,
+ "loss": 3.5590806007385254,
+ "step": 4450
+ },
+ {
+ "epoch": 61.824814329401484,
+ "grad_norm": 0.22242501378059387,
+ "learning_rate": 0.0006,
+ "loss": 3.5409610271453857,
+ "step": 4451
+ },
+ {
+ "epoch": 61.83879423328965,
+ "grad_norm": 0.22488343715667725,
+ "learning_rate": 0.0006,
+ "loss": 3.537534236907959,
+ "step": 4452
+ },
+ {
+ "epoch": 61.8527741371778,
+ "grad_norm": 0.23510107398033142,
+ "learning_rate": 0.0006,
+ "loss": 3.5561342239379883,
+ "step": 4453
+ },
+ {
+ "epoch": 61.86675404106597,
+ "grad_norm": 0.237285315990448,
+ "learning_rate": 0.0006,
+ "loss": 3.539592742919922,
+ "step": 4454
+ },
+ {
+ "epoch": 61.88073394495413,
+ "grad_norm": 0.21573765575885773,
+ "learning_rate": 0.0006,
+ "loss": 3.552250385284424,
+ "step": 4455
+ },
+ {
+ "epoch": 61.89471384884229,
+ "grad_norm": 0.20348075032234192,
+ "learning_rate": 0.0006,
+ "loss": 3.5406012535095215,
+ "step": 4456
+ },
+ {
+ "epoch": 61.90869375273045,
+ "grad_norm": 0.21306075155735016,
+ "learning_rate": 0.0006,
+ "loss": 3.504248857498169,
+ "step": 4457
+ },
+ {
+ "epoch": 61.92267365661861,
+ "grad_norm": 0.2184341996908188,
+ "learning_rate": 0.0006,
+ "loss": 3.5441558361053467,
+ "step": 4458
+ },
+ {
+ "epoch": 61.93665356050677,
+ "grad_norm": 0.20888687670230865,
+ "learning_rate": 0.0006,
+ "loss": 3.517657518386841,
+ "step": 4459
+ },
+ {
+ "epoch": 61.95063346439493,
+ "grad_norm": 0.2066143900156021,
+ "learning_rate": 0.0006,
+ "loss": 3.525796890258789,
+ "step": 4460
+ },
+ {
+ "epoch": 61.964613368283096,
+ "grad_norm": 0.1906299591064453,
+ "learning_rate": 0.0006,
+ "loss": 3.550924777984619,
+ "step": 4461
+ },
+ {
+ "epoch": 61.97859327217125,
+ "grad_norm": 0.1834334284067154,
+ "learning_rate": 0.0006,
+ "loss": 3.5818099975585938,
+ "step": 4462
+ },
+ {
+ "epoch": 61.992573176059416,
+ "grad_norm": 0.22725825011730194,
+ "learning_rate": 0.0006,
+ "loss": 3.5573811531066895,
+ "step": 4463
+ },
+ {
+ "epoch": 62.0,
+ "grad_norm": 0.29936420917510986,
+ "learning_rate": 0.0006,
+ "loss": 3.557694435119629,
+ "step": 4464
+ },
+ {
+ "epoch": 62.0,
+ "eval_loss": 3.985543966293335,
+ "eval_runtime": 46.6388,
+ "eval_samples_per_second": 52.36,
+ "eval_steps_per_second": 3.281,
+ "step": 4464
+ },
+ {
+ "epoch": 62.01397990388816,
+ "grad_norm": 0.30896103382110596,
+ "learning_rate": 0.0006,
+ "loss": 3.4991438388824463,
+ "step": 4465
+ },
+ {
+ "epoch": 62.02795980777632,
+ "grad_norm": 0.27383437752723694,
+ "learning_rate": 0.0006,
+ "loss": 3.4710259437561035,
+ "step": 4466
+ },
+ {
+ "epoch": 62.04193971166448,
+ "grad_norm": 0.24412496387958527,
+ "learning_rate": 0.0006,
+ "loss": 3.4983878135681152,
+ "step": 4467
+ },
+ {
+ "epoch": 62.05591961555265,
+ "grad_norm": 0.2649880051612854,
+ "learning_rate": 0.0006,
+ "loss": 3.5481886863708496,
+ "step": 4468
+ },
+ {
+ "epoch": 62.0698995194408,
+ "grad_norm": 0.2625769078731537,
+ "learning_rate": 0.0006,
+ "loss": 3.5114197731018066,
+ "step": 4469
+ },
+ {
+ "epoch": 62.083879423328966,
+ "grad_norm": 0.234181210398674,
+ "learning_rate": 0.0006,
+ "loss": 3.504152536392212,
+ "step": 4470
+ },
+ {
+ "epoch": 62.09785932721712,
+ "grad_norm": 0.21403342485427856,
+ "learning_rate": 0.0006,
+ "loss": 3.50738525390625,
+ "step": 4471
+ },
+ {
+ "epoch": 62.111839231105286,
+ "grad_norm": 0.22780060768127441,
+ "learning_rate": 0.0006,
+ "loss": 3.518354892730713,
+ "step": 4472
+ },
+ {
+ "epoch": 62.12581913499345,
+ "grad_norm": 0.23725424706935883,
+ "learning_rate": 0.0006,
+ "loss": 3.5227513313293457,
+ "step": 4473
+ },
+ {
+ "epoch": 62.139799038881605,
+ "grad_norm": 0.23643283545970917,
+ "learning_rate": 0.0006,
+ "loss": 3.504271984100342,
+ "step": 4474
+ },
+ {
+ "epoch": 62.15377894276977,
+ "grad_norm": 0.22513480484485626,
+ "learning_rate": 0.0006,
+ "loss": 3.5232059955596924,
+ "step": 4475
+ },
+ {
+ "epoch": 62.16775884665793,
+ "grad_norm": 0.23375700414180756,
+ "learning_rate": 0.0006,
+ "loss": 3.506519317626953,
+ "step": 4476
+ },
+ {
+ "epoch": 62.18173875054609,
+ "grad_norm": 0.24691303074359894,
+ "learning_rate": 0.0006,
+ "loss": 3.5212974548339844,
+ "step": 4477
+ },
+ {
+ "epoch": 62.19571865443425,
+ "grad_norm": 0.23466123640537262,
+ "learning_rate": 0.0006,
+ "loss": 3.5295071601867676,
+ "step": 4478
+ },
+ {
+ "epoch": 62.20969855832241,
+ "grad_norm": 0.2432340532541275,
+ "learning_rate": 0.0006,
+ "loss": 3.487830638885498,
+ "step": 4479
+ },
+ {
+ "epoch": 62.22367846221057,
+ "grad_norm": 0.24575389921665192,
+ "learning_rate": 0.0006,
+ "loss": 3.5329103469848633,
+ "step": 4480
+ },
+ {
+ "epoch": 62.237658366098735,
+ "grad_norm": 0.2441941201686859,
+ "learning_rate": 0.0006,
+ "loss": 3.5230906009674072,
+ "step": 4481
+ },
+ {
+ "epoch": 62.25163826998689,
+ "grad_norm": 0.2278154343366623,
+ "learning_rate": 0.0006,
+ "loss": 3.4919002056121826,
+ "step": 4482
+ },
+ {
+ "epoch": 62.265618173875055,
+ "grad_norm": 0.23517796397209167,
+ "learning_rate": 0.0006,
+ "loss": 3.5137887001037598,
+ "step": 4483
+ },
+ {
+ "epoch": 62.27959807776322,
+ "grad_norm": 0.2533835470676422,
+ "learning_rate": 0.0006,
+ "loss": 3.526322841644287,
+ "step": 4484
+ },
+ {
+ "epoch": 62.293577981651374,
+ "grad_norm": 0.24535894393920898,
+ "learning_rate": 0.0006,
+ "loss": 3.5060930252075195,
+ "step": 4485
+ },
+ {
+ "epoch": 62.30755788553954,
+ "grad_norm": 0.23312991857528687,
+ "learning_rate": 0.0006,
+ "loss": 3.5015740394592285,
+ "step": 4486
+ },
+ {
+ "epoch": 62.3215377894277,
+ "grad_norm": 0.2073916792869568,
+ "learning_rate": 0.0006,
+ "loss": 3.5239500999450684,
+ "step": 4487
+ },
+ {
+ "epoch": 62.33551769331586,
+ "grad_norm": 0.23528249561786652,
+ "learning_rate": 0.0006,
+ "loss": 3.4946212768554688,
+ "step": 4488
+ },
+ {
+ "epoch": 62.34949759720402,
+ "grad_norm": 0.25181272625923157,
+ "learning_rate": 0.0006,
+ "loss": 3.5492000579833984,
+ "step": 4489
+ },
+ {
+ "epoch": 62.36347750109218,
+ "grad_norm": 0.250745564699173,
+ "learning_rate": 0.0006,
+ "loss": 3.491637706756592,
+ "step": 4490
+ },
+ {
+ "epoch": 62.37745740498034,
+ "grad_norm": 0.2461264729499817,
+ "learning_rate": 0.0006,
+ "loss": 3.514125108718872,
+ "step": 4491
+ },
+ {
+ "epoch": 62.391437308868504,
+ "grad_norm": 0.2265472114086151,
+ "learning_rate": 0.0006,
+ "loss": 3.5513534545898438,
+ "step": 4492
+ },
+ {
+ "epoch": 62.40541721275666,
+ "grad_norm": 0.21937128901481628,
+ "learning_rate": 0.0006,
+ "loss": 3.541867733001709,
+ "step": 4493
+ },
+ {
+ "epoch": 62.419397116644824,
+ "grad_norm": 0.21318639814853668,
+ "learning_rate": 0.0006,
+ "loss": 3.530449867248535,
+ "step": 4494
+ },
+ {
+ "epoch": 62.43337702053299,
+ "grad_norm": 0.21287934482097626,
+ "learning_rate": 0.0006,
+ "loss": 3.51837158203125,
+ "step": 4495
+ },
+ {
+ "epoch": 62.44735692442114,
+ "grad_norm": 0.21953676640987396,
+ "learning_rate": 0.0006,
+ "loss": 3.517456293106079,
+ "step": 4496
+ },
+ {
+ "epoch": 62.46133682830931,
+ "grad_norm": 0.23475255072116852,
+ "learning_rate": 0.0006,
+ "loss": 3.493858575820923,
+ "step": 4497
+ },
+ {
+ "epoch": 62.47531673219746,
+ "grad_norm": 0.21805652976036072,
+ "learning_rate": 0.0006,
+ "loss": 3.533367872238159,
+ "step": 4498
+ },
+ {
+ "epoch": 62.489296636085626,
+ "grad_norm": 0.21494100987911224,
+ "learning_rate": 0.0006,
+ "loss": 3.509060859680176,
+ "step": 4499
+ },
+ {
+ "epoch": 62.50327653997379,
+ "grad_norm": 0.20512273907661438,
+ "learning_rate": 0.0006,
+ "loss": 3.524643659591675,
+ "step": 4500
+ },
+ {
+ "epoch": 62.517256443861946,
+ "grad_norm": 0.2046528458595276,
+ "learning_rate": 0.0006,
+ "loss": 3.520662784576416,
+ "step": 4501
+ },
+ {
+ "epoch": 62.53123634775011,
+ "grad_norm": 0.21108978986740112,
+ "learning_rate": 0.0006,
+ "loss": 3.5121688842773438,
+ "step": 4502
+ },
+ {
+ "epoch": 62.54521625163827,
+ "grad_norm": 0.19229449331760406,
+ "learning_rate": 0.0006,
+ "loss": 3.5201103687286377,
+ "step": 4503
+ },
+ {
+ "epoch": 62.55919615552643,
+ "grad_norm": 0.1984805464744568,
+ "learning_rate": 0.0006,
+ "loss": 3.546898365020752,
+ "step": 4504
+ },
+ {
+ "epoch": 62.57317605941459,
+ "grad_norm": 0.21615411341190338,
+ "learning_rate": 0.0006,
+ "loss": 3.4933600425720215,
+ "step": 4505
+ },
+ {
+ "epoch": 62.58715596330275,
+ "grad_norm": 0.22868046164512634,
+ "learning_rate": 0.0006,
+ "loss": 3.506098747253418,
+ "step": 4506
+ },
+ {
+ "epoch": 62.60113586719091,
+ "grad_norm": 0.21856851875782013,
+ "learning_rate": 0.0006,
+ "loss": 3.5790011882781982,
+ "step": 4507
+ },
+ {
+ "epoch": 62.615115771079076,
+ "grad_norm": 0.20573008060455322,
+ "learning_rate": 0.0006,
+ "loss": 3.5236854553222656,
+ "step": 4508
+ },
+ {
+ "epoch": 62.62909567496723,
+ "grad_norm": 0.21287901699543,
+ "learning_rate": 0.0006,
+ "loss": 3.5323190689086914,
+ "step": 4509
+ },
+ {
+ "epoch": 62.643075578855395,
+ "grad_norm": 0.22703637182712555,
+ "learning_rate": 0.0006,
+ "loss": 3.5300045013427734,
+ "step": 4510
+ },
+ {
+ "epoch": 62.65705548274356,
+ "grad_norm": 0.2194957137107849,
+ "learning_rate": 0.0006,
+ "loss": 3.5727438926696777,
+ "step": 4511
+ },
+ {
+ "epoch": 62.671035386631715,
+ "grad_norm": 0.22334235906600952,
+ "learning_rate": 0.0006,
+ "loss": 3.521441698074341,
+ "step": 4512
+ },
+ {
+ "epoch": 62.68501529051988,
+ "grad_norm": 0.2559402883052826,
+ "learning_rate": 0.0006,
+ "loss": 3.513730525970459,
+ "step": 4513
+ },
+ {
+ "epoch": 62.69899519440804,
+ "grad_norm": 0.25041815638542175,
+ "learning_rate": 0.0006,
+ "loss": 3.536247968673706,
+ "step": 4514
+ },
+ {
+ "epoch": 62.7129750982962,
+ "grad_norm": 0.24958674609661102,
+ "learning_rate": 0.0006,
+ "loss": 3.5245871543884277,
+ "step": 4515
+ },
+ {
+ "epoch": 62.72695500218436,
+ "grad_norm": 0.22527511417865753,
+ "learning_rate": 0.0006,
+ "loss": 3.508802652359009,
+ "step": 4516
+ },
+ {
+ "epoch": 62.74093490607252,
+ "grad_norm": 0.19455862045288086,
+ "learning_rate": 0.0006,
+ "loss": 3.5296337604522705,
+ "step": 4517
+ },
+ {
+ "epoch": 62.75491480996068,
+ "grad_norm": 0.20303845405578613,
+ "learning_rate": 0.0006,
+ "loss": 3.57499098777771,
+ "step": 4518
+ },
+ {
+ "epoch": 62.768894713848844,
+ "grad_norm": 0.20851430296897888,
+ "learning_rate": 0.0006,
+ "loss": 3.5139262676239014,
+ "step": 4519
+ },
+ {
+ "epoch": 62.782874617737,
+ "grad_norm": 0.19765593111515045,
+ "learning_rate": 0.0006,
+ "loss": 3.5398616790771484,
+ "step": 4520
+ },
+ {
+ "epoch": 62.796854521625164,
+ "grad_norm": 0.20502524077892303,
+ "learning_rate": 0.0006,
+ "loss": 3.5163207054138184,
+ "step": 4521
+ },
+ {
+ "epoch": 62.81083442551333,
+ "grad_norm": 0.20211154222488403,
+ "learning_rate": 0.0006,
+ "loss": 3.5164661407470703,
+ "step": 4522
+ },
+ {
+ "epoch": 62.824814329401484,
+ "grad_norm": 0.19798780977725983,
+ "learning_rate": 0.0006,
+ "loss": 3.533470869064331,
+ "step": 4523
+ },
+ {
+ "epoch": 62.83879423328965,
+ "grad_norm": 0.21921277046203613,
+ "learning_rate": 0.0006,
+ "loss": 3.532498598098755,
+ "step": 4524
+ },
+ {
+ "epoch": 62.8527741371778,
+ "grad_norm": 0.2352060228586197,
+ "learning_rate": 0.0006,
+ "loss": 3.5674972534179688,
+ "step": 4525
+ },
+ {
+ "epoch": 62.86675404106597,
+ "grad_norm": 0.21286381781101227,
+ "learning_rate": 0.0006,
+ "loss": 3.508051872253418,
+ "step": 4526
+ },
+ {
+ "epoch": 62.88073394495413,
+ "grad_norm": 0.21557490527629852,
+ "learning_rate": 0.0006,
+ "loss": 3.5300607681274414,
+ "step": 4527
+ },
+ {
+ "epoch": 62.89471384884229,
+ "grad_norm": 0.23020988702774048,
+ "learning_rate": 0.0006,
+ "loss": 3.508237361907959,
+ "step": 4528
+ },
+ {
+ "epoch": 62.90869375273045,
+ "grad_norm": 0.26428425312042236,
+ "learning_rate": 0.0006,
+ "loss": 3.52371883392334,
+ "step": 4529
+ },
+ {
+ "epoch": 62.92267365661861,
+ "grad_norm": 0.2568773925304413,
+ "learning_rate": 0.0006,
+ "loss": 3.5371956825256348,
+ "step": 4530
+ },
+ {
+ "epoch": 62.93665356050677,
+ "grad_norm": 0.2216598093509674,
+ "learning_rate": 0.0006,
+ "loss": 3.5286736488342285,
+ "step": 4531
+ },
+ {
+ "epoch": 62.95063346439493,
+ "grad_norm": 0.23094940185546875,
+ "learning_rate": 0.0006,
+ "loss": 3.5389769077301025,
+ "step": 4532
+ },
+ {
+ "epoch": 62.964613368283096,
+ "grad_norm": 0.23469413816928864,
+ "learning_rate": 0.0006,
+ "loss": 3.546466588973999,
+ "step": 4533
+ },
+ {
+ "epoch": 62.97859327217125,
+ "grad_norm": 0.2289242148399353,
+ "learning_rate": 0.0006,
+ "loss": 3.565002679824829,
+ "step": 4534
+ },
+ {
+ "epoch": 62.992573176059416,
+ "grad_norm": 0.262317955493927,
+ "learning_rate": 0.0006,
+ "loss": 3.5388731956481934,
+ "step": 4535
+ },
+ {
+ "epoch": 63.0,
+ "grad_norm": 0.273183137178421,
+ "learning_rate": 0.0006,
+ "loss": 3.482903003692627,
+ "step": 4536
+ },
+ {
+ "epoch": 63.0,
+ "eval_loss": 3.973074436187744,
+ "eval_runtime": 45.5476,
+ "eval_samples_per_second": 53.614,
+ "eval_steps_per_second": 3.359,
+ "step": 4536
+ },
+ {
+ "epoch": 63.01397990388816,
+ "grad_norm": 0.22226323187351227,
+ "learning_rate": 0.0006,
+ "loss": 3.483798027038574,
+ "step": 4537
+ },
+ {
+ "epoch": 63.02795980777632,
+ "grad_norm": 0.24443542957305908,
+ "learning_rate": 0.0006,
+ "loss": 3.496903419494629,
+ "step": 4538
+ },
+ {
+ "epoch": 63.04193971166448,
+ "grad_norm": 0.2508153021335602,
+ "learning_rate": 0.0006,
+ "loss": 3.5234804153442383,
+ "step": 4539
+ },
+ {
+ "epoch": 63.05591961555265,
+ "grad_norm": 0.2610569894313812,
+ "learning_rate": 0.0006,
+ "loss": 3.502870798110962,
+ "step": 4540
+ },
+ {
+ "epoch": 63.0698995194408,
+ "grad_norm": 0.27980759739875793,
+ "learning_rate": 0.0006,
+ "loss": 3.50645112991333,
+ "step": 4541
+ },
+ {
+ "epoch": 63.083879423328966,
+ "grad_norm": 0.292883038520813,
+ "learning_rate": 0.0006,
+ "loss": 3.478863000869751,
+ "step": 4542
+ },
+ {
+ "epoch": 63.09785932721712,
+ "grad_norm": 0.2593323588371277,
+ "learning_rate": 0.0006,
+ "loss": 3.506967067718506,
+ "step": 4543
+ },
+ {
+ "epoch": 63.111839231105286,
+ "grad_norm": 0.23973147571086884,
+ "learning_rate": 0.0006,
+ "loss": 3.513401746749878,
+ "step": 4544
+ },
+ {
+ "epoch": 63.12581913499345,
+ "grad_norm": 0.22731348872184753,
+ "learning_rate": 0.0006,
+ "loss": 3.4880478382110596,
+ "step": 4545
+ },
+ {
+ "epoch": 63.139799038881605,
+ "grad_norm": 0.22627407312393188,
+ "learning_rate": 0.0006,
+ "loss": 3.4975132942199707,
+ "step": 4546
+ },
+ {
+ "epoch": 63.15377894276977,
+ "grad_norm": 0.25107741355895996,
+ "learning_rate": 0.0006,
+ "loss": 3.5068140029907227,
+ "step": 4547
+ },
+ {
+ "epoch": 63.16775884665793,
+ "grad_norm": 0.23031412065029144,
+ "learning_rate": 0.0006,
+ "loss": 3.515760898590088,
+ "step": 4548
+ },
+ {
+ "epoch": 63.18173875054609,
+ "grad_norm": 0.21028949320316315,
+ "learning_rate": 0.0006,
+ "loss": 3.521303415298462,
+ "step": 4549
+ },
+ {
+ "epoch": 63.19571865443425,
+ "grad_norm": 0.22366516292095184,
+ "learning_rate": 0.0006,
+ "loss": 3.5283193588256836,
+ "step": 4550
+ },
+ {
+ "epoch": 63.20969855832241,
+ "grad_norm": 0.2176598459482193,
+ "learning_rate": 0.0006,
+ "loss": 3.490306854248047,
+ "step": 4551
+ },
+ {
+ "epoch": 63.22367846221057,
+ "grad_norm": 0.20985916256904602,
+ "learning_rate": 0.0006,
+ "loss": 3.5335614681243896,
+ "step": 4552
+ },
+ {
+ "epoch": 63.237658366098735,
+ "grad_norm": 0.2085118442773819,
+ "learning_rate": 0.0006,
+ "loss": 3.5108132362365723,
+ "step": 4553
+ },
+ {
+ "epoch": 63.25163826998689,
+ "grad_norm": 0.22644028067588806,
+ "learning_rate": 0.0006,
+ "loss": 3.4813215732574463,
+ "step": 4554
+ },
+ {
+ "epoch": 63.265618173875055,
+ "grad_norm": 0.21942120790481567,
+ "learning_rate": 0.0006,
+ "loss": 3.5310909748077393,
+ "step": 4555
+ },
+ {
+ "epoch": 63.27959807776322,
+ "grad_norm": 0.2335938662290573,
+ "learning_rate": 0.0006,
+ "loss": 3.530893564224243,
+ "step": 4556
+ },
+ {
+ "epoch": 63.293577981651374,
+ "grad_norm": 0.2409360110759735,
+ "learning_rate": 0.0006,
+ "loss": 3.5301408767700195,
+ "step": 4557
+ },
+ {
+ "epoch": 63.30755788553954,
+ "grad_norm": 0.2354922890663147,
+ "learning_rate": 0.0006,
+ "loss": 3.5211031436920166,
+ "step": 4558
+ },
+ {
+ "epoch": 63.3215377894277,
+ "grad_norm": 0.23376664519309998,
+ "learning_rate": 0.0006,
+ "loss": 3.538367509841919,
+ "step": 4559
+ },
+ {
+ "epoch": 63.33551769331586,
+ "grad_norm": 0.25319674611091614,
+ "learning_rate": 0.0006,
+ "loss": 3.494905471801758,
+ "step": 4560
+ },
+ {
+ "epoch": 63.34949759720402,
+ "grad_norm": 0.24088945984840393,
+ "learning_rate": 0.0006,
+ "loss": 3.5189433097839355,
+ "step": 4561
+ },
+ {
+ "epoch": 63.36347750109218,
+ "grad_norm": 0.2373911589384079,
+ "learning_rate": 0.0006,
+ "loss": 3.4956908226013184,
+ "step": 4562
+ },
+ {
+ "epoch": 63.37745740498034,
+ "grad_norm": 0.2590023875236511,
+ "learning_rate": 0.0006,
+ "loss": 3.511784076690674,
+ "step": 4563
+ },
+ {
+ "epoch": 63.391437308868504,
+ "grad_norm": 0.2600874900817871,
+ "learning_rate": 0.0006,
+ "loss": 3.478942394256592,
+ "step": 4564
+ },
+ {
+ "epoch": 63.40541721275666,
+ "grad_norm": 0.24018031358718872,
+ "learning_rate": 0.0006,
+ "loss": 3.521773338317871,
+ "step": 4565
+ },
+ {
+ "epoch": 63.419397116644824,
+ "grad_norm": 0.2552972435951233,
+ "learning_rate": 0.0006,
+ "loss": 3.4893441200256348,
+ "step": 4566
+ },
+ {
+ "epoch": 63.43337702053299,
+ "grad_norm": 0.26195958256721497,
+ "learning_rate": 0.0006,
+ "loss": 3.5366687774658203,
+ "step": 4567
+ },
+ {
+ "epoch": 63.44735692442114,
+ "grad_norm": 0.24390678107738495,
+ "learning_rate": 0.0006,
+ "loss": 3.4948301315307617,
+ "step": 4568
+ },
+ {
+ "epoch": 63.46133682830931,
+ "grad_norm": 0.21185952425003052,
+ "learning_rate": 0.0006,
+ "loss": 3.486267566680908,
+ "step": 4569
+ },
+ {
+ "epoch": 63.47531673219746,
+ "grad_norm": 0.21932153403759003,
+ "learning_rate": 0.0006,
+ "loss": 3.499481201171875,
+ "step": 4570
+ },
+ {
+ "epoch": 63.489296636085626,
+ "grad_norm": 0.22503717243671417,
+ "learning_rate": 0.0006,
+ "loss": 3.4932126998901367,
+ "step": 4571
+ },
+ {
+ "epoch": 63.50327653997379,
+ "grad_norm": 0.23853568732738495,
+ "learning_rate": 0.0006,
+ "loss": 3.4893674850463867,
+ "step": 4572
+ },
+ {
+ "epoch": 63.517256443861946,
+ "grad_norm": 0.2531817853450775,
+ "learning_rate": 0.0006,
+ "loss": 3.5391907691955566,
+ "step": 4573
+ },
+ {
+ "epoch": 63.53123634775011,
+ "grad_norm": 0.23776786029338837,
+ "learning_rate": 0.0006,
+ "loss": 3.5097427368164062,
+ "step": 4574
+ },
+ {
+ "epoch": 63.54521625163827,
+ "grad_norm": 0.24308739602565765,
+ "learning_rate": 0.0006,
+ "loss": 3.4988107681274414,
+ "step": 4575
+ },
+ {
+ "epoch": 63.55919615552643,
+ "grad_norm": 0.24214281141757965,
+ "learning_rate": 0.0006,
+ "loss": 3.506901502609253,
+ "step": 4576
+ },
+ {
+ "epoch": 63.57317605941459,
+ "grad_norm": 0.21378614008426666,
+ "learning_rate": 0.0006,
+ "loss": 3.54103684425354,
+ "step": 4577
+ },
+ {
+ "epoch": 63.58715596330275,
+ "grad_norm": 0.21135152876377106,
+ "learning_rate": 0.0006,
+ "loss": 3.534852981567383,
+ "step": 4578
+ },
+ {
+ "epoch": 63.60113586719091,
+ "grad_norm": 0.2335089147090912,
+ "learning_rate": 0.0006,
+ "loss": 3.542457342147827,
+ "step": 4579
+ },
+ {
+ "epoch": 63.615115771079076,
+ "grad_norm": 0.23693214356899261,
+ "learning_rate": 0.0006,
+ "loss": 3.4781997203826904,
+ "step": 4580
+ },
+ {
+ "epoch": 63.62909567496723,
+ "grad_norm": 0.21237023174762726,
+ "learning_rate": 0.0006,
+ "loss": 3.4980621337890625,
+ "step": 4581
+ },
+ {
+ "epoch": 63.643075578855395,
+ "grad_norm": 0.20930461585521698,
+ "learning_rate": 0.0006,
+ "loss": 3.5177974700927734,
+ "step": 4582
+ },
+ {
+ "epoch": 63.65705548274356,
+ "grad_norm": 0.22565403580665588,
+ "learning_rate": 0.0006,
+ "loss": 3.5385828018188477,
+ "step": 4583
+ },
+ {
+ "epoch": 63.671035386631715,
+ "grad_norm": 0.22187408804893494,
+ "learning_rate": 0.0006,
+ "loss": 3.5461559295654297,
+ "step": 4584
+ },
+ {
+ "epoch": 63.68501529051988,
+ "grad_norm": 0.23496168851852417,
+ "learning_rate": 0.0006,
+ "loss": 3.526822090148926,
+ "step": 4585
+ },
+ {
+ "epoch": 63.69899519440804,
+ "grad_norm": 0.2432301938533783,
+ "learning_rate": 0.0006,
+ "loss": 3.5248091220855713,
+ "step": 4586
+ },
+ {
+ "epoch": 63.7129750982962,
+ "grad_norm": 0.22797444462776184,
+ "learning_rate": 0.0006,
+ "loss": 3.5276098251342773,
+ "step": 4587
+ },
+ {
+ "epoch": 63.72695500218436,
+ "grad_norm": 0.2332911491394043,
+ "learning_rate": 0.0006,
+ "loss": 3.5454764366149902,
+ "step": 4588
+ },
+ {
+ "epoch": 63.74093490607252,
+ "grad_norm": 0.23016804456710815,
+ "learning_rate": 0.0006,
+ "loss": 3.519209384918213,
+ "step": 4589
+ },
+ {
+ "epoch": 63.75491480996068,
+ "grad_norm": 0.2160855233669281,
+ "learning_rate": 0.0006,
+ "loss": 3.536961317062378,
+ "step": 4590
+ },
+ {
+ "epoch": 63.768894713848844,
+ "grad_norm": 0.25935620069503784,
+ "learning_rate": 0.0006,
+ "loss": 3.5653820037841797,
+ "step": 4591
+ },
+ {
+ "epoch": 63.782874617737,
+ "grad_norm": 0.26625221967697144,
+ "learning_rate": 0.0006,
+ "loss": 3.5492172241210938,
+ "step": 4592
+ },
+ {
+ "epoch": 63.796854521625164,
+ "grad_norm": 0.25456854701042175,
+ "learning_rate": 0.0006,
+ "loss": 3.516575336456299,
+ "step": 4593
+ },
+ {
+ "epoch": 63.81083442551333,
+ "grad_norm": 0.26114824414253235,
+ "learning_rate": 0.0006,
+ "loss": 3.5429139137268066,
+ "step": 4594
+ },
+ {
+ "epoch": 63.824814329401484,
+ "grad_norm": 0.27836596965789795,
+ "learning_rate": 0.0006,
+ "loss": 3.5567727088928223,
+ "step": 4595
+ },
+ {
+ "epoch": 63.83879423328965,
+ "grad_norm": 0.2674464285373688,
+ "learning_rate": 0.0006,
+ "loss": 3.5093564987182617,
+ "step": 4596
+ },
+ {
+ "epoch": 63.8527741371778,
+ "grad_norm": 0.27393433451652527,
+ "learning_rate": 0.0006,
+ "loss": 3.5500247478485107,
+ "step": 4597
+ },
+ {
+ "epoch": 63.86675404106597,
+ "grad_norm": 0.30968594551086426,
+ "learning_rate": 0.0006,
+ "loss": 3.539085865020752,
+ "step": 4598
+ },
+ {
+ "epoch": 63.88073394495413,
+ "grad_norm": 0.279060423374176,
+ "learning_rate": 0.0006,
+ "loss": 3.517862319946289,
+ "step": 4599
+ },
+ {
+ "epoch": 63.89471384884229,
+ "grad_norm": 0.22436867654323578,
+ "learning_rate": 0.0006,
+ "loss": 3.5714004039764404,
+ "step": 4600
+ },
+ {
+ "epoch": 63.90869375273045,
+ "grad_norm": 0.22473126649856567,
+ "learning_rate": 0.0006,
+ "loss": 3.5212388038635254,
+ "step": 4601
+ },
+ {
+ "epoch": 63.92267365661861,
+ "grad_norm": 0.2802466154098511,
+ "learning_rate": 0.0006,
+ "loss": 3.5112411975860596,
+ "step": 4602
+ },
+ {
+ "epoch": 63.93665356050677,
+ "grad_norm": 0.29435867071151733,
+ "learning_rate": 0.0006,
+ "loss": 3.554875373840332,
+ "step": 4603
+ },
+ {
+ "epoch": 63.95063346439493,
+ "grad_norm": 0.24592025578022003,
+ "learning_rate": 0.0006,
+ "loss": 3.5593767166137695,
+ "step": 4604
+ },
+ {
+ "epoch": 63.964613368283096,
+ "grad_norm": 0.25918886065483093,
+ "learning_rate": 0.0006,
+ "loss": 3.5020017623901367,
+ "step": 4605
+ },
+ {
+ "epoch": 63.97859327217125,
+ "grad_norm": 0.24892419576644897,
+ "learning_rate": 0.0006,
+ "loss": 3.520456314086914,
+ "step": 4606
+ },
+ {
+ "epoch": 63.992573176059416,
+ "grad_norm": 0.24131213128566742,
+ "learning_rate": 0.0006,
+ "loss": 3.5576815605163574,
+ "step": 4607
+ },
+ {
+ "epoch": 64.0,
+ "grad_norm": 0.2348976731300354,
+ "learning_rate": 0.0006,
+ "loss": 3.524242401123047,
+ "step": 4608
+ },
+ {
+ "epoch": 64.0,
+ "eval_loss": 3.972158670425415,
+ "eval_runtime": 45.883,
+ "eval_samples_per_second": 53.222,
+ "eval_steps_per_second": 3.335,
+ "step": 4608
+ },
+ {
+ "epoch": 64.01397990388816,
+ "grad_norm": 0.24034473299980164,
+ "learning_rate": 0.0006,
+ "loss": 3.463156223297119,
+ "step": 4609
+ },
+ {
+ "epoch": 64.02795980777633,
+ "grad_norm": 0.28686341643333435,
+ "learning_rate": 0.0006,
+ "loss": 3.5137135982513428,
+ "step": 4610
+ },
+ {
+ "epoch": 64.04193971166448,
+ "grad_norm": 0.30763131380081177,
+ "learning_rate": 0.0006,
+ "loss": 3.490610361099243,
+ "step": 4611
+ },
+ {
+ "epoch": 64.05591961555264,
+ "grad_norm": 0.2775363624095917,
+ "learning_rate": 0.0006,
+ "loss": 3.516378879547119,
+ "step": 4612
+ },
+ {
+ "epoch": 64.06989951944081,
+ "grad_norm": 0.2643020749092102,
+ "learning_rate": 0.0006,
+ "loss": 3.511389970779419,
+ "step": 4613
+ },
+ {
+ "epoch": 64.08387942332897,
+ "grad_norm": 0.2859032452106476,
+ "learning_rate": 0.0006,
+ "loss": 3.5125572681427,
+ "step": 4614
+ },
+ {
+ "epoch": 64.09785932721712,
+ "grad_norm": 0.28378766775131226,
+ "learning_rate": 0.0006,
+ "loss": 3.4953627586364746,
+ "step": 4615
+ },
+ {
+ "epoch": 64.1118392311053,
+ "grad_norm": 0.2809223234653473,
+ "learning_rate": 0.0006,
+ "loss": 3.5114667415618896,
+ "step": 4616
+ },
+ {
+ "epoch": 64.12581913499345,
+ "grad_norm": 0.251823753118515,
+ "learning_rate": 0.0006,
+ "loss": 3.529876232147217,
+ "step": 4617
+ },
+ {
+ "epoch": 64.1397990388816,
+ "grad_norm": 0.236602321267128,
+ "learning_rate": 0.0006,
+ "loss": 3.5067150592803955,
+ "step": 4618
+ },
+ {
+ "epoch": 64.15377894276976,
+ "grad_norm": 0.2317773550748825,
+ "learning_rate": 0.0006,
+ "loss": 3.5166091918945312,
+ "step": 4619
+ },
+ {
+ "epoch": 64.16775884665793,
+ "grad_norm": 0.2237853854894638,
+ "learning_rate": 0.0006,
+ "loss": 3.492464065551758,
+ "step": 4620
+ },
+ {
+ "epoch": 64.18173875054609,
+ "grad_norm": 0.22309459745883942,
+ "learning_rate": 0.0006,
+ "loss": 3.4892983436584473,
+ "step": 4621
+ },
+ {
+ "epoch": 64.19571865443424,
+ "grad_norm": 0.21838971972465515,
+ "learning_rate": 0.0006,
+ "loss": 3.528764486312866,
+ "step": 4622
+ },
+ {
+ "epoch": 64.20969855832242,
+ "grad_norm": 0.22414161264896393,
+ "learning_rate": 0.0006,
+ "loss": 3.506270170211792,
+ "step": 4623
+ },
+ {
+ "epoch": 64.22367846221057,
+ "grad_norm": 0.22375065088272095,
+ "learning_rate": 0.0006,
+ "loss": 3.4844071865081787,
+ "step": 4624
+ },
+ {
+ "epoch": 64.23765836609873,
+ "grad_norm": 0.2091676890850067,
+ "learning_rate": 0.0006,
+ "loss": 3.4983415603637695,
+ "step": 4625
+ },
+ {
+ "epoch": 64.2516382699869,
+ "grad_norm": 0.22184209525585175,
+ "learning_rate": 0.0006,
+ "loss": 3.4846835136413574,
+ "step": 4626
+ },
+ {
+ "epoch": 64.26561817387505,
+ "grad_norm": 0.21549198031425476,
+ "learning_rate": 0.0006,
+ "loss": 3.4933011531829834,
+ "step": 4627
+ },
+ {
+ "epoch": 64.27959807776321,
+ "grad_norm": 0.21613609790802002,
+ "learning_rate": 0.0006,
+ "loss": 3.523514986038208,
+ "step": 4628
+ },
+ {
+ "epoch": 64.29357798165138,
+ "grad_norm": 0.22394488751888275,
+ "learning_rate": 0.0006,
+ "loss": 3.512820243835449,
+ "step": 4629
+ },
+ {
+ "epoch": 64.30755788553954,
+ "grad_norm": 0.22381016612052917,
+ "learning_rate": 0.0006,
+ "loss": 3.4967026710510254,
+ "step": 4630
+ },
+ {
+ "epoch": 64.3215377894277,
+ "grad_norm": 0.22533059120178223,
+ "learning_rate": 0.0006,
+ "loss": 3.5051097869873047,
+ "step": 4631
+ },
+ {
+ "epoch": 64.33551769331586,
+ "grad_norm": 0.23043590784072876,
+ "learning_rate": 0.0006,
+ "loss": 3.4784820079803467,
+ "step": 4632
+ },
+ {
+ "epoch": 64.34949759720402,
+ "grad_norm": 0.20840506255626678,
+ "learning_rate": 0.0006,
+ "loss": 3.496629238128662,
+ "step": 4633
+ },
+ {
+ "epoch": 64.36347750109218,
+ "grad_norm": 0.20293036103248596,
+ "learning_rate": 0.0006,
+ "loss": 3.500199317932129,
+ "step": 4634
+ },
+ {
+ "epoch": 64.37745740498035,
+ "grad_norm": 0.20510733127593994,
+ "learning_rate": 0.0006,
+ "loss": 3.4943113327026367,
+ "step": 4635
+ },
+ {
+ "epoch": 64.3914373088685,
+ "grad_norm": 0.21207642555236816,
+ "learning_rate": 0.0006,
+ "loss": 3.5024590492248535,
+ "step": 4636
+ },
+ {
+ "epoch": 64.40541721275666,
+ "grad_norm": 0.19878660142421722,
+ "learning_rate": 0.0006,
+ "loss": 3.5065855979919434,
+ "step": 4637
+ },
+ {
+ "epoch": 64.41939711664482,
+ "grad_norm": 0.22502431273460388,
+ "learning_rate": 0.0006,
+ "loss": 3.527764081954956,
+ "step": 4638
+ },
+ {
+ "epoch": 64.43337702053299,
+ "grad_norm": 0.2167922705411911,
+ "learning_rate": 0.0006,
+ "loss": 3.5075361728668213,
+ "step": 4639
+ },
+ {
+ "epoch": 64.44735692442114,
+ "grad_norm": 0.21200154721736908,
+ "learning_rate": 0.0006,
+ "loss": 3.5339698791503906,
+ "step": 4640
+ },
+ {
+ "epoch": 64.4613368283093,
+ "grad_norm": 0.22495608031749725,
+ "learning_rate": 0.0006,
+ "loss": 3.5342869758605957,
+ "step": 4641
+ },
+ {
+ "epoch": 64.47531673219747,
+ "grad_norm": 0.21426217257976532,
+ "learning_rate": 0.0006,
+ "loss": 3.5065689086914062,
+ "step": 4642
+ },
+ {
+ "epoch": 64.48929663608563,
+ "grad_norm": 0.19980023801326752,
+ "learning_rate": 0.0006,
+ "loss": 3.508183002471924,
+ "step": 4643
+ },
+ {
+ "epoch": 64.50327653997378,
+ "grad_norm": 0.2054566591978073,
+ "learning_rate": 0.0006,
+ "loss": 3.5098650455474854,
+ "step": 4644
+ },
+ {
+ "epoch": 64.51725644386195,
+ "grad_norm": 0.2038603276014328,
+ "learning_rate": 0.0006,
+ "loss": 3.517388105392456,
+ "step": 4645
+ },
+ {
+ "epoch": 64.53123634775011,
+ "grad_norm": 0.22438357770442963,
+ "learning_rate": 0.0006,
+ "loss": 3.5215954780578613,
+ "step": 4646
+ },
+ {
+ "epoch": 64.54521625163827,
+ "grad_norm": 0.23507612943649292,
+ "learning_rate": 0.0006,
+ "loss": 3.488262176513672,
+ "step": 4647
+ },
+ {
+ "epoch": 64.55919615552644,
+ "grad_norm": 0.21669664978981018,
+ "learning_rate": 0.0006,
+ "loss": 3.4945027828216553,
+ "step": 4648
+ },
+ {
+ "epoch": 64.57317605941459,
+ "grad_norm": 0.20035886764526367,
+ "learning_rate": 0.0006,
+ "loss": 3.516415596008301,
+ "step": 4649
+ },
+ {
+ "epoch": 64.58715596330275,
+ "grad_norm": 0.21818110346794128,
+ "learning_rate": 0.0006,
+ "loss": 3.4944982528686523,
+ "step": 4650
+ },
+ {
+ "epoch": 64.60113586719092,
+ "grad_norm": 0.20609644055366516,
+ "learning_rate": 0.0006,
+ "loss": 3.4914844036102295,
+ "step": 4651
+ },
+ {
+ "epoch": 64.61511577107908,
+ "grad_norm": 0.21921353042125702,
+ "learning_rate": 0.0006,
+ "loss": 3.5292391777038574,
+ "step": 4652
+ },
+ {
+ "epoch": 64.62909567496723,
+ "grad_norm": 0.23570363223552704,
+ "learning_rate": 0.0006,
+ "loss": 3.5353617668151855,
+ "step": 4653
+ },
+ {
+ "epoch": 64.6430755788554,
+ "grad_norm": 0.20933061838150024,
+ "learning_rate": 0.0006,
+ "loss": 3.524240016937256,
+ "step": 4654
+ },
+ {
+ "epoch": 64.65705548274356,
+ "grad_norm": 0.22739441692829132,
+ "learning_rate": 0.0006,
+ "loss": 3.529047966003418,
+ "step": 4655
+ },
+ {
+ "epoch": 64.67103538663171,
+ "grad_norm": 0.22208894789218903,
+ "learning_rate": 0.0006,
+ "loss": 3.5492024421691895,
+ "step": 4656
+ },
+ {
+ "epoch": 64.68501529051987,
+ "grad_norm": 0.23031534254550934,
+ "learning_rate": 0.0006,
+ "loss": 3.532979726791382,
+ "step": 4657
+ },
+ {
+ "epoch": 64.69899519440804,
+ "grad_norm": 0.25316348671913147,
+ "learning_rate": 0.0006,
+ "loss": 3.5105819702148438,
+ "step": 4658
+ },
+ {
+ "epoch": 64.7129750982962,
+ "grad_norm": 0.23601582646369934,
+ "learning_rate": 0.0006,
+ "loss": 3.5270726680755615,
+ "step": 4659
+ },
+ {
+ "epoch": 64.72695500218435,
+ "grad_norm": 0.20309361815452576,
+ "learning_rate": 0.0006,
+ "loss": 3.5072035789489746,
+ "step": 4660
+ },
+ {
+ "epoch": 64.74093490607252,
+ "grad_norm": 0.21525762975215912,
+ "learning_rate": 0.0006,
+ "loss": 3.531649112701416,
+ "step": 4661
+ },
+ {
+ "epoch": 64.75491480996068,
+ "grad_norm": 0.2262735813856125,
+ "learning_rate": 0.0006,
+ "loss": 3.5053927898406982,
+ "step": 4662
+ },
+ {
+ "epoch": 64.76889471384884,
+ "grad_norm": 0.2223973125219345,
+ "learning_rate": 0.0006,
+ "loss": 3.5400562286376953,
+ "step": 4663
+ },
+ {
+ "epoch": 64.78287461773701,
+ "grad_norm": 0.22822168469429016,
+ "learning_rate": 0.0006,
+ "loss": 3.502312421798706,
+ "step": 4664
+ },
+ {
+ "epoch": 64.79685452162516,
+ "grad_norm": 0.2337028533220291,
+ "learning_rate": 0.0006,
+ "loss": 3.524888038635254,
+ "step": 4665
+ },
+ {
+ "epoch": 64.81083442551332,
+ "grad_norm": 0.22423268854618073,
+ "learning_rate": 0.0006,
+ "loss": 3.5380213260650635,
+ "step": 4666
+ },
+ {
+ "epoch": 64.82481432940149,
+ "grad_norm": 0.21429643034934998,
+ "learning_rate": 0.0006,
+ "loss": 3.5499157905578613,
+ "step": 4667
+ },
+ {
+ "epoch": 64.83879423328965,
+ "grad_norm": 0.22421850264072418,
+ "learning_rate": 0.0006,
+ "loss": 3.5034070014953613,
+ "step": 4668
+ },
+ {
+ "epoch": 64.8527741371778,
+ "grad_norm": 0.21886403858661652,
+ "learning_rate": 0.0006,
+ "loss": 3.5276694297790527,
+ "step": 4669
+ },
+ {
+ "epoch": 64.86675404106597,
+ "grad_norm": 0.2404339462518692,
+ "learning_rate": 0.0006,
+ "loss": 3.515219211578369,
+ "step": 4670
+ },
+ {
+ "epoch": 64.88073394495413,
+ "grad_norm": 0.2837470769882202,
+ "learning_rate": 0.0006,
+ "loss": 3.561008930206299,
+ "step": 4671
+ },
+ {
+ "epoch": 64.89471384884229,
+ "grad_norm": 0.3101402223110199,
+ "learning_rate": 0.0006,
+ "loss": 3.556626319885254,
+ "step": 4672
+ },
+ {
+ "epoch": 64.90869375273044,
+ "grad_norm": 0.30606821179389954,
+ "learning_rate": 0.0006,
+ "loss": 3.540271282196045,
+ "step": 4673
+ },
+ {
+ "epoch": 64.92267365661861,
+ "grad_norm": 0.2715052664279938,
+ "learning_rate": 0.0006,
+ "loss": 3.5128841400146484,
+ "step": 4674
+ },
+ {
+ "epoch": 64.93665356050677,
+ "grad_norm": 0.24061815440654755,
+ "learning_rate": 0.0006,
+ "loss": 3.554208278656006,
+ "step": 4675
+ },
+ {
+ "epoch": 64.95063346439493,
+ "grad_norm": 0.23540185391902924,
+ "learning_rate": 0.0006,
+ "loss": 3.544139862060547,
+ "step": 4676
+ },
+ {
+ "epoch": 64.9646133682831,
+ "grad_norm": 0.26172906160354614,
+ "learning_rate": 0.0006,
+ "loss": 3.567110061645508,
+ "step": 4677
+ },
+ {
+ "epoch": 64.97859327217125,
+ "grad_norm": 0.2766035795211792,
+ "learning_rate": 0.0006,
+ "loss": 3.494391918182373,
+ "step": 4678
+ },
+ {
+ "epoch": 64.99257317605941,
+ "grad_norm": 0.2400948703289032,
+ "learning_rate": 0.0006,
+ "loss": 3.5130133628845215,
+ "step": 4679
+ },
+ {
+ "epoch": 65.0,
+ "grad_norm": 0.24790917336940765,
+ "learning_rate": 0.0006,
+ "loss": 3.5481390953063965,
+ "step": 4680
+ },
+ {
+ "epoch": 65.0,
+ "eval_loss": 3.976747989654541,
+ "eval_runtime": 46.3575,
+ "eval_samples_per_second": 52.678,
+ "eval_steps_per_second": 3.3,
+ "step": 4680
+ },
+ {
+ "epoch": 65.01397990388816,
+ "grad_norm": 0.22275416553020477,
+ "learning_rate": 0.0006,
+ "loss": 3.4832773208618164,
+ "step": 4681
+ },
+ {
+ "epoch": 65.02795980777633,
+ "grad_norm": 0.23779742419719696,
+ "learning_rate": 0.0006,
+ "loss": 3.5049266815185547,
+ "step": 4682
+ },
+ {
+ "epoch": 65.04193971166448,
+ "grad_norm": 0.2394440770149231,
+ "learning_rate": 0.0006,
+ "loss": 3.5335357189178467,
+ "step": 4683
+ },
+ {
+ "epoch": 65.05591961555264,
+ "grad_norm": 0.22160623967647552,
+ "learning_rate": 0.0006,
+ "loss": 3.5066094398498535,
+ "step": 4684
+ },
+ {
+ "epoch": 65.06989951944081,
+ "grad_norm": 0.22387197613716125,
+ "learning_rate": 0.0006,
+ "loss": 3.474155902862549,
+ "step": 4685
+ },
+ {
+ "epoch": 65.08387942332897,
+ "grad_norm": 0.24355316162109375,
+ "learning_rate": 0.0006,
+ "loss": 3.4905145168304443,
+ "step": 4686
+ },
+ {
+ "epoch": 65.09785932721712,
+ "grad_norm": 0.25801026821136475,
+ "learning_rate": 0.0006,
+ "loss": 3.50339937210083,
+ "step": 4687
+ },
+ {
+ "epoch": 65.1118392311053,
+ "grad_norm": 0.26155906915664673,
+ "learning_rate": 0.0006,
+ "loss": 3.523623466491699,
+ "step": 4688
+ },
+ {
+ "epoch": 65.12581913499345,
+ "grad_norm": 0.2512831389904022,
+ "learning_rate": 0.0006,
+ "loss": 3.490898609161377,
+ "step": 4689
+ },
+ {
+ "epoch": 65.1397990388816,
+ "grad_norm": 0.25024810433387756,
+ "learning_rate": 0.0006,
+ "loss": 3.4742162227630615,
+ "step": 4690
+ },
+ {
+ "epoch": 65.15377894276976,
+ "grad_norm": 0.27639806270599365,
+ "learning_rate": 0.0006,
+ "loss": 3.503298282623291,
+ "step": 4691
+ },
+ {
+ "epoch": 65.16775884665793,
+ "grad_norm": 0.2543538510799408,
+ "learning_rate": 0.0006,
+ "loss": 3.4785704612731934,
+ "step": 4692
+ },
+ {
+ "epoch": 65.18173875054609,
+ "grad_norm": 0.24148274958133698,
+ "learning_rate": 0.0006,
+ "loss": 3.48526668548584,
+ "step": 4693
+ },
+ {
+ "epoch": 65.19571865443424,
+ "grad_norm": 0.2161206603050232,
+ "learning_rate": 0.0006,
+ "loss": 3.477449417114258,
+ "step": 4694
+ },
+ {
+ "epoch": 65.20969855832242,
+ "grad_norm": 0.21417468786239624,
+ "learning_rate": 0.0006,
+ "loss": 3.5010929107666016,
+ "step": 4695
+ },
+ {
+ "epoch": 65.22367846221057,
+ "grad_norm": 0.22810059785842896,
+ "learning_rate": 0.0006,
+ "loss": 3.4384589195251465,
+ "step": 4696
+ },
+ {
+ "epoch": 65.23765836609873,
+ "grad_norm": 0.23555037379264832,
+ "learning_rate": 0.0006,
+ "loss": 3.4912073612213135,
+ "step": 4697
+ },
+ {
+ "epoch": 65.2516382699869,
+ "grad_norm": 0.2628633975982666,
+ "learning_rate": 0.0006,
+ "loss": 3.4763574600219727,
+ "step": 4698
+ },
+ {
+ "epoch": 65.26561817387505,
+ "grad_norm": 0.2515856921672821,
+ "learning_rate": 0.0006,
+ "loss": 3.480222463607788,
+ "step": 4699
+ },
+ {
+ "epoch": 65.27959807776321,
+ "grad_norm": 0.19862835109233856,
+ "learning_rate": 0.0006,
+ "loss": 3.510263204574585,
+ "step": 4700
+ },
+ {
+ "epoch": 65.29357798165138,
+ "grad_norm": 0.22558043897151947,
+ "learning_rate": 0.0006,
+ "loss": 3.4952306747436523,
+ "step": 4701
+ },
+ {
+ "epoch": 65.30755788553954,
+ "grad_norm": 0.2351200133562088,
+ "learning_rate": 0.0006,
+ "loss": 3.5010221004486084,
+ "step": 4702
+ },
+ {
+ "epoch": 65.3215377894277,
+ "grad_norm": 0.21748903393745422,
+ "learning_rate": 0.0006,
+ "loss": 3.5186777114868164,
+ "step": 4703
+ },
+ {
+ "epoch": 65.33551769331586,
+ "grad_norm": 0.2073124349117279,
+ "learning_rate": 0.0006,
+ "loss": 3.5397891998291016,
+ "step": 4704
+ },
+ {
+ "epoch": 65.34949759720402,
+ "grad_norm": 0.1948464810848236,
+ "learning_rate": 0.0006,
+ "loss": 3.5413217544555664,
+ "step": 4705
+ },
+ {
+ "epoch": 65.36347750109218,
+ "grad_norm": 0.19741199910640717,
+ "learning_rate": 0.0006,
+ "loss": 3.515199899673462,
+ "step": 4706
+ },
+ {
+ "epoch": 65.37745740498035,
+ "grad_norm": 0.22518441081047058,
+ "learning_rate": 0.0006,
+ "loss": 3.512284278869629,
+ "step": 4707
+ },
+ {
+ "epoch": 65.3914373088685,
+ "grad_norm": 0.24368613958358765,
+ "learning_rate": 0.0006,
+ "loss": 3.528355121612549,
+ "step": 4708
+ },
+ {
+ "epoch": 65.40541721275666,
+ "grad_norm": 0.21857064962387085,
+ "learning_rate": 0.0006,
+ "loss": 3.494401454925537,
+ "step": 4709
+ },
+ {
+ "epoch": 65.41939711664482,
+ "grad_norm": 0.2199285924434662,
+ "learning_rate": 0.0006,
+ "loss": 3.49814772605896,
+ "step": 4710
+ },
+ {
+ "epoch": 65.43337702053299,
+ "grad_norm": 0.23801206052303314,
+ "learning_rate": 0.0006,
+ "loss": 3.4678444862365723,
+ "step": 4711
+ },
+ {
+ "epoch": 65.44735692442114,
+ "grad_norm": 0.231369748711586,
+ "learning_rate": 0.0006,
+ "loss": 3.501521587371826,
+ "step": 4712
+ },
+ {
+ "epoch": 65.4613368283093,
+ "grad_norm": 0.20447038114070892,
+ "learning_rate": 0.0006,
+ "loss": 3.508510112762451,
+ "step": 4713
+ },
+ {
+ "epoch": 65.47531673219747,
+ "grad_norm": 0.21331779658794403,
+ "learning_rate": 0.0006,
+ "loss": 3.498544692993164,
+ "step": 4714
+ },
+ {
+ "epoch": 65.48929663608563,
+ "grad_norm": 0.2365437150001526,
+ "learning_rate": 0.0006,
+ "loss": 3.4972000122070312,
+ "step": 4715
+ },
+ {
+ "epoch": 65.50327653997378,
+ "grad_norm": 0.2236112356185913,
+ "learning_rate": 0.0006,
+ "loss": 3.5397965908050537,
+ "step": 4716
+ },
+ {
+ "epoch": 65.51725644386195,
+ "grad_norm": 0.20595021545886993,
+ "learning_rate": 0.0006,
+ "loss": 3.532902717590332,
+ "step": 4717
+ },
+ {
+ "epoch": 65.53123634775011,
+ "grad_norm": 0.2043730616569519,
+ "learning_rate": 0.0006,
+ "loss": 3.5136585235595703,
+ "step": 4718
+ },
+ {
+ "epoch": 65.54521625163827,
+ "grad_norm": 0.21925127506256104,
+ "learning_rate": 0.0006,
+ "loss": 3.526590347290039,
+ "step": 4719
+ },
+ {
+ "epoch": 65.55919615552644,
+ "grad_norm": 0.21580299735069275,
+ "learning_rate": 0.0006,
+ "loss": 3.530301332473755,
+ "step": 4720
+ },
+ {
+ "epoch": 65.57317605941459,
+ "grad_norm": 0.2296830266714096,
+ "learning_rate": 0.0006,
+ "loss": 3.527580976486206,
+ "step": 4721
+ },
+ {
+ "epoch": 65.58715596330275,
+ "grad_norm": 0.21846120059490204,
+ "learning_rate": 0.0006,
+ "loss": 3.524075746536255,
+ "step": 4722
+ },
+ {
+ "epoch": 65.60113586719092,
+ "grad_norm": 0.19835807383060455,
+ "learning_rate": 0.0006,
+ "loss": 3.4560012817382812,
+ "step": 4723
+ },
+ {
+ "epoch": 65.61511577107908,
+ "grad_norm": 0.20501157641410828,
+ "learning_rate": 0.0006,
+ "loss": 3.508017063140869,
+ "step": 4724
+ },
+ {
+ "epoch": 65.62909567496723,
+ "grad_norm": 0.21347478032112122,
+ "learning_rate": 0.0006,
+ "loss": 3.5479536056518555,
+ "step": 4725
+ },
+ {
+ "epoch": 65.6430755788554,
+ "grad_norm": 0.19286541640758514,
+ "learning_rate": 0.0006,
+ "loss": 3.537360906600952,
+ "step": 4726
+ },
+ {
+ "epoch": 65.65705548274356,
+ "grad_norm": 0.19364185631275177,
+ "learning_rate": 0.0006,
+ "loss": 3.5186867713928223,
+ "step": 4727
+ },
+ {
+ "epoch": 65.67103538663171,
+ "grad_norm": 0.19047997891902924,
+ "learning_rate": 0.0006,
+ "loss": 3.5242767333984375,
+ "step": 4728
+ },
+ {
+ "epoch": 65.68501529051987,
+ "grad_norm": 0.19712361693382263,
+ "learning_rate": 0.0006,
+ "loss": 3.5176010131835938,
+ "step": 4729
+ },
+ {
+ "epoch": 65.69899519440804,
+ "grad_norm": 0.2034953087568283,
+ "learning_rate": 0.0006,
+ "loss": 3.510268211364746,
+ "step": 4730
+ },
+ {
+ "epoch": 65.7129750982962,
+ "grad_norm": 0.20022697746753693,
+ "learning_rate": 0.0006,
+ "loss": 3.53619647026062,
+ "step": 4731
+ },
+ {
+ "epoch": 65.72695500218435,
+ "grad_norm": 0.20698072016239166,
+ "learning_rate": 0.0006,
+ "loss": 3.5179615020751953,
+ "step": 4732
+ },
+ {
+ "epoch": 65.74093490607252,
+ "grad_norm": 0.2297508418560028,
+ "learning_rate": 0.0006,
+ "loss": 3.5308024883270264,
+ "step": 4733
+ },
+ {
+ "epoch": 65.75491480996068,
+ "grad_norm": 0.227255716919899,
+ "learning_rate": 0.0006,
+ "loss": 3.5443387031555176,
+ "step": 4734
+ },
+ {
+ "epoch": 65.76889471384884,
+ "grad_norm": 0.21772262454032898,
+ "learning_rate": 0.0006,
+ "loss": 3.52345871925354,
+ "step": 4735
+ },
+ {
+ "epoch": 65.78287461773701,
+ "grad_norm": 0.22124525904655457,
+ "learning_rate": 0.0006,
+ "loss": 3.5262577533721924,
+ "step": 4736
+ },
+ {
+ "epoch": 65.79685452162516,
+ "grad_norm": 0.22992224991321564,
+ "learning_rate": 0.0006,
+ "loss": 3.531507730484009,
+ "step": 4737
+ },
+ {
+ "epoch": 65.81083442551332,
+ "grad_norm": 0.24775296449661255,
+ "learning_rate": 0.0006,
+ "loss": 3.4781999588012695,
+ "step": 4738
+ },
+ {
+ "epoch": 65.82481432940149,
+ "grad_norm": 0.24917690455913544,
+ "learning_rate": 0.0006,
+ "loss": 3.5157413482666016,
+ "step": 4739
+ },
+ {
+ "epoch": 65.83879423328965,
+ "grad_norm": 0.23374824225902557,
+ "learning_rate": 0.0006,
+ "loss": 3.536634683609009,
+ "step": 4740
+ },
+ {
+ "epoch": 65.8527741371778,
+ "grad_norm": 0.25592541694641113,
+ "learning_rate": 0.0006,
+ "loss": 3.5343942642211914,
+ "step": 4741
+ },
+ {
+ "epoch": 65.86675404106597,
+ "grad_norm": 0.2698819935321808,
+ "learning_rate": 0.0006,
+ "loss": 3.4906277656555176,
+ "step": 4742
+ },
+ {
+ "epoch": 65.88073394495413,
+ "grad_norm": 0.2175036370754242,
+ "learning_rate": 0.0006,
+ "loss": 3.506230354309082,
+ "step": 4743
+ },
+ {
+ "epoch": 65.89471384884229,
+ "grad_norm": 0.22451810538768768,
+ "learning_rate": 0.0006,
+ "loss": 3.5139262676239014,
+ "step": 4744
+ },
+ {
+ "epoch": 65.90869375273044,
+ "grad_norm": 0.24293720722198486,
+ "learning_rate": 0.0006,
+ "loss": 3.528148651123047,
+ "step": 4745
+ },
+ {
+ "epoch": 65.92267365661861,
+ "grad_norm": 0.2138707935810089,
+ "learning_rate": 0.0006,
+ "loss": 3.516911029815674,
+ "step": 4746
+ },
+ {
+ "epoch": 65.93665356050677,
+ "grad_norm": 0.2216160148382187,
+ "learning_rate": 0.0006,
+ "loss": 3.540201187133789,
+ "step": 4747
+ },
+ {
+ "epoch": 65.95063346439493,
+ "grad_norm": 0.2276899367570877,
+ "learning_rate": 0.0006,
+ "loss": 3.525435447692871,
+ "step": 4748
+ },
+ {
+ "epoch": 65.9646133682831,
+ "grad_norm": 0.2441754788160324,
+ "learning_rate": 0.0006,
+ "loss": 3.5337369441986084,
+ "step": 4749
+ },
+ {
+ "epoch": 65.97859327217125,
+ "grad_norm": 0.2364634871482849,
+ "learning_rate": 0.0006,
+ "loss": 3.5289382934570312,
+ "step": 4750
+ },
+ {
+ "epoch": 65.99257317605941,
+ "grad_norm": 0.2322802096605301,
+ "learning_rate": 0.0006,
+ "loss": 3.519960403442383,
+ "step": 4751
+ },
+ {
+ "epoch": 66.0,
+ "grad_norm": 0.28910940885543823,
+ "learning_rate": 0.0006,
+ "loss": 3.535785436630249,
+ "step": 4752
+ },
+ {
+ "epoch": 66.0,
+ "eval_loss": 3.9755074977874756,
+ "eval_runtime": 44.9956,
+ "eval_samples_per_second": 54.272,
+ "eval_steps_per_second": 3.4,
+ "step": 4752
+ },
+ {
+ "epoch": 66.01397990388816,
+ "grad_norm": 0.2833491861820221,
+ "learning_rate": 0.0006,
+ "loss": 3.4532885551452637,
+ "step": 4753
+ },
+ {
+ "epoch": 66.02795980777633,
+ "grad_norm": 0.31011638045310974,
+ "learning_rate": 0.0006,
+ "loss": 3.5164999961853027,
+ "step": 4754
+ },
+ {
+ "epoch": 66.04193971166448,
+ "grad_norm": 0.34583768248558044,
+ "learning_rate": 0.0006,
+ "loss": 3.463331937789917,
+ "step": 4755
+ },
+ {
+ "epoch": 66.05591961555264,
+ "grad_norm": 0.3586544990539551,
+ "learning_rate": 0.0006,
+ "loss": 3.4739010334014893,
+ "step": 4756
+ },
+ {
+ "epoch": 66.06989951944081,
+ "grad_norm": 0.32337963581085205,
+ "learning_rate": 0.0006,
+ "loss": 3.5309596061706543,
+ "step": 4757
+ },
+ {
+ "epoch": 66.08387942332897,
+ "grad_norm": 0.3091002404689789,
+ "learning_rate": 0.0006,
+ "loss": 3.479280471801758,
+ "step": 4758
+ },
+ {
+ "epoch": 66.09785932721712,
+ "grad_norm": 0.29722821712493896,
+ "learning_rate": 0.0006,
+ "loss": 3.52632999420166,
+ "step": 4759
+ },
+ {
+ "epoch": 66.1118392311053,
+ "grad_norm": 0.2636614739894867,
+ "learning_rate": 0.0006,
+ "loss": 3.4953694343566895,
+ "step": 4760
+ },
+ {
+ "epoch": 66.12581913499345,
+ "grad_norm": 0.2646677494049072,
+ "learning_rate": 0.0006,
+ "loss": 3.519223213195801,
+ "step": 4761
+ },
+ {
+ "epoch": 66.1397990388816,
+ "grad_norm": 0.26999902725219727,
+ "learning_rate": 0.0006,
+ "loss": 3.500627040863037,
+ "step": 4762
+ },
+ {
+ "epoch": 66.15377894276976,
+ "grad_norm": 0.26489800214767456,
+ "learning_rate": 0.0006,
+ "loss": 3.486992120742798,
+ "step": 4763
+ },
+ {
+ "epoch": 66.16775884665793,
+ "grad_norm": 0.23870280385017395,
+ "learning_rate": 0.0006,
+ "loss": 3.5312767028808594,
+ "step": 4764
+ },
+ {
+ "epoch": 66.18173875054609,
+ "grad_norm": 0.260374516248703,
+ "learning_rate": 0.0006,
+ "loss": 3.529757499694824,
+ "step": 4765
+ },
+ {
+ "epoch": 66.19571865443424,
+ "grad_norm": 0.22300437092781067,
+ "learning_rate": 0.0006,
+ "loss": 3.534423351287842,
+ "step": 4766
+ },
+ {
+ "epoch": 66.20969855832242,
+ "grad_norm": 0.22216713428497314,
+ "learning_rate": 0.0006,
+ "loss": 3.4944376945495605,
+ "step": 4767
+ },
+ {
+ "epoch": 66.22367846221057,
+ "grad_norm": 0.22038567066192627,
+ "learning_rate": 0.0006,
+ "loss": 3.500737190246582,
+ "step": 4768
+ },
+ {
+ "epoch": 66.23765836609873,
+ "grad_norm": 0.23068127036094666,
+ "learning_rate": 0.0006,
+ "loss": 3.486678123474121,
+ "step": 4769
+ },
+ {
+ "epoch": 66.2516382699869,
+ "grad_norm": 0.22809696197509766,
+ "learning_rate": 0.0006,
+ "loss": 3.49131441116333,
+ "step": 4770
+ },
+ {
+ "epoch": 66.26561817387505,
+ "grad_norm": 0.2096482366323471,
+ "learning_rate": 0.0006,
+ "loss": 3.462193012237549,
+ "step": 4771
+ },
+ {
+ "epoch": 66.27959807776321,
+ "grad_norm": 0.20821219682693481,
+ "learning_rate": 0.0006,
+ "loss": 3.482736110687256,
+ "step": 4772
+ },
+ {
+ "epoch": 66.29357798165138,
+ "grad_norm": 0.20735417306423187,
+ "learning_rate": 0.0006,
+ "loss": 3.4810829162597656,
+ "step": 4773
+ },
+ {
+ "epoch": 66.30755788553954,
+ "grad_norm": 0.21598318219184875,
+ "learning_rate": 0.0006,
+ "loss": 3.5151000022888184,
+ "step": 4774
+ },
+ {
+ "epoch": 66.3215377894277,
+ "grad_norm": 0.20589035749435425,
+ "learning_rate": 0.0006,
+ "loss": 3.4938106536865234,
+ "step": 4775
+ },
+ {
+ "epoch": 66.33551769331586,
+ "grad_norm": 0.22494125366210938,
+ "learning_rate": 0.0006,
+ "loss": 3.4739134311676025,
+ "step": 4776
+ },
+ {
+ "epoch": 66.34949759720402,
+ "grad_norm": 0.24715618789196014,
+ "learning_rate": 0.0006,
+ "loss": 3.492598295211792,
+ "step": 4777
+ },
+ {
+ "epoch": 66.36347750109218,
+ "grad_norm": 0.26689210534095764,
+ "learning_rate": 0.0006,
+ "loss": 3.5183334350585938,
+ "step": 4778
+ },
+ {
+ "epoch": 66.37745740498035,
+ "grad_norm": 0.29018405079841614,
+ "learning_rate": 0.0006,
+ "loss": 3.4874320030212402,
+ "step": 4779
+ },
+ {
+ "epoch": 66.3914373088685,
+ "grad_norm": 0.2511773109436035,
+ "learning_rate": 0.0006,
+ "loss": 3.5105361938476562,
+ "step": 4780
+ },
+ {
+ "epoch": 66.40541721275666,
+ "grad_norm": 0.20808005332946777,
+ "learning_rate": 0.0006,
+ "loss": 3.4932327270507812,
+ "step": 4781
+ },
+ {
+ "epoch": 66.41939711664482,
+ "grad_norm": 0.21036715805530548,
+ "learning_rate": 0.0006,
+ "loss": 3.5223588943481445,
+ "step": 4782
+ },
+ {
+ "epoch": 66.43337702053299,
+ "grad_norm": 0.2151600569486618,
+ "learning_rate": 0.0006,
+ "loss": 3.491854190826416,
+ "step": 4783
+ },
+ {
+ "epoch": 66.44735692442114,
+ "grad_norm": 0.23702189326286316,
+ "learning_rate": 0.0006,
+ "loss": 3.4869368076324463,
+ "step": 4784
+ },
+ {
+ "epoch": 66.4613368283093,
+ "grad_norm": 0.23089149594306946,
+ "learning_rate": 0.0006,
+ "loss": 3.5014419555664062,
+ "step": 4785
+ },
+ {
+ "epoch": 66.47531673219747,
+ "grad_norm": 0.25527265667915344,
+ "learning_rate": 0.0006,
+ "loss": 3.5148048400878906,
+ "step": 4786
+ },
+ {
+ "epoch": 66.48929663608563,
+ "grad_norm": 0.2308386117219925,
+ "learning_rate": 0.0006,
+ "loss": 3.5196022987365723,
+ "step": 4787
+ },
+ {
+ "epoch": 66.50327653997378,
+ "grad_norm": 0.23467418551445007,
+ "learning_rate": 0.0006,
+ "loss": 3.478280544281006,
+ "step": 4788
+ },
+ {
+ "epoch": 66.51725644386195,
+ "grad_norm": 0.23607908189296722,
+ "learning_rate": 0.0006,
+ "loss": 3.4826481342315674,
+ "step": 4789
+ },
+ {
+ "epoch": 66.53123634775011,
+ "grad_norm": 0.255309522151947,
+ "learning_rate": 0.0006,
+ "loss": 3.498870849609375,
+ "step": 4790
+ },
+ {
+ "epoch": 66.54521625163827,
+ "grad_norm": 0.29246363043785095,
+ "learning_rate": 0.0006,
+ "loss": 3.544440269470215,
+ "step": 4791
+ },
+ {
+ "epoch": 66.55919615552644,
+ "grad_norm": 0.2658552825450897,
+ "learning_rate": 0.0006,
+ "loss": 3.4844512939453125,
+ "step": 4792
+ },
+ {
+ "epoch": 66.57317605941459,
+ "grad_norm": 0.23498542606830597,
+ "learning_rate": 0.0006,
+ "loss": 3.5411434173583984,
+ "step": 4793
+ },
+ {
+ "epoch": 66.58715596330275,
+ "grad_norm": 0.2616438567638397,
+ "learning_rate": 0.0006,
+ "loss": 3.501821994781494,
+ "step": 4794
+ },
+ {
+ "epoch": 66.60113586719092,
+ "grad_norm": 0.2577981650829315,
+ "learning_rate": 0.0006,
+ "loss": 3.519040584564209,
+ "step": 4795
+ },
+ {
+ "epoch": 66.61511577107908,
+ "grad_norm": 0.25896304845809937,
+ "learning_rate": 0.0006,
+ "loss": 3.514458656311035,
+ "step": 4796
+ },
+ {
+ "epoch": 66.62909567496723,
+ "grad_norm": 0.26136472821235657,
+ "learning_rate": 0.0006,
+ "loss": 3.5054283142089844,
+ "step": 4797
+ },
+ {
+ "epoch": 66.6430755788554,
+ "grad_norm": 0.2134191244840622,
+ "learning_rate": 0.0006,
+ "loss": 3.551358222961426,
+ "step": 4798
+ },
+ {
+ "epoch": 66.65705548274356,
+ "grad_norm": 0.20154543220996857,
+ "learning_rate": 0.0006,
+ "loss": 3.5363516807556152,
+ "step": 4799
+ },
+ {
+ "epoch": 66.67103538663171,
+ "grad_norm": 0.20807082951068878,
+ "learning_rate": 0.0006,
+ "loss": 3.4861817359924316,
+ "step": 4800
+ },
+ {
+ "epoch": 66.68501529051987,
+ "grad_norm": 0.22268050909042358,
+ "learning_rate": 0.0006,
+ "loss": 3.5229034423828125,
+ "step": 4801
+ },
+ {
+ "epoch": 66.69899519440804,
+ "grad_norm": 0.21031907200813293,
+ "learning_rate": 0.0006,
+ "loss": 3.499587059020996,
+ "step": 4802
+ },
+ {
+ "epoch": 66.7129750982962,
+ "grad_norm": 0.207321435213089,
+ "learning_rate": 0.0006,
+ "loss": 3.5246481895446777,
+ "step": 4803
+ },
+ {
+ "epoch": 66.72695500218435,
+ "grad_norm": 0.21961352229118347,
+ "learning_rate": 0.0006,
+ "loss": 3.5126147270202637,
+ "step": 4804
+ },
+ {
+ "epoch": 66.74093490607252,
+ "grad_norm": 0.2144167572259903,
+ "learning_rate": 0.0006,
+ "loss": 3.5319013595581055,
+ "step": 4805
+ },
+ {
+ "epoch": 66.75491480996068,
+ "grad_norm": 0.19109441339969635,
+ "learning_rate": 0.0006,
+ "loss": 3.5124895572662354,
+ "step": 4806
+ },
+ {
+ "epoch": 66.76889471384884,
+ "grad_norm": 0.20463025569915771,
+ "learning_rate": 0.0006,
+ "loss": 3.5368666648864746,
+ "step": 4807
+ },
+ {
+ "epoch": 66.78287461773701,
+ "grad_norm": 0.20978771150112152,
+ "learning_rate": 0.0006,
+ "loss": 3.5166687965393066,
+ "step": 4808
+ },
+ {
+ "epoch": 66.79685452162516,
+ "grad_norm": 0.2258925437927246,
+ "learning_rate": 0.0006,
+ "loss": 3.532341957092285,
+ "step": 4809
+ },
+ {
+ "epoch": 66.81083442551332,
+ "grad_norm": 0.21758350729942322,
+ "learning_rate": 0.0006,
+ "loss": 3.5155858993530273,
+ "step": 4810
+ },
+ {
+ "epoch": 66.82481432940149,
+ "grad_norm": 0.20124484598636627,
+ "learning_rate": 0.0006,
+ "loss": 3.491522789001465,
+ "step": 4811
+ },
+ {
+ "epoch": 66.83879423328965,
+ "grad_norm": 0.21627238392829895,
+ "learning_rate": 0.0006,
+ "loss": 3.5303220748901367,
+ "step": 4812
+ },
+ {
+ "epoch": 66.8527741371778,
+ "grad_norm": 0.21125555038452148,
+ "learning_rate": 0.0006,
+ "loss": 3.535466194152832,
+ "step": 4813
+ },
+ {
+ "epoch": 66.86675404106597,
+ "grad_norm": 0.2247028350830078,
+ "learning_rate": 0.0006,
+ "loss": 3.51188325881958,
+ "step": 4814
+ },
+ {
+ "epoch": 66.88073394495413,
+ "grad_norm": 0.21800914406776428,
+ "learning_rate": 0.0006,
+ "loss": 3.5084712505340576,
+ "step": 4815
+ },
+ {
+ "epoch": 66.89471384884229,
+ "grad_norm": 0.2118908166885376,
+ "learning_rate": 0.0006,
+ "loss": 3.5099692344665527,
+ "step": 4816
+ },
+ {
+ "epoch": 66.90869375273044,
+ "grad_norm": 0.22638460993766785,
+ "learning_rate": 0.0006,
+ "loss": 3.5099596977233887,
+ "step": 4817
+ },
+ {
+ "epoch": 66.92267365661861,
+ "grad_norm": 0.1987311840057373,
+ "learning_rate": 0.0006,
+ "loss": 3.5497078895568848,
+ "step": 4818
+ },
+ {
+ "epoch": 66.93665356050677,
+ "grad_norm": 0.21048952639102936,
+ "learning_rate": 0.0006,
+ "loss": 3.524364948272705,
+ "step": 4819
+ },
+ {
+ "epoch": 66.95063346439493,
+ "grad_norm": 0.21481701731681824,
+ "learning_rate": 0.0006,
+ "loss": 3.5121915340423584,
+ "step": 4820
+ },
+ {
+ "epoch": 66.9646133682831,
+ "grad_norm": 0.22060725092887878,
+ "learning_rate": 0.0006,
+ "loss": 3.5288822650909424,
+ "step": 4821
+ },
+ {
+ "epoch": 66.97859327217125,
+ "grad_norm": 0.22192992269992828,
+ "learning_rate": 0.0006,
+ "loss": 3.504401206970215,
+ "step": 4822
+ },
+ {
+ "epoch": 66.99257317605941,
+ "grad_norm": 0.21677598357200623,
+ "learning_rate": 0.0006,
+ "loss": 3.5447967052459717,
+ "step": 4823
+ },
+ {
+ "epoch": 67.0,
+ "grad_norm": 0.24961385130882263,
+ "learning_rate": 0.0006,
+ "loss": 3.4890012741088867,
+ "step": 4824
+ },
+ {
+ "epoch": 67.0,
+ "eval_loss": 3.9784040451049805,
+ "eval_runtime": 45.0843,
+ "eval_samples_per_second": 54.165,
+ "eval_steps_per_second": 3.394,
+ "step": 4824
+ },
+ {
+ "epoch": 67.01397990388816,
+ "grad_norm": 0.22992873191833496,
+ "learning_rate": 0.0006,
+ "loss": 3.470973491668701,
+ "step": 4825
+ },
+ {
+ "epoch": 67.02795980777633,
+ "grad_norm": 0.2189949005842209,
+ "learning_rate": 0.0006,
+ "loss": 3.4956774711608887,
+ "step": 4826
+ },
+ {
+ "epoch": 67.04193971166448,
+ "grad_norm": 0.22506096959114075,
+ "learning_rate": 0.0006,
+ "loss": 3.448911190032959,
+ "step": 4827
+ },
+ {
+ "epoch": 67.05591961555264,
+ "grad_norm": 0.2447187304496765,
+ "learning_rate": 0.0006,
+ "loss": 3.465512275695801,
+ "step": 4828
+ },
+ {
+ "epoch": 67.06989951944081,
+ "grad_norm": 0.27052751183509827,
+ "learning_rate": 0.0006,
+ "loss": 3.493760824203491,
+ "step": 4829
+ },
+ {
+ "epoch": 67.08387942332897,
+ "grad_norm": 0.29693296551704407,
+ "learning_rate": 0.0006,
+ "loss": 3.4922988414764404,
+ "step": 4830
+ },
+ {
+ "epoch": 67.09785932721712,
+ "grad_norm": 0.27461376786231995,
+ "learning_rate": 0.0006,
+ "loss": 3.4782471656799316,
+ "step": 4831
+ },
+ {
+ "epoch": 67.1118392311053,
+ "grad_norm": 0.21409225463867188,
+ "learning_rate": 0.0006,
+ "loss": 3.4636545181274414,
+ "step": 4832
+ },
+ {
+ "epoch": 67.12581913499345,
+ "grad_norm": 0.24362294375896454,
+ "learning_rate": 0.0006,
+ "loss": 3.4836316108703613,
+ "step": 4833
+ },
+ {
+ "epoch": 67.1397990388816,
+ "grad_norm": 0.3237941265106201,
+ "learning_rate": 0.0006,
+ "loss": 3.4853315353393555,
+ "step": 4834
+ },
+ {
+ "epoch": 67.15377894276976,
+ "grad_norm": 0.3138698935508728,
+ "learning_rate": 0.0006,
+ "loss": 3.5045557022094727,
+ "step": 4835
+ },
+ {
+ "epoch": 67.16775884665793,
+ "grad_norm": 0.24102728068828583,
+ "learning_rate": 0.0006,
+ "loss": 3.450237512588501,
+ "step": 4836
+ },
+ {
+ "epoch": 67.18173875054609,
+ "grad_norm": 0.22504228353500366,
+ "learning_rate": 0.0006,
+ "loss": 3.5141711235046387,
+ "step": 4837
+ },
+ {
+ "epoch": 67.19571865443424,
+ "grad_norm": 0.2226196974515915,
+ "learning_rate": 0.0006,
+ "loss": 3.4973597526550293,
+ "step": 4838
+ },
+ {
+ "epoch": 67.20969855832242,
+ "grad_norm": 0.23295332491397858,
+ "learning_rate": 0.0006,
+ "loss": 3.455085277557373,
+ "step": 4839
+ },
+ {
+ "epoch": 67.22367846221057,
+ "grad_norm": 0.24799001216888428,
+ "learning_rate": 0.0006,
+ "loss": 3.5016517639160156,
+ "step": 4840
+ },
+ {
+ "epoch": 67.23765836609873,
+ "grad_norm": 0.2431265115737915,
+ "learning_rate": 0.0006,
+ "loss": 3.5138516426086426,
+ "step": 4841
+ },
+ {
+ "epoch": 67.2516382699869,
+ "grad_norm": 0.22402037680149078,
+ "learning_rate": 0.0006,
+ "loss": 3.5154635906219482,
+ "step": 4842
+ },
+ {
+ "epoch": 67.26561817387505,
+ "grad_norm": 0.2097088098526001,
+ "learning_rate": 0.0006,
+ "loss": 3.512531280517578,
+ "step": 4843
+ },
+ {
+ "epoch": 67.27959807776321,
+ "grad_norm": 0.21303699910640717,
+ "learning_rate": 0.0006,
+ "loss": 3.489511728286743,
+ "step": 4844
+ },
+ {
+ "epoch": 67.29357798165138,
+ "grad_norm": 0.2164260894060135,
+ "learning_rate": 0.0006,
+ "loss": 3.521756172180176,
+ "step": 4845
+ },
+ {
+ "epoch": 67.30755788553954,
+ "grad_norm": 0.2179967612028122,
+ "learning_rate": 0.0006,
+ "loss": 3.4991297721862793,
+ "step": 4846
+ },
+ {
+ "epoch": 67.3215377894277,
+ "grad_norm": 0.21892501413822174,
+ "learning_rate": 0.0006,
+ "loss": 3.475011110305786,
+ "step": 4847
+ },
+ {
+ "epoch": 67.33551769331586,
+ "grad_norm": 0.2372686117887497,
+ "learning_rate": 0.0006,
+ "loss": 3.49537992477417,
+ "step": 4848
+ },
+ {
+ "epoch": 67.34949759720402,
+ "grad_norm": 0.24897949397563934,
+ "learning_rate": 0.0006,
+ "loss": 3.4762938022613525,
+ "step": 4849
+ },
+ {
+ "epoch": 67.36347750109218,
+ "grad_norm": 0.24987933039665222,
+ "learning_rate": 0.0006,
+ "loss": 3.511708974838257,
+ "step": 4850
+ },
+ {
+ "epoch": 67.37745740498035,
+ "grad_norm": 0.24062976241111755,
+ "learning_rate": 0.0006,
+ "loss": 3.4955873489379883,
+ "step": 4851
+ },
+ {
+ "epoch": 67.3914373088685,
+ "grad_norm": 0.2277272790670395,
+ "learning_rate": 0.0006,
+ "loss": 3.5036606788635254,
+ "step": 4852
+ },
+ {
+ "epoch": 67.40541721275666,
+ "grad_norm": 0.23996487259864807,
+ "learning_rate": 0.0006,
+ "loss": 3.515568971633911,
+ "step": 4853
+ },
+ {
+ "epoch": 67.41939711664482,
+ "grad_norm": 0.23224318027496338,
+ "learning_rate": 0.0006,
+ "loss": 3.4915125370025635,
+ "step": 4854
+ },
+ {
+ "epoch": 67.43337702053299,
+ "grad_norm": 0.21011298894882202,
+ "learning_rate": 0.0006,
+ "loss": 3.5076327323913574,
+ "step": 4855
+ },
+ {
+ "epoch": 67.44735692442114,
+ "grad_norm": 0.21975480020046234,
+ "learning_rate": 0.0006,
+ "loss": 3.4929163455963135,
+ "step": 4856
+ },
+ {
+ "epoch": 67.4613368283093,
+ "grad_norm": 0.21966299414634705,
+ "learning_rate": 0.0006,
+ "loss": 3.50154447555542,
+ "step": 4857
+ },
+ {
+ "epoch": 67.47531673219747,
+ "grad_norm": 0.2167058289051056,
+ "learning_rate": 0.0006,
+ "loss": 3.4866533279418945,
+ "step": 4858
+ },
+ {
+ "epoch": 67.48929663608563,
+ "grad_norm": 0.2072296291589737,
+ "learning_rate": 0.0006,
+ "loss": 3.506241798400879,
+ "step": 4859
+ },
+ {
+ "epoch": 67.50327653997378,
+ "grad_norm": 0.2358800321817398,
+ "learning_rate": 0.0006,
+ "loss": 3.51871919631958,
+ "step": 4860
+ },
+ {
+ "epoch": 67.51725644386195,
+ "grad_norm": 0.2841838598251343,
+ "learning_rate": 0.0006,
+ "loss": 3.531181812286377,
+ "step": 4861
+ },
+ {
+ "epoch": 67.53123634775011,
+ "grad_norm": 0.2744826078414917,
+ "learning_rate": 0.0006,
+ "loss": 3.4916810989379883,
+ "step": 4862
+ },
+ {
+ "epoch": 67.54521625163827,
+ "grad_norm": 0.229517862200737,
+ "learning_rate": 0.0006,
+ "loss": 3.522495746612549,
+ "step": 4863
+ },
+ {
+ "epoch": 67.55919615552644,
+ "grad_norm": 0.22933268547058105,
+ "learning_rate": 0.0006,
+ "loss": 3.522249698638916,
+ "step": 4864
+ },
+ {
+ "epoch": 67.57317605941459,
+ "grad_norm": 0.2578641176223755,
+ "learning_rate": 0.0006,
+ "loss": 3.497955799102783,
+ "step": 4865
+ },
+ {
+ "epoch": 67.58715596330275,
+ "grad_norm": 0.26098695397377014,
+ "learning_rate": 0.0006,
+ "loss": 3.508647918701172,
+ "step": 4866
+ },
+ {
+ "epoch": 67.60113586719092,
+ "grad_norm": 0.26429283618927,
+ "learning_rate": 0.0006,
+ "loss": 3.504948139190674,
+ "step": 4867
+ },
+ {
+ "epoch": 67.61511577107908,
+ "grad_norm": 0.2604367136955261,
+ "learning_rate": 0.0006,
+ "loss": 3.529656410217285,
+ "step": 4868
+ },
+ {
+ "epoch": 67.62909567496723,
+ "grad_norm": 0.26351016759872437,
+ "learning_rate": 0.0006,
+ "loss": 3.497729778289795,
+ "step": 4869
+ },
+ {
+ "epoch": 67.6430755788554,
+ "grad_norm": 0.23902031779289246,
+ "learning_rate": 0.0006,
+ "loss": 3.5174601078033447,
+ "step": 4870
+ },
+ {
+ "epoch": 67.65705548274356,
+ "grad_norm": 0.2439061552286148,
+ "learning_rate": 0.0006,
+ "loss": 3.472304344177246,
+ "step": 4871
+ },
+ {
+ "epoch": 67.67103538663171,
+ "grad_norm": 0.28729668259620667,
+ "learning_rate": 0.0006,
+ "loss": 3.4945883750915527,
+ "step": 4872
+ },
+ {
+ "epoch": 67.68501529051987,
+ "grad_norm": 0.2690763771533966,
+ "learning_rate": 0.0006,
+ "loss": 3.524843215942383,
+ "step": 4873
+ },
+ {
+ "epoch": 67.69899519440804,
+ "grad_norm": 0.24424311518669128,
+ "learning_rate": 0.0006,
+ "loss": 3.5337445735931396,
+ "step": 4874
+ },
+ {
+ "epoch": 67.7129750982962,
+ "grad_norm": 0.25736868381500244,
+ "learning_rate": 0.0006,
+ "loss": 3.51664400100708,
+ "step": 4875
+ },
+ {
+ "epoch": 67.72695500218435,
+ "grad_norm": 0.24504248797893524,
+ "learning_rate": 0.0006,
+ "loss": 3.5089268684387207,
+ "step": 4876
+ },
+ {
+ "epoch": 67.74093490607252,
+ "grad_norm": 0.24296091496944427,
+ "learning_rate": 0.0006,
+ "loss": 3.5506460666656494,
+ "step": 4877
+ },
+ {
+ "epoch": 67.75491480996068,
+ "grad_norm": 0.24984019994735718,
+ "learning_rate": 0.0006,
+ "loss": 3.5290684700012207,
+ "step": 4878
+ },
+ {
+ "epoch": 67.76889471384884,
+ "grad_norm": 0.23878677189350128,
+ "learning_rate": 0.0006,
+ "loss": 3.522343635559082,
+ "step": 4879
+ },
+ {
+ "epoch": 67.78287461773701,
+ "grad_norm": 0.2275245040655136,
+ "learning_rate": 0.0006,
+ "loss": 3.5218796730041504,
+ "step": 4880
+ },
+ {
+ "epoch": 67.79685452162516,
+ "grad_norm": 0.21045760810375214,
+ "learning_rate": 0.0006,
+ "loss": 3.512430191040039,
+ "step": 4881
+ },
+ {
+ "epoch": 67.81083442551332,
+ "grad_norm": 0.21902696788311005,
+ "learning_rate": 0.0006,
+ "loss": 3.537611484527588,
+ "step": 4882
+ },
+ {
+ "epoch": 67.82481432940149,
+ "grad_norm": 0.20757564902305603,
+ "learning_rate": 0.0006,
+ "loss": 3.470278263092041,
+ "step": 4883
+ },
+ {
+ "epoch": 67.83879423328965,
+ "grad_norm": 0.22352434694766998,
+ "learning_rate": 0.0006,
+ "loss": 3.4816718101501465,
+ "step": 4884
+ },
+ {
+ "epoch": 67.8527741371778,
+ "grad_norm": 0.20459680259227753,
+ "learning_rate": 0.0006,
+ "loss": 3.508671998977661,
+ "step": 4885
+ },
+ {
+ "epoch": 67.86675404106597,
+ "grad_norm": 0.20641672611236572,
+ "learning_rate": 0.0006,
+ "loss": 3.500471591949463,
+ "step": 4886
+ },
+ {
+ "epoch": 67.88073394495413,
+ "grad_norm": 0.20340596139431,
+ "learning_rate": 0.0006,
+ "loss": 3.5282673835754395,
+ "step": 4887
+ },
+ {
+ "epoch": 67.89471384884229,
+ "grad_norm": 0.20768426358699799,
+ "learning_rate": 0.0006,
+ "loss": 3.528446912765503,
+ "step": 4888
+ },
+ {
+ "epoch": 67.90869375273044,
+ "grad_norm": 0.19998659193515778,
+ "learning_rate": 0.0006,
+ "loss": 3.501742124557495,
+ "step": 4889
+ },
+ {
+ "epoch": 67.92267365661861,
+ "grad_norm": 0.20472751557826996,
+ "learning_rate": 0.0006,
+ "loss": 3.510523796081543,
+ "step": 4890
+ },
+ {
+ "epoch": 67.93665356050677,
+ "grad_norm": 0.21528398990631104,
+ "learning_rate": 0.0006,
+ "loss": 3.529409170150757,
+ "step": 4891
+ },
+ {
+ "epoch": 67.95063346439493,
+ "grad_norm": 0.19671283662319183,
+ "learning_rate": 0.0006,
+ "loss": 3.5512051582336426,
+ "step": 4892
+ },
+ {
+ "epoch": 67.9646133682831,
+ "grad_norm": 0.20629945397377014,
+ "learning_rate": 0.0006,
+ "loss": 3.5127525329589844,
+ "step": 4893
+ },
+ {
+ "epoch": 67.97859327217125,
+ "grad_norm": 0.2121579945087433,
+ "learning_rate": 0.0006,
+ "loss": 3.5242156982421875,
+ "step": 4894
+ },
+ {
+ "epoch": 67.99257317605941,
+ "grad_norm": 0.20770777761936188,
+ "learning_rate": 0.0006,
+ "loss": 3.5094361305236816,
+ "step": 4895
+ },
+ {
+ "epoch": 68.0,
+ "grad_norm": 0.2619984447956085,
+ "learning_rate": 0.0006,
+ "loss": 3.491684675216675,
+ "step": 4896
+ },
+ {
+ "epoch": 68.0,
+ "eval_loss": 3.97202730178833,
+ "eval_runtime": 44.2471,
+ "eval_samples_per_second": 55.19,
+ "eval_steps_per_second": 3.458,
+ "step": 4896
+ },
+ {
+ "epoch": 68.01397990388816,
+ "grad_norm": 0.25237807631492615,
+ "learning_rate": 0.0006,
+ "loss": 3.4720845222473145,
+ "step": 4897
+ },
+ {
+ "epoch": 68.02795980777633,
+ "grad_norm": 0.26686927676200867,
+ "learning_rate": 0.0006,
+ "loss": 3.4825453758239746,
+ "step": 4898
+ },
+ {
+ "epoch": 68.04193971166448,
+ "grad_norm": 0.2826477885246277,
+ "learning_rate": 0.0006,
+ "loss": 3.489805221557617,
+ "step": 4899
+ },
+ {
+ "epoch": 68.05591961555264,
+ "grad_norm": 0.291363000869751,
+ "learning_rate": 0.0006,
+ "loss": 3.464585304260254,
+ "step": 4900
+ },
+ {
+ "epoch": 68.06989951944081,
+ "grad_norm": 0.2645387649536133,
+ "learning_rate": 0.0006,
+ "loss": 3.4891953468322754,
+ "step": 4901
+ },
+ {
+ "epoch": 68.08387942332897,
+ "grad_norm": 0.2398659586906433,
+ "learning_rate": 0.0006,
+ "loss": 3.474371910095215,
+ "step": 4902
+ },
+ {
+ "epoch": 68.09785932721712,
+ "grad_norm": 0.23359309136867523,
+ "learning_rate": 0.0006,
+ "loss": 3.5011367797851562,
+ "step": 4903
+ },
+ {
+ "epoch": 68.1118392311053,
+ "grad_norm": 0.235616534948349,
+ "learning_rate": 0.0006,
+ "loss": 3.472562551498413,
+ "step": 4904
+ },
+ {
+ "epoch": 68.12581913499345,
+ "grad_norm": 0.25396600365638733,
+ "learning_rate": 0.0006,
+ "loss": 3.484182834625244,
+ "step": 4905
+ },
+ {
+ "epoch": 68.1397990388816,
+ "grad_norm": 0.2668958604335785,
+ "learning_rate": 0.0006,
+ "loss": 3.4625918865203857,
+ "step": 4906
+ },
+ {
+ "epoch": 68.15377894276976,
+ "grad_norm": 0.2608959674835205,
+ "learning_rate": 0.0006,
+ "loss": 3.4769415855407715,
+ "step": 4907
+ },
+ {
+ "epoch": 68.16775884665793,
+ "grad_norm": 0.2817389667034149,
+ "learning_rate": 0.0006,
+ "loss": 3.4722979068756104,
+ "step": 4908
+ },
+ {
+ "epoch": 68.18173875054609,
+ "grad_norm": 0.24425546824932098,
+ "learning_rate": 0.0006,
+ "loss": 3.4710354804992676,
+ "step": 4909
+ },
+ {
+ "epoch": 68.19571865443424,
+ "grad_norm": 0.2355373501777649,
+ "learning_rate": 0.0006,
+ "loss": 3.475369453430176,
+ "step": 4910
+ },
+ {
+ "epoch": 68.20969855832242,
+ "grad_norm": 0.23627427220344543,
+ "learning_rate": 0.0006,
+ "loss": 3.50154447555542,
+ "step": 4911
+ },
+ {
+ "epoch": 68.22367846221057,
+ "grad_norm": 0.21174706518650055,
+ "learning_rate": 0.0006,
+ "loss": 3.5018253326416016,
+ "step": 4912
+ },
+ {
+ "epoch": 68.23765836609873,
+ "grad_norm": 0.2101593017578125,
+ "learning_rate": 0.0006,
+ "loss": 3.4931211471557617,
+ "step": 4913
+ },
+ {
+ "epoch": 68.2516382699869,
+ "grad_norm": 0.21808475255966187,
+ "learning_rate": 0.0006,
+ "loss": 3.5047576427459717,
+ "step": 4914
+ },
+ {
+ "epoch": 68.26561817387505,
+ "grad_norm": 0.2354060262441635,
+ "learning_rate": 0.0006,
+ "loss": 3.471801996231079,
+ "step": 4915
+ },
+ {
+ "epoch": 68.27959807776321,
+ "grad_norm": 0.2839724123477936,
+ "learning_rate": 0.0006,
+ "loss": 3.4861397743225098,
+ "step": 4916
+ },
+ {
+ "epoch": 68.29357798165138,
+ "grad_norm": 0.2884398102760315,
+ "learning_rate": 0.0006,
+ "loss": 3.497713088989258,
+ "step": 4917
+ },
+ {
+ "epoch": 68.30755788553954,
+ "grad_norm": 0.24654951691627502,
+ "learning_rate": 0.0006,
+ "loss": 3.4795613288879395,
+ "step": 4918
+ },
+ {
+ "epoch": 68.3215377894277,
+ "grad_norm": 0.22197365760803223,
+ "learning_rate": 0.0006,
+ "loss": 3.495490550994873,
+ "step": 4919
+ },
+ {
+ "epoch": 68.33551769331586,
+ "grad_norm": 0.22666935622692108,
+ "learning_rate": 0.0006,
+ "loss": 3.4859418869018555,
+ "step": 4920
+ },
+ {
+ "epoch": 68.34949759720402,
+ "grad_norm": 0.22135236859321594,
+ "learning_rate": 0.0006,
+ "loss": 3.475436210632324,
+ "step": 4921
+ },
+ {
+ "epoch": 68.36347750109218,
+ "grad_norm": 0.28992167115211487,
+ "learning_rate": 0.0006,
+ "loss": 3.5220274925231934,
+ "step": 4922
+ },
+ {
+ "epoch": 68.37745740498035,
+ "grad_norm": 0.296501100063324,
+ "learning_rate": 0.0006,
+ "loss": 3.4783244132995605,
+ "step": 4923
+ },
+ {
+ "epoch": 68.3914373088685,
+ "grad_norm": 0.24111351370811462,
+ "learning_rate": 0.0006,
+ "loss": 3.4972972869873047,
+ "step": 4924
+ },
+ {
+ "epoch": 68.40541721275666,
+ "grad_norm": 0.22319315373897552,
+ "learning_rate": 0.0006,
+ "loss": 3.517050266265869,
+ "step": 4925
+ },
+ {
+ "epoch": 68.41939711664482,
+ "grad_norm": 0.20984329283237457,
+ "learning_rate": 0.0006,
+ "loss": 3.5097880363464355,
+ "step": 4926
+ },
+ {
+ "epoch": 68.43337702053299,
+ "grad_norm": 0.2221212387084961,
+ "learning_rate": 0.0006,
+ "loss": 3.4824156761169434,
+ "step": 4927
+ },
+ {
+ "epoch": 68.44735692442114,
+ "grad_norm": 0.23731078207492828,
+ "learning_rate": 0.0006,
+ "loss": 3.5319526195526123,
+ "step": 4928
+ },
+ {
+ "epoch": 68.4613368283093,
+ "grad_norm": 0.233421191573143,
+ "learning_rate": 0.0006,
+ "loss": 3.4952187538146973,
+ "step": 4929
+ },
+ {
+ "epoch": 68.47531673219747,
+ "grad_norm": 0.2320558875799179,
+ "learning_rate": 0.0006,
+ "loss": 3.5152385234832764,
+ "step": 4930
+ },
+ {
+ "epoch": 68.48929663608563,
+ "grad_norm": 0.21786290407180786,
+ "learning_rate": 0.0006,
+ "loss": 3.4857373237609863,
+ "step": 4931
+ },
+ {
+ "epoch": 68.50327653997378,
+ "grad_norm": 0.20560047030448914,
+ "learning_rate": 0.0006,
+ "loss": 3.487344264984131,
+ "step": 4932
+ },
+ {
+ "epoch": 68.51725644386195,
+ "grad_norm": 0.2326865941286087,
+ "learning_rate": 0.0006,
+ "loss": 3.5202066898345947,
+ "step": 4933
+ },
+ {
+ "epoch": 68.53123634775011,
+ "grad_norm": 0.2338377833366394,
+ "learning_rate": 0.0006,
+ "loss": 3.4967358112335205,
+ "step": 4934
+ },
+ {
+ "epoch": 68.54521625163827,
+ "grad_norm": 0.22698800265789032,
+ "learning_rate": 0.0006,
+ "loss": 3.484452724456787,
+ "step": 4935
+ },
+ {
+ "epoch": 68.55919615552644,
+ "grad_norm": 0.21141181886196136,
+ "learning_rate": 0.0006,
+ "loss": 3.4950156211853027,
+ "step": 4936
+ },
+ {
+ "epoch": 68.57317605941459,
+ "grad_norm": 0.22393199801445007,
+ "learning_rate": 0.0006,
+ "loss": 3.4950199127197266,
+ "step": 4937
+ },
+ {
+ "epoch": 68.58715596330275,
+ "grad_norm": 0.22276045382022858,
+ "learning_rate": 0.0006,
+ "loss": 3.5180115699768066,
+ "step": 4938
+ },
+ {
+ "epoch": 68.60113586719092,
+ "grad_norm": 0.22738748788833618,
+ "learning_rate": 0.0006,
+ "loss": 3.5053911209106445,
+ "step": 4939
+ },
+ {
+ "epoch": 68.61511577107908,
+ "grad_norm": 0.21496275067329407,
+ "learning_rate": 0.0006,
+ "loss": 3.5315306186676025,
+ "step": 4940
+ },
+ {
+ "epoch": 68.62909567496723,
+ "grad_norm": 0.20695674419403076,
+ "learning_rate": 0.0006,
+ "loss": 3.514780044555664,
+ "step": 4941
+ },
+ {
+ "epoch": 68.6430755788554,
+ "grad_norm": 0.22777840495109558,
+ "learning_rate": 0.0006,
+ "loss": 3.5249099731445312,
+ "step": 4942
+ },
+ {
+ "epoch": 68.65705548274356,
+ "grad_norm": 0.26664453744888306,
+ "learning_rate": 0.0006,
+ "loss": 3.4763400554656982,
+ "step": 4943
+ },
+ {
+ "epoch": 68.67103538663171,
+ "grad_norm": 0.3005792498588562,
+ "learning_rate": 0.0006,
+ "loss": 3.4936861991882324,
+ "step": 4944
+ },
+ {
+ "epoch": 68.68501529051987,
+ "grad_norm": 0.2860395908355713,
+ "learning_rate": 0.0006,
+ "loss": 3.4994754791259766,
+ "step": 4945
+ },
+ {
+ "epoch": 68.69899519440804,
+ "grad_norm": 0.21164822578430176,
+ "learning_rate": 0.0006,
+ "loss": 3.5011136531829834,
+ "step": 4946
+ },
+ {
+ "epoch": 68.7129750982962,
+ "grad_norm": 0.2122834324836731,
+ "learning_rate": 0.0006,
+ "loss": 3.52018404006958,
+ "step": 4947
+ },
+ {
+ "epoch": 68.72695500218435,
+ "grad_norm": 0.23951229453086853,
+ "learning_rate": 0.0006,
+ "loss": 3.4910717010498047,
+ "step": 4948
+ },
+ {
+ "epoch": 68.74093490607252,
+ "grad_norm": 0.22745490074157715,
+ "learning_rate": 0.0006,
+ "loss": 3.5251622200012207,
+ "step": 4949
+ },
+ {
+ "epoch": 68.75491480996068,
+ "grad_norm": 0.21616250276565552,
+ "learning_rate": 0.0006,
+ "loss": 3.4933743476867676,
+ "step": 4950
+ },
+ {
+ "epoch": 68.76889471384884,
+ "grad_norm": 0.2164236605167389,
+ "learning_rate": 0.0006,
+ "loss": 3.513286590576172,
+ "step": 4951
+ },
+ {
+ "epoch": 68.78287461773701,
+ "grad_norm": 0.2450464814901352,
+ "learning_rate": 0.0006,
+ "loss": 3.5084245204925537,
+ "step": 4952
+ },
+ {
+ "epoch": 68.79685452162516,
+ "grad_norm": 0.29221615195274353,
+ "learning_rate": 0.0006,
+ "loss": 3.5463311672210693,
+ "step": 4953
+ },
+ {
+ "epoch": 68.81083442551332,
+ "grad_norm": 0.24574553966522217,
+ "learning_rate": 0.0006,
+ "loss": 3.5099716186523438,
+ "step": 4954
+ },
+ {
+ "epoch": 68.82481432940149,
+ "grad_norm": 0.20879139006137848,
+ "learning_rate": 0.0006,
+ "loss": 3.5220701694488525,
+ "step": 4955
+ },
+ {
+ "epoch": 68.83879423328965,
+ "grad_norm": 0.295693963766098,
+ "learning_rate": 0.0006,
+ "loss": 3.4854037761688232,
+ "step": 4956
+ },
+ {
+ "epoch": 68.8527741371778,
+ "grad_norm": 0.35441911220550537,
+ "learning_rate": 0.0006,
+ "loss": 3.5216379165649414,
+ "step": 4957
+ },
+ {
+ "epoch": 68.86675404106597,
+ "grad_norm": 0.2840341031551361,
+ "learning_rate": 0.0006,
+ "loss": 3.5208358764648438,
+ "step": 4958
+ },
+ {
+ "epoch": 68.88073394495413,
+ "grad_norm": 0.2082499861717224,
+ "learning_rate": 0.0006,
+ "loss": 3.5028862953186035,
+ "step": 4959
+ },
+ {
+ "epoch": 68.89471384884229,
+ "grad_norm": 0.2505369186401367,
+ "learning_rate": 0.0006,
+ "loss": 3.4982357025146484,
+ "step": 4960
+ },
+ {
+ "epoch": 68.90869375273044,
+ "grad_norm": 0.24573875963687897,
+ "learning_rate": 0.0006,
+ "loss": 3.5239524841308594,
+ "step": 4961
+ },
+ {
+ "epoch": 68.92267365661861,
+ "grad_norm": 0.23462185263633728,
+ "learning_rate": 0.0006,
+ "loss": 3.544379234313965,
+ "step": 4962
+ },
+ {
+ "epoch": 68.93665356050677,
+ "grad_norm": 0.26491034030914307,
+ "learning_rate": 0.0006,
+ "loss": 3.518372058868408,
+ "step": 4963
+ },
+ {
+ "epoch": 68.95063346439493,
+ "grad_norm": 0.2729686498641968,
+ "learning_rate": 0.0006,
+ "loss": 3.517185926437378,
+ "step": 4964
+ },
+ {
+ "epoch": 68.9646133682831,
+ "grad_norm": 0.26077502965927124,
+ "learning_rate": 0.0006,
+ "loss": 3.5147576332092285,
+ "step": 4965
+ },
+ {
+ "epoch": 68.97859327217125,
+ "grad_norm": 0.2313229888677597,
+ "learning_rate": 0.0006,
+ "loss": 3.5008926391601562,
+ "step": 4966
+ },
+ {
+ "epoch": 68.99257317605941,
+ "grad_norm": 0.21773307025432587,
+ "learning_rate": 0.0006,
+ "loss": 3.5004096031188965,
+ "step": 4967
+ },
+ {
+ "epoch": 69.0,
+ "grad_norm": 0.2326030433177948,
+ "learning_rate": 0.0006,
+ "loss": 3.5572075843811035,
+ "step": 4968
+ },
+ {
+ "epoch": 69.0,
+ "eval_loss": 3.993666410446167,
+ "eval_runtime": 45.2778,
+ "eval_samples_per_second": 53.934,
+ "eval_steps_per_second": 3.379,
+ "step": 4968
+ },
+ {
+ "epoch": 69.01397990388816,
+ "grad_norm": 0.22886492311954498,
+ "learning_rate": 0.0006,
+ "loss": 3.4994781017303467,
+ "step": 4969
+ },
+ {
+ "epoch": 69.02795980777633,
+ "grad_norm": 0.2972700595855713,
+ "learning_rate": 0.0006,
+ "loss": 3.5022270679473877,
+ "step": 4970
+ },
+ {
+ "epoch": 69.04193971166448,
+ "grad_norm": 0.32146573066711426,
+ "learning_rate": 0.0006,
+ "loss": 3.49113130569458,
+ "step": 4971
+ },
+ {
+ "epoch": 69.05591961555264,
+ "grad_norm": 0.26019641757011414,
+ "learning_rate": 0.0006,
+ "loss": 3.4609522819519043,
+ "step": 4972
+ },
+ {
+ "epoch": 69.06989951944081,
+ "grad_norm": 0.2116279900074005,
+ "learning_rate": 0.0006,
+ "loss": 3.518007278442383,
+ "step": 4973
+ },
+ {
+ "epoch": 69.08387942332897,
+ "grad_norm": 0.24797578155994415,
+ "learning_rate": 0.0006,
+ "loss": 3.465017318725586,
+ "step": 4974
+ },
+ {
+ "epoch": 69.09785932721712,
+ "grad_norm": 0.2988112270832062,
+ "learning_rate": 0.0006,
+ "loss": 3.46774959564209,
+ "step": 4975
+ },
+ {
+ "epoch": 69.1118392311053,
+ "grad_norm": 0.2741694450378418,
+ "learning_rate": 0.0006,
+ "loss": 3.4726247787475586,
+ "step": 4976
+ },
+ {
+ "epoch": 69.12581913499345,
+ "grad_norm": 0.246512308716774,
+ "learning_rate": 0.0006,
+ "loss": 3.4634053707122803,
+ "step": 4977
+ },
+ {
+ "epoch": 69.1397990388816,
+ "grad_norm": 0.25938132405281067,
+ "learning_rate": 0.0006,
+ "loss": 3.4496707916259766,
+ "step": 4978
+ },
+ {
+ "epoch": 69.15377894276976,
+ "grad_norm": 0.30637112259864807,
+ "learning_rate": 0.0006,
+ "loss": 3.4703760147094727,
+ "step": 4979
+ },
+ {
+ "epoch": 69.16775884665793,
+ "grad_norm": 0.26681914925575256,
+ "learning_rate": 0.0006,
+ "loss": 3.50388240814209,
+ "step": 4980
+ },
+ {
+ "epoch": 69.18173875054609,
+ "grad_norm": 0.24075748026371002,
+ "learning_rate": 0.0006,
+ "loss": 3.517247438430786,
+ "step": 4981
+ },
+ {
+ "epoch": 69.19571865443424,
+ "grad_norm": 0.21730124950408936,
+ "learning_rate": 0.0006,
+ "loss": 3.49320650100708,
+ "step": 4982
+ },
+ {
+ "epoch": 69.20969855832242,
+ "grad_norm": 0.21399953961372375,
+ "learning_rate": 0.0006,
+ "loss": 3.4763529300689697,
+ "step": 4983
+ },
+ {
+ "epoch": 69.22367846221057,
+ "grad_norm": 0.22505059838294983,
+ "learning_rate": 0.0006,
+ "loss": 3.4744338989257812,
+ "step": 4984
+ },
+ {
+ "epoch": 69.23765836609873,
+ "grad_norm": 0.23260554671287537,
+ "learning_rate": 0.0006,
+ "loss": 3.469099760055542,
+ "step": 4985
+ },
+ {
+ "epoch": 69.2516382699869,
+ "grad_norm": 0.2212911993265152,
+ "learning_rate": 0.0006,
+ "loss": 3.484243869781494,
+ "step": 4986
+ },
+ {
+ "epoch": 69.26561817387505,
+ "grad_norm": 0.22414085268974304,
+ "learning_rate": 0.0006,
+ "loss": 3.485083818435669,
+ "step": 4987
+ },
+ {
+ "epoch": 69.27959807776321,
+ "grad_norm": 0.2222541719675064,
+ "learning_rate": 0.0006,
+ "loss": 3.4827499389648438,
+ "step": 4988
+ },
+ {
+ "epoch": 69.29357798165138,
+ "grad_norm": 0.23511181771755219,
+ "learning_rate": 0.0006,
+ "loss": 3.4688282012939453,
+ "step": 4989
+ },
+ {
+ "epoch": 69.30755788553954,
+ "grad_norm": 0.23599068820476532,
+ "learning_rate": 0.0006,
+ "loss": 3.498142719268799,
+ "step": 4990
+ },
+ {
+ "epoch": 69.3215377894277,
+ "grad_norm": 0.22533927857875824,
+ "learning_rate": 0.0006,
+ "loss": 3.4815826416015625,
+ "step": 4991
+ },
+ {
+ "epoch": 69.33551769331586,
+ "grad_norm": 0.2343030720949173,
+ "learning_rate": 0.0006,
+ "loss": 3.483752489089966,
+ "step": 4992
+ },
+ {
+ "epoch": 69.34949759720402,
+ "grad_norm": 0.23283112049102783,
+ "learning_rate": 0.0006,
+ "loss": 3.4877965450286865,
+ "step": 4993
+ },
+ {
+ "epoch": 69.36347750109218,
+ "grad_norm": 0.24869517982006073,
+ "learning_rate": 0.0006,
+ "loss": 3.480337142944336,
+ "step": 4994
+ },
+ {
+ "epoch": 69.37745740498035,
+ "grad_norm": 0.22779154777526855,
+ "learning_rate": 0.0006,
+ "loss": 3.4828710556030273,
+ "step": 4995
+ },
+ {
+ "epoch": 69.3914373088685,
+ "grad_norm": 0.22645261883735657,
+ "learning_rate": 0.0006,
+ "loss": 3.509845018386841,
+ "step": 4996
+ },
+ {
+ "epoch": 69.40541721275666,
+ "grad_norm": 0.2432178109884262,
+ "learning_rate": 0.0006,
+ "loss": 3.4617137908935547,
+ "step": 4997
+ },
+ {
+ "epoch": 69.41939711664482,
+ "grad_norm": 0.2587018311023712,
+ "learning_rate": 0.0006,
+ "loss": 3.4713127613067627,
+ "step": 4998
+ },
+ {
+ "epoch": 69.43337702053299,
+ "grad_norm": 0.21907378733158112,
+ "learning_rate": 0.0006,
+ "loss": 3.509188175201416,
+ "step": 4999
+ },
+ {
+ "epoch": 69.44735692442114,
+ "grad_norm": 0.22740772366523743,
+ "learning_rate": 0.0006,
+ "loss": 3.4754276275634766,
+ "step": 5000
+ },
+ {
+ "epoch": 69.4613368283093,
+ "grad_norm": 0.21934257447719574,
+ "learning_rate": 0.0006,
+ "loss": 3.4663891792297363,
+ "step": 5001
+ },
+ {
+ "epoch": 69.47531673219747,
+ "grad_norm": 0.2244742065668106,
+ "learning_rate": 0.0006,
+ "loss": 3.4800233840942383,
+ "step": 5002
+ },
+ {
+ "epoch": 69.48929663608563,
+ "grad_norm": 0.20470912754535675,
+ "learning_rate": 0.0006,
+ "loss": 3.5089359283447266,
+ "step": 5003
+ },
+ {
+ "epoch": 69.50327653997378,
+ "grad_norm": 0.21532751619815826,
+ "learning_rate": 0.0006,
+ "loss": 3.5029287338256836,
+ "step": 5004
+ },
+ {
+ "epoch": 69.51725644386195,
+ "grad_norm": 0.2311217337846756,
+ "learning_rate": 0.0006,
+ "loss": 3.5031962394714355,
+ "step": 5005
+ },
+ {
+ "epoch": 69.53123634775011,
+ "grad_norm": 0.22248436510562897,
+ "learning_rate": 0.0006,
+ "loss": 3.5059356689453125,
+ "step": 5006
+ },
+ {
+ "epoch": 69.54521625163827,
+ "grad_norm": 0.2108408361673355,
+ "learning_rate": 0.0006,
+ "loss": 3.498697280883789,
+ "step": 5007
+ },
+ {
+ "epoch": 69.55919615552644,
+ "grad_norm": 0.22833184897899628,
+ "learning_rate": 0.0006,
+ "loss": 3.505685806274414,
+ "step": 5008
+ },
+ {
+ "epoch": 69.57317605941459,
+ "grad_norm": 0.22630111873149872,
+ "learning_rate": 0.0006,
+ "loss": 3.497771978378296,
+ "step": 5009
+ },
+ {
+ "epoch": 69.58715596330275,
+ "grad_norm": 0.23363569378852844,
+ "learning_rate": 0.0006,
+ "loss": 3.5422916412353516,
+ "step": 5010
+ },
+ {
+ "epoch": 69.60113586719092,
+ "grad_norm": 0.23720940947532654,
+ "learning_rate": 0.0006,
+ "loss": 3.504817008972168,
+ "step": 5011
+ },
+ {
+ "epoch": 69.61511577107908,
+ "grad_norm": 0.22822913527488708,
+ "learning_rate": 0.0006,
+ "loss": 3.51149320602417,
+ "step": 5012
+ },
+ {
+ "epoch": 69.62909567496723,
+ "grad_norm": 0.24143314361572266,
+ "learning_rate": 0.0006,
+ "loss": 3.509063720703125,
+ "step": 5013
+ },
+ {
+ "epoch": 69.6430755788554,
+ "grad_norm": 0.2394775152206421,
+ "learning_rate": 0.0006,
+ "loss": 3.5275425910949707,
+ "step": 5014
+ },
+ {
+ "epoch": 69.65705548274356,
+ "grad_norm": 0.23898433148860931,
+ "learning_rate": 0.0006,
+ "loss": 3.5251870155334473,
+ "step": 5015
+ },
+ {
+ "epoch": 69.67103538663171,
+ "grad_norm": 0.22647695243358612,
+ "learning_rate": 0.0006,
+ "loss": 3.4790940284729004,
+ "step": 5016
+ },
+ {
+ "epoch": 69.68501529051987,
+ "grad_norm": 0.23094546794891357,
+ "learning_rate": 0.0006,
+ "loss": 3.515676975250244,
+ "step": 5017
+ },
+ {
+ "epoch": 69.69899519440804,
+ "grad_norm": 0.21791698038578033,
+ "learning_rate": 0.0006,
+ "loss": 3.4938859939575195,
+ "step": 5018
+ },
+ {
+ "epoch": 69.7129750982962,
+ "grad_norm": 0.2420767843723297,
+ "learning_rate": 0.0006,
+ "loss": 3.489206075668335,
+ "step": 5019
+ },
+ {
+ "epoch": 69.72695500218435,
+ "grad_norm": 0.22724151611328125,
+ "learning_rate": 0.0006,
+ "loss": 3.502804756164551,
+ "step": 5020
+ },
+ {
+ "epoch": 69.74093490607252,
+ "grad_norm": 0.23462660610675812,
+ "learning_rate": 0.0006,
+ "loss": 3.4947867393493652,
+ "step": 5021
+ },
+ {
+ "epoch": 69.75491480996068,
+ "grad_norm": 0.2545832097530365,
+ "learning_rate": 0.0006,
+ "loss": 3.500843048095703,
+ "step": 5022
+ },
+ {
+ "epoch": 69.76889471384884,
+ "grad_norm": 0.26692283153533936,
+ "learning_rate": 0.0006,
+ "loss": 3.5054852962493896,
+ "step": 5023
+ },
+ {
+ "epoch": 69.78287461773701,
+ "grad_norm": 0.22788259387016296,
+ "learning_rate": 0.0006,
+ "loss": 3.5261473655700684,
+ "step": 5024
+ },
+ {
+ "epoch": 69.79685452162516,
+ "grad_norm": 0.24453137814998627,
+ "learning_rate": 0.0006,
+ "loss": 3.5090155601501465,
+ "step": 5025
+ },
+ {
+ "epoch": 69.81083442551332,
+ "grad_norm": 0.27876126766204834,
+ "learning_rate": 0.0006,
+ "loss": 3.5091753005981445,
+ "step": 5026
+ },
+ {
+ "epoch": 69.82481432940149,
+ "grad_norm": 0.280249685049057,
+ "learning_rate": 0.0006,
+ "loss": 3.5129857063293457,
+ "step": 5027
+ },
+ {
+ "epoch": 69.83879423328965,
+ "grad_norm": 0.2260117530822754,
+ "learning_rate": 0.0006,
+ "loss": 3.5320475101470947,
+ "step": 5028
+ },
+ {
+ "epoch": 69.8527741371778,
+ "grad_norm": 0.2237965613603592,
+ "learning_rate": 0.0006,
+ "loss": 3.5061261653900146,
+ "step": 5029
+ },
+ {
+ "epoch": 69.86675404106597,
+ "grad_norm": 0.226779967546463,
+ "learning_rate": 0.0006,
+ "loss": 3.5076608657836914,
+ "step": 5030
+ },
+ {
+ "epoch": 69.88073394495413,
+ "grad_norm": 0.23626334965229034,
+ "learning_rate": 0.0006,
+ "loss": 3.50716495513916,
+ "step": 5031
+ },
+ {
+ "epoch": 69.89471384884229,
+ "grad_norm": 0.2639276385307312,
+ "learning_rate": 0.0006,
+ "loss": 3.5299901962280273,
+ "step": 5032
+ },
+ {
+ "epoch": 69.90869375273044,
+ "grad_norm": 0.23369482159614563,
+ "learning_rate": 0.0006,
+ "loss": 3.5289621353149414,
+ "step": 5033
+ },
+ {
+ "epoch": 69.92267365661861,
+ "grad_norm": 0.23041120171546936,
+ "learning_rate": 0.0006,
+ "loss": 3.5174753665924072,
+ "step": 5034
+ },
+ {
+ "epoch": 69.93665356050677,
+ "grad_norm": 0.21268987655639648,
+ "learning_rate": 0.0006,
+ "loss": 3.506927967071533,
+ "step": 5035
+ },
+ {
+ "epoch": 69.95063346439493,
+ "grad_norm": 0.22524571418762207,
+ "learning_rate": 0.0006,
+ "loss": 3.5054068565368652,
+ "step": 5036
+ },
+ {
+ "epoch": 69.9646133682831,
+ "grad_norm": 0.26068753004074097,
+ "learning_rate": 0.0006,
+ "loss": 3.502107620239258,
+ "step": 5037
+ },
+ {
+ "epoch": 69.97859327217125,
+ "grad_norm": 0.2473640888929367,
+ "learning_rate": 0.0006,
+ "loss": 3.4879817962646484,
+ "step": 5038
+ },
+ {
+ "epoch": 69.99257317605941,
+ "grad_norm": 0.23933477699756622,
+ "learning_rate": 0.0006,
+ "loss": 3.52518892288208,
+ "step": 5039
+ },
+ {
+ "epoch": 70.0,
+ "grad_norm": 0.26498401165008545,
+ "learning_rate": 0.0006,
+ "loss": 3.528074026107788,
+ "step": 5040
+ },
+ {
+ "epoch": 70.0,
+ "eval_loss": 3.9862265586853027,
+ "eval_runtime": 45.1344,
+ "eval_samples_per_second": 54.105,
+ "eval_steps_per_second": 3.39,
+ "step": 5040
+ },
+ {
+ "epoch": 70.01397990388816,
+ "grad_norm": 0.23711830377578735,
+ "learning_rate": 0.0006,
+ "loss": 3.4622411727905273,
+ "step": 5041
+ },
+ {
+ "epoch": 70.02795980777633,
+ "grad_norm": 0.25422438979148865,
+ "learning_rate": 0.0006,
+ "loss": 3.4546890258789062,
+ "step": 5042
+ },
+ {
+ "epoch": 70.04193971166448,
+ "grad_norm": 0.2520093619823456,
+ "learning_rate": 0.0006,
+ "loss": 3.4625046253204346,
+ "step": 5043
+ },
+ {
+ "epoch": 70.05591961555264,
+ "grad_norm": 0.23353877663612366,
+ "learning_rate": 0.0006,
+ "loss": 3.5090699195861816,
+ "step": 5044
+ },
+ {
+ "epoch": 70.06989951944081,
+ "grad_norm": 0.2775326669216156,
+ "learning_rate": 0.0006,
+ "loss": 3.4860758781433105,
+ "step": 5045
+ },
+ {
+ "epoch": 70.08387942332897,
+ "grad_norm": 0.297573447227478,
+ "learning_rate": 0.0006,
+ "loss": 3.5181596279144287,
+ "step": 5046
+ },
+ {
+ "epoch": 70.09785932721712,
+ "grad_norm": 0.29662513732910156,
+ "learning_rate": 0.0006,
+ "loss": 3.4715771675109863,
+ "step": 5047
+ },
+ {
+ "epoch": 70.1118392311053,
+ "grad_norm": 0.2619902193546295,
+ "learning_rate": 0.0006,
+ "loss": 3.430412769317627,
+ "step": 5048
+ },
+ {
+ "epoch": 70.12581913499345,
+ "grad_norm": 0.21740001440048218,
+ "learning_rate": 0.0006,
+ "loss": 3.473442792892456,
+ "step": 5049
+ },
+ {
+ "epoch": 70.1397990388816,
+ "grad_norm": 0.221281036734581,
+ "learning_rate": 0.0006,
+ "loss": 3.4651594161987305,
+ "step": 5050
+ },
+ {
+ "epoch": 70.15377894276976,
+ "grad_norm": 0.21638400852680206,
+ "learning_rate": 0.0006,
+ "loss": 3.475860118865967,
+ "step": 5051
+ },
+ {
+ "epoch": 70.16775884665793,
+ "grad_norm": 0.21825452148914337,
+ "learning_rate": 0.0006,
+ "loss": 3.467684268951416,
+ "step": 5052
+ },
+ {
+ "epoch": 70.18173875054609,
+ "grad_norm": 0.22535094618797302,
+ "learning_rate": 0.0006,
+ "loss": 3.4543721675872803,
+ "step": 5053
+ },
+ {
+ "epoch": 70.19571865443424,
+ "grad_norm": 0.22751732170581818,
+ "learning_rate": 0.0006,
+ "loss": 3.480132818222046,
+ "step": 5054
+ },
+ {
+ "epoch": 70.20969855832242,
+ "grad_norm": 0.21935929358005524,
+ "learning_rate": 0.0006,
+ "loss": 3.4883337020874023,
+ "step": 5055
+ },
+ {
+ "epoch": 70.22367846221057,
+ "grad_norm": 0.2164992392063141,
+ "learning_rate": 0.0006,
+ "loss": 3.4758238792419434,
+ "step": 5056
+ },
+ {
+ "epoch": 70.23765836609873,
+ "grad_norm": 0.2284509837627411,
+ "learning_rate": 0.0006,
+ "loss": 3.4639101028442383,
+ "step": 5057
+ },
+ {
+ "epoch": 70.2516382699869,
+ "grad_norm": 0.2616494297981262,
+ "learning_rate": 0.0006,
+ "loss": 3.4850382804870605,
+ "step": 5058
+ },
+ {
+ "epoch": 70.26561817387505,
+ "grad_norm": 0.25582870841026306,
+ "learning_rate": 0.0006,
+ "loss": 3.4912681579589844,
+ "step": 5059
+ },
+ {
+ "epoch": 70.27959807776321,
+ "grad_norm": 0.23707713186740875,
+ "learning_rate": 0.0006,
+ "loss": 3.493809700012207,
+ "step": 5060
+ },
+ {
+ "epoch": 70.29357798165138,
+ "grad_norm": 0.233265221118927,
+ "learning_rate": 0.0006,
+ "loss": 3.5143074989318848,
+ "step": 5061
+ },
+ {
+ "epoch": 70.30755788553954,
+ "grad_norm": 0.2607567012310028,
+ "learning_rate": 0.0006,
+ "loss": 3.5042223930358887,
+ "step": 5062
+ },
+ {
+ "epoch": 70.3215377894277,
+ "grad_norm": 0.21082724630832672,
+ "learning_rate": 0.0006,
+ "loss": 3.493569850921631,
+ "step": 5063
+ },
+ {
+ "epoch": 70.33551769331586,
+ "grad_norm": 0.2609533369541168,
+ "learning_rate": 0.0006,
+ "loss": 3.503533363342285,
+ "step": 5064
+ },
+ {
+ "epoch": 70.34949759720402,
+ "grad_norm": 0.2863939702510834,
+ "learning_rate": 0.0006,
+ "loss": 3.465226173400879,
+ "step": 5065
+ },
+ {
+ "epoch": 70.36347750109218,
+ "grad_norm": 0.26796457171440125,
+ "learning_rate": 0.0006,
+ "loss": 3.517176866531372,
+ "step": 5066
+ },
+ {
+ "epoch": 70.37745740498035,
+ "grad_norm": 0.2766019105911255,
+ "learning_rate": 0.0006,
+ "loss": 3.5126867294311523,
+ "step": 5067
+ },
+ {
+ "epoch": 70.3914373088685,
+ "grad_norm": 0.24560758471488953,
+ "learning_rate": 0.0006,
+ "loss": 3.515030860900879,
+ "step": 5068
+ },
+ {
+ "epoch": 70.40541721275666,
+ "grad_norm": 0.20993568003177643,
+ "learning_rate": 0.0006,
+ "loss": 3.4899773597717285,
+ "step": 5069
+ },
+ {
+ "epoch": 70.41939711664482,
+ "grad_norm": 0.20855914056301117,
+ "learning_rate": 0.0006,
+ "loss": 3.4906468391418457,
+ "step": 5070
+ },
+ {
+ "epoch": 70.43337702053299,
+ "grad_norm": 0.2210836559534073,
+ "learning_rate": 0.0006,
+ "loss": 3.482866048812866,
+ "step": 5071
+ },
+ {
+ "epoch": 70.44735692442114,
+ "grad_norm": 0.2210542857646942,
+ "learning_rate": 0.0006,
+ "loss": 3.501636028289795,
+ "step": 5072
+ },
+ {
+ "epoch": 70.4613368283093,
+ "grad_norm": 0.21207138895988464,
+ "learning_rate": 0.0006,
+ "loss": 3.519104242324829,
+ "step": 5073
+ },
+ {
+ "epoch": 70.47531673219747,
+ "grad_norm": 0.19901272654533386,
+ "learning_rate": 0.0006,
+ "loss": 3.486097574234009,
+ "step": 5074
+ },
+ {
+ "epoch": 70.48929663608563,
+ "grad_norm": 0.21536870300769806,
+ "learning_rate": 0.0006,
+ "loss": 3.476889133453369,
+ "step": 5075
+ },
+ {
+ "epoch": 70.50327653997378,
+ "grad_norm": 0.22002893686294556,
+ "learning_rate": 0.0006,
+ "loss": 3.5007381439208984,
+ "step": 5076
+ },
+ {
+ "epoch": 70.51725644386195,
+ "grad_norm": 0.20761331915855408,
+ "learning_rate": 0.0006,
+ "loss": 3.4693777561187744,
+ "step": 5077
+ },
+ {
+ "epoch": 70.53123634775011,
+ "grad_norm": 0.2145029455423355,
+ "learning_rate": 0.0006,
+ "loss": 3.438809871673584,
+ "step": 5078
+ },
+ {
+ "epoch": 70.54521625163827,
+ "grad_norm": 0.1961168795824051,
+ "learning_rate": 0.0006,
+ "loss": 3.4975242614746094,
+ "step": 5079
+ },
+ {
+ "epoch": 70.55919615552644,
+ "grad_norm": 0.20411522686481476,
+ "learning_rate": 0.0006,
+ "loss": 3.4908413887023926,
+ "step": 5080
+ },
+ {
+ "epoch": 70.57317605941459,
+ "grad_norm": 0.22646412253379822,
+ "learning_rate": 0.0006,
+ "loss": 3.4542629718780518,
+ "step": 5081
+ },
+ {
+ "epoch": 70.58715596330275,
+ "grad_norm": 0.2181357741355896,
+ "learning_rate": 0.0006,
+ "loss": 3.522963047027588,
+ "step": 5082
+ },
+ {
+ "epoch": 70.60113586719092,
+ "grad_norm": 0.23564083874225616,
+ "learning_rate": 0.0006,
+ "loss": 3.475222110748291,
+ "step": 5083
+ },
+ {
+ "epoch": 70.61511577107908,
+ "grad_norm": 0.22964410483837128,
+ "learning_rate": 0.0006,
+ "loss": 3.517993927001953,
+ "step": 5084
+ },
+ {
+ "epoch": 70.62909567496723,
+ "grad_norm": 0.20958925783634186,
+ "learning_rate": 0.0006,
+ "loss": 3.4651894569396973,
+ "step": 5085
+ },
+ {
+ "epoch": 70.6430755788554,
+ "grad_norm": 0.19693933427333832,
+ "learning_rate": 0.0006,
+ "loss": 3.4992640018463135,
+ "step": 5086
+ },
+ {
+ "epoch": 70.65705548274356,
+ "grad_norm": 0.22487083077430725,
+ "learning_rate": 0.0006,
+ "loss": 3.502739906311035,
+ "step": 5087
+ },
+ {
+ "epoch": 70.67103538663171,
+ "grad_norm": 0.22145701944828033,
+ "learning_rate": 0.0006,
+ "loss": 3.4855666160583496,
+ "step": 5088
+ },
+ {
+ "epoch": 70.68501529051987,
+ "grad_norm": 0.2145165652036667,
+ "learning_rate": 0.0006,
+ "loss": 3.5234193801879883,
+ "step": 5089
+ },
+ {
+ "epoch": 70.69899519440804,
+ "grad_norm": 0.2453656941652298,
+ "learning_rate": 0.0006,
+ "loss": 3.497983932495117,
+ "step": 5090
+ },
+ {
+ "epoch": 70.7129750982962,
+ "grad_norm": 0.2324638068675995,
+ "learning_rate": 0.0006,
+ "loss": 3.487849712371826,
+ "step": 5091
+ },
+ {
+ "epoch": 70.72695500218435,
+ "grad_norm": 0.2176654040813446,
+ "learning_rate": 0.0006,
+ "loss": 3.496427059173584,
+ "step": 5092
+ },
+ {
+ "epoch": 70.74093490607252,
+ "grad_norm": 0.20912162959575653,
+ "learning_rate": 0.0006,
+ "loss": 3.4953227043151855,
+ "step": 5093
+ },
+ {
+ "epoch": 70.75491480996068,
+ "grad_norm": 0.1988947093486786,
+ "learning_rate": 0.0006,
+ "loss": 3.4566853046417236,
+ "step": 5094
+ },
+ {
+ "epoch": 70.76889471384884,
+ "grad_norm": 0.23707804083824158,
+ "learning_rate": 0.0006,
+ "loss": 3.5447797775268555,
+ "step": 5095
+ },
+ {
+ "epoch": 70.78287461773701,
+ "grad_norm": 0.24296057224273682,
+ "learning_rate": 0.0006,
+ "loss": 3.5124454498291016,
+ "step": 5096
+ },
+ {
+ "epoch": 70.79685452162516,
+ "grad_norm": 0.21297545731067657,
+ "learning_rate": 0.0006,
+ "loss": 3.5096077919006348,
+ "step": 5097
+ },
+ {
+ "epoch": 70.81083442551332,
+ "grad_norm": 0.20642022788524628,
+ "learning_rate": 0.0006,
+ "loss": 3.5008912086486816,
+ "step": 5098
+ },
+ {
+ "epoch": 70.82481432940149,
+ "grad_norm": 0.2428225725889206,
+ "learning_rate": 0.0006,
+ "loss": 3.511782169342041,
+ "step": 5099
+ },
+ {
+ "epoch": 70.83879423328965,
+ "grad_norm": 0.2369006872177124,
+ "learning_rate": 0.0006,
+ "loss": 3.5016889572143555,
+ "step": 5100
+ },
+ {
+ "epoch": 70.8527741371778,
+ "grad_norm": 0.2299226075410843,
+ "learning_rate": 0.0006,
+ "loss": 3.5024492740631104,
+ "step": 5101
+ },
+ {
+ "epoch": 70.86675404106597,
+ "grad_norm": 0.2069583684206009,
+ "learning_rate": 0.0006,
+ "loss": 3.5401811599731445,
+ "step": 5102
+ },
+ {
+ "epoch": 70.88073394495413,
+ "grad_norm": 0.21548444032669067,
+ "learning_rate": 0.0006,
+ "loss": 3.506899833679199,
+ "step": 5103
+ },
+ {
+ "epoch": 70.89471384884229,
+ "grad_norm": 0.24152785539627075,
+ "learning_rate": 0.0006,
+ "loss": 3.517747163772583,
+ "step": 5104
+ },
+ {
+ "epoch": 70.90869375273044,
+ "grad_norm": 0.2301841676235199,
+ "learning_rate": 0.0006,
+ "loss": 3.4825563430786133,
+ "step": 5105
+ },
+ {
+ "epoch": 70.92267365661861,
+ "grad_norm": 0.20378732681274414,
+ "learning_rate": 0.0006,
+ "loss": 3.51491641998291,
+ "step": 5106
+ },
+ {
+ "epoch": 70.93665356050677,
+ "grad_norm": 0.23954246938228607,
+ "learning_rate": 0.0006,
+ "loss": 3.505157709121704,
+ "step": 5107
+ },
+ {
+ "epoch": 70.95063346439493,
+ "grad_norm": 0.24072174727916718,
+ "learning_rate": 0.0006,
+ "loss": 3.5006208419799805,
+ "step": 5108
+ },
+ {
+ "epoch": 70.9646133682831,
+ "grad_norm": 0.2187308371067047,
+ "learning_rate": 0.0006,
+ "loss": 3.5031535625457764,
+ "step": 5109
+ },
+ {
+ "epoch": 70.97859327217125,
+ "grad_norm": 0.22237645089626312,
+ "learning_rate": 0.0006,
+ "loss": 3.5143189430236816,
+ "step": 5110
+ },
+ {
+ "epoch": 70.99257317605941,
+ "grad_norm": 0.22169137001037598,
+ "learning_rate": 0.0006,
+ "loss": 3.4963934421539307,
+ "step": 5111
+ },
+ {
+ "epoch": 71.0,
+ "grad_norm": 0.257404088973999,
+ "learning_rate": 0.0006,
+ "loss": 3.5386219024658203,
+ "step": 5112
+ },
+ {
+ "epoch": 71.0,
+ "eval_loss": 3.9918019771575928,
+ "eval_runtime": 46.6377,
+ "eval_samples_per_second": 52.361,
+ "eval_steps_per_second": 3.281,
+ "step": 5112
+ },
+ {
+ "epoch": 71.01397990388816,
+ "grad_norm": 0.22763817012310028,
+ "learning_rate": 0.0006,
+ "loss": 3.4723024368286133,
+ "step": 5113
+ },
+ {
+ "epoch": 71.02795980777633,
+ "grad_norm": 0.22345447540283203,
+ "learning_rate": 0.0006,
+ "loss": 3.491352081298828,
+ "step": 5114
+ },
+ {
+ "epoch": 71.04193971166448,
+ "grad_norm": 0.28975343704223633,
+ "learning_rate": 0.0006,
+ "loss": 3.474012851715088,
+ "step": 5115
+ },
+ {
+ "epoch": 71.05591961555264,
+ "grad_norm": 0.34715282917022705,
+ "learning_rate": 0.0006,
+ "loss": 3.460543155670166,
+ "step": 5116
+ },
+ {
+ "epoch": 71.06989951944081,
+ "grad_norm": 0.3298324942588806,
+ "learning_rate": 0.0006,
+ "loss": 3.481487512588501,
+ "step": 5117
+ },
+ {
+ "epoch": 71.08387942332897,
+ "grad_norm": 0.25802168250083923,
+ "learning_rate": 0.0006,
+ "loss": 3.472047805786133,
+ "step": 5118
+ },
+ {
+ "epoch": 71.09785932721712,
+ "grad_norm": 0.27691733837127686,
+ "learning_rate": 0.0006,
+ "loss": 3.471902847290039,
+ "step": 5119
+ },
+ {
+ "epoch": 71.1118392311053,
+ "grad_norm": 0.3614637851715088,
+ "learning_rate": 0.0006,
+ "loss": 3.482367992401123,
+ "step": 5120
+ },
+ {
+ "epoch": 71.12581913499345,
+ "grad_norm": 0.3808763027191162,
+ "learning_rate": 0.0006,
+ "loss": 3.468003273010254,
+ "step": 5121
+ },
+ {
+ "epoch": 71.1397990388816,
+ "grad_norm": 0.30960485339164734,
+ "learning_rate": 0.0006,
+ "loss": 3.4756040573120117,
+ "step": 5122
+ },
+ {
+ "epoch": 71.15377894276976,
+ "grad_norm": 0.23345506191253662,
+ "learning_rate": 0.0006,
+ "loss": 3.4682583808898926,
+ "step": 5123
+ },
+ {
+ "epoch": 71.16775884665793,
+ "grad_norm": 0.23517020046710968,
+ "learning_rate": 0.0006,
+ "loss": 3.481360912322998,
+ "step": 5124
+ },
+ {
+ "epoch": 71.18173875054609,
+ "grad_norm": 0.23654034733772278,
+ "learning_rate": 0.0006,
+ "loss": 3.4833765029907227,
+ "step": 5125
+ },
+ {
+ "epoch": 71.19571865443424,
+ "grad_norm": 0.2085893303155899,
+ "learning_rate": 0.0006,
+ "loss": 3.486340045928955,
+ "step": 5126
+ },
+ {
+ "epoch": 71.20969855832242,
+ "grad_norm": 0.23823733627796173,
+ "learning_rate": 0.0006,
+ "loss": 3.477477550506592,
+ "step": 5127
+ },
+ {
+ "epoch": 71.22367846221057,
+ "grad_norm": 0.2195197194814682,
+ "learning_rate": 0.0006,
+ "loss": 3.4914462566375732,
+ "step": 5128
+ },
+ {
+ "epoch": 71.23765836609873,
+ "grad_norm": 0.20015183091163635,
+ "learning_rate": 0.0006,
+ "loss": 3.4731597900390625,
+ "step": 5129
+ },
+ {
+ "epoch": 71.2516382699869,
+ "grad_norm": 0.22865013778209686,
+ "learning_rate": 0.0006,
+ "loss": 3.474112033843994,
+ "step": 5130
+ },
+ {
+ "epoch": 71.26561817387505,
+ "grad_norm": 0.23216912150382996,
+ "learning_rate": 0.0006,
+ "loss": 3.4641566276550293,
+ "step": 5131
+ },
+ {
+ "epoch": 71.27959807776321,
+ "grad_norm": 0.229189932346344,
+ "learning_rate": 0.0006,
+ "loss": 3.499788999557495,
+ "step": 5132
+ },
+ {
+ "epoch": 71.29357798165138,
+ "grad_norm": 0.21727289259433746,
+ "learning_rate": 0.0006,
+ "loss": 3.4823837280273438,
+ "step": 5133
+ },
+ {
+ "epoch": 71.30755788553954,
+ "grad_norm": 0.21023842692375183,
+ "learning_rate": 0.0006,
+ "loss": 3.4864656925201416,
+ "step": 5134
+ },
+ {
+ "epoch": 71.3215377894277,
+ "grad_norm": 0.2303229570388794,
+ "learning_rate": 0.0006,
+ "loss": 3.4989194869995117,
+ "step": 5135
+ },
+ {
+ "epoch": 71.33551769331586,
+ "grad_norm": 0.2317735254764557,
+ "learning_rate": 0.0006,
+ "loss": 3.460954189300537,
+ "step": 5136
+ },
+ {
+ "epoch": 71.34949759720402,
+ "grad_norm": 0.22612634301185608,
+ "learning_rate": 0.0006,
+ "loss": 3.5102381706237793,
+ "step": 5137
+ },
+ {
+ "epoch": 71.36347750109218,
+ "grad_norm": 0.23815463483333588,
+ "learning_rate": 0.0006,
+ "loss": 3.446244239807129,
+ "step": 5138
+ },
+ {
+ "epoch": 71.37745740498035,
+ "grad_norm": 0.22914297878742218,
+ "learning_rate": 0.0006,
+ "loss": 3.4789650440216064,
+ "step": 5139
+ },
+ {
+ "epoch": 71.3914373088685,
+ "grad_norm": 0.22563296556472778,
+ "learning_rate": 0.0006,
+ "loss": 3.490419864654541,
+ "step": 5140
+ },
+ {
+ "epoch": 71.40541721275666,
+ "grad_norm": 0.21704672276973724,
+ "learning_rate": 0.0006,
+ "loss": 3.503981113433838,
+ "step": 5141
+ },
+ {
+ "epoch": 71.41939711664482,
+ "grad_norm": 0.2196325659751892,
+ "learning_rate": 0.0006,
+ "loss": 3.4878809452056885,
+ "step": 5142
+ },
+ {
+ "epoch": 71.43337702053299,
+ "grad_norm": 0.21130836009979248,
+ "learning_rate": 0.0006,
+ "loss": 3.4546194076538086,
+ "step": 5143
+ },
+ {
+ "epoch": 71.44735692442114,
+ "grad_norm": 0.21542105078697205,
+ "learning_rate": 0.0006,
+ "loss": 3.4721519947052,
+ "step": 5144
+ },
+ {
+ "epoch": 71.4613368283093,
+ "grad_norm": 0.22387142479419708,
+ "learning_rate": 0.0006,
+ "loss": 3.4667282104492188,
+ "step": 5145
+ },
+ {
+ "epoch": 71.47531673219747,
+ "grad_norm": 0.23259611427783966,
+ "learning_rate": 0.0006,
+ "loss": 3.467545986175537,
+ "step": 5146
+ },
+ {
+ "epoch": 71.48929663608563,
+ "grad_norm": 0.2771410644054413,
+ "learning_rate": 0.0006,
+ "loss": 3.4783425331115723,
+ "step": 5147
+ },
+ {
+ "epoch": 71.50327653997378,
+ "grad_norm": 0.29756635427474976,
+ "learning_rate": 0.0006,
+ "loss": 3.492600440979004,
+ "step": 5148
+ },
+ {
+ "epoch": 71.51725644386195,
+ "grad_norm": 0.26306024193763733,
+ "learning_rate": 0.0006,
+ "loss": 3.510770559310913,
+ "step": 5149
+ },
+ {
+ "epoch": 71.53123634775011,
+ "grad_norm": 0.20751827955245972,
+ "learning_rate": 0.0006,
+ "loss": 3.466935634613037,
+ "step": 5150
+ },
+ {
+ "epoch": 71.54521625163827,
+ "grad_norm": 0.21394366025924683,
+ "learning_rate": 0.0006,
+ "loss": 3.436068058013916,
+ "step": 5151
+ },
+ {
+ "epoch": 71.55919615552644,
+ "grad_norm": 0.25711846351623535,
+ "learning_rate": 0.0006,
+ "loss": 3.484564781188965,
+ "step": 5152
+ },
+ {
+ "epoch": 71.57317605941459,
+ "grad_norm": 0.29579317569732666,
+ "learning_rate": 0.0006,
+ "loss": 3.4905800819396973,
+ "step": 5153
+ },
+ {
+ "epoch": 71.58715596330275,
+ "grad_norm": 0.3033061921596527,
+ "learning_rate": 0.0006,
+ "loss": 3.508679151535034,
+ "step": 5154
+ },
+ {
+ "epoch": 71.60113586719092,
+ "grad_norm": 0.2520291805267334,
+ "learning_rate": 0.0006,
+ "loss": 3.5057215690612793,
+ "step": 5155
+ },
+ {
+ "epoch": 71.61511577107908,
+ "grad_norm": 0.226261705160141,
+ "learning_rate": 0.0006,
+ "loss": 3.5037670135498047,
+ "step": 5156
+ },
+ {
+ "epoch": 71.62909567496723,
+ "grad_norm": 0.20596027374267578,
+ "learning_rate": 0.0006,
+ "loss": 3.495021343231201,
+ "step": 5157
+ },
+ {
+ "epoch": 71.6430755788554,
+ "grad_norm": 0.20619751513004303,
+ "learning_rate": 0.0006,
+ "loss": 3.4958693981170654,
+ "step": 5158
+ },
+ {
+ "epoch": 71.65705548274356,
+ "grad_norm": 0.24510066211223602,
+ "learning_rate": 0.0006,
+ "loss": 3.5301260948181152,
+ "step": 5159
+ },
+ {
+ "epoch": 71.67103538663171,
+ "grad_norm": 0.26109805703163147,
+ "learning_rate": 0.0006,
+ "loss": 3.5022244453430176,
+ "step": 5160
+ },
+ {
+ "epoch": 71.68501529051987,
+ "grad_norm": 0.28911513090133667,
+ "learning_rate": 0.0006,
+ "loss": 3.488947868347168,
+ "step": 5161
+ },
+ {
+ "epoch": 71.69899519440804,
+ "grad_norm": 0.2741655111312866,
+ "learning_rate": 0.0006,
+ "loss": 3.4888229370117188,
+ "step": 5162
+ },
+ {
+ "epoch": 71.7129750982962,
+ "grad_norm": 0.2789880633354187,
+ "learning_rate": 0.0006,
+ "loss": 3.4911744594573975,
+ "step": 5163
+ },
+ {
+ "epoch": 71.72695500218435,
+ "grad_norm": 0.23872195184230804,
+ "learning_rate": 0.0006,
+ "loss": 3.5175111293792725,
+ "step": 5164
+ },
+ {
+ "epoch": 71.74093490607252,
+ "grad_norm": 0.23090124130249023,
+ "learning_rate": 0.0006,
+ "loss": 3.477285861968994,
+ "step": 5165
+ },
+ {
+ "epoch": 71.75491480996068,
+ "grad_norm": 0.25918251276016235,
+ "learning_rate": 0.0006,
+ "loss": 3.5374622344970703,
+ "step": 5166
+ },
+ {
+ "epoch": 71.76889471384884,
+ "grad_norm": 0.28394266963005066,
+ "learning_rate": 0.0006,
+ "loss": 3.505443572998047,
+ "step": 5167
+ },
+ {
+ "epoch": 71.78287461773701,
+ "grad_norm": 0.29756471514701843,
+ "learning_rate": 0.0006,
+ "loss": 3.4858479499816895,
+ "step": 5168
+ },
+ {
+ "epoch": 71.79685452162516,
+ "grad_norm": 0.2913147211074829,
+ "learning_rate": 0.0006,
+ "loss": 3.4602723121643066,
+ "step": 5169
+ },
+ {
+ "epoch": 71.81083442551332,
+ "grad_norm": 0.23923781514167786,
+ "learning_rate": 0.0006,
+ "loss": 3.4713358879089355,
+ "step": 5170
+ },
+ {
+ "epoch": 71.82481432940149,
+ "grad_norm": 0.23478655517101288,
+ "learning_rate": 0.0006,
+ "loss": 3.4848878383636475,
+ "step": 5171
+ },
+ {
+ "epoch": 71.83879423328965,
+ "grad_norm": 0.2668255865573883,
+ "learning_rate": 0.0006,
+ "loss": 3.507920742034912,
+ "step": 5172
+ },
+ {
+ "epoch": 71.8527741371778,
+ "grad_norm": 0.2818165719509125,
+ "learning_rate": 0.0006,
+ "loss": 3.5128116607666016,
+ "step": 5173
+ },
+ {
+ "epoch": 71.86675404106597,
+ "grad_norm": 0.22830909490585327,
+ "learning_rate": 0.0006,
+ "loss": 3.4789090156555176,
+ "step": 5174
+ },
+ {
+ "epoch": 71.88073394495413,
+ "grad_norm": 0.2291419357061386,
+ "learning_rate": 0.0006,
+ "loss": 3.4977774620056152,
+ "step": 5175
+ },
+ {
+ "epoch": 71.89471384884229,
+ "grad_norm": 0.22237083315849304,
+ "learning_rate": 0.0006,
+ "loss": 3.5563011169433594,
+ "step": 5176
+ },
+ {
+ "epoch": 71.90869375273044,
+ "grad_norm": 0.2287488579750061,
+ "learning_rate": 0.0006,
+ "loss": 3.515289783477783,
+ "step": 5177
+ },
+ {
+ "epoch": 71.92267365661861,
+ "grad_norm": 0.21992293000221252,
+ "learning_rate": 0.0006,
+ "loss": 3.5213077068328857,
+ "step": 5178
+ },
+ {
+ "epoch": 71.93665356050677,
+ "grad_norm": 0.21338967978954315,
+ "learning_rate": 0.0006,
+ "loss": 3.5168190002441406,
+ "step": 5179
+ },
+ {
+ "epoch": 71.95063346439493,
+ "grad_norm": 0.2198970913887024,
+ "learning_rate": 0.0006,
+ "loss": 3.517268180847168,
+ "step": 5180
+ },
+ {
+ "epoch": 71.9646133682831,
+ "grad_norm": 0.2309885025024414,
+ "learning_rate": 0.0006,
+ "loss": 3.5538675785064697,
+ "step": 5181
+ },
+ {
+ "epoch": 71.97859327217125,
+ "grad_norm": 0.23529282212257385,
+ "learning_rate": 0.0006,
+ "loss": 3.477951765060425,
+ "step": 5182
+ },
+ {
+ "epoch": 71.99257317605941,
+ "grad_norm": 0.2553477883338928,
+ "learning_rate": 0.0006,
+ "loss": 3.502894878387451,
+ "step": 5183
+ },
+ {
+ "epoch": 72.0,
+ "grad_norm": 0.2943936288356781,
+ "learning_rate": 0.0006,
+ "loss": 3.5049710273742676,
+ "step": 5184
+ },
+ {
+ "epoch": 72.0,
+ "eval_loss": 3.9860572814941406,
+ "eval_runtime": 46.9591,
+ "eval_samples_per_second": 52.003,
+ "eval_steps_per_second": 3.258,
+ "step": 5184
+ },
+ {
+ "epoch": 72.01397990388816,
+ "grad_norm": 0.25285470485687256,
+ "learning_rate": 0.0006,
+ "loss": 3.4515252113342285,
+ "step": 5185
+ },
+ {
+ "epoch": 72.02795980777633,
+ "grad_norm": 0.29215890169143677,
+ "learning_rate": 0.0006,
+ "loss": 3.4472908973693848,
+ "step": 5186
+ },
+ {
+ "epoch": 72.04193971166448,
+ "grad_norm": 0.34719136357307434,
+ "learning_rate": 0.0006,
+ "loss": 3.4762914180755615,
+ "step": 5187
+ },
+ {
+ "epoch": 72.05591961555264,
+ "grad_norm": 0.31336039304733276,
+ "learning_rate": 0.0006,
+ "loss": 3.4866042137145996,
+ "step": 5188
+ },
+ {
+ "epoch": 72.06989951944081,
+ "grad_norm": 0.2586875557899475,
+ "learning_rate": 0.0006,
+ "loss": 3.4296340942382812,
+ "step": 5189
+ },
+ {
+ "epoch": 72.08387942332897,
+ "grad_norm": 0.2677823603153229,
+ "learning_rate": 0.0006,
+ "loss": 3.442481517791748,
+ "step": 5190
+ },
+ {
+ "epoch": 72.09785932721712,
+ "grad_norm": 0.30640944838523865,
+ "learning_rate": 0.0006,
+ "loss": 3.435530424118042,
+ "step": 5191
+ },
+ {
+ "epoch": 72.1118392311053,
+ "grad_norm": 0.29822733998298645,
+ "learning_rate": 0.0006,
+ "loss": 3.4399731159210205,
+ "step": 5192
+ },
+ {
+ "epoch": 72.12581913499345,
+ "grad_norm": 0.25714683532714844,
+ "learning_rate": 0.0006,
+ "loss": 3.4679667949676514,
+ "step": 5193
+ },
+ {
+ "epoch": 72.1397990388816,
+ "grad_norm": 0.2347356528043747,
+ "learning_rate": 0.0006,
+ "loss": 3.4473838806152344,
+ "step": 5194
+ },
+ {
+ "epoch": 72.15377894276976,
+ "grad_norm": 0.23640039563179016,
+ "learning_rate": 0.0006,
+ "loss": 3.4716782569885254,
+ "step": 5195
+ },
+ {
+ "epoch": 72.16775884665793,
+ "grad_norm": 0.2285412698984146,
+ "learning_rate": 0.0006,
+ "loss": 3.4927384853363037,
+ "step": 5196
+ },
+ {
+ "epoch": 72.18173875054609,
+ "grad_norm": 0.2305673509836197,
+ "learning_rate": 0.0006,
+ "loss": 3.5064914226531982,
+ "step": 5197
+ },
+ {
+ "epoch": 72.19571865443424,
+ "grad_norm": 0.21706514060497284,
+ "learning_rate": 0.0006,
+ "loss": 3.4467828273773193,
+ "step": 5198
+ },
+ {
+ "epoch": 72.20969855832242,
+ "grad_norm": 0.21769501268863678,
+ "learning_rate": 0.0006,
+ "loss": 3.473309278488159,
+ "step": 5199
+ },
+ {
+ "epoch": 72.22367846221057,
+ "grad_norm": 0.23256097733974457,
+ "learning_rate": 0.0006,
+ "loss": 3.457587718963623,
+ "step": 5200
+ },
+ {
+ "epoch": 72.23765836609873,
+ "grad_norm": 0.23531964421272278,
+ "learning_rate": 0.0006,
+ "loss": 3.485863208770752,
+ "step": 5201
+ },
+ {
+ "epoch": 72.2516382699869,
+ "grad_norm": 0.2240941971540451,
+ "learning_rate": 0.0006,
+ "loss": 3.4677062034606934,
+ "step": 5202
+ },
+ {
+ "epoch": 72.26561817387505,
+ "grad_norm": 0.22390629351139069,
+ "learning_rate": 0.0006,
+ "loss": 3.5203280448913574,
+ "step": 5203
+ },
+ {
+ "epoch": 72.27959807776321,
+ "grad_norm": 0.21178147196769714,
+ "learning_rate": 0.0006,
+ "loss": 3.4824347496032715,
+ "step": 5204
+ },
+ {
+ "epoch": 72.29357798165138,
+ "grad_norm": 0.21738161146640778,
+ "learning_rate": 0.0006,
+ "loss": 3.4587113857269287,
+ "step": 5205
+ },
+ {
+ "epoch": 72.30755788553954,
+ "grad_norm": 0.21534697711467743,
+ "learning_rate": 0.0006,
+ "loss": 3.499147415161133,
+ "step": 5206
+ },
+ {
+ "epoch": 72.3215377894277,
+ "grad_norm": 0.22616741061210632,
+ "learning_rate": 0.0006,
+ "loss": 3.5025434494018555,
+ "step": 5207
+ },
+ {
+ "epoch": 72.33551769331586,
+ "grad_norm": 0.26784682273864746,
+ "learning_rate": 0.0006,
+ "loss": 3.4733633995056152,
+ "step": 5208
+ },
+ {
+ "epoch": 72.34949759720402,
+ "grad_norm": 0.2774837911128998,
+ "learning_rate": 0.0006,
+ "loss": 3.508082389831543,
+ "step": 5209
+ },
+ {
+ "epoch": 72.36347750109218,
+ "grad_norm": 0.28039997816085815,
+ "learning_rate": 0.0006,
+ "loss": 3.503880500793457,
+ "step": 5210
+ },
+ {
+ "epoch": 72.37745740498035,
+ "grad_norm": 0.2990040183067322,
+ "learning_rate": 0.0006,
+ "loss": 3.4885363578796387,
+ "step": 5211
+ },
+ {
+ "epoch": 72.3914373088685,
+ "grad_norm": 0.2857728600502014,
+ "learning_rate": 0.0006,
+ "loss": 3.4977049827575684,
+ "step": 5212
+ },
+ {
+ "epoch": 72.40541721275666,
+ "grad_norm": 0.2675400972366333,
+ "learning_rate": 0.0006,
+ "loss": 3.49003267288208,
+ "step": 5213
+ },
+ {
+ "epoch": 72.41939711664482,
+ "grad_norm": 0.258004367351532,
+ "learning_rate": 0.0006,
+ "loss": 3.4726967811584473,
+ "step": 5214
+ },
+ {
+ "epoch": 72.43337702053299,
+ "grad_norm": 0.20816923677921295,
+ "learning_rate": 0.0006,
+ "loss": 3.4798901081085205,
+ "step": 5215
+ },
+ {
+ "epoch": 72.44735692442114,
+ "grad_norm": 0.21589888632297516,
+ "learning_rate": 0.0006,
+ "loss": 3.4784836769104004,
+ "step": 5216
+ },
+ {
+ "epoch": 72.4613368283093,
+ "grad_norm": 0.22663359344005585,
+ "learning_rate": 0.0006,
+ "loss": 3.5278806686401367,
+ "step": 5217
+ },
+ {
+ "epoch": 72.47531673219747,
+ "grad_norm": 0.2165268212556839,
+ "learning_rate": 0.0006,
+ "loss": 3.5198988914489746,
+ "step": 5218
+ },
+ {
+ "epoch": 72.48929663608563,
+ "grad_norm": 0.22635547816753387,
+ "learning_rate": 0.0006,
+ "loss": 3.476203441619873,
+ "step": 5219
+ },
+ {
+ "epoch": 72.50327653997378,
+ "grad_norm": 0.23315833508968353,
+ "learning_rate": 0.0006,
+ "loss": 3.4451494216918945,
+ "step": 5220
+ },
+ {
+ "epoch": 72.51725644386195,
+ "grad_norm": 0.2262018620967865,
+ "learning_rate": 0.0006,
+ "loss": 3.5126566886901855,
+ "step": 5221
+ },
+ {
+ "epoch": 72.53123634775011,
+ "grad_norm": 0.2273683398962021,
+ "learning_rate": 0.0006,
+ "loss": 3.485413074493408,
+ "step": 5222
+ },
+ {
+ "epoch": 72.54521625163827,
+ "grad_norm": 0.25254759192466736,
+ "learning_rate": 0.0006,
+ "loss": 3.4997940063476562,
+ "step": 5223
+ },
+ {
+ "epoch": 72.55919615552644,
+ "grad_norm": 0.23467472195625305,
+ "learning_rate": 0.0006,
+ "loss": 3.4924259185791016,
+ "step": 5224
+ },
+ {
+ "epoch": 72.57317605941459,
+ "grad_norm": 0.20206208527088165,
+ "learning_rate": 0.0006,
+ "loss": 3.5010361671447754,
+ "step": 5225
+ },
+ {
+ "epoch": 72.58715596330275,
+ "grad_norm": 0.21526813507080078,
+ "learning_rate": 0.0006,
+ "loss": 3.4889681339263916,
+ "step": 5226
+ },
+ {
+ "epoch": 72.60113586719092,
+ "grad_norm": 0.212263822555542,
+ "learning_rate": 0.0006,
+ "loss": 3.467782497406006,
+ "step": 5227
+ },
+ {
+ "epoch": 72.61511577107908,
+ "grad_norm": 0.2126736342906952,
+ "learning_rate": 0.0006,
+ "loss": 3.470729112625122,
+ "step": 5228
+ },
+ {
+ "epoch": 72.62909567496723,
+ "grad_norm": 0.22448696196079254,
+ "learning_rate": 0.0006,
+ "loss": 3.4688234329223633,
+ "step": 5229
+ },
+ {
+ "epoch": 72.6430755788554,
+ "grad_norm": 0.2322869449853897,
+ "learning_rate": 0.0006,
+ "loss": 3.490103244781494,
+ "step": 5230
+ },
+ {
+ "epoch": 72.65705548274356,
+ "grad_norm": 0.220216765999794,
+ "learning_rate": 0.0006,
+ "loss": 3.474886894226074,
+ "step": 5231
+ },
+ {
+ "epoch": 72.67103538663171,
+ "grad_norm": 0.2191896289587021,
+ "learning_rate": 0.0006,
+ "loss": 3.4965224266052246,
+ "step": 5232
+ },
+ {
+ "epoch": 72.68501529051987,
+ "grad_norm": 0.2120339423418045,
+ "learning_rate": 0.0006,
+ "loss": 3.4710934162139893,
+ "step": 5233
+ },
+ {
+ "epoch": 72.69899519440804,
+ "grad_norm": 0.21517711877822876,
+ "learning_rate": 0.0006,
+ "loss": 3.4698405265808105,
+ "step": 5234
+ },
+ {
+ "epoch": 72.7129750982962,
+ "grad_norm": 0.22012922167778015,
+ "learning_rate": 0.0006,
+ "loss": 3.513930320739746,
+ "step": 5235
+ },
+ {
+ "epoch": 72.72695500218435,
+ "grad_norm": 0.19231025874614716,
+ "learning_rate": 0.0006,
+ "loss": 3.476353168487549,
+ "step": 5236
+ },
+ {
+ "epoch": 72.74093490607252,
+ "grad_norm": 0.19383855164051056,
+ "learning_rate": 0.0006,
+ "loss": 3.5002031326293945,
+ "step": 5237
+ },
+ {
+ "epoch": 72.75491480996068,
+ "grad_norm": 0.22001665830612183,
+ "learning_rate": 0.0006,
+ "loss": 3.5080370903015137,
+ "step": 5238
+ },
+ {
+ "epoch": 72.76889471384884,
+ "grad_norm": 0.27273863554000854,
+ "learning_rate": 0.0006,
+ "loss": 3.504277229309082,
+ "step": 5239
+ },
+ {
+ "epoch": 72.78287461773701,
+ "grad_norm": 0.29014623165130615,
+ "learning_rate": 0.0006,
+ "loss": 3.493192195892334,
+ "step": 5240
+ },
+ {
+ "epoch": 72.79685452162516,
+ "grad_norm": 0.23816372454166412,
+ "learning_rate": 0.0006,
+ "loss": 3.519443988800049,
+ "step": 5241
+ },
+ {
+ "epoch": 72.81083442551332,
+ "grad_norm": 0.24076248705387115,
+ "learning_rate": 0.0006,
+ "loss": 3.4935712814331055,
+ "step": 5242
+ },
+ {
+ "epoch": 72.82481432940149,
+ "grad_norm": 0.264731764793396,
+ "learning_rate": 0.0006,
+ "loss": 3.5004658699035645,
+ "step": 5243
+ },
+ {
+ "epoch": 72.83879423328965,
+ "grad_norm": 0.2939820885658264,
+ "learning_rate": 0.0006,
+ "loss": 3.5297188758850098,
+ "step": 5244
+ },
+ {
+ "epoch": 72.8527741371778,
+ "grad_norm": 0.2904265522956848,
+ "learning_rate": 0.0006,
+ "loss": 3.496081829071045,
+ "step": 5245
+ },
+ {
+ "epoch": 72.86675404106597,
+ "grad_norm": 0.23428429663181305,
+ "learning_rate": 0.0006,
+ "loss": 3.493727684020996,
+ "step": 5246
+ },
+ {
+ "epoch": 72.88073394495413,
+ "grad_norm": 0.22780542075634003,
+ "learning_rate": 0.0006,
+ "loss": 3.523094654083252,
+ "step": 5247
+ },
+ {
+ "epoch": 72.89471384884229,
+ "grad_norm": 0.2745443284511566,
+ "learning_rate": 0.0006,
+ "loss": 3.497293472290039,
+ "step": 5248
+ },
+ {
+ "epoch": 72.90869375273044,
+ "grad_norm": 0.2678476870059967,
+ "learning_rate": 0.0006,
+ "loss": 3.5067732334136963,
+ "step": 5249
+ },
+ {
+ "epoch": 72.92267365661861,
+ "grad_norm": 0.2085755169391632,
+ "learning_rate": 0.0006,
+ "loss": 3.4695444107055664,
+ "step": 5250
+ },
+ {
+ "epoch": 72.93665356050677,
+ "grad_norm": 0.21488192677497864,
+ "learning_rate": 0.0006,
+ "loss": 3.522829055786133,
+ "step": 5251
+ },
+ {
+ "epoch": 72.95063346439493,
+ "grad_norm": 0.21374237537384033,
+ "learning_rate": 0.0006,
+ "loss": 3.5045344829559326,
+ "step": 5252
+ },
+ {
+ "epoch": 72.9646133682831,
+ "grad_norm": 0.23072510957717896,
+ "learning_rate": 0.0006,
+ "loss": 3.474557399749756,
+ "step": 5253
+ },
+ {
+ "epoch": 72.97859327217125,
+ "grad_norm": 0.22491991519927979,
+ "learning_rate": 0.0006,
+ "loss": 3.489443778991699,
+ "step": 5254
+ },
+ {
+ "epoch": 72.99257317605941,
+ "grad_norm": 0.22613948583602905,
+ "learning_rate": 0.0006,
+ "loss": 3.5056793689727783,
+ "step": 5255
+ },
+ {
+ "epoch": 73.0,
+ "grad_norm": 0.23435193300247192,
+ "learning_rate": 0.0006,
+ "loss": 3.520559787750244,
+ "step": 5256
+ },
+ {
+ "epoch": 73.0,
+ "eval_loss": 3.982722282409668,
+ "eval_runtime": 46.464,
+ "eval_samples_per_second": 52.557,
+ "eval_steps_per_second": 3.293,
+ "step": 5256
+ },
+ {
+ "epoch": 73.01397990388816,
+ "grad_norm": 0.22881661355495453,
+ "learning_rate": 0.0006,
+ "loss": 3.468254566192627,
+ "step": 5257
+ },
+ {
+ "epoch": 73.02795980777633,
+ "grad_norm": 0.2834230959415436,
+ "learning_rate": 0.0006,
+ "loss": 3.4606356620788574,
+ "step": 5258
+ },
+ {
+ "epoch": 73.04193971166448,
+ "grad_norm": 0.319560170173645,
+ "learning_rate": 0.0006,
+ "loss": 3.475505828857422,
+ "step": 5259
+ },
+ {
+ "epoch": 73.05591961555264,
+ "grad_norm": 0.32880520820617676,
+ "learning_rate": 0.0006,
+ "loss": 3.493833541870117,
+ "step": 5260
+ },
+ {
+ "epoch": 73.06989951944081,
+ "grad_norm": 0.2588718831539154,
+ "learning_rate": 0.0006,
+ "loss": 3.469942092895508,
+ "step": 5261
+ },
+ {
+ "epoch": 73.08387942332897,
+ "grad_norm": 0.2732829749584198,
+ "learning_rate": 0.0006,
+ "loss": 3.4531373977661133,
+ "step": 5262
+ },
+ {
+ "epoch": 73.09785932721712,
+ "grad_norm": 0.320829302072525,
+ "learning_rate": 0.0006,
+ "loss": 3.492429256439209,
+ "step": 5263
+ },
+ {
+ "epoch": 73.1118392311053,
+ "grad_norm": 0.24258096516132355,
+ "learning_rate": 0.0006,
+ "loss": 3.4776196479797363,
+ "step": 5264
+ },
+ {
+ "epoch": 73.12581913499345,
+ "grad_norm": 0.24697262048721313,
+ "learning_rate": 0.0006,
+ "loss": 3.4624526500701904,
+ "step": 5265
+ },
+ {
+ "epoch": 73.1397990388816,
+ "grad_norm": 0.2629360258579254,
+ "learning_rate": 0.0006,
+ "loss": 3.4608631134033203,
+ "step": 5266
+ },
+ {
+ "epoch": 73.15377894276976,
+ "grad_norm": 0.27060654759407043,
+ "learning_rate": 0.0006,
+ "loss": 3.4834189414978027,
+ "step": 5267
+ },
+ {
+ "epoch": 73.16775884665793,
+ "grad_norm": 0.246307834982872,
+ "learning_rate": 0.0006,
+ "loss": 3.477510929107666,
+ "step": 5268
+ },
+ {
+ "epoch": 73.18173875054609,
+ "grad_norm": 0.2469998300075531,
+ "learning_rate": 0.0006,
+ "loss": 3.4855780601501465,
+ "step": 5269
+ },
+ {
+ "epoch": 73.19571865443424,
+ "grad_norm": 0.24349135160446167,
+ "learning_rate": 0.0006,
+ "loss": 3.468322277069092,
+ "step": 5270
+ },
+ {
+ "epoch": 73.20969855832242,
+ "grad_norm": 0.22562023997306824,
+ "learning_rate": 0.0006,
+ "loss": 3.4036335945129395,
+ "step": 5271
+ },
+ {
+ "epoch": 73.22367846221057,
+ "grad_norm": 0.2311064749956131,
+ "learning_rate": 0.0006,
+ "loss": 3.4399924278259277,
+ "step": 5272
+ },
+ {
+ "epoch": 73.23765836609873,
+ "grad_norm": 0.21685704588890076,
+ "learning_rate": 0.0006,
+ "loss": 3.476149797439575,
+ "step": 5273
+ },
+ {
+ "epoch": 73.2516382699869,
+ "grad_norm": 0.22484169900417328,
+ "learning_rate": 0.0006,
+ "loss": 3.475130081176758,
+ "step": 5274
+ },
+ {
+ "epoch": 73.26561817387505,
+ "grad_norm": 0.22753819823265076,
+ "learning_rate": 0.0006,
+ "loss": 3.5259978771209717,
+ "step": 5275
+ },
+ {
+ "epoch": 73.27959807776321,
+ "grad_norm": 0.23297421634197235,
+ "learning_rate": 0.0006,
+ "loss": 3.4897689819335938,
+ "step": 5276
+ },
+ {
+ "epoch": 73.29357798165138,
+ "grad_norm": 0.22227609157562256,
+ "learning_rate": 0.0006,
+ "loss": 3.4681925773620605,
+ "step": 5277
+ },
+ {
+ "epoch": 73.30755788553954,
+ "grad_norm": 0.23390381038188934,
+ "learning_rate": 0.0006,
+ "loss": 3.4816267490386963,
+ "step": 5278
+ },
+ {
+ "epoch": 73.3215377894277,
+ "grad_norm": 0.25036972761154175,
+ "learning_rate": 0.0006,
+ "loss": 3.4513161182403564,
+ "step": 5279
+ },
+ {
+ "epoch": 73.33551769331586,
+ "grad_norm": 0.22425831854343414,
+ "learning_rate": 0.0006,
+ "loss": 3.504206657409668,
+ "step": 5280
+ },
+ {
+ "epoch": 73.34949759720402,
+ "grad_norm": 0.20987127721309662,
+ "learning_rate": 0.0006,
+ "loss": 3.463526487350464,
+ "step": 5281
+ },
+ {
+ "epoch": 73.36347750109218,
+ "grad_norm": 0.22594138979911804,
+ "learning_rate": 0.0006,
+ "loss": 3.467395067214966,
+ "step": 5282
+ },
+ {
+ "epoch": 73.37745740498035,
+ "grad_norm": 0.2819368243217468,
+ "learning_rate": 0.0006,
+ "loss": 3.458601236343384,
+ "step": 5283
+ },
+ {
+ "epoch": 73.3914373088685,
+ "grad_norm": 0.28703081607818604,
+ "learning_rate": 0.0006,
+ "loss": 3.489081382751465,
+ "step": 5284
+ },
+ {
+ "epoch": 73.40541721275666,
+ "grad_norm": 0.22495481371879578,
+ "learning_rate": 0.0006,
+ "loss": 3.4584622383117676,
+ "step": 5285
+ },
+ {
+ "epoch": 73.41939711664482,
+ "grad_norm": 0.26278403401374817,
+ "learning_rate": 0.0006,
+ "loss": 3.4610750675201416,
+ "step": 5286
+ },
+ {
+ "epoch": 73.43337702053299,
+ "grad_norm": 0.2335882931947708,
+ "learning_rate": 0.0006,
+ "loss": 3.4642205238342285,
+ "step": 5287
+ },
+ {
+ "epoch": 73.44735692442114,
+ "grad_norm": 0.23634950816631317,
+ "learning_rate": 0.0006,
+ "loss": 3.4628195762634277,
+ "step": 5288
+ },
+ {
+ "epoch": 73.4613368283093,
+ "grad_norm": 0.2428942620754242,
+ "learning_rate": 0.0006,
+ "loss": 3.486786365509033,
+ "step": 5289
+ },
+ {
+ "epoch": 73.47531673219747,
+ "grad_norm": 0.2235412299633026,
+ "learning_rate": 0.0006,
+ "loss": 3.4655373096466064,
+ "step": 5290
+ },
+ {
+ "epoch": 73.48929663608563,
+ "grad_norm": 0.22825124859809875,
+ "learning_rate": 0.0006,
+ "loss": 3.519115924835205,
+ "step": 5291
+ },
+ {
+ "epoch": 73.50327653997378,
+ "grad_norm": 0.22555601596832275,
+ "learning_rate": 0.0006,
+ "loss": 3.4672327041625977,
+ "step": 5292
+ },
+ {
+ "epoch": 73.51725644386195,
+ "grad_norm": 0.21196876466274261,
+ "learning_rate": 0.0006,
+ "loss": 3.477919101715088,
+ "step": 5293
+ },
+ {
+ "epoch": 73.53123634775011,
+ "grad_norm": 0.21254780888557434,
+ "learning_rate": 0.0006,
+ "loss": 3.493739604949951,
+ "step": 5294
+ },
+ {
+ "epoch": 73.54521625163827,
+ "grad_norm": 0.22243253886699677,
+ "learning_rate": 0.0006,
+ "loss": 3.5028891563415527,
+ "step": 5295
+ },
+ {
+ "epoch": 73.55919615552644,
+ "grad_norm": 0.1982688158750534,
+ "learning_rate": 0.0006,
+ "loss": 3.490211009979248,
+ "step": 5296
+ },
+ {
+ "epoch": 73.57317605941459,
+ "grad_norm": 0.19433127343654633,
+ "learning_rate": 0.0006,
+ "loss": 3.5000174045562744,
+ "step": 5297
+ },
+ {
+ "epoch": 73.58715596330275,
+ "grad_norm": 0.19470061361789703,
+ "learning_rate": 0.0006,
+ "loss": 3.4725089073181152,
+ "step": 5298
+ },
+ {
+ "epoch": 73.60113586719092,
+ "grad_norm": 0.20479093492031097,
+ "learning_rate": 0.0006,
+ "loss": 3.473649501800537,
+ "step": 5299
+ },
+ {
+ "epoch": 73.61511577107908,
+ "grad_norm": 0.22485226392745972,
+ "learning_rate": 0.0006,
+ "loss": 3.5234975814819336,
+ "step": 5300
+ },
+ {
+ "epoch": 73.62909567496723,
+ "grad_norm": 0.2219000905752182,
+ "learning_rate": 0.0006,
+ "loss": 3.483283281326294,
+ "step": 5301
+ },
+ {
+ "epoch": 73.6430755788554,
+ "grad_norm": 0.25735849142074585,
+ "learning_rate": 0.0006,
+ "loss": 3.4863831996917725,
+ "step": 5302
+ },
+ {
+ "epoch": 73.65705548274356,
+ "grad_norm": 0.2822291851043701,
+ "learning_rate": 0.0006,
+ "loss": 3.4864425659179688,
+ "step": 5303
+ },
+ {
+ "epoch": 73.67103538663171,
+ "grad_norm": 0.2965867817401886,
+ "learning_rate": 0.0006,
+ "loss": 3.487774133682251,
+ "step": 5304
+ },
+ {
+ "epoch": 73.68501529051987,
+ "grad_norm": 0.2446807473897934,
+ "learning_rate": 0.0006,
+ "loss": 3.485553741455078,
+ "step": 5305
+ },
+ {
+ "epoch": 73.69899519440804,
+ "grad_norm": 0.2298526167869568,
+ "learning_rate": 0.0006,
+ "loss": 3.4513039588928223,
+ "step": 5306
+ },
+ {
+ "epoch": 73.7129750982962,
+ "grad_norm": 0.24967409670352936,
+ "learning_rate": 0.0006,
+ "loss": 3.4974756240844727,
+ "step": 5307
+ },
+ {
+ "epoch": 73.72695500218435,
+ "grad_norm": 0.22180770337581635,
+ "learning_rate": 0.0006,
+ "loss": 3.501955509185791,
+ "step": 5308
+ },
+ {
+ "epoch": 73.74093490607252,
+ "grad_norm": 0.21294254064559937,
+ "learning_rate": 0.0006,
+ "loss": 3.52626371383667,
+ "step": 5309
+ },
+ {
+ "epoch": 73.75491480996068,
+ "grad_norm": 0.23970918357372284,
+ "learning_rate": 0.0006,
+ "loss": 3.479355812072754,
+ "step": 5310
+ },
+ {
+ "epoch": 73.76889471384884,
+ "grad_norm": 0.22978267073631287,
+ "learning_rate": 0.0006,
+ "loss": 3.4972357749938965,
+ "step": 5311
+ },
+ {
+ "epoch": 73.78287461773701,
+ "grad_norm": 0.22393731772899628,
+ "learning_rate": 0.0006,
+ "loss": 3.499718189239502,
+ "step": 5312
+ },
+ {
+ "epoch": 73.79685452162516,
+ "grad_norm": 0.2265646904706955,
+ "learning_rate": 0.0006,
+ "loss": 3.5240416526794434,
+ "step": 5313
+ },
+ {
+ "epoch": 73.81083442551332,
+ "grad_norm": 0.23060904443264008,
+ "learning_rate": 0.0006,
+ "loss": 3.4981179237365723,
+ "step": 5314
+ },
+ {
+ "epoch": 73.82481432940149,
+ "grad_norm": 0.2358054369688034,
+ "learning_rate": 0.0006,
+ "loss": 3.4671754837036133,
+ "step": 5315
+ },
+ {
+ "epoch": 73.83879423328965,
+ "grad_norm": 0.22466880083084106,
+ "learning_rate": 0.0006,
+ "loss": 3.5178170204162598,
+ "step": 5316
+ },
+ {
+ "epoch": 73.8527741371778,
+ "grad_norm": 0.24523386359214783,
+ "learning_rate": 0.0006,
+ "loss": 3.5059657096862793,
+ "step": 5317
+ },
+ {
+ "epoch": 73.86675404106597,
+ "grad_norm": 0.24812379479408264,
+ "learning_rate": 0.0006,
+ "loss": 3.4979734420776367,
+ "step": 5318
+ },
+ {
+ "epoch": 73.88073394495413,
+ "grad_norm": 0.2210223525762558,
+ "learning_rate": 0.0006,
+ "loss": 3.5158674716949463,
+ "step": 5319
+ },
+ {
+ "epoch": 73.89471384884229,
+ "grad_norm": 0.23374506831169128,
+ "learning_rate": 0.0006,
+ "loss": 3.4730381965637207,
+ "step": 5320
+ },
+ {
+ "epoch": 73.90869375273044,
+ "grad_norm": 0.2209903597831726,
+ "learning_rate": 0.0006,
+ "loss": 3.5152671337127686,
+ "step": 5321
+ },
+ {
+ "epoch": 73.92267365661861,
+ "grad_norm": 0.19783467054367065,
+ "learning_rate": 0.0006,
+ "loss": 3.508627414703369,
+ "step": 5322
+ },
+ {
+ "epoch": 73.93665356050677,
+ "grad_norm": 0.20683151483535767,
+ "learning_rate": 0.0006,
+ "loss": 3.5041322708129883,
+ "step": 5323
+ },
+ {
+ "epoch": 73.95063346439493,
+ "grad_norm": 0.20111984014511108,
+ "learning_rate": 0.0006,
+ "loss": 3.4618184566497803,
+ "step": 5324
+ },
+ {
+ "epoch": 73.9646133682831,
+ "grad_norm": 0.22296449542045593,
+ "learning_rate": 0.0006,
+ "loss": 3.4695611000061035,
+ "step": 5325
+ },
+ {
+ "epoch": 73.97859327217125,
+ "grad_norm": 0.22317543625831604,
+ "learning_rate": 0.0006,
+ "loss": 3.497115135192871,
+ "step": 5326
+ },
+ {
+ "epoch": 73.99257317605941,
+ "grad_norm": 0.19182799756526947,
+ "learning_rate": 0.0006,
+ "loss": 3.502279758453369,
+ "step": 5327
+ },
+ {
+ "epoch": 74.0,
+ "grad_norm": 0.2484123259782791,
+ "learning_rate": 0.0006,
+ "loss": 3.4998650550842285,
+ "step": 5328
+ },
+ {
+ "epoch": 74.0,
+ "eval_loss": 3.977353572845459,
+ "eval_runtime": 46.9154,
+ "eval_samples_per_second": 52.051,
+ "eval_steps_per_second": 3.261,
+ "step": 5328
+ },
+ {
+ "epoch": 74.01397990388816,
+ "grad_norm": 0.2512458860874176,
+ "learning_rate": 0.0006,
+ "loss": 3.454616069793701,
+ "step": 5329
+ },
+ {
+ "epoch": 74.02795980777633,
+ "grad_norm": 0.2781964838504791,
+ "learning_rate": 0.0006,
+ "loss": 3.4444780349731445,
+ "step": 5330
+ },
+ {
+ "epoch": 74.04193971166448,
+ "grad_norm": 0.3014058470726013,
+ "learning_rate": 0.0006,
+ "loss": 3.4059829711914062,
+ "step": 5331
+ },
+ {
+ "epoch": 74.05591961555264,
+ "grad_norm": 0.28226929903030396,
+ "learning_rate": 0.0006,
+ "loss": 3.474538803100586,
+ "step": 5332
+ },
+ {
+ "epoch": 74.06989951944081,
+ "grad_norm": 0.22589807212352753,
+ "learning_rate": 0.0006,
+ "loss": 3.4484004974365234,
+ "step": 5333
+ },
+ {
+ "epoch": 74.08387942332897,
+ "grad_norm": 0.2317565679550171,
+ "learning_rate": 0.0006,
+ "loss": 3.4559502601623535,
+ "step": 5334
+ },
+ {
+ "epoch": 74.09785932721712,
+ "grad_norm": 0.2484085112810135,
+ "learning_rate": 0.0006,
+ "loss": 3.4723763465881348,
+ "step": 5335
+ },
+ {
+ "epoch": 74.1118392311053,
+ "grad_norm": 0.24313412606716156,
+ "learning_rate": 0.0006,
+ "loss": 3.4581704139709473,
+ "step": 5336
+ },
+ {
+ "epoch": 74.12581913499345,
+ "grad_norm": 0.2317453771829605,
+ "learning_rate": 0.0006,
+ "loss": 3.4556710720062256,
+ "step": 5337
+ },
+ {
+ "epoch": 74.1397990388816,
+ "grad_norm": 0.2423294484615326,
+ "learning_rate": 0.0006,
+ "loss": 3.450899124145508,
+ "step": 5338
+ },
+ {
+ "epoch": 74.15377894276976,
+ "grad_norm": 0.24861979484558105,
+ "learning_rate": 0.0006,
+ "loss": 3.4524154663085938,
+ "step": 5339
+ },
+ {
+ "epoch": 74.16775884665793,
+ "grad_norm": 0.27226537466049194,
+ "learning_rate": 0.0006,
+ "loss": 3.4728293418884277,
+ "step": 5340
+ },
+ {
+ "epoch": 74.18173875054609,
+ "grad_norm": 0.29282820224761963,
+ "learning_rate": 0.0006,
+ "loss": 3.482450008392334,
+ "step": 5341
+ },
+ {
+ "epoch": 74.19571865443424,
+ "grad_norm": 0.2666662931442261,
+ "learning_rate": 0.0006,
+ "loss": 3.4708619117736816,
+ "step": 5342
+ },
+ {
+ "epoch": 74.20969855832242,
+ "grad_norm": 0.22029168903827667,
+ "learning_rate": 0.0006,
+ "loss": 3.4592952728271484,
+ "step": 5343
+ },
+ {
+ "epoch": 74.22367846221057,
+ "grad_norm": 0.21203964948654175,
+ "learning_rate": 0.0006,
+ "loss": 3.4983129501342773,
+ "step": 5344
+ },
+ {
+ "epoch": 74.23765836609873,
+ "grad_norm": 0.24254444241523743,
+ "learning_rate": 0.0006,
+ "loss": 3.4695663452148438,
+ "step": 5345
+ },
+ {
+ "epoch": 74.2516382699869,
+ "grad_norm": 0.28514090180397034,
+ "learning_rate": 0.0006,
+ "loss": 3.501779556274414,
+ "step": 5346
+ },
+ {
+ "epoch": 74.26561817387505,
+ "grad_norm": 0.27082809805870056,
+ "learning_rate": 0.0006,
+ "loss": 3.4754765033721924,
+ "step": 5347
+ },
+ {
+ "epoch": 74.27959807776321,
+ "grad_norm": 0.21144570410251617,
+ "learning_rate": 0.0006,
+ "loss": 3.481623649597168,
+ "step": 5348
+ },
+ {
+ "epoch": 74.29357798165138,
+ "grad_norm": 0.23012803494930267,
+ "learning_rate": 0.0006,
+ "loss": 3.478872776031494,
+ "step": 5349
+ },
+ {
+ "epoch": 74.30755788553954,
+ "grad_norm": 0.2497818022966385,
+ "learning_rate": 0.0006,
+ "loss": 3.465214252471924,
+ "step": 5350
+ },
+ {
+ "epoch": 74.3215377894277,
+ "grad_norm": 0.27346086502075195,
+ "learning_rate": 0.0006,
+ "loss": 3.4749603271484375,
+ "step": 5351
+ },
+ {
+ "epoch": 74.33551769331586,
+ "grad_norm": 0.24193984270095825,
+ "learning_rate": 0.0006,
+ "loss": 3.4898180961608887,
+ "step": 5352
+ },
+ {
+ "epoch": 74.34949759720402,
+ "grad_norm": 0.2432994395494461,
+ "learning_rate": 0.0006,
+ "loss": 3.478156089782715,
+ "step": 5353
+ },
+ {
+ "epoch": 74.36347750109218,
+ "grad_norm": 0.331503689289093,
+ "learning_rate": 0.0006,
+ "loss": 3.496690273284912,
+ "step": 5354
+ },
+ {
+ "epoch": 74.37745740498035,
+ "grad_norm": 0.27467086911201477,
+ "learning_rate": 0.0006,
+ "loss": 3.472379684448242,
+ "step": 5355
+ },
+ {
+ "epoch": 74.3914373088685,
+ "grad_norm": 0.23563839495182037,
+ "learning_rate": 0.0006,
+ "loss": 3.4963388442993164,
+ "step": 5356
+ },
+ {
+ "epoch": 74.40541721275666,
+ "grad_norm": 0.23829393088817596,
+ "learning_rate": 0.0006,
+ "loss": 3.473438262939453,
+ "step": 5357
+ },
+ {
+ "epoch": 74.41939711664482,
+ "grad_norm": 0.28113624453544617,
+ "learning_rate": 0.0006,
+ "loss": 3.481104612350464,
+ "step": 5358
+ },
+ {
+ "epoch": 74.43337702053299,
+ "grad_norm": 0.29099389910697937,
+ "learning_rate": 0.0006,
+ "loss": 3.497255325317383,
+ "step": 5359
+ },
+ {
+ "epoch": 74.44735692442114,
+ "grad_norm": 0.24911890923976898,
+ "learning_rate": 0.0006,
+ "loss": 3.4622669219970703,
+ "step": 5360
+ },
+ {
+ "epoch": 74.4613368283093,
+ "grad_norm": 0.2488860785961151,
+ "learning_rate": 0.0006,
+ "loss": 3.4906888008117676,
+ "step": 5361
+ },
+ {
+ "epoch": 74.47531673219747,
+ "grad_norm": 0.27969980239868164,
+ "learning_rate": 0.0006,
+ "loss": 3.495727300643921,
+ "step": 5362
+ },
+ {
+ "epoch": 74.48929663608563,
+ "grad_norm": 0.2811402380466461,
+ "learning_rate": 0.0006,
+ "loss": 3.4817042350769043,
+ "step": 5363
+ },
+ {
+ "epoch": 74.50327653997378,
+ "grad_norm": 0.25717079639434814,
+ "learning_rate": 0.0006,
+ "loss": 3.4818572998046875,
+ "step": 5364
+ },
+ {
+ "epoch": 74.51725644386195,
+ "grad_norm": 0.2527103126049042,
+ "learning_rate": 0.0006,
+ "loss": 3.494536876678467,
+ "step": 5365
+ },
+ {
+ "epoch": 74.53123634775011,
+ "grad_norm": 0.24561476707458496,
+ "learning_rate": 0.0006,
+ "loss": 3.4908809661865234,
+ "step": 5366
+ },
+ {
+ "epoch": 74.54521625163827,
+ "grad_norm": 0.2540345788002014,
+ "learning_rate": 0.0006,
+ "loss": 3.477179765701294,
+ "step": 5367
+ },
+ {
+ "epoch": 74.55919615552644,
+ "grad_norm": 0.2220340371131897,
+ "learning_rate": 0.0006,
+ "loss": 3.4914112091064453,
+ "step": 5368
+ },
+ {
+ "epoch": 74.57317605941459,
+ "grad_norm": 0.21146169304847717,
+ "learning_rate": 0.0006,
+ "loss": 3.457792043685913,
+ "step": 5369
+ },
+ {
+ "epoch": 74.58715596330275,
+ "grad_norm": 0.2657042443752289,
+ "learning_rate": 0.0006,
+ "loss": 3.4626612663269043,
+ "step": 5370
+ },
+ {
+ "epoch": 74.60113586719092,
+ "grad_norm": 0.2684510350227356,
+ "learning_rate": 0.0006,
+ "loss": 3.472271203994751,
+ "step": 5371
+ },
+ {
+ "epoch": 74.61511577107908,
+ "grad_norm": 0.22635070979595184,
+ "learning_rate": 0.0006,
+ "loss": 3.4719159603118896,
+ "step": 5372
+ },
+ {
+ "epoch": 74.62909567496723,
+ "grad_norm": 0.22514945268630981,
+ "learning_rate": 0.0006,
+ "loss": 3.4851810932159424,
+ "step": 5373
+ },
+ {
+ "epoch": 74.6430755788554,
+ "grad_norm": 0.24570822715759277,
+ "learning_rate": 0.0006,
+ "loss": 3.4688820838928223,
+ "step": 5374
+ },
+ {
+ "epoch": 74.65705548274356,
+ "grad_norm": 0.24397042393684387,
+ "learning_rate": 0.0006,
+ "loss": 3.4923229217529297,
+ "step": 5375
+ },
+ {
+ "epoch": 74.67103538663171,
+ "grad_norm": 0.23729953169822693,
+ "learning_rate": 0.0006,
+ "loss": 3.4608895778656006,
+ "step": 5376
+ },
+ {
+ "epoch": 74.68501529051987,
+ "grad_norm": 0.2729131877422333,
+ "learning_rate": 0.0006,
+ "loss": 3.4602279663085938,
+ "step": 5377
+ },
+ {
+ "epoch": 74.69899519440804,
+ "grad_norm": 0.25115323066711426,
+ "learning_rate": 0.0006,
+ "loss": 3.514993906021118,
+ "step": 5378
+ },
+ {
+ "epoch": 74.7129750982962,
+ "grad_norm": 0.22035203874111176,
+ "learning_rate": 0.0006,
+ "loss": 3.4471445083618164,
+ "step": 5379
+ },
+ {
+ "epoch": 74.72695500218435,
+ "grad_norm": 0.21248559653759003,
+ "learning_rate": 0.0006,
+ "loss": 3.495924472808838,
+ "step": 5380
+ },
+ {
+ "epoch": 74.74093490607252,
+ "grad_norm": 0.2532788813114166,
+ "learning_rate": 0.0006,
+ "loss": 3.4937939643859863,
+ "step": 5381
+ },
+ {
+ "epoch": 74.75491480996068,
+ "grad_norm": 0.3140663206577301,
+ "learning_rate": 0.0006,
+ "loss": 3.47257661819458,
+ "step": 5382
+ },
+ {
+ "epoch": 74.76889471384884,
+ "grad_norm": 0.24233469367027283,
+ "learning_rate": 0.0006,
+ "loss": 3.522697925567627,
+ "step": 5383
+ },
+ {
+ "epoch": 74.78287461773701,
+ "grad_norm": 0.21789517998695374,
+ "learning_rate": 0.0006,
+ "loss": 3.4718894958496094,
+ "step": 5384
+ },
+ {
+ "epoch": 74.79685452162516,
+ "grad_norm": 0.27909520268440247,
+ "learning_rate": 0.0006,
+ "loss": 3.495565891265869,
+ "step": 5385
+ },
+ {
+ "epoch": 74.81083442551332,
+ "grad_norm": 0.2829185724258423,
+ "learning_rate": 0.0006,
+ "loss": 3.498117446899414,
+ "step": 5386
+ },
+ {
+ "epoch": 74.82481432940149,
+ "grad_norm": 0.24295735359191895,
+ "learning_rate": 0.0006,
+ "loss": 3.520672559738159,
+ "step": 5387
+ },
+ {
+ "epoch": 74.83879423328965,
+ "grad_norm": 0.22691823542118073,
+ "learning_rate": 0.0006,
+ "loss": 3.493411064147949,
+ "step": 5388
+ },
+ {
+ "epoch": 74.8527741371778,
+ "grad_norm": 0.2304782122373581,
+ "learning_rate": 0.0006,
+ "loss": 3.515381336212158,
+ "step": 5389
+ },
+ {
+ "epoch": 74.86675404106597,
+ "grad_norm": 0.2201395034790039,
+ "learning_rate": 0.0006,
+ "loss": 3.4841480255126953,
+ "step": 5390
+ },
+ {
+ "epoch": 74.88073394495413,
+ "grad_norm": 0.2174619734287262,
+ "learning_rate": 0.0006,
+ "loss": 3.522420883178711,
+ "step": 5391
+ },
+ {
+ "epoch": 74.89471384884229,
+ "grad_norm": 0.2168722301721573,
+ "learning_rate": 0.0006,
+ "loss": 3.5378670692443848,
+ "step": 5392
+ },
+ {
+ "epoch": 74.90869375273044,
+ "grad_norm": 0.2191118448972702,
+ "learning_rate": 0.0006,
+ "loss": 3.4727582931518555,
+ "step": 5393
+ },
+ {
+ "epoch": 74.92267365661861,
+ "grad_norm": 0.20210173726081848,
+ "learning_rate": 0.0006,
+ "loss": 3.482863426208496,
+ "step": 5394
+ },
+ {
+ "epoch": 74.93665356050677,
+ "grad_norm": 0.2193301022052765,
+ "learning_rate": 0.0006,
+ "loss": 3.504102945327759,
+ "step": 5395
+ },
+ {
+ "epoch": 74.95063346439493,
+ "grad_norm": 0.24017557501792908,
+ "learning_rate": 0.0006,
+ "loss": 3.5117030143737793,
+ "step": 5396
+ },
+ {
+ "epoch": 74.9646133682831,
+ "grad_norm": 0.2410554140806198,
+ "learning_rate": 0.0006,
+ "loss": 3.4764766693115234,
+ "step": 5397
+ },
+ {
+ "epoch": 74.97859327217125,
+ "grad_norm": 0.22423039376735687,
+ "learning_rate": 0.0006,
+ "loss": 3.480515480041504,
+ "step": 5398
+ },
+ {
+ "epoch": 74.99257317605941,
+ "grad_norm": 0.21722744405269623,
+ "learning_rate": 0.0006,
+ "loss": 3.498002052307129,
+ "step": 5399
+ },
+ {
+ "epoch": 75.0,
+ "grad_norm": 0.25303882360458374,
+ "learning_rate": 0.0006,
+ "loss": 3.5146775245666504,
+ "step": 5400
+ },
+ {
+ "epoch": 75.0,
+ "eval_loss": 3.98659610748291,
+ "eval_runtime": 46.184,
+ "eval_samples_per_second": 52.875,
+ "eval_steps_per_second": 3.313,
+ "step": 5400
+ },
+ {
+ "epoch": 75.01397990388816,
+ "grad_norm": 0.22890645265579224,
+ "learning_rate": 0.0006,
+ "loss": 3.4320144653320312,
+ "step": 5401
+ },
+ {
+ "epoch": 75.02795980777633,
+ "grad_norm": 0.21108074486255646,
+ "learning_rate": 0.0006,
+ "loss": 3.4783573150634766,
+ "step": 5402
+ },
+ {
+ "epoch": 75.04193971166448,
+ "grad_norm": 0.24622507393360138,
+ "learning_rate": 0.0006,
+ "loss": 3.443662643432617,
+ "step": 5403
+ },
+ {
+ "epoch": 75.05591961555264,
+ "grad_norm": 0.27554580569267273,
+ "learning_rate": 0.0006,
+ "loss": 3.4758429527282715,
+ "step": 5404
+ },
+ {
+ "epoch": 75.06989951944081,
+ "grad_norm": 0.23775196075439453,
+ "learning_rate": 0.0006,
+ "loss": 3.433439254760742,
+ "step": 5405
+ },
+ {
+ "epoch": 75.08387942332897,
+ "grad_norm": 0.24933192133903503,
+ "learning_rate": 0.0006,
+ "loss": 3.474876642227173,
+ "step": 5406
+ },
+ {
+ "epoch": 75.09785932721712,
+ "grad_norm": 0.25970155000686646,
+ "learning_rate": 0.0006,
+ "loss": 3.4557571411132812,
+ "step": 5407
+ },
+ {
+ "epoch": 75.1118392311053,
+ "grad_norm": 0.24002394080162048,
+ "learning_rate": 0.0006,
+ "loss": 3.487683057785034,
+ "step": 5408
+ },
+ {
+ "epoch": 75.12581913499345,
+ "grad_norm": 0.23790079355239868,
+ "learning_rate": 0.0006,
+ "loss": 3.4572582244873047,
+ "step": 5409
+ },
+ {
+ "epoch": 75.1397990388816,
+ "grad_norm": 0.24431537091732025,
+ "learning_rate": 0.0006,
+ "loss": 3.47338604927063,
+ "step": 5410
+ },
+ {
+ "epoch": 75.15377894276976,
+ "grad_norm": 0.23062901198863983,
+ "learning_rate": 0.0006,
+ "loss": 3.4597620964050293,
+ "step": 5411
+ },
+ {
+ "epoch": 75.16775884665793,
+ "grad_norm": 0.22011473774909973,
+ "learning_rate": 0.0006,
+ "loss": 3.442854404449463,
+ "step": 5412
+ },
+ {
+ "epoch": 75.18173875054609,
+ "grad_norm": 0.22079597413539886,
+ "learning_rate": 0.0006,
+ "loss": 3.4655394554138184,
+ "step": 5413
+ },
+ {
+ "epoch": 75.19571865443424,
+ "grad_norm": 0.2491050660610199,
+ "learning_rate": 0.0006,
+ "loss": 3.4235432147979736,
+ "step": 5414
+ },
+ {
+ "epoch": 75.20969855832242,
+ "grad_norm": 0.2579537332057953,
+ "learning_rate": 0.0006,
+ "loss": 3.4655489921569824,
+ "step": 5415
+ },
+ {
+ "epoch": 75.22367846221057,
+ "grad_norm": 0.2544846832752228,
+ "learning_rate": 0.0006,
+ "loss": 3.4843227863311768,
+ "step": 5416
+ },
+ {
+ "epoch": 75.23765836609873,
+ "grad_norm": 0.2496761977672577,
+ "learning_rate": 0.0006,
+ "loss": 3.4830572605133057,
+ "step": 5417
+ },
+ {
+ "epoch": 75.2516382699869,
+ "grad_norm": 0.23450163006782532,
+ "learning_rate": 0.0006,
+ "loss": 3.4443750381469727,
+ "step": 5418
+ },
+ {
+ "epoch": 75.26561817387505,
+ "grad_norm": 0.21221424639225006,
+ "learning_rate": 0.0006,
+ "loss": 3.4960341453552246,
+ "step": 5419
+ },
+ {
+ "epoch": 75.27959807776321,
+ "grad_norm": 0.24375751614570618,
+ "learning_rate": 0.0006,
+ "loss": 3.489213466644287,
+ "step": 5420
+ },
+ {
+ "epoch": 75.29357798165138,
+ "grad_norm": 0.2396956831216812,
+ "learning_rate": 0.0006,
+ "loss": 3.4710469245910645,
+ "step": 5421
+ },
+ {
+ "epoch": 75.30755788553954,
+ "grad_norm": 0.2423015981912613,
+ "learning_rate": 0.0006,
+ "loss": 3.4676403999328613,
+ "step": 5422
+ },
+ {
+ "epoch": 75.3215377894277,
+ "grad_norm": 0.21398219466209412,
+ "learning_rate": 0.0006,
+ "loss": 3.4844627380371094,
+ "step": 5423
+ },
+ {
+ "epoch": 75.33551769331586,
+ "grad_norm": 0.22983498871326447,
+ "learning_rate": 0.0006,
+ "loss": 3.499535083770752,
+ "step": 5424
+ },
+ {
+ "epoch": 75.34949759720402,
+ "grad_norm": 0.2247568666934967,
+ "learning_rate": 0.0006,
+ "loss": 3.459460973739624,
+ "step": 5425
+ },
+ {
+ "epoch": 75.36347750109218,
+ "grad_norm": 0.2223675400018692,
+ "learning_rate": 0.0006,
+ "loss": 3.483078718185425,
+ "step": 5426
+ },
+ {
+ "epoch": 75.37745740498035,
+ "grad_norm": 0.25076913833618164,
+ "learning_rate": 0.0006,
+ "loss": 3.4823365211486816,
+ "step": 5427
+ },
+ {
+ "epoch": 75.3914373088685,
+ "grad_norm": 0.23170171678066254,
+ "learning_rate": 0.0006,
+ "loss": 3.487278461456299,
+ "step": 5428
+ },
+ {
+ "epoch": 75.40541721275666,
+ "grad_norm": 0.22735518217086792,
+ "learning_rate": 0.0006,
+ "loss": 3.4565181732177734,
+ "step": 5429
+ },
+ {
+ "epoch": 75.41939711664482,
+ "grad_norm": 0.2241843193769455,
+ "learning_rate": 0.0006,
+ "loss": 3.4886221885681152,
+ "step": 5430
+ },
+ {
+ "epoch": 75.43337702053299,
+ "grad_norm": 0.23641140758991241,
+ "learning_rate": 0.0006,
+ "loss": 3.4589765071868896,
+ "step": 5431
+ },
+ {
+ "epoch": 75.44735692442114,
+ "grad_norm": 0.22404645383358002,
+ "learning_rate": 0.0006,
+ "loss": 3.4804739952087402,
+ "step": 5432
+ },
+ {
+ "epoch": 75.4613368283093,
+ "grad_norm": 0.22107535600662231,
+ "learning_rate": 0.0006,
+ "loss": 3.5022053718566895,
+ "step": 5433
+ },
+ {
+ "epoch": 75.47531673219747,
+ "grad_norm": 0.26106131076812744,
+ "learning_rate": 0.0006,
+ "loss": 3.4907431602478027,
+ "step": 5434
+ },
+ {
+ "epoch": 75.48929663608563,
+ "grad_norm": 0.24156032502651215,
+ "learning_rate": 0.0006,
+ "loss": 3.4733991622924805,
+ "step": 5435
+ },
+ {
+ "epoch": 75.50327653997378,
+ "grad_norm": 0.24767442047595978,
+ "learning_rate": 0.0006,
+ "loss": 3.4697909355163574,
+ "step": 5436
+ },
+ {
+ "epoch": 75.51725644386195,
+ "grad_norm": 0.2323860228061676,
+ "learning_rate": 0.0006,
+ "loss": 3.4606242179870605,
+ "step": 5437
+ },
+ {
+ "epoch": 75.53123634775011,
+ "grad_norm": 0.2262393981218338,
+ "learning_rate": 0.0006,
+ "loss": 3.4854025840759277,
+ "step": 5438
+ },
+ {
+ "epoch": 75.54521625163827,
+ "grad_norm": 0.23461535573005676,
+ "learning_rate": 0.0006,
+ "loss": 3.4778385162353516,
+ "step": 5439
+ },
+ {
+ "epoch": 75.55919615552644,
+ "grad_norm": 0.27161163091659546,
+ "learning_rate": 0.0006,
+ "loss": 3.495377540588379,
+ "step": 5440
+ },
+ {
+ "epoch": 75.57317605941459,
+ "grad_norm": 0.24618741869926453,
+ "learning_rate": 0.0006,
+ "loss": 3.47642183303833,
+ "step": 5441
+ },
+ {
+ "epoch": 75.58715596330275,
+ "grad_norm": 0.22948747873306274,
+ "learning_rate": 0.0006,
+ "loss": 3.4459116458892822,
+ "step": 5442
+ },
+ {
+ "epoch": 75.60113586719092,
+ "grad_norm": 0.23935501277446747,
+ "learning_rate": 0.0006,
+ "loss": 3.487091541290283,
+ "step": 5443
+ },
+ {
+ "epoch": 75.61511577107908,
+ "grad_norm": 0.2796297073364258,
+ "learning_rate": 0.0006,
+ "loss": 3.473480701446533,
+ "step": 5444
+ },
+ {
+ "epoch": 75.62909567496723,
+ "grad_norm": 0.29329824447631836,
+ "learning_rate": 0.0006,
+ "loss": 3.5074462890625,
+ "step": 5445
+ },
+ {
+ "epoch": 75.6430755788554,
+ "grad_norm": 0.2570355534553528,
+ "learning_rate": 0.0006,
+ "loss": 3.489321231842041,
+ "step": 5446
+ },
+ {
+ "epoch": 75.65705548274356,
+ "grad_norm": 0.2363484650850296,
+ "learning_rate": 0.0006,
+ "loss": 3.468007802963257,
+ "step": 5447
+ },
+ {
+ "epoch": 75.67103538663171,
+ "grad_norm": 0.2406139075756073,
+ "learning_rate": 0.0006,
+ "loss": 3.46791410446167,
+ "step": 5448
+ },
+ {
+ "epoch": 75.68501529051987,
+ "grad_norm": 0.21734113991260529,
+ "learning_rate": 0.0006,
+ "loss": 3.4879536628723145,
+ "step": 5449
+ },
+ {
+ "epoch": 75.69899519440804,
+ "grad_norm": 0.23314808309078217,
+ "learning_rate": 0.0006,
+ "loss": 3.4743285179138184,
+ "step": 5450
+ },
+ {
+ "epoch": 75.7129750982962,
+ "grad_norm": 0.23886935412883759,
+ "learning_rate": 0.0006,
+ "loss": 3.4746532440185547,
+ "step": 5451
+ },
+ {
+ "epoch": 75.72695500218435,
+ "grad_norm": 0.22808042168617249,
+ "learning_rate": 0.0006,
+ "loss": 3.4969987869262695,
+ "step": 5452
+ },
+ {
+ "epoch": 75.74093490607252,
+ "grad_norm": 0.2143876552581787,
+ "learning_rate": 0.0006,
+ "loss": 3.4843339920043945,
+ "step": 5453
+ },
+ {
+ "epoch": 75.75491480996068,
+ "grad_norm": 0.21905699372291565,
+ "learning_rate": 0.0006,
+ "loss": 3.4854626655578613,
+ "step": 5454
+ },
+ {
+ "epoch": 75.76889471384884,
+ "grad_norm": 0.222469300031662,
+ "learning_rate": 0.0006,
+ "loss": 3.4997758865356445,
+ "step": 5455
+ },
+ {
+ "epoch": 75.78287461773701,
+ "grad_norm": 0.23095394670963287,
+ "learning_rate": 0.0006,
+ "loss": 3.515315532684326,
+ "step": 5456
+ },
+ {
+ "epoch": 75.79685452162516,
+ "grad_norm": 0.23326516151428223,
+ "learning_rate": 0.0006,
+ "loss": 3.482665538787842,
+ "step": 5457
+ },
+ {
+ "epoch": 75.81083442551332,
+ "grad_norm": 0.22779764235019684,
+ "learning_rate": 0.0006,
+ "loss": 3.5068790912628174,
+ "step": 5458
+ },
+ {
+ "epoch": 75.82481432940149,
+ "grad_norm": 0.2396935224533081,
+ "learning_rate": 0.0006,
+ "loss": 3.4874000549316406,
+ "step": 5459
+ },
+ {
+ "epoch": 75.83879423328965,
+ "grad_norm": 0.25353050231933594,
+ "learning_rate": 0.0006,
+ "loss": 3.4948503971099854,
+ "step": 5460
+ },
+ {
+ "epoch": 75.8527741371778,
+ "grad_norm": 0.21191656589508057,
+ "learning_rate": 0.0006,
+ "loss": 3.4621965885162354,
+ "step": 5461
+ },
+ {
+ "epoch": 75.86675404106597,
+ "grad_norm": 0.2224014550447464,
+ "learning_rate": 0.0006,
+ "loss": 3.4568324089050293,
+ "step": 5462
+ },
+ {
+ "epoch": 75.88073394495413,
+ "grad_norm": 0.2205243706703186,
+ "learning_rate": 0.0006,
+ "loss": 3.4809136390686035,
+ "step": 5463
+ },
+ {
+ "epoch": 75.89471384884229,
+ "grad_norm": 0.2065657079219818,
+ "learning_rate": 0.0006,
+ "loss": 3.4930431842803955,
+ "step": 5464
+ },
+ {
+ "epoch": 75.90869375273044,
+ "grad_norm": 0.23017582297325134,
+ "learning_rate": 0.0006,
+ "loss": 3.471113443374634,
+ "step": 5465
+ },
+ {
+ "epoch": 75.92267365661861,
+ "grad_norm": 0.23186780512332916,
+ "learning_rate": 0.0006,
+ "loss": 3.4903316497802734,
+ "step": 5466
+ },
+ {
+ "epoch": 75.93665356050677,
+ "grad_norm": 0.21441741287708282,
+ "learning_rate": 0.0006,
+ "loss": 3.4762520790100098,
+ "step": 5467
+ },
+ {
+ "epoch": 75.95063346439493,
+ "grad_norm": 0.23942787945270538,
+ "learning_rate": 0.0006,
+ "loss": 3.5144190788269043,
+ "step": 5468
+ },
+ {
+ "epoch": 75.9646133682831,
+ "grad_norm": 0.2516455352306366,
+ "learning_rate": 0.0006,
+ "loss": 3.496724843978882,
+ "step": 5469
+ },
+ {
+ "epoch": 75.97859327217125,
+ "grad_norm": 0.26983004808425903,
+ "learning_rate": 0.0006,
+ "loss": 3.4975180625915527,
+ "step": 5470
+ },
+ {
+ "epoch": 75.99257317605941,
+ "grad_norm": 0.2471132129430771,
+ "learning_rate": 0.0006,
+ "loss": 3.4897234439849854,
+ "step": 5471
+ },
+ {
+ "epoch": 76.0,
+ "grad_norm": 0.2606436014175415,
+ "learning_rate": 0.0006,
+ "loss": 3.4784388542175293,
+ "step": 5472
+ },
+ {
+ "epoch": 76.0,
+ "eval_loss": 3.973442554473877,
+ "eval_runtime": 46.348,
+ "eval_samples_per_second": 52.688,
+ "eval_steps_per_second": 3.301,
+ "step": 5472
+ },
+ {
+ "epoch": 76.01397990388816,
+ "grad_norm": 0.28274571895599365,
+ "learning_rate": 0.0006,
+ "loss": 3.432469367980957,
+ "step": 5473
+ },
+ {
+ "epoch": 76.02795980777633,
+ "grad_norm": 0.3165026009082794,
+ "learning_rate": 0.0006,
+ "loss": 3.4121832847595215,
+ "step": 5474
+ },
+ {
+ "epoch": 76.04193971166448,
+ "grad_norm": 0.33816471695899963,
+ "learning_rate": 0.0006,
+ "loss": 3.429927349090576,
+ "step": 5475
+ },
+ {
+ "epoch": 76.05591961555264,
+ "grad_norm": 0.2813689112663269,
+ "learning_rate": 0.0006,
+ "loss": 3.4992995262145996,
+ "step": 5476
+ },
+ {
+ "epoch": 76.06989951944081,
+ "grad_norm": 0.2319067418575287,
+ "learning_rate": 0.0006,
+ "loss": 3.468172073364258,
+ "step": 5477
+ },
+ {
+ "epoch": 76.08387942332897,
+ "grad_norm": 0.2963521182537079,
+ "learning_rate": 0.0006,
+ "loss": 3.4306883811950684,
+ "step": 5478
+ },
+ {
+ "epoch": 76.09785932721712,
+ "grad_norm": 0.3123914301395416,
+ "learning_rate": 0.0006,
+ "loss": 3.434607982635498,
+ "step": 5479
+ },
+ {
+ "epoch": 76.1118392311053,
+ "grad_norm": 0.28318360447883606,
+ "learning_rate": 0.0006,
+ "loss": 3.4461169242858887,
+ "step": 5480
+ },
+ {
+ "epoch": 76.12581913499345,
+ "grad_norm": 0.2599116265773773,
+ "learning_rate": 0.0006,
+ "loss": 3.452208995819092,
+ "step": 5481
+ },
+ {
+ "epoch": 76.1397990388816,
+ "grad_norm": 0.2547946274280548,
+ "learning_rate": 0.0006,
+ "loss": 3.456831455230713,
+ "step": 5482
+ },
+ {
+ "epoch": 76.15377894276976,
+ "grad_norm": 0.25178053975105286,
+ "learning_rate": 0.0006,
+ "loss": 3.4486212730407715,
+ "step": 5483
+ },
+ {
+ "epoch": 76.16775884665793,
+ "grad_norm": 0.2500477135181427,
+ "learning_rate": 0.0006,
+ "loss": 3.4861841201782227,
+ "step": 5484
+ },
+ {
+ "epoch": 76.18173875054609,
+ "grad_norm": 0.25729069113731384,
+ "learning_rate": 0.0006,
+ "loss": 3.4522268772125244,
+ "step": 5485
+ },
+ {
+ "epoch": 76.19571865443424,
+ "grad_norm": 0.2618412375450134,
+ "learning_rate": 0.0006,
+ "loss": 3.4625625610351562,
+ "step": 5486
+ },
+ {
+ "epoch": 76.20969855832242,
+ "grad_norm": 0.24906174838542938,
+ "learning_rate": 0.0006,
+ "loss": 3.5010147094726562,
+ "step": 5487
+ },
+ {
+ "epoch": 76.22367846221057,
+ "grad_norm": 0.2631669342517853,
+ "learning_rate": 0.0006,
+ "loss": 3.4834048748016357,
+ "step": 5488
+ },
+ {
+ "epoch": 76.23765836609873,
+ "grad_norm": 0.22962148487567902,
+ "learning_rate": 0.0006,
+ "loss": 3.437201976776123,
+ "step": 5489
+ },
+ {
+ "epoch": 76.2516382699869,
+ "grad_norm": 0.21113844215869904,
+ "learning_rate": 0.0006,
+ "loss": 3.4715452194213867,
+ "step": 5490
+ },
+ {
+ "epoch": 76.26561817387505,
+ "grad_norm": 0.21345451474189758,
+ "learning_rate": 0.0006,
+ "loss": 3.470175266265869,
+ "step": 5491
+ },
+ {
+ "epoch": 76.27959807776321,
+ "grad_norm": 0.22897619009017944,
+ "learning_rate": 0.0006,
+ "loss": 3.458296775817871,
+ "step": 5492
+ },
+ {
+ "epoch": 76.29357798165138,
+ "grad_norm": 0.2222777009010315,
+ "learning_rate": 0.0006,
+ "loss": 3.4519572257995605,
+ "step": 5493
+ },
+ {
+ "epoch": 76.30755788553954,
+ "grad_norm": 0.2297116070985794,
+ "learning_rate": 0.0006,
+ "loss": 3.470816135406494,
+ "step": 5494
+ },
+ {
+ "epoch": 76.3215377894277,
+ "grad_norm": 0.24459777772426605,
+ "learning_rate": 0.0006,
+ "loss": 3.490407943725586,
+ "step": 5495
+ },
+ {
+ "epoch": 76.33551769331586,
+ "grad_norm": 0.22549642622470856,
+ "learning_rate": 0.0006,
+ "loss": 3.471388816833496,
+ "step": 5496
+ },
+ {
+ "epoch": 76.34949759720402,
+ "grad_norm": 0.220009908080101,
+ "learning_rate": 0.0006,
+ "loss": 3.46909761428833,
+ "step": 5497
+ },
+ {
+ "epoch": 76.36347750109218,
+ "grad_norm": 0.21473553776741028,
+ "learning_rate": 0.0006,
+ "loss": 3.491536855697632,
+ "step": 5498
+ },
+ {
+ "epoch": 76.37745740498035,
+ "grad_norm": 0.20368808507919312,
+ "learning_rate": 0.0006,
+ "loss": 3.449502944946289,
+ "step": 5499
+ },
+ {
+ "epoch": 76.3914373088685,
+ "grad_norm": 0.20559734106063843,
+ "learning_rate": 0.0006,
+ "loss": 3.4466171264648438,
+ "step": 5500
+ },
+ {
+ "epoch": 76.40541721275666,
+ "grad_norm": 0.2107473611831665,
+ "learning_rate": 0.0006,
+ "loss": 3.4709558486938477,
+ "step": 5501
+ },
+ {
+ "epoch": 76.41939711664482,
+ "grad_norm": 0.20774322748184204,
+ "learning_rate": 0.0006,
+ "loss": 3.5067873001098633,
+ "step": 5502
+ },
+ {
+ "epoch": 76.43337702053299,
+ "grad_norm": 0.20616984367370605,
+ "learning_rate": 0.0006,
+ "loss": 3.46718168258667,
+ "step": 5503
+ },
+ {
+ "epoch": 76.44735692442114,
+ "grad_norm": 0.22518491744995117,
+ "learning_rate": 0.0006,
+ "loss": 3.4624900817871094,
+ "step": 5504
+ },
+ {
+ "epoch": 76.4613368283093,
+ "grad_norm": 0.21241682767868042,
+ "learning_rate": 0.0006,
+ "loss": 3.4807918071746826,
+ "step": 5505
+ },
+ {
+ "epoch": 76.47531673219747,
+ "grad_norm": 0.20331047475337982,
+ "learning_rate": 0.0006,
+ "loss": 3.4387712478637695,
+ "step": 5506
+ },
+ {
+ "epoch": 76.48929663608563,
+ "grad_norm": 0.20476725697517395,
+ "learning_rate": 0.0006,
+ "loss": 3.478198528289795,
+ "step": 5507
+ },
+ {
+ "epoch": 76.50327653997378,
+ "grad_norm": 0.19799263775348663,
+ "learning_rate": 0.0006,
+ "loss": 3.458812713623047,
+ "step": 5508
+ },
+ {
+ "epoch": 76.51725644386195,
+ "grad_norm": 0.20378418266773224,
+ "learning_rate": 0.0006,
+ "loss": 3.492115020751953,
+ "step": 5509
+ },
+ {
+ "epoch": 76.53123634775011,
+ "grad_norm": 0.19318847358226776,
+ "learning_rate": 0.0006,
+ "loss": 3.444512128829956,
+ "step": 5510
+ },
+ {
+ "epoch": 76.54521625163827,
+ "grad_norm": 0.20766256749629974,
+ "learning_rate": 0.0006,
+ "loss": 3.4897234439849854,
+ "step": 5511
+ },
+ {
+ "epoch": 76.55919615552644,
+ "grad_norm": 0.20554299652576447,
+ "learning_rate": 0.0006,
+ "loss": 3.470285415649414,
+ "step": 5512
+ },
+ {
+ "epoch": 76.57317605941459,
+ "grad_norm": 0.21081854403018951,
+ "learning_rate": 0.0006,
+ "loss": 3.473558187484741,
+ "step": 5513
+ },
+ {
+ "epoch": 76.58715596330275,
+ "grad_norm": 0.23622071743011475,
+ "learning_rate": 0.0006,
+ "loss": 3.4782865047454834,
+ "step": 5514
+ },
+ {
+ "epoch": 76.60113586719092,
+ "grad_norm": 0.22481192648410797,
+ "learning_rate": 0.0006,
+ "loss": 3.4996776580810547,
+ "step": 5515
+ },
+ {
+ "epoch": 76.61511577107908,
+ "grad_norm": 0.2192675620317459,
+ "learning_rate": 0.0006,
+ "loss": 3.521728277206421,
+ "step": 5516
+ },
+ {
+ "epoch": 76.62909567496723,
+ "grad_norm": 0.23627865314483643,
+ "learning_rate": 0.0006,
+ "loss": 3.5019800662994385,
+ "step": 5517
+ },
+ {
+ "epoch": 76.6430755788554,
+ "grad_norm": 0.22374436259269714,
+ "learning_rate": 0.0006,
+ "loss": 3.4527387619018555,
+ "step": 5518
+ },
+ {
+ "epoch": 76.65705548274356,
+ "grad_norm": 0.23872409760951996,
+ "learning_rate": 0.0006,
+ "loss": 3.4938204288482666,
+ "step": 5519
+ },
+ {
+ "epoch": 76.67103538663171,
+ "grad_norm": 0.23943012952804565,
+ "learning_rate": 0.0006,
+ "loss": 3.4902846813201904,
+ "step": 5520
+ },
+ {
+ "epoch": 76.68501529051987,
+ "grad_norm": 0.23605254292488098,
+ "learning_rate": 0.0006,
+ "loss": 3.4715919494628906,
+ "step": 5521
+ },
+ {
+ "epoch": 76.69899519440804,
+ "grad_norm": 0.2116839587688446,
+ "learning_rate": 0.0006,
+ "loss": 3.515658378601074,
+ "step": 5522
+ },
+ {
+ "epoch": 76.7129750982962,
+ "grad_norm": 0.22817043960094452,
+ "learning_rate": 0.0006,
+ "loss": 3.466154098510742,
+ "step": 5523
+ },
+ {
+ "epoch": 76.72695500218435,
+ "grad_norm": 0.26730015873908997,
+ "learning_rate": 0.0006,
+ "loss": 3.4843881130218506,
+ "step": 5524
+ },
+ {
+ "epoch": 76.74093490607252,
+ "grad_norm": 0.24832892417907715,
+ "learning_rate": 0.0006,
+ "loss": 3.495150566101074,
+ "step": 5525
+ },
+ {
+ "epoch": 76.75491480996068,
+ "grad_norm": 0.2358865737915039,
+ "learning_rate": 0.0006,
+ "loss": 3.475858211517334,
+ "step": 5526
+ },
+ {
+ "epoch": 76.76889471384884,
+ "grad_norm": 0.2310672551393509,
+ "learning_rate": 0.0006,
+ "loss": 3.5099706649780273,
+ "step": 5527
+ },
+ {
+ "epoch": 76.78287461773701,
+ "grad_norm": 0.25284910202026367,
+ "learning_rate": 0.0006,
+ "loss": 3.510529041290283,
+ "step": 5528
+ },
+ {
+ "epoch": 76.79685452162516,
+ "grad_norm": 0.25088873505592346,
+ "learning_rate": 0.0006,
+ "loss": 3.480929374694824,
+ "step": 5529
+ },
+ {
+ "epoch": 76.81083442551332,
+ "grad_norm": 0.2349051833152771,
+ "learning_rate": 0.0006,
+ "loss": 3.457334041595459,
+ "step": 5530
+ },
+ {
+ "epoch": 76.82481432940149,
+ "grad_norm": 0.23446795344352722,
+ "learning_rate": 0.0006,
+ "loss": 3.493607997894287,
+ "step": 5531
+ },
+ {
+ "epoch": 76.83879423328965,
+ "grad_norm": 0.2285156399011612,
+ "learning_rate": 0.0006,
+ "loss": 3.4858193397521973,
+ "step": 5532
+ },
+ {
+ "epoch": 76.8527741371778,
+ "grad_norm": 0.2247011512517929,
+ "learning_rate": 0.0006,
+ "loss": 3.4766390323638916,
+ "step": 5533
+ },
+ {
+ "epoch": 76.86675404106597,
+ "grad_norm": 0.2175820916891098,
+ "learning_rate": 0.0006,
+ "loss": 3.4545059204101562,
+ "step": 5534
+ },
+ {
+ "epoch": 76.88073394495413,
+ "grad_norm": 0.22910308837890625,
+ "learning_rate": 0.0006,
+ "loss": 3.5201025009155273,
+ "step": 5535
+ },
+ {
+ "epoch": 76.89471384884229,
+ "grad_norm": 0.25674742460250854,
+ "learning_rate": 0.0006,
+ "loss": 3.4851608276367188,
+ "step": 5536
+ },
+ {
+ "epoch": 76.90869375273044,
+ "grad_norm": 0.2939974069595337,
+ "learning_rate": 0.0006,
+ "loss": 3.4853453636169434,
+ "step": 5537
+ },
+ {
+ "epoch": 76.92267365661861,
+ "grad_norm": 0.30211713910102844,
+ "learning_rate": 0.0006,
+ "loss": 3.465470790863037,
+ "step": 5538
+ },
+ {
+ "epoch": 76.93665356050677,
+ "grad_norm": 0.27954718470573425,
+ "learning_rate": 0.0006,
+ "loss": 3.4921772480010986,
+ "step": 5539
+ },
+ {
+ "epoch": 76.95063346439493,
+ "grad_norm": 0.22834837436676025,
+ "learning_rate": 0.0006,
+ "loss": 3.4936747550964355,
+ "step": 5540
+ },
+ {
+ "epoch": 76.9646133682831,
+ "grad_norm": 0.2698923349380493,
+ "learning_rate": 0.0006,
+ "loss": 3.477677345275879,
+ "step": 5541
+ },
+ {
+ "epoch": 76.97859327217125,
+ "grad_norm": 0.3047026991844177,
+ "learning_rate": 0.0006,
+ "loss": 3.48386549949646,
+ "step": 5542
+ },
+ {
+ "epoch": 76.99257317605941,
+ "grad_norm": 0.25420624017715454,
+ "learning_rate": 0.0006,
+ "loss": 3.4954631328582764,
+ "step": 5543
+ },
+ {
+ "epoch": 77.0,
+ "grad_norm": 0.24408109486103058,
+ "learning_rate": 0.0006,
+ "loss": 3.445572853088379,
+ "step": 5544
+ },
+ {
+ "epoch": 77.0,
+ "eval_loss": 4.007506847381592,
+ "eval_runtime": 46.4852,
+ "eval_samples_per_second": 52.533,
+ "eval_steps_per_second": 3.291,
+ "step": 5544
+ },
+ {
+ "epoch": 77.01397990388816,
+ "grad_norm": 0.2915779650211334,
+ "learning_rate": 0.0006,
+ "loss": 3.4563474655151367,
+ "step": 5545
+ },
+ {
+ "epoch": 77.02795980777633,
+ "grad_norm": 0.3169223964214325,
+ "learning_rate": 0.0006,
+ "loss": 3.4652180671691895,
+ "step": 5546
+ },
+ {
+ "epoch": 77.04193971166448,
+ "grad_norm": 0.25844213366508484,
+ "learning_rate": 0.0006,
+ "loss": 3.462665319442749,
+ "step": 5547
+ },
+ {
+ "epoch": 77.05591961555264,
+ "grad_norm": 0.25074702501296997,
+ "learning_rate": 0.0006,
+ "loss": 3.4422531127929688,
+ "step": 5548
+ },
+ {
+ "epoch": 77.06989951944081,
+ "grad_norm": 0.25484949350357056,
+ "learning_rate": 0.0006,
+ "loss": 3.4290740489959717,
+ "step": 5549
+ },
+ {
+ "epoch": 77.08387942332897,
+ "grad_norm": 0.25956255197525024,
+ "learning_rate": 0.0006,
+ "loss": 3.450035333633423,
+ "step": 5550
+ },
+ {
+ "epoch": 77.09785932721712,
+ "grad_norm": 0.22940650582313538,
+ "learning_rate": 0.0006,
+ "loss": 3.4249258041381836,
+ "step": 5551
+ },
+ {
+ "epoch": 77.1118392311053,
+ "grad_norm": 0.2277630716562271,
+ "learning_rate": 0.0006,
+ "loss": 3.4766159057617188,
+ "step": 5552
+ },
+ {
+ "epoch": 77.12581913499345,
+ "grad_norm": 0.23797406256198883,
+ "learning_rate": 0.0006,
+ "loss": 3.4734766483306885,
+ "step": 5553
+ },
+ {
+ "epoch": 77.1397990388816,
+ "grad_norm": 0.21684569120407104,
+ "learning_rate": 0.0006,
+ "loss": 3.459162950515747,
+ "step": 5554
+ },
+ {
+ "epoch": 77.15377894276976,
+ "grad_norm": 0.22176246345043182,
+ "learning_rate": 0.0006,
+ "loss": 3.4285407066345215,
+ "step": 5555
+ },
+ {
+ "epoch": 77.16775884665793,
+ "grad_norm": 0.22516196966171265,
+ "learning_rate": 0.0006,
+ "loss": 3.430083990097046,
+ "step": 5556
+ },
+ {
+ "epoch": 77.18173875054609,
+ "grad_norm": 0.21629488468170166,
+ "learning_rate": 0.0006,
+ "loss": 3.4317891597747803,
+ "step": 5557
+ },
+ {
+ "epoch": 77.19571865443424,
+ "grad_norm": 0.2110232561826706,
+ "learning_rate": 0.0006,
+ "loss": 3.441636085510254,
+ "step": 5558
+ },
+ {
+ "epoch": 77.20969855832242,
+ "grad_norm": 0.23733535408973694,
+ "learning_rate": 0.0006,
+ "loss": 3.4615190029144287,
+ "step": 5559
+ },
+ {
+ "epoch": 77.22367846221057,
+ "grad_norm": 0.2405165284872055,
+ "learning_rate": 0.0006,
+ "loss": 3.4209976196289062,
+ "step": 5560
+ },
+ {
+ "epoch": 77.23765836609873,
+ "grad_norm": 0.2469998598098755,
+ "learning_rate": 0.0006,
+ "loss": 3.4215030670166016,
+ "step": 5561
+ },
+ {
+ "epoch": 77.2516382699869,
+ "grad_norm": 0.25612175464630127,
+ "learning_rate": 0.0006,
+ "loss": 3.438417911529541,
+ "step": 5562
+ },
+ {
+ "epoch": 77.26561817387505,
+ "grad_norm": 0.23456519842147827,
+ "learning_rate": 0.0006,
+ "loss": 3.455623149871826,
+ "step": 5563
+ },
+ {
+ "epoch": 77.27959807776321,
+ "grad_norm": 0.21399898827075958,
+ "learning_rate": 0.0006,
+ "loss": 3.4647960662841797,
+ "step": 5564
+ },
+ {
+ "epoch": 77.29357798165138,
+ "grad_norm": 0.2188381850719452,
+ "learning_rate": 0.0006,
+ "loss": 3.4621052742004395,
+ "step": 5565
+ },
+ {
+ "epoch": 77.30755788553954,
+ "grad_norm": 0.24125352501869202,
+ "learning_rate": 0.0006,
+ "loss": 3.4713289737701416,
+ "step": 5566
+ },
+ {
+ "epoch": 77.3215377894277,
+ "grad_norm": 0.2860930562019348,
+ "learning_rate": 0.0006,
+ "loss": 3.4664835929870605,
+ "step": 5567
+ },
+ {
+ "epoch": 77.33551769331586,
+ "grad_norm": 0.26902931928634644,
+ "learning_rate": 0.0006,
+ "loss": 3.4329450130462646,
+ "step": 5568
+ },
+ {
+ "epoch": 77.34949759720402,
+ "grad_norm": 0.23035289347171783,
+ "learning_rate": 0.0006,
+ "loss": 3.4574995040893555,
+ "step": 5569
+ },
+ {
+ "epoch": 77.36347750109218,
+ "grad_norm": 0.21633122861385345,
+ "learning_rate": 0.0006,
+ "loss": 3.4807615280151367,
+ "step": 5570
+ },
+ {
+ "epoch": 77.37745740498035,
+ "grad_norm": 0.2515130043029785,
+ "learning_rate": 0.0006,
+ "loss": 3.4523189067840576,
+ "step": 5571
+ },
+ {
+ "epoch": 77.3914373088685,
+ "grad_norm": 0.24801862239837646,
+ "learning_rate": 0.0006,
+ "loss": 3.4288992881774902,
+ "step": 5572
+ },
+ {
+ "epoch": 77.40541721275666,
+ "grad_norm": 0.2390354871749878,
+ "learning_rate": 0.0006,
+ "loss": 3.484312057495117,
+ "step": 5573
+ },
+ {
+ "epoch": 77.41939711664482,
+ "grad_norm": 0.21863406896591187,
+ "learning_rate": 0.0006,
+ "loss": 3.514920234680176,
+ "step": 5574
+ },
+ {
+ "epoch": 77.43337702053299,
+ "grad_norm": 0.24056300520896912,
+ "learning_rate": 0.0006,
+ "loss": 3.4896860122680664,
+ "step": 5575
+ },
+ {
+ "epoch": 77.44735692442114,
+ "grad_norm": 0.23909592628479004,
+ "learning_rate": 0.0006,
+ "loss": 3.4793200492858887,
+ "step": 5576
+ },
+ {
+ "epoch": 77.4613368283093,
+ "grad_norm": 0.24454306066036224,
+ "learning_rate": 0.0006,
+ "loss": 3.461653470993042,
+ "step": 5577
+ },
+ {
+ "epoch": 77.47531673219747,
+ "grad_norm": 0.2615761160850525,
+ "learning_rate": 0.0006,
+ "loss": 3.465709686279297,
+ "step": 5578
+ },
+ {
+ "epoch": 77.48929663608563,
+ "grad_norm": 0.29720982909202576,
+ "learning_rate": 0.0006,
+ "loss": 3.4943344593048096,
+ "step": 5579
+ },
+ {
+ "epoch": 77.50327653997378,
+ "grad_norm": 0.2776208221912384,
+ "learning_rate": 0.0006,
+ "loss": 3.4455578327178955,
+ "step": 5580
+ },
+ {
+ "epoch": 77.51725644386195,
+ "grad_norm": 0.23060724139213562,
+ "learning_rate": 0.0006,
+ "loss": 3.505800724029541,
+ "step": 5581
+ },
+ {
+ "epoch": 77.53123634775011,
+ "grad_norm": 0.24247834086418152,
+ "learning_rate": 0.0006,
+ "loss": 3.4776053428649902,
+ "step": 5582
+ },
+ {
+ "epoch": 77.54521625163827,
+ "grad_norm": 0.2725653648376465,
+ "learning_rate": 0.0006,
+ "loss": 3.4901909828186035,
+ "step": 5583
+ },
+ {
+ "epoch": 77.55919615552644,
+ "grad_norm": 0.2663135528564453,
+ "learning_rate": 0.0006,
+ "loss": 3.4535939693450928,
+ "step": 5584
+ },
+ {
+ "epoch": 77.57317605941459,
+ "grad_norm": 0.22942234575748444,
+ "learning_rate": 0.0006,
+ "loss": 3.4478676319122314,
+ "step": 5585
+ },
+ {
+ "epoch": 77.58715596330275,
+ "grad_norm": 0.23543357849121094,
+ "learning_rate": 0.0006,
+ "loss": 3.4794795513153076,
+ "step": 5586
+ },
+ {
+ "epoch": 77.60113586719092,
+ "grad_norm": 0.24251683056354523,
+ "learning_rate": 0.0006,
+ "loss": 3.51051664352417,
+ "step": 5587
+ },
+ {
+ "epoch": 77.61511577107908,
+ "grad_norm": 0.2273259162902832,
+ "learning_rate": 0.0006,
+ "loss": 3.506385326385498,
+ "step": 5588
+ },
+ {
+ "epoch": 77.62909567496723,
+ "grad_norm": 0.23449701070785522,
+ "learning_rate": 0.0006,
+ "loss": 3.481034278869629,
+ "step": 5589
+ },
+ {
+ "epoch": 77.6430755788554,
+ "grad_norm": 0.25050288438796997,
+ "learning_rate": 0.0006,
+ "loss": 3.449924945831299,
+ "step": 5590
+ },
+ {
+ "epoch": 77.65705548274356,
+ "grad_norm": 0.25048449635505676,
+ "learning_rate": 0.0006,
+ "loss": 3.500735282897949,
+ "step": 5591
+ },
+ {
+ "epoch": 77.67103538663171,
+ "grad_norm": 0.2699182629585266,
+ "learning_rate": 0.0006,
+ "loss": 3.5185136795043945,
+ "step": 5592
+ },
+ {
+ "epoch": 77.68501529051987,
+ "grad_norm": 0.2451692819595337,
+ "learning_rate": 0.0006,
+ "loss": 3.4736194610595703,
+ "step": 5593
+ },
+ {
+ "epoch": 77.69899519440804,
+ "grad_norm": 0.24240832030773163,
+ "learning_rate": 0.0006,
+ "loss": 3.510906219482422,
+ "step": 5594
+ },
+ {
+ "epoch": 77.7129750982962,
+ "grad_norm": 0.24055726826190948,
+ "learning_rate": 0.0006,
+ "loss": 3.4826507568359375,
+ "step": 5595
+ },
+ {
+ "epoch": 77.72695500218435,
+ "grad_norm": 0.21117587387561798,
+ "learning_rate": 0.0006,
+ "loss": 3.4430460929870605,
+ "step": 5596
+ },
+ {
+ "epoch": 77.74093490607252,
+ "grad_norm": 0.22443950176239014,
+ "learning_rate": 0.0006,
+ "loss": 3.478419780731201,
+ "step": 5597
+ },
+ {
+ "epoch": 77.75491480996068,
+ "grad_norm": 0.265615314245224,
+ "learning_rate": 0.0006,
+ "loss": 3.511934280395508,
+ "step": 5598
+ },
+ {
+ "epoch": 77.76889471384884,
+ "grad_norm": 0.27084261178970337,
+ "learning_rate": 0.0006,
+ "loss": 3.5032665729522705,
+ "step": 5599
+ },
+ {
+ "epoch": 77.78287461773701,
+ "grad_norm": 0.24575908482074738,
+ "learning_rate": 0.0006,
+ "loss": 3.463124990463257,
+ "step": 5600
+ },
+ {
+ "epoch": 77.79685452162516,
+ "grad_norm": 0.24604707956314087,
+ "learning_rate": 0.0006,
+ "loss": 3.500135898590088,
+ "step": 5601
+ },
+ {
+ "epoch": 77.81083442551332,
+ "grad_norm": 0.23443962633609772,
+ "learning_rate": 0.0006,
+ "loss": 3.4497289657592773,
+ "step": 5602
+ },
+ {
+ "epoch": 77.82481432940149,
+ "grad_norm": 0.23644082248210907,
+ "learning_rate": 0.0006,
+ "loss": 3.47178316116333,
+ "step": 5603
+ },
+ {
+ "epoch": 77.83879423328965,
+ "grad_norm": 0.20530658960342407,
+ "learning_rate": 0.0006,
+ "loss": 3.455582618713379,
+ "step": 5604
+ },
+ {
+ "epoch": 77.8527741371778,
+ "grad_norm": 0.2663075029850006,
+ "learning_rate": 0.0006,
+ "loss": 3.5106711387634277,
+ "step": 5605
+ },
+ {
+ "epoch": 77.86675404106597,
+ "grad_norm": 0.3181896507740021,
+ "learning_rate": 0.0006,
+ "loss": 3.4886298179626465,
+ "step": 5606
+ },
+ {
+ "epoch": 77.88073394495413,
+ "grad_norm": 0.30120763182640076,
+ "learning_rate": 0.0006,
+ "loss": 3.5012121200561523,
+ "step": 5607
+ },
+ {
+ "epoch": 77.89471384884229,
+ "grad_norm": 0.2766421139240265,
+ "learning_rate": 0.0006,
+ "loss": 3.465404748916626,
+ "step": 5608
+ },
+ {
+ "epoch": 77.90869375273044,
+ "grad_norm": 0.26150527596473694,
+ "learning_rate": 0.0006,
+ "loss": 3.505079984664917,
+ "step": 5609
+ },
+ {
+ "epoch": 77.92267365661861,
+ "grad_norm": 0.2585010826587677,
+ "learning_rate": 0.0006,
+ "loss": 3.46713924407959,
+ "step": 5610
+ },
+ {
+ "epoch": 77.93665356050677,
+ "grad_norm": 0.2746208608150482,
+ "learning_rate": 0.0006,
+ "loss": 3.464250087738037,
+ "step": 5611
+ },
+ {
+ "epoch": 77.95063346439493,
+ "grad_norm": 0.2630884647369385,
+ "learning_rate": 0.0006,
+ "loss": 3.4834718704223633,
+ "step": 5612
+ },
+ {
+ "epoch": 77.9646133682831,
+ "grad_norm": 0.23336872458457947,
+ "learning_rate": 0.0006,
+ "loss": 3.5086607933044434,
+ "step": 5613
+ },
+ {
+ "epoch": 77.97859327217125,
+ "grad_norm": 0.22938823699951172,
+ "learning_rate": 0.0006,
+ "loss": 3.5135412216186523,
+ "step": 5614
+ },
+ {
+ "epoch": 77.99257317605941,
+ "grad_norm": 0.22952115535736084,
+ "learning_rate": 0.0006,
+ "loss": 3.4909496307373047,
+ "step": 5615
+ },
+ {
+ "epoch": 78.0,
+ "grad_norm": 0.244375079870224,
+ "learning_rate": 0.0006,
+ "loss": 3.5009336471557617,
+ "step": 5616
+ },
+ {
+ "epoch": 78.0,
+ "eval_loss": 3.9880237579345703,
+ "eval_runtime": 46.3392,
+ "eval_samples_per_second": 52.698,
+ "eval_steps_per_second": 3.302,
+ "step": 5616
+ },
+ {
+ "epoch": 78.01397990388816,
+ "grad_norm": 0.21258895099163055,
+ "learning_rate": 0.0006,
+ "loss": 3.473972797393799,
+ "step": 5617
+ },
+ {
+ "epoch": 78.02795980777633,
+ "grad_norm": 0.24391628801822662,
+ "learning_rate": 0.0006,
+ "loss": 3.422597646713257,
+ "step": 5618
+ },
+ {
+ "epoch": 78.04193971166448,
+ "grad_norm": 0.2876848578453064,
+ "learning_rate": 0.0006,
+ "loss": 3.458035469055176,
+ "step": 5619
+ },
+ {
+ "epoch": 78.05591961555264,
+ "grad_norm": 0.29750117659568787,
+ "learning_rate": 0.0006,
+ "loss": 3.4394774436950684,
+ "step": 5620
+ },
+ {
+ "epoch": 78.06989951944081,
+ "grad_norm": 0.2604219615459442,
+ "learning_rate": 0.0006,
+ "loss": 3.450514793395996,
+ "step": 5621
+ },
+ {
+ "epoch": 78.08387942332897,
+ "grad_norm": 0.2383262813091278,
+ "learning_rate": 0.0006,
+ "loss": 3.4291372299194336,
+ "step": 5622
+ },
+ {
+ "epoch": 78.09785932721712,
+ "grad_norm": 0.2188589870929718,
+ "learning_rate": 0.0006,
+ "loss": 3.441857099533081,
+ "step": 5623
+ },
+ {
+ "epoch": 78.1118392311053,
+ "grad_norm": 0.20857281982898712,
+ "learning_rate": 0.0006,
+ "loss": 3.444624423980713,
+ "step": 5624
+ },
+ {
+ "epoch": 78.12581913499345,
+ "grad_norm": 0.25901344418525696,
+ "learning_rate": 0.0006,
+ "loss": 3.436108112335205,
+ "step": 5625
+ },
+ {
+ "epoch": 78.1397990388816,
+ "grad_norm": 0.29044362902641296,
+ "learning_rate": 0.0006,
+ "loss": 3.4631142616271973,
+ "step": 5626
+ },
+ {
+ "epoch": 78.15377894276976,
+ "grad_norm": 0.2697533071041107,
+ "learning_rate": 0.0006,
+ "loss": 3.47342586517334,
+ "step": 5627
+ },
+ {
+ "epoch": 78.16775884665793,
+ "grad_norm": 0.23660187423229218,
+ "learning_rate": 0.0006,
+ "loss": 3.4970450401306152,
+ "step": 5628
+ },
+ {
+ "epoch": 78.18173875054609,
+ "grad_norm": 0.2369665950536728,
+ "learning_rate": 0.0006,
+ "loss": 3.4965858459472656,
+ "step": 5629
+ },
+ {
+ "epoch": 78.19571865443424,
+ "grad_norm": 0.2571038603782654,
+ "learning_rate": 0.0006,
+ "loss": 3.412412166595459,
+ "step": 5630
+ },
+ {
+ "epoch": 78.20969855832242,
+ "grad_norm": 0.26016053557395935,
+ "learning_rate": 0.0006,
+ "loss": 3.4462265968322754,
+ "step": 5631
+ },
+ {
+ "epoch": 78.22367846221057,
+ "grad_norm": 0.2378724217414856,
+ "learning_rate": 0.0006,
+ "loss": 3.4451708793640137,
+ "step": 5632
+ },
+ {
+ "epoch": 78.23765836609873,
+ "grad_norm": 0.24232783913612366,
+ "learning_rate": 0.0006,
+ "loss": 3.4438111782073975,
+ "step": 5633
+ },
+ {
+ "epoch": 78.2516382699869,
+ "grad_norm": 0.23770418763160706,
+ "learning_rate": 0.0006,
+ "loss": 3.43533992767334,
+ "step": 5634
+ },
+ {
+ "epoch": 78.26561817387505,
+ "grad_norm": 0.23466856777668,
+ "learning_rate": 0.0006,
+ "loss": 3.48561954498291,
+ "step": 5635
+ },
+ {
+ "epoch": 78.27959807776321,
+ "grad_norm": 0.2326284646987915,
+ "learning_rate": 0.0006,
+ "loss": 3.473475217819214,
+ "step": 5636
+ },
+ {
+ "epoch": 78.29357798165138,
+ "grad_norm": 0.24022948741912842,
+ "learning_rate": 0.0006,
+ "loss": 3.4412283897399902,
+ "step": 5637
+ },
+ {
+ "epoch": 78.30755788553954,
+ "grad_norm": 0.2522888779640198,
+ "learning_rate": 0.0006,
+ "loss": 3.4387173652648926,
+ "step": 5638
+ },
+ {
+ "epoch": 78.3215377894277,
+ "grad_norm": 0.2409897744655609,
+ "learning_rate": 0.0006,
+ "loss": 3.4434142112731934,
+ "step": 5639
+ },
+ {
+ "epoch": 78.33551769331586,
+ "grad_norm": 0.24789150059223175,
+ "learning_rate": 0.0006,
+ "loss": 3.479180335998535,
+ "step": 5640
+ },
+ {
+ "epoch": 78.34949759720402,
+ "grad_norm": 0.23893289268016815,
+ "learning_rate": 0.0006,
+ "loss": 3.4569711685180664,
+ "step": 5641
+ },
+ {
+ "epoch": 78.36347750109218,
+ "grad_norm": 0.25813573598861694,
+ "learning_rate": 0.0006,
+ "loss": 3.4897937774658203,
+ "step": 5642
+ },
+ {
+ "epoch": 78.37745740498035,
+ "grad_norm": 0.2786903977394104,
+ "learning_rate": 0.0006,
+ "loss": 3.449057102203369,
+ "step": 5643
+ },
+ {
+ "epoch": 78.3914373088685,
+ "grad_norm": 0.2671049237251282,
+ "learning_rate": 0.0006,
+ "loss": 3.4653759002685547,
+ "step": 5644
+ },
+ {
+ "epoch": 78.40541721275666,
+ "grad_norm": 0.22132059931755066,
+ "learning_rate": 0.0006,
+ "loss": 3.469104766845703,
+ "step": 5645
+ },
+ {
+ "epoch": 78.41939711664482,
+ "grad_norm": 0.23016799986362457,
+ "learning_rate": 0.0006,
+ "loss": 3.459315776824951,
+ "step": 5646
+ },
+ {
+ "epoch": 78.43337702053299,
+ "grad_norm": 0.24416282773017883,
+ "learning_rate": 0.0006,
+ "loss": 3.455636978149414,
+ "step": 5647
+ },
+ {
+ "epoch": 78.44735692442114,
+ "grad_norm": 0.21846890449523926,
+ "learning_rate": 0.0006,
+ "loss": 3.448091506958008,
+ "step": 5648
+ },
+ {
+ "epoch": 78.4613368283093,
+ "grad_norm": 0.23508375883102417,
+ "learning_rate": 0.0006,
+ "loss": 3.4912142753601074,
+ "step": 5649
+ },
+ {
+ "epoch": 78.47531673219747,
+ "grad_norm": 0.2555168867111206,
+ "learning_rate": 0.0006,
+ "loss": 3.4540610313415527,
+ "step": 5650
+ },
+ {
+ "epoch": 78.48929663608563,
+ "grad_norm": 0.24908530712127686,
+ "learning_rate": 0.0006,
+ "loss": 3.4480438232421875,
+ "step": 5651
+ },
+ {
+ "epoch": 78.50327653997378,
+ "grad_norm": 0.21412776410579681,
+ "learning_rate": 0.0006,
+ "loss": 3.4866371154785156,
+ "step": 5652
+ },
+ {
+ "epoch": 78.51725644386195,
+ "grad_norm": 0.20922242105007172,
+ "learning_rate": 0.0006,
+ "loss": 3.478621006011963,
+ "step": 5653
+ },
+ {
+ "epoch": 78.53123634775011,
+ "grad_norm": 0.2246457040309906,
+ "learning_rate": 0.0006,
+ "loss": 3.481985569000244,
+ "step": 5654
+ },
+ {
+ "epoch": 78.54521625163827,
+ "grad_norm": 0.2635398805141449,
+ "learning_rate": 0.0006,
+ "loss": 3.4374074935913086,
+ "step": 5655
+ },
+ {
+ "epoch": 78.55919615552644,
+ "grad_norm": 0.24871022999286652,
+ "learning_rate": 0.0006,
+ "loss": 3.4646430015563965,
+ "step": 5656
+ },
+ {
+ "epoch": 78.57317605941459,
+ "grad_norm": 0.20784349739551544,
+ "learning_rate": 0.0006,
+ "loss": 3.5141677856445312,
+ "step": 5657
+ },
+ {
+ "epoch": 78.58715596330275,
+ "grad_norm": 0.22655104100704193,
+ "learning_rate": 0.0006,
+ "loss": 3.4698171615600586,
+ "step": 5658
+ },
+ {
+ "epoch": 78.60113586719092,
+ "grad_norm": 0.22383511066436768,
+ "learning_rate": 0.0006,
+ "loss": 3.444244146347046,
+ "step": 5659
+ },
+ {
+ "epoch": 78.61511577107908,
+ "grad_norm": 0.2113238275051117,
+ "learning_rate": 0.0006,
+ "loss": 3.465719223022461,
+ "step": 5660
+ },
+ {
+ "epoch": 78.62909567496723,
+ "grad_norm": 0.19101600348949432,
+ "learning_rate": 0.0006,
+ "loss": 3.484689712524414,
+ "step": 5661
+ },
+ {
+ "epoch": 78.6430755788554,
+ "grad_norm": 0.2073238044977188,
+ "learning_rate": 0.0006,
+ "loss": 3.46522855758667,
+ "step": 5662
+ },
+ {
+ "epoch": 78.65705548274356,
+ "grad_norm": 0.21808618307113647,
+ "learning_rate": 0.0006,
+ "loss": 3.479005813598633,
+ "step": 5663
+ },
+ {
+ "epoch": 78.67103538663171,
+ "grad_norm": 0.203338161110878,
+ "learning_rate": 0.0006,
+ "loss": 3.492825984954834,
+ "step": 5664
+ },
+ {
+ "epoch": 78.68501529051987,
+ "grad_norm": 0.23006507754325867,
+ "learning_rate": 0.0006,
+ "loss": 3.4999642372131348,
+ "step": 5665
+ },
+ {
+ "epoch": 78.69899519440804,
+ "grad_norm": 0.2446610927581787,
+ "learning_rate": 0.0006,
+ "loss": 3.48500919342041,
+ "step": 5666
+ },
+ {
+ "epoch": 78.7129750982962,
+ "grad_norm": 0.2601945400238037,
+ "learning_rate": 0.0006,
+ "loss": 3.4861927032470703,
+ "step": 5667
+ },
+ {
+ "epoch": 78.72695500218435,
+ "grad_norm": 0.23464927077293396,
+ "learning_rate": 0.0006,
+ "loss": 3.474249839782715,
+ "step": 5668
+ },
+ {
+ "epoch": 78.74093490607252,
+ "grad_norm": 0.21698802709579468,
+ "learning_rate": 0.0006,
+ "loss": 3.499706745147705,
+ "step": 5669
+ },
+ {
+ "epoch": 78.75491480996068,
+ "grad_norm": 0.22146548330783844,
+ "learning_rate": 0.0006,
+ "loss": 3.496151924133301,
+ "step": 5670
+ },
+ {
+ "epoch": 78.76889471384884,
+ "grad_norm": 0.2459285408258438,
+ "learning_rate": 0.0006,
+ "loss": 3.4743995666503906,
+ "step": 5671
+ },
+ {
+ "epoch": 78.78287461773701,
+ "grad_norm": 0.2358015924692154,
+ "learning_rate": 0.0006,
+ "loss": 3.479529857635498,
+ "step": 5672
+ },
+ {
+ "epoch": 78.79685452162516,
+ "grad_norm": 0.23457956314086914,
+ "learning_rate": 0.0006,
+ "loss": 3.4957330226898193,
+ "step": 5673
+ },
+ {
+ "epoch": 78.81083442551332,
+ "grad_norm": 0.21969331800937653,
+ "learning_rate": 0.0006,
+ "loss": 3.4782285690307617,
+ "step": 5674
+ },
+ {
+ "epoch": 78.82481432940149,
+ "grad_norm": 0.23743604123592377,
+ "learning_rate": 0.0006,
+ "loss": 3.497030735015869,
+ "step": 5675
+ },
+ {
+ "epoch": 78.83879423328965,
+ "grad_norm": 0.23925618827342987,
+ "learning_rate": 0.0006,
+ "loss": 3.495553493499756,
+ "step": 5676
+ },
+ {
+ "epoch": 78.8527741371778,
+ "grad_norm": 0.20647381246089935,
+ "learning_rate": 0.0006,
+ "loss": 3.47171688079834,
+ "step": 5677
+ },
+ {
+ "epoch": 78.86675404106597,
+ "grad_norm": 0.20148544013500214,
+ "learning_rate": 0.0006,
+ "loss": 3.4736156463623047,
+ "step": 5678
+ },
+ {
+ "epoch": 78.88073394495413,
+ "grad_norm": 0.2097293585538864,
+ "learning_rate": 0.0006,
+ "loss": 3.436239719390869,
+ "step": 5679
+ },
+ {
+ "epoch": 78.89471384884229,
+ "grad_norm": 0.21129930019378662,
+ "learning_rate": 0.0006,
+ "loss": 3.4720277786254883,
+ "step": 5680
+ },
+ {
+ "epoch": 78.90869375273044,
+ "grad_norm": 0.2049081027507782,
+ "learning_rate": 0.0006,
+ "loss": 3.476945400238037,
+ "step": 5681
+ },
+ {
+ "epoch": 78.92267365661861,
+ "grad_norm": 0.2183583825826645,
+ "learning_rate": 0.0006,
+ "loss": 3.4852776527404785,
+ "step": 5682
+ },
+ {
+ "epoch": 78.93665356050677,
+ "grad_norm": 0.21253879368305206,
+ "learning_rate": 0.0006,
+ "loss": 3.4781546592712402,
+ "step": 5683
+ },
+ {
+ "epoch": 78.95063346439493,
+ "grad_norm": 0.20699666440486908,
+ "learning_rate": 0.0006,
+ "loss": 3.450756788253784,
+ "step": 5684
+ },
+ {
+ "epoch": 78.9646133682831,
+ "grad_norm": 0.25612396001815796,
+ "learning_rate": 0.0006,
+ "loss": 3.4762487411499023,
+ "step": 5685
+ },
+ {
+ "epoch": 78.97859327217125,
+ "grad_norm": 0.26524025201797485,
+ "learning_rate": 0.0006,
+ "loss": 3.4931769371032715,
+ "step": 5686
+ },
+ {
+ "epoch": 78.99257317605941,
+ "grad_norm": 0.2541322410106659,
+ "learning_rate": 0.0006,
+ "loss": 3.468247413635254,
+ "step": 5687
+ },
+ {
+ "epoch": 79.0,
+ "grad_norm": 0.2663288414478302,
+ "learning_rate": 0.0006,
+ "loss": 3.487189292907715,
+ "step": 5688
+ },
+ {
+ "epoch": 79.0,
+ "eval_loss": 3.988255739212036,
+ "eval_runtime": 46.5996,
+ "eval_samples_per_second": 52.404,
+ "eval_steps_per_second": 3.283,
+ "step": 5688
+ },
+ {
+ "epoch": 79.01397990388816,
+ "grad_norm": 0.2503090500831604,
+ "learning_rate": 0.0006,
+ "loss": 3.452444553375244,
+ "step": 5689
+ },
+ {
+ "epoch": 79.02795980777633,
+ "grad_norm": 0.28306853771209717,
+ "learning_rate": 0.0006,
+ "loss": 3.4412660598754883,
+ "step": 5690
+ },
+ {
+ "epoch": 79.04193971166448,
+ "grad_norm": 0.3115243911743164,
+ "learning_rate": 0.0006,
+ "loss": 3.4124369621276855,
+ "step": 5691
+ },
+ {
+ "epoch": 79.05591961555264,
+ "grad_norm": 0.273013710975647,
+ "learning_rate": 0.0006,
+ "loss": 3.4493820667266846,
+ "step": 5692
+ },
+ {
+ "epoch": 79.06989951944081,
+ "grad_norm": 0.22326645255088806,
+ "learning_rate": 0.0006,
+ "loss": 3.4517998695373535,
+ "step": 5693
+ },
+ {
+ "epoch": 79.08387942332897,
+ "grad_norm": 0.24398484826087952,
+ "learning_rate": 0.0006,
+ "loss": 3.4242095947265625,
+ "step": 5694
+ },
+ {
+ "epoch": 79.09785932721712,
+ "grad_norm": 0.25253739953041077,
+ "learning_rate": 0.0006,
+ "loss": 3.4249048233032227,
+ "step": 5695
+ },
+ {
+ "epoch": 79.1118392311053,
+ "grad_norm": 0.2664744555950165,
+ "learning_rate": 0.0006,
+ "loss": 3.452235698699951,
+ "step": 5696
+ },
+ {
+ "epoch": 79.12581913499345,
+ "grad_norm": 0.28276678919792175,
+ "learning_rate": 0.0006,
+ "loss": 3.4641671180725098,
+ "step": 5697
+ },
+ {
+ "epoch": 79.1397990388816,
+ "grad_norm": 0.2725527882575989,
+ "learning_rate": 0.0006,
+ "loss": 3.4483447074890137,
+ "step": 5698
+ },
+ {
+ "epoch": 79.15377894276976,
+ "grad_norm": 0.2702547609806061,
+ "learning_rate": 0.0006,
+ "loss": 3.4427199363708496,
+ "step": 5699
+ },
+ {
+ "epoch": 79.16775884665793,
+ "grad_norm": 0.2617502212524414,
+ "learning_rate": 0.0006,
+ "loss": 3.46244740486145,
+ "step": 5700
+ },
+ {
+ "epoch": 79.18173875054609,
+ "grad_norm": 0.22378475964069366,
+ "learning_rate": 0.0006,
+ "loss": 3.460523843765259,
+ "step": 5701
+ },
+ {
+ "epoch": 79.19571865443424,
+ "grad_norm": 0.2233104556798935,
+ "learning_rate": 0.0006,
+ "loss": 3.425114631652832,
+ "step": 5702
+ },
+ {
+ "epoch": 79.20969855832242,
+ "grad_norm": 0.24079658091068268,
+ "learning_rate": 0.0006,
+ "loss": 3.4773077964782715,
+ "step": 5703
+ },
+ {
+ "epoch": 79.22367846221057,
+ "grad_norm": 0.24479007720947266,
+ "learning_rate": 0.0006,
+ "loss": 3.438293218612671,
+ "step": 5704
+ },
+ {
+ "epoch": 79.23765836609873,
+ "grad_norm": 0.24505102634429932,
+ "learning_rate": 0.0006,
+ "loss": 3.4798545837402344,
+ "step": 5705
+ },
+ {
+ "epoch": 79.2516382699869,
+ "grad_norm": 0.22588814795017242,
+ "learning_rate": 0.0006,
+ "loss": 3.4557571411132812,
+ "step": 5706
+ },
+ {
+ "epoch": 79.26561817387505,
+ "grad_norm": 0.24139748513698578,
+ "learning_rate": 0.0006,
+ "loss": 3.4543919563293457,
+ "step": 5707
+ },
+ {
+ "epoch": 79.27959807776321,
+ "grad_norm": 0.21584808826446533,
+ "learning_rate": 0.0006,
+ "loss": 3.4505133628845215,
+ "step": 5708
+ },
+ {
+ "epoch": 79.29357798165138,
+ "grad_norm": 0.2180371880531311,
+ "learning_rate": 0.0006,
+ "loss": 3.4630508422851562,
+ "step": 5709
+ },
+ {
+ "epoch": 79.30755788553954,
+ "grad_norm": 0.21993961930274963,
+ "learning_rate": 0.0006,
+ "loss": 3.455995559692383,
+ "step": 5710
+ },
+ {
+ "epoch": 79.3215377894277,
+ "grad_norm": 0.2302546501159668,
+ "learning_rate": 0.0006,
+ "loss": 3.4884848594665527,
+ "step": 5711
+ },
+ {
+ "epoch": 79.33551769331586,
+ "grad_norm": 0.2554272711277008,
+ "learning_rate": 0.0006,
+ "loss": 3.440516948699951,
+ "step": 5712
+ },
+ {
+ "epoch": 79.34949759720402,
+ "grad_norm": 0.2361014038324356,
+ "learning_rate": 0.0006,
+ "loss": 3.4706239700317383,
+ "step": 5713
+ },
+ {
+ "epoch": 79.36347750109218,
+ "grad_norm": 0.22390307486057281,
+ "learning_rate": 0.0006,
+ "loss": 3.4447524547576904,
+ "step": 5714
+ },
+ {
+ "epoch": 79.37745740498035,
+ "grad_norm": 0.2271745353937149,
+ "learning_rate": 0.0006,
+ "loss": 3.47141170501709,
+ "step": 5715
+ },
+ {
+ "epoch": 79.3914373088685,
+ "grad_norm": 0.25239962339401245,
+ "learning_rate": 0.0006,
+ "loss": 3.4772067070007324,
+ "step": 5716
+ },
+ {
+ "epoch": 79.40541721275666,
+ "grad_norm": 0.2375272810459137,
+ "learning_rate": 0.0006,
+ "loss": 3.45712947845459,
+ "step": 5717
+ },
+ {
+ "epoch": 79.41939711664482,
+ "grad_norm": 0.22904036939144135,
+ "learning_rate": 0.0006,
+ "loss": 3.4753048419952393,
+ "step": 5718
+ },
+ {
+ "epoch": 79.43337702053299,
+ "grad_norm": 0.24097497761249542,
+ "learning_rate": 0.0006,
+ "loss": 3.462437391281128,
+ "step": 5719
+ },
+ {
+ "epoch": 79.44735692442114,
+ "grad_norm": 0.25267651677131653,
+ "learning_rate": 0.0006,
+ "loss": 3.4526681900024414,
+ "step": 5720
+ },
+ {
+ "epoch": 79.4613368283093,
+ "grad_norm": 0.25850236415863037,
+ "learning_rate": 0.0006,
+ "loss": 3.452427625656128,
+ "step": 5721
+ },
+ {
+ "epoch": 79.47531673219747,
+ "grad_norm": 0.26425909996032715,
+ "learning_rate": 0.0006,
+ "loss": 3.4524970054626465,
+ "step": 5722
+ },
+ {
+ "epoch": 79.48929663608563,
+ "grad_norm": 0.2287026345729828,
+ "learning_rate": 0.0006,
+ "loss": 3.4680042266845703,
+ "step": 5723
+ },
+ {
+ "epoch": 79.50327653997378,
+ "grad_norm": 0.2357720285654068,
+ "learning_rate": 0.0006,
+ "loss": 3.4661996364593506,
+ "step": 5724
+ },
+ {
+ "epoch": 79.51725644386195,
+ "grad_norm": 0.2378997653722763,
+ "learning_rate": 0.0006,
+ "loss": 3.4744834899902344,
+ "step": 5725
+ },
+ {
+ "epoch": 79.53123634775011,
+ "grad_norm": 0.2487446367740631,
+ "learning_rate": 0.0006,
+ "loss": 3.4760963916778564,
+ "step": 5726
+ },
+ {
+ "epoch": 79.54521625163827,
+ "grad_norm": 0.25056660175323486,
+ "learning_rate": 0.0006,
+ "loss": 3.4646544456481934,
+ "step": 5727
+ },
+ {
+ "epoch": 79.55919615552644,
+ "grad_norm": 0.22458213567733765,
+ "learning_rate": 0.0006,
+ "loss": 3.48275089263916,
+ "step": 5728
+ },
+ {
+ "epoch": 79.57317605941459,
+ "grad_norm": 0.22517307102680206,
+ "learning_rate": 0.0006,
+ "loss": 3.4858477115631104,
+ "step": 5729
+ },
+ {
+ "epoch": 79.58715596330275,
+ "grad_norm": 0.2253974974155426,
+ "learning_rate": 0.0006,
+ "loss": 3.4601099491119385,
+ "step": 5730
+ },
+ {
+ "epoch": 79.60113586719092,
+ "grad_norm": 0.22956253588199615,
+ "learning_rate": 0.0006,
+ "loss": 3.4599132537841797,
+ "step": 5731
+ },
+ {
+ "epoch": 79.61511577107908,
+ "grad_norm": 0.26346060633659363,
+ "learning_rate": 0.0006,
+ "loss": 3.4992642402648926,
+ "step": 5732
+ },
+ {
+ "epoch": 79.62909567496723,
+ "grad_norm": 0.2493542581796646,
+ "learning_rate": 0.0006,
+ "loss": 3.4743075370788574,
+ "step": 5733
+ },
+ {
+ "epoch": 79.6430755788554,
+ "grad_norm": 0.2473273128271103,
+ "learning_rate": 0.0006,
+ "loss": 3.487657070159912,
+ "step": 5734
+ },
+ {
+ "epoch": 79.65705548274356,
+ "grad_norm": 0.21894414722919464,
+ "learning_rate": 0.0006,
+ "loss": 3.4761929512023926,
+ "step": 5735
+ },
+ {
+ "epoch": 79.67103538663171,
+ "grad_norm": 0.20691576600074768,
+ "learning_rate": 0.0006,
+ "loss": 3.468233585357666,
+ "step": 5736
+ },
+ {
+ "epoch": 79.68501529051987,
+ "grad_norm": 0.22317089140415192,
+ "learning_rate": 0.0006,
+ "loss": 3.4676461219787598,
+ "step": 5737
+ },
+ {
+ "epoch": 79.69899519440804,
+ "grad_norm": 0.22669419646263123,
+ "learning_rate": 0.0006,
+ "loss": 3.4934377670288086,
+ "step": 5738
+ },
+ {
+ "epoch": 79.7129750982962,
+ "grad_norm": 0.23321859538555145,
+ "learning_rate": 0.0006,
+ "loss": 3.470146417617798,
+ "step": 5739
+ },
+ {
+ "epoch": 79.72695500218435,
+ "grad_norm": 0.21628828346729279,
+ "learning_rate": 0.0006,
+ "loss": 3.464975118637085,
+ "step": 5740
+ },
+ {
+ "epoch": 79.74093490607252,
+ "grad_norm": 0.22889219224452972,
+ "learning_rate": 0.0006,
+ "loss": 3.464859962463379,
+ "step": 5741
+ },
+ {
+ "epoch": 79.75491480996068,
+ "grad_norm": 0.23041504621505737,
+ "learning_rate": 0.0006,
+ "loss": 3.478351593017578,
+ "step": 5742
+ },
+ {
+ "epoch": 79.76889471384884,
+ "grad_norm": 0.2246071994304657,
+ "learning_rate": 0.0006,
+ "loss": 3.4927172660827637,
+ "step": 5743
+ },
+ {
+ "epoch": 79.78287461773701,
+ "grad_norm": 0.2326883226633072,
+ "learning_rate": 0.0006,
+ "loss": 3.4568581581115723,
+ "step": 5744
+ },
+ {
+ "epoch": 79.79685452162516,
+ "grad_norm": 0.22930850088596344,
+ "learning_rate": 0.0006,
+ "loss": 3.4665210247039795,
+ "step": 5745
+ },
+ {
+ "epoch": 79.81083442551332,
+ "grad_norm": 0.22361859679222107,
+ "learning_rate": 0.0006,
+ "loss": 3.4809937477111816,
+ "step": 5746
+ },
+ {
+ "epoch": 79.82481432940149,
+ "grad_norm": 0.20599117875099182,
+ "learning_rate": 0.0006,
+ "loss": 3.4918923377990723,
+ "step": 5747
+ },
+ {
+ "epoch": 79.83879423328965,
+ "grad_norm": 0.230980783700943,
+ "learning_rate": 0.0006,
+ "loss": 3.4691390991210938,
+ "step": 5748
+ },
+ {
+ "epoch": 79.8527741371778,
+ "grad_norm": 0.2432822734117508,
+ "learning_rate": 0.0006,
+ "loss": 3.465531349182129,
+ "step": 5749
+ },
+ {
+ "epoch": 79.86675404106597,
+ "grad_norm": 0.2326139360666275,
+ "learning_rate": 0.0006,
+ "loss": 3.464198350906372,
+ "step": 5750
+ },
+ {
+ "epoch": 79.88073394495413,
+ "grad_norm": 0.22227711975574493,
+ "learning_rate": 0.0006,
+ "loss": 3.4587674140930176,
+ "step": 5751
+ },
+ {
+ "epoch": 79.89471384884229,
+ "grad_norm": 0.20254085958003998,
+ "learning_rate": 0.0006,
+ "loss": 3.4628102779388428,
+ "step": 5752
+ },
+ {
+ "epoch": 79.90869375273044,
+ "grad_norm": 0.2130574733018875,
+ "learning_rate": 0.0006,
+ "loss": 3.491631031036377,
+ "step": 5753
+ },
+ {
+ "epoch": 79.92267365661861,
+ "grad_norm": 0.2221127301454544,
+ "learning_rate": 0.0006,
+ "loss": 3.477632522583008,
+ "step": 5754
+ },
+ {
+ "epoch": 79.93665356050677,
+ "grad_norm": 0.21647712588310242,
+ "learning_rate": 0.0006,
+ "loss": 3.470122814178467,
+ "step": 5755
+ },
+ {
+ "epoch": 79.95063346439493,
+ "grad_norm": 0.21333082020282745,
+ "learning_rate": 0.0006,
+ "loss": 3.4466612339019775,
+ "step": 5756
+ },
+ {
+ "epoch": 79.9646133682831,
+ "grad_norm": 0.24608036875724792,
+ "learning_rate": 0.0006,
+ "loss": 3.5203800201416016,
+ "step": 5757
+ },
+ {
+ "epoch": 79.97859327217125,
+ "grad_norm": 0.22165493667125702,
+ "learning_rate": 0.0006,
+ "loss": 3.467963457107544,
+ "step": 5758
+ },
+ {
+ "epoch": 79.99257317605941,
+ "grad_norm": 0.1960810422897339,
+ "learning_rate": 0.0006,
+ "loss": 3.4682164192199707,
+ "step": 5759
+ },
+ {
+ "epoch": 80.0,
+ "grad_norm": 0.23430649936199188,
+ "learning_rate": 0.0006,
+ "loss": 3.4980459213256836,
+ "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/mask15-l2r50-fulle-lm/checkpoint-5760/training_args.bin b/runs/mask15-l2r50-fulle-lm/checkpoint-5760/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..43721c50815fe94f90cb043bf545b8f7bd9afc38
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-5760/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:a0b8d7bb9ac952b1abed3bd1e5c8f6ebd20daa957b3a85688954f8df03be6eb9
+size 4856
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-6048/chat_template.jinja b/runs/mask15-l2r50-fulle-lm/checkpoint-6048/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/mask15-l2r50-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/mask15-l2r50-fulle-lm/checkpoint-6048/config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-6048/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..1b4ac3c550d6003148026765eba4cb1512b216c9
--- /dev/null
+++ b/runs/mask15-l2r50-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": 151672
+}
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-6048/generation_config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-6048/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..5cd15fe1269fd505cfdefe9b3e9989dacd9f68f4
--- /dev/null
+++ b/runs/mask15-l2r50-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/mask15-l2r50-fulle-lm/checkpoint-6048/model.safetensors b/runs/mask15-l2r50-fulle-lm/checkpoint-6048/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..1a220285c1d8e8fb71a35893dc6cd934836e8bdd
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-6048/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:fda30ebd14b695df4484d36ecce977cec34f4ac02c0de540df406a7505f50c10
+size 583358280
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-6048/optimizer.pt b/runs/mask15-l2r50-fulle-lm/checkpoint-6048/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..ac29812591cecf13b0a792e5ec7eda861379154b
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-6048/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:04a4dda1621631b7235924474e3caccb1ae8a6e81e5a2f59eff57f532c552df1
+size 1166831994
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-6048/rng_state_0.pth b/runs/mask15-l2r50-fulle-lm/checkpoint-6048/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..adcf920151db8d8d65a933b54d6faba40a0194f1
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-6048/rng_state_0.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:99672cdb2f7f9506d417841ce4dcbb19a1993e2c5dce40ed846e76c525d7dc2f
+size 14512
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-6048/rng_state_1.pth b/runs/mask15-l2r50-fulle-lm/checkpoint-6048/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..51dec7b679a8ca7b4238113e14a50068d6ee77a3
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-6048/rng_state_1.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:9b5a7d2b1120ed1ac30703810980e70184f386392c4676c9bffb7d79e0f1879a
+size 14512
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-6048/scheduler.pt b/runs/mask15-l2r50-fulle-lm/checkpoint-6048/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..762789ce7e31cc09dc831dc70530516d1f1e01b2
--- /dev/null
+++ b/runs/mask15-l2r50-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/mask15-l2r50-fulle-lm/checkpoint-6048/tokenizer.json b/runs/mask15-l2r50-fulle-lm/checkpoint-6048/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..6226bf25372d1a86dbd704ec75d2129960f1ba88
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-6048/tokenizer.json
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:9245fe3cb2d40f9ed8d5d8ddd1d58701ba2a236beec08f656162281673f30560
+size 11424264
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-6048/tokenizer_config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-6048/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..01bc9676576e8cf62a08a9db166d6c5bab1d6727
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-6048/tokenizer_config.json
@@ -0,0 +1,20 @@
+{
+ "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|>",
+ "<|mask|>"
+ ],
+ "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/mask15-l2r50-fulle-lm/checkpoint-6048/trainer_state.json b/runs/mask15-l2r50-fulle-lm/checkpoint-6048/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..e05518dbaff35957401ee735006b35dc6c478b70
--- /dev/null
+++ b/runs/mask15-l2r50-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": 9.807971954345703,
+ "learning_rate": 0.0,
+ "loss": 11.989814758300781,
+ "step": 1
+ },
+ {
+ "epoch": 0.027959807776321538,
+ "grad_norm": 9.834383010864258,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 11.993022918701172,
+ "step": 2
+ },
+ {
+ "epoch": 0.04193971166448231,
+ "grad_norm": 9.482470512390137,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 11.854345321655273,
+ "step": 3
+ },
+ {
+ "epoch": 0.055919615552643076,
+ "grad_norm": 7.678808689117432,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 11.618255615234375,
+ "step": 4
+ },
+ {
+ "epoch": 0.06989951944080385,
+ "grad_norm": 6.011275291442871,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 11.351423263549805,
+ "step": 5
+ },
+ {
+ "epoch": 0.08387942332896461,
+ "grad_norm": 5.244393825531006,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 11.128631591796875,
+ "step": 6
+ },
+ {
+ "epoch": 0.09785932721712538,
+ "grad_norm": 4.577618598937988,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 10.921937942504883,
+ "step": 7
+ },
+ {
+ "epoch": 0.11183923110528615,
+ "grad_norm": 4.03810453414917,
+ "learning_rate": 4.2e-05,
+ "loss": 10.742650985717773,
+ "step": 8
+ },
+ {
+ "epoch": 0.1258191349934469,
+ "grad_norm": 3.657679796218872,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 10.600778579711914,
+ "step": 9
+ },
+ {
+ "epoch": 0.1397990388816077,
+ "grad_norm": 3.352902889251709,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 10.489639282226562,
+ "step": 10
+ },
+ {
+ "epoch": 0.15377894276976845,
+ "grad_norm": 3.1162633895874023,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 10.417770385742188,
+ "step": 11
+ },
+ {
+ "epoch": 0.16775884665792923,
+ "grad_norm": 3.0402638912200928,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 10.35334587097168,
+ "step": 12
+ },
+ {
+ "epoch": 0.18173875054608998,
+ "grad_norm": 3.030630111694336,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 10.306867599487305,
+ "step": 13
+ },
+ {
+ "epoch": 0.19571865443425077,
+ "grad_norm": 3.035292148590088,
+ "learning_rate": 7.8e-05,
+ "loss": 10.26003646850586,
+ "step": 14
+ },
+ {
+ "epoch": 0.20969855832241152,
+ "grad_norm": 3.0125675201416016,
+ "learning_rate": 8.4e-05,
+ "loss": 10.219265937805176,
+ "step": 15
+ },
+ {
+ "epoch": 0.2236784622105723,
+ "grad_norm": 2.9998886585235596,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 10.161077499389648,
+ "step": 16
+ },
+ {
+ "epoch": 0.23765836609873306,
+ "grad_norm": 2.9411966800689697,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 10.107423782348633,
+ "step": 17
+ },
+ {
+ "epoch": 0.2516382699868938,
+ "grad_norm": 2.88081955909729,
+ "learning_rate": 0.000102,
+ "loss": 10.04700756072998,
+ "step": 18
+ },
+ {
+ "epoch": 0.2656181738750546,
+ "grad_norm": 2.8219687938690186,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 9.981185913085938,
+ "step": 19
+ },
+ {
+ "epoch": 0.2795980777632154,
+ "grad_norm": 2.79306960105896,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 9.89747142791748,
+ "step": 20
+ },
+ {
+ "epoch": 0.29357798165137616,
+ "grad_norm": 2.7314443588256836,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 9.829219818115234,
+ "step": 21
+ },
+ {
+ "epoch": 0.3075578855395369,
+ "grad_norm": 2.6923747062683105,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 9.747566223144531,
+ "step": 22
+ },
+ {
+ "epoch": 0.3215377894276977,
+ "grad_norm": 2.650602340698242,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 9.66455078125,
+ "step": 23
+ },
+ {
+ "epoch": 0.33551769331585846,
+ "grad_norm": 2.606977701187134,
+ "learning_rate": 0.000138,
+ "loss": 9.582326889038086,
+ "step": 24
+ },
+ {
+ "epoch": 0.34949759720401924,
+ "grad_norm": 2.567256212234497,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 9.492591857910156,
+ "step": 25
+ },
+ {
+ "epoch": 0.36347750109217997,
+ "grad_norm": 2.520740509033203,
+ "learning_rate": 0.00015,
+ "loss": 9.396563529968262,
+ "step": 26
+ },
+ {
+ "epoch": 0.37745740498034075,
+ "grad_norm": 2.471588611602783,
+ "learning_rate": 0.000156,
+ "loss": 9.303571701049805,
+ "step": 27
+ },
+ {
+ "epoch": 0.39143730886850153,
+ "grad_norm": 2.4341530799865723,
+ "learning_rate": 0.000162,
+ "loss": 9.191819190979004,
+ "step": 28
+ },
+ {
+ "epoch": 0.4054172127566623,
+ "grad_norm": 2.369244337081909,
+ "learning_rate": 0.000168,
+ "loss": 9.092012405395508,
+ "step": 29
+ },
+ {
+ "epoch": 0.41939711664482304,
+ "grad_norm": 2.28625226020813,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 8.984567642211914,
+ "step": 30
+ },
+ {
+ "epoch": 0.4333770205329838,
+ "grad_norm": 2.2082231044769287,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 8.889009475708008,
+ "step": 31
+ },
+ {
+ "epoch": 0.4473569244211446,
+ "grad_norm": 2.1429483890533447,
+ "learning_rate": 0.000186,
+ "loss": 8.778556823730469,
+ "step": 32
+ },
+ {
+ "epoch": 0.4613368283093054,
+ "grad_norm": 2.0937352180480957,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 8.661166191101074,
+ "step": 33
+ },
+ {
+ "epoch": 0.4753167321974661,
+ "grad_norm": 2.040790557861328,
+ "learning_rate": 0.000198,
+ "loss": 8.550382614135742,
+ "step": 34
+ },
+ {
+ "epoch": 0.4892966360856269,
+ "grad_norm": 1.93914794921875,
+ "learning_rate": 0.000204,
+ "loss": 8.463907241821289,
+ "step": 35
+ },
+ {
+ "epoch": 0.5032765399737876,
+ "grad_norm": 1.8624178171157837,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 8.3438720703125,
+ "step": 36
+ },
+ {
+ "epoch": 0.5172564438619485,
+ "grad_norm": 1.8107167482376099,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 8.21871566772461,
+ "step": 37
+ },
+ {
+ "epoch": 0.5312363477501092,
+ "grad_norm": 1.717979073524475,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 8.113494873046875,
+ "step": 38
+ },
+ {
+ "epoch": 0.54521625163827,
+ "grad_norm": 1.668742060661316,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 8.006099700927734,
+ "step": 39
+ },
+ {
+ "epoch": 0.5591961555264308,
+ "grad_norm": 1.6147786378860474,
+ "learning_rate": 0.000234,
+ "loss": 7.911509037017822,
+ "step": 40
+ },
+ {
+ "epoch": 0.5731760594145915,
+ "grad_norm": 1.535750150680542,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 7.822839736938477,
+ "step": 41
+ },
+ {
+ "epoch": 0.5871559633027523,
+ "grad_norm": 1.4700065851211548,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 7.713842868804932,
+ "step": 42
+ },
+ {
+ "epoch": 0.601135867190913,
+ "grad_norm": 1.39020574092865,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 7.6040191650390625,
+ "step": 43
+ },
+ {
+ "epoch": 0.6151157710790738,
+ "grad_norm": 1.2875399589538574,
+ "learning_rate": 0.000258,
+ "loss": 7.550642013549805,
+ "step": 44
+ },
+ {
+ "epoch": 0.6290956749672346,
+ "grad_norm": 1.2094247341156006,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 7.460824012756348,
+ "step": 45
+ },
+ {
+ "epoch": 0.6430755788553953,
+ "grad_norm": 1.126452088356018,
+ "learning_rate": 0.00027,
+ "loss": 7.380537986755371,
+ "step": 46
+ },
+ {
+ "epoch": 0.6570554827435562,
+ "grad_norm": 1.0313163995742798,
+ "learning_rate": 0.000276,
+ "loss": 7.286153793334961,
+ "step": 47
+ },
+ {
+ "epoch": 0.6710353866317169,
+ "grad_norm": 0.9172859787940979,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 7.2064714431762695,
+ "step": 48
+ },
+ {
+ "epoch": 0.6850152905198776,
+ "grad_norm": 0.8148201107978821,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 7.158207416534424,
+ "step": 49
+ },
+ {
+ "epoch": 0.6989951944080385,
+ "grad_norm": 0.650123119354248,
+ "learning_rate": 0.000294,
+ "loss": 7.108791828155518,
+ "step": 50
+ },
+ {
+ "epoch": 0.7129750982961992,
+ "grad_norm": 0.5437585711479187,
+ "learning_rate": 0.0003,
+ "loss": 7.083050727844238,
+ "step": 51
+ },
+ {
+ "epoch": 0.7269550021843599,
+ "grad_norm": 0.46762895584106445,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 7.058027267456055,
+ "step": 52
+ },
+ {
+ "epoch": 0.7409349060725208,
+ "grad_norm": 0.47947561740875244,
+ "learning_rate": 0.000312,
+ "loss": 7.015172958374023,
+ "step": 53
+ },
+ {
+ "epoch": 0.7549148099606815,
+ "grad_norm": 0.7546492218971252,
+ "learning_rate": 0.000318,
+ "loss": 7.024629592895508,
+ "step": 54
+ },
+ {
+ "epoch": 0.7688947138488423,
+ "grad_norm": 0.6153718829154968,
+ "learning_rate": 0.000324,
+ "loss": 7.026667594909668,
+ "step": 55
+ },
+ {
+ "epoch": 0.7828746177370031,
+ "grad_norm": 0.3359069228172302,
+ "learning_rate": 0.00033,
+ "loss": 7.008166313171387,
+ "step": 56
+ },
+ {
+ "epoch": 0.7968545216251638,
+ "grad_norm": 0.48906823992729187,
+ "learning_rate": 0.000336,
+ "loss": 7.019716262817383,
+ "step": 57
+ },
+ {
+ "epoch": 0.8108344255133246,
+ "grad_norm": 0.5525421500205994,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 7.02108097076416,
+ "step": 58
+ },
+ {
+ "epoch": 0.8248143294014854,
+ "grad_norm": 0.3103712201118469,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 7.003164768218994,
+ "step": 59
+ },
+ {
+ "epoch": 0.8387942332896461,
+ "grad_norm": 0.4431874752044678,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 7.003463268280029,
+ "step": 60
+ },
+ {
+ "epoch": 0.8527741371778069,
+ "grad_norm": 0.4291120767593384,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 6.96931791305542,
+ "step": 61
+ },
+ {
+ "epoch": 0.8667540410659677,
+ "grad_norm": 0.6566054224967957,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 6.989445686340332,
+ "step": 62
+ },
+ {
+ "epoch": 0.8807339449541285,
+ "grad_norm": 0.20663189888000488,
+ "learning_rate": 0.000372,
+ "loss": 6.9669342041015625,
+ "step": 63
+ },
+ {
+ "epoch": 0.8947138488422892,
+ "grad_norm": 0.6242535710334778,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 6.949883460998535,
+ "step": 64
+ },
+ {
+ "epoch": 0.9086937527304499,
+ "grad_norm": 0.6984224915504456,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 6.955153465270996,
+ "step": 65
+ },
+ {
+ "epoch": 0.9226736566186108,
+ "grad_norm": 0.6328083872795105,
+ "learning_rate": 0.00039,
+ "loss": 6.965421676635742,
+ "step": 66
+ },
+ {
+ "epoch": 0.9366535605067715,
+ "grad_norm": 1.213352918624878,
+ "learning_rate": 0.000396,
+ "loss": 6.9454345703125,
+ "step": 67
+ },
+ {
+ "epoch": 0.9506334643949322,
+ "grad_norm": 0.9221940636634827,
+ "learning_rate": 0.000402,
+ "loss": 6.923908233642578,
+ "step": 68
+ },
+ {
+ "epoch": 0.9646133682830931,
+ "grad_norm": 0.6825450658798218,
+ "learning_rate": 0.000408,
+ "loss": 6.910131454467773,
+ "step": 69
+ },
+ {
+ "epoch": 0.9785932721712538,
+ "grad_norm": 0.5690162181854248,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 6.89891242980957,
+ "step": 70
+ },
+ {
+ "epoch": 0.9925731760594146,
+ "grad_norm": 0.4320870041847229,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 6.896081924438477,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.31632405519485474,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 6.897444725036621,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 7.757839679718018,
+ "eval_runtime": 43.8338,
+ "eval_samples_per_second": 55.71,
+ "eval_steps_per_second": 3.49,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139799038881607,
+ "grad_norm": 0.3789916932582855,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 6.877245903015137,
+ "step": 73
+ },
+ {
+ "epoch": 1.0279598077763215,
+ "grad_norm": 0.9167932868003845,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 6.921600341796875,
+ "step": 74
+ },
+ {
+ "epoch": 1.0419397116644824,
+ "grad_norm": 0.581188440322876,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 6.861001968383789,
+ "step": 75
+ },
+ {
+ "epoch": 1.0559196155526431,
+ "grad_norm": 0.4179714024066925,
+ "learning_rate": 0.00045,
+ "loss": 6.875657081604004,
+ "step": 76
+ },
+ {
+ "epoch": 1.0698995194408039,
+ "grad_norm": 1.0669957399368286,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 6.857122421264648,
+ "step": 77
+ },
+ {
+ "epoch": 1.0838794233289646,
+ "grad_norm": 0.27855145931243896,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 6.828852653503418,
+ "step": 78
+ },
+ {
+ "epoch": 1.0978593272171253,
+ "grad_norm": 0.7192047834396362,
+ "learning_rate": 0.000468,
+ "loss": 6.870839595794678,
+ "step": 79
+ },
+ {
+ "epoch": 1.1118392311052863,
+ "grad_norm": 0.5583325624465942,
+ "learning_rate": 0.000474,
+ "loss": 6.8497514724731445,
+ "step": 80
+ },
+ {
+ "epoch": 1.125819134993447,
+ "grad_norm": 0.3001925051212311,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 6.858528137207031,
+ "step": 81
+ },
+ {
+ "epoch": 1.1397990388816077,
+ "grad_norm": 0.2408239096403122,
+ "learning_rate": 0.000486,
+ "loss": 6.83231258392334,
+ "step": 82
+ },
+ {
+ "epoch": 1.1537789427697684,
+ "grad_norm": 0.28230324387550354,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 6.815476894378662,
+ "step": 83
+ },
+ {
+ "epoch": 1.1677588466579292,
+ "grad_norm": 0.3247123658657074,
+ "learning_rate": 0.000498,
+ "loss": 6.780126094818115,
+ "step": 84
+ },
+ {
+ "epoch": 1.18173875054609,
+ "grad_norm": 0.25713011622428894,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 6.7798309326171875,
+ "step": 85
+ },
+ {
+ "epoch": 1.1957186544342508,
+ "grad_norm": 0.5386835932731628,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 6.791745185852051,
+ "step": 86
+ },
+ {
+ "epoch": 1.2096985583224116,
+ "grad_norm": 0.2226393222808838,
+ "learning_rate": 0.000516,
+ "loss": 6.7826972007751465,
+ "step": 87
+ },
+ {
+ "epoch": 1.2236784622105723,
+ "grad_norm": 0.4338362216949463,
+ "learning_rate": 0.000522,
+ "loss": 6.805043697357178,
+ "step": 88
+ },
+ {
+ "epoch": 1.237658366098733,
+ "grad_norm": 0.2953208386898041,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 6.768434524536133,
+ "step": 89
+ },
+ {
+ "epoch": 1.2516382699868938,
+ "grad_norm": 0.13453717529773712,
+ "learning_rate": 0.000534,
+ "loss": 6.773697376251221,
+ "step": 90
+ },
+ {
+ "epoch": 1.2656181738750547,
+ "grad_norm": 0.35774412751197815,
+ "learning_rate": 0.00054,
+ "loss": 6.766414642333984,
+ "step": 91
+ },
+ {
+ "epoch": 1.2795980777632154,
+ "grad_norm": 0.4669720530509949,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 6.754847526550293,
+ "step": 92
+ },
+ {
+ "epoch": 1.2935779816513762,
+ "grad_norm": 0.13806621730327606,
+ "learning_rate": 0.000552,
+ "loss": 6.746858596801758,
+ "step": 93
+ },
+ {
+ "epoch": 1.307557885539537,
+ "grad_norm": 0.3280332386493683,
+ "learning_rate": 0.000558,
+ "loss": 6.715662956237793,
+ "step": 94
+ },
+ {
+ "epoch": 1.3215377894276976,
+ "grad_norm": 0.4689937233924866,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 6.734938144683838,
+ "step": 95
+ },
+ {
+ "epoch": 1.3355176933158583,
+ "grad_norm": 0.35371264815330505,
+ "learning_rate": 0.00057,
+ "loss": 6.748386383056641,
+ "step": 96
+ },
+ {
+ "epoch": 1.3494975972040193,
+ "grad_norm": 0.15232303738594055,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 6.705557823181152,
+ "step": 97
+ },
+ {
+ "epoch": 1.36347750109218,
+ "grad_norm": 0.30132821202278137,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 6.7199859619140625,
+ "step": 98
+ },
+ {
+ "epoch": 1.3774574049803407,
+ "grad_norm": 0.42174842953681946,
+ "learning_rate": 0.000588,
+ "loss": 6.715370178222656,
+ "step": 99
+ },
+ {
+ "epoch": 1.3914373088685015,
+ "grad_norm": 0.6257228851318359,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 6.707026958465576,
+ "step": 100
+ },
+ {
+ "epoch": 1.4054172127566624,
+ "grad_norm": 0.4551195800304413,
+ "learning_rate": 0.0006,
+ "loss": 6.7078423500061035,
+ "step": 101
+ },
+ {
+ "epoch": 1.4193971166448232,
+ "grad_norm": 0.41940346360206604,
+ "learning_rate": 0.0006,
+ "loss": 6.6959357261657715,
+ "step": 102
+ },
+ {
+ "epoch": 1.4333770205329839,
+ "grad_norm": 0.32251718640327454,
+ "learning_rate": 0.0006,
+ "loss": 6.689168930053711,
+ "step": 103
+ },
+ {
+ "epoch": 1.4473569244211446,
+ "grad_norm": 0.2992720305919647,
+ "learning_rate": 0.0006,
+ "loss": 6.680738925933838,
+ "step": 104
+ },
+ {
+ "epoch": 1.4613368283093053,
+ "grad_norm": 0.3228456974029541,
+ "learning_rate": 0.0006,
+ "loss": 6.672350883483887,
+ "step": 105
+ },
+ {
+ "epoch": 1.475316732197466,
+ "grad_norm": 0.24954743683338165,
+ "learning_rate": 0.0006,
+ "loss": 6.653716087341309,
+ "step": 106
+ },
+ {
+ "epoch": 1.4892966360856268,
+ "grad_norm": 0.30740687251091003,
+ "learning_rate": 0.0006,
+ "loss": 6.676583290100098,
+ "step": 107
+ },
+ {
+ "epoch": 1.5032765399737875,
+ "grad_norm": 0.24950599670410156,
+ "learning_rate": 0.0006,
+ "loss": 6.656691551208496,
+ "step": 108
+ },
+ {
+ "epoch": 1.5172564438619485,
+ "grad_norm": 0.24293005466461182,
+ "learning_rate": 0.0006,
+ "loss": 6.640995979309082,
+ "step": 109
+ },
+ {
+ "epoch": 1.5312363477501092,
+ "grad_norm": 0.30167272686958313,
+ "learning_rate": 0.0006,
+ "loss": 6.647380352020264,
+ "step": 110
+ },
+ {
+ "epoch": 1.5452162516382701,
+ "grad_norm": 0.4424632787704468,
+ "learning_rate": 0.0006,
+ "loss": 6.6548261642456055,
+ "step": 111
+ },
+ {
+ "epoch": 1.5591961555264309,
+ "grad_norm": 0.5295748114585876,
+ "learning_rate": 0.0006,
+ "loss": 6.64370059967041,
+ "step": 112
+ },
+ {
+ "epoch": 1.5731760594145916,
+ "grad_norm": 0.6829339265823364,
+ "learning_rate": 0.0006,
+ "loss": 6.654196739196777,
+ "step": 113
+ },
+ {
+ "epoch": 1.5871559633027523,
+ "grad_norm": 0.6534460186958313,
+ "learning_rate": 0.0006,
+ "loss": 6.675765037536621,
+ "step": 114
+ },
+ {
+ "epoch": 1.601135867190913,
+ "grad_norm": 0.6172244548797607,
+ "learning_rate": 0.0006,
+ "loss": 6.631234169006348,
+ "step": 115
+ },
+ {
+ "epoch": 1.6151157710790738,
+ "grad_norm": 0.5650008320808411,
+ "learning_rate": 0.0006,
+ "loss": 6.654262542724609,
+ "step": 116
+ },
+ {
+ "epoch": 1.6290956749672345,
+ "grad_norm": 0.3890475928783417,
+ "learning_rate": 0.0006,
+ "loss": 6.627526760101318,
+ "step": 117
+ },
+ {
+ "epoch": 1.6430755788553952,
+ "grad_norm": 0.6409873366355896,
+ "learning_rate": 0.0006,
+ "loss": 6.619794845581055,
+ "step": 118
+ },
+ {
+ "epoch": 1.6570554827435562,
+ "grad_norm": 0.5052326321601868,
+ "learning_rate": 0.0006,
+ "loss": 6.612556457519531,
+ "step": 119
+ },
+ {
+ "epoch": 1.671035386631717,
+ "grad_norm": 0.5001237988471985,
+ "learning_rate": 0.0006,
+ "loss": 6.577266693115234,
+ "step": 120
+ },
+ {
+ "epoch": 1.6850152905198776,
+ "grad_norm": 0.5328938364982605,
+ "learning_rate": 0.0006,
+ "loss": 6.59553337097168,
+ "step": 121
+ },
+ {
+ "epoch": 1.6989951944080386,
+ "grad_norm": 0.3568951189517975,
+ "learning_rate": 0.0006,
+ "loss": 6.602717399597168,
+ "step": 122
+ },
+ {
+ "epoch": 1.7129750982961993,
+ "grad_norm": 0.4017309546470642,
+ "learning_rate": 0.0006,
+ "loss": 6.589657783508301,
+ "step": 123
+ },
+ {
+ "epoch": 1.72695500218436,
+ "grad_norm": 0.21432629227638245,
+ "learning_rate": 0.0006,
+ "loss": 6.586555480957031,
+ "step": 124
+ },
+ {
+ "epoch": 1.7409349060725208,
+ "grad_norm": 0.21038052439689636,
+ "learning_rate": 0.0006,
+ "loss": 6.576569557189941,
+ "step": 125
+ },
+ {
+ "epoch": 1.7549148099606815,
+ "grad_norm": 0.23074904084205627,
+ "learning_rate": 0.0006,
+ "loss": 6.5880632400512695,
+ "step": 126
+ },
+ {
+ "epoch": 1.7688947138488422,
+ "grad_norm": 0.42963048815727234,
+ "learning_rate": 0.0006,
+ "loss": 6.603862762451172,
+ "step": 127
+ },
+ {
+ "epoch": 1.782874617737003,
+ "grad_norm": 0.361331045627594,
+ "learning_rate": 0.0006,
+ "loss": 6.579834938049316,
+ "step": 128
+ },
+ {
+ "epoch": 1.7968545216251637,
+ "grad_norm": 0.4951060712337494,
+ "learning_rate": 0.0006,
+ "loss": 6.570443630218506,
+ "step": 129
+ },
+ {
+ "epoch": 1.8108344255133246,
+ "grad_norm": 0.2258434295654297,
+ "learning_rate": 0.0006,
+ "loss": 6.5664777755737305,
+ "step": 130
+ },
+ {
+ "epoch": 1.8248143294014854,
+ "grad_norm": 0.2922155559062958,
+ "learning_rate": 0.0006,
+ "loss": 6.561326503753662,
+ "step": 131
+ },
+ {
+ "epoch": 1.838794233289646,
+ "grad_norm": 0.19068220257759094,
+ "learning_rate": 0.0006,
+ "loss": 6.528727054595947,
+ "step": 132
+ },
+ {
+ "epoch": 1.852774137177807,
+ "grad_norm": 0.2122010439634323,
+ "learning_rate": 0.0006,
+ "loss": 6.535636901855469,
+ "step": 133
+ },
+ {
+ "epoch": 1.8667540410659678,
+ "grad_norm": 0.25760164856910706,
+ "learning_rate": 0.0006,
+ "loss": 6.530498504638672,
+ "step": 134
+ },
+ {
+ "epoch": 1.8807339449541285,
+ "grad_norm": 0.1761016845703125,
+ "learning_rate": 0.0006,
+ "loss": 6.514466285705566,
+ "step": 135
+ },
+ {
+ "epoch": 1.8947138488422892,
+ "grad_norm": 0.2250051498413086,
+ "learning_rate": 0.0006,
+ "loss": 6.521268844604492,
+ "step": 136
+ },
+ {
+ "epoch": 1.90869375273045,
+ "grad_norm": 0.34458497166633606,
+ "learning_rate": 0.0006,
+ "loss": 6.512831687927246,
+ "step": 137
+ },
+ {
+ "epoch": 1.9226736566186107,
+ "grad_norm": 0.3468617796897888,
+ "learning_rate": 0.0006,
+ "loss": 6.515641689300537,
+ "step": 138
+ },
+ {
+ "epoch": 1.9366535605067714,
+ "grad_norm": 0.5051495432853699,
+ "learning_rate": 0.0006,
+ "loss": 6.5147905349731445,
+ "step": 139
+ },
+ {
+ "epoch": 1.9506334643949321,
+ "grad_norm": 0.7106727361679077,
+ "learning_rate": 0.0006,
+ "loss": 6.519277572631836,
+ "step": 140
+ },
+ {
+ "epoch": 1.964613368283093,
+ "grad_norm": 0.8881394267082214,
+ "learning_rate": 0.0006,
+ "loss": 6.526865482330322,
+ "step": 141
+ },
+ {
+ "epoch": 1.9785932721712538,
+ "grad_norm": 0.5552834272384644,
+ "learning_rate": 0.0006,
+ "loss": 6.469970226287842,
+ "step": 142
+ },
+ {
+ "epoch": 1.9925731760594148,
+ "grad_norm": 0.6903126835823059,
+ "learning_rate": 0.0006,
+ "loss": 6.476300239562988,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.47679027915000916,
+ "learning_rate": 0.0006,
+ "loss": 6.463827133178711,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 7.388528823852539,
+ "eval_runtime": 44.2519,
+ "eval_samples_per_second": 55.184,
+ "eval_steps_per_second": 3.457,
+ "step": 144
+ },
+ {
+ "epoch": 2.0139799038881607,
+ "grad_norm": 0.4719221293926239,
+ "learning_rate": 0.0006,
+ "loss": 6.480956077575684,
+ "step": 145
+ },
+ {
+ "epoch": 2.0279598077763215,
+ "grad_norm": 0.41137924790382385,
+ "learning_rate": 0.0006,
+ "loss": 6.449707984924316,
+ "step": 146
+ },
+ {
+ "epoch": 2.041939711664482,
+ "grad_norm": 0.4237765371799469,
+ "learning_rate": 0.0006,
+ "loss": 6.467435836791992,
+ "step": 147
+ },
+ {
+ "epoch": 2.055919615552643,
+ "grad_norm": 0.44081810116767883,
+ "learning_rate": 0.0006,
+ "loss": 6.436868667602539,
+ "step": 148
+ },
+ {
+ "epoch": 2.0698995194408036,
+ "grad_norm": 0.4163798391819,
+ "learning_rate": 0.0006,
+ "loss": 6.4642014503479,
+ "step": 149
+ },
+ {
+ "epoch": 2.083879423328965,
+ "grad_norm": 0.3831583261489868,
+ "learning_rate": 0.0006,
+ "loss": 6.454092025756836,
+ "step": 150
+ },
+ {
+ "epoch": 2.0978593272171255,
+ "grad_norm": 0.37721413373947144,
+ "learning_rate": 0.0006,
+ "loss": 6.426377296447754,
+ "step": 151
+ },
+ {
+ "epoch": 2.1118392311052863,
+ "grad_norm": 0.3323550224304199,
+ "learning_rate": 0.0006,
+ "loss": 6.421375274658203,
+ "step": 152
+ },
+ {
+ "epoch": 2.125819134993447,
+ "grad_norm": 0.47739624977111816,
+ "learning_rate": 0.0006,
+ "loss": 6.412004470825195,
+ "step": 153
+ },
+ {
+ "epoch": 2.1397990388816077,
+ "grad_norm": 0.8530274629592896,
+ "learning_rate": 0.0006,
+ "loss": 6.410468578338623,
+ "step": 154
+ },
+ {
+ "epoch": 2.1537789427697684,
+ "grad_norm": 0.6420364379882812,
+ "learning_rate": 0.0006,
+ "loss": 6.413525581359863,
+ "step": 155
+ },
+ {
+ "epoch": 2.167758846657929,
+ "grad_norm": 0.5005049109458923,
+ "learning_rate": 0.0006,
+ "loss": 6.401463508605957,
+ "step": 156
+ },
+ {
+ "epoch": 2.18173875054609,
+ "grad_norm": 0.3614683449268341,
+ "learning_rate": 0.0006,
+ "loss": 6.390063285827637,
+ "step": 157
+ },
+ {
+ "epoch": 2.1957186544342506,
+ "grad_norm": 0.595215380191803,
+ "learning_rate": 0.0006,
+ "loss": 6.369806289672852,
+ "step": 158
+ },
+ {
+ "epoch": 2.2096985583224114,
+ "grad_norm": 0.5700321793556213,
+ "learning_rate": 0.0006,
+ "loss": 6.368378639221191,
+ "step": 159
+ },
+ {
+ "epoch": 2.2236784622105725,
+ "grad_norm": 0.36273983120918274,
+ "learning_rate": 0.0006,
+ "loss": 6.366860389709473,
+ "step": 160
+ },
+ {
+ "epoch": 2.2376583660987333,
+ "grad_norm": 0.2850998342037201,
+ "learning_rate": 0.0006,
+ "loss": 6.352144718170166,
+ "step": 161
+ },
+ {
+ "epoch": 2.251638269986894,
+ "grad_norm": 0.38558584451675415,
+ "learning_rate": 0.0006,
+ "loss": 6.375765800476074,
+ "step": 162
+ },
+ {
+ "epoch": 2.2656181738750547,
+ "grad_norm": 0.34809231758117676,
+ "learning_rate": 0.0006,
+ "loss": 6.350445747375488,
+ "step": 163
+ },
+ {
+ "epoch": 2.2795980777632154,
+ "grad_norm": 0.5211818814277649,
+ "learning_rate": 0.0006,
+ "loss": 6.354585647583008,
+ "step": 164
+ },
+ {
+ "epoch": 2.293577981651376,
+ "grad_norm": 1.0809133052825928,
+ "learning_rate": 0.0006,
+ "loss": 6.3752007484436035,
+ "step": 165
+ },
+ {
+ "epoch": 2.307557885539537,
+ "grad_norm": 0.8293641209602356,
+ "learning_rate": 0.0006,
+ "loss": 6.35113525390625,
+ "step": 166
+ },
+ {
+ "epoch": 2.3215377894276976,
+ "grad_norm": 0.3428577780723572,
+ "learning_rate": 0.0006,
+ "loss": 6.334470748901367,
+ "step": 167
+ },
+ {
+ "epoch": 2.3355176933158583,
+ "grad_norm": 0.7587600946426392,
+ "learning_rate": 0.0006,
+ "loss": 6.353979587554932,
+ "step": 168
+ },
+ {
+ "epoch": 2.349497597204019,
+ "grad_norm": 0.4227249026298523,
+ "learning_rate": 0.0006,
+ "loss": 6.34018611907959,
+ "step": 169
+ },
+ {
+ "epoch": 2.36347750109218,
+ "grad_norm": 0.4226846694946289,
+ "learning_rate": 0.0006,
+ "loss": 6.290019989013672,
+ "step": 170
+ },
+ {
+ "epoch": 2.3774574049803405,
+ "grad_norm": 0.38412365317344666,
+ "learning_rate": 0.0006,
+ "loss": 6.309510231018066,
+ "step": 171
+ },
+ {
+ "epoch": 2.3914373088685017,
+ "grad_norm": 0.45698508620262146,
+ "learning_rate": 0.0006,
+ "loss": 6.283290863037109,
+ "step": 172
+ },
+ {
+ "epoch": 2.4054172127566624,
+ "grad_norm": 0.7575915455818176,
+ "learning_rate": 0.0006,
+ "loss": 6.306073188781738,
+ "step": 173
+ },
+ {
+ "epoch": 2.419397116644823,
+ "grad_norm": 0.695123553276062,
+ "learning_rate": 0.0006,
+ "loss": 6.308144569396973,
+ "step": 174
+ },
+ {
+ "epoch": 2.433377020532984,
+ "grad_norm": 0.5035743117332458,
+ "learning_rate": 0.0006,
+ "loss": 6.282073974609375,
+ "step": 175
+ },
+ {
+ "epoch": 2.4473569244211446,
+ "grad_norm": 0.3158020079135895,
+ "learning_rate": 0.0006,
+ "loss": 6.282169342041016,
+ "step": 176
+ },
+ {
+ "epoch": 2.4613368283093053,
+ "grad_norm": 0.4829689860343933,
+ "learning_rate": 0.0006,
+ "loss": 6.264578819274902,
+ "step": 177
+ },
+ {
+ "epoch": 2.475316732197466,
+ "grad_norm": 0.3992770314216614,
+ "learning_rate": 0.0006,
+ "loss": 6.228628158569336,
+ "step": 178
+ },
+ {
+ "epoch": 2.489296636085627,
+ "grad_norm": 0.40887606143951416,
+ "learning_rate": 0.0006,
+ "loss": 6.230792045593262,
+ "step": 179
+ },
+ {
+ "epoch": 2.5032765399737875,
+ "grad_norm": 0.3540310263633728,
+ "learning_rate": 0.0006,
+ "loss": 6.222573280334473,
+ "step": 180
+ },
+ {
+ "epoch": 2.5172564438619487,
+ "grad_norm": 0.496219664812088,
+ "learning_rate": 0.0006,
+ "loss": 6.212109565734863,
+ "step": 181
+ },
+ {
+ "epoch": 2.5312363477501094,
+ "grad_norm": 0.435173898935318,
+ "learning_rate": 0.0006,
+ "loss": 6.221210479736328,
+ "step": 182
+ },
+ {
+ "epoch": 2.54521625163827,
+ "grad_norm": 0.5364007949829102,
+ "learning_rate": 0.0006,
+ "loss": 6.217929840087891,
+ "step": 183
+ },
+ {
+ "epoch": 2.559196155526431,
+ "grad_norm": 0.5946390628814697,
+ "learning_rate": 0.0006,
+ "loss": 6.189267158508301,
+ "step": 184
+ },
+ {
+ "epoch": 2.5731760594145916,
+ "grad_norm": 0.41621312499046326,
+ "learning_rate": 0.0006,
+ "loss": 6.182415008544922,
+ "step": 185
+ },
+ {
+ "epoch": 2.5871559633027523,
+ "grad_norm": 0.5442072749137878,
+ "learning_rate": 0.0006,
+ "loss": 6.150757789611816,
+ "step": 186
+ },
+ {
+ "epoch": 2.601135867190913,
+ "grad_norm": 0.727843165397644,
+ "learning_rate": 0.0006,
+ "loss": 6.146082878112793,
+ "step": 187
+ },
+ {
+ "epoch": 2.615115771079074,
+ "grad_norm": 0.8898891806602478,
+ "learning_rate": 0.0006,
+ "loss": 6.190483093261719,
+ "step": 188
+ },
+ {
+ "epoch": 2.6290956749672345,
+ "grad_norm": 0.5173947215080261,
+ "learning_rate": 0.0006,
+ "loss": 6.151251792907715,
+ "step": 189
+ },
+ {
+ "epoch": 2.6430755788553952,
+ "grad_norm": 0.6476729512214661,
+ "learning_rate": 0.0006,
+ "loss": 6.154841423034668,
+ "step": 190
+ },
+ {
+ "epoch": 2.657055482743556,
+ "grad_norm": 0.3538810908794403,
+ "learning_rate": 0.0006,
+ "loss": 6.103879928588867,
+ "step": 191
+ },
+ {
+ "epoch": 2.6710353866317167,
+ "grad_norm": 0.4773508310317993,
+ "learning_rate": 0.0006,
+ "loss": 6.118101119995117,
+ "step": 192
+ },
+ {
+ "epoch": 2.6850152905198774,
+ "grad_norm": 0.29213786125183105,
+ "learning_rate": 0.0006,
+ "loss": 6.108916282653809,
+ "step": 193
+ },
+ {
+ "epoch": 2.6989951944080386,
+ "grad_norm": 0.40800607204437256,
+ "learning_rate": 0.0006,
+ "loss": 6.113438606262207,
+ "step": 194
+ },
+ {
+ "epoch": 2.7129750982961993,
+ "grad_norm": 0.31157299876213074,
+ "learning_rate": 0.0006,
+ "loss": 6.101809501647949,
+ "step": 195
+ },
+ {
+ "epoch": 2.72695500218436,
+ "grad_norm": 0.28660309314727783,
+ "learning_rate": 0.0006,
+ "loss": 6.075886249542236,
+ "step": 196
+ },
+ {
+ "epoch": 2.7409349060725208,
+ "grad_norm": 0.3810449540615082,
+ "learning_rate": 0.0006,
+ "loss": 6.053257942199707,
+ "step": 197
+ },
+ {
+ "epoch": 2.7549148099606815,
+ "grad_norm": 0.21741755306720734,
+ "learning_rate": 0.0006,
+ "loss": 6.013825416564941,
+ "step": 198
+ },
+ {
+ "epoch": 2.7688947138488422,
+ "grad_norm": 0.2777678966522217,
+ "learning_rate": 0.0006,
+ "loss": 6.054204940795898,
+ "step": 199
+ },
+ {
+ "epoch": 2.782874617737003,
+ "grad_norm": 0.28503066301345825,
+ "learning_rate": 0.0006,
+ "loss": 6.035628318786621,
+ "step": 200
+ },
+ {
+ "epoch": 2.7968545216251637,
+ "grad_norm": 0.41954755783081055,
+ "learning_rate": 0.0006,
+ "loss": 6.028354644775391,
+ "step": 201
+ },
+ {
+ "epoch": 2.810834425513325,
+ "grad_norm": 0.8785563111305237,
+ "learning_rate": 0.0006,
+ "loss": 6.055761337280273,
+ "step": 202
+ },
+ {
+ "epoch": 2.8248143294014856,
+ "grad_norm": 1.7459558248519897,
+ "learning_rate": 0.0006,
+ "loss": 6.11599588394165,
+ "step": 203
+ },
+ {
+ "epoch": 2.8387942332896463,
+ "grad_norm": 0.5725523233413696,
+ "learning_rate": 0.0006,
+ "loss": 6.024280548095703,
+ "step": 204
+ },
+ {
+ "epoch": 2.852774137177807,
+ "grad_norm": 0.5913150906562805,
+ "learning_rate": 0.0006,
+ "loss": 6.050281524658203,
+ "step": 205
+ },
+ {
+ "epoch": 2.8667540410659678,
+ "grad_norm": 0.5929384827613831,
+ "learning_rate": 0.0006,
+ "loss": 6.041121482849121,
+ "step": 206
+ },
+ {
+ "epoch": 2.8807339449541285,
+ "grad_norm": 0.5650724768638611,
+ "learning_rate": 0.0006,
+ "loss": 6.004258155822754,
+ "step": 207
+ },
+ {
+ "epoch": 2.894713848842289,
+ "grad_norm": 0.3420545756816864,
+ "learning_rate": 0.0006,
+ "loss": 5.983296871185303,
+ "step": 208
+ },
+ {
+ "epoch": 2.90869375273045,
+ "grad_norm": 0.2960914075374603,
+ "learning_rate": 0.0006,
+ "loss": 5.988578796386719,
+ "step": 209
+ },
+ {
+ "epoch": 2.9226736566186107,
+ "grad_norm": 0.3252662718296051,
+ "learning_rate": 0.0006,
+ "loss": 5.99103307723999,
+ "step": 210
+ },
+ {
+ "epoch": 2.9366535605067714,
+ "grad_norm": 0.4851132929325104,
+ "learning_rate": 0.0006,
+ "loss": 6.0028977394104,
+ "step": 211
+ },
+ {
+ "epoch": 2.950633464394932,
+ "grad_norm": 0.5639995336532593,
+ "learning_rate": 0.0006,
+ "loss": 5.965080738067627,
+ "step": 212
+ },
+ {
+ "epoch": 2.964613368283093,
+ "grad_norm": 0.4514601230621338,
+ "learning_rate": 0.0006,
+ "loss": 5.961450576782227,
+ "step": 213
+ },
+ {
+ "epoch": 2.9785932721712536,
+ "grad_norm": 0.5397921800613403,
+ "learning_rate": 0.0006,
+ "loss": 5.965290546417236,
+ "step": 214
+ },
+ {
+ "epoch": 2.9925731760594148,
+ "grad_norm": 0.4735587239265442,
+ "learning_rate": 0.0006,
+ "loss": 5.952754497528076,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.32061058282852173,
+ "learning_rate": 0.0006,
+ "loss": 5.961667060852051,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 6.8517303466796875,
+ "eval_runtime": 44.03,
+ "eval_samples_per_second": 55.462,
+ "eval_steps_per_second": 3.475,
+ "step": 216
+ },
+ {
+ "epoch": 3.0139799038881607,
+ "grad_norm": 0.3537784814834595,
+ "learning_rate": 0.0006,
+ "loss": 5.928008079528809,
+ "step": 217
+ },
+ {
+ "epoch": 3.0279598077763215,
+ "grad_norm": 0.40713080763816833,
+ "learning_rate": 0.0006,
+ "loss": 5.9150800704956055,
+ "step": 218
+ },
+ {
+ "epoch": 3.041939711664482,
+ "grad_norm": 0.2548826336860657,
+ "learning_rate": 0.0006,
+ "loss": 5.919757843017578,
+ "step": 219
+ },
+ {
+ "epoch": 3.055919615552643,
+ "grad_norm": 0.2818543016910553,
+ "learning_rate": 0.0006,
+ "loss": 5.913688659667969,
+ "step": 220
+ },
+ {
+ "epoch": 3.0698995194408036,
+ "grad_norm": 0.4196692705154419,
+ "learning_rate": 0.0006,
+ "loss": 5.8675336837768555,
+ "step": 221
+ },
+ {
+ "epoch": 3.083879423328965,
+ "grad_norm": 0.35272282361984253,
+ "learning_rate": 0.0006,
+ "loss": 5.878874778747559,
+ "step": 222
+ },
+ {
+ "epoch": 3.0978593272171255,
+ "grad_norm": 0.3254282772541046,
+ "learning_rate": 0.0006,
+ "loss": 5.8823041915893555,
+ "step": 223
+ },
+ {
+ "epoch": 3.1118392311052863,
+ "grad_norm": 0.4052561819553375,
+ "learning_rate": 0.0006,
+ "loss": 5.867744445800781,
+ "step": 224
+ },
+ {
+ "epoch": 3.125819134993447,
+ "grad_norm": 0.31246256828308105,
+ "learning_rate": 0.0006,
+ "loss": 5.886094093322754,
+ "step": 225
+ },
+ {
+ "epoch": 3.1397990388816077,
+ "grad_norm": 0.3479118347167969,
+ "learning_rate": 0.0006,
+ "loss": 5.850762367248535,
+ "step": 226
+ },
+ {
+ "epoch": 3.1537789427697684,
+ "grad_norm": 0.5037238597869873,
+ "learning_rate": 0.0006,
+ "loss": 5.844175815582275,
+ "step": 227
+ },
+ {
+ "epoch": 3.167758846657929,
+ "grad_norm": 0.6271815896034241,
+ "learning_rate": 0.0006,
+ "loss": 5.871790885925293,
+ "step": 228
+ },
+ {
+ "epoch": 3.18173875054609,
+ "grad_norm": 0.43838298320770264,
+ "learning_rate": 0.0006,
+ "loss": 5.844024658203125,
+ "step": 229
+ },
+ {
+ "epoch": 3.1957186544342506,
+ "grad_norm": 0.4755159616470337,
+ "learning_rate": 0.0006,
+ "loss": 5.846892356872559,
+ "step": 230
+ },
+ {
+ "epoch": 3.2096985583224114,
+ "grad_norm": 0.5229779481887817,
+ "learning_rate": 0.0006,
+ "loss": 5.827000617980957,
+ "step": 231
+ },
+ {
+ "epoch": 3.2236784622105725,
+ "grad_norm": 0.8264499306678772,
+ "learning_rate": 0.0006,
+ "loss": 5.867050647735596,
+ "step": 232
+ },
+ {
+ "epoch": 3.2376583660987333,
+ "grad_norm": 1.0607538223266602,
+ "learning_rate": 0.0006,
+ "loss": 5.877876281738281,
+ "step": 233
+ },
+ {
+ "epoch": 3.251638269986894,
+ "grad_norm": 0.7656505703926086,
+ "learning_rate": 0.0006,
+ "loss": 5.86760139465332,
+ "step": 234
+ },
+ {
+ "epoch": 3.2656181738750547,
+ "grad_norm": 0.7940183281898499,
+ "learning_rate": 0.0006,
+ "loss": 5.861355781555176,
+ "step": 235
+ },
+ {
+ "epoch": 3.2795980777632154,
+ "grad_norm": 0.45171424746513367,
+ "learning_rate": 0.0006,
+ "loss": 5.799808502197266,
+ "step": 236
+ },
+ {
+ "epoch": 3.293577981651376,
+ "grad_norm": 0.6174989342689514,
+ "learning_rate": 0.0006,
+ "loss": 5.8585920333862305,
+ "step": 237
+ },
+ {
+ "epoch": 3.307557885539537,
+ "grad_norm": 0.5341290831565857,
+ "learning_rate": 0.0006,
+ "loss": 5.8116044998168945,
+ "step": 238
+ },
+ {
+ "epoch": 3.3215377894276976,
+ "grad_norm": 0.3938343822956085,
+ "learning_rate": 0.0006,
+ "loss": 5.83797550201416,
+ "step": 239
+ },
+ {
+ "epoch": 3.3355176933158583,
+ "grad_norm": 0.5106972455978394,
+ "learning_rate": 0.0006,
+ "loss": 5.832303047180176,
+ "step": 240
+ },
+ {
+ "epoch": 3.349497597204019,
+ "grad_norm": 0.3791428506374359,
+ "learning_rate": 0.0006,
+ "loss": 5.794981956481934,
+ "step": 241
+ },
+ {
+ "epoch": 3.36347750109218,
+ "grad_norm": 0.42287978529930115,
+ "learning_rate": 0.0006,
+ "loss": 5.788144111633301,
+ "step": 242
+ },
+ {
+ "epoch": 3.3774574049803405,
+ "grad_norm": 0.27334436774253845,
+ "learning_rate": 0.0006,
+ "loss": 5.771070957183838,
+ "step": 243
+ },
+ {
+ "epoch": 3.3914373088685017,
+ "grad_norm": 0.2470470368862152,
+ "learning_rate": 0.0006,
+ "loss": 5.755998611450195,
+ "step": 244
+ },
+ {
+ "epoch": 3.4054172127566624,
+ "grad_norm": 0.3043915033340454,
+ "learning_rate": 0.0006,
+ "loss": 5.779492378234863,
+ "step": 245
+ },
+ {
+ "epoch": 3.419397116644823,
+ "grad_norm": 0.2960112988948822,
+ "learning_rate": 0.0006,
+ "loss": 5.750328063964844,
+ "step": 246
+ },
+ {
+ "epoch": 3.433377020532984,
+ "grad_norm": 0.3046723008155823,
+ "learning_rate": 0.0006,
+ "loss": 5.776517868041992,
+ "step": 247
+ },
+ {
+ "epoch": 3.4473569244211446,
+ "grad_norm": 0.22461780905723572,
+ "learning_rate": 0.0006,
+ "loss": 5.760989665985107,
+ "step": 248
+ },
+ {
+ "epoch": 3.4613368283093053,
+ "grad_norm": 0.24625757336616516,
+ "learning_rate": 0.0006,
+ "loss": 5.759706497192383,
+ "step": 249
+ },
+ {
+ "epoch": 3.475316732197466,
+ "grad_norm": 0.18207131326198578,
+ "learning_rate": 0.0006,
+ "loss": 5.747040748596191,
+ "step": 250
+ },
+ {
+ "epoch": 3.489296636085627,
+ "grad_norm": 0.16473834216594696,
+ "learning_rate": 0.0006,
+ "loss": 5.761577606201172,
+ "step": 251
+ },
+ {
+ "epoch": 3.5032765399737875,
+ "grad_norm": 0.25155773758888245,
+ "learning_rate": 0.0006,
+ "loss": 5.696502208709717,
+ "step": 252
+ },
+ {
+ "epoch": 3.5172564438619487,
+ "grad_norm": 0.24115674197673798,
+ "learning_rate": 0.0006,
+ "loss": 5.676957130432129,
+ "step": 253
+ },
+ {
+ "epoch": 3.5312363477501094,
+ "grad_norm": 0.40912172198295593,
+ "learning_rate": 0.0006,
+ "loss": 5.695090293884277,
+ "step": 254
+ },
+ {
+ "epoch": 3.54521625163827,
+ "grad_norm": 0.6727662682533264,
+ "learning_rate": 0.0006,
+ "loss": 5.722194671630859,
+ "step": 255
+ },
+ {
+ "epoch": 3.559196155526431,
+ "grad_norm": 0.8450719118118286,
+ "learning_rate": 0.0006,
+ "loss": 5.764680862426758,
+ "step": 256
+ },
+ {
+ "epoch": 3.5731760594145916,
+ "grad_norm": 0.9916183352470398,
+ "learning_rate": 0.0006,
+ "loss": 5.754530429840088,
+ "step": 257
+ },
+ {
+ "epoch": 3.5871559633027523,
+ "grad_norm": 1.041922688484192,
+ "learning_rate": 0.0006,
+ "loss": 5.781468391418457,
+ "step": 258
+ },
+ {
+ "epoch": 3.601135867190913,
+ "grad_norm": 0.972039520740509,
+ "learning_rate": 0.0006,
+ "loss": 5.760323524475098,
+ "step": 259
+ },
+ {
+ "epoch": 3.615115771079074,
+ "grad_norm": 0.6802462935447693,
+ "learning_rate": 0.0006,
+ "loss": 5.750064849853516,
+ "step": 260
+ },
+ {
+ "epoch": 3.6290956749672345,
+ "grad_norm": 0.48553529381752014,
+ "learning_rate": 0.0006,
+ "loss": 5.7464094161987305,
+ "step": 261
+ },
+ {
+ "epoch": 3.6430755788553952,
+ "grad_norm": 0.4066704213619232,
+ "learning_rate": 0.0006,
+ "loss": 5.719789505004883,
+ "step": 262
+ },
+ {
+ "epoch": 3.657055482743556,
+ "grad_norm": 0.3300860822200775,
+ "learning_rate": 0.0006,
+ "loss": 5.719920635223389,
+ "step": 263
+ },
+ {
+ "epoch": 3.6710353866317167,
+ "grad_norm": 0.3286679983139038,
+ "learning_rate": 0.0006,
+ "loss": 5.723465919494629,
+ "step": 264
+ },
+ {
+ "epoch": 3.6850152905198774,
+ "grad_norm": 0.27653390169143677,
+ "learning_rate": 0.0006,
+ "loss": 5.713820457458496,
+ "step": 265
+ },
+ {
+ "epoch": 3.6989951944080386,
+ "grad_norm": 0.26138055324554443,
+ "learning_rate": 0.0006,
+ "loss": 5.683221817016602,
+ "step": 266
+ },
+ {
+ "epoch": 3.7129750982961993,
+ "grad_norm": 0.23706290125846863,
+ "learning_rate": 0.0006,
+ "loss": 5.6896867752075195,
+ "step": 267
+ },
+ {
+ "epoch": 3.72695500218436,
+ "grad_norm": 0.2751729190349579,
+ "learning_rate": 0.0006,
+ "loss": 5.710301876068115,
+ "step": 268
+ },
+ {
+ "epoch": 3.7409349060725208,
+ "grad_norm": 0.255393385887146,
+ "learning_rate": 0.0006,
+ "loss": 5.687932968139648,
+ "step": 269
+ },
+ {
+ "epoch": 3.7549148099606815,
+ "grad_norm": 0.21453925967216492,
+ "learning_rate": 0.0006,
+ "loss": 5.68234395980835,
+ "step": 270
+ },
+ {
+ "epoch": 3.7688947138488422,
+ "grad_norm": 0.21771012246608734,
+ "learning_rate": 0.0006,
+ "loss": 5.683980464935303,
+ "step": 271
+ },
+ {
+ "epoch": 3.782874617737003,
+ "grad_norm": 0.1884593963623047,
+ "learning_rate": 0.0006,
+ "loss": 5.662779808044434,
+ "step": 272
+ },
+ {
+ "epoch": 3.7968545216251637,
+ "grad_norm": 0.20429612696170807,
+ "learning_rate": 0.0006,
+ "loss": 5.650941848754883,
+ "step": 273
+ },
+ {
+ "epoch": 3.810834425513325,
+ "grad_norm": 0.22586797177791595,
+ "learning_rate": 0.0006,
+ "loss": 5.639376640319824,
+ "step": 274
+ },
+ {
+ "epoch": 3.8248143294014856,
+ "grad_norm": 0.19651705026626587,
+ "learning_rate": 0.0006,
+ "loss": 5.612030029296875,
+ "step": 275
+ },
+ {
+ "epoch": 3.8387942332896463,
+ "grad_norm": 0.2125253826379776,
+ "learning_rate": 0.0006,
+ "loss": 5.622836589813232,
+ "step": 276
+ },
+ {
+ "epoch": 3.852774137177807,
+ "grad_norm": 0.2905234694480896,
+ "learning_rate": 0.0006,
+ "loss": 5.624594688415527,
+ "step": 277
+ },
+ {
+ "epoch": 3.8667540410659678,
+ "grad_norm": 0.2718426585197449,
+ "learning_rate": 0.0006,
+ "loss": 5.619892120361328,
+ "step": 278
+ },
+ {
+ "epoch": 3.8807339449541285,
+ "grad_norm": 0.26481127738952637,
+ "learning_rate": 0.0006,
+ "loss": 5.612496852874756,
+ "step": 279
+ },
+ {
+ "epoch": 3.894713848842289,
+ "grad_norm": 0.2876453399658203,
+ "learning_rate": 0.0006,
+ "loss": 5.59157133102417,
+ "step": 280
+ },
+ {
+ "epoch": 3.90869375273045,
+ "grad_norm": 0.22829554975032806,
+ "learning_rate": 0.0006,
+ "loss": 5.5884199142456055,
+ "step": 281
+ },
+ {
+ "epoch": 3.9226736566186107,
+ "grad_norm": 0.22852344810962677,
+ "learning_rate": 0.0006,
+ "loss": 5.618719100952148,
+ "step": 282
+ },
+ {
+ "epoch": 3.9366535605067714,
+ "grad_norm": 0.37366563081741333,
+ "learning_rate": 0.0006,
+ "loss": 5.611738204956055,
+ "step": 283
+ },
+ {
+ "epoch": 3.950633464394932,
+ "grad_norm": 0.5650382041931152,
+ "learning_rate": 0.0006,
+ "loss": 5.606371879577637,
+ "step": 284
+ },
+ {
+ "epoch": 3.964613368283093,
+ "grad_norm": 0.5960066914558411,
+ "learning_rate": 0.0006,
+ "loss": 5.595022201538086,
+ "step": 285
+ },
+ {
+ "epoch": 3.9785932721712536,
+ "grad_norm": 0.3561663031578064,
+ "learning_rate": 0.0006,
+ "loss": 5.581035614013672,
+ "step": 286
+ },
+ {
+ "epoch": 3.9925731760594148,
+ "grad_norm": 0.44699913263320923,
+ "learning_rate": 0.0006,
+ "loss": 5.568033218383789,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.42783990502357483,
+ "learning_rate": 0.0006,
+ "loss": 5.571993827819824,
+ "step": 288
+ },
+ {
+ "epoch": 4.0,
+ "eval_loss": 6.349016189575195,
+ "eval_runtime": 44.3326,
+ "eval_samples_per_second": 55.084,
+ "eval_steps_per_second": 3.451,
+ "step": 288
+ },
+ {
+ "epoch": 4.013979903888161,
+ "grad_norm": 0.41305896639823914,
+ "learning_rate": 0.0006,
+ "loss": 5.562954902648926,
+ "step": 289
+ },
+ {
+ "epoch": 4.0279598077763215,
+ "grad_norm": 0.3966459035873413,
+ "learning_rate": 0.0006,
+ "loss": 5.5671916007995605,
+ "step": 290
+ },
+ {
+ "epoch": 4.041939711664482,
+ "grad_norm": 0.4846104085445404,
+ "learning_rate": 0.0006,
+ "loss": 5.548027038574219,
+ "step": 291
+ },
+ {
+ "epoch": 4.055919615552643,
+ "grad_norm": 0.5916333794593811,
+ "learning_rate": 0.0006,
+ "loss": 5.5900068283081055,
+ "step": 292
+ },
+ {
+ "epoch": 4.069899519440804,
+ "grad_norm": 0.5973889231681824,
+ "learning_rate": 0.0006,
+ "loss": 5.537594795227051,
+ "step": 293
+ },
+ {
+ "epoch": 4.083879423328964,
+ "grad_norm": 0.4190494418144226,
+ "learning_rate": 0.0006,
+ "loss": 5.534749984741211,
+ "step": 294
+ },
+ {
+ "epoch": 4.097859327217125,
+ "grad_norm": 0.5956901907920837,
+ "learning_rate": 0.0006,
+ "loss": 5.554540634155273,
+ "step": 295
+ },
+ {
+ "epoch": 4.111839231105286,
+ "grad_norm": 0.8257920742034912,
+ "learning_rate": 0.0006,
+ "loss": 5.5728068351745605,
+ "step": 296
+ },
+ {
+ "epoch": 4.1258191349934465,
+ "grad_norm": 0.7241750955581665,
+ "learning_rate": 0.0006,
+ "loss": 5.5643815994262695,
+ "step": 297
+ },
+ {
+ "epoch": 4.139799038881607,
+ "grad_norm": 0.45730507373809814,
+ "learning_rate": 0.0006,
+ "loss": 5.554225921630859,
+ "step": 298
+ },
+ {
+ "epoch": 4.153778942769769,
+ "grad_norm": 0.5166977643966675,
+ "learning_rate": 0.0006,
+ "loss": 5.540790557861328,
+ "step": 299
+ },
+ {
+ "epoch": 4.16775884665793,
+ "grad_norm": 0.433237761259079,
+ "learning_rate": 0.0006,
+ "loss": 5.536884784698486,
+ "step": 300
+ },
+ {
+ "epoch": 4.18173875054609,
+ "grad_norm": 0.3369830250740051,
+ "learning_rate": 0.0006,
+ "loss": 5.532837867736816,
+ "step": 301
+ },
+ {
+ "epoch": 4.195718654434251,
+ "grad_norm": 0.33091458678245544,
+ "learning_rate": 0.0006,
+ "loss": 5.547643661499023,
+ "step": 302
+ },
+ {
+ "epoch": 4.209698558322412,
+ "grad_norm": 0.36462724208831787,
+ "learning_rate": 0.0006,
+ "loss": 5.525021076202393,
+ "step": 303
+ },
+ {
+ "epoch": 4.2236784622105725,
+ "grad_norm": 0.3342771530151367,
+ "learning_rate": 0.0006,
+ "loss": 5.512082099914551,
+ "step": 304
+ },
+ {
+ "epoch": 4.237658366098733,
+ "grad_norm": 0.26784762740135193,
+ "learning_rate": 0.0006,
+ "loss": 5.488072395324707,
+ "step": 305
+ },
+ {
+ "epoch": 4.251638269986894,
+ "grad_norm": 0.25986987352371216,
+ "learning_rate": 0.0006,
+ "loss": 5.4960455894470215,
+ "step": 306
+ },
+ {
+ "epoch": 4.265618173875055,
+ "grad_norm": 0.24595795571804047,
+ "learning_rate": 0.0006,
+ "loss": 5.513367176055908,
+ "step": 307
+ },
+ {
+ "epoch": 4.279598077763215,
+ "grad_norm": 0.2224857211112976,
+ "learning_rate": 0.0006,
+ "loss": 5.465205192565918,
+ "step": 308
+ },
+ {
+ "epoch": 4.293577981651376,
+ "grad_norm": 0.26799243688583374,
+ "learning_rate": 0.0006,
+ "loss": 5.476632118225098,
+ "step": 309
+ },
+ {
+ "epoch": 4.307557885539537,
+ "grad_norm": 0.20443417131900787,
+ "learning_rate": 0.0006,
+ "loss": 5.442601203918457,
+ "step": 310
+ },
+ {
+ "epoch": 4.321537789427698,
+ "grad_norm": 0.2275059074163437,
+ "learning_rate": 0.0006,
+ "loss": 5.453519344329834,
+ "step": 311
+ },
+ {
+ "epoch": 4.335517693315858,
+ "grad_norm": 0.2860901951789856,
+ "learning_rate": 0.0006,
+ "loss": 5.439424514770508,
+ "step": 312
+ },
+ {
+ "epoch": 4.349497597204019,
+ "grad_norm": 0.3378142714500427,
+ "learning_rate": 0.0006,
+ "loss": 5.476953983306885,
+ "step": 313
+ },
+ {
+ "epoch": 4.36347750109218,
+ "grad_norm": 0.3487110733985901,
+ "learning_rate": 0.0006,
+ "loss": 5.47003698348999,
+ "step": 314
+ },
+ {
+ "epoch": 4.3774574049803405,
+ "grad_norm": 0.3655227720737457,
+ "learning_rate": 0.0006,
+ "loss": 5.454250812530518,
+ "step": 315
+ },
+ {
+ "epoch": 4.391437308868501,
+ "grad_norm": 0.3754786252975464,
+ "learning_rate": 0.0006,
+ "loss": 5.475249290466309,
+ "step": 316
+ },
+ {
+ "epoch": 4.405417212756662,
+ "grad_norm": 0.42494088411331177,
+ "learning_rate": 0.0006,
+ "loss": 5.4552459716796875,
+ "step": 317
+ },
+ {
+ "epoch": 4.419397116644823,
+ "grad_norm": 0.4914703667163849,
+ "learning_rate": 0.0006,
+ "loss": 5.431845188140869,
+ "step": 318
+ },
+ {
+ "epoch": 4.433377020532983,
+ "grad_norm": 0.42470860481262207,
+ "learning_rate": 0.0006,
+ "loss": 5.454581260681152,
+ "step": 319
+ },
+ {
+ "epoch": 4.447356924421145,
+ "grad_norm": 0.3828011155128479,
+ "learning_rate": 0.0006,
+ "loss": 5.435178756713867,
+ "step": 320
+ },
+ {
+ "epoch": 4.461336828309306,
+ "grad_norm": 0.47256892919540405,
+ "learning_rate": 0.0006,
+ "loss": 5.428861618041992,
+ "step": 321
+ },
+ {
+ "epoch": 4.4753167321974665,
+ "grad_norm": 0.5665146708488464,
+ "learning_rate": 0.0006,
+ "loss": 5.424633026123047,
+ "step": 322
+ },
+ {
+ "epoch": 4.489296636085627,
+ "grad_norm": 0.48146721720695496,
+ "learning_rate": 0.0006,
+ "loss": 5.4577860832214355,
+ "step": 323
+ },
+ {
+ "epoch": 4.503276539973788,
+ "grad_norm": 0.3378535509109497,
+ "learning_rate": 0.0006,
+ "loss": 5.422727108001709,
+ "step": 324
+ },
+ {
+ "epoch": 4.517256443861949,
+ "grad_norm": 0.41981473565101624,
+ "learning_rate": 0.0006,
+ "loss": 5.418993949890137,
+ "step": 325
+ },
+ {
+ "epoch": 4.531236347750109,
+ "grad_norm": 0.39389684796333313,
+ "learning_rate": 0.0006,
+ "loss": 5.41835880279541,
+ "step": 326
+ },
+ {
+ "epoch": 4.54521625163827,
+ "grad_norm": 0.5912176370620728,
+ "learning_rate": 0.0006,
+ "loss": 5.40073299407959,
+ "step": 327
+ },
+ {
+ "epoch": 4.559196155526431,
+ "grad_norm": 0.6877487897872925,
+ "learning_rate": 0.0006,
+ "loss": 5.445301055908203,
+ "step": 328
+ },
+ {
+ "epoch": 4.573176059414592,
+ "grad_norm": 0.580555260181427,
+ "learning_rate": 0.0006,
+ "loss": 5.431069374084473,
+ "step": 329
+ },
+ {
+ "epoch": 4.587155963302752,
+ "grad_norm": 0.5974457859992981,
+ "learning_rate": 0.0006,
+ "loss": 5.422694206237793,
+ "step": 330
+ },
+ {
+ "epoch": 4.601135867190913,
+ "grad_norm": 0.722481906414032,
+ "learning_rate": 0.0006,
+ "loss": 5.447752952575684,
+ "step": 331
+ },
+ {
+ "epoch": 4.615115771079074,
+ "grad_norm": 0.7687886953353882,
+ "learning_rate": 0.0006,
+ "loss": 5.437956809997559,
+ "step": 332
+ },
+ {
+ "epoch": 4.6290956749672345,
+ "grad_norm": 0.7368173003196716,
+ "learning_rate": 0.0006,
+ "loss": 5.4367241859436035,
+ "step": 333
+ },
+ {
+ "epoch": 4.643075578855395,
+ "grad_norm": 0.6650524139404297,
+ "learning_rate": 0.0006,
+ "loss": 5.4288434982299805,
+ "step": 334
+ },
+ {
+ "epoch": 4.657055482743556,
+ "grad_norm": 0.4997614920139313,
+ "learning_rate": 0.0006,
+ "loss": 5.412769317626953,
+ "step": 335
+ },
+ {
+ "epoch": 4.671035386631717,
+ "grad_norm": 0.44208982586860657,
+ "learning_rate": 0.0006,
+ "loss": 5.42405366897583,
+ "step": 336
+ },
+ {
+ "epoch": 4.685015290519877,
+ "grad_norm": 0.39510273933410645,
+ "learning_rate": 0.0006,
+ "loss": 5.402547836303711,
+ "step": 337
+ },
+ {
+ "epoch": 4.698995194408038,
+ "grad_norm": 0.44970476627349854,
+ "learning_rate": 0.0006,
+ "loss": 5.377168655395508,
+ "step": 338
+ },
+ {
+ "epoch": 4.712975098296199,
+ "grad_norm": 0.3902331590652466,
+ "learning_rate": 0.0006,
+ "loss": 5.401622772216797,
+ "step": 339
+ },
+ {
+ "epoch": 4.72695500218436,
+ "grad_norm": 0.33485135436058044,
+ "learning_rate": 0.0006,
+ "loss": 5.397945880889893,
+ "step": 340
+ },
+ {
+ "epoch": 4.740934906072521,
+ "grad_norm": 0.29062309861183167,
+ "learning_rate": 0.0006,
+ "loss": 5.356175422668457,
+ "step": 341
+ },
+ {
+ "epoch": 4.754914809960681,
+ "grad_norm": 0.23617377877235413,
+ "learning_rate": 0.0006,
+ "loss": 5.388517379760742,
+ "step": 342
+ },
+ {
+ "epoch": 4.768894713848843,
+ "grad_norm": 0.2704737186431885,
+ "learning_rate": 0.0006,
+ "loss": 5.3746137619018555,
+ "step": 343
+ },
+ {
+ "epoch": 4.782874617737003,
+ "grad_norm": 0.20488551259040833,
+ "learning_rate": 0.0006,
+ "loss": 5.3754472732543945,
+ "step": 344
+ },
+ {
+ "epoch": 4.796854521625164,
+ "grad_norm": 0.2007082849740982,
+ "learning_rate": 0.0006,
+ "loss": 5.3538618087768555,
+ "step": 345
+ },
+ {
+ "epoch": 4.810834425513325,
+ "grad_norm": 0.21732935309410095,
+ "learning_rate": 0.0006,
+ "loss": 5.351774215698242,
+ "step": 346
+ },
+ {
+ "epoch": 4.824814329401486,
+ "grad_norm": 0.1944841742515564,
+ "learning_rate": 0.0006,
+ "loss": 5.357545852661133,
+ "step": 347
+ },
+ {
+ "epoch": 4.838794233289646,
+ "grad_norm": 0.1953933835029602,
+ "learning_rate": 0.0006,
+ "loss": 5.321681022644043,
+ "step": 348
+ },
+ {
+ "epoch": 4.852774137177807,
+ "grad_norm": 0.1743433028459549,
+ "learning_rate": 0.0006,
+ "loss": 5.340302467346191,
+ "step": 349
+ },
+ {
+ "epoch": 4.866754041065968,
+ "grad_norm": 0.19655466079711914,
+ "learning_rate": 0.0006,
+ "loss": 5.325471878051758,
+ "step": 350
+ },
+ {
+ "epoch": 4.8807339449541285,
+ "grad_norm": 0.15761791169643402,
+ "learning_rate": 0.0006,
+ "loss": 5.3453240394592285,
+ "step": 351
+ },
+ {
+ "epoch": 4.894713848842289,
+ "grad_norm": 0.19164425134658813,
+ "learning_rate": 0.0006,
+ "loss": 5.315583229064941,
+ "step": 352
+ },
+ {
+ "epoch": 4.90869375273045,
+ "grad_norm": 0.28084540367126465,
+ "learning_rate": 0.0006,
+ "loss": 5.309171676635742,
+ "step": 353
+ },
+ {
+ "epoch": 4.922673656618611,
+ "grad_norm": 0.4681853652000427,
+ "learning_rate": 0.0006,
+ "loss": 5.318211078643799,
+ "step": 354
+ },
+ {
+ "epoch": 4.936653560506771,
+ "grad_norm": 0.6417295932769775,
+ "learning_rate": 0.0006,
+ "loss": 5.309263706207275,
+ "step": 355
+ },
+ {
+ "epoch": 4.950633464394932,
+ "grad_norm": 0.501312792301178,
+ "learning_rate": 0.0006,
+ "loss": 5.321534156799316,
+ "step": 356
+ },
+ {
+ "epoch": 4.964613368283093,
+ "grad_norm": 0.47502145171165466,
+ "learning_rate": 0.0006,
+ "loss": 5.323659896850586,
+ "step": 357
+ },
+ {
+ "epoch": 4.978593272171254,
+ "grad_norm": 0.5366594791412354,
+ "learning_rate": 0.0006,
+ "loss": 5.327367782592773,
+ "step": 358
+ },
+ {
+ "epoch": 4.992573176059414,
+ "grad_norm": 0.6986395120620728,
+ "learning_rate": 0.0006,
+ "loss": 5.311097145080566,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.6626625657081604,
+ "learning_rate": 0.0006,
+ "loss": 5.337558269500732,
+ "step": 360
+ },
+ {
+ "epoch": 5.0,
+ "eval_loss": 5.929230690002441,
+ "eval_runtime": 44.5268,
+ "eval_samples_per_second": 54.843,
+ "eval_steps_per_second": 3.436,
+ "step": 360
+ },
+ {
+ "epoch": 5.013979903888161,
+ "grad_norm": 0.7383704781532288,
+ "learning_rate": 0.0006,
+ "loss": 5.315563678741455,
+ "step": 361
+ },
+ {
+ "epoch": 5.0279598077763215,
+ "grad_norm": 0.7730138301849365,
+ "learning_rate": 0.0006,
+ "loss": 5.324905872344971,
+ "step": 362
+ },
+ {
+ "epoch": 5.041939711664482,
+ "grad_norm": 0.8170825839042664,
+ "learning_rate": 0.0006,
+ "loss": 5.350251197814941,
+ "step": 363
+ },
+ {
+ "epoch": 5.055919615552643,
+ "grad_norm": 0.6950958371162415,
+ "learning_rate": 0.0006,
+ "loss": 5.338744163513184,
+ "step": 364
+ },
+ {
+ "epoch": 5.069899519440804,
+ "grad_norm": 0.5582894086837769,
+ "learning_rate": 0.0006,
+ "loss": 5.340539932250977,
+ "step": 365
+ },
+ {
+ "epoch": 5.083879423328964,
+ "grad_norm": 0.4772159159183502,
+ "learning_rate": 0.0006,
+ "loss": 5.344161033630371,
+ "step": 366
+ },
+ {
+ "epoch": 5.097859327217125,
+ "grad_norm": 0.5432839393615723,
+ "learning_rate": 0.0006,
+ "loss": 5.312403678894043,
+ "step": 367
+ },
+ {
+ "epoch": 5.111839231105286,
+ "grad_norm": 0.4944784641265869,
+ "learning_rate": 0.0006,
+ "loss": 5.30281925201416,
+ "step": 368
+ },
+ {
+ "epoch": 5.1258191349934465,
+ "grad_norm": 0.4298315942287445,
+ "learning_rate": 0.0006,
+ "loss": 5.29564094543457,
+ "step": 369
+ },
+ {
+ "epoch": 5.139799038881607,
+ "grad_norm": 0.349889874458313,
+ "learning_rate": 0.0006,
+ "loss": 5.287062644958496,
+ "step": 370
+ },
+ {
+ "epoch": 5.153778942769769,
+ "grad_norm": 0.2823719084262848,
+ "learning_rate": 0.0006,
+ "loss": 5.28826904296875,
+ "step": 371
+ },
+ {
+ "epoch": 5.16775884665793,
+ "grad_norm": 0.32975050806999207,
+ "learning_rate": 0.0006,
+ "loss": 5.256399631500244,
+ "step": 372
+ },
+ {
+ "epoch": 5.18173875054609,
+ "grad_norm": 0.2963952124118805,
+ "learning_rate": 0.0006,
+ "loss": 5.273757457733154,
+ "step": 373
+ },
+ {
+ "epoch": 5.195718654434251,
+ "grad_norm": 0.21345984935760498,
+ "learning_rate": 0.0006,
+ "loss": 5.274978160858154,
+ "step": 374
+ },
+ {
+ "epoch": 5.209698558322412,
+ "grad_norm": 0.2363101840019226,
+ "learning_rate": 0.0006,
+ "loss": 5.261585235595703,
+ "step": 375
+ },
+ {
+ "epoch": 5.2236784622105725,
+ "grad_norm": 0.19626963138580322,
+ "learning_rate": 0.0006,
+ "loss": 5.259700298309326,
+ "step": 376
+ },
+ {
+ "epoch": 5.237658366098733,
+ "grad_norm": 0.21083571016788483,
+ "learning_rate": 0.0006,
+ "loss": 5.233585357666016,
+ "step": 377
+ },
+ {
+ "epoch": 5.251638269986894,
+ "grad_norm": 0.2273513823747635,
+ "learning_rate": 0.0006,
+ "loss": 5.231740474700928,
+ "step": 378
+ },
+ {
+ "epoch": 5.265618173875055,
+ "grad_norm": 0.18299247324466705,
+ "learning_rate": 0.0006,
+ "loss": 5.251256465911865,
+ "step": 379
+ },
+ {
+ "epoch": 5.279598077763215,
+ "grad_norm": 0.19578224420547485,
+ "learning_rate": 0.0006,
+ "loss": 5.230329513549805,
+ "step": 380
+ },
+ {
+ "epoch": 5.293577981651376,
+ "grad_norm": 0.20308879017829895,
+ "learning_rate": 0.0006,
+ "loss": 5.243951797485352,
+ "step": 381
+ },
+ {
+ "epoch": 5.307557885539537,
+ "grad_norm": 0.21053212881088257,
+ "learning_rate": 0.0006,
+ "loss": 5.210272789001465,
+ "step": 382
+ },
+ {
+ "epoch": 5.321537789427698,
+ "grad_norm": 0.21852520108222961,
+ "learning_rate": 0.0006,
+ "loss": 5.215418815612793,
+ "step": 383
+ },
+ {
+ "epoch": 5.335517693315858,
+ "grad_norm": 0.24872010946273804,
+ "learning_rate": 0.0006,
+ "loss": 5.225139617919922,
+ "step": 384
+ },
+ {
+ "epoch": 5.349497597204019,
+ "grad_norm": 0.27780187129974365,
+ "learning_rate": 0.0006,
+ "loss": 5.241010665893555,
+ "step": 385
+ },
+ {
+ "epoch": 5.36347750109218,
+ "grad_norm": 0.261767715215683,
+ "learning_rate": 0.0006,
+ "loss": 5.230723857879639,
+ "step": 386
+ },
+ {
+ "epoch": 5.3774574049803405,
+ "grad_norm": 0.2111261785030365,
+ "learning_rate": 0.0006,
+ "loss": 5.1848602294921875,
+ "step": 387
+ },
+ {
+ "epoch": 5.391437308868501,
+ "grad_norm": 0.24325387179851532,
+ "learning_rate": 0.0006,
+ "loss": 5.180911064147949,
+ "step": 388
+ },
+ {
+ "epoch": 5.405417212756662,
+ "grad_norm": 0.19542962312698364,
+ "learning_rate": 0.0006,
+ "loss": 5.189907073974609,
+ "step": 389
+ },
+ {
+ "epoch": 5.419397116644823,
+ "grad_norm": 0.20489346981048584,
+ "learning_rate": 0.0006,
+ "loss": 5.184634208679199,
+ "step": 390
+ },
+ {
+ "epoch": 5.433377020532983,
+ "grad_norm": 0.2753409147262573,
+ "learning_rate": 0.0006,
+ "loss": 5.190083026885986,
+ "step": 391
+ },
+ {
+ "epoch": 5.447356924421145,
+ "grad_norm": 0.3758019208908081,
+ "learning_rate": 0.0006,
+ "loss": 5.189423561096191,
+ "step": 392
+ },
+ {
+ "epoch": 5.461336828309306,
+ "grad_norm": 0.4425095021724701,
+ "learning_rate": 0.0006,
+ "loss": 5.17152214050293,
+ "step": 393
+ },
+ {
+ "epoch": 5.4753167321974665,
+ "grad_norm": 0.39721858501434326,
+ "learning_rate": 0.0006,
+ "loss": 5.189178466796875,
+ "step": 394
+ },
+ {
+ "epoch": 5.489296636085627,
+ "grad_norm": 0.43441957235336304,
+ "learning_rate": 0.0006,
+ "loss": 5.1823577880859375,
+ "step": 395
+ },
+ {
+ "epoch": 5.503276539973788,
+ "grad_norm": 0.3583861291408539,
+ "learning_rate": 0.0006,
+ "loss": 5.160187721252441,
+ "step": 396
+ },
+ {
+ "epoch": 5.517256443861949,
+ "grad_norm": 0.323290079832077,
+ "learning_rate": 0.0006,
+ "loss": 5.113046646118164,
+ "step": 397
+ },
+ {
+ "epoch": 5.531236347750109,
+ "grad_norm": 0.3049418330192566,
+ "learning_rate": 0.0006,
+ "loss": 5.172209739685059,
+ "step": 398
+ },
+ {
+ "epoch": 5.54521625163827,
+ "grad_norm": 0.3253744840621948,
+ "learning_rate": 0.0006,
+ "loss": 5.1970720291137695,
+ "step": 399
+ },
+ {
+ "epoch": 5.559196155526431,
+ "grad_norm": 0.3232555091381073,
+ "learning_rate": 0.0006,
+ "loss": 5.173195838928223,
+ "step": 400
+ },
+ {
+ "epoch": 5.573176059414592,
+ "grad_norm": 0.33751845359802246,
+ "learning_rate": 0.0006,
+ "loss": 5.137526988983154,
+ "step": 401
+ },
+ {
+ "epoch": 5.587155963302752,
+ "grad_norm": 0.45970913767814636,
+ "learning_rate": 0.0006,
+ "loss": 5.123377799987793,
+ "step": 402
+ },
+ {
+ "epoch": 5.601135867190913,
+ "grad_norm": 0.5383784770965576,
+ "learning_rate": 0.0006,
+ "loss": 5.154180526733398,
+ "step": 403
+ },
+ {
+ "epoch": 5.615115771079074,
+ "grad_norm": 0.45765912532806396,
+ "learning_rate": 0.0006,
+ "loss": 5.1485209465026855,
+ "step": 404
+ },
+ {
+ "epoch": 5.6290956749672345,
+ "grad_norm": 0.5079503059387207,
+ "learning_rate": 0.0006,
+ "loss": 5.158293724060059,
+ "step": 405
+ },
+ {
+ "epoch": 5.643075578855395,
+ "grad_norm": 0.4860183894634247,
+ "learning_rate": 0.0006,
+ "loss": 5.1610212326049805,
+ "step": 406
+ },
+ {
+ "epoch": 5.657055482743556,
+ "grad_norm": 0.4065648913383484,
+ "learning_rate": 0.0006,
+ "loss": 5.1260786056518555,
+ "step": 407
+ },
+ {
+ "epoch": 5.671035386631717,
+ "grad_norm": 0.39606142044067383,
+ "learning_rate": 0.0006,
+ "loss": 5.1598711013793945,
+ "step": 408
+ },
+ {
+ "epoch": 5.685015290519877,
+ "grad_norm": 0.4705151319503784,
+ "learning_rate": 0.0006,
+ "loss": 5.166455268859863,
+ "step": 409
+ },
+ {
+ "epoch": 5.698995194408038,
+ "grad_norm": 0.5040799379348755,
+ "learning_rate": 0.0006,
+ "loss": 5.1408209800720215,
+ "step": 410
+ },
+ {
+ "epoch": 5.712975098296199,
+ "grad_norm": 0.5012556910514832,
+ "learning_rate": 0.0006,
+ "loss": 5.144109725952148,
+ "step": 411
+ },
+ {
+ "epoch": 5.72695500218436,
+ "grad_norm": 0.44301411509513855,
+ "learning_rate": 0.0006,
+ "loss": 5.155509948730469,
+ "step": 412
+ },
+ {
+ "epoch": 5.740934906072521,
+ "grad_norm": 0.36632269620895386,
+ "learning_rate": 0.0006,
+ "loss": 5.123111248016357,
+ "step": 413
+ },
+ {
+ "epoch": 5.754914809960681,
+ "grad_norm": 0.2980524003505707,
+ "learning_rate": 0.0006,
+ "loss": 5.1355719566345215,
+ "step": 414
+ },
+ {
+ "epoch": 5.768894713848843,
+ "grad_norm": 0.3441782295703888,
+ "learning_rate": 0.0006,
+ "loss": 5.132327079772949,
+ "step": 415
+ },
+ {
+ "epoch": 5.782874617737003,
+ "grad_norm": 0.4150780737400055,
+ "learning_rate": 0.0006,
+ "loss": 5.148543357849121,
+ "step": 416
+ },
+ {
+ "epoch": 5.796854521625164,
+ "grad_norm": 0.48417383432388306,
+ "learning_rate": 0.0006,
+ "loss": 5.104989528656006,
+ "step": 417
+ },
+ {
+ "epoch": 5.810834425513325,
+ "grad_norm": 0.3216031491756439,
+ "learning_rate": 0.0006,
+ "loss": 5.0926127433776855,
+ "step": 418
+ },
+ {
+ "epoch": 5.824814329401486,
+ "grad_norm": 0.2821158468723297,
+ "learning_rate": 0.0006,
+ "loss": 5.112299919128418,
+ "step": 419
+ },
+ {
+ "epoch": 5.838794233289646,
+ "grad_norm": 0.29821011424064636,
+ "learning_rate": 0.0006,
+ "loss": 5.091662406921387,
+ "step": 420
+ },
+ {
+ "epoch": 5.852774137177807,
+ "grad_norm": 0.30570563673973083,
+ "learning_rate": 0.0006,
+ "loss": 5.137539863586426,
+ "step": 421
+ },
+ {
+ "epoch": 5.866754041065968,
+ "grad_norm": 0.4029594957828522,
+ "learning_rate": 0.0006,
+ "loss": 5.112751007080078,
+ "step": 422
+ },
+ {
+ "epoch": 5.8807339449541285,
+ "grad_norm": 0.3878514766693115,
+ "learning_rate": 0.0006,
+ "loss": 5.094973564147949,
+ "step": 423
+ },
+ {
+ "epoch": 5.894713848842289,
+ "grad_norm": 0.31936126947402954,
+ "learning_rate": 0.0006,
+ "loss": 5.081070899963379,
+ "step": 424
+ },
+ {
+ "epoch": 5.90869375273045,
+ "grad_norm": 0.3309082090854645,
+ "learning_rate": 0.0006,
+ "loss": 5.06803560256958,
+ "step": 425
+ },
+ {
+ "epoch": 5.922673656618611,
+ "grad_norm": 0.27830439805984497,
+ "learning_rate": 0.0006,
+ "loss": 5.044766426086426,
+ "step": 426
+ },
+ {
+ "epoch": 5.936653560506771,
+ "grad_norm": 0.3301011919975281,
+ "learning_rate": 0.0006,
+ "loss": 5.093942165374756,
+ "step": 427
+ },
+ {
+ "epoch": 5.950633464394932,
+ "grad_norm": 0.40845948457717896,
+ "learning_rate": 0.0006,
+ "loss": 5.0889458656311035,
+ "step": 428
+ },
+ {
+ "epoch": 5.964613368283093,
+ "grad_norm": 0.4412153959274292,
+ "learning_rate": 0.0006,
+ "loss": 5.064834117889404,
+ "step": 429
+ },
+ {
+ "epoch": 5.978593272171254,
+ "grad_norm": 0.3592590093612671,
+ "learning_rate": 0.0006,
+ "loss": 5.066648006439209,
+ "step": 430
+ },
+ {
+ "epoch": 5.992573176059414,
+ "grad_norm": 0.3952840268611908,
+ "learning_rate": 0.0006,
+ "loss": 5.066549301147461,
+ "step": 431
+ },
+ {
+ "epoch": 6.0,
+ "grad_norm": 0.38878682255744934,
+ "learning_rate": 0.0006,
+ "loss": 5.0354323387146,
+ "step": 432
+ },
+ {
+ "epoch": 6.0,
+ "eval_loss": 5.473907947540283,
+ "eval_runtime": 44.5121,
+ "eval_samples_per_second": 54.861,
+ "eval_steps_per_second": 3.437,
+ "step": 432
+ },
+ {
+ "epoch": 6.013979903888161,
+ "grad_norm": 0.42730140686035156,
+ "learning_rate": 0.0006,
+ "loss": 5.048557281494141,
+ "step": 433
+ },
+ {
+ "epoch": 6.0279598077763215,
+ "grad_norm": 0.32713913917541504,
+ "learning_rate": 0.0006,
+ "loss": 5.041255950927734,
+ "step": 434
+ },
+ {
+ "epoch": 6.041939711664482,
+ "grad_norm": 0.32520365715026855,
+ "learning_rate": 0.0006,
+ "loss": 5.043124198913574,
+ "step": 435
+ },
+ {
+ "epoch": 6.055919615552643,
+ "grad_norm": 0.2941839098930359,
+ "learning_rate": 0.0006,
+ "loss": 5.0407304763793945,
+ "step": 436
+ },
+ {
+ "epoch": 6.069899519440804,
+ "grad_norm": 0.3088819682598114,
+ "learning_rate": 0.0006,
+ "loss": 5.020771026611328,
+ "step": 437
+ },
+ {
+ "epoch": 6.083879423328964,
+ "grad_norm": 0.34334254264831543,
+ "learning_rate": 0.0006,
+ "loss": 5.0260009765625,
+ "step": 438
+ },
+ {
+ "epoch": 6.097859327217125,
+ "grad_norm": 0.33016136288642883,
+ "learning_rate": 0.0006,
+ "loss": 4.994412899017334,
+ "step": 439
+ },
+ {
+ "epoch": 6.111839231105286,
+ "grad_norm": 0.2527366280555725,
+ "learning_rate": 0.0006,
+ "loss": 4.997830390930176,
+ "step": 440
+ },
+ {
+ "epoch": 6.1258191349934465,
+ "grad_norm": 0.24742509424686432,
+ "learning_rate": 0.0006,
+ "loss": 5.017087936401367,
+ "step": 441
+ },
+ {
+ "epoch": 6.139799038881607,
+ "grad_norm": 0.22578303515911102,
+ "learning_rate": 0.0006,
+ "loss": 5.000683784484863,
+ "step": 442
+ },
+ {
+ "epoch": 6.153778942769769,
+ "grad_norm": 0.21213896572589874,
+ "learning_rate": 0.0006,
+ "loss": 4.993280410766602,
+ "step": 443
+ },
+ {
+ "epoch": 6.16775884665793,
+ "grad_norm": 0.22559592127799988,
+ "learning_rate": 0.0006,
+ "loss": 5.005735874176025,
+ "step": 444
+ },
+ {
+ "epoch": 6.18173875054609,
+ "grad_norm": 0.18574322760105133,
+ "learning_rate": 0.0006,
+ "loss": 4.996601104736328,
+ "step": 445
+ },
+ {
+ "epoch": 6.195718654434251,
+ "grad_norm": 0.1793852299451828,
+ "learning_rate": 0.0006,
+ "loss": 4.977394104003906,
+ "step": 446
+ },
+ {
+ "epoch": 6.209698558322412,
+ "grad_norm": 0.1851297914981842,
+ "learning_rate": 0.0006,
+ "loss": 4.983541488647461,
+ "step": 447
+ },
+ {
+ "epoch": 6.2236784622105725,
+ "grad_norm": 0.2045268565416336,
+ "learning_rate": 0.0006,
+ "loss": 4.992830276489258,
+ "step": 448
+ },
+ {
+ "epoch": 6.237658366098733,
+ "grad_norm": 0.21707463264465332,
+ "learning_rate": 0.0006,
+ "loss": 4.998589515686035,
+ "step": 449
+ },
+ {
+ "epoch": 6.251638269986894,
+ "grad_norm": 0.2805860638618469,
+ "learning_rate": 0.0006,
+ "loss": 4.973134517669678,
+ "step": 450
+ },
+ {
+ "epoch": 6.265618173875055,
+ "grad_norm": 0.33102089166641235,
+ "learning_rate": 0.0006,
+ "loss": 4.957348823547363,
+ "step": 451
+ },
+ {
+ "epoch": 6.279598077763215,
+ "grad_norm": 0.3763096034526825,
+ "learning_rate": 0.0006,
+ "loss": 5.0133256912231445,
+ "step": 452
+ },
+ {
+ "epoch": 6.293577981651376,
+ "grad_norm": 0.4676196575164795,
+ "learning_rate": 0.0006,
+ "loss": 4.972289562225342,
+ "step": 453
+ },
+ {
+ "epoch": 6.307557885539537,
+ "grad_norm": 0.6158978343009949,
+ "learning_rate": 0.0006,
+ "loss": 4.989326477050781,
+ "step": 454
+ },
+ {
+ "epoch": 6.321537789427698,
+ "grad_norm": 0.537460446357727,
+ "learning_rate": 0.0006,
+ "loss": 5.0210676193237305,
+ "step": 455
+ },
+ {
+ "epoch": 6.335517693315858,
+ "grad_norm": 0.5342532396316528,
+ "learning_rate": 0.0006,
+ "loss": 4.988524436950684,
+ "step": 456
+ },
+ {
+ "epoch": 6.349497597204019,
+ "grad_norm": 0.5736384987831116,
+ "learning_rate": 0.0006,
+ "loss": 4.977508068084717,
+ "step": 457
+ },
+ {
+ "epoch": 6.36347750109218,
+ "grad_norm": 0.6656201481819153,
+ "learning_rate": 0.0006,
+ "loss": 5.047934055328369,
+ "step": 458
+ },
+ {
+ "epoch": 6.3774574049803405,
+ "grad_norm": 0.6388342380523682,
+ "learning_rate": 0.0006,
+ "loss": 5.017617225646973,
+ "step": 459
+ },
+ {
+ "epoch": 6.391437308868501,
+ "grad_norm": 0.6620904207229614,
+ "learning_rate": 0.0006,
+ "loss": 5.032195091247559,
+ "step": 460
+ },
+ {
+ "epoch": 6.405417212756662,
+ "grad_norm": 0.693274974822998,
+ "learning_rate": 0.0006,
+ "loss": 5.02433967590332,
+ "step": 461
+ },
+ {
+ "epoch": 6.419397116644823,
+ "grad_norm": 0.6888924241065979,
+ "learning_rate": 0.0006,
+ "loss": 5.010735511779785,
+ "step": 462
+ },
+ {
+ "epoch": 6.433377020532983,
+ "grad_norm": 0.7181721925735474,
+ "learning_rate": 0.0006,
+ "loss": 5.049690246582031,
+ "step": 463
+ },
+ {
+ "epoch": 6.447356924421145,
+ "grad_norm": 0.7225117087364197,
+ "learning_rate": 0.0006,
+ "loss": 5.031939506530762,
+ "step": 464
+ },
+ {
+ "epoch": 6.461336828309306,
+ "grad_norm": 0.5268304347991943,
+ "learning_rate": 0.0006,
+ "loss": 5.01638126373291,
+ "step": 465
+ },
+ {
+ "epoch": 6.4753167321974665,
+ "grad_norm": 0.38218435645103455,
+ "learning_rate": 0.0006,
+ "loss": 4.997034072875977,
+ "step": 466
+ },
+ {
+ "epoch": 6.489296636085627,
+ "grad_norm": 0.3576396703720093,
+ "learning_rate": 0.0006,
+ "loss": 5.006804943084717,
+ "step": 467
+ },
+ {
+ "epoch": 6.503276539973788,
+ "grad_norm": 0.3305981755256653,
+ "learning_rate": 0.0006,
+ "loss": 4.994671821594238,
+ "step": 468
+ },
+ {
+ "epoch": 6.517256443861949,
+ "grad_norm": 0.3254900574684143,
+ "learning_rate": 0.0006,
+ "loss": 4.9747490882873535,
+ "step": 469
+ },
+ {
+ "epoch": 6.531236347750109,
+ "grad_norm": 0.2655033469200134,
+ "learning_rate": 0.0006,
+ "loss": 5.002863883972168,
+ "step": 470
+ },
+ {
+ "epoch": 6.54521625163827,
+ "grad_norm": 0.2620532810688019,
+ "learning_rate": 0.0006,
+ "loss": 4.9813337326049805,
+ "step": 471
+ },
+ {
+ "epoch": 6.559196155526431,
+ "grad_norm": 0.22128869593143463,
+ "learning_rate": 0.0006,
+ "loss": 4.978368759155273,
+ "step": 472
+ },
+ {
+ "epoch": 6.573176059414592,
+ "grad_norm": 0.22638699412345886,
+ "learning_rate": 0.0006,
+ "loss": 4.944509029388428,
+ "step": 473
+ },
+ {
+ "epoch": 6.587155963302752,
+ "grad_norm": 0.20720207691192627,
+ "learning_rate": 0.0006,
+ "loss": 4.98404598236084,
+ "step": 474
+ },
+ {
+ "epoch": 6.601135867190913,
+ "grad_norm": 0.21577289700508118,
+ "learning_rate": 0.0006,
+ "loss": 4.958878040313721,
+ "step": 475
+ },
+ {
+ "epoch": 6.615115771079074,
+ "grad_norm": 0.22453972697257996,
+ "learning_rate": 0.0006,
+ "loss": 4.935467720031738,
+ "step": 476
+ },
+ {
+ "epoch": 6.6290956749672345,
+ "grad_norm": 0.20757712423801422,
+ "learning_rate": 0.0006,
+ "loss": 4.943334579467773,
+ "step": 477
+ },
+ {
+ "epoch": 6.643075578855395,
+ "grad_norm": 0.22808043658733368,
+ "learning_rate": 0.0006,
+ "loss": 4.936544418334961,
+ "step": 478
+ },
+ {
+ "epoch": 6.657055482743556,
+ "grad_norm": 0.2193756401538849,
+ "learning_rate": 0.0006,
+ "loss": 4.938162326812744,
+ "step": 479
+ },
+ {
+ "epoch": 6.671035386631717,
+ "grad_norm": 0.19677500426769257,
+ "learning_rate": 0.0006,
+ "loss": 4.9026713371276855,
+ "step": 480
+ },
+ {
+ "epoch": 6.685015290519877,
+ "grad_norm": 0.17271658778190613,
+ "learning_rate": 0.0006,
+ "loss": 4.912519454956055,
+ "step": 481
+ },
+ {
+ "epoch": 6.698995194408038,
+ "grad_norm": 0.17551499605178833,
+ "learning_rate": 0.0006,
+ "loss": 4.929941177368164,
+ "step": 482
+ },
+ {
+ "epoch": 6.712975098296199,
+ "grad_norm": 0.1582687348127365,
+ "learning_rate": 0.0006,
+ "loss": 4.908967971801758,
+ "step": 483
+ },
+ {
+ "epoch": 6.72695500218436,
+ "grad_norm": 0.1593410074710846,
+ "learning_rate": 0.0006,
+ "loss": 4.901554107666016,
+ "step": 484
+ },
+ {
+ "epoch": 6.740934906072521,
+ "grad_norm": 0.16746895015239716,
+ "learning_rate": 0.0006,
+ "loss": 4.917915344238281,
+ "step": 485
+ },
+ {
+ "epoch": 6.754914809960681,
+ "grad_norm": 0.17066062986850739,
+ "learning_rate": 0.0006,
+ "loss": 4.912853240966797,
+ "step": 486
+ },
+ {
+ "epoch": 6.768894713848843,
+ "grad_norm": 0.16727769374847412,
+ "learning_rate": 0.0006,
+ "loss": 4.895434856414795,
+ "step": 487
+ },
+ {
+ "epoch": 6.782874617737003,
+ "grad_norm": 0.1784558743238449,
+ "learning_rate": 0.0006,
+ "loss": 4.8805341720581055,
+ "step": 488
+ },
+ {
+ "epoch": 6.796854521625164,
+ "grad_norm": 0.176686093211174,
+ "learning_rate": 0.0006,
+ "loss": 4.855296611785889,
+ "step": 489
+ },
+ {
+ "epoch": 6.810834425513325,
+ "grad_norm": 0.21577849984169006,
+ "learning_rate": 0.0006,
+ "loss": 4.885506629943848,
+ "step": 490
+ },
+ {
+ "epoch": 6.824814329401486,
+ "grad_norm": 0.27615776658058167,
+ "learning_rate": 0.0006,
+ "loss": 4.913756847381592,
+ "step": 491
+ },
+ {
+ "epoch": 6.838794233289646,
+ "grad_norm": 0.3653675615787506,
+ "learning_rate": 0.0006,
+ "loss": 4.880918979644775,
+ "step": 492
+ },
+ {
+ "epoch": 6.852774137177807,
+ "grad_norm": 0.41473883390426636,
+ "learning_rate": 0.0006,
+ "loss": 4.894164562225342,
+ "step": 493
+ },
+ {
+ "epoch": 6.866754041065968,
+ "grad_norm": 0.45850715041160583,
+ "learning_rate": 0.0006,
+ "loss": 4.907922744750977,
+ "step": 494
+ },
+ {
+ "epoch": 6.8807339449541285,
+ "grad_norm": 0.4675290882587433,
+ "learning_rate": 0.0006,
+ "loss": 4.883112907409668,
+ "step": 495
+ },
+ {
+ "epoch": 6.894713848842289,
+ "grad_norm": 0.45795994997024536,
+ "learning_rate": 0.0006,
+ "loss": 4.897843360900879,
+ "step": 496
+ },
+ {
+ "epoch": 6.90869375273045,
+ "grad_norm": 0.46130508184432983,
+ "learning_rate": 0.0006,
+ "loss": 4.890612602233887,
+ "step": 497
+ },
+ {
+ "epoch": 6.922673656618611,
+ "grad_norm": 0.44783803820610046,
+ "learning_rate": 0.0006,
+ "loss": 4.880192756652832,
+ "step": 498
+ },
+ {
+ "epoch": 6.936653560506771,
+ "grad_norm": 0.35361284017562866,
+ "learning_rate": 0.0006,
+ "loss": 4.840778350830078,
+ "step": 499
+ },
+ {
+ "epoch": 6.950633464394932,
+ "grad_norm": 0.34027689695358276,
+ "learning_rate": 0.0006,
+ "loss": 4.871222496032715,
+ "step": 500
+ },
+ {
+ "epoch": 6.964613368283093,
+ "grad_norm": 0.30228909850120544,
+ "learning_rate": 0.0006,
+ "loss": 4.868077278137207,
+ "step": 501
+ },
+ {
+ "epoch": 6.978593272171254,
+ "grad_norm": 0.27706998586654663,
+ "learning_rate": 0.0006,
+ "loss": 4.895936012268066,
+ "step": 502
+ },
+ {
+ "epoch": 6.992573176059414,
+ "grad_norm": 0.3516870439052582,
+ "learning_rate": 0.0006,
+ "loss": 4.824636459350586,
+ "step": 503
+ },
+ {
+ "epoch": 7.0,
+ "grad_norm": 0.36831387877464294,
+ "learning_rate": 0.0006,
+ "loss": 4.874397277832031,
+ "step": 504
+ },
+ {
+ "epoch": 7.0,
+ "eval_loss": 5.176281452178955,
+ "eval_runtime": 44.2386,
+ "eval_samples_per_second": 55.201,
+ "eval_steps_per_second": 3.459,
+ "step": 504
+ },
+ {
+ "epoch": 7.013979903888161,
+ "grad_norm": 0.4265240430831909,
+ "learning_rate": 0.0006,
+ "loss": 4.814333438873291,
+ "step": 505
+ },
+ {
+ "epoch": 7.0279598077763215,
+ "grad_norm": 0.5126975774765015,
+ "learning_rate": 0.0006,
+ "loss": 4.852343559265137,
+ "step": 506
+ },
+ {
+ "epoch": 7.041939711664482,
+ "grad_norm": 0.43080806732177734,
+ "learning_rate": 0.0006,
+ "loss": 4.843439102172852,
+ "step": 507
+ },
+ {
+ "epoch": 7.055919615552643,
+ "grad_norm": 0.43170198798179626,
+ "learning_rate": 0.0006,
+ "loss": 4.845984935760498,
+ "step": 508
+ },
+ {
+ "epoch": 7.069899519440804,
+ "grad_norm": 0.5640552043914795,
+ "learning_rate": 0.0006,
+ "loss": 4.840991973876953,
+ "step": 509
+ },
+ {
+ "epoch": 7.083879423328964,
+ "grad_norm": 0.540381133556366,
+ "learning_rate": 0.0006,
+ "loss": 4.801316738128662,
+ "step": 510
+ },
+ {
+ "epoch": 7.097859327217125,
+ "grad_norm": 0.5412097573280334,
+ "learning_rate": 0.0006,
+ "loss": 4.886598587036133,
+ "step": 511
+ },
+ {
+ "epoch": 7.111839231105286,
+ "grad_norm": 0.630648136138916,
+ "learning_rate": 0.0006,
+ "loss": 4.849774360656738,
+ "step": 512
+ },
+ {
+ "epoch": 7.1258191349934465,
+ "grad_norm": 0.569952130317688,
+ "learning_rate": 0.0006,
+ "loss": 4.870607376098633,
+ "step": 513
+ },
+ {
+ "epoch": 7.139799038881607,
+ "grad_norm": 0.42051541805267334,
+ "learning_rate": 0.0006,
+ "loss": 4.83833122253418,
+ "step": 514
+ },
+ {
+ "epoch": 7.153778942769769,
+ "grad_norm": 0.3930990397930145,
+ "learning_rate": 0.0006,
+ "loss": 4.853984355926514,
+ "step": 515
+ },
+ {
+ "epoch": 7.16775884665793,
+ "grad_norm": 0.512886106967926,
+ "learning_rate": 0.0006,
+ "loss": 4.815458297729492,
+ "step": 516
+ },
+ {
+ "epoch": 7.18173875054609,
+ "grad_norm": 0.42580172419548035,
+ "learning_rate": 0.0006,
+ "loss": 4.825312614440918,
+ "step": 517
+ },
+ {
+ "epoch": 7.195718654434251,
+ "grad_norm": 0.31628182530403137,
+ "learning_rate": 0.0006,
+ "loss": 4.806377410888672,
+ "step": 518
+ },
+ {
+ "epoch": 7.209698558322412,
+ "grad_norm": 0.3109956681728363,
+ "learning_rate": 0.0006,
+ "loss": 4.819339752197266,
+ "step": 519
+ },
+ {
+ "epoch": 7.2236784622105725,
+ "grad_norm": 0.2740071415901184,
+ "learning_rate": 0.0006,
+ "loss": 4.81319522857666,
+ "step": 520
+ },
+ {
+ "epoch": 7.237658366098733,
+ "grad_norm": 0.26441165804862976,
+ "learning_rate": 0.0006,
+ "loss": 4.8107380867004395,
+ "step": 521
+ },
+ {
+ "epoch": 7.251638269986894,
+ "grad_norm": 0.2496110051870346,
+ "learning_rate": 0.0006,
+ "loss": 4.785193920135498,
+ "step": 522
+ },
+ {
+ "epoch": 7.265618173875055,
+ "grad_norm": 0.2565560042858124,
+ "learning_rate": 0.0006,
+ "loss": 4.802750587463379,
+ "step": 523
+ },
+ {
+ "epoch": 7.279598077763215,
+ "grad_norm": 0.2126980572938919,
+ "learning_rate": 0.0006,
+ "loss": 4.763580322265625,
+ "step": 524
+ },
+ {
+ "epoch": 7.293577981651376,
+ "grad_norm": 0.2169921100139618,
+ "learning_rate": 0.0006,
+ "loss": 4.756124973297119,
+ "step": 525
+ },
+ {
+ "epoch": 7.307557885539537,
+ "grad_norm": 0.2372167706489563,
+ "learning_rate": 0.0006,
+ "loss": 4.786888599395752,
+ "step": 526
+ },
+ {
+ "epoch": 7.321537789427698,
+ "grad_norm": 0.2124386429786682,
+ "learning_rate": 0.0006,
+ "loss": 4.777996063232422,
+ "step": 527
+ },
+ {
+ "epoch": 7.335517693315858,
+ "grad_norm": 0.18585442006587982,
+ "learning_rate": 0.0006,
+ "loss": 4.770537853240967,
+ "step": 528
+ },
+ {
+ "epoch": 7.349497597204019,
+ "grad_norm": 0.20515340566635132,
+ "learning_rate": 0.0006,
+ "loss": 4.769230842590332,
+ "step": 529
+ },
+ {
+ "epoch": 7.36347750109218,
+ "grad_norm": 0.19906704127788544,
+ "learning_rate": 0.0006,
+ "loss": 4.752581596374512,
+ "step": 530
+ },
+ {
+ "epoch": 7.3774574049803405,
+ "grad_norm": 0.2030428946018219,
+ "learning_rate": 0.0006,
+ "loss": 4.7353715896606445,
+ "step": 531
+ },
+ {
+ "epoch": 7.391437308868501,
+ "grad_norm": 0.17820630967617035,
+ "learning_rate": 0.0006,
+ "loss": 4.742705345153809,
+ "step": 532
+ },
+ {
+ "epoch": 7.405417212756662,
+ "grad_norm": 0.17642682790756226,
+ "learning_rate": 0.0006,
+ "loss": 4.752669334411621,
+ "step": 533
+ },
+ {
+ "epoch": 7.419397116644823,
+ "grad_norm": 0.18088409304618835,
+ "learning_rate": 0.0006,
+ "loss": 4.734611511230469,
+ "step": 534
+ },
+ {
+ "epoch": 7.433377020532983,
+ "grad_norm": 0.20897020399570465,
+ "learning_rate": 0.0006,
+ "loss": 4.756442070007324,
+ "step": 535
+ },
+ {
+ "epoch": 7.447356924421145,
+ "grad_norm": 0.23166777193546295,
+ "learning_rate": 0.0006,
+ "loss": 4.712922096252441,
+ "step": 536
+ },
+ {
+ "epoch": 7.461336828309306,
+ "grad_norm": 0.2205347716808319,
+ "learning_rate": 0.0006,
+ "loss": 4.75001335144043,
+ "step": 537
+ },
+ {
+ "epoch": 7.4753167321974665,
+ "grad_norm": 0.23868022859096527,
+ "learning_rate": 0.0006,
+ "loss": 4.726134300231934,
+ "step": 538
+ },
+ {
+ "epoch": 7.489296636085627,
+ "grad_norm": 0.2861441373825073,
+ "learning_rate": 0.0006,
+ "loss": 4.754112243652344,
+ "step": 539
+ },
+ {
+ "epoch": 7.503276539973788,
+ "grad_norm": 0.28980305790901184,
+ "learning_rate": 0.0006,
+ "loss": 4.716021537780762,
+ "step": 540
+ },
+ {
+ "epoch": 7.517256443861949,
+ "grad_norm": 0.2784835696220398,
+ "learning_rate": 0.0006,
+ "loss": 4.713929176330566,
+ "step": 541
+ },
+ {
+ "epoch": 7.531236347750109,
+ "grad_norm": 0.2962653934955597,
+ "learning_rate": 0.0006,
+ "loss": 4.711845397949219,
+ "step": 542
+ },
+ {
+ "epoch": 7.54521625163827,
+ "grad_norm": 0.3333161175251007,
+ "learning_rate": 0.0006,
+ "loss": 4.709834575653076,
+ "step": 543
+ },
+ {
+ "epoch": 7.559196155526431,
+ "grad_norm": 0.35304850339889526,
+ "learning_rate": 0.0006,
+ "loss": 4.732914924621582,
+ "step": 544
+ },
+ {
+ "epoch": 7.573176059414592,
+ "grad_norm": 0.4165869355201721,
+ "learning_rate": 0.0006,
+ "loss": 4.716190338134766,
+ "step": 545
+ },
+ {
+ "epoch": 7.587155963302752,
+ "grad_norm": 0.4878059923648834,
+ "learning_rate": 0.0006,
+ "loss": 4.723773002624512,
+ "step": 546
+ },
+ {
+ "epoch": 7.601135867190913,
+ "grad_norm": 0.36643707752227783,
+ "learning_rate": 0.0006,
+ "loss": 4.721458911895752,
+ "step": 547
+ },
+ {
+ "epoch": 7.615115771079074,
+ "grad_norm": 0.4046908915042877,
+ "learning_rate": 0.0006,
+ "loss": 4.715397834777832,
+ "step": 548
+ },
+ {
+ "epoch": 7.6290956749672345,
+ "grad_norm": 0.44426342844963074,
+ "learning_rate": 0.0006,
+ "loss": 4.737357139587402,
+ "step": 549
+ },
+ {
+ "epoch": 7.643075578855395,
+ "grad_norm": 0.4181079864501953,
+ "learning_rate": 0.0006,
+ "loss": 4.731383800506592,
+ "step": 550
+ },
+ {
+ "epoch": 7.657055482743556,
+ "grad_norm": 0.3486088216304779,
+ "learning_rate": 0.0006,
+ "loss": 4.728029727935791,
+ "step": 551
+ },
+ {
+ "epoch": 7.671035386631717,
+ "grad_norm": 0.37150970101356506,
+ "learning_rate": 0.0006,
+ "loss": 4.7083210945129395,
+ "step": 552
+ },
+ {
+ "epoch": 7.685015290519877,
+ "grad_norm": 0.43324410915374756,
+ "learning_rate": 0.0006,
+ "loss": 4.728720664978027,
+ "step": 553
+ },
+ {
+ "epoch": 7.698995194408038,
+ "grad_norm": 0.5026620626449585,
+ "learning_rate": 0.0006,
+ "loss": 4.698156356811523,
+ "step": 554
+ },
+ {
+ "epoch": 7.712975098296199,
+ "grad_norm": 0.4873499274253845,
+ "learning_rate": 0.0006,
+ "loss": 4.7169952392578125,
+ "step": 555
+ },
+ {
+ "epoch": 7.72695500218436,
+ "grad_norm": 0.4285493791103363,
+ "learning_rate": 0.0006,
+ "loss": 4.6877241134643555,
+ "step": 556
+ },
+ {
+ "epoch": 7.740934906072521,
+ "grad_norm": 0.5179854035377502,
+ "learning_rate": 0.0006,
+ "loss": 4.704267501831055,
+ "step": 557
+ },
+ {
+ "epoch": 7.754914809960681,
+ "grad_norm": 0.4642147421836853,
+ "learning_rate": 0.0006,
+ "loss": 4.695004463195801,
+ "step": 558
+ },
+ {
+ "epoch": 7.768894713848843,
+ "grad_norm": 0.47149503231048584,
+ "learning_rate": 0.0006,
+ "loss": 4.694338798522949,
+ "step": 559
+ },
+ {
+ "epoch": 7.782874617737003,
+ "grad_norm": 0.5422149300575256,
+ "learning_rate": 0.0006,
+ "loss": 4.749478340148926,
+ "step": 560
+ },
+ {
+ "epoch": 7.796854521625164,
+ "grad_norm": 0.4360728859901428,
+ "learning_rate": 0.0006,
+ "loss": 4.685191631317139,
+ "step": 561
+ },
+ {
+ "epoch": 7.810834425513325,
+ "grad_norm": 0.4243801534175873,
+ "learning_rate": 0.0006,
+ "loss": 4.69228458404541,
+ "step": 562
+ },
+ {
+ "epoch": 7.824814329401486,
+ "grad_norm": 0.40380290150642395,
+ "learning_rate": 0.0006,
+ "loss": 4.690923690795898,
+ "step": 563
+ },
+ {
+ "epoch": 7.838794233289646,
+ "grad_norm": 0.4352976381778717,
+ "learning_rate": 0.0006,
+ "loss": 4.720489978790283,
+ "step": 564
+ },
+ {
+ "epoch": 7.852774137177807,
+ "grad_norm": 0.44634920358657837,
+ "learning_rate": 0.0006,
+ "loss": 4.683789253234863,
+ "step": 565
+ },
+ {
+ "epoch": 7.866754041065968,
+ "grad_norm": 0.3818186819553375,
+ "learning_rate": 0.0006,
+ "loss": 4.696887016296387,
+ "step": 566
+ },
+ {
+ "epoch": 7.8807339449541285,
+ "grad_norm": 0.35270464420318604,
+ "learning_rate": 0.0006,
+ "loss": 4.715676307678223,
+ "step": 567
+ },
+ {
+ "epoch": 7.894713848842289,
+ "grad_norm": 0.249756321310997,
+ "learning_rate": 0.0006,
+ "loss": 4.672721862792969,
+ "step": 568
+ },
+ {
+ "epoch": 7.90869375273045,
+ "grad_norm": 0.25097888708114624,
+ "learning_rate": 0.0006,
+ "loss": 4.663518905639648,
+ "step": 569
+ },
+ {
+ "epoch": 7.922673656618611,
+ "grad_norm": 0.26563209295272827,
+ "learning_rate": 0.0006,
+ "loss": 4.675405025482178,
+ "step": 570
+ },
+ {
+ "epoch": 7.936653560506771,
+ "grad_norm": 0.26451292634010315,
+ "learning_rate": 0.0006,
+ "loss": 4.651235103607178,
+ "step": 571
+ },
+ {
+ "epoch": 7.950633464394932,
+ "grad_norm": 0.24185842275619507,
+ "learning_rate": 0.0006,
+ "loss": 4.671639919281006,
+ "step": 572
+ },
+ {
+ "epoch": 7.964613368283093,
+ "grad_norm": 0.21506108343601227,
+ "learning_rate": 0.0006,
+ "loss": 4.665352821350098,
+ "step": 573
+ },
+ {
+ "epoch": 7.978593272171254,
+ "grad_norm": 0.24365705251693726,
+ "learning_rate": 0.0006,
+ "loss": 4.663162708282471,
+ "step": 574
+ },
+ {
+ "epoch": 7.992573176059414,
+ "grad_norm": 0.24251042306423187,
+ "learning_rate": 0.0006,
+ "loss": 4.666633605957031,
+ "step": 575
+ },
+ {
+ "epoch": 8.0,
+ "grad_norm": 0.24187657237052917,
+ "learning_rate": 0.0006,
+ "loss": 4.63957405090332,
+ "step": 576
+ },
+ {
+ "epoch": 8.0,
+ "eval_loss": 4.923156261444092,
+ "eval_runtime": 44.1587,
+ "eval_samples_per_second": 55.301,
+ "eval_steps_per_second": 3.465,
+ "step": 576
+ },
+ {
+ "epoch": 8.013979903888162,
+ "grad_norm": 0.21323645114898682,
+ "learning_rate": 0.0006,
+ "loss": 4.636347770690918,
+ "step": 577
+ },
+ {
+ "epoch": 8.027959807776321,
+ "grad_norm": 0.2325759083032608,
+ "learning_rate": 0.0006,
+ "loss": 4.60684871673584,
+ "step": 578
+ },
+ {
+ "epoch": 8.041939711664483,
+ "grad_norm": 0.26741257309913635,
+ "learning_rate": 0.0006,
+ "loss": 4.647780418395996,
+ "step": 579
+ },
+ {
+ "epoch": 8.055919615552643,
+ "grad_norm": 0.285720556974411,
+ "learning_rate": 0.0006,
+ "loss": 4.629637718200684,
+ "step": 580
+ },
+ {
+ "epoch": 8.069899519440805,
+ "grad_norm": 0.2453618347644806,
+ "learning_rate": 0.0006,
+ "loss": 4.62420654296875,
+ "step": 581
+ },
+ {
+ "epoch": 8.083879423328964,
+ "grad_norm": 0.19662636518478394,
+ "learning_rate": 0.0006,
+ "loss": 4.593767166137695,
+ "step": 582
+ },
+ {
+ "epoch": 8.097859327217126,
+ "grad_norm": 0.22731931507587433,
+ "learning_rate": 0.0006,
+ "loss": 4.627089023590088,
+ "step": 583
+ },
+ {
+ "epoch": 8.111839231105286,
+ "grad_norm": 0.24452590942382812,
+ "learning_rate": 0.0006,
+ "loss": 4.613677024841309,
+ "step": 584
+ },
+ {
+ "epoch": 8.125819134993447,
+ "grad_norm": 0.2952791154384613,
+ "learning_rate": 0.0006,
+ "loss": 4.604985237121582,
+ "step": 585
+ },
+ {
+ "epoch": 8.139799038881607,
+ "grad_norm": 0.3184696137905121,
+ "learning_rate": 0.0006,
+ "loss": 4.589205741882324,
+ "step": 586
+ },
+ {
+ "epoch": 8.153778942769769,
+ "grad_norm": 0.2948093116283417,
+ "learning_rate": 0.0006,
+ "loss": 4.605442047119141,
+ "step": 587
+ },
+ {
+ "epoch": 8.167758846657929,
+ "grad_norm": 0.2450508326292038,
+ "learning_rate": 0.0006,
+ "loss": 4.615349292755127,
+ "step": 588
+ },
+ {
+ "epoch": 8.18173875054609,
+ "grad_norm": 0.25664836168289185,
+ "learning_rate": 0.0006,
+ "loss": 4.592251777648926,
+ "step": 589
+ },
+ {
+ "epoch": 8.19571865443425,
+ "grad_norm": 0.24479512870311737,
+ "learning_rate": 0.0006,
+ "loss": 4.6145920753479,
+ "step": 590
+ },
+ {
+ "epoch": 8.209698558322412,
+ "grad_norm": 0.24395205080509186,
+ "learning_rate": 0.0006,
+ "loss": 4.600954055786133,
+ "step": 591
+ },
+ {
+ "epoch": 8.223678462210572,
+ "grad_norm": 0.21804189682006836,
+ "learning_rate": 0.0006,
+ "loss": 4.607785224914551,
+ "step": 592
+ },
+ {
+ "epoch": 8.237658366098733,
+ "grad_norm": 0.20951785147190094,
+ "learning_rate": 0.0006,
+ "loss": 4.58140754699707,
+ "step": 593
+ },
+ {
+ "epoch": 8.251638269986893,
+ "grad_norm": 0.20415149629116058,
+ "learning_rate": 0.0006,
+ "loss": 4.593405723571777,
+ "step": 594
+ },
+ {
+ "epoch": 8.265618173875055,
+ "grad_norm": 0.19210249185562134,
+ "learning_rate": 0.0006,
+ "loss": 4.603294372558594,
+ "step": 595
+ },
+ {
+ "epoch": 8.279598077763215,
+ "grad_norm": 0.20719751715660095,
+ "learning_rate": 0.0006,
+ "loss": 4.55255651473999,
+ "step": 596
+ },
+ {
+ "epoch": 8.293577981651376,
+ "grad_norm": 0.20101022720336914,
+ "learning_rate": 0.0006,
+ "loss": 4.5928192138671875,
+ "step": 597
+ },
+ {
+ "epoch": 8.307557885539538,
+ "grad_norm": 0.19254222512245178,
+ "learning_rate": 0.0006,
+ "loss": 4.590397834777832,
+ "step": 598
+ },
+ {
+ "epoch": 8.321537789427698,
+ "grad_norm": 0.23234105110168457,
+ "learning_rate": 0.0006,
+ "loss": 4.5987677574157715,
+ "step": 599
+ },
+ {
+ "epoch": 8.33551769331586,
+ "grad_norm": 0.2537451982498169,
+ "learning_rate": 0.0006,
+ "loss": 4.543115615844727,
+ "step": 600
+ },
+ {
+ "epoch": 8.349497597204019,
+ "grad_norm": 0.29171040654182434,
+ "learning_rate": 0.0006,
+ "loss": 4.597387313842773,
+ "step": 601
+ },
+ {
+ "epoch": 8.36347750109218,
+ "grad_norm": 0.3035930097103119,
+ "learning_rate": 0.0006,
+ "loss": 4.566247463226318,
+ "step": 602
+ },
+ {
+ "epoch": 8.37745740498034,
+ "grad_norm": 0.2826756238937378,
+ "learning_rate": 0.0006,
+ "loss": 4.57047176361084,
+ "step": 603
+ },
+ {
+ "epoch": 8.391437308868502,
+ "grad_norm": 0.2959657609462738,
+ "learning_rate": 0.0006,
+ "loss": 4.582820892333984,
+ "step": 604
+ },
+ {
+ "epoch": 8.405417212756662,
+ "grad_norm": 0.3180356025695801,
+ "learning_rate": 0.0006,
+ "loss": 4.5573272705078125,
+ "step": 605
+ },
+ {
+ "epoch": 8.419397116644824,
+ "grad_norm": 0.3617221713066101,
+ "learning_rate": 0.0006,
+ "loss": 4.593079090118408,
+ "step": 606
+ },
+ {
+ "epoch": 8.433377020532983,
+ "grad_norm": 0.35198062658309937,
+ "learning_rate": 0.0006,
+ "loss": 4.615298271179199,
+ "step": 607
+ },
+ {
+ "epoch": 8.447356924421145,
+ "grad_norm": 0.3944903314113617,
+ "learning_rate": 0.0006,
+ "loss": 4.561809539794922,
+ "step": 608
+ },
+ {
+ "epoch": 8.461336828309305,
+ "grad_norm": 0.4525868594646454,
+ "learning_rate": 0.0006,
+ "loss": 4.613105773925781,
+ "step": 609
+ },
+ {
+ "epoch": 8.475316732197467,
+ "grad_norm": 0.4915139079093933,
+ "learning_rate": 0.0006,
+ "loss": 4.566202163696289,
+ "step": 610
+ },
+ {
+ "epoch": 8.489296636085626,
+ "grad_norm": 0.49231988191604614,
+ "learning_rate": 0.0006,
+ "loss": 4.556222915649414,
+ "step": 611
+ },
+ {
+ "epoch": 8.503276539973788,
+ "grad_norm": 0.43036946654319763,
+ "learning_rate": 0.0006,
+ "loss": 4.55517578125,
+ "step": 612
+ },
+ {
+ "epoch": 8.517256443861948,
+ "grad_norm": 0.42405328154563904,
+ "learning_rate": 0.0006,
+ "loss": 4.574039936065674,
+ "step": 613
+ },
+ {
+ "epoch": 8.53123634775011,
+ "grad_norm": 0.3955961763858795,
+ "learning_rate": 0.0006,
+ "loss": 4.6082611083984375,
+ "step": 614
+ },
+ {
+ "epoch": 8.54521625163827,
+ "grad_norm": 0.4377101957798004,
+ "learning_rate": 0.0006,
+ "loss": 4.555740833282471,
+ "step": 615
+ },
+ {
+ "epoch": 8.55919615552643,
+ "grad_norm": 0.4601984918117523,
+ "learning_rate": 0.0006,
+ "loss": 4.553995132446289,
+ "step": 616
+ },
+ {
+ "epoch": 8.57317605941459,
+ "grad_norm": 0.42025700211524963,
+ "learning_rate": 0.0006,
+ "loss": 4.567340850830078,
+ "step": 617
+ },
+ {
+ "epoch": 8.587155963302752,
+ "grad_norm": 0.35569432377815247,
+ "learning_rate": 0.0006,
+ "loss": 4.570140361785889,
+ "step": 618
+ },
+ {
+ "epoch": 8.601135867190912,
+ "grad_norm": 0.37940406799316406,
+ "learning_rate": 0.0006,
+ "loss": 4.581291198730469,
+ "step": 619
+ },
+ {
+ "epoch": 8.615115771079074,
+ "grad_norm": 0.3658490777015686,
+ "learning_rate": 0.0006,
+ "loss": 4.55476188659668,
+ "step": 620
+ },
+ {
+ "epoch": 8.629095674967235,
+ "grad_norm": 0.2908247113227844,
+ "learning_rate": 0.0006,
+ "loss": 4.564087867736816,
+ "step": 621
+ },
+ {
+ "epoch": 8.643075578855395,
+ "grad_norm": 0.29961925745010376,
+ "learning_rate": 0.0006,
+ "loss": 4.556543350219727,
+ "step": 622
+ },
+ {
+ "epoch": 8.657055482743557,
+ "grad_norm": 0.3144846558570862,
+ "learning_rate": 0.0006,
+ "loss": 4.553670883178711,
+ "step": 623
+ },
+ {
+ "epoch": 8.671035386631717,
+ "grad_norm": 0.2845900356769562,
+ "learning_rate": 0.0006,
+ "loss": 4.567296981811523,
+ "step": 624
+ },
+ {
+ "epoch": 8.685015290519878,
+ "grad_norm": 0.253591388463974,
+ "learning_rate": 0.0006,
+ "loss": 4.554507255554199,
+ "step": 625
+ },
+ {
+ "epoch": 8.698995194408038,
+ "grad_norm": 0.2563088536262512,
+ "learning_rate": 0.0006,
+ "loss": 4.542218208312988,
+ "step": 626
+ },
+ {
+ "epoch": 8.7129750982962,
+ "grad_norm": 0.26058217883110046,
+ "learning_rate": 0.0006,
+ "loss": 4.535512447357178,
+ "step": 627
+ },
+ {
+ "epoch": 8.72695500218436,
+ "grad_norm": 0.20749829709529877,
+ "learning_rate": 0.0006,
+ "loss": 4.516959190368652,
+ "step": 628
+ },
+ {
+ "epoch": 8.740934906072521,
+ "grad_norm": 0.2034810334444046,
+ "learning_rate": 0.0006,
+ "loss": 4.55794095993042,
+ "step": 629
+ },
+ {
+ "epoch": 8.754914809960681,
+ "grad_norm": 0.18418121337890625,
+ "learning_rate": 0.0006,
+ "loss": 4.5421247482299805,
+ "step": 630
+ },
+ {
+ "epoch": 8.768894713848843,
+ "grad_norm": 0.20551933348178864,
+ "learning_rate": 0.0006,
+ "loss": 4.50805139541626,
+ "step": 631
+ },
+ {
+ "epoch": 8.782874617737003,
+ "grad_norm": 0.21615999937057495,
+ "learning_rate": 0.0006,
+ "loss": 4.520708084106445,
+ "step": 632
+ },
+ {
+ "epoch": 8.796854521625164,
+ "grad_norm": 0.24864810705184937,
+ "learning_rate": 0.0006,
+ "loss": 4.509330749511719,
+ "step": 633
+ },
+ {
+ "epoch": 8.810834425513324,
+ "grad_norm": 0.2573665380477905,
+ "learning_rate": 0.0006,
+ "loss": 4.531505584716797,
+ "step": 634
+ },
+ {
+ "epoch": 8.824814329401486,
+ "grad_norm": 0.22452878952026367,
+ "learning_rate": 0.0006,
+ "loss": 4.529216289520264,
+ "step": 635
+ },
+ {
+ "epoch": 8.838794233289645,
+ "grad_norm": 0.19727355241775513,
+ "learning_rate": 0.0006,
+ "loss": 4.519906520843506,
+ "step": 636
+ },
+ {
+ "epoch": 8.852774137177807,
+ "grad_norm": 0.19937913119792938,
+ "learning_rate": 0.0006,
+ "loss": 4.536892414093018,
+ "step": 637
+ },
+ {
+ "epoch": 8.866754041065967,
+ "grad_norm": 0.2070389986038208,
+ "learning_rate": 0.0006,
+ "loss": 4.51191520690918,
+ "step": 638
+ },
+ {
+ "epoch": 8.880733944954128,
+ "grad_norm": 0.2293873429298401,
+ "learning_rate": 0.0006,
+ "loss": 4.505377769470215,
+ "step": 639
+ },
+ {
+ "epoch": 8.89471384884229,
+ "grad_norm": 0.21285250782966614,
+ "learning_rate": 0.0006,
+ "loss": 4.5138959884643555,
+ "step": 640
+ },
+ {
+ "epoch": 8.90869375273045,
+ "grad_norm": 0.19487562775611877,
+ "learning_rate": 0.0006,
+ "loss": 4.506108283996582,
+ "step": 641
+ },
+ {
+ "epoch": 8.922673656618612,
+ "grad_norm": 0.21986965835094452,
+ "learning_rate": 0.0006,
+ "loss": 4.506397247314453,
+ "step": 642
+ },
+ {
+ "epoch": 8.936653560506771,
+ "grad_norm": 0.20763885974884033,
+ "learning_rate": 0.0006,
+ "loss": 4.508007049560547,
+ "step": 643
+ },
+ {
+ "epoch": 8.950633464394933,
+ "grad_norm": 0.22858479619026184,
+ "learning_rate": 0.0006,
+ "loss": 4.520846366882324,
+ "step": 644
+ },
+ {
+ "epoch": 8.964613368283093,
+ "grad_norm": 0.23923712968826294,
+ "learning_rate": 0.0006,
+ "loss": 4.535306930541992,
+ "step": 645
+ },
+ {
+ "epoch": 8.978593272171254,
+ "grad_norm": 0.23717579245567322,
+ "learning_rate": 0.0006,
+ "loss": 4.485929489135742,
+ "step": 646
+ },
+ {
+ "epoch": 8.992573176059414,
+ "grad_norm": 0.24033977091312408,
+ "learning_rate": 0.0006,
+ "loss": 4.508999824523926,
+ "step": 647
+ },
+ {
+ "epoch": 9.0,
+ "grad_norm": 0.22432062029838562,
+ "learning_rate": 0.0006,
+ "loss": 4.473136901855469,
+ "step": 648
+ },
+ {
+ "epoch": 9.0,
+ "eval_loss": 4.735903263092041,
+ "eval_runtime": 44.2163,
+ "eval_samples_per_second": 55.228,
+ "eval_steps_per_second": 3.46,
+ "step": 648
+ },
+ {
+ "epoch": 9.013979903888162,
+ "grad_norm": 0.22491489350795746,
+ "learning_rate": 0.0006,
+ "loss": 4.468614101409912,
+ "step": 649
+ },
+ {
+ "epoch": 9.027959807776321,
+ "grad_norm": 0.255759060382843,
+ "learning_rate": 0.0006,
+ "loss": 4.516196250915527,
+ "step": 650
+ },
+ {
+ "epoch": 9.041939711664483,
+ "grad_norm": 0.2591100335121155,
+ "learning_rate": 0.0006,
+ "loss": 4.478276252746582,
+ "step": 651
+ },
+ {
+ "epoch": 9.055919615552643,
+ "grad_norm": 0.30472296476364136,
+ "learning_rate": 0.0006,
+ "loss": 4.479726791381836,
+ "step": 652
+ },
+ {
+ "epoch": 9.069899519440805,
+ "grad_norm": 0.2840559780597687,
+ "learning_rate": 0.0006,
+ "loss": 4.4437384605407715,
+ "step": 653
+ },
+ {
+ "epoch": 9.083879423328964,
+ "grad_norm": 0.2695577144622803,
+ "learning_rate": 0.0006,
+ "loss": 4.476065635681152,
+ "step": 654
+ },
+ {
+ "epoch": 9.097859327217126,
+ "grad_norm": 0.27912381291389465,
+ "learning_rate": 0.0006,
+ "loss": 4.484747409820557,
+ "step": 655
+ },
+ {
+ "epoch": 9.111839231105286,
+ "grad_norm": 0.3091907501220703,
+ "learning_rate": 0.0006,
+ "loss": 4.449443817138672,
+ "step": 656
+ },
+ {
+ "epoch": 9.125819134993447,
+ "grad_norm": 0.30756646394729614,
+ "learning_rate": 0.0006,
+ "loss": 4.496490001678467,
+ "step": 657
+ },
+ {
+ "epoch": 9.139799038881607,
+ "grad_norm": 0.305698037147522,
+ "learning_rate": 0.0006,
+ "loss": 4.466765880584717,
+ "step": 658
+ },
+ {
+ "epoch": 9.153778942769769,
+ "grad_norm": 0.3031201660633087,
+ "learning_rate": 0.0006,
+ "loss": 4.462430953979492,
+ "step": 659
+ },
+ {
+ "epoch": 9.167758846657929,
+ "grad_norm": 0.32725608348846436,
+ "learning_rate": 0.0006,
+ "loss": 4.479879379272461,
+ "step": 660
+ },
+ {
+ "epoch": 9.18173875054609,
+ "grad_norm": 0.31773585081100464,
+ "learning_rate": 0.0006,
+ "loss": 4.473912239074707,
+ "step": 661
+ },
+ {
+ "epoch": 9.19571865443425,
+ "grad_norm": 0.30025365948677063,
+ "learning_rate": 0.0006,
+ "loss": 4.476703643798828,
+ "step": 662
+ },
+ {
+ "epoch": 9.209698558322412,
+ "grad_norm": 0.3177371025085449,
+ "learning_rate": 0.0006,
+ "loss": 4.439765930175781,
+ "step": 663
+ },
+ {
+ "epoch": 9.223678462210572,
+ "grad_norm": 0.3060745894908905,
+ "learning_rate": 0.0006,
+ "loss": 4.487849235534668,
+ "step": 664
+ },
+ {
+ "epoch": 9.237658366098733,
+ "grad_norm": 0.33287373185157776,
+ "learning_rate": 0.0006,
+ "loss": 4.443496227264404,
+ "step": 665
+ },
+ {
+ "epoch": 9.251638269986893,
+ "grad_norm": 0.3758000433444977,
+ "learning_rate": 0.0006,
+ "loss": 4.478017330169678,
+ "step": 666
+ },
+ {
+ "epoch": 9.265618173875055,
+ "grad_norm": 0.32124510407447815,
+ "learning_rate": 0.0006,
+ "loss": 4.4092206954956055,
+ "step": 667
+ },
+ {
+ "epoch": 9.279598077763215,
+ "grad_norm": 0.2786794602870941,
+ "learning_rate": 0.0006,
+ "loss": 4.432734489440918,
+ "step": 668
+ },
+ {
+ "epoch": 9.293577981651376,
+ "grad_norm": 0.35042962431907654,
+ "learning_rate": 0.0006,
+ "loss": 4.462737083435059,
+ "step": 669
+ },
+ {
+ "epoch": 9.307557885539538,
+ "grad_norm": 0.4080469310283661,
+ "learning_rate": 0.0006,
+ "loss": 4.429462432861328,
+ "step": 670
+ },
+ {
+ "epoch": 9.321537789427698,
+ "grad_norm": 0.465158075094223,
+ "learning_rate": 0.0006,
+ "loss": 4.465776443481445,
+ "step": 671
+ },
+ {
+ "epoch": 9.33551769331586,
+ "grad_norm": 0.44833582639694214,
+ "learning_rate": 0.0006,
+ "loss": 4.454195976257324,
+ "step": 672
+ },
+ {
+ "epoch": 9.349497597204019,
+ "grad_norm": 0.451052188873291,
+ "learning_rate": 0.0006,
+ "loss": 4.456139087677002,
+ "step": 673
+ },
+ {
+ "epoch": 9.36347750109218,
+ "grad_norm": 0.3759656250476837,
+ "learning_rate": 0.0006,
+ "loss": 4.461119651794434,
+ "step": 674
+ },
+ {
+ "epoch": 9.37745740498034,
+ "grad_norm": 0.514560341835022,
+ "learning_rate": 0.0006,
+ "loss": 4.49595832824707,
+ "step": 675
+ },
+ {
+ "epoch": 9.391437308868502,
+ "grad_norm": 0.5650647282600403,
+ "learning_rate": 0.0006,
+ "loss": 4.461362838745117,
+ "step": 676
+ },
+ {
+ "epoch": 9.405417212756662,
+ "grad_norm": 0.4218835234642029,
+ "learning_rate": 0.0006,
+ "loss": 4.469146728515625,
+ "step": 677
+ },
+ {
+ "epoch": 9.419397116644824,
+ "grad_norm": 0.4169512689113617,
+ "learning_rate": 0.0006,
+ "loss": 4.470132827758789,
+ "step": 678
+ },
+ {
+ "epoch": 9.433377020532983,
+ "grad_norm": 0.3772219717502594,
+ "learning_rate": 0.0006,
+ "loss": 4.4742608070373535,
+ "step": 679
+ },
+ {
+ "epoch": 9.447356924421145,
+ "grad_norm": 0.35755908489227295,
+ "learning_rate": 0.0006,
+ "loss": 4.461928367614746,
+ "step": 680
+ },
+ {
+ "epoch": 9.461336828309305,
+ "grad_norm": 0.3141227662563324,
+ "learning_rate": 0.0006,
+ "loss": 4.491983413696289,
+ "step": 681
+ },
+ {
+ "epoch": 9.475316732197467,
+ "grad_norm": 0.282461017370224,
+ "learning_rate": 0.0006,
+ "loss": 4.460200309753418,
+ "step": 682
+ },
+ {
+ "epoch": 9.489296636085626,
+ "grad_norm": 0.27174389362335205,
+ "learning_rate": 0.0006,
+ "loss": 4.416125297546387,
+ "step": 683
+ },
+ {
+ "epoch": 9.503276539973788,
+ "grad_norm": 0.24570637941360474,
+ "learning_rate": 0.0006,
+ "loss": 4.4451093673706055,
+ "step": 684
+ },
+ {
+ "epoch": 9.517256443861948,
+ "grad_norm": 0.2741486132144928,
+ "learning_rate": 0.0006,
+ "loss": 4.453263282775879,
+ "step": 685
+ },
+ {
+ "epoch": 9.53123634775011,
+ "grad_norm": 0.24753718078136444,
+ "learning_rate": 0.0006,
+ "loss": 4.483033180236816,
+ "step": 686
+ },
+ {
+ "epoch": 9.54521625163827,
+ "grad_norm": 0.24288412928581238,
+ "learning_rate": 0.0006,
+ "loss": 4.452961444854736,
+ "step": 687
+ },
+ {
+ "epoch": 9.55919615552643,
+ "grad_norm": 0.21554753184318542,
+ "learning_rate": 0.0006,
+ "loss": 4.476005554199219,
+ "step": 688
+ },
+ {
+ "epoch": 9.57317605941459,
+ "grad_norm": 0.22775942087173462,
+ "learning_rate": 0.0006,
+ "loss": 4.4479193687438965,
+ "step": 689
+ },
+ {
+ "epoch": 9.587155963302752,
+ "grad_norm": 0.2610701024532318,
+ "learning_rate": 0.0006,
+ "loss": 4.474987506866455,
+ "step": 690
+ },
+ {
+ "epoch": 9.601135867190912,
+ "grad_norm": 0.2394690215587616,
+ "learning_rate": 0.0006,
+ "loss": 4.444857597351074,
+ "step": 691
+ },
+ {
+ "epoch": 9.615115771079074,
+ "grad_norm": 0.20868559181690216,
+ "learning_rate": 0.0006,
+ "loss": 4.4220709800720215,
+ "step": 692
+ },
+ {
+ "epoch": 9.629095674967235,
+ "grad_norm": 0.21869882941246033,
+ "learning_rate": 0.0006,
+ "loss": 4.451737403869629,
+ "step": 693
+ },
+ {
+ "epoch": 9.643075578855395,
+ "grad_norm": 0.1802823394536972,
+ "learning_rate": 0.0006,
+ "loss": 4.409085273742676,
+ "step": 694
+ },
+ {
+ "epoch": 9.657055482743557,
+ "grad_norm": 0.17046281695365906,
+ "learning_rate": 0.0006,
+ "loss": 4.424643516540527,
+ "step": 695
+ },
+ {
+ "epoch": 9.671035386631717,
+ "grad_norm": 0.19561922550201416,
+ "learning_rate": 0.0006,
+ "loss": 4.412302017211914,
+ "step": 696
+ },
+ {
+ "epoch": 9.685015290519878,
+ "grad_norm": 0.21928799152374268,
+ "learning_rate": 0.0006,
+ "loss": 4.427582263946533,
+ "step": 697
+ },
+ {
+ "epoch": 9.698995194408038,
+ "grad_norm": 0.244873046875,
+ "learning_rate": 0.0006,
+ "loss": 4.431827545166016,
+ "step": 698
+ },
+ {
+ "epoch": 9.7129750982962,
+ "grad_norm": 0.2799488604068756,
+ "learning_rate": 0.0006,
+ "loss": 4.407991409301758,
+ "step": 699
+ },
+ {
+ "epoch": 9.72695500218436,
+ "grad_norm": 0.2699538767337799,
+ "learning_rate": 0.0006,
+ "loss": 4.412313461303711,
+ "step": 700
+ },
+ {
+ "epoch": 9.740934906072521,
+ "grad_norm": 0.22293835878372192,
+ "learning_rate": 0.0006,
+ "loss": 4.423369884490967,
+ "step": 701
+ },
+ {
+ "epoch": 9.754914809960681,
+ "grad_norm": 0.21554361283779144,
+ "learning_rate": 0.0006,
+ "loss": 4.42026948928833,
+ "step": 702
+ },
+ {
+ "epoch": 9.768894713848843,
+ "grad_norm": 0.22135840356349945,
+ "learning_rate": 0.0006,
+ "loss": 4.400010108947754,
+ "step": 703
+ },
+ {
+ "epoch": 9.782874617737003,
+ "grad_norm": 0.2169952541589737,
+ "learning_rate": 0.0006,
+ "loss": 4.394582271575928,
+ "step": 704
+ },
+ {
+ "epoch": 9.796854521625164,
+ "grad_norm": 0.18913042545318604,
+ "learning_rate": 0.0006,
+ "loss": 4.395880699157715,
+ "step": 705
+ },
+ {
+ "epoch": 9.810834425513324,
+ "grad_norm": 0.191524475812912,
+ "learning_rate": 0.0006,
+ "loss": 4.378962516784668,
+ "step": 706
+ },
+ {
+ "epoch": 9.824814329401486,
+ "grad_norm": 0.20057640969753265,
+ "learning_rate": 0.0006,
+ "loss": 4.431066513061523,
+ "step": 707
+ },
+ {
+ "epoch": 9.838794233289645,
+ "grad_norm": 0.21670377254486084,
+ "learning_rate": 0.0006,
+ "loss": 4.364682197570801,
+ "step": 708
+ },
+ {
+ "epoch": 9.852774137177807,
+ "grad_norm": 0.21653099358081818,
+ "learning_rate": 0.0006,
+ "loss": 4.4050445556640625,
+ "step": 709
+ },
+ {
+ "epoch": 9.866754041065967,
+ "grad_norm": 0.2217673808336258,
+ "learning_rate": 0.0006,
+ "loss": 4.423664093017578,
+ "step": 710
+ },
+ {
+ "epoch": 9.880733944954128,
+ "grad_norm": 0.251078337430954,
+ "learning_rate": 0.0006,
+ "loss": 4.405768394470215,
+ "step": 711
+ },
+ {
+ "epoch": 9.89471384884229,
+ "grad_norm": 0.28962627053260803,
+ "learning_rate": 0.0006,
+ "loss": 4.421207427978516,
+ "step": 712
+ },
+ {
+ "epoch": 9.90869375273045,
+ "grad_norm": 0.3478074371814728,
+ "learning_rate": 0.0006,
+ "loss": 4.414942741394043,
+ "step": 713
+ },
+ {
+ "epoch": 9.922673656618612,
+ "grad_norm": 0.40396368503570557,
+ "learning_rate": 0.0006,
+ "loss": 4.415163993835449,
+ "step": 714
+ },
+ {
+ "epoch": 9.936653560506771,
+ "grad_norm": 0.3689858019351959,
+ "learning_rate": 0.0006,
+ "loss": 4.381345272064209,
+ "step": 715
+ },
+ {
+ "epoch": 9.950633464394933,
+ "grad_norm": 0.344868004322052,
+ "learning_rate": 0.0006,
+ "loss": 4.433088302612305,
+ "step": 716
+ },
+ {
+ "epoch": 9.964613368283093,
+ "grad_norm": 0.37976378202438354,
+ "learning_rate": 0.0006,
+ "loss": 4.431371212005615,
+ "step": 717
+ },
+ {
+ "epoch": 9.978593272171254,
+ "grad_norm": 0.4354130029678345,
+ "learning_rate": 0.0006,
+ "loss": 4.434148788452148,
+ "step": 718
+ },
+ {
+ "epoch": 9.992573176059414,
+ "grad_norm": 0.35859373211860657,
+ "learning_rate": 0.0006,
+ "loss": 4.428055763244629,
+ "step": 719
+ },
+ {
+ "epoch": 10.0,
+ "grad_norm": 0.3365023732185364,
+ "learning_rate": 0.0006,
+ "loss": 4.3888654708862305,
+ "step": 720
+ },
+ {
+ "epoch": 10.0,
+ "eval_loss": 4.638620853424072,
+ "eval_runtime": 44.3054,
+ "eval_samples_per_second": 55.117,
+ "eval_steps_per_second": 3.453,
+ "step": 720
+ },
+ {
+ "epoch": 10.013979903888162,
+ "grad_norm": 0.3267960250377655,
+ "learning_rate": 0.0006,
+ "loss": 4.386068344116211,
+ "step": 721
+ },
+ {
+ "epoch": 10.027959807776321,
+ "grad_norm": 0.33440953493118286,
+ "learning_rate": 0.0006,
+ "loss": 4.397515296936035,
+ "step": 722
+ },
+ {
+ "epoch": 10.041939711664483,
+ "grad_norm": 0.30047518014907837,
+ "learning_rate": 0.0006,
+ "loss": 4.398358345031738,
+ "step": 723
+ },
+ {
+ "epoch": 10.055919615552643,
+ "grad_norm": 0.2912217378616333,
+ "learning_rate": 0.0006,
+ "loss": 4.341166973114014,
+ "step": 724
+ },
+ {
+ "epoch": 10.069899519440805,
+ "grad_norm": 0.3199564218521118,
+ "learning_rate": 0.0006,
+ "loss": 4.388717174530029,
+ "step": 725
+ },
+ {
+ "epoch": 10.083879423328964,
+ "grad_norm": 0.2765582799911499,
+ "learning_rate": 0.0006,
+ "loss": 4.392992973327637,
+ "step": 726
+ },
+ {
+ "epoch": 10.097859327217126,
+ "grad_norm": 0.27138450741767883,
+ "learning_rate": 0.0006,
+ "loss": 4.382307529449463,
+ "step": 727
+ },
+ {
+ "epoch": 10.111839231105286,
+ "grad_norm": 0.29230645298957825,
+ "learning_rate": 0.0006,
+ "loss": 4.357486724853516,
+ "step": 728
+ },
+ {
+ "epoch": 10.125819134993447,
+ "grad_norm": 0.3127598464488983,
+ "learning_rate": 0.0006,
+ "loss": 4.39072322845459,
+ "step": 729
+ },
+ {
+ "epoch": 10.139799038881607,
+ "grad_norm": 0.3230913281440735,
+ "learning_rate": 0.0006,
+ "loss": 4.35037899017334,
+ "step": 730
+ },
+ {
+ "epoch": 10.153778942769769,
+ "grad_norm": 0.333675354719162,
+ "learning_rate": 0.0006,
+ "loss": 4.378030776977539,
+ "step": 731
+ },
+ {
+ "epoch": 10.167758846657929,
+ "grad_norm": 0.30325770378112793,
+ "learning_rate": 0.0006,
+ "loss": 4.372736930847168,
+ "step": 732
+ },
+ {
+ "epoch": 10.18173875054609,
+ "grad_norm": 0.2888163924217224,
+ "learning_rate": 0.0006,
+ "loss": 4.397604942321777,
+ "step": 733
+ },
+ {
+ "epoch": 10.19571865443425,
+ "grad_norm": 0.3378832936286926,
+ "learning_rate": 0.0006,
+ "loss": 4.395705223083496,
+ "step": 734
+ },
+ {
+ "epoch": 10.209698558322412,
+ "grad_norm": 0.30980268120765686,
+ "learning_rate": 0.0006,
+ "loss": 4.3861212730407715,
+ "step": 735
+ },
+ {
+ "epoch": 10.223678462210572,
+ "grad_norm": 0.2965783178806305,
+ "learning_rate": 0.0006,
+ "loss": 4.394898414611816,
+ "step": 736
+ },
+ {
+ "epoch": 10.237658366098733,
+ "grad_norm": 0.2818217873573303,
+ "learning_rate": 0.0006,
+ "loss": 4.36171817779541,
+ "step": 737
+ },
+ {
+ "epoch": 10.251638269986893,
+ "grad_norm": 0.2418123185634613,
+ "learning_rate": 0.0006,
+ "loss": 4.370945930480957,
+ "step": 738
+ },
+ {
+ "epoch": 10.265618173875055,
+ "grad_norm": 0.22372810542583466,
+ "learning_rate": 0.0006,
+ "loss": 4.354825973510742,
+ "step": 739
+ },
+ {
+ "epoch": 10.279598077763215,
+ "grad_norm": 0.238066166639328,
+ "learning_rate": 0.0006,
+ "loss": 4.376237392425537,
+ "step": 740
+ },
+ {
+ "epoch": 10.293577981651376,
+ "grad_norm": 0.22352449595928192,
+ "learning_rate": 0.0006,
+ "loss": 4.317084312438965,
+ "step": 741
+ },
+ {
+ "epoch": 10.307557885539538,
+ "grad_norm": 0.21685205399990082,
+ "learning_rate": 0.0006,
+ "loss": 4.335271835327148,
+ "step": 742
+ },
+ {
+ "epoch": 10.321537789427698,
+ "grad_norm": 0.19584694504737854,
+ "learning_rate": 0.0006,
+ "loss": 4.357963562011719,
+ "step": 743
+ },
+ {
+ "epoch": 10.33551769331586,
+ "grad_norm": 0.20373336970806122,
+ "learning_rate": 0.0006,
+ "loss": 4.401963233947754,
+ "step": 744
+ },
+ {
+ "epoch": 10.349497597204019,
+ "grad_norm": 0.2247837632894516,
+ "learning_rate": 0.0006,
+ "loss": 4.357202529907227,
+ "step": 745
+ },
+ {
+ "epoch": 10.36347750109218,
+ "grad_norm": 0.2416863739490509,
+ "learning_rate": 0.0006,
+ "loss": 4.364739418029785,
+ "step": 746
+ },
+ {
+ "epoch": 10.37745740498034,
+ "grad_norm": 0.22281162440776825,
+ "learning_rate": 0.0006,
+ "loss": 4.351607799530029,
+ "step": 747
+ },
+ {
+ "epoch": 10.391437308868502,
+ "grad_norm": 0.20751096308231354,
+ "learning_rate": 0.0006,
+ "loss": 4.370017051696777,
+ "step": 748
+ },
+ {
+ "epoch": 10.405417212756662,
+ "grad_norm": 0.19178363680839539,
+ "learning_rate": 0.0006,
+ "loss": 4.360328674316406,
+ "step": 749
+ },
+ {
+ "epoch": 10.419397116644824,
+ "grad_norm": 0.20534078776836395,
+ "learning_rate": 0.0006,
+ "loss": 4.3735432624816895,
+ "step": 750
+ },
+ {
+ "epoch": 10.433377020532983,
+ "grad_norm": 0.20533937215805054,
+ "learning_rate": 0.0006,
+ "loss": 4.326902389526367,
+ "step": 751
+ },
+ {
+ "epoch": 10.447356924421145,
+ "grad_norm": 0.22057875990867615,
+ "learning_rate": 0.0006,
+ "loss": 4.360934257507324,
+ "step": 752
+ },
+ {
+ "epoch": 10.461336828309305,
+ "grad_norm": 0.25568997859954834,
+ "learning_rate": 0.0006,
+ "loss": 4.345063209533691,
+ "step": 753
+ },
+ {
+ "epoch": 10.475316732197467,
+ "grad_norm": 0.31471487879753113,
+ "learning_rate": 0.0006,
+ "loss": 4.324014186859131,
+ "step": 754
+ },
+ {
+ "epoch": 10.489296636085626,
+ "grad_norm": 0.2716822624206543,
+ "learning_rate": 0.0006,
+ "loss": 4.318459510803223,
+ "step": 755
+ },
+ {
+ "epoch": 10.503276539973788,
+ "grad_norm": 0.19552019238471985,
+ "learning_rate": 0.0006,
+ "loss": 4.3367509841918945,
+ "step": 756
+ },
+ {
+ "epoch": 10.517256443861948,
+ "grad_norm": 0.22822986543178558,
+ "learning_rate": 0.0006,
+ "loss": 4.328935623168945,
+ "step": 757
+ },
+ {
+ "epoch": 10.53123634775011,
+ "grad_norm": 0.22282928228378296,
+ "learning_rate": 0.0006,
+ "loss": 4.358272552490234,
+ "step": 758
+ },
+ {
+ "epoch": 10.54521625163827,
+ "grad_norm": 0.23303352296352386,
+ "learning_rate": 0.0006,
+ "loss": 4.336641311645508,
+ "step": 759
+ },
+ {
+ "epoch": 10.55919615552643,
+ "grad_norm": 0.29474690556526184,
+ "learning_rate": 0.0006,
+ "loss": 4.343188285827637,
+ "step": 760
+ },
+ {
+ "epoch": 10.57317605941459,
+ "grad_norm": 0.36269059777259827,
+ "learning_rate": 0.0006,
+ "loss": 4.313019752502441,
+ "step": 761
+ },
+ {
+ "epoch": 10.587155963302752,
+ "grad_norm": 0.3742978870868683,
+ "learning_rate": 0.0006,
+ "loss": 4.361410140991211,
+ "step": 762
+ },
+ {
+ "epoch": 10.601135867190912,
+ "grad_norm": 0.34412163496017456,
+ "learning_rate": 0.0006,
+ "loss": 4.321324825286865,
+ "step": 763
+ },
+ {
+ "epoch": 10.615115771079074,
+ "grad_norm": 0.3464587926864624,
+ "learning_rate": 0.0006,
+ "loss": 4.341907501220703,
+ "step": 764
+ },
+ {
+ "epoch": 10.629095674967235,
+ "grad_norm": 0.3318136930465698,
+ "learning_rate": 0.0006,
+ "loss": 4.329099655151367,
+ "step": 765
+ },
+ {
+ "epoch": 10.643075578855395,
+ "grad_norm": 0.31292903423309326,
+ "learning_rate": 0.0006,
+ "loss": 4.332015037536621,
+ "step": 766
+ },
+ {
+ "epoch": 10.657055482743557,
+ "grad_norm": 0.2904847264289856,
+ "learning_rate": 0.0006,
+ "loss": 4.341764450073242,
+ "step": 767
+ },
+ {
+ "epoch": 10.671035386631717,
+ "grad_norm": 0.3287692666053772,
+ "learning_rate": 0.0006,
+ "loss": 4.342329025268555,
+ "step": 768
+ },
+ {
+ "epoch": 10.685015290519878,
+ "grad_norm": 0.3115365207195282,
+ "learning_rate": 0.0006,
+ "loss": 4.3530073165893555,
+ "step": 769
+ },
+ {
+ "epoch": 10.698995194408038,
+ "grad_norm": 0.24133864045143127,
+ "learning_rate": 0.0006,
+ "loss": 4.321497917175293,
+ "step": 770
+ },
+ {
+ "epoch": 10.7129750982962,
+ "grad_norm": 0.24658630788326263,
+ "learning_rate": 0.0006,
+ "loss": 4.32669734954834,
+ "step": 771
+ },
+ {
+ "epoch": 10.72695500218436,
+ "grad_norm": 0.2342129647731781,
+ "learning_rate": 0.0006,
+ "loss": 4.345459461212158,
+ "step": 772
+ },
+ {
+ "epoch": 10.740934906072521,
+ "grad_norm": 0.23360829055309296,
+ "learning_rate": 0.0006,
+ "loss": 4.33249568939209,
+ "step": 773
+ },
+ {
+ "epoch": 10.754914809960681,
+ "grad_norm": 0.24314677715301514,
+ "learning_rate": 0.0006,
+ "loss": 4.30499792098999,
+ "step": 774
+ },
+ {
+ "epoch": 10.768894713848843,
+ "grad_norm": 0.22105181217193604,
+ "learning_rate": 0.0006,
+ "loss": 4.33706521987915,
+ "step": 775
+ },
+ {
+ "epoch": 10.782874617737003,
+ "grad_norm": 0.23307174444198608,
+ "learning_rate": 0.0006,
+ "loss": 4.320387840270996,
+ "step": 776
+ },
+ {
+ "epoch": 10.796854521625164,
+ "grad_norm": 0.24946169555187225,
+ "learning_rate": 0.0006,
+ "loss": 4.316012382507324,
+ "step": 777
+ },
+ {
+ "epoch": 10.810834425513324,
+ "grad_norm": 0.26023536920547485,
+ "learning_rate": 0.0006,
+ "loss": 4.315193176269531,
+ "step": 778
+ },
+ {
+ "epoch": 10.824814329401486,
+ "grad_norm": 0.2688547968864441,
+ "learning_rate": 0.0006,
+ "loss": 4.3243255615234375,
+ "step": 779
+ },
+ {
+ "epoch": 10.838794233289645,
+ "grad_norm": 0.28188297152519226,
+ "learning_rate": 0.0006,
+ "loss": 4.3202972412109375,
+ "step": 780
+ },
+ {
+ "epoch": 10.852774137177807,
+ "grad_norm": 0.2890053689479828,
+ "learning_rate": 0.0006,
+ "loss": 4.318799018859863,
+ "step": 781
+ },
+ {
+ "epoch": 10.866754041065967,
+ "grad_norm": 0.2914353013038635,
+ "learning_rate": 0.0006,
+ "loss": 4.314262390136719,
+ "step": 782
+ },
+ {
+ "epoch": 10.880733944954128,
+ "grad_norm": 0.3145572543144226,
+ "learning_rate": 0.0006,
+ "loss": 4.339262008666992,
+ "step": 783
+ },
+ {
+ "epoch": 10.89471384884229,
+ "grad_norm": 0.323062002658844,
+ "learning_rate": 0.0006,
+ "loss": 4.354856491088867,
+ "step": 784
+ },
+ {
+ "epoch": 10.90869375273045,
+ "grad_norm": 0.32741227746009827,
+ "learning_rate": 0.0006,
+ "loss": 4.325577735900879,
+ "step": 785
+ },
+ {
+ "epoch": 10.922673656618612,
+ "grad_norm": 0.2855733036994934,
+ "learning_rate": 0.0006,
+ "loss": 4.324419021606445,
+ "step": 786
+ },
+ {
+ "epoch": 10.936653560506771,
+ "grad_norm": 0.2969444990158081,
+ "learning_rate": 0.0006,
+ "loss": 4.320681095123291,
+ "step": 787
+ },
+ {
+ "epoch": 10.950633464394933,
+ "grad_norm": 0.28108111023902893,
+ "learning_rate": 0.0006,
+ "loss": 4.32673454284668,
+ "step": 788
+ },
+ {
+ "epoch": 10.964613368283093,
+ "grad_norm": 0.2537972629070282,
+ "learning_rate": 0.0006,
+ "loss": 4.3197021484375,
+ "step": 789
+ },
+ {
+ "epoch": 10.978593272171254,
+ "grad_norm": 0.2354544699192047,
+ "learning_rate": 0.0006,
+ "loss": 4.3354973793029785,
+ "step": 790
+ },
+ {
+ "epoch": 10.992573176059414,
+ "grad_norm": 0.26195117831230164,
+ "learning_rate": 0.0006,
+ "loss": 4.3172526359558105,
+ "step": 791
+ },
+ {
+ "epoch": 11.0,
+ "grad_norm": 0.27089616656303406,
+ "learning_rate": 0.0006,
+ "loss": 4.324293613433838,
+ "step": 792
+ },
+ {
+ "epoch": 11.0,
+ "eval_loss": 4.531813621520996,
+ "eval_runtime": 44.1656,
+ "eval_samples_per_second": 55.292,
+ "eval_steps_per_second": 3.464,
+ "step": 792
+ },
+ {
+ "epoch": 11.013979903888162,
+ "grad_norm": 0.2526339590549469,
+ "learning_rate": 0.0006,
+ "loss": 4.287600517272949,
+ "step": 793
+ },
+ {
+ "epoch": 11.027959807776321,
+ "grad_norm": 0.24318458139896393,
+ "learning_rate": 0.0006,
+ "loss": 4.268078327178955,
+ "step": 794
+ },
+ {
+ "epoch": 11.041939711664483,
+ "grad_norm": 0.2450830638408661,
+ "learning_rate": 0.0006,
+ "loss": 4.265467643737793,
+ "step": 795
+ },
+ {
+ "epoch": 11.055919615552643,
+ "grad_norm": 0.23963099718093872,
+ "learning_rate": 0.0006,
+ "loss": 4.267931938171387,
+ "step": 796
+ },
+ {
+ "epoch": 11.069899519440805,
+ "grad_norm": 0.2488657534122467,
+ "learning_rate": 0.0006,
+ "loss": 4.30262565612793,
+ "step": 797
+ },
+ {
+ "epoch": 11.083879423328964,
+ "grad_norm": 0.2319781631231308,
+ "learning_rate": 0.0006,
+ "loss": 4.28665828704834,
+ "step": 798
+ },
+ {
+ "epoch": 11.097859327217126,
+ "grad_norm": 0.2425263375043869,
+ "learning_rate": 0.0006,
+ "loss": 4.284830570220947,
+ "step": 799
+ },
+ {
+ "epoch": 11.111839231105286,
+ "grad_norm": 0.23096567392349243,
+ "learning_rate": 0.0006,
+ "loss": 4.2817206382751465,
+ "step": 800
+ },
+ {
+ "epoch": 11.125819134993447,
+ "grad_norm": 0.2846364676952362,
+ "learning_rate": 0.0006,
+ "loss": 4.276104927062988,
+ "step": 801
+ },
+ {
+ "epoch": 11.139799038881607,
+ "grad_norm": 0.2984965741634369,
+ "learning_rate": 0.0006,
+ "loss": 4.2909650802612305,
+ "step": 802
+ },
+ {
+ "epoch": 11.153778942769769,
+ "grad_norm": 0.2841213643550873,
+ "learning_rate": 0.0006,
+ "loss": 4.283358097076416,
+ "step": 803
+ },
+ {
+ "epoch": 11.167758846657929,
+ "grad_norm": 0.29192933440208435,
+ "learning_rate": 0.0006,
+ "loss": 4.267040729522705,
+ "step": 804
+ },
+ {
+ "epoch": 11.18173875054609,
+ "grad_norm": 0.3254184126853943,
+ "learning_rate": 0.0006,
+ "loss": 4.301564693450928,
+ "step": 805
+ },
+ {
+ "epoch": 11.19571865443425,
+ "grad_norm": 0.3347095847129822,
+ "learning_rate": 0.0006,
+ "loss": 4.271395683288574,
+ "step": 806
+ },
+ {
+ "epoch": 11.209698558322412,
+ "grad_norm": 0.25609350204467773,
+ "learning_rate": 0.0006,
+ "loss": 4.2963056564331055,
+ "step": 807
+ },
+ {
+ "epoch": 11.223678462210572,
+ "grad_norm": 0.29272061586380005,
+ "learning_rate": 0.0006,
+ "loss": 4.298416614532471,
+ "step": 808
+ },
+ {
+ "epoch": 11.237658366098733,
+ "grad_norm": 0.32179465889930725,
+ "learning_rate": 0.0006,
+ "loss": 4.294036865234375,
+ "step": 809
+ },
+ {
+ "epoch": 11.251638269986893,
+ "grad_norm": 0.3336549401283264,
+ "learning_rate": 0.0006,
+ "loss": 4.291993141174316,
+ "step": 810
+ },
+ {
+ "epoch": 11.265618173875055,
+ "grad_norm": 0.32273536920547485,
+ "learning_rate": 0.0006,
+ "loss": 4.311004638671875,
+ "step": 811
+ },
+ {
+ "epoch": 11.279598077763215,
+ "grad_norm": 0.3575087785720825,
+ "learning_rate": 0.0006,
+ "loss": 4.300217628479004,
+ "step": 812
+ },
+ {
+ "epoch": 11.293577981651376,
+ "grad_norm": 0.3332885205745697,
+ "learning_rate": 0.0006,
+ "loss": 4.278337478637695,
+ "step": 813
+ },
+ {
+ "epoch": 11.307557885539538,
+ "grad_norm": 0.31440407037734985,
+ "learning_rate": 0.0006,
+ "loss": 4.273826599121094,
+ "step": 814
+ },
+ {
+ "epoch": 11.321537789427698,
+ "grad_norm": 0.29822009801864624,
+ "learning_rate": 0.0006,
+ "loss": 4.284292221069336,
+ "step": 815
+ },
+ {
+ "epoch": 11.33551769331586,
+ "grad_norm": 0.30695512890815735,
+ "learning_rate": 0.0006,
+ "loss": 4.2831926345825195,
+ "step": 816
+ },
+ {
+ "epoch": 11.349497597204019,
+ "grad_norm": 0.30576950311660767,
+ "learning_rate": 0.0006,
+ "loss": 4.277133464813232,
+ "step": 817
+ },
+ {
+ "epoch": 11.36347750109218,
+ "grad_norm": 0.2859647870063782,
+ "learning_rate": 0.0006,
+ "loss": 4.3130106925964355,
+ "step": 818
+ },
+ {
+ "epoch": 11.37745740498034,
+ "grad_norm": 0.32417574524879456,
+ "learning_rate": 0.0006,
+ "loss": 4.310303211212158,
+ "step": 819
+ },
+ {
+ "epoch": 11.391437308868502,
+ "grad_norm": 0.3512463867664337,
+ "learning_rate": 0.0006,
+ "loss": 4.287015438079834,
+ "step": 820
+ },
+ {
+ "epoch": 11.405417212756662,
+ "grad_norm": 0.32578620314598083,
+ "learning_rate": 0.0006,
+ "loss": 4.2957940101623535,
+ "step": 821
+ },
+ {
+ "epoch": 11.419397116644824,
+ "grad_norm": 0.287949800491333,
+ "learning_rate": 0.0006,
+ "loss": 4.2881879806518555,
+ "step": 822
+ },
+ {
+ "epoch": 11.433377020532983,
+ "grad_norm": 0.28048595786094666,
+ "learning_rate": 0.0006,
+ "loss": 4.274960517883301,
+ "step": 823
+ },
+ {
+ "epoch": 11.447356924421145,
+ "grad_norm": 0.2541540563106537,
+ "learning_rate": 0.0006,
+ "loss": 4.261083602905273,
+ "step": 824
+ },
+ {
+ "epoch": 11.461336828309305,
+ "grad_norm": 0.2348361313343048,
+ "learning_rate": 0.0006,
+ "loss": 4.271036148071289,
+ "step": 825
+ },
+ {
+ "epoch": 11.475316732197467,
+ "grad_norm": 0.20913535356521606,
+ "learning_rate": 0.0006,
+ "loss": 4.307661056518555,
+ "step": 826
+ },
+ {
+ "epoch": 11.489296636085626,
+ "grad_norm": 0.22298868000507355,
+ "learning_rate": 0.0006,
+ "loss": 4.26902961730957,
+ "step": 827
+ },
+ {
+ "epoch": 11.503276539973788,
+ "grad_norm": 0.22752761840820312,
+ "learning_rate": 0.0006,
+ "loss": 4.305529594421387,
+ "step": 828
+ },
+ {
+ "epoch": 11.517256443861948,
+ "grad_norm": 0.2149917483329773,
+ "learning_rate": 0.0006,
+ "loss": 4.25134801864624,
+ "step": 829
+ },
+ {
+ "epoch": 11.53123634775011,
+ "grad_norm": 0.21085695922374725,
+ "learning_rate": 0.0006,
+ "loss": 4.266982078552246,
+ "step": 830
+ },
+ {
+ "epoch": 11.54521625163827,
+ "grad_norm": 0.21586747467517853,
+ "learning_rate": 0.0006,
+ "loss": 4.235255718231201,
+ "step": 831
+ },
+ {
+ "epoch": 11.55919615552643,
+ "grad_norm": 0.2520856559276581,
+ "learning_rate": 0.0006,
+ "loss": 4.283442497253418,
+ "step": 832
+ },
+ {
+ "epoch": 11.57317605941459,
+ "grad_norm": 0.2825471758842468,
+ "learning_rate": 0.0006,
+ "loss": 4.234672546386719,
+ "step": 833
+ },
+ {
+ "epoch": 11.587155963302752,
+ "grad_norm": 0.27437824010849,
+ "learning_rate": 0.0006,
+ "loss": 4.246068000793457,
+ "step": 834
+ },
+ {
+ "epoch": 11.601135867190912,
+ "grad_norm": 0.2596757411956787,
+ "learning_rate": 0.0006,
+ "loss": 4.278448104858398,
+ "step": 835
+ },
+ {
+ "epoch": 11.615115771079074,
+ "grad_norm": 0.25663474202156067,
+ "learning_rate": 0.0006,
+ "loss": 4.308779716491699,
+ "step": 836
+ },
+ {
+ "epoch": 11.629095674967235,
+ "grad_norm": 0.2546203136444092,
+ "learning_rate": 0.0006,
+ "loss": 4.261247634887695,
+ "step": 837
+ },
+ {
+ "epoch": 11.643075578855395,
+ "grad_norm": 0.24722838401794434,
+ "learning_rate": 0.0006,
+ "loss": 4.275888442993164,
+ "step": 838
+ },
+ {
+ "epoch": 11.657055482743557,
+ "grad_norm": 0.3022806644439697,
+ "learning_rate": 0.0006,
+ "loss": 4.2572407722473145,
+ "step": 839
+ },
+ {
+ "epoch": 11.671035386631717,
+ "grad_norm": 0.31170839071273804,
+ "learning_rate": 0.0006,
+ "loss": 4.26992654800415,
+ "step": 840
+ },
+ {
+ "epoch": 11.685015290519878,
+ "grad_norm": 0.31362825632095337,
+ "learning_rate": 0.0006,
+ "loss": 4.2354655265808105,
+ "step": 841
+ },
+ {
+ "epoch": 11.698995194408038,
+ "grad_norm": 0.28741633892059326,
+ "learning_rate": 0.0006,
+ "loss": 4.263496398925781,
+ "step": 842
+ },
+ {
+ "epoch": 11.7129750982962,
+ "grad_norm": 0.2492494285106659,
+ "learning_rate": 0.0006,
+ "loss": 4.26463508605957,
+ "step": 843
+ },
+ {
+ "epoch": 11.72695500218436,
+ "grad_norm": 0.24324660003185272,
+ "learning_rate": 0.0006,
+ "loss": 4.245428085327148,
+ "step": 844
+ },
+ {
+ "epoch": 11.740934906072521,
+ "grad_norm": 0.23591114580631256,
+ "learning_rate": 0.0006,
+ "loss": 4.249845504760742,
+ "step": 845
+ },
+ {
+ "epoch": 11.754914809960681,
+ "grad_norm": 0.2202281504869461,
+ "learning_rate": 0.0006,
+ "loss": 4.245006084442139,
+ "step": 846
+ },
+ {
+ "epoch": 11.768894713848843,
+ "grad_norm": 0.22117942571640015,
+ "learning_rate": 0.0006,
+ "loss": 4.27812385559082,
+ "step": 847
+ },
+ {
+ "epoch": 11.782874617737003,
+ "grad_norm": 0.26361414790153503,
+ "learning_rate": 0.0006,
+ "loss": 4.250475883483887,
+ "step": 848
+ },
+ {
+ "epoch": 11.796854521625164,
+ "grad_norm": 0.2820321321487427,
+ "learning_rate": 0.0006,
+ "loss": 4.265835762023926,
+ "step": 849
+ },
+ {
+ "epoch": 11.810834425513324,
+ "grad_norm": 0.2078961282968521,
+ "learning_rate": 0.0006,
+ "loss": 4.251298904418945,
+ "step": 850
+ },
+ {
+ "epoch": 11.824814329401486,
+ "grad_norm": 0.21548646688461304,
+ "learning_rate": 0.0006,
+ "loss": 4.288539886474609,
+ "step": 851
+ },
+ {
+ "epoch": 11.838794233289645,
+ "grad_norm": 0.22719401121139526,
+ "learning_rate": 0.0006,
+ "loss": 4.252035140991211,
+ "step": 852
+ },
+ {
+ "epoch": 11.852774137177807,
+ "grad_norm": 0.21628320217132568,
+ "learning_rate": 0.0006,
+ "loss": 4.268622398376465,
+ "step": 853
+ },
+ {
+ "epoch": 11.866754041065967,
+ "grad_norm": 0.20855145156383514,
+ "learning_rate": 0.0006,
+ "loss": 4.253366470336914,
+ "step": 854
+ },
+ {
+ "epoch": 11.880733944954128,
+ "grad_norm": 0.2091914266347885,
+ "learning_rate": 0.0006,
+ "loss": 4.237805366516113,
+ "step": 855
+ },
+ {
+ "epoch": 11.89471384884229,
+ "grad_norm": 0.2000127136707306,
+ "learning_rate": 0.0006,
+ "loss": 4.268559455871582,
+ "step": 856
+ },
+ {
+ "epoch": 11.90869375273045,
+ "grad_norm": 0.21080894768238068,
+ "learning_rate": 0.0006,
+ "loss": 4.208702087402344,
+ "step": 857
+ },
+ {
+ "epoch": 11.922673656618612,
+ "grad_norm": 0.22125796973705292,
+ "learning_rate": 0.0006,
+ "loss": 4.250210762023926,
+ "step": 858
+ },
+ {
+ "epoch": 11.936653560506771,
+ "grad_norm": 0.25905469059944153,
+ "learning_rate": 0.0006,
+ "loss": 4.2263593673706055,
+ "step": 859
+ },
+ {
+ "epoch": 11.950633464394933,
+ "grad_norm": 0.29970306158065796,
+ "learning_rate": 0.0006,
+ "loss": 4.250848770141602,
+ "step": 860
+ },
+ {
+ "epoch": 11.964613368283093,
+ "grad_norm": 0.28155168890953064,
+ "learning_rate": 0.0006,
+ "loss": 4.272709369659424,
+ "step": 861
+ },
+ {
+ "epoch": 11.978593272171254,
+ "grad_norm": 0.23396113514900208,
+ "learning_rate": 0.0006,
+ "loss": 4.2674970626831055,
+ "step": 862
+ },
+ {
+ "epoch": 11.992573176059414,
+ "grad_norm": 0.23619577288627625,
+ "learning_rate": 0.0006,
+ "loss": 4.240267753601074,
+ "step": 863
+ },
+ {
+ "epoch": 12.0,
+ "grad_norm": 0.2779577076435089,
+ "learning_rate": 0.0006,
+ "loss": 4.267625331878662,
+ "step": 864
+ },
+ {
+ "epoch": 12.0,
+ "eval_loss": 4.437657356262207,
+ "eval_runtime": 44.4959,
+ "eval_samples_per_second": 54.881,
+ "eval_steps_per_second": 3.439,
+ "step": 864
+ },
+ {
+ "epoch": 12.013979903888162,
+ "grad_norm": 0.2948288321495056,
+ "learning_rate": 0.0006,
+ "loss": 4.232182502746582,
+ "step": 865
+ },
+ {
+ "epoch": 12.027959807776321,
+ "grad_norm": 0.3715663254261017,
+ "learning_rate": 0.0006,
+ "loss": 4.233771324157715,
+ "step": 866
+ },
+ {
+ "epoch": 12.041939711664483,
+ "grad_norm": 0.38358673453330994,
+ "learning_rate": 0.0006,
+ "loss": 4.208967685699463,
+ "step": 867
+ },
+ {
+ "epoch": 12.055919615552643,
+ "grad_norm": 0.3314538896083832,
+ "learning_rate": 0.0006,
+ "loss": 4.230685234069824,
+ "step": 868
+ },
+ {
+ "epoch": 12.069899519440805,
+ "grad_norm": 0.34171539545059204,
+ "learning_rate": 0.0006,
+ "loss": 4.231358528137207,
+ "step": 869
+ },
+ {
+ "epoch": 12.083879423328964,
+ "grad_norm": 0.3253359794616699,
+ "learning_rate": 0.0006,
+ "loss": 4.276405334472656,
+ "step": 870
+ },
+ {
+ "epoch": 12.097859327217126,
+ "grad_norm": 0.29008302092552185,
+ "learning_rate": 0.0006,
+ "loss": 4.232935905456543,
+ "step": 871
+ },
+ {
+ "epoch": 12.111839231105286,
+ "grad_norm": 0.28490355610847473,
+ "learning_rate": 0.0006,
+ "loss": 4.238036632537842,
+ "step": 872
+ },
+ {
+ "epoch": 12.125819134993447,
+ "grad_norm": 0.28446322679519653,
+ "learning_rate": 0.0006,
+ "loss": 4.210229873657227,
+ "step": 873
+ },
+ {
+ "epoch": 12.139799038881607,
+ "grad_norm": 0.29664531350135803,
+ "learning_rate": 0.0006,
+ "loss": 4.221309185028076,
+ "step": 874
+ },
+ {
+ "epoch": 12.153778942769769,
+ "grad_norm": 0.3083505928516388,
+ "learning_rate": 0.0006,
+ "loss": 4.221837997436523,
+ "step": 875
+ },
+ {
+ "epoch": 12.167758846657929,
+ "grad_norm": 0.3282921314239502,
+ "learning_rate": 0.0006,
+ "loss": 4.236713409423828,
+ "step": 876
+ },
+ {
+ "epoch": 12.18173875054609,
+ "grad_norm": 0.3603622615337372,
+ "learning_rate": 0.0006,
+ "loss": 4.245080947875977,
+ "step": 877
+ },
+ {
+ "epoch": 12.19571865443425,
+ "grad_norm": 0.38070905208587646,
+ "learning_rate": 0.0006,
+ "loss": 4.240756988525391,
+ "step": 878
+ },
+ {
+ "epoch": 12.209698558322412,
+ "grad_norm": 0.34479081630706787,
+ "learning_rate": 0.0006,
+ "loss": 4.200998306274414,
+ "step": 879
+ },
+ {
+ "epoch": 12.223678462210572,
+ "grad_norm": 0.3006879389286041,
+ "learning_rate": 0.0006,
+ "loss": 4.23531436920166,
+ "step": 880
+ },
+ {
+ "epoch": 12.237658366098733,
+ "grad_norm": 0.36835649609565735,
+ "learning_rate": 0.0006,
+ "loss": 4.229718208312988,
+ "step": 881
+ },
+ {
+ "epoch": 12.251638269986893,
+ "grad_norm": 0.4386984407901764,
+ "learning_rate": 0.0006,
+ "loss": 4.241188049316406,
+ "step": 882
+ },
+ {
+ "epoch": 12.265618173875055,
+ "grad_norm": 0.4442787170410156,
+ "learning_rate": 0.0006,
+ "loss": 4.239102840423584,
+ "step": 883
+ },
+ {
+ "epoch": 12.279598077763215,
+ "grad_norm": 0.324411541223526,
+ "learning_rate": 0.0006,
+ "loss": 4.198982238769531,
+ "step": 884
+ },
+ {
+ "epoch": 12.293577981651376,
+ "grad_norm": 0.2824151813983917,
+ "learning_rate": 0.0006,
+ "loss": 4.248816967010498,
+ "step": 885
+ },
+ {
+ "epoch": 12.307557885539538,
+ "grad_norm": 0.31407129764556885,
+ "learning_rate": 0.0006,
+ "loss": 4.2371320724487305,
+ "step": 886
+ },
+ {
+ "epoch": 12.321537789427698,
+ "grad_norm": 0.32920050621032715,
+ "learning_rate": 0.0006,
+ "loss": 4.210432052612305,
+ "step": 887
+ },
+ {
+ "epoch": 12.33551769331586,
+ "grad_norm": 0.315231055021286,
+ "learning_rate": 0.0006,
+ "loss": 4.219416618347168,
+ "step": 888
+ },
+ {
+ "epoch": 12.349497597204019,
+ "grad_norm": 0.30932050943374634,
+ "learning_rate": 0.0006,
+ "loss": 4.225022315979004,
+ "step": 889
+ },
+ {
+ "epoch": 12.36347750109218,
+ "grad_norm": 0.30242064595222473,
+ "learning_rate": 0.0006,
+ "loss": 4.2738518714904785,
+ "step": 890
+ },
+ {
+ "epoch": 12.37745740498034,
+ "grad_norm": 0.2926250994205475,
+ "learning_rate": 0.0006,
+ "loss": 4.231094837188721,
+ "step": 891
+ },
+ {
+ "epoch": 12.391437308868502,
+ "grad_norm": 0.2541215717792511,
+ "learning_rate": 0.0006,
+ "loss": 4.211821556091309,
+ "step": 892
+ },
+ {
+ "epoch": 12.405417212756662,
+ "grad_norm": 0.23693418502807617,
+ "learning_rate": 0.0006,
+ "loss": 4.208099365234375,
+ "step": 893
+ },
+ {
+ "epoch": 12.419397116644824,
+ "grad_norm": 0.22063226997852325,
+ "learning_rate": 0.0006,
+ "loss": 4.211234092712402,
+ "step": 894
+ },
+ {
+ "epoch": 12.433377020532983,
+ "grad_norm": 0.21536271274089813,
+ "learning_rate": 0.0006,
+ "loss": 4.199228286743164,
+ "step": 895
+ },
+ {
+ "epoch": 12.447356924421145,
+ "grad_norm": 0.243179589509964,
+ "learning_rate": 0.0006,
+ "loss": 4.204344749450684,
+ "step": 896
+ },
+ {
+ "epoch": 12.461336828309305,
+ "grad_norm": 0.2299746423959732,
+ "learning_rate": 0.0006,
+ "loss": 4.1565752029418945,
+ "step": 897
+ },
+ {
+ "epoch": 12.475316732197467,
+ "grad_norm": 0.2286847084760666,
+ "learning_rate": 0.0006,
+ "loss": 4.242953777313232,
+ "step": 898
+ },
+ {
+ "epoch": 12.489296636085626,
+ "grad_norm": 0.19463586807250977,
+ "learning_rate": 0.0006,
+ "loss": 4.214809417724609,
+ "step": 899
+ },
+ {
+ "epoch": 12.503276539973788,
+ "grad_norm": 0.1978398710489273,
+ "learning_rate": 0.0006,
+ "loss": 4.159815311431885,
+ "step": 900
+ },
+ {
+ "epoch": 12.517256443861948,
+ "grad_norm": 0.23177850246429443,
+ "learning_rate": 0.0006,
+ "loss": 4.2069902420043945,
+ "step": 901
+ },
+ {
+ "epoch": 12.53123634775011,
+ "grad_norm": 0.2408912032842636,
+ "learning_rate": 0.0006,
+ "loss": 4.206778526306152,
+ "step": 902
+ },
+ {
+ "epoch": 12.54521625163827,
+ "grad_norm": 0.21839919686317444,
+ "learning_rate": 0.0006,
+ "loss": 4.197076320648193,
+ "step": 903
+ },
+ {
+ "epoch": 12.55919615552643,
+ "grad_norm": 0.2053343504667282,
+ "learning_rate": 0.0006,
+ "loss": 4.21247673034668,
+ "step": 904
+ },
+ {
+ "epoch": 12.57317605941459,
+ "grad_norm": 0.19943439960479736,
+ "learning_rate": 0.0006,
+ "loss": 4.176966667175293,
+ "step": 905
+ },
+ {
+ "epoch": 12.587155963302752,
+ "grad_norm": 0.2012074887752533,
+ "learning_rate": 0.0006,
+ "loss": 4.210303783416748,
+ "step": 906
+ },
+ {
+ "epoch": 12.601135867190912,
+ "grad_norm": 0.22240376472473145,
+ "learning_rate": 0.0006,
+ "loss": 4.200625896453857,
+ "step": 907
+ },
+ {
+ "epoch": 12.615115771079074,
+ "grad_norm": 0.21729710698127747,
+ "learning_rate": 0.0006,
+ "loss": 4.2001953125,
+ "step": 908
+ },
+ {
+ "epoch": 12.629095674967235,
+ "grad_norm": 0.22470413148403168,
+ "learning_rate": 0.0006,
+ "loss": 4.197505950927734,
+ "step": 909
+ },
+ {
+ "epoch": 12.643075578855395,
+ "grad_norm": 0.23776157200336456,
+ "learning_rate": 0.0006,
+ "loss": 4.235603332519531,
+ "step": 910
+ },
+ {
+ "epoch": 12.657055482743557,
+ "grad_norm": 0.20616604387760162,
+ "learning_rate": 0.0006,
+ "loss": 4.193584442138672,
+ "step": 911
+ },
+ {
+ "epoch": 12.671035386631717,
+ "grad_norm": 0.1913922131061554,
+ "learning_rate": 0.0006,
+ "loss": 4.209191799163818,
+ "step": 912
+ },
+ {
+ "epoch": 12.685015290519878,
+ "grad_norm": 0.19427193701267242,
+ "learning_rate": 0.0006,
+ "loss": 4.219709396362305,
+ "step": 913
+ },
+ {
+ "epoch": 12.698995194408038,
+ "grad_norm": 0.20976558327674866,
+ "learning_rate": 0.0006,
+ "loss": 4.210859298706055,
+ "step": 914
+ },
+ {
+ "epoch": 12.7129750982962,
+ "grad_norm": 0.21571609377861023,
+ "learning_rate": 0.0006,
+ "loss": 4.189394950866699,
+ "step": 915
+ },
+ {
+ "epoch": 12.72695500218436,
+ "grad_norm": 0.2152620255947113,
+ "learning_rate": 0.0006,
+ "loss": 4.223589897155762,
+ "step": 916
+ },
+ {
+ "epoch": 12.740934906072521,
+ "grad_norm": 0.21867749094963074,
+ "learning_rate": 0.0006,
+ "loss": 4.198590278625488,
+ "step": 917
+ },
+ {
+ "epoch": 12.754914809960681,
+ "grad_norm": 0.22300855815410614,
+ "learning_rate": 0.0006,
+ "loss": 4.188891410827637,
+ "step": 918
+ },
+ {
+ "epoch": 12.768894713848843,
+ "grad_norm": 0.22197802364826202,
+ "learning_rate": 0.0006,
+ "loss": 4.190221309661865,
+ "step": 919
+ },
+ {
+ "epoch": 12.782874617737003,
+ "grad_norm": 0.20003341138362885,
+ "learning_rate": 0.0006,
+ "loss": 4.215453147888184,
+ "step": 920
+ },
+ {
+ "epoch": 12.796854521625164,
+ "grad_norm": 0.19887958467006683,
+ "learning_rate": 0.0006,
+ "loss": 4.18174934387207,
+ "step": 921
+ },
+ {
+ "epoch": 12.810834425513324,
+ "grad_norm": 0.20945803821086884,
+ "learning_rate": 0.0006,
+ "loss": 4.234947204589844,
+ "step": 922
+ },
+ {
+ "epoch": 12.824814329401486,
+ "grad_norm": 0.2253490388393402,
+ "learning_rate": 0.0006,
+ "loss": 4.2177228927612305,
+ "step": 923
+ },
+ {
+ "epoch": 12.838794233289645,
+ "grad_norm": 0.247610405087471,
+ "learning_rate": 0.0006,
+ "loss": 4.2013139724731445,
+ "step": 924
+ },
+ {
+ "epoch": 12.852774137177807,
+ "grad_norm": 0.2792088985443115,
+ "learning_rate": 0.0006,
+ "loss": 4.204774379730225,
+ "step": 925
+ },
+ {
+ "epoch": 12.866754041065967,
+ "grad_norm": 0.2839066982269287,
+ "learning_rate": 0.0006,
+ "loss": 4.186254978179932,
+ "step": 926
+ },
+ {
+ "epoch": 12.880733944954128,
+ "grad_norm": 0.2793181836605072,
+ "learning_rate": 0.0006,
+ "loss": 4.172411918640137,
+ "step": 927
+ },
+ {
+ "epoch": 12.89471384884229,
+ "grad_norm": 0.29506033658981323,
+ "learning_rate": 0.0006,
+ "loss": 4.202878475189209,
+ "step": 928
+ },
+ {
+ "epoch": 12.90869375273045,
+ "grad_norm": 0.2799845039844513,
+ "learning_rate": 0.0006,
+ "loss": 4.1563310623168945,
+ "step": 929
+ },
+ {
+ "epoch": 12.922673656618612,
+ "grad_norm": 0.23972125351428986,
+ "learning_rate": 0.0006,
+ "loss": 4.224601745605469,
+ "step": 930
+ },
+ {
+ "epoch": 12.936653560506771,
+ "grad_norm": 0.21558353304862976,
+ "learning_rate": 0.0006,
+ "loss": 4.167957305908203,
+ "step": 931
+ },
+ {
+ "epoch": 12.950633464394933,
+ "grad_norm": 0.21800188720226288,
+ "learning_rate": 0.0006,
+ "loss": 4.1746039390563965,
+ "step": 932
+ },
+ {
+ "epoch": 12.964613368283093,
+ "grad_norm": 0.2086547315120697,
+ "learning_rate": 0.0006,
+ "loss": 4.188137054443359,
+ "step": 933
+ },
+ {
+ "epoch": 12.978593272171254,
+ "grad_norm": 0.2174186110496521,
+ "learning_rate": 0.0006,
+ "loss": 4.184014320373535,
+ "step": 934
+ },
+ {
+ "epoch": 12.992573176059414,
+ "grad_norm": 0.22755110263824463,
+ "learning_rate": 0.0006,
+ "loss": 4.180912017822266,
+ "step": 935
+ },
+ {
+ "epoch": 13.0,
+ "grad_norm": 0.2735324203968048,
+ "learning_rate": 0.0006,
+ "loss": 4.201578617095947,
+ "step": 936
+ },
+ {
+ "epoch": 13.0,
+ "eval_loss": 4.396903038024902,
+ "eval_runtime": 44.5664,
+ "eval_samples_per_second": 54.795,
+ "eval_steps_per_second": 3.433,
+ "step": 936
+ },
+ {
+ "epoch": 13.013979903888162,
+ "grad_norm": 0.27577832341194153,
+ "learning_rate": 0.0006,
+ "loss": 4.149985313415527,
+ "step": 937
+ },
+ {
+ "epoch": 13.027959807776321,
+ "grad_norm": 0.25817009806632996,
+ "learning_rate": 0.0006,
+ "loss": 4.1526103019714355,
+ "step": 938
+ },
+ {
+ "epoch": 13.041939711664483,
+ "grad_norm": 0.24564379453659058,
+ "learning_rate": 0.0006,
+ "loss": 4.1661152839660645,
+ "step": 939
+ },
+ {
+ "epoch": 13.055919615552643,
+ "grad_norm": 0.2465466856956482,
+ "learning_rate": 0.0006,
+ "loss": 4.152953624725342,
+ "step": 940
+ },
+ {
+ "epoch": 13.069899519440805,
+ "grad_norm": 0.22702018916606903,
+ "learning_rate": 0.0006,
+ "loss": 4.145125389099121,
+ "step": 941
+ },
+ {
+ "epoch": 13.083879423328964,
+ "grad_norm": 0.24350613355636597,
+ "learning_rate": 0.0006,
+ "loss": 4.163095474243164,
+ "step": 942
+ },
+ {
+ "epoch": 13.097859327217126,
+ "grad_norm": 0.2504431903362274,
+ "learning_rate": 0.0006,
+ "loss": 4.136016845703125,
+ "step": 943
+ },
+ {
+ "epoch": 13.111839231105286,
+ "grad_norm": 0.24968865513801575,
+ "learning_rate": 0.0006,
+ "loss": 4.163487911224365,
+ "step": 944
+ },
+ {
+ "epoch": 13.125819134993447,
+ "grad_norm": 0.27164196968078613,
+ "learning_rate": 0.0006,
+ "loss": 4.1194353103637695,
+ "step": 945
+ },
+ {
+ "epoch": 13.139799038881607,
+ "grad_norm": 0.28127020597457886,
+ "learning_rate": 0.0006,
+ "loss": 4.184807300567627,
+ "step": 946
+ },
+ {
+ "epoch": 13.153778942769769,
+ "grad_norm": 0.24574966728687286,
+ "learning_rate": 0.0006,
+ "loss": 4.154998779296875,
+ "step": 947
+ },
+ {
+ "epoch": 13.167758846657929,
+ "grad_norm": 0.22310060262680054,
+ "learning_rate": 0.0006,
+ "loss": 4.182928085327148,
+ "step": 948
+ },
+ {
+ "epoch": 13.18173875054609,
+ "grad_norm": 0.2539508640766144,
+ "learning_rate": 0.0006,
+ "loss": 4.176900386810303,
+ "step": 949
+ },
+ {
+ "epoch": 13.19571865443425,
+ "grad_norm": 0.30925488471984863,
+ "learning_rate": 0.0006,
+ "loss": 4.1760711669921875,
+ "step": 950
+ },
+ {
+ "epoch": 13.209698558322412,
+ "grad_norm": 0.3842967450618744,
+ "learning_rate": 0.0006,
+ "loss": 4.1830949783325195,
+ "step": 951
+ },
+ {
+ "epoch": 13.223678462210572,
+ "grad_norm": 0.35950011014938354,
+ "learning_rate": 0.0006,
+ "loss": 4.131983757019043,
+ "step": 952
+ },
+ {
+ "epoch": 13.237658366098733,
+ "grad_norm": 0.29913705587387085,
+ "learning_rate": 0.0006,
+ "loss": 4.166984558105469,
+ "step": 953
+ },
+ {
+ "epoch": 13.251638269986893,
+ "grad_norm": 0.32008400559425354,
+ "learning_rate": 0.0006,
+ "loss": 4.156482696533203,
+ "step": 954
+ },
+ {
+ "epoch": 13.265618173875055,
+ "grad_norm": 0.3186642825603485,
+ "learning_rate": 0.0006,
+ "loss": 4.1661057472229,
+ "step": 955
+ },
+ {
+ "epoch": 13.279598077763215,
+ "grad_norm": 0.3194582462310791,
+ "learning_rate": 0.0006,
+ "loss": 4.169328689575195,
+ "step": 956
+ },
+ {
+ "epoch": 13.293577981651376,
+ "grad_norm": 0.3133867084980011,
+ "learning_rate": 0.0006,
+ "loss": 4.165459632873535,
+ "step": 957
+ },
+ {
+ "epoch": 13.307557885539538,
+ "grad_norm": 0.3232237696647644,
+ "learning_rate": 0.0006,
+ "loss": 4.2107439041137695,
+ "step": 958
+ },
+ {
+ "epoch": 13.321537789427698,
+ "grad_norm": 0.3133196234703064,
+ "learning_rate": 0.0006,
+ "loss": 4.184182167053223,
+ "step": 959
+ },
+ {
+ "epoch": 13.33551769331586,
+ "grad_norm": 0.296129435300827,
+ "learning_rate": 0.0006,
+ "loss": 4.168312072753906,
+ "step": 960
+ },
+ {
+ "epoch": 13.349497597204019,
+ "grad_norm": 0.2685348391532898,
+ "learning_rate": 0.0006,
+ "loss": 4.159984588623047,
+ "step": 961
+ },
+ {
+ "epoch": 13.36347750109218,
+ "grad_norm": 0.2644975781440735,
+ "learning_rate": 0.0006,
+ "loss": 4.164909362792969,
+ "step": 962
+ },
+ {
+ "epoch": 13.37745740498034,
+ "grad_norm": 0.2712913155555725,
+ "learning_rate": 0.0006,
+ "loss": 4.158056259155273,
+ "step": 963
+ },
+ {
+ "epoch": 13.391437308868502,
+ "grad_norm": 0.2687259316444397,
+ "learning_rate": 0.0006,
+ "loss": 4.182924270629883,
+ "step": 964
+ },
+ {
+ "epoch": 13.405417212756662,
+ "grad_norm": 0.25640392303466797,
+ "learning_rate": 0.0006,
+ "loss": 4.153351783752441,
+ "step": 965
+ },
+ {
+ "epoch": 13.419397116644824,
+ "grad_norm": 0.2646305561065674,
+ "learning_rate": 0.0006,
+ "loss": 4.18464469909668,
+ "step": 966
+ },
+ {
+ "epoch": 13.433377020532983,
+ "grad_norm": 0.24206851422786713,
+ "learning_rate": 0.0006,
+ "loss": 4.127564430236816,
+ "step": 967
+ },
+ {
+ "epoch": 13.447356924421145,
+ "grad_norm": 0.23800471425056458,
+ "learning_rate": 0.0006,
+ "loss": 4.163488388061523,
+ "step": 968
+ },
+ {
+ "epoch": 13.461336828309305,
+ "grad_norm": 0.22957314550876617,
+ "learning_rate": 0.0006,
+ "loss": 4.178133964538574,
+ "step": 969
+ },
+ {
+ "epoch": 13.475316732197467,
+ "grad_norm": 0.22867488861083984,
+ "learning_rate": 0.0006,
+ "loss": 4.159056186676025,
+ "step": 970
+ },
+ {
+ "epoch": 13.489296636085626,
+ "grad_norm": 0.21737419068813324,
+ "learning_rate": 0.0006,
+ "loss": 4.138628005981445,
+ "step": 971
+ },
+ {
+ "epoch": 13.503276539973788,
+ "grad_norm": 0.2319175899028778,
+ "learning_rate": 0.0006,
+ "loss": 4.14644718170166,
+ "step": 972
+ },
+ {
+ "epoch": 13.517256443861948,
+ "grad_norm": 0.2572193443775177,
+ "learning_rate": 0.0006,
+ "loss": 4.175213813781738,
+ "step": 973
+ },
+ {
+ "epoch": 13.53123634775011,
+ "grad_norm": 0.23483099043369293,
+ "learning_rate": 0.0006,
+ "loss": 4.133171558380127,
+ "step": 974
+ },
+ {
+ "epoch": 13.54521625163827,
+ "grad_norm": 0.2071552872657776,
+ "learning_rate": 0.0006,
+ "loss": 4.13730525970459,
+ "step": 975
+ },
+ {
+ "epoch": 13.55919615552643,
+ "grad_norm": 0.23074553906917572,
+ "learning_rate": 0.0006,
+ "loss": 4.175051689147949,
+ "step": 976
+ },
+ {
+ "epoch": 13.57317605941459,
+ "grad_norm": 0.2480078786611557,
+ "learning_rate": 0.0006,
+ "loss": 4.167630672454834,
+ "step": 977
+ },
+ {
+ "epoch": 13.587155963302752,
+ "grad_norm": 0.23444348573684692,
+ "learning_rate": 0.0006,
+ "loss": 4.141780853271484,
+ "step": 978
+ },
+ {
+ "epoch": 13.601135867190912,
+ "grad_norm": 0.2227829396724701,
+ "learning_rate": 0.0006,
+ "loss": 4.157566547393799,
+ "step": 979
+ },
+ {
+ "epoch": 13.615115771079074,
+ "grad_norm": 0.21478354930877686,
+ "learning_rate": 0.0006,
+ "loss": 4.131053447723389,
+ "step": 980
+ },
+ {
+ "epoch": 13.629095674967235,
+ "grad_norm": 0.1978664994239807,
+ "learning_rate": 0.0006,
+ "loss": 4.123660564422607,
+ "step": 981
+ },
+ {
+ "epoch": 13.643075578855395,
+ "grad_norm": 0.19980201125144958,
+ "learning_rate": 0.0006,
+ "loss": 4.174160480499268,
+ "step": 982
+ },
+ {
+ "epoch": 13.657055482743557,
+ "grad_norm": 0.19815555214881897,
+ "learning_rate": 0.0006,
+ "loss": 4.181703090667725,
+ "step": 983
+ },
+ {
+ "epoch": 13.671035386631717,
+ "grad_norm": 0.19524012506008148,
+ "learning_rate": 0.0006,
+ "loss": 4.163766860961914,
+ "step": 984
+ },
+ {
+ "epoch": 13.685015290519878,
+ "grad_norm": 0.2286096215248108,
+ "learning_rate": 0.0006,
+ "loss": 4.172213554382324,
+ "step": 985
+ },
+ {
+ "epoch": 13.698995194408038,
+ "grad_norm": 0.2210782766342163,
+ "learning_rate": 0.0006,
+ "loss": 4.187033653259277,
+ "step": 986
+ },
+ {
+ "epoch": 13.7129750982962,
+ "grad_norm": 0.21874216198921204,
+ "learning_rate": 0.0006,
+ "loss": 4.125125885009766,
+ "step": 987
+ },
+ {
+ "epoch": 13.72695500218436,
+ "grad_norm": 0.22848057746887207,
+ "learning_rate": 0.0006,
+ "loss": 4.153496742248535,
+ "step": 988
+ },
+ {
+ "epoch": 13.740934906072521,
+ "grad_norm": 0.2250450700521469,
+ "learning_rate": 0.0006,
+ "loss": 4.149165630340576,
+ "step": 989
+ },
+ {
+ "epoch": 13.754914809960681,
+ "grad_norm": 0.21443772315979004,
+ "learning_rate": 0.0006,
+ "loss": 4.1528825759887695,
+ "step": 990
+ },
+ {
+ "epoch": 13.768894713848843,
+ "grad_norm": 0.21927927434444427,
+ "learning_rate": 0.0006,
+ "loss": 4.146831512451172,
+ "step": 991
+ },
+ {
+ "epoch": 13.782874617737003,
+ "grad_norm": 0.2413124144077301,
+ "learning_rate": 0.0006,
+ "loss": 4.136909008026123,
+ "step": 992
+ },
+ {
+ "epoch": 13.796854521625164,
+ "grad_norm": 0.2603479325771332,
+ "learning_rate": 0.0006,
+ "loss": 4.12525749206543,
+ "step": 993
+ },
+ {
+ "epoch": 13.810834425513324,
+ "grad_norm": 0.26246970891952515,
+ "learning_rate": 0.0006,
+ "loss": 4.114049434661865,
+ "step": 994
+ },
+ {
+ "epoch": 13.824814329401486,
+ "grad_norm": 0.27031877636909485,
+ "learning_rate": 0.0006,
+ "loss": 4.1646552085876465,
+ "step": 995
+ },
+ {
+ "epoch": 13.838794233289645,
+ "grad_norm": 0.2499857395887375,
+ "learning_rate": 0.0006,
+ "loss": 4.139284133911133,
+ "step": 996
+ },
+ {
+ "epoch": 13.852774137177807,
+ "grad_norm": 0.22026537358760834,
+ "learning_rate": 0.0006,
+ "loss": 4.142191410064697,
+ "step": 997
+ },
+ {
+ "epoch": 13.866754041065967,
+ "grad_norm": 0.23738551139831543,
+ "learning_rate": 0.0006,
+ "loss": 4.1422882080078125,
+ "step": 998
+ },
+ {
+ "epoch": 13.880733944954128,
+ "grad_norm": 0.2416357398033142,
+ "learning_rate": 0.0006,
+ "loss": 4.14063835144043,
+ "step": 999
+ },
+ {
+ "epoch": 13.89471384884229,
+ "grad_norm": 0.33822184801101685,
+ "learning_rate": 0.0006,
+ "loss": 4.12839412689209,
+ "step": 1000
+ },
+ {
+ "epoch": 13.90869375273045,
+ "grad_norm": 0.3409678339958191,
+ "learning_rate": 0.0006,
+ "loss": 4.145351886749268,
+ "step": 1001
+ },
+ {
+ "epoch": 13.922673656618612,
+ "grad_norm": 0.2467597872018814,
+ "learning_rate": 0.0006,
+ "loss": 4.155339241027832,
+ "step": 1002
+ },
+ {
+ "epoch": 13.936653560506771,
+ "grad_norm": 0.2314649075269699,
+ "learning_rate": 0.0006,
+ "loss": 4.130176067352295,
+ "step": 1003
+ },
+ {
+ "epoch": 13.950633464394933,
+ "grad_norm": 0.23701290786266327,
+ "learning_rate": 0.0006,
+ "loss": 4.19205379486084,
+ "step": 1004
+ },
+ {
+ "epoch": 13.964613368283093,
+ "grad_norm": 0.2466491460800171,
+ "learning_rate": 0.0006,
+ "loss": 4.118908882141113,
+ "step": 1005
+ },
+ {
+ "epoch": 13.978593272171254,
+ "grad_norm": 0.23746836185455322,
+ "learning_rate": 0.0006,
+ "loss": 4.16111946105957,
+ "step": 1006
+ },
+ {
+ "epoch": 13.992573176059414,
+ "grad_norm": 0.24497751891613007,
+ "learning_rate": 0.0006,
+ "loss": 4.148624420166016,
+ "step": 1007
+ },
+ {
+ "epoch": 14.0,
+ "grad_norm": 0.25735899806022644,
+ "learning_rate": 0.0006,
+ "loss": 4.12002420425415,
+ "step": 1008
+ },
+ {
+ "epoch": 14.0,
+ "eval_loss": 4.335351467132568,
+ "eval_runtime": 44.0523,
+ "eval_samples_per_second": 55.434,
+ "eval_steps_per_second": 3.473,
+ "step": 1008
+ },
+ {
+ "epoch": 14.013979903888162,
+ "grad_norm": 0.24570082128047943,
+ "learning_rate": 0.0006,
+ "loss": 4.1036176681518555,
+ "step": 1009
+ },
+ {
+ "epoch": 14.027959807776321,
+ "grad_norm": 0.2525855302810669,
+ "learning_rate": 0.0006,
+ "loss": 4.142077445983887,
+ "step": 1010
+ },
+ {
+ "epoch": 14.041939711664483,
+ "grad_norm": 0.2701111435890198,
+ "learning_rate": 0.0006,
+ "loss": 4.096988677978516,
+ "step": 1011
+ },
+ {
+ "epoch": 14.055919615552643,
+ "grad_norm": 0.28173309564590454,
+ "learning_rate": 0.0006,
+ "loss": 4.148448944091797,
+ "step": 1012
+ },
+ {
+ "epoch": 14.069899519440805,
+ "grad_norm": 0.2651294469833374,
+ "learning_rate": 0.0006,
+ "loss": 4.121731281280518,
+ "step": 1013
+ },
+ {
+ "epoch": 14.083879423328964,
+ "grad_norm": 0.21160121262073517,
+ "learning_rate": 0.0006,
+ "loss": 4.108980178833008,
+ "step": 1014
+ },
+ {
+ "epoch": 14.097859327217126,
+ "grad_norm": 0.24786953628063202,
+ "learning_rate": 0.0006,
+ "loss": 4.133942604064941,
+ "step": 1015
+ },
+ {
+ "epoch": 14.111839231105286,
+ "grad_norm": 0.2722747027873993,
+ "learning_rate": 0.0006,
+ "loss": 4.115242958068848,
+ "step": 1016
+ },
+ {
+ "epoch": 14.125819134993447,
+ "grad_norm": 0.273360013961792,
+ "learning_rate": 0.0006,
+ "loss": 4.059296607971191,
+ "step": 1017
+ },
+ {
+ "epoch": 14.139799038881607,
+ "grad_norm": 0.2541784942150116,
+ "learning_rate": 0.0006,
+ "loss": 4.118365287780762,
+ "step": 1018
+ },
+ {
+ "epoch": 14.153778942769769,
+ "grad_norm": 0.23806381225585938,
+ "learning_rate": 0.0006,
+ "loss": 4.102812767028809,
+ "step": 1019
+ },
+ {
+ "epoch": 14.167758846657929,
+ "grad_norm": 0.2541005313396454,
+ "learning_rate": 0.0006,
+ "loss": 4.093264579772949,
+ "step": 1020
+ },
+ {
+ "epoch": 14.18173875054609,
+ "grad_norm": 0.2619539499282837,
+ "learning_rate": 0.0006,
+ "loss": 4.114917278289795,
+ "step": 1021
+ },
+ {
+ "epoch": 14.19571865443425,
+ "grad_norm": 0.2466963529586792,
+ "learning_rate": 0.0006,
+ "loss": 4.098258972167969,
+ "step": 1022
+ },
+ {
+ "epoch": 14.209698558322412,
+ "grad_norm": 0.24341611564159393,
+ "learning_rate": 0.0006,
+ "loss": 4.109346389770508,
+ "step": 1023
+ },
+ {
+ "epoch": 14.223678462210572,
+ "grad_norm": 0.23977765440940857,
+ "learning_rate": 0.0006,
+ "loss": 4.106716156005859,
+ "step": 1024
+ },
+ {
+ "epoch": 14.237658366098733,
+ "grad_norm": 0.253528356552124,
+ "learning_rate": 0.0006,
+ "loss": 4.102226257324219,
+ "step": 1025
+ },
+ {
+ "epoch": 14.251638269986893,
+ "grad_norm": 0.26954543590545654,
+ "learning_rate": 0.0006,
+ "loss": 4.107413291931152,
+ "step": 1026
+ },
+ {
+ "epoch": 14.265618173875055,
+ "grad_norm": 0.2610514760017395,
+ "learning_rate": 0.0006,
+ "loss": 4.110824108123779,
+ "step": 1027
+ },
+ {
+ "epoch": 14.279598077763215,
+ "grad_norm": 0.2579168677330017,
+ "learning_rate": 0.0006,
+ "loss": 4.082438945770264,
+ "step": 1028
+ },
+ {
+ "epoch": 14.293577981651376,
+ "grad_norm": 0.26916536688804626,
+ "learning_rate": 0.0006,
+ "loss": 4.075734615325928,
+ "step": 1029
+ },
+ {
+ "epoch": 14.307557885539538,
+ "grad_norm": 0.2998618185520172,
+ "learning_rate": 0.0006,
+ "loss": 4.088419437408447,
+ "step": 1030
+ },
+ {
+ "epoch": 14.321537789427698,
+ "grad_norm": 0.3162737190723419,
+ "learning_rate": 0.0006,
+ "loss": 4.125833034515381,
+ "step": 1031
+ },
+ {
+ "epoch": 14.33551769331586,
+ "grad_norm": 0.318601131439209,
+ "learning_rate": 0.0006,
+ "loss": 4.077424049377441,
+ "step": 1032
+ },
+ {
+ "epoch": 14.349497597204019,
+ "grad_norm": 0.32113415002822876,
+ "learning_rate": 0.0006,
+ "loss": 4.113360404968262,
+ "step": 1033
+ },
+ {
+ "epoch": 14.36347750109218,
+ "grad_norm": 0.3150886297225952,
+ "learning_rate": 0.0006,
+ "loss": 4.100013732910156,
+ "step": 1034
+ },
+ {
+ "epoch": 14.37745740498034,
+ "grad_norm": 0.29279956221580505,
+ "learning_rate": 0.0006,
+ "loss": 4.136394500732422,
+ "step": 1035
+ },
+ {
+ "epoch": 14.391437308868502,
+ "grad_norm": 0.28532543778419495,
+ "learning_rate": 0.0006,
+ "loss": 4.138948440551758,
+ "step": 1036
+ },
+ {
+ "epoch": 14.405417212756662,
+ "grad_norm": 0.2825978398323059,
+ "learning_rate": 0.0006,
+ "loss": 4.112217903137207,
+ "step": 1037
+ },
+ {
+ "epoch": 14.419397116644824,
+ "grad_norm": 0.2891198694705963,
+ "learning_rate": 0.0006,
+ "loss": 4.102682113647461,
+ "step": 1038
+ },
+ {
+ "epoch": 14.433377020532983,
+ "grad_norm": 0.2917391061782837,
+ "learning_rate": 0.0006,
+ "loss": 4.120752811431885,
+ "step": 1039
+ },
+ {
+ "epoch": 14.447356924421145,
+ "grad_norm": 0.2589806914329529,
+ "learning_rate": 0.0006,
+ "loss": 4.130519390106201,
+ "step": 1040
+ },
+ {
+ "epoch": 14.461336828309305,
+ "grad_norm": 0.2674788534641266,
+ "learning_rate": 0.0006,
+ "loss": 4.130382537841797,
+ "step": 1041
+ },
+ {
+ "epoch": 14.475316732197467,
+ "grad_norm": 0.2820362150669098,
+ "learning_rate": 0.0006,
+ "loss": 4.13947868347168,
+ "step": 1042
+ },
+ {
+ "epoch": 14.489296636085626,
+ "grad_norm": 0.2650109529495239,
+ "learning_rate": 0.0006,
+ "loss": 4.130346775054932,
+ "step": 1043
+ },
+ {
+ "epoch": 14.503276539973788,
+ "grad_norm": 0.29137638211250305,
+ "learning_rate": 0.0006,
+ "loss": 4.055751800537109,
+ "step": 1044
+ },
+ {
+ "epoch": 14.517256443861948,
+ "grad_norm": 0.3232433497905731,
+ "learning_rate": 0.0006,
+ "loss": 4.114810943603516,
+ "step": 1045
+ },
+ {
+ "epoch": 14.53123634775011,
+ "grad_norm": 0.2724473476409912,
+ "learning_rate": 0.0006,
+ "loss": 4.088351249694824,
+ "step": 1046
+ },
+ {
+ "epoch": 14.54521625163827,
+ "grad_norm": 0.23994430899620056,
+ "learning_rate": 0.0006,
+ "loss": 4.110936164855957,
+ "step": 1047
+ },
+ {
+ "epoch": 14.55919615552643,
+ "grad_norm": 0.2422720044851303,
+ "learning_rate": 0.0006,
+ "loss": 4.132844924926758,
+ "step": 1048
+ },
+ {
+ "epoch": 14.57317605941459,
+ "grad_norm": 0.21148815751075745,
+ "learning_rate": 0.0006,
+ "loss": 4.102499961853027,
+ "step": 1049
+ },
+ {
+ "epoch": 14.587155963302752,
+ "grad_norm": 0.22221639752388,
+ "learning_rate": 0.0006,
+ "loss": 4.126241683959961,
+ "step": 1050
+ },
+ {
+ "epoch": 14.601135867190912,
+ "grad_norm": 0.2538735866546631,
+ "learning_rate": 0.0006,
+ "loss": 4.116817951202393,
+ "step": 1051
+ },
+ {
+ "epoch": 14.615115771079074,
+ "grad_norm": 0.2555900514125824,
+ "learning_rate": 0.0006,
+ "loss": 4.106309413909912,
+ "step": 1052
+ },
+ {
+ "epoch": 14.629095674967235,
+ "grad_norm": 0.24753783643245697,
+ "learning_rate": 0.0006,
+ "loss": 4.1015119552612305,
+ "step": 1053
+ },
+ {
+ "epoch": 14.643075578855395,
+ "grad_norm": 0.238885298371315,
+ "learning_rate": 0.0006,
+ "loss": 4.120419502258301,
+ "step": 1054
+ },
+ {
+ "epoch": 14.657055482743557,
+ "grad_norm": 0.22693610191345215,
+ "learning_rate": 0.0006,
+ "loss": 4.084968566894531,
+ "step": 1055
+ },
+ {
+ "epoch": 14.671035386631717,
+ "grad_norm": 0.2100025862455368,
+ "learning_rate": 0.0006,
+ "loss": 4.108001708984375,
+ "step": 1056
+ },
+ {
+ "epoch": 14.685015290519878,
+ "grad_norm": 0.20437054336071014,
+ "learning_rate": 0.0006,
+ "loss": 4.151417255401611,
+ "step": 1057
+ },
+ {
+ "epoch": 14.698995194408038,
+ "grad_norm": 0.1926720291376114,
+ "learning_rate": 0.0006,
+ "loss": 4.091334342956543,
+ "step": 1058
+ },
+ {
+ "epoch": 14.7129750982962,
+ "grad_norm": 0.2120140641927719,
+ "learning_rate": 0.0006,
+ "loss": 4.111706256866455,
+ "step": 1059
+ },
+ {
+ "epoch": 14.72695500218436,
+ "grad_norm": 0.22877076268196106,
+ "learning_rate": 0.0006,
+ "loss": 4.123166084289551,
+ "step": 1060
+ },
+ {
+ "epoch": 14.740934906072521,
+ "grad_norm": 0.22149473428726196,
+ "learning_rate": 0.0006,
+ "loss": 4.099740028381348,
+ "step": 1061
+ },
+ {
+ "epoch": 14.754914809960681,
+ "grad_norm": 0.2351604402065277,
+ "learning_rate": 0.0006,
+ "loss": 4.066174507141113,
+ "step": 1062
+ },
+ {
+ "epoch": 14.768894713848843,
+ "grad_norm": 0.22895802557468414,
+ "learning_rate": 0.0006,
+ "loss": 4.101897239685059,
+ "step": 1063
+ },
+ {
+ "epoch": 14.782874617737003,
+ "grad_norm": 0.22050750255584717,
+ "learning_rate": 0.0006,
+ "loss": 4.122953414916992,
+ "step": 1064
+ },
+ {
+ "epoch": 14.796854521625164,
+ "grad_norm": 0.23255324363708496,
+ "learning_rate": 0.0006,
+ "loss": 4.11297607421875,
+ "step": 1065
+ },
+ {
+ "epoch": 14.810834425513324,
+ "grad_norm": 0.24522703886032104,
+ "learning_rate": 0.0006,
+ "loss": 4.131030082702637,
+ "step": 1066
+ },
+ {
+ "epoch": 14.824814329401486,
+ "grad_norm": 0.2492702752351761,
+ "learning_rate": 0.0006,
+ "loss": 4.076324939727783,
+ "step": 1067
+ },
+ {
+ "epoch": 14.838794233289645,
+ "grad_norm": 0.24410948157310486,
+ "learning_rate": 0.0006,
+ "loss": 4.109020709991455,
+ "step": 1068
+ },
+ {
+ "epoch": 14.852774137177807,
+ "grad_norm": 0.2463168203830719,
+ "learning_rate": 0.0006,
+ "loss": 4.135679244995117,
+ "step": 1069
+ },
+ {
+ "epoch": 14.866754041065967,
+ "grad_norm": 0.2563146650791168,
+ "learning_rate": 0.0006,
+ "loss": 4.0958027839660645,
+ "step": 1070
+ },
+ {
+ "epoch": 14.880733944954128,
+ "grad_norm": 0.261167049407959,
+ "learning_rate": 0.0006,
+ "loss": 4.114803314208984,
+ "step": 1071
+ },
+ {
+ "epoch": 14.89471384884229,
+ "grad_norm": 0.2593795955181122,
+ "learning_rate": 0.0006,
+ "loss": 4.1210618019104,
+ "step": 1072
+ },
+ {
+ "epoch": 14.90869375273045,
+ "grad_norm": 0.27184173464775085,
+ "learning_rate": 0.0006,
+ "loss": 4.095145225524902,
+ "step": 1073
+ },
+ {
+ "epoch": 14.922673656618612,
+ "grad_norm": 0.25289732217788696,
+ "learning_rate": 0.0006,
+ "loss": 4.107388973236084,
+ "step": 1074
+ },
+ {
+ "epoch": 14.936653560506771,
+ "grad_norm": 0.2176840454339981,
+ "learning_rate": 0.0006,
+ "loss": 4.105966567993164,
+ "step": 1075
+ },
+ {
+ "epoch": 14.950633464394933,
+ "grad_norm": 0.20930173993110657,
+ "learning_rate": 0.0006,
+ "loss": 4.126853942871094,
+ "step": 1076
+ },
+ {
+ "epoch": 14.964613368283093,
+ "grad_norm": 0.20850051939487457,
+ "learning_rate": 0.0006,
+ "loss": 4.074934959411621,
+ "step": 1077
+ },
+ {
+ "epoch": 14.978593272171254,
+ "grad_norm": 0.21987544000148773,
+ "learning_rate": 0.0006,
+ "loss": 4.123321533203125,
+ "step": 1078
+ },
+ {
+ "epoch": 14.992573176059414,
+ "grad_norm": 0.23821689188480377,
+ "learning_rate": 0.0006,
+ "loss": 4.082647323608398,
+ "step": 1079
+ },
+ {
+ "epoch": 15.0,
+ "grad_norm": 0.2590881288051605,
+ "learning_rate": 0.0006,
+ "loss": 4.113482475280762,
+ "step": 1080
+ },
+ {
+ "epoch": 15.0,
+ "eval_loss": 4.286936283111572,
+ "eval_runtime": 44.2665,
+ "eval_samples_per_second": 55.166,
+ "eval_steps_per_second": 3.456,
+ "step": 1080
+ },
+ {
+ "epoch": 15.013979903888162,
+ "grad_norm": 0.27885961532592773,
+ "learning_rate": 0.0006,
+ "loss": 4.0825958251953125,
+ "step": 1081
+ },
+ {
+ "epoch": 15.027959807776321,
+ "grad_norm": 0.2751246690750122,
+ "learning_rate": 0.0006,
+ "loss": 4.049782752990723,
+ "step": 1082
+ },
+ {
+ "epoch": 15.041939711664483,
+ "grad_norm": 0.25238561630249023,
+ "learning_rate": 0.0006,
+ "loss": 4.067366600036621,
+ "step": 1083
+ },
+ {
+ "epoch": 15.055919615552643,
+ "grad_norm": 0.27481040358543396,
+ "learning_rate": 0.0006,
+ "loss": 4.089946746826172,
+ "step": 1084
+ },
+ {
+ "epoch": 15.069899519440805,
+ "grad_norm": 0.2666703164577484,
+ "learning_rate": 0.0006,
+ "loss": 4.071957588195801,
+ "step": 1085
+ },
+ {
+ "epoch": 15.083879423328964,
+ "grad_norm": 0.2532065212726593,
+ "learning_rate": 0.0006,
+ "loss": 4.091561794281006,
+ "step": 1086
+ },
+ {
+ "epoch": 15.097859327217126,
+ "grad_norm": 0.23562374711036682,
+ "learning_rate": 0.0006,
+ "loss": 4.074953079223633,
+ "step": 1087
+ },
+ {
+ "epoch": 15.111839231105286,
+ "grad_norm": 0.2498065084218979,
+ "learning_rate": 0.0006,
+ "loss": 4.056004047393799,
+ "step": 1088
+ },
+ {
+ "epoch": 15.125819134993447,
+ "grad_norm": 0.257046639919281,
+ "learning_rate": 0.0006,
+ "loss": 4.044149875640869,
+ "step": 1089
+ },
+ {
+ "epoch": 15.139799038881607,
+ "grad_norm": 0.2417808622121811,
+ "learning_rate": 0.0006,
+ "loss": 4.071811676025391,
+ "step": 1090
+ },
+ {
+ "epoch": 15.153778942769769,
+ "grad_norm": 0.24742013216018677,
+ "learning_rate": 0.0006,
+ "loss": 4.081482887268066,
+ "step": 1091
+ },
+ {
+ "epoch": 15.167758846657929,
+ "grad_norm": 0.2610231637954712,
+ "learning_rate": 0.0006,
+ "loss": 4.06953763961792,
+ "step": 1092
+ },
+ {
+ "epoch": 15.18173875054609,
+ "grad_norm": 0.24688200652599335,
+ "learning_rate": 0.0006,
+ "loss": 4.079700469970703,
+ "step": 1093
+ },
+ {
+ "epoch": 15.19571865443425,
+ "grad_norm": 0.2650167942047119,
+ "learning_rate": 0.0006,
+ "loss": 4.082088947296143,
+ "step": 1094
+ },
+ {
+ "epoch": 15.209698558322412,
+ "grad_norm": 0.25913330912590027,
+ "learning_rate": 0.0006,
+ "loss": 4.081713676452637,
+ "step": 1095
+ },
+ {
+ "epoch": 15.223678462210572,
+ "grad_norm": 0.2547631561756134,
+ "learning_rate": 0.0006,
+ "loss": 4.073573112487793,
+ "step": 1096
+ },
+ {
+ "epoch": 15.237658366098733,
+ "grad_norm": 0.2732609510421753,
+ "learning_rate": 0.0006,
+ "loss": 4.10186767578125,
+ "step": 1097
+ },
+ {
+ "epoch": 15.251638269986893,
+ "grad_norm": 0.2990017533302307,
+ "learning_rate": 0.0006,
+ "loss": 4.085466384887695,
+ "step": 1098
+ },
+ {
+ "epoch": 15.265618173875055,
+ "grad_norm": 0.30252209305763245,
+ "learning_rate": 0.0006,
+ "loss": 4.077337265014648,
+ "step": 1099
+ },
+ {
+ "epoch": 15.279598077763215,
+ "grad_norm": 0.30046045780181885,
+ "learning_rate": 0.0006,
+ "loss": 4.0895891189575195,
+ "step": 1100
+ },
+ {
+ "epoch": 15.293577981651376,
+ "grad_norm": 0.2779843211174011,
+ "learning_rate": 0.0006,
+ "loss": 4.060354709625244,
+ "step": 1101
+ },
+ {
+ "epoch": 15.307557885539538,
+ "grad_norm": 0.26914986968040466,
+ "learning_rate": 0.0006,
+ "loss": 4.07314395904541,
+ "step": 1102
+ },
+ {
+ "epoch": 15.321537789427698,
+ "grad_norm": 0.24605873227119446,
+ "learning_rate": 0.0006,
+ "loss": 4.051377296447754,
+ "step": 1103
+ },
+ {
+ "epoch": 15.33551769331586,
+ "grad_norm": 0.25634095072746277,
+ "learning_rate": 0.0006,
+ "loss": 4.082427024841309,
+ "step": 1104
+ },
+ {
+ "epoch": 15.349497597204019,
+ "grad_norm": 0.2888158857822418,
+ "learning_rate": 0.0006,
+ "loss": 4.074253082275391,
+ "step": 1105
+ },
+ {
+ "epoch": 15.36347750109218,
+ "grad_norm": 0.2758261561393738,
+ "learning_rate": 0.0006,
+ "loss": 4.08344841003418,
+ "step": 1106
+ },
+ {
+ "epoch": 15.37745740498034,
+ "grad_norm": 0.26937270164489746,
+ "learning_rate": 0.0006,
+ "loss": 4.063424587249756,
+ "step": 1107
+ },
+ {
+ "epoch": 15.391437308868502,
+ "grad_norm": 0.2739955484867096,
+ "learning_rate": 0.0006,
+ "loss": 4.08005952835083,
+ "step": 1108
+ },
+ {
+ "epoch": 15.405417212756662,
+ "grad_norm": 0.2635386288166046,
+ "learning_rate": 0.0006,
+ "loss": 4.087360382080078,
+ "step": 1109
+ },
+ {
+ "epoch": 15.419397116644824,
+ "grad_norm": 0.2619768977165222,
+ "learning_rate": 0.0006,
+ "loss": 4.072653770446777,
+ "step": 1110
+ },
+ {
+ "epoch": 15.433377020532983,
+ "grad_norm": 0.24154804646968842,
+ "learning_rate": 0.0006,
+ "loss": 4.084464073181152,
+ "step": 1111
+ },
+ {
+ "epoch": 15.447356924421145,
+ "grad_norm": 0.24236027896404266,
+ "learning_rate": 0.0006,
+ "loss": 4.078777313232422,
+ "step": 1112
+ },
+ {
+ "epoch": 15.461336828309305,
+ "grad_norm": 0.24653038382530212,
+ "learning_rate": 0.0006,
+ "loss": 4.075024604797363,
+ "step": 1113
+ },
+ {
+ "epoch": 15.475316732197467,
+ "grad_norm": 0.27106523513793945,
+ "learning_rate": 0.0006,
+ "loss": 4.060937881469727,
+ "step": 1114
+ },
+ {
+ "epoch": 15.489296636085626,
+ "grad_norm": 0.25109633803367615,
+ "learning_rate": 0.0006,
+ "loss": 4.081971168518066,
+ "step": 1115
+ },
+ {
+ "epoch": 15.503276539973788,
+ "grad_norm": 0.23452287912368774,
+ "learning_rate": 0.0006,
+ "loss": 4.0762834548950195,
+ "step": 1116
+ },
+ {
+ "epoch": 15.517256443861948,
+ "grad_norm": 0.25415024161338806,
+ "learning_rate": 0.0006,
+ "loss": 4.069386959075928,
+ "step": 1117
+ },
+ {
+ "epoch": 15.53123634775011,
+ "grad_norm": 0.25448229908943176,
+ "learning_rate": 0.0006,
+ "loss": 4.075098514556885,
+ "step": 1118
+ },
+ {
+ "epoch": 15.54521625163827,
+ "grad_norm": 0.25679755210876465,
+ "learning_rate": 0.0006,
+ "loss": 4.097431182861328,
+ "step": 1119
+ },
+ {
+ "epoch": 15.55919615552643,
+ "grad_norm": 0.25973212718963623,
+ "learning_rate": 0.0006,
+ "loss": 4.058948516845703,
+ "step": 1120
+ },
+ {
+ "epoch": 15.57317605941459,
+ "grad_norm": 0.24511456489562988,
+ "learning_rate": 0.0006,
+ "loss": 4.092263698577881,
+ "step": 1121
+ },
+ {
+ "epoch": 15.587155963302752,
+ "grad_norm": 0.22949442267417908,
+ "learning_rate": 0.0006,
+ "loss": 4.0526604652404785,
+ "step": 1122
+ },
+ {
+ "epoch": 15.601135867190912,
+ "grad_norm": 0.22486285865306854,
+ "learning_rate": 0.0006,
+ "loss": 4.051939010620117,
+ "step": 1123
+ },
+ {
+ "epoch": 15.615115771079074,
+ "grad_norm": 0.22183601558208466,
+ "learning_rate": 0.0006,
+ "loss": 4.065430641174316,
+ "step": 1124
+ },
+ {
+ "epoch": 15.629095674967235,
+ "grad_norm": 0.2531328797340393,
+ "learning_rate": 0.0006,
+ "loss": 4.069165229797363,
+ "step": 1125
+ },
+ {
+ "epoch": 15.643075578855395,
+ "grad_norm": 0.24403320252895355,
+ "learning_rate": 0.0006,
+ "loss": 4.055041790008545,
+ "step": 1126
+ },
+ {
+ "epoch": 15.657055482743557,
+ "grad_norm": 0.24504756927490234,
+ "learning_rate": 0.0006,
+ "loss": 4.035850524902344,
+ "step": 1127
+ },
+ {
+ "epoch": 15.671035386631717,
+ "grad_norm": 0.23812057077884674,
+ "learning_rate": 0.0006,
+ "loss": 4.049278259277344,
+ "step": 1128
+ },
+ {
+ "epoch": 15.685015290519878,
+ "grad_norm": 0.23694153130054474,
+ "learning_rate": 0.0006,
+ "loss": 4.065816402435303,
+ "step": 1129
+ },
+ {
+ "epoch": 15.698995194408038,
+ "grad_norm": 0.23252786695957184,
+ "learning_rate": 0.0006,
+ "loss": 4.05952262878418,
+ "step": 1130
+ },
+ {
+ "epoch": 15.7129750982962,
+ "grad_norm": 0.2243805080652237,
+ "learning_rate": 0.0006,
+ "loss": 4.058291435241699,
+ "step": 1131
+ },
+ {
+ "epoch": 15.72695500218436,
+ "grad_norm": 0.2200988084077835,
+ "learning_rate": 0.0006,
+ "loss": 4.040788650512695,
+ "step": 1132
+ },
+ {
+ "epoch": 15.740934906072521,
+ "grad_norm": 0.21460631489753723,
+ "learning_rate": 0.0006,
+ "loss": 4.072552680969238,
+ "step": 1133
+ },
+ {
+ "epoch": 15.754914809960681,
+ "grad_norm": 0.2056441456079483,
+ "learning_rate": 0.0006,
+ "loss": 4.059467315673828,
+ "step": 1134
+ },
+ {
+ "epoch": 15.768894713848843,
+ "grad_norm": 0.2068045437335968,
+ "learning_rate": 0.0006,
+ "loss": 4.063803195953369,
+ "step": 1135
+ },
+ {
+ "epoch": 15.782874617737003,
+ "grad_norm": 0.21307601034641266,
+ "learning_rate": 0.0006,
+ "loss": 4.093092918395996,
+ "step": 1136
+ },
+ {
+ "epoch": 15.796854521625164,
+ "grad_norm": 0.20729634165763855,
+ "learning_rate": 0.0006,
+ "loss": 4.066030502319336,
+ "step": 1137
+ },
+ {
+ "epoch": 15.810834425513324,
+ "grad_norm": 0.2097514122724533,
+ "learning_rate": 0.0006,
+ "loss": 4.077326774597168,
+ "step": 1138
+ },
+ {
+ "epoch": 15.824814329401486,
+ "grad_norm": 0.21884000301361084,
+ "learning_rate": 0.0006,
+ "loss": 4.0595598220825195,
+ "step": 1139
+ },
+ {
+ "epoch": 15.838794233289645,
+ "grad_norm": 0.22220250964164734,
+ "learning_rate": 0.0006,
+ "loss": 4.061574459075928,
+ "step": 1140
+ },
+ {
+ "epoch": 15.852774137177807,
+ "grad_norm": 0.23189949989318848,
+ "learning_rate": 0.0006,
+ "loss": 4.0504045486450195,
+ "step": 1141
+ },
+ {
+ "epoch": 15.866754041065967,
+ "grad_norm": 0.226649671792984,
+ "learning_rate": 0.0006,
+ "loss": 4.060986518859863,
+ "step": 1142
+ },
+ {
+ "epoch": 15.880733944954128,
+ "grad_norm": 0.2456834763288498,
+ "learning_rate": 0.0006,
+ "loss": 4.038525581359863,
+ "step": 1143
+ },
+ {
+ "epoch": 15.89471384884229,
+ "grad_norm": 0.2818352282047272,
+ "learning_rate": 0.0006,
+ "loss": 4.062709331512451,
+ "step": 1144
+ },
+ {
+ "epoch": 15.90869375273045,
+ "grad_norm": 0.2850170135498047,
+ "learning_rate": 0.0006,
+ "loss": 4.0683274269104,
+ "step": 1145
+ },
+ {
+ "epoch": 15.922673656618612,
+ "grad_norm": 0.27691730856895447,
+ "learning_rate": 0.0006,
+ "loss": 4.076540470123291,
+ "step": 1146
+ },
+ {
+ "epoch": 15.936653560506771,
+ "grad_norm": 0.2685548961162567,
+ "learning_rate": 0.0006,
+ "loss": 4.048116683959961,
+ "step": 1147
+ },
+ {
+ "epoch": 15.950633464394933,
+ "grad_norm": 0.2452288419008255,
+ "learning_rate": 0.0006,
+ "loss": 4.06640625,
+ "step": 1148
+ },
+ {
+ "epoch": 15.964613368283093,
+ "grad_norm": 0.2601441740989685,
+ "learning_rate": 0.0006,
+ "loss": 4.073277473449707,
+ "step": 1149
+ },
+ {
+ "epoch": 15.978593272171254,
+ "grad_norm": 0.2748197913169861,
+ "learning_rate": 0.0006,
+ "loss": 4.0332536697387695,
+ "step": 1150
+ },
+ {
+ "epoch": 15.992573176059414,
+ "grad_norm": 0.27249959111213684,
+ "learning_rate": 0.0006,
+ "loss": 3.9952516555786133,
+ "step": 1151
+ },
+ {
+ "epoch": 16.0,
+ "grad_norm": 0.3475601375102997,
+ "learning_rate": 0.0006,
+ "loss": 4.040761947631836,
+ "step": 1152
+ },
+ {
+ "epoch": 16.0,
+ "eval_loss": 4.237997531890869,
+ "eval_runtime": 43.8692,
+ "eval_samples_per_second": 55.665,
+ "eval_steps_per_second": 3.488,
+ "step": 1152
+ },
+ {
+ "epoch": 16.01397990388816,
+ "grad_norm": 0.3365611433982849,
+ "learning_rate": 0.0006,
+ "loss": 4.031302452087402,
+ "step": 1153
+ },
+ {
+ "epoch": 16.027959807776323,
+ "grad_norm": 0.3020530641078949,
+ "learning_rate": 0.0006,
+ "loss": 4.036273956298828,
+ "step": 1154
+ },
+ {
+ "epoch": 16.041939711664483,
+ "grad_norm": 0.25277993083000183,
+ "learning_rate": 0.0006,
+ "loss": 4.007067680358887,
+ "step": 1155
+ },
+ {
+ "epoch": 16.055919615552643,
+ "grad_norm": 0.24762840569019318,
+ "learning_rate": 0.0006,
+ "loss": 4.046561241149902,
+ "step": 1156
+ },
+ {
+ "epoch": 16.069899519440803,
+ "grad_norm": 0.25236397981643677,
+ "learning_rate": 0.0006,
+ "loss": 4.061616897583008,
+ "step": 1157
+ },
+ {
+ "epoch": 16.083879423328966,
+ "grad_norm": 0.22789105772972107,
+ "learning_rate": 0.0006,
+ "loss": 4.010061740875244,
+ "step": 1158
+ },
+ {
+ "epoch": 16.097859327217126,
+ "grad_norm": 0.21866244077682495,
+ "learning_rate": 0.0006,
+ "loss": 4.0181097984313965,
+ "step": 1159
+ },
+ {
+ "epoch": 16.111839231105286,
+ "grad_norm": 0.21889029443264008,
+ "learning_rate": 0.0006,
+ "loss": 4.012239456176758,
+ "step": 1160
+ },
+ {
+ "epoch": 16.125819134993446,
+ "grad_norm": 0.23002485930919647,
+ "learning_rate": 0.0006,
+ "loss": 4.034092426300049,
+ "step": 1161
+ },
+ {
+ "epoch": 16.13979903888161,
+ "grad_norm": 0.2271798551082611,
+ "learning_rate": 0.0006,
+ "loss": 4.026222229003906,
+ "step": 1162
+ },
+ {
+ "epoch": 16.15377894276977,
+ "grad_norm": 0.238200843334198,
+ "learning_rate": 0.0006,
+ "loss": 4.044692039489746,
+ "step": 1163
+ },
+ {
+ "epoch": 16.16775884665793,
+ "grad_norm": 0.2281467169523239,
+ "learning_rate": 0.0006,
+ "loss": 4.032305717468262,
+ "step": 1164
+ },
+ {
+ "epoch": 16.18173875054609,
+ "grad_norm": 0.2213946431875229,
+ "learning_rate": 0.0006,
+ "loss": 4.048737525939941,
+ "step": 1165
+ },
+ {
+ "epoch": 16.195718654434252,
+ "grad_norm": 0.26638558506965637,
+ "learning_rate": 0.0006,
+ "loss": 4.006335258483887,
+ "step": 1166
+ },
+ {
+ "epoch": 16.209698558322412,
+ "grad_norm": 0.2780219316482544,
+ "learning_rate": 0.0006,
+ "loss": 4.049234390258789,
+ "step": 1167
+ },
+ {
+ "epoch": 16.22367846221057,
+ "grad_norm": 0.27425870299339294,
+ "learning_rate": 0.0006,
+ "loss": 4.017177104949951,
+ "step": 1168
+ },
+ {
+ "epoch": 16.23765836609873,
+ "grad_norm": 0.2596667408943176,
+ "learning_rate": 0.0006,
+ "loss": 4.022942543029785,
+ "step": 1169
+ },
+ {
+ "epoch": 16.251638269986895,
+ "grad_norm": 0.26972314715385437,
+ "learning_rate": 0.0006,
+ "loss": 4.035310745239258,
+ "step": 1170
+ },
+ {
+ "epoch": 16.265618173875055,
+ "grad_norm": 0.2677772045135498,
+ "learning_rate": 0.0006,
+ "loss": 4.0280561447143555,
+ "step": 1171
+ },
+ {
+ "epoch": 16.279598077763215,
+ "grad_norm": 0.25433358550071716,
+ "learning_rate": 0.0006,
+ "loss": 4.03616189956665,
+ "step": 1172
+ },
+ {
+ "epoch": 16.293577981651374,
+ "grad_norm": 0.2583644688129425,
+ "learning_rate": 0.0006,
+ "loss": 4.073624134063721,
+ "step": 1173
+ },
+ {
+ "epoch": 16.307557885539538,
+ "grad_norm": 0.25437524914741516,
+ "learning_rate": 0.0006,
+ "loss": 4.057926654815674,
+ "step": 1174
+ },
+ {
+ "epoch": 16.321537789427698,
+ "grad_norm": 0.2819201350212097,
+ "learning_rate": 0.0006,
+ "loss": 4.020838737487793,
+ "step": 1175
+ },
+ {
+ "epoch": 16.335517693315857,
+ "grad_norm": 0.32689282298088074,
+ "learning_rate": 0.0006,
+ "loss": 4.062448501586914,
+ "step": 1176
+ },
+ {
+ "epoch": 16.34949759720402,
+ "grad_norm": 0.33002278208732605,
+ "learning_rate": 0.0006,
+ "loss": 4.052059173583984,
+ "step": 1177
+ },
+ {
+ "epoch": 16.36347750109218,
+ "grad_norm": 0.32472696900367737,
+ "learning_rate": 0.0006,
+ "loss": 4.042375564575195,
+ "step": 1178
+ },
+ {
+ "epoch": 16.37745740498034,
+ "grad_norm": 0.35279813408851624,
+ "learning_rate": 0.0006,
+ "loss": 4.028722763061523,
+ "step": 1179
+ },
+ {
+ "epoch": 16.3914373088685,
+ "grad_norm": 0.3243204951286316,
+ "learning_rate": 0.0006,
+ "loss": 4.045693874359131,
+ "step": 1180
+ },
+ {
+ "epoch": 16.405417212756664,
+ "grad_norm": 0.32171115279197693,
+ "learning_rate": 0.0006,
+ "loss": 4.018350124359131,
+ "step": 1181
+ },
+ {
+ "epoch": 16.419397116644824,
+ "grad_norm": 0.31459906697273254,
+ "learning_rate": 0.0006,
+ "loss": 4.039547443389893,
+ "step": 1182
+ },
+ {
+ "epoch": 16.433377020532983,
+ "grad_norm": 0.35038673877716064,
+ "learning_rate": 0.0006,
+ "loss": 4.005928039550781,
+ "step": 1183
+ },
+ {
+ "epoch": 16.447356924421143,
+ "grad_norm": 0.34110963344573975,
+ "learning_rate": 0.0006,
+ "loss": 4.042272090911865,
+ "step": 1184
+ },
+ {
+ "epoch": 16.461336828309307,
+ "grad_norm": 0.33760902285575867,
+ "learning_rate": 0.0006,
+ "loss": 4.02886962890625,
+ "step": 1185
+ },
+ {
+ "epoch": 16.475316732197467,
+ "grad_norm": 0.3162464499473572,
+ "learning_rate": 0.0006,
+ "loss": 4.059924125671387,
+ "step": 1186
+ },
+ {
+ "epoch": 16.489296636085626,
+ "grad_norm": 0.2667233645915985,
+ "learning_rate": 0.0006,
+ "loss": 4.069073677062988,
+ "step": 1187
+ },
+ {
+ "epoch": 16.503276539973786,
+ "grad_norm": 0.22626568377017975,
+ "learning_rate": 0.0006,
+ "loss": 4.044912338256836,
+ "step": 1188
+ },
+ {
+ "epoch": 16.51725644386195,
+ "grad_norm": 0.203303262591362,
+ "learning_rate": 0.0006,
+ "loss": 4.025210380554199,
+ "step": 1189
+ },
+ {
+ "epoch": 16.53123634775011,
+ "grad_norm": 0.2108820080757141,
+ "learning_rate": 0.0006,
+ "loss": 4.035998821258545,
+ "step": 1190
+ },
+ {
+ "epoch": 16.54521625163827,
+ "grad_norm": 0.20451335608959198,
+ "learning_rate": 0.0006,
+ "loss": 4.043377876281738,
+ "step": 1191
+ },
+ {
+ "epoch": 16.55919615552643,
+ "grad_norm": 0.23348836600780487,
+ "learning_rate": 0.0006,
+ "loss": 4.033735275268555,
+ "step": 1192
+ },
+ {
+ "epoch": 16.573176059414592,
+ "grad_norm": 0.24438607692718506,
+ "learning_rate": 0.0006,
+ "loss": 4.071747779846191,
+ "step": 1193
+ },
+ {
+ "epoch": 16.587155963302752,
+ "grad_norm": 0.24233631789684296,
+ "learning_rate": 0.0006,
+ "loss": 4.0138702392578125,
+ "step": 1194
+ },
+ {
+ "epoch": 16.601135867190912,
+ "grad_norm": 0.21625740826129913,
+ "learning_rate": 0.0006,
+ "loss": 4.013422012329102,
+ "step": 1195
+ },
+ {
+ "epoch": 16.615115771079076,
+ "grad_norm": 0.22447720170021057,
+ "learning_rate": 0.0006,
+ "loss": 4.056326866149902,
+ "step": 1196
+ },
+ {
+ "epoch": 16.629095674967235,
+ "grad_norm": 0.21899616718292236,
+ "learning_rate": 0.0006,
+ "loss": 4.006134033203125,
+ "step": 1197
+ },
+ {
+ "epoch": 16.643075578855395,
+ "grad_norm": 0.191362664103508,
+ "learning_rate": 0.0006,
+ "loss": 4.036748886108398,
+ "step": 1198
+ },
+ {
+ "epoch": 16.657055482743555,
+ "grad_norm": 0.20203463733196259,
+ "learning_rate": 0.0006,
+ "loss": 4.006264686584473,
+ "step": 1199
+ },
+ {
+ "epoch": 16.67103538663172,
+ "grad_norm": 0.20209139585494995,
+ "learning_rate": 0.0006,
+ "loss": 4.059018135070801,
+ "step": 1200
+ },
+ {
+ "epoch": 16.68501529051988,
+ "grad_norm": 0.20811820030212402,
+ "learning_rate": 0.0006,
+ "loss": 4.054325103759766,
+ "step": 1201
+ },
+ {
+ "epoch": 16.698995194408038,
+ "grad_norm": 0.22448928654193878,
+ "learning_rate": 0.0006,
+ "loss": 3.996121406555176,
+ "step": 1202
+ },
+ {
+ "epoch": 16.712975098296198,
+ "grad_norm": 0.21692240238189697,
+ "learning_rate": 0.0006,
+ "loss": 4.042046546936035,
+ "step": 1203
+ },
+ {
+ "epoch": 16.72695500218436,
+ "grad_norm": 0.20688563585281372,
+ "learning_rate": 0.0006,
+ "loss": 4.002251625061035,
+ "step": 1204
+ },
+ {
+ "epoch": 16.74093490607252,
+ "grad_norm": 0.1835535764694214,
+ "learning_rate": 0.0006,
+ "loss": 4.02545166015625,
+ "step": 1205
+ },
+ {
+ "epoch": 16.75491480996068,
+ "grad_norm": 0.20532558858394623,
+ "learning_rate": 0.0006,
+ "loss": 4.039333343505859,
+ "step": 1206
+ },
+ {
+ "epoch": 16.76889471384884,
+ "grad_norm": 0.2214215099811554,
+ "learning_rate": 0.0006,
+ "loss": 4.037858486175537,
+ "step": 1207
+ },
+ {
+ "epoch": 16.782874617737004,
+ "grad_norm": 0.24926038086414337,
+ "learning_rate": 0.0006,
+ "loss": 4.024799346923828,
+ "step": 1208
+ },
+ {
+ "epoch": 16.796854521625164,
+ "grad_norm": 0.26057952642440796,
+ "learning_rate": 0.0006,
+ "loss": 4.042788505554199,
+ "step": 1209
+ },
+ {
+ "epoch": 16.810834425513324,
+ "grad_norm": 0.2501208782196045,
+ "learning_rate": 0.0006,
+ "loss": 4.051809310913086,
+ "step": 1210
+ },
+ {
+ "epoch": 16.824814329401484,
+ "grad_norm": 0.21760012209415436,
+ "learning_rate": 0.0006,
+ "loss": 4.063589096069336,
+ "step": 1211
+ },
+ {
+ "epoch": 16.838794233289647,
+ "grad_norm": 0.2243622988462448,
+ "learning_rate": 0.0006,
+ "loss": 4.008829593658447,
+ "step": 1212
+ },
+ {
+ "epoch": 16.852774137177807,
+ "grad_norm": 0.2399163395166397,
+ "learning_rate": 0.0006,
+ "loss": 4.013262748718262,
+ "step": 1213
+ },
+ {
+ "epoch": 16.866754041065967,
+ "grad_norm": 0.23187831044197083,
+ "learning_rate": 0.0006,
+ "loss": 4.023053169250488,
+ "step": 1214
+ },
+ {
+ "epoch": 16.88073394495413,
+ "grad_norm": 0.23723892867565155,
+ "learning_rate": 0.0006,
+ "loss": 3.991321563720703,
+ "step": 1215
+ },
+ {
+ "epoch": 16.89471384884229,
+ "grad_norm": 0.21766342222690582,
+ "learning_rate": 0.0006,
+ "loss": 4.0250773429870605,
+ "step": 1216
+ },
+ {
+ "epoch": 16.90869375273045,
+ "grad_norm": 0.20715023577213287,
+ "learning_rate": 0.0006,
+ "loss": 4.063642978668213,
+ "step": 1217
+ },
+ {
+ "epoch": 16.92267365661861,
+ "grad_norm": 0.20165133476257324,
+ "learning_rate": 0.0006,
+ "loss": 3.9951367378234863,
+ "step": 1218
+ },
+ {
+ "epoch": 16.936653560506773,
+ "grad_norm": 0.19956178963184357,
+ "learning_rate": 0.0006,
+ "loss": 4.025641441345215,
+ "step": 1219
+ },
+ {
+ "epoch": 16.950633464394933,
+ "grad_norm": 0.2175494134426117,
+ "learning_rate": 0.0006,
+ "loss": 4.030346393585205,
+ "step": 1220
+ },
+ {
+ "epoch": 16.964613368283093,
+ "grad_norm": 0.22365593910217285,
+ "learning_rate": 0.0006,
+ "loss": 4.018105506896973,
+ "step": 1221
+ },
+ {
+ "epoch": 16.978593272171253,
+ "grad_norm": 0.21251538395881653,
+ "learning_rate": 0.0006,
+ "loss": 4.023580074310303,
+ "step": 1222
+ },
+ {
+ "epoch": 16.992573176059416,
+ "grad_norm": 0.2230125218629837,
+ "learning_rate": 0.0006,
+ "loss": 4.001980304718018,
+ "step": 1223
+ },
+ {
+ "epoch": 17.0,
+ "grad_norm": 0.24261972308158875,
+ "learning_rate": 0.0006,
+ "loss": 4.081348896026611,
+ "step": 1224
+ },
+ {
+ "epoch": 17.0,
+ "eval_loss": 4.225194931030273,
+ "eval_runtime": 44.247,
+ "eval_samples_per_second": 55.19,
+ "eval_steps_per_second": 3.458,
+ "step": 1224
+ },
+ {
+ "epoch": 17.01397990388816,
+ "grad_norm": 0.2438880205154419,
+ "learning_rate": 0.0006,
+ "loss": 4.0164794921875,
+ "step": 1225
+ },
+ {
+ "epoch": 17.027959807776323,
+ "grad_norm": 0.22459383308887482,
+ "learning_rate": 0.0006,
+ "loss": 3.991623878479004,
+ "step": 1226
+ },
+ {
+ "epoch": 17.041939711664483,
+ "grad_norm": 0.25021040439605713,
+ "learning_rate": 0.0006,
+ "loss": 4.003020286560059,
+ "step": 1227
+ },
+ {
+ "epoch": 17.055919615552643,
+ "grad_norm": 0.30358025431632996,
+ "learning_rate": 0.0006,
+ "loss": 3.980921983718872,
+ "step": 1228
+ },
+ {
+ "epoch": 17.069899519440803,
+ "grad_norm": 0.27313271164894104,
+ "learning_rate": 0.0006,
+ "loss": 3.992398977279663,
+ "step": 1229
+ },
+ {
+ "epoch": 17.083879423328966,
+ "grad_norm": 0.2293211966753006,
+ "learning_rate": 0.0006,
+ "loss": 4.02568244934082,
+ "step": 1230
+ },
+ {
+ "epoch": 17.097859327217126,
+ "grad_norm": 0.2363300621509552,
+ "learning_rate": 0.0006,
+ "loss": 3.977229356765747,
+ "step": 1231
+ },
+ {
+ "epoch": 17.111839231105286,
+ "grad_norm": 0.2809674143791199,
+ "learning_rate": 0.0006,
+ "loss": 3.9720497131347656,
+ "step": 1232
+ },
+ {
+ "epoch": 17.125819134993446,
+ "grad_norm": 0.2913855016231537,
+ "learning_rate": 0.0006,
+ "loss": 3.979529857635498,
+ "step": 1233
+ },
+ {
+ "epoch": 17.13979903888161,
+ "grad_norm": 0.2920287251472473,
+ "learning_rate": 0.0006,
+ "loss": 3.9678473472595215,
+ "step": 1234
+ },
+ {
+ "epoch": 17.15377894276977,
+ "grad_norm": 0.2521543502807617,
+ "learning_rate": 0.0006,
+ "loss": 3.9912607669830322,
+ "step": 1235
+ },
+ {
+ "epoch": 17.16775884665793,
+ "grad_norm": 0.22844268381595612,
+ "learning_rate": 0.0006,
+ "loss": 3.9898228645324707,
+ "step": 1236
+ },
+ {
+ "epoch": 17.18173875054609,
+ "grad_norm": 0.2199884057044983,
+ "learning_rate": 0.0006,
+ "loss": 4.0050740242004395,
+ "step": 1237
+ },
+ {
+ "epoch": 17.195718654434252,
+ "grad_norm": 0.23072892427444458,
+ "learning_rate": 0.0006,
+ "loss": 3.9957475662231445,
+ "step": 1238
+ },
+ {
+ "epoch": 17.209698558322412,
+ "grad_norm": 0.2034899890422821,
+ "learning_rate": 0.0006,
+ "loss": 3.9672317504882812,
+ "step": 1239
+ },
+ {
+ "epoch": 17.22367846221057,
+ "grad_norm": 0.21826180815696716,
+ "learning_rate": 0.0006,
+ "loss": 3.98543119430542,
+ "step": 1240
+ },
+ {
+ "epoch": 17.23765836609873,
+ "grad_norm": 0.21203237771987915,
+ "learning_rate": 0.0006,
+ "loss": 3.9971959590911865,
+ "step": 1241
+ },
+ {
+ "epoch": 17.251638269986895,
+ "grad_norm": 0.22139234840869904,
+ "learning_rate": 0.0006,
+ "loss": 4.017539978027344,
+ "step": 1242
+ },
+ {
+ "epoch": 17.265618173875055,
+ "grad_norm": 0.21553276479244232,
+ "learning_rate": 0.0006,
+ "loss": 3.98740553855896,
+ "step": 1243
+ },
+ {
+ "epoch": 17.279598077763215,
+ "grad_norm": 0.23259080946445465,
+ "learning_rate": 0.0006,
+ "loss": 3.9963035583496094,
+ "step": 1244
+ },
+ {
+ "epoch": 17.293577981651374,
+ "grad_norm": 0.2527932822704315,
+ "learning_rate": 0.0006,
+ "loss": 4.0202956199646,
+ "step": 1245
+ },
+ {
+ "epoch": 17.307557885539538,
+ "grad_norm": 0.28669068217277527,
+ "learning_rate": 0.0006,
+ "loss": 3.9947609901428223,
+ "step": 1246
+ },
+ {
+ "epoch": 17.321537789427698,
+ "grad_norm": 0.341602623462677,
+ "learning_rate": 0.0006,
+ "loss": 3.997032642364502,
+ "step": 1247
+ },
+ {
+ "epoch": 17.335517693315857,
+ "grad_norm": 0.3364104926586151,
+ "learning_rate": 0.0006,
+ "loss": 3.9881834983825684,
+ "step": 1248
+ },
+ {
+ "epoch": 17.34949759720402,
+ "grad_norm": 0.2979278266429901,
+ "learning_rate": 0.0006,
+ "loss": 4.045898914337158,
+ "step": 1249
+ },
+ {
+ "epoch": 17.36347750109218,
+ "grad_norm": 0.2857462465763092,
+ "learning_rate": 0.0006,
+ "loss": 4.0085272789001465,
+ "step": 1250
+ },
+ {
+ "epoch": 17.37745740498034,
+ "grad_norm": 0.2689058780670166,
+ "learning_rate": 0.0006,
+ "loss": 4.021465301513672,
+ "step": 1251
+ },
+ {
+ "epoch": 17.3914373088685,
+ "grad_norm": 0.24943363666534424,
+ "learning_rate": 0.0006,
+ "loss": 4.003451347351074,
+ "step": 1252
+ },
+ {
+ "epoch": 17.405417212756664,
+ "grad_norm": 0.2635347843170166,
+ "learning_rate": 0.0006,
+ "loss": 3.9837827682495117,
+ "step": 1253
+ },
+ {
+ "epoch": 17.419397116644824,
+ "grad_norm": 0.29126450419425964,
+ "learning_rate": 0.0006,
+ "loss": 3.9857311248779297,
+ "step": 1254
+ },
+ {
+ "epoch": 17.433377020532983,
+ "grad_norm": 0.3166918456554413,
+ "learning_rate": 0.0006,
+ "loss": 3.9842967987060547,
+ "step": 1255
+ },
+ {
+ "epoch": 17.447356924421143,
+ "grad_norm": 0.27869969606399536,
+ "learning_rate": 0.0006,
+ "loss": 4.012607574462891,
+ "step": 1256
+ },
+ {
+ "epoch": 17.461336828309307,
+ "grad_norm": 0.23719419538974762,
+ "learning_rate": 0.0006,
+ "loss": 3.981034755706787,
+ "step": 1257
+ },
+ {
+ "epoch": 17.475316732197467,
+ "grad_norm": 0.22687610983848572,
+ "learning_rate": 0.0006,
+ "loss": 4.011059761047363,
+ "step": 1258
+ },
+ {
+ "epoch": 17.489296636085626,
+ "grad_norm": 0.22034095227718353,
+ "learning_rate": 0.0006,
+ "loss": 4.015044689178467,
+ "step": 1259
+ },
+ {
+ "epoch": 17.503276539973786,
+ "grad_norm": 0.21208405494689941,
+ "learning_rate": 0.0006,
+ "loss": 4.003793716430664,
+ "step": 1260
+ },
+ {
+ "epoch": 17.51725644386195,
+ "grad_norm": 0.21759214997291565,
+ "learning_rate": 0.0006,
+ "loss": 3.978652238845825,
+ "step": 1261
+ },
+ {
+ "epoch": 17.53123634775011,
+ "grad_norm": 0.22481068968772888,
+ "learning_rate": 0.0006,
+ "loss": 4.034845352172852,
+ "step": 1262
+ },
+ {
+ "epoch": 17.54521625163827,
+ "grad_norm": 0.20376387238502502,
+ "learning_rate": 0.0006,
+ "loss": 3.990541934967041,
+ "step": 1263
+ },
+ {
+ "epoch": 17.55919615552643,
+ "grad_norm": 0.20459355413913727,
+ "learning_rate": 0.0006,
+ "loss": 4.006990432739258,
+ "step": 1264
+ },
+ {
+ "epoch": 17.573176059414592,
+ "grad_norm": 0.19306913018226624,
+ "learning_rate": 0.0006,
+ "loss": 3.993408679962158,
+ "step": 1265
+ },
+ {
+ "epoch": 17.587155963302752,
+ "grad_norm": 0.20727239549160004,
+ "learning_rate": 0.0006,
+ "loss": 3.988016128540039,
+ "step": 1266
+ },
+ {
+ "epoch": 17.601135867190912,
+ "grad_norm": 0.20213133096694946,
+ "learning_rate": 0.0006,
+ "loss": 4.0120368003845215,
+ "step": 1267
+ },
+ {
+ "epoch": 17.615115771079076,
+ "grad_norm": 0.21074117720127106,
+ "learning_rate": 0.0006,
+ "loss": 4.048871040344238,
+ "step": 1268
+ },
+ {
+ "epoch": 17.629095674967235,
+ "grad_norm": 0.2074330598115921,
+ "learning_rate": 0.0006,
+ "loss": 3.997509002685547,
+ "step": 1269
+ },
+ {
+ "epoch": 17.643075578855395,
+ "grad_norm": 0.20383669435977936,
+ "learning_rate": 0.0006,
+ "loss": 4.0028839111328125,
+ "step": 1270
+ },
+ {
+ "epoch": 17.657055482743555,
+ "grad_norm": 0.2060765027999878,
+ "learning_rate": 0.0006,
+ "loss": 3.998032331466675,
+ "step": 1271
+ },
+ {
+ "epoch": 17.67103538663172,
+ "grad_norm": 0.21851404011249542,
+ "learning_rate": 0.0006,
+ "loss": 3.9928741455078125,
+ "step": 1272
+ },
+ {
+ "epoch": 17.68501529051988,
+ "grad_norm": 0.24324250221252441,
+ "learning_rate": 0.0006,
+ "loss": 3.9896507263183594,
+ "step": 1273
+ },
+ {
+ "epoch": 17.698995194408038,
+ "grad_norm": 0.25584331154823303,
+ "learning_rate": 0.0006,
+ "loss": 4.010485649108887,
+ "step": 1274
+ },
+ {
+ "epoch": 17.712975098296198,
+ "grad_norm": 0.2490610033273697,
+ "learning_rate": 0.0006,
+ "loss": 3.9906954765319824,
+ "step": 1275
+ },
+ {
+ "epoch": 17.72695500218436,
+ "grad_norm": 0.24241414666175842,
+ "learning_rate": 0.0006,
+ "loss": 4.016420364379883,
+ "step": 1276
+ },
+ {
+ "epoch": 17.74093490607252,
+ "grad_norm": 0.2222128063440323,
+ "learning_rate": 0.0006,
+ "loss": 4.009827136993408,
+ "step": 1277
+ },
+ {
+ "epoch": 17.75491480996068,
+ "grad_norm": 0.23119516670703888,
+ "learning_rate": 0.0006,
+ "loss": 4.0034589767456055,
+ "step": 1278
+ },
+ {
+ "epoch": 17.76889471384884,
+ "grad_norm": 0.24596457183361053,
+ "learning_rate": 0.0006,
+ "loss": 4.003161907196045,
+ "step": 1279
+ },
+ {
+ "epoch": 17.782874617737004,
+ "grad_norm": 0.2607562839984894,
+ "learning_rate": 0.0006,
+ "loss": 3.9894633293151855,
+ "step": 1280
+ },
+ {
+ "epoch": 17.796854521625164,
+ "grad_norm": 0.28706878423690796,
+ "learning_rate": 0.0006,
+ "loss": 4.005712985992432,
+ "step": 1281
+ },
+ {
+ "epoch": 17.810834425513324,
+ "grad_norm": 0.27178290486335754,
+ "learning_rate": 0.0006,
+ "loss": 3.9784536361694336,
+ "step": 1282
+ },
+ {
+ "epoch": 17.824814329401484,
+ "grad_norm": 0.27962708473205566,
+ "learning_rate": 0.0006,
+ "loss": 4.012705326080322,
+ "step": 1283
+ },
+ {
+ "epoch": 17.838794233289647,
+ "grad_norm": 0.29147693514823914,
+ "learning_rate": 0.0006,
+ "loss": 4.0159783363342285,
+ "step": 1284
+ },
+ {
+ "epoch": 17.852774137177807,
+ "grad_norm": 0.2841821312904358,
+ "learning_rate": 0.0006,
+ "loss": 4.011552810668945,
+ "step": 1285
+ },
+ {
+ "epoch": 17.866754041065967,
+ "grad_norm": 0.24924969673156738,
+ "learning_rate": 0.0006,
+ "loss": 3.992421865463257,
+ "step": 1286
+ },
+ {
+ "epoch": 17.88073394495413,
+ "grad_norm": 0.24850749969482422,
+ "learning_rate": 0.0006,
+ "loss": 3.974897861480713,
+ "step": 1287
+ },
+ {
+ "epoch": 17.89471384884229,
+ "grad_norm": 0.2409554123878479,
+ "learning_rate": 0.0006,
+ "loss": 4.002941131591797,
+ "step": 1288
+ },
+ {
+ "epoch": 17.90869375273045,
+ "grad_norm": 0.2656126320362091,
+ "learning_rate": 0.0006,
+ "loss": 3.9804210662841797,
+ "step": 1289
+ },
+ {
+ "epoch": 17.92267365661861,
+ "grad_norm": 0.28210243582725525,
+ "learning_rate": 0.0006,
+ "loss": 4.007192134857178,
+ "step": 1290
+ },
+ {
+ "epoch": 17.936653560506773,
+ "grad_norm": 0.28427553176879883,
+ "learning_rate": 0.0006,
+ "loss": 3.9739556312561035,
+ "step": 1291
+ },
+ {
+ "epoch": 17.950633464394933,
+ "grad_norm": 0.28893420100212097,
+ "learning_rate": 0.0006,
+ "loss": 4.004766941070557,
+ "step": 1292
+ },
+ {
+ "epoch": 17.964613368283093,
+ "grad_norm": 0.2831471562385559,
+ "learning_rate": 0.0006,
+ "loss": 3.984936237335205,
+ "step": 1293
+ },
+ {
+ "epoch": 17.978593272171253,
+ "grad_norm": 0.2518300712108612,
+ "learning_rate": 0.0006,
+ "loss": 4.002814292907715,
+ "step": 1294
+ },
+ {
+ "epoch": 17.992573176059416,
+ "grad_norm": 0.24264675378799438,
+ "learning_rate": 0.0006,
+ "loss": 3.998900890350342,
+ "step": 1295
+ },
+ {
+ "epoch": 18.0,
+ "grad_norm": 0.24474996328353882,
+ "learning_rate": 0.0006,
+ "loss": 3.974229335784912,
+ "step": 1296
+ },
+ {
+ "epoch": 18.0,
+ "eval_loss": 4.195685863494873,
+ "eval_runtime": 44.0709,
+ "eval_samples_per_second": 55.411,
+ "eval_steps_per_second": 3.472,
+ "step": 1296
+ },
+ {
+ "epoch": 18.01397990388816,
+ "grad_norm": 0.2553016245365143,
+ "learning_rate": 0.0006,
+ "loss": 3.9522247314453125,
+ "step": 1297
+ },
+ {
+ "epoch": 18.027959807776323,
+ "grad_norm": 0.22350727021694183,
+ "learning_rate": 0.0006,
+ "loss": 3.9850122928619385,
+ "step": 1298
+ },
+ {
+ "epoch": 18.041939711664483,
+ "grad_norm": 0.23935550451278687,
+ "learning_rate": 0.0006,
+ "loss": 3.9758832454681396,
+ "step": 1299
+ },
+ {
+ "epoch": 18.055919615552643,
+ "grad_norm": 0.23868797719478607,
+ "learning_rate": 0.0006,
+ "loss": 3.9567959308624268,
+ "step": 1300
+ },
+ {
+ "epoch": 18.069899519440803,
+ "grad_norm": 0.23102357983589172,
+ "learning_rate": 0.0006,
+ "loss": 3.9399867057800293,
+ "step": 1301
+ },
+ {
+ "epoch": 18.083879423328966,
+ "grad_norm": 0.23706983029842377,
+ "learning_rate": 0.0006,
+ "loss": 3.993434190750122,
+ "step": 1302
+ },
+ {
+ "epoch": 18.097859327217126,
+ "grad_norm": 0.22207573056221008,
+ "learning_rate": 0.0006,
+ "loss": 3.993436574935913,
+ "step": 1303
+ },
+ {
+ "epoch": 18.111839231105286,
+ "grad_norm": 0.23975296318531036,
+ "learning_rate": 0.0006,
+ "loss": 3.981943368911743,
+ "step": 1304
+ },
+ {
+ "epoch": 18.125819134993446,
+ "grad_norm": 0.2520582675933838,
+ "learning_rate": 0.0006,
+ "loss": 3.965493679046631,
+ "step": 1305
+ },
+ {
+ "epoch": 18.13979903888161,
+ "grad_norm": 0.2230956256389618,
+ "learning_rate": 0.0006,
+ "loss": 3.9360928535461426,
+ "step": 1306
+ },
+ {
+ "epoch": 18.15377894276977,
+ "grad_norm": 0.22527500987052917,
+ "learning_rate": 0.0006,
+ "loss": 3.9814581871032715,
+ "step": 1307
+ },
+ {
+ "epoch": 18.16775884665793,
+ "grad_norm": 0.22389626502990723,
+ "learning_rate": 0.0006,
+ "loss": 3.961590051651001,
+ "step": 1308
+ },
+ {
+ "epoch": 18.18173875054609,
+ "grad_norm": 0.22279471158981323,
+ "learning_rate": 0.0006,
+ "loss": 3.952338695526123,
+ "step": 1309
+ },
+ {
+ "epoch": 18.195718654434252,
+ "grad_norm": 0.24635115265846252,
+ "learning_rate": 0.0006,
+ "loss": 3.9693849086761475,
+ "step": 1310
+ },
+ {
+ "epoch": 18.209698558322412,
+ "grad_norm": 0.2757279872894287,
+ "learning_rate": 0.0006,
+ "loss": 3.9956700801849365,
+ "step": 1311
+ },
+ {
+ "epoch": 18.22367846221057,
+ "grad_norm": 0.2619115710258484,
+ "learning_rate": 0.0006,
+ "loss": 3.948878765106201,
+ "step": 1312
+ },
+ {
+ "epoch": 18.23765836609873,
+ "grad_norm": 0.22853828966617584,
+ "learning_rate": 0.0006,
+ "loss": 3.9545674324035645,
+ "step": 1313
+ },
+ {
+ "epoch": 18.251638269986895,
+ "grad_norm": 0.22904761135578156,
+ "learning_rate": 0.0006,
+ "loss": 3.947535991668701,
+ "step": 1314
+ },
+ {
+ "epoch": 18.265618173875055,
+ "grad_norm": 0.23592644929885864,
+ "learning_rate": 0.0006,
+ "loss": 3.971926212310791,
+ "step": 1315
+ },
+ {
+ "epoch": 18.279598077763215,
+ "grad_norm": 0.22120243310928345,
+ "learning_rate": 0.0006,
+ "loss": 3.9471049308776855,
+ "step": 1316
+ },
+ {
+ "epoch": 18.293577981651374,
+ "grad_norm": 0.20308749377727509,
+ "learning_rate": 0.0006,
+ "loss": 3.967449188232422,
+ "step": 1317
+ },
+ {
+ "epoch": 18.307557885539538,
+ "grad_norm": 0.20013529062271118,
+ "learning_rate": 0.0006,
+ "loss": 3.966151237487793,
+ "step": 1318
+ },
+ {
+ "epoch": 18.321537789427698,
+ "grad_norm": 0.20635221898555756,
+ "learning_rate": 0.0006,
+ "loss": 3.9908885955810547,
+ "step": 1319
+ },
+ {
+ "epoch": 18.335517693315857,
+ "grad_norm": 0.2232237160205841,
+ "learning_rate": 0.0006,
+ "loss": 3.9488768577575684,
+ "step": 1320
+ },
+ {
+ "epoch": 18.34949759720402,
+ "grad_norm": 0.21916444599628448,
+ "learning_rate": 0.0006,
+ "loss": 3.973428726196289,
+ "step": 1321
+ },
+ {
+ "epoch": 18.36347750109218,
+ "grad_norm": 0.20427337288856506,
+ "learning_rate": 0.0006,
+ "loss": 3.969332695007324,
+ "step": 1322
+ },
+ {
+ "epoch": 18.37745740498034,
+ "grad_norm": 0.20138131082057953,
+ "learning_rate": 0.0006,
+ "loss": 3.9651856422424316,
+ "step": 1323
+ },
+ {
+ "epoch": 18.3914373088685,
+ "grad_norm": 0.18918880820274353,
+ "learning_rate": 0.0006,
+ "loss": 3.9772281646728516,
+ "step": 1324
+ },
+ {
+ "epoch": 18.405417212756664,
+ "grad_norm": 0.1860039383172989,
+ "learning_rate": 0.0006,
+ "loss": 3.9289052486419678,
+ "step": 1325
+ },
+ {
+ "epoch": 18.419397116644824,
+ "grad_norm": 0.19541646540164948,
+ "learning_rate": 0.0006,
+ "loss": 3.9527673721313477,
+ "step": 1326
+ },
+ {
+ "epoch": 18.433377020532983,
+ "grad_norm": 0.206914022564888,
+ "learning_rate": 0.0006,
+ "loss": 3.99316143989563,
+ "step": 1327
+ },
+ {
+ "epoch": 18.447356924421143,
+ "grad_norm": 0.209097757935524,
+ "learning_rate": 0.0006,
+ "loss": 3.978130340576172,
+ "step": 1328
+ },
+ {
+ "epoch": 18.461336828309307,
+ "grad_norm": 0.22163373231887817,
+ "learning_rate": 0.0006,
+ "loss": 3.951460361480713,
+ "step": 1329
+ },
+ {
+ "epoch": 18.475316732197467,
+ "grad_norm": 0.21446120738983154,
+ "learning_rate": 0.0006,
+ "loss": 3.963571071624756,
+ "step": 1330
+ },
+ {
+ "epoch": 18.489296636085626,
+ "grad_norm": 0.2341388761997223,
+ "learning_rate": 0.0006,
+ "loss": 4.010684013366699,
+ "step": 1331
+ },
+ {
+ "epoch": 18.503276539973786,
+ "grad_norm": 0.2433937042951584,
+ "learning_rate": 0.0006,
+ "loss": 3.987537384033203,
+ "step": 1332
+ },
+ {
+ "epoch": 18.51725644386195,
+ "grad_norm": 0.24916228652000427,
+ "learning_rate": 0.0006,
+ "loss": 3.953075647354126,
+ "step": 1333
+ },
+ {
+ "epoch": 18.53123634775011,
+ "grad_norm": 0.24542421102523804,
+ "learning_rate": 0.0006,
+ "loss": 3.9510841369628906,
+ "step": 1334
+ },
+ {
+ "epoch": 18.54521625163827,
+ "grad_norm": 0.2393690049648285,
+ "learning_rate": 0.0006,
+ "loss": 3.981747627258301,
+ "step": 1335
+ },
+ {
+ "epoch": 18.55919615552643,
+ "grad_norm": 0.22806711494922638,
+ "learning_rate": 0.0006,
+ "loss": 3.9714856147766113,
+ "step": 1336
+ },
+ {
+ "epoch": 18.573176059414592,
+ "grad_norm": 0.21948303282260895,
+ "learning_rate": 0.0006,
+ "loss": 3.9429898262023926,
+ "step": 1337
+ },
+ {
+ "epoch": 18.587155963302752,
+ "grad_norm": 0.21575778722763062,
+ "learning_rate": 0.0006,
+ "loss": 3.9639933109283447,
+ "step": 1338
+ },
+ {
+ "epoch": 18.601135867190912,
+ "grad_norm": 0.23370565474033356,
+ "learning_rate": 0.0006,
+ "loss": 3.9819254875183105,
+ "step": 1339
+ },
+ {
+ "epoch": 18.615115771079076,
+ "grad_norm": 0.2613106369972229,
+ "learning_rate": 0.0006,
+ "loss": 3.9654669761657715,
+ "step": 1340
+ },
+ {
+ "epoch": 18.629095674967235,
+ "grad_norm": 0.26682716608047485,
+ "learning_rate": 0.0006,
+ "loss": 3.9832968711853027,
+ "step": 1341
+ },
+ {
+ "epoch": 18.643075578855395,
+ "grad_norm": 0.24331490695476532,
+ "learning_rate": 0.0006,
+ "loss": 3.9926600456237793,
+ "step": 1342
+ },
+ {
+ "epoch": 18.657055482743555,
+ "grad_norm": 0.2459341287612915,
+ "learning_rate": 0.0006,
+ "loss": 3.9508986473083496,
+ "step": 1343
+ },
+ {
+ "epoch": 18.67103538663172,
+ "grad_norm": 0.26395753026008606,
+ "learning_rate": 0.0006,
+ "loss": 3.961359977722168,
+ "step": 1344
+ },
+ {
+ "epoch": 18.68501529051988,
+ "grad_norm": 0.26049068570137024,
+ "learning_rate": 0.0006,
+ "loss": 3.9763245582580566,
+ "step": 1345
+ },
+ {
+ "epoch": 18.698995194408038,
+ "grad_norm": 0.24018602073192596,
+ "learning_rate": 0.0006,
+ "loss": 3.951780319213867,
+ "step": 1346
+ },
+ {
+ "epoch": 18.712975098296198,
+ "grad_norm": 0.23886290192604065,
+ "learning_rate": 0.0006,
+ "loss": 3.9883017539978027,
+ "step": 1347
+ },
+ {
+ "epoch": 18.72695500218436,
+ "grad_norm": 0.2293774038553238,
+ "learning_rate": 0.0006,
+ "loss": 3.9852685928344727,
+ "step": 1348
+ },
+ {
+ "epoch": 18.74093490607252,
+ "grad_norm": 0.22172975540161133,
+ "learning_rate": 0.0006,
+ "loss": 3.967550277709961,
+ "step": 1349
+ },
+ {
+ "epoch": 18.75491480996068,
+ "grad_norm": 0.2170475423336029,
+ "learning_rate": 0.0006,
+ "loss": 3.9570775032043457,
+ "step": 1350
+ },
+ {
+ "epoch": 18.76889471384884,
+ "grad_norm": 0.21458806097507477,
+ "learning_rate": 0.0006,
+ "loss": 3.9461212158203125,
+ "step": 1351
+ },
+ {
+ "epoch": 18.782874617737004,
+ "grad_norm": 0.21101507544517517,
+ "learning_rate": 0.0006,
+ "loss": 3.984398365020752,
+ "step": 1352
+ },
+ {
+ "epoch": 18.796854521625164,
+ "grad_norm": 0.23480583727359772,
+ "learning_rate": 0.0006,
+ "loss": 3.950312614440918,
+ "step": 1353
+ },
+ {
+ "epoch": 18.810834425513324,
+ "grad_norm": 0.24728581309318542,
+ "learning_rate": 0.0006,
+ "loss": 3.9572393894195557,
+ "step": 1354
+ },
+ {
+ "epoch": 18.824814329401484,
+ "grad_norm": 0.26063451170921326,
+ "learning_rate": 0.0006,
+ "loss": 3.9653234481811523,
+ "step": 1355
+ },
+ {
+ "epoch": 18.838794233289647,
+ "grad_norm": 0.24679961800575256,
+ "learning_rate": 0.0006,
+ "loss": 3.9560108184814453,
+ "step": 1356
+ },
+ {
+ "epoch": 18.852774137177807,
+ "grad_norm": 0.23199526965618134,
+ "learning_rate": 0.0006,
+ "loss": 3.9948246479034424,
+ "step": 1357
+ },
+ {
+ "epoch": 18.866754041065967,
+ "grad_norm": 0.22619125247001648,
+ "learning_rate": 0.0006,
+ "loss": 3.9783573150634766,
+ "step": 1358
+ },
+ {
+ "epoch": 18.88073394495413,
+ "grad_norm": 0.25499874353408813,
+ "learning_rate": 0.0006,
+ "loss": 3.9674575328826904,
+ "step": 1359
+ },
+ {
+ "epoch": 18.89471384884229,
+ "grad_norm": 0.23961037397384644,
+ "learning_rate": 0.0006,
+ "loss": 3.969209909439087,
+ "step": 1360
+ },
+ {
+ "epoch": 18.90869375273045,
+ "grad_norm": 0.21039162576198578,
+ "learning_rate": 0.0006,
+ "loss": 3.978661060333252,
+ "step": 1361
+ },
+ {
+ "epoch": 18.92267365661861,
+ "grad_norm": 0.2297026664018631,
+ "learning_rate": 0.0006,
+ "loss": 3.9483046531677246,
+ "step": 1362
+ },
+ {
+ "epoch": 18.936653560506773,
+ "grad_norm": 0.26367098093032837,
+ "learning_rate": 0.0006,
+ "loss": 3.927133560180664,
+ "step": 1363
+ },
+ {
+ "epoch": 18.950633464394933,
+ "grad_norm": 0.26893147826194763,
+ "learning_rate": 0.0006,
+ "loss": 3.957932710647583,
+ "step": 1364
+ },
+ {
+ "epoch": 18.964613368283093,
+ "grad_norm": 0.27092233300209045,
+ "learning_rate": 0.0006,
+ "loss": 3.976621150970459,
+ "step": 1365
+ },
+ {
+ "epoch": 18.978593272171253,
+ "grad_norm": 0.2672635018825531,
+ "learning_rate": 0.0006,
+ "loss": 3.9577765464782715,
+ "step": 1366
+ },
+ {
+ "epoch": 18.992573176059416,
+ "grad_norm": 0.2721385359764099,
+ "learning_rate": 0.0006,
+ "loss": 3.986100196838379,
+ "step": 1367
+ },
+ {
+ "epoch": 19.0,
+ "grad_norm": 0.27648621797561646,
+ "learning_rate": 0.0006,
+ "loss": 3.9942402839660645,
+ "step": 1368
+ },
+ {
+ "epoch": 19.0,
+ "eval_loss": 4.180216312408447,
+ "eval_runtime": 44.0079,
+ "eval_samples_per_second": 55.49,
+ "eval_steps_per_second": 3.477,
+ "step": 1368
+ },
+ {
+ "epoch": 19.01397990388816,
+ "grad_norm": 0.2563098073005676,
+ "learning_rate": 0.0006,
+ "loss": 3.9267354011535645,
+ "step": 1369
+ },
+ {
+ "epoch": 19.027959807776323,
+ "grad_norm": 0.2531425952911377,
+ "learning_rate": 0.0006,
+ "loss": 3.9273324012756348,
+ "step": 1370
+ },
+ {
+ "epoch": 19.041939711664483,
+ "grad_norm": 0.27485427260398865,
+ "learning_rate": 0.0006,
+ "loss": 3.9542183876037598,
+ "step": 1371
+ },
+ {
+ "epoch": 19.055919615552643,
+ "grad_norm": 0.27509891986846924,
+ "learning_rate": 0.0006,
+ "loss": 3.921940326690674,
+ "step": 1372
+ },
+ {
+ "epoch": 19.069899519440803,
+ "grad_norm": 0.28154096007347107,
+ "learning_rate": 0.0006,
+ "loss": 3.926743984222412,
+ "step": 1373
+ },
+ {
+ "epoch": 19.083879423328966,
+ "grad_norm": 0.2749912738800049,
+ "learning_rate": 0.0006,
+ "loss": 3.9257748126983643,
+ "step": 1374
+ },
+ {
+ "epoch": 19.097859327217126,
+ "grad_norm": 0.26168501377105713,
+ "learning_rate": 0.0006,
+ "loss": 3.9403202533721924,
+ "step": 1375
+ },
+ {
+ "epoch": 19.111839231105286,
+ "grad_norm": 0.23410023748874664,
+ "learning_rate": 0.0006,
+ "loss": 3.935378313064575,
+ "step": 1376
+ },
+ {
+ "epoch": 19.125819134993446,
+ "grad_norm": 0.25790470838546753,
+ "learning_rate": 0.0006,
+ "loss": 3.946147918701172,
+ "step": 1377
+ },
+ {
+ "epoch": 19.13979903888161,
+ "grad_norm": 0.26704177260398865,
+ "learning_rate": 0.0006,
+ "loss": 3.9511594772338867,
+ "step": 1378
+ },
+ {
+ "epoch": 19.15377894276977,
+ "grad_norm": 0.2560667097568512,
+ "learning_rate": 0.0006,
+ "loss": 3.915806531906128,
+ "step": 1379
+ },
+ {
+ "epoch": 19.16775884665793,
+ "grad_norm": 0.24684149026870728,
+ "learning_rate": 0.0006,
+ "loss": 3.9162003993988037,
+ "step": 1380
+ },
+ {
+ "epoch": 19.18173875054609,
+ "grad_norm": 0.2097567766904831,
+ "learning_rate": 0.0006,
+ "loss": 3.915739059448242,
+ "step": 1381
+ },
+ {
+ "epoch": 19.195718654434252,
+ "grad_norm": 0.21646849811077118,
+ "learning_rate": 0.0006,
+ "loss": 3.9097084999084473,
+ "step": 1382
+ },
+ {
+ "epoch": 19.209698558322412,
+ "grad_norm": 0.20626980066299438,
+ "learning_rate": 0.0006,
+ "loss": 3.9541783332824707,
+ "step": 1383
+ },
+ {
+ "epoch": 19.22367846221057,
+ "grad_norm": 0.23362718522548676,
+ "learning_rate": 0.0006,
+ "loss": 3.950096845626831,
+ "step": 1384
+ },
+ {
+ "epoch": 19.23765836609873,
+ "grad_norm": 0.25402209162712097,
+ "learning_rate": 0.0006,
+ "loss": 3.927671432495117,
+ "step": 1385
+ },
+ {
+ "epoch": 19.251638269986895,
+ "grad_norm": 0.23714083433151245,
+ "learning_rate": 0.0006,
+ "loss": 3.939765453338623,
+ "step": 1386
+ },
+ {
+ "epoch": 19.265618173875055,
+ "grad_norm": 0.20895546674728394,
+ "learning_rate": 0.0006,
+ "loss": 3.9384806156158447,
+ "step": 1387
+ },
+ {
+ "epoch": 19.279598077763215,
+ "grad_norm": 0.21374300122261047,
+ "learning_rate": 0.0006,
+ "loss": 3.9523749351501465,
+ "step": 1388
+ },
+ {
+ "epoch": 19.293577981651374,
+ "grad_norm": 0.210394486784935,
+ "learning_rate": 0.0006,
+ "loss": 3.9540798664093018,
+ "step": 1389
+ },
+ {
+ "epoch": 19.307557885539538,
+ "grad_norm": 0.20646725594997406,
+ "learning_rate": 0.0006,
+ "loss": 3.9514098167419434,
+ "step": 1390
+ },
+ {
+ "epoch": 19.321537789427698,
+ "grad_norm": 0.21477538347244263,
+ "learning_rate": 0.0006,
+ "loss": 3.9369924068450928,
+ "step": 1391
+ },
+ {
+ "epoch": 19.335517693315857,
+ "grad_norm": 0.20431505143642426,
+ "learning_rate": 0.0006,
+ "loss": 3.9389796257019043,
+ "step": 1392
+ },
+ {
+ "epoch": 19.34949759720402,
+ "grad_norm": 0.19575877487659454,
+ "learning_rate": 0.0006,
+ "loss": 3.935976028442383,
+ "step": 1393
+ },
+ {
+ "epoch": 19.36347750109218,
+ "grad_norm": 0.20720405876636505,
+ "learning_rate": 0.0006,
+ "loss": 3.9670963287353516,
+ "step": 1394
+ },
+ {
+ "epoch": 19.37745740498034,
+ "grad_norm": 0.2173967957496643,
+ "learning_rate": 0.0006,
+ "loss": 3.903940439224243,
+ "step": 1395
+ },
+ {
+ "epoch": 19.3914373088685,
+ "grad_norm": 0.2180529683828354,
+ "learning_rate": 0.0006,
+ "loss": 3.8716301918029785,
+ "step": 1396
+ },
+ {
+ "epoch": 19.405417212756664,
+ "grad_norm": 0.20666591823101044,
+ "learning_rate": 0.0006,
+ "loss": 3.930936813354492,
+ "step": 1397
+ },
+ {
+ "epoch": 19.419397116644824,
+ "grad_norm": 0.20353034138679504,
+ "learning_rate": 0.0006,
+ "loss": 3.926954746246338,
+ "step": 1398
+ },
+ {
+ "epoch": 19.433377020532983,
+ "grad_norm": 0.22333289682865143,
+ "learning_rate": 0.0006,
+ "loss": 3.947504997253418,
+ "step": 1399
+ },
+ {
+ "epoch": 19.447356924421143,
+ "grad_norm": 0.21787697076797485,
+ "learning_rate": 0.0006,
+ "loss": 3.9325344562530518,
+ "step": 1400
+ },
+ {
+ "epoch": 19.461336828309307,
+ "grad_norm": 0.22805874049663544,
+ "learning_rate": 0.0006,
+ "loss": 3.9640727043151855,
+ "step": 1401
+ },
+ {
+ "epoch": 19.475316732197467,
+ "grad_norm": 0.22396457195281982,
+ "learning_rate": 0.0006,
+ "loss": 3.9537901878356934,
+ "step": 1402
+ },
+ {
+ "epoch": 19.489296636085626,
+ "grad_norm": 0.2333047240972519,
+ "learning_rate": 0.0006,
+ "loss": 3.935609817504883,
+ "step": 1403
+ },
+ {
+ "epoch": 19.503276539973786,
+ "grad_norm": 0.25063616037368774,
+ "learning_rate": 0.0006,
+ "loss": 3.9659228324890137,
+ "step": 1404
+ },
+ {
+ "epoch": 19.51725644386195,
+ "grad_norm": 0.29074087738990784,
+ "learning_rate": 0.0006,
+ "loss": 3.9552183151245117,
+ "step": 1405
+ },
+ {
+ "epoch": 19.53123634775011,
+ "grad_norm": 0.34876152873039246,
+ "learning_rate": 0.0006,
+ "loss": 3.976163387298584,
+ "step": 1406
+ },
+ {
+ "epoch": 19.54521625163827,
+ "grad_norm": 0.35026612877845764,
+ "learning_rate": 0.0006,
+ "loss": 3.961186408996582,
+ "step": 1407
+ },
+ {
+ "epoch": 19.55919615552643,
+ "grad_norm": 0.3199564218521118,
+ "learning_rate": 0.0006,
+ "loss": 3.9366297721862793,
+ "step": 1408
+ },
+ {
+ "epoch": 19.573176059414592,
+ "grad_norm": 0.2976185977458954,
+ "learning_rate": 0.0006,
+ "loss": 3.9502010345458984,
+ "step": 1409
+ },
+ {
+ "epoch": 19.587155963302752,
+ "grad_norm": 0.2951911687850952,
+ "learning_rate": 0.0006,
+ "loss": 3.9427943229675293,
+ "step": 1410
+ },
+ {
+ "epoch": 19.601135867190912,
+ "grad_norm": 0.27918702363967896,
+ "learning_rate": 0.0006,
+ "loss": 3.963700532913208,
+ "step": 1411
+ },
+ {
+ "epoch": 19.615115771079076,
+ "grad_norm": 0.26197490096092224,
+ "learning_rate": 0.0006,
+ "loss": 3.9636964797973633,
+ "step": 1412
+ },
+ {
+ "epoch": 19.629095674967235,
+ "grad_norm": 0.24242281913757324,
+ "learning_rate": 0.0006,
+ "loss": 3.961815595626831,
+ "step": 1413
+ },
+ {
+ "epoch": 19.643075578855395,
+ "grad_norm": 0.2606375515460968,
+ "learning_rate": 0.0006,
+ "loss": 3.946643352508545,
+ "step": 1414
+ },
+ {
+ "epoch": 19.657055482743555,
+ "grad_norm": 0.23353353142738342,
+ "learning_rate": 0.0006,
+ "loss": 3.973155975341797,
+ "step": 1415
+ },
+ {
+ "epoch": 19.67103538663172,
+ "grad_norm": 0.22872662544250488,
+ "learning_rate": 0.0006,
+ "loss": 3.9528894424438477,
+ "step": 1416
+ },
+ {
+ "epoch": 19.68501529051988,
+ "grad_norm": 0.24678432941436768,
+ "learning_rate": 0.0006,
+ "loss": 3.9313249588012695,
+ "step": 1417
+ },
+ {
+ "epoch": 19.698995194408038,
+ "grad_norm": 0.23895515501499176,
+ "learning_rate": 0.0006,
+ "loss": 3.944082498550415,
+ "step": 1418
+ },
+ {
+ "epoch": 19.712975098296198,
+ "grad_norm": 0.23649105429649353,
+ "learning_rate": 0.0006,
+ "loss": 3.962069034576416,
+ "step": 1419
+ },
+ {
+ "epoch": 19.72695500218436,
+ "grad_norm": 0.22031061351299286,
+ "learning_rate": 0.0006,
+ "loss": 3.912972927093506,
+ "step": 1420
+ },
+ {
+ "epoch": 19.74093490607252,
+ "grad_norm": 0.20231695473194122,
+ "learning_rate": 0.0006,
+ "loss": 3.964531421661377,
+ "step": 1421
+ },
+ {
+ "epoch": 19.75491480996068,
+ "grad_norm": 0.19980913400650024,
+ "learning_rate": 0.0006,
+ "loss": 3.9452600479125977,
+ "step": 1422
+ },
+ {
+ "epoch": 19.76889471384884,
+ "grad_norm": 0.21768775582313538,
+ "learning_rate": 0.0006,
+ "loss": 3.9214301109313965,
+ "step": 1423
+ },
+ {
+ "epoch": 19.782874617737004,
+ "grad_norm": 0.21287119388580322,
+ "learning_rate": 0.0006,
+ "loss": 3.9416494369506836,
+ "step": 1424
+ },
+ {
+ "epoch": 19.796854521625164,
+ "grad_norm": 0.21399827301502228,
+ "learning_rate": 0.0006,
+ "loss": 3.971010208129883,
+ "step": 1425
+ },
+ {
+ "epoch": 19.810834425513324,
+ "grad_norm": 0.1957658976316452,
+ "learning_rate": 0.0006,
+ "loss": 3.936331272125244,
+ "step": 1426
+ },
+ {
+ "epoch": 19.824814329401484,
+ "grad_norm": 0.19341488182544708,
+ "learning_rate": 0.0006,
+ "loss": 3.9321448802948,
+ "step": 1427
+ },
+ {
+ "epoch": 19.838794233289647,
+ "grad_norm": 0.18405723571777344,
+ "learning_rate": 0.0006,
+ "loss": 3.939542293548584,
+ "step": 1428
+ },
+ {
+ "epoch": 19.852774137177807,
+ "grad_norm": 0.19672836363315582,
+ "learning_rate": 0.0006,
+ "loss": 3.939652919769287,
+ "step": 1429
+ },
+ {
+ "epoch": 19.866754041065967,
+ "grad_norm": 0.1998940259218216,
+ "learning_rate": 0.0006,
+ "loss": 3.932892322540283,
+ "step": 1430
+ },
+ {
+ "epoch": 19.88073394495413,
+ "grad_norm": 0.2307668924331665,
+ "learning_rate": 0.0006,
+ "loss": 3.9402761459350586,
+ "step": 1431
+ },
+ {
+ "epoch": 19.89471384884229,
+ "grad_norm": 0.2531987726688385,
+ "learning_rate": 0.0006,
+ "loss": 3.9153199195861816,
+ "step": 1432
+ },
+ {
+ "epoch": 19.90869375273045,
+ "grad_norm": 0.2299388349056244,
+ "learning_rate": 0.0006,
+ "loss": 3.9569954872131348,
+ "step": 1433
+ },
+ {
+ "epoch": 19.92267365661861,
+ "grad_norm": 0.2503527104854584,
+ "learning_rate": 0.0006,
+ "loss": 3.9469428062438965,
+ "step": 1434
+ },
+ {
+ "epoch": 19.936653560506773,
+ "grad_norm": 0.25390249490737915,
+ "learning_rate": 0.0006,
+ "loss": 3.941803455352783,
+ "step": 1435
+ },
+ {
+ "epoch": 19.950633464394933,
+ "grad_norm": 0.2288687825202942,
+ "learning_rate": 0.0006,
+ "loss": 3.9385883808135986,
+ "step": 1436
+ },
+ {
+ "epoch": 19.964613368283093,
+ "grad_norm": 0.2231096774339676,
+ "learning_rate": 0.0006,
+ "loss": 3.9255237579345703,
+ "step": 1437
+ },
+ {
+ "epoch": 19.978593272171253,
+ "grad_norm": 0.20729343593120575,
+ "learning_rate": 0.0006,
+ "loss": 3.9443163871765137,
+ "step": 1438
+ },
+ {
+ "epoch": 19.992573176059416,
+ "grad_norm": 0.197743758559227,
+ "learning_rate": 0.0006,
+ "loss": 3.925455093383789,
+ "step": 1439
+ },
+ {
+ "epoch": 20.0,
+ "grad_norm": 0.23943661153316498,
+ "learning_rate": 0.0006,
+ "loss": 3.9458866119384766,
+ "step": 1440
+ },
+ {
+ "epoch": 20.0,
+ "eval_loss": 4.144192218780518,
+ "eval_runtime": 44.0278,
+ "eval_samples_per_second": 55.465,
+ "eval_steps_per_second": 3.475,
+ "step": 1440
+ },
+ {
+ "epoch": 20.01397990388816,
+ "grad_norm": 0.2032143622636795,
+ "learning_rate": 0.0006,
+ "loss": 3.9151499271392822,
+ "step": 1441
+ },
+ {
+ "epoch": 20.027959807776323,
+ "grad_norm": 0.20164789259433746,
+ "learning_rate": 0.0006,
+ "loss": 3.874115228652954,
+ "step": 1442
+ },
+ {
+ "epoch": 20.041939711664483,
+ "grad_norm": 0.20796619355678558,
+ "learning_rate": 0.0006,
+ "loss": 3.9090776443481445,
+ "step": 1443
+ },
+ {
+ "epoch": 20.055919615552643,
+ "grad_norm": 0.1999918520450592,
+ "learning_rate": 0.0006,
+ "loss": 3.926563262939453,
+ "step": 1444
+ },
+ {
+ "epoch": 20.069899519440803,
+ "grad_norm": 0.204790860414505,
+ "learning_rate": 0.0006,
+ "loss": 3.9088830947875977,
+ "step": 1445
+ },
+ {
+ "epoch": 20.083879423328966,
+ "grad_norm": 0.21507175266742706,
+ "learning_rate": 0.0006,
+ "loss": 3.916504383087158,
+ "step": 1446
+ },
+ {
+ "epoch": 20.097859327217126,
+ "grad_norm": 0.2398025095462799,
+ "learning_rate": 0.0006,
+ "loss": 3.9128990173339844,
+ "step": 1447
+ },
+ {
+ "epoch": 20.111839231105286,
+ "grad_norm": 0.26037144660949707,
+ "learning_rate": 0.0006,
+ "loss": 3.9125187397003174,
+ "step": 1448
+ },
+ {
+ "epoch": 20.125819134993446,
+ "grad_norm": 0.25564828515052795,
+ "learning_rate": 0.0006,
+ "loss": 3.891867160797119,
+ "step": 1449
+ },
+ {
+ "epoch": 20.13979903888161,
+ "grad_norm": 0.2767223119735718,
+ "learning_rate": 0.0006,
+ "loss": 3.9202775955200195,
+ "step": 1450
+ },
+ {
+ "epoch": 20.15377894276977,
+ "grad_norm": 0.27696558833122253,
+ "learning_rate": 0.0006,
+ "loss": 3.9231314659118652,
+ "step": 1451
+ },
+ {
+ "epoch": 20.16775884665793,
+ "grad_norm": 0.3054044246673584,
+ "learning_rate": 0.0006,
+ "loss": 3.918138027191162,
+ "step": 1452
+ },
+ {
+ "epoch": 20.18173875054609,
+ "grad_norm": 0.3018973171710968,
+ "learning_rate": 0.0006,
+ "loss": 3.890678882598877,
+ "step": 1453
+ },
+ {
+ "epoch": 20.195718654434252,
+ "grad_norm": 0.306232750415802,
+ "learning_rate": 0.0006,
+ "loss": 3.920753002166748,
+ "step": 1454
+ },
+ {
+ "epoch": 20.209698558322412,
+ "grad_norm": 0.29593729972839355,
+ "learning_rate": 0.0006,
+ "loss": 3.9455509185791016,
+ "step": 1455
+ },
+ {
+ "epoch": 20.22367846221057,
+ "grad_norm": 0.2937646210193634,
+ "learning_rate": 0.0006,
+ "loss": 3.9227709770202637,
+ "step": 1456
+ },
+ {
+ "epoch": 20.23765836609873,
+ "grad_norm": 0.26380231976509094,
+ "learning_rate": 0.0006,
+ "loss": 3.9097609519958496,
+ "step": 1457
+ },
+ {
+ "epoch": 20.251638269986895,
+ "grad_norm": 0.24992692470550537,
+ "learning_rate": 0.0006,
+ "loss": 3.9393627643585205,
+ "step": 1458
+ },
+ {
+ "epoch": 20.265618173875055,
+ "grad_norm": 0.270219087600708,
+ "learning_rate": 0.0006,
+ "loss": 3.929330348968506,
+ "step": 1459
+ },
+ {
+ "epoch": 20.279598077763215,
+ "grad_norm": 0.2860020399093628,
+ "learning_rate": 0.0006,
+ "loss": 3.8947913646698,
+ "step": 1460
+ },
+ {
+ "epoch": 20.293577981651374,
+ "grad_norm": 0.27494579553604126,
+ "learning_rate": 0.0006,
+ "loss": 3.9105992317199707,
+ "step": 1461
+ },
+ {
+ "epoch": 20.307557885539538,
+ "grad_norm": 0.26467713713645935,
+ "learning_rate": 0.0006,
+ "loss": 3.914632797241211,
+ "step": 1462
+ },
+ {
+ "epoch": 20.321537789427698,
+ "grad_norm": 0.25747713446617126,
+ "learning_rate": 0.0006,
+ "loss": 3.919846534729004,
+ "step": 1463
+ },
+ {
+ "epoch": 20.335517693315857,
+ "grad_norm": 0.24027711153030396,
+ "learning_rate": 0.0006,
+ "loss": 3.904740810394287,
+ "step": 1464
+ },
+ {
+ "epoch": 20.34949759720402,
+ "grad_norm": 0.24682414531707764,
+ "learning_rate": 0.0006,
+ "loss": 3.9190149307250977,
+ "step": 1465
+ },
+ {
+ "epoch": 20.36347750109218,
+ "grad_norm": 0.2619759440422058,
+ "learning_rate": 0.0006,
+ "loss": 3.9488329887390137,
+ "step": 1466
+ },
+ {
+ "epoch": 20.37745740498034,
+ "grad_norm": 0.2632448971271515,
+ "learning_rate": 0.0006,
+ "loss": 3.9216647148132324,
+ "step": 1467
+ },
+ {
+ "epoch": 20.3914373088685,
+ "grad_norm": 0.27569764852523804,
+ "learning_rate": 0.0006,
+ "loss": 3.9178895950317383,
+ "step": 1468
+ },
+ {
+ "epoch": 20.405417212756664,
+ "grad_norm": 0.2611774802207947,
+ "learning_rate": 0.0006,
+ "loss": 3.933730125427246,
+ "step": 1469
+ },
+ {
+ "epoch": 20.419397116644824,
+ "grad_norm": 0.2839447557926178,
+ "learning_rate": 0.0006,
+ "loss": 3.9261364936828613,
+ "step": 1470
+ },
+ {
+ "epoch": 20.433377020532983,
+ "grad_norm": 0.29006227850914,
+ "learning_rate": 0.0006,
+ "loss": 3.9157633781433105,
+ "step": 1471
+ },
+ {
+ "epoch": 20.447356924421143,
+ "grad_norm": 0.2809498906135559,
+ "learning_rate": 0.0006,
+ "loss": 3.9211745262145996,
+ "step": 1472
+ },
+ {
+ "epoch": 20.461336828309307,
+ "grad_norm": 0.27859532833099365,
+ "learning_rate": 0.0006,
+ "loss": 3.9115967750549316,
+ "step": 1473
+ },
+ {
+ "epoch": 20.475316732197467,
+ "grad_norm": 0.29114410281181335,
+ "learning_rate": 0.0006,
+ "loss": 3.9024441242218018,
+ "step": 1474
+ },
+ {
+ "epoch": 20.489296636085626,
+ "grad_norm": 0.2686930000782013,
+ "learning_rate": 0.0006,
+ "loss": 3.9497199058532715,
+ "step": 1475
+ },
+ {
+ "epoch": 20.503276539973786,
+ "grad_norm": 0.24120540916919708,
+ "learning_rate": 0.0006,
+ "loss": 3.9218955039978027,
+ "step": 1476
+ },
+ {
+ "epoch": 20.51725644386195,
+ "grad_norm": 0.23689547181129456,
+ "learning_rate": 0.0006,
+ "loss": 3.9410176277160645,
+ "step": 1477
+ },
+ {
+ "epoch": 20.53123634775011,
+ "grad_norm": 0.26382362842559814,
+ "learning_rate": 0.0006,
+ "loss": 3.8880343437194824,
+ "step": 1478
+ },
+ {
+ "epoch": 20.54521625163827,
+ "grad_norm": 0.21628661453723907,
+ "learning_rate": 0.0006,
+ "loss": 3.892622470855713,
+ "step": 1479
+ },
+ {
+ "epoch": 20.55919615552643,
+ "grad_norm": 0.19896996021270752,
+ "learning_rate": 0.0006,
+ "loss": 3.938734769821167,
+ "step": 1480
+ },
+ {
+ "epoch": 20.573176059414592,
+ "grad_norm": 0.20232494175434113,
+ "learning_rate": 0.0006,
+ "loss": 3.9197006225585938,
+ "step": 1481
+ },
+ {
+ "epoch": 20.587155963302752,
+ "grad_norm": 0.21807828545570374,
+ "learning_rate": 0.0006,
+ "loss": 3.9195618629455566,
+ "step": 1482
+ },
+ {
+ "epoch": 20.601135867190912,
+ "grad_norm": 0.21778680384159088,
+ "learning_rate": 0.0006,
+ "loss": 3.913395404815674,
+ "step": 1483
+ },
+ {
+ "epoch": 20.615115771079076,
+ "grad_norm": 0.21015185117721558,
+ "learning_rate": 0.0006,
+ "loss": 3.8858234882354736,
+ "step": 1484
+ },
+ {
+ "epoch": 20.629095674967235,
+ "grad_norm": 0.20131368935108185,
+ "learning_rate": 0.0006,
+ "loss": 3.927213430404663,
+ "step": 1485
+ },
+ {
+ "epoch": 20.643075578855395,
+ "grad_norm": 0.20746243000030518,
+ "learning_rate": 0.0006,
+ "loss": 3.913198471069336,
+ "step": 1486
+ },
+ {
+ "epoch": 20.657055482743555,
+ "grad_norm": 0.2024548053741455,
+ "learning_rate": 0.0006,
+ "loss": 3.923048257827759,
+ "step": 1487
+ },
+ {
+ "epoch": 20.67103538663172,
+ "grad_norm": 0.19735988974571228,
+ "learning_rate": 0.0006,
+ "loss": 3.9136500358581543,
+ "step": 1488
+ },
+ {
+ "epoch": 20.68501529051988,
+ "grad_norm": 0.19781625270843506,
+ "learning_rate": 0.0006,
+ "loss": 3.883793592453003,
+ "step": 1489
+ },
+ {
+ "epoch": 20.698995194408038,
+ "grad_norm": 0.1911996454000473,
+ "learning_rate": 0.0006,
+ "loss": 3.9078567028045654,
+ "step": 1490
+ },
+ {
+ "epoch": 20.712975098296198,
+ "grad_norm": 0.1989123821258545,
+ "learning_rate": 0.0006,
+ "loss": 3.9314043521881104,
+ "step": 1491
+ },
+ {
+ "epoch": 20.72695500218436,
+ "grad_norm": 0.18839342892169952,
+ "learning_rate": 0.0006,
+ "loss": 3.8955953121185303,
+ "step": 1492
+ },
+ {
+ "epoch": 20.74093490607252,
+ "grad_norm": 0.1944834142923355,
+ "learning_rate": 0.0006,
+ "loss": 3.9272377490997314,
+ "step": 1493
+ },
+ {
+ "epoch": 20.75491480996068,
+ "grad_norm": 0.20829126238822937,
+ "learning_rate": 0.0006,
+ "loss": 3.878857374191284,
+ "step": 1494
+ },
+ {
+ "epoch": 20.76889471384884,
+ "grad_norm": 0.21438424289226532,
+ "learning_rate": 0.0006,
+ "loss": 3.9155564308166504,
+ "step": 1495
+ },
+ {
+ "epoch": 20.782874617737004,
+ "grad_norm": 0.22309324145317078,
+ "learning_rate": 0.0006,
+ "loss": 3.9281692504882812,
+ "step": 1496
+ },
+ {
+ "epoch": 20.796854521625164,
+ "grad_norm": 0.2053767591714859,
+ "learning_rate": 0.0006,
+ "loss": 3.9096317291259766,
+ "step": 1497
+ },
+ {
+ "epoch": 20.810834425513324,
+ "grad_norm": 0.20429186522960663,
+ "learning_rate": 0.0006,
+ "loss": 3.9184865951538086,
+ "step": 1498
+ },
+ {
+ "epoch": 20.824814329401484,
+ "grad_norm": 0.21983473002910614,
+ "learning_rate": 0.0006,
+ "loss": 3.9130771160125732,
+ "step": 1499
+ },
+ {
+ "epoch": 20.838794233289647,
+ "grad_norm": 0.21649539470672607,
+ "learning_rate": 0.0006,
+ "loss": 3.921581268310547,
+ "step": 1500
+ },
+ {
+ "epoch": 20.852774137177807,
+ "grad_norm": 0.19645053148269653,
+ "learning_rate": 0.0006,
+ "loss": 3.966360092163086,
+ "step": 1501
+ },
+ {
+ "epoch": 20.866754041065967,
+ "grad_norm": 0.2126782387495041,
+ "learning_rate": 0.0006,
+ "loss": 3.9004554748535156,
+ "step": 1502
+ },
+ {
+ "epoch": 20.88073394495413,
+ "grad_norm": 0.22359658777713776,
+ "learning_rate": 0.0006,
+ "loss": 3.92336368560791,
+ "step": 1503
+ },
+ {
+ "epoch": 20.89471384884229,
+ "grad_norm": 0.2334042638540268,
+ "learning_rate": 0.0006,
+ "loss": 3.9188671112060547,
+ "step": 1504
+ },
+ {
+ "epoch": 20.90869375273045,
+ "grad_norm": 0.24595916271209717,
+ "learning_rate": 0.0006,
+ "loss": 3.9348371028900146,
+ "step": 1505
+ },
+ {
+ "epoch": 20.92267365661861,
+ "grad_norm": 0.24177910387516022,
+ "learning_rate": 0.0006,
+ "loss": 3.8796424865722656,
+ "step": 1506
+ },
+ {
+ "epoch": 20.936653560506773,
+ "grad_norm": 0.24193289875984192,
+ "learning_rate": 0.0006,
+ "loss": 3.892627716064453,
+ "step": 1507
+ },
+ {
+ "epoch": 20.950633464394933,
+ "grad_norm": 0.252849280834198,
+ "learning_rate": 0.0006,
+ "loss": 3.9300179481506348,
+ "step": 1508
+ },
+ {
+ "epoch": 20.964613368283093,
+ "grad_norm": 0.24933326244354248,
+ "learning_rate": 0.0006,
+ "loss": 3.9597225189208984,
+ "step": 1509
+ },
+ {
+ "epoch": 20.978593272171253,
+ "grad_norm": 0.23850969970226288,
+ "learning_rate": 0.0006,
+ "loss": 3.9027397632598877,
+ "step": 1510
+ },
+ {
+ "epoch": 20.992573176059416,
+ "grad_norm": 0.23298311233520508,
+ "learning_rate": 0.0006,
+ "loss": 3.9024105072021484,
+ "step": 1511
+ },
+ {
+ "epoch": 21.0,
+ "grad_norm": 0.2467455416917801,
+ "learning_rate": 0.0006,
+ "loss": 3.915929079055786,
+ "step": 1512
+ },
+ {
+ "epoch": 21.0,
+ "eval_loss": 4.136331081390381,
+ "eval_runtime": 43.9468,
+ "eval_samples_per_second": 55.567,
+ "eval_steps_per_second": 3.481,
+ "step": 1512
+ },
+ {
+ "epoch": 21.01397990388816,
+ "grad_norm": 0.2195885181427002,
+ "learning_rate": 0.0006,
+ "loss": 3.873412847518921,
+ "step": 1513
+ },
+ {
+ "epoch": 21.027959807776323,
+ "grad_norm": 0.24250614643096924,
+ "learning_rate": 0.0006,
+ "loss": 3.882302761077881,
+ "step": 1514
+ },
+ {
+ "epoch": 21.041939711664483,
+ "grad_norm": 0.249113991856575,
+ "learning_rate": 0.0006,
+ "loss": 3.9112048149108887,
+ "step": 1515
+ },
+ {
+ "epoch": 21.055919615552643,
+ "grad_norm": 0.25365301966667175,
+ "learning_rate": 0.0006,
+ "loss": 3.8625712394714355,
+ "step": 1516
+ },
+ {
+ "epoch": 21.069899519440803,
+ "grad_norm": 0.2218591272830963,
+ "learning_rate": 0.0006,
+ "loss": 3.876072406768799,
+ "step": 1517
+ },
+ {
+ "epoch": 21.083879423328966,
+ "grad_norm": 0.238582581281662,
+ "learning_rate": 0.0006,
+ "loss": 3.862060546875,
+ "step": 1518
+ },
+ {
+ "epoch": 21.097859327217126,
+ "grad_norm": 0.25051242113113403,
+ "learning_rate": 0.0006,
+ "loss": 3.905315399169922,
+ "step": 1519
+ },
+ {
+ "epoch": 21.111839231105286,
+ "grad_norm": 0.2391843944787979,
+ "learning_rate": 0.0006,
+ "loss": 3.909144401550293,
+ "step": 1520
+ },
+ {
+ "epoch": 21.125819134993446,
+ "grad_norm": 0.230543315410614,
+ "learning_rate": 0.0006,
+ "loss": 3.8856799602508545,
+ "step": 1521
+ },
+ {
+ "epoch": 21.13979903888161,
+ "grad_norm": 0.24165484309196472,
+ "learning_rate": 0.0006,
+ "loss": 3.893883228302002,
+ "step": 1522
+ },
+ {
+ "epoch": 21.15377894276977,
+ "grad_norm": 0.24657143652439117,
+ "learning_rate": 0.0006,
+ "loss": 3.901129722595215,
+ "step": 1523
+ },
+ {
+ "epoch": 21.16775884665793,
+ "grad_norm": 0.2659998834133148,
+ "learning_rate": 0.0006,
+ "loss": 3.910468101501465,
+ "step": 1524
+ },
+ {
+ "epoch": 21.18173875054609,
+ "grad_norm": 0.2673095166683197,
+ "learning_rate": 0.0006,
+ "loss": 3.917454242706299,
+ "step": 1525
+ },
+ {
+ "epoch": 21.195718654434252,
+ "grad_norm": 0.22122322022914886,
+ "learning_rate": 0.0006,
+ "loss": 3.9017257690429688,
+ "step": 1526
+ },
+ {
+ "epoch": 21.209698558322412,
+ "grad_norm": 0.21882867813110352,
+ "learning_rate": 0.0006,
+ "loss": 3.8605496883392334,
+ "step": 1527
+ },
+ {
+ "epoch": 21.22367846221057,
+ "grad_norm": 0.22335563600063324,
+ "learning_rate": 0.0006,
+ "loss": 3.88120174407959,
+ "step": 1528
+ },
+ {
+ "epoch": 21.23765836609873,
+ "grad_norm": 0.22973211109638214,
+ "learning_rate": 0.0006,
+ "loss": 3.8636834621429443,
+ "step": 1529
+ },
+ {
+ "epoch": 21.251638269986895,
+ "grad_norm": 0.2410288006067276,
+ "learning_rate": 0.0006,
+ "loss": 3.8698177337646484,
+ "step": 1530
+ },
+ {
+ "epoch": 21.265618173875055,
+ "grad_norm": 0.2454768717288971,
+ "learning_rate": 0.0006,
+ "loss": 3.905341148376465,
+ "step": 1531
+ },
+ {
+ "epoch": 21.279598077763215,
+ "grad_norm": 0.2271580696105957,
+ "learning_rate": 0.0006,
+ "loss": 3.864063262939453,
+ "step": 1532
+ },
+ {
+ "epoch": 21.293577981651374,
+ "grad_norm": 0.2200947403907776,
+ "learning_rate": 0.0006,
+ "loss": 3.8889589309692383,
+ "step": 1533
+ },
+ {
+ "epoch": 21.307557885539538,
+ "grad_norm": 0.2180824875831604,
+ "learning_rate": 0.0006,
+ "loss": 3.8873472213745117,
+ "step": 1534
+ },
+ {
+ "epoch": 21.321537789427698,
+ "grad_norm": 0.214975506067276,
+ "learning_rate": 0.0006,
+ "loss": 3.882307529449463,
+ "step": 1535
+ },
+ {
+ "epoch": 21.335517693315857,
+ "grad_norm": 0.21411260962486267,
+ "learning_rate": 0.0006,
+ "loss": 3.8861560821533203,
+ "step": 1536
+ },
+ {
+ "epoch": 21.34949759720402,
+ "grad_norm": 0.22635889053344727,
+ "learning_rate": 0.0006,
+ "loss": 3.9174342155456543,
+ "step": 1537
+ },
+ {
+ "epoch": 21.36347750109218,
+ "grad_norm": 0.22700625658035278,
+ "learning_rate": 0.0006,
+ "loss": 3.890416383743286,
+ "step": 1538
+ },
+ {
+ "epoch": 21.37745740498034,
+ "grad_norm": 0.2106025069952011,
+ "learning_rate": 0.0006,
+ "loss": 3.8672406673431396,
+ "step": 1539
+ },
+ {
+ "epoch": 21.3914373088685,
+ "grad_norm": 0.22994661331176758,
+ "learning_rate": 0.0006,
+ "loss": 3.893190383911133,
+ "step": 1540
+ },
+ {
+ "epoch": 21.405417212756664,
+ "grad_norm": 0.24701105058193207,
+ "learning_rate": 0.0006,
+ "loss": 3.898078441619873,
+ "step": 1541
+ },
+ {
+ "epoch": 21.419397116644824,
+ "grad_norm": 0.26914113759994507,
+ "learning_rate": 0.0006,
+ "loss": 3.905871868133545,
+ "step": 1542
+ },
+ {
+ "epoch": 21.433377020532983,
+ "grad_norm": 0.2904224097728729,
+ "learning_rate": 0.0006,
+ "loss": 3.8919103145599365,
+ "step": 1543
+ },
+ {
+ "epoch": 21.447356924421143,
+ "grad_norm": 0.2911844551563263,
+ "learning_rate": 0.0006,
+ "loss": 3.9073286056518555,
+ "step": 1544
+ },
+ {
+ "epoch": 21.461336828309307,
+ "grad_norm": 0.2742345929145813,
+ "learning_rate": 0.0006,
+ "loss": 3.9075546264648438,
+ "step": 1545
+ },
+ {
+ "epoch": 21.475316732197467,
+ "grad_norm": 0.2341093122959137,
+ "learning_rate": 0.0006,
+ "loss": 3.9232025146484375,
+ "step": 1546
+ },
+ {
+ "epoch": 21.489296636085626,
+ "grad_norm": 0.22808541357517242,
+ "learning_rate": 0.0006,
+ "loss": 3.9168174266815186,
+ "step": 1547
+ },
+ {
+ "epoch": 21.503276539973786,
+ "grad_norm": 0.23049889504909515,
+ "learning_rate": 0.0006,
+ "loss": 3.8850595951080322,
+ "step": 1548
+ },
+ {
+ "epoch": 21.51725644386195,
+ "grad_norm": 0.21519650518894196,
+ "learning_rate": 0.0006,
+ "loss": 3.891313076019287,
+ "step": 1549
+ },
+ {
+ "epoch": 21.53123634775011,
+ "grad_norm": 0.20999883115291595,
+ "learning_rate": 0.0006,
+ "loss": 3.894439220428467,
+ "step": 1550
+ },
+ {
+ "epoch": 21.54521625163827,
+ "grad_norm": 0.19641105830669403,
+ "learning_rate": 0.0006,
+ "loss": 3.894871473312378,
+ "step": 1551
+ },
+ {
+ "epoch": 21.55919615552643,
+ "grad_norm": 0.19108249247074127,
+ "learning_rate": 0.0006,
+ "loss": 3.905968189239502,
+ "step": 1552
+ },
+ {
+ "epoch": 21.573176059414592,
+ "grad_norm": 0.20222234725952148,
+ "learning_rate": 0.0006,
+ "loss": 3.90565824508667,
+ "step": 1553
+ },
+ {
+ "epoch": 21.587155963302752,
+ "grad_norm": 0.20620177686214447,
+ "learning_rate": 0.0006,
+ "loss": 3.9103245735168457,
+ "step": 1554
+ },
+ {
+ "epoch": 21.601135867190912,
+ "grad_norm": 0.2149713784456253,
+ "learning_rate": 0.0006,
+ "loss": 3.8864927291870117,
+ "step": 1555
+ },
+ {
+ "epoch": 21.615115771079076,
+ "grad_norm": 0.2354084551334381,
+ "learning_rate": 0.0006,
+ "loss": 3.905095100402832,
+ "step": 1556
+ },
+ {
+ "epoch": 21.629095674967235,
+ "grad_norm": 0.23949941992759705,
+ "learning_rate": 0.0006,
+ "loss": 3.901803493499756,
+ "step": 1557
+ },
+ {
+ "epoch": 21.643075578855395,
+ "grad_norm": 0.22914277017116547,
+ "learning_rate": 0.0006,
+ "loss": 3.876044273376465,
+ "step": 1558
+ },
+ {
+ "epoch": 21.657055482743555,
+ "grad_norm": 0.2363225370645523,
+ "learning_rate": 0.0006,
+ "loss": 3.910841703414917,
+ "step": 1559
+ },
+ {
+ "epoch": 21.67103538663172,
+ "grad_norm": 0.2635626792907715,
+ "learning_rate": 0.0006,
+ "loss": 3.847407579421997,
+ "step": 1560
+ },
+ {
+ "epoch": 21.68501529051988,
+ "grad_norm": 0.2499786615371704,
+ "learning_rate": 0.0006,
+ "loss": 3.8667140007019043,
+ "step": 1561
+ },
+ {
+ "epoch": 21.698995194408038,
+ "grad_norm": 0.21609611809253693,
+ "learning_rate": 0.0006,
+ "loss": 3.895470142364502,
+ "step": 1562
+ },
+ {
+ "epoch": 21.712975098296198,
+ "grad_norm": 0.2466774582862854,
+ "learning_rate": 0.0006,
+ "loss": 3.8853235244750977,
+ "step": 1563
+ },
+ {
+ "epoch": 21.72695500218436,
+ "grad_norm": 0.23791883885860443,
+ "learning_rate": 0.0006,
+ "loss": 3.899418354034424,
+ "step": 1564
+ },
+ {
+ "epoch": 21.74093490607252,
+ "grad_norm": 0.2048920840024948,
+ "learning_rate": 0.0006,
+ "loss": 3.8992419242858887,
+ "step": 1565
+ },
+ {
+ "epoch": 21.75491480996068,
+ "grad_norm": 0.22266621887683868,
+ "learning_rate": 0.0006,
+ "loss": 3.885765552520752,
+ "step": 1566
+ },
+ {
+ "epoch": 21.76889471384884,
+ "grad_norm": 0.2508748769760132,
+ "learning_rate": 0.0006,
+ "loss": 3.8797037601470947,
+ "step": 1567
+ },
+ {
+ "epoch": 21.782874617737004,
+ "grad_norm": 0.27245673537254333,
+ "learning_rate": 0.0006,
+ "loss": 3.8743176460266113,
+ "step": 1568
+ },
+ {
+ "epoch": 21.796854521625164,
+ "grad_norm": 0.25503191351890564,
+ "learning_rate": 0.0006,
+ "loss": 3.868906259536743,
+ "step": 1569
+ },
+ {
+ "epoch": 21.810834425513324,
+ "grad_norm": 0.22984394431114197,
+ "learning_rate": 0.0006,
+ "loss": 3.9051015377044678,
+ "step": 1570
+ },
+ {
+ "epoch": 21.824814329401484,
+ "grad_norm": 0.2411898821592331,
+ "learning_rate": 0.0006,
+ "loss": 3.8911490440368652,
+ "step": 1571
+ },
+ {
+ "epoch": 21.838794233289647,
+ "grad_norm": 0.22609318792819977,
+ "learning_rate": 0.0006,
+ "loss": 3.894839286804199,
+ "step": 1572
+ },
+ {
+ "epoch": 21.852774137177807,
+ "grad_norm": 0.21904583275318146,
+ "learning_rate": 0.0006,
+ "loss": 3.9314537048339844,
+ "step": 1573
+ },
+ {
+ "epoch": 21.866754041065967,
+ "grad_norm": 0.21869723498821259,
+ "learning_rate": 0.0006,
+ "loss": 3.9141433238983154,
+ "step": 1574
+ },
+ {
+ "epoch": 21.88073394495413,
+ "grad_norm": 0.21682019531726837,
+ "learning_rate": 0.0006,
+ "loss": 3.867898464202881,
+ "step": 1575
+ },
+ {
+ "epoch": 21.89471384884229,
+ "grad_norm": 0.2211964726448059,
+ "learning_rate": 0.0006,
+ "loss": 3.8892226219177246,
+ "step": 1576
+ },
+ {
+ "epoch": 21.90869375273045,
+ "grad_norm": 0.2097381353378296,
+ "learning_rate": 0.0006,
+ "loss": 3.9194154739379883,
+ "step": 1577
+ },
+ {
+ "epoch": 21.92267365661861,
+ "grad_norm": 0.21229565143585205,
+ "learning_rate": 0.0006,
+ "loss": 3.924694538116455,
+ "step": 1578
+ },
+ {
+ "epoch": 21.936653560506773,
+ "grad_norm": 0.2186083346605301,
+ "learning_rate": 0.0006,
+ "loss": 3.904440402984619,
+ "step": 1579
+ },
+ {
+ "epoch": 21.950633464394933,
+ "grad_norm": 0.21112321317195892,
+ "learning_rate": 0.0006,
+ "loss": 3.905674934387207,
+ "step": 1580
+ },
+ {
+ "epoch": 21.964613368283093,
+ "grad_norm": 0.20867373049259186,
+ "learning_rate": 0.0006,
+ "loss": 3.8761563301086426,
+ "step": 1581
+ },
+ {
+ "epoch": 21.978593272171253,
+ "grad_norm": 0.21640732884407043,
+ "learning_rate": 0.0006,
+ "loss": 3.871950149536133,
+ "step": 1582
+ },
+ {
+ "epoch": 21.992573176059416,
+ "grad_norm": 0.21920442581176758,
+ "learning_rate": 0.0006,
+ "loss": 3.8853464126586914,
+ "step": 1583
+ },
+ {
+ "epoch": 22.0,
+ "grad_norm": 0.24132665991783142,
+ "learning_rate": 0.0006,
+ "loss": 3.9012184143066406,
+ "step": 1584
+ },
+ {
+ "epoch": 22.0,
+ "eval_loss": 4.108598232269287,
+ "eval_runtime": 44.0434,
+ "eval_samples_per_second": 55.445,
+ "eval_steps_per_second": 3.474,
+ "step": 1584
+ },
+ {
+ "epoch": 22.01397990388816,
+ "grad_norm": 0.21989449858665466,
+ "learning_rate": 0.0006,
+ "loss": 3.8657469749450684,
+ "step": 1585
+ },
+ {
+ "epoch": 22.027959807776323,
+ "grad_norm": 0.20416802167892456,
+ "learning_rate": 0.0006,
+ "loss": 3.8682117462158203,
+ "step": 1586
+ },
+ {
+ "epoch": 22.041939711664483,
+ "grad_norm": 0.20651975274085999,
+ "learning_rate": 0.0006,
+ "loss": 3.8501222133636475,
+ "step": 1587
+ },
+ {
+ "epoch": 22.055919615552643,
+ "grad_norm": 0.22987176477909088,
+ "learning_rate": 0.0006,
+ "loss": 3.8830955028533936,
+ "step": 1588
+ },
+ {
+ "epoch": 22.069899519440803,
+ "grad_norm": 0.23308858275413513,
+ "learning_rate": 0.0006,
+ "loss": 3.8659040927886963,
+ "step": 1589
+ },
+ {
+ "epoch": 22.083879423328966,
+ "grad_norm": 0.2144266963005066,
+ "learning_rate": 0.0006,
+ "loss": 3.8311047554016113,
+ "step": 1590
+ },
+ {
+ "epoch": 22.097859327217126,
+ "grad_norm": 0.2052636295557022,
+ "learning_rate": 0.0006,
+ "loss": 3.8700156211853027,
+ "step": 1591
+ },
+ {
+ "epoch": 22.111839231105286,
+ "grad_norm": 0.22792384028434753,
+ "learning_rate": 0.0006,
+ "loss": 3.8799097537994385,
+ "step": 1592
+ },
+ {
+ "epoch": 22.125819134993446,
+ "grad_norm": 0.2533944249153137,
+ "learning_rate": 0.0006,
+ "loss": 3.874959945678711,
+ "step": 1593
+ },
+ {
+ "epoch": 22.13979903888161,
+ "grad_norm": 0.27126258611679077,
+ "learning_rate": 0.0006,
+ "loss": 3.863774299621582,
+ "step": 1594
+ },
+ {
+ "epoch": 22.15377894276977,
+ "grad_norm": 0.2634040415287018,
+ "learning_rate": 0.0006,
+ "loss": 3.8876869678497314,
+ "step": 1595
+ },
+ {
+ "epoch": 22.16775884665793,
+ "grad_norm": 0.267987459897995,
+ "learning_rate": 0.0006,
+ "loss": 3.871776819229126,
+ "step": 1596
+ },
+ {
+ "epoch": 22.18173875054609,
+ "grad_norm": 0.2972337305545807,
+ "learning_rate": 0.0006,
+ "loss": 3.8453969955444336,
+ "step": 1597
+ },
+ {
+ "epoch": 22.195718654434252,
+ "grad_norm": 0.3012159764766693,
+ "learning_rate": 0.0006,
+ "loss": 3.8774254322052,
+ "step": 1598
+ },
+ {
+ "epoch": 22.209698558322412,
+ "grad_norm": 0.27275875210762024,
+ "learning_rate": 0.0006,
+ "loss": 3.8558950424194336,
+ "step": 1599
+ },
+ {
+ "epoch": 22.22367846221057,
+ "grad_norm": 0.2817993462085724,
+ "learning_rate": 0.0006,
+ "loss": 3.872211217880249,
+ "step": 1600
+ },
+ {
+ "epoch": 22.23765836609873,
+ "grad_norm": 0.28823208808898926,
+ "learning_rate": 0.0006,
+ "loss": 3.847616672515869,
+ "step": 1601
+ },
+ {
+ "epoch": 22.251638269986895,
+ "grad_norm": 0.2646387815475464,
+ "learning_rate": 0.0006,
+ "loss": 3.8993802070617676,
+ "step": 1602
+ },
+ {
+ "epoch": 22.265618173875055,
+ "grad_norm": 0.27664077281951904,
+ "learning_rate": 0.0006,
+ "loss": 3.858553409576416,
+ "step": 1603
+ },
+ {
+ "epoch": 22.279598077763215,
+ "grad_norm": 0.27708905935287476,
+ "learning_rate": 0.0006,
+ "loss": 3.8691039085388184,
+ "step": 1604
+ },
+ {
+ "epoch": 22.293577981651374,
+ "grad_norm": 0.3045521378517151,
+ "learning_rate": 0.0006,
+ "loss": 3.8721439838409424,
+ "step": 1605
+ },
+ {
+ "epoch": 22.307557885539538,
+ "grad_norm": 0.3481914699077606,
+ "learning_rate": 0.0006,
+ "loss": 3.894503593444824,
+ "step": 1606
+ },
+ {
+ "epoch": 22.321537789427698,
+ "grad_norm": 0.3298046588897705,
+ "learning_rate": 0.0006,
+ "loss": 3.8420844078063965,
+ "step": 1607
+ },
+ {
+ "epoch": 22.335517693315857,
+ "grad_norm": 0.24967724084854126,
+ "learning_rate": 0.0006,
+ "loss": 3.8892619609832764,
+ "step": 1608
+ },
+ {
+ "epoch": 22.34949759720402,
+ "grad_norm": 0.22645241022109985,
+ "learning_rate": 0.0006,
+ "loss": 3.873265504837036,
+ "step": 1609
+ },
+ {
+ "epoch": 22.36347750109218,
+ "grad_norm": 0.22813954949378967,
+ "learning_rate": 0.0006,
+ "loss": 3.8658013343811035,
+ "step": 1610
+ },
+ {
+ "epoch": 22.37745740498034,
+ "grad_norm": 0.23825274407863617,
+ "learning_rate": 0.0006,
+ "loss": 3.885456085205078,
+ "step": 1611
+ },
+ {
+ "epoch": 22.3914373088685,
+ "grad_norm": 0.23612336814403534,
+ "learning_rate": 0.0006,
+ "loss": 3.851841449737549,
+ "step": 1612
+ },
+ {
+ "epoch": 22.405417212756664,
+ "grad_norm": 0.23851265013217926,
+ "learning_rate": 0.0006,
+ "loss": 3.8711647987365723,
+ "step": 1613
+ },
+ {
+ "epoch": 22.419397116644824,
+ "grad_norm": 0.22977286577224731,
+ "learning_rate": 0.0006,
+ "loss": 3.848539113998413,
+ "step": 1614
+ },
+ {
+ "epoch": 22.433377020532983,
+ "grad_norm": 0.20970143377780914,
+ "learning_rate": 0.0006,
+ "loss": 3.8709521293640137,
+ "step": 1615
+ },
+ {
+ "epoch": 22.447356924421143,
+ "grad_norm": 0.20714804530143738,
+ "learning_rate": 0.0006,
+ "loss": 3.875060558319092,
+ "step": 1616
+ },
+ {
+ "epoch": 22.461336828309307,
+ "grad_norm": 0.18881355226039886,
+ "learning_rate": 0.0006,
+ "loss": 3.8744640350341797,
+ "step": 1617
+ },
+ {
+ "epoch": 22.475316732197467,
+ "grad_norm": 0.1928759068250656,
+ "learning_rate": 0.0006,
+ "loss": 3.867971420288086,
+ "step": 1618
+ },
+ {
+ "epoch": 22.489296636085626,
+ "grad_norm": 0.18614749610424042,
+ "learning_rate": 0.0006,
+ "loss": 3.8738222122192383,
+ "step": 1619
+ },
+ {
+ "epoch": 22.503276539973786,
+ "grad_norm": 0.18614931404590607,
+ "learning_rate": 0.0006,
+ "loss": 3.8470513820648193,
+ "step": 1620
+ },
+ {
+ "epoch": 22.51725644386195,
+ "grad_norm": 0.17805059254169464,
+ "learning_rate": 0.0006,
+ "loss": 3.866396903991699,
+ "step": 1621
+ },
+ {
+ "epoch": 22.53123634775011,
+ "grad_norm": 0.16941314935684204,
+ "learning_rate": 0.0006,
+ "loss": 3.856832265853882,
+ "step": 1622
+ },
+ {
+ "epoch": 22.54521625163827,
+ "grad_norm": 0.1802310198545456,
+ "learning_rate": 0.0006,
+ "loss": 3.885653018951416,
+ "step": 1623
+ },
+ {
+ "epoch": 22.55919615552643,
+ "grad_norm": 0.1854856163263321,
+ "learning_rate": 0.0006,
+ "loss": 3.8779640197753906,
+ "step": 1624
+ },
+ {
+ "epoch": 22.573176059414592,
+ "grad_norm": 0.18765869736671448,
+ "learning_rate": 0.0006,
+ "loss": 3.8449032306671143,
+ "step": 1625
+ },
+ {
+ "epoch": 22.587155963302752,
+ "grad_norm": 0.1907789707183838,
+ "learning_rate": 0.0006,
+ "loss": 3.863029718399048,
+ "step": 1626
+ },
+ {
+ "epoch": 22.601135867190912,
+ "grad_norm": 0.19285395741462708,
+ "learning_rate": 0.0006,
+ "loss": 3.880145788192749,
+ "step": 1627
+ },
+ {
+ "epoch": 22.615115771079076,
+ "grad_norm": 0.19229751825332642,
+ "learning_rate": 0.0006,
+ "loss": 3.8521225452423096,
+ "step": 1628
+ },
+ {
+ "epoch": 22.629095674967235,
+ "grad_norm": 0.191694438457489,
+ "learning_rate": 0.0006,
+ "loss": 3.899827003479004,
+ "step": 1629
+ },
+ {
+ "epoch": 22.643075578855395,
+ "grad_norm": 0.20143048465251923,
+ "learning_rate": 0.0006,
+ "loss": 3.862064838409424,
+ "step": 1630
+ },
+ {
+ "epoch": 22.657055482743555,
+ "grad_norm": 0.1959840953350067,
+ "learning_rate": 0.0006,
+ "loss": 3.8955392837524414,
+ "step": 1631
+ },
+ {
+ "epoch": 22.67103538663172,
+ "grad_norm": 0.21454884111881256,
+ "learning_rate": 0.0006,
+ "loss": 3.8503167629241943,
+ "step": 1632
+ },
+ {
+ "epoch": 22.68501529051988,
+ "grad_norm": 0.21748484671115875,
+ "learning_rate": 0.0006,
+ "loss": 3.897134304046631,
+ "step": 1633
+ },
+ {
+ "epoch": 22.698995194408038,
+ "grad_norm": 0.21204186975955963,
+ "learning_rate": 0.0006,
+ "loss": 3.9292588233947754,
+ "step": 1634
+ },
+ {
+ "epoch": 22.712975098296198,
+ "grad_norm": 0.2112748771905899,
+ "learning_rate": 0.0006,
+ "loss": 3.89798641204834,
+ "step": 1635
+ },
+ {
+ "epoch": 22.72695500218436,
+ "grad_norm": 0.188576802611351,
+ "learning_rate": 0.0006,
+ "loss": 3.85627818107605,
+ "step": 1636
+ },
+ {
+ "epoch": 22.74093490607252,
+ "grad_norm": 0.17755994200706482,
+ "learning_rate": 0.0006,
+ "loss": 3.8480074405670166,
+ "step": 1637
+ },
+ {
+ "epoch": 22.75491480996068,
+ "grad_norm": 0.18037520349025726,
+ "learning_rate": 0.0006,
+ "loss": 3.8800172805786133,
+ "step": 1638
+ },
+ {
+ "epoch": 22.76889471384884,
+ "grad_norm": 0.19205765426158905,
+ "learning_rate": 0.0006,
+ "loss": 3.8658275604248047,
+ "step": 1639
+ },
+ {
+ "epoch": 22.782874617737004,
+ "grad_norm": 0.21801964938640594,
+ "learning_rate": 0.0006,
+ "loss": 3.8999452590942383,
+ "step": 1640
+ },
+ {
+ "epoch": 22.796854521625164,
+ "grad_norm": 0.23586086928844452,
+ "learning_rate": 0.0006,
+ "loss": 3.8660664558410645,
+ "step": 1641
+ },
+ {
+ "epoch": 22.810834425513324,
+ "grad_norm": 0.22289055585861206,
+ "learning_rate": 0.0006,
+ "loss": 3.86102557182312,
+ "step": 1642
+ },
+ {
+ "epoch": 22.824814329401484,
+ "grad_norm": 0.20695745944976807,
+ "learning_rate": 0.0006,
+ "loss": 3.8336222171783447,
+ "step": 1643
+ },
+ {
+ "epoch": 22.838794233289647,
+ "grad_norm": 0.2157406210899353,
+ "learning_rate": 0.0006,
+ "loss": 3.8923370838165283,
+ "step": 1644
+ },
+ {
+ "epoch": 22.852774137177807,
+ "grad_norm": 0.2326202690601349,
+ "learning_rate": 0.0006,
+ "loss": 3.8841443061828613,
+ "step": 1645
+ },
+ {
+ "epoch": 22.866754041065967,
+ "grad_norm": 0.2228803187608719,
+ "learning_rate": 0.0006,
+ "loss": 3.8791375160217285,
+ "step": 1646
+ },
+ {
+ "epoch": 22.88073394495413,
+ "grad_norm": 0.228999063372612,
+ "learning_rate": 0.0006,
+ "loss": 3.9005866050720215,
+ "step": 1647
+ },
+ {
+ "epoch": 22.89471384884229,
+ "grad_norm": 0.19673815369606018,
+ "learning_rate": 0.0006,
+ "loss": 3.8954291343688965,
+ "step": 1648
+ },
+ {
+ "epoch": 22.90869375273045,
+ "grad_norm": 0.1862584501504898,
+ "learning_rate": 0.0006,
+ "loss": 3.8591439723968506,
+ "step": 1649
+ },
+ {
+ "epoch": 22.92267365661861,
+ "grad_norm": 0.21360838413238525,
+ "learning_rate": 0.0006,
+ "loss": 3.862949848175049,
+ "step": 1650
+ },
+ {
+ "epoch": 22.936653560506773,
+ "grad_norm": 0.22538702189922333,
+ "learning_rate": 0.0006,
+ "loss": 3.8466529846191406,
+ "step": 1651
+ },
+ {
+ "epoch": 22.950633464394933,
+ "grad_norm": 0.21452727913856506,
+ "learning_rate": 0.0006,
+ "loss": 3.890007495880127,
+ "step": 1652
+ },
+ {
+ "epoch": 22.964613368283093,
+ "grad_norm": 0.21283482015132904,
+ "learning_rate": 0.0006,
+ "loss": 3.8820929527282715,
+ "step": 1653
+ },
+ {
+ "epoch": 22.978593272171253,
+ "grad_norm": 0.2035825103521347,
+ "learning_rate": 0.0006,
+ "loss": 3.8663241863250732,
+ "step": 1654
+ },
+ {
+ "epoch": 22.992573176059416,
+ "grad_norm": 0.22431661188602448,
+ "learning_rate": 0.0006,
+ "loss": 3.88238525390625,
+ "step": 1655
+ },
+ {
+ "epoch": 23.0,
+ "grad_norm": 0.2619943916797638,
+ "learning_rate": 0.0006,
+ "loss": 3.8482635021209717,
+ "step": 1656
+ },
+ {
+ "epoch": 23.0,
+ "eval_loss": 4.099980354309082,
+ "eval_runtime": 44.1311,
+ "eval_samples_per_second": 55.335,
+ "eval_steps_per_second": 3.467,
+ "step": 1656
+ },
+ {
+ "epoch": 23.01397990388816,
+ "grad_norm": 0.24712848663330078,
+ "learning_rate": 0.0006,
+ "loss": 3.836700916290283,
+ "step": 1657
+ },
+ {
+ "epoch": 23.027959807776323,
+ "grad_norm": 0.28568798303604126,
+ "learning_rate": 0.0006,
+ "loss": 3.8523952960968018,
+ "step": 1658
+ },
+ {
+ "epoch": 23.041939711664483,
+ "grad_norm": 0.2999744415283203,
+ "learning_rate": 0.0006,
+ "loss": 3.8229494094848633,
+ "step": 1659
+ },
+ {
+ "epoch": 23.055919615552643,
+ "grad_norm": 0.32080450654029846,
+ "learning_rate": 0.0006,
+ "loss": 3.8562774658203125,
+ "step": 1660
+ },
+ {
+ "epoch": 23.069899519440803,
+ "grad_norm": 0.293468177318573,
+ "learning_rate": 0.0006,
+ "loss": 3.889139175415039,
+ "step": 1661
+ },
+ {
+ "epoch": 23.083879423328966,
+ "grad_norm": 0.2605799436569214,
+ "learning_rate": 0.0006,
+ "loss": 3.838681221008301,
+ "step": 1662
+ },
+ {
+ "epoch": 23.097859327217126,
+ "grad_norm": 0.2656237483024597,
+ "learning_rate": 0.0006,
+ "loss": 3.8603532314300537,
+ "step": 1663
+ },
+ {
+ "epoch": 23.111839231105286,
+ "grad_norm": 0.27163293957710266,
+ "learning_rate": 0.0006,
+ "loss": 3.846987009048462,
+ "step": 1664
+ },
+ {
+ "epoch": 23.125819134993446,
+ "grad_norm": 0.2719763517379761,
+ "learning_rate": 0.0006,
+ "loss": 3.805354595184326,
+ "step": 1665
+ },
+ {
+ "epoch": 23.13979903888161,
+ "grad_norm": 0.25786274671554565,
+ "learning_rate": 0.0006,
+ "loss": 3.8486907482147217,
+ "step": 1666
+ },
+ {
+ "epoch": 23.15377894276977,
+ "grad_norm": 0.2675692141056061,
+ "learning_rate": 0.0006,
+ "loss": 3.816493511199951,
+ "step": 1667
+ },
+ {
+ "epoch": 23.16775884665793,
+ "grad_norm": 0.2711698114871979,
+ "learning_rate": 0.0006,
+ "loss": 3.851863384246826,
+ "step": 1668
+ },
+ {
+ "epoch": 23.18173875054609,
+ "grad_norm": 0.2588968873023987,
+ "learning_rate": 0.0006,
+ "loss": 3.860816717147827,
+ "step": 1669
+ },
+ {
+ "epoch": 23.195718654434252,
+ "grad_norm": 0.2458600401878357,
+ "learning_rate": 0.0006,
+ "loss": 3.8058223724365234,
+ "step": 1670
+ },
+ {
+ "epoch": 23.209698558322412,
+ "grad_norm": 0.22014005482196808,
+ "learning_rate": 0.0006,
+ "loss": 3.8686985969543457,
+ "step": 1671
+ },
+ {
+ "epoch": 23.22367846221057,
+ "grad_norm": 0.22450537979602814,
+ "learning_rate": 0.0006,
+ "loss": 3.8379364013671875,
+ "step": 1672
+ },
+ {
+ "epoch": 23.23765836609873,
+ "grad_norm": 0.22132326662540436,
+ "learning_rate": 0.0006,
+ "loss": 3.8873870372772217,
+ "step": 1673
+ },
+ {
+ "epoch": 23.251638269986895,
+ "grad_norm": 0.20994804799556732,
+ "learning_rate": 0.0006,
+ "loss": 3.821415424346924,
+ "step": 1674
+ },
+ {
+ "epoch": 23.265618173875055,
+ "grad_norm": 0.2040853649377823,
+ "learning_rate": 0.0006,
+ "loss": 3.831658124923706,
+ "step": 1675
+ },
+ {
+ "epoch": 23.279598077763215,
+ "grad_norm": 0.20878618955612183,
+ "learning_rate": 0.0006,
+ "loss": 3.838672637939453,
+ "step": 1676
+ },
+ {
+ "epoch": 23.293577981651374,
+ "grad_norm": 0.19974198937416077,
+ "learning_rate": 0.0006,
+ "loss": 3.8442561626434326,
+ "step": 1677
+ },
+ {
+ "epoch": 23.307557885539538,
+ "grad_norm": 0.20523984730243683,
+ "learning_rate": 0.0006,
+ "loss": 3.846139907836914,
+ "step": 1678
+ },
+ {
+ "epoch": 23.321537789427698,
+ "grad_norm": 0.2045847624540329,
+ "learning_rate": 0.0006,
+ "loss": 3.8597474098205566,
+ "step": 1679
+ },
+ {
+ "epoch": 23.335517693315857,
+ "grad_norm": 0.20957441627979279,
+ "learning_rate": 0.0006,
+ "loss": 3.8493881225585938,
+ "step": 1680
+ },
+ {
+ "epoch": 23.34949759720402,
+ "grad_norm": 0.2069379836320877,
+ "learning_rate": 0.0006,
+ "loss": 3.8510046005249023,
+ "step": 1681
+ },
+ {
+ "epoch": 23.36347750109218,
+ "grad_norm": 0.19627872109413147,
+ "learning_rate": 0.0006,
+ "loss": 3.844618320465088,
+ "step": 1682
+ },
+ {
+ "epoch": 23.37745740498034,
+ "grad_norm": 0.19599434733390808,
+ "learning_rate": 0.0006,
+ "loss": 3.8245465755462646,
+ "step": 1683
+ },
+ {
+ "epoch": 23.3914373088685,
+ "grad_norm": 0.2035072147846222,
+ "learning_rate": 0.0006,
+ "loss": 3.854422092437744,
+ "step": 1684
+ },
+ {
+ "epoch": 23.405417212756664,
+ "grad_norm": 0.21836814284324646,
+ "learning_rate": 0.0006,
+ "loss": 3.83512282371521,
+ "step": 1685
+ },
+ {
+ "epoch": 23.419397116644824,
+ "grad_norm": 0.22844630479812622,
+ "learning_rate": 0.0006,
+ "loss": 3.8744301795959473,
+ "step": 1686
+ },
+ {
+ "epoch": 23.433377020532983,
+ "grad_norm": 0.2259359359741211,
+ "learning_rate": 0.0006,
+ "loss": 3.8460323810577393,
+ "step": 1687
+ },
+ {
+ "epoch": 23.447356924421143,
+ "grad_norm": 0.24440120160579681,
+ "learning_rate": 0.0006,
+ "loss": 3.8543787002563477,
+ "step": 1688
+ },
+ {
+ "epoch": 23.461336828309307,
+ "grad_norm": 0.25063708424568176,
+ "learning_rate": 0.0006,
+ "loss": 3.851004123687744,
+ "step": 1689
+ },
+ {
+ "epoch": 23.475316732197467,
+ "grad_norm": 0.25515618920326233,
+ "learning_rate": 0.0006,
+ "loss": 3.8685030937194824,
+ "step": 1690
+ },
+ {
+ "epoch": 23.489296636085626,
+ "grad_norm": 0.23961050808429718,
+ "learning_rate": 0.0006,
+ "loss": 3.866792678833008,
+ "step": 1691
+ },
+ {
+ "epoch": 23.503276539973786,
+ "grad_norm": 0.20880955457687378,
+ "learning_rate": 0.0006,
+ "loss": 3.8416638374328613,
+ "step": 1692
+ },
+ {
+ "epoch": 23.51725644386195,
+ "grad_norm": 0.1989721804857254,
+ "learning_rate": 0.0006,
+ "loss": 3.8608641624450684,
+ "step": 1693
+ },
+ {
+ "epoch": 23.53123634775011,
+ "grad_norm": 0.207577183842659,
+ "learning_rate": 0.0006,
+ "loss": 3.8431811332702637,
+ "step": 1694
+ },
+ {
+ "epoch": 23.54521625163827,
+ "grad_norm": 0.20844359695911407,
+ "learning_rate": 0.0006,
+ "loss": 3.882844924926758,
+ "step": 1695
+ },
+ {
+ "epoch": 23.55919615552643,
+ "grad_norm": 0.22511139512062073,
+ "learning_rate": 0.0006,
+ "loss": 3.866156578063965,
+ "step": 1696
+ },
+ {
+ "epoch": 23.573176059414592,
+ "grad_norm": 0.21648484468460083,
+ "learning_rate": 0.0006,
+ "loss": 3.87117075920105,
+ "step": 1697
+ },
+ {
+ "epoch": 23.587155963302752,
+ "grad_norm": 0.2081802636384964,
+ "learning_rate": 0.0006,
+ "loss": 3.828132152557373,
+ "step": 1698
+ },
+ {
+ "epoch": 23.601135867190912,
+ "grad_norm": 0.2017381489276886,
+ "learning_rate": 0.0006,
+ "loss": 3.839737892150879,
+ "step": 1699
+ },
+ {
+ "epoch": 23.615115771079076,
+ "grad_norm": 0.2025786191225052,
+ "learning_rate": 0.0006,
+ "loss": 3.8787710666656494,
+ "step": 1700
+ },
+ {
+ "epoch": 23.629095674967235,
+ "grad_norm": 0.21394102275371552,
+ "learning_rate": 0.0006,
+ "loss": 3.824047088623047,
+ "step": 1701
+ },
+ {
+ "epoch": 23.643075578855395,
+ "grad_norm": 0.20749174058437347,
+ "learning_rate": 0.0006,
+ "loss": 3.877009153366089,
+ "step": 1702
+ },
+ {
+ "epoch": 23.657055482743555,
+ "grad_norm": 0.2132839858531952,
+ "learning_rate": 0.0006,
+ "loss": 3.844214916229248,
+ "step": 1703
+ },
+ {
+ "epoch": 23.67103538663172,
+ "grad_norm": 0.22408637404441833,
+ "learning_rate": 0.0006,
+ "loss": 3.8570785522460938,
+ "step": 1704
+ },
+ {
+ "epoch": 23.68501529051988,
+ "grad_norm": 0.2275897115468979,
+ "learning_rate": 0.0006,
+ "loss": 3.8599512577056885,
+ "step": 1705
+ },
+ {
+ "epoch": 23.698995194408038,
+ "grad_norm": 0.2230614721775055,
+ "learning_rate": 0.0006,
+ "loss": 3.86374568939209,
+ "step": 1706
+ },
+ {
+ "epoch": 23.712975098296198,
+ "grad_norm": 0.21873739361763,
+ "learning_rate": 0.0006,
+ "loss": 3.8530168533325195,
+ "step": 1707
+ },
+ {
+ "epoch": 23.72695500218436,
+ "grad_norm": 0.24418923258781433,
+ "learning_rate": 0.0006,
+ "loss": 3.8410465717315674,
+ "step": 1708
+ },
+ {
+ "epoch": 23.74093490607252,
+ "grad_norm": 0.24894575774669647,
+ "learning_rate": 0.0006,
+ "loss": 3.8386030197143555,
+ "step": 1709
+ },
+ {
+ "epoch": 23.75491480996068,
+ "grad_norm": 0.221230611205101,
+ "learning_rate": 0.0006,
+ "loss": 3.8116674423217773,
+ "step": 1710
+ },
+ {
+ "epoch": 23.76889471384884,
+ "grad_norm": 0.20560568571090698,
+ "learning_rate": 0.0006,
+ "loss": 3.8634426593780518,
+ "step": 1711
+ },
+ {
+ "epoch": 23.782874617737004,
+ "grad_norm": 0.20450648665428162,
+ "learning_rate": 0.0006,
+ "loss": 3.8690528869628906,
+ "step": 1712
+ },
+ {
+ "epoch": 23.796854521625164,
+ "grad_norm": 0.18996809422969818,
+ "learning_rate": 0.0006,
+ "loss": 3.8484325408935547,
+ "step": 1713
+ },
+ {
+ "epoch": 23.810834425513324,
+ "grad_norm": 0.20165087282657623,
+ "learning_rate": 0.0006,
+ "loss": 3.8823161125183105,
+ "step": 1714
+ },
+ {
+ "epoch": 23.824814329401484,
+ "grad_norm": 0.21149255335330963,
+ "learning_rate": 0.0006,
+ "loss": 3.8833112716674805,
+ "step": 1715
+ },
+ {
+ "epoch": 23.838794233289647,
+ "grad_norm": 0.21254824101924896,
+ "learning_rate": 0.0006,
+ "loss": 3.8414595127105713,
+ "step": 1716
+ },
+ {
+ "epoch": 23.852774137177807,
+ "grad_norm": 0.21313664317131042,
+ "learning_rate": 0.0006,
+ "loss": 3.8732268810272217,
+ "step": 1717
+ },
+ {
+ "epoch": 23.866754041065967,
+ "grad_norm": 0.21635662019252777,
+ "learning_rate": 0.0006,
+ "loss": 3.861222743988037,
+ "step": 1718
+ },
+ {
+ "epoch": 23.88073394495413,
+ "grad_norm": 0.20612190663814545,
+ "learning_rate": 0.0006,
+ "loss": 3.821854591369629,
+ "step": 1719
+ },
+ {
+ "epoch": 23.89471384884229,
+ "grad_norm": 0.1975104659795761,
+ "learning_rate": 0.0006,
+ "loss": 3.8815202713012695,
+ "step": 1720
+ },
+ {
+ "epoch": 23.90869375273045,
+ "grad_norm": 0.20893609523773193,
+ "learning_rate": 0.0006,
+ "loss": 3.8581607341766357,
+ "step": 1721
+ },
+ {
+ "epoch": 23.92267365661861,
+ "grad_norm": 0.2125461846590042,
+ "learning_rate": 0.0006,
+ "loss": 3.839498281478882,
+ "step": 1722
+ },
+ {
+ "epoch": 23.936653560506773,
+ "grad_norm": 0.19985878467559814,
+ "learning_rate": 0.0006,
+ "loss": 3.856555223464966,
+ "step": 1723
+ },
+ {
+ "epoch": 23.950633464394933,
+ "grad_norm": 0.1922348290681839,
+ "learning_rate": 0.0006,
+ "loss": 3.8956782817840576,
+ "step": 1724
+ },
+ {
+ "epoch": 23.964613368283093,
+ "grad_norm": 0.2191949337720871,
+ "learning_rate": 0.0006,
+ "loss": 3.8582406044006348,
+ "step": 1725
+ },
+ {
+ "epoch": 23.978593272171253,
+ "grad_norm": 0.2569248676300049,
+ "learning_rate": 0.0006,
+ "loss": 3.855678081512451,
+ "step": 1726
+ },
+ {
+ "epoch": 23.992573176059416,
+ "grad_norm": 0.2641172409057617,
+ "learning_rate": 0.0006,
+ "loss": 3.8426473140716553,
+ "step": 1727
+ },
+ {
+ "epoch": 24.0,
+ "grad_norm": 0.29637208580970764,
+ "learning_rate": 0.0006,
+ "loss": 3.843040704727173,
+ "step": 1728
+ },
+ {
+ "epoch": 24.0,
+ "eval_loss": 4.075617790222168,
+ "eval_runtime": 43.9795,
+ "eval_samples_per_second": 55.526,
+ "eval_steps_per_second": 3.479,
+ "step": 1728
+ },
+ {
+ "epoch": 24.01397990388816,
+ "grad_norm": 0.2804758548736572,
+ "learning_rate": 0.0006,
+ "loss": 3.819150924682617,
+ "step": 1729
+ },
+ {
+ "epoch": 24.027959807776323,
+ "grad_norm": 0.2796347141265869,
+ "learning_rate": 0.0006,
+ "loss": 3.8400537967681885,
+ "step": 1730
+ },
+ {
+ "epoch": 24.041939711664483,
+ "grad_norm": 0.28388649225234985,
+ "learning_rate": 0.0006,
+ "loss": 3.844595432281494,
+ "step": 1731
+ },
+ {
+ "epoch": 24.055919615552643,
+ "grad_norm": 0.2944681942462921,
+ "learning_rate": 0.0006,
+ "loss": 3.8048014640808105,
+ "step": 1732
+ },
+ {
+ "epoch": 24.069899519440803,
+ "grad_norm": 0.2956784665584564,
+ "learning_rate": 0.0006,
+ "loss": 3.8488049507141113,
+ "step": 1733
+ },
+ {
+ "epoch": 24.083879423328966,
+ "grad_norm": 0.2822059392929077,
+ "learning_rate": 0.0006,
+ "loss": 3.850322723388672,
+ "step": 1734
+ },
+ {
+ "epoch": 24.097859327217126,
+ "grad_norm": 0.3012927174568176,
+ "learning_rate": 0.0006,
+ "loss": 3.8748154640197754,
+ "step": 1735
+ },
+ {
+ "epoch": 24.111839231105286,
+ "grad_norm": 0.28868764638900757,
+ "learning_rate": 0.0006,
+ "loss": 3.8282783031463623,
+ "step": 1736
+ },
+ {
+ "epoch": 24.125819134993446,
+ "grad_norm": 0.277203768491745,
+ "learning_rate": 0.0006,
+ "loss": 3.8462908267974854,
+ "step": 1737
+ },
+ {
+ "epoch": 24.13979903888161,
+ "grad_norm": 0.2654508948326111,
+ "learning_rate": 0.0006,
+ "loss": 3.8043856620788574,
+ "step": 1738
+ },
+ {
+ "epoch": 24.15377894276977,
+ "grad_norm": 0.24425740540027618,
+ "learning_rate": 0.0006,
+ "loss": 3.8284308910369873,
+ "step": 1739
+ },
+ {
+ "epoch": 24.16775884665793,
+ "grad_norm": 0.24407348036766052,
+ "learning_rate": 0.0006,
+ "loss": 3.8489203453063965,
+ "step": 1740
+ },
+ {
+ "epoch": 24.18173875054609,
+ "grad_norm": 0.2387724369764328,
+ "learning_rate": 0.0006,
+ "loss": 3.8240389823913574,
+ "step": 1741
+ },
+ {
+ "epoch": 24.195718654434252,
+ "grad_norm": 0.2832290232181549,
+ "learning_rate": 0.0006,
+ "loss": 3.869053363800049,
+ "step": 1742
+ },
+ {
+ "epoch": 24.209698558322412,
+ "grad_norm": 0.26501718163490295,
+ "learning_rate": 0.0006,
+ "loss": 3.8624343872070312,
+ "step": 1743
+ },
+ {
+ "epoch": 24.22367846221057,
+ "grad_norm": 0.24234668910503387,
+ "learning_rate": 0.0006,
+ "loss": 3.823103904724121,
+ "step": 1744
+ },
+ {
+ "epoch": 24.23765836609873,
+ "grad_norm": 0.24160076677799225,
+ "learning_rate": 0.0006,
+ "loss": 3.8174376487731934,
+ "step": 1745
+ },
+ {
+ "epoch": 24.251638269986895,
+ "grad_norm": 0.2447604238986969,
+ "learning_rate": 0.0006,
+ "loss": 3.8345441818237305,
+ "step": 1746
+ },
+ {
+ "epoch": 24.265618173875055,
+ "grad_norm": 0.22864456474781036,
+ "learning_rate": 0.0006,
+ "loss": 3.833101272583008,
+ "step": 1747
+ },
+ {
+ "epoch": 24.279598077763215,
+ "grad_norm": 0.20429204404354095,
+ "learning_rate": 0.0006,
+ "loss": 3.8055219650268555,
+ "step": 1748
+ },
+ {
+ "epoch": 24.293577981651374,
+ "grad_norm": 0.21538510918617249,
+ "learning_rate": 0.0006,
+ "loss": 3.7929327487945557,
+ "step": 1749
+ },
+ {
+ "epoch": 24.307557885539538,
+ "grad_norm": 0.2189008593559265,
+ "learning_rate": 0.0006,
+ "loss": 3.852264881134033,
+ "step": 1750
+ },
+ {
+ "epoch": 24.321537789427698,
+ "grad_norm": 0.2228662073612213,
+ "learning_rate": 0.0006,
+ "loss": 3.831088066101074,
+ "step": 1751
+ },
+ {
+ "epoch": 24.335517693315857,
+ "grad_norm": 0.2039937973022461,
+ "learning_rate": 0.0006,
+ "loss": 3.8358256816864014,
+ "step": 1752
+ },
+ {
+ "epoch": 24.34949759720402,
+ "grad_norm": 0.19247715175151825,
+ "learning_rate": 0.0006,
+ "loss": 3.8077402114868164,
+ "step": 1753
+ },
+ {
+ "epoch": 24.36347750109218,
+ "grad_norm": 0.18301935493946075,
+ "learning_rate": 0.0006,
+ "loss": 3.81380033493042,
+ "step": 1754
+ },
+ {
+ "epoch": 24.37745740498034,
+ "grad_norm": 0.19325268268585205,
+ "learning_rate": 0.0006,
+ "loss": 3.8447322845458984,
+ "step": 1755
+ },
+ {
+ "epoch": 24.3914373088685,
+ "grad_norm": 0.2007269263267517,
+ "learning_rate": 0.0006,
+ "loss": 3.82779860496521,
+ "step": 1756
+ },
+ {
+ "epoch": 24.405417212756664,
+ "grad_norm": 0.20567037165164948,
+ "learning_rate": 0.0006,
+ "loss": 3.800354480743408,
+ "step": 1757
+ },
+ {
+ "epoch": 24.419397116644824,
+ "grad_norm": 0.22553028166294098,
+ "learning_rate": 0.0006,
+ "loss": 3.7910406589508057,
+ "step": 1758
+ },
+ {
+ "epoch": 24.433377020532983,
+ "grad_norm": 0.22697079181671143,
+ "learning_rate": 0.0006,
+ "loss": 3.857635974884033,
+ "step": 1759
+ },
+ {
+ "epoch": 24.447356924421143,
+ "grad_norm": 0.22090297937393188,
+ "learning_rate": 0.0006,
+ "loss": 3.8112804889678955,
+ "step": 1760
+ },
+ {
+ "epoch": 24.461336828309307,
+ "grad_norm": 0.24325518310070038,
+ "learning_rate": 0.0006,
+ "loss": 3.822084426879883,
+ "step": 1761
+ },
+ {
+ "epoch": 24.475316732197467,
+ "grad_norm": 0.2702929377555847,
+ "learning_rate": 0.0006,
+ "loss": 3.8307600021362305,
+ "step": 1762
+ },
+ {
+ "epoch": 24.489296636085626,
+ "grad_norm": 0.2699742317199707,
+ "learning_rate": 0.0006,
+ "loss": 3.8479247093200684,
+ "step": 1763
+ },
+ {
+ "epoch": 24.503276539973786,
+ "grad_norm": 0.2526061236858368,
+ "learning_rate": 0.0006,
+ "loss": 3.8615071773529053,
+ "step": 1764
+ },
+ {
+ "epoch": 24.51725644386195,
+ "grad_norm": 0.2633848190307617,
+ "learning_rate": 0.0006,
+ "loss": 3.8412697315216064,
+ "step": 1765
+ },
+ {
+ "epoch": 24.53123634775011,
+ "grad_norm": 0.2711184024810791,
+ "learning_rate": 0.0006,
+ "loss": 3.83647084236145,
+ "step": 1766
+ },
+ {
+ "epoch": 24.54521625163827,
+ "grad_norm": 0.2691243588924408,
+ "learning_rate": 0.0006,
+ "loss": 3.8489012718200684,
+ "step": 1767
+ },
+ {
+ "epoch": 24.55919615552643,
+ "grad_norm": 0.2580898404121399,
+ "learning_rate": 0.0006,
+ "loss": 3.8464407920837402,
+ "step": 1768
+ },
+ {
+ "epoch": 24.573176059414592,
+ "grad_norm": 0.21342119574546814,
+ "learning_rate": 0.0006,
+ "loss": 3.8279383182525635,
+ "step": 1769
+ },
+ {
+ "epoch": 24.587155963302752,
+ "grad_norm": 0.22102399170398712,
+ "learning_rate": 0.0006,
+ "loss": 3.841676712036133,
+ "step": 1770
+ },
+ {
+ "epoch": 24.601135867190912,
+ "grad_norm": 0.2882173955440521,
+ "learning_rate": 0.0006,
+ "loss": 3.825528383255005,
+ "step": 1771
+ },
+ {
+ "epoch": 24.615115771079076,
+ "grad_norm": 0.3403635323047638,
+ "learning_rate": 0.0006,
+ "loss": 3.8282246589660645,
+ "step": 1772
+ },
+ {
+ "epoch": 24.629095674967235,
+ "grad_norm": 0.32192692160606384,
+ "learning_rate": 0.0006,
+ "loss": 3.8411307334899902,
+ "step": 1773
+ },
+ {
+ "epoch": 24.643075578855395,
+ "grad_norm": 0.2534109055995941,
+ "learning_rate": 0.0006,
+ "loss": 3.843007802963257,
+ "step": 1774
+ },
+ {
+ "epoch": 24.657055482743555,
+ "grad_norm": 0.25483962893486023,
+ "learning_rate": 0.0006,
+ "loss": 3.848358154296875,
+ "step": 1775
+ },
+ {
+ "epoch": 24.67103538663172,
+ "grad_norm": 0.25175443291664124,
+ "learning_rate": 0.0006,
+ "loss": 3.8232598304748535,
+ "step": 1776
+ },
+ {
+ "epoch": 24.68501529051988,
+ "grad_norm": 0.20538510382175446,
+ "learning_rate": 0.0006,
+ "loss": 3.857635498046875,
+ "step": 1777
+ },
+ {
+ "epoch": 24.698995194408038,
+ "grad_norm": 0.240861177444458,
+ "learning_rate": 0.0006,
+ "loss": 3.83717679977417,
+ "step": 1778
+ },
+ {
+ "epoch": 24.712975098296198,
+ "grad_norm": 0.23646967113018036,
+ "learning_rate": 0.0006,
+ "loss": 3.81032133102417,
+ "step": 1779
+ },
+ {
+ "epoch": 24.72695500218436,
+ "grad_norm": 0.2164423167705536,
+ "learning_rate": 0.0006,
+ "loss": 3.807878255844116,
+ "step": 1780
+ },
+ {
+ "epoch": 24.74093490607252,
+ "grad_norm": 0.21160705387592316,
+ "learning_rate": 0.0006,
+ "loss": 3.870394468307495,
+ "step": 1781
+ },
+ {
+ "epoch": 24.75491480996068,
+ "grad_norm": 0.20284807682037354,
+ "learning_rate": 0.0006,
+ "loss": 3.842154026031494,
+ "step": 1782
+ },
+ {
+ "epoch": 24.76889471384884,
+ "grad_norm": 0.20738485455513,
+ "learning_rate": 0.0006,
+ "loss": 3.8347136974334717,
+ "step": 1783
+ },
+ {
+ "epoch": 24.782874617737004,
+ "grad_norm": 0.20253778994083405,
+ "learning_rate": 0.0006,
+ "loss": 3.814948320388794,
+ "step": 1784
+ },
+ {
+ "epoch": 24.796854521625164,
+ "grad_norm": 0.20567010343074799,
+ "learning_rate": 0.0006,
+ "loss": 3.8354592323303223,
+ "step": 1785
+ },
+ {
+ "epoch": 24.810834425513324,
+ "grad_norm": 0.20639720559120178,
+ "learning_rate": 0.0006,
+ "loss": 3.8336033821105957,
+ "step": 1786
+ },
+ {
+ "epoch": 24.824814329401484,
+ "grad_norm": 0.19978247582912445,
+ "learning_rate": 0.0006,
+ "loss": 3.8209140300750732,
+ "step": 1787
+ },
+ {
+ "epoch": 24.838794233289647,
+ "grad_norm": 0.20628373324871063,
+ "learning_rate": 0.0006,
+ "loss": 3.8372955322265625,
+ "step": 1788
+ },
+ {
+ "epoch": 24.852774137177807,
+ "grad_norm": 0.2266162782907486,
+ "learning_rate": 0.0006,
+ "loss": 3.850994110107422,
+ "step": 1789
+ },
+ {
+ "epoch": 24.866754041065967,
+ "grad_norm": 0.22567765414714813,
+ "learning_rate": 0.0006,
+ "loss": 3.8552165031433105,
+ "step": 1790
+ },
+ {
+ "epoch": 24.88073394495413,
+ "grad_norm": 0.228011354804039,
+ "learning_rate": 0.0006,
+ "loss": 3.8310747146606445,
+ "step": 1791
+ },
+ {
+ "epoch": 24.89471384884229,
+ "grad_norm": 0.23706914484500885,
+ "learning_rate": 0.0006,
+ "loss": 3.8369603157043457,
+ "step": 1792
+ },
+ {
+ "epoch": 24.90869375273045,
+ "grad_norm": 0.22669097781181335,
+ "learning_rate": 0.0006,
+ "loss": 3.8443825244903564,
+ "step": 1793
+ },
+ {
+ "epoch": 24.92267365661861,
+ "grad_norm": 0.2051001936197281,
+ "learning_rate": 0.0006,
+ "loss": 3.7938501834869385,
+ "step": 1794
+ },
+ {
+ "epoch": 24.936653560506773,
+ "grad_norm": 0.2091219276189804,
+ "learning_rate": 0.0006,
+ "loss": 3.8167076110839844,
+ "step": 1795
+ },
+ {
+ "epoch": 24.950633464394933,
+ "grad_norm": 0.20517204701900482,
+ "learning_rate": 0.0006,
+ "loss": 3.852670669555664,
+ "step": 1796
+ },
+ {
+ "epoch": 24.964613368283093,
+ "grad_norm": 0.19916993379592896,
+ "learning_rate": 0.0006,
+ "loss": 3.8410873413085938,
+ "step": 1797
+ },
+ {
+ "epoch": 24.978593272171253,
+ "grad_norm": 0.21313942968845367,
+ "learning_rate": 0.0006,
+ "loss": 3.8383948802948,
+ "step": 1798
+ },
+ {
+ "epoch": 24.992573176059416,
+ "grad_norm": 0.21042990684509277,
+ "learning_rate": 0.0006,
+ "loss": 3.8623173236846924,
+ "step": 1799
+ },
+ {
+ "epoch": 25.0,
+ "grad_norm": 0.23052045702934265,
+ "learning_rate": 0.0006,
+ "loss": 3.8646674156188965,
+ "step": 1800
+ },
+ {
+ "epoch": 25.0,
+ "eval_loss": 4.081690311431885,
+ "eval_runtime": 44.036,
+ "eval_samples_per_second": 55.455,
+ "eval_steps_per_second": 3.474,
+ "step": 1800
+ },
+ {
+ "epoch": 25.01397990388816,
+ "grad_norm": 0.22068746387958527,
+ "learning_rate": 0.0006,
+ "loss": 3.8002820014953613,
+ "step": 1801
+ },
+ {
+ "epoch": 25.027959807776323,
+ "grad_norm": 0.20711193978786469,
+ "learning_rate": 0.0006,
+ "loss": 3.787785768508911,
+ "step": 1802
+ },
+ {
+ "epoch": 25.041939711664483,
+ "grad_norm": 0.20659677684307098,
+ "learning_rate": 0.0006,
+ "loss": 3.80245304107666,
+ "step": 1803
+ },
+ {
+ "epoch": 25.055919615552643,
+ "grad_norm": 0.22891797125339508,
+ "learning_rate": 0.0006,
+ "loss": 3.784543514251709,
+ "step": 1804
+ },
+ {
+ "epoch": 25.069899519440803,
+ "grad_norm": 0.23679181933403015,
+ "learning_rate": 0.0006,
+ "loss": 3.8311429023742676,
+ "step": 1805
+ },
+ {
+ "epoch": 25.083879423328966,
+ "grad_norm": 0.2548872232437134,
+ "learning_rate": 0.0006,
+ "loss": 3.8047211170196533,
+ "step": 1806
+ },
+ {
+ "epoch": 25.097859327217126,
+ "grad_norm": 0.26181501150131226,
+ "learning_rate": 0.0006,
+ "loss": 3.837508201599121,
+ "step": 1807
+ },
+ {
+ "epoch": 25.111839231105286,
+ "grad_norm": 0.2548452913761139,
+ "learning_rate": 0.0006,
+ "loss": 3.831544876098633,
+ "step": 1808
+ },
+ {
+ "epoch": 25.125819134993446,
+ "grad_norm": 0.26177605986595154,
+ "learning_rate": 0.0006,
+ "loss": 3.805346965789795,
+ "step": 1809
+ },
+ {
+ "epoch": 25.13979903888161,
+ "grad_norm": 0.2608112394809723,
+ "learning_rate": 0.0006,
+ "loss": 3.8040924072265625,
+ "step": 1810
+ },
+ {
+ "epoch": 25.15377894276977,
+ "grad_norm": 0.2586037814617157,
+ "learning_rate": 0.0006,
+ "loss": 3.8102216720581055,
+ "step": 1811
+ },
+ {
+ "epoch": 25.16775884665793,
+ "grad_norm": 0.26258161664009094,
+ "learning_rate": 0.0006,
+ "loss": 3.8152549266815186,
+ "step": 1812
+ },
+ {
+ "epoch": 25.18173875054609,
+ "grad_norm": 0.2803022265434265,
+ "learning_rate": 0.0006,
+ "loss": 3.82576584815979,
+ "step": 1813
+ },
+ {
+ "epoch": 25.195718654434252,
+ "grad_norm": 0.2618221938610077,
+ "learning_rate": 0.0006,
+ "loss": 3.817220687866211,
+ "step": 1814
+ },
+ {
+ "epoch": 25.209698558322412,
+ "grad_norm": 0.23283469676971436,
+ "learning_rate": 0.0006,
+ "loss": 3.7999041080474854,
+ "step": 1815
+ },
+ {
+ "epoch": 25.22367846221057,
+ "grad_norm": 0.20110781490802765,
+ "learning_rate": 0.0006,
+ "loss": 3.783228874206543,
+ "step": 1816
+ },
+ {
+ "epoch": 25.23765836609873,
+ "grad_norm": 0.2231830358505249,
+ "learning_rate": 0.0006,
+ "loss": 3.8032913208007812,
+ "step": 1817
+ },
+ {
+ "epoch": 25.251638269986895,
+ "grad_norm": 0.21807286143302917,
+ "learning_rate": 0.0006,
+ "loss": 3.817028045654297,
+ "step": 1818
+ },
+ {
+ "epoch": 25.265618173875055,
+ "grad_norm": 0.22710664570331573,
+ "learning_rate": 0.0006,
+ "loss": 3.8201727867126465,
+ "step": 1819
+ },
+ {
+ "epoch": 25.279598077763215,
+ "grad_norm": 0.22299866378307343,
+ "learning_rate": 0.0006,
+ "loss": 3.8198719024658203,
+ "step": 1820
+ },
+ {
+ "epoch": 25.293577981651374,
+ "grad_norm": 0.20886564254760742,
+ "learning_rate": 0.0006,
+ "loss": 3.792414665222168,
+ "step": 1821
+ },
+ {
+ "epoch": 25.307557885539538,
+ "grad_norm": 0.20887352526187897,
+ "learning_rate": 0.0006,
+ "loss": 3.7634057998657227,
+ "step": 1822
+ },
+ {
+ "epoch": 25.321537789427698,
+ "grad_norm": 0.24560041725635529,
+ "learning_rate": 0.0006,
+ "loss": 3.79359769821167,
+ "step": 1823
+ },
+ {
+ "epoch": 25.335517693315857,
+ "grad_norm": 0.22767415642738342,
+ "learning_rate": 0.0006,
+ "loss": 3.8313469886779785,
+ "step": 1824
+ },
+ {
+ "epoch": 25.34949759720402,
+ "grad_norm": 0.21617893874645233,
+ "learning_rate": 0.0006,
+ "loss": 3.77200984954834,
+ "step": 1825
+ },
+ {
+ "epoch": 25.36347750109218,
+ "grad_norm": 0.21010833978652954,
+ "learning_rate": 0.0006,
+ "loss": 3.8042140007019043,
+ "step": 1826
+ },
+ {
+ "epoch": 25.37745740498034,
+ "grad_norm": 0.24087965488433838,
+ "learning_rate": 0.0006,
+ "loss": 3.8260979652404785,
+ "step": 1827
+ },
+ {
+ "epoch": 25.3914373088685,
+ "grad_norm": 0.2735275626182556,
+ "learning_rate": 0.0006,
+ "loss": 3.8499274253845215,
+ "step": 1828
+ },
+ {
+ "epoch": 25.405417212756664,
+ "grad_norm": 0.24831001460552216,
+ "learning_rate": 0.0006,
+ "loss": 3.8146448135375977,
+ "step": 1829
+ },
+ {
+ "epoch": 25.419397116644824,
+ "grad_norm": 0.21822866797447205,
+ "learning_rate": 0.0006,
+ "loss": 3.7845146656036377,
+ "step": 1830
+ },
+ {
+ "epoch": 25.433377020532983,
+ "grad_norm": 0.19948813319206238,
+ "learning_rate": 0.0006,
+ "loss": 3.823997974395752,
+ "step": 1831
+ },
+ {
+ "epoch": 25.447356924421143,
+ "grad_norm": 0.18342702090740204,
+ "learning_rate": 0.0006,
+ "loss": 3.8201193809509277,
+ "step": 1832
+ },
+ {
+ "epoch": 25.461336828309307,
+ "grad_norm": 0.19377560913562775,
+ "learning_rate": 0.0006,
+ "loss": 3.8069632053375244,
+ "step": 1833
+ },
+ {
+ "epoch": 25.475316732197467,
+ "grad_norm": 0.22348709404468536,
+ "learning_rate": 0.0006,
+ "loss": 3.7918643951416016,
+ "step": 1834
+ },
+ {
+ "epoch": 25.489296636085626,
+ "grad_norm": 0.24484702944755554,
+ "learning_rate": 0.0006,
+ "loss": 3.85046124458313,
+ "step": 1835
+ },
+ {
+ "epoch": 25.503276539973786,
+ "grad_norm": 0.2493520826101303,
+ "learning_rate": 0.0006,
+ "loss": 3.8043932914733887,
+ "step": 1836
+ },
+ {
+ "epoch": 25.51725644386195,
+ "grad_norm": 0.21509641408920288,
+ "learning_rate": 0.0006,
+ "loss": 3.8064627647399902,
+ "step": 1837
+ },
+ {
+ "epoch": 25.53123634775011,
+ "grad_norm": 0.21912820637226105,
+ "learning_rate": 0.0006,
+ "loss": 3.850588321685791,
+ "step": 1838
+ },
+ {
+ "epoch": 25.54521625163827,
+ "grad_norm": 0.28400927782058716,
+ "learning_rate": 0.0006,
+ "loss": 3.79818058013916,
+ "step": 1839
+ },
+ {
+ "epoch": 25.55919615552643,
+ "grad_norm": 0.32193225622177124,
+ "learning_rate": 0.0006,
+ "loss": 3.836275815963745,
+ "step": 1840
+ },
+ {
+ "epoch": 25.573176059414592,
+ "grad_norm": 0.2902325987815857,
+ "learning_rate": 0.0006,
+ "loss": 3.8080005645751953,
+ "step": 1841
+ },
+ {
+ "epoch": 25.587155963302752,
+ "grad_norm": 0.21759532392024994,
+ "learning_rate": 0.0006,
+ "loss": 3.8233771324157715,
+ "step": 1842
+ },
+ {
+ "epoch": 25.601135867190912,
+ "grad_norm": 0.19645214080810547,
+ "learning_rate": 0.0006,
+ "loss": 3.838881015777588,
+ "step": 1843
+ },
+ {
+ "epoch": 25.615115771079076,
+ "grad_norm": 0.19322903454303741,
+ "learning_rate": 0.0006,
+ "loss": 3.7870054244995117,
+ "step": 1844
+ },
+ {
+ "epoch": 25.629095674967235,
+ "grad_norm": 0.2074001580476761,
+ "learning_rate": 0.0006,
+ "loss": 3.8239974975585938,
+ "step": 1845
+ },
+ {
+ "epoch": 25.643075578855395,
+ "grad_norm": 0.2166101336479187,
+ "learning_rate": 0.0006,
+ "loss": 3.8290855884552,
+ "step": 1846
+ },
+ {
+ "epoch": 25.657055482743555,
+ "grad_norm": 0.23738539218902588,
+ "learning_rate": 0.0006,
+ "loss": 3.7993364334106445,
+ "step": 1847
+ },
+ {
+ "epoch": 25.67103538663172,
+ "grad_norm": 0.23882314562797546,
+ "learning_rate": 0.0006,
+ "loss": 3.802586078643799,
+ "step": 1848
+ },
+ {
+ "epoch": 25.68501529051988,
+ "grad_norm": 0.24168142676353455,
+ "learning_rate": 0.0006,
+ "loss": 3.8303489685058594,
+ "step": 1849
+ },
+ {
+ "epoch": 25.698995194408038,
+ "grad_norm": 0.22423343360424042,
+ "learning_rate": 0.0006,
+ "loss": 3.836228370666504,
+ "step": 1850
+ },
+ {
+ "epoch": 25.712975098296198,
+ "grad_norm": 0.23816974461078644,
+ "learning_rate": 0.0006,
+ "loss": 3.8380274772644043,
+ "step": 1851
+ },
+ {
+ "epoch": 25.72695500218436,
+ "grad_norm": 0.22465108335018158,
+ "learning_rate": 0.0006,
+ "loss": 3.8496339321136475,
+ "step": 1852
+ },
+ {
+ "epoch": 25.74093490607252,
+ "grad_norm": 0.20792442560195923,
+ "learning_rate": 0.0006,
+ "loss": 3.797853946685791,
+ "step": 1853
+ },
+ {
+ "epoch": 25.75491480996068,
+ "grad_norm": 0.20770230889320374,
+ "learning_rate": 0.0006,
+ "loss": 3.842322826385498,
+ "step": 1854
+ },
+ {
+ "epoch": 25.76889471384884,
+ "grad_norm": 0.1928192526102066,
+ "learning_rate": 0.0006,
+ "loss": 3.836540699005127,
+ "step": 1855
+ },
+ {
+ "epoch": 25.782874617737004,
+ "grad_norm": 0.19045178592205048,
+ "learning_rate": 0.0006,
+ "loss": 3.7758889198303223,
+ "step": 1856
+ },
+ {
+ "epoch": 25.796854521625164,
+ "grad_norm": 0.205548495054245,
+ "learning_rate": 0.0006,
+ "loss": 3.8244709968566895,
+ "step": 1857
+ },
+ {
+ "epoch": 25.810834425513324,
+ "grad_norm": 0.20968270301818848,
+ "learning_rate": 0.0006,
+ "loss": 3.8376216888427734,
+ "step": 1858
+ },
+ {
+ "epoch": 25.824814329401484,
+ "grad_norm": 0.18917354941368103,
+ "learning_rate": 0.0006,
+ "loss": 3.8497915267944336,
+ "step": 1859
+ },
+ {
+ "epoch": 25.838794233289647,
+ "grad_norm": 0.2050701528787613,
+ "learning_rate": 0.0006,
+ "loss": 3.819628953933716,
+ "step": 1860
+ },
+ {
+ "epoch": 25.852774137177807,
+ "grad_norm": 0.1981319785118103,
+ "learning_rate": 0.0006,
+ "loss": 3.8007922172546387,
+ "step": 1861
+ },
+ {
+ "epoch": 25.866754041065967,
+ "grad_norm": 0.19055861234664917,
+ "learning_rate": 0.0006,
+ "loss": 3.8304519653320312,
+ "step": 1862
+ },
+ {
+ "epoch": 25.88073394495413,
+ "grad_norm": 0.19255517423152924,
+ "learning_rate": 0.0006,
+ "loss": 3.833280563354492,
+ "step": 1863
+ },
+ {
+ "epoch": 25.89471384884229,
+ "grad_norm": 0.19059430062770844,
+ "learning_rate": 0.0006,
+ "loss": 3.813796281814575,
+ "step": 1864
+ },
+ {
+ "epoch": 25.90869375273045,
+ "grad_norm": 0.18581309914588928,
+ "learning_rate": 0.0006,
+ "loss": 3.8211798667907715,
+ "step": 1865
+ },
+ {
+ "epoch": 25.92267365661861,
+ "grad_norm": 0.20181003212928772,
+ "learning_rate": 0.0006,
+ "loss": 3.8380484580993652,
+ "step": 1866
+ },
+ {
+ "epoch": 25.936653560506773,
+ "grad_norm": 0.22334498167037964,
+ "learning_rate": 0.0006,
+ "loss": 3.8294434547424316,
+ "step": 1867
+ },
+ {
+ "epoch": 25.950633464394933,
+ "grad_norm": 0.20456703007221222,
+ "learning_rate": 0.0006,
+ "loss": 3.819223642349243,
+ "step": 1868
+ },
+ {
+ "epoch": 25.964613368283093,
+ "grad_norm": 0.1885606348514557,
+ "learning_rate": 0.0006,
+ "loss": 3.8110103607177734,
+ "step": 1869
+ },
+ {
+ "epoch": 25.978593272171253,
+ "grad_norm": 0.18862110376358032,
+ "learning_rate": 0.0006,
+ "loss": 3.788691997528076,
+ "step": 1870
+ },
+ {
+ "epoch": 25.992573176059416,
+ "grad_norm": 0.19802744686603546,
+ "learning_rate": 0.0006,
+ "loss": 3.8423619270324707,
+ "step": 1871
+ },
+ {
+ "epoch": 26.0,
+ "grad_norm": 0.23762032389640808,
+ "learning_rate": 0.0006,
+ "loss": 3.7848567962646484,
+ "step": 1872
+ },
+ {
+ "epoch": 26.0,
+ "eval_loss": 4.054965019226074,
+ "eval_runtime": 44.2423,
+ "eval_samples_per_second": 55.196,
+ "eval_steps_per_second": 3.458,
+ "step": 1872
+ },
+ {
+ "epoch": 26.01397990388816,
+ "grad_norm": 0.21533054113388062,
+ "learning_rate": 0.0006,
+ "loss": 3.8123154640197754,
+ "step": 1873
+ },
+ {
+ "epoch": 26.027959807776323,
+ "grad_norm": 0.25094854831695557,
+ "learning_rate": 0.0006,
+ "loss": 3.7847447395324707,
+ "step": 1874
+ },
+ {
+ "epoch": 26.041939711664483,
+ "grad_norm": 0.24042077362537384,
+ "learning_rate": 0.0006,
+ "loss": 3.8033599853515625,
+ "step": 1875
+ },
+ {
+ "epoch": 26.055919615552643,
+ "grad_norm": 0.2425149381160736,
+ "learning_rate": 0.0006,
+ "loss": 3.7828550338745117,
+ "step": 1876
+ },
+ {
+ "epoch": 26.069899519440803,
+ "grad_norm": 0.2300514280796051,
+ "learning_rate": 0.0006,
+ "loss": 3.750882148742676,
+ "step": 1877
+ },
+ {
+ "epoch": 26.083879423328966,
+ "grad_norm": 0.2513943612575531,
+ "learning_rate": 0.0006,
+ "loss": 3.800323963165283,
+ "step": 1878
+ },
+ {
+ "epoch": 26.097859327217126,
+ "grad_norm": 0.2536966800689697,
+ "learning_rate": 0.0006,
+ "loss": 3.8198962211608887,
+ "step": 1879
+ },
+ {
+ "epoch": 26.111839231105286,
+ "grad_norm": 0.24483931064605713,
+ "learning_rate": 0.0006,
+ "loss": 3.825563907623291,
+ "step": 1880
+ },
+ {
+ "epoch": 26.125819134993446,
+ "grad_norm": 0.2502584755420685,
+ "learning_rate": 0.0006,
+ "loss": 3.78756046295166,
+ "step": 1881
+ },
+ {
+ "epoch": 26.13979903888161,
+ "grad_norm": 0.2695745527744293,
+ "learning_rate": 0.0006,
+ "loss": 3.8205409049987793,
+ "step": 1882
+ },
+ {
+ "epoch": 26.15377894276977,
+ "grad_norm": 0.2873472273349762,
+ "learning_rate": 0.0006,
+ "loss": 3.7880778312683105,
+ "step": 1883
+ },
+ {
+ "epoch": 26.16775884665793,
+ "grad_norm": 0.28609949350357056,
+ "learning_rate": 0.0006,
+ "loss": 3.788517951965332,
+ "step": 1884
+ },
+ {
+ "epoch": 26.18173875054609,
+ "grad_norm": 0.28352269530296326,
+ "learning_rate": 0.0006,
+ "loss": 3.778015613555908,
+ "step": 1885
+ },
+ {
+ "epoch": 26.195718654434252,
+ "grad_norm": 0.27055084705352783,
+ "learning_rate": 0.0006,
+ "loss": 3.7857203483581543,
+ "step": 1886
+ },
+ {
+ "epoch": 26.209698558322412,
+ "grad_norm": 0.255647748708725,
+ "learning_rate": 0.0006,
+ "loss": 3.791355609893799,
+ "step": 1887
+ },
+ {
+ "epoch": 26.22367846221057,
+ "grad_norm": 0.22624439001083374,
+ "learning_rate": 0.0006,
+ "loss": 3.7624831199645996,
+ "step": 1888
+ },
+ {
+ "epoch": 26.23765836609873,
+ "grad_norm": 0.2283596396446228,
+ "learning_rate": 0.0006,
+ "loss": 3.8052897453308105,
+ "step": 1889
+ },
+ {
+ "epoch": 26.251638269986895,
+ "grad_norm": 0.2336510866880417,
+ "learning_rate": 0.0006,
+ "loss": 3.789015054702759,
+ "step": 1890
+ },
+ {
+ "epoch": 26.265618173875055,
+ "grad_norm": 0.24107608199119568,
+ "learning_rate": 0.0006,
+ "loss": 3.756551742553711,
+ "step": 1891
+ },
+ {
+ "epoch": 26.279598077763215,
+ "grad_norm": 0.22438564896583557,
+ "learning_rate": 0.0006,
+ "loss": 3.797952651977539,
+ "step": 1892
+ },
+ {
+ "epoch": 26.293577981651374,
+ "grad_norm": 0.24594341218471527,
+ "learning_rate": 0.0006,
+ "loss": 3.7925708293914795,
+ "step": 1893
+ },
+ {
+ "epoch": 26.307557885539538,
+ "grad_norm": 0.23314352333545685,
+ "learning_rate": 0.0006,
+ "loss": 3.792447328567505,
+ "step": 1894
+ },
+ {
+ "epoch": 26.321537789427698,
+ "grad_norm": 0.20870383083820343,
+ "learning_rate": 0.0006,
+ "loss": 3.7888340950012207,
+ "step": 1895
+ },
+ {
+ "epoch": 26.335517693315857,
+ "grad_norm": 0.206504687666893,
+ "learning_rate": 0.0006,
+ "loss": 3.7856602668762207,
+ "step": 1896
+ },
+ {
+ "epoch": 26.34949759720402,
+ "grad_norm": 0.20193266868591309,
+ "learning_rate": 0.0006,
+ "loss": 3.810800552368164,
+ "step": 1897
+ },
+ {
+ "epoch": 26.36347750109218,
+ "grad_norm": 0.2143869698047638,
+ "learning_rate": 0.0006,
+ "loss": 3.818742275238037,
+ "step": 1898
+ },
+ {
+ "epoch": 26.37745740498034,
+ "grad_norm": 0.21388593316078186,
+ "learning_rate": 0.0006,
+ "loss": 3.7576632499694824,
+ "step": 1899
+ },
+ {
+ "epoch": 26.3914373088685,
+ "grad_norm": 0.1933414787054062,
+ "learning_rate": 0.0006,
+ "loss": 3.802579879760742,
+ "step": 1900
+ },
+ {
+ "epoch": 26.405417212756664,
+ "grad_norm": 0.18144549429416656,
+ "learning_rate": 0.0006,
+ "loss": 3.7830452919006348,
+ "step": 1901
+ },
+ {
+ "epoch": 26.419397116644824,
+ "grad_norm": 0.20027601718902588,
+ "learning_rate": 0.0006,
+ "loss": 3.8112521171569824,
+ "step": 1902
+ },
+ {
+ "epoch": 26.433377020532983,
+ "grad_norm": 0.19402910768985748,
+ "learning_rate": 0.0006,
+ "loss": 3.778012990951538,
+ "step": 1903
+ },
+ {
+ "epoch": 26.447356924421143,
+ "grad_norm": 0.19020743668079376,
+ "learning_rate": 0.0006,
+ "loss": 3.823355197906494,
+ "step": 1904
+ },
+ {
+ "epoch": 26.461336828309307,
+ "grad_norm": 0.1885242760181427,
+ "learning_rate": 0.0006,
+ "loss": 3.782108783721924,
+ "step": 1905
+ },
+ {
+ "epoch": 26.475316732197467,
+ "grad_norm": 0.2024235874414444,
+ "learning_rate": 0.0006,
+ "loss": 3.810448408126831,
+ "step": 1906
+ },
+ {
+ "epoch": 26.489296636085626,
+ "grad_norm": 0.21408027410507202,
+ "learning_rate": 0.0006,
+ "loss": 3.8185606002807617,
+ "step": 1907
+ },
+ {
+ "epoch": 26.503276539973786,
+ "grad_norm": 0.22810906171798706,
+ "learning_rate": 0.0006,
+ "loss": 3.8052706718444824,
+ "step": 1908
+ },
+ {
+ "epoch": 26.51725644386195,
+ "grad_norm": 0.21328197419643402,
+ "learning_rate": 0.0006,
+ "loss": 3.7858219146728516,
+ "step": 1909
+ },
+ {
+ "epoch": 26.53123634775011,
+ "grad_norm": 0.20843173563480377,
+ "learning_rate": 0.0006,
+ "loss": 3.8069310188293457,
+ "step": 1910
+ },
+ {
+ "epoch": 26.54521625163827,
+ "grad_norm": 0.2072986662387848,
+ "learning_rate": 0.0006,
+ "loss": 3.794975996017456,
+ "step": 1911
+ },
+ {
+ "epoch": 26.55919615552643,
+ "grad_norm": 0.2203216850757599,
+ "learning_rate": 0.0006,
+ "loss": 3.8070101737976074,
+ "step": 1912
+ },
+ {
+ "epoch": 26.573176059414592,
+ "grad_norm": 0.23449191451072693,
+ "learning_rate": 0.0006,
+ "loss": 3.828695774078369,
+ "step": 1913
+ },
+ {
+ "epoch": 26.587155963302752,
+ "grad_norm": 0.2222008854150772,
+ "learning_rate": 0.0006,
+ "loss": 3.781275749206543,
+ "step": 1914
+ },
+ {
+ "epoch": 26.601135867190912,
+ "grad_norm": 0.22328314185142517,
+ "learning_rate": 0.0006,
+ "loss": 3.7953736782073975,
+ "step": 1915
+ },
+ {
+ "epoch": 26.615115771079076,
+ "grad_norm": 0.2377961128950119,
+ "learning_rate": 0.0006,
+ "loss": 3.8428916931152344,
+ "step": 1916
+ },
+ {
+ "epoch": 26.629095674967235,
+ "grad_norm": 0.2546147108078003,
+ "learning_rate": 0.0006,
+ "loss": 3.7940590381622314,
+ "step": 1917
+ },
+ {
+ "epoch": 26.643075578855395,
+ "grad_norm": 0.24234509468078613,
+ "learning_rate": 0.0006,
+ "loss": 3.802234172821045,
+ "step": 1918
+ },
+ {
+ "epoch": 26.657055482743555,
+ "grad_norm": 0.21294651925563812,
+ "learning_rate": 0.0006,
+ "loss": 3.8159232139587402,
+ "step": 1919
+ },
+ {
+ "epoch": 26.67103538663172,
+ "grad_norm": 0.20008964836597443,
+ "learning_rate": 0.0006,
+ "loss": 3.796949863433838,
+ "step": 1920
+ },
+ {
+ "epoch": 26.68501529051988,
+ "grad_norm": 0.21031023561954498,
+ "learning_rate": 0.0006,
+ "loss": 3.8015570640563965,
+ "step": 1921
+ },
+ {
+ "epoch": 26.698995194408038,
+ "grad_norm": 0.2185603827238083,
+ "learning_rate": 0.0006,
+ "loss": 3.8022537231445312,
+ "step": 1922
+ },
+ {
+ "epoch": 26.712975098296198,
+ "grad_norm": 0.22957198321819305,
+ "learning_rate": 0.0006,
+ "loss": 3.7859907150268555,
+ "step": 1923
+ },
+ {
+ "epoch": 26.72695500218436,
+ "grad_norm": 0.23779156804084778,
+ "learning_rate": 0.0006,
+ "loss": 3.830345630645752,
+ "step": 1924
+ },
+ {
+ "epoch": 26.74093490607252,
+ "grad_norm": 0.23577193915843964,
+ "learning_rate": 0.0006,
+ "loss": 3.777338981628418,
+ "step": 1925
+ },
+ {
+ "epoch": 26.75491480996068,
+ "grad_norm": 0.2521933913230896,
+ "learning_rate": 0.0006,
+ "loss": 3.8215396404266357,
+ "step": 1926
+ },
+ {
+ "epoch": 26.76889471384884,
+ "grad_norm": 0.25050726532936096,
+ "learning_rate": 0.0006,
+ "loss": 3.817509651184082,
+ "step": 1927
+ },
+ {
+ "epoch": 26.782874617737004,
+ "grad_norm": 0.24442453682422638,
+ "learning_rate": 0.0006,
+ "loss": 3.8033013343811035,
+ "step": 1928
+ },
+ {
+ "epoch": 26.796854521625164,
+ "grad_norm": 0.2280828058719635,
+ "learning_rate": 0.0006,
+ "loss": 3.798625946044922,
+ "step": 1929
+ },
+ {
+ "epoch": 26.810834425513324,
+ "grad_norm": 0.23072117567062378,
+ "learning_rate": 0.0006,
+ "loss": 3.8109097480773926,
+ "step": 1930
+ },
+ {
+ "epoch": 26.824814329401484,
+ "grad_norm": 0.2690806984901428,
+ "learning_rate": 0.0006,
+ "loss": 3.7707223892211914,
+ "step": 1931
+ },
+ {
+ "epoch": 26.838794233289647,
+ "grad_norm": 0.24973517656326294,
+ "learning_rate": 0.0006,
+ "loss": 3.7788357734680176,
+ "step": 1932
+ },
+ {
+ "epoch": 26.852774137177807,
+ "grad_norm": 0.24221451580524445,
+ "learning_rate": 0.0006,
+ "loss": 3.8083114624023438,
+ "step": 1933
+ },
+ {
+ "epoch": 26.866754041065967,
+ "grad_norm": 0.23499037325382233,
+ "learning_rate": 0.0006,
+ "loss": 3.845512866973877,
+ "step": 1934
+ },
+ {
+ "epoch": 26.88073394495413,
+ "grad_norm": 0.2172643095254898,
+ "learning_rate": 0.0006,
+ "loss": 3.8171584606170654,
+ "step": 1935
+ },
+ {
+ "epoch": 26.89471384884229,
+ "grad_norm": 0.19935013353824615,
+ "learning_rate": 0.0006,
+ "loss": 3.808596611022949,
+ "step": 1936
+ },
+ {
+ "epoch": 26.90869375273045,
+ "grad_norm": 0.2077745944261551,
+ "learning_rate": 0.0006,
+ "loss": 3.842836856842041,
+ "step": 1937
+ },
+ {
+ "epoch": 26.92267365661861,
+ "grad_norm": 0.20017282664775848,
+ "learning_rate": 0.0006,
+ "loss": 3.791734457015991,
+ "step": 1938
+ },
+ {
+ "epoch": 26.936653560506773,
+ "grad_norm": 0.2082037627696991,
+ "learning_rate": 0.0006,
+ "loss": 3.7987842559814453,
+ "step": 1939
+ },
+ {
+ "epoch": 26.950633464394933,
+ "grad_norm": 0.21100632846355438,
+ "learning_rate": 0.0006,
+ "loss": 3.8033156394958496,
+ "step": 1940
+ },
+ {
+ "epoch": 26.964613368283093,
+ "grad_norm": 0.2091331034898758,
+ "learning_rate": 0.0006,
+ "loss": 3.8250908851623535,
+ "step": 1941
+ },
+ {
+ "epoch": 26.978593272171253,
+ "grad_norm": 0.19728544354438782,
+ "learning_rate": 0.0006,
+ "loss": 3.7934365272521973,
+ "step": 1942
+ },
+ {
+ "epoch": 26.992573176059416,
+ "grad_norm": 0.19266465306282043,
+ "learning_rate": 0.0006,
+ "loss": 3.8095879554748535,
+ "step": 1943
+ },
+ {
+ "epoch": 27.0,
+ "grad_norm": 0.2264554500579834,
+ "learning_rate": 0.0006,
+ "loss": 3.840135335922241,
+ "step": 1944
+ },
+ {
+ "epoch": 27.0,
+ "eval_loss": 4.046233654022217,
+ "eval_runtime": 44.0648,
+ "eval_samples_per_second": 55.418,
+ "eval_steps_per_second": 3.472,
+ "step": 1944
+ },
+ {
+ "epoch": 27.01397990388816,
+ "grad_norm": 0.24101831018924713,
+ "learning_rate": 0.0006,
+ "loss": 3.7463197708129883,
+ "step": 1945
+ },
+ {
+ "epoch": 27.027959807776323,
+ "grad_norm": 0.2917300760746002,
+ "learning_rate": 0.0006,
+ "loss": 3.769083261489868,
+ "step": 1946
+ },
+ {
+ "epoch": 27.041939711664483,
+ "grad_norm": 0.30864080786705017,
+ "learning_rate": 0.0006,
+ "loss": 3.7774248123168945,
+ "step": 1947
+ },
+ {
+ "epoch": 27.055919615552643,
+ "grad_norm": 0.28574317693710327,
+ "learning_rate": 0.0006,
+ "loss": 3.759530544281006,
+ "step": 1948
+ },
+ {
+ "epoch": 27.069899519440803,
+ "grad_norm": 0.23381628096103668,
+ "learning_rate": 0.0006,
+ "loss": 3.764347791671753,
+ "step": 1949
+ },
+ {
+ "epoch": 27.083879423328966,
+ "grad_norm": 0.2717961072921753,
+ "learning_rate": 0.0006,
+ "loss": 3.785306692123413,
+ "step": 1950
+ },
+ {
+ "epoch": 27.097859327217126,
+ "grad_norm": 0.2753375470638275,
+ "learning_rate": 0.0006,
+ "loss": 3.7511696815490723,
+ "step": 1951
+ },
+ {
+ "epoch": 27.111839231105286,
+ "grad_norm": 0.260250061750412,
+ "learning_rate": 0.0006,
+ "loss": 3.7775721549987793,
+ "step": 1952
+ },
+ {
+ "epoch": 27.125819134993446,
+ "grad_norm": 0.2462741732597351,
+ "learning_rate": 0.0006,
+ "loss": 3.775203227996826,
+ "step": 1953
+ },
+ {
+ "epoch": 27.13979903888161,
+ "grad_norm": 0.23599569499492645,
+ "learning_rate": 0.0006,
+ "loss": 3.7580947875976562,
+ "step": 1954
+ },
+ {
+ "epoch": 27.15377894276977,
+ "grad_norm": 0.21749968826770782,
+ "learning_rate": 0.0006,
+ "loss": 3.778254985809326,
+ "step": 1955
+ },
+ {
+ "epoch": 27.16775884665793,
+ "grad_norm": 0.22210343182086945,
+ "learning_rate": 0.0006,
+ "loss": 3.734727144241333,
+ "step": 1956
+ },
+ {
+ "epoch": 27.18173875054609,
+ "grad_norm": 0.23376141488552094,
+ "learning_rate": 0.0006,
+ "loss": 3.7892181873321533,
+ "step": 1957
+ },
+ {
+ "epoch": 27.195718654434252,
+ "grad_norm": 0.21751847863197327,
+ "learning_rate": 0.0006,
+ "loss": 3.801621913909912,
+ "step": 1958
+ },
+ {
+ "epoch": 27.209698558322412,
+ "grad_norm": 0.22995133697986603,
+ "learning_rate": 0.0006,
+ "loss": 3.8031363487243652,
+ "step": 1959
+ },
+ {
+ "epoch": 27.22367846221057,
+ "grad_norm": 0.22716350853443146,
+ "learning_rate": 0.0006,
+ "loss": 3.7591521739959717,
+ "step": 1960
+ },
+ {
+ "epoch": 27.23765836609873,
+ "grad_norm": 0.20819596946239471,
+ "learning_rate": 0.0006,
+ "loss": 3.7988929748535156,
+ "step": 1961
+ },
+ {
+ "epoch": 27.251638269986895,
+ "grad_norm": 0.19861504435539246,
+ "learning_rate": 0.0006,
+ "loss": 3.7752838134765625,
+ "step": 1962
+ },
+ {
+ "epoch": 27.265618173875055,
+ "grad_norm": 0.1959371268749237,
+ "learning_rate": 0.0006,
+ "loss": 3.7707290649414062,
+ "step": 1963
+ },
+ {
+ "epoch": 27.279598077763215,
+ "grad_norm": 0.18772225081920624,
+ "learning_rate": 0.0006,
+ "loss": 3.7714555263519287,
+ "step": 1964
+ },
+ {
+ "epoch": 27.293577981651374,
+ "grad_norm": 0.20839282870292664,
+ "learning_rate": 0.0006,
+ "loss": 3.7857258319854736,
+ "step": 1965
+ },
+ {
+ "epoch": 27.307557885539538,
+ "grad_norm": 0.22521957755088806,
+ "learning_rate": 0.0006,
+ "loss": 3.776909351348877,
+ "step": 1966
+ },
+ {
+ "epoch": 27.321537789427698,
+ "grad_norm": 0.19533076882362366,
+ "learning_rate": 0.0006,
+ "loss": 3.8152523040771484,
+ "step": 1967
+ },
+ {
+ "epoch": 27.335517693315857,
+ "grad_norm": 0.18678881227970123,
+ "learning_rate": 0.0006,
+ "loss": 3.751555919647217,
+ "step": 1968
+ },
+ {
+ "epoch": 27.34949759720402,
+ "grad_norm": 0.18257129192352295,
+ "learning_rate": 0.0006,
+ "loss": 3.7701754570007324,
+ "step": 1969
+ },
+ {
+ "epoch": 27.36347750109218,
+ "grad_norm": 0.18191468715667725,
+ "learning_rate": 0.0006,
+ "loss": 3.817451238632202,
+ "step": 1970
+ },
+ {
+ "epoch": 27.37745740498034,
+ "grad_norm": 0.18665607273578644,
+ "learning_rate": 0.0006,
+ "loss": 3.78645658493042,
+ "step": 1971
+ },
+ {
+ "epoch": 27.3914373088685,
+ "grad_norm": 0.19604510068893433,
+ "learning_rate": 0.0006,
+ "loss": 3.7735626697540283,
+ "step": 1972
+ },
+ {
+ "epoch": 27.405417212756664,
+ "grad_norm": 0.20136640965938568,
+ "learning_rate": 0.0006,
+ "loss": 3.77310848236084,
+ "step": 1973
+ },
+ {
+ "epoch": 27.419397116644824,
+ "grad_norm": 0.19314947724342346,
+ "learning_rate": 0.0006,
+ "loss": 3.8084068298339844,
+ "step": 1974
+ },
+ {
+ "epoch": 27.433377020532983,
+ "grad_norm": 0.20761604607105255,
+ "learning_rate": 0.0006,
+ "loss": 3.80732798576355,
+ "step": 1975
+ },
+ {
+ "epoch": 27.447356924421143,
+ "grad_norm": 0.2239987850189209,
+ "learning_rate": 0.0006,
+ "loss": 3.7950329780578613,
+ "step": 1976
+ },
+ {
+ "epoch": 27.461336828309307,
+ "grad_norm": 0.22146444022655487,
+ "learning_rate": 0.0006,
+ "loss": 3.7957234382629395,
+ "step": 1977
+ },
+ {
+ "epoch": 27.475316732197467,
+ "grad_norm": 0.23218585550785065,
+ "learning_rate": 0.0006,
+ "loss": 3.806377410888672,
+ "step": 1978
+ },
+ {
+ "epoch": 27.489296636085626,
+ "grad_norm": 0.23549026250839233,
+ "learning_rate": 0.0006,
+ "loss": 3.7833383083343506,
+ "step": 1979
+ },
+ {
+ "epoch": 27.503276539973786,
+ "grad_norm": 0.24219457805156708,
+ "learning_rate": 0.0006,
+ "loss": 3.8154187202453613,
+ "step": 1980
+ },
+ {
+ "epoch": 27.51725644386195,
+ "grad_norm": 0.23703953623771667,
+ "learning_rate": 0.0006,
+ "loss": 3.7846405506134033,
+ "step": 1981
+ },
+ {
+ "epoch": 27.53123634775011,
+ "grad_norm": 0.23596109449863434,
+ "learning_rate": 0.0006,
+ "loss": 3.7698163986206055,
+ "step": 1982
+ },
+ {
+ "epoch": 27.54521625163827,
+ "grad_norm": 0.23073506355285645,
+ "learning_rate": 0.0006,
+ "loss": 3.8114185333251953,
+ "step": 1983
+ },
+ {
+ "epoch": 27.55919615552643,
+ "grad_norm": 0.24761143326759338,
+ "learning_rate": 0.0006,
+ "loss": 3.7548117637634277,
+ "step": 1984
+ },
+ {
+ "epoch": 27.573176059414592,
+ "grad_norm": 0.2834068238735199,
+ "learning_rate": 0.0006,
+ "loss": 3.7990212440490723,
+ "step": 1985
+ },
+ {
+ "epoch": 27.587155963302752,
+ "grad_norm": 0.29774922132492065,
+ "learning_rate": 0.0006,
+ "loss": 3.7845072746276855,
+ "step": 1986
+ },
+ {
+ "epoch": 27.601135867190912,
+ "grad_norm": 0.2732089161872864,
+ "learning_rate": 0.0006,
+ "loss": 3.8050694465637207,
+ "step": 1987
+ },
+ {
+ "epoch": 27.615115771079076,
+ "grad_norm": 0.24433180689811707,
+ "learning_rate": 0.0006,
+ "loss": 3.762704372406006,
+ "step": 1988
+ },
+ {
+ "epoch": 27.629095674967235,
+ "grad_norm": 0.21340419352054596,
+ "learning_rate": 0.0006,
+ "loss": 3.826023817062378,
+ "step": 1989
+ },
+ {
+ "epoch": 27.643075578855395,
+ "grad_norm": 0.22518761456012726,
+ "learning_rate": 0.0006,
+ "loss": 3.7823970317840576,
+ "step": 1990
+ },
+ {
+ "epoch": 27.657055482743555,
+ "grad_norm": 0.2196940928697586,
+ "learning_rate": 0.0006,
+ "loss": 3.787463426589966,
+ "step": 1991
+ },
+ {
+ "epoch": 27.67103538663172,
+ "grad_norm": 0.21906471252441406,
+ "learning_rate": 0.0006,
+ "loss": 3.7856104373931885,
+ "step": 1992
+ },
+ {
+ "epoch": 27.68501529051988,
+ "grad_norm": 0.2280956357717514,
+ "learning_rate": 0.0006,
+ "loss": 3.7829794883728027,
+ "step": 1993
+ },
+ {
+ "epoch": 27.698995194408038,
+ "grad_norm": 0.22567005455493927,
+ "learning_rate": 0.0006,
+ "loss": 3.762316942214966,
+ "step": 1994
+ },
+ {
+ "epoch": 27.712975098296198,
+ "grad_norm": 0.21703341603279114,
+ "learning_rate": 0.0006,
+ "loss": 3.772535800933838,
+ "step": 1995
+ },
+ {
+ "epoch": 27.72695500218436,
+ "grad_norm": 0.20586732029914856,
+ "learning_rate": 0.0006,
+ "loss": 3.775930881500244,
+ "step": 1996
+ },
+ {
+ "epoch": 27.74093490607252,
+ "grad_norm": 0.2126319408416748,
+ "learning_rate": 0.0006,
+ "loss": 3.793353796005249,
+ "step": 1997
+ },
+ {
+ "epoch": 27.75491480996068,
+ "grad_norm": 0.19664280116558075,
+ "learning_rate": 0.0006,
+ "loss": 3.7721195220947266,
+ "step": 1998
+ },
+ {
+ "epoch": 27.76889471384884,
+ "grad_norm": 0.17695854604244232,
+ "learning_rate": 0.0006,
+ "loss": 3.7931227684020996,
+ "step": 1999
+ },
+ {
+ "epoch": 27.782874617737004,
+ "grad_norm": 0.1899620145559311,
+ "learning_rate": 0.0006,
+ "loss": 3.798692226409912,
+ "step": 2000
+ },
+ {
+ "epoch": 27.796854521625164,
+ "grad_norm": 0.20334762334823608,
+ "learning_rate": 0.0006,
+ "loss": 3.774670124053955,
+ "step": 2001
+ },
+ {
+ "epoch": 27.810834425513324,
+ "grad_norm": 0.21150588989257812,
+ "learning_rate": 0.0006,
+ "loss": 3.803859233856201,
+ "step": 2002
+ },
+ {
+ "epoch": 27.824814329401484,
+ "grad_norm": 0.20425523817539215,
+ "learning_rate": 0.0006,
+ "loss": 3.810410976409912,
+ "step": 2003
+ },
+ {
+ "epoch": 27.838794233289647,
+ "grad_norm": 0.20468413829803467,
+ "learning_rate": 0.0006,
+ "loss": 3.800917625427246,
+ "step": 2004
+ },
+ {
+ "epoch": 27.852774137177807,
+ "grad_norm": 0.2113286256790161,
+ "learning_rate": 0.0006,
+ "loss": 3.7581989765167236,
+ "step": 2005
+ },
+ {
+ "epoch": 27.866754041065967,
+ "grad_norm": 0.2098054736852646,
+ "learning_rate": 0.0006,
+ "loss": 3.7921502590179443,
+ "step": 2006
+ },
+ {
+ "epoch": 27.88073394495413,
+ "grad_norm": 0.21701586246490479,
+ "learning_rate": 0.0006,
+ "loss": 3.8166770935058594,
+ "step": 2007
+ },
+ {
+ "epoch": 27.89471384884229,
+ "grad_norm": 0.2086625099182129,
+ "learning_rate": 0.0006,
+ "loss": 3.7732229232788086,
+ "step": 2008
+ },
+ {
+ "epoch": 27.90869375273045,
+ "grad_norm": 0.2186812162399292,
+ "learning_rate": 0.0006,
+ "loss": 3.8067402839660645,
+ "step": 2009
+ },
+ {
+ "epoch": 27.92267365661861,
+ "grad_norm": 0.2168985903263092,
+ "learning_rate": 0.0006,
+ "loss": 3.798159122467041,
+ "step": 2010
+ },
+ {
+ "epoch": 27.936653560506773,
+ "grad_norm": 0.23713620007038116,
+ "learning_rate": 0.0006,
+ "loss": 3.7958693504333496,
+ "step": 2011
+ },
+ {
+ "epoch": 27.950633464394933,
+ "grad_norm": 0.23592841625213623,
+ "learning_rate": 0.0006,
+ "loss": 3.795126438140869,
+ "step": 2012
+ },
+ {
+ "epoch": 27.964613368283093,
+ "grad_norm": 0.22210197150707245,
+ "learning_rate": 0.0006,
+ "loss": 3.791013240814209,
+ "step": 2013
+ },
+ {
+ "epoch": 27.978593272171253,
+ "grad_norm": 0.23190008103847504,
+ "learning_rate": 0.0006,
+ "loss": 3.813408374786377,
+ "step": 2014
+ },
+ {
+ "epoch": 27.992573176059416,
+ "grad_norm": 0.22158131003379822,
+ "learning_rate": 0.0006,
+ "loss": 3.7975716590881348,
+ "step": 2015
+ },
+ {
+ "epoch": 28.0,
+ "grad_norm": 0.2300519198179245,
+ "learning_rate": 0.0006,
+ "loss": 3.776214838027954,
+ "step": 2016
+ },
+ {
+ "epoch": 28.0,
+ "eval_loss": 4.04406213760376,
+ "eval_runtime": 44.0285,
+ "eval_samples_per_second": 55.464,
+ "eval_steps_per_second": 3.475,
+ "step": 2016
+ },
+ {
+ "epoch": 28.01397990388816,
+ "grad_norm": 0.21007688343524933,
+ "learning_rate": 0.0006,
+ "loss": 3.7366907596588135,
+ "step": 2017
+ },
+ {
+ "epoch": 28.027959807776323,
+ "grad_norm": 0.1941644549369812,
+ "learning_rate": 0.0006,
+ "loss": 3.744373321533203,
+ "step": 2018
+ },
+ {
+ "epoch": 28.041939711664483,
+ "grad_norm": 0.21308493614196777,
+ "learning_rate": 0.0006,
+ "loss": 3.7650012969970703,
+ "step": 2019
+ },
+ {
+ "epoch": 28.055919615552643,
+ "grad_norm": 0.20114868879318237,
+ "learning_rate": 0.0006,
+ "loss": 3.7652382850646973,
+ "step": 2020
+ },
+ {
+ "epoch": 28.069899519440803,
+ "grad_norm": 0.20266319811344147,
+ "learning_rate": 0.0006,
+ "loss": 3.7710442543029785,
+ "step": 2021
+ },
+ {
+ "epoch": 28.083879423328966,
+ "grad_norm": 0.205102801322937,
+ "learning_rate": 0.0006,
+ "loss": 3.7515463829040527,
+ "step": 2022
+ },
+ {
+ "epoch": 28.097859327217126,
+ "grad_norm": 0.22002041339874268,
+ "learning_rate": 0.0006,
+ "loss": 3.762019157409668,
+ "step": 2023
+ },
+ {
+ "epoch": 28.111839231105286,
+ "grad_norm": 0.2063235342502594,
+ "learning_rate": 0.0006,
+ "loss": 3.765453338623047,
+ "step": 2024
+ },
+ {
+ "epoch": 28.125819134993446,
+ "grad_norm": 0.19145619869232178,
+ "learning_rate": 0.0006,
+ "loss": 3.769411325454712,
+ "step": 2025
+ },
+ {
+ "epoch": 28.13979903888161,
+ "grad_norm": 0.19308455288410187,
+ "learning_rate": 0.0006,
+ "loss": 3.8009989261627197,
+ "step": 2026
+ },
+ {
+ "epoch": 28.15377894276977,
+ "grad_norm": 0.220510333776474,
+ "learning_rate": 0.0006,
+ "loss": 3.7582602500915527,
+ "step": 2027
+ },
+ {
+ "epoch": 28.16775884665793,
+ "grad_norm": 0.22855883836746216,
+ "learning_rate": 0.0006,
+ "loss": 3.803917407989502,
+ "step": 2028
+ },
+ {
+ "epoch": 28.18173875054609,
+ "grad_norm": 0.24206340312957764,
+ "learning_rate": 0.0006,
+ "loss": 3.764101028442383,
+ "step": 2029
+ },
+ {
+ "epoch": 28.195718654434252,
+ "grad_norm": 0.23973612487316132,
+ "learning_rate": 0.0006,
+ "loss": 3.787308931350708,
+ "step": 2030
+ },
+ {
+ "epoch": 28.209698558322412,
+ "grad_norm": 0.21400697529315948,
+ "learning_rate": 0.0006,
+ "loss": 3.7706117630004883,
+ "step": 2031
+ },
+ {
+ "epoch": 28.22367846221057,
+ "grad_norm": 0.21983976662158966,
+ "learning_rate": 0.0006,
+ "loss": 3.772731304168701,
+ "step": 2032
+ },
+ {
+ "epoch": 28.23765836609873,
+ "grad_norm": 0.22427113354206085,
+ "learning_rate": 0.0006,
+ "loss": 3.7724413871765137,
+ "step": 2033
+ },
+ {
+ "epoch": 28.251638269986895,
+ "grad_norm": 0.23665079474449158,
+ "learning_rate": 0.0006,
+ "loss": 3.769845962524414,
+ "step": 2034
+ },
+ {
+ "epoch": 28.265618173875055,
+ "grad_norm": 0.22663180530071259,
+ "learning_rate": 0.0006,
+ "loss": 3.764380931854248,
+ "step": 2035
+ },
+ {
+ "epoch": 28.279598077763215,
+ "grad_norm": 0.21094927191734314,
+ "learning_rate": 0.0006,
+ "loss": 3.7598326206207275,
+ "step": 2036
+ },
+ {
+ "epoch": 28.293577981651374,
+ "grad_norm": 0.20419518649578094,
+ "learning_rate": 0.0006,
+ "loss": 3.7737207412719727,
+ "step": 2037
+ },
+ {
+ "epoch": 28.307557885539538,
+ "grad_norm": 0.2171909660100937,
+ "learning_rate": 0.0006,
+ "loss": 3.7499468326568604,
+ "step": 2038
+ },
+ {
+ "epoch": 28.321537789427698,
+ "grad_norm": 0.22749298810958862,
+ "learning_rate": 0.0006,
+ "loss": 3.767536163330078,
+ "step": 2039
+ },
+ {
+ "epoch": 28.335517693315857,
+ "grad_norm": 0.22821909189224243,
+ "learning_rate": 0.0006,
+ "loss": 3.744386672973633,
+ "step": 2040
+ },
+ {
+ "epoch": 28.34949759720402,
+ "grad_norm": 0.2227880209684372,
+ "learning_rate": 0.0006,
+ "loss": 3.72955322265625,
+ "step": 2041
+ },
+ {
+ "epoch": 28.36347750109218,
+ "grad_norm": 0.22204327583312988,
+ "learning_rate": 0.0006,
+ "loss": 3.793854236602783,
+ "step": 2042
+ },
+ {
+ "epoch": 28.37745740498034,
+ "grad_norm": 0.21621409058570862,
+ "learning_rate": 0.0006,
+ "loss": 3.775379180908203,
+ "step": 2043
+ },
+ {
+ "epoch": 28.3914373088685,
+ "grad_norm": 0.2439221441745758,
+ "learning_rate": 0.0006,
+ "loss": 3.727464199066162,
+ "step": 2044
+ },
+ {
+ "epoch": 28.405417212756664,
+ "grad_norm": 0.24408605694770813,
+ "learning_rate": 0.0006,
+ "loss": 3.761747360229492,
+ "step": 2045
+ },
+ {
+ "epoch": 28.419397116644824,
+ "grad_norm": 0.26118648052215576,
+ "learning_rate": 0.0006,
+ "loss": 3.7587313652038574,
+ "step": 2046
+ },
+ {
+ "epoch": 28.433377020532983,
+ "grad_norm": 0.25948166847229004,
+ "learning_rate": 0.0006,
+ "loss": 3.7698440551757812,
+ "step": 2047
+ },
+ {
+ "epoch": 28.447356924421143,
+ "grad_norm": 0.26413780450820923,
+ "learning_rate": 0.0006,
+ "loss": 3.799107551574707,
+ "step": 2048
+ },
+ {
+ "epoch": 28.461336828309307,
+ "grad_norm": 0.2687148153781891,
+ "learning_rate": 0.0006,
+ "loss": 3.7564382553100586,
+ "step": 2049
+ },
+ {
+ "epoch": 28.475316732197467,
+ "grad_norm": 0.2676694691181183,
+ "learning_rate": 0.0006,
+ "loss": 3.754267692565918,
+ "step": 2050
+ },
+ {
+ "epoch": 28.489296636085626,
+ "grad_norm": 0.27275168895721436,
+ "learning_rate": 0.0006,
+ "loss": 3.802988052368164,
+ "step": 2051
+ },
+ {
+ "epoch": 28.503276539973786,
+ "grad_norm": 0.28783538937568665,
+ "learning_rate": 0.0006,
+ "loss": 3.762540817260742,
+ "step": 2052
+ },
+ {
+ "epoch": 28.51725644386195,
+ "grad_norm": 0.2628997266292572,
+ "learning_rate": 0.0006,
+ "loss": 3.7933349609375,
+ "step": 2053
+ },
+ {
+ "epoch": 28.53123634775011,
+ "grad_norm": 0.2498515099287033,
+ "learning_rate": 0.0006,
+ "loss": 3.7773094177246094,
+ "step": 2054
+ },
+ {
+ "epoch": 28.54521625163827,
+ "grad_norm": 0.22625942528247833,
+ "learning_rate": 0.0006,
+ "loss": 3.803457021713257,
+ "step": 2055
+ },
+ {
+ "epoch": 28.55919615552643,
+ "grad_norm": 0.21488751471042633,
+ "learning_rate": 0.0006,
+ "loss": 3.78924560546875,
+ "step": 2056
+ },
+ {
+ "epoch": 28.573176059414592,
+ "grad_norm": 0.22041267156600952,
+ "learning_rate": 0.0006,
+ "loss": 3.79361629486084,
+ "step": 2057
+ },
+ {
+ "epoch": 28.587155963302752,
+ "grad_norm": 0.23164816200733185,
+ "learning_rate": 0.0006,
+ "loss": 3.735037326812744,
+ "step": 2058
+ },
+ {
+ "epoch": 28.601135867190912,
+ "grad_norm": 0.22371916472911835,
+ "learning_rate": 0.0006,
+ "loss": 3.731417179107666,
+ "step": 2059
+ },
+ {
+ "epoch": 28.615115771079076,
+ "grad_norm": 0.2280314862728119,
+ "learning_rate": 0.0006,
+ "loss": 3.796154499053955,
+ "step": 2060
+ },
+ {
+ "epoch": 28.629095674967235,
+ "grad_norm": 0.21386604011058807,
+ "learning_rate": 0.0006,
+ "loss": 3.778648614883423,
+ "step": 2061
+ },
+ {
+ "epoch": 28.643075578855395,
+ "grad_norm": 0.20433050394058228,
+ "learning_rate": 0.0006,
+ "loss": 3.772826910018921,
+ "step": 2062
+ },
+ {
+ "epoch": 28.657055482743555,
+ "grad_norm": 0.2049262523651123,
+ "learning_rate": 0.0006,
+ "loss": 3.7410364151000977,
+ "step": 2063
+ },
+ {
+ "epoch": 28.67103538663172,
+ "grad_norm": 0.22041259706020355,
+ "learning_rate": 0.0006,
+ "loss": 3.796724319458008,
+ "step": 2064
+ },
+ {
+ "epoch": 28.68501529051988,
+ "grad_norm": 0.2018800675868988,
+ "learning_rate": 0.0006,
+ "loss": 3.775252342224121,
+ "step": 2065
+ },
+ {
+ "epoch": 28.698995194408038,
+ "grad_norm": 0.2159280925989151,
+ "learning_rate": 0.0006,
+ "loss": 3.766021251678467,
+ "step": 2066
+ },
+ {
+ "epoch": 28.712975098296198,
+ "grad_norm": 0.2072775512933731,
+ "learning_rate": 0.0006,
+ "loss": 3.765397548675537,
+ "step": 2067
+ },
+ {
+ "epoch": 28.72695500218436,
+ "grad_norm": 0.19592848420143127,
+ "learning_rate": 0.0006,
+ "loss": 3.8151614665985107,
+ "step": 2068
+ },
+ {
+ "epoch": 28.74093490607252,
+ "grad_norm": 0.19266322255134583,
+ "learning_rate": 0.0006,
+ "loss": 3.774945020675659,
+ "step": 2069
+ },
+ {
+ "epoch": 28.75491480996068,
+ "grad_norm": 0.19442392885684967,
+ "learning_rate": 0.0006,
+ "loss": 3.816283702850342,
+ "step": 2070
+ },
+ {
+ "epoch": 28.76889471384884,
+ "grad_norm": 0.19080746173858643,
+ "learning_rate": 0.0006,
+ "loss": 3.7784247398376465,
+ "step": 2071
+ },
+ {
+ "epoch": 28.782874617737004,
+ "grad_norm": 0.20150451362133026,
+ "learning_rate": 0.0006,
+ "loss": 3.7710249423980713,
+ "step": 2072
+ },
+ {
+ "epoch": 28.796854521625164,
+ "grad_norm": 0.1835816204547882,
+ "learning_rate": 0.0006,
+ "loss": 3.750032901763916,
+ "step": 2073
+ },
+ {
+ "epoch": 28.810834425513324,
+ "grad_norm": 0.1855502873659134,
+ "learning_rate": 0.0006,
+ "loss": 3.7276318073272705,
+ "step": 2074
+ },
+ {
+ "epoch": 28.824814329401484,
+ "grad_norm": 0.18683169782161713,
+ "learning_rate": 0.0006,
+ "loss": 3.7516555786132812,
+ "step": 2075
+ },
+ {
+ "epoch": 28.838794233289647,
+ "grad_norm": 0.2034577578306198,
+ "learning_rate": 0.0006,
+ "loss": 3.749875068664551,
+ "step": 2076
+ },
+ {
+ "epoch": 28.852774137177807,
+ "grad_norm": 0.2234230488538742,
+ "learning_rate": 0.0006,
+ "loss": 3.791429042816162,
+ "step": 2077
+ },
+ {
+ "epoch": 28.866754041065967,
+ "grad_norm": 0.25600525736808777,
+ "learning_rate": 0.0006,
+ "loss": 3.7769298553466797,
+ "step": 2078
+ },
+ {
+ "epoch": 28.88073394495413,
+ "grad_norm": 0.2741529643535614,
+ "learning_rate": 0.0006,
+ "loss": 3.771848201751709,
+ "step": 2079
+ },
+ {
+ "epoch": 28.89471384884229,
+ "grad_norm": 0.2710304260253906,
+ "learning_rate": 0.0006,
+ "loss": 3.8235626220703125,
+ "step": 2080
+ },
+ {
+ "epoch": 28.90869375273045,
+ "grad_norm": 0.25497519969940186,
+ "learning_rate": 0.0006,
+ "loss": 3.811288595199585,
+ "step": 2081
+ },
+ {
+ "epoch": 28.92267365661861,
+ "grad_norm": 0.25689464807510376,
+ "learning_rate": 0.0006,
+ "loss": 3.7848939895629883,
+ "step": 2082
+ },
+ {
+ "epoch": 28.936653560506773,
+ "grad_norm": 0.2794921398162842,
+ "learning_rate": 0.0006,
+ "loss": 3.7836732864379883,
+ "step": 2083
+ },
+ {
+ "epoch": 28.950633464394933,
+ "grad_norm": 0.24730202555656433,
+ "learning_rate": 0.0006,
+ "loss": 3.7703347206115723,
+ "step": 2084
+ },
+ {
+ "epoch": 28.964613368283093,
+ "grad_norm": 0.21078833937644958,
+ "learning_rate": 0.0006,
+ "loss": 3.7521653175354004,
+ "step": 2085
+ },
+ {
+ "epoch": 28.978593272171253,
+ "grad_norm": 0.2188870757818222,
+ "learning_rate": 0.0006,
+ "loss": 3.769604206085205,
+ "step": 2086
+ },
+ {
+ "epoch": 28.992573176059416,
+ "grad_norm": 0.20447929203510284,
+ "learning_rate": 0.0006,
+ "loss": 3.7842764854431152,
+ "step": 2087
+ },
+ {
+ "epoch": 29.0,
+ "grad_norm": 0.21607689559459686,
+ "learning_rate": 0.0006,
+ "loss": 3.7428855895996094,
+ "step": 2088
+ },
+ {
+ "epoch": 29.0,
+ "eval_loss": 4.0355753898620605,
+ "eval_runtime": 44.1435,
+ "eval_samples_per_second": 55.32,
+ "eval_steps_per_second": 3.466,
+ "step": 2088
+ },
+ {
+ "epoch": 29.01397990388816,
+ "grad_norm": 0.21270133554935455,
+ "learning_rate": 0.0006,
+ "loss": 3.7548413276672363,
+ "step": 2089
+ },
+ {
+ "epoch": 29.027959807776323,
+ "grad_norm": 0.21576301753520966,
+ "learning_rate": 0.0006,
+ "loss": 3.754613161087036,
+ "step": 2090
+ },
+ {
+ "epoch": 29.041939711664483,
+ "grad_norm": 0.2162923663854599,
+ "learning_rate": 0.0006,
+ "loss": 3.755772590637207,
+ "step": 2091
+ },
+ {
+ "epoch": 29.055919615552643,
+ "grad_norm": 0.22236663103103638,
+ "learning_rate": 0.0006,
+ "loss": 3.743497848510742,
+ "step": 2092
+ },
+ {
+ "epoch": 29.069899519440803,
+ "grad_norm": 0.2391042858362198,
+ "learning_rate": 0.0006,
+ "loss": 3.749204158782959,
+ "step": 2093
+ },
+ {
+ "epoch": 29.083879423328966,
+ "grad_norm": 0.23387965559959412,
+ "learning_rate": 0.0006,
+ "loss": 3.7286791801452637,
+ "step": 2094
+ },
+ {
+ "epoch": 29.097859327217126,
+ "grad_norm": 0.23677746951580048,
+ "learning_rate": 0.0006,
+ "loss": 3.755279541015625,
+ "step": 2095
+ },
+ {
+ "epoch": 29.111839231105286,
+ "grad_norm": 0.22771087288856506,
+ "learning_rate": 0.0006,
+ "loss": 3.722566604614258,
+ "step": 2096
+ },
+ {
+ "epoch": 29.125819134993446,
+ "grad_norm": 0.2132875621318817,
+ "learning_rate": 0.0006,
+ "loss": 3.748939037322998,
+ "step": 2097
+ },
+ {
+ "epoch": 29.13979903888161,
+ "grad_norm": 0.2033746838569641,
+ "learning_rate": 0.0006,
+ "loss": 3.7393670082092285,
+ "step": 2098
+ },
+ {
+ "epoch": 29.15377894276977,
+ "grad_norm": 0.1997237652540207,
+ "learning_rate": 0.0006,
+ "loss": 3.718498945236206,
+ "step": 2099
+ },
+ {
+ "epoch": 29.16775884665793,
+ "grad_norm": 0.19102543592453003,
+ "learning_rate": 0.0006,
+ "loss": 3.748950719833374,
+ "step": 2100
+ },
+ {
+ "epoch": 29.18173875054609,
+ "grad_norm": 0.19801580905914307,
+ "learning_rate": 0.0006,
+ "loss": 3.7123501300811768,
+ "step": 2101
+ },
+ {
+ "epoch": 29.195718654434252,
+ "grad_norm": 0.20186249911785126,
+ "learning_rate": 0.0006,
+ "loss": 3.7632713317871094,
+ "step": 2102
+ },
+ {
+ "epoch": 29.209698558322412,
+ "grad_norm": 0.22725415229797363,
+ "learning_rate": 0.0006,
+ "loss": 3.753506660461426,
+ "step": 2103
+ },
+ {
+ "epoch": 29.22367846221057,
+ "grad_norm": 0.23138119280338287,
+ "learning_rate": 0.0006,
+ "loss": 3.753282070159912,
+ "step": 2104
+ },
+ {
+ "epoch": 29.23765836609873,
+ "grad_norm": 0.23171944916248322,
+ "learning_rate": 0.0006,
+ "loss": 3.73783540725708,
+ "step": 2105
+ },
+ {
+ "epoch": 29.251638269986895,
+ "grad_norm": 0.2166522741317749,
+ "learning_rate": 0.0006,
+ "loss": 3.778803825378418,
+ "step": 2106
+ },
+ {
+ "epoch": 29.265618173875055,
+ "grad_norm": 0.2009056806564331,
+ "learning_rate": 0.0006,
+ "loss": 3.738290786743164,
+ "step": 2107
+ },
+ {
+ "epoch": 29.279598077763215,
+ "grad_norm": 0.19451597332954407,
+ "learning_rate": 0.0006,
+ "loss": 3.7553348541259766,
+ "step": 2108
+ },
+ {
+ "epoch": 29.293577981651374,
+ "grad_norm": 0.19246742129325867,
+ "learning_rate": 0.0006,
+ "loss": 3.7321622371673584,
+ "step": 2109
+ },
+ {
+ "epoch": 29.307557885539538,
+ "grad_norm": 0.18917441368103027,
+ "learning_rate": 0.0006,
+ "loss": 3.7408928871154785,
+ "step": 2110
+ },
+ {
+ "epoch": 29.321537789427698,
+ "grad_norm": 0.19067776203155518,
+ "learning_rate": 0.0006,
+ "loss": 3.780052900314331,
+ "step": 2111
+ },
+ {
+ "epoch": 29.335517693315857,
+ "grad_norm": 0.18849676847457886,
+ "learning_rate": 0.0006,
+ "loss": 3.749375820159912,
+ "step": 2112
+ },
+ {
+ "epoch": 29.34949759720402,
+ "grad_norm": 0.19713285565376282,
+ "learning_rate": 0.0006,
+ "loss": 3.7128982543945312,
+ "step": 2113
+ },
+ {
+ "epoch": 29.36347750109218,
+ "grad_norm": 0.196336030960083,
+ "learning_rate": 0.0006,
+ "loss": 3.7528390884399414,
+ "step": 2114
+ },
+ {
+ "epoch": 29.37745740498034,
+ "grad_norm": 0.19574350118637085,
+ "learning_rate": 0.0006,
+ "loss": 3.7105777263641357,
+ "step": 2115
+ },
+ {
+ "epoch": 29.3914373088685,
+ "grad_norm": 0.20396539568901062,
+ "learning_rate": 0.0006,
+ "loss": 3.782249927520752,
+ "step": 2116
+ },
+ {
+ "epoch": 29.405417212756664,
+ "grad_norm": 0.24702422320842743,
+ "learning_rate": 0.0006,
+ "loss": 3.7685647010803223,
+ "step": 2117
+ },
+ {
+ "epoch": 29.419397116644824,
+ "grad_norm": 0.2729755640029907,
+ "learning_rate": 0.0006,
+ "loss": 3.7731213569641113,
+ "step": 2118
+ },
+ {
+ "epoch": 29.433377020532983,
+ "grad_norm": 0.29240545630455017,
+ "learning_rate": 0.0006,
+ "loss": 3.770162343978882,
+ "step": 2119
+ },
+ {
+ "epoch": 29.447356924421143,
+ "grad_norm": 0.2469114065170288,
+ "learning_rate": 0.0006,
+ "loss": 3.764681339263916,
+ "step": 2120
+ },
+ {
+ "epoch": 29.461336828309307,
+ "grad_norm": 0.19837401807308197,
+ "learning_rate": 0.0006,
+ "loss": 3.7600088119506836,
+ "step": 2121
+ },
+ {
+ "epoch": 29.475316732197467,
+ "grad_norm": 0.21266621351242065,
+ "learning_rate": 0.0006,
+ "loss": 3.769454002380371,
+ "step": 2122
+ },
+ {
+ "epoch": 29.489296636085626,
+ "grad_norm": 0.25908344984054565,
+ "learning_rate": 0.0006,
+ "loss": 3.7230491638183594,
+ "step": 2123
+ },
+ {
+ "epoch": 29.503276539973786,
+ "grad_norm": 0.2914169728755951,
+ "learning_rate": 0.0006,
+ "loss": 3.767849922180176,
+ "step": 2124
+ },
+ {
+ "epoch": 29.51725644386195,
+ "grad_norm": 0.2796176075935364,
+ "learning_rate": 0.0006,
+ "loss": 3.741734266281128,
+ "step": 2125
+ },
+ {
+ "epoch": 29.53123634775011,
+ "grad_norm": 0.276309996843338,
+ "learning_rate": 0.0006,
+ "loss": 3.8001914024353027,
+ "step": 2126
+ },
+ {
+ "epoch": 29.54521625163827,
+ "grad_norm": 0.26512834429740906,
+ "learning_rate": 0.0006,
+ "loss": 3.7741384506225586,
+ "step": 2127
+ },
+ {
+ "epoch": 29.55919615552643,
+ "grad_norm": 0.26514101028442383,
+ "learning_rate": 0.0006,
+ "loss": 3.7466959953308105,
+ "step": 2128
+ },
+ {
+ "epoch": 29.573176059414592,
+ "grad_norm": 0.24121330678462982,
+ "learning_rate": 0.0006,
+ "loss": 3.759542465209961,
+ "step": 2129
+ },
+ {
+ "epoch": 29.587155963302752,
+ "grad_norm": 0.2264087200164795,
+ "learning_rate": 0.0006,
+ "loss": 3.791344165802002,
+ "step": 2130
+ },
+ {
+ "epoch": 29.601135867190912,
+ "grad_norm": 0.21915403008460999,
+ "learning_rate": 0.0006,
+ "loss": 3.7540485858917236,
+ "step": 2131
+ },
+ {
+ "epoch": 29.615115771079076,
+ "grad_norm": 0.20453961193561554,
+ "learning_rate": 0.0006,
+ "loss": 3.765617609024048,
+ "step": 2132
+ },
+ {
+ "epoch": 29.629095674967235,
+ "grad_norm": 0.2194051444530487,
+ "learning_rate": 0.0006,
+ "loss": 3.7664294242858887,
+ "step": 2133
+ },
+ {
+ "epoch": 29.643075578855395,
+ "grad_norm": 0.21926000714302063,
+ "learning_rate": 0.0006,
+ "loss": 3.7551684379577637,
+ "step": 2134
+ },
+ {
+ "epoch": 29.657055482743555,
+ "grad_norm": 0.20835602283477783,
+ "learning_rate": 0.0006,
+ "loss": 3.7654306888580322,
+ "step": 2135
+ },
+ {
+ "epoch": 29.67103538663172,
+ "grad_norm": 0.23094356060028076,
+ "learning_rate": 0.0006,
+ "loss": 3.7847180366516113,
+ "step": 2136
+ },
+ {
+ "epoch": 29.68501529051988,
+ "grad_norm": 0.23871271312236786,
+ "learning_rate": 0.0006,
+ "loss": 3.789036273956299,
+ "step": 2137
+ },
+ {
+ "epoch": 29.698995194408038,
+ "grad_norm": 0.22263272106647491,
+ "learning_rate": 0.0006,
+ "loss": 3.7677512168884277,
+ "step": 2138
+ },
+ {
+ "epoch": 29.712975098296198,
+ "grad_norm": 0.2293892651796341,
+ "learning_rate": 0.0006,
+ "loss": 3.777097225189209,
+ "step": 2139
+ },
+ {
+ "epoch": 29.72695500218436,
+ "grad_norm": 0.21068568527698517,
+ "learning_rate": 0.0006,
+ "loss": 3.785336494445801,
+ "step": 2140
+ },
+ {
+ "epoch": 29.74093490607252,
+ "grad_norm": 0.19600282609462738,
+ "learning_rate": 0.0006,
+ "loss": 3.7363505363464355,
+ "step": 2141
+ },
+ {
+ "epoch": 29.75491480996068,
+ "grad_norm": 0.20053936541080475,
+ "learning_rate": 0.0006,
+ "loss": 3.753859043121338,
+ "step": 2142
+ },
+ {
+ "epoch": 29.76889471384884,
+ "grad_norm": 0.22790539264678955,
+ "learning_rate": 0.0006,
+ "loss": 3.749492645263672,
+ "step": 2143
+ },
+ {
+ "epoch": 29.782874617737004,
+ "grad_norm": 0.26042407751083374,
+ "learning_rate": 0.0006,
+ "loss": 3.7905430793762207,
+ "step": 2144
+ },
+ {
+ "epoch": 29.796854521625164,
+ "grad_norm": 0.2753683626651764,
+ "learning_rate": 0.0006,
+ "loss": 3.756442070007324,
+ "step": 2145
+ },
+ {
+ "epoch": 29.810834425513324,
+ "grad_norm": 0.2795007526874542,
+ "learning_rate": 0.0006,
+ "loss": 3.7691903114318848,
+ "step": 2146
+ },
+ {
+ "epoch": 29.824814329401484,
+ "grad_norm": 0.2461438924074173,
+ "learning_rate": 0.0006,
+ "loss": 3.7573065757751465,
+ "step": 2147
+ },
+ {
+ "epoch": 29.838794233289647,
+ "grad_norm": 0.21051941812038422,
+ "learning_rate": 0.0006,
+ "loss": 3.7540078163146973,
+ "step": 2148
+ },
+ {
+ "epoch": 29.852774137177807,
+ "grad_norm": 0.197485089302063,
+ "learning_rate": 0.0006,
+ "loss": 3.734403133392334,
+ "step": 2149
+ },
+ {
+ "epoch": 29.866754041065967,
+ "grad_norm": 0.203064426779747,
+ "learning_rate": 0.0006,
+ "loss": 3.7888364791870117,
+ "step": 2150
+ },
+ {
+ "epoch": 29.88073394495413,
+ "grad_norm": 0.2000301480293274,
+ "learning_rate": 0.0006,
+ "loss": 3.7444958686828613,
+ "step": 2151
+ },
+ {
+ "epoch": 29.89471384884229,
+ "grad_norm": 0.20492053031921387,
+ "learning_rate": 0.0006,
+ "loss": 3.7878224849700928,
+ "step": 2152
+ },
+ {
+ "epoch": 29.90869375273045,
+ "grad_norm": 0.22565388679504395,
+ "learning_rate": 0.0006,
+ "loss": 3.7539188861846924,
+ "step": 2153
+ },
+ {
+ "epoch": 29.92267365661861,
+ "grad_norm": 0.20258226990699768,
+ "learning_rate": 0.0006,
+ "loss": 3.7491893768310547,
+ "step": 2154
+ },
+ {
+ "epoch": 29.936653560506773,
+ "grad_norm": 0.20028717815876007,
+ "learning_rate": 0.0006,
+ "loss": 3.7497997283935547,
+ "step": 2155
+ },
+ {
+ "epoch": 29.950633464394933,
+ "grad_norm": 0.2246360331773758,
+ "learning_rate": 0.0006,
+ "loss": 3.773930788040161,
+ "step": 2156
+ },
+ {
+ "epoch": 29.964613368283093,
+ "grad_norm": 0.22432482242584229,
+ "learning_rate": 0.0006,
+ "loss": 3.7926344871520996,
+ "step": 2157
+ },
+ {
+ "epoch": 29.978593272171253,
+ "grad_norm": 0.2165718674659729,
+ "learning_rate": 0.0006,
+ "loss": 3.7436647415161133,
+ "step": 2158
+ },
+ {
+ "epoch": 29.992573176059416,
+ "grad_norm": 0.20629167556762695,
+ "learning_rate": 0.0006,
+ "loss": 3.7619552612304688,
+ "step": 2159
+ },
+ {
+ "epoch": 30.0,
+ "grad_norm": 0.24264708161354065,
+ "learning_rate": 0.0006,
+ "loss": 3.772679328918457,
+ "step": 2160
+ },
+ {
+ "epoch": 30.0,
+ "eval_loss": 4.024484634399414,
+ "eval_runtime": 44.3611,
+ "eval_samples_per_second": 55.048,
+ "eval_steps_per_second": 3.449,
+ "step": 2160
+ },
+ {
+ "epoch": 30.01397990388816,
+ "grad_norm": 0.2373432070016861,
+ "learning_rate": 0.0006,
+ "loss": 3.7423200607299805,
+ "step": 2161
+ },
+ {
+ "epoch": 30.027959807776323,
+ "grad_norm": 0.26835134625434875,
+ "learning_rate": 0.0006,
+ "loss": 3.7215471267700195,
+ "step": 2162
+ },
+ {
+ "epoch": 30.041939711664483,
+ "grad_norm": 0.2743220329284668,
+ "learning_rate": 0.0006,
+ "loss": 3.7190256118774414,
+ "step": 2163
+ },
+ {
+ "epoch": 30.055919615552643,
+ "grad_norm": 0.2292490005493164,
+ "learning_rate": 0.0006,
+ "loss": 3.731855869293213,
+ "step": 2164
+ },
+ {
+ "epoch": 30.069899519440803,
+ "grad_norm": 0.22704607248306274,
+ "learning_rate": 0.0006,
+ "loss": 3.7649693489074707,
+ "step": 2165
+ },
+ {
+ "epoch": 30.083879423328966,
+ "grad_norm": 0.23255930840969086,
+ "learning_rate": 0.0006,
+ "loss": 3.7547781467437744,
+ "step": 2166
+ },
+ {
+ "epoch": 30.097859327217126,
+ "grad_norm": 0.2068684846162796,
+ "learning_rate": 0.0006,
+ "loss": 3.7343382835388184,
+ "step": 2167
+ },
+ {
+ "epoch": 30.111839231105286,
+ "grad_norm": 0.22523464262485504,
+ "learning_rate": 0.0006,
+ "loss": 3.7304530143737793,
+ "step": 2168
+ },
+ {
+ "epoch": 30.125819134993446,
+ "grad_norm": 0.24650199711322784,
+ "learning_rate": 0.0006,
+ "loss": 3.7414379119873047,
+ "step": 2169
+ },
+ {
+ "epoch": 30.13979903888161,
+ "grad_norm": 0.2392522394657135,
+ "learning_rate": 0.0006,
+ "loss": 3.754481792449951,
+ "step": 2170
+ },
+ {
+ "epoch": 30.15377894276977,
+ "grad_norm": 0.21174749732017517,
+ "learning_rate": 0.0006,
+ "loss": 3.7249929904937744,
+ "step": 2171
+ },
+ {
+ "epoch": 30.16775884665793,
+ "grad_norm": 0.20847836136817932,
+ "learning_rate": 0.0006,
+ "loss": 3.7146458625793457,
+ "step": 2172
+ },
+ {
+ "epoch": 30.18173875054609,
+ "grad_norm": 0.22131472826004028,
+ "learning_rate": 0.0006,
+ "loss": 3.7569539546966553,
+ "step": 2173
+ },
+ {
+ "epoch": 30.195718654434252,
+ "grad_norm": 0.23528096079826355,
+ "learning_rate": 0.0006,
+ "loss": 3.743435859680176,
+ "step": 2174
+ },
+ {
+ "epoch": 30.209698558322412,
+ "grad_norm": 0.2382429540157318,
+ "learning_rate": 0.0006,
+ "loss": 3.745307445526123,
+ "step": 2175
+ },
+ {
+ "epoch": 30.22367846221057,
+ "grad_norm": 0.2477114498615265,
+ "learning_rate": 0.0006,
+ "loss": 3.742305278778076,
+ "step": 2176
+ },
+ {
+ "epoch": 30.23765836609873,
+ "grad_norm": 0.24507801234722137,
+ "learning_rate": 0.0006,
+ "loss": 3.733564853668213,
+ "step": 2177
+ },
+ {
+ "epoch": 30.251638269986895,
+ "grad_norm": 0.2266329675912857,
+ "learning_rate": 0.0006,
+ "loss": 3.747429370880127,
+ "step": 2178
+ },
+ {
+ "epoch": 30.265618173875055,
+ "grad_norm": 0.22146396338939667,
+ "learning_rate": 0.0006,
+ "loss": 3.738630533218384,
+ "step": 2179
+ },
+ {
+ "epoch": 30.279598077763215,
+ "grad_norm": 0.20202279090881348,
+ "learning_rate": 0.0006,
+ "loss": 3.74582839012146,
+ "step": 2180
+ },
+ {
+ "epoch": 30.293577981651374,
+ "grad_norm": 0.20591886341571808,
+ "learning_rate": 0.0006,
+ "loss": 3.792062997817993,
+ "step": 2181
+ },
+ {
+ "epoch": 30.307557885539538,
+ "grad_norm": 0.21744129061698914,
+ "learning_rate": 0.0006,
+ "loss": 3.7389049530029297,
+ "step": 2182
+ },
+ {
+ "epoch": 30.321537789427698,
+ "grad_norm": 0.22641272842884064,
+ "learning_rate": 0.0006,
+ "loss": 3.756775140762329,
+ "step": 2183
+ },
+ {
+ "epoch": 30.335517693315857,
+ "grad_norm": 0.22433501482009888,
+ "learning_rate": 0.0006,
+ "loss": 3.764744758605957,
+ "step": 2184
+ },
+ {
+ "epoch": 30.34949759720402,
+ "grad_norm": 0.20184539258480072,
+ "learning_rate": 0.0006,
+ "loss": 3.747469902038574,
+ "step": 2185
+ },
+ {
+ "epoch": 30.36347750109218,
+ "grad_norm": 0.20864923298358917,
+ "learning_rate": 0.0006,
+ "loss": 3.7472925186157227,
+ "step": 2186
+ },
+ {
+ "epoch": 30.37745740498034,
+ "grad_norm": 0.22537396848201752,
+ "learning_rate": 0.0006,
+ "loss": 3.7194581031799316,
+ "step": 2187
+ },
+ {
+ "epoch": 30.3914373088685,
+ "grad_norm": 0.23159919679164886,
+ "learning_rate": 0.0006,
+ "loss": 3.7124292850494385,
+ "step": 2188
+ },
+ {
+ "epoch": 30.405417212756664,
+ "grad_norm": 0.24334494769573212,
+ "learning_rate": 0.0006,
+ "loss": 3.7769203186035156,
+ "step": 2189
+ },
+ {
+ "epoch": 30.419397116644824,
+ "grad_norm": 0.3031228482723236,
+ "learning_rate": 0.0006,
+ "loss": 3.762169361114502,
+ "step": 2190
+ },
+ {
+ "epoch": 30.433377020532983,
+ "grad_norm": 0.29114583134651184,
+ "learning_rate": 0.0006,
+ "loss": 3.76554799079895,
+ "step": 2191
+ },
+ {
+ "epoch": 30.447356924421143,
+ "grad_norm": 0.26824963092803955,
+ "learning_rate": 0.0006,
+ "loss": 3.732962131500244,
+ "step": 2192
+ },
+ {
+ "epoch": 30.461336828309307,
+ "grad_norm": 0.3026561141014099,
+ "learning_rate": 0.0006,
+ "loss": 3.7567975521087646,
+ "step": 2193
+ },
+ {
+ "epoch": 30.475316732197467,
+ "grad_norm": 0.27224525809288025,
+ "learning_rate": 0.0006,
+ "loss": 3.7856051921844482,
+ "step": 2194
+ },
+ {
+ "epoch": 30.489296636085626,
+ "grad_norm": 0.24295508861541748,
+ "learning_rate": 0.0006,
+ "loss": 3.7514901161193848,
+ "step": 2195
+ },
+ {
+ "epoch": 30.503276539973786,
+ "grad_norm": 0.24435290694236755,
+ "learning_rate": 0.0006,
+ "loss": 3.715973138809204,
+ "step": 2196
+ },
+ {
+ "epoch": 30.51725644386195,
+ "grad_norm": 0.2298959195613861,
+ "learning_rate": 0.0006,
+ "loss": 3.7960405349731445,
+ "step": 2197
+ },
+ {
+ "epoch": 30.53123634775011,
+ "grad_norm": 0.20313066244125366,
+ "learning_rate": 0.0006,
+ "loss": 3.7377915382385254,
+ "step": 2198
+ },
+ {
+ "epoch": 30.54521625163827,
+ "grad_norm": 0.2018895149230957,
+ "learning_rate": 0.0006,
+ "loss": 3.6980559825897217,
+ "step": 2199
+ },
+ {
+ "epoch": 30.55919615552643,
+ "grad_norm": 0.20048382878303528,
+ "learning_rate": 0.0006,
+ "loss": 3.7474141120910645,
+ "step": 2200
+ },
+ {
+ "epoch": 30.573176059414592,
+ "grad_norm": 0.19821316003799438,
+ "learning_rate": 0.0006,
+ "loss": 3.7668564319610596,
+ "step": 2201
+ },
+ {
+ "epoch": 30.587155963302752,
+ "grad_norm": 0.21467992663383484,
+ "learning_rate": 0.0006,
+ "loss": 3.7636144161224365,
+ "step": 2202
+ },
+ {
+ "epoch": 30.601135867190912,
+ "grad_norm": 0.20192000269889832,
+ "learning_rate": 0.0006,
+ "loss": 3.745736837387085,
+ "step": 2203
+ },
+ {
+ "epoch": 30.615115771079076,
+ "grad_norm": 0.2078823447227478,
+ "learning_rate": 0.0006,
+ "loss": 3.726665496826172,
+ "step": 2204
+ },
+ {
+ "epoch": 30.629095674967235,
+ "grad_norm": 0.22535845637321472,
+ "learning_rate": 0.0006,
+ "loss": 3.745058059692383,
+ "step": 2205
+ },
+ {
+ "epoch": 30.643075578855395,
+ "grad_norm": 0.22277814149856567,
+ "learning_rate": 0.0006,
+ "loss": 3.7488319873809814,
+ "step": 2206
+ },
+ {
+ "epoch": 30.657055482743555,
+ "grad_norm": 0.20940838754177094,
+ "learning_rate": 0.0006,
+ "loss": 3.7395732402801514,
+ "step": 2207
+ },
+ {
+ "epoch": 30.67103538663172,
+ "grad_norm": 0.21384629607200623,
+ "learning_rate": 0.0006,
+ "loss": 3.7275657653808594,
+ "step": 2208
+ },
+ {
+ "epoch": 30.68501529051988,
+ "grad_norm": 0.18796643614768982,
+ "learning_rate": 0.0006,
+ "loss": 3.743420124053955,
+ "step": 2209
+ },
+ {
+ "epoch": 30.698995194408038,
+ "grad_norm": 0.213258296251297,
+ "learning_rate": 0.0006,
+ "loss": 3.7227492332458496,
+ "step": 2210
+ },
+ {
+ "epoch": 30.712975098296198,
+ "grad_norm": 0.22714753448963165,
+ "learning_rate": 0.0006,
+ "loss": 3.7301113605499268,
+ "step": 2211
+ },
+ {
+ "epoch": 30.72695500218436,
+ "grad_norm": 0.21657656133174896,
+ "learning_rate": 0.0006,
+ "loss": 3.7336206436157227,
+ "step": 2212
+ },
+ {
+ "epoch": 30.74093490607252,
+ "grad_norm": 0.19550828635692596,
+ "learning_rate": 0.0006,
+ "loss": 3.7367351055145264,
+ "step": 2213
+ },
+ {
+ "epoch": 30.75491480996068,
+ "grad_norm": 0.17011769115924835,
+ "learning_rate": 0.0006,
+ "loss": 3.7401928901672363,
+ "step": 2214
+ },
+ {
+ "epoch": 30.76889471384884,
+ "grad_norm": 0.19110196828842163,
+ "learning_rate": 0.0006,
+ "loss": 3.7496562004089355,
+ "step": 2215
+ },
+ {
+ "epoch": 30.782874617737004,
+ "grad_norm": 0.20054543018341064,
+ "learning_rate": 0.0006,
+ "loss": 3.7532992362976074,
+ "step": 2216
+ },
+ {
+ "epoch": 30.796854521625164,
+ "grad_norm": 0.20667670667171478,
+ "learning_rate": 0.0006,
+ "loss": 3.746974468231201,
+ "step": 2217
+ },
+ {
+ "epoch": 30.810834425513324,
+ "grad_norm": 0.19850662350654602,
+ "learning_rate": 0.0006,
+ "loss": 3.7566256523132324,
+ "step": 2218
+ },
+ {
+ "epoch": 30.824814329401484,
+ "grad_norm": 0.19666457176208496,
+ "learning_rate": 0.0006,
+ "loss": 3.7356925010681152,
+ "step": 2219
+ },
+ {
+ "epoch": 30.838794233289647,
+ "grad_norm": 0.20022115111351013,
+ "learning_rate": 0.0006,
+ "loss": 3.768794536590576,
+ "step": 2220
+ },
+ {
+ "epoch": 30.852774137177807,
+ "grad_norm": 0.225278839468956,
+ "learning_rate": 0.0006,
+ "loss": 3.730262279510498,
+ "step": 2221
+ },
+ {
+ "epoch": 30.866754041065967,
+ "grad_norm": 0.2155608832836151,
+ "learning_rate": 0.0006,
+ "loss": 3.758157968521118,
+ "step": 2222
+ },
+ {
+ "epoch": 30.88073394495413,
+ "grad_norm": 0.20914921164512634,
+ "learning_rate": 0.0006,
+ "loss": 3.7290844917297363,
+ "step": 2223
+ },
+ {
+ "epoch": 30.89471384884229,
+ "grad_norm": 0.21579554677009583,
+ "learning_rate": 0.0006,
+ "loss": 3.7666125297546387,
+ "step": 2224
+ },
+ {
+ "epoch": 30.90869375273045,
+ "grad_norm": 0.22606384754180908,
+ "learning_rate": 0.0006,
+ "loss": 3.7396788597106934,
+ "step": 2225
+ },
+ {
+ "epoch": 30.92267365661861,
+ "grad_norm": 0.22218658030033112,
+ "learning_rate": 0.0006,
+ "loss": 3.7363057136535645,
+ "step": 2226
+ },
+ {
+ "epoch": 30.936653560506773,
+ "grad_norm": 0.2107125222682953,
+ "learning_rate": 0.0006,
+ "loss": 3.7402844429016113,
+ "step": 2227
+ },
+ {
+ "epoch": 30.950633464394933,
+ "grad_norm": 0.2143280804157257,
+ "learning_rate": 0.0006,
+ "loss": 3.7715706825256348,
+ "step": 2228
+ },
+ {
+ "epoch": 30.964613368283093,
+ "grad_norm": 0.20918118953704834,
+ "learning_rate": 0.0006,
+ "loss": 3.783510446548462,
+ "step": 2229
+ },
+ {
+ "epoch": 30.978593272171253,
+ "grad_norm": 0.2184133678674698,
+ "learning_rate": 0.0006,
+ "loss": 3.729846954345703,
+ "step": 2230
+ },
+ {
+ "epoch": 30.992573176059416,
+ "grad_norm": 0.20314796268939972,
+ "learning_rate": 0.0006,
+ "loss": 3.753312110900879,
+ "step": 2231
+ },
+ {
+ "epoch": 31.0,
+ "grad_norm": 0.21582408249378204,
+ "learning_rate": 0.0006,
+ "loss": 3.7653090953826904,
+ "step": 2232
+ },
+ {
+ "epoch": 31.0,
+ "eval_loss": 4.030437469482422,
+ "eval_runtime": 43.8529,
+ "eval_samples_per_second": 55.686,
+ "eval_steps_per_second": 3.489,
+ "step": 2232
+ },
+ {
+ "epoch": 31.01397990388816,
+ "grad_norm": 0.214233860373497,
+ "learning_rate": 0.0006,
+ "loss": 3.7179880142211914,
+ "step": 2233
+ },
+ {
+ "epoch": 31.027959807776323,
+ "grad_norm": 0.24621504545211792,
+ "learning_rate": 0.0006,
+ "loss": 3.712569236755371,
+ "step": 2234
+ },
+ {
+ "epoch": 31.041939711664483,
+ "grad_norm": 0.24189279973506927,
+ "learning_rate": 0.0006,
+ "loss": 3.7503058910369873,
+ "step": 2235
+ },
+ {
+ "epoch": 31.055919615552643,
+ "grad_norm": 0.22872278094291687,
+ "learning_rate": 0.0006,
+ "loss": 3.7386386394500732,
+ "step": 2236
+ },
+ {
+ "epoch": 31.069899519440803,
+ "grad_norm": 0.25036823749542236,
+ "learning_rate": 0.0006,
+ "loss": 3.710566997528076,
+ "step": 2237
+ },
+ {
+ "epoch": 31.083879423328966,
+ "grad_norm": 0.2506193220615387,
+ "learning_rate": 0.0006,
+ "loss": 3.7270963191986084,
+ "step": 2238
+ },
+ {
+ "epoch": 31.097859327217126,
+ "grad_norm": 0.24819663166999817,
+ "learning_rate": 0.0006,
+ "loss": 3.716430425643921,
+ "step": 2239
+ },
+ {
+ "epoch": 31.111839231105286,
+ "grad_norm": 0.27226534485816956,
+ "learning_rate": 0.0006,
+ "loss": 3.704428195953369,
+ "step": 2240
+ },
+ {
+ "epoch": 31.125819134993446,
+ "grad_norm": 0.27718204259872437,
+ "learning_rate": 0.0006,
+ "loss": 3.7309701442718506,
+ "step": 2241
+ },
+ {
+ "epoch": 31.13979903888161,
+ "grad_norm": 0.27272021770477295,
+ "learning_rate": 0.0006,
+ "loss": 3.7325143814086914,
+ "step": 2242
+ },
+ {
+ "epoch": 31.15377894276977,
+ "grad_norm": 0.2666020095348358,
+ "learning_rate": 0.0006,
+ "loss": 3.715268611907959,
+ "step": 2243
+ },
+ {
+ "epoch": 31.16775884665793,
+ "grad_norm": 0.258543461561203,
+ "learning_rate": 0.0006,
+ "loss": 3.7336134910583496,
+ "step": 2244
+ },
+ {
+ "epoch": 31.18173875054609,
+ "grad_norm": 0.2528740167617798,
+ "learning_rate": 0.0006,
+ "loss": 3.724491596221924,
+ "step": 2245
+ },
+ {
+ "epoch": 31.195718654434252,
+ "grad_norm": 0.2659667730331421,
+ "learning_rate": 0.0006,
+ "loss": 3.7144742012023926,
+ "step": 2246
+ },
+ {
+ "epoch": 31.209698558322412,
+ "grad_norm": 0.26563164591789246,
+ "learning_rate": 0.0006,
+ "loss": 3.741182327270508,
+ "step": 2247
+ },
+ {
+ "epoch": 31.22367846221057,
+ "grad_norm": 0.26326918601989746,
+ "learning_rate": 0.0006,
+ "loss": 3.7306275367736816,
+ "step": 2248
+ },
+ {
+ "epoch": 31.23765836609873,
+ "grad_norm": 0.23020948469638824,
+ "learning_rate": 0.0006,
+ "loss": 3.7212486267089844,
+ "step": 2249
+ },
+ {
+ "epoch": 31.251638269986895,
+ "grad_norm": 0.21207433938980103,
+ "learning_rate": 0.0006,
+ "loss": 3.6914258003234863,
+ "step": 2250
+ },
+ {
+ "epoch": 31.265618173875055,
+ "grad_norm": 0.2392292022705078,
+ "learning_rate": 0.0006,
+ "loss": 3.7117457389831543,
+ "step": 2251
+ },
+ {
+ "epoch": 31.279598077763215,
+ "grad_norm": 0.22084997594356537,
+ "learning_rate": 0.0006,
+ "loss": 3.728043794631958,
+ "step": 2252
+ },
+ {
+ "epoch": 31.293577981651374,
+ "grad_norm": 0.20818188786506653,
+ "learning_rate": 0.0006,
+ "loss": 3.751762866973877,
+ "step": 2253
+ },
+ {
+ "epoch": 31.307557885539538,
+ "grad_norm": 0.21866194903850555,
+ "learning_rate": 0.0006,
+ "loss": 3.72676420211792,
+ "step": 2254
+ },
+ {
+ "epoch": 31.321537789427698,
+ "grad_norm": 0.20727522671222687,
+ "learning_rate": 0.0006,
+ "loss": 3.735708236694336,
+ "step": 2255
+ },
+ {
+ "epoch": 31.335517693315857,
+ "grad_norm": 0.20655220746994019,
+ "learning_rate": 0.0006,
+ "loss": 3.714116096496582,
+ "step": 2256
+ },
+ {
+ "epoch": 31.34949759720402,
+ "grad_norm": 0.21738854050636292,
+ "learning_rate": 0.0006,
+ "loss": 3.731657028198242,
+ "step": 2257
+ },
+ {
+ "epoch": 31.36347750109218,
+ "grad_norm": 0.20758475363254547,
+ "learning_rate": 0.0006,
+ "loss": 3.7378528118133545,
+ "step": 2258
+ },
+ {
+ "epoch": 31.37745740498034,
+ "grad_norm": 0.20107139647006989,
+ "learning_rate": 0.0006,
+ "loss": 3.748572826385498,
+ "step": 2259
+ },
+ {
+ "epoch": 31.3914373088685,
+ "grad_norm": 0.18707452714443207,
+ "learning_rate": 0.0006,
+ "loss": 3.7237391471862793,
+ "step": 2260
+ },
+ {
+ "epoch": 31.405417212756664,
+ "grad_norm": 0.20745301246643066,
+ "learning_rate": 0.0006,
+ "loss": 3.734435558319092,
+ "step": 2261
+ },
+ {
+ "epoch": 31.419397116644824,
+ "grad_norm": 0.20793399214744568,
+ "learning_rate": 0.0006,
+ "loss": 3.7639012336730957,
+ "step": 2262
+ },
+ {
+ "epoch": 31.433377020532983,
+ "grad_norm": 0.20193757116794586,
+ "learning_rate": 0.0006,
+ "loss": 3.754117727279663,
+ "step": 2263
+ },
+ {
+ "epoch": 31.447356924421143,
+ "grad_norm": 0.1912323236465454,
+ "learning_rate": 0.0006,
+ "loss": 3.728111982345581,
+ "step": 2264
+ },
+ {
+ "epoch": 31.461336828309307,
+ "grad_norm": 0.19441582262516022,
+ "learning_rate": 0.0006,
+ "loss": 3.7533278465270996,
+ "step": 2265
+ },
+ {
+ "epoch": 31.475316732197467,
+ "grad_norm": 0.19807079434394836,
+ "learning_rate": 0.0006,
+ "loss": 3.7351698875427246,
+ "step": 2266
+ },
+ {
+ "epoch": 31.489296636085626,
+ "grad_norm": 0.20373263955116272,
+ "learning_rate": 0.0006,
+ "loss": 3.714097023010254,
+ "step": 2267
+ },
+ {
+ "epoch": 31.503276539973786,
+ "grad_norm": 0.21868768334388733,
+ "learning_rate": 0.0006,
+ "loss": 3.736743688583374,
+ "step": 2268
+ },
+ {
+ "epoch": 31.51725644386195,
+ "grad_norm": 0.20767922699451447,
+ "learning_rate": 0.0006,
+ "loss": 3.7097702026367188,
+ "step": 2269
+ },
+ {
+ "epoch": 31.53123634775011,
+ "grad_norm": 0.18425600230693817,
+ "learning_rate": 0.0006,
+ "loss": 3.7349140644073486,
+ "step": 2270
+ },
+ {
+ "epoch": 31.54521625163827,
+ "grad_norm": 0.18813826143741608,
+ "learning_rate": 0.0006,
+ "loss": 3.7023448944091797,
+ "step": 2271
+ },
+ {
+ "epoch": 31.55919615552643,
+ "grad_norm": 0.1892116516828537,
+ "learning_rate": 0.0006,
+ "loss": 3.7170143127441406,
+ "step": 2272
+ },
+ {
+ "epoch": 31.573176059414592,
+ "grad_norm": 0.2067834585905075,
+ "learning_rate": 0.0006,
+ "loss": 3.7312588691711426,
+ "step": 2273
+ },
+ {
+ "epoch": 31.587155963302752,
+ "grad_norm": 0.204023078083992,
+ "learning_rate": 0.0006,
+ "loss": 3.7399091720581055,
+ "step": 2274
+ },
+ {
+ "epoch": 31.601135867190912,
+ "grad_norm": 0.20245152711868286,
+ "learning_rate": 0.0006,
+ "loss": 3.7259416580200195,
+ "step": 2275
+ },
+ {
+ "epoch": 31.615115771079076,
+ "grad_norm": 0.21125490963459015,
+ "learning_rate": 0.0006,
+ "loss": 3.7217836380004883,
+ "step": 2276
+ },
+ {
+ "epoch": 31.629095674967235,
+ "grad_norm": 0.2093241959810257,
+ "learning_rate": 0.0006,
+ "loss": 3.707627773284912,
+ "step": 2277
+ },
+ {
+ "epoch": 31.643075578855395,
+ "grad_norm": 0.19290480017662048,
+ "learning_rate": 0.0006,
+ "loss": 3.7467126846313477,
+ "step": 2278
+ },
+ {
+ "epoch": 31.657055482743555,
+ "grad_norm": 0.1853940635919571,
+ "learning_rate": 0.0006,
+ "loss": 3.7565581798553467,
+ "step": 2279
+ },
+ {
+ "epoch": 31.67103538663172,
+ "grad_norm": 0.18917642533779144,
+ "learning_rate": 0.0006,
+ "loss": 3.7286229133605957,
+ "step": 2280
+ },
+ {
+ "epoch": 31.68501529051988,
+ "grad_norm": 0.2094079703092575,
+ "learning_rate": 0.0006,
+ "loss": 3.7297096252441406,
+ "step": 2281
+ },
+ {
+ "epoch": 31.698995194408038,
+ "grad_norm": 0.20020027458667755,
+ "learning_rate": 0.0006,
+ "loss": 3.7565250396728516,
+ "step": 2282
+ },
+ {
+ "epoch": 31.712975098296198,
+ "grad_norm": 0.19156186282634735,
+ "learning_rate": 0.0006,
+ "loss": 3.7401509284973145,
+ "step": 2283
+ },
+ {
+ "epoch": 31.72695500218436,
+ "grad_norm": 0.19176368415355682,
+ "learning_rate": 0.0006,
+ "loss": 3.751206398010254,
+ "step": 2284
+ },
+ {
+ "epoch": 31.74093490607252,
+ "grad_norm": 0.18351277709007263,
+ "learning_rate": 0.0006,
+ "loss": 3.752984046936035,
+ "step": 2285
+ },
+ {
+ "epoch": 31.75491480996068,
+ "grad_norm": 0.1879221349954605,
+ "learning_rate": 0.0006,
+ "loss": 3.7156834602355957,
+ "step": 2286
+ },
+ {
+ "epoch": 31.76889471384884,
+ "grad_norm": 0.19232559204101562,
+ "learning_rate": 0.0006,
+ "loss": 3.732879638671875,
+ "step": 2287
+ },
+ {
+ "epoch": 31.782874617737004,
+ "grad_norm": 0.18484069406986237,
+ "learning_rate": 0.0006,
+ "loss": 3.7489013671875,
+ "step": 2288
+ },
+ {
+ "epoch": 31.796854521625164,
+ "grad_norm": 0.20705144107341766,
+ "learning_rate": 0.0006,
+ "loss": 3.7214112281799316,
+ "step": 2289
+ },
+ {
+ "epoch": 31.810834425513324,
+ "grad_norm": 0.23424774408340454,
+ "learning_rate": 0.0006,
+ "loss": 3.714550256729126,
+ "step": 2290
+ },
+ {
+ "epoch": 31.824814329401484,
+ "grad_norm": 0.24061693251132965,
+ "learning_rate": 0.0006,
+ "loss": 3.717336654663086,
+ "step": 2291
+ },
+ {
+ "epoch": 31.838794233289647,
+ "grad_norm": 0.23156678676605225,
+ "learning_rate": 0.0006,
+ "loss": 3.7345399856567383,
+ "step": 2292
+ },
+ {
+ "epoch": 31.852774137177807,
+ "grad_norm": 0.2256302684545517,
+ "learning_rate": 0.0006,
+ "loss": 3.7596092224121094,
+ "step": 2293
+ },
+ {
+ "epoch": 31.866754041065967,
+ "grad_norm": 0.2118781954050064,
+ "learning_rate": 0.0006,
+ "loss": 3.725433588027954,
+ "step": 2294
+ },
+ {
+ "epoch": 31.88073394495413,
+ "grad_norm": 0.1874573826789856,
+ "learning_rate": 0.0006,
+ "loss": 3.738901138305664,
+ "step": 2295
+ },
+ {
+ "epoch": 31.89471384884229,
+ "grad_norm": 0.2062024176120758,
+ "learning_rate": 0.0006,
+ "loss": 3.7439217567443848,
+ "step": 2296
+ },
+ {
+ "epoch": 31.90869375273045,
+ "grad_norm": 0.19886671006679535,
+ "learning_rate": 0.0006,
+ "loss": 3.7583155632019043,
+ "step": 2297
+ },
+ {
+ "epoch": 31.92267365661861,
+ "grad_norm": 0.2079734355211258,
+ "learning_rate": 0.0006,
+ "loss": 3.7251501083374023,
+ "step": 2298
+ },
+ {
+ "epoch": 31.936653560506773,
+ "grad_norm": 0.19710204005241394,
+ "learning_rate": 0.0006,
+ "loss": 3.765778064727783,
+ "step": 2299
+ },
+ {
+ "epoch": 31.950633464394933,
+ "grad_norm": 0.1949392408132553,
+ "learning_rate": 0.0006,
+ "loss": 3.7634787559509277,
+ "step": 2300
+ },
+ {
+ "epoch": 31.964613368283093,
+ "grad_norm": 0.21466250717639923,
+ "learning_rate": 0.0006,
+ "loss": 3.7673215866088867,
+ "step": 2301
+ },
+ {
+ "epoch": 31.978593272171253,
+ "grad_norm": 0.21624267101287842,
+ "learning_rate": 0.0006,
+ "loss": 3.7617220878601074,
+ "step": 2302
+ },
+ {
+ "epoch": 31.992573176059416,
+ "grad_norm": 0.22880229353904724,
+ "learning_rate": 0.0006,
+ "loss": 3.7190351486206055,
+ "step": 2303
+ },
+ {
+ "epoch": 32.0,
+ "grad_norm": 0.23227518796920776,
+ "learning_rate": 0.0006,
+ "loss": 3.740169048309326,
+ "step": 2304
+ },
+ {
+ "epoch": 32.0,
+ "eval_loss": 4.017981052398682,
+ "eval_runtime": 44.4134,
+ "eval_samples_per_second": 54.983,
+ "eval_steps_per_second": 3.445,
+ "step": 2304
+ },
+ {
+ "epoch": 32.01397990388816,
+ "grad_norm": 0.1893721967935562,
+ "learning_rate": 0.0006,
+ "loss": 3.71738338470459,
+ "step": 2305
+ },
+ {
+ "epoch": 32.02795980777632,
+ "grad_norm": 0.23771171271800995,
+ "learning_rate": 0.0006,
+ "loss": 3.71402645111084,
+ "step": 2306
+ },
+ {
+ "epoch": 32.04193971166448,
+ "grad_norm": 0.26343807578086853,
+ "learning_rate": 0.0006,
+ "loss": 3.6926395893096924,
+ "step": 2307
+ },
+ {
+ "epoch": 32.05591961555265,
+ "grad_norm": 0.25092509388923645,
+ "learning_rate": 0.0006,
+ "loss": 3.715243339538574,
+ "step": 2308
+ },
+ {
+ "epoch": 32.0698995194408,
+ "grad_norm": 0.23148509860038757,
+ "learning_rate": 0.0006,
+ "loss": 3.690734386444092,
+ "step": 2309
+ },
+ {
+ "epoch": 32.083879423328966,
+ "grad_norm": 0.23314623534679413,
+ "learning_rate": 0.0006,
+ "loss": 3.6980109214782715,
+ "step": 2310
+ },
+ {
+ "epoch": 32.09785932721712,
+ "grad_norm": 0.2210417091846466,
+ "learning_rate": 0.0006,
+ "loss": 3.7395730018615723,
+ "step": 2311
+ },
+ {
+ "epoch": 32.111839231105286,
+ "grad_norm": 0.20263685286045074,
+ "learning_rate": 0.0006,
+ "loss": 3.678412914276123,
+ "step": 2312
+ },
+ {
+ "epoch": 32.12581913499345,
+ "grad_norm": 0.20412251353263855,
+ "learning_rate": 0.0006,
+ "loss": 3.688762903213501,
+ "step": 2313
+ },
+ {
+ "epoch": 32.139799038881605,
+ "grad_norm": 0.2041679322719574,
+ "learning_rate": 0.0006,
+ "loss": 3.7231521606445312,
+ "step": 2314
+ },
+ {
+ "epoch": 32.15377894276977,
+ "grad_norm": 0.23270174860954285,
+ "learning_rate": 0.0006,
+ "loss": 3.7102620601654053,
+ "step": 2315
+ },
+ {
+ "epoch": 32.16775884665793,
+ "grad_norm": 0.25470519065856934,
+ "learning_rate": 0.0006,
+ "loss": 3.7353053092956543,
+ "step": 2316
+ },
+ {
+ "epoch": 32.18173875054609,
+ "grad_norm": 0.2930106222629547,
+ "learning_rate": 0.0006,
+ "loss": 3.7418713569641113,
+ "step": 2317
+ },
+ {
+ "epoch": 32.19571865443425,
+ "grad_norm": 0.3181219696998596,
+ "learning_rate": 0.0006,
+ "loss": 3.6716184616088867,
+ "step": 2318
+ },
+ {
+ "epoch": 32.20969855832241,
+ "grad_norm": 0.2752978801727295,
+ "learning_rate": 0.0006,
+ "loss": 3.70334792137146,
+ "step": 2319
+ },
+ {
+ "epoch": 32.22367846221057,
+ "grad_norm": 0.28381186723709106,
+ "learning_rate": 0.0006,
+ "loss": 3.719794750213623,
+ "step": 2320
+ },
+ {
+ "epoch": 32.237658366098735,
+ "grad_norm": 0.3287750482559204,
+ "learning_rate": 0.0006,
+ "loss": 3.7363362312316895,
+ "step": 2321
+ },
+ {
+ "epoch": 32.25163826998689,
+ "grad_norm": 0.32669803500175476,
+ "learning_rate": 0.0006,
+ "loss": 3.739394426345825,
+ "step": 2322
+ },
+ {
+ "epoch": 32.265618173875055,
+ "grad_norm": 0.27423885464668274,
+ "learning_rate": 0.0006,
+ "loss": 3.7381205558776855,
+ "step": 2323
+ },
+ {
+ "epoch": 32.27959807776322,
+ "grad_norm": 0.2594660818576813,
+ "learning_rate": 0.0006,
+ "loss": 3.698683738708496,
+ "step": 2324
+ },
+ {
+ "epoch": 32.293577981651374,
+ "grad_norm": 0.2785511016845703,
+ "learning_rate": 0.0006,
+ "loss": 3.688774824142456,
+ "step": 2325
+ },
+ {
+ "epoch": 32.30755788553954,
+ "grad_norm": 0.2690320611000061,
+ "learning_rate": 0.0006,
+ "loss": 3.7209150791168213,
+ "step": 2326
+ },
+ {
+ "epoch": 32.3215377894277,
+ "grad_norm": 0.23331770300865173,
+ "learning_rate": 0.0006,
+ "loss": 3.682931423187256,
+ "step": 2327
+ },
+ {
+ "epoch": 32.33551769331586,
+ "grad_norm": 0.22380802035331726,
+ "learning_rate": 0.0006,
+ "loss": 3.720445156097412,
+ "step": 2328
+ },
+ {
+ "epoch": 32.34949759720402,
+ "grad_norm": 0.2065964937210083,
+ "learning_rate": 0.0006,
+ "loss": 3.705427885055542,
+ "step": 2329
+ },
+ {
+ "epoch": 32.36347750109218,
+ "grad_norm": 0.20701853930950165,
+ "learning_rate": 0.0006,
+ "loss": 3.7078697681427,
+ "step": 2330
+ },
+ {
+ "epoch": 32.37745740498034,
+ "grad_norm": 0.2063559591770172,
+ "learning_rate": 0.0006,
+ "loss": 3.745004653930664,
+ "step": 2331
+ },
+ {
+ "epoch": 32.391437308868504,
+ "grad_norm": 0.19377011060714722,
+ "learning_rate": 0.0006,
+ "loss": 3.713808059692383,
+ "step": 2332
+ },
+ {
+ "epoch": 32.40541721275666,
+ "grad_norm": 0.19260725378990173,
+ "learning_rate": 0.0006,
+ "loss": 3.717043876647949,
+ "step": 2333
+ },
+ {
+ "epoch": 32.419397116644824,
+ "grad_norm": 0.20792821049690247,
+ "learning_rate": 0.0006,
+ "loss": 3.68632173538208,
+ "step": 2334
+ },
+ {
+ "epoch": 32.43337702053299,
+ "grad_norm": 0.22278444468975067,
+ "learning_rate": 0.0006,
+ "loss": 3.7345821857452393,
+ "step": 2335
+ },
+ {
+ "epoch": 32.44735692442114,
+ "grad_norm": 0.22533579170703888,
+ "learning_rate": 0.0006,
+ "loss": 3.7224173545837402,
+ "step": 2336
+ },
+ {
+ "epoch": 32.46133682830931,
+ "grad_norm": 0.20228394865989685,
+ "learning_rate": 0.0006,
+ "loss": 3.748530149459839,
+ "step": 2337
+ },
+ {
+ "epoch": 32.47531673219746,
+ "grad_norm": 0.19944614171981812,
+ "learning_rate": 0.0006,
+ "loss": 3.707085371017456,
+ "step": 2338
+ },
+ {
+ "epoch": 32.489296636085626,
+ "grad_norm": 0.19856145977973938,
+ "learning_rate": 0.0006,
+ "loss": 3.6898274421691895,
+ "step": 2339
+ },
+ {
+ "epoch": 32.50327653997379,
+ "grad_norm": 0.20734605193138123,
+ "learning_rate": 0.0006,
+ "loss": 3.7511792182922363,
+ "step": 2340
+ },
+ {
+ "epoch": 32.517256443861946,
+ "grad_norm": 0.19489309191703796,
+ "learning_rate": 0.0006,
+ "loss": 3.736445426940918,
+ "step": 2341
+ },
+ {
+ "epoch": 32.53123634775011,
+ "grad_norm": 0.18899282813072205,
+ "learning_rate": 0.0006,
+ "loss": 3.727325916290283,
+ "step": 2342
+ },
+ {
+ "epoch": 32.54521625163827,
+ "grad_norm": 0.19670401513576508,
+ "learning_rate": 0.0006,
+ "loss": 3.7326102256774902,
+ "step": 2343
+ },
+ {
+ "epoch": 32.55919615552643,
+ "grad_norm": 0.20061780512332916,
+ "learning_rate": 0.0006,
+ "loss": 3.698716402053833,
+ "step": 2344
+ },
+ {
+ "epoch": 32.57317605941459,
+ "grad_norm": 0.1991659700870514,
+ "learning_rate": 0.0006,
+ "loss": 3.6913180351257324,
+ "step": 2345
+ },
+ {
+ "epoch": 32.58715596330275,
+ "grad_norm": 0.18856225907802582,
+ "learning_rate": 0.0006,
+ "loss": 3.7130961418151855,
+ "step": 2346
+ },
+ {
+ "epoch": 32.60113586719091,
+ "grad_norm": 0.1983972191810608,
+ "learning_rate": 0.0006,
+ "loss": 3.7530808448791504,
+ "step": 2347
+ },
+ {
+ "epoch": 32.615115771079076,
+ "grad_norm": 0.2037997543811798,
+ "learning_rate": 0.0006,
+ "loss": 3.7076587677001953,
+ "step": 2348
+ },
+ {
+ "epoch": 32.62909567496723,
+ "grad_norm": 0.21008458733558655,
+ "learning_rate": 0.0006,
+ "loss": 3.7379021644592285,
+ "step": 2349
+ },
+ {
+ "epoch": 32.643075578855395,
+ "grad_norm": 0.2129313349723816,
+ "learning_rate": 0.0006,
+ "loss": 3.7031373977661133,
+ "step": 2350
+ },
+ {
+ "epoch": 32.65705548274356,
+ "grad_norm": 0.18756245076656342,
+ "learning_rate": 0.0006,
+ "loss": 3.7066285610198975,
+ "step": 2351
+ },
+ {
+ "epoch": 32.671035386631715,
+ "grad_norm": 0.17946591973304749,
+ "learning_rate": 0.0006,
+ "loss": 3.73781681060791,
+ "step": 2352
+ },
+ {
+ "epoch": 32.68501529051988,
+ "grad_norm": 0.18983198702335358,
+ "learning_rate": 0.0006,
+ "loss": 3.718855381011963,
+ "step": 2353
+ },
+ {
+ "epoch": 32.69899519440804,
+ "grad_norm": 0.2080942839384079,
+ "learning_rate": 0.0006,
+ "loss": 3.7111258506774902,
+ "step": 2354
+ },
+ {
+ "epoch": 32.7129750982962,
+ "grad_norm": 0.23633413016796112,
+ "learning_rate": 0.0006,
+ "loss": 3.709766149520874,
+ "step": 2355
+ },
+ {
+ "epoch": 32.72695500218436,
+ "grad_norm": 0.2723144590854645,
+ "learning_rate": 0.0006,
+ "loss": 3.745850086212158,
+ "step": 2356
+ },
+ {
+ "epoch": 32.74093490607252,
+ "grad_norm": 0.29774025082588196,
+ "learning_rate": 0.0006,
+ "loss": 3.733771324157715,
+ "step": 2357
+ },
+ {
+ "epoch": 32.75491480996068,
+ "grad_norm": 0.25976699590682983,
+ "learning_rate": 0.0006,
+ "loss": 3.734194278717041,
+ "step": 2358
+ },
+ {
+ "epoch": 32.768894713848844,
+ "grad_norm": 0.20038039982318878,
+ "learning_rate": 0.0006,
+ "loss": 3.735656261444092,
+ "step": 2359
+ },
+ {
+ "epoch": 32.782874617737,
+ "grad_norm": 0.19745637476444244,
+ "learning_rate": 0.0006,
+ "loss": 3.7335894107818604,
+ "step": 2360
+ },
+ {
+ "epoch": 32.796854521625164,
+ "grad_norm": 0.22022396326065063,
+ "learning_rate": 0.0006,
+ "loss": 3.708998680114746,
+ "step": 2361
+ },
+ {
+ "epoch": 32.81083442551333,
+ "grad_norm": 0.24754752218723297,
+ "learning_rate": 0.0006,
+ "loss": 3.7616286277770996,
+ "step": 2362
+ },
+ {
+ "epoch": 32.824814329401484,
+ "grad_norm": 0.26438358426094055,
+ "learning_rate": 0.0006,
+ "loss": 3.737079620361328,
+ "step": 2363
+ },
+ {
+ "epoch": 32.83879423328965,
+ "grad_norm": 0.2507241666316986,
+ "learning_rate": 0.0006,
+ "loss": 3.708500385284424,
+ "step": 2364
+ },
+ {
+ "epoch": 32.8527741371778,
+ "grad_norm": 0.25688016414642334,
+ "learning_rate": 0.0006,
+ "loss": 3.7389419078826904,
+ "step": 2365
+ },
+ {
+ "epoch": 32.86675404106597,
+ "grad_norm": 0.257447749376297,
+ "learning_rate": 0.0006,
+ "loss": 3.7253334522247314,
+ "step": 2366
+ },
+ {
+ "epoch": 32.88073394495413,
+ "grad_norm": 0.2621215879917145,
+ "learning_rate": 0.0006,
+ "loss": 3.773163318634033,
+ "step": 2367
+ },
+ {
+ "epoch": 32.89471384884229,
+ "grad_norm": 0.23554839193820953,
+ "learning_rate": 0.0006,
+ "loss": 3.7534430027008057,
+ "step": 2368
+ },
+ {
+ "epoch": 32.90869375273045,
+ "grad_norm": 0.19698940217494965,
+ "learning_rate": 0.0006,
+ "loss": 3.7094414234161377,
+ "step": 2369
+ },
+ {
+ "epoch": 32.92267365661861,
+ "grad_norm": 0.21380476653575897,
+ "learning_rate": 0.0006,
+ "loss": 3.7666497230529785,
+ "step": 2370
+ },
+ {
+ "epoch": 32.93665356050677,
+ "grad_norm": 0.20876452326774597,
+ "learning_rate": 0.0006,
+ "loss": 3.7467992305755615,
+ "step": 2371
+ },
+ {
+ "epoch": 32.95063346439493,
+ "grad_norm": 0.1989884227514267,
+ "learning_rate": 0.0006,
+ "loss": 3.749878168106079,
+ "step": 2372
+ },
+ {
+ "epoch": 32.964613368283096,
+ "grad_norm": 0.19089168310165405,
+ "learning_rate": 0.0006,
+ "loss": 3.7211015224456787,
+ "step": 2373
+ },
+ {
+ "epoch": 32.97859327217125,
+ "grad_norm": 0.1962461918592453,
+ "learning_rate": 0.0006,
+ "loss": 3.728684425354004,
+ "step": 2374
+ },
+ {
+ "epoch": 32.992573176059416,
+ "grad_norm": 0.22518110275268555,
+ "learning_rate": 0.0006,
+ "loss": 3.7361507415771484,
+ "step": 2375
+ },
+ {
+ "epoch": 33.0,
+ "grad_norm": 0.26704078912734985,
+ "learning_rate": 0.0006,
+ "loss": 3.7478318214416504,
+ "step": 2376
+ },
+ {
+ "epoch": 33.0,
+ "eval_loss": 4.024221897125244,
+ "eval_runtime": 43.9826,
+ "eval_samples_per_second": 55.522,
+ "eval_steps_per_second": 3.479,
+ "step": 2376
+ },
+ {
+ "epoch": 33.01397990388816,
+ "grad_norm": 0.23387742042541504,
+ "learning_rate": 0.0006,
+ "loss": 3.7043614387512207,
+ "step": 2377
+ },
+ {
+ "epoch": 33.02795980777632,
+ "grad_norm": 0.21334673464298248,
+ "learning_rate": 0.0006,
+ "loss": 3.6714677810668945,
+ "step": 2378
+ },
+ {
+ "epoch": 33.04193971166448,
+ "grad_norm": 0.2608581483364105,
+ "learning_rate": 0.0006,
+ "loss": 3.678460121154785,
+ "step": 2379
+ },
+ {
+ "epoch": 33.05591961555265,
+ "grad_norm": 0.31364381313323975,
+ "learning_rate": 0.0006,
+ "loss": 3.6771793365478516,
+ "step": 2380
+ },
+ {
+ "epoch": 33.0698995194408,
+ "grad_norm": 0.31785935163497925,
+ "learning_rate": 0.0006,
+ "loss": 3.7248926162719727,
+ "step": 2381
+ },
+ {
+ "epoch": 33.083879423328966,
+ "grad_norm": 0.29244646430015564,
+ "learning_rate": 0.0006,
+ "loss": 3.677882194519043,
+ "step": 2382
+ },
+ {
+ "epoch": 33.09785932721712,
+ "grad_norm": 0.23943741619586945,
+ "learning_rate": 0.0006,
+ "loss": 3.7365124225616455,
+ "step": 2383
+ },
+ {
+ "epoch": 33.111839231105286,
+ "grad_norm": 0.2547394931316376,
+ "learning_rate": 0.0006,
+ "loss": 3.7031357288360596,
+ "step": 2384
+ },
+ {
+ "epoch": 33.12581913499345,
+ "grad_norm": 0.2696659564971924,
+ "learning_rate": 0.0006,
+ "loss": 3.6904754638671875,
+ "step": 2385
+ },
+ {
+ "epoch": 33.139799038881605,
+ "grad_norm": 0.24271385371685028,
+ "learning_rate": 0.0006,
+ "loss": 3.7137649059295654,
+ "step": 2386
+ },
+ {
+ "epoch": 33.15377894276977,
+ "grad_norm": 0.23435993492603302,
+ "learning_rate": 0.0006,
+ "loss": 3.707383632659912,
+ "step": 2387
+ },
+ {
+ "epoch": 33.16775884665793,
+ "grad_norm": 0.21428440511226654,
+ "learning_rate": 0.0006,
+ "loss": 3.7148897647857666,
+ "step": 2388
+ },
+ {
+ "epoch": 33.18173875054609,
+ "grad_norm": 0.22420962154865265,
+ "learning_rate": 0.0006,
+ "loss": 3.710111141204834,
+ "step": 2389
+ },
+ {
+ "epoch": 33.19571865443425,
+ "grad_norm": 0.26222777366638184,
+ "learning_rate": 0.0006,
+ "loss": 3.677438259124756,
+ "step": 2390
+ },
+ {
+ "epoch": 33.20969855832241,
+ "grad_norm": 0.29910165071487427,
+ "learning_rate": 0.0006,
+ "loss": 3.6895523071289062,
+ "step": 2391
+ },
+ {
+ "epoch": 33.22367846221057,
+ "grad_norm": 0.2615569531917572,
+ "learning_rate": 0.0006,
+ "loss": 3.7339906692504883,
+ "step": 2392
+ },
+ {
+ "epoch": 33.237658366098735,
+ "grad_norm": 0.23396961390972137,
+ "learning_rate": 0.0006,
+ "loss": 3.7179932594299316,
+ "step": 2393
+ },
+ {
+ "epoch": 33.25163826998689,
+ "grad_norm": 0.24844495952129364,
+ "learning_rate": 0.0006,
+ "loss": 3.7191576957702637,
+ "step": 2394
+ },
+ {
+ "epoch": 33.265618173875055,
+ "grad_norm": 0.2306993454694748,
+ "learning_rate": 0.0006,
+ "loss": 3.7172658443450928,
+ "step": 2395
+ },
+ {
+ "epoch": 33.27959807776322,
+ "grad_norm": 0.24935221672058105,
+ "learning_rate": 0.0006,
+ "loss": 3.6917519569396973,
+ "step": 2396
+ },
+ {
+ "epoch": 33.293577981651374,
+ "grad_norm": 0.2522840201854706,
+ "learning_rate": 0.0006,
+ "loss": 3.7263593673706055,
+ "step": 2397
+ },
+ {
+ "epoch": 33.30755788553954,
+ "grad_norm": 0.26411181688308716,
+ "learning_rate": 0.0006,
+ "loss": 3.6981635093688965,
+ "step": 2398
+ },
+ {
+ "epoch": 33.3215377894277,
+ "grad_norm": 0.22396239638328552,
+ "learning_rate": 0.0006,
+ "loss": 3.713247299194336,
+ "step": 2399
+ },
+ {
+ "epoch": 33.33551769331586,
+ "grad_norm": 0.20579157769680023,
+ "learning_rate": 0.0006,
+ "loss": 3.7058467864990234,
+ "step": 2400
+ },
+ {
+ "epoch": 33.34949759720402,
+ "grad_norm": 0.20103922486305237,
+ "learning_rate": 0.0006,
+ "loss": 3.700924873352051,
+ "step": 2401
+ },
+ {
+ "epoch": 33.36347750109218,
+ "grad_norm": 0.19964663684368134,
+ "learning_rate": 0.0006,
+ "loss": 3.6985437870025635,
+ "step": 2402
+ },
+ {
+ "epoch": 33.37745740498034,
+ "grad_norm": 0.20860575139522552,
+ "learning_rate": 0.0006,
+ "loss": 3.7480058670043945,
+ "step": 2403
+ },
+ {
+ "epoch": 33.391437308868504,
+ "grad_norm": 0.19043605029582977,
+ "learning_rate": 0.0006,
+ "loss": 3.6952016353607178,
+ "step": 2404
+ },
+ {
+ "epoch": 33.40541721275666,
+ "grad_norm": 0.1968909204006195,
+ "learning_rate": 0.0006,
+ "loss": 3.69362735748291,
+ "step": 2405
+ },
+ {
+ "epoch": 33.419397116644824,
+ "grad_norm": 0.23492494225502014,
+ "learning_rate": 0.0006,
+ "loss": 3.707993984222412,
+ "step": 2406
+ },
+ {
+ "epoch": 33.43337702053299,
+ "grad_norm": 0.23970453441143036,
+ "learning_rate": 0.0006,
+ "loss": 3.707731246948242,
+ "step": 2407
+ },
+ {
+ "epoch": 33.44735692442114,
+ "grad_norm": 0.2515844404697418,
+ "learning_rate": 0.0006,
+ "loss": 3.723824977874756,
+ "step": 2408
+ },
+ {
+ "epoch": 33.46133682830931,
+ "grad_norm": 0.2343570590019226,
+ "learning_rate": 0.0006,
+ "loss": 3.7068886756896973,
+ "step": 2409
+ },
+ {
+ "epoch": 33.47531673219746,
+ "grad_norm": 0.23419860005378723,
+ "learning_rate": 0.0006,
+ "loss": 3.6964287757873535,
+ "step": 2410
+ },
+ {
+ "epoch": 33.489296636085626,
+ "grad_norm": 0.21280375123023987,
+ "learning_rate": 0.0006,
+ "loss": 3.7020950317382812,
+ "step": 2411
+ },
+ {
+ "epoch": 33.50327653997379,
+ "grad_norm": 0.2061092108488083,
+ "learning_rate": 0.0006,
+ "loss": 3.750861406326294,
+ "step": 2412
+ },
+ {
+ "epoch": 33.517256443861946,
+ "grad_norm": 0.19693219661712646,
+ "learning_rate": 0.0006,
+ "loss": 3.717020034790039,
+ "step": 2413
+ },
+ {
+ "epoch": 33.53123634775011,
+ "grad_norm": 0.18199551105499268,
+ "learning_rate": 0.0006,
+ "loss": 3.7242612838745117,
+ "step": 2414
+ },
+ {
+ "epoch": 33.54521625163827,
+ "grad_norm": 0.20131248235702515,
+ "learning_rate": 0.0006,
+ "loss": 3.6758954524993896,
+ "step": 2415
+ },
+ {
+ "epoch": 33.55919615552643,
+ "grad_norm": 0.2219412475824356,
+ "learning_rate": 0.0006,
+ "loss": 3.707927703857422,
+ "step": 2416
+ },
+ {
+ "epoch": 33.57317605941459,
+ "grad_norm": 0.22541435062885284,
+ "learning_rate": 0.0006,
+ "loss": 3.696967601776123,
+ "step": 2417
+ },
+ {
+ "epoch": 33.58715596330275,
+ "grad_norm": 0.20367272198200226,
+ "learning_rate": 0.0006,
+ "loss": 3.730795383453369,
+ "step": 2418
+ },
+ {
+ "epoch": 33.60113586719091,
+ "grad_norm": 0.20861074328422546,
+ "learning_rate": 0.0006,
+ "loss": 3.707066535949707,
+ "step": 2419
+ },
+ {
+ "epoch": 33.615115771079076,
+ "grad_norm": 0.20570263266563416,
+ "learning_rate": 0.0006,
+ "loss": 3.730602502822876,
+ "step": 2420
+ },
+ {
+ "epoch": 33.62909567496723,
+ "grad_norm": 0.21318231523036957,
+ "learning_rate": 0.0006,
+ "loss": 3.7073278427124023,
+ "step": 2421
+ },
+ {
+ "epoch": 33.643075578855395,
+ "grad_norm": 0.2142639458179474,
+ "learning_rate": 0.0006,
+ "loss": 3.718470573425293,
+ "step": 2422
+ },
+ {
+ "epoch": 33.65705548274356,
+ "grad_norm": 0.19620704650878906,
+ "learning_rate": 0.0006,
+ "loss": 3.716036319732666,
+ "step": 2423
+ },
+ {
+ "epoch": 33.671035386631715,
+ "grad_norm": 0.19308267533779144,
+ "learning_rate": 0.0006,
+ "loss": 3.734597682952881,
+ "step": 2424
+ },
+ {
+ "epoch": 33.68501529051988,
+ "grad_norm": 0.19453389942646027,
+ "learning_rate": 0.0006,
+ "loss": 3.726262092590332,
+ "step": 2425
+ },
+ {
+ "epoch": 33.69899519440804,
+ "grad_norm": 0.20405639708042145,
+ "learning_rate": 0.0006,
+ "loss": 3.678340435028076,
+ "step": 2426
+ },
+ {
+ "epoch": 33.7129750982962,
+ "grad_norm": 0.19525611400604248,
+ "learning_rate": 0.0006,
+ "loss": 3.723907470703125,
+ "step": 2427
+ },
+ {
+ "epoch": 33.72695500218436,
+ "grad_norm": 0.19390441477298737,
+ "learning_rate": 0.0006,
+ "loss": 3.707897186279297,
+ "step": 2428
+ },
+ {
+ "epoch": 33.74093490607252,
+ "grad_norm": 0.2032899558544159,
+ "learning_rate": 0.0006,
+ "loss": 3.735041618347168,
+ "step": 2429
+ },
+ {
+ "epoch": 33.75491480996068,
+ "grad_norm": 0.2134784460067749,
+ "learning_rate": 0.0006,
+ "loss": 3.674978017807007,
+ "step": 2430
+ },
+ {
+ "epoch": 33.768894713848844,
+ "grad_norm": 0.24691973626613617,
+ "learning_rate": 0.0006,
+ "loss": 3.7028675079345703,
+ "step": 2431
+ },
+ {
+ "epoch": 33.782874617737,
+ "grad_norm": 0.2272702008485794,
+ "learning_rate": 0.0006,
+ "loss": 3.7277941703796387,
+ "step": 2432
+ },
+ {
+ "epoch": 33.796854521625164,
+ "grad_norm": 0.20052100718021393,
+ "learning_rate": 0.0006,
+ "loss": 3.7146830558776855,
+ "step": 2433
+ },
+ {
+ "epoch": 33.81083442551333,
+ "grad_norm": 0.1958577185869217,
+ "learning_rate": 0.0006,
+ "loss": 3.6936864852905273,
+ "step": 2434
+ },
+ {
+ "epoch": 33.824814329401484,
+ "grad_norm": 0.191860631108284,
+ "learning_rate": 0.0006,
+ "loss": 3.7451858520507812,
+ "step": 2435
+ },
+ {
+ "epoch": 33.83879423328965,
+ "grad_norm": 0.20961424708366394,
+ "learning_rate": 0.0006,
+ "loss": 3.722400665283203,
+ "step": 2436
+ },
+ {
+ "epoch": 33.8527741371778,
+ "grad_norm": 0.19784288108348846,
+ "learning_rate": 0.0006,
+ "loss": 3.712474822998047,
+ "step": 2437
+ },
+ {
+ "epoch": 33.86675404106597,
+ "grad_norm": 0.18645426630973816,
+ "learning_rate": 0.0006,
+ "loss": 3.7054500579833984,
+ "step": 2438
+ },
+ {
+ "epoch": 33.88073394495413,
+ "grad_norm": 0.19622360169887543,
+ "learning_rate": 0.0006,
+ "loss": 3.7010550498962402,
+ "step": 2439
+ },
+ {
+ "epoch": 33.89471384884229,
+ "grad_norm": 0.20283745229244232,
+ "learning_rate": 0.0006,
+ "loss": 3.7252519130706787,
+ "step": 2440
+ },
+ {
+ "epoch": 33.90869375273045,
+ "grad_norm": 0.18671709299087524,
+ "learning_rate": 0.0006,
+ "loss": 3.6932945251464844,
+ "step": 2441
+ },
+ {
+ "epoch": 33.92267365661861,
+ "grad_norm": 0.17953112721443176,
+ "learning_rate": 0.0006,
+ "loss": 3.7453854084014893,
+ "step": 2442
+ },
+ {
+ "epoch": 33.93665356050677,
+ "grad_norm": 0.1945437788963318,
+ "learning_rate": 0.0006,
+ "loss": 3.722881317138672,
+ "step": 2443
+ },
+ {
+ "epoch": 33.95063346439493,
+ "grad_norm": 0.18414495885372162,
+ "learning_rate": 0.0006,
+ "loss": 3.7402591705322266,
+ "step": 2444
+ },
+ {
+ "epoch": 33.964613368283096,
+ "grad_norm": 0.1936541497707367,
+ "learning_rate": 0.0006,
+ "loss": 3.720057964324951,
+ "step": 2445
+ },
+ {
+ "epoch": 33.97859327217125,
+ "grad_norm": 0.20177008211612701,
+ "learning_rate": 0.0006,
+ "loss": 3.6983802318573,
+ "step": 2446
+ },
+ {
+ "epoch": 33.992573176059416,
+ "grad_norm": 0.18977557122707367,
+ "learning_rate": 0.0006,
+ "loss": 3.7202203273773193,
+ "step": 2447
+ },
+ {
+ "epoch": 34.0,
+ "grad_norm": 0.220163956284523,
+ "learning_rate": 0.0006,
+ "loss": 3.72540283203125,
+ "step": 2448
+ },
+ {
+ "epoch": 34.0,
+ "eval_loss": 4.009343147277832,
+ "eval_runtime": 44.1825,
+ "eval_samples_per_second": 55.271,
+ "eval_steps_per_second": 3.463,
+ "step": 2448
+ },
+ {
+ "epoch": 34.01397990388816,
+ "grad_norm": 0.19843372702598572,
+ "learning_rate": 0.0006,
+ "loss": 3.664431571960449,
+ "step": 2449
+ },
+ {
+ "epoch": 34.02795980777632,
+ "grad_norm": 0.20413008332252502,
+ "learning_rate": 0.0006,
+ "loss": 3.699094533920288,
+ "step": 2450
+ },
+ {
+ "epoch": 34.04193971166448,
+ "grad_norm": 0.22086848318576813,
+ "learning_rate": 0.0006,
+ "loss": 3.681825637817383,
+ "step": 2451
+ },
+ {
+ "epoch": 34.05591961555265,
+ "grad_norm": 0.20753061771392822,
+ "learning_rate": 0.0006,
+ "loss": 3.677116870880127,
+ "step": 2452
+ },
+ {
+ "epoch": 34.0698995194408,
+ "grad_norm": 0.21835783123970032,
+ "learning_rate": 0.0006,
+ "loss": 3.7079062461853027,
+ "step": 2453
+ },
+ {
+ "epoch": 34.083879423328966,
+ "grad_norm": 0.2244357019662857,
+ "learning_rate": 0.0006,
+ "loss": 3.69844913482666,
+ "step": 2454
+ },
+ {
+ "epoch": 34.09785932721712,
+ "grad_norm": 0.2238784283399582,
+ "learning_rate": 0.0006,
+ "loss": 3.6835570335388184,
+ "step": 2455
+ },
+ {
+ "epoch": 34.111839231105286,
+ "grad_norm": 0.24816176295280457,
+ "learning_rate": 0.0006,
+ "loss": 3.6832966804504395,
+ "step": 2456
+ },
+ {
+ "epoch": 34.12581913499345,
+ "grad_norm": 0.2445257306098938,
+ "learning_rate": 0.0006,
+ "loss": 3.7190022468566895,
+ "step": 2457
+ },
+ {
+ "epoch": 34.139799038881605,
+ "grad_norm": 0.24510814249515533,
+ "learning_rate": 0.0006,
+ "loss": 3.678098201751709,
+ "step": 2458
+ },
+ {
+ "epoch": 34.15377894276977,
+ "grad_norm": 0.2550753653049469,
+ "learning_rate": 0.0006,
+ "loss": 3.69335675239563,
+ "step": 2459
+ },
+ {
+ "epoch": 34.16775884665793,
+ "grad_norm": 0.2435017228126526,
+ "learning_rate": 0.0006,
+ "loss": 3.70463228225708,
+ "step": 2460
+ },
+ {
+ "epoch": 34.18173875054609,
+ "grad_norm": 0.26441144943237305,
+ "learning_rate": 0.0006,
+ "loss": 3.6757068634033203,
+ "step": 2461
+ },
+ {
+ "epoch": 34.19571865443425,
+ "grad_norm": 0.2737993001937866,
+ "learning_rate": 0.0006,
+ "loss": 3.6510863304138184,
+ "step": 2462
+ },
+ {
+ "epoch": 34.20969855832241,
+ "grad_norm": 0.24625736474990845,
+ "learning_rate": 0.0006,
+ "loss": 3.707612991333008,
+ "step": 2463
+ },
+ {
+ "epoch": 34.22367846221057,
+ "grad_norm": 0.22222039103507996,
+ "learning_rate": 0.0006,
+ "loss": 3.7145133018493652,
+ "step": 2464
+ },
+ {
+ "epoch": 34.237658366098735,
+ "grad_norm": 0.2173531949520111,
+ "learning_rate": 0.0006,
+ "loss": 3.685112476348877,
+ "step": 2465
+ },
+ {
+ "epoch": 34.25163826998689,
+ "grad_norm": 0.23102006316184998,
+ "learning_rate": 0.0006,
+ "loss": 3.6742453575134277,
+ "step": 2466
+ },
+ {
+ "epoch": 34.265618173875055,
+ "grad_norm": 0.22287188470363617,
+ "learning_rate": 0.0006,
+ "loss": 3.7030534744262695,
+ "step": 2467
+ },
+ {
+ "epoch": 34.27959807776322,
+ "grad_norm": 0.20377251505851746,
+ "learning_rate": 0.0006,
+ "loss": 3.6866259574890137,
+ "step": 2468
+ },
+ {
+ "epoch": 34.293577981651374,
+ "grad_norm": 0.19867438077926636,
+ "learning_rate": 0.0006,
+ "loss": 3.70395565032959,
+ "step": 2469
+ },
+ {
+ "epoch": 34.30755788553954,
+ "grad_norm": 0.2014918178319931,
+ "learning_rate": 0.0006,
+ "loss": 3.660795211791992,
+ "step": 2470
+ },
+ {
+ "epoch": 34.3215377894277,
+ "grad_norm": 0.20981402695178986,
+ "learning_rate": 0.0006,
+ "loss": 3.7045323848724365,
+ "step": 2471
+ },
+ {
+ "epoch": 34.33551769331586,
+ "grad_norm": 0.20968124270439148,
+ "learning_rate": 0.0006,
+ "loss": 3.7113170623779297,
+ "step": 2472
+ },
+ {
+ "epoch": 34.34949759720402,
+ "grad_norm": 0.2214043140411377,
+ "learning_rate": 0.0006,
+ "loss": 3.7330074310302734,
+ "step": 2473
+ },
+ {
+ "epoch": 34.36347750109218,
+ "grad_norm": 0.21231533586978912,
+ "learning_rate": 0.0006,
+ "loss": 3.6706933975219727,
+ "step": 2474
+ },
+ {
+ "epoch": 34.37745740498034,
+ "grad_norm": 0.2022094875574112,
+ "learning_rate": 0.0006,
+ "loss": 3.7230453491210938,
+ "step": 2475
+ },
+ {
+ "epoch": 34.391437308868504,
+ "grad_norm": 0.2281145304441452,
+ "learning_rate": 0.0006,
+ "loss": 3.7197465896606445,
+ "step": 2476
+ },
+ {
+ "epoch": 34.40541721275666,
+ "grad_norm": 0.2147362381219864,
+ "learning_rate": 0.0006,
+ "loss": 3.7092337608337402,
+ "step": 2477
+ },
+ {
+ "epoch": 34.419397116644824,
+ "grad_norm": 0.19984203577041626,
+ "learning_rate": 0.0006,
+ "loss": 3.6939496994018555,
+ "step": 2478
+ },
+ {
+ "epoch": 34.43337702053299,
+ "grad_norm": 0.21088480949401855,
+ "learning_rate": 0.0006,
+ "loss": 3.6942667961120605,
+ "step": 2479
+ },
+ {
+ "epoch": 34.44735692442114,
+ "grad_norm": 0.20444616675376892,
+ "learning_rate": 0.0006,
+ "loss": 3.718186378479004,
+ "step": 2480
+ },
+ {
+ "epoch": 34.46133682830931,
+ "grad_norm": 0.19133952260017395,
+ "learning_rate": 0.0006,
+ "loss": 3.697197437286377,
+ "step": 2481
+ },
+ {
+ "epoch": 34.47531673219746,
+ "grad_norm": 0.2219255417585373,
+ "learning_rate": 0.0006,
+ "loss": 3.684386730194092,
+ "step": 2482
+ },
+ {
+ "epoch": 34.489296636085626,
+ "grad_norm": 0.2480643391609192,
+ "learning_rate": 0.0006,
+ "loss": 3.6656622886657715,
+ "step": 2483
+ },
+ {
+ "epoch": 34.50327653997379,
+ "grad_norm": 0.22907346487045288,
+ "learning_rate": 0.0006,
+ "loss": 3.741391897201538,
+ "step": 2484
+ },
+ {
+ "epoch": 34.517256443861946,
+ "grad_norm": 0.20277173817157745,
+ "learning_rate": 0.0006,
+ "loss": 3.7062582969665527,
+ "step": 2485
+ },
+ {
+ "epoch": 34.53123634775011,
+ "grad_norm": 0.21411100029945374,
+ "learning_rate": 0.0006,
+ "loss": 3.691784381866455,
+ "step": 2486
+ },
+ {
+ "epoch": 34.54521625163827,
+ "grad_norm": 0.20261600613594055,
+ "learning_rate": 0.0006,
+ "loss": 3.6855502128601074,
+ "step": 2487
+ },
+ {
+ "epoch": 34.55919615552643,
+ "grad_norm": 0.23913109302520752,
+ "learning_rate": 0.0006,
+ "loss": 3.670754909515381,
+ "step": 2488
+ },
+ {
+ "epoch": 34.57317605941459,
+ "grad_norm": 0.24427077174186707,
+ "learning_rate": 0.0006,
+ "loss": 3.700611114501953,
+ "step": 2489
+ },
+ {
+ "epoch": 34.58715596330275,
+ "grad_norm": 0.20305761694908142,
+ "learning_rate": 0.0006,
+ "loss": 3.7284226417541504,
+ "step": 2490
+ },
+ {
+ "epoch": 34.60113586719091,
+ "grad_norm": 0.20398905873298645,
+ "learning_rate": 0.0006,
+ "loss": 3.6860880851745605,
+ "step": 2491
+ },
+ {
+ "epoch": 34.615115771079076,
+ "grad_norm": 0.21016651391983032,
+ "learning_rate": 0.0006,
+ "loss": 3.7366015911102295,
+ "step": 2492
+ },
+ {
+ "epoch": 34.62909567496723,
+ "grad_norm": 0.22279402613639832,
+ "learning_rate": 0.0006,
+ "loss": 3.7024295330047607,
+ "step": 2493
+ },
+ {
+ "epoch": 34.643075578855395,
+ "grad_norm": 0.25080347061157227,
+ "learning_rate": 0.0006,
+ "loss": 3.68355655670166,
+ "step": 2494
+ },
+ {
+ "epoch": 34.65705548274356,
+ "grad_norm": 0.2702971398830414,
+ "learning_rate": 0.0006,
+ "loss": 3.7400612831115723,
+ "step": 2495
+ },
+ {
+ "epoch": 34.671035386631715,
+ "grad_norm": 0.299398273229599,
+ "learning_rate": 0.0006,
+ "loss": 3.7160325050354004,
+ "step": 2496
+ },
+ {
+ "epoch": 34.68501529051988,
+ "grad_norm": 0.29151082038879395,
+ "learning_rate": 0.0006,
+ "loss": 3.7124147415161133,
+ "step": 2497
+ },
+ {
+ "epoch": 34.69899519440804,
+ "grad_norm": 0.23828288912773132,
+ "learning_rate": 0.0006,
+ "loss": 3.7181267738342285,
+ "step": 2498
+ },
+ {
+ "epoch": 34.7129750982962,
+ "grad_norm": 0.21776588261127472,
+ "learning_rate": 0.0006,
+ "loss": 3.6811792850494385,
+ "step": 2499
+ },
+ {
+ "epoch": 34.72695500218436,
+ "grad_norm": 0.2318469136953354,
+ "learning_rate": 0.0006,
+ "loss": 3.698467254638672,
+ "step": 2500
+ },
+ {
+ "epoch": 34.74093490607252,
+ "grad_norm": 0.22341546416282654,
+ "learning_rate": 0.0006,
+ "loss": 3.7406411170959473,
+ "step": 2501
+ },
+ {
+ "epoch": 34.75491480996068,
+ "grad_norm": 0.20676901936531067,
+ "learning_rate": 0.0006,
+ "loss": 3.6914243698120117,
+ "step": 2502
+ },
+ {
+ "epoch": 34.768894713848844,
+ "grad_norm": 0.20459024608135223,
+ "learning_rate": 0.0006,
+ "loss": 3.713369607925415,
+ "step": 2503
+ },
+ {
+ "epoch": 34.782874617737,
+ "grad_norm": 0.22369320690631866,
+ "learning_rate": 0.0006,
+ "loss": 3.697587490081787,
+ "step": 2504
+ },
+ {
+ "epoch": 34.796854521625164,
+ "grad_norm": 0.2393338829278946,
+ "learning_rate": 0.0006,
+ "loss": 3.7171854972839355,
+ "step": 2505
+ },
+ {
+ "epoch": 34.81083442551333,
+ "grad_norm": 0.23756961524486542,
+ "learning_rate": 0.0006,
+ "loss": 3.6969614028930664,
+ "step": 2506
+ },
+ {
+ "epoch": 34.824814329401484,
+ "grad_norm": 0.22761376202106476,
+ "learning_rate": 0.0006,
+ "loss": 3.722501754760742,
+ "step": 2507
+ },
+ {
+ "epoch": 34.83879423328965,
+ "grad_norm": 0.23564888536930084,
+ "learning_rate": 0.0006,
+ "loss": 3.714003086090088,
+ "step": 2508
+ },
+ {
+ "epoch": 34.8527741371778,
+ "grad_norm": 0.22197313606739044,
+ "learning_rate": 0.0006,
+ "loss": 3.7107110023498535,
+ "step": 2509
+ },
+ {
+ "epoch": 34.86675404106597,
+ "grad_norm": 0.20199328660964966,
+ "learning_rate": 0.0006,
+ "loss": 3.7167551517486572,
+ "step": 2510
+ },
+ {
+ "epoch": 34.88073394495413,
+ "grad_norm": 0.19569700956344604,
+ "learning_rate": 0.0006,
+ "loss": 3.679098129272461,
+ "step": 2511
+ },
+ {
+ "epoch": 34.89471384884229,
+ "grad_norm": 0.21320141851902008,
+ "learning_rate": 0.0006,
+ "loss": 3.733187675476074,
+ "step": 2512
+ },
+ {
+ "epoch": 34.90869375273045,
+ "grad_norm": 0.20074625313282013,
+ "learning_rate": 0.0006,
+ "loss": 3.713339328765869,
+ "step": 2513
+ },
+ {
+ "epoch": 34.92267365661861,
+ "grad_norm": 0.20249252021312714,
+ "learning_rate": 0.0006,
+ "loss": 3.680785655975342,
+ "step": 2514
+ },
+ {
+ "epoch": 34.93665356050677,
+ "grad_norm": 0.22165577113628387,
+ "learning_rate": 0.0006,
+ "loss": 3.696131706237793,
+ "step": 2515
+ },
+ {
+ "epoch": 34.95063346439493,
+ "grad_norm": 0.20769749581813812,
+ "learning_rate": 0.0006,
+ "loss": 3.6910316944122314,
+ "step": 2516
+ },
+ {
+ "epoch": 34.964613368283096,
+ "grad_norm": 0.20857223868370056,
+ "learning_rate": 0.0006,
+ "loss": 3.7327451705932617,
+ "step": 2517
+ },
+ {
+ "epoch": 34.97859327217125,
+ "grad_norm": 0.19155766069889069,
+ "learning_rate": 0.0006,
+ "loss": 3.705609083175659,
+ "step": 2518
+ },
+ {
+ "epoch": 34.992573176059416,
+ "grad_norm": 0.17890529334545135,
+ "learning_rate": 0.0006,
+ "loss": 3.6844797134399414,
+ "step": 2519
+ },
+ {
+ "epoch": 35.0,
+ "grad_norm": 0.2053528130054474,
+ "learning_rate": 0.0006,
+ "loss": 3.6942501068115234,
+ "step": 2520
+ },
+ {
+ "epoch": 35.0,
+ "eval_loss": 3.998469591140747,
+ "eval_runtime": 43.9147,
+ "eval_samples_per_second": 55.608,
+ "eval_steps_per_second": 3.484,
+ "step": 2520
+ },
+ {
+ "epoch": 35.01397990388816,
+ "grad_norm": 0.2288869470357895,
+ "learning_rate": 0.0006,
+ "loss": 3.6966426372528076,
+ "step": 2521
+ },
+ {
+ "epoch": 35.02795980777632,
+ "grad_norm": 0.25702035427093506,
+ "learning_rate": 0.0006,
+ "loss": 3.6622562408447266,
+ "step": 2522
+ },
+ {
+ "epoch": 35.04193971166448,
+ "grad_norm": 0.254422128200531,
+ "learning_rate": 0.0006,
+ "loss": 3.690046548843384,
+ "step": 2523
+ },
+ {
+ "epoch": 35.05591961555265,
+ "grad_norm": 0.24177077412605286,
+ "learning_rate": 0.0006,
+ "loss": 3.685335874557495,
+ "step": 2524
+ },
+ {
+ "epoch": 35.0698995194408,
+ "grad_norm": 0.23959586024284363,
+ "learning_rate": 0.0006,
+ "loss": 3.6534650325775146,
+ "step": 2525
+ },
+ {
+ "epoch": 35.083879423328966,
+ "grad_norm": 0.23474839329719543,
+ "learning_rate": 0.0006,
+ "loss": 3.7092814445495605,
+ "step": 2526
+ },
+ {
+ "epoch": 35.09785932721712,
+ "grad_norm": 0.23240867257118225,
+ "learning_rate": 0.0006,
+ "loss": 3.6819097995758057,
+ "step": 2527
+ },
+ {
+ "epoch": 35.111839231105286,
+ "grad_norm": 0.26267048716545105,
+ "learning_rate": 0.0006,
+ "loss": 3.6566696166992188,
+ "step": 2528
+ },
+ {
+ "epoch": 35.12581913499345,
+ "grad_norm": 0.27070754766464233,
+ "learning_rate": 0.0006,
+ "loss": 3.676304340362549,
+ "step": 2529
+ },
+ {
+ "epoch": 35.139799038881605,
+ "grad_norm": 0.25297826528549194,
+ "learning_rate": 0.0006,
+ "loss": 3.65259051322937,
+ "step": 2530
+ },
+ {
+ "epoch": 35.15377894276977,
+ "grad_norm": 0.22776272892951965,
+ "learning_rate": 0.0006,
+ "loss": 3.6813838481903076,
+ "step": 2531
+ },
+ {
+ "epoch": 35.16775884665793,
+ "grad_norm": 0.2288261204957962,
+ "learning_rate": 0.0006,
+ "loss": 3.6916379928588867,
+ "step": 2532
+ },
+ {
+ "epoch": 35.18173875054609,
+ "grad_norm": 0.20445892214775085,
+ "learning_rate": 0.0006,
+ "loss": 3.6550145149230957,
+ "step": 2533
+ },
+ {
+ "epoch": 35.19571865443425,
+ "grad_norm": 0.20298904180526733,
+ "learning_rate": 0.0006,
+ "loss": 3.704042434692383,
+ "step": 2534
+ },
+ {
+ "epoch": 35.20969855832241,
+ "grad_norm": 0.2264423668384552,
+ "learning_rate": 0.0006,
+ "loss": 3.646308183670044,
+ "step": 2535
+ },
+ {
+ "epoch": 35.22367846221057,
+ "grad_norm": 0.21537378430366516,
+ "learning_rate": 0.0006,
+ "loss": 3.686048984527588,
+ "step": 2536
+ },
+ {
+ "epoch": 35.237658366098735,
+ "grad_norm": 0.19820059835910797,
+ "learning_rate": 0.0006,
+ "loss": 3.6993050575256348,
+ "step": 2537
+ },
+ {
+ "epoch": 35.25163826998689,
+ "grad_norm": 0.19485290348529816,
+ "learning_rate": 0.0006,
+ "loss": 3.6507070064544678,
+ "step": 2538
+ },
+ {
+ "epoch": 35.265618173875055,
+ "grad_norm": 0.21234364807605743,
+ "learning_rate": 0.0006,
+ "loss": 3.6913719177246094,
+ "step": 2539
+ },
+ {
+ "epoch": 35.27959807776322,
+ "grad_norm": 0.19834300875663757,
+ "learning_rate": 0.0006,
+ "loss": 3.6793041229248047,
+ "step": 2540
+ },
+ {
+ "epoch": 35.293577981651374,
+ "grad_norm": 0.1969013512134552,
+ "learning_rate": 0.0006,
+ "loss": 3.7063517570495605,
+ "step": 2541
+ },
+ {
+ "epoch": 35.30755788553954,
+ "grad_norm": 0.196136936545372,
+ "learning_rate": 0.0006,
+ "loss": 3.679825782775879,
+ "step": 2542
+ },
+ {
+ "epoch": 35.3215377894277,
+ "grad_norm": 0.20465479791164398,
+ "learning_rate": 0.0006,
+ "loss": 3.698906421661377,
+ "step": 2543
+ },
+ {
+ "epoch": 35.33551769331586,
+ "grad_norm": 0.204293355345726,
+ "learning_rate": 0.0006,
+ "loss": 3.728549003601074,
+ "step": 2544
+ },
+ {
+ "epoch": 35.34949759720402,
+ "grad_norm": 0.18861903250217438,
+ "learning_rate": 0.0006,
+ "loss": 3.687018632888794,
+ "step": 2545
+ },
+ {
+ "epoch": 35.36347750109218,
+ "grad_norm": 0.19066226482391357,
+ "learning_rate": 0.0006,
+ "loss": 3.667919158935547,
+ "step": 2546
+ },
+ {
+ "epoch": 35.37745740498034,
+ "grad_norm": 0.19985736906528473,
+ "learning_rate": 0.0006,
+ "loss": 3.6697773933410645,
+ "step": 2547
+ },
+ {
+ "epoch": 35.391437308868504,
+ "grad_norm": 0.20669348537921906,
+ "learning_rate": 0.0006,
+ "loss": 3.6718077659606934,
+ "step": 2548
+ },
+ {
+ "epoch": 35.40541721275666,
+ "grad_norm": 0.22164477407932281,
+ "learning_rate": 0.0006,
+ "loss": 3.692106246948242,
+ "step": 2549
+ },
+ {
+ "epoch": 35.419397116644824,
+ "grad_norm": 0.20884688198566437,
+ "learning_rate": 0.0006,
+ "loss": 3.714324712753296,
+ "step": 2550
+ },
+ {
+ "epoch": 35.43337702053299,
+ "grad_norm": 0.21811005473136902,
+ "learning_rate": 0.0006,
+ "loss": 3.678694725036621,
+ "step": 2551
+ },
+ {
+ "epoch": 35.44735692442114,
+ "grad_norm": 0.2427632063627243,
+ "learning_rate": 0.0006,
+ "loss": 3.6584935188293457,
+ "step": 2552
+ },
+ {
+ "epoch": 35.46133682830931,
+ "grad_norm": 0.2584928572177887,
+ "learning_rate": 0.0006,
+ "loss": 3.694148063659668,
+ "step": 2553
+ },
+ {
+ "epoch": 35.47531673219746,
+ "grad_norm": 0.2594548761844635,
+ "learning_rate": 0.0006,
+ "loss": 3.690629005432129,
+ "step": 2554
+ },
+ {
+ "epoch": 35.489296636085626,
+ "grad_norm": 0.2521844208240509,
+ "learning_rate": 0.0006,
+ "loss": 3.6949915885925293,
+ "step": 2555
+ },
+ {
+ "epoch": 35.50327653997379,
+ "grad_norm": 0.2284533679485321,
+ "learning_rate": 0.0006,
+ "loss": 3.6822848320007324,
+ "step": 2556
+ },
+ {
+ "epoch": 35.517256443861946,
+ "grad_norm": 0.2350241094827652,
+ "learning_rate": 0.0006,
+ "loss": 3.6841659545898438,
+ "step": 2557
+ },
+ {
+ "epoch": 35.53123634775011,
+ "grad_norm": 0.22496885061264038,
+ "learning_rate": 0.0006,
+ "loss": 3.676447629928589,
+ "step": 2558
+ },
+ {
+ "epoch": 35.54521625163827,
+ "grad_norm": 0.24326276779174805,
+ "learning_rate": 0.0006,
+ "loss": 3.681678533554077,
+ "step": 2559
+ },
+ {
+ "epoch": 35.55919615552643,
+ "grad_norm": 0.26298362016677856,
+ "learning_rate": 0.0006,
+ "loss": 3.6877617835998535,
+ "step": 2560
+ },
+ {
+ "epoch": 35.57317605941459,
+ "grad_norm": 0.2507239282131195,
+ "learning_rate": 0.0006,
+ "loss": 3.7089176177978516,
+ "step": 2561
+ },
+ {
+ "epoch": 35.58715596330275,
+ "grad_norm": 0.2276458442211151,
+ "learning_rate": 0.0006,
+ "loss": 3.705570936203003,
+ "step": 2562
+ },
+ {
+ "epoch": 35.60113586719091,
+ "grad_norm": 0.23317085206508636,
+ "learning_rate": 0.0006,
+ "loss": 3.6772396564483643,
+ "step": 2563
+ },
+ {
+ "epoch": 35.615115771079076,
+ "grad_norm": 0.23301710188388824,
+ "learning_rate": 0.0006,
+ "loss": 3.694855213165283,
+ "step": 2564
+ },
+ {
+ "epoch": 35.62909567496723,
+ "grad_norm": 0.2170179933309555,
+ "learning_rate": 0.0006,
+ "loss": 3.7095537185668945,
+ "step": 2565
+ },
+ {
+ "epoch": 35.643075578855395,
+ "grad_norm": 0.21211965382099152,
+ "learning_rate": 0.0006,
+ "loss": 3.670109272003174,
+ "step": 2566
+ },
+ {
+ "epoch": 35.65705548274356,
+ "grad_norm": 0.21052585542201996,
+ "learning_rate": 0.0006,
+ "loss": 3.6576027870178223,
+ "step": 2567
+ },
+ {
+ "epoch": 35.671035386631715,
+ "grad_norm": 0.21556039154529572,
+ "learning_rate": 0.0006,
+ "loss": 3.6870639324188232,
+ "step": 2568
+ },
+ {
+ "epoch": 35.68501529051988,
+ "grad_norm": 0.2246469408273697,
+ "learning_rate": 0.0006,
+ "loss": 3.675652503967285,
+ "step": 2569
+ },
+ {
+ "epoch": 35.69899519440804,
+ "grad_norm": 0.21891754865646362,
+ "learning_rate": 0.0006,
+ "loss": 3.692298650741577,
+ "step": 2570
+ },
+ {
+ "epoch": 35.7129750982962,
+ "grad_norm": 0.18774104118347168,
+ "learning_rate": 0.0006,
+ "loss": 3.681035041809082,
+ "step": 2571
+ },
+ {
+ "epoch": 35.72695500218436,
+ "grad_norm": 0.19461573660373688,
+ "learning_rate": 0.0006,
+ "loss": 3.7007932662963867,
+ "step": 2572
+ },
+ {
+ "epoch": 35.74093490607252,
+ "grad_norm": 0.25579094886779785,
+ "learning_rate": 0.0006,
+ "loss": 3.724409580230713,
+ "step": 2573
+ },
+ {
+ "epoch": 35.75491480996068,
+ "grad_norm": 0.27635645866394043,
+ "learning_rate": 0.0006,
+ "loss": 3.68107271194458,
+ "step": 2574
+ },
+ {
+ "epoch": 35.768894713848844,
+ "grad_norm": 0.2233380675315857,
+ "learning_rate": 0.0006,
+ "loss": 3.7123913764953613,
+ "step": 2575
+ },
+ {
+ "epoch": 35.782874617737,
+ "grad_norm": 0.19383835792541504,
+ "learning_rate": 0.0006,
+ "loss": 3.6948328018188477,
+ "step": 2576
+ },
+ {
+ "epoch": 35.796854521625164,
+ "grad_norm": 0.18138426542282104,
+ "learning_rate": 0.0006,
+ "loss": 3.6837103366851807,
+ "step": 2577
+ },
+ {
+ "epoch": 35.81083442551333,
+ "grad_norm": 0.18680135905742645,
+ "learning_rate": 0.0006,
+ "loss": 3.7106502056121826,
+ "step": 2578
+ },
+ {
+ "epoch": 35.824814329401484,
+ "grad_norm": 0.19226312637329102,
+ "learning_rate": 0.0006,
+ "loss": 3.69488787651062,
+ "step": 2579
+ },
+ {
+ "epoch": 35.83879423328965,
+ "grad_norm": 0.19224657118320465,
+ "learning_rate": 0.0006,
+ "loss": 3.7103662490844727,
+ "step": 2580
+ },
+ {
+ "epoch": 35.8527741371778,
+ "grad_norm": 0.18991880118846893,
+ "learning_rate": 0.0006,
+ "loss": 3.7154245376586914,
+ "step": 2581
+ },
+ {
+ "epoch": 35.86675404106597,
+ "grad_norm": 0.2036849409341812,
+ "learning_rate": 0.0006,
+ "loss": 3.723738193511963,
+ "step": 2582
+ },
+ {
+ "epoch": 35.88073394495413,
+ "grad_norm": 0.24730375409126282,
+ "learning_rate": 0.0006,
+ "loss": 3.6830549240112305,
+ "step": 2583
+ },
+ {
+ "epoch": 35.89471384884229,
+ "grad_norm": 0.26552343368530273,
+ "learning_rate": 0.0006,
+ "loss": 3.7025017738342285,
+ "step": 2584
+ },
+ {
+ "epoch": 35.90869375273045,
+ "grad_norm": 0.2621893286705017,
+ "learning_rate": 0.0006,
+ "loss": 3.697399854660034,
+ "step": 2585
+ },
+ {
+ "epoch": 35.92267365661861,
+ "grad_norm": 0.2320089191198349,
+ "learning_rate": 0.0006,
+ "loss": 3.722207546234131,
+ "step": 2586
+ },
+ {
+ "epoch": 35.93665356050677,
+ "grad_norm": 0.1848745346069336,
+ "learning_rate": 0.0006,
+ "loss": 3.711249351501465,
+ "step": 2587
+ },
+ {
+ "epoch": 35.95063346439493,
+ "grad_norm": 0.24218113720417023,
+ "learning_rate": 0.0006,
+ "loss": 3.698894500732422,
+ "step": 2588
+ },
+ {
+ "epoch": 35.964613368283096,
+ "grad_norm": 0.29338452219963074,
+ "learning_rate": 0.0006,
+ "loss": 3.7470521926879883,
+ "step": 2589
+ },
+ {
+ "epoch": 35.97859327217125,
+ "grad_norm": 0.2804136276245117,
+ "learning_rate": 0.0006,
+ "loss": 3.750649929046631,
+ "step": 2590
+ },
+ {
+ "epoch": 35.992573176059416,
+ "grad_norm": 0.26404470205307007,
+ "learning_rate": 0.0006,
+ "loss": 3.6995797157287598,
+ "step": 2591
+ },
+ {
+ "epoch": 36.0,
+ "grad_norm": 0.27446141839027405,
+ "learning_rate": 0.0006,
+ "loss": 3.715768814086914,
+ "step": 2592
+ },
+ {
+ "epoch": 36.0,
+ "eval_loss": 4.007599830627441,
+ "eval_runtime": 44.0149,
+ "eval_samples_per_second": 55.481,
+ "eval_steps_per_second": 3.476,
+ "step": 2592
+ },
+ {
+ "epoch": 36.01397990388816,
+ "grad_norm": 0.2365594208240509,
+ "learning_rate": 0.0006,
+ "loss": 3.6529457569122314,
+ "step": 2593
+ },
+ {
+ "epoch": 36.02795980777632,
+ "grad_norm": 0.24824099242687225,
+ "learning_rate": 0.0006,
+ "loss": 3.6703386306762695,
+ "step": 2594
+ },
+ {
+ "epoch": 36.04193971166448,
+ "grad_norm": 0.26802200078964233,
+ "learning_rate": 0.0006,
+ "loss": 3.688307762145996,
+ "step": 2595
+ },
+ {
+ "epoch": 36.05591961555265,
+ "grad_norm": 0.2552911341190338,
+ "learning_rate": 0.0006,
+ "loss": 3.681797981262207,
+ "step": 2596
+ },
+ {
+ "epoch": 36.0698995194408,
+ "grad_norm": 0.254991739988327,
+ "learning_rate": 0.0006,
+ "loss": 3.644087791442871,
+ "step": 2597
+ },
+ {
+ "epoch": 36.083879423328966,
+ "grad_norm": 0.2496735155582428,
+ "learning_rate": 0.0006,
+ "loss": 3.644047737121582,
+ "step": 2598
+ },
+ {
+ "epoch": 36.09785932721712,
+ "grad_norm": 0.23637443780899048,
+ "learning_rate": 0.0006,
+ "loss": 3.684454917907715,
+ "step": 2599
+ },
+ {
+ "epoch": 36.111839231105286,
+ "grad_norm": 0.22065003216266632,
+ "learning_rate": 0.0006,
+ "loss": 3.661752700805664,
+ "step": 2600
+ },
+ {
+ "epoch": 36.12581913499345,
+ "grad_norm": 0.2292395532131195,
+ "learning_rate": 0.0006,
+ "loss": 3.6709558963775635,
+ "step": 2601
+ },
+ {
+ "epoch": 36.139799038881605,
+ "grad_norm": 0.22295089066028595,
+ "learning_rate": 0.0006,
+ "loss": 3.642230987548828,
+ "step": 2602
+ },
+ {
+ "epoch": 36.15377894276977,
+ "grad_norm": 0.2220531553030014,
+ "learning_rate": 0.0006,
+ "loss": 3.653268814086914,
+ "step": 2603
+ },
+ {
+ "epoch": 36.16775884665793,
+ "grad_norm": 0.21605174243450165,
+ "learning_rate": 0.0006,
+ "loss": 3.6791329383850098,
+ "step": 2604
+ },
+ {
+ "epoch": 36.18173875054609,
+ "grad_norm": 0.20932699739933014,
+ "learning_rate": 0.0006,
+ "loss": 3.6496856212615967,
+ "step": 2605
+ },
+ {
+ "epoch": 36.19571865443425,
+ "grad_norm": 0.20941385626792908,
+ "learning_rate": 0.0006,
+ "loss": 3.6445729732513428,
+ "step": 2606
+ },
+ {
+ "epoch": 36.20969855832241,
+ "grad_norm": 0.1987197995185852,
+ "learning_rate": 0.0006,
+ "loss": 3.6481809616088867,
+ "step": 2607
+ },
+ {
+ "epoch": 36.22367846221057,
+ "grad_norm": 0.19054439663887024,
+ "learning_rate": 0.0006,
+ "loss": 3.66894268989563,
+ "step": 2608
+ },
+ {
+ "epoch": 36.237658366098735,
+ "grad_norm": 0.19940806925296783,
+ "learning_rate": 0.0006,
+ "loss": 3.7123427391052246,
+ "step": 2609
+ },
+ {
+ "epoch": 36.25163826998689,
+ "grad_norm": 0.22157685458660126,
+ "learning_rate": 0.0006,
+ "loss": 3.6707541942596436,
+ "step": 2610
+ },
+ {
+ "epoch": 36.265618173875055,
+ "grad_norm": 0.2362316995859146,
+ "learning_rate": 0.0006,
+ "loss": 3.6906795501708984,
+ "step": 2611
+ },
+ {
+ "epoch": 36.27959807776322,
+ "grad_norm": 0.24560341238975525,
+ "learning_rate": 0.0006,
+ "loss": 3.668379783630371,
+ "step": 2612
+ },
+ {
+ "epoch": 36.293577981651374,
+ "grad_norm": 0.22814054787158966,
+ "learning_rate": 0.0006,
+ "loss": 3.665527820587158,
+ "step": 2613
+ },
+ {
+ "epoch": 36.30755788553954,
+ "grad_norm": 0.2156696617603302,
+ "learning_rate": 0.0006,
+ "loss": 3.673835277557373,
+ "step": 2614
+ },
+ {
+ "epoch": 36.3215377894277,
+ "grad_norm": 0.20152772963047028,
+ "learning_rate": 0.0006,
+ "loss": 3.6512670516967773,
+ "step": 2615
+ },
+ {
+ "epoch": 36.33551769331586,
+ "grad_norm": 0.22466860711574554,
+ "learning_rate": 0.0006,
+ "loss": 3.6877706050872803,
+ "step": 2616
+ },
+ {
+ "epoch": 36.34949759720402,
+ "grad_norm": 0.21688112616539001,
+ "learning_rate": 0.0006,
+ "loss": 3.6895859241485596,
+ "step": 2617
+ },
+ {
+ "epoch": 36.36347750109218,
+ "grad_norm": 0.19836577773094177,
+ "learning_rate": 0.0006,
+ "loss": 3.6658992767333984,
+ "step": 2618
+ },
+ {
+ "epoch": 36.37745740498034,
+ "grad_norm": 0.1995069831609726,
+ "learning_rate": 0.0006,
+ "loss": 3.677614450454712,
+ "step": 2619
+ },
+ {
+ "epoch": 36.391437308868504,
+ "grad_norm": 0.21234792470932007,
+ "learning_rate": 0.0006,
+ "loss": 3.6971967220306396,
+ "step": 2620
+ },
+ {
+ "epoch": 36.40541721275666,
+ "grad_norm": 0.20898285508155823,
+ "learning_rate": 0.0006,
+ "loss": 3.6936516761779785,
+ "step": 2621
+ },
+ {
+ "epoch": 36.419397116644824,
+ "grad_norm": 0.2115008533000946,
+ "learning_rate": 0.0006,
+ "loss": 3.6674065589904785,
+ "step": 2622
+ },
+ {
+ "epoch": 36.43337702053299,
+ "grad_norm": 0.2041143774986267,
+ "learning_rate": 0.0006,
+ "loss": 3.6455483436584473,
+ "step": 2623
+ },
+ {
+ "epoch": 36.44735692442114,
+ "grad_norm": 0.1966932713985443,
+ "learning_rate": 0.0006,
+ "loss": 3.6938109397888184,
+ "step": 2624
+ },
+ {
+ "epoch": 36.46133682830931,
+ "grad_norm": 0.20062223076820374,
+ "learning_rate": 0.0006,
+ "loss": 3.6775765419006348,
+ "step": 2625
+ },
+ {
+ "epoch": 36.47531673219746,
+ "grad_norm": 0.20610390603542328,
+ "learning_rate": 0.0006,
+ "loss": 3.6835384368896484,
+ "step": 2626
+ },
+ {
+ "epoch": 36.489296636085626,
+ "grad_norm": 0.20481473207473755,
+ "learning_rate": 0.0006,
+ "loss": 3.6794047355651855,
+ "step": 2627
+ },
+ {
+ "epoch": 36.50327653997379,
+ "grad_norm": 0.18964581191539764,
+ "learning_rate": 0.0006,
+ "loss": 3.7035841941833496,
+ "step": 2628
+ },
+ {
+ "epoch": 36.517256443861946,
+ "grad_norm": 0.2029343545436859,
+ "learning_rate": 0.0006,
+ "loss": 3.6667590141296387,
+ "step": 2629
+ },
+ {
+ "epoch": 36.53123634775011,
+ "grad_norm": 0.23656968772411346,
+ "learning_rate": 0.0006,
+ "loss": 3.6974546909332275,
+ "step": 2630
+ },
+ {
+ "epoch": 36.54521625163827,
+ "grad_norm": 0.23401431739330292,
+ "learning_rate": 0.0006,
+ "loss": 3.668936252593994,
+ "step": 2631
+ },
+ {
+ "epoch": 36.55919615552643,
+ "grad_norm": 0.22258102893829346,
+ "learning_rate": 0.0006,
+ "loss": 3.667977809906006,
+ "step": 2632
+ },
+ {
+ "epoch": 36.57317605941459,
+ "grad_norm": 0.20849554240703583,
+ "learning_rate": 0.0006,
+ "loss": 3.6674845218658447,
+ "step": 2633
+ },
+ {
+ "epoch": 36.58715596330275,
+ "grad_norm": 0.20684309303760529,
+ "learning_rate": 0.0006,
+ "loss": 3.6828644275665283,
+ "step": 2634
+ },
+ {
+ "epoch": 36.60113586719091,
+ "grad_norm": 0.19114233553409576,
+ "learning_rate": 0.0006,
+ "loss": 3.7084832191467285,
+ "step": 2635
+ },
+ {
+ "epoch": 36.615115771079076,
+ "grad_norm": 0.20382429659366608,
+ "learning_rate": 0.0006,
+ "loss": 3.68354868888855,
+ "step": 2636
+ },
+ {
+ "epoch": 36.62909567496723,
+ "grad_norm": 0.22526590526103973,
+ "learning_rate": 0.0006,
+ "loss": 3.684112310409546,
+ "step": 2637
+ },
+ {
+ "epoch": 36.643075578855395,
+ "grad_norm": 0.20735391974449158,
+ "learning_rate": 0.0006,
+ "loss": 3.67702054977417,
+ "step": 2638
+ },
+ {
+ "epoch": 36.65705548274356,
+ "grad_norm": 0.18549653887748718,
+ "learning_rate": 0.0006,
+ "loss": 3.6840810775756836,
+ "step": 2639
+ },
+ {
+ "epoch": 36.671035386631715,
+ "grad_norm": 0.1805262714624405,
+ "learning_rate": 0.0006,
+ "loss": 3.688119411468506,
+ "step": 2640
+ },
+ {
+ "epoch": 36.68501529051988,
+ "grad_norm": 0.17545704543590546,
+ "learning_rate": 0.0006,
+ "loss": 3.6477861404418945,
+ "step": 2641
+ },
+ {
+ "epoch": 36.69899519440804,
+ "grad_norm": 0.1772221326828003,
+ "learning_rate": 0.0006,
+ "loss": 3.6935806274414062,
+ "step": 2642
+ },
+ {
+ "epoch": 36.7129750982962,
+ "grad_norm": 0.18701671063899994,
+ "learning_rate": 0.0006,
+ "loss": 3.6820428371429443,
+ "step": 2643
+ },
+ {
+ "epoch": 36.72695500218436,
+ "grad_norm": 0.2057863473892212,
+ "learning_rate": 0.0006,
+ "loss": 3.669762134552002,
+ "step": 2644
+ },
+ {
+ "epoch": 36.74093490607252,
+ "grad_norm": 0.2565848231315613,
+ "learning_rate": 0.0006,
+ "loss": 3.717599391937256,
+ "step": 2645
+ },
+ {
+ "epoch": 36.75491480996068,
+ "grad_norm": 0.24362123012542725,
+ "learning_rate": 0.0006,
+ "loss": 3.671900987625122,
+ "step": 2646
+ },
+ {
+ "epoch": 36.768894713848844,
+ "grad_norm": 0.19606009125709534,
+ "learning_rate": 0.0006,
+ "loss": 3.6782546043395996,
+ "step": 2647
+ },
+ {
+ "epoch": 36.782874617737,
+ "grad_norm": 0.1948748379945755,
+ "learning_rate": 0.0006,
+ "loss": 3.6823501586914062,
+ "step": 2648
+ },
+ {
+ "epoch": 36.796854521625164,
+ "grad_norm": 0.22289852797985077,
+ "learning_rate": 0.0006,
+ "loss": 3.693469762802124,
+ "step": 2649
+ },
+ {
+ "epoch": 36.81083442551333,
+ "grad_norm": 0.24751701951026917,
+ "learning_rate": 0.0006,
+ "loss": 3.700678825378418,
+ "step": 2650
+ },
+ {
+ "epoch": 36.824814329401484,
+ "grad_norm": 0.28663966059684753,
+ "learning_rate": 0.0006,
+ "loss": 3.6960878372192383,
+ "step": 2651
+ },
+ {
+ "epoch": 36.83879423328965,
+ "grad_norm": 0.3288552165031433,
+ "learning_rate": 0.0006,
+ "loss": 3.7255043983459473,
+ "step": 2652
+ },
+ {
+ "epoch": 36.8527741371778,
+ "grad_norm": 0.3555443286895752,
+ "learning_rate": 0.0006,
+ "loss": 3.725308418273926,
+ "step": 2653
+ },
+ {
+ "epoch": 36.86675404106597,
+ "grad_norm": 0.3204147219657898,
+ "learning_rate": 0.0006,
+ "loss": 3.7137985229492188,
+ "step": 2654
+ },
+ {
+ "epoch": 36.88073394495413,
+ "grad_norm": 0.2944706976413727,
+ "learning_rate": 0.0006,
+ "loss": 3.7032840251922607,
+ "step": 2655
+ },
+ {
+ "epoch": 36.89471384884229,
+ "grad_norm": 0.2845679223537445,
+ "learning_rate": 0.0006,
+ "loss": 3.6840004920959473,
+ "step": 2656
+ },
+ {
+ "epoch": 36.90869375273045,
+ "grad_norm": 0.2815704047679901,
+ "learning_rate": 0.0006,
+ "loss": 3.6958417892456055,
+ "step": 2657
+ },
+ {
+ "epoch": 36.92267365661861,
+ "grad_norm": 0.2733481228351593,
+ "learning_rate": 0.0006,
+ "loss": 3.677690029144287,
+ "step": 2658
+ },
+ {
+ "epoch": 36.93665356050677,
+ "grad_norm": 0.29572054743766785,
+ "learning_rate": 0.0006,
+ "loss": 3.6983718872070312,
+ "step": 2659
+ },
+ {
+ "epoch": 36.95063346439493,
+ "grad_norm": 0.2487923800945282,
+ "learning_rate": 0.0006,
+ "loss": 3.7041163444519043,
+ "step": 2660
+ },
+ {
+ "epoch": 36.964613368283096,
+ "grad_norm": 0.2541966438293457,
+ "learning_rate": 0.0006,
+ "loss": 3.7038979530334473,
+ "step": 2661
+ },
+ {
+ "epoch": 36.97859327217125,
+ "grad_norm": 0.2441335767507553,
+ "learning_rate": 0.0006,
+ "loss": 3.717966079711914,
+ "step": 2662
+ },
+ {
+ "epoch": 36.992573176059416,
+ "grad_norm": 0.2304554283618927,
+ "learning_rate": 0.0006,
+ "loss": 3.671098232269287,
+ "step": 2663
+ },
+ {
+ "epoch": 37.0,
+ "grad_norm": 0.2346591204404831,
+ "learning_rate": 0.0006,
+ "loss": 3.680298089981079,
+ "step": 2664
+ },
+ {
+ "epoch": 37.0,
+ "eval_loss": 3.9944777488708496,
+ "eval_runtime": 43.9862,
+ "eval_samples_per_second": 55.517,
+ "eval_steps_per_second": 3.478,
+ "step": 2664
+ },
+ {
+ "epoch": 37.01397990388816,
+ "grad_norm": 0.22970618307590485,
+ "learning_rate": 0.0006,
+ "loss": 3.6835923194885254,
+ "step": 2665
+ },
+ {
+ "epoch": 37.02795980777632,
+ "grad_norm": 0.25463759899139404,
+ "learning_rate": 0.0006,
+ "loss": 3.658339023590088,
+ "step": 2666
+ },
+ {
+ "epoch": 37.04193971166448,
+ "grad_norm": 0.2520577311515808,
+ "learning_rate": 0.0006,
+ "loss": 3.6275506019592285,
+ "step": 2667
+ },
+ {
+ "epoch": 37.05591961555265,
+ "grad_norm": 0.22698813676834106,
+ "learning_rate": 0.0006,
+ "loss": 3.65043568611145,
+ "step": 2668
+ },
+ {
+ "epoch": 37.0698995194408,
+ "grad_norm": 0.21133972704410553,
+ "learning_rate": 0.0006,
+ "loss": 3.6262078285217285,
+ "step": 2669
+ },
+ {
+ "epoch": 37.083879423328966,
+ "grad_norm": 0.21940460801124573,
+ "learning_rate": 0.0006,
+ "loss": 3.6709489822387695,
+ "step": 2670
+ },
+ {
+ "epoch": 37.09785932721712,
+ "grad_norm": 0.21897517144680023,
+ "learning_rate": 0.0006,
+ "loss": 3.6621508598327637,
+ "step": 2671
+ },
+ {
+ "epoch": 37.111839231105286,
+ "grad_norm": 0.2270219624042511,
+ "learning_rate": 0.0006,
+ "loss": 3.6334924697875977,
+ "step": 2672
+ },
+ {
+ "epoch": 37.12581913499345,
+ "grad_norm": 0.22082042694091797,
+ "learning_rate": 0.0006,
+ "loss": 3.662209987640381,
+ "step": 2673
+ },
+ {
+ "epoch": 37.139799038881605,
+ "grad_norm": 0.19931960105895996,
+ "learning_rate": 0.0006,
+ "loss": 3.6655359268188477,
+ "step": 2674
+ },
+ {
+ "epoch": 37.15377894276977,
+ "grad_norm": 0.21451307833194733,
+ "learning_rate": 0.0006,
+ "loss": 3.656287670135498,
+ "step": 2675
+ },
+ {
+ "epoch": 37.16775884665793,
+ "grad_norm": 0.2131514698266983,
+ "learning_rate": 0.0006,
+ "loss": 3.635054111480713,
+ "step": 2676
+ },
+ {
+ "epoch": 37.18173875054609,
+ "grad_norm": 0.20425808429718018,
+ "learning_rate": 0.0006,
+ "loss": 3.67653226852417,
+ "step": 2677
+ },
+ {
+ "epoch": 37.19571865443425,
+ "grad_norm": 0.19423379004001617,
+ "learning_rate": 0.0006,
+ "loss": 3.6827316284179688,
+ "step": 2678
+ },
+ {
+ "epoch": 37.20969855832241,
+ "grad_norm": 0.1954883486032486,
+ "learning_rate": 0.0006,
+ "loss": 3.658092498779297,
+ "step": 2679
+ },
+ {
+ "epoch": 37.22367846221057,
+ "grad_norm": 0.21153928339481354,
+ "learning_rate": 0.0006,
+ "loss": 3.6675186157226562,
+ "step": 2680
+ },
+ {
+ "epoch": 37.237658366098735,
+ "grad_norm": 0.2032976895570755,
+ "learning_rate": 0.0006,
+ "loss": 3.6725759506225586,
+ "step": 2681
+ },
+ {
+ "epoch": 37.25163826998689,
+ "grad_norm": 0.19839346408843994,
+ "learning_rate": 0.0006,
+ "loss": 3.660851240158081,
+ "step": 2682
+ },
+ {
+ "epoch": 37.265618173875055,
+ "grad_norm": 0.1884699910879135,
+ "learning_rate": 0.0006,
+ "loss": 3.6653623580932617,
+ "step": 2683
+ },
+ {
+ "epoch": 37.27959807776322,
+ "grad_norm": 0.19558705389499664,
+ "learning_rate": 0.0006,
+ "loss": 3.648016929626465,
+ "step": 2684
+ },
+ {
+ "epoch": 37.293577981651374,
+ "grad_norm": 0.19453682005405426,
+ "learning_rate": 0.0006,
+ "loss": 3.6804773807525635,
+ "step": 2685
+ },
+ {
+ "epoch": 37.30755788553954,
+ "grad_norm": 0.1901177167892456,
+ "learning_rate": 0.0006,
+ "loss": 3.6533353328704834,
+ "step": 2686
+ },
+ {
+ "epoch": 37.3215377894277,
+ "grad_norm": 0.19425596296787262,
+ "learning_rate": 0.0006,
+ "loss": 3.665745735168457,
+ "step": 2687
+ },
+ {
+ "epoch": 37.33551769331586,
+ "grad_norm": 0.17583411931991577,
+ "learning_rate": 0.0006,
+ "loss": 3.679112434387207,
+ "step": 2688
+ },
+ {
+ "epoch": 37.34949759720402,
+ "grad_norm": 0.19667863845825195,
+ "learning_rate": 0.0006,
+ "loss": 3.6650352478027344,
+ "step": 2689
+ },
+ {
+ "epoch": 37.36347750109218,
+ "grad_norm": 0.22803270816802979,
+ "learning_rate": 0.0006,
+ "loss": 3.6658573150634766,
+ "step": 2690
+ },
+ {
+ "epoch": 37.37745740498034,
+ "grad_norm": 0.20589298009872437,
+ "learning_rate": 0.0006,
+ "loss": 3.6587300300598145,
+ "step": 2691
+ },
+ {
+ "epoch": 37.391437308868504,
+ "grad_norm": 0.1946951299905777,
+ "learning_rate": 0.0006,
+ "loss": 3.6515092849731445,
+ "step": 2692
+ },
+ {
+ "epoch": 37.40541721275666,
+ "grad_norm": 0.19029614329338074,
+ "learning_rate": 0.0006,
+ "loss": 3.6383113861083984,
+ "step": 2693
+ },
+ {
+ "epoch": 37.419397116644824,
+ "grad_norm": 0.1944548338651657,
+ "learning_rate": 0.0006,
+ "loss": 3.7017135620117188,
+ "step": 2694
+ },
+ {
+ "epoch": 37.43337702053299,
+ "grad_norm": 0.19482386112213135,
+ "learning_rate": 0.0006,
+ "loss": 3.6791775226593018,
+ "step": 2695
+ },
+ {
+ "epoch": 37.44735692442114,
+ "grad_norm": 0.23276680707931519,
+ "learning_rate": 0.0006,
+ "loss": 3.672245979309082,
+ "step": 2696
+ },
+ {
+ "epoch": 37.46133682830931,
+ "grad_norm": 0.22267542779445648,
+ "learning_rate": 0.0006,
+ "loss": 3.683380365371704,
+ "step": 2697
+ },
+ {
+ "epoch": 37.47531673219746,
+ "grad_norm": 0.1942203938961029,
+ "learning_rate": 0.0006,
+ "loss": 3.6760759353637695,
+ "step": 2698
+ },
+ {
+ "epoch": 37.489296636085626,
+ "grad_norm": 0.21212540566921234,
+ "learning_rate": 0.0006,
+ "loss": 3.660719633102417,
+ "step": 2699
+ },
+ {
+ "epoch": 37.50327653997379,
+ "grad_norm": 0.2365427315235138,
+ "learning_rate": 0.0006,
+ "loss": 3.6727194786071777,
+ "step": 2700
+ },
+ {
+ "epoch": 37.517256443861946,
+ "grad_norm": 0.2379675805568695,
+ "learning_rate": 0.0006,
+ "loss": 3.6691598892211914,
+ "step": 2701
+ },
+ {
+ "epoch": 37.53123634775011,
+ "grad_norm": 0.22142401337623596,
+ "learning_rate": 0.0006,
+ "loss": 3.6882128715515137,
+ "step": 2702
+ },
+ {
+ "epoch": 37.54521625163827,
+ "grad_norm": 0.19993607699871063,
+ "learning_rate": 0.0006,
+ "loss": 3.6651787757873535,
+ "step": 2703
+ },
+ {
+ "epoch": 37.55919615552643,
+ "grad_norm": 0.19934895634651184,
+ "learning_rate": 0.0006,
+ "loss": 3.6680638790130615,
+ "step": 2704
+ },
+ {
+ "epoch": 37.57317605941459,
+ "grad_norm": 0.21202369034290314,
+ "learning_rate": 0.0006,
+ "loss": 3.697615623474121,
+ "step": 2705
+ },
+ {
+ "epoch": 37.58715596330275,
+ "grad_norm": 0.1994577795267105,
+ "learning_rate": 0.0006,
+ "loss": 3.688243865966797,
+ "step": 2706
+ },
+ {
+ "epoch": 37.60113586719091,
+ "grad_norm": 0.20365118980407715,
+ "learning_rate": 0.0006,
+ "loss": 3.6615519523620605,
+ "step": 2707
+ },
+ {
+ "epoch": 37.615115771079076,
+ "grad_norm": 0.22466035187244415,
+ "learning_rate": 0.0006,
+ "loss": 3.703111171722412,
+ "step": 2708
+ },
+ {
+ "epoch": 37.62909567496723,
+ "grad_norm": 0.21140407025814056,
+ "learning_rate": 0.0006,
+ "loss": 3.6744728088378906,
+ "step": 2709
+ },
+ {
+ "epoch": 37.643075578855395,
+ "grad_norm": 0.22220195829868317,
+ "learning_rate": 0.0006,
+ "loss": 3.671501874923706,
+ "step": 2710
+ },
+ {
+ "epoch": 37.65705548274356,
+ "grad_norm": 0.23279480636119843,
+ "learning_rate": 0.0006,
+ "loss": 3.6962859630584717,
+ "step": 2711
+ },
+ {
+ "epoch": 37.671035386631715,
+ "grad_norm": 0.23284408450126648,
+ "learning_rate": 0.0006,
+ "loss": 3.670231342315674,
+ "step": 2712
+ },
+ {
+ "epoch": 37.68501529051988,
+ "grad_norm": 0.21935738623142242,
+ "learning_rate": 0.0006,
+ "loss": 3.6908650398254395,
+ "step": 2713
+ },
+ {
+ "epoch": 37.69899519440804,
+ "grad_norm": 0.2072262167930603,
+ "learning_rate": 0.0006,
+ "loss": 3.7204506397247314,
+ "step": 2714
+ },
+ {
+ "epoch": 37.7129750982962,
+ "grad_norm": 0.22547709941864014,
+ "learning_rate": 0.0006,
+ "loss": 3.6740894317626953,
+ "step": 2715
+ },
+ {
+ "epoch": 37.72695500218436,
+ "grad_norm": 0.2460414469242096,
+ "learning_rate": 0.0006,
+ "loss": 3.6938390731811523,
+ "step": 2716
+ },
+ {
+ "epoch": 37.74093490607252,
+ "grad_norm": 0.24756456911563873,
+ "learning_rate": 0.0006,
+ "loss": 3.692173480987549,
+ "step": 2717
+ },
+ {
+ "epoch": 37.75491480996068,
+ "grad_norm": 0.20149244368076324,
+ "learning_rate": 0.0006,
+ "loss": 3.6677675247192383,
+ "step": 2718
+ },
+ {
+ "epoch": 37.768894713848844,
+ "grad_norm": 0.19834814965724945,
+ "learning_rate": 0.0006,
+ "loss": 3.6717336177825928,
+ "step": 2719
+ },
+ {
+ "epoch": 37.782874617737,
+ "grad_norm": 0.22929978370666504,
+ "learning_rate": 0.0006,
+ "loss": 3.6818275451660156,
+ "step": 2720
+ },
+ {
+ "epoch": 37.796854521625164,
+ "grad_norm": 0.23674434423446655,
+ "learning_rate": 0.0006,
+ "loss": 3.689767360687256,
+ "step": 2721
+ },
+ {
+ "epoch": 37.81083442551333,
+ "grad_norm": 0.22798952460289001,
+ "learning_rate": 0.0006,
+ "loss": 3.6928915977478027,
+ "step": 2722
+ },
+ {
+ "epoch": 37.824814329401484,
+ "grad_norm": 0.2270302027463913,
+ "learning_rate": 0.0006,
+ "loss": 3.6884233951568604,
+ "step": 2723
+ },
+ {
+ "epoch": 37.83879423328965,
+ "grad_norm": 0.23563820123672485,
+ "learning_rate": 0.0006,
+ "loss": 3.6962456703186035,
+ "step": 2724
+ },
+ {
+ "epoch": 37.8527741371778,
+ "grad_norm": 0.2240045815706253,
+ "learning_rate": 0.0006,
+ "loss": 3.6985082626342773,
+ "step": 2725
+ },
+ {
+ "epoch": 37.86675404106597,
+ "grad_norm": 0.21541155874729156,
+ "learning_rate": 0.0006,
+ "loss": 3.6960105895996094,
+ "step": 2726
+ },
+ {
+ "epoch": 37.88073394495413,
+ "grad_norm": 0.23257222771644592,
+ "learning_rate": 0.0006,
+ "loss": 3.667404890060425,
+ "step": 2727
+ },
+ {
+ "epoch": 37.89471384884229,
+ "grad_norm": 0.226792573928833,
+ "learning_rate": 0.0006,
+ "loss": 3.6549744606018066,
+ "step": 2728
+ },
+ {
+ "epoch": 37.90869375273045,
+ "grad_norm": 0.18993401527404785,
+ "learning_rate": 0.0006,
+ "loss": 3.6772334575653076,
+ "step": 2729
+ },
+ {
+ "epoch": 37.92267365661861,
+ "grad_norm": 0.20936095714569092,
+ "learning_rate": 0.0006,
+ "loss": 3.671116352081299,
+ "step": 2730
+ },
+ {
+ "epoch": 37.93665356050677,
+ "grad_norm": 0.2203974425792694,
+ "learning_rate": 0.0006,
+ "loss": 3.6549739837646484,
+ "step": 2731
+ },
+ {
+ "epoch": 37.95063346439493,
+ "grad_norm": 0.19504620134830475,
+ "learning_rate": 0.0006,
+ "loss": 3.6755447387695312,
+ "step": 2732
+ },
+ {
+ "epoch": 37.964613368283096,
+ "grad_norm": 0.2025984674692154,
+ "learning_rate": 0.0006,
+ "loss": 3.678955554962158,
+ "step": 2733
+ },
+ {
+ "epoch": 37.97859327217125,
+ "grad_norm": 0.21556107699871063,
+ "learning_rate": 0.0006,
+ "loss": 3.6680502891540527,
+ "step": 2734
+ },
+ {
+ "epoch": 37.992573176059416,
+ "grad_norm": 0.21011291444301605,
+ "learning_rate": 0.0006,
+ "loss": 3.672039031982422,
+ "step": 2735
+ },
+ {
+ "epoch": 38.0,
+ "grad_norm": 0.23710957169532776,
+ "learning_rate": 0.0006,
+ "loss": 3.6326794624328613,
+ "step": 2736
+ },
+ {
+ "epoch": 38.0,
+ "eval_loss": 3.990501880645752,
+ "eval_runtime": 43.8951,
+ "eval_samples_per_second": 55.633,
+ "eval_steps_per_second": 3.486,
+ "step": 2736
+ },
+ {
+ "epoch": 38.01397990388816,
+ "grad_norm": 0.20711326599121094,
+ "learning_rate": 0.0006,
+ "loss": 3.6364657878875732,
+ "step": 2737
+ },
+ {
+ "epoch": 38.02795980777632,
+ "grad_norm": 0.2250880002975464,
+ "learning_rate": 0.0006,
+ "loss": 3.637646436691284,
+ "step": 2738
+ },
+ {
+ "epoch": 38.04193971166448,
+ "grad_norm": 0.2448352724313736,
+ "learning_rate": 0.0006,
+ "loss": 3.63557767868042,
+ "step": 2739
+ },
+ {
+ "epoch": 38.05591961555265,
+ "grad_norm": 0.23031368851661682,
+ "learning_rate": 0.0006,
+ "loss": 3.627117395401001,
+ "step": 2740
+ },
+ {
+ "epoch": 38.0698995194408,
+ "grad_norm": 0.2045450210571289,
+ "learning_rate": 0.0006,
+ "loss": 3.6594958305358887,
+ "step": 2741
+ },
+ {
+ "epoch": 38.083879423328966,
+ "grad_norm": 0.21253496408462524,
+ "learning_rate": 0.0006,
+ "loss": 3.65494441986084,
+ "step": 2742
+ },
+ {
+ "epoch": 38.09785932721712,
+ "grad_norm": 0.20196112990379333,
+ "learning_rate": 0.0006,
+ "loss": 3.645289421081543,
+ "step": 2743
+ },
+ {
+ "epoch": 38.111839231105286,
+ "grad_norm": 0.20258229970932007,
+ "learning_rate": 0.0006,
+ "loss": 3.6698505878448486,
+ "step": 2744
+ },
+ {
+ "epoch": 38.12581913499345,
+ "grad_norm": 0.22182606160640717,
+ "learning_rate": 0.0006,
+ "loss": 3.6427698135375977,
+ "step": 2745
+ },
+ {
+ "epoch": 38.139799038881605,
+ "grad_norm": 0.21281519532203674,
+ "learning_rate": 0.0006,
+ "loss": 3.668337345123291,
+ "step": 2746
+ },
+ {
+ "epoch": 38.15377894276977,
+ "grad_norm": 0.21680216491222382,
+ "learning_rate": 0.0006,
+ "loss": 3.6362109184265137,
+ "step": 2747
+ },
+ {
+ "epoch": 38.16775884665793,
+ "grad_norm": 0.24396903812885284,
+ "learning_rate": 0.0006,
+ "loss": 3.660510540008545,
+ "step": 2748
+ },
+ {
+ "epoch": 38.18173875054609,
+ "grad_norm": 0.2546434700489044,
+ "learning_rate": 0.0006,
+ "loss": 3.6562418937683105,
+ "step": 2749
+ },
+ {
+ "epoch": 38.19571865443425,
+ "grad_norm": 0.22705447673797607,
+ "learning_rate": 0.0006,
+ "loss": 3.6801514625549316,
+ "step": 2750
+ },
+ {
+ "epoch": 38.20969855832241,
+ "grad_norm": 0.21516330540180206,
+ "learning_rate": 0.0006,
+ "loss": 3.6633429527282715,
+ "step": 2751
+ },
+ {
+ "epoch": 38.22367846221057,
+ "grad_norm": 0.20895853638648987,
+ "learning_rate": 0.0006,
+ "loss": 3.619896411895752,
+ "step": 2752
+ },
+ {
+ "epoch": 38.237658366098735,
+ "grad_norm": 0.21183325350284576,
+ "learning_rate": 0.0006,
+ "loss": 3.639491558074951,
+ "step": 2753
+ },
+ {
+ "epoch": 38.25163826998689,
+ "grad_norm": 0.21439522504806519,
+ "learning_rate": 0.0006,
+ "loss": 3.671931028366089,
+ "step": 2754
+ },
+ {
+ "epoch": 38.265618173875055,
+ "grad_norm": 0.2017785906791687,
+ "learning_rate": 0.0006,
+ "loss": 3.639533519744873,
+ "step": 2755
+ },
+ {
+ "epoch": 38.27959807776322,
+ "grad_norm": 0.20015068352222443,
+ "learning_rate": 0.0006,
+ "loss": 3.654262065887451,
+ "step": 2756
+ },
+ {
+ "epoch": 38.293577981651374,
+ "grad_norm": 0.21518948674201965,
+ "learning_rate": 0.0006,
+ "loss": 3.649919033050537,
+ "step": 2757
+ },
+ {
+ "epoch": 38.30755788553954,
+ "grad_norm": 0.21994580328464508,
+ "learning_rate": 0.0006,
+ "loss": 3.6756131649017334,
+ "step": 2758
+ },
+ {
+ "epoch": 38.3215377894277,
+ "grad_norm": 0.2053978443145752,
+ "learning_rate": 0.0006,
+ "loss": 3.651520252227783,
+ "step": 2759
+ },
+ {
+ "epoch": 38.33551769331586,
+ "grad_norm": 0.2066337615251541,
+ "learning_rate": 0.0006,
+ "loss": 3.6404507160186768,
+ "step": 2760
+ },
+ {
+ "epoch": 38.34949759720402,
+ "grad_norm": 0.20898301899433136,
+ "learning_rate": 0.0006,
+ "loss": 3.637200355529785,
+ "step": 2761
+ },
+ {
+ "epoch": 38.36347750109218,
+ "grad_norm": 0.19212259352207184,
+ "learning_rate": 0.0006,
+ "loss": 3.68394136428833,
+ "step": 2762
+ },
+ {
+ "epoch": 38.37745740498034,
+ "grad_norm": 0.2011883556842804,
+ "learning_rate": 0.0006,
+ "loss": 3.6494975090026855,
+ "step": 2763
+ },
+ {
+ "epoch": 38.391437308868504,
+ "grad_norm": 0.23072998225688934,
+ "learning_rate": 0.0006,
+ "loss": 3.6644320487976074,
+ "step": 2764
+ },
+ {
+ "epoch": 38.40541721275666,
+ "grad_norm": 0.2195347547531128,
+ "learning_rate": 0.0006,
+ "loss": 3.6666269302368164,
+ "step": 2765
+ },
+ {
+ "epoch": 38.419397116644824,
+ "grad_norm": 0.19820117950439453,
+ "learning_rate": 0.0006,
+ "loss": 3.690683364868164,
+ "step": 2766
+ },
+ {
+ "epoch": 38.43337702053299,
+ "grad_norm": 0.20381149649620056,
+ "learning_rate": 0.0006,
+ "loss": 3.6647756099700928,
+ "step": 2767
+ },
+ {
+ "epoch": 38.44735692442114,
+ "grad_norm": 0.19477297365665436,
+ "learning_rate": 0.0006,
+ "loss": 3.6419155597686768,
+ "step": 2768
+ },
+ {
+ "epoch": 38.46133682830931,
+ "grad_norm": 0.20118845999240875,
+ "learning_rate": 0.0006,
+ "loss": 3.678511142730713,
+ "step": 2769
+ },
+ {
+ "epoch": 38.47531673219746,
+ "grad_norm": 0.19538167119026184,
+ "learning_rate": 0.0006,
+ "loss": 3.632112503051758,
+ "step": 2770
+ },
+ {
+ "epoch": 38.489296636085626,
+ "grad_norm": 0.18136411905288696,
+ "learning_rate": 0.0006,
+ "loss": 3.6631078720092773,
+ "step": 2771
+ },
+ {
+ "epoch": 38.50327653997379,
+ "grad_norm": 0.1993526667356491,
+ "learning_rate": 0.0006,
+ "loss": 3.6800379753112793,
+ "step": 2772
+ },
+ {
+ "epoch": 38.517256443861946,
+ "grad_norm": 0.21409109234809875,
+ "learning_rate": 0.0006,
+ "loss": 3.6355738639831543,
+ "step": 2773
+ },
+ {
+ "epoch": 38.53123634775011,
+ "grad_norm": 0.20932911336421967,
+ "learning_rate": 0.0006,
+ "loss": 3.6639811992645264,
+ "step": 2774
+ },
+ {
+ "epoch": 38.54521625163827,
+ "grad_norm": 0.22266243398189545,
+ "learning_rate": 0.0006,
+ "loss": 3.6927733421325684,
+ "step": 2775
+ },
+ {
+ "epoch": 38.55919615552643,
+ "grad_norm": 0.22916539013385773,
+ "learning_rate": 0.0006,
+ "loss": 3.6381587982177734,
+ "step": 2776
+ },
+ {
+ "epoch": 38.57317605941459,
+ "grad_norm": 0.21507245302200317,
+ "learning_rate": 0.0006,
+ "loss": 3.6724753379821777,
+ "step": 2777
+ },
+ {
+ "epoch": 38.58715596330275,
+ "grad_norm": 0.21132487058639526,
+ "learning_rate": 0.0006,
+ "loss": 3.68450927734375,
+ "step": 2778
+ },
+ {
+ "epoch": 38.60113586719091,
+ "grad_norm": 0.2323923259973526,
+ "learning_rate": 0.0006,
+ "loss": 3.6917476654052734,
+ "step": 2779
+ },
+ {
+ "epoch": 38.615115771079076,
+ "grad_norm": 0.2862907648086548,
+ "learning_rate": 0.0006,
+ "loss": 3.6832518577575684,
+ "step": 2780
+ },
+ {
+ "epoch": 38.62909567496723,
+ "grad_norm": 0.28132742643356323,
+ "learning_rate": 0.0006,
+ "loss": 3.6619668006896973,
+ "step": 2781
+ },
+ {
+ "epoch": 38.643075578855395,
+ "grad_norm": 0.24933350086212158,
+ "learning_rate": 0.0006,
+ "loss": 3.6342711448669434,
+ "step": 2782
+ },
+ {
+ "epoch": 38.65705548274356,
+ "grad_norm": 0.23482646048069,
+ "learning_rate": 0.0006,
+ "loss": 3.667548656463623,
+ "step": 2783
+ },
+ {
+ "epoch": 38.671035386631715,
+ "grad_norm": 0.2529793083667755,
+ "learning_rate": 0.0006,
+ "loss": 3.6613709926605225,
+ "step": 2784
+ },
+ {
+ "epoch": 38.68501529051988,
+ "grad_norm": 0.2306097447872162,
+ "learning_rate": 0.0006,
+ "loss": 3.653153419494629,
+ "step": 2785
+ },
+ {
+ "epoch": 38.69899519440804,
+ "grad_norm": 0.21787869930267334,
+ "learning_rate": 0.0006,
+ "loss": 3.6991848945617676,
+ "step": 2786
+ },
+ {
+ "epoch": 38.7129750982962,
+ "grad_norm": 0.24818190932273865,
+ "learning_rate": 0.0006,
+ "loss": 3.664022445678711,
+ "step": 2787
+ },
+ {
+ "epoch": 38.72695500218436,
+ "grad_norm": 0.23205995559692383,
+ "learning_rate": 0.0006,
+ "loss": 3.656064987182617,
+ "step": 2788
+ },
+ {
+ "epoch": 38.74093490607252,
+ "grad_norm": 0.2268102467060089,
+ "learning_rate": 0.0006,
+ "loss": 3.678421974182129,
+ "step": 2789
+ },
+ {
+ "epoch": 38.75491480996068,
+ "grad_norm": 0.22549907863140106,
+ "learning_rate": 0.0006,
+ "loss": 3.6483302116394043,
+ "step": 2790
+ },
+ {
+ "epoch": 38.768894713848844,
+ "grad_norm": 0.2293119877576828,
+ "learning_rate": 0.0006,
+ "loss": 3.646825075149536,
+ "step": 2791
+ },
+ {
+ "epoch": 38.782874617737,
+ "grad_norm": 0.21879418194293976,
+ "learning_rate": 0.0006,
+ "loss": 3.682124614715576,
+ "step": 2792
+ },
+ {
+ "epoch": 38.796854521625164,
+ "grad_norm": 0.22012849152088165,
+ "learning_rate": 0.0006,
+ "loss": 3.6590089797973633,
+ "step": 2793
+ },
+ {
+ "epoch": 38.81083442551333,
+ "grad_norm": 0.2449142336845398,
+ "learning_rate": 0.0006,
+ "loss": 3.7053747177124023,
+ "step": 2794
+ },
+ {
+ "epoch": 38.824814329401484,
+ "grad_norm": 0.2677161395549774,
+ "learning_rate": 0.0006,
+ "loss": 3.666144371032715,
+ "step": 2795
+ },
+ {
+ "epoch": 38.83879423328965,
+ "grad_norm": 0.2654981315135956,
+ "learning_rate": 0.0006,
+ "loss": 3.637512683868408,
+ "step": 2796
+ },
+ {
+ "epoch": 38.8527741371778,
+ "grad_norm": 0.23169654607772827,
+ "learning_rate": 0.0006,
+ "loss": 3.6885948181152344,
+ "step": 2797
+ },
+ {
+ "epoch": 38.86675404106597,
+ "grad_norm": 0.22195108234882355,
+ "learning_rate": 0.0006,
+ "loss": 3.6597604751586914,
+ "step": 2798
+ },
+ {
+ "epoch": 38.88073394495413,
+ "grad_norm": 0.23703525960445404,
+ "learning_rate": 0.0006,
+ "loss": 3.6808712482452393,
+ "step": 2799
+ },
+ {
+ "epoch": 38.89471384884229,
+ "grad_norm": 0.24711088836193085,
+ "learning_rate": 0.0006,
+ "loss": 3.733792781829834,
+ "step": 2800
+ },
+ {
+ "epoch": 38.90869375273045,
+ "grad_norm": 0.216362863779068,
+ "learning_rate": 0.0006,
+ "loss": 3.670599937438965,
+ "step": 2801
+ },
+ {
+ "epoch": 38.92267365661861,
+ "grad_norm": 0.19483810663223267,
+ "learning_rate": 0.0006,
+ "loss": 3.6965198516845703,
+ "step": 2802
+ },
+ {
+ "epoch": 38.93665356050677,
+ "grad_norm": 0.1941208392381668,
+ "learning_rate": 0.0006,
+ "loss": 3.678022861480713,
+ "step": 2803
+ },
+ {
+ "epoch": 38.95063346439493,
+ "grad_norm": 0.1919465959072113,
+ "learning_rate": 0.0006,
+ "loss": 3.6763226985931396,
+ "step": 2804
+ },
+ {
+ "epoch": 38.964613368283096,
+ "grad_norm": 0.2003280073404312,
+ "learning_rate": 0.0006,
+ "loss": 3.670313835144043,
+ "step": 2805
+ },
+ {
+ "epoch": 38.97859327217125,
+ "grad_norm": 0.198478564620018,
+ "learning_rate": 0.0006,
+ "loss": 3.675569772720337,
+ "step": 2806
+ },
+ {
+ "epoch": 38.992573176059416,
+ "grad_norm": 0.23692303895950317,
+ "learning_rate": 0.0006,
+ "loss": 3.696561336517334,
+ "step": 2807
+ },
+ {
+ "epoch": 39.0,
+ "grad_norm": 0.3208145797252655,
+ "learning_rate": 0.0006,
+ "loss": 3.6791436672210693,
+ "step": 2808
+ },
+ {
+ "epoch": 39.0,
+ "eval_loss": 4.0079450607299805,
+ "eval_runtime": 43.8573,
+ "eval_samples_per_second": 55.681,
+ "eval_steps_per_second": 3.489,
+ "step": 2808
+ },
+ {
+ "epoch": 39.01397990388816,
+ "grad_norm": 0.28338733315467834,
+ "learning_rate": 0.0006,
+ "loss": 3.6277060508728027,
+ "step": 2809
+ },
+ {
+ "epoch": 39.02795980777632,
+ "grad_norm": 0.22057899832725525,
+ "learning_rate": 0.0006,
+ "loss": 3.6132822036743164,
+ "step": 2810
+ },
+ {
+ "epoch": 39.04193971166448,
+ "grad_norm": 0.20630282163619995,
+ "learning_rate": 0.0006,
+ "loss": 3.6143927574157715,
+ "step": 2811
+ },
+ {
+ "epoch": 39.05591961555265,
+ "grad_norm": 0.2178523689508438,
+ "learning_rate": 0.0006,
+ "loss": 3.6304664611816406,
+ "step": 2812
+ },
+ {
+ "epoch": 39.0698995194408,
+ "grad_norm": 0.19613824784755707,
+ "learning_rate": 0.0006,
+ "loss": 3.6137919425964355,
+ "step": 2813
+ },
+ {
+ "epoch": 39.083879423328966,
+ "grad_norm": 0.2047276794910431,
+ "learning_rate": 0.0006,
+ "loss": 3.6854846477508545,
+ "step": 2814
+ },
+ {
+ "epoch": 39.09785932721712,
+ "grad_norm": 0.20082715153694153,
+ "learning_rate": 0.0006,
+ "loss": 3.632091522216797,
+ "step": 2815
+ },
+ {
+ "epoch": 39.111839231105286,
+ "grad_norm": 0.21746563911437988,
+ "learning_rate": 0.0006,
+ "loss": 3.640477180480957,
+ "step": 2816
+ },
+ {
+ "epoch": 39.12581913499345,
+ "grad_norm": 0.2128882110118866,
+ "learning_rate": 0.0006,
+ "loss": 3.643984317779541,
+ "step": 2817
+ },
+ {
+ "epoch": 39.139799038881605,
+ "grad_norm": 0.2110479772090912,
+ "learning_rate": 0.0006,
+ "loss": 3.6328823566436768,
+ "step": 2818
+ },
+ {
+ "epoch": 39.15377894276977,
+ "grad_norm": 0.22304436564445496,
+ "learning_rate": 0.0006,
+ "loss": 3.6669845581054688,
+ "step": 2819
+ },
+ {
+ "epoch": 39.16775884665793,
+ "grad_norm": 0.22310666739940643,
+ "learning_rate": 0.0006,
+ "loss": 3.609743595123291,
+ "step": 2820
+ },
+ {
+ "epoch": 39.18173875054609,
+ "grad_norm": 0.21002045273780823,
+ "learning_rate": 0.0006,
+ "loss": 3.601900815963745,
+ "step": 2821
+ },
+ {
+ "epoch": 39.19571865443425,
+ "grad_norm": 0.20531952381134033,
+ "learning_rate": 0.0006,
+ "loss": 3.6405060291290283,
+ "step": 2822
+ },
+ {
+ "epoch": 39.20969855832241,
+ "grad_norm": 0.20646385848522186,
+ "learning_rate": 0.0006,
+ "loss": 3.669617176055908,
+ "step": 2823
+ },
+ {
+ "epoch": 39.22367846221057,
+ "grad_norm": 0.2553980350494385,
+ "learning_rate": 0.0006,
+ "loss": 3.642709255218506,
+ "step": 2824
+ },
+ {
+ "epoch": 39.237658366098735,
+ "grad_norm": 0.2753220498561859,
+ "learning_rate": 0.0006,
+ "loss": 3.668405055999756,
+ "step": 2825
+ },
+ {
+ "epoch": 39.25163826998689,
+ "grad_norm": 0.2425055354833603,
+ "learning_rate": 0.0006,
+ "loss": 3.659559726715088,
+ "step": 2826
+ },
+ {
+ "epoch": 39.265618173875055,
+ "grad_norm": 0.2199426293373108,
+ "learning_rate": 0.0006,
+ "loss": 3.6466197967529297,
+ "step": 2827
+ },
+ {
+ "epoch": 39.27959807776322,
+ "grad_norm": 0.221355602145195,
+ "learning_rate": 0.0006,
+ "loss": 3.639418125152588,
+ "step": 2828
+ },
+ {
+ "epoch": 39.293577981651374,
+ "grad_norm": 0.20777100324630737,
+ "learning_rate": 0.0006,
+ "loss": 3.68102765083313,
+ "step": 2829
+ },
+ {
+ "epoch": 39.30755788553954,
+ "grad_norm": 0.20557557046413422,
+ "learning_rate": 0.0006,
+ "loss": 3.663064956665039,
+ "step": 2830
+ },
+ {
+ "epoch": 39.3215377894277,
+ "grad_norm": 0.2385585904121399,
+ "learning_rate": 0.0006,
+ "loss": 3.6598849296569824,
+ "step": 2831
+ },
+ {
+ "epoch": 39.33551769331586,
+ "grad_norm": 0.25222650170326233,
+ "learning_rate": 0.0006,
+ "loss": 3.635199546813965,
+ "step": 2832
+ },
+ {
+ "epoch": 39.34949759720402,
+ "grad_norm": 0.22894687950611115,
+ "learning_rate": 0.0006,
+ "loss": 3.6100258827209473,
+ "step": 2833
+ },
+ {
+ "epoch": 39.36347750109218,
+ "grad_norm": 0.22945865988731384,
+ "learning_rate": 0.0006,
+ "loss": 3.63069748878479,
+ "step": 2834
+ },
+ {
+ "epoch": 39.37745740498034,
+ "grad_norm": 0.2466309368610382,
+ "learning_rate": 0.0006,
+ "loss": 3.6615123748779297,
+ "step": 2835
+ },
+ {
+ "epoch": 39.391437308868504,
+ "grad_norm": 0.23845571279525757,
+ "learning_rate": 0.0006,
+ "loss": 3.655045509338379,
+ "step": 2836
+ },
+ {
+ "epoch": 39.40541721275666,
+ "grad_norm": 0.20273560285568237,
+ "learning_rate": 0.0006,
+ "loss": 3.6497647762298584,
+ "step": 2837
+ },
+ {
+ "epoch": 39.419397116644824,
+ "grad_norm": 0.19820313155651093,
+ "learning_rate": 0.0006,
+ "loss": 3.6728386878967285,
+ "step": 2838
+ },
+ {
+ "epoch": 39.43337702053299,
+ "grad_norm": 0.21581435203552246,
+ "learning_rate": 0.0006,
+ "loss": 3.660247325897217,
+ "step": 2839
+ },
+ {
+ "epoch": 39.44735692442114,
+ "grad_norm": 0.20559731125831604,
+ "learning_rate": 0.0006,
+ "loss": 3.6244559288024902,
+ "step": 2840
+ },
+ {
+ "epoch": 39.46133682830931,
+ "grad_norm": 0.22041910886764526,
+ "learning_rate": 0.0006,
+ "loss": 3.6577587127685547,
+ "step": 2841
+ },
+ {
+ "epoch": 39.47531673219746,
+ "grad_norm": 0.1966651976108551,
+ "learning_rate": 0.0006,
+ "loss": 3.673975944519043,
+ "step": 2842
+ },
+ {
+ "epoch": 39.489296636085626,
+ "grad_norm": 0.19127163290977478,
+ "learning_rate": 0.0006,
+ "loss": 3.7022414207458496,
+ "step": 2843
+ },
+ {
+ "epoch": 39.50327653997379,
+ "grad_norm": 0.20260316133499146,
+ "learning_rate": 0.0006,
+ "loss": 3.6155128479003906,
+ "step": 2844
+ },
+ {
+ "epoch": 39.517256443861946,
+ "grad_norm": 0.2302546352148056,
+ "learning_rate": 0.0006,
+ "loss": 3.670212984085083,
+ "step": 2845
+ },
+ {
+ "epoch": 39.53123634775011,
+ "grad_norm": 0.2512998878955841,
+ "learning_rate": 0.0006,
+ "loss": 3.6257572174072266,
+ "step": 2846
+ },
+ {
+ "epoch": 39.54521625163827,
+ "grad_norm": 0.24780063331127167,
+ "learning_rate": 0.0006,
+ "loss": 3.6458964347839355,
+ "step": 2847
+ },
+ {
+ "epoch": 39.55919615552643,
+ "grad_norm": 0.21305061876773834,
+ "learning_rate": 0.0006,
+ "loss": 3.666834831237793,
+ "step": 2848
+ },
+ {
+ "epoch": 39.57317605941459,
+ "grad_norm": 0.20699542760849,
+ "learning_rate": 0.0006,
+ "loss": 3.660571813583374,
+ "step": 2849
+ },
+ {
+ "epoch": 39.58715596330275,
+ "grad_norm": 0.20799173414707184,
+ "learning_rate": 0.0006,
+ "loss": 3.649744987487793,
+ "step": 2850
+ },
+ {
+ "epoch": 39.60113586719091,
+ "grad_norm": 0.20118695497512817,
+ "learning_rate": 0.0006,
+ "loss": 3.663865089416504,
+ "step": 2851
+ },
+ {
+ "epoch": 39.615115771079076,
+ "grad_norm": 0.2019277960062027,
+ "learning_rate": 0.0006,
+ "loss": 3.6600584983825684,
+ "step": 2852
+ },
+ {
+ "epoch": 39.62909567496723,
+ "grad_norm": 0.2093067765235901,
+ "learning_rate": 0.0006,
+ "loss": 3.6926870346069336,
+ "step": 2853
+ },
+ {
+ "epoch": 39.643075578855395,
+ "grad_norm": 0.2280927449464798,
+ "learning_rate": 0.0006,
+ "loss": 3.677157402038574,
+ "step": 2854
+ },
+ {
+ "epoch": 39.65705548274356,
+ "grad_norm": 0.219201922416687,
+ "learning_rate": 0.0006,
+ "loss": 3.6763858795166016,
+ "step": 2855
+ },
+ {
+ "epoch": 39.671035386631715,
+ "grad_norm": 0.2132134735584259,
+ "learning_rate": 0.0006,
+ "loss": 3.6853187084198,
+ "step": 2856
+ },
+ {
+ "epoch": 39.68501529051988,
+ "grad_norm": 0.1979551613330841,
+ "learning_rate": 0.0006,
+ "loss": 3.633850574493408,
+ "step": 2857
+ },
+ {
+ "epoch": 39.69899519440804,
+ "grad_norm": 0.2181098908185959,
+ "learning_rate": 0.0006,
+ "loss": 3.671356201171875,
+ "step": 2858
+ },
+ {
+ "epoch": 39.7129750982962,
+ "grad_norm": 0.21820145845413208,
+ "learning_rate": 0.0006,
+ "loss": 3.640101432800293,
+ "step": 2859
+ },
+ {
+ "epoch": 39.72695500218436,
+ "grad_norm": 0.22734931111335754,
+ "learning_rate": 0.0006,
+ "loss": 3.6326088905334473,
+ "step": 2860
+ },
+ {
+ "epoch": 39.74093490607252,
+ "grad_norm": 0.2407236248254776,
+ "learning_rate": 0.0006,
+ "loss": 3.665416955947876,
+ "step": 2861
+ },
+ {
+ "epoch": 39.75491480996068,
+ "grad_norm": 0.2507246434688568,
+ "learning_rate": 0.0006,
+ "loss": 3.6996266841888428,
+ "step": 2862
+ },
+ {
+ "epoch": 39.768894713848844,
+ "grad_norm": 0.2273668497800827,
+ "learning_rate": 0.0006,
+ "loss": 3.6786417961120605,
+ "step": 2863
+ },
+ {
+ "epoch": 39.782874617737,
+ "grad_norm": 0.20584821701049805,
+ "learning_rate": 0.0006,
+ "loss": 3.6539974212646484,
+ "step": 2864
+ },
+ {
+ "epoch": 39.796854521625164,
+ "grad_norm": 0.2327643632888794,
+ "learning_rate": 0.0006,
+ "loss": 3.681267738342285,
+ "step": 2865
+ },
+ {
+ "epoch": 39.81083442551333,
+ "grad_norm": 0.24243171513080597,
+ "learning_rate": 0.0006,
+ "loss": 3.6814589500427246,
+ "step": 2866
+ },
+ {
+ "epoch": 39.824814329401484,
+ "grad_norm": 0.21462969481945038,
+ "learning_rate": 0.0006,
+ "loss": 3.681321620941162,
+ "step": 2867
+ },
+ {
+ "epoch": 39.83879423328965,
+ "grad_norm": 0.20973211526870728,
+ "learning_rate": 0.0006,
+ "loss": 3.636986017227173,
+ "step": 2868
+ },
+ {
+ "epoch": 39.8527741371778,
+ "grad_norm": 0.20357508957386017,
+ "learning_rate": 0.0006,
+ "loss": 3.6664552688598633,
+ "step": 2869
+ },
+ {
+ "epoch": 39.86675404106597,
+ "grad_norm": 0.20389088988304138,
+ "learning_rate": 0.0006,
+ "loss": 3.6685709953308105,
+ "step": 2870
+ },
+ {
+ "epoch": 39.88073394495413,
+ "grad_norm": 0.21024158596992493,
+ "learning_rate": 0.0006,
+ "loss": 3.650658130645752,
+ "step": 2871
+ },
+ {
+ "epoch": 39.89471384884229,
+ "grad_norm": 0.19477778673171997,
+ "learning_rate": 0.0006,
+ "loss": 3.664834976196289,
+ "step": 2872
+ },
+ {
+ "epoch": 39.90869375273045,
+ "grad_norm": 0.22345365583896637,
+ "learning_rate": 0.0006,
+ "loss": 3.6652634143829346,
+ "step": 2873
+ },
+ {
+ "epoch": 39.92267365661861,
+ "grad_norm": 0.206041157245636,
+ "learning_rate": 0.0006,
+ "loss": 3.6649513244628906,
+ "step": 2874
+ },
+ {
+ "epoch": 39.93665356050677,
+ "grad_norm": 0.18524570763111115,
+ "learning_rate": 0.0006,
+ "loss": 3.665579080581665,
+ "step": 2875
+ },
+ {
+ "epoch": 39.95063346439493,
+ "grad_norm": 0.17730890214443207,
+ "learning_rate": 0.0006,
+ "loss": 3.6372880935668945,
+ "step": 2876
+ },
+ {
+ "epoch": 39.964613368283096,
+ "grad_norm": 0.213678777217865,
+ "learning_rate": 0.0006,
+ "loss": 3.681305408477783,
+ "step": 2877
+ },
+ {
+ "epoch": 39.97859327217125,
+ "grad_norm": 0.2595686614513397,
+ "learning_rate": 0.0006,
+ "loss": 3.6660351753234863,
+ "step": 2878
+ },
+ {
+ "epoch": 39.992573176059416,
+ "grad_norm": 0.22678600251674652,
+ "learning_rate": 0.0006,
+ "loss": 3.681619644165039,
+ "step": 2879
+ },
+ {
+ "epoch": 40.0,
+ "grad_norm": 0.2294030636548996,
+ "learning_rate": 0.0006,
+ "loss": 3.654366970062256,
+ "step": 2880
+ },
+ {
+ "epoch": 40.0,
+ "eval_loss": 3.9810431003570557,
+ "eval_runtime": 43.832,
+ "eval_samples_per_second": 55.713,
+ "eval_steps_per_second": 3.491,
+ "step": 2880
+ },
+ {
+ "epoch": 40.01397990388816,
+ "grad_norm": 0.220590278506279,
+ "learning_rate": 0.0006,
+ "loss": 3.6346259117126465,
+ "step": 2881
+ },
+ {
+ "epoch": 40.02795980777632,
+ "grad_norm": 0.2568257749080658,
+ "learning_rate": 0.0006,
+ "loss": 3.64436674118042,
+ "step": 2882
+ },
+ {
+ "epoch": 40.04193971166448,
+ "grad_norm": 0.2869258224964142,
+ "learning_rate": 0.0006,
+ "loss": 3.613316059112549,
+ "step": 2883
+ },
+ {
+ "epoch": 40.05591961555265,
+ "grad_norm": 0.3005172908306122,
+ "learning_rate": 0.0006,
+ "loss": 3.607339859008789,
+ "step": 2884
+ },
+ {
+ "epoch": 40.0698995194408,
+ "grad_norm": 0.28642305731773376,
+ "learning_rate": 0.0006,
+ "loss": 3.65151047706604,
+ "step": 2885
+ },
+ {
+ "epoch": 40.083879423328966,
+ "grad_norm": 0.24176034331321716,
+ "learning_rate": 0.0006,
+ "loss": 3.633742332458496,
+ "step": 2886
+ },
+ {
+ "epoch": 40.09785932721712,
+ "grad_norm": 0.2139386385679245,
+ "learning_rate": 0.0006,
+ "loss": 3.614245653152466,
+ "step": 2887
+ },
+ {
+ "epoch": 40.111839231105286,
+ "grad_norm": 0.28025752305984497,
+ "learning_rate": 0.0006,
+ "loss": 3.6415746212005615,
+ "step": 2888
+ },
+ {
+ "epoch": 40.12581913499345,
+ "grad_norm": 0.28534311056137085,
+ "learning_rate": 0.0006,
+ "loss": 3.6302027702331543,
+ "step": 2889
+ },
+ {
+ "epoch": 40.139799038881605,
+ "grad_norm": 0.26842808723449707,
+ "learning_rate": 0.0006,
+ "loss": 3.657480239868164,
+ "step": 2890
+ },
+ {
+ "epoch": 40.15377894276977,
+ "grad_norm": 0.25235965847969055,
+ "learning_rate": 0.0006,
+ "loss": 3.6843931674957275,
+ "step": 2891
+ },
+ {
+ "epoch": 40.16775884665793,
+ "grad_norm": 0.22192128002643585,
+ "learning_rate": 0.0006,
+ "loss": 3.6374592781066895,
+ "step": 2892
+ },
+ {
+ "epoch": 40.18173875054609,
+ "grad_norm": 0.21524523198604584,
+ "learning_rate": 0.0006,
+ "loss": 3.6052589416503906,
+ "step": 2893
+ },
+ {
+ "epoch": 40.19571865443425,
+ "grad_norm": 0.21011514961719513,
+ "learning_rate": 0.0006,
+ "loss": 3.62197208404541,
+ "step": 2894
+ },
+ {
+ "epoch": 40.20969855832241,
+ "grad_norm": 0.23187001049518585,
+ "learning_rate": 0.0006,
+ "loss": 3.6505377292633057,
+ "step": 2895
+ },
+ {
+ "epoch": 40.22367846221057,
+ "grad_norm": 0.21962887048721313,
+ "learning_rate": 0.0006,
+ "loss": 3.594991683959961,
+ "step": 2896
+ },
+ {
+ "epoch": 40.237658366098735,
+ "grad_norm": 0.23299361765384674,
+ "learning_rate": 0.0006,
+ "loss": 3.6370339393615723,
+ "step": 2897
+ },
+ {
+ "epoch": 40.25163826998689,
+ "grad_norm": 0.22504881024360657,
+ "learning_rate": 0.0006,
+ "loss": 3.6173815727233887,
+ "step": 2898
+ },
+ {
+ "epoch": 40.265618173875055,
+ "grad_norm": 0.21678344905376434,
+ "learning_rate": 0.0006,
+ "loss": 3.6231422424316406,
+ "step": 2899
+ },
+ {
+ "epoch": 40.27959807776322,
+ "grad_norm": 0.2184615284204483,
+ "learning_rate": 0.0006,
+ "loss": 3.6552987098693848,
+ "step": 2900
+ },
+ {
+ "epoch": 40.293577981651374,
+ "grad_norm": 0.2145485281944275,
+ "learning_rate": 0.0006,
+ "loss": 3.628025531768799,
+ "step": 2901
+ },
+ {
+ "epoch": 40.30755788553954,
+ "grad_norm": 0.21119336783885956,
+ "learning_rate": 0.0006,
+ "loss": 3.6511590480804443,
+ "step": 2902
+ },
+ {
+ "epoch": 40.3215377894277,
+ "grad_norm": 0.2158869504928589,
+ "learning_rate": 0.0006,
+ "loss": 3.6302051544189453,
+ "step": 2903
+ },
+ {
+ "epoch": 40.33551769331586,
+ "grad_norm": 0.22736455500125885,
+ "learning_rate": 0.0006,
+ "loss": 3.6678733825683594,
+ "step": 2904
+ },
+ {
+ "epoch": 40.34949759720402,
+ "grad_norm": 0.22723783552646637,
+ "learning_rate": 0.0006,
+ "loss": 3.632068634033203,
+ "step": 2905
+ },
+ {
+ "epoch": 40.36347750109218,
+ "grad_norm": 0.20606189966201782,
+ "learning_rate": 0.0006,
+ "loss": 3.6534624099731445,
+ "step": 2906
+ },
+ {
+ "epoch": 40.37745740498034,
+ "grad_norm": 0.21033786237239838,
+ "learning_rate": 0.0006,
+ "loss": 3.6194064617156982,
+ "step": 2907
+ },
+ {
+ "epoch": 40.391437308868504,
+ "grad_norm": 0.2175762951374054,
+ "learning_rate": 0.0006,
+ "loss": 3.637385368347168,
+ "step": 2908
+ },
+ {
+ "epoch": 40.40541721275666,
+ "grad_norm": 0.21063381433486938,
+ "learning_rate": 0.0006,
+ "loss": 3.656857967376709,
+ "step": 2909
+ },
+ {
+ "epoch": 40.419397116644824,
+ "grad_norm": 0.19982226192951202,
+ "learning_rate": 0.0006,
+ "loss": 3.655738353729248,
+ "step": 2910
+ },
+ {
+ "epoch": 40.43337702053299,
+ "grad_norm": 0.20608870685100555,
+ "learning_rate": 0.0006,
+ "loss": 3.6521377563476562,
+ "step": 2911
+ },
+ {
+ "epoch": 40.44735692442114,
+ "grad_norm": 0.19817334413528442,
+ "learning_rate": 0.0006,
+ "loss": 3.61527681350708,
+ "step": 2912
+ },
+ {
+ "epoch": 40.46133682830931,
+ "grad_norm": 0.20407769083976746,
+ "learning_rate": 0.0006,
+ "loss": 3.6668765544891357,
+ "step": 2913
+ },
+ {
+ "epoch": 40.47531673219746,
+ "grad_norm": 0.19874799251556396,
+ "learning_rate": 0.0006,
+ "loss": 3.6748533248901367,
+ "step": 2914
+ },
+ {
+ "epoch": 40.489296636085626,
+ "grad_norm": 0.1979510486125946,
+ "learning_rate": 0.0006,
+ "loss": 3.6141977310180664,
+ "step": 2915
+ },
+ {
+ "epoch": 40.50327653997379,
+ "grad_norm": 0.19811518490314484,
+ "learning_rate": 0.0006,
+ "loss": 3.6391215324401855,
+ "step": 2916
+ },
+ {
+ "epoch": 40.517256443861946,
+ "grad_norm": 0.20208898186683655,
+ "learning_rate": 0.0006,
+ "loss": 3.664179801940918,
+ "step": 2917
+ },
+ {
+ "epoch": 40.53123634775011,
+ "grad_norm": 0.22063760459423065,
+ "learning_rate": 0.0006,
+ "loss": 3.645388126373291,
+ "step": 2918
+ },
+ {
+ "epoch": 40.54521625163827,
+ "grad_norm": 0.23420891165733337,
+ "learning_rate": 0.0006,
+ "loss": 3.6424708366394043,
+ "step": 2919
+ },
+ {
+ "epoch": 40.55919615552643,
+ "grad_norm": 0.2263612151145935,
+ "learning_rate": 0.0006,
+ "loss": 3.6649224758148193,
+ "step": 2920
+ },
+ {
+ "epoch": 40.57317605941459,
+ "grad_norm": 0.22745433449745178,
+ "learning_rate": 0.0006,
+ "loss": 3.631586790084839,
+ "step": 2921
+ },
+ {
+ "epoch": 40.58715596330275,
+ "grad_norm": 0.22413238883018494,
+ "learning_rate": 0.0006,
+ "loss": 3.6666674613952637,
+ "step": 2922
+ },
+ {
+ "epoch": 40.60113586719091,
+ "grad_norm": 0.2178265005350113,
+ "learning_rate": 0.0006,
+ "loss": 3.6002111434936523,
+ "step": 2923
+ },
+ {
+ "epoch": 40.615115771079076,
+ "grad_norm": 0.21822521090507507,
+ "learning_rate": 0.0006,
+ "loss": 3.6538329124450684,
+ "step": 2924
+ },
+ {
+ "epoch": 40.62909567496723,
+ "grad_norm": 0.21728558838367462,
+ "learning_rate": 0.0006,
+ "loss": 3.651254653930664,
+ "step": 2925
+ },
+ {
+ "epoch": 40.643075578855395,
+ "grad_norm": 0.22377707064151764,
+ "learning_rate": 0.0006,
+ "loss": 3.6505789756774902,
+ "step": 2926
+ },
+ {
+ "epoch": 40.65705548274356,
+ "grad_norm": 0.2035706788301468,
+ "learning_rate": 0.0006,
+ "loss": 3.6471967697143555,
+ "step": 2927
+ },
+ {
+ "epoch": 40.671035386631715,
+ "grad_norm": 0.2011154741048813,
+ "learning_rate": 0.0006,
+ "loss": 3.6582741737365723,
+ "step": 2928
+ },
+ {
+ "epoch": 40.68501529051988,
+ "grad_norm": 0.23812712728977203,
+ "learning_rate": 0.0006,
+ "loss": 3.6388421058654785,
+ "step": 2929
+ },
+ {
+ "epoch": 40.69899519440804,
+ "grad_norm": 0.2117796689271927,
+ "learning_rate": 0.0006,
+ "loss": 3.688337802886963,
+ "step": 2930
+ },
+ {
+ "epoch": 40.7129750982962,
+ "grad_norm": 0.18440942466259003,
+ "learning_rate": 0.0006,
+ "loss": 3.6409997940063477,
+ "step": 2931
+ },
+ {
+ "epoch": 40.72695500218436,
+ "grad_norm": 0.19005917012691498,
+ "learning_rate": 0.0006,
+ "loss": 3.6760218143463135,
+ "step": 2932
+ },
+ {
+ "epoch": 40.74093490607252,
+ "grad_norm": 0.19982726871967316,
+ "learning_rate": 0.0006,
+ "loss": 3.6375021934509277,
+ "step": 2933
+ },
+ {
+ "epoch": 40.75491480996068,
+ "grad_norm": 0.19240257143974304,
+ "learning_rate": 0.0006,
+ "loss": 3.636807918548584,
+ "step": 2934
+ },
+ {
+ "epoch": 40.768894713848844,
+ "grad_norm": 0.20563434064388275,
+ "learning_rate": 0.0006,
+ "loss": 3.6667532920837402,
+ "step": 2935
+ },
+ {
+ "epoch": 40.782874617737,
+ "grad_norm": 0.26531776785850525,
+ "learning_rate": 0.0006,
+ "loss": 3.6332945823669434,
+ "step": 2936
+ },
+ {
+ "epoch": 40.796854521625164,
+ "grad_norm": 0.2766861021518707,
+ "learning_rate": 0.0006,
+ "loss": 3.6645212173461914,
+ "step": 2937
+ },
+ {
+ "epoch": 40.81083442551333,
+ "grad_norm": 0.235750213265419,
+ "learning_rate": 0.0006,
+ "loss": 3.67067813873291,
+ "step": 2938
+ },
+ {
+ "epoch": 40.824814329401484,
+ "grad_norm": 0.20778773725032806,
+ "learning_rate": 0.0006,
+ "loss": 3.6565768718719482,
+ "step": 2939
+ },
+ {
+ "epoch": 40.83879423328965,
+ "grad_norm": 0.187322199344635,
+ "learning_rate": 0.0006,
+ "loss": 3.620129346847534,
+ "step": 2940
+ },
+ {
+ "epoch": 40.8527741371778,
+ "grad_norm": 0.20576219260692596,
+ "learning_rate": 0.0006,
+ "loss": 3.6700220108032227,
+ "step": 2941
+ },
+ {
+ "epoch": 40.86675404106597,
+ "grad_norm": 0.2197345495223999,
+ "learning_rate": 0.0006,
+ "loss": 3.709311008453369,
+ "step": 2942
+ },
+ {
+ "epoch": 40.88073394495413,
+ "grad_norm": 0.20205345749855042,
+ "learning_rate": 0.0006,
+ "loss": 3.6646361351013184,
+ "step": 2943
+ },
+ {
+ "epoch": 40.89471384884229,
+ "grad_norm": 0.20026250183582306,
+ "learning_rate": 0.0006,
+ "loss": 3.6639604568481445,
+ "step": 2944
+ },
+ {
+ "epoch": 40.90869375273045,
+ "grad_norm": 0.224214106798172,
+ "learning_rate": 0.0006,
+ "loss": 3.6669654846191406,
+ "step": 2945
+ },
+ {
+ "epoch": 40.92267365661861,
+ "grad_norm": 0.2155972272157669,
+ "learning_rate": 0.0006,
+ "loss": 3.6494603157043457,
+ "step": 2946
+ },
+ {
+ "epoch": 40.93665356050677,
+ "grad_norm": 0.23038871586322784,
+ "learning_rate": 0.0006,
+ "loss": 3.6368541717529297,
+ "step": 2947
+ },
+ {
+ "epoch": 40.95063346439493,
+ "grad_norm": 0.2001815289258957,
+ "learning_rate": 0.0006,
+ "loss": 3.711174249649048,
+ "step": 2948
+ },
+ {
+ "epoch": 40.964613368283096,
+ "grad_norm": 0.20428860187530518,
+ "learning_rate": 0.0006,
+ "loss": 3.6342315673828125,
+ "step": 2949
+ },
+ {
+ "epoch": 40.97859327217125,
+ "grad_norm": 0.20724134147167206,
+ "learning_rate": 0.0006,
+ "loss": 3.679375171661377,
+ "step": 2950
+ },
+ {
+ "epoch": 40.992573176059416,
+ "grad_norm": 0.20723849534988403,
+ "learning_rate": 0.0006,
+ "loss": 3.6477675437927246,
+ "step": 2951
+ },
+ {
+ "epoch": 41.0,
+ "grad_norm": 0.23891447484493256,
+ "learning_rate": 0.0006,
+ "loss": 3.632950782775879,
+ "step": 2952
+ },
+ {
+ "epoch": 41.0,
+ "eval_loss": 3.9871256351470947,
+ "eval_runtime": 43.8367,
+ "eval_samples_per_second": 55.707,
+ "eval_steps_per_second": 3.49,
+ "step": 2952
+ },
+ {
+ "epoch": 41.01397990388816,
+ "grad_norm": 0.2258434295654297,
+ "learning_rate": 0.0006,
+ "loss": 3.631239414215088,
+ "step": 2953
+ },
+ {
+ "epoch": 41.02795980777632,
+ "grad_norm": 0.24932795763015747,
+ "learning_rate": 0.0006,
+ "loss": 3.601083517074585,
+ "step": 2954
+ },
+ {
+ "epoch": 41.04193971166448,
+ "grad_norm": 0.2688388228416443,
+ "learning_rate": 0.0006,
+ "loss": 3.655724048614502,
+ "step": 2955
+ },
+ {
+ "epoch": 41.05591961555265,
+ "grad_norm": 0.23880694806575775,
+ "learning_rate": 0.0006,
+ "loss": 3.617628812789917,
+ "step": 2956
+ },
+ {
+ "epoch": 41.0698995194408,
+ "grad_norm": 0.23784616589546204,
+ "learning_rate": 0.0006,
+ "loss": 3.6309127807617188,
+ "step": 2957
+ },
+ {
+ "epoch": 41.083879423328966,
+ "grad_norm": 0.22609511017799377,
+ "learning_rate": 0.0006,
+ "loss": 3.6138553619384766,
+ "step": 2958
+ },
+ {
+ "epoch": 41.09785932721712,
+ "grad_norm": 0.22936329245567322,
+ "learning_rate": 0.0006,
+ "loss": 3.6620094776153564,
+ "step": 2959
+ },
+ {
+ "epoch": 41.111839231105286,
+ "grad_norm": 0.23354190587997437,
+ "learning_rate": 0.0006,
+ "loss": 3.59959077835083,
+ "step": 2960
+ },
+ {
+ "epoch": 41.12581913499345,
+ "grad_norm": 0.2496265172958374,
+ "learning_rate": 0.0006,
+ "loss": 3.588359832763672,
+ "step": 2961
+ },
+ {
+ "epoch": 41.139799038881605,
+ "grad_norm": 0.23618635535240173,
+ "learning_rate": 0.0006,
+ "loss": 3.6341018676757812,
+ "step": 2962
+ },
+ {
+ "epoch": 41.15377894276977,
+ "grad_norm": 0.23724640905857086,
+ "learning_rate": 0.0006,
+ "loss": 3.6170616149902344,
+ "step": 2963
+ },
+ {
+ "epoch": 41.16775884665793,
+ "grad_norm": 0.20944789052009583,
+ "learning_rate": 0.0006,
+ "loss": 3.6158995628356934,
+ "step": 2964
+ },
+ {
+ "epoch": 41.18173875054609,
+ "grad_norm": 0.2089492678642273,
+ "learning_rate": 0.0006,
+ "loss": 3.586538314819336,
+ "step": 2965
+ },
+ {
+ "epoch": 41.19571865443425,
+ "grad_norm": 0.2370915710926056,
+ "learning_rate": 0.0006,
+ "loss": 3.599236011505127,
+ "step": 2966
+ },
+ {
+ "epoch": 41.20969855832241,
+ "grad_norm": 0.25749558210372925,
+ "learning_rate": 0.0006,
+ "loss": 3.631399154663086,
+ "step": 2967
+ },
+ {
+ "epoch": 41.22367846221057,
+ "grad_norm": 0.24754776060581207,
+ "learning_rate": 0.0006,
+ "loss": 3.6503920555114746,
+ "step": 2968
+ },
+ {
+ "epoch": 41.237658366098735,
+ "grad_norm": 0.22060903906822205,
+ "learning_rate": 0.0006,
+ "loss": 3.671673536300659,
+ "step": 2969
+ },
+ {
+ "epoch": 41.25163826998689,
+ "grad_norm": 0.19416594505310059,
+ "learning_rate": 0.0006,
+ "loss": 3.6158413887023926,
+ "step": 2970
+ },
+ {
+ "epoch": 41.265618173875055,
+ "grad_norm": 0.22596411406993866,
+ "learning_rate": 0.0006,
+ "loss": 3.64003849029541,
+ "step": 2971
+ },
+ {
+ "epoch": 41.27959807776322,
+ "grad_norm": 0.26785415410995483,
+ "learning_rate": 0.0006,
+ "loss": 3.642327308654785,
+ "step": 2972
+ },
+ {
+ "epoch": 41.293577981651374,
+ "grad_norm": 0.2988710403442383,
+ "learning_rate": 0.0006,
+ "loss": 3.6018929481506348,
+ "step": 2973
+ },
+ {
+ "epoch": 41.30755788553954,
+ "grad_norm": 0.2428133338689804,
+ "learning_rate": 0.0006,
+ "loss": 3.645270824432373,
+ "step": 2974
+ },
+ {
+ "epoch": 41.3215377894277,
+ "grad_norm": 0.20330320298671722,
+ "learning_rate": 0.0006,
+ "loss": 3.625495433807373,
+ "step": 2975
+ },
+ {
+ "epoch": 41.33551769331586,
+ "grad_norm": 0.2267787605524063,
+ "learning_rate": 0.0006,
+ "loss": 3.6469204425811768,
+ "step": 2976
+ },
+ {
+ "epoch": 41.34949759720402,
+ "grad_norm": 0.20702822506427765,
+ "learning_rate": 0.0006,
+ "loss": 3.644191265106201,
+ "step": 2977
+ },
+ {
+ "epoch": 41.36347750109218,
+ "grad_norm": 0.19693221151828766,
+ "learning_rate": 0.0006,
+ "loss": 3.591794967651367,
+ "step": 2978
+ },
+ {
+ "epoch": 41.37745740498034,
+ "grad_norm": 0.21193185448646545,
+ "learning_rate": 0.0006,
+ "loss": 3.6283936500549316,
+ "step": 2979
+ },
+ {
+ "epoch": 41.391437308868504,
+ "grad_norm": 0.20953163504600525,
+ "learning_rate": 0.0006,
+ "loss": 3.617565155029297,
+ "step": 2980
+ },
+ {
+ "epoch": 41.40541721275666,
+ "grad_norm": 0.21839819848537445,
+ "learning_rate": 0.0006,
+ "loss": 3.621209144592285,
+ "step": 2981
+ },
+ {
+ "epoch": 41.419397116644824,
+ "grad_norm": 0.2152671068906784,
+ "learning_rate": 0.0006,
+ "loss": 3.643197536468506,
+ "step": 2982
+ },
+ {
+ "epoch": 41.43337702053299,
+ "grad_norm": 0.2507486641407013,
+ "learning_rate": 0.0006,
+ "loss": 3.657499313354492,
+ "step": 2983
+ },
+ {
+ "epoch": 41.44735692442114,
+ "grad_norm": 0.24695388972759247,
+ "learning_rate": 0.0006,
+ "loss": 3.62170672416687,
+ "step": 2984
+ },
+ {
+ "epoch": 41.46133682830931,
+ "grad_norm": 0.22652822732925415,
+ "learning_rate": 0.0006,
+ "loss": 3.64322566986084,
+ "step": 2985
+ },
+ {
+ "epoch": 41.47531673219746,
+ "grad_norm": 0.2575881779193878,
+ "learning_rate": 0.0006,
+ "loss": 3.659621477127075,
+ "step": 2986
+ },
+ {
+ "epoch": 41.489296636085626,
+ "grad_norm": 0.24162672460079193,
+ "learning_rate": 0.0006,
+ "loss": 3.6527223587036133,
+ "step": 2987
+ },
+ {
+ "epoch": 41.50327653997379,
+ "grad_norm": 0.20930497348308563,
+ "learning_rate": 0.0006,
+ "loss": 3.6412787437438965,
+ "step": 2988
+ },
+ {
+ "epoch": 41.517256443861946,
+ "grad_norm": 0.20480819046497345,
+ "learning_rate": 0.0006,
+ "loss": 3.614767074584961,
+ "step": 2989
+ },
+ {
+ "epoch": 41.53123634775011,
+ "grad_norm": 0.20015820860862732,
+ "learning_rate": 0.0006,
+ "loss": 3.6512045860290527,
+ "step": 2990
+ },
+ {
+ "epoch": 41.54521625163827,
+ "grad_norm": 0.20220743119716644,
+ "learning_rate": 0.0006,
+ "loss": 3.6732325553894043,
+ "step": 2991
+ },
+ {
+ "epoch": 41.55919615552643,
+ "grad_norm": 0.20505326986312866,
+ "learning_rate": 0.0006,
+ "loss": 3.6374664306640625,
+ "step": 2992
+ },
+ {
+ "epoch": 41.57317605941459,
+ "grad_norm": 0.19423344731330872,
+ "learning_rate": 0.0006,
+ "loss": 3.6564126014709473,
+ "step": 2993
+ },
+ {
+ "epoch": 41.58715596330275,
+ "grad_norm": 0.19284583628177643,
+ "learning_rate": 0.0006,
+ "loss": 3.6460509300231934,
+ "step": 2994
+ },
+ {
+ "epoch": 41.60113586719091,
+ "grad_norm": 0.18488959968090057,
+ "learning_rate": 0.0006,
+ "loss": 3.632859468460083,
+ "step": 2995
+ },
+ {
+ "epoch": 41.615115771079076,
+ "grad_norm": 0.18816296756267548,
+ "learning_rate": 0.0006,
+ "loss": 3.5958361625671387,
+ "step": 2996
+ },
+ {
+ "epoch": 41.62909567496723,
+ "grad_norm": 0.18987809121608734,
+ "learning_rate": 0.0006,
+ "loss": 3.6330695152282715,
+ "step": 2997
+ },
+ {
+ "epoch": 41.643075578855395,
+ "grad_norm": 0.18999919295310974,
+ "learning_rate": 0.0006,
+ "loss": 3.6486730575561523,
+ "step": 2998
+ },
+ {
+ "epoch": 41.65705548274356,
+ "grad_norm": 0.20190183818340302,
+ "learning_rate": 0.0006,
+ "loss": 3.6564230918884277,
+ "step": 2999
+ },
+ {
+ "epoch": 41.671035386631715,
+ "grad_norm": 0.20331363379955292,
+ "learning_rate": 0.0006,
+ "loss": 3.6789698600769043,
+ "step": 3000
+ },
+ {
+ "epoch": 41.68501529051988,
+ "grad_norm": 0.21599505841732025,
+ "learning_rate": 0.0006,
+ "loss": 3.6544511318206787,
+ "step": 3001
+ },
+ {
+ "epoch": 41.69899519440804,
+ "grad_norm": 0.21123184263706207,
+ "learning_rate": 0.0006,
+ "loss": 3.6506948471069336,
+ "step": 3002
+ },
+ {
+ "epoch": 41.7129750982962,
+ "grad_norm": 0.21337002515792847,
+ "learning_rate": 0.0006,
+ "loss": 3.676854372024536,
+ "step": 3003
+ },
+ {
+ "epoch": 41.72695500218436,
+ "grad_norm": 0.22567597031593323,
+ "learning_rate": 0.0006,
+ "loss": 3.6467485427856445,
+ "step": 3004
+ },
+ {
+ "epoch": 41.74093490607252,
+ "grad_norm": 0.22923491895198822,
+ "learning_rate": 0.0006,
+ "loss": 3.663224697113037,
+ "step": 3005
+ },
+ {
+ "epoch": 41.75491480996068,
+ "grad_norm": 0.21511489152908325,
+ "learning_rate": 0.0006,
+ "loss": 3.6290054321289062,
+ "step": 3006
+ },
+ {
+ "epoch": 41.768894713848844,
+ "grad_norm": 0.23855915665626526,
+ "learning_rate": 0.0006,
+ "loss": 3.631225109100342,
+ "step": 3007
+ },
+ {
+ "epoch": 41.782874617737,
+ "grad_norm": 0.22771067917346954,
+ "learning_rate": 0.0006,
+ "loss": 3.652575731277466,
+ "step": 3008
+ },
+ {
+ "epoch": 41.796854521625164,
+ "grad_norm": 0.2006237953901291,
+ "learning_rate": 0.0006,
+ "loss": 3.6883468627929688,
+ "step": 3009
+ },
+ {
+ "epoch": 41.81083442551333,
+ "grad_norm": 0.21182459592819214,
+ "learning_rate": 0.0006,
+ "loss": 3.6443567276000977,
+ "step": 3010
+ },
+ {
+ "epoch": 41.824814329401484,
+ "grad_norm": 0.21083690226078033,
+ "learning_rate": 0.0006,
+ "loss": 3.66660475730896,
+ "step": 3011
+ },
+ {
+ "epoch": 41.83879423328965,
+ "grad_norm": 0.21232296526432037,
+ "learning_rate": 0.0006,
+ "loss": 3.6436524391174316,
+ "step": 3012
+ },
+ {
+ "epoch": 41.8527741371778,
+ "grad_norm": 0.2089361697435379,
+ "learning_rate": 0.0006,
+ "loss": 3.648113250732422,
+ "step": 3013
+ },
+ {
+ "epoch": 41.86675404106597,
+ "grad_norm": 0.21517033874988556,
+ "learning_rate": 0.0006,
+ "loss": 3.6382269859313965,
+ "step": 3014
+ },
+ {
+ "epoch": 41.88073394495413,
+ "grad_norm": 0.1930733323097229,
+ "learning_rate": 0.0006,
+ "loss": 3.639441967010498,
+ "step": 3015
+ },
+ {
+ "epoch": 41.89471384884229,
+ "grad_norm": 0.18282832205295563,
+ "learning_rate": 0.0006,
+ "loss": 3.652860164642334,
+ "step": 3016
+ },
+ {
+ "epoch": 41.90869375273045,
+ "grad_norm": 0.18649716675281525,
+ "learning_rate": 0.0006,
+ "loss": 3.6335558891296387,
+ "step": 3017
+ },
+ {
+ "epoch": 41.92267365661861,
+ "grad_norm": 0.18873754143714905,
+ "learning_rate": 0.0006,
+ "loss": 3.6743149757385254,
+ "step": 3018
+ },
+ {
+ "epoch": 41.93665356050677,
+ "grad_norm": 0.1937907189130783,
+ "learning_rate": 0.0006,
+ "loss": 3.6749300956726074,
+ "step": 3019
+ },
+ {
+ "epoch": 41.95063346439493,
+ "grad_norm": 0.20620854198932648,
+ "learning_rate": 0.0006,
+ "loss": 3.6591262817382812,
+ "step": 3020
+ },
+ {
+ "epoch": 41.964613368283096,
+ "grad_norm": 0.18541009724140167,
+ "learning_rate": 0.0006,
+ "loss": 3.647010326385498,
+ "step": 3021
+ },
+ {
+ "epoch": 41.97859327217125,
+ "grad_norm": 0.19224928319454193,
+ "learning_rate": 0.0006,
+ "loss": 3.629920482635498,
+ "step": 3022
+ },
+ {
+ "epoch": 41.992573176059416,
+ "grad_norm": 0.21286419034004211,
+ "learning_rate": 0.0006,
+ "loss": 3.6516964435577393,
+ "step": 3023
+ },
+ {
+ "epoch": 42.0,
+ "grad_norm": 0.24787360429763794,
+ "learning_rate": 0.0006,
+ "loss": 3.6378865242004395,
+ "step": 3024
+ },
+ {
+ "epoch": 42.0,
+ "eval_loss": 3.9910318851470947,
+ "eval_runtime": 43.7914,
+ "eval_samples_per_second": 55.764,
+ "eval_steps_per_second": 3.494,
+ "step": 3024
+ },
+ {
+ "epoch": 42.01397990388816,
+ "grad_norm": 0.21036255359649658,
+ "learning_rate": 0.0006,
+ "loss": 3.6604344844818115,
+ "step": 3025
+ },
+ {
+ "epoch": 42.02795980777632,
+ "grad_norm": 0.22240597009658813,
+ "learning_rate": 0.0006,
+ "loss": 3.6160645484924316,
+ "step": 3026
+ },
+ {
+ "epoch": 42.04193971166448,
+ "grad_norm": 0.2487850785255432,
+ "learning_rate": 0.0006,
+ "loss": 3.6293773651123047,
+ "step": 3027
+ },
+ {
+ "epoch": 42.05591961555265,
+ "grad_norm": 0.27058133482933044,
+ "learning_rate": 0.0006,
+ "loss": 3.5827436447143555,
+ "step": 3028
+ },
+ {
+ "epoch": 42.0698995194408,
+ "grad_norm": 0.25001782178878784,
+ "learning_rate": 0.0006,
+ "loss": 3.5833029747009277,
+ "step": 3029
+ },
+ {
+ "epoch": 42.083879423328966,
+ "grad_norm": 0.23811939358711243,
+ "learning_rate": 0.0006,
+ "loss": 3.605585813522339,
+ "step": 3030
+ },
+ {
+ "epoch": 42.09785932721712,
+ "grad_norm": 0.23279601335525513,
+ "learning_rate": 0.0006,
+ "loss": 3.607205867767334,
+ "step": 3031
+ },
+ {
+ "epoch": 42.111839231105286,
+ "grad_norm": 0.24410508573055267,
+ "learning_rate": 0.0006,
+ "loss": 3.621175765991211,
+ "step": 3032
+ },
+ {
+ "epoch": 42.12581913499345,
+ "grad_norm": 0.24782028794288635,
+ "learning_rate": 0.0006,
+ "loss": 3.6236867904663086,
+ "step": 3033
+ },
+ {
+ "epoch": 42.139799038881605,
+ "grad_norm": 0.2301972657442093,
+ "learning_rate": 0.0006,
+ "loss": 3.603853464126587,
+ "step": 3034
+ },
+ {
+ "epoch": 42.15377894276977,
+ "grad_norm": 0.21988637745380402,
+ "learning_rate": 0.0006,
+ "loss": 3.600142002105713,
+ "step": 3035
+ },
+ {
+ "epoch": 42.16775884665793,
+ "grad_norm": 0.22623786330223083,
+ "learning_rate": 0.0006,
+ "loss": 3.61971116065979,
+ "step": 3036
+ },
+ {
+ "epoch": 42.18173875054609,
+ "grad_norm": 0.21844688057899475,
+ "learning_rate": 0.0006,
+ "loss": 3.61320161819458,
+ "step": 3037
+ },
+ {
+ "epoch": 42.19571865443425,
+ "grad_norm": 0.20444536209106445,
+ "learning_rate": 0.0006,
+ "loss": 3.6179633140563965,
+ "step": 3038
+ },
+ {
+ "epoch": 42.20969855832241,
+ "grad_norm": 0.22862036526203156,
+ "learning_rate": 0.0006,
+ "loss": 3.605433940887451,
+ "step": 3039
+ },
+ {
+ "epoch": 42.22367846221057,
+ "grad_norm": 0.2906605005264282,
+ "learning_rate": 0.0006,
+ "loss": 3.6279449462890625,
+ "step": 3040
+ },
+ {
+ "epoch": 42.237658366098735,
+ "grad_norm": 0.29074418544769287,
+ "learning_rate": 0.0006,
+ "loss": 3.5959763526916504,
+ "step": 3041
+ },
+ {
+ "epoch": 42.25163826998689,
+ "grad_norm": 0.1994444876909256,
+ "learning_rate": 0.0006,
+ "loss": 3.5858588218688965,
+ "step": 3042
+ },
+ {
+ "epoch": 42.265618173875055,
+ "grad_norm": 0.20793452858924866,
+ "learning_rate": 0.0006,
+ "loss": 3.604630470275879,
+ "step": 3043
+ },
+ {
+ "epoch": 42.27959807776322,
+ "grad_norm": 0.2119535505771637,
+ "learning_rate": 0.0006,
+ "loss": 3.6287126541137695,
+ "step": 3044
+ },
+ {
+ "epoch": 42.293577981651374,
+ "grad_norm": 0.21092535555362701,
+ "learning_rate": 0.0006,
+ "loss": 3.646294593811035,
+ "step": 3045
+ },
+ {
+ "epoch": 42.30755788553954,
+ "grad_norm": 0.21474479138851166,
+ "learning_rate": 0.0006,
+ "loss": 3.6364355087280273,
+ "step": 3046
+ },
+ {
+ "epoch": 42.3215377894277,
+ "grad_norm": 0.21100781857967377,
+ "learning_rate": 0.0006,
+ "loss": 3.622528553009033,
+ "step": 3047
+ },
+ {
+ "epoch": 42.33551769331586,
+ "grad_norm": 0.20739853382110596,
+ "learning_rate": 0.0006,
+ "loss": 3.6261959075927734,
+ "step": 3048
+ },
+ {
+ "epoch": 42.34949759720402,
+ "grad_norm": 0.22264131903648376,
+ "learning_rate": 0.0006,
+ "loss": 3.6195173263549805,
+ "step": 3049
+ },
+ {
+ "epoch": 42.36347750109218,
+ "grad_norm": 0.23696285486221313,
+ "learning_rate": 0.0006,
+ "loss": 3.631103515625,
+ "step": 3050
+ },
+ {
+ "epoch": 42.37745740498034,
+ "grad_norm": 0.2124902606010437,
+ "learning_rate": 0.0006,
+ "loss": 3.6490437984466553,
+ "step": 3051
+ },
+ {
+ "epoch": 42.391437308868504,
+ "grad_norm": 0.18831083178520203,
+ "learning_rate": 0.0006,
+ "loss": 3.628459930419922,
+ "step": 3052
+ },
+ {
+ "epoch": 42.40541721275666,
+ "grad_norm": 0.20390060544013977,
+ "learning_rate": 0.0006,
+ "loss": 3.6348538398742676,
+ "step": 3053
+ },
+ {
+ "epoch": 42.419397116644824,
+ "grad_norm": 0.2205851823091507,
+ "learning_rate": 0.0006,
+ "loss": 3.6286797523498535,
+ "step": 3054
+ },
+ {
+ "epoch": 42.43337702053299,
+ "grad_norm": 0.21518434584140778,
+ "learning_rate": 0.0006,
+ "loss": 3.5918965339660645,
+ "step": 3055
+ },
+ {
+ "epoch": 42.44735692442114,
+ "grad_norm": 0.2342296987771988,
+ "learning_rate": 0.0006,
+ "loss": 3.6364407539367676,
+ "step": 3056
+ },
+ {
+ "epoch": 42.46133682830931,
+ "grad_norm": 0.2304094135761261,
+ "learning_rate": 0.0006,
+ "loss": 3.6561477184295654,
+ "step": 3057
+ },
+ {
+ "epoch": 42.47531673219746,
+ "grad_norm": 0.20882441103458405,
+ "learning_rate": 0.0006,
+ "loss": 3.611250638961792,
+ "step": 3058
+ },
+ {
+ "epoch": 42.489296636085626,
+ "grad_norm": 0.24346643686294556,
+ "learning_rate": 0.0006,
+ "loss": 3.580082416534424,
+ "step": 3059
+ },
+ {
+ "epoch": 42.50327653997379,
+ "grad_norm": 0.260711133480072,
+ "learning_rate": 0.0006,
+ "loss": 3.6179792881011963,
+ "step": 3060
+ },
+ {
+ "epoch": 42.517256443861946,
+ "grad_norm": 0.21223759651184082,
+ "learning_rate": 0.0006,
+ "loss": 3.6153154373168945,
+ "step": 3061
+ },
+ {
+ "epoch": 42.53123634775011,
+ "grad_norm": 0.21429137885570526,
+ "learning_rate": 0.0006,
+ "loss": 3.6003379821777344,
+ "step": 3062
+ },
+ {
+ "epoch": 42.54521625163827,
+ "grad_norm": 0.23659434914588928,
+ "learning_rate": 0.0006,
+ "loss": 3.6540589332580566,
+ "step": 3063
+ },
+ {
+ "epoch": 42.55919615552643,
+ "grad_norm": 0.280344158411026,
+ "learning_rate": 0.0006,
+ "loss": 3.6406192779541016,
+ "step": 3064
+ },
+ {
+ "epoch": 42.57317605941459,
+ "grad_norm": 0.2903953194618225,
+ "learning_rate": 0.0006,
+ "loss": 3.643479824066162,
+ "step": 3065
+ },
+ {
+ "epoch": 42.58715596330275,
+ "grad_norm": 0.24958311021327972,
+ "learning_rate": 0.0006,
+ "loss": 3.6320221424102783,
+ "step": 3066
+ },
+ {
+ "epoch": 42.60113586719091,
+ "grad_norm": 0.22525225579738617,
+ "learning_rate": 0.0006,
+ "loss": 3.641676425933838,
+ "step": 3067
+ },
+ {
+ "epoch": 42.615115771079076,
+ "grad_norm": 0.23025161027908325,
+ "learning_rate": 0.0006,
+ "loss": 3.6465210914611816,
+ "step": 3068
+ },
+ {
+ "epoch": 42.62909567496723,
+ "grad_norm": 0.21947328746318817,
+ "learning_rate": 0.0006,
+ "loss": 3.667877435684204,
+ "step": 3069
+ },
+ {
+ "epoch": 42.643075578855395,
+ "grad_norm": 0.22809366881847382,
+ "learning_rate": 0.0006,
+ "loss": 3.663166046142578,
+ "step": 3070
+ },
+ {
+ "epoch": 42.65705548274356,
+ "grad_norm": 0.21938708424568176,
+ "learning_rate": 0.0006,
+ "loss": 3.619001865386963,
+ "step": 3071
+ },
+ {
+ "epoch": 42.671035386631715,
+ "grad_norm": 0.231620192527771,
+ "learning_rate": 0.0006,
+ "loss": 3.652332305908203,
+ "step": 3072
+ },
+ {
+ "epoch": 42.68501529051988,
+ "grad_norm": 0.23683936893939972,
+ "learning_rate": 0.0006,
+ "loss": 3.6633410453796387,
+ "step": 3073
+ },
+ {
+ "epoch": 42.69899519440804,
+ "grad_norm": 0.23752044141292572,
+ "learning_rate": 0.0006,
+ "loss": 3.646064281463623,
+ "step": 3074
+ },
+ {
+ "epoch": 42.7129750982962,
+ "grad_norm": 0.23041971027851105,
+ "learning_rate": 0.0006,
+ "loss": 3.6431851387023926,
+ "step": 3075
+ },
+ {
+ "epoch": 42.72695500218436,
+ "grad_norm": 0.220438614487648,
+ "learning_rate": 0.0006,
+ "loss": 3.6499950885772705,
+ "step": 3076
+ },
+ {
+ "epoch": 42.74093490607252,
+ "grad_norm": 0.24297107756137848,
+ "learning_rate": 0.0006,
+ "loss": 3.6655125617980957,
+ "step": 3077
+ },
+ {
+ "epoch": 42.75491480996068,
+ "grad_norm": 0.21835893392562866,
+ "learning_rate": 0.0006,
+ "loss": 3.61672043800354,
+ "step": 3078
+ },
+ {
+ "epoch": 42.768894713848844,
+ "grad_norm": 0.22490793466567993,
+ "learning_rate": 0.0006,
+ "loss": 3.652825355529785,
+ "step": 3079
+ },
+ {
+ "epoch": 42.782874617737,
+ "grad_norm": 0.2246086746454239,
+ "learning_rate": 0.0006,
+ "loss": 3.6290056705474854,
+ "step": 3080
+ },
+ {
+ "epoch": 42.796854521625164,
+ "grad_norm": 0.21527042984962463,
+ "learning_rate": 0.0006,
+ "loss": 3.6587281227111816,
+ "step": 3081
+ },
+ {
+ "epoch": 42.81083442551333,
+ "grad_norm": 0.19586899876594543,
+ "learning_rate": 0.0006,
+ "loss": 3.639626979827881,
+ "step": 3082
+ },
+ {
+ "epoch": 42.824814329401484,
+ "grad_norm": 0.20881155133247375,
+ "learning_rate": 0.0006,
+ "loss": 3.6305861473083496,
+ "step": 3083
+ },
+ {
+ "epoch": 42.83879423328965,
+ "grad_norm": 0.20094981789588928,
+ "learning_rate": 0.0006,
+ "loss": 3.609614849090576,
+ "step": 3084
+ },
+ {
+ "epoch": 42.8527741371778,
+ "grad_norm": 0.21786150336265564,
+ "learning_rate": 0.0006,
+ "loss": 3.6423556804656982,
+ "step": 3085
+ },
+ {
+ "epoch": 42.86675404106597,
+ "grad_norm": 0.24493595957756042,
+ "learning_rate": 0.0006,
+ "loss": 3.631321668624878,
+ "step": 3086
+ },
+ {
+ "epoch": 42.88073394495413,
+ "grad_norm": 0.2437327355146408,
+ "learning_rate": 0.0006,
+ "loss": 3.6624178886413574,
+ "step": 3087
+ },
+ {
+ "epoch": 42.89471384884229,
+ "grad_norm": 0.21020543575286865,
+ "learning_rate": 0.0006,
+ "loss": 3.6567513942718506,
+ "step": 3088
+ },
+ {
+ "epoch": 42.90869375273045,
+ "grad_norm": 0.18977083265781403,
+ "learning_rate": 0.0006,
+ "loss": 3.6268601417541504,
+ "step": 3089
+ },
+ {
+ "epoch": 42.92267365661861,
+ "grad_norm": 0.2211192399263382,
+ "learning_rate": 0.0006,
+ "loss": 3.6690402030944824,
+ "step": 3090
+ },
+ {
+ "epoch": 42.93665356050677,
+ "grad_norm": 0.2695990204811096,
+ "learning_rate": 0.0006,
+ "loss": 3.667701244354248,
+ "step": 3091
+ },
+ {
+ "epoch": 42.95063346439493,
+ "grad_norm": 0.25910887122154236,
+ "learning_rate": 0.0006,
+ "loss": 3.627504587173462,
+ "step": 3092
+ },
+ {
+ "epoch": 42.964613368283096,
+ "grad_norm": 0.2466248720884323,
+ "learning_rate": 0.0006,
+ "loss": 3.6462182998657227,
+ "step": 3093
+ },
+ {
+ "epoch": 42.97859327217125,
+ "grad_norm": 0.22997038066387177,
+ "learning_rate": 0.0006,
+ "loss": 3.647430896759033,
+ "step": 3094
+ },
+ {
+ "epoch": 42.992573176059416,
+ "grad_norm": 0.1989113837480545,
+ "learning_rate": 0.0006,
+ "loss": 3.6502084732055664,
+ "step": 3095
+ },
+ {
+ "epoch": 43.0,
+ "grad_norm": 0.22976496815681458,
+ "learning_rate": 0.0006,
+ "loss": 3.6963884830474854,
+ "step": 3096
+ },
+ {
+ "epoch": 43.0,
+ "eval_loss": 3.9656779766082764,
+ "eval_runtime": 43.9281,
+ "eval_samples_per_second": 55.591,
+ "eval_steps_per_second": 3.483,
+ "step": 3096
+ },
+ {
+ "epoch": 43.01397990388816,
+ "grad_norm": 0.2862325608730316,
+ "learning_rate": 0.0006,
+ "loss": 3.581247568130493,
+ "step": 3097
+ },
+ {
+ "epoch": 43.02795980777632,
+ "grad_norm": 0.3867015540599823,
+ "learning_rate": 0.0006,
+ "loss": 3.611076593399048,
+ "step": 3098
+ },
+ {
+ "epoch": 43.04193971166448,
+ "grad_norm": 0.4139448404312134,
+ "learning_rate": 0.0006,
+ "loss": 3.625164031982422,
+ "step": 3099
+ },
+ {
+ "epoch": 43.05591961555265,
+ "grad_norm": 0.292407363653183,
+ "learning_rate": 0.0006,
+ "loss": 3.615546703338623,
+ "step": 3100
+ },
+ {
+ "epoch": 43.0698995194408,
+ "grad_norm": 0.24272124469280243,
+ "learning_rate": 0.0006,
+ "loss": 3.5965943336486816,
+ "step": 3101
+ },
+ {
+ "epoch": 43.083879423328966,
+ "grad_norm": 0.2761254608631134,
+ "learning_rate": 0.0006,
+ "loss": 3.605706214904785,
+ "step": 3102
+ },
+ {
+ "epoch": 43.09785932721712,
+ "grad_norm": 0.25232183933258057,
+ "learning_rate": 0.0006,
+ "loss": 3.6252012252807617,
+ "step": 3103
+ },
+ {
+ "epoch": 43.111839231105286,
+ "grad_norm": 0.248970165848732,
+ "learning_rate": 0.0006,
+ "loss": 3.6028337478637695,
+ "step": 3104
+ },
+ {
+ "epoch": 43.12581913499345,
+ "grad_norm": 0.22088921070098877,
+ "learning_rate": 0.0006,
+ "loss": 3.591614007949829,
+ "step": 3105
+ },
+ {
+ "epoch": 43.139799038881605,
+ "grad_norm": 0.21528655290603638,
+ "learning_rate": 0.0006,
+ "loss": 3.6237306594848633,
+ "step": 3106
+ },
+ {
+ "epoch": 43.15377894276977,
+ "grad_norm": 0.22799135744571686,
+ "learning_rate": 0.0006,
+ "loss": 3.5968847274780273,
+ "step": 3107
+ },
+ {
+ "epoch": 43.16775884665793,
+ "grad_norm": 0.23102127015590668,
+ "learning_rate": 0.0006,
+ "loss": 3.6046414375305176,
+ "step": 3108
+ },
+ {
+ "epoch": 43.18173875054609,
+ "grad_norm": 0.22876501083374023,
+ "learning_rate": 0.0006,
+ "loss": 3.635608196258545,
+ "step": 3109
+ },
+ {
+ "epoch": 43.19571865443425,
+ "grad_norm": 0.24920420348644257,
+ "learning_rate": 0.0006,
+ "loss": 3.628662109375,
+ "step": 3110
+ },
+ {
+ "epoch": 43.20969855832241,
+ "grad_norm": 0.2527749538421631,
+ "learning_rate": 0.0006,
+ "loss": 3.6109046936035156,
+ "step": 3111
+ },
+ {
+ "epoch": 43.22367846221057,
+ "grad_norm": 0.22529229521751404,
+ "learning_rate": 0.0006,
+ "loss": 3.6536030769348145,
+ "step": 3112
+ },
+ {
+ "epoch": 43.237658366098735,
+ "grad_norm": 0.20031821727752686,
+ "learning_rate": 0.0006,
+ "loss": 3.6328792572021484,
+ "step": 3113
+ },
+ {
+ "epoch": 43.25163826998689,
+ "grad_norm": 0.21075189113616943,
+ "learning_rate": 0.0006,
+ "loss": 3.6200530529022217,
+ "step": 3114
+ },
+ {
+ "epoch": 43.265618173875055,
+ "grad_norm": 0.21164856851100922,
+ "learning_rate": 0.0006,
+ "loss": 3.6276001930236816,
+ "step": 3115
+ },
+ {
+ "epoch": 43.27959807776322,
+ "grad_norm": 0.19306758046150208,
+ "learning_rate": 0.0006,
+ "loss": 3.608675956726074,
+ "step": 3116
+ },
+ {
+ "epoch": 43.293577981651374,
+ "grad_norm": 0.20288796722888947,
+ "learning_rate": 0.0006,
+ "loss": 3.6057004928588867,
+ "step": 3117
+ },
+ {
+ "epoch": 43.30755788553954,
+ "grad_norm": 0.1901484876871109,
+ "learning_rate": 0.0006,
+ "loss": 3.6191725730895996,
+ "step": 3118
+ },
+ {
+ "epoch": 43.3215377894277,
+ "grad_norm": 0.19438181817531586,
+ "learning_rate": 0.0006,
+ "loss": 3.5814337730407715,
+ "step": 3119
+ },
+ {
+ "epoch": 43.33551769331586,
+ "grad_norm": 0.19924484193325043,
+ "learning_rate": 0.0006,
+ "loss": 3.6168713569641113,
+ "step": 3120
+ },
+ {
+ "epoch": 43.34949759720402,
+ "grad_norm": 0.20757409930229187,
+ "learning_rate": 0.0006,
+ "loss": 3.6281509399414062,
+ "step": 3121
+ },
+ {
+ "epoch": 43.36347750109218,
+ "grad_norm": 0.22500184178352356,
+ "learning_rate": 0.0006,
+ "loss": 3.635101795196533,
+ "step": 3122
+ },
+ {
+ "epoch": 43.37745740498034,
+ "grad_norm": 0.22061555087566376,
+ "learning_rate": 0.0006,
+ "loss": 3.630622386932373,
+ "step": 3123
+ },
+ {
+ "epoch": 43.391437308868504,
+ "grad_norm": 0.2094152420759201,
+ "learning_rate": 0.0006,
+ "loss": 3.581803798675537,
+ "step": 3124
+ },
+ {
+ "epoch": 43.40541721275666,
+ "grad_norm": 0.19607678055763245,
+ "learning_rate": 0.0006,
+ "loss": 3.6149864196777344,
+ "step": 3125
+ },
+ {
+ "epoch": 43.419397116644824,
+ "grad_norm": 0.18985028564929962,
+ "learning_rate": 0.0006,
+ "loss": 3.6338040828704834,
+ "step": 3126
+ },
+ {
+ "epoch": 43.43337702053299,
+ "grad_norm": 0.20490778982639313,
+ "learning_rate": 0.0006,
+ "loss": 3.63275146484375,
+ "step": 3127
+ },
+ {
+ "epoch": 43.44735692442114,
+ "grad_norm": 0.24385297298431396,
+ "learning_rate": 0.0006,
+ "loss": 3.6412134170532227,
+ "step": 3128
+ },
+ {
+ "epoch": 43.46133682830931,
+ "grad_norm": 0.243601992726326,
+ "learning_rate": 0.0006,
+ "loss": 3.594238758087158,
+ "step": 3129
+ },
+ {
+ "epoch": 43.47531673219746,
+ "grad_norm": 0.21314913034439087,
+ "learning_rate": 0.0006,
+ "loss": 3.5962629318237305,
+ "step": 3130
+ },
+ {
+ "epoch": 43.489296636085626,
+ "grad_norm": 0.20499329268932343,
+ "learning_rate": 0.0006,
+ "loss": 3.61600923538208,
+ "step": 3131
+ },
+ {
+ "epoch": 43.50327653997379,
+ "grad_norm": 0.20199540257453918,
+ "learning_rate": 0.0006,
+ "loss": 3.638469934463501,
+ "step": 3132
+ },
+ {
+ "epoch": 43.517256443861946,
+ "grad_norm": 0.19932983815670013,
+ "learning_rate": 0.0006,
+ "loss": 3.619145393371582,
+ "step": 3133
+ },
+ {
+ "epoch": 43.53123634775011,
+ "grad_norm": 0.20401954650878906,
+ "learning_rate": 0.0006,
+ "loss": 3.643700122833252,
+ "step": 3134
+ },
+ {
+ "epoch": 43.54521625163827,
+ "grad_norm": 0.20784904062747955,
+ "learning_rate": 0.0006,
+ "loss": 3.619272232055664,
+ "step": 3135
+ },
+ {
+ "epoch": 43.55919615552643,
+ "grad_norm": 0.21003122627735138,
+ "learning_rate": 0.0006,
+ "loss": 3.629542827606201,
+ "step": 3136
+ },
+ {
+ "epoch": 43.57317605941459,
+ "grad_norm": 0.2220298945903778,
+ "learning_rate": 0.0006,
+ "loss": 3.655543804168701,
+ "step": 3137
+ },
+ {
+ "epoch": 43.58715596330275,
+ "grad_norm": 0.21159163117408752,
+ "learning_rate": 0.0006,
+ "loss": 3.6092495918273926,
+ "step": 3138
+ },
+ {
+ "epoch": 43.60113586719091,
+ "grad_norm": 0.19462746381759644,
+ "learning_rate": 0.0006,
+ "loss": 3.6447129249572754,
+ "step": 3139
+ },
+ {
+ "epoch": 43.615115771079076,
+ "grad_norm": 0.20523829758167267,
+ "learning_rate": 0.0006,
+ "loss": 3.6292669773101807,
+ "step": 3140
+ },
+ {
+ "epoch": 43.62909567496723,
+ "grad_norm": 0.2172321230173111,
+ "learning_rate": 0.0006,
+ "loss": 3.6144580841064453,
+ "step": 3141
+ },
+ {
+ "epoch": 43.643075578855395,
+ "grad_norm": 0.21751564741134644,
+ "learning_rate": 0.0006,
+ "loss": 3.6381068229675293,
+ "step": 3142
+ },
+ {
+ "epoch": 43.65705548274356,
+ "grad_norm": 0.1914236694574356,
+ "learning_rate": 0.0006,
+ "loss": 3.6392078399658203,
+ "step": 3143
+ },
+ {
+ "epoch": 43.671035386631715,
+ "grad_norm": 0.19792547821998596,
+ "learning_rate": 0.0006,
+ "loss": 3.6394457817077637,
+ "step": 3144
+ },
+ {
+ "epoch": 43.68501529051988,
+ "grad_norm": 0.2106214165687561,
+ "learning_rate": 0.0006,
+ "loss": 3.626147747039795,
+ "step": 3145
+ },
+ {
+ "epoch": 43.69899519440804,
+ "grad_norm": 0.21802955865859985,
+ "learning_rate": 0.0006,
+ "loss": 3.63372802734375,
+ "step": 3146
+ },
+ {
+ "epoch": 43.7129750982962,
+ "grad_norm": 0.21498727798461914,
+ "learning_rate": 0.0006,
+ "loss": 3.6193063259124756,
+ "step": 3147
+ },
+ {
+ "epoch": 43.72695500218436,
+ "grad_norm": 0.2176690250635147,
+ "learning_rate": 0.0006,
+ "loss": 3.6431519985198975,
+ "step": 3148
+ },
+ {
+ "epoch": 43.74093490607252,
+ "grad_norm": 0.26883506774902344,
+ "learning_rate": 0.0006,
+ "loss": 3.6216721534729004,
+ "step": 3149
+ },
+ {
+ "epoch": 43.75491480996068,
+ "grad_norm": 0.23485299944877625,
+ "learning_rate": 0.0006,
+ "loss": 3.6361191272735596,
+ "step": 3150
+ },
+ {
+ "epoch": 43.768894713848844,
+ "grad_norm": 0.20496341586112976,
+ "learning_rate": 0.0006,
+ "loss": 3.6258792877197266,
+ "step": 3151
+ },
+ {
+ "epoch": 43.782874617737,
+ "grad_norm": 0.21792510151863098,
+ "learning_rate": 0.0006,
+ "loss": 3.6522839069366455,
+ "step": 3152
+ },
+ {
+ "epoch": 43.796854521625164,
+ "grad_norm": 0.2589452564716339,
+ "learning_rate": 0.0006,
+ "loss": 3.651235580444336,
+ "step": 3153
+ },
+ {
+ "epoch": 43.81083442551333,
+ "grad_norm": 0.24883611500263214,
+ "learning_rate": 0.0006,
+ "loss": 3.6382546424865723,
+ "step": 3154
+ },
+ {
+ "epoch": 43.824814329401484,
+ "grad_norm": 0.22466720640659332,
+ "learning_rate": 0.0006,
+ "loss": 3.6232261657714844,
+ "step": 3155
+ },
+ {
+ "epoch": 43.83879423328965,
+ "grad_norm": 0.19477292895317078,
+ "learning_rate": 0.0006,
+ "loss": 3.6350135803222656,
+ "step": 3156
+ },
+ {
+ "epoch": 43.8527741371778,
+ "grad_norm": 0.20302540063858032,
+ "learning_rate": 0.0006,
+ "loss": 3.638143539428711,
+ "step": 3157
+ },
+ {
+ "epoch": 43.86675404106597,
+ "grad_norm": 0.2112276554107666,
+ "learning_rate": 0.0006,
+ "loss": 3.6415610313415527,
+ "step": 3158
+ },
+ {
+ "epoch": 43.88073394495413,
+ "grad_norm": 0.20544779300689697,
+ "learning_rate": 0.0006,
+ "loss": 3.6437134742736816,
+ "step": 3159
+ },
+ {
+ "epoch": 43.89471384884229,
+ "grad_norm": 0.2320292890071869,
+ "learning_rate": 0.0006,
+ "loss": 3.6178359985351562,
+ "step": 3160
+ },
+ {
+ "epoch": 43.90869375273045,
+ "grad_norm": 0.25862693786621094,
+ "learning_rate": 0.0006,
+ "loss": 3.618229389190674,
+ "step": 3161
+ },
+ {
+ "epoch": 43.92267365661861,
+ "grad_norm": 0.2741934061050415,
+ "learning_rate": 0.0006,
+ "loss": 3.6046690940856934,
+ "step": 3162
+ },
+ {
+ "epoch": 43.93665356050677,
+ "grad_norm": 0.24312593042850494,
+ "learning_rate": 0.0006,
+ "loss": 3.5835556983947754,
+ "step": 3163
+ },
+ {
+ "epoch": 43.95063346439493,
+ "grad_norm": 0.22174517810344696,
+ "learning_rate": 0.0006,
+ "loss": 3.6505162715911865,
+ "step": 3164
+ },
+ {
+ "epoch": 43.964613368283096,
+ "grad_norm": 0.22016975283622742,
+ "learning_rate": 0.0006,
+ "loss": 3.6385562419891357,
+ "step": 3165
+ },
+ {
+ "epoch": 43.97859327217125,
+ "grad_norm": 0.23034313321113586,
+ "learning_rate": 0.0006,
+ "loss": 3.6345865726470947,
+ "step": 3166
+ },
+ {
+ "epoch": 43.992573176059416,
+ "grad_norm": 0.21236231923103333,
+ "learning_rate": 0.0006,
+ "loss": 3.6337084770202637,
+ "step": 3167
+ },
+ {
+ "epoch": 44.0,
+ "grad_norm": 0.2344549298286438,
+ "learning_rate": 0.0006,
+ "loss": 3.677978515625,
+ "step": 3168
+ },
+ {
+ "epoch": 44.0,
+ "eval_loss": 3.9817888736724854,
+ "eval_runtime": 44.4396,
+ "eval_samples_per_second": 54.951,
+ "eval_steps_per_second": 3.443,
+ "step": 3168
+ },
+ {
+ "epoch": 44.01397990388816,
+ "grad_norm": 0.19790801405906677,
+ "learning_rate": 0.0006,
+ "loss": 3.590817451477051,
+ "step": 3169
+ },
+ {
+ "epoch": 44.02795980777632,
+ "grad_norm": 0.22922387719154358,
+ "learning_rate": 0.0006,
+ "loss": 3.643888473510742,
+ "step": 3170
+ },
+ {
+ "epoch": 44.04193971166448,
+ "grad_norm": 0.24750149250030518,
+ "learning_rate": 0.0006,
+ "loss": 3.596278667449951,
+ "step": 3171
+ },
+ {
+ "epoch": 44.05591961555265,
+ "grad_norm": 0.2511967420578003,
+ "learning_rate": 0.0006,
+ "loss": 3.6138253211975098,
+ "step": 3172
+ },
+ {
+ "epoch": 44.0698995194408,
+ "grad_norm": 0.2530326843261719,
+ "learning_rate": 0.0006,
+ "loss": 3.5710060596466064,
+ "step": 3173
+ },
+ {
+ "epoch": 44.083879423328966,
+ "grad_norm": 0.2629041373729706,
+ "learning_rate": 0.0006,
+ "loss": 3.61676025390625,
+ "step": 3174
+ },
+ {
+ "epoch": 44.09785932721712,
+ "grad_norm": 0.27373939752578735,
+ "learning_rate": 0.0006,
+ "loss": 3.613091230392456,
+ "step": 3175
+ },
+ {
+ "epoch": 44.111839231105286,
+ "grad_norm": 0.24354346096515656,
+ "learning_rate": 0.0006,
+ "loss": 3.6133360862731934,
+ "step": 3176
+ },
+ {
+ "epoch": 44.12581913499345,
+ "grad_norm": 0.21540892124176025,
+ "learning_rate": 0.0006,
+ "loss": 3.6367645263671875,
+ "step": 3177
+ },
+ {
+ "epoch": 44.139799038881605,
+ "grad_norm": 0.22251278162002563,
+ "learning_rate": 0.0006,
+ "loss": 3.6266322135925293,
+ "step": 3178
+ },
+ {
+ "epoch": 44.15377894276977,
+ "grad_norm": 0.26196029782295227,
+ "learning_rate": 0.0006,
+ "loss": 3.616487979888916,
+ "step": 3179
+ },
+ {
+ "epoch": 44.16775884665793,
+ "grad_norm": 0.2614341080188751,
+ "learning_rate": 0.0006,
+ "loss": 3.5902786254882812,
+ "step": 3180
+ },
+ {
+ "epoch": 44.18173875054609,
+ "grad_norm": 0.23517177999019623,
+ "learning_rate": 0.0006,
+ "loss": 3.610124111175537,
+ "step": 3181
+ },
+ {
+ "epoch": 44.19571865443425,
+ "grad_norm": 0.20091469585895538,
+ "learning_rate": 0.0006,
+ "loss": 3.5861713886260986,
+ "step": 3182
+ },
+ {
+ "epoch": 44.20969855832241,
+ "grad_norm": 0.19659830629825592,
+ "learning_rate": 0.0006,
+ "loss": 3.6157889366149902,
+ "step": 3183
+ },
+ {
+ "epoch": 44.22367846221057,
+ "grad_norm": 0.20690861344337463,
+ "learning_rate": 0.0006,
+ "loss": 3.5710649490356445,
+ "step": 3184
+ },
+ {
+ "epoch": 44.237658366098735,
+ "grad_norm": 0.2478247433900833,
+ "learning_rate": 0.0006,
+ "loss": 3.609031915664673,
+ "step": 3185
+ },
+ {
+ "epoch": 44.25163826998689,
+ "grad_norm": 0.2678471505641937,
+ "learning_rate": 0.0006,
+ "loss": 3.6412887573242188,
+ "step": 3186
+ },
+ {
+ "epoch": 44.265618173875055,
+ "grad_norm": 0.21856079995632172,
+ "learning_rate": 0.0006,
+ "loss": 3.6113123893737793,
+ "step": 3187
+ },
+ {
+ "epoch": 44.27959807776322,
+ "grad_norm": 0.23104850947856903,
+ "learning_rate": 0.0006,
+ "loss": 3.6022086143493652,
+ "step": 3188
+ },
+ {
+ "epoch": 44.293577981651374,
+ "grad_norm": 0.2380223423242569,
+ "learning_rate": 0.0006,
+ "loss": 3.598735809326172,
+ "step": 3189
+ },
+ {
+ "epoch": 44.30755788553954,
+ "grad_norm": 0.23005320131778717,
+ "learning_rate": 0.0006,
+ "loss": 3.595881938934326,
+ "step": 3190
+ },
+ {
+ "epoch": 44.3215377894277,
+ "grad_norm": 0.23327432572841644,
+ "learning_rate": 0.0006,
+ "loss": 3.6198601722717285,
+ "step": 3191
+ },
+ {
+ "epoch": 44.33551769331586,
+ "grad_norm": 0.2272268831729889,
+ "learning_rate": 0.0006,
+ "loss": 3.6135387420654297,
+ "step": 3192
+ },
+ {
+ "epoch": 44.34949759720402,
+ "grad_norm": 0.2518279552459717,
+ "learning_rate": 0.0006,
+ "loss": 3.6084556579589844,
+ "step": 3193
+ },
+ {
+ "epoch": 44.36347750109218,
+ "grad_norm": 0.27668607234954834,
+ "learning_rate": 0.0006,
+ "loss": 3.644430160522461,
+ "step": 3194
+ },
+ {
+ "epoch": 44.37745740498034,
+ "grad_norm": 0.26110342144966125,
+ "learning_rate": 0.0006,
+ "loss": 3.64072322845459,
+ "step": 3195
+ },
+ {
+ "epoch": 44.391437308868504,
+ "grad_norm": 0.22767964005470276,
+ "learning_rate": 0.0006,
+ "loss": 3.5570502281188965,
+ "step": 3196
+ },
+ {
+ "epoch": 44.40541721275666,
+ "grad_norm": 0.2199093997478485,
+ "learning_rate": 0.0006,
+ "loss": 3.558889150619507,
+ "step": 3197
+ },
+ {
+ "epoch": 44.419397116644824,
+ "grad_norm": 0.21653494238853455,
+ "learning_rate": 0.0006,
+ "loss": 3.6215333938598633,
+ "step": 3198
+ },
+ {
+ "epoch": 44.43337702053299,
+ "grad_norm": 0.1958773136138916,
+ "learning_rate": 0.0006,
+ "loss": 3.588468551635742,
+ "step": 3199
+ },
+ {
+ "epoch": 44.44735692442114,
+ "grad_norm": 0.20205403864383698,
+ "learning_rate": 0.0006,
+ "loss": 3.6109578609466553,
+ "step": 3200
+ },
+ {
+ "epoch": 44.46133682830931,
+ "grad_norm": 0.19632115960121155,
+ "learning_rate": 0.0006,
+ "loss": 3.634315013885498,
+ "step": 3201
+ },
+ {
+ "epoch": 44.47531673219746,
+ "grad_norm": 0.19327203929424286,
+ "learning_rate": 0.0006,
+ "loss": 3.6335930824279785,
+ "step": 3202
+ },
+ {
+ "epoch": 44.489296636085626,
+ "grad_norm": 0.19743897020816803,
+ "learning_rate": 0.0006,
+ "loss": 3.6164016723632812,
+ "step": 3203
+ },
+ {
+ "epoch": 44.50327653997379,
+ "grad_norm": 0.20413564145565033,
+ "learning_rate": 0.0006,
+ "loss": 3.663613796234131,
+ "step": 3204
+ },
+ {
+ "epoch": 44.517256443861946,
+ "grad_norm": 0.2057798206806183,
+ "learning_rate": 0.0006,
+ "loss": 3.625131130218506,
+ "step": 3205
+ },
+ {
+ "epoch": 44.53123634775011,
+ "grad_norm": 0.20076915621757507,
+ "learning_rate": 0.0006,
+ "loss": 3.6362178325653076,
+ "step": 3206
+ },
+ {
+ "epoch": 44.54521625163827,
+ "grad_norm": 0.2381955236196518,
+ "learning_rate": 0.0006,
+ "loss": 3.621263265609741,
+ "step": 3207
+ },
+ {
+ "epoch": 44.55919615552643,
+ "grad_norm": 0.27008768916130066,
+ "learning_rate": 0.0006,
+ "loss": 3.6133322715759277,
+ "step": 3208
+ },
+ {
+ "epoch": 44.57317605941459,
+ "grad_norm": 0.25677573680877686,
+ "learning_rate": 0.0006,
+ "loss": 3.6210851669311523,
+ "step": 3209
+ },
+ {
+ "epoch": 44.58715596330275,
+ "grad_norm": 0.21022997796535492,
+ "learning_rate": 0.0006,
+ "loss": 3.626483917236328,
+ "step": 3210
+ },
+ {
+ "epoch": 44.60113586719091,
+ "grad_norm": 0.19918566942214966,
+ "learning_rate": 0.0006,
+ "loss": 3.6321091651916504,
+ "step": 3211
+ },
+ {
+ "epoch": 44.615115771079076,
+ "grad_norm": 0.2114727795124054,
+ "learning_rate": 0.0006,
+ "loss": 3.5767595767974854,
+ "step": 3212
+ },
+ {
+ "epoch": 44.62909567496723,
+ "grad_norm": 0.20968441665172577,
+ "learning_rate": 0.0006,
+ "loss": 3.6040430068969727,
+ "step": 3213
+ },
+ {
+ "epoch": 44.643075578855395,
+ "grad_norm": 0.19996227324008942,
+ "learning_rate": 0.0006,
+ "loss": 3.6688590049743652,
+ "step": 3214
+ },
+ {
+ "epoch": 44.65705548274356,
+ "grad_norm": 0.19998830556869507,
+ "learning_rate": 0.0006,
+ "loss": 3.6349434852600098,
+ "step": 3215
+ },
+ {
+ "epoch": 44.671035386631715,
+ "grad_norm": 0.20812496542930603,
+ "learning_rate": 0.0006,
+ "loss": 3.6363840103149414,
+ "step": 3216
+ },
+ {
+ "epoch": 44.68501529051988,
+ "grad_norm": 0.1988825500011444,
+ "learning_rate": 0.0006,
+ "loss": 3.6180496215820312,
+ "step": 3217
+ },
+ {
+ "epoch": 44.69899519440804,
+ "grad_norm": 0.2114664614200592,
+ "learning_rate": 0.0006,
+ "loss": 3.6362106800079346,
+ "step": 3218
+ },
+ {
+ "epoch": 44.7129750982962,
+ "grad_norm": 0.19847962260246277,
+ "learning_rate": 0.0006,
+ "loss": 3.618500232696533,
+ "step": 3219
+ },
+ {
+ "epoch": 44.72695500218436,
+ "grad_norm": 0.19903887808322906,
+ "learning_rate": 0.0006,
+ "loss": 3.6360888481140137,
+ "step": 3220
+ },
+ {
+ "epoch": 44.74093490607252,
+ "grad_norm": 0.21198545396327972,
+ "learning_rate": 0.0006,
+ "loss": 3.6347005367279053,
+ "step": 3221
+ },
+ {
+ "epoch": 44.75491480996068,
+ "grad_norm": 0.18334898352622986,
+ "learning_rate": 0.0006,
+ "loss": 3.6160783767700195,
+ "step": 3222
+ },
+ {
+ "epoch": 44.768894713848844,
+ "grad_norm": 0.19260665774345398,
+ "learning_rate": 0.0006,
+ "loss": 3.6322834491729736,
+ "step": 3223
+ },
+ {
+ "epoch": 44.782874617737,
+ "grad_norm": 0.2084558755159378,
+ "learning_rate": 0.0006,
+ "loss": 3.615227699279785,
+ "step": 3224
+ },
+ {
+ "epoch": 44.796854521625164,
+ "grad_norm": 0.24538686871528625,
+ "learning_rate": 0.0006,
+ "loss": 3.6387081146240234,
+ "step": 3225
+ },
+ {
+ "epoch": 44.81083442551333,
+ "grad_norm": 0.23291894793510437,
+ "learning_rate": 0.0006,
+ "loss": 3.6245408058166504,
+ "step": 3226
+ },
+ {
+ "epoch": 44.824814329401484,
+ "grad_norm": 0.20715969800949097,
+ "learning_rate": 0.0006,
+ "loss": 3.633620262145996,
+ "step": 3227
+ },
+ {
+ "epoch": 44.83879423328965,
+ "grad_norm": 0.20866821706295013,
+ "learning_rate": 0.0006,
+ "loss": 3.613438129425049,
+ "step": 3228
+ },
+ {
+ "epoch": 44.8527741371778,
+ "grad_norm": 0.2048904299736023,
+ "learning_rate": 0.0006,
+ "loss": 3.668807029724121,
+ "step": 3229
+ },
+ {
+ "epoch": 44.86675404106597,
+ "grad_norm": 0.2073894739151001,
+ "learning_rate": 0.0006,
+ "loss": 3.6000914573669434,
+ "step": 3230
+ },
+ {
+ "epoch": 44.88073394495413,
+ "grad_norm": 0.22017404437065125,
+ "learning_rate": 0.0006,
+ "loss": 3.6024718284606934,
+ "step": 3231
+ },
+ {
+ "epoch": 44.89471384884229,
+ "grad_norm": 0.23971669375896454,
+ "learning_rate": 0.0006,
+ "loss": 3.6339516639709473,
+ "step": 3232
+ },
+ {
+ "epoch": 44.90869375273045,
+ "grad_norm": 0.2258273959159851,
+ "learning_rate": 0.0006,
+ "loss": 3.6480093002319336,
+ "step": 3233
+ },
+ {
+ "epoch": 44.92267365661861,
+ "grad_norm": 0.22079502046108246,
+ "learning_rate": 0.0006,
+ "loss": 3.643446922302246,
+ "step": 3234
+ },
+ {
+ "epoch": 44.93665356050677,
+ "grad_norm": 0.22109337151050568,
+ "learning_rate": 0.0006,
+ "loss": 3.5975499153137207,
+ "step": 3235
+ },
+ {
+ "epoch": 44.95063346439493,
+ "grad_norm": 0.20142309367656708,
+ "learning_rate": 0.0006,
+ "loss": 3.6057305335998535,
+ "step": 3236
+ },
+ {
+ "epoch": 44.964613368283096,
+ "grad_norm": 0.20089569687843323,
+ "learning_rate": 0.0006,
+ "loss": 3.5900750160217285,
+ "step": 3237
+ },
+ {
+ "epoch": 44.97859327217125,
+ "grad_norm": 0.19860075414180756,
+ "learning_rate": 0.0006,
+ "loss": 3.5954184532165527,
+ "step": 3238
+ },
+ {
+ "epoch": 44.992573176059416,
+ "grad_norm": 0.19166013598442078,
+ "learning_rate": 0.0006,
+ "loss": 3.6568803787231445,
+ "step": 3239
+ },
+ {
+ "epoch": 45.0,
+ "grad_norm": 0.22416932880878448,
+ "learning_rate": 0.0006,
+ "loss": 3.6483092308044434,
+ "step": 3240
+ },
+ {
+ "epoch": 45.0,
+ "eval_loss": 3.9821224212646484,
+ "eval_runtime": 44.5415,
+ "eval_samples_per_second": 54.825,
+ "eval_steps_per_second": 3.435,
+ "step": 3240
+ },
+ {
+ "epoch": 45.01397990388816,
+ "grad_norm": 0.2107669562101364,
+ "learning_rate": 0.0006,
+ "loss": 3.5858099460601807,
+ "step": 3241
+ },
+ {
+ "epoch": 45.02795980777632,
+ "grad_norm": 0.20831939578056335,
+ "learning_rate": 0.0006,
+ "loss": 3.5793800354003906,
+ "step": 3242
+ },
+ {
+ "epoch": 45.04193971166448,
+ "grad_norm": 0.2169167846441269,
+ "learning_rate": 0.0006,
+ "loss": 3.601961135864258,
+ "step": 3243
+ },
+ {
+ "epoch": 45.05591961555265,
+ "grad_norm": 0.22451531887054443,
+ "learning_rate": 0.0006,
+ "loss": 3.586371898651123,
+ "step": 3244
+ },
+ {
+ "epoch": 45.0698995194408,
+ "grad_norm": 0.2187003344297409,
+ "learning_rate": 0.0006,
+ "loss": 3.58760929107666,
+ "step": 3245
+ },
+ {
+ "epoch": 45.083879423328966,
+ "grad_norm": 0.22805631160736084,
+ "learning_rate": 0.0006,
+ "loss": 3.554107904434204,
+ "step": 3246
+ },
+ {
+ "epoch": 45.09785932721712,
+ "grad_norm": 0.2573186159133911,
+ "learning_rate": 0.0006,
+ "loss": 3.5815420150756836,
+ "step": 3247
+ },
+ {
+ "epoch": 45.111839231105286,
+ "grad_norm": 0.25940126180648804,
+ "learning_rate": 0.0006,
+ "loss": 3.5754308700561523,
+ "step": 3248
+ },
+ {
+ "epoch": 45.12581913499345,
+ "grad_norm": 0.23834384977817535,
+ "learning_rate": 0.0006,
+ "loss": 3.5857350826263428,
+ "step": 3249
+ },
+ {
+ "epoch": 45.139799038881605,
+ "grad_norm": 0.23342885076999664,
+ "learning_rate": 0.0006,
+ "loss": 3.6116228103637695,
+ "step": 3250
+ },
+ {
+ "epoch": 45.15377894276977,
+ "grad_norm": 0.23284269869327545,
+ "learning_rate": 0.0006,
+ "loss": 3.5778629779815674,
+ "step": 3251
+ },
+ {
+ "epoch": 45.16775884665793,
+ "grad_norm": 0.30510780215263367,
+ "learning_rate": 0.0006,
+ "loss": 3.5888915061950684,
+ "step": 3252
+ },
+ {
+ "epoch": 45.18173875054609,
+ "grad_norm": 0.3462519645690918,
+ "learning_rate": 0.0006,
+ "loss": 3.5955758094787598,
+ "step": 3253
+ },
+ {
+ "epoch": 45.19571865443425,
+ "grad_norm": 0.2795974314212799,
+ "learning_rate": 0.0006,
+ "loss": 3.6222946643829346,
+ "step": 3254
+ },
+ {
+ "epoch": 45.20969855832241,
+ "grad_norm": 0.24624103307724,
+ "learning_rate": 0.0006,
+ "loss": 3.63046932220459,
+ "step": 3255
+ },
+ {
+ "epoch": 45.22367846221057,
+ "grad_norm": 0.23007310926914215,
+ "learning_rate": 0.0006,
+ "loss": 3.652526378631592,
+ "step": 3256
+ },
+ {
+ "epoch": 45.237658366098735,
+ "grad_norm": 0.21325333416461945,
+ "learning_rate": 0.0006,
+ "loss": 3.5960049629211426,
+ "step": 3257
+ },
+ {
+ "epoch": 45.25163826998689,
+ "grad_norm": 0.22697314620018005,
+ "learning_rate": 0.0006,
+ "loss": 3.5723695755004883,
+ "step": 3258
+ },
+ {
+ "epoch": 45.265618173875055,
+ "grad_norm": 0.21900491416454315,
+ "learning_rate": 0.0006,
+ "loss": 3.613572120666504,
+ "step": 3259
+ },
+ {
+ "epoch": 45.27959807776322,
+ "grad_norm": 0.21030694246292114,
+ "learning_rate": 0.0006,
+ "loss": 3.5830235481262207,
+ "step": 3260
+ },
+ {
+ "epoch": 45.293577981651374,
+ "grad_norm": 0.20229968428611755,
+ "learning_rate": 0.0006,
+ "loss": 3.620349884033203,
+ "step": 3261
+ },
+ {
+ "epoch": 45.30755788553954,
+ "grad_norm": 0.21611201763153076,
+ "learning_rate": 0.0006,
+ "loss": 3.5937819480895996,
+ "step": 3262
+ },
+ {
+ "epoch": 45.3215377894277,
+ "grad_norm": 0.21876764297485352,
+ "learning_rate": 0.0006,
+ "loss": 3.6180777549743652,
+ "step": 3263
+ },
+ {
+ "epoch": 45.33551769331586,
+ "grad_norm": 0.200356587767601,
+ "learning_rate": 0.0006,
+ "loss": 3.6140146255493164,
+ "step": 3264
+ },
+ {
+ "epoch": 45.34949759720402,
+ "grad_norm": 0.19151835143566132,
+ "learning_rate": 0.0006,
+ "loss": 3.607077121734619,
+ "step": 3265
+ },
+ {
+ "epoch": 45.36347750109218,
+ "grad_norm": 0.1994648575782776,
+ "learning_rate": 0.0006,
+ "loss": 3.646780490875244,
+ "step": 3266
+ },
+ {
+ "epoch": 45.37745740498034,
+ "grad_norm": 0.23145829141139984,
+ "learning_rate": 0.0006,
+ "loss": 3.624591588973999,
+ "step": 3267
+ },
+ {
+ "epoch": 45.391437308868504,
+ "grad_norm": 0.23608829081058502,
+ "learning_rate": 0.0006,
+ "loss": 3.598904609680176,
+ "step": 3268
+ },
+ {
+ "epoch": 45.40541721275666,
+ "grad_norm": 0.22254547476768494,
+ "learning_rate": 0.0006,
+ "loss": 3.581087827682495,
+ "step": 3269
+ },
+ {
+ "epoch": 45.419397116644824,
+ "grad_norm": 0.21640023589134216,
+ "learning_rate": 0.0006,
+ "loss": 3.5961151123046875,
+ "step": 3270
+ },
+ {
+ "epoch": 45.43337702053299,
+ "grad_norm": 0.2252444475889206,
+ "learning_rate": 0.0006,
+ "loss": 3.590231418609619,
+ "step": 3271
+ },
+ {
+ "epoch": 45.44735692442114,
+ "grad_norm": 0.23785367608070374,
+ "learning_rate": 0.0006,
+ "loss": 3.615896701812744,
+ "step": 3272
+ },
+ {
+ "epoch": 45.46133682830931,
+ "grad_norm": 0.2509191036224365,
+ "learning_rate": 0.0006,
+ "loss": 3.6413722038269043,
+ "step": 3273
+ },
+ {
+ "epoch": 45.47531673219746,
+ "grad_norm": 0.23734210431575775,
+ "learning_rate": 0.0006,
+ "loss": 3.608898639678955,
+ "step": 3274
+ },
+ {
+ "epoch": 45.489296636085626,
+ "grad_norm": 0.19802412390708923,
+ "learning_rate": 0.0006,
+ "loss": 3.5957250595092773,
+ "step": 3275
+ },
+ {
+ "epoch": 45.50327653997379,
+ "grad_norm": 0.20621423423290253,
+ "learning_rate": 0.0006,
+ "loss": 3.607945442199707,
+ "step": 3276
+ },
+ {
+ "epoch": 45.517256443861946,
+ "grad_norm": 0.225870743393898,
+ "learning_rate": 0.0006,
+ "loss": 3.641449451446533,
+ "step": 3277
+ },
+ {
+ "epoch": 45.53123634775011,
+ "grad_norm": 0.21482397615909576,
+ "learning_rate": 0.0006,
+ "loss": 3.61629581451416,
+ "step": 3278
+ },
+ {
+ "epoch": 45.54521625163827,
+ "grad_norm": 0.21159376204013824,
+ "learning_rate": 0.0006,
+ "loss": 3.5977988243103027,
+ "step": 3279
+ },
+ {
+ "epoch": 45.55919615552643,
+ "grad_norm": 0.2031678408384323,
+ "learning_rate": 0.0006,
+ "loss": 3.629343032836914,
+ "step": 3280
+ },
+ {
+ "epoch": 45.57317605941459,
+ "grad_norm": 0.1827101707458496,
+ "learning_rate": 0.0006,
+ "loss": 3.6161365509033203,
+ "step": 3281
+ },
+ {
+ "epoch": 45.58715596330275,
+ "grad_norm": 0.21884584426879883,
+ "learning_rate": 0.0006,
+ "loss": 3.6131834983825684,
+ "step": 3282
+ },
+ {
+ "epoch": 45.60113586719091,
+ "grad_norm": 0.21764980256557465,
+ "learning_rate": 0.0006,
+ "loss": 3.612516164779663,
+ "step": 3283
+ },
+ {
+ "epoch": 45.615115771079076,
+ "grad_norm": 0.22257080674171448,
+ "learning_rate": 0.0006,
+ "loss": 3.63425874710083,
+ "step": 3284
+ },
+ {
+ "epoch": 45.62909567496723,
+ "grad_norm": 0.2419128566980362,
+ "learning_rate": 0.0006,
+ "loss": 3.602997064590454,
+ "step": 3285
+ },
+ {
+ "epoch": 45.643075578855395,
+ "grad_norm": 0.20856884121894836,
+ "learning_rate": 0.0006,
+ "loss": 3.597352981567383,
+ "step": 3286
+ },
+ {
+ "epoch": 45.65705548274356,
+ "grad_norm": 0.20298589766025543,
+ "learning_rate": 0.0006,
+ "loss": 3.5961315631866455,
+ "step": 3287
+ },
+ {
+ "epoch": 45.671035386631715,
+ "grad_norm": 0.19006133079528809,
+ "learning_rate": 0.0006,
+ "loss": 3.6314568519592285,
+ "step": 3288
+ },
+ {
+ "epoch": 45.68501529051988,
+ "grad_norm": 0.20886142551898956,
+ "learning_rate": 0.0006,
+ "loss": 3.6200413703918457,
+ "step": 3289
+ },
+ {
+ "epoch": 45.69899519440804,
+ "grad_norm": 0.18085862696170807,
+ "learning_rate": 0.0006,
+ "loss": 3.6273961067199707,
+ "step": 3290
+ },
+ {
+ "epoch": 45.7129750982962,
+ "grad_norm": 0.18651945888996124,
+ "learning_rate": 0.0006,
+ "loss": 3.6490976810455322,
+ "step": 3291
+ },
+ {
+ "epoch": 45.72695500218436,
+ "grad_norm": 0.19668170809745789,
+ "learning_rate": 0.0006,
+ "loss": 3.610409736633301,
+ "step": 3292
+ },
+ {
+ "epoch": 45.74093490607252,
+ "grad_norm": 0.19865764677524567,
+ "learning_rate": 0.0006,
+ "loss": 3.614025115966797,
+ "step": 3293
+ },
+ {
+ "epoch": 45.75491480996068,
+ "grad_norm": 0.20814085006713867,
+ "learning_rate": 0.0006,
+ "loss": 3.6220510005950928,
+ "step": 3294
+ },
+ {
+ "epoch": 45.768894713848844,
+ "grad_norm": 0.20996463298797607,
+ "learning_rate": 0.0006,
+ "loss": 3.5754218101501465,
+ "step": 3295
+ },
+ {
+ "epoch": 45.782874617737,
+ "grad_norm": 0.1987130492925644,
+ "learning_rate": 0.0006,
+ "loss": 3.614746570587158,
+ "step": 3296
+ },
+ {
+ "epoch": 45.796854521625164,
+ "grad_norm": 0.23048028349876404,
+ "learning_rate": 0.0006,
+ "loss": 3.602620840072632,
+ "step": 3297
+ },
+ {
+ "epoch": 45.81083442551333,
+ "grad_norm": 0.21877387166023254,
+ "learning_rate": 0.0006,
+ "loss": 3.6294198036193848,
+ "step": 3298
+ },
+ {
+ "epoch": 45.824814329401484,
+ "grad_norm": 0.20007763803005219,
+ "learning_rate": 0.0006,
+ "loss": 3.630868434906006,
+ "step": 3299
+ },
+ {
+ "epoch": 45.83879423328965,
+ "grad_norm": 0.200496107339859,
+ "learning_rate": 0.0006,
+ "loss": 3.5972986221313477,
+ "step": 3300
+ },
+ {
+ "epoch": 45.8527741371778,
+ "grad_norm": 0.20494480431079865,
+ "learning_rate": 0.0006,
+ "loss": 3.61934494972229,
+ "step": 3301
+ },
+ {
+ "epoch": 45.86675404106597,
+ "grad_norm": 0.21374984085559845,
+ "learning_rate": 0.0006,
+ "loss": 3.6236257553100586,
+ "step": 3302
+ },
+ {
+ "epoch": 45.88073394495413,
+ "grad_norm": 0.22020408511161804,
+ "learning_rate": 0.0006,
+ "loss": 3.6030755043029785,
+ "step": 3303
+ },
+ {
+ "epoch": 45.89471384884229,
+ "grad_norm": 0.2239987701177597,
+ "learning_rate": 0.0006,
+ "loss": 3.6778974533081055,
+ "step": 3304
+ },
+ {
+ "epoch": 45.90869375273045,
+ "grad_norm": 0.22156383097171783,
+ "learning_rate": 0.0006,
+ "loss": 3.6186561584472656,
+ "step": 3305
+ },
+ {
+ "epoch": 45.92267365661861,
+ "grad_norm": 0.2264711856842041,
+ "learning_rate": 0.0006,
+ "loss": 3.6349918842315674,
+ "step": 3306
+ },
+ {
+ "epoch": 45.93665356050677,
+ "grad_norm": 0.2287975549697876,
+ "learning_rate": 0.0006,
+ "loss": 3.600268840789795,
+ "step": 3307
+ },
+ {
+ "epoch": 45.95063346439493,
+ "grad_norm": 0.22459761798381805,
+ "learning_rate": 0.0006,
+ "loss": 3.6029114723205566,
+ "step": 3308
+ },
+ {
+ "epoch": 45.964613368283096,
+ "grad_norm": 0.2430959790945053,
+ "learning_rate": 0.0006,
+ "loss": 3.6781656742095947,
+ "step": 3309
+ },
+ {
+ "epoch": 45.97859327217125,
+ "grad_norm": 0.2718662619590759,
+ "learning_rate": 0.0006,
+ "loss": 3.606778144836426,
+ "step": 3310
+ },
+ {
+ "epoch": 45.992573176059416,
+ "grad_norm": 0.27250170707702637,
+ "learning_rate": 0.0006,
+ "loss": 3.6142611503601074,
+ "step": 3311
+ },
+ {
+ "epoch": 46.0,
+ "grad_norm": 0.26663821935653687,
+ "learning_rate": 0.0006,
+ "loss": 3.6367483139038086,
+ "step": 3312
+ },
+ {
+ "epoch": 46.0,
+ "eval_loss": 3.9835095405578613,
+ "eval_runtime": 44.6504,
+ "eval_samples_per_second": 54.692,
+ "eval_steps_per_second": 3.427,
+ "step": 3312
+ },
+ {
+ "epoch": 46.01397990388816,
+ "grad_norm": 0.22670713067054749,
+ "learning_rate": 0.0006,
+ "loss": 3.5553648471832275,
+ "step": 3313
+ },
+ {
+ "epoch": 46.02795980777632,
+ "grad_norm": 0.2759886384010315,
+ "learning_rate": 0.0006,
+ "loss": 3.595186948776245,
+ "step": 3314
+ },
+ {
+ "epoch": 46.04193971166448,
+ "grad_norm": 0.31634145975112915,
+ "learning_rate": 0.0006,
+ "loss": 3.5805907249450684,
+ "step": 3315
+ },
+ {
+ "epoch": 46.05591961555265,
+ "grad_norm": 0.3097986578941345,
+ "learning_rate": 0.0006,
+ "loss": 3.593407154083252,
+ "step": 3316
+ },
+ {
+ "epoch": 46.0698995194408,
+ "grad_norm": 0.24616138637065887,
+ "learning_rate": 0.0006,
+ "loss": 3.606736898422241,
+ "step": 3317
+ },
+ {
+ "epoch": 46.083879423328966,
+ "grad_norm": 0.22210408747196198,
+ "learning_rate": 0.0006,
+ "loss": 3.59546160697937,
+ "step": 3318
+ },
+ {
+ "epoch": 46.09785932721712,
+ "grad_norm": 0.2429778128862381,
+ "learning_rate": 0.0006,
+ "loss": 3.5900321006774902,
+ "step": 3319
+ },
+ {
+ "epoch": 46.111839231105286,
+ "grad_norm": 0.22875761985778809,
+ "learning_rate": 0.0006,
+ "loss": 3.5793521404266357,
+ "step": 3320
+ },
+ {
+ "epoch": 46.12581913499345,
+ "grad_norm": 0.21508760750293732,
+ "learning_rate": 0.0006,
+ "loss": 3.5462498664855957,
+ "step": 3321
+ },
+ {
+ "epoch": 46.139799038881605,
+ "grad_norm": 0.23590944707393646,
+ "learning_rate": 0.0006,
+ "loss": 3.6247925758361816,
+ "step": 3322
+ },
+ {
+ "epoch": 46.15377894276977,
+ "grad_norm": 0.22288036346435547,
+ "learning_rate": 0.0006,
+ "loss": 3.6063995361328125,
+ "step": 3323
+ },
+ {
+ "epoch": 46.16775884665793,
+ "grad_norm": 0.20460885763168335,
+ "learning_rate": 0.0006,
+ "loss": 3.5744826793670654,
+ "step": 3324
+ },
+ {
+ "epoch": 46.18173875054609,
+ "grad_norm": 0.20172059535980225,
+ "learning_rate": 0.0006,
+ "loss": 3.5827057361602783,
+ "step": 3325
+ },
+ {
+ "epoch": 46.19571865443425,
+ "grad_norm": 0.2268448770046234,
+ "learning_rate": 0.0006,
+ "loss": 3.5801379680633545,
+ "step": 3326
+ },
+ {
+ "epoch": 46.20969855832241,
+ "grad_norm": 0.2244444191455841,
+ "learning_rate": 0.0006,
+ "loss": 3.5790224075317383,
+ "step": 3327
+ },
+ {
+ "epoch": 46.22367846221057,
+ "grad_norm": 0.20954380929470062,
+ "learning_rate": 0.0006,
+ "loss": 3.5979342460632324,
+ "step": 3328
+ },
+ {
+ "epoch": 46.237658366098735,
+ "grad_norm": 0.21395887434482574,
+ "learning_rate": 0.0006,
+ "loss": 3.6015186309814453,
+ "step": 3329
+ },
+ {
+ "epoch": 46.25163826998689,
+ "grad_norm": 0.23200181126594543,
+ "learning_rate": 0.0006,
+ "loss": 3.5904979705810547,
+ "step": 3330
+ },
+ {
+ "epoch": 46.265618173875055,
+ "grad_norm": 0.20558731257915497,
+ "learning_rate": 0.0006,
+ "loss": 3.5745811462402344,
+ "step": 3331
+ },
+ {
+ "epoch": 46.27959807776322,
+ "grad_norm": 0.1973227560520172,
+ "learning_rate": 0.0006,
+ "loss": 3.588560104370117,
+ "step": 3332
+ },
+ {
+ "epoch": 46.293577981651374,
+ "grad_norm": 0.2137945592403412,
+ "learning_rate": 0.0006,
+ "loss": 3.606064796447754,
+ "step": 3333
+ },
+ {
+ "epoch": 46.30755788553954,
+ "grad_norm": 0.2082151472568512,
+ "learning_rate": 0.0006,
+ "loss": 3.569392442703247,
+ "step": 3334
+ },
+ {
+ "epoch": 46.3215377894277,
+ "grad_norm": 0.2151029258966446,
+ "learning_rate": 0.0006,
+ "loss": 3.6016604900360107,
+ "step": 3335
+ },
+ {
+ "epoch": 46.33551769331586,
+ "grad_norm": 0.2256474643945694,
+ "learning_rate": 0.0006,
+ "loss": 3.571319580078125,
+ "step": 3336
+ },
+ {
+ "epoch": 46.34949759720402,
+ "grad_norm": 0.21454207599163055,
+ "learning_rate": 0.0006,
+ "loss": 3.6028685569763184,
+ "step": 3337
+ },
+ {
+ "epoch": 46.36347750109218,
+ "grad_norm": 0.21864144504070282,
+ "learning_rate": 0.0006,
+ "loss": 3.6146860122680664,
+ "step": 3338
+ },
+ {
+ "epoch": 46.37745740498034,
+ "grad_norm": 0.24512453377246857,
+ "learning_rate": 0.0006,
+ "loss": 3.614696502685547,
+ "step": 3339
+ },
+ {
+ "epoch": 46.391437308868504,
+ "grad_norm": 0.26355695724487305,
+ "learning_rate": 0.0006,
+ "loss": 3.6124234199523926,
+ "step": 3340
+ },
+ {
+ "epoch": 46.40541721275666,
+ "grad_norm": 0.2778678834438324,
+ "learning_rate": 0.0006,
+ "loss": 3.6075634956359863,
+ "step": 3341
+ },
+ {
+ "epoch": 46.419397116644824,
+ "grad_norm": 0.2626822292804718,
+ "learning_rate": 0.0006,
+ "loss": 3.59267520904541,
+ "step": 3342
+ },
+ {
+ "epoch": 46.43337702053299,
+ "grad_norm": 0.2211887091398239,
+ "learning_rate": 0.0006,
+ "loss": 3.606135606765747,
+ "step": 3343
+ },
+ {
+ "epoch": 46.44735692442114,
+ "grad_norm": 0.20117639005184174,
+ "learning_rate": 0.0006,
+ "loss": 3.566512107849121,
+ "step": 3344
+ },
+ {
+ "epoch": 46.46133682830931,
+ "grad_norm": 0.20202599465847015,
+ "learning_rate": 0.0006,
+ "loss": 3.603398561477661,
+ "step": 3345
+ },
+ {
+ "epoch": 46.47531673219746,
+ "grad_norm": 0.22238481044769287,
+ "learning_rate": 0.0006,
+ "loss": 3.599888324737549,
+ "step": 3346
+ },
+ {
+ "epoch": 46.489296636085626,
+ "grad_norm": 0.23298178613185883,
+ "learning_rate": 0.0006,
+ "loss": 3.6135406494140625,
+ "step": 3347
+ },
+ {
+ "epoch": 46.50327653997379,
+ "grad_norm": 0.21998152136802673,
+ "learning_rate": 0.0006,
+ "loss": 3.6022939682006836,
+ "step": 3348
+ },
+ {
+ "epoch": 46.517256443861946,
+ "grad_norm": 0.22595210373401642,
+ "learning_rate": 0.0006,
+ "loss": 3.605905532836914,
+ "step": 3349
+ },
+ {
+ "epoch": 46.53123634775011,
+ "grad_norm": 0.23549678921699524,
+ "learning_rate": 0.0006,
+ "loss": 3.606264591217041,
+ "step": 3350
+ },
+ {
+ "epoch": 46.54521625163827,
+ "grad_norm": 0.2075573205947876,
+ "learning_rate": 0.0006,
+ "loss": 3.580575942993164,
+ "step": 3351
+ },
+ {
+ "epoch": 46.55919615552643,
+ "grad_norm": 0.19052642583847046,
+ "learning_rate": 0.0006,
+ "loss": 3.618326187133789,
+ "step": 3352
+ },
+ {
+ "epoch": 46.57317605941459,
+ "grad_norm": 0.20372900366783142,
+ "learning_rate": 0.0006,
+ "loss": 3.5817952156066895,
+ "step": 3353
+ },
+ {
+ "epoch": 46.58715596330275,
+ "grad_norm": 0.20024648308753967,
+ "learning_rate": 0.0006,
+ "loss": 3.6128273010253906,
+ "step": 3354
+ },
+ {
+ "epoch": 46.60113586719091,
+ "grad_norm": 0.20892181992530823,
+ "learning_rate": 0.0006,
+ "loss": 3.6173012256622314,
+ "step": 3355
+ },
+ {
+ "epoch": 46.615115771079076,
+ "grad_norm": 0.20254571735858917,
+ "learning_rate": 0.0006,
+ "loss": 3.5924699306488037,
+ "step": 3356
+ },
+ {
+ "epoch": 46.62909567496723,
+ "grad_norm": 0.20290599763393402,
+ "learning_rate": 0.0006,
+ "loss": 3.6134514808654785,
+ "step": 3357
+ },
+ {
+ "epoch": 46.643075578855395,
+ "grad_norm": 0.23314513266086578,
+ "learning_rate": 0.0006,
+ "loss": 3.604102611541748,
+ "step": 3358
+ },
+ {
+ "epoch": 46.65705548274356,
+ "grad_norm": 0.2352486401796341,
+ "learning_rate": 0.0006,
+ "loss": 3.6210808753967285,
+ "step": 3359
+ },
+ {
+ "epoch": 46.671035386631715,
+ "grad_norm": 0.2289503663778305,
+ "learning_rate": 0.0006,
+ "loss": 3.596968650817871,
+ "step": 3360
+ },
+ {
+ "epoch": 46.68501529051988,
+ "grad_norm": 0.19971057772636414,
+ "learning_rate": 0.0006,
+ "loss": 3.5973198413848877,
+ "step": 3361
+ },
+ {
+ "epoch": 46.69899519440804,
+ "grad_norm": 0.21000619232654572,
+ "learning_rate": 0.0006,
+ "loss": 3.607048511505127,
+ "step": 3362
+ },
+ {
+ "epoch": 46.7129750982962,
+ "grad_norm": 0.22295686602592468,
+ "learning_rate": 0.0006,
+ "loss": 3.6323728561401367,
+ "step": 3363
+ },
+ {
+ "epoch": 46.72695500218436,
+ "grad_norm": 0.21939052641391754,
+ "learning_rate": 0.0006,
+ "loss": 3.6073317527770996,
+ "step": 3364
+ },
+ {
+ "epoch": 46.74093490607252,
+ "grad_norm": 0.2192271202802658,
+ "learning_rate": 0.0006,
+ "loss": 3.6396851539611816,
+ "step": 3365
+ },
+ {
+ "epoch": 46.75491480996068,
+ "grad_norm": 0.20871607959270477,
+ "learning_rate": 0.0006,
+ "loss": 3.613509178161621,
+ "step": 3366
+ },
+ {
+ "epoch": 46.768894713848844,
+ "grad_norm": 0.1837828904390335,
+ "learning_rate": 0.0006,
+ "loss": 3.604039192199707,
+ "step": 3367
+ },
+ {
+ "epoch": 46.782874617737,
+ "grad_norm": 0.1904219537973404,
+ "learning_rate": 0.0006,
+ "loss": 3.6065895557403564,
+ "step": 3368
+ },
+ {
+ "epoch": 46.796854521625164,
+ "grad_norm": 0.19873572885990143,
+ "learning_rate": 0.0006,
+ "loss": 3.5927226543426514,
+ "step": 3369
+ },
+ {
+ "epoch": 46.81083442551333,
+ "grad_norm": 0.18319591879844666,
+ "learning_rate": 0.0006,
+ "loss": 3.6114919185638428,
+ "step": 3370
+ },
+ {
+ "epoch": 46.824814329401484,
+ "grad_norm": 0.19832435250282288,
+ "learning_rate": 0.0006,
+ "loss": 3.613637924194336,
+ "step": 3371
+ },
+ {
+ "epoch": 46.83879423328965,
+ "grad_norm": 0.21506333351135254,
+ "learning_rate": 0.0006,
+ "loss": 3.6116209030151367,
+ "step": 3372
+ },
+ {
+ "epoch": 46.8527741371778,
+ "grad_norm": 0.20374484360218048,
+ "learning_rate": 0.0006,
+ "loss": 3.5923004150390625,
+ "step": 3373
+ },
+ {
+ "epoch": 46.86675404106597,
+ "grad_norm": 0.19743360579013824,
+ "learning_rate": 0.0006,
+ "loss": 3.599381685256958,
+ "step": 3374
+ },
+ {
+ "epoch": 46.88073394495413,
+ "grad_norm": 0.20996616780757904,
+ "learning_rate": 0.0006,
+ "loss": 3.624969959259033,
+ "step": 3375
+ },
+ {
+ "epoch": 46.89471384884229,
+ "grad_norm": 0.22336791455745697,
+ "learning_rate": 0.0006,
+ "loss": 3.6152467727661133,
+ "step": 3376
+ },
+ {
+ "epoch": 46.90869375273045,
+ "grad_norm": 0.2337532341480255,
+ "learning_rate": 0.0006,
+ "loss": 3.6198863983154297,
+ "step": 3377
+ },
+ {
+ "epoch": 46.92267365661861,
+ "grad_norm": 0.23823462426662445,
+ "learning_rate": 0.0006,
+ "loss": 3.6411237716674805,
+ "step": 3378
+ },
+ {
+ "epoch": 46.93665356050677,
+ "grad_norm": 0.2521338164806366,
+ "learning_rate": 0.0006,
+ "loss": 3.621544122695923,
+ "step": 3379
+ },
+ {
+ "epoch": 46.95063346439493,
+ "grad_norm": 0.253682941198349,
+ "learning_rate": 0.0006,
+ "loss": 3.6570887565612793,
+ "step": 3380
+ },
+ {
+ "epoch": 46.964613368283096,
+ "grad_norm": 0.23392300307750702,
+ "learning_rate": 0.0006,
+ "loss": 3.669538974761963,
+ "step": 3381
+ },
+ {
+ "epoch": 46.97859327217125,
+ "grad_norm": 0.2154092937707901,
+ "learning_rate": 0.0006,
+ "loss": 3.6184825897216797,
+ "step": 3382
+ },
+ {
+ "epoch": 46.992573176059416,
+ "grad_norm": 0.1909833699464798,
+ "learning_rate": 0.0006,
+ "loss": 3.647658348083496,
+ "step": 3383
+ },
+ {
+ "epoch": 47.0,
+ "grad_norm": 0.2226407378911972,
+ "learning_rate": 0.0006,
+ "loss": 3.6413815021514893,
+ "step": 3384
+ },
+ {
+ "epoch": 47.0,
+ "eval_loss": 3.98313570022583,
+ "eval_runtime": 44.7152,
+ "eval_samples_per_second": 54.612,
+ "eval_steps_per_second": 3.422,
+ "step": 3384
+ },
+ {
+ "epoch": 47.01397990388816,
+ "grad_norm": 0.20830968022346497,
+ "learning_rate": 0.0006,
+ "loss": 3.5652623176574707,
+ "step": 3385
+ },
+ {
+ "epoch": 47.02795980777632,
+ "grad_norm": 0.18953651189804077,
+ "learning_rate": 0.0006,
+ "loss": 3.570180654525757,
+ "step": 3386
+ },
+ {
+ "epoch": 47.04193971166448,
+ "grad_norm": 0.20167700946331024,
+ "learning_rate": 0.0006,
+ "loss": 3.5623056888580322,
+ "step": 3387
+ },
+ {
+ "epoch": 47.05591961555265,
+ "grad_norm": 0.21554343402385712,
+ "learning_rate": 0.0006,
+ "loss": 3.549492835998535,
+ "step": 3388
+ },
+ {
+ "epoch": 47.0698995194408,
+ "grad_norm": 0.2232149988412857,
+ "learning_rate": 0.0006,
+ "loss": 3.584181785583496,
+ "step": 3389
+ },
+ {
+ "epoch": 47.083879423328966,
+ "grad_norm": 0.23489049077033997,
+ "learning_rate": 0.0006,
+ "loss": 3.581028461456299,
+ "step": 3390
+ },
+ {
+ "epoch": 47.09785932721712,
+ "grad_norm": 0.22486020624637604,
+ "learning_rate": 0.0006,
+ "loss": 3.600348949432373,
+ "step": 3391
+ },
+ {
+ "epoch": 47.111839231105286,
+ "grad_norm": 0.22932346165180206,
+ "learning_rate": 0.0006,
+ "loss": 3.5600457191467285,
+ "step": 3392
+ },
+ {
+ "epoch": 47.12581913499345,
+ "grad_norm": 0.2179419994354248,
+ "learning_rate": 0.0006,
+ "loss": 3.560136079788208,
+ "step": 3393
+ },
+ {
+ "epoch": 47.139799038881605,
+ "grad_norm": 0.2438054382801056,
+ "learning_rate": 0.0006,
+ "loss": 3.5955698490142822,
+ "step": 3394
+ },
+ {
+ "epoch": 47.15377894276977,
+ "grad_norm": 0.2652001976966858,
+ "learning_rate": 0.0006,
+ "loss": 3.5942912101745605,
+ "step": 3395
+ },
+ {
+ "epoch": 47.16775884665793,
+ "grad_norm": 0.270924836397171,
+ "learning_rate": 0.0006,
+ "loss": 3.5733351707458496,
+ "step": 3396
+ },
+ {
+ "epoch": 47.18173875054609,
+ "grad_norm": 0.28365132212638855,
+ "learning_rate": 0.0006,
+ "loss": 3.6042075157165527,
+ "step": 3397
+ },
+ {
+ "epoch": 47.19571865443425,
+ "grad_norm": 0.29530975222587585,
+ "learning_rate": 0.0006,
+ "loss": 3.588935375213623,
+ "step": 3398
+ },
+ {
+ "epoch": 47.20969855832241,
+ "grad_norm": 0.2658918797969818,
+ "learning_rate": 0.0006,
+ "loss": 3.5944671630859375,
+ "step": 3399
+ },
+ {
+ "epoch": 47.22367846221057,
+ "grad_norm": 0.24076500535011292,
+ "learning_rate": 0.0006,
+ "loss": 3.5853185653686523,
+ "step": 3400
+ },
+ {
+ "epoch": 47.237658366098735,
+ "grad_norm": 0.23032112419605255,
+ "learning_rate": 0.0006,
+ "loss": 3.620483875274658,
+ "step": 3401
+ },
+ {
+ "epoch": 47.25163826998689,
+ "grad_norm": 0.23124775290489197,
+ "learning_rate": 0.0006,
+ "loss": 3.6032004356384277,
+ "step": 3402
+ },
+ {
+ "epoch": 47.265618173875055,
+ "grad_norm": 0.21960225701332092,
+ "learning_rate": 0.0006,
+ "loss": 3.6079649925231934,
+ "step": 3403
+ },
+ {
+ "epoch": 47.27959807776322,
+ "grad_norm": 0.236652672290802,
+ "learning_rate": 0.0006,
+ "loss": 3.582645893096924,
+ "step": 3404
+ },
+ {
+ "epoch": 47.293577981651374,
+ "grad_norm": 0.2600267231464386,
+ "learning_rate": 0.0006,
+ "loss": 3.6067757606506348,
+ "step": 3405
+ },
+ {
+ "epoch": 47.30755788553954,
+ "grad_norm": 0.2337152659893036,
+ "learning_rate": 0.0006,
+ "loss": 3.5912275314331055,
+ "step": 3406
+ },
+ {
+ "epoch": 47.3215377894277,
+ "grad_norm": 0.21887873113155365,
+ "learning_rate": 0.0006,
+ "loss": 3.6008896827697754,
+ "step": 3407
+ },
+ {
+ "epoch": 47.33551769331586,
+ "grad_norm": 0.20265911519527435,
+ "learning_rate": 0.0006,
+ "loss": 3.5820152759552,
+ "step": 3408
+ },
+ {
+ "epoch": 47.34949759720402,
+ "grad_norm": 0.2005501389503479,
+ "learning_rate": 0.0006,
+ "loss": 3.604556083679199,
+ "step": 3409
+ },
+ {
+ "epoch": 47.36347750109218,
+ "grad_norm": 0.20682275295257568,
+ "learning_rate": 0.0006,
+ "loss": 3.584531307220459,
+ "step": 3410
+ },
+ {
+ "epoch": 47.37745740498034,
+ "grad_norm": 0.23283354938030243,
+ "learning_rate": 0.0006,
+ "loss": 3.59186053276062,
+ "step": 3411
+ },
+ {
+ "epoch": 47.391437308868504,
+ "grad_norm": 0.23033356666564941,
+ "learning_rate": 0.0006,
+ "loss": 3.5944037437438965,
+ "step": 3412
+ },
+ {
+ "epoch": 47.40541721275666,
+ "grad_norm": 0.21714402735233307,
+ "learning_rate": 0.0006,
+ "loss": 3.5834851264953613,
+ "step": 3413
+ },
+ {
+ "epoch": 47.419397116644824,
+ "grad_norm": 0.2138672024011612,
+ "learning_rate": 0.0006,
+ "loss": 3.6313700675964355,
+ "step": 3414
+ },
+ {
+ "epoch": 47.43337702053299,
+ "grad_norm": 0.23200160264968872,
+ "learning_rate": 0.0006,
+ "loss": 3.6112399101257324,
+ "step": 3415
+ },
+ {
+ "epoch": 47.44735692442114,
+ "grad_norm": 0.2632092833518982,
+ "learning_rate": 0.0006,
+ "loss": 3.6099038124084473,
+ "step": 3416
+ },
+ {
+ "epoch": 47.46133682830931,
+ "grad_norm": 0.23115520179271698,
+ "learning_rate": 0.0006,
+ "loss": 3.6060497760772705,
+ "step": 3417
+ },
+ {
+ "epoch": 47.47531673219746,
+ "grad_norm": 0.2596223056316376,
+ "learning_rate": 0.0006,
+ "loss": 3.5749685764312744,
+ "step": 3418
+ },
+ {
+ "epoch": 47.489296636085626,
+ "grad_norm": 0.27893415093421936,
+ "learning_rate": 0.0006,
+ "loss": 3.584045886993408,
+ "step": 3419
+ },
+ {
+ "epoch": 47.50327653997379,
+ "grad_norm": 0.23112469911575317,
+ "learning_rate": 0.0006,
+ "loss": 3.595407485961914,
+ "step": 3420
+ },
+ {
+ "epoch": 47.517256443861946,
+ "grad_norm": 0.23562486469745636,
+ "learning_rate": 0.0006,
+ "loss": 3.5657241344451904,
+ "step": 3421
+ },
+ {
+ "epoch": 47.53123634775011,
+ "grad_norm": 0.23366105556488037,
+ "learning_rate": 0.0006,
+ "loss": 3.624885082244873,
+ "step": 3422
+ },
+ {
+ "epoch": 47.54521625163827,
+ "grad_norm": 0.24383248388767242,
+ "learning_rate": 0.0006,
+ "loss": 3.638352394104004,
+ "step": 3423
+ },
+ {
+ "epoch": 47.55919615552643,
+ "grad_norm": 0.26388120651245117,
+ "learning_rate": 0.0006,
+ "loss": 3.614579200744629,
+ "step": 3424
+ },
+ {
+ "epoch": 47.57317605941459,
+ "grad_norm": 0.23676545917987823,
+ "learning_rate": 0.0006,
+ "loss": 3.609004259109497,
+ "step": 3425
+ },
+ {
+ "epoch": 47.58715596330275,
+ "grad_norm": 0.227967768907547,
+ "learning_rate": 0.0006,
+ "loss": 3.626171827316284,
+ "step": 3426
+ },
+ {
+ "epoch": 47.60113586719091,
+ "grad_norm": 0.23786529898643494,
+ "learning_rate": 0.0006,
+ "loss": 3.6205172538757324,
+ "step": 3427
+ },
+ {
+ "epoch": 47.615115771079076,
+ "grad_norm": 0.2599100172519684,
+ "learning_rate": 0.0006,
+ "loss": 3.6178271770477295,
+ "step": 3428
+ },
+ {
+ "epoch": 47.62909567496723,
+ "grad_norm": 0.2591858208179474,
+ "learning_rate": 0.0006,
+ "loss": 3.600297451019287,
+ "step": 3429
+ },
+ {
+ "epoch": 47.643075578855395,
+ "grad_norm": 0.2234215885400772,
+ "learning_rate": 0.0006,
+ "loss": 3.623141288757324,
+ "step": 3430
+ },
+ {
+ "epoch": 47.65705548274356,
+ "grad_norm": 0.23395098745822906,
+ "learning_rate": 0.0006,
+ "loss": 3.6243159770965576,
+ "step": 3431
+ },
+ {
+ "epoch": 47.671035386631715,
+ "grad_norm": 0.25706854462623596,
+ "learning_rate": 0.0006,
+ "loss": 3.5933618545532227,
+ "step": 3432
+ },
+ {
+ "epoch": 47.68501529051988,
+ "grad_norm": 0.22468037903308868,
+ "learning_rate": 0.0006,
+ "loss": 3.6048693656921387,
+ "step": 3433
+ },
+ {
+ "epoch": 47.69899519440804,
+ "grad_norm": 0.22432644665241241,
+ "learning_rate": 0.0006,
+ "loss": 3.604891777038574,
+ "step": 3434
+ },
+ {
+ "epoch": 47.7129750982962,
+ "grad_norm": 0.2278960943222046,
+ "learning_rate": 0.0006,
+ "loss": 3.610567092895508,
+ "step": 3435
+ },
+ {
+ "epoch": 47.72695500218436,
+ "grad_norm": 0.20652735233306885,
+ "learning_rate": 0.0006,
+ "loss": 3.60245418548584,
+ "step": 3436
+ },
+ {
+ "epoch": 47.74093490607252,
+ "grad_norm": 0.2141297310590744,
+ "learning_rate": 0.0006,
+ "loss": 3.5712027549743652,
+ "step": 3437
+ },
+ {
+ "epoch": 47.75491480996068,
+ "grad_norm": 0.23282566666603088,
+ "learning_rate": 0.0006,
+ "loss": 3.573568820953369,
+ "step": 3438
+ },
+ {
+ "epoch": 47.768894713848844,
+ "grad_norm": 0.21718674898147583,
+ "learning_rate": 0.0006,
+ "loss": 3.602047920227051,
+ "step": 3439
+ },
+ {
+ "epoch": 47.782874617737,
+ "grad_norm": 0.19592095911502838,
+ "learning_rate": 0.0006,
+ "loss": 3.6046957969665527,
+ "step": 3440
+ },
+ {
+ "epoch": 47.796854521625164,
+ "grad_norm": 0.21548260748386383,
+ "learning_rate": 0.0006,
+ "loss": 3.5808444023132324,
+ "step": 3441
+ },
+ {
+ "epoch": 47.81083442551333,
+ "grad_norm": 0.21945662796497345,
+ "learning_rate": 0.0006,
+ "loss": 3.6044554710388184,
+ "step": 3442
+ },
+ {
+ "epoch": 47.824814329401484,
+ "grad_norm": 0.20777440071105957,
+ "learning_rate": 0.0006,
+ "loss": 3.5991361141204834,
+ "step": 3443
+ },
+ {
+ "epoch": 47.83879423328965,
+ "grad_norm": 0.21566642820835114,
+ "learning_rate": 0.0006,
+ "loss": 3.6272850036621094,
+ "step": 3444
+ },
+ {
+ "epoch": 47.8527741371778,
+ "grad_norm": 0.22365771234035492,
+ "learning_rate": 0.0006,
+ "loss": 3.6323323249816895,
+ "step": 3445
+ },
+ {
+ "epoch": 47.86675404106597,
+ "grad_norm": 0.20193088054656982,
+ "learning_rate": 0.0006,
+ "loss": 3.5938191413879395,
+ "step": 3446
+ },
+ {
+ "epoch": 47.88073394495413,
+ "grad_norm": 0.20968061685562134,
+ "learning_rate": 0.0006,
+ "loss": 3.616640329360962,
+ "step": 3447
+ },
+ {
+ "epoch": 47.89471384884229,
+ "grad_norm": 0.20275580883026123,
+ "learning_rate": 0.0006,
+ "loss": 3.5769052505493164,
+ "step": 3448
+ },
+ {
+ "epoch": 47.90869375273045,
+ "grad_norm": 0.237605020403862,
+ "learning_rate": 0.0006,
+ "loss": 3.6221203804016113,
+ "step": 3449
+ },
+ {
+ "epoch": 47.92267365661861,
+ "grad_norm": 0.2820972502231598,
+ "learning_rate": 0.0006,
+ "loss": 3.5977487564086914,
+ "step": 3450
+ },
+ {
+ "epoch": 47.93665356050677,
+ "grad_norm": 0.23722891509532928,
+ "learning_rate": 0.0006,
+ "loss": 3.5963053703308105,
+ "step": 3451
+ },
+ {
+ "epoch": 47.95063346439493,
+ "grad_norm": 0.21471276879310608,
+ "learning_rate": 0.0006,
+ "loss": 3.6234917640686035,
+ "step": 3452
+ },
+ {
+ "epoch": 47.964613368283096,
+ "grad_norm": 0.2139028012752533,
+ "learning_rate": 0.0006,
+ "loss": 3.640500545501709,
+ "step": 3453
+ },
+ {
+ "epoch": 47.97859327217125,
+ "grad_norm": 0.1966913342475891,
+ "learning_rate": 0.0006,
+ "loss": 3.5856776237487793,
+ "step": 3454
+ },
+ {
+ "epoch": 47.992573176059416,
+ "grad_norm": 0.2375730276107788,
+ "learning_rate": 0.0006,
+ "loss": 3.6126937866210938,
+ "step": 3455
+ },
+ {
+ "epoch": 48.0,
+ "grad_norm": 0.2772855758666992,
+ "learning_rate": 0.0006,
+ "loss": 3.6041951179504395,
+ "step": 3456
+ },
+ {
+ "epoch": 48.0,
+ "eval_loss": 3.971400499343872,
+ "eval_runtime": 45.4792,
+ "eval_samples_per_second": 53.695,
+ "eval_steps_per_second": 3.364,
+ "step": 3456
+ },
+ {
+ "epoch": 48.01397990388816,
+ "grad_norm": 0.2269497811794281,
+ "learning_rate": 0.0006,
+ "loss": 3.525441884994507,
+ "step": 3457
+ },
+ {
+ "epoch": 48.02795980777632,
+ "grad_norm": 0.2080184519290924,
+ "learning_rate": 0.0006,
+ "loss": 3.5727145671844482,
+ "step": 3458
+ },
+ {
+ "epoch": 48.04193971166448,
+ "grad_norm": 0.21827049553394318,
+ "learning_rate": 0.0006,
+ "loss": 3.5799875259399414,
+ "step": 3459
+ },
+ {
+ "epoch": 48.05591961555265,
+ "grad_norm": 0.2173643410205841,
+ "learning_rate": 0.0006,
+ "loss": 3.587097406387329,
+ "step": 3460
+ },
+ {
+ "epoch": 48.0698995194408,
+ "grad_norm": 0.23125280439853668,
+ "learning_rate": 0.0006,
+ "loss": 3.593235969543457,
+ "step": 3461
+ },
+ {
+ "epoch": 48.083879423328966,
+ "grad_norm": 0.2235819697380066,
+ "learning_rate": 0.0006,
+ "loss": 3.5724973678588867,
+ "step": 3462
+ },
+ {
+ "epoch": 48.09785932721712,
+ "grad_norm": 0.2329849898815155,
+ "learning_rate": 0.0006,
+ "loss": 3.5689549446105957,
+ "step": 3463
+ },
+ {
+ "epoch": 48.111839231105286,
+ "grad_norm": 0.21178825199604034,
+ "learning_rate": 0.0006,
+ "loss": 3.5522305965423584,
+ "step": 3464
+ },
+ {
+ "epoch": 48.12581913499345,
+ "grad_norm": 0.22026701271533966,
+ "learning_rate": 0.0006,
+ "loss": 3.5622801780700684,
+ "step": 3465
+ },
+ {
+ "epoch": 48.139799038881605,
+ "grad_norm": 0.23427478969097137,
+ "learning_rate": 0.0006,
+ "loss": 3.6076972484588623,
+ "step": 3466
+ },
+ {
+ "epoch": 48.15377894276977,
+ "grad_norm": 0.22437651455402374,
+ "learning_rate": 0.0006,
+ "loss": 3.5898380279541016,
+ "step": 3467
+ },
+ {
+ "epoch": 48.16775884665793,
+ "grad_norm": 0.22911588847637177,
+ "learning_rate": 0.0006,
+ "loss": 3.584866523742676,
+ "step": 3468
+ },
+ {
+ "epoch": 48.18173875054609,
+ "grad_norm": 0.21358130872249603,
+ "learning_rate": 0.0006,
+ "loss": 3.581397533416748,
+ "step": 3469
+ },
+ {
+ "epoch": 48.19571865443425,
+ "grad_norm": 0.2102762758731842,
+ "learning_rate": 0.0006,
+ "loss": 3.6218419075012207,
+ "step": 3470
+ },
+ {
+ "epoch": 48.20969855832241,
+ "grad_norm": 0.22417177259922028,
+ "learning_rate": 0.0006,
+ "loss": 3.5875539779663086,
+ "step": 3471
+ },
+ {
+ "epoch": 48.22367846221057,
+ "grad_norm": 0.2096744030714035,
+ "learning_rate": 0.0006,
+ "loss": 3.6017215251922607,
+ "step": 3472
+ },
+ {
+ "epoch": 48.237658366098735,
+ "grad_norm": 0.18693844974040985,
+ "learning_rate": 0.0006,
+ "loss": 3.590221405029297,
+ "step": 3473
+ },
+ {
+ "epoch": 48.25163826998689,
+ "grad_norm": 0.21102994680404663,
+ "learning_rate": 0.0006,
+ "loss": 3.5685019493103027,
+ "step": 3474
+ },
+ {
+ "epoch": 48.265618173875055,
+ "grad_norm": 0.20756356418132782,
+ "learning_rate": 0.0006,
+ "loss": 3.577427387237549,
+ "step": 3475
+ },
+ {
+ "epoch": 48.27959807776322,
+ "grad_norm": 0.20425064861774445,
+ "learning_rate": 0.0006,
+ "loss": 3.602522134780884,
+ "step": 3476
+ },
+ {
+ "epoch": 48.293577981651374,
+ "grad_norm": 0.1976020187139511,
+ "learning_rate": 0.0006,
+ "loss": 3.5847134590148926,
+ "step": 3477
+ },
+ {
+ "epoch": 48.30755788553954,
+ "grad_norm": 0.19685129821300507,
+ "learning_rate": 0.0006,
+ "loss": 3.5638442039489746,
+ "step": 3478
+ },
+ {
+ "epoch": 48.3215377894277,
+ "grad_norm": 0.19657646119594574,
+ "learning_rate": 0.0006,
+ "loss": 3.5669779777526855,
+ "step": 3479
+ },
+ {
+ "epoch": 48.33551769331586,
+ "grad_norm": 0.19855819642543793,
+ "learning_rate": 0.0006,
+ "loss": 3.5712571144104004,
+ "step": 3480
+ },
+ {
+ "epoch": 48.34949759720402,
+ "grad_norm": 0.19961503148078918,
+ "learning_rate": 0.0006,
+ "loss": 3.5869312286376953,
+ "step": 3481
+ },
+ {
+ "epoch": 48.36347750109218,
+ "grad_norm": 0.19302639365196228,
+ "learning_rate": 0.0006,
+ "loss": 3.571394920349121,
+ "step": 3482
+ },
+ {
+ "epoch": 48.37745740498034,
+ "grad_norm": 0.1953866183757782,
+ "learning_rate": 0.0006,
+ "loss": 3.556633234024048,
+ "step": 3483
+ },
+ {
+ "epoch": 48.391437308868504,
+ "grad_norm": 0.20028206706047058,
+ "learning_rate": 0.0006,
+ "loss": 3.5559535026550293,
+ "step": 3484
+ },
+ {
+ "epoch": 48.40541721275666,
+ "grad_norm": 0.2286558896303177,
+ "learning_rate": 0.0006,
+ "loss": 3.6052510738372803,
+ "step": 3485
+ },
+ {
+ "epoch": 48.419397116644824,
+ "grad_norm": 0.21764399111270905,
+ "learning_rate": 0.0006,
+ "loss": 3.5955848693847656,
+ "step": 3486
+ },
+ {
+ "epoch": 48.43337702053299,
+ "grad_norm": 0.2257501780986786,
+ "learning_rate": 0.0006,
+ "loss": 3.586179256439209,
+ "step": 3487
+ },
+ {
+ "epoch": 48.44735692442114,
+ "grad_norm": 0.23023653030395508,
+ "learning_rate": 0.0006,
+ "loss": 3.593329906463623,
+ "step": 3488
+ },
+ {
+ "epoch": 48.46133682830931,
+ "grad_norm": 0.21283918619155884,
+ "learning_rate": 0.0006,
+ "loss": 3.5909814834594727,
+ "step": 3489
+ },
+ {
+ "epoch": 48.47531673219746,
+ "grad_norm": 0.2143639773130417,
+ "learning_rate": 0.0006,
+ "loss": 3.61320161819458,
+ "step": 3490
+ },
+ {
+ "epoch": 48.489296636085626,
+ "grad_norm": 0.2138844132423401,
+ "learning_rate": 0.0006,
+ "loss": 3.556607246398926,
+ "step": 3491
+ },
+ {
+ "epoch": 48.50327653997379,
+ "grad_norm": 0.22122617065906525,
+ "learning_rate": 0.0006,
+ "loss": 3.629208564758301,
+ "step": 3492
+ },
+ {
+ "epoch": 48.517256443861946,
+ "grad_norm": 0.22430218756198883,
+ "learning_rate": 0.0006,
+ "loss": 3.61891508102417,
+ "step": 3493
+ },
+ {
+ "epoch": 48.53123634775011,
+ "grad_norm": 0.23830844461917877,
+ "learning_rate": 0.0006,
+ "loss": 3.5818424224853516,
+ "step": 3494
+ },
+ {
+ "epoch": 48.54521625163827,
+ "grad_norm": 0.23596757650375366,
+ "learning_rate": 0.0006,
+ "loss": 3.609959602355957,
+ "step": 3495
+ },
+ {
+ "epoch": 48.55919615552643,
+ "grad_norm": 0.22046151757240295,
+ "learning_rate": 0.0006,
+ "loss": 3.585991382598877,
+ "step": 3496
+ },
+ {
+ "epoch": 48.57317605941459,
+ "grad_norm": 0.22838662564754486,
+ "learning_rate": 0.0006,
+ "loss": 3.6047747135162354,
+ "step": 3497
+ },
+ {
+ "epoch": 48.58715596330275,
+ "grad_norm": 0.22605256736278534,
+ "learning_rate": 0.0006,
+ "loss": 3.584585428237915,
+ "step": 3498
+ },
+ {
+ "epoch": 48.60113586719091,
+ "grad_norm": 0.22761467099189758,
+ "learning_rate": 0.0006,
+ "loss": 3.5680465698242188,
+ "step": 3499
+ },
+ {
+ "epoch": 48.615115771079076,
+ "grad_norm": 0.20537005364894867,
+ "learning_rate": 0.0006,
+ "loss": 3.5822806358337402,
+ "step": 3500
+ },
+ {
+ "epoch": 48.62909567496723,
+ "grad_norm": 0.21871088445186615,
+ "learning_rate": 0.0006,
+ "loss": 3.5643906593322754,
+ "step": 3501
+ },
+ {
+ "epoch": 48.643075578855395,
+ "grad_norm": 0.2291785329580307,
+ "learning_rate": 0.0006,
+ "loss": 3.6313328742980957,
+ "step": 3502
+ },
+ {
+ "epoch": 48.65705548274356,
+ "grad_norm": 0.2437039464712143,
+ "learning_rate": 0.0006,
+ "loss": 3.588334083557129,
+ "step": 3503
+ },
+ {
+ "epoch": 48.671035386631715,
+ "grad_norm": 0.23070715367794037,
+ "learning_rate": 0.0006,
+ "loss": 3.611356258392334,
+ "step": 3504
+ },
+ {
+ "epoch": 48.68501529051988,
+ "grad_norm": 0.23983895778656006,
+ "learning_rate": 0.0006,
+ "loss": 3.5953967571258545,
+ "step": 3505
+ },
+ {
+ "epoch": 48.69899519440804,
+ "grad_norm": 0.2283167690038681,
+ "learning_rate": 0.0006,
+ "loss": 3.605307102203369,
+ "step": 3506
+ },
+ {
+ "epoch": 48.7129750982962,
+ "grad_norm": 0.20861059427261353,
+ "learning_rate": 0.0006,
+ "loss": 3.598266363143921,
+ "step": 3507
+ },
+ {
+ "epoch": 48.72695500218436,
+ "grad_norm": 0.20209547877311707,
+ "learning_rate": 0.0006,
+ "loss": 3.6022191047668457,
+ "step": 3508
+ },
+ {
+ "epoch": 48.74093490607252,
+ "grad_norm": 0.19089370965957642,
+ "learning_rate": 0.0006,
+ "loss": 3.628640651702881,
+ "step": 3509
+ },
+ {
+ "epoch": 48.75491480996068,
+ "grad_norm": 0.18544727563858032,
+ "learning_rate": 0.0006,
+ "loss": 3.6204819679260254,
+ "step": 3510
+ },
+ {
+ "epoch": 48.768894713848844,
+ "grad_norm": 0.18295186758041382,
+ "learning_rate": 0.0006,
+ "loss": 3.5899410247802734,
+ "step": 3511
+ },
+ {
+ "epoch": 48.782874617737,
+ "grad_norm": 0.1953844279050827,
+ "learning_rate": 0.0006,
+ "loss": 3.581699848175049,
+ "step": 3512
+ },
+ {
+ "epoch": 48.796854521625164,
+ "grad_norm": 0.195505291223526,
+ "learning_rate": 0.0006,
+ "loss": 3.6046862602233887,
+ "step": 3513
+ },
+ {
+ "epoch": 48.81083442551333,
+ "grad_norm": 0.19805945456027985,
+ "learning_rate": 0.0006,
+ "loss": 3.609510898590088,
+ "step": 3514
+ },
+ {
+ "epoch": 48.824814329401484,
+ "grad_norm": 0.18694287538528442,
+ "learning_rate": 0.0006,
+ "loss": 3.580693483352661,
+ "step": 3515
+ },
+ {
+ "epoch": 48.83879423328965,
+ "grad_norm": 0.19227269291877747,
+ "learning_rate": 0.0006,
+ "loss": 3.6174416542053223,
+ "step": 3516
+ },
+ {
+ "epoch": 48.8527741371778,
+ "grad_norm": 0.1966937631368637,
+ "learning_rate": 0.0006,
+ "loss": 3.616194248199463,
+ "step": 3517
+ },
+ {
+ "epoch": 48.86675404106597,
+ "grad_norm": 0.20755162835121155,
+ "learning_rate": 0.0006,
+ "loss": 3.594695568084717,
+ "step": 3518
+ },
+ {
+ "epoch": 48.88073394495413,
+ "grad_norm": 0.2012479156255722,
+ "learning_rate": 0.0006,
+ "loss": 3.6069273948669434,
+ "step": 3519
+ },
+ {
+ "epoch": 48.89471384884229,
+ "grad_norm": 0.19260065257549286,
+ "learning_rate": 0.0006,
+ "loss": 3.573819160461426,
+ "step": 3520
+ },
+ {
+ "epoch": 48.90869375273045,
+ "grad_norm": 0.19911104440689087,
+ "learning_rate": 0.0006,
+ "loss": 3.632185459136963,
+ "step": 3521
+ },
+ {
+ "epoch": 48.92267365661861,
+ "grad_norm": 0.22266048192977905,
+ "learning_rate": 0.0006,
+ "loss": 3.607295513153076,
+ "step": 3522
+ },
+ {
+ "epoch": 48.93665356050677,
+ "grad_norm": 0.2542882561683655,
+ "learning_rate": 0.0006,
+ "loss": 3.6014773845672607,
+ "step": 3523
+ },
+ {
+ "epoch": 48.95063346439493,
+ "grad_norm": 0.2878575026988983,
+ "learning_rate": 0.0006,
+ "loss": 3.5825531482696533,
+ "step": 3524
+ },
+ {
+ "epoch": 48.964613368283096,
+ "grad_norm": 0.3157055675983429,
+ "learning_rate": 0.0006,
+ "loss": 3.5986037254333496,
+ "step": 3525
+ },
+ {
+ "epoch": 48.97859327217125,
+ "grad_norm": 0.2815262973308563,
+ "learning_rate": 0.0006,
+ "loss": 3.6099600791931152,
+ "step": 3526
+ },
+ {
+ "epoch": 48.992573176059416,
+ "grad_norm": 0.22102823853492737,
+ "learning_rate": 0.0006,
+ "loss": 3.5859827995300293,
+ "step": 3527
+ },
+ {
+ "epoch": 49.0,
+ "grad_norm": 0.24937094748020172,
+ "learning_rate": 0.0006,
+ "loss": 3.622842311859131,
+ "step": 3528
+ },
+ {
+ "epoch": 49.0,
+ "eval_loss": 3.977067232131958,
+ "eval_runtime": 45.5503,
+ "eval_samples_per_second": 53.611,
+ "eval_steps_per_second": 3.359,
+ "step": 3528
+ },
+ {
+ "epoch": 49.01397990388816,
+ "grad_norm": 0.25072216987609863,
+ "learning_rate": 0.0006,
+ "loss": 3.590653419494629,
+ "step": 3529
+ },
+ {
+ "epoch": 49.02795980777632,
+ "grad_norm": 0.2611052989959717,
+ "learning_rate": 0.0006,
+ "loss": 3.5504279136657715,
+ "step": 3530
+ },
+ {
+ "epoch": 49.04193971166448,
+ "grad_norm": 0.2547961473464966,
+ "learning_rate": 0.0006,
+ "loss": 3.5797581672668457,
+ "step": 3531
+ },
+ {
+ "epoch": 49.05591961555265,
+ "grad_norm": 0.25674310326576233,
+ "learning_rate": 0.0006,
+ "loss": 3.557278871536255,
+ "step": 3532
+ },
+ {
+ "epoch": 49.0698995194408,
+ "grad_norm": 0.25511929392814636,
+ "learning_rate": 0.0006,
+ "loss": 3.5788025856018066,
+ "step": 3533
+ },
+ {
+ "epoch": 49.083879423328966,
+ "grad_norm": 0.22920994460582733,
+ "learning_rate": 0.0006,
+ "loss": 3.580489158630371,
+ "step": 3534
+ },
+ {
+ "epoch": 49.09785932721712,
+ "grad_norm": 0.23436492681503296,
+ "learning_rate": 0.0006,
+ "loss": 3.5603699684143066,
+ "step": 3535
+ },
+ {
+ "epoch": 49.111839231105286,
+ "grad_norm": 0.2542382776737213,
+ "learning_rate": 0.0006,
+ "loss": 3.5937037467956543,
+ "step": 3536
+ },
+ {
+ "epoch": 49.12581913499345,
+ "grad_norm": 0.26718273758888245,
+ "learning_rate": 0.0006,
+ "loss": 3.6032168865203857,
+ "step": 3537
+ },
+ {
+ "epoch": 49.139799038881605,
+ "grad_norm": 0.2406773865222931,
+ "learning_rate": 0.0006,
+ "loss": 3.5737085342407227,
+ "step": 3538
+ },
+ {
+ "epoch": 49.15377894276977,
+ "grad_norm": 0.23408754169940948,
+ "learning_rate": 0.0006,
+ "loss": 3.592543601989746,
+ "step": 3539
+ },
+ {
+ "epoch": 49.16775884665793,
+ "grad_norm": 0.22974351048469543,
+ "learning_rate": 0.0006,
+ "loss": 3.543618679046631,
+ "step": 3540
+ },
+ {
+ "epoch": 49.18173875054609,
+ "grad_norm": 0.23479530215263367,
+ "learning_rate": 0.0006,
+ "loss": 3.547590732574463,
+ "step": 3541
+ },
+ {
+ "epoch": 49.19571865443425,
+ "grad_norm": 0.2100638598203659,
+ "learning_rate": 0.0006,
+ "loss": 3.6027469635009766,
+ "step": 3542
+ },
+ {
+ "epoch": 49.20969855832241,
+ "grad_norm": 0.20239035785198212,
+ "learning_rate": 0.0006,
+ "loss": 3.598567008972168,
+ "step": 3543
+ },
+ {
+ "epoch": 49.22367846221057,
+ "grad_norm": 0.20480065047740936,
+ "learning_rate": 0.0006,
+ "loss": 3.591038227081299,
+ "step": 3544
+ },
+ {
+ "epoch": 49.237658366098735,
+ "grad_norm": 0.20439887046813965,
+ "learning_rate": 0.0006,
+ "loss": 3.555039405822754,
+ "step": 3545
+ },
+ {
+ "epoch": 49.25163826998689,
+ "grad_norm": 0.21245788037776947,
+ "learning_rate": 0.0006,
+ "loss": 3.5772666931152344,
+ "step": 3546
+ },
+ {
+ "epoch": 49.265618173875055,
+ "grad_norm": 0.1993357390165329,
+ "learning_rate": 0.0006,
+ "loss": 3.5847411155700684,
+ "step": 3547
+ },
+ {
+ "epoch": 49.27959807776322,
+ "grad_norm": 0.22550229728221893,
+ "learning_rate": 0.0006,
+ "loss": 3.5679750442504883,
+ "step": 3548
+ },
+ {
+ "epoch": 49.293577981651374,
+ "grad_norm": 0.2383355349302292,
+ "learning_rate": 0.0006,
+ "loss": 3.57085919380188,
+ "step": 3549
+ },
+ {
+ "epoch": 49.30755788553954,
+ "grad_norm": 0.23968911170959473,
+ "learning_rate": 0.0006,
+ "loss": 3.557415246963501,
+ "step": 3550
+ },
+ {
+ "epoch": 49.3215377894277,
+ "grad_norm": 0.21453262865543365,
+ "learning_rate": 0.0006,
+ "loss": 3.5763611793518066,
+ "step": 3551
+ },
+ {
+ "epoch": 49.33551769331586,
+ "grad_norm": 0.20380273461341858,
+ "learning_rate": 0.0006,
+ "loss": 3.552011013031006,
+ "step": 3552
+ },
+ {
+ "epoch": 49.34949759720402,
+ "grad_norm": 0.19719970226287842,
+ "learning_rate": 0.0006,
+ "loss": 3.5719075202941895,
+ "step": 3553
+ },
+ {
+ "epoch": 49.36347750109218,
+ "grad_norm": 0.19018089771270752,
+ "learning_rate": 0.0006,
+ "loss": 3.5843467712402344,
+ "step": 3554
+ },
+ {
+ "epoch": 49.37745740498034,
+ "grad_norm": 0.18369099497795105,
+ "learning_rate": 0.0006,
+ "loss": 3.561741352081299,
+ "step": 3555
+ },
+ {
+ "epoch": 49.391437308868504,
+ "grad_norm": 0.2070280760526657,
+ "learning_rate": 0.0006,
+ "loss": 3.590721607208252,
+ "step": 3556
+ },
+ {
+ "epoch": 49.40541721275666,
+ "grad_norm": 0.23287905752658844,
+ "learning_rate": 0.0006,
+ "loss": 3.617081642150879,
+ "step": 3557
+ },
+ {
+ "epoch": 49.419397116644824,
+ "grad_norm": 0.21877793967723846,
+ "learning_rate": 0.0006,
+ "loss": 3.547166347503662,
+ "step": 3558
+ },
+ {
+ "epoch": 49.43337702053299,
+ "grad_norm": 0.21105137467384338,
+ "learning_rate": 0.0006,
+ "loss": 3.593552350997925,
+ "step": 3559
+ },
+ {
+ "epoch": 49.44735692442114,
+ "grad_norm": 0.24940872192382812,
+ "learning_rate": 0.0006,
+ "loss": 3.599729537963867,
+ "step": 3560
+ },
+ {
+ "epoch": 49.46133682830931,
+ "grad_norm": 0.26952996850013733,
+ "learning_rate": 0.0006,
+ "loss": 3.5915074348449707,
+ "step": 3561
+ },
+ {
+ "epoch": 49.47531673219746,
+ "grad_norm": 0.25706353783607483,
+ "learning_rate": 0.0006,
+ "loss": 3.587472915649414,
+ "step": 3562
+ },
+ {
+ "epoch": 49.489296636085626,
+ "grad_norm": 0.23666661977767944,
+ "learning_rate": 0.0006,
+ "loss": 3.561340808868408,
+ "step": 3563
+ },
+ {
+ "epoch": 49.50327653997379,
+ "grad_norm": 0.22524063289165497,
+ "learning_rate": 0.0006,
+ "loss": 3.587310314178467,
+ "step": 3564
+ },
+ {
+ "epoch": 49.517256443861946,
+ "grad_norm": 0.22991003096103668,
+ "learning_rate": 0.0006,
+ "loss": 3.56671142578125,
+ "step": 3565
+ },
+ {
+ "epoch": 49.53123634775011,
+ "grad_norm": 0.23067602515220642,
+ "learning_rate": 0.0006,
+ "loss": 3.578601837158203,
+ "step": 3566
+ },
+ {
+ "epoch": 49.54521625163827,
+ "grad_norm": 0.2133914828300476,
+ "learning_rate": 0.0006,
+ "loss": 3.593726873397827,
+ "step": 3567
+ },
+ {
+ "epoch": 49.55919615552643,
+ "grad_norm": 0.21879160404205322,
+ "learning_rate": 0.0006,
+ "loss": 3.5833992958068848,
+ "step": 3568
+ },
+ {
+ "epoch": 49.57317605941459,
+ "grad_norm": 0.2116270661354065,
+ "learning_rate": 0.0006,
+ "loss": 3.575761079788208,
+ "step": 3569
+ },
+ {
+ "epoch": 49.58715596330275,
+ "grad_norm": 0.19506660103797913,
+ "learning_rate": 0.0006,
+ "loss": 3.5600461959838867,
+ "step": 3570
+ },
+ {
+ "epoch": 49.60113586719091,
+ "grad_norm": 0.21305067837238312,
+ "learning_rate": 0.0006,
+ "loss": 3.5717577934265137,
+ "step": 3571
+ },
+ {
+ "epoch": 49.615115771079076,
+ "grad_norm": 0.21184347569942474,
+ "learning_rate": 0.0006,
+ "loss": 3.608819007873535,
+ "step": 3572
+ },
+ {
+ "epoch": 49.62909567496723,
+ "grad_norm": 0.22302201390266418,
+ "learning_rate": 0.0006,
+ "loss": 3.5871644020080566,
+ "step": 3573
+ },
+ {
+ "epoch": 49.643075578855395,
+ "grad_norm": 0.21942365169525146,
+ "learning_rate": 0.0006,
+ "loss": 3.596029043197632,
+ "step": 3574
+ },
+ {
+ "epoch": 49.65705548274356,
+ "grad_norm": 0.2627110481262207,
+ "learning_rate": 0.0006,
+ "loss": 3.5900766849517822,
+ "step": 3575
+ },
+ {
+ "epoch": 49.671035386631715,
+ "grad_norm": 0.28253448009490967,
+ "learning_rate": 0.0006,
+ "loss": 3.599386215209961,
+ "step": 3576
+ },
+ {
+ "epoch": 49.68501529051988,
+ "grad_norm": 0.24279426038265228,
+ "learning_rate": 0.0006,
+ "loss": 3.580909013748169,
+ "step": 3577
+ },
+ {
+ "epoch": 49.69899519440804,
+ "grad_norm": 0.22092898190021515,
+ "learning_rate": 0.0006,
+ "loss": 3.6043782234191895,
+ "step": 3578
+ },
+ {
+ "epoch": 49.7129750982962,
+ "grad_norm": 0.23356051743030548,
+ "learning_rate": 0.0006,
+ "loss": 3.6103105545043945,
+ "step": 3579
+ },
+ {
+ "epoch": 49.72695500218436,
+ "grad_norm": 0.24508118629455566,
+ "learning_rate": 0.0006,
+ "loss": 3.612980365753174,
+ "step": 3580
+ },
+ {
+ "epoch": 49.74093490607252,
+ "grad_norm": 0.2501833438873291,
+ "learning_rate": 0.0006,
+ "loss": 3.6111063957214355,
+ "step": 3581
+ },
+ {
+ "epoch": 49.75491480996068,
+ "grad_norm": 0.2263427972793579,
+ "learning_rate": 0.0006,
+ "loss": 3.5709285736083984,
+ "step": 3582
+ },
+ {
+ "epoch": 49.768894713848844,
+ "grad_norm": 0.19881728291511536,
+ "learning_rate": 0.0006,
+ "loss": 3.5836503505706787,
+ "step": 3583
+ },
+ {
+ "epoch": 49.782874617737,
+ "grad_norm": 0.22516517341136932,
+ "learning_rate": 0.0006,
+ "loss": 3.5797667503356934,
+ "step": 3584
+ },
+ {
+ "epoch": 49.796854521625164,
+ "grad_norm": 0.22347061336040497,
+ "learning_rate": 0.0006,
+ "loss": 3.6245951652526855,
+ "step": 3585
+ },
+ {
+ "epoch": 49.81083442551333,
+ "grad_norm": 0.2062593549489975,
+ "learning_rate": 0.0006,
+ "loss": 3.607572317123413,
+ "step": 3586
+ },
+ {
+ "epoch": 49.824814329401484,
+ "grad_norm": 0.20671074092388153,
+ "learning_rate": 0.0006,
+ "loss": 3.5671472549438477,
+ "step": 3587
+ },
+ {
+ "epoch": 49.83879423328965,
+ "grad_norm": 0.19981902837753296,
+ "learning_rate": 0.0006,
+ "loss": 3.6084837913513184,
+ "step": 3588
+ },
+ {
+ "epoch": 49.8527741371778,
+ "grad_norm": 0.2004556804895401,
+ "learning_rate": 0.0006,
+ "loss": 3.631455898284912,
+ "step": 3589
+ },
+ {
+ "epoch": 49.86675404106597,
+ "grad_norm": 0.20990414917469025,
+ "learning_rate": 0.0006,
+ "loss": 3.6017699241638184,
+ "step": 3590
+ },
+ {
+ "epoch": 49.88073394495413,
+ "grad_norm": 0.19016146659851074,
+ "learning_rate": 0.0006,
+ "loss": 3.6110801696777344,
+ "step": 3591
+ },
+ {
+ "epoch": 49.89471384884229,
+ "grad_norm": 0.2015834003686905,
+ "learning_rate": 0.0006,
+ "loss": 3.58852481842041,
+ "step": 3592
+ },
+ {
+ "epoch": 49.90869375273045,
+ "grad_norm": 0.205678328871727,
+ "learning_rate": 0.0006,
+ "loss": 3.581789970397949,
+ "step": 3593
+ },
+ {
+ "epoch": 49.92267365661861,
+ "grad_norm": 0.20975211262702942,
+ "learning_rate": 0.0006,
+ "loss": 3.6126320362091064,
+ "step": 3594
+ },
+ {
+ "epoch": 49.93665356050677,
+ "grad_norm": 0.20510081946849823,
+ "learning_rate": 0.0006,
+ "loss": 3.5970656871795654,
+ "step": 3595
+ },
+ {
+ "epoch": 49.95063346439493,
+ "grad_norm": 0.19842886924743652,
+ "learning_rate": 0.0006,
+ "loss": 3.6055545806884766,
+ "step": 3596
+ },
+ {
+ "epoch": 49.964613368283096,
+ "grad_norm": 0.20551791787147522,
+ "learning_rate": 0.0006,
+ "loss": 3.5861949920654297,
+ "step": 3597
+ },
+ {
+ "epoch": 49.97859327217125,
+ "grad_norm": 0.21147456765174866,
+ "learning_rate": 0.0006,
+ "loss": 3.585934638977051,
+ "step": 3598
+ },
+ {
+ "epoch": 49.992573176059416,
+ "grad_norm": 0.21793442964553833,
+ "learning_rate": 0.0006,
+ "loss": 3.5956411361694336,
+ "step": 3599
+ },
+ {
+ "epoch": 50.0,
+ "grad_norm": 0.24623161554336548,
+ "learning_rate": 0.0006,
+ "loss": 3.623453140258789,
+ "step": 3600
+ },
+ {
+ "epoch": 50.0,
+ "eval_loss": 3.9807891845703125,
+ "eval_runtime": 45.7708,
+ "eval_samples_per_second": 53.353,
+ "eval_steps_per_second": 3.343,
+ "step": 3600
+ },
+ {
+ "epoch": 50.01397990388816,
+ "grad_norm": 0.22322626411914825,
+ "learning_rate": 0.0006,
+ "loss": 3.5475401878356934,
+ "step": 3601
+ },
+ {
+ "epoch": 50.02795980777632,
+ "grad_norm": 0.21957066655158997,
+ "learning_rate": 0.0006,
+ "loss": 3.5616683959960938,
+ "step": 3602
+ },
+ {
+ "epoch": 50.04193971166448,
+ "grad_norm": 0.22030551731586456,
+ "learning_rate": 0.0006,
+ "loss": 3.56367826461792,
+ "step": 3603
+ },
+ {
+ "epoch": 50.05591961555265,
+ "grad_norm": 0.21536092460155487,
+ "learning_rate": 0.0006,
+ "loss": 3.5613503456115723,
+ "step": 3604
+ },
+ {
+ "epoch": 50.0698995194408,
+ "grad_norm": 0.22454269230365753,
+ "learning_rate": 0.0006,
+ "loss": 3.5348987579345703,
+ "step": 3605
+ },
+ {
+ "epoch": 50.083879423328966,
+ "grad_norm": 0.2281617820262909,
+ "learning_rate": 0.0006,
+ "loss": 3.5722241401672363,
+ "step": 3606
+ },
+ {
+ "epoch": 50.09785932721712,
+ "grad_norm": 0.23318710923194885,
+ "learning_rate": 0.0006,
+ "loss": 3.559063673019409,
+ "step": 3607
+ },
+ {
+ "epoch": 50.111839231105286,
+ "grad_norm": 0.2277889847755432,
+ "learning_rate": 0.0006,
+ "loss": 3.5632925033569336,
+ "step": 3608
+ },
+ {
+ "epoch": 50.12581913499345,
+ "grad_norm": 0.2317705601453781,
+ "learning_rate": 0.0006,
+ "loss": 3.5835886001586914,
+ "step": 3609
+ },
+ {
+ "epoch": 50.139799038881605,
+ "grad_norm": 0.21388863027095795,
+ "learning_rate": 0.0006,
+ "loss": 3.5976145267486572,
+ "step": 3610
+ },
+ {
+ "epoch": 50.15377894276977,
+ "grad_norm": 0.2070954293012619,
+ "learning_rate": 0.0006,
+ "loss": 3.5486221313476562,
+ "step": 3611
+ },
+ {
+ "epoch": 50.16775884665793,
+ "grad_norm": 0.21602077782154083,
+ "learning_rate": 0.0006,
+ "loss": 3.5897607803344727,
+ "step": 3612
+ },
+ {
+ "epoch": 50.18173875054609,
+ "grad_norm": 0.21106162667274475,
+ "learning_rate": 0.0006,
+ "loss": 3.5587167739868164,
+ "step": 3613
+ },
+ {
+ "epoch": 50.19571865443425,
+ "grad_norm": 0.2047950178384781,
+ "learning_rate": 0.0006,
+ "loss": 3.576798915863037,
+ "step": 3614
+ },
+ {
+ "epoch": 50.20969855832241,
+ "grad_norm": 0.2204097956418991,
+ "learning_rate": 0.0006,
+ "loss": 3.5466837882995605,
+ "step": 3615
+ },
+ {
+ "epoch": 50.22367846221057,
+ "grad_norm": 0.2220875471830368,
+ "learning_rate": 0.0006,
+ "loss": 3.5722036361694336,
+ "step": 3616
+ },
+ {
+ "epoch": 50.237658366098735,
+ "grad_norm": 0.2250797003507614,
+ "learning_rate": 0.0006,
+ "loss": 3.566347122192383,
+ "step": 3617
+ },
+ {
+ "epoch": 50.25163826998689,
+ "grad_norm": 0.22837485373020172,
+ "learning_rate": 0.0006,
+ "loss": 3.5673274993896484,
+ "step": 3618
+ },
+ {
+ "epoch": 50.265618173875055,
+ "grad_norm": 0.2281104475259781,
+ "learning_rate": 0.0006,
+ "loss": 3.5543737411499023,
+ "step": 3619
+ },
+ {
+ "epoch": 50.27959807776322,
+ "grad_norm": 0.2052381932735443,
+ "learning_rate": 0.0006,
+ "loss": 3.566401958465576,
+ "step": 3620
+ },
+ {
+ "epoch": 50.293577981651374,
+ "grad_norm": 0.2125921994447708,
+ "learning_rate": 0.0006,
+ "loss": 3.5467424392700195,
+ "step": 3621
+ },
+ {
+ "epoch": 50.30755788553954,
+ "grad_norm": 0.22641244530677795,
+ "learning_rate": 0.0006,
+ "loss": 3.548497200012207,
+ "step": 3622
+ },
+ {
+ "epoch": 50.3215377894277,
+ "grad_norm": 0.23039482533931732,
+ "learning_rate": 0.0006,
+ "loss": 3.5948381423950195,
+ "step": 3623
+ },
+ {
+ "epoch": 50.33551769331586,
+ "grad_norm": 0.22753404080867767,
+ "learning_rate": 0.0006,
+ "loss": 3.541825532913208,
+ "step": 3624
+ },
+ {
+ "epoch": 50.34949759720402,
+ "grad_norm": 0.2528170347213745,
+ "learning_rate": 0.0006,
+ "loss": 3.5937235355377197,
+ "step": 3625
+ },
+ {
+ "epoch": 50.36347750109218,
+ "grad_norm": 0.25434595346450806,
+ "learning_rate": 0.0006,
+ "loss": 3.5779776573181152,
+ "step": 3626
+ },
+ {
+ "epoch": 50.37745740498034,
+ "grad_norm": 0.22519059479236603,
+ "learning_rate": 0.0006,
+ "loss": 3.5456271171569824,
+ "step": 3627
+ },
+ {
+ "epoch": 50.391437308868504,
+ "grad_norm": 0.2077232301235199,
+ "learning_rate": 0.0006,
+ "loss": 3.5693111419677734,
+ "step": 3628
+ },
+ {
+ "epoch": 50.40541721275666,
+ "grad_norm": 0.20925411581993103,
+ "learning_rate": 0.0006,
+ "loss": 3.6063997745513916,
+ "step": 3629
+ },
+ {
+ "epoch": 50.419397116644824,
+ "grad_norm": 0.2114555686712265,
+ "learning_rate": 0.0006,
+ "loss": 3.5676894187927246,
+ "step": 3630
+ },
+ {
+ "epoch": 50.43337702053299,
+ "grad_norm": 0.23759354650974274,
+ "learning_rate": 0.0006,
+ "loss": 3.5465126037597656,
+ "step": 3631
+ },
+ {
+ "epoch": 50.44735692442114,
+ "grad_norm": 0.23809516429901123,
+ "learning_rate": 0.0006,
+ "loss": 3.571600914001465,
+ "step": 3632
+ },
+ {
+ "epoch": 50.46133682830931,
+ "grad_norm": 0.20501303672790527,
+ "learning_rate": 0.0006,
+ "loss": 3.573550224304199,
+ "step": 3633
+ },
+ {
+ "epoch": 50.47531673219746,
+ "grad_norm": 0.21562306582927704,
+ "learning_rate": 0.0006,
+ "loss": 3.5625600814819336,
+ "step": 3634
+ },
+ {
+ "epoch": 50.489296636085626,
+ "grad_norm": 0.20469479262828827,
+ "learning_rate": 0.0006,
+ "loss": 3.5737175941467285,
+ "step": 3635
+ },
+ {
+ "epoch": 50.50327653997379,
+ "grad_norm": 0.2078634798526764,
+ "learning_rate": 0.0006,
+ "loss": 3.5691545009613037,
+ "step": 3636
+ },
+ {
+ "epoch": 50.517256443861946,
+ "grad_norm": 0.20340897142887115,
+ "learning_rate": 0.0006,
+ "loss": 3.583918571472168,
+ "step": 3637
+ },
+ {
+ "epoch": 50.53123634775011,
+ "grad_norm": 0.2006944715976715,
+ "learning_rate": 0.0006,
+ "loss": 3.596034049987793,
+ "step": 3638
+ },
+ {
+ "epoch": 50.54521625163827,
+ "grad_norm": 0.19281257688999176,
+ "learning_rate": 0.0006,
+ "loss": 3.5993080139160156,
+ "step": 3639
+ },
+ {
+ "epoch": 50.55919615552643,
+ "grad_norm": 0.19528807699680328,
+ "learning_rate": 0.0006,
+ "loss": 3.6108102798461914,
+ "step": 3640
+ },
+ {
+ "epoch": 50.57317605941459,
+ "grad_norm": 0.19329112768173218,
+ "learning_rate": 0.0006,
+ "loss": 3.5964512825012207,
+ "step": 3641
+ },
+ {
+ "epoch": 50.58715596330275,
+ "grad_norm": 0.1928209513425827,
+ "learning_rate": 0.0006,
+ "loss": 3.5927724838256836,
+ "step": 3642
+ },
+ {
+ "epoch": 50.60113586719091,
+ "grad_norm": 0.20212236046791077,
+ "learning_rate": 0.0006,
+ "loss": 3.5778708457946777,
+ "step": 3643
+ },
+ {
+ "epoch": 50.615115771079076,
+ "grad_norm": 0.22244620323181152,
+ "learning_rate": 0.0006,
+ "loss": 3.6219539642333984,
+ "step": 3644
+ },
+ {
+ "epoch": 50.62909567496723,
+ "grad_norm": 0.2659119963645935,
+ "learning_rate": 0.0006,
+ "loss": 3.578831195831299,
+ "step": 3645
+ },
+ {
+ "epoch": 50.643075578855395,
+ "grad_norm": 0.2837344706058502,
+ "learning_rate": 0.0006,
+ "loss": 3.587677240371704,
+ "step": 3646
+ },
+ {
+ "epoch": 50.65705548274356,
+ "grad_norm": 0.26747965812683105,
+ "learning_rate": 0.0006,
+ "loss": 3.611286163330078,
+ "step": 3647
+ },
+ {
+ "epoch": 50.671035386631715,
+ "grad_norm": 0.24604788422584534,
+ "learning_rate": 0.0006,
+ "loss": 3.5740575790405273,
+ "step": 3648
+ },
+ {
+ "epoch": 50.68501529051988,
+ "grad_norm": 0.2379457652568817,
+ "learning_rate": 0.0006,
+ "loss": 3.5997209548950195,
+ "step": 3649
+ },
+ {
+ "epoch": 50.69899519440804,
+ "grad_norm": 0.2296321839094162,
+ "learning_rate": 0.0006,
+ "loss": 3.5975162982940674,
+ "step": 3650
+ },
+ {
+ "epoch": 50.7129750982962,
+ "grad_norm": 0.22054627537727356,
+ "learning_rate": 0.0006,
+ "loss": 3.5821738243103027,
+ "step": 3651
+ },
+ {
+ "epoch": 50.72695500218436,
+ "grad_norm": 0.22114980220794678,
+ "learning_rate": 0.0006,
+ "loss": 3.5769970417022705,
+ "step": 3652
+ },
+ {
+ "epoch": 50.74093490607252,
+ "grad_norm": 0.21389314532279968,
+ "learning_rate": 0.0006,
+ "loss": 3.5952796936035156,
+ "step": 3653
+ },
+ {
+ "epoch": 50.75491480996068,
+ "grad_norm": 0.21069210767745972,
+ "learning_rate": 0.0006,
+ "loss": 3.5884671211242676,
+ "step": 3654
+ },
+ {
+ "epoch": 50.768894713848844,
+ "grad_norm": 0.22028805315494537,
+ "learning_rate": 0.0006,
+ "loss": 3.593442440032959,
+ "step": 3655
+ },
+ {
+ "epoch": 50.782874617737,
+ "grad_norm": 0.21296948194503784,
+ "learning_rate": 0.0006,
+ "loss": 3.5656774044036865,
+ "step": 3656
+ },
+ {
+ "epoch": 50.796854521625164,
+ "grad_norm": 0.19871588051319122,
+ "learning_rate": 0.0006,
+ "loss": 3.5939064025878906,
+ "step": 3657
+ },
+ {
+ "epoch": 50.81083442551333,
+ "grad_norm": 0.19523470103740692,
+ "learning_rate": 0.0006,
+ "loss": 3.5806071758270264,
+ "step": 3658
+ },
+ {
+ "epoch": 50.824814329401484,
+ "grad_norm": 0.18718191981315613,
+ "learning_rate": 0.0006,
+ "loss": 3.5903120040893555,
+ "step": 3659
+ },
+ {
+ "epoch": 50.83879423328965,
+ "grad_norm": 0.18796689808368683,
+ "learning_rate": 0.0006,
+ "loss": 3.5799593925476074,
+ "step": 3660
+ },
+ {
+ "epoch": 50.8527741371778,
+ "grad_norm": 0.21794569492340088,
+ "learning_rate": 0.0006,
+ "loss": 3.5712361335754395,
+ "step": 3661
+ },
+ {
+ "epoch": 50.86675404106597,
+ "grad_norm": 0.2374759465456009,
+ "learning_rate": 0.0006,
+ "loss": 3.602503776550293,
+ "step": 3662
+ },
+ {
+ "epoch": 50.88073394495413,
+ "grad_norm": 0.20213527977466583,
+ "learning_rate": 0.0006,
+ "loss": 3.5756399631500244,
+ "step": 3663
+ },
+ {
+ "epoch": 50.89471384884229,
+ "grad_norm": 0.1875160187482834,
+ "learning_rate": 0.0006,
+ "loss": 3.625436305999756,
+ "step": 3664
+ },
+ {
+ "epoch": 50.90869375273045,
+ "grad_norm": 0.19908255338668823,
+ "learning_rate": 0.0006,
+ "loss": 3.592522621154785,
+ "step": 3665
+ },
+ {
+ "epoch": 50.92267365661861,
+ "grad_norm": 0.20776167511940002,
+ "learning_rate": 0.0006,
+ "loss": 3.5777883529663086,
+ "step": 3666
+ },
+ {
+ "epoch": 50.93665356050677,
+ "grad_norm": 0.19510093331336975,
+ "learning_rate": 0.0006,
+ "loss": 3.587306022644043,
+ "step": 3667
+ },
+ {
+ "epoch": 50.95063346439493,
+ "grad_norm": 0.2180490493774414,
+ "learning_rate": 0.0006,
+ "loss": 3.5855464935302734,
+ "step": 3668
+ },
+ {
+ "epoch": 50.964613368283096,
+ "grad_norm": 0.19967055320739746,
+ "learning_rate": 0.0006,
+ "loss": 3.609689235687256,
+ "step": 3669
+ },
+ {
+ "epoch": 50.97859327217125,
+ "grad_norm": 0.2081584632396698,
+ "learning_rate": 0.0006,
+ "loss": 3.625236749649048,
+ "step": 3670
+ },
+ {
+ "epoch": 50.992573176059416,
+ "grad_norm": 0.2312266230583191,
+ "learning_rate": 0.0006,
+ "loss": 3.5977330207824707,
+ "step": 3671
+ },
+ {
+ "epoch": 51.0,
+ "grad_norm": 0.2464766502380371,
+ "learning_rate": 0.0006,
+ "loss": 3.610635995864868,
+ "step": 3672
+ },
+ {
+ "epoch": 51.0,
+ "eval_loss": 3.9810166358947754,
+ "eval_runtime": 45.5851,
+ "eval_samples_per_second": 53.57,
+ "eval_steps_per_second": 3.356,
+ "step": 3672
+ },
+ {
+ "epoch": 51.01397990388816,
+ "grad_norm": 0.22583232820034027,
+ "learning_rate": 0.0006,
+ "loss": 3.547168016433716,
+ "step": 3673
+ },
+ {
+ "epoch": 51.02795980777632,
+ "grad_norm": 0.23001070320606232,
+ "learning_rate": 0.0006,
+ "loss": 3.546207904815674,
+ "step": 3674
+ },
+ {
+ "epoch": 51.04193971166448,
+ "grad_norm": 0.21891392767429352,
+ "learning_rate": 0.0006,
+ "loss": 3.564371109008789,
+ "step": 3675
+ },
+ {
+ "epoch": 51.05591961555265,
+ "grad_norm": 0.22195076942443848,
+ "learning_rate": 0.0006,
+ "loss": 3.538297414779663,
+ "step": 3676
+ },
+ {
+ "epoch": 51.0698995194408,
+ "grad_norm": 0.24688288569450378,
+ "learning_rate": 0.0006,
+ "loss": 3.5705811977386475,
+ "step": 3677
+ },
+ {
+ "epoch": 51.083879423328966,
+ "grad_norm": 0.2731003165245056,
+ "learning_rate": 0.0006,
+ "loss": 3.530763626098633,
+ "step": 3678
+ },
+ {
+ "epoch": 51.09785932721712,
+ "grad_norm": 0.27474021911621094,
+ "learning_rate": 0.0006,
+ "loss": 3.5559208393096924,
+ "step": 3679
+ },
+ {
+ "epoch": 51.111839231105286,
+ "grad_norm": 0.26311439275741577,
+ "learning_rate": 0.0006,
+ "loss": 3.5698819160461426,
+ "step": 3680
+ },
+ {
+ "epoch": 51.12581913499345,
+ "grad_norm": 0.21895965933799744,
+ "learning_rate": 0.0006,
+ "loss": 3.567232370376587,
+ "step": 3681
+ },
+ {
+ "epoch": 51.139799038881605,
+ "grad_norm": 0.19598282873630524,
+ "learning_rate": 0.0006,
+ "loss": 3.6033718585968018,
+ "step": 3682
+ },
+ {
+ "epoch": 51.15377894276977,
+ "grad_norm": 0.2183268666267395,
+ "learning_rate": 0.0006,
+ "loss": 3.5599026679992676,
+ "step": 3683
+ },
+ {
+ "epoch": 51.16775884665793,
+ "grad_norm": 0.22657731175422668,
+ "learning_rate": 0.0006,
+ "loss": 3.532038688659668,
+ "step": 3684
+ },
+ {
+ "epoch": 51.18173875054609,
+ "grad_norm": 0.21979935467243195,
+ "learning_rate": 0.0006,
+ "loss": 3.544640064239502,
+ "step": 3685
+ },
+ {
+ "epoch": 51.19571865443425,
+ "grad_norm": 0.20581361651420593,
+ "learning_rate": 0.0006,
+ "loss": 3.579803466796875,
+ "step": 3686
+ },
+ {
+ "epoch": 51.20969855832241,
+ "grad_norm": 0.22677212953567505,
+ "learning_rate": 0.0006,
+ "loss": 3.576796054840088,
+ "step": 3687
+ },
+ {
+ "epoch": 51.22367846221057,
+ "grad_norm": 0.2599104940891266,
+ "learning_rate": 0.0006,
+ "loss": 3.5657899379730225,
+ "step": 3688
+ },
+ {
+ "epoch": 51.237658366098735,
+ "grad_norm": 0.23320309817790985,
+ "learning_rate": 0.0006,
+ "loss": 3.5537824630737305,
+ "step": 3689
+ },
+ {
+ "epoch": 51.25163826998689,
+ "grad_norm": 0.2345186471939087,
+ "learning_rate": 0.0006,
+ "loss": 3.5699901580810547,
+ "step": 3690
+ },
+ {
+ "epoch": 51.265618173875055,
+ "grad_norm": 0.24723312258720398,
+ "learning_rate": 0.0006,
+ "loss": 3.553495168685913,
+ "step": 3691
+ },
+ {
+ "epoch": 51.27959807776322,
+ "grad_norm": 0.24195604026317596,
+ "learning_rate": 0.0006,
+ "loss": 3.6008248329162598,
+ "step": 3692
+ },
+ {
+ "epoch": 51.293577981651374,
+ "grad_norm": 0.23011726140975952,
+ "learning_rate": 0.0006,
+ "loss": 3.5842812061309814,
+ "step": 3693
+ },
+ {
+ "epoch": 51.30755788553954,
+ "grad_norm": 0.23412185907363892,
+ "learning_rate": 0.0006,
+ "loss": 3.5648040771484375,
+ "step": 3694
+ },
+ {
+ "epoch": 51.3215377894277,
+ "grad_norm": 0.22911828756332397,
+ "learning_rate": 0.0006,
+ "loss": 3.5599000453948975,
+ "step": 3695
+ },
+ {
+ "epoch": 51.33551769331586,
+ "grad_norm": 0.20045386254787445,
+ "learning_rate": 0.0006,
+ "loss": 3.559370517730713,
+ "step": 3696
+ },
+ {
+ "epoch": 51.34949759720402,
+ "grad_norm": 0.24723322689533234,
+ "learning_rate": 0.0006,
+ "loss": 3.5734081268310547,
+ "step": 3697
+ },
+ {
+ "epoch": 51.36347750109218,
+ "grad_norm": 0.28003066778182983,
+ "learning_rate": 0.0006,
+ "loss": 3.574591636657715,
+ "step": 3698
+ },
+ {
+ "epoch": 51.37745740498034,
+ "grad_norm": 0.27969157695770264,
+ "learning_rate": 0.0006,
+ "loss": 3.5703907012939453,
+ "step": 3699
+ },
+ {
+ "epoch": 51.391437308868504,
+ "grad_norm": 0.2352922111749649,
+ "learning_rate": 0.0006,
+ "loss": 3.540452480316162,
+ "step": 3700
+ },
+ {
+ "epoch": 51.40541721275666,
+ "grad_norm": 0.21332240104675293,
+ "learning_rate": 0.0006,
+ "loss": 3.5883522033691406,
+ "step": 3701
+ },
+ {
+ "epoch": 51.419397116644824,
+ "grad_norm": 0.2021809071302414,
+ "learning_rate": 0.0006,
+ "loss": 3.567544460296631,
+ "step": 3702
+ },
+ {
+ "epoch": 51.43337702053299,
+ "grad_norm": 0.23054654896259308,
+ "learning_rate": 0.0006,
+ "loss": 3.5927062034606934,
+ "step": 3703
+ },
+ {
+ "epoch": 51.44735692442114,
+ "grad_norm": 0.22398747503757477,
+ "learning_rate": 0.0006,
+ "loss": 3.5977213382720947,
+ "step": 3704
+ },
+ {
+ "epoch": 51.46133682830931,
+ "grad_norm": 0.2021128088235855,
+ "learning_rate": 0.0006,
+ "loss": 3.585836887359619,
+ "step": 3705
+ },
+ {
+ "epoch": 51.47531673219746,
+ "grad_norm": 0.23031292855739594,
+ "learning_rate": 0.0006,
+ "loss": 3.532315731048584,
+ "step": 3706
+ },
+ {
+ "epoch": 51.489296636085626,
+ "grad_norm": 0.26744455099105835,
+ "learning_rate": 0.0006,
+ "loss": 3.585782289505005,
+ "step": 3707
+ },
+ {
+ "epoch": 51.50327653997379,
+ "grad_norm": 0.2508980929851532,
+ "learning_rate": 0.0006,
+ "loss": 3.550276279449463,
+ "step": 3708
+ },
+ {
+ "epoch": 51.517256443861946,
+ "grad_norm": 0.2180585265159607,
+ "learning_rate": 0.0006,
+ "loss": 3.566798210144043,
+ "step": 3709
+ },
+ {
+ "epoch": 51.53123634775011,
+ "grad_norm": 0.18508869409561157,
+ "learning_rate": 0.0006,
+ "loss": 3.5295116901397705,
+ "step": 3710
+ },
+ {
+ "epoch": 51.54521625163827,
+ "grad_norm": 0.19017672538757324,
+ "learning_rate": 0.0006,
+ "loss": 3.5932717323303223,
+ "step": 3711
+ },
+ {
+ "epoch": 51.55919615552643,
+ "grad_norm": 0.2228020876646042,
+ "learning_rate": 0.0006,
+ "loss": 3.5660648345947266,
+ "step": 3712
+ },
+ {
+ "epoch": 51.57317605941459,
+ "grad_norm": 0.22948148846626282,
+ "learning_rate": 0.0006,
+ "loss": 3.5785627365112305,
+ "step": 3713
+ },
+ {
+ "epoch": 51.58715596330275,
+ "grad_norm": 0.2438911497592926,
+ "learning_rate": 0.0006,
+ "loss": 3.5885257720947266,
+ "step": 3714
+ },
+ {
+ "epoch": 51.60113586719091,
+ "grad_norm": 0.25012296438217163,
+ "learning_rate": 0.0006,
+ "loss": 3.577232599258423,
+ "step": 3715
+ },
+ {
+ "epoch": 51.615115771079076,
+ "grad_norm": 0.27102336287498474,
+ "learning_rate": 0.0006,
+ "loss": 3.5600078105926514,
+ "step": 3716
+ },
+ {
+ "epoch": 51.62909567496723,
+ "grad_norm": 0.26425355672836304,
+ "learning_rate": 0.0006,
+ "loss": 3.5694093704223633,
+ "step": 3717
+ },
+ {
+ "epoch": 51.643075578855395,
+ "grad_norm": 0.24292822182178497,
+ "learning_rate": 0.0006,
+ "loss": 3.5774331092834473,
+ "step": 3718
+ },
+ {
+ "epoch": 51.65705548274356,
+ "grad_norm": 0.22668084502220154,
+ "learning_rate": 0.0006,
+ "loss": 3.5912742614746094,
+ "step": 3719
+ },
+ {
+ "epoch": 51.671035386631715,
+ "grad_norm": 0.2090575248003006,
+ "learning_rate": 0.0006,
+ "loss": 3.5473170280456543,
+ "step": 3720
+ },
+ {
+ "epoch": 51.68501529051988,
+ "grad_norm": 0.22276616096496582,
+ "learning_rate": 0.0006,
+ "loss": 3.6076784133911133,
+ "step": 3721
+ },
+ {
+ "epoch": 51.69899519440804,
+ "grad_norm": 0.22105294466018677,
+ "learning_rate": 0.0006,
+ "loss": 3.5820791721343994,
+ "step": 3722
+ },
+ {
+ "epoch": 51.7129750982962,
+ "grad_norm": 0.19231240451335907,
+ "learning_rate": 0.0006,
+ "loss": 3.6017708778381348,
+ "step": 3723
+ },
+ {
+ "epoch": 51.72695500218436,
+ "grad_norm": 0.2050354927778244,
+ "learning_rate": 0.0006,
+ "loss": 3.5967769622802734,
+ "step": 3724
+ },
+ {
+ "epoch": 51.74093490607252,
+ "grad_norm": 0.19779305160045624,
+ "learning_rate": 0.0006,
+ "loss": 3.597214698791504,
+ "step": 3725
+ },
+ {
+ "epoch": 51.75491480996068,
+ "grad_norm": 0.22394844889640808,
+ "learning_rate": 0.0006,
+ "loss": 3.574063301086426,
+ "step": 3726
+ },
+ {
+ "epoch": 51.768894713848844,
+ "grad_norm": 0.2262638807296753,
+ "learning_rate": 0.0006,
+ "loss": 3.5754079818725586,
+ "step": 3727
+ },
+ {
+ "epoch": 51.782874617737,
+ "grad_norm": 0.2168288677930832,
+ "learning_rate": 0.0006,
+ "loss": 3.6079599857330322,
+ "step": 3728
+ },
+ {
+ "epoch": 51.796854521625164,
+ "grad_norm": 0.2035517394542694,
+ "learning_rate": 0.0006,
+ "loss": 3.5948667526245117,
+ "step": 3729
+ },
+ {
+ "epoch": 51.81083442551333,
+ "grad_norm": 0.20529425144195557,
+ "learning_rate": 0.0006,
+ "loss": 3.5589542388916016,
+ "step": 3730
+ },
+ {
+ "epoch": 51.824814329401484,
+ "grad_norm": 0.2464100867509842,
+ "learning_rate": 0.0006,
+ "loss": 3.5947155952453613,
+ "step": 3731
+ },
+ {
+ "epoch": 51.83879423328965,
+ "grad_norm": 0.28043219447135925,
+ "learning_rate": 0.0006,
+ "loss": 3.6102852821350098,
+ "step": 3732
+ },
+ {
+ "epoch": 51.8527741371778,
+ "grad_norm": 0.2879013121128082,
+ "learning_rate": 0.0006,
+ "loss": 3.5903573036193848,
+ "step": 3733
+ },
+ {
+ "epoch": 51.86675404106597,
+ "grad_norm": 0.2532044053077698,
+ "learning_rate": 0.0006,
+ "loss": 3.5704729557037354,
+ "step": 3734
+ },
+ {
+ "epoch": 51.88073394495413,
+ "grad_norm": 0.25126248598098755,
+ "learning_rate": 0.0006,
+ "loss": 3.5449633598327637,
+ "step": 3735
+ },
+ {
+ "epoch": 51.89471384884229,
+ "grad_norm": 0.2494364082813263,
+ "learning_rate": 0.0006,
+ "loss": 3.5825607776641846,
+ "step": 3736
+ },
+ {
+ "epoch": 51.90869375273045,
+ "grad_norm": 0.24867761135101318,
+ "learning_rate": 0.0006,
+ "loss": 3.5998034477233887,
+ "step": 3737
+ },
+ {
+ "epoch": 51.92267365661861,
+ "grad_norm": 0.2552012801170349,
+ "learning_rate": 0.0006,
+ "loss": 3.5487377643585205,
+ "step": 3738
+ },
+ {
+ "epoch": 51.93665356050677,
+ "grad_norm": 0.2243119329214096,
+ "learning_rate": 0.0006,
+ "loss": 3.6081466674804688,
+ "step": 3739
+ },
+ {
+ "epoch": 51.95063346439493,
+ "grad_norm": 0.2106700837612152,
+ "learning_rate": 0.0006,
+ "loss": 3.607586622238159,
+ "step": 3740
+ },
+ {
+ "epoch": 51.964613368283096,
+ "grad_norm": 0.2207096666097641,
+ "learning_rate": 0.0006,
+ "loss": 3.6094579696655273,
+ "step": 3741
+ },
+ {
+ "epoch": 51.97859327217125,
+ "grad_norm": 0.2310071736574173,
+ "learning_rate": 0.0006,
+ "loss": 3.5837807655334473,
+ "step": 3742
+ },
+ {
+ "epoch": 51.992573176059416,
+ "grad_norm": 0.258770614862442,
+ "learning_rate": 0.0006,
+ "loss": 3.639329433441162,
+ "step": 3743
+ },
+ {
+ "epoch": 52.0,
+ "grad_norm": 0.24004915356636047,
+ "learning_rate": 0.0006,
+ "loss": 3.6178512573242188,
+ "step": 3744
+ },
+ {
+ "epoch": 52.0,
+ "eval_loss": 3.97371244430542,
+ "eval_runtime": 46.1923,
+ "eval_samples_per_second": 52.866,
+ "eval_steps_per_second": 3.312,
+ "step": 3744
+ },
+ {
+ "epoch": 52.01397990388816,
+ "grad_norm": 0.21953323483467102,
+ "learning_rate": 0.0006,
+ "loss": 3.5929579734802246,
+ "step": 3745
+ },
+ {
+ "epoch": 52.02795980777632,
+ "grad_norm": 0.25547415018081665,
+ "learning_rate": 0.0006,
+ "loss": 3.5762600898742676,
+ "step": 3746
+ },
+ {
+ "epoch": 52.04193971166448,
+ "grad_norm": 0.28905144333839417,
+ "learning_rate": 0.0006,
+ "loss": 3.5794596672058105,
+ "step": 3747
+ },
+ {
+ "epoch": 52.05591961555265,
+ "grad_norm": 0.2618118226528168,
+ "learning_rate": 0.0006,
+ "loss": 3.543205499649048,
+ "step": 3748
+ },
+ {
+ "epoch": 52.0698995194408,
+ "grad_norm": 0.2288745492696762,
+ "learning_rate": 0.0006,
+ "loss": 3.562770366668701,
+ "step": 3749
+ },
+ {
+ "epoch": 52.083879423328966,
+ "grad_norm": 0.25327110290527344,
+ "learning_rate": 0.0006,
+ "loss": 3.5405054092407227,
+ "step": 3750
+ },
+ {
+ "epoch": 52.09785932721712,
+ "grad_norm": 0.2721746861934662,
+ "learning_rate": 0.0006,
+ "loss": 3.5650479793548584,
+ "step": 3751
+ },
+ {
+ "epoch": 52.111839231105286,
+ "grad_norm": 0.2890555262565613,
+ "learning_rate": 0.0006,
+ "loss": 3.556122303009033,
+ "step": 3752
+ },
+ {
+ "epoch": 52.12581913499345,
+ "grad_norm": 0.30541476607322693,
+ "learning_rate": 0.0006,
+ "loss": 3.544271469116211,
+ "step": 3753
+ },
+ {
+ "epoch": 52.139799038881605,
+ "grad_norm": 0.2555760443210602,
+ "learning_rate": 0.0006,
+ "loss": 3.5452728271484375,
+ "step": 3754
+ },
+ {
+ "epoch": 52.15377894276977,
+ "grad_norm": 0.2653098404407501,
+ "learning_rate": 0.0006,
+ "loss": 3.57212495803833,
+ "step": 3755
+ },
+ {
+ "epoch": 52.16775884665793,
+ "grad_norm": 0.2479168176651001,
+ "learning_rate": 0.0006,
+ "loss": 3.5893373489379883,
+ "step": 3756
+ },
+ {
+ "epoch": 52.18173875054609,
+ "grad_norm": 0.21718256175518036,
+ "learning_rate": 0.0006,
+ "loss": 3.5616965293884277,
+ "step": 3757
+ },
+ {
+ "epoch": 52.19571865443425,
+ "grad_norm": 0.22033235430717468,
+ "learning_rate": 0.0006,
+ "loss": 3.566401481628418,
+ "step": 3758
+ },
+ {
+ "epoch": 52.20969855832241,
+ "grad_norm": 0.2401825189590454,
+ "learning_rate": 0.0006,
+ "loss": 3.547682762145996,
+ "step": 3759
+ },
+ {
+ "epoch": 52.22367846221057,
+ "grad_norm": 0.24496418237686157,
+ "learning_rate": 0.0006,
+ "loss": 3.5405421257019043,
+ "step": 3760
+ },
+ {
+ "epoch": 52.237658366098735,
+ "grad_norm": 0.2311883270740509,
+ "learning_rate": 0.0006,
+ "loss": 3.5709781646728516,
+ "step": 3761
+ },
+ {
+ "epoch": 52.25163826998689,
+ "grad_norm": 0.20850200951099396,
+ "learning_rate": 0.0006,
+ "loss": 3.5563712120056152,
+ "step": 3762
+ },
+ {
+ "epoch": 52.265618173875055,
+ "grad_norm": 0.2073400765657425,
+ "learning_rate": 0.0006,
+ "loss": 3.542343854904175,
+ "step": 3763
+ },
+ {
+ "epoch": 52.27959807776322,
+ "grad_norm": 0.21886718273162842,
+ "learning_rate": 0.0006,
+ "loss": 3.5633034706115723,
+ "step": 3764
+ },
+ {
+ "epoch": 52.293577981651374,
+ "grad_norm": 0.2218562215566635,
+ "learning_rate": 0.0006,
+ "loss": 3.5644288063049316,
+ "step": 3765
+ },
+ {
+ "epoch": 52.30755788553954,
+ "grad_norm": 0.22043557465076447,
+ "learning_rate": 0.0006,
+ "loss": 3.564373731613159,
+ "step": 3766
+ },
+ {
+ "epoch": 52.3215377894277,
+ "grad_norm": 0.2095082402229309,
+ "learning_rate": 0.0006,
+ "loss": 3.5336289405822754,
+ "step": 3767
+ },
+ {
+ "epoch": 52.33551769331586,
+ "grad_norm": 0.21115876734256744,
+ "learning_rate": 0.0006,
+ "loss": 3.5761165618896484,
+ "step": 3768
+ },
+ {
+ "epoch": 52.34949759720402,
+ "grad_norm": 0.21558400988578796,
+ "learning_rate": 0.0006,
+ "loss": 3.573495388031006,
+ "step": 3769
+ },
+ {
+ "epoch": 52.36347750109218,
+ "grad_norm": 0.213745579123497,
+ "learning_rate": 0.0006,
+ "loss": 3.572171211242676,
+ "step": 3770
+ },
+ {
+ "epoch": 52.37745740498034,
+ "grad_norm": 0.1926180124282837,
+ "learning_rate": 0.0006,
+ "loss": 3.532592535018921,
+ "step": 3771
+ },
+ {
+ "epoch": 52.391437308868504,
+ "grad_norm": 0.1993863731622696,
+ "learning_rate": 0.0006,
+ "loss": 3.551880359649658,
+ "step": 3772
+ },
+ {
+ "epoch": 52.40541721275666,
+ "grad_norm": 0.2018740326166153,
+ "learning_rate": 0.0006,
+ "loss": 3.557328701019287,
+ "step": 3773
+ },
+ {
+ "epoch": 52.419397116644824,
+ "grad_norm": 0.19035610556602478,
+ "learning_rate": 0.0006,
+ "loss": 3.600301504135132,
+ "step": 3774
+ },
+ {
+ "epoch": 52.43337702053299,
+ "grad_norm": 0.20069538056850433,
+ "learning_rate": 0.0006,
+ "loss": 3.5938944816589355,
+ "step": 3775
+ },
+ {
+ "epoch": 52.44735692442114,
+ "grad_norm": 0.21255625784397125,
+ "learning_rate": 0.0006,
+ "loss": 3.561086893081665,
+ "step": 3776
+ },
+ {
+ "epoch": 52.46133682830931,
+ "grad_norm": 0.20132070779800415,
+ "learning_rate": 0.0006,
+ "loss": 3.5525574684143066,
+ "step": 3777
+ },
+ {
+ "epoch": 52.47531673219746,
+ "grad_norm": 0.20152916014194489,
+ "learning_rate": 0.0006,
+ "loss": 3.5697402954101562,
+ "step": 3778
+ },
+ {
+ "epoch": 52.489296636085626,
+ "grad_norm": 0.1984269767999649,
+ "learning_rate": 0.0006,
+ "loss": 3.5686168670654297,
+ "step": 3779
+ },
+ {
+ "epoch": 52.50327653997379,
+ "grad_norm": 0.212612584233284,
+ "learning_rate": 0.0006,
+ "loss": 3.5522124767303467,
+ "step": 3780
+ },
+ {
+ "epoch": 52.517256443861946,
+ "grad_norm": 0.21382521092891693,
+ "learning_rate": 0.0006,
+ "loss": 3.5692944526672363,
+ "step": 3781
+ },
+ {
+ "epoch": 52.53123634775011,
+ "grad_norm": 0.2118486911058426,
+ "learning_rate": 0.0006,
+ "loss": 3.562495708465576,
+ "step": 3782
+ },
+ {
+ "epoch": 52.54521625163827,
+ "grad_norm": 0.22253486514091492,
+ "learning_rate": 0.0006,
+ "loss": 3.5709781646728516,
+ "step": 3783
+ },
+ {
+ "epoch": 52.55919615552643,
+ "grad_norm": 0.23701436817646027,
+ "learning_rate": 0.0006,
+ "loss": 3.548953056335449,
+ "step": 3784
+ },
+ {
+ "epoch": 52.57317605941459,
+ "grad_norm": 0.21345193684101105,
+ "learning_rate": 0.0006,
+ "loss": 3.543029308319092,
+ "step": 3785
+ },
+ {
+ "epoch": 52.58715596330275,
+ "grad_norm": 0.1854170262813568,
+ "learning_rate": 0.0006,
+ "loss": 3.5490989685058594,
+ "step": 3786
+ },
+ {
+ "epoch": 52.60113586719091,
+ "grad_norm": 0.23733633756637573,
+ "learning_rate": 0.0006,
+ "loss": 3.5800132751464844,
+ "step": 3787
+ },
+ {
+ "epoch": 52.615115771079076,
+ "grad_norm": 0.26175495982170105,
+ "learning_rate": 0.0006,
+ "loss": 3.562596321105957,
+ "step": 3788
+ },
+ {
+ "epoch": 52.62909567496723,
+ "grad_norm": 0.23134057223796844,
+ "learning_rate": 0.0006,
+ "loss": 3.5685765743255615,
+ "step": 3789
+ },
+ {
+ "epoch": 52.643075578855395,
+ "grad_norm": 0.1974988877773285,
+ "learning_rate": 0.0006,
+ "loss": 3.570517063140869,
+ "step": 3790
+ },
+ {
+ "epoch": 52.65705548274356,
+ "grad_norm": 0.20049697160720825,
+ "learning_rate": 0.0006,
+ "loss": 3.573286533355713,
+ "step": 3791
+ },
+ {
+ "epoch": 52.671035386631715,
+ "grad_norm": 0.1956445872783661,
+ "learning_rate": 0.0006,
+ "loss": 3.565880537033081,
+ "step": 3792
+ },
+ {
+ "epoch": 52.68501529051988,
+ "grad_norm": 0.2082354575395584,
+ "learning_rate": 0.0006,
+ "loss": 3.587278366088867,
+ "step": 3793
+ },
+ {
+ "epoch": 52.69899519440804,
+ "grad_norm": 0.20923161506652832,
+ "learning_rate": 0.0006,
+ "loss": 3.569469451904297,
+ "step": 3794
+ },
+ {
+ "epoch": 52.7129750982962,
+ "grad_norm": 0.20482848584651947,
+ "learning_rate": 0.0006,
+ "loss": 3.5826265811920166,
+ "step": 3795
+ },
+ {
+ "epoch": 52.72695500218436,
+ "grad_norm": 0.20411530137062073,
+ "learning_rate": 0.0006,
+ "loss": 3.5870275497436523,
+ "step": 3796
+ },
+ {
+ "epoch": 52.74093490607252,
+ "grad_norm": 0.2205485701560974,
+ "learning_rate": 0.0006,
+ "loss": 3.58900785446167,
+ "step": 3797
+ },
+ {
+ "epoch": 52.75491480996068,
+ "grad_norm": 0.21134008467197418,
+ "learning_rate": 0.0006,
+ "loss": 3.591036558151245,
+ "step": 3798
+ },
+ {
+ "epoch": 52.768894713848844,
+ "grad_norm": 0.20001831650733948,
+ "learning_rate": 0.0006,
+ "loss": 3.5670390129089355,
+ "step": 3799
+ },
+ {
+ "epoch": 52.782874617737,
+ "grad_norm": 0.2175939679145813,
+ "learning_rate": 0.0006,
+ "loss": 3.594132423400879,
+ "step": 3800
+ },
+ {
+ "epoch": 52.796854521625164,
+ "grad_norm": 0.22054694592952728,
+ "learning_rate": 0.0006,
+ "loss": 3.5565545558929443,
+ "step": 3801
+ },
+ {
+ "epoch": 52.81083442551333,
+ "grad_norm": 0.22901731729507446,
+ "learning_rate": 0.0006,
+ "loss": 3.5837020874023438,
+ "step": 3802
+ },
+ {
+ "epoch": 52.824814329401484,
+ "grad_norm": 0.22492778301239014,
+ "learning_rate": 0.0006,
+ "loss": 3.608218193054199,
+ "step": 3803
+ },
+ {
+ "epoch": 52.83879423328965,
+ "grad_norm": 0.21645256876945496,
+ "learning_rate": 0.0006,
+ "loss": 3.5839202404022217,
+ "step": 3804
+ },
+ {
+ "epoch": 52.8527741371778,
+ "grad_norm": 0.19680161774158478,
+ "learning_rate": 0.0006,
+ "loss": 3.568756580352783,
+ "step": 3805
+ },
+ {
+ "epoch": 52.86675404106597,
+ "grad_norm": 0.2084486186504364,
+ "learning_rate": 0.0006,
+ "loss": 3.580197811126709,
+ "step": 3806
+ },
+ {
+ "epoch": 52.88073394495413,
+ "grad_norm": 0.19380393624305725,
+ "learning_rate": 0.0006,
+ "loss": 3.5871198177337646,
+ "step": 3807
+ },
+ {
+ "epoch": 52.89471384884229,
+ "grad_norm": 0.1962910294532776,
+ "learning_rate": 0.0006,
+ "loss": 3.5878777503967285,
+ "step": 3808
+ },
+ {
+ "epoch": 52.90869375273045,
+ "grad_norm": 0.23292803764343262,
+ "learning_rate": 0.0006,
+ "loss": 3.574855327606201,
+ "step": 3809
+ },
+ {
+ "epoch": 52.92267365661861,
+ "grad_norm": 0.26974233984947205,
+ "learning_rate": 0.0006,
+ "loss": 3.5731749534606934,
+ "step": 3810
+ },
+ {
+ "epoch": 52.93665356050677,
+ "grad_norm": 0.26665496826171875,
+ "learning_rate": 0.0006,
+ "loss": 3.552717685699463,
+ "step": 3811
+ },
+ {
+ "epoch": 52.95063346439493,
+ "grad_norm": 0.24156489968299866,
+ "learning_rate": 0.0006,
+ "loss": 3.581787109375,
+ "step": 3812
+ },
+ {
+ "epoch": 52.964613368283096,
+ "grad_norm": 0.22062325477600098,
+ "learning_rate": 0.0006,
+ "loss": 3.578994035720825,
+ "step": 3813
+ },
+ {
+ "epoch": 52.97859327217125,
+ "grad_norm": 0.19949151575565338,
+ "learning_rate": 0.0006,
+ "loss": 3.6157355308532715,
+ "step": 3814
+ },
+ {
+ "epoch": 52.992573176059416,
+ "grad_norm": 0.2157975435256958,
+ "learning_rate": 0.0006,
+ "loss": 3.5677759647369385,
+ "step": 3815
+ },
+ {
+ "epoch": 53.0,
+ "grad_norm": 0.23285679519176483,
+ "learning_rate": 0.0006,
+ "loss": 3.5541789531707764,
+ "step": 3816
+ },
+ {
+ "epoch": 53.0,
+ "eval_loss": 3.9737255573272705,
+ "eval_runtime": 46.0304,
+ "eval_samples_per_second": 53.052,
+ "eval_steps_per_second": 3.324,
+ "step": 3816
+ },
+ {
+ "epoch": 53.01397990388816,
+ "grad_norm": 0.212715283036232,
+ "learning_rate": 0.0006,
+ "loss": 3.5475640296936035,
+ "step": 3817
+ },
+ {
+ "epoch": 53.02795980777632,
+ "grad_norm": 0.24556505680084229,
+ "learning_rate": 0.0006,
+ "loss": 3.5197463035583496,
+ "step": 3818
+ },
+ {
+ "epoch": 53.04193971166448,
+ "grad_norm": 0.2898217737674713,
+ "learning_rate": 0.0006,
+ "loss": 3.527390956878662,
+ "step": 3819
+ },
+ {
+ "epoch": 53.05591961555265,
+ "grad_norm": 0.26151803135871887,
+ "learning_rate": 0.0006,
+ "loss": 3.5462024211883545,
+ "step": 3820
+ },
+ {
+ "epoch": 53.0698995194408,
+ "grad_norm": 0.24648059904575348,
+ "learning_rate": 0.0006,
+ "loss": 3.5584919452667236,
+ "step": 3821
+ },
+ {
+ "epoch": 53.083879423328966,
+ "grad_norm": 0.22295059263706207,
+ "learning_rate": 0.0006,
+ "loss": 3.517195701599121,
+ "step": 3822
+ },
+ {
+ "epoch": 53.09785932721712,
+ "grad_norm": 0.2206476330757141,
+ "learning_rate": 0.0006,
+ "loss": 3.570678234100342,
+ "step": 3823
+ },
+ {
+ "epoch": 53.111839231105286,
+ "grad_norm": 0.22069714963436127,
+ "learning_rate": 0.0006,
+ "loss": 3.5707359313964844,
+ "step": 3824
+ },
+ {
+ "epoch": 53.12581913499345,
+ "grad_norm": 0.21850740909576416,
+ "learning_rate": 0.0006,
+ "loss": 3.5730209350585938,
+ "step": 3825
+ },
+ {
+ "epoch": 53.139799038881605,
+ "grad_norm": 0.21554340422153473,
+ "learning_rate": 0.0006,
+ "loss": 3.5578367710113525,
+ "step": 3826
+ },
+ {
+ "epoch": 53.15377894276977,
+ "grad_norm": 0.21678747236728668,
+ "learning_rate": 0.0006,
+ "loss": 3.5603280067443848,
+ "step": 3827
+ },
+ {
+ "epoch": 53.16775884665793,
+ "grad_norm": 0.22017014026641846,
+ "learning_rate": 0.0006,
+ "loss": 3.577760696411133,
+ "step": 3828
+ },
+ {
+ "epoch": 53.18173875054609,
+ "grad_norm": 0.20485524833202362,
+ "learning_rate": 0.0006,
+ "loss": 3.574751853942871,
+ "step": 3829
+ },
+ {
+ "epoch": 53.19571865443425,
+ "grad_norm": 0.22951237857341766,
+ "learning_rate": 0.0006,
+ "loss": 3.5464377403259277,
+ "step": 3830
+ },
+ {
+ "epoch": 53.20969855832241,
+ "grad_norm": 0.2343965619802475,
+ "learning_rate": 0.0006,
+ "loss": 3.516113758087158,
+ "step": 3831
+ },
+ {
+ "epoch": 53.22367846221057,
+ "grad_norm": 0.24002069234848022,
+ "learning_rate": 0.0006,
+ "loss": 3.564629554748535,
+ "step": 3832
+ },
+ {
+ "epoch": 53.237658366098735,
+ "grad_norm": 0.23933765292167664,
+ "learning_rate": 0.0006,
+ "loss": 3.5518507957458496,
+ "step": 3833
+ },
+ {
+ "epoch": 53.25163826998689,
+ "grad_norm": 0.2188953459262848,
+ "learning_rate": 0.0006,
+ "loss": 3.5341856479644775,
+ "step": 3834
+ },
+ {
+ "epoch": 53.265618173875055,
+ "grad_norm": 0.22629091143608093,
+ "learning_rate": 0.0006,
+ "loss": 3.5479273796081543,
+ "step": 3835
+ },
+ {
+ "epoch": 53.27959807776322,
+ "grad_norm": 0.2386554479598999,
+ "learning_rate": 0.0006,
+ "loss": 3.6097445487976074,
+ "step": 3836
+ },
+ {
+ "epoch": 53.293577981651374,
+ "grad_norm": 0.23003390431404114,
+ "learning_rate": 0.0006,
+ "loss": 3.5435304641723633,
+ "step": 3837
+ },
+ {
+ "epoch": 53.30755788553954,
+ "grad_norm": 0.248053640127182,
+ "learning_rate": 0.0006,
+ "loss": 3.545290470123291,
+ "step": 3838
+ },
+ {
+ "epoch": 53.3215377894277,
+ "grad_norm": 0.23945583403110504,
+ "learning_rate": 0.0006,
+ "loss": 3.570158004760742,
+ "step": 3839
+ },
+ {
+ "epoch": 53.33551769331586,
+ "grad_norm": 0.22801059484481812,
+ "learning_rate": 0.0006,
+ "loss": 3.5600779056549072,
+ "step": 3840
+ },
+ {
+ "epoch": 53.34949759720402,
+ "grad_norm": 0.2303777039051056,
+ "learning_rate": 0.0006,
+ "loss": 3.576674222946167,
+ "step": 3841
+ },
+ {
+ "epoch": 53.36347750109218,
+ "grad_norm": 0.23318468034267426,
+ "learning_rate": 0.0006,
+ "loss": 3.5705552101135254,
+ "step": 3842
+ },
+ {
+ "epoch": 53.37745740498034,
+ "grad_norm": 0.2435566782951355,
+ "learning_rate": 0.0006,
+ "loss": 3.576536178588867,
+ "step": 3843
+ },
+ {
+ "epoch": 53.391437308868504,
+ "grad_norm": 0.2857200503349304,
+ "learning_rate": 0.0006,
+ "loss": 3.535977363586426,
+ "step": 3844
+ },
+ {
+ "epoch": 53.40541721275666,
+ "grad_norm": 0.2640133500099182,
+ "learning_rate": 0.0006,
+ "loss": 3.547731399536133,
+ "step": 3845
+ },
+ {
+ "epoch": 53.419397116644824,
+ "grad_norm": 0.22218745946884155,
+ "learning_rate": 0.0006,
+ "loss": 3.5798351764678955,
+ "step": 3846
+ },
+ {
+ "epoch": 53.43337702053299,
+ "grad_norm": 0.2537193298339844,
+ "learning_rate": 0.0006,
+ "loss": 3.5289204120635986,
+ "step": 3847
+ },
+ {
+ "epoch": 53.44735692442114,
+ "grad_norm": 0.28360968828201294,
+ "learning_rate": 0.0006,
+ "loss": 3.5503361225128174,
+ "step": 3848
+ },
+ {
+ "epoch": 53.46133682830931,
+ "grad_norm": 0.2892421782016754,
+ "learning_rate": 0.0006,
+ "loss": 3.5675411224365234,
+ "step": 3849
+ },
+ {
+ "epoch": 53.47531673219746,
+ "grad_norm": 0.28305584192276,
+ "learning_rate": 0.0006,
+ "loss": 3.573280096054077,
+ "step": 3850
+ },
+ {
+ "epoch": 53.489296636085626,
+ "grad_norm": 0.24628037214279175,
+ "learning_rate": 0.0006,
+ "loss": 3.5215024948120117,
+ "step": 3851
+ },
+ {
+ "epoch": 53.50327653997379,
+ "grad_norm": 0.2463715672492981,
+ "learning_rate": 0.0006,
+ "loss": 3.5790698528289795,
+ "step": 3852
+ },
+ {
+ "epoch": 53.517256443861946,
+ "grad_norm": 0.2646636664867401,
+ "learning_rate": 0.0006,
+ "loss": 3.589735269546509,
+ "step": 3853
+ },
+ {
+ "epoch": 53.53123634775011,
+ "grad_norm": 0.27668821811676025,
+ "learning_rate": 0.0006,
+ "loss": 3.5690393447875977,
+ "step": 3854
+ },
+ {
+ "epoch": 53.54521625163827,
+ "grad_norm": 0.2630347013473511,
+ "learning_rate": 0.0006,
+ "loss": 3.5846545696258545,
+ "step": 3855
+ },
+ {
+ "epoch": 53.55919615552643,
+ "grad_norm": 0.27177906036376953,
+ "learning_rate": 0.0006,
+ "loss": 3.5431671142578125,
+ "step": 3856
+ },
+ {
+ "epoch": 53.57317605941459,
+ "grad_norm": 0.27125081419944763,
+ "learning_rate": 0.0006,
+ "loss": 3.5905215740203857,
+ "step": 3857
+ },
+ {
+ "epoch": 53.58715596330275,
+ "grad_norm": 0.24802975356578827,
+ "learning_rate": 0.0006,
+ "loss": 3.5472917556762695,
+ "step": 3858
+ },
+ {
+ "epoch": 53.60113586719091,
+ "grad_norm": 0.23812460899353027,
+ "learning_rate": 0.0006,
+ "loss": 3.5917325019836426,
+ "step": 3859
+ },
+ {
+ "epoch": 53.615115771079076,
+ "grad_norm": 0.2597416937351227,
+ "learning_rate": 0.0006,
+ "loss": 3.5515074729919434,
+ "step": 3860
+ },
+ {
+ "epoch": 53.62909567496723,
+ "grad_norm": 0.24389132857322693,
+ "learning_rate": 0.0006,
+ "loss": 3.578125476837158,
+ "step": 3861
+ },
+ {
+ "epoch": 53.643075578855395,
+ "grad_norm": 0.23878274857997894,
+ "learning_rate": 0.0006,
+ "loss": 3.5612001419067383,
+ "step": 3862
+ },
+ {
+ "epoch": 53.65705548274356,
+ "grad_norm": 0.23248082399368286,
+ "learning_rate": 0.0006,
+ "loss": 3.5651350021362305,
+ "step": 3863
+ },
+ {
+ "epoch": 53.671035386631715,
+ "grad_norm": 0.22560833394527435,
+ "learning_rate": 0.0006,
+ "loss": 3.58971905708313,
+ "step": 3864
+ },
+ {
+ "epoch": 53.68501529051988,
+ "grad_norm": 0.22092120349407196,
+ "learning_rate": 0.0006,
+ "loss": 3.5567374229431152,
+ "step": 3865
+ },
+ {
+ "epoch": 53.69899519440804,
+ "grad_norm": 0.20171885192394257,
+ "learning_rate": 0.0006,
+ "loss": 3.5868449211120605,
+ "step": 3866
+ },
+ {
+ "epoch": 53.7129750982962,
+ "grad_norm": 0.2051871120929718,
+ "learning_rate": 0.0006,
+ "loss": 3.5853161811828613,
+ "step": 3867
+ },
+ {
+ "epoch": 53.72695500218436,
+ "grad_norm": 0.1912045031785965,
+ "learning_rate": 0.0006,
+ "loss": 3.5901622772216797,
+ "step": 3868
+ },
+ {
+ "epoch": 53.74093490607252,
+ "grad_norm": 0.20817188918590546,
+ "learning_rate": 0.0006,
+ "loss": 3.5759787559509277,
+ "step": 3869
+ },
+ {
+ "epoch": 53.75491480996068,
+ "grad_norm": 0.2157917469739914,
+ "learning_rate": 0.0006,
+ "loss": 3.5438575744628906,
+ "step": 3870
+ },
+ {
+ "epoch": 53.768894713848844,
+ "grad_norm": 0.2332053929567337,
+ "learning_rate": 0.0006,
+ "loss": 3.587697982788086,
+ "step": 3871
+ },
+ {
+ "epoch": 53.782874617737,
+ "grad_norm": 0.22700314223766327,
+ "learning_rate": 0.0006,
+ "loss": 3.586625337600708,
+ "step": 3872
+ },
+ {
+ "epoch": 53.796854521625164,
+ "grad_norm": 0.20737017691135406,
+ "learning_rate": 0.0006,
+ "loss": 3.552398204803467,
+ "step": 3873
+ },
+ {
+ "epoch": 53.81083442551333,
+ "grad_norm": 0.20355650782585144,
+ "learning_rate": 0.0006,
+ "loss": 3.5734331607818604,
+ "step": 3874
+ },
+ {
+ "epoch": 53.824814329401484,
+ "grad_norm": 0.18868018686771393,
+ "learning_rate": 0.0006,
+ "loss": 3.582509756088257,
+ "step": 3875
+ },
+ {
+ "epoch": 53.83879423328965,
+ "grad_norm": 0.20373275876045227,
+ "learning_rate": 0.0006,
+ "loss": 3.559354782104492,
+ "step": 3876
+ },
+ {
+ "epoch": 53.8527741371778,
+ "grad_norm": 0.1988871544599533,
+ "learning_rate": 0.0006,
+ "loss": 3.5575170516967773,
+ "step": 3877
+ },
+ {
+ "epoch": 53.86675404106597,
+ "grad_norm": 0.19602873921394348,
+ "learning_rate": 0.0006,
+ "loss": 3.5500855445861816,
+ "step": 3878
+ },
+ {
+ "epoch": 53.88073394495413,
+ "grad_norm": 0.201382577419281,
+ "learning_rate": 0.0006,
+ "loss": 3.563499927520752,
+ "step": 3879
+ },
+ {
+ "epoch": 53.89471384884229,
+ "grad_norm": 0.19682180881500244,
+ "learning_rate": 0.0006,
+ "loss": 3.586855888366699,
+ "step": 3880
+ },
+ {
+ "epoch": 53.90869375273045,
+ "grad_norm": 0.19423548877239227,
+ "learning_rate": 0.0006,
+ "loss": 3.5840401649475098,
+ "step": 3881
+ },
+ {
+ "epoch": 53.92267365661861,
+ "grad_norm": 0.1970449835062027,
+ "learning_rate": 0.0006,
+ "loss": 3.554568290710449,
+ "step": 3882
+ },
+ {
+ "epoch": 53.93665356050677,
+ "grad_norm": 0.20274291932582855,
+ "learning_rate": 0.0006,
+ "loss": 3.5928239822387695,
+ "step": 3883
+ },
+ {
+ "epoch": 53.95063346439493,
+ "grad_norm": 0.18485035002231598,
+ "learning_rate": 0.0006,
+ "loss": 3.576934337615967,
+ "step": 3884
+ },
+ {
+ "epoch": 53.964613368283096,
+ "grad_norm": 0.18437646329402924,
+ "learning_rate": 0.0006,
+ "loss": 3.574990749359131,
+ "step": 3885
+ },
+ {
+ "epoch": 53.97859327217125,
+ "grad_norm": 0.18616823852062225,
+ "learning_rate": 0.0006,
+ "loss": 3.5566892623901367,
+ "step": 3886
+ },
+ {
+ "epoch": 53.992573176059416,
+ "grad_norm": 0.19502122700214386,
+ "learning_rate": 0.0006,
+ "loss": 3.604814052581787,
+ "step": 3887
+ },
+ {
+ "epoch": 54.0,
+ "grad_norm": 0.2657789885997772,
+ "learning_rate": 0.0006,
+ "loss": 3.5094165802001953,
+ "step": 3888
+ },
+ {
+ "epoch": 54.0,
+ "eval_loss": 3.965742349624634,
+ "eval_runtime": 45.5851,
+ "eval_samples_per_second": 53.57,
+ "eval_steps_per_second": 3.356,
+ "step": 3888
+ },
+ {
+ "epoch": 54.01397990388816,
+ "grad_norm": 0.27879253029823303,
+ "learning_rate": 0.0006,
+ "loss": 3.565103530883789,
+ "step": 3889
+ },
+ {
+ "epoch": 54.02795980777632,
+ "grad_norm": 0.2959246337413788,
+ "learning_rate": 0.0006,
+ "loss": 3.5378212928771973,
+ "step": 3890
+ },
+ {
+ "epoch": 54.04193971166448,
+ "grad_norm": 0.32719552516937256,
+ "learning_rate": 0.0006,
+ "loss": 3.5566751956939697,
+ "step": 3891
+ },
+ {
+ "epoch": 54.05591961555265,
+ "grad_norm": 0.36854541301727295,
+ "learning_rate": 0.0006,
+ "loss": 3.5363879203796387,
+ "step": 3892
+ },
+ {
+ "epoch": 54.0698995194408,
+ "grad_norm": 0.34325551986694336,
+ "learning_rate": 0.0006,
+ "loss": 3.5306153297424316,
+ "step": 3893
+ },
+ {
+ "epoch": 54.083879423328966,
+ "grad_norm": 0.2798653244972229,
+ "learning_rate": 0.0006,
+ "loss": 3.5642261505126953,
+ "step": 3894
+ },
+ {
+ "epoch": 54.09785932721712,
+ "grad_norm": 0.24857765436172485,
+ "learning_rate": 0.0006,
+ "loss": 3.50216007232666,
+ "step": 3895
+ },
+ {
+ "epoch": 54.111839231105286,
+ "grad_norm": 0.2943299114704132,
+ "learning_rate": 0.0006,
+ "loss": 3.524904251098633,
+ "step": 3896
+ },
+ {
+ "epoch": 54.12581913499345,
+ "grad_norm": 0.2791048586368561,
+ "learning_rate": 0.0006,
+ "loss": 3.56490421295166,
+ "step": 3897
+ },
+ {
+ "epoch": 54.139799038881605,
+ "grad_norm": 0.2781159579753876,
+ "learning_rate": 0.0006,
+ "loss": 3.536180019378662,
+ "step": 3898
+ },
+ {
+ "epoch": 54.15377894276977,
+ "grad_norm": 0.30359897017478943,
+ "learning_rate": 0.0006,
+ "loss": 3.546919345855713,
+ "step": 3899
+ },
+ {
+ "epoch": 54.16775884665793,
+ "grad_norm": 0.2738530933856964,
+ "learning_rate": 0.0006,
+ "loss": 3.547968864440918,
+ "step": 3900
+ },
+ {
+ "epoch": 54.18173875054609,
+ "grad_norm": 0.24783718585968018,
+ "learning_rate": 0.0006,
+ "loss": 3.5802721977233887,
+ "step": 3901
+ },
+ {
+ "epoch": 54.19571865443425,
+ "grad_norm": 0.2544802725315094,
+ "learning_rate": 0.0006,
+ "loss": 3.5556836128234863,
+ "step": 3902
+ },
+ {
+ "epoch": 54.20969855832241,
+ "grad_norm": 0.26695969700813293,
+ "learning_rate": 0.0006,
+ "loss": 3.534266471862793,
+ "step": 3903
+ },
+ {
+ "epoch": 54.22367846221057,
+ "grad_norm": 0.24152538180351257,
+ "learning_rate": 0.0006,
+ "loss": 3.534069538116455,
+ "step": 3904
+ },
+ {
+ "epoch": 54.237658366098735,
+ "grad_norm": 0.21859917044639587,
+ "learning_rate": 0.0006,
+ "loss": 3.535362958908081,
+ "step": 3905
+ },
+ {
+ "epoch": 54.25163826998689,
+ "grad_norm": 0.24676479399204254,
+ "learning_rate": 0.0006,
+ "loss": 3.567283868789673,
+ "step": 3906
+ },
+ {
+ "epoch": 54.265618173875055,
+ "grad_norm": 0.26998138427734375,
+ "learning_rate": 0.0006,
+ "loss": 3.518892765045166,
+ "step": 3907
+ },
+ {
+ "epoch": 54.27959807776322,
+ "grad_norm": 0.30108749866485596,
+ "learning_rate": 0.0006,
+ "loss": 3.5865135192871094,
+ "step": 3908
+ },
+ {
+ "epoch": 54.293577981651374,
+ "grad_norm": 0.31310492753982544,
+ "learning_rate": 0.0006,
+ "loss": 3.546637535095215,
+ "step": 3909
+ },
+ {
+ "epoch": 54.30755788553954,
+ "grad_norm": 0.2994784712791443,
+ "learning_rate": 0.0006,
+ "loss": 3.5441226959228516,
+ "step": 3910
+ },
+ {
+ "epoch": 54.3215377894277,
+ "grad_norm": 0.25010061264038086,
+ "learning_rate": 0.0006,
+ "loss": 3.5619735717773438,
+ "step": 3911
+ },
+ {
+ "epoch": 54.33551769331586,
+ "grad_norm": 0.253129780292511,
+ "learning_rate": 0.0006,
+ "loss": 3.530210494995117,
+ "step": 3912
+ },
+ {
+ "epoch": 54.34949759720402,
+ "grad_norm": 0.2652498781681061,
+ "learning_rate": 0.0006,
+ "loss": 3.534478187561035,
+ "step": 3913
+ },
+ {
+ "epoch": 54.36347750109218,
+ "grad_norm": 0.250503808259964,
+ "learning_rate": 0.0006,
+ "loss": 3.545886516571045,
+ "step": 3914
+ },
+ {
+ "epoch": 54.37745740498034,
+ "grad_norm": 0.22186073660850525,
+ "learning_rate": 0.0006,
+ "loss": 3.5884604454040527,
+ "step": 3915
+ },
+ {
+ "epoch": 54.391437308868504,
+ "grad_norm": 0.21128980815410614,
+ "learning_rate": 0.0006,
+ "loss": 3.527862548828125,
+ "step": 3916
+ },
+ {
+ "epoch": 54.40541721275666,
+ "grad_norm": 0.23184002935886383,
+ "learning_rate": 0.0006,
+ "loss": 3.5599637031555176,
+ "step": 3917
+ },
+ {
+ "epoch": 54.419397116644824,
+ "grad_norm": 0.23710627853870392,
+ "learning_rate": 0.0006,
+ "loss": 3.54667329788208,
+ "step": 3918
+ },
+ {
+ "epoch": 54.43337702053299,
+ "grad_norm": 0.2314598113298416,
+ "learning_rate": 0.0006,
+ "loss": 3.518406391143799,
+ "step": 3919
+ },
+ {
+ "epoch": 54.44735692442114,
+ "grad_norm": 0.21623452007770538,
+ "learning_rate": 0.0006,
+ "loss": 3.5749731063842773,
+ "step": 3920
+ },
+ {
+ "epoch": 54.46133682830931,
+ "grad_norm": 0.22832012176513672,
+ "learning_rate": 0.0006,
+ "loss": 3.57436466217041,
+ "step": 3921
+ },
+ {
+ "epoch": 54.47531673219746,
+ "grad_norm": 0.2184043526649475,
+ "learning_rate": 0.0006,
+ "loss": 3.578040838241577,
+ "step": 3922
+ },
+ {
+ "epoch": 54.489296636085626,
+ "grad_norm": 0.2302335649728775,
+ "learning_rate": 0.0006,
+ "loss": 3.5646257400512695,
+ "step": 3923
+ },
+ {
+ "epoch": 54.50327653997379,
+ "grad_norm": 0.21635375916957855,
+ "learning_rate": 0.0006,
+ "loss": 3.546786308288574,
+ "step": 3924
+ },
+ {
+ "epoch": 54.517256443861946,
+ "grad_norm": 0.22332443296909332,
+ "learning_rate": 0.0006,
+ "loss": 3.5804502964019775,
+ "step": 3925
+ },
+ {
+ "epoch": 54.53123634775011,
+ "grad_norm": 0.21662919223308563,
+ "learning_rate": 0.0006,
+ "loss": 3.567797899246216,
+ "step": 3926
+ },
+ {
+ "epoch": 54.54521625163827,
+ "grad_norm": 0.21345169842243195,
+ "learning_rate": 0.0006,
+ "loss": 3.5746283531188965,
+ "step": 3927
+ },
+ {
+ "epoch": 54.55919615552643,
+ "grad_norm": 0.2111794501543045,
+ "learning_rate": 0.0006,
+ "loss": 3.5626277923583984,
+ "step": 3928
+ },
+ {
+ "epoch": 54.57317605941459,
+ "grad_norm": 0.22575712203979492,
+ "learning_rate": 0.0006,
+ "loss": 3.5856311321258545,
+ "step": 3929
+ },
+ {
+ "epoch": 54.58715596330275,
+ "grad_norm": 0.22963617742061615,
+ "learning_rate": 0.0006,
+ "loss": 3.584038257598877,
+ "step": 3930
+ },
+ {
+ "epoch": 54.60113586719091,
+ "grad_norm": 0.21805310249328613,
+ "learning_rate": 0.0006,
+ "loss": 3.5603089332580566,
+ "step": 3931
+ },
+ {
+ "epoch": 54.615115771079076,
+ "grad_norm": 0.22830283641815186,
+ "learning_rate": 0.0006,
+ "loss": 3.5533390045166016,
+ "step": 3932
+ },
+ {
+ "epoch": 54.62909567496723,
+ "grad_norm": 0.24158291518688202,
+ "learning_rate": 0.0006,
+ "loss": 3.5437779426574707,
+ "step": 3933
+ },
+ {
+ "epoch": 54.643075578855395,
+ "grad_norm": 0.22687768936157227,
+ "learning_rate": 0.0006,
+ "loss": 3.566315174102783,
+ "step": 3934
+ },
+ {
+ "epoch": 54.65705548274356,
+ "grad_norm": 0.21220184862613678,
+ "learning_rate": 0.0006,
+ "loss": 3.5772881507873535,
+ "step": 3935
+ },
+ {
+ "epoch": 54.671035386631715,
+ "grad_norm": 0.19508333504199982,
+ "learning_rate": 0.0006,
+ "loss": 3.5213584899902344,
+ "step": 3936
+ },
+ {
+ "epoch": 54.68501529051988,
+ "grad_norm": 0.199599027633667,
+ "learning_rate": 0.0006,
+ "loss": 3.553925037384033,
+ "step": 3937
+ },
+ {
+ "epoch": 54.69899519440804,
+ "grad_norm": 0.2063189297914505,
+ "learning_rate": 0.0006,
+ "loss": 3.5706050395965576,
+ "step": 3938
+ },
+ {
+ "epoch": 54.7129750982962,
+ "grad_norm": 0.2056119441986084,
+ "learning_rate": 0.0006,
+ "loss": 3.557199478149414,
+ "step": 3939
+ },
+ {
+ "epoch": 54.72695500218436,
+ "grad_norm": 0.2192074954509735,
+ "learning_rate": 0.0006,
+ "loss": 3.5869479179382324,
+ "step": 3940
+ },
+ {
+ "epoch": 54.74093490607252,
+ "grad_norm": 0.19796597957611084,
+ "learning_rate": 0.0006,
+ "loss": 3.559929609298706,
+ "step": 3941
+ },
+ {
+ "epoch": 54.75491480996068,
+ "grad_norm": 0.19003179669380188,
+ "learning_rate": 0.0006,
+ "loss": 3.5481486320495605,
+ "step": 3942
+ },
+ {
+ "epoch": 54.768894713848844,
+ "grad_norm": 0.189231738448143,
+ "learning_rate": 0.0006,
+ "loss": 3.5603561401367188,
+ "step": 3943
+ },
+ {
+ "epoch": 54.782874617737,
+ "grad_norm": 0.20949427783489227,
+ "learning_rate": 0.0006,
+ "loss": 3.567026138305664,
+ "step": 3944
+ },
+ {
+ "epoch": 54.796854521625164,
+ "grad_norm": 0.21650178730487823,
+ "learning_rate": 0.0006,
+ "loss": 3.5981621742248535,
+ "step": 3945
+ },
+ {
+ "epoch": 54.81083442551333,
+ "grad_norm": 0.21941770613193512,
+ "learning_rate": 0.0006,
+ "loss": 3.590226173400879,
+ "step": 3946
+ },
+ {
+ "epoch": 54.824814329401484,
+ "grad_norm": 0.2169734537601471,
+ "learning_rate": 0.0006,
+ "loss": 3.592764139175415,
+ "step": 3947
+ },
+ {
+ "epoch": 54.83879423328965,
+ "grad_norm": 0.20309467613697052,
+ "learning_rate": 0.0006,
+ "loss": 3.5706393718719482,
+ "step": 3948
+ },
+ {
+ "epoch": 54.8527741371778,
+ "grad_norm": 0.21803754568099976,
+ "learning_rate": 0.0006,
+ "loss": 3.5816526412963867,
+ "step": 3949
+ },
+ {
+ "epoch": 54.86675404106597,
+ "grad_norm": 0.22217069566249847,
+ "learning_rate": 0.0006,
+ "loss": 3.5895018577575684,
+ "step": 3950
+ },
+ {
+ "epoch": 54.88073394495413,
+ "grad_norm": 0.21204866468906403,
+ "learning_rate": 0.0006,
+ "loss": 3.5574231147766113,
+ "step": 3951
+ },
+ {
+ "epoch": 54.89471384884229,
+ "grad_norm": 0.2173423171043396,
+ "learning_rate": 0.0006,
+ "loss": 3.564763069152832,
+ "step": 3952
+ },
+ {
+ "epoch": 54.90869375273045,
+ "grad_norm": 0.2039082646369934,
+ "learning_rate": 0.0006,
+ "loss": 3.59708309173584,
+ "step": 3953
+ },
+ {
+ "epoch": 54.92267365661861,
+ "grad_norm": 0.20248384773731232,
+ "learning_rate": 0.0006,
+ "loss": 3.587890148162842,
+ "step": 3954
+ },
+ {
+ "epoch": 54.93665356050677,
+ "grad_norm": 0.20693068206310272,
+ "learning_rate": 0.0006,
+ "loss": 3.5569000244140625,
+ "step": 3955
+ },
+ {
+ "epoch": 54.95063346439493,
+ "grad_norm": 0.2109357714653015,
+ "learning_rate": 0.0006,
+ "loss": 3.552126884460449,
+ "step": 3956
+ },
+ {
+ "epoch": 54.964613368283096,
+ "grad_norm": 0.2278970628976822,
+ "learning_rate": 0.0006,
+ "loss": 3.564998149871826,
+ "step": 3957
+ },
+ {
+ "epoch": 54.97859327217125,
+ "grad_norm": 0.21663756668567657,
+ "learning_rate": 0.0006,
+ "loss": 3.571608543395996,
+ "step": 3958
+ },
+ {
+ "epoch": 54.992573176059416,
+ "grad_norm": 0.19653232395648956,
+ "learning_rate": 0.0006,
+ "loss": 3.5885231494903564,
+ "step": 3959
+ },
+ {
+ "epoch": 55.0,
+ "grad_norm": 0.21956856548786163,
+ "learning_rate": 0.0006,
+ "loss": 3.4966204166412354,
+ "step": 3960
+ },
+ {
+ "epoch": 55.0,
+ "eval_loss": 3.972649097442627,
+ "eval_runtime": 45.2298,
+ "eval_samples_per_second": 53.991,
+ "eval_steps_per_second": 3.383,
+ "step": 3960
+ },
+ {
+ "epoch": 55.01397990388816,
+ "grad_norm": 0.22733832895755768,
+ "learning_rate": 0.0006,
+ "loss": 3.546975612640381,
+ "step": 3961
+ },
+ {
+ "epoch": 55.02795980777632,
+ "grad_norm": 0.25451111793518066,
+ "learning_rate": 0.0006,
+ "loss": 3.54240083694458,
+ "step": 3962
+ },
+ {
+ "epoch": 55.04193971166448,
+ "grad_norm": 0.2394949048757553,
+ "learning_rate": 0.0006,
+ "loss": 3.5492677688598633,
+ "step": 3963
+ },
+ {
+ "epoch": 55.05591961555265,
+ "grad_norm": 0.2306671440601349,
+ "learning_rate": 0.0006,
+ "loss": 3.524200916290283,
+ "step": 3964
+ },
+ {
+ "epoch": 55.0698995194408,
+ "grad_norm": 0.2307029813528061,
+ "learning_rate": 0.0006,
+ "loss": 3.509249687194824,
+ "step": 3965
+ },
+ {
+ "epoch": 55.083879423328966,
+ "grad_norm": 0.24812111258506775,
+ "learning_rate": 0.0006,
+ "loss": 3.5500473976135254,
+ "step": 3966
+ },
+ {
+ "epoch": 55.09785932721712,
+ "grad_norm": 0.28564271330833435,
+ "learning_rate": 0.0006,
+ "loss": 3.5178303718566895,
+ "step": 3967
+ },
+ {
+ "epoch": 55.111839231105286,
+ "grad_norm": 0.26979005336761475,
+ "learning_rate": 0.0006,
+ "loss": 3.5306806564331055,
+ "step": 3968
+ },
+ {
+ "epoch": 55.12581913499345,
+ "grad_norm": 0.24274848401546478,
+ "learning_rate": 0.0006,
+ "loss": 3.5758519172668457,
+ "step": 3969
+ },
+ {
+ "epoch": 55.139799038881605,
+ "grad_norm": 0.2560444474220276,
+ "learning_rate": 0.0006,
+ "loss": 3.5417323112487793,
+ "step": 3970
+ },
+ {
+ "epoch": 55.15377894276977,
+ "grad_norm": 0.2553671598434448,
+ "learning_rate": 0.0006,
+ "loss": 3.5258004665374756,
+ "step": 3971
+ },
+ {
+ "epoch": 55.16775884665793,
+ "grad_norm": 0.2170111984014511,
+ "learning_rate": 0.0006,
+ "loss": 3.514847755432129,
+ "step": 3972
+ },
+ {
+ "epoch": 55.18173875054609,
+ "grad_norm": 0.20854522287845612,
+ "learning_rate": 0.0006,
+ "loss": 3.5248336791992188,
+ "step": 3973
+ },
+ {
+ "epoch": 55.19571865443425,
+ "grad_norm": 0.21873287856578827,
+ "learning_rate": 0.0006,
+ "loss": 3.5468008518218994,
+ "step": 3974
+ },
+ {
+ "epoch": 55.20969855832241,
+ "grad_norm": 0.21194154024124146,
+ "learning_rate": 0.0006,
+ "loss": 3.568512439727783,
+ "step": 3975
+ },
+ {
+ "epoch": 55.22367846221057,
+ "grad_norm": 0.23534680902957916,
+ "learning_rate": 0.0006,
+ "loss": 3.5285420417785645,
+ "step": 3976
+ },
+ {
+ "epoch": 55.237658366098735,
+ "grad_norm": 0.22674795985221863,
+ "learning_rate": 0.0006,
+ "loss": 3.5399436950683594,
+ "step": 3977
+ },
+ {
+ "epoch": 55.25163826998689,
+ "grad_norm": 0.2248486578464508,
+ "learning_rate": 0.0006,
+ "loss": 3.5241036415100098,
+ "step": 3978
+ },
+ {
+ "epoch": 55.265618173875055,
+ "grad_norm": 0.241151362657547,
+ "learning_rate": 0.0006,
+ "loss": 3.547079086303711,
+ "step": 3979
+ },
+ {
+ "epoch": 55.27959807776322,
+ "grad_norm": 0.2783249318599701,
+ "learning_rate": 0.0006,
+ "loss": 3.5442988872528076,
+ "step": 3980
+ },
+ {
+ "epoch": 55.293577981651374,
+ "grad_norm": 0.2743528485298157,
+ "learning_rate": 0.0006,
+ "loss": 3.529618978500366,
+ "step": 3981
+ },
+ {
+ "epoch": 55.30755788553954,
+ "grad_norm": 0.23901724815368652,
+ "learning_rate": 0.0006,
+ "loss": 3.5379443168640137,
+ "step": 3982
+ },
+ {
+ "epoch": 55.3215377894277,
+ "grad_norm": 0.22758841514587402,
+ "learning_rate": 0.0006,
+ "loss": 3.5446794033050537,
+ "step": 3983
+ },
+ {
+ "epoch": 55.33551769331586,
+ "grad_norm": 0.22634629905223846,
+ "learning_rate": 0.0006,
+ "loss": 3.521944522857666,
+ "step": 3984
+ },
+ {
+ "epoch": 55.34949759720402,
+ "grad_norm": 0.23372086882591248,
+ "learning_rate": 0.0006,
+ "loss": 3.565023899078369,
+ "step": 3985
+ },
+ {
+ "epoch": 55.36347750109218,
+ "grad_norm": 0.24722231924533844,
+ "learning_rate": 0.0006,
+ "loss": 3.535661220550537,
+ "step": 3986
+ },
+ {
+ "epoch": 55.37745740498034,
+ "grad_norm": 0.21684594452381134,
+ "learning_rate": 0.0006,
+ "loss": 3.59070086479187,
+ "step": 3987
+ },
+ {
+ "epoch": 55.391437308868504,
+ "grad_norm": 0.186308816075325,
+ "learning_rate": 0.0006,
+ "loss": 3.5373833179473877,
+ "step": 3988
+ },
+ {
+ "epoch": 55.40541721275666,
+ "grad_norm": 0.2240687608718872,
+ "learning_rate": 0.0006,
+ "loss": 3.613295555114746,
+ "step": 3989
+ },
+ {
+ "epoch": 55.419397116644824,
+ "grad_norm": 0.25724494457244873,
+ "learning_rate": 0.0006,
+ "loss": 3.581005096435547,
+ "step": 3990
+ },
+ {
+ "epoch": 55.43337702053299,
+ "grad_norm": 0.24023419618606567,
+ "learning_rate": 0.0006,
+ "loss": 3.563951015472412,
+ "step": 3991
+ },
+ {
+ "epoch": 55.44735692442114,
+ "grad_norm": 0.21473391354084015,
+ "learning_rate": 0.0006,
+ "loss": 3.5444185733795166,
+ "step": 3992
+ },
+ {
+ "epoch": 55.46133682830931,
+ "grad_norm": 0.20466852188110352,
+ "learning_rate": 0.0006,
+ "loss": 3.5585713386535645,
+ "step": 3993
+ },
+ {
+ "epoch": 55.47531673219746,
+ "grad_norm": 0.20925740897655487,
+ "learning_rate": 0.0006,
+ "loss": 3.5656747817993164,
+ "step": 3994
+ },
+ {
+ "epoch": 55.489296636085626,
+ "grad_norm": 0.2309556007385254,
+ "learning_rate": 0.0006,
+ "loss": 3.5653891563415527,
+ "step": 3995
+ },
+ {
+ "epoch": 55.50327653997379,
+ "grad_norm": 0.24270877242088318,
+ "learning_rate": 0.0006,
+ "loss": 3.5275917053222656,
+ "step": 3996
+ },
+ {
+ "epoch": 55.517256443861946,
+ "grad_norm": 0.22749851644039154,
+ "learning_rate": 0.0006,
+ "loss": 3.5392730236053467,
+ "step": 3997
+ },
+ {
+ "epoch": 55.53123634775011,
+ "grad_norm": 0.21618196368217468,
+ "learning_rate": 0.0006,
+ "loss": 3.5581812858581543,
+ "step": 3998
+ },
+ {
+ "epoch": 55.54521625163827,
+ "grad_norm": 0.22232134640216827,
+ "learning_rate": 0.0006,
+ "loss": 3.5340118408203125,
+ "step": 3999
+ },
+ {
+ "epoch": 55.55919615552643,
+ "grad_norm": 0.24543501436710358,
+ "learning_rate": 0.0006,
+ "loss": 3.572153329849243,
+ "step": 4000
+ },
+ {
+ "epoch": 55.57317605941459,
+ "grad_norm": 0.2385311722755432,
+ "learning_rate": 0.0006,
+ "loss": 3.5366618633270264,
+ "step": 4001
+ },
+ {
+ "epoch": 55.58715596330275,
+ "grad_norm": 0.27977821230888367,
+ "learning_rate": 0.0006,
+ "loss": 3.5788960456848145,
+ "step": 4002
+ },
+ {
+ "epoch": 55.60113586719091,
+ "grad_norm": 0.2929013967514038,
+ "learning_rate": 0.0006,
+ "loss": 3.61065936088562,
+ "step": 4003
+ },
+ {
+ "epoch": 55.615115771079076,
+ "grad_norm": 0.27820730209350586,
+ "learning_rate": 0.0006,
+ "loss": 3.538694381713867,
+ "step": 4004
+ },
+ {
+ "epoch": 55.62909567496723,
+ "grad_norm": 0.24188996851444244,
+ "learning_rate": 0.0006,
+ "loss": 3.571709632873535,
+ "step": 4005
+ },
+ {
+ "epoch": 55.643075578855395,
+ "grad_norm": 0.21659360826015472,
+ "learning_rate": 0.0006,
+ "loss": 3.5431199073791504,
+ "step": 4006
+ },
+ {
+ "epoch": 55.65705548274356,
+ "grad_norm": 0.23356232047080994,
+ "learning_rate": 0.0006,
+ "loss": 3.5664005279541016,
+ "step": 4007
+ },
+ {
+ "epoch": 55.671035386631715,
+ "grad_norm": 0.21523472666740417,
+ "learning_rate": 0.0006,
+ "loss": 3.575711250305176,
+ "step": 4008
+ },
+ {
+ "epoch": 55.68501529051988,
+ "grad_norm": 0.22101815044879913,
+ "learning_rate": 0.0006,
+ "loss": 3.5843849182128906,
+ "step": 4009
+ },
+ {
+ "epoch": 55.69899519440804,
+ "grad_norm": 0.24153906106948853,
+ "learning_rate": 0.0006,
+ "loss": 3.5737733840942383,
+ "step": 4010
+ },
+ {
+ "epoch": 55.7129750982962,
+ "grad_norm": 0.2181350439786911,
+ "learning_rate": 0.0006,
+ "loss": 3.582613945007324,
+ "step": 4011
+ },
+ {
+ "epoch": 55.72695500218436,
+ "grad_norm": 0.21046742796897888,
+ "learning_rate": 0.0006,
+ "loss": 3.5380563735961914,
+ "step": 4012
+ },
+ {
+ "epoch": 55.74093490607252,
+ "grad_norm": 0.23996953666210175,
+ "learning_rate": 0.0006,
+ "loss": 3.57753849029541,
+ "step": 4013
+ },
+ {
+ "epoch": 55.75491480996068,
+ "grad_norm": 0.24543973803520203,
+ "learning_rate": 0.0006,
+ "loss": 3.578747272491455,
+ "step": 4014
+ },
+ {
+ "epoch": 55.768894713848844,
+ "grad_norm": 0.23597940802574158,
+ "learning_rate": 0.0006,
+ "loss": 3.5816988945007324,
+ "step": 4015
+ },
+ {
+ "epoch": 55.782874617737,
+ "grad_norm": 0.237411230802536,
+ "learning_rate": 0.0006,
+ "loss": 3.5659806728363037,
+ "step": 4016
+ },
+ {
+ "epoch": 55.796854521625164,
+ "grad_norm": 0.23947440087795258,
+ "learning_rate": 0.0006,
+ "loss": 3.545125961303711,
+ "step": 4017
+ },
+ {
+ "epoch": 55.81083442551333,
+ "grad_norm": 0.21562735736370087,
+ "learning_rate": 0.0006,
+ "loss": 3.5571303367614746,
+ "step": 4018
+ },
+ {
+ "epoch": 55.824814329401484,
+ "grad_norm": 0.21958434581756592,
+ "learning_rate": 0.0006,
+ "loss": 3.5243420600891113,
+ "step": 4019
+ },
+ {
+ "epoch": 55.83879423328965,
+ "grad_norm": 0.23856471478939056,
+ "learning_rate": 0.0006,
+ "loss": 3.586078643798828,
+ "step": 4020
+ },
+ {
+ "epoch": 55.8527741371778,
+ "grad_norm": 0.20703551173210144,
+ "learning_rate": 0.0006,
+ "loss": 3.5503201484680176,
+ "step": 4021
+ },
+ {
+ "epoch": 55.86675404106597,
+ "grad_norm": 0.21183231472969055,
+ "learning_rate": 0.0006,
+ "loss": 3.5873844623565674,
+ "step": 4022
+ },
+ {
+ "epoch": 55.88073394495413,
+ "grad_norm": 0.2129688709974289,
+ "learning_rate": 0.0006,
+ "loss": 3.582061290740967,
+ "step": 4023
+ },
+ {
+ "epoch": 55.89471384884229,
+ "grad_norm": 0.2122214287519455,
+ "learning_rate": 0.0006,
+ "loss": 3.547175884246826,
+ "step": 4024
+ },
+ {
+ "epoch": 55.90869375273045,
+ "grad_norm": 0.214874267578125,
+ "learning_rate": 0.0006,
+ "loss": 3.5322279930114746,
+ "step": 4025
+ },
+ {
+ "epoch": 55.92267365661861,
+ "grad_norm": 0.24104614555835724,
+ "learning_rate": 0.0006,
+ "loss": 3.5742111206054688,
+ "step": 4026
+ },
+ {
+ "epoch": 55.93665356050677,
+ "grad_norm": 0.2257685512304306,
+ "learning_rate": 0.0006,
+ "loss": 3.5686793327331543,
+ "step": 4027
+ },
+ {
+ "epoch": 55.95063346439493,
+ "grad_norm": 0.2170567363500595,
+ "learning_rate": 0.0006,
+ "loss": 3.5670571327209473,
+ "step": 4028
+ },
+ {
+ "epoch": 55.964613368283096,
+ "grad_norm": 0.2003280222415924,
+ "learning_rate": 0.0006,
+ "loss": 3.533921718597412,
+ "step": 4029
+ },
+ {
+ "epoch": 55.97859327217125,
+ "grad_norm": 0.21483278274536133,
+ "learning_rate": 0.0006,
+ "loss": 3.539720058441162,
+ "step": 4030
+ },
+ {
+ "epoch": 55.992573176059416,
+ "grad_norm": 0.26908108592033386,
+ "learning_rate": 0.0006,
+ "loss": 3.575934886932373,
+ "step": 4031
+ },
+ {
+ "epoch": 56.0,
+ "grad_norm": 0.30002665519714355,
+ "learning_rate": 0.0006,
+ "loss": 3.5702414512634277,
+ "step": 4032
+ },
+ {
+ "epoch": 56.0,
+ "eval_loss": 3.9834072589874268,
+ "eval_runtime": 46.2268,
+ "eval_samples_per_second": 52.826,
+ "eval_steps_per_second": 3.31,
+ "step": 4032
+ },
+ {
+ "epoch": 56.01397990388816,
+ "grad_norm": 0.25298207998275757,
+ "learning_rate": 0.0006,
+ "loss": 3.538151741027832,
+ "step": 4033
+ },
+ {
+ "epoch": 56.02795980777632,
+ "grad_norm": 0.2231103479862213,
+ "learning_rate": 0.0006,
+ "loss": 3.551466941833496,
+ "step": 4034
+ },
+ {
+ "epoch": 56.04193971166448,
+ "grad_norm": 0.2504221796989441,
+ "learning_rate": 0.0006,
+ "loss": 3.5361199378967285,
+ "step": 4035
+ },
+ {
+ "epoch": 56.05591961555265,
+ "grad_norm": 0.23491773009300232,
+ "learning_rate": 0.0006,
+ "loss": 3.549346446990967,
+ "step": 4036
+ },
+ {
+ "epoch": 56.0698995194408,
+ "grad_norm": 0.23068852722644806,
+ "learning_rate": 0.0006,
+ "loss": 3.5243453979492188,
+ "step": 4037
+ },
+ {
+ "epoch": 56.083879423328966,
+ "grad_norm": 0.22160249948501587,
+ "learning_rate": 0.0006,
+ "loss": 3.551191806793213,
+ "step": 4038
+ },
+ {
+ "epoch": 56.09785932721712,
+ "grad_norm": 0.2389034926891327,
+ "learning_rate": 0.0006,
+ "loss": 3.5358071327209473,
+ "step": 4039
+ },
+ {
+ "epoch": 56.111839231105286,
+ "grad_norm": 0.2552168071269989,
+ "learning_rate": 0.0006,
+ "loss": 3.564204692840576,
+ "step": 4040
+ },
+ {
+ "epoch": 56.12581913499345,
+ "grad_norm": 0.2802336812019348,
+ "learning_rate": 0.0006,
+ "loss": 3.540386438369751,
+ "step": 4041
+ },
+ {
+ "epoch": 56.139799038881605,
+ "grad_norm": 0.2564619779586792,
+ "learning_rate": 0.0006,
+ "loss": 3.544264554977417,
+ "step": 4042
+ },
+ {
+ "epoch": 56.15377894276977,
+ "grad_norm": 0.24272632598876953,
+ "learning_rate": 0.0006,
+ "loss": 3.509497880935669,
+ "step": 4043
+ },
+ {
+ "epoch": 56.16775884665793,
+ "grad_norm": 0.23981881141662598,
+ "learning_rate": 0.0006,
+ "loss": 3.551090955734253,
+ "step": 4044
+ },
+ {
+ "epoch": 56.18173875054609,
+ "grad_norm": 0.22418269515037537,
+ "learning_rate": 0.0006,
+ "loss": 3.558614492416382,
+ "step": 4045
+ },
+ {
+ "epoch": 56.19571865443425,
+ "grad_norm": 0.21792462468147278,
+ "learning_rate": 0.0006,
+ "loss": 3.540558338165283,
+ "step": 4046
+ },
+ {
+ "epoch": 56.20969855832241,
+ "grad_norm": 0.21248634159564972,
+ "learning_rate": 0.0006,
+ "loss": 3.5273942947387695,
+ "step": 4047
+ },
+ {
+ "epoch": 56.22367846221057,
+ "grad_norm": 0.1863572895526886,
+ "learning_rate": 0.0006,
+ "loss": 3.555302143096924,
+ "step": 4048
+ },
+ {
+ "epoch": 56.237658366098735,
+ "grad_norm": 0.21031822264194489,
+ "learning_rate": 0.0006,
+ "loss": 3.547515630722046,
+ "step": 4049
+ },
+ {
+ "epoch": 56.25163826998689,
+ "grad_norm": 0.19754044711589813,
+ "learning_rate": 0.0006,
+ "loss": 3.5476508140563965,
+ "step": 4050
+ },
+ {
+ "epoch": 56.265618173875055,
+ "grad_norm": 0.19707852602005005,
+ "learning_rate": 0.0006,
+ "loss": 3.506730794906616,
+ "step": 4051
+ },
+ {
+ "epoch": 56.27959807776322,
+ "grad_norm": 0.21011239290237427,
+ "learning_rate": 0.0006,
+ "loss": 3.51116681098938,
+ "step": 4052
+ },
+ {
+ "epoch": 56.293577981651374,
+ "grad_norm": 0.20281212031841278,
+ "learning_rate": 0.0006,
+ "loss": 3.549513816833496,
+ "step": 4053
+ },
+ {
+ "epoch": 56.30755788553954,
+ "grad_norm": 0.19198910892009735,
+ "learning_rate": 0.0006,
+ "loss": 3.5299534797668457,
+ "step": 4054
+ },
+ {
+ "epoch": 56.3215377894277,
+ "grad_norm": 0.1861368715763092,
+ "learning_rate": 0.0006,
+ "loss": 3.513909339904785,
+ "step": 4055
+ },
+ {
+ "epoch": 56.33551769331586,
+ "grad_norm": 0.20779506862163544,
+ "learning_rate": 0.0006,
+ "loss": 3.5528712272644043,
+ "step": 4056
+ },
+ {
+ "epoch": 56.34949759720402,
+ "grad_norm": 0.2229684591293335,
+ "learning_rate": 0.0006,
+ "loss": 3.518359661102295,
+ "step": 4057
+ },
+ {
+ "epoch": 56.36347750109218,
+ "grad_norm": 0.22998179495334625,
+ "learning_rate": 0.0006,
+ "loss": 3.5004091262817383,
+ "step": 4058
+ },
+ {
+ "epoch": 56.37745740498034,
+ "grad_norm": 0.2176709622144699,
+ "learning_rate": 0.0006,
+ "loss": 3.550295829772949,
+ "step": 4059
+ },
+ {
+ "epoch": 56.391437308868504,
+ "grad_norm": 0.19512872397899628,
+ "learning_rate": 0.0006,
+ "loss": 3.5305161476135254,
+ "step": 4060
+ },
+ {
+ "epoch": 56.40541721275666,
+ "grad_norm": 0.23127448558807373,
+ "learning_rate": 0.0006,
+ "loss": 3.5341286659240723,
+ "step": 4061
+ },
+ {
+ "epoch": 56.419397116644824,
+ "grad_norm": 0.20905959606170654,
+ "learning_rate": 0.0006,
+ "loss": 3.553912401199341,
+ "step": 4062
+ },
+ {
+ "epoch": 56.43337702053299,
+ "grad_norm": 0.23370878398418427,
+ "learning_rate": 0.0006,
+ "loss": 3.5700249671936035,
+ "step": 4063
+ },
+ {
+ "epoch": 56.44735692442114,
+ "grad_norm": 0.233205646276474,
+ "learning_rate": 0.0006,
+ "loss": 3.5184097290039062,
+ "step": 4064
+ },
+ {
+ "epoch": 56.46133682830931,
+ "grad_norm": 0.23928777873516083,
+ "learning_rate": 0.0006,
+ "loss": 3.535874366760254,
+ "step": 4065
+ },
+ {
+ "epoch": 56.47531673219746,
+ "grad_norm": 0.24950815737247467,
+ "learning_rate": 0.0006,
+ "loss": 3.508136749267578,
+ "step": 4066
+ },
+ {
+ "epoch": 56.489296636085626,
+ "grad_norm": 0.24821820855140686,
+ "learning_rate": 0.0006,
+ "loss": 3.5421361923217773,
+ "step": 4067
+ },
+ {
+ "epoch": 56.50327653997379,
+ "grad_norm": 0.2252482771873474,
+ "learning_rate": 0.0006,
+ "loss": 3.5516514778137207,
+ "step": 4068
+ },
+ {
+ "epoch": 56.517256443861946,
+ "grad_norm": 0.2238101363182068,
+ "learning_rate": 0.0006,
+ "loss": 3.567741632461548,
+ "step": 4069
+ },
+ {
+ "epoch": 56.53123634775011,
+ "grad_norm": 0.20759683847427368,
+ "learning_rate": 0.0006,
+ "loss": 3.544705390930176,
+ "step": 4070
+ },
+ {
+ "epoch": 56.54521625163827,
+ "grad_norm": 0.21918460726737976,
+ "learning_rate": 0.0006,
+ "loss": 3.5725836753845215,
+ "step": 4071
+ },
+ {
+ "epoch": 56.55919615552643,
+ "grad_norm": 0.22640042006969452,
+ "learning_rate": 0.0006,
+ "loss": 3.5447535514831543,
+ "step": 4072
+ },
+ {
+ "epoch": 56.57317605941459,
+ "grad_norm": 0.23130203783512115,
+ "learning_rate": 0.0006,
+ "loss": 3.5620853900909424,
+ "step": 4073
+ },
+ {
+ "epoch": 56.58715596330275,
+ "grad_norm": 0.2215641736984253,
+ "learning_rate": 0.0006,
+ "loss": 3.5416438579559326,
+ "step": 4074
+ },
+ {
+ "epoch": 56.60113586719091,
+ "grad_norm": 0.20106497406959534,
+ "learning_rate": 0.0006,
+ "loss": 3.537386178970337,
+ "step": 4075
+ },
+ {
+ "epoch": 56.615115771079076,
+ "grad_norm": 0.2045976221561432,
+ "learning_rate": 0.0006,
+ "loss": 3.555032730102539,
+ "step": 4076
+ },
+ {
+ "epoch": 56.62909567496723,
+ "grad_norm": 0.20097647607326508,
+ "learning_rate": 0.0006,
+ "loss": 3.559572458267212,
+ "step": 4077
+ },
+ {
+ "epoch": 56.643075578855395,
+ "grad_norm": 0.24158388376235962,
+ "learning_rate": 0.0006,
+ "loss": 3.56520938873291,
+ "step": 4078
+ },
+ {
+ "epoch": 56.65705548274356,
+ "grad_norm": 0.2687791585922241,
+ "learning_rate": 0.0006,
+ "loss": 3.545924663543701,
+ "step": 4079
+ },
+ {
+ "epoch": 56.671035386631715,
+ "grad_norm": 0.22466111183166504,
+ "learning_rate": 0.0006,
+ "loss": 3.5556845664978027,
+ "step": 4080
+ },
+ {
+ "epoch": 56.68501529051988,
+ "grad_norm": 0.2177814394235611,
+ "learning_rate": 0.0006,
+ "loss": 3.5799131393432617,
+ "step": 4081
+ },
+ {
+ "epoch": 56.69899519440804,
+ "grad_norm": 0.2700476050376892,
+ "learning_rate": 0.0006,
+ "loss": 3.5859055519104004,
+ "step": 4082
+ },
+ {
+ "epoch": 56.7129750982962,
+ "grad_norm": 0.28230178356170654,
+ "learning_rate": 0.0006,
+ "loss": 3.5733890533447266,
+ "step": 4083
+ },
+ {
+ "epoch": 56.72695500218436,
+ "grad_norm": 0.29298731684684753,
+ "learning_rate": 0.0006,
+ "loss": 3.556626319885254,
+ "step": 4084
+ },
+ {
+ "epoch": 56.74093490607252,
+ "grad_norm": 0.2818183898925781,
+ "learning_rate": 0.0006,
+ "loss": 3.5884718894958496,
+ "step": 4085
+ },
+ {
+ "epoch": 56.75491480996068,
+ "grad_norm": 0.24008697271347046,
+ "learning_rate": 0.0006,
+ "loss": 3.5464529991149902,
+ "step": 4086
+ },
+ {
+ "epoch": 56.768894713848844,
+ "grad_norm": 0.23406296968460083,
+ "learning_rate": 0.0006,
+ "loss": 3.5622801780700684,
+ "step": 4087
+ },
+ {
+ "epoch": 56.782874617737,
+ "grad_norm": 0.26089322566986084,
+ "learning_rate": 0.0006,
+ "loss": 3.5775020122528076,
+ "step": 4088
+ },
+ {
+ "epoch": 56.796854521625164,
+ "grad_norm": 0.2576654851436615,
+ "learning_rate": 0.0006,
+ "loss": 3.5543627738952637,
+ "step": 4089
+ },
+ {
+ "epoch": 56.81083442551333,
+ "grad_norm": 0.26576393842697144,
+ "learning_rate": 0.0006,
+ "loss": 3.546170711517334,
+ "step": 4090
+ },
+ {
+ "epoch": 56.824814329401484,
+ "grad_norm": 0.22380715608596802,
+ "learning_rate": 0.0006,
+ "loss": 3.5437729358673096,
+ "step": 4091
+ },
+ {
+ "epoch": 56.83879423328965,
+ "grad_norm": 0.20786714553833008,
+ "learning_rate": 0.0006,
+ "loss": 3.5951266288757324,
+ "step": 4092
+ },
+ {
+ "epoch": 56.8527741371778,
+ "grad_norm": 0.23177042603492737,
+ "learning_rate": 0.0006,
+ "loss": 3.549454689025879,
+ "step": 4093
+ },
+ {
+ "epoch": 56.86675404106597,
+ "grad_norm": 0.21466009318828583,
+ "learning_rate": 0.0006,
+ "loss": 3.5611233711242676,
+ "step": 4094
+ },
+ {
+ "epoch": 56.88073394495413,
+ "grad_norm": 0.20928414165973663,
+ "learning_rate": 0.0006,
+ "loss": 3.5550684928894043,
+ "step": 4095
+ },
+ {
+ "epoch": 56.89471384884229,
+ "grad_norm": 0.20727156102657318,
+ "learning_rate": 0.0006,
+ "loss": 3.552496910095215,
+ "step": 4096
+ },
+ {
+ "epoch": 56.90869375273045,
+ "grad_norm": 0.21370401978492737,
+ "learning_rate": 0.0006,
+ "loss": 3.5763869285583496,
+ "step": 4097
+ },
+ {
+ "epoch": 56.92267365661861,
+ "grad_norm": 0.22490337491035461,
+ "learning_rate": 0.0006,
+ "loss": 3.538986921310425,
+ "step": 4098
+ },
+ {
+ "epoch": 56.93665356050677,
+ "grad_norm": 0.23320236802101135,
+ "learning_rate": 0.0006,
+ "loss": 3.5514214038848877,
+ "step": 4099
+ },
+ {
+ "epoch": 56.95063346439493,
+ "grad_norm": 0.22050419449806213,
+ "learning_rate": 0.0006,
+ "loss": 3.5486960411071777,
+ "step": 4100
+ },
+ {
+ "epoch": 56.964613368283096,
+ "grad_norm": 0.2241443395614624,
+ "learning_rate": 0.0006,
+ "loss": 3.5858001708984375,
+ "step": 4101
+ },
+ {
+ "epoch": 56.97859327217125,
+ "grad_norm": 0.24904389679431915,
+ "learning_rate": 0.0006,
+ "loss": 3.586472511291504,
+ "step": 4102
+ },
+ {
+ "epoch": 56.992573176059416,
+ "grad_norm": 0.2333211451768875,
+ "learning_rate": 0.0006,
+ "loss": 3.5463132858276367,
+ "step": 4103
+ },
+ {
+ "epoch": 57.0,
+ "grad_norm": 0.24142783880233765,
+ "learning_rate": 0.0006,
+ "loss": 3.5642542839050293,
+ "step": 4104
+ },
+ {
+ "epoch": 57.0,
+ "eval_loss": 3.973973035812378,
+ "eval_runtime": 46.2906,
+ "eval_samples_per_second": 52.754,
+ "eval_steps_per_second": 3.305,
+ "step": 4104
+ },
+ {
+ "epoch": 57.01397990388816,
+ "grad_norm": 0.21989624202251434,
+ "learning_rate": 0.0006,
+ "loss": 3.539435863494873,
+ "step": 4105
+ },
+ {
+ "epoch": 57.02795980777632,
+ "grad_norm": 0.24061834812164307,
+ "learning_rate": 0.0006,
+ "loss": 3.5251410007476807,
+ "step": 4106
+ },
+ {
+ "epoch": 57.04193971166448,
+ "grad_norm": 0.2483278512954712,
+ "learning_rate": 0.0006,
+ "loss": 3.5104010105133057,
+ "step": 4107
+ },
+ {
+ "epoch": 57.05591961555265,
+ "grad_norm": 0.2717698812484741,
+ "learning_rate": 0.0006,
+ "loss": 3.5134170055389404,
+ "step": 4108
+ },
+ {
+ "epoch": 57.0698995194408,
+ "grad_norm": 0.27335646748542786,
+ "learning_rate": 0.0006,
+ "loss": 3.53574275970459,
+ "step": 4109
+ },
+ {
+ "epoch": 57.083879423328966,
+ "grad_norm": 0.2423052042722702,
+ "learning_rate": 0.0006,
+ "loss": 3.4960169792175293,
+ "step": 4110
+ },
+ {
+ "epoch": 57.09785932721712,
+ "grad_norm": 0.2241092175245285,
+ "learning_rate": 0.0006,
+ "loss": 3.5409107208251953,
+ "step": 4111
+ },
+ {
+ "epoch": 57.111839231105286,
+ "grad_norm": 0.23098452389240265,
+ "learning_rate": 0.0006,
+ "loss": 3.5326709747314453,
+ "step": 4112
+ },
+ {
+ "epoch": 57.12581913499345,
+ "grad_norm": 0.2500186562538147,
+ "learning_rate": 0.0006,
+ "loss": 3.509953498840332,
+ "step": 4113
+ },
+ {
+ "epoch": 57.139799038881605,
+ "grad_norm": 0.26994550228118896,
+ "learning_rate": 0.0006,
+ "loss": 3.560410499572754,
+ "step": 4114
+ },
+ {
+ "epoch": 57.15377894276977,
+ "grad_norm": 0.24950402975082397,
+ "learning_rate": 0.0006,
+ "loss": 3.517613649368286,
+ "step": 4115
+ },
+ {
+ "epoch": 57.16775884665793,
+ "grad_norm": 0.21742430329322815,
+ "learning_rate": 0.0006,
+ "loss": 3.531256675720215,
+ "step": 4116
+ },
+ {
+ "epoch": 57.18173875054609,
+ "grad_norm": 0.29069146513938904,
+ "learning_rate": 0.0006,
+ "loss": 3.5283756256103516,
+ "step": 4117
+ },
+ {
+ "epoch": 57.19571865443425,
+ "grad_norm": 0.2901996970176697,
+ "learning_rate": 0.0006,
+ "loss": 3.5460801124572754,
+ "step": 4118
+ },
+ {
+ "epoch": 57.20969855832241,
+ "grad_norm": 0.2534845471382141,
+ "learning_rate": 0.0006,
+ "loss": 3.515536308288574,
+ "step": 4119
+ },
+ {
+ "epoch": 57.22367846221057,
+ "grad_norm": 0.2352340817451477,
+ "learning_rate": 0.0006,
+ "loss": 3.5281717777252197,
+ "step": 4120
+ },
+ {
+ "epoch": 57.237658366098735,
+ "grad_norm": 0.2263645976781845,
+ "learning_rate": 0.0006,
+ "loss": 3.5629191398620605,
+ "step": 4121
+ },
+ {
+ "epoch": 57.25163826998689,
+ "grad_norm": 0.21413370966911316,
+ "learning_rate": 0.0006,
+ "loss": 3.5342142581939697,
+ "step": 4122
+ },
+ {
+ "epoch": 57.265618173875055,
+ "grad_norm": 0.1969698667526245,
+ "learning_rate": 0.0006,
+ "loss": 3.5467586517333984,
+ "step": 4123
+ },
+ {
+ "epoch": 57.27959807776322,
+ "grad_norm": 0.2106606364250183,
+ "learning_rate": 0.0006,
+ "loss": 3.5409536361694336,
+ "step": 4124
+ },
+ {
+ "epoch": 57.293577981651374,
+ "grad_norm": 0.21824438869953156,
+ "learning_rate": 0.0006,
+ "loss": 3.5246548652648926,
+ "step": 4125
+ },
+ {
+ "epoch": 57.30755788553954,
+ "grad_norm": 0.2147768884897232,
+ "learning_rate": 0.0006,
+ "loss": 3.5411794185638428,
+ "step": 4126
+ },
+ {
+ "epoch": 57.3215377894277,
+ "grad_norm": 0.21352852880954742,
+ "learning_rate": 0.0006,
+ "loss": 3.569387197494507,
+ "step": 4127
+ },
+ {
+ "epoch": 57.33551769331586,
+ "grad_norm": 0.20957978069782257,
+ "learning_rate": 0.0006,
+ "loss": 3.522695779800415,
+ "step": 4128
+ },
+ {
+ "epoch": 57.34949759720402,
+ "grad_norm": 0.2013026475906372,
+ "learning_rate": 0.0006,
+ "loss": 3.5485787391662598,
+ "step": 4129
+ },
+ {
+ "epoch": 57.36347750109218,
+ "grad_norm": 0.2260376214981079,
+ "learning_rate": 0.0006,
+ "loss": 3.547607421875,
+ "step": 4130
+ },
+ {
+ "epoch": 57.37745740498034,
+ "grad_norm": 0.22991685569286346,
+ "learning_rate": 0.0006,
+ "loss": 3.5464730262756348,
+ "step": 4131
+ },
+ {
+ "epoch": 57.391437308868504,
+ "grad_norm": 0.19638051092624664,
+ "learning_rate": 0.0006,
+ "loss": 3.54355525970459,
+ "step": 4132
+ },
+ {
+ "epoch": 57.40541721275666,
+ "grad_norm": 0.19450774788856506,
+ "learning_rate": 0.0006,
+ "loss": 3.5490050315856934,
+ "step": 4133
+ },
+ {
+ "epoch": 57.419397116644824,
+ "grad_norm": 0.21798551082611084,
+ "learning_rate": 0.0006,
+ "loss": 3.56355619430542,
+ "step": 4134
+ },
+ {
+ "epoch": 57.43337702053299,
+ "grad_norm": 0.2129846215248108,
+ "learning_rate": 0.0006,
+ "loss": 3.5607380867004395,
+ "step": 4135
+ },
+ {
+ "epoch": 57.44735692442114,
+ "grad_norm": 0.20589227974414825,
+ "learning_rate": 0.0006,
+ "loss": 3.523768663406372,
+ "step": 4136
+ },
+ {
+ "epoch": 57.46133682830931,
+ "grad_norm": 0.21841686964035034,
+ "learning_rate": 0.0006,
+ "loss": 3.5187885761260986,
+ "step": 4137
+ },
+ {
+ "epoch": 57.47531673219746,
+ "grad_norm": 0.2118791788816452,
+ "learning_rate": 0.0006,
+ "loss": 3.5271782875061035,
+ "step": 4138
+ },
+ {
+ "epoch": 57.489296636085626,
+ "grad_norm": 0.21905459463596344,
+ "learning_rate": 0.0006,
+ "loss": 3.546968460083008,
+ "step": 4139
+ },
+ {
+ "epoch": 57.50327653997379,
+ "grad_norm": 0.23899133503437042,
+ "learning_rate": 0.0006,
+ "loss": 3.5156688690185547,
+ "step": 4140
+ },
+ {
+ "epoch": 57.517256443861946,
+ "grad_norm": 0.23873545229434967,
+ "learning_rate": 0.0006,
+ "loss": 3.5271472930908203,
+ "step": 4141
+ },
+ {
+ "epoch": 57.53123634775011,
+ "grad_norm": 0.20691858232021332,
+ "learning_rate": 0.0006,
+ "loss": 3.552854537963867,
+ "step": 4142
+ },
+ {
+ "epoch": 57.54521625163827,
+ "grad_norm": 0.21962891519069672,
+ "learning_rate": 0.0006,
+ "loss": 3.5258498191833496,
+ "step": 4143
+ },
+ {
+ "epoch": 57.55919615552643,
+ "grad_norm": 0.21762165427207947,
+ "learning_rate": 0.0006,
+ "loss": 3.566831588745117,
+ "step": 4144
+ },
+ {
+ "epoch": 57.57317605941459,
+ "grad_norm": 0.19603654742240906,
+ "learning_rate": 0.0006,
+ "loss": 3.5393714904785156,
+ "step": 4145
+ },
+ {
+ "epoch": 57.58715596330275,
+ "grad_norm": 0.20347437262535095,
+ "learning_rate": 0.0006,
+ "loss": 3.538390874862671,
+ "step": 4146
+ },
+ {
+ "epoch": 57.60113586719091,
+ "grad_norm": 0.2179173231124878,
+ "learning_rate": 0.0006,
+ "loss": 3.566631317138672,
+ "step": 4147
+ },
+ {
+ "epoch": 57.615115771079076,
+ "grad_norm": 0.19678309559822083,
+ "learning_rate": 0.0006,
+ "loss": 3.5659375190734863,
+ "step": 4148
+ },
+ {
+ "epoch": 57.62909567496723,
+ "grad_norm": 0.20221677422523499,
+ "learning_rate": 0.0006,
+ "loss": 3.5679430961608887,
+ "step": 4149
+ },
+ {
+ "epoch": 57.643075578855395,
+ "grad_norm": 0.21337579190731049,
+ "learning_rate": 0.0006,
+ "loss": 3.5330681800842285,
+ "step": 4150
+ },
+ {
+ "epoch": 57.65705548274356,
+ "grad_norm": 0.2646789848804474,
+ "learning_rate": 0.0006,
+ "loss": 3.5216803550720215,
+ "step": 4151
+ },
+ {
+ "epoch": 57.671035386631715,
+ "grad_norm": 0.304950088262558,
+ "learning_rate": 0.0006,
+ "loss": 3.5570156574249268,
+ "step": 4152
+ },
+ {
+ "epoch": 57.68501529051988,
+ "grad_norm": 0.2739402651786804,
+ "learning_rate": 0.0006,
+ "loss": 3.5844314098358154,
+ "step": 4153
+ },
+ {
+ "epoch": 57.69899519440804,
+ "grad_norm": 0.19060099124908447,
+ "learning_rate": 0.0006,
+ "loss": 3.571052074432373,
+ "step": 4154
+ },
+ {
+ "epoch": 57.7129750982962,
+ "grad_norm": 0.2941007614135742,
+ "learning_rate": 0.0006,
+ "loss": 3.543100357055664,
+ "step": 4155
+ },
+ {
+ "epoch": 57.72695500218436,
+ "grad_norm": 0.34624332189559937,
+ "learning_rate": 0.0006,
+ "loss": 3.564270496368408,
+ "step": 4156
+ },
+ {
+ "epoch": 57.74093490607252,
+ "grad_norm": 0.30635201930999756,
+ "learning_rate": 0.0006,
+ "loss": 3.5390584468841553,
+ "step": 4157
+ },
+ {
+ "epoch": 57.75491480996068,
+ "grad_norm": 0.2204878330230713,
+ "learning_rate": 0.0006,
+ "loss": 3.5427281856536865,
+ "step": 4158
+ },
+ {
+ "epoch": 57.768894713848844,
+ "grad_norm": 0.20659378170967102,
+ "learning_rate": 0.0006,
+ "loss": 3.528977155685425,
+ "step": 4159
+ },
+ {
+ "epoch": 57.782874617737,
+ "grad_norm": 0.2281361073255539,
+ "learning_rate": 0.0006,
+ "loss": 3.5531792640686035,
+ "step": 4160
+ },
+ {
+ "epoch": 57.796854521625164,
+ "grad_norm": 0.22478239238262177,
+ "learning_rate": 0.0006,
+ "loss": 3.566704750061035,
+ "step": 4161
+ },
+ {
+ "epoch": 57.81083442551333,
+ "grad_norm": 0.20797103643417358,
+ "learning_rate": 0.0006,
+ "loss": 3.5684943199157715,
+ "step": 4162
+ },
+ {
+ "epoch": 57.824814329401484,
+ "grad_norm": 0.2108374983072281,
+ "learning_rate": 0.0006,
+ "loss": 3.5475950241088867,
+ "step": 4163
+ },
+ {
+ "epoch": 57.83879423328965,
+ "grad_norm": 0.2268034815788269,
+ "learning_rate": 0.0006,
+ "loss": 3.5456833839416504,
+ "step": 4164
+ },
+ {
+ "epoch": 57.8527741371778,
+ "grad_norm": 0.2131519913673401,
+ "learning_rate": 0.0006,
+ "loss": 3.5316243171691895,
+ "step": 4165
+ },
+ {
+ "epoch": 57.86675404106597,
+ "grad_norm": 0.20163841545581818,
+ "learning_rate": 0.0006,
+ "loss": 3.5320897102355957,
+ "step": 4166
+ },
+ {
+ "epoch": 57.88073394495413,
+ "grad_norm": 0.20961757004261017,
+ "learning_rate": 0.0006,
+ "loss": 3.5800695419311523,
+ "step": 4167
+ },
+ {
+ "epoch": 57.89471384884229,
+ "grad_norm": 0.2061416506767273,
+ "learning_rate": 0.0006,
+ "loss": 3.544395923614502,
+ "step": 4168
+ },
+ {
+ "epoch": 57.90869375273045,
+ "grad_norm": 0.20306318998336792,
+ "learning_rate": 0.0006,
+ "loss": 3.554436683654785,
+ "step": 4169
+ },
+ {
+ "epoch": 57.92267365661861,
+ "grad_norm": 0.20685963332653046,
+ "learning_rate": 0.0006,
+ "loss": 3.5614635944366455,
+ "step": 4170
+ },
+ {
+ "epoch": 57.93665356050677,
+ "grad_norm": 0.19938082993030548,
+ "learning_rate": 0.0006,
+ "loss": 3.578136920928955,
+ "step": 4171
+ },
+ {
+ "epoch": 57.95063346439493,
+ "grad_norm": 0.2150411158800125,
+ "learning_rate": 0.0006,
+ "loss": 3.5754270553588867,
+ "step": 4172
+ },
+ {
+ "epoch": 57.964613368283096,
+ "grad_norm": 0.23399604856967926,
+ "learning_rate": 0.0006,
+ "loss": 3.5553112030029297,
+ "step": 4173
+ },
+ {
+ "epoch": 57.97859327217125,
+ "grad_norm": 0.2496841847896576,
+ "learning_rate": 0.0006,
+ "loss": 3.5509696006774902,
+ "step": 4174
+ },
+ {
+ "epoch": 57.992573176059416,
+ "grad_norm": 0.23759980499744415,
+ "learning_rate": 0.0006,
+ "loss": 3.5806684494018555,
+ "step": 4175
+ },
+ {
+ "epoch": 58.0,
+ "grad_norm": 0.2494540512561798,
+ "learning_rate": 0.0006,
+ "loss": 3.541708469390869,
+ "step": 4176
+ },
+ {
+ "epoch": 58.0,
+ "eval_loss": 3.970658779144287,
+ "eval_runtime": 46.0262,
+ "eval_samples_per_second": 53.057,
+ "eval_steps_per_second": 3.324,
+ "step": 4176
+ },
+ {
+ "epoch": 58.01397990388816,
+ "grad_norm": 0.2053643763065338,
+ "learning_rate": 0.0006,
+ "loss": 3.5264205932617188,
+ "step": 4177
+ },
+ {
+ "epoch": 58.02795980777632,
+ "grad_norm": 0.20680591464042664,
+ "learning_rate": 0.0006,
+ "loss": 3.495445728302002,
+ "step": 4178
+ },
+ {
+ "epoch": 58.04193971166448,
+ "grad_norm": 0.22180874645709991,
+ "learning_rate": 0.0006,
+ "loss": 3.546283483505249,
+ "step": 4179
+ },
+ {
+ "epoch": 58.05591961555265,
+ "grad_norm": 0.24255339801311493,
+ "learning_rate": 0.0006,
+ "loss": 3.50639271736145,
+ "step": 4180
+ },
+ {
+ "epoch": 58.0698995194408,
+ "grad_norm": 0.2747100591659546,
+ "learning_rate": 0.0006,
+ "loss": 3.514240026473999,
+ "step": 4181
+ },
+ {
+ "epoch": 58.083879423328966,
+ "grad_norm": 0.27960914373397827,
+ "learning_rate": 0.0006,
+ "loss": 3.5614311695098877,
+ "step": 4182
+ },
+ {
+ "epoch": 58.09785932721712,
+ "grad_norm": 0.25837743282318115,
+ "learning_rate": 0.0006,
+ "loss": 3.533560276031494,
+ "step": 4183
+ },
+ {
+ "epoch": 58.111839231105286,
+ "grad_norm": 0.24635657668113708,
+ "learning_rate": 0.0006,
+ "loss": 3.4867968559265137,
+ "step": 4184
+ },
+ {
+ "epoch": 58.12581913499345,
+ "grad_norm": 0.31520891189575195,
+ "learning_rate": 0.0006,
+ "loss": 3.5131611824035645,
+ "step": 4185
+ },
+ {
+ "epoch": 58.139799038881605,
+ "grad_norm": 0.36781513690948486,
+ "learning_rate": 0.0006,
+ "loss": 3.5149288177490234,
+ "step": 4186
+ },
+ {
+ "epoch": 58.15377894276977,
+ "grad_norm": 0.32433459162712097,
+ "learning_rate": 0.0006,
+ "loss": 3.5485405921936035,
+ "step": 4187
+ },
+ {
+ "epoch": 58.16775884665793,
+ "grad_norm": 0.2532205283641815,
+ "learning_rate": 0.0006,
+ "loss": 3.4994513988494873,
+ "step": 4188
+ },
+ {
+ "epoch": 58.18173875054609,
+ "grad_norm": 0.29780858755111694,
+ "learning_rate": 0.0006,
+ "loss": 3.496187448501587,
+ "step": 4189
+ },
+ {
+ "epoch": 58.19571865443425,
+ "grad_norm": 0.2804715037345886,
+ "learning_rate": 0.0006,
+ "loss": 3.5210375785827637,
+ "step": 4190
+ },
+ {
+ "epoch": 58.20969855832241,
+ "grad_norm": 0.2186010330915451,
+ "learning_rate": 0.0006,
+ "loss": 3.5139119625091553,
+ "step": 4191
+ },
+ {
+ "epoch": 58.22367846221057,
+ "grad_norm": 0.21566270291805267,
+ "learning_rate": 0.0006,
+ "loss": 3.5011606216430664,
+ "step": 4192
+ },
+ {
+ "epoch": 58.237658366098735,
+ "grad_norm": 0.21042031049728394,
+ "learning_rate": 0.0006,
+ "loss": 3.52295184135437,
+ "step": 4193
+ },
+ {
+ "epoch": 58.25163826998689,
+ "grad_norm": 0.20117411017417908,
+ "learning_rate": 0.0006,
+ "loss": 3.54593563079834,
+ "step": 4194
+ },
+ {
+ "epoch": 58.265618173875055,
+ "grad_norm": 0.21747945249080658,
+ "learning_rate": 0.0006,
+ "loss": 3.5341522693634033,
+ "step": 4195
+ },
+ {
+ "epoch": 58.27959807776322,
+ "grad_norm": 0.266024649143219,
+ "learning_rate": 0.0006,
+ "loss": 3.536393165588379,
+ "step": 4196
+ },
+ {
+ "epoch": 58.293577981651374,
+ "grad_norm": 0.2577304542064667,
+ "learning_rate": 0.0006,
+ "loss": 3.557468891143799,
+ "step": 4197
+ },
+ {
+ "epoch": 58.30755788553954,
+ "grad_norm": 0.22055941820144653,
+ "learning_rate": 0.0006,
+ "loss": 3.5307652950286865,
+ "step": 4198
+ },
+ {
+ "epoch": 58.3215377894277,
+ "grad_norm": 0.22490856051445007,
+ "learning_rate": 0.0006,
+ "loss": 3.506265163421631,
+ "step": 4199
+ },
+ {
+ "epoch": 58.33551769331586,
+ "grad_norm": 0.23600345849990845,
+ "learning_rate": 0.0006,
+ "loss": 3.523414134979248,
+ "step": 4200
+ },
+ {
+ "epoch": 58.34949759720402,
+ "grad_norm": 0.24872642755508423,
+ "learning_rate": 0.0006,
+ "loss": 3.561278820037842,
+ "step": 4201
+ },
+ {
+ "epoch": 58.36347750109218,
+ "grad_norm": 0.2702998220920563,
+ "learning_rate": 0.0006,
+ "loss": 3.573561191558838,
+ "step": 4202
+ },
+ {
+ "epoch": 58.37745740498034,
+ "grad_norm": 0.2532080411911011,
+ "learning_rate": 0.0006,
+ "loss": 3.5476837158203125,
+ "step": 4203
+ },
+ {
+ "epoch": 58.391437308868504,
+ "grad_norm": 0.23641079664230347,
+ "learning_rate": 0.0006,
+ "loss": 3.5464468002319336,
+ "step": 4204
+ },
+ {
+ "epoch": 58.40541721275666,
+ "grad_norm": 0.29965463280677795,
+ "learning_rate": 0.0006,
+ "loss": 3.560166835784912,
+ "step": 4205
+ },
+ {
+ "epoch": 58.419397116644824,
+ "grad_norm": 0.2778814136981964,
+ "learning_rate": 0.0006,
+ "loss": 3.5363056659698486,
+ "step": 4206
+ },
+ {
+ "epoch": 58.43337702053299,
+ "grad_norm": 0.23625248670578003,
+ "learning_rate": 0.0006,
+ "loss": 3.5575437545776367,
+ "step": 4207
+ },
+ {
+ "epoch": 58.44735692442114,
+ "grad_norm": 0.2165721356868744,
+ "learning_rate": 0.0006,
+ "loss": 3.541654109954834,
+ "step": 4208
+ },
+ {
+ "epoch": 58.46133682830931,
+ "grad_norm": 0.2261950671672821,
+ "learning_rate": 0.0006,
+ "loss": 3.5462238788604736,
+ "step": 4209
+ },
+ {
+ "epoch": 58.47531673219746,
+ "grad_norm": 0.23496517539024353,
+ "learning_rate": 0.0006,
+ "loss": 3.510138988494873,
+ "step": 4210
+ },
+ {
+ "epoch": 58.489296636085626,
+ "grad_norm": 0.27041929960250854,
+ "learning_rate": 0.0006,
+ "loss": 3.527822971343994,
+ "step": 4211
+ },
+ {
+ "epoch": 58.50327653997379,
+ "grad_norm": 0.2594013512134552,
+ "learning_rate": 0.0006,
+ "loss": 3.5358262062072754,
+ "step": 4212
+ },
+ {
+ "epoch": 58.517256443861946,
+ "grad_norm": 0.23336786031723022,
+ "learning_rate": 0.0006,
+ "loss": 3.530122756958008,
+ "step": 4213
+ },
+ {
+ "epoch": 58.53123634775011,
+ "grad_norm": 0.21956655383110046,
+ "learning_rate": 0.0006,
+ "loss": 3.541039228439331,
+ "step": 4214
+ },
+ {
+ "epoch": 58.54521625163827,
+ "grad_norm": 0.22432804107666016,
+ "learning_rate": 0.0006,
+ "loss": 3.520948886871338,
+ "step": 4215
+ },
+ {
+ "epoch": 58.55919615552643,
+ "grad_norm": 0.21589893102645874,
+ "learning_rate": 0.0006,
+ "loss": 3.569808006286621,
+ "step": 4216
+ },
+ {
+ "epoch": 58.57317605941459,
+ "grad_norm": 0.20264557003974915,
+ "learning_rate": 0.0006,
+ "loss": 3.514918088912964,
+ "step": 4217
+ },
+ {
+ "epoch": 58.58715596330275,
+ "grad_norm": 0.20911480486392975,
+ "learning_rate": 0.0006,
+ "loss": 3.5340771675109863,
+ "step": 4218
+ },
+ {
+ "epoch": 58.60113586719091,
+ "grad_norm": 0.21068964898586273,
+ "learning_rate": 0.0006,
+ "loss": 3.5388903617858887,
+ "step": 4219
+ },
+ {
+ "epoch": 58.615115771079076,
+ "grad_norm": 0.19314789772033691,
+ "learning_rate": 0.0006,
+ "loss": 3.5405967235565186,
+ "step": 4220
+ },
+ {
+ "epoch": 58.62909567496723,
+ "grad_norm": 0.18347802758216858,
+ "learning_rate": 0.0006,
+ "loss": 3.5208020210266113,
+ "step": 4221
+ },
+ {
+ "epoch": 58.643075578855395,
+ "grad_norm": 0.2082843780517578,
+ "learning_rate": 0.0006,
+ "loss": 3.5454647541046143,
+ "step": 4222
+ },
+ {
+ "epoch": 58.65705548274356,
+ "grad_norm": 0.2049611210823059,
+ "learning_rate": 0.0006,
+ "loss": 3.529350996017456,
+ "step": 4223
+ },
+ {
+ "epoch": 58.671035386631715,
+ "grad_norm": 0.19259536266326904,
+ "learning_rate": 0.0006,
+ "loss": 3.5589945316314697,
+ "step": 4224
+ },
+ {
+ "epoch": 58.68501529051988,
+ "grad_norm": 0.19039863348007202,
+ "learning_rate": 0.0006,
+ "loss": 3.5593101978302,
+ "step": 4225
+ },
+ {
+ "epoch": 58.69899519440804,
+ "grad_norm": 0.21481311321258545,
+ "learning_rate": 0.0006,
+ "loss": 3.55385422706604,
+ "step": 4226
+ },
+ {
+ "epoch": 58.7129750982962,
+ "grad_norm": 0.2053634226322174,
+ "learning_rate": 0.0006,
+ "loss": 3.535224437713623,
+ "step": 4227
+ },
+ {
+ "epoch": 58.72695500218436,
+ "grad_norm": 0.21111956238746643,
+ "learning_rate": 0.0006,
+ "loss": 3.5208349227905273,
+ "step": 4228
+ },
+ {
+ "epoch": 58.74093490607252,
+ "grad_norm": 0.22069109976291656,
+ "learning_rate": 0.0006,
+ "loss": 3.5292487144470215,
+ "step": 4229
+ },
+ {
+ "epoch": 58.75491480996068,
+ "grad_norm": 0.22549185156822205,
+ "learning_rate": 0.0006,
+ "loss": 3.556830406188965,
+ "step": 4230
+ },
+ {
+ "epoch": 58.768894713848844,
+ "grad_norm": 0.22341859340667725,
+ "learning_rate": 0.0006,
+ "loss": 3.5573582649230957,
+ "step": 4231
+ },
+ {
+ "epoch": 58.782874617737,
+ "grad_norm": 0.20664502680301666,
+ "learning_rate": 0.0006,
+ "loss": 3.578657865524292,
+ "step": 4232
+ },
+ {
+ "epoch": 58.796854521625164,
+ "grad_norm": 0.19885236024856567,
+ "learning_rate": 0.0006,
+ "loss": 3.5604476928710938,
+ "step": 4233
+ },
+ {
+ "epoch": 58.81083442551333,
+ "grad_norm": 0.19446797668933868,
+ "learning_rate": 0.0006,
+ "loss": 3.5686912536621094,
+ "step": 4234
+ },
+ {
+ "epoch": 58.824814329401484,
+ "grad_norm": 0.20658083260059357,
+ "learning_rate": 0.0006,
+ "loss": 3.563167095184326,
+ "step": 4235
+ },
+ {
+ "epoch": 58.83879423328965,
+ "grad_norm": 0.21075408160686493,
+ "learning_rate": 0.0006,
+ "loss": 3.5597028732299805,
+ "step": 4236
+ },
+ {
+ "epoch": 58.8527741371778,
+ "grad_norm": 0.20652376115322113,
+ "learning_rate": 0.0006,
+ "loss": 3.5651087760925293,
+ "step": 4237
+ },
+ {
+ "epoch": 58.86675404106597,
+ "grad_norm": 0.2243892401456833,
+ "learning_rate": 0.0006,
+ "loss": 3.5442488193511963,
+ "step": 4238
+ },
+ {
+ "epoch": 58.88073394495413,
+ "grad_norm": 0.23486459255218506,
+ "learning_rate": 0.0006,
+ "loss": 3.545135974884033,
+ "step": 4239
+ },
+ {
+ "epoch": 58.89471384884229,
+ "grad_norm": 0.23100663721561432,
+ "learning_rate": 0.0006,
+ "loss": 3.57177734375,
+ "step": 4240
+ },
+ {
+ "epoch": 58.90869375273045,
+ "grad_norm": 0.2269909679889679,
+ "learning_rate": 0.0006,
+ "loss": 3.528768301010132,
+ "step": 4241
+ },
+ {
+ "epoch": 58.92267365661861,
+ "grad_norm": 0.20349252223968506,
+ "learning_rate": 0.0006,
+ "loss": 3.591031789779663,
+ "step": 4242
+ },
+ {
+ "epoch": 58.93665356050677,
+ "grad_norm": 0.21038702130317688,
+ "learning_rate": 0.0006,
+ "loss": 3.5696892738342285,
+ "step": 4243
+ },
+ {
+ "epoch": 58.95063346439493,
+ "grad_norm": 0.21356560289859772,
+ "learning_rate": 0.0006,
+ "loss": 3.5708963871002197,
+ "step": 4244
+ },
+ {
+ "epoch": 58.964613368283096,
+ "grad_norm": 0.20008863508701324,
+ "learning_rate": 0.0006,
+ "loss": 3.524749279022217,
+ "step": 4245
+ },
+ {
+ "epoch": 58.97859327217125,
+ "grad_norm": 0.20453840494155884,
+ "learning_rate": 0.0006,
+ "loss": 3.5677876472473145,
+ "step": 4246
+ },
+ {
+ "epoch": 58.992573176059416,
+ "grad_norm": 0.21549056470394135,
+ "learning_rate": 0.0006,
+ "loss": 3.550870418548584,
+ "step": 4247
+ },
+ {
+ "epoch": 59.0,
+ "grad_norm": 0.2592930793762207,
+ "learning_rate": 0.0006,
+ "loss": 3.550673484802246,
+ "step": 4248
+ },
+ {
+ "epoch": 59.0,
+ "eval_loss": 3.968780279159546,
+ "eval_runtime": 45.6246,
+ "eval_samples_per_second": 53.524,
+ "eval_steps_per_second": 3.353,
+ "step": 4248
+ },
+ {
+ "epoch": 59.01397990388816,
+ "grad_norm": 0.218043252825737,
+ "learning_rate": 0.0006,
+ "loss": 3.49605655670166,
+ "step": 4249
+ },
+ {
+ "epoch": 59.02795980777632,
+ "grad_norm": 0.25112417340278625,
+ "learning_rate": 0.0006,
+ "loss": 3.534919023513794,
+ "step": 4250
+ },
+ {
+ "epoch": 59.04193971166448,
+ "grad_norm": 0.2785079777240753,
+ "learning_rate": 0.0006,
+ "loss": 3.5425362586975098,
+ "step": 4251
+ },
+ {
+ "epoch": 59.05591961555265,
+ "grad_norm": 0.2667599618434906,
+ "learning_rate": 0.0006,
+ "loss": 3.4955453872680664,
+ "step": 4252
+ },
+ {
+ "epoch": 59.0698995194408,
+ "grad_norm": 0.24012432992458344,
+ "learning_rate": 0.0006,
+ "loss": 3.4949915409088135,
+ "step": 4253
+ },
+ {
+ "epoch": 59.083879423328966,
+ "grad_norm": 0.2502294182777405,
+ "learning_rate": 0.0006,
+ "loss": 3.5163769721984863,
+ "step": 4254
+ },
+ {
+ "epoch": 59.09785932721712,
+ "grad_norm": 0.28585609793663025,
+ "learning_rate": 0.0006,
+ "loss": 3.4852542877197266,
+ "step": 4255
+ },
+ {
+ "epoch": 59.111839231105286,
+ "grad_norm": 0.2815989553928375,
+ "learning_rate": 0.0006,
+ "loss": 3.4991462230682373,
+ "step": 4256
+ },
+ {
+ "epoch": 59.12581913499345,
+ "grad_norm": 0.22922837734222412,
+ "learning_rate": 0.0006,
+ "loss": 3.511322021484375,
+ "step": 4257
+ },
+ {
+ "epoch": 59.139799038881605,
+ "grad_norm": 0.24964241683483124,
+ "learning_rate": 0.0006,
+ "loss": 3.521056652069092,
+ "step": 4258
+ },
+ {
+ "epoch": 59.15377894276977,
+ "grad_norm": 0.27568385004997253,
+ "learning_rate": 0.0006,
+ "loss": 3.514004707336426,
+ "step": 4259
+ },
+ {
+ "epoch": 59.16775884665793,
+ "grad_norm": 0.2605166733264923,
+ "learning_rate": 0.0006,
+ "loss": 3.5132668018341064,
+ "step": 4260
+ },
+ {
+ "epoch": 59.18173875054609,
+ "grad_norm": 0.24248117208480835,
+ "learning_rate": 0.0006,
+ "loss": 3.5492095947265625,
+ "step": 4261
+ },
+ {
+ "epoch": 59.19571865443425,
+ "grad_norm": 0.26359522342681885,
+ "learning_rate": 0.0006,
+ "loss": 3.521390438079834,
+ "step": 4262
+ },
+ {
+ "epoch": 59.20969855832241,
+ "grad_norm": 0.262248694896698,
+ "learning_rate": 0.0006,
+ "loss": 3.556307315826416,
+ "step": 4263
+ },
+ {
+ "epoch": 59.22367846221057,
+ "grad_norm": 0.23514866828918457,
+ "learning_rate": 0.0006,
+ "loss": 3.4989941120147705,
+ "step": 4264
+ },
+ {
+ "epoch": 59.237658366098735,
+ "grad_norm": 0.22758382558822632,
+ "learning_rate": 0.0006,
+ "loss": 3.5307068824768066,
+ "step": 4265
+ },
+ {
+ "epoch": 59.25163826998689,
+ "grad_norm": 0.24037839472293854,
+ "learning_rate": 0.0006,
+ "loss": 3.495872974395752,
+ "step": 4266
+ },
+ {
+ "epoch": 59.265618173875055,
+ "grad_norm": 0.22763589024543762,
+ "learning_rate": 0.0006,
+ "loss": 3.54052472114563,
+ "step": 4267
+ },
+ {
+ "epoch": 59.27959807776322,
+ "grad_norm": 0.22400406002998352,
+ "learning_rate": 0.0006,
+ "loss": 3.498671054840088,
+ "step": 4268
+ },
+ {
+ "epoch": 59.293577981651374,
+ "grad_norm": 0.2326328009366989,
+ "learning_rate": 0.0006,
+ "loss": 3.559108257293701,
+ "step": 4269
+ },
+ {
+ "epoch": 59.30755788553954,
+ "grad_norm": 0.24426043033599854,
+ "learning_rate": 0.0006,
+ "loss": 3.5245609283447266,
+ "step": 4270
+ },
+ {
+ "epoch": 59.3215377894277,
+ "grad_norm": 0.2159317582845688,
+ "learning_rate": 0.0006,
+ "loss": 3.5189900398254395,
+ "step": 4271
+ },
+ {
+ "epoch": 59.33551769331586,
+ "grad_norm": 0.19148702919483185,
+ "learning_rate": 0.0006,
+ "loss": 3.548433303833008,
+ "step": 4272
+ },
+ {
+ "epoch": 59.34949759720402,
+ "grad_norm": 0.23349083960056305,
+ "learning_rate": 0.0006,
+ "loss": 3.5475196838378906,
+ "step": 4273
+ },
+ {
+ "epoch": 59.36347750109218,
+ "grad_norm": 0.24024079740047455,
+ "learning_rate": 0.0006,
+ "loss": 3.5172529220581055,
+ "step": 4274
+ },
+ {
+ "epoch": 59.37745740498034,
+ "grad_norm": 0.23772001266479492,
+ "learning_rate": 0.0006,
+ "loss": 3.5428695678710938,
+ "step": 4275
+ },
+ {
+ "epoch": 59.391437308868504,
+ "grad_norm": 0.21134959161281586,
+ "learning_rate": 0.0006,
+ "loss": 3.523099422454834,
+ "step": 4276
+ },
+ {
+ "epoch": 59.40541721275666,
+ "grad_norm": 0.20760025084018707,
+ "learning_rate": 0.0006,
+ "loss": 3.55435848236084,
+ "step": 4277
+ },
+ {
+ "epoch": 59.419397116644824,
+ "grad_norm": 0.21113243699073792,
+ "learning_rate": 0.0006,
+ "loss": 3.5355324745178223,
+ "step": 4278
+ },
+ {
+ "epoch": 59.43337702053299,
+ "grad_norm": 0.21604566276073456,
+ "learning_rate": 0.0006,
+ "loss": 3.5517663955688477,
+ "step": 4279
+ },
+ {
+ "epoch": 59.44735692442114,
+ "grad_norm": 0.19646669924259186,
+ "learning_rate": 0.0006,
+ "loss": 3.538435935974121,
+ "step": 4280
+ },
+ {
+ "epoch": 59.46133682830931,
+ "grad_norm": 0.20394550263881683,
+ "learning_rate": 0.0006,
+ "loss": 3.528444290161133,
+ "step": 4281
+ },
+ {
+ "epoch": 59.47531673219746,
+ "grad_norm": 0.24543620645999908,
+ "learning_rate": 0.0006,
+ "loss": 3.5355372428894043,
+ "step": 4282
+ },
+ {
+ "epoch": 59.489296636085626,
+ "grad_norm": 0.24048425257205963,
+ "learning_rate": 0.0006,
+ "loss": 3.521336078643799,
+ "step": 4283
+ },
+ {
+ "epoch": 59.50327653997379,
+ "grad_norm": 0.23630213737487793,
+ "learning_rate": 0.0006,
+ "loss": 3.556244373321533,
+ "step": 4284
+ },
+ {
+ "epoch": 59.517256443861946,
+ "grad_norm": 0.2791444659233093,
+ "learning_rate": 0.0006,
+ "loss": 3.5927138328552246,
+ "step": 4285
+ },
+ {
+ "epoch": 59.53123634775011,
+ "grad_norm": 0.30325770378112793,
+ "learning_rate": 0.0006,
+ "loss": 3.559296131134033,
+ "step": 4286
+ },
+ {
+ "epoch": 59.54521625163827,
+ "grad_norm": 0.2708670496940613,
+ "learning_rate": 0.0006,
+ "loss": 3.531050205230713,
+ "step": 4287
+ },
+ {
+ "epoch": 59.55919615552643,
+ "grad_norm": 0.23795515298843384,
+ "learning_rate": 0.0006,
+ "loss": 3.5365982055664062,
+ "step": 4288
+ },
+ {
+ "epoch": 59.57317605941459,
+ "grad_norm": 0.20949627459049225,
+ "learning_rate": 0.0006,
+ "loss": 3.5591273307800293,
+ "step": 4289
+ },
+ {
+ "epoch": 59.58715596330275,
+ "grad_norm": 0.21885769069194794,
+ "learning_rate": 0.0006,
+ "loss": 3.4965288639068604,
+ "step": 4290
+ },
+ {
+ "epoch": 59.60113586719091,
+ "grad_norm": 0.22365590929985046,
+ "learning_rate": 0.0006,
+ "loss": 3.538118362426758,
+ "step": 4291
+ },
+ {
+ "epoch": 59.615115771079076,
+ "grad_norm": 0.23178881406784058,
+ "learning_rate": 0.0006,
+ "loss": 3.515933036804199,
+ "step": 4292
+ },
+ {
+ "epoch": 59.62909567496723,
+ "grad_norm": 0.21539060771465302,
+ "learning_rate": 0.0006,
+ "loss": 3.54185152053833,
+ "step": 4293
+ },
+ {
+ "epoch": 59.643075578855395,
+ "grad_norm": 0.22033682465553284,
+ "learning_rate": 0.0006,
+ "loss": 3.526728630065918,
+ "step": 4294
+ },
+ {
+ "epoch": 59.65705548274356,
+ "grad_norm": 0.23003938794136047,
+ "learning_rate": 0.0006,
+ "loss": 3.555710792541504,
+ "step": 4295
+ },
+ {
+ "epoch": 59.671035386631715,
+ "grad_norm": 0.22887346148490906,
+ "learning_rate": 0.0006,
+ "loss": 3.580883502960205,
+ "step": 4296
+ },
+ {
+ "epoch": 59.68501529051988,
+ "grad_norm": 0.2147892713546753,
+ "learning_rate": 0.0006,
+ "loss": 3.5318822860717773,
+ "step": 4297
+ },
+ {
+ "epoch": 59.69899519440804,
+ "grad_norm": 0.22063598036766052,
+ "learning_rate": 0.0006,
+ "loss": 3.5179357528686523,
+ "step": 4298
+ },
+ {
+ "epoch": 59.7129750982962,
+ "grad_norm": 0.22569656372070312,
+ "learning_rate": 0.0006,
+ "loss": 3.583181381225586,
+ "step": 4299
+ },
+ {
+ "epoch": 59.72695500218436,
+ "grad_norm": 0.2252701222896576,
+ "learning_rate": 0.0006,
+ "loss": 3.5780375003814697,
+ "step": 4300
+ },
+ {
+ "epoch": 59.74093490607252,
+ "grad_norm": 0.2288130521774292,
+ "learning_rate": 0.0006,
+ "loss": 3.570399284362793,
+ "step": 4301
+ },
+ {
+ "epoch": 59.75491480996068,
+ "grad_norm": 0.21879231929779053,
+ "learning_rate": 0.0006,
+ "loss": 3.540292739868164,
+ "step": 4302
+ },
+ {
+ "epoch": 59.768894713848844,
+ "grad_norm": 0.20675964653491974,
+ "learning_rate": 0.0006,
+ "loss": 3.532649040222168,
+ "step": 4303
+ },
+ {
+ "epoch": 59.782874617737,
+ "grad_norm": 0.21810708940029144,
+ "learning_rate": 0.0006,
+ "loss": 3.5156657695770264,
+ "step": 4304
+ },
+ {
+ "epoch": 59.796854521625164,
+ "grad_norm": 0.22701260447502136,
+ "learning_rate": 0.0006,
+ "loss": 3.5535266399383545,
+ "step": 4305
+ },
+ {
+ "epoch": 59.81083442551333,
+ "grad_norm": 0.23433080315589905,
+ "learning_rate": 0.0006,
+ "loss": 3.5280754566192627,
+ "step": 4306
+ },
+ {
+ "epoch": 59.824814329401484,
+ "grad_norm": 0.2254341095685959,
+ "learning_rate": 0.0006,
+ "loss": 3.534045696258545,
+ "step": 4307
+ },
+ {
+ "epoch": 59.83879423328965,
+ "grad_norm": 0.21756123006343842,
+ "learning_rate": 0.0006,
+ "loss": 3.5621533393859863,
+ "step": 4308
+ },
+ {
+ "epoch": 59.8527741371778,
+ "grad_norm": 0.19731850922107697,
+ "learning_rate": 0.0006,
+ "loss": 3.536633253097534,
+ "step": 4309
+ },
+ {
+ "epoch": 59.86675404106597,
+ "grad_norm": 0.2260110229253769,
+ "learning_rate": 0.0006,
+ "loss": 3.5721538066864014,
+ "step": 4310
+ },
+ {
+ "epoch": 59.88073394495413,
+ "grad_norm": 0.22728438675403595,
+ "learning_rate": 0.0006,
+ "loss": 3.5576961040496826,
+ "step": 4311
+ },
+ {
+ "epoch": 59.89471384884229,
+ "grad_norm": 0.20675411820411682,
+ "learning_rate": 0.0006,
+ "loss": 3.5070700645446777,
+ "step": 4312
+ },
+ {
+ "epoch": 59.90869375273045,
+ "grad_norm": 0.22258996963500977,
+ "learning_rate": 0.0006,
+ "loss": 3.564357280731201,
+ "step": 4313
+ },
+ {
+ "epoch": 59.92267365661861,
+ "grad_norm": 0.2429998815059662,
+ "learning_rate": 0.0006,
+ "loss": 3.519744873046875,
+ "step": 4314
+ },
+ {
+ "epoch": 59.93665356050677,
+ "grad_norm": 0.2394791841506958,
+ "learning_rate": 0.0006,
+ "loss": 3.533292055130005,
+ "step": 4315
+ },
+ {
+ "epoch": 59.95063346439493,
+ "grad_norm": 0.20659418404102325,
+ "learning_rate": 0.0006,
+ "loss": 3.5475940704345703,
+ "step": 4316
+ },
+ {
+ "epoch": 59.964613368283096,
+ "grad_norm": 0.19679132103919983,
+ "learning_rate": 0.0006,
+ "loss": 3.5794930458068848,
+ "step": 4317
+ },
+ {
+ "epoch": 59.97859327217125,
+ "grad_norm": 0.2133002132177353,
+ "learning_rate": 0.0006,
+ "loss": 3.5506505966186523,
+ "step": 4318
+ },
+ {
+ "epoch": 59.992573176059416,
+ "grad_norm": 0.22383661568164825,
+ "learning_rate": 0.0006,
+ "loss": 3.547708511352539,
+ "step": 4319
+ },
+ {
+ "epoch": 60.0,
+ "grad_norm": 0.25744178891181946,
+ "learning_rate": 0.0006,
+ "loss": 3.5519227981567383,
+ "step": 4320
+ },
+ {
+ "epoch": 60.0,
+ "eval_loss": 3.9816012382507324,
+ "eval_runtime": 46.3931,
+ "eval_samples_per_second": 52.637,
+ "eval_steps_per_second": 3.298,
+ "step": 4320
+ },
+ {
+ "epoch": 60.01397990388816,
+ "grad_norm": 0.2202005684375763,
+ "learning_rate": 0.0006,
+ "loss": 3.51010799407959,
+ "step": 4321
+ },
+ {
+ "epoch": 60.02795980777632,
+ "grad_norm": 0.24285688996315002,
+ "learning_rate": 0.0006,
+ "loss": 3.519137382507324,
+ "step": 4322
+ },
+ {
+ "epoch": 60.04193971166448,
+ "grad_norm": 0.2700578570365906,
+ "learning_rate": 0.0006,
+ "loss": 3.523392915725708,
+ "step": 4323
+ },
+ {
+ "epoch": 60.05591961555265,
+ "grad_norm": 0.30088669061660767,
+ "learning_rate": 0.0006,
+ "loss": 3.48724627494812,
+ "step": 4324
+ },
+ {
+ "epoch": 60.0698995194408,
+ "grad_norm": 0.30426669120788574,
+ "learning_rate": 0.0006,
+ "loss": 3.479025363922119,
+ "step": 4325
+ },
+ {
+ "epoch": 60.083879423328966,
+ "grad_norm": 0.2718220055103302,
+ "learning_rate": 0.0006,
+ "loss": 3.4923276901245117,
+ "step": 4326
+ },
+ {
+ "epoch": 60.09785932721712,
+ "grad_norm": 0.23625287413597107,
+ "learning_rate": 0.0006,
+ "loss": 3.5152812004089355,
+ "step": 4327
+ },
+ {
+ "epoch": 60.111839231105286,
+ "grad_norm": 0.23336869478225708,
+ "learning_rate": 0.0006,
+ "loss": 3.512453079223633,
+ "step": 4328
+ },
+ {
+ "epoch": 60.12581913499345,
+ "grad_norm": 0.24780215322971344,
+ "learning_rate": 0.0006,
+ "loss": 3.505812168121338,
+ "step": 4329
+ },
+ {
+ "epoch": 60.139799038881605,
+ "grad_norm": 0.25600194931030273,
+ "learning_rate": 0.0006,
+ "loss": 3.5281314849853516,
+ "step": 4330
+ },
+ {
+ "epoch": 60.15377894276977,
+ "grad_norm": 0.2458304911851883,
+ "learning_rate": 0.0006,
+ "loss": 3.4932949542999268,
+ "step": 4331
+ },
+ {
+ "epoch": 60.16775884665793,
+ "grad_norm": 0.2246888130903244,
+ "learning_rate": 0.0006,
+ "loss": 3.5295495986938477,
+ "step": 4332
+ },
+ {
+ "epoch": 60.18173875054609,
+ "grad_norm": 0.23762951791286469,
+ "learning_rate": 0.0006,
+ "loss": 3.4938201904296875,
+ "step": 4333
+ },
+ {
+ "epoch": 60.19571865443425,
+ "grad_norm": 0.24483945965766907,
+ "learning_rate": 0.0006,
+ "loss": 3.544774055480957,
+ "step": 4334
+ },
+ {
+ "epoch": 60.20969855832241,
+ "grad_norm": 0.24154368042945862,
+ "learning_rate": 0.0006,
+ "loss": 3.5352816581726074,
+ "step": 4335
+ },
+ {
+ "epoch": 60.22367846221057,
+ "grad_norm": 0.22929225862026215,
+ "learning_rate": 0.0006,
+ "loss": 3.5546953678131104,
+ "step": 4336
+ },
+ {
+ "epoch": 60.237658366098735,
+ "grad_norm": 0.21391373872756958,
+ "learning_rate": 0.0006,
+ "loss": 3.537647247314453,
+ "step": 4337
+ },
+ {
+ "epoch": 60.25163826998689,
+ "grad_norm": 0.20410357415676117,
+ "learning_rate": 0.0006,
+ "loss": 3.535831928253174,
+ "step": 4338
+ },
+ {
+ "epoch": 60.265618173875055,
+ "grad_norm": 0.2070329487323761,
+ "learning_rate": 0.0006,
+ "loss": 3.5234389305114746,
+ "step": 4339
+ },
+ {
+ "epoch": 60.27959807776322,
+ "grad_norm": 0.20540225505828857,
+ "learning_rate": 0.0006,
+ "loss": 3.557478427886963,
+ "step": 4340
+ },
+ {
+ "epoch": 60.293577981651374,
+ "grad_norm": 0.2124919891357422,
+ "learning_rate": 0.0006,
+ "loss": 3.532726764678955,
+ "step": 4341
+ },
+ {
+ "epoch": 60.30755788553954,
+ "grad_norm": 0.22207678854465485,
+ "learning_rate": 0.0006,
+ "loss": 3.5314202308654785,
+ "step": 4342
+ },
+ {
+ "epoch": 60.3215377894277,
+ "grad_norm": 0.2137281745672226,
+ "learning_rate": 0.0006,
+ "loss": 3.5491206645965576,
+ "step": 4343
+ },
+ {
+ "epoch": 60.33551769331586,
+ "grad_norm": 0.20728953182697296,
+ "learning_rate": 0.0006,
+ "loss": 3.5111031532287598,
+ "step": 4344
+ },
+ {
+ "epoch": 60.34949759720402,
+ "grad_norm": 0.22547020018100739,
+ "learning_rate": 0.0006,
+ "loss": 3.5311098098754883,
+ "step": 4345
+ },
+ {
+ "epoch": 60.36347750109218,
+ "grad_norm": 0.23352888226509094,
+ "learning_rate": 0.0006,
+ "loss": 3.5200939178466797,
+ "step": 4346
+ },
+ {
+ "epoch": 60.37745740498034,
+ "grad_norm": 0.21329060196876526,
+ "learning_rate": 0.0006,
+ "loss": 3.508589744567871,
+ "step": 4347
+ },
+ {
+ "epoch": 60.391437308868504,
+ "grad_norm": 0.1904045194387436,
+ "learning_rate": 0.0006,
+ "loss": 3.4850475788116455,
+ "step": 4348
+ },
+ {
+ "epoch": 60.40541721275666,
+ "grad_norm": 0.20586109161376953,
+ "learning_rate": 0.0006,
+ "loss": 3.5503551959991455,
+ "step": 4349
+ },
+ {
+ "epoch": 60.419397116644824,
+ "grad_norm": 0.21311818063259125,
+ "learning_rate": 0.0006,
+ "loss": 3.5243923664093018,
+ "step": 4350
+ },
+ {
+ "epoch": 60.43337702053299,
+ "grad_norm": 0.21479184925556183,
+ "learning_rate": 0.0006,
+ "loss": 3.553647041320801,
+ "step": 4351
+ },
+ {
+ "epoch": 60.44735692442114,
+ "grad_norm": 0.19994449615478516,
+ "learning_rate": 0.0006,
+ "loss": 3.5558884143829346,
+ "step": 4352
+ },
+ {
+ "epoch": 60.46133682830931,
+ "grad_norm": 0.21455694735050201,
+ "learning_rate": 0.0006,
+ "loss": 3.5186543464660645,
+ "step": 4353
+ },
+ {
+ "epoch": 60.47531673219746,
+ "grad_norm": 0.21904151141643524,
+ "learning_rate": 0.0006,
+ "loss": 3.526367425918579,
+ "step": 4354
+ },
+ {
+ "epoch": 60.489296636085626,
+ "grad_norm": 0.1908986121416092,
+ "learning_rate": 0.0006,
+ "loss": 3.541072368621826,
+ "step": 4355
+ },
+ {
+ "epoch": 60.50327653997379,
+ "grad_norm": 0.20290519297122955,
+ "learning_rate": 0.0006,
+ "loss": 3.530333995819092,
+ "step": 4356
+ },
+ {
+ "epoch": 60.517256443861946,
+ "grad_norm": 0.2318771779537201,
+ "learning_rate": 0.0006,
+ "loss": 3.5260486602783203,
+ "step": 4357
+ },
+ {
+ "epoch": 60.53123634775011,
+ "grad_norm": 0.25559669733047485,
+ "learning_rate": 0.0006,
+ "loss": 3.56851863861084,
+ "step": 4358
+ },
+ {
+ "epoch": 60.54521625163827,
+ "grad_norm": 0.2529429793357849,
+ "learning_rate": 0.0006,
+ "loss": 3.5519490242004395,
+ "step": 4359
+ },
+ {
+ "epoch": 60.55919615552643,
+ "grad_norm": 0.22857248783111572,
+ "learning_rate": 0.0006,
+ "loss": 3.5556063652038574,
+ "step": 4360
+ },
+ {
+ "epoch": 60.57317605941459,
+ "grad_norm": 0.21628573536872864,
+ "learning_rate": 0.0006,
+ "loss": 3.5321288108825684,
+ "step": 4361
+ },
+ {
+ "epoch": 60.58715596330275,
+ "grad_norm": 0.19497910141944885,
+ "learning_rate": 0.0006,
+ "loss": 3.5480406284332275,
+ "step": 4362
+ },
+ {
+ "epoch": 60.60113586719091,
+ "grad_norm": 0.204348623752594,
+ "learning_rate": 0.0006,
+ "loss": 3.522806167602539,
+ "step": 4363
+ },
+ {
+ "epoch": 60.615115771079076,
+ "grad_norm": 0.23013663291931152,
+ "learning_rate": 0.0006,
+ "loss": 3.512876033782959,
+ "step": 4364
+ },
+ {
+ "epoch": 60.62909567496723,
+ "grad_norm": 0.22948725521564484,
+ "learning_rate": 0.0006,
+ "loss": 3.54276704788208,
+ "step": 4365
+ },
+ {
+ "epoch": 60.643075578855395,
+ "grad_norm": 0.20528492331504822,
+ "learning_rate": 0.0006,
+ "loss": 3.5592503547668457,
+ "step": 4366
+ },
+ {
+ "epoch": 60.65705548274356,
+ "grad_norm": 0.214582160115242,
+ "learning_rate": 0.0006,
+ "loss": 3.5168166160583496,
+ "step": 4367
+ },
+ {
+ "epoch": 60.671035386631715,
+ "grad_norm": 0.18893493711948395,
+ "learning_rate": 0.0006,
+ "loss": 3.51012921333313,
+ "step": 4368
+ },
+ {
+ "epoch": 60.68501529051988,
+ "grad_norm": 0.19301992654800415,
+ "learning_rate": 0.0006,
+ "loss": 3.5396199226379395,
+ "step": 4369
+ },
+ {
+ "epoch": 60.69899519440804,
+ "grad_norm": 0.22339801490306854,
+ "learning_rate": 0.0006,
+ "loss": 3.5463967323303223,
+ "step": 4370
+ },
+ {
+ "epoch": 60.7129750982962,
+ "grad_norm": 0.19028180837631226,
+ "learning_rate": 0.0006,
+ "loss": 3.534419536590576,
+ "step": 4371
+ },
+ {
+ "epoch": 60.72695500218436,
+ "grad_norm": 0.2078639566898346,
+ "learning_rate": 0.0006,
+ "loss": 3.5345680713653564,
+ "step": 4372
+ },
+ {
+ "epoch": 60.74093490607252,
+ "grad_norm": 0.24292199313640594,
+ "learning_rate": 0.0006,
+ "loss": 3.5291242599487305,
+ "step": 4373
+ },
+ {
+ "epoch": 60.75491480996068,
+ "grad_norm": 0.25118497014045715,
+ "learning_rate": 0.0006,
+ "loss": 3.5362191200256348,
+ "step": 4374
+ },
+ {
+ "epoch": 60.768894713848844,
+ "grad_norm": 0.24816395342350006,
+ "learning_rate": 0.0006,
+ "loss": 3.539637804031372,
+ "step": 4375
+ },
+ {
+ "epoch": 60.782874617737,
+ "grad_norm": 0.23654010891914368,
+ "learning_rate": 0.0006,
+ "loss": 3.482605457305908,
+ "step": 4376
+ },
+ {
+ "epoch": 60.796854521625164,
+ "grad_norm": 0.21593770384788513,
+ "learning_rate": 0.0006,
+ "loss": 3.550279140472412,
+ "step": 4377
+ },
+ {
+ "epoch": 60.81083442551333,
+ "grad_norm": 0.21346014738082886,
+ "learning_rate": 0.0006,
+ "loss": 3.541086196899414,
+ "step": 4378
+ },
+ {
+ "epoch": 60.824814329401484,
+ "grad_norm": 0.2284841537475586,
+ "learning_rate": 0.0006,
+ "loss": 3.544254779815674,
+ "step": 4379
+ },
+ {
+ "epoch": 60.83879423328965,
+ "grad_norm": 0.23353151977062225,
+ "learning_rate": 0.0006,
+ "loss": 3.5606589317321777,
+ "step": 4380
+ },
+ {
+ "epoch": 60.8527741371778,
+ "grad_norm": 0.2201574146747589,
+ "learning_rate": 0.0006,
+ "loss": 3.524120807647705,
+ "step": 4381
+ },
+ {
+ "epoch": 60.86675404106597,
+ "grad_norm": 0.2277211993932724,
+ "learning_rate": 0.0006,
+ "loss": 3.553539276123047,
+ "step": 4382
+ },
+ {
+ "epoch": 60.88073394495413,
+ "grad_norm": 0.2282724678516388,
+ "learning_rate": 0.0006,
+ "loss": 3.5247130393981934,
+ "step": 4383
+ },
+ {
+ "epoch": 60.89471384884229,
+ "grad_norm": 0.20859065651893616,
+ "learning_rate": 0.0006,
+ "loss": 3.5654680728912354,
+ "step": 4384
+ },
+ {
+ "epoch": 60.90869375273045,
+ "grad_norm": 0.1995432823896408,
+ "learning_rate": 0.0006,
+ "loss": 3.5091423988342285,
+ "step": 4385
+ },
+ {
+ "epoch": 60.92267365661861,
+ "grad_norm": 0.19769565761089325,
+ "learning_rate": 0.0006,
+ "loss": 3.5375986099243164,
+ "step": 4386
+ },
+ {
+ "epoch": 60.93665356050677,
+ "grad_norm": 0.21246176958084106,
+ "learning_rate": 0.0006,
+ "loss": 3.570774793624878,
+ "step": 4387
+ },
+ {
+ "epoch": 60.95063346439493,
+ "grad_norm": 0.2212657630443573,
+ "learning_rate": 0.0006,
+ "loss": 3.5192928314208984,
+ "step": 4388
+ },
+ {
+ "epoch": 60.964613368283096,
+ "grad_norm": 0.2258632481098175,
+ "learning_rate": 0.0006,
+ "loss": 3.5356457233428955,
+ "step": 4389
+ },
+ {
+ "epoch": 60.97859327217125,
+ "grad_norm": 0.1998971700668335,
+ "learning_rate": 0.0006,
+ "loss": 3.52758526802063,
+ "step": 4390
+ },
+ {
+ "epoch": 60.992573176059416,
+ "grad_norm": 0.1932399868965149,
+ "learning_rate": 0.0006,
+ "loss": 3.562718391418457,
+ "step": 4391
+ },
+ {
+ "epoch": 61.0,
+ "grad_norm": 0.24292197823524475,
+ "learning_rate": 0.0006,
+ "loss": 3.550189971923828,
+ "step": 4392
+ },
+ {
+ "epoch": 61.0,
+ "eval_loss": 3.974423408508301,
+ "eval_runtime": 45.8822,
+ "eval_samples_per_second": 53.223,
+ "eval_steps_per_second": 3.335,
+ "step": 4392
+ },
+ {
+ "epoch": 61.01397990388816,
+ "grad_norm": 0.2216092199087143,
+ "learning_rate": 0.0006,
+ "loss": 3.51747989654541,
+ "step": 4393
+ },
+ {
+ "epoch": 61.02795980777632,
+ "grad_norm": 0.23488417267799377,
+ "learning_rate": 0.0006,
+ "loss": 3.529064178466797,
+ "step": 4394
+ },
+ {
+ "epoch": 61.04193971166448,
+ "grad_norm": 0.2805800437927246,
+ "learning_rate": 0.0006,
+ "loss": 3.4868035316467285,
+ "step": 4395
+ },
+ {
+ "epoch": 61.05591961555265,
+ "grad_norm": 0.32623469829559326,
+ "learning_rate": 0.0006,
+ "loss": 3.5209708213806152,
+ "step": 4396
+ },
+ {
+ "epoch": 61.0698995194408,
+ "grad_norm": 0.2645402252674103,
+ "learning_rate": 0.0006,
+ "loss": 3.524512767791748,
+ "step": 4397
+ },
+ {
+ "epoch": 61.083879423328966,
+ "grad_norm": 0.21118173003196716,
+ "learning_rate": 0.0006,
+ "loss": 3.5167856216430664,
+ "step": 4398
+ },
+ {
+ "epoch": 61.09785932721712,
+ "grad_norm": 0.28649622201919556,
+ "learning_rate": 0.0006,
+ "loss": 3.5122973918914795,
+ "step": 4399
+ },
+ {
+ "epoch": 61.111839231105286,
+ "grad_norm": 0.39095914363861084,
+ "learning_rate": 0.0006,
+ "loss": 3.481421947479248,
+ "step": 4400
+ },
+ {
+ "epoch": 61.12581913499345,
+ "grad_norm": 0.4013976454734802,
+ "learning_rate": 0.0006,
+ "loss": 3.4859061241149902,
+ "step": 4401
+ },
+ {
+ "epoch": 61.139799038881605,
+ "grad_norm": 0.30067047476768494,
+ "learning_rate": 0.0006,
+ "loss": 3.524209976196289,
+ "step": 4402
+ },
+ {
+ "epoch": 61.15377894276977,
+ "grad_norm": 0.2086855173110962,
+ "learning_rate": 0.0006,
+ "loss": 3.4974379539489746,
+ "step": 4403
+ },
+ {
+ "epoch": 61.16775884665793,
+ "grad_norm": 0.25443482398986816,
+ "learning_rate": 0.0006,
+ "loss": 3.517038345336914,
+ "step": 4404
+ },
+ {
+ "epoch": 61.18173875054609,
+ "grad_norm": 0.27545589208602905,
+ "learning_rate": 0.0006,
+ "loss": 3.5075795650482178,
+ "step": 4405
+ },
+ {
+ "epoch": 61.19571865443425,
+ "grad_norm": 0.269279420375824,
+ "learning_rate": 0.0006,
+ "loss": 3.512235641479492,
+ "step": 4406
+ },
+ {
+ "epoch": 61.20969855832241,
+ "grad_norm": 0.24606923758983612,
+ "learning_rate": 0.0006,
+ "loss": 3.5362367630004883,
+ "step": 4407
+ },
+ {
+ "epoch": 61.22367846221057,
+ "grad_norm": 0.23358067870140076,
+ "learning_rate": 0.0006,
+ "loss": 3.5256686210632324,
+ "step": 4408
+ },
+ {
+ "epoch": 61.237658366098735,
+ "grad_norm": 0.2528085708618164,
+ "learning_rate": 0.0006,
+ "loss": 3.504239559173584,
+ "step": 4409
+ },
+ {
+ "epoch": 61.25163826998689,
+ "grad_norm": 0.28145745396614075,
+ "learning_rate": 0.0006,
+ "loss": 3.4862139225006104,
+ "step": 4410
+ },
+ {
+ "epoch": 61.265618173875055,
+ "grad_norm": 0.26570039987564087,
+ "learning_rate": 0.0006,
+ "loss": 3.5138425827026367,
+ "step": 4411
+ },
+ {
+ "epoch": 61.27959807776322,
+ "grad_norm": 0.2391415685415268,
+ "learning_rate": 0.0006,
+ "loss": 3.537569999694824,
+ "step": 4412
+ },
+ {
+ "epoch": 61.293577981651374,
+ "grad_norm": 0.22194577753543854,
+ "learning_rate": 0.0006,
+ "loss": 3.5367543697357178,
+ "step": 4413
+ },
+ {
+ "epoch": 61.30755788553954,
+ "grad_norm": 0.2388865202665329,
+ "learning_rate": 0.0006,
+ "loss": 3.533341407775879,
+ "step": 4414
+ },
+ {
+ "epoch": 61.3215377894277,
+ "grad_norm": 0.2666625380516052,
+ "learning_rate": 0.0006,
+ "loss": 3.501162528991699,
+ "step": 4415
+ },
+ {
+ "epoch": 61.33551769331586,
+ "grad_norm": 0.25569409132003784,
+ "learning_rate": 0.0006,
+ "loss": 3.529283046722412,
+ "step": 4416
+ },
+ {
+ "epoch": 61.34949759720402,
+ "grad_norm": 0.24683351814746857,
+ "learning_rate": 0.0006,
+ "loss": 3.508152484893799,
+ "step": 4417
+ },
+ {
+ "epoch": 61.36347750109218,
+ "grad_norm": 0.22290605306625366,
+ "learning_rate": 0.0006,
+ "loss": 3.5309581756591797,
+ "step": 4418
+ },
+ {
+ "epoch": 61.37745740498034,
+ "grad_norm": 0.2174215167760849,
+ "learning_rate": 0.0006,
+ "loss": 3.508796453475952,
+ "step": 4419
+ },
+ {
+ "epoch": 61.391437308868504,
+ "grad_norm": 0.23006199300289154,
+ "learning_rate": 0.0006,
+ "loss": 3.5497584342956543,
+ "step": 4420
+ },
+ {
+ "epoch": 61.40541721275666,
+ "grad_norm": 0.2311345487833023,
+ "learning_rate": 0.0006,
+ "loss": 3.5524582862854004,
+ "step": 4421
+ },
+ {
+ "epoch": 61.419397116644824,
+ "grad_norm": 0.2296203076839447,
+ "learning_rate": 0.0006,
+ "loss": 3.5146689414978027,
+ "step": 4422
+ },
+ {
+ "epoch": 61.43337702053299,
+ "grad_norm": 0.24848754703998566,
+ "learning_rate": 0.0006,
+ "loss": 3.489335060119629,
+ "step": 4423
+ },
+ {
+ "epoch": 61.44735692442114,
+ "grad_norm": 0.23717737197875977,
+ "learning_rate": 0.0006,
+ "loss": 3.4982404708862305,
+ "step": 4424
+ },
+ {
+ "epoch": 61.46133682830931,
+ "grad_norm": 0.21826806664466858,
+ "learning_rate": 0.0006,
+ "loss": 3.5134825706481934,
+ "step": 4425
+ },
+ {
+ "epoch": 61.47531673219746,
+ "grad_norm": 0.22878992557525635,
+ "learning_rate": 0.0006,
+ "loss": 3.512604236602783,
+ "step": 4426
+ },
+ {
+ "epoch": 61.489296636085626,
+ "grad_norm": 0.21184465289115906,
+ "learning_rate": 0.0006,
+ "loss": 3.5314245223999023,
+ "step": 4427
+ },
+ {
+ "epoch": 61.50327653997379,
+ "grad_norm": 0.2129429429769516,
+ "learning_rate": 0.0006,
+ "loss": 3.51242733001709,
+ "step": 4428
+ },
+ {
+ "epoch": 61.517256443861946,
+ "grad_norm": 0.21566109359264374,
+ "learning_rate": 0.0006,
+ "loss": 3.5287160873413086,
+ "step": 4429
+ },
+ {
+ "epoch": 61.53123634775011,
+ "grad_norm": 0.2010934203863144,
+ "learning_rate": 0.0006,
+ "loss": 3.5250844955444336,
+ "step": 4430
+ },
+ {
+ "epoch": 61.54521625163827,
+ "grad_norm": 0.1979563683271408,
+ "learning_rate": 0.0006,
+ "loss": 3.553415536880493,
+ "step": 4431
+ },
+ {
+ "epoch": 61.55919615552643,
+ "grad_norm": 0.19513480365276337,
+ "learning_rate": 0.0006,
+ "loss": 3.500551223754883,
+ "step": 4432
+ },
+ {
+ "epoch": 61.57317605941459,
+ "grad_norm": 0.19601108133792877,
+ "learning_rate": 0.0006,
+ "loss": 3.532161235809326,
+ "step": 4433
+ },
+ {
+ "epoch": 61.58715596330275,
+ "grad_norm": 0.2054651528596878,
+ "learning_rate": 0.0006,
+ "loss": 3.5360732078552246,
+ "step": 4434
+ },
+ {
+ "epoch": 61.60113586719091,
+ "grad_norm": 0.2096887230873108,
+ "learning_rate": 0.0006,
+ "loss": 3.522620916366577,
+ "step": 4435
+ },
+ {
+ "epoch": 61.615115771079076,
+ "grad_norm": 0.19664394855499268,
+ "learning_rate": 0.0006,
+ "loss": 3.5298569202423096,
+ "step": 4436
+ },
+ {
+ "epoch": 61.62909567496723,
+ "grad_norm": 0.20641925930976868,
+ "learning_rate": 0.0006,
+ "loss": 3.521233320236206,
+ "step": 4437
+ },
+ {
+ "epoch": 61.643075578855395,
+ "grad_norm": 0.2013241946697235,
+ "learning_rate": 0.0006,
+ "loss": 3.536212682723999,
+ "step": 4438
+ },
+ {
+ "epoch": 61.65705548274356,
+ "grad_norm": 0.19561146199703217,
+ "learning_rate": 0.0006,
+ "loss": 3.569584846496582,
+ "step": 4439
+ },
+ {
+ "epoch": 61.671035386631715,
+ "grad_norm": 0.2281758189201355,
+ "learning_rate": 0.0006,
+ "loss": 3.5208396911621094,
+ "step": 4440
+ },
+ {
+ "epoch": 61.68501529051988,
+ "grad_norm": 0.2387618124485016,
+ "learning_rate": 0.0006,
+ "loss": 3.5338330268859863,
+ "step": 4441
+ },
+ {
+ "epoch": 61.69899519440804,
+ "grad_norm": 0.23753441870212555,
+ "learning_rate": 0.0006,
+ "loss": 3.5454416275024414,
+ "step": 4442
+ },
+ {
+ "epoch": 61.7129750982962,
+ "grad_norm": 0.2477191686630249,
+ "learning_rate": 0.0006,
+ "loss": 3.5409836769104004,
+ "step": 4443
+ },
+ {
+ "epoch": 61.72695500218436,
+ "grad_norm": 0.25156062841415405,
+ "learning_rate": 0.0006,
+ "loss": 3.5135607719421387,
+ "step": 4444
+ },
+ {
+ "epoch": 61.74093490607252,
+ "grad_norm": 0.21422065794467926,
+ "learning_rate": 0.0006,
+ "loss": 3.5514771938323975,
+ "step": 4445
+ },
+ {
+ "epoch": 61.75491480996068,
+ "grad_norm": 0.2103811502456665,
+ "learning_rate": 0.0006,
+ "loss": 3.544037103652954,
+ "step": 4446
+ },
+ {
+ "epoch": 61.768894713848844,
+ "grad_norm": 0.21455387771129608,
+ "learning_rate": 0.0006,
+ "loss": 3.5526280403137207,
+ "step": 4447
+ },
+ {
+ "epoch": 61.782874617737,
+ "grad_norm": 0.22101432085037231,
+ "learning_rate": 0.0006,
+ "loss": 3.510197639465332,
+ "step": 4448
+ },
+ {
+ "epoch": 61.796854521625164,
+ "grad_norm": 0.2093520164489746,
+ "learning_rate": 0.0006,
+ "loss": 3.52504301071167,
+ "step": 4449
+ },
+ {
+ "epoch": 61.81083442551333,
+ "grad_norm": 0.2224605530500412,
+ "learning_rate": 0.0006,
+ "loss": 3.5590806007385254,
+ "step": 4450
+ },
+ {
+ "epoch": 61.824814329401484,
+ "grad_norm": 0.22242501378059387,
+ "learning_rate": 0.0006,
+ "loss": 3.5409610271453857,
+ "step": 4451
+ },
+ {
+ "epoch": 61.83879423328965,
+ "grad_norm": 0.22488343715667725,
+ "learning_rate": 0.0006,
+ "loss": 3.537534236907959,
+ "step": 4452
+ },
+ {
+ "epoch": 61.8527741371778,
+ "grad_norm": 0.23510107398033142,
+ "learning_rate": 0.0006,
+ "loss": 3.5561342239379883,
+ "step": 4453
+ },
+ {
+ "epoch": 61.86675404106597,
+ "grad_norm": 0.237285315990448,
+ "learning_rate": 0.0006,
+ "loss": 3.539592742919922,
+ "step": 4454
+ },
+ {
+ "epoch": 61.88073394495413,
+ "grad_norm": 0.21573765575885773,
+ "learning_rate": 0.0006,
+ "loss": 3.552250385284424,
+ "step": 4455
+ },
+ {
+ "epoch": 61.89471384884229,
+ "grad_norm": 0.20348075032234192,
+ "learning_rate": 0.0006,
+ "loss": 3.5406012535095215,
+ "step": 4456
+ },
+ {
+ "epoch": 61.90869375273045,
+ "grad_norm": 0.21306075155735016,
+ "learning_rate": 0.0006,
+ "loss": 3.504248857498169,
+ "step": 4457
+ },
+ {
+ "epoch": 61.92267365661861,
+ "grad_norm": 0.2184341996908188,
+ "learning_rate": 0.0006,
+ "loss": 3.5441558361053467,
+ "step": 4458
+ },
+ {
+ "epoch": 61.93665356050677,
+ "grad_norm": 0.20888687670230865,
+ "learning_rate": 0.0006,
+ "loss": 3.517657518386841,
+ "step": 4459
+ },
+ {
+ "epoch": 61.95063346439493,
+ "grad_norm": 0.2066143900156021,
+ "learning_rate": 0.0006,
+ "loss": 3.525796890258789,
+ "step": 4460
+ },
+ {
+ "epoch": 61.964613368283096,
+ "grad_norm": 0.1906299591064453,
+ "learning_rate": 0.0006,
+ "loss": 3.550924777984619,
+ "step": 4461
+ },
+ {
+ "epoch": 61.97859327217125,
+ "grad_norm": 0.1834334284067154,
+ "learning_rate": 0.0006,
+ "loss": 3.5818099975585938,
+ "step": 4462
+ },
+ {
+ "epoch": 61.992573176059416,
+ "grad_norm": 0.22725825011730194,
+ "learning_rate": 0.0006,
+ "loss": 3.5573811531066895,
+ "step": 4463
+ },
+ {
+ "epoch": 62.0,
+ "grad_norm": 0.29936420917510986,
+ "learning_rate": 0.0006,
+ "loss": 3.557694435119629,
+ "step": 4464
+ },
+ {
+ "epoch": 62.0,
+ "eval_loss": 3.985543966293335,
+ "eval_runtime": 46.6388,
+ "eval_samples_per_second": 52.36,
+ "eval_steps_per_second": 3.281,
+ "step": 4464
+ },
+ {
+ "epoch": 62.01397990388816,
+ "grad_norm": 0.30896103382110596,
+ "learning_rate": 0.0006,
+ "loss": 3.4991438388824463,
+ "step": 4465
+ },
+ {
+ "epoch": 62.02795980777632,
+ "grad_norm": 0.27383437752723694,
+ "learning_rate": 0.0006,
+ "loss": 3.4710259437561035,
+ "step": 4466
+ },
+ {
+ "epoch": 62.04193971166448,
+ "grad_norm": 0.24412496387958527,
+ "learning_rate": 0.0006,
+ "loss": 3.4983878135681152,
+ "step": 4467
+ },
+ {
+ "epoch": 62.05591961555265,
+ "grad_norm": 0.2649880051612854,
+ "learning_rate": 0.0006,
+ "loss": 3.5481886863708496,
+ "step": 4468
+ },
+ {
+ "epoch": 62.0698995194408,
+ "grad_norm": 0.2625769078731537,
+ "learning_rate": 0.0006,
+ "loss": 3.5114197731018066,
+ "step": 4469
+ },
+ {
+ "epoch": 62.083879423328966,
+ "grad_norm": 0.234181210398674,
+ "learning_rate": 0.0006,
+ "loss": 3.504152536392212,
+ "step": 4470
+ },
+ {
+ "epoch": 62.09785932721712,
+ "grad_norm": 0.21403342485427856,
+ "learning_rate": 0.0006,
+ "loss": 3.50738525390625,
+ "step": 4471
+ },
+ {
+ "epoch": 62.111839231105286,
+ "grad_norm": 0.22780060768127441,
+ "learning_rate": 0.0006,
+ "loss": 3.518354892730713,
+ "step": 4472
+ },
+ {
+ "epoch": 62.12581913499345,
+ "grad_norm": 0.23725424706935883,
+ "learning_rate": 0.0006,
+ "loss": 3.5227513313293457,
+ "step": 4473
+ },
+ {
+ "epoch": 62.139799038881605,
+ "grad_norm": 0.23643283545970917,
+ "learning_rate": 0.0006,
+ "loss": 3.504271984100342,
+ "step": 4474
+ },
+ {
+ "epoch": 62.15377894276977,
+ "grad_norm": 0.22513480484485626,
+ "learning_rate": 0.0006,
+ "loss": 3.5232059955596924,
+ "step": 4475
+ },
+ {
+ "epoch": 62.16775884665793,
+ "grad_norm": 0.23375700414180756,
+ "learning_rate": 0.0006,
+ "loss": 3.506519317626953,
+ "step": 4476
+ },
+ {
+ "epoch": 62.18173875054609,
+ "grad_norm": 0.24691303074359894,
+ "learning_rate": 0.0006,
+ "loss": 3.5212974548339844,
+ "step": 4477
+ },
+ {
+ "epoch": 62.19571865443425,
+ "grad_norm": 0.23466123640537262,
+ "learning_rate": 0.0006,
+ "loss": 3.5295071601867676,
+ "step": 4478
+ },
+ {
+ "epoch": 62.20969855832241,
+ "grad_norm": 0.2432340532541275,
+ "learning_rate": 0.0006,
+ "loss": 3.487830638885498,
+ "step": 4479
+ },
+ {
+ "epoch": 62.22367846221057,
+ "grad_norm": 0.24575389921665192,
+ "learning_rate": 0.0006,
+ "loss": 3.5329103469848633,
+ "step": 4480
+ },
+ {
+ "epoch": 62.237658366098735,
+ "grad_norm": 0.2441941201686859,
+ "learning_rate": 0.0006,
+ "loss": 3.5230906009674072,
+ "step": 4481
+ },
+ {
+ "epoch": 62.25163826998689,
+ "grad_norm": 0.2278154343366623,
+ "learning_rate": 0.0006,
+ "loss": 3.4919002056121826,
+ "step": 4482
+ },
+ {
+ "epoch": 62.265618173875055,
+ "grad_norm": 0.23517796397209167,
+ "learning_rate": 0.0006,
+ "loss": 3.5137887001037598,
+ "step": 4483
+ },
+ {
+ "epoch": 62.27959807776322,
+ "grad_norm": 0.2533835470676422,
+ "learning_rate": 0.0006,
+ "loss": 3.526322841644287,
+ "step": 4484
+ },
+ {
+ "epoch": 62.293577981651374,
+ "grad_norm": 0.24535894393920898,
+ "learning_rate": 0.0006,
+ "loss": 3.5060930252075195,
+ "step": 4485
+ },
+ {
+ "epoch": 62.30755788553954,
+ "grad_norm": 0.23312991857528687,
+ "learning_rate": 0.0006,
+ "loss": 3.5015740394592285,
+ "step": 4486
+ },
+ {
+ "epoch": 62.3215377894277,
+ "grad_norm": 0.2073916792869568,
+ "learning_rate": 0.0006,
+ "loss": 3.5239500999450684,
+ "step": 4487
+ },
+ {
+ "epoch": 62.33551769331586,
+ "grad_norm": 0.23528249561786652,
+ "learning_rate": 0.0006,
+ "loss": 3.4946212768554688,
+ "step": 4488
+ },
+ {
+ "epoch": 62.34949759720402,
+ "grad_norm": 0.25181272625923157,
+ "learning_rate": 0.0006,
+ "loss": 3.5492000579833984,
+ "step": 4489
+ },
+ {
+ "epoch": 62.36347750109218,
+ "grad_norm": 0.250745564699173,
+ "learning_rate": 0.0006,
+ "loss": 3.491637706756592,
+ "step": 4490
+ },
+ {
+ "epoch": 62.37745740498034,
+ "grad_norm": 0.2461264729499817,
+ "learning_rate": 0.0006,
+ "loss": 3.514125108718872,
+ "step": 4491
+ },
+ {
+ "epoch": 62.391437308868504,
+ "grad_norm": 0.2265472114086151,
+ "learning_rate": 0.0006,
+ "loss": 3.5513534545898438,
+ "step": 4492
+ },
+ {
+ "epoch": 62.40541721275666,
+ "grad_norm": 0.21937128901481628,
+ "learning_rate": 0.0006,
+ "loss": 3.541867733001709,
+ "step": 4493
+ },
+ {
+ "epoch": 62.419397116644824,
+ "grad_norm": 0.21318639814853668,
+ "learning_rate": 0.0006,
+ "loss": 3.530449867248535,
+ "step": 4494
+ },
+ {
+ "epoch": 62.43337702053299,
+ "grad_norm": 0.21287934482097626,
+ "learning_rate": 0.0006,
+ "loss": 3.51837158203125,
+ "step": 4495
+ },
+ {
+ "epoch": 62.44735692442114,
+ "grad_norm": 0.21953676640987396,
+ "learning_rate": 0.0006,
+ "loss": 3.517456293106079,
+ "step": 4496
+ },
+ {
+ "epoch": 62.46133682830931,
+ "grad_norm": 0.23475255072116852,
+ "learning_rate": 0.0006,
+ "loss": 3.493858575820923,
+ "step": 4497
+ },
+ {
+ "epoch": 62.47531673219746,
+ "grad_norm": 0.21805652976036072,
+ "learning_rate": 0.0006,
+ "loss": 3.533367872238159,
+ "step": 4498
+ },
+ {
+ "epoch": 62.489296636085626,
+ "grad_norm": 0.21494100987911224,
+ "learning_rate": 0.0006,
+ "loss": 3.509060859680176,
+ "step": 4499
+ },
+ {
+ "epoch": 62.50327653997379,
+ "grad_norm": 0.20512273907661438,
+ "learning_rate": 0.0006,
+ "loss": 3.524643659591675,
+ "step": 4500
+ },
+ {
+ "epoch": 62.517256443861946,
+ "grad_norm": 0.2046528458595276,
+ "learning_rate": 0.0006,
+ "loss": 3.520662784576416,
+ "step": 4501
+ },
+ {
+ "epoch": 62.53123634775011,
+ "grad_norm": 0.21108978986740112,
+ "learning_rate": 0.0006,
+ "loss": 3.5121688842773438,
+ "step": 4502
+ },
+ {
+ "epoch": 62.54521625163827,
+ "grad_norm": 0.19229449331760406,
+ "learning_rate": 0.0006,
+ "loss": 3.5201103687286377,
+ "step": 4503
+ },
+ {
+ "epoch": 62.55919615552643,
+ "grad_norm": 0.1984805464744568,
+ "learning_rate": 0.0006,
+ "loss": 3.546898365020752,
+ "step": 4504
+ },
+ {
+ "epoch": 62.57317605941459,
+ "grad_norm": 0.21615411341190338,
+ "learning_rate": 0.0006,
+ "loss": 3.4933600425720215,
+ "step": 4505
+ },
+ {
+ "epoch": 62.58715596330275,
+ "grad_norm": 0.22868046164512634,
+ "learning_rate": 0.0006,
+ "loss": 3.506098747253418,
+ "step": 4506
+ },
+ {
+ "epoch": 62.60113586719091,
+ "grad_norm": 0.21856851875782013,
+ "learning_rate": 0.0006,
+ "loss": 3.5790011882781982,
+ "step": 4507
+ },
+ {
+ "epoch": 62.615115771079076,
+ "grad_norm": 0.20573008060455322,
+ "learning_rate": 0.0006,
+ "loss": 3.5236854553222656,
+ "step": 4508
+ },
+ {
+ "epoch": 62.62909567496723,
+ "grad_norm": 0.21287901699543,
+ "learning_rate": 0.0006,
+ "loss": 3.5323190689086914,
+ "step": 4509
+ },
+ {
+ "epoch": 62.643075578855395,
+ "grad_norm": 0.22703637182712555,
+ "learning_rate": 0.0006,
+ "loss": 3.5300045013427734,
+ "step": 4510
+ },
+ {
+ "epoch": 62.65705548274356,
+ "grad_norm": 0.2194957137107849,
+ "learning_rate": 0.0006,
+ "loss": 3.5727438926696777,
+ "step": 4511
+ },
+ {
+ "epoch": 62.671035386631715,
+ "grad_norm": 0.22334235906600952,
+ "learning_rate": 0.0006,
+ "loss": 3.521441698074341,
+ "step": 4512
+ },
+ {
+ "epoch": 62.68501529051988,
+ "grad_norm": 0.2559402883052826,
+ "learning_rate": 0.0006,
+ "loss": 3.513730525970459,
+ "step": 4513
+ },
+ {
+ "epoch": 62.69899519440804,
+ "grad_norm": 0.25041815638542175,
+ "learning_rate": 0.0006,
+ "loss": 3.536247968673706,
+ "step": 4514
+ },
+ {
+ "epoch": 62.7129750982962,
+ "grad_norm": 0.24958674609661102,
+ "learning_rate": 0.0006,
+ "loss": 3.5245871543884277,
+ "step": 4515
+ },
+ {
+ "epoch": 62.72695500218436,
+ "grad_norm": 0.22527511417865753,
+ "learning_rate": 0.0006,
+ "loss": 3.508802652359009,
+ "step": 4516
+ },
+ {
+ "epoch": 62.74093490607252,
+ "grad_norm": 0.19455862045288086,
+ "learning_rate": 0.0006,
+ "loss": 3.5296337604522705,
+ "step": 4517
+ },
+ {
+ "epoch": 62.75491480996068,
+ "grad_norm": 0.20303845405578613,
+ "learning_rate": 0.0006,
+ "loss": 3.57499098777771,
+ "step": 4518
+ },
+ {
+ "epoch": 62.768894713848844,
+ "grad_norm": 0.20851430296897888,
+ "learning_rate": 0.0006,
+ "loss": 3.5139262676239014,
+ "step": 4519
+ },
+ {
+ "epoch": 62.782874617737,
+ "grad_norm": 0.19765593111515045,
+ "learning_rate": 0.0006,
+ "loss": 3.5398616790771484,
+ "step": 4520
+ },
+ {
+ "epoch": 62.796854521625164,
+ "grad_norm": 0.20502524077892303,
+ "learning_rate": 0.0006,
+ "loss": 3.5163207054138184,
+ "step": 4521
+ },
+ {
+ "epoch": 62.81083442551333,
+ "grad_norm": 0.20211154222488403,
+ "learning_rate": 0.0006,
+ "loss": 3.5164661407470703,
+ "step": 4522
+ },
+ {
+ "epoch": 62.824814329401484,
+ "grad_norm": 0.19798780977725983,
+ "learning_rate": 0.0006,
+ "loss": 3.533470869064331,
+ "step": 4523
+ },
+ {
+ "epoch": 62.83879423328965,
+ "grad_norm": 0.21921277046203613,
+ "learning_rate": 0.0006,
+ "loss": 3.532498598098755,
+ "step": 4524
+ },
+ {
+ "epoch": 62.8527741371778,
+ "grad_norm": 0.2352060228586197,
+ "learning_rate": 0.0006,
+ "loss": 3.5674972534179688,
+ "step": 4525
+ },
+ {
+ "epoch": 62.86675404106597,
+ "grad_norm": 0.21286381781101227,
+ "learning_rate": 0.0006,
+ "loss": 3.508051872253418,
+ "step": 4526
+ },
+ {
+ "epoch": 62.88073394495413,
+ "grad_norm": 0.21557490527629852,
+ "learning_rate": 0.0006,
+ "loss": 3.5300607681274414,
+ "step": 4527
+ },
+ {
+ "epoch": 62.89471384884229,
+ "grad_norm": 0.23020988702774048,
+ "learning_rate": 0.0006,
+ "loss": 3.508237361907959,
+ "step": 4528
+ },
+ {
+ "epoch": 62.90869375273045,
+ "grad_norm": 0.26428425312042236,
+ "learning_rate": 0.0006,
+ "loss": 3.52371883392334,
+ "step": 4529
+ },
+ {
+ "epoch": 62.92267365661861,
+ "grad_norm": 0.2568773925304413,
+ "learning_rate": 0.0006,
+ "loss": 3.5371956825256348,
+ "step": 4530
+ },
+ {
+ "epoch": 62.93665356050677,
+ "grad_norm": 0.2216598093509674,
+ "learning_rate": 0.0006,
+ "loss": 3.5286736488342285,
+ "step": 4531
+ },
+ {
+ "epoch": 62.95063346439493,
+ "grad_norm": 0.23094940185546875,
+ "learning_rate": 0.0006,
+ "loss": 3.5389769077301025,
+ "step": 4532
+ },
+ {
+ "epoch": 62.964613368283096,
+ "grad_norm": 0.23469413816928864,
+ "learning_rate": 0.0006,
+ "loss": 3.546466588973999,
+ "step": 4533
+ },
+ {
+ "epoch": 62.97859327217125,
+ "grad_norm": 0.2289242148399353,
+ "learning_rate": 0.0006,
+ "loss": 3.565002679824829,
+ "step": 4534
+ },
+ {
+ "epoch": 62.992573176059416,
+ "grad_norm": 0.262317955493927,
+ "learning_rate": 0.0006,
+ "loss": 3.5388731956481934,
+ "step": 4535
+ },
+ {
+ "epoch": 63.0,
+ "grad_norm": 0.273183137178421,
+ "learning_rate": 0.0006,
+ "loss": 3.482903003692627,
+ "step": 4536
+ },
+ {
+ "epoch": 63.0,
+ "eval_loss": 3.973074436187744,
+ "eval_runtime": 45.5476,
+ "eval_samples_per_second": 53.614,
+ "eval_steps_per_second": 3.359,
+ "step": 4536
+ },
+ {
+ "epoch": 63.01397990388816,
+ "grad_norm": 0.22226323187351227,
+ "learning_rate": 0.0006,
+ "loss": 3.483798027038574,
+ "step": 4537
+ },
+ {
+ "epoch": 63.02795980777632,
+ "grad_norm": 0.24443542957305908,
+ "learning_rate": 0.0006,
+ "loss": 3.496903419494629,
+ "step": 4538
+ },
+ {
+ "epoch": 63.04193971166448,
+ "grad_norm": 0.2508153021335602,
+ "learning_rate": 0.0006,
+ "loss": 3.5234804153442383,
+ "step": 4539
+ },
+ {
+ "epoch": 63.05591961555265,
+ "grad_norm": 0.2610569894313812,
+ "learning_rate": 0.0006,
+ "loss": 3.502870798110962,
+ "step": 4540
+ },
+ {
+ "epoch": 63.0698995194408,
+ "grad_norm": 0.27980759739875793,
+ "learning_rate": 0.0006,
+ "loss": 3.50645112991333,
+ "step": 4541
+ },
+ {
+ "epoch": 63.083879423328966,
+ "grad_norm": 0.292883038520813,
+ "learning_rate": 0.0006,
+ "loss": 3.478863000869751,
+ "step": 4542
+ },
+ {
+ "epoch": 63.09785932721712,
+ "grad_norm": 0.2593323588371277,
+ "learning_rate": 0.0006,
+ "loss": 3.506967067718506,
+ "step": 4543
+ },
+ {
+ "epoch": 63.111839231105286,
+ "grad_norm": 0.23973147571086884,
+ "learning_rate": 0.0006,
+ "loss": 3.513401746749878,
+ "step": 4544
+ },
+ {
+ "epoch": 63.12581913499345,
+ "grad_norm": 0.22731348872184753,
+ "learning_rate": 0.0006,
+ "loss": 3.4880478382110596,
+ "step": 4545
+ },
+ {
+ "epoch": 63.139799038881605,
+ "grad_norm": 0.22627407312393188,
+ "learning_rate": 0.0006,
+ "loss": 3.4975132942199707,
+ "step": 4546
+ },
+ {
+ "epoch": 63.15377894276977,
+ "grad_norm": 0.25107741355895996,
+ "learning_rate": 0.0006,
+ "loss": 3.5068140029907227,
+ "step": 4547
+ },
+ {
+ "epoch": 63.16775884665793,
+ "grad_norm": 0.23031412065029144,
+ "learning_rate": 0.0006,
+ "loss": 3.515760898590088,
+ "step": 4548
+ },
+ {
+ "epoch": 63.18173875054609,
+ "grad_norm": 0.21028949320316315,
+ "learning_rate": 0.0006,
+ "loss": 3.521303415298462,
+ "step": 4549
+ },
+ {
+ "epoch": 63.19571865443425,
+ "grad_norm": 0.22366516292095184,
+ "learning_rate": 0.0006,
+ "loss": 3.5283193588256836,
+ "step": 4550
+ },
+ {
+ "epoch": 63.20969855832241,
+ "grad_norm": 0.2176598459482193,
+ "learning_rate": 0.0006,
+ "loss": 3.490306854248047,
+ "step": 4551
+ },
+ {
+ "epoch": 63.22367846221057,
+ "grad_norm": 0.20985916256904602,
+ "learning_rate": 0.0006,
+ "loss": 3.5335614681243896,
+ "step": 4552
+ },
+ {
+ "epoch": 63.237658366098735,
+ "grad_norm": 0.2085118442773819,
+ "learning_rate": 0.0006,
+ "loss": 3.5108132362365723,
+ "step": 4553
+ },
+ {
+ "epoch": 63.25163826998689,
+ "grad_norm": 0.22644028067588806,
+ "learning_rate": 0.0006,
+ "loss": 3.4813215732574463,
+ "step": 4554
+ },
+ {
+ "epoch": 63.265618173875055,
+ "grad_norm": 0.21942120790481567,
+ "learning_rate": 0.0006,
+ "loss": 3.5310909748077393,
+ "step": 4555
+ },
+ {
+ "epoch": 63.27959807776322,
+ "grad_norm": 0.2335938662290573,
+ "learning_rate": 0.0006,
+ "loss": 3.530893564224243,
+ "step": 4556
+ },
+ {
+ "epoch": 63.293577981651374,
+ "grad_norm": 0.2409360110759735,
+ "learning_rate": 0.0006,
+ "loss": 3.5301408767700195,
+ "step": 4557
+ },
+ {
+ "epoch": 63.30755788553954,
+ "grad_norm": 0.2354922890663147,
+ "learning_rate": 0.0006,
+ "loss": 3.5211031436920166,
+ "step": 4558
+ },
+ {
+ "epoch": 63.3215377894277,
+ "grad_norm": 0.23376664519309998,
+ "learning_rate": 0.0006,
+ "loss": 3.538367509841919,
+ "step": 4559
+ },
+ {
+ "epoch": 63.33551769331586,
+ "grad_norm": 0.25319674611091614,
+ "learning_rate": 0.0006,
+ "loss": 3.494905471801758,
+ "step": 4560
+ },
+ {
+ "epoch": 63.34949759720402,
+ "grad_norm": 0.24088945984840393,
+ "learning_rate": 0.0006,
+ "loss": 3.5189433097839355,
+ "step": 4561
+ },
+ {
+ "epoch": 63.36347750109218,
+ "grad_norm": 0.2373911589384079,
+ "learning_rate": 0.0006,
+ "loss": 3.4956908226013184,
+ "step": 4562
+ },
+ {
+ "epoch": 63.37745740498034,
+ "grad_norm": 0.2590023875236511,
+ "learning_rate": 0.0006,
+ "loss": 3.511784076690674,
+ "step": 4563
+ },
+ {
+ "epoch": 63.391437308868504,
+ "grad_norm": 0.2600874900817871,
+ "learning_rate": 0.0006,
+ "loss": 3.478942394256592,
+ "step": 4564
+ },
+ {
+ "epoch": 63.40541721275666,
+ "grad_norm": 0.24018031358718872,
+ "learning_rate": 0.0006,
+ "loss": 3.521773338317871,
+ "step": 4565
+ },
+ {
+ "epoch": 63.419397116644824,
+ "grad_norm": 0.2552972435951233,
+ "learning_rate": 0.0006,
+ "loss": 3.4893441200256348,
+ "step": 4566
+ },
+ {
+ "epoch": 63.43337702053299,
+ "grad_norm": 0.26195958256721497,
+ "learning_rate": 0.0006,
+ "loss": 3.5366687774658203,
+ "step": 4567
+ },
+ {
+ "epoch": 63.44735692442114,
+ "grad_norm": 0.24390678107738495,
+ "learning_rate": 0.0006,
+ "loss": 3.4948301315307617,
+ "step": 4568
+ },
+ {
+ "epoch": 63.46133682830931,
+ "grad_norm": 0.21185952425003052,
+ "learning_rate": 0.0006,
+ "loss": 3.486267566680908,
+ "step": 4569
+ },
+ {
+ "epoch": 63.47531673219746,
+ "grad_norm": 0.21932153403759003,
+ "learning_rate": 0.0006,
+ "loss": 3.499481201171875,
+ "step": 4570
+ },
+ {
+ "epoch": 63.489296636085626,
+ "grad_norm": 0.22503717243671417,
+ "learning_rate": 0.0006,
+ "loss": 3.4932126998901367,
+ "step": 4571
+ },
+ {
+ "epoch": 63.50327653997379,
+ "grad_norm": 0.23853568732738495,
+ "learning_rate": 0.0006,
+ "loss": 3.4893674850463867,
+ "step": 4572
+ },
+ {
+ "epoch": 63.517256443861946,
+ "grad_norm": 0.2531817853450775,
+ "learning_rate": 0.0006,
+ "loss": 3.5391907691955566,
+ "step": 4573
+ },
+ {
+ "epoch": 63.53123634775011,
+ "grad_norm": 0.23776786029338837,
+ "learning_rate": 0.0006,
+ "loss": 3.5097427368164062,
+ "step": 4574
+ },
+ {
+ "epoch": 63.54521625163827,
+ "grad_norm": 0.24308739602565765,
+ "learning_rate": 0.0006,
+ "loss": 3.4988107681274414,
+ "step": 4575
+ },
+ {
+ "epoch": 63.55919615552643,
+ "grad_norm": 0.24214281141757965,
+ "learning_rate": 0.0006,
+ "loss": 3.506901502609253,
+ "step": 4576
+ },
+ {
+ "epoch": 63.57317605941459,
+ "grad_norm": 0.21378614008426666,
+ "learning_rate": 0.0006,
+ "loss": 3.54103684425354,
+ "step": 4577
+ },
+ {
+ "epoch": 63.58715596330275,
+ "grad_norm": 0.21135152876377106,
+ "learning_rate": 0.0006,
+ "loss": 3.534852981567383,
+ "step": 4578
+ },
+ {
+ "epoch": 63.60113586719091,
+ "grad_norm": 0.2335089147090912,
+ "learning_rate": 0.0006,
+ "loss": 3.542457342147827,
+ "step": 4579
+ },
+ {
+ "epoch": 63.615115771079076,
+ "grad_norm": 0.23693214356899261,
+ "learning_rate": 0.0006,
+ "loss": 3.4781997203826904,
+ "step": 4580
+ },
+ {
+ "epoch": 63.62909567496723,
+ "grad_norm": 0.21237023174762726,
+ "learning_rate": 0.0006,
+ "loss": 3.4980621337890625,
+ "step": 4581
+ },
+ {
+ "epoch": 63.643075578855395,
+ "grad_norm": 0.20930461585521698,
+ "learning_rate": 0.0006,
+ "loss": 3.5177974700927734,
+ "step": 4582
+ },
+ {
+ "epoch": 63.65705548274356,
+ "grad_norm": 0.22565403580665588,
+ "learning_rate": 0.0006,
+ "loss": 3.5385828018188477,
+ "step": 4583
+ },
+ {
+ "epoch": 63.671035386631715,
+ "grad_norm": 0.22187408804893494,
+ "learning_rate": 0.0006,
+ "loss": 3.5461559295654297,
+ "step": 4584
+ },
+ {
+ "epoch": 63.68501529051988,
+ "grad_norm": 0.23496168851852417,
+ "learning_rate": 0.0006,
+ "loss": 3.526822090148926,
+ "step": 4585
+ },
+ {
+ "epoch": 63.69899519440804,
+ "grad_norm": 0.2432301938533783,
+ "learning_rate": 0.0006,
+ "loss": 3.5248091220855713,
+ "step": 4586
+ },
+ {
+ "epoch": 63.7129750982962,
+ "grad_norm": 0.22797444462776184,
+ "learning_rate": 0.0006,
+ "loss": 3.5276098251342773,
+ "step": 4587
+ },
+ {
+ "epoch": 63.72695500218436,
+ "grad_norm": 0.2332911491394043,
+ "learning_rate": 0.0006,
+ "loss": 3.5454764366149902,
+ "step": 4588
+ },
+ {
+ "epoch": 63.74093490607252,
+ "grad_norm": 0.23016804456710815,
+ "learning_rate": 0.0006,
+ "loss": 3.519209384918213,
+ "step": 4589
+ },
+ {
+ "epoch": 63.75491480996068,
+ "grad_norm": 0.2160855233669281,
+ "learning_rate": 0.0006,
+ "loss": 3.536961317062378,
+ "step": 4590
+ },
+ {
+ "epoch": 63.768894713848844,
+ "grad_norm": 0.25935620069503784,
+ "learning_rate": 0.0006,
+ "loss": 3.5653820037841797,
+ "step": 4591
+ },
+ {
+ "epoch": 63.782874617737,
+ "grad_norm": 0.26625221967697144,
+ "learning_rate": 0.0006,
+ "loss": 3.5492172241210938,
+ "step": 4592
+ },
+ {
+ "epoch": 63.796854521625164,
+ "grad_norm": 0.25456854701042175,
+ "learning_rate": 0.0006,
+ "loss": 3.516575336456299,
+ "step": 4593
+ },
+ {
+ "epoch": 63.81083442551333,
+ "grad_norm": 0.26114824414253235,
+ "learning_rate": 0.0006,
+ "loss": 3.5429139137268066,
+ "step": 4594
+ },
+ {
+ "epoch": 63.824814329401484,
+ "grad_norm": 0.27836596965789795,
+ "learning_rate": 0.0006,
+ "loss": 3.5567727088928223,
+ "step": 4595
+ },
+ {
+ "epoch": 63.83879423328965,
+ "grad_norm": 0.2674464285373688,
+ "learning_rate": 0.0006,
+ "loss": 3.5093564987182617,
+ "step": 4596
+ },
+ {
+ "epoch": 63.8527741371778,
+ "grad_norm": 0.27393433451652527,
+ "learning_rate": 0.0006,
+ "loss": 3.5500247478485107,
+ "step": 4597
+ },
+ {
+ "epoch": 63.86675404106597,
+ "grad_norm": 0.30968594551086426,
+ "learning_rate": 0.0006,
+ "loss": 3.539085865020752,
+ "step": 4598
+ },
+ {
+ "epoch": 63.88073394495413,
+ "grad_norm": 0.279060423374176,
+ "learning_rate": 0.0006,
+ "loss": 3.517862319946289,
+ "step": 4599
+ },
+ {
+ "epoch": 63.89471384884229,
+ "grad_norm": 0.22436867654323578,
+ "learning_rate": 0.0006,
+ "loss": 3.5714004039764404,
+ "step": 4600
+ },
+ {
+ "epoch": 63.90869375273045,
+ "grad_norm": 0.22473126649856567,
+ "learning_rate": 0.0006,
+ "loss": 3.5212388038635254,
+ "step": 4601
+ },
+ {
+ "epoch": 63.92267365661861,
+ "grad_norm": 0.2802466154098511,
+ "learning_rate": 0.0006,
+ "loss": 3.5112411975860596,
+ "step": 4602
+ },
+ {
+ "epoch": 63.93665356050677,
+ "grad_norm": 0.29435867071151733,
+ "learning_rate": 0.0006,
+ "loss": 3.554875373840332,
+ "step": 4603
+ },
+ {
+ "epoch": 63.95063346439493,
+ "grad_norm": 0.24592025578022003,
+ "learning_rate": 0.0006,
+ "loss": 3.5593767166137695,
+ "step": 4604
+ },
+ {
+ "epoch": 63.964613368283096,
+ "grad_norm": 0.25918886065483093,
+ "learning_rate": 0.0006,
+ "loss": 3.5020017623901367,
+ "step": 4605
+ },
+ {
+ "epoch": 63.97859327217125,
+ "grad_norm": 0.24892419576644897,
+ "learning_rate": 0.0006,
+ "loss": 3.520456314086914,
+ "step": 4606
+ },
+ {
+ "epoch": 63.992573176059416,
+ "grad_norm": 0.24131213128566742,
+ "learning_rate": 0.0006,
+ "loss": 3.5576815605163574,
+ "step": 4607
+ },
+ {
+ "epoch": 64.0,
+ "grad_norm": 0.2348976731300354,
+ "learning_rate": 0.0006,
+ "loss": 3.524242401123047,
+ "step": 4608
+ },
+ {
+ "epoch": 64.0,
+ "eval_loss": 3.972158670425415,
+ "eval_runtime": 45.883,
+ "eval_samples_per_second": 53.222,
+ "eval_steps_per_second": 3.335,
+ "step": 4608
+ },
+ {
+ "epoch": 64.01397990388816,
+ "grad_norm": 0.24034473299980164,
+ "learning_rate": 0.0006,
+ "loss": 3.463156223297119,
+ "step": 4609
+ },
+ {
+ "epoch": 64.02795980777633,
+ "grad_norm": 0.28686341643333435,
+ "learning_rate": 0.0006,
+ "loss": 3.5137135982513428,
+ "step": 4610
+ },
+ {
+ "epoch": 64.04193971166448,
+ "grad_norm": 0.30763131380081177,
+ "learning_rate": 0.0006,
+ "loss": 3.490610361099243,
+ "step": 4611
+ },
+ {
+ "epoch": 64.05591961555264,
+ "grad_norm": 0.2775363624095917,
+ "learning_rate": 0.0006,
+ "loss": 3.516378879547119,
+ "step": 4612
+ },
+ {
+ "epoch": 64.06989951944081,
+ "grad_norm": 0.2643020749092102,
+ "learning_rate": 0.0006,
+ "loss": 3.511389970779419,
+ "step": 4613
+ },
+ {
+ "epoch": 64.08387942332897,
+ "grad_norm": 0.2859032452106476,
+ "learning_rate": 0.0006,
+ "loss": 3.5125572681427,
+ "step": 4614
+ },
+ {
+ "epoch": 64.09785932721712,
+ "grad_norm": 0.28378766775131226,
+ "learning_rate": 0.0006,
+ "loss": 3.4953627586364746,
+ "step": 4615
+ },
+ {
+ "epoch": 64.1118392311053,
+ "grad_norm": 0.2809223234653473,
+ "learning_rate": 0.0006,
+ "loss": 3.5114667415618896,
+ "step": 4616
+ },
+ {
+ "epoch": 64.12581913499345,
+ "grad_norm": 0.251823753118515,
+ "learning_rate": 0.0006,
+ "loss": 3.529876232147217,
+ "step": 4617
+ },
+ {
+ "epoch": 64.1397990388816,
+ "grad_norm": 0.236602321267128,
+ "learning_rate": 0.0006,
+ "loss": 3.5067150592803955,
+ "step": 4618
+ },
+ {
+ "epoch": 64.15377894276976,
+ "grad_norm": 0.2317773550748825,
+ "learning_rate": 0.0006,
+ "loss": 3.5166091918945312,
+ "step": 4619
+ },
+ {
+ "epoch": 64.16775884665793,
+ "grad_norm": 0.2237853854894638,
+ "learning_rate": 0.0006,
+ "loss": 3.492464065551758,
+ "step": 4620
+ },
+ {
+ "epoch": 64.18173875054609,
+ "grad_norm": 0.22309459745883942,
+ "learning_rate": 0.0006,
+ "loss": 3.4892983436584473,
+ "step": 4621
+ },
+ {
+ "epoch": 64.19571865443424,
+ "grad_norm": 0.21838971972465515,
+ "learning_rate": 0.0006,
+ "loss": 3.528764486312866,
+ "step": 4622
+ },
+ {
+ "epoch": 64.20969855832242,
+ "grad_norm": 0.22414161264896393,
+ "learning_rate": 0.0006,
+ "loss": 3.506270170211792,
+ "step": 4623
+ },
+ {
+ "epoch": 64.22367846221057,
+ "grad_norm": 0.22375065088272095,
+ "learning_rate": 0.0006,
+ "loss": 3.4844071865081787,
+ "step": 4624
+ },
+ {
+ "epoch": 64.23765836609873,
+ "grad_norm": 0.2091676890850067,
+ "learning_rate": 0.0006,
+ "loss": 3.4983415603637695,
+ "step": 4625
+ },
+ {
+ "epoch": 64.2516382699869,
+ "grad_norm": 0.22184209525585175,
+ "learning_rate": 0.0006,
+ "loss": 3.4846835136413574,
+ "step": 4626
+ },
+ {
+ "epoch": 64.26561817387505,
+ "grad_norm": 0.21549198031425476,
+ "learning_rate": 0.0006,
+ "loss": 3.4933011531829834,
+ "step": 4627
+ },
+ {
+ "epoch": 64.27959807776321,
+ "grad_norm": 0.21613609790802002,
+ "learning_rate": 0.0006,
+ "loss": 3.523514986038208,
+ "step": 4628
+ },
+ {
+ "epoch": 64.29357798165138,
+ "grad_norm": 0.22394488751888275,
+ "learning_rate": 0.0006,
+ "loss": 3.512820243835449,
+ "step": 4629
+ },
+ {
+ "epoch": 64.30755788553954,
+ "grad_norm": 0.22381016612052917,
+ "learning_rate": 0.0006,
+ "loss": 3.4967026710510254,
+ "step": 4630
+ },
+ {
+ "epoch": 64.3215377894277,
+ "grad_norm": 0.22533059120178223,
+ "learning_rate": 0.0006,
+ "loss": 3.5051097869873047,
+ "step": 4631
+ },
+ {
+ "epoch": 64.33551769331586,
+ "grad_norm": 0.23043590784072876,
+ "learning_rate": 0.0006,
+ "loss": 3.4784820079803467,
+ "step": 4632
+ },
+ {
+ "epoch": 64.34949759720402,
+ "grad_norm": 0.20840506255626678,
+ "learning_rate": 0.0006,
+ "loss": 3.496629238128662,
+ "step": 4633
+ },
+ {
+ "epoch": 64.36347750109218,
+ "grad_norm": 0.20293036103248596,
+ "learning_rate": 0.0006,
+ "loss": 3.500199317932129,
+ "step": 4634
+ },
+ {
+ "epoch": 64.37745740498035,
+ "grad_norm": 0.20510733127593994,
+ "learning_rate": 0.0006,
+ "loss": 3.4943113327026367,
+ "step": 4635
+ },
+ {
+ "epoch": 64.3914373088685,
+ "grad_norm": 0.21207642555236816,
+ "learning_rate": 0.0006,
+ "loss": 3.5024590492248535,
+ "step": 4636
+ },
+ {
+ "epoch": 64.40541721275666,
+ "grad_norm": 0.19878660142421722,
+ "learning_rate": 0.0006,
+ "loss": 3.5065855979919434,
+ "step": 4637
+ },
+ {
+ "epoch": 64.41939711664482,
+ "grad_norm": 0.22502431273460388,
+ "learning_rate": 0.0006,
+ "loss": 3.527764081954956,
+ "step": 4638
+ },
+ {
+ "epoch": 64.43337702053299,
+ "grad_norm": 0.2167922705411911,
+ "learning_rate": 0.0006,
+ "loss": 3.5075361728668213,
+ "step": 4639
+ },
+ {
+ "epoch": 64.44735692442114,
+ "grad_norm": 0.21200154721736908,
+ "learning_rate": 0.0006,
+ "loss": 3.5339698791503906,
+ "step": 4640
+ },
+ {
+ "epoch": 64.4613368283093,
+ "grad_norm": 0.22495608031749725,
+ "learning_rate": 0.0006,
+ "loss": 3.5342869758605957,
+ "step": 4641
+ },
+ {
+ "epoch": 64.47531673219747,
+ "grad_norm": 0.21426217257976532,
+ "learning_rate": 0.0006,
+ "loss": 3.5065689086914062,
+ "step": 4642
+ },
+ {
+ "epoch": 64.48929663608563,
+ "grad_norm": 0.19980023801326752,
+ "learning_rate": 0.0006,
+ "loss": 3.508183002471924,
+ "step": 4643
+ },
+ {
+ "epoch": 64.50327653997378,
+ "grad_norm": 0.2054566591978073,
+ "learning_rate": 0.0006,
+ "loss": 3.5098650455474854,
+ "step": 4644
+ },
+ {
+ "epoch": 64.51725644386195,
+ "grad_norm": 0.2038603276014328,
+ "learning_rate": 0.0006,
+ "loss": 3.517388105392456,
+ "step": 4645
+ },
+ {
+ "epoch": 64.53123634775011,
+ "grad_norm": 0.22438357770442963,
+ "learning_rate": 0.0006,
+ "loss": 3.5215954780578613,
+ "step": 4646
+ },
+ {
+ "epoch": 64.54521625163827,
+ "grad_norm": 0.23507612943649292,
+ "learning_rate": 0.0006,
+ "loss": 3.488262176513672,
+ "step": 4647
+ },
+ {
+ "epoch": 64.55919615552644,
+ "grad_norm": 0.21669664978981018,
+ "learning_rate": 0.0006,
+ "loss": 3.4945027828216553,
+ "step": 4648
+ },
+ {
+ "epoch": 64.57317605941459,
+ "grad_norm": 0.20035886764526367,
+ "learning_rate": 0.0006,
+ "loss": 3.516415596008301,
+ "step": 4649
+ },
+ {
+ "epoch": 64.58715596330275,
+ "grad_norm": 0.21818110346794128,
+ "learning_rate": 0.0006,
+ "loss": 3.4944982528686523,
+ "step": 4650
+ },
+ {
+ "epoch": 64.60113586719092,
+ "grad_norm": 0.20609644055366516,
+ "learning_rate": 0.0006,
+ "loss": 3.4914844036102295,
+ "step": 4651
+ },
+ {
+ "epoch": 64.61511577107908,
+ "grad_norm": 0.21921353042125702,
+ "learning_rate": 0.0006,
+ "loss": 3.5292391777038574,
+ "step": 4652
+ },
+ {
+ "epoch": 64.62909567496723,
+ "grad_norm": 0.23570363223552704,
+ "learning_rate": 0.0006,
+ "loss": 3.5353617668151855,
+ "step": 4653
+ },
+ {
+ "epoch": 64.6430755788554,
+ "grad_norm": 0.20933061838150024,
+ "learning_rate": 0.0006,
+ "loss": 3.524240016937256,
+ "step": 4654
+ },
+ {
+ "epoch": 64.65705548274356,
+ "grad_norm": 0.22739441692829132,
+ "learning_rate": 0.0006,
+ "loss": 3.529047966003418,
+ "step": 4655
+ },
+ {
+ "epoch": 64.67103538663171,
+ "grad_norm": 0.22208894789218903,
+ "learning_rate": 0.0006,
+ "loss": 3.5492024421691895,
+ "step": 4656
+ },
+ {
+ "epoch": 64.68501529051987,
+ "grad_norm": 0.23031534254550934,
+ "learning_rate": 0.0006,
+ "loss": 3.532979726791382,
+ "step": 4657
+ },
+ {
+ "epoch": 64.69899519440804,
+ "grad_norm": 0.25316348671913147,
+ "learning_rate": 0.0006,
+ "loss": 3.5105819702148438,
+ "step": 4658
+ },
+ {
+ "epoch": 64.7129750982962,
+ "grad_norm": 0.23601582646369934,
+ "learning_rate": 0.0006,
+ "loss": 3.5270726680755615,
+ "step": 4659
+ },
+ {
+ "epoch": 64.72695500218435,
+ "grad_norm": 0.20309361815452576,
+ "learning_rate": 0.0006,
+ "loss": 3.5072035789489746,
+ "step": 4660
+ },
+ {
+ "epoch": 64.74093490607252,
+ "grad_norm": 0.21525762975215912,
+ "learning_rate": 0.0006,
+ "loss": 3.531649112701416,
+ "step": 4661
+ },
+ {
+ "epoch": 64.75491480996068,
+ "grad_norm": 0.2262735813856125,
+ "learning_rate": 0.0006,
+ "loss": 3.5053927898406982,
+ "step": 4662
+ },
+ {
+ "epoch": 64.76889471384884,
+ "grad_norm": 0.2223973125219345,
+ "learning_rate": 0.0006,
+ "loss": 3.5400562286376953,
+ "step": 4663
+ },
+ {
+ "epoch": 64.78287461773701,
+ "grad_norm": 0.22822168469429016,
+ "learning_rate": 0.0006,
+ "loss": 3.502312421798706,
+ "step": 4664
+ },
+ {
+ "epoch": 64.79685452162516,
+ "grad_norm": 0.2337028533220291,
+ "learning_rate": 0.0006,
+ "loss": 3.524888038635254,
+ "step": 4665
+ },
+ {
+ "epoch": 64.81083442551332,
+ "grad_norm": 0.22423268854618073,
+ "learning_rate": 0.0006,
+ "loss": 3.5380213260650635,
+ "step": 4666
+ },
+ {
+ "epoch": 64.82481432940149,
+ "grad_norm": 0.21429643034934998,
+ "learning_rate": 0.0006,
+ "loss": 3.5499157905578613,
+ "step": 4667
+ },
+ {
+ "epoch": 64.83879423328965,
+ "grad_norm": 0.22421850264072418,
+ "learning_rate": 0.0006,
+ "loss": 3.5034070014953613,
+ "step": 4668
+ },
+ {
+ "epoch": 64.8527741371778,
+ "grad_norm": 0.21886403858661652,
+ "learning_rate": 0.0006,
+ "loss": 3.5276694297790527,
+ "step": 4669
+ },
+ {
+ "epoch": 64.86675404106597,
+ "grad_norm": 0.2404339462518692,
+ "learning_rate": 0.0006,
+ "loss": 3.515219211578369,
+ "step": 4670
+ },
+ {
+ "epoch": 64.88073394495413,
+ "grad_norm": 0.2837470769882202,
+ "learning_rate": 0.0006,
+ "loss": 3.561008930206299,
+ "step": 4671
+ },
+ {
+ "epoch": 64.89471384884229,
+ "grad_norm": 0.3101402223110199,
+ "learning_rate": 0.0006,
+ "loss": 3.556626319885254,
+ "step": 4672
+ },
+ {
+ "epoch": 64.90869375273044,
+ "grad_norm": 0.30606821179389954,
+ "learning_rate": 0.0006,
+ "loss": 3.540271282196045,
+ "step": 4673
+ },
+ {
+ "epoch": 64.92267365661861,
+ "grad_norm": 0.2715052664279938,
+ "learning_rate": 0.0006,
+ "loss": 3.5128841400146484,
+ "step": 4674
+ },
+ {
+ "epoch": 64.93665356050677,
+ "grad_norm": 0.24061815440654755,
+ "learning_rate": 0.0006,
+ "loss": 3.554208278656006,
+ "step": 4675
+ },
+ {
+ "epoch": 64.95063346439493,
+ "grad_norm": 0.23540185391902924,
+ "learning_rate": 0.0006,
+ "loss": 3.544139862060547,
+ "step": 4676
+ },
+ {
+ "epoch": 64.9646133682831,
+ "grad_norm": 0.26172906160354614,
+ "learning_rate": 0.0006,
+ "loss": 3.567110061645508,
+ "step": 4677
+ },
+ {
+ "epoch": 64.97859327217125,
+ "grad_norm": 0.2766035795211792,
+ "learning_rate": 0.0006,
+ "loss": 3.494391918182373,
+ "step": 4678
+ },
+ {
+ "epoch": 64.99257317605941,
+ "grad_norm": 0.2400948703289032,
+ "learning_rate": 0.0006,
+ "loss": 3.5130133628845215,
+ "step": 4679
+ },
+ {
+ "epoch": 65.0,
+ "grad_norm": 0.24790917336940765,
+ "learning_rate": 0.0006,
+ "loss": 3.5481390953063965,
+ "step": 4680
+ },
+ {
+ "epoch": 65.0,
+ "eval_loss": 3.976747989654541,
+ "eval_runtime": 46.3575,
+ "eval_samples_per_second": 52.678,
+ "eval_steps_per_second": 3.3,
+ "step": 4680
+ },
+ {
+ "epoch": 65.01397990388816,
+ "grad_norm": 0.22275416553020477,
+ "learning_rate": 0.0006,
+ "loss": 3.4832773208618164,
+ "step": 4681
+ },
+ {
+ "epoch": 65.02795980777633,
+ "grad_norm": 0.23779742419719696,
+ "learning_rate": 0.0006,
+ "loss": 3.5049266815185547,
+ "step": 4682
+ },
+ {
+ "epoch": 65.04193971166448,
+ "grad_norm": 0.2394440770149231,
+ "learning_rate": 0.0006,
+ "loss": 3.5335357189178467,
+ "step": 4683
+ },
+ {
+ "epoch": 65.05591961555264,
+ "grad_norm": 0.22160623967647552,
+ "learning_rate": 0.0006,
+ "loss": 3.5066094398498535,
+ "step": 4684
+ },
+ {
+ "epoch": 65.06989951944081,
+ "grad_norm": 0.22387197613716125,
+ "learning_rate": 0.0006,
+ "loss": 3.474155902862549,
+ "step": 4685
+ },
+ {
+ "epoch": 65.08387942332897,
+ "grad_norm": 0.24355316162109375,
+ "learning_rate": 0.0006,
+ "loss": 3.4905145168304443,
+ "step": 4686
+ },
+ {
+ "epoch": 65.09785932721712,
+ "grad_norm": 0.25801026821136475,
+ "learning_rate": 0.0006,
+ "loss": 3.50339937210083,
+ "step": 4687
+ },
+ {
+ "epoch": 65.1118392311053,
+ "grad_norm": 0.26155906915664673,
+ "learning_rate": 0.0006,
+ "loss": 3.523623466491699,
+ "step": 4688
+ },
+ {
+ "epoch": 65.12581913499345,
+ "grad_norm": 0.2512831389904022,
+ "learning_rate": 0.0006,
+ "loss": 3.490898609161377,
+ "step": 4689
+ },
+ {
+ "epoch": 65.1397990388816,
+ "grad_norm": 0.25024810433387756,
+ "learning_rate": 0.0006,
+ "loss": 3.4742162227630615,
+ "step": 4690
+ },
+ {
+ "epoch": 65.15377894276976,
+ "grad_norm": 0.27639806270599365,
+ "learning_rate": 0.0006,
+ "loss": 3.503298282623291,
+ "step": 4691
+ },
+ {
+ "epoch": 65.16775884665793,
+ "grad_norm": 0.2543538510799408,
+ "learning_rate": 0.0006,
+ "loss": 3.4785704612731934,
+ "step": 4692
+ },
+ {
+ "epoch": 65.18173875054609,
+ "grad_norm": 0.24148274958133698,
+ "learning_rate": 0.0006,
+ "loss": 3.48526668548584,
+ "step": 4693
+ },
+ {
+ "epoch": 65.19571865443424,
+ "grad_norm": 0.2161206603050232,
+ "learning_rate": 0.0006,
+ "loss": 3.477449417114258,
+ "step": 4694
+ },
+ {
+ "epoch": 65.20969855832242,
+ "grad_norm": 0.21417468786239624,
+ "learning_rate": 0.0006,
+ "loss": 3.5010929107666016,
+ "step": 4695
+ },
+ {
+ "epoch": 65.22367846221057,
+ "grad_norm": 0.22810059785842896,
+ "learning_rate": 0.0006,
+ "loss": 3.4384589195251465,
+ "step": 4696
+ },
+ {
+ "epoch": 65.23765836609873,
+ "grad_norm": 0.23555037379264832,
+ "learning_rate": 0.0006,
+ "loss": 3.4912073612213135,
+ "step": 4697
+ },
+ {
+ "epoch": 65.2516382699869,
+ "grad_norm": 0.2628633975982666,
+ "learning_rate": 0.0006,
+ "loss": 3.4763574600219727,
+ "step": 4698
+ },
+ {
+ "epoch": 65.26561817387505,
+ "grad_norm": 0.2515856921672821,
+ "learning_rate": 0.0006,
+ "loss": 3.480222463607788,
+ "step": 4699
+ },
+ {
+ "epoch": 65.27959807776321,
+ "grad_norm": 0.19862835109233856,
+ "learning_rate": 0.0006,
+ "loss": 3.510263204574585,
+ "step": 4700
+ },
+ {
+ "epoch": 65.29357798165138,
+ "grad_norm": 0.22558043897151947,
+ "learning_rate": 0.0006,
+ "loss": 3.4952306747436523,
+ "step": 4701
+ },
+ {
+ "epoch": 65.30755788553954,
+ "grad_norm": 0.2351200133562088,
+ "learning_rate": 0.0006,
+ "loss": 3.5010221004486084,
+ "step": 4702
+ },
+ {
+ "epoch": 65.3215377894277,
+ "grad_norm": 0.21748903393745422,
+ "learning_rate": 0.0006,
+ "loss": 3.5186777114868164,
+ "step": 4703
+ },
+ {
+ "epoch": 65.33551769331586,
+ "grad_norm": 0.2073124349117279,
+ "learning_rate": 0.0006,
+ "loss": 3.5397891998291016,
+ "step": 4704
+ },
+ {
+ "epoch": 65.34949759720402,
+ "grad_norm": 0.1948464810848236,
+ "learning_rate": 0.0006,
+ "loss": 3.5413217544555664,
+ "step": 4705
+ },
+ {
+ "epoch": 65.36347750109218,
+ "grad_norm": 0.19741199910640717,
+ "learning_rate": 0.0006,
+ "loss": 3.515199899673462,
+ "step": 4706
+ },
+ {
+ "epoch": 65.37745740498035,
+ "grad_norm": 0.22518441081047058,
+ "learning_rate": 0.0006,
+ "loss": 3.512284278869629,
+ "step": 4707
+ },
+ {
+ "epoch": 65.3914373088685,
+ "grad_norm": 0.24368613958358765,
+ "learning_rate": 0.0006,
+ "loss": 3.528355121612549,
+ "step": 4708
+ },
+ {
+ "epoch": 65.40541721275666,
+ "grad_norm": 0.21857064962387085,
+ "learning_rate": 0.0006,
+ "loss": 3.494401454925537,
+ "step": 4709
+ },
+ {
+ "epoch": 65.41939711664482,
+ "grad_norm": 0.2199285924434662,
+ "learning_rate": 0.0006,
+ "loss": 3.49814772605896,
+ "step": 4710
+ },
+ {
+ "epoch": 65.43337702053299,
+ "grad_norm": 0.23801206052303314,
+ "learning_rate": 0.0006,
+ "loss": 3.4678444862365723,
+ "step": 4711
+ },
+ {
+ "epoch": 65.44735692442114,
+ "grad_norm": 0.231369748711586,
+ "learning_rate": 0.0006,
+ "loss": 3.501521587371826,
+ "step": 4712
+ },
+ {
+ "epoch": 65.4613368283093,
+ "grad_norm": 0.20447038114070892,
+ "learning_rate": 0.0006,
+ "loss": 3.508510112762451,
+ "step": 4713
+ },
+ {
+ "epoch": 65.47531673219747,
+ "grad_norm": 0.21331779658794403,
+ "learning_rate": 0.0006,
+ "loss": 3.498544692993164,
+ "step": 4714
+ },
+ {
+ "epoch": 65.48929663608563,
+ "grad_norm": 0.2365437150001526,
+ "learning_rate": 0.0006,
+ "loss": 3.4972000122070312,
+ "step": 4715
+ },
+ {
+ "epoch": 65.50327653997378,
+ "grad_norm": 0.2236112356185913,
+ "learning_rate": 0.0006,
+ "loss": 3.5397965908050537,
+ "step": 4716
+ },
+ {
+ "epoch": 65.51725644386195,
+ "grad_norm": 0.20595021545886993,
+ "learning_rate": 0.0006,
+ "loss": 3.532902717590332,
+ "step": 4717
+ },
+ {
+ "epoch": 65.53123634775011,
+ "grad_norm": 0.2043730616569519,
+ "learning_rate": 0.0006,
+ "loss": 3.5136585235595703,
+ "step": 4718
+ },
+ {
+ "epoch": 65.54521625163827,
+ "grad_norm": 0.21925127506256104,
+ "learning_rate": 0.0006,
+ "loss": 3.526590347290039,
+ "step": 4719
+ },
+ {
+ "epoch": 65.55919615552644,
+ "grad_norm": 0.21580299735069275,
+ "learning_rate": 0.0006,
+ "loss": 3.530301332473755,
+ "step": 4720
+ },
+ {
+ "epoch": 65.57317605941459,
+ "grad_norm": 0.2296830266714096,
+ "learning_rate": 0.0006,
+ "loss": 3.527580976486206,
+ "step": 4721
+ },
+ {
+ "epoch": 65.58715596330275,
+ "grad_norm": 0.21846120059490204,
+ "learning_rate": 0.0006,
+ "loss": 3.524075746536255,
+ "step": 4722
+ },
+ {
+ "epoch": 65.60113586719092,
+ "grad_norm": 0.19835807383060455,
+ "learning_rate": 0.0006,
+ "loss": 3.4560012817382812,
+ "step": 4723
+ },
+ {
+ "epoch": 65.61511577107908,
+ "grad_norm": 0.20501157641410828,
+ "learning_rate": 0.0006,
+ "loss": 3.508017063140869,
+ "step": 4724
+ },
+ {
+ "epoch": 65.62909567496723,
+ "grad_norm": 0.21347478032112122,
+ "learning_rate": 0.0006,
+ "loss": 3.5479536056518555,
+ "step": 4725
+ },
+ {
+ "epoch": 65.6430755788554,
+ "grad_norm": 0.19286541640758514,
+ "learning_rate": 0.0006,
+ "loss": 3.537360906600952,
+ "step": 4726
+ },
+ {
+ "epoch": 65.65705548274356,
+ "grad_norm": 0.19364185631275177,
+ "learning_rate": 0.0006,
+ "loss": 3.5186867713928223,
+ "step": 4727
+ },
+ {
+ "epoch": 65.67103538663171,
+ "grad_norm": 0.19047997891902924,
+ "learning_rate": 0.0006,
+ "loss": 3.5242767333984375,
+ "step": 4728
+ },
+ {
+ "epoch": 65.68501529051987,
+ "grad_norm": 0.19712361693382263,
+ "learning_rate": 0.0006,
+ "loss": 3.5176010131835938,
+ "step": 4729
+ },
+ {
+ "epoch": 65.69899519440804,
+ "grad_norm": 0.2034953087568283,
+ "learning_rate": 0.0006,
+ "loss": 3.510268211364746,
+ "step": 4730
+ },
+ {
+ "epoch": 65.7129750982962,
+ "grad_norm": 0.20022697746753693,
+ "learning_rate": 0.0006,
+ "loss": 3.53619647026062,
+ "step": 4731
+ },
+ {
+ "epoch": 65.72695500218435,
+ "grad_norm": 0.20698072016239166,
+ "learning_rate": 0.0006,
+ "loss": 3.5179615020751953,
+ "step": 4732
+ },
+ {
+ "epoch": 65.74093490607252,
+ "grad_norm": 0.2297508418560028,
+ "learning_rate": 0.0006,
+ "loss": 3.5308024883270264,
+ "step": 4733
+ },
+ {
+ "epoch": 65.75491480996068,
+ "grad_norm": 0.227255716919899,
+ "learning_rate": 0.0006,
+ "loss": 3.5443387031555176,
+ "step": 4734
+ },
+ {
+ "epoch": 65.76889471384884,
+ "grad_norm": 0.21772262454032898,
+ "learning_rate": 0.0006,
+ "loss": 3.52345871925354,
+ "step": 4735
+ },
+ {
+ "epoch": 65.78287461773701,
+ "grad_norm": 0.22124525904655457,
+ "learning_rate": 0.0006,
+ "loss": 3.5262577533721924,
+ "step": 4736
+ },
+ {
+ "epoch": 65.79685452162516,
+ "grad_norm": 0.22992224991321564,
+ "learning_rate": 0.0006,
+ "loss": 3.531507730484009,
+ "step": 4737
+ },
+ {
+ "epoch": 65.81083442551332,
+ "grad_norm": 0.24775296449661255,
+ "learning_rate": 0.0006,
+ "loss": 3.4781999588012695,
+ "step": 4738
+ },
+ {
+ "epoch": 65.82481432940149,
+ "grad_norm": 0.24917690455913544,
+ "learning_rate": 0.0006,
+ "loss": 3.5157413482666016,
+ "step": 4739
+ },
+ {
+ "epoch": 65.83879423328965,
+ "grad_norm": 0.23374824225902557,
+ "learning_rate": 0.0006,
+ "loss": 3.536634683609009,
+ "step": 4740
+ },
+ {
+ "epoch": 65.8527741371778,
+ "grad_norm": 0.25592541694641113,
+ "learning_rate": 0.0006,
+ "loss": 3.5343942642211914,
+ "step": 4741
+ },
+ {
+ "epoch": 65.86675404106597,
+ "grad_norm": 0.2698819935321808,
+ "learning_rate": 0.0006,
+ "loss": 3.4906277656555176,
+ "step": 4742
+ },
+ {
+ "epoch": 65.88073394495413,
+ "grad_norm": 0.2175036370754242,
+ "learning_rate": 0.0006,
+ "loss": 3.506230354309082,
+ "step": 4743
+ },
+ {
+ "epoch": 65.89471384884229,
+ "grad_norm": 0.22451810538768768,
+ "learning_rate": 0.0006,
+ "loss": 3.5139262676239014,
+ "step": 4744
+ },
+ {
+ "epoch": 65.90869375273044,
+ "grad_norm": 0.24293720722198486,
+ "learning_rate": 0.0006,
+ "loss": 3.528148651123047,
+ "step": 4745
+ },
+ {
+ "epoch": 65.92267365661861,
+ "grad_norm": 0.2138707935810089,
+ "learning_rate": 0.0006,
+ "loss": 3.516911029815674,
+ "step": 4746
+ },
+ {
+ "epoch": 65.93665356050677,
+ "grad_norm": 0.2216160148382187,
+ "learning_rate": 0.0006,
+ "loss": 3.540201187133789,
+ "step": 4747
+ },
+ {
+ "epoch": 65.95063346439493,
+ "grad_norm": 0.2276899367570877,
+ "learning_rate": 0.0006,
+ "loss": 3.525435447692871,
+ "step": 4748
+ },
+ {
+ "epoch": 65.9646133682831,
+ "grad_norm": 0.2441754788160324,
+ "learning_rate": 0.0006,
+ "loss": 3.5337369441986084,
+ "step": 4749
+ },
+ {
+ "epoch": 65.97859327217125,
+ "grad_norm": 0.2364634871482849,
+ "learning_rate": 0.0006,
+ "loss": 3.5289382934570312,
+ "step": 4750
+ },
+ {
+ "epoch": 65.99257317605941,
+ "grad_norm": 0.2322802096605301,
+ "learning_rate": 0.0006,
+ "loss": 3.519960403442383,
+ "step": 4751
+ },
+ {
+ "epoch": 66.0,
+ "grad_norm": 0.28910940885543823,
+ "learning_rate": 0.0006,
+ "loss": 3.535785436630249,
+ "step": 4752
+ },
+ {
+ "epoch": 66.0,
+ "eval_loss": 3.9755074977874756,
+ "eval_runtime": 44.9956,
+ "eval_samples_per_second": 54.272,
+ "eval_steps_per_second": 3.4,
+ "step": 4752
+ },
+ {
+ "epoch": 66.01397990388816,
+ "grad_norm": 0.2833491861820221,
+ "learning_rate": 0.0006,
+ "loss": 3.4532885551452637,
+ "step": 4753
+ },
+ {
+ "epoch": 66.02795980777633,
+ "grad_norm": 0.31011638045310974,
+ "learning_rate": 0.0006,
+ "loss": 3.5164999961853027,
+ "step": 4754
+ },
+ {
+ "epoch": 66.04193971166448,
+ "grad_norm": 0.34583768248558044,
+ "learning_rate": 0.0006,
+ "loss": 3.463331937789917,
+ "step": 4755
+ },
+ {
+ "epoch": 66.05591961555264,
+ "grad_norm": 0.3586544990539551,
+ "learning_rate": 0.0006,
+ "loss": 3.4739010334014893,
+ "step": 4756
+ },
+ {
+ "epoch": 66.06989951944081,
+ "grad_norm": 0.32337963581085205,
+ "learning_rate": 0.0006,
+ "loss": 3.5309596061706543,
+ "step": 4757
+ },
+ {
+ "epoch": 66.08387942332897,
+ "grad_norm": 0.3091002404689789,
+ "learning_rate": 0.0006,
+ "loss": 3.479280471801758,
+ "step": 4758
+ },
+ {
+ "epoch": 66.09785932721712,
+ "grad_norm": 0.29722821712493896,
+ "learning_rate": 0.0006,
+ "loss": 3.52632999420166,
+ "step": 4759
+ },
+ {
+ "epoch": 66.1118392311053,
+ "grad_norm": 0.2636614739894867,
+ "learning_rate": 0.0006,
+ "loss": 3.4953694343566895,
+ "step": 4760
+ },
+ {
+ "epoch": 66.12581913499345,
+ "grad_norm": 0.2646677494049072,
+ "learning_rate": 0.0006,
+ "loss": 3.519223213195801,
+ "step": 4761
+ },
+ {
+ "epoch": 66.1397990388816,
+ "grad_norm": 0.26999902725219727,
+ "learning_rate": 0.0006,
+ "loss": 3.500627040863037,
+ "step": 4762
+ },
+ {
+ "epoch": 66.15377894276976,
+ "grad_norm": 0.26489800214767456,
+ "learning_rate": 0.0006,
+ "loss": 3.486992120742798,
+ "step": 4763
+ },
+ {
+ "epoch": 66.16775884665793,
+ "grad_norm": 0.23870280385017395,
+ "learning_rate": 0.0006,
+ "loss": 3.5312767028808594,
+ "step": 4764
+ },
+ {
+ "epoch": 66.18173875054609,
+ "grad_norm": 0.260374516248703,
+ "learning_rate": 0.0006,
+ "loss": 3.529757499694824,
+ "step": 4765
+ },
+ {
+ "epoch": 66.19571865443424,
+ "grad_norm": 0.22300437092781067,
+ "learning_rate": 0.0006,
+ "loss": 3.534423351287842,
+ "step": 4766
+ },
+ {
+ "epoch": 66.20969855832242,
+ "grad_norm": 0.22216713428497314,
+ "learning_rate": 0.0006,
+ "loss": 3.4944376945495605,
+ "step": 4767
+ },
+ {
+ "epoch": 66.22367846221057,
+ "grad_norm": 0.22038567066192627,
+ "learning_rate": 0.0006,
+ "loss": 3.500737190246582,
+ "step": 4768
+ },
+ {
+ "epoch": 66.23765836609873,
+ "grad_norm": 0.23068127036094666,
+ "learning_rate": 0.0006,
+ "loss": 3.486678123474121,
+ "step": 4769
+ },
+ {
+ "epoch": 66.2516382699869,
+ "grad_norm": 0.22809696197509766,
+ "learning_rate": 0.0006,
+ "loss": 3.49131441116333,
+ "step": 4770
+ },
+ {
+ "epoch": 66.26561817387505,
+ "grad_norm": 0.2096482366323471,
+ "learning_rate": 0.0006,
+ "loss": 3.462193012237549,
+ "step": 4771
+ },
+ {
+ "epoch": 66.27959807776321,
+ "grad_norm": 0.20821219682693481,
+ "learning_rate": 0.0006,
+ "loss": 3.482736110687256,
+ "step": 4772
+ },
+ {
+ "epoch": 66.29357798165138,
+ "grad_norm": 0.20735417306423187,
+ "learning_rate": 0.0006,
+ "loss": 3.4810829162597656,
+ "step": 4773
+ },
+ {
+ "epoch": 66.30755788553954,
+ "grad_norm": 0.21598318219184875,
+ "learning_rate": 0.0006,
+ "loss": 3.5151000022888184,
+ "step": 4774
+ },
+ {
+ "epoch": 66.3215377894277,
+ "grad_norm": 0.20589035749435425,
+ "learning_rate": 0.0006,
+ "loss": 3.4938106536865234,
+ "step": 4775
+ },
+ {
+ "epoch": 66.33551769331586,
+ "grad_norm": 0.22494125366210938,
+ "learning_rate": 0.0006,
+ "loss": 3.4739134311676025,
+ "step": 4776
+ },
+ {
+ "epoch": 66.34949759720402,
+ "grad_norm": 0.24715618789196014,
+ "learning_rate": 0.0006,
+ "loss": 3.492598295211792,
+ "step": 4777
+ },
+ {
+ "epoch": 66.36347750109218,
+ "grad_norm": 0.26689210534095764,
+ "learning_rate": 0.0006,
+ "loss": 3.5183334350585938,
+ "step": 4778
+ },
+ {
+ "epoch": 66.37745740498035,
+ "grad_norm": 0.29018405079841614,
+ "learning_rate": 0.0006,
+ "loss": 3.4874320030212402,
+ "step": 4779
+ },
+ {
+ "epoch": 66.3914373088685,
+ "grad_norm": 0.2511773109436035,
+ "learning_rate": 0.0006,
+ "loss": 3.5105361938476562,
+ "step": 4780
+ },
+ {
+ "epoch": 66.40541721275666,
+ "grad_norm": 0.20808005332946777,
+ "learning_rate": 0.0006,
+ "loss": 3.4932327270507812,
+ "step": 4781
+ },
+ {
+ "epoch": 66.41939711664482,
+ "grad_norm": 0.21036715805530548,
+ "learning_rate": 0.0006,
+ "loss": 3.5223588943481445,
+ "step": 4782
+ },
+ {
+ "epoch": 66.43337702053299,
+ "grad_norm": 0.2151600569486618,
+ "learning_rate": 0.0006,
+ "loss": 3.491854190826416,
+ "step": 4783
+ },
+ {
+ "epoch": 66.44735692442114,
+ "grad_norm": 0.23702189326286316,
+ "learning_rate": 0.0006,
+ "loss": 3.4869368076324463,
+ "step": 4784
+ },
+ {
+ "epoch": 66.4613368283093,
+ "grad_norm": 0.23089149594306946,
+ "learning_rate": 0.0006,
+ "loss": 3.5014419555664062,
+ "step": 4785
+ },
+ {
+ "epoch": 66.47531673219747,
+ "grad_norm": 0.25527265667915344,
+ "learning_rate": 0.0006,
+ "loss": 3.5148048400878906,
+ "step": 4786
+ },
+ {
+ "epoch": 66.48929663608563,
+ "grad_norm": 0.2308386117219925,
+ "learning_rate": 0.0006,
+ "loss": 3.5196022987365723,
+ "step": 4787
+ },
+ {
+ "epoch": 66.50327653997378,
+ "grad_norm": 0.23467418551445007,
+ "learning_rate": 0.0006,
+ "loss": 3.478280544281006,
+ "step": 4788
+ },
+ {
+ "epoch": 66.51725644386195,
+ "grad_norm": 0.23607908189296722,
+ "learning_rate": 0.0006,
+ "loss": 3.4826481342315674,
+ "step": 4789
+ },
+ {
+ "epoch": 66.53123634775011,
+ "grad_norm": 0.255309522151947,
+ "learning_rate": 0.0006,
+ "loss": 3.498870849609375,
+ "step": 4790
+ },
+ {
+ "epoch": 66.54521625163827,
+ "grad_norm": 0.29246363043785095,
+ "learning_rate": 0.0006,
+ "loss": 3.544440269470215,
+ "step": 4791
+ },
+ {
+ "epoch": 66.55919615552644,
+ "grad_norm": 0.2658552825450897,
+ "learning_rate": 0.0006,
+ "loss": 3.4844512939453125,
+ "step": 4792
+ },
+ {
+ "epoch": 66.57317605941459,
+ "grad_norm": 0.23498542606830597,
+ "learning_rate": 0.0006,
+ "loss": 3.5411434173583984,
+ "step": 4793
+ },
+ {
+ "epoch": 66.58715596330275,
+ "grad_norm": 0.2616438567638397,
+ "learning_rate": 0.0006,
+ "loss": 3.501821994781494,
+ "step": 4794
+ },
+ {
+ "epoch": 66.60113586719092,
+ "grad_norm": 0.2577981650829315,
+ "learning_rate": 0.0006,
+ "loss": 3.519040584564209,
+ "step": 4795
+ },
+ {
+ "epoch": 66.61511577107908,
+ "grad_norm": 0.25896304845809937,
+ "learning_rate": 0.0006,
+ "loss": 3.514458656311035,
+ "step": 4796
+ },
+ {
+ "epoch": 66.62909567496723,
+ "grad_norm": 0.26136472821235657,
+ "learning_rate": 0.0006,
+ "loss": 3.5054283142089844,
+ "step": 4797
+ },
+ {
+ "epoch": 66.6430755788554,
+ "grad_norm": 0.2134191244840622,
+ "learning_rate": 0.0006,
+ "loss": 3.551358222961426,
+ "step": 4798
+ },
+ {
+ "epoch": 66.65705548274356,
+ "grad_norm": 0.20154543220996857,
+ "learning_rate": 0.0006,
+ "loss": 3.5363516807556152,
+ "step": 4799
+ },
+ {
+ "epoch": 66.67103538663171,
+ "grad_norm": 0.20807082951068878,
+ "learning_rate": 0.0006,
+ "loss": 3.4861817359924316,
+ "step": 4800
+ },
+ {
+ "epoch": 66.68501529051987,
+ "grad_norm": 0.22268050909042358,
+ "learning_rate": 0.0006,
+ "loss": 3.5229034423828125,
+ "step": 4801
+ },
+ {
+ "epoch": 66.69899519440804,
+ "grad_norm": 0.21031907200813293,
+ "learning_rate": 0.0006,
+ "loss": 3.499587059020996,
+ "step": 4802
+ },
+ {
+ "epoch": 66.7129750982962,
+ "grad_norm": 0.207321435213089,
+ "learning_rate": 0.0006,
+ "loss": 3.5246481895446777,
+ "step": 4803
+ },
+ {
+ "epoch": 66.72695500218435,
+ "grad_norm": 0.21961352229118347,
+ "learning_rate": 0.0006,
+ "loss": 3.5126147270202637,
+ "step": 4804
+ },
+ {
+ "epoch": 66.74093490607252,
+ "grad_norm": 0.2144167572259903,
+ "learning_rate": 0.0006,
+ "loss": 3.5319013595581055,
+ "step": 4805
+ },
+ {
+ "epoch": 66.75491480996068,
+ "grad_norm": 0.19109441339969635,
+ "learning_rate": 0.0006,
+ "loss": 3.5124895572662354,
+ "step": 4806
+ },
+ {
+ "epoch": 66.76889471384884,
+ "grad_norm": 0.20463025569915771,
+ "learning_rate": 0.0006,
+ "loss": 3.5368666648864746,
+ "step": 4807
+ },
+ {
+ "epoch": 66.78287461773701,
+ "grad_norm": 0.20978771150112152,
+ "learning_rate": 0.0006,
+ "loss": 3.5166687965393066,
+ "step": 4808
+ },
+ {
+ "epoch": 66.79685452162516,
+ "grad_norm": 0.2258925437927246,
+ "learning_rate": 0.0006,
+ "loss": 3.532341957092285,
+ "step": 4809
+ },
+ {
+ "epoch": 66.81083442551332,
+ "grad_norm": 0.21758350729942322,
+ "learning_rate": 0.0006,
+ "loss": 3.5155858993530273,
+ "step": 4810
+ },
+ {
+ "epoch": 66.82481432940149,
+ "grad_norm": 0.20124484598636627,
+ "learning_rate": 0.0006,
+ "loss": 3.491522789001465,
+ "step": 4811
+ },
+ {
+ "epoch": 66.83879423328965,
+ "grad_norm": 0.21627238392829895,
+ "learning_rate": 0.0006,
+ "loss": 3.5303220748901367,
+ "step": 4812
+ },
+ {
+ "epoch": 66.8527741371778,
+ "grad_norm": 0.21125555038452148,
+ "learning_rate": 0.0006,
+ "loss": 3.535466194152832,
+ "step": 4813
+ },
+ {
+ "epoch": 66.86675404106597,
+ "grad_norm": 0.2247028350830078,
+ "learning_rate": 0.0006,
+ "loss": 3.51188325881958,
+ "step": 4814
+ },
+ {
+ "epoch": 66.88073394495413,
+ "grad_norm": 0.21800914406776428,
+ "learning_rate": 0.0006,
+ "loss": 3.5084712505340576,
+ "step": 4815
+ },
+ {
+ "epoch": 66.89471384884229,
+ "grad_norm": 0.2118908166885376,
+ "learning_rate": 0.0006,
+ "loss": 3.5099692344665527,
+ "step": 4816
+ },
+ {
+ "epoch": 66.90869375273044,
+ "grad_norm": 0.22638460993766785,
+ "learning_rate": 0.0006,
+ "loss": 3.5099596977233887,
+ "step": 4817
+ },
+ {
+ "epoch": 66.92267365661861,
+ "grad_norm": 0.1987311840057373,
+ "learning_rate": 0.0006,
+ "loss": 3.5497078895568848,
+ "step": 4818
+ },
+ {
+ "epoch": 66.93665356050677,
+ "grad_norm": 0.21048952639102936,
+ "learning_rate": 0.0006,
+ "loss": 3.524364948272705,
+ "step": 4819
+ },
+ {
+ "epoch": 66.95063346439493,
+ "grad_norm": 0.21481701731681824,
+ "learning_rate": 0.0006,
+ "loss": 3.5121915340423584,
+ "step": 4820
+ },
+ {
+ "epoch": 66.9646133682831,
+ "grad_norm": 0.22060725092887878,
+ "learning_rate": 0.0006,
+ "loss": 3.5288822650909424,
+ "step": 4821
+ },
+ {
+ "epoch": 66.97859327217125,
+ "grad_norm": 0.22192992269992828,
+ "learning_rate": 0.0006,
+ "loss": 3.504401206970215,
+ "step": 4822
+ },
+ {
+ "epoch": 66.99257317605941,
+ "grad_norm": 0.21677598357200623,
+ "learning_rate": 0.0006,
+ "loss": 3.5447967052459717,
+ "step": 4823
+ },
+ {
+ "epoch": 67.0,
+ "grad_norm": 0.24961385130882263,
+ "learning_rate": 0.0006,
+ "loss": 3.4890012741088867,
+ "step": 4824
+ },
+ {
+ "epoch": 67.0,
+ "eval_loss": 3.9784040451049805,
+ "eval_runtime": 45.0843,
+ "eval_samples_per_second": 54.165,
+ "eval_steps_per_second": 3.394,
+ "step": 4824
+ },
+ {
+ "epoch": 67.01397990388816,
+ "grad_norm": 0.22992873191833496,
+ "learning_rate": 0.0006,
+ "loss": 3.470973491668701,
+ "step": 4825
+ },
+ {
+ "epoch": 67.02795980777633,
+ "grad_norm": 0.2189949005842209,
+ "learning_rate": 0.0006,
+ "loss": 3.4956774711608887,
+ "step": 4826
+ },
+ {
+ "epoch": 67.04193971166448,
+ "grad_norm": 0.22506096959114075,
+ "learning_rate": 0.0006,
+ "loss": 3.448911190032959,
+ "step": 4827
+ },
+ {
+ "epoch": 67.05591961555264,
+ "grad_norm": 0.2447187304496765,
+ "learning_rate": 0.0006,
+ "loss": 3.465512275695801,
+ "step": 4828
+ },
+ {
+ "epoch": 67.06989951944081,
+ "grad_norm": 0.27052751183509827,
+ "learning_rate": 0.0006,
+ "loss": 3.493760824203491,
+ "step": 4829
+ },
+ {
+ "epoch": 67.08387942332897,
+ "grad_norm": 0.29693296551704407,
+ "learning_rate": 0.0006,
+ "loss": 3.4922988414764404,
+ "step": 4830
+ },
+ {
+ "epoch": 67.09785932721712,
+ "grad_norm": 0.27461376786231995,
+ "learning_rate": 0.0006,
+ "loss": 3.4782471656799316,
+ "step": 4831
+ },
+ {
+ "epoch": 67.1118392311053,
+ "grad_norm": 0.21409225463867188,
+ "learning_rate": 0.0006,
+ "loss": 3.4636545181274414,
+ "step": 4832
+ },
+ {
+ "epoch": 67.12581913499345,
+ "grad_norm": 0.24362294375896454,
+ "learning_rate": 0.0006,
+ "loss": 3.4836316108703613,
+ "step": 4833
+ },
+ {
+ "epoch": 67.1397990388816,
+ "grad_norm": 0.3237941265106201,
+ "learning_rate": 0.0006,
+ "loss": 3.4853315353393555,
+ "step": 4834
+ },
+ {
+ "epoch": 67.15377894276976,
+ "grad_norm": 0.3138698935508728,
+ "learning_rate": 0.0006,
+ "loss": 3.5045557022094727,
+ "step": 4835
+ },
+ {
+ "epoch": 67.16775884665793,
+ "grad_norm": 0.24102728068828583,
+ "learning_rate": 0.0006,
+ "loss": 3.450237512588501,
+ "step": 4836
+ },
+ {
+ "epoch": 67.18173875054609,
+ "grad_norm": 0.22504228353500366,
+ "learning_rate": 0.0006,
+ "loss": 3.5141711235046387,
+ "step": 4837
+ },
+ {
+ "epoch": 67.19571865443424,
+ "grad_norm": 0.2226196974515915,
+ "learning_rate": 0.0006,
+ "loss": 3.4973597526550293,
+ "step": 4838
+ },
+ {
+ "epoch": 67.20969855832242,
+ "grad_norm": 0.23295332491397858,
+ "learning_rate": 0.0006,
+ "loss": 3.455085277557373,
+ "step": 4839
+ },
+ {
+ "epoch": 67.22367846221057,
+ "grad_norm": 0.24799001216888428,
+ "learning_rate": 0.0006,
+ "loss": 3.5016517639160156,
+ "step": 4840
+ },
+ {
+ "epoch": 67.23765836609873,
+ "grad_norm": 0.2431265115737915,
+ "learning_rate": 0.0006,
+ "loss": 3.5138516426086426,
+ "step": 4841
+ },
+ {
+ "epoch": 67.2516382699869,
+ "grad_norm": 0.22402037680149078,
+ "learning_rate": 0.0006,
+ "loss": 3.5154635906219482,
+ "step": 4842
+ },
+ {
+ "epoch": 67.26561817387505,
+ "grad_norm": 0.2097088098526001,
+ "learning_rate": 0.0006,
+ "loss": 3.512531280517578,
+ "step": 4843
+ },
+ {
+ "epoch": 67.27959807776321,
+ "grad_norm": 0.21303699910640717,
+ "learning_rate": 0.0006,
+ "loss": 3.489511728286743,
+ "step": 4844
+ },
+ {
+ "epoch": 67.29357798165138,
+ "grad_norm": 0.2164260894060135,
+ "learning_rate": 0.0006,
+ "loss": 3.521756172180176,
+ "step": 4845
+ },
+ {
+ "epoch": 67.30755788553954,
+ "grad_norm": 0.2179967612028122,
+ "learning_rate": 0.0006,
+ "loss": 3.4991297721862793,
+ "step": 4846
+ },
+ {
+ "epoch": 67.3215377894277,
+ "grad_norm": 0.21892501413822174,
+ "learning_rate": 0.0006,
+ "loss": 3.475011110305786,
+ "step": 4847
+ },
+ {
+ "epoch": 67.33551769331586,
+ "grad_norm": 0.2372686117887497,
+ "learning_rate": 0.0006,
+ "loss": 3.49537992477417,
+ "step": 4848
+ },
+ {
+ "epoch": 67.34949759720402,
+ "grad_norm": 0.24897949397563934,
+ "learning_rate": 0.0006,
+ "loss": 3.4762938022613525,
+ "step": 4849
+ },
+ {
+ "epoch": 67.36347750109218,
+ "grad_norm": 0.24987933039665222,
+ "learning_rate": 0.0006,
+ "loss": 3.511708974838257,
+ "step": 4850
+ },
+ {
+ "epoch": 67.37745740498035,
+ "grad_norm": 0.24062976241111755,
+ "learning_rate": 0.0006,
+ "loss": 3.4955873489379883,
+ "step": 4851
+ },
+ {
+ "epoch": 67.3914373088685,
+ "grad_norm": 0.2277272790670395,
+ "learning_rate": 0.0006,
+ "loss": 3.5036606788635254,
+ "step": 4852
+ },
+ {
+ "epoch": 67.40541721275666,
+ "grad_norm": 0.23996487259864807,
+ "learning_rate": 0.0006,
+ "loss": 3.515568971633911,
+ "step": 4853
+ },
+ {
+ "epoch": 67.41939711664482,
+ "grad_norm": 0.23224318027496338,
+ "learning_rate": 0.0006,
+ "loss": 3.4915125370025635,
+ "step": 4854
+ },
+ {
+ "epoch": 67.43337702053299,
+ "grad_norm": 0.21011298894882202,
+ "learning_rate": 0.0006,
+ "loss": 3.5076327323913574,
+ "step": 4855
+ },
+ {
+ "epoch": 67.44735692442114,
+ "grad_norm": 0.21975480020046234,
+ "learning_rate": 0.0006,
+ "loss": 3.4929163455963135,
+ "step": 4856
+ },
+ {
+ "epoch": 67.4613368283093,
+ "grad_norm": 0.21966299414634705,
+ "learning_rate": 0.0006,
+ "loss": 3.50154447555542,
+ "step": 4857
+ },
+ {
+ "epoch": 67.47531673219747,
+ "grad_norm": 0.2167058289051056,
+ "learning_rate": 0.0006,
+ "loss": 3.4866533279418945,
+ "step": 4858
+ },
+ {
+ "epoch": 67.48929663608563,
+ "grad_norm": 0.2072296291589737,
+ "learning_rate": 0.0006,
+ "loss": 3.506241798400879,
+ "step": 4859
+ },
+ {
+ "epoch": 67.50327653997378,
+ "grad_norm": 0.2358800321817398,
+ "learning_rate": 0.0006,
+ "loss": 3.51871919631958,
+ "step": 4860
+ },
+ {
+ "epoch": 67.51725644386195,
+ "grad_norm": 0.2841838598251343,
+ "learning_rate": 0.0006,
+ "loss": 3.531181812286377,
+ "step": 4861
+ },
+ {
+ "epoch": 67.53123634775011,
+ "grad_norm": 0.2744826078414917,
+ "learning_rate": 0.0006,
+ "loss": 3.4916810989379883,
+ "step": 4862
+ },
+ {
+ "epoch": 67.54521625163827,
+ "grad_norm": 0.229517862200737,
+ "learning_rate": 0.0006,
+ "loss": 3.522495746612549,
+ "step": 4863
+ },
+ {
+ "epoch": 67.55919615552644,
+ "grad_norm": 0.22933268547058105,
+ "learning_rate": 0.0006,
+ "loss": 3.522249698638916,
+ "step": 4864
+ },
+ {
+ "epoch": 67.57317605941459,
+ "grad_norm": 0.2578641176223755,
+ "learning_rate": 0.0006,
+ "loss": 3.497955799102783,
+ "step": 4865
+ },
+ {
+ "epoch": 67.58715596330275,
+ "grad_norm": 0.26098695397377014,
+ "learning_rate": 0.0006,
+ "loss": 3.508647918701172,
+ "step": 4866
+ },
+ {
+ "epoch": 67.60113586719092,
+ "grad_norm": 0.26429283618927,
+ "learning_rate": 0.0006,
+ "loss": 3.504948139190674,
+ "step": 4867
+ },
+ {
+ "epoch": 67.61511577107908,
+ "grad_norm": 0.2604367136955261,
+ "learning_rate": 0.0006,
+ "loss": 3.529656410217285,
+ "step": 4868
+ },
+ {
+ "epoch": 67.62909567496723,
+ "grad_norm": 0.26351016759872437,
+ "learning_rate": 0.0006,
+ "loss": 3.497729778289795,
+ "step": 4869
+ },
+ {
+ "epoch": 67.6430755788554,
+ "grad_norm": 0.23902031779289246,
+ "learning_rate": 0.0006,
+ "loss": 3.5174601078033447,
+ "step": 4870
+ },
+ {
+ "epoch": 67.65705548274356,
+ "grad_norm": 0.2439061552286148,
+ "learning_rate": 0.0006,
+ "loss": 3.472304344177246,
+ "step": 4871
+ },
+ {
+ "epoch": 67.67103538663171,
+ "grad_norm": 0.28729668259620667,
+ "learning_rate": 0.0006,
+ "loss": 3.4945883750915527,
+ "step": 4872
+ },
+ {
+ "epoch": 67.68501529051987,
+ "grad_norm": 0.2690763771533966,
+ "learning_rate": 0.0006,
+ "loss": 3.524843215942383,
+ "step": 4873
+ },
+ {
+ "epoch": 67.69899519440804,
+ "grad_norm": 0.24424311518669128,
+ "learning_rate": 0.0006,
+ "loss": 3.5337445735931396,
+ "step": 4874
+ },
+ {
+ "epoch": 67.7129750982962,
+ "grad_norm": 0.25736868381500244,
+ "learning_rate": 0.0006,
+ "loss": 3.51664400100708,
+ "step": 4875
+ },
+ {
+ "epoch": 67.72695500218435,
+ "grad_norm": 0.24504248797893524,
+ "learning_rate": 0.0006,
+ "loss": 3.5089268684387207,
+ "step": 4876
+ },
+ {
+ "epoch": 67.74093490607252,
+ "grad_norm": 0.24296091496944427,
+ "learning_rate": 0.0006,
+ "loss": 3.5506460666656494,
+ "step": 4877
+ },
+ {
+ "epoch": 67.75491480996068,
+ "grad_norm": 0.24984019994735718,
+ "learning_rate": 0.0006,
+ "loss": 3.5290684700012207,
+ "step": 4878
+ },
+ {
+ "epoch": 67.76889471384884,
+ "grad_norm": 0.23878677189350128,
+ "learning_rate": 0.0006,
+ "loss": 3.522343635559082,
+ "step": 4879
+ },
+ {
+ "epoch": 67.78287461773701,
+ "grad_norm": 0.2275245040655136,
+ "learning_rate": 0.0006,
+ "loss": 3.5218796730041504,
+ "step": 4880
+ },
+ {
+ "epoch": 67.79685452162516,
+ "grad_norm": 0.21045760810375214,
+ "learning_rate": 0.0006,
+ "loss": 3.512430191040039,
+ "step": 4881
+ },
+ {
+ "epoch": 67.81083442551332,
+ "grad_norm": 0.21902696788311005,
+ "learning_rate": 0.0006,
+ "loss": 3.537611484527588,
+ "step": 4882
+ },
+ {
+ "epoch": 67.82481432940149,
+ "grad_norm": 0.20757564902305603,
+ "learning_rate": 0.0006,
+ "loss": 3.470278263092041,
+ "step": 4883
+ },
+ {
+ "epoch": 67.83879423328965,
+ "grad_norm": 0.22352434694766998,
+ "learning_rate": 0.0006,
+ "loss": 3.4816718101501465,
+ "step": 4884
+ },
+ {
+ "epoch": 67.8527741371778,
+ "grad_norm": 0.20459680259227753,
+ "learning_rate": 0.0006,
+ "loss": 3.508671998977661,
+ "step": 4885
+ },
+ {
+ "epoch": 67.86675404106597,
+ "grad_norm": 0.20641672611236572,
+ "learning_rate": 0.0006,
+ "loss": 3.500471591949463,
+ "step": 4886
+ },
+ {
+ "epoch": 67.88073394495413,
+ "grad_norm": 0.20340596139431,
+ "learning_rate": 0.0006,
+ "loss": 3.5282673835754395,
+ "step": 4887
+ },
+ {
+ "epoch": 67.89471384884229,
+ "grad_norm": 0.20768426358699799,
+ "learning_rate": 0.0006,
+ "loss": 3.528446912765503,
+ "step": 4888
+ },
+ {
+ "epoch": 67.90869375273044,
+ "grad_norm": 0.19998659193515778,
+ "learning_rate": 0.0006,
+ "loss": 3.501742124557495,
+ "step": 4889
+ },
+ {
+ "epoch": 67.92267365661861,
+ "grad_norm": 0.20472751557826996,
+ "learning_rate": 0.0006,
+ "loss": 3.510523796081543,
+ "step": 4890
+ },
+ {
+ "epoch": 67.93665356050677,
+ "grad_norm": 0.21528398990631104,
+ "learning_rate": 0.0006,
+ "loss": 3.529409170150757,
+ "step": 4891
+ },
+ {
+ "epoch": 67.95063346439493,
+ "grad_norm": 0.19671283662319183,
+ "learning_rate": 0.0006,
+ "loss": 3.5512051582336426,
+ "step": 4892
+ },
+ {
+ "epoch": 67.9646133682831,
+ "grad_norm": 0.20629945397377014,
+ "learning_rate": 0.0006,
+ "loss": 3.5127525329589844,
+ "step": 4893
+ },
+ {
+ "epoch": 67.97859327217125,
+ "grad_norm": 0.2121579945087433,
+ "learning_rate": 0.0006,
+ "loss": 3.5242156982421875,
+ "step": 4894
+ },
+ {
+ "epoch": 67.99257317605941,
+ "grad_norm": 0.20770777761936188,
+ "learning_rate": 0.0006,
+ "loss": 3.5094361305236816,
+ "step": 4895
+ },
+ {
+ "epoch": 68.0,
+ "grad_norm": 0.2619984447956085,
+ "learning_rate": 0.0006,
+ "loss": 3.491684675216675,
+ "step": 4896
+ },
+ {
+ "epoch": 68.0,
+ "eval_loss": 3.97202730178833,
+ "eval_runtime": 44.2471,
+ "eval_samples_per_second": 55.19,
+ "eval_steps_per_second": 3.458,
+ "step": 4896
+ },
+ {
+ "epoch": 68.01397990388816,
+ "grad_norm": 0.25237807631492615,
+ "learning_rate": 0.0006,
+ "loss": 3.4720845222473145,
+ "step": 4897
+ },
+ {
+ "epoch": 68.02795980777633,
+ "grad_norm": 0.26686927676200867,
+ "learning_rate": 0.0006,
+ "loss": 3.4825453758239746,
+ "step": 4898
+ },
+ {
+ "epoch": 68.04193971166448,
+ "grad_norm": 0.2826477885246277,
+ "learning_rate": 0.0006,
+ "loss": 3.489805221557617,
+ "step": 4899
+ },
+ {
+ "epoch": 68.05591961555264,
+ "grad_norm": 0.291363000869751,
+ "learning_rate": 0.0006,
+ "loss": 3.464585304260254,
+ "step": 4900
+ },
+ {
+ "epoch": 68.06989951944081,
+ "grad_norm": 0.2645387649536133,
+ "learning_rate": 0.0006,
+ "loss": 3.4891953468322754,
+ "step": 4901
+ },
+ {
+ "epoch": 68.08387942332897,
+ "grad_norm": 0.2398659586906433,
+ "learning_rate": 0.0006,
+ "loss": 3.474371910095215,
+ "step": 4902
+ },
+ {
+ "epoch": 68.09785932721712,
+ "grad_norm": 0.23359309136867523,
+ "learning_rate": 0.0006,
+ "loss": 3.5011367797851562,
+ "step": 4903
+ },
+ {
+ "epoch": 68.1118392311053,
+ "grad_norm": 0.235616534948349,
+ "learning_rate": 0.0006,
+ "loss": 3.472562551498413,
+ "step": 4904
+ },
+ {
+ "epoch": 68.12581913499345,
+ "grad_norm": 0.25396600365638733,
+ "learning_rate": 0.0006,
+ "loss": 3.484182834625244,
+ "step": 4905
+ },
+ {
+ "epoch": 68.1397990388816,
+ "grad_norm": 0.2668958604335785,
+ "learning_rate": 0.0006,
+ "loss": 3.4625918865203857,
+ "step": 4906
+ },
+ {
+ "epoch": 68.15377894276976,
+ "grad_norm": 0.2608959674835205,
+ "learning_rate": 0.0006,
+ "loss": 3.4769415855407715,
+ "step": 4907
+ },
+ {
+ "epoch": 68.16775884665793,
+ "grad_norm": 0.2817389667034149,
+ "learning_rate": 0.0006,
+ "loss": 3.4722979068756104,
+ "step": 4908
+ },
+ {
+ "epoch": 68.18173875054609,
+ "grad_norm": 0.24425546824932098,
+ "learning_rate": 0.0006,
+ "loss": 3.4710354804992676,
+ "step": 4909
+ },
+ {
+ "epoch": 68.19571865443424,
+ "grad_norm": 0.2355373501777649,
+ "learning_rate": 0.0006,
+ "loss": 3.475369453430176,
+ "step": 4910
+ },
+ {
+ "epoch": 68.20969855832242,
+ "grad_norm": 0.23627427220344543,
+ "learning_rate": 0.0006,
+ "loss": 3.50154447555542,
+ "step": 4911
+ },
+ {
+ "epoch": 68.22367846221057,
+ "grad_norm": 0.21174706518650055,
+ "learning_rate": 0.0006,
+ "loss": 3.5018253326416016,
+ "step": 4912
+ },
+ {
+ "epoch": 68.23765836609873,
+ "grad_norm": 0.2101593017578125,
+ "learning_rate": 0.0006,
+ "loss": 3.4931211471557617,
+ "step": 4913
+ },
+ {
+ "epoch": 68.2516382699869,
+ "grad_norm": 0.21808475255966187,
+ "learning_rate": 0.0006,
+ "loss": 3.5047576427459717,
+ "step": 4914
+ },
+ {
+ "epoch": 68.26561817387505,
+ "grad_norm": 0.2354060262441635,
+ "learning_rate": 0.0006,
+ "loss": 3.471801996231079,
+ "step": 4915
+ },
+ {
+ "epoch": 68.27959807776321,
+ "grad_norm": 0.2839724123477936,
+ "learning_rate": 0.0006,
+ "loss": 3.4861397743225098,
+ "step": 4916
+ },
+ {
+ "epoch": 68.29357798165138,
+ "grad_norm": 0.2884398102760315,
+ "learning_rate": 0.0006,
+ "loss": 3.497713088989258,
+ "step": 4917
+ },
+ {
+ "epoch": 68.30755788553954,
+ "grad_norm": 0.24654951691627502,
+ "learning_rate": 0.0006,
+ "loss": 3.4795613288879395,
+ "step": 4918
+ },
+ {
+ "epoch": 68.3215377894277,
+ "grad_norm": 0.22197365760803223,
+ "learning_rate": 0.0006,
+ "loss": 3.495490550994873,
+ "step": 4919
+ },
+ {
+ "epoch": 68.33551769331586,
+ "grad_norm": 0.22666935622692108,
+ "learning_rate": 0.0006,
+ "loss": 3.4859418869018555,
+ "step": 4920
+ },
+ {
+ "epoch": 68.34949759720402,
+ "grad_norm": 0.22135236859321594,
+ "learning_rate": 0.0006,
+ "loss": 3.475436210632324,
+ "step": 4921
+ },
+ {
+ "epoch": 68.36347750109218,
+ "grad_norm": 0.28992167115211487,
+ "learning_rate": 0.0006,
+ "loss": 3.5220274925231934,
+ "step": 4922
+ },
+ {
+ "epoch": 68.37745740498035,
+ "grad_norm": 0.296501100063324,
+ "learning_rate": 0.0006,
+ "loss": 3.4783244132995605,
+ "step": 4923
+ },
+ {
+ "epoch": 68.3914373088685,
+ "grad_norm": 0.24111351370811462,
+ "learning_rate": 0.0006,
+ "loss": 3.4972972869873047,
+ "step": 4924
+ },
+ {
+ "epoch": 68.40541721275666,
+ "grad_norm": 0.22319315373897552,
+ "learning_rate": 0.0006,
+ "loss": 3.517050266265869,
+ "step": 4925
+ },
+ {
+ "epoch": 68.41939711664482,
+ "grad_norm": 0.20984329283237457,
+ "learning_rate": 0.0006,
+ "loss": 3.5097880363464355,
+ "step": 4926
+ },
+ {
+ "epoch": 68.43337702053299,
+ "grad_norm": 0.2221212387084961,
+ "learning_rate": 0.0006,
+ "loss": 3.4824156761169434,
+ "step": 4927
+ },
+ {
+ "epoch": 68.44735692442114,
+ "grad_norm": 0.23731078207492828,
+ "learning_rate": 0.0006,
+ "loss": 3.5319526195526123,
+ "step": 4928
+ },
+ {
+ "epoch": 68.4613368283093,
+ "grad_norm": 0.233421191573143,
+ "learning_rate": 0.0006,
+ "loss": 3.4952187538146973,
+ "step": 4929
+ },
+ {
+ "epoch": 68.47531673219747,
+ "grad_norm": 0.2320558875799179,
+ "learning_rate": 0.0006,
+ "loss": 3.5152385234832764,
+ "step": 4930
+ },
+ {
+ "epoch": 68.48929663608563,
+ "grad_norm": 0.21786290407180786,
+ "learning_rate": 0.0006,
+ "loss": 3.4857373237609863,
+ "step": 4931
+ },
+ {
+ "epoch": 68.50327653997378,
+ "grad_norm": 0.20560047030448914,
+ "learning_rate": 0.0006,
+ "loss": 3.487344264984131,
+ "step": 4932
+ },
+ {
+ "epoch": 68.51725644386195,
+ "grad_norm": 0.2326865941286087,
+ "learning_rate": 0.0006,
+ "loss": 3.5202066898345947,
+ "step": 4933
+ },
+ {
+ "epoch": 68.53123634775011,
+ "grad_norm": 0.2338377833366394,
+ "learning_rate": 0.0006,
+ "loss": 3.4967358112335205,
+ "step": 4934
+ },
+ {
+ "epoch": 68.54521625163827,
+ "grad_norm": 0.22698800265789032,
+ "learning_rate": 0.0006,
+ "loss": 3.484452724456787,
+ "step": 4935
+ },
+ {
+ "epoch": 68.55919615552644,
+ "grad_norm": 0.21141181886196136,
+ "learning_rate": 0.0006,
+ "loss": 3.4950156211853027,
+ "step": 4936
+ },
+ {
+ "epoch": 68.57317605941459,
+ "grad_norm": 0.22393199801445007,
+ "learning_rate": 0.0006,
+ "loss": 3.4950199127197266,
+ "step": 4937
+ },
+ {
+ "epoch": 68.58715596330275,
+ "grad_norm": 0.22276045382022858,
+ "learning_rate": 0.0006,
+ "loss": 3.5180115699768066,
+ "step": 4938
+ },
+ {
+ "epoch": 68.60113586719092,
+ "grad_norm": 0.22738748788833618,
+ "learning_rate": 0.0006,
+ "loss": 3.5053911209106445,
+ "step": 4939
+ },
+ {
+ "epoch": 68.61511577107908,
+ "grad_norm": 0.21496275067329407,
+ "learning_rate": 0.0006,
+ "loss": 3.5315306186676025,
+ "step": 4940
+ },
+ {
+ "epoch": 68.62909567496723,
+ "grad_norm": 0.20695674419403076,
+ "learning_rate": 0.0006,
+ "loss": 3.514780044555664,
+ "step": 4941
+ },
+ {
+ "epoch": 68.6430755788554,
+ "grad_norm": 0.22777840495109558,
+ "learning_rate": 0.0006,
+ "loss": 3.5249099731445312,
+ "step": 4942
+ },
+ {
+ "epoch": 68.65705548274356,
+ "grad_norm": 0.26664453744888306,
+ "learning_rate": 0.0006,
+ "loss": 3.4763400554656982,
+ "step": 4943
+ },
+ {
+ "epoch": 68.67103538663171,
+ "grad_norm": 0.3005792498588562,
+ "learning_rate": 0.0006,
+ "loss": 3.4936861991882324,
+ "step": 4944
+ },
+ {
+ "epoch": 68.68501529051987,
+ "grad_norm": 0.2860395908355713,
+ "learning_rate": 0.0006,
+ "loss": 3.4994754791259766,
+ "step": 4945
+ },
+ {
+ "epoch": 68.69899519440804,
+ "grad_norm": 0.21164822578430176,
+ "learning_rate": 0.0006,
+ "loss": 3.5011136531829834,
+ "step": 4946
+ },
+ {
+ "epoch": 68.7129750982962,
+ "grad_norm": 0.2122834324836731,
+ "learning_rate": 0.0006,
+ "loss": 3.52018404006958,
+ "step": 4947
+ },
+ {
+ "epoch": 68.72695500218435,
+ "grad_norm": 0.23951229453086853,
+ "learning_rate": 0.0006,
+ "loss": 3.4910717010498047,
+ "step": 4948
+ },
+ {
+ "epoch": 68.74093490607252,
+ "grad_norm": 0.22745490074157715,
+ "learning_rate": 0.0006,
+ "loss": 3.5251622200012207,
+ "step": 4949
+ },
+ {
+ "epoch": 68.75491480996068,
+ "grad_norm": 0.21616250276565552,
+ "learning_rate": 0.0006,
+ "loss": 3.4933743476867676,
+ "step": 4950
+ },
+ {
+ "epoch": 68.76889471384884,
+ "grad_norm": 0.2164236605167389,
+ "learning_rate": 0.0006,
+ "loss": 3.513286590576172,
+ "step": 4951
+ },
+ {
+ "epoch": 68.78287461773701,
+ "grad_norm": 0.2450464814901352,
+ "learning_rate": 0.0006,
+ "loss": 3.5084245204925537,
+ "step": 4952
+ },
+ {
+ "epoch": 68.79685452162516,
+ "grad_norm": 0.29221615195274353,
+ "learning_rate": 0.0006,
+ "loss": 3.5463311672210693,
+ "step": 4953
+ },
+ {
+ "epoch": 68.81083442551332,
+ "grad_norm": 0.24574553966522217,
+ "learning_rate": 0.0006,
+ "loss": 3.5099716186523438,
+ "step": 4954
+ },
+ {
+ "epoch": 68.82481432940149,
+ "grad_norm": 0.20879139006137848,
+ "learning_rate": 0.0006,
+ "loss": 3.5220701694488525,
+ "step": 4955
+ },
+ {
+ "epoch": 68.83879423328965,
+ "grad_norm": 0.295693963766098,
+ "learning_rate": 0.0006,
+ "loss": 3.4854037761688232,
+ "step": 4956
+ },
+ {
+ "epoch": 68.8527741371778,
+ "grad_norm": 0.35441911220550537,
+ "learning_rate": 0.0006,
+ "loss": 3.5216379165649414,
+ "step": 4957
+ },
+ {
+ "epoch": 68.86675404106597,
+ "grad_norm": 0.2840341031551361,
+ "learning_rate": 0.0006,
+ "loss": 3.5208358764648438,
+ "step": 4958
+ },
+ {
+ "epoch": 68.88073394495413,
+ "grad_norm": 0.2082499861717224,
+ "learning_rate": 0.0006,
+ "loss": 3.5028862953186035,
+ "step": 4959
+ },
+ {
+ "epoch": 68.89471384884229,
+ "grad_norm": 0.2505369186401367,
+ "learning_rate": 0.0006,
+ "loss": 3.4982357025146484,
+ "step": 4960
+ },
+ {
+ "epoch": 68.90869375273044,
+ "grad_norm": 0.24573875963687897,
+ "learning_rate": 0.0006,
+ "loss": 3.5239524841308594,
+ "step": 4961
+ },
+ {
+ "epoch": 68.92267365661861,
+ "grad_norm": 0.23462185263633728,
+ "learning_rate": 0.0006,
+ "loss": 3.544379234313965,
+ "step": 4962
+ },
+ {
+ "epoch": 68.93665356050677,
+ "grad_norm": 0.26491034030914307,
+ "learning_rate": 0.0006,
+ "loss": 3.518372058868408,
+ "step": 4963
+ },
+ {
+ "epoch": 68.95063346439493,
+ "grad_norm": 0.2729686498641968,
+ "learning_rate": 0.0006,
+ "loss": 3.517185926437378,
+ "step": 4964
+ },
+ {
+ "epoch": 68.9646133682831,
+ "grad_norm": 0.26077502965927124,
+ "learning_rate": 0.0006,
+ "loss": 3.5147576332092285,
+ "step": 4965
+ },
+ {
+ "epoch": 68.97859327217125,
+ "grad_norm": 0.2313229888677597,
+ "learning_rate": 0.0006,
+ "loss": 3.5008926391601562,
+ "step": 4966
+ },
+ {
+ "epoch": 68.99257317605941,
+ "grad_norm": 0.21773307025432587,
+ "learning_rate": 0.0006,
+ "loss": 3.5004096031188965,
+ "step": 4967
+ },
+ {
+ "epoch": 69.0,
+ "grad_norm": 0.2326030433177948,
+ "learning_rate": 0.0006,
+ "loss": 3.5572075843811035,
+ "step": 4968
+ },
+ {
+ "epoch": 69.0,
+ "eval_loss": 3.993666410446167,
+ "eval_runtime": 45.2778,
+ "eval_samples_per_second": 53.934,
+ "eval_steps_per_second": 3.379,
+ "step": 4968
+ },
+ {
+ "epoch": 69.01397990388816,
+ "grad_norm": 0.22886492311954498,
+ "learning_rate": 0.0006,
+ "loss": 3.4994781017303467,
+ "step": 4969
+ },
+ {
+ "epoch": 69.02795980777633,
+ "grad_norm": 0.2972700595855713,
+ "learning_rate": 0.0006,
+ "loss": 3.5022270679473877,
+ "step": 4970
+ },
+ {
+ "epoch": 69.04193971166448,
+ "grad_norm": 0.32146573066711426,
+ "learning_rate": 0.0006,
+ "loss": 3.49113130569458,
+ "step": 4971
+ },
+ {
+ "epoch": 69.05591961555264,
+ "grad_norm": 0.26019641757011414,
+ "learning_rate": 0.0006,
+ "loss": 3.4609522819519043,
+ "step": 4972
+ },
+ {
+ "epoch": 69.06989951944081,
+ "grad_norm": 0.2116279900074005,
+ "learning_rate": 0.0006,
+ "loss": 3.518007278442383,
+ "step": 4973
+ },
+ {
+ "epoch": 69.08387942332897,
+ "grad_norm": 0.24797578155994415,
+ "learning_rate": 0.0006,
+ "loss": 3.465017318725586,
+ "step": 4974
+ },
+ {
+ "epoch": 69.09785932721712,
+ "grad_norm": 0.2988112270832062,
+ "learning_rate": 0.0006,
+ "loss": 3.46774959564209,
+ "step": 4975
+ },
+ {
+ "epoch": 69.1118392311053,
+ "grad_norm": 0.2741694450378418,
+ "learning_rate": 0.0006,
+ "loss": 3.4726247787475586,
+ "step": 4976
+ },
+ {
+ "epoch": 69.12581913499345,
+ "grad_norm": 0.246512308716774,
+ "learning_rate": 0.0006,
+ "loss": 3.4634053707122803,
+ "step": 4977
+ },
+ {
+ "epoch": 69.1397990388816,
+ "grad_norm": 0.25938132405281067,
+ "learning_rate": 0.0006,
+ "loss": 3.4496707916259766,
+ "step": 4978
+ },
+ {
+ "epoch": 69.15377894276976,
+ "grad_norm": 0.30637112259864807,
+ "learning_rate": 0.0006,
+ "loss": 3.4703760147094727,
+ "step": 4979
+ },
+ {
+ "epoch": 69.16775884665793,
+ "grad_norm": 0.26681914925575256,
+ "learning_rate": 0.0006,
+ "loss": 3.50388240814209,
+ "step": 4980
+ },
+ {
+ "epoch": 69.18173875054609,
+ "grad_norm": 0.24075748026371002,
+ "learning_rate": 0.0006,
+ "loss": 3.517247438430786,
+ "step": 4981
+ },
+ {
+ "epoch": 69.19571865443424,
+ "grad_norm": 0.21730124950408936,
+ "learning_rate": 0.0006,
+ "loss": 3.49320650100708,
+ "step": 4982
+ },
+ {
+ "epoch": 69.20969855832242,
+ "grad_norm": 0.21399953961372375,
+ "learning_rate": 0.0006,
+ "loss": 3.4763529300689697,
+ "step": 4983
+ },
+ {
+ "epoch": 69.22367846221057,
+ "grad_norm": 0.22505059838294983,
+ "learning_rate": 0.0006,
+ "loss": 3.4744338989257812,
+ "step": 4984
+ },
+ {
+ "epoch": 69.23765836609873,
+ "grad_norm": 0.23260554671287537,
+ "learning_rate": 0.0006,
+ "loss": 3.469099760055542,
+ "step": 4985
+ },
+ {
+ "epoch": 69.2516382699869,
+ "grad_norm": 0.2212911993265152,
+ "learning_rate": 0.0006,
+ "loss": 3.484243869781494,
+ "step": 4986
+ },
+ {
+ "epoch": 69.26561817387505,
+ "grad_norm": 0.22414085268974304,
+ "learning_rate": 0.0006,
+ "loss": 3.485083818435669,
+ "step": 4987
+ },
+ {
+ "epoch": 69.27959807776321,
+ "grad_norm": 0.2222541719675064,
+ "learning_rate": 0.0006,
+ "loss": 3.4827499389648438,
+ "step": 4988
+ },
+ {
+ "epoch": 69.29357798165138,
+ "grad_norm": 0.23511181771755219,
+ "learning_rate": 0.0006,
+ "loss": 3.4688282012939453,
+ "step": 4989
+ },
+ {
+ "epoch": 69.30755788553954,
+ "grad_norm": 0.23599068820476532,
+ "learning_rate": 0.0006,
+ "loss": 3.498142719268799,
+ "step": 4990
+ },
+ {
+ "epoch": 69.3215377894277,
+ "grad_norm": 0.22533927857875824,
+ "learning_rate": 0.0006,
+ "loss": 3.4815826416015625,
+ "step": 4991
+ },
+ {
+ "epoch": 69.33551769331586,
+ "grad_norm": 0.2343030720949173,
+ "learning_rate": 0.0006,
+ "loss": 3.483752489089966,
+ "step": 4992
+ },
+ {
+ "epoch": 69.34949759720402,
+ "grad_norm": 0.23283112049102783,
+ "learning_rate": 0.0006,
+ "loss": 3.4877965450286865,
+ "step": 4993
+ },
+ {
+ "epoch": 69.36347750109218,
+ "grad_norm": 0.24869517982006073,
+ "learning_rate": 0.0006,
+ "loss": 3.480337142944336,
+ "step": 4994
+ },
+ {
+ "epoch": 69.37745740498035,
+ "grad_norm": 0.22779154777526855,
+ "learning_rate": 0.0006,
+ "loss": 3.4828710556030273,
+ "step": 4995
+ },
+ {
+ "epoch": 69.3914373088685,
+ "grad_norm": 0.22645261883735657,
+ "learning_rate": 0.0006,
+ "loss": 3.509845018386841,
+ "step": 4996
+ },
+ {
+ "epoch": 69.40541721275666,
+ "grad_norm": 0.2432178109884262,
+ "learning_rate": 0.0006,
+ "loss": 3.4617137908935547,
+ "step": 4997
+ },
+ {
+ "epoch": 69.41939711664482,
+ "grad_norm": 0.2587018311023712,
+ "learning_rate": 0.0006,
+ "loss": 3.4713127613067627,
+ "step": 4998
+ },
+ {
+ "epoch": 69.43337702053299,
+ "grad_norm": 0.21907378733158112,
+ "learning_rate": 0.0006,
+ "loss": 3.509188175201416,
+ "step": 4999
+ },
+ {
+ "epoch": 69.44735692442114,
+ "grad_norm": 0.22740772366523743,
+ "learning_rate": 0.0006,
+ "loss": 3.4754276275634766,
+ "step": 5000
+ },
+ {
+ "epoch": 69.4613368283093,
+ "grad_norm": 0.21934257447719574,
+ "learning_rate": 0.0006,
+ "loss": 3.4663891792297363,
+ "step": 5001
+ },
+ {
+ "epoch": 69.47531673219747,
+ "grad_norm": 0.2244742065668106,
+ "learning_rate": 0.0006,
+ "loss": 3.4800233840942383,
+ "step": 5002
+ },
+ {
+ "epoch": 69.48929663608563,
+ "grad_norm": 0.20470912754535675,
+ "learning_rate": 0.0006,
+ "loss": 3.5089359283447266,
+ "step": 5003
+ },
+ {
+ "epoch": 69.50327653997378,
+ "grad_norm": 0.21532751619815826,
+ "learning_rate": 0.0006,
+ "loss": 3.5029287338256836,
+ "step": 5004
+ },
+ {
+ "epoch": 69.51725644386195,
+ "grad_norm": 0.2311217337846756,
+ "learning_rate": 0.0006,
+ "loss": 3.5031962394714355,
+ "step": 5005
+ },
+ {
+ "epoch": 69.53123634775011,
+ "grad_norm": 0.22248436510562897,
+ "learning_rate": 0.0006,
+ "loss": 3.5059356689453125,
+ "step": 5006
+ },
+ {
+ "epoch": 69.54521625163827,
+ "grad_norm": 0.2108408361673355,
+ "learning_rate": 0.0006,
+ "loss": 3.498697280883789,
+ "step": 5007
+ },
+ {
+ "epoch": 69.55919615552644,
+ "grad_norm": 0.22833184897899628,
+ "learning_rate": 0.0006,
+ "loss": 3.505685806274414,
+ "step": 5008
+ },
+ {
+ "epoch": 69.57317605941459,
+ "grad_norm": 0.22630111873149872,
+ "learning_rate": 0.0006,
+ "loss": 3.497771978378296,
+ "step": 5009
+ },
+ {
+ "epoch": 69.58715596330275,
+ "grad_norm": 0.23363569378852844,
+ "learning_rate": 0.0006,
+ "loss": 3.5422916412353516,
+ "step": 5010
+ },
+ {
+ "epoch": 69.60113586719092,
+ "grad_norm": 0.23720940947532654,
+ "learning_rate": 0.0006,
+ "loss": 3.504817008972168,
+ "step": 5011
+ },
+ {
+ "epoch": 69.61511577107908,
+ "grad_norm": 0.22822913527488708,
+ "learning_rate": 0.0006,
+ "loss": 3.51149320602417,
+ "step": 5012
+ },
+ {
+ "epoch": 69.62909567496723,
+ "grad_norm": 0.24143314361572266,
+ "learning_rate": 0.0006,
+ "loss": 3.509063720703125,
+ "step": 5013
+ },
+ {
+ "epoch": 69.6430755788554,
+ "grad_norm": 0.2394775152206421,
+ "learning_rate": 0.0006,
+ "loss": 3.5275425910949707,
+ "step": 5014
+ },
+ {
+ "epoch": 69.65705548274356,
+ "grad_norm": 0.23898433148860931,
+ "learning_rate": 0.0006,
+ "loss": 3.5251870155334473,
+ "step": 5015
+ },
+ {
+ "epoch": 69.67103538663171,
+ "grad_norm": 0.22647695243358612,
+ "learning_rate": 0.0006,
+ "loss": 3.4790940284729004,
+ "step": 5016
+ },
+ {
+ "epoch": 69.68501529051987,
+ "grad_norm": 0.23094546794891357,
+ "learning_rate": 0.0006,
+ "loss": 3.515676975250244,
+ "step": 5017
+ },
+ {
+ "epoch": 69.69899519440804,
+ "grad_norm": 0.21791698038578033,
+ "learning_rate": 0.0006,
+ "loss": 3.4938859939575195,
+ "step": 5018
+ },
+ {
+ "epoch": 69.7129750982962,
+ "grad_norm": 0.2420767843723297,
+ "learning_rate": 0.0006,
+ "loss": 3.489206075668335,
+ "step": 5019
+ },
+ {
+ "epoch": 69.72695500218435,
+ "grad_norm": 0.22724151611328125,
+ "learning_rate": 0.0006,
+ "loss": 3.502804756164551,
+ "step": 5020
+ },
+ {
+ "epoch": 69.74093490607252,
+ "grad_norm": 0.23462660610675812,
+ "learning_rate": 0.0006,
+ "loss": 3.4947867393493652,
+ "step": 5021
+ },
+ {
+ "epoch": 69.75491480996068,
+ "grad_norm": 0.2545832097530365,
+ "learning_rate": 0.0006,
+ "loss": 3.500843048095703,
+ "step": 5022
+ },
+ {
+ "epoch": 69.76889471384884,
+ "grad_norm": 0.26692283153533936,
+ "learning_rate": 0.0006,
+ "loss": 3.5054852962493896,
+ "step": 5023
+ },
+ {
+ "epoch": 69.78287461773701,
+ "grad_norm": 0.22788259387016296,
+ "learning_rate": 0.0006,
+ "loss": 3.5261473655700684,
+ "step": 5024
+ },
+ {
+ "epoch": 69.79685452162516,
+ "grad_norm": 0.24453137814998627,
+ "learning_rate": 0.0006,
+ "loss": 3.5090155601501465,
+ "step": 5025
+ },
+ {
+ "epoch": 69.81083442551332,
+ "grad_norm": 0.27876126766204834,
+ "learning_rate": 0.0006,
+ "loss": 3.5091753005981445,
+ "step": 5026
+ },
+ {
+ "epoch": 69.82481432940149,
+ "grad_norm": 0.280249685049057,
+ "learning_rate": 0.0006,
+ "loss": 3.5129857063293457,
+ "step": 5027
+ },
+ {
+ "epoch": 69.83879423328965,
+ "grad_norm": 0.2260117530822754,
+ "learning_rate": 0.0006,
+ "loss": 3.5320475101470947,
+ "step": 5028
+ },
+ {
+ "epoch": 69.8527741371778,
+ "grad_norm": 0.2237965613603592,
+ "learning_rate": 0.0006,
+ "loss": 3.5061261653900146,
+ "step": 5029
+ },
+ {
+ "epoch": 69.86675404106597,
+ "grad_norm": 0.226779967546463,
+ "learning_rate": 0.0006,
+ "loss": 3.5076608657836914,
+ "step": 5030
+ },
+ {
+ "epoch": 69.88073394495413,
+ "grad_norm": 0.23626334965229034,
+ "learning_rate": 0.0006,
+ "loss": 3.50716495513916,
+ "step": 5031
+ },
+ {
+ "epoch": 69.89471384884229,
+ "grad_norm": 0.2639276385307312,
+ "learning_rate": 0.0006,
+ "loss": 3.5299901962280273,
+ "step": 5032
+ },
+ {
+ "epoch": 69.90869375273044,
+ "grad_norm": 0.23369482159614563,
+ "learning_rate": 0.0006,
+ "loss": 3.5289621353149414,
+ "step": 5033
+ },
+ {
+ "epoch": 69.92267365661861,
+ "grad_norm": 0.23041120171546936,
+ "learning_rate": 0.0006,
+ "loss": 3.5174753665924072,
+ "step": 5034
+ },
+ {
+ "epoch": 69.93665356050677,
+ "grad_norm": 0.21268987655639648,
+ "learning_rate": 0.0006,
+ "loss": 3.506927967071533,
+ "step": 5035
+ },
+ {
+ "epoch": 69.95063346439493,
+ "grad_norm": 0.22524571418762207,
+ "learning_rate": 0.0006,
+ "loss": 3.5054068565368652,
+ "step": 5036
+ },
+ {
+ "epoch": 69.9646133682831,
+ "grad_norm": 0.26068753004074097,
+ "learning_rate": 0.0006,
+ "loss": 3.502107620239258,
+ "step": 5037
+ },
+ {
+ "epoch": 69.97859327217125,
+ "grad_norm": 0.2473640888929367,
+ "learning_rate": 0.0006,
+ "loss": 3.4879817962646484,
+ "step": 5038
+ },
+ {
+ "epoch": 69.99257317605941,
+ "grad_norm": 0.23933477699756622,
+ "learning_rate": 0.0006,
+ "loss": 3.52518892288208,
+ "step": 5039
+ },
+ {
+ "epoch": 70.0,
+ "grad_norm": 0.26498401165008545,
+ "learning_rate": 0.0006,
+ "loss": 3.528074026107788,
+ "step": 5040
+ },
+ {
+ "epoch": 70.0,
+ "eval_loss": 3.9862265586853027,
+ "eval_runtime": 45.1344,
+ "eval_samples_per_second": 54.105,
+ "eval_steps_per_second": 3.39,
+ "step": 5040
+ },
+ {
+ "epoch": 70.01397990388816,
+ "grad_norm": 0.23711830377578735,
+ "learning_rate": 0.0006,
+ "loss": 3.4622411727905273,
+ "step": 5041
+ },
+ {
+ "epoch": 70.02795980777633,
+ "grad_norm": 0.25422438979148865,
+ "learning_rate": 0.0006,
+ "loss": 3.4546890258789062,
+ "step": 5042
+ },
+ {
+ "epoch": 70.04193971166448,
+ "grad_norm": 0.2520093619823456,
+ "learning_rate": 0.0006,
+ "loss": 3.4625046253204346,
+ "step": 5043
+ },
+ {
+ "epoch": 70.05591961555264,
+ "grad_norm": 0.23353877663612366,
+ "learning_rate": 0.0006,
+ "loss": 3.5090699195861816,
+ "step": 5044
+ },
+ {
+ "epoch": 70.06989951944081,
+ "grad_norm": 0.2775326669216156,
+ "learning_rate": 0.0006,
+ "loss": 3.4860758781433105,
+ "step": 5045
+ },
+ {
+ "epoch": 70.08387942332897,
+ "grad_norm": 0.297573447227478,
+ "learning_rate": 0.0006,
+ "loss": 3.5181596279144287,
+ "step": 5046
+ },
+ {
+ "epoch": 70.09785932721712,
+ "grad_norm": 0.29662513732910156,
+ "learning_rate": 0.0006,
+ "loss": 3.4715771675109863,
+ "step": 5047
+ },
+ {
+ "epoch": 70.1118392311053,
+ "grad_norm": 0.2619902193546295,
+ "learning_rate": 0.0006,
+ "loss": 3.430412769317627,
+ "step": 5048
+ },
+ {
+ "epoch": 70.12581913499345,
+ "grad_norm": 0.21740001440048218,
+ "learning_rate": 0.0006,
+ "loss": 3.473442792892456,
+ "step": 5049
+ },
+ {
+ "epoch": 70.1397990388816,
+ "grad_norm": 0.221281036734581,
+ "learning_rate": 0.0006,
+ "loss": 3.4651594161987305,
+ "step": 5050
+ },
+ {
+ "epoch": 70.15377894276976,
+ "grad_norm": 0.21638400852680206,
+ "learning_rate": 0.0006,
+ "loss": 3.475860118865967,
+ "step": 5051
+ },
+ {
+ "epoch": 70.16775884665793,
+ "grad_norm": 0.21825452148914337,
+ "learning_rate": 0.0006,
+ "loss": 3.467684268951416,
+ "step": 5052
+ },
+ {
+ "epoch": 70.18173875054609,
+ "grad_norm": 0.22535094618797302,
+ "learning_rate": 0.0006,
+ "loss": 3.4543721675872803,
+ "step": 5053
+ },
+ {
+ "epoch": 70.19571865443424,
+ "grad_norm": 0.22751732170581818,
+ "learning_rate": 0.0006,
+ "loss": 3.480132818222046,
+ "step": 5054
+ },
+ {
+ "epoch": 70.20969855832242,
+ "grad_norm": 0.21935929358005524,
+ "learning_rate": 0.0006,
+ "loss": 3.4883337020874023,
+ "step": 5055
+ },
+ {
+ "epoch": 70.22367846221057,
+ "grad_norm": 0.2164992392063141,
+ "learning_rate": 0.0006,
+ "loss": 3.4758238792419434,
+ "step": 5056
+ },
+ {
+ "epoch": 70.23765836609873,
+ "grad_norm": 0.2284509837627411,
+ "learning_rate": 0.0006,
+ "loss": 3.4639101028442383,
+ "step": 5057
+ },
+ {
+ "epoch": 70.2516382699869,
+ "grad_norm": 0.2616494297981262,
+ "learning_rate": 0.0006,
+ "loss": 3.4850382804870605,
+ "step": 5058
+ },
+ {
+ "epoch": 70.26561817387505,
+ "grad_norm": 0.25582870841026306,
+ "learning_rate": 0.0006,
+ "loss": 3.4912681579589844,
+ "step": 5059
+ },
+ {
+ "epoch": 70.27959807776321,
+ "grad_norm": 0.23707713186740875,
+ "learning_rate": 0.0006,
+ "loss": 3.493809700012207,
+ "step": 5060
+ },
+ {
+ "epoch": 70.29357798165138,
+ "grad_norm": 0.233265221118927,
+ "learning_rate": 0.0006,
+ "loss": 3.5143074989318848,
+ "step": 5061
+ },
+ {
+ "epoch": 70.30755788553954,
+ "grad_norm": 0.2607567012310028,
+ "learning_rate": 0.0006,
+ "loss": 3.5042223930358887,
+ "step": 5062
+ },
+ {
+ "epoch": 70.3215377894277,
+ "grad_norm": 0.21082724630832672,
+ "learning_rate": 0.0006,
+ "loss": 3.493569850921631,
+ "step": 5063
+ },
+ {
+ "epoch": 70.33551769331586,
+ "grad_norm": 0.2609533369541168,
+ "learning_rate": 0.0006,
+ "loss": 3.503533363342285,
+ "step": 5064
+ },
+ {
+ "epoch": 70.34949759720402,
+ "grad_norm": 0.2863939702510834,
+ "learning_rate": 0.0006,
+ "loss": 3.465226173400879,
+ "step": 5065
+ },
+ {
+ "epoch": 70.36347750109218,
+ "grad_norm": 0.26796457171440125,
+ "learning_rate": 0.0006,
+ "loss": 3.517176866531372,
+ "step": 5066
+ },
+ {
+ "epoch": 70.37745740498035,
+ "grad_norm": 0.2766019105911255,
+ "learning_rate": 0.0006,
+ "loss": 3.5126867294311523,
+ "step": 5067
+ },
+ {
+ "epoch": 70.3914373088685,
+ "grad_norm": 0.24560758471488953,
+ "learning_rate": 0.0006,
+ "loss": 3.515030860900879,
+ "step": 5068
+ },
+ {
+ "epoch": 70.40541721275666,
+ "grad_norm": 0.20993568003177643,
+ "learning_rate": 0.0006,
+ "loss": 3.4899773597717285,
+ "step": 5069
+ },
+ {
+ "epoch": 70.41939711664482,
+ "grad_norm": 0.20855914056301117,
+ "learning_rate": 0.0006,
+ "loss": 3.4906468391418457,
+ "step": 5070
+ },
+ {
+ "epoch": 70.43337702053299,
+ "grad_norm": 0.2210836559534073,
+ "learning_rate": 0.0006,
+ "loss": 3.482866048812866,
+ "step": 5071
+ },
+ {
+ "epoch": 70.44735692442114,
+ "grad_norm": 0.2210542857646942,
+ "learning_rate": 0.0006,
+ "loss": 3.501636028289795,
+ "step": 5072
+ },
+ {
+ "epoch": 70.4613368283093,
+ "grad_norm": 0.21207138895988464,
+ "learning_rate": 0.0006,
+ "loss": 3.519104242324829,
+ "step": 5073
+ },
+ {
+ "epoch": 70.47531673219747,
+ "grad_norm": 0.19901272654533386,
+ "learning_rate": 0.0006,
+ "loss": 3.486097574234009,
+ "step": 5074
+ },
+ {
+ "epoch": 70.48929663608563,
+ "grad_norm": 0.21536870300769806,
+ "learning_rate": 0.0006,
+ "loss": 3.476889133453369,
+ "step": 5075
+ },
+ {
+ "epoch": 70.50327653997378,
+ "grad_norm": 0.22002893686294556,
+ "learning_rate": 0.0006,
+ "loss": 3.5007381439208984,
+ "step": 5076
+ },
+ {
+ "epoch": 70.51725644386195,
+ "grad_norm": 0.20761331915855408,
+ "learning_rate": 0.0006,
+ "loss": 3.4693777561187744,
+ "step": 5077
+ },
+ {
+ "epoch": 70.53123634775011,
+ "grad_norm": 0.2145029455423355,
+ "learning_rate": 0.0006,
+ "loss": 3.438809871673584,
+ "step": 5078
+ },
+ {
+ "epoch": 70.54521625163827,
+ "grad_norm": 0.1961168795824051,
+ "learning_rate": 0.0006,
+ "loss": 3.4975242614746094,
+ "step": 5079
+ },
+ {
+ "epoch": 70.55919615552644,
+ "grad_norm": 0.20411522686481476,
+ "learning_rate": 0.0006,
+ "loss": 3.4908413887023926,
+ "step": 5080
+ },
+ {
+ "epoch": 70.57317605941459,
+ "grad_norm": 0.22646412253379822,
+ "learning_rate": 0.0006,
+ "loss": 3.4542629718780518,
+ "step": 5081
+ },
+ {
+ "epoch": 70.58715596330275,
+ "grad_norm": 0.2181357741355896,
+ "learning_rate": 0.0006,
+ "loss": 3.522963047027588,
+ "step": 5082
+ },
+ {
+ "epoch": 70.60113586719092,
+ "grad_norm": 0.23564083874225616,
+ "learning_rate": 0.0006,
+ "loss": 3.475222110748291,
+ "step": 5083
+ },
+ {
+ "epoch": 70.61511577107908,
+ "grad_norm": 0.22964410483837128,
+ "learning_rate": 0.0006,
+ "loss": 3.517993927001953,
+ "step": 5084
+ },
+ {
+ "epoch": 70.62909567496723,
+ "grad_norm": 0.20958925783634186,
+ "learning_rate": 0.0006,
+ "loss": 3.4651894569396973,
+ "step": 5085
+ },
+ {
+ "epoch": 70.6430755788554,
+ "grad_norm": 0.19693933427333832,
+ "learning_rate": 0.0006,
+ "loss": 3.4992640018463135,
+ "step": 5086
+ },
+ {
+ "epoch": 70.65705548274356,
+ "grad_norm": 0.22487083077430725,
+ "learning_rate": 0.0006,
+ "loss": 3.502739906311035,
+ "step": 5087
+ },
+ {
+ "epoch": 70.67103538663171,
+ "grad_norm": 0.22145701944828033,
+ "learning_rate": 0.0006,
+ "loss": 3.4855666160583496,
+ "step": 5088
+ },
+ {
+ "epoch": 70.68501529051987,
+ "grad_norm": 0.2145165652036667,
+ "learning_rate": 0.0006,
+ "loss": 3.5234193801879883,
+ "step": 5089
+ },
+ {
+ "epoch": 70.69899519440804,
+ "grad_norm": 0.2453656941652298,
+ "learning_rate": 0.0006,
+ "loss": 3.497983932495117,
+ "step": 5090
+ },
+ {
+ "epoch": 70.7129750982962,
+ "grad_norm": 0.2324638068675995,
+ "learning_rate": 0.0006,
+ "loss": 3.487849712371826,
+ "step": 5091
+ },
+ {
+ "epoch": 70.72695500218435,
+ "grad_norm": 0.2176654040813446,
+ "learning_rate": 0.0006,
+ "loss": 3.496427059173584,
+ "step": 5092
+ },
+ {
+ "epoch": 70.74093490607252,
+ "grad_norm": 0.20912162959575653,
+ "learning_rate": 0.0006,
+ "loss": 3.4953227043151855,
+ "step": 5093
+ },
+ {
+ "epoch": 70.75491480996068,
+ "grad_norm": 0.1988947093486786,
+ "learning_rate": 0.0006,
+ "loss": 3.4566853046417236,
+ "step": 5094
+ },
+ {
+ "epoch": 70.76889471384884,
+ "grad_norm": 0.23707804083824158,
+ "learning_rate": 0.0006,
+ "loss": 3.5447797775268555,
+ "step": 5095
+ },
+ {
+ "epoch": 70.78287461773701,
+ "grad_norm": 0.24296057224273682,
+ "learning_rate": 0.0006,
+ "loss": 3.5124454498291016,
+ "step": 5096
+ },
+ {
+ "epoch": 70.79685452162516,
+ "grad_norm": 0.21297545731067657,
+ "learning_rate": 0.0006,
+ "loss": 3.5096077919006348,
+ "step": 5097
+ },
+ {
+ "epoch": 70.81083442551332,
+ "grad_norm": 0.20642022788524628,
+ "learning_rate": 0.0006,
+ "loss": 3.5008912086486816,
+ "step": 5098
+ },
+ {
+ "epoch": 70.82481432940149,
+ "grad_norm": 0.2428225725889206,
+ "learning_rate": 0.0006,
+ "loss": 3.511782169342041,
+ "step": 5099
+ },
+ {
+ "epoch": 70.83879423328965,
+ "grad_norm": 0.2369006872177124,
+ "learning_rate": 0.0006,
+ "loss": 3.5016889572143555,
+ "step": 5100
+ },
+ {
+ "epoch": 70.8527741371778,
+ "grad_norm": 0.2299226075410843,
+ "learning_rate": 0.0006,
+ "loss": 3.5024492740631104,
+ "step": 5101
+ },
+ {
+ "epoch": 70.86675404106597,
+ "grad_norm": 0.2069583684206009,
+ "learning_rate": 0.0006,
+ "loss": 3.5401811599731445,
+ "step": 5102
+ },
+ {
+ "epoch": 70.88073394495413,
+ "grad_norm": 0.21548444032669067,
+ "learning_rate": 0.0006,
+ "loss": 3.506899833679199,
+ "step": 5103
+ },
+ {
+ "epoch": 70.89471384884229,
+ "grad_norm": 0.24152785539627075,
+ "learning_rate": 0.0006,
+ "loss": 3.517747163772583,
+ "step": 5104
+ },
+ {
+ "epoch": 70.90869375273044,
+ "grad_norm": 0.2301841676235199,
+ "learning_rate": 0.0006,
+ "loss": 3.4825563430786133,
+ "step": 5105
+ },
+ {
+ "epoch": 70.92267365661861,
+ "grad_norm": 0.20378732681274414,
+ "learning_rate": 0.0006,
+ "loss": 3.51491641998291,
+ "step": 5106
+ },
+ {
+ "epoch": 70.93665356050677,
+ "grad_norm": 0.23954246938228607,
+ "learning_rate": 0.0006,
+ "loss": 3.505157709121704,
+ "step": 5107
+ },
+ {
+ "epoch": 70.95063346439493,
+ "grad_norm": 0.24072174727916718,
+ "learning_rate": 0.0006,
+ "loss": 3.5006208419799805,
+ "step": 5108
+ },
+ {
+ "epoch": 70.9646133682831,
+ "grad_norm": 0.2187308371067047,
+ "learning_rate": 0.0006,
+ "loss": 3.5031535625457764,
+ "step": 5109
+ },
+ {
+ "epoch": 70.97859327217125,
+ "grad_norm": 0.22237645089626312,
+ "learning_rate": 0.0006,
+ "loss": 3.5143189430236816,
+ "step": 5110
+ },
+ {
+ "epoch": 70.99257317605941,
+ "grad_norm": 0.22169137001037598,
+ "learning_rate": 0.0006,
+ "loss": 3.4963934421539307,
+ "step": 5111
+ },
+ {
+ "epoch": 71.0,
+ "grad_norm": 0.257404088973999,
+ "learning_rate": 0.0006,
+ "loss": 3.5386219024658203,
+ "step": 5112
+ },
+ {
+ "epoch": 71.0,
+ "eval_loss": 3.9918019771575928,
+ "eval_runtime": 46.6377,
+ "eval_samples_per_second": 52.361,
+ "eval_steps_per_second": 3.281,
+ "step": 5112
+ },
+ {
+ "epoch": 71.01397990388816,
+ "grad_norm": 0.22763817012310028,
+ "learning_rate": 0.0006,
+ "loss": 3.4723024368286133,
+ "step": 5113
+ },
+ {
+ "epoch": 71.02795980777633,
+ "grad_norm": 0.22345447540283203,
+ "learning_rate": 0.0006,
+ "loss": 3.491352081298828,
+ "step": 5114
+ },
+ {
+ "epoch": 71.04193971166448,
+ "grad_norm": 0.28975343704223633,
+ "learning_rate": 0.0006,
+ "loss": 3.474012851715088,
+ "step": 5115
+ },
+ {
+ "epoch": 71.05591961555264,
+ "grad_norm": 0.34715282917022705,
+ "learning_rate": 0.0006,
+ "loss": 3.460543155670166,
+ "step": 5116
+ },
+ {
+ "epoch": 71.06989951944081,
+ "grad_norm": 0.3298324942588806,
+ "learning_rate": 0.0006,
+ "loss": 3.481487512588501,
+ "step": 5117
+ },
+ {
+ "epoch": 71.08387942332897,
+ "grad_norm": 0.25802168250083923,
+ "learning_rate": 0.0006,
+ "loss": 3.472047805786133,
+ "step": 5118
+ },
+ {
+ "epoch": 71.09785932721712,
+ "grad_norm": 0.27691733837127686,
+ "learning_rate": 0.0006,
+ "loss": 3.471902847290039,
+ "step": 5119
+ },
+ {
+ "epoch": 71.1118392311053,
+ "grad_norm": 0.3614637851715088,
+ "learning_rate": 0.0006,
+ "loss": 3.482367992401123,
+ "step": 5120
+ },
+ {
+ "epoch": 71.12581913499345,
+ "grad_norm": 0.3808763027191162,
+ "learning_rate": 0.0006,
+ "loss": 3.468003273010254,
+ "step": 5121
+ },
+ {
+ "epoch": 71.1397990388816,
+ "grad_norm": 0.30960485339164734,
+ "learning_rate": 0.0006,
+ "loss": 3.4756040573120117,
+ "step": 5122
+ },
+ {
+ "epoch": 71.15377894276976,
+ "grad_norm": 0.23345506191253662,
+ "learning_rate": 0.0006,
+ "loss": 3.4682583808898926,
+ "step": 5123
+ },
+ {
+ "epoch": 71.16775884665793,
+ "grad_norm": 0.23517020046710968,
+ "learning_rate": 0.0006,
+ "loss": 3.481360912322998,
+ "step": 5124
+ },
+ {
+ "epoch": 71.18173875054609,
+ "grad_norm": 0.23654034733772278,
+ "learning_rate": 0.0006,
+ "loss": 3.4833765029907227,
+ "step": 5125
+ },
+ {
+ "epoch": 71.19571865443424,
+ "grad_norm": 0.2085893303155899,
+ "learning_rate": 0.0006,
+ "loss": 3.486340045928955,
+ "step": 5126
+ },
+ {
+ "epoch": 71.20969855832242,
+ "grad_norm": 0.23823733627796173,
+ "learning_rate": 0.0006,
+ "loss": 3.477477550506592,
+ "step": 5127
+ },
+ {
+ "epoch": 71.22367846221057,
+ "grad_norm": 0.2195197194814682,
+ "learning_rate": 0.0006,
+ "loss": 3.4914462566375732,
+ "step": 5128
+ },
+ {
+ "epoch": 71.23765836609873,
+ "grad_norm": 0.20015183091163635,
+ "learning_rate": 0.0006,
+ "loss": 3.4731597900390625,
+ "step": 5129
+ },
+ {
+ "epoch": 71.2516382699869,
+ "grad_norm": 0.22865013778209686,
+ "learning_rate": 0.0006,
+ "loss": 3.474112033843994,
+ "step": 5130
+ },
+ {
+ "epoch": 71.26561817387505,
+ "grad_norm": 0.23216912150382996,
+ "learning_rate": 0.0006,
+ "loss": 3.4641566276550293,
+ "step": 5131
+ },
+ {
+ "epoch": 71.27959807776321,
+ "grad_norm": 0.229189932346344,
+ "learning_rate": 0.0006,
+ "loss": 3.499788999557495,
+ "step": 5132
+ },
+ {
+ "epoch": 71.29357798165138,
+ "grad_norm": 0.21727289259433746,
+ "learning_rate": 0.0006,
+ "loss": 3.4823837280273438,
+ "step": 5133
+ },
+ {
+ "epoch": 71.30755788553954,
+ "grad_norm": 0.21023842692375183,
+ "learning_rate": 0.0006,
+ "loss": 3.4864656925201416,
+ "step": 5134
+ },
+ {
+ "epoch": 71.3215377894277,
+ "grad_norm": 0.2303229570388794,
+ "learning_rate": 0.0006,
+ "loss": 3.4989194869995117,
+ "step": 5135
+ },
+ {
+ "epoch": 71.33551769331586,
+ "grad_norm": 0.2317735254764557,
+ "learning_rate": 0.0006,
+ "loss": 3.460954189300537,
+ "step": 5136
+ },
+ {
+ "epoch": 71.34949759720402,
+ "grad_norm": 0.22612634301185608,
+ "learning_rate": 0.0006,
+ "loss": 3.5102381706237793,
+ "step": 5137
+ },
+ {
+ "epoch": 71.36347750109218,
+ "grad_norm": 0.23815463483333588,
+ "learning_rate": 0.0006,
+ "loss": 3.446244239807129,
+ "step": 5138
+ },
+ {
+ "epoch": 71.37745740498035,
+ "grad_norm": 0.22914297878742218,
+ "learning_rate": 0.0006,
+ "loss": 3.4789650440216064,
+ "step": 5139
+ },
+ {
+ "epoch": 71.3914373088685,
+ "grad_norm": 0.22563296556472778,
+ "learning_rate": 0.0006,
+ "loss": 3.490419864654541,
+ "step": 5140
+ },
+ {
+ "epoch": 71.40541721275666,
+ "grad_norm": 0.21704672276973724,
+ "learning_rate": 0.0006,
+ "loss": 3.503981113433838,
+ "step": 5141
+ },
+ {
+ "epoch": 71.41939711664482,
+ "grad_norm": 0.2196325659751892,
+ "learning_rate": 0.0006,
+ "loss": 3.4878809452056885,
+ "step": 5142
+ },
+ {
+ "epoch": 71.43337702053299,
+ "grad_norm": 0.21130836009979248,
+ "learning_rate": 0.0006,
+ "loss": 3.4546194076538086,
+ "step": 5143
+ },
+ {
+ "epoch": 71.44735692442114,
+ "grad_norm": 0.21542105078697205,
+ "learning_rate": 0.0006,
+ "loss": 3.4721519947052,
+ "step": 5144
+ },
+ {
+ "epoch": 71.4613368283093,
+ "grad_norm": 0.22387142479419708,
+ "learning_rate": 0.0006,
+ "loss": 3.4667282104492188,
+ "step": 5145
+ },
+ {
+ "epoch": 71.47531673219747,
+ "grad_norm": 0.23259611427783966,
+ "learning_rate": 0.0006,
+ "loss": 3.467545986175537,
+ "step": 5146
+ },
+ {
+ "epoch": 71.48929663608563,
+ "grad_norm": 0.2771410644054413,
+ "learning_rate": 0.0006,
+ "loss": 3.4783425331115723,
+ "step": 5147
+ },
+ {
+ "epoch": 71.50327653997378,
+ "grad_norm": 0.29756635427474976,
+ "learning_rate": 0.0006,
+ "loss": 3.492600440979004,
+ "step": 5148
+ },
+ {
+ "epoch": 71.51725644386195,
+ "grad_norm": 0.26306024193763733,
+ "learning_rate": 0.0006,
+ "loss": 3.510770559310913,
+ "step": 5149
+ },
+ {
+ "epoch": 71.53123634775011,
+ "grad_norm": 0.20751827955245972,
+ "learning_rate": 0.0006,
+ "loss": 3.466935634613037,
+ "step": 5150
+ },
+ {
+ "epoch": 71.54521625163827,
+ "grad_norm": 0.21394366025924683,
+ "learning_rate": 0.0006,
+ "loss": 3.436068058013916,
+ "step": 5151
+ },
+ {
+ "epoch": 71.55919615552644,
+ "grad_norm": 0.25711846351623535,
+ "learning_rate": 0.0006,
+ "loss": 3.484564781188965,
+ "step": 5152
+ },
+ {
+ "epoch": 71.57317605941459,
+ "grad_norm": 0.29579317569732666,
+ "learning_rate": 0.0006,
+ "loss": 3.4905800819396973,
+ "step": 5153
+ },
+ {
+ "epoch": 71.58715596330275,
+ "grad_norm": 0.3033061921596527,
+ "learning_rate": 0.0006,
+ "loss": 3.508679151535034,
+ "step": 5154
+ },
+ {
+ "epoch": 71.60113586719092,
+ "grad_norm": 0.2520291805267334,
+ "learning_rate": 0.0006,
+ "loss": 3.5057215690612793,
+ "step": 5155
+ },
+ {
+ "epoch": 71.61511577107908,
+ "grad_norm": 0.226261705160141,
+ "learning_rate": 0.0006,
+ "loss": 3.5037670135498047,
+ "step": 5156
+ },
+ {
+ "epoch": 71.62909567496723,
+ "grad_norm": 0.20596027374267578,
+ "learning_rate": 0.0006,
+ "loss": 3.495021343231201,
+ "step": 5157
+ },
+ {
+ "epoch": 71.6430755788554,
+ "grad_norm": 0.20619751513004303,
+ "learning_rate": 0.0006,
+ "loss": 3.4958693981170654,
+ "step": 5158
+ },
+ {
+ "epoch": 71.65705548274356,
+ "grad_norm": 0.24510066211223602,
+ "learning_rate": 0.0006,
+ "loss": 3.5301260948181152,
+ "step": 5159
+ },
+ {
+ "epoch": 71.67103538663171,
+ "grad_norm": 0.26109805703163147,
+ "learning_rate": 0.0006,
+ "loss": 3.5022244453430176,
+ "step": 5160
+ },
+ {
+ "epoch": 71.68501529051987,
+ "grad_norm": 0.28911513090133667,
+ "learning_rate": 0.0006,
+ "loss": 3.488947868347168,
+ "step": 5161
+ },
+ {
+ "epoch": 71.69899519440804,
+ "grad_norm": 0.2741655111312866,
+ "learning_rate": 0.0006,
+ "loss": 3.4888229370117188,
+ "step": 5162
+ },
+ {
+ "epoch": 71.7129750982962,
+ "grad_norm": 0.2789880633354187,
+ "learning_rate": 0.0006,
+ "loss": 3.4911744594573975,
+ "step": 5163
+ },
+ {
+ "epoch": 71.72695500218435,
+ "grad_norm": 0.23872195184230804,
+ "learning_rate": 0.0006,
+ "loss": 3.5175111293792725,
+ "step": 5164
+ },
+ {
+ "epoch": 71.74093490607252,
+ "grad_norm": 0.23090124130249023,
+ "learning_rate": 0.0006,
+ "loss": 3.477285861968994,
+ "step": 5165
+ },
+ {
+ "epoch": 71.75491480996068,
+ "grad_norm": 0.25918251276016235,
+ "learning_rate": 0.0006,
+ "loss": 3.5374622344970703,
+ "step": 5166
+ },
+ {
+ "epoch": 71.76889471384884,
+ "grad_norm": 0.28394266963005066,
+ "learning_rate": 0.0006,
+ "loss": 3.505443572998047,
+ "step": 5167
+ },
+ {
+ "epoch": 71.78287461773701,
+ "grad_norm": 0.29756471514701843,
+ "learning_rate": 0.0006,
+ "loss": 3.4858479499816895,
+ "step": 5168
+ },
+ {
+ "epoch": 71.79685452162516,
+ "grad_norm": 0.2913147211074829,
+ "learning_rate": 0.0006,
+ "loss": 3.4602723121643066,
+ "step": 5169
+ },
+ {
+ "epoch": 71.81083442551332,
+ "grad_norm": 0.23923781514167786,
+ "learning_rate": 0.0006,
+ "loss": 3.4713358879089355,
+ "step": 5170
+ },
+ {
+ "epoch": 71.82481432940149,
+ "grad_norm": 0.23478655517101288,
+ "learning_rate": 0.0006,
+ "loss": 3.4848878383636475,
+ "step": 5171
+ },
+ {
+ "epoch": 71.83879423328965,
+ "grad_norm": 0.2668255865573883,
+ "learning_rate": 0.0006,
+ "loss": 3.507920742034912,
+ "step": 5172
+ },
+ {
+ "epoch": 71.8527741371778,
+ "grad_norm": 0.2818165719509125,
+ "learning_rate": 0.0006,
+ "loss": 3.5128116607666016,
+ "step": 5173
+ },
+ {
+ "epoch": 71.86675404106597,
+ "grad_norm": 0.22830909490585327,
+ "learning_rate": 0.0006,
+ "loss": 3.4789090156555176,
+ "step": 5174
+ },
+ {
+ "epoch": 71.88073394495413,
+ "grad_norm": 0.2291419357061386,
+ "learning_rate": 0.0006,
+ "loss": 3.4977774620056152,
+ "step": 5175
+ },
+ {
+ "epoch": 71.89471384884229,
+ "grad_norm": 0.22237083315849304,
+ "learning_rate": 0.0006,
+ "loss": 3.5563011169433594,
+ "step": 5176
+ },
+ {
+ "epoch": 71.90869375273044,
+ "grad_norm": 0.2287488579750061,
+ "learning_rate": 0.0006,
+ "loss": 3.515289783477783,
+ "step": 5177
+ },
+ {
+ "epoch": 71.92267365661861,
+ "grad_norm": 0.21992293000221252,
+ "learning_rate": 0.0006,
+ "loss": 3.5213077068328857,
+ "step": 5178
+ },
+ {
+ "epoch": 71.93665356050677,
+ "grad_norm": 0.21338967978954315,
+ "learning_rate": 0.0006,
+ "loss": 3.5168190002441406,
+ "step": 5179
+ },
+ {
+ "epoch": 71.95063346439493,
+ "grad_norm": 0.2198970913887024,
+ "learning_rate": 0.0006,
+ "loss": 3.517268180847168,
+ "step": 5180
+ },
+ {
+ "epoch": 71.9646133682831,
+ "grad_norm": 0.2309885025024414,
+ "learning_rate": 0.0006,
+ "loss": 3.5538675785064697,
+ "step": 5181
+ },
+ {
+ "epoch": 71.97859327217125,
+ "grad_norm": 0.23529282212257385,
+ "learning_rate": 0.0006,
+ "loss": 3.477951765060425,
+ "step": 5182
+ },
+ {
+ "epoch": 71.99257317605941,
+ "grad_norm": 0.2553477883338928,
+ "learning_rate": 0.0006,
+ "loss": 3.502894878387451,
+ "step": 5183
+ },
+ {
+ "epoch": 72.0,
+ "grad_norm": 0.2943936288356781,
+ "learning_rate": 0.0006,
+ "loss": 3.5049710273742676,
+ "step": 5184
+ },
+ {
+ "epoch": 72.0,
+ "eval_loss": 3.9860572814941406,
+ "eval_runtime": 46.9591,
+ "eval_samples_per_second": 52.003,
+ "eval_steps_per_second": 3.258,
+ "step": 5184
+ },
+ {
+ "epoch": 72.01397990388816,
+ "grad_norm": 0.25285470485687256,
+ "learning_rate": 0.0006,
+ "loss": 3.4515252113342285,
+ "step": 5185
+ },
+ {
+ "epoch": 72.02795980777633,
+ "grad_norm": 0.29215890169143677,
+ "learning_rate": 0.0006,
+ "loss": 3.4472908973693848,
+ "step": 5186
+ },
+ {
+ "epoch": 72.04193971166448,
+ "grad_norm": 0.34719136357307434,
+ "learning_rate": 0.0006,
+ "loss": 3.4762914180755615,
+ "step": 5187
+ },
+ {
+ "epoch": 72.05591961555264,
+ "grad_norm": 0.31336039304733276,
+ "learning_rate": 0.0006,
+ "loss": 3.4866042137145996,
+ "step": 5188
+ },
+ {
+ "epoch": 72.06989951944081,
+ "grad_norm": 0.2586875557899475,
+ "learning_rate": 0.0006,
+ "loss": 3.4296340942382812,
+ "step": 5189
+ },
+ {
+ "epoch": 72.08387942332897,
+ "grad_norm": 0.2677823603153229,
+ "learning_rate": 0.0006,
+ "loss": 3.442481517791748,
+ "step": 5190
+ },
+ {
+ "epoch": 72.09785932721712,
+ "grad_norm": 0.30640944838523865,
+ "learning_rate": 0.0006,
+ "loss": 3.435530424118042,
+ "step": 5191
+ },
+ {
+ "epoch": 72.1118392311053,
+ "grad_norm": 0.29822733998298645,
+ "learning_rate": 0.0006,
+ "loss": 3.4399731159210205,
+ "step": 5192
+ },
+ {
+ "epoch": 72.12581913499345,
+ "grad_norm": 0.25714683532714844,
+ "learning_rate": 0.0006,
+ "loss": 3.4679667949676514,
+ "step": 5193
+ },
+ {
+ "epoch": 72.1397990388816,
+ "grad_norm": 0.2347356528043747,
+ "learning_rate": 0.0006,
+ "loss": 3.4473838806152344,
+ "step": 5194
+ },
+ {
+ "epoch": 72.15377894276976,
+ "grad_norm": 0.23640039563179016,
+ "learning_rate": 0.0006,
+ "loss": 3.4716782569885254,
+ "step": 5195
+ },
+ {
+ "epoch": 72.16775884665793,
+ "grad_norm": 0.2285412698984146,
+ "learning_rate": 0.0006,
+ "loss": 3.4927384853363037,
+ "step": 5196
+ },
+ {
+ "epoch": 72.18173875054609,
+ "grad_norm": 0.2305673509836197,
+ "learning_rate": 0.0006,
+ "loss": 3.5064914226531982,
+ "step": 5197
+ },
+ {
+ "epoch": 72.19571865443424,
+ "grad_norm": 0.21706514060497284,
+ "learning_rate": 0.0006,
+ "loss": 3.4467828273773193,
+ "step": 5198
+ },
+ {
+ "epoch": 72.20969855832242,
+ "grad_norm": 0.21769501268863678,
+ "learning_rate": 0.0006,
+ "loss": 3.473309278488159,
+ "step": 5199
+ },
+ {
+ "epoch": 72.22367846221057,
+ "grad_norm": 0.23256097733974457,
+ "learning_rate": 0.0006,
+ "loss": 3.457587718963623,
+ "step": 5200
+ },
+ {
+ "epoch": 72.23765836609873,
+ "grad_norm": 0.23531964421272278,
+ "learning_rate": 0.0006,
+ "loss": 3.485863208770752,
+ "step": 5201
+ },
+ {
+ "epoch": 72.2516382699869,
+ "grad_norm": 0.2240941971540451,
+ "learning_rate": 0.0006,
+ "loss": 3.4677062034606934,
+ "step": 5202
+ },
+ {
+ "epoch": 72.26561817387505,
+ "grad_norm": 0.22390629351139069,
+ "learning_rate": 0.0006,
+ "loss": 3.5203280448913574,
+ "step": 5203
+ },
+ {
+ "epoch": 72.27959807776321,
+ "grad_norm": 0.21178147196769714,
+ "learning_rate": 0.0006,
+ "loss": 3.4824347496032715,
+ "step": 5204
+ },
+ {
+ "epoch": 72.29357798165138,
+ "grad_norm": 0.21738161146640778,
+ "learning_rate": 0.0006,
+ "loss": 3.4587113857269287,
+ "step": 5205
+ },
+ {
+ "epoch": 72.30755788553954,
+ "grad_norm": 0.21534697711467743,
+ "learning_rate": 0.0006,
+ "loss": 3.499147415161133,
+ "step": 5206
+ },
+ {
+ "epoch": 72.3215377894277,
+ "grad_norm": 0.22616741061210632,
+ "learning_rate": 0.0006,
+ "loss": 3.5025434494018555,
+ "step": 5207
+ },
+ {
+ "epoch": 72.33551769331586,
+ "grad_norm": 0.26784682273864746,
+ "learning_rate": 0.0006,
+ "loss": 3.4733633995056152,
+ "step": 5208
+ },
+ {
+ "epoch": 72.34949759720402,
+ "grad_norm": 0.2774837911128998,
+ "learning_rate": 0.0006,
+ "loss": 3.508082389831543,
+ "step": 5209
+ },
+ {
+ "epoch": 72.36347750109218,
+ "grad_norm": 0.28039997816085815,
+ "learning_rate": 0.0006,
+ "loss": 3.503880500793457,
+ "step": 5210
+ },
+ {
+ "epoch": 72.37745740498035,
+ "grad_norm": 0.2990040183067322,
+ "learning_rate": 0.0006,
+ "loss": 3.4885363578796387,
+ "step": 5211
+ },
+ {
+ "epoch": 72.3914373088685,
+ "grad_norm": 0.2857728600502014,
+ "learning_rate": 0.0006,
+ "loss": 3.4977049827575684,
+ "step": 5212
+ },
+ {
+ "epoch": 72.40541721275666,
+ "grad_norm": 0.2675400972366333,
+ "learning_rate": 0.0006,
+ "loss": 3.49003267288208,
+ "step": 5213
+ },
+ {
+ "epoch": 72.41939711664482,
+ "grad_norm": 0.258004367351532,
+ "learning_rate": 0.0006,
+ "loss": 3.4726967811584473,
+ "step": 5214
+ },
+ {
+ "epoch": 72.43337702053299,
+ "grad_norm": 0.20816923677921295,
+ "learning_rate": 0.0006,
+ "loss": 3.4798901081085205,
+ "step": 5215
+ },
+ {
+ "epoch": 72.44735692442114,
+ "grad_norm": 0.21589888632297516,
+ "learning_rate": 0.0006,
+ "loss": 3.4784836769104004,
+ "step": 5216
+ },
+ {
+ "epoch": 72.4613368283093,
+ "grad_norm": 0.22663359344005585,
+ "learning_rate": 0.0006,
+ "loss": 3.5278806686401367,
+ "step": 5217
+ },
+ {
+ "epoch": 72.47531673219747,
+ "grad_norm": 0.2165268212556839,
+ "learning_rate": 0.0006,
+ "loss": 3.5198988914489746,
+ "step": 5218
+ },
+ {
+ "epoch": 72.48929663608563,
+ "grad_norm": 0.22635547816753387,
+ "learning_rate": 0.0006,
+ "loss": 3.476203441619873,
+ "step": 5219
+ },
+ {
+ "epoch": 72.50327653997378,
+ "grad_norm": 0.23315833508968353,
+ "learning_rate": 0.0006,
+ "loss": 3.4451494216918945,
+ "step": 5220
+ },
+ {
+ "epoch": 72.51725644386195,
+ "grad_norm": 0.2262018620967865,
+ "learning_rate": 0.0006,
+ "loss": 3.5126566886901855,
+ "step": 5221
+ },
+ {
+ "epoch": 72.53123634775011,
+ "grad_norm": 0.2273683398962021,
+ "learning_rate": 0.0006,
+ "loss": 3.485413074493408,
+ "step": 5222
+ },
+ {
+ "epoch": 72.54521625163827,
+ "grad_norm": 0.25254759192466736,
+ "learning_rate": 0.0006,
+ "loss": 3.4997940063476562,
+ "step": 5223
+ },
+ {
+ "epoch": 72.55919615552644,
+ "grad_norm": 0.23467472195625305,
+ "learning_rate": 0.0006,
+ "loss": 3.4924259185791016,
+ "step": 5224
+ },
+ {
+ "epoch": 72.57317605941459,
+ "grad_norm": 0.20206208527088165,
+ "learning_rate": 0.0006,
+ "loss": 3.5010361671447754,
+ "step": 5225
+ },
+ {
+ "epoch": 72.58715596330275,
+ "grad_norm": 0.21526813507080078,
+ "learning_rate": 0.0006,
+ "loss": 3.4889681339263916,
+ "step": 5226
+ },
+ {
+ "epoch": 72.60113586719092,
+ "grad_norm": 0.212263822555542,
+ "learning_rate": 0.0006,
+ "loss": 3.467782497406006,
+ "step": 5227
+ },
+ {
+ "epoch": 72.61511577107908,
+ "grad_norm": 0.2126736342906952,
+ "learning_rate": 0.0006,
+ "loss": 3.470729112625122,
+ "step": 5228
+ },
+ {
+ "epoch": 72.62909567496723,
+ "grad_norm": 0.22448696196079254,
+ "learning_rate": 0.0006,
+ "loss": 3.4688234329223633,
+ "step": 5229
+ },
+ {
+ "epoch": 72.6430755788554,
+ "grad_norm": 0.2322869449853897,
+ "learning_rate": 0.0006,
+ "loss": 3.490103244781494,
+ "step": 5230
+ },
+ {
+ "epoch": 72.65705548274356,
+ "grad_norm": 0.220216765999794,
+ "learning_rate": 0.0006,
+ "loss": 3.474886894226074,
+ "step": 5231
+ },
+ {
+ "epoch": 72.67103538663171,
+ "grad_norm": 0.2191896289587021,
+ "learning_rate": 0.0006,
+ "loss": 3.4965224266052246,
+ "step": 5232
+ },
+ {
+ "epoch": 72.68501529051987,
+ "grad_norm": 0.2120339423418045,
+ "learning_rate": 0.0006,
+ "loss": 3.4710934162139893,
+ "step": 5233
+ },
+ {
+ "epoch": 72.69899519440804,
+ "grad_norm": 0.21517711877822876,
+ "learning_rate": 0.0006,
+ "loss": 3.4698405265808105,
+ "step": 5234
+ },
+ {
+ "epoch": 72.7129750982962,
+ "grad_norm": 0.22012922167778015,
+ "learning_rate": 0.0006,
+ "loss": 3.513930320739746,
+ "step": 5235
+ },
+ {
+ "epoch": 72.72695500218435,
+ "grad_norm": 0.19231025874614716,
+ "learning_rate": 0.0006,
+ "loss": 3.476353168487549,
+ "step": 5236
+ },
+ {
+ "epoch": 72.74093490607252,
+ "grad_norm": 0.19383855164051056,
+ "learning_rate": 0.0006,
+ "loss": 3.5002031326293945,
+ "step": 5237
+ },
+ {
+ "epoch": 72.75491480996068,
+ "grad_norm": 0.22001665830612183,
+ "learning_rate": 0.0006,
+ "loss": 3.5080370903015137,
+ "step": 5238
+ },
+ {
+ "epoch": 72.76889471384884,
+ "grad_norm": 0.27273863554000854,
+ "learning_rate": 0.0006,
+ "loss": 3.504277229309082,
+ "step": 5239
+ },
+ {
+ "epoch": 72.78287461773701,
+ "grad_norm": 0.29014623165130615,
+ "learning_rate": 0.0006,
+ "loss": 3.493192195892334,
+ "step": 5240
+ },
+ {
+ "epoch": 72.79685452162516,
+ "grad_norm": 0.23816372454166412,
+ "learning_rate": 0.0006,
+ "loss": 3.519443988800049,
+ "step": 5241
+ },
+ {
+ "epoch": 72.81083442551332,
+ "grad_norm": 0.24076248705387115,
+ "learning_rate": 0.0006,
+ "loss": 3.4935712814331055,
+ "step": 5242
+ },
+ {
+ "epoch": 72.82481432940149,
+ "grad_norm": 0.264731764793396,
+ "learning_rate": 0.0006,
+ "loss": 3.5004658699035645,
+ "step": 5243
+ },
+ {
+ "epoch": 72.83879423328965,
+ "grad_norm": 0.2939820885658264,
+ "learning_rate": 0.0006,
+ "loss": 3.5297188758850098,
+ "step": 5244
+ },
+ {
+ "epoch": 72.8527741371778,
+ "grad_norm": 0.2904265522956848,
+ "learning_rate": 0.0006,
+ "loss": 3.496081829071045,
+ "step": 5245
+ },
+ {
+ "epoch": 72.86675404106597,
+ "grad_norm": 0.23428429663181305,
+ "learning_rate": 0.0006,
+ "loss": 3.493727684020996,
+ "step": 5246
+ },
+ {
+ "epoch": 72.88073394495413,
+ "grad_norm": 0.22780542075634003,
+ "learning_rate": 0.0006,
+ "loss": 3.523094654083252,
+ "step": 5247
+ },
+ {
+ "epoch": 72.89471384884229,
+ "grad_norm": 0.2745443284511566,
+ "learning_rate": 0.0006,
+ "loss": 3.497293472290039,
+ "step": 5248
+ },
+ {
+ "epoch": 72.90869375273044,
+ "grad_norm": 0.2678476870059967,
+ "learning_rate": 0.0006,
+ "loss": 3.5067732334136963,
+ "step": 5249
+ },
+ {
+ "epoch": 72.92267365661861,
+ "grad_norm": 0.2085755169391632,
+ "learning_rate": 0.0006,
+ "loss": 3.4695444107055664,
+ "step": 5250
+ },
+ {
+ "epoch": 72.93665356050677,
+ "grad_norm": 0.21488192677497864,
+ "learning_rate": 0.0006,
+ "loss": 3.522829055786133,
+ "step": 5251
+ },
+ {
+ "epoch": 72.95063346439493,
+ "grad_norm": 0.21374237537384033,
+ "learning_rate": 0.0006,
+ "loss": 3.5045344829559326,
+ "step": 5252
+ },
+ {
+ "epoch": 72.9646133682831,
+ "grad_norm": 0.23072510957717896,
+ "learning_rate": 0.0006,
+ "loss": 3.474557399749756,
+ "step": 5253
+ },
+ {
+ "epoch": 72.97859327217125,
+ "grad_norm": 0.22491991519927979,
+ "learning_rate": 0.0006,
+ "loss": 3.489443778991699,
+ "step": 5254
+ },
+ {
+ "epoch": 72.99257317605941,
+ "grad_norm": 0.22613948583602905,
+ "learning_rate": 0.0006,
+ "loss": 3.5056793689727783,
+ "step": 5255
+ },
+ {
+ "epoch": 73.0,
+ "grad_norm": 0.23435193300247192,
+ "learning_rate": 0.0006,
+ "loss": 3.520559787750244,
+ "step": 5256
+ },
+ {
+ "epoch": 73.0,
+ "eval_loss": 3.982722282409668,
+ "eval_runtime": 46.464,
+ "eval_samples_per_second": 52.557,
+ "eval_steps_per_second": 3.293,
+ "step": 5256
+ },
+ {
+ "epoch": 73.01397990388816,
+ "grad_norm": 0.22881661355495453,
+ "learning_rate": 0.0006,
+ "loss": 3.468254566192627,
+ "step": 5257
+ },
+ {
+ "epoch": 73.02795980777633,
+ "grad_norm": 0.2834230959415436,
+ "learning_rate": 0.0006,
+ "loss": 3.4606356620788574,
+ "step": 5258
+ },
+ {
+ "epoch": 73.04193971166448,
+ "grad_norm": 0.319560170173645,
+ "learning_rate": 0.0006,
+ "loss": 3.475505828857422,
+ "step": 5259
+ },
+ {
+ "epoch": 73.05591961555264,
+ "grad_norm": 0.32880520820617676,
+ "learning_rate": 0.0006,
+ "loss": 3.493833541870117,
+ "step": 5260
+ },
+ {
+ "epoch": 73.06989951944081,
+ "grad_norm": 0.2588718831539154,
+ "learning_rate": 0.0006,
+ "loss": 3.469942092895508,
+ "step": 5261
+ },
+ {
+ "epoch": 73.08387942332897,
+ "grad_norm": 0.2732829749584198,
+ "learning_rate": 0.0006,
+ "loss": 3.4531373977661133,
+ "step": 5262
+ },
+ {
+ "epoch": 73.09785932721712,
+ "grad_norm": 0.320829302072525,
+ "learning_rate": 0.0006,
+ "loss": 3.492429256439209,
+ "step": 5263
+ },
+ {
+ "epoch": 73.1118392311053,
+ "grad_norm": 0.24258096516132355,
+ "learning_rate": 0.0006,
+ "loss": 3.4776196479797363,
+ "step": 5264
+ },
+ {
+ "epoch": 73.12581913499345,
+ "grad_norm": 0.24697262048721313,
+ "learning_rate": 0.0006,
+ "loss": 3.4624526500701904,
+ "step": 5265
+ },
+ {
+ "epoch": 73.1397990388816,
+ "grad_norm": 0.2629360258579254,
+ "learning_rate": 0.0006,
+ "loss": 3.4608631134033203,
+ "step": 5266
+ },
+ {
+ "epoch": 73.15377894276976,
+ "grad_norm": 0.27060654759407043,
+ "learning_rate": 0.0006,
+ "loss": 3.4834189414978027,
+ "step": 5267
+ },
+ {
+ "epoch": 73.16775884665793,
+ "grad_norm": 0.246307834982872,
+ "learning_rate": 0.0006,
+ "loss": 3.477510929107666,
+ "step": 5268
+ },
+ {
+ "epoch": 73.18173875054609,
+ "grad_norm": 0.2469998300075531,
+ "learning_rate": 0.0006,
+ "loss": 3.4855780601501465,
+ "step": 5269
+ },
+ {
+ "epoch": 73.19571865443424,
+ "grad_norm": 0.24349135160446167,
+ "learning_rate": 0.0006,
+ "loss": 3.468322277069092,
+ "step": 5270
+ },
+ {
+ "epoch": 73.20969855832242,
+ "grad_norm": 0.22562023997306824,
+ "learning_rate": 0.0006,
+ "loss": 3.4036335945129395,
+ "step": 5271
+ },
+ {
+ "epoch": 73.22367846221057,
+ "grad_norm": 0.2311064749956131,
+ "learning_rate": 0.0006,
+ "loss": 3.4399924278259277,
+ "step": 5272
+ },
+ {
+ "epoch": 73.23765836609873,
+ "grad_norm": 0.21685704588890076,
+ "learning_rate": 0.0006,
+ "loss": 3.476149797439575,
+ "step": 5273
+ },
+ {
+ "epoch": 73.2516382699869,
+ "grad_norm": 0.22484169900417328,
+ "learning_rate": 0.0006,
+ "loss": 3.475130081176758,
+ "step": 5274
+ },
+ {
+ "epoch": 73.26561817387505,
+ "grad_norm": 0.22753819823265076,
+ "learning_rate": 0.0006,
+ "loss": 3.5259978771209717,
+ "step": 5275
+ },
+ {
+ "epoch": 73.27959807776321,
+ "grad_norm": 0.23297421634197235,
+ "learning_rate": 0.0006,
+ "loss": 3.4897689819335938,
+ "step": 5276
+ },
+ {
+ "epoch": 73.29357798165138,
+ "grad_norm": 0.22227609157562256,
+ "learning_rate": 0.0006,
+ "loss": 3.4681925773620605,
+ "step": 5277
+ },
+ {
+ "epoch": 73.30755788553954,
+ "grad_norm": 0.23390381038188934,
+ "learning_rate": 0.0006,
+ "loss": 3.4816267490386963,
+ "step": 5278
+ },
+ {
+ "epoch": 73.3215377894277,
+ "grad_norm": 0.25036972761154175,
+ "learning_rate": 0.0006,
+ "loss": 3.4513161182403564,
+ "step": 5279
+ },
+ {
+ "epoch": 73.33551769331586,
+ "grad_norm": 0.22425831854343414,
+ "learning_rate": 0.0006,
+ "loss": 3.504206657409668,
+ "step": 5280
+ },
+ {
+ "epoch": 73.34949759720402,
+ "grad_norm": 0.20987127721309662,
+ "learning_rate": 0.0006,
+ "loss": 3.463526487350464,
+ "step": 5281
+ },
+ {
+ "epoch": 73.36347750109218,
+ "grad_norm": 0.22594138979911804,
+ "learning_rate": 0.0006,
+ "loss": 3.467395067214966,
+ "step": 5282
+ },
+ {
+ "epoch": 73.37745740498035,
+ "grad_norm": 0.2819368243217468,
+ "learning_rate": 0.0006,
+ "loss": 3.458601236343384,
+ "step": 5283
+ },
+ {
+ "epoch": 73.3914373088685,
+ "grad_norm": 0.28703081607818604,
+ "learning_rate": 0.0006,
+ "loss": 3.489081382751465,
+ "step": 5284
+ },
+ {
+ "epoch": 73.40541721275666,
+ "grad_norm": 0.22495481371879578,
+ "learning_rate": 0.0006,
+ "loss": 3.4584622383117676,
+ "step": 5285
+ },
+ {
+ "epoch": 73.41939711664482,
+ "grad_norm": 0.26278403401374817,
+ "learning_rate": 0.0006,
+ "loss": 3.4610750675201416,
+ "step": 5286
+ },
+ {
+ "epoch": 73.43337702053299,
+ "grad_norm": 0.2335882931947708,
+ "learning_rate": 0.0006,
+ "loss": 3.4642205238342285,
+ "step": 5287
+ },
+ {
+ "epoch": 73.44735692442114,
+ "grad_norm": 0.23634950816631317,
+ "learning_rate": 0.0006,
+ "loss": 3.4628195762634277,
+ "step": 5288
+ },
+ {
+ "epoch": 73.4613368283093,
+ "grad_norm": 0.2428942620754242,
+ "learning_rate": 0.0006,
+ "loss": 3.486786365509033,
+ "step": 5289
+ },
+ {
+ "epoch": 73.47531673219747,
+ "grad_norm": 0.2235412299633026,
+ "learning_rate": 0.0006,
+ "loss": 3.4655373096466064,
+ "step": 5290
+ },
+ {
+ "epoch": 73.48929663608563,
+ "grad_norm": 0.22825124859809875,
+ "learning_rate": 0.0006,
+ "loss": 3.519115924835205,
+ "step": 5291
+ },
+ {
+ "epoch": 73.50327653997378,
+ "grad_norm": 0.22555601596832275,
+ "learning_rate": 0.0006,
+ "loss": 3.4672327041625977,
+ "step": 5292
+ },
+ {
+ "epoch": 73.51725644386195,
+ "grad_norm": 0.21196876466274261,
+ "learning_rate": 0.0006,
+ "loss": 3.477919101715088,
+ "step": 5293
+ },
+ {
+ "epoch": 73.53123634775011,
+ "grad_norm": 0.21254780888557434,
+ "learning_rate": 0.0006,
+ "loss": 3.493739604949951,
+ "step": 5294
+ },
+ {
+ "epoch": 73.54521625163827,
+ "grad_norm": 0.22243253886699677,
+ "learning_rate": 0.0006,
+ "loss": 3.5028891563415527,
+ "step": 5295
+ },
+ {
+ "epoch": 73.55919615552644,
+ "grad_norm": 0.1982688158750534,
+ "learning_rate": 0.0006,
+ "loss": 3.490211009979248,
+ "step": 5296
+ },
+ {
+ "epoch": 73.57317605941459,
+ "grad_norm": 0.19433127343654633,
+ "learning_rate": 0.0006,
+ "loss": 3.5000174045562744,
+ "step": 5297
+ },
+ {
+ "epoch": 73.58715596330275,
+ "grad_norm": 0.19470061361789703,
+ "learning_rate": 0.0006,
+ "loss": 3.4725089073181152,
+ "step": 5298
+ },
+ {
+ "epoch": 73.60113586719092,
+ "grad_norm": 0.20479093492031097,
+ "learning_rate": 0.0006,
+ "loss": 3.473649501800537,
+ "step": 5299
+ },
+ {
+ "epoch": 73.61511577107908,
+ "grad_norm": 0.22485226392745972,
+ "learning_rate": 0.0006,
+ "loss": 3.5234975814819336,
+ "step": 5300
+ },
+ {
+ "epoch": 73.62909567496723,
+ "grad_norm": 0.2219000905752182,
+ "learning_rate": 0.0006,
+ "loss": 3.483283281326294,
+ "step": 5301
+ },
+ {
+ "epoch": 73.6430755788554,
+ "grad_norm": 0.25735849142074585,
+ "learning_rate": 0.0006,
+ "loss": 3.4863831996917725,
+ "step": 5302
+ },
+ {
+ "epoch": 73.65705548274356,
+ "grad_norm": 0.2822291851043701,
+ "learning_rate": 0.0006,
+ "loss": 3.4864425659179688,
+ "step": 5303
+ },
+ {
+ "epoch": 73.67103538663171,
+ "grad_norm": 0.2965867817401886,
+ "learning_rate": 0.0006,
+ "loss": 3.487774133682251,
+ "step": 5304
+ },
+ {
+ "epoch": 73.68501529051987,
+ "grad_norm": 0.2446807473897934,
+ "learning_rate": 0.0006,
+ "loss": 3.485553741455078,
+ "step": 5305
+ },
+ {
+ "epoch": 73.69899519440804,
+ "grad_norm": 0.2298526167869568,
+ "learning_rate": 0.0006,
+ "loss": 3.4513039588928223,
+ "step": 5306
+ },
+ {
+ "epoch": 73.7129750982962,
+ "grad_norm": 0.24967409670352936,
+ "learning_rate": 0.0006,
+ "loss": 3.4974756240844727,
+ "step": 5307
+ },
+ {
+ "epoch": 73.72695500218435,
+ "grad_norm": 0.22180770337581635,
+ "learning_rate": 0.0006,
+ "loss": 3.501955509185791,
+ "step": 5308
+ },
+ {
+ "epoch": 73.74093490607252,
+ "grad_norm": 0.21294254064559937,
+ "learning_rate": 0.0006,
+ "loss": 3.52626371383667,
+ "step": 5309
+ },
+ {
+ "epoch": 73.75491480996068,
+ "grad_norm": 0.23970918357372284,
+ "learning_rate": 0.0006,
+ "loss": 3.479355812072754,
+ "step": 5310
+ },
+ {
+ "epoch": 73.76889471384884,
+ "grad_norm": 0.22978267073631287,
+ "learning_rate": 0.0006,
+ "loss": 3.4972357749938965,
+ "step": 5311
+ },
+ {
+ "epoch": 73.78287461773701,
+ "grad_norm": 0.22393731772899628,
+ "learning_rate": 0.0006,
+ "loss": 3.499718189239502,
+ "step": 5312
+ },
+ {
+ "epoch": 73.79685452162516,
+ "grad_norm": 0.2265646904706955,
+ "learning_rate": 0.0006,
+ "loss": 3.5240416526794434,
+ "step": 5313
+ },
+ {
+ "epoch": 73.81083442551332,
+ "grad_norm": 0.23060904443264008,
+ "learning_rate": 0.0006,
+ "loss": 3.4981179237365723,
+ "step": 5314
+ },
+ {
+ "epoch": 73.82481432940149,
+ "grad_norm": 0.2358054369688034,
+ "learning_rate": 0.0006,
+ "loss": 3.4671754837036133,
+ "step": 5315
+ },
+ {
+ "epoch": 73.83879423328965,
+ "grad_norm": 0.22466880083084106,
+ "learning_rate": 0.0006,
+ "loss": 3.5178170204162598,
+ "step": 5316
+ },
+ {
+ "epoch": 73.8527741371778,
+ "grad_norm": 0.24523386359214783,
+ "learning_rate": 0.0006,
+ "loss": 3.5059657096862793,
+ "step": 5317
+ },
+ {
+ "epoch": 73.86675404106597,
+ "grad_norm": 0.24812379479408264,
+ "learning_rate": 0.0006,
+ "loss": 3.4979734420776367,
+ "step": 5318
+ },
+ {
+ "epoch": 73.88073394495413,
+ "grad_norm": 0.2210223525762558,
+ "learning_rate": 0.0006,
+ "loss": 3.5158674716949463,
+ "step": 5319
+ },
+ {
+ "epoch": 73.89471384884229,
+ "grad_norm": 0.23374506831169128,
+ "learning_rate": 0.0006,
+ "loss": 3.4730381965637207,
+ "step": 5320
+ },
+ {
+ "epoch": 73.90869375273044,
+ "grad_norm": 0.2209903597831726,
+ "learning_rate": 0.0006,
+ "loss": 3.5152671337127686,
+ "step": 5321
+ },
+ {
+ "epoch": 73.92267365661861,
+ "grad_norm": 0.19783467054367065,
+ "learning_rate": 0.0006,
+ "loss": 3.508627414703369,
+ "step": 5322
+ },
+ {
+ "epoch": 73.93665356050677,
+ "grad_norm": 0.20683151483535767,
+ "learning_rate": 0.0006,
+ "loss": 3.5041322708129883,
+ "step": 5323
+ },
+ {
+ "epoch": 73.95063346439493,
+ "grad_norm": 0.20111984014511108,
+ "learning_rate": 0.0006,
+ "loss": 3.4618184566497803,
+ "step": 5324
+ },
+ {
+ "epoch": 73.9646133682831,
+ "grad_norm": 0.22296449542045593,
+ "learning_rate": 0.0006,
+ "loss": 3.4695611000061035,
+ "step": 5325
+ },
+ {
+ "epoch": 73.97859327217125,
+ "grad_norm": 0.22317543625831604,
+ "learning_rate": 0.0006,
+ "loss": 3.497115135192871,
+ "step": 5326
+ },
+ {
+ "epoch": 73.99257317605941,
+ "grad_norm": 0.19182799756526947,
+ "learning_rate": 0.0006,
+ "loss": 3.502279758453369,
+ "step": 5327
+ },
+ {
+ "epoch": 74.0,
+ "grad_norm": 0.2484123259782791,
+ "learning_rate": 0.0006,
+ "loss": 3.4998650550842285,
+ "step": 5328
+ },
+ {
+ "epoch": 74.0,
+ "eval_loss": 3.977353572845459,
+ "eval_runtime": 46.9154,
+ "eval_samples_per_second": 52.051,
+ "eval_steps_per_second": 3.261,
+ "step": 5328
+ },
+ {
+ "epoch": 74.01397990388816,
+ "grad_norm": 0.2512458860874176,
+ "learning_rate": 0.0006,
+ "loss": 3.454616069793701,
+ "step": 5329
+ },
+ {
+ "epoch": 74.02795980777633,
+ "grad_norm": 0.2781964838504791,
+ "learning_rate": 0.0006,
+ "loss": 3.4444780349731445,
+ "step": 5330
+ },
+ {
+ "epoch": 74.04193971166448,
+ "grad_norm": 0.3014058470726013,
+ "learning_rate": 0.0006,
+ "loss": 3.4059829711914062,
+ "step": 5331
+ },
+ {
+ "epoch": 74.05591961555264,
+ "grad_norm": 0.28226929903030396,
+ "learning_rate": 0.0006,
+ "loss": 3.474538803100586,
+ "step": 5332
+ },
+ {
+ "epoch": 74.06989951944081,
+ "grad_norm": 0.22589807212352753,
+ "learning_rate": 0.0006,
+ "loss": 3.4484004974365234,
+ "step": 5333
+ },
+ {
+ "epoch": 74.08387942332897,
+ "grad_norm": 0.2317565679550171,
+ "learning_rate": 0.0006,
+ "loss": 3.4559502601623535,
+ "step": 5334
+ },
+ {
+ "epoch": 74.09785932721712,
+ "grad_norm": 0.2484085112810135,
+ "learning_rate": 0.0006,
+ "loss": 3.4723763465881348,
+ "step": 5335
+ },
+ {
+ "epoch": 74.1118392311053,
+ "grad_norm": 0.24313412606716156,
+ "learning_rate": 0.0006,
+ "loss": 3.4581704139709473,
+ "step": 5336
+ },
+ {
+ "epoch": 74.12581913499345,
+ "grad_norm": 0.2317453771829605,
+ "learning_rate": 0.0006,
+ "loss": 3.4556710720062256,
+ "step": 5337
+ },
+ {
+ "epoch": 74.1397990388816,
+ "grad_norm": 0.2423294484615326,
+ "learning_rate": 0.0006,
+ "loss": 3.450899124145508,
+ "step": 5338
+ },
+ {
+ "epoch": 74.15377894276976,
+ "grad_norm": 0.24861979484558105,
+ "learning_rate": 0.0006,
+ "loss": 3.4524154663085938,
+ "step": 5339
+ },
+ {
+ "epoch": 74.16775884665793,
+ "grad_norm": 0.27226537466049194,
+ "learning_rate": 0.0006,
+ "loss": 3.4728293418884277,
+ "step": 5340
+ },
+ {
+ "epoch": 74.18173875054609,
+ "grad_norm": 0.29282820224761963,
+ "learning_rate": 0.0006,
+ "loss": 3.482450008392334,
+ "step": 5341
+ },
+ {
+ "epoch": 74.19571865443424,
+ "grad_norm": 0.2666662931442261,
+ "learning_rate": 0.0006,
+ "loss": 3.4708619117736816,
+ "step": 5342
+ },
+ {
+ "epoch": 74.20969855832242,
+ "grad_norm": 0.22029168903827667,
+ "learning_rate": 0.0006,
+ "loss": 3.4592952728271484,
+ "step": 5343
+ },
+ {
+ "epoch": 74.22367846221057,
+ "grad_norm": 0.21203964948654175,
+ "learning_rate": 0.0006,
+ "loss": 3.4983129501342773,
+ "step": 5344
+ },
+ {
+ "epoch": 74.23765836609873,
+ "grad_norm": 0.24254444241523743,
+ "learning_rate": 0.0006,
+ "loss": 3.4695663452148438,
+ "step": 5345
+ },
+ {
+ "epoch": 74.2516382699869,
+ "grad_norm": 0.28514090180397034,
+ "learning_rate": 0.0006,
+ "loss": 3.501779556274414,
+ "step": 5346
+ },
+ {
+ "epoch": 74.26561817387505,
+ "grad_norm": 0.27082809805870056,
+ "learning_rate": 0.0006,
+ "loss": 3.4754765033721924,
+ "step": 5347
+ },
+ {
+ "epoch": 74.27959807776321,
+ "grad_norm": 0.21144570410251617,
+ "learning_rate": 0.0006,
+ "loss": 3.481623649597168,
+ "step": 5348
+ },
+ {
+ "epoch": 74.29357798165138,
+ "grad_norm": 0.23012803494930267,
+ "learning_rate": 0.0006,
+ "loss": 3.478872776031494,
+ "step": 5349
+ },
+ {
+ "epoch": 74.30755788553954,
+ "grad_norm": 0.2497818022966385,
+ "learning_rate": 0.0006,
+ "loss": 3.465214252471924,
+ "step": 5350
+ },
+ {
+ "epoch": 74.3215377894277,
+ "grad_norm": 0.27346086502075195,
+ "learning_rate": 0.0006,
+ "loss": 3.4749603271484375,
+ "step": 5351
+ },
+ {
+ "epoch": 74.33551769331586,
+ "grad_norm": 0.24193984270095825,
+ "learning_rate": 0.0006,
+ "loss": 3.4898180961608887,
+ "step": 5352
+ },
+ {
+ "epoch": 74.34949759720402,
+ "grad_norm": 0.2432994395494461,
+ "learning_rate": 0.0006,
+ "loss": 3.478156089782715,
+ "step": 5353
+ },
+ {
+ "epoch": 74.36347750109218,
+ "grad_norm": 0.331503689289093,
+ "learning_rate": 0.0006,
+ "loss": 3.496690273284912,
+ "step": 5354
+ },
+ {
+ "epoch": 74.37745740498035,
+ "grad_norm": 0.27467086911201477,
+ "learning_rate": 0.0006,
+ "loss": 3.472379684448242,
+ "step": 5355
+ },
+ {
+ "epoch": 74.3914373088685,
+ "grad_norm": 0.23563839495182037,
+ "learning_rate": 0.0006,
+ "loss": 3.4963388442993164,
+ "step": 5356
+ },
+ {
+ "epoch": 74.40541721275666,
+ "grad_norm": 0.23829393088817596,
+ "learning_rate": 0.0006,
+ "loss": 3.473438262939453,
+ "step": 5357
+ },
+ {
+ "epoch": 74.41939711664482,
+ "grad_norm": 0.28113624453544617,
+ "learning_rate": 0.0006,
+ "loss": 3.481104612350464,
+ "step": 5358
+ },
+ {
+ "epoch": 74.43337702053299,
+ "grad_norm": 0.29099389910697937,
+ "learning_rate": 0.0006,
+ "loss": 3.497255325317383,
+ "step": 5359
+ },
+ {
+ "epoch": 74.44735692442114,
+ "grad_norm": 0.24911890923976898,
+ "learning_rate": 0.0006,
+ "loss": 3.4622669219970703,
+ "step": 5360
+ },
+ {
+ "epoch": 74.4613368283093,
+ "grad_norm": 0.2488860785961151,
+ "learning_rate": 0.0006,
+ "loss": 3.4906888008117676,
+ "step": 5361
+ },
+ {
+ "epoch": 74.47531673219747,
+ "grad_norm": 0.27969980239868164,
+ "learning_rate": 0.0006,
+ "loss": 3.495727300643921,
+ "step": 5362
+ },
+ {
+ "epoch": 74.48929663608563,
+ "grad_norm": 0.2811402380466461,
+ "learning_rate": 0.0006,
+ "loss": 3.4817042350769043,
+ "step": 5363
+ },
+ {
+ "epoch": 74.50327653997378,
+ "grad_norm": 0.25717079639434814,
+ "learning_rate": 0.0006,
+ "loss": 3.4818572998046875,
+ "step": 5364
+ },
+ {
+ "epoch": 74.51725644386195,
+ "grad_norm": 0.2527103126049042,
+ "learning_rate": 0.0006,
+ "loss": 3.494536876678467,
+ "step": 5365
+ },
+ {
+ "epoch": 74.53123634775011,
+ "grad_norm": 0.24561476707458496,
+ "learning_rate": 0.0006,
+ "loss": 3.4908809661865234,
+ "step": 5366
+ },
+ {
+ "epoch": 74.54521625163827,
+ "grad_norm": 0.2540345788002014,
+ "learning_rate": 0.0006,
+ "loss": 3.477179765701294,
+ "step": 5367
+ },
+ {
+ "epoch": 74.55919615552644,
+ "grad_norm": 0.2220340371131897,
+ "learning_rate": 0.0006,
+ "loss": 3.4914112091064453,
+ "step": 5368
+ },
+ {
+ "epoch": 74.57317605941459,
+ "grad_norm": 0.21146169304847717,
+ "learning_rate": 0.0006,
+ "loss": 3.457792043685913,
+ "step": 5369
+ },
+ {
+ "epoch": 74.58715596330275,
+ "grad_norm": 0.2657042443752289,
+ "learning_rate": 0.0006,
+ "loss": 3.4626612663269043,
+ "step": 5370
+ },
+ {
+ "epoch": 74.60113586719092,
+ "grad_norm": 0.2684510350227356,
+ "learning_rate": 0.0006,
+ "loss": 3.472271203994751,
+ "step": 5371
+ },
+ {
+ "epoch": 74.61511577107908,
+ "grad_norm": 0.22635070979595184,
+ "learning_rate": 0.0006,
+ "loss": 3.4719159603118896,
+ "step": 5372
+ },
+ {
+ "epoch": 74.62909567496723,
+ "grad_norm": 0.22514945268630981,
+ "learning_rate": 0.0006,
+ "loss": 3.4851810932159424,
+ "step": 5373
+ },
+ {
+ "epoch": 74.6430755788554,
+ "grad_norm": 0.24570822715759277,
+ "learning_rate": 0.0006,
+ "loss": 3.4688820838928223,
+ "step": 5374
+ },
+ {
+ "epoch": 74.65705548274356,
+ "grad_norm": 0.24397042393684387,
+ "learning_rate": 0.0006,
+ "loss": 3.4923229217529297,
+ "step": 5375
+ },
+ {
+ "epoch": 74.67103538663171,
+ "grad_norm": 0.23729953169822693,
+ "learning_rate": 0.0006,
+ "loss": 3.4608895778656006,
+ "step": 5376
+ },
+ {
+ "epoch": 74.68501529051987,
+ "grad_norm": 0.2729131877422333,
+ "learning_rate": 0.0006,
+ "loss": 3.4602279663085938,
+ "step": 5377
+ },
+ {
+ "epoch": 74.69899519440804,
+ "grad_norm": 0.25115323066711426,
+ "learning_rate": 0.0006,
+ "loss": 3.514993906021118,
+ "step": 5378
+ },
+ {
+ "epoch": 74.7129750982962,
+ "grad_norm": 0.22035203874111176,
+ "learning_rate": 0.0006,
+ "loss": 3.4471445083618164,
+ "step": 5379
+ },
+ {
+ "epoch": 74.72695500218435,
+ "grad_norm": 0.21248559653759003,
+ "learning_rate": 0.0006,
+ "loss": 3.495924472808838,
+ "step": 5380
+ },
+ {
+ "epoch": 74.74093490607252,
+ "grad_norm": 0.2532788813114166,
+ "learning_rate": 0.0006,
+ "loss": 3.4937939643859863,
+ "step": 5381
+ },
+ {
+ "epoch": 74.75491480996068,
+ "grad_norm": 0.3140663206577301,
+ "learning_rate": 0.0006,
+ "loss": 3.47257661819458,
+ "step": 5382
+ },
+ {
+ "epoch": 74.76889471384884,
+ "grad_norm": 0.24233469367027283,
+ "learning_rate": 0.0006,
+ "loss": 3.522697925567627,
+ "step": 5383
+ },
+ {
+ "epoch": 74.78287461773701,
+ "grad_norm": 0.21789517998695374,
+ "learning_rate": 0.0006,
+ "loss": 3.4718894958496094,
+ "step": 5384
+ },
+ {
+ "epoch": 74.79685452162516,
+ "grad_norm": 0.27909520268440247,
+ "learning_rate": 0.0006,
+ "loss": 3.495565891265869,
+ "step": 5385
+ },
+ {
+ "epoch": 74.81083442551332,
+ "grad_norm": 0.2829185724258423,
+ "learning_rate": 0.0006,
+ "loss": 3.498117446899414,
+ "step": 5386
+ },
+ {
+ "epoch": 74.82481432940149,
+ "grad_norm": 0.24295735359191895,
+ "learning_rate": 0.0006,
+ "loss": 3.520672559738159,
+ "step": 5387
+ },
+ {
+ "epoch": 74.83879423328965,
+ "grad_norm": 0.22691823542118073,
+ "learning_rate": 0.0006,
+ "loss": 3.493411064147949,
+ "step": 5388
+ },
+ {
+ "epoch": 74.8527741371778,
+ "grad_norm": 0.2304782122373581,
+ "learning_rate": 0.0006,
+ "loss": 3.515381336212158,
+ "step": 5389
+ },
+ {
+ "epoch": 74.86675404106597,
+ "grad_norm": 0.2201395034790039,
+ "learning_rate": 0.0006,
+ "loss": 3.4841480255126953,
+ "step": 5390
+ },
+ {
+ "epoch": 74.88073394495413,
+ "grad_norm": 0.2174619734287262,
+ "learning_rate": 0.0006,
+ "loss": 3.522420883178711,
+ "step": 5391
+ },
+ {
+ "epoch": 74.89471384884229,
+ "grad_norm": 0.2168722301721573,
+ "learning_rate": 0.0006,
+ "loss": 3.5378670692443848,
+ "step": 5392
+ },
+ {
+ "epoch": 74.90869375273044,
+ "grad_norm": 0.2191118448972702,
+ "learning_rate": 0.0006,
+ "loss": 3.4727582931518555,
+ "step": 5393
+ },
+ {
+ "epoch": 74.92267365661861,
+ "grad_norm": 0.20210173726081848,
+ "learning_rate": 0.0006,
+ "loss": 3.482863426208496,
+ "step": 5394
+ },
+ {
+ "epoch": 74.93665356050677,
+ "grad_norm": 0.2193301022052765,
+ "learning_rate": 0.0006,
+ "loss": 3.504102945327759,
+ "step": 5395
+ },
+ {
+ "epoch": 74.95063346439493,
+ "grad_norm": 0.24017557501792908,
+ "learning_rate": 0.0006,
+ "loss": 3.5117030143737793,
+ "step": 5396
+ },
+ {
+ "epoch": 74.9646133682831,
+ "grad_norm": 0.2410554140806198,
+ "learning_rate": 0.0006,
+ "loss": 3.4764766693115234,
+ "step": 5397
+ },
+ {
+ "epoch": 74.97859327217125,
+ "grad_norm": 0.22423039376735687,
+ "learning_rate": 0.0006,
+ "loss": 3.480515480041504,
+ "step": 5398
+ },
+ {
+ "epoch": 74.99257317605941,
+ "grad_norm": 0.21722744405269623,
+ "learning_rate": 0.0006,
+ "loss": 3.498002052307129,
+ "step": 5399
+ },
+ {
+ "epoch": 75.0,
+ "grad_norm": 0.25303882360458374,
+ "learning_rate": 0.0006,
+ "loss": 3.5146775245666504,
+ "step": 5400
+ },
+ {
+ "epoch": 75.0,
+ "eval_loss": 3.98659610748291,
+ "eval_runtime": 46.184,
+ "eval_samples_per_second": 52.875,
+ "eval_steps_per_second": 3.313,
+ "step": 5400
+ },
+ {
+ "epoch": 75.01397990388816,
+ "grad_norm": 0.22890645265579224,
+ "learning_rate": 0.0006,
+ "loss": 3.4320144653320312,
+ "step": 5401
+ },
+ {
+ "epoch": 75.02795980777633,
+ "grad_norm": 0.21108074486255646,
+ "learning_rate": 0.0006,
+ "loss": 3.4783573150634766,
+ "step": 5402
+ },
+ {
+ "epoch": 75.04193971166448,
+ "grad_norm": 0.24622507393360138,
+ "learning_rate": 0.0006,
+ "loss": 3.443662643432617,
+ "step": 5403
+ },
+ {
+ "epoch": 75.05591961555264,
+ "grad_norm": 0.27554580569267273,
+ "learning_rate": 0.0006,
+ "loss": 3.4758429527282715,
+ "step": 5404
+ },
+ {
+ "epoch": 75.06989951944081,
+ "grad_norm": 0.23775196075439453,
+ "learning_rate": 0.0006,
+ "loss": 3.433439254760742,
+ "step": 5405
+ },
+ {
+ "epoch": 75.08387942332897,
+ "grad_norm": 0.24933192133903503,
+ "learning_rate": 0.0006,
+ "loss": 3.474876642227173,
+ "step": 5406
+ },
+ {
+ "epoch": 75.09785932721712,
+ "grad_norm": 0.25970155000686646,
+ "learning_rate": 0.0006,
+ "loss": 3.4557571411132812,
+ "step": 5407
+ },
+ {
+ "epoch": 75.1118392311053,
+ "grad_norm": 0.24002394080162048,
+ "learning_rate": 0.0006,
+ "loss": 3.487683057785034,
+ "step": 5408
+ },
+ {
+ "epoch": 75.12581913499345,
+ "grad_norm": 0.23790079355239868,
+ "learning_rate": 0.0006,
+ "loss": 3.4572582244873047,
+ "step": 5409
+ },
+ {
+ "epoch": 75.1397990388816,
+ "grad_norm": 0.24431537091732025,
+ "learning_rate": 0.0006,
+ "loss": 3.47338604927063,
+ "step": 5410
+ },
+ {
+ "epoch": 75.15377894276976,
+ "grad_norm": 0.23062901198863983,
+ "learning_rate": 0.0006,
+ "loss": 3.4597620964050293,
+ "step": 5411
+ },
+ {
+ "epoch": 75.16775884665793,
+ "grad_norm": 0.22011473774909973,
+ "learning_rate": 0.0006,
+ "loss": 3.442854404449463,
+ "step": 5412
+ },
+ {
+ "epoch": 75.18173875054609,
+ "grad_norm": 0.22079597413539886,
+ "learning_rate": 0.0006,
+ "loss": 3.4655394554138184,
+ "step": 5413
+ },
+ {
+ "epoch": 75.19571865443424,
+ "grad_norm": 0.2491050660610199,
+ "learning_rate": 0.0006,
+ "loss": 3.4235432147979736,
+ "step": 5414
+ },
+ {
+ "epoch": 75.20969855832242,
+ "grad_norm": 0.2579537332057953,
+ "learning_rate": 0.0006,
+ "loss": 3.4655489921569824,
+ "step": 5415
+ },
+ {
+ "epoch": 75.22367846221057,
+ "grad_norm": 0.2544846832752228,
+ "learning_rate": 0.0006,
+ "loss": 3.4843227863311768,
+ "step": 5416
+ },
+ {
+ "epoch": 75.23765836609873,
+ "grad_norm": 0.2496761977672577,
+ "learning_rate": 0.0006,
+ "loss": 3.4830572605133057,
+ "step": 5417
+ },
+ {
+ "epoch": 75.2516382699869,
+ "grad_norm": 0.23450163006782532,
+ "learning_rate": 0.0006,
+ "loss": 3.4443750381469727,
+ "step": 5418
+ },
+ {
+ "epoch": 75.26561817387505,
+ "grad_norm": 0.21221424639225006,
+ "learning_rate": 0.0006,
+ "loss": 3.4960341453552246,
+ "step": 5419
+ },
+ {
+ "epoch": 75.27959807776321,
+ "grad_norm": 0.24375751614570618,
+ "learning_rate": 0.0006,
+ "loss": 3.489213466644287,
+ "step": 5420
+ },
+ {
+ "epoch": 75.29357798165138,
+ "grad_norm": 0.2396956831216812,
+ "learning_rate": 0.0006,
+ "loss": 3.4710469245910645,
+ "step": 5421
+ },
+ {
+ "epoch": 75.30755788553954,
+ "grad_norm": 0.2423015981912613,
+ "learning_rate": 0.0006,
+ "loss": 3.4676403999328613,
+ "step": 5422
+ },
+ {
+ "epoch": 75.3215377894277,
+ "grad_norm": 0.21398219466209412,
+ "learning_rate": 0.0006,
+ "loss": 3.4844627380371094,
+ "step": 5423
+ },
+ {
+ "epoch": 75.33551769331586,
+ "grad_norm": 0.22983498871326447,
+ "learning_rate": 0.0006,
+ "loss": 3.499535083770752,
+ "step": 5424
+ },
+ {
+ "epoch": 75.34949759720402,
+ "grad_norm": 0.2247568666934967,
+ "learning_rate": 0.0006,
+ "loss": 3.459460973739624,
+ "step": 5425
+ },
+ {
+ "epoch": 75.36347750109218,
+ "grad_norm": 0.2223675400018692,
+ "learning_rate": 0.0006,
+ "loss": 3.483078718185425,
+ "step": 5426
+ },
+ {
+ "epoch": 75.37745740498035,
+ "grad_norm": 0.25076913833618164,
+ "learning_rate": 0.0006,
+ "loss": 3.4823365211486816,
+ "step": 5427
+ },
+ {
+ "epoch": 75.3914373088685,
+ "grad_norm": 0.23170171678066254,
+ "learning_rate": 0.0006,
+ "loss": 3.487278461456299,
+ "step": 5428
+ },
+ {
+ "epoch": 75.40541721275666,
+ "grad_norm": 0.22735518217086792,
+ "learning_rate": 0.0006,
+ "loss": 3.4565181732177734,
+ "step": 5429
+ },
+ {
+ "epoch": 75.41939711664482,
+ "grad_norm": 0.2241843193769455,
+ "learning_rate": 0.0006,
+ "loss": 3.4886221885681152,
+ "step": 5430
+ },
+ {
+ "epoch": 75.43337702053299,
+ "grad_norm": 0.23641140758991241,
+ "learning_rate": 0.0006,
+ "loss": 3.4589765071868896,
+ "step": 5431
+ },
+ {
+ "epoch": 75.44735692442114,
+ "grad_norm": 0.22404645383358002,
+ "learning_rate": 0.0006,
+ "loss": 3.4804739952087402,
+ "step": 5432
+ },
+ {
+ "epoch": 75.4613368283093,
+ "grad_norm": 0.22107535600662231,
+ "learning_rate": 0.0006,
+ "loss": 3.5022053718566895,
+ "step": 5433
+ },
+ {
+ "epoch": 75.47531673219747,
+ "grad_norm": 0.26106131076812744,
+ "learning_rate": 0.0006,
+ "loss": 3.4907431602478027,
+ "step": 5434
+ },
+ {
+ "epoch": 75.48929663608563,
+ "grad_norm": 0.24156032502651215,
+ "learning_rate": 0.0006,
+ "loss": 3.4733991622924805,
+ "step": 5435
+ },
+ {
+ "epoch": 75.50327653997378,
+ "grad_norm": 0.24767442047595978,
+ "learning_rate": 0.0006,
+ "loss": 3.4697909355163574,
+ "step": 5436
+ },
+ {
+ "epoch": 75.51725644386195,
+ "grad_norm": 0.2323860228061676,
+ "learning_rate": 0.0006,
+ "loss": 3.4606242179870605,
+ "step": 5437
+ },
+ {
+ "epoch": 75.53123634775011,
+ "grad_norm": 0.2262393981218338,
+ "learning_rate": 0.0006,
+ "loss": 3.4854025840759277,
+ "step": 5438
+ },
+ {
+ "epoch": 75.54521625163827,
+ "grad_norm": 0.23461535573005676,
+ "learning_rate": 0.0006,
+ "loss": 3.4778385162353516,
+ "step": 5439
+ },
+ {
+ "epoch": 75.55919615552644,
+ "grad_norm": 0.27161163091659546,
+ "learning_rate": 0.0006,
+ "loss": 3.495377540588379,
+ "step": 5440
+ },
+ {
+ "epoch": 75.57317605941459,
+ "grad_norm": 0.24618741869926453,
+ "learning_rate": 0.0006,
+ "loss": 3.47642183303833,
+ "step": 5441
+ },
+ {
+ "epoch": 75.58715596330275,
+ "grad_norm": 0.22948747873306274,
+ "learning_rate": 0.0006,
+ "loss": 3.4459116458892822,
+ "step": 5442
+ },
+ {
+ "epoch": 75.60113586719092,
+ "grad_norm": 0.23935501277446747,
+ "learning_rate": 0.0006,
+ "loss": 3.487091541290283,
+ "step": 5443
+ },
+ {
+ "epoch": 75.61511577107908,
+ "grad_norm": 0.2796297073364258,
+ "learning_rate": 0.0006,
+ "loss": 3.473480701446533,
+ "step": 5444
+ },
+ {
+ "epoch": 75.62909567496723,
+ "grad_norm": 0.29329824447631836,
+ "learning_rate": 0.0006,
+ "loss": 3.5074462890625,
+ "step": 5445
+ },
+ {
+ "epoch": 75.6430755788554,
+ "grad_norm": 0.2570355534553528,
+ "learning_rate": 0.0006,
+ "loss": 3.489321231842041,
+ "step": 5446
+ },
+ {
+ "epoch": 75.65705548274356,
+ "grad_norm": 0.2363484650850296,
+ "learning_rate": 0.0006,
+ "loss": 3.468007802963257,
+ "step": 5447
+ },
+ {
+ "epoch": 75.67103538663171,
+ "grad_norm": 0.2406139075756073,
+ "learning_rate": 0.0006,
+ "loss": 3.46791410446167,
+ "step": 5448
+ },
+ {
+ "epoch": 75.68501529051987,
+ "grad_norm": 0.21734113991260529,
+ "learning_rate": 0.0006,
+ "loss": 3.4879536628723145,
+ "step": 5449
+ },
+ {
+ "epoch": 75.69899519440804,
+ "grad_norm": 0.23314808309078217,
+ "learning_rate": 0.0006,
+ "loss": 3.4743285179138184,
+ "step": 5450
+ },
+ {
+ "epoch": 75.7129750982962,
+ "grad_norm": 0.23886935412883759,
+ "learning_rate": 0.0006,
+ "loss": 3.4746532440185547,
+ "step": 5451
+ },
+ {
+ "epoch": 75.72695500218435,
+ "grad_norm": 0.22808042168617249,
+ "learning_rate": 0.0006,
+ "loss": 3.4969987869262695,
+ "step": 5452
+ },
+ {
+ "epoch": 75.74093490607252,
+ "grad_norm": 0.2143876552581787,
+ "learning_rate": 0.0006,
+ "loss": 3.4843339920043945,
+ "step": 5453
+ },
+ {
+ "epoch": 75.75491480996068,
+ "grad_norm": 0.21905699372291565,
+ "learning_rate": 0.0006,
+ "loss": 3.4854626655578613,
+ "step": 5454
+ },
+ {
+ "epoch": 75.76889471384884,
+ "grad_norm": 0.222469300031662,
+ "learning_rate": 0.0006,
+ "loss": 3.4997758865356445,
+ "step": 5455
+ },
+ {
+ "epoch": 75.78287461773701,
+ "grad_norm": 0.23095394670963287,
+ "learning_rate": 0.0006,
+ "loss": 3.515315532684326,
+ "step": 5456
+ },
+ {
+ "epoch": 75.79685452162516,
+ "grad_norm": 0.23326516151428223,
+ "learning_rate": 0.0006,
+ "loss": 3.482665538787842,
+ "step": 5457
+ },
+ {
+ "epoch": 75.81083442551332,
+ "grad_norm": 0.22779764235019684,
+ "learning_rate": 0.0006,
+ "loss": 3.5068790912628174,
+ "step": 5458
+ },
+ {
+ "epoch": 75.82481432940149,
+ "grad_norm": 0.2396935224533081,
+ "learning_rate": 0.0006,
+ "loss": 3.4874000549316406,
+ "step": 5459
+ },
+ {
+ "epoch": 75.83879423328965,
+ "grad_norm": 0.25353050231933594,
+ "learning_rate": 0.0006,
+ "loss": 3.4948503971099854,
+ "step": 5460
+ },
+ {
+ "epoch": 75.8527741371778,
+ "grad_norm": 0.21191656589508057,
+ "learning_rate": 0.0006,
+ "loss": 3.4621965885162354,
+ "step": 5461
+ },
+ {
+ "epoch": 75.86675404106597,
+ "grad_norm": 0.2224014550447464,
+ "learning_rate": 0.0006,
+ "loss": 3.4568324089050293,
+ "step": 5462
+ },
+ {
+ "epoch": 75.88073394495413,
+ "grad_norm": 0.2205243706703186,
+ "learning_rate": 0.0006,
+ "loss": 3.4809136390686035,
+ "step": 5463
+ },
+ {
+ "epoch": 75.89471384884229,
+ "grad_norm": 0.2065657079219818,
+ "learning_rate": 0.0006,
+ "loss": 3.4930431842803955,
+ "step": 5464
+ },
+ {
+ "epoch": 75.90869375273044,
+ "grad_norm": 0.23017582297325134,
+ "learning_rate": 0.0006,
+ "loss": 3.471113443374634,
+ "step": 5465
+ },
+ {
+ "epoch": 75.92267365661861,
+ "grad_norm": 0.23186780512332916,
+ "learning_rate": 0.0006,
+ "loss": 3.4903316497802734,
+ "step": 5466
+ },
+ {
+ "epoch": 75.93665356050677,
+ "grad_norm": 0.21441741287708282,
+ "learning_rate": 0.0006,
+ "loss": 3.4762520790100098,
+ "step": 5467
+ },
+ {
+ "epoch": 75.95063346439493,
+ "grad_norm": 0.23942787945270538,
+ "learning_rate": 0.0006,
+ "loss": 3.5144190788269043,
+ "step": 5468
+ },
+ {
+ "epoch": 75.9646133682831,
+ "grad_norm": 0.2516455352306366,
+ "learning_rate": 0.0006,
+ "loss": 3.496724843978882,
+ "step": 5469
+ },
+ {
+ "epoch": 75.97859327217125,
+ "grad_norm": 0.26983004808425903,
+ "learning_rate": 0.0006,
+ "loss": 3.4975180625915527,
+ "step": 5470
+ },
+ {
+ "epoch": 75.99257317605941,
+ "grad_norm": 0.2471132129430771,
+ "learning_rate": 0.0006,
+ "loss": 3.4897234439849854,
+ "step": 5471
+ },
+ {
+ "epoch": 76.0,
+ "grad_norm": 0.2606436014175415,
+ "learning_rate": 0.0006,
+ "loss": 3.4784388542175293,
+ "step": 5472
+ },
+ {
+ "epoch": 76.0,
+ "eval_loss": 3.973442554473877,
+ "eval_runtime": 46.348,
+ "eval_samples_per_second": 52.688,
+ "eval_steps_per_second": 3.301,
+ "step": 5472
+ },
+ {
+ "epoch": 76.01397990388816,
+ "grad_norm": 0.28274571895599365,
+ "learning_rate": 0.0006,
+ "loss": 3.432469367980957,
+ "step": 5473
+ },
+ {
+ "epoch": 76.02795980777633,
+ "grad_norm": 0.3165026009082794,
+ "learning_rate": 0.0006,
+ "loss": 3.4121832847595215,
+ "step": 5474
+ },
+ {
+ "epoch": 76.04193971166448,
+ "grad_norm": 0.33816471695899963,
+ "learning_rate": 0.0006,
+ "loss": 3.429927349090576,
+ "step": 5475
+ },
+ {
+ "epoch": 76.05591961555264,
+ "grad_norm": 0.2813689112663269,
+ "learning_rate": 0.0006,
+ "loss": 3.4992995262145996,
+ "step": 5476
+ },
+ {
+ "epoch": 76.06989951944081,
+ "grad_norm": 0.2319067418575287,
+ "learning_rate": 0.0006,
+ "loss": 3.468172073364258,
+ "step": 5477
+ },
+ {
+ "epoch": 76.08387942332897,
+ "grad_norm": 0.2963521182537079,
+ "learning_rate": 0.0006,
+ "loss": 3.4306883811950684,
+ "step": 5478
+ },
+ {
+ "epoch": 76.09785932721712,
+ "grad_norm": 0.3123914301395416,
+ "learning_rate": 0.0006,
+ "loss": 3.434607982635498,
+ "step": 5479
+ },
+ {
+ "epoch": 76.1118392311053,
+ "grad_norm": 0.28318360447883606,
+ "learning_rate": 0.0006,
+ "loss": 3.4461169242858887,
+ "step": 5480
+ },
+ {
+ "epoch": 76.12581913499345,
+ "grad_norm": 0.2599116265773773,
+ "learning_rate": 0.0006,
+ "loss": 3.452208995819092,
+ "step": 5481
+ },
+ {
+ "epoch": 76.1397990388816,
+ "grad_norm": 0.2547946274280548,
+ "learning_rate": 0.0006,
+ "loss": 3.456831455230713,
+ "step": 5482
+ },
+ {
+ "epoch": 76.15377894276976,
+ "grad_norm": 0.25178053975105286,
+ "learning_rate": 0.0006,
+ "loss": 3.4486212730407715,
+ "step": 5483
+ },
+ {
+ "epoch": 76.16775884665793,
+ "grad_norm": 0.2500477135181427,
+ "learning_rate": 0.0006,
+ "loss": 3.4861841201782227,
+ "step": 5484
+ },
+ {
+ "epoch": 76.18173875054609,
+ "grad_norm": 0.25729069113731384,
+ "learning_rate": 0.0006,
+ "loss": 3.4522268772125244,
+ "step": 5485
+ },
+ {
+ "epoch": 76.19571865443424,
+ "grad_norm": 0.2618412375450134,
+ "learning_rate": 0.0006,
+ "loss": 3.4625625610351562,
+ "step": 5486
+ },
+ {
+ "epoch": 76.20969855832242,
+ "grad_norm": 0.24906174838542938,
+ "learning_rate": 0.0006,
+ "loss": 3.5010147094726562,
+ "step": 5487
+ },
+ {
+ "epoch": 76.22367846221057,
+ "grad_norm": 0.2631669342517853,
+ "learning_rate": 0.0006,
+ "loss": 3.4834048748016357,
+ "step": 5488
+ },
+ {
+ "epoch": 76.23765836609873,
+ "grad_norm": 0.22962148487567902,
+ "learning_rate": 0.0006,
+ "loss": 3.437201976776123,
+ "step": 5489
+ },
+ {
+ "epoch": 76.2516382699869,
+ "grad_norm": 0.21113844215869904,
+ "learning_rate": 0.0006,
+ "loss": 3.4715452194213867,
+ "step": 5490
+ },
+ {
+ "epoch": 76.26561817387505,
+ "grad_norm": 0.21345451474189758,
+ "learning_rate": 0.0006,
+ "loss": 3.470175266265869,
+ "step": 5491
+ },
+ {
+ "epoch": 76.27959807776321,
+ "grad_norm": 0.22897619009017944,
+ "learning_rate": 0.0006,
+ "loss": 3.458296775817871,
+ "step": 5492
+ },
+ {
+ "epoch": 76.29357798165138,
+ "grad_norm": 0.2222777009010315,
+ "learning_rate": 0.0006,
+ "loss": 3.4519572257995605,
+ "step": 5493
+ },
+ {
+ "epoch": 76.30755788553954,
+ "grad_norm": 0.2297116070985794,
+ "learning_rate": 0.0006,
+ "loss": 3.470816135406494,
+ "step": 5494
+ },
+ {
+ "epoch": 76.3215377894277,
+ "grad_norm": 0.24459777772426605,
+ "learning_rate": 0.0006,
+ "loss": 3.490407943725586,
+ "step": 5495
+ },
+ {
+ "epoch": 76.33551769331586,
+ "grad_norm": 0.22549642622470856,
+ "learning_rate": 0.0006,
+ "loss": 3.471388816833496,
+ "step": 5496
+ },
+ {
+ "epoch": 76.34949759720402,
+ "grad_norm": 0.220009908080101,
+ "learning_rate": 0.0006,
+ "loss": 3.46909761428833,
+ "step": 5497
+ },
+ {
+ "epoch": 76.36347750109218,
+ "grad_norm": 0.21473553776741028,
+ "learning_rate": 0.0006,
+ "loss": 3.491536855697632,
+ "step": 5498
+ },
+ {
+ "epoch": 76.37745740498035,
+ "grad_norm": 0.20368808507919312,
+ "learning_rate": 0.0006,
+ "loss": 3.449502944946289,
+ "step": 5499
+ },
+ {
+ "epoch": 76.3914373088685,
+ "grad_norm": 0.20559734106063843,
+ "learning_rate": 0.0006,
+ "loss": 3.4466171264648438,
+ "step": 5500
+ },
+ {
+ "epoch": 76.40541721275666,
+ "grad_norm": 0.2107473611831665,
+ "learning_rate": 0.0006,
+ "loss": 3.4709558486938477,
+ "step": 5501
+ },
+ {
+ "epoch": 76.41939711664482,
+ "grad_norm": 0.20774322748184204,
+ "learning_rate": 0.0006,
+ "loss": 3.5067873001098633,
+ "step": 5502
+ },
+ {
+ "epoch": 76.43337702053299,
+ "grad_norm": 0.20616984367370605,
+ "learning_rate": 0.0006,
+ "loss": 3.46718168258667,
+ "step": 5503
+ },
+ {
+ "epoch": 76.44735692442114,
+ "grad_norm": 0.22518491744995117,
+ "learning_rate": 0.0006,
+ "loss": 3.4624900817871094,
+ "step": 5504
+ },
+ {
+ "epoch": 76.4613368283093,
+ "grad_norm": 0.21241682767868042,
+ "learning_rate": 0.0006,
+ "loss": 3.4807918071746826,
+ "step": 5505
+ },
+ {
+ "epoch": 76.47531673219747,
+ "grad_norm": 0.20331047475337982,
+ "learning_rate": 0.0006,
+ "loss": 3.4387712478637695,
+ "step": 5506
+ },
+ {
+ "epoch": 76.48929663608563,
+ "grad_norm": 0.20476725697517395,
+ "learning_rate": 0.0006,
+ "loss": 3.478198528289795,
+ "step": 5507
+ },
+ {
+ "epoch": 76.50327653997378,
+ "grad_norm": 0.19799263775348663,
+ "learning_rate": 0.0006,
+ "loss": 3.458812713623047,
+ "step": 5508
+ },
+ {
+ "epoch": 76.51725644386195,
+ "grad_norm": 0.20378418266773224,
+ "learning_rate": 0.0006,
+ "loss": 3.492115020751953,
+ "step": 5509
+ },
+ {
+ "epoch": 76.53123634775011,
+ "grad_norm": 0.19318847358226776,
+ "learning_rate": 0.0006,
+ "loss": 3.444512128829956,
+ "step": 5510
+ },
+ {
+ "epoch": 76.54521625163827,
+ "grad_norm": 0.20766256749629974,
+ "learning_rate": 0.0006,
+ "loss": 3.4897234439849854,
+ "step": 5511
+ },
+ {
+ "epoch": 76.55919615552644,
+ "grad_norm": 0.20554299652576447,
+ "learning_rate": 0.0006,
+ "loss": 3.470285415649414,
+ "step": 5512
+ },
+ {
+ "epoch": 76.57317605941459,
+ "grad_norm": 0.21081854403018951,
+ "learning_rate": 0.0006,
+ "loss": 3.473558187484741,
+ "step": 5513
+ },
+ {
+ "epoch": 76.58715596330275,
+ "grad_norm": 0.23622071743011475,
+ "learning_rate": 0.0006,
+ "loss": 3.4782865047454834,
+ "step": 5514
+ },
+ {
+ "epoch": 76.60113586719092,
+ "grad_norm": 0.22481192648410797,
+ "learning_rate": 0.0006,
+ "loss": 3.4996776580810547,
+ "step": 5515
+ },
+ {
+ "epoch": 76.61511577107908,
+ "grad_norm": 0.2192675620317459,
+ "learning_rate": 0.0006,
+ "loss": 3.521728277206421,
+ "step": 5516
+ },
+ {
+ "epoch": 76.62909567496723,
+ "grad_norm": 0.23627865314483643,
+ "learning_rate": 0.0006,
+ "loss": 3.5019800662994385,
+ "step": 5517
+ },
+ {
+ "epoch": 76.6430755788554,
+ "grad_norm": 0.22374436259269714,
+ "learning_rate": 0.0006,
+ "loss": 3.4527387619018555,
+ "step": 5518
+ },
+ {
+ "epoch": 76.65705548274356,
+ "grad_norm": 0.23872409760951996,
+ "learning_rate": 0.0006,
+ "loss": 3.4938204288482666,
+ "step": 5519
+ },
+ {
+ "epoch": 76.67103538663171,
+ "grad_norm": 0.23943012952804565,
+ "learning_rate": 0.0006,
+ "loss": 3.4902846813201904,
+ "step": 5520
+ },
+ {
+ "epoch": 76.68501529051987,
+ "grad_norm": 0.23605254292488098,
+ "learning_rate": 0.0006,
+ "loss": 3.4715919494628906,
+ "step": 5521
+ },
+ {
+ "epoch": 76.69899519440804,
+ "grad_norm": 0.2116839587688446,
+ "learning_rate": 0.0006,
+ "loss": 3.515658378601074,
+ "step": 5522
+ },
+ {
+ "epoch": 76.7129750982962,
+ "grad_norm": 0.22817043960094452,
+ "learning_rate": 0.0006,
+ "loss": 3.466154098510742,
+ "step": 5523
+ },
+ {
+ "epoch": 76.72695500218435,
+ "grad_norm": 0.26730015873908997,
+ "learning_rate": 0.0006,
+ "loss": 3.4843881130218506,
+ "step": 5524
+ },
+ {
+ "epoch": 76.74093490607252,
+ "grad_norm": 0.24832892417907715,
+ "learning_rate": 0.0006,
+ "loss": 3.495150566101074,
+ "step": 5525
+ },
+ {
+ "epoch": 76.75491480996068,
+ "grad_norm": 0.2358865737915039,
+ "learning_rate": 0.0006,
+ "loss": 3.475858211517334,
+ "step": 5526
+ },
+ {
+ "epoch": 76.76889471384884,
+ "grad_norm": 0.2310672551393509,
+ "learning_rate": 0.0006,
+ "loss": 3.5099706649780273,
+ "step": 5527
+ },
+ {
+ "epoch": 76.78287461773701,
+ "grad_norm": 0.25284910202026367,
+ "learning_rate": 0.0006,
+ "loss": 3.510529041290283,
+ "step": 5528
+ },
+ {
+ "epoch": 76.79685452162516,
+ "grad_norm": 0.25088873505592346,
+ "learning_rate": 0.0006,
+ "loss": 3.480929374694824,
+ "step": 5529
+ },
+ {
+ "epoch": 76.81083442551332,
+ "grad_norm": 0.2349051833152771,
+ "learning_rate": 0.0006,
+ "loss": 3.457334041595459,
+ "step": 5530
+ },
+ {
+ "epoch": 76.82481432940149,
+ "grad_norm": 0.23446795344352722,
+ "learning_rate": 0.0006,
+ "loss": 3.493607997894287,
+ "step": 5531
+ },
+ {
+ "epoch": 76.83879423328965,
+ "grad_norm": 0.2285156399011612,
+ "learning_rate": 0.0006,
+ "loss": 3.4858193397521973,
+ "step": 5532
+ },
+ {
+ "epoch": 76.8527741371778,
+ "grad_norm": 0.2247011512517929,
+ "learning_rate": 0.0006,
+ "loss": 3.4766390323638916,
+ "step": 5533
+ },
+ {
+ "epoch": 76.86675404106597,
+ "grad_norm": 0.2175820916891098,
+ "learning_rate": 0.0006,
+ "loss": 3.4545059204101562,
+ "step": 5534
+ },
+ {
+ "epoch": 76.88073394495413,
+ "grad_norm": 0.22910308837890625,
+ "learning_rate": 0.0006,
+ "loss": 3.5201025009155273,
+ "step": 5535
+ },
+ {
+ "epoch": 76.89471384884229,
+ "grad_norm": 0.25674742460250854,
+ "learning_rate": 0.0006,
+ "loss": 3.4851608276367188,
+ "step": 5536
+ },
+ {
+ "epoch": 76.90869375273044,
+ "grad_norm": 0.2939974069595337,
+ "learning_rate": 0.0006,
+ "loss": 3.4853453636169434,
+ "step": 5537
+ },
+ {
+ "epoch": 76.92267365661861,
+ "grad_norm": 0.30211713910102844,
+ "learning_rate": 0.0006,
+ "loss": 3.465470790863037,
+ "step": 5538
+ },
+ {
+ "epoch": 76.93665356050677,
+ "grad_norm": 0.27954718470573425,
+ "learning_rate": 0.0006,
+ "loss": 3.4921772480010986,
+ "step": 5539
+ },
+ {
+ "epoch": 76.95063346439493,
+ "grad_norm": 0.22834837436676025,
+ "learning_rate": 0.0006,
+ "loss": 3.4936747550964355,
+ "step": 5540
+ },
+ {
+ "epoch": 76.9646133682831,
+ "grad_norm": 0.2698923349380493,
+ "learning_rate": 0.0006,
+ "loss": 3.477677345275879,
+ "step": 5541
+ },
+ {
+ "epoch": 76.97859327217125,
+ "grad_norm": 0.3047026991844177,
+ "learning_rate": 0.0006,
+ "loss": 3.48386549949646,
+ "step": 5542
+ },
+ {
+ "epoch": 76.99257317605941,
+ "grad_norm": 0.25420624017715454,
+ "learning_rate": 0.0006,
+ "loss": 3.4954631328582764,
+ "step": 5543
+ },
+ {
+ "epoch": 77.0,
+ "grad_norm": 0.24408109486103058,
+ "learning_rate": 0.0006,
+ "loss": 3.445572853088379,
+ "step": 5544
+ },
+ {
+ "epoch": 77.0,
+ "eval_loss": 4.007506847381592,
+ "eval_runtime": 46.4852,
+ "eval_samples_per_second": 52.533,
+ "eval_steps_per_second": 3.291,
+ "step": 5544
+ },
+ {
+ "epoch": 77.01397990388816,
+ "grad_norm": 0.2915779650211334,
+ "learning_rate": 0.0006,
+ "loss": 3.4563474655151367,
+ "step": 5545
+ },
+ {
+ "epoch": 77.02795980777633,
+ "grad_norm": 0.3169223964214325,
+ "learning_rate": 0.0006,
+ "loss": 3.4652180671691895,
+ "step": 5546
+ },
+ {
+ "epoch": 77.04193971166448,
+ "grad_norm": 0.25844213366508484,
+ "learning_rate": 0.0006,
+ "loss": 3.462665319442749,
+ "step": 5547
+ },
+ {
+ "epoch": 77.05591961555264,
+ "grad_norm": 0.25074702501296997,
+ "learning_rate": 0.0006,
+ "loss": 3.4422531127929688,
+ "step": 5548
+ },
+ {
+ "epoch": 77.06989951944081,
+ "grad_norm": 0.25484949350357056,
+ "learning_rate": 0.0006,
+ "loss": 3.4290740489959717,
+ "step": 5549
+ },
+ {
+ "epoch": 77.08387942332897,
+ "grad_norm": 0.25956255197525024,
+ "learning_rate": 0.0006,
+ "loss": 3.450035333633423,
+ "step": 5550
+ },
+ {
+ "epoch": 77.09785932721712,
+ "grad_norm": 0.22940650582313538,
+ "learning_rate": 0.0006,
+ "loss": 3.4249258041381836,
+ "step": 5551
+ },
+ {
+ "epoch": 77.1118392311053,
+ "grad_norm": 0.2277630716562271,
+ "learning_rate": 0.0006,
+ "loss": 3.4766159057617188,
+ "step": 5552
+ },
+ {
+ "epoch": 77.12581913499345,
+ "grad_norm": 0.23797406256198883,
+ "learning_rate": 0.0006,
+ "loss": 3.4734766483306885,
+ "step": 5553
+ },
+ {
+ "epoch": 77.1397990388816,
+ "grad_norm": 0.21684569120407104,
+ "learning_rate": 0.0006,
+ "loss": 3.459162950515747,
+ "step": 5554
+ },
+ {
+ "epoch": 77.15377894276976,
+ "grad_norm": 0.22176246345043182,
+ "learning_rate": 0.0006,
+ "loss": 3.4285407066345215,
+ "step": 5555
+ },
+ {
+ "epoch": 77.16775884665793,
+ "grad_norm": 0.22516196966171265,
+ "learning_rate": 0.0006,
+ "loss": 3.430083990097046,
+ "step": 5556
+ },
+ {
+ "epoch": 77.18173875054609,
+ "grad_norm": 0.21629488468170166,
+ "learning_rate": 0.0006,
+ "loss": 3.4317891597747803,
+ "step": 5557
+ },
+ {
+ "epoch": 77.19571865443424,
+ "grad_norm": 0.2110232561826706,
+ "learning_rate": 0.0006,
+ "loss": 3.441636085510254,
+ "step": 5558
+ },
+ {
+ "epoch": 77.20969855832242,
+ "grad_norm": 0.23733535408973694,
+ "learning_rate": 0.0006,
+ "loss": 3.4615190029144287,
+ "step": 5559
+ },
+ {
+ "epoch": 77.22367846221057,
+ "grad_norm": 0.2405165284872055,
+ "learning_rate": 0.0006,
+ "loss": 3.4209976196289062,
+ "step": 5560
+ },
+ {
+ "epoch": 77.23765836609873,
+ "grad_norm": 0.2469998598098755,
+ "learning_rate": 0.0006,
+ "loss": 3.4215030670166016,
+ "step": 5561
+ },
+ {
+ "epoch": 77.2516382699869,
+ "grad_norm": 0.25612175464630127,
+ "learning_rate": 0.0006,
+ "loss": 3.438417911529541,
+ "step": 5562
+ },
+ {
+ "epoch": 77.26561817387505,
+ "grad_norm": 0.23456519842147827,
+ "learning_rate": 0.0006,
+ "loss": 3.455623149871826,
+ "step": 5563
+ },
+ {
+ "epoch": 77.27959807776321,
+ "grad_norm": 0.21399898827075958,
+ "learning_rate": 0.0006,
+ "loss": 3.4647960662841797,
+ "step": 5564
+ },
+ {
+ "epoch": 77.29357798165138,
+ "grad_norm": 0.2188381850719452,
+ "learning_rate": 0.0006,
+ "loss": 3.4621052742004395,
+ "step": 5565
+ },
+ {
+ "epoch": 77.30755788553954,
+ "grad_norm": 0.24125352501869202,
+ "learning_rate": 0.0006,
+ "loss": 3.4713289737701416,
+ "step": 5566
+ },
+ {
+ "epoch": 77.3215377894277,
+ "grad_norm": 0.2860930562019348,
+ "learning_rate": 0.0006,
+ "loss": 3.4664835929870605,
+ "step": 5567
+ },
+ {
+ "epoch": 77.33551769331586,
+ "grad_norm": 0.26902931928634644,
+ "learning_rate": 0.0006,
+ "loss": 3.4329450130462646,
+ "step": 5568
+ },
+ {
+ "epoch": 77.34949759720402,
+ "grad_norm": 0.23035289347171783,
+ "learning_rate": 0.0006,
+ "loss": 3.4574995040893555,
+ "step": 5569
+ },
+ {
+ "epoch": 77.36347750109218,
+ "grad_norm": 0.21633122861385345,
+ "learning_rate": 0.0006,
+ "loss": 3.4807615280151367,
+ "step": 5570
+ },
+ {
+ "epoch": 77.37745740498035,
+ "grad_norm": 0.2515130043029785,
+ "learning_rate": 0.0006,
+ "loss": 3.4523189067840576,
+ "step": 5571
+ },
+ {
+ "epoch": 77.3914373088685,
+ "grad_norm": 0.24801862239837646,
+ "learning_rate": 0.0006,
+ "loss": 3.4288992881774902,
+ "step": 5572
+ },
+ {
+ "epoch": 77.40541721275666,
+ "grad_norm": 0.2390354871749878,
+ "learning_rate": 0.0006,
+ "loss": 3.484312057495117,
+ "step": 5573
+ },
+ {
+ "epoch": 77.41939711664482,
+ "grad_norm": 0.21863406896591187,
+ "learning_rate": 0.0006,
+ "loss": 3.514920234680176,
+ "step": 5574
+ },
+ {
+ "epoch": 77.43337702053299,
+ "grad_norm": 0.24056300520896912,
+ "learning_rate": 0.0006,
+ "loss": 3.4896860122680664,
+ "step": 5575
+ },
+ {
+ "epoch": 77.44735692442114,
+ "grad_norm": 0.23909592628479004,
+ "learning_rate": 0.0006,
+ "loss": 3.4793200492858887,
+ "step": 5576
+ },
+ {
+ "epoch": 77.4613368283093,
+ "grad_norm": 0.24454306066036224,
+ "learning_rate": 0.0006,
+ "loss": 3.461653470993042,
+ "step": 5577
+ },
+ {
+ "epoch": 77.47531673219747,
+ "grad_norm": 0.2615761160850525,
+ "learning_rate": 0.0006,
+ "loss": 3.465709686279297,
+ "step": 5578
+ },
+ {
+ "epoch": 77.48929663608563,
+ "grad_norm": 0.29720982909202576,
+ "learning_rate": 0.0006,
+ "loss": 3.4943344593048096,
+ "step": 5579
+ },
+ {
+ "epoch": 77.50327653997378,
+ "grad_norm": 0.2776208221912384,
+ "learning_rate": 0.0006,
+ "loss": 3.4455578327178955,
+ "step": 5580
+ },
+ {
+ "epoch": 77.51725644386195,
+ "grad_norm": 0.23060724139213562,
+ "learning_rate": 0.0006,
+ "loss": 3.505800724029541,
+ "step": 5581
+ },
+ {
+ "epoch": 77.53123634775011,
+ "grad_norm": 0.24247834086418152,
+ "learning_rate": 0.0006,
+ "loss": 3.4776053428649902,
+ "step": 5582
+ },
+ {
+ "epoch": 77.54521625163827,
+ "grad_norm": 0.2725653648376465,
+ "learning_rate": 0.0006,
+ "loss": 3.4901909828186035,
+ "step": 5583
+ },
+ {
+ "epoch": 77.55919615552644,
+ "grad_norm": 0.2663135528564453,
+ "learning_rate": 0.0006,
+ "loss": 3.4535939693450928,
+ "step": 5584
+ },
+ {
+ "epoch": 77.57317605941459,
+ "grad_norm": 0.22942234575748444,
+ "learning_rate": 0.0006,
+ "loss": 3.4478676319122314,
+ "step": 5585
+ },
+ {
+ "epoch": 77.58715596330275,
+ "grad_norm": 0.23543357849121094,
+ "learning_rate": 0.0006,
+ "loss": 3.4794795513153076,
+ "step": 5586
+ },
+ {
+ "epoch": 77.60113586719092,
+ "grad_norm": 0.24251683056354523,
+ "learning_rate": 0.0006,
+ "loss": 3.51051664352417,
+ "step": 5587
+ },
+ {
+ "epoch": 77.61511577107908,
+ "grad_norm": 0.2273259162902832,
+ "learning_rate": 0.0006,
+ "loss": 3.506385326385498,
+ "step": 5588
+ },
+ {
+ "epoch": 77.62909567496723,
+ "grad_norm": 0.23449701070785522,
+ "learning_rate": 0.0006,
+ "loss": 3.481034278869629,
+ "step": 5589
+ },
+ {
+ "epoch": 77.6430755788554,
+ "grad_norm": 0.25050288438796997,
+ "learning_rate": 0.0006,
+ "loss": 3.449924945831299,
+ "step": 5590
+ },
+ {
+ "epoch": 77.65705548274356,
+ "grad_norm": 0.25048449635505676,
+ "learning_rate": 0.0006,
+ "loss": 3.500735282897949,
+ "step": 5591
+ },
+ {
+ "epoch": 77.67103538663171,
+ "grad_norm": 0.2699182629585266,
+ "learning_rate": 0.0006,
+ "loss": 3.5185136795043945,
+ "step": 5592
+ },
+ {
+ "epoch": 77.68501529051987,
+ "grad_norm": 0.2451692819595337,
+ "learning_rate": 0.0006,
+ "loss": 3.4736194610595703,
+ "step": 5593
+ },
+ {
+ "epoch": 77.69899519440804,
+ "grad_norm": 0.24240832030773163,
+ "learning_rate": 0.0006,
+ "loss": 3.510906219482422,
+ "step": 5594
+ },
+ {
+ "epoch": 77.7129750982962,
+ "grad_norm": 0.24055726826190948,
+ "learning_rate": 0.0006,
+ "loss": 3.4826507568359375,
+ "step": 5595
+ },
+ {
+ "epoch": 77.72695500218435,
+ "grad_norm": 0.21117587387561798,
+ "learning_rate": 0.0006,
+ "loss": 3.4430460929870605,
+ "step": 5596
+ },
+ {
+ "epoch": 77.74093490607252,
+ "grad_norm": 0.22443950176239014,
+ "learning_rate": 0.0006,
+ "loss": 3.478419780731201,
+ "step": 5597
+ },
+ {
+ "epoch": 77.75491480996068,
+ "grad_norm": 0.265615314245224,
+ "learning_rate": 0.0006,
+ "loss": 3.511934280395508,
+ "step": 5598
+ },
+ {
+ "epoch": 77.76889471384884,
+ "grad_norm": 0.27084261178970337,
+ "learning_rate": 0.0006,
+ "loss": 3.5032665729522705,
+ "step": 5599
+ },
+ {
+ "epoch": 77.78287461773701,
+ "grad_norm": 0.24575908482074738,
+ "learning_rate": 0.0006,
+ "loss": 3.463124990463257,
+ "step": 5600
+ },
+ {
+ "epoch": 77.79685452162516,
+ "grad_norm": 0.24604707956314087,
+ "learning_rate": 0.0006,
+ "loss": 3.500135898590088,
+ "step": 5601
+ },
+ {
+ "epoch": 77.81083442551332,
+ "grad_norm": 0.23443962633609772,
+ "learning_rate": 0.0006,
+ "loss": 3.4497289657592773,
+ "step": 5602
+ },
+ {
+ "epoch": 77.82481432940149,
+ "grad_norm": 0.23644082248210907,
+ "learning_rate": 0.0006,
+ "loss": 3.47178316116333,
+ "step": 5603
+ },
+ {
+ "epoch": 77.83879423328965,
+ "grad_norm": 0.20530658960342407,
+ "learning_rate": 0.0006,
+ "loss": 3.455582618713379,
+ "step": 5604
+ },
+ {
+ "epoch": 77.8527741371778,
+ "grad_norm": 0.2663075029850006,
+ "learning_rate": 0.0006,
+ "loss": 3.5106711387634277,
+ "step": 5605
+ },
+ {
+ "epoch": 77.86675404106597,
+ "grad_norm": 0.3181896507740021,
+ "learning_rate": 0.0006,
+ "loss": 3.4886298179626465,
+ "step": 5606
+ },
+ {
+ "epoch": 77.88073394495413,
+ "grad_norm": 0.30120763182640076,
+ "learning_rate": 0.0006,
+ "loss": 3.5012121200561523,
+ "step": 5607
+ },
+ {
+ "epoch": 77.89471384884229,
+ "grad_norm": 0.2766421139240265,
+ "learning_rate": 0.0006,
+ "loss": 3.465404748916626,
+ "step": 5608
+ },
+ {
+ "epoch": 77.90869375273044,
+ "grad_norm": 0.26150527596473694,
+ "learning_rate": 0.0006,
+ "loss": 3.505079984664917,
+ "step": 5609
+ },
+ {
+ "epoch": 77.92267365661861,
+ "grad_norm": 0.2585010826587677,
+ "learning_rate": 0.0006,
+ "loss": 3.46713924407959,
+ "step": 5610
+ },
+ {
+ "epoch": 77.93665356050677,
+ "grad_norm": 0.2746208608150482,
+ "learning_rate": 0.0006,
+ "loss": 3.464250087738037,
+ "step": 5611
+ },
+ {
+ "epoch": 77.95063346439493,
+ "grad_norm": 0.2630884647369385,
+ "learning_rate": 0.0006,
+ "loss": 3.4834718704223633,
+ "step": 5612
+ },
+ {
+ "epoch": 77.9646133682831,
+ "grad_norm": 0.23336872458457947,
+ "learning_rate": 0.0006,
+ "loss": 3.5086607933044434,
+ "step": 5613
+ },
+ {
+ "epoch": 77.97859327217125,
+ "grad_norm": 0.22938823699951172,
+ "learning_rate": 0.0006,
+ "loss": 3.5135412216186523,
+ "step": 5614
+ },
+ {
+ "epoch": 77.99257317605941,
+ "grad_norm": 0.22952115535736084,
+ "learning_rate": 0.0006,
+ "loss": 3.4909496307373047,
+ "step": 5615
+ },
+ {
+ "epoch": 78.0,
+ "grad_norm": 0.244375079870224,
+ "learning_rate": 0.0006,
+ "loss": 3.5009336471557617,
+ "step": 5616
+ },
+ {
+ "epoch": 78.0,
+ "eval_loss": 3.9880237579345703,
+ "eval_runtime": 46.3392,
+ "eval_samples_per_second": 52.698,
+ "eval_steps_per_second": 3.302,
+ "step": 5616
+ },
+ {
+ "epoch": 78.01397990388816,
+ "grad_norm": 0.21258895099163055,
+ "learning_rate": 0.0006,
+ "loss": 3.473972797393799,
+ "step": 5617
+ },
+ {
+ "epoch": 78.02795980777633,
+ "grad_norm": 0.24391628801822662,
+ "learning_rate": 0.0006,
+ "loss": 3.422597646713257,
+ "step": 5618
+ },
+ {
+ "epoch": 78.04193971166448,
+ "grad_norm": 0.2876848578453064,
+ "learning_rate": 0.0006,
+ "loss": 3.458035469055176,
+ "step": 5619
+ },
+ {
+ "epoch": 78.05591961555264,
+ "grad_norm": 0.29750117659568787,
+ "learning_rate": 0.0006,
+ "loss": 3.4394774436950684,
+ "step": 5620
+ },
+ {
+ "epoch": 78.06989951944081,
+ "grad_norm": 0.2604219615459442,
+ "learning_rate": 0.0006,
+ "loss": 3.450514793395996,
+ "step": 5621
+ },
+ {
+ "epoch": 78.08387942332897,
+ "grad_norm": 0.2383262813091278,
+ "learning_rate": 0.0006,
+ "loss": 3.4291372299194336,
+ "step": 5622
+ },
+ {
+ "epoch": 78.09785932721712,
+ "grad_norm": 0.2188589870929718,
+ "learning_rate": 0.0006,
+ "loss": 3.441857099533081,
+ "step": 5623
+ },
+ {
+ "epoch": 78.1118392311053,
+ "grad_norm": 0.20857281982898712,
+ "learning_rate": 0.0006,
+ "loss": 3.444624423980713,
+ "step": 5624
+ },
+ {
+ "epoch": 78.12581913499345,
+ "grad_norm": 0.25901344418525696,
+ "learning_rate": 0.0006,
+ "loss": 3.436108112335205,
+ "step": 5625
+ },
+ {
+ "epoch": 78.1397990388816,
+ "grad_norm": 0.29044362902641296,
+ "learning_rate": 0.0006,
+ "loss": 3.4631142616271973,
+ "step": 5626
+ },
+ {
+ "epoch": 78.15377894276976,
+ "grad_norm": 0.2697533071041107,
+ "learning_rate": 0.0006,
+ "loss": 3.47342586517334,
+ "step": 5627
+ },
+ {
+ "epoch": 78.16775884665793,
+ "grad_norm": 0.23660187423229218,
+ "learning_rate": 0.0006,
+ "loss": 3.4970450401306152,
+ "step": 5628
+ },
+ {
+ "epoch": 78.18173875054609,
+ "grad_norm": 0.2369665950536728,
+ "learning_rate": 0.0006,
+ "loss": 3.4965858459472656,
+ "step": 5629
+ },
+ {
+ "epoch": 78.19571865443424,
+ "grad_norm": 0.2571038603782654,
+ "learning_rate": 0.0006,
+ "loss": 3.412412166595459,
+ "step": 5630
+ },
+ {
+ "epoch": 78.20969855832242,
+ "grad_norm": 0.26016053557395935,
+ "learning_rate": 0.0006,
+ "loss": 3.4462265968322754,
+ "step": 5631
+ },
+ {
+ "epoch": 78.22367846221057,
+ "grad_norm": 0.2378724217414856,
+ "learning_rate": 0.0006,
+ "loss": 3.4451708793640137,
+ "step": 5632
+ },
+ {
+ "epoch": 78.23765836609873,
+ "grad_norm": 0.24232783913612366,
+ "learning_rate": 0.0006,
+ "loss": 3.4438111782073975,
+ "step": 5633
+ },
+ {
+ "epoch": 78.2516382699869,
+ "grad_norm": 0.23770418763160706,
+ "learning_rate": 0.0006,
+ "loss": 3.43533992767334,
+ "step": 5634
+ },
+ {
+ "epoch": 78.26561817387505,
+ "grad_norm": 0.23466856777668,
+ "learning_rate": 0.0006,
+ "loss": 3.48561954498291,
+ "step": 5635
+ },
+ {
+ "epoch": 78.27959807776321,
+ "grad_norm": 0.2326284646987915,
+ "learning_rate": 0.0006,
+ "loss": 3.473475217819214,
+ "step": 5636
+ },
+ {
+ "epoch": 78.29357798165138,
+ "grad_norm": 0.24022948741912842,
+ "learning_rate": 0.0006,
+ "loss": 3.4412283897399902,
+ "step": 5637
+ },
+ {
+ "epoch": 78.30755788553954,
+ "grad_norm": 0.2522888779640198,
+ "learning_rate": 0.0006,
+ "loss": 3.4387173652648926,
+ "step": 5638
+ },
+ {
+ "epoch": 78.3215377894277,
+ "grad_norm": 0.2409897744655609,
+ "learning_rate": 0.0006,
+ "loss": 3.4434142112731934,
+ "step": 5639
+ },
+ {
+ "epoch": 78.33551769331586,
+ "grad_norm": 0.24789150059223175,
+ "learning_rate": 0.0006,
+ "loss": 3.479180335998535,
+ "step": 5640
+ },
+ {
+ "epoch": 78.34949759720402,
+ "grad_norm": 0.23893289268016815,
+ "learning_rate": 0.0006,
+ "loss": 3.4569711685180664,
+ "step": 5641
+ },
+ {
+ "epoch": 78.36347750109218,
+ "grad_norm": 0.25813573598861694,
+ "learning_rate": 0.0006,
+ "loss": 3.4897937774658203,
+ "step": 5642
+ },
+ {
+ "epoch": 78.37745740498035,
+ "grad_norm": 0.2786903977394104,
+ "learning_rate": 0.0006,
+ "loss": 3.449057102203369,
+ "step": 5643
+ },
+ {
+ "epoch": 78.3914373088685,
+ "grad_norm": 0.2671049237251282,
+ "learning_rate": 0.0006,
+ "loss": 3.4653759002685547,
+ "step": 5644
+ },
+ {
+ "epoch": 78.40541721275666,
+ "grad_norm": 0.22132059931755066,
+ "learning_rate": 0.0006,
+ "loss": 3.469104766845703,
+ "step": 5645
+ },
+ {
+ "epoch": 78.41939711664482,
+ "grad_norm": 0.23016799986362457,
+ "learning_rate": 0.0006,
+ "loss": 3.459315776824951,
+ "step": 5646
+ },
+ {
+ "epoch": 78.43337702053299,
+ "grad_norm": 0.24416282773017883,
+ "learning_rate": 0.0006,
+ "loss": 3.455636978149414,
+ "step": 5647
+ },
+ {
+ "epoch": 78.44735692442114,
+ "grad_norm": 0.21846890449523926,
+ "learning_rate": 0.0006,
+ "loss": 3.448091506958008,
+ "step": 5648
+ },
+ {
+ "epoch": 78.4613368283093,
+ "grad_norm": 0.23508375883102417,
+ "learning_rate": 0.0006,
+ "loss": 3.4912142753601074,
+ "step": 5649
+ },
+ {
+ "epoch": 78.47531673219747,
+ "grad_norm": 0.2555168867111206,
+ "learning_rate": 0.0006,
+ "loss": 3.4540610313415527,
+ "step": 5650
+ },
+ {
+ "epoch": 78.48929663608563,
+ "grad_norm": 0.24908530712127686,
+ "learning_rate": 0.0006,
+ "loss": 3.4480438232421875,
+ "step": 5651
+ },
+ {
+ "epoch": 78.50327653997378,
+ "grad_norm": 0.21412776410579681,
+ "learning_rate": 0.0006,
+ "loss": 3.4866371154785156,
+ "step": 5652
+ },
+ {
+ "epoch": 78.51725644386195,
+ "grad_norm": 0.20922242105007172,
+ "learning_rate": 0.0006,
+ "loss": 3.478621006011963,
+ "step": 5653
+ },
+ {
+ "epoch": 78.53123634775011,
+ "grad_norm": 0.2246457040309906,
+ "learning_rate": 0.0006,
+ "loss": 3.481985569000244,
+ "step": 5654
+ },
+ {
+ "epoch": 78.54521625163827,
+ "grad_norm": 0.2635398805141449,
+ "learning_rate": 0.0006,
+ "loss": 3.4374074935913086,
+ "step": 5655
+ },
+ {
+ "epoch": 78.55919615552644,
+ "grad_norm": 0.24871022999286652,
+ "learning_rate": 0.0006,
+ "loss": 3.4646430015563965,
+ "step": 5656
+ },
+ {
+ "epoch": 78.57317605941459,
+ "grad_norm": 0.20784349739551544,
+ "learning_rate": 0.0006,
+ "loss": 3.5141677856445312,
+ "step": 5657
+ },
+ {
+ "epoch": 78.58715596330275,
+ "grad_norm": 0.22655104100704193,
+ "learning_rate": 0.0006,
+ "loss": 3.4698171615600586,
+ "step": 5658
+ },
+ {
+ "epoch": 78.60113586719092,
+ "grad_norm": 0.22383511066436768,
+ "learning_rate": 0.0006,
+ "loss": 3.444244146347046,
+ "step": 5659
+ },
+ {
+ "epoch": 78.61511577107908,
+ "grad_norm": 0.2113238275051117,
+ "learning_rate": 0.0006,
+ "loss": 3.465719223022461,
+ "step": 5660
+ },
+ {
+ "epoch": 78.62909567496723,
+ "grad_norm": 0.19101600348949432,
+ "learning_rate": 0.0006,
+ "loss": 3.484689712524414,
+ "step": 5661
+ },
+ {
+ "epoch": 78.6430755788554,
+ "grad_norm": 0.2073238044977188,
+ "learning_rate": 0.0006,
+ "loss": 3.46522855758667,
+ "step": 5662
+ },
+ {
+ "epoch": 78.65705548274356,
+ "grad_norm": 0.21808618307113647,
+ "learning_rate": 0.0006,
+ "loss": 3.479005813598633,
+ "step": 5663
+ },
+ {
+ "epoch": 78.67103538663171,
+ "grad_norm": 0.203338161110878,
+ "learning_rate": 0.0006,
+ "loss": 3.492825984954834,
+ "step": 5664
+ },
+ {
+ "epoch": 78.68501529051987,
+ "grad_norm": 0.23006507754325867,
+ "learning_rate": 0.0006,
+ "loss": 3.4999642372131348,
+ "step": 5665
+ },
+ {
+ "epoch": 78.69899519440804,
+ "grad_norm": 0.2446610927581787,
+ "learning_rate": 0.0006,
+ "loss": 3.48500919342041,
+ "step": 5666
+ },
+ {
+ "epoch": 78.7129750982962,
+ "grad_norm": 0.2601945400238037,
+ "learning_rate": 0.0006,
+ "loss": 3.4861927032470703,
+ "step": 5667
+ },
+ {
+ "epoch": 78.72695500218435,
+ "grad_norm": 0.23464927077293396,
+ "learning_rate": 0.0006,
+ "loss": 3.474249839782715,
+ "step": 5668
+ },
+ {
+ "epoch": 78.74093490607252,
+ "grad_norm": 0.21698802709579468,
+ "learning_rate": 0.0006,
+ "loss": 3.499706745147705,
+ "step": 5669
+ },
+ {
+ "epoch": 78.75491480996068,
+ "grad_norm": 0.22146548330783844,
+ "learning_rate": 0.0006,
+ "loss": 3.496151924133301,
+ "step": 5670
+ },
+ {
+ "epoch": 78.76889471384884,
+ "grad_norm": 0.2459285408258438,
+ "learning_rate": 0.0006,
+ "loss": 3.4743995666503906,
+ "step": 5671
+ },
+ {
+ "epoch": 78.78287461773701,
+ "grad_norm": 0.2358015924692154,
+ "learning_rate": 0.0006,
+ "loss": 3.479529857635498,
+ "step": 5672
+ },
+ {
+ "epoch": 78.79685452162516,
+ "grad_norm": 0.23457956314086914,
+ "learning_rate": 0.0006,
+ "loss": 3.4957330226898193,
+ "step": 5673
+ },
+ {
+ "epoch": 78.81083442551332,
+ "grad_norm": 0.21969331800937653,
+ "learning_rate": 0.0006,
+ "loss": 3.4782285690307617,
+ "step": 5674
+ },
+ {
+ "epoch": 78.82481432940149,
+ "grad_norm": 0.23743604123592377,
+ "learning_rate": 0.0006,
+ "loss": 3.497030735015869,
+ "step": 5675
+ },
+ {
+ "epoch": 78.83879423328965,
+ "grad_norm": 0.23925618827342987,
+ "learning_rate": 0.0006,
+ "loss": 3.495553493499756,
+ "step": 5676
+ },
+ {
+ "epoch": 78.8527741371778,
+ "grad_norm": 0.20647381246089935,
+ "learning_rate": 0.0006,
+ "loss": 3.47171688079834,
+ "step": 5677
+ },
+ {
+ "epoch": 78.86675404106597,
+ "grad_norm": 0.20148544013500214,
+ "learning_rate": 0.0006,
+ "loss": 3.4736156463623047,
+ "step": 5678
+ },
+ {
+ "epoch": 78.88073394495413,
+ "grad_norm": 0.2097293585538864,
+ "learning_rate": 0.0006,
+ "loss": 3.436239719390869,
+ "step": 5679
+ },
+ {
+ "epoch": 78.89471384884229,
+ "grad_norm": 0.21129930019378662,
+ "learning_rate": 0.0006,
+ "loss": 3.4720277786254883,
+ "step": 5680
+ },
+ {
+ "epoch": 78.90869375273044,
+ "grad_norm": 0.2049081027507782,
+ "learning_rate": 0.0006,
+ "loss": 3.476945400238037,
+ "step": 5681
+ },
+ {
+ "epoch": 78.92267365661861,
+ "grad_norm": 0.2183583825826645,
+ "learning_rate": 0.0006,
+ "loss": 3.4852776527404785,
+ "step": 5682
+ },
+ {
+ "epoch": 78.93665356050677,
+ "grad_norm": 0.21253879368305206,
+ "learning_rate": 0.0006,
+ "loss": 3.4781546592712402,
+ "step": 5683
+ },
+ {
+ "epoch": 78.95063346439493,
+ "grad_norm": 0.20699666440486908,
+ "learning_rate": 0.0006,
+ "loss": 3.450756788253784,
+ "step": 5684
+ },
+ {
+ "epoch": 78.9646133682831,
+ "grad_norm": 0.25612396001815796,
+ "learning_rate": 0.0006,
+ "loss": 3.4762487411499023,
+ "step": 5685
+ },
+ {
+ "epoch": 78.97859327217125,
+ "grad_norm": 0.26524025201797485,
+ "learning_rate": 0.0006,
+ "loss": 3.4931769371032715,
+ "step": 5686
+ },
+ {
+ "epoch": 78.99257317605941,
+ "grad_norm": 0.2541322410106659,
+ "learning_rate": 0.0006,
+ "loss": 3.468247413635254,
+ "step": 5687
+ },
+ {
+ "epoch": 79.0,
+ "grad_norm": 0.2663288414478302,
+ "learning_rate": 0.0006,
+ "loss": 3.487189292907715,
+ "step": 5688
+ },
+ {
+ "epoch": 79.0,
+ "eval_loss": 3.988255739212036,
+ "eval_runtime": 46.5996,
+ "eval_samples_per_second": 52.404,
+ "eval_steps_per_second": 3.283,
+ "step": 5688
+ },
+ {
+ "epoch": 79.01397990388816,
+ "grad_norm": 0.2503090500831604,
+ "learning_rate": 0.0006,
+ "loss": 3.452444553375244,
+ "step": 5689
+ },
+ {
+ "epoch": 79.02795980777633,
+ "grad_norm": 0.28306853771209717,
+ "learning_rate": 0.0006,
+ "loss": 3.4412660598754883,
+ "step": 5690
+ },
+ {
+ "epoch": 79.04193971166448,
+ "grad_norm": 0.3115243911743164,
+ "learning_rate": 0.0006,
+ "loss": 3.4124369621276855,
+ "step": 5691
+ },
+ {
+ "epoch": 79.05591961555264,
+ "grad_norm": 0.273013710975647,
+ "learning_rate": 0.0006,
+ "loss": 3.4493820667266846,
+ "step": 5692
+ },
+ {
+ "epoch": 79.06989951944081,
+ "grad_norm": 0.22326645255088806,
+ "learning_rate": 0.0006,
+ "loss": 3.4517998695373535,
+ "step": 5693
+ },
+ {
+ "epoch": 79.08387942332897,
+ "grad_norm": 0.24398484826087952,
+ "learning_rate": 0.0006,
+ "loss": 3.4242095947265625,
+ "step": 5694
+ },
+ {
+ "epoch": 79.09785932721712,
+ "grad_norm": 0.25253739953041077,
+ "learning_rate": 0.0006,
+ "loss": 3.4249048233032227,
+ "step": 5695
+ },
+ {
+ "epoch": 79.1118392311053,
+ "grad_norm": 0.2664744555950165,
+ "learning_rate": 0.0006,
+ "loss": 3.452235698699951,
+ "step": 5696
+ },
+ {
+ "epoch": 79.12581913499345,
+ "grad_norm": 0.28276678919792175,
+ "learning_rate": 0.0006,
+ "loss": 3.4641671180725098,
+ "step": 5697
+ },
+ {
+ "epoch": 79.1397990388816,
+ "grad_norm": 0.2725527882575989,
+ "learning_rate": 0.0006,
+ "loss": 3.4483447074890137,
+ "step": 5698
+ },
+ {
+ "epoch": 79.15377894276976,
+ "grad_norm": 0.2702547609806061,
+ "learning_rate": 0.0006,
+ "loss": 3.4427199363708496,
+ "step": 5699
+ },
+ {
+ "epoch": 79.16775884665793,
+ "grad_norm": 0.2617502212524414,
+ "learning_rate": 0.0006,
+ "loss": 3.46244740486145,
+ "step": 5700
+ },
+ {
+ "epoch": 79.18173875054609,
+ "grad_norm": 0.22378475964069366,
+ "learning_rate": 0.0006,
+ "loss": 3.460523843765259,
+ "step": 5701
+ },
+ {
+ "epoch": 79.19571865443424,
+ "grad_norm": 0.2233104556798935,
+ "learning_rate": 0.0006,
+ "loss": 3.425114631652832,
+ "step": 5702
+ },
+ {
+ "epoch": 79.20969855832242,
+ "grad_norm": 0.24079658091068268,
+ "learning_rate": 0.0006,
+ "loss": 3.4773077964782715,
+ "step": 5703
+ },
+ {
+ "epoch": 79.22367846221057,
+ "grad_norm": 0.24479007720947266,
+ "learning_rate": 0.0006,
+ "loss": 3.438293218612671,
+ "step": 5704
+ },
+ {
+ "epoch": 79.23765836609873,
+ "grad_norm": 0.24505102634429932,
+ "learning_rate": 0.0006,
+ "loss": 3.4798545837402344,
+ "step": 5705
+ },
+ {
+ "epoch": 79.2516382699869,
+ "grad_norm": 0.22588814795017242,
+ "learning_rate": 0.0006,
+ "loss": 3.4557571411132812,
+ "step": 5706
+ },
+ {
+ "epoch": 79.26561817387505,
+ "grad_norm": 0.24139748513698578,
+ "learning_rate": 0.0006,
+ "loss": 3.4543919563293457,
+ "step": 5707
+ },
+ {
+ "epoch": 79.27959807776321,
+ "grad_norm": 0.21584808826446533,
+ "learning_rate": 0.0006,
+ "loss": 3.4505133628845215,
+ "step": 5708
+ },
+ {
+ "epoch": 79.29357798165138,
+ "grad_norm": 0.2180371880531311,
+ "learning_rate": 0.0006,
+ "loss": 3.4630508422851562,
+ "step": 5709
+ },
+ {
+ "epoch": 79.30755788553954,
+ "grad_norm": 0.21993961930274963,
+ "learning_rate": 0.0006,
+ "loss": 3.455995559692383,
+ "step": 5710
+ },
+ {
+ "epoch": 79.3215377894277,
+ "grad_norm": 0.2302546501159668,
+ "learning_rate": 0.0006,
+ "loss": 3.4884848594665527,
+ "step": 5711
+ },
+ {
+ "epoch": 79.33551769331586,
+ "grad_norm": 0.2554272711277008,
+ "learning_rate": 0.0006,
+ "loss": 3.440516948699951,
+ "step": 5712
+ },
+ {
+ "epoch": 79.34949759720402,
+ "grad_norm": 0.2361014038324356,
+ "learning_rate": 0.0006,
+ "loss": 3.4706239700317383,
+ "step": 5713
+ },
+ {
+ "epoch": 79.36347750109218,
+ "grad_norm": 0.22390307486057281,
+ "learning_rate": 0.0006,
+ "loss": 3.4447524547576904,
+ "step": 5714
+ },
+ {
+ "epoch": 79.37745740498035,
+ "grad_norm": 0.2271745353937149,
+ "learning_rate": 0.0006,
+ "loss": 3.47141170501709,
+ "step": 5715
+ },
+ {
+ "epoch": 79.3914373088685,
+ "grad_norm": 0.25239962339401245,
+ "learning_rate": 0.0006,
+ "loss": 3.4772067070007324,
+ "step": 5716
+ },
+ {
+ "epoch": 79.40541721275666,
+ "grad_norm": 0.2375272810459137,
+ "learning_rate": 0.0006,
+ "loss": 3.45712947845459,
+ "step": 5717
+ },
+ {
+ "epoch": 79.41939711664482,
+ "grad_norm": 0.22904036939144135,
+ "learning_rate": 0.0006,
+ "loss": 3.4753048419952393,
+ "step": 5718
+ },
+ {
+ "epoch": 79.43337702053299,
+ "grad_norm": 0.24097497761249542,
+ "learning_rate": 0.0006,
+ "loss": 3.462437391281128,
+ "step": 5719
+ },
+ {
+ "epoch": 79.44735692442114,
+ "grad_norm": 0.25267651677131653,
+ "learning_rate": 0.0006,
+ "loss": 3.4526681900024414,
+ "step": 5720
+ },
+ {
+ "epoch": 79.4613368283093,
+ "grad_norm": 0.25850236415863037,
+ "learning_rate": 0.0006,
+ "loss": 3.452427625656128,
+ "step": 5721
+ },
+ {
+ "epoch": 79.47531673219747,
+ "grad_norm": 0.26425909996032715,
+ "learning_rate": 0.0006,
+ "loss": 3.4524970054626465,
+ "step": 5722
+ },
+ {
+ "epoch": 79.48929663608563,
+ "grad_norm": 0.2287026345729828,
+ "learning_rate": 0.0006,
+ "loss": 3.4680042266845703,
+ "step": 5723
+ },
+ {
+ "epoch": 79.50327653997378,
+ "grad_norm": 0.2357720285654068,
+ "learning_rate": 0.0006,
+ "loss": 3.4661996364593506,
+ "step": 5724
+ },
+ {
+ "epoch": 79.51725644386195,
+ "grad_norm": 0.2378997653722763,
+ "learning_rate": 0.0006,
+ "loss": 3.4744834899902344,
+ "step": 5725
+ },
+ {
+ "epoch": 79.53123634775011,
+ "grad_norm": 0.2487446367740631,
+ "learning_rate": 0.0006,
+ "loss": 3.4760963916778564,
+ "step": 5726
+ },
+ {
+ "epoch": 79.54521625163827,
+ "grad_norm": 0.25056660175323486,
+ "learning_rate": 0.0006,
+ "loss": 3.4646544456481934,
+ "step": 5727
+ },
+ {
+ "epoch": 79.55919615552644,
+ "grad_norm": 0.22458213567733765,
+ "learning_rate": 0.0006,
+ "loss": 3.48275089263916,
+ "step": 5728
+ },
+ {
+ "epoch": 79.57317605941459,
+ "grad_norm": 0.22517307102680206,
+ "learning_rate": 0.0006,
+ "loss": 3.4858477115631104,
+ "step": 5729
+ },
+ {
+ "epoch": 79.58715596330275,
+ "grad_norm": 0.2253974974155426,
+ "learning_rate": 0.0006,
+ "loss": 3.4601099491119385,
+ "step": 5730
+ },
+ {
+ "epoch": 79.60113586719092,
+ "grad_norm": 0.22956253588199615,
+ "learning_rate": 0.0006,
+ "loss": 3.4599132537841797,
+ "step": 5731
+ },
+ {
+ "epoch": 79.61511577107908,
+ "grad_norm": 0.26346060633659363,
+ "learning_rate": 0.0006,
+ "loss": 3.4992642402648926,
+ "step": 5732
+ },
+ {
+ "epoch": 79.62909567496723,
+ "grad_norm": 0.2493542581796646,
+ "learning_rate": 0.0006,
+ "loss": 3.4743075370788574,
+ "step": 5733
+ },
+ {
+ "epoch": 79.6430755788554,
+ "grad_norm": 0.2473273128271103,
+ "learning_rate": 0.0006,
+ "loss": 3.487657070159912,
+ "step": 5734
+ },
+ {
+ "epoch": 79.65705548274356,
+ "grad_norm": 0.21894414722919464,
+ "learning_rate": 0.0006,
+ "loss": 3.4761929512023926,
+ "step": 5735
+ },
+ {
+ "epoch": 79.67103538663171,
+ "grad_norm": 0.20691576600074768,
+ "learning_rate": 0.0006,
+ "loss": 3.468233585357666,
+ "step": 5736
+ },
+ {
+ "epoch": 79.68501529051987,
+ "grad_norm": 0.22317089140415192,
+ "learning_rate": 0.0006,
+ "loss": 3.4676461219787598,
+ "step": 5737
+ },
+ {
+ "epoch": 79.69899519440804,
+ "grad_norm": 0.22669419646263123,
+ "learning_rate": 0.0006,
+ "loss": 3.4934377670288086,
+ "step": 5738
+ },
+ {
+ "epoch": 79.7129750982962,
+ "grad_norm": 0.23321859538555145,
+ "learning_rate": 0.0006,
+ "loss": 3.470146417617798,
+ "step": 5739
+ },
+ {
+ "epoch": 79.72695500218435,
+ "grad_norm": 0.21628828346729279,
+ "learning_rate": 0.0006,
+ "loss": 3.464975118637085,
+ "step": 5740
+ },
+ {
+ "epoch": 79.74093490607252,
+ "grad_norm": 0.22889219224452972,
+ "learning_rate": 0.0006,
+ "loss": 3.464859962463379,
+ "step": 5741
+ },
+ {
+ "epoch": 79.75491480996068,
+ "grad_norm": 0.23041504621505737,
+ "learning_rate": 0.0006,
+ "loss": 3.478351593017578,
+ "step": 5742
+ },
+ {
+ "epoch": 79.76889471384884,
+ "grad_norm": 0.2246071994304657,
+ "learning_rate": 0.0006,
+ "loss": 3.4927172660827637,
+ "step": 5743
+ },
+ {
+ "epoch": 79.78287461773701,
+ "grad_norm": 0.2326883226633072,
+ "learning_rate": 0.0006,
+ "loss": 3.4568581581115723,
+ "step": 5744
+ },
+ {
+ "epoch": 79.79685452162516,
+ "grad_norm": 0.22930850088596344,
+ "learning_rate": 0.0006,
+ "loss": 3.4665210247039795,
+ "step": 5745
+ },
+ {
+ "epoch": 79.81083442551332,
+ "grad_norm": 0.22361859679222107,
+ "learning_rate": 0.0006,
+ "loss": 3.4809937477111816,
+ "step": 5746
+ },
+ {
+ "epoch": 79.82481432940149,
+ "grad_norm": 0.20599117875099182,
+ "learning_rate": 0.0006,
+ "loss": 3.4918923377990723,
+ "step": 5747
+ },
+ {
+ "epoch": 79.83879423328965,
+ "grad_norm": 0.230980783700943,
+ "learning_rate": 0.0006,
+ "loss": 3.4691390991210938,
+ "step": 5748
+ },
+ {
+ "epoch": 79.8527741371778,
+ "grad_norm": 0.2432822734117508,
+ "learning_rate": 0.0006,
+ "loss": 3.465531349182129,
+ "step": 5749
+ },
+ {
+ "epoch": 79.86675404106597,
+ "grad_norm": 0.2326139360666275,
+ "learning_rate": 0.0006,
+ "loss": 3.464198350906372,
+ "step": 5750
+ },
+ {
+ "epoch": 79.88073394495413,
+ "grad_norm": 0.22227711975574493,
+ "learning_rate": 0.0006,
+ "loss": 3.4587674140930176,
+ "step": 5751
+ },
+ {
+ "epoch": 79.89471384884229,
+ "grad_norm": 0.20254085958003998,
+ "learning_rate": 0.0006,
+ "loss": 3.4628102779388428,
+ "step": 5752
+ },
+ {
+ "epoch": 79.90869375273044,
+ "grad_norm": 0.2130574733018875,
+ "learning_rate": 0.0006,
+ "loss": 3.491631031036377,
+ "step": 5753
+ },
+ {
+ "epoch": 79.92267365661861,
+ "grad_norm": 0.2221127301454544,
+ "learning_rate": 0.0006,
+ "loss": 3.477632522583008,
+ "step": 5754
+ },
+ {
+ "epoch": 79.93665356050677,
+ "grad_norm": 0.21647712588310242,
+ "learning_rate": 0.0006,
+ "loss": 3.470122814178467,
+ "step": 5755
+ },
+ {
+ "epoch": 79.95063346439493,
+ "grad_norm": 0.21333082020282745,
+ "learning_rate": 0.0006,
+ "loss": 3.4466612339019775,
+ "step": 5756
+ },
+ {
+ "epoch": 79.9646133682831,
+ "grad_norm": 0.24608036875724792,
+ "learning_rate": 0.0006,
+ "loss": 3.5203800201416016,
+ "step": 5757
+ },
+ {
+ "epoch": 79.97859327217125,
+ "grad_norm": 0.22165493667125702,
+ "learning_rate": 0.0006,
+ "loss": 3.467963457107544,
+ "step": 5758
+ },
+ {
+ "epoch": 79.99257317605941,
+ "grad_norm": 0.1960810422897339,
+ "learning_rate": 0.0006,
+ "loss": 3.4682164192199707,
+ "step": 5759
+ },
+ {
+ "epoch": 80.0,
+ "grad_norm": 0.23430649936199188,
+ "learning_rate": 0.0006,
+ "loss": 3.4980459213256836,
+ "step": 5760
+ },
+ {
+ "epoch": 80.01397990388816,
+ "grad_norm": 0.21651697158813477,
+ "learning_rate": 0.0006,
+ "loss": 3.4181911945343018,
+ "step": 5761
+ },
+ {
+ "epoch": 80.02795980777633,
+ "grad_norm": 0.2599288821220398,
+ "learning_rate": 0.0006,
+ "loss": 3.438791275024414,
+ "step": 5762
+ },
+ {
+ "epoch": 80.04193971166448,
+ "grad_norm": 0.26531898975372314,
+ "learning_rate": 0.0006,
+ "loss": 3.4669299125671387,
+ "step": 5763
+ },
+ {
+ "epoch": 80.05591961555264,
+ "grad_norm": 0.2965814769268036,
+ "learning_rate": 0.0006,
+ "loss": 3.3976120948791504,
+ "step": 5764
+ },
+ {
+ "epoch": 80.06989951944081,
+ "grad_norm": 0.28300485014915466,
+ "learning_rate": 0.0006,
+ "loss": 3.4121291637420654,
+ "step": 5765
+ },
+ {
+ "epoch": 80.08387942332897,
+ "grad_norm": 0.2511967718601227,
+ "learning_rate": 0.0006,
+ "loss": 3.4298207759857178,
+ "step": 5766
+ },
+ {
+ "epoch": 80.09785932721712,
+ "grad_norm": 0.2919110059738159,
+ "learning_rate": 0.0006,
+ "loss": 3.4311981201171875,
+ "step": 5767
+ },
+ {
+ "epoch": 80.1118392311053,
+ "grad_norm": 0.3141780197620392,
+ "learning_rate": 0.0006,
+ "loss": 3.435318946838379,
+ "step": 5768
+ },
+ {
+ "epoch": 80.12581913499345,
+ "grad_norm": 0.29728513956069946,
+ "learning_rate": 0.0006,
+ "loss": 3.4430551528930664,
+ "step": 5769
+ },
+ {
+ "epoch": 80.1397990388816,
+ "grad_norm": 0.2732396423816681,
+ "learning_rate": 0.0006,
+ "loss": 3.4580936431884766,
+ "step": 5770
+ },
+ {
+ "epoch": 80.15377894276976,
+ "grad_norm": 0.2561073303222656,
+ "learning_rate": 0.0006,
+ "loss": 3.443518877029419,
+ "step": 5771
+ },
+ {
+ "epoch": 80.16775884665793,
+ "grad_norm": 0.23583678901195526,
+ "learning_rate": 0.0006,
+ "loss": 3.4591064453125,
+ "step": 5772
+ },
+ {
+ "epoch": 80.18173875054609,
+ "grad_norm": 0.23391224443912506,
+ "learning_rate": 0.0006,
+ "loss": 3.4735608100891113,
+ "step": 5773
+ },
+ {
+ "epoch": 80.19571865443424,
+ "grad_norm": 0.24136026203632355,
+ "learning_rate": 0.0006,
+ "loss": 3.4389798641204834,
+ "step": 5774
+ },
+ {
+ "epoch": 80.20969855832242,
+ "grad_norm": 0.217203289270401,
+ "learning_rate": 0.0006,
+ "loss": 3.4284729957580566,
+ "step": 5775
+ },
+ {
+ "epoch": 80.22367846221057,
+ "grad_norm": 0.22632482647895813,
+ "learning_rate": 0.0006,
+ "loss": 3.4612345695495605,
+ "step": 5776
+ },
+ {
+ "epoch": 80.23765836609873,
+ "grad_norm": 0.23246599733829498,
+ "learning_rate": 0.0006,
+ "loss": 3.461637496948242,
+ "step": 5777
+ },
+ {
+ "epoch": 80.2516382699869,
+ "grad_norm": 0.21817834675312042,
+ "learning_rate": 0.0006,
+ "loss": 3.483128070831299,
+ "step": 5778
+ },
+ {
+ "epoch": 80.26561817387505,
+ "grad_norm": 0.2208380103111267,
+ "learning_rate": 0.0006,
+ "loss": 3.4182612895965576,
+ "step": 5779
+ },
+ {
+ "epoch": 80.27959807776321,
+ "grad_norm": 0.21948039531707764,
+ "learning_rate": 0.0006,
+ "loss": 3.4268085956573486,
+ "step": 5780
+ },
+ {
+ "epoch": 80.29357798165138,
+ "grad_norm": 0.24356511235237122,
+ "learning_rate": 0.0006,
+ "loss": 3.4365224838256836,
+ "step": 5781
+ },
+ {
+ "epoch": 80.30755788553954,
+ "grad_norm": 0.2545076012611389,
+ "learning_rate": 0.0006,
+ "loss": 3.4595799446105957,
+ "step": 5782
+ },
+ {
+ "epoch": 80.3215377894277,
+ "grad_norm": 0.23793567717075348,
+ "learning_rate": 0.0006,
+ "loss": 3.4590306282043457,
+ "step": 5783
+ },
+ {
+ "epoch": 80.33551769331586,
+ "grad_norm": 0.22215817868709564,
+ "learning_rate": 0.0006,
+ "loss": 3.4594779014587402,
+ "step": 5784
+ },
+ {
+ "epoch": 80.34949759720402,
+ "grad_norm": 0.24598804116249084,
+ "learning_rate": 0.0006,
+ "loss": 3.4702706336975098,
+ "step": 5785
+ },
+ {
+ "epoch": 80.36347750109218,
+ "grad_norm": 0.26150956749916077,
+ "learning_rate": 0.0006,
+ "loss": 3.504547357559204,
+ "step": 5786
+ },
+ {
+ "epoch": 80.37745740498035,
+ "grad_norm": 0.22220160067081451,
+ "learning_rate": 0.0006,
+ "loss": 3.4633049964904785,
+ "step": 5787
+ },
+ {
+ "epoch": 80.3914373088685,
+ "grad_norm": 0.2343321293592453,
+ "learning_rate": 0.0006,
+ "loss": 3.4659838676452637,
+ "step": 5788
+ },
+ {
+ "epoch": 80.40541721275666,
+ "grad_norm": 0.2196560502052307,
+ "learning_rate": 0.0006,
+ "loss": 3.477983236312866,
+ "step": 5789
+ },
+ {
+ "epoch": 80.41939711664482,
+ "grad_norm": 0.22598406672477722,
+ "learning_rate": 0.0006,
+ "loss": 3.4452672004699707,
+ "step": 5790
+ },
+ {
+ "epoch": 80.43337702053299,
+ "grad_norm": 0.21038709580898285,
+ "learning_rate": 0.0006,
+ "loss": 3.4401512145996094,
+ "step": 5791
+ },
+ {
+ "epoch": 80.44735692442114,
+ "grad_norm": 0.21702879667282104,
+ "learning_rate": 0.0006,
+ "loss": 3.482847213745117,
+ "step": 5792
+ },
+ {
+ "epoch": 80.4613368283093,
+ "grad_norm": 0.22423747181892395,
+ "learning_rate": 0.0006,
+ "loss": 3.454658031463623,
+ "step": 5793
+ },
+ {
+ "epoch": 80.47531673219747,
+ "grad_norm": 0.2156888246536255,
+ "learning_rate": 0.0006,
+ "loss": 3.4609858989715576,
+ "step": 5794
+ },
+ {
+ "epoch": 80.48929663608563,
+ "grad_norm": 0.22172603011131287,
+ "learning_rate": 0.0006,
+ "loss": 3.479116916656494,
+ "step": 5795
+ },
+ {
+ "epoch": 80.50327653997378,
+ "grad_norm": 0.22773809731006622,
+ "learning_rate": 0.0006,
+ "loss": 3.457540988922119,
+ "step": 5796
+ },
+ {
+ "epoch": 80.51725644386195,
+ "grad_norm": 0.2215251326560974,
+ "learning_rate": 0.0006,
+ "loss": 3.451545476913452,
+ "step": 5797
+ },
+ {
+ "epoch": 80.53123634775011,
+ "grad_norm": 0.22479848563671112,
+ "learning_rate": 0.0006,
+ "loss": 3.4318554401397705,
+ "step": 5798
+ },
+ {
+ "epoch": 80.54521625163827,
+ "grad_norm": 0.23643286526203156,
+ "learning_rate": 0.0006,
+ "loss": 3.448240280151367,
+ "step": 5799
+ },
+ {
+ "epoch": 80.55919615552644,
+ "grad_norm": 0.22819532454013824,
+ "learning_rate": 0.0006,
+ "loss": 3.4966626167297363,
+ "step": 5800
+ },
+ {
+ "epoch": 80.57317605941459,
+ "grad_norm": 0.2213105857372284,
+ "learning_rate": 0.0006,
+ "loss": 3.4401497840881348,
+ "step": 5801
+ },
+ {
+ "epoch": 80.58715596330275,
+ "grad_norm": 0.23570658266544342,
+ "learning_rate": 0.0006,
+ "loss": 3.4650940895080566,
+ "step": 5802
+ },
+ {
+ "epoch": 80.60113586719092,
+ "grad_norm": 0.2692683935165405,
+ "learning_rate": 0.0006,
+ "loss": 3.502164125442505,
+ "step": 5803
+ },
+ {
+ "epoch": 80.61511577107908,
+ "grad_norm": 0.2756805121898651,
+ "learning_rate": 0.0006,
+ "loss": 3.4653677940368652,
+ "step": 5804
+ },
+ {
+ "epoch": 80.62909567496723,
+ "grad_norm": 0.2219257950782776,
+ "learning_rate": 0.0006,
+ "loss": 3.459779977798462,
+ "step": 5805
+ },
+ {
+ "epoch": 80.6430755788554,
+ "grad_norm": 0.21970611810684204,
+ "learning_rate": 0.0006,
+ "loss": 3.451747417449951,
+ "step": 5806
+ },
+ {
+ "epoch": 80.65705548274356,
+ "grad_norm": 0.22080424427986145,
+ "learning_rate": 0.0006,
+ "loss": 3.469550609588623,
+ "step": 5807
+ },
+ {
+ "epoch": 80.67103538663171,
+ "grad_norm": 0.22235846519470215,
+ "learning_rate": 0.0006,
+ "loss": 3.488161563873291,
+ "step": 5808
+ },
+ {
+ "epoch": 80.68501529051987,
+ "grad_norm": 0.24261491000652313,
+ "learning_rate": 0.0006,
+ "loss": 3.486595630645752,
+ "step": 5809
+ },
+ {
+ "epoch": 80.69899519440804,
+ "grad_norm": 0.20906759798526764,
+ "learning_rate": 0.0006,
+ "loss": 3.450944423675537,
+ "step": 5810
+ },
+ {
+ "epoch": 80.7129750982962,
+ "grad_norm": 0.225368469953537,
+ "learning_rate": 0.0006,
+ "loss": 3.4868040084838867,
+ "step": 5811
+ },
+ {
+ "epoch": 80.72695500218435,
+ "grad_norm": 0.254836767911911,
+ "learning_rate": 0.0006,
+ "loss": 3.5024094581604004,
+ "step": 5812
+ },
+ {
+ "epoch": 80.74093490607252,
+ "grad_norm": 0.23393481969833374,
+ "learning_rate": 0.0006,
+ "loss": 3.453914165496826,
+ "step": 5813
+ },
+ {
+ "epoch": 80.75491480996068,
+ "grad_norm": 0.2270888388156891,
+ "learning_rate": 0.0006,
+ "loss": 3.4943716526031494,
+ "step": 5814
+ },
+ {
+ "epoch": 80.76889471384884,
+ "grad_norm": 0.24670317769050598,
+ "learning_rate": 0.0006,
+ "loss": 3.504342794418335,
+ "step": 5815
+ },
+ {
+ "epoch": 80.78287461773701,
+ "grad_norm": 0.23893672227859497,
+ "learning_rate": 0.0006,
+ "loss": 3.452670097351074,
+ "step": 5816
+ },
+ {
+ "epoch": 80.79685452162516,
+ "grad_norm": 0.2175605446100235,
+ "learning_rate": 0.0006,
+ "loss": 3.4578192234039307,
+ "step": 5817
+ },
+ {
+ "epoch": 80.81083442551332,
+ "grad_norm": 0.2156844139099121,
+ "learning_rate": 0.0006,
+ "loss": 3.4781908988952637,
+ "step": 5818
+ },
+ {
+ "epoch": 80.82481432940149,
+ "grad_norm": 0.2505752444267273,
+ "learning_rate": 0.0006,
+ "loss": 3.493128538131714,
+ "step": 5819
+ },
+ {
+ "epoch": 80.83879423328965,
+ "grad_norm": 0.2448679655790329,
+ "learning_rate": 0.0006,
+ "loss": 3.472296714782715,
+ "step": 5820
+ },
+ {
+ "epoch": 80.8527741371778,
+ "grad_norm": 0.22968287765979767,
+ "learning_rate": 0.0006,
+ "loss": 3.4909615516662598,
+ "step": 5821
+ },
+ {
+ "epoch": 80.86675404106597,
+ "grad_norm": 0.24920479953289032,
+ "learning_rate": 0.0006,
+ "loss": 3.4653358459472656,
+ "step": 5822
+ },
+ {
+ "epoch": 80.88073394495413,
+ "grad_norm": 0.24923524260520935,
+ "learning_rate": 0.0006,
+ "loss": 3.4682798385620117,
+ "step": 5823
+ },
+ {
+ "epoch": 80.89471384884229,
+ "grad_norm": 0.2546396255493164,
+ "learning_rate": 0.0006,
+ "loss": 3.4581995010375977,
+ "step": 5824
+ },
+ {
+ "epoch": 80.90869375273044,
+ "grad_norm": 0.27739930152893066,
+ "learning_rate": 0.0006,
+ "loss": 3.476200819015503,
+ "step": 5825
+ },
+ {
+ "epoch": 80.92267365661861,
+ "grad_norm": 0.25831520557403564,
+ "learning_rate": 0.0006,
+ "loss": 3.5037174224853516,
+ "step": 5826
+ },
+ {
+ "epoch": 80.93665356050677,
+ "grad_norm": 0.2223384827375412,
+ "learning_rate": 0.0006,
+ "loss": 3.458250045776367,
+ "step": 5827
+ },
+ {
+ "epoch": 80.95063346439493,
+ "grad_norm": 0.22563499212265015,
+ "learning_rate": 0.0006,
+ "loss": 3.474761486053467,
+ "step": 5828
+ },
+ {
+ "epoch": 80.9646133682831,
+ "grad_norm": 0.2326449155807495,
+ "learning_rate": 0.0006,
+ "loss": 3.500535011291504,
+ "step": 5829
+ },
+ {
+ "epoch": 80.97859327217125,
+ "grad_norm": 0.23983219265937805,
+ "learning_rate": 0.0006,
+ "loss": 3.462369680404663,
+ "step": 5830
+ },
+ {
+ "epoch": 80.99257317605941,
+ "grad_norm": 0.2850669324398041,
+ "learning_rate": 0.0006,
+ "loss": 3.4906742572784424,
+ "step": 5831
+ },
+ {
+ "epoch": 81.0,
+ "grad_norm": 0.33799314498901367,
+ "learning_rate": 0.0006,
+ "loss": 3.5178146362304688,
+ "step": 5832
+ },
+ {
+ "epoch": 81.0,
+ "eval_loss": 4.0064849853515625,
+ "eval_runtime": 46.5715,
+ "eval_samples_per_second": 52.435,
+ "eval_steps_per_second": 3.285,
+ "step": 5832
+ },
+ {
+ "epoch": 81.01397990388816,
+ "grad_norm": 0.2734781801700592,
+ "learning_rate": 0.0006,
+ "loss": 3.44972562789917,
+ "step": 5833
+ },
+ {
+ "epoch": 81.02795980777633,
+ "grad_norm": 0.24696482717990875,
+ "learning_rate": 0.0006,
+ "loss": 3.43271541595459,
+ "step": 5834
+ },
+ {
+ "epoch": 81.04193971166448,
+ "grad_norm": 0.24902470409870148,
+ "learning_rate": 0.0006,
+ "loss": 3.442819595336914,
+ "step": 5835
+ },
+ {
+ "epoch": 81.05591961555264,
+ "grad_norm": 0.26691070199012756,
+ "learning_rate": 0.0006,
+ "loss": 3.4350805282592773,
+ "step": 5836
+ },
+ {
+ "epoch": 81.06989951944081,
+ "grad_norm": 0.271199107170105,
+ "learning_rate": 0.0006,
+ "loss": 3.4339957237243652,
+ "step": 5837
+ },
+ {
+ "epoch": 81.08387942332897,
+ "grad_norm": 0.24132029712200165,
+ "learning_rate": 0.0006,
+ "loss": 3.437596321105957,
+ "step": 5838
+ },
+ {
+ "epoch": 81.09785932721712,
+ "grad_norm": 0.22754840552806854,
+ "learning_rate": 0.0006,
+ "loss": 3.420121431350708,
+ "step": 5839
+ },
+ {
+ "epoch": 81.1118392311053,
+ "grad_norm": 0.2779895067214966,
+ "learning_rate": 0.0006,
+ "loss": 3.4544930458068848,
+ "step": 5840
+ },
+ {
+ "epoch": 81.12581913499345,
+ "grad_norm": 0.28317394852638245,
+ "learning_rate": 0.0006,
+ "loss": 3.4461822509765625,
+ "step": 5841
+ },
+ {
+ "epoch": 81.1397990388816,
+ "grad_norm": 0.22738827764987946,
+ "learning_rate": 0.0006,
+ "loss": 3.460659980773926,
+ "step": 5842
+ },
+ {
+ "epoch": 81.15377894276976,
+ "grad_norm": 0.24671101570129395,
+ "learning_rate": 0.0006,
+ "loss": 3.4540371894836426,
+ "step": 5843
+ },
+ {
+ "epoch": 81.16775884665793,
+ "grad_norm": 0.2668206989765167,
+ "learning_rate": 0.0006,
+ "loss": 3.40748929977417,
+ "step": 5844
+ },
+ {
+ "epoch": 81.18173875054609,
+ "grad_norm": 0.2719775140285492,
+ "learning_rate": 0.0006,
+ "loss": 3.432345390319824,
+ "step": 5845
+ },
+ {
+ "epoch": 81.19571865443424,
+ "grad_norm": 0.25384029746055603,
+ "learning_rate": 0.0006,
+ "loss": 3.4371347427368164,
+ "step": 5846
+ },
+ {
+ "epoch": 81.20969855832242,
+ "grad_norm": 0.2570390999317169,
+ "learning_rate": 0.0006,
+ "loss": 3.4476442337036133,
+ "step": 5847
+ },
+ {
+ "epoch": 81.22367846221057,
+ "grad_norm": 0.26525548100471497,
+ "learning_rate": 0.0006,
+ "loss": 3.471432685852051,
+ "step": 5848
+ },
+ {
+ "epoch": 81.23765836609873,
+ "grad_norm": 0.2836049199104309,
+ "learning_rate": 0.0006,
+ "loss": 3.4596359729766846,
+ "step": 5849
+ },
+ {
+ "epoch": 81.2516382699869,
+ "grad_norm": 0.2822650671005249,
+ "learning_rate": 0.0006,
+ "loss": 3.433651924133301,
+ "step": 5850
+ },
+ {
+ "epoch": 81.26561817387505,
+ "grad_norm": 0.25116705894470215,
+ "learning_rate": 0.0006,
+ "loss": 3.452144145965576,
+ "step": 5851
+ },
+ {
+ "epoch": 81.27959807776321,
+ "grad_norm": 0.23779597878456116,
+ "learning_rate": 0.0006,
+ "loss": 3.459000587463379,
+ "step": 5852
+ },
+ {
+ "epoch": 81.29357798165138,
+ "grad_norm": 0.21741659939289093,
+ "learning_rate": 0.0006,
+ "loss": 3.44561505317688,
+ "step": 5853
+ },
+ {
+ "epoch": 81.30755788553954,
+ "grad_norm": 0.24104240536689758,
+ "learning_rate": 0.0006,
+ "loss": 3.4796364307403564,
+ "step": 5854
+ },
+ {
+ "epoch": 81.3215377894277,
+ "grad_norm": 0.2497674971818924,
+ "learning_rate": 0.0006,
+ "loss": 3.460237741470337,
+ "step": 5855
+ },
+ {
+ "epoch": 81.33551769331586,
+ "grad_norm": 0.26402798295021057,
+ "learning_rate": 0.0006,
+ "loss": 3.459944725036621,
+ "step": 5856
+ },
+ {
+ "epoch": 81.34949759720402,
+ "grad_norm": 0.2843187153339386,
+ "learning_rate": 0.0006,
+ "loss": 3.464351177215576,
+ "step": 5857
+ },
+ {
+ "epoch": 81.36347750109218,
+ "grad_norm": 0.26369425654411316,
+ "learning_rate": 0.0006,
+ "loss": 3.459855556488037,
+ "step": 5858
+ },
+ {
+ "epoch": 81.37745740498035,
+ "grad_norm": 0.2376980036497116,
+ "learning_rate": 0.0006,
+ "loss": 3.4585585594177246,
+ "step": 5859
+ },
+ {
+ "epoch": 81.3914373088685,
+ "grad_norm": 0.2369474321603775,
+ "learning_rate": 0.0006,
+ "loss": 3.4587368965148926,
+ "step": 5860
+ },
+ {
+ "epoch": 81.40541721275666,
+ "grad_norm": 0.24202723801136017,
+ "learning_rate": 0.0006,
+ "loss": 3.456484317779541,
+ "step": 5861
+ },
+ {
+ "epoch": 81.41939711664482,
+ "grad_norm": 0.24000433087348938,
+ "learning_rate": 0.0006,
+ "loss": 3.4597935676574707,
+ "step": 5862
+ },
+ {
+ "epoch": 81.43337702053299,
+ "grad_norm": 0.21620287001132965,
+ "learning_rate": 0.0006,
+ "loss": 3.490447759628296,
+ "step": 5863
+ },
+ {
+ "epoch": 81.44735692442114,
+ "grad_norm": 0.21280473470687866,
+ "learning_rate": 0.0006,
+ "loss": 3.4409351348876953,
+ "step": 5864
+ },
+ {
+ "epoch": 81.4613368283093,
+ "grad_norm": 0.21686480939388275,
+ "learning_rate": 0.0006,
+ "loss": 3.4337422847747803,
+ "step": 5865
+ },
+ {
+ "epoch": 81.47531673219747,
+ "grad_norm": 0.21165262162685394,
+ "learning_rate": 0.0006,
+ "loss": 3.4551923274993896,
+ "step": 5866
+ },
+ {
+ "epoch": 81.48929663608563,
+ "grad_norm": 0.24010618031024933,
+ "learning_rate": 0.0006,
+ "loss": 3.4817299842834473,
+ "step": 5867
+ },
+ {
+ "epoch": 81.50327653997378,
+ "grad_norm": 0.23277464509010315,
+ "learning_rate": 0.0006,
+ "loss": 3.4820570945739746,
+ "step": 5868
+ },
+ {
+ "epoch": 81.51725644386195,
+ "grad_norm": 0.20819281041622162,
+ "learning_rate": 0.0006,
+ "loss": 3.442948341369629,
+ "step": 5869
+ },
+ {
+ "epoch": 81.53123634775011,
+ "grad_norm": 0.22829480469226837,
+ "learning_rate": 0.0006,
+ "loss": 3.4757442474365234,
+ "step": 5870
+ },
+ {
+ "epoch": 81.54521625163827,
+ "grad_norm": 0.24158570170402527,
+ "learning_rate": 0.0006,
+ "loss": 3.4724745750427246,
+ "step": 5871
+ },
+ {
+ "epoch": 81.55919615552644,
+ "grad_norm": 0.24712695181369781,
+ "learning_rate": 0.0006,
+ "loss": 3.4481959342956543,
+ "step": 5872
+ },
+ {
+ "epoch": 81.57317605941459,
+ "grad_norm": 0.2370705008506775,
+ "learning_rate": 0.0006,
+ "loss": 3.466951847076416,
+ "step": 5873
+ },
+ {
+ "epoch": 81.58715596330275,
+ "grad_norm": 0.2232188880443573,
+ "learning_rate": 0.0006,
+ "loss": 3.4636940956115723,
+ "step": 5874
+ },
+ {
+ "epoch": 81.60113586719092,
+ "grad_norm": 0.22505831718444824,
+ "learning_rate": 0.0006,
+ "loss": 3.476677894592285,
+ "step": 5875
+ },
+ {
+ "epoch": 81.61511577107908,
+ "grad_norm": 0.23009659349918365,
+ "learning_rate": 0.0006,
+ "loss": 3.451272964477539,
+ "step": 5876
+ },
+ {
+ "epoch": 81.62909567496723,
+ "grad_norm": 0.26682841777801514,
+ "learning_rate": 0.0006,
+ "loss": 3.454648733139038,
+ "step": 5877
+ },
+ {
+ "epoch": 81.6430755788554,
+ "grad_norm": 0.26330509781837463,
+ "learning_rate": 0.0006,
+ "loss": 3.483720064163208,
+ "step": 5878
+ },
+ {
+ "epoch": 81.65705548274356,
+ "grad_norm": 0.24642175436019897,
+ "learning_rate": 0.0006,
+ "loss": 3.483520984649658,
+ "step": 5879
+ },
+ {
+ "epoch": 81.67103538663171,
+ "grad_norm": 0.24045883119106293,
+ "learning_rate": 0.0006,
+ "loss": 3.478955030441284,
+ "step": 5880
+ },
+ {
+ "epoch": 81.68501529051987,
+ "grad_norm": 0.25334200263023376,
+ "learning_rate": 0.0006,
+ "loss": 3.46458101272583,
+ "step": 5881
+ },
+ {
+ "epoch": 81.69899519440804,
+ "grad_norm": 0.23601189255714417,
+ "learning_rate": 0.0006,
+ "loss": 3.4435858726501465,
+ "step": 5882
+ },
+ {
+ "epoch": 81.7129750982962,
+ "grad_norm": 0.24426797032356262,
+ "learning_rate": 0.0006,
+ "loss": 3.47581148147583,
+ "step": 5883
+ },
+ {
+ "epoch": 81.72695500218435,
+ "grad_norm": 0.28175151348114014,
+ "learning_rate": 0.0006,
+ "loss": 3.464777946472168,
+ "step": 5884
+ },
+ {
+ "epoch": 81.74093490607252,
+ "grad_norm": 0.30024033784866333,
+ "learning_rate": 0.0006,
+ "loss": 3.4527053833007812,
+ "step": 5885
+ },
+ {
+ "epoch": 81.75491480996068,
+ "grad_norm": 0.2306688278913498,
+ "learning_rate": 0.0006,
+ "loss": 3.4810023307800293,
+ "step": 5886
+ },
+ {
+ "epoch": 81.76889471384884,
+ "grad_norm": 0.2599645256996155,
+ "learning_rate": 0.0006,
+ "loss": 3.4631409645080566,
+ "step": 5887
+ },
+ {
+ "epoch": 81.78287461773701,
+ "grad_norm": 0.2765994966030121,
+ "learning_rate": 0.0006,
+ "loss": 3.477273464202881,
+ "step": 5888
+ },
+ {
+ "epoch": 81.79685452162516,
+ "grad_norm": 0.2595500648021698,
+ "learning_rate": 0.0006,
+ "loss": 3.4744186401367188,
+ "step": 5889
+ },
+ {
+ "epoch": 81.81083442551332,
+ "grad_norm": 0.2481662631034851,
+ "learning_rate": 0.0006,
+ "loss": 3.507770538330078,
+ "step": 5890
+ },
+ {
+ "epoch": 81.82481432940149,
+ "grad_norm": 0.23018419742584229,
+ "learning_rate": 0.0006,
+ "loss": 3.4804000854492188,
+ "step": 5891
+ },
+ {
+ "epoch": 81.83879423328965,
+ "grad_norm": 0.230391263961792,
+ "learning_rate": 0.0006,
+ "loss": 3.4579944610595703,
+ "step": 5892
+ },
+ {
+ "epoch": 81.8527741371778,
+ "grad_norm": 0.21724778413772583,
+ "learning_rate": 0.0006,
+ "loss": 3.501087188720703,
+ "step": 5893
+ },
+ {
+ "epoch": 81.86675404106597,
+ "grad_norm": 0.24898028373718262,
+ "learning_rate": 0.0006,
+ "loss": 3.4701733589172363,
+ "step": 5894
+ },
+ {
+ "epoch": 81.88073394495413,
+ "grad_norm": 0.2489824891090393,
+ "learning_rate": 0.0006,
+ "loss": 3.4377074241638184,
+ "step": 5895
+ },
+ {
+ "epoch": 81.89471384884229,
+ "grad_norm": 0.22714054584503174,
+ "learning_rate": 0.0006,
+ "loss": 3.457437515258789,
+ "step": 5896
+ },
+ {
+ "epoch": 81.90869375273044,
+ "grad_norm": 0.25653958320617676,
+ "learning_rate": 0.0006,
+ "loss": 3.4825286865234375,
+ "step": 5897
+ },
+ {
+ "epoch": 81.92267365661861,
+ "grad_norm": 0.2545621991157532,
+ "learning_rate": 0.0006,
+ "loss": 3.4589271545410156,
+ "step": 5898
+ },
+ {
+ "epoch": 81.93665356050677,
+ "grad_norm": 0.2259686142206192,
+ "learning_rate": 0.0006,
+ "loss": 3.4559035301208496,
+ "step": 5899
+ },
+ {
+ "epoch": 81.95063346439493,
+ "grad_norm": 0.2246817946434021,
+ "learning_rate": 0.0006,
+ "loss": 3.5045571327209473,
+ "step": 5900
+ },
+ {
+ "epoch": 81.9646133682831,
+ "grad_norm": 0.23750948905944824,
+ "learning_rate": 0.0006,
+ "loss": 3.450650453567505,
+ "step": 5901
+ },
+ {
+ "epoch": 81.97859327217125,
+ "grad_norm": 0.23084647953510284,
+ "learning_rate": 0.0006,
+ "loss": 3.488955020904541,
+ "step": 5902
+ },
+ {
+ "epoch": 81.99257317605941,
+ "grad_norm": 0.22894839942455292,
+ "learning_rate": 0.0006,
+ "loss": 3.459271192550659,
+ "step": 5903
+ },
+ {
+ "epoch": 82.0,
+ "grad_norm": 0.2765962779521942,
+ "learning_rate": 0.0006,
+ "loss": 3.408276081085205,
+ "step": 5904
+ },
+ {
+ "epoch": 82.0,
+ "eval_loss": 3.996730327606201,
+ "eval_runtime": 45.9786,
+ "eval_samples_per_second": 53.112,
+ "eval_steps_per_second": 3.328,
+ "step": 5904
+ },
+ {
+ "epoch": 82.01397990388816,
+ "grad_norm": 0.23179036378860474,
+ "learning_rate": 0.0006,
+ "loss": 3.4373724460601807,
+ "step": 5905
+ },
+ {
+ "epoch": 82.02795980777633,
+ "grad_norm": 0.26358088850975037,
+ "learning_rate": 0.0006,
+ "loss": 3.409518241882324,
+ "step": 5906
+ },
+ {
+ "epoch": 82.04193971166448,
+ "grad_norm": 0.2684100866317749,
+ "learning_rate": 0.0006,
+ "loss": 3.454376697540283,
+ "step": 5907
+ },
+ {
+ "epoch": 82.05591961555264,
+ "grad_norm": 0.2605251371860504,
+ "learning_rate": 0.0006,
+ "loss": 3.443272113800049,
+ "step": 5908
+ },
+ {
+ "epoch": 82.06989951944081,
+ "grad_norm": 0.28532418608665466,
+ "learning_rate": 0.0006,
+ "loss": 3.462437629699707,
+ "step": 5909
+ },
+ {
+ "epoch": 82.08387942332897,
+ "grad_norm": 0.27555668354034424,
+ "learning_rate": 0.0006,
+ "loss": 3.441549301147461,
+ "step": 5910
+ },
+ {
+ "epoch": 82.09785932721712,
+ "grad_norm": 0.24676190316677094,
+ "learning_rate": 0.0006,
+ "loss": 3.4276766777038574,
+ "step": 5911
+ },
+ {
+ "epoch": 82.1118392311053,
+ "grad_norm": 0.24529537558555603,
+ "learning_rate": 0.0006,
+ "loss": 3.4216628074645996,
+ "step": 5912
+ },
+ {
+ "epoch": 82.12581913499345,
+ "grad_norm": 0.24856150150299072,
+ "learning_rate": 0.0006,
+ "loss": 3.440220832824707,
+ "step": 5913
+ },
+ {
+ "epoch": 82.1397990388816,
+ "grad_norm": 0.25839412212371826,
+ "learning_rate": 0.0006,
+ "loss": 3.4307751655578613,
+ "step": 5914
+ },
+ {
+ "epoch": 82.15377894276976,
+ "grad_norm": 0.24331165850162506,
+ "learning_rate": 0.0006,
+ "loss": 3.434621810913086,
+ "step": 5915
+ },
+ {
+ "epoch": 82.16775884665793,
+ "grad_norm": 0.23028214275836945,
+ "learning_rate": 0.0006,
+ "loss": 3.4578404426574707,
+ "step": 5916
+ },
+ {
+ "epoch": 82.18173875054609,
+ "grad_norm": 0.25276753306388855,
+ "learning_rate": 0.0006,
+ "loss": 3.447455406188965,
+ "step": 5917
+ },
+ {
+ "epoch": 82.19571865443424,
+ "grad_norm": 0.2595311105251312,
+ "learning_rate": 0.0006,
+ "loss": 3.4466679096221924,
+ "step": 5918
+ },
+ {
+ "epoch": 82.20969855832242,
+ "grad_norm": 0.2971263527870178,
+ "learning_rate": 0.0006,
+ "loss": 3.4721288681030273,
+ "step": 5919
+ },
+ {
+ "epoch": 82.22367846221057,
+ "grad_norm": 0.3399767577648163,
+ "learning_rate": 0.0006,
+ "loss": 3.433732032775879,
+ "step": 5920
+ },
+ {
+ "epoch": 82.23765836609873,
+ "grad_norm": 0.2947933077812195,
+ "learning_rate": 0.0006,
+ "loss": 3.437530994415283,
+ "step": 5921
+ },
+ {
+ "epoch": 82.2516382699869,
+ "grad_norm": 0.24236083030700684,
+ "learning_rate": 0.0006,
+ "loss": 3.4405105113983154,
+ "step": 5922
+ },
+ {
+ "epoch": 82.26561817387505,
+ "grad_norm": 0.2506858706474304,
+ "learning_rate": 0.0006,
+ "loss": 3.4653801918029785,
+ "step": 5923
+ },
+ {
+ "epoch": 82.27959807776321,
+ "grad_norm": 0.3094657361507416,
+ "learning_rate": 0.0006,
+ "loss": 3.444723129272461,
+ "step": 5924
+ },
+ {
+ "epoch": 82.29357798165138,
+ "grad_norm": 0.3230939209461212,
+ "learning_rate": 0.0006,
+ "loss": 3.4660234451293945,
+ "step": 5925
+ },
+ {
+ "epoch": 82.30755788553954,
+ "grad_norm": 0.30391860008239746,
+ "learning_rate": 0.0006,
+ "loss": 3.451413631439209,
+ "step": 5926
+ },
+ {
+ "epoch": 82.3215377894277,
+ "grad_norm": 0.2740595042705536,
+ "learning_rate": 0.0006,
+ "loss": 3.449131965637207,
+ "step": 5927
+ },
+ {
+ "epoch": 82.33551769331586,
+ "grad_norm": 0.2436739057302475,
+ "learning_rate": 0.0006,
+ "loss": 3.4319000244140625,
+ "step": 5928
+ },
+ {
+ "epoch": 82.34949759720402,
+ "grad_norm": 0.28533536195755005,
+ "learning_rate": 0.0006,
+ "loss": 3.4300975799560547,
+ "step": 5929
+ },
+ {
+ "epoch": 82.36347750109218,
+ "grad_norm": 0.2921883761882782,
+ "learning_rate": 0.0006,
+ "loss": 3.4531779289245605,
+ "step": 5930
+ },
+ {
+ "epoch": 82.37745740498035,
+ "grad_norm": 0.23490813374519348,
+ "learning_rate": 0.0006,
+ "loss": 3.461367130279541,
+ "step": 5931
+ },
+ {
+ "epoch": 82.3914373088685,
+ "grad_norm": 0.23341777920722961,
+ "learning_rate": 0.0006,
+ "loss": 3.4425978660583496,
+ "step": 5932
+ },
+ {
+ "epoch": 82.40541721275666,
+ "grad_norm": 0.2530428171157837,
+ "learning_rate": 0.0006,
+ "loss": 3.4478020668029785,
+ "step": 5933
+ },
+ {
+ "epoch": 82.41939711664482,
+ "grad_norm": 0.2404085248708725,
+ "learning_rate": 0.0006,
+ "loss": 3.401540517807007,
+ "step": 5934
+ },
+ {
+ "epoch": 82.43337702053299,
+ "grad_norm": 0.23845867812633514,
+ "learning_rate": 0.0006,
+ "loss": 3.461883544921875,
+ "step": 5935
+ },
+ {
+ "epoch": 82.44735692442114,
+ "grad_norm": 0.23088037967681885,
+ "learning_rate": 0.0006,
+ "loss": 3.4389796257019043,
+ "step": 5936
+ },
+ {
+ "epoch": 82.4613368283093,
+ "grad_norm": 0.24288570880889893,
+ "learning_rate": 0.0006,
+ "loss": 3.457475185394287,
+ "step": 5937
+ },
+ {
+ "epoch": 82.47531673219747,
+ "grad_norm": 0.2799559235572815,
+ "learning_rate": 0.0006,
+ "loss": 3.445082664489746,
+ "step": 5938
+ },
+ {
+ "epoch": 82.48929663608563,
+ "grad_norm": 0.23611751198768616,
+ "learning_rate": 0.0006,
+ "loss": 3.463675022125244,
+ "step": 5939
+ },
+ {
+ "epoch": 82.50327653997378,
+ "grad_norm": 0.2390424907207489,
+ "learning_rate": 0.0006,
+ "loss": 3.4434826374053955,
+ "step": 5940
+ },
+ {
+ "epoch": 82.51725644386195,
+ "grad_norm": 0.3373001217842102,
+ "learning_rate": 0.0006,
+ "loss": 3.4687438011169434,
+ "step": 5941
+ },
+ {
+ "epoch": 82.53123634775011,
+ "grad_norm": 0.3413066267967224,
+ "learning_rate": 0.0006,
+ "loss": 3.4376461505889893,
+ "step": 5942
+ },
+ {
+ "epoch": 82.54521625163827,
+ "grad_norm": 0.24165762960910797,
+ "learning_rate": 0.0006,
+ "loss": 3.430239200592041,
+ "step": 5943
+ },
+ {
+ "epoch": 82.55919615552644,
+ "grad_norm": 0.25374823808670044,
+ "learning_rate": 0.0006,
+ "loss": 3.417081832885742,
+ "step": 5944
+ },
+ {
+ "epoch": 82.57317605941459,
+ "grad_norm": 0.32946228981018066,
+ "learning_rate": 0.0006,
+ "loss": 3.4235644340515137,
+ "step": 5945
+ },
+ {
+ "epoch": 82.58715596330275,
+ "grad_norm": 0.32193586230278015,
+ "learning_rate": 0.0006,
+ "loss": 3.450972080230713,
+ "step": 5946
+ },
+ {
+ "epoch": 82.60113586719092,
+ "grad_norm": 0.24615046381950378,
+ "learning_rate": 0.0006,
+ "loss": 3.489959716796875,
+ "step": 5947
+ },
+ {
+ "epoch": 82.61511577107908,
+ "grad_norm": 0.24981027841567993,
+ "learning_rate": 0.0006,
+ "loss": 3.466486930847168,
+ "step": 5948
+ },
+ {
+ "epoch": 82.62909567496723,
+ "grad_norm": 0.2472672462463379,
+ "learning_rate": 0.0006,
+ "loss": 3.47261381149292,
+ "step": 5949
+ },
+ {
+ "epoch": 82.6430755788554,
+ "grad_norm": 0.2465936541557312,
+ "learning_rate": 0.0006,
+ "loss": 3.46502423286438,
+ "step": 5950
+ },
+ {
+ "epoch": 82.65705548274356,
+ "grad_norm": 0.2683236300945282,
+ "learning_rate": 0.0006,
+ "loss": 3.4559872150421143,
+ "step": 5951
+ },
+ {
+ "epoch": 82.67103538663171,
+ "grad_norm": 0.2673622965812683,
+ "learning_rate": 0.0006,
+ "loss": 3.5017478466033936,
+ "step": 5952
+ },
+ {
+ "epoch": 82.68501529051987,
+ "grad_norm": 0.2692212164402008,
+ "learning_rate": 0.0006,
+ "loss": 3.4872794151306152,
+ "step": 5953
+ },
+ {
+ "epoch": 82.69899519440804,
+ "grad_norm": 0.26421430706977844,
+ "learning_rate": 0.0006,
+ "loss": 3.4612350463867188,
+ "step": 5954
+ },
+ {
+ "epoch": 82.7129750982962,
+ "grad_norm": 0.2509252727031708,
+ "learning_rate": 0.0006,
+ "loss": 3.4686827659606934,
+ "step": 5955
+ },
+ {
+ "epoch": 82.72695500218435,
+ "grad_norm": 0.209443598985672,
+ "learning_rate": 0.0006,
+ "loss": 3.454824924468994,
+ "step": 5956
+ },
+ {
+ "epoch": 82.74093490607252,
+ "grad_norm": 0.24989601969718933,
+ "learning_rate": 0.0006,
+ "loss": 3.4740121364593506,
+ "step": 5957
+ },
+ {
+ "epoch": 82.75491480996068,
+ "grad_norm": 0.2902134954929352,
+ "learning_rate": 0.0006,
+ "loss": 3.4464473724365234,
+ "step": 5958
+ },
+ {
+ "epoch": 82.76889471384884,
+ "grad_norm": 0.24959035217761993,
+ "learning_rate": 0.0006,
+ "loss": 3.465094566345215,
+ "step": 5959
+ },
+ {
+ "epoch": 82.78287461773701,
+ "grad_norm": 0.23020492494106293,
+ "learning_rate": 0.0006,
+ "loss": 3.4868249893188477,
+ "step": 5960
+ },
+ {
+ "epoch": 82.79685452162516,
+ "grad_norm": 0.2315775454044342,
+ "learning_rate": 0.0006,
+ "loss": 3.4711623191833496,
+ "step": 5961
+ },
+ {
+ "epoch": 82.81083442551332,
+ "grad_norm": 0.2326463758945465,
+ "learning_rate": 0.0006,
+ "loss": 3.447787284851074,
+ "step": 5962
+ },
+ {
+ "epoch": 82.82481432940149,
+ "grad_norm": 0.23650991916656494,
+ "learning_rate": 0.0006,
+ "loss": 3.4676520824432373,
+ "step": 5963
+ },
+ {
+ "epoch": 82.83879423328965,
+ "grad_norm": 0.25990426540374756,
+ "learning_rate": 0.0006,
+ "loss": 3.494727373123169,
+ "step": 5964
+ },
+ {
+ "epoch": 82.8527741371778,
+ "grad_norm": 0.23490077257156372,
+ "learning_rate": 0.0006,
+ "loss": 3.5040855407714844,
+ "step": 5965
+ },
+ {
+ "epoch": 82.86675404106597,
+ "grad_norm": 0.20543795824050903,
+ "learning_rate": 0.0006,
+ "loss": 3.4675912857055664,
+ "step": 5966
+ },
+ {
+ "epoch": 82.88073394495413,
+ "grad_norm": 0.21899794042110443,
+ "learning_rate": 0.0006,
+ "loss": 3.4491946697235107,
+ "step": 5967
+ },
+ {
+ "epoch": 82.89471384884229,
+ "grad_norm": 0.22304055094718933,
+ "learning_rate": 0.0006,
+ "loss": 3.4818315505981445,
+ "step": 5968
+ },
+ {
+ "epoch": 82.90869375273044,
+ "grad_norm": 0.2622174024581909,
+ "learning_rate": 0.0006,
+ "loss": 3.475957155227661,
+ "step": 5969
+ },
+ {
+ "epoch": 82.92267365661861,
+ "grad_norm": 0.2829800546169281,
+ "learning_rate": 0.0006,
+ "loss": 3.5397486686706543,
+ "step": 5970
+ },
+ {
+ "epoch": 82.93665356050677,
+ "grad_norm": 0.23583251237869263,
+ "learning_rate": 0.0006,
+ "loss": 3.4955060482025146,
+ "step": 5971
+ },
+ {
+ "epoch": 82.95063346439493,
+ "grad_norm": 0.2033468782901764,
+ "learning_rate": 0.0006,
+ "loss": 3.477050542831421,
+ "step": 5972
+ },
+ {
+ "epoch": 82.9646133682831,
+ "grad_norm": 0.20826712250709534,
+ "learning_rate": 0.0006,
+ "loss": 3.4818544387817383,
+ "step": 5973
+ },
+ {
+ "epoch": 82.97859327217125,
+ "grad_norm": 0.20250852406024933,
+ "learning_rate": 0.0006,
+ "loss": 3.44329571723938,
+ "step": 5974
+ },
+ {
+ "epoch": 82.99257317605941,
+ "grad_norm": 0.21684879064559937,
+ "learning_rate": 0.0006,
+ "loss": 3.482222318649292,
+ "step": 5975
+ },
+ {
+ "epoch": 83.0,
+ "grad_norm": 0.2637452781200409,
+ "learning_rate": 0.0006,
+ "loss": 3.526481866836548,
+ "step": 5976
+ },
+ {
+ "epoch": 83.0,
+ "eval_loss": 3.9838967323303223,
+ "eval_runtime": 45.8267,
+ "eval_samples_per_second": 53.288,
+ "eval_steps_per_second": 3.339,
+ "step": 5976
+ },
+ {
+ "epoch": 83.01397990388816,
+ "grad_norm": 0.2888176143169403,
+ "learning_rate": 0.0006,
+ "loss": 3.409271717071533,
+ "step": 5977
+ },
+ {
+ "epoch": 83.02795980777633,
+ "grad_norm": 0.3692282736301422,
+ "learning_rate": 0.0006,
+ "loss": 3.4353346824645996,
+ "step": 5978
+ },
+ {
+ "epoch": 83.04193971166448,
+ "grad_norm": 0.3694300353527069,
+ "learning_rate": 0.0006,
+ "loss": 3.4257359504699707,
+ "step": 5979
+ },
+ {
+ "epoch": 83.05591961555264,
+ "grad_norm": 0.29487040638923645,
+ "learning_rate": 0.0006,
+ "loss": 3.416271209716797,
+ "step": 5980
+ },
+ {
+ "epoch": 83.06989951944081,
+ "grad_norm": 0.2911352217197418,
+ "learning_rate": 0.0006,
+ "loss": 3.424140214920044,
+ "step": 5981
+ },
+ {
+ "epoch": 83.08387942332897,
+ "grad_norm": 0.35632601380348206,
+ "learning_rate": 0.0006,
+ "loss": 3.4235711097717285,
+ "step": 5982
+ },
+ {
+ "epoch": 83.09785932721712,
+ "grad_norm": 0.4010505676269531,
+ "learning_rate": 0.0006,
+ "loss": 3.462642192840576,
+ "step": 5983
+ },
+ {
+ "epoch": 83.1118392311053,
+ "grad_norm": 0.3426569402217865,
+ "learning_rate": 0.0006,
+ "loss": 3.448690176010132,
+ "step": 5984
+ },
+ {
+ "epoch": 83.12581913499345,
+ "grad_norm": 0.2632673382759094,
+ "learning_rate": 0.0006,
+ "loss": 3.447197914123535,
+ "step": 5985
+ },
+ {
+ "epoch": 83.1397990388816,
+ "grad_norm": 0.2999698221683502,
+ "learning_rate": 0.0006,
+ "loss": 3.4137229919433594,
+ "step": 5986
+ },
+ {
+ "epoch": 83.15377894276976,
+ "grad_norm": 0.3033472001552582,
+ "learning_rate": 0.0006,
+ "loss": 3.4816393852233887,
+ "step": 5987
+ },
+ {
+ "epoch": 83.16775884665793,
+ "grad_norm": 0.2590268850326538,
+ "learning_rate": 0.0006,
+ "loss": 3.4059391021728516,
+ "step": 5988
+ },
+ {
+ "epoch": 83.18173875054609,
+ "grad_norm": 0.2598235607147217,
+ "learning_rate": 0.0006,
+ "loss": 3.447913885116577,
+ "step": 5989
+ },
+ {
+ "epoch": 83.19571865443424,
+ "grad_norm": 0.25087642669677734,
+ "learning_rate": 0.0006,
+ "loss": 3.4645161628723145,
+ "step": 5990
+ },
+ {
+ "epoch": 83.20969855832242,
+ "grad_norm": 0.267760306596756,
+ "learning_rate": 0.0006,
+ "loss": 3.4360952377319336,
+ "step": 5991
+ },
+ {
+ "epoch": 83.22367846221057,
+ "grad_norm": 0.25042274594306946,
+ "learning_rate": 0.0006,
+ "loss": 3.464437961578369,
+ "step": 5992
+ },
+ {
+ "epoch": 83.23765836609873,
+ "grad_norm": 0.22963418066501617,
+ "learning_rate": 0.0006,
+ "loss": 3.421604633331299,
+ "step": 5993
+ },
+ {
+ "epoch": 83.2516382699869,
+ "grad_norm": 0.24857227504253387,
+ "learning_rate": 0.0006,
+ "loss": 3.4228515625,
+ "step": 5994
+ },
+ {
+ "epoch": 83.26561817387505,
+ "grad_norm": 0.24745461344718933,
+ "learning_rate": 0.0006,
+ "loss": 3.463120222091675,
+ "step": 5995
+ },
+ {
+ "epoch": 83.27959807776321,
+ "grad_norm": 0.258258581161499,
+ "learning_rate": 0.0006,
+ "loss": 3.4567341804504395,
+ "step": 5996
+ },
+ {
+ "epoch": 83.29357798165138,
+ "grad_norm": 0.26854267716407776,
+ "learning_rate": 0.0006,
+ "loss": 3.459993839263916,
+ "step": 5997
+ },
+ {
+ "epoch": 83.30755788553954,
+ "grad_norm": 0.253322571516037,
+ "learning_rate": 0.0006,
+ "loss": 3.4329309463500977,
+ "step": 5998
+ },
+ {
+ "epoch": 83.3215377894277,
+ "grad_norm": 0.2596076726913452,
+ "learning_rate": 0.0006,
+ "loss": 3.463113784790039,
+ "step": 5999
+ },
+ {
+ "epoch": 83.33551769331586,
+ "grad_norm": 0.23935553431510925,
+ "learning_rate": 0.0006,
+ "loss": 3.45231556892395,
+ "step": 6000
+ },
+ {
+ "epoch": 83.34949759720402,
+ "grad_norm": 0.23181283473968506,
+ "learning_rate": 0.0006,
+ "loss": 3.4250950813293457,
+ "step": 6001
+ },
+ {
+ "epoch": 83.36347750109218,
+ "grad_norm": 0.22866526246070862,
+ "learning_rate": 0.0006,
+ "loss": 3.451408863067627,
+ "step": 6002
+ },
+ {
+ "epoch": 83.37745740498035,
+ "grad_norm": 0.2585664689540863,
+ "learning_rate": 0.0006,
+ "loss": 3.474940299987793,
+ "step": 6003
+ },
+ {
+ "epoch": 83.3914373088685,
+ "grad_norm": 0.21957920491695404,
+ "learning_rate": 0.0006,
+ "loss": 3.4120378494262695,
+ "step": 6004
+ },
+ {
+ "epoch": 83.40541721275666,
+ "grad_norm": 0.21237598359584808,
+ "learning_rate": 0.0006,
+ "loss": 3.458988666534424,
+ "step": 6005
+ },
+ {
+ "epoch": 83.41939711664482,
+ "grad_norm": 0.21803049743175507,
+ "learning_rate": 0.0006,
+ "loss": 3.436127185821533,
+ "step": 6006
+ },
+ {
+ "epoch": 83.43337702053299,
+ "grad_norm": 0.24005955457687378,
+ "learning_rate": 0.0006,
+ "loss": 3.4540181159973145,
+ "step": 6007
+ },
+ {
+ "epoch": 83.44735692442114,
+ "grad_norm": 0.26444754004478455,
+ "learning_rate": 0.0006,
+ "loss": 3.4646968841552734,
+ "step": 6008
+ },
+ {
+ "epoch": 83.4613368283093,
+ "grad_norm": 0.2504395544528961,
+ "learning_rate": 0.0006,
+ "loss": 3.4380784034729004,
+ "step": 6009
+ },
+ {
+ "epoch": 83.47531673219747,
+ "grad_norm": 0.23231923580169678,
+ "learning_rate": 0.0006,
+ "loss": 3.4435203075408936,
+ "step": 6010
+ },
+ {
+ "epoch": 83.48929663608563,
+ "grad_norm": 0.22733177244663239,
+ "learning_rate": 0.0006,
+ "loss": 3.459223747253418,
+ "step": 6011
+ },
+ {
+ "epoch": 83.50327653997378,
+ "grad_norm": 0.23871523141860962,
+ "learning_rate": 0.0006,
+ "loss": 3.452695369720459,
+ "step": 6012
+ },
+ {
+ "epoch": 83.51725644386195,
+ "grad_norm": 0.26548200845718384,
+ "learning_rate": 0.0006,
+ "loss": 3.4481754302978516,
+ "step": 6013
+ },
+ {
+ "epoch": 83.53123634775011,
+ "grad_norm": 0.2633417248725891,
+ "learning_rate": 0.0006,
+ "loss": 3.469902753829956,
+ "step": 6014
+ },
+ {
+ "epoch": 83.54521625163827,
+ "grad_norm": 0.2338850200176239,
+ "learning_rate": 0.0006,
+ "loss": 3.438602924346924,
+ "step": 6015
+ },
+ {
+ "epoch": 83.55919615552644,
+ "grad_norm": 0.2187591791152954,
+ "learning_rate": 0.0006,
+ "loss": 3.426084280014038,
+ "step": 6016
+ },
+ {
+ "epoch": 83.57317605941459,
+ "grad_norm": 0.2570044994354248,
+ "learning_rate": 0.0006,
+ "loss": 3.4380812644958496,
+ "step": 6017
+ },
+ {
+ "epoch": 83.58715596330275,
+ "grad_norm": 0.25832056999206543,
+ "learning_rate": 0.0006,
+ "loss": 3.45045804977417,
+ "step": 6018
+ },
+ {
+ "epoch": 83.60113586719092,
+ "grad_norm": 0.24552716314792633,
+ "learning_rate": 0.0006,
+ "loss": 3.447704792022705,
+ "step": 6019
+ },
+ {
+ "epoch": 83.61511577107908,
+ "grad_norm": 0.2358967810869217,
+ "learning_rate": 0.0006,
+ "loss": 3.4598300457000732,
+ "step": 6020
+ },
+ {
+ "epoch": 83.62909567496723,
+ "grad_norm": 0.20650409162044525,
+ "learning_rate": 0.0006,
+ "loss": 3.4821555614471436,
+ "step": 6021
+ },
+ {
+ "epoch": 83.6430755788554,
+ "grad_norm": 0.20103590190410614,
+ "learning_rate": 0.0006,
+ "loss": 3.468846082687378,
+ "step": 6022
+ },
+ {
+ "epoch": 83.65705548274356,
+ "grad_norm": 0.20957764983177185,
+ "learning_rate": 0.0006,
+ "loss": 3.4600605964660645,
+ "step": 6023
+ },
+ {
+ "epoch": 83.67103538663171,
+ "grad_norm": 0.21819661557674408,
+ "learning_rate": 0.0006,
+ "loss": 3.4393796920776367,
+ "step": 6024
+ },
+ {
+ "epoch": 83.68501529051987,
+ "grad_norm": 0.23196570575237274,
+ "learning_rate": 0.0006,
+ "loss": 3.452263832092285,
+ "step": 6025
+ },
+ {
+ "epoch": 83.69899519440804,
+ "grad_norm": 0.2700229287147522,
+ "learning_rate": 0.0006,
+ "loss": 3.452803134918213,
+ "step": 6026
+ },
+ {
+ "epoch": 83.7129750982962,
+ "grad_norm": 0.26435309648513794,
+ "learning_rate": 0.0006,
+ "loss": 3.457122802734375,
+ "step": 6027
+ },
+ {
+ "epoch": 83.72695500218435,
+ "grad_norm": 0.24041543900966644,
+ "learning_rate": 0.0006,
+ "loss": 3.455793619155884,
+ "step": 6028
+ },
+ {
+ "epoch": 83.74093490607252,
+ "grad_norm": 0.22590254247188568,
+ "learning_rate": 0.0006,
+ "loss": 3.4643428325653076,
+ "step": 6029
+ },
+ {
+ "epoch": 83.75491480996068,
+ "grad_norm": 0.2043512612581253,
+ "learning_rate": 0.0006,
+ "loss": 3.474919557571411,
+ "step": 6030
+ },
+ {
+ "epoch": 83.76889471384884,
+ "grad_norm": 0.23114001750946045,
+ "learning_rate": 0.0006,
+ "loss": 3.469618797302246,
+ "step": 6031
+ },
+ {
+ "epoch": 83.78287461773701,
+ "grad_norm": 0.24307213723659515,
+ "learning_rate": 0.0006,
+ "loss": 3.44295072555542,
+ "step": 6032
+ },
+ {
+ "epoch": 83.79685452162516,
+ "grad_norm": 0.24907614290714264,
+ "learning_rate": 0.0006,
+ "loss": 3.4820055961608887,
+ "step": 6033
+ },
+ {
+ "epoch": 83.81083442551332,
+ "grad_norm": 0.24758939445018768,
+ "learning_rate": 0.0006,
+ "loss": 3.4528980255126953,
+ "step": 6034
+ },
+ {
+ "epoch": 83.82481432940149,
+ "grad_norm": 0.24556805193424225,
+ "learning_rate": 0.0006,
+ "loss": 3.4928247928619385,
+ "step": 6035
+ },
+ {
+ "epoch": 83.83879423328965,
+ "grad_norm": 0.22058741748332977,
+ "learning_rate": 0.0006,
+ "loss": 3.4515697956085205,
+ "step": 6036
+ },
+ {
+ "epoch": 83.8527741371778,
+ "grad_norm": 0.2287076860666275,
+ "learning_rate": 0.0006,
+ "loss": 3.464742422103882,
+ "step": 6037
+ },
+ {
+ "epoch": 83.86675404106597,
+ "grad_norm": 0.23122717440128326,
+ "learning_rate": 0.0006,
+ "loss": 3.475945472717285,
+ "step": 6038
+ },
+ {
+ "epoch": 83.88073394495413,
+ "grad_norm": 0.23839165270328522,
+ "learning_rate": 0.0006,
+ "loss": 3.486027479171753,
+ "step": 6039
+ },
+ {
+ "epoch": 83.89471384884229,
+ "grad_norm": 0.23857836425304413,
+ "learning_rate": 0.0006,
+ "loss": 3.474921226501465,
+ "step": 6040
+ },
+ {
+ "epoch": 83.90869375273044,
+ "grad_norm": 0.24372349679470062,
+ "learning_rate": 0.0006,
+ "loss": 3.4775476455688477,
+ "step": 6041
+ },
+ {
+ "epoch": 83.92267365661861,
+ "grad_norm": 0.28166019916534424,
+ "learning_rate": 0.0006,
+ "loss": 3.450713634490967,
+ "step": 6042
+ },
+ {
+ "epoch": 83.93665356050677,
+ "grad_norm": 0.27276918292045593,
+ "learning_rate": 0.0006,
+ "loss": 3.4824142456054688,
+ "step": 6043
+ },
+ {
+ "epoch": 83.95063346439493,
+ "grad_norm": 0.2137363702058792,
+ "learning_rate": 0.0006,
+ "loss": 3.4720726013183594,
+ "step": 6044
+ },
+ {
+ "epoch": 83.9646133682831,
+ "grad_norm": 0.21120159327983856,
+ "learning_rate": 0.0006,
+ "loss": 3.5012218952178955,
+ "step": 6045
+ },
+ {
+ "epoch": 83.97859327217125,
+ "grad_norm": 0.22474384307861328,
+ "learning_rate": 0.0006,
+ "loss": 3.460742950439453,
+ "step": 6046
+ },
+ {
+ "epoch": 83.99257317605941,
+ "grad_norm": 0.20441333949565887,
+ "learning_rate": 0.0006,
+ "loss": 3.4822964668273926,
+ "step": 6047
+ },
+ {
+ "epoch": 84.0,
+ "grad_norm": 0.2454686462879181,
+ "learning_rate": 0.0006,
+ "loss": 3.5237345695495605,
+ "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/mask15-l2r50-fulle-lm/checkpoint-6048/training_args.bin b/runs/mask15-l2r50-fulle-lm/checkpoint-6048/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..43721c50815fe94f90cb043bf545b8f7bd9afc38
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-6048/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:a0b8d7bb9ac952b1abed3bd1e5c8f6ebd20daa957b3a85688954f8df03be6eb9
+size 4856
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-6336/chat_template.jinja b/runs/mask15-l2r50-fulle-lm/checkpoint-6336/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/mask15-l2r50-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/mask15-l2r50-fulle-lm/checkpoint-6336/config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-6336/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..1b4ac3c550d6003148026765eba4cb1512b216c9
--- /dev/null
+++ b/runs/mask15-l2r50-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": 151672
+}
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-6336/generation_config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-6336/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..5cd15fe1269fd505cfdefe9b3e9989dacd9f68f4
--- /dev/null
+++ b/runs/mask15-l2r50-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/mask15-l2r50-fulle-lm/checkpoint-6336/model.safetensors b/runs/mask15-l2r50-fulle-lm/checkpoint-6336/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..e27c08f27aae30c4f6d84e86e4385750d1950612
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-6336/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:2a94181b44b9b711225dcd6fc03d8961fd088e45e3e34b6682237cc1f508faa4
+size 583358280
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-6336/optimizer.pt b/runs/mask15-l2r50-fulle-lm/checkpoint-6336/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..450ebcdc811e1820a82fe9376ad927e8e6c8c493
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-6336/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:e279818e828cccbfc33430b4eb1b1a2a85811e4635c6cffc18ba0381830828ab
+size 1166831994
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-6336/rng_state_0.pth b/runs/mask15-l2r50-fulle-lm/checkpoint-6336/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..2ee92a434811d2d19a9f4e7a65115b15c5754601
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-6336/rng_state_0.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:ea5155d4942c2e3180bcd8de2a4586085293552c1079856b85cbf826a3311efd
+size 14512
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-6336/rng_state_1.pth b/runs/mask15-l2r50-fulle-lm/checkpoint-6336/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..1557cec019a987d050837abe3e0afb725282410a
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-6336/rng_state_1.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:8a812a1262709e44732b08a9ae75b7f1205765d082d38b8dae14d4f12b2a5ba1
+size 14512
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-6336/scheduler.pt b/runs/mask15-l2r50-fulle-lm/checkpoint-6336/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..806ff31f0128f007291ee83361dda9fba5eeb32b
--- /dev/null
+++ b/runs/mask15-l2r50-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/mask15-l2r50-fulle-lm/checkpoint-6336/tokenizer.json b/runs/mask15-l2r50-fulle-lm/checkpoint-6336/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..6226bf25372d1a86dbd704ec75d2129960f1ba88
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-6336/tokenizer.json
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:9245fe3cb2d40f9ed8d5d8ddd1d58701ba2a236beec08f656162281673f30560
+size 11424264
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-6336/tokenizer_config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-6336/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..01bc9676576e8cf62a08a9db166d6c5bab1d6727
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-6336/tokenizer_config.json
@@ -0,0 +1,20 @@
+{
+ "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|>",
+ "<|mask|>"
+ ],
+ "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/mask15-l2r50-fulle-lm/checkpoint-6336/trainer_state.json b/runs/mask15-l2r50-fulle-lm/checkpoint-6336/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..a6cfefdcd2d912356d286c089a59d179f031e0a0
--- /dev/null
+++ b/runs/mask15-l2r50-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": 9.807971954345703,
+ "learning_rate": 0.0,
+ "loss": 11.989814758300781,
+ "step": 1
+ },
+ {
+ "epoch": 0.027959807776321538,
+ "grad_norm": 9.834383010864258,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 11.993022918701172,
+ "step": 2
+ },
+ {
+ "epoch": 0.04193971166448231,
+ "grad_norm": 9.482470512390137,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 11.854345321655273,
+ "step": 3
+ },
+ {
+ "epoch": 0.055919615552643076,
+ "grad_norm": 7.678808689117432,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 11.618255615234375,
+ "step": 4
+ },
+ {
+ "epoch": 0.06989951944080385,
+ "grad_norm": 6.011275291442871,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 11.351423263549805,
+ "step": 5
+ },
+ {
+ "epoch": 0.08387942332896461,
+ "grad_norm": 5.244393825531006,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 11.128631591796875,
+ "step": 6
+ },
+ {
+ "epoch": 0.09785932721712538,
+ "grad_norm": 4.577618598937988,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 10.921937942504883,
+ "step": 7
+ },
+ {
+ "epoch": 0.11183923110528615,
+ "grad_norm": 4.03810453414917,
+ "learning_rate": 4.2e-05,
+ "loss": 10.742650985717773,
+ "step": 8
+ },
+ {
+ "epoch": 0.1258191349934469,
+ "grad_norm": 3.657679796218872,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 10.600778579711914,
+ "step": 9
+ },
+ {
+ "epoch": 0.1397990388816077,
+ "grad_norm": 3.352902889251709,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 10.489639282226562,
+ "step": 10
+ },
+ {
+ "epoch": 0.15377894276976845,
+ "grad_norm": 3.1162633895874023,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 10.417770385742188,
+ "step": 11
+ },
+ {
+ "epoch": 0.16775884665792923,
+ "grad_norm": 3.0402638912200928,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 10.35334587097168,
+ "step": 12
+ },
+ {
+ "epoch": 0.18173875054608998,
+ "grad_norm": 3.030630111694336,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 10.306867599487305,
+ "step": 13
+ },
+ {
+ "epoch": 0.19571865443425077,
+ "grad_norm": 3.035292148590088,
+ "learning_rate": 7.8e-05,
+ "loss": 10.26003646850586,
+ "step": 14
+ },
+ {
+ "epoch": 0.20969855832241152,
+ "grad_norm": 3.0125675201416016,
+ "learning_rate": 8.4e-05,
+ "loss": 10.219265937805176,
+ "step": 15
+ },
+ {
+ "epoch": 0.2236784622105723,
+ "grad_norm": 2.9998886585235596,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 10.161077499389648,
+ "step": 16
+ },
+ {
+ "epoch": 0.23765836609873306,
+ "grad_norm": 2.9411966800689697,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 10.107423782348633,
+ "step": 17
+ },
+ {
+ "epoch": 0.2516382699868938,
+ "grad_norm": 2.88081955909729,
+ "learning_rate": 0.000102,
+ "loss": 10.04700756072998,
+ "step": 18
+ },
+ {
+ "epoch": 0.2656181738750546,
+ "grad_norm": 2.8219687938690186,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 9.981185913085938,
+ "step": 19
+ },
+ {
+ "epoch": 0.2795980777632154,
+ "grad_norm": 2.79306960105896,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 9.89747142791748,
+ "step": 20
+ },
+ {
+ "epoch": 0.29357798165137616,
+ "grad_norm": 2.7314443588256836,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 9.829219818115234,
+ "step": 21
+ },
+ {
+ "epoch": 0.3075578855395369,
+ "grad_norm": 2.6923747062683105,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 9.747566223144531,
+ "step": 22
+ },
+ {
+ "epoch": 0.3215377894276977,
+ "grad_norm": 2.650602340698242,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 9.66455078125,
+ "step": 23
+ },
+ {
+ "epoch": 0.33551769331585846,
+ "grad_norm": 2.606977701187134,
+ "learning_rate": 0.000138,
+ "loss": 9.582326889038086,
+ "step": 24
+ },
+ {
+ "epoch": 0.34949759720401924,
+ "grad_norm": 2.567256212234497,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 9.492591857910156,
+ "step": 25
+ },
+ {
+ "epoch": 0.36347750109217997,
+ "grad_norm": 2.520740509033203,
+ "learning_rate": 0.00015,
+ "loss": 9.396563529968262,
+ "step": 26
+ },
+ {
+ "epoch": 0.37745740498034075,
+ "grad_norm": 2.471588611602783,
+ "learning_rate": 0.000156,
+ "loss": 9.303571701049805,
+ "step": 27
+ },
+ {
+ "epoch": 0.39143730886850153,
+ "grad_norm": 2.4341530799865723,
+ "learning_rate": 0.000162,
+ "loss": 9.191819190979004,
+ "step": 28
+ },
+ {
+ "epoch": 0.4054172127566623,
+ "grad_norm": 2.369244337081909,
+ "learning_rate": 0.000168,
+ "loss": 9.092012405395508,
+ "step": 29
+ },
+ {
+ "epoch": 0.41939711664482304,
+ "grad_norm": 2.28625226020813,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 8.984567642211914,
+ "step": 30
+ },
+ {
+ "epoch": 0.4333770205329838,
+ "grad_norm": 2.2082231044769287,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 8.889009475708008,
+ "step": 31
+ },
+ {
+ "epoch": 0.4473569244211446,
+ "grad_norm": 2.1429483890533447,
+ "learning_rate": 0.000186,
+ "loss": 8.778556823730469,
+ "step": 32
+ },
+ {
+ "epoch": 0.4613368283093054,
+ "grad_norm": 2.0937352180480957,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 8.661166191101074,
+ "step": 33
+ },
+ {
+ "epoch": 0.4753167321974661,
+ "grad_norm": 2.040790557861328,
+ "learning_rate": 0.000198,
+ "loss": 8.550382614135742,
+ "step": 34
+ },
+ {
+ "epoch": 0.4892966360856269,
+ "grad_norm": 1.93914794921875,
+ "learning_rate": 0.000204,
+ "loss": 8.463907241821289,
+ "step": 35
+ },
+ {
+ "epoch": 0.5032765399737876,
+ "grad_norm": 1.8624178171157837,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 8.3438720703125,
+ "step": 36
+ },
+ {
+ "epoch": 0.5172564438619485,
+ "grad_norm": 1.8107167482376099,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 8.21871566772461,
+ "step": 37
+ },
+ {
+ "epoch": 0.5312363477501092,
+ "grad_norm": 1.717979073524475,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 8.113494873046875,
+ "step": 38
+ },
+ {
+ "epoch": 0.54521625163827,
+ "grad_norm": 1.668742060661316,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 8.006099700927734,
+ "step": 39
+ },
+ {
+ "epoch": 0.5591961555264308,
+ "grad_norm": 1.6147786378860474,
+ "learning_rate": 0.000234,
+ "loss": 7.911509037017822,
+ "step": 40
+ },
+ {
+ "epoch": 0.5731760594145915,
+ "grad_norm": 1.535750150680542,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 7.822839736938477,
+ "step": 41
+ },
+ {
+ "epoch": 0.5871559633027523,
+ "grad_norm": 1.4700065851211548,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 7.713842868804932,
+ "step": 42
+ },
+ {
+ "epoch": 0.601135867190913,
+ "grad_norm": 1.39020574092865,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 7.6040191650390625,
+ "step": 43
+ },
+ {
+ "epoch": 0.6151157710790738,
+ "grad_norm": 1.2875399589538574,
+ "learning_rate": 0.000258,
+ "loss": 7.550642013549805,
+ "step": 44
+ },
+ {
+ "epoch": 0.6290956749672346,
+ "grad_norm": 1.2094247341156006,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 7.460824012756348,
+ "step": 45
+ },
+ {
+ "epoch": 0.6430755788553953,
+ "grad_norm": 1.126452088356018,
+ "learning_rate": 0.00027,
+ "loss": 7.380537986755371,
+ "step": 46
+ },
+ {
+ "epoch": 0.6570554827435562,
+ "grad_norm": 1.0313163995742798,
+ "learning_rate": 0.000276,
+ "loss": 7.286153793334961,
+ "step": 47
+ },
+ {
+ "epoch": 0.6710353866317169,
+ "grad_norm": 0.9172859787940979,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 7.2064714431762695,
+ "step": 48
+ },
+ {
+ "epoch": 0.6850152905198776,
+ "grad_norm": 0.8148201107978821,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 7.158207416534424,
+ "step": 49
+ },
+ {
+ "epoch": 0.6989951944080385,
+ "grad_norm": 0.650123119354248,
+ "learning_rate": 0.000294,
+ "loss": 7.108791828155518,
+ "step": 50
+ },
+ {
+ "epoch": 0.7129750982961992,
+ "grad_norm": 0.5437585711479187,
+ "learning_rate": 0.0003,
+ "loss": 7.083050727844238,
+ "step": 51
+ },
+ {
+ "epoch": 0.7269550021843599,
+ "grad_norm": 0.46762895584106445,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 7.058027267456055,
+ "step": 52
+ },
+ {
+ "epoch": 0.7409349060725208,
+ "grad_norm": 0.47947561740875244,
+ "learning_rate": 0.000312,
+ "loss": 7.015172958374023,
+ "step": 53
+ },
+ {
+ "epoch": 0.7549148099606815,
+ "grad_norm": 0.7546492218971252,
+ "learning_rate": 0.000318,
+ "loss": 7.024629592895508,
+ "step": 54
+ },
+ {
+ "epoch": 0.7688947138488423,
+ "grad_norm": 0.6153718829154968,
+ "learning_rate": 0.000324,
+ "loss": 7.026667594909668,
+ "step": 55
+ },
+ {
+ "epoch": 0.7828746177370031,
+ "grad_norm": 0.3359069228172302,
+ "learning_rate": 0.00033,
+ "loss": 7.008166313171387,
+ "step": 56
+ },
+ {
+ "epoch": 0.7968545216251638,
+ "grad_norm": 0.48906823992729187,
+ "learning_rate": 0.000336,
+ "loss": 7.019716262817383,
+ "step": 57
+ },
+ {
+ "epoch": 0.8108344255133246,
+ "grad_norm": 0.5525421500205994,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 7.02108097076416,
+ "step": 58
+ },
+ {
+ "epoch": 0.8248143294014854,
+ "grad_norm": 0.3103712201118469,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 7.003164768218994,
+ "step": 59
+ },
+ {
+ "epoch": 0.8387942332896461,
+ "grad_norm": 0.4431874752044678,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 7.003463268280029,
+ "step": 60
+ },
+ {
+ "epoch": 0.8527741371778069,
+ "grad_norm": 0.4291120767593384,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 6.96931791305542,
+ "step": 61
+ },
+ {
+ "epoch": 0.8667540410659677,
+ "grad_norm": 0.6566054224967957,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 6.989445686340332,
+ "step": 62
+ },
+ {
+ "epoch": 0.8807339449541285,
+ "grad_norm": 0.20663189888000488,
+ "learning_rate": 0.000372,
+ "loss": 6.9669342041015625,
+ "step": 63
+ },
+ {
+ "epoch": 0.8947138488422892,
+ "grad_norm": 0.6242535710334778,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 6.949883460998535,
+ "step": 64
+ },
+ {
+ "epoch": 0.9086937527304499,
+ "grad_norm": 0.6984224915504456,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 6.955153465270996,
+ "step": 65
+ },
+ {
+ "epoch": 0.9226736566186108,
+ "grad_norm": 0.6328083872795105,
+ "learning_rate": 0.00039,
+ "loss": 6.965421676635742,
+ "step": 66
+ },
+ {
+ "epoch": 0.9366535605067715,
+ "grad_norm": 1.213352918624878,
+ "learning_rate": 0.000396,
+ "loss": 6.9454345703125,
+ "step": 67
+ },
+ {
+ "epoch": 0.9506334643949322,
+ "grad_norm": 0.9221940636634827,
+ "learning_rate": 0.000402,
+ "loss": 6.923908233642578,
+ "step": 68
+ },
+ {
+ "epoch": 0.9646133682830931,
+ "grad_norm": 0.6825450658798218,
+ "learning_rate": 0.000408,
+ "loss": 6.910131454467773,
+ "step": 69
+ },
+ {
+ "epoch": 0.9785932721712538,
+ "grad_norm": 0.5690162181854248,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 6.89891242980957,
+ "step": 70
+ },
+ {
+ "epoch": 0.9925731760594146,
+ "grad_norm": 0.4320870041847229,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 6.896081924438477,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.31632405519485474,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 6.897444725036621,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 7.757839679718018,
+ "eval_runtime": 43.8338,
+ "eval_samples_per_second": 55.71,
+ "eval_steps_per_second": 3.49,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139799038881607,
+ "grad_norm": 0.3789916932582855,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 6.877245903015137,
+ "step": 73
+ },
+ {
+ "epoch": 1.0279598077763215,
+ "grad_norm": 0.9167932868003845,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 6.921600341796875,
+ "step": 74
+ },
+ {
+ "epoch": 1.0419397116644824,
+ "grad_norm": 0.581188440322876,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 6.861001968383789,
+ "step": 75
+ },
+ {
+ "epoch": 1.0559196155526431,
+ "grad_norm": 0.4179714024066925,
+ "learning_rate": 0.00045,
+ "loss": 6.875657081604004,
+ "step": 76
+ },
+ {
+ "epoch": 1.0698995194408039,
+ "grad_norm": 1.0669957399368286,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 6.857122421264648,
+ "step": 77
+ },
+ {
+ "epoch": 1.0838794233289646,
+ "grad_norm": 0.27855145931243896,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 6.828852653503418,
+ "step": 78
+ },
+ {
+ "epoch": 1.0978593272171253,
+ "grad_norm": 0.7192047834396362,
+ "learning_rate": 0.000468,
+ "loss": 6.870839595794678,
+ "step": 79
+ },
+ {
+ "epoch": 1.1118392311052863,
+ "grad_norm": 0.5583325624465942,
+ "learning_rate": 0.000474,
+ "loss": 6.8497514724731445,
+ "step": 80
+ },
+ {
+ "epoch": 1.125819134993447,
+ "grad_norm": 0.3001925051212311,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 6.858528137207031,
+ "step": 81
+ },
+ {
+ "epoch": 1.1397990388816077,
+ "grad_norm": 0.2408239096403122,
+ "learning_rate": 0.000486,
+ "loss": 6.83231258392334,
+ "step": 82
+ },
+ {
+ "epoch": 1.1537789427697684,
+ "grad_norm": 0.28230324387550354,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 6.815476894378662,
+ "step": 83
+ },
+ {
+ "epoch": 1.1677588466579292,
+ "grad_norm": 0.3247123658657074,
+ "learning_rate": 0.000498,
+ "loss": 6.780126094818115,
+ "step": 84
+ },
+ {
+ "epoch": 1.18173875054609,
+ "grad_norm": 0.25713011622428894,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 6.7798309326171875,
+ "step": 85
+ },
+ {
+ "epoch": 1.1957186544342508,
+ "grad_norm": 0.5386835932731628,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 6.791745185852051,
+ "step": 86
+ },
+ {
+ "epoch": 1.2096985583224116,
+ "grad_norm": 0.2226393222808838,
+ "learning_rate": 0.000516,
+ "loss": 6.7826972007751465,
+ "step": 87
+ },
+ {
+ "epoch": 1.2236784622105723,
+ "grad_norm": 0.4338362216949463,
+ "learning_rate": 0.000522,
+ "loss": 6.805043697357178,
+ "step": 88
+ },
+ {
+ "epoch": 1.237658366098733,
+ "grad_norm": 0.2953208386898041,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 6.768434524536133,
+ "step": 89
+ },
+ {
+ "epoch": 1.2516382699868938,
+ "grad_norm": 0.13453717529773712,
+ "learning_rate": 0.000534,
+ "loss": 6.773697376251221,
+ "step": 90
+ },
+ {
+ "epoch": 1.2656181738750547,
+ "grad_norm": 0.35774412751197815,
+ "learning_rate": 0.00054,
+ "loss": 6.766414642333984,
+ "step": 91
+ },
+ {
+ "epoch": 1.2795980777632154,
+ "grad_norm": 0.4669720530509949,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 6.754847526550293,
+ "step": 92
+ },
+ {
+ "epoch": 1.2935779816513762,
+ "grad_norm": 0.13806621730327606,
+ "learning_rate": 0.000552,
+ "loss": 6.746858596801758,
+ "step": 93
+ },
+ {
+ "epoch": 1.307557885539537,
+ "grad_norm": 0.3280332386493683,
+ "learning_rate": 0.000558,
+ "loss": 6.715662956237793,
+ "step": 94
+ },
+ {
+ "epoch": 1.3215377894276976,
+ "grad_norm": 0.4689937233924866,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 6.734938144683838,
+ "step": 95
+ },
+ {
+ "epoch": 1.3355176933158583,
+ "grad_norm": 0.35371264815330505,
+ "learning_rate": 0.00057,
+ "loss": 6.748386383056641,
+ "step": 96
+ },
+ {
+ "epoch": 1.3494975972040193,
+ "grad_norm": 0.15232303738594055,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 6.705557823181152,
+ "step": 97
+ },
+ {
+ "epoch": 1.36347750109218,
+ "grad_norm": 0.30132821202278137,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 6.7199859619140625,
+ "step": 98
+ },
+ {
+ "epoch": 1.3774574049803407,
+ "grad_norm": 0.42174842953681946,
+ "learning_rate": 0.000588,
+ "loss": 6.715370178222656,
+ "step": 99
+ },
+ {
+ "epoch": 1.3914373088685015,
+ "grad_norm": 0.6257228851318359,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 6.707026958465576,
+ "step": 100
+ },
+ {
+ "epoch": 1.4054172127566624,
+ "grad_norm": 0.4551195800304413,
+ "learning_rate": 0.0006,
+ "loss": 6.7078423500061035,
+ "step": 101
+ },
+ {
+ "epoch": 1.4193971166448232,
+ "grad_norm": 0.41940346360206604,
+ "learning_rate": 0.0006,
+ "loss": 6.6959357261657715,
+ "step": 102
+ },
+ {
+ "epoch": 1.4333770205329839,
+ "grad_norm": 0.32251718640327454,
+ "learning_rate": 0.0006,
+ "loss": 6.689168930053711,
+ "step": 103
+ },
+ {
+ "epoch": 1.4473569244211446,
+ "grad_norm": 0.2992720305919647,
+ "learning_rate": 0.0006,
+ "loss": 6.680738925933838,
+ "step": 104
+ },
+ {
+ "epoch": 1.4613368283093053,
+ "grad_norm": 0.3228456974029541,
+ "learning_rate": 0.0006,
+ "loss": 6.672350883483887,
+ "step": 105
+ },
+ {
+ "epoch": 1.475316732197466,
+ "grad_norm": 0.24954743683338165,
+ "learning_rate": 0.0006,
+ "loss": 6.653716087341309,
+ "step": 106
+ },
+ {
+ "epoch": 1.4892966360856268,
+ "grad_norm": 0.30740687251091003,
+ "learning_rate": 0.0006,
+ "loss": 6.676583290100098,
+ "step": 107
+ },
+ {
+ "epoch": 1.5032765399737875,
+ "grad_norm": 0.24950599670410156,
+ "learning_rate": 0.0006,
+ "loss": 6.656691551208496,
+ "step": 108
+ },
+ {
+ "epoch": 1.5172564438619485,
+ "grad_norm": 0.24293005466461182,
+ "learning_rate": 0.0006,
+ "loss": 6.640995979309082,
+ "step": 109
+ },
+ {
+ "epoch": 1.5312363477501092,
+ "grad_norm": 0.30167272686958313,
+ "learning_rate": 0.0006,
+ "loss": 6.647380352020264,
+ "step": 110
+ },
+ {
+ "epoch": 1.5452162516382701,
+ "grad_norm": 0.4424632787704468,
+ "learning_rate": 0.0006,
+ "loss": 6.6548261642456055,
+ "step": 111
+ },
+ {
+ "epoch": 1.5591961555264309,
+ "grad_norm": 0.5295748114585876,
+ "learning_rate": 0.0006,
+ "loss": 6.64370059967041,
+ "step": 112
+ },
+ {
+ "epoch": 1.5731760594145916,
+ "grad_norm": 0.6829339265823364,
+ "learning_rate": 0.0006,
+ "loss": 6.654196739196777,
+ "step": 113
+ },
+ {
+ "epoch": 1.5871559633027523,
+ "grad_norm": 0.6534460186958313,
+ "learning_rate": 0.0006,
+ "loss": 6.675765037536621,
+ "step": 114
+ },
+ {
+ "epoch": 1.601135867190913,
+ "grad_norm": 0.6172244548797607,
+ "learning_rate": 0.0006,
+ "loss": 6.631234169006348,
+ "step": 115
+ },
+ {
+ "epoch": 1.6151157710790738,
+ "grad_norm": 0.5650008320808411,
+ "learning_rate": 0.0006,
+ "loss": 6.654262542724609,
+ "step": 116
+ },
+ {
+ "epoch": 1.6290956749672345,
+ "grad_norm": 0.3890475928783417,
+ "learning_rate": 0.0006,
+ "loss": 6.627526760101318,
+ "step": 117
+ },
+ {
+ "epoch": 1.6430755788553952,
+ "grad_norm": 0.6409873366355896,
+ "learning_rate": 0.0006,
+ "loss": 6.619794845581055,
+ "step": 118
+ },
+ {
+ "epoch": 1.6570554827435562,
+ "grad_norm": 0.5052326321601868,
+ "learning_rate": 0.0006,
+ "loss": 6.612556457519531,
+ "step": 119
+ },
+ {
+ "epoch": 1.671035386631717,
+ "grad_norm": 0.5001237988471985,
+ "learning_rate": 0.0006,
+ "loss": 6.577266693115234,
+ "step": 120
+ },
+ {
+ "epoch": 1.6850152905198776,
+ "grad_norm": 0.5328938364982605,
+ "learning_rate": 0.0006,
+ "loss": 6.59553337097168,
+ "step": 121
+ },
+ {
+ "epoch": 1.6989951944080386,
+ "grad_norm": 0.3568951189517975,
+ "learning_rate": 0.0006,
+ "loss": 6.602717399597168,
+ "step": 122
+ },
+ {
+ "epoch": 1.7129750982961993,
+ "grad_norm": 0.4017309546470642,
+ "learning_rate": 0.0006,
+ "loss": 6.589657783508301,
+ "step": 123
+ },
+ {
+ "epoch": 1.72695500218436,
+ "grad_norm": 0.21432629227638245,
+ "learning_rate": 0.0006,
+ "loss": 6.586555480957031,
+ "step": 124
+ },
+ {
+ "epoch": 1.7409349060725208,
+ "grad_norm": 0.21038052439689636,
+ "learning_rate": 0.0006,
+ "loss": 6.576569557189941,
+ "step": 125
+ },
+ {
+ "epoch": 1.7549148099606815,
+ "grad_norm": 0.23074904084205627,
+ "learning_rate": 0.0006,
+ "loss": 6.5880632400512695,
+ "step": 126
+ },
+ {
+ "epoch": 1.7688947138488422,
+ "grad_norm": 0.42963048815727234,
+ "learning_rate": 0.0006,
+ "loss": 6.603862762451172,
+ "step": 127
+ },
+ {
+ "epoch": 1.782874617737003,
+ "grad_norm": 0.361331045627594,
+ "learning_rate": 0.0006,
+ "loss": 6.579834938049316,
+ "step": 128
+ },
+ {
+ "epoch": 1.7968545216251637,
+ "grad_norm": 0.4951060712337494,
+ "learning_rate": 0.0006,
+ "loss": 6.570443630218506,
+ "step": 129
+ },
+ {
+ "epoch": 1.8108344255133246,
+ "grad_norm": 0.2258434295654297,
+ "learning_rate": 0.0006,
+ "loss": 6.5664777755737305,
+ "step": 130
+ },
+ {
+ "epoch": 1.8248143294014854,
+ "grad_norm": 0.2922155559062958,
+ "learning_rate": 0.0006,
+ "loss": 6.561326503753662,
+ "step": 131
+ },
+ {
+ "epoch": 1.838794233289646,
+ "grad_norm": 0.19068220257759094,
+ "learning_rate": 0.0006,
+ "loss": 6.528727054595947,
+ "step": 132
+ },
+ {
+ "epoch": 1.852774137177807,
+ "grad_norm": 0.2122010439634323,
+ "learning_rate": 0.0006,
+ "loss": 6.535636901855469,
+ "step": 133
+ },
+ {
+ "epoch": 1.8667540410659678,
+ "grad_norm": 0.25760164856910706,
+ "learning_rate": 0.0006,
+ "loss": 6.530498504638672,
+ "step": 134
+ },
+ {
+ "epoch": 1.8807339449541285,
+ "grad_norm": 0.1761016845703125,
+ "learning_rate": 0.0006,
+ "loss": 6.514466285705566,
+ "step": 135
+ },
+ {
+ "epoch": 1.8947138488422892,
+ "grad_norm": 0.2250051498413086,
+ "learning_rate": 0.0006,
+ "loss": 6.521268844604492,
+ "step": 136
+ },
+ {
+ "epoch": 1.90869375273045,
+ "grad_norm": 0.34458497166633606,
+ "learning_rate": 0.0006,
+ "loss": 6.512831687927246,
+ "step": 137
+ },
+ {
+ "epoch": 1.9226736566186107,
+ "grad_norm": 0.3468617796897888,
+ "learning_rate": 0.0006,
+ "loss": 6.515641689300537,
+ "step": 138
+ },
+ {
+ "epoch": 1.9366535605067714,
+ "grad_norm": 0.5051495432853699,
+ "learning_rate": 0.0006,
+ "loss": 6.5147905349731445,
+ "step": 139
+ },
+ {
+ "epoch": 1.9506334643949321,
+ "grad_norm": 0.7106727361679077,
+ "learning_rate": 0.0006,
+ "loss": 6.519277572631836,
+ "step": 140
+ },
+ {
+ "epoch": 1.964613368283093,
+ "grad_norm": 0.8881394267082214,
+ "learning_rate": 0.0006,
+ "loss": 6.526865482330322,
+ "step": 141
+ },
+ {
+ "epoch": 1.9785932721712538,
+ "grad_norm": 0.5552834272384644,
+ "learning_rate": 0.0006,
+ "loss": 6.469970226287842,
+ "step": 142
+ },
+ {
+ "epoch": 1.9925731760594148,
+ "grad_norm": 0.6903126835823059,
+ "learning_rate": 0.0006,
+ "loss": 6.476300239562988,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.47679027915000916,
+ "learning_rate": 0.0006,
+ "loss": 6.463827133178711,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 7.388528823852539,
+ "eval_runtime": 44.2519,
+ "eval_samples_per_second": 55.184,
+ "eval_steps_per_second": 3.457,
+ "step": 144
+ },
+ {
+ "epoch": 2.0139799038881607,
+ "grad_norm": 0.4719221293926239,
+ "learning_rate": 0.0006,
+ "loss": 6.480956077575684,
+ "step": 145
+ },
+ {
+ "epoch": 2.0279598077763215,
+ "grad_norm": 0.41137924790382385,
+ "learning_rate": 0.0006,
+ "loss": 6.449707984924316,
+ "step": 146
+ },
+ {
+ "epoch": 2.041939711664482,
+ "grad_norm": 0.4237765371799469,
+ "learning_rate": 0.0006,
+ "loss": 6.467435836791992,
+ "step": 147
+ },
+ {
+ "epoch": 2.055919615552643,
+ "grad_norm": 0.44081810116767883,
+ "learning_rate": 0.0006,
+ "loss": 6.436868667602539,
+ "step": 148
+ },
+ {
+ "epoch": 2.0698995194408036,
+ "grad_norm": 0.4163798391819,
+ "learning_rate": 0.0006,
+ "loss": 6.4642014503479,
+ "step": 149
+ },
+ {
+ "epoch": 2.083879423328965,
+ "grad_norm": 0.3831583261489868,
+ "learning_rate": 0.0006,
+ "loss": 6.454092025756836,
+ "step": 150
+ },
+ {
+ "epoch": 2.0978593272171255,
+ "grad_norm": 0.37721413373947144,
+ "learning_rate": 0.0006,
+ "loss": 6.426377296447754,
+ "step": 151
+ },
+ {
+ "epoch": 2.1118392311052863,
+ "grad_norm": 0.3323550224304199,
+ "learning_rate": 0.0006,
+ "loss": 6.421375274658203,
+ "step": 152
+ },
+ {
+ "epoch": 2.125819134993447,
+ "grad_norm": 0.47739624977111816,
+ "learning_rate": 0.0006,
+ "loss": 6.412004470825195,
+ "step": 153
+ },
+ {
+ "epoch": 2.1397990388816077,
+ "grad_norm": 0.8530274629592896,
+ "learning_rate": 0.0006,
+ "loss": 6.410468578338623,
+ "step": 154
+ },
+ {
+ "epoch": 2.1537789427697684,
+ "grad_norm": 0.6420364379882812,
+ "learning_rate": 0.0006,
+ "loss": 6.413525581359863,
+ "step": 155
+ },
+ {
+ "epoch": 2.167758846657929,
+ "grad_norm": 0.5005049109458923,
+ "learning_rate": 0.0006,
+ "loss": 6.401463508605957,
+ "step": 156
+ },
+ {
+ "epoch": 2.18173875054609,
+ "grad_norm": 0.3614683449268341,
+ "learning_rate": 0.0006,
+ "loss": 6.390063285827637,
+ "step": 157
+ },
+ {
+ "epoch": 2.1957186544342506,
+ "grad_norm": 0.595215380191803,
+ "learning_rate": 0.0006,
+ "loss": 6.369806289672852,
+ "step": 158
+ },
+ {
+ "epoch": 2.2096985583224114,
+ "grad_norm": 0.5700321793556213,
+ "learning_rate": 0.0006,
+ "loss": 6.368378639221191,
+ "step": 159
+ },
+ {
+ "epoch": 2.2236784622105725,
+ "grad_norm": 0.36273983120918274,
+ "learning_rate": 0.0006,
+ "loss": 6.366860389709473,
+ "step": 160
+ },
+ {
+ "epoch": 2.2376583660987333,
+ "grad_norm": 0.2850998342037201,
+ "learning_rate": 0.0006,
+ "loss": 6.352144718170166,
+ "step": 161
+ },
+ {
+ "epoch": 2.251638269986894,
+ "grad_norm": 0.38558584451675415,
+ "learning_rate": 0.0006,
+ "loss": 6.375765800476074,
+ "step": 162
+ },
+ {
+ "epoch": 2.2656181738750547,
+ "grad_norm": 0.34809231758117676,
+ "learning_rate": 0.0006,
+ "loss": 6.350445747375488,
+ "step": 163
+ },
+ {
+ "epoch": 2.2795980777632154,
+ "grad_norm": 0.5211818814277649,
+ "learning_rate": 0.0006,
+ "loss": 6.354585647583008,
+ "step": 164
+ },
+ {
+ "epoch": 2.293577981651376,
+ "grad_norm": 1.0809133052825928,
+ "learning_rate": 0.0006,
+ "loss": 6.3752007484436035,
+ "step": 165
+ },
+ {
+ "epoch": 2.307557885539537,
+ "grad_norm": 0.8293641209602356,
+ "learning_rate": 0.0006,
+ "loss": 6.35113525390625,
+ "step": 166
+ },
+ {
+ "epoch": 2.3215377894276976,
+ "grad_norm": 0.3428577780723572,
+ "learning_rate": 0.0006,
+ "loss": 6.334470748901367,
+ "step": 167
+ },
+ {
+ "epoch": 2.3355176933158583,
+ "grad_norm": 0.7587600946426392,
+ "learning_rate": 0.0006,
+ "loss": 6.353979587554932,
+ "step": 168
+ },
+ {
+ "epoch": 2.349497597204019,
+ "grad_norm": 0.4227249026298523,
+ "learning_rate": 0.0006,
+ "loss": 6.34018611907959,
+ "step": 169
+ },
+ {
+ "epoch": 2.36347750109218,
+ "grad_norm": 0.4226846694946289,
+ "learning_rate": 0.0006,
+ "loss": 6.290019989013672,
+ "step": 170
+ },
+ {
+ "epoch": 2.3774574049803405,
+ "grad_norm": 0.38412365317344666,
+ "learning_rate": 0.0006,
+ "loss": 6.309510231018066,
+ "step": 171
+ },
+ {
+ "epoch": 2.3914373088685017,
+ "grad_norm": 0.45698508620262146,
+ "learning_rate": 0.0006,
+ "loss": 6.283290863037109,
+ "step": 172
+ },
+ {
+ "epoch": 2.4054172127566624,
+ "grad_norm": 0.7575915455818176,
+ "learning_rate": 0.0006,
+ "loss": 6.306073188781738,
+ "step": 173
+ },
+ {
+ "epoch": 2.419397116644823,
+ "grad_norm": 0.695123553276062,
+ "learning_rate": 0.0006,
+ "loss": 6.308144569396973,
+ "step": 174
+ },
+ {
+ "epoch": 2.433377020532984,
+ "grad_norm": 0.5035743117332458,
+ "learning_rate": 0.0006,
+ "loss": 6.282073974609375,
+ "step": 175
+ },
+ {
+ "epoch": 2.4473569244211446,
+ "grad_norm": 0.3158020079135895,
+ "learning_rate": 0.0006,
+ "loss": 6.282169342041016,
+ "step": 176
+ },
+ {
+ "epoch": 2.4613368283093053,
+ "grad_norm": 0.4829689860343933,
+ "learning_rate": 0.0006,
+ "loss": 6.264578819274902,
+ "step": 177
+ },
+ {
+ "epoch": 2.475316732197466,
+ "grad_norm": 0.3992770314216614,
+ "learning_rate": 0.0006,
+ "loss": 6.228628158569336,
+ "step": 178
+ },
+ {
+ "epoch": 2.489296636085627,
+ "grad_norm": 0.40887606143951416,
+ "learning_rate": 0.0006,
+ "loss": 6.230792045593262,
+ "step": 179
+ },
+ {
+ "epoch": 2.5032765399737875,
+ "grad_norm": 0.3540310263633728,
+ "learning_rate": 0.0006,
+ "loss": 6.222573280334473,
+ "step": 180
+ },
+ {
+ "epoch": 2.5172564438619487,
+ "grad_norm": 0.496219664812088,
+ "learning_rate": 0.0006,
+ "loss": 6.212109565734863,
+ "step": 181
+ },
+ {
+ "epoch": 2.5312363477501094,
+ "grad_norm": 0.435173898935318,
+ "learning_rate": 0.0006,
+ "loss": 6.221210479736328,
+ "step": 182
+ },
+ {
+ "epoch": 2.54521625163827,
+ "grad_norm": 0.5364007949829102,
+ "learning_rate": 0.0006,
+ "loss": 6.217929840087891,
+ "step": 183
+ },
+ {
+ "epoch": 2.559196155526431,
+ "grad_norm": 0.5946390628814697,
+ "learning_rate": 0.0006,
+ "loss": 6.189267158508301,
+ "step": 184
+ },
+ {
+ "epoch": 2.5731760594145916,
+ "grad_norm": 0.41621312499046326,
+ "learning_rate": 0.0006,
+ "loss": 6.182415008544922,
+ "step": 185
+ },
+ {
+ "epoch": 2.5871559633027523,
+ "grad_norm": 0.5442072749137878,
+ "learning_rate": 0.0006,
+ "loss": 6.150757789611816,
+ "step": 186
+ },
+ {
+ "epoch": 2.601135867190913,
+ "grad_norm": 0.727843165397644,
+ "learning_rate": 0.0006,
+ "loss": 6.146082878112793,
+ "step": 187
+ },
+ {
+ "epoch": 2.615115771079074,
+ "grad_norm": 0.8898891806602478,
+ "learning_rate": 0.0006,
+ "loss": 6.190483093261719,
+ "step": 188
+ },
+ {
+ "epoch": 2.6290956749672345,
+ "grad_norm": 0.5173947215080261,
+ "learning_rate": 0.0006,
+ "loss": 6.151251792907715,
+ "step": 189
+ },
+ {
+ "epoch": 2.6430755788553952,
+ "grad_norm": 0.6476729512214661,
+ "learning_rate": 0.0006,
+ "loss": 6.154841423034668,
+ "step": 190
+ },
+ {
+ "epoch": 2.657055482743556,
+ "grad_norm": 0.3538810908794403,
+ "learning_rate": 0.0006,
+ "loss": 6.103879928588867,
+ "step": 191
+ },
+ {
+ "epoch": 2.6710353866317167,
+ "grad_norm": 0.4773508310317993,
+ "learning_rate": 0.0006,
+ "loss": 6.118101119995117,
+ "step": 192
+ },
+ {
+ "epoch": 2.6850152905198774,
+ "grad_norm": 0.29213786125183105,
+ "learning_rate": 0.0006,
+ "loss": 6.108916282653809,
+ "step": 193
+ },
+ {
+ "epoch": 2.6989951944080386,
+ "grad_norm": 0.40800607204437256,
+ "learning_rate": 0.0006,
+ "loss": 6.113438606262207,
+ "step": 194
+ },
+ {
+ "epoch": 2.7129750982961993,
+ "grad_norm": 0.31157299876213074,
+ "learning_rate": 0.0006,
+ "loss": 6.101809501647949,
+ "step": 195
+ },
+ {
+ "epoch": 2.72695500218436,
+ "grad_norm": 0.28660309314727783,
+ "learning_rate": 0.0006,
+ "loss": 6.075886249542236,
+ "step": 196
+ },
+ {
+ "epoch": 2.7409349060725208,
+ "grad_norm": 0.3810449540615082,
+ "learning_rate": 0.0006,
+ "loss": 6.053257942199707,
+ "step": 197
+ },
+ {
+ "epoch": 2.7549148099606815,
+ "grad_norm": 0.21741755306720734,
+ "learning_rate": 0.0006,
+ "loss": 6.013825416564941,
+ "step": 198
+ },
+ {
+ "epoch": 2.7688947138488422,
+ "grad_norm": 0.2777678966522217,
+ "learning_rate": 0.0006,
+ "loss": 6.054204940795898,
+ "step": 199
+ },
+ {
+ "epoch": 2.782874617737003,
+ "grad_norm": 0.28503066301345825,
+ "learning_rate": 0.0006,
+ "loss": 6.035628318786621,
+ "step": 200
+ },
+ {
+ "epoch": 2.7968545216251637,
+ "grad_norm": 0.41954755783081055,
+ "learning_rate": 0.0006,
+ "loss": 6.028354644775391,
+ "step": 201
+ },
+ {
+ "epoch": 2.810834425513325,
+ "grad_norm": 0.8785563111305237,
+ "learning_rate": 0.0006,
+ "loss": 6.055761337280273,
+ "step": 202
+ },
+ {
+ "epoch": 2.8248143294014856,
+ "grad_norm": 1.7459558248519897,
+ "learning_rate": 0.0006,
+ "loss": 6.11599588394165,
+ "step": 203
+ },
+ {
+ "epoch": 2.8387942332896463,
+ "grad_norm": 0.5725523233413696,
+ "learning_rate": 0.0006,
+ "loss": 6.024280548095703,
+ "step": 204
+ },
+ {
+ "epoch": 2.852774137177807,
+ "grad_norm": 0.5913150906562805,
+ "learning_rate": 0.0006,
+ "loss": 6.050281524658203,
+ "step": 205
+ },
+ {
+ "epoch": 2.8667540410659678,
+ "grad_norm": 0.5929384827613831,
+ "learning_rate": 0.0006,
+ "loss": 6.041121482849121,
+ "step": 206
+ },
+ {
+ "epoch": 2.8807339449541285,
+ "grad_norm": 0.5650724768638611,
+ "learning_rate": 0.0006,
+ "loss": 6.004258155822754,
+ "step": 207
+ },
+ {
+ "epoch": 2.894713848842289,
+ "grad_norm": 0.3420545756816864,
+ "learning_rate": 0.0006,
+ "loss": 5.983296871185303,
+ "step": 208
+ },
+ {
+ "epoch": 2.90869375273045,
+ "grad_norm": 0.2960914075374603,
+ "learning_rate": 0.0006,
+ "loss": 5.988578796386719,
+ "step": 209
+ },
+ {
+ "epoch": 2.9226736566186107,
+ "grad_norm": 0.3252662718296051,
+ "learning_rate": 0.0006,
+ "loss": 5.99103307723999,
+ "step": 210
+ },
+ {
+ "epoch": 2.9366535605067714,
+ "grad_norm": 0.4851132929325104,
+ "learning_rate": 0.0006,
+ "loss": 6.0028977394104,
+ "step": 211
+ },
+ {
+ "epoch": 2.950633464394932,
+ "grad_norm": 0.5639995336532593,
+ "learning_rate": 0.0006,
+ "loss": 5.965080738067627,
+ "step": 212
+ },
+ {
+ "epoch": 2.964613368283093,
+ "grad_norm": 0.4514601230621338,
+ "learning_rate": 0.0006,
+ "loss": 5.961450576782227,
+ "step": 213
+ },
+ {
+ "epoch": 2.9785932721712536,
+ "grad_norm": 0.5397921800613403,
+ "learning_rate": 0.0006,
+ "loss": 5.965290546417236,
+ "step": 214
+ },
+ {
+ "epoch": 2.9925731760594148,
+ "grad_norm": 0.4735587239265442,
+ "learning_rate": 0.0006,
+ "loss": 5.952754497528076,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.32061058282852173,
+ "learning_rate": 0.0006,
+ "loss": 5.961667060852051,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 6.8517303466796875,
+ "eval_runtime": 44.03,
+ "eval_samples_per_second": 55.462,
+ "eval_steps_per_second": 3.475,
+ "step": 216
+ },
+ {
+ "epoch": 3.0139799038881607,
+ "grad_norm": 0.3537784814834595,
+ "learning_rate": 0.0006,
+ "loss": 5.928008079528809,
+ "step": 217
+ },
+ {
+ "epoch": 3.0279598077763215,
+ "grad_norm": 0.40713080763816833,
+ "learning_rate": 0.0006,
+ "loss": 5.9150800704956055,
+ "step": 218
+ },
+ {
+ "epoch": 3.041939711664482,
+ "grad_norm": 0.2548826336860657,
+ "learning_rate": 0.0006,
+ "loss": 5.919757843017578,
+ "step": 219
+ },
+ {
+ "epoch": 3.055919615552643,
+ "grad_norm": 0.2818543016910553,
+ "learning_rate": 0.0006,
+ "loss": 5.913688659667969,
+ "step": 220
+ },
+ {
+ "epoch": 3.0698995194408036,
+ "grad_norm": 0.4196692705154419,
+ "learning_rate": 0.0006,
+ "loss": 5.8675336837768555,
+ "step": 221
+ },
+ {
+ "epoch": 3.083879423328965,
+ "grad_norm": 0.35272282361984253,
+ "learning_rate": 0.0006,
+ "loss": 5.878874778747559,
+ "step": 222
+ },
+ {
+ "epoch": 3.0978593272171255,
+ "grad_norm": 0.3254282772541046,
+ "learning_rate": 0.0006,
+ "loss": 5.8823041915893555,
+ "step": 223
+ },
+ {
+ "epoch": 3.1118392311052863,
+ "grad_norm": 0.4052561819553375,
+ "learning_rate": 0.0006,
+ "loss": 5.867744445800781,
+ "step": 224
+ },
+ {
+ "epoch": 3.125819134993447,
+ "grad_norm": 0.31246256828308105,
+ "learning_rate": 0.0006,
+ "loss": 5.886094093322754,
+ "step": 225
+ },
+ {
+ "epoch": 3.1397990388816077,
+ "grad_norm": 0.3479118347167969,
+ "learning_rate": 0.0006,
+ "loss": 5.850762367248535,
+ "step": 226
+ },
+ {
+ "epoch": 3.1537789427697684,
+ "grad_norm": 0.5037238597869873,
+ "learning_rate": 0.0006,
+ "loss": 5.844175815582275,
+ "step": 227
+ },
+ {
+ "epoch": 3.167758846657929,
+ "grad_norm": 0.6271815896034241,
+ "learning_rate": 0.0006,
+ "loss": 5.871790885925293,
+ "step": 228
+ },
+ {
+ "epoch": 3.18173875054609,
+ "grad_norm": 0.43838298320770264,
+ "learning_rate": 0.0006,
+ "loss": 5.844024658203125,
+ "step": 229
+ },
+ {
+ "epoch": 3.1957186544342506,
+ "grad_norm": 0.4755159616470337,
+ "learning_rate": 0.0006,
+ "loss": 5.846892356872559,
+ "step": 230
+ },
+ {
+ "epoch": 3.2096985583224114,
+ "grad_norm": 0.5229779481887817,
+ "learning_rate": 0.0006,
+ "loss": 5.827000617980957,
+ "step": 231
+ },
+ {
+ "epoch": 3.2236784622105725,
+ "grad_norm": 0.8264499306678772,
+ "learning_rate": 0.0006,
+ "loss": 5.867050647735596,
+ "step": 232
+ },
+ {
+ "epoch": 3.2376583660987333,
+ "grad_norm": 1.0607538223266602,
+ "learning_rate": 0.0006,
+ "loss": 5.877876281738281,
+ "step": 233
+ },
+ {
+ "epoch": 3.251638269986894,
+ "grad_norm": 0.7656505703926086,
+ "learning_rate": 0.0006,
+ "loss": 5.86760139465332,
+ "step": 234
+ },
+ {
+ "epoch": 3.2656181738750547,
+ "grad_norm": 0.7940183281898499,
+ "learning_rate": 0.0006,
+ "loss": 5.861355781555176,
+ "step": 235
+ },
+ {
+ "epoch": 3.2795980777632154,
+ "grad_norm": 0.45171424746513367,
+ "learning_rate": 0.0006,
+ "loss": 5.799808502197266,
+ "step": 236
+ },
+ {
+ "epoch": 3.293577981651376,
+ "grad_norm": 0.6174989342689514,
+ "learning_rate": 0.0006,
+ "loss": 5.8585920333862305,
+ "step": 237
+ },
+ {
+ "epoch": 3.307557885539537,
+ "grad_norm": 0.5341290831565857,
+ "learning_rate": 0.0006,
+ "loss": 5.8116044998168945,
+ "step": 238
+ },
+ {
+ "epoch": 3.3215377894276976,
+ "grad_norm": 0.3938343822956085,
+ "learning_rate": 0.0006,
+ "loss": 5.83797550201416,
+ "step": 239
+ },
+ {
+ "epoch": 3.3355176933158583,
+ "grad_norm": 0.5106972455978394,
+ "learning_rate": 0.0006,
+ "loss": 5.832303047180176,
+ "step": 240
+ },
+ {
+ "epoch": 3.349497597204019,
+ "grad_norm": 0.3791428506374359,
+ "learning_rate": 0.0006,
+ "loss": 5.794981956481934,
+ "step": 241
+ },
+ {
+ "epoch": 3.36347750109218,
+ "grad_norm": 0.42287978529930115,
+ "learning_rate": 0.0006,
+ "loss": 5.788144111633301,
+ "step": 242
+ },
+ {
+ "epoch": 3.3774574049803405,
+ "grad_norm": 0.27334436774253845,
+ "learning_rate": 0.0006,
+ "loss": 5.771070957183838,
+ "step": 243
+ },
+ {
+ "epoch": 3.3914373088685017,
+ "grad_norm": 0.2470470368862152,
+ "learning_rate": 0.0006,
+ "loss": 5.755998611450195,
+ "step": 244
+ },
+ {
+ "epoch": 3.4054172127566624,
+ "grad_norm": 0.3043915033340454,
+ "learning_rate": 0.0006,
+ "loss": 5.779492378234863,
+ "step": 245
+ },
+ {
+ "epoch": 3.419397116644823,
+ "grad_norm": 0.2960112988948822,
+ "learning_rate": 0.0006,
+ "loss": 5.750328063964844,
+ "step": 246
+ },
+ {
+ "epoch": 3.433377020532984,
+ "grad_norm": 0.3046723008155823,
+ "learning_rate": 0.0006,
+ "loss": 5.776517868041992,
+ "step": 247
+ },
+ {
+ "epoch": 3.4473569244211446,
+ "grad_norm": 0.22461780905723572,
+ "learning_rate": 0.0006,
+ "loss": 5.760989665985107,
+ "step": 248
+ },
+ {
+ "epoch": 3.4613368283093053,
+ "grad_norm": 0.24625757336616516,
+ "learning_rate": 0.0006,
+ "loss": 5.759706497192383,
+ "step": 249
+ },
+ {
+ "epoch": 3.475316732197466,
+ "grad_norm": 0.18207131326198578,
+ "learning_rate": 0.0006,
+ "loss": 5.747040748596191,
+ "step": 250
+ },
+ {
+ "epoch": 3.489296636085627,
+ "grad_norm": 0.16473834216594696,
+ "learning_rate": 0.0006,
+ "loss": 5.761577606201172,
+ "step": 251
+ },
+ {
+ "epoch": 3.5032765399737875,
+ "grad_norm": 0.25155773758888245,
+ "learning_rate": 0.0006,
+ "loss": 5.696502208709717,
+ "step": 252
+ },
+ {
+ "epoch": 3.5172564438619487,
+ "grad_norm": 0.24115674197673798,
+ "learning_rate": 0.0006,
+ "loss": 5.676957130432129,
+ "step": 253
+ },
+ {
+ "epoch": 3.5312363477501094,
+ "grad_norm": 0.40912172198295593,
+ "learning_rate": 0.0006,
+ "loss": 5.695090293884277,
+ "step": 254
+ },
+ {
+ "epoch": 3.54521625163827,
+ "grad_norm": 0.6727662682533264,
+ "learning_rate": 0.0006,
+ "loss": 5.722194671630859,
+ "step": 255
+ },
+ {
+ "epoch": 3.559196155526431,
+ "grad_norm": 0.8450719118118286,
+ "learning_rate": 0.0006,
+ "loss": 5.764680862426758,
+ "step": 256
+ },
+ {
+ "epoch": 3.5731760594145916,
+ "grad_norm": 0.9916183352470398,
+ "learning_rate": 0.0006,
+ "loss": 5.754530429840088,
+ "step": 257
+ },
+ {
+ "epoch": 3.5871559633027523,
+ "grad_norm": 1.041922688484192,
+ "learning_rate": 0.0006,
+ "loss": 5.781468391418457,
+ "step": 258
+ },
+ {
+ "epoch": 3.601135867190913,
+ "grad_norm": 0.972039520740509,
+ "learning_rate": 0.0006,
+ "loss": 5.760323524475098,
+ "step": 259
+ },
+ {
+ "epoch": 3.615115771079074,
+ "grad_norm": 0.6802462935447693,
+ "learning_rate": 0.0006,
+ "loss": 5.750064849853516,
+ "step": 260
+ },
+ {
+ "epoch": 3.6290956749672345,
+ "grad_norm": 0.48553529381752014,
+ "learning_rate": 0.0006,
+ "loss": 5.7464094161987305,
+ "step": 261
+ },
+ {
+ "epoch": 3.6430755788553952,
+ "grad_norm": 0.4066704213619232,
+ "learning_rate": 0.0006,
+ "loss": 5.719789505004883,
+ "step": 262
+ },
+ {
+ "epoch": 3.657055482743556,
+ "grad_norm": 0.3300860822200775,
+ "learning_rate": 0.0006,
+ "loss": 5.719920635223389,
+ "step": 263
+ },
+ {
+ "epoch": 3.6710353866317167,
+ "grad_norm": 0.3286679983139038,
+ "learning_rate": 0.0006,
+ "loss": 5.723465919494629,
+ "step": 264
+ },
+ {
+ "epoch": 3.6850152905198774,
+ "grad_norm": 0.27653390169143677,
+ "learning_rate": 0.0006,
+ "loss": 5.713820457458496,
+ "step": 265
+ },
+ {
+ "epoch": 3.6989951944080386,
+ "grad_norm": 0.26138055324554443,
+ "learning_rate": 0.0006,
+ "loss": 5.683221817016602,
+ "step": 266
+ },
+ {
+ "epoch": 3.7129750982961993,
+ "grad_norm": 0.23706290125846863,
+ "learning_rate": 0.0006,
+ "loss": 5.6896867752075195,
+ "step": 267
+ },
+ {
+ "epoch": 3.72695500218436,
+ "grad_norm": 0.2751729190349579,
+ "learning_rate": 0.0006,
+ "loss": 5.710301876068115,
+ "step": 268
+ },
+ {
+ "epoch": 3.7409349060725208,
+ "grad_norm": 0.255393385887146,
+ "learning_rate": 0.0006,
+ "loss": 5.687932968139648,
+ "step": 269
+ },
+ {
+ "epoch": 3.7549148099606815,
+ "grad_norm": 0.21453925967216492,
+ "learning_rate": 0.0006,
+ "loss": 5.68234395980835,
+ "step": 270
+ },
+ {
+ "epoch": 3.7688947138488422,
+ "grad_norm": 0.21771012246608734,
+ "learning_rate": 0.0006,
+ "loss": 5.683980464935303,
+ "step": 271
+ },
+ {
+ "epoch": 3.782874617737003,
+ "grad_norm": 0.1884593963623047,
+ "learning_rate": 0.0006,
+ "loss": 5.662779808044434,
+ "step": 272
+ },
+ {
+ "epoch": 3.7968545216251637,
+ "grad_norm": 0.20429612696170807,
+ "learning_rate": 0.0006,
+ "loss": 5.650941848754883,
+ "step": 273
+ },
+ {
+ "epoch": 3.810834425513325,
+ "grad_norm": 0.22586797177791595,
+ "learning_rate": 0.0006,
+ "loss": 5.639376640319824,
+ "step": 274
+ },
+ {
+ "epoch": 3.8248143294014856,
+ "grad_norm": 0.19651705026626587,
+ "learning_rate": 0.0006,
+ "loss": 5.612030029296875,
+ "step": 275
+ },
+ {
+ "epoch": 3.8387942332896463,
+ "grad_norm": 0.2125253826379776,
+ "learning_rate": 0.0006,
+ "loss": 5.622836589813232,
+ "step": 276
+ },
+ {
+ "epoch": 3.852774137177807,
+ "grad_norm": 0.2905234694480896,
+ "learning_rate": 0.0006,
+ "loss": 5.624594688415527,
+ "step": 277
+ },
+ {
+ "epoch": 3.8667540410659678,
+ "grad_norm": 0.2718426585197449,
+ "learning_rate": 0.0006,
+ "loss": 5.619892120361328,
+ "step": 278
+ },
+ {
+ "epoch": 3.8807339449541285,
+ "grad_norm": 0.26481127738952637,
+ "learning_rate": 0.0006,
+ "loss": 5.612496852874756,
+ "step": 279
+ },
+ {
+ "epoch": 3.894713848842289,
+ "grad_norm": 0.2876453399658203,
+ "learning_rate": 0.0006,
+ "loss": 5.59157133102417,
+ "step": 280
+ },
+ {
+ "epoch": 3.90869375273045,
+ "grad_norm": 0.22829554975032806,
+ "learning_rate": 0.0006,
+ "loss": 5.5884199142456055,
+ "step": 281
+ },
+ {
+ "epoch": 3.9226736566186107,
+ "grad_norm": 0.22852344810962677,
+ "learning_rate": 0.0006,
+ "loss": 5.618719100952148,
+ "step": 282
+ },
+ {
+ "epoch": 3.9366535605067714,
+ "grad_norm": 0.37366563081741333,
+ "learning_rate": 0.0006,
+ "loss": 5.611738204956055,
+ "step": 283
+ },
+ {
+ "epoch": 3.950633464394932,
+ "grad_norm": 0.5650382041931152,
+ "learning_rate": 0.0006,
+ "loss": 5.606371879577637,
+ "step": 284
+ },
+ {
+ "epoch": 3.964613368283093,
+ "grad_norm": 0.5960066914558411,
+ "learning_rate": 0.0006,
+ "loss": 5.595022201538086,
+ "step": 285
+ },
+ {
+ "epoch": 3.9785932721712536,
+ "grad_norm": 0.3561663031578064,
+ "learning_rate": 0.0006,
+ "loss": 5.581035614013672,
+ "step": 286
+ },
+ {
+ "epoch": 3.9925731760594148,
+ "grad_norm": 0.44699913263320923,
+ "learning_rate": 0.0006,
+ "loss": 5.568033218383789,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.42783990502357483,
+ "learning_rate": 0.0006,
+ "loss": 5.571993827819824,
+ "step": 288
+ },
+ {
+ "epoch": 4.0,
+ "eval_loss": 6.349016189575195,
+ "eval_runtime": 44.3326,
+ "eval_samples_per_second": 55.084,
+ "eval_steps_per_second": 3.451,
+ "step": 288
+ },
+ {
+ "epoch": 4.013979903888161,
+ "grad_norm": 0.41305896639823914,
+ "learning_rate": 0.0006,
+ "loss": 5.562954902648926,
+ "step": 289
+ },
+ {
+ "epoch": 4.0279598077763215,
+ "grad_norm": 0.3966459035873413,
+ "learning_rate": 0.0006,
+ "loss": 5.5671916007995605,
+ "step": 290
+ },
+ {
+ "epoch": 4.041939711664482,
+ "grad_norm": 0.4846104085445404,
+ "learning_rate": 0.0006,
+ "loss": 5.548027038574219,
+ "step": 291
+ },
+ {
+ "epoch": 4.055919615552643,
+ "grad_norm": 0.5916333794593811,
+ "learning_rate": 0.0006,
+ "loss": 5.5900068283081055,
+ "step": 292
+ },
+ {
+ "epoch": 4.069899519440804,
+ "grad_norm": 0.5973889231681824,
+ "learning_rate": 0.0006,
+ "loss": 5.537594795227051,
+ "step": 293
+ },
+ {
+ "epoch": 4.083879423328964,
+ "grad_norm": 0.4190494418144226,
+ "learning_rate": 0.0006,
+ "loss": 5.534749984741211,
+ "step": 294
+ },
+ {
+ "epoch": 4.097859327217125,
+ "grad_norm": 0.5956901907920837,
+ "learning_rate": 0.0006,
+ "loss": 5.554540634155273,
+ "step": 295
+ },
+ {
+ "epoch": 4.111839231105286,
+ "grad_norm": 0.8257920742034912,
+ "learning_rate": 0.0006,
+ "loss": 5.5728068351745605,
+ "step": 296
+ },
+ {
+ "epoch": 4.1258191349934465,
+ "grad_norm": 0.7241750955581665,
+ "learning_rate": 0.0006,
+ "loss": 5.5643815994262695,
+ "step": 297
+ },
+ {
+ "epoch": 4.139799038881607,
+ "grad_norm": 0.45730507373809814,
+ "learning_rate": 0.0006,
+ "loss": 5.554225921630859,
+ "step": 298
+ },
+ {
+ "epoch": 4.153778942769769,
+ "grad_norm": 0.5166977643966675,
+ "learning_rate": 0.0006,
+ "loss": 5.540790557861328,
+ "step": 299
+ },
+ {
+ "epoch": 4.16775884665793,
+ "grad_norm": 0.433237761259079,
+ "learning_rate": 0.0006,
+ "loss": 5.536884784698486,
+ "step": 300
+ },
+ {
+ "epoch": 4.18173875054609,
+ "grad_norm": 0.3369830250740051,
+ "learning_rate": 0.0006,
+ "loss": 5.532837867736816,
+ "step": 301
+ },
+ {
+ "epoch": 4.195718654434251,
+ "grad_norm": 0.33091458678245544,
+ "learning_rate": 0.0006,
+ "loss": 5.547643661499023,
+ "step": 302
+ },
+ {
+ "epoch": 4.209698558322412,
+ "grad_norm": 0.36462724208831787,
+ "learning_rate": 0.0006,
+ "loss": 5.525021076202393,
+ "step": 303
+ },
+ {
+ "epoch": 4.2236784622105725,
+ "grad_norm": 0.3342771530151367,
+ "learning_rate": 0.0006,
+ "loss": 5.512082099914551,
+ "step": 304
+ },
+ {
+ "epoch": 4.237658366098733,
+ "grad_norm": 0.26784762740135193,
+ "learning_rate": 0.0006,
+ "loss": 5.488072395324707,
+ "step": 305
+ },
+ {
+ "epoch": 4.251638269986894,
+ "grad_norm": 0.25986987352371216,
+ "learning_rate": 0.0006,
+ "loss": 5.4960455894470215,
+ "step": 306
+ },
+ {
+ "epoch": 4.265618173875055,
+ "grad_norm": 0.24595795571804047,
+ "learning_rate": 0.0006,
+ "loss": 5.513367176055908,
+ "step": 307
+ },
+ {
+ "epoch": 4.279598077763215,
+ "grad_norm": 0.2224857211112976,
+ "learning_rate": 0.0006,
+ "loss": 5.465205192565918,
+ "step": 308
+ },
+ {
+ "epoch": 4.293577981651376,
+ "grad_norm": 0.26799243688583374,
+ "learning_rate": 0.0006,
+ "loss": 5.476632118225098,
+ "step": 309
+ },
+ {
+ "epoch": 4.307557885539537,
+ "grad_norm": 0.20443417131900787,
+ "learning_rate": 0.0006,
+ "loss": 5.442601203918457,
+ "step": 310
+ },
+ {
+ "epoch": 4.321537789427698,
+ "grad_norm": 0.2275059074163437,
+ "learning_rate": 0.0006,
+ "loss": 5.453519344329834,
+ "step": 311
+ },
+ {
+ "epoch": 4.335517693315858,
+ "grad_norm": 0.2860901951789856,
+ "learning_rate": 0.0006,
+ "loss": 5.439424514770508,
+ "step": 312
+ },
+ {
+ "epoch": 4.349497597204019,
+ "grad_norm": 0.3378142714500427,
+ "learning_rate": 0.0006,
+ "loss": 5.476953983306885,
+ "step": 313
+ },
+ {
+ "epoch": 4.36347750109218,
+ "grad_norm": 0.3487110733985901,
+ "learning_rate": 0.0006,
+ "loss": 5.47003698348999,
+ "step": 314
+ },
+ {
+ "epoch": 4.3774574049803405,
+ "grad_norm": 0.3655227720737457,
+ "learning_rate": 0.0006,
+ "loss": 5.454250812530518,
+ "step": 315
+ },
+ {
+ "epoch": 4.391437308868501,
+ "grad_norm": 0.3754786252975464,
+ "learning_rate": 0.0006,
+ "loss": 5.475249290466309,
+ "step": 316
+ },
+ {
+ "epoch": 4.405417212756662,
+ "grad_norm": 0.42494088411331177,
+ "learning_rate": 0.0006,
+ "loss": 5.4552459716796875,
+ "step": 317
+ },
+ {
+ "epoch": 4.419397116644823,
+ "grad_norm": 0.4914703667163849,
+ "learning_rate": 0.0006,
+ "loss": 5.431845188140869,
+ "step": 318
+ },
+ {
+ "epoch": 4.433377020532983,
+ "grad_norm": 0.42470860481262207,
+ "learning_rate": 0.0006,
+ "loss": 5.454581260681152,
+ "step": 319
+ },
+ {
+ "epoch": 4.447356924421145,
+ "grad_norm": 0.3828011155128479,
+ "learning_rate": 0.0006,
+ "loss": 5.435178756713867,
+ "step": 320
+ },
+ {
+ "epoch": 4.461336828309306,
+ "grad_norm": 0.47256892919540405,
+ "learning_rate": 0.0006,
+ "loss": 5.428861618041992,
+ "step": 321
+ },
+ {
+ "epoch": 4.4753167321974665,
+ "grad_norm": 0.5665146708488464,
+ "learning_rate": 0.0006,
+ "loss": 5.424633026123047,
+ "step": 322
+ },
+ {
+ "epoch": 4.489296636085627,
+ "grad_norm": 0.48146721720695496,
+ "learning_rate": 0.0006,
+ "loss": 5.4577860832214355,
+ "step": 323
+ },
+ {
+ "epoch": 4.503276539973788,
+ "grad_norm": 0.3378535509109497,
+ "learning_rate": 0.0006,
+ "loss": 5.422727108001709,
+ "step": 324
+ },
+ {
+ "epoch": 4.517256443861949,
+ "grad_norm": 0.41981473565101624,
+ "learning_rate": 0.0006,
+ "loss": 5.418993949890137,
+ "step": 325
+ },
+ {
+ "epoch": 4.531236347750109,
+ "grad_norm": 0.39389684796333313,
+ "learning_rate": 0.0006,
+ "loss": 5.41835880279541,
+ "step": 326
+ },
+ {
+ "epoch": 4.54521625163827,
+ "grad_norm": 0.5912176370620728,
+ "learning_rate": 0.0006,
+ "loss": 5.40073299407959,
+ "step": 327
+ },
+ {
+ "epoch": 4.559196155526431,
+ "grad_norm": 0.6877487897872925,
+ "learning_rate": 0.0006,
+ "loss": 5.445301055908203,
+ "step": 328
+ },
+ {
+ "epoch": 4.573176059414592,
+ "grad_norm": 0.580555260181427,
+ "learning_rate": 0.0006,
+ "loss": 5.431069374084473,
+ "step": 329
+ },
+ {
+ "epoch": 4.587155963302752,
+ "grad_norm": 0.5974457859992981,
+ "learning_rate": 0.0006,
+ "loss": 5.422694206237793,
+ "step": 330
+ },
+ {
+ "epoch": 4.601135867190913,
+ "grad_norm": 0.722481906414032,
+ "learning_rate": 0.0006,
+ "loss": 5.447752952575684,
+ "step": 331
+ },
+ {
+ "epoch": 4.615115771079074,
+ "grad_norm": 0.7687886953353882,
+ "learning_rate": 0.0006,
+ "loss": 5.437956809997559,
+ "step": 332
+ },
+ {
+ "epoch": 4.6290956749672345,
+ "grad_norm": 0.7368173003196716,
+ "learning_rate": 0.0006,
+ "loss": 5.4367241859436035,
+ "step": 333
+ },
+ {
+ "epoch": 4.643075578855395,
+ "grad_norm": 0.6650524139404297,
+ "learning_rate": 0.0006,
+ "loss": 5.4288434982299805,
+ "step": 334
+ },
+ {
+ "epoch": 4.657055482743556,
+ "grad_norm": 0.4997614920139313,
+ "learning_rate": 0.0006,
+ "loss": 5.412769317626953,
+ "step": 335
+ },
+ {
+ "epoch": 4.671035386631717,
+ "grad_norm": 0.44208982586860657,
+ "learning_rate": 0.0006,
+ "loss": 5.42405366897583,
+ "step": 336
+ },
+ {
+ "epoch": 4.685015290519877,
+ "grad_norm": 0.39510273933410645,
+ "learning_rate": 0.0006,
+ "loss": 5.402547836303711,
+ "step": 337
+ },
+ {
+ "epoch": 4.698995194408038,
+ "grad_norm": 0.44970476627349854,
+ "learning_rate": 0.0006,
+ "loss": 5.377168655395508,
+ "step": 338
+ },
+ {
+ "epoch": 4.712975098296199,
+ "grad_norm": 0.3902331590652466,
+ "learning_rate": 0.0006,
+ "loss": 5.401622772216797,
+ "step": 339
+ },
+ {
+ "epoch": 4.72695500218436,
+ "grad_norm": 0.33485135436058044,
+ "learning_rate": 0.0006,
+ "loss": 5.397945880889893,
+ "step": 340
+ },
+ {
+ "epoch": 4.740934906072521,
+ "grad_norm": 0.29062309861183167,
+ "learning_rate": 0.0006,
+ "loss": 5.356175422668457,
+ "step": 341
+ },
+ {
+ "epoch": 4.754914809960681,
+ "grad_norm": 0.23617377877235413,
+ "learning_rate": 0.0006,
+ "loss": 5.388517379760742,
+ "step": 342
+ },
+ {
+ "epoch": 4.768894713848843,
+ "grad_norm": 0.2704737186431885,
+ "learning_rate": 0.0006,
+ "loss": 5.3746137619018555,
+ "step": 343
+ },
+ {
+ "epoch": 4.782874617737003,
+ "grad_norm": 0.20488551259040833,
+ "learning_rate": 0.0006,
+ "loss": 5.3754472732543945,
+ "step": 344
+ },
+ {
+ "epoch": 4.796854521625164,
+ "grad_norm": 0.2007082849740982,
+ "learning_rate": 0.0006,
+ "loss": 5.3538618087768555,
+ "step": 345
+ },
+ {
+ "epoch": 4.810834425513325,
+ "grad_norm": 0.21732935309410095,
+ "learning_rate": 0.0006,
+ "loss": 5.351774215698242,
+ "step": 346
+ },
+ {
+ "epoch": 4.824814329401486,
+ "grad_norm": 0.1944841742515564,
+ "learning_rate": 0.0006,
+ "loss": 5.357545852661133,
+ "step": 347
+ },
+ {
+ "epoch": 4.838794233289646,
+ "grad_norm": 0.1953933835029602,
+ "learning_rate": 0.0006,
+ "loss": 5.321681022644043,
+ "step": 348
+ },
+ {
+ "epoch": 4.852774137177807,
+ "grad_norm": 0.1743433028459549,
+ "learning_rate": 0.0006,
+ "loss": 5.340302467346191,
+ "step": 349
+ },
+ {
+ "epoch": 4.866754041065968,
+ "grad_norm": 0.19655466079711914,
+ "learning_rate": 0.0006,
+ "loss": 5.325471878051758,
+ "step": 350
+ },
+ {
+ "epoch": 4.8807339449541285,
+ "grad_norm": 0.15761791169643402,
+ "learning_rate": 0.0006,
+ "loss": 5.3453240394592285,
+ "step": 351
+ },
+ {
+ "epoch": 4.894713848842289,
+ "grad_norm": 0.19164425134658813,
+ "learning_rate": 0.0006,
+ "loss": 5.315583229064941,
+ "step": 352
+ },
+ {
+ "epoch": 4.90869375273045,
+ "grad_norm": 0.28084540367126465,
+ "learning_rate": 0.0006,
+ "loss": 5.309171676635742,
+ "step": 353
+ },
+ {
+ "epoch": 4.922673656618611,
+ "grad_norm": 0.4681853652000427,
+ "learning_rate": 0.0006,
+ "loss": 5.318211078643799,
+ "step": 354
+ },
+ {
+ "epoch": 4.936653560506771,
+ "grad_norm": 0.6417295932769775,
+ "learning_rate": 0.0006,
+ "loss": 5.309263706207275,
+ "step": 355
+ },
+ {
+ "epoch": 4.950633464394932,
+ "grad_norm": 0.501312792301178,
+ "learning_rate": 0.0006,
+ "loss": 5.321534156799316,
+ "step": 356
+ },
+ {
+ "epoch": 4.964613368283093,
+ "grad_norm": 0.47502145171165466,
+ "learning_rate": 0.0006,
+ "loss": 5.323659896850586,
+ "step": 357
+ },
+ {
+ "epoch": 4.978593272171254,
+ "grad_norm": 0.5366594791412354,
+ "learning_rate": 0.0006,
+ "loss": 5.327367782592773,
+ "step": 358
+ },
+ {
+ "epoch": 4.992573176059414,
+ "grad_norm": 0.6986395120620728,
+ "learning_rate": 0.0006,
+ "loss": 5.311097145080566,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.6626625657081604,
+ "learning_rate": 0.0006,
+ "loss": 5.337558269500732,
+ "step": 360
+ },
+ {
+ "epoch": 5.0,
+ "eval_loss": 5.929230690002441,
+ "eval_runtime": 44.5268,
+ "eval_samples_per_second": 54.843,
+ "eval_steps_per_second": 3.436,
+ "step": 360
+ },
+ {
+ "epoch": 5.013979903888161,
+ "grad_norm": 0.7383704781532288,
+ "learning_rate": 0.0006,
+ "loss": 5.315563678741455,
+ "step": 361
+ },
+ {
+ "epoch": 5.0279598077763215,
+ "grad_norm": 0.7730138301849365,
+ "learning_rate": 0.0006,
+ "loss": 5.324905872344971,
+ "step": 362
+ },
+ {
+ "epoch": 5.041939711664482,
+ "grad_norm": 0.8170825839042664,
+ "learning_rate": 0.0006,
+ "loss": 5.350251197814941,
+ "step": 363
+ },
+ {
+ "epoch": 5.055919615552643,
+ "grad_norm": 0.6950958371162415,
+ "learning_rate": 0.0006,
+ "loss": 5.338744163513184,
+ "step": 364
+ },
+ {
+ "epoch": 5.069899519440804,
+ "grad_norm": 0.5582894086837769,
+ "learning_rate": 0.0006,
+ "loss": 5.340539932250977,
+ "step": 365
+ },
+ {
+ "epoch": 5.083879423328964,
+ "grad_norm": 0.4772159159183502,
+ "learning_rate": 0.0006,
+ "loss": 5.344161033630371,
+ "step": 366
+ },
+ {
+ "epoch": 5.097859327217125,
+ "grad_norm": 0.5432839393615723,
+ "learning_rate": 0.0006,
+ "loss": 5.312403678894043,
+ "step": 367
+ },
+ {
+ "epoch": 5.111839231105286,
+ "grad_norm": 0.4944784641265869,
+ "learning_rate": 0.0006,
+ "loss": 5.30281925201416,
+ "step": 368
+ },
+ {
+ "epoch": 5.1258191349934465,
+ "grad_norm": 0.4298315942287445,
+ "learning_rate": 0.0006,
+ "loss": 5.29564094543457,
+ "step": 369
+ },
+ {
+ "epoch": 5.139799038881607,
+ "grad_norm": 0.349889874458313,
+ "learning_rate": 0.0006,
+ "loss": 5.287062644958496,
+ "step": 370
+ },
+ {
+ "epoch": 5.153778942769769,
+ "grad_norm": 0.2823719084262848,
+ "learning_rate": 0.0006,
+ "loss": 5.28826904296875,
+ "step": 371
+ },
+ {
+ "epoch": 5.16775884665793,
+ "grad_norm": 0.32975050806999207,
+ "learning_rate": 0.0006,
+ "loss": 5.256399631500244,
+ "step": 372
+ },
+ {
+ "epoch": 5.18173875054609,
+ "grad_norm": 0.2963952124118805,
+ "learning_rate": 0.0006,
+ "loss": 5.273757457733154,
+ "step": 373
+ },
+ {
+ "epoch": 5.195718654434251,
+ "grad_norm": 0.21345984935760498,
+ "learning_rate": 0.0006,
+ "loss": 5.274978160858154,
+ "step": 374
+ },
+ {
+ "epoch": 5.209698558322412,
+ "grad_norm": 0.2363101840019226,
+ "learning_rate": 0.0006,
+ "loss": 5.261585235595703,
+ "step": 375
+ },
+ {
+ "epoch": 5.2236784622105725,
+ "grad_norm": 0.19626963138580322,
+ "learning_rate": 0.0006,
+ "loss": 5.259700298309326,
+ "step": 376
+ },
+ {
+ "epoch": 5.237658366098733,
+ "grad_norm": 0.21083571016788483,
+ "learning_rate": 0.0006,
+ "loss": 5.233585357666016,
+ "step": 377
+ },
+ {
+ "epoch": 5.251638269986894,
+ "grad_norm": 0.2273513823747635,
+ "learning_rate": 0.0006,
+ "loss": 5.231740474700928,
+ "step": 378
+ },
+ {
+ "epoch": 5.265618173875055,
+ "grad_norm": 0.18299247324466705,
+ "learning_rate": 0.0006,
+ "loss": 5.251256465911865,
+ "step": 379
+ },
+ {
+ "epoch": 5.279598077763215,
+ "grad_norm": 0.19578224420547485,
+ "learning_rate": 0.0006,
+ "loss": 5.230329513549805,
+ "step": 380
+ },
+ {
+ "epoch": 5.293577981651376,
+ "grad_norm": 0.20308879017829895,
+ "learning_rate": 0.0006,
+ "loss": 5.243951797485352,
+ "step": 381
+ },
+ {
+ "epoch": 5.307557885539537,
+ "grad_norm": 0.21053212881088257,
+ "learning_rate": 0.0006,
+ "loss": 5.210272789001465,
+ "step": 382
+ },
+ {
+ "epoch": 5.321537789427698,
+ "grad_norm": 0.21852520108222961,
+ "learning_rate": 0.0006,
+ "loss": 5.215418815612793,
+ "step": 383
+ },
+ {
+ "epoch": 5.335517693315858,
+ "grad_norm": 0.24872010946273804,
+ "learning_rate": 0.0006,
+ "loss": 5.225139617919922,
+ "step": 384
+ },
+ {
+ "epoch": 5.349497597204019,
+ "grad_norm": 0.27780187129974365,
+ "learning_rate": 0.0006,
+ "loss": 5.241010665893555,
+ "step": 385
+ },
+ {
+ "epoch": 5.36347750109218,
+ "grad_norm": 0.261767715215683,
+ "learning_rate": 0.0006,
+ "loss": 5.230723857879639,
+ "step": 386
+ },
+ {
+ "epoch": 5.3774574049803405,
+ "grad_norm": 0.2111261785030365,
+ "learning_rate": 0.0006,
+ "loss": 5.1848602294921875,
+ "step": 387
+ },
+ {
+ "epoch": 5.391437308868501,
+ "grad_norm": 0.24325387179851532,
+ "learning_rate": 0.0006,
+ "loss": 5.180911064147949,
+ "step": 388
+ },
+ {
+ "epoch": 5.405417212756662,
+ "grad_norm": 0.19542962312698364,
+ "learning_rate": 0.0006,
+ "loss": 5.189907073974609,
+ "step": 389
+ },
+ {
+ "epoch": 5.419397116644823,
+ "grad_norm": 0.20489346981048584,
+ "learning_rate": 0.0006,
+ "loss": 5.184634208679199,
+ "step": 390
+ },
+ {
+ "epoch": 5.433377020532983,
+ "grad_norm": 0.2753409147262573,
+ "learning_rate": 0.0006,
+ "loss": 5.190083026885986,
+ "step": 391
+ },
+ {
+ "epoch": 5.447356924421145,
+ "grad_norm": 0.3758019208908081,
+ "learning_rate": 0.0006,
+ "loss": 5.189423561096191,
+ "step": 392
+ },
+ {
+ "epoch": 5.461336828309306,
+ "grad_norm": 0.4425095021724701,
+ "learning_rate": 0.0006,
+ "loss": 5.17152214050293,
+ "step": 393
+ },
+ {
+ "epoch": 5.4753167321974665,
+ "grad_norm": 0.39721858501434326,
+ "learning_rate": 0.0006,
+ "loss": 5.189178466796875,
+ "step": 394
+ },
+ {
+ "epoch": 5.489296636085627,
+ "grad_norm": 0.43441957235336304,
+ "learning_rate": 0.0006,
+ "loss": 5.1823577880859375,
+ "step": 395
+ },
+ {
+ "epoch": 5.503276539973788,
+ "grad_norm": 0.3583861291408539,
+ "learning_rate": 0.0006,
+ "loss": 5.160187721252441,
+ "step": 396
+ },
+ {
+ "epoch": 5.517256443861949,
+ "grad_norm": 0.323290079832077,
+ "learning_rate": 0.0006,
+ "loss": 5.113046646118164,
+ "step": 397
+ },
+ {
+ "epoch": 5.531236347750109,
+ "grad_norm": 0.3049418330192566,
+ "learning_rate": 0.0006,
+ "loss": 5.172209739685059,
+ "step": 398
+ },
+ {
+ "epoch": 5.54521625163827,
+ "grad_norm": 0.3253744840621948,
+ "learning_rate": 0.0006,
+ "loss": 5.1970720291137695,
+ "step": 399
+ },
+ {
+ "epoch": 5.559196155526431,
+ "grad_norm": 0.3232555091381073,
+ "learning_rate": 0.0006,
+ "loss": 5.173195838928223,
+ "step": 400
+ },
+ {
+ "epoch": 5.573176059414592,
+ "grad_norm": 0.33751845359802246,
+ "learning_rate": 0.0006,
+ "loss": 5.137526988983154,
+ "step": 401
+ },
+ {
+ "epoch": 5.587155963302752,
+ "grad_norm": 0.45970913767814636,
+ "learning_rate": 0.0006,
+ "loss": 5.123377799987793,
+ "step": 402
+ },
+ {
+ "epoch": 5.601135867190913,
+ "grad_norm": 0.5383784770965576,
+ "learning_rate": 0.0006,
+ "loss": 5.154180526733398,
+ "step": 403
+ },
+ {
+ "epoch": 5.615115771079074,
+ "grad_norm": 0.45765912532806396,
+ "learning_rate": 0.0006,
+ "loss": 5.1485209465026855,
+ "step": 404
+ },
+ {
+ "epoch": 5.6290956749672345,
+ "grad_norm": 0.5079503059387207,
+ "learning_rate": 0.0006,
+ "loss": 5.158293724060059,
+ "step": 405
+ },
+ {
+ "epoch": 5.643075578855395,
+ "grad_norm": 0.4860183894634247,
+ "learning_rate": 0.0006,
+ "loss": 5.1610212326049805,
+ "step": 406
+ },
+ {
+ "epoch": 5.657055482743556,
+ "grad_norm": 0.4065648913383484,
+ "learning_rate": 0.0006,
+ "loss": 5.1260786056518555,
+ "step": 407
+ },
+ {
+ "epoch": 5.671035386631717,
+ "grad_norm": 0.39606142044067383,
+ "learning_rate": 0.0006,
+ "loss": 5.1598711013793945,
+ "step": 408
+ },
+ {
+ "epoch": 5.685015290519877,
+ "grad_norm": 0.4705151319503784,
+ "learning_rate": 0.0006,
+ "loss": 5.166455268859863,
+ "step": 409
+ },
+ {
+ "epoch": 5.698995194408038,
+ "grad_norm": 0.5040799379348755,
+ "learning_rate": 0.0006,
+ "loss": 5.1408209800720215,
+ "step": 410
+ },
+ {
+ "epoch": 5.712975098296199,
+ "grad_norm": 0.5012556910514832,
+ "learning_rate": 0.0006,
+ "loss": 5.144109725952148,
+ "step": 411
+ },
+ {
+ "epoch": 5.72695500218436,
+ "grad_norm": 0.44301411509513855,
+ "learning_rate": 0.0006,
+ "loss": 5.155509948730469,
+ "step": 412
+ },
+ {
+ "epoch": 5.740934906072521,
+ "grad_norm": 0.36632269620895386,
+ "learning_rate": 0.0006,
+ "loss": 5.123111248016357,
+ "step": 413
+ },
+ {
+ "epoch": 5.754914809960681,
+ "grad_norm": 0.2980524003505707,
+ "learning_rate": 0.0006,
+ "loss": 5.1355719566345215,
+ "step": 414
+ },
+ {
+ "epoch": 5.768894713848843,
+ "grad_norm": 0.3441782295703888,
+ "learning_rate": 0.0006,
+ "loss": 5.132327079772949,
+ "step": 415
+ },
+ {
+ "epoch": 5.782874617737003,
+ "grad_norm": 0.4150780737400055,
+ "learning_rate": 0.0006,
+ "loss": 5.148543357849121,
+ "step": 416
+ },
+ {
+ "epoch": 5.796854521625164,
+ "grad_norm": 0.48417383432388306,
+ "learning_rate": 0.0006,
+ "loss": 5.104989528656006,
+ "step": 417
+ },
+ {
+ "epoch": 5.810834425513325,
+ "grad_norm": 0.3216031491756439,
+ "learning_rate": 0.0006,
+ "loss": 5.0926127433776855,
+ "step": 418
+ },
+ {
+ "epoch": 5.824814329401486,
+ "grad_norm": 0.2821158468723297,
+ "learning_rate": 0.0006,
+ "loss": 5.112299919128418,
+ "step": 419
+ },
+ {
+ "epoch": 5.838794233289646,
+ "grad_norm": 0.29821011424064636,
+ "learning_rate": 0.0006,
+ "loss": 5.091662406921387,
+ "step": 420
+ },
+ {
+ "epoch": 5.852774137177807,
+ "grad_norm": 0.30570563673973083,
+ "learning_rate": 0.0006,
+ "loss": 5.137539863586426,
+ "step": 421
+ },
+ {
+ "epoch": 5.866754041065968,
+ "grad_norm": 0.4029594957828522,
+ "learning_rate": 0.0006,
+ "loss": 5.112751007080078,
+ "step": 422
+ },
+ {
+ "epoch": 5.8807339449541285,
+ "grad_norm": 0.3878514766693115,
+ "learning_rate": 0.0006,
+ "loss": 5.094973564147949,
+ "step": 423
+ },
+ {
+ "epoch": 5.894713848842289,
+ "grad_norm": 0.31936126947402954,
+ "learning_rate": 0.0006,
+ "loss": 5.081070899963379,
+ "step": 424
+ },
+ {
+ "epoch": 5.90869375273045,
+ "grad_norm": 0.3309082090854645,
+ "learning_rate": 0.0006,
+ "loss": 5.06803560256958,
+ "step": 425
+ },
+ {
+ "epoch": 5.922673656618611,
+ "grad_norm": 0.27830439805984497,
+ "learning_rate": 0.0006,
+ "loss": 5.044766426086426,
+ "step": 426
+ },
+ {
+ "epoch": 5.936653560506771,
+ "grad_norm": 0.3301011919975281,
+ "learning_rate": 0.0006,
+ "loss": 5.093942165374756,
+ "step": 427
+ },
+ {
+ "epoch": 5.950633464394932,
+ "grad_norm": 0.40845948457717896,
+ "learning_rate": 0.0006,
+ "loss": 5.0889458656311035,
+ "step": 428
+ },
+ {
+ "epoch": 5.964613368283093,
+ "grad_norm": 0.4412153959274292,
+ "learning_rate": 0.0006,
+ "loss": 5.064834117889404,
+ "step": 429
+ },
+ {
+ "epoch": 5.978593272171254,
+ "grad_norm": 0.3592590093612671,
+ "learning_rate": 0.0006,
+ "loss": 5.066648006439209,
+ "step": 430
+ },
+ {
+ "epoch": 5.992573176059414,
+ "grad_norm": 0.3952840268611908,
+ "learning_rate": 0.0006,
+ "loss": 5.066549301147461,
+ "step": 431
+ },
+ {
+ "epoch": 6.0,
+ "grad_norm": 0.38878682255744934,
+ "learning_rate": 0.0006,
+ "loss": 5.0354323387146,
+ "step": 432
+ },
+ {
+ "epoch": 6.0,
+ "eval_loss": 5.473907947540283,
+ "eval_runtime": 44.5121,
+ "eval_samples_per_second": 54.861,
+ "eval_steps_per_second": 3.437,
+ "step": 432
+ },
+ {
+ "epoch": 6.013979903888161,
+ "grad_norm": 0.42730140686035156,
+ "learning_rate": 0.0006,
+ "loss": 5.048557281494141,
+ "step": 433
+ },
+ {
+ "epoch": 6.0279598077763215,
+ "grad_norm": 0.32713913917541504,
+ "learning_rate": 0.0006,
+ "loss": 5.041255950927734,
+ "step": 434
+ },
+ {
+ "epoch": 6.041939711664482,
+ "grad_norm": 0.32520365715026855,
+ "learning_rate": 0.0006,
+ "loss": 5.043124198913574,
+ "step": 435
+ },
+ {
+ "epoch": 6.055919615552643,
+ "grad_norm": 0.2941839098930359,
+ "learning_rate": 0.0006,
+ "loss": 5.0407304763793945,
+ "step": 436
+ },
+ {
+ "epoch": 6.069899519440804,
+ "grad_norm": 0.3088819682598114,
+ "learning_rate": 0.0006,
+ "loss": 5.020771026611328,
+ "step": 437
+ },
+ {
+ "epoch": 6.083879423328964,
+ "grad_norm": 0.34334254264831543,
+ "learning_rate": 0.0006,
+ "loss": 5.0260009765625,
+ "step": 438
+ },
+ {
+ "epoch": 6.097859327217125,
+ "grad_norm": 0.33016136288642883,
+ "learning_rate": 0.0006,
+ "loss": 4.994412899017334,
+ "step": 439
+ },
+ {
+ "epoch": 6.111839231105286,
+ "grad_norm": 0.2527366280555725,
+ "learning_rate": 0.0006,
+ "loss": 4.997830390930176,
+ "step": 440
+ },
+ {
+ "epoch": 6.1258191349934465,
+ "grad_norm": 0.24742509424686432,
+ "learning_rate": 0.0006,
+ "loss": 5.017087936401367,
+ "step": 441
+ },
+ {
+ "epoch": 6.139799038881607,
+ "grad_norm": 0.22578303515911102,
+ "learning_rate": 0.0006,
+ "loss": 5.000683784484863,
+ "step": 442
+ },
+ {
+ "epoch": 6.153778942769769,
+ "grad_norm": 0.21213896572589874,
+ "learning_rate": 0.0006,
+ "loss": 4.993280410766602,
+ "step": 443
+ },
+ {
+ "epoch": 6.16775884665793,
+ "grad_norm": 0.22559592127799988,
+ "learning_rate": 0.0006,
+ "loss": 5.005735874176025,
+ "step": 444
+ },
+ {
+ "epoch": 6.18173875054609,
+ "grad_norm": 0.18574322760105133,
+ "learning_rate": 0.0006,
+ "loss": 4.996601104736328,
+ "step": 445
+ },
+ {
+ "epoch": 6.195718654434251,
+ "grad_norm": 0.1793852299451828,
+ "learning_rate": 0.0006,
+ "loss": 4.977394104003906,
+ "step": 446
+ },
+ {
+ "epoch": 6.209698558322412,
+ "grad_norm": 0.1851297914981842,
+ "learning_rate": 0.0006,
+ "loss": 4.983541488647461,
+ "step": 447
+ },
+ {
+ "epoch": 6.2236784622105725,
+ "grad_norm": 0.2045268565416336,
+ "learning_rate": 0.0006,
+ "loss": 4.992830276489258,
+ "step": 448
+ },
+ {
+ "epoch": 6.237658366098733,
+ "grad_norm": 0.21707463264465332,
+ "learning_rate": 0.0006,
+ "loss": 4.998589515686035,
+ "step": 449
+ },
+ {
+ "epoch": 6.251638269986894,
+ "grad_norm": 0.2805860638618469,
+ "learning_rate": 0.0006,
+ "loss": 4.973134517669678,
+ "step": 450
+ },
+ {
+ "epoch": 6.265618173875055,
+ "grad_norm": 0.33102089166641235,
+ "learning_rate": 0.0006,
+ "loss": 4.957348823547363,
+ "step": 451
+ },
+ {
+ "epoch": 6.279598077763215,
+ "grad_norm": 0.3763096034526825,
+ "learning_rate": 0.0006,
+ "loss": 5.0133256912231445,
+ "step": 452
+ },
+ {
+ "epoch": 6.293577981651376,
+ "grad_norm": 0.4676196575164795,
+ "learning_rate": 0.0006,
+ "loss": 4.972289562225342,
+ "step": 453
+ },
+ {
+ "epoch": 6.307557885539537,
+ "grad_norm": 0.6158978343009949,
+ "learning_rate": 0.0006,
+ "loss": 4.989326477050781,
+ "step": 454
+ },
+ {
+ "epoch": 6.321537789427698,
+ "grad_norm": 0.537460446357727,
+ "learning_rate": 0.0006,
+ "loss": 5.0210676193237305,
+ "step": 455
+ },
+ {
+ "epoch": 6.335517693315858,
+ "grad_norm": 0.5342532396316528,
+ "learning_rate": 0.0006,
+ "loss": 4.988524436950684,
+ "step": 456
+ },
+ {
+ "epoch": 6.349497597204019,
+ "grad_norm": 0.5736384987831116,
+ "learning_rate": 0.0006,
+ "loss": 4.977508068084717,
+ "step": 457
+ },
+ {
+ "epoch": 6.36347750109218,
+ "grad_norm": 0.6656201481819153,
+ "learning_rate": 0.0006,
+ "loss": 5.047934055328369,
+ "step": 458
+ },
+ {
+ "epoch": 6.3774574049803405,
+ "grad_norm": 0.6388342380523682,
+ "learning_rate": 0.0006,
+ "loss": 5.017617225646973,
+ "step": 459
+ },
+ {
+ "epoch": 6.391437308868501,
+ "grad_norm": 0.6620904207229614,
+ "learning_rate": 0.0006,
+ "loss": 5.032195091247559,
+ "step": 460
+ },
+ {
+ "epoch": 6.405417212756662,
+ "grad_norm": 0.693274974822998,
+ "learning_rate": 0.0006,
+ "loss": 5.02433967590332,
+ "step": 461
+ },
+ {
+ "epoch": 6.419397116644823,
+ "grad_norm": 0.6888924241065979,
+ "learning_rate": 0.0006,
+ "loss": 5.010735511779785,
+ "step": 462
+ },
+ {
+ "epoch": 6.433377020532983,
+ "grad_norm": 0.7181721925735474,
+ "learning_rate": 0.0006,
+ "loss": 5.049690246582031,
+ "step": 463
+ },
+ {
+ "epoch": 6.447356924421145,
+ "grad_norm": 0.7225117087364197,
+ "learning_rate": 0.0006,
+ "loss": 5.031939506530762,
+ "step": 464
+ },
+ {
+ "epoch": 6.461336828309306,
+ "grad_norm": 0.5268304347991943,
+ "learning_rate": 0.0006,
+ "loss": 5.01638126373291,
+ "step": 465
+ },
+ {
+ "epoch": 6.4753167321974665,
+ "grad_norm": 0.38218435645103455,
+ "learning_rate": 0.0006,
+ "loss": 4.997034072875977,
+ "step": 466
+ },
+ {
+ "epoch": 6.489296636085627,
+ "grad_norm": 0.3576396703720093,
+ "learning_rate": 0.0006,
+ "loss": 5.006804943084717,
+ "step": 467
+ },
+ {
+ "epoch": 6.503276539973788,
+ "grad_norm": 0.3305981755256653,
+ "learning_rate": 0.0006,
+ "loss": 4.994671821594238,
+ "step": 468
+ },
+ {
+ "epoch": 6.517256443861949,
+ "grad_norm": 0.3254900574684143,
+ "learning_rate": 0.0006,
+ "loss": 4.9747490882873535,
+ "step": 469
+ },
+ {
+ "epoch": 6.531236347750109,
+ "grad_norm": 0.2655033469200134,
+ "learning_rate": 0.0006,
+ "loss": 5.002863883972168,
+ "step": 470
+ },
+ {
+ "epoch": 6.54521625163827,
+ "grad_norm": 0.2620532810688019,
+ "learning_rate": 0.0006,
+ "loss": 4.9813337326049805,
+ "step": 471
+ },
+ {
+ "epoch": 6.559196155526431,
+ "grad_norm": 0.22128869593143463,
+ "learning_rate": 0.0006,
+ "loss": 4.978368759155273,
+ "step": 472
+ },
+ {
+ "epoch": 6.573176059414592,
+ "grad_norm": 0.22638699412345886,
+ "learning_rate": 0.0006,
+ "loss": 4.944509029388428,
+ "step": 473
+ },
+ {
+ "epoch": 6.587155963302752,
+ "grad_norm": 0.20720207691192627,
+ "learning_rate": 0.0006,
+ "loss": 4.98404598236084,
+ "step": 474
+ },
+ {
+ "epoch": 6.601135867190913,
+ "grad_norm": 0.21577289700508118,
+ "learning_rate": 0.0006,
+ "loss": 4.958878040313721,
+ "step": 475
+ },
+ {
+ "epoch": 6.615115771079074,
+ "grad_norm": 0.22453972697257996,
+ "learning_rate": 0.0006,
+ "loss": 4.935467720031738,
+ "step": 476
+ },
+ {
+ "epoch": 6.6290956749672345,
+ "grad_norm": 0.20757712423801422,
+ "learning_rate": 0.0006,
+ "loss": 4.943334579467773,
+ "step": 477
+ },
+ {
+ "epoch": 6.643075578855395,
+ "grad_norm": 0.22808043658733368,
+ "learning_rate": 0.0006,
+ "loss": 4.936544418334961,
+ "step": 478
+ },
+ {
+ "epoch": 6.657055482743556,
+ "grad_norm": 0.2193756401538849,
+ "learning_rate": 0.0006,
+ "loss": 4.938162326812744,
+ "step": 479
+ },
+ {
+ "epoch": 6.671035386631717,
+ "grad_norm": 0.19677500426769257,
+ "learning_rate": 0.0006,
+ "loss": 4.9026713371276855,
+ "step": 480
+ },
+ {
+ "epoch": 6.685015290519877,
+ "grad_norm": 0.17271658778190613,
+ "learning_rate": 0.0006,
+ "loss": 4.912519454956055,
+ "step": 481
+ },
+ {
+ "epoch": 6.698995194408038,
+ "grad_norm": 0.17551499605178833,
+ "learning_rate": 0.0006,
+ "loss": 4.929941177368164,
+ "step": 482
+ },
+ {
+ "epoch": 6.712975098296199,
+ "grad_norm": 0.1582687348127365,
+ "learning_rate": 0.0006,
+ "loss": 4.908967971801758,
+ "step": 483
+ },
+ {
+ "epoch": 6.72695500218436,
+ "grad_norm": 0.1593410074710846,
+ "learning_rate": 0.0006,
+ "loss": 4.901554107666016,
+ "step": 484
+ },
+ {
+ "epoch": 6.740934906072521,
+ "grad_norm": 0.16746895015239716,
+ "learning_rate": 0.0006,
+ "loss": 4.917915344238281,
+ "step": 485
+ },
+ {
+ "epoch": 6.754914809960681,
+ "grad_norm": 0.17066062986850739,
+ "learning_rate": 0.0006,
+ "loss": 4.912853240966797,
+ "step": 486
+ },
+ {
+ "epoch": 6.768894713848843,
+ "grad_norm": 0.16727769374847412,
+ "learning_rate": 0.0006,
+ "loss": 4.895434856414795,
+ "step": 487
+ },
+ {
+ "epoch": 6.782874617737003,
+ "grad_norm": 0.1784558743238449,
+ "learning_rate": 0.0006,
+ "loss": 4.8805341720581055,
+ "step": 488
+ },
+ {
+ "epoch": 6.796854521625164,
+ "grad_norm": 0.176686093211174,
+ "learning_rate": 0.0006,
+ "loss": 4.855296611785889,
+ "step": 489
+ },
+ {
+ "epoch": 6.810834425513325,
+ "grad_norm": 0.21577849984169006,
+ "learning_rate": 0.0006,
+ "loss": 4.885506629943848,
+ "step": 490
+ },
+ {
+ "epoch": 6.824814329401486,
+ "grad_norm": 0.27615776658058167,
+ "learning_rate": 0.0006,
+ "loss": 4.913756847381592,
+ "step": 491
+ },
+ {
+ "epoch": 6.838794233289646,
+ "grad_norm": 0.3653675615787506,
+ "learning_rate": 0.0006,
+ "loss": 4.880918979644775,
+ "step": 492
+ },
+ {
+ "epoch": 6.852774137177807,
+ "grad_norm": 0.41473883390426636,
+ "learning_rate": 0.0006,
+ "loss": 4.894164562225342,
+ "step": 493
+ },
+ {
+ "epoch": 6.866754041065968,
+ "grad_norm": 0.45850715041160583,
+ "learning_rate": 0.0006,
+ "loss": 4.907922744750977,
+ "step": 494
+ },
+ {
+ "epoch": 6.8807339449541285,
+ "grad_norm": 0.4675290882587433,
+ "learning_rate": 0.0006,
+ "loss": 4.883112907409668,
+ "step": 495
+ },
+ {
+ "epoch": 6.894713848842289,
+ "grad_norm": 0.45795994997024536,
+ "learning_rate": 0.0006,
+ "loss": 4.897843360900879,
+ "step": 496
+ },
+ {
+ "epoch": 6.90869375273045,
+ "grad_norm": 0.46130508184432983,
+ "learning_rate": 0.0006,
+ "loss": 4.890612602233887,
+ "step": 497
+ },
+ {
+ "epoch": 6.922673656618611,
+ "grad_norm": 0.44783803820610046,
+ "learning_rate": 0.0006,
+ "loss": 4.880192756652832,
+ "step": 498
+ },
+ {
+ "epoch": 6.936653560506771,
+ "grad_norm": 0.35361284017562866,
+ "learning_rate": 0.0006,
+ "loss": 4.840778350830078,
+ "step": 499
+ },
+ {
+ "epoch": 6.950633464394932,
+ "grad_norm": 0.34027689695358276,
+ "learning_rate": 0.0006,
+ "loss": 4.871222496032715,
+ "step": 500
+ },
+ {
+ "epoch": 6.964613368283093,
+ "grad_norm": 0.30228909850120544,
+ "learning_rate": 0.0006,
+ "loss": 4.868077278137207,
+ "step": 501
+ },
+ {
+ "epoch": 6.978593272171254,
+ "grad_norm": 0.27706998586654663,
+ "learning_rate": 0.0006,
+ "loss": 4.895936012268066,
+ "step": 502
+ },
+ {
+ "epoch": 6.992573176059414,
+ "grad_norm": 0.3516870439052582,
+ "learning_rate": 0.0006,
+ "loss": 4.824636459350586,
+ "step": 503
+ },
+ {
+ "epoch": 7.0,
+ "grad_norm": 0.36831387877464294,
+ "learning_rate": 0.0006,
+ "loss": 4.874397277832031,
+ "step": 504
+ },
+ {
+ "epoch": 7.0,
+ "eval_loss": 5.176281452178955,
+ "eval_runtime": 44.2386,
+ "eval_samples_per_second": 55.201,
+ "eval_steps_per_second": 3.459,
+ "step": 504
+ },
+ {
+ "epoch": 7.013979903888161,
+ "grad_norm": 0.4265240430831909,
+ "learning_rate": 0.0006,
+ "loss": 4.814333438873291,
+ "step": 505
+ },
+ {
+ "epoch": 7.0279598077763215,
+ "grad_norm": 0.5126975774765015,
+ "learning_rate": 0.0006,
+ "loss": 4.852343559265137,
+ "step": 506
+ },
+ {
+ "epoch": 7.041939711664482,
+ "grad_norm": 0.43080806732177734,
+ "learning_rate": 0.0006,
+ "loss": 4.843439102172852,
+ "step": 507
+ },
+ {
+ "epoch": 7.055919615552643,
+ "grad_norm": 0.43170198798179626,
+ "learning_rate": 0.0006,
+ "loss": 4.845984935760498,
+ "step": 508
+ },
+ {
+ "epoch": 7.069899519440804,
+ "grad_norm": 0.5640552043914795,
+ "learning_rate": 0.0006,
+ "loss": 4.840991973876953,
+ "step": 509
+ },
+ {
+ "epoch": 7.083879423328964,
+ "grad_norm": 0.540381133556366,
+ "learning_rate": 0.0006,
+ "loss": 4.801316738128662,
+ "step": 510
+ },
+ {
+ "epoch": 7.097859327217125,
+ "grad_norm": 0.5412097573280334,
+ "learning_rate": 0.0006,
+ "loss": 4.886598587036133,
+ "step": 511
+ },
+ {
+ "epoch": 7.111839231105286,
+ "grad_norm": 0.630648136138916,
+ "learning_rate": 0.0006,
+ "loss": 4.849774360656738,
+ "step": 512
+ },
+ {
+ "epoch": 7.1258191349934465,
+ "grad_norm": 0.569952130317688,
+ "learning_rate": 0.0006,
+ "loss": 4.870607376098633,
+ "step": 513
+ },
+ {
+ "epoch": 7.139799038881607,
+ "grad_norm": 0.42051541805267334,
+ "learning_rate": 0.0006,
+ "loss": 4.83833122253418,
+ "step": 514
+ },
+ {
+ "epoch": 7.153778942769769,
+ "grad_norm": 0.3930990397930145,
+ "learning_rate": 0.0006,
+ "loss": 4.853984355926514,
+ "step": 515
+ },
+ {
+ "epoch": 7.16775884665793,
+ "grad_norm": 0.512886106967926,
+ "learning_rate": 0.0006,
+ "loss": 4.815458297729492,
+ "step": 516
+ },
+ {
+ "epoch": 7.18173875054609,
+ "grad_norm": 0.42580172419548035,
+ "learning_rate": 0.0006,
+ "loss": 4.825312614440918,
+ "step": 517
+ },
+ {
+ "epoch": 7.195718654434251,
+ "grad_norm": 0.31628182530403137,
+ "learning_rate": 0.0006,
+ "loss": 4.806377410888672,
+ "step": 518
+ },
+ {
+ "epoch": 7.209698558322412,
+ "grad_norm": 0.3109956681728363,
+ "learning_rate": 0.0006,
+ "loss": 4.819339752197266,
+ "step": 519
+ },
+ {
+ "epoch": 7.2236784622105725,
+ "grad_norm": 0.2740071415901184,
+ "learning_rate": 0.0006,
+ "loss": 4.81319522857666,
+ "step": 520
+ },
+ {
+ "epoch": 7.237658366098733,
+ "grad_norm": 0.26441165804862976,
+ "learning_rate": 0.0006,
+ "loss": 4.8107380867004395,
+ "step": 521
+ },
+ {
+ "epoch": 7.251638269986894,
+ "grad_norm": 0.2496110051870346,
+ "learning_rate": 0.0006,
+ "loss": 4.785193920135498,
+ "step": 522
+ },
+ {
+ "epoch": 7.265618173875055,
+ "grad_norm": 0.2565560042858124,
+ "learning_rate": 0.0006,
+ "loss": 4.802750587463379,
+ "step": 523
+ },
+ {
+ "epoch": 7.279598077763215,
+ "grad_norm": 0.2126980572938919,
+ "learning_rate": 0.0006,
+ "loss": 4.763580322265625,
+ "step": 524
+ },
+ {
+ "epoch": 7.293577981651376,
+ "grad_norm": 0.2169921100139618,
+ "learning_rate": 0.0006,
+ "loss": 4.756124973297119,
+ "step": 525
+ },
+ {
+ "epoch": 7.307557885539537,
+ "grad_norm": 0.2372167706489563,
+ "learning_rate": 0.0006,
+ "loss": 4.786888599395752,
+ "step": 526
+ },
+ {
+ "epoch": 7.321537789427698,
+ "grad_norm": 0.2124386429786682,
+ "learning_rate": 0.0006,
+ "loss": 4.777996063232422,
+ "step": 527
+ },
+ {
+ "epoch": 7.335517693315858,
+ "grad_norm": 0.18585442006587982,
+ "learning_rate": 0.0006,
+ "loss": 4.770537853240967,
+ "step": 528
+ },
+ {
+ "epoch": 7.349497597204019,
+ "grad_norm": 0.20515340566635132,
+ "learning_rate": 0.0006,
+ "loss": 4.769230842590332,
+ "step": 529
+ },
+ {
+ "epoch": 7.36347750109218,
+ "grad_norm": 0.19906704127788544,
+ "learning_rate": 0.0006,
+ "loss": 4.752581596374512,
+ "step": 530
+ },
+ {
+ "epoch": 7.3774574049803405,
+ "grad_norm": 0.2030428946018219,
+ "learning_rate": 0.0006,
+ "loss": 4.7353715896606445,
+ "step": 531
+ },
+ {
+ "epoch": 7.391437308868501,
+ "grad_norm": 0.17820630967617035,
+ "learning_rate": 0.0006,
+ "loss": 4.742705345153809,
+ "step": 532
+ },
+ {
+ "epoch": 7.405417212756662,
+ "grad_norm": 0.17642682790756226,
+ "learning_rate": 0.0006,
+ "loss": 4.752669334411621,
+ "step": 533
+ },
+ {
+ "epoch": 7.419397116644823,
+ "grad_norm": 0.18088409304618835,
+ "learning_rate": 0.0006,
+ "loss": 4.734611511230469,
+ "step": 534
+ },
+ {
+ "epoch": 7.433377020532983,
+ "grad_norm": 0.20897020399570465,
+ "learning_rate": 0.0006,
+ "loss": 4.756442070007324,
+ "step": 535
+ },
+ {
+ "epoch": 7.447356924421145,
+ "grad_norm": 0.23166777193546295,
+ "learning_rate": 0.0006,
+ "loss": 4.712922096252441,
+ "step": 536
+ },
+ {
+ "epoch": 7.461336828309306,
+ "grad_norm": 0.2205347716808319,
+ "learning_rate": 0.0006,
+ "loss": 4.75001335144043,
+ "step": 537
+ },
+ {
+ "epoch": 7.4753167321974665,
+ "grad_norm": 0.23868022859096527,
+ "learning_rate": 0.0006,
+ "loss": 4.726134300231934,
+ "step": 538
+ },
+ {
+ "epoch": 7.489296636085627,
+ "grad_norm": 0.2861441373825073,
+ "learning_rate": 0.0006,
+ "loss": 4.754112243652344,
+ "step": 539
+ },
+ {
+ "epoch": 7.503276539973788,
+ "grad_norm": 0.28980305790901184,
+ "learning_rate": 0.0006,
+ "loss": 4.716021537780762,
+ "step": 540
+ },
+ {
+ "epoch": 7.517256443861949,
+ "grad_norm": 0.2784835696220398,
+ "learning_rate": 0.0006,
+ "loss": 4.713929176330566,
+ "step": 541
+ },
+ {
+ "epoch": 7.531236347750109,
+ "grad_norm": 0.2962653934955597,
+ "learning_rate": 0.0006,
+ "loss": 4.711845397949219,
+ "step": 542
+ },
+ {
+ "epoch": 7.54521625163827,
+ "grad_norm": 0.3333161175251007,
+ "learning_rate": 0.0006,
+ "loss": 4.709834575653076,
+ "step": 543
+ },
+ {
+ "epoch": 7.559196155526431,
+ "grad_norm": 0.35304850339889526,
+ "learning_rate": 0.0006,
+ "loss": 4.732914924621582,
+ "step": 544
+ },
+ {
+ "epoch": 7.573176059414592,
+ "grad_norm": 0.4165869355201721,
+ "learning_rate": 0.0006,
+ "loss": 4.716190338134766,
+ "step": 545
+ },
+ {
+ "epoch": 7.587155963302752,
+ "grad_norm": 0.4878059923648834,
+ "learning_rate": 0.0006,
+ "loss": 4.723773002624512,
+ "step": 546
+ },
+ {
+ "epoch": 7.601135867190913,
+ "grad_norm": 0.36643707752227783,
+ "learning_rate": 0.0006,
+ "loss": 4.721458911895752,
+ "step": 547
+ },
+ {
+ "epoch": 7.615115771079074,
+ "grad_norm": 0.4046908915042877,
+ "learning_rate": 0.0006,
+ "loss": 4.715397834777832,
+ "step": 548
+ },
+ {
+ "epoch": 7.6290956749672345,
+ "grad_norm": 0.44426342844963074,
+ "learning_rate": 0.0006,
+ "loss": 4.737357139587402,
+ "step": 549
+ },
+ {
+ "epoch": 7.643075578855395,
+ "grad_norm": 0.4181079864501953,
+ "learning_rate": 0.0006,
+ "loss": 4.731383800506592,
+ "step": 550
+ },
+ {
+ "epoch": 7.657055482743556,
+ "grad_norm": 0.3486088216304779,
+ "learning_rate": 0.0006,
+ "loss": 4.728029727935791,
+ "step": 551
+ },
+ {
+ "epoch": 7.671035386631717,
+ "grad_norm": 0.37150970101356506,
+ "learning_rate": 0.0006,
+ "loss": 4.7083210945129395,
+ "step": 552
+ },
+ {
+ "epoch": 7.685015290519877,
+ "grad_norm": 0.43324410915374756,
+ "learning_rate": 0.0006,
+ "loss": 4.728720664978027,
+ "step": 553
+ },
+ {
+ "epoch": 7.698995194408038,
+ "grad_norm": 0.5026620626449585,
+ "learning_rate": 0.0006,
+ "loss": 4.698156356811523,
+ "step": 554
+ },
+ {
+ "epoch": 7.712975098296199,
+ "grad_norm": 0.4873499274253845,
+ "learning_rate": 0.0006,
+ "loss": 4.7169952392578125,
+ "step": 555
+ },
+ {
+ "epoch": 7.72695500218436,
+ "grad_norm": 0.4285493791103363,
+ "learning_rate": 0.0006,
+ "loss": 4.6877241134643555,
+ "step": 556
+ },
+ {
+ "epoch": 7.740934906072521,
+ "grad_norm": 0.5179854035377502,
+ "learning_rate": 0.0006,
+ "loss": 4.704267501831055,
+ "step": 557
+ },
+ {
+ "epoch": 7.754914809960681,
+ "grad_norm": 0.4642147421836853,
+ "learning_rate": 0.0006,
+ "loss": 4.695004463195801,
+ "step": 558
+ },
+ {
+ "epoch": 7.768894713848843,
+ "grad_norm": 0.47149503231048584,
+ "learning_rate": 0.0006,
+ "loss": 4.694338798522949,
+ "step": 559
+ },
+ {
+ "epoch": 7.782874617737003,
+ "grad_norm": 0.5422149300575256,
+ "learning_rate": 0.0006,
+ "loss": 4.749478340148926,
+ "step": 560
+ },
+ {
+ "epoch": 7.796854521625164,
+ "grad_norm": 0.4360728859901428,
+ "learning_rate": 0.0006,
+ "loss": 4.685191631317139,
+ "step": 561
+ },
+ {
+ "epoch": 7.810834425513325,
+ "grad_norm": 0.4243801534175873,
+ "learning_rate": 0.0006,
+ "loss": 4.69228458404541,
+ "step": 562
+ },
+ {
+ "epoch": 7.824814329401486,
+ "grad_norm": 0.40380290150642395,
+ "learning_rate": 0.0006,
+ "loss": 4.690923690795898,
+ "step": 563
+ },
+ {
+ "epoch": 7.838794233289646,
+ "grad_norm": 0.4352976381778717,
+ "learning_rate": 0.0006,
+ "loss": 4.720489978790283,
+ "step": 564
+ },
+ {
+ "epoch": 7.852774137177807,
+ "grad_norm": 0.44634920358657837,
+ "learning_rate": 0.0006,
+ "loss": 4.683789253234863,
+ "step": 565
+ },
+ {
+ "epoch": 7.866754041065968,
+ "grad_norm": 0.3818186819553375,
+ "learning_rate": 0.0006,
+ "loss": 4.696887016296387,
+ "step": 566
+ },
+ {
+ "epoch": 7.8807339449541285,
+ "grad_norm": 0.35270464420318604,
+ "learning_rate": 0.0006,
+ "loss": 4.715676307678223,
+ "step": 567
+ },
+ {
+ "epoch": 7.894713848842289,
+ "grad_norm": 0.249756321310997,
+ "learning_rate": 0.0006,
+ "loss": 4.672721862792969,
+ "step": 568
+ },
+ {
+ "epoch": 7.90869375273045,
+ "grad_norm": 0.25097888708114624,
+ "learning_rate": 0.0006,
+ "loss": 4.663518905639648,
+ "step": 569
+ },
+ {
+ "epoch": 7.922673656618611,
+ "grad_norm": 0.26563209295272827,
+ "learning_rate": 0.0006,
+ "loss": 4.675405025482178,
+ "step": 570
+ },
+ {
+ "epoch": 7.936653560506771,
+ "grad_norm": 0.26451292634010315,
+ "learning_rate": 0.0006,
+ "loss": 4.651235103607178,
+ "step": 571
+ },
+ {
+ "epoch": 7.950633464394932,
+ "grad_norm": 0.24185842275619507,
+ "learning_rate": 0.0006,
+ "loss": 4.671639919281006,
+ "step": 572
+ },
+ {
+ "epoch": 7.964613368283093,
+ "grad_norm": 0.21506108343601227,
+ "learning_rate": 0.0006,
+ "loss": 4.665352821350098,
+ "step": 573
+ },
+ {
+ "epoch": 7.978593272171254,
+ "grad_norm": 0.24365705251693726,
+ "learning_rate": 0.0006,
+ "loss": 4.663162708282471,
+ "step": 574
+ },
+ {
+ "epoch": 7.992573176059414,
+ "grad_norm": 0.24251042306423187,
+ "learning_rate": 0.0006,
+ "loss": 4.666633605957031,
+ "step": 575
+ },
+ {
+ "epoch": 8.0,
+ "grad_norm": 0.24187657237052917,
+ "learning_rate": 0.0006,
+ "loss": 4.63957405090332,
+ "step": 576
+ },
+ {
+ "epoch": 8.0,
+ "eval_loss": 4.923156261444092,
+ "eval_runtime": 44.1587,
+ "eval_samples_per_second": 55.301,
+ "eval_steps_per_second": 3.465,
+ "step": 576
+ },
+ {
+ "epoch": 8.013979903888162,
+ "grad_norm": 0.21323645114898682,
+ "learning_rate": 0.0006,
+ "loss": 4.636347770690918,
+ "step": 577
+ },
+ {
+ "epoch": 8.027959807776321,
+ "grad_norm": 0.2325759083032608,
+ "learning_rate": 0.0006,
+ "loss": 4.60684871673584,
+ "step": 578
+ },
+ {
+ "epoch": 8.041939711664483,
+ "grad_norm": 0.26741257309913635,
+ "learning_rate": 0.0006,
+ "loss": 4.647780418395996,
+ "step": 579
+ },
+ {
+ "epoch": 8.055919615552643,
+ "grad_norm": 0.285720556974411,
+ "learning_rate": 0.0006,
+ "loss": 4.629637718200684,
+ "step": 580
+ },
+ {
+ "epoch": 8.069899519440805,
+ "grad_norm": 0.2453618347644806,
+ "learning_rate": 0.0006,
+ "loss": 4.62420654296875,
+ "step": 581
+ },
+ {
+ "epoch": 8.083879423328964,
+ "grad_norm": 0.19662636518478394,
+ "learning_rate": 0.0006,
+ "loss": 4.593767166137695,
+ "step": 582
+ },
+ {
+ "epoch": 8.097859327217126,
+ "grad_norm": 0.22731931507587433,
+ "learning_rate": 0.0006,
+ "loss": 4.627089023590088,
+ "step": 583
+ },
+ {
+ "epoch": 8.111839231105286,
+ "grad_norm": 0.24452590942382812,
+ "learning_rate": 0.0006,
+ "loss": 4.613677024841309,
+ "step": 584
+ },
+ {
+ "epoch": 8.125819134993447,
+ "grad_norm": 0.2952791154384613,
+ "learning_rate": 0.0006,
+ "loss": 4.604985237121582,
+ "step": 585
+ },
+ {
+ "epoch": 8.139799038881607,
+ "grad_norm": 0.3184696137905121,
+ "learning_rate": 0.0006,
+ "loss": 4.589205741882324,
+ "step": 586
+ },
+ {
+ "epoch": 8.153778942769769,
+ "grad_norm": 0.2948093116283417,
+ "learning_rate": 0.0006,
+ "loss": 4.605442047119141,
+ "step": 587
+ },
+ {
+ "epoch": 8.167758846657929,
+ "grad_norm": 0.2450508326292038,
+ "learning_rate": 0.0006,
+ "loss": 4.615349292755127,
+ "step": 588
+ },
+ {
+ "epoch": 8.18173875054609,
+ "grad_norm": 0.25664836168289185,
+ "learning_rate": 0.0006,
+ "loss": 4.592251777648926,
+ "step": 589
+ },
+ {
+ "epoch": 8.19571865443425,
+ "grad_norm": 0.24479512870311737,
+ "learning_rate": 0.0006,
+ "loss": 4.6145920753479,
+ "step": 590
+ },
+ {
+ "epoch": 8.209698558322412,
+ "grad_norm": 0.24395205080509186,
+ "learning_rate": 0.0006,
+ "loss": 4.600954055786133,
+ "step": 591
+ },
+ {
+ "epoch": 8.223678462210572,
+ "grad_norm": 0.21804189682006836,
+ "learning_rate": 0.0006,
+ "loss": 4.607785224914551,
+ "step": 592
+ },
+ {
+ "epoch": 8.237658366098733,
+ "grad_norm": 0.20951785147190094,
+ "learning_rate": 0.0006,
+ "loss": 4.58140754699707,
+ "step": 593
+ },
+ {
+ "epoch": 8.251638269986893,
+ "grad_norm": 0.20415149629116058,
+ "learning_rate": 0.0006,
+ "loss": 4.593405723571777,
+ "step": 594
+ },
+ {
+ "epoch": 8.265618173875055,
+ "grad_norm": 0.19210249185562134,
+ "learning_rate": 0.0006,
+ "loss": 4.603294372558594,
+ "step": 595
+ },
+ {
+ "epoch": 8.279598077763215,
+ "grad_norm": 0.20719751715660095,
+ "learning_rate": 0.0006,
+ "loss": 4.55255651473999,
+ "step": 596
+ },
+ {
+ "epoch": 8.293577981651376,
+ "grad_norm": 0.20101022720336914,
+ "learning_rate": 0.0006,
+ "loss": 4.5928192138671875,
+ "step": 597
+ },
+ {
+ "epoch": 8.307557885539538,
+ "grad_norm": 0.19254222512245178,
+ "learning_rate": 0.0006,
+ "loss": 4.590397834777832,
+ "step": 598
+ },
+ {
+ "epoch": 8.321537789427698,
+ "grad_norm": 0.23234105110168457,
+ "learning_rate": 0.0006,
+ "loss": 4.5987677574157715,
+ "step": 599
+ },
+ {
+ "epoch": 8.33551769331586,
+ "grad_norm": 0.2537451982498169,
+ "learning_rate": 0.0006,
+ "loss": 4.543115615844727,
+ "step": 600
+ },
+ {
+ "epoch": 8.349497597204019,
+ "grad_norm": 0.29171040654182434,
+ "learning_rate": 0.0006,
+ "loss": 4.597387313842773,
+ "step": 601
+ },
+ {
+ "epoch": 8.36347750109218,
+ "grad_norm": 0.3035930097103119,
+ "learning_rate": 0.0006,
+ "loss": 4.566247463226318,
+ "step": 602
+ },
+ {
+ "epoch": 8.37745740498034,
+ "grad_norm": 0.2826756238937378,
+ "learning_rate": 0.0006,
+ "loss": 4.57047176361084,
+ "step": 603
+ },
+ {
+ "epoch": 8.391437308868502,
+ "grad_norm": 0.2959657609462738,
+ "learning_rate": 0.0006,
+ "loss": 4.582820892333984,
+ "step": 604
+ },
+ {
+ "epoch": 8.405417212756662,
+ "grad_norm": 0.3180356025695801,
+ "learning_rate": 0.0006,
+ "loss": 4.5573272705078125,
+ "step": 605
+ },
+ {
+ "epoch": 8.419397116644824,
+ "grad_norm": 0.3617221713066101,
+ "learning_rate": 0.0006,
+ "loss": 4.593079090118408,
+ "step": 606
+ },
+ {
+ "epoch": 8.433377020532983,
+ "grad_norm": 0.35198062658309937,
+ "learning_rate": 0.0006,
+ "loss": 4.615298271179199,
+ "step": 607
+ },
+ {
+ "epoch": 8.447356924421145,
+ "grad_norm": 0.3944903314113617,
+ "learning_rate": 0.0006,
+ "loss": 4.561809539794922,
+ "step": 608
+ },
+ {
+ "epoch": 8.461336828309305,
+ "grad_norm": 0.4525868594646454,
+ "learning_rate": 0.0006,
+ "loss": 4.613105773925781,
+ "step": 609
+ },
+ {
+ "epoch": 8.475316732197467,
+ "grad_norm": 0.4915139079093933,
+ "learning_rate": 0.0006,
+ "loss": 4.566202163696289,
+ "step": 610
+ },
+ {
+ "epoch": 8.489296636085626,
+ "grad_norm": 0.49231988191604614,
+ "learning_rate": 0.0006,
+ "loss": 4.556222915649414,
+ "step": 611
+ },
+ {
+ "epoch": 8.503276539973788,
+ "grad_norm": 0.43036946654319763,
+ "learning_rate": 0.0006,
+ "loss": 4.55517578125,
+ "step": 612
+ },
+ {
+ "epoch": 8.517256443861948,
+ "grad_norm": 0.42405328154563904,
+ "learning_rate": 0.0006,
+ "loss": 4.574039936065674,
+ "step": 613
+ },
+ {
+ "epoch": 8.53123634775011,
+ "grad_norm": 0.3955961763858795,
+ "learning_rate": 0.0006,
+ "loss": 4.6082611083984375,
+ "step": 614
+ },
+ {
+ "epoch": 8.54521625163827,
+ "grad_norm": 0.4377101957798004,
+ "learning_rate": 0.0006,
+ "loss": 4.555740833282471,
+ "step": 615
+ },
+ {
+ "epoch": 8.55919615552643,
+ "grad_norm": 0.4601984918117523,
+ "learning_rate": 0.0006,
+ "loss": 4.553995132446289,
+ "step": 616
+ },
+ {
+ "epoch": 8.57317605941459,
+ "grad_norm": 0.42025700211524963,
+ "learning_rate": 0.0006,
+ "loss": 4.567340850830078,
+ "step": 617
+ },
+ {
+ "epoch": 8.587155963302752,
+ "grad_norm": 0.35569432377815247,
+ "learning_rate": 0.0006,
+ "loss": 4.570140361785889,
+ "step": 618
+ },
+ {
+ "epoch": 8.601135867190912,
+ "grad_norm": 0.37940406799316406,
+ "learning_rate": 0.0006,
+ "loss": 4.581291198730469,
+ "step": 619
+ },
+ {
+ "epoch": 8.615115771079074,
+ "grad_norm": 0.3658490777015686,
+ "learning_rate": 0.0006,
+ "loss": 4.55476188659668,
+ "step": 620
+ },
+ {
+ "epoch": 8.629095674967235,
+ "grad_norm": 0.2908247113227844,
+ "learning_rate": 0.0006,
+ "loss": 4.564087867736816,
+ "step": 621
+ },
+ {
+ "epoch": 8.643075578855395,
+ "grad_norm": 0.29961925745010376,
+ "learning_rate": 0.0006,
+ "loss": 4.556543350219727,
+ "step": 622
+ },
+ {
+ "epoch": 8.657055482743557,
+ "grad_norm": 0.3144846558570862,
+ "learning_rate": 0.0006,
+ "loss": 4.553670883178711,
+ "step": 623
+ },
+ {
+ "epoch": 8.671035386631717,
+ "grad_norm": 0.2845900356769562,
+ "learning_rate": 0.0006,
+ "loss": 4.567296981811523,
+ "step": 624
+ },
+ {
+ "epoch": 8.685015290519878,
+ "grad_norm": 0.253591388463974,
+ "learning_rate": 0.0006,
+ "loss": 4.554507255554199,
+ "step": 625
+ },
+ {
+ "epoch": 8.698995194408038,
+ "grad_norm": 0.2563088536262512,
+ "learning_rate": 0.0006,
+ "loss": 4.542218208312988,
+ "step": 626
+ },
+ {
+ "epoch": 8.7129750982962,
+ "grad_norm": 0.26058217883110046,
+ "learning_rate": 0.0006,
+ "loss": 4.535512447357178,
+ "step": 627
+ },
+ {
+ "epoch": 8.72695500218436,
+ "grad_norm": 0.20749829709529877,
+ "learning_rate": 0.0006,
+ "loss": 4.516959190368652,
+ "step": 628
+ },
+ {
+ "epoch": 8.740934906072521,
+ "grad_norm": 0.2034810334444046,
+ "learning_rate": 0.0006,
+ "loss": 4.55794095993042,
+ "step": 629
+ },
+ {
+ "epoch": 8.754914809960681,
+ "grad_norm": 0.18418121337890625,
+ "learning_rate": 0.0006,
+ "loss": 4.5421247482299805,
+ "step": 630
+ },
+ {
+ "epoch": 8.768894713848843,
+ "grad_norm": 0.20551933348178864,
+ "learning_rate": 0.0006,
+ "loss": 4.50805139541626,
+ "step": 631
+ },
+ {
+ "epoch": 8.782874617737003,
+ "grad_norm": 0.21615999937057495,
+ "learning_rate": 0.0006,
+ "loss": 4.520708084106445,
+ "step": 632
+ },
+ {
+ "epoch": 8.796854521625164,
+ "grad_norm": 0.24864810705184937,
+ "learning_rate": 0.0006,
+ "loss": 4.509330749511719,
+ "step": 633
+ },
+ {
+ "epoch": 8.810834425513324,
+ "grad_norm": 0.2573665380477905,
+ "learning_rate": 0.0006,
+ "loss": 4.531505584716797,
+ "step": 634
+ },
+ {
+ "epoch": 8.824814329401486,
+ "grad_norm": 0.22452878952026367,
+ "learning_rate": 0.0006,
+ "loss": 4.529216289520264,
+ "step": 635
+ },
+ {
+ "epoch": 8.838794233289645,
+ "grad_norm": 0.19727355241775513,
+ "learning_rate": 0.0006,
+ "loss": 4.519906520843506,
+ "step": 636
+ },
+ {
+ "epoch": 8.852774137177807,
+ "grad_norm": 0.19937913119792938,
+ "learning_rate": 0.0006,
+ "loss": 4.536892414093018,
+ "step": 637
+ },
+ {
+ "epoch": 8.866754041065967,
+ "grad_norm": 0.2070389986038208,
+ "learning_rate": 0.0006,
+ "loss": 4.51191520690918,
+ "step": 638
+ },
+ {
+ "epoch": 8.880733944954128,
+ "grad_norm": 0.2293873429298401,
+ "learning_rate": 0.0006,
+ "loss": 4.505377769470215,
+ "step": 639
+ },
+ {
+ "epoch": 8.89471384884229,
+ "grad_norm": 0.21285250782966614,
+ "learning_rate": 0.0006,
+ "loss": 4.5138959884643555,
+ "step": 640
+ },
+ {
+ "epoch": 8.90869375273045,
+ "grad_norm": 0.19487562775611877,
+ "learning_rate": 0.0006,
+ "loss": 4.506108283996582,
+ "step": 641
+ },
+ {
+ "epoch": 8.922673656618612,
+ "grad_norm": 0.21986965835094452,
+ "learning_rate": 0.0006,
+ "loss": 4.506397247314453,
+ "step": 642
+ },
+ {
+ "epoch": 8.936653560506771,
+ "grad_norm": 0.20763885974884033,
+ "learning_rate": 0.0006,
+ "loss": 4.508007049560547,
+ "step": 643
+ },
+ {
+ "epoch": 8.950633464394933,
+ "grad_norm": 0.22858479619026184,
+ "learning_rate": 0.0006,
+ "loss": 4.520846366882324,
+ "step": 644
+ },
+ {
+ "epoch": 8.964613368283093,
+ "grad_norm": 0.23923712968826294,
+ "learning_rate": 0.0006,
+ "loss": 4.535306930541992,
+ "step": 645
+ },
+ {
+ "epoch": 8.978593272171254,
+ "grad_norm": 0.23717579245567322,
+ "learning_rate": 0.0006,
+ "loss": 4.485929489135742,
+ "step": 646
+ },
+ {
+ "epoch": 8.992573176059414,
+ "grad_norm": 0.24033977091312408,
+ "learning_rate": 0.0006,
+ "loss": 4.508999824523926,
+ "step": 647
+ },
+ {
+ "epoch": 9.0,
+ "grad_norm": 0.22432062029838562,
+ "learning_rate": 0.0006,
+ "loss": 4.473136901855469,
+ "step": 648
+ },
+ {
+ "epoch": 9.0,
+ "eval_loss": 4.735903263092041,
+ "eval_runtime": 44.2163,
+ "eval_samples_per_second": 55.228,
+ "eval_steps_per_second": 3.46,
+ "step": 648
+ },
+ {
+ "epoch": 9.013979903888162,
+ "grad_norm": 0.22491489350795746,
+ "learning_rate": 0.0006,
+ "loss": 4.468614101409912,
+ "step": 649
+ },
+ {
+ "epoch": 9.027959807776321,
+ "grad_norm": 0.255759060382843,
+ "learning_rate": 0.0006,
+ "loss": 4.516196250915527,
+ "step": 650
+ },
+ {
+ "epoch": 9.041939711664483,
+ "grad_norm": 0.2591100335121155,
+ "learning_rate": 0.0006,
+ "loss": 4.478276252746582,
+ "step": 651
+ },
+ {
+ "epoch": 9.055919615552643,
+ "grad_norm": 0.30472296476364136,
+ "learning_rate": 0.0006,
+ "loss": 4.479726791381836,
+ "step": 652
+ },
+ {
+ "epoch": 9.069899519440805,
+ "grad_norm": 0.2840559780597687,
+ "learning_rate": 0.0006,
+ "loss": 4.4437384605407715,
+ "step": 653
+ },
+ {
+ "epoch": 9.083879423328964,
+ "grad_norm": 0.2695577144622803,
+ "learning_rate": 0.0006,
+ "loss": 4.476065635681152,
+ "step": 654
+ },
+ {
+ "epoch": 9.097859327217126,
+ "grad_norm": 0.27912381291389465,
+ "learning_rate": 0.0006,
+ "loss": 4.484747409820557,
+ "step": 655
+ },
+ {
+ "epoch": 9.111839231105286,
+ "grad_norm": 0.3091907501220703,
+ "learning_rate": 0.0006,
+ "loss": 4.449443817138672,
+ "step": 656
+ },
+ {
+ "epoch": 9.125819134993447,
+ "grad_norm": 0.30756646394729614,
+ "learning_rate": 0.0006,
+ "loss": 4.496490001678467,
+ "step": 657
+ },
+ {
+ "epoch": 9.139799038881607,
+ "grad_norm": 0.305698037147522,
+ "learning_rate": 0.0006,
+ "loss": 4.466765880584717,
+ "step": 658
+ },
+ {
+ "epoch": 9.153778942769769,
+ "grad_norm": 0.3031201660633087,
+ "learning_rate": 0.0006,
+ "loss": 4.462430953979492,
+ "step": 659
+ },
+ {
+ "epoch": 9.167758846657929,
+ "grad_norm": 0.32725608348846436,
+ "learning_rate": 0.0006,
+ "loss": 4.479879379272461,
+ "step": 660
+ },
+ {
+ "epoch": 9.18173875054609,
+ "grad_norm": 0.31773585081100464,
+ "learning_rate": 0.0006,
+ "loss": 4.473912239074707,
+ "step": 661
+ },
+ {
+ "epoch": 9.19571865443425,
+ "grad_norm": 0.30025365948677063,
+ "learning_rate": 0.0006,
+ "loss": 4.476703643798828,
+ "step": 662
+ },
+ {
+ "epoch": 9.209698558322412,
+ "grad_norm": 0.3177371025085449,
+ "learning_rate": 0.0006,
+ "loss": 4.439765930175781,
+ "step": 663
+ },
+ {
+ "epoch": 9.223678462210572,
+ "grad_norm": 0.3060745894908905,
+ "learning_rate": 0.0006,
+ "loss": 4.487849235534668,
+ "step": 664
+ },
+ {
+ "epoch": 9.237658366098733,
+ "grad_norm": 0.33287373185157776,
+ "learning_rate": 0.0006,
+ "loss": 4.443496227264404,
+ "step": 665
+ },
+ {
+ "epoch": 9.251638269986893,
+ "grad_norm": 0.3758000433444977,
+ "learning_rate": 0.0006,
+ "loss": 4.478017330169678,
+ "step": 666
+ },
+ {
+ "epoch": 9.265618173875055,
+ "grad_norm": 0.32124510407447815,
+ "learning_rate": 0.0006,
+ "loss": 4.4092206954956055,
+ "step": 667
+ },
+ {
+ "epoch": 9.279598077763215,
+ "grad_norm": 0.2786794602870941,
+ "learning_rate": 0.0006,
+ "loss": 4.432734489440918,
+ "step": 668
+ },
+ {
+ "epoch": 9.293577981651376,
+ "grad_norm": 0.35042962431907654,
+ "learning_rate": 0.0006,
+ "loss": 4.462737083435059,
+ "step": 669
+ },
+ {
+ "epoch": 9.307557885539538,
+ "grad_norm": 0.4080469310283661,
+ "learning_rate": 0.0006,
+ "loss": 4.429462432861328,
+ "step": 670
+ },
+ {
+ "epoch": 9.321537789427698,
+ "grad_norm": 0.465158075094223,
+ "learning_rate": 0.0006,
+ "loss": 4.465776443481445,
+ "step": 671
+ },
+ {
+ "epoch": 9.33551769331586,
+ "grad_norm": 0.44833582639694214,
+ "learning_rate": 0.0006,
+ "loss": 4.454195976257324,
+ "step": 672
+ },
+ {
+ "epoch": 9.349497597204019,
+ "grad_norm": 0.451052188873291,
+ "learning_rate": 0.0006,
+ "loss": 4.456139087677002,
+ "step": 673
+ },
+ {
+ "epoch": 9.36347750109218,
+ "grad_norm": 0.3759656250476837,
+ "learning_rate": 0.0006,
+ "loss": 4.461119651794434,
+ "step": 674
+ },
+ {
+ "epoch": 9.37745740498034,
+ "grad_norm": 0.514560341835022,
+ "learning_rate": 0.0006,
+ "loss": 4.49595832824707,
+ "step": 675
+ },
+ {
+ "epoch": 9.391437308868502,
+ "grad_norm": 0.5650647282600403,
+ "learning_rate": 0.0006,
+ "loss": 4.461362838745117,
+ "step": 676
+ },
+ {
+ "epoch": 9.405417212756662,
+ "grad_norm": 0.4218835234642029,
+ "learning_rate": 0.0006,
+ "loss": 4.469146728515625,
+ "step": 677
+ },
+ {
+ "epoch": 9.419397116644824,
+ "grad_norm": 0.4169512689113617,
+ "learning_rate": 0.0006,
+ "loss": 4.470132827758789,
+ "step": 678
+ },
+ {
+ "epoch": 9.433377020532983,
+ "grad_norm": 0.3772219717502594,
+ "learning_rate": 0.0006,
+ "loss": 4.4742608070373535,
+ "step": 679
+ },
+ {
+ "epoch": 9.447356924421145,
+ "grad_norm": 0.35755908489227295,
+ "learning_rate": 0.0006,
+ "loss": 4.461928367614746,
+ "step": 680
+ },
+ {
+ "epoch": 9.461336828309305,
+ "grad_norm": 0.3141227662563324,
+ "learning_rate": 0.0006,
+ "loss": 4.491983413696289,
+ "step": 681
+ },
+ {
+ "epoch": 9.475316732197467,
+ "grad_norm": 0.282461017370224,
+ "learning_rate": 0.0006,
+ "loss": 4.460200309753418,
+ "step": 682
+ },
+ {
+ "epoch": 9.489296636085626,
+ "grad_norm": 0.27174389362335205,
+ "learning_rate": 0.0006,
+ "loss": 4.416125297546387,
+ "step": 683
+ },
+ {
+ "epoch": 9.503276539973788,
+ "grad_norm": 0.24570637941360474,
+ "learning_rate": 0.0006,
+ "loss": 4.4451093673706055,
+ "step": 684
+ },
+ {
+ "epoch": 9.517256443861948,
+ "grad_norm": 0.2741486132144928,
+ "learning_rate": 0.0006,
+ "loss": 4.453263282775879,
+ "step": 685
+ },
+ {
+ "epoch": 9.53123634775011,
+ "grad_norm": 0.24753718078136444,
+ "learning_rate": 0.0006,
+ "loss": 4.483033180236816,
+ "step": 686
+ },
+ {
+ "epoch": 9.54521625163827,
+ "grad_norm": 0.24288412928581238,
+ "learning_rate": 0.0006,
+ "loss": 4.452961444854736,
+ "step": 687
+ },
+ {
+ "epoch": 9.55919615552643,
+ "grad_norm": 0.21554753184318542,
+ "learning_rate": 0.0006,
+ "loss": 4.476005554199219,
+ "step": 688
+ },
+ {
+ "epoch": 9.57317605941459,
+ "grad_norm": 0.22775942087173462,
+ "learning_rate": 0.0006,
+ "loss": 4.4479193687438965,
+ "step": 689
+ },
+ {
+ "epoch": 9.587155963302752,
+ "grad_norm": 0.2610701024532318,
+ "learning_rate": 0.0006,
+ "loss": 4.474987506866455,
+ "step": 690
+ },
+ {
+ "epoch": 9.601135867190912,
+ "grad_norm": 0.2394690215587616,
+ "learning_rate": 0.0006,
+ "loss": 4.444857597351074,
+ "step": 691
+ },
+ {
+ "epoch": 9.615115771079074,
+ "grad_norm": 0.20868559181690216,
+ "learning_rate": 0.0006,
+ "loss": 4.4220709800720215,
+ "step": 692
+ },
+ {
+ "epoch": 9.629095674967235,
+ "grad_norm": 0.21869882941246033,
+ "learning_rate": 0.0006,
+ "loss": 4.451737403869629,
+ "step": 693
+ },
+ {
+ "epoch": 9.643075578855395,
+ "grad_norm": 0.1802823394536972,
+ "learning_rate": 0.0006,
+ "loss": 4.409085273742676,
+ "step": 694
+ },
+ {
+ "epoch": 9.657055482743557,
+ "grad_norm": 0.17046281695365906,
+ "learning_rate": 0.0006,
+ "loss": 4.424643516540527,
+ "step": 695
+ },
+ {
+ "epoch": 9.671035386631717,
+ "grad_norm": 0.19561922550201416,
+ "learning_rate": 0.0006,
+ "loss": 4.412302017211914,
+ "step": 696
+ },
+ {
+ "epoch": 9.685015290519878,
+ "grad_norm": 0.21928799152374268,
+ "learning_rate": 0.0006,
+ "loss": 4.427582263946533,
+ "step": 697
+ },
+ {
+ "epoch": 9.698995194408038,
+ "grad_norm": 0.244873046875,
+ "learning_rate": 0.0006,
+ "loss": 4.431827545166016,
+ "step": 698
+ },
+ {
+ "epoch": 9.7129750982962,
+ "grad_norm": 0.2799488604068756,
+ "learning_rate": 0.0006,
+ "loss": 4.407991409301758,
+ "step": 699
+ },
+ {
+ "epoch": 9.72695500218436,
+ "grad_norm": 0.2699538767337799,
+ "learning_rate": 0.0006,
+ "loss": 4.412313461303711,
+ "step": 700
+ },
+ {
+ "epoch": 9.740934906072521,
+ "grad_norm": 0.22293835878372192,
+ "learning_rate": 0.0006,
+ "loss": 4.423369884490967,
+ "step": 701
+ },
+ {
+ "epoch": 9.754914809960681,
+ "grad_norm": 0.21554361283779144,
+ "learning_rate": 0.0006,
+ "loss": 4.42026948928833,
+ "step": 702
+ },
+ {
+ "epoch": 9.768894713848843,
+ "grad_norm": 0.22135840356349945,
+ "learning_rate": 0.0006,
+ "loss": 4.400010108947754,
+ "step": 703
+ },
+ {
+ "epoch": 9.782874617737003,
+ "grad_norm": 0.2169952541589737,
+ "learning_rate": 0.0006,
+ "loss": 4.394582271575928,
+ "step": 704
+ },
+ {
+ "epoch": 9.796854521625164,
+ "grad_norm": 0.18913042545318604,
+ "learning_rate": 0.0006,
+ "loss": 4.395880699157715,
+ "step": 705
+ },
+ {
+ "epoch": 9.810834425513324,
+ "grad_norm": 0.191524475812912,
+ "learning_rate": 0.0006,
+ "loss": 4.378962516784668,
+ "step": 706
+ },
+ {
+ "epoch": 9.824814329401486,
+ "grad_norm": 0.20057640969753265,
+ "learning_rate": 0.0006,
+ "loss": 4.431066513061523,
+ "step": 707
+ },
+ {
+ "epoch": 9.838794233289645,
+ "grad_norm": 0.21670377254486084,
+ "learning_rate": 0.0006,
+ "loss": 4.364682197570801,
+ "step": 708
+ },
+ {
+ "epoch": 9.852774137177807,
+ "grad_norm": 0.21653099358081818,
+ "learning_rate": 0.0006,
+ "loss": 4.4050445556640625,
+ "step": 709
+ },
+ {
+ "epoch": 9.866754041065967,
+ "grad_norm": 0.2217673808336258,
+ "learning_rate": 0.0006,
+ "loss": 4.423664093017578,
+ "step": 710
+ },
+ {
+ "epoch": 9.880733944954128,
+ "grad_norm": 0.251078337430954,
+ "learning_rate": 0.0006,
+ "loss": 4.405768394470215,
+ "step": 711
+ },
+ {
+ "epoch": 9.89471384884229,
+ "grad_norm": 0.28962627053260803,
+ "learning_rate": 0.0006,
+ "loss": 4.421207427978516,
+ "step": 712
+ },
+ {
+ "epoch": 9.90869375273045,
+ "grad_norm": 0.3478074371814728,
+ "learning_rate": 0.0006,
+ "loss": 4.414942741394043,
+ "step": 713
+ },
+ {
+ "epoch": 9.922673656618612,
+ "grad_norm": 0.40396368503570557,
+ "learning_rate": 0.0006,
+ "loss": 4.415163993835449,
+ "step": 714
+ },
+ {
+ "epoch": 9.936653560506771,
+ "grad_norm": 0.3689858019351959,
+ "learning_rate": 0.0006,
+ "loss": 4.381345272064209,
+ "step": 715
+ },
+ {
+ "epoch": 9.950633464394933,
+ "grad_norm": 0.344868004322052,
+ "learning_rate": 0.0006,
+ "loss": 4.433088302612305,
+ "step": 716
+ },
+ {
+ "epoch": 9.964613368283093,
+ "grad_norm": 0.37976378202438354,
+ "learning_rate": 0.0006,
+ "loss": 4.431371212005615,
+ "step": 717
+ },
+ {
+ "epoch": 9.978593272171254,
+ "grad_norm": 0.4354130029678345,
+ "learning_rate": 0.0006,
+ "loss": 4.434148788452148,
+ "step": 718
+ },
+ {
+ "epoch": 9.992573176059414,
+ "grad_norm": 0.35859373211860657,
+ "learning_rate": 0.0006,
+ "loss": 4.428055763244629,
+ "step": 719
+ },
+ {
+ "epoch": 10.0,
+ "grad_norm": 0.3365023732185364,
+ "learning_rate": 0.0006,
+ "loss": 4.3888654708862305,
+ "step": 720
+ },
+ {
+ "epoch": 10.0,
+ "eval_loss": 4.638620853424072,
+ "eval_runtime": 44.3054,
+ "eval_samples_per_second": 55.117,
+ "eval_steps_per_second": 3.453,
+ "step": 720
+ },
+ {
+ "epoch": 10.013979903888162,
+ "grad_norm": 0.3267960250377655,
+ "learning_rate": 0.0006,
+ "loss": 4.386068344116211,
+ "step": 721
+ },
+ {
+ "epoch": 10.027959807776321,
+ "grad_norm": 0.33440953493118286,
+ "learning_rate": 0.0006,
+ "loss": 4.397515296936035,
+ "step": 722
+ },
+ {
+ "epoch": 10.041939711664483,
+ "grad_norm": 0.30047518014907837,
+ "learning_rate": 0.0006,
+ "loss": 4.398358345031738,
+ "step": 723
+ },
+ {
+ "epoch": 10.055919615552643,
+ "grad_norm": 0.2912217378616333,
+ "learning_rate": 0.0006,
+ "loss": 4.341166973114014,
+ "step": 724
+ },
+ {
+ "epoch": 10.069899519440805,
+ "grad_norm": 0.3199564218521118,
+ "learning_rate": 0.0006,
+ "loss": 4.388717174530029,
+ "step": 725
+ },
+ {
+ "epoch": 10.083879423328964,
+ "grad_norm": 0.2765582799911499,
+ "learning_rate": 0.0006,
+ "loss": 4.392992973327637,
+ "step": 726
+ },
+ {
+ "epoch": 10.097859327217126,
+ "grad_norm": 0.27138450741767883,
+ "learning_rate": 0.0006,
+ "loss": 4.382307529449463,
+ "step": 727
+ },
+ {
+ "epoch": 10.111839231105286,
+ "grad_norm": 0.29230645298957825,
+ "learning_rate": 0.0006,
+ "loss": 4.357486724853516,
+ "step": 728
+ },
+ {
+ "epoch": 10.125819134993447,
+ "grad_norm": 0.3127598464488983,
+ "learning_rate": 0.0006,
+ "loss": 4.39072322845459,
+ "step": 729
+ },
+ {
+ "epoch": 10.139799038881607,
+ "grad_norm": 0.3230913281440735,
+ "learning_rate": 0.0006,
+ "loss": 4.35037899017334,
+ "step": 730
+ },
+ {
+ "epoch": 10.153778942769769,
+ "grad_norm": 0.333675354719162,
+ "learning_rate": 0.0006,
+ "loss": 4.378030776977539,
+ "step": 731
+ },
+ {
+ "epoch": 10.167758846657929,
+ "grad_norm": 0.30325770378112793,
+ "learning_rate": 0.0006,
+ "loss": 4.372736930847168,
+ "step": 732
+ },
+ {
+ "epoch": 10.18173875054609,
+ "grad_norm": 0.2888163924217224,
+ "learning_rate": 0.0006,
+ "loss": 4.397604942321777,
+ "step": 733
+ },
+ {
+ "epoch": 10.19571865443425,
+ "grad_norm": 0.3378832936286926,
+ "learning_rate": 0.0006,
+ "loss": 4.395705223083496,
+ "step": 734
+ },
+ {
+ "epoch": 10.209698558322412,
+ "grad_norm": 0.30980268120765686,
+ "learning_rate": 0.0006,
+ "loss": 4.3861212730407715,
+ "step": 735
+ },
+ {
+ "epoch": 10.223678462210572,
+ "grad_norm": 0.2965783178806305,
+ "learning_rate": 0.0006,
+ "loss": 4.394898414611816,
+ "step": 736
+ },
+ {
+ "epoch": 10.237658366098733,
+ "grad_norm": 0.2818217873573303,
+ "learning_rate": 0.0006,
+ "loss": 4.36171817779541,
+ "step": 737
+ },
+ {
+ "epoch": 10.251638269986893,
+ "grad_norm": 0.2418123185634613,
+ "learning_rate": 0.0006,
+ "loss": 4.370945930480957,
+ "step": 738
+ },
+ {
+ "epoch": 10.265618173875055,
+ "grad_norm": 0.22372810542583466,
+ "learning_rate": 0.0006,
+ "loss": 4.354825973510742,
+ "step": 739
+ },
+ {
+ "epoch": 10.279598077763215,
+ "grad_norm": 0.238066166639328,
+ "learning_rate": 0.0006,
+ "loss": 4.376237392425537,
+ "step": 740
+ },
+ {
+ "epoch": 10.293577981651376,
+ "grad_norm": 0.22352449595928192,
+ "learning_rate": 0.0006,
+ "loss": 4.317084312438965,
+ "step": 741
+ },
+ {
+ "epoch": 10.307557885539538,
+ "grad_norm": 0.21685205399990082,
+ "learning_rate": 0.0006,
+ "loss": 4.335271835327148,
+ "step": 742
+ },
+ {
+ "epoch": 10.321537789427698,
+ "grad_norm": 0.19584694504737854,
+ "learning_rate": 0.0006,
+ "loss": 4.357963562011719,
+ "step": 743
+ },
+ {
+ "epoch": 10.33551769331586,
+ "grad_norm": 0.20373336970806122,
+ "learning_rate": 0.0006,
+ "loss": 4.401963233947754,
+ "step": 744
+ },
+ {
+ "epoch": 10.349497597204019,
+ "grad_norm": 0.2247837632894516,
+ "learning_rate": 0.0006,
+ "loss": 4.357202529907227,
+ "step": 745
+ },
+ {
+ "epoch": 10.36347750109218,
+ "grad_norm": 0.2416863739490509,
+ "learning_rate": 0.0006,
+ "loss": 4.364739418029785,
+ "step": 746
+ },
+ {
+ "epoch": 10.37745740498034,
+ "grad_norm": 0.22281162440776825,
+ "learning_rate": 0.0006,
+ "loss": 4.351607799530029,
+ "step": 747
+ },
+ {
+ "epoch": 10.391437308868502,
+ "grad_norm": 0.20751096308231354,
+ "learning_rate": 0.0006,
+ "loss": 4.370017051696777,
+ "step": 748
+ },
+ {
+ "epoch": 10.405417212756662,
+ "grad_norm": 0.19178363680839539,
+ "learning_rate": 0.0006,
+ "loss": 4.360328674316406,
+ "step": 749
+ },
+ {
+ "epoch": 10.419397116644824,
+ "grad_norm": 0.20534078776836395,
+ "learning_rate": 0.0006,
+ "loss": 4.3735432624816895,
+ "step": 750
+ },
+ {
+ "epoch": 10.433377020532983,
+ "grad_norm": 0.20533937215805054,
+ "learning_rate": 0.0006,
+ "loss": 4.326902389526367,
+ "step": 751
+ },
+ {
+ "epoch": 10.447356924421145,
+ "grad_norm": 0.22057875990867615,
+ "learning_rate": 0.0006,
+ "loss": 4.360934257507324,
+ "step": 752
+ },
+ {
+ "epoch": 10.461336828309305,
+ "grad_norm": 0.25568997859954834,
+ "learning_rate": 0.0006,
+ "loss": 4.345063209533691,
+ "step": 753
+ },
+ {
+ "epoch": 10.475316732197467,
+ "grad_norm": 0.31471487879753113,
+ "learning_rate": 0.0006,
+ "loss": 4.324014186859131,
+ "step": 754
+ },
+ {
+ "epoch": 10.489296636085626,
+ "grad_norm": 0.2716822624206543,
+ "learning_rate": 0.0006,
+ "loss": 4.318459510803223,
+ "step": 755
+ },
+ {
+ "epoch": 10.503276539973788,
+ "grad_norm": 0.19552019238471985,
+ "learning_rate": 0.0006,
+ "loss": 4.3367509841918945,
+ "step": 756
+ },
+ {
+ "epoch": 10.517256443861948,
+ "grad_norm": 0.22822986543178558,
+ "learning_rate": 0.0006,
+ "loss": 4.328935623168945,
+ "step": 757
+ },
+ {
+ "epoch": 10.53123634775011,
+ "grad_norm": 0.22282928228378296,
+ "learning_rate": 0.0006,
+ "loss": 4.358272552490234,
+ "step": 758
+ },
+ {
+ "epoch": 10.54521625163827,
+ "grad_norm": 0.23303352296352386,
+ "learning_rate": 0.0006,
+ "loss": 4.336641311645508,
+ "step": 759
+ },
+ {
+ "epoch": 10.55919615552643,
+ "grad_norm": 0.29474690556526184,
+ "learning_rate": 0.0006,
+ "loss": 4.343188285827637,
+ "step": 760
+ },
+ {
+ "epoch": 10.57317605941459,
+ "grad_norm": 0.36269059777259827,
+ "learning_rate": 0.0006,
+ "loss": 4.313019752502441,
+ "step": 761
+ },
+ {
+ "epoch": 10.587155963302752,
+ "grad_norm": 0.3742978870868683,
+ "learning_rate": 0.0006,
+ "loss": 4.361410140991211,
+ "step": 762
+ },
+ {
+ "epoch": 10.601135867190912,
+ "grad_norm": 0.34412163496017456,
+ "learning_rate": 0.0006,
+ "loss": 4.321324825286865,
+ "step": 763
+ },
+ {
+ "epoch": 10.615115771079074,
+ "grad_norm": 0.3464587926864624,
+ "learning_rate": 0.0006,
+ "loss": 4.341907501220703,
+ "step": 764
+ },
+ {
+ "epoch": 10.629095674967235,
+ "grad_norm": 0.3318136930465698,
+ "learning_rate": 0.0006,
+ "loss": 4.329099655151367,
+ "step": 765
+ },
+ {
+ "epoch": 10.643075578855395,
+ "grad_norm": 0.31292903423309326,
+ "learning_rate": 0.0006,
+ "loss": 4.332015037536621,
+ "step": 766
+ },
+ {
+ "epoch": 10.657055482743557,
+ "grad_norm": 0.2904847264289856,
+ "learning_rate": 0.0006,
+ "loss": 4.341764450073242,
+ "step": 767
+ },
+ {
+ "epoch": 10.671035386631717,
+ "grad_norm": 0.3287692666053772,
+ "learning_rate": 0.0006,
+ "loss": 4.342329025268555,
+ "step": 768
+ },
+ {
+ "epoch": 10.685015290519878,
+ "grad_norm": 0.3115365207195282,
+ "learning_rate": 0.0006,
+ "loss": 4.3530073165893555,
+ "step": 769
+ },
+ {
+ "epoch": 10.698995194408038,
+ "grad_norm": 0.24133864045143127,
+ "learning_rate": 0.0006,
+ "loss": 4.321497917175293,
+ "step": 770
+ },
+ {
+ "epoch": 10.7129750982962,
+ "grad_norm": 0.24658630788326263,
+ "learning_rate": 0.0006,
+ "loss": 4.32669734954834,
+ "step": 771
+ },
+ {
+ "epoch": 10.72695500218436,
+ "grad_norm": 0.2342129647731781,
+ "learning_rate": 0.0006,
+ "loss": 4.345459461212158,
+ "step": 772
+ },
+ {
+ "epoch": 10.740934906072521,
+ "grad_norm": 0.23360829055309296,
+ "learning_rate": 0.0006,
+ "loss": 4.33249568939209,
+ "step": 773
+ },
+ {
+ "epoch": 10.754914809960681,
+ "grad_norm": 0.24314677715301514,
+ "learning_rate": 0.0006,
+ "loss": 4.30499792098999,
+ "step": 774
+ },
+ {
+ "epoch": 10.768894713848843,
+ "grad_norm": 0.22105181217193604,
+ "learning_rate": 0.0006,
+ "loss": 4.33706521987915,
+ "step": 775
+ },
+ {
+ "epoch": 10.782874617737003,
+ "grad_norm": 0.23307174444198608,
+ "learning_rate": 0.0006,
+ "loss": 4.320387840270996,
+ "step": 776
+ },
+ {
+ "epoch": 10.796854521625164,
+ "grad_norm": 0.24946169555187225,
+ "learning_rate": 0.0006,
+ "loss": 4.316012382507324,
+ "step": 777
+ },
+ {
+ "epoch": 10.810834425513324,
+ "grad_norm": 0.26023536920547485,
+ "learning_rate": 0.0006,
+ "loss": 4.315193176269531,
+ "step": 778
+ },
+ {
+ "epoch": 10.824814329401486,
+ "grad_norm": 0.2688547968864441,
+ "learning_rate": 0.0006,
+ "loss": 4.3243255615234375,
+ "step": 779
+ },
+ {
+ "epoch": 10.838794233289645,
+ "grad_norm": 0.28188297152519226,
+ "learning_rate": 0.0006,
+ "loss": 4.3202972412109375,
+ "step": 780
+ },
+ {
+ "epoch": 10.852774137177807,
+ "grad_norm": 0.2890053689479828,
+ "learning_rate": 0.0006,
+ "loss": 4.318799018859863,
+ "step": 781
+ },
+ {
+ "epoch": 10.866754041065967,
+ "grad_norm": 0.2914353013038635,
+ "learning_rate": 0.0006,
+ "loss": 4.314262390136719,
+ "step": 782
+ },
+ {
+ "epoch": 10.880733944954128,
+ "grad_norm": 0.3145572543144226,
+ "learning_rate": 0.0006,
+ "loss": 4.339262008666992,
+ "step": 783
+ },
+ {
+ "epoch": 10.89471384884229,
+ "grad_norm": 0.323062002658844,
+ "learning_rate": 0.0006,
+ "loss": 4.354856491088867,
+ "step": 784
+ },
+ {
+ "epoch": 10.90869375273045,
+ "grad_norm": 0.32741227746009827,
+ "learning_rate": 0.0006,
+ "loss": 4.325577735900879,
+ "step": 785
+ },
+ {
+ "epoch": 10.922673656618612,
+ "grad_norm": 0.2855733036994934,
+ "learning_rate": 0.0006,
+ "loss": 4.324419021606445,
+ "step": 786
+ },
+ {
+ "epoch": 10.936653560506771,
+ "grad_norm": 0.2969444990158081,
+ "learning_rate": 0.0006,
+ "loss": 4.320681095123291,
+ "step": 787
+ },
+ {
+ "epoch": 10.950633464394933,
+ "grad_norm": 0.28108111023902893,
+ "learning_rate": 0.0006,
+ "loss": 4.32673454284668,
+ "step": 788
+ },
+ {
+ "epoch": 10.964613368283093,
+ "grad_norm": 0.2537972629070282,
+ "learning_rate": 0.0006,
+ "loss": 4.3197021484375,
+ "step": 789
+ },
+ {
+ "epoch": 10.978593272171254,
+ "grad_norm": 0.2354544699192047,
+ "learning_rate": 0.0006,
+ "loss": 4.3354973793029785,
+ "step": 790
+ },
+ {
+ "epoch": 10.992573176059414,
+ "grad_norm": 0.26195117831230164,
+ "learning_rate": 0.0006,
+ "loss": 4.3172526359558105,
+ "step": 791
+ },
+ {
+ "epoch": 11.0,
+ "grad_norm": 0.27089616656303406,
+ "learning_rate": 0.0006,
+ "loss": 4.324293613433838,
+ "step": 792
+ },
+ {
+ "epoch": 11.0,
+ "eval_loss": 4.531813621520996,
+ "eval_runtime": 44.1656,
+ "eval_samples_per_second": 55.292,
+ "eval_steps_per_second": 3.464,
+ "step": 792
+ },
+ {
+ "epoch": 11.013979903888162,
+ "grad_norm": 0.2526339590549469,
+ "learning_rate": 0.0006,
+ "loss": 4.287600517272949,
+ "step": 793
+ },
+ {
+ "epoch": 11.027959807776321,
+ "grad_norm": 0.24318458139896393,
+ "learning_rate": 0.0006,
+ "loss": 4.268078327178955,
+ "step": 794
+ },
+ {
+ "epoch": 11.041939711664483,
+ "grad_norm": 0.2450830638408661,
+ "learning_rate": 0.0006,
+ "loss": 4.265467643737793,
+ "step": 795
+ },
+ {
+ "epoch": 11.055919615552643,
+ "grad_norm": 0.23963099718093872,
+ "learning_rate": 0.0006,
+ "loss": 4.267931938171387,
+ "step": 796
+ },
+ {
+ "epoch": 11.069899519440805,
+ "grad_norm": 0.2488657534122467,
+ "learning_rate": 0.0006,
+ "loss": 4.30262565612793,
+ "step": 797
+ },
+ {
+ "epoch": 11.083879423328964,
+ "grad_norm": 0.2319781631231308,
+ "learning_rate": 0.0006,
+ "loss": 4.28665828704834,
+ "step": 798
+ },
+ {
+ "epoch": 11.097859327217126,
+ "grad_norm": 0.2425263375043869,
+ "learning_rate": 0.0006,
+ "loss": 4.284830570220947,
+ "step": 799
+ },
+ {
+ "epoch": 11.111839231105286,
+ "grad_norm": 0.23096567392349243,
+ "learning_rate": 0.0006,
+ "loss": 4.2817206382751465,
+ "step": 800
+ },
+ {
+ "epoch": 11.125819134993447,
+ "grad_norm": 0.2846364676952362,
+ "learning_rate": 0.0006,
+ "loss": 4.276104927062988,
+ "step": 801
+ },
+ {
+ "epoch": 11.139799038881607,
+ "grad_norm": 0.2984965741634369,
+ "learning_rate": 0.0006,
+ "loss": 4.2909650802612305,
+ "step": 802
+ },
+ {
+ "epoch": 11.153778942769769,
+ "grad_norm": 0.2841213643550873,
+ "learning_rate": 0.0006,
+ "loss": 4.283358097076416,
+ "step": 803
+ },
+ {
+ "epoch": 11.167758846657929,
+ "grad_norm": 0.29192933440208435,
+ "learning_rate": 0.0006,
+ "loss": 4.267040729522705,
+ "step": 804
+ },
+ {
+ "epoch": 11.18173875054609,
+ "grad_norm": 0.3254184126853943,
+ "learning_rate": 0.0006,
+ "loss": 4.301564693450928,
+ "step": 805
+ },
+ {
+ "epoch": 11.19571865443425,
+ "grad_norm": 0.3347095847129822,
+ "learning_rate": 0.0006,
+ "loss": 4.271395683288574,
+ "step": 806
+ },
+ {
+ "epoch": 11.209698558322412,
+ "grad_norm": 0.25609350204467773,
+ "learning_rate": 0.0006,
+ "loss": 4.2963056564331055,
+ "step": 807
+ },
+ {
+ "epoch": 11.223678462210572,
+ "grad_norm": 0.29272061586380005,
+ "learning_rate": 0.0006,
+ "loss": 4.298416614532471,
+ "step": 808
+ },
+ {
+ "epoch": 11.237658366098733,
+ "grad_norm": 0.32179465889930725,
+ "learning_rate": 0.0006,
+ "loss": 4.294036865234375,
+ "step": 809
+ },
+ {
+ "epoch": 11.251638269986893,
+ "grad_norm": 0.3336549401283264,
+ "learning_rate": 0.0006,
+ "loss": 4.291993141174316,
+ "step": 810
+ },
+ {
+ "epoch": 11.265618173875055,
+ "grad_norm": 0.32273536920547485,
+ "learning_rate": 0.0006,
+ "loss": 4.311004638671875,
+ "step": 811
+ },
+ {
+ "epoch": 11.279598077763215,
+ "grad_norm": 0.3575087785720825,
+ "learning_rate": 0.0006,
+ "loss": 4.300217628479004,
+ "step": 812
+ },
+ {
+ "epoch": 11.293577981651376,
+ "grad_norm": 0.3332885205745697,
+ "learning_rate": 0.0006,
+ "loss": 4.278337478637695,
+ "step": 813
+ },
+ {
+ "epoch": 11.307557885539538,
+ "grad_norm": 0.31440407037734985,
+ "learning_rate": 0.0006,
+ "loss": 4.273826599121094,
+ "step": 814
+ },
+ {
+ "epoch": 11.321537789427698,
+ "grad_norm": 0.29822009801864624,
+ "learning_rate": 0.0006,
+ "loss": 4.284292221069336,
+ "step": 815
+ },
+ {
+ "epoch": 11.33551769331586,
+ "grad_norm": 0.30695512890815735,
+ "learning_rate": 0.0006,
+ "loss": 4.2831926345825195,
+ "step": 816
+ },
+ {
+ "epoch": 11.349497597204019,
+ "grad_norm": 0.30576950311660767,
+ "learning_rate": 0.0006,
+ "loss": 4.277133464813232,
+ "step": 817
+ },
+ {
+ "epoch": 11.36347750109218,
+ "grad_norm": 0.2859647870063782,
+ "learning_rate": 0.0006,
+ "loss": 4.3130106925964355,
+ "step": 818
+ },
+ {
+ "epoch": 11.37745740498034,
+ "grad_norm": 0.32417574524879456,
+ "learning_rate": 0.0006,
+ "loss": 4.310303211212158,
+ "step": 819
+ },
+ {
+ "epoch": 11.391437308868502,
+ "grad_norm": 0.3512463867664337,
+ "learning_rate": 0.0006,
+ "loss": 4.287015438079834,
+ "step": 820
+ },
+ {
+ "epoch": 11.405417212756662,
+ "grad_norm": 0.32578620314598083,
+ "learning_rate": 0.0006,
+ "loss": 4.2957940101623535,
+ "step": 821
+ },
+ {
+ "epoch": 11.419397116644824,
+ "grad_norm": 0.287949800491333,
+ "learning_rate": 0.0006,
+ "loss": 4.2881879806518555,
+ "step": 822
+ },
+ {
+ "epoch": 11.433377020532983,
+ "grad_norm": 0.28048595786094666,
+ "learning_rate": 0.0006,
+ "loss": 4.274960517883301,
+ "step": 823
+ },
+ {
+ "epoch": 11.447356924421145,
+ "grad_norm": 0.2541540563106537,
+ "learning_rate": 0.0006,
+ "loss": 4.261083602905273,
+ "step": 824
+ },
+ {
+ "epoch": 11.461336828309305,
+ "grad_norm": 0.2348361313343048,
+ "learning_rate": 0.0006,
+ "loss": 4.271036148071289,
+ "step": 825
+ },
+ {
+ "epoch": 11.475316732197467,
+ "grad_norm": 0.20913535356521606,
+ "learning_rate": 0.0006,
+ "loss": 4.307661056518555,
+ "step": 826
+ },
+ {
+ "epoch": 11.489296636085626,
+ "grad_norm": 0.22298868000507355,
+ "learning_rate": 0.0006,
+ "loss": 4.26902961730957,
+ "step": 827
+ },
+ {
+ "epoch": 11.503276539973788,
+ "grad_norm": 0.22752761840820312,
+ "learning_rate": 0.0006,
+ "loss": 4.305529594421387,
+ "step": 828
+ },
+ {
+ "epoch": 11.517256443861948,
+ "grad_norm": 0.2149917483329773,
+ "learning_rate": 0.0006,
+ "loss": 4.25134801864624,
+ "step": 829
+ },
+ {
+ "epoch": 11.53123634775011,
+ "grad_norm": 0.21085695922374725,
+ "learning_rate": 0.0006,
+ "loss": 4.266982078552246,
+ "step": 830
+ },
+ {
+ "epoch": 11.54521625163827,
+ "grad_norm": 0.21586747467517853,
+ "learning_rate": 0.0006,
+ "loss": 4.235255718231201,
+ "step": 831
+ },
+ {
+ "epoch": 11.55919615552643,
+ "grad_norm": 0.2520856559276581,
+ "learning_rate": 0.0006,
+ "loss": 4.283442497253418,
+ "step": 832
+ },
+ {
+ "epoch": 11.57317605941459,
+ "grad_norm": 0.2825471758842468,
+ "learning_rate": 0.0006,
+ "loss": 4.234672546386719,
+ "step": 833
+ },
+ {
+ "epoch": 11.587155963302752,
+ "grad_norm": 0.27437824010849,
+ "learning_rate": 0.0006,
+ "loss": 4.246068000793457,
+ "step": 834
+ },
+ {
+ "epoch": 11.601135867190912,
+ "grad_norm": 0.2596757411956787,
+ "learning_rate": 0.0006,
+ "loss": 4.278448104858398,
+ "step": 835
+ },
+ {
+ "epoch": 11.615115771079074,
+ "grad_norm": 0.25663474202156067,
+ "learning_rate": 0.0006,
+ "loss": 4.308779716491699,
+ "step": 836
+ },
+ {
+ "epoch": 11.629095674967235,
+ "grad_norm": 0.2546203136444092,
+ "learning_rate": 0.0006,
+ "loss": 4.261247634887695,
+ "step": 837
+ },
+ {
+ "epoch": 11.643075578855395,
+ "grad_norm": 0.24722838401794434,
+ "learning_rate": 0.0006,
+ "loss": 4.275888442993164,
+ "step": 838
+ },
+ {
+ "epoch": 11.657055482743557,
+ "grad_norm": 0.3022806644439697,
+ "learning_rate": 0.0006,
+ "loss": 4.2572407722473145,
+ "step": 839
+ },
+ {
+ "epoch": 11.671035386631717,
+ "grad_norm": 0.31170839071273804,
+ "learning_rate": 0.0006,
+ "loss": 4.26992654800415,
+ "step": 840
+ },
+ {
+ "epoch": 11.685015290519878,
+ "grad_norm": 0.31362825632095337,
+ "learning_rate": 0.0006,
+ "loss": 4.2354655265808105,
+ "step": 841
+ },
+ {
+ "epoch": 11.698995194408038,
+ "grad_norm": 0.28741633892059326,
+ "learning_rate": 0.0006,
+ "loss": 4.263496398925781,
+ "step": 842
+ },
+ {
+ "epoch": 11.7129750982962,
+ "grad_norm": 0.2492494285106659,
+ "learning_rate": 0.0006,
+ "loss": 4.26463508605957,
+ "step": 843
+ },
+ {
+ "epoch": 11.72695500218436,
+ "grad_norm": 0.24324660003185272,
+ "learning_rate": 0.0006,
+ "loss": 4.245428085327148,
+ "step": 844
+ },
+ {
+ "epoch": 11.740934906072521,
+ "grad_norm": 0.23591114580631256,
+ "learning_rate": 0.0006,
+ "loss": 4.249845504760742,
+ "step": 845
+ },
+ {
+ "epoch": 11.754914809960681,
+ "grad_norm": 0.2202281504869461,
+ "learning_rate": 0.0006,
+ "loss": 4.245006084442139,
+ "step": 846
+ },
+ {
+ "epoch": 11.768894713848843,
+ "grad_norm": 0.22117942571640015,
+ "learning_rate": 0.0006,
+ "loss": 4.27812385559082,
+ "step": 847
+ },
+ {
+ "epoch": 11.782874617737003,
+ "grad_norm": 0.26361414790153503,
+ "learning_rate": 0.0006,
+ "loss": 4.250475883483887,
+ "step": 848
+ },
+ {
+ "epoch": 11.796854521625164,
+ "grad_norm": 0.2820321321487427,
+ "learning_rate": 0.0006,
+ "loss": 4.265835762023926,
+ "step": 849
+ },
+ {
+ "epoch": 11.810834425513324,
+ "grad_norm": 0.2078961282968521,
+ "learning_rate": 0.0006,
+ "loss": 4.251298904418945,
+ "step": 850
+ },
+ {
+ "epoch": 11.824814329401486,
+ "grad_norm": 0.21548646688461304,
+ "learning_rate": 0.0006,
+ "loss": 4.288539886474609,
+ "step": 851
+ },
+ {
+ "epoch": 11.838794233289645,
+ "grad_norm": 0.22719401121139526,
+ "learning_rate": 0.0006,
+ "loss": 4.252035140991211,
+ "step": 852
+ },
+ {
+ "epoch": 11.852774137177807,
+ "grad_norm": 0.21628320217132568,
+ "learning_rate": 0.0006,
+ "loss": 4.268622398376465,
+ "step": 853
+ },
+ {
+ "epoch": 11.866754041065967,
+ "grad_norm": 0.20855145156383514,
+ "learning_rate": 0.0006,
+ "loss": 4.253366470336914,
+ "step": 854
+ },
+ {
+ "epoch": 11.880733944954128,
+ "grad_norm": 0.2091914266347885,
+ "learning_rate": 0.0006,
+ "loss": 4.237805366516113,
+ "step": 855
+ },
+ {
+ "epoch": 11.89471384884229,
+ "grad_norm": 0.2000127136707306,
+ "learning_rate": 0.0006,
+ "loss": 4.268559455871582,
+ "step": 856
+ },
+ {
+ "epoch": 11.90869375273045,
+ "grad_norm": 0.21080894768238068,
+ "learning_rate": 0.0006,
+ "loss": 4.208702087402344,
+ "step": 857
+ },
+ {
+ "epoch": 11.922673656618612,
+ "grad_norm": 0.22125796973705292,
+ "learning_rate": 0.0006,
+ "loss": 4.250210762023926,
+ "step": 858
+ },
+ {
+ "epoch": 11.936653560506771,
+ "grad_norm": 0.25905469059944153,
+ "learning_rate": 0.0006,
+ "loss": 4.2263593673706055,
+ "step": 859
+ },
+ {
+ "epoch": 11.950633464394933,
+ "grad_norm": 0.29970306158065796,
+ "learning_rate": 0.0006,
+ "loss": 4.250848770141602,
+ "step": 860
+ },
+ {
+ "epoch": 11.964613368283093,
+ "grad_norm": 0.28155168890953064,
+ "learning_rate": 0.0006,
+ "loss": 4.272709369659424,
+ "step": 861
+ },
+ {
+ "epoch": 11.978593272171254,
+ "grad_norm": 0.23396113514900208,
+ "learning_rate": 0.0006,
+ "loss": 4.2674970626831055,
+ "step": 862
+ },
+ {
+ "epoch": 11.992573176059414,
+ "grad_norm": 0.23619577288627625,
+ "learning_rate": 0.0006,
+ "loss": 4.240267753601074,
+ "step": 863
+ },
+ {
+ "epoch": 12.0,
+ "grad_norm": 0.2779577076435089,
+ "learning_rate": 0.0006,
+ "loss": 4.267625331878662,
+ "step": 864
+ },
+ {
+ "epoch": 12.0,
+ "eval_loss": 4.437657356262207,
+ "eval_runtime": 44.4959,
+ "eval_samples_per_second": 54.881,
+ "eval_steps_per_second": 3.439,
+ "step": 864
+ },
+ {
+ "epoch": 12.013979903888162,
+ "grad_norm": 0.2948288321495056,
+ "learning_rate": 0.0006,
+ "loss": 4.232182502746582,
+ "step": 865
+ },
+ {
+ "epoch": 12.027959807776321,
+ "grad_norm": 0.3715663254261017,
+ "learning_rate": 0.0006,
+ "loss": 4.233771324157715,
+ "step": 866
+ },
+ {
+ "epoch": 12.041939711664483,
+ "grad_norm": 0.38358673453330994,
+ "learning_rate": 0.0006,
+ "loss": 4.208967685699463,
+ "step": 867
+ },
+ {
+ "epoch": 12.055919615552643,
+ "grad_norm": 0.3314538896083832,
+ "learning_rate": 0.0006,
+ "loss": 4.230685234069824,
+ "step": 868
+ },
+ {
+ "epoch": 12.069899519440805,
+ "grad_norm": 0.34171539545059204,
+ "learning_rate": 0.0006,
+ "loss": 4.231358528137207,
+ "step": 869
+ },
+ {
+ "epoch": 12.083879423328964,
+ "grad_norm": 0.3253359794616699,
+ "learning_rate": 0.0006,
+ "loss": 4.276405334472656,
+ "step": 870
+ },
+ {
+ "epoch": 12.097859327217126,
+ "grad_norm": 0.29008302092552185,
+ "learning_rate": 0.0006,
+ "loss": 4.232935905456543,
+ "step": 871
+ },
+ {
+ "epoch": 12.111839231105286,
+ "grad_norm": 0.28490355610847473,
+ "learning_rate": 0.0006,
+ "loss": 4.238036632537842,
+ "step": 872
+ },
+ {
+ "epoch": 12.125819134993447,
+ "grad_norm": 0.28446322679519653,
+ "learning_rate": 0.0006,
+ "loss": 4.210229873657227,
+ "step": 873
+ },
+ {
+ "epoch": 12.139799038881607,
+ "grad_norm": 0.29664531350135803,
+ "learning_rate": 0.0006,
+ "loss": 4.221309185028076,
+ "step": 874
+ },
+ {
+ "epoch": 12.153778942769769,
+ "grad_norm": 0.3083505928516388,
+ "learning_rate": 0.0006,
+ "loss": 4.221837997436523,
+ "step": 875
+ },
+ {
+ "epoch": 12.167758846657929,
+ "grad_norm": 0.3282921314239502,
+ "learning_rate": 0.0006,
+ "loss": 4.236713409423828,
+ "step": 876
+ },
+ {
+ "epoch": 12.18173875054609,
+ "grad_norm": 0.3603622615337372,
+ "learning_rate": 0.0006,
+ "loss": 4.245080947875977,
+ "step": 877
+ },
+ {
+ "epoch": 12.19571865443425,
+ "grad_norm": 0.38070905208587646,
+ "learning_rate": 0.0006,
+ "loss": 4.240756988525391,
+ "step": 878
+ },
+ {
+ "epoch": 12.209698558322412,
+ "grad_norm": 0.34479081630706787,
+ "learning_rate": 0.0006,
+ "loss": 4.200998306274414,
+ "step": 879
+ },
+ {
+ "epoch": 12.223678462210572,
+ "grad_norm": 0.3006879389286041,
+ "learning_rate": 0.0006,
+ "loss": 4.23531436920166,
+ "step": 880
+ },
+ {
+ "epoch": 12.237658366098733,
+ "grad_norm": 0.36835649609565735,
+ "learning_rate": 0.0006,
+ "loss": 4.229718208312988,
+ "step": 881
+ },
+ {
+ "epoch": 12.251638269986893,
+ "grad_norm": 0.4386984407901764,
+ "learning_rate": 0.0006,
+ "loss": 4.241188049316406,
+ "step": 882
+ },
+ {
+ "epoch": 12.265618173875055,
+ "grad_norm": 0.4442787170410156,
+ "learning_rate": 0.0006,
+ "loss": 4.239102840423584,
+ "step": 883
+ },
+ {
+ "epoch": 12.279598077763215,
+ "grad_norm": 0.324411541223526,
+ "learning_rate": 0.0006,
+ "loss": 4.198982238769531,
+ "step": 884
+ },
+ {
+ "epoch": 12.293577981651376,
+ "grad_norm": 0.2824151813983917,
+ "learning_rate": 0.0006,
+ "loss": 4.248816967010498,
+ "step": 885
+ },
+ {
+ "epoch": 12.307557885539538,
+ "grad_norm": 0.31407129764556885,
+ "learning_rate": 0.0006,
+ "loss": 4.2371320724487305,
+ "step": 886
+ },
+ {
+ "epoch": 12.321537789427698,
+ "grad_norm": 0.32920050621032715,
+ "learning_rate": 0.0006,
+ "loss": 4.210432052612305,
+ "step": 887
+ },
+ {
+ "epoch": 12.33551769331586,
+ "grad_norm": 0.315231055021286,
+ "learning_rate": 0.0006,
+ "loss": 4.219416618347168,
+ "step": 888
+ },
+ {
+ "epoch": 12.349497597204019,
+ "grad_norm": 0.30932050943374634,
+ "learning_rate": 0.0006,
+ "loss": 4.225022315979004,
+ "step": 889
+ },
+ {
+ "epoch": 12.36347750109218,
+ "grad_norm": 0.30242064595222473,
+ "learning_rate": 0.0006,
+ "loss": 4.2738518714904785,
+ "step": 890
+ },
+ {
+ "epoch": 12.37745740498034,
+ "grad_norm": 0.2926250994205475,
+ "learning_rate": 0.0006,
+ "loss": 4.231094837188721,
+ "step": 891
+ },
+ {
+ "epoch": 12.391437308868502,
+ "grad_norm": 0.2541215717792511,
+ "learning_rate": 0.0006,
+ "loss": 4.211821556091309,
+ "step": 892
+ },
+ {
+ "epoch": 12.405417212756662,
+ "grad_norm": 0.23693418502807617,
+ "learning_rate": 0.0006,
+ "loss": 4.208099365234375,
+ "step": 893
+ },
+ {
+ "epoch": 12.419397116644824,
+ "grad_norm": 0.22063226997852325,
+ "learning_rate": 0.0006,
+ "loss": 4.211234092712402,
+ "step": 894
+ },
+ {
+ "epoch": 12.433377020532983,
+ "grad_norm": 0.21536271274089813,
+ "learning_rate": 0.0006,
+ "loss": 4.199228286743164,
+ "step": 895
+ },
+ {
+ "epoch": 12.447356924421145,
+ "grad_norm": 0.243179589509964,
+ "learning_rate": 0.0006,
+ "loss": 4.204344749450684,
+ "step": 896
+ },
+ {
+ "epoch": 12.461336828309305,
+ "grad_norm": 0.2299746423959732,
+ "learning_rate": 0.0006,
+ "loss": 4.1565752029418945,
+ "step": 897
+ },
+ {
+ "epoch": 12.475316732197467,
+ "grad_norm": 0.2286847084760666,
+ "learning_rate": 0.0006,
+ "loss": 4.242953777313232,
+ "step": 898
+ },
+ {
+ "epoch": 12.489296636085626,
+ "grad_norm": 0.19463586807250977,
+ "learning_rate": 0.0006,
+ "loss": 4.214809417724609,
+ "step": 899
+ },
+ {
+ "epoch": 12.503276539973788,
+ "grad_norm": 0.1978398710489273,
+ "learning_rate": 0.0006,
+ "loss": 4.159815311431885,
+ "step": 900
+ },
+ {
+ "epoch": 12.517256443861948,
+ "grad_norm": 0.23177850246429443,
+ "learning_rate": 0.0006,
+ "loss": 4.2069902420043945,
+ "step": 901
+ },
+ {
+ "epoch": 12.53123634775011,
+ "grad_norm": 0.2408912032842636,
+ "learning_rate": 0.0006,
+ "loss": 4.206778526306152,
+ "step": 902
+ },
+ {
+ "epoch": 12.54521625163827,
+ "grad_norm": 0.21839919686317444,
+ "learning_rate": 0.0006,
+ "loss": 4.197076320648193,
+ "step": 903
+ },
+ {
+ "epoch": 12.55919615552643,
+ "grad_norm": 0.2053343504667282,
+ "learning_rate": 0.0006,
+ "loss": 4.21247673034668,
+ "step": 904
+ },
+ {
+ "epoch": 12.57317605941459,
+ "grad_norm": 0.19943439960479736,
+ "learning_rate": 0.0006,
+ "loss": 4.176966667175293,
+ "step": 905
+ },
+ {
+ "epoch": 12.587155963302752,
+ "grad_norm": 0.2012074887752533,
+ "learning_rate": 0.0006,
+ "loss": 4.210303783416748,
+ "step": 906
+ },
+ {
+ "epoch": 12.601135867190912,
+ "grad_norm": 0.22240376472473145,
+ "learning_rate": 0.0006,
+ "loss": 4.200625896453857,
+ "step": 907
+ },
+ {
+ "epoch": 12.615115771079074,
+ "grad_norm": 0.21729710698127747,
+ "learning_rate": 0.0006,
+ "loss": 4.2001953125,
+ "step": 908
+ },
+ {
+ "epoch": 12.629095674967235,
+ "grad_norm": 0.22470413148403168,
+ "learning_rate": 0.0006,
+ "loss": 4.197505950927734,
+ "step": 909
+ },
+ {
+ "epoch": 12.643075578855395,
+ "grad_norm": 0.23776157200336456,
+ "learning_rate": 0.0006,
+ "loss": 4.235603332519531,
+ "step": 910
+ },
+ {
+ "epoch": 12.657055482743557,
+ "grad_norm": 0.20616604387760162,
+ "learning_rate": 0.0006,
+ "loss": 4.193584442138672,
+ "step": 911
+ },
+ {
+ "epoch": 12.671035386631717,
+ "grad_norm": 0.1913922131061554,
+ "learning_rate": 0.0006,
+ "loss": 4.209191799163818,
+ "step": 912
+ },
+ {
+ "epoch": 12.685015290519878,
+ "grad_norm": 0.19427193701267242,
+ "learning_rate": 0.0006,
+ "loss": 4.219709396362305,
+ "step": 913
+ },
+ {
+ "epoch": 12.698995194408038,
+ "grad_norm": 0.20976558327674866,
+ "learning_rate": 0.0006,
+ "loss": 4.210859298706055,
+ "step": 914
+ },
+ {
+ "epoch": 12.7129750982962,
+ "grad_norm": 0.21571609377861023,
+ "learning_rate": 0.0006,
+ "loss": 4.189394950866699,
+ "step": 915
+ },
+ {
+ "epoch": 12.72695500218436,
+ "grad_norm": 0.2152620255947113,
+ "learning_rate": 0.0006,
+ "loss": 4.223589897155762,
+ "step": 916
+ },
+ {
+ "epoch": 12.740934906072521,
+ "grad_norm": 0.21867749094963074,
+ "learning_rate": 0.0006,
+ "loss": 4.198590278625488,
+ "step": 917
+ },
+ {
+ "epoch": 12.754914809960681,
+ "grad_norm": 0.22300855815410614,
+ "learning_rate": 0.0006,
+ "loss": 4.188891410827637,
+ "step": 918
+ },
+ {
+ "epoch": 12.768894713848843,
+ "grad_norm": 0.22197802364826202,
+ "learning_rate": 0.0006,
+ "loss": 4.190221309661865,
+ "step": 919
+ },
+ {
+ "epoch": 12.782874617737003,
+ "grad_norm": 0.20003341138362885,
+ "learning_rate": 0.0006,
+ "loss": 4.215453147888184,
+ "step": 920
+ },
+ {
+ "epoch": 12.796854521625164,
+ "grad_norm": 0.19887958467006683,
+ "learning_rate": 0.0006,
+ "loss": 4.18174934387207,
+ "step": 921
+ },
+ {
+ "epoch": 12.810834425513324,
+ "grad_norm": 0.20945803821086884,
+ "learning_rate": 0.0006,
+ "loss": 4.234947204589844,
+ "step": 922
+ },
+ {
+ "epoch": 12.824814329401486,
+ "grad_norm": 0.2253490388393402,
+ "learning_rate": 0.0006,
+ "loss": 4.2177228927612305,
+ "step": 923
+ },
+ {
+ "epoch": 12.838794233289645,
+ "grad_norm": 0.247610405087471,
+ "learning_rate": 0.0006,
+ "loss": 4.2013139724731445,
+ "step": 924
+ },
+ {
+ "epoch": 12.852774137177807,
+ "grad_norm": 0.2792088985443115,
+ "learning_rate": 0.0006,
+ "loss": 4.204774379730225,
+ "step": 925
+ },
+ {
+ "epoch": 12.866754041065967,
+ "grad_norm": 0.2839066982269287,
+ "learning_rate": 0.0006,
+ "loss": 4.186254978179932,
+ "step": 926
+ },
+ {
+ "epoch": 12.880733944954128,
+ "grad_norm": 0.2793181836605072,
+ "learning_rate": 0.0006,
+ "loss": 4.172411918640137,
+ "step": 927
+ },
+ {
+ "epoch": 12.89471384884229,
+ "grad_norm": 0.29506033658981323,
+ "learning_rate": 0.0006,
+ "loss": 4.202878475189209,
+ "step": 928
+ },
+ {
+ "epoch": 12.90869375273045,
+ "grad_norm": 0.2799845039844513,
+ "learning_rate": 0.0006,
+ "loss": 4.1563310623168945,
+ "step": 929
+ },
+ {
+ "epoch": 12.922673656618612,
+ "grad_norm": 0.23972125351428986,
+ "learning_rate": 0.0006,
+ "loss": 4.224601745605469,
+ "step": 930
+ },
+ {
+ "epoch": 12.936653560506771,
+ "grad_norm": 0.21558353304862976,
+ "learning_rate": 0.0006,
+ "loss": 4.167957305908203,
+ "step": 931
+ },
+ {
+ "epoch": 12.950633464394933,
+ "grad_norm": 0.21800188720226288,
+ "learning_rate": 0.0006,
+ "loss": 4.1746039390563965,
+ "step": 932
+ },
+ {
+ "epoch": 12.964613368283093,
+ "grad_norm": 0.2086547315120697,
+ "learning_rate": 0.0006,
+ "loss": 4.188137054443359,
+ "step": 933
+ },
+ {
+ "epoch": 12.978593272171254,
+ "grad_norm": 0.2174186110496521,
+ "learning_rate": 0.0006,
+ "loss": 4.184014320373535,
+ "step": 934
+ },
+ {
+ "epoch": 12.992573176059414,
+ "grad_norm": 0.22755110263824463,
+ "learning_rate": 0.0006,
+ "loss": 4.180912017822266,
+ "step": 935
+ },
+ {
+ "epoch": 13.0,
+ "grad_norm": 0.2735324203968048,
+ "learning_rate": 0.0006,
+ "loss": 4.201578617095947,
+ "step": 936
+ },
+ {
+ "epoch": 13.0,
+ "eval_loss": 4.396903038024902,
+ "eval_runtime": 44.5664,
+ "eval_samples_per_second": 54.795,
+ "eval_steps_per_second": 3.433,
+ "step": 936
+ },
+ {
+ "epoch": 13.013979903888162,
+ "grad_norm": 0.27577832341194153,
+ "learning_rate": 0.0006,
+ "loss": 4.149985313415527,
+ "step": 937
+ },
+ {
+ "epoch": 13.027959807776321,
+ "grad_norm": 0.25817009806632996,
+ "learning_rate": 0.0006,
+ "loss": 4.1526103019714355,
+ "step": 938
+ },
+ {
+ "epoch": 13.041939711664483,
+ "grad_norm": 0.24564379453659058,
+ "learning_rate": 0.0006,
+ "loss": 4.1661152839660645,
+ "step": 939
+ },
+ {
+ "epoch": 13.055919615552643,
+ "grad_norm": 0.2465466856956482,
+ "learning_rate": 0.0006,
+ "loss": 4.152953624725342,
+ "step": 940
+ },
+ {
+ "epoch": 13.069899519440805,
+ "grad_norm": 0.22702018916606903,
+ "learning_rate": 0.0006,
+ "loss": 4.145125389099121,
+ "step": 941
+ },
+ {
+ "epoch": 13.083879423328964,
+ "grad_norm": 0.24350613355636597,
+ "learning_rate": 0.0006,
+ "loss": 4.163095474243164,
+ "step": 942
+ },
+ {
+ "epoch": 13.097859327217126,
+ "grad_norm": 0.2504431903362274,
+ "learning_rate": 0.0006,
+ "loss": 4.136016845703125,
+ "step": 943
+ },
+ {
+ "epoch": 13.111839231105286,
+ "grad_norm": 0.24968865513801575,
+ "learning_rate": 0.0006,
+ "loss": 4.163487911224365,
+ "step": 944
+ },
+ {
+ "epoch": 13.125819134993447,
+ "grad_norm": 0.27164196968078613,
+ "learning_rate": 0.0006,
+ "loss": 4.1194353103637695,
+ "step": 945
+ },
+ {
+ "epoch": 13.139799038881607,
+ "grad_norm": 0.28127020597457886,
+ "learning_rate": 0.0006,
+ "loss": 4.184807300567627,
+ "step": 946
+ },
+ {
+ "epoch": 13.153778942769769,
+ "grad_norm": 0.24574966728687286,
+ "learning_rate": 0.0006,
+ "loss": 4.154998779296875,
+ "step": 947
+ },
+ {
+ "epoch": 13.167758846657929,
+ "grad_norm": 0.22310060262680054,
+ "learning_rate": 0.0006,
+ "loss": 4.182928085327148,
+ "step": 948
+ },
+ {
+ "epoch": 13.18173875054609,
+ "grad_norm": 0.2539508640766144,
+ "learning_rate": 0.0006,
+ "loss": 4.176900386810303,
+ "step": 949
+ },
+ {
+ "epoch": 13.19571865443425,
+ "grad_norm": 0.30925488471984863,
+ "learning_rate": 0.0006,
+ "loss": 4.1760711669921875,
+ "step": 950
+ },
+ {
+ "epoch": 13.209698558322412,
+ "grad_norm": 0.3842967450618744,
+ "learning_rate": 0.0006,
+ "loss": 4.1830949783325195,
+ "step": 951
+ },
+ {
+ "epoch": 13.223678462210572,
+ "grad_norm": 0.35950011014938354,
+ "learning_rate": 0.0006,
+ "loss": 4.131983757019043,
+ "step": 952
+ },
+ {
+ "epoch": 13.237658366098733,
+ "grad_norm": 0.29913705587387085,
+ "learning_rate": 0.0006,
+ "loss": 4.166984558105469,
+ "step": 953
+ },
+ {
+ "epoch": 13.251638269986893,
+ "grad_norm": 0.32008400559425354,
+ "learning_rate": 0.0006,
+ "loss": 4.156482696533203,
+ "step": 954
+ },
+ {
+ "epoch": 13.265618173875055,
+ "grad_norm": 0.3186642825603485,
+ "learning_rate": 0.0006,
+ "loss": 4.1661057472229,
+ "step": 955
+ },
+ {
+ "epoch": 13.279598077763215,
+ "grad_norm": 0.3194582462310791,
+ "learning_rate": 0.0006,
+ "loss": 4.169328689575195,
+ "step": 956
+ },
+ {
+ "epoch": 13.293577981651376,
+ "grad_norm": 0.3133867084980011,
+ "learning_rate": 0.0006,
+ "loss": 4.165459632873535,
+ "step": 957
+ },
+ {
+ "epoch": 13.307557885539538,
+ "grad_norm": 0.3232237696647644,
+ "learning_rate": 0.0006,
+ "loss": 4.2107439041137695,
+ "step": 958
+ },
+ {
+ "epoch": 13.321537789427698,
+ "grad_norm": 0.3133196234703064,
+ "learning_rate": 0.0006,
+ "loss": 4.184182167053223,
+ "step": 959
+ },
+ {
+ "epoch": 13.33551769331586,
+ "grad_norm": 0.296129435300827,
+ "learning_rate": 0.0006,
+ "loss": 4.168312072753906,
+ "step": 960
+ },
+ {
+ "epoch": 13.349497597204019,
+ "grad_norm": 0.2685348391532898,
+ "learning_rate": 0.0006,
+ "loss": 4.159984588623047,
+ "step": 961
+ },
+ {
+ "epoch": 13.36347750109218,
+ "grad_norm": 0.2644975781440735,
+ "learning_rate": 0.0006,
+ "loss": 4.164909362792969,
+ "step": 962
+ },
+ {
+ "epoch": 13.37745740498034,
+ "grad_norm": 0.2712913155555725,
+ "learning_rate": 0.0006,
+ "loss": 4.158056259155273,
+ "step": 963
+ },
+ {
+ "epoch": 13.391437308868502,
+ "grad_norm": 0.2687259316444397,
+ "learning_rate": 0.0006,
+ "loss": 4.182924270629883,
+ "step": 964
+ },
+ {
+ "epoch": 13.405417212756662,
+ "grad_norm": 0.25640392303466797,
+ "learning_rate": 0.0006,
+ "loss": 4.153351783752441,
+ "step": 965
+ },
+ {
+ "epoch": 13.419397116644824,
+ "grad_norm": 0.2646305561065674,
+ "learning_rate": 0.0006,
+ "loss": 4.18464469909668,
+ "step": 966
+ },
+ {
+ "epoch": 13.433377020532983,
+ "grad_norm": 0.24206851422786713,
+ "learning_rate": 0.0006,
+ "loss": 4.127564430236816,
+ "step": 967
+ },
+ {
+ "epoch": 13.447356924421145,
+ "grad_norm": 0.23800471425056458,
+ "learning_rate": 0.0006,
+ "loss": 4.163488388061523,
+ "step": 968
+ },
+ {
+ "epoch": 13.461336828309305,
+ "grad_norm": 0.22957314550876617,
+ "learning_rate": 0.0006,
+ "loss": 4.178133964538574,
+ "step": 969
+ },
+ {
+ "epoch": 13.475316732197467,
+ "grad_norm": 0.22867488861083984,
+ "learning_rate": 0.0006,
+ "loss": 4.159056186676025,
+ "step": 970
+ },
+ {
+ "epoch": 13.489296636085626,
+ "grad_norm": 0.21737419068813324,
+ "learning_rate": 0.0006,
+ "loss": 4.138628005981445,
+ "step": 971
+ },
+ {
+ "epoch": 13.503276539973788,
+ "grad_norm": 0.2319175899028778,
+ "learning_rate": 0.0006,
+ "loss": 4.14644718170166,
+ "step": 972
+ },
+ {
+ "epoch": 13.517256443861948,
+ "grad_norm": 0.2572193443775177,
+ "learning_rate": 0.0006,
+ "loss": 4.175213813781738,
+ "step": 973
+ },
+ {
+ "epoch": 13.53123634775011,
+ "grad_norm": 0.23483099043369293,
+ "learning_rate": 0.0006,
+ "loss": 4.133171558380127,
+ "step": 974
+ },
+ {
+ "epoch": 13.54521625163827,
+ "grad_norm": 0.2071552872657776,
+ "learning_rate": 0.0006,
+ "loss": 4.13730525970459,
+ "step": 975
+ },
+ {
+ "epoch": 13.55919615552643,
+ "grad_norm": 0.23074553906917572,
+ "learning_rate": 0.0006,
+ "loss": 4.175051689147949,
+ "step": 976
+ },
+ {
+ "epoch": 13.57317605941459,
+ "grad_norm": 0.2480078786611557,
+ "learning_rate": 0.0006,
+ "loss": 4.167630672454834,
+ "step": 977
+ },
+ {
+ "epoch": 13.587155963302752,
+ "grad_norm": 0.23444348573684692,
+ "learning_rate": 0.0006,
+ "loss": 4.141780853271484,
+ "step": 978
+ },
+ {
+ "epoch": 13.601135867190912,
+ "grad_norm": 0.2227829396724701,
+ "learning_rate": 0.0006,
+ "loss": 4.157566547393799,
+ "step": 979
+ },
+ {
+ "epoch": 13.615115771079074,
+ "grad_norm": 0.21478354930877686,
+ "learning_rate": 0.0006,
+ "loss": 4.131053447723389,
+ "step": 980
+ },
+ {
+ "epoch": 13.629095674967235,
+ "grad_norm": 0.1978664994239807,
+ "learning_rate": 0.0006,
+ "loss": 4.123660564422607,
+ "step": 981
+ },
+ {
+ "epoch": 13.643075578855395,
+ "grad_norm": 0.19980201125144958,
+ "learning_rate": 0.0006,
+ "loss": 4.174160480499268,
+ "step": 982
+ },
+ {
+ "epoch": 13.657055482743557,
+ "grad_norm": 0.19815555214881897,
+ "learning_rate": 0.0006,
+ "loss": 4.181703090667725,
+ "step": 983
+ },
+ {
+ "epoch": 13.671035386631717,
+ "grad_norm": 0.19524012506008148,
+ "learning_rate": 0.0006,
+ "loss": 4.163766860961914,
+ "step": 984
+ },
+ {
+ "epoch": 13.685015290519878,
+ "grad_norm": 0.2286096215248108,
+ "learning_rate": 0.0006,
+ "loss": 4.172213554382324,
+ "step": 985
+ },
+ {
+ "epoch": 13.698995194408038,
+ "grad_norm": 0.2210782766342163,
+ "learning_rate": 0.0006,
+ "loss": 4.187033653259277,
+ "step": 986
+ },
+ {
+ "epoch": 13.7129750982962,
+ "grad_norm": 0.21874216198921204,
+ "learning_rate": 0.0006,
+ "loss": 4.125125885009766,
+ "step": 987
+ },
+ {
+ "epoch": 13.72695500218436,
+ "grad_norm": 0.22848057746887207,
+ "learning_rate": 0.0006,
+ "loss": 4.153496742248535,
+ "step": 988
+ },
+ {
+ "epoch": 13.740934906072521,
+ "grad_norm": 0.2250450700521469,
+ "learning_rate": 0.0006,
+ "loss": 4.149165630340576,
+ "step": 989
+ },
+ {
+ "epoch": 13.754914809960681,
+ "grad_norm": 0.21443772315979004,
+ "learning_rate": 0.0006,
+ "loss": 4.1528825759887695,
+ "step": 990
+ },
+ {
+ "epoch": 13.768894713848843,
+ "grad_norm": 0.21927927434444427,
+ "learning_rate": 0.0006,
+ "loss": 4.146831512451172,
+ "step": 991
+ },
+ {
+ "epoch": 13.782874617737003,
+ "grad_norm": 0.2413124144077301,
+ "learning_rate": 0.0006,
+ "loss": 4.136909008026123,
+ "step": 992
+ },
+ {
+ "epoch": 13.796854521625164,
+ "grad_norm": 0.2603479325771332,
+ "learning_rate": 0.0006,
+ "loss": 4.12525749206543,
+ "step": 993
+ },
+ {
+ "epoch": 13.810834425513324,
+ "grad_norm": 0.26246970891952515,
+ "learning_rate": 0.0006,
+ "loss": 4.114049434661865,
+ "step": 994
+ },
+ {
+ "epoch": 13.824814329401486,
+ "grad_norm": 0.27031877636909485,
+ "learning_rate": 0.0006,
+ "loss": 4.1646552085876465,
+ "step": 995
+ },
+ {
+ "epoch": 13.838794233289645,
+ "grad_norm": 0.2499857395887375,
+ "learning_rate": 0.0006,
+ "loss": 4.139284133911133,
+ "step": 996
+ },
+ {
+ "epoch": 13.852774137177807,
+ "grad_norm": 0.22026537358760834,
+ "learning_rate": 0.0006,
+ "loss": 4.142191410064697,
+ "step": 997
+ },
+ {
+ "epoch": 13.866754041065967,
+ "grad_norm": 0.23738551139831543,
+ "learning_rate": 0.0006,
+ "loss": 4.1422882080078125,
+ "step": 998
+ },
+ {
+ "epoch": 13.880733944954128,
+ "grad_norm": 0.2416357398033142,
+ "learning_rate": 0.0006,
+ "loss": 4.14063835144043,
+ "step": 999
+ },
+ {
+ "epoch": 13.89471384884229,
+ "grad_norm": 0.33822184801101685,
+ "learning_rate": 0.0006,
+ "loss": 4.12839412689209,
+ "step": 1000
+ },
+ {
+ "epoch": 13.90869375273045,
+ "grad_norm": 0.3409678339958191,
+ "learning_rate": 0.0006,
+ "loss": 4.145351886749268,
+ "step": 1001
+ },
+ {
+ "epoch": 13.922673656618612,
+ "grad_norm": 0.2467597872018814,
+ "learning_rate": 0.0006,
+ "loss": 4.155339241027832,
+ "step": 1002
+ },
+ {
+ "epoch": 13.936653560506771,
+ "grad_norm": 0.2314649075269699,
+ "learning_rate": 0.0006,
+ "loss": 4.130176067352295,
+ "step": 1003
+ },
+ {
+ "epoch": 13.950633464394933,
+ "grad_norm": 0.23701290786266327,
+ "learning_rate": 0.0006,
+ "loss": 4.19205379486084,
+ "step": 1004
+ },
+ {
+ "epoch": 13.964613368283093,
+ "grad_norm": 0.2466491460800171,
+ "learning_rate": 0.0006,
+ "loss": 4.118908882141113,
+ "step": 1005
+ },
+ {
+ "epoch": 13.978593272171254,
+ "grad_norm": 0.23746836185455322,
+ "learning_rate": 0.0006,
+ "loss": 4.16111946105957,
+ "step": 1006
+ },
+ {
+ "epoch": 13.992573176059414,
+ "grad_norm": 0.24497751891613007,
+ "learning_rate": 0.0006,
+ "loss": 4.148624420166016,
+ "step": 1007
+ },
+ {
+ "epoch": 14.0,
+ "grad_norm": 0.25735899806022644,
+ "learning_rate": 0.0006,
+ "loss": 4.12002420425415,
+ "step": 1008
+ },
+ {
+ "epoch": 14.0,
+ "eval_loss": 4.335351467132568,
+ "eval_runtime": 44.0523,
+ "eval_samples_per_second": 55.434,
+ "eval_steps_per_second": 3.473,
+ "step": 1008
+ },
+ {
+ "epoch": 14.013979903888162,
+ "grad_norm": 0.24570082128047943,
+ "learning_rate": 0.0006,
+ "loss": 4.1036176681518555,
+ "step": 1009
+ },
+ {
+ "epoch": 14.027959807776321,
+ "grad_norm": 0.2525855302810669,
+ "learning_rate": 0.0006,
+ "loss": 4.142077445983887,
+ "step": 1010
+ },
+ {
+ "epoch": 14.041939711664483,
+ "grad_norm": 0.2701111435890198,
+ "learning_rate": 0.0006,
+ "loss": 4.096988677978516,
+ "step": 1011
+ },
+ {
+ "epoch": 14.055919615552643,
+ "grad_norm": 0.28173309564590454,
+ "learning_rate": 0.0006,
+ "loss": 4.148448944091797,
+ "step": 1012
+ },
+ {
+ "epoch": 14.069899519440805,
+ "grad_norm": 0.2651294469833374,
+ "learning_rate": 0.0006,
+ "loss": 4.121731281280518,
+ "step": 1013
+ },
+ {
+ "epoch": 14.083879423328964,
+ "grad_norm": 0.21160121262073517,
+ "learning_rate": 0.0006,
+ "loss": 4.108980178833008,
+ "step": 1014
+ },
+ {
+ "epoch": 14.097859327217126,
+ "grad_norm": 0.24786953628063202,
+ "learning_rate": 0.0006,
+ "loss": 4.133942604064941,
+ "step": 1015
+ },
+ {
+ "epoch": 14.111839231105286,
+ "grad_norm": 0.2722747027873993,
+ "learning_rate": 0.0006,
+ "loss": 4.115242958068848,
+ "step": 1016
+ },
+ {
+ "epoch": 14.125819134993447,
+ "grad_norm": 0.273360013961792,
+ "learning_rate": 0.0006,
+ "loss": 4.059296607971191,
+ "step": 1017
+ },
+ {
+ "epoch": 14.139799038881607,
+ "grad_norm": 0.2541784942150116,
+ "learning_rate": 0.0006,
+ "loss": 4.118365287780762,
+ "step": 1018
+ },
+ {
+ "epoch": 14.153778942769769,
+ "grad_norm": 0.23806381225585938,
+ "learning_rate": 0.0006,
+ "loss": 4.102812767028809,
+ "step": 1019
+ },
+ {
+ "epoch": 14.167758846657929,
+ "grad_norm": 0.2541005313396454,
+ "learning_rate": 0.0006,
+ "loss": 4.093264579772949,
+ "step": 1020
+ },
+ {
+ "epoch": 14.18173875054609,
+ "grad_norm": 0.2619539499282837,
+ "learning_rate": 0.0006,
+ "loss": 4.114917278289795,
+ "step": 1021
+ },
+ {
+ "epoch": 14.19571865443425,
+ "grad_norm": 0.2466963529586792,
+ "learning_rate": 0.0006,
+ "loss": 4.098258972167969,
+ "step": 1022
+ },
+ {
+ "epoch": 14.209698558322412,
+ "grad_norm": 0.24341611564159393,
+ "learning_rate": 0.0006,
+ "loss": 4.109346389770508,
+ "step": 1023
+ },
+ {
+ "epoch": 14.223678462210572,
+ "grad_norm": 0.23977765440940857,
+ "learning_rate": 0.0006,
+ "loss": 4.106716156005859,
+ "step": 1024
+ },
+ {
+ "epoch": 14.237658366098733,
+ "grad_norm": 0.253528356552124,
+ "learning_rate": 0.0006,
+ "loss": 4.102226257324219,
+ "step": 1025
+ },
+ {
+ "epoch": 14.251638269986893,
+ "grad_norm": 0.26954543590545654,
+ "learning_rate": 0.0006,
+ "loss": 4.107413291931152,
+ "step": 1026
+ },
+ {
+ "epoch": 14.265618173875055,
+ "grad_norm": 0.2610514760017395,
+ "learning_rate": 0.0006,
+ "loss": 4.110824108123779,
+ "step": 1027
+ },
+ {
+ "epoch": 14.279598077763215,
+ "grad_norm": 0.2579168677330017,
+ "learning_rate": 0.0006,
+ "loss": 4.082438945770264,
+ "step": 1028
+ },
+ {
+ "epoch": 14.293577981651376,
+ "grad_norm": 0.26916536688804626,
+ "learning_rate": 0.0006,
+ "loss": 4.075734615325928,
+ "step": 1029
+ },
+ {
+ "epoch": 14.307557885539538,
+ "grad_norm": 0.2998618185520172,
+ "learning_rate": 0.0006,
+ "loss": 4.088419437408447,
+ "step": 1030
+ },
+ {
+ "epoch": 14.321537789427698,
+ "grad_norm": 0.3162737190723419,
+ "learning_rate": 0.0006,
+ "loss": 4.125833034515381,
+ "step": 1031
+ },
+ {
+ "epoch": 14.33551769331586,
+ "grad_norm": 0.318601131439209,
+ "learning_rate": 0.0006,
+ "loss": 4.077424049377441,
+ "step": 1032
+ },
+ {
+ "epoch": 14.349497597204019,
+ "grad_norm": 0.32113415002822876,
+ "learning_rate": 0.0006,
+ "loss": 4.113360404968262,
+ "step": 1033
+ },
+ {
+ "epoch": 14.36347750109218,
+ "grad_norm": 0.3150886297225952,
+ "learning_rate": 0.0006,
+ "loss": 4.100013732910156,
+ "step": 1034
+ },
+ {
+ "epoch": 14.37745740498034,
+ "grad_norm": 0.29279956221580505,
+ "learning_rate": 0.0006,
+ "loss": 4.136394500732422,
+ "step": 1035
+ },
+ {
+ "epoch": 14.391437308868502,
+ "grad_norm": 0.28532543778419495,
+ "learning_rate": 0.0006,
+ "loss": 4.138948440551758,
+ "step": 1036
+ },
+ {
+ "epoch": 14.405417212756662,
+ "grad_norm": 0.2825978398323059,
+ "learning_rate": 0.0006,
+ "loss": 4.112217903137207,
+ "step": 1037
+ },
+ {
+ "epoch": 14.419397116644824,
+ "grad_norm": 0.2891198694705963,
+ "learning_rate": 0.0006,
+ "loss": 4.102682113647461,
+ "step": 1038
+ },
+ {
+ "epoch": 14.433377020532983,
+ "grad_norm": 0.2917391061782837,
+ "learning_rate": 0.0006,
+ "loss": 4.120752811431885,
+ "step": 1039
+ },
+ {
+ "epoch": 14.447356924421145,
+ "grad_norm": 0.2589806914329529,
+ "learning_rate": 0.0006,
+ "loss": 4.130519390106201,
+ "step": 1040
+ },
+ {
+ "epoch": 14.461336828309305,
+ "grad_norm": 0.2674788534641266,
+ "learning_rate": 0.0006,
+ "loss": 4.130382537841797,
+ "step": 1041
+ },
+ {
+ "epoch": 14.475316732197467,
+ "grad_norm": 0.2820362150669098,
+ "learning_rate": 0.0006,
+ "loss": 4.13947868347168,
+ "step": 1042
+ },
+ {
+ "epoch": 14.489296636085626,
+ "grad_norm": 0.2650109529495239,
+ "learning_rate": 0.0006,
+ "loss": 4.130346775054932,
+ "step": 1043
+ },
+ {
+ "epoch": 14.503276539973788,
+ "grad_norm": 0.29137638211250305,
+ "learning_rate": 0.0006,
+ "loss": 4.055751800537109,
+ "step": 1044
+ },
+ {
+ "epoch": 14.517256443861948,
+ "grad_norm": 0.3232433497905731,
+ "learning_rate": 0.0006,
+ "loss": 4.114810943603516,
+ "step": 1045
+ },
+ {
+ "epoch": 14.53123634775011,
+ "grad_norm": 0.2724473476409912,
+ "learning_rate": 0.0006,
+ "loss": 4.088351249694824,
+ "step": 1046
+ },
+ {
+ "epoch": 14.54521625163827,
+ "grad_norm": 0.23994430899620056,
+ "learning_rate": 0.0006,
+ "loss": 4.110936164855957,
+ "step": 1047
+ },
+ {
+ "epoch": 14.55919615552643,
+ "grad_norm": 0.2422720044851303,
+ "learning_rate": 0.0006,
+ "loss": 4.132844924926758,
+ "step": 1048
+ },
+ {
+ "epoch": 14.57317605941459,
+ "grad_norm": 0.21148815751075745,
+ "learning_rate": 0.0006,
+ "loss": 4.102499961853027,
+ "step": 1049
+ },
+ {
+ "epoch": 14.587155963302752,
+ "grad_norm": 0.22221639752388,
+ "learning_rate": 0.0006,
+ "loss": 4.126241683959961,
+ "step": 1050
+ },
+ {
+ "epoch": 14.601135867190912,
+ "grad_norm": 0.2538735866546631,
+ "learning_rate": 0.0006,
+ "loss": 4.116817951202393,
+ "step": 1051
+ },
+ {
+ "epoch": 14.615115771079074,
+ "grad_norm": 0.2555900514125824,
+ "learning_rate": 0.0006,
+ "loss": 4.106309413909912,
+ "step": 1052
+ },
+ {
+ "epoch": 14.629095674967235,
+ "grad_norm": 0.24753783643245697,
+ "learning_rate": 0.0006,
+ "loss": 4.1015119552612305,
+ "step": 1053
+ },
+ {
+ "epoch": 14.643075578855395,
+ "grad_norm": 0.238885298371315,
+ "learning_rate": 0.0006,
+ "loss": 4.120419502258301,
+ "step": 1054
+ },
+ {
+ "epoch": 14.657055482743557,
+ "grad_norm": 0.22693610191345215,
+ "learning_rate": 0.0006,
+ "loss": 4.084968566894531,
+ "step": 1055
+ },
+ {
+ "epoch": 14.671035386631717,
+ "grad_norm": 0.2100025862455368,
+ "learning_rate": 0.0006,
+ "loss": 4.108001708984375,
+ "step": 1056
+ },
+ {
+ "epoch": 14.685015290519878,
+ "grad_norm": 0.20437054336071014,
+ "learning_rate": 0.0006,
+ "loss": 4.151417255401611,
+ "step": 1057
+ },
+ {
+ "epoch": 14.698995194408038,
+ "grad_norm": 0.1926720291376114,
+ "learning_rate": 0.0006,
+ "loss": 4.091334342956543,
+ "step": 1058
+ },
+ {
+ "epoch": 14.7129750982962,
+ "grad_norm": 0.2120140641927719,
+ "learning_rate": 0.0006,
+ "loss": 4.111706256866455,
+ "step": 1059
+ },
+ {
+ "epoch": 14.72695500218436,
+ "grad_norm": 0.22877076268196106,
+ "learning_rate": 0.0006,
+ "loss": 4.123166084289551,
+ "step": 1060
+ },
+ {
+ "epoch": 14.740934906072521,
+ "grad_norm": 0.22149473428726196,
+ "learning_rate": 0.0006,
+ "loss": 4.099740028381348,
+ "step": 1061
+ },
+ {
+ "epoch": 14.754914809960681,
+ "grad_norm": 0.2351604402065277,
+ "learning_rate": 0.0006,
+ "loss": 4.066174507141113,
+ "step": 1062
+ },
+ {
+ "epoch": 14.768894713848843,
+ "grad_norm": 0.22895802557468414,
+ "learning_rate": 0.0006,
+ "loss": 4.101897239685059,
+ "step": 1063
+ },
+ {
+ "epoch": 14.782874617737003,
+ "grad_norm": 0.22050750255584717,
+ "learning_rate": 0.0006,
+ "loss": 4.122953414916992,
+ "step": 1064
+ },
+ {
+ "epoch": 14.796854521625164,
+ "grad_norm": 0.23255324363708496,
+ "learning_rate": 0.0006,
+ "loss": 4.11297607421875,
+ "step": 1065
+ },
+ {
+ "epoch": 14.810834425513324,
+ "grad_norm": 0.24522703886032104,
+ "learning_rate": 0.0006,
+ "loss": 4.131030082702637,
+ "step": 1066
+ },
+ {
+ "epoch": 14.824814329401486,
+ "grad_norm": 0.2492702752351761,
+ "learning_rate": 0.0006,
+ "loss": 4.076324939727783,
+ "step": 1067
+ },
+ {
+ "epoch": 14.838794233289645,
+ "grad_norm": 0.24410948157310486,
+ "learning_rate": 0.0006,
+ "loss": 4.109020709991455,
+ "step": 1068
+ },
+ {
+ "epoch": 14.852774137177807,
+ "grad_norm": 0.2463168203830719,
+ "learning_rate": 0.0006,
+ "loss": 4.135679244995117,
+ "step": 1069
+ },
+ {
+ "epoch": 14.866754041065967,
+ "grad_norm": 0.2563146650791168,
+ "learning_rate": 0.0006,
+ "loss": 4.0958027839660645,
+ "step": 1070
+ },
+ {
+ "epoch": 14.880733944954128,
+ "grad_norm": 0.261167049407959,
+ "learning_rate": 0.0006,
+ "loss": 4.114803314208984,
+ "step": 1071
+ },
+ {
+ "epoch": 14.89471384884229,
+ "grad_norm": 0.2593795955181122,
+ "learning_rate": 0.0006,
+ "loss": 4.1210618019104,
+ "step": 1072
+ },
+ {
+ "epoch": 14.90869375273045,
+ "grad_norm": 0.27184173464775085,
+ "learning_rate": 0.0006,
+ "loss": 4.095145225524902,
+ "step": 1073
+ },
+ {
+ "epoch": 14.922673656618612,
+ "grad_norm": 0.25289732217788696,
+ "learning_rate": 0.0006,
+ "loss": 4.107388973236084,
+ "step": 1074
+ },
+ {
+ "epoch": 14.936653560506771,
+ "grad_norm": 0.2176840454339981,
+ "learning_rate": 0.0006,
+ "loss": 4.105966567993164,
+ "step": 1075
+ },
+ {
+ "epoch": 14.950633464394933,
+ "grad_norm": 0.20930173993110657,
+ "learning_rate": 0.0006,
+ "loss": 4.126853942871094,
+ "step": 1076
+ },
+ {
+ "epoch": 14.964613368283093,
+ "grad_norm": 0.20850051939487457,
+ "learning_rate": 0.0006,
+ "loss": 4.074934959411621,
+ "step": 1077
+ },
+ {
+ "epoch": 14.978593272171254,
+ "grad_norm": 0.21987544000148773,
+ "learning_rate": 0.0006,
+ "loss": 4.123321533203125,
+ "step": 1078
+ },
+ {
+ "epoch": 14.992573176059414,
+ "grad_norm": 0.23821689188480377,
+ "learning_rate": 0.0006,
+ "loss": 4.082647323608398,
+ "step": 1079
+ },
+ {
+ "epoch": 15.0,
+ "grad_norm": 0.2590881288051605,
+ "learning_rate": 0.0006,
+ "loss": 4.113482475280762,
+ "step": 1080
+ },
+ {
+ "epoch": 15.0,
+ "eval_loss": 4.286936283111572,
+ "eval_runtime": 44.2665,
+ "eval_samples_per_second": 55.166,
+ "eval_steps_per_second": 3.456,
+ "step": 1080
+ },
+ {
+ "epoch": 15.013979903888162,
+ "grad_norm": 0.27885961532592773,
+ "learning_rate": 0.0006,
+ "loss": 4.0825958251953125,
+ "step": 1081
+ },
+ {
+ "epoch": 15.027959807776321,
+ "grad_norm": 0.2751246690750122,
+ "learning_rate": 0.0006,
+ "loss": 4.049782752990723,
+ "step": 1082
+ },
+ {
+ "epoch": 15.041939711664483,
+ "grad_norm": 0.25238561630249023,
+ "learning_rate": 0.0006,
+ "loss": 4.067366600036621,
+ "step": 1083
+ },
+ {
+ "epoch": 15.055919615552643,
+ "grad_norm": 0.27481040358543396,
+ "learning_rate": 0.0006,
+ "loss": 4.089946746826172,
+ "step": 1084
+ },
+ {
+ "epoch": 15.069899519440805,
+ "grad_norm": 0.2666703164577484,
+ "learning_rate": 0.0006,
+ "loss": 4.071957588195801,
+ "step": 1085
+ },
+ {
+ "epoch": 15.083879423328964,
+ "grad_norm": 0.2532065212726593,
+ "learning_rate": 0.0006,
+ "loss": 4.091561794281006,
+ "step": 1086
+ },
+ {
+ "epoch": 15.097859327217126,
+ "grad_norm": 0.23562374711036682,
+ "learning_rate": 0.0006,
+ "loss": 4.074953079223633,
+ "step": 1087
+ },
+ {
+ "epoch": 15.111839231105286,
+ "grad_norm": 0.2498065084218979,
+ "learning_rate": 0.0006,
+ "loss": 4.056004047393799,
+ "step": 1088
+ },
+ {
+ "epoch": 15.125819134993447,
+ "grad_norm": 0.257046639919281,
+ "learning_rate": 0.0006,
+ "loss": 4.044149875640869,
+ "step": 1089
+ },
+ {
+ "epoch": 15.139799038881607,
+ "grad_norm": 0.2417808622121811,
+ "learning_rate": 0.0006,
+ "loss": 4.071811676025391,
+ "step": 1090
+ },
+ {
+ "epoch": 15.153778942769769,
+ "grad_norm": 0.24742013216018677,
+ "learning_rate": 0.0006,
+ "loss": 4.081482887268066,
+ "step": 1091
+ },
+ {
+ "epoch": 15.167758846657929,
+ "grad_norm": 0.2610231637954712,
+ "learning_rate": 0.0006,
+ "loss": 4.06953763961792,
+ "step": 1092
+ },
+ {
+ "epoch": 15.18173875054609,
+ "grad_norm": 0.24688200652599335,
+ "learning_rate": 0.0006,
+ "loss": 4.079700469970703,
+ "step": 1093
+ },
+ {
+ "epoch": 15.19571865443425,
+ "grad_norm": 0.2650167942047119,
+ "learning_rate": 0.0006,
+ "loss": 4.082088947296143,
+ "step": 1094
+ },
+ {
+ "epoch": 15.209698558322412,
+ "grad_norm": 0.25913330912590027,
+ "learning_rate": 0.0006,
+ "loss": 4.081713676452637,
+ "step": 1095
+ },
+ {
+ "epoch": 15.223678462210572,
+ "grad_norm": 0.2547631561756134,
+ "learning_rate": 0.0006,
+ "loss": 4.073573112487793,
+ "step": 1096
+ },
+ {
+ "epoch": 15.237658366098733,
+ "grad_norm": 0.2732609510421753,
+ "learning_rate": 0.0006,
+ "loss": 4.10186767578125,
+ "step": 1097
+ },
+ {
+ "epoch": 15.251638269986893,
+ "grad_norm": 0.2990017533302307,
+ "learning_rate": 0.0006,
+ "loss": 4.085466384887695,
+ "step": 1098
+ },
+ {
+ "epoch": 15.265618173875055,
+ "grad_norm": 0.30252209305763245,
+ "learning_rate": 0.0006,
+ "loss": 4.077337265014648,
+ "step": 1099
+ },
+ {
+ "epoch": 15.279598077763215,
+ "grad_norm": 0.30046045780181885,
+ "learning_rate": 0.0006,
+ "loss": 4.0895891189575195,
+ "step": 1100
+ },
+ {
+ "epoch": 15.293577981651376,
+ "grad_norm": 0.2779843211174011,
+ "learning_rate": 0.0006,
+ "loss": 4.060354709625244,
+ "step": 1101
+ },
+ {
+ "epoch": 15.307557885539538,
+ "grad_norm": 0.26914986968040466,
+ "learning_rate": 0.0006,
+ "loss": 4.07314395904541,
+ "step": 1102
+ },
+ {
+ "epoch": 15.321537789427698,
+ "grad_norm": 0.24605873227119446,
+ "learning_rate": 0.0006,
+ "loss": 4.051377296447754,
+ "step": 1103
+ },
+ {
+ "epoch": 15.33551769331586,
+ "grad_norm": 0.25634095072746277,
+ "learning_rate": 0.0006,
+ "loss": 4.082427024841309,
+ "step": 1104
+ },
+ {
+ "epoch": 15.349497597204019,
+ "grad_norm": 0.2888158857822418,
+ "learning_rate": 0.0006,
+ "loss": 4.074253082275391,
+ "step": 1105
+ },
+ {
+ "epoch": 15.36347750109218,
+ "grad_norm": 0.2758261561393738,
+ "learning_rate": 0.0006,
+ "loss": 4.08344841003418,
+ "step": 1106
+ },
+ {
+ "epoch": 15.37745740498034,
+ "grad_norm": 0.26937270164489746,
+ "learning_rate": 0.0006,
+ "loss": 4.063424587249756,
+ "step": 1107
+ },
+ {
+ "epoch": 15.391437308868502,
+ "grad_norm": 0.2739955484867096,
+ "learning_rate": 0.0006,
+ "loss": 4.08005952835083,
+ "step": 1108
+ },
+ {
+ "epoch": 15.405417212756662,
+ "grad_norm": 0.2635386288166046,
+ "learning_rate": 0.0006,
+ "loss": 4.087360382080078,
+ "step": 1109
+ },
+ {
+ "epoch": 15.419397116644824,
+ "grad_norm": 0.2619768977165222,
+ "learning_rate": 0.0006,
+ "loss": 4.072653770446777,
+ "step": 1110
+ },
+ {
+ "epoch": 15.433377020532983,
+ "grad_norm": 0.24154804646968842,
+ "learning_rate": 0.0006,
+ "loss": 4.084464073181152,
+ "step": 1111
+ },
+ {
+ "epoch": 15.447356924421145,
+ "grad_norm": 0.24236027896404266,
+ "learning_rate": 0.0006,
+ "loss": 4.078777313232422,
+ "step": 1112
+ },
+ {
+ "epoch": 15.461336828309305,
+ "grad_norm": 0.24653038382530212,
+ "learning_rate": 0.0006,
+ "loss": 4.075024604797363,
+ "step": 1113
+ },
+ {
+ "epoch": 15.475316732197467,
+ "grad_norm": 0.27106523513793945,
+ "learning_rate": 0.0006,
+ "loss": 4.060937881469727,
+ "step": 1114
+ },
+ {
+ "epoch": 15.489296636085626,
+ "grad_norm": 0.25109633803367615,
+ "learning_rate": 0.0006,
+ "loss": 4.081971168518066,
+ "step": 1115
+ },
+ {
+ "epoch": 15.503276539973788,
+ "grad_norm": 0.23452287912368774,
+ "learning_rate": 0.0006,
+ "loss": 4.0762834548950195,
+ "step": 1116
+ },
+ {
+ "epoch": 15.517256443861948,
+ "grad_norm": 0.25415024161338806,
+ "learning_rate": 0.0006,
+ "loss": 4.069386959075928,
+ "step": 1117
+ },
+ {
+ "epoch": 15.53123634775011,
+ "grad_norm": 0.25448229908943176,
+ "learning_rate": 0.0006,
+ "loss": 4.075098514556885,
+ "step": 1118
+ },
+ {
+ "epoch": 15.54521625163827,
+ "grad_norm": 0.25679755210876465,
+ "learning_rate": 0.0006,
+ "loss": 4.097431182861328,
+ "step": 1119
+ },
+ {
+ "epoch": 15.55919615552643,
+ "grad_norm": 0.25973212718963623,
+ "learning_rate": 0.0006,
+ "loss": 4.058948516845703,
+ "step": 1120
+ },
+ {
+ "epoch": 15.57317605941459,
+ "grad_norm": 0.24511456489562988,
+ "learning_rate": 0.0006,
+ "loss": 4.092263698577881,
+ "step": 1121
+ },
+ {
+ "epoch": 15.587155963302752,
+ "grad_norm": 0.22949442267417908,
+ "learning_rate": 0.0006,
+ "loss": 4.0526604652404785,
+ "step": 1122
+ },
+ {
+ "epoch": 15.601135867190912,
+ "grad_norm": 0.22486285865306854,
+ "learning_rate": 0.0006,
+ "loss": 4.051939010620117,
+ "step": 1123
+ },
+ {
+ "epoch": 15.615115771079074,
+ "grad_norm": 0.22183601558208466,
+ "learning_rate": 0.0006,
+ "loss": 4.065430641174316,
+ "step": 1124
+ },
+ {
+ "epoch": 15.629095674967235,
+ "grad_norm": 0.2531328797340393,
+ "learning_rate": 0.0006,
+ "loss": 4.069165229797363,
+ "step": 1125
+ },
+ {
+ "epoch": 15.643075578855395,
+ "grad_norm": 0.24403320252895355,
+ "learning_rate": 0.0006,
+ "loss": 4.055041790008545,
+ "step": 1126
+ },
+ {
+ "epoch": 15.657055482743557,
+ "grad_norm": 0.24504756927490234,
+ "learning_rate": 0.0006,
+ "loss": 4.035850524902344,
+ "step": 1127
+ },
+ {
+ "epoch": 15.671035386631717,
+ "grad_norm": 0.23812057077884674,
+ "learning_rate": 0.0006,
+ "loss": 4.049278259277344,
+ "step": 1128
+ },
+ {
+ "epoch": 15.685015290519878,
+ "grad_norm": 0.23694153130054474,
+ "learning_rate": 0.0006,
+ "loss": 4.065816402435303,
+ "step": 1129
+ },
+ {
+ "epoch": 15.698995194408038,
+ "grad_norm": 0.23252786695957184,
+ "learning_rate": 0.0006,
+ "loss": 4.05952262878418,
+ "step": 1130
+ },
+ {
+ "epoch": 15.7129750982962,
+ "grad_norm": 0.2243805080652237,
+ "learning_rate": 0.0006,
+ "loss": 4.058291435241699,
+ "step": 1131
+ },
+ {
+ "epoch": 15.72695500218436,
+ "grad_norm": 0.2200988084077835,
+ "learning_rate": 0.0006,
+ "loss": 4.040788650512695,
+ "step": 1132
+ },
+ {
+ "epoch": 15.740934906072521,
+ "grad_norm": 0.21460631489753723,
+ "learning_rate": 0.0006,
+ "loss": 4.072552680969238,
+ "step": 1133
+ },
+ {
+ "epoch": 15.754914809960681,
+ "grad_norm": 0.2056441456079483,
+ "learning_rate": 0.0006,
+ "loss": 4.059467315673828,
+ "step": 1134
+ },
+ {
+ "epoch": 15.768894713848843,
+ "grad_norm": 0.2068045437335968,
+ "learning_rate": 0.0006,
+ "loss": 4.063803195953369,
+ "step": 1135
+ },
+ {
+ "epoch": 15.782874617737003,
+ "grad_norm": 0.21307601034641266,
+ "learning_rate": 0.0006,
+ "loss": 4.093092918395996,
+ "step": 1136
+ },
+ {
+ "epoch": 15.796854521625164,
+ "grad_norm": 0.20729634165763855,
+ "learning_rate": 0.0006,
+ "loss": 4.066030502319336,
+ "step": 1137
+ },
+ {
+ "epoch": 15.810834425513324,
+ "grad_norm": 0.2097514122724533,
+ "learning_rate": 0.0006,
+ "loss": 4.077326774597168,
+ "step": 1138
+ },
+ {
+ "epoch": 15.824814329401486,
+ "grad_norm": 0.21884000301361084,
+ "learning_rate": 0.0006,
+ "loss": 4.0595598220825195,
+ "step": 1139
+ },
+ {
+ "epoch": 15.838794233289645,
+ "grad_norm": 0.22220250964164734,
+ "learning_rate": 0.0006,
+ "loss": 4.061574459075928,
+ "step": 1140
+ },
+ {
+ "epoch": 15.852774137177807,
+ "grad_norm": 0.23189949989318848,
+ "learning_rate": 0.0006,
+ "loss": 4.0504045486450195,
+ "step": 1141
+ },
+ {
+ "epoch": 15.866754041065967,
+ "grad_norm": 0.226649671792984,
+ "learning_rate": 0.0006,
+ "loss": 4.060986518859863,
+ "step": 1142
+ },
+ {
+ "epoch": 15.880733944954128,
+ "grad_norm": 0.2456834763288498,
+ "learning_rate": 0.0006,
+ "loss": 4.038525581359863,
+ "step": 1143
+ },
+ {
+ "epoch": 15.89471384884229,
+ "grad_norm": 0.2818352282047272,
+ "learning_rate": 0.0006,
+ "loss": 4.062709331512451,
+ "step": 1144
+ },
+ {
+ "epoch": 15.90869375273045,
+ "grad_norm": 0.2850170135498047,
+ "learning_rate": 0.0006,
+ "loss": 4.0683274269104,
+ "step": 1145
+ },
+ {
+ "epoch": 15.922673656618612,
+ "grad_norm": 0.27691730856895447,
+ "learning_rate": 0.0006,
+ "loss": 4.076540470123291,
+ "step": 1146
+ },
+ {
+ "epoch": 15.936653560506771,
+ "grad_norm": 0.2685548961162567,
+ "learning_rate": 0.0006,
+ "loss": 4.048116683959961,
+ "step": 1147
+ },
+ {
+ "epoch": 15.950633464394933,
+ "grad_norm": 0.2452288419008255,
+ "learning_rate": 0.0006,
+ "loss": 4.06640625,
+ "step": 1148
+ },
+ {
+ "epoch": 15.964613368283093,
+ "grad_norm": 0.2601441740989685,
+ "learning_rate": 0.0006,
+ "loss": 4.073277473449707,
+ "step": 1149
+ },
+ {
+ "epoch": 15.978593272171254,
+ "grad_norm": 0.2748197913169861,
+ "learning_rate": 0.0006,
+ "loss": 4.0332536697387695,
+ "step": 1150
+ },
+ {
+ "epoch": 15.992573176059414,
+ "grad_norm": 0.27249959111213684,
+ "learning_rate": 0.0006,
+ "loss": 3.9952516555786133,
+ "step": 1151
+ },
+ {
+ "epoch": 16.0,
+ "grad_norm": 0.3475601375102997,
+ "learning_rate": 0.0006,
+ "loss": 4.040761947631836,
+ "step": 1152
+ },
+ {
+ "epoch": 16.0,
+ "eval_loss": 4.237997531890869,
+ "eval_runtime": 43.8692,
+ "eval_samples_per_second": 55.665,
+ "eval_steps_per_second": 3.488,
+ "step": 1152
+ },
+ {
+ "epoch": 16.01397990388816,
+ "grad_norm": 0.3365611433982849,
+ "learning_rate": 0.0006,
+ "loss": 4.031302452087402,
+ "step": 1153
+ },
+ {
+ "epoch": 16.027959807776323,
+ "grad_norm": 0.3020530641078949,
+ "learning_rate": 0.0006,
+ "loss": 4.036273956298828,
+ "step": 1154
+ },
+ {
+ "epoch": 16.041939711664483,
+ "grad_norm": 0.25277993083000183,
+ "learning_rate": 0.0006,
+ "loss": 4.007067680358887,
+ "step": 1155
+ },
+ {
+ "epoch": 16.055919615552643,
+ "grad_norm": 0.24762840569019318,
+ "learning_rate": 0.0006,
+ "loss": 4.046561241149902,
+ "step": 1156
+ },
+ {
+ "epoch": 16.069899519440803,
+ "grad_norm": 0.25236397981643677,
+ "learning_rate": 0.0006,
+ "loss": 4.061616897583008,
+ "step": 1157
+ },
+ {
+ "epoch": 16.083879423328966,
+ "grad_norm": 0.22789105772972107,
+ "learning_rate": 0.0006,
+ "loss": 4.010061740875244,
+ "step": 1158
+ },
+ {
+ "epoch": 16.097859327217126,
+ "grad_norm": 0.21866244077682495,
+ "learning_rate": 0.0006,
+ "loss": 4.0181097984313965,
+ "step": 1159
+ },
+ {
+ "epoch": 16.111839231105286,
+ "grad_norm": 0.21889029443264008,
+ "learning_rate": 0.0006,
+ "loss": 4.012239456176758,
+ "step": 1160
+ },
+ {
+ "epoch": 16.125819134993446,
+ "grad_norm": 0.23002485930919647,
+ "learning_rate": 0.0006,
+ "loss": 4.034092426300049,
+ "step": 1161
+ },
+ {
+ "epoch": 16.13979903888161,
+ "grad_norm": 0.2271798551082611,
+ "learning_rate": 0.0006,
+ "loss": 4.026222229003906,
+ "step": 1162
+ },
+ {
+ "epoch": 16.15377894276977,
+ "grad_norm": 0.238200843334198,
+ "learning_rate": 0.0006,
+ "loss": 4.044692039489746,
+ "step": 1163
+ },
+ {
+ "epoch": 16.16775884665793,
+ "grad_norm": 0.2281467169523239,
+ "learning_rate": 0.0006,
+ "loss": 4.032305717468262,
+ "step": 1164
+ },
+ {
+ "epoch": 16.18173875054609,
+ "grad_norm": 0.2213946431875229,
+ "learning_rate": 0.0006,
+ "loss": 4.048737525939941,
+ "step": 1165
+ },
+ {
+ "epoch": 16.195718654434252,
+ "grad_norm": 0.26638558506965637,
+ "learning_rate": 0.0006,
+ "loss": 4.006335258483887,
+ "step": 1166
+ },
+ {
+ "epoch": 16.209698558322412,
+ "grad_norm": 0.2780219316482544,
+ "learning_rate": 0.0006,
+ "loss": 4.049234390258789,
+ "step": 1167
+ },
+ {
+ "epoch": 16.22367846221057,
+ "grad_norm": 0.27425870299339294,
+ "learning_rate": 0.0006,
+ "loss": 4.017177104949951,
+ "step": 1168
+ },
+ {
+ "epoch": 16.23765836609873,
+ "grad_norm": 0.2596667408943176,
+ "learning_rate": 0.0006,
+ "loss": 4.022942543029785,
+ "step": 1169
+ },
+ {
+ "epoch": 16.251638269986895,
+ "grad_norm": 0.26972314715385437,
+ "learning_rate": 0.0006,
+ "loss": 4.035310745239258,
+ "step": 1170
+ },
+ {
+ "epoch": 16.265618173875055,
+ "grad_norm": 0.2677772045135498,
+ "learning_rate": 0.0006,
+ "loss": 4.0280561447143555,
+ "step": 1171
+ },
+ {
+ "epoch": 16.279598077763215,
+ "grad_norm": 0.25433358550071716,
+ "learning_rate": 0.0006,
+ "loss": 4.03616189956665,
+ "step": 1172
+ },
+ {
+ "epoch": 16.293577981651374,
+ "grad_norm": 0.2583644688129425,
+ "learning_rate": 0.0006,
+ "loss": 4.073624134063721,
+ "step": 1173
+ },
+ {
+ "epoch": 16.307557885539538,
+ "grad_norm": 0.25437524914741516,
+ "learning_rate": 0.0006,
+ "loss": 4.057926654815674,
+ "step": 1174
+ },
+ {
+ "epoch": 16.321537789427698,
+ "grad_norm": 0.2819201350212097,
+ "learning_rate": 0.0006,
+ "loss": 4.020838737487793,
+ "step": 1175
+ },
+ {
+ "epoch": 16.335517693315857,
+ "grad_norm": 0.32689282298088074,
+ "learning_rate": 0.0006,
+ "loss": 4.062448501586914,
+ "step": 1176
+ },
+ {
+ "epoch": 16.34949759720402,
+ "grad_norm": 0.33002278208732605,
+ "learning_rate": 0.0006,
+ "loss": 4.052059173583984,
+ "step": 1177
+ },
+ {
+ "epoch": 16.36347750109218,
+ "grad_norm": 0.32472696900367737,
+ "learning_rate": 0.0006,
+ "loss": 4.042375564575195,
+ "step": 1178
+ },
+ {
+ "epoch": 16.37745740498034,
+ "grad_norm": 0.35279813408851624,
+ "learning_rate": 0.0006,
+ "loss": 4.028722763061523,
+ "step": 1179
+ },
+ {
+ "epoch": 16.3914373088685,
+ "grad_norm": 0.3243204951286316,
+ "learning_rate": 0.0006,
+ "loss": 4.045693874359131,
+ "step": 1180
+ },
+ {
+ "epoch": 16.405417212756664,
+ "grad_norm": 0.32171115279197693,
+ "learning_rate": 0.0006,
+ "loss": 4.018350124359131,
+ "step": 1181
+ },
+ {
+ "epoch": 16.419397116644824,
+ "grad_norm": 0.31459906697273254,
+ "learning_rate": 0.0006,
+ "loss": 4.039547443389893,
+ "step": 1182
+ },
+ {
+ "epoch": 16.433377020532983,
+ "grad_norm": 0.35038673877716064,
+ "learning_rate": 0.0006,
+ "loss": 4.005928039550781,
+ "step": 1183
+ },
+ {
+ "epoch": 16.447356924421143,
+ "grad_norm": 0.34110963344573975,
+ "learning_rate": 0.0006,
+ "loss": 4.042272090911865,
+ "step": 1184
+ },
+ {
+ "epoch": 16.461336828309307,
+ "grad_norm": 0.33760902285575867,
+ "learning_rate": 0.0006,
+ "loss": 4.02886962890625,
+ "step": 1185
+ },
+ {
+ "epoch": 16.475316732197467,
+ "grad_norm": 0.3162464499473572,
+ "learning_rate": 0.0006,
+ "loss": 4.059924125671387,
+ "step": 1186
+ },
+ {
+ "epoch": 16.489296636085626,
+ "grad_norm": 0.2667233645915985,
+ "learning_rate": 0.0006,
+ "loss": 4.069073677062988,
+ "step": 1187
+ },
+ {
+ "epoch": 16.503276539973786,
+ "grad_norm": 0.22626568377017975,
+ "learning_rate": 0.0006,
+ "loss": 4.044912338256836,
+ "step": 1188
+ },
+ {
+ "epoch": 16.51725644386195,
+ "grad_norm": 0.203303262591362,
+ "learning_rate": 0.0006,
+ "loss": 4.025210380554199,
+ "step": 1189
+ },
+ {
+ "epoch": 16.53123634775011,
+ "grad_norm": 0.2108820080757141,
+ "learning_rate": 0.0006,
+ "loss": 4.035998821258545,
+ "step": 1190
+ },
+ {
+ "epoch": 16.54521625163827,
+ "grad_norm": 0.20451335608959198,
+ "learning_rate": 0.0006,
+ "loss": 4.043377876281738,
+ "step": 1191
+ },
+ {
+ "epoch": 16.55919615552643,
+ "grad_norm": 0.23348836600780487,
+ "learning_rate": 0.0006,
+ "loss": 4.033735275268555,
+ "step": 1192
+ },
+ {
+ "epoch": 16.573176059414592,
+ "grad_norm": 0.24438607692718506,
+ "learning_rate": 0.0006,
+ "loss": 4.071747779846191,
+ "step": 1193
+ },
+ {
+ "epoch": 16.587155963302752,
+ "grad_norm": 0.24233631789684296,
+ "learning_rate": 0.0006,
+ "loss": 4.0138702392578125,
+ "step": 1194
+ },
+ {
+ "epoch": 16.601135867190912,
+ "grad_norm": 0.21625740826129913,
+ "learning_rate": 0.0006,
+ "loss": 4.013422012329102,
+ "step": 1195
+ },
+ {
+ "epoch": 16.615115771079076,
+ "grad_norm": 0.22447720170021057,
+ "learning_rate": 0.0006,
+ "loss": 4.056326866149902,
+ "step": 1196
+ },
+ {
+ "epoch": 16.629095674967235,
+ "grad_norm": 0.21899616718292236,
+ "learning_rate": 0.0006,
+ "loss": 4.006134033203125,
+ "step": 1197
+ },
+ {
+ "epoch": 16.643075578855395,
+ "grad_norm": 0.191362664103508,
+ "learning_rate": 0.0006,
+ "loss": 4.036748886108398,
+ "step": 1198
+ },
+ {
+ "epoch": 16.657055482743555,
+ "grad_norm": 0.20203463733196259,
+ "learning_rate": 0.0006,
+ "loss": 4.006264686584473,
+ "step": 1199
+ },
+ {
+ "epoch": 16.67103538663172,
+ "grad_norm": 0.20209139585494995,
+ "learning_rate": 0.0006,
+ "loss": 4.059018135070801,
+ "step": 1200
+ },
+ {
+ "epoch": 16.68501529051988,
+ "grad_norm": 0.20811820030212402,
+ "learning_rate": 0.0006,
+ "loss": 4.054325103759766,
+ "step": 1201
+ },
+ {
+ "epoch": 16.698995194408038,
+ "grad_norm": 0.22448928654193878,
+ "learning_rate": 0.0006,
+ "loss": 3.996121406555176,
+ "step": 1202
+ },
+ {
+ "epoch": 16.712975098296198,
+ "grad_norm": 0.21692240238189697,
+ "learning_rate": 0.0006,
+ "loss": 4.042046546936035,
+ "step": 1203
+ },
+ {
+ "epoch": 16.72695500218436,
+ "grad_norm": 0.20688563585281372,
+ "learning_rate": 0.0006,
+ "loss": 4.002251625061035,
+ "step": 1204
+ },
+ {
+ "epoch": 16.74093490607252,
+ "grad_norm": 0.1835535764694214,
+ "learning_rate": 0.0006,
+ "loss": 4.02545166015625,
+ "step": 1205
+ },
+ {
+ "epoch": 16.75491480996068,
+ "grad_norm": 0.20532558858394623,
+ "learning_rate": 0.0006,
+ "loss": 4.039333343505859,
+ "step": 1206
+ },
+ {
+ "epoch": 16.76889471384884,
+ "grad_norm": 0.2214215099811554,
+ "learning_rate": 0.0006,
+ "loss": 4.037858486175537,
+ "step": 1207
+ },
+ {
+ "epoch": 16.782874617737004,
+ "grad_norm": 0.24926038086414337,
+ "learning_rate": 0.0006,
+ "loss": 4.024799346923828,
+ "step": 1208
+ },
+ {
+ "epoch": 16.796854521625164,
+ "grad_norm": 0.26057952642440796,
+ "learning_rate": 0.0006,
+ "loss": 4.042788505554199,
+ "step": 1209
+ },
+ {
+ "epoch": 16.810834425513324,
+ "grad_norm": 0.2501208782196045,
+ "learning_rate": 0.0006,
+ "loss": 4.051809310913086,
+ "step": 1210
+ },
+ {
+ "epoch": 16.824814329401484,
+ "grad_norm": 0.21760012209415436,
+ "learning_rate": 0.0006,
+ "loss": 4.063589096069336,
+ "step": 1211
+ },
+ {
+ "epoch": 16.838794233289647,
+ "grad_norm": 0.2243622988462448,
+ "learning_rate": 0.0006,
+ "loss": 4.008829593658447,
+ "step": 1212
+ },
+ {
+ "epoch": 16.852774137177807,
+ "grad_norm": 0.2399163395166397,
+ "learning_rate": 0.0006,
+ "loss": 4.013262748718262,
+ "step": 1213
+ },
+ {
+ "epoch": 16.866754041065967,
+ "grad_norm": 0.23187831044197083,
+ "learning_rate": 0.0006,
+ "loss": 4.023053169250488,
+ "step": 1214
+ },
+ {
+ "epoch": 16.88073394495413,
+ "grad_norm": 0.23723892867565155,
+ "learning_rate": 0.0006,
+ "loss": 3.991321563720703,
+ "step": 1215
+ },
+ {
+ "epoch": 16.89471384884229,
+ "grad_norm": 0.21766342222690582,
+ "learning_rate": 0.0006,
+ "loss": 4.0250773429870605,
+ "step": 1216
+ },
+ {
+ "epoch": 16.90869375273045,
+ "grad_norm": 0.20715023577213287,
+ "learning_rate": 0.0006,
+ "loss": 4.063642978668213,
+ "step": 1217
+ },
+ {
+ "epoch": 16.92267365661861,
+ "grad_norm": 0.20165133476257324,
+ "learning_rate": 0.0006,
+ "loss": 3.9951367378234863,
+ "step": 1218
+ },
+ {
+ "epoch": 16.936653560506773,
+ "grad_norm": 0.19956178963184357,
+ "learning_rate": 0.0006,
+ "loss": 4.025641441345215,
+ "step": 1219
+ },
+ {
+ "epoch": 16.950633464394933,
+ "grad_norm": 0.2175494134426117,
+ "learning_rate": 0.0006,
+ "loss": 4.030346393585205,
+ "step": 1220
+ },
+ {
+ "epoch": 16.964613368283093,
+ "grad_norm": 0.22365593910217285,
+ "learning_rate": 0.0006,
+ "loss": 4.018105506896973,
+ "step": 1221
+ },
+ {
+ "epoch": 16.978593272171253,
+ "grad_norm": 0.21251538395881653,
+ "learning_rate": 0.0006,
+ "loss": 4.023580074310303,
+ "step": 1222
+ },
+ {
+ "epoch": 16.992573176059416,
+ "grad_norm": 0.2230125218629837,
+ "learning_rate": 0.0006,
+ "loss": 4.001980304718018,
+ "step": 1223
+ },
+ {
+ "epoch": 17.0,
+ "grad_norm": 0.24261972308158875,
+ "learning_rate": 0.0006,
+ "loss": 4.081348896026611,
+ "step": 1224
+ },
+ {
+ "epoch": 17.0,
+ "eval_loss": 4.225194931030273,
+ "eval_runtime": 44.247,
+ "eval_samples_per_second": 55.19,
+ "eval_steps_per_second": 3.458,
+ "step": 1224
+ },
+ {
+ "epoch": 17.01397990388816,
+ "grad_norm": 0.2438880205154419,
+ "learning_rate": 0.0006,
+ "loss": 4.0164794921875,
+ "step": 1225
+ },
+ {
+ "epoch": 17.027959807776323,
+ "grad_norm": 0.22459383308887482,
+ "learning_rate": 0.0006,
+ "loss": 3.991623878479004,
+ "step": 1226
+ },
+ {
+ "epoch": 17.041939711664483,
+ "grad_norm": 0.25021040439605713,
+ "learning_rate": 0.0006,
+ "loss": 4.003020286560059,
+ "step": 1227
+ },
+ {
+ "epoch": 17.055919615552643,
+ "grad_norm": 0.30358025431632996,
+ "learning_rate": 0.0006,
+ "loss": 3.980921983718872,
+ "step": 1228
+ },
+ {
+ "epoch": 17.069899519440803,
+ "grad_norm": 0.27313271164894104,
+ "learning_rate": 0.0006,
+ "loss": 3.992398977279663,
+ "step": 1229
+ },
+ {
+ "epoch": 17.083879423328966,
+ "grad_norm": 0.2293211966753006,
+ "learning_rate": 0.0006,
+ "loss": 4.02568244934082,
+ "step": 1230
+ },
+ {
+ "epoch": 17.097859327217126,
+ "grad_norm": 0.2363300621509552,
+ "learning_rate": 0.0006,
+ "loss": 3.977229356765747,
+ "step": 1231
+ },
+ {
+ "epoch": 17.111839231105286,
+ "grad_norm": 0.2809674143791199,
+ "learning_rate": 0.0006,
+ "loss": 3.9720497131347656,
+ "step": 1232
+ },
+ {
+ "epoch": 17.125819134993446,
+ "grad_norm": 0.2913855016231537,
+ "learning_rate": 0.0006,
+ "loss": 3.979529857635498,
+ "step": 1233
+ },
+ {
+ "epoch": 17.13979903888161,
+ "grad_norm": 0.2920287251472473,
+ "learning_rate": 0.0006,
+ "loss": 3.9678473472595215,
+ "step": 1234
+ },
+ {
+ "epoch": 17.15377894276977,
+ "grad_norm": 0.2521543502807617,
+ "learning_rate": 0.0006,
+ "loss": 3.9912607669830322,
+ "step": 1235
+ },
+ {
+ "epoch": 17.16775884665793,
+ "grad_norm": 0.22844268381595612,
+ "learning_rate": 0.0006,
+ "loss": 3.9898228645324707,
+ "step": 1236
+ },
+ {
+ "epoch": 17.18173875054609,
+ "grad_norm": 0.2199884057044983,
+ "learning_rate": 0.0006,
+ "loss": 4.0050740242004395,
+ "step": 1237
+ },
+ {
+ "epoch": 17.195718654434252,
+ "grad_norm": 0.23072892427444458,
+ "learning_rate": 0.0006,
+ "loss": 3.9957475662231445,
+ "step": 1238
+ },
+ {
+ "epoch": 17.209698558322412,
+ "grad_norm": 0.2034899890422821,
+ "learning_rate": 0.0006,
+ "loss": 3.9672317504882812,
+ "step": 1239
+ },
+ {
+ "epoch": 17.22367846221057,
+ "grad_norm": 0.21826180815696716,
+ "learning_rate": 0.0006,
+ "loss": 3.98543119430542,
+ "step": 1240
+ },
+ {
+ "epoch": 17.23765836609873,
+ "grad_norm": 0.21203237771987915,
+ "learning_rate": 0.0006,
+ "loss": 3.9971959590911865,
+ "step": 1241
+ },
+ {
+ "epoch": 17.251638269986895,
+ "grad_norm": 0.22139234840869904,
+ "learning_rate": 0.0006,
+ "loss": 4.017539978027344,
+ "step": 1242
+ },
+ {
+ "epoch": 17.265618173875055,
+ "grad_norm": 0.21553276479244232,
+ "learning_rate": 0.0006,
+ "loss": 3.98740553855896,
+ "step": 1243
+ },
+ {
+ "epoch": 17.279598077763215,
+ "grad_norm": 0.23259080946445465,
+ "learning_rate": 0.0006,
+ "loss": 3.9963035583496094,
+ "step": 1244
+ },
+ {
+ "epoch": 17.293577981651374,
+ "grad_norm": 0.2527932822704315,
+ "learning_rate": 0.0006,
+ "loss": 4.0202956199646,
+ "step": 1245
+ },
+ {
+ "epoch": 17.307557885539538,
+ "grad_norm": 0.28669068217277527,
+ "learning_rate": 0.0006,
+ "loss": 3.9947609901428223,
+ "step": 1246
+ },
+ {
+ "epoch": 17.321537789427698,
+ "grad_norm": 0.341602623462677,
+ "learning_rate": 0.0006,
+ "loss": 3.997032642364502,
+ "step": 1247
+ },
+ {
+ "epoch": 17.335517693315857,
+ "grad_norm": 0.3364104926586151,
+ "learning_rate": 0.0006,
+ "loss": 3.9881834983825684,
+ "step": 1248
+ },
+ {
+ "epoch": 17.34949759720402,
+ "grad_norm": 0.2979278266429901,
+ "learning_rate": 0.0006,
+ "loss": 4.045898914337158,
+ "step": 1249
+ },
+ {
+ "epoch": 17.36347750109218,
+ "grad_norm": 0.2857462465763092,
+ "learning_rate": 0.0006,
+ "loss": 4.0085272789001465,
+ "step": 1250
+ },
+ {
+ "epoch": 17.37745740498034,
+ "grad_norm": 0.2689058780670166,
+ "learning_rate": 0.0006,
+ "loss": 4.021465301513672,
+ "step": 1251
+ },
+ {
+ "epoch": 17.3914373088685,
+ "grad_norm": 0.24943363666534424,
+ "learning_rate": 0.0006,
+ "loss": 4.003451347351074,
+ "step": 1252
+ },
+ {
+ "epoch": 17.405417212756664,
+ "grad_norm": 0.2635347843170166,
+ "learning_rate": 0.0006,
+ "loss": 3.9837827682495117,
+ "step": 1253
+ },
+ {
+ "epoch": 17.419397116644824,
+ "grad_norm": 0.29126450419425964,
+ "learning_rate": 0.0006,
+ "loss": 3.9857311248779297,
+ "step": 1254
+ },
+ {
+ "epoch": 17.433377020532983,
+ "grad_norm": 0.3166918456554413,
+ "learning_rate": 0.0006,
+ "loss": 3.9842967987060547,
+ "step": 1255
+ },
+ {
+ "epoch": 17.447356924421143,
+ "grad_norm": 0.27869969606399536,
+ "learning_rate": 0.0006,
+ "loss": 4.012607574462891,
+ "step": 1256
+ },
+ {
+ "epoch": 17.461336828309307,
+ "grad_norm": 0.23719419538974762,
+ "learning_rate": 0.0006,
+ "loss": 3.981034755706787,
+ "step": 1257
+ },
+ {
+ "epoch": 17.475316732197467,
+ "grad_norm": 0.22687610983848572,
+ "learning_rate": 0.0006,
+ "loss": 4.011059761047363,
+ "step": 1258
+ },
+ {
+ "epoch": 17.489296636085626,
+ "grad_norm": 0.22034095227718353,
+ "learning_rate": 0.0006,
+ "loss": 4.015044689178467,
+ "step": 1259
+ },
+ {
+ "epoch": 17.503276539973786,
+ "grad_norm": 0.21208405494689941,
+ "learning_rate": 0.0006,
+ "loss": 4.003793716430664,
+ "step": 1260
+ },
+ {
+ "epoch": 17.51725644386195,
+ "grad_norm": 0.21759214997291565,
+ "learning_rate": 0.0006,
+ "loss": 3.978652238845825,
+ "step": 1261
+ },
+ {
+ "epoch": 17.53123634775011,
+ "grad_norm": 0.22481068968772888,
+ "learning_rate": 0.0006,
+ "loss": 4.034845352172852,
+ "step": 1262
+ },
+ {
+ "epoch": 17.54521625163827,
+ "grad_norm": 0.20376387238502502,
+ "learning_rate": 0.0006,
+ "loss": 3.990541934967041,
+ "step": 1263
+ },
+ {
+ "epoch": 17.55919615552643,
+ "grad_norm": 0.20459355413913727,
+ "learning_rate": 0.0006,
+ "loss": 4.006990432739258,
+ "step": 1264
+ },
+ {
+ "epoch": 17.573176059414592,
+ "grad_norm": 0.19306913018226624,
+ "learning_rate": 0.0006,
+ "loss": 3.993408679962158,
+ "step": 1265
+ },
+ {
+ "epoch": 17.587155963302752,
+ "grad_norm": 0.20727239549160004,
+ "learning_rate": 0.0006,
+ "loss": 3.988016128540039,
+ "step": 1266
+ },
+ {
+ "epoch": 17.601135867190912,
+ "grad_norm": 0.20213133096694946,
+ "learning_rate": 0.0006,
+ "loss": 4.0120368003845215,
+ "step": 1267
+ },
+ {
+ "epoch": 17.615115771079076,
+ "grad_norm": 0.21074117720127106,
+ "learning_rate": 0.0006,
+ "loss": 4.048871040344238,
+ "step": 1268
+ },
+ {
+ "epoch": 17.629095674967235,
+ "grad_norm": 0.2074330598115921,
+ "learning_rate": 0.0006,
+ "loss": 3.997509002685547,
+ "step": 1269
+ },
+ {
+ "epoch": 17.643075578855395,
+ "grad_norm": 0.20383669435977936,
+ "learning_rate": 0.0006,
+ "loss": 4.0028839111328125,
+ "step": 1270
+ },
+ {
+ "epoch": 17.657055482743555,
+ "grad_norm": 0.2060765027999878,
+ "learning_rate": 0.0006,
+ "loss": 3.998032331466675,
+ "step": 1271
+ },
+ {
+ "epoch": 17.67103538663172,
+ "grad_norm": 0.21851404011249542,
+ "learning_rate": 0.0006,
+ "loss": 3.9928741455078125,
+ "step": 1272
+ },
+ {
+ "epoch": 17.68501529051988,
+ "grad_norm": 0.24324250221252441,
+ "learning_rate": 0.0006,
+ "loss": 3.9896507263183594,
+ "step": 1273
+ },
+ {
+ "epoch": 17.698995194408038,
+ "grad_norm": 0.25584331154823303,
+ "learning_rate": 0.0006,
+ "loss": 4.010485649108887,
+ "step": 1274
+ },
+ {
+ "epoch": 17.712975098296198,
+ "grad_norm": 0.2490610033273697,
+ "learning_rate": 0.0006,
+ "loss": 3.9906954765319824,
+ "step": 1275
+ },
+ {
+ "epoch": 17.72695500218436,
+ "grad_norm": 0.24241414666175842,
+ "learning_rate": 0.0006,
+ "loss": 4.016420364379883,
+ "step": 1276
+ },
+ {
+ "epoch": 17.74093490607252,
+ "grad_norm": 0.2222128063440323,
+ "learning_rate": 0.0006,
+ "loss": 4.009827136993408,
+ "step": 1277
+ },
+ {
+ "epoch": 17.75491480996068,
+ "grad_norm": 0.23119516670703888,
+ "learning_rate": 0.0006,
+ "loss": 4.0034589767456055,
+ "step": 1278
+ },
+ {
+ "epoch": 17.76889471384884,
+ "grad_norm": 0.24596457183361053,
+ "learning_rate": 0.0006,
+ "loss": 4.003161907196045,
+ "step": 1279
+ },
+ {
+ "epoch": 17.782874617737004,
+ "grad_norm": 0.2607562839984894,
+ "learning_rate": 0.0006,
+ "loss": 3.9894633293151855,
+ "step": 1280
+ },
+ {
+ "epoch": 17.796854521625164,
+ "grad_norm": 0.28706878423690796,
+ "learning_rate": 0.0006,
+ "loss": 4.005712985992432,
+ "step": 1281
+ },
+ {
+ "epoch": 17.810834425513324,
+ "grad_norm": 0.27178290486335754,
+ "learning_rate": 0.0006,
+ "loss": 3.9784536361694336,
+ "step": 1282
+ },
+ {
+ "epoch": 17.824814329401484,
+ "grad_norm": 0.27962708473205566,
+ "learning_rate": 0.0006,
+ "loss": 4.012705326080322,
+ "step": 1283
+ },
+ {
+ "epoch": 17.838794233289647,
+ "grad_norm": 0.29147693514823914,
+ "learning_rate": 0.0006,
+ "loss": 4.0159783363342285,
+ "step": 1284
+ },
+ {
+ "epoch": 17.852774137177807,
+ "grad_norm": 0.2841821312904358,
+ "learning_rate": 0.0006,
+ "loss": 4.011552810668945,
+ "step": 1285
+ },
+ {
+ "epoch": 17.866754041065967,
+ "grad_norm": 0.24924969673156738,
+ "learning_rate": 0.0006,
+ "loss": 3.992421865463257,
+ "step": 1286
+ },
+ {
+ "epoch": 17.88073394495413,
+ "grad_norm": 0.24850749969482422,
+ "learning_rate": 0.0006,
+ "loss": 3.974897861480713,
+ "step": 1287
+ },
+ {
+ "epoch": 17.89471384884229,
+ "grad_norm": 0.2409554123878479,
+ "learning_rate": 0.0006,
+ "loss": 4.002941131591797,
+ "step": 1288
+ },
+ {
+ "epoch": 17.90869375273045,
+ "grad_norm": 0.2656126320362091,
+ "learning_rate": 0.0006,
+ "loss": 3.9804210662841797,
+ "step": 1289
+ },
+ {
+ "epoch": 17.92267365661861,
+ "grad_norm": 0.28210243582725525,
+ "learning_rate": 0.0006,
+ "loss": 4.007192134857178,
+ "step": 1290
+ },
+ {
+ "epoch": 17.936653560506773,
+ "grad_norm": 0.28427553176879883,
+ "learning_rate": 0.0006,
+ "loss": 3.9739556312561035,
+ "step": 1291
+ },
+ {
+ "epoch": 17.950633464394933,
+ "grad_norm": 0.28893420100212097,
+ "learning_rate": 0.0006,
+ "loss": 4.004766941070557,
+ "step": 1292
+ },
+ {
+ "epoch": 17.964613368283093,
+ "grad_norm": 0.2831471562385559,
+ "learning_rate": 0.0006,
+ "loss": 3.984936237335205,
+ "step": 1293
+ },
+ {
+ "epoch": 17.978593272171253,
+ "grad_norm": 0.2518300712108612,
+ "learning_rate": 0.0006,
+ "loss": 4.002814292907715,
+ "step": 1294
+ },
+ {
+ "epoch": 17.992573176059416,
+ "grad_norm": 0.24264675378799438,
+ "learning_rate": 0.0006,
+ "loss": 3.998900890350342,
+ "step": 1295
+ },
+ {
+ "epoch": 18.0,
+ "grad_norm": 0.24474996328353882,
+ "learning_rate": 0.0006,
+ "loss": 3.974229335784912,
+ "step": 1296
+ },
+ {
+ "epoch": 18.0,
+ "eval_loss": 4.195685863494873,
+ "eval_runtime": 44.0709,
+ "eval_samples_per_second": 55.411,
+ "eval_steps_per_second": 3.472,
+ "step": 1296
+ },
+ {
+ "epoch": 18.01397990388816,
+ "grad_norm": 0.2553016245365143,
+ "learning_rate": 0.0006,
+ "loss": 3.9522247314453125,
+ "step": 1297
+ },
+ {
+ "epoch": 18.027959807776323,
+ "grad_norm": 0.22350727021694183,
+ "learning_rate": 0.0006,
+ "loss": 3.9850122928619385,
+ "step": 1298
+ },
+ {
+ "epoch": 18.041939711664483,
+ "grad_norm": 0.23935550451278687,
+ "learning_rate": 0.0006,
+ "loss": 3.9758832454681396,
+ "step": 1299
+ },
+ {
+ "epoch": 18.055919615552643,
+ "grad_norm": 0.23868797719478607,
+ "learning_rate": 0.0006,
+ "loss": 3.9567959308624268,
+ "step": 1300
+ },
+ {
+ "epoch": 18.069899519440803,
+ "grad_norm": 0.23102357983589172,
+ "learning_rate": 0.0006,
+ "loss": 3.9399867057800293,
+ "step": 1301
+ },
+ {
+ "epoch": 18.083879423328966,
+ "grad_norm": 0.23706983029842377,
+ "learning_rate": 0.0006,
+ "loss": 3.993434190750122,
+ "step": 1302
+ },
+ {
+ "epoch": 18.097859327217126,
+ "grad_norm": 0.22207573056221008,
+ "learning_rate": 0.0006,
+ "loss": 3.993436574935913,
+ "step": 1303
+ },
+ {
+ "epoch": 18.111839231105286,
+ "grad_norm": 0.23975296318531036,
+ "learning_rate": 0.0006,
+ "loss": 3.981943368911743,
+ "step": 1304
+ },
+ {
+ "epoch": 18.125819134993446,
+ "grad_norm": 0.2520582675933838,
+ "learning_rate": 0.0006,
+ "loss": 3.965493679046631,
+ "step": 1305
+ },
+ {
+ "epoch": 18.13979903888161,
+ "grad_norm": 0.2230956256389618,
+ "learning_rate": 0.0006,
+ "loss": 3.9360928535461426,
+ "step": 1306
+ },
+ {
+ "epoch": 18.15377894276977,
+ "grad_norm": 0.22527500987052917,
+ "learning_rate": 0.0006,
+ "loss": 3.9814581871032715,
+ "step": 1307
+ },
+ {
+ "epoch": 18.16775884665793,
+ "grad_norm": 0.22389626502990723,
+ "learning_rate": 0.0006,
+ "loss": 3.961590051651001,
+ "step": 1308
+ },
+ {
+ "epoch": 18.18173875054609,
+ "grad_norm": 0.22279471158981323,
+ "learning_rate": 0.0006,
+ "loss": 3.952338695526123,
+ "step": 1309
+ },
+ {
+ "epoch": 18.195718654434252,
+ "grad_norm": 0.24635115265846252,
+ "learning_rate": 0.0006,
+ "loss": 3.9693849086761475,
+ "step": 1310
+ },
+ {
+ "epoch": 18.209698558322412,
+ "grad_norm": 0.2757279872894287,
+ "learning_rate": 0.0006,
+ "loss": 3.9956700801849365,
+ "step": 1311
+ },
+ {
+ "epoch": 18.22367846221057,
+ "grad_norm": 0.2619115710258484,
+ "learning_rate": 0.0006,
+ "loss": 3.948878765106201,
+ "step": 1312
+ },
+ {
+ "epoch": 18.23765836609873,
+ "grad_norm": 0.22853828966617584,
+ "learning_rate": 0.0006,
+ "loss": 3.9545674324035645,
+ "step": 1313
+ },
+ {
+ "epoch": 18.251638269986895,
+ "grad_norm": 0.22904761135578156,
+ "learning_rate": 0.0006,
+ "loss": 3.947535991668701,
+ "step": 1314
+ },
+ {
+ "epoch": 18.265618173875055,
+ "grad_norm": 0.23592644929885864,
+ "learning_rate": 0.0006,
+ "loss": 3.971926212310791,
+ "step": 1315
+ },
+ {
+ "epoch": 18.279598077763215,
+ "grad_norm": 0.22120243310928345,
+ "learning_rate": 0.0006,
+ "loss": 3.9471049308776855,
+ "step": 1316
+ },
+ {
+ "epoch": 18.293577981651374,
+ "grad_norm": 0.20308749377727509,
+ "learning_rate": 0.0006,
+ "loss": 3.967449188232422,
+ "step": 1317
+ },
+ {
+ "epoch": 18.307557885539538,
+ "grad_norm": 0.20013529062271118,
+ "learning_rate": 0.0006,
+ "loss": 3.966151237487793,
+ "step": 1318
+ },
+ {
+ "epoch": 18.321537789427698,
+ "grad_norm": 0.20635221898555756,
+ "learning_rate": 0.0006,
+ "loss": 3.9908885955810547,
+ "step": 1319
+ },
+ {
+ "epoch": 18.335517693315857,
+ "grad_norm": 0.2232237160205841,
+ "learning_rate": 0.0006,
+ "loss": 3.9488768577575684,
+ "step": 1320
+ },
+ {
+ "epoch": 18.34949759720402,
+ "grad_norm": 0.21916444599628448,
+ "learning_rate": 0.0006,
+ "loss": 3.973428726196289,
+ "step": 1321
+ },
+ {
+ "epoch": 18.36347750109218,
+ "grad_norm": 0.20427337288856506,
+ "learning_rate": 0.0006,
+ "loss": 3.969332695007324,
+ "step": 1322
+ },
+ {
+ "epoch": 18.37745740498034,
+ "grad_norm": 0.20138131082057953,
+ "learning_rate": 0.0006,
+ "loss": 3.9651856422424316,
+ "step": 1323
+ },
+ {
+ "epoch": 18.3914373088685,
+ "grad_norm": 0.18918880820274353,
+ "learning_rate": 0.0006,
+ "loss": 3.9772281646728516,
+ "step": 1324
+ },
+ {
+ "epoch": 18.405417212756664,
+ "grad_norm": 0.1860039383172989,
+ "learning_rate": 0.0006,
+ "loss": 3.9289052486419678,
+ "step": 1325
+ },
+ {
+ "epoch": 18.419397116644824,
+ "grad_norm": 0.19541646540164948,
+ "learning_rate": 0.0006,
+ "loss": 3.9527673721313477,
+ "step": 1326
+ },
+ {
+ "epoch": 18.433377020532983,
+ "grad_norm": 0.206914022564888,
+ "learning_rate": 0.0006,
+ "loss": 3.99316143989563,
+ "step": 1327
+ },
+ {
+ "epoch": 18.447356924421143,
+ "grad_norm": 0.209097757935524,
+ "learning_rate": 0.0006,
+ "loss": 3.978130340576172,
+ "step": 1328
+ },
+ {
+ "epoch": 18.461336828309307,
+ "grad_norm": 0.22163373231887817,
+ "learning_rate": 0.0006,
+ "loss": 3.951460361480713,
+ "step": 1329
+ },
+ {
+ "epoch": 18.475316732197467,
+ "grad_norm": 0.21446120738983154,
+ "learning_rate": 0.0006,
+ "loss": 3.963571071624756,
+ "step": 1330
+ },
+ {
+ "epoch": 18.489296636085626,
+ "grad_norm": 0.2341388761997223,
+ "learning_rate": 0.0006,
+ "loss": 4.010684013366699,
+ "step": 1331
+ },
+ {
+ "epoch": 18.503276539973786,
+ "grad_norm": 0.2433937042951584,
+ "learning_rate": 0.0006,
+ "loss": 3.987537384033203,
+ "step": 1332
+ },
+ {
+ "epoch": 18.51725644386195,
+ "grad_norm": 0.24916228652000427,
+ "learning_rate": 0.0006,
+ "loss": 3.953075647354126,
+ "step": 1333
+ },
+ {
+ "epoch": 18.53123634775011,
+ "grad_norm": 0.24542421102523804,
+ "learning_rate": 0.0006,
+ "loss": 3.9510841369628906,
+ "step": 1334
+ },
+ {
+ "epoch": 18.54521625163827,
+ "grad_norm": 0.2393690049648285,
+ "learning_rate": 0.0006,
+ "loss": 3.981747627258301,
+ "step": 1335
+ },
+ {
+ "epoch": 18.55919615552643,
+ "grad_norm": 0.22806711494922638,
+ "learning_rate": 0.0006,
+ "loss": 3.9714856147766113,
+ "step": 1336
+ },
+ {
+ "epoch": 18.573176059414592,
+ "grad_norm": 0.21948303282260895,
+ "learning_rate": 0.0006,
+ "loss": 3.9429898262023926,
+ "step": 1337
+ },
+ {
+ "epoch": 18.587155963302752,
+ "grad_norm": 0.21575778722763062,
+ "learning_rate": 0.0006,
+ "loss": 3.9639933109283447,
+ "step": 1338
+ },
+ {
+ "epoch": 18.601135867190912,
+ "grad_norm": 0.23370565474033356,
+ "learning_rate": 0.0006,
+ "loss": 3.9819254875183105,
+ "step": 1339
+ },
+ {
+ "epoch": 18.615115771079076,
+ "grad_norm": 0.2613106369972229,
+ "learning_rate": 0.0006,
+ "loss": 3.9654669761657715,
+ "step": 1340
+ },
+ {
+ "epoch": 18.629095674967235,
+ "grad_norm": 0.26682716608047485,
+ "learning_rate": 0.0006,
+ "loss": 3.9832968711853027,
+ "step": 1341
+ },
+ {
+ "epoch": 18.643075578855395,
+ "grad_norm": 0.24331490695476532,
+ "learning_rate": 0.0006,
+ "loss": 3.9926600456237793,
+ "step": 1342
+ },
+ {
+ "epoch": 18.657055482743555,
+ "grad_norm": 0.2459341287612915,
+ "learning_rate": 0.0006,
+ "loss": 3.9508986473083496,
+ "step": 1343
+ },
+ {
+ "epoch": 18.67103538663172,
+ "grad_norm": 0.26395753026008606,
+ "learning_rate": 0.0006,
+ "loss": 3.961359977722168,
+ "step": 1344
+ },
+ {
+ "epoch": 18.68501529051988,
+ "grad_norm": 0.26049068570137024,
+ "learning_rate": 0.0006,
+ "loss": 3.9763245582580566,
+ "step": 1345
+ },
+ {
+ "epoch": 18.698995194408038,
+ "grad_norm": 0.24018602073192596,
+ "learning_rate": 0.0006,
+ "loss": 3.951780319213867,
+ "step": 1346
+ },
+ {
+ "epoch": 18.712975098296198,
+ "grad_norm": 0.23886290192604065,
+ "learning_rate": 0.0006,
+ "loss": 3.9883017539978027,
+ "step": 1347
+ },
+ {
+ "epoch": 18.72695500218436,
+ "grad_norm": 0.2293774038553238,
+ "learning_rate": 0.0006,
+ "loss": 3.9852685928344727,
+ "step": 1348
+ },
+ {
+ "epoch": 18.74093490607252,
+ "grad_norm": 0.22172975540161133,
+ "learning_rate": 0.0006,
+ "loss": 3.967550277709961,
+ "step": 1349
+ },
+ {
+ "epoch": 18.75491480996068,
+ "grad_norm": 0.2170475423336029,
+ "learning_rate": 0.0006,
+ "loss": 3.9570775032043457,
+ "step": 1350
+ },
+ {
+ "epoch": 18.76889471384884,
+ "grad_norm": 0.21458806097507477,
+ "learning_rate": 0.0006,
+ "loss": 3.9461212158203125,
+ "step": 1351
+ },
+ {
+ "epoch": 18.782874617737004,
+ "grad_norm": 0.21101507544517517,
+ "learning_rate": 0.0006,
+ "loss": 3.984398365020752,
+ "step": 1352
+ },
+ {
+ "epoch": 18.796854521625164,
+ "grad_norm": 0.23480583727359772,
+ "learning_rate": 0.0006,
+ "loss": 3.950312614440918,
+ "step": 1353
+ },
+ {
+ "epoch": 18.810834425513324,
+ "grad_norm": 0.24728581309318542,
+ "learning_rate": 0.0006,
+ "loss": 3.9572393894195557,
+ "step": 1354
+ },
+ {
+ "epoch": 18.824814329401484,
+ "grad_norm": 0.26063451170921326,
+ "learning_rate": 0.0006,
+ "loss": 3.9653234481811523,
+ "step": 1355
+ },
+ {
+ "epoch": 18.838794233289647,
+ "grad_norm": 0.24679961800575256,
+ "learning_rate": 0.0006,
+ "loss": 3.9560108184814453,
+ "step": 1356
+ },
+ {
+ "epoch": 18.852774137177807,
+ "grad_norm": 0.23199526965618134,
+ "learning_rate": 0.0006,
+ "loss": 3.9948246479034424,
+ "step": 1357
+ },
+ {
+ "epoch": 18.866754041065967,
+ "grad_norm": 0.22619125247001648,
+ "learning_rate": 0.0006,
+ "loss": 3.9783573150634766,
+ "step": 1358
+ },
+ {
+ "epoch": 18.88073394495413,
+ "grad_norm": 0.25499874353408813,
+ "learning_rate": 0.0006,
+ "loss": 3.9674575328826904,
+ "step": 1359
+ },
+ {
+ "epoch": 18.89471384884229,
+ "grad_norm": 0.23961037397384644,
+ "learning_rate": 0.0006,
+ "loss": 3.969209909439087,
+ "step": 1360
+ },
+ {
+ "epoch": 18.90869375273045,
+ "grad_norm": 0.21039162576198578,
+ "learning_rate": 0.0006,
+ "loss": 3.978661060333252,
+ "step": 1361
+ },
+ {
+ "epoch": 18.92267365661861,
+ "grad_norm": 0.2297026664018631,
+ "learning_rate": 0.0006,
+ "loss": 3.9483046531677246,
+ "step": 1362
+ },
+ {
+ "epoch": 18.936653560506773,
+ "grad_norm": 0.26367098093032837,
+ "learning_rate": 0.0006,
+ "loss": 3.927133560180664,
+ "step": 1363
+ },
+ {
+ "epoch": 18.950633464394933,
+ "grad_norm": 0.26893147826194763,
+ "learning_rate": 0.0006,
+ "loss": 3.957932710647583,
+ "step": 1364
+ },
+ {
+ "epoch": 18.964613368283093,
+ "grad_norm": 0.27092233300209045,
+ "learning_rate": 0.0006,
+ "loss": 3.976621150970459,
+ "step": 1365
+ },
+ {
+ "epoch": 18.978593272171253,
+ "grad_norm": 0.2672635018825531,
+ "learning_rate": 0.0006,
+ "loss": 3.9577765464782715,
+ "step": 1366
+ },
+ {
+ "epoch": 18.992573176059416,
+ "grad_norm": 0.2721385359764099,
+ "learning_rate": 0.0006,
+ "loss": 3.986100196838379,
+ "step": 1367
+ },
+ {
+ "epoch": 19.0,
+ "grad_norm": 0.27648621797561646,
+ "learning_rate": 0.0006,
+ "loss": 3.9942402839660645,
+ "step": 1368
+ },
+ {
+ "epoch": 19.0,
+ "eval_loss": 4.180216312408447,
+ "eval_runtime": 44.0079,
+ "eval_samples_per_second": 55.49,
+ "eval_steps_per_second": 3.477,
+ "step": 1368
+ },
+ {
+ "epoch": 19.01397990388816,
+ "grad_norm": 0.2563098073005676,
+ "learning_rate": 0.0006,
+ "loss": 3.9267354011535645,
+ "step": 1369
+ },
+ {
+ "epoch": 19.027959807776323,
+ "grad_norm": 0.2531425952911377,
+ "learning_rate": 0.0006,
+ "loss": 3.9273324012756348,
+ "step": 1370
+ },
+ {
+ "epoch": 19.041939711664483,
+ "grad_norm": 0.27485427260398865,
+ "learning_rate": 0.0006,
+ "loss": 3.9542183876037598,
+ "step": 1371
+ },
+ {
+ "epoch": 19.055919615552643,
+ "grad_norm": 0.27509891986846924,
+ "learning_rate": 0.0006,
+ "loss": 3.921940326690674,
+ "step": 1372
+ },
+ {
+ "epoch": 19.069899519440803,
+ "grad_norm": 0.28154096007347107,
+ "learning_rate": 0.0006,
+ "loss": 3.926743984222412,
+ "step": 1373
+ },
+ {
+ "epoch": 19.083879423328966,
+ "grad_norm": 0.2749912738800049,
+ "learning_rate": 0.0006,
+ "loss": 3.9257748126983643,
+ "step": 1374
+ },
+ {
+ "epoch": 19.097859327217126,
+ "grad_norm": 0.26168501377105713,
+ "learning_rate": 0.0006,
+ "loss": 3.9403202533721924,
+ "step": 1375
+ },
+ {
+ "epoch": 19.111839231105286,
+ "grad_norm": 0.23410023748874664,
+ "learning_rate": 0.0006,
+ "loss": 3.935378313064575,
+ "step": 1376
+ },
+ {
+ "epoch": 19.125819134993446,
+ "grad_norm": 0.25790470838546753,
+ "learning_rate": 0.0006,
+ "loss": 3.946147918701172,
+ "step": 1377
+ },
+ {
+ "epoch": 19.13979903888161,
+ "grad_norm": 0.26704177260398865,
+ "learning_rate": 0.0006,
+ "loss": 3.9511594772338867,
+ "step": 1378
+ },
+ {
+ "epoch": 19.15377894276977,
+ "grad_norm": 0.2560667097568512,
+ "learning_rate": 0.0006,
+ "loss": 3.915806531906128,
+ "step": 1379
+ },
+ {
+ "epoch": 19.16775884665793,
+ "grad_norm": 0.24684149026870728,
+ "learning_rate": 0.0006,
+ "loss": 3.9162003993988037,
+ "step": 1380
+ },
+ {
+ "epoch": 19.18173875054609,
+ "grad_norm": 0.2097567766904831,
+ "learning_rate": 0.0006,
+ "loss": 3.915739059448242,
+ "step": 1381
+ },
+ {
+ "epoch": 19.195718654434252,
+ "grad_norm": 0.21646849811077118,
+ "learning_rate": 0.0006,
+ "loss": 3.9097084999084473,
+ "step": 1382
+ },
+ {
+ "epoch": 19.209698558322412,
+ "grad_norm": 0.20626980066299438,
+ "learning_rate": 0.0006,
+ "loss": 3.9541783332824707,
+ "step": 1383
+ },
+ {
+ "epoch": 19.22367846221057,
+ "grad_norm": 0.23362718522548676,
+ "learning_rate": 0.0006,
+ "loss": 3.950096845626831,
+ "step": 1384
+ },
+ {
+ "epoch": 19.23765836609873,
+ "grad_norm": 0.25402209162712097,
+ "learning_rate": 0.0006,
+ "loss": 3.927671432495117,
+ "step": 1385
+ },
+ {
+ "epoch": 19.251638269986895,
+ "grad_norm": 0.23714083433151245,
+ "learning_rate": 0.0006,
+ "loss": 3.939765453338623,
+ "step": 1386
+ },
+ {
+ "epoch": 19.265618173875055,
+ "grad_norm": 0.20895546674728394,
+ "learning_rate": 0.0006,
+ "loss": 3.9384806156158447,
+ "step": 1387
+ },
+ {
+ "epoch": 19.279598077763215,
+ "grad_norm": 0.21374300122261047,
+ "learning_rate": 0.0006,
+ "loss": 3.9523749351501465,
+ "step": 1388
+ },
+ {
+ "epoch": 19.293577981651374,
+ "grad_norm": 0.210394486784935,
+ "learning_rate": 0.0006,
+ "loss": 3.9540798664093018,
+ "step": 1389
+ },
+ {
+ "epoch": 19.307557885539538,
+ "grad_norm": 0.20646725594997406,
+ "learning_rate": 0.0006,
+ "loss": 3.9514098167419434,
+ "step": 1390
+ },
+ {
+ "epoch": 19.321537789427698,
+ "grad_norm": 0.21477538347244263,
+ "learning_rate": 0.0006,
+ "loss": 3.9369924068450928,
+ "step": 1391
+ },
+ {
+ "epoch": 19.335517693315857,
+ "grad_norm": 0.20431505143642426,
+ "learning_rate": 0.0006,
+ "loss": 3.9389796257019043,
+ "step": 1392
+ },
+ {
+ "epoch": 19.34949759720402,
+ "grad_norm": 0.19575877487659454,
+ "learning_rate": 0.0006,
+ "loss": 3.935976028442383,
+ "step": 1393
+ },
+ {
+ "epoch": 19.36347750109218,
+ "grad_norm": 0.20720405876636505,
+ "learning_rate": 0.0006,
+ "loss": 3.9670963287353516,
+ "step": 1394
+ },
+ {
+ "epoch": 19.37745740498034,
+ "grad_norm": 0.2173967957496643,
+ "learning_rate": 0.0006,
+ "loss": 3.903940439224243,
+ "step": 1395
+ },
+ {
+ "epoch": 19.3914373088685,
+ "grad_norm": 0.2180529683828354,
+ "learning_rate": 0.0006,
+ "loss": 3.8716301918029785,
+ "step": 1396
+ },
+ {
+ "epoch": 19.405417212756664,
+ "grad_norm": 0.20666591823101044,
+ "learning_rate": 0.0006,
+ "loss": 3.930936813354492,
+ "step": 1397
+ },
+ {
+ "epoch": 19.419397116644824,
+ "grad_norm": 0.20353034138679504,
+ "learning_rate": 0.0006,
+ "loss": 3.926954746246338,
+ "step": 1398
+ },
+ {
+ "epoch": 19.433377020532983,
+ "grad_norm": 0.22333289682865143,
+ "learning_rate": 0.0006,
+ "loss": 3.947504997253418,
+ "step": 1399
+ },
+ {
+ "epoch": 19.447356924421143,
+ "grad_norm": 0.21787697076797485,
+ "learning_rate": 0.0006,
+ "loss": 3.9325344562530518,
+ "step": 1400
+ },
+ {
+ "epoch": 19.461336828309307,
+ "grad_norm": 0.22805874049663544,
+ "learning_rate": 0.0006,
+ "loss": 3.9640727043151855,
+ "step": 1401
+ },
+ {
+ "epoch": 19.475316732197467,
+ "grad_norm": 0.22396457195281982,
+ "learning_rate": 0.0006,
+ "loss": 3.9537901878356934,
+ "step": 1402
+ },
+ {
+ "epoch": 19.489296636085626,
+ "grad_norm": 0.2333047240972519,
+ "learning_rate": 0.0006,
+ "loss": 3.935609817504883,
+ "step": 1403
+ },
+ {
+ "epoch": 19.503276539973786,
+ "grad_norm": 0.25063616037368774,
+ "learning_rate": 0.0006,
+ "loss": 3.9659228324890137,
+ "step": 1404
+ },
+ {
+ "epoch": 19.51725644386195,
+ "grad_norm": 0.29074087738990784,
+ "learning_rate": 0.0006,
+ "loss": 3.9552183151245117,
+ "step": 1405
+ },
+ {
+ "epoch": 19.53123634775011,
+ "grad_norm": 0.34876152873039246,
+ "learning_rate": 0.0006,
+ "loss": 3.976163387298584,
+ "step": 1406
+ },
+ {
+ "epoch": 19.54521625163827,
+ "grad_norm": 0.35026612877845764,
+ "learning_rate": 0.0006,
+ "loss": 3.961186408996582,
+ "step": 1407
+ },
+ {
+ "epoch": 19.55919615552643,
+ "grad_norm": 0.3199564218521118,
+ "learning_rate": 0.0006,
+ "loss": 3.9366297721862793,
+ "step": 1408
+ },
+ {
+ "epoch": 19.573176059414592,
+ "grad_norm": 0.2976185977458954,
+ "learning_rate": 0.0006,
+ "loss": 3.9502010345458984,
+ "step": 1409
+ },
+ {
+ "epoch": 19.587155963302752,
+ "grad_norm": 0.2951911687850952,
+ "learning_rate": 0.0006,
+ "loss": 3.9427943229675293,
+ "step": 1410
+ },
+ {
+ "epoch": 19.601135867190912,
+ "grad_norm": 0.27918702363967896,
+ "learning_rate": 0.0006,
+ "loss": 3.963700532913208,
+ "step": 1411
+ },
+ {
+ "epoch": 19.615115771079076,
+ "grad_norm": 0.26197490096092224,
+ "learning_rate": 0.0006,
+ "loss": 3.9636964797973633,
+ "step": 1412
+ },
+ {
+ "epoch": 19.629095674967235,
+ "grad_norm": 0.24242281913757324,
+ "learning_rate": 0.0006,
+ "loss": 3.961815595626831,
+ "step": 1413
+ },
+ {
+ "epoch": 19.643075578855395,
+ "grad_norm": 0.2606375515460968,
+ "learning_rate": 0.0006,
+ "loss": 3.946643352508545,
+ "step": 1414
+ },
+ {
+ "epoch": 19.657055482743555,
+ "grad_norm": 0.23353353142738342,
+ "learning_rate": 0.0006,
+ "loss": 3.973155975341797,
+ "step": 1415
+ },
+ {
+ "epoch": 19.67103538663172,
+ "grad_norm": 0.22872662544250488,
+ "learning_rate": 0.0006,
+ "loss": 3.9528894424438477,
+ "step": 1416
+ },
+ {
+ "epoch": 19.68501529051988,
+ "grad_norm": 0.24678432941436768,
+ "learning_rate": 0.0006,
+ "loss": 3.9313249588012695,
+ "step": 1417
+ },
+ {
+ "epoch": 19.698995194408038,
+ "grad_norm": 0.23895515501499176,
+ "learning_rate": 0.0006,
+ "loss": 3.944082498550415,
+ "step": 1418
+ },
+ {
+ "epoch": 19.712975098296198,
+ "grad_norm": 0.23649105429649353,
+ "learning_rate": 0.0006,
+ "loss": 3.962069034576416,
+ "step": 1419
+ },
+ {
+ "epoch": 19.72695500218436,
+ "grad_norm": 0.22031061351299286,
+ "learning_rate": 0.0006,
+ "loss": 3.912972927093506,
+ "step": 1420
+ },
+ {
+ "epoch": 19.74093490607252,
+ "grad_norm": 0.20231695473194122,
+ "learning_rate": 0.0006,
+ "loss": 3.964531421661377,
+ "step": 1421
+ },
+ {
+ "epoch": 19.75491480996068,
+ "grad_norm": 0.19980913400650024,
+ "learning_rate": 0.0006,
+ "loss": 3.9452600479125977,
+ "step": 1422
+ },
+ {
+ "epoch": 19.76889471384884,
+ "grad_norm": 0.21768775582313538,
+ "learning_rate": 0.0006,
+ "loss": 3.9214301109313965,
+ "step": 1423
+ },
+ {
+ "epoch": 19.782874617737004,
+ "grad_norm": 0.21287119388580322,
+ "learning_rate": 0.0006,
+ "loss": 3.9416494369506836,
+ "step": 1424
+ },
+ {
+ "epoch": 19.796854521625164,
+ "grad_norm": 0.21399827301502228,
+ "learning_rate": 0.0006,
+ "loss": 3.971010208129883,
+ "step": 1425
+ },
+ {
+ "epoch": 19.810834425513324,
+ "grad_norm": 0.1957658976316452,
+ "learning_rate": 0.0006,
+ "loss": 3.936331272125244,
+ "step": 1426
+ },
+ {
+ "epoch": 19.824814329401484,
+ "grad_norm": 0.19341488182544708,
+ "learning_rate": 0.0006,
+ "loss": 3.9321448802948,
+ "step": 1427
+ },
+ {
+ "epoch": 19.838794233289647,
+ "grad_norm": 0.18405723571777344,
+ "learning_rate": 0.0006,
+ "loss": 3.939542293548584,
+ "step": 1428
+ },
+ {
+ "epoch": 19.852774137177807,
+ "grad_norm": 0.19672836363315582,
+ "learning_rate": 0.0006,
+ "loss": 3.939652919769287,
+ "step": 1429
+ },
+ {
+ "epoch": 19.866754041065967,
+ "grad_norm": 0.1998940259218216,
+ "learning_rate": 0.0006,
+ "loss": 3.932892322540283,
+ "step": 1430
+ },
+ {
+ "epoch": 19.88073394495413,
+ "grad_norm": 0.2307668924331665,
+ "learning_rate": 0.0006,
+ "loss": 3.9402761459350586,
+ "step": 1431
+ },
+ {
+ "epoch": 19.89471384884229,
+ "grad_norm": 0.2531987726688385,
+ "learning_rate": 0.0006,
+ "loss": 3.9153199195861816,
+ "step": 1432
+ },
+ {
+ "epoch": 19.90869375273045,
+ "grad_norm": 0.2299388349056244,
+ "learning_rate": 0.0006,
+ "loss": 3.9569954872131348,
+ "step": 1433
+ },
+ {
+ "epoch": 19.92267365661861,
+ "grad_norm": 0.2503527104854584,
+ "learning_rate": 0.0006,
+ "loss": 3.9469428062438965,
+ "step": 1434
+ },
+ {
+ "epoch": 19.936653560506773,
+ "grad_norm": 0.25390249490737915,
+ "learning_rate": 0.0006,
+ "loss": 3.941803455352783,
+ "step": 1435
+ },
+ {
+ "epoch": 19.950633464394933,
+ "grad_norm": 0.2288687825202942,
+ "learning_rate": 0.0006,
+ "loss": 3.9385883808135986,
+ "step": 1436
+ },
+ {
+ "epoch": 19.964613368283093,
+ "grad_norm": 0.2231096774339676,
+ "learning_rate": 0.0006,
+ "loss": 3.9255237579345703,
+ "step": 1437
+ },
+ {
+ "epoch": 19.978593272171253,
+ "grad_norm": 0.20729343593120575,
+ "learning_rate": 0.0006,
+ "loss": 3.9443163871765137,
+ "step": 1438
+ },
+ {
+ "epoch": 19.992573176059416,
+ "grad_norm": 0.197743758559227,
+ "learning_rate": 0.0006,
+ "loss": 3.925455093383789,
+ "step": 1439
+ },
+ {
+ "epoch": 20.0,
+ "grad_norm": 0.23943661153316498,
+ "learning_rate": 0.0006,
+ "loss": 3.9458866119384766,
+ "step": 1440
+ },
+ {
+ "epoch": 20.0,
+ "eval_loss": 4.144192218780518,
+ "eval_runtime": 44.0278,
+ "eval_samples_per_second": 55.465,
+ "eval_steps_per_second": 3.475,
+ "step": 1440
+ },
+ {
+ "epoch": 20.01397990388816,
+ "grad_norm": 0.2032143622636795,
+ "learning_rate": 0.0006,
+ "loss": 3.9151499271392822,
+ "step": 1441
+ },
+ {
+ "epoch": 20.027959807776323,
+ "grad_norm": 0.20164789259433746,
+ "learning_rate": 0.0006,
+ "loss": 3.874115228652954,
+ "step": 1442
+ },
+ {
+ "epoch": 20.041939711664483,
+ "grad_norm": 0.20796619355678558,
+ "learning_rate": 0.0006,
+ "loss": 3.9090776443481445,
+ "step": 1443
+ },
+ {
+ "epoch": 20.055919615552643,
+ "grad_norm": 0.1999918520450592,
+ "learning_rate": 0.0006,
+ "loss": 3.926563262939453,
+ "step": 1444
+ },
+ {
+ "epoch": 20.069899519440803,
+ "grad_norm": 0.204790860414505,
+ "learning_rate": 0.0006,
+ "loss": 3.9088830947875977,
+ "step": 1445
+ },
+ {
+ "epoch": 20.083879423328966,
+ "grad_norm": 0.21507175266742706,
+ "learning_rate": 0.0006,
+ "loss": 3.916504383087158,
+ "step": 1446
+ },
+ {
+ "epoch": 20.097859327217126,
+ "grad_norm": 0.2398025095462799,
+ "learning_rate": 0.0006,
+ "loss": 3.9128990173339844,
+ "step": 1447
+ },
+ {
+ "epoch": 20.111839231105286,
+ "grad_norm": 0.26037144660949707,
+ "learning_rate": 0.0006,
+ "loss": 3.9125187397003174,
+ "step": 1448
+ },
+ {
+ "epoch": 20.125819134993446,
+ "grad_norm": 0.25564828515052795,
+ "learning_rate": 0.0006,
+ "loss": 3.891867160797119,
+ "step": 1449
+ },
+ {
+ "epoch": 20.13979903888161,
+ "grad_norm": 0.2767223119735718,
+ "learning_rate": 0.0006,
+ "loss": 3.9202775955200195,
+ "step": 1450
+ },
+ {
+ "epoch": 20.15377894276977,
+ "grad_norm": 0.27696558833122253,
+ "learning_rate": 0.0006,
+ "loss": 3.9231314659118652,
+ "step": 1451
+ },
+ {
+ "epoch": 20.16775884665793,
+ "grad_norm": 0.3054044246673584,
+ "learning_rate": 0.0006,
+ "loss": 3.918138027191162,
+ "step": 1452
+ },
+ {
+ "epoch": 20.18173875054609,
+ "grad_norm": 0.3018973171710968,
+ "learning_rate": 0.0006,
+ "loss": 3.890678882598877,
+ "step": 1453
+ },
+ {
+ "epoch": 20.195718654434252,
+ "grad_norm": 0.306232750415802,
+ "learning_rate": 0.0006,
+ "loss": 3.920753002166748,
+ "step": 1454
+ },
+ {
+ "epoch": 20.209698558322412,
+ "grad_norm": 0.29593729972839355,
+ "learning_rate": 0.0006,
+ "loss": 3.9455509185791016,
+ "step": 1455
+ },
+ {
+ "epoch": 20.22367846221057,
+ "grad_norm": 0.2937646210193634,
+ "learning_rate": 0.0006,
+ "loss": 3.9227709770202637,
+ "step": 1456
+ },
+ {
+ "epoch": 20.23765836609873,
+ "grad_norm": 0.26380231976509094,
+ "learning_rate": 0.0006,
+ "loss": 3.9097609519958496,
+ "step": 1457
+ },
+ {
+ "epoch": 20.251638269986895,
+ "grad_norm": 0.24992692470550537,
+ "learning_rate": 0.0006,
+ "loss": 3.9393627643585205,
+ "step": 1458
+ },
+ {
+ "epoch": 20.265618173875055,
+ "grad_norm": 0.270219087600708,
+ "learning_rate": 0.0006,
+ "loss": 3.929330348968506,
+ "step": 1459
+ },
+ {
+ "epoch": 20.279598077763215,
+ "grad_norm": 0.2860020399093628,
+ "learning_rate": 0.0006,
+ "loss": 3.8947913646698,
+ "step": 1460
+ },
+ {
+ "epoch": 20.293577981651374,
+ "grad_norm": 0.27494579553604126,
+ "learning_rate": 0.0006,
+ "loss": 3.9105992317199707,
+ "step": 1461
+ },
+ {
+ "epoch": 20.307557885539538,
+ "grad_norm": 0.26467713713645935,
+ "learning_rate": 0.0006,
+ "loss": 3.914632797241211,
+ "step": 1462
+ },
+ {
+ "epoch": 20.321537789427698,
+ "grad_norm": 0.25747713446617126,
+ "learning_rate": 0.0006,
+ "loss": 3.919846534729004,
+ "step": 1463
+ },
+ {
+ "epoch": 20.335517693315857,
+ "grad_norm": 0.24027711153030396,
+ "learning_rate": 0.0006,
+ "loss": 3.904740810394287,
+ "step": 1464
+ },
+ {
+ "epoch": 20.34949759720402,
+ "grad_norm": 0.24682414531707764,
+ "learning_rate": 0.0006,
+ "loss": 3.9190149307250977,
+ "step": 1465
+ },
+ {
+ "epoch": 20.36347750109218,
+ "grad_norm": 0.2619759440422058,
+ "learning_rate": 0.0006,
+ "loss": 3.9488329887390137,
+ "step": 1466
+ },
+ {
+ "epoch": 20.37745740498034,
+ "grad_norm": 0.2632448971271515,
+ "learning_rate": 0.0006,
+ "loss": 3.9216647148132324,
+ "step": 1467
+ },
+ {
+ "epoch": 20.3914373088685,
+ "grad_norm": 0.27569764852523804,
+ "learning_rate": 0.0006,
+ "loss": 3.9178895950317383,
+ "step": 1468
+ },
+ {
+ "epoch": 20.405417212756664,
+ "grad_norm": 0.2611774802207947,
+ "learning_rate": 0.0006,
+ "loss": 3.933730125427246,
+ "step": 1469
+ },
+ {
+ "epoch": 20.419397116644824,
+ "grad_norm": 0.2839447557926178,
+ "learning_rate": 0.0006,
+ "loss": 3.9261364936828613,
+ "step": 1470
+ },
+ {
+ "epoch": 20.433377020532983,
+ "grad_norm": 0.29006227850914,
+ "learning_rate": 0.0006,
+ "loss": 3.9157633781433105,
+ "step": 1471
+ },
+ {
+ "epoch": 20.447356924421143,
+ "grad_norm": 0.2809498906135559,
+ "learning_rate": 0.0006,
+ "loss": 3.9211745262145996,
+ "step": 1472
+ },
+ {
+ "epoch": 20.461336828309307,
+ "grad_norm": 0.27859532833099365,
+ "learning_rate": 0.0006,
+ "loss": 3.9115967750549316,
+ "step": 1473
+ },
+ {
+ "epoch": 20.475316732197467,
+ "grad_norm": 0.29114410281181335,
+ "learning_rate": 0.0006,
+ "loss": 3.9024441242218018,
+ "step": 1474
+ },
+ {
+ "epoch": 20.489296636085626,
+ "grad_norm": 0.2686930000782013,
+ "learning_rate": 0.0006,
+ "loss": 3.9497199058532715,
+ "step": 1475
+ },
+ {
+ "epoch": 20.503276539973786,
+ "grad_norm": 0.24120540916919708,
+ "learning_rate": 0.0006,
+ "loss": 3.9218955039978027,
+ "step": 1476
+ },
+ {
+ "epoch": 20.51725644386195,
+ "grad_norm": 0.23689547181129456,
+ "learning_rate": 0.0006,
+ "loss": 3.9410176277160645,
+ "step": 1477
+ },
+ {
+ "epoch": 20.53123634775011,
+ "grad_norm": 0.26382362842559814,
+ "learning_rate": 0.0006,
+ "loss": 3.8880343437194824,
+ "step": 1478
+ },
+ {
+ "epoch": 20.54521625163827,
+ "grad_norm": 0.21628661453723907,
+ "learning_rate": 0.0006,
+ "loss": 3.892622470855713,
+ "step": 1479
+ },
+ {
+ "epoch": 20.55919615552643,
+ "grad_norm": 0.19896996021270752,
+ "learning_rate": 0.0006,
+ "loss": 3.938734769821167,
+ "step": 1480
+ },
+ {
+ "epoch": 20.573176059414592,
+ "grad_norm": 0.20232494175434113,
+ "learning_rate": 0.0006,
+ "loss": 3.9197006225585938,
+ "step": 1481
+ },
+ {
+ "epoch": 20.587155963302752,
+ "grad_norm": 0.21807828545570374,
+ "learning_rate": 0.0006,
+ "loss": 3.9195618629455566,
+ "step": 1482
+ },
+ {
+ "epoch": 20.601135867190912,
+ "grad_norm": 0.21778680384159088,
+ "learning_rate": 0.0006,
+ "loss": 3.913395404815674,
+ "step": 1483
+ },
+ {
+ "epoch": 20.615115771079076,
+ "grad_norm": 0.21015185117721558,
+ "learning_rate": 0.0006,
+ "loss": 3.8858234882354736,
+ "step": 1484
+ },
+ {
+ "epoch": 20.629095674967235,
+ "grad_norm": 0.20131368935108185,
+ "learning_rate": 0.0006,
+ "loss": 3.927213430404663,
+ "step": 1485
+ },
+ {
+ "epoch": 20.643075578855395,
+ "grad_norm": 0.20746243000030518,
+ "learning_rate": 0.0006,
+ "loss": 3.913198471069336,
+ "step": 1486
+ },
+ {
+ "epoch": 20.657055482743555,
+ "grad_norm": 0.2024548053741455,
+ "learning_rate": 0.0006,
+ "loss": 3.923048257827759,
+ "step": 1487
+ },
+ {
+ "epoch": 20.67103538663172,
+ "grad_norm": 0.19735988974571228,
+ "learning_rate": 0.0006,
+ "loss": 3.9136500358581543,
+ "step": 1488
+ },
+ {
+ "epoch": 20.68501529051988,
+ "grad_norm": 0.19781625270843506,
+ "learning_rate": 0.0006,
+ "loss": 3.883793592453003,
+ "step": 1489
+ },
+ {
+ "epoch": 20.698995194408038,
+ "grad_norm": 0.1911996454000473,
+ "learning_rate": 0.0006,
+ "loss": 3.9078567028045654,
+ "step": 1490
+ },
+ {
+ "epoch": 20.712975098296198,
+ "grad_norm": 0.1989123821258545,
+ "learning_rate": 0.0006,
+ "loss": 3.9314043521881104,
+ "step": 1491
+ },
+ {
+ "epoch": 20.72695500218436,
+ "grad_norm": 0.18839342892169952,
+ "learning_rate": 0.0006,
+ "loss": 3.8955953121185303,
+ "step": 1492
+ },
+ {
+ "epoch": 20.74093490607252,
+ "grad_norm": 0.1944834142923355,
+ "learning_rate": 0.0006,
+ "loss": 3.9272377490997314,
+ "step": 1493
+ },
+ {
+ "epoch": 20.75491480996068,
+ "grad_norm": 0.20829126238822937,
+ "learning_rate": 0.0006,
+ "loss": 3.878857374191284,
+ "step": 1494
+ },
+ {
+ "epoch": 20.76889471384884,
+ "grad_norm": 0.21438424289226532,
+ "learning_rate": 0.0006,
+ "loss": 3.9155564308166504,
+ "step": 1495
+ },
+ {
+ "epoch": 20.782874617737004,
+ "grad_norm": 0.22309324145317078,
+ "learning_rate": 0.0006,
+ "loss": 3.9281692504882812,
+ "step": 1496
+ },
+ {
+ "epoch": 20.796854521625164,
+ "grad_norm": 0.2053767591714859,
+ "learning_rate": 0.0006,
+ "loss": 3.9096317291259766,
+ "step": 1497
+ },
+ {
+ "epoch": 20.810834425513324,
+ "grad_norm": 0.20429186522960663,
+ "learning_rate": 0.0006,
+ "loss": 3.9184865951538086,
+ "step": 1498
+ },
+ {
+ "epoch": 20.824814329401484,
+ "grad_norm": 0.21983473002910614,
+ "learning_rate": 0.0006,
+ "loss": 3.9130771160125732,
+ "step": 1499
+ },
+ {
+ "epoch": 20.838794233289647,
+ "grad_norm": 0.21649539470672607,
+ "learning_rate": 0.0006,
+ "loss": 3.921581268310547,
+ "step": 1500
+ },
+ {
+ "epoch": 20.852774137177807,
+ "grad_norm": 0.19645053148269653,
+ "learning_rate": 0.0006,
+ "loss": 3.966360092163086,
+ "step": 1501
+ },
+ {
+ "epoch": 20.866754041065967,
+ "grad_norm": 0.2126782387495041,
+ "learning_rate": 0.0006,
+ "loss": 3.9004554748535156,
+ "step": 1502
+ },
+ {
+ "epoch": 20.88073394495413,
+ "grad_norm": 0.22359658777713776,
+ "learning_rate": 0.0006,
+ "loss": 3.92336368560791,
+ "step": 1503
+ },
+ {
+ "epoch": 20.89471384884229,
+ "grad_norm": 0.2334042638540268,
+ "learning_rate": 0.0006,
+ "loss": 3.9188671112060547,
+ "step": 1504
+ },
+ {
+ "epoch": 20.90869375273045,
+ "grad_norm": 0.24595916271209717,
+ "learning_rate": 0.0006,
+ "loss": 3.9348371028900146,
+ "step": 1505
+ },
+ {
+ "epoch": 20.92267365661861,
+ "grad_norm": 0.24177910387516022,
+ "learning_rate": 0.0006,
+ "loss": 3.8796424865722656,
+ "step": 1506
+ },
+ {
+ "epoch": 20.936653560506773,
+ "grad_norm": 0.24193289875984192,
+ "learning_rate": 0.0006,
+ "loss": 3.892627716064453,
+ "step": 1507
+ },
+ {
+ "epoch": 20.950633464394933,
+ "grad_norm": 0.252849280834198,
+ "learning_rate": 0.0006,
+ "loss": 3.9300179481506348,
+ "step": 1508
+ },
+ {
+ "epoch": 20.964613368283093,
+ "grad_norm": 0.24933326244354248,
+ "learning_rate": 0.0006,
+ "loss": 3.9597225189208984,
+ "step": 1509
+ },
+ {
+ "epoch": 20.978593272171253,
+ "grad_norm": 0.23850969970226288,
+ "learning_rate": 0.0006,
+ "loss": 3.9027397632598877,
+ "step": 1510
+ },
+ {
+ "epoch": 20.992573176059416,
+ "grad_norm": 0.23298311233520508,
+ "learning_rate": 0.0006,
+ "loss": 3.9024105072021484,
+ "step": 1511
+ },
+ {
+ "epoch": 21.0,
+ "grad_norm": 0.2467455416917801,
+ "learning_rate": 0.0006,
+ "loss": 3.915929079055786,
+ "step": 1512
+ },
+ {
+ "epoch": 21.0,
+ "eval_loss": 4.136331081390381,
+ "eval_runtime": 43.9468,
+ "eval_samples_per_second": 55.567,
+ "eval_steps_per_second": 3.481,
+ "step": 1512
+ },
+ {
+ "epoch": 21.01397990388816,
+ "grad_norm": 0.2195885181427002,
+ "learning_rate": 0.0006,
+ "loss": 3.873412847518921,
+ "step": 1513
+ },
+ {
+ "epoch": 21.027959807776323,
+ "grad_norm": 0.24250614643096924,
+ "learning_rate": 0.0006,
+ "loss": 3.882302761077881,
+ "step": 1514
+ },
+ {
+ "epoch": 21.041939711664483,
+ "grad_norm": 0.249113991856575,
+ "learning_rate": 0.0006,
+ "loss": 3.9112048149108887,
+ "step": 1515
+ },
+ {
+ "epoch": 21.055919615552643,
+ "grad_norm": 0.25365301966667175,
+ "learning_rate": 0.0006,
+ "loss": 3.8625712394714355,
+ "step": 1516
+ },
+ {
+ "epoch": 21.069899519440803,
+ "grad_norm": 0.2218591272830963,
+ "learning_rate": 0.0006,
+ "loss": 3.876072406768799,
+ "step": 1517
+ },
+ {
+ "epoch": 21.083879423328966,
+ "grad_norm": 0.238582581281662,
+ "learning_rate": 0.0006,
+ "loss": 3.862060546875,
+ "step": 1518
+ },
+ {
+ "epoch": 21.097859327217126,
+ "grad_norm": 0.25051242113113403,
+ "learning_rate": 0.0006,
+ "loss": 3.905315399169922,
+ "step": 1519
+ },
+ {
+ "epoch": 21.111839231105286,
+ "grad_norm": 0.2391843944787979,
+ "learning_rate": 0.0006,
+ "loss": 3.909144401550293,
+ "step": 1520
+ },
+ {
+ "epoch": 21.125819134993446,
+ "grad_norm": 0.230543315410614,
+ "learning_rate": 0.0006,
+ "loss": 3.8856799602508545,
+ "step": 1521
+ },
+ {
+ "epoch": 21.13979903888161,
+ "grad_norm": 0.24165484309196472,
+ "learning_rate": 0.0006,
+ "loss": 3.893883228302002,
+ "step": 1522
+ },
+ {
+ "epoch": 21.15377894276977,
+ "grad_norm": 0.24657143652439117,
+ "learning_rate": 0.0006,
+ "loss": 3.901129722595215,
+ "step": 1523
+ },
+ {
+ "epoch": 21.16775884665793,
+ "grad_norm": 0.2659998834133148,
+ "learning_rate": 0.0006,
+ "loss": 3.910468101501465,
+ "step": 1524
+ },
+ {
+ "epoch": 21.18173875054609,
+ "grad_norm": 0.2673095166683197,
+ "learning_rate": 0.0006,
+ "loss": 3.917454242706299,
+ "step": 1525
+ },
+ {
+ "epoch": 21.195718654434252,
+ "grad_norm": 0.22122322022914886,
+ "learning_rate": 0.0006,
+ "loss": 3.9017257690429688,
+ "step": 1526
+ },
+ {
+ "epoch": 21.209698558322412,
+ "grad_norm": 0.21882867813110352,
+ "learning_rate": 0.0006,
+ "loss": 3.8605496883392334,
+ "step": 1527
+ },
+ {
+ "epoch": 21.22367846221057,
+ "grad_norm": 0.22335563600063324,
+ "learning_rate": 0.0006,
+ "loss": 3.88120174407959,
+ "step": 1528
+ },
+ {
+ "epoch": 21.23765836609873,
+ "grad_norm": 0.22973211109638214,
+ "learning_rate": 0.0006,
+ "loss": 3.8636834621429443,
+ "step": 1529
+ },
+ {
+ "epoch": 21.251638269986895,
+ "grad_norm": 0.2410288006067276,
+ "learning_rate": 0.0006,
+ "loss": 3.8698177337646484,
+ "step": 1530
+ },
+ {
+ "epoch": 21.265618173875055,
+ "grad_norm": 0.2454768717288971,
+ "learning_rate": 0.0006,
+ "loss": 3.905341148376465,
+ "step": 1531
+ },
+ {
+ "epoch": 21.279598077763215,
+ "grad_norm": 0.2271580696105957,
+ "learning_rate": 0.0006,
+ "loss": 3.864063262939453,
+ "step": 1532
+ },
+ {
+ "epoch": 21.293577981651374,
+ "grad_norm": 0.2200947403907776,
+ "learning_rate": 0.0006,
+ "loss": 3.8889589309692383,
+ "step": 1533
+ },
+ {
+ "epoch": 21.307557885539538,
+ "grad_norm": 0.2180824875831604,
+ "learning_rate": 0.0006,
+ "loss": 3.8873472213745117,
+ "step": 1534
+ },
+ {
+ "epoch": 21.321537789427698,
+ "grad_norm": 0.214975506067276,
+ "learning_rate": 0.0006,
+ "loss": 3.882307529449463,
+ "step": 1535
+ },
+ {
+ "epoch": 21.335517693315857,
+ "grad_norm": 0.21411260962486267,
+ "learning_rate": 0.0006,
+ "loss": 3.8861560821533203,
+ "step": 1536
+ },
+ {
+ "epoch": 21.34949759720402,
+ "grad_norm": 0.22635889053344727,
+ "learning_rate": 0.0006,
+ "loss": 3.9174342155456543,
+ "step": 1537
+ },
+ {
+ "epoch": 21.36347750109218,
+ "grad_norm": 0.22700625658035278,
+ "learning_rate": 0.0006,
+ "loss": 3.890416383743286,
+ "step": 1538
+ },
+ {
+ "epoch": 21.37745740498034,
+ "grad_norm": 0.2106025069952011,
+ "learning_rate": 0.0006,
+ "loss": 3.8672406673431396,
+ "step": 1539
+ },
+ {
+ "epoch": 21.3914373088685,
+ "grad_norm": 0.22994661331176758,
+ "learning_rate": 0.0006,
+ "loss": 3.893190383911133,
+ "step": 1540
+ },
+ {
+ "epoch": 21.405417212756664,
+ "grad_norm": 0.24701105058193207,
+ "learning_rate": 0.0006,
+ "loss": 3.898078441619873,
+ "step": 1541
+ },
+ {
+ "epoch": 21.419397116644824,
+ "grad_norm": 0.26914113759994507,
+ "learning_rate": 0.0006,
+ "loss": 3.905871868133545,
+ "step": 1542
+ },
+ {
+ "epoch": 21.433377020532983,
+ "grad_norm": 0.2904224097728729,
+ "learning_rate": 0.0006,
+ "loss": 3.8919103145599365,
+ "step": 1543
+ },
+ {
+ "epoch": 21.447356924421143,
+ "grad_norm": 0.2911844551563263,
+ "learning_rate": 0.0006,
+ "loss": 3.9073286056518555,
+ "step": 1544
+ },
+ {
+ "epoch": 21.461336828309307,
+ "grad_norm": 0.2742345929145813,
+ "learning_rate": 0.0006,
+ "loss": 3.9075546264648438,
+ "step": 1545
+ },
+ {
+ "epoch": 21.475316732197467,
+ "grad_norm": 0.2341093122959137,
+ "learning_rate": 0.0006,
+ "loss": 3.9232025146484375,
+ "step": 1546
+ },
+ {
+ "epoch": 21.489296636085626,
+ "grad_norm": 0.22808541357517242,
+ "learning_rate": 0.0006,
+ "loss": 3.9168174266815186,
+ "step": 1547
+ },
+ {
+ "epoch": 21.503276539973786,
+ "grad_norm": 0.23049889504909515,
+ "learning_rate": 0.0006,
+ "loss": 3.8850595951080322,
+ "step": 1548
+ },
+ {
+ "epoch": 21.51725644386195,
+ "grad_norm": 0.21519650518894196,
+ "learning_rate": 0.0006,
+ "loss": 3.891313076019287,
+ "step": 1549
+ },
+ {
+ "epoch": 21.53123634775011,
+ "grad_norm": 0.20999883115291595,
+ "learning_rate": 0.0006,
+ "loss": 3.894439220428467,
+ "step": 1550
+ },
+ {
+ "epoch": 21.54521625163827,
+ "grad_norm": 0.19641105830669403,
+ "learning_rate": 0.0006,
+ "loss": 3.894871473312378,
+ "step": 1551
+ },
+ {
+ "epoch": 21.55919615552643,
+ "grad_norm": 0.19108249247074127,
+ "learning_rate": 0.0006,
+ "loss": 3.905968189239502,
+ "step": 1552
+ },
+ {
+ "epoch": 21.573176059414592,
+ "grad_norm": 0.20222234725952148,
+ "learning_rate": 0.0006,
+ "loss": 3.90565824508667,
+ "step": 1553
+ },
+ {
+ "epoch": 21.587155963302752,
+ "grad_norm": 0.20620177686214447,
+ "learning_rate": 0.0006,
+ "loss": 3.9103245735168457,
+ "step": 1554
+ },
+ {
+ "epoch": 21.601135867190912,
+ "grad_norm": 0.2149713784456253,
+ "learning_rate": 0.0006,
+ "loss": 3.8864927291870117,
+ "step": 1555
+ },
+ {
+ "epoch": 21.615115771079076,
+ "grad_norm": 0.2354084551334381,
+ "learning_rate": 0.0006,
+ "loss": 3.905095100402832,
+ "step": 1556
+ },
+ {
+ "epoch": 21.629095674967235,
+ "grad_norm": 0.23949941992759705,
+ "learning_rate": 0.0006,
+ "loss": 3.901803493499756,
+ "step": 1557
+ },
+ {
+ "epoch": 21.643075578855395,
+ "grad_norm": 0.22914277017116547,
+ "learning_rate": 0.0006,
+ "loss": 3.876044273376465,
+ "step": 1558
+ },
+ {
+ "epoch": 21.657055482743555,
+ "grad_norm": 0.2363225370645523,
+ "learning_rate": 0.0006,
+ "loss": 3.910841703414917,
+ "step": 1559
+ },
+ {
+ "epoch": 21.67103538663172,
+ "grad_norm": 0.2635626792907715,
+ "learning_rate": 0.0006,
+ "loss": 3.847407579421997,
+ "step": 1560
+ },
+ {
+ "epoch": 21.68501529051988,
+ "grad_norm": 0.2499786615371704,
+ "learning_rate": 0.0006,
+ "loss": 3.8667140007019043,
+ "step": 1561
+ },
+ {
+ "epoch": 21.698995194408038,
+ "grad_norm": 0.21609611809253693,
+ "learning_rate": 0.0006,
+ "loss": 3.895470142364502,
+ "step": 1562
+ },
+ {
+ "epoch": 21.712975098296198,
+ "grad_norm": 0.2466774582862854,
+ "learning_rate": 0.0006,
+ "loss": 3.8853235244750977,
+ "step": 1563
+ },
+ {
+ "epoch": 21.72695500218436,
+ "grad_norm": 0.23791883885860443,
+ "learning_rate": 0.0006,
+ "loss": 3.899418354034424,
+ "step": 1564
+ },
+ {
+ "epoch": 21.74093490607252,
+ "grad_norm": 0.2048920840024948,
+ "learning_rate": 0.0006,
+ "loss": 3.8992419242858887,
+ "step": 1565
+ },
+ {
+ "epoch": 21.75491480996068,
+ "grad_norm": 0.22266621887683868,
+ "learning_rate": 0.0006,
+ "loss": 3.885765552520752,
+ "step": 1566
+ },
+ {
+ "epoch": 21.76889471384884,
+ "grad_norm": 0.2508748769760132,
+ "learning_rate": 0.0006,
+ "loss": 3.8797037601470947,
+ "step": 1567
+ },
+ {
+ "epoch": 21.782874617737004,
+ "grad_norm": 0.27245673537254333,
+ "learning_rate": 0.0006,
+ "loss": 3.8743176460266113,
+ "step": 1568
+ },
+ {
+ "epoch": 21.796854521625164,
+ "grad_norm": 0.25503191351890564,
+ "learning_rate": 0.0006,
+ "loss": 3.868906259536743,
+ "step": 1569
+ },
+ {
+ "epoch": 21.810834425513324,
+ "grad_norm": 0.22984394431114197,
+ "learning_rate": 0.0006,
+ "loss": 3.9051015377044678,
+ "step": 1570
+ },
+ {
+ "epoch": 21.824814329401484,
+ "grad_norm": 0.2411898821592331,
+ "learning_rate": 0.0006,
+ "loss": 3.8911490440368652,
+ "step": 1571
+ },
+ {
+ "epoch": 21.838794233289647,
+ "grad_norm": 0.22609318792819977,
+ "learning_rate": 0.0006,
+ "loss": 3.894839286804199,
+ "step": 1572
+ },
+ {
+ "epoch": 21.852774137177807,
+ "grad_norm": 0.21904583275318146,
+ "learning_rate": 0.0006,
+ "loss": 3.9314537048339844,
+ "step": 1573
+ },
+ {
+ "epoch": 21.866754041065967,
+ "grad_norm": 0.21869723498821259,
+ "learning_rate": 0.0006,
+ "loss": 3.9141433238983154,
+ "step": 1574
+ },
+ {
+ "epoch": 21.88073394495413,
+ "grad_norm": 0.21682019531726837,
+ "learning_rate": 0.0006,
+ "loss": 3.867898464202881,
+ "step": 1575
+ },
+ {
+ "epoch": 21.89471384884229,
+ "grad_norm": 0.2211964726448059,
+ "learning_rate": 0.0006,
+ "loss": 3.8892226219177246,
+ "step": 1576
+ },
+ {
+ "epoch": 21.90869375273045,
+ "grad_norm": 0.2097381353378296,
+ "learning_rate": 0.0006,
+ "loss": 3.9194154739379883,
+ "step": 1577
+ },
+ {
+ "epoch": 21.92267365661861,
+ "grad_norm": 0.21229565143585205,
+ "learning_rate": 0.0006,
+ "loss": 3.924694538116455,
+ "step": 1578
+ },
+ {
+ "epoch": 21.936653560506773,
+ "grad_norm": 0.2186083346605301,
+ "learning_rate": 0.0006,
+ "loss": 3.904440402984619,
+ "step": 1579
+ },
+ {
+ "epoch": 21.950633464394933,
+ "grad_norm": 0.21112321317195892,
+ "learning_rate": 0.0006,
+ "loss": 3.905674934387207,
+ "step": 1580
+ },
+ {
+ "epoch": 21.964613368283093,
+ "grad_norm": 0.20867373049259186,
+ "learning_rate": 0.0006,
+ "loss": 3.8761563301086426,
+ "step": 1581
+ },
+ {
+ "epoch": 21.978593272171253,
+ "grad_norm": 0.21640732884407043,
+ "learning_rate": 0.0006,
+ "loss": 3.871950149536133,
+ "step": 1582
+ },
+ {
+ "epoch": 21.992573176059416,
+ "grad_norm": 0.21920442581176758,
+ "learning_rate": 0.0006,
+ "loss": 3.8853464126586914,
+ "step": 1583
+ },
+ {
+ "epoch": 22.0,
+ "grad_norm": 0.24132665991783142,
+ "learning_rate": 0.0006,
+ "loss": 3.9012184143066406,
+ "step": 1584
+ },
+ {
+ "epoch": 22.0,
+ "eval_loss": 4.108598232269287,
+ "eval_runtime": 44.0434,
+ "eval_samples_per_second": 55.445,
+ "eval_steps_per_second": 3.474,
+ "step": 1584
+ },
+ {
+ "epoch": 22.01397990388816,
+ "grad_norm": 0.21989449858665466,
+ "learning_rate": 0.0006,
+ "loss": 3.8657469749450684,
+ "step": 1585
+ },
+ {
+ "epoch": 22.027959807776323,
+ "grad_norm": 0.20416802167892456,
+ "learning_rate": 0.0006,
+ "loss": 3.8682117462158203,
+ "step": 1586
+ },
+ {
+ "epoch": 22.041939711664483,
+ "grad_norm": 0.20651975274085999,
+ "learning_rate": 0.0006,
+ "loss": 3.8501222133636475,
+ "step": 1587
+ },
+ {
+ "epoch": 22.055919615552643,
+ "grad_norm": 0.22987176477909088,
+ "learning_rate": 0.0006,
+ "loss": 3.8830955028533936,
+ "step": 1588
+ },
+ {
+ "epoch": 22.069899519440803,
+ "grad_norm": 0.23308858275413513,
+ "learning_rate": 0.0006,
+ "loss": 3.8659040927886963,
+ "step": 1589
+ },
+ {
+ "epoch": 22.083879423328966,
+ "grad_norm": 0.2144266963005066,
+ "learning_rate": 0.0006,
+ "loss": 3.8311047554016113,
+ "step": 1590
+ },
+ {
+ "epoch": 22.097859327217126,
+ "grad_norm": 0.2052636295557022,
+ "learning_rate": 0.0006,
+ "loss": 3.8700156211853027,
+ "step": 1591
+ },
+ {
+ "epoch": 22.111839231105286,
+ "grad_norm": 0.22792384028434753,
+ "learning_rate": 0.0006,
+ "loss": 3.8799097537994385,
+ "step": 1592
+ },
+ {
+ "epoch": 22.125819134993446,
+ "grad_norm": 0.2533944249153137,
+ "learning_rate": 0.0006,
+ "loss": 3.874959945678711,
+ "step": 1593
+ },
+ {
+ "epoch": 22.13979903888161,
+ "grad_norm": 0.27126258611679077,
+ "learning_rate": 0.0006,
+ "loss": 3.863774299621582,
+ "step": 1594
+ },
+ {
+ "epoch": 22.15377894276977,
+ "grad_norm": 0.2634040415287018,
+ "learning_rate": 0.0006,
+ "loss": 3.8876869678497314,
+ "step": 1595
+ },
+ {
+ "epoch": 22.16775884665793,
+ "grad_norm": 0.267987459897995,
+ "learning_rate": 0.0006,
+ "loss": 3.871776819229126,
+ "step": 1596
+ },
+ {
+ "epoch": 22.18173875054609,
+ "grad_norm": 0.2972337305545807,
+ "learning_rate": 0.0006,
+ "loss": 3.8453969955444336,
+ "step": 1597
+ },
+ {
+ "epoch": 22.195718654434252,
+ "grad_norm": 0.3012159764766693,
+ "learning_rate": 0.0006,
+ "loss": 3.8774254322052,
+ "step": 1598
+ },
+ {
+ "epoch": 22.209698558322412,
+ "grad_norm": 0.27275875210762024,
+ "learning_rate": 0.0006,
+ "loss": 3.8558950424194336,
+ "step": 1599
+ },
+ {
+ "epoch": 22.22367846221057,
+ "grad_norm": 0.2817993462085724,
+ "learning_rate": 0.0006,
+ "loss": 3.872211217880249,
+ "step": 1600
+ },
+ {
+ "epoch": 22.23765836609873,
+ "grad_norm": 0.28823208808898926,
+ "learning_rate": 0.0006,
+ "loss": 3.847616672515869,
+ "step": 1601
+ },
+ {
+ "epoch": 22.251638269986895,
+ "grad_norm": 0.2646387815475464,
+ "learning_rate": 0.0006,
+ "loss": 3.8993802070617676,
+ "step": 1602
+ },
+ {
+ "epoch": 22.265618173875055,
+ "grad_norm": 0.27664077281951904,
+ "learning_rate": 0.0006,
+ "loss": 3.858553409576416,
+ "step": 1603
+ },
+ {
+ "epoch": 22.279598077763215,
+ "grad_norm": 0.27708905935287476,
+ "learning_rate": 0.0006,
+ "loss": 3.8691039085388184,
+ "step": 1604
+ },
+ {
+ "epoch": 22.293577981651374,
+ "grad_norm": 0.3045521378517151,
+ "learning_rate": 0.0006,
+ "loss": 3.8721439838409424,
+ "step": 1605
+ },
+ {
+ "epoch": 22.307557885539538,
+ "grad_norm": 0.3481914699077606,
+ "learning_rate": 0.0006,
+ "loss": 3.894503593444824,
+ "step": 1606
+ },
+ {
+ "epoch": 22.321537789427698,
+ "grad_norm": 0.3298046588897705,
+ "learning_rate": 0.0006,
+ "loss": 3.8420844078063965,
+ "step": 1607
+ },
+ {
+ "epoch": 22.335517693315857,
+ "grad_norm": 0.24967724084854126,
+ "learning_rate": 0.0006,
+ "loss": 3.8892619609832764,
+ "step": 1608
+ },
+ {
+ "epoch": 22.34949759720402,
+ "grad_norm": 0.22645241022109985,
+ "learning_rate": 0.0006,
+ "loss": 3.873265504837036,
+ "step": 1609
+ },
+ {
+ "epoch": 22.36347750109218,
+ "grad_norm": 0.22813954949378967,
+ "learning_rate": 0.0006,
+ "loss": 3.8658013343811035,
+ "step": 1610
+ },
+ {
+ "epoch": 22.37745740498034,
+ "grad_norm": 0.23825274407863617,
+ "learning_rate": 0.0006,
+ "loss": 3.885456085205078,
+ "step": 1611
+ },
+ {
+ "epoch": 22.3914373088685,
+ "grad_norm": 0.23612336814403534,
+ "learning_rate": 0.0006,
+ "loss": 3.851841449737549,
+ "step": 1612
+ },
+ {
+ "epoch": 22.405417212756664,
+ "grad_norm": 0.23851265013217926,
+ "learning_rate": 0.0006,
+ "loss": 3.8711647987365723,
+ "step": 1613
+ },
+ {
+ "epoch": 22.419397116644824,
+ "grad_norm": 0.22977286577224731,
+ "learning_rate": 0.0006,
+ "loss": 3.848539113998413,
+ "step": 1614
+ },
+ {
+ "epoch": 22.433377020532983,
+ "grad_norm": 0.20970143377780914,
+ "learning_rate": 0.0006,
+ "loss": 3.8709521293640137,
+ "step": 1615
+ },
+ {
+ "epoch": 22.447356924421143,
+ "grad_norm": 0.20714804530143738,
+ "learning_rate": 0.0006,
+ "loss": 3.875060558319092,
+ "step": 1616
+ },
+ {
+ "epoch": 22.461336828309307,
+ "grad_norm": 0.18881355226039886,
+ "learning_rate": 0.0006,
+ "loss": 3.8744640350341797,
+ "step": 1617
+ },
+ {
+ "epoch": 22.475316732197467,
+ "grad_norm": 0.1928759068250656,
+ "learning_rate": 0.0006,
+ "loss": 3.867971420288086,
+ "step": 1618
+ },
+ {
+ "epoch": 22.489296636085626,
+ "grad_norm": 0.18614749610424042,
+ "learning_rate": 0.0006,
+ "loss": 3.8738222122192383,
+ "step": 1619
+ },
+ {
+ "epoch": 22.503276539973786,
+ "grad_norm": 0.18614931404590607,
+ "learning_rate": 0.0006,
+ "loss": 3.8470513820648193,
+ "step": 1620
+ },
+ {
+ "epoch": 22.51725644386195,
+ "grad_norm": 0.17805059254169464,
+ "learning_rate": 0.0006,
+ "loss": 3.866396903991699,
+ "step": 1621
+ },
+ {
+ "epoch": 22.53123634775011,
+ "grad_norm": 0.16941314935684204,
+ "learning_rate": 0.0006,
+ "loss": 3.856832265853882,
+ "step": 1622
+ },
+ {
+ "epoch": 22.54521625163827,
+ "grad_norm": 0.1802310198545456,
+ "learning_rate": 0.0006,
+ "loss": 3.885653018951416,
+ "step": 1623
+ },
+ {
+ "epoch": 22.55919615552643,
+ "grad_norm": 0.1854856163263321,
+ "learning_rate": 0.0006,
+ "loss": 3.8779640197753906,
+ "step": 1624
+ },
+ {
+ "epoch": 22.573176059414592,
+ "grad_norm": 0.18765869736671448,
+ "learning_rate": 0.0006,
+ "loss": 3.8449032306671143,
+ "step": 1625
+ },
+ {
+ "epoch": 22.587155963302752,
+ "grad_norm": 0.1907789707183838,
+ "learning_rate": 0.0006,
+ "loss": 3.863029718399048,
+ "step": 1626
+ },
+ {
+ "epoch": 22.601135867190912,
+ "grad_norm": 0.19285395741462708,
+ "learning_rate": 0.0006,
+ "loss": 3.880145788192749,
+ "step": 1627
+ },
+ {
+ "epoch": 22.615115771079076,
+ "grad_norm": 0.19229751825332642,
+ "learning_rate": 0.0006,
+ "loss": 3.8521225452423096,
+ "step": 1628
+ },
+ {
+ "epoch": 22.629095674967235,
+ "grad_norm": 0.191694438457489,
+ "learning_rate": 0.0006,
+ "loss": 3.899827003479004,
+ "step": 1629
+ },
+ {
+ "epoch": 22.643075578855395,
+ "grad_norm": 0.20143048465251923,
+ "learning_rate": 0.0006,
+ "loss": 3.862064838409424,
+ "step": 1630
+ },
+ {
+ "epoch": 22.657055482743555,
+ "grad_norm": 0.1959840953350067,
+ "learning_rate": 0.0006,
+ "loss": 3.8955392837524414,
+ "step": 1631
+ },
+ {
+ "epoch": 22.67103538663172,
+ "grad_norm": 0.21454884111881256,
+ "learning_rate": 0.0006,
+ "loss": 3.8503167629241943,
+ "step": 1632
+ },
+ {
+ "epoch": 22.68501529051988,
+ "grad_norm": 0.21748484671115875,
+ "learning_rate": 0.0006,
+ "loss": 3.897134304046631,
+ "step": 1633
+ },
+ {
+ "epoch": 22.698995194408038,
+ "grad_norm": 0.21204186975955963,
+ "learning_rate": 0.0006,
+ "loss": 3.9292588233947754,
+ "step": 1634
+ },
+ {
+ "epoch": 22.712975098296198,
+ "grad_norm": 0.2112748771905899,
+ "learning_rate": 0.0006,
+ "loss": 3.89798641204834,
+ "step": 1635
+ },
+ {
+ "epoch": 22.72695500218436,
+ "grad_norm": 0.188576802611351,
+ "learning_rate": 0.0006,
+ "loss": 3.85627818107605,
+ "step": 1636
+ },
+ {
+ "epoch": 22.74093490607252,
+ "grad_norm": 0.17755994200706482,
+ "learning_rate": 0.0006,
+ "loss": 3.8480074405670166,
+ "step": 1637
+ },
+ {
+ "epoch": 22.75491480996068,
+ "grad_norm": 0.18037520349025726,
+ "learning_rate": 0.0006,
+ "loss": 3.8800172805786133,
+ "step": 1638
+ },
+ {
+ "epoch": 22.76889471384884,
+ "grad_norm": 0.19205765426158905,
+ "learning_rate": 0.0006,
+ "loss": 3.8658275604248047,
+ "step": 1639
+ },
+ {
+ "epoch": 22.782874617737004,
+ "grad_norm": 0.21801964938640594,
+ "learning_rate": 0.0006,
+ "loss": 3.8999452590942383,
+ "step": 1640
+ },
+ {
+ "epoch": 22.796854521625164,
+ "grad_norm": 0.23586086928844452,
+ "learning_rate": 0.0006,
+ "loss": 3.8660664558410645,
+ "step": 1641
+ },
+ {
+ "epoch": 22.810834425513324,
+ "grad_norm": 0.22289055585861206,
+ "learning_rate": 0.0006,
+ "loss": 3.86102557182312,
+ "step": 1642
+ },
+ {
+ "epoch": 22.824814329401484,
+ "grad_norm": 0.20695745944976807,
+ "learning_rate": 0.0006,
+ "loss": 3.8336222171783447,
+ "step": 1643
+ },
+ {
+ "epoch": 22.838794233289647,
+ "grad_norm": 0.2157406210899353,
+ "learning_rate": 0.0006,
+ "loss": 3.8923370838165283,
+ "step": 1644
+ },
+ {
+ "epoch": 22.852774137177807,
+ "grad_norm": 0.2326202690601349,
+ "learning_rate": 0.0006,
+ "loss": 3.8841443061828613,
+ "step": 1645
+ },
+ {
+ "epoch": 22.866754041065967,
+ "grad_norm": 0.2228803187608719,
+ "learning_rate": 0.0006,
+ "loss": 3.8791375160217285,
+ "step": 1646
+ },
+ {
+ "epoch": 22.88073394495413,
+ "grad_norm": 0.228999063372612,
+ "learning_rate": 0.0006,
+ "loss": 3.9005866050720215,
+ "step": 1647
+ },
+ {
+ "epoch": 22.89471384884229,
+ "grad_norm": 0.19673815369606018,
+ "learning_rate": 0.0006,
+ "loss": 3.8954291343688965,
+ "step": 1648
+ },
+ {
+ "epoch": 22.90869375273045,
+ "grad_norm": 0.1862584501504898,
+ "learning_rate": 0.0006,
+ "loss": 3.8591439723968506,
+ "step": 1649
+ },
+ {
+ "epoch": 22.92267365661861,
+ "grad_norm": 0.21360838413238525,
+ "learning_rate": 0.0006,
+ "loss": 3.862949848175049,
+ "step": 1650
+ },
+ {
+ "epoch": 22.936653560506773,
+ "grad_norm": 0.22538702189922333,
+ "learning_rate": 0.0006,
+ "loss": 3.8466529846191406,
+ "step": 1651
+ },
+ {
+ "epoch": 22.950633464394933,
+ "grad_norm": 0.21452727913856506,
+ "learning_rate": 0.0006,
+ "loss": 3.890007495880127,
+ "step": 1652
+ },
+ {
+ "epoch": 22.964613368283093,
+ "grad_norm": 0.21283482015132904,
+ "learning_rate": 0.0006,
+ "loss": 3.8820929527282715,
+ "step": 1653
+ },
+ {
+ "epoch": 22.978593272171253,
+ "grad_norm": 0.2035825103521347,
+ "learning_rate": 0.0006,
+ "loss": 3.8663241863250732,
+ "step": 1654
+ },
+ {
+ "epoch": 22.992573176059416,
+ "grad_norm": 0.22431661188602448,
+ "learning_rate": 0.0006,
+ "loss": 3.88238525390625,
+ "step": 1655
+ },
+ {
+ "epoch": 23.0,
+ "grad_norm": 0.2619943916797638,
+ "learning_rate": 0.0006,
+ "loss": 3.8482635021209717,
+ "step": 1656
+ },
+ {
+ "epoch": 23.0,
+ "eval_loss": 4.099980354309082,
+ "eval_runtime": 44.1311,
+ "eval_samples_per_second": 55.335,
+ "eval_steps_per_second": 3.467,
+ "step": 1656
+ },
+ {
+ "epoch": 23.01397990388816,
+ "grad_norm": 0.24712848663330078,
+ "learning_rate": 0.0006,
+ "loss": 3.836700916290283,
+ "step": 1657
+ },
+ {
+ "epoch": 23.027959807776323,
+ "grad_norm": 0.28568798303604126,
+ "learning_rate": 0.0006,
+ "loss": 3.8523952960968018,
+ "step": 1658
+ },
+ {
+ "epoch": 23.041939711664483,
+ "grad_norm": 0.2999744415283203,
+ "learning_rate": 0.0006,
+ "loss": 3.8229494094848633,
+ "step": 1659
+ },
+ {
+ "epoch": 23.055919615552643,
+ "grad_norm": 0.32080450654029846,
+ "learning_rate": 0.0006,
+ "loss": 3.8562774658203125,
+ "step": 1660
+ },
+ {
+ "epoch": 23.069899519440803,
+ "grad_norm": 0.293468177318573,
+ "learning_rate": 0.0006,
+ "loss": 3.889139175415039,
+ "step": 1661
+ },
+ {
+ "epoch": 23.083879423328966,
+ "grad_norm": 0.2605799436569214,
+ "learning_rate": 0.0006,
+ "loss": 3.838681221008301,
+ "step": 1662
+ },
+ {
+ "epoch": 23.097859327217126,
+ "grad_norm": 0.2656237483024597,
+ "learning_rate": 0.0006,
+ "loss": 3.8603532314300537,
+ "step": 1663
+ },
+ {
+ "epoch": 23.111839231105286,
+ "grad_norm": 0.27163293957710266,
+ "learning_rate": 0.0006,
+ "loss": 3.846987009048462,
+ "step": 1664
+ },
+ {
+ "epoch": 23.125819134993446,
+ "grad_norm": 0.2719763517379761,
+ "learning_rate": 0.0006,
+ "loss": 3.805354595184326,
+ "step": 1665
+ },
+ {
+ "epoch": 23.13979903888161,
+ "grad_norm": 0.25786274671554565,
+ "learning_rate": 0.0006,
+ "loss": 3.8486907482147217,
+ "step": 1666
+ },
+ {
+ "epoch": 23.15377894276977,
+ "grad_norm": 0.2675692141056061,
+ "learning_rate": 0.0006,
+ "loss": 3.816493511199951,
+ "step": 1667
+ },
+ {
+ "epoch": 23.16775884665793,
+ "grad_norm": 0.2711698114871979,
+ "learning_rate": 0.0006,
+ "loss": 3.851863384246826,
+ "step": 1668
+ },
+ {
+ "epoch": 23.18173875054609,
+ "grad_norm": 0.2588968873023987,
+ "learning_rate": 0.0006,
+ "loss": 3.860816717147827,
+ "step": 1669
+ },
+ {
+ "epoch": 23.195718654434252,
+ "grad_norm": 0.2458600401878357,
+ "learning_rate": 0.0006,
+ "loss": 3.8058223724365234,
+ "step": 1670
+ },
+ {
+ "epoch": 23.209698558322412,
+ "grad_norm": 0.22014005482196808,
+ "learning_rate": 0.0006,
+ "loss": 3.8686985969543457,
+ "step": 1671
+ },
+ {
+ "epoch": 23.22367846221057,
+ "grad_norm": 0.22450537979602814,
+ "learning_rate": 0.0006,
+ "loss": 3.8379364013671875,
+ "step": 1672
+ },
+ {
+ "epoch": 23.23765836609873,
+ "grad_norm": 0.22132326662540436,
+ "learning_rate": 0.0006,
+ "loss": 3.8873870372772217,
+ "step": 1673
+ },
+ {
+ "epoch": 23.251638269986895,
+ "grad_norm": 0.20994804799556732,
+ "learning_rate": 0.0006,
+ "loss": 3.821415424346924,
+ "step": 1674
+ },
+ {
+ "epoch": 23.265618173875055,
+ "grad_norm": 0.2040853649377823,
+ "learning_rate": 0.0006,
+ "loss": 3.831658124923706,
+ "step": 1675
+ },
+ {
+ "epoch": 23.279598077763215,
+ "grad_norm": 0.20878618955612183,
+ "learning_rate": 0.0006,
+ "loss": 3.838672637939453,
+ "step": 1676
+ },
+ {
+ "epoch": 23.293577981651374,
+ "grad_norm": 0.19974198937416077,
+ "learning_rate": 0.0006,
+ "loss": 3.8442561626434326,
+ "step": 1677
+ },
+ {
+ "epoch": 23.307557885539538,
+ "grad_norm": 0.20523984730243683,
+ "learning_rate": 0.0006,
+ "loss": 3.846139907836914,
+ "step": 1678
+ },
+ {
+ "epoch": 23.321537789427698,
+ "grad_norm": 0.2045847624540329,
+ "learning_rate": 0.0006,
+ "loss": 3.8597474098205566,
+ "step": 1679
+ },
+ {
+ "epoch": 23.335517693315857,
+ "grad_norm": 0.20957441627979279,
+ "learning_rate": 0.0006,
+ "loss": 3.8493881225585938,
+ "step": 1680
+ },
+ {
+ "epoch": 23.34949759720402,
+ "grad_norm": 0.2069379836320877,
+ "learning_rate": 0.0006,
+ "loss": 3.8510046005249023,
+ "step": 1681
+ },
+ {
+ "epoch": 23.36347750109218,
+ "grad_norm": 0.19627872109413147,
+ "learning_rate": 0.0006,
+ "loss": 3.844618320465088,
+ "step": 1682
+ },
+ {
+ "epoch": 23.37745740498034,
+ "grad_norm": 0.19599434733390808,
+ "learning_rate": 0.0006,
+ "loss": 3.8245465755462646,
+ "step": 1683
+ },
+ {
+ "epoch": 23.3914373088685,
+ "grad_norm": 0.2035072147846222,
+ "learning_rate": 0.0006,
+ "loss": 3.854422092437744,
+ "step": 1684
+ },
+ {
+ "epoch": 23.405417212756664,
+ "grad_norm": 0.21836814284324646,
+ "learning_rate": 0.0006,
+ "loss": 3.83512282371521,
+ "step": 1685
+ },
+ {
+ "epoch": 23.419397116644824,
+ "grad_norm": 0.22844630479812622,
+ "learning_rate": 0.0006,
+ "loss": 3.8744301795959473,
+ "step": 1686
+ },
+ {
+ "epoch": 23.433377020532983,
+ "grad_norm": 0.2259359359741211,
+ "learning_rate": 0.0006,
+ "loss": 3.8460323810577393,
+ "step": 1687
+ },
+ {
+ "epoch": 23.447356924421143,
+ "grad_norm": 0.24440120160579681,
+ "learning_rate": 0.0006,
+ "loss": 3.8543787002563477,
+ "step": 1688
+ },
+ {
+ "epoch": 23.461336828309307,
+ "grad_norm": 0.25063708424568176,
+ "learning_rate": 0.0006,
+ "loss": 3.851004123687744,
+ "step": 1689
+ },
+ {
+ "epoch": 23.475316732197467,
+ "grad_norm": 0.25515618920326233,
+ "learning_rate": 0.0006,
+ "loss": 3.8685030937194824,
+ "step": 1690
+ },
+ {
+ "epoch": 23.489296636085626,
+ "grad_norm": 0.23961050808429718,
+ "learning_rate": 0.0006,
+ "loss": 3.866792678833008,
+ "step": 1691
+ },
+ {
+ "epoch": 23.503276539973786,
+ "grad_norm": 0.20880955457687378,
+ "learning_rate": 0.0006,
+ "loss": 3.8416638374328613,
+ "step": 1692
+ },
+ {
+ "epoch": 23.51725644386195,
+ "grad_norm": 0.1989721804857254,
+ "learning_rate": 0.0006,
+ "loss": 3.8608641624450684,
+ "step": 1693
+ },
+ {
+ "epoch": 23.53123634775011,
+ "grad_norm": 0.207577183842659,
+ "learning_rate": 0.0006,
+ "loss": 3.8431811332702637,
+ "step": 1694
+ },
+ {
+ "epoch": 23.54521625163827,
+ "grad_norm": 0.20844359695911407,
+ "learning_rate": 0.0006,
+ "loss": 3.882844924926758,
+ "step": 1695
+ },
+ {
+ "epoch": 23.55919615552643,
+ "grad_norm": 0.22511139512062073,
+ "learning_rate": 0.0006,
+ "loss": 3.866156578063965,
+ "step": 1696
+ },
+ {
+ "epoch": 23.573176059414592,
+ "grad_norm": 0.21648484468460083,
+ "learning_rate": 0.0006,
+ "loss": 3.87117075920105,
+ "step": 1697
+ },
+ {
+ "epoch": 23.587155963302752,
+ "grad_norm": 0.2081802636384964,
+ "learning_rate": 0.0006,
+ "loss": 3.828132152557373,
+ "step": 1698
+ },
+ {
+ "epoch": 23.601135867190912,
+ "grad_norm": 0.2017381489276886,
+ "learning_rate": 0.0006,
+ "loss": 3.839737892150879,
+ "step": 1699
+ },
+ {
+ "epoch": 23.615115771079076,
+ "grad_norm": 0.2025786191225052,
+ "learning_rate": 0.0006,
+ "loss": 3.8787710666656494,
+ "step": 1700
+ },
+ {
+ "epoch": 23.629095674967235,
+ "grad_norm": 0.21394102275371552,
+ "learning_rate": 0.0006,
+ "loss": 3.824047088623047,
+ "step": 1701
+ },
+ {
+ "epoch": 23.643075578855395,
+ "grad_norm": 0.20749174058437347,
+ "learning_rate": 0.0006,
+ "loss": 3.877009153366089,
+ "step": 1702
+ },
+ {
+ "epoch": 23.657055482743555,
+ "grad_norm": 0.2132839858531952,
+ "learning_rate": 0.0006,
+ "loss": 3.844214916229248,
+ "step": 1703
+ },
+ {
+ "epoch": 23.67103538663172,
+ "grad_norm": 0.22408637404441833,
+ "learning_rate": 0.0006,
+ "loss": 3.8570785522460938,
+ "step": 1704
+ },
+ {
+ "epoch": 23.68501529051988,
+ "grad_norm": 0.2275897115468979,
+ "learning_rate": 0.0006,
+ "loss": 3.8599512577056885,
+ "step": 1705
+ },
+ {
+ "epoch": 23.698995194408038,
+ "grad_norm": 0.2230614721775055,
+ "learning_rate": 0.0006,
+ "loss": 3.86374568939209,
+ "step": 1706
+ },
+ {
+ "epoch": 23.712975098296198,
+ "grad_norm": 0.21873739361763,
+ "learning_rate": 0.0006,
+ "loss": 3.8530168533325195,
+ "step": 1707
+ },
+ {
+ "epoch": 23.72695500218436,
+ "grad_norm": 0.24418923258781433,
+ "learning_rate": 0.0006,
+ "loss": 3.8410465717315674,
+ "step": 1708
+ },
+ {
+ "epoch": 23.74093490607252,
+ "grad_norm": 0.24894575774669647,
+ "learning_rate": 0.0006,
+ "loss": 3.8386030197143555,
+ "step": 1709
+ },
+ {
+ "epoch": 23.75491480996068,
+ "grad_norm": 0.221230611205101,
+ "learning_rate": 0.0006,
+ "loss": 3.8116674423217773,
+ "step": 1710
+ },
+ {
+ "epoch": 23.76889471384884,
+ "grad_norm": 0.20560568571090698,
+ "learning_rate": 0.0006,
+ "loss": 3.8634426593780518,
+ "step": 1711
+ },
+ {
+ "epoch": 23.782874617737004,
+ "grad_norm": 0.20450648665428162,
+ "learning_rate": 0.0006,
+ "loss": 3.8690528869628906,
+ "step": 1712
+ },
+ {
+ "epoch": 23.796854521625164,
+ "grad_norm": 0.18996809422969818,
+ "learning_rate": 0.0006,
+ "loss": 3.8484325408935547,
+ "step": 1713
+ },
+ {
+ "epoch": 23.810834425513324,
+ "grad_norm": 0.20165087282657623,
+ "learning_rate": 0.0006,
+ "loss": 3.8823161125183105,
+ "step": 1714
+ },
+ {
+ "epoch": 23.824814329401484,
+ "grad_norm": 0.21149255335330963,
+ "learning_rate": 0.0006,
+ "loss": 3.8833112716674805,
+ "step": 1715
+ },
+ {
+ "epoch": 23.838794233289647,
+ "grad_norm": 0.21254824101924896,
+ "learning_rate": 0.0006,
+ "loss": 3.8414595127105713,
+ "step": 1716
+ },
+ {
+ "epoch": 23.852774137177807,
+ "grad_norm": 0.21313664317131042,
+ "learning_rate": 0.0006,
+ "loss": 3.8732268810272217,
+ "step": 1717
+ },
+ {
+ "epoch": 23.866754041065967,
+ "grad_norm": 0.21635662019252777,
+ "learning_rate": 0.0006,
+ "loss": 3.861222743988037,
+ "step": 1718
+ },
+ {
+ "epoch": 23.88073394495413,
+ "grad_norm": 0.20612190663814545,
+ "learning_rate": 0.0006,
+ "loss": 3.821854591369629,
+ "step": 1719
+ },
+ {
+ "epoch": 23.89471384884229,
+ "grad_norm": 0.1975104659795761,
+ "learning_rate": 0.0006,
+ "loss": 3.8815202713012695,
+ "step": 1720
+ },
+ {
+ "epoch": 23.90869375273045,
+ "grad_norm": 0.20893609523773193,
+ "learning_rate": 0.0006,
+ "loss": 3.8581607341766357,
+ "step": 1721
+ },
+ {
+ "epoch": 23.92267365661861,
+ "grad_norm": 0.2125461846590042,
+ "learning_rate": 0.0006,
+ "loss": 3.839498281478882,
+ "step": 1722
+ },
+ {
+ "epoch": 23.936653560506773,
+ "grad_norm": 0.19985878467559814,
+ "learning_rate": 0.0006,
+ "loss": 3.856555223464966,
+ "step": 1723
+ },
+ {
+ "epoch": 23.950633464394933,
+ "grad_norm": 0.1922348290681839,
+ "learning_rate": 0.0006,
+ "loss": 3.8956782817840576,
+ "step": 1724
+ },
+ {
+ "epoch": 23.964613368283093,
+ "grad_norm": 0.2191949337720871,
+ "learning_rate": 0.0006,
+ "loss": 3.8582406044006348,
+ "step": 1725
+ },
+ {
+ "epoch": 23.978593272171253,
+ "grad_norm": 0.2569248676300049,
+ "learning_rate": 0.0006,
+ "loss": 3.855678081512451,
+ "step": 1726
+ },
+ {
+ "epoch": 23.992573176059416,
+ "grad_norm": 0.2641172409057617,
+ "learning_rate": 0.0006,
+ "loss": 3.8426473140716553,
+ "step": 1727
+ },
+ {
+ "epoch": 24.0,
+ "grad_norm": 0.29637208580970764,
+ "learning_rate": 0.0006,
+ "loss": 3.843040704727173,
+ "step": 1728
+ },
+ {
+ "epoch": 24.0,
+ "eval_loss": 4.075617790222168,
+ "eval_runtime": 43.9795,
+ "eval_samples_per_second": 55.526,
+ "eval_steps_per_second": 3.479,
+ "step": 1728
+ },
+ {
+ "epoch": 24.01397990388816,
+ "grad_norm": 0.2804758548736572,
+ "learning_rate": 0.0006,
+ "loss": 3.819150924682617,
+ "step": 1729
+ },
+ {
+ "epoch": 24.027959807776323,
+ "grad_norm": 0.2796347141265869,
+ "learning_rate": 0.0006,
+ "loss": 3.8400537967681885,
+ "step": 1730
+ },
+ {
+ "epoch": 24.041939711664483,
+ "grad_norm": 0.28388649225234985,
+ "learning_rate": 0.0006,
+ "loss": 3.844595432281494,
+ "step": 1731
+ },
+ {
+ "epoch": 24.055919615552643,
+ "grad_norm": 0.2944681942462921,
+ "learning_rate": 0.0006,
+ "loss": 3.8048014640808105,
+ "step": 1732
+ },
+ {
+ "epoch": 24.069899519440803,
+ "grad_norm": 0.2956784665584564,
+ "learning_rate": 0.0006,
+ "loss": 3.8488049507141113,
+ "step": 1733
+ },
+ {
+ "epoch": 24.083879423328966,
+ "grad_norm": 0.2822059392929077,
+ "learning_rate": 0.0006,
+ "loss": 3.850322723388672,
+ "step": 1734
+ },
+ {
+ "epoch": 24.097859327217126,
+ "grad_norm": 0.3012927174568176,
+ "learning_rate": 0.0006,
+ "loss": 3.8748154640197754,
+ "step": 1735
+ },
+ {
+ "epoch": 24.111839231105286,
+ "grad_norm": 0.28868764638900757,
+ "learning_rate": 0.0006,
+ "loss": 3.8282783031463623,
+ "step": 1736
+ },
+ {
+ "epoch": 24.125819134993446,
+ "grad_norm": 0.277203768491745,
+ "learning_rate": 0.0006,
+ "loss": 3.8462908267974854,
+ "step": 1737
+ },
+ {
+ "epoch": 24.13979903888161,
+ "grad_norm": 0.2654508948326111,
+ "learning_rate": 0.0006,
+ "loss": 3.8043856620788574,
+ "step": 1738
+ },
+ {
+ "epoch": 24.15377894276977,
+ "grad_norm": 0.24425740540027618,
+ "learning_rate": 0.0006,
+ "loss": 3.8284308910369873,
+ "step": 1739
+ },
+ {
+ "epoch": 24.16775884665793,
+ "grad_norm": 0.24407348036766052,
+ "learning_rate": 0.0006,
+ "loss": 3.8489203453063965,
+ "step": 1740
+ },
+ {
+ "epoch": 24.18173875054609,
+ "grad_norm": 0.2387724369764328,
+ "learning_rate": 0.0006,
+ "loss": 3.8240389823913574,
+ "step": 1741
+ },
+ {
+ "epoch": 24.195718654434252,
+ "grad_norm": 0.2832290232181549,
+ "learning_rate": 0.0006,
+ "loss": 3.869053363800049,
+ "step": 1742
+ },
+ {
+ "epoch": 24.209698558322412,
+ "grad_norm": 0.26501718163490295,
+ "learning_rate": 0.0006,
+ "loss": 3.8624343872070312,
+ "step": 1743
+ },
+ {
+ "epoch": 24.22367846221057,
+ "grad_norm": 0.24234668910503387,
+ "learning_rate": 0.0006,
+ "loss": 3.823103904724121,
+ "step": 1744
+ },
+ {
+ "epoch": 24.23765836609873,
+ "grad_norm": 0.24160076677799225,
+ "learning_rate": 0.0006,
+ "loss": 3.8174376487731934,
+ "step": 1745
+ },
+ {
+ "epoch": 24.251638269986895,
+ "grad_norm": 0.2447604238986969,
+ "learning_rate": 0.0006,
+ "loss": 3.8345441818237305,
+ "step": 1746
+ },
+ {
+ "epoch": 24.265618173875055,
+ "grad_norm": 0.22864456474781036,
+ "learning_rate": 0.0006,
+ "loss": 3.833101272583008,
+ "step": 1747
+ },
+ {
+ "epoch": 24.279598077763215,
+ "grad_norm": 0.20429204404354095,
+ "learning_rate": 0.0006,
+ "loss": 3.8055219650268555,
+ "step": 1748
+ },
+ {
+ "epoch": 24.293577981651374,
+ "grad_norm": 0.21538510918617249,
+ "learning_rate": 0.0006,
+ "loss": 3.7929327487945557,
+ "step": 1749
+ },
+ {
+ "epoch": 24.307557885539538,
+ "grad_norm": 0.2189008593559265,
+ "learning_rate": 0.0006,
+ "loss": 3.852264881134033,
+ "step": 1750
+ },
+ {
+ "epoch": 24.321537789427698,
+ "grad_norm": 0.2228662073612213,
+ "learning_rate": 0.0006,
+ "loss": 3.831088066101074,
+ "step": 1751
+ },
+ {
+ "epoch": 24.335517693315857,
+ "grad_norm": 0.2039937973022461,
+ "learning_rate": 0.0006,
+ "loss": 3.8358256816864014,
+ "step": 1752
+ },
+ {
+ "epoch": 24.34949759720402,
+ "grad_norm": 0.19247715175151825,
+ "learning_rate": 0.0006,
+ "loss": 3.8077402114868164,
+ "step": 1753
+ },
+ {
+ "epoch": 24.36347750109218,
+ "grad_norm": 0.18301935493946075,
+ "learning_rate": 0.0006,
+ "loss": 3.81380033493042,
+ "step": 1754
+ },
+ {
+ "epoch": 24.37745740498034,
+ "grad_norm": 0.19325268268585205,
+ "learning_rate": 0.0006,
+ "loss": 3.8447322845458984,
+ "step": 1755
+ },
+ {
+ "epoch": 24.3914373088685,
+ "grad_norm": 0.2007269263267517,
+ "learning_rate": 0.0006,
+ "loss": 3.82779860496521,
+ "step": 1756
+ },
+ {
+ "epoch": 24.405417212756664,
+ "grad_norm": 0.20567037165164948,
+ "learning_rate": 0.0006,
+ "loss": 3.800354480743408,
+ "step": 1757
+ },
+ {
+ "epoch": 24.419397116644824,
+ "grad_norm": 0.22553028166294098,
+ "learning_rate": 0.0006,
+ "loss": 3.7910406589508057,
+ "step": 1758
+ },
+ {
+ "epoch": 24.433377020532983,
+ "grad_norm": 0.22697079181671143,
+ "learning_rate": 0.0006,
+ "loss": 3.857635974884033,
+ "step": 1759
+ },
+ {
+ "epoch": 24.447356924421143,
+ "grad_norm": 0.22090297937393188,
+ "learning_rate": 0.0006,
+ "loss": 3.8112804889678955,
+ "step": 1760
+ },
+ {
+ "epoch": 24.461336828309307,
+ "grad_norm": 0.24325518310070038,
+ "learning_rate": 0.0006,
+ "loss": 3.822084426879883,
+ "step": 1761
+ },
+ {
+ "epoch": 24.475316732197467,
+ "grad_norm": 0.2702929377555847,
+ "learning_rate": 0.0006,
+ "loss": 3.8307600021362305,
+ "step": 1762
+ },
+ {
+ "epoch": 24.489296636085626,
+ "grad_norm": 0.2699742317199707,
+ "learning_rate": 0.0006,
+ "loss": 3.8479247093200684,
+ "step": 1763
+ },
+ {
+ "epoch": 24.503276539973786,
+ "grad_norm": 0.2526061236858368,
+ "learning_rate": 0.0006,
+ "loss": 3.8615071773529053,
+ "step": 1764
+ },
+ {
+ "epoch": 24.51725644386195,
+ "grad_norm": 0.2633848190307617,
+ "learning_rate": 0.0006,
+ "loss": 3.8412697315216064,
+ "step": 1765
+ },
+ {
+ "epoch": 24.53123634775011,
+ "grad_norm": 0.2711184024810791,
+ "learning_rate": 0.0006,
+ "loss": 3.83647084236145,
+ "step": 1766
+ },
+ {
+ "epoch": 24.54521625163827,
+ "grad_norm": 0.2691243588924408,
+ "learning_rate": 0.0006,
+ "loss": 3.8489012718200684,
+ "step": 1767
+ },
+ {
+ "epoch": 24.55919615552643,
+ "grad_norm": 0.2580898404121399,
+ "learning_rate": 0.0006,
+ "loss": 3.8464407920837402,
+ "step": 1768
+ },
+ {
+ "epoch": 24.573176059414592,
+ "grad_norm": 0.21342119574546814,
+ "learning_rate": 0.0006,
+ "loss": 3.8279383182525635,
+ "step": 1769
+ },
+ {
+ "epoch": 24.587155963302752,
+ "grad_norm": 0.22102399170398712,
+ "learning_rate": 0.0006,
+ "loss": 3.841676712036133,
+ "step": 1770
+ },
+ {
+ "epoch": 24.601135867190912,
+ "grad_norm": 0.2882173955440521,
+ "learning_rate": 0.0006,
+ "loss": 3.825528383255005,
+ "step": 1771
+ },
+ {
+ "epoch": 24.615115771079076,
+ "grad_norm": 0.3403635323047638,
+ "learning_rate": 0.0006,
+ "loss": 3.8282246589660645,
+ "step": 1772
+ },
+ {
+ "epoch": 24.629095674967235,
+ "grad_norm": 0.32192692160606384,
+ "learning_rate": 0.0006,
+ "loss": 3.8411307334899902,
+ "step": 1773
+ },
+ {
+ "epoch": 24.643075578855395,
+ "grad_norm": 0.2534109055995941,
+ "learning_rate": 0.0006,
+ "loss": 3.843007802963257,
+ "step": 1774
+ },
+ {
+ "epoch": 24.657055482743555,
+ "grad_norm": 0.25483962893486023,
+ "learning_rate": 0.0006,
+ "loss": 3.848358154296875,
+ "step": 1775
+ },
+ {
+ "epoch": 24.67103538663172,
+ "grad_norm": 0.25175443291664124,
+ "learning_rate": 0.0006,
+ "loss": 3.8232598304748535,
+ "step": 1776
+ },
+ {
+ "epoch": 24.68501529051988,
+ "grad_norm": 0.20538510382175446,
+ "learning_rate": 0.0006,
+ "loss": 3.857635498046875,
+ "step": 1777
+ },
+ {
+ "epoch": 24.698995194408038,
+ "grad_norm": 0.240861177444458,
+ "learning_rate": 0.0006,
+ "loss": 3.83717679977417,
+ "step": 1778
+ },
+ {
+ "epoch": 24.712975098296198,
+ "grad_norm": 0.23646967113018036,
+ "learning_rate": 0.0006,
+ "loss": 3.81032133102417,
+ "step": 1779
+ },
+ {
+ "epoch": 24.72695500218436,
+ "grad_norm": 0.2164423167705536,
+ "learning_rate": 0.0006,
+ "loss": 3.807878255844116,
+ "step": 1780
+ },
+ {
+ "epoch": 24.74093490607252,
+ "grad_norm": 0.21160705387592316,
+ "learning_rate": 0.0006,
+ "loss": 3.870394468307495,
+ "step": 1781
+ },
+ {
+ "epoch": 24.75491480996068,
+ "grad_norm": 0.20284807682037354,
+ "learning_rate": 0.0006,
+ "loss": 3.842154026031494,
+ "step": 1782
+ },
+ {
+ "epoch": 24.76889471384884,
+ "grad_norm": 0.20738485455513,
+ "learning_rate": 0.0006,
+ "loss": 3.8347136974334717,
+ "step": 1783
+ },
+ {
+ "epoch": 24.782874617737004,
+ "grad_norm": 0.20253778994083405,
+ "learning_rate": 0.0006,
+ "loss": 3.814948320388794,
+ "step": 1784
+ },
+ {
+ "epoch": 24.796854521625164,
+ "grad_norm": 0.20567010343074799,
+ "learning_rate": 0.0006,
+ "loss": 3.8354592323303223,
+ "step": 1785
+ },
+ {
+ "epoch": 24.810834425513324,
+ "grad_norm": 0.20639720559120178,
+ "learning_rate": 0.0006,
+ "loss": 3.8336033821105957,
+ "step": 1786
+ },
+ {
+ "epoch": 24.824814329401484,
+ "grad_norm": 0.19978247582912445,
+ "learning_rate": 0.0006,
+ "loss": 3.8209140300750732,
+ "step": 1787
+ },
+ {
+ "epoch": 24.838794233289647,
+ "grad_norm": 0.20628373324871063,
+ "learning_rate": 0.0006,
+ "loss": 3.8372955322265625,
+ "step": 1788
+ },
+ {
+ "epoch": 24.852774137177807,
+ "grad_norm": 0.2266162782907486,
+ "learning_rate": 0.0006,
+ "loss": 3.850994110107422,
+ "step": 1789
+ },
+ {
+ "epoch": 24.866754041065967,
+ "grad_norm": 0.22567765414714813,
+ "learning_rate": 0.0006,
+ "loss": 3.8552165031433105,
+ "step": 1790
+ },
+ {
+ "epoch": 24.88073394495413,
+ "grad_norm": 0.228011354804039,
+ "learning_rate": 0.0006,
+ "loss": 3.8310747146606445,
+ "step": 1791
+ },
+ {
+ "epoch": 24.89471384884229,
+ "grad_norm": 0.23706914484500885,
+ "learning_rate": 0.0006,
+ "loss": 3.8369603157043457,
+ "step": 1792
+ },
+ {
+ "epoch": 24.90869375273045,
+ "grad_norm": 0.22669097781181335,
+ "learning_rate": 0.0006,
+ "loss": 3.8443825244903564,
+ "step": 1793
+ },
+ {
+ "epoch": 24.92267365661861,
+ "grad_norm": 0.2051001936197281,
+ "learning_rate": 0.0006,
+ "loss": 3.7938501834869385,
+ "step": 1794
+ },
+ {
+ "epoch": 24.936653560506773,
+ "grad_norm": 0.2091219276189804,
+ "learning_rate": 0.0006,
+ "loss": 3.8167076110839844,
+ "step": 1795
+ },
+ {
+ "epoch": 24.950633464394933,
+ "grad_norm": 0.20517204701900482,
+ "learning_rate": 0.0006,
+ "loss": 3.852670669555664,
+ "step": 1796
+ },
+ {
+ "epoch": 24.964613368283093,
+ "grad_norm": 0.19916993379592896,
+ "learning_rate": 0.0006,
+ "loss": 3.8410873413085938,
+ "step": 1797
+ },
+ {
+ "epoch": 24.978593272171253,
+ "grad_norm": 0.21313942968845367,
+ "learning_rate": 0.0006,
+ "loss": 3.8383948802948,
+ "step": 1798
+ },
+ {
+ "epoch": 24.992573176059416,
+ "grad_norm": 0.21042990684509277,
+ "learning_rate": 0.0006,
+ "loss": 3.8623173236846924,
+ "step": 1799
+ },
+ {
+ "epoch": 25.0,
+ "grad_norm": 0.23052045702934265,
+ "learning_rate": 0.0006,
+ "loss": 3.8646674156188965,
+ "step": 1800
+ },
+ {
+ "epoch": 25.0,
+ "eval_loss": 4.081690311431885,
+ "eval_runtime": 44.036,
+ "eval_samples_per_second": 55.455,
+ "eval_steps_per_second": 3.474,
+ "step": 1800
+ },
+ {
+ "epoch": 25.01397990388816,
+ "grad_norm": 0.22068746387958527,
+ "learning_rate": 0.0006,
+ "loss": 3.8002820014953613,
+ "step": 1801
+ },
+ {
+ "epoch": 25.027959807776323,
+ "grad_norm": 0.20711193978786469,
+ "learning_rate": 0.0006,
+ "loss": 3.787785768508911,
+ "step": 1802
+ },
+ {
+ "epoch": 25.041939711664483,
+ "grad_norm": 0.20659677684307098,
+ "learning_rate": 0.0006,
+ "loss": 3.80245304107666,
+ "step": 1803
+ },
+ {
+ "epoch": 25.055919615552643,
+ "grad_norm": 0.22891797125339508,
+ "learning_rate": 0.0006,
+ "loss": 3.784543514251709,
+ "step": 1804
+ },
+ {
+ "epoch": 25.069899519440803,
+ "grad_norm": 0.23679181933403015,
+ "learning_rate": 0.0006,
+ "loss": 3.8311429023742676,
+ "step": 1805
+ },
+ {
+ "epoch": 25.083879423328966,
+ "grad_norm": 0.2548872232437134,
+ "learning_rate": 0.0006,
+ "loss": 3.8047211170196533,
+ "step": 1806
+ },
+ {
+ "epoch": 25.097859327217126,
+ "grad_norm": 0.26181501150131226,
+ "learning_rate": 0.0006,
+ "loss": 3.837508201599121,
+ "step": 1807
+ },
+ {
+ "epoch": 25.111839231105286,
+ "grad_norm": 0.2548452913761139,
+ "learning_rate": 0.0006,
+ "loss": 3.831544876098633,
+ "step": 1808
+ },
+ {
+ "epoch": 25.125819134993446,
+ "grad_norm": 0.26177605986595154,
+ "learning_rate": 0.0006,
+ "loss": 3.805346965789795,
+ "step": 1809
+ },
+ {
+ "epoch": 25.13979903888161,
+ "grad_norm": 0.2608112394809723,
+ "learning_rate": 0.0006,
+ "loss": 3.8040924072265625,
+ "step": 1810
+ },
+ {
+ "epoch": 25.15377894276977,
+ "grad_norm": 0.2586037814617157,
+ "learning_rate": 0.0006,
+ "loss": 3.8102216720581055,
+ "step": 1811
+ },
+ {
+ "epoch": 25.16775884665793,
+ "grad_norm": 0.26258161664009094,
+ "learning_rate": 0.0006,
+ "loss": 3.8152549266815186,
+ "step": 1812
+ },
+ {
+ "epoch": 25.18173875054609,
+ "grad_norm": 0.2803022265434265,
+ "learning_rate": 0.0006,
+ "loss": 3.82576584815979,
+ "step": 1813
+ },
+ {
+ "epoch": 25.195718654434252,
+ "grad_norm": 0.2618221938610077,
+ "learning_rate": 0.0006,
+ "loss": 3.817220687866211,
+ "step": 1814
+ },
+ {
+ "epoch": 25.209698558322412,
+ "grad_norm": 0.23283469676971436,
+ "learning_rate": 0.0006,
+ "loss": 3.7999041080474854,
+ "step": 1815
+ },
+ {
+ "epoch": 25.22367846221057,
+ "grad_norm": 0.20110781490802765,
+ "learning_rate": 0.0006,
+ "loss": 3.783228874206543,
+ "step": 1816
+ },
+ {
+ "epoch": 25.23765836609873,
+ "grad_norm": 0.2231830358505249,
+ "learning_rate": 0.0006,
+ "loss": 3.8032913208007812,
+ "step": 1817
+ },
+ {
+ "epoch": 25.251638269986895,
+ "grad_norm": 0.21807286143302917,
+ "learning_rate": 0.0006,
+ "loss": 3.817028045654297,
+ "step": 1818
+ },
+ {
+ "epoch": 25.265618173875055,
+ "grad_norm": 0.22710664570331573,
+ "learning_rate": 0.0006,
+ "loss": 3.8201727867126465,
+ "step": 1819
+ },
+ {
+ "epoch": 25.279598077763215,
+ "grad_norm": 0.22299866378307343,
+ "learning_rate": 0.0006,
+ "loss": 3.8198719024658203,
+ "step": 1820
+ },
+ {
+ "epoch": 25.293577981651374,
+ "grad_norm": 0.20886564254760742,
+ "learning_rate": 0.0006,
+ "loss": 3.792414665222168,
+ "step": 1821
+ },
+ {
+ "epoch": 25.307557885539538,
+ "grad_norm": 0.20887352526187897,
+ "learning_rate": 0.0006,
+ "loss": 3.7634057998657227,
+ "step": 1822
+ },
+ {
+ "epoch": 25.321537789427698,
+ "grad_norm": 0.24560041725635529,
+ "learning_rate": 0.0006,
+ "loss": 3.79359769821167,
+ "step": 1823
+ },
+ {
+ "epoch": 25.335517693315857,
+ "grad_norm": 0.22767415642738342,
+ "learning_rate": 0.0006,
+ "loss": 3.8313469886779785,
+ "step": 1824
+ },
+ {
+ "epoch": 25.34949759720402,
+ "grad_norm": 0.21617893874645233,
+ "learning_rate": 0.0006,
+ "loss": 3.77200984954834,
+ "step": 1825
+ },
+ {
+ "epoch": 25.36347750109218,
+ "grad_norm": 0.21010833978652954,
+ "learning_rate": 0.0006,
+ "loss": 3.8042140007019043,
+ "step": 1826
+ },
+ {
+ "epoch": 25.37745740498034,
+ "grad_norm": 0.24087965488433838,
+ "learning_rate": 0.0006,
+ "loss": 3.8260979652404785,
+ "step": 1827
+ },
+ {
+ "epoch": 25.3914373088685,
+ "grad_norm": 0.2735275626182556,
+ "learning_rate": 0.0006,
+ "loss": 3.8499274253845215,
+ "step": 1828
+ },
+ {
+ "epoch": 25.405417212756664,
+ "grad_norm": 0.24831001460552216,
+ "learning_rate": 0.0006,
+ "loss": 3.8146448135375977,
+ "step": 1829
+ },
+ {
+ "epoch": 25.419397116644824,
+ "grad_norm": 0.21822866797447205,
+ "learning_rate": 0.0006,
+ "loss": 3.7845146656036377,
+ "step": 1830
+ },
+ {
+ "epoch": 25.433377020532983,
+ "grad_norm": 0.19948813319206238,
+ "learning_rate": 0.0006,
+ "loss": 3.823997974395752,
+ "step": 1831
+ },
+ {
+ "epoch": 25.447356924421143,
+ "grad_norm": 0.18342702090740204,
+ "learning_rate": 0.0006,
+ "loss": 3.8201193809509277,
+ "step": 1832
+ },
+ {
+ "epoch": 25.461336828309307,
+ "grad_norm": 0.19377560913562775,
+ "learning_rate": 0.0006,
+ "loss": 3.8069632053375244,
+ "step": 1833
+ },
+ {
+ "epoch": 25.475316732197467,
+ "grad_norm": 0.22348709404468536,
+ "learning_rate": 0.0006,
+ "loss": 3.7918643951416016,
+ "step": 1834
+ },
+ {
+ "epoch": 25.489296636085626,
+ "grad_norm": 0.24484702944755554,
+ "learning_rate": 0.0006,
+ "loss": 3.85046124458313,
+ "step": 1835
+ },
+ {
+ "epoch": 25.503276539973786,
+ "grad_norm": 0.2493520826101303,
+ "learning_rate": 0.0006,
+ "loss": 3.8043932914733887,
+ "step": 1836
+ },
+ {
+ "epoch": 25.51725644386195,
+ "grad_norm": 0.21509641408920288,
+ "learning_rate": 0.0006,
+ "loss": 3.8064627647399902,
+ "step": 1837
+ },
+ {
+ "epoch": 25.53123634775011,
+ "grad_norm": 0.21912820637226105,
+ "learning_rate": 0.0006,
+ "loss": 3.850588321685791,
+ "step": 1838
+ },
+ {
+ "epoch": 25.54521625163827,
+ "grad_norm": 0.28400927782058716,
+ "learning_rate": 0.0006,
+ "loss": 3.79818058013916,
+ "step": 1839
+ },
+ {
+ "epoch": 25.55919615552643,
+ "grad_norm": 0.32193225622177124,
+ "learning_rate": 0.0006,
+ "loss": 3.836275815963745,
+ "step": 1840
+ },
+ {
+ "epoch": 25.573176059414592,
+ "grad_norm": 0.2902325987815857,
+ "learning_rate": 0.0006,
+ "loss": 3.8080005645751953,
+ "step": 1841
+ },
+ {
+ "epoch": 25.587155963302752,
+ "grad_norm": 0.21759532392024994,
+ "learning_rate": 0.0006,
+ "loss": 3.8233771324157715,
+ "step": 1842
+ },
+ {
+ "epoch": 25.601135867190912,
+ "grad_norm": 0.19645214080810547,
+ "learning_rate": 0.0006,
+ "loss": 3.838881015777588,
+ "step": 1843
+ },
+ {
+ "epoch": 25.615115771079076,
+ "grad_norm": 0.19322903454303741,
+ "learning_rate": 0.0006,
+ "loss": 3.7870054244995117,
+ "step": 1844
+ },
+ {
+ "epoch": 25.629095674967235,
+ "grad_norm": 0.2074001580476761,
+ "learning_rate": 0.0006,
+ "loss": 3.8239974975585938,
+ "step": 1845
+ },
+ {
+ "epoch": 25.643075578855395,
+ "grad_norm": 0.2166101336479187,
+ "learning_rate": 0.0006,
+ "loss": 3.8290855884552,
+ "step": 1846
+ },
+ {
+ "epoch": 25.657055482743555,
+ "grad_norm": 0.23738539218902588,
+ "learning_rate": 0.0006,
+ "loss": 3.7993364334106445,
+ "step": 1847
+ },
+ {
+ "epoch": 25.67103538663172,
+ "grad_norm": 0.23882314562797546,
+ "learning_rate": 0.0006,
+ "loss": 3.802586078643799,
+ "step": 1848
+ },
+ {
+ "epoch": 25.68501529051988,
+ "grad_norm": 0.24168142676353455,
+ "learning_rate": 0.0006,
+ "loss": 3.8303489685058594,
+ "step": 1849
+ },
+ {
+ "epoch": 25.698995194408038,
+ "grad_norm": 0.22423343360424042,
+ "learning_rate": 0.0006,
+ "loss": 3.836228370666504,
+ "step": 1850
+ },
+ {
+ "epoch": 25.712975098296198,
+ "grad_norm": 0.23816974461078644,
+ "learning_rate": 0.0006,
+ "loss": 3.8380274772644043,
+ "step": 1851
+ },
+ {
+ "epoch": 25.72695500218436,
+ "grad_norm": 0.22465108335018158,
+ "learning_rate": 0.0006,
+ "loss": 3.8496339321136475,
+ "step": 1852
+ },
+ {
+ "epoch": 25.74093490607252,
+ "grad_norm": 0.20792442560195923,
+ "learning_rate": 0.0006,
+ "loss": 3.797853946685791,
+ "step": 1853
+ },
+ {
+ "epoch": 25.75491480996068,
+ "grad_norm": 0.20770230889320374,
+ "learning_rate": 0.0006,
+ "loss": 3.842322826385498,
+ "step": 1854
+ },
+ {
+ "epoch": 25.76889471384884,
+ "grad_norm": 0.1928192526102066,
+ "learning_rate": 0.0006,
+ "loss": 3.836540699005127,
+ "step": 1855
+ },
+ {
+ "epoch": 25.782874617737004,
+ "grad_norm": 0.19045178592205048,
+ "learning_rate": 0.0006,
+ "loss": 3.7758889198303223,
+ "step": 1856
+ },
+ {
+ "epoch": 25.796854521625164,
+ "grad_norm": 0.205548495054245,
+ "learning_rate": 0.0006,
+ "loss": 3.8244709968566895,
+ "step": 1857
+ },
+ {
+ "epoch": 25.810834425513324,
+ "grad_norm": 0.20968270301818848,
+ "learning_rate": 0.0006,
+ "loss": 3.8376216888427734,
+ "step": 1858
+ },
+ {
+ "epoch": 25.824814329401484,
+ "grad_norm": 0.18917354941368103,
+ "learning_rate": 0.0006,
+ "loss": 3.8497915267944336,
+ "step": 1859
+ },
+ {
+ "epoch": 25.838794233289647,
+ "grad_norm": 0.2050701528787613,
+ "learning_rate": 0.0006,
+ "loss": 3.819628953933716,
+ "step": 1860
+ },
+ {
+ "epoch": 25.852774137177807,
+ "grad_norm": 0.1981319785118103,
+ "learning_rate": 0.0006,
+ "loss": 3.8007922172546387,
+ "step": 1861
+ },
+ {
+ "epoch": 25.866754041065967,
+ "grad_norm": 0.19055861234664917,
+ "learning_rate": 0.0006,
+ "loss": 3.8304519653320312,
+ "step": 1862
+ },
+ {
+ "epoch": 25.88073394495413,
+ "grad_norm": 0.19255517423152924,
+ "learning_rate": 0.0006,
+ "loss": 3.833280563354492,
+ "step": 1863
+ },
+ {
+ "epoch": 25.89471384884229,
+ "grad_norm": 0.19059430062770844,
+ "learning_rate": 0.0006,
+ "loss": 3.813796281814575,
+ "step": 1864
+ },
+ {
+ "epoch": 25.90869375273045,
+ "grad_norm": 0.18581309914588928,
+ "learning_rate": 0.0006,
+ "loss": 3.8211798667907715,
+ "step": 1865
+ },
+ {
+ "epoch": 25.92267365661861,
+ "grad_norm": 0.20181003212928772,
+ "learning_rate": 0.0006,
+ "loss": 3.8380484580993652,
+ "step": 1866
+ },
+ {
+ "epoch": 25.936653560506773,
+ "grad_norm": 0.22334498167037964,
+ "learning_rate": 0.0006,
+ "loss": 3.8294434547424316,
+ "step": 1867
+ },
+ {
+ "epoch": 25.950633464394933,
+ "grad_norm": 0.20456703007221222,
+ "learning_rate": 0.0006,
+ "loss": 3.819223642349243,
+ "step": 1868
+ },
+ {
+ "epoch": 25.964613368283093,
+ "grad_norm": 0.1885606348514557,
+ "learning_rate": 0.0006,
+ "loss": 3.8110103607177734,
+ "step": 1869
+ },
+ {
+ "epoch": 25.978593272171253,
+ "grad_norm": 0.18862110376358032,
+ "learning_rate": 0.0006,
+ "loss": 3.788691997528076,
+ "step": 1870
+ },
+ {
+ "epoch": 25.992573176059416,
+ "grad_norm": 0.19802744686603546,
+ "learning_rate": 0.0006,
+ "loss": 3.8423619270324707,
+ "step": 1871
+ },
+ {
+ "epoch": 26.0,
+ "grad_norm": 0.23762032389640808,
+ "learning_rate": 0.0006,
+ "loss": 3.7848567962646484,
+ "step": 1872
+ },
+ {
+ "epoch": 26.0,
+ "eval_loss": 4.054965019226074,
+ "eval_runtime": 44.2423,
+ "eval_samples_per_second": 55.196,
+ "eval_steps_per_second": 3.458,
+ "step": 1872
+ },
+ {
+ "epoch": 26.01397990388816,
+ "grad_norm": 0.21533054113388062,
+ "learning_rate": 0.0006,
+ "loss": 3.8123154640197754,
+ "step": 1873
+ },
+ {
+ "epoch": 26.027959807776323,
+ "grad_norm": 0.25094854831695557,
+ "learning_rate": 0.0006,
+ "loss": 3.7847447395324707,
+ "step": 1874
+ },
+ {
+ "epoch": 26.041939711664483,
+ "grad_norm": 0.24042077362537384,
+ "learning_rate": 0.0006,
+ "loss": 3.8033599853515625,
+ "step": 1875
+ },
+ {
+ "epoch": 26.055919615552643,
+ "grad_norm": 0.2425149381160736,
+ "learning_rate": 0.0006,
+ "loss": 3.7828550338745117,
+ "step": 1876
+ },
+ {
+ "epoch": 26.069899519440803,
+ "grad_norm": 0.2300514280796051,
+ "learning_rate": 0.0006,
+ "loss": 3.750882148742676,
+ "step": 1877
+ },
+ {
+ "epoch": 26.083879423328966,
+ "grad_norm": 0.2513943612575531,
+ "learning_rate": 0.0006,
+ "loss": 3.800323963165283,
+ "step": 1878
+ },
+ {
+ "epoch": 26.097859327217126,
+ "grad_norm": 0.2536966800689697,
+ "learning_rate": 0.0006,
+ "loss": 3.8198962211608887,
+ "step": 1879
+ },
+ {
+ "epoch": 26.111839231105286,
+ "grad_norm": 0.24483931064605713,
+ "learning_rate": 0.0006,
+ "loss": 3.825563907623291,
+ "step": 1880
+ },
+ {
+ "epoch": 26.125819134993446,
+ "grad_norm": 0.2502584755420685,
+ "learning_rate": 0.0006,
+ "loss": 3.78756046295166,
+ "step": 1881
+ },
+ {
+ "epoch": 26.13979903888161,
+ "grad_norm": 0.2695745527744293,
+ "learning_rate": 0.0006,
+ "loss": 3.8205409049987793,
+ "step": 1882
+ },
+ {
+ "epoch": 26.15377894276977,
+ "grad_norm": 0.2873472273349762,
+ "learning_rate": 0.0006,
+ "loss": 3.7880778312683105,
+ "step": 1883
+ },
+ {
+ "epoch": 26.16775884665793,
+ "grad_norm": 0.28609949350357056,
+ "learning_rate": 0.0006,
+ "loss": 3.788517951965332,
+ "step": 1884
+ },
+ {
+ "epoch": 26.18173875054609,
+ "grad_norm": 0.28352269530296326,
+ "learning_rate": 0.0006,
+ "loss": 3.778015613555908,
+ "step": 1885
+ },
+ {
+ "epoch": 26.195718654434252,
+ "grad_norm": 0.27055084705352783,
+ "learning_rate": 0.0006,
+ "loss": 3.7857203483581543,
+ "step": 1886
+ },
+ {
+ "epoch": 26.209698558322412,
+ "grad_norm": 0.255647748708725,
+ "learning_rate": 0.0006,
+ "loss": 3.791355609893799,
+ "step": 1887
+ },
+ {
+ "epoch": 26.22367846221057,
+ "grad_norm": 0.22624439001083374,
+ "learning_rate": 0.0006,
+ "loss": 3.7624831199645996,
+ "step": 1888
+ },
+ {
+ "epoch": 26.23765836609873,
+ "grad_norm": 0.2283596396446228,
+ "learning_rate": 0.0006,
+ "loss": 3.8052897453308105,
+ "step": 1889
+ },
+ {
+ "epoch": 26.251638269986895,
+ "grad_norm": 0.2336510866880417,
+ "learning_rate": 0.0006,
+ "loss": 3.789015054702759,
+ "step": 1890
+ },
+ {
+ "epoch": 26.265618173875055,
+ "grad_norm": 0.24107608199119568,
+ "learning_rate": 0.0006,
+ "loss": 3.756551742553711,
+ "step": 1891
+ },
+ {
+ "epoch": 26.279598077763215,
+ "grad_norm": 0.22438564896583557,
+ "learning_rate": 0.0006,
+ "loss": 3.797952651977539,
+ "step": 1892
+ },
+ {
+ "epoch": 26.293577981651374,
+ "grad_norm": 0.24594341218471527,
+ "learning_rate": 0.0006,
+ "loss": 3.7925708293914795,
+ "step": 1893
+ },
+ {
+ "epoch": 26.307557885539538,
+ "grad_norm": 0.23314352333545685,
+ "learning_rate": 0.0006,
+ "loss": 3.792447328567505,
+ "step": 1894
+ },
+ {
+ "epoch": 26.321537789427698,
+ "grad_norm": 0.20870383083820343,
+ "learning_rate": 0.0006,
+ "loss": 3.7888340950012207,
+ "step": 1895
+ },
+ {
+ "epoch": 26.335517693315857,
+ "grad_norm": 0.206504687666893,
+ "learning_rate": 0.0006,
+ "loss": 3.7856602668762207,
+ "step": 1896
+ },
+ {
+ "epoch": 26.34949759720402,
+ "grad_norm": 0.20193266868591309,
+ "learning_rate": 0.0006,
+ "loss": 3.810800552368164,
+ "step": 1897
+ },
+ {
+ "epoch": 26.36347750109218,
+ "grad_norm": 0.2143869698047638,
+ "learning_rate": 0.0006,
+ "loss": 3.818742275238037,
+ "step": 1898
+ },
+ {
+ "epoch": 26.37745740498034,
+ "grad_norm": 0.21388593316078186,
+ "learning_rate": 0.0006,
+ "loss": 3.7576632499694824,
+ "step": 1899
+ },
+ {
+ "epoch": 26.3914373088685,
+ "grad_norm": 0.1933414787054062,
+ "learning_rate": 0.0006,
+ "loss": 3.802579879760742,
+ "step": 1900
+ },
+ {
+ "epoch": 26.405417212756664,
+ "grad_norm": 0.18144549429416656,
+ "learning_rate": 0.0006,
+ "loss": 3.7830452919006348,
+ "step": 1901
+ },
+ {
+ "epoch": 26.419397116644824,
+ "grad_norm": 0.20027601718902588,
+ "learning_rate": 0.0006,
+ "loss": 3.8112521171569824,
+ "step": 1902
+ },
+ {
+ "epoch": 26.433377020532983,
+ "grad_norm": 0.19402910768985748,
+ "learning_rate": 0.0006,
+ "loss": 3.778012990951538,
+ "step": 1903
+ },
+ {
+ "epoch": 26.447356924421143,
+ "grad_norm": 0.19020743668079376,
+ "learning_rate": 0.0006,
+ "loss": 3.823355197906494,
+ "step": 1904
+ },
+ {
+ "epoch": 26.461336828309307,
+ "grad_norm": 0.1885242760181427,
+ "learning_rate": 0.0006,
+ "loss": 3.782108783721924,
+ "step": 1905
+ },
+ {
+ "epoch": 26.475316732197467,
+ "grad_norm": 0.2024235874414444,
+ "learning_rate": 0.0006,
+ "loss": 3.810448408126831,
+ "step": 1906
+ },
+ {
+ "epoch": 26.489296636085626,
+ "grad_norm": 0.21408027410507202,
+ "learning_rate": 0.0006,
+ "loss": 3.8185606002807617,
+ "step": 1907
+ },
+ {
+ "epoch": 26.503276539973786,
+ "grad_norm": 0.22810906171798706,
+ "learning_rate": 0.0006,
+ "loss": 3.8052706718444824,
+ "step": 1908
+ },
+ {
+ "epoch": 26.51725644386195,
+ "grad_norm": 0.21328197419643402,
+ "learning_rate": 0.0006,
+ "loss": 3.7858219146728516,
+ "step": 1909
+ },
+ {
+ "epoch": 26.53123634775011,
+ "grad_norm": 0.20843173563480377,
+ "learning_rate": 0.0006,
+ "loss": 3.8069310188293457,
+ "step": 1910
+ },
+ {
+ "epoch": 26.54521625163827,
+ "grad_norm": 0.2072986662387848,
+ "learning_rate": 0.0006,
+ "loss": 3.794975996017456,
+ "step": 1911
+ },
+ {
+ "epoch": 26.55919615552643,
+ "grad_norm": 0.2203216850757599,
+ "learning_rate": 0.0006,
+ "loss": 3.8070101737976074,
+ "step": 1912
+ },
+ {
+ "epoch": 26.573176059414592,
+ "grad_norm": 0.23449191451072693,
+ "learning_rate": 0.0006,
+ "loss": 3.828695774078369,
+ "step": 1913
+ },
+ {
+ "epoch": 26.587155963302752,
+ "grad_norm": 0.2222008854150772,
+ "learning_rate": 0.0006,
+ "loss": 3.781275749206543,
+ "step": 1914
+ },
+ {
+ "epoch": 26.601135867190912,
+ "grad_norm": 0.22328314185142517,
+ "learning_rate": 0.0006,
+ "loss": 3.7953736782073975,
+ "step": 1915
+ },
+ {
+ "epoch": 26.615115771079076,
+ "grad_norm": 0.2377961128950119,
+ "learning_rate": 0.0006,
+ "loss": 3.8428916931152344,
+ "step": 1916
+ },
+ {
+ "epoch": 26.629095674967235,
+ "grad_norm": 0.2546147108078003,
+ "learning_rate": 0.0006,
+ "loss": 3.7940590381622314,
+ "step": 1917
+ },
+ {
+ "epoch": 26.643075578855395,
+ "grad_norm": 0.24234509468078613,
+ "learning_rate": 0.0006,
+ "loss": 3.802234172821045,
+ "step": 1918
+ },
+ {
+ "epoch": 26.657055482743555,
+ "grad_norm": 0.21294651925563812,
+ "learning_rate": 0.0006,
+ "loss": 3.8159232139587402,
+ "step": 1919
+ },
+ {
+ "epoch": 26.67103538663172,
+ "grad_norm": 0.20008964836597443,
+ "learning_rate": 0.0006,
+ "loss": 3.796949863433838,
+ "step": 1920
+ },
+ {
+ "epoch": 26.68501529051988,
+ "grad_norm": 0.21031023561954498,
+ "learning_rate": 0.0006,
+ "loss": 3.8015570640563965,
+ "step": 1921
+ },
+ {
+ "epoch": 26.698995194408038,
+ "grad_norm": 0.2185603827238083,
+ "learning_rate": 0.0006,
+ "loss": 3.8022537231445312,
+ "step": 1922
+ },
+ {
+ "epoch": 26.712975098296198,
+ "grad_norm": 0.22957198321819305,
+ "learning_rate": 0.0006,
+ "loss": 3.7859907150268555,
+ "step": 1923
+ },
+ {
+ "epoch": 26.72695500218436,
+ "grad_norm": 0.23779156804084778,
+ "learning_rate": 0.0006,
+ "loss": 3.830345630645752,
+ "step": 1924
+ },
+ {
+ "epoch": 26.74093490607252,
+ "grad_norm": 0.23577193915843964,
+ "learning_rate": 0.0006,
+ "loss": 3.777338981628418,
+ "step": 1925
+ },
+ {
+ "epoch": 26.75491480996068,
+ "grad_norm": 0.2521933913230896,
+ "learning_rate": 0.0006,
+ "loss": 3.8215396404266357,
+ "step": 1926
+ },
+ {
+ "epoch": 26.76889471384884,
+ "grad_norm": 0.25050726532936096,
+ "learning_rate": 0.0006,
+ "loss": 3.817509651184082,
+ "step": 1927
+ },
+ {
+ "epoch": 26.782874617737004,
+ "grad_norm": 0.24442453682422638,
+ "learning_rate": 0.0006,
+ "loss": 3.8033013343811035,
+ "step": 1928
+ },
+ {
+ "epoch": 26.796854521625164,
+ "grad_norm": 0.2280828058719635,
+ "learning_rate": 0.0006,
+ "loss": 3.798625946044922,
+ "step": 1929
+ },
+ {
+ "epoch": 26.810834425513324,
+ "grad_norm": 0.23072117567062378,
+ "learning_rate": 0.0006,
+ "loss": 3.8109097480773926,
+ "step": 1930
+ },
+ {
+ "epoch": 26.824814329401484,
+ "grad_norm": 0.2690806984901428,
+ "learning_rate": 0.0006,
+ "loss": 3.7707223892211914,
+ "step": 1931
+ },
+ {
+ "epoch": 26.838794233289647,
+ "grad_norm": 0.24973517656326294,
+ "learning_rate": 0.0006,
+ "loss": 3.7788357734680176,
+ "step": 1932
+ },
+ {
+ "epoch": 26.852774137177807,
+ "grad_norm": 0.24221451580524445,
+ "learning_rate": 0.0006,
+ "loss": 3.8083114624023438,
+ "step": 1933
+ },
+ {
+ "epoch": 26.866754041065967,
+ "grad_norm": 0.23499037325382233,
+ "learning_rate": 0.0006,
+ "loss": 3.845512866973877,
+ "step": 1934
+ },
+ {
+ "epoch": 26.88073394495413,
+ "grad_norm": 0.2172643095254898,
+ "learning_rate": 0.0006,
+ "loss": 3.8171584606170654,
+ "step": 1935
+ },
+ {
+ "epoch": 26.89471384884229,
+ "grad_norm": 0.19935013353824615,
+ "learning_rate": 0.0006,
+ "loss": 3.808596611022949,
+ "step": 1936
+ },
+ {
+ "epoch": 26.90869375273045,
+ "grad_norm": 0.2077745944261551,
+ "learning_rate": 0.0006,
+ "loss": 3.842836856842041,
+ "step": 1937
+ },
+ {
+ "epoch": 26.92267365661861,
+ "grad_norm": 0.20017282664775848,
+ "learning_rate": 0.0006,
+ "loss": 3.791734457015991,
+ "step": 1938
+ },
+ {
+ "epoch": 26.936653560506773,
+ "grad_norm": 0.2082037627696991,
+ "learning_rate": 0.0006,
+ "loss": 3.7987842559814453,
+ "step": 1939
+ },
+ {
+ "epoch": 26.950633464394933,
+ "grad_norm": 0.21100632846355438,
+ "learning_rate": 0.0006,
+ "loss": 3.8033156394958496,
+ "step": 1940
+ },
+ {
+ "epoch": 26.964613368283093,
+ "grad_norm": 0.2091331034898758,
+ "learning_rate": 0.0006,
+ "loss": 3.8250908851623535,
+ "step": 1941
+ },
+ {
+ "epoch": 26.978593272171253,
+ "grad_norm": 0.19728544354438782,
+ "learning_rate": 0.0006,
+ "loss": 3.7934365272521973,
+ "step": 1942
+ },
+ {
+ "epoch": 26.992573176059416,
+ "grad_norm": 0.19266465306282043,
+ "learning_rate": 0.0006,
+ "loss": 3.8095879554748535,
+ "step": 1943
+ },
+ {
+ "epoch": 27.0,
+ "grad_norm": 0.2264554500579834,
+ "learning_rate": 0.0006,
+ "loss": 3.840135335922241,
+ "step": 1944
+ },
+ {
+ "epoch": 27.0,
+ "eval_loss": 4.046233654022217,
+ "eval_runtime": 44.0648,
+ "eval_samples_per_second": 55.418,
+ "eval_steps_per_second": 3.472,
+ "step": 1944
+ },
+ {
+ "epoch": 27.01397990388816,
+ "grad_norm": 0.24101831018924713,
+ "learning_rate": 0.0006,
+ "loss": 3.7463197708129883,
+ "step": 1945
+ },
+ {
+ "epoch": 27.027959807776323,
+ "grad_norm": 0.2917300760746002,
+ "learning_rate": 0.0006,
+ "loss": 3.769083261489868,
+ "step": 1946
+ },
+ {
+ "epoch": 27.041939711664483,
+ "grad_norm": 0.30864080786705017,
+ "learning_rate": 0.0006,
+ "loss": 3.7774248123168945,
+ "step": 1947
+ },
+ {
+ "epoch": 27.055919615552643,
+ "grad_norm": 0.28574317693710327,
+ "learning_rate": 0.0006,
+ "loss": 3.759530544281006,
+ "step": 1948
+ },
+ {
+ "epoch": 27.069899519440803,
+ "grad_norm": 0.23381628096103668,
+ "learning_rate": 0.0006,
+ "loss": 3.764347791671753,
+ "step": 1949
+ },
+ {
+ "epoch": 27.083879423328966,
+ "grad_norm": 0.2717961072921753,
+ "learning_rate": 0.0006,
+ "loss": 3.785306692123413,
+ "step": 1950
+ },
+ {
+ "epoch": 27.097859327217126,
+ "grad_norm": 0.2753375470638275,
+ "learning_rate": 0.0006,
+ "loss": 3.7511696815490723,
+ "step": 1951
+ },
+ {
+ "epoch": 27.111839231105286,
+ "grad_norm": 0.260250061750412,
+ "learning_rate": 0.0006,
+ "loss": 3.7775721549987793,
+ "step": 1952
+ },
+ {
+ "epoch": 27.125819134993446,
+ "grad_norm": 0.2462741732597351,
+ "learning_rate": 0.0006,
+ "loss": 3.775203227996826,
+ "step": 1953
+ },
+ {
+ "epoch": 27.13979903888161,
+ "grad_norm": 0.23599569499492645,
+ "learning_rate": 0.0006,
+ "loss": 3.7580947875976562,
+ "step": 1954
+ },
+ {
+ "epoch": 27.15377894276977,
+ "grad_norm": 0.21749968826770782,
+ "learning_rate": 0.0006,
+ "loss": 3.778254985809326,
+ "step": 1955
+ },
+ {
+ "epoch": 27.16775884665793,
+ "grad_norm": 0.22210343182086945,
+ "learning_rate": 0.0006,
+ "loss": 3.734727144241333,
+ "step": 1956
+ },
+ {
+ "epoch": 27.18173875054609,
+ "grad_norm": 0.23376141488552094,
+ "learning_rate": 0.0006,
+ "loss": 3.7892181873321533,
+ "step": 1957
+ },
+ {
+ "epoch": 27.195718654434252,
+ "grad_norm": 0.21751847863197327,
+ "learning_rate": 0.0006,
+ "loss": 3.801621913909912,
+ "step": 1958
+ },
+ {
+ "epoch": 27.209698558322412,
+ "grad_norm": 0.22995133697986603,
+ "learning_rate": 0.0006,
+ "loss": 3.8031363487243652,
+ "step": 1959
+ },
+ {
+ "epoch": 27.22367846221057,
+ "grad_norm": 0.22716350853443146,
+ "learning_rate": 0.0006,
+ "loss": 3.7591521739959717,
+ "step": 1960
+ },
+ {
+ "epoch": 27.23765836609873,
+ "grad_norm": 0.20819596946239471,
+ "learning_rate": 0.0006,
+ "loss": 3.7988929748535156,
+ "step": 1961
+ },
+ {
+ "epoch": 27.251638269986895,
+ "grad_norm": 0.19861504435539246,
+ "learning_rate": 0.0006,
+ "loss": 3.7752838134765625,
+ "step": 1962
+ },
+ {
+ "epoch": 27.265618173875055,
+ "grad_norm": 0.1959371268749237,
+ "learning_rate": 0.0006,
+ "loss": 3.7707290649414062,
+ "step": 1963
+ },
+ {
+ "epoch": 27.279598077763215,
+ "grad_norm": 0.18772225081920624,
+ "learning_rate": 0.0006,
+ "loss": 3.7714555263519287,
+ "step": 1964
+ },
+ {
+ "epoch": 27.293577981651374,
+ "grad_norm": 0.20839282870292664,
+ "learning_rate": 0.0006,
+ "loss": 3.7857258319854736,
+ "step": 1965
+ },
+ {
+ "epoch": 27.307557885539538,
+ "grad_norm": 0.22521957755088806,
+ "learning_rate": 0.0006,
+ "loss": 3.776909351348877,
+ "step": 1966
+ },
+ {
+ "epoch": 27.321537789427698,
+ "grad_norm": 0.19533076882362366,
+ "learning_rate": 0.0006,
+ "loss": 3.8152523040771484,
+ "step": 1967
+ },
+ {
+ "epoch": 27.335517693315857,
+ "grad_norm": 0.18678881227970123,
+ "learning_rate": 0.0006,
+ "loss": 3.751555919647217,
+ "step": 1968
+ },
+ {
+ "epoch": 27.34949759720402,
+ "grad_norm": 0.18257129192352295,
+ "learning_rate": 0.0006,
+ "loss": 3.7701754570007324,
+ "step": 1969
+ },
+ {
+ "epoch": 27.36347750109218,
+ "grad_norm": 0.18191468715667725,
+ "learning_rate": 0.0006,
+ "loss": 3.817451238632202,
+ "step": 1970
+ },
+ {
+ "epoch": 27.37745740498034,
+ "grad_norm": 0.18665607273578644,
+ "learning_rate": 0.0006,
+ "loss": 3.78645658493042,
+ "step": 1971
+ },
+ {
+ "epoch": 27.3914373088685,
+ "grad_norm": 0.19604510068893433,
+ "learning_rate": 0.0006,
+ "loss": 3.7735626697540283,
+ "step": 1972
+ },
+ {
+ "epoch": 27.405417212756664,
+ "grad_norm": 0.20136640965938568,
+ "learning_rate": 0.0006,
+ "loss": 3.77310848236084,
+ "step": 1973
+ },
+ {
+ "epoch": 27.419397116644824,
+ "grad_norm": 0.19314947724342346,
+ "learning_rate": 0.0006,
+ "loss": 3.8084068298339844,
+ "step": 1974
+ },
+ {
+ "epoch": 27.433377020532983,
+ "grad_norm": 0.20761604607105255,
+ "learning_rate": 0.0006,
+ "loss": 3.80732798576355,
+ "step": 1975
+ },
+ {
+ "epoch": 27.447356924421143,
+ "grad_norm": 0.2239987850189209,
+ "learning_rate": 0.0006,
+ "loss": 3.7950329780578613,
+ "step": 1976
+ },
+ {
+ "epoch": 27.461336828309307,
+ "grad_norm": 0.22146444022655487,
+ "learning_rate": 0.0006,
+ "loss": 3.7957234382629395,
+ "step": 1977
+ },
+ {
+ "epoch": 27.475316732197467,
+ "grad_norm": 0.23218585550785065,
+ "learning_rate": 0.0006,
+ "loss": 3.806377410888672,
+ "step": 1978
+ },
+ {
+ "epoch": 27.489296636085626,
+ "grad_norm": 0.23549026250839233,
+ "learning_rate": 0.0006,
+ "loss": 3.7833383083343506,
+ "step": 1979
+ },
+ {
+ "epoch": 27.503276539973786,
+ "grad_norm": 0.24219457805156708,
+ "learning_rate": 0.0006,
+ "loss": 3.8154187202453613,
+ "step": 1980
+ },
+ {
+ "epoch": 27.51725644386195,
+ "grad_norm": 0.23703953623771667,
+ "learning_rate": 0.0006,
+ "loss": 3.7846405506134033,
+ "step": 1981
+ },
+ {
+ "epoch": 27.53123634775011,
+ "grad_norm": 0.23596109449863434,
+ "learning_rate": 0.0006,
+ "loss": 3.7698163986206055,
+ "step": 1982
+ },
+ {
+ "epoch": 27.54521625163827,
+ "grad_norm": 0.23073506355285645,
+ "learning_rate": 0.0006,
+ "loss": 3.8114185333251953,
+ "step": 1983
+ },
+ {
+ "epoch": 27.55919615552643,
+ "grad_norm": 0.24761143326759338,
+ "learning_rate": 0.0006,
+ "loss": 3.7548117637634277,
+ "step": 1984
+ },
+ {
+ "epoch": 27.573176059414592,
+ "grad_norm": 0.2834068238735199,
+ "learning_rate": 0.0006,
+ "loss": 3.7990212440490723,
+ "step": 1985
+ },
+ {
+ "epoch": 27.587155963302752,
+ "grad_norm": 0.29774922132492065,
+ "learning_rate": 0.0006,
+ "loss": 3.7845072746276855,
+ "step": 1986
+ },
+ {
+ "epoch": 27.601135867190912,
+ "grad_norm": 0.2732089161872864,
+ "learning_rate": 0.0006,
+ "loss": 3.8050694465637207,
+ "step": 1987
+ },
+ {
+ "epoch": 27.615115771079076,
+ "grad_norm": 0.24433180689811707,
+ "learning_rate": 0.0006,
+ "loss": 3.762704372406006,
+ "step": 1988
+ },
+ {
+ "epoch": 27.629095674967235,
+ "grad_norm": 0.21340419352054596,
+ "learning_rate": 0.0006,
+ "loss": 3.826023817062378,
+ "step": 1989
+ },
+ {
+ "epoch": 27.643075578855395,
+ "grad_norm": 0.22518761456012726,
+ "learning_rate": 0.0006,
+ "loss": 3.7823970317840576,
+ "step": 1990
+ },
+ {
+ "epoch": 27.657055482743555,
+ "grad_norm": 0.2196940928697586,
+ "learning_rate": 0.0006,
+ "loss": 3.787463426589966,
+ "step": 1991
+ },
+ {
+ "epoch": 27.67103538663172,
+ "grad_norm": 0.21906471252441406,
+ "learning_rate": 0.0006,
+ "loss": 3.7856104373931885,
+ "step": 1992
+ },
+ {
+ "epoch": 27.68501529051988,
+ "grad_norm": 0.2280956357717514,
+ "learning_rate": 0.0006,
+ "loss": 3.7829794883728027,
+ "step": 1993
+ },
+ {
+ "epoch": 27.698995194408038,
+ "grad_norm": 0.22567005455493927,
+ "learning_rate": 0.0006,
+ "loss": 3.762316942214966,
+ "step": 1994
+ },
+ {
+ "epoch": 27.712975098296198,
+ "grad_norm": 0.21703341603279114,
+ "learning_rate": 0.0006,
+ "loss": 3.772535800933838,
+ "step": 1995
+ },
+ {
+ "epoch": 27.72695500218436,
+ "grad_norm": 0.20586732029914856,
+ "learning_rate": 0.0006,
+ "loss": 3.775930881500244,
+ "step": 1996
+ },
+ {
+ "epoch": 27.74093490607252,
+ "grad_norm": 0.2126319408416748,
+ "learning_rate": 0.0006,
+ "loss": 3.793353796005249,
+ "step": 1997
+ },
+ {
+ "epoch": 27.75491480996068,
+ "grad_norm": 0.19664280116558075,
+ "learning_rate": 0.0006,
+ "loss": 3.7721195220947266,
+ "step": 1998
+ },
+ {
+ "epoch": 27.76889471384884,
+ "grad_norm": 0.17695854604244232,
+ "learning_rate": 0.0006,
+ "loss": 3.7931227684020996,
+ "step": 1999
+ },
+ {
+ "epoch": 27.782874617737004,
+ "grad_norm": 0.1899620145559311,
+ "learning_rate": 0.0006,
+ "loss": 3.798692226409912,
+ "step": 2000
+ },
+ {
+ "epoch": 27.796854521625164,
+ "grad_norm": 0.20334762334823608,
+ "learning_rate": 0.0006,
+ "loss": 3.774670124053955,
+ "step": 2001
+ },
+ {
+ "epoch": 27.810834425513324,
+ "grad_norm": 0.21150588989257812,
+ "learning_rate": 0.0006,
+ "loss": 3.803859233856201,
+ "step": 2002
+ },
+ {
+ "epoch": 27.824814329401484,
+ "grad_norm": 0.20425523817539215,
+ "learning_rate": 0.0006,
+ "loss": 3.810410976409912,
+ "step": 2003
+ },
+ {
+ "epoch": 27.838794233289647,
+ "grad_norm": 0.20468413829803467,
+ "learning_rate": 0.0006,
+ "loss": 3.800917625427246,
+ "step": 2004
+ },
+ {
+ "epoch": 27.852774137177807,
+ "grad_norm": 0.2113286256790161,
+ "learning_rate": 0.0006,
+ "loss": 3.7581989765167236,
+ "step": 2005
+ },
+ {
+ "epoch": 27.866754041065967,
+ "grad_norm": 0.2098054736852646,
+ "learning_rate": 0.0006,
+ "loss": 3.7921502590179443,
+ "step": 2006
+ },
+ {
+ "epoch": 27.88073394495413,
+ "grad_norm": 0.21701586246490479,
+ "learning_rate": 0.0006,
+ "loss": 3.8166770935058594,
+ "step": 2007
+ },
+ {
+ "epoch": 27.89471384884229,
+ "grad_norm": 0.2086625099182129,
+ "learning_rate": 0.0006,
+ "loss": 3.7732229232788086,
+ "step": 2008
+ },
+ {
+ "epoch": 27.90869375273045,
+ "grad_norm": 0.2186812162399292,
+ "learning_rate": 0.0006,
+ "loss": 3.8067402839660645,
+ "step": 2009
+ },
+ {
+ "epoch": 27.92267365661861,
+ "grad_norm": 0.2168985903263092,
+ "learning_rate": 0.0006,
+ "loss": 3.798159122467041,
+ "step": 2010
+ },
+ {
+ "epoch": 27.936653560506773,
+ "grad_norm": 0.23713620007038116,
+ "learning_rate": 0.0006,
+ "loss": 3.7958693504333496,
+ "step": 2011
+ },
+ {
+ "epoch": 27.950633464394933,
+ "grad_norm": 0.23592841625213623,
+ "learning_rate": 0.0006,
+ "loss": 3.795126438140869,
+ "step": 2012
+ },
+ {
+ "epoch": 27.964613368283093,
+ "grad_norm": 0.22210197150707245,
+ "learning_rate": 0.0006,
+ "loss": 3.791013240814209,
+ "step": 2013
+ },
+ {
+ "epoch": 27.978593272171253,
+ "grad_norm": 0.23190008103847504,
+ "learning_rate": 0.0006,
+ "loss": 3.813408374786377,
+ "step": 2014
+ },
+ {
+ "epoch": 27.992573176059416,
+ "grad_norm": 0.22158131003379822,
+ "learning_rate": 0.0006,
+ "loss": 3.7975716590881348,
+ "step": 2015
+ },
+ {
+ "epoch": 28.0,
+ "grad_norm": 0.2300519198179245,
+ "learning_rate": 0.0006,
+ "loss": 3.776214838027954,
+ "step": 2016
+ },
+ {
+ "epoch": 28.0,
+ "eval_loss": 4.04406213760376,
+ "eval_runtime": 44.0285,
+ "eval_samples_per_second": 55.464,
+ "eval_steps_per_second": 3.475,
+ "step": 2016
+ },
+ {
+ "epoch": 28.01397990388816,
+ "grad_norm": 0.21007688343524933,
+ "learning_rate": 0.0006,
+ "loss": 3.7366907596588135,
+ "step": 2017
+ },
+ {
+ "epoch": 28.027959807776323,
+ "grad_norm": 0.1941644549369812,
+ "learning_rate": 0.0006,
+ "loss": 3.744373321533203,
+ "step": 2018
+ },
+ {
+ "epoch": 28.041939711664483,
+ "grad_norm": 0.21308493614196777,
+ "learning_rate": 0.0006,
+ "loss": 3.7650012969970703,
+ "step": 2019
+ },
+ {
+ "epoch": 28.055919615552643,
+ "grad_norm": 0.20114868879318237,
+ "learning_rate": 0.0006,
+ "loss": 3.7652382850646973,
+ "step": 2020
+ },
+ {
+ "epoch": 28.069899519440803,
+ "grad_norm": 0.20266319811344147,
+ "learning_rate": 0.0006,
+ "loss": 3.7710442543029785,
+ "step": 2021
+ },
+ {
+ "epoch": 28.083879423328966,
+ "grad_norm": 0.205102801322937,
+ "learning_rate": 0.0006,
+ "loss": 3.7515463829040527,
+ "step": 2022
+ },
+ {
+ "epoch": 28.097859327217126,
+ "grad_norm": 0.22002041339874268,
+ "learning_rate": 0.0006,
+ "loss": 3.762019157409668,
+ "step": 2023
+ },
+ {
+ "epoch": 28.111839231105286,
+ "grad_norm": 0.2063235342502594,
+ "learning_rate": 0.0006,
+ "loss": 3.765453338623047,
+ "step": 2024
+ },
+ {
+ "epoch": 28.125819134993446,
+ "grad_norm": 0.19145619869232178,
+ "learning_rate": 0.0006,
+ "loss": 3.769411325454712,
+ "step": 2025
+ },
+ {
+ "epoch": 28.13979903888161,
+ "grad_norm": 0.19308455288410187,
+ "learning_rate": 0.0006,
+ "loss": 3.8009989261627197,
+ "step": 2026
+ },
+ {
+ "epoch": 28.15377894276977,
+ "grad_norm": 0.220510333776474,
+ "learning_rate": 0.0006,
+ "loss": 3.7582602500915527,
+ "step": 2027
+ },
+ {
+ "epoch": 28.16775884665793,
+ "grad_norm": 0.22855883836746216,
+ "learning_rate": 0.0006,
+ "loss": 3.803917407989502,
+ "step": 2028
+ },
+ {
+ "epoch": 28.18173875054609,
+ "grad_norm": 0.24206340312957764,
+ "learning_rate": 0.0006,
+ "loss": 3.764101028442383,
+ "step": 2029
+ },
+ {
+ "epoch": 28.195718654434252,
+ "grad_norm": 0.23973612487316132,
+ "learning_rate": 0.0006,
+ "loss": 3.787308931350708,
+ "step": 2030
+ },
+ {
+ "epoch": 28.209698558322412,
+ "grad_norm": 0.21400697529315948,
+ "learning_rate": 0.0006,
+ "loss": 3.7706117630004883,
+ "step": 2031
+ },
+ {
+ "epoch": 28.22367846221057,
+ "grad_norm": 0.21983976662158966,
+ "learning_rate": 0.0006,
+ "loss": 3.772731304168701,
+ "step": 2032
+ },
+ {
+ "epoch": 28.23765836609873,
+ "grad_norm": 0.22427113354206085,
+ "learning_rate": 0.0006,
+ "loss": 3.7724413871765137,
+ "step": 2033
+ },
+ {
+ "epoch": 28.251638269986895,
+ "grad_norm": 0.23665079474449158,
+ "learning_rate": 0.0006,
+ "loss": 3.769845962524414,
+ "step": 2034
+ },
+ {
+ "epoch": 28.265618173875055,
+ "grad_norm": 0.22663180530071259,
+ "learning_rate": 0.0006,
+ "loss": 3.764380931854248,
+ "step": 2035
+ },
+ {
+ "epoch": 28.279598077763215,
+ "grad_norm": 0.21094927191734314,
+ "learning_rate": 0.0006,
+ "loss": 3.7598326206207275,
+ "step": 2036
+ },
+ {
+ "epoch": 28.293577981651374,
+ "grad_norm": 0.20419518649578094,
+ "learning_rate": 0.0006,
+ "loss": 3.7737207412719727,
+ "step": 2037
+ },
+ {
+ "epoch": 28.307557885539538,
+ "grad_norm": 0.2171909660100937,
+ "learning_rate": 0.0006,
+ "loss": 3.7499468326568604,
+ "step": 2038
+ },
+ {
+ "epoch": 28.321537789427698,
+ "grad_norm": 0.22749298810958862,
+ "learning_rate": 0.0006,
+ "loss": 3.767536163330078,
+ "step": 2039
+ },
+ {
+ "epoch": 28.335517693315857,
+ "grad_norm": 0.22821909189224243,
+ "learning_rate": 0.0006,
+ "loss": 3.744386672973633,
+ "step": 2040
+ },
+ {
+ "epoch": 28.34949759720402,
+ "grad_norm": 0.2227880209684372,
+ "learning_rate": 0.0006,
+ "loss": 3.72955322265625,
+ "step": 2041
+ },
+ {
+ "epoch": 28.36347750109218,
+ "grad_norm": 0.22204327583312988,
+ "learning_rate": 0.0006,
+ "loss": 3.793854236602783,
+ "step": 2042
+ },
+ {
+ "epoch": 28.37745740498034,
+ "grad_norm": 0.21621409058570862,
+ "learning_rate": 0.0006,
+ "loss": 3.775379180908203,
+ "step": 2043
+ },
+ {
+ "epoch": 28.3914373088685,
+ "grad_norm": 0.2439221441745758,
+ "learning_rate": 0.0006,
+ "loss": 3.727464199066162,
+ "step": 2044
+ },
+ {
+ "epoch": 28.405417212756664,
+ "grad_norm": 0.24408605694770813,
+ "learning_rate": 0.0006,
+ "loss": 3.761747360229492,
+ "step": 2045
+ },
+ {
+ "epoch": 28.419397116644824,
+ "grad_norm": 0.26118648052215576,
+ "learning_rate": 0.0006,
+ "loss": 3.7587313652038574,
+ "step": 2046
+ },
+ {
+ "epoch": 28.433377020532983,
+ "grad_norm": 0.25948166847229004,
+ "learning_rate": 0.0006,
+ "loss": 3.7698440551757812,
+ "step": 2047
+ },
+ {
+ "epoch": 28.447356924421143,
+ "grad_norm": 0.26413780450820923,
+ "learning_rate": 0.0006,
+ "loss": 3.799107551574707,
+ "step": 2048
+ },
+ {
+ "epoch": 28.461336828309307,
+ "grad_norm": 0.2687148153781891,
+ "learning_rate": 0.0006,
+ "loss": 3.7564382553100586,
+ "step": 2049
+ },
+ {
+ "epoch": 28.475316732197467,
+ "grad_norm": 0.2676694691181183,
+ "learning_rate": 0.0006,
+ "loss": 3.754267692565918,
+ "step": 2050
+ },
+ {
+ "epoch": 28.489296636085626,
+ "grad_norm": 0.27275168895721436,
+ "learning_rate": 0.0006,
+ "loss": 3.802988052368164,
+ "step": 2051
+ },
+ {
+ "epoch": 28.503276539973786,
+ "grad_norm": 0.28783538937568665,
+ "learning_rate": 0.0006,
+ "loss": 3.762540817260742,
+ "step": 2052
+ },
+ {
+ "epoch": 28.51725644386195,
+ "grad_norm": 0.2628997266292572,
+ "learning_rate": 0.0006,
+ "loss": 3.7933349609375,
+ "step": 2053
+ },
+ {
+ "epoch": 28.53123634775011,
+ "grad_norm": 0.2498515099287033,
+ "learning_rate": 0.0006,
+ "loss": 3.7773094177246094,
+ "step": 2054
+ },
+ {
+ "epoch": 28.54521625163827,
+ "grad_norm": 0.22625942528247833,
+ "learning_rate": 0.0006,
+ "loss": 3.803457021713257,
+ "step": 2055
+ },
+ {
+ "epoch": 28.55919615552643,
+ "grad_norm": 0.21488751471042633,
+ "learning_rate": 0.0006,
+ "loss": 3.78924560546875,
+ "step": 2056
+ },
+ {
+ "epoch": 28.573176059414592,
+ "grad_norm": 0.22041267156600952,
+ "learning_rate": 0.0006,
+ "loss": 3.79361629486084,
+ "step": 2057
+ },
+ {
+ "epoch": 28.587155963302752,
+ "grad_norm": 0.23164816200733185,
+ "learning_rate": 0.0006,
+ "loss": 3.735037326812744,
+ "step": 2058
+ },
+ {
+ "epoch": 28.601135867190912,
+ "grad_norm": 0.22371916472911835,
+ "learning_rate": 0.0006,
+ "loss": 3.731417179107666,
+ "step": 2059
+ },
+ {
+ "epoch": 28.615115771079076,
+ "grad_norm": 0.2280314862728119,
+ "learning_rate": 0.0006,
+ "loss": 3.796154499053955,
+ "step": 2060
+ },
+ {
+ "epoch": 28.629095674967235,
+ "grad_norm": 0.21386604011058807,
+ "learning_rate": 0.0006,
+ "loss": 3.778648614883423,
+ "step": 2061
+ },
+ {
+ "epoch": 28.643075578855395,
+ "grad_norm": 0.20433050394058228,
+ "learning_rate": 0.0006,
+ "loss": 3.772826910018921,
+ "step": 2062
+ },
+ {
+ "epoch": 28.657055482743555,
+ "grad_norm": 0.2049262523651123,
+ "learning_rate": 0.0006,
+ "loss": 3.7410364151000977,
+ "step": 2063
+ },
+ {
+ "epoch": 28.67103538663172,
+ "grad_norm": 0.22041259706020355,
+ "learning_rate": 0.0006,
+ "loss": 3.796724319458008,
+ "step": 2064
+ },
+ {
+ "epoch": 28.68501529051988,
+ "grad_norm": 0.2018800675868988,
+ "learning_rate": 0.0006,
+ "loss": 3.775252342224121,
+ "step": 2065
+ },
+ {
+ "epoch": 28.698995194408038,
+ "grad_norm": 0.2159280925989151,
+ "learning_rate": 0.0006,
+ "loss": 3.766021251678467,
+ "step": 2066
+ },
+ {
+ "epoch": 28.712975098296198,
+ "grad_norm": 0.2072775512933731,
+ "learning_rate": 0.0006,
+ "loss": 3.765397548675537,
+ "step": 2067
+ },
+ {
+ "epoch": 28.72695500218436,
+ "grad_norm": 0.19592848420143127,
+ "learning_rate": 0.0006,
+ "loss": 3.8151614665985107,
+ "step": 2068
+ },
+ {
+ "epoch": 28.74093490607252,
+ "grad_norm": 0.19266322255134583,
+ "learning_rate": 0.0006,
+ "loss": 3.774945020675659,
+ "step": 2069
+ },
+ {
+ "epoch": 28.75491480996068,
+ "grad_norm": 0.19442392885684967,
+ "learning_rate": 0.0006,
+ "loss": 3.816283702850342,
+ "step": 2070
+ },
+ {
+ "epoch": 28.76889471384884,
+ "grad_norm": 0.19080746173858643,
+ "learning_rate": 0.0006,
+ "loss": 3.7784247398376465,
+ "step": 2071
+ },
+ {
+ "epoch": 28.782874617737004,
+ "grad_norm": 0.20150451362133026,
+ "learning_rate": 0.0006,
+ "loss": 3.7710249423980713,
+ "step": 2072
+ },
+ {
+ "epoch": 28.796854521625164,
+ "grad_norm": 0.1835816204547882,
+ "learning_rate": 0.0006,
+ "loss": 3.750032901763916,
+ "step": 2073
+ },
+ {
+ "epoch": 28.810834425513324,
+ "grad_norm": 0.1855502873659134,
+ "learning_rate": 0.0006,
+ "loss": 3.7276318073272705,
+ "step": 2074
+ },
+ {
+ "epoch": 28.824814329401484,
+ "grad_norm": 0.18683169782161713,
+ "learning_rate": 0.0006,
+ "loss": 3.7516555786132812,
+ "step": 2075
+ },
+ {
+ "epoch": 28.838794233289647,
+ "grad_norm": 0.2034577578306198,
+ "learning_rate": 0.0006,
+ "loss": 3.749875068664551,
+ "step": 2076
+ },
+ {
+ "epoch": 28.852774137177807,
+ "grad_norm": 0.2234230488538742,
+ "learning_rate": 0.0006,
+ "loss": 3.791429042816162,
+ "step": 2077
+ },
+ {
+ "epoch": 28.866754041065967,
+ "grad_norm": 0.25600525736808777,
+ "learning_rate": 0.0006,
+ "loss": 3.7769298553466797,
+ "step": 2078
+ },
+ {
+ "epoch": 28.88073394495413,
+ "grad_norm": 0.2741529643535614,
+ "learning_rate": 0.0006,
+ "loss": 3.771848201751709,
+ "step": 2079
+ },
+ {
+ "epoch": 28.89471384884229,
+ "grad_norm": 0.2710304260253906,
+ "learning_rate": 0.0006,
+ "loss": 3.8235626220703125,
+ "step": 2080
+ },
+ {
+ "epoch": 28.90869375273045,
+ "grad_norm": 0.25497519969940186,
+ "learning_rate": 0.0006,
+ "loss": 3.811288595199585,
+ "step": 2081
+ },
+ {
+ "epoch": 28.92267365661861,
+ "grad_norm": 0.25689464807510376,
+ "learning_rate": 0.0006,
+ "loss": 3.7848939895629883,
+ "step": 2082
+ },
+ {
+ "epoch": 28.936653560506773,
+ "grad_norm": 0.2794921398162842,
+ "learning_rate": 0.0006,
+ "loss": 3.7836732864379883,
+ "step": 2083
+ },
+ {
+ "epoch": 28.950633464394933,
+ "grad_norm": 0.24730202555656433,
+ "learning_rate": 0.0006,
+ "loss": 3.7703347206115723,
+ "step": 2084
+ },
+ {
+ "epoch": 28.964613368283093,
+ "grad_norm": 0.21078833937644958,
+ "learning_rate": 0.0006,
+ "loss": 3.7521653175354004,
+ "step": 2085
+ },
+ {
+ "epoch": 28.978593272171253,
+ "grad_norm": 0.2188870757818222,
+ "learning_rate": 0.0006,
+ "loss": 3.769604206085205,
+ "step": 2086
+ },
+ {
+ "epoch": 28.992573176059416,
+ "grad_norm": 0.20447929203510284,
+ "learning_rate": 0.0006,
+ "loss": 3.7842764854431152,
+ "step": 2087
+ },
+ {
+ "epoch": 29.0,
+ "grad_norm": 0.21607689559459686,
+ "learning_rate": 0.0006,
+ "loss": 3.7428855895996094,
+ "step": 2088
+ },
+ {
+ "epoch": 29.0,
+ "eval_loss": 4.0355753898620605,
+ "eval_runtime": 44.1435,
+ "eval_samples_per_second": 55.32,
+ "eval_steps_per_second": 3.466,
+ "step": 2088
+ },
+ {
+ "epoch": 29.01397990388816,
+ "grad_norm": 0.21270133554935455,
+ "learning_rate": 0.0006,
+ "loss": 3.7548413276672363,
+ "step": 2089
+ },
+ {
+ "epoch": 29.027959807776323,
+ "grad_norm": 0.21576301753520966,
+ "learning_rate": 0.0006,
+ "loss": 3.754613161087036,
+ "step": 2090
+ },
+ {
+ "epoch": 29.041939711664483,
+ "grad_norm": 0.2162923663854599,
+ "learning_rate": 0.0006,
+ "loss": 3.755772590637207,
+ "step": 2091
+ },
+ {
+ "epoch": 29.055919615552643,
+ "grad_norm": 0.22236663103103638,
+ "learning_rate": 0.0006,
+ "loss": 3.743497848510742,
+ "step": 2092
+ },
+ {
+ "epoch": 29.069899519440803,
+ "grad_norm": 0.2391042858362198,
+ "learning_rate": 0.0006,
+ "loss": 3.749204158782959,
+ "step": 2093
+ },
+ {
+ "epoch": 29.083879423328966,
+ "grad_norm": 0.23387965559959412,
+ "learning_rate": 0.0006,
+ "loss": 3.7286791801452637,
+ "step": 2094
+ },
+ {
+ "epoch": 29.097859327217126,
+ "grad_norm": 0.23677746951580048,
+ "learning_rate": 0.0006,
+ "loss": 3.755279541015625,
+ "step": 2095
+ },
+ {
+ "epoch": 29.111839231105286,
+ "grad_norm": 0.22771087288856506,
+ "learning_rate": 0.0006,
+ "loss": 3.722566604614258,
+ "step": 2096
+ },
+ {
+ "epoch": 29.125819134993446,
+ "grad_norm": 0.2132875621318817,
+ "learning_rate": 0.0006,
+ "loss": 3.748939037322998,
+ "step": 2097
+ },
+ {
+ "epoch": 29.13979903888161,
+ "grad_norm": 0.2033746838569641,
+ "learning_rate": 0.0006,
+ "loss": 3.7393670082092285,
+ "step": 2098
+ },
+ {
+ "epoch": 29.15377894276977,
+ "grad_norm": 0.1997237652540207,
+ "learning_rate": 0.0006,
+ "loss": 3.718498945236206,
+ "step": 2099
+ },
+ {
+ "epoch": 29.16775884665793,
+ "grad_norm": 0.19102543592453003,
+ "learning_rate": 0.0006,
+ "loss": 3.748950719833374,
+ "step": 2100
+ },
+ {
+ "epoch": 29.18173875054609,
+ "grad_norm": 0.19801580905914307,
+ "learning_rate": 0.0006,
+ "loss": 3.7123501300811768,
+ "step": 2101
+ },
+ {
+ "epoch": 29.195718654434252,
+ "grad_norm": 0.20186249911785126,
+ "learning_rate": 0.0006,
+ "loss": 3.7632713317871094,
+ "step": 2102
+ },
+ {
+ "epoch": 29.209698558322412,
+ "grad_norm": 0.22725415229797363,
+ "learning_rate": 0.0006,
+ "loss": 3.753506660461426,
+ "step": 2103
+ },
+ {
+ "epoch": 29.22367846221057,
+ "grad_norm": 0.23138119280338287,
+ "learning_rate": 0.0006,
+ "loss": 3.753282070159912,
+ "step": 2104
+ },
+ {
+ "epoch": 29.23765836609873,
+ "grad_norm": 0.23171944916248322,
+ "learning_rate": 0.0006,
+ "loss": 3.73783540725708,
+ "step": 2105
+ },
+ {
+ "epoch": 29.251638269986895,
+ "grad_norm": 0.2166522741317749,
+ "learning_rate": 0.0006,
+ "loss": 3.778803825378418,
+ "step": 2106
+ },
+ {
+ "epoch": 29.265618173875055,
+ "grad_norm": 0.2009056806564331,
+ "learning_rate": 0.0006,
+ "loss": 3.738290786743164,
+ "step": 2107
+ },
+ {
+ "epoch": 29.279598077763215,
+ "grad_norm": 0.19451597332954407,
+ "learning_rate": 0.0006,
+ "loss": 3.7553348541259766,
+ "step": 2108
+ },
+ {
+ "epoch": 29.293577981651374,
+ "grad_norm": 0.19246742129325867,
+ "learning_rate": 0.0006,
+ "loss": 3.7321622371673584,
+ "step": 2109
+ },
+ {
+ "epoch": 29.307557885539538,
+ "grad_norm": 0.18917441368103027,
+ "learning_rate": 0.0006,
+ "loss": 3.7408928871154785,
+ "step": 2110
+ },
+ {
+ "epoch": 29.321537789427698,
+ "grad_norm": 0.19067776203155518,
+ "learning_rate": 0.0006,
+ "loss": 3.780052900314331,
+ "step": 2111
+ },
+ {
+ "epoch": 29.335517693315857,
+ "grad_norm": 0.18849676847457886,
+ "learning_rate": 0.0006,
+ "loss": 3.749375820159912,
+ "step": 2112
+ },
+ {
+ "epoch": 29.34949759720402,
+ "grad_norm": 0.19713285565376282,
+ "learning_rate": 0.0006,
+ "loss": 3.7128982543945312,
+ "step": 2113
+ },
+ {
+ "epoch": 29.36347750109218,
+ "grad_norm": 0.196336030960083,
+ "learning_rate": 0.0006,
+ "loss": 3.7528390884399414,
+ "step": 2114
+ },
+ {
+ "epoch": 29.37745740498034,
+ "grad_norm": 0.19574350118637085,
+ "learning_rate": 0.0006,
+ "loss": 3.7105777263641357,
+ "step": 2115
+ },
+ {
+ "epoch": 29.3914373088685,
+ "grad_norm": 0.20396539568901062,
+ "learning_rate": 0.0006,
+ "loss": 3.782249927520752,
+ "step": 2116
+ },
+ {
+ "epoch": 29.405417212756664,
+ "grad_norm": 0.24702422320842743,
+ "learning_rate": 0.0006,
+ "loss": 3.7685647010803223,
+ "step": 2117
+ },
+ {
+ "epoch": 29.419397116644824,
+ "grad_norm": 0.2729755640029907,
+ "learning_rate": 0.0006,
+ "loss": 3.7731213569641113,
+ "step": 2118
+ },
+ {
+ "epoch": 29.433377020532983,
+ "grad_norm": 0.29240545630455017,
+ "learning_rate": 0.0006,
+ "loss": 3.770162343978882,
+ "step": 2119
+ },
+ {
+ "epoch": 29.447356924421143,
+ "grad_norm": 0.2469114065170288,
+ "learning_rate": 0.0006,
+ "loss": 3.764681339263916,
+ "step": 2120
+ },
+ {
+ "epoch": 29.461336828309307,
+ "grad_norm": 0.19837401807308197,
+ "learning_rate": 0.0006,
+ "loss": 3.7600088119506836,
+ "step": 2121
+ },
+ {
+ "epoch": 29.475316732197467,
+ "grad_norm": 0.21266621351242065,
+ "learning_rate": 0.0006,
+ "loss": 3.769454002380371,
+ "step": 2122
+ },
+ {
+ "epoch": 29.489296636085626,
+ "grad_norm": 0.25908344984054565,
+ "learning_rate": 0.0006,
+ "loss": 3.7230491638183594,
+ "step": 2123
+ },
+ {
+ "epoch": 29.503276539973786,
+ "grad_norm": 0.2914169728755951,
+ "learning_rate": 0.0006,
+ "loss": 3.767849922180176,
+ "step": 2124
+ },
+ {
+ "epoch": 29.51725644386195,
+ "grad_norm": 0.2796176075935364,
+ "learning_rate": 0.0006,
+ "loss": 3.741734266281128,
+ "step": 2125
+ },
+ {
+ "epoch": 29.53123634775011,
+ "grad_norm": 0.276309996843338,
+ "learning_rate": 0.0006,
+ "loss": 3.8001914024353027,
+ "step": 2126
+ },
+ {
+ "epoch": 29.54521625163827,
+ "grad_norm": 0.26512834429740906,
+ "learning_rate": 0.0006,
+ "loss": 3.7741384506225586,
+ "step": 2127
+ },
+ {
+ "epoch": 29.55919615552643,
+ "grad_norm": 0.26514101028442383,
+ "learning_rate": 0.0006,
+ "loss": 3.7466959953308105,
+ "step": 2128
+ },
+ {
+ "epoch": 29.573176059414592,
+ "grad_norm": 0.24121330678462982,
+ "learning_rate": 0.0006,
+ "loss": 3.759542465209961,
+ "step": 2129
+ },
+ {
+ "epoch": 29.587155963302752,
+ "grad_norm": 0.2264087200164795,
+ "learning_rate": 0.0006,
+ "loss": 3.791344165802002,
+ "step": 2130
+ },
+ {
+ "epoch": 29.601135867190912,
+ "grad_norm": 0.21915403008460999,
+ "learning_rate": 0.0006,
+ "loss": 3.7540485858917236,
+ "step": 2131
+ },
+ {
+ "epoch": 29.615115771079076,
+ "grad_norm": 0.20453961193561554,
+ "learning_rate": 0.0006,
+ "loss": 3.765617609024048,
+ "step": 2132
+ },
+ {
+ "epoch": 29.629095674967235,
+ "grad_norm": 0.2194051444530487,
+ "learning_rate": 0.0006,
+ "loss": 3.7664294242858887,
+ "step": 2133
+ },
+ {
+ "epoch": 29.643075578855395,
+ "grad_norm": 0.21926000714302063,
+ "learning_rate": 0.0006,
+ "loss": 3.7551684379577637,
+ "step": 2134
+ },
+ {
+ "epoch": 29.657055482743555,
+ "grad_norm": 0.20835602283477783,
+ "learning_rate": 0.0006,
+ "loss": 3.7654306888580322,
+ "step": 2135
+ },
+ {
+ "epoch": 29.67103538663172,
+ "grad_norm": 0.23094356060028076,
+ "learning_rate": 0.0006,
+ "loss": 3.7847180366516113,
+ "step": 2136
+ },
+ {
+ "epoch": 29.68501529051988,
+ "grad_norm": 0.23871271312236786,
+ "learning_rate": 0.0006,
+ "loss": 3.789036273956299,
+ "step": 2137
+ },
+ {
+ "epoch": 29.698995194408038,
+ "grad_norm": 0.22263272106647491,
+ "learning_rate": 0.0006,
+ "loss": 3.7677512168884277,
+ "step": 2138
+ },
+ {
+ "epoch": 29.712975098296198,
+ "grad_norm": 0.2293892651796341,
+ "learning_rate": 0.0006,
+ "loss": 3.777097225189209,
+ "step": 2139
+ },
+ {
+ "epoch": 29.72695500218436,
+ "grad_norm": 0.21068568527698517,
+ "learning_rate": 0.0006,
+ "loss": 3.785336494445801,
+ "step": 2140
+ },
+ {
+ "epoch": 29.74093490607252,
+ "grad_norm": 0.19600282609462738,
+ "learning_rate": 0.0006,
+ "loss": 3.7363505363464355,
+ "step": 2141
+ },
+ {
+ "epoch": 29.75491480996068,
+ "grad_norm": 0.20053936541080475,
+ "learning_rate": 0.0006,
+ "loss": 3.753859043121338,
+ "step": 2142
+ },
+ {
+ "epoch": 29.76889471384884,
+ "grad_norm": 0.22790539264678955,
+ "learning_rate": 0.0006,
+ "loss": 3.749492645263672,
+ "step": 2143
+ },
+ {
+ "epoch": 29.782874617737004,
+ "grad_norm": 0.26042407751083374,
+ "learning_rate": 0.0006,
+ "loss": 3.7905430793762207,
+ "step": 2144
+ },
+ {
+ "epoch": 29.796854521625164,
+ "grad_norm": 0.2753683626651764,
+ "learning_rate": 0.0006,
+ "loss": 3.756442070007324,
+ "step": 2145
+ },
+ {
+ "epoch": 29.810834425513324,
+ "grad_norm": 0.2795007526874542,
+ "learning_rate": 0.0006,
+ "loss": 3.7691903114318848,
+ "step": 2146
+ },
+ {
+ "epoch": 29.824814329401484,
+ "grad_norm": 0.2461438924074173,
+ "learning_rate": 0.0006,
+ "loss": 3.7573065757751465,
+ "step": 2147
+ },
+ {
+ "epoch": 29.838794233289647,
+ "grad_norm": 0.21051941812038422,
+ "learning_rate": 0.0006,
+ "loss": 3.7540078163146973,
+ "step": 2148
+ },
+ {
+ "epoch": 29.852774137177807,
+ "grad_norm": 0.197485089302063,
+ "learning_rate": 0.0006,
+ "loss": 3.734403133392334,
+ "step": 2149
+ },
+ {
+ "epoch": 29.866754041065967,
+ "grad_norm": 0.203064426779747,
+ "learning_rate": 0.0006,
+ "loss": 3.7888364791870117,
+ "step": 2150
+ },
+ {
+ "epoch": 29.88073394495413,
+ "grad_norm": 0.2000301480293274,
+ "learning_rate": 0.0006,
+ "loss": 3.7444958686828613,
+ "step": 2151
+ },
+ {
+ "epoch": 29.89471384884229,
+ "grad_norm": 0.20492053031921387,
+ "learning_rate": 0.0006,
+ "loss": 3.7878224849700928,
+ "step": 2152
+ },
+ {
+ "epoch": 29.90869375273045,
+ "grad_norm": 0.22565388679504395,
+ "learning_rate": 0.0006,
+ "loss": 3.7539188861846924,
+ "step": 2153
+ },
+ {
+ "epoch": 29.92267365661861,
+ "grad_norm": 0.20258226990699768,
+ "learning_rate": 0.0006,
+ "loss": 3.7491893768310547,
+ "step": 2154
+ },
+ {
+ "epoch": 29.936653560506773,
+ "grad_norm": 0.20028717815876007,
+ "learning_rate": 0.0006,
+ "loss": 3.7497997283935547,
+ "step": 2155
+ },
+ {
+ "epoch": 29.950633464394933,
+ "grad_norm": 0.2246360331773758,
+ "learning_rate": 0.0006,
+ "loss": 3.773930788040161,
+ "step": 2156
+ },
+ {
+ "epoch": 29.964613368283093,
+ "grad_norm": 0.22432482242584229,
+ "learning_rate": 0.0006,
+ "loss": 3.7926344871520996,
+ "step": 2157
+ },
+ {
+ "epoch": 29.978593272171253,
+ "grad_norm": 0.2165718674659729,
+ "learning_rate": 0.0006,
+ "loss": 3.7436647415161133,
+ "step": 2158
+ },
+ {
+ "epoch": 29.992573176059416,
+ "grad_norm": 0.20629167556762695,
+ "learning_rate": 0.0006,
+ "loss": 3.7619552612304688,
+ "step": 2159
+ },
+ {
+ "epoch": 30.0,
+ "grad_norm": 0.24264708161354065,
+ "learning_rate": 0.0006,
+ "loss": 3.772679328918457,
+ "step": 2160
+ },
+ {
+ "epoch": 30.0,
+ "eval_loss": 4.024484634399414,
+ "eval_runtime": 44.3611,
+ "eval_samples_per_second": 55.048,
+ "eval_steps_per_second": 3.449,
+ "step": 2160
+ },
+ {
+ "epoch": 30.01397990388816,
+ "grad_norm": 0.2373432070016861,
+ "learning_rate": 0.0006,
+ "loss": 3.7423200607299805,
+ "step": 2161
+ },
+ {
+ "epoch": 30.027959807776323,
+ "grad_norm": 0.26835134625434875,
+ "learning_rate": 0.0006,
+ "loss": 3.7215471267700195,
+ "step": 2162
+ },
+ {
+ "epoch": 30.041939711664483,
+ "grad_norm": 0.2743220329284668,
+ "learning_rate": 0.0006,
+ "loss": 3.7190256118774414,
+ "step": 2163
+ },
+ {
+ "epoch": 30.055919615552643,
+ "grad_norm": 0.2292490005493164,
+ "learning_rate": 0.0006,
+ "loss": 3.731855869293213,
+ "step": 2164
+ },
+ {
+ "epoch": 30.069899519440803,
+ "grad_norm": 0.22704607248306274,
+ "learning_rate": 0.0006,
+ "loss": 3.7649693489074707,
+ "step": 2165
+ },
+ {
+ "epoch": 30.083879423328966,
+ "grad_norm": 0.23255930840969086,
+ "learning_rate": 0.0006,
+ "loss": 3.7547781467437744,
+ "step": 2166
+ },
+ {
+ "epoch": 30.097859327217126,
+ "grad_norm": 0.2068684846162796,
+ "learning_rate": 0.0006,
+ "loss": 3.7343382835388184,
+ "step": 2167
+ },
+ {
+ "epoch": 30.111839231105286,
+ "grad_norm": 0.22523464262485504,
+ "learning_rate": 0.0006,
+ "loss": 3.7304530143737793,
+ "step": 2168
+ },
+ {
+ "epoch": 30.125819134993446,
+ "grad_norm": 0.24650199711322784,
+ "learning_rate": 0.0006,
+ "loss": 3.7414379119873047,
+ "step": 2169
+ },
+ {
+ "epoch": 30.13979903888161,
+ "grad_norm": 0.2392522394657135,
+ "learning_rate": 0.0006,
+ "loss": 3.754481792449951,
+ "step": 2170
+ },
+ {
+ "epoch": 30.15377894276977,
+ "grad_norm": 0.21174749732017517,
+ "learning_rate": 0.0006,
+ "loss": 3.7249929904937744,
+ "step": 2171
+ },
+ {
+ "epoch": 30.16775884665793,
+ "grad_norm": 0.20847836136817932,
+ "learning_rate": 0.0006,
+ "loss": 3.7146458625793457,
+ "step": 2172
+ },
+ {
+ "epoch": 30.18173875054609,
+ "grad_norm": 0.22131472826004028,
+ "learning_rate": 0.0006,
+ "loss": 3.7569539546966553,
+ "step": 2173
+ },
+ {
+ "epoch": 30.195718654434252,
+ "grad_norm": 0.23528096079826355,
+ "learning_rate": 0.0006,
+ "loss": 3.743435859680176,
+ "step": 2174
+ },
+ {
+ "epoch": 30.209698558322412,
+ "grad_norm": 0.2382429540157318,
+ "learning_rate": 0.0006,
+ "loss": 3.745307445526123,
+ "step": 2175
+ },
+ {
+ "epoch": 30.22367846221057,
+ "grad_norm": 0.2477114498615265,
+ "learning_rate": 0.0006,
+ "loss": 3.742305278778076,
+ "step": 2176
+ },
+ {
+ "epoch": 30.23765836609873,
+ "grad_norm": 0.24507801234722137,
+ "learning_rate": 0.0006,
+ "loss": 3.733564853668213,
+ "step": 2177
+ },
+ {
+ "epoch": 30.251638269986895,
+ "grad_norm": 0.2266329675912857,
+ "learning_rate": 0.0006,
+ "loss": 3.747429370880127,
+ "step": 2178
+ },
+ {
+ "epoch": 30.265618173875055,
+ "grad_norm": 0.22146396338939667,
+ "learning_rate": 0.0006,
+ "loss": 3.738630533218384,
+ "step": 2179
+ },
+ {
+ "epoch": 30.279598077763215,
+ "grad_norm": 0.20202279090881348,
+ "learning_rate": 0.0006,
+ "loss": 3.74582839012146,
+ "step": 2180
+ },
+ {
+ "epoch": 30.293577981651374,
+ "grad_norm": 0.20591886341571808,
+ "learning_rate": 0.0006,
+ "loss": 3.792062997817993,
+ "step": 2181
+ },
+ {
+ "epoch": 30.307557885539538,
+ "grad_norm": 0.21744129061698914,
+ "learning_rate": 0.0006,
+ "loss": 3.7389049530029297,
+ "step": 2182
+ },
+ {
+ "epoch": 30.321537789427698,
+ "grad_norm": 0.22641272842884064,
+ "learning_rate": 0.0006,
+ "loss": 3.756775140762329,
+ "step": 2183
+ },
+ {
+ "epoch": 30.335517693315857,
+ "grad_norm": 0.22433501482009888,
+ "learning_rate": 0.0006,
+ "loss": 3.764744758605957,
+ "step": 2184
+ },
+ {
+ "epoch": 30.34949759720402,
+ "grad_norm": 0.20184539258480072,
+ "learning_rate": 0.0006,
+ "loss": 3.747469902038574,
+ "step": 2185
+ },
+ {
+ "epoch": 30.36347750109218,
+ "grad_norm": 0.20864923298358917,
+ "learning_rate": 0.0006,
+ "loss": 3.7472925186157227,
+ "step": 2186
+ },
+ {
+ "epoch": 30.37745740498034,
+ "grad_norm": 0.22537396848201752,
+ "learning_rate": 0.0006,
+ "loss": 3.7194581031799316,
+ "step": 2187
+ },
+ {
+ "epoch": 30.3914373088685,
+ "grad_norm": 0.23159919679164886,
+ "learning_rate": 0.0006,
+ "loss": 3.7124292850494385,
+ "step": 2188
+ },
+ {
+ "epoch": 30.405417212756664,
+ "grad_norm": 0.24334494769573212,
+ "learning_rate": 0.0006,
+ "loss": 3.7769203186035156,
+ "step": 2189
+ },
+ {
+ "epoch": 30.419397116644824,
+ "grad_norm": 0.3031228482723236,
+ "learning_rate": 0.0006,
+ "loss": 3.762169361114502,
+ "step": 2190
+ },
+ {
+ "epoch": 30.433377020532983,
+ "grad_norm": 0.29114583134651184,
+ "learning_rate": 0.0006,
+ "loss": 3.76554799079895,
+ "step": 2191
+ },
+ {
+ "epoch": 30.447356924421143,
+ "grad_norm": 0.26824963092803955,
+ "learning_rate": 0.0006,
+ "loss": 3.732962131500244,
+ "step": 2192
+ },
+ {
+ "epoch": 30.461336828309307,
+ "grad_norm": 0.3026561141014099,
+ "learning_rate": 0.0006,
+ "loss": 3.7567975521087646,
+ "step": 2193
+ },
+ {
+ "epoch": 30.475316732197467,
+ "grad_norm": 0.27224525809288025,
+ "learning_rate": 0.0006,
+ "loss": 3.7856051921844482,
+ "step": 2194
+ },
+ {
+ "epoch": 30.489296636085626,
+ "grad_norm": 0.24295508861541748,
+ "learning_rate": 0.0006,
+ "loss": 3.7514901161193848,
+ "step": 2195
+ },
+ {
+ "epoch": 30.503276539973786,
+ "grad_norm": 0.24435290694236755,
+ "learning_rate": 0.0006,
+ "loss": 3.715973138809204,
+ "step": 2196
+ },
+ {
+ "epoch": 30.51725644386195,
+ "grad_norm": 0.2298959195613861,
+ "learning_rate": 0.0006,
+ "loss": 3.7960405349731445,
+ "step": 2197
+ },
+ {
+ "epoch": 30.53123634775011,
+ "grad_norm": 0.20313066244125366,
+ "learning_rate": 0.0006,
+ "loss": 3.7377915382385254,
+ "step": 2198
+ },
+ {
+ "epoch": 30.54521625163827,
+ "grad_norm": 0.2018895149230957,
+ "learning_rate": 0.0006,
+ "loss": 3.6980559825897217,
+ "step": 2199
+ },
+ {
+ "epoch": 30.55919615552643,
+ "grad_norm": 0.20048382878303528,
+ "learning_rate": 0.0006,
+ "loss": 3.7474141120910645,
+ "step": 2200
+ },
+ {
+ "epoch": 30.573176059414592,
+ "grad_norm": 0.19821316003799438,
+ "learning_rate": 0.0006,
+ "loss": 3.7668564319610596,
+ "step": 2201
+ },
+ {
+ "epoch": 30.587155963302752,
+ "grad_norm": 0.21467992663383484,
+ "learning_rate": 0.0006,
+ "loss": 3.7636144161224365,
+ "step": 2202
+ },
+ {
+ "epoch": 30.601135867190912,
+ "grad_norm": 0.20192000269889832,
+ "learning_rate": 0.0006,
+ "loss": 3.745736837387085,
+ "step": 2203
+ },
+ {
+ "epoch": 30.615115771079076,
+ "grad_norm": 0.2078823447227478,
+ "learning_rate": 0.0006,
+ "loss": 3.726665496826172,
+ "step": 2204
+ },
+ {
+ "epoch": 30.629095674967235,
+ "grad_norm": 0.22535845637321472,
+ "learning_rate": 0.0006,
+ "loss": 3.745058059692383,
+ "step": 2205
+ },
+ {
+ "epoch": 30.643075578855395,
+ "grad_norm": 0.22277814149856567,
+ "learning_rate": 0.0006,
+ "loss": 3.7488319873809814,
+ "step": 2206
+ },
+ {
+ "epoch": 30.657055482743555,
+ "grad_norm": 0.20940838754177094,
+ "learning_rate": 0.0006,
+ "loss": 3.7395732402801514,
+ "step": 2207
+ },
+ {
+ "epoch": 30.67103538663172,
+ "grad_norm": 0.21384629607200623,
+ "learning_rate": 0.0006,
+ "loss": 3.7275657653808594,
+ "step": 2208
+ },
+ {
+ "epoch": 30.68501529051988,
+ "grad_norm": 0.18796643614768982,
+ "learning_rate": 0.0006,
+ "loss": 3.743420124053955,
+ "step": 2209
+ },
+ {
+ "epoch": 30.698995194408038,
+ "grad_norm": 0.213258296251297,
+ "learning_rate": 0.0006,
+ "loss": 3.7227492332458496,
+ "step": 2210
+ },
+ {
+ "epoch": 30.712975098296198,
+ "grad_norm": 0.22714753448963165,
+ "learning_rate": 0.0006,
+ "loss": 3.7301113605499268,
+ "step": 2211
+ },
+ {
+ "epoch": 30.72695500218436,
+ "grad_norm": 0.21657656133174896,
+ "learning_rate": 0.0006,
+ "loss": 3.7336206436157227,
+ "step": 2212
+ },
+ {
+ "epoch": 30.74093490607252,
+ "grad_norm": 0.19550828635692596,
+ "learning_rate": 0.0006,
+ "loss": 3.7367351055145264,
+ "step": 2213
+ },
+ {
+ "epoch": 30.75491480996068,
+ "grad_norm": 0.17011769115924835,
+ "learning_rate": 0.0006,
+ "loss": 3.7401928901672363,
+ "step": 2214
+ },
+ {
+ "epoch": 30.76889471384884,
+ "grad_norm": 0.19110196828842163,
+ "learning_rate": 0.0006,
+ "loss": 3.7496562004089355,
+ "step": 2215
+ },
+ {
+ "epoch": 30.782874617737004,
+ "grad_norm": 0.20054543018341064,
+ "learning_rate": 0.0006,
+ "loss": 3.7532992362976074,
+ "step": 2216
+ },
+ {
+ "epoch": 30.796854521625164,
+ "grad_norm": 0.20667670667171478,
+ "learning_rate": 0.0006,
+ "loss": 3.746974468231201,
+ "step": 2217
+ },
+ {
+ "epoch": 30.810834425513324,
+ "grad_norm": 0.19850662350654602,
+ "learning_rate": 0.0006,
+ "loss": 3.7566256523132324,
+ "step": 2218
+ },
+ {
+ "epoch": 30.824814329401484,
+ "grad_norm": 0.19666457176208496,
+ "learning_rate": 0.0006,
+ "loss": 3.7356925010681152,
+ "step": 2219
+ },
+ {
+ "epoch": 30.838794233289647,
+ "grad_norm": 0.20022115111351013,
+ "learning_rate": 0.0006,
+ "loss": 3.768794536590576,
+ "step": 2220
+ },
+ {
+ "epoch": 30.852774137177807,
+ "grad_norm": 0.225278839468956,
+ "learning_rate": 0.0006,
+ "loss": 3.730262279510498,
+ "step": 2221
+ },
+ {
+ "epoch": 30.866754041065967,
+ "grad_norm": 0.2155608832836151,
+ "learning_rate": 0.0006,
+ "loss": 3.758157968521118,
+ "step": 2222
+ },
+ {
+ "epoch": 30.88073394495413,
+ "grad_norm": 0.20914921164512634,
+ "learning_rate": 0.0006,
+ "loss": 3.7290844917297363,
+ "step": 2223
+ },
+ {
+ "epoch": 30.89471384884229,
+ "grad_norm": 0.21579554677009583,
+ "learning_rate": 0.0006,
+ "loss": 3.7666125297546387,
+ "step": 2224
+ },
+ {
+ "epoch": 30.90869375273045,
+ "grad_norm": 0.22606384754180908,
+ "learning_rate": 0.0006,
+ "loss": 3.7396788597106934,
+ "step": 2225
+ },
+ {
+ "epoch": 30.92267365661861,
+ "grad_norm": 0.22218658030033112,
+ "learning_rate": 0.0006,
+ "loss": 3.7363057136535645,
+ "step": 2226
+ },
+ {
+ "epoch": 30.936653560506773,
+ "grad_norm": 0.2107125222682953,
+ "learning_rate": 0.0006,
+ "loss": 3.7402844429016113,
+ "step": 2227
+ },
+ {
+ "epoch": 30.950633464394933,
+ "grad_norm": 0.2143280804157257,
+ "learning_rate": 0.0006,
+ "loss": 3.7715706825256348,
+ "step": 2228
+ },
+ {
+ "epoch": 30.964613368283093,
+ "grad_norm": 0.20918118953704834,
+ "learning_rate": 0.0006,
+ "loss": 3.783510446548462,
+ "step": 2229
+ },
+ {
+ "epoch": 30.978593272171253,
+ "grad_norm": 0.2184133678674698,
+ "learning_rate": 0.0006,
+ "loss": 3.729846954345703,
+ "step": 2230
+ },
+ {
+ "epoch": 30.992573176059416,
+ "grad_norm": 0.20314796268939972,
+ "learning_rate": 0.0006,
+ "loss": 3.753312110900879,
+ "step": 2231
+ },
+ {
+ "epoch": 31.0,
+ "grad_norm": 0.21582408249378204,
+ "learning_rate": 0.0006,
+ "loss": 3.7653090953826904,
+ "step": 2232
+ },
+ {
+ "epoch": 31.0,
+ "eval_loss": 4.030437469482422,
+ "eval_runtime": 43.8529,
+ "eval_samples_per_second": 55.686,
+ "eval_steps_per_second": 3.489,
+ "step": 2232
+ },
+ {
+ "epoch": 31.01397990388816,
+ "grad_norm": 0.214233860373497,
+ "learning_rate": 0.0006,
+ "loss": 3.7179880142211914,
+ "step": 2233
+ },
+ {
+ "epoch": 31.027959807776323,
+ "grad_norm": 0.24621504545211792,
+ "learning_rate": 0.0006,
+ "loss": 3.712569236755371,
+ "step": 2234
+ },
+ {
+ "epoch": 31.041939711664483,
+ "grad_norm": 0.24189279973506927,
+ "learning_rate": 0.0006,
+ "loss": 3.7503058910369873,
+ "step": 2235
+ },
+ {
+ "epoch": 31.055919615552643,
+ "grad_norm": 0.22872278094291687,
+ "learning_rate": 0.0006,
+ "loss": 3.7386386394500732,
+ "step": 2236
+ },
+ {
+ "epoch": 31.069899519440803,
+ "grad_norm": 0.25036823749542236,
+ "learning_rate": 0.0006,
+ "loss": 3.710566997528076,
+ "step": 2237
+ },
+ {
+ "epoch": 31.083879423328966,
+ "grad_norm": 0.2506193220615387,
+ "learning_rate": 0.0006,
+ "loss": 3.7270963191986084,
+ "step": 2238
+ },
+ {
+ "epoch": 31.097859327217126,
+ "grad_norm": 0.24819663166999817,
+ "learning_rate": 0.0006,
+ "loss": 3.716430425643921,
+ "step": 2239
+ },
+ {
+ "epoch": 31.111839231105286,
+ "grad_norm": 0.27226534485816956,
+ "learning_rate": 0.0006,
+ "loss": 3.704428195953369,
+ "step": 2240
+ },
+ {
+ "epoch": 31.125819134993446,
+ "grad_norm": 0.27718204259872437,
+ "learning_rate": 0.0006,
+ "loss": 3.7309701442718506,
+ "step": 2241
+ },
+ {
+ "epoch": 31.13979903888161,
+ "grad_norm": 0.27272021770477295,
+ "learning_rate": 0.0006,
+ "loss": 3.7325143814086914,
+ "step": 2242
+ },
+ {
+ "epoch": 31.15377894276977,
+ "grad_norm": 0.2666020095348358,
+ "learning_rate": 0.0006,
+ "loss": 3.715268611907959,
+ "step": 2243
+ },
+ {
+ "epoch": 31.16775884665793,
+ "grad_norm": 0.258543461561203,
+ "learning_rate": 0.0006,
+ "loss": 3.7336134910583496,
+ "step": 2244
+ },
+ {
+ "epoch": 31.18173875054609,
+ "grad_norm": 0.2528740167617798,
+ "learning_rate": 0.0006,
+ "loss": 3.724491596221924,
+ "step": 2245
+ },
+ {
+ "epoch": 31.195718654434252,
+ "grad_norm": 0.2659667730331421,
+ "learning_rate": 0.0006,
+ "loss": 3.7144742012023926,
+ "step": 2246
+ },
+ {
+ "epoch": 31.209698558322412,
+ "grad_norm": 0.26563164591789246,
+ "learning_rate": 0.0006,
+ "loss": 3.741182327270508,
+ "step": 2247
+ },
+ {
+ "epoch": 31.22367846221057,
+ "grad_norm": 0.26326918601989746,
+ "learning_rate": 0.0006,
+ "loss": 3.7306275367736816,
+ "step": 2248
+ },
+ {
+ "epoch": 31.23765836609873,
+ "grad_norm": 0.23020948469638824,
+ "learning_rate": 0.0006,
+ "loss": 3.7212486267089844,
+ "step": 2249
+ },
+ {
+ "epoch": 31.251638269986895,
+ "grad_norm": 0.21207433938980103,
+ "learning_rate": 0.0006,
+ "loss": 3.6914258003234863,
+ "step": 2250
+ },
+ {
+ "epoch": 31.265618173875055,
+ "grad_norm": 0.2392292022705078,
+ "learning_rate": 0.0006,
+ "loss": 3.7117457389831543,
+ "step": 2251
+ },
+ {
+ "epoch": 31.279598077763215,
+ "grad_norm": 0.22084997594356537,
+ "learning_rate": 0.0006,
+ "loss": 3.728043794631958,
+ "step": 2252
+ },
+ {
+ "epoch": 31.293577981651374,
+ "grad_norm": 0.20818188786506653,
+ "learning_rate": 0.0006,
+ "loss": 3.751762866973877,
+ "step": 2253
+ },
+ {
+ "epoch": 31.307557885539538,
+ "grad_norm": 0.21866194903850555,
+ "learning_rate": 0.0006,
+ "loss": 3.72676420211792,
+ "step": 2254
+ },
+ {
+ "epoch": 31.321537789427698,
+ "grad_norm": 0.20727522671222687,
+ "learning_rate": 0.0006,
+ "loss": 3.735708236694336,
+ "step": 2255
+ },
+ {
+ "epoch": 31.335517693315857,
+ "grad_norm": 0.20655220746994019,
+ "learning_rate": 0.0006,
+ "loss": 3.714116096496582,
+ "step": 2256
+ },
+ {
+ "epoch": 31.34949759720402,
+ "grad_norm": 0.21738854050636292,
+ "learning_rate": 0.0006,
+ "loss": 3.731657028198242,
+ "step": 2257
+ },
+ {
+ "epoch": 31.36347750109218,
+ "grad_norm": 0.20758475363254547,
+ "learning_rate": 0.0006,
+ "loss": 3.7378528118133545,
+ "step": 2258
+ },
+ {
+ "epoch": 31.37745740498034,
+ "grad_norm": 0.20107139647006989,
+ "learning_rate": 0.0006,
+ "loss": 3.748572826385498,
+ "step": 2259
+ },
+ {
+ "epoch": 31.3914373088685,
+ "grad_norm": 0.18707452714443207,
+ "learning_rate": 0.0006,
+ "loss": 3.7237391471862793,
+ "step": 2260
+ },
+ {
+ "epoch": 31.405417212756664,
+ "grad_norm": 0.20745301246643066,
+ "learning_rate": 0.0006,
+ "loss": 3.734435558319092,
+ "step": 2261
+ },
+ {
+ "epoch": 31.419397116644824,
+ "grad_norm": 0.20793399214744568,
+ "learning_rate": 0.0006,
+ "loss": 3.7639012336730957,
+ "step": 2262
+ },
+ {
+ "epoch": 31.433377020532983,
+ "grad_norm": 0.20193757116794586,
+ "learning_rate": 0.0006,
+ "loss": 3.754117727279663,
+ "step": 2263
+ },
+ {
+ "epoch": 31.447356924421143,
+ "grad_norm": 0.1912323236465454,
+ "learning_rate": 0.0006,
+ "loss": 3.728111982345581,
+ "step": 2264
+ },
+ {
+ "epoch": 31.461336828309307,
+ "grad_norm": 0.19441582262516022,
+ "learning_rate": 0.0006,
+ "loss": 3.7533278465270996,
+ "step": 2265
+ },
+ {
+ "epoch": 31.475316732197467,
+ "grad_norm": 0.19807079434394836,
+ "learning_rate": 0.0006,
+ "loss": 3.7351698875427246,
+ "step": 2266
+ },
+ {
+ "epoch": 31.489296636085626,
+ "grad_norm": 0.20373263955116272,
+ "learning_rate": 0.0006,
+ "loss": 3.714097023010254,
+ "step": 2267
+ },
+ {
+ "epoch": 31.503276539973786,
+ "grad_norm": 0.21868768334388733,
+ "learning_rate": 0.0006,
+ "loss": 3.736743688583374,
+ "step": 2268
+ },
+ {
+ "epoch": 31.51725644386195,
+ "grad_norm": 0.20767922699451447,
+ "learning_rate": 0.0006,
+ "loss": 3.7097702026367188,
+ "step": 2269
+ },
+ {
+ "epoch": 31.53123634775011,
+ "grad_norm": 0.18425600230693817,
+ "learning_rate": 0.0006,
+ "loss": 3.7349140644073486,
+ "step": 2270
+ },
+ {
+ "epoch": 31.54521625163827,
+ "grad_norm": 0.18813826143741608,
+ "learning_rate": 0.0006,
+ "loss": 3.7023448944091797,
+ "step": 2271
+ },
+ {
+ "epoch": 31.55919615552643,
+ "grad_norm": 0.1892116516828537,
+ "learning_rate": 0.0006,
+ "loss": 3.7170143127441406,
+ "step": 2272
+ },
+ {
+ "epoch": 31.573176059414592,
+ "grad_norm": 0.2067834585905075,
+ "learning_rate": 0.0006,
+ "loss": 3.7312588691711426,
+ "step": 2273
+ },
+ {
+ "epoch": 31.587155963302752,
+ "grad_norm": 0.204023078083992,
+ "learning_rate": 0.0006,
+ "loss": 3.7399091720581055,
+ "step": 2274
+ },
+ {
+ "epoch": 31.601135867190912,
+ "grad_norm": 0.20245152711868286,
+ "learning_rate": 0.0006,
+ "loss": 3.7259416580200195,
+ "step": 2275
+ },
+ {
+ "epoch": 31.615115771079076,
+ "grad_norm": 0.21125490963459015,
+ "learning_rate": 0.0006,
+ "loss": 3.7217836380004883,
+ "step": 2276
+ },
+ {
+ "epoch": 31.629095674967235,
+ "grad_norm": 0.2093241959810257,
+ "learning_rate": 0.0006,
+ "loss": 3.707627773284912,
+ "step": 2277
+ },
+ {
+ "epoch": 31.643075578855395,
+ "grad_norm": 0.19290480017662048,
+ "learning_rate": 0.0006,
+ "loss": 3.7467126846313477,
+ "step": 2278
+ },
+ {
+ "epoch": 31.657055482743555,
+ "grad_norm": 0.1853940635919571,
+ "learning_rate": 0.0006,
+ "loss": 3.7565581798553467,
+ "step": 2279
+ },
+ {
+ "epoch": 31.67103538663172,
+ "grad_norm": 0.18917642533779144,
+ "learning_rate": 0.0006,
+ "loss": 3.7286229133605957,
+ "step": 2280
+ },
+ {
+ "epoch": 31.68501529051988,
+ "grad_norm": 0.2094079703092575,
+ "learning_rate": 0.0006,
+ "loss": 3.7297096252441406,
+ "step": 2281
+ },
+ {
+ "epoch": 31.698995194408038,
+ "grad_norm": 0.20020027458667755,
+ "learning_rate": 0.0006,
+ "loss": 3.7565250396728516,
+ "step": 2282
+ },
+ {
+ "epoch": 31.712975098296198,
+ "grad_norm": 0.19156186282634735,
+ "learning_rate": 0.0006,
+ "loss": 3.7401509284973145,
+ "step": 2283
+ },
+ {
+ "epoch": 31.72695500218436,
+ "grad_norm": 0.19176368415355682,
+ "learning_rate": 0.0006,
+ "loss": 3.751206398010254,
+ "step": 2284
+ },
+ {
+ "epoch": 31.74093490607252,
+ "grad_norm": 0.18351277709007263,
+ "learning_rate": 0.0006,
+ "loss": 3.752984046936035,
+ "step": 2285
+ },
+ {
+ "epoch": 31.75491480996068,
+ "grad_norm": 0.1879221349954605,
+ "learning_rate": 0.0006,
+ "loss": 3.7156834602355957,
+ "step": 2286
+ },
+ {
+ "epoch": 31.76889471384884,
+ "grad_norm": 0.19232559204101562,
+ "learning_rate": 0.0006,
+ "loss": 3.732879638671875,
+ "step": 2287
+ },
+ {
+ "epoch": 31.782874617737004,
+ "grad_norm": 0.18484069406986237,
+ "learning_rate": 0.0006,
+ "loss": 3.7489013671875,
+ "step": 2288
+ },
+ {
+ "epoch": 31.796854521625164,
+ "grad_norm": 0.20705144107341766,
+ "learning_rate": 0.0006,
+ "loss": 3.7214112281799316,
+ "step": 2289
+ },
+ {
+ "epoch": 31.810834425513324,
+ "grad_norm": 0.23424774408340454,
+ "learning_rate": 0.0006,
+ "loss": 3.714550256729126,
+ "step": 2290
+ },
+ {
+ "epoch": 31.824814329401484,
+ "grad_norm": 0.24061693251132965,
+ "learning_rate": 0.0006,
+ "loss": 3.717336654663086,
+ "step": 2291
+ },
+ {
+ "epoch": 31.838794233289647,
+ "grad_norm": 0.23156678676605225,
+ "learning_rate": 0.0006,
+ "loss": 3.7345399856567383,
+ "step": 2292
+ },
+ {
+ "epoch": 31.852774137177807,
+ "grad_norm": 0.2256302684545517,
+ "learning_rate": 0.0006,
+ "loss": 3.7596092224121094,
+ "step": 2293
+ },
+ {
+ "epoch": 31.866754041065967,
+ "grad_norm": 0.2118781954050064,
+ "learning_rate": 0.0006,
+ "loss": 3.725433588027954,
+ "step": 2294
+ },
+ {
+ "epoch": 31.88073394495413,
+ "grad_norm": 0.1874573826789856,
+ "learning_rate": 0.0006,
+ "loss": 3.738901138305664,
+ "step": 2295
+ },
+ {
+ "epoch": 31.89471384884229,
+ "grad_norm": 0.2062024176120758,
+ "learning_rate": 0.0006,
+ "loss": 3.7439217567443848,
+ "step": 2296
+ },
+ {
+ "epoch": 31.90869375273045,
+ "grad_norm": 0.19886671006679535,
+ "learning_rate": 0.0006,
+ "loss": 3.7583155632019043,
+ "step": 2297
+ },
+ {
+ "epoch": 31.92267365661861,
+ "grad_norm": 0.2079734355211258,
+ "learning_rate": 0.0006,
+ "loss": 3.7251501083374023,
+ "step": 2298
+ },
+ {
+ "epoch": 31.936653560506773,
+ "grad_norm": 0.19710204005241394,
+ "learning_rate": 0.0006,
+ "loss": 3.765778064727783,
+ "step": 2299
+ },
+ {
+ "epoch": 31.950633464394933,
+ "grad_norm": 0.1949392408132553,
+ "learning_rate": 0.0006,
+ "loss": 3.7634787559509277,
+ "step": 2300
+ },
+ {
+ "epoch": 31.964613368283093,
+ "grad_norm": 0.21466250717639923,
+ "learning_rate": 0.0006,
+ "loss": 3.7673215866088867,
+ "step": 2301
+ },
+ {
+ "epoch": 31.978593272171253,
+ "grad_norm": 0.21624267101287842,
+ "learning_rate": 0.0006,
+ "loss": 3.7617220878601074,
+ "step": 2302
+ },
+ {
+ "epoch": 31.992573176059416,
+ "grad_norm": 0.22880229353904724,
+ "learning_rate": 0.0006,
+ "loss": 3.7190351486206055,
+ "step": 2303
+ },
+ {
+ "epoch": 32.0,
+ "grad_norm": 0.23227518796920776,
+ "learning_rate": 0.0006,
+ "loss": 3.740169048309326,
+ "step": 2304
+ },
+ {
+ "epoch": 32.0,
+ "eval_loss": 4.017981052398682,
+ "eval_runtime": 44.4134,
+ "eval_samples_per_second": 54.983,
+ "eval_steps_per_second": 3.445,
+ "step": 2304
+ },
+ {
+ "epoch": 32.01397990388816,
+ "grad_norm": 0.1893721967935562,
+ "learning_rate": 0.0006,
+ "loss": 3.71738338470459,
+ "step": 2305
+ },
+ {
+ "epoch": 32.02795980777632,
+ "grad_norm": 0.23771171271800995,
+ "learning_rate": 0.0006,
+ "loss": 3.71402645111084,
+ "step": 2306
+ },
+ {
+ "epoch": 32.04193971166448,
+ "grad_norm": 0.26343807578086853,
+ "learning_rate": 0.0006,
+ "loss": 3.6926395893096924,
+ "step": 2307
+ },
+ {
+ "epoch": 32.05591961555265,
+ "grad_norm": 0.25092509388923645,
+ "learning_rate": 0.0006,
+ "loss": 3.715243339538574,
+ "step": 2308
+ },
+ {
+ "epoch": 32.0698995194408,
+ "grad_norm": 0.23148509860038757,
+ "learning_rate": 0.0006,
+ "loss": 3.690734386444092,
+ "step": 2309
+ },
+ {
+ "epoch": 32.083879423328966,
+ "grad_norm": 0.23314623534679413,
+ "learning_rate": 0.0006,
+ "loss": 3.6980109214782715,
+ "step": 2310
+ },
+ {
+ "epoch": 32.09785932721712,
+ "grad_norm": 0.2210417091846466,
+ "learning_rate": 0.0006,
+ "loss": 3.7395730018615723,
+ "step": 2311
+ },
+ {
+ "epoch": 32.111839231105286,
+ "grad_norm": 0.20263685286045074,
+ "learning_rate": 0.0006,
+ "loss": 3.678412914276123,
+ "step": 2312
+ },
+ {
+ "epoch": 32.12581913499345,
+ "grad_norm": 0.20412251353263855,
+ "learning_rate": 0.0006,
+ "loss": 3.688762903213501,
+ "step": 2313
+ },
+ {
+ "epoch": 32.139799038881605,
+ "grad_norm": 0.2041679322719574,
+ "learning_rate": 0.0006,
+ "loss": 3.7231521606445312,
+ "step": 2314
+ },
+ {
+ "epoch": 32.15377894276977,
+ "grad_norm": 0.23270174860954285,
+ "learning_rate": 0.0006,
+ "loss": 3.7102620601654053,
+ "step": 2315
+ },
+ {
+ "epoch": 32.16775884665793,
+ "grad_norm": 0.25470519065856934,
+ "learning_rate": 0.0006,
+ "loss": 3.7353053092956543,
+ "step": 2316
+ },
+ {
+ "epoch": 32.18173875054609,
+ "grad_norm": 0.2930106222629547,
+ "learning_rate": 0.0006,
+ "loss": 3.7418713569641113,
+ "step": 2317
+ },
+ {
+ "epoch": 32.19571865443425,
+ "grad_norm": 0.3181219696998596,
+ "learning_rate": 0.0006,
+ "loss": 3.6716184616088867,
+ "step": 2318
+ },
+ {
+ "epoch": 32.20969855832241,
+ "grad_norm": 0.2752978801727295,
+ "learning_rate": 0.0006,
+ "loss": 3.70334792137146,
+ "step": 2319
+ },
+ {
+ "epoch": 32.22367846221057,
+ "grad_norm": 0.28381186723709106,
+ "learning_rate": 0.0006,
+ "loss": 3.719794750213623,
+ "step": 2320
+ },
+ {
+ "epoch": 32.237658366098735,
+ "grad_norm": 0.3287750482559204,
+ "learning_rate": 0.0006,
+ "loss": 3.7363362312316895,
+ "step": 2321
+ },
+ {
+ "epoch": 32.25163826998689,
+ "grad_norm": 0.32669803500175476,
+ "learning_rate": 0.0006,
+ "loss": 3.739394426345825,
+ "step": 2322
+ },
+ {
+ "epoch": 32.265618173875055,
+ "grad_norm": 0.27423885464668274,
+ "learning_rate": 0.0006,
+ "loss": 3.7381205558776855,
+ "step": 2323
+ },
+ {
+ "epoch": 32.27959807776322,
+ "grad_norm": 0.2594660818576813,
+ "learning_rate": 0.0006,
+ "loss": 3.698683738708496,
+ "step": 2324
+ },
+ {
+ "epoch": 32.293577981651374,
+ "grad_norm": 0.2785511016845703,
+ "learning_rate": 0.0006,
+ "loss": 3.688774824142456,
+ "step": 2325
+ },
+ {
+ "epoch": 32.30755788553954,
+ "grad_norm": 0.2690320611000061,
+ "learning_rate": 0.0006,
+ "loss": 3.7209150791168213,
+ "step": 2326
+ },
+ {
+ "epoch": 32.3215377894277,
+ "grad_norm": 0.23331770300865173,
+ "learning_rate": 0.0006,
+ "loss": 3.682931423187256,
+ "step": 2327
+ },
+ {
+ "epoch": 32.33551769331586,
+ "grad_norm": 0.22380802035331726,
+ "learning_rate": 0.0006,
+ "loss": 3.720445156097412,
+ "step": 2328
+ },
+ {
+ "epoch": 32.34949759720402,
+ "grad_norm": 0.2065964937210083,
+ "learning_rate": 0.0006,
+ "loss": 3.705427885055542,
+ "step": 2329
+ },
+ {
+ "epoch": 32.36347750109218,
+ "grad_norm": 0.20701853930950165,
+ "learning_rate": 0.0006,
+ "loss": 3.7078697681427,
+ "step": 2330
+ },
+ {
+ "epoch": 32.37745740498034,
+ "grad_norm": 0.2063559591770172,
+ "learning_rate": 0.0006,
+ "loss": 3.745004653930664,
+ "step": 2331
+ },
+ {
+ "epoch": 32.391437308868504,
+ "grad_norm": 0.19377011060714722,
+ "learning_rate": 0.0006,
+ "loss": 3.713808059692383,
+ "step": 2332
+ },
+ {
+ "epoch": 32.40541721275666,
+ "grad_norm": 0.19260725378990173,
+ "learning_rate": 0.0006,
+ "loss": 3.717043876647949,
+ "step": 2333
+ },
+ {
+ "epoch": 32.419397116644824,
+ "grad_norm": 0.20792821049690247,
+ "learning_rate": 0.0006,
+ "loss": 3.68632173538208,
+ "step": 2334
+ },
+ {
+ "epoch": 32.43337702053299,
+ "grad_norm": 0.22278444468975067,
+ "learning_rate": 0.0006,
+ "loss": 3.7345821857452393,
+ "step": 2335
+ },
+ {
+ "epoch": 32.44735692442114,
+ "grad_norm": 0.22533579170703888,
+ "learning_rate": 0.0006,
+ "loss": 3.7224173545837402,
+ "step": 2336
+ },
+ {
+ "epoch": 32.46133682830931,
+ "grad_norm": 0.20228394865989685,
+ "learning_rate": 0.0006,
+ "loss": 3.748530149459839,
+ "step": 2337
+ },
+ {
+ "epoch": 32.47531673219746,
+ "grad_norm": 0.19944614171981812,
+ "learning_rate": 0.0006,
+ "loss": 3.707085371017456,
+ "step": 2338
+ },
+ {
+ "epoch": 32.489296636085626,
+ "grad_norm": 0.19856145977973938,
+ "learning_rate": 0.0006,
+ "loss": 3.6898274421691895,
+ "step": 2339
+ },
+ {
+ "epoch": 32.50327653997379,
+ "grad_norm": 0.20734605193138123,
+ "learning_rate": 0.0006,
+ "loss": 3.7511792182922363,
+ "step": 2340
+ },
+ {
+ "epoch": 32.517256443861946,
+ "grad_norm": 0.19489309191703796,
+ "learning_rate": 0.0006,
+ "loss": 3.736445426940918,
+ "step": 2341
+ },
+ {
+ "epoch": 32.53123634775011,
+ "grad_norm": 0.18899282813072205,
+ "learning_rate": 0.0006,
+ "loss": 3.727325916290283,
+ "step": 2342
+ },
+ {
+ "epoch": 32.54521625163827,
+ "grad_norm": 0.19670401513576508,
+ "learning_rate": 0.0006,
+ "loss": 3.7326102256774902,
+ "step": 2343
+ },
+ {
+ "epoch": 32.55919615552643,
+ "grad_norm": 0.20061780512332916,
+ "learning_rate": 0.0006,
+ "loss": 3.698716402053833,
+ "step": 2344
+ },
+ {
+ "epoch": 32.57317605941459,
+ "grad_norm": 0.1991659700870514,
+ "learning_rate": 0.0006,
+ "loss": 3.6913180351257324,
+ "step": 2345
+ },
+ {
+ "epoch": 32.58715596330275,
+ "grad_norm": 0.18856225907802582,
+ "learning_rate": 0.0006,
+ "loss": 3.7130961418151855,
+ "step": 2346
+ },
+ {
+ "epoch": 32.60113586719091,
+ "grad_norm": 0.1983972191810608,
+ "learning_rate": 0.0006,
+ "loss": 3.7530808448791504,
+ "step": 2347
+ },
+ {
+ "epoch": 32.615115771079076,
+ "grad_norm": 0.2037997543811798,
+ "learning_rate": 0.0006,
+ "loss": 3.7076587677001953,
+ "step": 2348
+ },
+ {
+ "epoch": 32.62909567496723,
+ "grad_norm": 0.21008458733558655,
+ "learning_rate": 0.0006,
+ "loss": 3.7379021644592285,
+ "step": 2349
+ },
+ {
+ "epoch": 32.643075578855395,
+ "grad_norm": 0.2129313349723816,
+ "learning_rate": 0.0006,
+ "loss": 3.7031373977661133,
+ "step": 2350
+ },
+ {
+ "epoch": 32.65705548274356,
+ "grad_norm": 0.18756245076656342,
+ "learning_rate": 0.0006,
+ "loss": 3.7066285610198975,
+ "step": 2351
+ },
+ {
+ "epoch": 32.671035386631715,
+ "grad_norm": 0.17946591973304749,
+ "learning_rate": 0.0006,
+ "loss": 3.73781681060791,
+ "step": 2352
+ },
+ {
+ "epoch": 32.68501529051988,
+ "grad_norm": 0.18983198702335358,
+ "learning_rate": 0.0006,
+ "loss": 3.718855381011963,
+ "step": 2353
+ },
+ {
+ "epoch": 32.69899519440804,
+ "grad_norm": 0.2080942839384079,
+ "learning_rate": 0.0006,
+ "loss": 3.7111258506774902,
+ "step": 2354
+ },
+ {
+ "epoch": 32.7129750982962,
+ "grad_norm": 0.23633413016796112,
+ "learning_rate": 0.0006,
+ "loss": 3.709766149520874,
+ "step": 2355
+ },
+ {
+ "epoch": 32.72695500218436,
+ "grad_norm": 0.2723144590854645,
+ "learning_rate": 0.0006,
+ "loss": 3.745850086212158,
+ "step": 2356
+ },
+ {
+ "epoch": 32.74093490607252,
+ "grad_norm": 0.29774025082588196,
+ "learning_rate": 0.0006,
+ "loss": 3.733771324157715,
+ "step": 2357
+ },
+ {
+ "epoch": 32.75491480996068,
+ "grad_norm": 0.25976699590682983,
+ "learning_rate": 0.0006,
+ "loss": 3.734194278717041,
+ "step": 2358
+ },
+ {
+ "epoch": 32.768894713848844,
+ "grad_norm": 0.20038039982318878,
+ "learning_rate": 0.0006,
+ "loss": 3.735656261444092,
+ "step": 2359
+ },
+ {
+ "epoch": 32.782874617737,
+ "grad_norm": 0.19745637476444244,
+ "learning_rate": 0.0006,
+ "loss": 3.7335894107818604,
+ "step": 2360
+ },
+ {
+ "epoch": 32.796854521625164,
+ "grad_norm": 0.22022396326065063,
+ "learning_rate": 0.0006,
+ "loss": 3.708998680114746,
+ "step": 2361
+ },
+ {
+ "epoch": 32.81083442551333,
+ "grad_norm": 0.24754752218723297,
+ "learning_rate": 0.0006,
+ "loss": 3.7616286277770996,
+ "step": 2362
+ },
+ {
+ "epoch": 32.824814329401484,
+ "grad_norm": 0.26438358426094055,
+ "learning_rate": 0.0006,
+ "loss": 3.737079620361328,
+ "step": 2363
+ },
+ {
+ "epoch": 32.83879423328965,
+ "grad_norm": 0.2507241666316986,
+ "learning_rate": 0.0006,
+ "loss": 3.708500385284424,
+ "step": 2364
+ },
+ {
+ "epoch": 32.8527741371778,
+ "grad_norm": 0.25688016414642334,
+ "learning_rate": 0.0006,
+ "loss": 3.7389419078826904,
+ "step": 2365
+ },
+ {
+ "epoch": 32.86675404106597,
+ "grad_norm": 0.257447749376297,
+ "learning_rate": 0.0006,
+ "loss": 3.7253334522247314,
+ "step": 2366
+ },
+ {
+ "epoch": 32.88073394495413,
+ "grad_norm": 0.2621215879917145,
+ "learning_rate": 0.0006,
+ "loss": 3.773163318634033,
+ "step": 2367
+ },
+ {
+ "epoch": 32.89471384884229,
+ "grad_norm": 0.23554839193820953,
+ "learning_rate": 0.0006,
+ "loss": 3.7534430027008057,
+ "step": 2368
+ },
+ {
+ "epoch": 32.90869375273045,
+ "grad_norm": 0.19698940217494965,
+ "learning_rate": 0.0006,
+ "loss": 3.7094414234161377,
+ "step": 2369
+ },
+ {
+ "epoch": 32.92267365661861,
+ "grad_norm": 0.21380476653575897,
+ "learning_rate": 0.0006,
+ "loss": 3.7666497230529785,
+ "step": 2370
+ },
+ {
+ "epoch": 32.93665356050677,
+ "grad_norm": 0.20876452326774597,
+ "learning_rate": 0.0006,
+ "loss": 3.7467992305755615,
+ "step": 2371
+ },
+ {
+ "epoch": 32.95063346439493,
+ "grad_norm": 0.1989884227514267,
+ "learning_rate": 0.0006,
+ "loss": 3.749878168106079,
+ "step": 2372
+ },
+ {
+ "epoch": 32.964613368283096,
+ "grad_norm": 0.19089168310165405,
+ "learning_rate": 0.0006,
+ "loss": 3.7211015224456787,
+ "step": 2373
+ },
+ {
+ "epoch": 32.97859327217125,
+ "grad_norm": 0.1962461918592453,
+ "learning_rate": 0.0006,
+ "loss": 3.728684425354004,
+ "step": 2374
+ },
+ {
+ "epoch": 32.992573176059416,
+ "grad_norm": 0.22518110275268555,
+ "learning_rate": 0.0006,
+ "loss": 3.7361507415771484,
+ "step": 2375
+ },
+ {
+ "epoch": 33.0,
+ "grad_norm": 0.26704078912734985,
+ "learning_rate": 0.0006,
+ "loss": 3.7478318214416504,
+ "step": 2376
+ },
+ {
+ "epoch": 33.0,
+ "eval_loss": 4.024221897125244,
+ "eval_runtime": 43.9826,
+ "eval_samples_per_second": 55.522,
+ "eval_steps_per_second": 3.479,
+ "step": 2376
+ },
+ {
+ "epoch": 33.01397990388816,
+ "grad_norm": 0.23387742042541504,
+ "learning_rate": 0.0006,
+ "loss": 3.7043614387512207,
+ "step": 2377
+ },
+ {
+ "epoch": 33.02795980777632,
+ "grad_norm": 0.21334673464298248,
+ "learning_rate": 0.0006,
+ "loss": 3.6714677810668945,
+ "step": 2378
+ },
+ {
+ "epoch": 33.04193971166448,
+ "grad_norm": 0.2608581483364105,
+ "learning_rate": 0.0006,
+ "loss": 3.678460121154785,
+ "step": 2379
+ },
+ {
+ "epoch": 33.05591961555265,
+ "grad_norm": 0.31364381313323975,
+ "learning_rate": 0.0006,
+ "loss": 3.6771793365478516,
+ "step": 2380
+ },
+ {
+ "epoch": 33.0698995194408,
+ "grad_norm": 0.31785935163497925,
+ "learning_rate": 0.0006,
+ "loss": 3.7248926162719727,
+ "step": 2381
+ },
+ {
+ "epoch": 33.083879423328966,
+ "grad_norm": 0.29244646430015564,
+ "learning_rate": 0.0006,
+ "loss": 3.677882194519043,
+ "step": 2382
+ },
+ {
+ "epoch": 33.09785932721712,
+ "grad_norm": 0.23943741619586945,
+ "learning_rate": 0.0006,
+ "loss": 3.7365124225616455,
+ "step": 2383
+ },
+ {
+ "epoch": 33.111839231105286,
+ "grad_norm": 0.2547394931316376,
+ "learning_rate": 0.0006,
+ "loss": 3.7031357288360596,
+ "step": 2384
+ },
+ {
+ "epoch": 33.12581913499345,
+ "grad_norm": 0.2696659564971924,
+ "learning_rate": 0.0006,
+ "loss": 3.6904754638671875,
+ "step": 2385
+ },
+ {
+ "epoch": 33.139799038881605,
+ "grad_norm": 0.24271385371685028,
+ "learning_rate": 0.0006,
+ "loss": 3.7137649059295654,
+ "step": 2386
+ },
+ {
+ "epoch": 33.15377894276977,
+ "grad_norm": 0.23435993492603302,
+ "learning_rate": 0.0006,
+ "loss": 3.707383632659912,
+ "step": 2387
+ },
+ {
+ "epoch": 33.16775884665793,
+ "grad_norm": 0.21428440511226654,
+ "learning_rate": 0.0006,
+ "loss": 3.7148897647857666,
+ "step": 2388
+ },
+ {
+ "epoch": 33.18173875054609,
+ "grad_norm": 0.22420962154865265,
+ "learning_rate": 0.0006,
+ "loss": 3.710111141204834,
+ "step": 2389
+ },
+ {
+ "epoch": 33.19571865443425,
+ "grad_norm": 0.26222777366638184,
+ "learning_rate": 0.0006,
+ "loss": 3.677438259124756,
+ "step": 2390
+ },
+ {
+ "epoch": 33.20969855832241,
+ "grad_norm": 0.29910165071487427,
+ "learning_rate": 0.0006,
+ "loss": 3.6895523071289062,
+ "step": 2391
+ },
+ {
+ "epoch": 33.22367846221057,
+ "grad_norm": 0.2615569531917572,
+ "learning_rate": 0.0006,
+ "loss": 3.7339906692504883,
+ "step": 2392
+ },
+ {
+ "epoch": 33.237658366098735,
+ "grad_norm": 0.23396961390972137,
+ "learning_rate": 0.0006,
+ "loss": 3.7179932594299316,
+ "step": 2393
+ },
+ {
+ "epoch": 33.25163826998689,
+ "grad_norm": 0.24844495952129364,
+ "learning_rate": 0.0006,
+ "loss": 3.7191576957702637,
+ "step": 2394
+ },
+ {
+ "epoch": 33.265618173875055,
+ "grad_norm": 0.2306993454694748,
+ "learning_rate": 0.0006,
+ "loss": 3.7172658443450928,
+ "step": 2395
+ },
+ {
+ "epoch": 33.27959807776322,
+ "grad_norm": 0.24935221672058105,
+ "learning_rate": 0.0006,
+ "loss": 3.6917519569396973,
+ "step": 2396
+ },
+ {
+ "epoch": 33.293577981651374,
+ "grad_norm": 0.2522840201854706,
+ "learning_rate": 0.0006,
+ "loss": 3.7263593673706055,
+ "step": 2397
+ },
+ {
+ "epoch": 33.30755788553954,
+ "grad_norm": 0.26411181688308716,
+ "learning_rate": 0.0006,
+ "loss": 3.6981635093688965,
+ "step": 2398
+ },
+ {
+ "epoch": 33.3215377894277,
+ "grad_norm": 0.22396239638328552,
+ "learning_rate": 0.0006,
+ "loss": 3.713247299194336,
+ "step": 2399
+ },
+ {
+ "epoch": 33.33551769331586,
+ "grad_norm": 0.20579157769680023,
+ "learning_rate": 0.0006,
+ "loss": 3.7058467864990234,
+ "step": 2400
+ },
+ {
+ "epoch": 33.34949759720402,
+ "grad_norm": 0.20103922486305237,
+ "learning_rate": 0.0006,
+ "loss": 3.700924873352051,
+ "step": 2401
+ },
+ {
+ "epoch": 33.36347750109218,
+ "grad_norm": 0.19964663684368134,
+ "learning_rate": 0.0006,
+ "loss": 3.6985437870025635,
+ "step": 2402
+ },
+ {
+ "epoch": 33.37745740498034,
+ "grad_norm": 0.20860575139522552,
+ "learning_rate": 0.0006,
+ "loss": 3.7480058670043945,
+ "step": 2403
+ },
+ {
+ "epoch": 33.391437308868504,
+ "grad_norm": 0.19043605029582977,
+ "learning_rate": 0.0006,
+ "loss": 3.6952016353607178,
+ "step": 2404
+ },
+ {
+ "epoch": 33.40541721275666,
+ "grad_norm": 0.1968909204006195,
+ "learning_rate": 0.0006,
+ "loss": 3.69362735748291,
+ "step": 2405
+ },
+ {
+ "epoch": 33.419397116644824,
+ "grad_norm": 0.23492494225502014,
+ "learning_rate": 0.0006,
+ "loss": 3.707993984222412,
+ "step": 2406
+ },
+ {
+ "epoch": 33.43337702053299,
+ "grad_norm": 0.23970453441143036,
+ "learning_rate": 0.0006,
+ "loss": 3.707731246948242,
+ "step": 2407
+ },
+ {
+ "epoch": 33.44735692442114,
+ "grad_norm": 0.2515844404697418,
+ "learning_rate": 0.0006,
+ "loss": 3.723824977874756,
+ "step": 2408
+ },
+ {
+ "epoch": 33.46133682830931,
+ "grad_norm": 0.2343570590019226,
+ "learning_rate": 0.0006,
+ "loss": 3.7068886756896973,
+ "step": 2409
+ },
+ {
+ "epoch": 33.47531673219746,
+ "grad_norm": 0.23419860005378723,
+ "learning_rate": 0.0006,
+ "loss": 3.6964287757873535,
+ "step": 2410
+ },
+ {
+ "epoch": 33.489296636085626,
+ "grad_norm": 0.21280375123023987,
+ "learning_rate": 0.0006,
+ "loss": 3.7020950317382812,
+ "step": 2411
+ },
+ {
+ "epoch": 33.50327653997379,
+ "grad_norm": 0.2061092108488083,
+ "learning_rate": 0.0006,
+ "loss": 3.750861406326294,
+ "step": 2412
+ },
+ {
+ "epoch": 33.517256443861946,
+ "grad_norm": 0.19693219661712646,
+ "learning_rate": 0.0006,
+ "loss": 3.717020034790039,
+ "step": 2413
+ },
+ {
+ "epoch": 33.53123634775011,
+ "grad_norm": 0.18199551105499268,
+ "learning_rate": 0.0006,
+ "loss": 3.7242612838745117,
+ "step": 2414
+ },
+ {
+ "epoch": 33.54521625163827,
+ "grad_norm": 0.20131248235702515,
+ "learning_rate": 0.0006,
+ "loss": 3.6758954524993896,
+ "step": 2415
+ },
+ {
+ "epoch": 33.55919615552643,
+ "grad_norm": 0.2219412475824356,
+ "learning_rate": 0.0006,
+ "loss": 3.707927703857422,
+ "step": 2416
+ },
+ {
+ "epoch": 33.57317605941459,
+ "grad_norm": 0.22541435062885284,
+ "learning_rate": 0.0006,
+ "loss": 3.696967601776123,
+ "step": 2417
+ },
+ {
+ "epoch": 33.58715596330275,
+ "grad_norm": 0.20367272198200226,
+ "learning_rate": 0.0006,
+ "loss": 3.730795383453369,
+ "step": 2418
+ },
+ {
+ "epoch": 33.60113586719091,
+ "grad_norm": 0.20861074328422546,
+ "learning_rate": 0.0006,
+ "loss": 3.707066535949707,
+ "step": 2419
+ },
+ {
+ "epoch": 33.615115771079076,
+ "grad_norm": 0.20570263266563416,
+ "learning_rate": 0.0006,
+ "loss": 3.730602502822876,
+ "step": 2420
+ },
+ {
+ "epoch": 33.62909567496723,
+ "grad_norm": 0.21318231523036957,
+ "learning_rate": 0.0006,
+ "loss": 3.7073278427124023,
+ "step": 2421
+ },
+ {
+ "epoch": 33.643075578855395,
+ "grad_norm": 0.2142639458179474,
+ "learning_rate": 0.0006,
+ "loss": 3.718470573425293,
+ "step": 2422
+ },
+ {
+ "epoch": 33.65705548274356,
+ "grad_norm": 0.19620704650878906,
+ "learning_rate": 0.0006,
+ "loss": 3.716036319732666,
+ "step": 2423
+ },
+ {
+ "epoch": 33.671035386631715,
+ "grad_norm": 0.19308267533779144,
+ "learning_rate": 0.0006,
+ "loss": 3.734597682952881,
+ "step": 2424
+ },
+ {
+ "epoch": 33.68501529051988,
+ "grad_norm": 0.19453389942646027,
+ "learning_rate": 0.0006,
+ "loss": 3.726262092590332,
+ "step": 2425
+ },
+ {
+ "epoch": 33.69899519440804,
+ "grad_norm": 0.20405639708042145,
+ "learning_rate": 0.0006,
+ "loss": 3.678340435028076,
+ "step": 2426
+ },
+ {
+ "epoch": 33.7129750982962,
+ "grad_norm": 0.19525611400604248,
+ "learning_rate": 0.0006,
+ "loss": 3.723907470703125,
+ "step": 2427
+ },
+ {
+ "epoch": 33.72695500218436,
+ "grad_norm": 0.19390441477298737,
+ "learning_rate": 0.0006,
+ "loss": 3.707897186279297,
+ "step": 2428
+ },
+ {
+ "epoch": 33.74093490607252,
+ "grad_norm": 0.2032899558544159,
+ "learning_rate": 0.0006,
+ "loss": 3.735041618347168,
+ "step": 2429
+ },
+ {
+ "epoch": 33.75491480996068,
+ "grad_norm": 0.2134784460067749,
+ "learning_rate": 0.0006,
+ "loss": 3.674978017807007,
+ "step": 2430
+ },
+ {
+ "epoch": 33.768894713848844,
+ "grad_norm": 0.24691973626613617,
+ "learning_rate": 0.0006,
+ "loss": 3.7028675079345703,
+ "step": 2431
+ },
+ {
+ "epoch": 33.782874617737,
+ "grad_norm": 0.2272702008485794,
+ "learning_rate": 0.0006,
+ "loss": 3.7277941703796387,
+ "step": 2432
+ },
+ {
+ "epoch": 33.796854521625164,
+ "grad_norm": 0.20052100718021393,
+ "learning_rate": 0.0006,
+ "loss": 3.7146830558776855,
+ "step": 2433
+ },
+ {
+ "epoch": 33.81083442551333,
+ "grad_norm": 0.1958577185869217,
+ "learning_rate": 0.0006,
+ "loss": 3.6936864852905273,
+ "step": 2434
+ },
+ {
+ "epoch": 33.824814329401484,
+ "grad_norm": 0.191860631108284,
+ "learning_rate": 0.0006,
+ "loss": 3.7451858520507812,
+ "step": 2435
+ },
+ {
+ "epoch": 33.83879423328965,
+ "grad_norm": 0.20961424708366394,
+ "learning_rate": 0.0006,
+ "loss": 3.722400665283203,
+ "step": 2436
+ },
+ {
+ "epoch": 33.8527741371778,
+ "grad_norm": 0.19784288108348846,
+ "learning_rate": 0.0006,
+ "loss": 3.712474822998047,
+ "step": 2437
+ },
+ {
+ "epoch": 33.86675404106597,
+ "grad_norm": 0.18645426630973816,
+ "learning_rate": 0.0006,
+ "loss": 3.7054500579833984,
+ "step": 2438
+ },
+ {
+ "epoch": 33.88073394495413,
+ "grad_norm": 0.19622360169887543,
+ "learning_rate": 0.0006,
+ "loss": 3.7010550498962402,
+ "step": 2439
+ },
+ {
+ "epoch": 33.89471384884229,
+ "grad_norm": 0.20283745229244232,
+ "learning_rate": 0.0006,
+ "loss": 3.7252519130706787,
+ "step": 2440
+ },
+ {
+ "epoch": 33.90869375273045,
+ "grad_norm": 0.18671709299087524,
+ "learning_rate": 0.0006,
+ "loss": 3.6932945251464844,
+ "step": 2441
+ },
+ {
+ "epoch": 33.92267365661861,
+ "grad_norm": 0.17953112721443176,
+ "learning_rate": 0.0006,
+ "loss": 3.7453854084014893,
+ "step": 2442
+ },
+ {
+ "epoch": 33.93665356050677,
+ "grad_norm": 0.1945437788963318,
+ "learning_rate": 0.0006,
+ "loss": 3.722881317138672,
+ "step": 2443
+ },
+ {
+ "epoch": 33.95063346439493,
+ "grad_norm": 0.18414495885372162,
+ "learning_rate": 0.0006,
+ "loss": 3.7402591705322266,
+ "step": 2444
+ },
+ {
+ "epoch": 33.964613368283096,
+ "grad_norm": 0.1936541497707367,
+ "learning_rate": 0.0006,
+ "loss": 3.720057964324951,
+ "step": 2445
+ },
+ {
+ "epoch": 33.97859327217125,
+ "grad_norm": 0.20177008211612701,
+ "learning_rate": 0.0006,
+ "loss": 3.6983802318573,
+ "step": 2446
+ },
+ {
+ "epoch": 33.992573176059416,
+ "grad_norm": 0.18977557122707367,
+ "learning_rate": 0.0006,
+ "loss": 3.7202203273773193,
+ "step": 2447
+ },
+ {
+ "epoch": 34.0,
+ "grad_norm": 0.220163956284523,
+ "learning_rate": 0.0006,
+ "loss": 3.72540283203125,
+ "step": 2448
+ },
+ {
+ "epoch": 34.0,
+ "eval_loss": 4.009343147277832,
+ "eval_runtime": 44.1825,
+ "eval_samples_per_second": 55.271,
+ "eval_steps_per_second": 3.463,
+ "step": 2448
+ },
+ {
+ "epoch": 34.01397990388816,
+ "grad_norm": 0.19843372702598572,
+ "learning_rate": 0.0006,
+ "loss": 3.664431571960449,
+ "step": 2449
+ },
+ {
+ "epoch": 34.02795980777632,
+ "grad_norm": 0.20413008332252502,
+ "learning_rate": 0.0006,
+ "loss": 3.699094533920288,
+ "step": 2450
+ },
+ {
+ "epoch": 34.04193971166448,
+ "grad_norm": 0.22086848318576813,
+ "learning_rate": 0.0006,
+ "loss": 3.681825637817383,
+ "step": 2451
+ },
+ {
+ "epoch": 34.05591961555265,
+ "grad_norm": 0.20753061771392822,
+ "learning_rate": 0.0006,
+ "loss": 3.677116870880127,
+ "step": 2452
+ },
+ {
+ "epoch": 34.0698995194408,
+ "grad_norm": 0.21835783123970032,
+ "learning_rate": 0.0006,
+ "loss": 3.7079062461853027,
+ "step": 2453
+ },
+ {
+ "epoch": 34.083879423328966,
+ "grad_norm": 0.2244357019662857,
+ "learning_rate": 0.0006,
+ "loss": 3.69844913482666,
+ "step": 2454
+ },
+ {
+ "epoch": 34.09785932721712,
+ "grad_norm": 0.2238784283399582,
+ "learning_rate": 0.0006,
+ "loss": 3.6835570335388184,
+ "step": 2455
+ },
+ {
+ "epoch": 34.111839231105286,
+ "grad_norm": 0.24816176295280457,
+ "learning_rate": 0.0006,
+ "loss": 3.6832966804504395,
+ "step": 2456
+ },
+ {
+ "epoch": 34.12581913499345,
+ "grad_norm": 0.2445257306098938,
+ "learning_rate": 0.0006,
+ "loss": 3.7190022468566895,
+ "step": 2457
+ },
+ {
+ "epoch": 34.139799038881605,
+ "grad_norm": 0.24510814249515533,
+ "learning_rate": 0.0006,
+ "loss": 3.678098201751709,
+ "step": 2458
+ },
+ {
+ "epoch": 34.15377894276977,
+ "grad_norm": 0.2550753653049469,
+ "learning_rate": 0.0006,
+ "loss": 3.69335675239563,
+ "step": 2459
+ },
+ {
+ "epoch": 34.16775884665793,
+ "grad_norm": 0.2435017228126526,
+ "learning_rate": 0.0006,
+ "loss": 3.70463228225708,
+ "step": 2460
+ },
+ {
+ "epoch": 34.18173875054609,
+ "grad_norm": 0.26441144943237305,
+ "learning_rate": 0.0006,
+ "loss": 3.6757068634033203,
+ "step": 2461
+ },
+ {
+ "epoch": 34.19571865443425,
+ "grad_norm": 0.2737993001937866,
+ "learning_rate": 0.0006,
+ "loss": 3.6510863304138184,
+ "step": 2462
+ },
+ {
+ "epoch": 34.20969855832241,
+ "grad_norm": 0.24625736474990845,
+ "learning_rate": 0.0006,
+ "loss": 3.707612991333008,
+ "step": 2463
+ },
+ {
+ "epoch": 34.22367846221057,
+ "grad_norm": 0.22222039103507996,
+ "learning_rate": 0.0006,
+ "loss": 3.7145133018493652,
+ "step": 2464
+ },
+ {
+ "epoch": 34.237658366098735,
+ "grad_norm": 0.2173531949520111,
+ "learning_rate": 0.0006,
+ "loss": 3.685112476348877,
+ "step": 2465
+ },
+ {
+ "epoch": 34.25163826998689,
+ "grad_norm": 0.23102006316184998,
+ "learning_rate": 0.0006,
+ "loss": 3.6742453575134277,
+ "step": 2466
+ },
+ {
+ "epoch": 34.265618173875055,
+ "grad_norm": 0.22287188470363617,
+ "learning_rate": 0.0006,
+ "loss": 3.7030534744262695,
+ "step": 2467
+ },
+ {
+ "epoch": 34.27959807776322,
+ "grad_norm": 0.20377251505851746,
+ "learning_rate": 0.0006,
+ "loss": 3.6866259574890137,
+ "step": 2468
+ },
+ {
+ "epoch": 34.293577981651374,
+ "grad_norm": 0.19867438077926636,
+ "learning_rate": 0.0006,
+ "loss": 3.70395565032959,
+ "step": 2469
+ },
+ {
+ "epoch": 34.30755788553954,
+ "grad_norm": 0.2014918178319931,
+ "learning_rate": 0.0006,
+ "loss": 3.660795211791992,
+ "step": 2470
+ },
+ {
+ "epoch": 34.3215377894277,
+ "grad_norm": 0.20981402695178986,
+ "learning_rate": 0.0006,
+ "loss": 3.7045323848724365,
+ "step": 2471
+ },
+ {
+ "epoch": 34.33551769331586,
+ "grad_norm": 0.20968124270439148,
+ "learning_rate": 0.0006,
+ "loss": 3.7113170623779297,
+ "step": 2472
+ },
+ {
+ "epoch": 34.34949759720402,
+ "grad_norm": 0.2214043140411377,
+ "learning_rate": 0.0006,
+ "loss": 3.7330074310302734,
+ "step": 2473
+ },
+ {
+ "epoch": 34.36347750109218,
+ "grad_norm": 0.21231533586978912,
+ "learning_rate": 0.0006,
+ "loss": 3.6706933975219727,
+ "step": 2474
+ },
+ {
+ "epoch": 34.37745740498034,
+ "grad_norm": 0.2022094875574112,
+ "learning_rate": 0.0006,
+ "loss": 3.7230453491210938,
+ "step": 2475
+ },
+ {
+ "epoch": 34.391437308868504,
+ "grad_norm": 0.2281145304441452,
+ "learning_rate": 0.0006,
+ "loss": 3.7197465896606445,
+ "step": 2476
+ },
+ {
+ "epoch": 34.40541721275666,
+ "grad_norm": 0.2147362381219864,
+ "learning_rate": 0.0006,
+ "loss": 3.7092337608337402,
+ "step": 2477
+ },
+ {
+ "epoch": 34.419397116644824,
+ "grad_norm": 0.19984203577041626,
+ "learning_rate": 0.0006,
+ "loss": 3.6939496994018555,
+ "step": 2478
+ },
+ {
+ "epoch": 34.43337702053299,
+ "grad_norm": 0.21088480949401855,
+ "learning_rate": 0.0006,
+ "loss": 3.6942667961120605,
+ "step": 2479
+ },
+ {
+ "epoch": 34.44735692442114,
+ "grad_norm": 0.20444616675376892,
+ "learning_rate": 0.0006,
+ "loss": 3.718186378479004,
+ "step": 2480
+ },
+ {
+ "epoch": 34.46133682830931,
+ "grad_norm": 0.19133952260017395,
+ "learning_rate": 0.0006,
+ "loss": 3.697197437286377,
+ "step": 2481
+ },
+ {
+ "epoch": 34.47531673219746,
+ "grad_norm": 0.2219255417585373,
+ "learning_rate": 0.0006,
+ "loss": 3.684386730194092,
+ "step": 2482
+ },
+ {
+ "epoch": 34.489296636085626,
+ "grad_norm": 0.2480643391609192,
+ "learning_rate": 0.0006,
+ "loss": 3.6656622886657715,
+ "step": 2483
+ },
+ {
+ "epoch": 34.50327653997379,
+ "grad_norm": 0.22907346487045288,
+ "learning_rate": 0.0006,
+ "loss": 3.741391897201538,
+ "step": 2484
+ },
+ {
+ "epoch": 34.517256443861946,
+ "grad_norm": 0.20277173817157745,
+ "learning_rate": 0.0006,
+ "loss": 3.7062582969665527,
+ "step": 2485
+ },
+ {
+ "epoch": 34.53123634775011,
+ "grad_norm": 0.21411100029945374,
+ "learning_rate": 0.0006,
+ "loss": 3.691784381866455,
+ "step": 2486
+ },
+ {
+ "epoch": 34.54521625163827,
+ "grad_norm": 0.20261600613594055,
+ "learning_rate": 0.0006,
+ "loss": 3.6855502128601074,
+ "step": 2487
+ },
+ {
+ "epoch": 34.55919615552643,
+ "grad_norm": 0.23913109302520752,
+ "learning_rate": 0.0006,
+ "loss": 3.670754909515381,
+ "step": 2488
+ },
+ {
+ "epoch": 34.57317605941459,
+ "grad_norm": 0.24427077174186707,
+ "learning_rate": 0.0006,
+ "loss": 3.700611114501953,
+ "step": 2489
+ },
+ {
+ "epoch": 34.58715596330275,
+ "grad_norm": 0.20305761694908142,
+ "learning_rate": 0.0006,
+ "loss": 3.7284226417541504,
+ "step": 2490
+ },
+ {
+ "epoch": 34.60113586719091,
+ "grad_norm": 0.20398905873298645,
+ "learning_rate": 0.0006,
+ "loss": 3.6860880851745605,
+ "step": 2491
+ },
+ {
+ "epoch": 34.615115771079076,
+ "grad_norm": 0.21016651391983032,
+ "learning_rate": 0.0006,
+ "loss": 3.7366015911102295,
+ "step": 2492
+ },
+ {
+ "epoch": 34.62909567496723,
+ "grad_norm": 0.22279402613639832,
+ "learning_rate": 0.0006,
+ "loss": 3.7024295330047607,
+ "step": 2493
+ },
+ {
+ "epoch": 34.643075578855395,
+ "grad_norm": 0.25080347061157227,
+ "learning_rate": 0.0006,
+ "loss": 3.68355655670166,
+ "step": 2494
+ },
+ {
+ "epoch": 34.65705548274356,
+ "grad_norm": 0.2702971398830414,
+ "learning_rate": 0.0006,
+ "loss": 3.7400612831115723,
+ "step": 2495
+ },
+ {
+ "epoch": 34.671035386631715,
+ "grad_norm": 0.299398273229599,
+ "learning_rate": 0.0006,
+ "loss": 3.7160325050354004,
+ "step": 2496
+ },
+ {
+ "epoch": 34.68501529051988,
+ "grad_norm": 0.29151082038879395,
+ "learning_rate": 0.0006,
+ "loss": 3.7124147415161133,
+ "step": 2497
+ },
+ {
+ "epoch": 34.69899519440804,
+ "grad_norm": 0.23828288912773132,
+ "learning_rate": 0.0006,
+ "loss": 3.7181267738342285,
+ "step": 2498
+ },
+ {
+ "epoch": 34.7129750982962,
+ "grad_norm": 0.21776588261127472,
+ "learning_rate": 0.0006,
+ "loss": 3.6811792850494385,
+ "step": 2499
+ },
+ {
+ "epoch": 34.72695500218436,
+ "grad_norm": 0.2318469136953354,
+ "learning_rate": 0.0006,
+ "loss": 3.698467254638672,
+ "step": 2500
+ },
+ {
+ "epoch": 34.74093490607252,
+ "grad_norm": 0.22341546416282654,
+ "learning_rate": 0.0006,
+ "loss": 3.7406411170959473,
+ "step": 2501
+ },
+ {
+ "epoch": 34.75491480996068,
+ "grad_norm": 0.20676901936531067,
+ "learning_rate": 0.0006,
+ "loss": 3.6914243698120117,
+ "step": 2502
+ },
+ {
+ "epoch": 34.768894713848844,
+ "grad_norm": 0.20459024608135223,
+ "learning_rate": 0.0006,
+ "loss": 3.713369607925415,
+ "step": 2503
+ },
+ {
+ "epoch": 34.782874617737,
+ "grad_norm": 0.22369320690631866,
+ "learning_rate": 0.0006,
+ "loss": 3.697587490081787,
+ "step": 2504
+ },
+ {
+ "epoch": 34.796854521625164,
+ "grad_norm": 0.2393338829278946,
+ "learning_rate": 0.0006,
+ "loss": 3.7171854972839355,
+ "step": 2505
+ },
+ {
+ "epoch": 34.81083442551333,
+ "grad_norm": 0.23756961524486542,
+ "learning_rate": 0.0006,
+ "loss": 3.6969614028930664,
+ "step": 2506
+ },
+ {
+ "epoch": 34.824814329401484,
+ "grad_norm": 0.22761376202106476,
+ "learning_rate": 0.0006,
+ "loss": 3.722501754760742,
+ "step": 2507
+ },
+ {
+ "epoch": 34.83879423328965,
+ "grad_norm": 0.23564888536930084,
+ "learning_rate": 0.0006,
+ "loss": 3.714003086090088,
+ "step": 2508
+ },
+ {
+ "epoch": 34.8527741371778,
+ "grad_norm": 0.22197313606739044,
+ "learning_rate": 0.0006,
+ "loss": 3.7107110023498535,
+ "step": 2509
+ },
+ {
+ "epoch": 34.86675404106597,
+ "grad_norm": 0.20199328660964966,
+ "learning_rate": 0.0006,
+ "loss": 3.7167551517486572,
+ "step": 2510
+ },
+ {
+ "epoch": 34.88073394495413,
+ "grad_norm": 0.19569700956344604,
+ "learning_rate": 0.0006,
+ "loss": 3.679098129272461,
+ "step": 2511
+ },
+ {
+ "epoch": 34.89471384884229,
+ "grad_norm": 0.21320141851902008,
+ "learning_rate": 0.0006,
+ "loss": 3.733187675476074,
+ "step": 2512
+ },
+ {
+ "epoch": 34.90869375273045,
+ "grad_norm": 0.20074625313282013,
+ "learning_rate": 0.0006,
+ "loss": 3.713339328765869,
+ "step": 2513
+ },
+ {
+ "epoch": 34.92267365661861,
+ "grad_norm": 0.20249252021312714,
+ "learning_rate": 0.0006,
+ "loss": 3.680785655975342,
+ "step": 2514
+ },
+ {
+ "epoch": 34.93665356050677,
+ "grad_norm": 0.22165577113628387,
+ "learning_rate": 0.0006,
+ "loss": 3.696131706237793,
+ "step": 2515
+ },
+ {
+ "epoch": 34.95063346439493,
+ "grad_norm": 0.20769749581813812,
+ "learning_rate": 0.0006,
+ "loss": 3.6910316944122314,
+ "step": 2516
+ },
+ {
+ "epoch": 34.964613368283096,
+ "grad_norm": 0.20857223868370056,
+ "learning_rate": 0.0006,
+ "loss": 3.7327451705932617,
+ "step": 2517
+ },
+ {
+ "epoch": 34.97859327217125,
+ "grad_norm": 0.19155766069889069,
+ "learning_rate": 0.0006,
+ "loss": 3.705609083175659,
+ "step": 2518
+ },
+ {
+ "epoch": 34.992573176059416,
+ "grad_norm": 0.17890529334545135,
+ "learning_rate": 0.0006,
+ "loss": 3.6844797134399414,
+ "step": 2519
+ },
+ {
+ "epoch": 35.0,
+ "grad_norm": 0.2053528130054474,
+ "learning_rate": 0.0006,
+ "loss": 3.6942501068115234,
+ "step": 2520
+ },
+ {
+ "epoch": 35.0,
+ "eval_loss": 3.998469591140747,
+ "eval_runtime": 43.9147,
+ "eval_samples_per_second": 55.608,
+ "eval_steps_per_second": 3.484,
+ "step": 2520
+ },
+ {
+ "epoch": 35.01397990388816,
+ "grad_norm": 0.2288869470357895,
+ "learning_rate": 0.0006,
+ "loss": 3.6966426372528076,
+ "step": 2521
+ },
+ {
+ "epoch": 35.02795980777632,
+ "grad_norm": 0.25702035427093506,
+ "learning_rate": 0.0006,
+ "loss": 3.6622562408447266,
+ "step": 2522
+ },
+ {
+ "epoch": 35.04193971166448,
+ "grad_norm": 0.254422128200531,
+ "learning_rate": 0.0006,
+ "loss": 3.690046548843384,
+ "step": 2523
+ },
+ {
+ "epoch": 35.05591961555265,
+ "grad_norm": 0.24177077412605286,
+ "learning_rate": 0.0006,
+ "loss": 3.685335874557495,
+ "step": 2524
+ },
+ {
+ "epoch": 35.0698995194408,
+ "grad_norm": 0.23959586024284363,
+ "learning_rate": 0.0006,
+ "loss": 3.6534650325775146,
+ "step": 2525
+ },
+ {
+ "epoch": 35.083879423328966,
+ "grad_norm": 0.23474839329719543,
+ "learning_rate": 0.0006,
+ "loss": 3.7092814445495605,
+ "step": 2526
+ },
+ {
+ "epoch": 35.09785932721712,
+ "grad_norm": 0.23240867257118225,
+ "learning_rate": 0.0006,
+ "loss": 3.6819097995758057,
+ "step": 2527
+ },
+ {
+ "epoch": 35.111839231105286,
+ "grad_norm": 0.26267048716545105,
+ "learning_rate": 0.0006,
+ "loss": 3.6566696166992188,
+ "step": 2528
+ },
+ {
+ "epoch": 35.12581913499345,
+ "grad_norm": 0.27070754766464233,
+ "learning_rate": 0.0006,
+ "loss": 3.676304340362549,
+ "step": 2529
+ },
+ {
+ "epoch": 35.139799038881605,
+ "grad_norm": 0.25297826528549194,
+ "learning_rate": 0.0006,
+ "loss": 3.65259051322937,
+ "step": 2530
+ },
+ {
+ "epoch": 35.15377894276977,
+ "grad_norm": 0.22776272892951965,
+ "learning_rate": 0.0006,
+ "loss": 3.6813838481903076,
+ "step": 2531
+ },
+ {
+ "epoch": 35.16775884665793,
+ "grad_norm": 0.2288261204957962,
+ "learning_rate": 0.0006,
+ "loss": 3.6916379928588867,
+ "step": 2532
+ },
+ {
+ "epoch": 35.18173875054609,
+ "grad_norm": 0.20445892214775085,
+ "learning_rate": 0.0006,
+ "loss": 3.6550145149230957,
+ "step": 2533
+ },
+ {
+ "epoch": 35.19571865443425,
+ "grad_norm": 0.20298904180526733,
+ "learning_rate": 0.0006,
+ "loss": 3.704042434692383,
+ "step": 2534
+ },
+ {
+ "epoch": 35.20969855832241,
+ "grad_norm": 0.2264423668384552,
+ "learning_rate": 0.0006,
+ "loss": 3.646308183670044,
+ "step": 2535
+ },
+ {
+ "epoch": 35.22367846221057,
+ "grad_norm": 0.21537378430366516,
+ "learning_rate": 0.0006,
+ "loss": 3.686048984527588,
+ "step": 2536
+ },
+ {
+ "epoch": 35.237658366098735,
+ "grad_norm": 0.19820059835910797,
+ "learning_rate": 0.0006,
+ "loss": 3.6993050575256348,
+ "step": 2537
+ },
+ {
+ "epoch": 35.25163826998689,
+ "grad_norm": 0.19485290348529816,
+ "learning_rate": 0.0006,
+ "loss": 3.6507070064544678,
+ "step": 2538
+ },
+ {
+ "epoch": 35.265618173875055,
+ "grad_norm": 0.21234364807605743,
+ "learning_rate": 0.0006,
+ "loss": 3.6913719177246094,
+ "step": 2539
+ },
+ {
+ "epoch": 35.27959807776322,
+ "grad_norm": 0.19834300875663757,
+ "learning_rate": 0.0006,
+ "loss": 3.6793041229248047,
+ "step": 2540
+ },
+ {
+ "epoch": 35.293577981651374,
+ "grad_norm": 0.1969013512134552,
+ "learning_rate": 0.0006,
+ "loss": 3.7063517570495605,
+ "step": 2541
+ },
+ {
+ "epoch": 35.30755788553954,
+ "grad_norm": 0.196136936545372,
+ "learning_rate": 0.0006,
+ "loss": 3.679825782775879,
+ "step": 2542
+ },
+ {
+ "epoch": 35.3215377894277,
+ "grad_norm": 0.20465479791164398,
+ "learning_rate": 0.0006,
+ "loss": 3.698906421661377,
+ "step": 2543
+ },
+ {
+ "epoch": 35.33551769331586,
+ "grad_norm": 0.204293355345726,
+ "learning_rate": 0.0006,
+ "loss": 3.728549003601074,
+ "step": 2544
+ },
+ {
+ "epoch": 35.34949759720402,
+ "grad_norm": 0.18861903250217438,
+ "learning_rate": 0.0006,
+ "loss": 3.687018632888794,
+ "step": 2545
+ },
+ {
+ "epoch": 35.36347750109218,
+ "grad_norm": 0.19066226482391357,
+ "learning_rate": 0.0006,
+ "loss": 3.667919158935547,
+ "step": 2546
+ },
+ {
+ "epoch": 35.37745740498034,
+ "grad_norm": 0.19985736906528473,
+ "learning_rate": 0.0006,
+ "loss": 3.6697773933410645,
+ "step": 2547
+ },
+ {
+ "epoch": 35.391437308868504,
+ "grad_norm": 0.20669348537921906,
+ "learning_rate": 0.0006,
+ "loss": 3.6718077659606934,
+ "step": 2548
+ },
+ {
+ "epoch": 35.40541721275666,
+ "grad_norm": 0.22164477407932281,
+ "learning_rate": 0.0006,
+ "loss": 3.692106246948242,
+ "step": 2549
+ },
+ {
+ "epoch": 35.419397116644824,
+ "grad_norm": 0.20884688198566437,
+ "learning_rate": 0.0006,
+ "loss": 3.714324712753296,
+ "step": 2550
+ },
+ {
+ "epoch": 35.43337702053299,
+ "grad_norm": 0.21811005473136902,
+ "learning_rate": 0.0006,
+ "loss": 3.678694725036621,
+ "step": 2551
+ },
+ {
+ "epoch": 35.44735692442114,
+ "grad_norm": 0.2427632063627243,
+ "learning_rate": 0.0006,
+ "loss": 3.6584935188293457,
+ "step": 2552
+ },
+ {
+ "epoch": 35.46133682830931,
+ "grad_norm": 0.2584928572177887,
+ "learning_rate": 0.0006,
+ "loss": 3.694148063659668,
+ "step": 2553
+ },
+ {
+ "epoch": 35.47531673219746,
+ "grad_norm": 0.2594548761844635,
+ "learning_rate": 0.0006,
+ "loss": 3.690629005432129,
+ "step": 2554
+ },
+ {
+ "epoch": 35.489296636085626,
+ "grad_norm": 0.2521844208240509,
+ "learning_rate": 0.0006,
+ "loss": 3.6949915885925293,
+ "step": 2555
+ },
+ {
+ "epoch": 35.50327653997379,
+ "grad_norm": 0.2284533679485321,
+ "learning_rate": 0.0006,
+ "loss": 3.6822848320007324,
+ "step": 2556
+ },
+ {
+ "epoch": 35.517256443861946,
+ "grad_norm": 0.2350241094827652,
+ "learning_rate": 0.0006,
+ "loss": 3.6841659545898438,
+ "step": 2557
+ },
+ {
+ "epoch": 35.53123634775011,
+ "grad_norm": 0.22496885061264038,
+ "learning_rate": 0.0006,
+ "loss": 3.676447629928589,
+ "step": 2558
+ },
+ {
+ "epoch": 35.54521625163827,
+ "grad_norm": 0.24326276779174805,
+ "learning_rate": 0.0006,
+ "loss": 3.681678533554077,
+ "step": 2559
+ },
+ {
+ "epoch": 35.55919615552643,
+ "grad_norm": 0.26298362016677856,
+ "learning_rate": 0.0006,
+ "loss": 3.6877617835998535,
+ "step": 2560
+ },
+ {
+ "epoch": 35.57317605941459,
+ "grad_norm": 0.2507239282131195,
+ "learning_rate": 0.0006,
+ "loss": 3.7089176177978516,
+ "step": 2561
+ },
+ {
+ "epoch": 35.58715596330275,
+ "grad_norm": 0.2276458442211151,
+ "learning_rate": 0.0006,
+ "loss": 3.705570936203003,
+ "step": 2562
+ },
+ {
+ "epoch": 35.60113586719091,
+ "grad_norm": 0.23317085206508636,
+ "learning_rate": 0.0006,
+ "loss": 3.6772396564483643,
+ "step": 2563
+ },
+ {
+ "epoch": 35.615115771079076,
+ "grad_norm": 0.23301710188388824,
+ "learning_rate": 0.0006,
+ "loss": 3.694855213165283,
+ "step": 2564
+ },
+ {
+ "epoch": 35.62909567496723,
+ "grad_norm": 0.2170179933309555,
+ "learning_rate": 0.0006,
+ "loss": 3.7095537185668945,
+ "step": 2565
+ },
+ {
+ "epoch": 35.643075578855395,
+ "grad_norm": 0.21211965382099152,
+ "learning_rate": 0.0006,
+ "loss": 3.670109272003174,
+ "step": 2566
+ },
+ {
+ "epoch": 35.65705548274356,
+ "grad_norm": 0.21052585542201996,
+ "learning_rate": 0.0006,
+ "loss": 3.6576027870178223,
+ "step": 2567
+ },
+ {
+ "epoch": 35.671035386631715,
+ "grad_norm": 0.21556039154529572,
+ "learning_rate": 0.0006,
+ "loss": 3.6870639324188232,
+ "step": 2568
+ },
+ {
+ "epoch": 35.68501529051988,
+ "grad_norm": 0.2246469408273697,
+ "learning_rate": 0.0006,
+ "loss": 3.675652503967285,
+ "step": 2569
+ },
+ {
+ "epoch": 35.69899519440804,
+ "grad_norm": 0.21891754865646362,
+ "learning_rate": 0.0006,
+ "loss": 3.692298650741577,
+ "step": 2570
+ },
+ {
+ "epoch": 35.7129750982962,
+ "grad_norm": 0.18774104118347168,
+ "learning_rate": 0.0006,
+ "loss": 3.681035041809082,
+ "step": 2571
+ },
+ {
+ "epoch": 35.72695500218436,
+ "grad_norm": 0.19461573660373688,
+ "learning_rate": 0.0006,
+ "loss": 3.7007932662963867,
+ "step": 2572
+ },
+ {
+ "epoch": 35.74093490607252,
+ "grad_norm": 0.25579094886779785,
+ "learning_rate": 0.0006,
+ "loss": 3.724409580230713,
+ "step": 2573
+ },
+ {
+ "epoch": 35.75491480996068,
+ "grad_norm": 0.27635645866394043,
+ "learning_rate": 0.0006,
+ "loss": 3.68107271194458,
+ "step": 2574
+ },
+ {
+ "epoch": 35.768894713848844,
+ "grad_norm": 0.2233380675315857,
+ "learning_rate": 0.0006,
+ "loss": 3.7123913764953613,
+ "step": 2575
+ },
+ {
+ "epoch": 35.782874617737,
+ "grad_norm": 0.19383835792541504,
+ "learning_rate": 0.0006,
+ "loss": 3.6948328018188477,
+ "step": 2576
+ },
+ {
+ "epoch": 35.796854521625164,
+ "grad_norm": 0.18138426542282104,
+ "learning_rate": 0.0006,
+ "loss": 3.6837103366851807,
+ "step": 2577
+ },
+ {
+ "epoch": 35.81083442551333,
+ "grad_norm": 0.18680135905742645,
+ "learning_rate": 0.0006,
+ "loss": 3.7106502056121826,
+ "step": 2578
+ },
+ {
+ "epoch": 35.824814329401484,
+ "grad_norm": 0.19226312637329102,
+ "learning_rate": 0.0006,
+ "loss": 3.69488787651062,
+ "step": 2579
+ },
+ {
+ "epoch": 35.83879423328965,
+ "grad_norm": 0.19224657118320465,
+ "learning_rate": 0.0006,
+ "loss": 3.7103662490844727,
+ "step": 2580
+ },
+ {
+ "epoch": 35.8527741371778,
+ "grad_norm": 0.18991880118846893,
+ "learning_rate": 0.0006,
+ "loss": 3.7154245376586914,
+ "step": 2581
+ },
+ {
+ "epoch": 35.86675404106597,
+ "grad_norm": 0.2036849409341812,
+ "learning_rate": 0.0006,
+ "loss": 3.723738193511963,
+ "step": 2582
+ },
+ {
+ "epoch": 35.88073394495413,
+ "grad_norm": 0.24730375409126282,
+ "learning_rate": 0.0006,
+ "loss": 3.6830549240112305,
+ "step": 2583
+ },
+ {
+ "epoch": 35.89471384884229,
+ "grad_norm": 0.26552343368530273,
+ "learning_rate": 0.0006,
+ "loss": 3.7025017738342285,
+ "step": 2584
+ },
+ {
+ "epoch": 35.90869375273045,
+ "grad_norm": 0.2621893286705017,
+ "learning_rate": 0.0006,
+ "loss": 3.697399854660034,
+ "step": 2585
+ },
+ {
+ "epoch": 35.92267365661861,
+ "grad_norm": 0.2320089191198349,
+ "learning_rate": 0.0006,
+ "loss": 3.722207546234131,
+ "step": 2586
+ },
+ {
+ "epoch": 35.93665356050677,
+ "grad_norm": 0.1848745346069336,
+ "learning_rate": 0.0006,
+ "loss": 3.711249351501465,
+ "step": 2587
+ },
+ {
+ "epoch": 35.95063346439493,
+ "grad_norm": 0.24218113720417023,
+ "learning_rate": 0.0006,
+ "loss": 3.698894500732422,
+ "step": 2588
+ },
+ {
+ "epoch": 35.964613368283096,
+ "grad_norm": 0.29338452219963074,
+ "learning_rate": 0.0006,
+ "loss": 3.7470521926879883,
+ "step": 2589
+ },
+ {
+ "epoch": 35.97859327217125,
+ "grad_norm": 0.2804136276245117,
+ "learning_rate": 0.0006,
+ "loss": 3.750649929046631,
+ "step": 2590
+ },
+ {
+ "epoch": 35.992573176059416,
+ "grad_norm": 0.26404470205307007,
+ "learning_rate": 0.0006,
+ "loss": 3.6995797157287598,
+ "step": 2591
+ },
+ {
+ "epoch": 36.0,
+ "grad_norm": 0.27446141839027405,
+ "learning_rate": 0.0006,
+ "loss": 3.715768814086914,
+ "step": 2592
+ },
+ {
+ "epoch": 36.0,
+ "eval_loss": 4.007599830627441,
+ "eval_runtime": 44.0149,
+ "eval_samples_per_second": 55.481,
+ "eval_steps_per_second": 3.476,
+ "step": 2592
+ },
+ {
+ "epoch": 36.01397990388816,
+ "grad_norm": 0.2365594208240509,
+ "learning_rate": 0.0006,
+ "loss": 3.6529457569122314,
+ "step": 2593
+ },
+ {
+ "epoch": 36.02795980777632,
+ "grad_norm": 0.24824099242687225,
+ "learning_rate": 0.0006,
+ "loss": 3.6703386306762695,
+ "step": 2594
+ },
+ {
+ "epoch": 36.04193971166448,
+ "grad_norm": 0.26802200078964233,
+ "learning_rate": 0.0006,
+ "loss": 3.688307762145996,
+ "step": 2595
+ },
+ {
+ "epoch": 36.05591961555265,
+ "grad_norm": 0.2552911341190338,
+ "learning_rate": 0.0006,
+ "loss": 3.681797981262207,
+ "step": 2596
+ },
+ {
+ "epoch": 36.0698995194408,
+ "grad_norm": 0.254991739988327,
+ "learning_rate": 0.0006,
+ "loss": 3.644087791442871,
+ "step": 2597
+ },
+ {
+ "epoch": 36.083879423328966,
+ "grad_norm": 0.2496735155582428,
+ "learning_rate": 0.0006,
+ "loss": 3.644047737121582,
+ "step": 2598
+ },
+ {
+ "epoch": 36.09785932721712,
+ "grad_norm": 0.23637443780899048,
+ "learning_rate": 0.0006,
+ "loss": 3.684454917907715,
+ "step": 2599
+ },
+ {
+ "epoch": 36.111839231105286,
+ "grad_norm": 0.22065003216266632,
+ "learning_rate": 0.0006,
+ "loss": 3.661752700805664,
+ "step": 2600
+ },
+ {
+ "epoch": 36.12581913499345,
+ "grad_norm": 0.2292395532131195,
+ "learning_rate": 0.0006,
+ "loss": 3.6709558963775635,
+ "step": 2601
+ },
+ {
+ "epoch": 36.139799038881605,
+ "grad_norm": 0.22295089066028595,
+ "learning_rate": 0.0006,
+ "loss": 3.642230987548828,
+ "step": 2602
+ },
+ {
+ "epoch": 36.15377894276977,
+ "grad_norm": 0.2220531553030014,
+ "learning_rate": 0.0006,
+ "loss": 3.653268814086914,
+ "step": 2603
+ },
+ {
+ "epoch": 36.16775884665793,
+ "grad_norm": 0.21605174243450165,
+ "learning_rate": 0.0006,
+ "loss": 3.6791329383850098,
+ "step": 2604
+ },
+ {
+ "epoch": 36.18173875054609,
+ "grad_norm": 0.20932699739933014,
+ "learning_rate": 0.0006,
+ "loss": 3.6496856212615967,
+ "step": 2605
+ },
+ {
+ "epoch": 36.19571865443425,
+ "grad_norm": 0.20941385626792908,
+ "learning_rate": 0.0006,
+ "loss": 3.6445729732513428,
+ "step": 2606
+ },
+ {
+ "epoch": 36.20969855832241,
+ "grad_norm": 0.1987197995185852,
+ "learning_rate": 0.0006,
+ "loss": 3.6481809616088867,
+ "step": 2607
+ },
+ {
+ "epoch": 36.22367846221057,
+ "grad_norm": 0.19054439663887024,
+ "learning_rate": 0.0006,
+ "loss": 3.66894268989563,
+ "step": 2608
+ },
+ {
+ "epoch": 36.237658366098735,
+ "grad_norm": 0.19940806925296783,
+ "learning_rate": 0.0006,
+ "loss": 3.7123427391052246,
+ "step": 2609
+ },
+ {
+ "epoch": 36.25163826998689,
+ "grad_norm": 0.22157685458660126,
+ "learning_rate": 0.0006,
+ "loss": 3.6707541942596436,
+ "step": 2610
+ },
+ {
+ "epoch": 36.265618173875055,
+ "grad_norm": 0.2362316995859146,
+ "learning_rate": 0.0006,
+ "loss": 3.6906795501708984,
+ "step": 2611
+ },
+ {
+ "epoch": 36.27959807776322,
+ "grad_norm": 0.24560341238975525,
+ "learning_rate": 0.0006,
+ "loss": 3.668379783630371,
+ "step": 2612
+ },
+ {
+ "epoch": 36.293577981651374,
+ "grad_norm": 0.22814054787158966,
+ "learning_rate": 0.0006,
+ "loss": 3.665527820587158,
+ "step": 2613
+ },
+ {
+ "epoch": 36.30755788553954,
+ "grad_norm": 0.2156696617603302,
+ "learning_rate": 0.0006,
+ "loss": 3.673835277557373,
+ "step": 2614
+ },
+ {
+ "epoch": 36.3215377894277,
+ "grad_norm": 0.20152772963047028,
+ "learning_rate": 0.0006,
+ "loss": 3.6512670516967773,
+ "step": 2615
+ },
+ {
+ "epoch": 36.33551769331586,
+ "grad_norm": 0.22466860711574554,
+ "learning_rate": 0.0006,
+ "loss": 3.6877706050872803,
+ "step": 2616
+ },
+ {
+ "epoch": 36.34949759720402,
+ "grad_norm": 0.21688112616539001,
+ "learning_rate": 0.0006,
+ "loss": 3.6895859241485596,
+ "step": 2617
+ },
+ {
+ "epoch": 36.36347750109218,
+ "grad_norm": 0.19836577773094177,
+ "learning_rate": 0.0006,
+ "loss": 3.6658992767333984,
+ "step": 2618
+ },
+ {
+ "epoch": 36.37745740498034,
+ "grad_norm": 0.1995069831609726,
+ "learning_rate": 0.0006,
+ "loss": 3.677614450454712,
+ "step": 2619
+ },
+ {
+ "epoch": 36.391437308868504,
+ "grad_norm": 0.21234792470932007,
+ "learning_rate": 0.0006,
+ "loss": 3.6971967220306396,
+ "step": 2620
+ },
+ {
+ "epoch": 36.40541721275666,
+ "grad_norm": 0.20898285508155823,
+ "learning_rate": 0.0006,
+ "loss": 3.6936516761779785,
+ "step": 2621
+ },
+ {
+ "epoch": 36.419397116644824,
+ "grad_norm": 0.2115008533000946,
+ "learning_rate": 0.0006,
+ "loss": 3.6674065589904785,
+ "step": 2622
+ },
+ {
+ "epoch": 36.43337702053299,
+ "grad_norm": 0.2041143774986267,
+ "learning_rate": 0.0006,
+ "loss": 3.6455483436584473,
+ "step": 2623
+ },
+ {
+ "epoch": 36.44735692442114,
+ "grad_norm": 0.1966932713985443,
+ "learning_rate": 0.0006,
+ "loss": 3.6938109397888184,
+ "step": 2624
+ },
+ {
+ "epoch": 36.46133682830931,
+ "grad_norm": 0.20062223076820374,
+ "learning_rate": 0.0006,
+ "loss": 3.6775765419006348,
+ "step": 2625
+ },
+ {
+ "epoch": 36.47531673219746,
+ "grad_norm": 0.20610390603542328,
+ "learning_rate": 0.0006,
+ "loss": 3.6835384368896484,
+ "step": 2626
+ },
+ {
+ "epoch": 36.489296636085626,
+ "grad_norm": 0.20481473207473755,
+ "learning_rate": 0.0006,
+ "loss": 3.6794047355651855,
+ "step": 2627
+ },
+ {
+ "epoch": 36.50327653997379,
+ "grad_norm": 0.18964581191539764,
+ "learning_rate": 0.0006,
+ "loss": 3.7035841941833496,
+ "step": 2628
+ },
+ {
+ "epoch": 36.517256443861946,
+ "grad_norm": 0.2029343545436859,
+ "learning_rate": 0.0006,
+ "loss": 3.6667590141296387,
+ "step": 2629
+ },
+ {
+ "epoch": 36.53123634775011,
+ "grad_norm": 0.23656968772411346,
+ "learning_rate": 0.0006,
+ "loss": 3.6974546909332275,
+ "step": 2630
+ },
+ {
+ "epoch": 36.54521625163827,
+ "grad_norm": 0.23401431739330292,
+ "learning_rate": 0.0006,
+ "loss": 3.668936252593994,
+ "step": 2631
+ },
+ {
+ "epoch": 36.55919615552643,
+ "grad_norm": 0.22258102893829346,
+ "learning_rate": 0.0006,
+ "loss": 3.667977809906006,
+ "step": 2632
+ },
+ {
+ "epoch": 36.57317605941459,
+ "grad_norm": 0.20849554240703583,
+ "learning_rate": 0.0006,
+ "loss": 3.6674845218658447,
+ "step": 2633
+ },
+ {
+ "epoch": 36.58715596330275,
+ "grad_norm": 0.20684309303760529,
+ "learning_rate": 0.0006,
+ "loss": 3.6828644275665283,
+ "step": 2634
+ },
+ {
+ "epoch": 36.60113586719091,
+ "grad_norm": 0.19114233553409576,
+ "learning_rate": 0.0006,
+ "loss": 3.7084832191467285,
+ "step": 2635
+ },
+ {
+ "epoch": 36.615115771079076,
+ "grad_norm": 0.20382429659366608,
+ "learning_rate": 0.0006,
+ "loss": 3.68354868888855,
+ "step": 2636
+ },
+ {
+ "epoch": 36.62909567496723,
+ "grad_norm": 0.22526590526103973,
+ "learning_rate": 0.0006,
+ "loss": 3.684112310409546,
+ "step": 2637
+ },
+ {
+ "epoch": 36.643075578855395,
+ "grad_norm": 0.20735391974449158,
+ "learning_rate": 0.0006,
+ "loss": 3.67702054977417,
+ "step": 2638
+ },
+ {
+ "epoch": 36.65705548274356,
+ "grad_norm": 0.18549653887748718,
+ "learning_rate": 0.0006,
+ "loss": 3.6840810775756836,
+ "step": 2639
+ },
+ {
+ "epoch": 36.671035386631715,
+ "grad_norm": 0.1805262714624405,
+ "learning_rate": 0.0006,
+ "loss": 3.688119411468506,
+ "step": 2640
+ },
+ {
+ "epoch": 36.68501529051988,
+ "grad_norm": 0.17545704543590546,
+ "learning_rate": 0.0006,
+ "loss": 3.6477861404418945,
+ "step": 2641
+ },
+ {
+ "epoch": 36.69899519440804,
+ "grad_norm": 0.1772221326828003,
+ "learning_rate": 0.0006,
+ "loss": 3.6935806274414062,
+ "step": 2642
+ },
+ {
+ "epoch": 36.7129750982962,
+ "grad_norm": 0.18701671063899994,
+ "learning_rate": 0.0006,
+ "loss": 3.6820428371429443,
+ "step": 2643
+ },
+ {
+ "epoch": 36.72695500218436,
+ "grad_norm": 0.2057863473892212,
+ "learning_rate": 0.0006,
+ "loss": 3.669762134552002,
+ "step": 2644
+ },
+ {
+ "epoch": 36.74093490607252,
+ "grad_norm": 0.2565848231315613,
+ "learning_rate": 0.0006,
+ "loss": 3.717599391937256,
+ "step": 2645
+ },
+ {
+ "epoch": 36.75491480996068,
+ "grad_norm": 0.24362123012542725,
+ "learning_rate": 0.0006,
+ "loss": 3.671900987625122,
+ "step": 2646
+ },
+ {
+ "epoch": 36.768894713848844,
+ "grad_norm": 0.19606009125709534,
+ "learning_rate": 0.0006,
+ "loss": 3.6782546043395996,
+ "step": 2647
+ },
+ {
+ "epoch": 36.782874617737,
+ "grad_norm": 0.1948748379945755,
+ "learning_rate": 0.0006,
+ "loss": 3.6823501586914062,
+ "step": 2648
+ },
+ {
+ "epoch": 36.796854521625164,
+ "grad_norm": 0.22289852797985077,
+ "learning_rate": 0.0006,
+ "loss": 3.693469762802124,
+ "step": 2649
+ },
+ {
+ "epoch": 36.81083442551333,
+ "grad_norm": 0.24751701951026917,
+ "learning_rate": 0.0006,
+ "loss": 3.700678825378418,
+ "step": 2650
+ },
+ {
+ "epoch": 36.824814329401484,
+ "grad_norm": 0.28663966059684753,
+ "learning_rate": 0.0006,
+ "loss": 3.6960878372192383,
+ "step": 2651
+ },
+ {
+ "epoch": 36.83879423328965,
+ "grad_norm": 0.3288552165031433,
+ "learning_rate": 0.0006,
+ "loss": 3.7255043983459473,
+ "step": 2652
+ },
+ {
+ "epoch": 36.8527741371778,
+ "grad_norm": 0.3555443286895752,
+ "learning_rate": 0.0006,
+ "loss": 3.725308418273926,
+ "step": 2653
+ },
+ {
+ "epoch": 36.86675404106597,
+ "grad_norm": 0.3204147219657898,
+ "learning_rate": 0.0006,
+ "loss": 3.7137985229492188,
+ "step": 2654
+ },
+ {
+ "epoch": 36.88073394495413,
+ "grad_norm": 0.2944706976413727,
+ "learning_rate": 0.0006,
+ "loss": 3.7032840251922607,
+ "step": 2655
+ },
+ {
+ "epoch": 36.89471384884229,
+ "grad_norm": 0.2845679223537445,
+ "learning_rate": 0.0006,
+ "loss": 3.6840004920959473,
+ "step": 2656
+ },
+ {
+ "epoch": 36.90869375273045,
+ "grad_norm": 0.2815704047679901,
+ "learning_rate": 0.0006,
+ "loss": 3.6958417892456055,
+ "step": 2657
+ },
+ {
+ "epoch": 36.92267365661861,
+ "grad_norm": 0.2733481228351593,
+ "learning_rate": 0.0006,
+ "loss": 3.677690029144287,
+ "step": 2658
+ },
+ {
+ "epoch": 36.93665356050677,
+ "grad_norm": 0.29572054743766785,
+ "learning_rate": 0.0006,
+ "loss": 3.6983718872070312,
+ "step": 2659
+ },
+ {
+ "epoch": 36.95063346439493,
+ "grad_norm": 0.2487923800945282,
+ "learning_rate": 0.0006,
+ "loss": 3.7041163444519043,
+ "step": 2660
+ },
+ {
+ "epoch": 36.964613368283096,
+ "grad_norm": 0.2541966438293457,
+ "learning_rate": 0.0006,
+ "loss": 3.7038979530334473,
+ "step": 2661
+ },
+ {
+ "epoch": 36.97859327217125,
+ "grad_norm": 0.2441335767507553,
+ "learning_rate": 0.0006,
+ "loss": 3.717966079711914,
+ "step": 2662
+ },
+ {
+ "epoch": 36.992573176059416,
+ "grad_norm": 0.2304554283618927,
+ "learning_rate": 0.0006,
+ "loss": 3.671098232269287,
+ "step": 2663
+ },
+ {
+ "epoch": 37.0,
+ "grad_norm": 0.2346591204404831,
+ "learning_rate": 0.0006,
+ "loss": 3.680298089981079,
+ "step": 2664
+ },
+ {
+ "epoch": 37.0,
+ "eval_loss": 3.9944777488708496,
+ "eval_runtime": 43.9862,
+ "eval_samples_per_second": 55.517,
+ "eval_steps_per_second": 3.478,
+ "step": 2664
+ },
+ {
+ "epoch": 37.01397990388816,
+ "grad_norm": 0.22970618307590485,
+ "learning_rate": 0.0006,
+ "loss": 3.6835923194885254,
+ "step": 2665
+ },
+ {
+ "epoch": 37.02795980777632,
+ "grad_norm": 0.25463759899139404,
+ "learning_rate": 0.0006,
+ "loss": 3.658339023590088,
+ "step": 2666
+ },
+ {
+ "epoch": 37.04193971166448,
+ "grad_norm": 0.2520577311515808,
+ "learning_rate": 0.0006,
+ "loss": 3.6275506019592285,
+ "step": 2667
+ },
+ {
+ "epoch": 37.05591961555265,
+ "grad_norm": 0.22698813676834106,
+ "learning_rate": 0.0006,
+ "loss": 3.65043568611145,
+ "step": 2668
+ },
+ {
+ "epoch": 37.0698995194408,
+ "grad_norm": 0.21133972704410553,
+ "learning_rate": 0.0006,
+ "loss": 3.6262078285217285,
+ "step": 2669
+ },
+ {
+ "epoch": 37.083879423328966,
+ "grad_norm": 0.21940460801124573,
+ "learning_rate": 0.0006,
+ "loss": 3.6709489822387695,
+ "step": 2670
+ },
+ {
+ "epoch": 37.09785932721712,
+ "grad_norm": 0.21897517144680023,
+ "learning_rate": 0.0006,
+ "loss": 3.6621508598327637,
+ "step": 2671
+ },
+ {
+ "epoch": 37.111839231105286,
+ "grad_norm": 0.2270219624042511,
+ "learning_rate": 0.0006,
+ "loss": 3.6334924697875977,
+ "step": 2672
+ },
+ {
+ "epoch": 37.12581913499345,
+ "grad_norm": 0.22082042694091797,
+ "learning_rate": 0.0006,
+ "loss": 3.662209987640381,
+ "step": 2673
+ },
+ {
+ "epoch": 37.139799038881605,
+ "grad_norm": 0.19931960105895996,
+ "learning_rate": 0.0006,
+ "loss": 3.6655359268188477,
+ "step": 2674
+ },
+ {
+ "epoch": 37.15377894276977,
+ "grad_norm": 0.21451307833194733,
+ "learning_rate": 0.0006,
+ "loss": 3.656287670135498,
+ "step": 2675
+ },
+ {
+ "epoch": 37.16775884665793,
+ "grad_norm": 0.2131514698266983,
+ "learning_rate": 0.0006,
+ "loss": 3.635054111480713,
+ "step": 2676
+ },
+ {
+ "epoch": 37.18173875054609,
+ "grad_norm": 0.20425808429718018,
+ "learning_rate": 0.0006,
+ "loss": 3.67653226852417,
+ "step": 2677
+ },
+ {
+ "epoch": 37.19571865443425,
+ "grad_norm": 0.19423379004001617,
+ "learning_rate": 0.0006,
+ "loss": 3.6827316284179688,
+ "step": 2678
+ },
+ {
+ "epoch": 37.20969855832241,
+ "grad_norm": 0.1954883486032486,
+ "learning_rate": 0.0006,
+ "loss": 3.658092498779297,
+ "step": 2679
+ },
+ {
+ "epoch": 37.22367846221057,
+ "grad_norm": 0.21153928339481354,
+ "learning_rate": 0.0006,
+ "loss": 3.6675186157226562,
+ "step": 2680
+ },
+ {
+ "epoch": 37.237658366098735,
+ "grad_norm": 0.2032976895570755,
+ "learning_rate": 0.0006,
+ "loss": 3.6725759506225586,
+ "step": 2681
+ },
+ {
+ "epoch": 37.25163826998689,
+ "grad_norm": 0.19839346408843994,
+ "learning_rate": 0.0006,
+ "loss": 3.660851240158081,
+ "step": 2682
+ },
+ {
+ "epoch": 37.265618173875055,
+ "grad_norm": 0.1884699910879135,
+ "learning_rate": 0.0006,
+ "loss": 3.6653623580932617,
+ "step": 2683
+ },
+ {
+ "epoch": 37.27959807776322,
+ "grad_norm": 0.19558705389499664,
+ "learning_rate": 0.0006,
+ "loss": 3.648016929626465,
+ "step": 2684
+ },
+ {
+ "epoch": 37.293577981651374,
+ "grad_norm": 0.19453682005405426,
+ "learning_rate": 0.0006,
+ "loss": 3.6804773807525635,
+ "step": 2685
+ },
+ {
+ "epoch": 37.30755788553954,
+ "grad_norm": 0.1901177167892456,
+ "learning_rate": 0.0006,
+ "loss": 3.6533353328704834,
+ "step": 2686
+ },
+ {
+ "epoch": 37.3215377894277,
+ "grad_norm": 0.19425596296787262,
+ "learning_rate": 0.0006,
+ "loss": 3.665745735168457,
+ "step": 2687
+ },
+ {
+ "epoch": 37.33551769331586,
+ "grad_norm": 0.17583411931991577,
+ "learning_rate": 0.0006,
+ "loss": 3.679112434387207,
+ "step": 2688
+ },
+ {
+ "epoch": 37.34949759720402,
+ "grad_norm": 0.19667863845825195,
+ "learning_rate": 0.0006,
+ "loss": 3.6650352478027344,
+ "step": 2689
+ },
+ {
+ "epoch": 37.36347750109218,
+ "grad_norm": 0.22803270816802979,
+ "learning_rate": 0.0006,
+ "loss": 3.6658573150634766,
+ "step": 2690
+ },
+ {
+ "epoch": 37.37745740498034,
+ "grad_norm": 0.20589298009872437,
+ "learning_rate": 0.0006,
+ "loss": 3.6587300300598145,
+ "step": 2691
+ },
+ {
+ "epoch": 37.391437308868504,
+ "grad_norm": 0.1946951299905777,
+ "learning_rate": 0.0006,
+ "loss": 3.6515092849731445,
+ "step": 2692
+ },
+ {
+ "epoch": 37.40541721275666,
+ "grad_norm": 0.19029614329338074,
+ "learning_rate": 0.0006,
+ "loss": 3.6383113861083984,
+ "step": 2693
+ },
+ {
+ "epoch": 37.419397116644824,
+ "grad_norm": 0.1944548338651657,
+ "learning_rate": 0.0006,
+ "loss": 3.7017135620117188,
+ "step": 2694
+ },
+ {
+ "epoch": 37.43337702053299,
+ "grad_norm": 0.19482386112213135,
+ "learning_rate": 0.0006,
+ "loss": 3.6791775226593018,
+ "step": 2695
+ },
+ {
+ "epoch": 37.44735692442114,
+ "grad_norm": 0.23276680707931519,
+ "learning_rate": 0.0006,
+ "loss": 3.672245979309082,
+ "step": 2696
+ },
+ {
+ "epoch": 37.46133682830931,
+ "grad_norm": 0.22267542779445648,
+ "learning_rate": 0.0006,
+ "loss": 3.683380365371704,
+ "step": 2697
+ },
+ {
+ "epoch": 37.47531673219746,
+ "grad_norm": 0.1942203938961029,
+ "learning_rate": 0.0006,
+ "loss": 3.6760759353637695,
+ "step": 2698
+ },
+ {
+ "epoch": 37.489296636085626,
+ "grad_norm": 0.21212540566921234,
+ "learning_rate": 0.0006,
+ "loss": 3.660719633102417,
+ "step": 2699
+ },
+ {
+ "epoch": 37.50327653997379,
+ "grad_norm": 0.2365427315235138,
+ "learning_rate": 0.0006,
+ "loss": 3.6727194786071777,
+ "step": 2700
+ },
+ {
+ "epoch": 37.517256443861946,
+ "grad_norm": 0.2379675805568695,
+ "learning_rate": 0.0006,
+ "loss": 3.6691598892211914,
+ "step": 2701
+ },
+ {
+ "epoch": 37.53123634775011,
+ "grad_norm": 0.22142401337623596,
+ "learning_rate": 0.0006,
+ "loss": 3.6882128715515137,
+ "step": 2702
+ },
+ {
+ "epoch": 37.54521625163827,
+ "grad_norm": 0.19993607699871063,
+ "learning_rate": 0.0006,
+ "loss": 3.6651787757873535,
+ "step": 2703
+ },
+ {
+ "epoch": 37.55919615552643,
+ "grad_norm": 0.19934895634651184,
+ "learning_rate": 0.0006,
+ "loss": 3.6680638790130615,
+ "step": 2704
+ },
+ {
+ "epoch": 37.57317605941459,
+ "grad_norm": 0.21202369034290314,
+ "learning_rate": 0.0006,
+ "loss": 3.697615623474121,
+ "step": 2705
+ },
+ {
+ "epoch": 37.58715596330275,
+ "grad_norm": 0.1994577795267105,
+ "learning_rate": 0.0006,
+ "loss": 3.688243865966797,
+ "step": 2706
+ },
+ {
+ "epoch": 37.60113586719091,
+ "grad_norm": 0.20365118980407715,
+ "learning_rate": 0.0006,
+ "loss": 3.6615519523620605,
+ "step": 2707
+ },
+ {
+ "epoch": 37.615115771079076,
+ "grad_norm": 0.22466035187244415,
+ "learning_rate": 0.0006,
+ "loss": 3.703111171722412,
+ "step": 2708
+ },
+ {
+ "epoch": 37.62909567496723,
+ "grad_norm": 0.21140407025814056,
+ "learning_rate": 0.0006,
+ "loss": 3.6744728088378906,
+ "step": 2709
+ },
+ {
+ "epoch": 37.643075578855395,
+ "grad_norm": 0.22220195829868317,
+ "learning_rate": 0.0006,
+ "loss": 3.671501874923706,
+ "step": 2710
+ },
+ {
+ "epoch": 37.65705548274356,
+ "grad_norm": 0.23279480636119843,
+ "learning_rate": 0.0006,
+ "loss": 3.6962859630584717,
+ "step": 2711
+ },
+ {
+ "epoch": 37.671035386631715,
+ "grad_norm": 0.23284408450126648,
+ "learning_rate": 0.0006,
+ "loss": 3.670231342315674,
+ "step": 2712
+ },
+ {
+ "epoch": 37.68501529051988,
+ "grad_norm": 0.21935738623142242,
+ "learning_rate": 0.0006,
+ "loss": 3.6908650398254395,
+ "step": 2713
+ },
+ {
+ "epoch": 37.69899519440804,
+ "grad_norm": 0.2072262167930603,
+ "learning_rate": 0.0006,
+ "loss": 3.7204506397247314,
+ "step": 2714
+ },
+ {
+ "epoch": 37.7129750982962,
+ "grad_norm": 0.22547709941864014,
+ "learning_rate": 0.0006,
+ "loss": 3.6740894317626953,
+ "step": 2715
+ },
+ {
+ "epoch": 37.72695500218436,
+ "grad_norm": 0.2460414469242096,
+ "learning_rate": 0.0006,
+ "loss": 3.6938390731811523,
+ "step": 2716
+ },
+ {
+ "epoch": 37.74093490607252,
+ "grad_norm": 0.24756456911563873,
+ "learning_rate": 0.0006,
+ "loss": 3.692173480987549,
+ "step": 2717
+ },
+ {
+ "epoch": 37.75491480996068,
+ "grad_norm": 0.20149244368076324,
+ "learning_rate": 0.0006,
+ "loss": 3.6677675247192383,
+ "step": 2718
+ },
+ {
+ "epoch": 37.768894713848844,
+ "grad_norm": 0.19834814965724945,
+ "learning_rate": 0.0006,
+ "loss": 3.6717336177825928,
+ "step": 2719
+ },
+ {
+ "epoch": 37.782874617737,
+ "grad_norm": 0.22929978370666504,
+ "learning_rate": 0.0006,
+ "loss": 3.6818275451660156,
+ "step": 2720
+ },
+ {
+ "epoch": 37.796854521625164,
+ "grad_norm": 0.23674434423446655,
+ "learning_rate": 0.0006,
+ "loss": 3.689767360687256,
+ "step": 2721
+ },
+ {
+ "epoch": 37.81083442551333,
+ "grad_norm": 0.22798952460289001,
+ "learning_rate": 0.0006,
+ "loss": 3.6928915977478027,
+ "step": 2722
+ },
+ {
+ "epoch": 37.824814329401484,
+ "grad_norm": 0.2270302027463913,
+ "learning_rate": 0.0006,
+ "loss": 3.6884233951568604,
+ "step": 2723
+ },
+ {
+ "epoch": 37.83879423328965,
+ "grad_norm": 0.23563820123672485,
+ "learning_rate": 0.0006,
+ "loss": 3.6962456703186035,
+ "step": 2724
+ },
+ {
+ "epoch": 37.8527741371778,
+ "grad_norm": 0.2240045815706253,
+ "learning_rate": 0.0006,
+ "loss": 3.6985082626342773,
+ "step": 2725
+ },
+ {
+ "epoch": 37.86675404106597,
+ "grad_norm": 0.21541155874729156,
+ "learning_rate": 0.0006,
+ "loss": 3.6960105895996094,
+ "step": 2726
+ },
+ {
+ "epoch": 37.88073394495413,
+ "grad_norm": 0.23257222771644592,
+ "learning_rate": 0.0006,
+ "loss": 3.667404890060425,
+ "step": 2727
+ },
+ {
+ "epoch": 37.89471384884229,
+ "grad_norm": 0.226792573928833,
+ "learning_rate": 0.0006,
+ "loss": 3.6549744606018066,
+ "step": 2728
+ },
+ {
+ "epoch": 37.90869375273045,
+ "grad_norm": 0.18993401527404785,
+ "learning_rate": 0.0006,
+ "loss": 3.6772334575653076,
+ "step": 2729
+ },
+ {
+ "epoch": 37.92267365661861,
+ "grad_norm": 0.20936095714569092,
+ "learning_rate": 0.0006,
+ "loss": 3.671116352081299,
+ "step": 2730
+ },
+ {
+ "epoch": 37.93665356050677,
+ "grad_norm": 0.2203974425792694,
+ "learning_rate": 0.0006,
+ "loss": 3.6549739837646484,
+ "step": 2731
+ },
+ {
+ "epoch": 37.95063346439493,
+ "grad_norm": 0.19504620134830475,
+ "learning_rate": 0.0006,
+ "loss": 3.6755447387695312,
+ "step": 2732
+ },
+ {
+ "epoch": 37.964613368283096,
+ "grad_norm": 0.2025984674692154,
+ "learning_rate": 0.0006,
+ "loss": 3.678955554962158,
+ "step": 2733
+ },
+ {
+ "epoch": 37.97859327217125,
+ "grad_norm": 0.21556107699871063,
+ "learning_rate": 0.0006,
+ "loss": 3.6680502891540527,
+ "step": 2734
+ },
+ {
+ "epoch": 37.992573176059416,
+ "grad_norm": 0.21011291444301605,
+ "learning_rate": 0.0006,
+ "loss": 3.672039031982422,
+ "step": 2735
+ },
+ {
+ "epoch": 38.0,
+ "grad_norm": 0.23710957169532776,
+ "learning_rate": 0.0006,
+ "loss": 3.6326794624328613,
+ "step": 2736
+ },
+ {
+ "epoch": 38.0,
+ "eval_loss": 3.990501880645752,
+ "eval_runtime": 43.8951,
+ "eval_samples_per_second": 55.633,
+ "eval_steps_per_second": 3.486,
+ "step": 2736
+ },
+ {
+ "epoch": 38.01397990388816,
+ "grad_norm": 0.20711326599121094,
+ "learning_rate": 0.0006,
+ "loss": 3.6364657878875732,
+ "step": 2737
+ },
+ {
+ "epoch": 38.02795980777632,
+ "grad_norm": 0.2250880002975464,
+ "learning_rate": 0.0006,
+ "loss": 3.637646436691284,
+ "step": 2738
+ },
+ {
+ "epoch": 38.04193971166448,
+ "grad_norm": 0.2448352724313736,
+ "learning_rate": 0.0006,
+ "loss": 3.63557767868042,
+ "step": 2739
+ },
+ {
+ "epoch": 38.05591961555265,
+ "grad_norm": 0.23031368851661682,
+ "learning_rate": 0.0006,
+ "loss": 3.627117395401001,
+ "step": 2740
+ },
+ {
+ "epoch": 38.0698995194408,
+ "grad_norm": 0.2045450210571289,
+ "learning_rate": 0.0006,
+ "loss": 3.6594958305358887,
+ "step": 2741
+ },
+ {
+ "epoch": 38.083879423328966,
+ "grad_norm": 0.21253496408462524,
+ "learning_rate": 0.0006,
+ "loss": 3.65494441986084,
+ "step": 2742
+ },
+ {
+ "epoch": 38.09785932721712,
+ "grad_norm": 0.20196112990379333,
+ "learning_rate": 0.0006,
+ "loss": 3.645289421081543,
+ "step": 2743
+ },
+ {
+ "epoch": 38.111839231105286,
+ "grad_norm": 0.20258229970932007,
+ "learning_rate": 0.0006,
+ "loss": 3.6698505878448486,
+ "step": 2744
+ },
+ {
+ "epoch": 38.12581913499345,
+ "grad_norm": 0.22182606160640717,
+ "learning_rate": 0.0006,
+ "loss": 3.6427698135375977,
+ "step": 2745
+ },
+ {
+ "epoch": 38.139799038881605,
+ "grad_norm": 0.21281519532203674,
+ "learning_rate": 0.0006,
+ "loss": 3.668337345123291,
+ "step": 2746
+ },
+ {
+ "epoch": 38.15377894276977,
+ "grad_norm": 0.21680216491222382,
+ "learning_rate": 0.0006,
+ "loss": 3.6362109184265137,
+ "step": 2747
+ },
+ {
+ "epoch": 38.16775884665793,
+ "grad_norm": 0.24396903812885284,
+ "learning_rate": 0.0006,
+ "loss": 3.660510540008545,
+ "step": 2748
+ },
+ {
+ "epoch": 38.18173875054609,
+ "grad_norm": 0.2546434700489044,
+ "learning_rate": 0.0006,
+ "loss": 3.6562418937683105,
+ "step": 2749
+ },
+ {
+ "epoch": 38.19571865443425,
+ "grad_norm": 0.22705447673797607,
+ "learning_rate": 0.0006,
+ "loss": 3.6801514625549316,
+ "step": 2750
+ },
+ {
+ "epoch": 38.20969855832241,
+ "grad_norm": 0.21516330540180206,
+ "learning_rate": 0.0006,
+ "loss": 3.6633429527282715,
+ "step": 2751
+ },
+ {
+ "epoch": 38.22367846221057,
+ "grad_norm": 0.20895853638648987,
+ "learning_rate": 0.0006,
+ "loss": 3.619896411895752,
+ "step": 2752
+ },
+ {
+ "epoch": 38.237658366098735,
+ "grad_norm": 0.21183325350284576,
+ "learning_rate": 0.0006,
+ "loss": 3.639491558074951,
+ "step": 2753
+ },
+ {
+ "epoch": 38.25163826998689,
+ "grad_norm": 0.21439522504806519,
+ "learning_rate": 0.0006,
+ "loss": 3.671931028366089,
+ "step": 2754
+ },
+ {
+ "epoch": 38.265618173875055,
+ "grad_norm": 0.2017785906791687,
+ "learning_rate": 0.0006,
+ "loss": 3.639533519744873,
+ "step": 2755
+ },
+ {
+ "epoch": 38.27959807776322,
+ "grad_norm": 0.20015068352222443,
+ "learning_rate": 0.0006,
+ "loss": 3.654262065887451,
+ "step": 2756
+ },
+ {
+ "epoch": 38.293577981651374,
+ "grad_norm": 0.21518948674201965,
+ "learning_rate": 0.0006,
+ "loss": 3.649919033050537,
+ "step": 2757
+ },
+ {
+ "epoch": 38.30755788553954,
+ "grad_norm": 0.21994580328464508,
+ "learning_rate": 0.0006,
+ "loss": 3.6756131649017334,
+ "step": 2758
+ },
+ {
+ "epoch": 38.3215377894277,
+ "grad_norm": 0.2053978443145752,
+ "learning_rate": 0.0006,
+ "loss": 3.651520252227783,
+ "step": 2759
+ },
+ {
+ "epoch": 38.33551769331586,
+ "grad_norm": 0.2066337615251541,
+ "learning_rate": 0.0006,
+ "loss": 3.6404507160186768,
+ "step": 2760
+ },
+ {
+ "epoch": 38.34949759720402,
+ "grad_norm": 0.20898301899433136,
+ "learning_rate": 0.0006,
+ "loss": 3.637200355529785,
+ "step": 2761
+ },
+ {
+ "epoch": 38.36347750109218,
+ "grad_norm": 0.19212259352207184,
+ "learning_rate": 0.0006,
+ "loss": 3.68394136428833,
+ "step": 2762
+ },
+ {
+ "epoch": 38.37745740498034,
+ "grad_norm": 0.2011883556842804,
+ "learning_rate": 0.0006,
+ "loss": 3.6494975090026855,
+ "step": 2763
+ },
+ {
+ "epoch": 38.391437308868504,
+ "grad_norm": 0.23072998225688934,
+ "learning_rate": 0.0006,
+ "loss": 3.6644320487976074,
+ "step": 2764
+ },
+ {
+ "epoch": 38.40541721275666,
+ "grad_norm": 0.2195347547531128,
+ "learning_rate": 0.0006,
+ "loss": 3.6666269302368164,
+ "step": 2765
+ },
+ {
+ "epoch": 38.419397116644824,
+ "grad_norm": 0.19820117950439453,
+ "learning_rate": 0.0006,
+ "loss": 3.690683364868164,
+ "step": 2766
+ },
+ {
+ "epoch": 38.43337702053299,
+ "grad_norm": 0.20381149649620056,
+ "learning_rate": 0.0006,
+ "loss": 3.6647756099700928,
+ "step": 2767
+ },
+ {
+ "epoch": 38.44735692442114,
+ "grad_norm": 0.19477297365665436,
+ "learning_rate": 0.0006,
+ "loss": 3.6419155597686768,
+ "step": 2768
+ },
+ {
+ "epoch": 38.46133682830931,
+ "grad_norm": 0.20118845999240875,
+ "learning_rate": 0.0006,
+ "loss": 3.678511142730713,
+ "step": 2769
+ },
+ {
+ "epoch": 38.47531673219746,
+ "grad_norm": 0.19538167119026184,
+ "learning_rate": 0.0006,
+ "loss": 3.632112503051758,
+ "step": 2770
+ },
+ {
+ "epoch": 38.489296636085626,
+ "grad_norm": 0.18136411905288696,
+ "learning_rate": 0.0006,
+ "loss": 3.6631078720092773,
+ "step": 2771
+ },
+ {
+ "epoch": 38.50327653997379,
+ "grad_norm": 0.1993526667356491,
+ "learning_rate": 0.0006,
+ "loss": 3.6800379753112793,
+ "step": 2772
+ },
+ {
+ "epoch": 38.517256443861946,
+ "grad_norm": 0.21409109234809875,
+ "learning_rate": 0.0006,
+ "loss": 3.6355738639831543,
+ "step": 2773
+ },
+ {
+ "epoch": 38.53123634775011,
+ "grad_norm": 0.20932911336421967,
+ "learning_rate": 0.0006,
+ "loss": 3.6639811992645264,
+ "step": 2774
+ },
+ {
+ "epoch": 38.54521625163827,
+ "grad_norm": 0.22266243398189545,
+ "learning_rate": 0.0006,
+ "loss": 3.6927733421325684,
+ "step": 2775
+ },
+ {
+ "epoch": 38.55919615552643,
+ "grad_norm": 0.22916539013385773,
+ "learning_rate": 0.0006,
+ "loss": 3.6381587982177734,
+ "step": 2776
+ },
+ {
+ "epoch": 38.57317605941459,
+ "grad_norm": 0.21507245302200317,
+ "learning_rate": 0.0006,
+ "loss": 3.6724753379821777,
+ "step": 2777
+ },
+ {
+ "epoch": 38.58715596330275,
+ "grad_norm": 0.21132487058639526,
+ "learning_rate": 0.0006,
+ "loss": 3.68450927734375,
+ "step": 2778
+ },
+ {
+ "epoch": 38.60113586719091,
+ "grad_norm": 0.2323923259973526,
+ "learning_rate": 0.0006,
+ "loss": 3.6917476654052734,
+ "step": 2779
+ },
+ {
+ "epoch": 38.615115771079076,
+ "grad_norm": 0.2862907648086548,
+ "learning_rate": 0.0006,
+ "loss": 3.6832518577575684,
+ "step": 2780
+ },
+ {
+ "epoch": 38.62909567496723,
+ "grad_norm": 0.28132742643356323,
+ "learning_rate": 0.0006,
+ "loss": 3.6619668006896973,
+ "step": 2781
+ },
+ {
+ "epoch": 38.643075578855395,
+ "grad_norm": 0.24933350086212158,
+ "learning_rate": 0.0006,
+ "loss": 3.6342711448669434,
+ "step": 2782
+ },
+ {
+ "epoch": 38.65705548274356,
+ "grad_norm": 0.23482646048069,
+ "learning_rate": 0.0006,
+ "loss": 3.667548656463623,
+ "step": 2783
+ },
+ {
+ "epoch": 38.671035386631715,
+ "grad_norm": 0.2529793083667755,
+ "learning_rate": 0.0006,
+ "loss": 3.6613709926605225,
+ "step": 2784
+ },
+ {
+ "epoch": 38.68501529051988,
+ "grad_norm": 0.2306097447872162,
+ "learning_rate": 0.0006,
+ "loss": 3.653153419494629,
+ "step": 2785
+ },
+ {
+ "epoch": 38.69899519440804,
+ "grad_norm": 0.21787869930267334,
+ "learning_rate": 0.0006,
+ "loss": 3.6991848945617676,
+ "step": 2786
+ },
+ {
+ "epoch": 38.7129750982962,
+ "grad_norm": 0.24818190932273865,
+ "learning_rate": 0.0006,
+ "loss": 3.664022445678711,
+ "step": 2787
+ },
+ {
+ "epoch": 38.72695500218436,
+ "grad_norm": 0.23205995559692383,
+ "learning_rate": 0.0006,
+ "loss": 3.656064987182617,
+ "step": 2788
+ },
+ {
+ "epoch": 38.74093490607252,
+ "grad_norm": 0.2268102467060089,
+ "learning_rate": 0.0006,
+ "loss": 3.678421974182129,
+ "step": 2789
+ },
+ {
+ "epoch": 38.75491480996068,
+ "grad_norm": 0.22549907863140106,
+ "learning_rate": 0.0006,
+ "loss": 3.6483302116394043,
+ "step": 2790
+ },
+ {
+ "epoch": 38.768894713848844,
+ "grad_norm": 0.2293119877576828,
+ "learning_rate": 0.0006,
+ "loss": 3.646825075149536,
+ "step": 2791
+ },
+ {
+ "epoch": 38.782874617737,
+ "grad_norm": 0.21879418194293976,
+ "learning_rate": 0.0006,
+ "loss": 3.682124614715576,
+ "step": 2792
+ },
+ {
+ "epoch": 38.796854521625164,
+ "grad_norm": 0.22012849152088165,
+ "learning_rate": 0.0006,
+ "loss": 3.6590089797973633,
+ "step": 2793
+ },
+ {
+ "epoch": 38.81083442551333,
+ "grad_norm": 0.2449142336845398,
+ "learning_rate": 0.0006,
+ "loss": 3.7053747177124023,
+ "step": 2794
+ },
+ {
+ "epoch": 38.824814329401484,
+ "grad_norm": 0.2677161395549774,
+ "learning_rate": 0.0006,
+ "loss": 3.666144371032715,
+ "step": 2795
+ },
+ {
+ "epoch": 38.83879423328965,
+ "grad_norm": 0.2654981315135956,
+ "learning_rate": 0.0006,
+ "loss": 3.637512683868408,
+ "step": 2796
+ },
+ {
+ "epoch": 38.8527741371778,
+ "grad_norm": 0.23169654607772827,
+ "learning_rate": 0.0006,
+ "loss": 3.6885948181152344,
+ "step": 2797
+ },
+ {
+ "epoch": 38.86675404106597,
+ "grad_norm": 0.22195108234882355,
+ "learning_rate": 0.0006,
+ "loss": 3.6597604751586914,
+ "step": 2798
+ },
+ {
+ "epoch": 38.88073394495413,
+ "grad_norm": 0.23703525960445404,
+ "learning_rate": 0.0006,
+ "loss": 3.6808712482452393,
+ "step": 2799
+ },
+ {
+ "epoch": 38.89471384884229,
+ "grad_norm": 0.24711088836193085,
+ "learning_rate": 0.0006,
+ "loss": 3.733792781829834,
+ "step": 2800
+ },
+ {
+ "epoch": 38.90869375273045,
+ "grad_norm": 0.216362863779068,
+ "learning_rate": 0.0006,
+ "loss": 3.670599937438965,
+ "step": 2801
+ },
+ {
+ "epoch": 38.92267365661861,
+ "grad_norm": 0.19483810663223267,
+ "learning_rate": 0.0006,
+ "loss": 3.6965198516845703,
+ "step": 2802
+ },
+ {
+ "epoch": 38.93665356050677,
+ "grad_norm": 0.1941208392381668,
+ "learning_rate": 0.0006,
+ "loss": 3.678022861480713,
+ "step": 2803
+ },
+ {
+ "epoch": 38.95063346439493,
+ "grad_norm": 0.1919465959072113,
+ "learning_rate": 0.0006,
+ "loss": 3.6763226985931396,
+ "step": 2804
+ },
+ {
+ "epoch": 38.964613368283096,
+ "grad_norm": 0.2003280073404312,
+ "learning_rate": 0.0006,
+ "loss": 3.670313835144043,
+ "step": 2805
+ },
+ {
+ "epoch": 38.97859327217125,
+ "grad_norm": 0.198478564620018,
+ "learning_rate": 0.0006,
+ "loss": 3.675569772720337,
+ "step": 2806
+ },
+ {
+ "epoch": 38.992573176059416,
+ "grad_norm": 0.23692303895950317,
+ "learning_rate": 0.0006,
+ "loss": 3.696561336517334,
+ "step": 2807
+ },
+ {
+ "epoch": 39.0,
+ "grad_norm": 0.3208145797252655,
+ "learning_rate": 0.0006,
+ "loss": 3.6791436672210693,
+ "step": 2808
+ },
+ {
+ "epoch": 39.0,
+ "eval_loss": 4.0079450607299805,
+ "eval_runtime": 43.8573,
+ "eval_samples_per_second": 55.681,
+ "eval_steps_per_second": 3.489,
+ "step": 2808
+ },
+ {
+ "epoch": 39.01397990388816,
+ "grad_norm": 0.28338733315467834,
+ "learning_rate": 0.0006,
+ "loss": 3.6277060508728027,
+ "step": 2809
+ },
+ {
+ "epoch": 39.02795980777632,
+ "grad_norm": 0.22057899832725525,
+ "learning_rate": 0.0006,
+ "loss": 3.6132822036743164,
+ "step": 2810
+ },
+ {
+ "epoch": 39.04193971166448,
+ "grad_norm": 0.20630282163619995,
+ "learning_rate": 0.0006,
+ "loss": 3.6143927574157715,
+ "step": 2811
+ },
+ {
+ "epoch": 39.05591961555265,
+ "grad_norm": 0.2178523689508438,
+ "learning_rate": 0.0006,
+ "loss": 3.6304664611816406,
+ "step": 2812
+ },
+ {
+ "epoch": 39.0698995194408,
+ "grad_norm": 0.19613824784755707,
+ "learning_rate": 0.0006,
+ "loss": 3.6137919425964355,
+ "step": 2813
+ },
+ {
+ "epoch": 39.083879423328966,
+ "grad_norm": 0.2047276794910431,
+ "learning_rate": 0.0006,
+ "loss": 3.6854846477508545,
+ "step": 2814
+ },
+ {
+ "epoch": 39.09785932721712,
+ "grad_norm": 0.20082715153694153,
+ "learning_rate": 0.0006,
+ "loss": 3.632091522216797,
+ "step": 2815
+ },
+ {
+ "epoch": 39.111839231105286,
+ "grad_norm": 0.21746563911437988,
+ "learning_rate": 0.0006,
+ "loss": 3.640477180480957,
+ "step": 2816
+ },
+ {
+ "epoch": 39.12581913499345,
+ "grad_norm": 0.2128882110118866,
+ "learning_rate": 0.0006,
+ "loss": 3.643984317779541,
+ "step": 2817
+ },
+ {
+ "epoch": 39.139799038881605,
+ "grad_norm": 0.2110479772090912,
+ "learning_rate": 0.0006,
+ "loss": 3.6328823566436768,
+ "step": 2818
+ },
+ {
+ "epoch": 39.15377894276977,
+ "grad_norm": 0.22304436564445496,
+ "learning_rate": 0.0006,
+ "loss": 3.6669845581054688,
+ "step": 2819
+ },
+ {
+ "epoch": 39.16775884665793,
+ "grad_norm": 0.22310666739940643,
+ "learning_rate": 0.0006,
+ "loss": 3.609743595123291,
+ "step": 2820
+ },
+ {
+ "epoch": 39.18173875054609,
+ "grad_norm": 0.21002045273780823,
+ "learning_rate": 0.0006,
+ "loss": 3.601900815963745,
+ "step": 2821
+ },
+ {
+ "epoch": 39.19571865443425,
+ "grad_norm": 0.20531952381134033,
+ "learning_rate": 0.0006,
+ "loss": 3.6405060291290283,
+ "step": 2822
+ },
+ {
+ "epoch": 39.20969855832241,
+ "grad_norm": 0.20646385848522186,
+ "learning_rate": 0.0006,
+ "loss": 3.669617176055908,
+ "step": 2823
+ },
+ {
+ "epoch": 39.22367846221057,
+ "grad_norm": 0.2553980350494385,
+ "learning_rate": 0.0006,
+ "loss": 3.642709255218506,
+ "step": 2824
+ },
+ {
+ "epoch": 39.237658366098735,
+ "grad_norm": 0.2753220498561859,
+ "learning_rate": 0.0006,
+ "loss": 3.668405055999756,
+ "step": 2825
+ },
+ {
+ "epoch": 39.25163826998689,
+ "grad_norm": 0.2425055354833603,
+ "learning_rate": 0.0006,
+ "loss": 3.659559726715088,
+ "step": 2826
+ },
+ {
+ "epoch": 39.265618173875055,
+ "grad_norm": 0.2199426293373108,
+ "learning_rate": 0.0006,
+ "loss": 3.6466197967529297,
+ "step": 2827
+ },
+ {
+ "epoch": 39.27959807776322,
+ "grad_norm": 0.221355602145195,
+ "learning_rate": 0.0006,
+ "loss": 3.639418125152588,
+ "step": 2828
+ },
+ {
+ "epoch": 39.293577981651374,
+ "grad_norm": 0.20777100324630737,
+ "learning_rate": 0.0006,
+ "loss": 3.68102765083313,
+ "step": 2829
+ },
+ {
+ "epoch": 39.30755788553954,
+ "grad_norm": 0.20557557046413422,
+ "learning_rate": 0.0006,
+ "loss": 3.663064956665039,
+ "step": 2830
+ },
+ {
+ "epoch": 39.3215377894277,
+ "grad_norm": 0.2385585904121399,
+ "learning_rate": 0.0006,
+ "loss": 3.6598849296569824,
+ "step": 2831
+ },
+ {
+ "epoch": 39.33551769331586,
+ "grad_norm": 0.25222650170326233,
+ "learning_rate": 0.0006,
+ "loss": 3.635199546813965,
+ "step": 2832
+ },
+ {
+ "epoch": 39.34949759720402,
+ "grad_norm": 0.22894687950611115,
+ "learning_rate": 0.0006,
+ "loss": 3.6100258827209473,
+ "step": 2833
+ },
+ {
+ "epoch": 39.36347750109218,
+ "grad_norm": 0.22945865988731384,
+ "learning_rate": 0.0006,
+ "loss": 3.63069748878479,
+ "step": 2834
+ },
+ {
+ "epoch": 39.37745740498034,
+ "grad_norm": 0.2466309368610382,
+ "learning_rate": 0.0006,
+ "loss": 3.6615123748779297,
+ "step": 2835
+ },
+ {
+ "epoch": 39.391437308868504,
+ "grad_norm": 0.23845571279525757,
+ "learning_rate": 0.0006,
+ "loss": 3.655045509338379,
+ "step": 2836
+ },
+ {
+ "epoch": 39.40541721275666,
+ "grad_norm": 0.20273560285568237,
+ "learning_rate": 0.0006,
+ "loss": 3.6497647762298584,
+ "step": 2837
+ },
+ {
+ "epoch": 39.419397116644824,
+ "grad_norm": 0.19820313155651093,
+ "learning_rate": 0.0006,
+ "loss": 3.6728386878967285,
+ "step": 2838
+ },
+ {
+ "epoch": 39.43337702053299,
+ "grad_norm": 0.21581435203552246,
+ "learning_rate": 0.0006,
+ "loss": 3.660247325897217,
+ "step": 2839
+ },
+ {
+ "epoch": 39.44735692442114,
+ "grad_norm": 0.20559731125831604,
+ "learning_rate": 0.0006,
+ "loss": 3.6244559288024902,
+ "step": 2840
+ },
+ {
+ "epoch": 39.46133682830931,
+ "grad_norm": 0.22041910886764526,
+ "learning_rate": 0.0006,
+ "loss": 3.6577587127685547,
+ "step": 2841
+ },
+ {
+ "epoch": 39.47531673219746,
+ "grad_norm": 0.1966651976108551,
+ "learning_rate": 0.0006,
+ "loss": 3.673975944519043,
+ "step": 2842
+ },
+ {
+ "epoch": 39.489296636085626,
+ "grad_norm": 0.19127163290977478,
+ "learning_rate": 0.0006,
+ "loss": 3.7022414207458496,
+ "step": 2843
+ },
+ {
+ "epoch": 39.50327653997379,
+ "grad_norm": 0.20260316133499146,
+ "learning_rate": 0.0006,
+ "loss": 3.6155128479003906,
+ "step": 2844
+ },
+ {
+ "epoch": 39.517256443861946,
+ "grad_norm": 0.2302546352148056,
+ "learning_rate": 0.0006,
+ "loss": 3.670212984085083,
+ "step": 2845
+ },
+ {
+ "epoch": 39.53123634775011,
+ "grad_norm": 0.2512998878955841,
+ "learning_rate": 0.0006,
+ "loss": 3.6257572174072266,
+ "step": 2846
+ },
+ {
+ "epoch": 39.54521625163827,
+ "grad_norm": 0.24780063331127167,
+ "learning_rate": 0.0006,
+ "loss": 3.6458964347839355,
+ "step": 2847
+ },
+ {
+ "epoch": 39.55919615552643,
+ "grad_norm": 0.21305061876773834,
+ "learning_rate": 0.0006,
+ "loss": 3.666834831237793,
+ "step": 2848
+ },
+ {
+ "epoch": 39.57317605941459,
+ "grad_norm": 0.20699542760849,
+ "learning_rate": 0.0006,
+ "loss": 3.660571813583374,
+ "step": 2849
+ },
+ {
+ "epoch": 39.58715596330275,
+ "grad_norm": 0.20799173414707184,
+ "learning_rate": 0.0006,
+ "loss": 3.649744987487793,
+ "step": 2850
+ },
+ {
+ "epoch": 39.60113586719091,
+ "grad_norm": 0.20118695497512817,
+ "learning_rate": 0.0006,
+ "loss": 3.663865089416504,
+ "step": 2851
+ },
+ {
+ "epoch": 39.615115771079076,
+ "grad_norm": 0.2019277960062027,
+ "learning_rate": 0.0006,
+ "loss": 3.6600584983825684,
+ "step": 2852
+ },
+ {
+ "epoch": 39.62909567496723,
+ "grad_norm": 0.2093067765235901,
+ "learning_rate": 0.0006,
+ "loss": 3.6926870346069336,
+ "step": 2853
+ },
+ {
+ "epoch": 39.643075578855395,
+ "grad_norm": 0.2280927449464798,
+ "learning_rate": 0.0006,
+ "loss": 3.677157402038574,
+ "step": 2854
+ },
+ {
+ "epoch": 39.65705548274356,
+ "grad_norm": 0.219201922416687,
+ "learning_rate": 0.0006,
+ "loss": 3.6763858795166016,
+ "step": 2855
+ },
+ {
+ "epoch": 39.671035386631715,
+ "grad_norm": 0.2132134735584259,
+ "learning_rate": 0.0006,
+ "loss": 3.6853187084198,
+ "step": 2856
+ },
+ {
+ "epoch": 39.68501529051988,
+ "grad_norm": 0.1979551613330841,
+ "learning_rate": 0.0006,
+ "loss": 3.633850574493408,
+ "step": 2857
+ },
+ {
+ "epoch": 39.69899519440804,
+ "grad_norm": 0.2181098908185959,
+ "learning_rate": 0.0006,
+ "loss": 3.671356201171875,
+ "step": 2858
+ },
+ {
+ "epoch": 39.7129750982962,
+ "grad_norm": 0.21820145845413208,
+ "learning_rate": 0.0006,
+ "loss": 3.640101432800293,
+ "step": 2859
+ },
+ {
+ "epoch": 39.72695500218436,
+ "grad_norm": 0.22734931111335754,
+ "learning_rate": 0.0006,
+ "loss": 3.6326088905334473,
+ "step": 2860
+ },
+ {
+ "epoch": 39.74093490607252,
+ "grad_norm": 0.2407236248254776,
+ "learning_rate": 0.0006,
+ "loss": 3.665416955947876,
+ "step": 2861
+ },
+ {
+ "epoch": 39.75491480996068,
+ "grad_norm": 0.2507246434688568,
+ "learning_rate": 0.0006,
+ "loss": 3.6996266841888428,
+ "step": 2862
+ },
+ {
+ "epoch": 39.768894713848844,
+ "grad_norm": 0.2273668497800827,
+ "learning_rate": 0.0006,
+ "loss": 3.6786417961120605,
+ "step": 2863
+ },
+ {
+ "epoch": 39.782874617737,
+ "grad_norm": 0.20584821701049805,
+ "learning_rate": 0.0006,
+ "loss": 3.6539974212646484,
+ "step": 2864
+ },
+ {
+ "epoch": 39.796854521625164,
+ "grad_norm": 0.2327643632888794,
+ "learning_rate": 0.0006,
+ "loss": 3.681267738342285,
+ "step": 2865
+ },
+ {
+ "epoch": 39.81083442551333,
+ "grad_norm": 0.24243171513080597,
+ "learning_rate": 0.0006,
+ "loss": 3.6814589500427246,
+ "step": 2866
+ },
+ {
+ "epoch": 39.824814329401484,
+ "grad_norm": 0.21462969481945038,
+ "learning_rate": 0.0006,
+ "loss": 3.681321620941162,
+ "step": 2867
+ },
+ {
+ "epoch": 39.83879423328965,
+ "grad_norm": 0.20973211526870728,
+ "learning_rate": 0.0006,
+ "loss": 3.636986017227173,
+ "step": 2868
+ },
+ {
+ "epoch": 39.8527741371778,
+ "grad_norm": 0.20357508957386017,
+ "learning_rate": 0.0006,
+ "loss": 3.6664552688598633,
+ "step": 2869
+ },
+ {
+ "epoch": 39.86675404106597,
+ "grad_norm": 0.20389088988304138,
+ "learning_rate": 0.0006,
+ "loss": 3.6685709953308105,
+ "step": 2870
+ },
+ {
+ "epoch": 39.88073394495413,
+ "grad_norm": 0.21024158596992493,
+ "learning_rate": 0.0006,
+ "loss": 3.650658130645752,
+ "step": 2871
+ },
+ {
+ "epoch": 39.89471384884229,
+ "grad_norm": 0.19477778673171997,
+ "learning_rate": 0.0006,
+ "loss": 3.664834976196289,
+ "step": 2872
+ },
+ {
+ "epoch": 39.90869375273045,
+ "grad_norm": 0.22345365583896637,
+ "learning_rate": 0.0006,
+ "loss": 3.6652634143829346,
+ "step": 2873
+ },
+ {
+ "epoch": 39.92267365661861,
+ "grad_norm": 0.206041157245636,
+ "learning_rate": 0.0006,
+ "loss": 3.6649513244628906,
+ "step": 2874
+ },
+ {
+ "epoch": 39.93665356050677,
+ "grad_norm": 0.18524570763111115,
+ "learning_rate": 0.0006,
+ "loss": 3.665579080581665,
+ "step": 2875
+ },
+ {
+ "epoch": 39.95063346439493,
+ "grad_norm": 0.17730890214443207,
+ "learning_rate": 0.0006,
+ "loss": 3.6372880935668945,
+ "step": 2876
+ },
+ {
+ "epoch": 39.964613368283096,
+ "grad_norm": 0.213678777217865,
+ "learning_rate": 0.0006,
+ "loss": 3.681305408477783,
+ "step": 2877
+ },
+ {
+ "epoch": 39.97859327217125,
+ "grad_norm": 0.2595686614513397,
+ "learning_rate": 0.0006,
+ "loss": 3.6660351753234863,
+ "step": 2878
+ },
+ {
+ "epoch": 39.992573176059416,
+ "grad_norm": 0.22678600251674652,
+ "learning_rate": 0.0006,
+ "loss": 3.681619644165039,
+ "step": 2879
+ },
+ {
+ "epoch": 40.0,
+ "grad_norm": 0.2294030636548996,
+ "learning_rate": 0.0006,
+ "loss": 3.654366970062256,
+ "step": 2880
+ },
+ {
+ "epoch": 40.0,
+ "eval_loss": 3.9810431003570557,
+ "eval_runtime": 43.832,
+ "eval_samples_per_second": 55.713,
+ "eval_steps_per_second": 3.491,
+ "step": 2880
+ },
+ {
+ "epoch": 40.01397990388816,
+ "grad_norm": 0.220590278506279,
+ "learning_rate": 0.0006,
+ "loss": 3.6346259117126465,
+ "step": 2881
+ },
+ {
+ "epoch": 40.02795980777632,
+ "grad_norm": 0.2568257749080658,
+ "learning_rate": 0.0006,
+ "loss": 3.64436674118042,
+ "step": 2882
+ },
+ {
+ "epoch": 40.04193971166448,
+ "grad_norm": 0.2869258224964142,
+ "learning_rate": 0.0006,
+ "loss": 3.613316059112549,
+ "step": 2883
+ },
+ {
+ "epoch": 40.05591961555265,
+ "grad_norm": 0.3005172908306122,
+ "learning_rate": 0.0006,
+ "loss": 3.607339859008789,
+ "step": 2884
+ },
+ {
+ "epoch": 40.0698995194408,
+ "grad_norm": 0.28642305731773376,
+ "learning_rate": 0.0006,
+ "loss": 3.65151047706604,
+ "step": 2885
+ },
+ {
+ "epoch": 40.083879423328966,
+ "grad_norm": 0.24176034331321716,
+ "learning_rate": 0.0006,
+ "loss": 3.633742332458496,
+ "step": 2886
+ },
+ {
+ "epoch": 40.09785932721712,
+ "grad_norm": 0.2139386385679245,
+ "learning_rate": 0.0006,
+ "loss": 3.614245653152466,
+ "step": 2887
+ },
+ {
+ "epoch": 40.111839231105286,
+ "grad_norm": 0.28025752305984497,
+ "learning_rate": 0.0006,
+ "loss": 3.6415746212005615,
+ "step": 2888
+ },
+ {
+ "epoch": 40.12581913499345,
+ "grad_norm": 0.28534311056137085,
+ "learning_rate": 0.0006,
+ "loss": 3.6302027702331543,
+ "step": 2889
+ },
+ {
+ "epoch": 40.139799038881605,
+ "grad_norm": 0.26842808723449707,
+ "learning_rate": 0.0006,
+ "loss": 3.657480239868164,
+ "step": 2890
+ },
+ {
+ "epoch": 40.15377894276977,
+ "grad_norm": 0.25235965847969055,
+ "learning_rate": 0.0006,
+ "loss": 3.6843931674957275,
+ "step": 2891
+ },
+ {
+ "epoch": 40.16775884665793,
+ "grad_norm": 0.22192128002643585,
+ "learning_rate": 0.0006,
+ "loss": 3.6374592781066895,
+ "step": 2892
+ },
+ {
+ "epoch": 40.18173875054609,
+ "grad_norm": 0.21524523198604584,
+ "learning_rate": 0.0006,
+ "loss": 3.6052589416503906,
+ "step": 2893
+ },
+ {
+ "epoch": 40.19571865443425,
+ "grad_norm": 0.21011514961719513,
+ "learning_rate": 0.0006,
+ "loss": 3.62197208404541,
+ "step": 2894
+ },
+ {
+ "epoch": 40.20969855832241,
+ "grad_norm": 0.23187001049518585,
+ "learning_rate": 0.0006,
+ "loss": 3.6505377292633057,
+ "step": 2895
+ },
+ {
+ "epoch": 40.22367846221057,
+ "grad_norm": 0.21962887048721313,
+ "learning_rate": 0.0006,
+ "loss": 3.594991683959961,
+ "step": 2896
+ },
+ {
+ "epoch": 40.237658366098735,
+ "grad_norm": 0.23299361765384674,
+ "learning_rate": 0.0006,
+ "loss": 3.6370339393615723,
+ "step": 2897
+ },
+ {
+ "epoch": 40.25163826998689,
+ "grad_norm": 0.22504881024360657,
+ "learning_rate": 0.0006,
+ "loss": 3.6173815727233887,
+ "step": 2898
+ },
+ {
+ "epoch": 40.265618173875055,
+ "grad_norm": 0.21678344905376434,
+ "learning_rate": 0.0006,
+ "loss": 3.6231422424316406,
+ "step": 2899
+ },
+ {
+ "epoch": 40.27959807776322,
+ "grad_norm": 0.2184615284204483,
+ "learning_rate": 0.0006,
+ "loss": 3.6552987098693848,
+ "step": 2900
+ },
+ {
+ "epoch": 40.293577981651374,
+ "grad_norm": 0.2145485281944275,
+ "learning_rate": 0.0006,
+ "loss": 3.628025531768799,
+ "step": 2901
+ },
+ {
+ "epoch": 40.30755788553954,
+ "grad_norm": 0.21119336783885956,
+ "learning_rate": 0.0006,
+ "loss": 3.6511590480804443,
+ "step": 2902
+ },
+ {
+ "epoch": 40.3215377894277,
+ "grad_norm": 0.2158869504928589,
+ "learning_rate": 0.0006,
+ "loss": 3.6302051544189453,
+ "step": 2903
+ },
+ {
+ "epoch": 40.33551769331586,
+ "grad_norm": 0.22736455500125885,
+ "learning_rate": 0.0006,
+ "loss": 3.6678733825683594,
+ "step": 2904
+ },
+ {
+ "epoch": 40.34949759720402,
+ "grad_norm": 0.22723783552646637,
+ "learning_rate": 0.0006,
+ "loss": 3.632068634033203,
+ "step": 2905
+ },
+ {
+ "epoch": 40.36347750109218,
+ "grad_norm": 0.20606189966201782,
+ "learning_rate": 0.0006,
+ "loss": 3.6534624099731445,
+ "step": 2906
+ },
+ {
+ "epoch": 40.37745740498034,
+ "grad_norm": 0.21033786237239838,
+ "learning_rate": 0.0006,
+ "loss": 3.6194064617156982,
+ "step": 2907
+ },
+ {
+ "epoch": 40.391437308868504,
+ "grad_norm": 0.2175762951374054,
+ "learning_rate": 0.0006,
+ "loss": 3.637385368347168,
+ "step": 2908
+ },
+ {
+ "epoch": 40.40541721275666,
+ "grad_norm": 0.21063381433486938,
+ "learning_rate": 0.0006,
+ "loss": 3.656857967376709,
+ "step": 2909
+ },
+ {
+ "epoch": 40.419397116644824,
+ "grad_norm": 0.19982226192951202,
+ "learning_rate": 0.0006,
+ "loss": 3.655738353729248,
+ "step": 2910
+ },
+ {
+ "epoch": 40.43337702053299,
+ "grad_norm": 0.20608870685100555,
+ "learning_rate": 0.0006,
+ "loss": 3.6521377563476562,
+ "step": 2911
+ },
+ {
+ "epoch": 40.44735692442114,
+ "grad_norm": 0.19817334413528442,
+ "learning_rate": 0.0006,
+ "loss": 3.61527681350708,
+ "step": 2912
+ },
+ {
+ "epoch": 40.46133682830931,
+ "grad_norm": 0.20407769083976746,
+ "learning_rate": 0.0006,
+ "loss": 3.6668765544891357,
+ "step": 2913
+ },
+ {
+ "epoch": 40.47531673219746,
+ "grad_norm": 0.19874799251556396,
+ "learning_rate": 0.0006,
+ "loss": 3.6748533248901367,
+ "step": 2914
+ },
+ {
+ "epoch": 40.489296636085626,
+ "grad_norm": 0.1979510486125946,
+ "learning_rate": 0.0006,
+ "loss": 3.6141977310180664,
+ "step": 2915
+ },
+ {
+ "epoch": 40.50327653997379,
+ "grad_norm": 0.19811518490314484,
+ "learning_rate": 0.0006,
+ "loss": 3.6391215324401855,
+ "step": 2916
+ },
+ {
+ "epoch": 40.517256443861946,
+ "grad_norm": 0.20208898186683655,
+ "learning_rate": 0.0006,
+ "loss": 3.664179801940918,
+ "step": 2917
+ },
+ {
+ "epoch": 40.53123634775011,
+ "grad_norm": 0.22063760459423065,
+ "learning_rate": 0.0006,
+ "loss": 3.645388126373291,
+ "step": 2918
+ },
+ {
+ "epoch": 40.54521625163827,
+ "grad_norm": 0.23420891165733337,
+ "learning_rate": 0.0006,
+ "loss": 3.6424708366394043,
+ "step": 2919
+ },
+ {
+ "epoch": 40.55919615552643,
+ "grad_norm": 0.2263612151145935,
+ "learning_rate": 0.0006,
+ "loss": 3.6649224758148193,
+ "step": 2920
+ },
+ {
+ "epoch": 40.57317605941459,
+ "grad_norm": 0.22745433449745178,
+ "learning_rate": 0.0006,
+ "loss": 3.631586790084839,
+ "step": 2921
+ },
+ {
+ "epoch": 40.58715596330275,
+ "grad_norm": 0.22413238883018494,
+ "learning_rate": 0.0006,
+ "loss": 3.6666674613952637,
+ "step": 2922
+ },
+ {
+ "epoch": 40.60113586719091,
+ "grad_norm": 0.2178265005350113,
+ "learning_rate": 0.0006,
+ "loss": 3.6002111434936523,
+ "step": 2923
+ },
+ {
+ "epoch": 40.615115771079076,
+ "grad_norm": 0.21822521090507507,
+ "learning_rate": 0.0006,
+ "loss": 3.6538329124450684,
+ "step": 2924
+ },
+ {
+ "epoch": 40.62909567496723,
+ "grad_norm": 0.21728558838367462,
+ "learning_rate": 0.0006,
+ "loss": 3.651254653930664,
+ "step": 2925
+ },
+ {
+ "epoch": 40.643075578855395,
+ "grad_norm": 0.22377707064151764,
+ "learning_rate": 0.0006,
+ "loss": 3.6505789756774902,
+ "step": 2926
+ },
+ {
+ "epoch": 40.65705548274356,
+ "grad_norm": 0.2035706788301468,
+ "learning_rate": 0.0006,
+ "loss": 3.6471967697143555,
+ "step": 2927
+ },
+ {
+ "epoch": 40.671035386631715,
+ "grad_norm": 0.2011154741048813,
+ "learning_rate": 0.0006,
+ "loss": 3.6582741737365723,
+ "step": 2928
+ },
+ {
+ "epoch": 40.68501529051988,
+ "grad_norm": 0.23812712728977203,
+ "learning_rate": 0.0006,
+ "loss": 3.6388421058654785,
+ "step": 2929
+ },
+ {
+ "epoch": 40.69899519440804,
+ "grad_norm": 0.2117796689271927,
+ "learning_rate": 0.0006,
+ "loss": 3.688337802886963,
+ "step": 2930
+ },
+ {
+ "epoch": 40.7129750982962,
+ "grad_norm": 0.18440942466259003,
+ "learning_rate": 0.0006,
+ "loss": 3.6409997940063477,
+ "step": 2931
+ },
+ {
+ "epoch": 40.72695500218436,
+ "grad_norm": 0.19005917012691498,
+ "learning_rate": 0.0006,
+ "loss": 3.6760218143463135,
+ "step": 2932
+ },
+ {
+ "epoch": 40.74093490607252,
+ "grad_norm": 0.19982726871967316,
+ "learning_rate": 0.0006,
+ "loss": 3.6375021934509277,
+ "step": 2933
+ },
+ {
+ "epoch": 40.75491480996068,
+ "grad_norm": 0.19240257143974304,
+ "learning_rate": 0.0006,
+ "loss": 3.636807918548584,
+ "step": 2934
+ },
+ {
+ "epoch": 40.768894713848844,
+ "grad_norm": 0.20563434064388275,
+ "learning_rate": 0.0006,
+ "loss": 3.6667532920837402,
+ "step": 2935
+ },
+ {
+ "epoch": 40.782874617737,
+ "grad_norm": 0.26531776785850525,
+ "learning_rate": 0.0006,
+ "loss": 3.6332945823669434,
+ "step": 2936
+ },
+ {
+ "epoch": 40.796854521625164,
+ "grad_norm": 0.2766861021518707,
+ "learning_rate": 0.0006,
+ "loss": 3.6645212173461914,
+ "step": 2937
+ },
+ {
+ "epoch": 40.81083442551333,
+ "grad_norm": 0.235750213265419,
+ "learning_rate": 0.0006,
+ "loss": 3.67067813873291,
+ "step": 2938
+ },
+ {
+ "epoch": 40.824814329401484,
+ "grad_norm": 0.20778773725032806,
+ "learning_rate": 0.0006,
+ "loss": 3.6565768718719482,
+ "step": 2939
+ },
+ {
+ "epoch": 40.83879423328965,
+ "grad_norm": 0.187322199344635,
+ "learning_rate": 0.0006,
+ "loss": 3.620129346847534,
+ "step": 2940
+ },
+ {
+ "epoch": 40.8527741371778,
+ "grad_norm": 0.20576219260692596,
+ "learning_rate": 0.0006,
+ "loss": 3.6700220108032227,
+ "step": 2941
+ },
+ {
+ "epoch": 40.86675404106597,
+ "grad_norm": 0.2197345495223999,
+ "learning_rate": 0.0006,
+ "loss": 3.709311008453369,
+ "step": 2942
+ },
+ {
+ "epoch": 40.88073394495413,
+ "grad_norm": 0.20205345749855042,
+ "learning_rate": 0.0006,
+ "loss": 3.6646361351013184,
+ "step": 2943
+ },
+ {
+ "epoch": 40.89471384884229,
+ "grad_norm": 0.20026250183582306,
+ "learning_rate": 0.0006,
+ "loss": 3.6639604568481445,
+ "step": 2944
+ },
+ {
+ "epoch": 40.90869375273045,
+ "grad_norm": 0.224214106798172,
+ "learning_rate": 0.0006,
+ "loss": 3.6669654846191406,
+ "step": 2945
+ },
+ {
+ "epoch": 40.92267365661861,
+ "grad_norm": 0.2155972272157669,
+ "learning_rate": 0.0006,
+ "loss": 3.6494603157043457,
+ "step": 2946
+ },
+ {
+ "epoch": 40.93665356050677,
+ "grad_norm": 0.23038871586322784,
+ "learning_rate": 0.0006,
+ "loss": 3.6368541717529297,
+ "step": 2947
+ },
+ {
+ "epoch": 40.95063346439493,
+ "grad_norm": 0.2001815289258957,
+ "learning_rate": 0.0006,
+ "loss": 3.711174249649048,
+ "step": 2948
+ },
+ {
+ "epoch": 40.964613368283096,
+ "grad_norm": 0.20428860187530518,
+ "learning_rate": 0.0006,
+ "loss": 3.6342315673828125,
+ "step": 2949
+ },
+ {
+ "epoch": 40.97859327217125,
+ "grad_norm": 0.20724134147167206,
+ "learning_rate": 0.0006,
+ "loss": 3.679375171661377,
+ "step": 2950
+ },
+ {
+ "epoch": 40.992573176059416,
+ "grad_norm": 0.20723849534988403,
+ "learning_rate": 0.0006,
+ "loss": 3.6477675437927246,
+ "step": 2951
+ },
+ {
+ "epoch": 41.0,
+ "grad_norm": 0.23891447484493256,
+ "learning_rate": 0.0006,
+ "loss": 3.632950782775879,
+ "step": 2952
+ },
+ {
+ "epoch": 41.0,
+ "eval_loss": 3.9871256351470947,
+ "eval_runtime": 43.8367,
+ "eval_samples_per_second": 55.707,
+ "eval_steps_per_second": 3.49,
+ "step": 2952
+ },
+ {
+ "epoch": 41.01397990388816,
+ "grad_norm": 0.2258434295654297,
+ "learning_rate": 0.0006,
+ "loss": 3.631239414215088,
+ "step": 2953
+ },
+ {
+ "epoch": 41.02795980777632,
+ "grad_norm": 0.24932795763015747,
+ "learning_rate": 0.0006,
+ "loss": 3.601083517074585,
+ "step": 2954
+ },
+ {
+ "epoch": 41.04193971166448,
+ "grad_norm": 0.2688388228416443,
+ "learning_rate": 0.0006,
+ "loss": 3.655724048614502,
+ "step": 2955
+ },
+ {
+ "epoch": 41.05591961555265,
+ "grad_norm": 0.23880694806575775,
+ "learning_rate": 0.0006,
+ "loss": 3.617628812789917,
+ "step": 2956
+ },
+ {
+ "epoch": 41.0698995194408,
+ "grad_norm": 0.23784616589546204,
+ "learning_rate": 0.0006,
+ "loss": 3.6309127807617188,
+ "step": 2957
+ },
+ {
+ "epoch": 41.083879423328966,
+ "grad_norm": 0.22609511017799377,
+ "learning_rate": 0.0006,
+ "loss": 3.6138553619384766,
+ "step": 2958
+ },
+ {
+ "epoch": 41.09785932721712,
+ "grad_norm": 0.22936329245567322,
+ "learning_rate": 0.0006,
+ "loss": 3.6620094776153564,
+ "step": 2959
+ },
+ {
+ "epoch": 41.111839231105286,
+ "grad_norm": 0.23354190587997437,
+ "learning_rate": 0.0006,
+ "loss": 3.59959077835083,
+ "step": 2960
+ },
+ {
+ "epoch": 41.12581913499345,
+ "grad_norm": 0.2496265172958374,
+ "learning_rate": 0.0006,
+ "loss": 3.588359832763672,
+ "step": 2961
+ },
+ {
+ "epoch": 41.139799038881605,
+ "grad_norm": 0.23618635535240173,
+ "learning_rate": 0.0006,
+ "loss": 3.6341018676757812,
+ "step": 2962
+ },
+ {
+ "epoch": 41.15377894276977,
+ "grad_norm": 0.23724640905857086,
+ "learning_rate": 0.0006,
+ "loss": 3.6170616149902344,
+ "step": 2963
+ },
+ {
+ "epoch": 41.16775884665793,
+ "grad_norm": 0.20944789052009583,
+ "learning_rate": 0.0006,
+ "loss": 3.6158995628356934,
+ "step": 2964
+ },
+ {
+ "epoch": 41.18173875054609,
+ "grad_norm": 0.2089492678642273,
+ "learning_rate": 0.0006,
+ "loss": 3.586538314819336,
+ "step": 2965
+ },
+ {
+ "epoch": 41.19571865443425,
+ "grad_norm": 0.2370915710926056,
+ "learning_rate": 0.0006,
+ "loss": 3.599236011505127,
+ "step": 2966
+ },
+ {
+ "epoch": 41.20969855832241,
+ "grad_norm": 0.25749558210372925,
+ "learning_rate": 0.0006,
+ "loss": 3.631399154663086,
+ "step": 2967
+ },
+ {
+ "epoch": 41.22367846221057,
+ "grad_norm": 0.24754776060581207,
+ "learning_rate": 0.0006,
+ "loss": 3.6503920555114746,
+ "step": 2968
+ },
+ {
+ "epoch": 41.237658366098735,
+ "grad_norm": 0.22060903906822205,
+ "learning_rate": 0.0006,
+ "loss": 3.671673536300659,
+ "step": 2969
+ },
+ {
+ "epoch": 41.25163826998689,
+ "grad_norm": 0.19416594505310059,
+ "learning_rate": 0.0006,
+ "loss": 3.6158413887023926,
+ "step": 2970
+ },
+ {
+ "epoch": 41.265618173875055,
+ "grad_norm": 0.22596411406993866,
+ "learning_rate": 0.0006,
+ "loss": 3.64003849029541,
+ "step": 2971
+ },
+ {
+ "epoch": 41.27959807776322,
+ "grad_norm": 0.26785415410995483,
+ "learning_rate": 0.0006,
+ "loss": 3.642327308654785,
+ "step": 2972
+ },
+ {
+ "epoch": 41.293577981651374,
+ "grad_norm": 0.2988710403442383,
+ "learning_rate": 0.0006,
+ "loss": 3.6018929481506348,
+ "step": 2973
+ },
+ {
+ "epoch": 41.30755788553954,
+ "grad_norm": 0.2428133338689804,
+ "learning_rate": 0.0006,
+ "loss": 3.645270824432373,
+ "step": 2974
+ },
+ {
+ "epoch": 41.3215377894277,
+ "grad_norm": 0.20330320298671722,
+ "learning_rate": 0.0006,
+ "loss": 3.625495433807373,
+ "step": 2975
+ },
+ {
+ "epoch": 41.33551769331586,
+ "grad_norm": 0.2267787605524063,
+ "learning_rate": 0.0006,
+ "loss": 3.6469204425811768,
+ "step": 2976
+ },
+ {
+ "epoch": 41.34949759720402,
+ "grad_norm": 0.20702822506427765,
+ "learning_rate": 0.0006,
+ "loss": 3.644191265106201,
+ "step": 2977
+ },
+ {
+ "epoch": 41.36347750109218,
+ "grad_norm": 0.19693221151828766,
+ "learning_rate": 0.0006,
+ "loss": 3.591794967651367,
+ "step": 2978
+ },
+ {
+ "epoch": 41.37745740498034,
+ "grad_norm": 0.21193185448646545,
+ "learning_rate": 0.0006,
+ "loss": 3.6283936500549316,
+ "step": 2979
+ },
+ {
+ "epoch": 41.391437308868504,
+ "grad_norm": 0.20953163504600525,
+ "learning_rate": 0.0006,
+ "loss": 3.617565155029297,
+ "step": 2980
+ },
+ {
+ "epoch": 41.40541721275666,
+ "grad_norm": 0.21839819848537445,
+ "learning_rate": 0.0006,
+ "loss": 3.621209144592285,
+ "step": 2981
+ },
+ {
+ "epoch": 41.419397116644824,
+ "grad_norm": 0.2152671068906784,
+ "learning_rate": 0.0006,
+ "loss": 3.643197536468506,
+ "step": 2982
+ },
+ {
+ "epoch": 41.43337702053299,
+ "grad_norm": 0.2507486641407013,
+ "learning_rate": 0.0006,
+ "loss": 3.657499313354492,
+ "step": 2983
+ },
+ {
+ "epoch": 41.44735692442114,
+ "grad_norm": 0.24695388972759247,
+ "learning_rate": 0.0006,
+ "loss": 3.62170672416687,
+ "step": 2984
+ },
+ {
+ "epoch": 41.46133682830931,
+ "grad_norm": 0.22652822732925415,
+ "learning_rate": 0.0006,
+ "loss": 3.64322566986084,
+ "step": 2985
+ },
+ {
+ "epoch": 41.47531673219746,
+ "grad_norm": 0.2575881779193878,
+ "learning_rate": 0.0006,
+ "loss": 3.659621477127075,
+ "step": 2986
+ },
+ {
+ "epoch": 41.489296636085626,
+ "grad_norm": 0.24162672460079193,
+ "learning_rate": 0.0006,
+ "loss": 3.6527223587036133,
+ "step": 2987
+ },
+ {
+ "epoch": 41.50327653997379,
+ "grad_norm": 0.20930497348308563,
+ "learning_rate": 0.0006,
+ "loss": 3.6412787437438965,
+ "step": 2988
+ },
+ {
+ "epoch": 41.517256443861946,
+ "grad_norm": 0.20480819046497345,
+ "learning_rate": 0.0006,
+ "loss": 3.614767074584961,
+ "step": 2989
+ },
+ {
+ "epoch": 41.53123634775011,
+ "grad_norm": 0.20015820860862732,
+ "learning_rate": 0.0006,
+ "loss": 3.6512045860290527,
+ "step": 2990
+ },
+ {
+ "epoch": 41.54521625163827,
+ "grad_norm": 0.20220743119716644,
+ "learning_rate": 0.0006,
+ "loss": 3.6732325553894043,
+ "step": 2991
+ },
+ {
+ "epoch": 41.55919615552643,
+ "grad_norm": 0.20505326986312866,
+ "learning_rate": 0.0006,
+ "loss": 3.6374664306640625,
+ "step": 2992
+ },
+ {
+ "epoch": 41.57317605941459,
+ "grad_norm": 0.19423344731330872,
+ "learning_rate": 0.0006,
+ "loss": 3.6564126014709473,
+ "step": 2993
+ },
+ {
+ "epoch": 41.58715596330275,
+ "grad_norm": 0.19284583628177643,
+ "learning_rate": 0.0006,
+ "loss": 3.6460509300231934,
+ "step": 2994
+ },
+ {
+ "epoch": 41.60113586719091,
+ "grad_norm": 0.18488959968090057,
+ "learning_rate": 0.0006,
+ "loss": 3.632859468460083,
+ "step": 2995
+ },
+ {
+ "epoch": 41.615115771079076,
+ "grad_norm": 0.18816296756267548,
+ "learning_rate": 0.0006,
+ "loss": 3.5958361625671387,
+ "step": 2996
+ },
+ {
+ "epoch": 41.62909567496723,
+ "grad_norm": 0.18987809121608734,
+ "learning_rate": 0.0006,
+ "loss": 3.6330695152282715,
+ "step": 2997
+ },
+ {
+ "epoch": 41.643075578855395,
+ "grad_norm": 0.18999919295310974,
+ "learning_rate": 0.0006,
+ "loss": 3.6486730575561523,
+ "step": 2998
+ },
+ {
+ "epoch": 41.65705548274356,
+ "grad_norm": 0.20190183818340302,
+ "learning_rate": 0.0006,
+ "loss": 3.6564230918884277,
+ "step": 2999
+ },
+ {
+ "epoch": 41.671035386631715,
+ "grad_norm": 0.20331363379955292,
+ "learning_rate": 0.0006,
+ "loss": 3.6789698600769043,
+ "step": 3000
+ },
+ {
+ "epoch": 41.68501529051988,
+ "grad_norm": 0.21599505841732025,
+ "learning_rate": 0.0006,
+ "loss": 3.6544511318206787,
+ "step": 3001
+ },
+ {
+ "epoch": 41.69899519440804,
+ "grad_norm": 0.21123184263706207,
+ "learning_rate": 0.0006,
+ "loss": 3.6506948471069336,
+ "step": 3002
+ },
+ {
+ "epoch": 41.7129750982962,
+ "grad_norm": 0.21337002515792847,
+ "learning_rate": 0.0006,
+ "loss": 3.676854372024536,
+ "step": 3003
+ },
+ {
+ "epoch": 41.72695500218436,
+ "grad_norm": 0.22567597031593323,
+ "learning_rate": 0.0006,
+ "loss": 3.6467485427856445,
+ "step": 3004
+ },
+ {
+ "epoch": 41.74093490607252,
+ "grad_norm": 0.22923491895198822,
+ "learning_rate": 0.0006,
+ "loss": 3.663224697113037,
+ "step": 3005
+ },
+ {
+ "epoch": 41.75491480996068,
+ "grad_norm": 0.21511489152908325,
+ "learning_rate": 0.0006,
+ "loss": 3.6290054321289062,
+ "step": 3006
+ },
+ {
+ "epoch": 41.768894713848844,
+ "grad_norm": 0.23855915665626526,
+ "learning_rate": 0.0006,
+ "loss": 3.631225109100342,
+ "step": 3007
+ },
+ {
+ "epoch": 41.782874617737,
+ "grad_norm": 0.22771067917346954,
+ "learning_rate": 0.0006,
+ "loss": 3.652575731277466,
+ "step": 3008
+ },
+ {
+ "epoch": 41.796854521625164,
+ "grad_norm": 0.2006237953901291,
+ "learning_rate": 0.0006,
+ "loss": 3.6883468627929688,
+ "step": 3009
+ },
+ {
+ "epoch": 41.81083442551333,
+ "grad_norm": 0.21182459592819214,
+ "learning_rate": 0.0006,
+ "loss": 3.6443567276000977,
+ "step": 3010
+ },
+ {
+ "epoch": 41.824814329401484,
+ "grad_norm": 0.21083690226078033,
+ "learning_rate": 0.0006,
+ "loss": 3.66660475730896,
+ "step": 3011
+ },
+ {
+ "epoch": 41.83879423328965,
+ "grad_norm": 0.21232296526432037,
+ "learning_rate": 0.0006,
+ "loss": 3.6436524391174316,
+ "step": 3012
+ },
+ {
+ "epoch": 41.8527741371778,
+ "grad_norm": 0.2089361697435379,
+ "learning_rate": 0.0006,
+ "loss": 3.648113250732422,
+ "step": 3013
+ },
+ {
+ "epoch": 41.86675404106597,
+ "grad_norm": 0.21517033874988556,
+ "learning_rate": 0.0006,
+ "loss": 3.6382269859313965,
+ "step": 3014
+ },
+ {
+ "epoch": 41.88073394495413,
+ "grad_norm": 0.1930733323097229,
+ "learning_rate": 0.0006,
+ "loss": 3.639441967010498,
+ "step": 3015
+ },
+ {
+ "epoch": 41.89471384884229,
+ "grad_norm": 0.18282832205295563,
+ "learning_rate": 0.0006,
+ "loss": 3.652860164642334,
+ "step": 3016
+ },
+ {
+ "epoch": 41.90869375273045,
+ "grad_norm": 0.18649716675281525,
+ "learning_rate": 0.0006,
+ "loss": 3.6335558891296387,
+ "step": 3017
+ },
+ {
+ "epoch": 41.92267365661861,
+ "grad_norm": 0.18873754143714905,
+ "learning_rate": 0.0006,
+ "loss": 3.6743149757385254,
+ "step": 3018
+ },
+ {
+ "epoch": 41.93665356050677,
+ "grad_norm": 0.1937907189130783,
+ "learning_rate": 0.0006,
+ "loss": 3.6749300956726074,
+ "step": 3019
+ },
+ {
+ "epoch": 41.95063346439493,
+ "grad_norm": 0.20620854198932648,
+ "learning_rate": 0.0006,
+ "loss": 3.6591262817382812,
+ "step": 3020
+ },
+ {
+ "epoch": 41.964613368283096,
+ "grad_norm": 0.18541009724140167,
+ "learning_rate": 0.0006,
+ "loss": 3.647010326385498,
+ "step": 3021
+ },
+ {
+ "epoch": 41.97859327217125,
+ "grad_norm": 0.19224928319454193,
+ "learning_rate": 0.0006,
+ "loss": 3.629920482635498,
+ "step": 3022
+ },
+ {
+ "epoch": 41.992573176059416,
+ "grad_norm": 0.21286419034004211,
+ "learning_rate": 0.0006,
+ "loss": 3.6516964435577393,
+ "step": 3023
+ },
+ {
+ "epoch": 42.0,
+ "grad_norm": 0.24787360429763794,
+ "learning_rate": 0.0006,
+ "loss": 3.6378865242004395,
+ "step": 3024
+ },
+ {
+ "epoch": 42.0,
+ "eval_loss": 3.9910318851470947,
+ "eval_runtime": 43.7914,
+ "eval_samples_per_second": 55.764,
+ "eval_steps_per_second": 3.494,
+ "step": 3024
+ },
+ {
+ "epoch": 42.01397990388816,
+ "grad_norm": 0.21036255359649658,
+ "learning_rate": 0.0006,
+ "loss": 3.6604344844818115,
+ "step": 3025
+ },
+ {
+ "epoch": 42.02795980777632,
+ "grad_norm": 0.22240597009658813,
+ "learning_rate": 0.0006,
+ "loss": 3.6160645484924316,
+ "step": 3026
+ },
+ {
+ "epoch": 42.04193971166448,
+ "grad_norm": 0.2487850785255432,
+ "learning_rate": 0.0006,
+ "loss": 3.6293773651123047,
+ "step": 3027
+ },
+ {
+ "epoch": 42.05591961555265,
+ "grad_norm": 0.27058133482933044,
+ "learning_rate": 0.0006,
+ "loss": 3.5827436447143555,
+ "step": 3028
+ },
+ {
+ "epoch": 42.0698995194408,
+ "grad_norm": 0.25001782178878784,
+ "learning_rate": 0.0006,
+ "loss": 3.5833029747009277,
+ "step": 3029
+ },
+ {
+ "epoch": 42.083879423328966,
+ "grad_norm": 0.23811939358711243,
+ "learning_rate": 0.0006,
+ "loss": 3.605585813522339,
+ "step": 3030
+ },
+ {
+ "epoch": 42.09785932721712,
+ "grad_norm": 0.23279601335525513,
+ "learning_rate": 0.0006,
+ "loss": 3.607205867767334,
+ "step": 3031
+ },
+ {
+ "epoch": 42.111839231105286,
+ "grad_norm": 0.24410508573055267,
+ "learning_rate": 0.0006,
+ "loss": 3.621175765991211,
+ "step": 3032
+ },
+ {
+ "epoch": 42.12581913499345,
+ "grad_norm": 0.24782028794288635,
+ "learning_rate": 0.0006,
+ "loss": 3.6236867904663086,
+ "step": 3033
+ },
+ {
+ "epoch": 42.139799038881605,
+ "grad_norm": 0.2301972657442093,
+ "learning_rate": 0.0006,
+ "loss": 3.603853464126587,
+ "step": 3034
+ },
+ {
+ "epoch": 42.15377894276977,
+ "grad_norm": 0.21988637745380402,
+ "learning_rate": 0.0006,
+ "loss": 3.600142002105713,
+ "step": 3035
+ },
+ {
+ "epoch": 42.16775884665793,
+ "grad_norm": 0.22623786330223083,
+ "learning_rate": 0.0006,
+ "loss": 3.61971116065979,
+ "step": 3036
+ },
+ {
+ "epoch": 42.18173875054609,
+ "grad_norm": 0.21844688057899475,
+ "learning_rate": 0.0006,
+ "loss": 3.61320161819458,
+ "step": 3037
+ },
+ {
+ "epoch": 42.19571865443425,
+ "grad_norm": 0.20444536209106445,
+ "learning_rate": 0.0006,
+ "loss": 3.6179633140563965,
+ "step": 3038
+ },
+ {
+ "epoch": 42.20969855832241,
+ "grad_norm": 0.22862036526203156,
+ "learning_rate": 0.0006,
+ "loss": 3.605433940887451,
+ "step": 3039
+ },
+ {
+ "epoch": 42.22367846221057,
+ "grad_norm": 0.2906605005264282,
+ "learning_rate": 0.0006,
+ "loss": 3.6279449462890625,
+ "step": 3040
+ },
+ {
+ "epoch": 42.237658366098735,
+ "grad_norm": 0.29074418544769287,
+ "learning_rate": 0.0006,
+ "loss": 3.5959763526916504,
+ "step": 3041
+ },
+ {
+ "epoch": 42.25163826998689,
+ "grad_norm": 0.1994444876909256,
+ "learning_rate": 0.0006,
+ "loss": 3.5858588218688965,
+ "step": 3042
+ },
+ {
+ "epoch": 42.265618173875055,
+ "grad_norm": 0.20793452858924866,
+ "learning_rate": 0.0006,
+ "loss": 3.604630470275879,
+ "step": 3043
+ },
+ {
+ "epoch": 42.27959807776322,
+ "grad_norm": 0.2119535505771637,
+ "learning_rate": 0.0006,
+ "loss": 3.6287126541137695,
+ "step": 3044
+ },
+ {
+ "epoch": 42.293577981651374,
+ "grad_norm": 0.21092535555362701,
+ "learning_rate": 0.0006,
+ "loss": 3.646294593811035,
+ "step": 3045
+ },
+ {
+ "epoch": 42.30755788553954,
+ "grad_norm": 0.21474479138851166,
+ "learning_rate": 0.0006,
+ "loss": 3.6364355087280273,
+ "step": 3046
+ },
+ {
+ "epoch": 42.3215377894277,
+ "grad_norm": 0.21100781857967377,
+ "learning_rate": 0.0006,
+ "loss": 3.622528553009033,
+ "step": 3047
+ },
+ {
+ "epoch": 42.33551769331586,
+ "grad_norm": 0.20739853382110596,
+ "learning_rate": 0.0006,
+ "loss": 3.6261959075927734,
+ "step": 3048
+ },
+ {
+ "epoch": 42.34949759720402,
+ "grad_norm": 0.22264131903648376,
+ "learning_rate": 0.0006,
+ "loss": 3.6195173263549805,
+ "step": 3049
+ },
+ {
+ "epoch": 42.36347750109218,
+ "grad_norm": 0.23696285486221313,
+ "learning_rate": 0.0006,
+ "loss": 3.631103515625,
+ "step": 3050
+ },
+ {
+ "epoch": 42.37745740498034,
+ "grad_norm": 0.2124902606010437,
+ "learning_rate": 0.0006,
+ "loss": 3.6490437984466553,
+ "step": 3051
+ },
+ {
+ "epoch": 42.391437308868504,
+ "grad_norm": 0.18831083178520203,
+ "learning_rate": 0.0006,
+ "loss": 3.628459930419922,
+ "step": 3052
+ },
+ {
+ "epoch": 42.40541721275666,
+ "grad_norm": 0.20390060544013977,
+ "learning_rate": 0.0006,
+ "loss": 3.6348538398742676,
+ "step": 3053
+ },
+ {
+ "epoch": 42.419397116644824,
+ "grad_norm": 0.2205851823091507,
+ "learning_rate": 0.0006,
+ "loss": 3.6286797523498535,
+ "step": 3054
+ },
+ {
+ "epoch": 42.43337702053299,
+ "grad_norm": 0.21518434584140778,
+ "learning_rate": 0.0006,
+ "loss": 3.5918965339660645,
+ "step": 3055
+ },
+ {
+ "epoch": 42.44735692442114,
+ "grad_norm": 0.2342296987771988,
+ "learning_rate": 0.0006,
+ "loss": 3.6364407539367676,
+ "step": 3056
+ },
+ {
+ "epoch": 42.46133682830931,
+ "grad_norm": 0.2304094135761261,
+ "learning_rate": 0.0006,
+ "loss": 3.6561477184295654,
+ "step": 3057
+ },
+ {
+ "epoch": 42.47531673219746,
+ "grad_norm": 0.20882441103458405,
+ "learning_rate": 0.0006,
+ "loss": 3.611250638961792,
+ "step": 3058
+ },
+ {
+ "epoch": 42.489296636085626,
+ "grad_norm": 0.24346643686294556,
+ "learning_rate": 0.0006,
+ "loss": 3.580082416534424,
+ "step": 3059
+ },
+ {
+ "epoch": 42.50327653997379,
+ "grad_norm": 0.260711133480072,
+ "learning_rate": 0.0006,
+ "loss": 3.6179792881011963,
+ "step": 3060
+ },
+ {
+ "epoch": 42.517256443861946,
+ "grad_norm": 0.21223759651184082,
+ "learning_rate": 0.0006,
+ "loss": 3.6153154373168945,
+ "step": 3061
+ },
+ {
+ "epoch": 42.53123634775011,
+ "grad_norm": 0.21429137885570526,
+ "learning_rate": 0.0006,
+ "loss": 3.6003379821777344,
+ "step": 3062
+ },
+ {
+ "epoch": 42.54521625163827,
+ "grad_norm": 0.23659434914588928,
+ "learning_rate": 0.0006,
+ "loss": 3.6540589332580566,
+ "step": 3063
+ },
+ {
+ "epoch": 42.55919615552643,
+ "grad_norm": 0.280344158411026,
+ "learning_rate": 0.0006,
+ "loss": 3.6406192779541016,
+ "step": 3064
+ },
+ {
+ "epoch": 42.57317605941459,
+ "grad_norm": 0.2903953194618225,
+ "learning_rate": 0.0006,
+ "loss": 3.643479824066162,
+ "step": 3065
+ },
+ {
+ "epoch": 42.58715596330275,
+ "grad_norm": 0.24958311021327972,
+ "learning_rate": 0.0006,
+ "loss": 3.6320221424102783,
+ "step": 3066
+ },
+ {
+ "epoch": 42.60113586719091,
+ "grad_norm": 0.22525225579738617,
+ "learning_rate": 0.0006,
+ "loss": 3.641676425933838,
+ "step": 3067
+ },
+ {
+ "epoch": 42.615115771079076,
+ "grad_norm": 0.23025161027908325,
+ "learning_rate": 0.0006,
+ "loss": 3.6465210914611816,
+ "step": 3068
+ },
+ {
+ "epoch": 42.62909567496723,
+ "grad_norm": 0.21947328746318817,
+ "learning_rate": 0.0006,
+ "loss": 3.667877435684204,
+ "step": 3069
+ },
+ {
+ "epoch": 42.643075578855395,
+ "grad_norm": 0.22809366881847382,
+ "learning_rate": 0.0006,
+ "loss": 3.663166046142578,
+ "step": 3070
+ },
+ {
+ "epoch": 42.65705548274356,
+ "grad_norm": 0.21938708424568176,
+ "learning_rate": 0.0006,
+ "loss": 3.619001865386963,
+ "step": 3071
+ },
+ {
+ "epoch": 42.671035386631715,
+ "grad_norm": 0.231620192527771,
+ "learning_rate": 0.0006,
+ "loss": 3.652332305908203,
+ "step": 3072
+ },
+ {
+ "epoch": 42.68501529051988,
+ "grad_norm": 0.23683936893939972,
+ "learning_rate": 0.0006,
+ "loss": 3.6633410453796387,
+ "step": 3073
+ },
+ {
+ "epoch": 42.69899519440804,
+ "grad_norm": 0.23752044141292572,
+ "learning_rate": 0.0006,
+ "loss": 3.646064281463623,
+ "step": 3074
+ },
+ {
+ "epoch": 42.7129750982962,
+ "grad_norm": 0.23041971027851105,
+ "learning_rate": 0.0006,
+ "loss": 3.6431851387023926,
+ "step": 3075
+ },
+ {
+ "epoch": 42.72695500218436,
+ "grad_norm": 0.220438614487648,
+ "learning_rate": 0.0006,
+ "loss": 3.6499950885772705,
+ "step": 3076
+ },
+ {
+ "epoch": 42.74093490607252,
+ "grad_norm": 0.24297107756137848,
+ "learning_rate": 0.0006,
+ "loss": 3.6655125617980957,
+ "step": 3077
+ },
+ {
+ "epoch": 42.75491480996068,
+ "grad_norm": 0.21835893392562866,
+ "learning_rate": 0.0006,
+ "loss": 3.61672043800354,
+ "step": 3078
+ },
+ {
+ "epoch": 42.768894713848844,
+ "grad_norm": 0.22490793466567993,
+ "learning_rate": 0.0006,
+ "loss": 3.652825355529785,
+ "step": 3079
+ },
+ {
+ "epoch": 42.782874617737,
+ "grad_norm": 0.2246086746454239,
+ "learning_rate": 0.0006,
+ "loss": 3.6290056705474854,
+ "step": 3080
+ },
+ {
+ "epoch": 42.796854521625164,
+ "grad_norm": 0.21527042984962463,
+ "learning_rate": 0.0006,
+ "loss": 3.6587281227111816,
+ "step": 3081
+ },
+ {
+ "epoch": 42.81083442551333,
+ "grad_norm": 0.19586899876594543,
+ "learning_rate": 0.0006,
+ "loss": 3.639626979827881,
+ "step": 3082
+ },
+ {
+ "epoch": 42.824814329401484,
+ "grad_norm": 0.20881155133247375,
+ "learning_rate": 0.0006,
+ "loss": 3.6305861473083496,
+ "step": 3083
+ },
+ {
+ "epoch": 42.83879423328965,
+ "grad_norm": 0.20094981789588928,
+ "learning_rate": 0.0006,
+ "loss": 3.609614849090576,
+ "step": 3084
+ },
+ {
+ "epoch": 42.8527741371778,
+ "grad_norm": 0.21786150336265564,
+ "learning_rate": 0.0006,
+ "loss": 3.6423556804656982,
+ "step": 3085
+ },
+ {
+ "epoch": 42.86675404106597,
+ "grad_norm": 0.24493595957756042,
+ "learning_rate": 0.0006,
+ "loss": 3.631321668624878,
+ "step": 3086
+ },
+ {
+ "epoch": 42.88073394495413,
+ "grad_norm": 0.2437327355146408,
+ "learning_rate": 0.0006,
+ "loss": 3.6624178886413574,
+ "step": 3087
+ },
+ {
+ "epoch": 42.89471384884229,
+ "grad_norm": 0.21020543575286865,
+ "learning_rate": 0.0006,
+ "loss": 3.6567513942718506,
+ "step": 3088
+ },
+ {
+ "epoch": 42.90869375273045,
+ "grad_norm": 0.18977083265781403,
+ "learning_rate": 0.0006,
+ "loss": 3.6268601417541504,
+ "step": 3089
+ },
+ {
+ "epoch": 42.92267365661861,
+ "grad_norm": 0.2211192399263382,
+ "learning_rate": 0.0006,
+ "loss": 3.6690402030944824,
+ "step": 3090
+ },
+ {
+ "epoch": 42.93665356050677,
+ "grad_norm": 0.2695990204811096,
+ "learning_rate": 0.0006,
+ "loss": 3.667701244354248,
+ "step": 3091
+ },
+ {
+ "epoch": 42.95063346439493,
+ "grad_norm": 0.25910887122154236,
+ "learning_rate": 0.0006,
+ "loss": 3.627504587173462,
+ "step": 3092
+ },
+ {
+ "epoch": 42.964613368283096,
+ "grad_norm": 0.2466248720884323,
+ "learning_rate": 0.0006,
+ "loss": 3.6462182998657227,
+ "step": 3093
+ },
+ {
+ "epoch": 42.97859327217125,
+ "grad_norm": 0.22997038066387177,
+ "learning_rate": 0.0006,
+ "loss": 3.647430896759033,
+ "step": 3094
+ },
+ {
+ "epoch": 42.992573176059416,
+ "grad_norm": 0.1989113837480545,
+ "learning_rate": 0.0006,
+ "loss": 3.6502084732055664,
+ "step": 3095
+ },
+ {
+ "epoch": 43.0,
+ "grad_norm": 0.22976496815681458,
+ "learning_rate": 0.0006,
+ "loss": 3.6963884830474854,
+ "step": 3096
+ },
+ {
+ "epoch": 43.0,
+ "eval_loss": 3.9656779766082764,
+ "eval_runtime": 43.9281,
+ "eval_samples_per_second": 55.591,
+ "eval_steps_per_second": 3.483,
+ "step": 3096
+ },
+ {
+ "epoch": 43.01397990388816,
+ "grad_norm": 0.2862325608730316,
+ "learning_rate": 0.0006,
+ "loss": 3.581247568130493,
+ "step": 3097
+ },
+ {
+ "epoch": 43.02795980777632,
+ "grad_norm": 0.3867015540599823,
+ "learning_rate": 0.0006,
+ "loss": 3.611076593399048,
+ "step": 3098
+ },
+ {
+ "epoch": 43.04193971166448,
+ "grad_norm": 0.4139448404312134,
+ "learning_rate": 0.0006,
+ "loss": 3.625164031982422,
+ "step": 3099
+ },
+ {
+ "epoch": 43.05591961555265,
+ "grad_norm": 0.292407363653183,
+ "learning_rate": 0.0006,
+ "loss": 3.615546703338623,
+ "step": 3100
+ },
+ {
+ "epoch": 43.0698995194408,
+ "grad_norm": 0.24272124469280243,
+ "learning_rate": 0.0006,
+ "loss": 3.5965943336486816,
+ "step": 3101
+ },
+ {
+ "epoch": 43.083879423328966,
+ "grad_norm": 0.2761254608631134,
+ "learning_rate": 0.0006,
+ "loss": 3.605706214904785,
+ "step": 3102
+ },
+ {
+ "epoch": 43.09785932721712,
+ "grad_norm": 0.25232183933258057,
+ "learning_rate": 0.0006,
+ "loss": 3.6252012252807617,
+ "step": 3103
+ },
+ {
+ "epoch": 43.111839231105286,
+ "grad_norm": 0.248970165848732,
+ "learning_rate": 0.0006,
+ "loss": 3.6028337478637695,
+ "step": 3104
+ },
+ {
+ "epoch": 43.12581913499345,
+ "grad_norm": 0.22088921070098877,
+ "learning_rate": 0.0006,
+ "loss": 3.591614007949829,
+ "step": 3105
+ },
+ {
+ "epoch": 43.139799038881605,
+ "grad_norm": 0.21528655290603638,
+ "learning_rate": 0.0006,
+ "loss": 3.6237306594848633,
+ "step": 3106
+ },
+ {
+ "epoch": 43.15377894276977,
+ "grad_norm": 0.22799135744571686,
+ "learning_rate": 0.0006,
+ "loss": 3.5968847274780273,
+ "step": 3107
+ },
+ {
+ "epoch": 43.16775884665793,
+ "grad_norm": 0.23102127015590668,
+ "learning_rate": 0.0006,
+ "loss": 3.6046414375305176,
+ "step": 3108
+ },
+ {
+ "epoch": 43.18173875054609,
+ "grad_norm": 0.22876501083374023,
+ "learning_rate": 0.0006,
+ "loss": 3.635608196258545,
+ "step": 3109
+ },
+ {
+ "epoch": 43.19571865443425,
+ "grad_norm": 0.24920420348644257,
+ "learning_rate": 0.0006,
+ "loss": 3.628662109375,
+ "step": 3110
+ },
+ {
+ "epoch": 43.20969855832241,
+ "grad_norm": 0.2527749538421631,
+ "learning_rate": 0.0006,
+ "loss": 3.6109046936035156,
+ "step": 3111
+ },
+ {
+ "epoch": 43.22367846221057,
+ "grad_norm": 0.22529229521751404,
+ "learning_rate": 0.0006,
+ "loss": 3.6536030769348145,
+ "step": 3112
+ },
+ {
+ "epoch": 43.237658366098735,
+ "grad_norm": 0.20031821727752686,
+ "learning_rate": 0.0006,
+ "loss": 3.6328792572021484,
+ "step": 3113
+ },
+ {
+ "epoch": 43.25163826998689,
+ "grad_norm": 0.21075189113616943,
+ "learning_rate": 0.0006,
+ "loss": 3.6200530529022217,
+ "step": 3114
+ },
+ {
+ "epoch": 43.265618173875055,
+ "grad_norm": 0.21164856851100922,
+ "learning_rate": 0.0006,
+ "loss": 3.6276001930236816,
+ "step": 3115
+ },
+ {
+ "epoch": 43.27959807776322,
+ "grad_norm": 0.19306758046150208,
+ "learning_rate": 0.0006,
+ "loss": 3.608675956726074,
+ "step": 3116
+ },
+ {
+ "epoch": 43.293577981651374,
+ "grad_norm": 0.20288796722888947,
+ "learning_rate": 0.0006,
+ "loss": 3.6057004928588867,
+ "step": 3117
+ },
+ {
+ "epoch": 43.30755788553954,
+ "grad_norm": 0.1901484876871109,
+ "learning_rate": 0.0006,
+ "loss": 3.6191725730895996,
+ "step": 3118
+ },
+ {
+ "epoch": 43.3215377894277,
+ "grad_norm": 0.19438181817531586,
+ "learning_rate": 0.0006,
+ "loss": 3.5814337730407715,
+ "step": 3119
+ },
+ {
+ "epoch": 43.33551769331586,
+ "grad_norm": 0.19924484193325043,
+ "learning_rate": 0.0006,
+ "loss": 3.6168713569641113,
+ "step": 3120
+ },
+ {
+ "epoch": 43.34949759720402,
+ "grad_norm": 0.20757409930229187,
+ "learning_rate": 0.0006,
+ "loss": 3.6281509399414062,
+ "step": 3121
+ },
+ {
+ "epoch": 43.36347750109218,
+ "grad_norm": 0.22500184178352356,
+ "learning_rate": 0.0006,
+ "loss": 3.635101795196533,
+ "step": 3122
+ },
+ {
+ "epoch": 43.37745740498034,
+ "grad_norm": 0.22061555087566376,
+ "learning_rate": 0.0006,
+ "loss": 3.630622386932373,
+ "step": 3123
+ },
+ {
+ "epoch": 43.391437308868504,
+ "grad_norm": 0.2094152420759201,
+ "learning_rate": 0.0006,
+ "loss": 3.581803798675537,
+ "step": 3124
+ },
+ {
+ "epoch": 43.40541721275666,
+ "grad_norm": 0.19607678055763245,
+ "learning_rate": 0.0006,
+ "loss": 3.6149864196777344,
+ "step": 3125
+ },
+ {
+ "epoch": 43.419397116644824,
+ "grad_norm": 0.18985028564929962,
+ "learning_rate": 0.0006,
+ "loss": 3.6338040828704834,
+ "step": 3126
+ },
+ {
+ "epoch": 43.43337702053299,
+ "grad_norm": 0.20490778982639313,
+ "learning_rate": 0.0006,
+ "loss": 3.63275146484375,
+ "step": 3127
+ },
+ {
+ "epoch": 43.44735692442114,
+ "grad_norm": 0.24385297298431396,
+ "learning_rate": 0.0006,
+ "loss": 3.6412134170532227,
+ "step": 3128
+ },
+ {
+ "epoch": 43.46133682830931,
+ "grad_norm": 0.243601992726326,
+ "learning_rate": 0.0006,
+ "loss": 3.594238758087158,
+ "step": 3129
+ },
+ {
+ "epoch": 43.47531673219746,
+ "grad_norm": 0.21314913034439087,
+ "learning_rate": 0.0006,
+ "loss": 3.5962629318237305,
+ "step": 3130
+ },
+ {
+ "epoch": 43.489296636085626,
+ "grad_norm": 0.20499329268932343,
+ "learning_rate": 0.0006,
+ "loss": 3.61600923538208,
+ "step": 3131
+ },
+ {
+ "epoch": 43.50327653997379,
+ "grad_norm": 0.20199540257453918,
+ "learning_rate": 0.0006,
+ "loss": 3.638469934463501,
+ "step": 3132
+ },
+ {
+ "epoch": 43.517256443861946,
+ "grad_norm": 0.19932983815670013,
+ "learning_rate": 0.0006,
+ "loss": 3.619145393371582,
+ "step": 3133
+ },
+ {
+ "epoch": 43.53123634775011,
+ "grad_norm": 0.20401954650878906,
+ "learning_rate": 0.0006,
+ "loss": 3.643700122833252,
+ "step": 3134
+ },
+ {
+ "epoch": 43.54521625163827,
+ "grad_norm": 0.20784904062747955,
+ "learning_rate": 0.0006,
+ "loss": 3.619272232055664,
+ "step": 3135
+ },
+ {
+ "epoch": 43.55919615552643,
+ "grad_norm": 0.21003122627735138,
+ "learning_rate": 0.0006,
+ "loss": 3.629542827606201,
+ "step": 3136
+ },
+ {
+ "epoch": 43.57317605941459,
+ "grad_norm": 0.2220298945903778,
+ "learning_rate": 0.0006,
+ "loss": 3.655543804168701,
+ "step": 3137
+ },
+ {
+ "epoch": 43.58715596330275,
+ "grad_norm": 0.21159163117408752,
+ "learning_rate": 0.0006,
+ "loss": 3.6092495918273926,
+ "step": 3138
+ },
+ {
+ "epoch": 43.60113586719091,
+ "grad_norm": 0.19462746381759644,
+ "learning_rate": 0.0006,
+ "loss": 3.6447129249572754,
+ "step": 3139
+ },
+ {
+ "epoch": 43.615115771079076,
+ "grad_norm": 0.20523829758167267,
+ "learning_rate": 0.0006,
+ "loss": 3.6292669773101807,
+ "step": 3140
+ },
+ {
+ "epoch": 43.62909567496723,
+ "grad_norm": 0.2172321230173111,
+ "learning_rate": 0.0006,
+ "loss": 3.6144580841064453,
+ "step": 3141
+ },
+ {
+ "epoch": 43.643075578855395,
+ "grad_norm": 0.21751564741134644,
+ "learning_rate": 0.0006,
+ "loss": 3.6381068229675293,
+ "step": 3142
+ },
+ {
+ "epoch": 43.65705548274356,
+ "grad_norm": 0.1914236694574356,
+ "learning_rate": 0.0006,
+ "loss": 3.6392078399658203,
+ "step": 3143
+ },
+ {
+ "epoch": 43.671035386631715,
+ "grad_norm": 0.19792547821998596,
+ "learning_rate": 0.0006,
+ "loss": 3.6394457817077637,
+ "step": 3144
+ },
+ {
+ "epoch": 43.68501529051988,
+ "grad_norm": 0.2106214165687561,
+ "learning_rate": 0.0006,
+ "loss": 3.626147747039795,
+ "step": 3145
+ },
+ {
+ "epoch": 43.69899519440804,
+ "grad_norm": 0.21802955865859985,
+ "learning_rate": 0.0006,
+ "loss": 3.63372802734375,
+ "step": 3146
+ },
+ {
+ "epoch": 43.7129750982962,
+ "grad_norm": 0.21498727798461914,
+ "learning_rate": 0.0006,
+ "loss": 3.6193063259124756,
+ "step": 3147
+ },
+ {
+ "epoch": 43.72695500218436,
+ "grad_norm": 0.2176690250635147,
+ "learning_rate": 0.0006,
+ "loss": 3.6431519985198975,
+ "step": 3148
+ },
+ {
+ "epoch": 43.74093490607252,
+ "grad_norm": 0.26883506774902344,
+ "learning_rate": 0.0006,
+ "loss": 3.6216721534729004,
+ "step": 3149
+ },
+ {
+ "epoch": 43.75491480996068,
+ "grad_norm": 0.23485299944877625,
+ "learning_rate": 0.0006,
+ "loss": 3.6361191272735596,
+ "step": 3150
+ },
+ {
+ "epoch": 43.768894713848844,
+ "grad_norm": 0.20496341586112976,
+ "learning_rate": 0.0006,
+ "loss": 3.6258792877197266,
+ "step": 3151
+ },
+ {
+ "epoch": 43.782874617737,
+ "grad_norm": 0.21792510151863098,
+ "learning_rate": 0.0006,
+ "loss": 3.6522839069366455,
+ "step": 3152
+ },
+ {
+ "epoch": 43.796854521625164,
+ "grad_norm": 0.2589452564716339,
+ "learning_rate": 0.0006,
+ "loss": 3.651235580444336,
+ "step": 3153
+ },
+ {
+ "epoch": 43.81083442551333,
+ "grad_norm": 0.24883611500263214,
+ "learning_rate": 0.0006,
+ "loss": 3.6382546424865723,
+ "step": 3154
+ },
+ {
+ "epoch": 43.824814329401484,
+ "grad_norm": 0.22466720640659332,
+ "learning_rate": 0.0006,
+ "loss": 3.6232261657714844,
+ "step": 3155
+ },
+ {
+ "epoch": 43.83879423328965,
+ "grad_norm": 0.19477292895317078,
+ "learning_rate": 0.0006,
+ "loss": 3.6350135803222656,
+ "step": 3156
+ },
+ {
+ "epoch": 43.8527741371778,
+ "grad_norm": 0.20302540063858032,
+ "learning_rate": 0.0006,
+ "loss": 3.638143539428711,
+ "step": 3157
+ },
+ {
+ "epoch": 43.86675404106597,
+ "grad_norm": 0.2112276554107666,
+ "learning_rate": 0.0006,
+ "loss": 3.6415610313415527,
+ "step": 3158
+ },
+ {
+ "epoch": 43.88073394495413,
+ "grad_norm": 0.20544779300689697,
+ "learning_rate": 0.0006,
+ "loss": 3.6437134742736816,
+ "step": 3159
+ },
+ {
+ "epoch": 43.89471384884229,
+ "grad_norm": 0.2320292890071869,
+ "learning_rate": 0.0006,
+ "loss": 3.6178359985351562,
+ "step": 3160
+ },
+ {
+ "epoch": 43.90869375273045,
+ "grad_norm": 0.25862693786621094,
+ "learning_rate": 0.0006,
+ "loss": 3.618229389190674,
+ "step": 3161
+ },
+ {
+ "epoch": 43.92267365661861,
+ "grad_norm": 0.2741934061050415,
+ "learning_rate": 0.0006,
+ "loss": 3.6046690940856934,
+ "step": 3162
+ },
+ {
+ "epoch": 43.93665356050677,
+ "grad_norm": 0.24312593042850494,
+ "learning_rate": 0.0006,
+ "loss": 3.5835556983947754,
+ "step": 3163
+ },
+ {
+ "epoch": 43.95063346439493,
+ "grad_norm": 0.22174517810344696,
+ "learning_rate": 0.0006,
+ "loss": 3.6505162715911865,
+ "step": 3164
+ },
+ {
+ "epoch": 43.964613368283096,
+ "grad_norm": 0.22016975283622742,
+ "learning_rate": 0.0006,
+ "loss": 3.6385562419891357,
+ "step": 3165
+ },
+ {
+ "epoch": 43.97859327217125,
+ "grad_norm": 0.23034313321113586,
+ "learning_rate": 0.0006,
+ "loss": 3.6345865726470947,
+ "step": 3166
+ },
+ {
+ "epoch": 43.992573176059416,
+ "grad_norm": 0.21236231923103333,
+ "learning_rate": 0.0006,
+ "loss": 3.6337084770202637,
+ "step": 3167
+ },
+ {
+ "epoch": 44.0,
+ "grad_norm": 0.2344549298286438,
+ "learning_rate": 0.0006,
+ "loss": 3.677978515625,
+ "step": 3168
+ },
+ {
+ "epoch": 44.0,
+ "eval_loss": 3.9817888736724854,
+ "eval_runtime": 44.4396,
+ "eval_samples_per_second": 54.951,
+ "eval_steps_per_second": 3.443,
+ "step": 3168
+ },
+ {
+ "epoch": 44.01397990388816,
+ "grad_norm": 0.19790801405906677,
+ "learning_rate": 0.0006,
+ "loss": 3.590817451477051,
+ "step": 3169
+ },
+ {
+ "epoch": 44.02795980777632,
+ "grad_norm": 0.22922387719154358,
+ "learning_rate": 0.0006,
+ "loss": 3.643888473510742,
+ "step": 3170
+ },
+ {
+ "epoch": 44.04193971166448,
+ "grad_norm": 0.24750149250030518,
+ "learning_rate": 0.0006,
+ "loss": 3.596278667449951,
+ "step": 3171
+ },
+ {
+ "epoch": 44.05591961555265,
+ "grad_norm": 0.2511967420578003,
+ "learning_rate": 0.0006,
+ "loss": 3.6138253211975098,
+ "step": 3172
+ },
+ {
+ "epoch": 44.0698995194408,
+ "grad_norm": 0.2530326843261719,
+ "learning_rate": 0.0006,
+ "loss": 3.5710060596466064,
+ "step": 3173
+ },
+ {
+ "epoch": 44.083879423328966,
+ "grad_norm": 0.2629041373729706,
+ "learning_rate": 0.0006,
+ "loss": 3.61676025390625,
+ "step": 3174
+ },
+ {
+ "epoch": 44.09785932721712,
+ "grad_norm": 0.27373939752578735,
+ "learning_rate": 0.0006,
+ "loss": 3.613091230392456,
+ "step": 3175
+ },
+ {
+ "epoch": 44.111839231105286,
+ "grad_norm": 0.24354346096515656,
+ "learning_rate": 0.0006,
+ "loss": 3.6133360862731934,
+ "step": 3176
+ },
+ {
+ "epoch": 44.12581913499345,
+ "grad_norm": 0.21540892124176025,
+ "learning_rate": 0.0006,
+ "loss": 3.6367645263671875,
+ "step": 3177
+ },
+ {
+ "epoch": 44.139799038881605,
+ "grad_norm": 0.22251278162002563,
+ "learning_rate": 0.0006,
+ "loss": 3.6266322135925293,
+ "step": 3178
+ },
+ {
+ "epoch": 44.15377894276977,
+ "grad_norm": 0.26196029782295227,
+ "learning_rate": 0.0006,
+ "loss": 3.616487979888916,
+ "step": 3179
+ },
+ {
+ "epoch": 44.16775884665793,
+ "grad_norm": 0.2614341080188751,
+ "learning_rate": 0.0006,
+ "loss": 3.5902786254882812,
+ "step": 3180
+ },
+ {
+ "epoch": 44.18173875054609,
+ "grad_norm": 0.23517177999019623,
+ "learning_rate": 0.0006,
+ "loss": 3.610124111175537,
+ "step": 3181
+ },
+ {
+ "epoch": 44.19571865443425,
+ "grad_norm": 0.20091469585895538,
+ "learning_rate": 0.0006,
+ "loss": 3.5861713886260986,
+ "step": 3182
+ },
+ {
+ "epoch": 44.20969855832241,
+ "grad_norm": 0.19659830629825592,
+ "learning_rate": 0.0006,
+ "loss": 3.6157889366149902,
+ "step": 3183
+ },
+ {
+ "epoch": 44.22367846221057,
+ "grad_norm": 0.20690861344337463,
+ "learning_rate": 0.0006,
+ "loss": 3.5710649490356445,
+ "step": 3184
+ },
+ {
+ "epoch": 44.237658366098735,
+ "grad_norm": 0.2478247433900833,
+ "learning_rate": 0.0006,
+ "loss": 3.609031915664673,
+ "step": 3185
+ },
+ {
+ "epoch": 44.25163826998689,
+ "grad_norm": 0.2678471505641937,
+ "learning_rate": 0.0006,
+ "loss": 3.6412887573242188,
+ "step": 3186
+ },
+ {
+ "epoch": 44.265618173875055,
+ "grad_norm": 0.21856079995632172,
+ "learning_rate": 0.0006,
+ "loss": 3.6113123893737793,
+ "step": 3187
+ },
+ {
+ "epoch": 44.27959807776322,
+ "grad_norm": 0.23104850947856903,
+ "learning_rate": 0.0006,
+ "loss": 3.6022086143493652,
+ "step": 3188
+ },
+ {
+ "epoch": 44.293577981651374,
+ "grad_norm": 0.2380223423242569,
+ "learning_rate": 0.0006,
+ "loss": 3.598735809326172,
+ "step": 3189
+ },
+ {
+ "epoch": 44.30755788553954,
+ "grad_norm": 0.23005320131778717,
+ "learning_rate": 0.0006,
+ "loss": 3.595881938934326,
+ "step": 3190
+ },
+ {
+ "epoch": 44.3215377894277,
+ "grad_norm": 0.23327432572841644,
+ "learning_rate": 0.0006,
+ "loss": 3.6198601722717285,
+ "step": 3191
+ },
+ {
+ "epoch": 44.33551769331586,
+ "grad_norm": 0.2272268831729889,
+ "learning_rate": 0.0006,
+ "loss": 3.6135387420654297,
+ "step": 3192
+ },
+ {
+ "epoch": 44.34949759720402,
+ "grad_norm": 0.2518279552459717,
+ "learning_rate": 0.0006,
+ "loss": 3.6084556579589844,
+ "step": 3193
+ },
+ {
+ "epoch": 44.36347750109218,
+ "grad_norm": 0.27668607234954834,
+ "learning_rate": 0.0006,
+ "loss": 3.644430160522461,
+ "step": 3194
+ },
+ {
+ "epoch": 44.37745740498034,
+ "grad_norm": 0.26110342144966125,
+ "learning_rate": 0.0006,
+ "loss": 3.64072322845459,
+ "step": 3195
+ },
+ {
+ "epoch": 44.391437308868504,
+ "grad_norm": 0.22767964005470276,
+ "learning_rate": 0.0006,
+ "loss": 3.5570502281188965,
+ "step": 3196
+ },
+ {
+ "epoch": 44.40541721275666,
+ "grad_norm": 0.2199093997478485,
+ "learning_rate": 0.0006,
+ "loss": 3.558889150619507,
+ "step": 3197
+ },
+ {
+ "epoch": 44.419397116644824,
+ "grad_norm": 0.21653494238853455,
+ "learning_rate": 0.0006,
+ "loss": 3.6215333938598633,
+ "step": 3198
+ },
+ {
+ "epoch": 44.43337702053299,
+ "grad_norm": 0.1958773136138916,
+ "learning_rate": 0.0006,
+ "loss": 3.588468551635742,
+ "step": 3199
+ },
+ {
+ "epoch": 44.44735692442114,
+ "grad_norm": 0.20205403864383698,
+ "learning_rate": 0.0006,
+ "loss": 3.6109578609466553,
+ "step": 3200
+ },
+ {
+ "epoch": 44.46133682830931,
+ "grad_norm": 0.19632115960121155,
+ "learning_rate": 0.0006,
+ "loss": 3.634315013885498,
+ "step": 3201
+ },
+ {
+ "epoch": 44.47531673219746,
+ "grad_norm": 0.19327203929424286,
+ "learning_rate": 0.0006,
+ "loss": 3.6335930824279785,
+ "step": 3202
+ },
+ {
+ "epoch": 44.489296636085626,
+ "grad_norm": 0.19743897020816803,
+ "learning_rate": 0.0006,
+ "loss": 3.6164016723632812,
+ "step": 3203
+ },
+ {
+ "epoch": 44.50327653997379,
+ "grad_norm": 0.20413564145565033,
+ "learning_rate": 0.0006,
+ "loss": 3.663613796234131,
+ "step": 3204
+ },
+ {
+ "epoch": 44.517256443861946,
+ "grad_norm": 0.2057798206806183,
+ "learning_rate": 0.0006,
+ "loss": 3.625131130218506,
+ "step": 3205
+ },
+ {
+ "epoch": 44.53123634775011,
+ "grad_norm": 0.20076915621757507,
+ "learning_rate": 0.0006,
+ "loss": 3.6362178325653076,
+ "step": 3206
+ },
+ {
+ "epoch": 44.54521625163827,
+ "grad_norm": 0.2381955236196518,
+ "learning_rate": 0.0006,
+ "loss": 3.621263265609741,
+ "step": 3207
+ },
+ {
+ "epoch": 44.55919615552643,
+ "grad_norm": 0.27008768916130066,
+ "learning_rate": 0.0006,
+ "loss": 3.6133322715759277,
+ "step": 3208
+ },
+ {
+ "epoch": 44.57317605941459,
+ "grad_norm": 0.25677573680877686,
+ "learning_rate": 0.0006,
+ "loss": 3.6210851669311523,
+ "step": 3209
+ },
+ {
+ "epoch": 44.58715596330275,
+ "grad_norm": 0.21022997796535492,
+ "learning_rate": 0.0006,
+ "loss": 3.626483917236328,
+ "step": 3210
+ },
+ {
+ "epoch": 44.60113586719091,
+ "grad_norm": 0.19918566942214966,
+ "learning_rate": 0.0006,
+ "loss": 3.6321091651916504,
+ "step": 3211
+ },
+ {
+ "epoch": 44.615115771079076,
+ "grad_norm": 0.2114727795124054,
+ "learning_rate": 0.0006,
+ "loss": 3.5767595767974854,
+ "step": 3212
+ },
+ {
+ "epoch": 44.62909567496723,
+ "grad_norm": 0.20968441665172577,
+ "learning_rate": 0.0006,
+ "loss": 3.6040430068969727,
+ "step": 3213
+ },
+ {
+ "epoch": 44.643075578855395,
+ "grad_norm": 0.19996227324008942,
+ "learning_rate": 0.0006,
+ "loss": 3.6688590049743652,
+ "step": 3214
+ },
+ {
+ "epoch": 44.65705548274356,
+ "grad_norm": 0.19998830556869507,
+ "learning_rate": 0.0006,
+ "loss": 3.6349434852600098,
+ "step": 3215
+ },
+ {
+ "epoch": 44.671035386631715,
+ "grad_norm": 0.20812496542930603,
+ "learning_rate": 0.0006,
+ "loss": 3.6363840103149414,
+ "step": 3216
+ },
+ {
+ "epoch": 44.68501529051988,
+ "grad_norm": 0.1988825500011444,
+ "learning_rate": 0.0006,
+ "loss": 3.6180496215820312,
+ "step": 3217
+ },
+ {
+ "epoch": 44.69899519440804,
+ "grad_norm": 0.2114664614200592,
+ "learning_rate": 0.0006,
+ "loss": 3.6362106800079346,
+ "step": 3218
+ },
+ {
+ "epoch": 44.7129750982962,
+ "grad_norm": 0.19847962260246277,
+ "learning_rate": 0.0006,
+ "loss": 3.618500232696533,
+ "step": 3219
+ },
+ {
+ "epoch": 44.72695500218436,
+ "grad_norm": 0.19903887808322906,
+ "learning_rate": 0.0006,
+ "loss": 3.6360888481140137,
+ "step": 3220
+ },
+ {
+ "epoch": 44.74093490607252,
+ "grad_norm": 0.21198545396327972,
+ "learning_rate": 0.0006,
+ "loss": 3.6347005367279053,
+ "step": 3221
+ },
+ {
+ "epoch": 44.75491480996068,
+ "grad_norm": 0.18334898352622986,
+ "learning_rate": 0.0006,
+ "loss": 3.6160783767700195,
+ "step": 3222
+ },
+ {
+ "epoch": 44.768894713848844,
+ "grad_norm": 0.19260665774345398,
+ "learning_rate": 0.0006,
+ "loss": 3.6322834491729736,
+ "step": 3223
+ },
+ {
+ "epoch": 44.782874617737,
+ "grad_norm": 0.2084558755159378,
+ "learning_rate": 0.0006,
+ "loss": 3.615227699279785,
+ "step": 3224
+ },
+ {
+ "epoch": 44.796854521625164,
+ "grad_norm": 0.24538686871528625,
+ "learning_rate": 0.0006,
+ "loss": 3.6387081146240234,
+ "step": 3225
+ },
+ {
+ "epoch": 44.81083442551333,
+ "grad_norm": 0.23291894793510437,
+ "learning_rate": 0.0006,
+ "loss": 3.6245408058166504,
+ "step": 3226
+ },
+ {
+ "epoch": 44.824814329401484,
+ "grad_norm": 0.20715969800949097,
+ "learning_rate": 0.0006,
+ "loss": 3.633620262145996,
+ "step": 3227
+ },
+ {
+ "epoch": 44.83879423328965,
+ "grad_norm": 0.20866821706295013,
+ "learning_rate": 0.0006,
+ "loss": 3.613438129425049,
+ "step": 3228
+ },
+ {
+ "epoch": 44.8527741371778,
+ "grad_norm": 0.2048904299736023,
+ "learning_rate": 0.0006,
+ "loss": 3.668807029724121,
+ "step": 3229
+ },
+ {
+ "epoch": 44.86675404106597,
+ "grad_norm": 0.2073894739151001,
+ "learning_rate": 0.0006,
+ "loss": 3.6000914573669434,
+ "step": 3230
+ },
+ {
+ "epoch": 44.88073394495413,
+ "grad_norm": 0.22017404437065125,
+ "learning_rate": 0.0006,
+ "loss": 3.6024718284606934,
+ "step": 3231
+ },
+ {
+ "epoch": 44.89471384884229,
+ "grad_norm": 0.23971669375896454,
+ "learning_rate": 0.0006,
+ "loss": 3.6339516639709473,
+ "step": 3232
+ },
+ {
+ "epoch": 44.90869375273045,
+ "grad_norm": 0.2258273959159851,
+ "learning_rate": 0.0006,
+ "loss": 3.6480093002319336,
+ "step": 3233
+ },
+ {
+ "epoch": 44.92267365661861,
+ "grad_norm": 0.22079502046108246,
+ "learning_rate": 0.0006,
+ "loss": 3.643446922302246,
+ "step": 3234
+ },
+ {
+ "epoch": 44.93665356050677,
+ "grad_norm": 0.22109337151050568,
+ "learning_rate": 0.0006,
+ "loss": 3.5975499153137207,
+ "step": 3235
+ },
+ {
+ "epoch": 44.95063346439493,
+ "grad_norm": 0.20142309367656708,
+ "learning_rate": 0.0006,
+ "loss": 3.6057305335998535,
+ "step": 3236
+ },
+ {
+ "epoch": 44.964613368283096,
+ "grad_norm": 0.20089569687843323,
+ "learning_rate": 0.0006,
+ "loss": 3.5900750160217285,
+ "step": 3237
+ },
+ {
+ "epoch": 44.97859327217125,
+ "grad_norm": 0.19860075414180756,
+ "learning_rate": 0.0006,
+ "loss": 3.5954184532165527,
+ "step": 3238
+ },
+ {
+ "epoch": 44.992573176059416,
+ "grad_norm": 0.19166013598442078,
+ "learning_rate": 0.0006,
+ "loss": 3.6568803787231445,
+ "step": 3239
+ },
+ {
+ "epoch": 45.0,
+ "grad_norm": 0.22416932880878448,
+ "learning_rate": 0.0006,
+ "loss": 3.6483092308044434,
+ "step": 3240
+ },
+ {
+ "epoch": 45.0,
+ "eval_loss": 3.9821224212646484,
+ "eval_runtime": 44.5415,
+ "eval_samples_per_second": 54.825,
+ "eval_steps_per_second": 3.435,
+ "step": 3240
+ },
+ {
+ "epoch": 45.01397990388816,
+ "grad_norm": 0.2107669562101364,
+ "learning_rate": 0.0006,
+ "loss": 3.5858099460601807,
+ "step": 3241
+ },
+ {
+ "epoch": 45.02795980777632,
+ "grad_norm": 0.20831939578056335,
+ "learning_rate": 0.0006,
+ "loss": 3.5793800354003906,
+ "step": 3242
+ },
+ {
+ "epoch": 45.04193971166448,
+ "grad_norm": 0.2169167846441269,
+ "learning_rate": 0.0006,
+ "loss": 3.601961135864258,
+ "step": 3243
+ },
+ {
+ "epoch": 45.05591961555265,
+ "grad_norm": 0.22451531887054443,
+ "learning_rate": 0.0006,
+ "loss": 3.586371898651123,
+ "step": 3244
+ },
+ {
+ "epoch": 45.0698995194408,
+ "grad_norm": 0.2187003344297409,
+ "learning_rate": 0.0006,
+ "loss": 3.58760929107666,
+ "step": 3245
+ },
+ {
+ "epoch": 45.083879423328966,
+ "grad_norm": 0.22805631160736084,
+ "learning_rate": 0.0006,
+ "loss": 3.554107904434204,
+ "step": 3246
+ },
+ {
+ "epoch": 45.09785932721712,
+ "grad_norm": 0.2573186159133911,
+ "learning_rate": 0.0006,
+ "loss": 3.5815420150756836,
+ "step": 3247
+ },
+ {
+ "epoch": 45.111839231105286,
+ "grad_norm": 0.25940126180648804,
+ "learning_rate": 0.0006,
+ "loss": 3.5754308700561523,
+ "step": 3248
+ },
+ {
+ "epoch": 45.12581913499345,
+ "grad_norm": 0.23834384977817535,
+ "learning_rate": 0.0006,
+ "loss": 3.5857350826263428,
+ "step": 3249
+ },
+ {
+ "epoch": 45.139799038881605,
+ "grad_norm": 0.23342885076999664,
+ "learning_rate": 0.0006,
+ "loss": 3.6116228103637695,
+ "step": 3250
+ },
+ {
+ "epoch": 45.15377894276977,
+ "grad_norm": 0.23284269869327545,
+ "learning_rate": 0.0006,
+ "loss": 3.5778629779815674,
+ "step": 3251
+ },
+ {
+ "epoch": 45.16775884665793,
+ "grad_norm": 0.30510780215263367,
+ "learning_rate": 0.0006,
+ "loss": 3.5888915061950684,
+ "step": 3252
+ },
+ {
+ "epoch": 45.18173875054609,
+ "grad_norm": 0.3462519645690918,
+ "learning_rate": 0.0006,
+ "loss": 3.5955758094787598,
+ "step": 3253
+ },
+ {
+ "epoch": 45.19571865443425,
+ "grad_norm": 0.2795974314212799,
+ "learning_rate": 0.0006,
+ "loss": 3.6222946643829346,
+ "step": 3254
+ },
+ {
+ "epoch": 45.20969855832241,
+ "grad_norm": 0.24624103307724,
+ "learning_rate": 0.0006,
+ "loss": 3.63046932220459,
+ "step": 3255
+ },
+ {
+ "epoch": 45.22367846221057,
+ "grad_norm": 0.23007310926914215,
+ "learning_rate": 0.0006,
+ "loss": 3.652526378631592,
+ "step": 3256
+ },
+ {
+ "epoch": 45.237658366098735,
+ "grad_norm": 0.21325333416461945,
+ "learning_rate": 0.0006,
+ "loss": 3.5960049629211426,
+ "step": 3257
+ },
+ {
+ "epoch": 45.25163826998689,
+ "grad_norm": 0.22697314620018005,
+ "learning_rate": 0.0006,
+ "loss": 3.5723695755004883,
+ "step": 3258
+ },
+ {
+ "epoch": 45.265618173875055,
+ "grad_norm": 0.21900491416454315,
+ "learning_rate": 0.0006,
+ "loss": 3.613572120666504,
+ "step": 3259
+ },
+ {
+ "epoch": 45.27959807776322,
+ "grad_norm": 0.21030694246292114,
+ "learning_rate": 0.0006,
+ "loss": 3.5830235481262207,
+ "step": 3260
+ },
+ {
+ "epoch": 45.293577981651374,
+ "grad_norm": 0.20229968428611755,
+ "learning_rate": 0.0006,
+ "loss": 3.620349884033203,
+ "step": 3261
+ },
+ {
+ "epoch": 45.30755788553954,
+ "grad_norm": 0.21611201763153076,
+ "learning_rate": 0.0006,
+ "loss": 3.5937819480895996,
+ "step": 3262
+ },
+ {
+ "epoch": 45.3215377894277,
+ "grad_norm": 0.21876764297485352,
+ "learning_rate": 0.0006,
+ "loss": 3.6180777549743652,
+ "step": 3263
+ },
+ {
+ "epoch": 45.33551769331586,
+ "grad_norm": 0.200356587767601,
+ "learning_rate": 0.0006,
+ "loss": 3.6140146255493164,
+ "step": 3264
+ },
+ {
+ "epoch": 45.34949759720402,
+ "grad_norm": 0.19151835143566132,
+ "learning_rate": 0.0006,
+ "loss": 3.607077121734619,
+ "step": 3265
+ },
+ {
+ "epoch": 45.36347750109218,
+ "grad_norm": 0.1994648575782776,
+ "learning_rate": 0.0006,
+ "loss": 3.646780490875244,
+ "step": 3266
+ },
+ {
+ "epoch": 45.37745740498034,
+ "grad_norm": 0.23145829141139984,
+ "learning_rate": 0.0006,
+ "loss": 3.624591588973999,
+ "step": 3267
+ },
+ {
+ "epoch": 45.391437308868504,
+ "grad_norm": 0.23608829081058502,
+ "learning_rate": 0.0006,
+ "loss": 3.598904609680176,
+ "step": 3268
+ },
+ {
+ "epoch": 45.40541721275666,
+ "grad_norm": 0.22254547476768494,
+ "learning_rate": 0.0006,
+ "loss": 3.581087827682495,
+ "step": 3269
+ },
+ {
+ "epoch": 45.419397116644824,
+ "grad_norm": 0.21640023589134216,
+ "learning_rate": 0.0006,
+ "loss": 3.5961151123046875,
+ "step": 3270
+ },
+ {
+ "epoch": 45.43337702053299,
+ "grad_norm": 0.2252444475889206,
+ "learning_rate": 0.0006,
+ "loss": 3.590231418609619,
+ "step": 3271
+ },
+ {
+ "epoch": 45.44735692442114,
+ "grad_norm": 0.23785367608070374,
+ "learning_rate": 0.0006,
+ "loss": 3.615896701812744,
+ "step": 3272
+ },
+ {
+ "epoch": 45.46133682830931,
+ "grad_norm": 0.2509191036224365,
+ "learning_rate": 0.0006,
+ "loss": 3.6413722038269043,
+ "step": 3273
+ },
+ {
+ "epoch": 45.47531673219746,
+ "grad_norm": 0.23734210431575775,
+ "learning_rate": 0.0006,
+ "loss": 3.608898639678955,
+ "step": 3274
+ },
+ {
+ "epoch": 45.489296636085626,
+ "grad_norm": 0.19802412390708923,
+ "learning_rate": 0.0006,
+ "loss": 3.5957250595092773,
+ "step": 3275
+ },
+ {
+ "epoch": 45.50327653997379,
+ "grad_norm": 0.20621423423290253,
+ "learning_rate": 0.0006,
+ "loss": 3.607945442199707,
+ "step": 3276
+ },
+ {
+ "epoch": 45.517256443861946,
+ "grad_norm": 0.225870743393898,
+ "learning_rate": 0.0006,
+ "loss": 3.641449451446533,
+ "step": 3277
+ },
+ {
+ "epoch": 45.53123634775011,
+ "grad_norm": 0.21482397615909576,
+ "learning_rate": 0.0006,
+ "loss": 3.61629581451416,
+ "step": 3278
+ },
+ {
+ "epoch": 45.54521625163827,
+ "grad_norm": 0.21159376204013824,
+ "learning_rate": 0.0006,
+ "loss": 3.5977988243103027,
+ "step": 3279
+ },
+ {
+ "epoch": 45.55919615552643,
+ "grad_norm": 0.2031678408384323,
+ "learning_rate": 0.0006,
+ "loss": 3.629343032836914,
+ "step": 3280
+ },
+ {
+ "epoch": 45.57317605941459,
+ "grad_norm": 0.1827101707458496,
+ "learning_rate": 0.0006,
+ "loss": 3.6161365509033203,
+ "step": 3281
+ },
+ {
+ "epoch": 45.58715596330275,
+ "grad_norm": 0.21884584426879883,
+ "learning_rate": 0.0006,
+ "loss": 3.6131834983825684,
+ "step": 3282
+ },
+ {
+ "epoch": 45.60113586719091,
+ "grad_norm": 0.21764980256557465,
+ "learning_rate": 0.0006,
+ "loss": 3.612516164779663,
+ "step": 3283
+ },
+ {
+ "epoch": 45.615115771079076,
+ "grad_norm": 0.22257080674171448,
+ "learning_rate": 0.0006,
+ "loss": 3.63425874710083,
+ "step": 3284
+ },
+ {
+ "epoch": 45.62909567496723,
+ "grad_norm": 0.2419128566980362,
+ "learning_rate": 0.0006,
+ "loss": 3.602997064590454,
+ "step": 3285
+ },
+ {
+ "epoch": 45.643075578855395,
+ "grad_norm": 0.20856884121894836,
+ "learning_rate": 0.0006,
+ "loss": 3.597352981567383,
+ "step": 3286
+ },
+ {
+ "epoch": 45.65705548274356,
+ "grad_norm": 0.20298589766025543,
+ "learning_rate": 0.0006,
+ "loss": 3.5961315631866455,
+ "step": 3287
+ },
+ {
+ "epoch": 45.671035386631715,
+ "grad_norm": 0.19006133079528809,
+ "learning_rate": 0.0006,
+ "loss": 3.6314568519592285,
+ "step": 3288
+ },
+ {
+ "epoch": 45.68501529051988,
+ "grad_norm": 0.20886142551898956,
+ "learning_rate": 0.0006,
+ "loss": 3.6200413703918457,
+ "step": 3289
+ },
+ {
+ "epoch": 45.69899519440804,
+ "grad_norm": 0.18085862696170807,
+ "learning_rate": 0.0006,
+ "loss": 3.6273961067199707,
+ "step": 3290
+ },
+ {
+ "epoch": 45.7129750982962,
+ "grad_norm": 0.18651945888996124,
+ "learning_rate": 0.0006,
+ "loss": 3.6490976810455322,
+ "step": 3291
+ },
+ {
+ "epoch": 45.72695500218436,
+ "grad_norm": 0.19668170809745789,
+ "learning_rate": 0.0006,
+ "loss": 3.610409736633301,
+ "step": 3292
+ },
+ {
+ "epoch": 45.74093490607252,
+ "grad_norm": 0.19865764677524567,
+ "learning_rate": 0.0006,
+ "loss": 3.614025115966797,
+ "step": 3293
+ },
+ {
+ "epoch": 45.75491480996068,
+ "grad_norm": 0.20814085006713867,
+ "learning_rate": 0.0006,
+ "loss": 3.6220510005950928,
+ "step": 3294
+ },
+ {
+ "epoch": 45.768894713848844,
+ "grad_norm": 0.20996463298797607,
+ "learning_rate": 0.0006,
+ "loss": 3.5754218101501465,
+ "step": 3295
+ },
+ {
+ "epoch": 45.782874617737,
+ "grad_norm": 0.1987130492925644,
+ "learning_rate": 0.0006,
+ "loss": 3.614746570587158,
+ "step": 3296
+ },
+ {
+ "epoch": 45.796854521625164,
+ "grad_norm": 0.23048028349876404,
+ "learning_rate": 0.0006,
+ "loss": 3.602620840072632,
+ "step": 3297
+ },
+ {
+ "epoch": 45.81083442551333,
+ "grad_norm": 0.21877387166023254,
+ "learning_rate": 0.0006,
+ "loss": 3.6294198036193848,
+ "step": 3298
+ },
+ {
+ "epoch": 45.824814329401484,
+ "grad_norm": 0.20007763803005219,
+ "learning_rate": 0.0006,
+ "loss": 3.630868434906006,
+ "step": 3299
+ },
+ {
+ "epoch": 45.83879423328965,
+ "grad_norm": 0.200496107339859,
+ "learning_rate": 0.0006,
+ "loss": 3.5972986221313477,
+ "step": 3300
+ },
+ {
+ "epoch": 45.8527741371778,
+ "grad_norm": 0.20494480431079865,
+ "learning_rate": 0.0006,
+ "loss": 3.61934494972229,
+ "step": 3301
+ },
+ {
+ "epoch": 45.86675404106597,
+ "grad_norm": 0.21374984085559845,
+ "learning_rate": 0.0006,
+ "loss": 3.6236257553100586,
+ "step": 3302
+ },
+ {
+ "epoch": 45.88073394495413,
+ "grad_norm": 0.22020408511161804,
+ "learning_rate": 0.0006,
+ "loss": 3.6030755043029785,
+ "step": 3303
+ },
+ {
+ "epoch": 45.89471384884229,
+ "grad_norm": 0.2239987701177597,
+ "learning_rate": 0.0006,
+ "loss": 3.6778974533081055,
+ "step": 3304
+ },
+ {
+ "epoch": 45.90869375273045,
+ "grad_norm": 0.22156383097171783,
+ "learning_rate": 0.0006,
+ "loss": 3.6186561584472656,
+ "step": 3305
+ },
+ {
+ "epoch": 45.92267365661861,
+ "grad_norm": 0.2264711856842041,
+ "learning_rate": 0.0006,
+ "loss": 3.6349918842315674,
+ "step": 3306
+ },
+ {
+ "epoch": 45.93665356050677,
+ "grad_norm": 0.2287975549697876,
+ "learning_rate": 0.0006,
+ "loss": 3.600268840789795,
+ "step": 3307
+ },
+ {
+ "epoch": 45.95063346439493,
+ "grad_norm": 0.22459761798381805,
+ "learning_rate": 0.0006,
+ "loss": 3.6029114723205566,
+ "step": 3308
+ },
+ {
+ "epoch": 45.964613368283096,
+ "grad_norm": 0.2430959790945053,
+ "learning_rate": 0.0006,
+ "loss": 3.6781656742095947,
+ "step": 3309
+ },
+ {
+ "epoch": 45.97859327217125,
+ "grad_norm": 0.2718662619590759,
+ "learning_rate": 0.0006,
+ "loss": 3.606778144836426,
+ "step": 3310
+ },
+ {
+ "epoch": 45.992573176059416,
+ "grad_norm": 0.27250170707702637,
+ "learning_rate": 0.0006,
+ "loss": 3.6142611503601074,
+ "step": 3311
+ },
+ {
+ "epoch": 46.0,
+ "grad_norm": 0.26663821935653687,
+ "learning_rate": 0.0006,
+ "loss": 3.6367483139038086,
+ "step": 3312
+ },
+ {
+ "epoch": 46.0,
+ "eval_loss": 3.9835095405578613,
+ "eval_runtime": 44.6504,
+ "eval_samples_per_second": 54.692,
+ "eval_steps_per_second": 3.427,
+ "step": 3312
+ },
+ {
+ "epoch": 46.01397990388816,
+ "grad_norm": 0.22670713067054749,
+ "learning_rate": 0.0006,
+ "loss": 3.5553648471832275,
+ "step": 3313
+ },
+ {
+ "epoch": 46.02795980777632,
+ "grad_norm": 0.2759886384010315,
+ "learning_rate": 0.0006,
+ "loss": 3.595186948776245,
+ "step": 3314
+ },
+ {
+ "epoch": 46.04193971166448,
+ "grad_norm": 0.31634145975112915,
+ "learning_rate": 0.0006,
+ "loss": 3.5805907249450684,
+ "step": 3315
+ },
+ {
+ "epoch": 46.05591961555265,
+ "grad_norm": 0.3097986578941345,
+ "learning_rate": 0.0006,
+ "loss": 3.593407154083252,
+ "step": 3316
+ },
+ {
+ "epoch": 46.0698995194408,
+ "grad_norm": 0.24616138637065887,
+ "learning_rate": 0.0006,
+ "loss": 3.606736898422241,
+ "step": 3317
+ },
+ {
+ "epoch": 46.083879423328966,
+ "grad_norm": 0.22210408747196198,
+ "learning_rate": 0.0006,
+ "loss": 3.59546160697937,
+ "step": 3318
+ },
+ {
+ "epoch": 46.09785932721712,
+ "grad_norm": 0.2429778128862381,
+ "learning_rate": 0.0006,
+ "loss": 3.5900321006774902,
+ "step": 3319
+ },
+ {
+ "epoch": 46.111839231105286,
+ "grad_norm": 0.22875761985778809,
+ "learning_rate": 0.0006,
+ "loss": 3.5793521404266357,
+ "step": 3320
+ },
+ {
+ "epoch": 46.12581913499345,
+ "grad_norm": 0.21508760750293732,
+ "learning_rate": 0.0006,
+ "loss": 3.5462498664855957,
+ "step": 3321
+ },
+ {
+ "epoch": 46.139799038881605,
+ "grad_norm": 0.23590944707393646,
+ "learning_rate": 0.0006,
+ "loss": 3.6247925758361816,
+ "step": 3322
+ },
+ {
+ "epoch": 46.15377894276977,
+ "grad_norm": 0.22288036346435547,
+ "learning_rate": 0.0006,
+ "loss": 3.6063995361328125,
+ "step": 3323
+ },
+ {
+ "epoch": 46.16775884665793,
+ "grad_norm": 0.20460885763168335,
+ "learning_rate": 0.0006,
+ "loss": 3.5744826793670654,
+ "step": 3324
+ },
+ {
+ "epoch": 46.18173875054609,
+ "grad_norm": 0.20172059535980225,
+ "learning_rate": 0.0006,
+ "loss": 3.5827057361602783,
+ "step": 3325
+ },
+ {
+ "epoch": 46.19571865443425,
+ "grad_norm": 0.2268448770046234,
+ "learning_rate": 0.0006,
+ "loss": 3.5801379680633545,
+ "step": 3326
+ },
+ {
+ "epoch": 46.20969855832241,
+ "grad_norm": 0.2244444191455841,
+ "learning_rate": 0.0006,
+ "loss": 3.5790224075317383,
+ "step": 3327
+ },
+ {
+ "epoch": 46.22367846221057,
+ "grad_norm": 0.20954380929470062,
+ "learning_rate": 0.0006,
+ "loss": 3.5979342460632324,
+ "step": 3328
+ },
+ {
+ "epoch": 46.237658366098735,
+ "grad_norm": 0.21395887434482574,
+ "learning_rate": 0.0006,
+ "loss": 3.6015186309814453,
+ "step": 3329
+ },
+ {
+ "epoch": 46.25163826998689,
+ "grad_norm": 0.23200181126594543,
+ "learning_rate": 0.0006,
+ "loss": 3.5904979705810547,
+ "step": 3330
+ },
+ {
+ "epoch": 46.265618173875055,
+ "grad_norm": 0.20558731257915497,
+ "learning_rate": 0.0006,
+ "loss": 3.5745811462402344,
+ "step": 3331
+ },
+ {
+ "epoch": 46.27959807776322,
+ "grad_norm": 0.1973227560520172,
+ "learning_rate": 0.0006,
+ "loss": 3.588560104370117,
+ "step": 3332
+ },
+ {
+ "epoch": 46.293577981651374,
+ "grad_norm": 0.2137945592403412,
+ "learning_rate": 0.0006,
+ "loss": 3.606064796447754,
+ "step": 3333
+ },
+ {
+ "epoch": 46.30755788553954,
+ "grad_norm": 0.2082151472568512,
+ "learning_rate": 0.0006,
+ "loss": 3.569392442703247,
+ "step": 3334
+ },
+ {
+ "epoch": 46.3215377894277,
+ "grad_norm": 0.2151029258966446,
+ "learning_rate": 0.0006,
+ "loss": 3.6016604900360107,
+ "step": 3335
+ },
+ {
+ "epoch": 46.33551769331586,
+ "grad_norm": 0.2256474643945694,
+ "learning_rate": 0.0006,
+ "loss": 3.571319580078125,
+ "step": 3336
+ },
+ {
+ "epoch": 46.34949759720402,
+ "grad_norm": 0.21454207599163055,
+ "learning_rate": 0.0006,
+ "loss": 3.6028685569763184,
+ "step": 3337
+ },
+ {
+ "epoch": 46.36347750109218,
+ "grad_norm": 0.21864144504070282,
+ "learning_rate": 0.0006,
+ "loss": 3.6146860122680664,
+ "step": 3338
+ },
+ {
+ "epoch": 46.37745740498034,
+ "grad_norm": 0.24512453377246857,
+ "learning_rate": 0.0006,
+ "loss": 3.614696502685547,
+ "step": 3339
+ },
+ {
+ "epoch": 46.391437308868504,
+ "grad_norm": 0.26355695724487305,
+ "learning_rate": 0.0006,
+ "loss": 3.6124234199523926,
+ "step": 3340
+ },
+ {
+ "epoch": 46.40541721275666,
+ "grad_norm": 0.2778678834438324,
+ "learning_rate": 0.0006,
+ "loss": 3.6075634956359863,
+ "step": 3341
+ },
+ {
+ "epoch": 46.419397116644824,
+ "grad_norm": 0.2626822292804718,
+ "learning_rate": 0.0006,
+ "loss": 3.59267520904541,
+ "step": 3342
+ },
+ {
+ "epoch": 46.43337702053299,
+ "grad_norm": 0.2211887091398239,
+ "learning_rate": 0.0006,
+ "loss": 3.606135606765747,
+ "step": 3343
+ },
+ {
+ "epoch": 46.44735692442114,
+ "grad_norm": 0.20117639005184174,
+ "learning_rate": 0.0006,
+ "loss": 3.566512107849121,
+ "step": 3344
+ },
+ {
+ "epoch": 46.46133682830931,
+ "grad_norm": 0.20202599465847015,
+ "learning_rate": 0.0006,
+ "loss": 3.603398561477661,
+ "step": 3345
+ },
+ {
+ "epoch": 46.47531673219746,
+ "grad_norm": 0.22238481044769287,
+ "learning_rate": 0.0006,
+ "loss": 3.599888324737549,
+ "step": 3346
+ },
+ {
+ "epoch": 46.489296636085626,
+ "grad_norm": 0.23298178613185883,
+ "learning_rate": 0.0006,
+ "loss": 3.6135406494140625,
+ "step": 3347
+ },
+ {
+ "epoch": 46.50327653997379,
+ "grad_norm": 0.21998152136802673,
+ "learning_rate": 0.0006,
+ "loss": 3.6022939682006836,
+ "step": 3348
+ },
+ {
+ "epoch": 46.517256443861946,
+ "grad_norm": 0.22595210373401642,
+ "learning_rate": 0.0006,
+ "loss": 3.605905532836914,
+ "step": 3349
+ },
+ {
+ "epoch": 46.53123634775011,
+ "grad_norm": 0.23549678921699524,
+ "learning_rate": 0.0006,
+ "loss": 3.606264591217041,
+ "step": 3350
+ },
+ {
+ "epoch": 46.54521625163827,
+ "grad_norm": 0.2075573205947876,
+ "learning_rate": 0.0006,
+ "loss": 3.580575942993164,
+ "step": 3351
+ },
+ {
+ "epoch": 46.55919615552643,
+ "grad_norm": 0.19052642583847046,
+ "learning_rate": 0.0006,
+ "loss": 3.618326187133789,
+ "step": 3352
+ },
+ {
+ "epoch": 46.57317605941459,
+ "grad_norm": 0.20372900366783142,
+ "learning_rate": 0.0006,
+ "loss": 3.5817952156066895,
+ "step": 3353
+ },
+ {
+ "epoch": 46.58715596330275,
+ "grad_norm": 0.20024648308753967,
+ "learning_rate": 0.0006,
+ "loss": 3.6128273010253906,
+ "step": 3354
+ },
+ {
+ "epoch": 46.60113586719091,
+ "grad_norm": 0.20892181992530823,
+ "learning_rate": 0.0006,
+ "loss": 3.6173012256622314,
+ "step": 3355
+ },
+ {
+ "epoch": 46.615115771079076,
+ "grad_norm": 0.20254571735858917,
+ "learning_rate": 0.0006,
+ "loss": 3.5924699306488037,
+ "step": 3356
+ },
+ {
+ "epoch": 46.62909567496723,
+ "grad_norm": 0.20290599763393402,
+ "learning_rate": 0.0006,
+ "loss": 3.6134514808654785,
+ "step": 3357
+ },
+ {
+ "epoch": 46.643075578855395,
+ "grad_norm": 0.23314513266086578,
+ "learning_rate": 0.0006,
+ "loss": 3.604102611541748,
+ "step": 3358
+ },
+ {
+ "epoch": 46.65705548274356,
+ "grad_norm": 0.2352486401796341,
+ "learning_rate": 0.0006,
+ "loss": 3.6210808753967285,
+ "step": 3359
+ },
+ {
+ "epoch": 46.671035386631715,
+ "grad_norm": 0.2289503663778305,
+ "learning_rate": 0.0006,
+ "loss": 3.596968650817871,
+ "step": 3360
+ },
+ {
+ "epoch": 46.68501529051988,
+ "grad_norm": 0.19971057772636414,
+ "learning_rate": 0.0006,
+ "loss": 3.5973198413848877,
+ "step": 3361
+ },
+ {
+ "epoch": 46.69899519440804,
+ "grad_norm": 0.21000619232654572,
+ "learning_rate": 0.0006,
+ "loss": 3.607048511505127,
+ "step": 3362
+ },
+ {
+ "epoch": 46.7129750982962,
+ "grad_norm": 0.22295686602592468,
+ "learning_rate": 0.0006,
+ "loss": 3.6323728561401367,
+ "step": 3363
+ },
+ {
+ "epoch": 46.72695500218436,
+ "grad_norm": 0.21939052641391754,
+ "learning_rate": 0.0006,
+ "loss": 3.6073317527770996,
+ "step": 3364
+ },
+ {
+ "epoch": 46.74093490607252,
+ "grad_norm": 0.2192271202802658,
+ "learning_rate": 0.0006,
+ "loss": 3.6396851539611816,
+ "step": 3365
+ },
+ {
+ "epoch": 46.75491480996068,
+ "grad_norm": 0.20871607959270477,
+ "learning_rate": 0.0006,
+ "loss": 3.613509178161621,
+ "step": 3366
+ },
+ {
+ "epoch": 46.768894713848844,
+ "grad_norm": 0.1837828904390335,
+ "learning_rate": 0.0006,
+ "loss": 3.604039192199707,
+ "step": 3367
+ },
+ {
+ "epoch": 46.782874617737,
+ "grad_norm": 0.1904219537973404,
+ "learning_rate": 0.0006,
+ "loss": 3.6065895557403564,
+ "step": 3368
+ },
+ {
+ "epoch": 46.796854521625164,
+ "grad_norm": 0.19873572885990143,
+ "learning_rate": 0.0006,
+ "loss": 3.5927226543426514,
+ "step": 3369
+ },
+ {
+ "epoch": 46.81083442551333,
+ "grad_norm": 0.18319591879844666,
+ "learning_rate": 0.0006,
+ "loss": 3.6114919185638428,
+ "step": 3370
+ },
+ {
+ "epoch": 46.824814329401484,
+ "grad_norm": 0.19832435250282288,
+ "learning_rate": 0.0006,
+ "loss": 3.613637924194336,
+ "step": 3371
+ },
+ {
+ "epoch": 46.83879423328965,
+ "grad_norm": 0.21506333351135254,
+ "learning_rate": 0.0006,
+ "loss": 3.6116209030151367,
+ "step": 3372
+ },
+ {
+ "epoch": 46.8527741371778,
+ "grad_norm": 0.20374484360218048,
+ "learning_rate": 0.0006,
+ "loss": 3.5923004150390625,
+ "step": 3373
+ },
+ {
+ "epoch": 46.86675404106597,
+ "grad_norm": 0.19743360579013824,
+ "learning_rate": 0.0006,
+ "loss": 3.599381685256958,
+ "step": 3374
+ },
+ {
+ "epoch": 46.88073394495413,
+ "grad_norm": 0.20996616780757904,
+ "learning_rate": 0.0006,
+ "loss": 3.624969959259033,
+ "step": 3375
+ },
+ {
+ "epoch": 46.89471384884229,
+ "grad_norm": 0.22336791455745697,
+ "learning_rate": 0.0006,
+ "loss": 3.6152467727661133,
+ "step": 3376
+ },
+ {
+ "epoch": 46.90869375273045,
+ "grad_norm": 0.2337532341480255,
+ "learning_rate": 0.0006,
+ "loss": 3.6198863983154297,
+ "step": 3377
+ },
+ {
+ "epoch": 46.92267365661861,
+ "grad_norm": 0.23823462426662445,
+ "learning_rate": 0.0006,
+ "loss": 3.6411237716674805,
+ "step": 3378
+ },
+ {
+ "epoch": 46.93665356050677,
+ "grad_norm": 0.2521338164806366,
+ "learning_rate": 0.0006,
+ "loss": 3.621544122695923,
+ "step": 3379
+ },
+ {
+ "epoch": 46.95063346439493,
+ "grad_norm": 0.253682941198349,
+ "learning_rate": 0.0006,
+ "loss": 3.6570887565612793,
+ "step": 3380
+ },
+ {
+ "epoch": 46.964613368283096,
+ "grad_norm": 0.23392300307750702,
+ "learning_rate": 0.0006,
+ "loss": 3.669538974761963,
+ "step": 3381
+ },
+ {
+ "epoch": 46.97859327217125,
+ "grad_norm": 0.2154092937707901,
+ "learning_rate": 0.0006,
+ "loss": 3.6184825897216797,
+ "step": 3382
+ },
+ {
+ "epoch": 46.992573176059416,
+ "grad_norm": 0.1909833699464798,
+ "learning_rate": 0.0006,
+ "loss": 3.647658348083496,
+ "step": 3383
+ },
+ {
+ "epoch": 47.0,
+ "grad_norm": 0.2226407378911972,
+ "learning_rate": 0.0006,
+ "loss": 3.6413815021514893,
+ "step": 3384
+ },
+ {
+ "epoch": 47.0,
+ "eval_loss": 3.98313570022583,
+ "eval_runtime": 44.7152,
+ "eval_samples_per_second": 54.612,
+ "eval_steps_per_second": 3.422,
+ "step": 3384
+ },
+ {
+ "epoch": 47.01397990388816,
+ "grad_norm": 0.20830968022346497,
+ "learning_rate": 0.0006,
+ "loss": 3.5652623176574707,
+ "step": 3385
+ },
+ {
+ "epoch": 47.02795980777632,
+ "grad_norm": 0.18953651189804077,
+ "learning_rate": 0.0006,
+ "loss": 3.570180654525757,
+ "step": 3386
+ },
+ {
+ "epoch": 47.04193971166448,
+ "grad_norm": 0.20167700946331024,
+ "learning_rate": 0.0006,
+ "loss": 3.5623056888580322,
+ "step": 3387
+ },
+ {
+ "epoch": 47.05591961555265,
+ "grad_norm": 0.21554343402385712,
+ "learning_rate": 0.0006,
+ "loss": 3.549492835998535,
+ "step": 3388
+ },
+ {
+ "epoch": 47.0698995194408,
+ "grad_norm": 0.2232149988412857,
+ "learning_rate": 0.0006,
+ "loss": 3.584181785583496,
+ "step": 3389
+ },
+ {
+ "epoch": 47.083879423328966,
+ "grad_norm": 0.23489049077033997,
+ "learning_rate": 0.0006,
+ "loss": 3.581028461456299,
+ "step": 3390
+ },
+ {
+ "epoch": 47.09785932721712,
+ "grad_norm": 0.22486020624637604,
+ "learning_rate": 0.0006,
+ "loss": 3.600348949432373,
+ "step": 3391
+ },
+ {
+ "epoch": 47.111839231105286,
+ "grad_norm": 0.22932346165180206,
+ "learning_rate": 0.0006,
+ "loss": 3.5600457191467285,
+ "step": 3392
+ },
+ {
+ "epoch": 47.12581913499345,
+ "grad_norm": 0.2179419994354248,
+ "learning_rate": 0.0006,
+ "loss": 3.560136079788208,
+ "step": 3393
+ },
+ {
+ "epoch": 47.139799038881605,
+ "grad_norm": 0.2438054382801056,
+ "learning_rate": 0.0006,
+ "loss": 3.5955698490142822,
+ "step": 3394
+ },
+ {
+ "epoch": 47.15377894276977,
+ "grad_norm": 0.2652001976966858,
+ "learning_rate": 0.0006,
+ "loss": 3.5942912101745605,
+ "step": 3395
+ },
+ {
+ "epoch": 47.16775884665793,
+ "grad_norm": 0.270924836397171,
+ "learning_rate": 0.0006,
+ "loss": 3.5733351707458496,
+ "step": 3396
+ },
+ {
+ "epoch": 47.18173875054609,
+ "grad_norm": 0.28365132212638855,
+ "learning_rate": 0.0006,
+ "loss": 3.6042075157165527,
+ "step": 3397
+ },
+ {
+ "epoch": 47.19571865443425,
+ "grad_norm": 0.29530975222587585,
+ "learning_rate": 0.0006,
+ "loss": 3.588935375213623,
+ "step": 3398
+ },
+ {
+ "epoch": 47.20969855832241,
+ "grad_norm": 0.2658918797969818,
+ "learning_rate": 0.0006,
+ "loss": 3.5944671630859375,
+ "step": 3399
+ },
+ {
+ "epoch": 47.22367846221057,
+ "grad_norm": 0.24076500535011292,
+ "learning_rate": 0.0006,
+ "loss": 3.5853185653686523,
+ "step": 3400
+ },
+ {
+ "epoch": 47.237658366098735,
+ "grad_norm": 0.23032112419605255,
+ "learning_rate": 0.0006,
+ "loss": 3.620483875274658,
+ "step": 3401
+ },
+ {
+ "epoch": 47.25163826998689,
+ "grad_norm": 0.23124775290489197,
+ "learning_rate": 0.0006,
+ "loss": 3.6032004356384277,
+ "step": 3402
+ },
+ {
+ "epoch": 47.265618173875055,
+ "grad_norm": 0.21960225701332092,
+ "learning_rate": 0.0006,
+ "loss": 3.6079649925231934,
+ "step": 3403
+ },
+ {
+ "epoch": 47.27959807776322,
+ "grad_norm": 0.236652672290802,
+ "learning_rate": 0.0006,
+ "loss": 3.582645893096924,
+ "step": 3404
+ },
+ {
+ "epoch": 47.293577981651374,
+ "grad_norm": 0.2600267231464386,
+ "learning_rate": 0.0006,
+ "loss": 3.6067757606506348,
+ "step": 3405
+ },
+ {
+ "epoch": 47.30755788553954,
+ "grad_norm": 0.2337152659893036,
+ "learning_rate": 0.0006,
+ "loss": 3.5912275314331055,
+ "step": 3406
+ },
+ {
+ "epoch": 47.3215377894277,
+ "grad_norm": 0.21887873113155365,
+ "learning_rate": 0.0006,
+ "loss": 3.6008896827697754,
+ "step": 3407
+ },
+ {
+ "epoch": 47.33551769331586,
+ "grad_norm": 0.20265911519527435,
+ "learning_rate": 0.0006,
+ "loss": 3.5820152759552,
+ "step": 3408
+ },
+ {
+ "epoch": 47.34949759720402,
+ "grad_norm": 0.2005501389503479,
+ "learning_rate": 0.0006,
+ "loss": 3.604556083679199,
+ "step": 3409
+ },
+ {
+ "epoch": 47.36347750109218,
+ "grad_norm": 0.20682275295257568,
+ "learning_rate": 0.0006,
+ "loss": 3.584531307220459,
+ "step": 3410
+ },
+ {
+ "epoch": 47.37745740498034,
+ "grad_norm": 0.23283354938030243,
+ "learning_rate": 0.0006,
+ "loss": 3.59186053276062,
+ "step": 3411
+ },
+ {
+ "epoch": 47.391437308868504,
+ "grad_norm": 0.23033356666564941,
+ "learning_rate": 0.0006,
+ "loss": 3.5944037437438965,
+ "step": 3412
+ },
+ {
+ "epoch": 47.40541721275666,
+ "grad_norm": 0.21714402735233307,
+ "learning_rate": 0.0006,
+ "loss": 3.5834851264953613,
+ "step": 3413
+ },
+ {
+ "epoch": 47.419397116644824,
+ "grad_norm": 0.2138672024011612,
+ "learning_rate": 0.0006,
+ "loss": 3.6313700675964355,
+ "step": 3414
+ },
+ {
+ "epoch": 47.43337702053299,
+ "grad_norm": 0.23200160264968872,
+ "learning_rate": 0.0006,
+ "loss": 3.6112399101257324,
+ "step": 3415
+ },
+ {
+ "epoch": 47.44735692442114,
+ "grad_norm": 0.2632092833518982,
+ "learning_rate": 0.0006,
+ "loss": 3.6099038124084473,
+ "step": 3416
+ },
+ {
+ "epoch": 47.46133682830931,
+ "grad_norm": 0.23115520179271698,
+ "learning_rate": 0.0006,
+ "loss": 3.6060497760772705,
+ "step": 3417
+ },
+ {
+ "epoch": 47.47531673219746,
+ "grad_norm": 0.2596223056316376,
+ "learning_rate": 0.0006,
+ "loss": 3.5749685764312744,
+ "step": 3418
+ },
+ {
+ "epoch": 47.489296636085626,
+ "grad_norm": 0.27893415093421936,
+ "learning_rate": 0.0006,
+ "loss": 3.584045886993408,
+ "step": 3419
+ },
+ {
+ "epoch": 47.50327653997379,
+ "grad_norm": 0.23112469911575317,
+ "learning_rate": 0.0006,
+ "loss": 3.595407485961914,
+ "step": 3420
+ },
+ {
+ "epoch": 47.517256443861946,
+ "grad_norm": 0.23562486469745636,
+ "learning_rate": 0.0006,
+ "loss": 3.5657241344451904,
+ "step": 3421
+ },
+ {
+ "epoch": 47.53123634775011,
+ "grad_norm": 0.23366105556488037,
+ "learning_rate": 0.0006,
+ "loss": 3.624885082244873,
+ "step": 3422
+ },
+ {
+ "epoch": 47.54521625163827,
+ "grad_norm": 0.24383248388767242,
+ "learning_rate": 0.0006,
+ "loss": 3.638352394104004,
+ "step": 3423
+ },
+ {
+ "epoch": 47.55919615552643,
+ "grad_norm": 0.26388120651245117,
+ "learning_rate": 0.0006,
+ "loss": 3.614579200744629,
+ "step": 3424
+ },
+ {
+ "epoch": 47.57317605941459,
+ "grad_norm": 0.23676545917987823,
+ "learning_rate": 0.0006,
+ "loss": 3.609004259109497,
+ "step": 3425
+ },
+ {
+ "epoch": 47.58715596330275,
+ "grad_norm": 0.227967768907547,
+ "learning_rate": 0.0006,
+ "loss": 3.626171827316284,
+ "step": 3426
+ },
+ {
+ "epoch": 47.60113586719091,
+ "grad_norm": 0.23786529898643494,
+ "learning_rate": 0.0006,
+ "loss": 3.6205172538757324,
+ "step": 3427
+ },
+ {
+ "epoch": 47.615115771079076,
+ "grad_norm": 0.2599100172519684,
+ "learning_rate": 0.0006,
+ "loss": 3.6178271770477295,
+ "step": 3428
+ },
+ {
+ "epoch": 47.62909567496723,
+ "grad_norm": 0.2591858208179474,
+ "learning_rate": 0.0006,
+ "loss": 3.600297451019287,
+ "step": 3429
+ },
+ {
+ "epoch": 47.643075578855395,
+ "grad_norm": 0.2234215885400772,
+ "learning_rate": 0.0006,
+ "loss": 3.623141288757324,
+ "step": 3430
+ },
+ {
+ "epoch": 47.65705548274356,
+ "grad_norm": 0.23395098745822906,
+ "learning_rate": 0.0006,
+ "loss": 3.6243159770965576,
+ "step": 3431
+ },
+ {
+ "epoch": 47.671035386631715,
+ "grad_norm": 0.25706854462623596,
+ "learning_rate": 0.0006,
+ "loss": 3.5933618545532227,
+ "step": 3432
+ },
+ {
+ "epoch": 47.68501529051988,
+ "grad_norm": 0.22468037903308868,
+ "learning_rate": 0.0006,
+ "loss": 3.6048693656921387,
+ "step": 3433
+ },
+ {
+ "epoch": 47.69899519440804,
+ "grad_norm": 0.22432644665241241,
+ "learning_rate": 0.0006,
+ "loss": 3.604891777038574,
+ "step": 3434
+ },
+ {
+ "epoch": 47.7129750982962,
+ "grad_norm": 0.2278960943222046,
+ "learning_rate": 0.0006,
+ "loss": 3.610567092895508,
+ "step": 3435
+ },
+ {
+ "epoch": 47.72695500218436,
+ "grad_norm": 0.20652735233306885,
+ "learning_rate": 0.0006,
+ "loss": 3.60245418548584,
+ "step": 3436
+ },
+ {
+ "epoch": 47.74093490607252,
+ "grad_norm": 0.2141297310590744,
+ "learning_rate": 0.0006,
+ "loss": 3.5712027549743652,
+ "step": 3437
+ },
+ {
+ "epoch": 47.75491480996068,
+ "grad_norm": 0.23282566666603088,
+ "learning_rate": 0.0006,
+ "loss": 3.573568820953369,
+ "step": 3438
+ },
+ {
+ "epoch": 47.768894713848844,
+ "grad_norm": 0.21718674898147583,
+ "learning_rate": 0.0006,
+ "loss": 3.602047920227051,
+ "step": 3439
+ },
+ {
+ "epoch": 47.782874617737,
+ "grad_norm": 0.19592095911502838,
+ "learning_rate": 0.0006,
+ "loss": 3.6046957969665527,
+ "step": 3440
+ },
+ {
+ "epoch": 47.796854521625164,
+ "grad_norm": 0.21548260748386383,
+ "learning_rate": 0.0006,
+ "loss": 3.5808444023132324,
+ "step": 3441
+ },
+ {
+ "epoch": 47.81083442551333,
+ "grad_norm": 0.21945662796497345,
+ "learning_rate": 0.0006,
+ "loss": 3.6044554710388184,
+ "step": 3442
+ },
+ {
+ "epoch": 47.824814329401484,
+ "grad_norm": 0.20777440071105957,
+ "learning_rate": 0.0006,
+ "loss": 3.5991361141204834,
+ "step": 3443
+ },
+ {
+ "epoch": 47.83879423328965,
+ "grad_norm": 0.21566642820835114,
+ "learning_rate": 0.0006,
+ "loss": 3.6272850036621094,
+ "step": 3444
+ },
+ {
+ "epoch": 47.8527741371778,
+ "grad_norm": 0.22365771234035492,
+ "learning_rate": 0.0006,
+ "loss": 3.6323323249816895,
+ "step": 3445
+ },
+ {
+ "epoch": 47.86675404106597,
+ "grad_norm": 0.20193088054656982,
+ "learning_rate": 0.0006,
+ "loss": 3.5938191413879395,
+ "step": 3446
+ },
+ {
+ "epoch": 47.88073394495413,
+ "grad_norm": 0.20968061685562134,
+ "learning_rate": 0.0006,
+ "loss": 3.616640329360962,
+ "step": 3447
+ },
+ {
+ "epoch": 47.89471384884229,
+ "grad_norm": 0.20275580883026123,
+ "learning_rate": 0.0006,
+ "loss": 3.5769052505493164,
+ "step": 3448
+ },
+ {
+ "epoch": 47.90869375273045,
+ "grad_norm": 0.237605020403862,
+ "learning_rate": 0.0006,
+ "loss": 3.6221203804016113,
+ "step": 3449
+ },
+ {
+ "epoch": 47.92267365661861,
+ "grad_norm": 0.2820972502231598,
+ "learning_rate": 0.0006,
+ "loss": 3.5977487564086914,
+ "step": 3450
+ },
+ {
+ "epoch": 47.93665356050677,
+ "grad_norm": 0.23722891509532928,
+ "learning_rate": 0.0006,
+ "loss": 3.5963053703308105,
+ "step": 3451
+ },
+ {
+ "epoch": 47.95063346439493,
+ "grad_norm": 0.21471276879310608,
+ "learning_rate": 0.0006,
+ "loss": 3.6234917640686035,
+ "step": 3452
+ },
+ {
+ "epoch": 47.964613368283096,
+ "grad_norm": 0.2139028012752533,
+ "learning_rate": 0.0006,
+ "loss": 3.640500545501709,
+ "step": 3453
+ },
+ {
+ "epoch": 47.97859327217125,
+ "grad_norm": 0.1966913342475891,
+ "learning_rate": 0.0006,
+ "loss": 3.5856776237487793,
+ "step": 3454
+ },
+ {
+ "epoch": 47.992573176059416,
+ "grad_norm": 0.2375730276107788,
+ "learning_rate": 0.0006,
+ "loss": 3.6126937866210938,
+ "step": 3455
+ },
+ {
+ "epoch": 48.0,
+ "grad_norm": 0.2772855758666992,
+ "learning_rate": 0.0006,
+ "loss": 3.6041951179504395,
+ "step": 3456
+ },
+ {
+ "epoch": 48.0,
+ "eval_loss": 3.971400499343872,
+ "eval_runtime": 45.4792,
+ "eval_samples_per_second": 53.695,
+ "eval_steps_per_second": 3.364,
+ "step": 3456
+ },
+ {
+ "epoch": 48.01397990388816,
+ "grad_norm": 0.2269497811794281,
+ "learning_rate": 0.0006,
+ "loss": 3.525441884994507,
+ "step": 3457
+ },
+ {
+ "epoch": 48.02795980777632,
+ "grad_norm": 0.2080184519290924,
+ "learning_rate": 0.0006,
+ "loss": 3.5727145671844482,
+ "step": 3458
+ },
+ {
+ "epoch": 48.04193971166448,
+ "grad_norm": 0.21827049553394318,
+ "learning_rate": 0.0006,
+ "loss": 3.5799875259399414,
+ "step": 3459
+ },
+ {
+ "epoch": 48.05591961555265,
+ "grad_norm": 0.2173643410205841,
+ "learning_rate": 0.0006,
+ "loss": 3.587097406387329,
+ "step": 3460
+ },
+ {
+ "epoch": 48.0698995194408,
+ "grad_norm": 0.23125280439853668,
+ "learning_rate": 0.0006,
+ "loss": 3.593235969543457,
+ "step": 3461
+ },
+ {
+ "epoch": 48.083879423328966,
+ "grad_norm": 0.2235819697380066,
+ "learning_rate": 0.0006,
+ "loss": 3.5724973678588867,
+ "step": 3462
+ },
+ {
+ "epoch": 48.09785932721712,
+ "grad_norm": 0.2329849898815155,
+ "learning_rate": 0.0006,
+ "loss": 3.5689549446105957,
+ "step": 3463
+ },
+ {
+ "epoch": 48.111839231105286,
+ "grad_norm": 0.21178825199604034,
+ "learning_rate": 0.0006,
+ "loss": 3.5522305965423584,
+ "step": 3464
+ },
+ {
+ "epoch": 48.12581913499345,
+ "grad_norm": 0.22026701271533966,
+ "learning_rate": 0.0006,
+ "loss": 3.5622801780700684,
+ "step": 3465
+ },
+ {
+ "epoch": 48.139799038881605,
+ "grad_norm": 0.23427478969097137,
+ "learning_rate": 0.0006,
+ "loss": 3.6076972484588623,
+ "step": 3466
+ },
+ {
+ "epoch": 48.15377894276977,
+ "grad_norm": 0.22437651455402374,
+ "learning_rate": 0.0006,
+ "loss": 3.5898380279541016,
+ "step": 3467
+ },
+ {
+ "epoch": 48.16775884665793,
+ "grad_norm": 0.22911588847637177,
+ "learning_rate": 0.0006,
+ "loss": 3.584866523742676,
+ "step": 3468
+ },
+ {
+ "epoch": 48.18173875054609,
+ "grad_norm": 0.21358130872249603,
+ "learning_rate": 0.0006,
+ "loss": 3.581397533416748,
+ "step": 3469
+ },
+ {
+ "epoch": 48.19571865443425,
+ "grad_norm": 0.2102762758731842,
+ "learning_rate": 0.0006,
+ "loss": 3.6218419075012207,
+ "step": 3470
+ },
+ {
+ "epoch": 48.20969855832241,
+ "grad_norm": 0.22417177259922028,
+ "learning_rate": 0.0006,
+ "loss": 3.5875539779663086,
+ "step": 3471
+ },
+ {
+ "epoch": 48.22367846221057,
+ "grad_norm": 0.2096744030714035,
+ "learning_rate": 0.0006,
+ "loss": 3.6017215251922607,
+ "step": 3472
+ },
+ {
+ "epoch": 48.237658366098735,
+ "grad_norm": 0.18693844974040985,
+ "learning_rate": 0.0006,
+ "loss": 3.590221405029297,
+ "step": 3473
+ },
+ {
+ "epoch": 48.25163826998689,
+ "grad_norm": 0.21102994680404663,
+ "learning_rate": 0.0006,
+ "loss": 3.5685019493103027,
+ "step": 3474
+ },
+ {
+ "epoch": 48.265618173875055,
+ "grad_norm": 0.20756356418132782,
+ "learning_rate": 0.0006,
+ "loss": 3.577427387237549,
+ "step": 3475
+ },
+ {
+ "epoch": 48.27959807776322,
+ "grad_norm": 0.20425064861774445,
+ "learning_rate": 0.0006,
+ "loss": 3.602522134780884,
+ "step": 3476
+ },
+ {
+ "epoch": 48.293577981651374,
+ "grad_norm": 0.1976020187139511,
+ "learning_rate": 0.0006,
+ "loss": 3.5847134590148926,
+ "step": 3477
+ },
+ {
+ "epoch": 48.30755788553954,
+ "grad_norm": 0.19685129821300507,
+ "learning_rate": 0.0006,
+ "loss": 3.5638442039489746,
+ "step": 3478
+ },
+ {
+ "epoch": 48.3215377894277,
+ "grad_norm": 0.19657646119594574,
+ "learning_rate": 0.0006,
+ "loss": 3.5669779777526855,
+ "step": 3479
+ },
+ {
+ "epoch": 48.33551769331586,
+ "grad_norm": 0.19855819642543793,
+ "learning_rate": 0.0006,
+ "loss": 3.5712571144104004,
+ "step": 3480
+ },
+ {
+ "epoch": 48.34949759720402,
+ "grad_norm": 0.19961503148078918,
+ "learning_rate": 0.0006,
+ "loss": 3.5869312286376953,
+ "step": 3481
+ },
+ {
+ "epoch": 48.36347750109218,
+ "grad_norm": 0.19302639365196228,
+ "learning_rate": 0.0006,
+ "loss": 3.571394920349121,
+ "step": 3482
+ },
+ {
+ "epoch": 48.37745740498034,
+ "grad_norm": 0.1953866183757782,
+ "learning_rate": 0.0006,
+ "loss": 3.556633234024048,
+ "step": 3483
+ },
+ {
+ "epoch": 48.391437308868504,
+ "grad_norm": 0.20028206706047058,
+ "learning_rate": 0.0006,
+ "loss": 3.5559535026550293,
+ "step": 3484
+ },
+ {
+ "epoch": 48.40541721275666,
+ "grad_norm": 0.2286558896303177,
+ "learning_rate": 0.0006,
+ "loss": 3.6052510738372803,
+ "step": 3485
+ },
+ {
+ "epoch": 48.419397116644824,
+ "grad_norm": 0.21764399111270905,
+ "learning_rate": 0.0006,
+ "loss": 3.5955848693847656,
+ "step": 3486
+ },
+ {
+ "epoch": 48.43337702053299,
+ "grad_norm": 0.2257501780986786,
+ "learning_rate": 0.0006,
+ "loss": 3.586179256439209,
+ "step": 3487
+ },
+ {
+ "epoch": 48.44735692442114,
+ "grad_norm": 0.23023653030395508,
+ "learning_rate": 0.0006,
+ "loss": 3.593329906463623,
+ "step": 3488
+ },
+ {
+ "epoch": 48.46133682830931,
+ "grad_norm": 0.21283918619155884,
+ "learning_rate": 0.0006,
+ "loss": 3.5909814834594727,
+ "step": 3489
+ },
+ {
+ "epoch": 48.47531673219746,
+ "grad_norm": 0.2143639773130417,
+ "learning_rate": 0.0006,
+ "loss": 3.61320161819458,
+ "step": 3490
+ },
+ {
+ "epoch": 48.489296636085626,
+ "grad_norm": 0.2138844132423401,
+ "learning_rate": 0.0006,
+ "loss": 3.556607246398926,
+ "step": 3491
+ },
+ {
+ "epoch": 48.50327653997379,
+ "grad_norm": 0.22122617065906525,
+ "learning_rate": 0.0006,
+ "loss": 3.629208564758301,
+ "step": 3492
+ },
+ {
+ "epoch": 48.517256443861946,
+ "grad_norm": 0.22430218756198883,
+ "learning_rate": 0.0006,
+ "loss": 3.61891508102417,
+ "step": 3493
+ },
+ {
+ "epoch": 48.53123634775011,
+ "grad_norm": 0.23830844461917877,
+ "learning_rate": 0.0006,
+ "loss": 3.5818424224853516,
+ "step": 3494
+ },
+ {
+ "epoch": 48.54521625163827,
+ "grad_norm": 0.23596757650375366,
+ "learning_rate": 0.0006,
+ "loss": 3.609959602355957,
+ "step": 3495
+ },
+ {
+ "epoch": 48.55919615552643,
+ "grad_norm": 0.22046151757240295,
+ "learning_rate": 0.0006,
+ "loss": 3.585991382598877,
+ "step": 3496
+ },
+ {
+ "epoch": 48.57317605941459,
+ "grad_norm": 0.22838662564754486,
+ "learning_rate": 0.0006,
+ "loss": 3.6047747135162354,
+ "step": 3497
+ },
+ {
+ "epoch": 48.58715596330275,
+ "grad_norm": 0.22605256736278534,
+ "learning_rate": 0.0006,
+ "loss": 3.584585428237915,
+ "step": 3498
+ },
+ {
+ "epoch": 48.60113586719091,
+ "grad_norm": 0.22761467099189758,
+ "learning_rate": 0.0006,
+ "loss": 3.5680465698242188,
+ "step": 3499
+ },
+ {
+ "epoch": 48.615115771079076,
+ "grad_norm": 0.20537005364894867,
+ "learning_rate": 0.0006,
+ "loss": 3.5822806358337402,
+ "step": 3500
+ },
+ {
+ "epoch": 48.62909567496723,
+ "grad_norm": 0.21871088445186615,
+ "learning_rate": 0.0006,
+ "loss": 3.5643906593322754,
+ "step": 3501
+ },
+ {
+ "epoch": 48.643075578855395,
+ "grad_norm": 0.2291785329580307,
+ "learning_rate": 0.0006,
+ "loss": 3.6313328742980957,
+ "step": 3502
+ },
+ {
+ "epoch": 48.65705548274356,
+ "grad_norm": 0.2437039464712143,
+ "learning_rate": 0.0006,
+ "loss": 3.588334083557129,
+ "step": 3503
+ },
+ {
+ "epoch": 48.671035386631715,
+ "grad_norm": 0.23070715367794037,
+ "learning_rate": 0.0006,
+ "loss": 3.611356258392334,
+ "step": 3504
+ },
+ {
+ "epoch": 48.68501529051988,
+ "grad_norm": 0.23983895778656006,
+ "learning_rate": 0.0006,
+ "loss": 3.5953967571258545,
+ "step": 3505
+ },
+ {
+ "epoch": 48.69899519440804,
+ "grad_norm": 0.2283167690038681,
+ "learning_rate": 0.0006,
+ "loss": 3.605307102203369,
+ "step": 3506
+ },
+ {
+ "epoch": 48.7129750982962,
+ "grad_norm": 0.20861059427261353,
+ "learning_rate": 0.0006,
+ "loss": 3.598266363143921,
+ "step": 3507
+ },
+ {
+ "epoch": 48.72695500218436,
+ "grad_norm": 0.20209547877311707,
+ "learning_rate": 0.0006,
+ "loss": 3.6022191047668457,
+ "step": 3508
+ },
+ {
+ "epoch": 48.74093490607252,
+ "grad_norm": 0.19089370965957642,
+ "learning_rate": 0.0006,
+ "loss": 3.628640651702881,
+ "step": 3509
+ },
+ {
+ "epoch": 48.75491480996068,
+ "grad_norm": 0.18544727563858032,
+ "learning_rate": 0.0006,
+ "loss": 3.6204819679260254,
+ "step": 3510
+ },
+ {
+ "epoch": 48.768894713848844,
+ "grad_norm": 0.18295186758041382,
+ "learning_rate": 0.0006,
+ "loss": 3.5899410247802734,
+ "step": 3511
+ },
+ {
+ "epoch": 48.782874617737,
+ "grad_norm": 0.1953844279050827,
+ "learning_rate": 0.0006,
+ "loss": 3.581699848175049,
+ "step": 3512
+ },
+ {
+ "epoch": 48.796854521625164,
+ "grad_norm": 0.195505291223526,
+ "learning_rate": 0.0006,
+ "loss": 3.6046862602233887,
+ "step": 3513
+ },
+ {
+ "epoch": 48.81083442551333,
+ "grad_norm": 0.19805945456027985,
+ "learning_rate": 0.0006,
+ "loss": 3.609510898590088,
+ "step": 3514
+ },
+ {
+ "epoch": 48.824814329401484,
+ "grad_norm": 0.18694287538528442,
+ "learning_rate": 0.0006,
+ "loss": 3.580693483352661,
+ "step": 3515
+ },
+ {
+ "epoch": 48.83879423328965,
+ "grad_norm": 0.19227269291877747,
+ "learning_rate": 0.0006,
+ "loss": 3.6174416542053223,
+ "step": 3516
+ },
+ {
+ "epoch": 48.8527741371778,
+ "grad_norm": 0.1966937631368637,
+ "learning_rate": 0.0006,
+ "loss": 3.616194248199463,
+ "step": 3517
+ },
+ {
+ "epoch": 48.86675404106597,
+ "grad_norm": 0.20755162835121155,
+ "learning_rate": 0.0006,
+ "loss": 3.594695568084717,
+ "step": 3518
+ },
+ {
+ "epoch": 48.88073394495413,
+ "grad_norm": 0.2012479156255722,
+ "learning_rate": 0.0006,
+ "loss": 3.6069273948669434,
+ "step": 3519
+ },
+ {
+ "epoch": 48.89471384884229,
+ "grad_norm": 0.19260065257549286,
+ "learning_rate": 0.0006,
+ "loss": 3.573819160461426,
+ "step": 3520
+ },
+ {
+ "epoch": 48.90869375273045,
+ "grad_norm": 0.19911104440689087,
+ "learning_rate": 0.0006,
+ "loss": 3.632185459136963,
+ "step": 3521
+ },
+ {
+ "epoch": 48.92267365661861,
+ "grad_norm": 0.22266048192977905,
+ "learning_rate": 0.0006,
+ "loss": 3.607295513153076,
+ "step": 3522
+ },
+ {
+ "epoch": 48.93665356050677,
+ "grad_norm": 0.2542882561683655,
+ "learning_rate": 0.0006,
+ "loss": 3.6014773845672607,
+ "step": 3523
+ },
+ {
+ "epoch": 48.95063346439493,
+ "grad_norm": 0.2878575026988983,
+ "learning_rate": 0.0006,
+ "loss": 3.5825531482696533,
+ "step": 3524
+ },
+ {
+ "epoch": 48.964613368283096,
+ "grad_norm": 0.3157055675983429,
+ "learning_rate": 0.0006,
+ "loss": 3.5986037254333496,
+ "step": 3525
+ },
+ {
+ "epoch": 48.97859327217125,
+ "grad_norm": 0.2815262973308563,
+ "learning_rate": 0.0006,
+ "loss": 3.6099600791931152,
+ "step": 3526
+ },
+ {
+ "epoch": 48.992573176059416,
+ "grad_norm": 0.22102823853492737,
+ "learning_rate": 0.0006,
+ "loss": 3.5859827995300293,
+ "step": 3527
+ },
+ {
+ "epoch": 49.0,
+ "grad_norm": 0.24937094748020172,
+ "learning_rate": 0.0006,
+ "loss": 3.622842311859131,
+ "step": 3528
+ },
+ {
+ "epoch": 49.0,
+ "eval_loss": 3.977067232131958,
+ "eval_runtime": 45.5503,
+ "eval_samples_per_second": 53.611,
+ "eval_steps_per_second": 3.359,
+ "step": 3528
+ },
+ {
+ "epoch": 49.01397990388816,
+ "grad_norm": 0.25072216987609863,
+ "learning_rate": 0.0006,
+ "loss": 3.590653419494629,
+ "step": 3529
+ },
+ {
+ "epoch": 49.02795980777632,
+ "grad_norm": 0.2611052989959717,
+ "learning_rate": 0.0006,
+ "loss": 3.5504279136657715,
+ "step": 3530
+ },
+ {
+ "epoch": 49.04193971166448,
+ "grad_norm": 0.2547961473464966,
+ "learning_rate": 0.0006,
+ "loss": 3.5797581672668457,
+ "step": 3531
+ },
+ {
+ "epoch": 49.05591961555265,
+ "grad_norm": 0.25674310326576233,
+ "learning_rate": 0.0006,
+ "loss": 3.557278871536255,
+ "step": 3532
+ },
+ {
+ "epoch": 49.0698995194408,
+ "grad_norm": 0.25511929392814636,
+ "learning_rate": 0.0006,
+ "loss": 3.5788025856018066,
+ "step": 3533
+ },
+ {
+ "epoch": 49.083879423328966,
+ "grad_norm": 0.22920994460582733,
+ "learning_rate": 0.0006,
+ "loss": 3.580489158630371,
+ "step": 3534
+ },
+ {
+ "epoch": 49.09785932721712,
+ "grad_norm": 0.23436492681503296,
+ "learning_rate": 0.0006,
+ "loss": 3.5603699684143066,
+ "step": 3535
+ },
+ {
+ "epoch": 49.111839231105286,
+ "grad_norm": 0.2542382776737213,
+ "learning_rate": 0.0006,
+ "loss": 3.5937037467956543,
+ "step": 3536
+ },
+ {
+ "epoch": 49.12581913499345,
+ "grad_norm": 0.26718273758888245,
+ "learning_rate": 0.0006,
+ "loss": 3.6032168865203857,
+ "step": 3537
+ },
+ {
+ "epoch": 49.139799038881605,
+ "grad_norm": 0.2406773865222931,
+ "learning_rate": 0.0006,
+ "loss": 3.5737085342407227,
+ "step": 3538
+ },
+ {
+ "epoch": 49.15377894276977,
+ "grad_norm": 0.23408754169940948,
+ "learning_rate": 0.0006,
+ "loss": 3.592543601989746,
+ "step": 3539
+ },
+ {
+ "epoch": 49.16775884665793,
+ "grad_norm": 0.22974351048469543,
+ "learning_rate": 0.0006,
+ "loss": 3.543618679046631,
+ "step": 3540
+ },
+ {
+ "epoch": 49.18173875054609,
+ "grad_norm": 0.23479530215263367,
+ "learning_rate": 0.0006,
+ "loss": 3.547590732574463,
+ "step": 3541
+ },
+ {
+ "epoch": 49.19571865443425,
+ "grad_norm": 0.2100638598203659,
+ "learning_rate": 0.0006,
+ "loss": 3.6027469635009766,
+ "step": 3542
+ },
+ {
+ "epoch": 49.20969855832241,
+ "grad_norm": 0.20239035785198212,
+ "learning_rate": 0.0006,
+ "loss": 3.598567008972168,
+ "step": 3543
+ },
+ {
+ "epoch": 49.22367846221057,
+ "grad_norm": 0.20480065047740936,
+ "learning_rate": 0.0006,
+ "loss": 3.591038227081299,
+ "step": 3544
+ },
+ {
+ "epoch": 49.237658366098735,
+ "grad_norm": 0.20439887046813965,
+ "learning_rate": 0.0006,
+ "loss": 3.555039405822754,
+ "step": 3545
+ },
+ {
+ "epoch": 49.25163826998689,
+ "grad_norm": 0.21245788037776947,
+ "learning_rate": 0.0006,
+ "loss": 3.5772666931152344,
+ "step": 3546
+ },
+ {
+ "epoch": 49.265618173875055,
+ "grad_norm": 0.1993357390165329,
+ "learning_rate": 0.0006,
+ "loss": 3.5847411155700684,
+ "step": 3547
+ },
+ {
+ "epoch": 49.27959807776322,
+ "grad_norm": 0.22550229728221893,
+ "learning_rate": 0.0006,
+ "loss": 3.5679750442504883,
+ "step": 3548
+ },
+ {
+ "epoch": 49.293577981651374,
+ "grad_norm": 0.2383355349302292,
+ "learning_rate": 0.0006,
+ "loss": 3.57085919380188,
+ "step": 3549
+ },
+ {
+ "epoch": 49.30755788553954,
+ "grad_norm": 0.23968911170959473,
+ "learning_rate": 0.0006,
+ "loss": 3.557415246963501,
+ "step": 3550
+ },
+ {
+ "epoch": 49.3215377894277,
+ "grad_norm": 0.21453262865543365,
+ "learning_rate": 0.0006,
+ "loss": 3.5763611793518066,
+ "step": 3551
+ },
+ {
+ "epoch": 49.33551769331586,
+ "grad_norm": 0.20380273461341858,
+ "learning_rate": 0.0006,
+ "loss": 3.552011013031006,
+ "step": 3552
+ },
+ {
+ "epoch": 49.34949759720402,
+ "grad_norm": 0.19719970226287842,
+ "learning_rate": 0.0006,
+ "loss": 3.5719075202941895,
+ "step": 3553
+ },
+ {
+ "epoch": 49.36347750109218,
+ "grad_norm": 0.19018089771270752,
+ "learning_rate": 0.0006,
+ "loss": 3.5843467712402344,
+ "step": 3554
+ },
+ {
+ "epoch": 49.37745740498034,
+ "grad_norm": 0.18369099497795105,
+ "learning_rate": 0.0006,
+ "loss": 3.561741352081299,
+ "step": 3555
+ },
+ {
+ "epoch": 49.391437308868504,
+ "grad_norm": 0.2070280760526657,
+ "learning_rate": 0.0006,
+ "loss": 3.590721607208252,
+ "step": 3556
+ },
+ {
+ "epoch": 49.40541721275666,
+ "grad_norm": 0.23287905752658844,
+ "learning_rate": 0.0006,
+ "loss": 3.617081642150879,
+ "step": 3557
+ },
+ {
+ "epoch": 49.419397116644824,
+ "grad_norm": 0.21877793967723846,
+ "learning_rate": 0.0006,
+ "loss": 3.547166347503662,
+ "step": 3558
+ },
+ {
+ "epoch": 49.43337702053299,
+ "grad_norm": 0.21105137467384338,
+ "learning_rate": 0.0006,
+ "loss": 3.593552350997925,
+ "step": 3559
+ },
+ {
+ "epoch": 49.44735692442114,
+ "grad_norm": 0.24940872192382812,
+ "learning_rate": 0.0006,
+ "loss": 3.599729537963867,
+ "step": 3560
+ },
+ {
+ "epoch": 49.46133682830931,
+ "grad_norm": 0.26952996850013733,
+ "learning_rate": 0.0006,
+ "loss": 3.5915074348449707,
+ "step": 3561
+ },
+ {
+ "epoch": 49.47531673219746,
+ "grad_norm": 0.25706353783607483,
+ "learning_rate": 0.0006,
+ "loss": 3.587472915649414,
+ "step": 3562
+ },
+ {
+ "epoch": 49.489296636085626,
+ "grad_norm": 0.23666661977767944,
+ "learning_rate": 0.0006,
+ "loss": 3.561340808868408,
+ "step": 3563
+ },
+ {
+ "epoch": 49.50327653997379,
+ "grad_norm": 0.22524063289165497,
+ "learning_rate": 0.0006,
+ "loss": 3.587310314178467,
+ "step": 3564
+ },
+ {
+ "epoch": 49.517256443861946,
+ "grad_norm": 0.22991003096103668,
+ "learning_rate": 0.0006,
+ "loss": 3.56671142578125,
+ "step": 3565
+ },
+ {
+ "epoch": 49.53123634775011,
+ "grad_norm": 0.23067602515220642,
+ "learning_rate": 0.0006,
+ "loss": 3.578601837158203,
+ "step": 3566
+ },
+ {
+ "epoch": 49.54521625163827,
+ "grad_norm": 0.2133914828300476,
+ "learning_rate": 0.0006,
+ "loss": 3.593726873397827,
+ "step": 3567
+ },
+ {
+ "epoch": 49.55919615552643,
+ "grad_norm": 0.21879160404205322,
+ "learning_rate": 0.0006,
+ "loss": 3.5833992958068848,
+ "step": 3568
+ },
+ {
+ "epoch": 49.57317605941459,
+ "grad_norm": 0.2116270661354065,
+ "learning_rate": 0.0006,
+ "loss": 3.575761079788208,
+ "step": 3569
+ },
+ {
+ "epoch": 49.58715596330275,
+ "grad_norm": 0.19506660103797913,
+ "learning_rate": 0.0006,
+ "loss": 3.5600461959838867,
+ "step": 3570
+ },
+ {
+ "epoch": 49.60113586719091,
+ "grad_norm": 0.21305067837238312,
+ "learning_rate": 0.0006,
+ "loss": 3.5717577934265137,
+ "step": 3571
+ },
+ {
+ "epoch": 49.615115771079076,
+ "grad_norm": 0.21184347569942474,
+ "learning_rate": 0.0006,
+ "loss": 3.608819007873535,
+ "step": 3572
+ },
+ {
+ "epoch": 49.62909567496723,
+ "grad_norm": 0.22302201390266418,
+ "learning_rate": 0.0006,
+ "loss": 3.5871644020080566,
+ "step": 3573
+ },
+ {
+ "epoch": 49.643075578855395,
+ "grad_norm": 0.21942365169525146,
+ "learning_rate": 0.0006,
+ "loss": 3.596029043197632,
+ "step": 3574
+ },
+ {
+ "epoch": 49.65705548274356,
+ "grad_norm": 0.2627110481262207,
+ "learning_rate": 0.0006,
+ "loss": 3.5900766849517822,
+ "step": 3575
+ },
+ {
+ "epoch": 49.671035386631715,
+ "grad_norm": 0.28253448009490967,
+ "learning_rate": 0.0006,
+ "loss": 3.599386215209961,
+ "step": 3576
+ },
+ {
+ "epoch": 49.68501529051988,
+ "grad_norm": 0.24279426038265228,
+ "learning_rate": 0.0006,
+ "loss": 3.580909013748169,
+ "step": 3577
+ },
+ {
+ "epoch": 49.69899519440804,
+ "grad_norm": 0.22092898190021515,
+ "learning_rate": 0.0006,
+ "loss": 3.6043782234191895,
+ "step": 3578
+ },
+ {
+ "epoch": 49.7129750982962,
+ "grad_norm": 0.23356051743030548,
+ "learning_rate": 0.0006,
+ "loss": 3.6103105545043945,
+ "step": 3579
+ },
+ {
+ "epoch": 49.72695500218436,
+ "grad_norm": 0.24508118629455566,
+ "learning_rate": 0.0006,
+ "loss": 3.612980365753174,
+ "step": 3580
+ },
+ {
+ "epoch": 49.74093490607252,
+ "grad_norm": 0.2501833438873291,
+ "learning_rate": 0.0006,
+ "loss": 3.6111063957214355,
+ "step": 3581
+ },
+ {
+ "epoch": 49.75491480996068,
+ "grad_norm": 0.2263427972793579,
+ "learning_rate": 0.0006,
+ "loss": 3.5709285736083984,
+ "step": 3582
+ },
+ {
+ "epoch": 49.768894713848844,
+ "grad_norm": 0.19881728291511536,
+ "learning_rate": 0.0006,
+ "loss": 3.5836503505706787,
+ "step": 3583
+ },
+ {
+ "epoch": 49.782874617737,
+ "grad_norm": 0.22516517341136932,
+ "learning_rate": 0.0006,
+ "loss": 3.5797667503356934,
+ "step": 3584
+ },
+ {
+ "epoch": 49.796854521625164,
+ "grad_norm": 0.22347061336040497,
+ "learning_rate": 0.0006,
+ "loss": 3.6245951652526855,
+ "step": 3585
+ },
+ {
+ "epoch": 49.81083442551333,
+ "grad_norm": 0.2062593549489975,
+ "learning_rate": 0.0006,
+ "loss": 3.607572317123413,
+ "step": 3586
+ },
+ {
+ "epoch": 49.824814329401484,
+ "grad_norm": 0.20671074092388153,
+ "learning_rate": 0.0006,
+ "loss": 3.5671472549438477,
+ "step": 3587
+ },
+ {
+ "epoch": 49.83879423328965,
+ "grad_norm": 0.19981902837753296,
+ "learning_rate": 0.0006,
+ "loss": 3.6084837913513184,
+ "step": 3588
+ },
+ {
+ "epoch": 49.8527741371778,
+ "grad_norm": 0.2004556804895401,
+ "learning_rate": 0.0006,
+ "loss": 3.631455898284912,
+ "step": 3589
+ },
+ {
+ "epoch": 49.86675404106597,
+ "grad_norm": 0.20990414917469025,
+ "learning_rate": 0.0006,
+ "loss": 3.6017699241638184,
+ "step": 3590
+ },
+ {
+ "epoch": 49.88073394495413,
+ "grad_norm": 0.19016146659851074,
+ "learning_rate": 0.0006,
+ "loss": 3.6110801696777344,
+ "step": 3591
+ },
+ {
+ "epoch": 49.89471384884229,
+ "grad_norm": 0.2015834003686905,
+ "learning_rate": 0.0006,
+ "loss": 3.58852481842041,
+ "step": 3592
+ },
+ {
+ "epoch": 49.90869375273045,
+ "grad_norm": 0.205678328871727,
+ "learning_rate": 0.0006,
+ "loss": 3.581789970397949,
+ "step": 3593
+ },
+ {
+ "epoch": 49.92267365661861,
+ "grad_norm": 0.20975211262702942,
+ "learning_rate": 0.0006,
+ "loss": 3.6126320362091064,
+ "step": 3594
+ },
+ {
+ "epoch": 49.93665356050677,
+ "grad_norm": 0.20510081946849823,
+ "learning_rate": 0.0006,
+ "loss": 3.5970656871795654,
+ "step": 3595
+ },
+ {
+ "epoch": 49.95063346439493,
+ "grad_norm": 0.19842886924743652,
+ "learning_rate": 0.0006,
+ "loss": 3.6055545806884766,
+ "step": 3596
+ },
+ {
+ "epoch": 49.964613368283096,
+ "grad_norm": 0.20551791787147522,
+ "learning_rate": 0.0006,
+ "loss": 3.5861949920654297,
+ "step": 3597
+ },
+ {
+ "epoch": 49.97859327217125,
+ "grad_norm": 0.21147456765174866,
+ "learning_rate": 0.0006,
+ "loss": 3.585934638977051,
+ "step": 3598
+ },
+ {
+ "epoch": 49.992573176059416,
+ "grad_norm": 0.21793442964553833,
+ "learning_rate": 0.0006,
+ "loss": 3.5956411361694336,
+ "step": 3599
+ },
+ {
+ "epoch": 50.0,
+ "grad_norm": 0.24623161554336548,
+ "learning_rate": 0.0006,
+ "loss": 3.623453140258789,
+ "step": 3600
+ },
+ {
+ "epoch": 50.0,
+ "eval_loss": 3.9807891845703125,
+ "eval_runtime": 45.7708,
+ "eval_samples_per_second": 53.353,
+ "eval_steps_per_second": 3.343,
+ "step": 3600
+ },
+ {
+ "epoch": 50.01397990388816,
+ "grad_norm": 0.22322626411914825,
+ "learning_rate": 0.0006,
+ "loss": 3.5475401878356934,
+ "step": 3601
+ },
+ {
+ "epoch": 50.02795980777632,
+ "grad_norm": 0.21957066655158997,
+ "learning_rate": 0.0006,
+ "loss": 3.5616683959960938,
+ "step": 3602
+ },
+ {
+ "epoch": 50.04193971166448,
+ "grad_norm": 0.22030551731586456,
+ "learning_rate": 0.0006,
+ "loss": 3.56367826461792,
+ "step": 3603
+ },
+ {
+ "epoch": 50.05591961555265,
+ "grad_norm": 0.21536092460155487,
+ "learning_rate": 0.0006,
+ "loss": 3.5613503456115723,
+ "step": 3604
+ },
+ {
+ "epoch": 50.0698995194408,
+ "grad_norm": 0.22454269230365753,
+ "learning_rate": 0.0006,
+ "loss": 3.5348987579345703,
+ "step": 3605
+ },
+ {
+ "epoch": 50.083879423328966,
+ "grad_norm": 0.2281617820262909,
+ "learning_rate": 0.0006,
+ "loss": 3.5722241401672363,
+ "step": 3606
+ },
+ {
+ "epoch": 50.09785932721712,
+ "grad_norm": 0.23318710923194885,
+ "learning_rate": 0.0006,
+ "loss": 3.559063673019409,
+ "step": 3607
+ },
+ {
+ "epoch": 50.111839231105286,
+ "grad_norm": 0.2277889847755432,
+ "learning_rate": 0.0006,
+ "loss": 3.5632925033569336,
+ "step": 3608
+ },
+ {
+ "epoch": 50.12581913499345,
+ "grad_norm": 0.2317705601453781,
+ "learning_rate": 0.0006,
+ "loss": 3.5835886001586914,
+ "step": 3609
+ },
+ {
+ "epoch": 50.139799038881605,
+ "grad_norm": 0.21388863027095795,
+ "learning_rate": 0.0006,
+ "loss": 3.5976145267486572,
+ "step": 3610
+ },
+ {
+ "epoch": 50.15377894276977,
+ "grad_norm": 0.2070954293012619,
+ "learning_rate": 0.0006,
+ "loss": 3.5486221313476562,
+ "step": 3611
+ },
+ {
+ "epoch": 50.16775884665793,
+ "grad_norm": 0.21602077782154083,
+ "learning_rate": 0.0006,
+ "loss": 3.5897607803344727,
+ "step": 3612
+ },
+ {
+ "epoch": 50.18173875054609,
+ "grad_norm": 0.21106162667274475,
+ "learning_rate": 0.0006,
+ "loss": 3.5587167739868164,
+ "step": 3613
+ },
+ {
+ "epoch": 50.19571865443425,
+ "grad_norm": 0.2047950178384781,
+ "learning_rate": 0.0006,
+ "loss": 3.576798915863037,
+ "step": 3614
+ },
+ {
+ "epoch": 50.20969855832241,
+ "grad_norm": 0.2204097956418991,
+ "learning_rate": 0.0006,
+ "loss": 3.5466837882995605,
+ "step": 3615
+ },
+ {
+ "epoch": 50.22367846221057,
+ "grad_norm": 0.2220875471830368,
+ "learning_rate": 0.0006,
+ "loss": 3.5722036361694336,
+ "step": 3616
+ },
+ {
+ "epoch": 50.237658366098735,
+ "grad_norm": 0.2250797003507614,
+ "learning_rate": 0.0006,
+ "loss": 3.566347122192383,
+ "step": 3617
+ },
+ {
+ "epoch": 50.25163826998689,
+ "grad_norm": 0.22837485373020172,
+ "learning_rate": 0.0006,
+ "loss": 3.5673274993896484,
+ "step": 3618
+ },
+ {
+ "epoch": 50.265618173875055,
+ "grad_norm": 0.2281104475259781,
+ "learning_rate": 0.0006,
+ "loss": 3.5543737411499023,
+ "step": 3619
+ },
+ {
+ "epoch": 50.27959807776322,
+ "grad_norm": 0.2052381932735443,
+ "learning_rate": 0.0006,
+ "loss": 3.566401958465576,
+ "step": 3620
+ },
+ {
+ "epoch": 50.293577981651374,
+ "grad_norm": 0.2125921994447708,
+ "learning_rate": 0.0006,
+ "loss": 3.5467424392700195,
+ "step": 3621
+ },
+ {
+ "epoch": 50.30755788553954,
+ "grad_norm": 0.22641244530677795,
+ "learning_rate": 0.0006,
+ "loss": 3.548497200012207,
+ "step": 3622
+ },
+ {
+ "epoch": 50.3215377894277,
+ "grad_norm": 0.23039482533931732,
+ "learning_rate": 0.0006,
+ "loss": 3.5948381423950195,
+ "step": 3623
+ },
+ {
+ "epoch": 50.33551769331586,
+ "grad_norm": 0.22753404080867767,
+ "learning_rate": 0.0006,
+ "loss": 3.541825532913208,
+ "step": 3624
+ },
+ {
+ "epoch": 50.34949759720402,
+ "grad_norm": 0.2528170347213745,
+ "learning_rate": 0.0006,
+ "loss": 3.5937235355377197,
+ "step": 3625
+ },
+ {
+ "epoch": 50.36347750109218,
+ "grad_norm": 0.25434595346450806,
+ "learning_rate": 0.0006,
+ "loss": 3.5779776573181152,
+ "step": 3626
+ },
+ {
+ "epoch": 50.37745740498034,
+ "grad_norm": 0.22519059479236603,
+ "learning_rate": 0.0006,
+ "loss": 3.5456271171569824,
+ "step": 3627
+ },
+ {
+ "epoch": 50.391437308868504,
+ "grad_norm": 0.2077232301235199,
+ "learning_rate": 0.0006,
+ "loss": 3.5693111419677734,
+ "step": 3628
+ },
+ {
+ "epoch": 50.40541721275666,
+ "grad_norm": 0.20925411581993103,
+ "learning_rate": 0.0006,
+ "loss": 3.6063997745513916,
+ "step": 3629
+ },
+ {
+ "epoch": 50.419397116644824,
+ "grad_norm": 0.2114555686712265,
+ "learning_rate": 0.0006,
+ "loss": 3.5676894187927246,
+ "step": 3630
+ },
+ {
+ "epoch": 50.43337702053299,
+ "grad_norm": 0.23759354650974274,
+ "learning_rate": 0.0006,
+ "loss": 3.5465126037597656,
+ "step": 3631
+ },
+ {
+ "epoch": 50.44735692442114,
+ "grad_norm": 0.23809516429901123,
+ "learning_rate": 0.0006,
+ "loss": 3.571600914001465,
+ "step": 3632
+ },
+ {
+ "epoch": 50.46133682830931,
+ "grad_norm": 0.20501303672790527,
+ "learning_rate": 0.0006,
+ "loss": 3.573550224304199,
+ "step": 3633
+ },
+ {
+ "epoch": 50.47531673219746,
+ "grad_norm": 0.21562306582927704,
+ "learning_rate": 0.0006,
+ "loss": 3.5625600814819336,
+ "step": 3634
+ },
+ {
+ "epoch": 50.489296636085626,
+ "grad_norm": 0.20469479262828827,
+ "learning_rate": 0.0006,
+ "loss": 3.5737175941467285,
+ "step": 3635
+ },
+ {
+ "epoch": 50.50327653997379,
+ "grad_norm": 0.2078634798526764,
+ "learning_rate": 0.0006,
+ "loss": 3.5691545009613037,
+ "step": 3636
+ },
+ {
+ "epoch": 50.517256443861946,
+ "grad_norm": 0.20340897142887115,
+ "learning_rate": 0.0006,
+ "loss": 3.583918571472168,
+ "step": 3637
+ },
+ {
+ "epoch": 50.53123634775011,
+ "grad_norm": 0.2006944715976715,
+ "learning_rate": 0.0006,
+ "loss": 3.596034049987793,
+ "step": 3638
+ },
+ {
+ "epoch": 50.54521625163827,
+ "grad_norm": 0.19281257688999176,
+ "learning_rate": 0.0006,
+ "loss": 3.5993080139160156,
+ "step": 3639
+ },
+ {
+ "epoch": 50.55919615552643,
+ "grad_norm": 0.19528807699680328,
+ "learning_rate": 0.0006,
+ "loss": 3.6108102798461914,
+ "step": 3640
+ },
+ {
+ "epoch": 50.57317605941459,
+ "grad_norm": 0.19329112768173218,
+ "learning_rate": 0.0006,
+ "loss": 3.5964512825012207,
+ "step": 3641
+ },
+ {
+ "epoch": 50.58715596330275,
+ "grad_norm": 0.1928209513425827,
+ "learning_rate": 0.0006,
+ "loss": 3.5927724838256836,
+ "step": 3642
+ },
+ {
+ "epoch": 50.60113586719091,
+ "grad_norm": 0.20212236046791077,
+ "learning_rate": 0.0006,
+ "loss": 3.5778708457946777,
+ "step": 3643
+ },
+ {
+ "epoch": 50.615115771079076,
+ "grad_norm": 0.22244620323181152,
+ "learning_rate": 0.0006,
+ "loss": 3.6219539642333984,
+ "step": 3644
+ },
+ {
+ "epoch": 50.62909567496723,
+ "grad_norm": 0.2659119963645935,
+ "learning_rate": 0.0006,
+ "loss": 3.578831195831299,
+ "step": 3645
+ },
+ {
+ "epoch": 50.643075578855395,
+ "grad_norm": 0.2837344706058502,
+ "learning_rate": 0.0006,
+ "loss": 3.587677240371704,
+ "step": 3646
+ },
+ {
+ "epoch": 50.65705548274356,
+ "grad_norm": 0.26747965812683105,
+ "learning_rate": 0.0006,
+ "loss": 3.611286163330078,
+ "step": 3647
+ },
+ {
+ "epoch": 50.671035386631715,
+ "grad_norm": 0.24604788422584534,
+ "learning_rate": 0.0006,
+ "loss": 3.5740575790405273,
+ "step": 3648
+ },
+ {
+ "epoch": 50.68501529051988,
+ "grad_norm": 0.2379457652568817,
+ "learning_rate": 0.0006,
+ "loss": 3.5997209548950195,
+ "step": 3649
+ },
+ {
+ "epoch": 50.69899519440804,
+ "grad_norm": 0.2296321839094162,
+ "learning_rate": 0.0006,
+ "loss": 3.5975162982940674,
+ "step": 3650
+ },
+ {
+ "epoch": 50.7129750982962,
+ "grad_norm": 0.22054627537727356,
+ "learning_rate": 0.0006,
+ "loss": 3.5821738243103027,
+ "step": 3651
+ },
+ {
+ "epoch": 50.72695500218436,
+ "grad_norm": 0.22114980220794678,
+ "learning_rate": 0.0006,
+ "loss": 3.5769970417022705,
+ "step": 3652
+ },
+ {
+ "epoch": 50.74093490607252,
+ "grad_norm": 0.21389314532279968,
+ "learning_rate": 0.0006,
+ "loss": 3.5952796936035156,
+ "step": 3653
+ },
+ {
+ "epoch": 50.75491480996068,
+ "grad_norm": 0.21069210767745972,
+ "learning_rate": 0.0006,
+ "loss": 3.5884671211242676,
+ "step": 3654
+ },
+ {
+ "epoch": 50.768894713848844,
+ "grad_norm": 0.22028805315494537,
+ "learning_rate": 0.0006,
+ "loss": 3.593442440032959,
+ "step": 3655
+ },
+ {
+ "epoch": 50.782874617737,
+ "grad_norm": 0.21296948194503784,
+ "learning_rate": 0.0006,
+ "loss": 3.5656774044036865,
+ "step": 3656
+ },
+ {
+ "epoch": 50.796854521625164,
+ "grad_norm": 0.19871588051319122,
+ "learning_rate": 0.0006,
+ "loss": 3.5939064025878906,
+ "step": 3657
+ },
+ {
+ "epoch": 50.81083442551333,
+ "grad_norm": 0.19523470103740692,
+ "learning_rate": 0.0006,
+ "loss": 3.5806071758270264,
+ "step": 3658
+ },
+ {
+ "epoch": 50.824814329401484,
+ "grad_norm": 0.18718191981315613,
+ "learning_rate": 0.0006,
+ "loss": 3.5903120040893555,
+ "step": 3659
+ },
+ {
+ "epoch": 50.83879423328965,
+ "grad_norm": 0.18796689808368683,
+ "learning_rate": 0.0006,
+ "loss": 3.5799593925476074,
+ "step": 3660
+ },
+ {
+ "epoch": 50.8527741371778,
+ "grad_norm": 0.21794569492340088,
+ "learning_rate": 0.0006,
+ "loss": 3.5712361335754395,
+ "step": 3661
+ },
+ {
+ "epoch": 50.86675404106597,
+ "grad_norm": 0.2374759465456009,
+ "learning_rate": 0.0006,
+ "loss": 3.602503776550293,
+ "step": 3662
+ },
+ {
+ "epoch": 50.88073394495413,
+ "grad_norm": 0.20213527977466583,
+ "learning_rate": 0.0006,
+ "loss": 3.5756399631500244,
+ "step": 3663
+ },
+ {
+ "epoch": 50.89471384884229,
+ "grad_norm": 0.1875160187482834,
+ "learning_rate": 0.0006,
+ "loss": 3.625436305999756,
+ "step": 3664
+ },
+ {
+ "epoch": 50.90869375273045,
+ "grad_norm": 0.19908255338668823,
+ "learning_rate": 0.0006,
+ "loss": 3.592522621154785,
+ "step": 3665
+ },
+ {
+ "epoch": 50.92267365661861,
+ "grad_norm": 0.20776167511940002,
+ "learning_rate": 0.0006,
+ "loss": 3.5777883529663086,
+ "step": 3666
+ },
+ {
+ "epoch": 50.93665356050677,
+ "grad_norm": 0.19510093331336975,
+ "learning_rate": 0.0006,
+ "loss": 3.587306022644043,
+ "step": 3667
+ },
+ {
+ "epoch": 50.95063346439493,
+ "grad_norm": 0.2180490493774414,
+ "learning_rate": 0.0006,
+ "loss": 3.5855464935302734,
+ "step": 3668
+ },
+ {
+ "epoch": 50.964613368283096,
+ "grad_norm": 0.19967055320739746,
+ "learning_rate": 0.0006,
+ "loss": 3.609689235687256,
+ "step": 3669
+ },
+ {
+ "epoch": 50.97859327217125,
+ "grad_norm": 0.2081584632396698,
+ "learning_rate": 0.0006,
+ "loss": 3.625236749649048,
+ "step": 3670
+ },
+ {
+ "epoch": 50.992573176059416,
+ "grad_norm": 0.2312266230583191,
+ "learning_rate": 0.0006,
+ "loss": 3.5977330207824707,
+ "step": 3671
+ },
+ {
+ "epoch": 51.0,
+ "grad_norm": 0.2464766502380371,
+ "learning_rate": 0.0006,
+ "loss": 3.610635995864868,
+ "step": 3672
+ },
+ {
+ "epoch": 51.0,
+ "eval_loss": 3.9810166358947754,
+ "eval_runtime": 45.5851,
+ "eval_samples_per_second": 53.57,
+ "eval_steps_per_second": 3.356,
+ "step": 3672
+ },
+ {
+ "epoch": 51.01397990388816,
+ "grad_norm": 0.22583232820034027,
+ "learning_rate": 0.0006,
+ "loss": 3.547168016433716,
+ "step": 3673
+ },
+ {
+ "epoch": 51.02795980777632,
+ "grad_norm": 0.23001070320606232,
+ "learning_rate": 0.0006,
+ "loss": 3.546207904815674,
+ "step": 3674
+ },
+ {
+ "epoch": 51.04193971166448,
+ "grad_norm": 0.21891392767429352,
+ "learning_rate": 0.0006,
+ "loss": 3.564371109008789,
+ "step": 3675
+ },
+ {
+ "epoch": 51.05591961555265,
+ "grad_norm": 0.22195076942443848,
+ "learning_rate": 0.0006,
+ "loss": 3.538297414779663,
+ "step": 3676
+ },
+ {
+ "epoch": 51.0698995194408,
+ "grad_norm": 0.24688288569450378,
+ "learning_rate": 0.0006,
+ "loss": 3.5705811977386475,
+ "step": 3677
+ },
+ {
+ "epoch": 51.083879423328966,
+ "grad_norm": 0.2731003165245056,
+ "learning_rate": 0.0006,
+ "loss": 3.530763626098633,
+ "step": 3678
+ },
+ {
+ "epoch": 51.09785932721712,
+ "grad_norm": 0.27474021911621094,
+ "learning_rate": 0.0006,
+ "loss": 3.5559208393096924,
+ "step": 3679
+ },
+ {
+ "epoch": 51.111839231105286,
+ "grad_norm": 0.26311439275741577,
+ "learning_rate": 0.0006,
+ "loss": 3.5698819160461426,
+ "step": 3680
+ },
+ {
+ "epoch": 51.12581913499345,
+ "grad_norm": 0.21895965933799744,
+ "learning_rate": 0.0006,
+ "loss": 3.567232370376587,
+ "step": 3681
+ },
+ {
+ "epoch": 51.139799038881605,
+ "grad_norm": 0.19598282873630524,
+ "learning_rate": 0.0006,
+ "loss": 3.6033718585968018,
+ "step": 3682
+ },
+ {
+ "epoch": 51.15377894276977,
+ "grad_norm": 0.2183268666267395,
+ "learning_rate": 0.0006,
+ "loss": 3.5599026679992676,
+ "step": 3683
+ },
+ {
+ "epoch": 51.16775884665793,
+ "grad_norm": 0.22657731175422668,
+ "learning_rate": 0.0006,
+ "loss": 3.532038688659668,
+ "step": 3684
+ },
+ {
+ "epoch": 51.18173875054609,
+ "grad_norm": 0.21979935467243195,
+ "learning_rate": 0.0006,
+ "loss": 3.544640064239502,
+ "step": 3685
+ },
+ {
+ "epoch": 51.19571865443425,
+ "grad_norm": 0.20581361651420593,
+ "learning_rate": 0.0006,
+ "loss": 3.579803466796875,
+ "step": 3686
+ },
+ {
+ "epoch": 51.20969855832241,
+ "grad_norm": 0.22677212953567505,
+ "learning_rate": 0.0006,
+ "loss": 3.576796054840088,
+ "step": 3687
+ },
+ {
+ "epoch": 51.22367846221057,
+ "grad_norm": 0.2599104940891266,
+ "learning_rate": 0.0006,
+ "loss": 3.5657899379730225,
+ "step": 3688
+ },
+ {
+ "epoch": 51.237658366098735,
+ "grad_norm": 0.23320309817790985,
+ "learning_rate": 0.0006,
+ "loss": 3.5537824630737305,
+ "step": 3689
+ },
+ {
+ "epoch": 51.25163826998689,
+ "grad_norm": 0.2345186471939087,
+ "learning_rate": 0.0006,
+ "loss": 3.5699901580810547,
+ "step": 3690
+ },
+ {
+ "epoch": 51.265618173875055,
+ "grad_norm": 0.24723312258720398,
+ "learning_rate": 0.0006,
+ "loss": 3.553495168685913,
+ "step": 3691
+ },
+ {
+ "epoch": 51.27959807776322,
+ "grad_norm": 0.24195604026317596,
+ "learning_rate": 0.0006,
+ "loss": 3.6008248329162598,
+ "step": 3692
+ },
+ {
+ "epoch": 51.293577981651374,
+ "grad_norm": 0.23011726140975952,
+ "learning_rate": 0.0006,
+ "loss": 3.5842812061309814,
+ "step": 3693
+ },
+ {
+ "epoch": 51.30755788553954,
+ "grad_norm": 0.23412185907363892,
+ "learning_rate": 0.0006,
+ "loss": 3.5648040771484375,
+ "step": 3694
+ },
+ {
+ "epoch": 51.3215377894277,
+ "grad_norm": 0.22911828756332397,
+ "learning_rate": 0.0006,
+ "loss": 3.5599000453948975,
+ "step": 3695
+ },
+ {
+ "epoch": 51.33551769331586,
+ "grad_norm": 0.20045386254787445,
+ "learning_rate": 0.0006,
+ "loss": 3.559370517730713,
+ "step": 3696
+ },
+ {
+ "epoch": 51.34949759720402,
+ "grad_norm": 0.24723322689533234,
+ "learning_rate": 0.0006,
+ "loss": 3.5734081268310547,
+ "step": 3697
+ },
+ {
+ "epoch": 51.36347750109218,
+ "grad_norm": 0.28003066778182983,
+ "learning_rate": 0.0006,
+ "loss": 3.574591636657715,
+ "step": 3698
+ },
+ {
+ "epoch": 51.37745740498034,
+ "grad_norm": 0.27969157695770264,
+ "learning_rate": 0.0006,
+ "loss": 3.5703907012939453,
+ "step": 3699
+ },
+ {
+ "epoch": 51.391437308868504,
+ "grad_norm": 0.2352922111749649,
+ "learning_rate": 0.0006,
+ "loss": 3.540452480316162,
+ "step": 3700
+ },
+ {
+ "epoch": 51.40541721275666,
+ "grad_norm": 0.21332240104675293,
+ "learning_rate": 0.0006,
+ "loss": 3.5883522033691406,
+ "step": 3701
+ },
+ {
+ "epoch": 51.419397116644824,
+ "grad_norm": 0.2021809071302414,
+ "learning_rate": 0.0006,
+ "loss": 3.567544460296631,
+ "step": 3702
+ },
+ {
+ "epoch": 51.43337702053299,
+ "grad_norm": 0.23054654896259308,
+ "learning_rate": 0.0006,
+ "loss": 3.5927062034606934,
+ "step": 3703
+ },
+ {
+ "epoch": 51.44735692442114,
+ "grad_norm": 0.22398747503757477,
+ "learning_rate": 0.0006,
+ "loss": 3.5977213382720947,
+ "step": 3704
+ },
+ {
+ "epoch": 51.46133682830931,
+ "grad_norm": 0.2021128088235855,
+ "learning_rate": 0.0006,
+ "loss": 3.585836887359619,
+ "step": 3705
+ },
+ {
+ "epoch": 51.47531673219746,
+ "grad_norm": 0.23031292855739594,
+ "learning_rate": 0.0006,
+ "loss": 3.532315731048584,
+ "step": 3706
+ },
+ {
+ "epoch": 51.489296636085626,
+ "grad_norm": 0.26744455099105835,
+ "learning_rate": 0.0006,
+ "loss": 3.585782289505005,
+ "step": 3707
+ },
+ {
+ "epoch": 51.50327653997379,
+ "grad_norm": 0.2508980929851532,
+ "learning_rate": 0.0006,
+ "loss": 3.550276279449463,
+ "step": 3708
+ },
+ {
+ "epoch": 51.517256443861946,
+ "grad_norm": 0.2180585265159607,
+ "learning_rate": 0.0006,
+ "loss": 3.566798210144043,
+ "step": 3709
+ },
+ {
+ "epoch": 51.53123634775011,
+ "grad_norm": 0.18508869409561157,
+ "learning_rate": 0.0006,
+ "loss": 3.5295116901397705,
+ "step": 3710
+ },
+ {
+ "epoch": 51.54521625163827,
+ "grad_norm": 0.19017672538757324,
+ "learning_rate": 0.0006,
+ "loss": 3.5932717323303223,
+ "step": 3711
+ },
+ {
+ "epoch": 51.55919615552643,
+ "grad_norm": 0.2228020876646042,
+ "learning_rate": 0.0006,
+ "loss": 3.5660648345947266,
+ "step": 3712
+ },
+ {
+ "epoch": 51.57317605941459,
+ "grad_norm": 0.22948148846626282,
+ "learning_rate": 0.0006,
+ "loss": 3.5785627365112305,
+ "step": 3713
+ },
+ {
+ "epoch": 51.58715596330275,
+ "grad_norm": 0.2438911497592926,
+ "learning_rate": 0.0006,
+ "loss": 3.5885257720947266,
+ "step": 3714
+ },
+ {
+ "epoch": 51.60113586719091,
+ "grad_norm": 0.25012296438217163,
+ "learning_rate": 0.0006,
+ "loss": 3.577232599258423,
+ "step": 3715
+ },
+ {
+ "epoch": 51.615115771079076,
+ "grad_norm": 0.27102336287498474,
+ "learning_rate": 0.0006,
+ "loss": 3.5600078105926514,
+ "step": 3716
+ },
+ {
+ "epoch": 51.62909567496723,
+ "grad_norm": 0.26425355672836304,
+ "learning_rate": 0.0006,
+ "loss": 3.5694093704223633,
+ "step": 3717
+ },
+ {
+ "epoch": 51.643075578855395,
+ "grad_norm": 0.24292822182178497,
+ "learning_rate": 0.0006,
+ "loss": 3.5774331092834473,
+ "step": 3718
+ },
+ {
+ "epoch": 51.65705548274356,
+ "grad_norm": 0.22668084502220154,
+ "learning_rate": 0.0006,
+ "loss": 3.5912742614746094,
+ "step": 3719
+ },
+ {
+ "epoch": 51.671035386631715,
+ "grad_norm": 0.2090575248003006,
+ "learning_rate": 0.0006,
+ "loss": 3.5473170280456543,
+ "step": 3720
+ },
+ {
+ "epoch": 51.68501529051988,
+ "grad_norm": 0.22276616096496582,
+ "learning_rate": 0.0006,
+ "loss": 3.6076784133911133,
+ "step": 3721
+ },
+ {
+ "epoch": 51.69899519440804,
+ "grad_norm": 0.22105294466018677,
+ "learning_rate": 0.0006,
+ "loss": 3.5820791721343994,
+ "step": 3722
+ },
+ {
+ "epoch": 51.7129750982962,
+ "grad_norm": 0.19231240451335907,
+ "learning_rate": 0.0006,
+ "loss": 3.6017708778381348,
+ "step": 3723
+ },
+ {
+ "epoch": 51.72695500218436,
+ "grad_norm": 0.2050354927778244,
+ "learning_rate": 0.0006,
+ "loss": 3.5967769622802734,
+ "step": 3724
+ },
+ {
+ "epoch": 51.74093490607252,
+ "grad_norm": 0.19779305160045624,
+ "learning_rate": 0.0006,
+ "loss": 3.597214698791504,
+ "step": 3725
+ },
+ {
+ "epoch": 51.75491480996068,
+ "grad_norm": 0.22394844889640808,
+ "learning_rate": 0.0006,
+ "loss": 3.574063301086426,
+ "step": 3726
+ },
+ {
+ "epoch": 51.768894713848844,
+ "grad_norm": 0.2262638807296753,
+ "learning_rate": 0.0006,
+ "loss": 3.5754079818725586,
+ "step": 3727
+ },
+ {
+ "epoch": 51.782874617737,
+ "grad_norm": 0.2168288677930832,
+ "learning_rate": 0.0006,
+ "loss": 3.6079599857330322,
+ "step": 3728
+ },
+ {
+ "epoch": 51.796854521625164,
+ "grad_norm": 0.2035517394542694,
+ "learning_rate": 0.0006,
+ "loss": 3.5948667526245117,
+ "step": 3729
+ },
+ {
+ "epoch": 51.81083442551333,
+ "grad_norm": 0.20529425144195557,
+ "learning_rate": 0.0006,
+ "loss": 3.5589542388916016,
+ "step": 3730
+ },
+ {
+ "epoch": 51.824814329401484,
+ "grad_norm": 0.2464100867509842,
+ "learning_rate": 0.0006,
+ "loss": 3.5947155952453613,
+ "step": 3731
+ },
+ {
+ "epoch": 51.83879423328965,
+ "grad_norm": 0.28043219447135925,
+ "learning_rate": 0.0006,
+ "loss": 3.6102852821350098,
+ "step": 3732
+ },
+ {
+ "epoch": 51.8527741371778,
+ "grad_norm": 0.2879013121128082,
+ "learning_rate": 0.0006,
+ "loss": 3.5903573036193848,
+ "step": 3733
+ },
+ {
+ "epoch": 51.86675404106597,
+ "grad_norm": 0.2532044053077698,
+ "learning_rate": 0.0006,
+ "loss": 3.5704729557037354,
+ "step": 3734
+ },
+ {
+ "epoch": 51.88073394495413,
+ "grad_norm": 0.25126248598098755,
+ "learning_rate": 0.0006,
+ "loss": 3.5449633598327637,
+ "step": 3735
+ },
+ {
+ "epoch": 51.89471384884229,
+ "grad_norm": 0.2494364082813263,
+ "learning_rate": 0.0006,
+ "loss": 3.5825607776641846,
+ "step": 3736
+ },
+ {
+ "epoch": 51.90869375273045,
+ "grad_norm": 0.24867761135101318,
+ "learning_rate": 0.0006,
+ "loss": 3.5998034477233887,
+ "step": 3737
+ },
+ {
+ "epoch": 51.92267365661861,
+ "grad_norm": 0.2552012801170349,
+ "learning_rate": 0.0006,
+ "loss": 3.5487377643585205,
+ "step": 3738
+ },
+ {
+ "epoch": 51.93665356050677,
+ "grad_norm": 0.2243119329214096,
+ "learning_rate": 0.0006,
+ "loss": 3.6081466674804688,
+ "step": 3739
+ },
+ {
+ "epoch": 51.95063346439493,
+ "grad_norm": 0.2106700837612152,
+ "learning_rate": 0.0006,
+ "loss": 3.607586622238159,
+ "step": 3740
+ },
+ {
+ "epoch": 51.964613368283096,
+ "grad_norm": 0.2207096666097641,
+ "learning_rate": 0.0006,
+ "loss": 3.6094579696655273,
+ "step": 3741
+ },
+ {
+ "epoch": 51.97859327217125,
+ "grad_norm": 0.2310071736574173,
+ "learning_rate": 0.0006,
+ "loss": 3.5837807655334473,
+ "step": 3742
+ },
+ {
+ "epoch": 51.992573176059416,
+ "grad_norm": 0.258770614862442,
+ "learning_rate": 0.0006,
+ "loss": 3.639329433441162,
+ "step": 3743
+ },
+ {
+ "epoch": 52.0,
+ "grad_norm": 0.24004915356636047,
+ "learning_rate": 0.0006,
+ "loss": 3.6178512573242188,
+ "step": 3744
+ },
+ {
+ "epoch": 52.0,
+ "eval_loss": 3.97371244430542,
+ "eval_runtime": 46.1923,
+ "eval_samples_per_second": 52.866,
+ "eval_steps_per_second": 3.312,
+ "step": 3744
+ },
+ {
+ "epoch": 52.01397990388816,
+ "grad_norm": 0.21953323483467102,
+ "learning_rate": 0.0006,
+ "loss": 3.5929579734802246,
+ "step": 3745
+ },
+ {
+ "epoch": 52.02795980777632,
+ "grad_norm": 0.25547415018081665,
+ "learning_rate": 0.0006,
+ "loss": 3.5762600898742676,
+ "step": 3746
+ },
+ {
+ "epoch": 52.04193971166448,
+ "grad_norm": 0.28905144333839417,
+ "learning_rate": 0.0006,
+ "loss": 3.5794596672058105,
+ "step": 3747
+ },
+ {
+ "epoch": 52.05591961555265,
+ "grad_norm": 0.2618118226528168,
+ "learning_rate": 0.0006,
+ "loss": 3.543205499649048,
+ "step": 3748
+ },
+ {
+ "epoch": 52.0698995194408,
+ "grad_norm": 0.2288745492696762,
+ "learning_rate": 0.0006,
+ "loss": 3.562770366668701,
+ "step": 3749
+ },
+ {
+ "epoch": 52.083879423328966,
+ "grad_norm": 0.25327110290527344,
+ "learning_rate": 0.0006,
+ "loss": 3.5405054092407227,
+ "step": 3750
+ },
+ {
+ "epoch": 52.09785932721712,
+ "grad_norm": 0.2721746861934662,
+ "learning_rate": 0.0006,
+ "loss": 3.5650479793548584,
+ "step": 3751
+ },
+ {
+ "epoch": 52.111839231105286,
+ "grad_norm": 0.2890555262565613,
+ "learning_rate": 0.0006,
+ "loss": 3.556122303009033,
+ "step": 3752
+ },
+ {
+ "epoch": 52.12581913499345,
+ "grad_norm": 0.30541476607322693,
+ "learning_rate": 0.0006,
+ "loss": 3.544271469116211,
+ "step": 3753
+ },
+ {
+ "epoch": 52.139799038881605,
+ "grad_norm": 0.2555760443210602,
+ "learning_rate": 0.0006,
+ "loss": 3.5452728271484375,
+ "step": 3754
+ },
+ {
+ "epoch": 52.15377894276977,
+ "grad_norm": 0.2653098404407501,
+ "learning_rate": 0.0006,
+ "loss": 3.57212495803833,
+ "step": 3755
+ },
+ {
+ "epoch": 52.16775884665793,
+ "grad_norm": 0.2479168176651001,
+ "learning_rate": 0.0006,
+ "loss": 3.5893373489379883,
+ "step": 3756
+ },
+ {
+ "epoch": 52.18173875054609,
+ "grad_norm": 0.21718256175518036,
+ "learning_rate": 0.0006,
+ "loss": 3.5616965293884277,
+ "step": 3757
+ },
+ {
+ "epoch": 52.19571865443425,
+ "grad_norm": 0.22033235430717468,
+ "learning_rate": 0.0006,
+ "loss": 3.566401481628418,
+ "step": 3758
+ },
+ {
+ "epoch": 52.20969855832241,
+ "grad_norm": 0.2401825189590454,
+ "learning_rate": 0.0006,
+ "loss": 3.547682762145996,
+ "step": 3759
+ },
+ {
+ "epoch": 52.22367846221057,
+ "grad_norm": 0.24496418237686157,
+ "learning_rate": 0.0006,
+ "loss": 3.5405421257019043,
+ "step": 3760
+ },
+ {
+ "epoch": 52.237658366098735,
+ "grad_norm": 0.2311883270740509,
+ "learning_rate": 0.0006,
+ "loss": 3.5709781646728516,
+ "step": 3761
+ },
+ {
+ "epoch": 52.25163826998689,
+ "grad_norm": 0.20850200951099396,
+ "learning_rate": 0.0006,
+ "loss": 3.5563712120056152,
+ "step": 3762
+ },
+ {
+ "epoch": 52.265618173875055,
+ "grad_norm": 0.2073400765657425,
+ "learning_rate": 0.0006,
+ "loss": 3.542343854904175,
+ "step": 3763
+ },
+ {
+ "epoch": 52.27959807776322,
+ "grad_norm": 0.21886718273162842,
+ "learning_rate": 0.0006,
+ "loss": 3.5633034706115723,
+ "step": 3764
+ },
+ {
+ "epoch": 52.293577981651374,
+ "grad_norm": 0.2218562215566635,
+ "learning_rate": 0.0006,
+ "loss": 3.5644288063049316,
+ "step": 3765
+ },
+ {
+ "epoch": 52.30755788553954,
+ "grad_norm": 0.22043557465076447,
+ "learning_rate": 0.0006,
+ "loss": 3.564373731613159,
+ "step": 3766
+ },
+ {
+ "epoch": 52.3215377894277,
+ "grad_norm": 0.2095082402229309,
+ "learning_rate": 0.0006,
+ "loss": 3.5336289405822754,
+ "step": 3767
+ },
+ {
+ "epoch": 52.33551769331586,
+ "grad_norm": 0.21115876734256744,
+ "learning_rate": 0.0006,
+ "loss": 3.5761165618896484,
+ "step": 3768
+ },
+ {
+ "epoch": 52.34949759720402,
+ "grad_norm": 0.21558400988578796,
+ "learning_rate": 0.0006,
+ "loss": 3.573495388031006,
+ "step": 3769
+ },
+ {
+ "epoch": 52.36347750109218,
+ "grad_norm": 0.213745579123497,
+ "learning_rate": 0.0006,
+ "loss": 3.572171211242676,
+ "step": 3770
+ },
+ {
+ "epoch": 52.37745740498034,
+ "grad_norm": 0.1926180124282837,
+ "learning_rate": 0.0006,
+ "loss": 3.532592535018921,
+ "step": 3771
+ },
+ {
+ "epoch": 52.391437308868504,
+ "grad_norm": 0.1993863731622696,
+ "learning_rate": 0.0006,
+ "loss": 3.551880359649658,
+ "step": 3772
+ },
+ {
+ "epoch": 52.40541721275666,
+ "grad_norm": 0.2018740326166153,
+ "learning_rate": 0.0006,
+ "loss": 3.557328701019287,
+ "step": 3773
+ },
+ {
+ "epoch": 52.419397116644824,
+ "grad_norm": 0.19035610556602478,
+ "learning_rate": 0.0006,
+ "loss": 3.600301504135132,
+ "step": 3774
+ },
+ {
+ "epoch": 52.43337702053299,
+ "grad_norm": 0.20069538056850433,
+ "learning_rate": 0.0006,
+ "loss": 3.5938944816589355,
+ "step": 3775
+ },
+ {
+ "epoch": 52.44735692442114,
+ "grad_norm": 0.21255625784397125,
+ "learning_rate": 0.0006,
+ "loss": 3.561086893081665,
+ "step": 3776
+ },
+ {
+ "epoch": 52.46133682830931,
+ "grad_norm": 0.20132070779800415,
+ "learning_rate": 0.0006,
+ "loss": 3.5525574684143066,
+ "step": 3777
+ },
+ {
+ "epoch": 52.47531673219746,
+ "grad_norm": 0.20152916014194489,
+ "learning_rate": 0.0006,
+ "loss": 3.5697402954101562,
+ "step": 3778
+ },
+ {
+ "epoch": 52.489296636085626,
+ "grad_norm": 0.1984269767999649,
+ "learning_rate": 0.0006,
+ "loss": 3.5686168670654297,
+ "step": 3779
+ },
+ {
+ "epoch": 52.50327653997379,
+ "grad_norm": 0.212612584233284,
+ "learning_rate": 0.0006,
+ "loss": 3.5522124767303467,
+ "step": 3780
+ },
+ {
+ "epoch": 52.517256443861946,
+ "grad_norm": 0.21382521092891693,
+ "learning_rate": 0.0006,
+ "loss": 3.5692944526672363,
+ "step": 3781
+ },
+ {
+ "epoch": 52.53123634775011,
+ "grad_norm": 0.2118486911058426,
+ "learning_rate": 0.0006,
+ "loss": 3.562495708465576,
+ "step": 3782
+ },
+ {
+ "epoch": 52.54521625163827,
+ "grad_norm": 0.22253486514091492,
+ "learning_rate": 0.0006,
+ "loss": 3.5709781646728516,
+ "step": 3783
+ },
+ {
+ "epoch": 52.55919615552643,
+ "grad_norm": 0.23701436817646027,
+ "learning_rate": 0.0006,
+ "loss": 3.548953056335449,
+ "step": 3784
+ },
+ {
+ "epoch": 52.57317605941459,
+ "grad_norm": 0.21345193684101105,
+ "learning_rate": 0.0006,
+ "loss": 3.543029308319092,
+ "step": 3785
+ },
+ {
+ "epoch": 52.58715596330275,
+ "grad_norm": 0.1854170262813568,
+ "learning_rate": 0.0006,
+ "loss": 3.5490989685058594,
+ "step": 3786
+ },
+ {
+ "epoch": 52.60113586719091,
+ "grad_norm": 0.23733633756637573,
+ "learning_rate": 0.0006,
+ "loss": 3.5800132751464844,
+ "step": 3787
+ },
+ {
+ "epoch": 52.615115771079076,
+ "grad_norm": 0.26175495982170105,
+ "learning_rate": 0.0006,
+ "loss": 3.562596321105957,
+ "step": 3788
+ },
+ {
+ "epoch": 52.62909567496723,
+ "grad_norm": 0.23134057223796844,
+ "learning_rate": 0.0006,
+ "loss": 3.5685765743255615,
+ "step": 3789
+ },
+ {
+ "epoch": 52.643075578855395,
+ "grad_norm": 0.1974988877773285,
+ "learning_rate": 0.0006,
+ "loss": 3.570517063140869,
+ "step": 3790
+ },
+ {
+ "epoch": 52.65705548274356,
+ "grad_norm": 0.20049697160720825,
+ "learning_rate": 0.0006,
+ "loss": 3.573286533355713,
+ "step": 3791
+ },
+ {
+ "epoch": 52.671035386631715,
+ "grad_norm": 0.1956445872783661,
+ "learning_rate": 0.0006,
+ "loss": 3.565880537033081,
+ "step": 3792
+ },
+ {
+ "epoch": 52.68501529051988,
+ "grad_norm": 0.2082354575395584,
+ "learning_rate": 0.0006,
+ "loss": 3.587278366088867,
+ "step": 3793
+ },
+ {
+ "epoch": 52.69899519440804,
+ "grad_norm": 0.20923161506652832,
+ "learning_rate": 0.0006,
+ "loss": 3.569469451904297,
+ "step": 3794
+ },
+ {
+ "epoch": 52.7129750982962,
+ "grad_norm": 0.20482848584651947,
+ "learning_rate": 0.0006,
+ "loss": 3.5826265811920166,
+ "step": 3795
+ },
+ {
+ "epoch": 52.72695500218436,
+ "grad_norm": 0.20411530137062073,
+ "learning_rate": 0.0006,
+ "loss": 3.5870275497436523,
+ "step": 3796
+ },
+ {
+ "epoch": 52.74093490607252,
+ "grad_norm": 0.2205485701560974,
+ "learning_rate": 0.0006,
+ "loss": 3.58900785446167,
+ "step": 3797
+ },
+ {
+ "epoch": 52.75491480996068,
+ "grad_norm": 0.21134008467197418,
+ "learning_rate": 0.0006,
+ "loss": 3.591036558151245,
+ "step": 3798
+ },
+ {
+ "epoch": 52.768894713848844,
+ "grad_norm": 0.20001831650733948,
+ "learning_rate": 0.0006,
+ "loss": 3.5670390129089355,
+ "step": 3799
+ },
+ {
+ "epoch": 52.782874617737,
+ "grad_norm": 0.2175939679145813,
+ "learning_rate": 0.0006,
+ "loss": 3.594132423400879,
+ "step": 3800
+ },
+ {
+ "epoch": 52.796854521625164,
+ "grad_norm": 0.22054694592952728,
+ "learning_rate": 0.0006,
+ "loss": 3.5565545558929443,
+ "step": 3801
+ },
+ {
+ "epoch": 52.81083442551333,
+ "grad_norm": 0.22901731729507446,
+ "learning_rate": 0.0006,
+ "loss": 3.5837020874023438,
+ "step": 3802
+ },
+ {
+ "epoch": 52.824814329401484,
+ "grad_norm": 0.22492778301239014,
+ "learning_rate": 0.0006,
+ "loss": 3.608218193054199,
+ "step": 3803
+ },
+ {
+ "epoch": 52.83879423328965,
+ "grad_norm": 0.21645256876945496,
+ "learning_rate": 0.0006,
+ "loss": 3.5839202404022217,
+ "step": 3804
+ },
+ {
+ "epoch": 52.8527741371778,
+ "grad_norm": 0.19680161774158478,
+ "learning_rate": 0.0006,
+ "loss": 3.568756580352783,
+ "step": 3805
+ },
+ {
+ "epoch": 52.86675404106597,
+ "grad_norm": 0.2084486186504364,
+ "learning_rate": 0.0006,
+ "loss": 3.580197811126709,
+ "step": 3806
+ },
+ {
+ "epoch": 52.88073394495413,
+ "grad_norm": 0.19380393624305725,
+ "learning_rate": 0.0006,
+ "loss": 3.5871198177337646,
+ "step": 3807
+ },
+ {
+ "epoch": 52.89471384884229,
+ "grad_norm": 0.1962910294532776,
+ "learning_rate": 0.0006,
+ "loss": 3.5878777503967285,
+ "step": 3808
+ },
+ {
+ "epoch": 52.90869375273045,
+ "grad_norm": 0.23292803764343262,
+ "learning_rate": 0.0006,
+ "loss": 3.574855327606201,
+ "step": 3809
+ },
+ {
+ "epoch": 52.92267365661861,
+ "grad_norm": 0.26974233984947205,
+ "learning_rate": 0.0006,
+ "loss": 3.5731749534606934,
+ "step": 3810
+ },
+ {
+ "epoch": 52.93665356050677,
+ "grad_norm": 0.26665496826171875,
+ "learning_rate": 0.0006,
+ "loss": 3.552717685699463,
+ "step": 3811
+ },
+ {
+ "epoch": 52.95063346439493,
+ "grad_norm": 0.24156489968299866,
+ "learning_rate": 0.0006,
+ "loss": 3.581787109375,
+ "step": 3812
+ },
+ {
+ "epoch": 52.964613368283096,
+ "grad_norm": 0.22062325477600098,
+ "learning_rate": 0.0006,
+ "loss": 3.578994035720825,
+ "step": 3813
+ },
+ {
+ "epoch": 52.97859327217125,
+ "grad_norm": 0.19949151575565338,
+ "learning_rate": 0.0006,
+ "loss": 3.6157355308532715,
+ "step": 3814
+ },
+ {
+ "epoch": 52.992573176059416,
+ "grad_norm": 0.2157975435256958,
+ "learning_rate": 0.0006,
+ "loss": 3.5677759647369385,
+ "step": 3815
+ },
+ {
+ "epoch": 53.0,
+ "grad_norm": 0.23285679519176483,
+ "learning_rate": 0.0006,
+ "loss": 3.5541789531707764,
+ "step": 3816
+ },
+ {
+ "epoch": 53.0,
+ "eval_loss": 3.9737255573272705,
+ "eval_runtime": 46.0304,
+ "eval_samples_per_second": 53.052,
+ "eval_steps_per_second": 3.324,
+ "step": 3816
+ },
+ {
+ "epoch": 53.01397990388816,
+ "grad_norm": 0.212715283036232,
+ "learning_rate": 0.0006,
+ "loss": 3.5475640296936035,
+ "step": 3817
+ },
+ {
+ "epoch": 53.02795980777632,
+ "grad_norm": 0.24556505680084229,
+ "learning_rate": 0.0006,
+ "loss": 3.5197463035583496,
+ "step": 3818
+ },
+ {
+ "epoch": 53.04193971166448,
+ "grad_norm": 0.2898217737674713,
+ "learning_rate": 0.0006,
+ "loss": 3.527390956878662,
+ "step": 3819
+ },
+ {
+ "epoch": 53.05591961555265,
+ "grad_norm": 0.26151803135871887,
+ "learning_rate": 0.0006,
+ "loss": 3.5462024211883545,
+ "step": 3820
+ },
+ {
+ "epoch": 53.0698995194408,
+ "grad_norm": 0.24648059904575348,
+ "learning_rate": 0.0006,
+ "loss": 3.5584919452667236,
+ "step": 3821
+ },
+ {
+ "epoch": 53.083879423328966,
+ "grad_norm": 0.22295059263706207,
+ "learning_rate": 0.0006,
+ "loss": 3.517195701599121,
+ "step": 3822
+ },
+ {
+ "epoch": 53.09785932721712,
+ "grad_norm": 0.2206476330757141,
+ "learning_rate": 0.0006,
+ "loss": 3.570678234100342,
+ "step": 3823
+ },
+ {
+ "epoch": 53.111839231105286,
+ "grad_norm": 0.22069714963436127,
+ "learning_rate": 0.0006,
+ "loss": 3.5707359313964844,
+ "step": 3824
+ },
+ {
+ "epoch": 53.12581913499345,
+ "grad_norm": 0.21850740909576416,
+ "learning_rate": 0.0006,
+ "loss": 3.5730209350585938,
+ "step": 3825
+ },
+ {
+ "epoch": 53.139799038881605,
+ "grad_norm": 0.21554340422153473,
+ "learning_rate": 0.0006,
+ "loss": 3.5578367710113525,
+ "step": 3826
+ },
+ {
+ "epoch": 53.15377894276977,
+ "grad_norm": 0.21678747236728668,
+ "learning_rate": 0.0006,
+ "loss": 3.5603280067443848,
+ "step": 3827
+ },
+ {
+ "epoch": 53.16775884665793,
+ "grad_norm": 0.22017014026641846,
+ "learning_rate": 0.0006,
+ "loss": 3.577760696411133,
+ "step": 3828
+ },
+ {
+ "epoch": 53.18173875054609,
+ "grad_norm": 0.20485524833202362,
+ "learning_rate": 0.0006,
+ "loss": 3.574751853942871,
+ "step": 3829
+ },
+ {
+ "epoch": 53.19571865443425,
+ "grad_norm": 0.22951237857341766,
+ "learning_rate": 0.0006,
+ "loss": 3.5464377403259277,
+ "step": 3830
+ },
+ {
+ "epoch": 53.20969855832241,
+ "grad_norm": 0.2343965619802475,
+ "learning_rate": 0.0006,
+ "loss": 3.516113758087158,
+ "step": 3831
+ },
+ {
+ "epoch": 53.22367846221057,
+ "grad_norm": 0.24002069234848022,
+ "learning_rate": 0.0006,
+ "loss": 3.564629554748535,
+ "step": 3832
+ },
+ {
+ "epoch": 53.237658366098735,
+ "grad_norm": 0.23933765292167664,
+ "learning_rate": 0.0006,
+ "loss": 3.5518507957458496,
+ "step": 3833
+ },
+ {
+ "epoch": 53.25163826998689,
+ "grad_norm": 0.2188953459262848,
+ "learning_rate": 0.0006,
+ "loss": 3.5341856479644775,
+ "step": 3834
+ },
+ {
+ "epoch": 53.265618173875055,
+ "grad_norm": 0.22629091143608093,
+ "learning_rate": 0.0006,
+ "loss": 3.5479273796081543,
+ "step": 3835
+ },
+ {
+ "epoch": 53.27959807776322,
+ "grad_norm": 0.2386554479598999,
+ "learning_rate": 0.0006,
+ "loss": 3.6097445487976074,
+ "step": 3836
+ },
+ {
+ "epoch": 53.293577981651374,
+ "grad_norm": 0.23003390431404114,
+ "learning_rate": 0.0006,
+ "loss": 3.5435304641723633,
+ "step": 3837
+ },
+ {
+ "epoch": 53.30755788553954,
+ "grad_norm": 0.248053640127182,
+ "learning_rate": 0.0006,
+ "loss": 3.545290470123291,
+ "step": 3838
+ },
+ {
+ "epoch": 53.3215377894277,
+ "grad_norm": 0.23945583403110504,
+ "learning_rate": 0.0006,
+ "loss": 3.570158004760742,
+ "step": 3839
+ },
+ {
+ "epoch": 53.33551769331586,
+ "grad_norm": 0.22801059484481812,
+ "learning_rate": 0.0006,
+ "loss": 3.5600779056549072,
+ "step": 3840
+ },
+ {
+ "epoch": 53.34949759720402,
+ "grad_norm": 0.2303777039051056,
+ "learning_rate": 0.0006,
+ "loss": 3.576674222946167,
+ "step": 3841
+ },
+ {
+ "epoch": 53.36347750109218,
+ "grad_norm": 0.23318468034267426,
+ "learning_rate": 0.0006,
+ "loss": 3.5705552101135254,
+ "step": 3842
+ },
+ {
+ "epoch": 53.37745740498034,
+ "grad_norm": 0.2435566782951355,
+ "learning_rate": 0.0006,
+ "loss": 3.576536178588867,
+ "step": 3843
+ },
+ {
+ "epoch": 53.391437308868504,
+ "grad_norm": 0.2857200503349304,
+ "learning_rate": 0.0006,
+ "loss": 3.535977363586426,
+ "step": 3844
+ },
+ {
+ "epoch": 53.40541721275666,
+ "grad_norm": 0.2640133500099182,
+ "learning_rate": 0.0006,
+ "loss": 3.547731399536133,
+ "step": 3845
+ },
+ {
+ "epoch": 53.419397116644824,
+ "grad_norm": 0.22218745946884155,
+ "learning_rate": 0.0006,
+ "loss": 3.5798351764678955,
+ "step": 3846
+ },
+ {
+ "epoch": 53.43337702053299,
+ "grad_norm": 0.2537193298339844,
+ "learning_rate": 0.0006,
+ "loss": 3.5289204120635986,
+ "step": 3847
+ },
+ {
+ "epoch": 53.44735692442114,
+ "grad_norm": 0.28360968828201294,
+ "learning_rate": 0.0006,
+ "loss": 3.5503361225128174,
+ "step": 3848
+ },
+ {
+ "epoch": 53.46133682830931,
+ "grad_norm": 0.2892421782016754,
+ "learning_rate": 0.0006,
+ "loss": 3.5675411224365234,
+ "step": 3849
+ },
+ {
+ "epoch": 53.47531673219746,
+ "grad_norm": 0.28305584192276,
+ "learning_rate": 0.0006,
+ "loss": 3.573280096054077,
+ "step": 3850
+ },
+ {
+ "epoch": 53.489296636085626,
+ "grad_norm": 0.24628037214279175,
+ "learning_rate": 0.0006,
+ "loss": 3.5215024948120117,
+ "step": 3851
+ },
+ {
+ "epoch": 53.50327653997379,
+ "grad_norm": 0.2463715672492981,
+ "learning_rate": 0.0006,
+ "loss": 3.5790698528289795,
+ "step": 3852
+ },
+ {
+ "epoch": 53.517256443861946,
+ "grad_norm": 0.2646636664867401,
+ "learning_rate": 0.0006,
+ "loss": 3.589735269546509,
+ "step": 3853
+ },
+ {
+ "epoch": 53.53123634775011,
+ "grad_norm": 0.27668821811676025,
+ "learning_rate": 0.0006,
+ "loss": 3.5690393447875977,
+ "step": 3854
+ },
+ {
+ "epoch": 53.54521625163827,
+ "grad_norm": 0.2630347013473511,
+ "learning_rate": 0.0006,
+ "loss": 3.5846545696258545,
+ "step": 3855
+ },
+ {
+ "epoch": 53.55919615552643,
+ "grad_norm": 0.27177906036376953,
+ "learning_rate": 0.0006,
+ "loss": 3.5431671142578125,
+ "step": 3856
+ },
+ {
+ "epoch": 53.57317605941459,
+ "grad_norm": 0.27125081419944763,
+ "learning_rate": 0.0006,
+ "loss": 3.5905215740203857,
+ "step": 3857
+ },
+ {
+ "epoch": 53.58715596330275,
+ "grad_norm": 0.24802975356578827,
+ "learning_rate": 0.0006,
+ "loss": 3.5472917556762695,
+ "step": 3858
+ },
+ {
+ "epoch": 53.60113586719091,
+ "grad_norm": 0.23812460899353027,
+ "learning_rate": 0.0006,
+ "loss": 3.5917325019836426,
+ "step": 3859
+ },
+ {
+ "epoch": 53.615115771079076,
+ "grad_norm": 0.2597416937351227,
+ "learning_rate": 0.0006,
+ "loss": 3.5515074729919434,
+ "step": 3860
+ },
+ {
+ "epoch": 53.62909567496723,
+ "grad_norm": 0.24389132857322693,
+ "learning_rate": 0.0006,
+ "loss": 3.578125476837158,
+ "step": 3861
+ },
+ {
+ "epoch": 53.643075578855395,
+ "grad_norm": 0.23878274857997894,
+ "learning_rate": 0.0006,
+ "loss": 3.5612001419067383,
+ "step": 3862
+ },
+ {
+ "epoch": 53.65705548274356,
+ "grad_norm": 0.23248082399368286,
+ "learning_rate": 0.0006,
+ "loss": 3.5651350021362305,
+ "step": 3863
+ },
+ {
+ "epoch": 53.671035386631715,
+ "grad_norm": 0.22560833394527435,
+ "learning_rate": 0.0006,
+ "loss": 3.58971905708313,
+ "step": 3864
+ },
+ {
+ "epoch": 53.68501529051988,
+ "grad_norm": 0.22092120349407196,
+ "learning_rate": 0.0006,
+ "loss": 3.5567374229431152,
+ "step": 3865
+ },
+ {
+ "epoch": 53.69899519440804,
+ "grad_norm": 0.20171885192394257,
+ "learning_rate": 0.0006,
+ "loss": 3.5868449211120605,
+ "step": 3866
+ },
+ {
+ "epoch": 53.7129750982962,
+ "grad_norm": 0.2051871120929718,
+ "learning_rate": 0.0006,
+ "loss": 3.5853161811828613,
+ "step": 3867
+ },
+ {
+ "epoch": 53.72695500218436,
+ "grad_norm": 0.1912045031785965,
+ "learning_rate": 0.0006,
+ "loss": 3.5901622772216797,
+ "step": 3868
+ },
+ {
+ "epoch": 53.74093490607252,
+ "grad_norm": 0.20817188918590546,
+ "learning_rate": 0.0006,
+ "loss": 3.5759787559509277,
+ "step": 3869
+ },
+ {
+ "epoch": 53.75491480996068,
+ "grad_norm": 0.2157917469739914,
+ "learning_rate": 0.0006,
+ "loss": 3.5438575744628906,
+ "step": 3870
+ },
+ {
+ "epoch": 53.768894713848844,
+ "grad_norm": 0.2332053929567337,
+ "learning_rate": 0.0006,
+ "loss": 3.587697982788086,
+ "step": 3871
+ },
+ {
+ "epoch": 53.782874617737,
+ "grad_norm": 0.22700314223766327,
+ "learning_rate": 0.0006,
+ "loss": 3.586625337600708,
+ "step": 3872
+ },
+ {
+ "epoch": 53.796854521625164,
+ "grad_norm": 0.20737017691135406,
+ "learning_rate": 0.0006,
+ "loss": 3.552398204803467,
+ "step": 3873
+ },
+ {
+ "epoch": 53.81083442551333,
+ "grad_norm": 0.20355650782585144,
+ "learning_rate": 0.0006,
+ "loss": 3.5734331607818604,
+ "step": 3874
+ },
+ {
+ "epoch": 53.824814329401484,
+ "grad_norm": 0.18868018686771393,
+ "learning_rate": 0.0006,
+ "loss": 3.582509756088257,
+ "step": 3875
+ },
+ {
+ "epoch": 53.83879423328965,
+ "grad_norm": 0.20373275876045227,
+ "learning_rate": 0.0006,
+ "loss": 3.559354782104492,
+ "step": 3876
+ },
+ {
+ "epoch": 53.8527741371778,
+ "grad_norm": 0.1988871544599533,
+ "learning_rate": 0.0006,
+ "loss": 3.5575170516967773,
+ "step": 3877
+ },
+ {
+ "epoch": 53.86675404106597,
+ "grad_norm": 0.19602873921394348,
+ "learning_rate": 0.0006,
+ "loss": 3.5500855445861816,
+ "step": 3878
+ },
+ {
+ "epoch": 53.88073394495413,
+ "grad_norm": 0.201382577419281,
+ "learning_rate": 0.0006,
+ "loss": 3.563499927520752,
+ "step": 3879
+ },
+ {
+ "epoch": 53.89471384884229,
+ "grad_norm": 0.19682180881500244,
+ "learning_rate": 0.0006,
+ "loss": 3.586855888366699,
+ "step": 3880
+ },
+ {
+ "epoch": 53.90869375273045,
+ "grad_norm": 0.19423548877239227,
+ "learning_rate": 0.0006,
+ "loss": 3.5840401649475098,
+ "step": 3881
+ },
+ {
+ "epoch": 53.92267365661861,
+ "grad_norm": 0.1970449835062027,
+ "learning_rate": 0.0006,
+ "loss": 3.554568290710449,
+ "step": 3882
+ },
+ {
+ "epoch": 53.93665356050677,
+ "grad_norm": 0.20274291932582855,
+ "learning_rate": 0.0006,
+ "loss": 3.5928239822387695,
+ "step": 3883
+ },
+ {
+ "epoch": 53.95063346439493,
+ "grad_norm": 0.18485035002231598,
+ "learning_rate": 0.0006,
+ "loss": 3.576934337615967,
+ "step": 3884
+ },
+ {
+ "epoch": 53.964613368283096,
+ "grad_norm": 0.18437646329402924,
+ "learning_rate": 0.0006,
+ "loss": 3.574990749359131,
+ "step": 3885
+ },
+ {
+ "epoch": 53.97859327217125,
+ "grad_norm": 0.18616823852062225,
+ "learning_rate": 0.0006,
+ "loss": 3.5566892623901367,
+ "step": 3886
+ },
+ {
+ "epoch": 53.992573176059416,
+ "grad_norm": 0.19502122700214386,
+ "learning_rate": 0.0006,
+ "loss": 3.604814052581787,
+ "step": 3887
+ },
+ {
+ "epoch": 54.0,
+ "grad_norm": 0.2657789885997772,
+ "learning_rate": 0.0006,
+ "loss": 3.5094165802001953,
+ "step": 3888
+ },
+ {
+ "epoch": 54.0,
+ "eval_loss": 3.965742349624634,
+ "eval_runtime": 45.5851,
+ "eval_samples_per_second": 53.57,
+ "eval_steps_per_second": 3.356,
+ "step": 3888
+ },
+ {
+ "epoch": 54.01397990388816,
+ "grad_norm": 0.27879253029823303,
+ "learning_rate": 0.0006,
+ "loss": 3.565103530883789,
+ "step": 3889
+ },
+ {
+ "epoch": 54.02795980777632,
+ "grad_norm": 0.2959246337413788,
+ "learning_rate": 0.0006,
+ "loss": 3.5378212928771973,
+ "step": 3890
+ },
+ {
+ "epoch": 54.04193971166448,
+ "grad_norm": 0.32719552516937256,
+ "learning_rate": 0.0006,
+ "loss": 3.5566751956939697,
+ "step": 3891
+ },
+ {
+ "epoch": 54.05591961555265,
+ "grad_norm": 0.36854541301727295,
+ "learning_rate": 0.0006,
+ "loss": 3.5363879203796387,
+ "step": 3892
+ },
+ {
+ "epoch": 54.0698995194408,
+ "grad_norm": 0.34325551986694336,
+ "learning_rate": 0.0006,
+ "loss": 3.5306153297424316,
+ "step": 3893
+ },
+ {
+ "epoch": 54.083879423328966,
+ "grad_norm": 0.2798653244972229,
+ "learning_rate": 0.0006,
+ "loss": 3.5642261505126953,
+ "step": 3894
+ },
+ {
+ "epoch": 54.09785932721712,
+ "grad_norm": 0.24857765436172485,
+ "learning_rate": 0.0006,
+ "loss": 3.50216007232666,
+ "step": 3895
+ },
+ {
+ "epoch": 54.111839231105286,
+ "grad_norm": 0.2943299114704132,
+ "learning_rate": 0.0006,
+ "loss": 3.524904251098633,
+ "step": 3896
+ },
+ {
+ "epoch": 54.12581913499345,
+ "grad_norm": 0.2791048586368561,
+ "learning_rate": 0.0006,
+ "loss": 3.56490421295166,
+ "step": 3897
+ },
+ {
+ "epoch": 54.139799038881605,
+ "grad_norm": 0.2781159579753876,
+ "learning_rate": 0.0006,
+ "loss": 3.536180019378662,
+ "step": 3898
+ },
+ {
+ "epoch": 54.15377894276977,
+ "grad_norm": 0.30359897017478943,
+ "learning_rate": 0.0006,
+ "loss": 3.546919345855713,
+ "step": 3899
+ },
+ {
+ "epoch": 54.16775884665793,
+ "grad_norm": 0.2738530933856964,
+ "learning_rate": 0.0006,
+ "loss": 3.547968864440918,
+ "step": 3900
+ },
+ {
+ "epoch": 54.18173875054609,
+ "grad_norm": 0.24783718585968018,
+ "learning_rate": 0.0006,
+ "loss": 3.5802721977233887,
+ "step": 3901
+ },
+ {
+ "epoch": 54.19571865443425,
+ "grad_norm": 0.2544802725315094,
+ "learning_rate": 0.0006,
+ "loss": 3.5556836128234863,
+ "step": 3902
+ },
+ {
+ "epoch": 54.20969855832241,
+ "grad_norm": 0.26695969700813293,
+ "learning_rate": 0.0006,
+ "loss": 3.534266471862793,
+ "step": 3903
+ },
+ {
+ "epoch": 54.22367846221057,
+ "grad_norm": 0.24152538180351257,
+ "learning_rate": 0.0006,
+ "loss": 3.534069538116455,
+ "step": 3904
+ },
+ {
+ "epoch": 54.237658366098735,
+ "grad_norm": 0.21859917044639587,
+ "learning_rate": 0.0006,
+ "loss": 3.535362958908081,
+ "step": 3905
+ },
+ {
+ "epoch": 54.25163826998689,
+ "grad_norm": 0.24676479399204254,
+ "learning_rate": 0.0006,
+ "loss": 3.567283868789673,
+ "step": 3906
+ },
+ {
+ "epoch": 54.265618173875055,
+ "grad_norm": 0.26998138427734375,
+ "learning_rate": 0.0006,
+ "loss": 3.518892765045166,
+ "step": 3907
+ },
+ {
+ "epoch": 54.27959807776322,
+ "grad_norm": 0.30108749866485596,
+ "learning_rate": 0.0006,
+ "loss": 3.5865135192871094,
+ "step": 3908
+ },
+ {
+ "epoch": 54.293577981651374,
+ "grad_norm": 0.31310492753982544,
+ "learning_rate": 0.0006,
+ "loss": 3.546637535095215,
+ "step": 3909
+ },
+ {
+ "epoch": 54.30755788553954,
+ "grad_norm": 0.2994784712791443,
+ "learning_rate": 0.0006,
+ "loss": 3.5441226959228516,
+ "step": 3910
+ },
+ {
+ "epoch": 54.3215377894277,
+ "grad_norm": 0.25010061264038086,
+ "learning_rate": 0.0006,
+ "loss": 3.5619735717773438,
+ "step": 3911
+ },
+ {
+ "epoch": 54.33551769331586,
+ "grad_norm": 0.253129780292511,
+ "learning_rate": 0.0006,
+ "loss": 3.530210494995117,
+ "step": 3912
+ },
+ {
+ "epoch": 54.34949759720402,
+ "grad_norm": 0.2652498781681061,
+ "learning_rate": 0.0006,
+ "loss": 3.534478187561035,
+ "step": 3913
+ },
+ {
+ "epoch": 54.36347750109218,
+ "grad_norm": 0.250503808259964,
+ "learning_rate": 0.0006,
+ "loss": 3.545886516571045,
+ "step": 3914
+ },
+ {
+ "epoch": 54.37745740498034,
+ "grad_norm": 0.22186073660850525,
+ "learning_rate": 0.0006,
+ "loss": 3.5884604454040527,
+ "step": 3915
+ },
+ {
+ "epoch": 54.391437308868504,
+ "grad_norm": 0.21128980815410614,
+ "learning_rate": 0.0006,
+ "loss": 3.527862548828125,
+ "step": 3916
+ },
+ {
+ "epoch": 54.40541721275666,
+ "grad_norm": 0.23184002935886383,
+ "learning_rate": 0.0006,
+ "loss": 3.5599637031555176,
+ "step": 3917
+ },
+ {
+ "epoch": 54.419397116644824,
+ "grad_norm": 0.23710627853870392,
+ "learning_rate": 0.0006,
+ "loss": 3.54667329788208,
+ "step": 3918
+ },
+ {
+ "epoch": 54.43337702053299,
+ "grad_norm": 0.2314598113298416,
+ "learning_rate": 0.0006,
+ "loss": 3.518406391143799,
+ "step": 3919
+ },
+ {
+ "epoch": 54.44735692442114,
+ "grad_norm": 0.21623452007770538,
+ "learning_rate": 0.0006,
+ "loss": 3.5749731063842773,
+ "step": 3920
+ },
+ {
+ "epoch": 54.46133682830931,
+ "grad_norm": 0.22832012176513672,
+ "learning_rate": 0.0006,
+ "loss": 3.57436466217041,
+ "step": 3921
+ },
+ {
+ "epoch": 54.47531673219746,
+ "grad_norm": 0.2184043526649475,
+ "learning_rate": 0.0006,
+ "loss": 3.578040838241577,
+ "step": 3922
+ },
+ {
+ "epoch": 54.489296636085626,
+ "grad_norm": 0.2302335649728775,
+ "learning_rate": 0.0006,
+ "loss": 3.5646257400512695,
+ "step": 3923
+ },
+ {
+ "epoch": 54.50327653997379,
+ "grad_norm": 0.21635375916957855,
+ "learning_rate": 0.0006,
+ "loss": 3.546786308288574,
+ "step": 3924
+ },
+ {
+ "epoch": 54.517256443861946,
+ "grad_norm": 0.22332443296909332,
+ "learning_rate": 0.0006,
+ "loss": 3.5804502964019775,
+ "step": 3925
+ },
+ {
+ "epoch": 54.53123634775011,
+ "grad_norm": 0.21662919223308563,
+ "learning_rate": 0.0006,
+ "loss": 3.567797899246216,
+ "step": 3926
+ },
+ {
+ "epoch": 54.54521625163827,
+ "grad_norm": 0.21345169842243195,
+ "learning_rate": 0.0006,
+ "loss": 3.5746283531188965,
+ "step": 3927
+ },
+ {
+ "epoch": 54.55919615552643,
+ "grad_norm": 0.2111794501543045,
+ "learning_rate": 0.0006,
+ "loss": 3.5626277923583984,
+ "step": 3928
+ },
+ {
+ "epoch": 54.57317605941459,
+ "grad_norm": 0.22575712203979492,
+ "learning_rate": 0.0006,
+ "loss": 3.5856311321258545,
+ "step": 3929
+ },
+ {
+ "epoch": 54.58715596330275,
+ "grad_norm": 0.22963617742061615,
+ "learning_rate": 0.0006,
+ "loss": 3.584038257598877,
+ "step": 3930
+ },
+ {
+ "epoch": 54.60113586719091,
+ "grad_norm": 0.21805310249328613,
+ "learning_rate": 0.0006,
+ "loss": 3.5603089332580566,
+ "step": 3931
+ },
+ {
+ "epoch": 54.615115771079076,
+ "grad_norm": 0.22830283641815186,
+ "learning_rate": 0.0006,
+ "loss": 3.5533390045166016,
+ "step": 3932
+ },
+ {
+ "epoch": 54.62909567496723,
+ "grad_norm": 0.24158291518688202,
+ "learning_rate": 0.0006,
+ "loss": 3.5437779426574707,
+ "step": 3933
+ },
+ {
+ "epoch": 54.643075578855395,
+ "grad_norm": 0.22687768936157227,
+ "learning_rate": 0.0006,
+ "loss": 3.566315174102783,
+ "step": 3934
+ },
+ {
+ "epoch": 54.65705548274356,
+ "grad_norm": 0.21220184862613678,
+ "learning_rate": 0.0006,
+ "loss": 3.5772881507873535,
+ "step": 3935
+ },
+ {
+ "epoch": 54.671035386631715,
+ "grad_norm": 0.19508333504199982,
+ "learning_rate": 0.0006,
+ "loss": 3.5213584899902344,
+ "step": 3936
+ },
+ {
+ "epoch": 54.68501529051988,
+ "grad_norm": 0.199599027633667,
+ "learning_rate": 0.0006,
+ "loss": 3.553925037384033,
+ "step": 3937
+ },
+ {
+ "epoch": 54.69899519440804,
+ "grad_norm": 0.2063189297914505,
+ "learning_rate": 0.0006,
+ "loss": 3.5706050395965576,
+ "step": 3938
+ },
+ {
+ "epoch": 54.7129750982962,
+ "grad_norm": 0.2056119441986084,
+ "learning_rate": 0.0006,
+ "loss": 3.557199478149414,
+ "step": 3939
+ },
+ {
+ "epoch": 54.72695500218436,
+ "grad_norm": 0.2192074954509735,
+ "learning_rate": 0.0006,
+ "loss": 3.5869479179382324,
+ "step": 3940
+ },
+ {
+ "epoch": 54.74093490607252,
+ "grad_norm": 0.19796597957611084,
+ "learning_rate": 0.0006,
+ "loss": 3.559929609298706,
+ "step": 3941
+ },
+ {
+ "epoch": 54.75491480996068,
+ "grad_norm": 0.19003179669380188,
+ "learning_rate": 0.0006,
+ "loss": 3.5481486320495605,
+ "step": 3942
+ },
+ {
+ "epoch": 54.768894713848844,
+ "grad_norm": 0.189231738448143,
+ "learning_rate": 0.0006,
+ "loss": 3.5603561401367188,
+ "step": 3943
+ },
+ {
+ "epoch": 54.782874617737,
+ "grad_norm": 0.20949427783489227,
+ "learning_rate": 0.0006,
+ "loss": 3.567026138305664,
+ "step": 3944
+ },
+ {
+ "epoch": 54.796854521625164,
+ "grad_norm": 0.21650178730487823,
+ "learning_rate": 0.0006,
+ "loss": 3.5981621742248535,
+ "step": 3945
+ },
+ {
+ "epoch": 54.81083442551333,
+ "grad_norm": 0.21941770613193512,
+ "learning_rate": 0.0006,
+ "loss": 3.590226173400879,
+ "step": 3946
+ },
+ {
+ "epoch": 54.824814329401484,
+ "grad_norm": 0.2169734537601471,
+ "learning_rate": 0.0006,
+ "loss": 3.592764139175415,
+ "step": 3947
+ },
+ {
+ "epoch": 54.83879423328965,
+ "grad_norm": 0.20309467613697052,
+ "learning_rate": 0.0006,
+ "loss": 3.5706393718719482,
+ "step": 3948
+ },
+ {
+ "epoch": 54.8527741371778,
+ "grad_norm": 0.21803754568099976,
+ "learning_rate": 0.0006,
+ "loss": 3.5816526412963867,
+ "step": 3949
+ },
+ {
+ "epoch": 54.86675404106597,
+ "grad_norm": 0.22217069566249847,
+ "learning_rate": 0.0006,
+ "loss": 3.5895018577575684,
+ "step": 3950
+ },
+ {
+ "epoch": 54.88073394495413,
+ "grad_norm": 0.21204866468906403,
+ "learning_rate": 0.0006,
+ "loss": 3.5574231147766113,
+ "step": 3951
+ },
+ {
+ "epoch": 54.89471384884229,
+ "grad_norm": 0.2173423171043396,
+ "learning_rate": 0.0006,
+ "loss": 3.564763069152832,
+ "step": 3952
+ },
+ {
+ "epoch": 54.90869375273045,
+ "grad_norm": 0.2039082646369934,
+ "learning_rate": 0.0006,
+ "loss": 3.59708309173584,
+ "step": 3953
+ },
+ {
+ "epoch": 54.92267365661861,
+ "grad_norm": 0.20248384773731232,
+ "learning_rate": 0.0006,
+ "loss": 3.587890148162842,
+ "step": 3954
+ },
+ {
+ "epoch": 54.93665356050677,
+ "grad_norm": 0.20693068206310272,
+ "learning_rate": 0.0006,
+ "loss": 3.5569000244140625,
+ "step": 3955
+ },
+ {
+ "epoch": 54.95063346439493,
+ "grad_norm": 0.2109357714653015,
+ "learning_rate": 0.0006,
+ "loss": 3.552126884460449,
+ "step": 3956
+ },
+ {
+ "epoch": 54.964613368283096,
+ "grad_norm": 0.2278970628976822,
+ "learning_rate": 0.0006,
+ "loss": 3.564998149871826,
+ "step": 3957
+ },
+ {
+ "epoch": 54.97859327217125,
+ "grad_norm": 0.21663756668567657,
+ "learning_rate": 0.0006,
+ "loss": 3.571608543395996,
+ "step": 3958
+ },
+ {
+ "epoch": 54.992573176059416,
+ "grad_norm": 0.19653232395648956,
+ "learning_rate": 0.0006,
+ "loss": 3.5885231494903564,
+ "step": 3959
+ },
+ {
+ "epoch": 55.0,
+ "grad_norm": 0.21956856548786163,
+ "learning_rate": 0.0006,
+ "loss": 3.4966204166412354,
+ "step": 3960
+ },
+ {
+ "epoch": 55.0,
+ "eval_loss": 3.972649097442627,
+ "eval_runtime": 45.2298,
+ "eval_samples_per_second": 53.991,
+ "eval_steps_per_second": 3.383,
+ "step": 3960
+ },
+ {
+ "epoch": 55.01397990388816,
+ "grad_norm": 0.22733832895755768,
+ "learning_rate": 0.0006,
+ "loss": 3.546975612640381,
+ "step": 3961
+ },
+ {
+ "epoch": 55.02795980777632,
+ "grad_norm": 0.25451111793518066,
+ "learning_rate": 0.0006,
+ "loss": 3.54240083694458,
+ "step": 3962
+ },
+ {
+ "epoch": 55.04193971166448,
+ "grad_norm": 0.2394949048757553,
+ "learning_rate": 0.0006,
+ "loss": 3.5492677688598633,
+ "step": 3963
+ },
+ {
+ "epoch": 55.05591961555265,
+ "grad_norm": 0.2306671440601349,
+ "learning_rate": 0.0006,
+ "loss": 3.524200916290283,
+ "step": 3964
+ },
+ {
+ "epoch": 55.0698995194408,
+ "grad_norm": 0.2307029813528061,
+ "learning_rate": 0.0006,
+ "loss": 3.509249687194824,
+ "step": 3965
+ },
+ {
+ "epoch": 55.083879423328966,
+ "grad_norm": 0.24812111258506775,
+ "learning_rate": 0.0006,
+ "loss": 3.5500473976135254,
+ "step": 3966
+ },
+ {
+ "epoch": 55.09785932721712,
+ "grad_norm": 0.28564271330833435,
+ "learning_rate": 0.0006,
+ "loss": 3.5178303718566895,
+ "step": 3967
+ },
+ {
+ "epoch": 55.111839231105286,
+ "grad_norm": 0.26979005336761475,
+ "learning_rate": 0.0006,
+ "loss": 3.5306806564331055,
+ "step": 3968
+ },
+ {
+ "epoch": 55.12581913499345,
+ "grad_norm": 0.24274848401546478,
+ "learning_rate": 0.0006,
+ "loss": 3.5758519172668457,
+ "step": 3969
+ },
+ {
+ "epoch": 55.139799038881605,
+ "grad_norm": 0.2560444474220276,
+ "learning_rate": 0.0006,
+ "loss": 3.5417323112487793,
+ "step": 3970
+ },
+ {
+ "epoch": 55.15377894276977,
+ "grad_norm": 0.2553671598434448,
+ "learning_rate": 0.0006,
+ "loss": 3.5258004665374756,
+ "step": 3971
+ },
+ {
+ "epoch": 55.16775884665793,
+ "grad_norm": 0.2170111984014511,
+ "learning_rate": 0.0006,
+ "loss": 3.514847755432129,
+ "step": 3972
+ },
+ {
+ "epoch": 55.18173875054609,
+ "grad_norm": 0.20854522287845612,
+ "learning_rate": 0.0006,
+ "loss": 3.5248336791992188,
+ "step": 3973
+ },
+ {
+ "epoch": 55.19571865443425,
+ "grad_norm": 0.21873287856578827,
+ "learning_rate": 0.0006,
+ "loss": 3.5468008518218994,
+ "step": 3974
+ },
+ {
+ "epoch": 55.20969855832241,
+ "grad_norm": 0.21194154024124146,
+ "learning_rate": 0.0006,
+ "loss": 3.568512439727783,
+ "step": 3975
+ },
+ {
+ "epoch": 55.22367846221057,
+ "grad_norm": 0.23534680902957916,
+ "learning_rate": 0.0006,
+ "loss": 3.5285420417785645,
+ "step": 3976
+ },
+ {
+ "epoch": 55.237658366098735,
+ "grad_norm": 0.22674795985221863,
+ "learning_rate": 0.0006,
+ "loss": 3.5399436950683594,
+ "step": 3977
+ },
+ {
+ "epoch": 55.25163826998689,
+ "grad_norm": 0.2248486578464508,
+ "learning_rate": 0.0006,
+ "loss": 3.5241036415100098,
+ "step": 3978
+ },
+ {
+ "epoch": 55.265618173875055,
+ "grad_norm": 0.241151362657547,
+ "learning_rate": 0.0006,
+ "loss": 3.547079086303711,
+ "step": 3979
+ },
+ {
+ "epoch": 55.27959807776322,
+ "grad_norm": 0.2783249318599701,
+ "learning_rate": 0.0006,
+ "loss": 3.5442988872528076,
+ "step": 3980
+ },
+ {
+ "epoch": 55.293577981651374,
+ "grad_norm": 0.2743528485298157,
+ "learning_rate": 0.0006,
+ "loss": 3.529618978500366,
+ "step": 3981
+ },
+ {
+ "epoch": 55.30755788553954,
+ "grad_norm": 0.23901724815368652,
+ "learning_rate": 0.0006,
+ "loss": 3.5379443168640137,
+ "step": 3982
+ },
+ {
+ "epoch": 55.3215377894277,
+ "grad_norm": 0.22758841514587402,
+ "learning_rate": 0.0006,
+ "loss": 3.5446794033050537,
+ "step": 3983
+ },
+ {
+ "epoch": 55.33551769331586,
+ "grad_norm": 0.22634629905223846,
+ "learning_rate": 0.0006,
+ "loss": 3.521944522857666,
+ "step": 3984
+ },
+ {
+ "epoch": 55.34949759720402,
+ "grad_norm": 0.23372086882591248,
+ "learning_rate": 0.0006,
+ "loss": 3.565023899078369,
+ "step": 3985
+ },
+ {
+ "epoch": 55.36347750109218,
+ "grad_norm": 0.24722231924533844,
+ "learning_rate": 0.0006,
+ "loss": 3.535661220550537,
+ "step": 3986
+ },
+ {
+ "epoch": 55.37745740498034,
+ "grad_norm": 0.21684594452381134,
+ "learning_rate": 0.0006,
+ "loss": 3.59070086479187,
+ "step": 3987
+ },
+ {
+ "epoch": 55.391437308868504,
+ "grad_norm": 0.186308816075325,
+ "learning_rate": 0.0006,
+ "loss": 3.5373833179473877,
+ "step": 3988
+ },
+ {
+ "epoch": 55.40541721275666,
+ "grad_norm": 0.2240687608718872,
+ "learning_rate": 0.0006,
+ "loss": 3.613295555114746,
+ "step": 3989
+ },
+ {
+ "epoch": 55.419397116644824,
+ "grad_norm": 0.25724494457244873,
+ "learning_rate": 0.0006,
+ "loss": 3.581005096435547,
+ "step": 3990
+ },
+ {
+ "epoch": 55.43337702053299,
+ "grad_norm": 0.24023419618606567,
+ "learning_rate": 0.0006,
+ "loss": 3.563951015472412,
+ "step": 3991
+ },
+ {
+ "epoch": 55.44735692442114,
+ "grad_norm": 0.21473391354084015,
+ "learning_rate": 0.0006,
+ "loss": 3.5444185733795166,
+ "step": 3992
+ },
+ {
+ "epoch": 55.46133682830931,
+ "grad_norm": 0.20466852188110352,
+ "learning_rate": 0.0006,
+ "loss": 3.5585713386535645,
+ "step": 3993
+ },
+ {
+ "epoch": 55.47531673219746,
+ "grad_norm": 0.20925740897655487,
+ "learning_rate": 0.0006,
+ "loss": 3.5656747817993164,
+ "step": 3994
+ },
+ {
+ "epoch": 55.489296636085626,
+ "grad_norm": 0.2309556007385254,
+ "learning_rate": 0.0006,
+ "loss": 3.5653891563415527,
+ "step": 3995
+ },
+ {
+ "epoch": 55.50327653997379,
+ "grad_norm": 0.24270877242088318,
+ "learning_rate": 0.0006,
+ "loss": 3.5275917053222656,
+ "step": 3996
+ },
+ {
+ "epoch": 55.517256443861946,
+ "grad_norm": 0.22749851644039154,
+ "learning_rate": 0.0006,
+ "loss": 3.5392730236053467,
+ "step": 3997
+ },
+ {
+ "epoch": 55.53123634775011,
+ "grad_norm": 0.21618196368217468,
+ "learning_rate": 0.0006,
+ "loss": 3.5581812858581543,
+ "step": 3998
+ },
+ {
+ "epoch": 55.54521625163827,
+ "grad_norm": 0.22232134640216827,
+ "learning_rate": 0.0006,
+ "loss": 3.5340118408203125,
+ "step": 3999
+ },
+ {
+ "epoch": 55.55919615552643,
+ "grad_norm": 0.24543501436710358,
+ "learning_rate": 0.0006,
+ "loss": 3.572153329849243,
+ "step": 4000
+ },
+ {
+ "epoch": 55.57317605941459,
+ "grad_norm": 0.2385311722755432,
+ "learning_rate": 0.0006,
+ "loss": 3.5366618633270264,
+ "step": 4001
+ },
+ {
+ "epoch": 55.58715596330275,
+ "grad_norm": 0.27977821230888367,
+ "learning_rate": 0.0006,
+ "loss": 3.5788960456848145,
+ "step": 4002
+ },
+ {
+ "epoch": 55.60113586719091,
+ "grad_norm": 0.2929013967514038,
+ "learning_rate": 0.0006,
+ "loss": 3.61065936088562,
+ "step": 4003
+ },
+ {
+ "epoch": 55.615115771079076,
+ "grad_norm": 0.27820730209350586,
+ "learning_rate": 0.0006,
+ "loss": 3.538694381713867,
+ "step": 4004
+ },
+ {
+ "epoch": 55.62909567496723,
+ "grad_norm": 0.24188996851444244,
+ "learning_rate": 0.0006,
+ "loss": 3.571709632873535,
+ "step": 4005
+ },
+ {
+ "epoch": 55.643075578855395,
+ "grad_norm": 0.21659360826015472,
+ "learning_rate": 0.0006,
+ "loss": 3.5431199073791504,
+ "step": 4006
+ },
+ {
+ "epoch": 55.65705548274356,
+ "grad_norm": 0.23356232047080994,
+ "learning_rate": 0.0006,
+ "loss": 3.5664005279541016,
+ "step": 4007
+ },
+ {
+ "epoch": 55.671035386631715,
+ "grad_norm": 0.21523472666740417,
+ "learning_rate": 0.0006,
+ "loss": 3.575711250305176,
+ "step": 4008
+ },
+ {
+ "epoch": 55.68501529051988,
+ "grad_norm": 0.22101815044879913,
+ "learning_rate": 0.0006,
+ "loss": 3.5843849182128906,
+ "step": 4009
+ },
+ {
+ "epoch": 55.69899519440804,
+ "grad_norm": 0.24153906106948853,
+ "learning_rate": 0.0006,
+ "loss": 3.5737733840942383,
+ "step": 4010
+ },
+ {
+ "epoch": 55.7129750982962,
+ "grad_norm": 0.2181350439786911,
+ "learning_rate": 0.0006,
+ "loss": 3.582613945007324,
+ "step": 4011
+ },
+ {
+ "epoch": 55.72695500218436,
+ "grad_norm": 0.21046742796897888,
+ "learning_rate": 0.0006,
+ "loss": 3.5380563735961914,
+ "step": 4012
+ },
+ {
+ "epoch": 55.74093490607252,
+ "grad_norm": 0.23996953666210175,
+ "learning_rate": 0.0006,
+ "loss": 3.57753849029541,
+ "step": 4013
+ },
+ {
+ "epoch": 55.75491480996068,
+ "grad_norm": 0.24543973803520203,
+ "learning_rate": 0.0006,
+ "loss": 3.578747272491455,
+ "step": 4014
+ },
+ {
+ "epoch": 55.768894713848844,
+ "grad_norm": 0.23597940802574158,
+ "learning_rate": 0.0006,
+ "loss": 3.5816988945007324,
+ "step": 4015
+ },
+ {
+ "epoch": 55.782874617737,
+ "grad_norm": 0.237411230802536,
+ "learning_rate": 0.0006,
+ "loss": 3.5659806728363037,
+ "step": 4016
+ },
+ {
+ "epoch": 55.796854521625164,
+ "grad_norm": 0.23947440087795258,
+ "learning_rate": 0.0006,
+ "loss": 3.545125961303711,
+ "step": 4017
+ },
+ {
+ "epoch": 55.81083442551333,
+ "grad_norm": 0.21562735736370087,
+ "learning_rate": 0.0006,
+ "loss": 3.5571303367614746,
+ "step": 4018
+ },
+ {
+ "epoch": 55.824814329401484,
+ "grad_norm": 0.21958434581756592,
+ "learning_rate": 0.0006,
+ "loss": 3.5243420600891113,
+ "step": 4019
+ },
+ {
+ "epoch": 55.83879423328965,
+ "grad_norm": 0.23856471478939056,
+ "learning_rate": 0.0006,
+ "loss": 3.586078643798828,
+ "step": 4020
+ },
+ {
+ "epoch": 55.8527741371778,
+ "grad_norm": 0.20703551173210144,
+ "learning_rate": 0.0006,
+ "loss": 3.5503201484680176,
+ "step": 4021
+ },
+ {
+ "epoch": 55.86675404106597,
+ "grad_norm": 0.21183231472969055,
+ "learning_rate": 0.0006,
+ "loss": 3.5873844623565674,
+ "step": 4022
+ },
+ {
+ "epoch": 55.88073394495413,
+ "grad_norm": 0.2129688709974289,
+ "learning_rate": 0.0006,
+ "loss": 3.582061290740967,
+ "step": 4023
+ },
+ {
+ "epoch": 55.89471384884229,
+ "grad_norm": 0.2122214287519455,
+ "learning_rate": 0.0006,
+ "loss": 3.547175884246826,
+ "step": 4024
+ },
+ {
+ "epoch": 55.90869375273045,
+ "grad_norm": 0.214874267578125,
+ "learning_rate": 0.0006,
+ "loss": 3.5322279930114746,
+ "step": 4025
+ },
+ {
+ "epoch": 55.92267365661861,
+ "grad_norm": 0.24104614555835724,
+ "learning_rate": 0.0006,
+ "loss": 3.5742111206054688,
+ "step": 4026
+ },
+ {
+ "epoch": 55.93665356050677,
+ "grad_norm": 0.2257685512304306,
+ "learning_rate": 0.0006,
+ "loss": 3.5686793327331543,
+ "step": 4027
+ },
+ {
+ "epoch": 55.95063346439493,
+ "grad_norm": 0.2170567363500595,
+ "learning_rate": 0.0006,
+ "loss": 3.5670571327209473,
+ "step": 4028
+ },
+ {
+ "epoch": 55.964613368283096,
+ "grad_norm": 0.2003280222415924,
+ "learning_rate": 0.0006,
+ "loss": 3.533921718597412,
+ "step": 4029
+ },
+ {
+ "epoch": 55.97859327217125,
+ "grad_norm": 0.21483278274536133,
+ "learning_rate": 0.0006,
+ "loss": 3.539720058441162,
+ "step": 4030
+ },
+ {
+ "epoch": 55.992573176059416,
+ "grad_norm": 0.26908108592033386,
+ "learning_rate": 0.0006,
+ "loss": 3.575934886932373,
+ "step": 4031
+ },
+ {
+ "epoch": 56.0,
+ "grad_norm": 0.30002665519714355,
+ "learning_rate": 0.0006,
+ "loss": 3.5702414512634277,
+ "step": 4032
+ },
+ {
+ "epoch": 56.0,
+ "eval_loss": 3.9834072589874268,
+ "eval_runtime": 46.2268,
+ "eval_samples_per_second": 52.826,
+ "eval_steps_per_second": 3.31,
+ "step": 4032
+ },
+ {
+ "epoch": 56.01397990388816,
+ "grad_norm": 0.25298207998275757,
+ "learning_rate": 0.0006,
+ "loss": 3.538151741027832,
+ "step": 4033
+ },
+ {
+ "epoch": 56.02795980777632,
+ "grad_norm": 0.2231103479862213,
+ "learning_rate": 0.0006,
+ "loss": 3.551466941833496,
+ "step": 4034
+ },
+ {
+ "epoch": 56.04193971166448,
+ "grad_norm": 0.2504221796989441,
+ "learning_rate": 0.0006,
+ "loss": 3.5361199378967285,
+ "step": 4035
+ },
+ {
+ "epoch": 56.05591961555265,
+ "grad_norm": 0.23491773009300232,
+ "learning_rate": 0.0006,
+ "loss": 3.549346446990967,
+ "step": 4036
+ },
+ {
+ "epoch": 56.0698995194408,
+ "grad_norm": 0.23068852722644806,
+ "learning_rate": 0.0006,
+ "loss": 3.5243453979492188,
+ "step": 4037
+ },
+ {
+ "epoch": 56.083879423328966,
+ "grad_norm": 0.22160249948501587,
+ "learning_rate": 0.0006,
+ "loss": 3.551191806793213,
+ "step": 4038
+ },
+ {
+ "epoch": 56.09785932721712,
+ "grad_norm": 0.2389034926891327,
+ "learning_rate": 0.0006,
+ "loss": 3.5358071327209473,
+ "step": 4039
+ },
+ {
+ "epoch": 56.111839231105286,
+ "grad_norm": 0.2552168071269989,
+ "learning_rate": 0.0006,
+ "loss": 3.564204692840576,
+ "step": 4040
+ },
+ {
+ "epoch": 56.12581913499345,
+ "grad_norm": 0.2802336812019348,
+ "learning_rate": 0.0006,
+ "loss": 3.540386438369751,
+ "step": 4041
+ },
+ {
+ "epoch": 56.139799038881605,
+ "grad_norm": 0.2564619779586792,
+ "learning_rate": 0.0006,
+ "loss": 3.544264554977417,
+ "step": 4042
+ },
+ {
+ "epoch": 56.15377894276977,
+ "grad_norm": 0.24272632598876953,
+ "learning_rate": 0.0006,
+ "loss": 3.509497880935669,
+ "step": 4043
+ },
+ {
+ "epoch": 56.16775884665793,
+ "grad_norm": 0.23981881141662598,
+ "learning_rate": 0.0006,
+ "loss": 3.551090955734253,
+ "step": 4044
+ },
+ {
+ "epoch": 56.18173875054609,
+ "grad_norm": 0.22418269515037537,
+ "learning_rate": 0.0006,
+ "loss": 3.558614492416382,
+ "step": 4045
+ },
+ {
+ "epoch": 56.19571865443425,
+ "grad_norm": 0.21792462468147278,
+ "learning_rate": 0.0006,
+ "loss": 3.540558338165283,
+ "step": 4046
+ },
+ {
+ "epoch": 56.20969855832241,
+ "grad_norm": 0.21248634159564972,
+ "learning_rate": 0.0006,
+ "loss": 3.5273942947387695,
+ "step": 4047
+ },
+ {
+ "epoch": 56.22367846221057,
+ "grad_norm": 0.1863572895526886,
+ "learning_rate": 0.0006,
+ "loss": 3.555302143096924,
+ "step": 4048
+ },
+ {
+ "epoch": 56.237658366098735,
+ "grad_norm": 0.21031822264194489,
+ "learning_rate": 0.0006,
+ "loss": 3.547515630722046,
+ "step": 4049
+ },
+ {
+ "epoch": 56.25163826998689,
+ "grad_norm": 0.19754044711589813,
+ "learning_rate": 0.0006,
+ "loss": 3.5476508140563965,
+ "step": 4050
+ },
+ {
+ "epoch": 56.265618173875055,
+ "grad_norm": 0.19707852602005005,
+ "learning_rate": 0.0006,
+ "loss": 3.506730794906616,
+ "step": 4051
+ },
+ {
+ "epoch": 56.27959807776322,
+ "grad_norm": 0.21011239290237427,
+ "learning_rate": 0.0006,
+ "loss": 3.51116681098938,
+ "step": 4052
+ },
+ {
+ "epoch": 56.293577981651374,
+ "grad_norm": 0.20281212031841278,
+ "learning_rate": 0.0006,
+ "loss": 3.549513816833496,
+ "step": 4053
+ },
+ {
+ "epoch": 56.30755788553954,
+ "grad_norm": 0.19198910892009735,
+ "learning_rate": 0.0006,
+ "loss": 3.5299534797668457,
+ "step": 4054
+ },
+ {
+ "epoch": 56.3215377894277,
+ "grad_norm": 0.1861368715763092,
+ "learning_rate": 0.0006,
+ "loss": 3.513909339904785,
+ "step": 4055
+ },
+ {
+ "epoch": 56.33551769331586,
+ "grad_norm": 0.20779506862163544,
+ "learning_rate": 0.0006,
+ "loss": 3.5528712272644043,
+ "step": 4056
+ },
+ {
+ "epoch": 56.34949759720402,
+ "grad_norm": 0.2229684591293335,
+ "learning_rate": 0.0006,
+ "loss": 3.518359661102295,
+ "step": 4057
+ },
+ {
+ "epoch": 56.36347750109218,
+ "grad_norm": 0.22998179495334625,
+ "learning_rate": 0.0006,
+ "loss": 3.5004091262817383,
+ "step": 4058
+ },
+ {
+ "epoch": 56.37745740498034,
+ "grad_norm": 0.2176709622144699,
+ "learning_rate": 0.0006,
+ "loss": 3.550295829772949,
+ "step": 4059
+ },
+ {
+ "epoch": 56.391437308868504,
+ "grad_norm": 0.19512872397899628,
+ "learning_rate": 0.0006,
+ "loss": 3.5305161476135254,
+ "step": 4060
+ },
+ {
+ "epoch": 56.40541721275666,
+ "grad_norm": 0.23127448558807373,
+ "learning_rate": 0.0006,
+ "loss": 3.5341286659240723,
+ "step": 4061
+ },
+ {
+ "epoch": 56.419397116644824,
+ "grad_norm": 0.20905959606170654,
+ "learning_rate": 0.0006,
+ "loss": 3.553912401199341,
+ "step": 4062
+ },
+ {
+ "epoch": 56.43337702053299,
+ "grad_norm": 0.23370878398418427,
+ "learning_rate": 0.0006,
+ "loss": 3.5700249671936035,
+ "step": 4063
+ },
+ {
+ "epoch": 56.44735692442114,
+ "grad_norm": 0.233205646276474,
+ "learning_rate": 0.0006,
+ "loss": 3.5184097290039062,
+ "step": 4064
+ },
+ {
+ "epoch": 56.46133682830931,
+ "grad_norm": 0.23928777873516083,
+ "learning_rate": 0.0006,
+ "loss": 3.535874366760254,
+ "step": 4065
+ },
+ {
+ "epoch": 56.47531673219746,
+ "grad_norm": 0.24950815737247467,
+ "learning_rate": 0.0006,
+ "loss": 3.508136749267578,
+ "step": 4066
+ },
+ {
+ "epoch": 56.489296636085626,
+ "grad_norm": 0.24821820855140686,
+ "learning_rate": 0.0006,
+ "loss": 3.5421361923217773,
+ "step": 4067
+ },
+ {
+ "epoch": 56.50327653997379,
+ "grad_norm": 0.2252482771873474,
+ "learning_rate": 0.0006,
+ "loss": 3.5516514778137207,
+ "step": 4068
+ },
+ {
+ "epoch": 56.517256443861946,
+ "grad_norm": 0.2238101363182068,
+ "learning_rate": 0.0006,
+ "loss": 3.567741632461548,
+ "step": 4069
+ },
+ {
+ "epoch": 56.53123634775011,
+ "grad_norm": 0.20759683847427368,
+ "learning_rate": 0.0006,
+ "loss": 3.544705390930176,
+ "step": 4070
+ },
+ {
+ "epoch": 56.54521625163827,
+ "grad_norm": 0.21918460726737976,
+ "learning_rate": 0.0006,
+ "loss": 3.5725836753845215,
+ "step": 4071
+ },
+ {
+ "epoch": 56.55919615552643,
+ "grad_norm": 0.22640042006969452,
+ "learning_rate": 0.0006,
+ "loss": 3.5447535514831543,
+ "step": 4072
+ },
+ {
+ "epoch": 56.57317605941459,
+ "grad_norm": 0.23130203783512115,
+ "learning_rate": 0.0006,
+ "loss": 3.5620853900909424,
+ "step": 4073
+ },
+ {
+ "epoch": 56.58715596330275,
+ "grad_norm": 0.2215641736984253,
+ "learning_rate": 0.0006,
+ "loss": 3.5416438579559326,
+ "step": 4074
+ },
+ {
+ "epoch": 56.60113586719091,
+ "grad_norm": 0.20106497406959534,
+ "learning_rate": 0.0006,
+ "loss": 3.537386178970337,
+ "step": 4075
+ },
+ {
+ "epoch": 56.615115771079076,
+ "grad_norm": 0.2045976221561432,
+ "learning_rate": 0.0006,
+ "loss": 3.555032730102539,
+ "step": 4076
+ },
+ {
+ "epoch": 56.62909567496723,
+ "grad_norm": 0.20097647607326508,
+ "learning_rate": 0.0006,
+ "loss": 3.559572458267212,
+ "step": 4077
+ },
+ {
+ "epoch": 56.643075578855395,
+ "grad_norm": 0.24158388376235962,
+ "learning_rate": 0.0006,
+ "loss": 3.56520938873291,
+ "step": 4078
+ },
+ {
+ "epoch": 56.65705548274356,
+ "grad_norm": 0.2687791585922241,
+ "learning_rate": 0.0006,
+ "loss": 3.545924663543701,
+ "step": 4079
+ },
+ {
+ "epoch": 56.671035386631715,
+ "grad_norm": 0.22466111183166504,
+ "learning_rate": 0.0006,
+ "loss": 3.5556845664978027,
+ "step": 4080
+ },
+ {
+ "epoch": 56.68501529051988,
+ "grad_norm": 0.2177814394235611,
+ "learning_rate": 0.0006,
+ "loss": 3.5799131393432617,
+ "step": 4081
+ },
+ {
+ "epoch": 56.69899519440804,
+ "grad_norm": 0.2700476050376892,
+ "learning_rate": 0.0006,
+ "loss": 3.5859055519104004,
+ "step": 4082
+ },
+ {
+ "epoch": 56.7129750982962,
+ "grad_norm": 0.28230178356170654,
+ "learning_rate": 0.0006,
+ "loss": 3.5733890533447266,
+ "step": 4083
+ },
+ {
+ "epoch": 56.72695500218436,
+ "grad_norm": 0.29298731684684753,
+ "learning_rate": 0.0006,
+ "loss": 3.556626319885254,
+ "step": 4084
+ },
+ {
+ "epoch": 56.74093490607252,
+ "grad_norm": 0.2818183898925781,
+ "learning_rate": 0.0006,
+ "loss": 3.5884718894958496,
+ "step": 4085
+ },
+ {
+ "epoch": 56.75491480996068,
+ "grad_norm": 0.24008697271347046,
+ "learning_rate": 0.0006,
+ "loss": 3.5464529991149902,
+ "step": 4086
+ },
+ {
+ "epoch": 56.768894713848844,
+ "grad_norm": 0.23406296968460083,
+ "learning_rate": 0.0006,
+ "loss": 3.5622801780700684,
+ "step": 4087
+ },
+ {
+ "epoch": 56.782874617737,
+ "grad_norm": 0.26089322566986084,
+ "learning_rate": 0.0006,
+ "loss": 3.5775020122528076,
+ "step": 4088
+ },
+ {
+ "epoch": 56.796854521625164,
+ "grad_norm": 0.2576654851436615,
+ "learning_rate": 0.0006,
+ "loss": 3.5543627738952637,
+ "step": 4089
+ },
+ {
+ "epoch": 56.81083442551333,
+ "grad_norm": 0.26576393842697144,
+ "learning_rate": 0.0006,
+ "loss": 3.546170711517334,
+ "step": 4090
+ },
+ {
+ "epoch": 56.824814329401484,
+ "grad_norm": 0.22380715608596802,
+ "learning_rate": 0.0006,
+ "loss": 3.5437729358673096,
+ "step": 4091
+ },
+ {
+ "epoch": 56.83879423328965,
+ "grad_norm": 0.20786714553833008,
+ "learning_rate": 0.0006,
+ "loss": 3.5951266288757324,
+ "step": 4092
+ },
+ {
+ "epoch": 56.8527741371778,
+ "grad_norm": 0.23177042603492737,
+ "learning_rate": 0.0006,
+ "loss": 3.549454689025879,
+ "step": 4093
+ },
+ {
+ "epoch": 56.86675404106597,
+ "grad_norm": 0.21466009318828583,
+ "learning_rate": 0.0006,
+ "loss": 3.5611233711242676,
+ "step": 4094
+ },
+ {
+ "epoch": 56.88073394495413,
+ "grad_norm": 0.20928414165973663,
+ "learning_rate": 0.0006,
+ "loss": 3.5550684928894043,
+ "step": 4095
+ },
+ {
+ "epoch": 56.89471384884229,
+ "grad_norm": 0.20727156102657318,
+ "learning_rate": 0.0006,
+ "loss": 3.552496910095215,
+ "step": 4096
+ },
+ {
+ "epoch": 56.90869375273045,
+ "grad_norm": 0.21370401978492737,
+ "learning_rate": 0.0006,
+ "loss": 3.5763869285583496,
+ "step": 4097
+ },
+ {
+ "epoch": 56.92267365661861,
+ "grad_norm": 0.22490337491035461,
+ "learning_rate": 0.0006,
+ "loss": 3.538986921310425,
+ "step": 4098
+ },
+ {
+ "epoch": 56.93665356050677,
+ "grad_norm": 0.23320236802101135,
+ "learning_rate": 0.0006,
+ "loss": 3.5514214038848877,
+ "step": 4099
+ },
+ {
+ "epoch": 56.95063346439493,
+ "grad_norm": 0.22050419449806213,
+ "learning_rate": 0.0006,
+ "loss": 3.5486960411071777,
+ "step": 4100
+ },
+ {
+ "epoch": 56.964613368283096,
+ "grad_norm": 0.2241443395614624,
+ "learning_rate": 0.0006,
+ "loss": 3.5858001708984375,
+ "step": 4101
+ },
+ {
+ "epoch": 56.97859327217125,
+ "grad_norm": 0.24904389679431915,
+ "learning_rate": 0.0006,
+ "loss": 3.586472511291504,
+ "step": 4102
+ },
+ {
+ "epoch": 56.992573176059416,
+ "grad_norm": 0.2333211451768875,
+ "learning_rate": 0.0006,
+ "loss": 3.5463132858276367,
+ "step": 4103
+ },
+ {
+ "epoch": 57.0,
+ "grad_norm": 0.24142783880233765,
+ "learning_rate": 0.0006,
+ "loss": 3.5642542839050293,
+ "step": 4104
+ },
+ {
+ "epoch": 57.0,
+ "eval_loss": 3.973973035812378,
+ "eval_runtime": 46.2906,
+ "eval_samples_per_second": 52.754,
+ "eval_steps_per_second": 3.305,
+ "step": 4104
+ },
+ {
+ "epoch": 57.01397990388816,
+ "grad_norm": 0.21989624202251434,
+ "learning_rate": 0.0006,
+ "loss": 3.539435863494873,
+ "step": 4105
+ },
+ {
+ "epoch": 57.02795980777632,
+ "grad_norm": 0.24061834812164307,
+ "learning_rate": 0.0006,
+ "loss": 3.5251410007476807,
+ "step": 4106
+ },
+ {
+ "epoch": 57.04193971166448,
+ "grad_norm": 0.2483278512954712,
+ "learning_rate": 0.0006,
+ "loss": 3.5104010105133057,
+ "step": 4107
+ },
+ {
+ "epoch": 57.05591961555265,
+ "grad_norm": 0.2717698812484741,
+ "learning_rate": 0.0006,
+ "loss": 3.5134170055389404,
+ "step": 4108
+ },
+ {
+ "epoch": 57.0698995194408,
+ "grad_norm": 0.27335646748542786,
+ "learning_rate": 0.0006,
+ "loss": 3.53574275970459,
+ "step": 4109
+ },
+ {
+ "epoch": 57.083879423328966,
+ "grad_norm": 0.2423052042722702,
+ "learning_rate": 0.0006,
+ "loss": 3.4960169792175293,
+ "step": 4110
+ },
+ {
+ "epoch": 57.09785932721712,
+ "grad_norm": 0.2241092175245285,
+ "learning_rate": 0.0006,
+ "loss": 3.5409107208251953,
+ "step": 4111
+ },
+ {
+ "epoch": 57.111839231105286,
+ "grad_norm": 0.23098452389240265,
+ "learning_rate": 0.0006,
+ "loss": 3.5326709747314453,
+ "step": 4112
+ },
+ {
+ "epoch": 57.12581913499345,
+ "grad_norm": 0.2500186562538147,
+ "learning_rate": 0.0006,
+ "loss": 3.509953498840332,
+ "step": 4113
+ },
+ {
+ "epoch": 57.139799038881605,
+ "grad_norm": 0.26994550228118896,
+ "learning_rate": 0.0006,
+ "loss": 3.560410499572754,
+ "step": 4114
+ },
+ {
+ "epoch": 57.15377894276977,
+ "grad_norm": 0.24950402975082397,
+ "learning_rate": 0.0006,
+ "loss": 3.517613649368286,
+ "step": 4115
+ },
+ {
+ "epoch": 57.16775884665793,
+ "grad_norm": 0.21742430329322815,
+ "learning_rate": 0.0006,
+ "loss": 3.531256675720215,
+ "step": 4116
+ },
+ {
+ "epoch": 57.18173875054609,
+ "grad_norm": 0.29069146513938904,
+ "learning_rate": 0.0006,
+ "loss": 3.5283756256103516,
+ "step": 4117
+ },
+ {
+ "epoch": 57.19571865443425,
+ "grad_norm": 0.2901996970176697,
+ "learning_rate": 0.0006,
+ "loss": 3.5460801124572754,
+ "step": 4118
+ },
+ {
+ "epoch": 57.20969855832241,
+ "grad_norm": 0.2534845471382141,
+ "learning_rate": 0.0006,
+ "loss": 3.515536308288574,
+ "step": 4119
+ },
+ {
+ "epoch": 57.22367846221057,
+ "grad_norm": 0.2352340817451477,
+ "learning_rate": 0.0006,
+ "loss": 3.5281717777252197,
+ "step": 4120
+ },
+ {
+ "epoch": 57.237658366098735,
+ "grad_norm": 0.2263645976781845,
+ "learning_rate": 0.0006,
+ "loss": 3.5629191398620605,
+ "step": 4121
+ },
+ {
+ "epoch": 57.25163826998689,
+ "grad_norm": 0.21413370966911316,
+ "learning_rate": 0.0006,
+ "loss": 3.5342142581939697,
+ "step": 4122
+ },
+ {
+ "epoch": 57.265618173875055,
+ "grad_norm": 0.1969698667526245,
+ "learning_rate": 0.0006,
+ "loss": 3.5467586517333984,
+ "step": 4123
+ },
+ {
+ "epoch": 57.27959807776322,
+ "grad_norm": 0.2106606364250183,
+ "learning_rate": 0.0006,
+ "loss": 3.5409536361694336,
+ "step": 4124
+ },
+ {
+ "epoch": 57.293577981651374,
+ "grad_norm": 0.21824438869953156,
+ "learning_rate": 0.0006,
+ "loss": 3.5246548652648926,
+ "step": 4125
+ },
+ {
+ "epoch": 57.30755788553954,
+ "grad_norm": 0.2147768884897232,
+ "learning_rate": 0.0006,
+ "loss": 3.5411794185638428,
+ "step": 4126
+ },
+ {
+ "epoch": 57.3215377894277,
+ "grad_norm": 0.21352852880954742,
+ "learning_rate": 0.0006,
+ "loss": 3.569387197494507,
+ "step": 4127
+ },
+ {
+ "epoch": 57.33551769331586,
+ "grad_norm": 0.20957978069782257,
+ "learning_rate": 0.0006,
+ "loss": 3.522695779800415,
+ "step": 4128
+ },
+ {
+ "epoch": 57.34949759720402,
+ "grad_norm": 0.2013026475906372,
+ "learning_rate": 0.0006,
+ "loss": 3.5485787391662598,
+ "step": 4129
+ },
+ {
+ "epoch": 57.36347750109218,
+ "grad_norm": 0.2260376214981079,
+ "learning_rate": 0.0006,
+ "loss": 3.547607421875,
+ "step": 4130
+ },
+ {
+ "epoch": 57.37745740498034,
+ "grad_norm": 0.22991685569286346,
+ "learning_rate": 0.0006,
+ "loss": 3.5464730262756348,
+ "step": 4131
+ },
+ {
+ "epoch": 57.391437308868504,
+ "grad_norm": 0.19638051092624664,
+ "learning_rate": 0.0006,
+ "loss": 3.54355525970459,
+ "step": 4132
+ },
+ {
+ "epoch": 57.40541721275666,
+ "grad_norm": 0.19450774788856506,
+ "learning_rate": 0.0006,
+ "loss": 3.5490050315856934,
+ "step": 4133
+ },
+ {
+ "epoch": 57.419397116644824,
+ "grad_norm": 0.21798551082611084,
+ "learning_rate": 0.0006,
+ "loss": 3.56355619430542,
+ "step": 4134
+ },
+ {
+ "epoch": 57.43337702053299,
+ "grad_norm": 0.2129846215248108,
+ "learning_rate": 0.0006,
+ "loss": 3.5607380867004395,
+ "step": 4135
+ },
+ {
+ "epoch": 57.44735692442114,
+ "grad_norm": 0.20589227974414825,
+ "learning_rate": 0.0006,
+ "loss": 3.523768663406372,
+ "step": 4136
+ },
+ {
+ "epoch": 57.46133682830931,
+ "grad_norm": 0.21841686964035034,
+ "learning_rate": 0.0006,
+ "loss": 3.5187885761260986,
+ "step": 4137
+ },
+ {
+ "epoch": 57.47531673219746,
+ "grad_norm": 0.2118791788816452,
+ "learning_rate": 0.0006,
+ "loss": 3.5271782875061035,
+ "step": 4138
+ },
+ {
+ "epoch": 57.489296636085626,
+ "grad_norm": 0.21905459463596344,
+ "learning_rate": 0.0006,
+ "loss": 3.546968460083008,
+ "step": 4139
+ },
+ {
+ "epoch": 57.50327653997379,
+ "grad_norm": 0.23899133503437042,
+ "learning_rate": 0.0006,
+ "loss": 3.5156688690185547,
+ "step": 4140
+ },
+ {
+ "epoch": 57.517256443861946,
+ "grad_norm": 0.23873545229434967,
+ "learning_rate": 0.0006,
+ "loss": 3.5271472930908203,
+ "step": 4141
+ },
+ {
+ "epoch": 57.53123634775011,
+ "grad_norm": 0.20691858232021332,
+ "learning_rate": 0.0006,
+ "loss": 3.552854537963867,
+ "step": 4142
+ },
+ {
+ "epoch": 57.54521625163827,
+ "grad_norm": 0.21962891519069672,
+ "learning_rate": 0.0006,
+ "loss": 3.5258498191833496,
+ "step": 4143
+ },
+ {
+ "epoch": 57.55919615552643,
+ "grad_norm": 0.21762165427207947,
+ "learning_rate": 0.0006,
+ "loss": 3.566831588745117,
+ "step": 4144
+ },
+ {
+ "epoch": 57.57317605941459,
+ "grad_norm": 0.19603654742240906,
+ "learning_rate": 0.0006,
+ "loss": 3.5393714904785156,
+ "step": 4145
+ },
+ {
+ "epoch": 57.58715596330275,
+ "grad_norm": 0.20347437262535095,
+ "learning_rate": 0.0006,
+ "loss": 3.538390874862671,
+ "step": 4146
+ },
+ {
+ "epoch": 57.60113586719091,
+ "grad_norm": 0.2179173231124878,
+ "learning_rate": 0.0006,
+ "loss": 3.566631317138672,
+ "step": 4147
+ },
+ {
+ "epoch": 57.615115771079076,
+ "grad_norm": 0.19678309559822083,
+ "learning_rate": 0.0006,
+ "loss": 3.5659375190734863,
+ "step": 4148
+ },
+ {
+ "epoch": 57.62909567496723,
+ "grad_norm": 0.20221677422523499,
+ "learning_rate": 0.0006,
+ "loss": 3.5679430961608887,
+ "step": 4149
+ },
+ {
+ "epoch": 57.643075578855395,
+ "grad_norm": 0.21337579190731049,
+ "learning_rate": 0.0006,
+ "loss": 3.5330681800842285,
+ "step": 4150
+ },
+ {
+ "epoch": 57.65705548274356,
+ "grad_norm": 0.2646789848804474,
+ "learning_rate": 0.0006,
+ "loss": 3.5216803550720215,
+ "step": 4151
+ },
+ {
+ "epoch": 57.671035386631715,
+ "grad_norm": 0.304950088262558,
+ "learning_rate": 0.0006,
+ "loss": 3.5570156574249268,
+ "step": 4152
+ },
+ {
+ "epoch": 57.68501529051988,
+ "grad_norm": 0.2739402651786804,
+ "learning_rate": 0.0006,
+ "loss": 3.5844314098358154,
+ "step": 4153
+ },
+ {
+ "epoch": 57.69899519440804,
+ "grad_norm": 0.19060099124908447,
+ "learning_rate": 0.0006,
+ "loss": 3.571052074432373,
+ "step": 4154
+ },
+ {
+ "epoch": 57.7129750982962,
+ "grad_norm": 0.2941007614135742,
+ "learning_rate": 0.0006,
+ "loss": 3.543100357055664,
+ "step": 4155
+ },
+ {
+ "epoch": 57.72695500218436,
+ "grad_norm": 0.34624332189559937,
+ "learning_rate": 0.0006,
+ "loss": 3.564270496368408,
+ "step": 4156
+ },
+ {
+ "epoch": 57.74093490607252,
+ "grad_norm": 0.30635201930999756,
+ "learning_rate": 0.0006,
+ "loss": 3.5390584468841553,
+ "step": 4157
+ },
+ {
+ "epoch": 57.75491480996068,
+ "grad_norm": 0.2204878330230713,
+ "learning_rate": 0.0006,
+ "loss": 3.5427281856536865,
+ "step": 4158
+ },
+ {
+ "epoch": 57.768894713848844,
+ "grad_norm": 0.20659378170967102,
+ "learning_rate": 0.0006,
+ "loss": 3.528977155685425,
+ "step": 4159
+ },
+ {
+ "epoch": 57.782874617737,
+ "grad_norm": 0.2281361073255539,
+ "learning_rate": 0.0006,
+ "loss": 3.5531792640686035,
+ "step": 4160
+ },
+ {
+ "epoch": 57.796854521625164,
+ "grad_norm": 0.22478239238262177,
+ "learning_rate": 0.0006,
+ "loss": 3.566704750061035,
+ "step": 4161
+ },
+ {
+ "epoch": 57.81083442551333,
+ "grad_norm": 0.20797103643417358,
+ "learning_rate": 0.0006,
+ "loss": 3.5684943199157715,
+ "step": 4162
+ },
+ {
+ "epoch": 57.824814329401484,
+ "grad_norm": 0.2108374983072281,
+ "learning_rate": 0.0006,
+ "loss": 3.5475950241088867,
+ "step": 4163
+ },
+ {
+ "epoch": 57.83879423328965,
+ "grad_norm": 0.2268034815788269,
+ "learning_rate": 0.0006,
+ "loss": 3.5456833839416504,
+ "step": 4164
+ },
+ {
+ "epoch": 57.8527741371778,
+ "grad_norm": 0.2131519913673401,
+ "learning_rate": 0.0006,
+ "loss": 3.5316243171691895,
+ "step": 4165
+ },
+ {
+ "epoch": 57.86675404106597,
+ "grad_norm": 0.20163841545581818,
+ "learning_rate": 0.0006,
+ "loss": 3.5320897102355957,
+ "step": 4166
+ },
+ {
+ "epoch": 57.88073394495413,
+ "grad_norm": 0.20961757004261017,
+ "learning_rate": 0.0006,
+ "loss": 3.5800695419311523,
+ "step": 4167
+ },
+ {
+ "epoch": 57.89471384884229,
+ "grad_norm": 0.2061416506767273,
+ "learning_rate": 0.0006,
+ "loss": 3.544395923614502,
+ "step": 4168
+ },
+ {
+ "epoch": 57.90869375273045,
+ "grad_norm": 0.20306318998336792,
+ "learning_rate": 0.0006,
+ "loss": 3.554436683654785,
+ "step": 4169
+ },
+ {
+ "epoch": 57.92267365661861,
+ "grad_norm": 0.20685963332653046,
+ "learning_rate": 0.0006,
+ "loss": 3.5614635944366455,
+ "step": 4170
+ },
+ {
+ "epoch": 57.93665356050677,
+ "grad_norm": 0.19938082993030548,
+ "learning_rate": 0.0006,
+ "loss": 3.578136920928955,
+ "step": 4171
+ },
+ {
+ "epoch": 57.95063346439493,
+ "grad_norm": 0.2150411158800125,
+ "learning_rate": 0.0006,
+ "loss": 3.5754270553588867,
+ "step": 4172
+ },
+ {
+ "epoch": 57.964613368283096,
+ "grad_norm": 0.23399604856967926,
+ "learning_rate": 0.0006,
+ "loss": 3.5553112030029297,
+ "step": 4173
+ },
+ {
+ "epoch": 57.97859327217125,
+ "grad_norm": 0.2496841847896576,
+ "learning_rate": 0.0006,
+ "loss": 3.5509696006774902,
+ "step": 4174
+ },
+ {
+ "epoch": 57.992573176059416,
+ "grad_norm": 0.23759980499744415,
+ "learning_rate": 0.0006,
+ "loss": 3.5806684494018555,
+ "step": 4175
+ },
+ {
+ "epoch": 58.0,
+ "grad_norm": 0.2494540512561798,
+ "learning_rate": 0.0006,
+ "loss": 3.541708469390869,
+ "step": 4176
+ },
+ {
+ "epoch": 58.0,
+ "eval_loss": 3.970658779144287,
+ "eval_runtime": 46.0262,
+ "eval_samples_per_second": 53.057,
+ "eval_steps_per_second": 3.324,
+ "step": 4176
+ },
+ {
+ "epoch": 58.01397990388816,
+ "grad_norm": 0.2053643763065338,
+ "learning_rate": 0.0006,
+ "loss": 3.5264205932617188,
+ "step": 4177
+ },
+ {
+ "epoch": 58.02795980777632,
+ "grad_norm": 0.20680591464042664,
+ "learning_rate": 0.0006,
+ "loss": 3.495445728302002,
+ "step": 4178
+ },
+ {
+ "epoch": 58.04193971166448,
+ "grad_norm": 0.22180874645709991,
+ "learning_rate": 0.0006,
+ "loss": 3.546283483505249,
+ "step": 4179
+ },
+ {
+ "epoch": 58.05591961555265,
+ "grad_norm": 0.24255339801311493,
+ "learning_rate": 0.0006,
+ "loss": 3.50639271736145,
+ "step": 4180
+ },
+ {
+ "epoch": 58.0698995194408,
+ "grad_norm": 0.2747100591659546,
+ "learning_rate": 0.0006,
+ "loss": 3.514240026473999,
+ "step": 4181
+ },
+ {
+ "epoch": 58.083879423328966,
+ "grad_norm": 0.27960914373397827,
+ "learning_rate": 0.0006,
+ "loss": 3.5614311695098877,
+ "step": 4182
+ },
+ {
+ "epoch": 58.09785932721712,
+ "grad_norm": 0.25837743282318115,
+ "learning_rate": 0.0006,
+ "loss": 3.533560276031494,
+ "step": 4183
+ },
+ {
+ "epoch": 58.111839231105286,
+ "grad_norm": 0.24635657668113708,
+ "learning_rate": 0.0006,
+ "loss": 3.4867968559265137,
+ "step": 4184
+ },
+ {
+ "epoch": 58.12581913499345,
+ "grad_norm": 0.31520891189575195,
+ "learning_rate": 0.0006,
+ "loss": 3.5131611824035645,
+ "step": 4185
+ },
+ {
+ "epoch": 58.139799038881605,
+ "grad_norm": 0.36781513690948486,
+ "learning_rate": 0.0006,
+ "loss": 3.5149288177490234,
+ "step": 4186
+ },
+ {
+ "epoch": 58.15377894276977,
+ "grad_norm": 0.32433459162712097,
+ "learning_rate": 0.0006,
+ "loss": 3.5485405921936035,
+ "step": 4187
+ },
+ {
+ "epoch": 58.16775884665793,
+ "grad_norm": 0.2532205283641815,
+ "learning_rate": 0.0006,
+ "loss": 3.4994513988494873,
+ "step": 4188
+ },
+ {
+ "epoch": 58.18173875054609,
+ "grad_norm": 0.29780858755111694,
+ "learning_rate": 0.0006,
+ "loss": 3.496187448501587,
+ "step": 4189
+ },
+ {
+ "epoch": 58.19571865443425,
+ "grad_norm": 0.2804715037345886,
+ "learning_rate": 0.0006,
+ "loss": 3.5210375785827637,
+ "step": 4190
+ },
+ {
+ "epoch": 58.20969855832241,
+ "grad_norm": 0.2186010330915451,
+ "learning_rate": 0.0006,
+ "loss": 3.5139119625091553,
+ "step": 4191
+ },
+ {
+ "epoch": 58.22367846221057,
+ "grad_norm": 0.21566270291805267,
+ "learning_rate": 0.0006,
+ "loss": 3.5011606216430664,
+ "step": 4192
+ },
+ {
+ "epoch": 58.237658366098735,
+ "grad_norm": 0.21042031049728394,
+ "learning_rate": 0.0006,
+ "loss": 3.52295184135437,
+ "step": 4193
+ },
+ {
+ "epoch": 58.25163826998689,
+ "grad_norm": 0.20117411017417908,
+ "learning_rate": 0.0006,
+ "loss": 3.54593563079834,
+ "step": 4194
+ },
+ {
+ "epoch": 58.265618173875055,
+ "grad_norm": 0.21747945249080658,
+ "learning_rate": 0.0006,
+ "loss": 3.5341522693634033,
+ "step": 4195
+ },
+ {
+ "epoch": 58.27959807776322,
+ "grad_norm": 0.266024649143219,
+ "learning_rate": 0.0006,
+ "loss": 3.536393165588379,
+ "step": 4196
+ },
+ {
+ "epoch": 58.293577981651374,
+ "grad_norm": 0.2577304542064667,
+ "learning_rate": 0.0006,
+ "loss": 3.557468891143799,
+ "step": 4197
+ },
+ {
+ "epoch": 58.30755788553954,
+ "grad_norm": 0.22055941820144653,
+ "learning_rate": 0.0006,
+ "loss": 3.5307652950286865,
+ "step": 4198
+ },
+ {
+ "epoch": 58.3215377894277,
+ "grad_norm": 0.22490856051445007,
+ "learning_rate": 0.0006,
+ "loss": 3.506265163421631,
+ "step": 4199
+ },
+ {
+ "epoch": 58.33551769331586,
+ "grad_norm": 0.23600345849990845,
+ "learning_rate": 0.0006,
+ "loss": 3.523414134979248,
+ "step": 4200
+ },
+ {
+ "epoch": 58.34949759720402,
+ "grad_norm": 0.24872642755508423,
+ "learning_rate": 0.0006,
+ "loss": 3.561278820037842,
+ "step": 4201
+ },
+ {
+ "epoch": 58.36347750109218,
+ "grad_norm": 0.2702998220920563,
+ "learning_rate": 0.0006,
+ "loss": 3.573561191558838,
+ "step": 4202
+ },
+ {
+ "epoch": 58.37745740498034,
+ "grad_norm": 0.2532080411911011,
+ "learning_rate": 0.0006,
+ "loss": 3.5476837158203125,
+ "step": 4203
+ },
+ {
+ "epoch": 58.391437308868504,
+ "grad_norm": 0.23641079664230347,
+ "learning_rate": 0.0006,
+ "loss": 3.5464468002319336,
+ "step": 4204
+ },
+ {
+ "epoch": 58.40541721275666,
+ "grad_norm": 0.29965463280677795,
+ "learning_rate": 0.0006,
+ "loss": 3.560166835784912,
+ "step": 4205
+ },
+ {
+ "epoch": 58.419397116644824,
+ "grad_norm": 0.2778814136981964,
+ "learning_rate": 0.0006,
+ "loss": 3.5363056659698486,
+ "step": 4206
+ },
+ {
+ "epoch": 58.43337702053299,
+ "grad_norm": 0.23625248670578003,
+ "learning_rate": 0.0006,
+ "loss": 3.5575437545776367,
+ "step": 4207
+ },
+ {
+ "epoch": 58.44735692442114,
+ "grad_norm": 0.2165721356868744,
+ "learning_rate": 0.0006,
+ "loss": 3.541654109954834,
+ "step": 4208
+ },
+ {
+ "epoch": 58.46133682830931,
+ "grad_norm": 0.2261950671672821,
+ "learning_rate": 0.0006,
+ "loss": 3.5462238788604736,
+ "step": 4209
+ },
+ {
+ "epoch": 58.47531673219746,
+ "grad_norm": 0.23496517539024353,
+ "learning_rate": 0.0006,
+ "loss": 3.510138988494873,
+ "step": 4210
+ },
+ {
+ "epoch": 58.489296636085626,
+ "grad_norm": 0.27041929960250854,
+ "learning_rate": 0.0006,
+ "loss": 3.527822971343994,
+ "step": 4211
+ },
+ {
+ "epoch": 58.50327653997379,
+ "grad_norm": 0.2594013512134552,
+ "learning_rate": 0.0006,
+ "loss": 3.5358262062072754,
+ "step": 4212
+ },
+ {
+ "epoch": 58.517256443861946,
+ "grad_norm": 0.23336786031723022,
+ "learning_rate": 0.0006,
+ "loss": 3.530122756958008,
+ "step": 4213
+ },
+ {
+ "epoch": 58.53123634775011,
+ "grad_norm": 0.21956655383110046,
+ "learning_rate": 0.0006,
+ "loss": 3.541039228439331,
+ "step": 4214
+ },
+ {
+ "epoch": 58.54521625163827,
+ "grad_norm": 0.22432804107666016,
+ "learning_rate": 0.0006,
+ "loss": 3.520948886871338,
+ "step": 4215
+ },
+ {
+ "epoch": 58.55919615552643,
+ "grad_norm": 0.21589893102645874,
+ "learning_rate": 0.0006,
+ "loss": 3.569808006286621,
+ "step": 4216
+ },
+ {
+ "epoch": 58.57317605941459,
+ "grad_norm": 0.20264557003974915,
+ "learning_rate": 0.0006,
+ "loss": 3.514918088912964,
+ "step": 4217
+ },
+ {
+ "epoch": 58.58715596330275,
+ "grad_norm": 0.20911480486392975,
+ "learning_rate": 0.0006,
+ "loss": 3.5340771675109863,
+ "step": 4218
+ },
+ {
+ "epoch": 58.60113586719091,
+ "grad_norm": 0.21068964898586273,
+ "learning_rate": 0.0006,
+ "loss": 3.5388903617858887,
+ "step": 4219
+ },
+ {
+ "epoch": 58.615115771079076,
+ "grad_norm": 0.19314789772033691,
+ "learning_rate": 0.0006,
+ "loss": 3.5405967235565186,
+ "step": 4220
+ },
+ {
+ "epoch": 58.62909567496723,
+ "grad_norm": 0.18347802758216858,
+ "learning_rate": 0.0006,
+ "loss": 3.5208020210266113,
+ "step": 4221
+ },
+ {
+ "epoch": 58.643075578855395,
+ "grad_norm": 0.2082843780517578,
+ "learning_rate": 0.0006,
+ "loss": 3.5454647541046143,
+ "step": 4222
+ },
+ {
+ "epoch": 58.65705548274356,
+ "grad_norm": 0.2049611210823059,
+ "learning_rate": 0.0006,
+ "loss": 3.529350996017456,
+ "step": 4223
+ },
+ {
+ "epoch": 58.671035386631715,
+ "grad_norm": 0.19259536266326904,
+ "learning_rate": 0.0006,
+ "loss": 3.5589945316314697,
+ "step": 4224
+ },
+ {
+ "epoch": 58.68501529051988,
+ "grad_norm": 0.19039863348007202,
+ "learning_rate": 0.0006,
+ "loss": 3.5593101978302,
+ "step": 4225
+ },
+ {
+ "epoch": 58.69899519440804,
+ "grad_norm": 0.21481311321258545,
+ "learning_rate": 0.0006,
+ "loss": 3.55385422706604,
+ "step": 4226
+ },
+ {
+ "epoch": 58.7129750982962,
+ "grad_norm": 0.2053634226322174,
+ "learning_rate": 0.0006,
+ "loss": 3.535224437713623,
+ "step": 4227
+ },
+ {
+ "epoch": 58.72695500218436,
+ "grad_norm": 0.21111956238746643,
+ "learning_rate": 0.0006,
+ "loss": 3.5208349227905273,
+ "step": 4228
+ },
+ {
+ "epoch": 58.74093490607252,
+ "grad_norm": 0.22069109976291656,
+ "learning_rate": 0.0006,
+ "loss": 3.5292487144470215,
+ "step": 4229
+ },
+ {
+ "epoch": 58.75491480996068,
+ "grad_norm": 0.22549185156822205,
+ "learning_rate": 0.0006,
+ "loss": 3.556830406188965,
+ "step": 4230
+ },
+ {
+ "epoch": 58.768894713848844,
+ "grad_norm": 0.22341859340667725,
+ "learning_rate": 0.0006,
+ "loss": 3.5573582649230957,
+ "step": 4231
+ },
+ {
+ "epoch": 58.782874617737,
+ "grad_norm": 0.20664502680301666,
+ "learning_rate": 0.0006,
+ "loss": 3.578657865524292,
+ "step": 4232
+ },
+ {
+ "epoch": 58.796854521625164,
+ "grad_norm": 0.19885236024856567,
+ "learning_rate": 0.0006,
+ "loss": 3.5604476928710938,
+ "step": 4233
+ },
+ {
+ "epoch": 58.81083442551333,
+ "grad_norm": 0.19446797668933868,
+ "learning_rate": 0.0006,
+ "loss": 3.5686912536621094,
+ "step": 4234
+ },
+ {
+ "epoch": 58.824814329401484,
+ "grad_norm": 0.20658083260059357,
+ "learning_rate": 0.0006,
+ "loss": 3.563167095184326,
+ "step": 4235
+ },
+ {
+ "epoch": 58.83879423328965,
+ "grad_norm": 0.21075408160686493,
+ "learning_rate": 0.0006,
+ "loss": 3.5597028732299805,
+ "step": 4236
+ },
+ {
+ "epoch": 58.8527741371778,
+ "grad_norm": 0.20652376115322113,
+ "learning_rate": 0.0006,
+ "loss": 3.5651087760925293,
+ "step": 4237
+ },
+ {
+ "epoch": 58.86675404106597,
+ "grad_norm": 0.2243892401456833,
+ "learning_rate": 0.0006,
+ "loss": 3.5442488193511963,
+ "step": 4238
+ },
+ {
+ "epoch": 58.88073394495413,
+ "grad_norm": 0.23486459255218506,
+ "learning_rate": 0.0006,
+ "loss": 3.545135974884033,
+ "step": 4239
+ },
+ {
+ "epoch": 58.89471384884229,
+ "grad_norm": 0.23100663721561432,
+ "learning_rate": 0.0006,
+ "loss": 3.57177734375,
+ "step": 4240
+ },
+ {
+ "epoch": 58.90869375273045,
+ "grad_norm": 0.2269909679889679,
+ "learning_rate": 0.0006,
+ "loss": 3.528768301010132,
+ "step": 4241
+ },
+ {
+ "epoch": 58.92267365661861,
+ "grad_norm": 0.20349252223968506,
+ "learning_rate": 0.0006,
+ "loss": 3.591031789779663,
+ "step": 4242
+ },
+ {
+ "epoch": 58.93665356050677,
+ "grad_norm": 0.21038702130317688,
+ "learning_rate": 0.0006,
+ "loss": 3.5696892738342285,
+ "step": 4243
+ },
+ {
+ "epoch": 58.95063346439493,
+ "grad_norm": 0.21356560289859772,
+ "learning_rate": 0.0006,
+ "loss": 3.5708963871002197,
+ "step": 4244
+ },
+ {
+ "epoch": 58.964613368283096,
+ "grad_norm": 0.20008863508701324,
+ "learning_rate": 0.0006,
+ "loss": 3.524749279022217,
+ "step": 4245
+ },
+ {
+ "epoch": 58.97859327217125,
+ "grad_norm": 0.20453840494155884,
+ "learning_rate": 0.0006,
+ "loss": 3.5677876472473145,
+ "step": 4246
+ },
+ {
+ "epoch": 58.992573176059416,
+ "grad_norm": 0.21549056470394135,
+ "learning_rate": 0.0006,
+ "loss": 3.550870418548584,
+ "step": 4247
+ },
+ {
+ "epoch": 59.0,
+ "grad_norm": 0.2592930793762207,
+ "learning_rate": 0.0006,
+ "loss": 3.550673484802246,
+ "step": 4248
+ },
+ {
+ "epoch": 59.0,
+ "eval_loss": 3.968780279159546,
+ "eval_runtime": 45.6246,
+ "eval_samples_per_second": 53.524,
+ "eval_steps_per_second": 3.353,
+ "step": 4248
+ },
+ {
+ "epoch": 59.01397990388816,
+ "grad_norm": 0.218043252825737,
+ "learning_rate": 0.0006,
+ "loss": 3.49605655670166,
+ "step": 4249
+ },
+ {
+ "epoch": 59.02795980777632,
+ "grad_norm": 0.25112417340278625,
+ "learning_rate": 0.0006,
+ "loss": 3.534919023513794,
+ "step": 4250
+ },
+ {
+ "epoch": 59.04193971166448,
+ "grad_norm": 0.2785079777240753,
+ "learning_rate": 0.0006,
+ "loss": 3.5425362586975098,
+ "step": 4251
+ },
+ {
+ "epoch": 59.05591961555265,
+ "grad_norm": 0.2667599618434906,
+ "learning_rate": 0.0006,
+ "loss": 3.4955453872680664,
+ "step": 4252
+ },
+ {
+ "epoch": 59.0698995194408,
+ "grad_norm": 0.24012432992458344,
+ "learning_rate": 0.0006,
+ "loss": 3.4949915409088135,
+ "step": 4253
+ },
+ {
+ "epoch": 59.083879423328966,
+ "grad_norm": 0.2502294182777405,
+ "learning_rate": 0.0006,
+ "loss": 3.5163769721984863,
+ "step": 4254
+ },
+ {
+ "epoch": 59.09785932721712,
+ "grad_norm": 0.28585609793663025,
+ "learning_rate": 0.0006,
+ "loss": 3.4852542877197266,
+ "step": 4255
+ },
+ {
+ "epoch": 59.111839231105286,
+ "grad_norm": 0.2815989553928375,
+ "learning_rate": 0.0006,
+ "loss": 3.4991462230682373,
+ "step": 4256
+ },
+ {
+ "epoch": 59.12581913499345,
+ "grad_norm": 0.22922837734222412,
+ "learning_rate": 0.0006,
+ "loss": 3.511322021484375,
+ "step": 4257
+ },
+ {
+ "epoch": 59.139799038881605,
+ "grad_norm": 0.24964241683483124,
+ "learning_rate": 0.0006,
+ "loss": 3.521056652069092,
+ "step": 4258
+ },
+ {
+ "epoch": 59.15377894276977,
+ "grad_norm": 0.27568385004997253,
+ "learning_rate": 0.0006,
+ "loss": 3.514004707336426,
+ "step": 4259
+ },
+ {
+ "epoch": 59.16775884665793,
+ "grad_norm": 0.2605166733264923,
+ "learning_rate": 0.0006,
+ "loss": 3.5132668018341064,
+ "step": 4260
+ },
+ {
+ "epoch": 59.18173875054609,
+ "grad_norm": 0.24248117208480835,
+ "learning_rate": 0.0006,
+ "loss": 3.5492095947265625,
+ "step": 4261
+ },
+ {
+ "epoch": 59.19571865443425,
+ "grad_norm": 0.26359522342681885,
+ "learning_rate": 0.0006,
+ "loss": 3.521390438079834,
+ "step": 4262
+ },
+ {
+ "epoch": 59.20969855832241,
+ "grad_norm": 0.262248694896698,
+ "learning_rate": 0.0006,
+ "loss": 3.556307315826416,
+ "step": 4263
+ },
+ {
+ "epoch": 59.22367846221057,
+ "grad_norm": 0.23514866828918457,
+ "learning_rate": 0.0006,
+ "loss": 3.4989941120147705,
+ "step": 4264
+ },
+ {
+ "epoch": 59.237658366098735,
+ "grad_norm": 0.22758382558822632,
+ "learning_rate": 0.0006,
+ "loss": 3.5307068824768066,
+ "step": 4265
+ },
+ {
+ "epoch": 59.25163826998689,
+ "grad_norm": 0.24037839472293854,
+ "learning_rate": 0.0006,
+ "loss": 3.495872974395752,
+ "step": 4266
+ },
+ {
+ "epoch": 59.265618173875055,
+ "grad_norm": 0.22763589024543762,
+ "learning_rate": 0.0006,
+ "loss": 3.54052472114563,
+ "step": 4267
+ },
+ {
+ "epoch": 59.27959807776322,
+ "grad_norm": 0.22400406002998352,
+ "learning_rate": 0.0006,
+ "loss": 3.498671054840088,
+ "step": 4268
+ },
+ {
+ "epoch": 59.293577981651374,
+ "grad_norm": 0.2326328009366989,
+ "learning_rate": 0.0006,
+ "loss": 3.559108257293701,
+ "step": 4269
+ },
+ {
+ "epoch": 59.30755788553954,
+ "grad_norm": 0.24426043033599854,
+ "learning_rate": 0.0006,
+ "loss": 3.5245609283447266,
+ "step": 4270
+ },
+ {
+ "epoch": 59.3215377894277,
+ "grad_norm": 0.2159317582845688,
+ "learning_rate": 0.0006,
+ "loss": 3.5189900398254395,
+ "step": 4271
+ },
+ {
+ "epoch": 59.33551769331586,
+ "grad_norm": 0.19148702919483185,
+ "learning_rate": 0.0006,
+ "loss": 3.548433303833008,
+ "step": 4272
+ },
+ {
+ "epoch": 59.34949759720402,
+ "grad_norm": 0.23349083960056305,
+ "learning_rate": 0.0006,
+ "loss": 3.5475196838378906,
+ "step": 4273
+ },
+ {
+ "epoch": 59.36347750109218,
+ "grad_norm": 0.24024079740047455,
+ "learning_rate": 0.0006,
+ "loss": 3.5172529220581055,
+ "step": 4274
+ },
+ {
+ "epoch": 59.37745740498034,
+ "grad_norm": 0.23772001266479492,
+ "learning_rate": 0.0006,
+ "loss": 3.5428695678710938,
+ "step": 4275
+ },
+ {
+ "epoch": 59.391437308868504,
+ "grad_norm": 0.21134959161281586,
+ "learning_rate": 0.0006,
+ "loss": 3.523099422454834,
+ "step": 4276
+ },
+ {
+ "epoch": 59.40541721275666,
+ "grad_norm": 0.20760025084018707,
+ "learning_rate": 0.0006,
+ "loss": 3.55435848236084,
+ "step": 4277
+ },
+ {
+ "epoch": 59.419397116644824,
+ "grad_norm": 0.21113243699073792,
+ "learning_rate": 0.0006,
+ "loss": 3.5355324745178223,
+ "step": 4278
+ },
+ {
+ "epoch": 59.43337702053299,
+ "grad_norm": 0.21604566276073456,
+ "learning_rate": 0.0006,
+ "loss": 3.5517663955688477,
+ "step": 4279
+ },
+ {
+ "epoch": 59.44735692442114,
+ "grad_norm": 0.19646669924259186,
+ "learning_rate": 0.0006,
+ "loss": 3.538435935974121,
+ "step": 4280
+ },
+ {
+ "epoch": 59.46133682830931,
+ "grad_norm": 0.20394550263881683,
+ "learning_rate": 0.0006,
+ "loss": 3.528444290161133,
+ "step": 4281
+ },
+ {
+ "epoch": 59.47531673219746,
+ "grad_norm": 0.24543620645999908,
+ "learning_rate": 0.0006,
+ "loss": 3.5355372428894043,
+ "step": 4282
+ },
+ {
+ "epoch": 59.489296636085626,
+ "grad_norm": 0.24048425257205963,
+ "learning_rate": 0.0006,
+ "loss": 3.521336078643799,
+ "step": 4283
+ },
+ {
+ "epoch": 59.50327653997379,
+ "grad_norm": 0.23630213737487793,
+ "learning_rate": 0.0006,
+ "loss": 3.556244373321533,
+ "step": 4284
+ },
+ {
+ "epoch": 59.517256443861946,
+ "grad_norm": 0.2791444659233093,
+ "learning_rate": 0.0006,
+ "loss": 3.5927138328552246,
+ "step": 4285
+ },
+ {
+ "epoch": 59.53123634775011,
+ "grad_norm": 0.30325770378112793,
+ "learning_rate": 0.0006,
+ "loss": 3.559296131134033,
+ "step": 4286
+ },
+ {
+ "epoch": 59.54521625163827,
+ "grad_norm": 0.2708670496940613,
+ "learning_rate": 0.0006,
+ "loss": 3.531050205230713,
+ "step": 4287
+ },
+ {
+ "epoch": 59.55919615552643,
+ "grad_norm": 0.23795515298843384,
+ "learning_rate": 0.0006,
+ "loss": 3.5365982055664062,
+ "step": 4288
+ },
+ {
+ "epoch": 59.57317605941459,
+ "grad_norm": 0.20949627459049225,
+ "learning_rate": 0.0006,
+ "loss": 3.5591273307800293,
+ "step": 4289
+ },
+ {
+ "epoch": 59.58715596330275,
+ "grad_norm": 0.21885769069194794,
+ "learning_rate": 0.0006,
+ "loss": 3.4965288639068604,
+ "step": 4290
+ },
+ {
+ "epoch": 59.60113586719091,
+ "grad_norm": 0.22365590929985046,
+ "learning_rate": 0.0006,
+ "loss": 3.538118362426758,
+ "step": 4291
+ },
+ {
+ "epoch": 59.615115771079076,
+ "grad_norm": 0.23178881406784058,
+ "learning_rate": 0.0006,
+ "loss": 3.515933036804199,
+ "step": 4292
+ },
+ {
+ "epoch": 59.62909567496723,
+ "grad_norm": 0.21539060771465302,
+ "learning_rate": 0.0006,
+ "loss": 3.54185152053833,
+ "step": 4293
+ },
+ {
+ "epoch": 59.643075578855395,
+ "grad_norm": 0.22033682465553284,
+ "learning_rate": 0.0006,
+ "loss": 3.526728630065918,
+ "step": 4294
+ },
+ {
+ "epoch": 59.65705548274356,
+ "grad_norm": 0.23003938794136047,
+ "learning_rate": 0.0006,
+ "loss": 3.555710792541504,
+ "step": 4295
+ },
+ {
+ "epoch": 59.671035386631715,
+ "grad_norm": 0.22887346148490906,
+ "learning_rate": 0.0006,
+ "loss": 3.580883502960205,
+ "step": 4296
+ },
+ {
+ "epoch": 59.68501529051988,
+ "grad_norm": 0.2147892713546753,
+ "learning_rate": 0.0006,
+ "loss": 3.5318822860717773,
+ "step": 4297
+ },
+ {
+ "epoch": 59.69899519440804,
+ "grad_norm": 0.22063598036766052,
+ "learning_rate": 0.0006,
+ "loss": 3.5179357528686523,
+ "step": 4298
+ },
+ {
+ "epoch": 59.7129750982962,
+ "grad_norm": 0.22569656372070312,
+ "learning_rate": 0.0006,
+ "loss": 3.583181381225586,
+ "step": 4299
+ },
+ {
+ "epoch": 59.72695500218436,
+ "grad_norm": 0.2252701222896576,
+ "learning_rate": 0.0006,
+ "loss": 3.5780375003814697,
+ "step": 4300
+ },
+ {
+ "epoch": 59.74093490607252,
+ "grad_norm": 0.2288130521774292,
+ "learning_rate": 0.0006,
+ "loss": 3.570399284362793,
+ "step": 4301
+ },
+ {
+ "epoch": 59.75491480996068,
+ "grad_norm": 0.21879231929779053,
+ "learning_rate": 0.0006,
+ "loss": 3.540292739868164,
+ "step": 4302
+ },
+ {
+ "epoch": 59.768894713848844,
+ "grad_norm": 0.20675964653491974,
+ "learning_rate": 0.0006,
+ "loss": 3.532649040222168,
+ "step": 4303
+ },
+ {
+ "epoch": 59.782874617737,
+ "grad_norm": 0.21810708940029144,
+ "learning_rate": 0.0006,
+ "loss": 3.5156657695770264,
+ "step": 4304
+ },
+ {
+ "epoch": 59.796854521625164,
+ "grad_norm": 0.22701260447502136,
+ "learning_rate": 0.0006,
+ "loss": 3.5535266399383545,
+ "step": 4305
+ },
+ {
+ "epoch": 59.81083442551333,
+ "grad_norm": 0.23433080315589905,
+ "learning_rate": 0.0006,
+ "loss": 3.5280754566192627,
+ "step": 4306
+ },
+ {
+ "epoch": 59.824814329401484,
+ "grad_norm": 0.2254341095685959,
+ "learning_rate": 0.0006,
+ "loss": 3.534045696258545,
+ "step": 4307
+ },
+ {
+ "epoch": 59.83879423328965,
+ "grad_norm": 0.21756123006343842,
+ "learning_rate": 0.0006,
+ "loss": 3.5621533393859863,
+ "step": 4308
+ },
+ {
+ "epoch": 59.8527741371778,
+ "grad_norm": 0.19731850922107697,
+ "learning_rate": 0.0006,
+ "loss": 3.536633253097534,
+ "step": 4309
+ },
+ {
+ "epoch": 59.86675404106597,
+ "grad_norm": 0.2260110229253769,
+ "learning_rate": 0.0006,
+ "loss": 3.5721538066864014,
+ "step": 4310
+ },
+ {
+ "epoch": 59.88073394495413,
+ "grad_norm": 0.22728438675403595,
+ "learning_rate": 0.0006,
+ "loss": 3.5576961040496826,
+ "step": 4311
+ },
+ {
+ "epoch": 59.89471384884229,
+ "grad_norm": 0.20675411820411682,
+ "learning_rate": 0.0006,
+ "loss": 3.5070700645446777,
+ "step": 4312
+ },
+ {
+ "epoch": 59.90869375273045,
+ "grad_norm": 0.22258996963500977,
+ "learning_rate": 0.0006,
+ "loss": 3.564357280731201,
+ "step": 4313
+ },
+ {
+ "epoch": 59.92267365661861,
+ "grad_norm": 0.2429998815059662,
+ "learning_rate": 0.0006,
+ "loss": 3.519744873046875,
+ "step": 4314
+ },
+ {
+ "epoch": 59.93665356050677,
+ "grad_norm": 0.2394791841506958,
+ "learning_rate": 0.0006,
+ "loss": 3.533292055130005,
+ "step": 4315
+ },
+ {
+ "epoch": 59.95063346439493,
+ "grad_norm": 0.20659418404102325,
+ "learning_rate": 0.0006,
+ "loss": 3.5475940704345703,
+ "step": 4316
+ },
+ {
+ "epoch": 59.964613368283096,
+ "grad_norm": 0.19679132103919983,
+ "learning_rate": 0.0006,
+ "loss": 3.5794930458068848,
+ "step": 4317
+ },
+ {
+ "epoch": 59.97859327217125,
+ "grad_norm": 0.2133002132177353,
+ "learning_rate": 0.0006,
+ "loss": 3.5506505966186523,
+ "step": 4318
+ },
+ {
+ "epoch": 59.992573176059416,
+ "grad_norm": 0.22383661568164825,
+ "learning_rate": 0.0006,
+ "loss": 3.547708511352539,
+ "step": 4319
+ },
+ {
+ "epoch": 60.0,
+ "grad_norm": 0.25744178891181946,
+ "learning_rate": 0.0006,
+ "loss": 3.5519227981567383,
+ "step": 4320
+ },
+ {
+ "epoch": 60.0,
+ "eval_loss": 3.9816012382507324,
+ "eval_runtime": 46.3931,
+ "eval_samples_per_second": 52.637,
+ "eval_steps_per_second": 3.298,
+ "step": 4320
+ },
+ {
+ "epoch": 60.01397990388816,
+ "grad_norm": 0.2202005684375763,
+ "learning_rate": 0.0006,
+ "loss": 3.51010799407959,
+ "step": 4321
+ },
+ {
+ "epoch": 60.02795980777632,
+ "grad_norm": 0.24285688996315002,
+ "learning_rate": 0.0006,
+ "loss": 3.519137382507324,
+ "step": 4322
+ },
+ {
+ "epoch": 60.04193971166448,
+ "grad_norm": 0.2700578570365906,
+ "learning_rate": 0.0006,
+ "loss": 3.523392915725708,
+ "step": 4323
+ },
+ {
+ "epoch": 60.05591961555265,
+ "grad_norm": 0.30088669061660767,
+ "learning_rate": 0.0006,
+ "loss": 3.48724627494812,
+ "step": 4324
+ },
+ {
+ "epoch": 60.0698995194408,
+ "grad_norm": 0.30426669120788574,
+ "learning_rate": 0.0006,
+ "loss": 3.479025363922119,
+ "step": 4325
+ },
+ {
+ "epoch": 60.083879423328966,
+ "grad_norm": 0.2718220055103302,
+ "learning_rate": 0.0006,
+ "loss": 3.4923276901245117,
+ "step": 4326
+ },
+ {
+ "epoch": 60.09785932721712,
+ "grad_norm": 0.23625287413597107,
+ "learning_rate": 0.0006,
+ "loss": 3.5152812004089355,
+ "step": 4327
+ },
+ {
+ "epoch": 60.111839231105286,
+ "grad_norm": 0.23336869478225708,
+ "learning_rate": 0.0006,
+ "loss": 3.512453079223633,
+ "step": 4328
+ },
+ {
+ "epoch": 60.12581913499345,
+ "grad_norm": 0.24780215322971344,
+ "learning_rate": 0.0006,
+ "loss": 3.505812168121338,
+ "step": 4329
+ },
+ {
+ "epoch": 60.139799038881605,
+ "grad_norm": 0.25600194931030273,
+ "learning_rate": 0.0006,
+ "loss": 3.5281314849853516,
+ "step": 4330
+ },
+ {
+ "epoch": 60.15377894276977,
+ "grad_norm": 0.2458304911851883,
+ "learning_rate": 0.0006,
+ "loss": 3.4932949542999268,
+ "step": 4331
+ },
+ {
+ "epoch": 60.16775884665793,
+ "grad_norm": 0.2246888130903244,
+ "learning_rate": 0.0006,
+ "loss": 3.5295495986938477,
+ "step": 4332
+ },
+ {
+ "epoch": 60.18173875054609,
+ "grad_norm": 0.23762951791286469,
+ "learning_rate": 0.0006,
+ "loss": 3.4938201904296875,
+ "step": 4333
+ },
+ {
+ "epoch": 60.19571865443425,
+ "grad_norm": 0.24483945965766907,
+ "learning_rate": 0.0006,
+ "loss": 3.544774055480957,
+ "step": 4334
+ },
+ {
+ "epoch": 60.20969855832241,
+ "grad_norm": 0.24154368042945862,
+ "learning_rate": 0.0006,
+ "loss": 3.5352816581726074,
+ "step": 4335
+ },
+ {
+ "epoch": 60.22367846221057,
+ "grad_norm": 0.22929225862026215,
+ "learning_rate": 0.0006,
+ "loss": 3.5546953678131104,
+ "step": 4336
+ },
+ {
+ "epoch": 60.237658366098735,
+ "grad_norm": 0.21391373872756958,
+ "learning_rate": 0.0006,
+ "loss": 3.537647247314453,
+ "step": 4337
+ },
+ {
+ "epoch": 60.25163826998689,
+ "grad_norm": 0.20410357415676117,
+ "learning_rate": 0.0006,
+ "loss": 3.535831928253174,
+ "step": 4338
+ },
+ {
+ "epoch": 60.265618173875055,
+ "grad_norm": 0.2070329487323761,
+ "learning_rate": 0.0006,
+ "loss": 3.5234389305114746,
+ "step": 4339
+ },
+ {
+ "epoch": 60.27959807776322,
+ "grad_norm": 0.20540225505828857,
+ "learning_rate": 0.0006,
+ "loss": 3.557478427886963,
+ "step": 4340
+ },
+ {
+ "epoch": 60.293577981651374,
+ "grad_norm": 0.2124919891357422,
+ "learning_rate": 0.0006,
+ "loss": 3.532726764678955,
+ "step": 4341
+ },
+ {
+ "epoch": 60.30755788553954,
+ "grad_norm": 0.22207678854465485,
+ "learning_rate": 0.0006,
+ "loss": 3.5314202308654785,
+ "step": 4342
+ },
+ {
+ "epoch": 60.3215377894277,
+ "grad_norm": 0.2137281745672226,
+ "learning_rate": 0.0006,
+ "loss": 3.5491206645965576,
+ "step": 4343
+ },
+ {
+ "epoch": 60.33551769331586,
+ "grad_norm": 0.20728953182697296,
+ "learning_rate": 0.0006,
+ "loss": 3.5111031532287598,
+ "step": 4344
+ },
+ {
+ "epoch": 60.34949759720402,
+ "grad_norm": 0.22547020018100739,
+ "learning_rate": 0.0006,
+ "loss": 3.5311098098754883,
+ "step": 4345
+ },
+ {
+ "epoch": 60.36347750109218,
+ "grad_norm": 0.23352888226509094,
+ "learning_rate": 0.0006,
+ "loss": 3.5200939178466797,
+ "step": 4346
+ },
+ {
+ "epoch": 60.37745740498034,
+ "grad_norm": 0.21329060196876526,
+ "learning_rate": 0.0006,
+ "loss": 3.508589744567871,
+ "step": 4347
+ },
+ {
+ "epoch": 60.391437308868504,
+ "grad_norm": 0.1904045194387436,
+ "learning_rate": 0.0006,
+ "loss": 3.4850475788116455,
+ "step": 4348
+ },
+ {
+ "epoch": 60.40541721275666,
+ "grad_norm": 0.20586109161376953,
+ "learning_rate": 0.0006,
+ "loss": 3.5503551959991455,
+ "step": 4349
+ },
+ {
+ "epoch": 60.419397116644824,
+ "grad_norm": 0.21311818063259125,
+ "learning_rate": 0.0006,
+ "loss": 3.5243923664093018,
+ "step": 4350
+ },
+ {
+ "epoch": 60.43337702053299,
+ "grad_norm": 0.21479184925556183,
+ "learning_rate": 0.0006,
+ "loss": 3.553647041320801,
+ "step": 4351
+ },
+ {
+ "epoch": 60.44735692442114,
+ "grad_norm": 0.19994449615478516,
+ "learning_rate": 0.0006,
+ "loss": 3.5558884143829346,
+ "step": 4352
+ },
+ {
+ "epoch": 60.46133682830931,
+ "grad_norm": 0.21455694735050201,
+ "learning_rate": 0.0006,
+ "loss": 3.5186543464660645,
+ "step": 4353
+ },
+ {
+ "epoch": 60.47531673219746,
+ "grad_norm": 0.21904151141643524,
+ "learning_rate": 0.0006,
+ "loss": 3.526367425918579,
+ "step": 4354
+ },
+ {
+ "epoch": 60.489296636085626,
+ "grad_norm": 0.1908986121416092,
+ "learning_rate": 0.0006,
+ "loss": 3.541072368621826,
+ "step": 4355
+ },
+ {
+ "epoch": 60.50327653997379,
+ "grad_norm": 0.20290519297122955,
+ "learning_rate": 0.0006,
+ "loss": 3.530333995819092,
+ "step": 4356
+ },
+ {
+ "epoch": 60.517256443861946,
+ "grad_norm": 0.2318771779537201,
+ "learning_rate": 0.0006,
+ "loss": 3.5260486602783203,
+ "step": 4357
+ },
+ {
+ "epoch": 60.53123634775011,
+ "grad_norm": 0.25559669733047485,
+ "learning_rate": 0.0006,
+ "loss": 3.56851863861084,
+ "step": 4358
+ },
+ {
+ "epoch": 60.54521625163827,
+ "grad_norm": 0.2529429793357849,
+ "learning_rate": 0.0006,
+ "loss": 3.5519490242004395,
+ "step": 4359
+ },
+ {
+ "epoch": 60.55919615552643,
+ "grad_norm": 0.22857248783111572,
+ "learning_rate": 0.0006,
+ "loss": 3.5556063652038574,
+ "step": 4360
+ },
+ {
+ "epoch": 60.57317605941459,
+ "grad_norm": 0.21628573536872864,
+ "learning_rate": 0.0006,
+ "loss": 3.5321288108825684,
+ "step": 4361
+ },
+ {
+ "epoch": 60.58715596330275,
+ "grad_norm": 0.19497910141944885,
+ "learning_rate": 0.0006,
+ "loss": 3.5480406284332275,
+ "step": 4362
+ },
+ {
+ "epoch": 60.60113586719091,
+ "grad_norm": 0.204348623752594,
+ "learning_rate": 0.0006,
+ "loss": 3.522806167602539,
+ "step": 4363
+ },
+ {
+ "epoch": 60.615115771079076,
+ "grad_norm": 0.23013663291931152,
+ "learning_rate": 0.0006,
+ "loss": 3.512876033782959,
+ "step": 4364
+ },
+ {
+ "epoch": 60.62909567496723,
+ "grad_norm": 0.22948725521564484,
+ "learning_rate": 0.0006,
+ "loss": 3.54276704788208,
+ "step": 4365
+ },
+ {
+ "epoch": 60.643075578855395,
+ "grad_norm": 0.20528492331504822,
+ "learning_rate": 0.0006,
+ "loss": 3.5592503547668457,
+ "step": 4366
+ },
+ {
+ "epoch": 60.65705548274356,
+ "grad_norm": 0.214582160115242,
+ "learning_rate": 0.0006,
+ "loss": 3.5168166160583496,
+ "step": 4367
+ },
+ {
+ "epoch": 60.671035386631715,
+ "grad_norm": 0.18893493711948395,
+ "learning_rate": 0.0006,
+ "loss": 3.51012921333313,
+ "step": 4368
+ },
+ {
+ "epoch": 60.68501529051988,
+ "grad_norm": 0.19301992654800415,
+ "learning_rate": 0.0006,
+ "loss": 3.5396199226379395,
+ "step": 4369
+ },
+ {
+ "epoch": 60.69899519440804,
+ "grad_norm": 0.22339801490306854,
+ "learning_rate": 0.0006,
+ "loss": 3.5463967323303223,
+ "step": 4370
+ },
+ {
+ "epoch": 60.7129750982962,
+ "grad_norm": 0.19028180837631226,
+ "learning_rate": 0.0006,
+ "loss": 3.534419536590576,
+ "step": 4371
+ },
+ {
+ "epoch": 60.72695500218436,
+ "grad_norm": 0.2078639566898346,
+ "learning_rate": 0.0006,
+ "loss": 3.5345680713653564,
+ "step": 4372
+ },
+ {
+ "epoch": 60.74093490607252,
+ "grad_norm": 0.24292199313640594,
+ "learning_rate": 0.0006,
+ "loss": 3.5291242599487305,
+ "step": 4373
+ },
+ {
+ "epoch": 60.75491480996068,
+ "grad_norm": 0.25118497014045715,
+ "learning_rate": 0.0006,
+ "loss": 3.5362191200256348,
+ "step": 4374
+ },
+ {
+ "epoch": 60.768894713848844,
+ "grad_norm": 0.24816395342350006,
+ "learning_rate": 0.0006,
+ "loss": 3.539637804031372,
+ "step": 4375
+ },
+ {
+ "epoch": 60.782874617737,
+ "grad_norm": 0.23654010891914368,
+ "learning_rate": 0.0006,
+ "loss": 3.482605457305908,
+ "step": 4376
+ },
+ {
+ "epoch": 60.796854521625164,
+ "grad_norm": 0.21593770384788513,
+ "learning_rate": 0.0006,
+ "loss": 3.550279140472412,
+ "step": 4377
+ },
+ {
+ "epoch": 60.81083442551333,
+ "grad_norm": 0.21346014738082886,
+ "learning_rate": 0.0006,
+ "loss": 3.541086196899414,
+ "step": 4378
+ },
+ {
+ "epoch": 60.824814329401484,
+ "grad_norm": 0.2284841537475586,
+ "learning_rate": 0.0006,
+ "loss": 3.544254779815674,
+ "step": 4379
+ },
+ {
+ "epoch": 60.83879423328965,
+ "grad_norm": 0.23353151977062225,
+ "learning_rate": 0.0006,
+ "loss": 3.5606589317321777,
+ "step": 4380
+ },
+ {
+ "epoch": 60.8527741371778,
+ "grad_norm": 0.2201574146747589,
+ "learning_rate": 0.0006,
+ "loss": 3.524120807647705,
+ "step": 4381
+ },
+ {
+ "epoch": 60.86675404106597,
+ "grad_norm": 0.2277211993932724,
+ "learning_rate": 0.0006,
+ "loss": 3.553539276123047,
+ "step": 4382
+ },
+ {
+ "epoch": 60.88073394495413,
+ "grad_norm": 0.2282724678516388,
+ "learning_rate": 0.0006,
+ "loss": 3.5247130393981934,
+ "step": 4383
+ },
+ {
+ "epoch": 60.89471384884229,
+ "grad_norm": 0.20859065651893616,
+ "learning_rate": 0.0006,
+ "loss": 3.5654680728912354,
+ "step": 4384
+ },
+ {
+ "epoch": 60.90869375273045,
+ "grad_norm": 0.1995432823896408,
+ "learning_rate": 0.0006,
+ "loss": 3.5091423988342285,
+ "step": 4385
+ },
+ {
+ "epoch": 60.92267365661861,
+ "grad_norm": 0.19769565761089325,
+ "learning_rate": 0.0006,
+ "loss": 3.5375986099243164,
+ "step": 4386
+ },
+ {
+ "epoch": 60.93665356050677,
+ "grad_norm": 0.21246176958084106,
+ "learning_rate": 0.0006,
+ "loss": 3.570774793624878,
+ "step": 4387
+ },
+ {
+ "epoch": 60.95063346439493,
+ "grad_norm": 0.2212657630443573,
+ "learning_rate": 0.0006,
+ "loss": 3.5192928314208984,
+ "step": 4388
+ },
+ {
+ "epoch": 60.964613368283096,
+ "grad_norm": 0.2258632481098175,
+ "learning_rate": 0.0006,
+ "loss": 3.5356457233428955,
+ "step": 4389
+ },
+ {
+ "epoch": 60.97859327217125,
+ "grad_norm": 0.1998971700668335,
+ "learning_rate": 0.0006,
+ "loss": 3.52758526802063,
+ "step": 4390
+ },
+ {
+ "epoch": 60.992573176059416,
+ "grad_norm": 0.1932399868965149,
+ "learning_rate": 0.0006,
+ "loss": 3.562718391418457,
+ "step": 4391
+ },
+ {
+ "epoch": 61.0,
+ "grad_norm": 0.24292197823524475,
+ "learning_rate": 0.0006,
+ "loss": 3.550189971923828,
+ "step": 4392
+ },
+ {
+ "epoch": 61.0,
+ "eval_loss": 3.974423408508301,
+ "eval_runtime": 45.8822,
+ "eval_samples_per_second": 53.223,
+ "eval_steps_per_second": 3.335,
+ "step": 4392
+ },
+ {
+ "epoch": 61.01397990388816,
+ "grad_norm": 0.2216092199087143,
+ "learning_rate": 0.0006,
+ "loss": 3.51747989654541,
+ "step": 4393
+ },
+ {
+ "epoch": 61.02795980777632,
+ "grad_norm": 0.23488417267799377,
+ "learning_rate": 0.0006,
+ "loss": 3.529064178466797,
+ "step": 4394
+ },
+ {
+ "epoch": 61.04193971166448,
+ "grad_norm": 0.2805800437927246,
+ "learning_rate": 0.0006,
+ "loss": 3.4868035316467285,
+ "step": 4395
+ },
+ {
+ "epoch": 61.05591961555265,
+ "grad_norm": 0.32623469829559326,
+ "learning_rate": 0.0006,
+ "loss": 3.5209708213806152,
+ "step": 4396
+ },
+ {
+ "epoch": 61.0698995194408,
+ "grad_norm": 0.2645402252674103,
+ "learning_rate": 0.0006,
+ "loss": 3.524512767791748,
+ "step": 4397
+ },
+ {
+ "epoch": 61.083879423328966,
+ "grad_norm": 0.21118173003196716,
+ "learning_rate": 0.0006,
+ "loss": 3.5167856216430664,
+ "step": 4398
+ },
+ {
+ "epoch": 61.09785932721712,
+ "grad_norm": 0.28649622201919556,
+ "learning_rate": 0.0006,
+ "loss": 3.5122973918914795,
+ "step": 4399
+ },
+ {
+ "epoch": 61.111839231105286,
+ "grad_norm": 0.39095914363861084,
+ "learning_rate": 0.0006,
+ "loss": 3.481421947479248,
+ "step": 4400
+ },
+ {
+ "epoch": 61.12581913499345,
+ "grad_norm": 0.4013976454734802,
+ "learning_rate": 0.0006,
+ "loss": 3.4859061241149902,
+ "step": 4401
+ },
+ {
+ "epoch": 61.139799038881605,
+ "grad_norm": 0.30067047476768494,
+ "learning_rate": 0.0006,
+ "loss": 3.524209976196289,
+ "step": 4402
+ },
+ {
+ "epoch": 61.15377894276977,
+ "grad_norm": 0.2086855173110962,
+ "learning_rate": 0.0006,
+ "loss": 3.4974379539489746,
+ "step": 4403
+ },
+ {
+ "epoch": 61.16775884665793,
+ "grad_norm": 0.25443482398986816,
+ "learning_rate": 0.0006,
+ "loss": 3.517038345336914,
+ "step": 4404
+ },
+ {
+ "epoch": 61.18173875054609,
+ "grad_norm": 0.27545589208602905,
+ "learning_rate": 0.0006,
+ "loss": 3.5075795650482178,
+ "step": 4405
+ },
+ {
+ "epoch": 61.19571865443425,
+ "grad_norm": 0.269279420375824,
+ "learning_rate": 0.0006,
+ "loss": 3.512235641479492,
+ "step": 4406
+ },
+ {
+ "epoch": 61.20969855832241,
+ "grad_norm": 0.24606923758983612,
+ "learning_rate": 0.0006,
+ "loss": 3.5362367630004883,
+ "step": 4407
+ },
+ {
+ "epoch": 61.22367846221057,
+ "grad_norm": 0.23358067870140076,
+ "learning_rate": 0.0006,
+ "loss": 3.5256686210632324,
+ "step": 4408
+ },
+ {
+ "epoch": 61.237658366098735,
+ "grad_norm": 0.2528085708618164,
+ "learning_rate": 0.0006,
+ "loss": 3.504239559173584,
+ "step": 4409
+ },
+ {
+ "epoch": 61.25163826998689,
+ "grad_norm": 0.28145745396614075,
+ "learning_rate": 0.0006,
+ "loss": 3.4862139225006104,
+ "step": 4410
+ },
+ {
+ "epoch": 61.265618173875055,
+ "grad_norm": 0.26570039987564087,
+ "learning_rate": 0.0006,
+ "loss": 3.5138425827026367,
+ "step": 4411
+ },
+ {
+ "epoch": 61.27959807776322,
+ "grad_norm": 0.2391415685415268,
+ "learning_rate": 0.0006,
+ "loss": 3.537569999694824,
+ "step": 4412
+ },
+ {
+ "epoch": 61.293577981651374,
+ "grad_norm": 0.22194577753543854,
+ "learning_rate": 0.0006,
+ "loss": 3.5367543697357178,
+ "step": 4413
+ },
+ {
+ "epoch": 61.30755788553954,
+ "grad_norm": 0.2388865202665329,
+ "learning_rate": 0.0006,
+ "loss": 3.533341407775879,
+ "step": 4414
+ },
+ {
+ "epoch": 61.3215377894277,
+ "grad_norm": 0.2666625380516052,
+ "learning_rate": 0.0006,
+ "loss": 3.501162528991699,
+ "step": 4415
+ },
+ {
+ "epoch": 61.33551769331586,
+ "grad_norm": 0.25569409132003784,
+ "learning_rate": 0.0006,
+ "loss": 3.529283046722412,
+ "step": 4416
+ },
+ {
+ "epoch": 61.34949759720402,
+ "grad_norm": 0.24683351814746857,
+ "learning_rate": 0.0006,
+ "loss": 3.508152484893799,
+ "step": 4417
+ },
+ {
+ "epoch": 61.36347750109218,
+ "grad_norm": 0.22290605306625366,
+ "learning_rate": 0.0006,
+ "loss": 3.5309581756591797,
+ "step": 4418
+ },
+ {
+ "epoch": 61.37745740498034,
+ "grad_norm": 0.2174215167760849,
+ "learning_rate": 0.0006,
+ "loss": 3.508796453475952,
+ "step": 4419
+ },
+ {
+ "epoch": 61.391437308868504,
+ "grad_norm": 0.23006199300289154,
+ "learning_rate": 0.0006,
+ "loss": 3.5497584342956543,
+ "step": 4420
+ },
+ {
+ "epoch": 61.40541721275666,
+ "grad_norm": 0.2311345487833023,
+ "learning_rate": 0.0006,
+ "loss": 3.5524582862854004,
+ "step": 4421
+ },
+ {
+ "epoch": 61.419397116644824,
+ "grad_norm": 0.2296203076839447,
+ "learning_rate": 0.0006,
+ "loss": 3.5146689414978027,
+ "step": 4422
+ },
+ {
+ "epoch": 61.43337702053299,
+ "grad_norm": 0.24848754703998566,
+ "learning_rate": 0.0006,
+ "loss": 3.489335060119629,
+ "step": 4423
+ },
+ {
+ "epoch": 61.44735692442114,
+ "grad_norm": 0.23717737197875977,
+ "learning_rate": 0.0006,
+ "loss": 3.4982404708862305,
+ "step": 4424
+ },
+ {
+ "epoch": 61.46133682830931,
+ "grad_norm": 0.21826806664466858,
+ "learning_rate": 0.0006,
+ "loss": 3.5134825706481934,
+ "step": 4425
+ },
+ {
+ "epoch": 61.47531673219746,
+ "grad_norm": 0.22878992557525635,
+ "learning_rate": 0.0006,
+ "loss": 3.512604236602783,
+ "step": 4426
+ },
+ {
+ "epoch": 61.489296636085626,
+ "grad_norm": 0.21184465289115906,
+ "learning_rate": 0.0006,
+ "loss": 3.5314245223999023,
+ "step": 4427
+ },
+ {
+ "epoch": 61.50327653997379,
+ "grad_norm": 0.2129429429769516,
+ "learning_rate": 0.0006,
+ "loss": 3.51242733001709,
+ "step": 4428
+ },
+ {
+ "epoch": 61.517256443861946,
+ "grad_norm": 0.21566109359264374,
+ "learning_rate": 0.0006,
+ "loss": 3.5287160873413086,
+ "step": 4429
+ },
+ {
+ "epoch": 61.53123634775011,
+ "grad_norm": 0.2010934203863144,
+ "learning_rate": 0.0006,
+ "loss": 3.5250844955444336,
+ "step": 4430
+ },
+ {
+ "epoch": 61.54521625163827,
+ "grad_norm": 0.1979563683271408,
+ "learning_rate": 0.0006,
+ "loss": 3.553415536880493,
+ "step": 4431
+ },
+ {
+ "epoch": 61.55919615552643,
+ "grad_norm": 0.19513480365276337,
+ "learning_rate": 0.0006,
+ "loss": 3.500551223754883,
+ "step": 4432
+ },
+ {
+ "epoch": 61.57317605941459,
+ "grad_norm": 0.19601108133792877,
+ "learning_rate": 0.0006,
+ "loss": 3.532161235809326,
+ "step": 4433
+ },
+ {
+ "epoch": 61.58715596330275,
+ "grad_norm": 0.2054651528596878,
+ "learning_rate": 0.0006,
+ "loss": 3.5360732078552246,
+ "step": 4434
+ },
+ {
+ "epoch": 61.60113586719091,
+ "grad_norm": 0.2096887230873108,
+ "learning_rate": 0.0006,
+ "loss": 3.522620916366577,
+ "step": 4435
+ },
+ {
+ "epoch": 61.615115771079076,
+ "grad_norm": 0.19664394855499268,
+ "learning_rate": 0.0006,
+ "loss": 3.5298569202423096,
+ "step": 4436
+ },
+ {
+ "epoch": 61.62909567496723,
+ "grad_norm": 0.20641925930976868,
+ "learning_rate": 0.0006,
+ "loss": 3.521233320236206,
+ "step": 4437
+ },
+ {
+ "epoch": 61.643075578855395,
+ "grad_norm": 0.2013241946697235,
+ "learning_rate": 0.0006,
+ "loss": 3.536212682723999,
+ "step": 4438
+ },
+ {
+ "epoch": 61.65705548274356,
+ "grad_norm": 0.19561146199703217,
+ "learning_rate": 0.0006,
+ "loss": 3.569584846496582,
+ "step": 4439
+ },
+ {
+ "epoch": 61.671035386631715,
+ "grad_norm": 0.2281758189201355,
+ "learning_rate": 0.0006,
+ "loss": 3.5208396911621094,
+ "step": 4440
+ },
+ {
+ "epoch": 61.68501529051988,
+ "grad_norm": 0.2387618124485016,
+ "learning_rate": 0.0006,
+ "loss": 3.5338330268859863,
+ "step": 4441
+ },
+ {
+ "epoch": 61.69899519440804,
+ "grad_norm": 0.23753441870212555,
+ "learning_rate": 0.0006,
+ "loss": 3.5454416275024414,
+ "step": 4442
+ },
+ {
+ "epoch": 61.7129750982962,
+ "grad_norm": 0.2477191686630249,
+ "learning_rate": 0.0006,
+ "loss": 3.5409836769104004,
+ "step": 4443
+ },
+ {
+ "epoch": 61.72695500218436,
+ "grad_norm": 0.25156062841415405,
+ "learning_rate": 0.0006,
+ "loss": 3.5135607719421387,
+ "step": 4444
+ },
+ {
+ "epoch": 61.74093490607252,
+ "grad_norm": 0.21422065794467926,
+ "learning_rate": 0.0006,
+ "loss": 3.5514771938323975,
+ "step": 4445
+ },
+ {
+ "epoch": 61.75491480996068,
+ "grad_norm": 0.2103811502456665,
+ "learning_rate": 0.0006,
+ "loss": 3.544037103652954,
+ "step": 4446
+ },
+ {
+ "epoch": 61.768894713848844,
+ "grad_norm": 0.21455387771129608,
+ "learning_rate": 0.0006,
+ "loss": 3.5526280403137207,
+ "step": 4447
+ },
+ {
+ "epoch": 61.782874617737,
+ "grad_norm": 0.22101432085037231,
+ "learning_rate": 0.0006,
+ "loss": 3.510197639465332,
+ "step": 4448
+ },
+ {
+ "epoch": 61.796854521625164,
+ "grad_norm": 0.2093520164489746,
+ "learning_rate": 0.0006,
+ "loss": 3.52504301071167,
+ "step": 4449
+ },
+ {
+ "epoch": 61.81083442551333,
+ "grad_norm": 0.2224605530500412,
+ "learning_rate": 0.0006,
+ "loss": 3.5590806007385254,
+ "step": 4450
+ },
+ {
+ "epoch": 61.824814329401484,
+ "grad_norm": 0.22242501378059387,
+ "learning_rate": 0.0006,
+ "loss": 3.5409610271453857,
+ "step": 4451
+ },
+ {
+ "epoch": 61.83879423328965,
+ "grad_norm": 0.22488343715667725,
+ "learning_rate": 0.0006,
+ "loss": 3.537534236907959,
+ "step": 4452
+ },
+ {
+ "epoch": 61.8527741371778,
+ "grad_norm": 0.23510107398033142,
+ "learning_rate": 0.0006,
+ "loss": 3.5561342239379883,
+ "step": 4453
+ },
+ {
+ "epoch": 61.86675404106597,
+ "grad_norm": 0.237285315990448,
+ "learning_rate": 0.0006,
+ "loss": 3.539592742919922,
+ "step": 4454
+ },
+ {
+ "epoch": 61.88073394495413,
+ "grad_norm": 0.21573765575885773,
+ "learning_rate": 0.0006,
+ "loss": 3.552250385284424,
+ "step": 4455
+ },
+ {
+ "epoch": 61.89471384884229,
+ "grad_norm": 0.20348075032234192,
+ "learning_rate": 0.0006,
+ "loss": 3.5406012535095215,
+ "step": 4456
+ },
+ {
+ "epoch": 61.90869375273045,
+ "grad_norm": 0.21306075155735016,
+ "learning_rate": 0.0006,
+ "loss": 3.504248857498169,
+ "step": 4457
+ },
+ {
+ "epoch": 61.92267365661861,
+ "grad_norm": 0.2184341996908188,
+ "learning_rate": 0.0006,
+ "loss": 3.5441558361053467,
+ "step": 4458
+ },
+ {
+ "epoch": 61.93665356050677,
+ "grad_norm": 0.20888687670230865,
+ "learning_rate": 0.0006,
+ "loss": 3.517657518386841,
+ "step": 4459
+ },
+ {
+ "epoch": 61.95063346439493,
+ "grad_norm": 0.2066143900156021,
+ "learning_rate": 0.0006,
+ "loss": 3.525796890258789,
+ "step": 4460
+ },
+ {
+ "epoch": 61.964613368283096,
+ "grad_norm": 0.1906299591064453,
+ "learning_rate": 0.0006,
+ "loss": 3.550924777984619,
+ "step": 4461
+ },
+ {
+ "epoch": 61.97859327217125,
+ "grad_norm": 0.1834334284067154,
+ "learning_rate": 0.0006,
+ "loss": 3.5818099975585938,
+ "step": 4462
+ },
+ {
+ "epoch": 61.992573176059416,
+ "grad_norm": 0.22725825011730194,
+ "learning_rate": 0.0006,
+ "loss": 3.5573811531066895,
+ "step": 4463
+ },
+ {
+ "epoch": 62.0,
+ "grad_norm": 0.29936420917510986,
+ "learning_rate": 0.0006,
+ "loss": 3.557694435119629,
+ "step": 4464
+ },
+ {
+ "epoch": 62.0,
+ "eval_loss": 3.985543966293335,
+ "eval_runtime": 46.6388,
+ "eval_samples_per_second": 52.36,
+ "eval_steps_per_second": 3.281,
+ "step": 4464
+ },
+ {
+ "epoch": 62.01397990388816,
+ "grad_norm": 0.30896103382110596,
+ "learning_rate": 0.0006,
+ "loss": 3.4991438388824463,
+ "step": 4465
+ },
+ {
+ "epoch": 62.02795980777632,
+ "grad_norm": 0.27383437752723694,
+ "learning_rate": 0.0006,
+ "loss": 3.4710259437561035,
+ "step": 4466
+ },
+ {
+ "epoch": 62.04193971166448,
+ "grad_norm": 0.24412496387958527,
+ "learning_rate": 0.0006,
+ "loss": 3.4983878135681152,
+ "step": 4467
+ },
+ {
+ "epoch": 62.05591961555265,
+ "grad_norm": 0.2649880051612854,
+ "learning_rate": 0.0006,
+ "loss": 3.5481886863708496,
+ "step": 4468
+ },
+ {
+ "epoch": 62.0698995194408,
+ "grad_norm": 0.2625769078731537,
+ "learning_rate": 0.0006,
+ "loss": 3.5114197731018066,
+ "step": 4469
+ },
+ {
+ "epoch": 62.083879423328966,
+ "grad_norm": 0.234181210398674,
+ "learning_rate": 0.0006,
+ "loss": 3.504152536392212,
+ "step": 4470
+ },
+ {
+ "epoch": 62.09785932721712,
+ "grad_norm": 0.21403342485427856,
+ "learning_rate": 0.0006,
+ "loss": 3.50738525390625,
+ "step": 4471
+ },
+ {
+ "epoch": 62.111839231105286,
+ "grad_norm": 0.22780060768127441,
+ "learning_rate": 0.0006,
+ "loss": 3.518354892730713,
+ "step": 4472
+ },
+ {
+ "epoch": 62.12581913499345,
+ "grad_norm": 0.23725424706935883,
+ "learning_rate": 0.0006,
+ "loss": 3.5227513313293457,
+ "step": 4473
+ },
+ {
+ "epoch": 62.139799038881605,
+ "grad_norm": 0.23643283545970917,
+ "learning_rate": 0.0006,
+ "loss": 3.504271984100342,
+ "step": 4474
+ },
+ {
+ "epoch": 62.15377894276977,
+ "grad_norm": 0.22513480484485626,
+ "learning_rate": 0.0006,
+ "loss": 3.5232059955596924,
+ "step": 4475
+ },
+ {
+ "epoch": 62.16775884665793,
+ "grad_norm": 0.23375700414180756,
+ "learning_rate": 0.0006,
+ "loss": 3.506519317626953,
+ "step": 4476
+ },
+ {
+ "epoch": 62.18173875054609,
+ "grad_norm": 0.24691303074359894,
+ "learning_rate": 0.0006,
+ "loss": 3.5212974548339844,
+ "step": 4477
+ },
+ {
+ "epoch": 62.19571865443425,
+ "grad_norm": 0.23466123640537262,
+ "learning_rate": 0.0006,
+ "loss": 3.5295071601867676,
+ "step": 4478
+ },
+ {
+ "epoch": 62.20969855832241,
+ "grad_norm": 0.2432340532541275,
+ "learning_rate": 0.0006,
+ "loss": 3.487830638885498,
+ "step": 4479
+ },
+ {
+ "epoch": 62.22367846221057,
+ "grad_norm": 0.24575389921665192,
+ "learning_rate": 0.0006,
+ "loss": 3.5329103469848633,
+ "step": 4480
+ },
+ {
+ "epoch": 62.237658366098735,
+ "grad_norm": 0.2441941201686859,
+ "learning_rate": 0.0006,
+ "loss": 3.5230906009674072,
+ "step": 4481
+ },
+ {
+ "epoch": 62.25163826998689,
+ "grad_norm": 0.2278154343366623,
+ "learning_rate": 0.0006,
+ "loss": 3.4919002056121826,
+ "step": 4482
+ },
+ {
+ "epoch": 62.265618173875055,
+ "grad_norm": 0.23517796397209167,
+ "learning_rate": 0.0006,
+ "loss": 3.5137887001037598,
+ "step": 4483
+ },
+ {
+ "epoch": 62.27959807776322,
+ "grad_norm": 0.2533835470676422,
+ "learning_rate": 0.0006,
+ "loss": 3.526322841644287,
+ "step": 4484
+ },
+ {
+ "epoch": 62.293577981651374,
+ "grad_norm": 0.24535894393920898,
+ "learning_rate": 0.0006,
+ "loss": 3.5060930252075195,
+ "step": 4485
+ },
+ {
+ "epoch": 62.30755788553954,
+ "grad_norm": 0.23312991857528687,
+ "learning_rate": 0.0006,
+ "loss": 3.5015740394592285,
+ "step": 4486
+ },
+ {
+ "epoch": 62.3215377894277,
+ "grad_norm": 0.2073916792869568,
+ "learning_rate": 0.0006,
+ "loss": 3.5239500999450684,
+ "step": 4487
+ },
+ {
+ "epoch": 62.33551769331586,
+ "grad_norm": 0.23528249561786652,
+ "learning_rate": 0.0006,
+ "loss": 3.4946212768554688,
+ "step": 4488
+ },
+ {
+ "epoch": 62.34949759720402,
+ "grad_norm": 0.25181272625923157,
+ "learning_rate": 0.0006,
+ "loss": 3.5492000579833984,
+ "step": 4489
+ },
+ {
+ "epoch": 62.36347750109218,
+ "grad_norm": 0.250745564699173,
+ "learning_rate": 0.0006,
+ "loss": 3.491637706756592,
+ "step": 4490
+ },
+ {
+ "epoch": 62.37745740498034,
+ "grad_norm": 0.2461264729499817,
+ "learning_rate": 0.0006,
+ "loss": 3.514125108718872,
+ "step": 4491
+ },
+ {
+ "epoch": 62.391437308868504,
+ "grad_norm": 0.2265472114086151,
+ "learning_rate": 0.0006,
+ "loss": 3.5513534545898438,
+ "step": 4492
+ },
+ {
+ "epoch": 62.40541721275666,
+ "grad_norm": 0.21937128901481628,
+ "learning_rate": 0.0006,
+ "loss": 3.541867733001709,
+ "step": 4493
+ },
+ {
+ "epoch": 62.419397116644824,
+ "grad_norm": 0.21318639814853668,
+ "learning_rate": 0.0006,
+ "loss": 3.530449867248535,
+ "step": 4494
+ },
+ {
+ "epoch": 62.43337702053299,
+ "grad_norm": 0.21287934482097626,
+ "learning_rate": 0.0006,
+ "loss": 3.51837158203125,
+ "step": 4495
+ },
+ {
+ "epoch": 62.44735692442114,
+ "grad_norm": 0.21953676640987396,
+ "learning_rate": 0.0006,
+ "loss": 3.517456293106079,
+ "step": 4496
+ },
+ {
+ "epoch": 62.46133682830931,
+ "grad_norm": 0.23475255072116852,
+ "learning_rate": 0.0006,
+ "loss": 3.493858575820923,
+ "step": 4497
+ },
+ {
+ "epoch": 62.47531673219746,
+ "grad_norm": 0.21805652976036072,
+ "learning_rate": 0.0006,
+ "loss": 3.533367872238159,
+ "step": 4498
+ },
+ {
+ "epoch": 62.489296636085626,
+ "grad_norm": 0.21494100987911224,
+ "learning_rate": 0.0006,
+ "loss": 3.509060859680176,
+ "step": 4499
+ },
+ {
+ "epoch": 62.50327653997379,
+ "grad_norm": 0.20512273907661438,
+ "learning_rate": 0.0006,
+ "loss": 3.524643659591675,
+ "step": 4500
+ },
+ {
+ "epoch": 62.517256443861946,
+ "grad_norm": 0.2046528458595276,
+ "learning_rate": 0.0006,
+ "loss": 3.520662784576416,
+ "step": 4501
+ },
+ {
+ "epoch": 62.53123634775011,
+ "grad_norm": 0.21108978986740112,
+ "learning_rate": 0.0006,
+ "loss": 3.5121688842773438,
+ "step": 4502
+ },
+ {
+ "epoch": 62.54521625163827,
+ "grad_norm": 0.19229449331760406,
+ "learning_rate": 0.0006,
+ "loss": 3.5201103687286377,
+ "step": 4503
+ },
+ {
+ "epoch": 62.55919615552643,
+ "grad_norm": 0.1984805464744568,
+ "learning_rate": 0.0006,
+ "loss": 3.546898365020752,
+ "step": 4504
+ },
+ {
+ "epoch": 62.57317605941459,
+ "grad_norm": 0.21615411341190338,
+ "learning_rate": 0.0006,
+ "loss": 3.4933600425720215,
+ "step": 4505
+ },
+ {
+ "epoch": 62.58715596330275,
+ "grad_norm": 0.22868046164512634,
+ "learning_rate": 0.0006,
+ "loss": 3.506098747253418,
+ "step": 4506
+ },
+ {
+ "epoch": 62.60113586719091,
+ "grad_norm": 0.21856851875782013,
+ "learning_rate": 0.0006,
+ "loss": 3.5790011882781982,
+ "step": 4507
+ },
+ {
+ "epoch": 62.615115771079076,
+ "grad_norm": 0.20573008060455322,
+ "learning_rate": 0.0006,
+ "loss": 3.5236854553222656,
+ "step": 4508
+ },
+ {
+ "epoch": 62.62909567496723,
+ "grad_norm": 0.21287901699543,
+ "learning_rate": 0.0006,
+ "loss": 3.5323190689086914,
+ "step": 4509
+ },
+ {
+ "epoch": 62.643075578855395,
+ "grad_norm": 0.22703637182712555,
+ "learning_rate": 0.0006,
+ "loss": 3.5300045013427734,
+ "step": 4510
+ },
+ {
+ "epoch": 62.65705548274356,
+ "grad_norm": 0.2194957137107849,
+ "learning_rate": 0.0006,
+ "loss": 3.5727438926696777,
+ "step": 4511
+ },
+ {
+ "epoch": 62.671035386631715,
+ "grad_norm": 0.22334235906600952,
+ "learning_rate": 0.0006,
+ "loss": 3.521441698074341,
+ "step": 4512
+ },
+ {
+ "epoch": 62.68501529051988,
+ "grad_norm": 0.2559402883052826,
+ "learning_rate": 0.0006,
+ "loss": 3.513730525970459,
+ "step": 4513
+ },
+ {
+ "epoch": 62.69899519440804,
+ "grad_norm": 0.25041815638542175,
+ "learning_rate": 0.0006,
+ "loss": 3.536247968673706,
+ "step": 4514
+ },
+ {
+ "epoch": 62.7129750982962,
+ "grad_norm": 0.24958674609661102,
+ "learning_rate": 0.0006,
+ "loss": 3.5245871543884277,
+ "step": 4515
+ },
+ {
+ "epoch": 62.72695500218436,
+ "grad_norm": 0.22527511417865753,
+ "learning_rate": 0.0006,
+ "loss": 3.508802652359009,
+ "step": 4516
+ },
+ {
+ "epoch": 62.74093490607252,
+ "grad_norm": 0.19455862045288086,
+ "learning_rate": 0.0006,
+ "loss": 3.5296337604522705,
+ "step": 4517
+ },
+ {
+ "epoch": 62.75491480996068,
+ "grad_norm": 0.20303845405578613,
+ "learning_rate": 0.0006,
+ "loss": 3.57499098777771,
+ "step": 4518
+ },
+ {
+ "epoch": 62.768894713848844,
+ "grad_norm": 0.20851430296897888,
+ "learning_rate": 0.0006,
+ "loss": 3.5139262676239014,
+ "step": 4519
+ },
+ {
+ "epoch": 62.782874617737,
+ "grad_norm": 0.19765593111515045,
+ "learning_rate": 0.0006,
+ "loss": 3.5398616790771484,
+ "step": 4520
+ },
+ {
+ "epoch": 62.796854521625164,
+ "grad_norm": 0.20502524077892303,
+ "learning_rate": 0.0006,
+ "loss": 3.5163207054138184,
+ "step": 4521
+ },
+ {
+ "epoch": 62.81083442551333,
+ "grad_norm": 0.20211154222488403,
+ "learning_rate": 0.0006,
+ "loss": 3.5164661407470703,
+ "step": 4522
+ },
+ {
+ "epoch": 62.824814329401484,
+ "grad_norm": 0.19798780977725983,
+ "learning_rate": 0.0006,
+ "loss": 3.533470869064331,
+ "step": 4523
+ },
+ {
+ "epoch": 62.83879423328965,
+ "grad_norm": 0.21921277046203613,
+ "learning_rate": 0.0006,
+ "loss": 3.532498598098755,
+ "step": 4524
+ },
+ {
+ "epoch": 62.8527741371778,
+ "grad_norm": 0.2352060228586197,
+ "learning_rate": 0.0006,
+ "loss": 3.5674972534179688,
+ "step": 4525
+ },
+ {
+ "epoch": 62.86675404106597,
+ "grad_norm": 0.21286381781101227,
+ "learning_rate": 0.0006,
+ "loss": 3.508051872253418,
+ "step": 4526
+ },
+ {
+ "epoch": 62.88073394495413,
+ "grad_norm": 0.21557490527629852,
+ "learning_rate": 0.0006,
+ "loss": 3.5300607681274414,
+ "step": 4527
+ },
+ {
+ "epoch": 62.89471384884229,
+ "grad_norm": 0.23020988702774048,
+ "learning_rate": 0.0006,
+ "loss": 3.508237361907959,
+ "step": 4528
+ },
+ {
+ "epoch": 62.90869375273045,
+ "grad_norm": 0.26428425312042236,
+ "learning_rate": 0.0006,
+ "loss": 3.52371883392334,
+ "step": 4529
+ },
+ {
+ "epoch": 62.92267365661861,
+ "grad_norm": 0.2568773925304413,
+ "learning_rate": 0.0006,
+ "loss": 3.5371956825256348,
+ "step": 4530
+ },
+ {
+ "epoch": 62.93665356050677,
+ "grad_norm": 0.2216598093509674,
+ "learning_rate": 0.0006,
+ "loss": 3.5286736488342285,
+ "step": 4531
+ },
+ {
+ "epoch": 62.95063346439493,
+ "grad_norm": 0.23094940185546875,
+ "learning_rate": 0.0006,
+ "loss": 3.5389769077301025,
+ "step": 4532
+ },
+ {
+ "epoch": 62.964613368283096,
+ "grad_norm": 0.23469413816928864,
+ "learning_rate": 0.0006,
+ "loss": 3.546466588973999,
+ "step": 4533
+ },
+ {
+ "epoch": 62.97859327217125,
+ "grad_norm": 0.2289242148399353,
+ "learning_rate": 0.0006,
+ "loss": 3.565002679824829,
+ "step": 4534
+ },
+ {
+ "epoch": 62.992573176059416,
+ "grad_norm": 0.262317955493927,
+ "learning_rate": 0.0006,
+ "loss": 3.5388731956481934,
+ "step": 4535
+ },
+ {
+ "epoch": 63.0,
+ "grad_norm": 0.273183137178421,
+ "learning_rate": 0.0006,
+ "loss": 3.482903003692627,
+ "step": 4536
+ },
+ {
+ "epoch": 63.0,
+ "eval_loss": 3.973074436187744,
+ "eval_runtime": 45.5476,
+ "eval_samples_per_second": 53.614,
+ "eval_steps_per_second": 3.359,
+ "step": 4536
+ },
+ {
+ "epoch": 63.01397990388816,
+ "grad_norm": 0.22226323187351227,
+ "learning_rate": 0.0006,
+ "loss": 3.483798027038574,
+ "step": 4537
+ },
+ {
+ "epoch": 63.02795980777632,
+ "grad_norm": 0.24443542957305908,
+ "learning_rate": 0.0006,
+ "loss": 3.496903419494629,
+ "step": 4538
+ },
+ {
+ "epoch": 63.04193971166448,
+ "grad_norm": 0.2508153021335602,
+ "learning_rate": 0.0006,
+ "loss": 3.5234804153442383,
+ "step": 4539
+ },
+ {
+ "epoch": 63.05591961555265,
+ "grad_norm": 0.2610569894313812,
+ "learning_rate": 0.0006,
+ "loss": 3.502870798110962,
+ "step": 4540
+ },
+ {
+ "epoch": 63.0698995194408,
+ "grad_norm": 0.27980759739875793,
+ "learning_rate": 0.0006,
+ "loss": 3.50645112991333,
+ "step": 4541
+ },
+ {
+ "epoch": 63.083879423328966,
+ "grad_norm": 0.292883038520813,
+ "learning_rate": 0.0006,
+ "loss": 3.478863000869751,
+ "step": 4542
+ },
+ {
+ "epoch": 63.09785932721712,
+ "grad_norm": 0.2593323588371277,
+ "learning_rate": 0.0006,
+ "loss": 3.506967067718506,
+ "step": 4543
+ },
+ {
+ "epoch": 63.111839231105286,
+ "grad_norm": 0.23973147571086884,
+ "learning_rate": 0.0006,
+ "loss": 3.513401746749878,
+ "step": 4544
+ },
+ {
+ "epoch": 63.12581913499345,
+ "grad_norm": 0.22731348872184753,
+ "learning_rate": 0.0006,
+ "loss": 3.4880478382110596,
+ "step": 4545
+ },
+ {
+ "epoch": 63.139799038881605,
+ "grad_norm": 0.22627407312393188,
+ "learning_rate": 0.0006,
+ "loss": 3.4975132942199707,
+ "step": 4546
+ },
+ {
+ "epoch": 63.15377894276977,
+ "grad_norm": 0.25107741355895996,
+ "learning_rate": 0.0006,
+ "loss": 3.5068140029907227,
+ "step": 4547
+ },
+ {
+ "epoch": 63.16775884665793,
+ "grad_norm": 0.23031412065029144,
+ "learning_rate": 0.0006,
+ "loss": 3.515760898590088,
+ "step": 4548
+ },
+ {
+ "epoch": 63.18173875054609,
+ "grad_norm": 0.21028949320316315,
+ "learning_rate": 0.0006,
+ "loss": 3.521303415298462,
+ "step": 4549
+ },
+ {
+ "epoch": 63.19571865443425,
+ "grad_norm": 0.22366516292095184,
+ "learning_rate": 0.0006,
+ "loss": 3.5283193588256836,
+ "step": 4550
+ },
+ {
+ "epoch": 63.20969855832241,
+ "grad_norm": 0.2176598459482193,
+ "learning_rate": 0.0006,
+ "loss": 3.490306854248047,
+ "step": 4551
+ },
+ {
+ "epoch": 63.22367846221057,
+ "grad_norm": 0.20985916256904602,
+ "learning_rate": 0.0006,
+ "loss": 3.5335614681243896,
+ "step": 4552
+ },
+ {
+ "epoch": 63.237658366098735,
+ "grad_norm": 0.2085118442773819,
+ "learning_rate": 0.0006,
+ "loss": 3.5108132362365723,
+ "step": 4553
+ },
+ {
+ "epoch": 63.25163826998689,
+ "grad_norm": 0.22644028067588806,
+ "learning_rate": 0.0006,
+ "loss": 3.4813215732574463,
+ "step": 4554
+ },
+ {
+ "epoch": 63.265618173875055,
+ "grad_norm": 0.21942120790481567,
+ "learning_rate": 0.0006,
+ "loss": 3.5310909748077393,
+ "step": 4555
+ },
+ {
+ "epoch": 63.27959807776322,
+ "grad_norm": 0.2335938662290573,
+ "learning_rate": 0.0006,
+ "loss": 3.530893564224243,
+ "step": 4556
+ },
+ {
+ "epoch": 63.293577981651374,
+ "grad_norm": 0.2409360110759735,
+ "learning_rate": 0.0006,
+ "loss": 3.5301408767700195,
+ "step": 4557
+ },
+ {
+ "epoch": 63.30755788553954,
+ "grad_norm": 0.2354922890663147,
+ "learning_rate": 0.0006,
+ "loss": 3.5211031436920166,
+ "step": 4558
+ },
+ {
+ "epoch": 63.3215377894277,
+ "grad_norm": 0.23376664519309998,
+ "learning_rate": 0.0006,
+ "loss": 3.538367509841919,
+ "step": 4559
+ },
+ {
+ "epoch": 63.33551769331586,
+ "grad_norm": 0.25319674611091614,
+ "learning_rate": 0.0006,
+ "loss": 3.494905471801758,
+ "step": 4560
+ },
+ {
+ "epoch": 63.34949759720402,
+ "grad_norm": 0.24088945984840393,
+ "learning_rate": 0.0006,
+ "loss": 3.5189433097839355,
+ "step": 4561
+ },
+ {
+ "epoch": 63.36347750109218,
+ "grad_norm": 0.2373911589384079,
+ "learning_rate": 0.0006,
+ "loss": 3.4956908226013184,
+ "step": 4562
+ },
+ {
+ "epoch": 63.37745740498034,
+ "grad_norm": 0.2590023875236511,
+ "learning_rate": 0.0006,
+ "loss": 3.511784076690674,
+ "step": 4563
+ },
+ {
+ "epoch": 63.391437308868504,
+ "grad_norm": 0.2600874900817871,
+ "learning_rate": 0.0006,
+ "loss": 3.478942394256592,
+ "step": 4564
+ },
+ {
+ "epoch": 63.40541721275666,
+ "grad_norm": 0.24018031358718872,
+ "learning_rate": 0.0006,
+ "loss": 3.521773338317871,
+ "step": 4565
+ },
+ {
+ "epoch": 63.419397116644824,
+ "grad_norm": 0.2552972435951233,
+ "learning_rate": 0.0006,
+ "loss": 3.4893441200256348,
+ "step": 4566
+ },
+ {
+ "epoch": 63.43337702053299,
+ "grad_norm": 0.26195958256721497,
+ "learning_rate": 0.0006,
+ "loss": 3.5366687774658203,
+ "step": 4567
+ },
+ {
+ "epoch": 63.44735692442114,
+ "grad_norm": 0.24390678107738495,
+ "learning_rate": 0.0006,
+ "loss": 3.4948301315307617,
+ "step": 4568
+ },
+ {
+ "epoch": 63.46133682830931,
+ "grad_norm": 0.21185952425003052,
+ "learning_rate": 0.0006,
+ "loss": 3.486267566680908,
+ "step": 4569
+ },
+ {
+ "epoch": 63.47531673219746,
+ "grad_norm": 0.21932153403759003,
+ "learning_rate": 0.0006,
+ "loss": 3.499481201171875,
+ "step": 4570
+ },
+ {
+ "epoch": 63.489296636085626,
+ "grad_norm": 0.22503717243671417,
+ "learning_rate": 0.0006,
+ "loss": 3.4932126998901367,
+ "step": 4571
+ },
+ {
+ "epoch": 63.50327653997379,
+ "grad_norm": 0.23853568732738495,
+ "learning_rate": 0.0006,
+ "loss": 3.4893674850463867,
+ "step": 4572
+ },
+ {
+ "epoch": 63.517256443861946,
+ "grad_norm": 0.2531817853450775,
+ "learning_rate": 0.0006,
+ "loss": 3.5391907691955566,
+ "step": 4573
+ },
+ {
+ "epoch": 63.53123634775011,
+ "grad_norm": 0.23776786029338837,
+ "learning_rate": 0.0006,
+ "loss": 3.5097427368164062,
+ "step": 4574
+ },
+ {
+ "epoch": 63.54521625163827,
+ "grad_norm": 0.24308739602565765,
+ "learning_rate": 0.0006,
+ "loss": 3.4988107681274414,
+ "step": 4575
+ },
+ {
+ "epoch": 63.55919615552643,
+ "grad_norm": 0.24214281141757965,
+ "learning_rate": 0.0006,
+ "loss": 3.506901502609253,
+ "step": 4576
+ },
+ {
+ "epoch": 63.57317605941459,
+ "grad_norm": 0.21378614008426666,
+ "learning_rate": 0.0006,
+ "loss": 3.54103684425354,
+ "step": 4577
+ },
+ {
+ "epoch": 63.58715596330275,
+ "grad_norm": 0.21135152876377106,
+ "learning_rate": 0.0006,
+ "loss": 3.534852981567383,
+ "step": 4578
+ },
+ {
+ "epoch": 63.60113586719091,
+ "grad_norm": 0.2335089147090912,
+ "learning_rate": 0.0006,
+ "loss": 3.542457342147827,
+ "step": 4579
+ },
+ {
+ "epoch": 63.615115771079076,
+ "grad_norm": 0.23693214356899261,
+ "learning_rate": 0.0006,
+ "loss": 3.4781997203826904,
+ "step": 4580
+ },
+ {
+ "epoch": 63.62909567496723,
+ "grad_norm": 0.21237023174762726,
+ "learning_rate": 0.0006,
+ "loss": 3.4980621337890625,
+ "step": 4581
+ },
+ {
+ "epoch": 63.643075578855395,
+ "grad_norm": 0.20930461585521698,
+ "learning_rate": 0.0006,
+ "loss": 3.5177974700927734,
+ "step": 4582
+ },
+ {
+ "epoch": 63.65705548274356,
+ "grad_norm": 0.22565403580665588,
+ "learning_rate": 0.0006,
+ "loss": 3.5385828018188477,
+ "step": 4583
+ },
+ {
+ "epoch": 63.671035386631715,
+ "grad_norm": 0.22187408804893494,
+ "learning_rate": 0.0006,
+ "loss": 3.5461559295654297,
+ "step": 4584
+ },
+ {
+ "epoch": 63.68501529051988,
+ "grad_norm": 0.23496168851852417,
+ "learning_rate": 0.0006,
+ "loss": 3.526822090148926,
+ "step": 4585
+ },
+ {
+ "epoch": 63.69899519440804,
+ "grad_norm": 0.2432301938533783,
+ "learning_rate": 0.0006,
+ "loss": 3.5248091220855713,
+ "step": 4586
+ },
+ {
+ "epoch": 63.7129750982962,
+ "grad_norm": 0.22797444462776184,
+ "learning_rate": 0.0006,
+ "loss": 3.5276098251342773,
+ "step": 4587
+ },
+ {
+ "epoch": 63.72695500218436,
+ "grad_norm": 0.2332911491394043,
+ "learning_rate": 0.0006,
+ "loss": 3.5454764366149902,
+ "step": 4588
+ },
+ {
+ "epoch": 63.74093490607252,
+ "grad_norm": 0.23016804456710815,
+ "learning_rate": 0.0006,
+ "loss": 3.519209384918213,
+ "step": 4589
+ },
+ {
+ "epoch": 63.75491480996068,
+ "grad_norm": 0.2160855233669281,
+ "learning_rate": 0.0006,
+ "loss": 3.536961317062378,
+ "step": 4590
+ },
+ {
+ "epoch": 63.768894713848844,
+ "grad_norm": 0.25935620069503784,
+ "learning_rate": 0.0006,
+ "loss": 3.5653820037841797,
+ "step": 4591
+ },
+ {
+ "epoch": 63.782874617737,
+ "grad_norm": 0.26625221967697144,
+ "learning_rate": 0.0006,
+ "loss": 3.5492172241210938,
+ "step": 4592
+ },
+ {
+ "epoch": 63.796854521625164,
+ "grad_norm": 0.25456854701042175,
+ "learning_rate": 0.0006,
+ "loss": 3.516575336456299,
+ "step": 4593
+ },
+ {
+ "epoch": 63.81083442551333,
+ "grad_norm": 0.26114824414253235,
+ "learning_rate": 0.0006,
+ "loss": 3.5429139137268066,
+ "step": 4594
+ },
+ {
+ "epoch": 63.824814329401484,
+ "grad_norm": 0.27836596965789795,
+ "learning_rate": 0.0006,
+ "loss": 3.5567727088928223,
+ "step": 4595
+ },
+ {
+ "epoch": 63.83879423328965,
+ "grad_norm": 0.2674464285373688,
+ "learning_rate": 0.0006,
+ "loss": 3.5093564987182617,
+ "step": 4596
+ },
+ {
+ "epoch": 63.8527741371778,
+ "grad_norm": 0.27393433451652527,
+ "learning_rate": 0.0006,
+ "loss": 3.5500247478485107,
+ "step": 4597
+ },
+ {
+ "epoch": 63.86675404106597,
+ "grad_norm": 0.30968594551086426,
+ "learning_rate": 0.0006,
+ "loss": 3.539085865020752,
+ "step": 4598
+ },
+ {
+ "epoch": 63.88073394495413,
+ "grad_norm": 0.279060423374176,
+ "learning_rate": 0.0006,
+ "loss": 3.517862319946289,
+ "step": 4599
+ },
+ {
+ "epoch": 63.89471384884229,
+ "grad_norm": 0.22436867654323578,
+ "learning_rate": 0.0006,
+ "loss": 3.5714004039764404,
+ "step": 4600
+ },
+ {
+ "epoch": 63.90869375273045,
+ "grad_norm": 0.22473126649856567,
+ "learning_rate": 0.0006,
+ "loss": 3.5212388038635254,
+ "step": 4601
+ },
+ {
+ "epoch": 63.92267365661861,
+ "grad_norm": 0.2802466154098511,
+ "learning_rate": 0.0006,
+ "loss": 3.5112411975860596,
+ "step": 4602
+ },
+ {
+ "epoch": 63.93665356050677,
+ "grad_norm": 0.29435867071151733,
+ "learning_rate": 0.0006,
+ "loss": 3.554875373840332,
+ "step": 4603
+ },
+ {
+ "epoch": 63.95063346439493,
+ "grad_norm": 0.24592025578022003,
+ "learning_rate": 0.0006,
+ "loss": 3.5593767166137695,
+ "step": 4604
+ },
+ {
+ "epoch": 63.964613368283096,
+ "grad_norm": 0.25918886065483093,
+ "learning_rate": 0.0006,
+ "loss": 3.5020017623901367,
+ "step": 4605
+ },
+ {
+ "epoch": 63.97859327217125,
+ "grad_norm": 0.24892419576644897,
+ "learning_rate": 0.0006,
+ "loss": 3.520456314086914,
+ "step": 4606
+ },
+ {
+ "epoch": 63.992573176059416,
+ "grad_norm": 0.24131213128566742,
+ "learning_rate": 0.0006,
+ "loss": 3.5576815605163574,
+ "step": 4607
+ },
+ {
+ "epoch": 64.0,
+ "grad_norm": 0.2348976731300354,
+ "learning_rate": 0.0006,
+ "loss": 3.524242401123047,
+ "step": 4608
+ },
+ {
+ "epoch": 64.0,
+ "eval_loss": 3.972158670425415,
+ "eval_runtime": 45.883,
+ "eval_samples_per_second": 53.222,
+ "eval_steps_per_second": 3.335,
+ "step": 4608
+ },
+ {
+ "epoch": 64.01397990388816,
+ "grad_norm": 0.24034473299980164,
+ "learning_rate": 0.0006,
+ "loss": 3.463156223297119,
+ "step": 4609
+ },
+ {
+ "epoch": 64.02795980777633,
+ "grad_norm": 0.28686341643333435,
+ "learning_rate": 0.0006,
+ "loss": 3.5137135982513428,
+ "step": 4610
+ },
+ {
+ "epoch": 64.04193971166448,
+ "grad_norm": 0.30763131380081177,
+ "learning_rate": 0.0006,
+ "loss": 3.490610361099243,
+ "step": 4611
+ },
+ {
+ "epoch": 64.05591961555264,
+ "grad_norm": 0.2775363624095917,
+ "learning_rate": 0.0006,
+ "loss": 3.516378879547119,
+ "step": 4612
+ },
+ {
+ "epoch": 64.06989951944081,
+ "grad_norm": 0.2643020749092102,
+ "learning_rate": 0.0006,
+ "loss": 3.511389970779419,
+ "step": 4613
+ },
+ {
+ "epoch": 64.08387942332897,
+ "grad_norm": 0.2859032452106476,
+ "learning_rate": 0.0006,
+ "loss": 3.5125572681427,
+ "step": 4614
+ },
+ {
+ "epoch": 64.09785932721712,
+ "grad_norm": 0.28378766775131226,
+ "learning_rate": 0.0006,
+ "loss": 3.4953627586364746,
+ "step": 4615
+ },
+ {
+ "epoch": 64.1118392311053,
+ "grad_norm": 0.2809223234653473,
+ "learning_rate": 0.0006,
+ "loss": 3.5114667415618896,
+ "step": 4616
+ },
+ {
+ "epoch": 64.12581913499345,
+ "grad_norm": 0.251823753118515,
+ "learning_rate": 0.0006,
+ "loss": 3.529876232147217,
+ "step": 4617
+ },
+ {
+ "epoch": 64.1397990388816,
+ "grad_norm": 0.236602321267128,
+ "learning_rate": 0.0006,
+ "loss": 3.5067150592803955,
+ "step": 4618
+ },
+ {
+ "epoch": 64.15377894276976,
+ "grad_norm": 0.2317773550748825,
+ "learning_rate": 0.0006,
+ "loss": 3.5166091918945312,
+ "step": 4619
+ },
+ {
+ "epoch": 64.16775884665793,
+ "grad_norm": 0.2237853854894638,
+ "learning_rate": 0.0006,
+ "loss": 3.492464065551758,
+ "step": 4620
+ },
+ {
+ "epoch": 64.18173875054609,
+ "grad_norm": 0.22309459745883942,
+ "learning_rate": 0.0006,
+ "loss": 3.4892983436584473,
+ "step": 4621
+ },
+ {
+ "epoch": 64.19571865443424,
+ "grad_norm": 0.21838971972465515,
+ "learning_rate": 0.0006,
+ "loss": 3.528764486312866,
+ "step": 4622
+ },
+ {
+ "epoch": 64.20969855832242,
+ "grad_norm": 0.22414161264896393,
+ "learning_rate": 0.0006,
+ "loss": 3.506270170211792,
+ "step": 4623
+ },
+ {
+ "epoch": 64.22367846221057,
+ "grad_norm": 0.22375065088272095,
+ "learning_rate": 0.0006,
+ "loss": 3.4844071865081787,
+ "step": 4624
+ },
+ {
+ "epoch": 64.23765836609873,
+ "grad_norm": 0.2091676890850067,
+ "learning_rate": 0.0006,
+ "loss": 3.4983415603637695,
+ "step": 4625
+ },
+ {
+ "epoch": 64.2516382699869,
+ "grad_norm": 0.22184209525585175,
+ "learning_rate": 0.0006,
+ "loss": 3.4846835136413574,
+ "step": 4626
+ },
+ {
+ "epoch": 64.26561817387505,
+ "grad_norm": 0.21549198031425476,
+ "learning_rate": 0.0006,
+ "loss": 3.4933011531829834,
+ "step": 4627
+ },
+ {
+ "epoch": 64.27959807776321,
+ "grad_norm": 0.21613609790802002,
+ "learning_rate": 0.0006,
+ "loss": 3.523514986038208,
+ "step": 4628
+ },
+ {
+ "epoch": 64.29357798165138,
+ "grad_norm": 0.22394488751888275,
+ "learning_rate": 0.0006,
+ "loss": 3.512820243835449,
+ "step": 4629
+ },
+ {
+ "epoch": 64.30755788553954,
+ "grad_norm": 0.22381016612052917,
+ "learning_rate": 0.0006,
+ "loss": 3.4967026710510254,
+ "step": 4630
+ },
+ {
+ "epoch": 64.3215377894277,
+ "grad_norm": 0.22533059120178223,
+ "learning_rate": 0.0006,
+ "loss": 3.5051097869873047,
+ "step": 4631
+ },
+ {
+ "epoch": 64.33551769331586,
+ "grad_norm": 0.23043590784072876,
+ "learning_rate": 0.0006,
+ "loss": 3.4784820079803467,
+ "step": 4632
+ },
+ {
+ "epoch": 64.34949759720402,
+ "grad_norm": 0.20840506255626678,
+ "learning_rate": 0.0006,
+ "loss": 3.496629238128662,
+ "step": 4633
+ },
+ {
+ "epoch": 64.36347750109218,
+ "grad_norm": 0.20293036103248596,
+ "learning_rate": 0.0006,
+ "loss": 3.500199317932129,
+ "step": 4634
+ },
+ {
+ "epoch": 64.37745740498035,
+ "grad_norm": 0.20510733127593994,
+ "learning_rate": 0.0006,
+ "loss": 3.4943113327026367,
+ "step": 4635
+ },
+ {
+ "epoch": 64.3914373088685,
+ "grad_norm": 0.21207642555236816,
+ "learning_rate": 0.0006,
+ "loss": 3.5024590492248535,
+ "step": 4636
+ },
+ {
+ "epoch": 64.40541721275666,
+ "grad_norm": 0.19878660142421722,
+ "learning_rate": 0.0006,
+ "loss": 3.5065855979919434,
+ "step": 4637
+ },
+ {
+ "epoch": 64.41939711664482,
+ "grad_norm": 0.22502431273460388,
+ "learning_rate": 0.0006,
+ "loss": 3.527764081954956,
+ "step": 4638
+ },
+ {
+ "epoch": 64.43337702053299,
+ "grad_norm": 0.2167922705411911,
+ "learning_rate": 0.0006,
+ "loss": 3.5075361728668213,
+ "step": 4639
+ },
+ {
+ "epoch": 64.44735692442114,
+ "grad_norm": 0.21200154721736908,
+ "learning_rate": 0.0006,
+ "loss": 3.5339698791503906,
+ "step": 4640
+ },
+ {
+ "epoch": 64.4613368283093,
+ "grad_norm": 0.22495608031749725,
+ "learning_rate": 0.0006,
+ "loss": 3.5342869758605957,
+ "step": 4641
+ },
+ {
+ "epoch": 64.47531673219747,
+ "grad_norm": 0.21426217257976532,
+ "learning_rate": 0.0006,
+ "loss": 3.5065689086914062,
+ "step": 4642
+ },
+ {
+ "epoch": 64.48929663608563,
+ "grad_norm": 0.19980023801326752,
+ "learning_rate": 0.0006,
+ "loss": 3.508183002471924,
+ "step": 4643
+ },
+ {
+ "epoch": 64.50327653997378,
+ "grad_norm": 0.2054566591978073,
+ "learning_rate": 0.0006,
+ "loss": 3.5098650455474854,
+ "step": 4644
+ },
+ {
+ "epoch": 64.51725644386195,
+ "grad_norm": 0.2038603276014328,
+ "learning_rate": 0.0006,
+ "loss": 3.517388105392456,
+ "step": 4645
+ },
+ {
+ "epoch": 64.53123634775011,
+ "grad_norm": 0.22438357770442963,
+ "learning_rate": 0.0006,
+ "loss": 3.5215954780578613,
+ "step": 4646
+ },
+ {
+ "epoch": 64.54521625163827,
+ "grad_norm": 0.23507612943649292,
+ "learning_rate": 0.0006,
+ "loss": 3.488262176513672,
+ "step": 4647
+ },
+ {
+ "epoch": 64.55919615552644,
+ "grad_norm": 0.21669664978981018,
+ "learning_rate": 0.0006,
+ "loss": 3.4945027828216553,
+ "step": 4648
+ },
+ {
+ "epoch": 64.57317605941459,
+ "grad_norm": 0.20035886764526367,
+ "learning_rate": 0.0006,
+ "loss": 3.516415596008301,
+ "step": 4649
+ },
+ {
+ "epoch": 64.58715596330275,
+ "grad_norm": 0.21818110346794128,
+ "learning_rate": 0.0006,
+ "loss": 3.4944982528686523,
+ "step": 4650
+ },
+ {
+ "epoch": 64.60113586719092,
+ "grad_norm": 0.20609644055366516,
+ "learning_rate": 0.0006,
+ "loss": 3.4914844036102295,
+ "step": 4651
+ },
+ {
+ "epoch": 64.61511577107908,
+ "grad_norm": 0.21921353042125702,
+ "learning_rate": 0.0006,
+ "loss": 3.5292391777038574,
+ "step": 4652
+ },
+ {
+ "epoch": 64.62909567496723,
+ "grad_norm": 0.23570363223552704,
+ "learning_rate": 0.0006,
+ "loss": 3.5353617668151855,
+ "step": 4653
+ },
+ {
+ "epoch": 64.6430755788554,
+ "grad_norm": 0.20933061838150024,
+ "learning_rate": 0.0006,
+ "loss": 3.524240016937256,
+ "step": 4654
+ },
+ {
+ "epoch": 64.65705548274356,
+ "grad_norm": 0.22739441692829132,
+ "learning_rate": 0.0006,
+ "loss": 3.529047966003418,
+ "step": 4655
+ },
+ {
+ "epoch": 64.67103538663171,
+ "grad_norm": 0.22208894789218903,
+ "learning_rate": 0.0006,
+ "loss": 3.5492024421691895,
+ "step": 4656
+ },
+ {
+ "epoch": 64.68501529051987,
+ "grad_norm": 0.23031534254550934,
+ "learning_rate": 0.0006,
+ "loss": 3.532979726791382,
+ "step": 4657
+ },
+ {
+ "epoch": 64.69899519440804,
+ "grad_norm": 0.25316348671913147,
+ "learning_rate": 0.0006,
+ "loss": 3.5105819702148438,
+ "step": 4658
+ },
+ {
+ "epoch": 64.7129750982962,
+ "grad_norm": 0.23601582646369934,
+ "learning_rate": 0.0006,
+ "loss": 3.5270726680755615,
+ "step": 4659
+ },
+ {
+ "epoch": 64.72695500218435,
+ "grad_norm": 0.20309361815452576,
+ "learning_rate": 0.0006,
+ "loss": 3.5072035789489746,
+ "step": 4660
+ },
+ {
+ "epoch": 64.74093490607252,
+ "grad_norm": 0.21525762975215912,
+ "learning_rate": 0.0006,
+ "loss": 3.531649112701416,
+ "step": 4661
+ },
+ {
+ "epoch": 64.75491480996068,
+ "grad_norm": 0.2262735813856125,
+ "learning_rate": 0.0006,
+ "loss": 3.5053927898406982,
+ "step": 4662
+ },
+ {
+ "epoch": 64.76889471384884,
+ "grad_norm": 0.2223973125219345,
+ "learning_rate": 0.0006,
+ "loss": 3.5400562286376953,
+ "step": 4663
+ },
+ {
+ "epoch": 64.78287461773701,
+ "grad_norm": 0.22822168469429016,
+ "learning_rate": 0.0006,
+ "loss": 3.502312421798706,
+ "step": 4664
+ },
+ {
+ "epoch": 64.79685452162516,
+ "grad_norm": 0.2337028533220291,
+ "learning_rate": 0.0006,
+ "loss": 3.524888038635254,
+ "step": 4665
+ },
+ {
+ "epoch": 64.81083442551332,
+ "grad_norm": 0.22423268854618073,
+ "learning_rate": 0.0006,
+ "loss": 3.5380213260650635,
+ "step": 4666
+ },
+ {
+ "epoch": 64.82481432940149,
+ "grad_norm": 0.21429643034934998,
+ "learning_rate": 0.0006,
+ "loss": 3.5499157905578613,
+ "step": 4667
+ },
+ {
+ "epoch": 64.83879423328965,
+ "grad_norm": 0.22421850264072418,
+ "learning_rate": 0.0006,
+ "loss": 3.5034070014953613,
+ "step": 4668
+ },
+ {
+ "epoch": 64.8527741371778,
+ "grad_norm": 0.21886403858661652,
+ "learning_rate": 0.0006,
+ "loss": 3.5276694297790527,
+ "step": 4669
+ },
+ {
+ "epoch": 64.86675404106597,
+ "grad_norm": 0.2404339462518692,
+ "learning_rate": 0.0006,
+ "loss": 3.515219211578369,
+ "step": 4670
+ },
+ {
+ "epoch": 64.88073394495413,
+ "grad_norm": 0.2837470769882202,
+ "learning_rate": 0.0006,
+ "loss": 3.561008930206299,
+ "step": 4671
+ },
+ {
+ "epoch": 64.89471384884229,
+ "grad_norm": 0.3101402223110199,
+ "learning_rate": 0.0006,
+ "loss": 3.556626319885254,
+ "step": 4672
+ },
+ {
+ "epoch": 64.90869375273044,
+ "grad_norm": 0.30606821179389954,
+ "learning_rate": 0.0006,
+ "loss": 3.540271282196045,
+ "step": 4673
+ },
+ {
+ "epoch": 64.92267365661861,
+ "grad_norm": 0.2715052664279938,
+ "learning_rate": 0.0006,
+ "loss": 3.5128841400146484,
+ "step": 4674
+ },
+ {
+ "epoch": 64.93665356050677,
+ "grad_norm": 0.24061815440654755,
+ "learning_rate": 0.0006,
+ "loss": 3.554208278656006,
+ "step": 4675
+ },
+ {
+ "epoch": 64.95063346439493,
+ "grad_norm": 0.23540185391902924,
+ "learning_rate": 0.0006,
+ "loss": 3.544139862060547,
+ "step": 4676
+ },
+ {
+ "epoch": 64.9646133682831,
+ "grad_norm": 0.26172906160354614,
+ "learning_rate": 0.0006,
+ "loss": 3.567110061645508,
+ "step": 4677
+ },
+ {
+ "epoch": 64.97859327217125,
+ "grad_norm": 0.2766035795211792,
+ "learning_rate": 0.0006,
+ "loss": 3.494391918182373,
+ "step": 4678
+ },
+ {
+ "epoch": 64.99257317605941,
+ "grad_norm": 0.2400948703289032,
+ "learning_rate": 0.0006,
+ "loss": 3.5130133628845215,
+ "step": 4679
+ },
+ {
+ "epoch": 65.0,
+ "grad_norm": 0.24790917336940765,
+ "learning_rate": 0.0006,
+ "loss": 3.5481390953063965,
+ "step": 4680
+ },
+ {
+ "epoch": 65.0,
+ "eval_loss": 3.976747989654541,
+ "eval_runtime": 46.3575,
+ "eval_samples_per_second": 52.678,
+ "eval_steps_per_second": 3.3,
+ "step": 4680
+ },
+ {
+ "epoch": 65.01397990388816,
+ "grad_norm": 0.22275416553020477,
+ "learning_rate": 0.0006,
+ "loss": 3.4832773208618164,
+ "step": 4681
+ },
+ {
+ "epoch": 65.02795980777633,
+ "grad_norm": 0.23779742419719696,
+ "learning_rate": 0.0006,
+ "loss": 3.5049266815185547,
+ "step": 4682
+ },
+ {
+ "epoch": 65.04193971166448,
+ "grad_norm": 0.2394440770149231,
+ "learning_rate": 0.0006,
+ "loss": 3.5335357189178467,
+ "step": 4683
+ },
+ {
+ "epoch": 65.05591961555264,
+ "grad_norm": 0.22160623967647552,
+ "learning_rate": 0.0006,
+ "loss": 3.5066094398498535,
+ "step": 4684
+ },
+ {
+ "epoch": 65.06989951944081,
+ "grad_norm": 0.22387197613716125,
+ "learning_rate": 0.0006,
+ "loss": 3.474155902862549,
+ "step": 4685
+ },
+ {
+ "epoch": 65.08387942332897,
+ "grad_norm": 0.24355316162109375,
+ "learning_rate": 0.0006,
+ "loss": 3.4905145168304443,
+ "step": 4686
+ },
+ {
+ "epoch": 65.09785932721712,
+ "grad_norm": 0.25801026821136475,
+ "learning_rate": 0.0006,
+ "loss": 3.50339937210083,
+ "step": 4687
+ },
+ {
+ "epoch": 65.1118392311053,
+ "grad_norm": 0.26155906915664673,
+ "learning_rate": 0.0006,
+ "loss": 3.523623466491699,
+ "step": 4688
+ },
+ {
+ "epoch": 65.12581913499345,
+ "grad_norm": 0.2512831389904022,
+ "learning_rate": 0.0006,
+ "loss": 3.490898609161377,
+ "step": 4689
+ },
+ {
+ "epoch": 65.1397990388816,
+ "grad_norm": 0.25024810433387756,
+ "learning_rate": 0.0006,
+ "loss": 3.4742162227630615,
+ "step": 4690
+ },
+ {
+ "epoch": 65.15377894276976,
+ "grad_norm": 0.27639806270599365,
+ "learning_rate": 0.0006,
+ "loss": 3.503298282623291,
+ "step": 4691
+ },
+ {
+ "epoch": 65.16775884665793,
+ "grad_norm": 0.2543538510799408,
+ "learning_rate": 0.0006,
+ "loss": 3.4785704612731934,
+ "step": 4692
+ },
+ {
+ "epoch": 65.18173875054609,
+ "grad_norm": 0.24148274958133698,
+ "learning_rate": 0.0006,
+ "loss": 3.48526668548584,
+ "step": 4693
+ },
+ {
+ "epoch": 65.19571865443424,
+ "grad_norm": 0.2161206603050232,
+ "learning_rate": 0.0006,
+ "loss": 3.477449417114258,
+ "step": 4694
+ },
+ {
+ "epoch": 65.20969855832242,
+ "grad_norm": 0.21417468786239624,
+ "learning_rate": 0.0006,
+ "loss": 3.5010929107666016,
+ "step": 4695
+ },
+ {
+ "epoch": 65.22367846221057,
+ "grad_norm": 0.22810059785842896,
+ "learning_rate": 0.0006,
+ "loss": 3.4384589195251465,
+ "step": 4696
+ },
+ {
+ "epoch": 65.23765836609873,
+ "grad_norm": 0.23555037379264832,
+ "learning_rate": 0.0006,
+ "loss": 3.4912073612213135,
+ "step": 4697
+ },
+ {
+ "epoch": 65.2516382699869,
+ "grad_norm": 0.2628633975982666,
+ "learning_rate": 0.0006,
+ "loss": 3.4763574600219727,
+ "step": 4698
+ },
+ {
+ "epoch": 65.26561817387505,
+ "grad_norm": 0.2515856921672821,
+ "learning_rate": 0.0006,
+ "loss": 3.480222463607788,
+ "step": 4699
+ },
+ {
+ "epoch": 65.27959807776321,
+ "grad_norm": 0.19862835109233856,
+ "learning_rate": 0.0006,
+ "loss": 3.510263204574585,
+ "step": 4700
+ },
+ {
+ "epoch": 65.29357798165138,
+ "grad_norm": 0.22558043897151947,
+ "learning_rate": 0.0006,
+ "loss": 3.4952306747436523,
+ "step": 4701
+ },
+ {
+ "epoch": 65.30755788553954,
+ "grad_norm": 0.2351200133562088,
+ "learning_rate": 0.0006,
+ "loss": 3.5010221004486084,
+ "step": 4702
+ },
+ {
+ "epoch": 65.3215377894277,
+ "grad_norm": 0.21748903393745422,
+ "learning_rate": 0.0006,
+ "loss": 3.5186777114868164,
+ "step": 4703
+ },
+ {
+ "epoch": 65.33551769331586,
+ "grad_norm": 0.2073124349117279,
+ "learning_rate": 0.0006,
+ "loss": 3.5397891998291016,
+ "step": 4704
+ },
+ {
+ "epoch": 65.34949759720402,
+ "grad_norm": 0.1948464810848236,
+ "learning_rate": 0.0006,
+ "loss": 3.5413217544555664,
+ "step": 4705
+ },
+ {
+ "epoch": 65.36347750109218,
+ "grad_norm": 0.19741199910640717,
+ "learning_rate": 0.0006,
+ "loss": 3.515199899673462,
+ "step": 4706
+ },
+ {
+ "epoch": 65.37745740498035,
+ "grad_norm": 0.22518441081047058,
+ "learning_rate": 0.0006,
+ "loss": 3.512284278869629,
+ "step": 4707
+ },
+ {
+ "epoch": 65.3914373088685,
+ "grad_norm": 0.24368613958358765,
+ "learning_rate": 0.0006,
+ "loss": 3.528355121612549,
+ "step": 4708
+ },
+ {
+ "epoch": 65.40541721275666,
+ "grad_norm": 0.21857064962387085,
+ "learning_rate": 0.0006,
+ "loss": 3.494401454925537,
+ "step": 4709
+ },
+ {
+ "epoch": 65.41939711664482,
+ "grad_norm": 0.2199285924434662,
+ "learning_rate": 0.0006,
+ "loss": 3.49814772605896,
+ "step": 4710
+ },
+ {
+ "epoch": 65.43337702053299,
+ "grad_norm": 0.23801206052303314,
+ "learning_rate": 0.0006,
+ "loss": 3.4678444862365723,
+ "step": 4711
+ },
+ {
+ "epoch": 65.44735692442114,
+ "grad_norm": 0.231369748711586,
+ "learning_rate": 0.0006,
+ "loss": 3.501521587371826,
+ "step": 4712
+ },
+ {
+ "epoch": 65.4613368283093,
+ "grad_norm": 0.20447038114070892,
+ "learning_rate": 0.0006,
+ "loss": 3.508510112762451,
+ "step": 4713
+ },
+ {
+ "epoch": 65.47531673219747,
+ "grad_norm": 0.21331779658794403,
+ "learning_rate": 0.0006,
+ "loss": 3.498544692993164,
+ "step": 4714
+ },
+ {
+ "epoch": 65.48929663608563,
+ "grad_norm": 0.2365437150001526,
+ "learning_rate": 0.0006,
+ "loss": 3.4972000122070312,
+ "step": 4715
+ },
+ {
+ "epoch": 65.50327653997378,
+ "grad_norm": 0.2236112356185913,
+ "learning_rate": 0.0006,
+ "loss": 3.5397965908050537,
+ "step": 4716
+ },
+ {
+ "epoch": 65.51725644386195,
+ "grad_norm": 0.20595021545886993,
+ "learning_rate": 0.0006,
+ "loss": 3.532902717590332,
+ "step": 4717
+ },
+ {
+ "epoch": 65.53123634775011,
+ "grad_norm": 0.2043730616569519,
+ "learning_rate": 0.0006,
+ "loss": 3.5136585235595703,
+ "step": 4718
+ },
+ {
+ "epoch": 65.54521625163827,
+ "grad_norm": 0.21925127506256104,
+ "learning_rate": 0.0006,
+ "loss": 3.526590347290039,
+ "step": 4719
+ },
+ {
+ "epoch": 65.55919615552644,
+ "grad_norm": 0.21580299735069275,
+ "learning_rate": 0.0006,
+ "loss": 3.530301332473755,
+ "step": 4720
+ },
+ {
+ "epoch": 65.57317605941459,
+ "grad_norm": 0.2296830266714096,
+ "learning_rate": 0.0006,
+ "loss": 3.527580976486206,
+ "step": 4721
+ },
+ {
+ "epoch": 65.58715596330275,
+ "grad_norm": 0.21846120059490204,
+ "learning_rate": 0.0006,
+ "loss": 3.524075746536255,
+ "step": 4722
+ },
+ {
+ "epoch": 65.60113586719092,
+ "grad_norm": 0.19835807383060455,
+ "learning_rate": 0.0006,
+ "loss": 3.4560012817382812,
+ "step": 4723
+ },
+ {
+ "epoch": 65.61511577107908,
+ "grad_norm": 0.20501157641410828,
+ "learning_rate": 0.0006,
+ "loss": 3.508017063140869,
+ "step": 4724
+ },
+ {
+ "epoch": 65.62909567496723,
+ "grad_norm": 0.21347478032112122,
+ "learning_rate": 0.0006,
+ "loss": 3.5479536056518555,
+ "step": 4725
+ },
+ {
+ "epoch": 65.6430755788554,
+ "grad_norm": 0.19286541640758514,
+ "learning_rate": 0.0006,
+ "loss": 3.537360906600952,
+ "step": 4726
+ },
+ {
+ "epoch": 65.65705548274356,
+ "grad_norm": 0.19364185631275177,
+ "learning_rate": 0.0006,
+ "loss": 3.5186867713928223,
+ "step": 4727
+ },
+ {
+ "epoch": 65.67103538663171,
+ "grad_norm": 0.19047997891902924,
+ "learning_rate": 0.0006,
+ "loss": 3.5242767333984375,
+ "step": 4728
+ },
+ {
+ "epoch": 65.68501529051987,
+ "grad_norm": 0.19712361693382263,
+ "learning_rate": 0.0006,
+ "loss": 3.5176010131835938,
+ "step": 4729
+ },
+ {
+ "epoch": 65.69899519440804,
+ "grad_norm": 0.2034953087568283,
+ "learning_rate": 0.0006,
+ "loss": 3.510268211364746,
+ "step": 4730
+ },
+ {
+ "epoch": 65.7129750982962,
+ "grad_norm": 0.20022697746753693,
+ "learning_rate": 0.0006,
+ "loss": 3.53619647026062,
+ "step": 4731
+ },
+ {
+ "epoch": 65.72695500218435,
+ "grad_norm": 0.20698072016239166,
+ "learning_rate": 0.0006,
+ "loss": 3.5179615020751953,
+ "step": 4732
+ },
+ {
+ "epoch": 65.74093490607252,
+ "grad_norm": 0.2297508418560028,
+ "learning_rate": 0.0006,
+ "loss": 3.5308024883270264,
+ "step": 4733
+ },
+ {
+ "epoch": 65.75491480996068,
+ "grad_norm": 0.227255716919899,
+ "learning_rate": 0.0006,
+ "loss": 3.5443387031555176,
+ "step": 4734
+ },
+ {
+ "epoch": 65.76889471384884,
+ "grad_norm": 0.21772262454032898,
+ "learning_rate": 0.0006,
+ "loss": 3.52345871925354,
+ "step": 4735
+ },
+ {
+ "epoch": 65.78287461773701,
+ "grad_norm": 0.22124525904655457,
+ "learning_rate": 0.0006,
+ "loss": 3.5262577533721924,
+ "step": 4736
+ },
+ {
+ "epoch": 65.79685452162516,
+ "grad_norm": 0.22992224991321564,
+ "learning_rate": 0.0006,
+ "loss": 3.531507730484009,
+ "step": 4737
+ },
+ {
+ "epoch": 65.81083442551332,
+ "grad_norm": 0.24775296449661255,
+ "learning_rate": 0.0006,
+ "loss": 3.4781999588012695,
+ "step": 4738
+ },
+ {
+ "epoch": 65.82481432940149,
+ "grad_norm": 0.24917690455913544,
+ "learning_rate": 0.0006,
+ "loss": 3.5157413482666016,
+ "step": 4739
+ },
+ {
+ "epoch": 65.83879423328965,
+ "grad_norm": 0.23374824225902557,
+ "learning_rate": 0.0006,
+ "loss": 3.536634683609009,
+ "step": 4740
+ },
+ {
+ "epoch": 65.8527741371778,
+ "grad_norm": 0.25592541694641113,
+ "learning_rate": 0.0006,
+ "loss": 3.5343942642211914,
+ "step": 4741
+ },
+ {
+ "epoch": 65.86675404106597,
+ "grad_norm": 0.2698819935321808,
+ "learning_rate": 0.0006,
+ "loss": 3.4906277656555176,
+ "step": 4742
+ },
+ {
+ "epoch": 65.88073394495413,
+ "grad_norm": 0.2175036370754242,
+ "learning_rate": 0.0006,
+ "loss": 3.506230354309082,
+ "step": 4743
+ },
+ {
+ "epoch": 65.89471384884229,
+ "grad_norm": 0.22451810538768768,
+ "learning_rate": 0.0006,
+ "loss": 3.5139262676239014,
+ "step": 4744
+ },
+ {
+ "epoch": 65.90869375273044,
+ "grad_norm": 0.24293720722198486,
+ "learning_rate": 0.0006,
+ "loss": 3.528148651123047,
+ "step": 4745
+ },
+ {
+ "epoch": 65.92267365661861,
+ "grad_norm": 0.2138707935810089,
+ "learning_rate": 0.0006,
+ "loss": 3.516911029815674,
+ "step": 4746
+ },
+ {
+ "epoch": 65.93665356050677,
+ "grad_norm": 0.2216160148382187,
+ "learning_rate": 0.0006,
+ "loss": 3.540201187133789,
+ "step": 4747
+ },
+ {
+ "epoch": 65.95063346439493,
+ "grad_norm": 0.2276899367570877,
+ "learning_rate": 0.0006,
+ "loss": 3.525435447692871,
+ "step": 4748
+ },
+ {
+ "epoch": 65.9646133682831,
+ "grad_norm": 0.2441754788160324,
+ "learning_rate": 0.0006,
+ "loss": 3.5337369441986084,
+ "step": 4749
+ },
+ {
+ "epoch": 65.97859327217125,
+ "grad_norm": 0.2364634871482849,
+ "learning_rate": 0.0006,
+ "loss": 3.5289382934570312,
+ "step": 4750
+ },
+ {
+ "epoch": 65.99257317605941,
+ "grad_norm": 0.2322802096605301,
+ "learning_rate": 0.0006,
+ "loss": 3.519960403442383,
+ "step": 4751
+ },
+ {
+ "epoch": 66.0,
+ "grad_norm": 0.28910940885543823,
+ "learning_rate": 0.0006,
+ "loss": 3.535785436630249,
+ "step": 4752
+ },
+ {
+ "epoch": 66.0,
+ "eval_loss": 3.9755074977874756,
+ "eval_runtime": 44.9956,
+ "eval_samples_per_second": 54.272,
+ "eval_steps_per_second": 3.4,
+ "step": 4752
+ },
+ {
+ "epoch": 66.01397990388816,
+ "grad_norm": 0.2833491861820221,
+ "learning_rate": 0.0006,
+ "loss": 3.4532885551452637,
+ "step": 4753
+ },
+ {
+ "epoch": 66.02795980777633,
+ "grad_norm": 0.31011638045310974,
+ "learning_rate": 0.0006,
+ "loss": 3.5164999961853027,
+ "step": 4754
+ },
+ {
+ "epoch": 66.04193971166448,
+ "grad_norm": 0.34583768248558044,
+ "learning_rate": 0.0006,
+ "loss": 3.463331937789917,
+ "step": 4755
+ },
+ {
+ "epoch": 66.05591961555264,
+ "grad_norm": 0.3586544990539551,
+ "learning_rate": 0.0006,
+ "loss": 3.4739010334014893,
+ "step": 4756
+ },
+ {
+ "epoch": 66.06989951944081,
+ "grad_norm": 0.32337963581085205,
+ "learning_rate": 0.0006,
+ "loss": 3.5309596061706543,
+ "step": 4757
+ },
+ {
+ "epoch": 66.08387942332897,
+ "grad_norm": 0.3091002404689789,
+ "learning_rate": 0.0006,
+ "loss": 3.479280471801758,
+ "step": 4758
+ },
+ {
+ "epoch": 66.09785932721712,
+ "grad_norm": 0.29722821712493896,
+ "learning_rate": 0.0006,
+ "loss": 3.52632999420166,
+ "step": 4759
+ },
+ {
+ "epoch": 66.1118392311053,
+ "grad_norm": 0.2636614739894867,
+ "learning_rate": 0.0006,
+ "loss": 3.4953694343566895,
+ "step": 4760
+ },
+ {
+ "epoch": 66.12581913499345,
+ "grad_norm": 0.2646677494049072,
+ "learning_rate": 0.0006,
+ "loss": 3.519223213195801,
+ "step": 4761
+ },
+ {
+ "epoch": 66.1397990388816,
+ "grad_norm": 0.26999902725219727,
+ "learning_rate": 0.0006,
+ "loss": 3.500627040863037,
+ "step": 4762
+ },
+ {
+ "epoch": 66.15377894276976,
+ "grad_norm": 0.26489800214767456,
+ "learning_rate": 0.0006,
+ "loss": 3.486992120742798,
+ "step": 4763
+ },
+ {
+ "epoch": 66.16775884665793,
+ "grad_norm": 0.23870280385017395,
+ "learning_rate": 0.0006,
+ "loss": 3.5312767028808594,
+ "step": 4764
+ },
+ {
+ "epoch": 66.18173875054609,
+ "grad_norm": 0.260374516248703,
+ "learning_rate": 0.0006,
+ "loss": 3.529757499694824,
+ "step": 4765
+ },
+ {
+ "epoch": 66.19571865443424,
+ "grad_norm": 0.22300437092781067,
+ "learning_rate": 0.0006,
+ "loss": 3.534423351287842,
+ "step": 4766
+ },
+ {
+ "epoch": 66.20969855832242,
+ "grad_norm": 0.22216713428497314,
+ "learning_rate": 0.0006,
+ "loss": 3.4944376945495605,
+ "step": 4767
+ },
+ {
+ "epoch": 66.22367846221057,
+ "grad_norm": 0.22038567066192627,
+ "learning_rate": 0.0006,
+ "loss": 3.500737190246582,
+ "step": 4768
+ },
+ {
+ "epoch": 66.23765836609873,
+ "grad_norm": 0.23068127036094666,
+ "learning_rate": 0.0006,
+ "loss": 3.486678123474121,
+ "step": 4769
+ },
+ {
+ "epoch": 66.2516382699869,
+ "grad_norm": 0.22809696197509766,
+ "learning_rate": 0.0006,
+ "loss": 3.49131441116333,
+ "step": 4770
+ },
+ {
+ "epoch": 66.26561817387505,
+ "grad_norm": 0.2096482366323471,
+ "learning_rate": 0.0006,
+ "loss": 3.462193012237549,
+ "step": 4771
+ },
+ {
+ "epoch": 66.27959807776321,
+ "grad_norm": 0.20821219682693481,
+ "learning_rate": 0.0006,
+ "loss": 3.482736110687256,
+ "step": 4772
+ },
+ {
+ "epoch": 66.29357798165138,
+ "grad_norm": 0.20735417306423187,
+ "learning_rate": 0.0006,
+ "loss": 3.4810829162597656,
+ "step": 4773
+ },
+ {
+ "epoch": 66.30755788553954,
+ "grad_norm": 0.21598318219184875,
+ "learning_rate": 0.0006,
+ "loss": 3.5151000022888184,
+ "step": 4774
+ },
+ {
+ "epoch": 66.3215377894277,
+ "grad_norm": 0.20589035749435425,
+ "learning_rate": 0.0006,
+ "loss": 3.4938106536865234,
+ "step": 4775
+ },
+ {
+ "epoch": 66.33551769331586,
+ "grad_norm": 0.22494125366210938,
+ "learning_rate": 0.0006,
+ "loss": 3.4739134311676025,
+ "step": 4776
+ },
+ {
+ "epoch": 66.34949759720402,
+ "grad_norm": 0.24715618789196014,
+ "learning_rate": 0.0006,
+ "loss": 3.492598295211792,
+ "step": 4777
+ },
+ {
+ "epoch": 66.36347750109218,
+ "grad_norm": 0.26689210534095764,
+ "learning_rate": 0.0006,
+ "loss": 3.5183334350585938,
+ "step": 4778
+ },
+ {
+ "epoch": 66.37745740498035,
+ "grad_norm": 0.29018405079841614,
+ "learning_rate": 0.0006,
+ "loss": 3.4874320030212402,
+ "step": 4779
+ },
+ {
+ "epoch": 66.3914373088685,
+ "grad_norm": 0.2511773109436035,
+ "learning_rate": 0.0006,
+ "loss": 3.5105361938476562,
+ "step": 4780
+ },
+ {
+ "epoch": 66.40541721275666,
+ "grad_norm": 0.20808005332946777,
+ "learning_rate": 0.0006,
+ "loss": 3.4932327270507812,
+ "step": 4781
+ },
+ {
+ "epoch": 66.41939711664482,
+ "grad_norm": 0.21036715805530548,
+ "learning_rate": 0.0006,
+ "loss": 3.5223588943481445,
+ "step": 4782
+ },
+ {
+ "epoch": 66.43337702053299,
+ "grad_norm": 0.2151600569486618,
+ "learning_rate": 0.0006,
+ "loss": 3.491854190826416,
+ "step": 4783
+ },
+ {
+ "epoch": 66.44735692442114,
+ "grad_norm": 0.23702189326286316,
+ "learning_rate": 0.0006,
+ "loss": 3.4869368076324463,
+ "step": 4784
+ },
+ {
+ "epoch": 66.4613368283093,
+ "grad_norm": 0.23089149594306946,
+ "learning_rate": 0.0006,
+ "loss": 3.5014419555664062,
+ "step": 4785
+ },
+ {
+ "epoch": 66.47531673219747,
+ "grad_norm": 0.25527265667915344,
+ "learning_rate": 0.0006,
+ "loss": 3.5148048400878906,
+ "step": 4786
+ },
+ {
+ "epoch": 66.48929663608563,
+ "grad_norm": 0.2308386117219925,
+ "learning_rate": 0.0006,
+ "loss": 3.5196022987365723,
+ "step": 4787
+ },
+ {
+ "epoch": 66.50327653997378,
+ "grad_norm": 0.23467418551445007,
+ "learning_rate": 0.0006,
+ "loss": 3.478280544281006,
+ "step": 4788
+ },
+ {
+ "epoch": 66.51725644386195,
+ "grad_norm": 0.23607908189296722,
+ "learning_rate": 0.0006,
+ "loss": 3.4826481342315674,
+ "step": 4789
+ },
+ {
+ "epoch": 66.53123634775011,
+ "grad_norm": 0.255309522151947,
+ "learning_rate": 0.0006,
+ "loss": 3.498870849609375,
+ "step": 4790
+ },
+ {
+ "epoch": 66.54521625163827,
+ "grad_norm": 0.29246363043785095,
+ "learning_rate": 0.0006,
+ "loss": 3.544440269470215,
+ "step": 4791
+ },
+ {
+ "epoch": 66.55919615552644,
+ "grad_norm": 0.2658552825450897,
+ "learning_rate": 0.0006,
+ "loss": 3.4844512939453125,
+ "step": 4792
+ },
+ {
+ "epoch": 66.57317605941459,
+ "grad_norm": 0.23498542606830597,
+ "learning_rate": 0.0006,
+ "loss": 3.5411434173583984,
+ "step": 4793
+ },
+ {
+ "epoch": 66.58715596330275,
+ "grad_norm": 0.2616438567638397,
+ "learning_rate": 0.0006,
+ "loss": 3.501821994781494,
+ "step": 4794
+ },
+ {
+ "epoch": 66.60113586719092,
+ "grad_norm": 0.2577981650829315,
+ "learning_rate": 0.0006,
+ "loss": 3.519040584564209,
+ "step": 4795
+ },
+ {
+ "epoch": 66.61511577107908,
+ "grad_norm": 0.25896304845809937,
+ "learning_rate": 0.0006,
+ "loss": 3.514458656311035,
+ "step": 4796
+ },
+ {
+ "epoch": 66.62909567496723,
+ "grad_norm": 0.26136472821235657,
+ "learning_rate": 0.0006,
+ "loss": 3.5054283142089844,
+ "step": 4797
+ },
+ {
+ "epoch": 66.6430755788554,
+ "grad_norm": 0.2134191244840622,
+ "learning_rate": 0.0006,
+ "loss": 3.551358222961426,
+ "step": 4798
+ },
+ {
+ "epoch": 66.65705548274356,
+ "grad_norm": 0.20154543220996857,
+ "learning_rate": 0.0006,
+ "loss": 3.5363516807556152,
+ "step": 4799
+ },
+ {
+ "epoch": 66.67103538663171,
+ "grad_norm": 0.20807082951068878,
+ "learning_rate": 0.0006,
+ "loss": 3.4861817359924316,
+ "step": 4800
+ },
+ {
+ "epoch": 66.68501529051987,
+ "grad_norm": 0.22268050909042358,
+ "learning_rate": 0.0006,
+ "loss": 3.5229034423828125,
+ "step": 4801
+ },
+ {
+ "epoch": 66.69899519440804,
+ "grad_norm": 0.21031907200813293,
+ "learning_rate": 0.0006,
+ "loss": 3.499587059020996,
+ "step": 4802
+ },
+ {
+ "epoch": 66.7129750982962,
+ "grad_norm": 0.207321435213089,
+ "learning_rate": 0.0006,
+ "loss": 3.5246481895446777,
+ "step": 4803
+ },
+ {
+ "epoch": 66.72695500218435,
+ "grad_norm": 0.21961352229118347,
+ "learning_rate": 0.0006,
+ "loss": 3.5126147270202637,
+ "step": 4804
+ },
+ {
+ "epoch": 66.74093490607252,
+ "grad_norm": 0.2144167572259903,
+ "learning_rate": 0.0006,
+ "loss": 3.5319013595581055,
+ "step": 4805
+ },
+ {
+ "epoch": 66.75491480996068,
+ "grad_norm": 0.19109441339969635,
+ "learning_rate": 0.0006,
+ "loss": 3.5124895572662354,
+ "step": 4806
+ },
+ {
+ "epoch": 66.76889471384884,
+ "grad_norm": 0.20463025569915771,
+ "learning_rate": 0.0006,
+ "loss": 3.5368666648864746,
+ "step": 4807
+ },
+ {
+ "epoch": 66.78287461773701,
+ "grad_norm": 0.20978771150112152,
+ "learning_rate": 0.0006,
+ "loss": 3.5166687965393066,
+ "step": 4808
+ },
+ {
+ "epoch": 66.79685452162516,
+ "grad_norm": 0.2258925437927246,
+ "learning_rate": 0.0006,
+ "loss": 3.532341957092285,
+ "step": 4809
+ },
+ {
+ "epoch": 66.81083442551332,
+ "grad_norm": 0.21758350729942322,
+ "learning_rate": 0.0006,
+ "loss": 3.5155858993530273,
+ "step": 4810
+ },
+ {
+ "epoch": 66.82481432940149,
+ "grad_norm": 0.20124484598636627,
+ "learning_rate": 0.0006,
+ "loss": 3.491522789001465,
+ "step": 4811
+ },
+ {
+ "epoch": 66.83879423328965,
+ "grad_norm": 0.21627238392829895,
+ "learning_rate": 0.0006,
+ "loss": 3.5303220748901367,
+ "step": 4812
+ },
+ {
+ "epoch": 66.8527741371778,
+ "grad_norm": 0.21125555038452148,
+ "learning_rate": 0.0006,
+ "loss": 3.535466194152832,
+ "step": 4813
+ },
+ {
+ "epoch": 66.86675404106597,
+ "grad_norm": 0.2247028350830078,
+ "learning_rate": 0.0006,
+ "loss": 3.51188325881958,
+ "step": 4814
+ },
+ {
+ "epoch": 66.88073394495413,
+ "grad_norm": 0.21800914406776428,
+ "learning_rate": 0.0006,
+ "loss": 3.5084712505340576,
+ "step": 4815
+ },
+ {
+ "epoch": 66.89471384884229,
+ "grad_norm": 0.2118908166885376,
+ "learning_rate": 0.0006,
+ "loss": 3.5099692344665527,
+ "step": 4816
+ },
+ {
+ "epoch": 66.90869375273044,
+ "grad_norm": 0.22638460993766785,
+ "learning_rate": 0.0006,
+ "loss": 3.5099596977233887,
+ "step": 4817
+ },
+ {
+ "epoch": 66.92267365661861,
+ "grad_norm": 0.1987311840057373,
+ "learning_rate": 0.0006,
+ "loss": 3.5497078895568848,
+ "step": 4818
+ },
+ {
+ "epoch": 66.93665356050677,
+ "grad_norm": 0.21048952639102936,
+ "learning_rate": 0.0006,
+ "loss": 3.524364948272705,
+ "step": 4819
+ },
+ {
+ "epoch": 66.95063346439493,
+ "grad_norm": 0.21481701731681824,
+ "learning_rate": 0.0006,
+ "loss": 3.5121915340423584,
+ "step": 4820
+ },
+ {
+ "epoch": 66.9646133682831,
+ "grad_norm": 0.22060725092887878,
+ "learning_rate": 0.0006,
+ "loss": 3.5288822650909424,
+ "step": 4821
+ },
+ {
+ "epoch": 66.97859327217125,
+ "grad_norm": 0.22192992269992828,
+ "learning_rate": 0.0006,
+ "loss": 3.504401206970215,
+ "step": 4822
+ },
+ {
+ "epoch": 66.99257317605941,
+ "grad_norm": 0.21677598357200623,
+ "learning_rate": 0.0006,
+ "loss": 3.5447967052459717,
+ "step": 4823
+ },
+ {
+ "epoch": 67.0,
+ "grad_norm": 0.24961385130882263,
+ "learning_rate": 0.0006,
+ "loss": 3.4890012741088867,
+ "step": 4824
+ },
+ {
+ "epoch": 67.0,
+ "eval_loss": 3.9784040451049805,
+ "eval_runtime": 45.0843,
+ "eval_samples_per_second": 54.165,
+ "eval_steps_per_second": 3.394,
+ "step": 4824
+ },
+ {
+ "epoch": 67.01397990388816,
+ "grad_norm": 0.22992873191833496,
+ "learning_rate": 0.0006,
+ "loss": 3.470973491668701,
+ "step": 4825
+ },
+ {
+ "epoch": 67.02795980777633,
+ "grad_norm": 0.2189949005842209,
+ "learning_rate": 0.0006,
+ "loss": 3.4956774711608887,
+ "step": 4826
+ },
+ {
+ "epoch": 67.04193971166448,
+ "grad_norm": 0.22506096959114075,
+ "learning_rate": 0.0006,
+ "loss": 3.448911190032959,
+ "step": 4827
+ },
+ {
+ "epoch": 67.05591961555264,
+ "grad_norm": 0.2447187304496765,
+ "learning_rate": 0.0006,
+ "loss": 3.465512275695801,
+ "step": 4828
+ },
+ {
+ "epoch": 67.06989951944081,
+ "grad_norm": 0.27052751183509827,
+ "learning_rate": 0.0006,
+ "loss": 3.493760824203491,
+ "step": 4829
+ },
+ {
+ "epoch": 67.08387942332897,
+ "grad_norm": 0.29693296551704407,
+ "learning_rate": 0.0006,
+ "loss": 3.4922988414764404,
+ "step": 4830
+ },
+ {
+ "epoch": 67.09785932721712,
+ "grad_norm": 0.27461376786231995,
+ "learning_rate": 0.0006,
+ "loss": 3.4782471656799316,
+ "step": 4831
+ },
+ {
+ "epoch": 67.1118392311053,
+ "grad_norm": 0.21409225463867188,
+ "learning_rate": 0.0006,
+ "loss": 3.4636545181274414,
+ "step": 4832
+ },
+ {
+ "epoch": 67.12581913499345,
+ "grad_norm": 0.24362294375896454,
+ "learning_rate": 0.0006,
+ "loss": 3.4836316108703613,
+ "step": 4833
+ },
+ {
+ "epoch": 67.1397990388816,
+ "grad_norm": 0.3237941265106201,
+ "learning_rate": 0.0006,
+ "loss": 3.4853315353393555,
+ "step": 4834
+ },
+ {
+ "epoch": 67.15377894276976,
+ "grad_norm": 0.3138698935508728,
+ "learning_rate": 0.0006,
+ "loss": 3.5045557022094727,
+ "step": 4835
+ },
+ {
+ "epoch": 67.16775884665793,
+ "grad_norm": 0.24102728068828583,
+ "learning_rate": 0.0006,
+ "loss": 3.450237512588501,
+ "step": 4836
+ },
+ {
+ "epoch": 67.18173875054609,
+ "grad_norm": 0.22504228353500366,
+ "learning_rate": 0.0006,
+ "loss": 3.5141711235046387,
+ "step": 4837
+ },
+ {
+ "epoch": 67.19571865443424,
+ "grad_norm": 0.2226196974515915,
+ "learning_rate": 0.0006,
+ "loss": 3.4973597526550293,
+ "step": 4838
+ },
+ {
+ "epoch": 67.20969855832242,
+ "grad_norm": 0.23295332491397858,
+ "learning_rate": 0.0006,
+ "loss": 3.455085277557373,
+ "step": 4839
+ },
+ {
+ "epoch": 67.22367846221057,
+ "grad_norm": 0.24799001216888428,
+ "learning_rate": 0.0006,
+ "loss": 3.5016517639160156,
+ "step": 4840
+ },
+ {
+ "epoch": 67.23765836609873,
+ "grad_norm": 0.2431265115737915,
+ "learning_rate": 0.0006,
+ "loss": 3.5138516426086426,
+ "step": 4841
+ },
+ {
+ "epoch": 67.2516382699869,
+ "grad_norm": 0.22402037680149078,
+ "learning_rate": 0.0006,
+ "loss": 3.5154635906219482,
+ "step": 4842
+ },
+ {
+ "epoch": 67.26561817387505,
+ "grad_norm": 0.2097088098526001,
+ "learning_rate": 0.0006,
+ "loss": 3.512531280517578,
+ "step": 4843
+ },
+ {
+ "epoch": 67.27959807776321,
+ "grad_norm": 0.21303699910640717,
+ "learning_rate": 0.0006,
+ "loss": 3.489511728286743,
+ "step": 4844
+ },
+ {
+ "epoch": 67.29357798165138,
+ "grad_norm": 0.2164260894060135,
+ "learning_rate": 0.0006,
+ "loss": 3.521756172180176,
+ "step": 4845
+ },
+ {
+ "epoch": 67.30755788553954,
+ "grad_norm": 0.2179967612028122,
+ "learning_rate": 0.0006,
+ "loss": 3.4991297721862793,
+ "step": 4846
+ },
+ {
+ "epoch": 67.3215377894277,
+ "grad_norm": 0.21892501413822174,
+ "learning_rate": 0.0006,
+ "loss": 3.475011110305786,
+ "step": 4847
+ },
+ {
+ "epoch": 67.33551769331586,
+ "grad_norm": 0.2372686117887497,
+ "learning_rate": 0.0006,
+ "loss": 3.49537992477417,
+ "step": 4848
+ },
+ {
+ "epoch": 67.34949759720402,
+ "grad_norm": 0.24897949397563934,
+ "learning_rate": 0.0006,
+ "loss": 3.4762938022613525,
+ "step": 4849
+ },
+ {
+ "epoch": 67.36347750109218,
+ "grad_norm": 0.24987933039665222,
+ "learning_rate": 0.0006,
+ "loss": 3.511708974838257,
+ "step": 4850
+ },
+ {
+ "epoch": 67.37745740498035,
+ "grad_norm": 0.24062976241111755,
+ "learning_rate": 0.0006,
+ "loss": 3.4955873489379883,
+ "step": 4851
+ },
+ {
+ "epoch": 67.3914373088685,
+ "grad_norm": 0.2277272790670395,
+ "learning_rate": 0.0006,
+ "loss": 3.5036606788635254,
+ "step": 4852
+ },
+ {
+ "epoch": 67.40541721275666,
+ "grad_norm": 0.23996487259864807,
+ "learning_rate": 0.0006,
+ "loss": 3.515568971633911,
+ "step": 4853
+ },
+ {
+ "epoch": 67.41939711664482,
+ "grad_norm": 0.23224318027496338,
+ "learning_rate": 0.0006,
+ "loss": 3.4915125370025635,
+ "step": 4854
+ },
+ {
+ "epoch": 67.43337702053299,
+ "grad_norm": 0.21011298894882202,
+ "learning_rate": 0.0006,
+ "loss": 3.5076327323913574,
+ "step": 4855
+ },
+ {
+ "epoch": 67.44735692442114,
+ "grad_norm": 0.21975480020046234,
+ "learning_rate": 0.0006,
+ "loss": 3.4929163455963135,
+ "step": 4856
+ },
+ {
+ "epoch": 67.4613368283093,
+ "grad_norm": 0.21966299414634705,
+ "learning_rate": 0.0006,
+ "loss": 3.50154447555542,
+ "step": 4857
+ },
+ {
+ "epoch": 67.47531673219747,
+ "grad_norm": 0.2167058289051056,
+ "learning_rate": 0.0006,
+ "loss": 3.4866533279418945,
+ "step": 4858
+ },
+ {
+ "epoch": 67.48929663608563,
+ "grad_norm": 0.2072296291589737,
+ "learning_rate": 0.0006,
+ "loss": 3.506241798400879,
+ "step": 4859
+ },
+ {
+ "epoch": 67.50327653997378,
+ "grad_norm": 0.2358800321817398,
+ "learning_rate": 0.0006,
+ "loss": 3.51871919631958,
+ "step": 4860
+ },
+ {
+ "epoch": 67.51725644386195,
+ "grad_norm": 0.2841838598251343,
+ "learning_rate": 0.0006,
+ "loss": 3.531181812286377,
+ "step": 4861
+ },
+ {
+ "epoch": 67.53123634775011,
+ "grad_norm": 0.2744826078414917,
+ "learning_rate": 0.0006,
+ "loss": 3.4916810989379883,
+ "step": 4862
+ },
+ {
+ "epoch": 67.54521625163827,
+ "grad_norm": 0.229517862200737,
+ "learning_rate": 0.0006,
+ "loss": 3.522495746612549,
+ "step": 4863
+ },
+ {
+ "epoch": 67.55919615552644,
+ "grad_norm": 0.22933268547058105,
+ "learning_rate": 0.0006,
+ "loss": 3.522249698638916,
+ "step": 4864
+ },
+ {
+ "epoch": 67.57317605941459,
+ "grad_norm": 0.2578641176223755,
+ "learning_rate": 0.0006,
+ "loss": 3.497955799102783,
+ "step": 4865
+ },
+ {
+ "epoch": 67.58715596330275,
+ "grad_norm": 0.26098695397377014,
+ "learning_rate": 0.0006,
+ "loss": 3.508647918701172,
+ "step": 4866
+ },
+ {
+ "epoch": 67.60113586719092,
+ "grad_norm": 0.26429283618927,
+ "learning_rate": 0.0006,
+ "loss": 3.504948139190674,
+ "step": 4867
+ },
+ {
+ "epoch": 67.61511577107908,
+ "grad_norm": 0.2604367136955261,
+ "learning_rate": 0.0006,
+ "loss": 3.529656410217285,
+ "step": 4868
+ },
+ {
+ "epoch": 67.62909567496723,
+ "grad_norm": 0.26351016759872437,
+ "learning_rate": 0.0006,
+ "loss": 3.497729778289795,
+ "step": 4869
+ },
+ {
+ "epoch": 67.6430755788554,
+ "grad_norm": 0.23902031779289246,
+ "learning_rate": 0.0006,
+ "loss": 3.5174601078033447,
+ "step": 4870
+ },
+ {
+ "epoch": 67.65705548274356,
+ "grad_norm": 0.2439061552286148,
+ "learning_rate": 0.0006,
+ "loss": 3.472304344177246,
+ "step": 4871
+ },
+ {
+ "epoch": 67.67103538663171,
+ "grad_norm": 0.28729668259620667,
+ "learning_rate": 0.0006,
+ "loss": 3.4945883750915527,
+ "step": 4872
+ },
+ {
+ "epoch": 67.68501529051987,
+ "grad_norm": 0.2690763771533966,
+ "learning_rate": 0.0006,
+ "loss": 3.524843215942383,
+ "step": 4873
+ },
+ {
+ "epoch": 67.69899519440804,
+ "grad_norm": 0.24424311518669128,
+ "learning_rate": 0.0006,
+ "loss": 3.5337445735931396,
+ "step": 4874
+ },
+ {
+ "epoch": 67.7129750982962,
+ "grad_norm": 0.25736868381500244,
+ "learning_rate": 0.0006,
+ "loss": 3.51664400100708,
+ "step": 4875
+ },
+ {
+ "epoch": 67.72695500218435,
+ "grad_norm": 0.24504248797893524,
+ "learning_rate": 0.0006,
+ "loss": 3.5089268684387207,
+ "step": 4876
+ },
+ {
+ "epoch": 67.74093490607252,
+ "grad_norm": 0.24296091496944427,
+ "learning_rate": 0.0006,
+ "loss": 3.5506460666656494,
+ "step": 4877
+ },
+ {
+ "epoch": 67.75491480996068,
+ "grad_norm": 0.24984019994735718,
+ "learning_rate": 0.0006,
+ "loss": 3.5290684700012207,
+ "step": 4878
+ },
+ {
+ "epoch": 67.76889471384884,
+ "grad_norm": 0.23878677189350128,
+ "learning_rate": 0.0006,
+ "loss": 3.522343635559082,
+ "step": 4879
+ },
+ {
+ "epoch": 67.78287461773701,
+ "grad_norm": 0.2275245040655136,
+ "learning_rate": 0.0006,
+ "loss": 3.5218796730041504,
+ "step": 4880
+ },
+ {
+ "epoch": 67.79685452162516,
+ "grad_norm": 0.21045760810375214,
+ "learning_rate": 0.0006,
+ "loss": 3.512430191040039,
+ "step": 4881
+ },
+ {
+ "epoch": 67.81083442551332,
+ "grad_norm": 0.21902696788311005,
+ "learning_rate": 0.0006,
+ "loss": 3.537611484527588,
+ "step": 4882
+ },
+ {
+ "epoch": 67.82481432940149,
+ "grad_norm": 0.20757564902305603,
+ "learning_rate": 0.0006,
+ "loss": 3.470278263092041,
+ "step": 4883
+ },
+ {
+ "epoch": 67.83879423328965,
+ "grad_norm": 0.22352434694766998,
+ "learning_rate": 0.0006,
+ "loss": 3.4816718101501465,
+ "step": 4884
+ },
+ {
+ "epoch": 67.8527741371778,
+ "grad_norm": 0.20459680259227753,
+ "learning_rate": 0.0006,
+ "loss": 3.508671998977661,
+ "step": 4885
+ },
+ {
+ "epoch": 67.86675404106597,
+ "grad_norm": 0.20641672611236572,
+ "learning_rate": 0.0006,
+ "loss": 3.500471591949463,
+ "step": 4886
+ },
+ {
+ "epoch": 67.88073394495413,
+ "grad_norm": 0.20340596139431,
+ "learning_rate": 0.0006,
+ "loss": 3.5282673835754395,
+ "step": 4887
+ },
+ {
+ "epoch": 67.89471384884229,
+ "grad_norm": 0.20768426358699799,
+ "learning_rate": 0.0006,
+ "loss": 3.528446912765503,
+ "step": 4888
+ },
+ {
+ "epoch": 67.90869375273044,
+ "grad_norm": 0.19998659193515778,
+ "learning_rate": 0.0006,
+ "loss": 3.501742124557495,
+ "step": 4889
+ },
+ {
+ "epoch": 67.92267365661861,
+ "grad_norm": 0.20472751557826996,
+ "learning_rate": 0.0006,
+ "loss": 3.510523796081543,
+ "step": 4890
+ },
+ {
+ "epoch": 67.93665356050677,
+ "grad_norm": 0.21528398990631104,
+ "learning_rate": 0.0006,
+ "loss": 3.529409170150757,
+ "step": 4891
+ },
+ {
+ "epoch": 67.95063346439493,
+ "grad_norm": 0.19671283662319183,
+ "learning_rate": 0.0006,
+ "loss": 3.5512051582336426,
+ "step": 4892
+ },
+ {
+ "epoch": 67.9646133682831,
+ "grad_norm": 0.20629945397377014,
+ "learning_rate": 0.0006,
+ "loss": 3.5127525329589844,
+ "step": 4893
+ },
+ {
+ "epoch": 67.97859327217125,
+ "grad_norm": 0.2121579945087433,
+ "learning_rate": 0.0006,
+ "loss": 3.5242156982421875,
+ "step": 4894
+ },
+ {
+ "epoch": 67.99257317605941,
+ "grad_norm": 0.20770777761936188,
+ "learning_rate": 0.0006,
+ "loss": 3.5094361305236816,
+ "step": 4895
+ },
+ {
+ "epoch": 68.0,
+ "grad_norm": 0.2619984447956085,
+ "learning_rate": 0.0006,
+ "loss": 3.491684675216675,
+ "step": 4896
+ },
+ {
+ "epoch": 68.0,
+ "eval_loss": 3.97202730178833,
+ "eval_runtime": 44.2471,
+ "eval_samples_per_second": 55.19,
+ "eval_steps_per_second": 3.458,
+ "step": 4896
+ },
+ {
+ "epoch": 68.01397990388816,
+ "grad_norm": 0.25237807631492615,
+ "learning_rate": 0.0006,
+ "loss": 3.4720845222473145,
+ "step": 4897
+ },
+ {
+ "epoch": 68.02795980777633,
+ "grad_norm": 0.26686927676200867,
+ "learning_rate": 0.0006,
+ "loss": 3.4825453758239746,
+ "step": 4898
+ },
+ {
+ "epoch": 68.04193971166448,
+ "grad_norm": 0.2826477885246277,
+ "learning_rate": 0.0006,
+ "loss": 3.489805221557617,
+ "step": 4899
+ },
+ {
+ "epoch": 68.05591961555264,
+ "grad_norm": 0.291363000869751,
+ "learning_rate": 0.0006,
+ "loss": 3.464585304260254,
+ "step": 4900
+ },
+ {
+ "epoch": 68.06989951944081,
+ "grad_norm": 0.2645387649536133,
+ "learning_rate": 0.0006,
+ "loss": 3.4891953468322754,
+ "step": 4901
+ },
+ {
+ "epoch": 68.08387942332897,
+ "grad_norm": 0.2398659586906433,
+ "learning_rate": 0.0006,
+ "loss": 3.474371910095215,
+ "step": 4902
+ },
+ {
+ "epoch": 68.09785932721712,
+ "grad_norm": 0.23359309136867523,
+ "learning_rate": 0.0006,
+ "loss": 3.5011367797851562,
+ "step": 4903
+ },
+ {
+ "epoch": 68.1118392311053,
+ "grad_norm": 0.235616534948349,
+ "learning_rate": 0.0006,
+ "loss": 3.472562551498413,
+ "step": 4904
+ },
+ {
+ "epoch": 68.12581913499345,
+ "grad_norm": 0.25396600365638733,
+ "learning_rate": 0.0006,
+ "loss": 3.484182834625244,
+ "step": 4905
+ },
+ {
+ "epoch": 68.1397990388816,
+ "grad_norm": 0.2668958604335785,
+ "learning_rate": 0.0006,
+ "loss": 3.4625918865203857,
+ "step": 4906
+ },
+ {
+ "epoch": 68.15377894276976,
+ "grad_norm": 0.2608959674835205,
+ "learning_rate": 0.0006,
+ "loss": 3.4769415855407715,
+ "step": 4907
+ },
+ {
+ "epoch": 68.16775884665793,
+ "grad_norm": 0.2817389667034149,
+ "learning_rate": 0.0006,
+ "loss": 3.4722979068756104,
+ "step": 4908
+ },
+ {
+ "epoch": 68.18173875054609,
+ "grad_norm": 0.24425546824932098,
+ "learning_rate": 0.0006,
+ "loss": 3.4710354804992676,
+ "step": 4909
+ },
+ {
+ "epoch": 68.19571865443424,
+ "grad_norm": 0.2355373501777649,
+ "learning_rate": 0.0006,
+ "loss": 3.475369453430176,
+ "step": 4910
+ },
+ {
+ "epoch": 68.20969855832242,
+ "grad_norm": 0.23627427220344543,
+ "learning_rate": 0.0006,
+ "loss": 3.50154447555542,
+ "step": 4911
+ },
+ {
+ "epoch": 68.22367846221057,
+ "grad_norm": 0.21174706518650055,
+ "learning_rate": 0.0006,
+ "loss": 3.5018253326416016,
+ "step": 4912
+ },
+ {
+ "epoch": 68.23765836609873,
+ "grad_norm": 0.2101593017578125,
+ "learning_rate": 0.0006,
+ "loss": 3.4931211471557617,
+ "step": 4913
+ },
+ {
+ "epoch": 68.2516382699869,
+ "grad_norm": 0.21808475255966187,
+ "learning_rate": 0.0006,
+ "loss": 3.5047576427459717,
+ "step": 4914
+ },
+ {
+ "epoch": 68.26561817387505,
+ "grad_norm": 0.2354060262441635,
+ "learning_rate": 0.0006,
+ "loss": 3.471801996231079,
+ "step": 4915
+ },
+ {
+ "epoch": 68.27959807776321,
+ "grad_norm": 0.2839724123477936,
+ "learning_rate": 0.0006,
+ "loss": 3.4861397743225098,
+ "step": 4916
+ },
+ {
+ "epoch": 68.29357798165138,
+ "grad_norm": 0.2884398102760315,
+ "learning_rate": 0.0006,
+ "loss": 3.497713088989258,
+ "step": 4917
+ },
+ {
+ "epoch": 68.30755788553954,
+ "grad_norm": 0.24654951691627502,
+ "learning_rate": 0.0006,
+ "loss": 3.4795613288879395,
+ "step": 4918
+ },
+ {
+ "epoch": 68.3215377894277,
+ "grad_norm": 0.22197365760803223,
+ "learning_rate": 0.0006,
+ "loss": 3.495490550994873,
+ "step": 4919
+ },
+ {
+ "epoch": 68.33551769331586,
+ "grad_norm": 0.22666935622692108,
+ "learning_rate": 0.0006,
+ "loss": 3.4859418869018555,
+ "step": 4920
+ },
+ {
+ "epoch": 68.34949759720402,
+ "grad_norm": 0.22135236859321594,
+ "learning_rate": 0.0006,
+ "loss": 3.475436210632324,
+ "step": 4921
+ },
+ {
+ "epoch": 68.36347750109218,
+ "grad_norm": 0.28992167115211487,
+ "learning_rate": 0.0006,
+ "loss": 3.5220274925231934,
+ "step": 4922
+ },
+ {
+ "epoch": 68.37745740498035,
+ "grad_norm": 0.296501100063324,
+ "learning_rate": 0.0006,
+ "loss": 3.4783244132995605,
+ "step": 4923
+ },
+ {
+ "epoch": 68.3914373088685,
+ "grad_norm": 0.24111351370811462,
+ "learning_rate": 0.0006,
+ "loss": 3.4972972869873047,
+ "step": 4924
+ },
+ {
+ "epoch": 68.40541721275666,
+ "grad_norm": 0.22319315373897552,
+ "learning_rate": 0.0006,
+ "loss": 3.517050266265869,
+ "step": 4925
+ },
+ {
+ "epoch": 68.41939711664482,
+ "grad_norm": 0.20984329283237457,
+ "learning_rate": 0.0006,
+ "loss": 3.5097880363464355,
+ "step": 4926
+ },
+ {
+ "epoch": 68.43337702053299,
+ "grad_norm": 0.2221212387084961,
+ "learning_rate": 0.0006,
+ "loss": 3.4824156761169434,
+ "step": 4927
+ },
+ {
+ "epoch": 68.44735692442114,
+ "grad_norm": 0.23731078207492828,
+ "learning_rate": 0.0006,
+ "loss": 3.5319526195526123,
+ "step": 4928
+ },
+ {
+ "epoch": 68.4613368283093,
+ "grad_norm": 0.233421191573143,
+ "learning_rate": 0.0006,
+ "loss": 3.4952187538146973,
+ "step": 4929
+ },
+ {
+ "epoch": 68.47531673219747,
+ "grad_norm": 0.2320558875799179,
+ "learning_rate": 0.0006,
+ "loss": 3.5152385234832764,
+ "step": 4930
+ },
+ {
+ "epoch": 68.48929663608563,
+ "grad_norm": 0.21786290407180786,
+ "learning_rate": 0.0006,
+ "loss": 3.4857373237609863,
+ "step": 4931
+ },
+ {
+ "epoch": 68.50327653997378,
+ "grad_norm": 0.20560047030448914,
+ "learning_rate": 0.0006,
+ "loss": 3.487344264984131,
+ "step": 4932
+ },
+ {
+ "epoch": 68.51725644386195,
+ "grad_norm": 0.2326865941286087,
+ "learning_rate": 0.0006,
+ "loss": 3.5202066898345947,
+ "step": 4933
+ },
+ {
+ "epoch": 68.53123634775011,
+ "grad_norm": 0.2338377833366394,
+ "learning_rate": 0.0006,
+ "loss": 3.4967358112335205,
+ "step": 4934
+ },
+ {
+ "epoch": 68.54521625163827,
+ "grad_norm": 0.22698800265789032,
+ "learning_rate": 0.0006,
+ "loss": 3.484452724456787,
+ "step": 4935
+ },
+ {
+ "epoch": 68.55919615552644,
+ "grad_norm": 0.21141181886196136,
+ "learning_rate": 0.0006,
+ "loss": 3.4950156211853027,
+ "step": 4936
+ },
+ {
+ "epoch": 68.57317605941459,
+ "grad_norm": 0.22393199801445007,
+ "learning_rate": 0.0006,
+ "loss": 3.4950199127197266,
+ "step": 4937
+ },
+ {
+ "epoch": 68.58715596330275,
+ "grad_norm": 0.22276045382022858,
+ "learning_rate": 0.0006,
+ "loss": 3.5180115699768066,
+ "step": 4938
+ },
+ {
+ "epoch": 68.60113586719092,
+ "grad_norm": 0.22738748788833618,
+ "learning_rate": 0.0006,
+ "loss": 3.5053911209106445,
+ "step": 4939
+ },
+ {
+ "epoch": 68.61511577107908,
+ "grad_norm": 0.21496275067329407,
+ "learning_rate": 0.0006,
+ "loss": 3.5315306186676025,
+ "step": 4940
+ },
+ {
+ "epoch": 68.62909567496723,
+ "grad_norm": 0.20695674419403076,
+ "learning_rate": 0.0006,
+ "loss": 3.514780044555664,
+ "step": 4941
+ },
+ {
+ "epoch": 68.6430755788554,
+ "grad_norm": 0.22777840495109558,
+ "learning_rate": 0.0006,
+ "loss": 3.5249099731445312,
+ "step": 4942
+ },
+ {
+ "epoch": 68.65705548274356,
+ "grad_norm": 0.26664453744888306,
+ "learning_rate": 0.0006,
+ "loss": 3.4763400554656982,
+ "step": 4943
+ },
+ {
+ "epoch": 68.67103538663171,
+ "grad_norm": 0.3005792498588562,
+ "learning_rate": 0.0006,
+ "loss": 3.4936861991882324,
+ "step": 4944
+ },
+ {
+ "epoch": 68.68501529051987,
+ "grad_norm": 0.2860395908355713,
+ "learning_rate": 0.0006,
+ "loss": 3.4994754791259766,
+ "step": 4945
+ },
+ {
+ "epoch": 68.69899519440804,
+ "grad_norm": 0.21164822578430176,
+ "learning_rate": 0.0006,
+ "loss": 3.5011136531829834,
+ "step": 4946
+ },
+ {
+ "epoch": 68.7129750982962,
+ "grad_norm": 0.2122834324836731,
+ "learning_rate": 0.0006,
+ "loss": 3.52018404006958,
+ "step": 4947
+ },
+ {
+ "epoch": 68.72695500218435,
+ "grad_norm": 0.23951229453086853,
+ "learning_rate": 0.0006,
+ "loss": 3.4910717010498047,
+ "step": 4948
+ },
+ {
+ "epoch": 68.74093490607252,
+ "grad_norm": 0.22745490074157715,
+ "learning_rate": 0.0006,
+ "loss": 3.5251622200012207,
+ "step": 4949
+ },
+ {
+ "epoch": 68.75491480996068,
+ "grad_norm": 0.21616250276565552,
+ "learning_rate": 0.0006,
+ "loss": 3.4933743476867676,
+ "step": 4950
+ },
+ {
+ "epoch": 68.76889471384884,
+ "grad_norm": 0.2164236605167389,
+ "learning_rate": 0.0006,
+ "loss": 3.513286590576172,
+ "step": 4951
+ },
+ {
+ "epoch": 68.78287461773701,
+ "grad_norm": 0.2450464814901352,
+ "learning_rate": 0.0006,
+ "loss": 3.5084245204925537,
+ "step": 4952
+ },
+ {
+ "epoch": 68.79685452162516,
+ "grad_norm": 0.29221615195274353,
+ "learning_rate": 0.0006,
+ "loss": 3.5463311672210693,
+ "step": 4953
+ },
+ {
+ "epoch": 68.81083442551332,
+ "grad_norm": 0.24574553966522217,
+ "learning_rate": 0.0006,
+ "loss": 3.5099716186523438,
+ "step": 4954
+ },
+ {
+ "epoch": 68.82481432940149,
+ "grad_norm": 0.20879139006137848,
+ "learning_rate": 0.0006,
+ "loss": 3.5220701694488525,
+ "step": 4955
+ },
+ {
+ "epoch": 68.83879423328965,
+ "grad_norm": 0.295693963766098,
+ "learning_rate": 0.0006,
+ "loss": 3.4854037761688232,
+ "step": 4956
+ },
+ {
+ "epoch": 68.8527741371778,
+ "grad_norm": 0.35441911220550537,
+ "learning_rate": 0.0006,
+ "loss": 3.5216379165649414,
+ "step": 4957
+ },
+ {
+ "epoch": 68.86675404106597,
+ "grad_norm": 0.2840341031551361,
+ "learning_rate": 0.0006,
+ "loss": 3.5208358764648438,
+ "step": 4958
+ },
+ {
+ "epoch": 68.88073394495413,
+ "grad_norm": 0.2082499861717224,
+ "learning_rate": 0.0006,
+ "loss": 3.5028862953186035,
+ "step": 4959
+ },
+ {
+ "epoch": 68.89471384884229,
+ "grad_norm": 0.2505369186401367,
+ "learning_rate": 0.0006,
+ "loss": 3.4982357025146484,
+ "step": 4960
+ },
+ {
+ "epoch": 68.90869375273044,
+ "grad_norm": 0.24573875963687897,
+ "learning_rate": 0.0006,
+ "loss": 3.5239524841308594,
+ "step": 4961
+ },
+ {
+ "epoch": 68.92267365661861,
+ "grad_norm": 0.23462185263633728,
+ "learning_rate": 0.0006,
+ "loss": 3.544379234313965,
+ "step": 4962
+ },
+ {
+ "epoch": 68.93665356050677,
+ "grad_norm": 0.26491034030914307,
+ "learning_rate": 0.0006,
+ "loss": 3.518372058868408,
+ "step": 4963
+ },
+ {
+ "epoch": 68.95063346439493,
+ "grad_norm": 0.2729686498641968,
+ "learning_rate": 0.0006,
+ "loss": 3.517185926437378,
+ "step": 4964
+ },
+ {
+ "epoch": 68.9646133682831,
+ "grad_norm": 0.26077502965927124,
+ "learning_rate": 0.0006,
+ "loss": 3.5147576332092285,
+ "step": 4965
+ },
+ {
+ "epoch": 68.97859327217125,
+ "grad_norm": 0.2313229888677597,
+ "learning_rate": 0.0006,
+ "loss": 3.5008926391601562,
+ "step": 4966
+ },
+ {
+ "epoch": 68.99257317605941,
+ "grad_norm": 0.21773307025432587,
+ "learning_rate": 0.0006,
+ "loss": 3.5004096031188965,
+ "step": 4967
+ },
+ {
+ "epoch": 69.0,
+ "grad_norm": 0.2326030433177948,
+ "learning_rate": 0.0006,
+ "loss": 3.5572075843811035,
+ "step": 4968
+ },
+ {
+ "epoch": 69.0,
+ "eval_loss": 3.993666410446167,
+ "eval_runtime": 45.2778,
+ "eval_samples_per_second": 53.934,
+ "eval_steps_per_second": 3.379,
+ "step": 4968
+ },
+ {
+ "epoch": 69.01397990388816,
+ "grad_norm": 0.22886492311954498,
+ "learning_rate": 0.0006,
+ "loss": 3.4994781017303467,
+ "step": 4969
+ },
+ {
+ "epoch": 69.02795980777633,
+ "grad_norm": 0.2972700595855713,
+ "learning_rate": 0.0006,
+ "loss": 3.5022270679473877,
+ "step": 4970
+ },
+ {
+ "epoch": 69.04193971166448,
+ "grad_norm": 0.32146573066711426,
+ "learning_rate": 0.0006,
+ "loss": 3.49113130569458,
+ "step": 4971
+ },
+ {
+ "epoch": 69.05591961555264,
+ "grad_norm": 0.26019641757011414,
+ "learning_rate": 0.0006,
+ "loss": 3.4609522819519043,
+ "step": 4972
+ },
+ {
+ "epoch": 69.06989951944081,
+ "grad_norm": 0.2116279900074005,
+ "learning_rate": 0.0006,
+ "loss": 3.518007278442383,
+ "step": 4973
+ },
+ {
+ "epoch": 69.08387942332897,
+ "grad_norm": 0.24797578155994415,
+ "learning_rate": 0.0006,
+ "loss": 3.465017318725586,
+ "step": 4974
+ },
+ {
+ "epoch": 69.09785932721712,
+ "grad_norm": 0.2988112270832062,
+ "learning_rate": 0.0006,
+ "loss": 3.46774959564209,
+ "step": 4975
+ },
+ {
+ "epoch": 69.1118392311053,
+ "grad_norm": 0.2741694450378418,
+ "learning_rate": 0.0006,
+ "loss": 3.4726247787475586,
+ "step": 4976
+ },
+ {
+ "epoch": 69.12581913499345,
+ "grad_norm": 0.246512308716774,
+ "learning_rate": 0.0006,
+ "loss": 3.4634053707122803,
+ "step": 4977
+ },
+ {
+ "epoch": 69.1397990388816,
+ "grad_norm": 0.25938132405281067,
+ "learning_rate": 0.0006,
+ "loss": 3.4496707916259766,
+ "step": 4978
+ },
+ {
+ "epoch": 69.15377894276976,
+ "grad_norm": 0.30637112259864807,
+ "learning_rate": 0.0006,
+ "loss": 3.4703760147094727,
+ "step": 4979
+ },
+ {
+ "epoch": 69.16775884665793,
+ "grad_norm": 0.26681914925575256,
+ "learning_rate": 0.0006,
+ "loss": 3.50388240814209,
+ "step": 4980
+ },
+ {
+ "epoch": 69.18173875054609,
+ "grad_norm": 0.24075748026371002,
+ "learning_rate": 0.0006,
+ "loss": 3.517247438430786,
+ "step": 4981
+ },
+ {
+ "epoch": 69.19571865443424,
+ "grad_norm": 0.21730124950408936,
+ "learning_rate": 0.0006,
+ "loss": 3.49320650100708,
+ "step": 4982
+ },
+ {
+ "epoch": 69.20969855832242,
+ "grad_norm": 0.21399953961372375,
+ "learning_rate": 0.0006,
+ "loss": 3.4763529300689697,
+ "step": 4983
+ },
+ {
+ "epoch": 69.22367846221057,
+ "grad_norm": 0.22505059838294983,
+ "learning_rate": 0.0006,
+ "loss": 3.4744338989257812,
+ "step": 4984
+ },
+ {
+ "epoch": 69.23765836609873,
+ "grad_norm": 0.23260554671287537,
+ "learning_rate": 0.0006,
+ "loss": 3.469099760055542,
+ "step": 4985
+ },
+ {
+ "epoch": 69.2516382699869,
+ "grad_norm": 0.2212911993265152,
+ "learning_rate": 0.0006,
+ "loss": 3.484243869781494,
+ "step": 4986
+ },
+ {
+ "epoch": 69.26561817387505,
+ "grad_norm": 0.22414085268974304,
+ "learning_rate": 0.0006,
+ "loss": 3.485083818435669,
+ "step": 4987
+ },
+ {
+ "epoch": 69.27959807776321,
+ "grad_norm": 0.2222541719675064,
+ "learning_rate": 0.0006,
+ "loss": 3.4827499389648438,
+ "step": 4988
+ },
+ {
+ "epoch": 69.29357798165138,
+ "grad_norm": 0.23511181771755219,
+ "learning_rate": 0.0006,
+ "loss": 3.4688282012939453,
+ "step": 4989
+ },
+ {
+ "epoch": 69.30755788553954,
+ "grad_norm": 0.23599068820476532,
+ "learning_rate": 0.0006,
+ "loss": 3.498142719268799,
+ "step": 4990
+ },
+ {
+ "epoch": 69.3215377894277,
+ "grad_norm": 0.22533927857875824,
+ "learning_rate": 0.0006,
+ "loss": 3.4815826416015625,
+ "step": 4991
+ },
+ {
+ "epoch": 69.33551769331586,
+ "grad_norm": 0.2343030720949173,
+ "learning_rate": 0.0006,
+ "loss": 3.483752489089966,
+ "step": 4992
+ },
+ {
+ "epoch": 69.34949759720402,
+ "grad_norm": 0.23283112049102783,
+ "learning_rate": 0.0006,
+ "loss": 3.4877965450286865,
+ "step": 4993
+ },
+ {
+ "epoch": 69.36347750109218,
+ "grad_norm": 0.24869517982006073,
+ "learning_rate": 0.0006,
+ "loss": 3.480337142944336,
+ "step": 4994
+ },
+ {
+ "epoch": 69.37745740498035,
+ "grad_norm": 0.22779154777526855,
+ "learning_rate": 0.0006,
+ "loss": 3.4828710556030273,
+ "step": 4995
+ },
+ {
+ "epoch": 69.3914373088685,
+ "grad_norm": 0.22645261883735657,
+ "learning_rate": 0.0006,
+ "loss": 3.509845018386841,
+ "step": 4996
+ },
+ {
+ "epoch": 69.40541721275666,
+ "grad_norm": 0.2432178109884262,
+ "learning_rate": 0.0006,
+ "loss": 3.4617137908935547,
+ "step": 4997
+ },
+ {
+ "epoch": 69.41939711664482,
+ "grad_norm": 0.2587018311023712,
+ "learning_rate": 0.0006,
+ "loss": 3.4713127613067627,
+ "step": 4998
+ },
+ {
+ "epoch": 69.43337702053299,
+ "grad_norm": 0.21907378733158112,
+ "learning_rate": 0.0006,
+ "loss": 3.509188175201416,
+ "step": 4999
+ },
+ {
+ "epoch": 69.44735692442114,
+ "grad_norm": 0.22740772366523743,
+ "learning_rate": 0.0006,
+ "loss": 3.4754276275634766,
+ "step": 5000
+ },
+ {
+ "epoch": 69.4613368283093,
+ "grad_norm": 0.21934257447719574,
+ "learning_rate": 0.0006,
+ "loss": 3.4663891792297363,
+ "step": 5001
+ },
+ {
+ "epoch": 69.47531673219747,
+ "grad_norm": 0.2244742065668106,
+ "learning_rate": 0.0006,
+ "loss": 3.4800233840942383,
+ "step": 5002
+ },
+ {
+ "epoch": 69.48929663608563,
+ "grad_norm": 0.20470912754535675,
+ "learning_rate": 0.0006,
+ "loss": 3.5089359283447266,
+ "step": 5003
+ },
+ {
+ "epoch": 69.50327653997378,
+ "grad_norm": 0.21532751619815826,
+ "learning_rate": 0.0006,
+ "loss": 3.5029287338256836,
+ "step": 5004
+ },
+ {
+ "epoch": 69.51725644386195,
+ "grad_norm": 0.2311217337846756,
+ "learning_rate": 0.0006,
+ "loss": 3.5031962394714355,
+ "step": 5005
+ },
+ {
+ "epoch": 69.53123634775011,
+ "grad_norm": 0.22248436510562897,
+ "learning_rate": 0.0006,
+ "loss": 3.5059356689453125,
+ "step": 5006
+ },
+ {
+ "epoch": 69.54521625163827,
+ "grad_norm": 0.2108408361673355,
+ "learning_rate": 0.0006,
+ "loss": 3.498697280883789,
+ "step": 5007
+ },
+ {
+ "epoch": 69.55919615552644,
+ "grad_norm": 0.22833184897899628,
+ "learning_rate": 0.0006,
+ "loss": 3.505685806274414,
+ "step": 5008
+ },
+ {
+ "epoch": 69.57317605941459,
+ "grad_norm": 0.22630111873149872,
+ "learning_rate": 0.0006,
+ "loss": 3.497771978378296,
+ "step": 5009
+ },
+ {
+ "epoch": 69.58715596330275,
+ "grad_norm": 0.23363569378852844,
+ "learning_rate": 0.0006,
+ "loss": 3.5422916412353516,
+ "step": 5010
+ },
+ {
+ "epoch": 69.60113586719092,
+ "grad_norm": 0.23720940947532654,
+ "learning_rate": 0.0006,
+ "loss": 3.504817008972168,
+ "step": 5011
+ },
+ {
+ "epoch": 69.61511577107908,
+ "grad_norm": 0.22822913527488708,
+ "learning_rate": 0.0006,
+ "loss": 3.51149320602417,
+ "step": 5012
+ },
+ {
+ "epoch": 69.62909567496723,
+ "grad_norm": 0.24143314361572266,
+ "learning_rate": 0.0006,
+ "loss": 3.509063720703125,
+ "step": 5013
+ },
+ {
+ "epoch": 69.6430755788554,
+ "grad_norm": 0.2394775152206421,
+ "learning_rate": 0.0006,
+ "loss": 3.5275425910949707,
+ "step": 5014
+ },
+ {
+ "epoch": 69.65705548274356,
+ "grad_norm": 0.23898433148860931,
+ "learning_rate": 0.0006,
+ "loss": 3.5251870155334473,
+ "step": 5015
+ },
+ {
+ "epoch": 69.67103538663171,
+ "grad_norm": 0.22647695243358612,
+ "learning_rate": 0.0006,
+ "loss": 3.4790940284729004,
+ "step": 5016
+ },
+ {
+ "epoch": 69.68501529051987,
+ "grad_norm": 0.23094546794891357,
+ "learning_rate": 0.0006,
+ "loss": 3.515676975250244,
+ "step": 5017
+ },
+ {
+ "epoch": 69.69899519440804,
+ "grad_norm": 0.21791698038578033,
+ "learning_rate": 0.0006,
+ "loss": 3.4938859939575195,
+ "step": 5018
+ },
+ {
+ "epoch": 69.7129750982962,
+ "grad_norm": 0.2420767843723297,
+ "learning_rate": 0.0006,
+ "loss": 3.489206075668335,
+ "step": 5019
+ },
+ {
+ "epoch": 69.72695500218435,
+ "grad_norm": 0.22724151611328125,
+ "learning_rate": 0.0006,
+ "loss": 3.502804756164551,
+ "step": 5020
+ },
+ {
+ "epoch": 69.74093490607252,
+ "grad_norm": 0.23462660610675812,
+ "learning_rate": 0.0006,
+ "loss": 3.4947867393493652,
+ "step": 5021
+ },
+ {
+ "epoch": 69.75491480996068,
+ "grad_norm": 0.2545832097530365,
+ "learning_rate": 0.0006,
+ "loss": 3.500843048095703,
+ "step": 5022
+ },
+ {
+ "epoch": 69.76889471384884,
+ "grad_norm": 0.26692283153533936,
+ "learning_rate": 0.0006,
+ "loss": 3.5054852962493896,
+ "step": 5023
+ },
+ {
+ "epoch": 69.78287461773701,
+ "grad_norm": 0.22788259387016296,
+ "learning_rate": 0.0006,
+ "loss": 3.5261473655700684,
+ "step": 5024
+ },
+ {
+ "epoch": 69.79685452162516,
+ "grad_norm": 0.24453137814998627,
+ "learning_rate": 0.0006,
+ "loss": 3.5090155601501465,
+ "step": 5025
+ },
+ {
+ "epoch": 69.81083442551332,
+ "grad_norm": 0.27876126766204834,
+ "learning_rate": 0.0006,
+ "loss": 3.5091753005981445,
+ "step": 5026
+ },
+ {
+ "epoch": 69.82481432940149,
+ "grad_norm": 0.280249685049057,
+ "learning_rate": 0.0006,
+ "loss": 3.5129857063293457,
+ "step": 5027
+ },
+ {
+ "epoch": 69.83879423328965,
+ "grad_norm": 0.2260117530822754,
+ "learning_rate": 0.0006,
+ "loss": 3.5320475101470947,
+ "step": 5028
+ },
+ {
+ "epoch": 69.8527741371778,
+ "grad_norm": 0.2237965613603592,
+ "learning_rate": 0.0006,
+ "loss": 3.5061261653900146,
+ "step": 5029
+ },
+ {
+ "epoch": 69.86675404106597,
+ "grad_norm": 0.226779967546463,
+ "learning_rate": 0.0006,
+ "loss": 3.5076608657836914,
+ "step": 5030
+ },
+ {
+ "epoch": 69.88073394495413,
+ "grad_norm": 0.23626334965229034,
+ "learning_rate": 0.0006,
+ "loss": 3.50716495513916,
+ "step": 5031
+ },
+ {
+ "epoch": 69.89471384884229,
+ "grad_norm": 0.2639276385307312,
+ "learning_rate": 0.0006,
+ "loss": 3.5299901962280273,
+ "step": 5032
+ },
+ {
+ "epoch": 69.90869375273044,
+ "grad_norm": 0.23369482159614563,
+ "learning_rate": 0.0006,
+ "loss": 3.5289621353149414,
+ "step": 5033
+ },
+ {
+ "epoch": 69.92267365661861,
+ "grad_norm": 0.23041120171546936,
+ "learning_rate": 0.0006,
+ "loss": 3.5174753665924072,
+ "step": 5034
+ },
+ {
+ "epoch": 69.93665356050677,
+ "grad_norm": 0.21268987655639648,
+ "learning_rate": 0.0006,
+ "loss": 3.506927967071533,
+ "step": 5035
+ },
+ {
+ "epoch": 69.95063346439493,
+ "grad_norm": 0.22524571418762207,
+ "learning_rate": 0.0006,
+ "loss": 3.5054068565368652,
+ "step": 5036
+ },
+ {
+ "epoch": 69.9646133682831,
+ "grad_norm": 0.26068753004074097,
+ "learning_rate": 0.0006,
+ "loss": 3.502107620239258,
+ "step": 5037
+ },
+ {
+ "epoch": 69.97859327217125,
+ "grad_norm": 0.2473640888929367,
+ "learning_rate": 0.0006,
+ "loss": 3.4879817962646484,
+ "step": 5038
+ },
+ {
+ "epoch": 69.99257317605941,
+ "grad_norm": 0.23933477699756622,
+ "learning_rate": 0.0006,
+ "loss": 3.52518892288208,
+ "step": 5039
+ },
+ {
+ "epoch": 70.0,
+ "grad_norm": 0.26498401165008545,
+ "learning_rate": 0.0006,
+ "loss": 3.528074026107788,
+ "step": 5040
+ },
+ {
+ "epoch": 70.0,
+ "eval_loss": 3.9862265586853027,
+ "eval_runtime": 45.1344,
+ "eval_samples_per_second": 54.105,
+ "eval_steps_per_second": 3.39,
+ "step": 5040
+ },
+ {
+ "epoch": 70.01397990388816,
+ "grad_norm": 0.23711830377578735,
+ "learning_rate": 0.0006,
+ "loss": 3.4622411727905273,
+ "step": 5041
+ },
+ {
+ "epoch": 70.02795980777633,
+ "grad_norm": 0.25422438979148865,
+ "learning_rate": 0.0006,
+ "loss": 3.4546890258789062,
+ "step": 5042
+ },
+ {
+ "epoch": 70.04193971166448,
+ "grad_norm": 0.2520093619823456,
+ "learning_rate": 0.0006,
+ "loss": 3.4625046253204346,
+ "step": 5043
+ },
+ {
+ "epoch": 70.05591961555264,
+ "grad_norm": 0.23353877663612366,
+ "learning_rate": 0.0006,
+ "loss": 3.5090699195861816,
+ "step": 5044
+ },
+ {
+ "epoch": 70.06989951944081,
+ "grad_norm": 0.2775326669216156,
+ "learning_rate": 0.0006,
+ "loss": 3.4860758781433105,
+ "step": 5045
+ },
+ {
+ "epoch": 70.08387942332897,
+ "grad_norm": 0.297573447227478,
+ "learning_rate": 0.0006,
+ "loss": 3.5181596279144287,
+ "step": 5046
+ },
+ {
+ "epoch": 70.09785932721712,
+ "grad_norm": 0.29662513732910156,
+ "learning_rate": 0.0006,
+ "loss": 3.4715771675109863,
+ "step": 5047
+ },
+ {
+ "epoch": 70.1118392311053,
+ "grad_norm": 0.2619902193546295,
+ "learning_rate": 0.0006,
+ "loss": 3.430412769317627,
+ "step": 5048
+ },
+ {
+ "epoch": 70.12581913499345,
+ "grad_norm": 0.21740001440048218,
+ "learning_rate": 0.0006,
+ "loss": 3.473442792892456,
+ "step": 5049
+ },
+ {
+ "epoch": 70.1397990388816,
+ "grad_norm": 0.221281036734581,
+ "learning_rate": 0.0006,
+ "loss": 3.4651594161987305,
+ "step": 5050
+ },
+ {
+ "epoch": 70.15377894276976,
+ "grad_norm": 0.21638400852680206,
+ "learning_rate": 0.0006,
+ "loss": 3.475860118865967,
+ "step": 5051
+ },
+ {
+ "epoch": 70.16775884665793,
+ "grad_norm": 0.21825452148914337,
+ "learning_rate": 0.0006,
+ "loss": 3.467684268951416,
+ "step": 5052
+ },
+ {
+ "epoch": 70.18173875054609,
+ "grad_norm": 0.22535094618797302,
+ "learning_rate": 0.0006,
+ "loss": 3.4543721675872803,
+ "step": 5053
+ },
+ {
+ "epoch": 70.19571865443424,
+ "grad_norm": 0.22751732170581818,
+ "learning_rate": 0.0006,
+ "loss": 3.480132818222046,
+ "step": 5054
+ },
+ {
+ "epoch": 70.20969855832242,
+ "grad_norm": 0.21935929358005524,
+ "learning_rate": 0.0006,
+ "loss": 3.4883337020874023,
+ "step": 5055
+ },
+ {
+ "epoch": 70.22367846221057,
+ "grad_norm": 0.2164992392063141,
+ "learning_rate": 0.0006,
+ "loss": 3.4758238792419434,
+ "step": 5056
+ },
+ {
+ "epoch": 70.23765836609873,
+ "grad_norm": 0.2284509837627411,
+ "learning_rate": 0.0006,
+ "loss": 3.4639101028442383,
+ "step": 5057
+ },
+ {
+ "epoch": 70.2516382699869,
+ "grad_norm": 0.2616494297981262,
+ "learning_rate": 0.0006,
+ "loss": 3.4850382804870605,
+ "step": 5058
+ },
+ {
+ "epoch": 70.26561817387505,
+ "grad_norm": 0.25582870841026306,
+ "learning_rate": 0.0006,
+ "loss": 3.4912681579589844,
+ "step": 5059
+ },
+ {
+ "epoch": 70.27959807776321,
+ "grad_norm": 0.23707713186740875,
+ "learning_rate": 0.0006,
+ "loss": 3.493809700012207,
+ "step": 5060
+ },
+ {
+ "epoch": 70.29357798165138,
+ "grad_norm": 0.233265221118927,
+ "learning_rate": 0.0006,
+ "loss": 3.5143074989318848,
+ "step": 5061
+ },
+ {
+ "epoch": 70.30755788553954,
+ "grad_norm": 0.2607567012310028,
+ "learning_rate": 0.0006,
+ "loss": 3.5042223930358887,
+ "step": 5062
+ },
+ {
+ "epoch": 70.3215377894277,
+ "grad_norm": 0.21082724630832672,
+ "learning_rate": 0.0006,
+ "loss": 3.493569850921631,
+ "step": 5063
+ },
+ {
+ "epoch": 70.33551769331586,
+ "grad_norm": 0.2609533369541168,
+ "learning_rate": 0.0006,
+ "loss": 3.503533363342285,
+ "step": 5064
+ },
+ {
+ "epoch": 70.34949759720402,
+ "grad_norm": 0.2863939702510834,
+ "learning_rate": 0.0006,
+ "loss": 3.465226173400879,
+ "step": 5065
+ },
+ {
+ "epoch": 70.36347750109218,
+ "grad_norm": 0.26796457171440125,
+ "learning_rate": 0.0006,
+ "loss": 3.517176866531372,
+ "step": 5066
+ },
+ {
+ "epoch": 70.37745740498035,
+ "grad_norm": 0.2766019105911255,
+ "learning_rate": 0.0006,
+ "loss": 3.5126867294311523,
+ "step": 5067
+ },
+ {
+ "epoch": 70.3914373088685,
+ "grad_norm": 0.24560758471488953,
+ "learning_rate": 0.0006,
+ "loss": 3.515030860900879,
+ "step": 5068
+ },
+ {
+ "epoch": 70.40541721275666,
+ "grad_norm": 0.20993568003177643,
+ "learning_rate": 0.0006,
+ "loss": 3.4899773597717285,
+ "step": 5069
+ },
+ {
+ "epoch": 70.41939711664482,
+ "grad_norm": 0.20855914056301117,
+ "learning_rate": 0.0006,
+ "loss": 3.4906468391418457,
+ "step": 5070
+ },
+ {
+ "epoch": 70.43337702053299,
+ "grad_norm": 0.2210836559534073,
+ "learning_rate": 0.0006,
+ "loss": 3.482866048812866,
+ "step": 5071
+ },
+ {
+ "epoch": 70.44735692442114,
+ "grad_norm": 0.2210542857646942,
+ "learning_rate": 0.0006,
+ "loss": 3.501636028289795,
+ "step": 5072
+ },
+ {
+ "epoch": 70.4613368283093,
+ "grad_norm": 0.21207138895988464,
+ "learning_rate": 0.0006,
+ "loss": 3.519104242324829,
+ "step": 5073
+ },
+ {
+ "epoch": 70.47531673219747,
+ "grad_norm": 0.19901272654533386,
+ "learning_rate": 0.0006,
+ "loss": 3.486097574234009,
+ "step": 5074
+ },
+ {
+ "epoch": 70.48929663608563,
+ "grad_norm": 0.21536870300769806,
+ "learning_rate": 0.0006,
+ "loss": 3.476889133453369,
+ "step": 5075
+ },
+ {
+ "epoch": 70.50327653997378,
+ "grad_norm": 0.22002893686294556,
+ "learning_rate": 0.0006,
+ "loss": 3.5007381439208984,
+ "step": 5076
+ },
+ {
+ "epoch": 70.51725644386195,
+ "grad_norm": 0.20761331915855408,
+ "learning_rate": 0.0006,
+ "loss": 3.4693777561187744,
+ "step": 5077
+ },
+ {
+ "epoch": 70.53123634775011,
+ "grad_norm": 0.2145029455423355,
+ "learning_rate": 0.0006,
+ "loss": 3.438809871673584,
+ "step": 5078
+ },
+ {
+ "epoch": 70.54521625163827,
+ "grad_norm": 0.1961168795824051,
+ "learning_rate": 0.0006,
+ "loss": 3.4975242614746094,
+ "step": 5079
+ },
+ {
+ "epoch": 70.55919615552644,
+ "grad_norm": 0.20411522686481476,
+ "learning_rate": 0.0006,
+ "loss": 3.4908413887023926,
+ "step": 5080
+ },
+ {
+ "epoch": 70.57317605941459,
+ "grad_norm": 0.22646412253379822,
+ "learning_rate": 0.0006,
+ "loss": 3.4542629718780518,
+ "step": 5081
+ },
+ {
+ "epoch": 70.58715596330275,
+ "grad_norm": 0.2181357741355896,
+ "learning_rate": 0.0006,
+ "loss": 3.522963047027588,
+ "step": 5082
+ },
+ {
+ "epoch": 70.60113586719092,
+ "grad_norm": 0.23564083874225616,
+ "learning_rate": 0.0006,
+ "loss": 3.475222110748291,
+ "step": 5083
+ },
+ {
+ "epoch": 70.61511577107908,
+ "grad_norm": 0.22964410483837128,
+ "learning_rate": 0.0006,
+ "loss": 3.517993927001953,
+ "step": 5084
+ },
+ {
+ "epoch": 70.62909567496723,
+ "grad_norm": 0.20958925783634186,
+ "learning_rate": 0.0006,
+ "loss": 3.4651894569396973,
+ "step": 5085
+ },
+ {
+ "epoch": 70.6430755788554,
+ "grad_norm": 0.19693933427333832,
+ "learning_rate": 0.0006,
+ "loss": 3.4992640018463135,
+ "step": 5086
+ },
+ {
+ "epoch": 70.65705548274356,
+ "grad_norm": 0.22487083077430725,
+ "learning_rate": 0.0006,
+ "loss": 3.502739906311035,
+ "step": 5087
+ },
+ {
+ "epoch": 70.67103538663171,
+ "grad_norm": 0.22145701944828033,
+ "learning_rate": 0.0006,
+ "loss": 3.4855666160583496,
+ "step": 5088
+ },
+ {
+ "epoch": 70.68501529051987,
+ "grad_norm": 0.2145165652036667,
+ "learning_rate": 0.0006,
+ "loss": 3.5234193801879883,
+ "step": 5089
+ },
+ {
+ "epoch": 70.69899519440804,
+ "grad_norm": 0.2453656941652298,
+ "learning_rate": 0.0006,
+ "loss": 3.497983932495117,
+ "step": 5090
+ },
+ {
+ "epoch": 70.7129750982962,
+ "grad_norm": 0.2324638068675995,
+ "learning_rate": 0.0006,
+ "loss": 3.487849712371826,
+ "step": 5091
+ },
+ {
+ "epoch": 70.72695500218435,
+ "grad_norm": 0.2176654040813446,
+ "learning_rate": 0.0006,
+ "loss": 3.496427059173584,
+ "step": 5092
+ },
+ {
+ "epoch": 70.74093490607252,
+ "grad_norm": 0.20912162959575653,
+ "learning_rate": 0.0006,
+ "loss": 3.4953227043151855,
+ "step": 5093
+ },
+ {
+ "epoch": 70.75491480996068,
+ "grad_norm": 0.1988947093486786,
+ "learning_rate": 0.0006,
+ "loss": 3.4566853046417236,
+ "step": 5094
+ },
+ {
+ "epoch": 70.76889471384884,
+ "grad_norm": 0.23707804083824158,
+ "learning_rate": 0.0006,
+ "loss": 3.5447797775268555,
+ "step": 5095
+ },
+ {
+ "epoch": 70.78287461773701,
+ "grad_norm": 0.24296057224273682,
+ "learning_rate": 0.0006,
+ "loss": 3.5124454498291016,
+ "step": 5096
+ },
+ {
+ "epoch": 70.79685452162516,
+ "grad_norm": 0.21297545731067657,
+ "learning_rate": 0.0006,
+ "loss": 3.5096077919006348,
+ "step": 5097
+ },
+ {
+ "epoch": 70.81083442551332,
+ "grad_norm": 0.20642022788524628,
+ "learning_rate": 0.0006,
+ "loss": 3.5008912086486816,
+ "step": 5098
+ },
+ {
+ "epoch": 70.82481432940149,
+ "grad_norm": 0.2428225725889206,
+ "learning_rate": 0.0006,
+ "loss": 3.511782169342041,
+ "step": 5099
+ },
+ {
+ "epoch": 70.83879423328965,
+ "grad_norm": 0.2369006872177124,
+ "learning_rate": 0.0006,
+ "loss": 3.5016889572143555,
+ "step": 5100
+ },
+ {
+ "epoch": 70.8527741371778,
+ "grad_norm": 0.2299226075410843,
+ "learning_rate": 0.0006,
+ "loss": 3.5024492740631104,
+ "step": 5101
+ },
+ {
+ "epoch": 70.86675404106597,
+ "grad_norm": 0.2069583684206009,
+ "learning_rate": 0.0006,
+ "loss": 3.5401811599731445,
+ "step": 5102
+ },
+ {
+ "epoch": 70.88073394495413,
+ "grad_norm": 0.21548444032669067,
+ "learning_rate": 0.0006,
+ "loss": 3.506899833679199,
+ "step": 5103
+ },
+ {
+ "epoch": 70.89471384884229,
+ "grad_norm": 0.24152785539627075,
+ "learning_rate": 0.0006,
+ "loss": 3.517747163772583,
+ "step": 5104
+ },
+ {
+ "epoch": 70.90869375273044,
+ "grad_norm": 0.2301841676235199,
+ "learning_rate": 0.0006,
+ "loss": 3.4825563430786133,
+ "step": 5105
+ },
+ {
+ "epoch": 70.92267365661861,
+ "grad_norm": 0.20378732681274414,
+ "learning_rate": 0.0006,
+ "loss": 3.51491641998291,
+ "step": 5106
+ },
+ {
+ "epoch": 70.93665356050677,
+ "grad_norm": 0.23954246938228607,
+ "learning_rate": 0.0006,
+ "loss": 3.505157709121704,
+ "step": 5107
+ },
+ {
+ "epoch": 70.95063346439493,
+ "grad_norm": 0.24072174727916718,
+ "learning_rate": 0.0006,
+ "loss": 3.5006208419799805,
+ "step": 5108
+ },
+ {
+ "epoch": 70.9646133682831,
+ "grad_norm": 0.2187308371067047,
+ "learning_rate": 0.0006,
+ "loss": 3.5031535625457764,
+ "step": 5109
+ },
+ {
+ "epoch": 70.97859327217125,
+ "grad_norm": 0.22237645089626312,
+ "learning_rate": 0.0006,
+ "loss": 3.5143189430236816,
+ "step": 5110
+ },
+ {
+ "epoch": 70.99257317605941,
+ "grad_norm": 0.22169137001037598,
+ "learning_rate": 0.0006,
+ "loss": 3.4963934421539307,
+ "step": 5111
+ },
+ {
+ "epoch": 71.0,
+ "grad_norm": 0.257404088973999,
+ "learning_rate": 0.0006,
+ "loss": 3.5386219024658203,
+ "step": 5112
+ },
+ {
+ "epoch": 71.0,
+ "eval_loss": 3.9918019771575928,
+ "eval_runtime": 46.6377,
+ "eval_samples_per_second": 52.361,
+ "eval_steps_per_second": 3.281,
+ "step": 5112
+ },
+ {
+ "epoch": 71.01397990388816,
+ "grad_norm": 0.22763817012310028,
+ "learning_rate": 0.0006,
+ "loss": 3.4723024368286133,
+ "step": 5113
+ },
+ {
+ "epoch": 71.02795980777633,
+ "grad_norm": 0.22345447540283203,
+ "learning_rate": 0.0006,
+ "loss": 3.491352081298828,
+ "step": 5114
+ },
+ {
+ "epoch": 71.04193971166448,
+ "grad_norm": 0.28975343704223633,
+ "learning_rate": 0.0006,
+ "loss": 3.474012851715088,
+ "step": 5115
+ },
+ {
+ "epoch": 71.05591961555264,
+ "grad_norm": 0.34715282917022705,
+ "learning_rate": 0.0006,
+ "loss": 3.460543155670166,
+ "step": 5116
+ },
+ {
+ "epoch": 71.06989951944081,
+ "grad_norm": 0.3298324942588806,
+ "learning_rate": 0.0006,
+ "loss": 3.481487512588501,
+ "step": 5117
+ },
+ {
+ "epoch": 71.08387942332897,
+ "grad_norm": 0.25802168250083923,
+ "learning_rate": 0.0006,
+ "loss": 3.472047805786133,
+ "step": 5118
+ },
+ {
+ "epoch": 71.09785932721712,
+ "grad_norm": 0.27691733837127686,
+ "learning_rate": 0.0006,
+ "loss": 3.471902847290039,
+ "step": 5119
+ },
+ {
+ "epoch": 71.1118392311053,
+ "grad_norm": 0.3614637851715088,
+ "learning_rate": 0.0006,
+ "loss": 3.482367992401123,
+ "step": 5120
+ },
+ {
+ "epoch": 71.12581913499345,
+ "grad_norm": 0.3808763027191162,
+ "learning_rate": 0.0006,
+ "loss": 3.468003273010254,
+ "step": 5121
+ },
+ {
+ "epoch": 71.1397990388816,
+ "grad_norm": 0.30960485339164734,
+ "learning_rate": 0.0006,
+ "loss": 3.4756040573120117,
+ "step": 5122
+ },
+ {
+ "epoch": 71.15377894276976,
+ "grad_norm": 0.23345506191253662,
+ "learning_rate": 0.0006,
+ "loss": 3.4682583808898926,
+ "step": 5123
+ },
+ {
+ "epoch": 71.16775884665793,
+ "grad_norm": 0.23517020046710968,
+ "learning_rate": 0.0006,
+ "loss": 3.481360912322998,
+ "step": 5124
+ },
+ {
+ "epoch": 71.18173875054609,
+ "grad_norm": 0.23654034733772278,
+ "learning_rate": 0.0006,
+ "loss": 3.4833765029907227,
+ "step": 5125
+ },
+ {
+ "epoch": 71.19571865443424,
+ "grad_norm": 0.2085893303155899,
+ "learning_rate": 0.0006,
+ "loss": 3.486340045928955,
+ "step": 5126
+ },
+ {
+ "epoch": 71.20969855832242,
+ "grad_norm": 0.23823733627796173,
+ "learning_rate": 0.0006,
+ "loss": 3.477477550506592,
+ "step": 5127
+ },
+ {
+ "epoch": 71.22367846221057,
+ "grad_norm": 0.2195197194814682,
+ "learning_rate": 0.0006,
+ "loss": 3.4914462566375732,
+ "step": 5128
+ },
+ {
+ "epoch": 71.23765836609873,
+ "grad_norm": 0.20015183091163635,
+ "learning_rate": 0.0006,
+ "loss": 3.4731597900390625,
+ "step": 5129
+ },
+ {
+ "epoch": 71.2516382699869,
+ "grad_norm": 0.22865013778209686,
+ "learning_rate": 0.0006,
+ "loss": 3.474112033843994,
+ "step": 5130
+ },
+ {
+ "epoch": 71.26561817387505,
+ "grad_norm": 0.23216912150382996,
+ "learning_rate": 0.0006,
+ "loss": 3.4641566276550293,
+ "step": 5131
+ },
+ {
+ "epoch": 71.27959807776321,
+ "grad_norm": 0.229189932346344,
+ "learning_rate": 0.0006,
+ "loss": 3.499788999557495,
+ "step": 5132
+ },
+ {
+ "epoch": 71.29357798165138,
+ "grad_norm": 0.21727289259433746,
+ "learning_rate": 0.0006,
+ "loss": 3.4823837280273438,
+ "step": 5133
+ },
+ {
+ "epoch": 71.30755788553954,
+ "grad_norm": 0.21023842692375183,
+ "learning_rate": 0.0006,
+ "loss": 3.4864656925201416,
+ "step": 5134
+ },
+ {
+ "epoch": 71.3215377894277,
+ "grad_norm": 0.2303229570388794,
+ "learning_rate": 0.0006,
+ "loss": 3.4989194869995117,
+ "step": 5135
+ },
+ {
+ "epoch": 71.33551769331586,
+ "grad_norm": 0.2317735254764557,
+ "learning_rate": 0.0006,
+ "loss": 3.460954189300537,
+ "step": 5136
+ },
+ {
+ "epoch": 71.34949759720402,
+ "grad_norm": 0.22612634301185608,
+ "learning_rate": 0.0006,
+ "loss": 3.5102381706237793,
+ "step": 5137
+ },
+ {
+ "epoch": 71.36347750109218,
+ "grad_norm": 0.23815463483333588,
+ "learning_rate": 0.0006,
+ "loss": 3.446244239807129,
+ "step": 5138
+ },
+ {
+ "epoch": 71.37745740498035,
+ "grad_norm": 0.22914297878742218,
+ "learning_rate": 0.0006,
+ "loss": 3.4789650440216064,
+ "step": 5139
+ },
+ {
+ "epoch": 71.3914373088685,
+ "grad_norm": 0.22563296556472778,
+ "learning_rate": 0.0006,
+ "loss": 3.490419864654541,
+ "step": 5140
+ },
+ {
+ "epoch": 71.40541721275666,
+ "grad_norm": 0.21704672276973724,
+ "learning_rate": 0.0006,
+ "loss": 3.503981113433838,
+ "step": 5141
+ },
+ {
+ "epoch": 71.41939711664482,
+ "grad_norm": 0.2196325659751892,
+ "learning_rate": 0.0006,
+ "loss": 3.4878809452056885,
+ "step": 5142
+ },
+ {
+ "epoch": 71.43337702053299,
+ "grad_norm": 0.21130836009979248,
+ "learning_rate": 0.0006,
+ "loss": 3.4546194076538086,
+ "step": 5143
+ },
+ {
+ "epoch": 71.44735692442114,
+ "grad_norm": 0.21542105078697205,
+ "learning_rate": 0.0006,
+ "loss": 3.4721519947052,
+ "step": 5144
+ },
+ {
+ "epoch": 71.4613368283093,
+ "grad_norm": 0.22387142479419708,
+ "learning_rate": 0.0006,
+ "loss": 3.4667282104492188,
+ "step": 5145
+ },
+ {
+ "epoch": 71.47531673219747,
+ "grad_norm": 0.23259611427783966,
+ "learning_rate": 0.0006,
+ "loss": 3.467545986175537,
+ "step": 5146
+ },
+ {
+ "epoch": 71.48929663608563,
+ "grad_norm": 0.2771410644054413,
+ "learning_rate": 0.0006,
+ "loss": 3.4783425331115723,
+ "step": 5147
+ },
+ {
+ "epoch": 71.50327653997378,
+ "grad_norm": 0.29756635427474976,
+ "learning_rate": 0.0006,
+ "loss": 3.492600440979004,
+ "step": 5148
+ },
+ {
+ "epoch": 71.51725644386195,
+ "grad_norm": 0.26306024193763733,
+ "learning_rate": 0.0006,
+ "loss": 3.510770559310913,
+ "step": 5149
+ },
+ {
+ "epoch": 71.53123634775011,
+ "grad_norm": 0.20751827955245972,
+ "learning_rate": 0.0006,
+ "loss": 3.466935634613037,
+ "step": 5150
+ },
+ {
+ "epoch": 71.54521625163827,
+ "grad_norm": 0.21394366025924683,
+ "learning_rate": 0.0006,
+ "loss": 3.436068058013916,
+ "step": 5151
+ },
+ {
+ "epoch": 71.55919615552644,
+ "grad_norm": 0.25711846351623535,
+ "learning_rate": 0.0006,
+ "loss": 3.484564781188965,
+ "step": 5152
+ },
+ {
+ "epoch": 71.57317605941459,
+ "grad_norm": 0.29579317569732666,
+ "learning_rate": 0.0006,
+ "loss": 3.4905800819396973,
+ "step": 5153
+ },
+ {
+ "epoch": 71.58715596330275,
+ "grad_norm": 0.3033061921596527,
+ "learning_rate": 0.0006,
+ "loss": 3.508679151535034,
+ "step": 5154
+ },
+ {
+ "epoch": 71.60113586719092,
+ "grad_norm": 0.2520291805267334,
+ "learning_rate": 0.0006,
+ "loss": 3.5057215690612793,
+ "step": 5155
+ },
+ {
+ "epoch": 71.61511577107908,
+ "grad_norm": 0.226261705160141,
+ "learning_rate": 0.0006,
+ "loss": 3.5037670135498047,
+ "step": 5156
+ },
+ {
+ "epoch": 71.62909567496723,
+ "grad_norm": 0.20596027374267578,
+ "learning_rate": 0.0006,
+ "loss": 3.495021343231201,
+ "step": 5157
+ },
+ {
+ "epoch": 71.6430755788554,
+ "grad_norm": 0.20619751513004303,
+ "learning_rate": 0.0006,
+ "loss": 3.4958693981170654,
+ "step": 5158
+ },
+ {
+ "epoch": 71.65705548274356,
+ "grad_norm": 0.24510066211223602,
+ "learning_rate": 0.0006,
+ "loss": 3.5301260948181152,
+ "step": 5159
+ },
+ {
+ "epoch": 71.67103538663171,
+ "grad_norm": 0.26109805703163147,
+ "learning_rate": 0.0006,
+ "loss": 3.5022244453430176,
+ "step": 5160
+ },
+ {
+ "epoch": 71.68501529051987,
+ "grad_norm": 0.28911513090133667,
+ "learning_rate": 0.0006,
+ "loss": 3.488947868347168,
+ "step": 5161
+ },
+ {
+ "epoch": 71.69899519440804,
+ "grad_norm": 0.2741655111312866,
+ "learning_rate": 0.0006,
+ "loss": 3.4888229370117188,
+ "step": 5162
+ },
+ {
+ "epoch": 71.7129750982962,
+ "grad_norm": 0.2789880633354187,
+ "learning_rate": 0.0006,
+ "loss": 3.4911744594573975,
+ "step": 5163
+ },
+ {
+ "epoch": 71.72695500218435,
+ "grad_norm": 0.23872195184230804,
+ "learning_rate": 0.0006,
+ "loss": 3.5175111293792725,
+ "step": 5164
+ },
+ {
+ "epoch": 71.74093490607252,
+ "grad_norm": 0.23090124130249023,
+ "learning_rate": 0.0006,
+ "loss": 3.477285861968994,
+ "step": 5165
+ },
+ {
+ "epoch": 71.75491480996068,
+ "grad_norm": 0.25918251276016235,
+ "learning_rate": 0.0006,
+ "loss": 3.5374622344970703,
+ "step": 5166
+ },
+ {
+ "epoch": 71.76889471384884,
+ "grad_norm": 0.28394266963005066,
+ "learning_rate": 0.0006,
+ "loss": 3.505443572998047,
+ "step": 5167
+ },
+ {
+ "epoch": 71.78287461773701,
+ "grad_norm": 0.29756471514701843,
+ "learning_rate": 0.0006,
+ "loss": 3.4858479499816895,
+ "step": 5168
+ },
+ {
+ "epoch": 71.79685452162516,
+ "grad_norm": 0.2913147211074829,
+ "learning_rate": 0.0006,
+ "loss": 3.4602723121643066,
+ "step": 5169
+ },
+ {
+ "epoch": 71.81083442551332,
+ "grad_norm": 0.23923781514167786,
+ "learning_rate": 0.0006,
+ "loss": 3.4713358879089355,
+ "step": 5170
+ },
+ {
+ "epoch": 71.82481432940149,
+ "grad_norm": 0.23478655517101288,
+ "learning_rate": 0.0006,
+ "loss": 3.4848878383636475,
+ "step": 5171
+ },
+ {
+ "epoch": 71.83879423328965,
+ "grad_norm": 0.2668255865573883,
+ "learning_rate": 0.0006,
+ "loss": 3.507920742034912,
+ "step": 5172
+ },
+ {
+ "epoch": 71.8527741371778,
+ "grad_norm": 0.2818165719509125,
+ "learning_rate": 0.0006,
+ "loss": 3.5128116607666016,
+ "step": 5173
+ },
+ {
+ "epoch": 71.86675404106597,
+ "grad_norm": 0.22830909490585327,
+ "learning_rate": 0.0006,
+ "loss": 3.4789090156555176,
+ "step": 5174
+ },
+ {
+ "epoch": 71.88073394495413,
+ "grad_norm": 0.2291419357061386,
+ "learning_rate": 0.0006,
+ "loss": 3.4977774620056152,
+ "step": 5175
+ },
+ {
+ "epoch": 71.89471384884229,
+ "grad_norm": 0.22237083315849304,
+ "learning_rate": 0.0006,
+ "loss": 3.5563011169433594,
+ "step": 5176
+ },
+ {
+ "epoch": 71.90869375273044,
+ "grad_norm": 0.2287488579750061,
+ "learning_rate": 0.0006,
+ "loss": 3.515289783477783,
+ "step": 5177
+ },
+ {
+ "epoch": 71.92267365661861,
+ "grad_norm": 0.21992293000221252,
+ "learning_rate": 0.0006,
+ "loss": 3.5213077068328857,
+ "step": 5178
+ },
+ {
+ "epoch": 71.93665356050677,
+ "grad_norm": 0.21338967978954315,
+ "learning_rate": 0.0006,
+ "loss": 3.5168190002441406,
+ "step": 5179
+ },
+ {
+ "epoch": 71.95063346439493,
+ "grad_norm": 0.2198970913887024,
+ "learning_rate": 0.0006,
+ "loss": 3.517268180847168,
+ "step": 5180
+ },
+ {
+ "epoch": 71.9646133682831,
+ "grad_norm": 0.2309885025024414,
+ "learning_rate": 0.0006,
+ "loss": 3.5538675785064697,
+ "step": 5181
+ },
+ {
+ "epoch": 71.97859327217125,
+ "grad_norm": 0.23529282212257385,
+ "learning_rate": 0.0006,
+ "loss": 3.477951765060425,
+ "step": 5182
+ },
+ {
+ "epoch": 71.99257317605941,
+ "grad_norm": 0.2553477883338928,
+ "learning_rate": 0.0006,
+ "loss": 3.502894878387451,
+ "step": 5183
+ },
+ {
+ "epoch": 72.0,
+ "grad_norm": 0.2943936288356781,
+ "learning_rate": 0.0006,
+ "loss": 3.5049710273742676,
+ "step": 5184
+ },
+ {
+ "epoch": 72.0,
+ "eval_loss": 3.9860572814941406,
+ "eval_runtime": 46.9591,
+ "eval_samples_per_second": 52.003,
+ "eval_steps_per_second": 3.258,
+ "step": 5184
+ },
+ {
+ "epoch": 72.01397990388816,
+ "grad_norm": 0.25285470485687256,
+ "learning_rate": 0.0006,
+ "loss": 3.4515252113342285,
+ "step": 5185
+ },
+ {
+ "epoch": 72.02795980777633,
+ "grad_norm": 0.29215890169143677,
+ "learning_rate": 0.0006,
+ "loss": 3.4472908973693848,
+ "step": 5186
+ },
+ {
+ "epoch": 72.04193971166448,
+ "grad_norm": 0.34719136357307434,
+ "learning_rate": 0.0006,
+ "loss": 3.4762914180755615,
+ "step": 5187
+ },
+ {
+ "epoch": 72.05591961555264,
+ "grad_norm": 0.31336039304733276,
+ "learning_rate": 0.0006,
+ "loss": 3.4866042137145996,
+ "step": 5188
+ },
+ {
+ "epoch": 72.06989951944081,
+ "grad_norm": 0.2586875557899475,
+ "learning_rate": 0.0006,
+ "loss": 3.4296340942382812,
+ "step": 5189
+ },
+ {
+ "epoch": 72.08387942332897,
+ "grad_norm": 0.2677823603153229,
+ "learning_rate": 0.0006,
+ "loss": 3.442481517791748,
+ "step": 5190
+ },
+ {
+ "epoch": 72.09785932721712,
+ "grad_norm": 0.30640944838523865,
+ "learning_rate": 0.0006,
+ "loss": 3.435530424118042,
+ "step": 5191
+ },
+ {
+ "epoch": 72.1118392311053,
+ "grad_norm": 0.29822733998298645,
+ "learning_rate": 0.0006,
+ "loss": 3.4399731159210205,
+ "step": 5192
+ },
+ {
+ "epoch": 72.12581913499345,
+ "grad_norm": 0.25714683532714844,
+ "learning_rate": 0.0006,
+ "loss": 3.4679667949676514,
+ "step": 5193
+ },
+ {
+ "epoch": 72.1397990388816,
+ "grad_norm": 0.2347356528043747,
+ "learning_rate": 0.0006,
+ "loss": 3.4473838806152344,
+ "step": 5194
+ },
+ {
+ "epoch": 72.15377894276976,
+ "grad_norm": 0.23640039563179016,
+ "learning_rate": 0.0006,
+ "loss": 3.4716782569885254,
+ "step": 5195
+ },
+ {
+ "epoch": 72.16775884665793,
+ "grad_norm": 0.2285412698984146,
+ "learning_rate": 0.0006,
+ "loss": 3.4927384853363037,
+ "step": 5196
+ },
+ {
+ "epoch": 72.18173875054609,
+ "grad_norm": 0.2305673509836197,
+ "learning_rate": 0.0006,
+ "loss": 3.5064914226531982,
+ "step": 5197
+ },
+ {
+ "epoch": 72.19571865443424,
+ "grad_norm": 0.21706514060497284,
+ "learning_rate": 0.0006,
+ "loss": 3.4467828273773193,
+ "step": 5198
+ },
+ {
+ "epoch": 72.20969855832242,
+ "grad_norm": 0.21769501268863678,
+ "learning_rate": 0.0006,
+ "loss": 3.473309278488159,
+ "step": 5199
+ },
+ {
+ "epoch": 72.22367846221057,
+ "grad_norm": 0.23256097733974457,
+ "learning_rate": 0.0006,
+ "loss": 3.457587718963623,
+ "step": 5200
+ },
+ {
+ "epoch": 72.23765836609873,
+ "grad_norm": 0.23531964421272278,
+ "learning_rate": 0.0006,
+ "loss": 3.485863208770752,
+ "step": 5201
+ },
+ {
+ "epoch": 72.2516382699869,
+ "grad_norm": 0.2240941971540451,
+ "learning_rate": 0.0006,
+ "loss": 3.4677062034606934,
+ "step": 5202
+ },
+ {
+ "epoch": 72.26561817387505,
+ "grad_norm": 0.22390629351139069,
+ "learning_rate": 0.0006,
+ "loss": 3.5203280448913574,
+ "step": 5203
+ },
+ {
+ "epoch": 72.27959807776321,
+ "grad_norm": 0.21178147196769714,
+ "learning_rate": 0.0006,
+ "loss": 3.4824347496032715,
+ "step": 5204
+ },
+ {
+ "epoch": 72.29357798165138,
+ "grad_norm": 0.21738161146640778,
+ "learning_rate": 0.0006,
+ "loss": 3.4587113857269287,
+ "step": 5205
+ },
+ {
+ "epoch": 72.30755788553954,
+ "grad_norm": 0.21534697711467743,
+ "learning_rate": 0.0006,
+ "loss": 3.499147415161133,
+ "step": 5206
+ },
+ {
+ "epoch": 72.3215377894277,
+ "grad_norm": 0.22616741061210632,
+ "learning_rate": 0.0006,
+ "loss": 3.5025434494018555,
+ "step": 5207
+ },
+ {
+ "epoch": 72.33551769331586,
+ "grad_norm": 0.26784682273864746,
+ "learning_rate": 0.0006,
+ "loss": 3.4733633995056152,
+ "step": 5208
+ },
+ {
+ "epoch": 72.34949759720402,
+ "grad_norm": 0.2774837911128998,
+ "learning_rate": 0.0006,
+ "loss": 3.508082389831543,
+ "step": 5209
+ },
+ {
+ "epoch": 72.36347750109218,
+ "grad_norm": 0.28039997816085815,
+ "learning_rate": 0.0006,
+ "loss": 3.503880500793457,
+ "step": 5210
+ },
+ {
+ "epoch": 72.37745740498035,
+ "grad_norm": 0.2990040183067322,
+ "learning_rate": 0.0006,
+ "loss": 3.4885363578796387,
+ "step": 5211
+ },
+ {
+ "epoch": 72.3914373088685,
+ "grad_norm": 0.2857728600502014,
+ "learning_rate": 0.0006,
+ "loss": 3.4977049827575684,
+ "step": 5212
+ },
+ {
+ "epoch": 72.40541721275666,
+ "grad_norm": 0.2675400972366333,
+ "learning_rate": 0.0006,
+ "loss": 3.49003267288208,
+ "step": 5213
+ },
+ {
+ "epoch": 72.41939711664482,
+ "grad_norm": 0.258004367351532,
+ "learning_rate": 0.0006,
+ "loss": 3.4726967811584473,
+ "step": 5214
+ },
+ {
+ "epoch": 72.43337702053299,
+ "grad_norm": 0.20816923677921295,
+ "learning_rate": 0.0006,
+ "loss": 3.4798901081085205,
+ "step": 5215
+ },
+ {
+ "epoch": 72.44735692442114,
+ "grad_norm": 0.21589888632297516,
+ "learning_rate": 0.0006,
+ "loss": 3.4784836769104004,
+ "step": 5216
+ },
+ {
+ "epoch": 72.4613368283093,
+ "grad_norm": 0.22663359344005585,
+ "learning_rate": 0.0006,
+ "loss": 3.5278806686401367,
+ "step": 5217
+ },
+ {
+ "epoch": 72.47531673219747,
+ "grad_norm": 0.2165268212556839,
+ "learning_rate": 0.0006,
+ "loss": 3.5198988914489746,
+ "step": 5218
+ },
+ {
+ "epoch": 72.48929663608563,
+ "grad_norm": 0.22635547816753387,
+ "learning_rate": 0.0006,
+ "loss": 3.476203441619873,
+ "step": 5219
+ },
+ {
+ "epoch": 72.50327653997378,
+ "grad_norm": 0.23315833508968353,
+ "learning_rate": 0.0006,
+ "loss": 3.4451494216918945,
+ "step": 5220
+ },
+ {
+ "epoch": 72.51725644386195,
+ "grad_norm": 0.2262018620967865,
+ "learning_rate": 0.0006,
+ "loss": 3.5126566886901855,
+ "step": 5221
+ },
+ {
+ "epoch": 72.53123634775011,
+ "grad_norm": 0.2273683398962021,
+ "learning_rate": 0.0006,
+ "loss": 3.485413074493408,
+ "step": 5222
+ },
+ {
+ "epoch": 72.54521625163827,
+ "grad_norm": 0.25254759192466736,
+ "learning_rate": 0.0006,
+ "loss": 3.4997940063476562,
+ "step": 5223
+ },
+ {
+ "epoch": 72.55919615552644,
+ "grad_norm": 0.23467472195625305,
+ "learning_rate": 0.0006,
+ "loss": 3.4924259185791016,
+ "step": 5224
+ },
+ {
+ "epoch": 72.57317605941459,
+ "grad_norm": 0.20206208527088165,
+ "learning_rate": 0.0006,
+ "loss": 3.5010361671447754,
+ "step": 5225
+ },
+ {
+ "epoch": 72.58715596330275,
+ "grad_norm": 0.21526813507080078,
+ "learning_rate": 0.0006,
+ "loss": 3.4889681339263916,
+ "step": 5226
+ },
+ {
+ "epoch": 72.60113586719092,
+ "grad_norm": 0.212263822555542,
+ "learning_rate": 0.0006,
+ "loss": 3.467782497406006,
+ "step": 5227
+ },
+ {
+ "epoch": 72.61511577107908,
+ "grad_norm": 0.2126736342906952,
+ "learning_rate": 0.0006,
+ "loss": 3.470729112625122,
+ "step": 5228
+ },
+ {
+ "epoch": 72.62909567496723,
+ "grad_norm": 0.22448696196079254,
+ "learning_rate": 0.0006,
+ "loss": 3.4688234329223633,
+ "step": 5229
+ },
+ {
+ "epoch": 72.6430755788554,
+ "grad_norm": 0.2322869449853897,
+ "learning_rate": 0.0006,
+ "loss": 3.490103244781494,
+ "step": 5230
+ },
+ {
+ "epoch": 72.65705548274356,
+ "grad_norm": 0.220216765999794,
+ "learning_rate": 0.0006,
+ "loss": 3.474886894226074,
+ "step": 5231
+ },
+ {
+ "epoch": 72.67103538663171,
+ "grad_norm": 0.2191896289587021,
+ "learning_rate": 0.0006,
+ "loss": 3.4965224266052246,
+ "step": 5232
+ },
+ {
+ "epoch": 72.68501529051987,
+ "grad_norm": 0.2120339423418045,
+ "learning_rate": 0.0006,
+ "loss": 3.4710934162139893,
+ "step": 5233
+ },
+ {
+ "epoch": 72.69899519440804,
+ "grad_norm": 0.21517711877822876,
+ "learning_rate": 0.0006,
+ "loss": 3.4698405265808105,
+ "step": 5234
+ },
+ {
+ "epoch": 72.7129750982962,
+ "grad_norm": 0.22012922167778015,
+ "learning_rate": 0.0006,
+ "loss": 3.513930320739746,
+ "step": 5235
+ },
+ {
+ "epoch": 72.72695500218435,
+ "grad_norm": 0.19231025874614716,
+ "learning_rate": 0.0006,
+ "loss": 3.476353168487549,
+ "step": 5236
+ },
+ {
+ "epoch": 72.74093490607252,
+ "grad_norm": 0.19383855164051056,
+ "learning_rate": 0.0006,
+ "loss": 3.5002031326293945,
+ "step": 5237
+ },
+ {
+ "epoch": 72.75491480996068,
+ "grad_norm": 0.22001665830612183,
+ "learning_rate": 0.0006,
+ "loss": 3.5080370903015137,
+ "step": 5238
+ },
+ {
+ "epoch": 72.76889471384884,
+ "grad_norm": 0.27273863554000854,
+ "learning_rate": 0.0006,
+ "loss": 3.504277229309082,
+ "step": 5239
+ },
+ {
+ "epoch": 72.78287461773701,
+ "grad_norm": 0.29014623165130615,
+ "learning_rate": 0.0006,
+ "loss": 3.493192195892334,
+ "step": 5240
+ },
+ {
+ "epoch": 72.79685452162516,
+ "grad_norm": 0.23816372454166412,
+ "learning_rate": 0.0006,
+ "loss": 3.519443988800049,
+ "step": 5241
+ },
+ {
+ "epoch": 72.81083442551332,
+ "grad_norm": 0.24076248705387115,
+ "learning_rate": 0.0006,
+ "loss": 3.4935712814331055,
+ "step": 5242
+ },
+ {
+ "epoch": 72.82481432940149,
+ "grad_norm": 0.264731764793396,
+ "learning_rate": 0.0006,
+ "loss": 3.5004658699035645,
+ "step": 5243
+ },
+ {
+ "epoch": 72.83879423328965,
+ "grad_norm": 0.2939820885658264,
+ "learning_rate": 0.0006,
+ "loss": 3.5297188758850098,
+ "step": 5244
+ },
+ {
+ "epoch": 72.8527741371778,
+ "grad_norm": 0.2904265522956848,
+ "learning_rate": 0.0006,
+ "loss": 3.496081829071045,
+ "step": 5245
+ },
+ {
+ "epoch": 72.86675404106597,
+ "grad_norm": 0.23428429663181305,
+ "learning_rate": 0.0006,
+ "loss": 3.493727684020996,
+ "step": 5246
+ },
+ {
+ "epoch": 72.88073394495413,
+ "grad_norm": 0.22780542075634003,
+ "learning_rate": 0.0006,
+ "loss": 3.523094654083252,
+ "step": 5247
+ },
+ {
+ "epoch": 72.89471384884229,
+ "grad_norm": 0.2745443284511566,
+ "learning_rate": 0.0006,
+ "loss": 3.497293472290039,
+ "step": 5248
+ },
+ {
+ "epoch": 72.90869375273044,
+ "grad_norm": 0.2678476870059967,
+ "learning_rate": 0.0006,
+ "loss": 3.5067732334136963,
+ "step": 5249
+ },
+ {
+ "epoch": 72.92267365661861,
+ "grad_norm": 0.2085755169391632,
+ "learning_rate": 0.0006,
+ "loss": 3.4695444107055664,
+ "step": 5250
+ },
+ {
+ "epoch": 72.93665356050677,
+ "grad_norm": 0.21488192677497864,
+ "learning_rate": 0.0006,
+ "loss": 3.522829055786133,
+ "step": 5251
+ },
+ {
+ "epoch": 72.95063346439493,
+ "grad_norm": 0.21374237537384033,
+ "learning_rate": 0.0006,
+ "loss": 3.5045344829559326,
+ "step": 5252
+ },
+ {
+ "epoch": 72.9646133682831,
+ "grad_norm": 0.23072510957717896,
+ "learning_rate": 0.0006,
+ "loss": 3.474557399749756,
+ "step": 5253
+ },
+ {
+ "epoch": 72.97859327217125,
+ "grad_norm": 0.22491991519927979,
+ "learning_rate": 0.0006,
+ "loss": 3.489443778991699,
+ "step": 5254
+ },
+ {
+ "epoch": 72.99257317605941,
+ "grad_norm": 0.22613948583602905,
+ "learning_rate": 0.0006,
+ "loss": 3.5056793689727783,
+ "step": 5255
+ },
+ {
+ "epoch": 73.0,
+ "grad_norm": 0.23435193300247192,
+ "learning_rate": 0.0006,
+ "loss": 3.520559787750244,
+ "step": 5256
+ },
+ {
+ "epoch": 73.0,
+ "eval_loss": 3.982722282409668,
+ "eval_runtime": 46.464,
+ "eval_samples_per_second": 52.557,
+ "eval_steps_per_second": 3.293,
+ "step": 5256
+ },
+ {
+ "epoch": 73.01397990388816,
+ "grad_norm": 0.22881661355495453,
+ "learning_rate": 0.0006,
+ "loss": 3.468254566192627,
+ "step": 5257
+ },
+ {
+ "epoch": 73.02795980777633,
+ "grad_norm": 0.2834230959415436,
+ "learning_rate": 0.0006,
+ "loss": 3.4606356620788574,
+ "step": 5258
+ },
+ {
+ "epoch": 73.04193971166448,
+ "grad_norm": 0.319560170173645,
+ "learning_rate": 0.0006,
+ "loss": 3.475505828857422,
+ "step": 5259
+ },
+ {
+ "epoch": 73.05591961555264,
+ "grad_norm": 0.32880520820617676,
+ "learning_rate": 0.0006,
+ "loss": 3.493833541870117,
+ "step": 5260
+ },
+ {
+ "epoch": 73.06989951944081,
+ "grad_norm": 0.2588718831539154,
+ "learning_rate": 0.0006,
+ "loss": 3.469942092895508,
+ "step": 5261
+ },
+ {
+ "epoch": 73.08387942332897,
+ "grad_norm": 0.2732829749584198,
+ "learning_rate": 0.0006,
+ "loss": 3.4531373977661133,
+ "step": 5262
+ },
+ {
+ "epoch": 73.09785932721712,
+ "grad_norm": 0.320829302072525,
+ "learning_rate": 0.0006,
+ "loss": 3.492429256439209,
+ "step": 5263
+ },
+ {
+ "epoch": 73.1118392311053,
+ "grad_norm": 0.24258096516132355,
+ "learning_rate": 0.0006,
+ "loss": 3.4776196479797363,
+ "step": 5264
+ },
+ {
+ "epoch": 73.12581913499345,
+ "grad_norm": 0.24697262048721313,
+ "learning_rate": 0.0006,
+ "loss": 3.4624526500701904,
+ "step": 5265
+ },
+ {
+ "epoch": 73.1397990388816,
+ "grad_norm": 0.2629360258579254,
+ "learning_rate": 0.0006,
+ "loss": 3.4608631134033203,
+ "step": 5266
+ },
+ {
+ "epoch": 73.15377894276976,
+ "grad_norm": 0.27060654759407043,
+ "learning_rate": 0.0006,
+ "loss": 3.4834189414978027,
+ "step": 5267
+ },
+ {
+ "epoch": 73.16775884665793,
+ "grad_norm": 0.246307834982872,
+ "learning_rate": 0.0006,
+ "loss": 3.477510929107666,
+ "step": 5268
+ },
+ {
+ "epoch": 73.18173875054609,
+ "grad_norm": 0.2469998300075531,
+ "learning_rate": 0.0006,
+ "loss": 3.4855780601501465,
+ "step": 5269
+ },
+ {
+ "epoch": 73.19571865443424,
+ "grad_norm": 0.24349135160446167,
+ "learning_rate": 0.0006,
+ "loss": 3.468322277069092,
+ "step": 5270
+ },
+ {
+ "epoch": 73.20969855832242,
+ "grad_norm": 0.22562023997306824,
+ "learning_rate": 0.0006,
+ "loss": 3.4036335945129395,
+ "step": 5271
+ },
+ {
+ "epoch": 73.22367846221057,
+ "grad_norm": 0.2311064749956131,
+ "learning_rate": 0.0006,
+ "loss": 3.4399924278259277,
+ "step": 5272
+ },
+ {
+ "epoch": 73.23765836609873,
+ "grad_norm": 0.21685704588890076,
+ "learning_rate": 0.0006,
+ "loss": 3.476149797439575,
+ "step": 5273
+ },
+ {
+ "epoch": 73.2516382699869,
+ "grad_norm": 0.22484169900417328,
+ "learning_rate": 0.0006,
+ "loss": 3.475130081176758,
+ "step": 5274
+ },
+ {
+ "epoch": 73.26561817387505,
+ "grad_norm": 0.22753819823265076,
+ "learning_rate": 0.0006,
+ "loss": 3.5259978771209717,
+ "step": 5275
+ },
+ {
+ "epoch": 73.27959807776321,
+ "grad_norm": 0.23297421634197235,
+ "learning_rate": 0.0006,
+ "loss": 3.4897689819335938,
+ "step": 5276
+ },
+ {
+ "epoch": 73.29357798165138,
+ "grad_norm": 0.22227609157562256,
+ "learning_rate": 0.0006,
+ "loss": 3.4681925773620605,
+ "step": 5277
+ },
+ {
+ "epoch": 73.30755788553954,
+ "grad_norm": 0.23390381038188934,
+ "learning_rate": 0.0006,
+ "loss": 3.4816267490386963,
+ "step": 5278
+ },
+ {
+ "epoch": 73.3215377894277,
+ "grad_norm": 0.25036972761154175,
+ "learning_rate": 0.0006,
+ "loss": 3.4513161182403564,
+ "step": 5279
+ },
+ {
+ "epoch": 73.33551769331586,
+ "grad_norm": 0.22425831854343414,
+ "learning_rate": 0.0006,
+ "loss": 3.504206657409668,
+ "step": 5280
+ },
+ {
+ "epoch": 73.34949759720402,
+ "grad_norm": 0.20987127721309662,
+ "learning_rate": 0.0006,
+ "loss": 3.463526487350464,
+ "step": 5281
+ },
+ {
+ "epoch": 73.36347750109218,
+ "grad_norm": 0.22594138979911804,
+ "learning_rate": 0.0006,
+ "loss": 3.467395067214966,
+ "step": 5282
+ },
+ {
+ "epoch": 73.37745740498035,
+ "grad_norm": 0.2819368243217468,
+ "learning_rate": 0.0006,
+ "loss": 3.458601236343384,
+ "step": 5283
+ },
+ {
+ "epoch": 73.3914373088685,
+ "grad_norm": 0.28703081607818604,
+ "learning_rate": 0.0006,
+ "loss": 3.489081382751465,
+ "step": 5284
+ },
+ {
+ "epoch": 73.40541721275666,
+ "grad_norm": 0.22495481371879578,
+ "learning_rate": 0.0006,
+ "loss": 3.4584622383117676,
+ "step": 5285
+ },
+ {
+ "epoch": 73.41939711664482,
+ "grad_norm": 0.26278403401374817,
+ "learning_rate": 0.0006,
+ "loss": 3.4610750675201416,
+ "step": 5286
+ },
+ {
+ "epoch": 73.43337702053299,
+ "grad_norm": 0.2335882931947708,
+ "learning_rate": 0.0006,
+ "loss": 3.4642205238342285,
+ "step": 5287
+ },
+ {
+ "epoch": 73.44735692442114,
+ "grad_norm": 0.23634950816631317,
+ "learning_rate": 0.0006,
+ "loss": 3.4628195762634277,
+ "step": 5288
+ },
+ {
+ "epoch": 73.4613368283093,
+ "grad_norm": 0.2428942620754242,
+ "learning_rate": 0.0006,
+ "loss": 3.486786365509033,
+ "step": 5289
+ },
+ {
+ "epoch": 73.47531673219747,
+ "grad_norm": 0.2235412299633026,
+ "learning_rate": 0.0006,
+ "loss": 3.4655373096466064,
+ "step": 5290
+ },
+ {
+ "epoch": 73.48929663608563,
+ "grad_norm": 0.22825124859809875,
+ "learning_rate": 0.0006,
+ "loss": 3.519115924835205,
+ "step": 5291
+ },
+ {
+ "epoch": 73.50327653997378,
+ "grad_norm": 0.22555601596832275,
+ "learning_rate": 0.0006,
+ "loss": 3.4672327041625977,
+ "step": 5292
+ },
+ {
+ "epoch": 73.51725644386195,
+ "grad_norm": 0.21196876466274261,
+ "learning_rate": 0.0006,
+ "loss": 3.477919101715088,
+ "step": 5293
+ },
+ {
+ "epoch": 73.53123634775011,
+ "grad_norm": 0.21254780888557434,
+ "learning_rate": 0.0006,
+ "loss": 3.493739604949951,
+ "step": 5294
+ },
+ {
+ "epoch": 73.54521625163827,
+ "grad_norm": 0.22243253886699677,
+ "learning_rate": 0.0006,
+ "loss": 3.5028891563415527,
+ "step": 5295
+ },
+ {
+ "epoch": 73.55919615552644,
+ "grad_norm": 0.1982688158750534,
+ "learning_rate": 0.0006,
+ "loss": 3.490211009979248,
+ "step": 5296
+ },
+ {
+ "epoch": 73.57317605941459,
+ "grad_norm": 0.19433127343654633,
+ "learning_rate": 0.0006,
+ "loss": 3.5000174045562744,
+ "step": 5297
+ },
+ {
+ "epoch": 73.58715596330275,
+ "grad_norm": 0.19470061361789703,
+ "learning_rate": 0.0006,
+ "loss": 3.4725089073181152,
+ "step": 5298
+ },
+ {
+ "epoch": 73.60113586719092,
+ "grad_norm": 0.20479093492031097,
+ "learning_rate": 0.0006,
+ "loss": 3.473649501800537,
+ "step": 5299
+ },
+ {
+ "epoch": 73.61511577107908,
+ "grad_norm": 0.22485226392745972,
+ "learning_rate": 0.0006,
+ "loss": 3.5234975814819336,
+ "step": 5300
+ },
+ {
+ "epoch": 73.62909567496723,
+ "grad_norm": 0.2219000905752182,
+ "learning_rate": 0.0006,
+ "loss": 3.483283281326294,
+ "step": 5301
+ },
+ {
+ "epoch": 73.6430755788554,
+ "grad_norm": 0.25735849142074585,
+ "learning_rate": 0.0006,
+ "loss": 3.4863831996917725,
+ "step": 5302
+ },
+ {
+ "epoch": 73.65705548274356,
+ "grad_norm": 0.2822291851043701,
+ "learning_rate": 0.0006,
+ "loss": 3.4864425659179688,
+ "step": 5303
+ },
+ {
+ "epoch": 73.67103538663171,
+ "grad_norm": 0.2965867817401886,
+ "learning_rate": 0.0006,
+ "loss": 3.487774133682251,
+ "step": 5304
+ },
+ {
+ "epoch": 73.68501529051987,
+ "grad_norm": 0.2446807473897934,
+ "learning_rate": 0.0006,
+ "loss": 3.485553741455078,
+ "step": 5305
+ },
+ {
+ "epoch": 73.69899519440804,
+ "grad_norm": 0.2298526167869568,
+ "learning_rate": 0.0006,
+ "loss": 3.4513039588928223,
+ "step": 5306
+ },
+ {
+ "epoch": 73.7129750982962,
+ "grad_norm": 0.24967409670352936,
+ "learning_rate": 0.0006,
+ "loss": 3.4974756240844727,
+ "step": 5307
+ },
+ {
+ "epoch": 73.72695500218435,
+ "grad_norm": 0.22180770337581635,
+ "learning_rate": 0.0006,
+ "loss": 3.501955509185791,
+ "step": 5308
+ },
+ {
+ "epoch": 73.74093490607252,
+ "grad_norm": 0.21294254064559937,
+ "learning_rate": 0.0006,
+ "loss": 3.52626371383667,
+ "step": 5309
+ },
+ {
+ "epoch": 73.75491480996068,
+ "grad_norm": 0.23970918357372284,
+ "learning_rate": 0.0006,
+ "loss": 3.479355812072754,
+ "step": 5310
+ },
+ {
+ "epoch": 73.76889471384884,
+ "grad_norm": 0.22978267073631287,
+ "learning_rate": 0.0006,
+ "loss": 3.4972357749938965,
+ "step": 5311
+ },
+ {
+ "epoch": 73.78287461773701,
+ "grad_norm": 0.22393731772899628,
+ "learning_rate": 0.0006,
+ "loss": 3.499718189239502,
+ "step": 5312
+ },
+ {
+ "epoch": 73.79685452162516,
+ "grad_norm": 0.2265646904706955,
+ "learning_rate": 0.0006,
+ "loss": 3.5240416526794434,
+ "step": 5313
+ },
+ {
+ "epoch": 73.81083442551332,
+ "grad_norm": 0.23060904443264008,
+ "learning_rate": 0.0006,
+ "loss": 3.4981179237365723,
+ "step": 5314
+ },
+ {
+ "epoch": 73.82481432940149,
+ "grad_norm": 0.2358054369688034,
+ "learning_rate": 0.0006,
+ "loss": 3.4671754837036133,
+ "step": 5315
+ },
+ {
+ "epoch": 73.83879423328965,
+ "grad_norm": 0.22466880083084106,
+ "learning_rate": 0.0006,
+ "loss": 3.5178170204162598,
+ "step": 5316
+ },
+ {
+ "epoch": 73.8527741371778,
+ "grad_norm": 0.24523386359214783,
+ "learning_rate": 0.0006,
+ "loss": 3.5059657096862793,
+ "step": 5317
+ },
+ {
+ "epoch": 73.86675404106597,
+ "grad_norm": 0.24812379479408264,
+ "learning_rate": 0.0006,
+ "loss": 3.4979734420776367,
+ "step": 5318
+ },
+ {
+ "epoch": 73.88073394495413,
+ "grad_norm": 0.2210223525762558,
+ "learning_rate": 0.0006,
+ "loss": 3.5158674716949463,
+ "step": 5319
+ },
+ {
+ "epoch": 73.89471384884229,
+ "grad_norm": 0.23374506831169128,
+ "learning_rate": 0.0006,
+ "loss": 3.4730381965637207,
+ "step": 5320
+ },
+ {
+ "epoch": 73.90869375273044,
+ "grad_norm": 0.2209903597831726,
+ "learning_rate": 0.0006,
+ "loss": 3.5152671337127686,
+ "step": 5321
+ },
+ {
+ "epoch": 73.92267365661861,
+ "grad_norm": 0.19783467054367065,
+ "learning_rate": 0.0006,
+ "loss": 3.508627414703369,
+ "step": 5322
+ },
+ {
+ "epoch": 73.93665356050677,
+ "grad_norm": 0.20683151483535767,
+ "learning_rate": 0.0006,
+ "loss": 3.5041322708129883,
+ "step": 5323
+ },
+ {
+ "epoch": 73.95063346439493,
+ "grad_norm": 0.20111984014511108,
+ "learning_rate": 0.0006,
+ "loss": 3.4618184566497803,
+ "step": 5324
+ },
+ {
+ "epoch": 73.9646133682831,
+ "grad_norm": 0.22296449542045593,
+ "learning_rate": 0.0006,
+ "loss": 3.4695611000061035,
+ "step": 5325
+ },
+ {
+ "epoch": 73.97859327217125,
+ "grad_norm": 0.22317543625831604,
+ "learning_rate": 0.0006,
+ "loss": 3.497115135192871,
+ "step": 5326
+ },
+ {
+ "epoch": 73.99257317605941,
+ "grad_norm": 0.19182799756526947,
+ "learning_rate": 0.0006,
+ "loss": 3.502279758453369,
+ "step": 5327
+ },
+ {
+ "epoch": 74.0,
+ "grad_norm": 0.2484123259782791,
+ "learning_rate": 0.0006,
+ "loss": 3.4998650550842285,
+ "step": 5328
+ },
+ {
+ "epoch": 74.0,
+ "eval_loss": 3.977353572845459,
+ "eval_runtime": 46.9154,
+ "eval_samples_per_second": 52.051,
+ "eval_steps_per_second": 3.261,
+ "step": 5328
+ },
+ {
+ "epoch": 74.01397990388816,
+ "grad_norm": 0.2512458860874176,
+ "learning_rate": 0.0006,
+ "loss": 3.454616069793701,
+ "step": 5329
+ },
+ {
+ "epoch": 74.02795980777633,
+ "grad_norm": 0.2781964838504791,
+ "learning_rate": 0.0006,
+ "loss": 3.4444780349731445,
+ "step": 5330
+ },
+ {
+ "epoch": 74.04193971166448,
+ "grad_norm": 0.3014058470726013,
+ "learning_rate": 0.0006,
+ "loss": 3.4059829711914062,
+ "step": 5331
+ },
+ {
+ "epoch": 74.05591961555264,
+ "grad_norm": 0.28226929903030396,
+ "learning_rate": 0.0006,
+ "loss": 3.474538803100586,
+ "step": 5332
+ },
+ {
+ "epoch": 74.06989951944081,
+ "grad_norm": 0.22589807212352753,
+ "learning_rate": 0.0006,
+ "loss": 3.4484004974365234,
+ "step": 5333
+ },
+ {
+ "epoch": 74.08387942332897,
+ "grad_norm": 0.2317565679550171,
+ "learning_rate": 0.0006,
+ "loss": 3.4559502601623535,
+ "step": 5334
+ },
+ {
+ "epoch": 74.09785932721712,
+ "grad_norm": 0.2484085112810135,
+ "learning_rate": 0.0006,
+ "loss": 3.4723763465881348,
+ "step": 5335
+ },
+ {
+ "epoch": 74.1118392311053,
+ "grad_norm": 0.24313412606716156,
+ "learning_rate": 0.0006,
+ "loss": 3.4581704139709473,
+ "step": 5336
+ },
+ {
+ "epoch": 74.12581913499345,
+ "grad_norm": 0.2317453771829605,
+ "learning_rate": 0.0006,
+ "loss": 3.4556710720062256,
+ "step": 5337
+ },
+ {
+ "epoch": 74.1397990388816,
+ "grad_norm": 0.2423294484615326,
+ "learning_rate": 0.0006,
+ "loss": 3.450899124145508,
+ "step": 5338
+ },
+ {
+ "epoch": 74.15377894276976,
+ "grad_norm": 0.24861979484558105,
+ "learning_rate": 0.0006,
+ "loss": 3.4524154663085938,
+ "step": 5339
+ },
+ {
+ "epoch": 74.16775884665793,
+ "grad_norm": 0.27226537466049194,
+ "learning_rate": 0.0006,
+ "loss": 3.4728293418884277,
+ "step": 5340
+ },
+ {
+ "epoch": 74.18173875054609,
+ "grad_norm": 0.29282820224761963,
+ "learning_rate": 0.0006,
+ "loss": 3.482450008392334,
+ "step": 5341
+ },
+ {
+ "epoch": 74.19571865443424,
+ "grad_norm": 0.2666662931442261,
+ "learning_rate": 0.0006,
+ "loss": 3.4708619117736816,
+ "step": 5342
+ },
+ {
+ "epoch": 74.20969855832242,
+ "grad_norm": 0.22029168903827667,
+ "learning_rate": 0.0006,
+ "loss": 3.4592952728271484,
+ "step": 5343
+ },
+ {
+ "epoch": 74.22367846221057,
+ "grad_norm": 0.21203964948654175,
+ "learning_rate": 0.0006,
+ "loss": 3.4983129501342773,
+ "step": 5344
+ },
+ {
+ "epoch": 74.23765836609873,
+ "grad_norm": 0.24254444241523743,
+ "learning_rate": 0.0006,
+ "loss": 3.4695663452148438,
+ "step": 5345
+ },
+ {
+ "epoch": 74.2516382699869,
+ "grad_norm": 0.28514090180397034,
+ "learning_rate": 0.0006,
+ "loss": 3.501779556274414,
+ "step": 5346
+ },
+ {
+ "epoch": 74.26561817387505,
+ "grad_norm": 0.27082809805870056,
+ "learning_rate": 0.0006,
+ "loss": 3.4754765033721924,
+ "step": 5347
+ },
+ {
+ "epoch": 74.27959807776321,
+ "grad_norm": 0.21144570410251617,
+ "learning_rate": 0.0006,
+ "loss": 3.481623649597168,
+ "step": 5348
+ },
+ {
+ "epoch": 74.29357798165138,
+ "grad_norm": 0.23012803494930267,
+ "learning_rate": 0.0006,
+ "loss": 3.478872776031494,
+ "step": 5349
+ },
+ {
+ "epoch": 74.30755788553954,
+ "grad_norm": 0.2497818022966385,
+ "learning_rate": 0.0006,
+ "loss": 3.465214252471924,
+ "step": 5350
+ },
+ {
+ "epoch": 74.3215377894277,
+ "grad_norm": 0.27346086502075195,
+ "learning_rate": 0.0006,
+ "loss": 3.4749603271484375,
+ "step": 5351
+ },
+ {
+ "epoch": 74.33551769331586,
+ "grad_norm": 0.24193984270095825,
+ "learning_rate": 0.0006,
+ "loss": 3.4898180961608887,
+ "step": 5352
+ },
+ {
+ "epoch": 74.34949759720402,
+ "grad_norm": 0.2432994395494461,
+ "learning_rate": 0.0006,
+ "loss": 3.478156089782715,
+ "step": 5353
+ },
+ {
+ "epoch": 74.36347750109218,
+ "grad_norm": 0.331503689289093,
+ "learning_rate": 0.0006,
+ "loss": 3.496690273284912,
+ "step": 5354
+ },
+ {
+ "epoch": 74.37745740498035,
+ "grad_norm": 0.27467086911201477,
+ "learning_rate": 0.0006,
+ "loss": 3.472379684448242,
+ "step": 5355
+ },
+ {
+ "epoch": 74.3914373088685,
+ "grad_norm": 0.23563839495182037,
+ "learning_rate": 0.0006,
+ "loss": 3.4963388442993164,
+ "step": 5356
+ },
+ {
+ "epoch": 74.40541721275666,
+ "grad_norm": 0.23829393088817596,
+ "learning_rate": 0.0006,
+ "loss": 3.473438262939453,
+ "step": 5357
+ },
+ {
+ "epoch": 74.41939711664482,
+ "grad_norm": 0.28113624453544617,
+ "learning_rate": 0.0006,
+ "loss": 3.481104612350464,
+ "step": 5358
+ },
+ {
+ "epoch": 74.43337702053299,
+ "grad_norm": 0.29099389910697937,
+ "learning_rate": 0.0006,
+ "loss": 3.497255325317383,
+ "step": 5359
+ },
+ {
+ "epoch": 74.44735692442114,
+ "grad_norm": 0.24911890923976898,
+ "learning_rate": 0.0006,
+ "loss": 3.4622669219970703,
+ "step": 5360
+ },
+ {
+ "epoch": 74.4613368283093,
+ "grad_norm": 0.2488860785961151,
+ "learning_rate": 0.0006,
+ "loss": 3.4906888008117676,
+ "step": 5361
+ },
+ {
+ "epoch": 74.47531673219747,
+ "grad_norm": 0.27969980239868164,
+ "learning_rate": 0.0006,
+ "loss": 3.495727300643921,
+ "step": 5362
+ },
+ {
+ "epoch": 74.48929663608563,
+ "grad_norm": 0.2811402380466461,
+ "learning_rate": 0.0006,
+ "loss": 3.4817042350769043,
+ "step": 5363
+ },
+ {
+ "epoch": 74.50327653997378,
+ "grad_norm": 0.25717079639434814,
+ "learning_rate": 0.0006,
+ "loss": 3.4818572998046875,
+ "step": 5364
+ },
+ {
+ "epoch": 74.51725644386195,
+ "grad_norm": 0.2527103126049042,
+ "learning_rate": 0.0006,
+ "loss": 3.494536876678467,
+ "step": 5365
+ },
+ {
+ "epoch": 74.53123634775011,
+ "grad_norm": 0.24561476707458496,
+ "learning_rate": 0.0006,
+ "loss": 3.4908809661865234,
+ "step": 5366
+ },
+ {
+ "epoch": 74.54521625163827,
+ "grad_norm": 0.2540345788002014,
+ "learning_rate": 0.0006,
+ "loss": 3.477179765701294,
+ "step": 5367
+ },
+ {
+ "epoch": 74.55919615552644,
+ "grad_norm": 0.2220340371131897,
+ "learning_rate": 0.0006,
+ "loss": 3.4914112091064453,
+ "step": 5368
+ },
+ {
+ "epoch": 74.57317605941459,
+ "grad_norm": 0.21146169304847717,
+ "learning_rate": 0.0006,
+ "loss": 3.457792043685913,
+ "step": 5369
+ },
+ {
+ "epoch": 74.58715596330275,
+ "grad_norm": 0.2657042443752289,
+ "learning_rate": 0.0006,
+ "loss": 3.4626612663269043,
+ "step": 5370
+ },
+ {
+ "epoch": 74.60113586719092,
+ "grad_norm": 0.2684510350227356,
+ "learning_rate": 0.0006,
+ "loss": 3.472271203994751,
+ "step": 5371
+ },
+ {
+ "epoch": 74.61511577107908,
+ "grad_norm": 0.22635070979595184,
+ "learning_rate": 0.0006,
+ "loss": 3.4719159603118896,
+ "step": 5372
+ },
+ {
+ "epoch": 74.62909567496723,
+ "grad_norm": 0.22514945268630981,
+ "learning_rate": 0.0006,
+ "loss": 3.4851810932159424,
+ "step": 5373
+ },
+ {
+ "epoch": 74.6430755788554,
+ "grad_norm": 0.24570822715759277,
+ "learning_rate": 0.0006,
+ "loss": 3.4688820838928223,
+ "step": 5374
+ },
+ {
+ "epoch": 74.65705548274356,
+ "grad_norm": 0.24397042393684387,
+ "learning_rate": 0.0006,
+ "loss": 3.4923229217529297,
+ "step": 5375
+ },
+ {
+ "epoch": 74.67103538663171,
+ "grad_norm": 0.23729953169822693,
+ "learning_rate": 0.0006,
+ "loss": 3.4608895778656006,
+ "step": 5376
+ },
+ {
+ "epoch": 74.68501529051987,
+ "grad_norm": 0.2729131877422333,
+ "learning_rate": 0.0006,
+ "loss": 3.4602279663085938,
+ "step": 5377
+ },
+ {
+ "epoch": 74.69899519440804,
+ "grad_norm": 0.25115323066711426,
+ "learning_rate": 0.0006,
+ "loss": 3.514993906021118,
+ "step": 5378
+ },
+ {
+ "epoch": 74.7129750982962,
+ "grad_norm": 0.22035203874111176,
+ "learning_rate": 0.0006,
+ "loss": 3.4471445083618164,
+ "step": 5379
+ },
+ {
+ "epoch": 74.72695500218435,
+ "grad_norm": 0.21248559653759003,
+ "learning_rate": 0.0006,
+ "loss": 3.495924472808838,
+ "step": 5380
+ },
+ {
+ "epoch": 74.74093490607252,
+ "grad_norm": 0.2532788813114166,
+ "learning_rate": 0.0006,
+ "loss": 3.4937939643859863,
+ "step": 5381
+ },
+ {
+ "epoch": 74.75491480996068,
+ "grad_norm": 0.3140663206577301,
+ "learning_rate": 0.0006,
+ "loss": 3.47257661819458,
+ "step": 5382
+ },
+ {
+ "epoch": 74.76889471384884,
+ "grad_norm": 0.24233469367027283,
+ "learning_rate": 0.0006,
+ "loss": 3.522697925567627,
+ "step": 5383
+ },
+ {
+ "epoch": 74.78287461773701,
+ "grad_norm": 0.21789517998695374,
+ "learning_rate": 0.0006,
+ "loss": 3.4718894958496094,
+ "step": 5384
+ },
+ {
+ "epoch": 74.79685452162516,
+ "grad_norm": 0.27909520268440247,
+ "learning_rate": 0.0006,
+ "loss": 3.495565891265869,
+ "step": 5385
+ },
+ {
+ "epoch": 74.81083442551332,
+ "grad_norm": 0.2829185724258423,
+ "learning_rate": 0.0006,
+ "loss": 3.498117446899414,
+ "step": 5386
+ },
+ {
+ "epoch": 74.82481432940149,
+ "grad_norm": 0.24295735359191895,
+ "learning_rate": 0.0006,
+ "loss": 3.520672559738159,
+ "step": 5387
+ },
+ {
+ "epoch": 74.83879423328965,
+ "grad_norm": 0.22691823542118073,
+ "learning_rate": 0.0006,
+ "loss": 3.493411064147949,
+ "step": 5388
+ },
+ {
+ "epoch": 74.8527741371778,
+ "grad_norm": 0.2304782122373581,
+ "learning_rate": 0.0006,
+ "loss": 3.515381336212158,
+ "step": 5389
+ },
+ {
+ "epoch": 74.86675404106597,
+ "grad_norm": 0.2201395034790039,
+ "learning_rate": 0.0006,
+ "loss": 3.4841480255126953,
+ "step": 5390
+ },
+ {
+ "epoch": 74.88073394495413,
+ "grad_norm": 0.2174619734287262,
+ "learning_rate": 0.0006,
+ "loss": 3.522420883178711,
+ "step": 5391
+ },
+ {
+ "epoch": 74.89471384884229,
+ "grad_norm": 0.2168722301721573,
+ "learning_rate": 0.0006,
+ "loss": 3.5378670692443848,
+ "step": 5392
+ },
+ {
+ "epoch": 74.90869375273044,
+ "grad_norm": 0.2191118448972702,
+ "learning_rate": 0.0006,
+ "loss": 3.4727582931518555,
+ "step": 5393
+ },
+ {
+ "epoch": 74.92267365661861,
+ "grad_norm": 0.20210173726081848,
+ "learning_rate": 0.0006,
+ "loss": 3.482863426208496,
+ "step": 5394
+ },
+ {
+ "epoch": 74.93665356050677,
+ "grad_norm": 0.2193301022052765,
+ "learning_rate": 0.0006,
+ "loss": 3.504102945327759,
+ "step": 5395
+ },
+ {
+ "epoch": 74.95063346439493,
+ "grad_norm": 0.24017557501792908,
+ "learning_rate": 0.0006,
+ "loss": 3.5117030143737793,
+ "step": 5396
+ },
+ {
+ "epoch": 74.9646133682831,
+ "grad_norm": 0.2410554140806198,
+ "learning_rate": 0.0006,
+ "loss": 3.4764766693115234,
+ "step": 5397
+ },
+ {
+ "epoch": 74.97859327217125,
+ "grad_norm": 0.22423039376735687,
+ "learning_rate": 0.0006,
+ "loss": 3.480515480041504,
+ "step": 5398
+ },
+ {
+ "epoch": 74.99257317605941,
+ "grad_norm": 0.21722744405269623,
+ "learning_rate": 0.0006,
+ "loss": 3.498002052307129,
+ "step": 5399
+ },
+ {
+ "epoch": 75.0,
+ "grad_norm": 0.25303882360458374,
+ "learning_rate": 0.0006,
+ "loss": 3.5146775245666504,
+ "step": 5400
+ },
+ {
+ "epoch": 75.0,
+ "eval_loss": 3.98659610748291,
+ "eval_runtime": 46.184,
+ "eval_samples_per_second": 52.875,
+ "eval_steps_per_second": 3.313,
+ "step": 5400
+ },
+ {
+ "epoch": 75.01397990388816,
+ "grad_norm": 0.22890645265579224,
+ "learning_rate": 0.0006,
+ "loss": 3.4320144653320312,
+ "step": 5401
+ },
+ {
+ "epoch": 75.02795980777633,
+ "grad_norm": 0.21108074486255646,
+ "learning_rate": 0.0006,
+ "loss": 3.4783573150634766,
+ "step": 5402
+ },
+ {
+ "epoch": 75.04193971166448,
+ "grad_norm": 0.24622507393360138,
+ "learning_rate": 0.0006,
+ "loss": 3.443662643432617,
+ "step": 5403
+ },
+ {
+ "epoch": 75.05591961555264,
+ "grad_norm": 0.27554580569267273,
+ "learning_rate": 0.0006,
+ "loss": 3.4758429527282715,
+ "step": 5404
+ },
+ {
+ "epoch": 75.06989951944081,
+ "grad_norm": 0.23775196075439453,
+ "learning_rate": 0.0006,
+ "loss": 3.433439254760742,
+ "step": 5405
+ },
+ {
+ "epoch": 75.08387942332897,
+ "grad_norm": 0.24933192133903503,
+ "learning_rate": 0.0006,
+ "loss": 3.474876642227173,
+ "step": 5406
+ },
+ {
+ "epoch": 75.09785932721712,
+ "grad_norm": 0.25970155000686646,
+ "learning_rate": 0.0006,
+ "loss": 3.4557571411132812,
+ "step": 5407
+ },
+ {
+ "epoch": 75.1118392311053,
+ "grad_norm": 0.24002394080162048,
+ "learning_rate": 0.0006,
+ "loss": 3.487683057785034,
+ "step": 5408
+ },
+ {
+ "epoch": 75.12581913499345,
+ "grad_norm": 0.23790079355239868,
+ "learning_rate": 0.0006,
+ "loss": 3.4572582244873047,
+ "step": 5409
+ },
+ {
+ "epoch": 75.1397990388816,
+ "grad_norm": 0.24431537091732025,
+ "learning_rate": 0.0006,
+ "loss": 3.47338604927063,
+ "step": 5410
+ },
+ {
+ "epoch": 75.15377894276976,
+ "grad_norm": 0.23062901198863983,
+ "learning_rate": 0.0006,
+ "loss": 3.4597620964050293,
+ "step": 5411
+ },
+ {
+ "epoch": 75.16775884665793,
+ "grad_norm": 0.22011473774909973,
+ "learning_rate": 0.0006,
+ "loss": 3.442854404449463,
+ "step": 5412
+ },
+ {
+ "epoch": 75.18173875054609,
+ "grad_norm": 0.22079597413539886,
+ "learning_rate": 0.0006,
+ "loss": 3.4655394554138184,
+ "step": 5413
+ },
+ {
+ "epoch": 75.19571865443424,
+ "grad_norm": 0.2491050660610199,
+ "learning_rate": 0.0006,
+ "loss": 3.4235432147979736,
+ "step": 5414
+ },
+ {
+ "epoch": 75.20969855832242,
+ "grad_norm": 0.2579537332057953,
+ "learning_rate": 0.0006,
+ "loss": 3.4655489921569824,
+ "step": 5415
+ },
+ {
+ "epoch": 75.22367846221057,
+ "grad_norm": 0.2544846832752228,
+ "learning_rate": 0.0006,
+ "loss": 3.4843227863311768,
+ "step": 5416
+ },
+ {
+ "epoch": 75.23765836609873,
+ "grad_norm": 0.2496761977672577,
+ "learning_rate": 0.0006,
+ "loss": 3.4830572605133057,
+ "step": 5417
+ },
+ {
+ "epoch": 75.2516382699869,
+ "grad_norm": 0.23450163006782532,
+ "learning_rate": 0.0006,
+ "loss": 3.4443750381469727,
+ "step": 5418
+ },
+ {
+ "epoch": 75.26561817387505,
+ "grad_norm": 0.21221424639225006,
+ "learning_rate": 0.0006,
+ "loss": 3.4960341453552246,
+ "step": 5419
+ },
+ {
+ "epoch": 75.27959807776321,
+ "grad_norm": 0.24375751614570618,
+ "learning_rate": 0.0006,
+ "loss": 3.489213466644287,
+ "step": 5420
+ },
+ {
+ "epoch": 75.29357798165138,
+ "grad_norm": 0.2396956831216812,
+ "learning_rate": 0.0006,
+ "loss": 3.4710469245910645,
+ "step": 5421
+ },
+ {
+ "epoch": 75.30755788553954,
+ "grad_norm": 0.2423015981912613,
+ "learning_rate": 0.0006,
+ "loss": 3.4676403999328613,
+ "step": 5422
+ },
+ {
+ "epoch": 75.3215377894277,
+ "grad_norm": 0.21398219466209412,
+ "learning_rate": 0.0006,
+ "loss": 3.4844627380371094,
+ "step": 5423
+ },
+ {
+ "epoch": 75.33551769331586,
+ "grad_norm": 0.22983498871326447,
+ "learning_rate": 0.0006,
+ "loss": 3.499535083770752,
+ "step": 5424
+ },
+ {
+ "epoch": 75.34949759720402,
+ "grad_norm": 0.2247568666934967,
+ "learning_rate": 0.0006,
+ "loss": 3.459460973739624,
+ "step": 5425
+ },
+ {
+ "epoch": 75.36347750109218,
+ "grad_norm": 0.2223675400018692,
+ "learning_rate": 0.0006,
+ "loss": 3.483078718185425,
+ "step": 5426
+ },
+ {
+ "epoch": 75.37745740498035,
+ "grad_norm": 0.25076913833618164,
+ "learning_rate": 0.0006,
+ "loss": 3.4823365211486816,
+ "step": 5427
+ },
+ {
+ "epoch": 75.3914373088685,
+ "grad_norm": 0.23170171678066254,
+ "learning_rate": 0.0006,
+ "loss": 3.487278461456299,
+ "step": 5428
+ },
+ {
+ "epoch": 75.40541721275666,
+ "grad_norm": 0.22735518217086792,
+ "learning_rate": 0.0006,
+ "loss": 3.4565181732177734,
+ "step": 5429
+ },
+ {
+ "epoch": 75.41939711664482,
+ "grad_norm": 0.2241843193769455,
+ "learning_rate": 0.0006,
+ "loss": 3.4886221885681152,
+ "step": 5430
+ },
+ {
+ "epoch": 75.43337702053299,
+ "grad_norm": 0.23641140758991241,
+ "learning_rate": 0.0006,
+ "loss": 3.4589765071868896,
+ "step": 5431
+ },
+ {
+ "epoch": 75.44735692442114,
+ "grad_norm": 0.22404645383358002,
+ "learning_rate": 0.0006,
+ "loss": 3.4804739952087402,
+ "step": 5432
+ },
+ {
+ "epoch": 75.4613368283093,
+ "grad_norm": 0.22107535600662231,
+ "learning_rate": 0.0006,
+ "loss": 3.5022053718566895,
+ "step": 5433
+ },
+ {
+ "epoch": 75.47531673219747,
+ "grad_norm": 0.26106131076812744,
+ "learning_rate": 0.0006,
+ "loss": 3.4907431602478027,
+ "step": 5434
+ },
+ {
+ "epoch": 75.48929663608563,
+ "grad_norm": 0.24156032502651215,
+ "learning_rate": 0.0006,
+ "loss": 3.4733991622924805,
+ "step": 5435
+ },
+ {
+ "epoch": 75.50327653997378,
+ "grad_norm": 0.24767442047595978,
+ "learning_rate": 0.0006,
+ "loss": 3.4697909355163574,
+ "step": 5436
+ },
+ {
+ "epoch": 75.51725644386195,
+ "grad_norm": 0.2323860228061676,
+ "learning_rate": 0.0006,
+ "loss": 3.4606242179870605,
+ "step": 5437
+ },
+ {
+ "epoch": 75.53123634775011,
+ "grad_norm": 0.2262393981218338,
+ "learning_rate": 0.0006,
+ "loss": 3.4854025840759277,
+ "step": 5438
+ },
+ {
+ "epoch": 75.54521625163827,
+ "grad_norm": 0.23461535573005676,
+ "learning_rate": 0.0006,
+ "loss": 3.4778385162353516,
+ "step": 5439
+ },
+ {
+ "epoch": 75.55919615552644,
+ "grad_norm": 0.27161163091659546,
+ "learning_rate": 0.0006,
+ "loss": 3.495377540588379,
+ "step": 5440
+ },
+ {
+ "epoch": 75.57317605941459,
+ "grad_norm": 0.24618741869926453,
+ "learning_rate": 0.0006,
+ "loss": 3.47642183303833,
+ "step": 5441
+ },
+ {
+ "epoch": 75.58715596330275,
+ "grad_norm": 0.22948747873306274,
+ "learning_rate": 0.0006,
+ "loss": 3.4459116458892822,
+ "step": 5442
+ },
+ {
+ "epoch": 75.60113586719092,
+ "grad_norm": 0.23935501277446747,
+ "learning_rate": 0.0006,
+ "loss": 3.487091541290283,
+ "step": 5443
+ },
+ {
+ "epoch": 75.61511577107908,
+ "grad_norm": 0.2796297073364258,
+ "learning_rate": 0.0006,
+ "loss": 3.473480701446533,
+ "step": 5444
+ },
+ {
+ "epoch": 75.62909567496723,
+ "grad_norm": 0.29329824447631836,
+ "learning_rate": 0.0006,
+ "loss": 3.5074462890625,
+ "step": 5445
+ },
+ {
+ "epoch": 75.6430755788554,
+ "grad_norm": 0.2570355534553528,
+ "learning_rate": 0.0006,
+ "loss": 3.489321231842041,
+ "step": 5446
+ },
+ {
+ "epoch": 75.65705548274356,
+ "grad_norm": 0.2363484650850296,
+ "learning_rate": 0.0006,
+ "loss": 3.468007802963257,
+ "step": 5447
+ },
+ {
+ "epoch": 75.67103538663171,
+ "grad_norm": 0.2406139075756073,
+ "learning_rate": 0.0006,
+ "loss": 3.46791410446167,
+ "step": 5448
+ },
+ {
+ "epoch": 75.68501529051987,
+ "grad_norm": 0.21734113991260529,
+ "learning_rate": 0.0006,
+ "loss": 3.4879536628723145,
+ "step": 5449
+ },
+ {
+ "epoch": 75.69899519440804,
+ "grad_norm": 0.23314808309078217,
+ "learning_rate": 0.0006,
+ "loss": 3.4743285179138184,
+ "step": 5450
+ },
+ {
+ "epoch": 75.7129750982962,
+ "grad_norm": 0.23886935412883759,
+ "learning_rate": 0.0006,
+ "loss": 3.4746532440185547,
+ "step": 5451
+ },
+ {
+ "epoch": 75.72695500218435,
+ "grad_norm": 0.22808042168617249,
+ "learning_rate": 0.0006,
+ "loss": 3.4969987869262695,
+ "step": 5452
+ },
+ {
+ "epoch": 75.74093490607252,
+ "grad_norm": 0.2143876552581787,
+ "learning_rate": 0.0006,
+ "loss": 3.4843339920043945,
+ "step": 5453
+ },
+ {
+ "epoch": 75.75491480996068,
+ "grad_norm": 0.21905699372291565,
+ "learning_rate": 0.0006,
+ "loss": 3.4854626655578613,
+ "step": 5454
+ },
+ {
+ "epoch": 75.76889471384884,
+ "grad_norm": 0.222469300031662,
+ "learning_rate": 0.0006,
+ "loss": 3.4997758865356445,
+ "step": 5455
+ },
+ {
+ "epoch": 75.78287461773701,
+ "grad_norm": 0.23095394670963287,
+ "learning_rate": 0.0006,
+ "loss": 3.515315532684326,
+ "step": 5456
+ },
+ {
+ "epoch": 75.79685452162516,
+ "grad_norm": 0.23326516151428223,
+ "learning_rate": 0.0006,
+ "loss": 3.482665538787842,
+ "step": 5457
+ },
+ {
+ "epoch": 75.81083442551332,
+ "grad_norm": 0.22779764235019684,
+ "learning_rate": 0.0006,
+ "loss": 3.5068790912628174,
+ "step": 5458
+ },
+ {
+ "epoch": 75.82481432940149,
+ "grad_norm": 0.2396935224533081,
+ "learning_rate": 0.0006,
+ "loss": 3.4874000549316406,
+ "step": 5459
+ },
+ {
+ "epoch": 75.83879423328965,
+ "grad_norm": 0.25353050231933594,
+ "learning_rate": 0.0006,
+ "loss": 3.4948503971099854,
+ "step": 5460
+ },
+ {
+ "epoch": 75.8527741371778,
+ "grad_norm": 0.21191656589508057,
+ "learning_rate": 0.0006,
+ "loss": 3.4621965885162354,
+ "step": 5461
+ },
+ {
+ "epoch": 75.86675404106597,
+ "grad_norm": 0.2224014550447464,
+ "learning_rate": 0.0006,
+ "loss": 3.4568324089050293,
+ "step": 5462
+ },
+ {
+ "epoch": 75.88073394495413,
+ "grad_norm": 0.2205243706703186,
+ "learning_rate": 0.0006,
+ "loss": 3.4809136390686035,
+ "step": 5463
+ },
+ {
+ "epoch": 75.89471384884229,
+ "grad_norm": 0.2065657079219818,
+ "learning_rate": 0.0006,
+ "loss": 3.4930431842803955,
+ "step": 5464
+ },
+ {
+ "epoch": 75.90869375273044,
+ "grad_norm": 0.23017582297325134,
+ "learning_rate": 0.0006,
+ "loss": 3.471113443374634,
+ "step": 5465
+ },
+ {
+ "epoch": 75.92267365661861,
+ "grad_norm": 0.23186780512332916,
+ "learning_rate": 0.0006,
+ "loss": 3.4903316497802734,
+ "step": 5466
+ },
+ {
+ "epoch": 75.93665356050677,
+ "grad_norm": 0.21441741287708282,
+ "learning_rate": 0.0006,
+ "loss": 3.4762520790100098,
+ "step": 5467
+ },
+ {
+ "epoch": 75.95063346439493,
+ "grad_norm": 0.23942787945270538,
+ "learning_rate": 0.0006,
+ "loss": 3.5144190788269043,
+ "step": 5468
+ },
+ {
+ "epoch": 75.9646133682831,
+ "grad_norm": 0.2516455352306366,
+ "learning_rate": 0.0006,
+ "loss": 3.496724843978882,
+ "step": 5469
+ },
+ {
+ "epoch": 75.97859327217125,
+ "grad_norm": 0.26983004808425903,
+ "learning_rate": 0.0006,
+ "loss": 3.4975180625915527,
+ "step": 5470
+ },
+ {
+ "epoch": 75.99257317605941,
+ "grad_norm": 0.2471132129430771,
+ "learning_rate": 0.0006,
+ "loss": 3.4897234439849854,
+ "step": 5471
+ },
+ {
+ "epoch": 76.0,
+ "grad_norm": 0.2606436014175415,
+ "learning_rate": 0.0006,
+ "loss": 3.4784388542175293,
+ "step": 5472
+ },
+ {
+ "epoch": 76.0,
+ "eval_loss": 3.973442554473877,
+ "eval_runtime": 46.348,
+ "eval_samples_per_second": 52.688,
+ "eval_steps_per_second": 3.301,
+ "step": 5472
+ },
+ {
+ "epoch": 76.01397990388816,
+ "grad_norm": 0.28274571895599365,
+ "learning_rate": 0.0006,
+ "loss": 3.432469367980957,
+ "step": 5473
+ },
+ {
+ "epoch": 76.02795980777633,
+ "grad_norm": 0.3165026009082794,
+ "learning_rate": 0.0006,
+ "loss": 3.4121832847595215,
+ "step": 5474
+ },
+ {
+ "epoch": 76.04193971166448,
+ "grad_norm": 0.33816471695899963,
+ "learning_rate": 0.0006,
+ "loss": 3.429927349090576,
+ "step": 5475
+ },
+ {
+ "epoch": 76.05591961555264,
+ "grad_norm": 0.2813689112663269,
+ "learning_rate": 0.0006,
+ "loss": 3.4992995262145996,
+ "step": 5476
+ },
+ {
+ "epoch": 76.06989951944081,
+ "grad_norm": 0.2319067418575287,
+ "learning_rate": 0.0006,
+ "loss": 3.468172073364258,
+ "step": 5477
+ },
+ {
+ "epoch": 76.08387942332897,
+ "grad_norm": 0.2963521182537079,
+ "learning_rate": 0.0006,
+ "loss": 3.4306883811950684,
+ "step": 5478
+ },
+ {
+ "epoch": 76.09785932721712,
+ "grad_norm": 0.3123914301395416,
+ "learning_rate": 0.0006,
+ "loss": 3.434607982635498,
+ "step": 5479
+ },
+ {
+ "epoch": 76.1118392311053,
+ "grad_norm": 0.28318360447883606,
+ "learning_rate": 0.0006,
+ "loss": 3.4461169242858887,
+ "step": 5480
+ },
+ {
+ "epoch": 76.12581913499345,
+ "grad_norm": 0.2599116265773773,
+ "learning_rate": 0.0006,
+ "loss": 3.452208995819092,
+ "step": 5481
+ },
+ {
+ "epoch": 76.1397990388816,
+ "grad_norm": 0.2547946274280548,
+ "learning_rate": 0.0006,
+ "loss": 3.456831455230713,
+ "step": 5482
+ },
+ {
+ "epoch": 76.15377894276976,
+ "grad_norm": 0.25178053975105286,
+ "learning_rate": 0.0006,
+ "loss": 3.4486212730407715,
+ "step": 5483
+ },
+ {
+ "epoch": 76.16775884665793,
+ "grad_norm": 0.2500477135181427,
+ "learning_rate": 0.0006,
+ "loss": 3.4861841201782227,
+ "step": 5484
+ },
+ {
+ "epoch": 76.18173875054609,
+ "grad_norm": 0.25729069113731384,
+ "learning_rate": 0.0006,
+ "loss": 3.4522268772125244,
+ "step": 5485
+ },
+ {
+ "epoch": 76.19571865443424,
+ "grad_norm": 0.2618412375450134,
+ "learning_rate": 0.0006,
+ "loss": 3.4625625610351562,
+ "step": 5486
+ },
+ {
+ "epoch": 76.20969855832242,
+ "grad_norm": 0.24906174838542938,
+ "learning_rate": 0.0006,
+ "loss": 3.5010147094726562,
+ "step": 5487
+ },
+ {
+ "epoch": 76.22367846221057,
+ "grad_norm": 0.2631669342517853,
+ "learning_rate": 0.0006,
+ "loss": 3.4834048748016357,
+ "step": 5488
+ },
+ {
+ "epoch": 76.23765836609873,
+ "grad_norm": 0.22962148487567902,
+ "learning_rate": 0.0006,
+ "loss": 3.437201976776123,
+ "step": 5489
+ },
+ {
+ "epoch": 76.2516382699869,
+ "grad_norm": 0.21113844215869904,
+ "learning_rate": 0.0006,
+ "loss": 3.4715452194213867,
+ "step": 5490
+ },
+ {
+ "epoch": 76.26561817387505,
+ "grad_norm": 0.21345451474189758,
+ "learning_rate": 0.0006,
+ "loss": 3.470175266265869,
+ "step": 5491
+ },
+ {
+ "epoch": 76.27959807776321,
+ "grad_norm": 0.22897619009017944,
+ "learning_rate": 0.0006,
+ "loss": 3.458296775817871,
+ "step": 5492
+ },
+ {
+ "epoch": 76.29357798165138,
+ "grad_norm": 0.2222777009010315,
+ "learning_rate": 0.0006,
+ "loss": 3.4519572257995605,
+ "step": 5493
+ },
+ {
+ "epoch": 76.30755788553954,
+ "grad_norm": 0.2297116070985794,
+ "learning_rate": 0.0006,
+ "loss": 3.470816135406494,
+ "step": 5494
+ },
+ {
+ "epoch": 76.3215377894277,
+ "grad_norm": 0.24459777772426605,
+ "learning_rate": 0.0006,
+ "loss": 3.490407943725586,
+ "step": 5495
+ },
+ {
+ "epoch": 76.33551769331586,
+ "grad_norm": 0.22549642622470856,
+ "learning_rate": 0.0006,
+ "loss": 3.471388816833496,
+ "step": 5496
+ },
+ {
+ "epoch": 76.34949759720402,
+ "grad_norm": 0.220009908080101,
+ "learning_rate": 0.0006,
+ "loss": 3.46909761428833,
+ "step": 5497
+ },
+ {
+ "epoch": 76.36347750109218,
+ "grad_norm": 0.21473553776741028,
+ "learning_rate": 0.0006,
+ "loss": 3.491536855697632,
+ "step": 5498
+ },
+ {
+ "epoch": 76.37745740498035,
+ "grad_norm": 0.20368808507919312,
+ "learning_rate": 0.0006,
+ "loss": 3.449502944946289,
+ "step": 5499
+ },
+ {
+ "epoch": 76.3914373088685,
+ "grad_norm": 0.20559734106063843,
+ "learning_rate": 0.0006,
+ "loss": 3.4466171264648438,
+ "step": 5500
+ },
+ {
+ "epoch": 76.40541721275666,
+ "grad_norm": 0.2107473611831665,
+ "learning_rate": 0.0006,
+ "loss": 3.4709558486938477,
+ "step": 5501
+ },
+ {
+ "epoch": 76.41939711664482,
+ "grad_norm": 0.20774322748184204,
+ "learning_rate": 0.0006,
+ "loss": 3.5067873001098633,
+ "step": 5502
+ },
+ {
+ "epoch": 76.43337702053299,
+ "grad_norm": 0.20616984367370605,
+ "learning_rate": 0.0006,
+ "loss": 3.46718168258667,
+ "step": 5503
+ },
+ {
+ "epoch": 76.44735692442114,
+ "grad_norm": 0.22518491744995117,
+ "learning_rate": 0.0006,
+ "loss": 3.4624900817871094,
+ "step": 5504
+ },
+ {
+ "epoch": 76.4613368283093,
+ "grad_norm": 0.21241682767868042,
+ "learning_rate": 0.0006,
+ "loss": 3.4807918071746826,
+ "step": 5505
+ },
+ {
+ "epoch": 76.47531673219747,
+ "grad_norm": 0.20331047475337982,
+ "learning_rate": 0.0006,
+ "loss": 3.4387712478637695,
+ "step": 5506
+ },
+ {
+ "epoch": 76.48929663608563,
+ "grad_norm": 0.20476725697517395,
+ "learning_rate": 0.0006,
+ "loss": 3.478198528289795,
+ "step": 5507
+ },
+ {
+ "epoch": 76.50327653997378,
+ "grad_norm": 0.19799263775348663,
+ "learning_rate": 0.0006,
+ "loss": 3.458812713623047,
+ "step": 5508
+ },
+ {
+ "epoch": 76.51725644386195,
+ "grad_norm": 0.20378418266773224,
+ "learning_rate": 0.0006,
+ "loss": 3.492115020751953,
+ "step": 5509
+ },
+ {
+ "epoch": 76.53123634775011,
+ "grad_norm": 0.19318847358226776,
+ "learning_rate": 0.0006,
+ "loss": 3.444512128829956,
+ "step": 5510
+ },
+ {
+ "epoch": 76.54521625163827,
+ "grad_norm": 0.20766256749629974,
+ "learning_rate": 0.0006,
+ "loss": 3.4897234439849854,
+ "step": 5511
+ },
+ {
+ "epoch": 76.55919615552644,
+ "grad_norm": 0.20554299652576447,
+ "learning_rate": 0.0006,
+ "loss": 3.470285415649414,
+ "step": 5512
+ },
+ {
+ "epoch": 76.57317605941459,
+ "grad_norm": 0.21081854403018951,
+ "learning_rate": 0.0006,
+ "loss": 3.473558187484741,
+ "step": 5513
+ },
+ {
+ "epoch": 76.58715596330275,
+ "grad_norm": 0.23622071743011475,
+ "learning_rate": 0.0006,
+ "loss": 3.4782865047454834,
+ "step": 5514
+ },
+ {
+ "epoch": 76.60113586719092,
+ "grad_norm": 0.22481192648410797,
+ "learning_rate": 0.0006,
+ "loss": 3.4996776580810547,
+ "step": 5515
+ },
+ {
+ "epoch": 76.61511577107908,
+ "grad_norm": 0.2192675620317459,
+ "learning_rate": 0.0006,
+ "loss": 3.521728277206421,
+ "step": 5516
+ },
+ {
+ "epoch": 76.62909567496723,
+ "grad_norm": 0.23627865314483643,
+ "learning_rate": 0.0006,
+ "loss": 3.5019800662994385,
+ "step": 5517
+ },
+ {
+ "epoch": 76.6430755788554,
+ "grad_norm": 0.22374436259269714,
+ "learning_rate": 0.0006,
+ "loss": 3.4527387619018555,
+ "step": 5518
+ },
+ {
+ "epoch": 76.65705548274356,
+ "grad_norm": 0.23872409760951996,
+ "learning_rate": 0.0006,
+ "loss": 3.4938204288482666,
+ "step": 5519
+ },
+ {
+ "epoch": 76.67103538663171,
+ "grad_norm": 0.23943012952804565,
+ "learning_rate": 0.0006,
+ "loss": 3.4902846813201904,
+ "step": 5520
+ },
+ {
+ "epoch": 76.68501529051987,
+ "grad_norm": 0.23605254292488098,
+ "learning_rate": 0.0006,
+ "loss": 3.4715919494628906,
+ "step": 5521
+ },
+ {
+ "epoch": 76.69899519440804,
+ "grad_norm": 0.2116839587688446,
+ "learning_rate": 0.0006,
+ "loss": 3.515658378601074,
+ "step": 5522
+ },
+ {
+ "epoch": 76.7129750982962,
+ "grad_norm": 0.22817043960094452,
+ "learning_rate": 0.0006,
+ "loss": 3.466154098510742,
+ "step": 5523
+ },
+ {
+ "epoch": 76.72695500218435,
+ "grad_norm": 0.26730015873908997,
+ "learning_rate": 0.0006,
+ "loss": 3.4843881130218506,
+ "step": 5524
+ },
+ {
+ "epoch": 76.74093490607252,
+ "grad_norm": 0.24832892417907715,
+ "learning_rate": 0.0006,
+ "loss": 3.495150566101074,
+ "step": 5525
+ },
+ {
+ "epoch": 76.75491480996068,
+ "grad_norm": 0.2358865737915039,
+ "learning_rate": 0.0006,
+ "loss": 3.475858211517334,
+ "step": 5526
+ },
+ {
+ "epoch": 76.76889471384884,
+ "grad_norm": 0.2310672551393509,
+ "learning_rate": 0.0006,
+ "loss": 3.5099706649780273,
+ "step": 5527
+ },
+ {
+ "epoch": 76.78287461773701,
+ "grad_norm": 0.25284910202026367,
+ "learning_rate": 0.0006,
+ "loss": 3.510529041290283,
+ "step": 5528
+ },
+ {
+ "epoch": 76.79685452162516,
+ "grad_norm": 0.25088873505592346,
+ "learning_rate": 0.0006,
+ "loss": 3.480929374694824,
+ "step": 5529
+ },
+ {
+ "epoch": 76.81083442551332,
+ "grad_norm": 0.2349051833152771,
+ "learning_rate": 0.0006,
+ "loss": 3.457334041595459,
+ "step": 5530
+ },
+ {
+ "epoch": 76.82481432940149,
+ "grad_norm": 0.23446795344352722,
+ "learning_rate": 0.0006,
+ "loss": 3.493607997894287,
+ "step": 5531
+ },
+ {
+ "epoch": 76.83879423328965,
+ "grad_norm": 0.2285156399011612,
+ "learning_rate": 0.0006,
+ "loss": 3.4858193397521973,
+ "step": 5532
+ },
+ {
+ "epoch": 76.8527741371778,
+ "grad_norm": 0.2247011512517929,
+ "learning_rate": 0.0006,
+ "loss": 3.4766390323638916,
+ "step": 5533
+ },
+ {
+ "epoch": 76.86675404106597,
+ "grad_norm": 0.2175820916891098,
+ "learning_rate": 0.0006,
+ "loss": 3.4545059204101562,
+ "step": 5534
+ },
+ {
+ "epoch": 76.88073394495413,
+ "grad_norm": 0.22910308837890625,
+ "learning_rate": 0.0006,
+ "loss": 3.5201025009155273,
+ "step": 5535
+ },
+ {
+ "epoch": 76.89471384884229,
+ "grad_norm": 0.25674742460250854,
+ "learning_rate": 0.0006,
+ "loss": 3.4851608276367188,
+ "step": 5536
+ },
+ {
+ "epoch": 76.90869375273044,
+ "grad_norm": 0.2939974069595337,
+ "learning_rate": 0.0006,
+ "loss": 3.4853453636169434,
+ "step": 5537
+ },
+ {
+ "epoch": 76.92267365661861,
+ "grad_norm": 0.30211713910102844,
+ "learning_rate": 0.0006,
+ "loss": 3.465470790863037,
+ "step": 5538
+ },
+ {
+ "epoch": 76.93665356050677,
+ "grad_norm": 0.27954718470573425,
+ "learning_rate": 0.0006,
+ "loss": 3.4921772480010986,
+ "step": 5539
+ },
+ {
+ "epoch": 76.95063346439493,
+ "grad_norm": 0.22834837436676025,
+ "learning_rate": 0.0006,
+ "loss": 3.4936747550964355,
+ "step": 5540
+ },
+ {
+ "epoch": 76.9646133682831,
+ "grad_norm": 0.2698923349380493,
+ "learning_rate": 0.0006,
+ "loss": 3.477677345275879,
+ "step": 5541
+ },
+ {
+ "epoch": 76.97859327217125,
+ "grad_norm": 0.3047026991844177,
+ "learning_rate": 0.0006,
+ "loss": 3.48386549949646,
+ "step": 5542
+ },
+ {
+ "epoch": 76.99257317605941,
+ "grad_norm": 0.25420624017715454,
+ "learning_rate": 0.0006,
+ "loss": 3.4954631328582764,
+ "step": 5543
+ },
+ {
+ "epoch": 77.0,
+ "grad_norm": 0.24408109486103058,
+ "learning_rate": 0.0006,
+ "loss": 3.445572853088379,
+ "step": 5544
+ },
+ {
+ "epoch": 77.0,
+ "eval_loss": 4.007506847381592,
+ "eval_runtime": 46.4852,
+ "eval_samples_per_second": 52.533,
+ "eval_steps_per_second": 3.291,
+ "step": 5544
+ },
+ {
+ "epoch": 77.01397990388816,
+ "grad_norm": 0.2915779650211334,
+ "learning_rate": 0.0006,
+ "loss": 3.4563474655151367,
+ "step": 5545
+ },
+ {
+ "epoch": 77.02795980777633,
+ "grad_norm": 0.3169223964214325,
+ "learning_rate": 0.0006,
+ "loss": 3.4652180671691895,
+ "step": 5546
+ },
+ {
+ "epoch": 77.04193971166448,
+ "grad_norm": 0.25844213366508484,
+ "learning_rate": 0.0006,
+ "loss": 3.462665319442749,
+ "step": 5547
+ },
+ {
+ "epoch": 77.05591961555264,
+ "grad_norm": 0.25074702501296997,
+ "learning_rate": 0.0006,
+ "loss": 3.4422531127929688,
+ "step": 5548
+ },
+ {
+ "epoch": 77.06989951944081,
+ "grad_norm": 0.25484949350357056,
+ "learning_rate": 0.0006,
+ "loss": 3.4290740489959717,
+ "step": 5549
+ },
+ {
+ "epoch": 77.08387942332897,
+ "grad_norm": 0.25956255197525024,
+ "learning_rate": 0.0006,
+ "loss": 3.450035333633423,
+ "step": 5550
+ },
+ {
+ "epoch": 77.09785932721712,
+ "grad_norm": 0.22940650582313538,
+ "learning_rate": 0.0006,
+ "loss": 3.4249258041381836,
+ "step": 5551
+ },
+ {
+ "epoch": 77.1118392311053,
+ "grad_norm": 0.2277630716562271,
+ "learning_rate": 0.0006,
+ "loss": 3.4766159057617188,
+ "step": 5552
+ },
+ {
+ "epoch": 77.12581913499345,
+ "grad_norm": 0.23797406256198883,
+ "learning_rate": 0.0006,
+ "loss": 3.4734766483306885,
+ "step": 5553
+ },
+ {
+ "epoch": 77.1397990388816,
+ "grad_norm": 0.21684569120407104,
+ "learning_rate": 0.0006,
+ "loss": 3.459162950515747,
+ "step": 5554
+ },
+ {
+ "epoch": 77.15377894276976,
+ "grad_norm": 0.22176246345043182,
+ "learning_rate": 0.0006,
+ "loss": 3.4285407066345215,
+ "step": 5555
+ },
+ {
+ "epoch": 77.16775884665793,
+ "grad_norm": 0.22516196966171265,
+ "learning_rate": 0.0006,
+ "loss": 3.430083990097046,
+ "step": 5556
+ },
+ {
+ "epoch": 77.18173875054609,
+ "grad_norm": 0.21629488468170166,
+ "learning_rate": 0.0006,
+ "loss": 3.4317891597747803,
+ "step": 5557
+ },
+ {
+ "epoch": 77.19571865443424,
+ "grad_norm": 0.2110232561826706,
+ "learning_rate": 0.0006,
+ "loss": 3.441636085510254,
+ "step": 5558
+ },
+ {
+ "epoch": 77.20969855832242,
+ "grad_norm": 0.23733535408973694,
+ "learning_rate": 0.0006,
+ "loss": 3.4615190029144287,
+ "step": 5559
+ },
+ {
+ "epoch": 77.22367846221057,
+ "grad_norm": 0.2405165284872055,
+ "learning_rate": 0.0006,
+ "loss": 3.4209976196289062,
+ "step": 5560
+ },
+ {
+ "epoch": 77.23765836609873,
+ "grad_norm": 0.2469998598098755,
+ "learning_rate": 0.0006,
+ "loss": 3.4215030670166016,
+ "step": 5561
+ },
+ {
+ "epoch": 77.2516382699869,
+ "grad_norm": 0.25612175464630127,
+ "learning_rate": 0.0006,
+ "loss": 3.438417911529541,
+ "step": 5562
+ },
+ {
+ "epoch": 77.26561817387505,
+ "grad_norm": 0.23456519842147827,
+ "learning_rate": 0.0006,
+ "loss": 3.455623149871826,
+ "step": 5563
+ },
+ {
+ "epoch": 77.27959807776321,
+ "grad_norm": 0.21399898827075958,
+ "learning_rate": 0.0006,
+ "loss": 3.4647960662841797,
+ "step": 5564
+ },
+ {
+ "epoch": 77.29357798165138,
+ "grad_norm": 0.2188381850719452,
+ "learning_rate": 0.0006,
+ "loss": 3.4621052742004395,
+ "step": 5565
+ },
+ {
+ "epoch": 77.30755788553954,
+ "grad_norm": 0.24125352501869202,
+ "learning_rate": 0.0006,
+ "loss": 3.4713289737701416,
+ "step": 5566
+ },
+ {
+ "epoch": 77.3215377894277,
+ "grad_norm": 0.2860930562019348,
+ "learning_rate": 0.0006,
+ "loss": 3.4664835929870605,
+ "step": 5567
+ },
+ {
+ "epoch": 77.33551769331586,
+ "grad_norm": 0.26902931928634644,
+ "learning_rate": 0.0006,
+ "loss": 3.4329450130462646,
+ "step": 5568
+ },
+ {
+ "epoch": 77.34949759720402,
+ "grad_norm": 0.23035289347171783,
+ "learning_rate": 0.0006,
+ "loss": 3.4574995040893555,
+ "step": 5569
+ },
+ {
+ "epoch": 77.36347750109218,
+ "grad_norm": 0.21633122861385345,
+ "learning_rate": 0.0006,
+ "loss": 3.4807615280151367,
+ "step": 5570
+ },
+ {
+ "epoch": 77.37745740498035,
+ "grad_norm": 0.2515130043029785,
+ "learning_rate": 0.0006,
+ "loss": 3.4523189067840576,
+ "step": 5571
+ },
+ {
+ "epoch": 77.3914373088685,
+ "grad_norm": 0.24801862239837646,
+ "learning_rate": 0.0006,
+ "loss": 3.4288992881774902,
+ "step": 5572
+ },
+ {
+ "epoch": 77.40541721275666,
+ "grad_norm": 0.2390354871749878,
+ "learning_rate": 0.0006,
+ "loss": 3.484312057495117,
+ "step": 5573
+ },
+ {
+ "epoch": 77.41939711664482,
+ "grad_norm": 0.21863406896591187,
+ "learning_rate": 0.0006,
+ "loss": 3.514920234680176,
+ "step": 5574
+ },
+ {
+ "epoch": 77.43337702053299,
+ "grad_norm": 0.24056300520896912,
+ "learning_rate": 0.0006,
+ "loss": 3.4896860122680664,
+ "step": 5575
+ },
+ {
+ "epoch": 77.44735692442114,
+ "grad_norm": 0.23909592628479004,
+ "learning_rate": 0.0006,
+ "loss": 3.4793200492858887,
+ "step": 5576
+ },
+ {
+ "epoch": 77.4613368283093,
+ "grad_norm": 0.24454306066036224,
+ "learning_rate": 0.0006,
+ "loss": 3.461653470993042,
+ "step": 5577
+ },
+ {
+ "epoch": 77.47531673219747,
+ "grad_norm": 0.2615761160850525,
+ "learning_rate": 0.0006,
+ "loss": 3.465709686279297,
+ "step": 5578
+ },
+ {
+ "epoch": 77.48929663608563,
+ "grad_norm": 0.29720982909202576,
+ "learning_rate": 0.0006,
+ "loss": 3.4943344593048096,
+ "step": 5579
+ },
+ {
+ "epoch": 77.50327653997378,
+ "grad_norm": 0.2776208221912384,
+ "learning_rate": 0.0006,
+ "loss": 3.4455578327178955,
+ "step": 5580
+ },
+ {
+ "epoch": 77.51725644386195,
+ "grad_norm": 0.23060724139213562,
+ "learning_rate": 0.0006,
+ "loss": 3.505800724029541,
+ "step": 5581
+ },
+ {
+ "epoch": 77.53123634775011,
+ "grad_norm": 0.24247834086418152,
+ "learning_rate": 0.0006,
+ "loss": 3.4776053428649902,
+ "step": 5582
+ },
+ {
+ "epoch": 77.54521625163827,
+ "grad_norm": 0.2725653648376465,
+ "learning_rate": 0.0006,
+ "loss": 3.4901909828186035,
+ "step": 5583
+ },
+ {
+ "epoch": 77.55919615552644,
+ "grad_norm": 0.2663135528564453,
+ "learning_rate": 0.0006,
+ "loss": 3.4535939693450928,
+ "step": 5584
+ },
+ {
+ "epoch": 77.57317605941459,
+ "grad_norm": 0.22942234575748444,
+ "learning_rate": 0.0006,
+ "loss": 3.4478676319122314,
+ "step": 5585
+ },
+ {
+ "epoch": 77.58715596330275,
+ "grad_norm": 0.23543357849121094,
+ "learning_rate": 0.0006,
+ "loss": 3.4794795513153076,
+ "step": 5586
+ },
+ {
+ "epoch": 77.60113586719092,
+ "grad_norm": 0.24251683056354523,
+ "learning_rate": 0.0006,
+ "loss": 3.51051664352417,
+ "step": 5587
+ },
+ {
+ "epoch": 77.61511577107908,
+ "grad_norm": 0.2273259162902832,
+ "learning_rate": 0.0006,
+ "loss": 3.506385326385498,
+ "step": 5588
+ },
+ {
+ "epoch": 77.62909567496723,
+ "grad_norm": 0.23449701070785522,
+ "learning_rate": 0.0006,
+ "loss": 3.481034278869629,
+ "step": 5589
+ },
+ {
+ "epoch": 77.6430755788554,
+ "grad_norm": 0.25050288438796997,
+ "learning_rate": 0.0006,
+ "loss": 3.449924945831299,
+ "step": 5590
+ },
+ {
+ "epoch": 77.65705548274356,
+ "grad_norm": 0.25048449635505676,
+ "learning_rate": 0.0006,
+ "loss": 3.500735282897949,
+ "step": 5591
+ },
+ {
+ "epoch": 77.67103538663171,
+ "grad_norm": 0.2699182629585266,
+ "learning_rate": 0.0006,
+ "loss": 3.5185136795043945,
+ "step": 5592
+ },
+ {
+ "epoch": 77.68501529051987,
+ "grad_norm": 0.2451692819595337,
+ "learning_rate": 0.0006,
+ "loss": 3.4736194610595703,
+ "step": 5593
+ },
+ {
+ "epoch": 77.69899519440804,
+ "grad_norm": 0.24240832030773163,
+ "learning_rate": 0.0006,
+ "loss": 3.510906219482422,
+ "step": 5594
+ },
+ {
+ "epoch": 77.7129750982962,
+ "grad_norm": 0.24055726826190948,
+ "learning_rate": 0.0006,
+ "loss": 3.4826507568359375,
+ "step": 5595
+ },
+ {
+ "epoch": 77.72695500218435,
+ "grad_norm": 0.21117587387561798,
+ "learning_rate": 0.0006,
+ "loss": 3.4430460929870605,
+ "step": 5596
+ },
+ {
+ "epoch": 77.74093490607252,
+ "grad_norm": 0.22443950176239014,
+ "learning_rate": 0.0006,
+ "loss": 3.478419780731201,
+ "step": 5597
+ },
+ {
+ "epoch": 77.75491480996068,
+ "grad_norm": 0.265615314245224,
+ "learning_rate": 0.0006,
+ "loss": 3.511934280395508,
+ "step": 5598
+ },
+ {
+ "epoch": 77.76889471384884,
+ "grad_norm": 0.27084261178970337,
+ "learning_rate": 0.0006,
+ "loss": 3.5032665729522705,
+ "step": 5599
+ },
+ {
+ "epoch": 77.78287461773701,
+ "grad_norm": 0.24575908482074738,
+ "learning_rate": 0.0006,
+ "loss": 3.463124990463257,
+ "step": 5600
+ },
+ {
+ "epoch": 77.79685452162516,
+ "grad_norm": 0.24604707956314087,
+ "learning_rate": 0.0006,
+ "loss": 3.500135898590088,
+ "step": 5601
+ },
+ {
+ "epoch": 77.81083442551332,
+ "grad_norm": 0.23443962633609772,
+ "learning_rate": 0.0006,
+ "loss": 3.4497289657592773,
+ "step": 5602
+ },
+ {
+ "epoch": 77.82481432940149,
+ "grad_norm": 0.23644082248210907,
+ "learning_rate": 0.0006,
+ "loss": 3.47178316116333,
+ "step": 5603
+ },
+ {
+ "epoch": 77.83879423328965,
+ "grad_norm": 0.20530658960342407,
+ "learning_rate": 0.0006,
+ "loss": 3.455582618713379,
+ "step": 5604
+ },
+ {
+ "epoch": 77.8527741371778,
+ "grad_norm": 0.2663075029850006,
+ "learning_rate": 0.0006,
+ "loss": 3.5106711387634277,
+ "step": 5605
+ },
+ {
+ "epoch": 77.86675404106597,
+ "grad_norm": 0.3181896507740021,
+ "learning_rate": 0.0006,
+ "loss": 3.4886298179626465,
+ "step": 5606
+ },
+ {
+ "epoch": 77.88073394495413,
+ "grad_norm": 0.30120763182640076,
+ "learning_rate": 0.0006,
+ "loss": 3.5012121200561523,
+ "step": 5607
+ },
+ {
+ "epoch": 77.89471384884229,
+ "grad_norm": 0.2766421139240265,
+ "learning_rate": 0.0006,
+ "loss": 3.465404748916626,
+ "step": 5608
+ },
+ {
+ "epoch": 77.90869375273044,
+ "grad_norm": 0.26150527596473694,
+ "learning_rate": 0.0006,
+ "loss": 3.505079984664917,
+ "step": 5609
+ },
+ {
+ "epoch": 77.92267365661861,
+ "grad_norm": 0.2585010826587677,
+ "learning_rate": 0.0006,
+ "loss": 3.46713924407959,
+ "step": 5610
+ },
+ {
+ "epoch": 77.93665356050677,
+ "grad_norm": 0.2746208608150482,
+ "learning_rate": 0.0006,
+ "loss": 3.464250087738037,
+ "step": 5611
+ },
+ {
+ "epoch": 77.95063346439493,
+ "grad_norm": 0.2630884647369385,
+ "learning_rate": 0.0006,
+ "loss": 3.4834718704223633,
+ "step": 5612
+ },
+ {
+ "epoch": 77.9646133682831,
+ "grad_norm": 0.23336872458457947,
+ "learning_rate": 0.0006,
+ "loss": 3.5086607933044434,
+ "step": 5613
+ },
+ {
+ "epoch": 77.97859327217125,
+ "grad_norm": 0.22938823699951172,
+ "learning_rate": 0.0006,
+ "loss": 3.5135412216186523,
+ "step": 5614
+ },
+ {
+ "epoch": 77.99257317605941,
+ "grad_norm": 0.22952115535736084,
+ "learning_rate": 0.0006,
+ "loss": 3.4909496307373047,
+ "step": 5615
+ },
+ {
+ "epoch": 78.0,
+ "grad_norm": 0.244375079870224,
+ "learning_rate": 0.0006,
+ "loss": 3.5009336471557617,
+ "step": 5616
+ },
+ {
+ "epoch": 78.0,
+ "eval_loss": 3.9880237579345703,
+ "eval_runtime": 46.3392,
+ "eval_samples_per_second": 52.698,
+ "eval_steps_per_second": 3.302,
+ "step": 5616
+ },
+ {
+ "epoch": 78.01397990388816,
+ "grad_norm": 0.21258895099163055,
+ "learning_rate": 0.0006,
+ "loss": 3.473972797393799,
+ "step": 5617
+ },
+ {
+ "epoch": 78.02795980777633,
+ "grad_norm": 0.24391628801822662,
+ "learning_rate": 0.0006,
+ "loss": 3.422597646713257,
+ "step": 5618
+ },
+ {
+ "epoch": 78.04193971166448,
+ "grad_norm": 0.2876848578453064,
+ "learning_rate": 0.0006,
+ "loss": 3.458035469055176,
+ "step": 5619
+ },
+ {
+ "epoch": 78.05591961555264,
+ "grad_norm": 0.29750117659568787,
+ "learning_rate": 0.0006,
+ "loss": 3.4394774436950684,
+ "step": 5620
+ },
+ {
+ "epoch": 78.06989951944081,
+ "grad_norm": 0.2604219615459442,
+ "learning_rate": 0.0006,
+ "loss": 3.450514793395996,
+ "step": 5621
+ },
+ {
+ "epoch": 78.08387942332897,
+ "grad_norm": 0.2383262813091278,
+ "learning_rate": 0.0006,
+ "loss": 3.4291372299194336,
+ "step": 5622
+ },
+ {
+ "epoch": 78.09785932721712,
+ "grad_norm": 0.2188589870929718,
+ "learning_rate": 0.0006,
+ "loss": 3.441857099533081,
+ "step": 5623
+ },
+ {
+ "epoch": 78.1118392311053,
+ "grad_norm": 0.20857281982898712,
+ "learning_rate": 0.0006,
+ "loss": 3.444624423980713,
+ "step": 5624
+ },
+ {
+ "epoch": 78.12581913499345,
+ "grad_norm": 0.25901344418525696,
+ "learning_rate": 0.0006,
+ "loss": 3.436108112335205,
+ "step": 5625
+ },
+ {
+ "epoch": 78.1397990388816,
+ "grad_norm": 0.29044362902641296,
+ "learning_rate": 0.0006,
+ "loss": 3.4631142616271973,
+ "step": 5626
+ },
+ {
+ "epoch": 78.15377894276976,
+ "grad_norm": 0.2697533071041107,
+ "learning_rate": 0.0006,
+ "loss": 3.47342586517334,
+ "step": 5627
+ },
+ {
+ "epoch": 78.16775884665793,
+ "grad_norm": 0.23660187423229218,
+ "learning_rate": 0.0006,
+ "loss": 3.4970450401306152,
+ "step": 5628
+ },
+ {
+ "epoch": 78.18173875054609,
+ "grad_norm": 0.2369665950536728,
+ "learning_rate": 0.0006,
+ "loss": 3.4965858459472656,
+ "step": 5629
+ },
+ {
+ "epoch": 78.19571865443424,
+ "grad_norm": 0.2571038603782654,
+ "learning_rate": 0.0006,
+ "loss": 3.412412166595459,
+ "step": 5630
+ },
+ {
+ "epoch": 78.20969855832242,
+ "grad_norm": 0.26016053557395935,
+ "learning_rate": 0.0006,
+ "loss": 3.4462265968322754,
+ "step": 5631
+ },
+ {
+ "epoch": 78.22367846221057,
+ "grad_norm": 0.2378724217414856,
+ "learning_rate": 0.0006,
+ "loss": 3.4451708793640137,
+ "step": 5632
+ },
+ {
+ "epoch": 78.23765836609873,
+ "grad_norm": 0.24232783913612366,
+ "learning_rate": 0.0006,
+ "loss": 3.4438111782073975,
+ "step": 5633
+ },
+ {
+ "epoch": 78.2516382699869,
+ "grad_norm": 0.23770418763160706,
+ "learning_rate": 0.0006,
+ "loss": 3.43533992767334,
+ "step": 5634
+ },
+ {
+ "epoch": 78.26561817387505,
+ "grad_norm": 0.23466856777668,
+ "learning_rate": 0.0006,
+ "loss": 3.48561954498291,
+ "step": 5635
+ },
+ {
+ "epoch": 78.27959807776321,
+ "grad_norm": 0.2326284646987915,
+ "learning_rate": 0.0006,
+ "loss": 3.473475217819214,
+ "step": 5636
+ },
+ {
+ "epoch": 78.29357798165138,
+ "grad_norm": 0.24022948741912842,
+ "learning_rate": 0.0006,
+ "loss": 3.4412283897399902,
+ "step": 5637
+ },
+ {
+ "epoch": 78.30755788553954,
+ "grad_norm": 0.2522888779640198,
+ "learning_rate": 0.0006,
+ "loss": 3.4387173652648926,
+ "step": 5638
+ },
+ {
+ "epoch": 78.3215377894277,
+ "grad_norm": 0.2409897744655609,
+ "learning_rate": 0.0006,
+ "loss": 3.4434142112731934,
+ "step": 5639
+ },
+ {
+ "epoch": 78.33551769331586,
+ "grad_norm": 0.24789150059223175,
+ "learning_rate": 0.0006,
+ "loss": 3.479180335998535,
+ "step": 5640
+ },
+ {
+ "epoch": 78.34949759720402,
+ "grad_norm": 0.23893289268016815,
+ "learning_rate": 0.0006,
+ "loss": 3.4569711685180664,
+ "step": 5641
+ },
+ {
+ "epoch": 78.36347750109218,
+ "grad_norm": 0.25813573598861694,
+ "learning_rate": 0.0006,
+ "loss": 3.4897937774658203,
+ "step": 5642
+ },
+ {
+ "epoch": 78.37745740498035,
+ "grad_norm": 0.2786903977394104,
+ "learning_rate": 0.0006,
+ "loss": 3.449057102203369,
+ "step": 5643
+ },
+ {
+ "epoch": 78.3914373088685,
+ "grad_norm": 0.2671049237251282,
+ "learning_rate": 0.0006,
+ "loss": 3.4653759002685547,
+ "step": 5644
+ },
+ {
+ "epoch": 78.40541721275666,
+ "grad_norm": 0.22132059931755066,
+ "learning_rate": 0.0006,
+ "loss": 3.469104766845703,
+ "step": 5645
+ },
+ {
+ "epoch": 78.41939711664482,
+ "grad_norm": 0.23016799986362457,
+ "learning_rate": 0.0006,
+ "loss": 3.459315776824951,
+ "step": 5646
+ },
+ {
+ "epoch": 78.43337702053299,
+ "grad_norm": 0.24416282773017883,
+ "learning_rate": 0.0006,
+ "loss": 3.455636978149414,
+ "step": 5647
+ },
+ {
+ "epoch": 78.44735692442114,
+ "grad_norm": 0.21846890449523926,
+ "learning_rate": 0.0006,
+ "loss": 3.448091506958008,
+ "step": 5648
+ },
+ {
+ "epoch": 78.4613368283093,
+ "grad_norm": 0.23508375883102417,
+ "learning_rate": 0.0006,
+ "loss": 3.4912142753601074,
+ "step": 5649
+ },
+ {
+ "epoch": 78.47531673219747,
+ "grad_norm": 0.2555168867111206,
+ "learning_rate": 0.0006,
+ "loss": 3.4540610313415527,
+ "step": 5650
+ },
+ {
+ "epoch": 78.48929663608563,
+ "grad_norm": 0.24908530712127686,
+ "learning_rate": 0.0006,
+ "loss": 3.4480438232421875,
+ "step": 5651
+ },
+ {
+ "epoch": 78.50327653997378,
+ "grad_norm": 0.21412776410579681,
+ "learning_rate": 0.0006,
+ "loss": 3.4866371154785156,
+ "step": 5652
+ },
+ {
+ "epoch": 78.51725644386195,
+ "grad_norm": 0.20922242105007172,
+ "learning_rate": 0.0006,
+ "loss": 3.478621006011963,
+ "step": 5653
+ },
+ {
+ "epoch": 78.53123634775011,
+ "grad_norm": 0.2246457040309906,
+ "learning_rate": 0.0006,
+ "loss": 3.481985569000244,
+ "step": 5654
+ },
+ {
+ "epoch": 78.54521625163827,
+ "grad_norm": 0.2635398805141449,
+ "learning_rate": 0.0006,
+ "loss": 3.4374074935913086,
+ "step": 5655
+ },
+ {
+ "epoch": 78.55919615552644,
+ "grad_norm": 0.24871022999286652,
+ "learning_rate": 0.0006,
+ "loss": 3.4646430015563965,
+ "step": 5656
+ },
+ {
+ "epoch": 78.57317605941459,
+ "grad_norm": 0.20784349739551544,
+ "learning_rate": 0.0006,
+ "loss": 3.5141677856445312,
+ "step": 5657
+ },
+ {
+ "epoch": 78.58715596330275,
+ "grad_norm": 0.22655104100704193,
+ "learning_rate": 0.0006,
+ "loss": 3.4698171615600586,
+ "step": 5658
+ },
+ {
+ "epoch": 78.60113586719092,
+ "grad_norm": 0.22383511066436768,
+ "learning_rate": 0.0006,
+ "loss": 3.444244146347046,
+ "step": 5659
+ },
+ {
+ "epoch": 78.61511577107908,
+ "grad_norm": 0.2113238275051117,
+ "learning_rate": 0.0006,
+ "loss": 3.465719223022461,
+ "step": 5660
+ },
+ {
+ "epoch": 78.62909567496723,
+ "grad_norm": 0.19101600348949432,
+ "learning_rate": 0.0006,
+ "loss": 3.484689712524414,
+ "step": 5661
+ },
+ {
+ "epoch": 78.6430755788554,
+ "grad_norm": 0.2073238044977188,
+ "learning_rate": 0.0006,
+ "loss": 3.46522855758667,
+ "step": 5662
+ },
+ {
+ "epoch": 78.65705548274356,
+ "grad_norm": 0.21808618307113647,
+ "learning_rate": 0.0006,
+ "loss": 3.479005813598633,
+ "step": 5663
+ },
+ {
+ "epoch": 78.67103538663171,
+ "grad_norm": 0.203338161110878,
+ "learning_rate": 0.0006,
+ "loss": 3.492825984954834,
+ "step": 5664
+ },
+ {
+ "epoch": 78.68501529051987,
+ "grad_norm": 0.23006507754325867,
+ "learning_rate": 0.0006,
+ "loss": 3.4999642372131348,
+ "step": 5665
+ },
+ {
+ "epoch": 78.69899519440804,
+ "grad_norm": 0.2446610927581787,
+ "learning_rate": 0.0006,
+ "loss": 3.48500919342041,
+ "step": 5666
+ },
+ {
+ "epoch": 78.7129750982962,
+ "grad_norm": 0.2601945400238037,
+ "learning_rate": 0.0006,
+ "loss": 3.4861927032470703,
+ "step": 5667
+ },
+ {
+ "epoch": 78.72695500218435,
+ "grad_norm": 0.23464927077293396,
+ "learning_rate": 0.0006,
+ "loss": 3.474249839782715,
+ "step": 5668
+ },
+ {
+ "epoch": 78.74093490607252,
+ "grad_norm": 0.21698802709579468,
+ "learning_rate": 0.0006,
+ "loss": 3.499706745147705,
+ "step": 5669
+ },
+ {
+ "epoch": 78.75491480996068,
+ "grad_norm": 0.22146548330783844,
+ "learning_rate": 0.0006,
+ "loss": 3.496151924133301,
+ "step": 5670
+ },
+ {
+ "epoch": 78.76889471384884,
+ "grad_norm": 0.2459285408258438,
+ "learning_rate": 0.0006,
+ "loss": 3.4743995666503906,
+ "step": 5671
+ },
+ {
+ "epoch": 78.78287461773701,
+ "grad_norm": 0.2358015924692154,
+ "learning_rate": 0.0006,
+ "loss": 3.479529857635498,
+ "step": 5672
+ },
+ {
+ "epoch": 78.79685452162516,
+ "grad_norm": 0.23457956314086914,
+ "learning_rate": 0.0006,
+ "loss": 3.4957330226898193,
+ "step": 5673
+ },
+ {
+ "epoch": 78.81083442551332,
+ "grad_norm": 0.21969331800937653,
+ "learning_rate": 0.0006,
+ "loss": 3.4782285690307617,
+ "step": 5674
+ },
+ {
+ "epoch": 78.82481432940149,
+ "grad_norm": 0.23743604123592377,
+ "learning_rate": 0.0006,
+ "loss": 3.497030735015869,
+ "step": 5675
+ },
+ {
+ "epoch": 78.83879423328965,
+ "grad_norm": 0.23925618827342987,
+ "learning_rate": 0.0006,
+ "loss": 3.495553493499756,
+ "step": 5676
+ },
+ {
+ "epoch": 78.8527741371778,
+ "grad_norm": 0.20647381246089935,
+ "learning_rate": 0.0006,
+ "loss": 3.47171688079834,
+ "step": 5677
+ },
+ {
+ "epoch": 78.86675404106597,
+ "grad_norm": 0.20148544013500214,
+ "learning_rate": 0.0006,
+ "loss": 3.4736156463623047,
+ "step": 5678
+ },
+ {
+ "epoch": 78.88073394495413,
+ "grad_norm": 0.2097293585538864,
+ "learning_rate": 0.0006,
+ "loss": 3.436239719390869,
+ "step": 5679
+ },
+ {
+ "epoch": 78.89471384884229,
+ "grad_norm": 0.21129930019378662,
+ "learning_rate": 0.0006,
+ "loss": 3.4720277786254883,
+ "step": 5680
+ },
+ {
+ "epoch": 78.90869375273044,
+ "grad_norm": 0.2049081027507782,
+ "learning_rate": 0.0006,
+ "loss": 3.476945400238037,
+ "step": 5681
+ },
+ {
+ "epoch": 78.92267365661861,
+ "grad_norm": 0.2183583825826645,
+ "learning_rate": 0.0006,
+ "loss": 3.4852776527404785,
+ "step": 5682
+ },
+ {
+ "epoch": 78.93665356050677,
+ "grad_norm": 0.21253879368305206,
+ "learning_rate": 0.0006,
+ "loss": 3.4781546592712402,
+ "step": 5683
+ },
+ {
+ "epoch": 78.95063346439493,
+ "grad_norm": 0.20699666440486908,
+ "learning_rate": 0.0006,
+ "loss": 3.450756788253784,
+ "step": 5684
+ },
+ {
+ "epoch": 78.9646133682831,
+ "grad_norm": 0.25612396001815796,
+ "learning_rate": 0.0006,
+ "loss": 3.4762487411499023,
+ "step": 5685
+ },
+ {
+ "epoch": 78.97859327217125,
+ "grad_norm": 0.26524025201797485,
+ "learning_rate": 0.0006,
+ "loss": 3.4931769371032715,
+ "step": 5686
+ },
+ {
+ "epoch": 78.99257317605941,
+ "grad_norm": 0.2541322410106659,
+ "learning_rate": 0.0006,
+ "loss": 3.468247413635254,
+ "step": 5687
+ },
+ {
+ "epoch": 79.0,
+ "grad_norm": 0.2663288414478302,
+ "learning_rate": 0.0006,
+ "loss": 3.487189292907715,
+ "step": 5688
+ },
+ {
+ "epoch": 79.0,
+ "eval_loss": 3.988255739212036,
+ "eval_runtime": 46.5996,
+ "eval_samples_per_second": 52.404,
+ "eval_steps_per_second": 3.283,
+ "step": 5688
+ },
+ {
+ "epoch": 79.01397990388816,
+ "grad_norm": 0.2503090500831604,
+ "learning_rate": 0.0006,
+ "loss": 3.452444553375244,
+ "step": 5689
+ },
+ {
+ "epoch": 79.02795980777633,
+ "grad_norm": 0.28306853771209717,
+ "learning_rate": 0.0006,
+ "loss": 3.4412660598754883,
+ "step": 5690
+ },
+ {
+ "epoch": 79.04193971166448,
+ "grad_norm": 0.3115243911743164,
+ "learning_rate": 0.0006,
+ "loss": 3.4124369621276855,
+ "step": 5691
+ },
+ {
+ "epoch": 79.05591961555264,
+ "grad_norm": 0.273013710975647,
+ "learning_rate": 0.0006,
+ "loss": 3.4493820667266846,
+ "step": 5692
+ },
+ {
+ "epoch": 79.06989951944081,
+ "grad_norm": 0.22326645255088806,
+ "learning_rate": 0.0006,
+ "loss": 3.4517998695373535,
+ "step": 5693
+ },
+ {
+ "epoch": 79.08387942332897,
+ "grad_norm": 0.24398484826087952,
+ "learning_rate": 0.0006,
+ "loss": 3.4242095947265625,
+ "step": 5694
+ },
+ {
+ "epoch": 79.09785932721712,
+ "grad_norm": 0.25253739953041077,
+ "learning_rate": 0.0006,
+ "loss": 3.4249048233032227,
+ "step": 5695
+ },
+ {
+ "epoch": 79.1118392311053,
+ "grad_norm": 0.2664744555950165,
+ "learning_rate": 0.0006,
+ "loss": 3.452235698699951,
+ "step": 5696
+ },
+ {
+ "epoch": 79.12581913499345,
+ "grad_norm": 0.28276678919792175,
+ "learning_rate": 0.0006,
+ "loss": 3.4641671180725098,
+ "step": 5697
+ },
+ {
+ "epoch": 79.1397990388816,
+ "grad_norm": 0.2725527882575989,
+ "learning_rate": 0.0006,
+ "loss": 3.4483447074890137,
+ "step": 5698
+ },
+ {
+ "epoch": 79.15377894276976,
+ "grad_norm": 0.2702547609806061,
+ "learning_rate": 0.0006,
+ "loss": 3.4427199363708496,
+ "step": 5699
+ },
+ {
+ "epoch": 79.16775884665793,
+ "grad_norm": 0.2617502212524414,
+ "learning_rate": 0.0006,
+ "loss": 3.46244740486145,
+ "step": 5700
+ },
+ {
+ "epoch": 79.18173875054609,
+ "grad_norm": 0.22378475964069366,
+ "learning_rate": 0.0006,
+ "loss": 3.460523843765259,
+ "step": 5701
+ },
+ {
+ "epoch": 79.19571865443424,
+ "grad_norm": 0.2233104556798935,
+ "learning_rate": 0.0006,
+ "loss": 3.425114631652832,
+ "step": 5702
+ },
+ {
+ "epoch": 79.20969855832242,
+ "grad_norm": 0.24079658091068268,
+ "learning_rate": 0.0006,
+ "loss": 3.4773077964782715,
+ "step": 5703
+ },
+ {
+ "epoch": 79.22367846221057,
+ "grad_norm": 0.24479007720947266,
+ "learning_rate": 0.0006,
+ "loss": 3.438293218612671,
+ "step": 5704
+ },
+ {
+ "epoch": 79.23765836609873,
+ "grad_norm": 0.24505102634429932,
+ "learning_rate": 0.0006,
+ "loss": 3.4798545837402344,
+ "step": 5705
+ },
+ {
+ "epoch": 79.2516382699869,
+ "grad_norm": 0.22588814795017242,
+ "learning_rate": 0.0006,
+ "loss": 3.4557571411132812,
+ "step": 5706
+ },
+ {
+ "epoch": 79.26561817387505,
+ "grad_norm": 0.24139748513698578,
+ "learning_rate": 0.0006,
+ "loss": 3.4543919563293457,
+ "step": 5707
+ },
+ {
+ "epoch": 79.27959807776321,
+ "grad_norm": 0.21584808826446533,
+ "learning_rate": 0.0006,
+ "loss": 3.4505133628845215,
+ "step": 5708
+ },
+ {
+ "epoch": 79.29357798165138,
+ "grad_norm": 0.2180371880531311,
+ "learning_rate": 0.0006,
+ "loss": 3.4630508422851562,
+ "step": 5709
+ },
+ {
+ "epoch": 79.30755788553954,
+ "grad_norm": 0.21993961930274963,
+ "learning_rate": 0.0006,
+ "loss": 3.455995559692383,
+ "step": 5710
+ },
+ {
+ "epoch": 79.3215377894277,
+ "grad_norm": 0.2302546501159668,
+ "learning_rate": 0.0006,
+ "loss": 3.4884848594665527,
+ "step": 5711
+ },
+ {
+ "epoch": 79.33551769331586,
+ "grad_norm": 0.2554272711277008,
+ "learning_rate": 0.0006,
+ "loss": 3.440516948699951,
+ "step": 5712
+ },
+ {
+ "epoch": 79.34949759720402,
+ "grad_norm": 0.2361014038324356,
+ "learning_rate": 0.0006,
+ "loss": 3.4706239700317383,
+ "step": 5713
+ },
+ {
+ "epoch": 79.36347750109218,
+ "grad_norm": 0.22390307486057281,
+ "learning_rate": 0.0006,
+ "loss": 3.4447524547576904,
+ "step": 5714
+ },
+ {
+ "epoch": 79.37745740498035,
+ "grad_norm": 0.2271745353937149,
+ "learning_rate": 0.0006,
+ "loss": 3.47141170501709,
+ "step": 5715
+ },
+ {
+ "epoch": 79.3914373088685,
+ "grad_norm": 0.25239962339401245,
+ "learning_rate": 0.0006,
+ "loss": 3.4772067070007324,
+ "step": 5716
+ },
+ {
+ "epoch": 79.40541721275666,
+ "grad_norm": 0.2375272810459137,
+ "learning_rate": 0.0006,
+ "loss": 3.45712947845459,
+ "step": 5717
+ },
+ {
+ "epoch": 79.41939711664482,
+ "grad_norm": 0.22904036939144135,
+ "learning_rate": 0.0006,
+ "loss": 3.4753048419952393,
+ "step": 5718
+ },
+ {
+ "epoch": 79.43337702053299,
+ "grad_norm": 0.24097497761249542,
+ "learning_rate": 0.0006,
+ "loss": 3.462437391281128,
+ "step": 5719
+ },
+ {
+ "epoch": 79.44735692442114,
+ "grad_norm": 0.25267651677131653,
+ "learning_rate": 0.0006,
+ "loss": 3.4526681900024414,
+ "step": 5720
+ },
+ {
+ "epoch": 79.4613368283093,
+ "grad_norm": 0.25850236415863037,
+ "learning_rate": 0.0006,
+ "loss": 3.452427625656128,
+ "step": 5721
+ },
+ {
+ "epoch": 79.47531673219747,
+ "grad_norm": 0.26425909996032715,
+ "learning_rate": 0.0006,
+ "loss": 3.4524970054626465,
+ "step": 5722
+ },
+ {
+ "epoch": 79.48929663608563,
+ "grad_norm": 0.2287026345729828,
+ "learning_rate": 0.0006,
+ "loss": 3.4680042266845703,
+ "step": 5723
+ },
+ {
+ "epoch": 79.50327653997378,
+ "grad_norm": 0.2357720285654068,
+ "learning_rate": 0.0006,
+ "loss": 3.4661996364593506,
+ "step": 5724
+ },
+ {
+ "epoch": 79.51725644386195,
+ "grad_norm": 0.2378997653722763,
+ "learning_rate": 0.0006,
+ "loss": 3.4744834899902344,
+ "step": 5725
+ },
+ {
+ "epoch": 79.53123634775011,
+ "grad_norm": 0.2487446367740631,
+ "learning_rate": 0.0006,
+ "loss": 3.4760963916778564,
+ "step": 5726
+ },
+ {
+ "epoch": 79.54521625163827,
+ "grad_norm": 0.25056660175323486,
+ "learning_rate": 0.0006,
+ "loss": 3.4646544456481934,
+ "step": 5727
+ },
+ {
+ "epoch": 79.55919615552644,
+ "grad_norm": 0.22458213567733765,
+ "learning_rate": 0.0006,
+ "loss": 3.48275089263916,
+ "step": 5728
+ },
+ {
+ "epoch": 79.57317605941459,
+ "grad_norm": 0.22517307102680206,
+ "learning_rate": 0.0006,
+ "loss": 3.4858477115631104,
+ "step": 5729
+ },
+ {
+ "epoch": 79.58715596330275,
+ "grad_norm": 0.2253974974155426,
+ "learning_rate": 0.0006,
+ "loss": 3.4601099491119385,
+ "step": 5730
+ },
+ {
+ "epoch": 79.60113586719092,
+ "grad_norm": 0.22956253588199615,
+ "learning_rate": 0.0006,
+ "loss": 3.4599132537841797,
+ "step": 5731
+ },
+ {
+ "epoch": 79.61511577107908,
+ "grad_norm": 0.26346060633659363,
+ "learning_rate": 0.0006,
+ "loss": 3.4992642402648926,
+ "step": 5732
+ },
+ {
+ "epoch": 79.62909567496723,
+ "grad_norm": 0.2493542581796646,
+ "learning_rate": 0.0006,
+ "loss": 3.4743075370788574,
+ "step": 5733
+ },
+ {
+ "epoch": 79.6430755788554,
+ "grad_norm": 0.2473273128271103,
+ "learning_rate": 0.0006,
+ "loss": 3.487657070159912,
+ "step": 5734
+ },
+ {
+ "epoch": 79.65705548274356,
+ "grad_norm": 0.21894414722919464,
+ "learning_rate": 0.0006,
+ "loss": 3.4761929512023926,
+ "step": 5735
+ },
+ {
+ "epoch": 79.67103538663171,
+ "grad_norm": 0.20691576600074768,
+ "learning_rate": 0.0006,
+ "loss": 3.468233585357666,
+ "step": 5736
+ },
+ {
+ "epoch": 79.68501529051987,
+ "grad_norm": 0.22317089140415192,
+ "learning_rate": 0.0006,
+ "loss": 3.4676461219787598,
+ "step": 5737
+ },
+ {
+ "epoch": 79.69899519440804,
+ "grad_norm": 0.22669419646263123,
+ "learning_rate": 0.0006,
+ "loss": 3.4934377670288086,
+ "step": 5738
+ },
+ {
+ "epoch": 79.7129750982962,
+ "grad_norm": 0.23321859538555145,
+ "learning_rate": 0.0006,
+ "loss": 3.470146417617798,
+ "step": 5739
+ },
+ {
+ "epoch": 79.72695500218435,
+ "grad_norm": 0.21628828346729279,
+ "learning_rate": 0.0006,
+ "loss": 3.464975118637085,
+ "step": 5740
+ },
+ {
+ "epoch": 79.74093490607252,
+ "grad_norm": 0.22889219224452972,
+ "learning_rate": 0.0006,
+ "loss": 3.464859962463379,
+ "step": 5741
+ },
+ {
+ "epoch": 79.75491480996068,
+ "grad_norm": 0.23041504621505737,
+ "learning_rate": 0.0006,
+ "loss": 3.478351593017578,
+ "step": 5742
+ },
+ {
+ "epoch": 79.76889471384884,
+ "grad_norm": 0.2246071994304657,
+ "learning_rate": 0.0006,
+ "loss": 3.4927172660827637,
+ "step": 5743
+ },
+ {
+ "epoch": 79.78287461773701,
+ "grad_norm": 0.2326883226633072,
+ "learning_rate": 0.0006,
+ "loss": 3.4568581581115723,
+ "step": 5744
+ },
+ {
+ "epoch": 79.79685452162516,
+ "grad_norm": 0.22930850088596344,
+ "learning_rate": 0.0006,
+ "loss": 3.4665210247039795,
+ "step": 5745
+ },
+ {
+ "epoch": 79.81083442551332,
+ "grad_norm": 0.22361859679222107,
+ "learning_rate": 0.0006,
+ "loss": 3.4809937477111816,
+ "step": 5746
+ },
+ {
+ "epoch": 79.82481432940149,
+ "grad_norm": 0.20599117875099182,
+ "learning_rate": 0.0006,
+ "loss": 3.4918923377990723,
+ "step": 5747
+ },
+ {
+ "epoch": 79.83879423328965,
+ "grad_norm": 0.230980783700943,
+ "learning_rate": 0.0006,
+ "loss": 3.4691390991210938,
+ "step": 5748
+ },
+ {
+ "epoch": 79.8527741371778,
+ "grad_norm": 0.2432822734117508,
+ "learning_rate": 0.0006,
+ "loss": 3.465531349182129,
+ "step": 5749
+ },
+ {
+ "epoch": 79.86675404106597,
+ "grad_norm": 0.2326139360666275,
+ "learning_rate": 0.0006,
+ "loss": 3.464198350906372,
+ "step": 5750
+ },
+ {
+ "epoch": 79.88073394495413,
+ "grad_norm": 0.22227711975574493,
+ "learning_rate": 0.0006,
+ "loss": 3.4587674140930176,
+ "step": 5751
+ },
+ {
+ "epoch": 79.89471384884229,
+ "grad_norm": 0.20254085958003998,
+ "learning_rate": 0.0006,
+ "loss": 3.4628102779388428,
+ "step": 5752
+ },
+ {
+ "epoch": 79.90869375273044,
+ "grad_norm": 0.2130574733018875,
+ "learning_rate": 0.0006,
+ "loss": 3.491631031036377,
+ "step": 5753
+ },
+ {
+ "epoch": 79.92267365661861,
+ "grad_norm": 0.2221127301454544,
+ "learning_rate": 0.0006,
+ "loss": 3.477632522583008,
+ "step": 5754
+ },
+ {
+ "epoch": 79.93665356050677,
+ "grad_norm": 0.21647712588310242,
+ "learning_rate": 0.0006,
+ "loss": 3.470122814178467,
+ "step": 5755
+ },
+ {
+ "epoch": 79.95063346439493,
+ "grad_norm": 0.21333082020282745,
+ "learning_rate": 0.0006,
+ "loss": 3.4466612339019775,
+ "step": 5756
+ },
+ {
+ "epoch": 79.9646133682831,
+ "grad_norm": 0.24608036875724792,
+ "learning_rate": 0.0006,
+ "loss": 3.5203800201416016,
+ "step": 5757
+ },
+ {
+ "epoch": 79.97859327217125,
+ "grad_norm": 0.22165493667125702,
+ "learning_rate": 0.0006,
+ "loss": 3.467963457107544,
+ "step": 5758
+ },
+ {
+ "epoch": 79.99257317605941,
+ "grad_norm": 0.1960810422897339,
+ "learning_rate": 0.0006,
+ "loss": 3.4682164192199707,
+ "step": 5759
+ },
+ {
+ "epoch": 80.0,
+ "grad_norm": 0.23430649936199188,
+ "learning_rate": 0.0006,
+ "loss": 3.4980459213256836,
+ "step": 5760
+ },
+ {
+ "epoch": 80.01397990388816,
+ "grad_norm": 0.21651697158813477,
+ "learning_rate": 0.0006,
+ "loss": 3.4181911945343018,
+ "step": 5761
+ },
+ {
+ "epoch": 80.02795980777633,
+ "grad_norm": 0.2599288821220398,
+ "learning_rate": 0.0006,
+ "loss": 3.438791275024414,
+ "step": 5762
+ },
+ {
+ "epoch": 80.04193971166448,
+ "grad_norm": 0.26531898975372314,
+ "learning_rate": 0.0006,
+ "loss": 3.4669299125671387,
+ "step": 5763
+ },
+ {
+ "epoch": 80.05591961555264,
+ "grad_norm": 0.2965814769268036,
+ "learning_rate": 0.0006,
+ "loss": 3.3976120948791504,
+ "step": 5764
+ },
+ {
+ "epoch": 80.06989951944081,
+ "grad_norm": 0.28300485014915466,
+ "learning_rate": 0.0006,
+ "loss": 3.4121291637420654,
+ "step": 5765
+ },
+ {
+ "epoch": 80.08387942332897,
+ "grad_norm": 0.2511967718601227,
+ "learning_rate": 0.0006,
+ "loss": 3.4298207759857178,
+ "step": 5766
+ },
+ {
+ "epoch": 80.09785932721712,
+ "grad_norm": 0.2919110059738159,
+ "learning_rate": 0.0006,
+ "loss": 3.4311981201171875,
+ "step": 5767
+ },
+ {
+ "epoch": 80.1118392311053,
+ "grad_norm": 0.3141780197620392,
+ "learning_rate": 0.0006,
+ "loss": 3.435318946838379,
+ "step": 5768
+ },
+ {
+ "epoch": 80.12581913499345,
+ "grad_norm": 0.29728513956069946,
+ "learning_rate": 0.0006,
+ "loss": 3.4430551528930664,
+ "step": 5769
+ },
+ {
+ "epoch": 80.1397990388816,
+ "grad_norm": 0.2732396423816681,
+ "learning_rate": 0.0006,
+ "loss": 3.4580936431884766,
+ "step": 5770
+ },
+ {
+ "epoch": 80.15377894276976,
+ "grad_norm": 0.2561073303222656,
+ "learning_rate": 0.0006,
+ "loss": 3.443518877029419,
+ "step": 5771
+ },
+ {
+ "epoch": 80.16775884665793,
+ "grad_norm": 0.23583678901195526,
+ "learning_rate": 0.0006,
+ "loss": 3.4591064453125,
+ "step": 5772
+ },
+ {
+ "epoch": 80.18173875054609,
+ "grad_norm": 0.23391224443912506,
+ "learning_rate": 0.0006,
+ "loss": 3.4735608100891113,
+ "step": 5773
+ },
+ {
+ "epoch": 80.19571865443424,
+ "grad_norm": 0.24136026203632355,
+ "learning_rate": 0.0006,
+ "loss": 3.4389798641204834,
+ "step": 5774
+ },
+ {
+ "epoch": 80.20969855832242,
+ "grad_norm": 0.217203289270401,
+ "learning_rate": 0.0006,
+ "loss": 3.4284729957580566,
+ "step": 5775
+ },
+ {
+ "epoch": 80.22367846221057,
+ "grad_norm": 0.22632482647895813,
+ "learning_rate": 0.0006,
+ "loss": 3.4612345695495605,
+ "step": 5776
+ },
+ {
+ "epoch": 80.23765836609873,
+ "grad_norm": 0.23246599733829498,
+ "learning_rate": 0.0006,
+ "loss": 3.461637496948242,
+ "step": 5777
+ },
+ {
+ "epoch": 80.2516382699869,
+ "grad_norm": 0.21817834675312042,
+ "learning_rate": 0.0006,
+ "loss": 3.483128070831299,
+ "step": 5778
+ },
+ {
+ "epoch": 80.26561817387505,
+ "grad_norm": 0.2208380103111267,
+ "learning_rate": 0.0006,
+ "loss": 3.4182612895965576,
+ "step": 5779
+ },
+ {
+ "epoch": 80.27959807776321,
+ "grad_norm": 0.21948039531707764,
+ "learning_rate": 0.0006,
+ "loss": 3.4268085956573486,
+ "step": 5780
+ },
+ {
+ "epoch": 80.29357798165138,
+ "grad_norm": 0.24356511235237122,
+ "learning_rate": 0.0006,
+ "loss": 3.4365224838256836,
+ "step": 5781
+ },
+ {
+ "epoch": 80.30755788553954,
+ "grad_norm": 0.2545076012611389,
+ "learning_rate": 0.0006,
+ "loss": 3.4595799446105957,
+ "step": 5782
+ },
+ {
+ "epoch": 80.3215377894277,
+ "grad_norm": 0.23793567717075348,
+ "learning_rate": 0.0006,
+ "loss": 3.4590306282043457,
+ "step": 5783
+ },
+ {
+ "epoch": 80.33551769331586,
+ "grad_norm": 0.22215817868709564,
+ "learning_rate": 0.0006,
+ "loss": 3.4594779014587402,
+ "step": 5784
+ },
+ {
+ "epoch": 80.34949759720402,
+ "grad_norm": 0.24598804116249084,
+ "learning_rate": 0.0006,
+ "loss": 3.4702706336975098,
+ "step": 5785
+ },
+ {
+ "epoch": 80.36347750109218,
+ "grad_norm": 0.26150956749916077,
+ "learning_rate": 0.0006,
+ "loss": 3.504547357559204,
+ "step": 5786
+ },
+ {
+ "epoch": 80.37745740498035,
+ "grad_norm": 0.22220160067081451,
+ "learning_rate": 0.0006,
+ "loss": 3.4633049964904785,
+ "step": 5787
+ },
+ {
+ "epoch": 80.3914373088685,
+ "grad_norm": 0.2343321293592453,
+ "learning_rate": 0.0006,
+ "loss": 3.4659838676452637,
+ "step": 5788
+ },
+ {
+ "epoch": 80.40541721275666,
+ "grad_norm": 0.2196560502052307,
+ "learning_rate": 0.0006,
+ "loss": 3.477983236312866,
+ "step": 5789
+ },
+ {
+ "epoch": 80.41939711664482,
+ "grad_norm": 0.22598406672477722,
+ "learning_rate": 0.0006,
+ "loss": 3.4452672004699707,
+ "step": 5790
+ },
+ {
+ "epoch": 80.43337702053299,
+ "grad_norm": 0.21038709580898285,
+ "learning_rate": 0.0006,
+ "loss": 3.4401512145996094,
+ "step": 5791
+ },
+ {
+ "epoch": 80.44735692442114,
+ "grad_norm": 0.21702879667282104,
+ "learning_rate": 0.0006,
+ "loss": 3.482847213745117,
+ "step": 5792
+ },
+ {
+ "epoch": 80.4613368283093,
+ "grad_norm": 0.22423747181892395,
+ "learning_rate": 0.0006,
+ "loss": 3.454658031463623,
+ "step": 5793
+ },
+ {
+ "epoch": 80.47531673219747,
+ "grad_norm": 0.2156888246536255,
+ "learning_rate": 0.0006,
+ "loss": 3.4609858989715576,
+ "step": 5794
+ },
+ {
+ "epoch": 80.48929663608563,
+ "grad_norm": 0.22172603011131287,
+ "learning_rate": 0.0006,
+ "loss": 3.479116916656494,
+ "step": 5795
+ },
+ {
+ "epoch": 80.50327653997378,
+ "grad_norm": 0.22773809731006622,
+ "learning_rate": 0.0006,
+ "loss": 3.457540988922119,
+ "step": 5796
+ },
+ {
+ "epoch": 80.51725644386195,
+ "grad_norm": 0.2215251326560974,
+ "learning_rate": 0.0006,
+ "loss": 3.451545476913452,
+ "step": 5797
+ },
+ {
+ "epoch": 80.53123634775011,
+ "grad_norm": 0.22479848563671112,
+ "learning_rate": 0.0006,
+ "loss": 3.4318554401397705,
+ "step": 5798
+ },
+ {
+ "epoch": 80.54521625163827,
+ "grad_norm": 0.23643286526203156,
+ "learning_rate": 0.0006,
+ "loss": 3.448240280151367,
+ "step": 5799
+ },
+ {
+ "epoch": 80.55919615552644,
+ "grad_norm": 0.22819532454013824,
+ "learning_rate": 0.0006,
+ "loss": 3.4966626167297363,
+ "step": 5800
+ },
+ {
+ "epoch": 80.57317605941459,
+ "grad_norm": 0.2213105857372284,
+ "learning_rate": 0.0006,
+ "loss": 3.4401497840881348,
+ "step": 5801
+ },
+ {
+ "epoch": 80.58715596330275,
+ "grad_norm": 0.23570658266544342,
+ "learning_rate": 0.0006,
+ "loss": 3.4650940895080566,
+ "step": 5802
+ },
+ {
+ "epoch": 80.60113586719092,
+ "grad_norm": 0.2692683935165405,
+ "learning_rate": 0.0006,
+ "loss": 3.502164125442505,
+ "step": 5803
+ },
+ {
+ "epoch": 80.61511577107908,
+ "grad_norm": 0.2756805121898651,
+ "learning_rate": 0.0006,
+ "loss": 3.4653677940368652,
+ "step": 5804
+ },
+ {
+ "epoch": 80.62909567496723,
+ "grad_norm": 0.2219257950782776,
+ "learning_rate": 0.0006,
+ "loss": 3.459779977798462,
+ "step": 5805
+ },
+ {
+ "epoch": 80.6430755788554,
+ "grad_norm": 0.21970611810684204,
+ "learning_rate": 0.0006,
+ "loss": 3.451747417449951,
+ "step": 5806
+ },
+ {
+ "epoch": 80.65705548274356,
+ "grad_norm": 0.22080424427986145,
+ "learning_rate": 0.0006,
+ "loss": 3.469550609588623,
+ "step": 5807
+ },
+ {
+ "epoch": 80.67103538663171,
+ "grad_norm": 0.22235846519470215,
+ "learning_rate": 0.0006,
+ "loss": 3.488161563873291,
+ "step": 5808
+ },
+ {
+ "epoch": 80.68501529051987,
+ "grad_norm": 0.24261491000652313,
+ "learning_rate": 0.0006,
+ "loss": 3.486595630645752,
+ "step": 5809
+ },
+ {
+ "epoch": 80.69899519440804,
+ "grad_norm": 0.20906759798526764,
+ "learning_rate": 0.0006,
+ "loss": 3.450944423675537,
+ "step": 5810
+ },
+ {
+ "epoch": 80.7129750982962,
+ "grad_norm": 0.225368469953537,
+ "learning_rate": 0.0006,
+ "loss": 3.4868040084838867,
+ "step": 5811
+ },
+ {
+ "epoch": 80.72695500218435,
+ "grad_norm": 0.254836767911911,
+ "learning_rate": 0.0006,
+ "loss": 3.5024094581604004,
+ "step": 5812
+ },
+ {
+ "epoch": 80.74093490607252,
+ "grad_norm": 0.23393481969833374,
+ "learning_rate": 0.0006,
+ "loss": 3.453914165496826,
+ "step": 5813
+ },
+ {
+ "epoch": 80.75491480996068,
+ "grad_norm": 0.2270888388156891,
+ "learning_rate": 0.0006,
+ "loss": 3.4943716526031494,
+ "step": 5814
+ },
+ {
+ "epoch": 80.76889471384884,
+ "grad_norm": 0.24670317769050598,
+ "learning_rate": 0.0006,
+ "loss": 3.504342794418335,
+ "step": 5815
+ },
+ {
+ "epoch": 80.78287461773701,
+ "grad_norm": 0.23893672227859497,
+ "learning_rate": 0.0006,
+ "loss": 3.452670097351074,
+ "step": 5816
+ },
+ {
+ "epoch": 80.79685452162516,
+ "grad_norm": 0.2175605446100235,
+ "learning_rate": 0.0006,
+ "loss": 3.4578192234039307,
+ "step": 5817
+ },
+ {
+ "epoch": 80.81083442551332,
+ "grad_norm": 0.2156844139099121,
+ "learning_rate": 0.0006,
+ "loss": 3.4781908988952637,
+ "step": 5818
+ },
+ {
+ "epoch": 80.82481432940149,
+ "grad_norm": 0.2505752444267273,
+ "learning_rate": 0.0006,
+ "loss": 3.493128538131714,
+ "step": 5819
+ },
+ {
+ "epoch": 80.83879423328965,
+ "grad_norm": 0.2448679655790329,
+ "learning_rate": 0.0006,
+ "loss": 3.472296714782715,
+ "step": 5820
+ },
+ {
+ "epoch": 80.8527741371778,
+ "grad_norm": 0.22968287765979767,
+ "learning_rate": 0.0006,
+ "loss": 3.4909615516662598,
+ "step": 5821
+ },
+ {
+ "epoch": 80.86675404106597,
+ "grad_norm": 0.24920479953289032,
+ "learning_rate": 0.0006,
+ "loss": 3.4653358459472656,
+ "step": 5822
+ },
+ {
+ "epoch": 80.88073394495413,
+ "grad_norm": 0.24923524260520935,
+ "learning_rate": 0.0006,
+ "loss": 3.4682798385620117,
+ "step": 5823
+ },
+ {
+ "epoch": 80.89471384884229,
+ "grad_norm": 0.2546396255493164,
+ "learning_rate": 0.0006,
+ "loss": 3.4581995010375977,
+ "step": 5824
+ },
+ {
+ "epoch": 80.90869375273044,
+ "grad_norm": 0.27739930152893066,
+ "learning_rate": 0.0006,
+ "loss": 3.476200819015503,
+ "step": 5825
+ },
+ {
+ "epoch": 80.92267365661861,
+ "grad_norm": 0.25831520557403564,
+ "learning_rate": 0.0006,
+ "loss": 3.5037174224853516,
+ "step": 5826
+ },
+ {
+ "epoch": 80.93665356050677,
+ "grad_norm": 0.2223384827375412,
+ "learning_rate": 0.0006,
+ "loss": 3.458250045776367,
+ "step": 5827
+ },
+ {
+ "epoch": 80.95063346439493,
+ "grad_norm": 0.22563499212265015,
+ "learning_rate": 0.0006,
+ "loss": 3.474761486053467,
+ "step": 5828
+ },
+ {
+ "epoch": 80.9646133682831,
+ "grad_norm": 0.2326449155807495,
+ "learning_rate": 0.0006,
+ "loss": 3.500535011291504,
+ "step": 5829
+ },
+ {
+ "epoch": 80.97859327217125,
+ "grad_norm": 0.23983219265937805,
+ "learning_rate": 0.0006,
+ "loss": 3.462369680404663,
+ "step": 5830
+ },
+ {
+ "epoch": 80.99257317605941,
+ "grad_norm": 0.2850669324398041,
+ "learning_rate": 0.0006,
+ "loss": 3.4906742572784424,
+ "step": 5831
+ },
+ {
+ "epoch": 81.0,
+ "grad_norm": 0.33799314498901367,
+ "learning_rate": 0.0006,
+ "loss": 3.5178146362304688,
+ "step": 5832
+ },
+ {
+ "epoch": 81.0,
+ "eval_loss": 4.0064849853515625,
+ "eval_runtime": 46.5715,
+ "eval_samples_per_second": 52.435,
+ "eval_steps_per_second": 3.285,
+ "step": 5832
+ },
+ {
+ "epoch": 81.01397990388816,
+ "grad_norm": 0.2734781801700592,
+ "learning_rate": 0.0006,
+ "loss": 3.44972562789917,
+ "step": 5833
+ },
+ {
+ "epoch": 81.02795980777633,
+ "grad_norm": 0.24696482717990875,
+ "learning_rate": 0.0006,
+ "loss": 3.43271541595459,
+ "step": 5834
+ },
+ {
+ "epoch": 81.04193971166448,
+ "grad_norm": 0.24902470409870148,
+ "learning_rate": 0.0006,
+ "loss": 3.442819595336914,
+ "step": 5835
+ },
+ {
+ "epoch": 81.05591961555264,
+ "grad_norm": 0.26691070199012756,
+ "learning_rate": 0.0006,
+ "loss": 3.4350805282592773,
+ "step": 5836
+ },
+ {
+ "epoch": 81.06989951944081,
+ "grad_norm": 0.271199107170105,
+ "learning_rate": 0.0006,
+ "loss": 3.4339957237243652,
+ "step": 5837
+ },
+ {
+ "epoch": 81.08387942332897,
+ "grad_norm": 0.24132029712200165,
+ "learning_rate": 0.0006,
+ "loss": 3.437596321105957,
+ "step": 5838
+ },
+ {
+ "epoch": 81.09785932721712,
+ "grad_norm": 0.22754840552806854,
+ "learning_rate": 0.0006,
+ "loss": 3.420121431350708,
+ "step": 5839
+ },
+ {
+ "epoch": 81.1118392311053,
+ "grad_norm": 0.2779895067214966,
+ "learning_rate": 0.0006,
+ "loss": 3.4544930458068848,
+ "step": 5840
+ },
+ {
+ "epoch": 81.12581913499345,
+ "grad_norm": 0.28317394852638245,
+ "learning_rate": 0.0006,
+ "loss": 3.4461822509765625,
+ "step": 5841
+ },
+ {
+ "epoch": 81.1397990388816,
+ "grad_norm": 0.22738827764987946,
+ "learning_rate": 0.0006,
+ "loss": 3.460659980773926,
+ "step": 5842
+ },
+ {
+ "epoch": 81.15377894276976,
+ "grad_norm": 0.24671101570129395,
+ "learning_rate": 0.0006,
+ "loss": 3.4540371894836426,
+ "step": 5843
+ },
+ {
+ "epoch": 81.16775884665793,
+ "grad_norm": 0.2668206989765167,
+ "learning_rate": 0.0006,
+ "loss": 3.40748929977417,
+ "step": 5844
+ },
+ {
+ "epoch": 81.18173875054609,
+ "grad_norm": 0.2719775140285492,
+ "learning_rate": 0.0006,
+ "loss": 3.432345390319824,
+ "step": 5845
+ },
+ {
+ "epoch": 81.19571865443424,
+ "grad_norm": 0.25384029746055603,
+ "learning_rate": 0.0006,
+ "loss": 3.4371347427368164,
+ "step": 5846
+ },
+ {
+ "epoch": 81.20969855832242,
+ "grad_norm": 0.2570390999317169,
+ "learning_rate": 0.0006,
+ "loss": 3.4476442337036133,
+ "step": 5847
+ },
+ {
+ "epoch": 81.22367846221057,
+ "grad_norm": 0.26525548100471497,
+ "learning_rate": 0.0006,
+ "loss": 3.471432685852051,
+ "step": 5848
+ },
+ {
+ "epoch": 81.23765836609873,
+ "grad_norm": 0.2836049199104309,
+ "learning_rate": 0.0006,
+ "loss": 3.4596359729766846,
+ "step": 5849
+ },
+ {
+ "epoch": 81.2516382699869,
+ "grad_norm": 0.2822650671005249,
+ "learning_rate": 0.0006,
+ "loss": 3.433651924133301,
+ "step": 5850
+ },
+ {
+ "epoch": 81.26561817387505,
+ "grad_norm": 0.25116705894470215,
+ "learning_rate": 0.0006,
+ "loss": 3.452144145965576,
+ "step": 5851
+ },
+ {
+ "epoch": 81.27959807776321,
+ "grad_norm": 0.23779597878456116,
+ "learning_rate": 0.0006,
+ "loss": 3.459000587463379,
+ "step": 5852
+ },
+ {
+ "epoch": 81.29357798165138,
+ "grad_norm": 0.21741659939289093,
+ "learning_rate": 0.0006,
+ "loss": 3.44561505317688,
+ "step": 5853
+ },
+ {
+ "epoch": 81.30755788553954,
+ "grad_norm": 0.24104240536689758,
+ "learning_rate": 0.0006,
+ "loss": 3.4796364307403564,
+ "step": 5854
+ },
+ {
+ "epoch": 81.3215377894277,
+ "grad_norm": 0.2497674971818924,
+ "learning_rate": 0.0006,
+ "loss": 3.460237741470337,
+ "step": 5855
+ },
+ {
+ "epoch": 81.33551769331586,
+ "grad_norm": 0.26402798295021057,
+ "learning_rate": 0.0006,
+ "loss": 3.459944725036621,
+ "step": 5856
+ },
+ {
+ "epoch": 81.34949759720402,
+ "grad_norm": 0.2843187153339386,
+ "learning_rate": 0.0006,
+ "loss": 3.464351177215576,
+ "step": 5857
+ },
+ {
+ "epoch": 81.36347750109218,
+ "grad_norm": 0.26369425654411316,
+ "learning_rate": 0.0006,
+ "loss": 3.459855556488037,
+ "step": 5858
+ },
+ {
+ "epoch": 81.37745740498035,
+ "grad_norm": 0.2376980036497116,
+ "learning_rate": 0.0006,
+ "loss": 3.4585585594177246,
+ "step": 5859
+ },
+ {
+ "epoch": 81.3914373088685,
+ "grad_norm": 0.2369474321603775,
+ "learning_rate": 0.0006,
+ "loss": 3.4587368965148926,
+ "step": 5860
+ },
+ {
+ "epoch": 81.40541721275666,
+ "grad_norm": 0.24202723801136017,
+ "learning_rate": 0.0006,
+ "loss": 3.456484317779541,
+ "step": 5861
+ },
+ {
+ "epoch": 81.41939711664482,
+ "grad_norm": 0.24000433087348938,
+ "learning_rate": 0.0006,
+ "loss": 3.4597935676574707,
+ "step": 5862
+ },
+ {
+ "epoch": 81.43337702053299,
+ "grad_norm": 0.21620287001132965,
+ "learning_rate": 0.0006,
+ "loss": 3.490447759628296,
+ "step": 5863
+ },
+ {
+ "epoch": 81.44735692442114,
+ "grad_norm": 0.21280473470687866,
+ "learning_rate": 0.0006,
+ "loss": 3.4409351348876953,
+ "step": 5864
+ },
+ {
+ "epoch": 81.4613368283093,
+ "grad_norm": 0.21686480939388275,
+ "learning_rate": 0.0006,
+ "loss": 3.4337422847747803,
+ "step": 5865
+ },
+ {
+ "epoch": 81.47531673219747,
+ "grad_norm": 0.21165262162685394,
+ "learning_rate": 0.0006,
+ "loss": 3.4551923274993896,
+ "step": 5866
+ },
+ {
+ "epoch": 81.48929663608563,
+ "grad_norm": 0.24010618031024933,
+ "learning_rate": 0.0006,
+ "loss": 3.4817299842834473,
+ "step": 5867
+ },
+ {
+ "epoch": 81.50327653997378,
+ "grad_norm": 0.23277464509010315,
+ "learning_rate": 0.0006,
+ "loss": 3.4820570945739746,
+ "step": 5868
+ },
+ {
+ "epoch": 81.51725644386195,
+ "grad_norm": 0.20819281041622162,
+ "learning_rate": 0.0006,
+ "loss": 3.442948341369629,
+ "step": 5869
+ },
+ {
+ "epoch": 81.53123634775011,
+ "grad_norm": 0.22829480469226837,
+ "learning_rate": 0.0006,
+ "loss": 3.4757442474365234,
+ "step": 5870
+ },
+ {
+ "epoch": 81.54521625163827,
+ "grad_norm": 0.24158570170402527,
+ "learning_rate": 0.0006,
+ "loss": 3.4724745750427246,
+ "step": 5871
+ },
+ {
+ "epoch": 81.55919615552644,
+ "grad_norm": 0.24712695181369781,
+ "learning_rate": 0.0006,
+ "loss": 3.4481959342956543,
+ "step": 5872
+ },
+ {
+ "epoch": 81.57317605941459,
+ "grad_norm": 0.2370705008506775,
+ "learning_rate": 0.0006,
+ "loss": 3.466951847076416,
+ "step": 5873
+ },
+ {
+ "epoch": 81.58715596330275,
+ "grad_norm": 0.2232188880443573,
+ "learning_rate": 0.0006,
+ "loss": 3.4636940956115723,
+ "step": 5874
+ },
+ {
+ "epoch": 81.60113586719092,
+ "grad_norm": 0.22505831718444824,
+ "learning_rate": 0.0006,
+ "loss": 3.476677894592285,
+ "step": 5875
+ },
+ {
+ "epoch": 81.61511577107908,
+ "grad_norm": 0.23009659349918365,
+ "learning_rate": 0.0006,
+ "loss": 3.451272964477539,
+ "step": 5876
+ },
+ {
+ "epoch": 81.62909567496723,
+ "grad_norm": 0.26682841777801514,
+ "learning_rate": 0.0006,
+ "loss": 3.454648733139038,
+ "step": 5877
+ },
+ {
+ "epoch": 81.6430755788554,
+ "grad_norm": 0.26330509781837463,
+ "learning_rate": 0.0006,
+ "loss": 3.483720064163208,
+ "step": 5878
+ },
+ {
+ "epoch": 81.65705548274356,
+ "grad_norm": 0.24642175436019897,
+ "learning_rate": 0.0006,
+ "loss": 3.483520984649658,
+ "step": 5879
+ },
+ {
+ "epoch": 81.67103538663171,
+ "grad_norm": 0.24045883119106293,
+ "learning_rate": 0.0006,
+ "loss": 3.478955030441284,
+ "step": 5880
+ },
+ {
+ "epoch": 81.68501529051987,
+ "grad_norm": 0.25334200263023376,
+ "learning_rate": 0.0006,
+ "loss": 3.46458101272583,
+ "step": 5881
+ },
+ {
+ "epoch": 81.69899519440804,
+ "grad_norm": 0.23601189255714417,
+ "learning_rate": 0.0006,
+ "loss": 3.4435858726501465,
+ "step": 5882
+ },
+ {
+ "epoch": 81.7129750982962,
+ "grad_norm": 0.24426797032356262,
+ "learning_rate": 0.0006,
+ "loss": 3.47581148147583,
+ "step": 5883
+ },
+ {
+ "epoch": 81.72695500218435,
+ "grad_norm": 0.28175151348114014,
+ "learning_rate": 0.0006,
+ "loss": 3.464777946472168,
+ "step": 5884
+ },
+ {
+ "epoch": 81.74093490607252,
+ "grad_norm": 0.30024033784866333,
+ "learning_rate": 0.0006,
+ "loss": 3.4527053833007812,
+ "step": 5885
+ },
+ {
+ "epoch": 81.75491480996068,
+ "grad_norm": 0.2306688278913498,
+ "learning_rate": 0.0006,
+ "loss": 3.4810023307800293,
+ "step": 5886
+ },
+ {
+ "epoch": 81.76889471384884,
+ "grad_norm": 0.2599645256996155,
+ "learning_rate": 0.0006,
+ "loss": 3.4631409645080566,
+ "step": 5887
+ },
+ {
+ "epoch": 81.78287461773701,
+ "grad_norm": 0.2765994966030121,
+ "learning_rate": 0.0006,
+ "loss": 3.477273464202881,
+ "step": 5888
+ },
+ {
+ "epoch": 81.79685452162516,
+ "grad_norm": 0.2595500648021698,
+ "learning_rate": 0.0006,
+ "loss": 3.4744186401367188,
+ "step": 5889
+ },
+ {
+ "epoch": 81.81083442551332,
+ "grad_norm": 0.2481662631034851,
+ "learning_rate": 0.0006,
+ "loss": 3.507770538330078,
+ "step": 5890
+ },
+ {
+ "epoch": 81.82481432940149,
+ "grad_norm": 0.23018419742584229,
+ "learning_rate": 0.0006,
+ "loss": 3.4804000854492188,
+ "step": 5891
+ },
+ {
+ "epoch": 81.83879423328965,
+ "grad_norm": 0.230391263961792,
+ "learning_rate": 0.0006,
+ "loss": 3.4579944610595703,
+ "step": 5892
+ },
+ {
+ "epoch": 81.8527741371778,
+ "grad_norm": 0.21724778413772583,
+ "learning_rate": 0.0006,
+ "loss": 3.501087188720703,
+ "step": 5893
+ },
+ {
+ "epoch": 81.86675404106597,
+ "grad_norm": 0.24898028373718262,
+ "learning_rate": 0.0006,
+ "loss": 3.4701733589172363,
+ "step": 5894
+ },
+ {
+ "epoch": 81.88073394495413,
+ "grad_norm": 0.2489824891090393,
+ "learning_rate": 0.0006,
+ "loss": 3.4377074241638184,
+ "step": 5895
+ },
+ {
+ "epoch": 81.89471384884229,
+ "grad_norm": 0.22714054584503174,
+ "learning_rate": 0.0006,
+ "loss": 3.457437515258789,
+ "step": 5896
+ },
+ {
+ "epoch": 81.90869375273044,
+ "grad_norm": 0.25653958320617676,
+ "learning_rate": 0.0006,
+ "loss": 3.4825286865234375,
+ "step": 5897
+ },
+ {
+ "epoch": 81.92267365661861,
+ "grad_norm": 0.2545621991157532,
+ "learning_rate": 0.0006,
+ "loss": 3.4589271545410156,
+ "step": 5898
+ },
+ {
+ "epoch": 81.93665356050677,
+ "grad_norm": 0.2259686142206192,
+ "learning_rate": 0.0006,
+ "loss": 3.4559035301208496,
+ "step": 5899
+ },
+ {
+ "epoch": 81.95063346439493,
+ "grad_norm": 0.2246817946434021,
+ "learning_rate": 0.0006,
+ "loss": 3.5045571327209473,
+ "step": 5900
+ },
+ {
+ "epoch": 81.9646133682831,
+ "grad_norm": 0.23750948905944824,
+ "learning_rate": 0.0006,
+ "loss": 3.450650453567505,
+ "step": 5901
+ },
+ {
+ "epoch": 81.97859327217125,
+ "grad_norm": 0.23084647953510284,
+ "learning_rate": 0.0006,
+ "loss": 3.488955020904541,
+ "step": 5902
+ },
+ {
+ "epoch": 81.99257317605941,
+ "grad_norm": 0.22894839942455292,
+ "learning_rate": 0.0006,
+ "loss": 3.459271192550659,
+ "step": 5903
+ },
+ {
+ "epoch": 82.0,
+ "grad_norm": 0.2765962779521942,
+ "learning_rate": 0.0006,
+ "loss": 3.408276081085205,
+ "step": 5904
+ },
+ {
+ "epoch": 82.0,
+ "eval_loss": 3.996730327606201,
+ "eval_runtime": 45.9786,
+ "eval_samples_per_second": 53.112,
+ "eval_steps_per_second": 3.328,
+ "step": 5904
+ },
+ {
+ "epoch": 82.01397990388816,
+ "grad_norm": 0.23179036378860474,
+ "learning_rate": 0.0006,
+ "loss": 3.4373724460601807,
+ "step": 5905
+ },
+ {
+ "epoch": 82.02795980777633,
+ "grad_norm": 0.26358088850975037,
+ "learning_rate": 0.0006,
+ "loss": 3.409518241882324,
+ "step": 5906
+ },
+ {
+ "epoch": 82.04193971166448,
+ "grad_norm": 0.2684100866317749,
+ "learning_rate": 0.0006,
+ "loss": 3.454376697540283,
+ "step": 5907
+ },
+ {
+ "epoch": 82.05591961555264,
+ "grad_norm": 0.2605251371860504,
+ "learning_rate": 0.0006,
+ "loss": 3.443272113800049,
+ "step": 5908
+ },
+ {
+ "epoch": 82.06989951944081,
+ "grad_norm": 0.28532418608665466,
+ "learning_rate": 0.0006,
+ "loss": 3.462437629699707,
+ "step": 5909
+ },
+ {
+ "epoch": 82.08387942332897,
+ "grad_norm": 0.27555668354034424,
+ "learning_rate": 0.0006,
+ "loss": 3.441549301147461,
+ "step": 5910
+ },
+ {
+ "epoch": 82.09785932721712,
+ "grad_norm": 0.24676190316677094,
+ "learning_rate": 0.0006,
+ "loss": 3.4276766777038574,
+ "step": 5911
+ },
+ {
+ "epoch": 82.1118392311053,
+ "grad_norm": 0.24529537558555603,
+ "learning_rate": 0.0006,
+ "loss": 3.4216628074645996,
+ "step": 5912
+ },
+ {
+ "epoch": 82.12581913499345,
+ "grad_norm": 0.24856150150299072,
+ "learning_rate": 0.0006,
+ "loss": 3.440220832824707,
+ "step": 5913
+ },
+ {
+ "epoch": 82.1397990388816,
+ "grad_norm": 0.25839412212371826,
+ "learning_rate": 0.0006,
+ "loss": 3.4307751655578613,
+ "step": 5914
+ },
+ {
+ "epoch": 82.15377894276976,
+ "grad_norm": 0.24331165850162506,
+ "learning_rate": 0.0006,
+ "loss": 3.434621810913086,
+ "step": 5915
+ },
+ {
+ "epoch": 82.16775884665793,
+ "grad_norm": 0.23028214275836945,
+ "learning_rate": 0.0006,
+ "loss": 3.4578404426574707,
+ "step": 5916
+ },
+ {
+ "epoch": 82.18173875054609,
+ "grad_norm": 0.25276753306388855,
+ "learning_rate": 0.0006,
+ "loss": 3.447455406188965,
+ "step": 5917
+ },
+ {
+ "epoch": 82.19571865443424,
+ "grad_norm": 0.2595311105251312,
+ "learning_rate": 0.0006,
+ "loss": 3.4466679096221924,
+ "step": 5918
+ },
+ {
+ "epoch": 82.20969855832242,
+ "grad_norm": 0.2971263527870178,
+ "learning_rate": 0.0006,
+ "loss": 3.4721288681030273,
+ "step": 5919
+ },
+ {
+ "epoch": 82.22367846221057,
+ "grad_norm": 0.3399767577648163,
+ "learning_rate": 0.0006,
+ "loss": 3.433732032775879,
+ "step": 5920
+ },
+ {
+ "epoch": 82.23765836609873,
+ "grad_norm": 0.2947933077812195,
+ "learning_rate": 0.0006,
+ "loss": 3.437530994415283,
+ "step": 5921
+ },
+ {
+ "epoch": 82.2516382699869,
+ "grad_norm": 0.24236083030700684,
+ "learning_rate": 0.0006,
+ "loss": 3.4405105113983154,
+ "step": 5922
+ },
+ {
+ "epoch": 82.26561817387505,
+ "grad_norm": 0.2506858706474304,
+ "learning_rate": 0.0006,
+ "loss": 3.4653801918029785,
+ "step": 5923
+ },
+ {
+ "epoch": 82.27959807776321,
+ "grad_norm": 0.3094657361507416,
+ "learning_rate": 0.0006,
+ "loss": 3.444723129272461,
+ "step": 5924
+ },
+ {
+ "epoch": 82.29357798165138,
+ "grad_norm": 0.3230939209461212,
+ "learning_rate": 0.0006,
+ "loss": 3.4660234451293945,
+ "step": 5925
+ },
+ {
+ "epoch": 82.30755788553954,
+ "grad_norm": 0.30391860008239746,
+ "learning_rate": 0.0006,
+ "loss": 3.451413631439209,
+ "step": 5926
+ },
+ {
+ "epoch": 82.3215377894277,
+ "grad_norm": 0.2740595042705536,
+ "learning_rate": 0.0006,
+ "loss": 3.449131965637207,
+ "step": 5927
+ },
+ {
+ "epoch": 82.33551769331586,
+ "grad_norm": 0.2436739057302475,
+ "learning_rate": 0.0006,
+ "loss": 3.4319000244140625,
+ "step": 5928
+ },
+ {
+ "epoch": 82.34949759720402,
+ "grad_norm": 0.28533536195755005,
+ "learning_rate": 0.0006,
+ "loss": 3.4300975799560547,
+ "step": 5929
+ },
+ {
+ "epoch": 82.36347750109218,
+ "grad_norm": 0.2921883761882782,
+ "learning_rate": 0.0006,
+ "loss": 3.4531779289245605,
+ "step": 5930
+ },
+ {
+ "epoch": 82.37745740498035,
+ "grad_norm": 0.23490813374519348,
+ "learning_rate": 0.0006,
+ "loss": 3.461367130279541,
+ "step": 5931
+ },
+ {
+ "epoch": 82.3914373088685,
+ "grad_norm": 0.23341777920722961,
+ "learning_rate": 0.0006,
+ "loss": 3.4425978660583496,
+ "step": 5932
+ },
+ {
+ "epoch": 82.40541721275666,
+ "grad_norm": 0.2530428171157837,
+ "learning_rate": 0.0006,
+ "loss": 3.4478020668029785,
+ "step": 5933
+ },
+ {
+ "epoch": 82.41939711664482,
+ "grad_norm": 0.2404085248708725,
+ "learning_rate": 0.0006,
+ "loss": 3.401540517807007,
+ "step": 5934
+ },
+ {
+ "epoch": 82.43337702053299,
+ "grad_norm": 0.23845867812633514,
+ "learning_rate": 0.0006,
+ "loss": 3.461883544921875,
+ "step": 5935
+ },
+ {
+ "epoch": 82.44735692442114,
+ "grad_norm": 0.23088037967681885,
+ "learning_rate": 0.0006,
+ "loss": 3.4389796257019043,
+ "step": 5936
+ },
+ {
+ "epoch": 82.4613368283093,
+ "grad_norm": 0.24288570880889893,
+ "learning_rate": 0.0006,
+ "loss": 3.457475185394287,
+ "step": 5937
+ },
+ {
+ "epoch": 82.47531673219747,
+ "grad_norm": 0.2799559235572815,
+ "learning_rate": 0.0006,
+ "loss": 3.445082664489746,
+ "step": 5938
+ },
+ {
+ "epoch": 82.48929663608563,
+ "grad_norm": 0.23611751198768616,
+ "learning_rate": 0.0006,
+ "loss": 3.463675022125244,
+ "step": 5939
+ },
+ {
+ "epoch": 82.50327653997378,
+ "grad_norm": 0.2390424907207489,
+ "learning_rate": 0.0006,
+ "loss": 3.4434826374053955,
+ "step": 5940
+ },
+ {
+ "epoch": 82.51725644386195,
+ "grad_norm": 0.3373001217842102,
+ "learning_rate": 0.0006,
+ "loss": 3.4687438011169434,
+ "step": 5941
+ },
+ {
+ "epoch": 82.53123634775011,
+ "grad_norm": 0.3413066267967224,
+ "learning_rate": 0.0006,
+ "loss": 3.4376461505889893,
+ "step": 5942
+ },
+ {
+ "epoch": 82.54521625163827,
+ "grad_norm": 0.24165762960910797,
+ "learning_rate": 0.0006,
+ "loss": 3.430239200592041,
+ "step": 5943
+ },
+ {
+ "epoch": 82.55919615552644,
+ "grad_norm": 0.25374823808670044,
+ "learning_rate": 0.0006,
+ "loss": 3.417081832885742,
+ "step": 5944
+ },
+ {
+ "epoch": 82.57317605941459,
+ "grad_norm": 0.32946228981018066,
+ "learning_rate": 0.0006,
+ "loss": 3.4235644340515137,
+ "step": 5945
+ },
+ {
+ "epoch": 82.58715596330275,
+ "grad_norm": 0.32193586230278015,
+ "learning_rate": 0.0006,
+ "loss": 3.450972080230713,
+ "step": 5946
+ },
+ {
+ "epoch": 82.60113586719092,
+ "grad_norm": 0.24615046381950378,
+ "learning_rate": 0.0006,
+ "loss": 3.489959716796875,
+ "step": 5947
+ },
+ {
+ "epoch": 82.61511577107908,
+ "grad_norm": 0.24981027841567993,
+ "learning_rate": 0.0006,
+ "loss": 3.466486930847168,
+ "step": 5948
+ },
+ {
+ "epoch": 82.62909567496723,
+ "grad_norm": 0.2472672462463379,
+ "learning_rate": 0.0006,
+ "loss": 3.47261381149292,
+ "step": 5949
+ },
+ {
+ "epoch": 82.6430755788554,
+ "grad_norm": 0.2465936541557312,
+ "learning_rate": 0.0006,
+ "loss": 3.46502423286438,
+ "step": 5950
+ },
+ {
+ "epoch": 82.65705548274356,
+ "grad_norm": 0.2683236300945282,
+ "learning_rate": 0.0006,
+ "loss": 3.4559872150421143,
+ "step": 5951
+ },
+ {
+ "epoch": 82.67103538663171,
+ "grad_norm": 0.2673622965812683,
+ "learning_rate": 0.0006,
+ "loss": 3.5017478466033936,
+ "step": 5952
+ },
+ {
+ "epoch": 82.68501529051987,
+ "grad_norm": 0.2692212164402008,
+ "learning_rate": 0.0006,
+ "loss": 3.4872794151306152,
+ "step": 5953
+ },
+ {
+ "epoch": 82.69899519440804,
+ "grad_norm": 0.26421430706977844,
+ "learning_rate": 0.0006,
+ "loss": 3.4612350463867188,
+ "step": 5954
+ },
+ {
+ "epoch": 82.7129750982962,
+ "grad_norm": 0.2509252727031708,
+ "learning_rate": 0.0006,
+ "loss": 3.4686827659606934,
+ "step": 5955
+ },
+ {
+ "epoch": 82.72695500218435,
+ "grad_norm": 0.209443598985672,
+ "learning_rate": 0.0006,
+ "loss": 3.454824924468994,
+ "step": 5956
+ },
+ {
+ "epoch": 82.74093490607252,
+ "grad_norm": 0.24989601969718933,
+ "learning_rate": 0.0006,
+ "loss": 3.4740121364593506,
+ "step": 5957
+ },
+ {
+ "epoch": 82.75491480996068,
+ "grad_norm": 0.2902134954929352,
+ "learning_rate": 0.0006,
+ "loss": 3.4464473724365234,
+ "step": 5958
+ },
+ {
+ "epoch": 82.76889471384884,
+ "grad_norm": 0.24959035217761993,
+ "learning_rate": 0.0006,
+ "loss": 3.465094566345215,
+ "step": 5959
+ },
+ {
+ "epoch": 82.78287461773701,
+ "grad_norm": 0.23020492494106293,
+ "learning_rate": 0.0006,
+ "loss": 3.4868249893188477,
+ "step": 5960
+ },
+ {
+ "epoch": 82.79685452162516,
+ "grad_norm": 0.2315775454044342,
+ "learning_rate": 0.0006,
+ "loss": 3.4711623191833496,
+ "step": 5961
+ },
+ {
+ "epoch": 82.81083442551332,
+ "grad_norm": 0.2326463758945465,
+ "learning_rate": 0.0006,
+ "loss": 3.447787284851074,
+ "step": 5962
+ },
+ {
+ "epoch": 82.82481432940149,
+ "grad_norm": 0.23650991916656494,
+ "learning_rate": 0.0006,
+ "loss": 3.4676520824432373,
+ "step": 5963
+ },
+ {
+ "epoch": 82.83879423328965,
+ "grad_norm": 0.25990426540374756,
+ "learning_rate": 0.0006,
+ "loss": 3.494727373123169,
+ "step": 5964
+ },
+ {
+ "epoch": 82.8527741371778,
+ "grad_norm": 0.23490077257156372,
+ "learning_rate": 0.0006,
+ "loss": 3.5040855407714844,
+ "step": 5965
+ },
+ {
+ "epoch": 82.86675404106597,
+ "grad_norm": 0.20543795824050903,
+ "learning_rate": 0.0006,
+ "loss": 3.4675912857055664,
+ "step": 5966
+ },
+ {
+ "epoch": 82.88073394495413,
+ "grad_norm": 0.21899794042110443,
+ "learning_rate": 0.0006,
+ "loss": 3.4491946697235107,
+ "step": 5967
+ },
+ {
+ "epoch": 82.89471384884229,
+ "grad_norm": 0.22304055094718933,
+ "learning_rate": 0.0006,
+ "loss": 3.4818315505981445,
+ "step": 5968
+ },
+ {
+ "epoch": 82.90869375273044,
+ "grad_norm": 0.2622174024581909,
+ "learning_rate": 0.0006,
+ "loss": 3.475957155227661,
+ "step": 5969
+ },
+ {
+ "epoch": 82.92267365661861,
+ "grad_norm": 0.2829800546169281,
+ "learning_rate": 0.0006,
+ "loss": 3.5397486686706543,
+ "step": 5970
+ },
+ {
+ "epoch": 82.93665356050677,
+ "grad_norm": 0.23583251237869263,
+ "learning_rate": 0.0006,
+ "loss": 3.4955060482025146,
+ "step": 5971
+ },
+ {
+ "epoch": 82.95063346439493,
+ "grad_norm": 0.2033468782901764,
+ "learning_rate": 0.0006,
+ "loss": 3.477050542831421,
+ "step": 5972
+ },
+ {
+ "epoch": 82.9646133682831,
+ "grad_norm": 0.20826712250709534,
+ "learning_rate": 0.0006,
+ "loss": 3.4818544387817383,
+ "step": 5973
+ },
+ {
+ "epoch": 82.97859327217125,
+ "grad_norm": 0.20250852406024933,
+ "learning_rate": 0.0006,
+ "loss": 3.44329571723938,
+ "step": 5974
+ },
+ {
+ "epoch": 82.99257317605941,
+ "grad_norm": 0.21684879064559937,
+ "learning_rate": 0.0006,
+ "loss": 3.482222318649292,
+ "step": 5975
+ },
+ {
+ "epoch": 83.0,
+ "grad_norm": 0.2637452781200409,
+ "learning_rate": 0.0006,
+ "loss": 3.526481866836548,
+ "step": 5976
+ },
+ {
+ "epoch": 83.0,
+ "eval_loss": 3.9838967323303223,
+ "eval_runtime": 45.8267,
+ "eval_samples_per_second": 53.288,
+ "eval_steps_per_second": 3.339,
+ "step": 5976
+ },
+ {
+ "epoch": 83.01397990388816,
+ "grad_norm": 0.2888176143169403,
+ "learning_rate": 0.0006,
+ "loss": 3.409271717071533,
+ "step": 5977
+ },
+ {
+ "epoch": 83.02795980777633,
+ "grad_norm": 0.3692282736301422,
+ "learning_rate": 0.0006,
+ "loss": 3.4353346824645996,
+ "step": 5978
+ },
+ {
+ "epoch": 83.04193971166448,
+ "grad_norm": 0.3694300353527069,
+ "learning_rate": 0.0006,
+ "loss": 3.4257359504699707,
+ "step": 5979
+ },
+ {
+ "epoch": 83.05591961555264,
+ "grad_norm": 0.29487040638923645,
+ "learning_rate": 0.0006,
+ "loss": 3.416271209716797,
+ "step": 5980
+ },
+ {
+ "epoch": 83.06989951944081,
+ "grad_norm": 0.2911352217197418,
+ "learning_rate": 0.0006,
+ "loss": 3.424140214920044,
+ "step": 5981
+ },
+ {
+ "epoch": 83.08387942332897,
+ "grad_norm": 0.35632601380348206,
+ "learning_rate": 0.0006,
+ "loss": 3.4235711097717285,
+ "step": 5982
+ },
+ {
+ "epoch": 83.09785932721712,
+ "grad_norm": 0.4010505676269531,
+ "learning_rate": 0.0006,
+ "loss": 3.462642192840576,
+ "step": 5983
+ },
+ {
+ "epoch": 83.1118392311053,
+ "grad_norm": 0.3426569402217865,
+ "learning_rate": 0.0006,
+ "loss": 3.448690176010132,
+ "step": 5984
+ },
+ {
+ "epoch": 83.12581913499345,
+ "grad_norm": 0.2632673382759094,
+ "learning_rate": 0.0006,
+ "loss": 3.447197914123535,
+ "step": 5985
+ },
+ {
+ "epoch": 83.1397990388816,
+ "grad_norm": 0.2999698221683502,
+ "learning_rate": 0.0006,
+ "loss": 3.4137229919433594,
+ "step": 5986
+ },
+ {
+ "epoch": 83.15377894276976,
+ "grad_norm": 0.3033472001552582,
+ "learning_rate": 0.0006,
+ "loss": 3.4816393852233887,
+ "step": 5987
+ },
+ {
+ "epoch": 83.16775884665793,
+ "grad_norm": 0.2590268850326538,
+ "learning_rate": 0.0006,
+ "loss": 3.4059391021728516,
+ "step": 5988
+ },
+ {
+ "epoch": 83.18173875054609,
+ "grad_norm": 0.2598235607147217,
+ "learning_rate": 0.0006,
+ "loss": 3.447913885116577,
+ "step": 5989
+ },
+ {
+ "epoch": 83.19571865443424,
+ "grad_norm": 0.25087642669677734,
+ "learning_rate": 0.0006,
+ "loss": 3.4645161628723145,
+ "step": 5990
+ },
+ {
+ "epoch": 83.20969855832242,
+ "grad_norm": 0.267760306596756,
+ "learning_rate": 0.0006,
+ "loss": 3.4360952377319336,
+ "step": 5991
+ },
+ {
+ "epoch": 83.22367846221057,
+ "grad_norm": 0.25042274594306946,
+ "learning_rate": 0.0006,
+ "loss": 3.464437961578369,
+ "step": 5992
+ },
+ {
+ "epoch": 83.23765836609873,
+ "grad_norm": 0.22963418066501617,
+ "learning_rate": 0.0006,
+ "loss": 3.421604633331299,
+ "step": 5993
+ },
+ {
+ "epoch": 83.2516382699869,
+ "grad_norm": 0.24857227504253387,
+ "learning_rate": 0.0006,
+ "loss": 3.4228515625,
+ "step": 5994
+ },
+ {
+ "epoch": 83.26561817387505,
+ "grad_norm": 0.24745461344718933,
+ "learning_rate": 0.0006,
+ "loss": 3.463120222091675,
+ "step": 5995
+ },
+ {
+ "epoch": 83.27959807776321,
+ "grad_norm": 0.258258581161499,
+ "learning_rate": 0.0006,
+ "loss": 3.4567341804504395,
+ "step": 5996
+ },
+ {
+ "epoch": 83.29357798165138,
+ "grad_norm": 0.26854267716407776,
+ "learning_rate": 0.0006,
+ "loss": 3.459993839263916,
+ "step": 5997
+ },
+ {
+ "epoch": 83.30755788553954,
+ "grad_norm": 0.253322571516037,
+ "learning_rate": 0.0006,
+ "loss": 3.4329309463500977,
+ "step": 5998
+ },
+ {
+ "epoch": 83.3215377894277,
+ "grad_norm": 0.2596076726913452,
+ "learning_rate": 0.0006,
+ "loss": 3.463113784790039,
+ "step": 5999
+ },
+ {
+ "epoch": 83.33551769331586,
+ "grad_norm": 0.23935553431510925,
+ "learning_rate": 0.0006,
+ "loss": 3.45231556892395,
+ "step": 6000
+ },
+ {
+ "epoch": 83.34949759720402,
+ "grad_norm": 0.23181283473968506,
+ "learning_rate": 0.0006,
+ "loss": 3.4250950813293457,
+ "step": 6001
+ },
+ {
+ "epoch": 83.36347750109218,
+ "grad_norm": 0.22866526246070862,
+ "learning_rate": 0.0006,
+ "loss": 3.451408863067627,
+ "step": 6002
+ },
+ {
+ "epoch": 83.37745740498035,
+ "grad_norm": 0.2585664689540863,
+ "learning_rate": 0.0006,
+ "loss": 3.474940299987793,
+ "step": 6003
+ },
+ {
+ "epoch": 83.3914373088685,
+ "grad_norm": 0.21957920491695404,
+ "learning_rate": 0.0006,
+ "loss": 3.4120378494262695,
+ "step": 6004
+ },
+ {
+ "epoch": 83.40541721275666,
+ "grad_norm": 0.21237598359584808,
+ "learning_rate": 0.0006,
+ "loss": 3.458988666534424,
+ "step": 6005
+ },
+ {
+ "epoch": 83.41939711664482,
+ "grad_norm": 0.21803049743175507,
+ "learning_rate": 0.0006,
+ "loss": 3.436127185821533,
+ "step": 6006
+ },
+ {
+ "epoch": 83.43337702053299,
+ "grad_norm": 0.24005955457687378,
+ "learning_rate": 0.0006,
+ "loss": 3.4540181159973145,
+ "step": 6007
+ },
+ {
+ "epoch": 83.44735692442114,
+ "grad_norm": 0.26444754004478455,
+ "learning_rate": 0.0006,
+ "loss": 3.4646968841552734,
+ "step": 6008
+ },
+ {
+ "epoch": 83.4613368283093,
+ "grad_norm": 0.2504395544528961,
+ "learning_rate": 0.0006,
+ "loss": 3.4380784034729004,
+ "step": 6009
+ },
+ {
+ "epoch": 83.47531673219747,
+ "grad_norm": 0.23231923580169678,
+ "learning_rate": 0.0006,
+ "loss": 3.4435203075408936,
+ "step": 6010
+ },
+ {
+ "epoch": 83.48929663608563,
+ "grad_norm": 0.22733177244663239,
+ "learning_rate": 0.0006,
+ "loss": 3.459223747253418,
+ "step": 6011
+ },
+ {
+ "epoch": 83.50327653997378,
+ "grad_norm": 0.23871523141860962,
+ "learning_rate": 0.0006,
+ "loss": 3.452695369720459,
+ "step": 6012
+ },
+ {
+ "epoch": 83.51725644386195,
+ "grad_norm": 0.26548200845718384,
+ "learning_rate": 0.0006,
+ "loss": 3.4481754302978516,
+ "step": 6013
+ },
+ {
+ "epoch": 83.53123634775011,
+ "grad_norm": 0.2633417248725891,
+ "learning_rate": 0.0006,
+ "loss": 3.469902753829956,
+ "step": 6014
+ },
+ {
+ "epoch": 83.54521625163827,
+ "grad_norm": 0.2338850200176239,
+ "learning_rate": 0.0006,
+ "loss": 3.438602924346924,
+ "step": 6015
+ },
+ {
+ "epoch": 83.55919615552644,
+ "grad_norm": 0.2187591791152954,
+ "learning_rate": 0.0006,
+ "loss": 3.426084280014038,
+ "step": 6016
+ },
+ {
+ "epoch": 83.57317605941459,
+ "grad_norm": 0.2570044994354248,
+ "learning_rate": 0.0006,
+ "loss": 3.4380812644958496,
+ "step": 6017
+ },
+ {
+ "epoch": 83.58715596330275,
+ "grad_norm": 0.25832056999206543,
+ "learning_rate": 0.0006,
+ "loss": 3.45045804977417,
+ "step": 6018
+ },
+ {
+ "epoch": 83.60113586719092,
+ "grad_norm": 0.24552716314792633,
+ "learning_rate": 0.0006,
+ "loss": 3.447704792022705,
+ "step": 6019
+ },
+ {
+ "epoch": 83.61511577107908,
+ "grad_norm": 0.2358967810869217,
+ "learning_rate": 0.0006,
+ "loss": 3.4598300457000732,
+ "step": 6020
+ },
+ {
+ "epoch": 83.62909567496723,
+ "grad_norm": 0.20650409162044525,
+ "learning_rate": 0.0006,
+ "loss": 3.4821555614471436,
+ "step": 6021
+ },
+ {
+ "epoch": 83.6430755788554,
+ "grad_norm": 0.20103590190410614,
+ "learning_rate": 0.0006,
+ "loss": 3.468846082687378,
+ "step": 6022
+ },
+ {
+ "epoch": 83.65705548274356,
+ "grad_norm": 0.20957764983177185,
+ "learning_rate": 0.0006,
+ "loss": 3.4600605964660645,
+ "step": 6023
+ },
+ {
+ "epoch": 83.67103538663171,
+ "grad_norm": 0.21819661557674408,
+ "learning_rate": 0.0006,
+ "loss": 3.4393796920776367,
+ "step": 6024
+ },
+ {
+ "epoch": 83.68501529051987,
+ "grad_norm": 0.23196570575237274,
+ "learning_rate": 0.0006,
+ "loss": 3.452263832092285,
+ "step": 6025
+ },
+ {
+ "epoch": 83.69899519440804,
+ "grad_norm": 0.2700229287147522,
+ "learning_rate": 0.0006,
+ "loss": 3.452803134918213,
+ "step": 6026
+ },
+ {
+ "epoch": 83.7129750982962,
+ "grad_norm": 0.26435309648513794,
+ "learning_rate": 0.0006,
+ "loss": 3.457122802734375,
+ "step": 6027
+ },
+ {
+ "epoch": 83.72695500218435,
+ "grad_norm": 0.24041543900966644,
+ "learning_rate": 0.0006,
+ "loss": 3.455793619155884,
+ "step": 6028
+ },
+ {
+ "epoch": 83.74093490607252,
+ "grad_norm": 0.22590254247188568,
+ "learning_rate": 0.0006,
+ "loss": 3.4643428325653076,
+ "step": 6029
+ },
+ {
+ "epoch": 83.75491480996068,
+ "grad_norm": 0.2043512612581253,
+ "learning_rate": 0.0006,
+ "loss": 3.474919557571411,
+ "step": 6030
+ },
+ {
+ "epoch": 83.76889471384884,
+ "grad_norm": 0.23114001750946045,
+ "learning_rate": 0.0006,
+ "loss": 3.469618797302246,
+ "step": 6031
+ },
+ {
+ "epoch": 83.78287461773701,
+ "grad_norm": 0.24307213723659515,
+ "learning_rate": 0.0006,
+ "loss": 3.44295072555542,
+ "step": 6032
+ },
+ {
+ "epoch": 83.79685452162516,
+ "grad_norm": 0.24907614290714264,
+ "learning_rate": 0.0006,
+ "loss": 3.4820055961608887,
+ "step": 6033
+ },
+ {
+ "epoch": 83.81083442551332,
+ "grad_norm": 0.24758939445018768,
+ "learning_rate": 0.0006,
+ "loss": 3.4528980255126953,
+ "step": 6034
+ },
+ {
+ "epoch": 83.82481432940149,
+ "grad_norm": 0.24556805193424225,
+ "learning_rate": 0.0006,
+ "loss": 3.4928247928619385,
+ "step": 6035
+ },
+ {
+ "epoch": 83.83879423328965,
+ "grad_norm": 0.22058741748332977,
+ "learning_rate": 0.0006,
+ "loss": 3.4515697956085205,
+ "step": 6036
+ },
+ {
+ "epoch": 83.8527741371778,
+ "grad_norm": 0.2287076860666275,
+ "learning_rate": 0.0006,
+ "loss": 3.464742422103882,
+ "step": 6037
+ },
+ {
+ "epoch": 83.86675404106597,
+ "grad_norm": 0.23122717440128326,
+ "learning_rate": 0.0006,
+ "loss": 3.475945472717285,
+ "step": 6038
+ },
+ {
+ "epoch": 83.88073394495413,
+ "grad_norm": 0.23839165270328522,
+ "learning_rate": 0.0006,
+ "loss": 3.486027479171753,
+ "step": 6039
+ },
+ {
+ "epoch": 83.89471384884229,
+ "grad_norm": 0.23857836425304413,
+ "learning_rate": 0.0006,
+ "loss": 3.474921226501465,
+ "step": 6040
+ },
+ {
+ "epoch": 83.90869375273044,
+ "grad_norm": 0.24372349679470062,
+ "learning_rate": 0.0006,
+ "loss": 3.4775476455688477,
+ "step": 6041
+ },
+ {
+ "epoch": 83.92267365661861,
+ "grad_norm": 0.28166019916534424,
+ "learning_rate": 0.0006,
+ "loss": 3.450713634490967,
+ "step": 6042
+ },
+ {
+ "epoch": 83.93665356050677,
+ "grad_norm": 0.27276918292045593,
+ "learning_rate": 0.0006,
+ "loss": 3.4824142456054688,
+ "step": 6043
+ },
+ {
+ "epoch": 83.95063346439493,
+ "grad_norm": 0.2137363702058792,
+ "learning_rate": 0.0006,
+ "loss": 3.4720726013183594,
+ "step": 6044
+ },
+ {
+ "epoch": 83.9646133682831,
+ "grad_norm": 0.21120159327983856,
+ "learning_rate": 0.0006,
+ "loss": 3.5012218952178955,
+ "step": 6045
+ },
+ {
+ "epoch": 83.97859327217125,
+ "grad_norm": 0.22474384307861328,
+ "learning_rate": 0.0006,
+ "loss": 3.460742950439453,
+ "step": 6046
+ },
+ {
+ "epoch": 83.99257317605941,
+ "grad_norm": 0.20441333949565887,
+ "learning_rate": 0.0006,
+ "loss": 3.4822964668273926,
+ "step": 6047
+ },
+ {
+ "epoch": 84.0,
+ "grad_norm": 0.2454686462879181,
+ "learning_rate": 0.0006,
+ "loss": 3.5237345695495605,
+ "step": 6048
+ },
+ {
+ "epoch": 84.0,
+ "eval_loss": 3.9953911304473877,
+ "eval_runtime": 45.8514,
+ "eval_samples_per_second": 53.259,
+ "eval_steps_per_second": 3.337,
+ "step": 6048
+ },
+ {
+ "epoch": 84.01397990388816,
+ "grad_norm": 0.23639939725399017,
+ "learning_rate": 0.0006,
+ "loss": 3.4068121910095215,
+ "step": 6049
+ },
+ {
+ "epoch": 84.02795980777633,
+ "grad_norm": 0.2581193149089813,
+ "learning_rate": 0.0006,
+ "loss": 3.4408299922943115,
+ "step": 6050
+ },
+ {
+ "epoch": 84.04193971166448,
+ "grad_norm": 0.2579401433467865,
+ "learning_rate": 0.0006,
+ "loss": 3.4009571075439453,
+ "step": 6051
+ },
+ {
+ "epoch": 84.05591961555264,
+ "grad_norm": 0.2377995103597641,
+ "learning_rate": 0.0006,
+ "loss": 3.4338529109954834,
+ "step": 6052
+ },
+ {
+ "epoch": 84.06989951944081,
+ "grad_norm": 0.22722864151000977,
+ "learning_rate": 0.0006,
+ "loss": 3.411055564880371,
+ "step": 6053
+ },
+ {
+ "epoch": 84.08387942332897,
+ "grad_norm": 0.2766192555427551,
+ "learning_rate": 0.0006,
+ "loss": 3.4304237365722656,
+ "step": 6054
+ },
+ {
+ "epoch": 84.09785932721712,
+ "grad_norm": 0.2608284652233124,
+ "learning_rate": 0.0006,
+ "loss": 3.444244384765625,
+ "step": 6055
+ },
+ {
+ "epoch": 84.1118392311053,
+ "grad_norm": 0.22354614734649658,
+ "learning_rate": 0.0006,
+ "loss": 3.439541816711426,
+ "step": 6056
+ },
+ {
+ "epoch": 84.12581913499345,
+ "grad_norm": 0.24095603823661804,
+ "learning_rate": 0.0006,
+ "loss": 3.4354658126831055,
+ "step": 6057
+ },
+ {
+ "epoch": 84.1397990388816,
+ "grad_norm": 0.23401515185832977,
+ "learning_rate": 0.0006,
+ "loss": 3.4395503997802734,
+ "step": 6058
+ },
+ {
+ "epoch": 84.15377894276976,
+ "grad_norm": 0.21646054089069366,
+ "learning_rate": 0.0006,
+ "loss": 3.432781457901001,
+ "step": 6059
+ },
+ {
+ "epoch": 84.16775884665793,
+ "grad_norm": 0.22034308314323425,
+ "learning_rate": 0.0006,
+ "loss": 3.406602144241333,
+ "step": 6060
+ },
+ {
+ "epoch": 84.18173875054609,
+ "grad_norm": 0.2310352474451065,
+ "learning_rate": 0.0006,
+ "loss": 3.45137095451355,
+ "step": 6061
+ },
+ {
+ "epoch": 84.19571865443424,
+ "grad_norm": 0.22129112482070923,
+ "learning_rate": 0.0006,
+ "loss": 3.4401423931121826,
+ "step": 6062
+ },
+ {
+ "epoch": 84.20969855832242,
+ "grad_norm": 0.22799579799175262,
+ "learning_rate": 0.0006,
+ "loss": 3.4391798973083496,
+ "step": 6063
+ },
+ {
+ "epoch": 84.22367846221057,
+ "grad_norm": 0.22834676504135132,
+ "learning_rate": 0.0006,
+ "loss": 3.492427349090576,
+ "step": 6064
+ },
+ {
+ "epoch": 84.23765836609873,
+ "grad_norm": 0.22315837442874908,
+ "learning_rate": 0.0006,
+ "loss": 3.4242477416992188,
+ "step": 6065
+ },
+ {
+ "epoch": 84.2516382699869,
+ "grad_norm": 0.22605115175247192,
+ "learning_rate": 0.0006,
+ "loss": 3.441441059112549,
+ "step": 6066
+ },
+ {
+ "epoch": 84.26561817387505,
+ "grad_norm": 0.2410772442817688,
+ "learning_rate": 0.0006,
+ "loss": 3.4162003993988037,
+ "step": 6067
+ },
+ {
+ "epoch": 84.27959807776321,
+ "grad_norm": 0.23363634943962097,
+ "learning_rate": 0.0006,
+ "loss": 3.4367871284484863,
+ "step": 6068
+ },
+ {
+ "epoch": 84.29357798165138,
+ "grad_norm": 0.2501516342163086,
+ "learning_rate": 0.0006,
+ "loss": 3.4679744243621826,
+ "step": 6069
+ },
+ {
+ "epoch": 84.30755788553954,
+ "grad_norm": 0.2761887013912201,
+ "learning_rate": 0.0006,
+ "loss": 3.4481863975524902,
+ "step": 6070
+ },
+ {
+ "epoch": 84.3215377894277,
+ "grad_norm": 0.26753947138786316,
+ "learning_rate": 0.0006,
+ "loss": 3.492464065551758,
+ "step": 6071
+ },
+ {
+ "epoch": 84.33551769331586,
+ "grad_norm": 0.23492486774921417,
+ "learning_rate": 0.0006,
+ "loss": 3.4377055168151855,
+ "step": 6072
+ },
+ {
+ "epoch": 84.34949759720402,
+ "grad_norm": 0.22405743598937988,
+ "learning_rate": 0.0006,
+ "loss": 3.44317626953125,
+ "step": 6073
+ },
+ {
+ "epoch": 84.36347750109218,
+ "grad_norm": 0.262371689081192,
+ "learning_rate": 0.0006,
+ "loss": 3.445984363555908,
+ "step": 6074
+ },
+ {
+ "epoch": 84.37745740498035,
+ "grad_norm": 0.2874908745288849,
+ "learning_rate": 0.0006,
+ "loss": 3.455535411834717,
+ "step": 6075
+ },
+ {
+ "epoch": 84.3914373088685,
+ "grad_norm": 0.2813026010990143,
+ "learning_rate": 0.0006,
+ "loss": 3.450965404510498,
+ "step": 6076
+ },
+ {
+ "epoch": 84.40541721275666,
+ "grad_norm": 0.2511669099330902,
+ "learning_rate": 0.0006,
+ "loss": 3.4422781467437744,
+ "step": 6077
+ },
+ {
+ "epoch": 84.41939711664482,
+ "grad_norm": 0.24031679332256317,
+ "learning_rate": 0.0006,
+ "loss": 3.4646971225738525,
+ "step": 6078
+ },
+ {
+ "epoch": 84.43337702053299,
+ "grad_norm": 0.2375684231519699,
+ "learning_rate": 0.0006,
+ "loss": 3.404259204864502,
+ "step": 6079
+ },
+ {
+ "epoch": 84.44735692442114,
+ "grad_norm": 0.2297784835100174,
+ "learning_rate": 0.0006,
+ "loss": 3.4274559020996094,
+ "step": 6080
+ },
+ {
+ "epoch": 84.4613368283093,
+ "grad_norm": 0.22411473095417023,
+ "learning_rate": 0.0006,
+ "loss": 3.420492172241211,
+ "step": 6081
+ },
+ {
+ "epoch": 84.47531673219747,
+ "grad_norm": 0.23126399517059326,
+ "learning_rate": 0.0006,
+ "loss": 3.4440231323242188,
+ "step": 6082
+ },
+ {
+ "epoch": 84.48929663608563,
+ "grad_norm": 0.2578703761100769,
+ "learning_rate": 0.0006,
+ "loss": 3.419753074645996,
+ "step": 6083
+ },
+ {
+ "epoch": 84.50327653997378,
+ "grad_norm": 0.25254541635513306,
+ "learning_rate": 0.0006,
+ "loss": 3.4504146575927734,
+ "step": 6084
+ },
+ {
+ "epoch": 84.51725644386195,
+ "grad_norm": 0.22324225306510925,
+ "learning_rate": 0.0006,
+ "loss": 3.4860897064208984,
+ "step": 6085
+ },
+ {
+ "epoch": 84.53123634775011,
+ "grad_norm": 0.23084819316864014,
+ "learning_rate": 0.0006,
+ "loss": 3.4693355560302734,
+ "step": 6086
+ },
+ {
+ "epoch": 84.54521625163827,
+ "grad_norm": 0.23229891061782837,
+ "learning_rate": 0.0006,
+ "loss": 3.4350061416625977,
+ "step": 6087
+ },
+ {
+ "epoch": 84.55919615552644,
+ "grad_norm": 0.23634378612041473,
+ "learning_rate": 0.0006,
+ "loss": 3.425060272216797,
+ "step": 6088
+ },
+ {
+ "epoch": 84.57317605941459,
+ "grad_norm": 0.24133262038230896,
+ "learning_rate": 0.0006,
+ "loss": 3.420022487640381,
+ "step": 6089
+ },
+ {
+ "epoch": 84.58715596330275,
+ "grad_norm": 0.2206571102142334,
+ "learning_rate": 0.0006,
+ "loss": 3.4881091117858887,
+ "step": 6090
+ },
+ {
+ "epoch": 84.60113586719092,
+ "grad_norm": 0.21868985891342163,
+ "learning_rate": 0.0006,
+ "loss": 3.444207191467285,
+ "step": 6091
+ },
+ {
+ "epoch": 84.61511577107908,
+ "grad_norm": 0.21661551296710968,
+ "learning_rate": 0.0006,
+ "loss": 3.46708345413208,
+ "step": 6092
+ },
+ {
+ "epoch": 84.62909567496723,
+ "grad_norm": 0.2211335003376007,
+ "learning_rate": 0.0006,
+ "loss": 3.422534465789795,
+ "step": 6093
+ },
+ {
+ "epoch": 84.6430755788554,
+ "grad_norm": 0.23101121187210083,
+ "learning_rate": 0.0006,
+ "loss": 3.4558486938476562,
+ "step": 6094
+ },
+ {
+ "epoch": 84.65705548274356,
+ "grad_norm": 0.21324186027050018,
+ "learning_rate": 0.0006,
+ "loss": 3.488935708999634,
+ "step": 6095
+ },
+ {
+ "epoch": 84.67103538663171,
+ "grad_norm": 0.23262912034988403,
+ "learning_rate": 0.0006,
+ "loss": 3.455625057220459,
+ "step": 6096
+ },
+ {
+ "epoch": 84.68501529051987,
+ "grad_norm": 0.245137020945549,
+ "learning_rate": 0.0006,
+ "loss": 3.459805727005005,
+ "step": 6097
+ },
+ {
+ "epoch": 84.69899519440804,
+ "grad_norm": 0.24005620181560516,
+ "learning_rate": 0.0006,
+ "loss": 3.4524760246276855,
+ "step": 6098
+ },
+ {
+ "epoch": 84.7129750982962,
+ "grad_norm": 0.2383408397436142,
+ "learning_rate": 0.0006,
+ "loss": 3.482253074645996,
+ "step": 6099
+ },
+ {
+ "epoch": 84.72695500218435,
+ "grad_norm": 0.21188686788082123,
+ "learning_rate": 0.0006,
+ "loss": 3.4336321353912354,
+ "step": 6100
+ },
+ {
+ "epoch": 84.74093490607252,
+ "grad_norm": 0.20706120133399963,
+ "learning_rate": 0.0006,
+ "loss": 3.4603681564331055,
+ "step": 6101
+ },
+ {
+ "epoch": 84.75491480996068,
+ "grad_norm": 0.2089851349592209,
+ "learning_rate": 0.0006,
+ "loss": 3.433825969696045,
+ "step": 6102
+ },
+ {
+ "epoch": 84.76889471384884,
+ "grad_norm": 0.24237141013145447,
+ "learning_rate": 0.0006,
+ "loss": 3.4863271713256836,
+ "step": 6103
+ },
+ {
+ "epoch": 84.78287461773701,
+ "grad_norm": 0.24052679538726807,
+ "learning_rate": 0.0006,
+ "loss": 3.4620628356933594,
+ "step": 6104
+ },
+ {
+ "epoch": 84.79685452162516,
+ "grad_norm": 0.21260327100753784,
+ "learning_rate": 0.0006,
+ "loss": 3.4749603271484375,
+ "step": 6105
+ },
+ {
+ "epoch": 84.81083442551332,
+ "grad_norm": 0.21502383053302765,
+ "learning_rate": 0.0006,
+ "loss": 3.47800350189209,
+ "step": 6106
+ },
+ {
+ "epoch": 84.82481432940149,
+ "grad_norm": 0.2255013883113861,
+ "learning_rate": 0.0006,
+ "loss": 3.479379177093506,
+ "step": 6107
+ },
+ {
+ "epoch": 84.83879423328965,
+ "grad_norm": 0.21322280168533325,
+ "learning_rate": 0.0006,
+ "loss": 3.4761860370635986,
+ "step": 6108
+ },
+ {
+ "epoch": 84.8527741371778,
+ "grad_norm": 0.21868883073329926,
+ "learning_rate": 0.0006,
+ "loss": 3.4408018589019775,
+ "step": 6109
+ },
+ {
+ "epoch": 84.86675404106597,
+ "grad_norm": 0.24075059592723846,
+ "learning_rate": 0.0006,
+ "loss": 3.491424798965454,
+ "step": 6110
+ },
+ {
+ "epoch": 84.88073394495413,
+ "grad_norm": 0.22453387081623077,
+ "learning_rate": 0.0006,
+ "loss": 3.473700523376465,
+ "step": 6111
+ },
+ {
+ "epoch": 84.89471384884229,
+ "grad_norm": 0.21405141055583954,
+ "learning_rate": 0.0006,
+ "loss": 3.5045337677001953,
+ "step": 6112
+ },
+ {
+ "epoch": 84.90869375273044,
+ "grad_norm": 0.22792331874370575,
+ "learning_rate": 0.0006,
+ "loss": 3.459500312805176,
+ "step": 6113
+ },
+ {
+ "epoch": 84.92267365661861,
+ "grad_norm": 0.23756900429725647,
+ "learning_rate": 0.0006,
+ "loss": 3.4716384410858154,
+ "step": 6114
+ },
+ {
+ "epoch": 84.93665356050677,
+ "grad_norm": 0.23942020535469055,
+ "learning_rate": 0.0006,
+ "loss": 3.458301544189453,
+ "step": 6115
+ },
+ {
+ "epoch": 84.95063346439493,
+ "grad_norm": 0.2668362855911255,
+ "learning_rate": 0.0006,
+ "loss": 3.4793195724487305,
+ "step": 6116
+ },
+ {
+ "epoch": 84.9646133682831,
+ "grad_norm": 0.2655593454837799,
+ "learning_rate": 0.0006,
+ "loss": 3.461183547973633,
+ "step": 6117
+ },
+ {
+ "epoch": 84.97859327217125,
+ "grad_norm": 0.23327142000198364,
+ "learning_rate": 0.0006,
+ "loss": 3.488638401031494,
+ "step": 6118
+ },
+ {
+ "epoch": 84.99257317605941,
+ "grad_norm": 0.21170541644096375,
+ "learning_rate": 0.0006,
+ "loss": 3.4597835540771484,
+ "step": 6119
+ },
+ {
+ "epoch": 85.0,
+ "grad_norm": 0.25858765840530396,
+ "learning_rate": 0.0006,
+ "loss": 3.4496002197265625,
+ "step": 6120
+ },
+ {
+ "epoch": 85.0,
+ "eval_loss": 3.9907591342926025,
+ "eval_runtime": 46.7196,
+ "eval_samples_per_second": 52.269,
+ "eval_steps_per_second": 3.275,
+ "step": 6120
+ },
+ {
+ "epoch": 85.01397990388816,
+ "grad_norm": 0.25001025199890137,
+ "learning_rate": 0.0006,
+ "loss": 3.408668041229248,
+ "step": 6121
+ },
+ {
+ "epoch": 85.02795980777633,
+ "grad_norm": 0.27951815724372864,
+ "learning_rate": 0.0006,
+ "loss": 3.4662365913391113,
+ "step": 6122
+ },
+ {
+ "epoch": 85.04193971166448,
+ "grad_norm": 0.3308251202106476,
+ "learning_rate": 0.0006,
+ "loss": 3.445281982421875,
+ "step": 6123
+ },
+ {
+ "epoch": 85.05591961555264,
+ "grad_norm": 0.38616496324539185,
+ "learning_rate": 0.0006,
+ "loss": 3.420867443084717,
+ "step": 6124
+ },
+ {
+ "epoch": 85.06989951944081,
+ "grad_norm": 0.34203988313674927,
+ "learning_rate": 0.0006,
+ "loss": 3.4531023502349854,
+ "step": 6125
+ },
+ {
+ "epoch": 85.08387942332897,
+ "grad_norm": 0.2681678533554077,
+ "learning_rate": 0.0006,
+ "loss": 3.452749252319336,
+ "step": 6126
+ },
+ {
+ "epoch": 85.09785932721712,
+ "grad_norm": 0.3256039619445801,
+ "learning_rate": 0.0006,
+ "loss": 3.428740978240967,
+ "step": 6127
+ },
+ {
+ "epoch": 85.1118392311053,
+ "grad_norm": 0.35335347056388855,
+ "learning_rate": 0.0006,
+ "loss": 3.438882827758789,
+ "step": 6128
+ },
+ {
+ "epoch": 85.12581913499345,
+ "grad_norm": 0.3345780074596405,
+ "learning_rate": 0.0006,
+ "loss": 3.454054832458496,
+ "step": 6129
+ },
+ {
+ "epoch": 85.1397990388816,
+ "grad_norm": 0.26127031445503235,
+ "learning_rate": 0.0006,
+ "loss": 3.468048572540283,
+ "step": 6130
+ },
+ {
+ "epoch": 85.15377894276976,
+ "grad_norm": 0.24848037958145142,
+ "learning_rate": 0.0006,
+ "loss": 3.452026844024658,
+ "step": 6131
+ },
+ {
+ "epoch": 85.16775884665793,
+ "grad_norm": 0.23380406200885773,
+ "learning_rate": 0.0006,
+ "loss": 3.4506797790527344,
+ "step": 6132
+ },
+ {
+ "epoch": 85.18173875054609,
+ "grad_norm": 0.23879839479923248,
+ "learning_rate": 0.0006,
+ "loss": 3.451416492462158,
+ "step": 6133
+ },
+ {
+ "epoch": 85.19571865443424,
+ "grad_norm": 0.25148293375968933,
+ "learning_rate": 0.0006,
+ "loss": 3.4010143280029297,
+ "step": 6134
+ },
+ {
+ "epoch": 85.20969855832242,
+ "grad_norm": 0.22815518081188202,
+ "learning_rate": 0.0006,
+ "loss": 3.430312156677246,
+ "step": 6135
+ },
+ {
+ "epoch": 85.22367846221057,
+ "grad_norm": 0.22946542501449585,
+ "learning_rate": 0.0006,
+ "loss": 3.4514856338500977,
+ "step": 6136
+ },
+ {
+ "epoch": 85.23765836609873,
+ "grad_norm": 0.2776675522327423,
+ "learning_rate": 0.0006,
+ "loss": 3.4610185623168945,
+ "step": 6137
+ },
+ {
+ "epoch": 85.2516382699869,
+ "grad_norm": 0.2937948703765869,
+ "learning_rate": 0.0006,
+ "loss": 3.411609172821045,
+ "step": 6138
+ },
+ {
+ "epoch": 85.26561817387505,
+ "grad_norm": 0.25498732924461365,
+ "learning_rate": 0.0006,
+ "loss": 3.4253973960876465,
+ "step": 6139
+ },
+ {
+ "epoch": 85.27959807776321,
+ "grad_norm": 0.22892245650291443,
+ "learning_rate": 0.0006,
+ "loss": 3.4420440196990967,
+ "step": 6140
+ },
+ {
+ "epoch": 85.29357798165138,
+ "grad_norm": 0.28531017899513245,
+ "learning_rate": 0.0006,
+ "loss": 3.423523426055908,
+ "step": 6141
+ },
+ {
+ "epoch": 85.30755788553954,
+ "grad_norm": 0.27804628014564514,
+ "learning_rate": 0.0006,
+ "loss": 3.4334774017333984,
+ "step": 6142
+ },
+ {
+ "epoch": 85.3215377894277,
+ "grad_norm": 0.23773743212223053,
+ "learning_rate": 0.0006,
+ "loss": 3.430731773376465,
+ "step": 6143
+ },
+ {
+ "epoch": 85.33551769331586,
+ "grad_norm": 0.2544757127761841,
+ "learning_rate": 0.0006,
+ "loss": 3.434880495071411,
+ "step": 6144
+ },
+ {
+ "epoch": 85.34949759720402,
+ "grad_norm": 0.2462168037891388,
+ "learning_rate": 0.0006,
+ "loss": 3.4443912506103516,
+ "step": 6145
+ },
+ {
+ "epoch": 85.36347750109218,
+ "grad_norm": 0.2208261936903,
+ "learning_rate": 0.0006,
+ "loss": 3.428115129470825,
+ "step": 6146
+ },
+ {
+ "epoch": 85.37745740498035,
+ "grad_norm": 0.25137123465538025,
+ "learning_rate": 0.0006,
+ "loss": 3.419116973876953,
+ "step": 6147
+ },
+ {
+ "epoch": 85.3914373088685,
+ "grad_norm": 0.24375031888484955,
+ "learning_rate": 0.0006,
+ "loss": 3.451228141784668,
+ "step": 6148
+ },
+ {
+ "epoch": 85.40541721275666,
+ "grad_norm": 0.2252039909362793,
+ "learning_rate": 0.0006,
+ "loss": 3.4388835430145264,
+ "step": 6149
+ },
+ {
+ "epoch": 85.41939711664482,
+ "grad_norm": 0.23697529733181,
+ "learning_rate": 0.0006,
+ "loss": 3.447420597076416,
+ "step": 6150
+ },
+ {
+ "epoch": 85.43337702053299,
+ "grad_norm": 0.2558874189853668,
+ "learning_rate": 0.0006,
+ "loss": 3.4357810020446777,
+ "step": 6151
+ },
+ {
+ "epoch": 85.44735692442114,
+ "grad_norm": 0.27266883850097656,
+ "learning_rate": 0.0006,
+ "loss": 3.4142231941223145,
+ "step": 6152
+ },
+ {
+ "epoch": 85.4613368283093,
+ "grad_norm": 0.25111037492752075,
+ "learning_rate": 0.0006,
+ "loss": 3.444758892059326,
+ "step": 6153
+ },
+ {
+ "epoch": 85.47531673219747,
+ "grad_norm": 0.23968860507011414,
+ "learning_rate": 0.0006,
+ "loss": 3.4785890579223633,
+ "step": 6154
+ },
+ {
+ "epoch": 85.48929663608563,
+ "grad_norm": 0.25013360381126404,
+ "learning_rate": 0.0006,
+ "loss": 3.4348931312561035,
+ "step": 6155
+ },
+ {
+ "epoch": 85.50327653997378,
+ "grad_norm": 0.2417520433664322,
+ "learning_rate": 0.0006,
+ "loss": 3.468465805053711,
+ "step": 6156
+ },
+ {
+ "epoch": 85.51725644386195,
+ "grad_norm": 0.25971105694770813,
+ "learning_rate": 0.0006,
+ "loss": 3.45487117767334,
+ "step": 6157
+ },
+ {
+ "epoch": 85.53123634775011,
+ "grad_norm": 0.2513342797756195,
+ "learning_rate": 0.0006,
+ "loss": 3.4282164573669434,
+ "step": 6158
+ },
+ {
+ "epoch": 85.54521625163827,
+ "grad_norm": 0.26253822445869446,
+ "learning_rate": 0.0006,
+ "loss": 3.448113441467285,
+ "step": 6159
+ },
+ {
+ "epoch": 85.55919615552644,
+ "grad_norm": 0.2234651893377304,
+ "learning_rate": 0.0006,
+ "loss": 3.449909210205078,
+ "step": 6160
+ },
+ {
+ "epoch": 85.57317605941459,
+ "grad_norm": 0.2503814995288849,
+ "learning_rate": 0.0006,
+ "loss": 3.450794219970703,
+ "step": 6161
+ },
+ {
+ "epoch": 85.58715596330275,
+ "grad_norm": 0.3087758719921112,
+ "learning_rate": 0.0006,
+ "loss": 3.447343349456787,
+ "step": 6162
+ },
+ {
+ "epoch": 85.60113586719092,
+ "grad_norm": 0.3024158179759979,
+ "learning_rate": 0.0006,
+ "loss": 3.463745594024658,
+ "step": 6163
+ },
+ {
+ "epoch": 85.61511577107908,
+ "grad_norm": 0.2416113317012787,
+ "learning_rate": 0.0006,
+ "loss": 3.4399218559265137,
+ "step": 6164
+ },
+ {
+ "epoch": 85.62909567496723,
+ "grad_norm": 0.24341659247875214,
+ "learning_rate": 0.0006,
+ "loss": 3.434213399887085,
+ "step": 6165
+ },
+ {
+ "epoch": 85.6430755788554,
+ "grad_norm": 0.26014256477355957,
+ "learning_rate": 0.0006,
+ "loss": 3.472182273864746,
+ "step": 6166
+ },
+ {
+ "epoch": 85.65705548274356,
+ "grad_norm": 0.23963001370429993,
+ "learning_rate": 0.0006,
+ "loss": 3.469517230987549,
+ "step": 6167
+ },
+ {
+ "epoch": 85.67103538663171,
+ "grad_norm": 0.22674021124839783,
+ "learning_rate": 0.0006,
+ "loss": 3.479959011077881,
+ "step": 6168
+ },
+ {
+ "epoch": 85.68501529051987,
+ "grad_norm": 0.20710913836956024,
+ "learning_rate": 0.0006,
+ "loss": 3.480604887008667,
+ "step": 6169
+ },
+ {
+ "epoch": 85.69899519440804,
+ "grad_norm": 0.21589986979961395,
+ "learning_rate": 0.0006,
+ "loss": 3.469245672225952,
+ "step": 6170
+ },
+ {
+ "epoch": 85.7129750982962,
+ "grad_norm": 0.23213276267051697,
+ "learning_rate": 0.0006,
+ "loss": 3.4860196113586426,
+ "step": 6171
+ },
+ {
+ "epoch": 85.72695500218435,
+ "grad_norm": 0.2420436143875122,
+ "learning_rate": 0.0006,
+ "loss": 3.4592981338500977,
+ "step": 6172
+ },
+ {
+ "epoch": 85.74093490607252,
+ "grad_norm": 0.238332599401474,
+ "learning_rate": 0.0006,
+ "loss": 3.4611167907714844,
+ "step": 6173
+ },
+ {
+ "epoch": 85.75491480996068,
+ "grad_norm": 0.24084614217281342,
+ "learning_rate": 0.0006,
+ "loss": 3.453734874725342,
+ "step": 6174
+ },
+ {
+ "epoch": 85.76889471384884,
+ "grad_norm": 0.24251829087734222,
+ "learning_rate": 0.0006,
+ "loss": 3.4667110443115234,
+ "step": 6175
+ },
+ {
+ "epoch": 85.78287461773701,
+ "grad_norm": 0.2444705069065094,
+ "learning_rate": 0.0006,
+ "loss": 3.4690022468566895,
+ "step": 6176
+ },
+ {
+ "epoch": 85.79685452162516,
+ "grad_norm": 0.2430824637413025,
+ "learning_rate": 0.0006,
+ "loss": 3.4224982261657715,
+ "step": 6177
+ },
+ {
+ "epoch": 85.81083442551332,
+ "grad_norm": 0.2261204868555069,
+ "learning_rate": 0.0006,
+ "loss": 3.438565731048584,
+ "step": 6178
+ },
+ {
+ "epoch": 85.82481432940149,
+ "grad_norm": 0.24399994313716888,
+ "learning_rate": 0.0006,
+ "loss": 3.4490773677825928,
+ "step": 6179
+ },
+ {
+ "epoch": 85.83879423328965,
+ "grad_norm": 0.2316661775112152,
+ "learning_rate": 0.0006,
+ "loss": 3.4330191612243652,
+ "step": 6180
+ },
+ {
+ "epoch": 85.8527741371778,
+ "grad_norm": 0.2188100963830948,
+ "learning_rate": 0.0006,
+ "loss": 3.4233832359313965,
+ "step": 6181
+ },
+ {
+ "epoch": 85.86675404106597,
+ "grad_norm": 0.24287547171115875,
+ "learning_rate": 0.0006,
+ "loss": 3.48030948638916,
+ "step": 6182
+ },
+ {
+ "epoch": 85.88073394495413,
+ "grad_norm": 0.24130523204803467,
+ "learning_rate": 0.0006,
+ "loss": 3.4757492542266846,
+ "step": 6183
+ },
+ {
+ "epoch": 85.89471384884229,
+ "grad_norm": 0.2325134128332138,
+ "learning_rate": 0.0006,
+ "loss": 3.4519848823547363,
+ "step": 6184
+ },
+ {
+ "epoch": 85.90869375273044,
+ "grad_norm": 0.23389047384262085,
+ "learning_rate": 0.0006,
+ "loss": 3.450676679611206,
+ "step": 6185
+ },
+ {
+ "epoch": 85.92267365661861,
+ "grad_norm": 0.2409949004650116,
+ "learning_rate": 0.0006,
+ "loss": 3.466392993927002,
+ "step": 6186
+ },
+ {
+ "epoch": 85.93665356050677,
+ "grad_norm": 0.2111821174621582,
+ "learning_rate": 0.0006,
+ "loss": 3.4553070068359375,
+ "step": 6187
+ },
+ {
+ "epoch": 85.95063346439493,
+ "grad_norm": 0.22436438500881195,
+ "learning_rate": 0.0006,
+ "loss": 3.445744752883911,
+ "step": 6188
+ },
+ {
+ "epoch": 85.9646133682831,
+ "grad_norm": 0.26781001687049866,
+ "learning_rate": 0.0006,
+ "loss": 3.482301712036133,
+ "step": 6189
+ },
+ {
+ "epoch": 85.97859327217125,
+ "grad_norm": 0.2733628749847412,
+ "learning_rate": 0.0006,
+ "loss": 3.4652910232543945,
+ "step": 6190
+ },
+ {
+ "epoch": 85.99257317605941,
+ "grad_norm": 0.25800710916519165,
+ "learning_rate": 0.0006,
+ "loss": 3.4839513301849365,
+ "step": 6191
+ },
+ {
+ "epoch": 86.0,
+ "grad_norm": 0.26130056381225586,
+ "learning_rate": 0.0006,
+ "loss": 3.4895389080047607,
+ "step": 6192
+ },
+ {
+ "epoch": 86.0,
+ "eval_loss": 4.000945568084717,
+ "eval_runtime": 46.0157,
+ "eval_samples_per_second": 53.069,
+ "eval_steps_per_second": 3.325,
+ "step": 6192
+ },
+ {
+ "epoch": 86.01397990388816,
+ "grad_norm": 0.23707960546016693,
+ "learning_rate": 0.0006,
+ "loss": 3.4757728576660156,
+ "step": 6193
+ },
+ {
+ "epoch": 86.02795980777633,
+ "grad_norm": 0.2764144241809845,
+ "learning_rate": 0.0006,
+ "loss": 3.42104434967041,
+ "step": 6194
+ },
+ {
+ "epoch": 86.04193971166448,
+ "grad_norm": 0.35273146629333496,
+ "learning_rate": 0.0006,
+ "loss": 3.4807112216949463,
+ "step": 6195
+ },
+ {
+ "epoch": 86.05591961555264,
+ "grad_norm": 0.3258572220802307,
+ "learning_rate": 0.0006,
+ "loss": 3.403010368347168,
+ "step": 6196
+ },
+ {
+ "epoch": 86.06989951944081,
+ "grad_norm": 0.24783624708652496,
+ "learning_rate": 0.0006,
+ "loss": 3.4262008666992188,
+ "step": 6197
+ },
+ {
+ "epoch": 86.08387942332897,
+ "grad_norm": 0.2660251259803772,
+ "learning_rate": 0.0006,
+ "loss": 3.4516983032226562,
+ "step": 6198
+ },
+ {
+ "epoch": 86.09785932721712,
+ "grad_norm": 0.3270852863788605,
+ "learning_rate": 0.0006,
+ "loss": 3.389641761779785,
+ "step": 6199
+ },
+ {
+ "epoch": 86.1118392311053,
+ "grad_norm": 0.2954437732696533,
+ "learning_rate": 0.0006,
+ "loss": 3.4136974811553955,
+ "step": 6200
+ },
+ {
+ "epoch": 86.12581913499345,
+ "grad_norm": 0.2529906630516052,
+ "learning_rate": 0.0006,
+ "loss": 3.460862636566162,
+ "step": 6201
+ },
+ {
+ "epoch": 86.1397990388816,
+ "grad_norm": 0.26711413264274597,
+ "learning_rate": 0.0006,
+ "loss": 3.4429545402526855,
+ "step": 6202
+ },
+ {
+ "epoch": 86.15377894276976,
+ "grad_norm": 0.2965209484100342,
+ "learning_rate": 0.0006,
+ "loss": 3.4389548301696777,
+ "step": 6203
+ },
+ {
+ "epoch": 86.16775884665793,
+ "grad_norm": 0.22617623209953308,
+ "learning_rate": 0.0006,
+ "loss": 3.4105193614959717,
+ "step": 6204
+ },
+ {
+ "epoch": 86.18173875054609,
+ "grad_norm": 0.3065163791179657,
+ "learning_rate": 0.0006,
+ "loss": 3.4296300411224365,
+ "step": 6205
+ },
+ {
+ "epoch": 86.19571865443424,
+ "grad_norm": 0.3704215884208679,
+ "learning_rate": 0.0006,
+ "loss": 3.4289116859436035,
+ "step": 6206
+ },
+ {
+ "epoch": 86.20969855832242,
+ "grad_norm": 0.31153222918510437,
+ "learning_rate": 0.0006,
+ "loss": 3.4390859603881836,
+ "step": 6207
+ },
+ {
+ "epoch": 86.22367846221057,
+ "grad_norm": 0.22702480852603912,
+ "learning_rate": 0.0006,
+ "loss": 3.383817672729492,
+ "step": 6208
+ },
+ {
+ "epoch": 86.23765836609873,
+ "grad_norm": 0.28542056679725647,
+ "learning_rate": 0.0006,
+ "loss": 3.4279141426086426,
+ "step": 6209
+ },
+ {
+ "epoch": 86.2516382699869,
+ "grad_norm": 0.3165401816368103,
+ "learning_rate": 0.0006,
+ "loss": 3.4489288330078125,
+ "step": 6210
+ },
+ {
+ "epoch": 86.26561817387505,
+ "grad_norm": 0.2535671293735504,
+ "learning_rate": 0.0006,
+ "loss": 3.4294838905334473,
+ "step": 6211
+ },
+ {
+ "epoch": 86.27959807776321,
+ "grad_norm": 0.22173726558685303,
+ "learning_rate": 0.0006,
+ "loss": 3.426486015319824,
+ "step": 6212
+ },
+ {
+ "epoch": 86.29357798165138,
+ "grad_norm": 0.2316059023141861,
+ "learning_rate": 0.0006,
+ "loss": 3.4588875770568848,
+ "step": 6213
+ },
+ {
+ "epoch": 86.30755788553954,
+ "grad_norm": 0.27897709608078003,
+ "learning_rate": 0.0006,
+ "loss": 3.4686155319213867,
+ "step": 6214
+ },
+ {
+ "epoch": 86.3215377894277,
+ "grad_norm": 0.25086233019828796,
+ "learning_rate": 0.0006,
+ "loss": 3.446758270263672,
+ "step": 6215
+ },
+ {
+ "epoch": 86.33551769331586,
+ "grad_norm": 0.23055854439735413,
+ "learning_rate": 0.0006,
+ "loss": 3.4350295066833496,
+ "step": 6216
+ },
+ {
+ "epoch": 86.34949759720402,
+ "grad_norm": 0.23594850301742554,
+ "learning_rate": 0.0006,
+ "loss": 3.4460220336914062,
+ "step": 6217
+ },
+ {
+ "epoch": 86.36347750109218,
+ "grad_norm": 0.23999659717082977,
+ "learning_rate": 0.0006,
+ "loss": 3.453679084777832,
+ "step": 6218
+ },
+ {
+ "epoch": 86.37745740498035,
+ "grad_norm": 0.22812359035015106,
+ "learning_rate": 0.0006,
+ "loss": 3.4583206176757812,
+ "step": 6219
+ },
+ {
+ "epoch": 86.3914373088685,
+ "grad_norm": 0.2186255306005478,
+ "learning_rate": 0.0006,
+ "loss": 3.4447624683380127,
+ "step": 6220
+ },
+ {
+ "epoch": 86.40541721275666,
+ "grad_norm": 0.2433556765317917,
+ "learning_rate": 0.0006,
+ "loss": 3.4328105449676514,
+ "step": 6221
+ },
+ {
+ "epoch": 86.41939711664482,
+ "grad_norm": 0.2386074811220169,
+ "learning_rate": 0.0006,
+ "loss": 3.4535934925079346,
+ "step": 6222
+ },
+ {
+ "epoch": 86.43337702053299,
+ "grad_norm": 0.20723499357700348,
+ "learning_rate": 0.0006,
+ "loss": 3.450345516204834,
+ "step": 6223
+ },
+ {
+ "epoch": 86.44735692442114,
+ "grad_norm": 0.22816963493824005,
+ "learning_rate": 0.0006,
+ "loss": 3.423295497894287,
+ "step": 6224
+ },
+ {
+ "epoch": 86.4613368283093,
+ "grad_norm": 0.22962307929992676,
+ "learning_rate": 0.0006,
+ "loss": 3.45308256149292,
+ "step": 6225
+ },
+ {
+ "epoch": 86.47531673219747,
+ "grad_norm": 0.2421693354845047,
+ "learning_rate": 0.0006,
+ "loss": 3.426295757293701,
+ "step": 6226
+ },
+ {
+ "epoch": 86.48929663608563,
+ "grad_norm": 0.24205337464809418,
+ "learning_rate": 0.0006,
+ "loss": 3.462637424468994,
+ "step": 6227
+ },
+ {
+ "epoch": 86.50327653997378,
+ "grad_norm": 0.22262844443321228,
+ "learning_rate": 0.0006,
+ "loss": 3.4503636360168457,
+ "step": 6228
+ },
+ {
+ "epoch": 86.51725644386195,
+ "grad_norm": 0.2236059308052063,
+ "learning_rate": 0.0006,
+ "loss": 3.4362423419952393,
+ "step": 6229
+ },
+ {
+ "epoch": 86.53123634775011,
+ "grad_norm": 0.2580125033855438,
+ "learning_rate": 0.0006,
+ "loss": 3.4705324172973633,
+ "step": 6230
+ },
+ {
+ "epoch": 86.54521625163827,
+ "grad_norm": 0.22285981476306915,
+ "learning_rate": 0.0006,
+ "loss": 3.406367301940918,
+ "step": 6231
+ },
+ {
+ "epoch": 86.55919615552644,
+ "grad_norm": 0.2187017947435379,
+ "learning_rate": 0.0006,
+ "loss": 3.471634864807129,
+ "step": 6232
+ },
+ {
+ "epoch": 86.57317605941459,
+ "grad_norm": 0.23384198546409607,
+ "learning_rate": 0.0006,
+ "loss": 3.4251890182495117,
+ "step": 6233
+ },
+ {
+ "epoch": 86.58715596330275,
+ "grad_norm": 0.22788184881210327,
+ "learning_rate": 0.0006,
+ "loss": 3.445756673812866,
+ "step": 6234
+ },
+ {
+ "epoch": 86.60113586719092,
+ "grad_norm": 0.2567905783653259,
+ "learning_rate": 0.0006,
+ "loss": 3.5046191215515137,
+ "step": 6235
+ },
+ {
+ "epoch": 86.61511577107908,
+ "grad_norm": 0.2762927711009979,
+ "learning_rate": 0.0006,
+ "loss": 3.4604568481445312,
+ "step": 6236
+ },
+ {
+ "epoch": 86.62909567496723,
+ "grad_norm": 0.23241275548934937,
+ "learning_rate": 0.0006,
+ "loss": 3.4507508277893066,
+ "step": 6237
+ },
+ {
+ "epoch": 86.6430755788554,
+ "grad_norm": 0.20948687195777893,
+ "learning_rate": 0.0006,
+ "loss": 3.427971601486206,
+ "step": 6238
+ },
+ {
+ "epoch": 86.65705548274356,
+ "grad_norm": 0.22805556654930115,
+ "learning_rate": 0.0006,
+ "loss": 3.430675506591797,
+ "step": 6239
+ },
+ {
+ "epoch": 86.67103538663171,
+ "grad_norm": 0.23048850893974304,
+ "learning_rate": 0.0006,
+ "loss": 3.4266695976257324,
+ "step": 6240
+ },
+ {
+ "epoch": 86.68501529051987,
+ "grad_norm": 0.2140568345785141,
+ "learning_rate": 0.0006,
+ "loss": 3.4591073989868164,
+ "step": 6241
+ },
+ {
+ "epoch": 86.69899519440804,
+ "grad_norm": 0.21846334636211395,
+ "learning_rate": 0.0006,
+ "loss": 3.4366419315338135,
+ "step": 6242
+ },
+ {
+ "epoch": 86.7129750982962,
+ "grad_norm": 0.2556895911693573,
+ "learning_rate": 0.0006,
+ "loss": 3.489287853240967,
+ "step": 6243
+ },
+ {
+ "epoch": 86.72695500218435,
+ "grad_norm": 0.2661151587963104,
+ "learning_rate": 0.0006,
+ "loss": 3.458925485610962,
+ "step": 6244
+ },
+ {
+ "epoch": 86.74093490607252,
+ "grad_norm": 0.25377899408340454,
+ "learning_rate": 0.0006,
+ "loss": 3.467498779296875,
+ "step": 6245
+ },
+ {
+ "epoch": 86.75491480996068,
+ "grad_norm": 0.22298671305179596,
+ "learning_rate": 0.0006,
+ "loss": 3.435739517211914,
+ "step": 6246
+ },
+ {
+ "epoch": 86.76889471384884,
+ "grad_norm": 0.21926400065422058,
+ "learning_rate": 0.0006,
+ "loss": 3.470432996749878,
+ "step": 6247
+ },
+ {
+ "epoch": 86.78287461773701,
+ "grad_norm": 0.25376564264297485,
+ "learning_rate": 0.0006,
+ "loss": 3.485386371612549,
+ "step": 6248
+ },
+ {
+ "epoch": 86.79685452162516,
+ "grad_norm": 0.2282877415418625,
+ "learning_rate": 0.0006,
+ "loss": 3.480099678039551,
+ "step": 6249
+ },
+ {
+ "epoch": 86.81083442551332,
+ "grad_norm": 0.22524423897266388,
+ "learning_rate": 0.0006,
+ "loss": 3.4317450523376465,
+ "step": 6250
+ },
+ {
+ "epoch": 86.82481432940149,
+ "grad_norm": 0.19947095215320587,
+ "learning_rate": 0.0006,
+ "loss": 3.4561359882354736,
+ "step": 6251
+ },
+ {
+ "epoch": 86.83879423328965,
+ "grad_norm": 0.225057914853096,
+ "learning_rate": 0.0006,
+ "loss": 3.4447779655456543,
+ "step": 6252
+ },
+ {
+ "epoch": 86.8527741371778,
+ "grad_norm": 0.23058123886585236,
+ "learning_rate": 0.0006,
+ "loss": 3.4552550315856934,
+ "step": 6253
+ },
+ {
+ "epoch": 86.86675404106597,
+ "grad_norm": 0.22090156376361847,
+ "learning_rate": 0.0006,
+ "loss": 3.462661027908325,
+ "step": 6254
+ },
+ {
+ "epoch": 86.88073394495413,
+ "grad_norm": 0.214723140001297,
+ "learning_rate": 0.0006,
+ "loss": 3.4558322429656982,
+ "step": 6255
+ },
+ {
+ "epoch": 86.89471384884229,
+ "grad_norm": 0.22168223559856415,
+ "learning_rate": 0.0006,
+ "loss": 3.441250801086426,
+ "step": 6256
+ },
+ {
+ "epoch": 86.90869375273044,
+ "grad_norm": 0.21010933816432953,
+ "learning_rate": 0.0006,
+ "loss": 3.4355521202087402,
+ "step": 6257
+ },
+ {
+ "epoch": 86.92267365661861,
+ "grad_norm": 0.21967823803424835,
+ "learning_rate": 0.0006,
+ "loss": 3.4233269691467285,
+ "step": 6258
+ },
+ {
+ "epoch": 86.93665356050677,
+ "grad_norm": 0.22320227324962616,
+ "learning_rate": 0.0006,
+ "loss": 3.4550540447235107,
+ "step": 6259
+ },
+ {
+ "epoch": 86.95063346439493,
+ "grad_norm": 0.22877629101276398,
+ "learning_rate": 0.0006,
+ "loss": 3.46563720703125,
+ "step": 6260
+ },
+ {
+ "epoch": 86.9646133682831,
+ "grad_norm": 0.2401096075773239,
+ "learning_rate": 0.0006,
+ "loss": 3.463639259338379,
+ "step": 6261
+ },
+ {
+ "epoch": 86.97859327217125,
+ "grad_norm": 0.21287918090820312,
+ "learning_rate": 0.0006,
+ "loss": 3.4746999740600586,
+ "step": 6262
+ },
+ {
+ "epoch": 86.99257317605941,
+ "grad_norm": 0.22452335059642792,
+ "learning_rate": 0.0006,
+ "loss": 3.467658281326294,
+ "step": 6263
+ },
+ {
+ "epoch": 87.0,
+ "grad_norm": 0.26455584168434143,
+ "learning_rate": 0.0006,
+ "loss": 3.4675745964050293,
+ "step": 6264
+ },
+ {
+ "epoch": 87.0,
+ "eval_loss": 3.9968631267547607,
+ "eval_runtime": 46.323,
+ "eval_samples_per_second": 52.717,
+ "eval_steps_per_second": 3.303,
+ "step": 6264
+ },
+ {
+ "epoch": 87.01397990388816,
+ "grad_norm": 0.2470027059316635,
+ "learning_rate": 0.0006,
+ "loss": 3.406507730484009,
+ "step": 6265
+ },
+ {
+ "epoch": 87.02795980777633,
+ "grad_norm": 0.2460237443447113,
+ "learning_rate": 0.0006,
+ "loss": 3.411306381225586,
+ "step": 6266
+ },
+ {
+ "epoch": 87.04193971166448,
+ "grad_norm": 0.27289488911628723,
+ "learning_rate": 0.0006,
+ "loss": 3.4275155067443848,
+ "step": 6267
+ },
+ {
+ "epoch": 87.05591961555264,
+ "grad_norm": 0.2657255232334137,
+ "learning_rate": 0.0006,
+ "loss": 3.4513368606567383,
+ "step": 6268
+ },
+ {
+ "epoch": 87.06989951944081,
+ "grad_norm": 0.2561056613922119,
+ "learning_rate": 0.0006,
+ "loss": 3.4209394454956055,
+ "step": 6269
+ },
+ {
+ "epoch": 87.08387942332897,
+ "grad_norm": 0.24750930070877075,
+ "learning_rate": 0.0006,
+ "loss": 3.442840576171875,
+ "step": 6270
+ },
+ {
+ "epoch": 87.09785932721712,
+ "grad_norm": 0.24194562435150146,
+ "learning_rate": 0.0006,
+ "loss": 3.432831287384033,
+ "step": 6271
+ },
+ {
+ "epoch": 87.1118392311053,
+ "grad_norm": 0.24561241269111633,
+ "learning_rate": 0.0006,
+ "loss": 3.41995906829834,
+ "step": 6272
+ },
+ {
+ "epoch": 87.12581913499345,
+ "grad_norm": 0.28488844633102417,
+ "learning_rate": 0.0006,
+ "loss": 3.4203033447265625,
+ "step": 6273
+ },
+ {
+ "epoch": 87.1397990388816,
+ "grad_norm": 0.2719418406486511,
+ "learning_rate": 0.0006,
+ "loss": 3.4112062454223633,
+ "step": 6274
+ },
+ {
+ "epoch": 87.15377894276976,
+ "grad_norm": 0.24953287839889526,
+ "learning_rate": 0.0006,
+ "loss": 3.4096338748931885,
+ "step": 6275
+ },
+ {
+ "epoch": 87.16775884665793,
+ "grad_norm": 0.23657488822937012,
+ "learning_rate": 0.0006,
+ "loss": 3.4253625869750977,
+ "step": 6276
+ },
+ {
+ "epoch": 87.18173875054609,
+ "grad_norm": 0.23536205291748047,
+ "learning_rate": 0.0006,
+ "loss": 3.417539596557617,
+ "step": 6277
+ },
+ {
+ "epoch": 87.19571865443424,
+ "grad_norm": 0.2406543642282486,
+ "learning_rate": 0.0006,
+ "loss": 3.4071755409240723,
+ "step": 6278
+ },
+ {
+ "epoch": 87.20969855832242,
+ "grad_norm": 0.2562157213687897,
+ "learning_rate": 0.0006,
+ "loss": 3.4041831493377686,
+ "step": 6279
+ },
+ {
+ "epoch": 87.22367846221057,
+ "grad_norm": 0.2869356870651245,
+ "learning_rate": 0.0006,
+ "loss": 3.414750576019287,
+ "step": 6280
+ },
+ {
+ "epoch": 87.23765836609873,
+ "grad_norm": 0.27232855558395386,
+ "learning_rate": 0.0006,
+ "loss": 3.407370090484619,
+ "step": 6281
+ },
+ {
+ "epoch": 87.2516382699869,
+ "grad_norm": 0.2774076759815216,
+ "learning_rate": 0.0006,
+ "loss": 3.4218215942382812,
+ "step": 6282
+ },
+ {
+ "epoch": 87.26561817387505,
+ "grad_norm": 0.30042508244514465,
+ "learning_rate": 0.0006,
+ "loss": 3.4334588050842285,
+ "step": 6283
+ },
+ {
+ "epoch": 87.27959807776321,
+ "grad_norm": 0.2553543448448181,
+ "learning_rate": 0.0006,
+ "loss": 3.4333605766296387,
+ "step": 6284
+ },
+ {
+ "epoch": 87.29357798165138,
+ "grad_norm": 0.2525957226753235,
+ "learning_rate": 0.0006,
+ "loss": 3.4196009635925293,
+ "step": 6285
+ },
+ {
+ "epoch": 87.30755788553954,
+ "grad_norm": 0.24260185658931732,
+ "learning_rate": 0.0006,
+ "loss": 3.4140827655792236,
+ "step": 6286
+ },
+ {
+ "epoch": 87.3215377894277,
+ "grad_norm": 0.22283563017845154,
+ "learning_rate": 0.0006,
+ "loss": 3.444605827331543,
+ "step": 6287
+ },
+ {
+ "epoch": 87.33551769331586,
+ "grad_norm": 0.235158771276474,
+ "learning_rate": 0.0006,
+ "loss": 3.431881904602051,
+ "step": 6288
+ },
+ {
+ "epoch": 87.34949759720402,
+ "grad_norm": 0.2347733974456787,
+ "learning_rate": 0.0006,
+ "loss": 3.428152561187744,
+ "step": 6289
+ },
+ {
+ "epoch": 87.36347750109218,
+ "grad_norm": 0.2563766837120056,
+ "learning_rate": 0.0006,
+ "loss": 3.4577133655548096,
+ "step": 6290
+ },
+ {
+ "epoch": 87.37745740498035,
+ "grad_norm": 0.2618260681629181,
+ "learning_rate": 0.0006,
+ "loss": 3.4267096519470215,
+ "step": 6291
+ },
+ {
+ "epoch": 87.3914373088685,
+ "grad_norm": 0.25793492794036865,
+ "learning_rate": 0.0006,
+ "loss": 3.4507100582122803,
+ "step": 6292
+ },
+ {
+ "epoch": 87.40541721275666,
+ "grad_norm": 0.25354278087615967,
+ "learning_rate": 0.0006,
+ "loss": 3.4111928939819336,
+ "step": 6293
+ },
+ {
+ "epoch": 87.41939711664482,
+ "grad_norm": 0.2546374201774597,
+ "learning_rate": 0.0006,
+ "loss": 3.4853005409240723,
+ "step": 6294
+ },
+ {
+ "epoch": 87.43337702053299,
+ "grad_norm": 0.22910001873970032,
+ "learning_rate": 0.0006,
+ "loss": 3.46594500541687,
+ "step": 6295
+ },
+ {
+ "epoch": 87.44735692442114,
+ "grad_norm": 0.26341190934181213,
+ "learning_rate": 0.0006,
+ "loss": 3.448117733001709,
+ "step": 6296
+ },
+ {
+ "epoch": 87.4613368283093,
+ "grad_norm": 0.24096941947937012,
+ "learning_rate": 0.0006,
+ "loss": 3.4500057697296143,
+ "step": 6297
+ },
+ {
+ "epoch": 87.47531673219747,
+ "grad_norm": 0.22930867969989777,
+ "learning_rate": 0.0006,
+ "loss": 3.4056637287139893,
+ "step": 6298
+ },
+ {
+ "epoch": 87.48929663608563,
+ "grad_norm": 0.24585163593292236,
+ "learning_rate": 0.0006,
+ "loss": 3.443779945373535,
+ "step": 6299
+ },
+ {
+ "epoch": 87.50327653997378,
+ "grad_norm": 0.2679557204246521,
+ "learning_rate": 0.0006,
+ "loss": 3.4453015327453613,
+ "step": 6300
+ },
+ {
+ "epoch": 87.51725644386195,
+ "grad_norm": 0.2750099301338196,
+ "learning_rate": 0.0006,
+ "loss": 3.4492931365966797,
+ "step": 6301
+ },
+ {
+ "epoch": 87.53123634775011,
+ "grad_norm": 0.2397976517677307,
+ "learning_rate": 0.0006,
+ "loss": 3.4672493934631348,
+ "step": 6302
+ },
+ {
+ "epoch": 87.54521625163827,
+ "grad_norm": 0.2328847199678421,
+ "learning_rate": 0.0006,
+ "loss": 3.4675941467285156,
+ "step": 6303
+ },
+ {
+ "epoch": 87.55919615552644,
+ "grad_norm": 0.2174302190542221,
+ "learning_rate": 0.0006,
+ "loss": 3.4673750400543213,
+ "step": 6304
+ },
+ {
+ "epoch": 87.57317605941459,
+ "grad_norm": 0.2191520780324936,
+ "learning_rate": 0.0006,
+ "loss": 3.447082042694092,
+ "step": 6305
+ },
+ {
+ "epoch": 87.58715596330275,
+ "grad_norm": 0.221266508102417,
+ "learning_rate": 0.0006,
+ "loss": 3.4626669883728027,
+ "step": 6306
+ },
+ {
+ "epoch": 87.60113586719092,
+ "grad_norm": 0.23890595138072968,
+ "learning_rate": 0.0006,
+ "loss": 3.4423880577087402,
+ "step": 6307
+ },
+ {
+ "epoch": 87.61511577107908,
+ "grad_norm": 0.2518463730812073,
+ "learning_rate": 0.0006,
+ "loss": 3.444969415664673,
+ "step": 6308
+ },
+ {
+ "epoch": 87.62909567496723,
+ "grad_norm": 0.26311877369880676,
+ "learning_rate": 0.0006,
+ "loss": 3.431830406188965,
+ "step": 6309
+ },
+ {
+ "epoch": 87.6430755788554,
+ "grad_norm": 0.22257472574710846,
+ "learning_rate": 0.0006,
+ "loss": 3.4477615356445312,
+ "step": 6310
+ },
+ {
+ "epoch": 87.65705548274356,
+ "grad_norm": 0.20058895647525787,
+ "learning_rate": 0.0006,
+ "loss": 3.4231035709381104,
+ "step": 6311
+ },
+ {
+ "epoch": 87.67103538663171,
+ "grad_norm": 0.25480031967163086,
+ "learning_rate": 0.0006,
+ "loss": 3.455605983734131,
+ "step": 6312
+ },
+ {
+ "epoch": 87.68501529051987,
+ "grad_norm": 0.281009703874588,
+ "learning_rate": 0.0006,
+ "loss": 3.4484899044036865,
+ "step": 6313
+ },
+ {
+ "epoch": 87.69899519440804,
+ "grad_norm": 0.2769845724105835,
+ "learning_rate": 0.0006,
+ "loss": 3.4509403705596924,
+ "step": 6314
+ },
+ {
+ "epoch": 87.7129750982962,
+ "grad_norm": 0.25785791873931885,
+ "learning_rate": 0.0006,
+ "loss": 3.4717955589294434,
+ "step": 6315
+ },
+ {
+ "epoch": 87.72695500218435,
+ "grad_norm": 0.2630847990512848,
+ "learning_rate": 0.0006,
+ "loss": 3.489973545074463,
+ "step": 6316
+ },
+ {
+ "epoch": 87.74093490607252,
+ "grad_norm": 0.2828741669654846,
+ "learning_rate": 0.0006,
+ "loss": 3.4274351596832275,
+ "step": 6317
+ },
+ {
+ "epoch": 87.75491480996068,
+ "grad_norm": 0.26448315382003784,
+ "learning_rate": 0.0006,
+ "loss": 3.439527988433838,
+ "step": 6318
+ },
+ {
+ "epoch": 87.76889471384884,
+ "grad_norm": 0.2555212080478668,
+ "learning_rate": 0.0006,
+ "loss": 3.476854085922241,
+ "step": 6319
+ },
+ {
+ "epoch": 87.78287461773701,
+ "grad_norm": 0.2586565911769867,
+ "learning_rate": 0.0006,
+ "loss": 3.4791836738586426,
+ "step": 6320
+ },
+ {
+ "epoch": 87.79685452162516,
+ "grad_norm": 0.24381688237190247,
+ "learning_rate": 0.0006,
+ "loss": 3.4730138778686523,
+ "step": 6321
+ },
+ {
+ "epoch": 87.81083442551332,
+ "grad_norm": 0.24554914236068726,
+ "learning_rate": 0.0006,
+ "loss": 3.466851234436035,
+ "step": 6322
+ },
+ {
+ "epoch": 87.82481432940149,
+ "grad_norm": 0.2559501826763153,
+ "learning_rate": 0.0006,
+ "loss": 3.4899802207946777,
+ "step": 6323
+ },
+ {
+ "epoch": 87.83879423328965,
+ "grad_norm": 0.24709442257881165,
+ "learning_rate": 0.0006,
+ "loss": 3.462717294692993,
+ "step": 6324
+ },
+ {
+ "epoch": 87.8527741371778,
+ "grad_norm": 0.238383486866951,
+ "learning_rate": 0.0006,
+ "loss": 3.4490647315979004,
+ "step": 6325
+ },
+ {
+ "epoch": 87.86675404106597,
+ "grad_norm": 0.25038403272628784,
+ "learning_rate": 0.0006,
+ "loss": 3.4700093269348145,
+ "step": 6326
+ },
+ {
+ "epoch": 87.88073394495413,
+ "grad_norm": 0.25541093945503235,
+ "learning_rate": 0.0006,
+ "loss": 3.4632275104522705,
+ "step": 6327
+ },
+ {
+ "epoch": 87.89471384884229,
+ "grad_norm": 0.27114391326904297,
+ "learning_rate": 0.0006,
+ "loss": 3.4618139266967773,
+ "step": 6328
+ },
+ {
+ "epoch": 87.90869375273044,
+ "grad_norm": 0.23148465156555176,
+ "learning_rate": 0.0006,
+ "loss": 3.438594341278076,
+ "step": 6329
+ },
+ {
+ "epoch": 87.92267365661861,
+ "grad_norm": 0.2270335704088211,
+ "learning_rate": 0.0006,
+ "loss": 3.4554107189178467,
+ "step": 6330
+ },
+ {
+ "epoch": 87.93665356050677,
+ "grad_norm": 0.2097586989402771,
+ "learning_rate": 0.0006,
+ "loss": 3.4348864555358887,
+ "step": 6331
+ },
+ {
+ "epoch": 87.95063346439493,
+ "grad_norm": 0.2221650779247284,
+ "learning_rate": 0.0006,
+ "loss": 3.449270486831665,
+ "step": 6332
+ },
+ {
+ "epoch": 87.9646133682831,
+ "grad_norm": 0.2341674566268921,
+ "learning_rate": 0.0006,
+ "loss": 3.452688694000244,
+ "step": 6333
+ },
+ {
+ "epoch": 87.97859327217125,
+ "grad_norm": 0.23425638675689697,
+ "learning_rate": 0.0006,
+ "loss": 3.478743076324463,
+ "step": 6334
+ },
+ {
+ "epoch": 87.99257317605941,
+ "grad_norm": 0.22582922875881195,
+ "learning_rate": 0.0006,
+ "loss": 3.4957661628723145,
+ "step": 6335
+ },
+ {
+ "epoch": 88.0,
+ "grad_norm": 0.25822433829307556,
+ "learning_rate": 0.0006,
+ "loss": 3.4841136932373047,
+ "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/mask15-l2r50-fulle-lm/checkpoint-6336/training_args.bin b/runs/mask15-l2r50-fulle-lm/checkpoint-6336/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..43721c50815fe94f90cb043bf545b8f7bd9afc38
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-6336/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:a0b8d7bb9ac952b1abed3bd1e5c8f6ebd20daa957b3a85688954f8df03be6eb9
+size 4856
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-6624/chat_template.jinja b/runs/mask15-l2r50-fulle-lm/checkpoint-6624/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/mask15-l2r50-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/mask15-l2r50-fulle-lm/checkpoint-6624/config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-6624/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..1b4ac3c550d6003148026765eba4cb1512b216c9
--- /dev/null
+++ b/runs/mask15-l2r50-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": 151672
+}
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-6624/generation_config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-6624/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..5cd15fe1269fd505cfdefe9b3e9989dacd9f68f4
--- /dev/null
+++ b/runs/mask15-l2r50-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/mask15-l2r50-fulle-lm/checkpoint-6624/model.safetensors b/runs/mask15-l2r50-fulle-lm/checkpoint-6624/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..b96f1b14cadbb0c674ecc5ee32cb11213a8984b7
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-6624/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:f2b295d2e75a515d3857624044f003db683d7ccf9241dc5c96e08599f67eeda1
+size 583358280
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-6624/optimizer.pt b/runs/mask15-l2r50-fulle-lm/checkpoint-6624/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..9bcbbc1d2cce2fdcf39a641463d20d4454d1de88
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-6624/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:5d1498512b4404a4c5345d5ce285ef31bdd5d39d3a6c0d2744099bb4f3ed55d2
+size 1166831994
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-6624/rng_state_0.pth b/runs/mask15-l2r50-fulle-lm/checkpoint-6624/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..84b133db78cb8ab8bdfeaa4ca6c7f8ec224deea0
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-6624/rng_state_0.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:c1032244593735efb5a5746da535ddcd26db09ef9b7c189d7b0aeee9b5a3d82a
+size 14512
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-6624/rng_state_1.pth b/runs/mask15-l2r50-fulle-lm/checkpoint-6624/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..c964bcfa14a0bfbf99bcea15d3d0b5b65e6c3e99
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-6624/rng_state_1.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:48fb04789d62bf58787027299f0725045c758662e380704268ef5ea8393e94ff
+size 14512
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-6624/scheduler.pt b/runs/mask15-l2r50-fulle-lm/checkpoint-6624/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..1fb4fbb9cb8eafb61c9d89947d329fb67f4dd4e6
--- /dev/null
+++ b/runs/mask15-l2r50-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/mask15-l2r50-fulle-lm/checkpoint-6624/tokenizer.json b/runs/mask15-l2r50-fulle-lm/checkpoint-6624/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..6226bf25372d1a86dbd704ec75d2129960f1ba88
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-6624/tokenizer.json
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:9245fe3cb2d40f9ed8d5d8ddd1d58701ba2a236beec08f656162281673f30560
+size 11424264
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-6624/tokenizer_config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-6624/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..01bc9676576e8cf62a08a9db166d6c5bab1d6727
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-6624/tokenizer_config.json
@@ -0,0 +1,20 @@
+{
+ "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|>",
+ "<|mask|>"
+ ],
+ "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/mask15-l2r50-fulle-lm/checkpoint-6624/trainer_state.json b/runs/mask15-l2r50-fulle-lm/checkpoint-6624/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..9a6530d692861c3dbbb3d66b5090a69e7ebb984c
--- /dev/null
+++ b/runs/mask15-l2r50-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": 9.807971954345703,
+ "learning_rate": 0.0,
+ "loss": 11.989814758300781,
+ "step": 1
+ },
+ {
+ "epoch": 0.027959807776321538,
+ "grad_norm": 9.834383010864258,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 11.993022918701172,
+ "step": 2
+ },
+ {
+ "epoch": 0.04193971166448231,
+ "grad_norm": 9.482470512390137,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 11.854345321655273,
+ "step": 3
+ },
+ {
+ "epoch": 0.055919615552643076,
+ "grad_norm": 7.678808689117432,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 11.618255615234375,
+ "step": 4
+ },
+ {
+ "epoch": 0.06989951944080385,
+ "grad_norm": 6.011275291442871,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 11.351423263549805,
+ "step": 5
+ },
+ {
+ "epoch": 0.08387942332896461,
+ "grad_norm": 5.244393825531006,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 11.128631591796875,
+ "step": 6
+ },
+ {
+ "epoch": 0.09785932721712538,
+ "grad_norm": 4.577618598937988,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 10.921937942504883,
+ "step": 7
+ },
+ {
+ "epoch": 0.11183923110528615,
+ "grad_norm": 4.03810453414917,
+ "learning_rate": 4.2e-05,
+ "loss": 10.742650985717773,
+ "step": 8
+ },
+ {
+ "epoch": 0.1258191349934469,
+ "grad_norm": 3.657679796218872,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 10.600778579711914,
+ "step": 9
+ },
+ {
+ "epoch": 0.1397990388816077,
+ "grad_norm": 3.352902889251709,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 10.489639282226562,
+ "step": 10
+ },
+ {
+ "epoch": 0.15377894276976845,
+ "grad_norm": 3.1162633895874023,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 10.417770385742188,
+ "step": 11
+ },
+ {
+ "epoch": 0.16775884665792923,
+ "grad_norm": 3.0402638912200928,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 10.35334587097168,
+ "step": 12
+ },
+ {
+ "epoch": 0.18173875054608998,
+ "grad_norm": 3.030630111694336,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 10.306867599487305,
+ "step": 13
+ },
+ {
+ "epoch": 0.19571865443425077,
+ "grad_norm": 3.035292148590088,
+ "learning_rate": 7.8e-05,
+ "loss": 10.26003646850586,
+ "step": 14
+ },
+ {
+ "epoch": 0.20969855832241152,
+ "grad_norm": 3.0125675201416016,
+ "learning_rate": 8.4e-05,
+ "loss": 10.219265937805176,
+ "step": 15
+ },
+ {
+ "epoch": 0.2236784622105723,
+ "grad_norm": 2.9998886585235596,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 10.161077499389648,
+ "step": 16
+ },
+ {
+ "epoch": 0.23765836609873306,
+ "grad_norm": 2.9411966800689697,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 10.107423782348633,
+ "step": 17
+ },
+ {
+ "epoch": 0.2516382699868938,
+ "grad_norm": 2.88081955909729,
+ "learning_rate": 0.000102,
+ "loss": 10.04700756072998,
+ "step": 18
+ },
+ {
+ "epoch": 0.2656181738750546,
+ "grad_norm": 2.8219687938690186,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 9.981185913085938,
+ "step": 19
+ },
+ {
+ "epoch": 0.2795980777632154,
+ "grad_norm": 2.79306960105896,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 9.89747142791748,
+ "step": 20
+ },
+ {
+ "epoch": 0.29357798165137616,
+ "grad_norm": 2.7314443588256836,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 9.829219818115234,
+ "step": 21
+ },
+ {
+ "epoch": 0.3075578855395369,
+ "grad_norm": 2.6923747062683105,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 9.747566223144531,
+ "step": 22
+ },
+ {
+ "epoch": 0.3215377894276977,
+ "grad_norm": 2.650602340698242,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 9.66455078125,
+ "step": 23
+ },
+ {
+ "epoch": 0.33551769331585846,
+ "grad_norm": 2.606977701187134,
+ "learning_rate": 0.000138,
+ "loss": 9.582326889038086,
+ "step": 24
+ },
+ {
+ "epoch": 0.34949759720401924,
+ "grad_norm": 2.567256212234497,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 9.492591857910156,
+ "step": 25
+ },
+ {
+ "epoch": 0.36347750109217997,
+ "grad_norm": 2.520740509033203,
+ "learning_rate": 0.00015,
+ "loss": 9.396563529968262,
+ "step": 26
+ },
+ {
+ "epoch": 0.37745740498034075,
+ "grad_norm": 2.471588611602783,
+ "learning_rate": 0.000156,
+ "loss": 9.303571701049805,
+ "step": 27
+ },
+ {
+ "epoch": 0.39143730886850153,
+ "grad_norm": 2.4341530799865723,
+ "learning_rate": 0.000162,
+ "loss": 9.191819190979004,
+ "step": 28
+ },
+ {
+ "epoch": 0.4054172127566623,
+ "grad_norm": 2.369244337081909,
+ "learning_rate": 0.000168,
+ "loss": 9.092012405395508,
+ "step": 29
+ },
+ {
+ "epoch": 0.41939711664482304,
+ "grad_norm": 2.28625226020813,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 8.984567642211914,
+ "step": 30
+ },
+ {
+ "epoch": 0.4333770205329838,
+ "grad_norm": 2.2082231044769287,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 8.889009475708008,
+ "step": 31
+ },
+ {
+ "epoch": 0.4473569244211446,
+ "grad_norm": 2.1429483890533447,
+ "learning_rate": 0.000186,
+ "loss": 8.778556823730469,
+ "step": 32
+ },
+ {
+ "epoch": 0.4613368283093054,
+ "grad_norm": 2.0937352180480957,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 8.661166191101074,
+ "step": 33
+ },
+ {
+ "epoch": 0.4753167321974661,
+ "grad_norm": 2.040790557861328,
+ "learning_rate": 0.000198,
+ "loss": 8.550382614135742,
+ "step": 34
+ },
+ {
+ "epoch": 0.4892966360856269,
+ "grad_norm": 1.93914794921875,
+ "learning_rate": 0.000204,
+ "loss": 8.463907241821289,
+ "step": 35
+ },
+ {
+ "epoch": 0.5032765399737876,
+ "grad_norm": 1.8624178171157837,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 8.3438720703125,
+ "step": 36
+ },
+ {
+ "epoch": 0.5172564438619485,
+ "grad_norm": 1.8107167482376099,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 8.21871566772461,
+ "step": 37
+ },
+ {
+ "epoch": 0.5312363477501092,
+ "grad_norm": 1.717979073524475,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 8.113494873046875,
+ "step": 38
+ },
+ {
+ "epoch": 0.54521625163827,
+ "grad_norm": 1.668742060661316,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 8.006099700927734,
+ "step": 39
+ },
+ {
+ "epoch": 0.5591961555264308,
+ "grad_norm": 1.6147786378860474,
+ "learning_rate": 0.000234,
+ "loss": 7.911509037017822,
+ "step": 40
+ },
+ {
+ "epoch": 0.5731760594145915,
+ "grad_norm": 1.535750150680542,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 7.822839736938477,
+ "step": 41
+ },
+ {
+ "epoch": 0.5871559633027523,
+ "grad_norm": 1.4700065851211548,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 7.713842868804932,
+ "step": 42
+ },
+ {
+ "epoch": 0.601135867190913,
+ "grad_norm": 1.39020574092865,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 7.6040191650390625,
+ "step": 43
+ },
+ {
+ "epoch": 0.6151157710790738,
+ "grad_norm": 1.2875399589538574,
+ "learning_rate": 0.000258,
+ "loss": 7.550642013549805,
+ "step": 44
+ },
+ {
+ "epoch": 0.6290956749672346,
+ "grad_norm": 1.2094247341156006,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 7.460824012756348,
+ "step": 45
+ },
+ {
+ "epoch": 0.6430755788553953,
+ "grad_norm": 1.126452088356018,
+ "learning_rate": 0.00027,
+ "loss": 7.380537986755371,
+ "step": 46
+ },
+ {
+ "epoch": 0.6570554827435562,
+ "grad_norm": 1.0313163995742798,
+ "learning_rate": 0.000276,
+ "loss": 7.286153793334961,
+ "step": 47
+ },
+ {
+ "epoch": 0.6710353866317169,
+ "grad_norm": 0.9172859787940979,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 7.2064714431762695,
+ "step": 48
+ },
+ {
+ "epoch": 0.6850152905198776,
+ "grad_norm": 0.8148201107978821,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 7.158207416534424,
+ "step": 49
+ },
+ {
+ "epoch": 0.6989951944080385,
+ "grad_norm": 0.650123119354248,
+ "learning_rate": 0.000294,
+ "loss": 7.108791828155518,
+ "step": 50
+ },
+ {
+ "epoch": 0.7129750982961992,
+ "grad_norm": 0.5437585711479187,
+ "learning_rate": 0.0003,
+ "loss": 7.083050727844238,
+ "step": 51
+ },
+ {
+ "epoch": 0.7269550021843599,
+ "grad_norm": 0.46762895584106445,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 7.058027267456055,
+ "step": 52
+ },
+ {
+ "epoch": 0.7409349060725208,
+ "grad_norm": 0.47947561740875244,
+ "learning_rate": 0.000312,
+ "loss": 7.015172958374023,
+ "step": 53
+ },
+ {
+ "epoch": 0.7549148099606815,
+ "grad_norm": 0.7546492218971252,
+ "learning_rate": 0.000318,
+ "loss": 7.024629592895508,
+ "step": 54
+ },
+ {
+ "epoch": 0.7688947138488423,
+ "grad_norm": 0.6153718829154968,
+ "learning_rate": 0.000324,
+ "loss": 7.026667594909668,
+ "step": 55
+ },
+ {
+ "epoch": 0.7828746177370031,
+ "grad_norm": 0.3359069228172302,
+ "learning_rate": 0.00033,
+ "loss": 7.008166313171387,
+ "step": 56
+ },
+ {
+ "epoch": 0.7968545216251638,
+ "grad_norm": 0.48906823992729187,
+ "learning_rate": 0.000336,
+ "loss": 7.019716262817383,
+ "step": 57
+ },
+ {
+ "epoch": 0.8108344255133246,
+ "grad_norm": 0.5525421500205994,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 7.02108097076416,
+ "step": 58
+ },
+ {
+ "epoch": 0.8248143294014854,
+ "grad_norm": 0.3103712201118469,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 7.003164768218994,
+ "step": 59
+ },
+ {
+ "epoch": 0.8387942332896461,
+ "grad_norm": 0.4431874752044678,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 7.003463268280029,
+ "step": 60
+ },
+ {
+ "epoch": 0.8527741371778069,
+ "grad_norm": 0.4291120767593384,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 6.96931791305542,
+ "step": 61
+ },
+ {
+ "epoch": 0.8667540410659677,
+ "grad_norm": 0.6566054224967957,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 6.989445686340332,
+ "step": 62
+ },
+ {
+ "epoch": 0.8807339449541285,
+ "grad_norm": 0.20663189888000488,
+ "learning_rate": 0.000372,
+ "loss": 6.9669342041015625,
+ "step": 63
+ },
+ {
+ "epoch": 0.8947138488422892,
+ "grad_norm": 0.6242535710334778,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 6.949883460998535,
+ "step": 64
+ },
+ {
+ "epoch": 0.9086937527304499,
+ "grad_norm": 0.6984224915504456,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 6.955153465270996,
+ "step": 65
+ },
+ {
+ "epoch": 0.9226736566186108,
+ "grad_norm": 0.6328083872795105,
+ "learning_rate": 0.00039,
+ "loss": 6.965421676635742,
+ "step": 66
+ },
+ {
+ "epoch": 0.9366535605067715,
+ "grad_norm": 1.213352918624878,
+ "learning_rate": 0.000396,
+ "loss": 6.9454345703125,
+ "step": 67
+ },
+ {
+ "epoch": 0.9506334643949322,
+ "grad_norm": 0.9221940636634827,
+ "learning_rate": 0.000402,
+ "loss": 6.923908233642578,
+ "step": 68
+ },
+ {
+ "epoch": 0.9646133682830931,
+ "grad_norm": 0.6825450658798218,
+ "learning_rate": 0.000408,
+ "loss": 6.910131454467773,
+ "step": 69
+ },
+ {
+ "epoch": 0.9785932721712538,
+ "grad_norm": 0.5690162181854248,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 6.89891242980957,
+ "step": 70
+ },
+ {
+ "epoch": 0.9925731760594146,
+ "grad_norm": 0.4320870041847229,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 6.896081924438477,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.31632405519485474,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 6.897444725036621,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 7.757839679718018,
+ "eval_runtime": 43.8338,
+ "eval_samples_per_second": 55.71,
+ "eval_steps_per_second": 3.49,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139799038881607,
+ "grad_norm": 0.3789916932582855,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 6.877245903015137,
+ "step": 73
+ },
+ {
+ "epoch": 1.0279598077763215,
+ "grad_norm": 0.9167932868003845,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 6.921600341796875,
+ "step": 74
+ },
+ {
+ "epoch": 1.0419397116644824,
+ "grad_norm": 0.581188440322876,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 6.861001968383789,
+ "step": 75
+ },
+ {
+ "epoch": 1.0559196155526431,
+ "grad_norm": 0.4179714024066925,
+ "learning_rate": 0.00045,
+ "loss": 6.875657081604004,
+ "step": 76
+ },
+ {
+ "epoch": 1.0698995194408039,
+ "grad_norm": 1.0669957399368286,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 6.857122421264648,
+ "step": 77
+ },
+ {
+ "epoch": 1.0838794233289646,
+ "grad_norm": 0.27855145931243896,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 6.828852653503418,
+ "step": 78
+ },
+ {
+ "epoch": 1.0978593272171253,
+ "grad_norm": 0.7192047834396362,
+ "learning_rate": 0.000468,
+ "loss": 6.870839595794678,
+ "step": 79
+ },
+ {
+ "epoch": 1.1118392311052863,
+ "grad_norm": 0.5583325624465942,
+ "learning_rate": 0.000474,
+ "loss": 6.8497514724731445,
+ "step": 80
+ },
+ {
+ "epoch": 1.125819134993447,
+ "grad_norm": 0.3001925051212311,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 6.858528137207031,
+ "step": 81
+ },
+ {
+ "epoch": 1.1397990388816077,
+ "grad_norm": 0.2408239096403122,
+ "learning_rate": 0.000486,
+ "loss": 6.83231258392334,
+ "step": 82
+ },
+ {
+ "epoch": 1.1537789427697684,
+ "grad_norm": 0.28230324387550354,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 6.815476894378662,
+ "step": 83
+ },
+ {
+ "epoch": 1.1677588466579292,
+ "grad_norm": 0.3247123658657074,
+ "learning_rate": 0.000498,
+ "loss": 6.780126094818115,
+ "step": 84
+ },
+ {
+ "epoch": 1.18173875054609,
+ "grad_norm": 0.25713011622428894,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 6.7798309326171875,
+ "step": 85
+ },
+ {
+ "epoch": 1.1957186544342508,
+ "grad_norm": 0.5386835932731628,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 6.791745185852051,
+ "step": 86
+ },
+ {
+ "epoch": 1.2096985583224116,
+ "grad_norm": 0.2226393222808838,
+ "learning_rate": 0.000516,
+ "loss": 6.7826972007751465,
+ "step": 87
+ },
+ {
+ "epoch": 1.2236784622105723,
+ "grad_norm": 0.4338362216949463,
+ "learning_rate": 0.000522,
+ "loss": 6.805043697357178,
+ "step": 88
+ },
+ {
+ "epoch": 1.237658366098733,
+ "grad_norm": 0.2953208386898041,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 6.768434524536133,
+ "step": 89
+ },
+ {
+ "epoch": 1.2516382699868938,
+ "grad_norm": 0.13453717529773712,
+ "learning_rate": 0.000534,
+ "loss": 6.773697376251221,
+ "step": 90
+ },
+ {
+ "epoch": 1.2656181738750547,
+ "grad_norm": 0.35774412751197815,
+ "learning_rate": 0.00054,
+ "loss": 6.766414642333984,
+ "step": 91
+ },
+ {
+ "epoch": 1.2795980777632154,
+ "grad_norm": 0.4669720530509949,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 6.754847526550293,
+ "step": 92
+ },
+ {
+ "epoch": 1.2935779816513762,
+ "grad_norm": 0.13806621730327606,
+ "learning_rate": 0.000552,
+ "loss": 6.746858596801758,
+ "step": 93
+ },
+ {
+ "epoch": 1.307557885539537,
+ "grad_norm": 0.3280332386493683,
+ "learning_rate": 0.000558,
+ "loss": 6.715662956237793,
+ "step": 94
+ },
+ {
+ "epoch": 1.3215377894276976,
+ "grad_norm": 0.4689937233924866,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 6.734938144683838,
+ "step": 95
+ },
+ {
+ "epoch": 1.3355176933158583,
+ "grad_norm": 0.35371264815330505,
+ "learning_rate": 0.00057,
+ "loss": 6.748386383056641,
+ "step": 96
+ },
+ {
+ "epoch": 1.3494975972040193,
+ "grad_norm": 0.15232303738594055,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 6.705557823181152,
+ "step": 97
+ },
+ {
+ "epoch": 1.36347750109218,
+ "grad_norm": 0.30132821202278137,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 6.7199859619140625,
+ "step": 98
+ },
+ {
+ "epoch": 1.3774574049803407,
+ "grad_norm": 0.42174842953681946,
+ "learning_rate": 0.000588,
+ "loss": 6.715370178222656,
+ "step": 99
+ },
+ {
+ "epoch": 1.3914373088685015,
+ "grad_norm": 0.6257228851318359,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 6.707026958465576,
+ "step": 100
+ },
+ {
+ "epoch": 1.4054172127566624,
+ "grad_norm": 0.4551195800304413,
+ "learning_rate": 0.0006,
+ "loss": 6.7078423500061035,
+ "step": 101
+ },
+ {
+ "epoch": 1.4193971166448232,
+ "grad_norm": 0.41940346360206604,
+ "learning_rate": 0.0006,
+ "loss": 6.6959357261657715,
+ "step": 102
+ },
+ {
+ "epoch": 1.4333770205329839,
+ "grad_norm": 0.32251718640327454,
+ "learning_rate": 0.0006,
+ "loss": 6.689168930053711,
+ "step": 103
+ },
+ {
+ "epoch": 1.4473569244211446,
+ "grad_norm": 0.2992720305919647,
+ "learning_rate": 0.0006,
+ "loss": 6.680738925933838,
+ "step": 104
+ },
+ {
+ "epoch": 1.4613368283093053,
+ "grad_norm": 0.3228456974029541,
+ "learning_rate": 0.0006,
+ "loss": 6.672350883483887,
+ "step": 105
+ },
+ {
+ "epoch": 1.475316732197466,
+ "grad_norm": 0.24954743683338165,
+ "learning_rate": 0.0006,
+ "loss": 6.653716087341309,
+ "step": 106
+ },
+ {
+ "epoch": 1.4892966360856268,
+ "grad_norm": 0.30740687251091003,
+ "learning_rate": 0.0006,
+ "loss": 6.676583290100098,
+ "step": 107
+ },
+ {
+ "epoch": 1.5032765399737875,
+ "grad_norm": 0.24950599670410156,
+ "learning_rate": 0.0006,
+ "loss": 6.656691551208496,
+ "step": 108
+ },
+ {
+ "epoch": 1.5172564438619485,
+ "grad_norm": 0.24293005466461182,
+ "learning_rate": 0.0006,
+ "loss": 6.640995979309082,
+ "step": 109
+ },
+ {
+ "epoch": 1.5312363477501092,
+ "grad_norm": 0.30167272686958313,
+ "learning_rate": 0.0006,
+ "loss": 6.647380352020264,
+ "step": 110
+ },
+ {
+ "epoch": 1.5452162516382701,
+ "grad_norm": 0.4424632787704468,
+ "learning_rate": 0.0006,
+ "loss": 6.6548261642456055,
+ "step": 111
+ },
+ {
+ "epoch": 1.5591961555264309,
+ "grad_norm": 0.5295748114585876,
+ "learning_rate": 0.0006,
+ "loss": 6.64370059967041,
+ "step": 112
+ },
+ {
+ "epoch": 1.5731760594145916,
+ "grad_norm": 0.6829339265823364,
+ "learning_rate": 0.0006,
+ "loss": 6.654196739196777,
+ "step": 113
+ },
+ {
+ "epoch": 1.5871559633027523,
+ "grad_norm": 0.6534460186958313,
+ "learning_rate": 0.0006,
+ "loss": 6.675765037536621,
+ "step": 114
+ },
+ {
+ "epoch": 1.601135867190913,
+ "grad_norm": 0.6172244548797607,
+ "learning_rate": 0.0006,
+ "loss": 6.631234169006348,
+ "step": 115
+ },
+ {
+ "epoch": 1.6151157710790738,
+ "grad_norm": 0.5650008320808411,
+ "learning_rate": 0.0006,
+ "loss": 6.654262542724609,
+ "step": 116
+ },
+ {
+ "epoch": 1.6290956749672345,
+ "grad_norm": 0.3890475928783417,
+ "learning_rate": 0.0006,
+ "loss": 6.627526760101318,
+ "step": 117
+ },
+ {
+ "epoch": 1.6430755788553952,
+ "grad_norm": 0.6409873366355896,
+ "learning_rate": 0.0006,
+ "loss": 6.619794845581055,
+ "step": 118
+ },
+ {
+ "epoch": 1.6570554827435562,
+ "grad_norm": 0.5052326321601868,
+ "learning_rate": 0.0006,
+ "loss": 6.612556457519531,
+ "step": 119
+ },
+ {
+ "epoch": 1.671035386631717,
+ "grad_norm": 0.5001237988471985,
+ "learning_rate": 0.0006,
+ "loss": 6.577266693115234,
+ "step": 120
+ },
+ {
+ "epoch": 1.6850152905198776,
+ "grad_norm": 0.5328938364982605,
+ "learning_rate": 0.0006,
+ "loss": 6.59553337097168,
+ "step": 121
+ },
+ {
+ "epoch": 1.6989951944080386,
+ "grad_norm": 0.3568951189517975,
+ "learning_rate": 0.0006,
+ "loss": 6.602717399597168,
+ "step": 122
+ },
+ {
+ "epoch": 1.7129750982961993,
+ "grad_norm": 0.4017309546470642,
+ "learning_rate": 0.0006,
+ "loss": 6.589657783508301,
+ "step": 123
+ },
+ {
+ "epoch": 1.72695500218436,
+ "grad_norm": 0.21432629227638245,
+ "learning_rate": 0.0006,
+ "loss": 6.586555480957031,
+ "step": 124
+ },
+ {
+ "epoch": 1.7409349060725208,
+ "grad_norm": 0.21038052439689636,
+ "learning_rate": 0.0006,
+ "loss": 6.576569557189941,
+ "step": 125
+ },
+ {
+ "epoch": 1.7549148099606815,
+ "grad_norm": 0.23074904084205627,
+ "learning_rate": 0.0006,
+ "loss": 6.5880632400512695,
+ "step": 126
+ },
+ {
+ "epoch": 1.7688947138488422,
+ "grad_norm": 0.42963048815727234,
+ "learning_rate": 0.0006,
+ "loss": 6.603862762451172,
+ "step": 127
+ },
+ {
+ "epoch": 1.782874617737003,
+ "grad_norm": 0.361331045627594,
+ "learning_rate": 0.0006,
+ "loss": 6.579834938049316,
+ "step": 128
+ },
+ {
+ "epoch": 1.7968545216251637,
+ "grad_norm": 0.4951060712337494,
+ "learning_rate": 0.0006,
+ "loss": 6.570443630218506,
+ "step": 129
+ },
+ {
+ "epoch": 1.8108344255133246,
+ "grad_norm": 0.2258434295654297,
+ "learning_rate": 0.0006,
+ "loss": 6.5664777755737305,
+ "step": 130
+ },
+ {
+ "epoch": 1.8248143294014854,
+ "grad_norm": 0.2922155559062958,
+ "learning_rate": 0.0006,
+ "loss": 6.561326503753662,
+ "step": 131
+ },
+ {
+ "epoch": 1.838794233289646,
+ "grad_norm": 0.19068220257759094,
+ "learning_rate": 0.0006,
+ "loss": 6.528727054595947,
+ "step": 132
+ },
+ {
+ "epoch": 1.852774137177807,
+ "grad_norm": 0.2122010439634323,
+ "learning_rate": 0.0006,
+ "loss": 6.535636901855469,
+ "step": 133
+ },
+ {
+ "epoch": 1.8667540410659678,
+ "grad_norm": 0.25760164856910706,
+ "learning_rate": 0.0006,
+ "loss": 6.530498504638672,
+ "step": 134
+ },
+ {
+ "epoch": 1.8807339449541285,
+ "grad_norm": 0.1761016845703125,
+ "learning_rate": 0.0006,
+ "loss": 6.514466285705566,
+ "step": 135
+ },
+ {
+ "epoch": 1.8947138488422892,
+ "grad_norm": 0.2250051498413086,
+ "learning_rate": 0.0006,
+ "loss": 6.521268844604492,
+ "step": 136
+ },
+ {
+ "epoch": 1.90869375273045,
+ "grad_norm": 0.34458497166633606,
+ "learning_rate": 0.0006,
+ "loss": 6.512831687927246,
+ "step": 137
+ },
+ {
+ "epoch": 1.9226736566186107,
+ "grad_norm": 0.3468617796897888,
+ "learning_rate": 0.0006,
+ "loss": 6.515641689300537,
+ "step": 138
+ },
+ {
+ "epoch": 1.9366535605067714,
+ "grad_norm": 0.5051495432853699,
+ "learning_rate": 0.0006,
+ "loss": 6.5147905349731445,
+ "step": 139
+ },
+ {
+ "epoch": 1.9506334643949321,
+ "grad_norm": 0.7106727361679077,
+ "learning_rate": 0.0006,
+ "loss": 6.519277572631836,
+ "step": 140
+ },
+ {
+ "epoch": 1.964613368283093,
+ "grad_norm": 0.8881394267082214,
+ "learning_rate": 0.0006,
+ "loss": 6.526865482330322,
+ "step": 141
+ },
+ {
+ "epoch": 1.9785932721712538,
+ "grad_norm": 0.5552834272384644,
+ "learning_rate": 0.0006,
+ "loss": 6.469970226287842,
+ "step": 142
+ },
+ {
+ "epoch": 1.9925731760594148,
+ "grad_norm": 0.6903126835823059,
+ "learning_rate": 0.0006,
+ "loss": 6.476300239562988,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.47679027915000916,
+ "learning_rate": 0.0006,
+ "loss": 6.463827133178711,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 7.388528823852539,
+ "eval_runtime": 44.2519,
+ "eval_samples_per_second": 55.184,
+ "eval_steps_per_second": 3.457,
+ "step": 144
+ },
+ {
+ "epoch": 2.0139799038881607,
+ "grad_norm": 0.4719221293926239,
+ "learning_rate": 0.0006,
+ "loss": 6.480956077575684,
+ "step": 145
+ },
+ {
+ "epoch": 2.0279598077763215,
+ "grad_norm": 0.41137924790382385,
+ "learning_rate": 0.0006,
+ "loss": 6.449707984924316,
+ "step": 146
+ },
+ {
+ "epoch": 2.041939711664482,
+ "grad_norm": 0.4237765371799469,
+ "learning_rate": 0.0006,
+ "loss": 6.467435836791992,
+ "step": 147
+ },
+ {
+ "epoch": 2.055919615552643,
+ "grad_norm": 0.44081810116767883,
+ "learning_rate": 0.0006,
+ "loss": 6.436868667602539,
+ "step": 148
+ },
+ {
+ "epoch": 2.0698995194408036,
+ "grad_norm": 0.4163798391819,
+ "learning_rate": 0.0006,
+ "loss": 6.4642014503479,
+ "step": 149
+ },
+ {
+ "epoch": 2.083879423328965,
+ "grad_norm": 0.3831583261489868,
+ "learning_rate": 0.0006,
+ "loss": 6.454092025756836,
+ "step": 150
+ },
+ {
+ "epoch": 2.0978593272171255,
+ "grad_norm": 0.37721413373947144,
+ "learning_rate": 0.0006,
+ "loss": 6.426377296447754,
+ "step": 151
+ },
+ {
+ "epoch": 2.1118392311052863,
+ "grad_norm": 0.3323550224304199,
+ "learning_rate": 0.0006,
+ "loss": 6.421375274658203,
+ "step": 152
+ },
+ {
+ "epoch": 2.125819134993447,
+ "grad_norm": 0.47739624977111816,
+ "learning_rate": 0.0006,
+ "loss": 6.412004470825195,
+ "step": 153
+ },
+ {
+ "epoch": 2.1397990388816077,
+ "grad_norm": 0.8530274629592896,
+ "learning_rate": 0.0006,
+ "loss": 6.410468578338623,
+ "step": 154
+ },
+ {
+ "epoch": 2.1537789427697684,
+ "grad_norm": 0.6420364379882812,
+ "learning_rate": 0.0006,
+ "loss": 6.413525581359863,
+ "step": 155
+ },
+ {
+ "epoch": 2.167758846657929,
+ "grad_norm": 0.5005049109458923,
+ "learning_rate": 0.0006,
+ "loss": 6.401463508605957,
+ "step": 156
+ },
+ {
+ "epoch": 2.18173875054609,
+ "grad_norm": 0.3614683449268341,
+ "learning_rate": 0.0006,
+ "loss": 6.390063285827637,
+ "step": 157
+ },
+ {
+ "epoch": 2.1957186544342506,
+ "grad_norm": 0.595215380191803,
+ "learning_rate": 0.0006,
+ "loss": 6.369806289672852,
+ "step": 158
+ },
+ {
+ "epoch": 2.2096985583224114,
+ "grad_norm": 0.5700321793556213,
+ "learning_rate": 0.0006,
+ "loss": 6.368378639221191,
+ "step": 159
+ },
+ {
+ "epoch": 2.2236784622105725,
+ "grad_norm": 0.36273983120918274,
+ "learning_rate": 0.0006,
+ "loss": 6.366860389709473,
+ "step": 160
+ },
+ {
+ "epoch": 2.2376583660987333,
+ "grad_norm": 0.2850998342037201,
+ "learning_rate": 0.0006,
+ "loss": 6.352144718170166,
+ "step": 161
+ },
+ {
+ "epoch": 2.251638269986894,
+ "grad_norm": 0.38558584451675415,
+ "learning_rate": 0.0006,
+ "loss": 6.375765800476074,
+ "step": 162
+ },
+ {
+ "epoch": 2.2656181738750547,
+ "grad_norm": 0.34809231758117676,
+ "learning_rate": 0.0006,
+ "loss": 6.350445747375488,
+ "step": 163
+ },
+ {
+ "epoch": 2.2795980777632154,
+ "grad_norm": 0.5211818814277649,
+ "learning_rate": 0.0006,
+ "loss": 6.354585647583008,
+ "step": 164
+ },
+ {
+ "epoch": 2.293577981651376,
+ "grad_norm": 1.0809133052825928,
+ "learning_rate": 0.0006,
+ "loss": 6.3752007484436035,
+ "step": 165
+ },
+ {
+ "epoch": 2.307557885539537,
+ "grad_norm": 0.8293641209602356,
+ "learning_rate": 0.0006,
+ "loss": 6.35113525390625,
+ "step": 166
+ },
+ {
+ "epoch": 2.3215377894276976,
+ "grad_norm": 0.3428577780723572,
+ "learning_rate": 0.0006,
+ "loss": 6.334470748901367,
+ "step": 167
+ },
+ {
+ "epoch": 2.3355176933158583,
+ "grad_norm": 0.7587600946426392,
+ "learning_rate": 0.0006,
+ "loss": 6.353979587554932,
+ "step": 168
+ },
+ {
+ "epoch": 2.349497597204019,
+ "grad_norm": 0.4227249026298523,
+ "learning_rate": 0.0006,
+ "loss": 6.34018611907959,
+ "step": 169
+ },
+ {
+ "epoch": 2.36347750109218,
+ "grad_norm": 0.4226846694946289,
+ "learning_rate": 0.0006,
+ "loss": 6.290019989013672,
+ "step": 170
+ },
+ {
+ "epoch": 2.3774574049803405,
+ "grad_norm": 0.38412365317344666,
+ "learning_rate": 0.0006,
+ "loss": 6.309510231018066,
+ "step": 171
+ },
+ {
+ "epoch": 2.3914373088685017,
+ "grad_norm": 0.45698508620262146,
+ "learning_rate": 0.0006,
+ "loss": 6.283290863037109,
+ "step": 172
+ },
+ {
+ "epoch": 2.4054172127566624,
+ "grad_norm": 0.7575915455818176,
+ "learning_rate": 0.0006,
+ "loss": 6.306073188781738,
+ "step": 173
+ },
+ {
+ "epoch": 2.419397116644823,
+ "grad_norm": 0.695123553276062,
+ "learning_rate": 0.0006,
+ "loss": 6.308144569396973,
+ "step": 174
+ },
+ {
+ "epoch": 2.433377020532984,
+ "grad_norm": 0.5035743117332458,
+ "learning_rate": 0.0006,
+ "loss": 6.282073974609375,
+ "step": 175
+ },
+ {
+ "epoch": 2.4473569244211446,
+ "grad_norm": 0.3158020079135895,
+ "learning_rate": 0.0006,
+ "loss": 6.282169342041016,
+ "step": 176
+ },
+ {
+ "epoch": 2.4613368283093053,
+ "grad_norm": 0.4829689860343933,
+ "learning_rate": 0.0006,
+ "loss": 6.264578819274902,
+ "step": 177
+ },
+ {
+ "epoch": 2.475316732197466,
+ "grad_norm": 0.3992770314216614,
+ "learning_rate": 0.0006,
+ "loss": 6.228628158569336,
+ "step": 178
+ },
+ {
+ "epoch": 2.489296636085627,
+ "grad_norm": 0.40887606143951416,
+ "learning_rate": 0.0006,
+ "loss": 6.230792045593262,
+ "step": 179
+ },
+ {
+ "epoch": 2.5032765399737875,
+ "grad_norm": 0.3540310263633728,
+ "learning_rate": 0.0006,
+ "loss": 6.222573280334473,
+ "step": 180
+ },
+ {
+ "epoch": 2.5172564438619487,
+ "grad_norm": 0.496219664812088,
+ "learning_rate": 0.0006,
+ "loss": 6.212109565734863,
+ "step": 181
+ },
+ {
+ "epoch": 2.5312363477501094,
+ "grad_norm": 0.435173898935318,
+ "learning_rate": 0.0006,
+ "loss": 6.221210479736328,
+ "step": 182
+ },
+ {
+ "epoch": 2.54521625163827,
+ "grad_norm": 0.5364007949829102,
+ "learning_rate": 0.0006,
+ "loss": 6.217929840087891,
+ "step": 183
+ },
+ {
+ "epoch": 2.559196155526431,
+ "grad_norm": 0.5946390628814697,
+ "learning_rate": 0.0006,
+ "loss": 6.189267158508301,
+ "step": 184
+ },
+ {
+ "epoch": 2.5731760594145916,
+ "grad_norm": 0.41621312499046326,
+ "learning_rate": 0.0006,
+ "loss": 6.182415008544922,
+ "step": 185
+ },
+ {
+ "epoch": 2.5871559633027523,
+ "grad_norm": 0.5442072749137878,
+ "learning_rate": 0.0006,
+ "loss": 6.150757789611816,
+ "step": 186
+ },
+ {
+ "epoch": 2.601135867190913,
+ "grad_norm": 0.727843165397644,
+ "learning_rate": 0.0006,
+ "loss": 6.146082878112793,
+ "step": 187
+ },
+ {
+ "epoch": 2.615115771079074,
+ "grad_norm": 0.8898891806602478,
+ "learning_rate": 0.0006,
+ "loss": 6.190483093261719,
+ "step": 188
+ },
+ {
+ "epoch": 2.6290956749672345,
+ "grad_norm": 0.5173947215080261,
+ "learning_rate": 0.0006,
+ "loss": 6.151251792907715,
+ "step": 189
+ },
+ {
+ "epoch": 2.6430755788553952,
+ "grad_norm": 0.6476729512214661,
+ "learning_rate": 0.0006,
+ "loss": 6.154841423034668,
+ "step": 190
+ },
+ {
+ "epoch": 2.657055482743556,
+ "grad_norm": 0.3538810908794403,
+ "learning_rate": 0.0006,
+ "loss": 6.103879928588867,
+ "step": 191
+ },
+ {
+ "epoch": 2.6710353866317167,
+ "grad_norm": 0.4773508310317993,
+ "learning_rate": 0.0006,
+ "loss": 6.118101119995117,
+ "step": 192
+ },
+ {
+ "epoch": 2.6850152905198774,
+ "grad_norm": 0.29213786125183105,
+ "learning_rate": 0.0006,
+ "loss": 6.108916282653809,
+ "step": 193
+ },
+ {
+ "epoch": 2.6989951944080386,
+ "grad_norm": 0.40800607204437256,
+ "learning_rate": 0.0006,
+ "loss": 6.113438606262207,
+ "step": 194
+ },
+ {
+ "epoch": 2.7129750982961993,
+ "grad_norm": 0.31157299876213074,
+ "learning_rate": 0.0006,
+ "loss": 6.101809501647949,
+ "step": 195
+ },
+ {
+ "epoch": 2.72695500218436,
+ "grad_norm": 0.28660309314727783,
+ "learning_rate": 0.0006,
+ "loss": 6.075886249542236,
+ "step": 196
+ },
+ {
+ "epoch": 2.7409349060725208,
+ "grad_norm": 0.3810449540615082,
+ "learning_rate": 0.0006,
+ "loss": 6.053257942199707,
+ "step": 197
+ },
+ {
+ "epoch": 2.7549148099606815,
+ "grad_norm": 0.21741755306720734,
+ "learning_rate": 0.0006,
+ "loss": 6.013825416564941,
+ "step": 198
+ },
+ {
+ "epoch": 2.7688947138488422,
+ "grad_norm": 0.2777678966522217,
+ "learning_rate": 0.0006,
+ "loss": 6.054204940795898,
+ "step": 199
+ },
+ {
+ "epoch": 2.782874617737003,
+ "grad_norm": 0.28503066301345825,
+ "learning_rate": 0.0006,
+ "loss": 6.035628318786621,
+ "step": 200
+ },
+ {
+ "epoch": 2.7968545216251637,
+ "grad_norm": 0.41954755783081055,
+ "learning_rate": 0.0006,
+ "loss": 6.028354644775391,
+ "step": 201
+ },
+ {
+ "epoch": 2.810834425513325,
+ "grad_norm": 0.8785563111305237,
+ "learning_rate": 0.0006,
+ "loss": 6.055761337280273,
+ "step": 202
+ },
+ {
+ "epoch": 2.8248143294014856,
+ "grad_norm": 1.7459558248519897,
+ "learning_rate": 0.0006,
+ "loss": 6.11599588394165,
+ "step": 203
+ },
+ {
+ "epoch": 2.8387942332896463,
+ "grad_norm": 0.5725523233413696,
+ "learning_rate": 0.0006,
+ "loss": 6.024280548095703,
+ "step": 204
+ },
+ {
+ "epoch": 2.852774137177807,
+ "grad_norm": 0.5913150906562805,
+ "learning_rate": 0.0006,
+ "loss": 6.050281524658203,
+ "step": 205
+ },
+ {
+ "epoch": 2.8667540410659678,
+ "grad_norm": 0.5929384827613831,
+ "learning_rate": 0.0006,
+ "loss": 6.041121482849121,
+ "step": 206
+ },
+ {
+ "epoch": 2.8807339449541285,
+ "grad_norm": 0.5650724768638611,
+ "learning_rate": 0.0006,
+ "loss": 6.004258155822754,
+ "step": 207
+ },
+ {
+ "epoch": 2.894713848842289,
+ "grad_norm": 0.3420545756816864,
+ "learning_rate": 0.0006,
+ "loss": 5.983296871185303,
+ "step": 208
+ },
+ {
+ "epoch": 2.90869375273045,
+ "grad_norm": 0.2960914075374603,
+ "learning_rate": 0.0006,
+ "loss": 5.988578796386719,
+ "step": 209
+ },
+ {
+ "epoch": 2.9226736566186107,
+ "grad_norm": 0.3252662718296051,
+ "learning_rate": 0.0006,
+ "loss": 5.99103307723999,
+ "step": 210
+ },
+ {
+ "epoch": 2.9366535605067714,
+ "grad_norm": 0.4851132929325104,
+ "learning_rate": 0.0006,
+ "loss": 6.0028977394104,
+ "step": 211
+ },
+ {
+ "epoch": 2.950633464394932,
+ "grad_norm": 0.5639995336532593,
+ "learning_rate": 0.0006,
+ "loss": 5.965080738067627,
+ "step": 212
+ },
+ {
+ "epoch": 2.964613368283093,
+ "grad_norm": 0.4514601230621338,
+ "learning_rate": 0.0006,
+ "loss": 5.961450576782227,
+ "step": 213
+ },
+ {
+ "epoch": 2.9785932721712536,
+ "grad_norm": 0.5397921800613403,
+ "learning_rate": 0.0006,
+ "loss": 5.965290546417236,
+ "step": 214
+ },
+ {
+ "epoch": 2.9925731760594148,
+ "grad_norm": 0.4735587239265442,
+ "learning_rate": 0.0006,
+ "loss": 5.952754497528076,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.32061058282852173,
+ "learning_rate": 0.0006,
+ "loss": 5.961667060852051,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 6.8517303466796875,
+ "eval_runtime": 44.03,
+ "eval_samples_per_second": 55.462,
+ "eval_steps_per_second": 3.475,
+ "step": 216
+ },
+ {
+ "epoch": 3.0139799038881607,
+ "grad_norm": 0.3537784814834595,
+ "learning_rate": 0.0006,
+ "loss": 5.928008079528809,
+ "step": 217
+ },
+ {
+ "epoch": 3.0279598077763215,
+ "grad_norm": 0.40713080763816833,
+ "learning_rate": 0.0006,
+ "loss": 5.9150800704956055,
+ "step": 218
+ },
+ {
+ "epoch": 3.041939711664482,
+ "grad_norm": 0.2548826336860657,
+ "learning_rate": 0.0006,
+ "loss": 5.919757843017578,
+ "step": 219
+ },
+ {
+ "epoch": 3.055919615552643,
+ "grad_norm": 0.2818543016910553,
+ "learning_rate": 0.0006,
+ "loss": 5.913688659667969,
+ "step": 220
+ },
+ {
+ "epoch": 3.0698995194408036,
+ "grad_norm": 0.4196692705154419,
+ "learning_rate": 0.0006,
+ "loss": 5.8675336837768555,
+ "step": 221
+ },
+ {
+ "epoch": 3.083879423328965,
+ "grad_norm": 0.35272282361984253,
+ "learning_rate": 0.0006,
+ "loss": 5.878874778747559,
+ "step": 222
+ },
+ {
+ "epoch": 3.0978593272171255,
+ "grad_norm": 0.3254282772541046,
+ "learning_rate": 0.0006,
+ "loss": 5.8823041915893555,
+ "step": 223
+ },
+ {
+ "epoch": 3.1118392311052863,
+ "grad_norm": 0.4052561819553375,
+ "learning_rate": 0.0006,
+ "loss": 5.867744445800781,
+ "step": 224
+ },
+ {
+ "epoch": 3.125819134993447,
+ "grad_norm": 0.31246256828308105,
+ "learning_rate": 0.0006,
+ "loss": 5.886094093322754,
+ "step": 225
+ },
+ {
+ "epoch": 3.1397990388816077,
+ "grad_norm": 0.3479118347167969,
+ "learning_rate": 0.0006,
+ "loss": 5.850762367248535,
+ "step": 226
+ },
+ {
+ "epoch": 3.1537789427697684,
+ "grad_norm": 0.5037238597869873,
+ "learning_rate": 0.0006,
+ "loss": 5.844175815582275,
+ "step": 227
+ },
+ {
+ "epoch": 3.167758846657929,
+ "grad_norm": 0.6271815896034241,
+ "learning_rate": 0.0006,
+ "loss": 5.871790885925293,
+ "step": 228
+ },
+ {
+ "epoch": 3.18173875054609,
+ "grad_norm": 0.43838298320770264,
+ "learning_rate": 0.0006,
+ "loss": 5.844024658203125,
+ "step": 229
+ },
+ {
+ "epoch": 3.1957186544342506,
+ "grad_norm": 0.4755159616470337,
+ "learning_rate": 0.0006,
+ "loss": 5.846892356872559,
+ "step": 230
+ },
+ {
+ "epoch": 3.2096985583224114,
+ "grad_norm": 0.5229779481887817,
+ "learning_rate": 0.0006,
+ "loss": 5.827000617980957,
+ "step": 231
+ },
+ {
+ "epoch": 3.2236784622105725,
+ "grad_norm": 0.8264499306678772,
+ "learning_rate": 0.0006,
+ "loss": 5.867050647735596,
+ "step": 232
+ },
+ {
+ "epoch": 3.2376583660987333,
+ "grad_norm": 1.0607538223266602,
+ "learning_rate": 0.0006,
+ "loss": 5.877876281738281,
+ "step": 233
+ },
+ {
+ "epoch": 3.251638269986894,
+ "grad_norm": 0.7656505703926086,
+ "learning_rate": 0.0006,
+ "loss": 5.86760139465332,
+ "step": 234
+ },
+ {
+ "epoch": 3.2656181738750547,
+ "grad_norm": 0.7940183281898499,
+ "learning_rate": 0.0006,
+ "loss": 5.861355781555176,
+ "step": 235
+ },
+ {
+ "epoch": 3.2795980777632154,
+ "grad_norm": 0.45171424746513367,
+ "learning_rate": 0.0006,
+ "loss": 5.799808502197266,
+ "step": 236
+ },
+ {
+ "epoch": 3.293577981651376,
+ "grad_norm": 0.6174989342689514,
+ "learning_rate": 0.0006,
+ "loss": 5.8585920333862305,
+ "step": 237
+ },
+ {
+ "epoch": 3.307557885539537,
+ "grad_norm": 0.5341290831565857,
+ "learning_rate": 0.0006,
+ "loss": 5.8116044998168945,
+ "step": 238
+ },
+ {
+ "epoch": 3.3215377894276976,
+ "grad_norm": 0.3938343822956085,
+ "learning_rate": 0.0006,
+ "loss": 5.83797550201416,
+ "step": 239
+ },
+ {
+ "epoch": 3.3355176933158583,
+ "grad_norm": 0.5106972455978394,
+ "learning_rate": 0.0006,
+ "loss": 5.832303047180176,
+ "step": 240
+ },
+ {
+ "epoch": 3.349497597204019,
+ "grad_norm": 0.3791428506374359,
+ "learning_rate": 0.0006,
+ "loss": 5.794981956481934,
+ "step": 241
+ },
+ {
+ "epoch": 3.36347750109218,
+ "grad_norm": 0.42287978529930115,
+ "learning_rate": 0.0006,
+ "loss": 5.788144111633301,
+ "step": 242
+ },
+ {
+ "epoch": 3.3774574049803405,
+ "grad_norm": 0.27334436774253845,
+ "learning_rate": 0.0006,
+ "loss": 5.771070957183838,
+ "step": 243
+ },
+ {
+ "epoch": 3.3914373088685017,
+ "grad_norm": 0.2470470368862152,
+ "learning_rate": 0.0006,
+ "loss": 5.755998611450195,
+ "step": 244
+ },
+ {
+ "epoch": 3.4054172127566624,
+ "grad_norm": 0.3043915033340454,
+ "learning_rate": 0.0006,
+ "loss": 5.779492378234863,
+ "step": 245
+ },
+ {
+ "epoch": 3.419397116644823,
+ "grad_norm": 0.2960112988948822,
+ "learning_rate": 0.0006,
+ "loss": 5.750328063964844,
+ "step": 246
+ },
+ {
+ "epoch": 3.433377020532984,
+ "grad_norm": 0.3046723008155823,
+ "learning_rate": 0.0006,
+ "loss": 5.776517868041992,
+ "step": 247
+ },
+ {
+ "epoch": 3.4473569244211446,
+ "grad_norm": 0.22461780905723572,
+ "learning_rate": 0.0006,
+ "loss": 5.760989665985107,
+ "step": 248
+ },
+ {
+ "epoch": 3.4613368283093053,
+ "grad_norm": 0.24625757336616516,
+ "learning_rate": 0.0006,
+ "loss": 5.759706497192383,
+ "step": 249
+ },
+ {
+ "epoch": 3.475316732197466,
+ "grad_norm": 0.18207131326198578,
+ "learning_rate": 0.0006,
+ "loss": 5.747040748596191,
+ "step": 250
+ },
+ {
+ "epoch": 3.489296636085627,
+ "grad_norm": 0.16473834216594696,
+ "learning_rate": 0.0006,
+ "loss": 5.761577606201172,
+ "step": 251
+ },
+ {
+ "epoch": 3.5032765399737875,
+ "grad_norm": 0.25155773758888245,
+ "learning_rate": 0.0006,
+ "loss": 5.696502208709717,
+ "step": 252
+ },
+ {
+ "epoch": 3.5172564438619487,
+ "grad_norm": 0.24115674197673798,
+ "learning_rate": 0.0006,
+ "loss": 5.676957130432129,
+ "step": 253
+ },
+ {
+ "epoch": 3.5312363477501094,
+ "grad_norm": 0.40912172198295593,
+ "learning_rate": 0.0006,
+ "loss": 5.695090293884277,
+ "step": 254
+ },
+ {
+ "epoch": 3.54521625163827,
+ "grad_norm": 0.6727662682533264,
+ "learning_rate": 0.0006,
+ "loss": 5.722194671630859,
+ "step": 255
+ },
+ {
+ "epoch": 3.559196155526431,
+ "grad_norm": 0.8450719118118286,
+ "learning_rate": 0.0006,
+ "loss": 5.764680862426758,
+ "step": 256
+ },
+ {
+ "epoch": 3.5731760594145916,
+ "grad_norm": 0.9916183352470398,
+ "learning_rate": 0.0006,
+ "loss": 5.754530429840088,
+ "step": 257
+ },
+ {
+ "epoch": 3.5871559633027523,
+ "grad_norm": 1.041922688484192,
+ "learning_rate": 0.0006,
+ "loss": 5.781468391418457,
+ "step": 258
+ },
+ {
+ "epoch": 3.601135867190913,
+ "grad_norm": 0.972039520740509,
+ "learning_rate": 0.0006,
+ "loss": 5.760323524475098,
+ "step": 259
+ },
+ {
+ "epoch": 3.615115771079074,
+ "grad_norm": 0.6802462935447693,
+ "learning_rate": 0.0006,
+ "loss": 5.750064849853516,
+ "step": 260
+ },
+ {
+ "epoch": 3.6290956749672345,
+ "grad_norm": 0.48553529381752014,
+ "learning_rate": 0.0006,
+ "loss": 5.7464094161987305,
+ "step": 261
+ },
+ {
+ "epoch": 3.6430755788553952,
+ "grad_norm": 0.4066704213619232,
+ "learning_rate": 0.0006,
+ "loss": 5.719789505004883,
+ "step": 262
+ },
+ {
+ "epoch": 3.657055482743556,
+ "grad_norm": 0.3300860822200775,
+ "learning_rate": 0.0006,
+ "loss": 5.719920635223389,
+ "step": 263
+ },
+ {
+ "epoch": 3.6710353866317167,
+ "grad_norm": 0.3286679983139038,
+ "learning_rate": 0.0006,
+ "loss": 5.723465919494629,
+ "step": 264
+ },
+ {
+ "epoch": 3.6850152905198774,
+ "grad_norm": 0.27653390169143677,
+ "learning_rate": 0.0006,
+ "loss": 5.713820457458496,
+ "step": 265
+ },
+ {
+ "epoch": 3.6989951944080386,
+ "grad_norm": 0.26138055324554443,
+ "learning_rate": 0.0006,
+ "loss": 5.683221817016602,
+ "step": 266
+ },
+ {
+ "epoch": 3.7129750982961993,
+ "grad_norm": 0.23706290125846863,
+ "learning_rate": 0.0006,
+ "loss": 5.6896867752075195,
+ "step": 267
+ },
+ {
+ "epoch": 3.72695500218436,
+ "grad_norm": 0.2751729190349579,
+ "learning_rate": 0.0006,
+ "loss": 5.710301876068115,
+ "step": 268
+ },
+ {
+ "epoch": 3.7409349060725208,
+ "grad_norm": 0.255393385887146,
+ "learning_rate": 0.0006,
+ "loss": 5.687932968139648,
+ "step": 269
+ },
+ {
+ "epoch": 3.7549148099606815,
+ "grad_norm": 0.21453925967216492,
+ "learning_rate": 0.0006,
+ "loss": 5.68234395980835,
+ "step": 270
+ },
+ {
+ "epoch": 3.7688947138488422,
+ "grad_norm": 0.21771012246608734,
+ "learning_rate": 0.0006,
+ "loss": 5.683980464935303,
+ "step": 271
+ },
+ {
+ "epoch": 3.782874617737003,
+ "grad_norm": 0.1884593963623047,
+ "learning_rate": 0.0006,
+ "loss": 5.662779808044434,
+ "step": 272
+ },
+ {
+ "epoch": 3.7968545216251637,
+ "grad_norm": 0.20429612696170807,
+ "learning_rate": 0.0006,
+ "loss": 5.650941848754883,
+ "step": 273
+ },
+ {
+ "epoch": 3.810834425513325,
+ "grad_norm": 0.22586797177791595,
+ "learning_rate": 0.0006,
+ "loss": 5.639376640319824,
+ "step": 274
+ },
+ {
+ "epoch": 3.8248143294014856,
+ "grad_norm": 0.19651705026626587,
+ "learning_rate": 0.0006,
+ "loss": 5.612030029296875,
+ "step": 275
+ },
+ {
+ "epoch": 3.8387942332896463,
+ "grad_norm": 0.2125253826379776,
+ "learning_rate": 0.0006,
+ "loss": 5.622836589813232,
+ "step": 276
+ },
+ {
+ "epoch": 3.852774137177807,
+ "grad_norm": 0.2905234694480896,
+ "learning_rate": 0.0006,
+ "loss": 5.624594688415527,
+ "step": 277
+ },
+ {
+ "epoch": 3.8667540410659678,
+ "grad_norm": 0.2718426585197449,
+ "learning_rate": 0.0006,
+ "loss": 5.619892120361328,
+ "step": 278
+ },
+ {
+ "epoch": 3.8807339449541285,
+ "grad_norm": 0.26481127738952637,
+ "learning_rate": 0.0006,
+ "loss": 5.612496852874756,
+ "step": 279
+ },
+ {
+ "epoch": 3.894713848842289,
+ "grad_norm": 0.2876453399658203,
+ "learning_rate": 0.0006,
+ "loss": 5.59157133102417,
+ "step": 280
+ },
+ {
+ "epoch": 3.90869375273045,
+ "grad_norm": 0.22829554975032806,
+ "learning_rate": 0.0006,
+ "loss": 5.5884199142456055,
+ "step": 281
+ },
+ {
+ "epoch": 3.9226736566186107,
+ "grad_norm": 0.22852344810962677,
+ "learning_rate": 0.0006,
+ "loss": 5.618719100952148,
+ "step": 282
+ },
+ {
+ "epoch": 3.9366535605067714,
+ "grad_norm": 0.37366563081741333,
+ "learning_rate": 0.0006,
+ "loss": 5.611738204956055,
+ "step": 283
+ },
+ {
+ "epoch": 3.950633464394932,
+ "grad_norm": 0.5650382041931152,
+ "learning_rate": 0.0006,
+ "loss": 5.606371879577637,
+ "step": 284
+ },
+ {
+ "epoch": 3.964613368283093,
+ "grad_norm": 0.5960066914558411,
+ "learning_rate": 0.0006,
+ "loss": 5.595022201538086,
+ "step": 285
+ },
+ {
+ "epoch": 3.9785932721712536,
+ "grad_norm": 0.3561663031578064,
+ "learning_rate": 0.0006,
+ "loss": 5.581035614013672,
+ "step": 286
+ },
+ {
+ "epoch": 3.9925731760594148,
+ "grad_norm": 0.44699913263320923,
+ "learning_rate": 0.0006,
+ "loss": 5.568033218383789,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.42783990502357483,
+ "learning_rate": 0.0006,
+ "loss": 5.571993827819824,
+ "step": 288
+ },
+ {
+ "epoch": 4.0,
+ "eval_loss": 6.349016189575195,
+ "eval_runtime": 44.3326,
+ "eval_samples_per_second": 55.084,
+ "eval_steps_per_second": 3.451,
+ "step": 288
+ },
+ {
+ "epoch": 4.013979903888161,
+ "grad_norm": 0.41305896639823914,
+ "learning_rate": 0.0006,
+ "loss": 5.562954902648926,
+ "step": 289
+ },
+ {
+ "epoch": 4.0279598077763215,
+ "grad_norm": 0.3966459035873413,
+ "learning_rate": 0.0006,
+ "loss": 5.5671916007995605,
+ "step": 290
+ },
+ {
+ "epoch": 4.041939711664482,
+ "grad_norm": 0.4846104085445404,
+ "learning_rate": 0.0006,
+ "loss": 5.548027038574219,
+ "step": 291
+ },
+ {
+ "epoch": 4.055919615552643,
+ "grad_norm": 0.5916333794593811,
+ "learning_rate": 0.0006,
+ "loss": 5.5900068283081055,
+ "step": 292
+ },
+ {
+ "epoch": 4.069899519440804,
+ "grad_norm": 0.5973889231681824,
+ "learning_rate": 0.0006,
+ "loss": 5.537594795227051,
+ "step": 293
+ },
+ {
+ "epoch": 4.083879423328964,
+ "grad_norm": 0.4190494418144226,
+ "learning_rate": 0.0006,
+ "loss": 5.534749984741211,
+ "step": 294
+ },
+ {
+ "epoch": 4.097859327217125,
+ "grad_norm": 0.5956901907920837,
+ "learning_rate": 0.0006,
+ "loss": 5.554540634155273,
+ "step": 295
+ },
+ {
+ "epoch": 4.111839231105286,
+ "grad_norm": 0.8257920742034912,
+ "learning_rate": 0.0006,
+ "loss": 5.5728068351745605,
+ "step": 296
+ },
+ {
+ "epoch": 4.1258191349934465,
+ "grad_norm": 0.7241750955581665,
+ "learning_rate": 0.0006,
+ "loss": 5.5643815994262695,
+ "step": 297
+ },
+ {
+ "epoch": 4.139799038881607,
+ "grad_norm": 0.45730507373809814,
+ "learning_rate": 0.0006,
+ "loss": 5.554225921630859,
+ "step": 298
+ },
+ {
+ "epoch": 4.153778942769769,
+ "grad_norm": 0.5166977643966675,
+ "learning_rate": 0.0006,
+ "loss": 5.540790557861328,
+ "step": 299
+ },
+ {
+ "epoch": 4.16775884665793,
+ "grad_norm": 0.433237761259079,
+ "learning_rate": 0.0006,
+ "loss": 5.536884784698486,
+ "step": 300
+ },
+ {
+ "epoch": 4.18173875054609,
+ "grad_norm": 0.3369830250740051,
+ "learning_rate": 0.0006,
+ "loss": 5.532837867736816,
+ "step": 301
+ },
+ {
+ "epoch": 4.195718654434251,
+ "grad_norm": 0.33091458678245544,
+ "learning_rate": 0.0006,
+ "loss": 5.547643661499023,
+ "step": 302
+ },
+ {
+ "epoch": 4.209698558322412,
+ "grad_norm": 0.36462724208831787,
+ "learning_rate": 0.0006,
+ "loss": 5.525021076202393,
+ "step": 303
+ },
+ {
+ "epoch": 4.2236784622105725,
+ "grad_norm": 0.3342771530151367,
+ "learning_rate": 0.0006,
+ "loss": 5.512082099914551,
+ "step": 304
+ },
+ {
+ "epoch": 4.237658366098733,
+ "grad_norm": 0.26784762740135193,
+ "learning_rate": 0.0006,
+ "loss": 5.488072395324707,
+ "step": 305
+ },
+ {
+ "epoch": 4.251638269986894,
+ "grad_norm": 0.25986987352371216,
+ "learning_rate": 0.0006,
+ "loss": 5.4960455894470215,
+ "step": 306
+ },
+ {
+ "epoch": 4.265618173875055,
+ "grad_norm": 0.24595795571804047,
+ "learning_rate": 0.0006,
+ "loss": 5.513367176055908,
+ "step": 307
+ },
+ {
+ "epoch": 4.279598077763215,
+ "grad_norm": 0.2224857211112976,
+ "learning_rate": 0.0006,
+ "loss": 5.465205192565918,
+ "step": 308
+ },
+ {
+ "epoch": 4.293577981651376,
+ "grad_norm": 0.26799243688583374,
+ "learning_rate": 0.0006,
+ "loss": 5.476632118225098,
+ "step": 309
+ },
+ {
+ "epoch": 4.307557885539537,
+ "grad_norm": 0.20443417131900787,
+ "learning_rate": 0.0006,
+ "loss": 5.442601203918457,
+ "step": 310
+ },
+ {
+ "epoch": 4.321537789427698,
+ "grad_norm": 0.2275059074163437,
+ "learning_rate": 0.0006,
+ "loss": 5.453519344329834,
+ "step": 311
+ },
+ {
+ "epoch": 4.335517693315858,
+ "grad_norm": 0.2860901951789856,
+ "learning_rate": 0.0006,
+ "loss": 5.439424514770508,
+ "step": 312
+ },
+ {
+ "epoch": 4.349497597204019,
+ "grad_norm": 0.3378142714500427,
+ "learning_rate": 0.0006,
+ "loss": 5.476953983306885,
+ "step": 313
+ },
+ {
+ "epoch": 4.36347750109218,
+ "grad_norm": 0.3487110733985901,
+ "learning_rate": 0.0006,
+ "loss": 5.47003698348999,
+ "step": 314
+ },
+ {
+ "epoch": 4.3774574049803405,
+ "grad_norm": 0.3655227720737457,
+ "learning_rate": 0.0006,
+ "loss": 5.454250812530518,
+ "step": 315
+ },
+ {
+ "epoch": 4.391437308868501,
+ "grad_norm": 0.3754786252975464,
+ "learning_rate": 0.0006,
+ "loss": 5.475249290466309,
+ "step": 316
+ },
+ {
+ "epoch": 4.405417212756662,
+ "grad_norm": 0.42494088411331177,
+ "learning_rate": 0.0006,
+ "loss": 5.4552459716796875,
+ "step": 317
+ },
+ {
+ "epoch": 4.419397116644823,
+ "grad_norm": 0.4914703667163849,
+ "learning_rate": 0.0006,
+ "loss": 5.431845188140869,
+ "step": 318
+ },
+ {
+ "epoch": 4.433377020532983,
+ "grad_norm": 0.42470860481262207,
+ "learning_rate": 0.0006,
+ "loss": 5.454581260681152,
+ "step": 319
+ },
+ {
+ "epoch": 4.447356924421145,
+ "grad_norm": 0.3828011155128479,
+ "learning_rate": 0.0006,
+ "loss": 5.435178756713867,
+ "step": 320
+ },
+ {
+ "epoch": 4.461336828309306,
+ "grad_norm": 0.47256892919540405,
+ "learning_rate": 0.0006,
+ "loss": 5.428861618041992,
+ "step": 321
+ },
+ {
+ "epoch": 4.4753167321974665,
+ "grad_norm": 0.5665146708488464,
+ "learning_rate": 0.0006,
+ "loss": 5.424633026123047,
+ "step": 322
+ },
+ {
+ "epoch": 4.489296636085627,
+ "grad_norm": 0.48146721720695496,
+ "learning_rate": 0.0006,
+ "loss": 5.4577860832214355,
+ "step": 323
+ },
+ {
+ "epoch": 4.503276539973788,
+ "grad_norm": 0.3378535509109497,
+ "learning_rate": 0.0006,
+ "loss": 5.422727108001709,
+ "step": 324
+ },
+ {
+ "epoch": 4.517256443861949,
+ "grad_norm": 0.41981473565101624,
+ "learning_rate": 0.0006,
+ "loss": 5.418993949890137,
+ "step": 325
+ },
+ {
+ "epoch": 4.531236347750109,
+ "grad_norm": 0.39389684796333313,
+ "learning_rate": 0.0006,
+ "loss": 5.41835880279541,
+ "step": 326
+ },
+ {
+ "epoch": 4.54521625163827,
+ "grad_norm": 0.5912176370620728,
+ "learning_rate": 0.0006,
+ "loss": 5.40073299407959,
+ "step": 327
+ },
+ {
+ "epoch": 4.559196155526431,
+ "grad_norm": 0.6877487897872925,
+ "learning_rate": 0.0006,
+ "loss": 5.445301055908203,
+ "step": 328
+ },
+ {
+ "epoch": 4.573176059414592,
+ "grad_norm": 0.580555260181427,
+ "learning_rate": 0.0006,
+ "loss": 5.431069374084473,
+ "step": 329
+ },
+ {
+ "epoch": 4.587155963302752,
+ "grad_norm": 0.5974457859992981,
+ "learning_rate": 0.0006,
+ "loss": 5.422694206237793,
+ "step": 330
+ },
+ {
+ "epoch": 4.601135867190913,
+ "grad_norm": 0.722481906414032,
+ "learning_rate": 0.0006,
+ "loss": 5.447752952575684,
+ "step": 331
+ },
+ {
+ "epoch": 4.615115771079074,
+ "grad_norm": 0.7687886953353882,
+ "learning_rate": 0.0006,
+ "loss": 5.437956809997559,
+ "step": 332
+ },
+ {
+ "epoch": 4.6290956749672345,
+ "grad_norm": 0.7368173003196716,
+ "learning_rate": 0.0006,
+ "loss": 5.4367241859436035,
+ "step": 333
+ },
+ {
+ "epoch": 4.643075578855395,
+ "grad_norm": 0.6650524139404297,
+ "learning_rate": 0.0006,
+ "loss": 5.4288434982299805,
+ "step": 334
+ },
+ {
+ "epoch": 4.657055482743556,
+ "grad_norm": 0.4997614920139313,
+ "learning_rate": 0.0006,
+ "loss": 5.412769317626953,
+ "step": 335
+ },
+ {
+ "epoch": 4.671035386631717,
+ "grad_norm": 0.44208982586860657,
+ "learning_rate": 0.0006,
+ "loss": 5.42405366897583,
+ "step": 336
+ },
+ {
+ "epoch": 4.685015290519877,
+ "grad_norm": 0.39510273933410645,
+ "learning_rate": 0.0006,
+ "loss": 5.402547836303711,
+ "step": 337
+ },
+ {
+ "epoch": 4.698995194408038,
+ "grad_norm": 0.44970476627349854,
+ "learning_rate": 0.0006,
+ "loss": 5.377168655395508,
+ "step": 338
+ },
+ {
+ "epoch": 4.712975098296199,
+ "grad_norm": 0.3902331590652466,
+ "learning_rate": 0.0006,
+ "loss": 5.401622772216797,
+ "step": 339
+ },
+ {
+ "epoch": 4.72695500218436,
+ "grad_norm": 0.33485135436058044,
+ "learning_rate": 0.0006,
+ "loss": 5.397945880889893,
+ "step": 340
+ },
+ {
+ "epoch": 4.740934906072521,
+ "grad_norm": 0.29062309861183167,
+ "learning_rate": 0.0006,
+ "loss": 5.356175422668457,
+ "step": 341
+ },
+ {
+ "epoch": 4.754914809960681,
+ "grad_norm": 0.23617377877235413,
+ "learning_rate": 0.0006,
+ "loss": 5.388517379760742,
+ "step": 342
+ },
+ {
+ "epoch": 4.768894713848843,
+ "grad_norm": 0.2704737186431885,
+ "learning_rate": 0.0006,
+ "loss": 5.3746137619018555,
+ "step": 343
+ },
+ {
+ "epoch": 4.782874617737003,
+ "grad_norm": 0.20488551259040833,
+ "learning_rate": 0.0006,
+ "loss": 5.3754472732543945,
+ "step": 344
+ },
+ {
+ "epoch": 4.796854521625164,
+ "grad_norm": 0.2007082849740982,
+ "learning_rate": 0.0006,
+ "loss": 5.3538618087768555,
+ "step": 345
+ },
+ {
+ "epoch": 4.810834425513325,
+ "grad_norm": 0.21732935309410095,
+ "learning_rate": 0.0006,
+ "loss": 5.351774215698242,
+ "step": 346
+ },
+ {
+ "epoch": 4.824814329401486,
+ "grad_norm": 0.1944841742515564,
+ "learning_rate": 0.0006,
+ "loss": 5.357545852661133,
+ "step": 347
+ },
+ {
+ "epoch": 4.838794233289646,
+ "grad_norm": 0.1953933835029602,
+ "learning_rate": 0.0006,
+ "loss": 5.321681022644043,
+ "step": 348
+ },
+ {
+ "epoch": 4.852774137177807,
+ "grad_norm": 0.1743433028459549,
+ "learning_rate": 0.0006,
+ "loss": 5.340302467346191,
+ "step": 349
+ },
+ {
+ "epoch": 4.866754041065968,
+ "grad_norm": 0.19655466079711914,
+ "learning_rate": 0.0006,
+ "loss": 5.325471878051758,
+ "step": 350
+ },
+ {
+ "epoch": 4.8807339449541285,
+ "grad_norm": 0.15761791169643402,
+ "learning_rate": 0.0006,
+ "loss": 5.3453240394592285,
+ "step": 351
+ },
+ {
+ "epoch": 4.894713848842289,
+ "grad_norm": 0.19164425134658813,
+ "learning_rate": 0.0006,
+ "loss": 5.315583229064941,
+ "step": 352
+ },
+ {
+ "epoch": 4.90869375273045,
+ "grad_norm": 0.28084540367126465,
+ "learning_rate": 0.0006,
+ "loss": 5.309171676635742,
+ "step": 353
+ },
+ {
+ "epoch": 4.922673656618611,
+ "grad_norm": 0.4681853652000427,
+ "learning_rate": 0.0006,
+ "loss": 5.318211078643799,
+ "step": 354
+ },
+ {
+ "epoch": 4.936653560506771,
+ "grad_norm": 0.6417295932769775,
+ "learning_rate": 0.0006,
+ "loss": 5.309263706207275,
+ "step": 355
+ },
+ {
+ "epoch": 4.950633464394932,
+ "grad_norm": 0.501312792301178,
+ "learning_rate": 0.0006,
+ "loss": 5.321534156799316,
+ "step": 356
+ },
+ {
+ "epoch": 4.964613368283093,
+ "grad_norm": 0.47502145171165466,
+ "learning_rate": 0.0006,
+ "loss": 5.323659896850586,
+ "step": 357
+ },
+ {
+ "epoch": 4.978593272171254,
+ "grad_norm": 0.5366594791412354,
+ "learning_rate": 0.0006,
+ "loss": 5.327367782592773,
+ "step": 358
+ },
+ {
+ "epoch": 4.992573176059414,
+ "grad_norm": 0.6986395120620728,
+ "learning_rate": 0.0006,
+ "loss": 5.311097145080566,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.6626625657081604,
+ "learning_rate": 0.0006,
+ "loss": 5.337558269500732,
+ "step": 360
+ },
+ {
+ "epoch": 5.0,
+ "eval_loss": 5.929230690002441,
+ "eval_runtime": 44.5268,
+ "eval_samples_per_second": 54.843,
+ "eval_steps_per_second": 3.436,
+ "step": 360
+ },
+ {
+ "epoch": 5.013979903888161,
+ "grad_norm": 0.7383704781532288,
+ "learning_rate": 0.0006,
+ "loss": 5.315563678741455,
+ "step": 361
+ },
+ {
+ "epoch": 5.0279598077763215,
+ "grad_norm": 0.7730138301849365,
+ "learning_rate": 0.0006,
+ "loss": 5.324905872344971,
+ "step": 362
+ },
+ {
+ "epoch": 5.041939711664482,
+ "grad_norm": 0.8170825839042664,
+ "learning_rate": 0.0006,
+ "loss": 5.350251197814941,
+ "step": 363
+ },
+ {
+ "epoch": 5.055919615552643,
+ "grad_norm": 0.6950958371162415,
+ "learning_rate": 0.0006,
+ "loss": 5.338744163513184,
+ "step": 364
+ },
+ {
+ "epoch": 5.069899519440804,
+ "grad_norm": 0.5582894086837769,
+ "learning_rate": 0.0006,
+ "loss": 5.340539932250977,
+ "step": 365
+ },
+ {
+ "epoch": 5.083879423328964,
+ "grad_norm": 0.4772159159183502,
+ "learning_rate": 0.0006,
+ "loss": 5.344161033630371,
+ "step": 366
+ },
+ {
+ "epoch": 5.097859327217125,
+ "grad_norm": 0.5432839393615723,
+ "learning_rate": 0.0006,
+ "loss": 5.312403678894043,
+ "step": 367
+ },
+ {
+ "epoch": 5.111839231105286,
+ "grad_norm": 0.4944784641265869,
+ "learning_rate": 0.0006,
+ "loss": 5.30281925201416,
+ "step": 368
+ },
+ {
+ "epoch": 5.1258191349934465,
+ "grad_norm": 0.4298315942287445,
+ "learning_rate": 0.0006,
+ "loss": 5.29564094543457,
+ "step": 369
+ },
+ {
+ "epoch": 5.139799038881607,
+ "grad_norm": 0.349889874458313,
+ "learning_rate": 0.0006,
+ "loss": 5.287062644958496,
+ "step": 370
+ },
+ {
+ "epoch": 5.153778942769769,
+ "grad_norm": 0.2823719084262848,
+ "learning_rate": 0.0006,
+ "loss": 5.28826904296875,
+ "step": 371
+ },
+ {
+ "epoch": 5.16775884665793,
+ "grad_norm": 0.32975050806999207,
+ "learning_rate": 0.0006,
+ "loss": 5.256399631500244,
+ "step": 372
+ },
+ {
+ "epoch": 5.18173875054609,
+ "grad_norm": 0.2963952124118805,
+ "learning_rate": 0.0006,
+ "loss": 5.273757457733154,
+ "step": 373
+ },
+ {
+ "epoch": 5.195718654434251,
+ "grad_norm": 0.21345984935760498,
+ "learning_rate": 0.0006,
+ "loss": 5.274978160858154,
+ "step": 374
+ },
+ {
+ "epoch": 5.209698558322412,
+ "grad_norm": 0.2363101840019226,
+ "learning_rate": 0.0006,
+ "loss": 5.261585235595703,
+ "step": 375
+ },
+ {
+ "epoch": 5.2236784622105725,
+ "grad_norm": 0.19626963138580322,
+ "learning_rate": 0.0006,
+ "loss": 5.259700298309326,
+ "step": 376
+ },
+ {
+ "epoch": 5.237658366098733,
+ "grad_norm": 0.21083571016788483,
+ "learning_rate": 0.0006,
+ "loss": 5.233585357666016,
+ "step": 377
+ },
+ {
+ "epoch": 5.251638269986894,
+ "grad_norm": 0.2273513823747635,
+ "learning_rate": 0.0006,
+ "loss": 5.231740474700928,
+ "step": 378
+ },
+ {
+ "epoch": 5.265618173875055,
+ "grad_norm": 0.18299247324466705,
+ "learning_rate": 0.0006,
+ "loss": 5.251256465911865,
+ "step": 379
+ },
+ {
+ "epoch": 5.279598077763215,
+ "grad_norm": 0.19578224420547485,
+ "learning_rate": 0.0006,
+ "loss": 5.230329513549805,
+ "step": 380
+ },
+ {
+ "epoch": 5.293577981651376,
+ "grad_norm": 0.20308879017829895,
+ "learning_rate": 0.0006,
+ "loss": 5.243951797485352,
+ "step": 381
+ },
+ {
+ "epoch": 5.307557885539537,
+ "grad_norm": 0.21053212881088257,
+ "learning_rate": 0.0006,
+ "loss": 5.210272789001465,
+ "step": 382
+ },
+ {
+ "epoch": 5.321537789427698,
+ "grad_norm": 0.21852520108222961,
+ "learning_rate": 0.0006,
+ "loss": 5.215418815612793,
+ "step": 383
+ },
+ {
+ "epoch": 5.335517693315858,
+ "grad_norm": 0.24872010946273804,
+ "learning_rate": 0.0006,
+ "loss": 5.225139617919922,
+ "step": 384
+ },
+ {
+ "epoch": 5.349497597204019,
+ "grad_norm": 0.27780187129974365,
+ "learning_rate": 0.0006,
+ "loss": 5.241010665893555,
+ "step": 385
+ },
+ {
+ "epoch": 5.36347750109218,
+ "grad_norm": 0.261767715215683,
+ "learning_rate": 0.0006,
+ "loss": 5.230723857879639,
+ "step": 386
+ },
+ {
+ "epoch": 5.3774574049803405,
+ "grad_norm": 0.2111261785030365,
+ "learning_rate": 0.0006,
+ "loss": 5.1848602294921875,
+ "step": 387
+ },
+ {
+ "epoch": 5.391437308868501,
+ "grad_norm": 0.24325387179851532,
+ "learning_rate": 0.0006,
+ "loss": 5.180911064147949,
+ "step": 388
+ },
+ {
+ "epoch": 5.405417212756662,
+ "grad_norm": 0.19542962312698364,
+ "learning_rate": 0.0006,
+ "loss": 5.189907073974609,
+ "step": 389
+ },
+ {
+ "epoch": 5.419397116644823,
+ "grad_norm": 0.20489346981048584,
+ "learning_rate": 0.0006,
+ "loss": 5.184634208679199,
+ "step": 390
+ },
+ {
+ "epoch": 5.433377020532983,
+ "grad_norm": 0.2753409147262573,
+ "learning_rate": 0.0006,
+ "loss": 5.190083026885986,
+ "step": 391
+ },
+ {
+ "epoch": 5.447356924421145,
+ "grad_norm": 0.3758019208908081,
+ "learning_rate": 0.0006,
+ "loss": 5.189423561096191,
+ "step": 392
+ },
+ {
+ "epoch": 5.461336828309306,
+ "grad_norm": 0.4425095021724701,
+ "learning_rate": 0.0006,
+ "loss": 5.17152214050293,
+ "step": 393
+ },
+ {
+ "epoch": 5.4753167321974665,
+ "grad_norm": 0.39721858501434326,
+ "learning_rate": 0.0006,
+ "loss": 5.189178466796875,
+ "step": 394
+ },
+ {
+ "epoch": 5.489296636085627,
+ "grad_norm": 0.43441957235336304,
+ "learning_rate": 0.0006,
+ "loss": 5.1823577880859375,
+ "step": 395
+ },
+ {
+ "epoch": 5.503276539973788,
+ "grad_norm": 0.3583861291408539,
+ "learning_rate": 0.0006,
+ "loss": 5.160187721252441,
+ "step": 396
+ },
+ {
+ "epoch": 5.517256443861949,
+ "grad_norm": 0.323290079832077,
+ "learning_rate": 0.0006,
+ "loss": 5.113046646118164,
+ "step": 397
+ },
+ {
+ "epoch": 5.531236347750109,
+ "grad_norm": 0.3049418330192566,
+ "learning_rate": 0.0006,
+ "loss": 5.172209739685059,
+ "step": 398
+ },
+ {
+ "epoch": 5.54521625163827,
+ "grad_norm": 0.3253744840621948,
+ "learning_rate": 0.0006,
+ "loss": 5.1970720291137695,
+ "step": 399
+ },
+ {
+ "epoch": 5.559196155526431,
+ "grad_norm": 0.3232555091381073,
+ "learning_rate": 0.0006,
+ "loss": 5.173195838928223,
+ "step": 400
+ },
+ {
+ "epoch": 5.573176059414592,
+ "grad_norm": 0.33751845359802246,
+ "learning_rate": 0.0006,
+ "loss": 5.137526988983154,
+ "step": 401
+ },
+ {
+ "epoch": 5.587155963302752,
+ "grad_norm": 0.45970913767814636,
+ "learning_rate": 0.0006,
+ "loss": 5.123377799987793,
+ "step": 402
+ },
+ {
+ "epoch": 5.601135867190913,
+ "grad_norm": 0.5383784770965576,
+ "learning_rate": 0.0006,
+ "loss": 5.154180526733398,
+ "step": 403
+ },
+ {
+ "epoch": 5.615115771079074,
+ "grad_norm": 0.45765912532806396,
+ "learning_rate": 0.0006,
+ "loss": 5.1485209465026855,
+ "step": 404
+ },
+ {
+ "epoch": 5.6290956749672345,
+ "grad_norm": 0.5079503059387207,
+ "learning_rate": 0.0006,
+ "loss": 5.158293724060059,
+ "step": 405
+ },
+ {
+ "epoch": 5.643075578855395,
+ "grad_norm": 0.4860183894634247,
+ "learning_rate": 0.0006,
+ "loss": 5.1610212326049805,
+ "step": 406
+ },
+ {
+ "epoch": 5.657055482743556,
+ "grad_norm": 0.4065648913383484,
+ "learning_rate": 0.0006,
+ "loss": 5.1260786056518555,
+ "step": 407
+ },
+ {
+ "epoch": 5.671035386631717,
+ "grad_norm": 0.39606142044067383,
+ "learning_rate": 0.0006,
+ "loss": 5.1598711013793945,
+ "step": 408
+ },
+ {
+ "epoch": 5.685015290519877,
+ "grad_norm": 0.4705151319503784,
+ "learning_rate": 0.0006,
+ "loss": 5.166455268859863,
+ "step": 409
+ },
+ {
+ "epoch": 5.698995194408038,
+ "grad_norm": 0.5040799379348755,
+ "learning_rate": 0.0006,
+ "loss": 5.1408209800720215,
+ "step": 410
+ },
+ {
+ "epoch": 5.712975098296199,
+ "grad_norm": 0.5012556910514832,
+ "learning_rate": 0.0006,
+ "loss": 5.144109725952148,
+ "step": 411
+ },
+ {
+ "epoch": 5.72695500218436,
+ "grad_norm": 0.44301411509513855,
+ "learning_rate": 0.0006,
+ "loss": 5.155509948730469,
+ "step": 412
+ },
+ {
+ "epoch": 5.740934906072521,
+ "grad_norm": 0.36632269620895386,
+ "learning_rate": 0.0006,
+ "loss": 5.123111248016357,
+ "step": 413
+ },
+ {
+ "epoch": 5.754914809960681,
+ "grad_norm": 0.2980524003505707,
+ "learning_rate": 0.0006,
+ "loss": 5.1355719566345215,
+ "step": 414
+ },
+ {
+ "epoch": 5.768894713848843,
+ "grad_norm": 0.3441782295703888,
+ "learning_rate": 0.0006,
+ "loss": 5.132327079772949,
+ "step": 415
+ },
+ {
+ "epoch": 5.782874617737003,
+ "grad_norm": 0.4150780737400055,
+ "learning_rate": 0.0006,
+ "loss": 5.148543357849121,
+ "step": 416
+ },
+ {
+ "epoch": 5.796854521625164,
+ "grad_norm": 0.48417383432388306,
+ "learning_rate": 0.0006,
+ "loss": 5.104989528656006,
+ "step": 417
+ },
+ {
+ "epoch": 5.810834425513325,
+ "grad_norm": 0.3216031491756439,
+ "learning_rate": 0.0006,
+ "loss": 5.0926127433776855,
+ "step": 418
+ },
+ {
+ "epoch": 5.824814329401486,
+ "grad_norm": 0.2821158468723297,
+ "learning_rate": 0.0006,
+ "loss": 5.112299919128418,
+ "step": 419
+ },
+ {
+ "epoch": 5.838794233289646,
+ "grad_norm": 0.29821011424064636,
+ "learning_rate": 0.0006,
+ "loss": 5.091662406921387,
+ "step": 420
+ },
+ {
+ "epoch": 5.852774137177807,
+ "grad_norm": 0.30570563673973083,
+ "learning_rate": 0.0006,
+ "loss": 5.137539863586426,
+ "step": 421
+ },
+ {
+ "epoch": 5.866754041065968,
+ "grad_norm": 0.4029594957828522,
+ "learning_rate": 0.0006,
+ "loss": 5.112751007080078,
+ "step": 422
+ },
+ {
+ "epoch": 5.8807339449541285,
+ "grad_norm": 0.3878514766693115,
+ "learning_rate": 0.0006,
+ "loss": 5.094973564147949,
+ "step": 423
+ },
+ {
+ "epoch": 5.894713848842289,
+ "grad_norm": 0.31936126947402954,
+ "learning_rate": 0.0006,
+ "loss": 5.081070899963379,
+ "step": 424
+ },
+ {
+ "epoch": 5.90869375273045,
+ "grad_norm": 0.3309082090854645,
+ "learning_rate": 0.0006,
+ "loss": 5.06803560256958,
+ "step": 425
+ },
+ {
+ "epoch": 5.922673656618611,
+ "grad_norm": 0.27830439805984497,
+ "learning_rate": 0.0006,
+ "loss": 5.044766426086426,
+ "step": 426
+ },
+ {
+ "epoch": 5.936653560506771,
+ "grad_norm": 0.3301011919975281,
+ "learning_rate": 0.0006,
+ "loss": 5.093942165374756,
+ "step": 427
+ },
+ {
+ "epoch": 5.950633464394932,
+ "grad_norm": 0.40845948457717896,
+ "learning_rate": 0.0006,
+ "loss": 5.0889458656311035,
+ "step": 428
+ },
+ {
+ "epoch": 5.964613368283093,
+ "grad_norm": 0.4412153959274292,
+ "learning_rate": 0.0006,
+ "loss": 5.064834117889404,
+ "step": 429
+ },
+ {
+ "epoch": 5.978593272171254,
+ "grad_norm": 0.3592590093612671,
+ "learning_rate": 0.0006,
+ "loss": 5.066648006439209,
+ "step": 430
+ },
+ {
+ "epoch": 5.992573176059414,
+ "grad_norm": 0.3952840268611908,
+ "learning_rate": 0.0006,
+ "loss": 5.066549301147461,
+ "step": 431
+ },
+ {
+ "epoch": 6.0,
+ "grad_norm": 0.38878682255744934,
+ "learning_rate": 0.0006,
+ "loss": 5.0354323387146,
+ "step": 432
+ },
+ {
+ "epoch": 6.0,
+ "eval_loss": 5.473907947540283,
+ "eval_runtime": 44.5121,
+ "eval_samples_per_second": 54.861,
+ "eval_steps_per_second": 3.437,
+ "step": 432
+ },
+ {
+ "epoch": 6.013979903888161,
+ "grad_norm": 0.42730140686035156,
+ "learning_rate": 0.0006,
+ "loss": 5.048557281494141,
+ "step": 433
+ },
+ {
+ "epoch": 6.0279598077763215,
+ "grad_norm": 0.32713913917541504,
+ "learning_rate": 0.0006,
+ "loss": 5.041255950927734,
+ "step": 434
+ },
+ {
+ "epoch": 6.041939711664482,
+ "grad_norm": 0.32520365715026855,
+ "learning_rate": 0.0006,
+ "loss": 5.043124198913574,
+ "step": 435
+ },
+ {
+ "epoch": 6.055919615552643,
+ "grad_norm": 0.2941839098930359,
+ "learning_rate": 0.0006,
+ "loss": 5.0407304763793945,
+ "step": 436
+ },
+ {
+ "epoch": 6.069899519440804,
+ "grad_norm": 0.3088819682598114,
+ "learning_rate": 0.0006,
+ "loss": 5.020771026611328,
+ "step": 437
+ },
+ {
+ "epoch": 6.083879423328964,
+ "grad_norm": 0.34334254264831543,
+ "learning_rate": 0.0006,
+ "loss": 5.0260009765625,
+ "step": 438
+ },
+ {
+ "epoch": 6.097859327217125,
+ "grad_norm": 0.33016136288642883,
+ "learning_rate": 0.0006,
+ "loss": 4.994412899017334,
+ "step": 439
+ },
+ {
+ "epoch": 6.111839231105286,
+ "grad_norm": 0.2527366280555725,
+ "learning_rate": 0.0006,
+ "loss": 4.997830390930176,
+ "step": 440
+ },
+ {
+ "epoch": 6.1258191349934465,
+ "grad_norm": 0.24742509424686432,
+ "learning_rate": 0.0006,
+ "loss": 5.017087936401367,
+ "step": 441
+ },
+ {
+ "epoch": 6.139799038881607,
+ "grad_norm": 0.22578303515911102,
+ "learning_rate": 0.0006,
+ "loss": 5.000683784484863,
+ "step": 442
+ },
+ {
+ "epoch": 6.153778942769769,
+ "grad_norm": 0.21213896572589874,
+ "learning_rate": 0.0006,
+ "loss": 4.993280410766602,
+ "step": 443
+ },
+ {
+ "epoch": 6.16775884665793,
+ "grad_norm": 0.22559592127799988,
+ "learning_rate": 0.0006,
+ "loss": 5.005735874176025,
+ "step": 444
+ },
+ {
+ "epoch": 6.18173875054609,
+ "grad_norm": 0.18574322760105133,
+ "learning_rate": 0.0006,
+ "loss": 4.996601104736328,
+ "step": 445
+ },
+ {
+ "epoch": 6.195718654434251,
+ "grad_norm": 0.1793852299451828,
+ "learning_rate": 0.0006,
+ "loss": 4.977394104003906,
+ "step": 446
+ },
+ {
+ "epoch": 6.209698558322412,
+ "grad_norm": 0.1851297914981842,
+ "learning_rate": 0.0006,
+ "loss": 4.983541488647461,
+ "step": 447
+ },
+ {
+ "epoch": 6.2236784622105725,
+ "grad_norm": 0.2045268565416336,
+ "learning_rate": 0.0006,
+ "loss": 4.992830276489258,
+ "step": 448
+ },
+ {
+ "epoch": 6.237658366098733,
+ "grad_norm": 0.21707463264465332,
+ "learning_rate": 0.0006,
+ "loss": 4.998589515686035,
+ "step": 449
+ },
+ {
+ "epoch": 6.251638269986894,
+ "grad_norm": 0.2805860638618469,
+ "learning_rate": 0.0006,
+ "loss": 4.973134517669678,
+ "step": 450
+ },
+ {
+ "epoch": 6.265618173875055,
+ "grad_norm": 0.33102089166641235,
+ "learning_rate": 0.0006,
+ "loss": 4.957348823547363,
+ "step": 451
+ },
+ {
+ "epoch": 6.279598077763215,
+ "grad_norm": 0.3763096034526825,
+ "learning_rate": 0.0006,
+ "loss": 5.0133256912231445,
+ "step": 452
+ },
+ {
+ "epoch": 6.293577981651376,
+ "grad_norm": 0.4676196575164795,
+ "learning_rate": 0.0006,
+ "loss": 4.972289562225342,
+ "step": 453
+ },
+ {
+ "epoch": 6.307557885539537,
+ "grad_norm": 0.6158978343009949,
+ "learning_rate": 0.0006,
+ "loss": 4.989326477050781,
+ "step": 454
+ },
+ {
+ "epoch": 6.321537789427698,
+ "grad_norm": 0.537460446357727,
+ "learning_rate": 0.0006,
+ "loss": 5.0210676193237305,
+ "step": 455
+ },
+ {
+ "epoch": 6.335517693315858,
+ "grad_norm": 0.5342532396316528,
+ "learning_rate": 0.0006,
+ "loss": 4.988524436950684,
+ "step": 456
+ },
+ {
+ "epoch": 6.349497597204019,
+ "grad_norm": 0.5736384987831116,
+ "learning_rate": 0.0006,
+ "loss": 4.977508068084717,
+ "step": 457
+ },
+ {
+ "epoch": 6.36347750109218,
+ "grad_norm": 0.6656201481819153,
+ "learning_rate": 0.0006,
+ "loss": 5.047934055328369,
+ "step": 458
+ },
+ {
+ "epoch": 6.3774574049803405,
+ "grad_norm": 0.6388342380523682,
+ "learning_rate": 0.0006,
+ "loss": 5.017617225646973,
+ "step": 459
+ },
+ {
+ "epoch": 6.391437308868501,
+ "grad_norm": 0.6620904207229614,
+ "learning_rate": 0.0006,
+ "loss": 5.032195091247559,
+ "step": 460
+ },
+ {
+ "epoch": 6.405417212756662,
+ "grad_norm": 0.693274974822998,
+ "learning_rate": 0.0006,
+ "loss": 5.02433967590332,
+ "step": 461
+ },
+ {
+ "epoch": 6.419397116644823,
+ "grad_norm": 0.6888924241065979,
+ "learning_rate": 0.0006,
+ "loss": 5.010735511779785,
+ "step": 462
+ },
+ {
+ "epoch": 6.433377020532983,
+ "grad_norm": 0.7181721925735474,
+ "learning_rate": 0.0006,
+ "loss": 5.049690246582031,
+ "step": 463
+ },
+ {
+ "epoch": 6.447356924421145,
+ "grad_norm": 0.7225117087364197,
+ "learning_rate": 0.0006,
+ "loss": 5.031939506530762,
+ "step": 464
+ },
+ {
+ "epoch": 6.461336828309306,
+ "grad_norm": 0.5268304347991943,
+ "learning_rate": 0.0006,
+ "loss": 5.01638126373291,
+ "step": 465
+ },
+ {
+ "epoch": 6.4753167321974665,
+ "grad_norm": 0.38218435645103455,
+ "learning_rate": 0.0006,
+ "loss": 4.997034072875977,
+ "step": 466
+ },
+ {
+ "epoch": 6.489296636085627,
+ "grad_norm": 0.3576396703720093,
+ "learning_rate": 0.0006,
+ "loss": 5.006804943084717,
+ "step": 467
+ },
+ {
+ "epoch": 6.503276539973788,
+ "grad_norm": 0.3305981755256653,
+ "learning_rate": 0.0006,
+ "loss": 4.994671821594238,
+ "step": 468
+ },
+ {
+ "epoch": 6.517256443861949,
+ "grad_norm": 0.3254900574684143,
+ "learning_rate": 0.0006,
+ "loss": 4.9747490882873535,
+ "step": 469
+ },
+ {
+ "epoch": 6.531236347750109,
+ "grad_norm": 0.2655033469200134,
+ "learning_rate": 0.0006,
+ "loss": 5.002863883972168,
+ "step": 470
+ },
+ {
+ "epoch": 6.54521625163827,
+ "grad_norm": 0.2620532810688019,
+ "learning_rate": 0.0006,
+ "loss": 4.9813337326049805,
+ "step": 471
+ },
+ {
+ "epoch": 6.559196155526431,
+ "grad_norm": 0.22128869593143463,
+ "learning_rate": 0.0006,
+ "loss": 4.978368759155273,
+ "step": 472
+ },
+ {
+ "epoch": 6.573176059414592,
+ "grad_norm": 0.22638699412345886,
+ "learning_rate": 0.0006,
+ "loss": 4.944509029388428,
+ "step": 473
+ },
+ {
+ "epoch": 6.587155963302752,
+ "grad_norm": 0.20720207691192627,
+ "learning_rate": 0.0006,
+ "loss": 4.98404598236084,
+ "step": 474
+ },
+ {
+ "epoch": 6.601135867190913,
+ "grad_norm": 0.21577289700508118,
+ "learning_rate": 0.0006,
+ "loss": 4.958878040313721,
+ "step": 475
+ },
+ {
+ "epoch": 6.615115771079074,
+ "grad_norm": 0.22453972697257996,
+ "learning_rate": 0.0006,
+ "loss": 4.935467720031738,
+ "step": 476
+ },
+ {
+ "epoch": 6.6290956749672345,
+ "grad_norm": 0.20757712423801422,
+ "learning_rate": 0.0006,
+ "loss": 4.943334579467773,
+ "step": 477
+ },
+ {
+ "epoch": 6.643075578855395,
+ "grad_norm": 0.22808043658733368,
+ "learning_rate": 0.0006,
+ "loss": 4.936544418334961,
+ "step": 478
+ },
+ {
+ "epoch": 6.657055482743556,
+ "grad_norm": 0.2193756401538849,
+ "learning_rate": 0.0006,
+ "loss": 4.938162326812744,
+ "step": 479
+ },
+ {
+ "epoch": 6.671035386631717,
+ "grad_norm": 0.19677500426769257,
+ "learning_rate": 0.0006,
+ "loss": 4.9026713371276855,
+ "step": 480
+ },
+ {
+ "epoch": 6.685015290519877,
+ "grad_norm": 0.17271658778190613,
+ "learning_rate": 0.0006,
+ "loss": 4.912519454956055,
+ "step": 481
+ },
+ {
+ "epoch": 6.698995194408038,
+ "grad_norm": 0.17551499605178833,
+ "learning_rate": 0.0006,
+ "loss": 4.929941177368164,
+ "step": 482
+ },
+ {
+ "epoch": 6.712975098296199,
+ "grad_norm": 0.1582687348127365,
+ "learning_rate": 0.0006,
+ "loss": 4.908967971801758,
+ "step": 483
+ },
+ {
+ "epoch": 6.72695500218436,
+ "grad_norm": 0.1593410074710846,
+ "learning_rate": 0.0006,
+ "loss": 4.901554107666016,
+ "step": 484
+ },
+ {
+ "epoch": 6.740934906072521,
+ "grad_norm": 0.16746895015239716,
+ "learning_rate": 0.0006,
+ "loss": 4.917915344238281,
+ "step": 485
+ },
+ {
+ "epoch": 6.754914809960681,
+ "grad_norm": 0.17066062986850739,
+ "learning_rate": 0.0006,
+ "loss": 4.912853240966797,
+ "step": 486
+ },
+ {
+ "epoch": 6.768894713848843,
+ "grad_norm": 0.16727769374847412,
+ "learning_rate": 0.0006,
+ "loss": 4.895434856414795,
+ "step": 487
+ },
+ {
+ "epoch": 6.782874617737003,
+ "grad_norm": 0.1784558743238449,
+ "learning_rate": 0.0006,
+ "loss": 4.8805341720581055,
+ "step": 488
+ },
+ {
+ "epoch": 6.796854521625164,
+ "grad_norm": 0.176686093211174,
+ "learning_rate": 0.0006,
+ "loss": 4.855296611785889,
+ "step": 489
+ },
+ {
+ "epoch": 6.810834425513325,
+ "grad_norm": 0.21577849984169006,
+ "learning_rate": 0.0006,
+ "loss": 4.885506629943848,
+ "step": 490
+ },
+ {
+ "epoch": 6.824814329401486,
+ "grad_norm": 0.27615776658058167,
+ "learning_rate": 0.0006,
+ "loss": 4.913756847381592,
+ "step": 491
+ },
+ {
+ "epoch": 6.838794233289646,
+ "grad_norm": 0.3653675615787506,
+ "learning_rate": 0.0006,
+ "loss": 4.880918979644775,
+ "step": 492
+ },
+ {
+ "epoch": 6.852774137177807,
+ "grad_norm": 0.41473883390426636,
+ "learning_rate": 0.0006,
+ "loss": 4.894164562225342,
+ "step": 493
+ },
+ {
+ "epoch": 6.866754041065968,
+ "grad_norm": 0.45850715041160583,
+ "learning_rate": 0.0006,
+ "loss": 4.907922744750977,
+ "step": 494
+ },
+ {
+ "epoch": 6.8807339449541285,
+ "grad_norm": 0.4675290882587433,
+ "learning_rate": 0.0006,
+ "loss": 4.883112907409668,
+ "step": 495
+ },
+ {
+ "epoch": 6.894713848842289,
+ "grad_norm": 0.45795994997024536,
+ "learning_rate": 0.0006,
+ "loss": 4.897843360900879,
+ "step": 496
+ },
+ {
+ "epoch": 6.90869375273045,
+ "grad_norm": 0.46130508184432983,
+ "learning_rate": 0.0006,
+ "loss": 4.890612602233887,
+ "step": 497
+ },
+ {
+ "epoch": 6.922673656618611,
+ "grad_norm": 0.44783803820610046,
+ "learning_rate": 0.0006,
+ "loss": 4.880192756652832,
+ "step": 498
+ },
+ {
+ "epoch": 6.936653560506771,
+ "grad_norm": 0.35361284017562866,
+ "learning_rate": 0.0006,
+ "loss": 4.840778350830078,
+ "step": 499
+ },
+ {
+ "epoch": 6.950633464394932,
+ "grad_norm": 0.34027689695358276,
+ "learning_rate": 0.0006,
+ "loss": 4.871222496032715,
+ "step": 500
+ },
+ {
+ "epoch": 6.964613368283093,
+ "grad_norm": 0.30228909850120544,
+ "learning_rate": 0.0006,
+ "loss": 4.868077278137207,
+ "step": 501
+ },
+ {
+ "epoch": 6.978593272171254,
+ "grad_norm": 0.27706998586654663,
+ "learning_rate": 0.0006,
+ "loss": 4.895936012268066,
+ "step": 502
+ },
+ {
+ "epoch": 6.992573176059414,
+ "grad_norm": 0.3516870439052582,
+ "learning_rate": 0.0006,
+ "loss": 4.824636459350586,
+ "step": 503
+ },
+ {
+ "epoch": 7.0,
+ "grad_norm": 0.36831387877464294,
+ "learning_rate": 0.0006,
+ "loss": 4.874397277832031,
+ "step": 504
+ },
+ {
+ "epoch": 7.0,
+ "eval_loss": 5.176281452178955,
+ "eval_runtime": 44.2386,
+ "eval_samples_per_second": 55.201,
+ "eval_steps_per_second": 3.459,
+ "step": 504
+ },
+ {
+ "epoch": 7.013979903888161,
+ "grad_norm": 0.4265240430831909,
+ "learning_rate": 0.0006,
+ "loss": 4.814333438873291,
+ "step": 505
+ },
+ {
+ "epoch": 7.0279598077763215,
+ "grad_norm": 0.5126975774765015,
+ "learning_rate": 0.0006,
+ "loss": 4.852343559265137,
+ "step": 506
+ },
+ {
+ "epoch": 7.041939711664482,
+ "grad_norm": 0.43080806732177734,
+ "learning_rate": 0.0006,
+ "loss": 4.843439102172852,
+ "step": 507
+ },
+ {
+ "epoch": 7.055919615552643,
+ "grad_norm": 0.43170198798179626,
+ "learning_rate": 0.0006,
+ "loss": 4.845984935760498,
+ "step": 508
+ },
+ {
+ "epoch": 7.069899519440804,
+ "grad_norm": 0.5640552043914795,
+ "learning_rate": 0.0006,
+ "loss": 4.840991973876953,
+ "step": 509
+ },
+ {
+ "epoch": 7.083879423328964,
+ "grad_norm": 0.540381133556366,
+ "learning_rate": 0.0006,
+ "loss": 4.801316738128662,
+ "step": 510
+ },
+ {
+ "epoch": 7.097859327217125,
+ "grad_norm": 0.5412097573280334,
+ "learning_rate": 0.0006,
+ "loss": 4.886598587036133,
+ "step": 511
+ },
+ {
+ "epoch": 7.111839231105286,
+ "grad_norm": 0.630648136138916,
+ "learning_rate": 0.0006,
+ "loss": 4.849774360656738,
+ "step": 512
+ },
+ {
+ "epoch": 7.1258191349934465,
+ "grad_norm": 0.569952130317688,
+ "learning_rate": 0.0006,
+ "loss": 4.870607376098633,
+ "step": 513
+ },
+ {
+ "epoch": 7.139799038881607,
+ "grad_norm": 0.42051541805267334,
+ "learning_rate": 0.0006,
+ "loss": 4.83833122253418,
+ "step": 514
+ },
+ {
+ "epoch": 7.153778942769769,
+ "grad_norm": 0.3930990397930145,
+ "learning_rate": 0.0006,
+ "loss": 4.853984355926514,
+ "step": 515
+ },
+ {
+ "epoch": 7.16775884665793,
+ "grad_norm": 0.512886106967926,
+ "learning_rate": 0.0006,
+ "loss": 4.815458297729492,
+ "step": 516
+ },
+ {
+ "epoch": 7.18173875054609,
+ "grad_norm": 0.42580172419548035,
+ "learning_rate": 0.0006,
+ "loss": 4.825312614440918,
+ "step": 517
+ },
+ {
+ "epoch": 7.195718654434251,
+ "grad_norm": 0.31628182530403137,
+ "learning_rate": 0.0006,
+ "loss": 4.806377410888672,
+ "step": 518
+ },
+ {
+ "epoch": 7.209698558322412,
+ "grad_norm": 0.3109956681728363,
+ "learning_rate": 0.0006,
+ "loss": 4.819339752197266,
+ "step": 519
+ },
+ {
+ "epoch": 7.2236784622105725,
+ "grad_norm": 0.2740071415901184,
+ "learning_rate": 0.0006,
+ "loss": 4.81319522857666,
+ "step": 520
+ },
+ {
+ "epoch": 7.237658366098733,
+ "grad_norm": 0.26441165804862976,
+ "learning_rate": 0.0006,
+ "loss": 4.8107380867004395,
+ "step": 521
+ },
+ {
+ "epoch": 7.251638269986894,
+ "grad_norm": 0.2496110051870346,
+ "learning_rate": 0.0006,
+ "loss": 4.785193920135498,
+ "step": 522
+ },
+ {
+ "epoch": 7.265618173875055,
+ "grad_norm": 0.2565560042858124,
+ "learning_rate": 0.0006,
+ "loss": 4.802750587463379,
+ "step": 523
+ },
+ {
+ "epoch": 7.279598077763215,
+ "grad_norm": 0.2126980572938919,
+ "learning_rate": 0.0006,
+ "loss": 4.763580322265625,
+ "step": 524
+ },
+ {
+ "epoch": 7.293577981651376,
+ "grad_norm": 0.2169921100139618,
+ "learning_rate": 0.0006,
+ "loss": 4.756124973297119,
+ "step": 525
+ },
+ {
+ "epoch": 7.307557885539537,
+ "grad_norm": 0.2372167706489563,
+ "learning_rate": 0.0006,
+ "loss": 4.786888599395752,
+ "step": 526
+ },
+ {
+ "epoch": 7.321537789427698,
+ "grad_norm": 0.2124386429786682,
+ "learning_rate": 0.0006,
+ "loss": 4.777996063232422,
+ "step": 527
+ },
+ {
+ "epoch": 7.335517693315858,
+ "grad_norm": 0.18585442006587982,
+ "learning_rate": 0.0006,
+ "loss": 4.770537853240967,
+ "step": 528
+ },
+ {
+ "epoch": 7.349497597204019,
+ "grad_norm": 0.20515340566635132,
+ "learning_rate": 0.0006,
+ "loss": 4.769230842590332,
+ "step": 529
+ },
+ {
+ "epoch": 7.36347750109218,
+ "grad_norm": 0.19906704127788544,
+ "learning_rate": 0.0006,
+ "loss": 4.752581596374512,
+ "step": 530
+ },
+ {
+ "epoch": 7.3774574049803405,
+ "grad_norm": 0.2030428946018219,
+ "learning_rate": 0.0006,
+ "loss": 4.7353715896606445,
+ "step": 531
+ },
+ {
+ "epoch": 7.391437308868501,
+ "grad_norm": 0.17820630967617035,
+ "learning_rate": 0.0006,
+ "loss": 4.742705345153809,
+ "step": 532
+ },
+ {
+ "epoch": 7.405417212756662,
+ "grad_norm": 0.17642682790756226,
+ "learning_rate": 0.0006,
+ "loss": 4.752669334411621,
+ "step": 533
+ },
+ {
+ "epoch": 7.419397116644823,
+ "grad_norm": 0.18088409304618835,
+ "learning_rate": 0.0006,
+ "loss": 4.734611511230469,
+ "step": 534
+ },
+ {
+ "epoch": 7.433377020532983,
+ "grad_norm": 0.20897020399570465,
+ "learning_rate": 0.0006,
+ "loss": 4.756442070007324,
+ "step": 535
+ },
+ {
+ "epoch": 7.447356924421145,
+ "grad_norm": 0.23166777193546295,
+ "learning_rate": 0.0006,
+ "loss": 4.712922096252441,
+ "step": 536
+ },
+ {
+ "epoch": 7.461336828309306,
+ "grad_norm": 0.2205347716808319,
+ "learning_rate": 0.0006,
+ "loss": 4.75001335144043,
+ "step": 537
+ },
+ {
+ "epoch": 7.4753167321974665,
+ "grad_norm": 0.23868022859096527,
+ "learning_rate": 0.0006,
+ "loss": 4.726134300231934,
+ "step": 538
+ },
+ {
+ "epoch": 7.489296636085627,
+ "grad_norm": 0.2861441373825073,
+ "learning_rate": 0.0006,
+ "loss": 4.754112243652344,
+ "step": 539
+ },
+ {
+ "epoch": 7.503276539973788,
+ "grad_norm": 0.28980305790901184,
+ "learning_rate": 0.0006,
+ "loss": 4.716021537780762,
+ "step": 540
+ },
+ {
+ "epoch": 7.517256443861949,
+ "grad_norm": 0.2784835696220398,
+ "learning_rate": 0.0006,
+ "loss": 4.713929176330566,
+ "step": 541
+ },
+ {
+ "epoch": 7.531236347750109,
+ "grad_norm": 0.2962653934955597,
+ "learning_rate": 0.0006,
+ "loss": 4.711845397949219,
+ "step": 542
+ },
+ {
+ "epoch": 7.54521625163827,
+ "grad_norm": 0.3333161175251007,
+ "learning_rate": 0.0006,
+ "loss": 4.709834575653076,
+ "step": 543
+ },
+ {
+ "epoch": 7.559196155526431,
+ "grad_norm": 0.35304850339889526,
+ "learning_rate": 0.0006,
+ "loss": 4.732914924621582,
+ "step": 544
+ },
+ {
+ "epoch": 7.573176059414592,
+ "grad_norm": 0.4165869355201721,
+ "learning_rate": 0.0006,
+ "loss": 4.716190338134766,
+ "step": 545
+ },
+ {
+ "epoch": 7.587155963302752,
+ "grad_norm": 0.4878059923648834,
+ "learning_rate": 0.0006,
+ "loss": 4.723773002624512,
+ "step": 546
+ },
+ {
+ "epoch": 7.601135867190913,
+ "grad_norm": 0.36643707752227783,
+ "learning_rate": 0.0006,
+ "loss": 4.721458911895752,
+ "step": 547
+ },
+ {
+ "epoch": 7.615115771079074,
+ "grad_norm": 0.4046908915042877,
+ "learning_rate": 0.0006,
+ "loss": 4.715397834777832,
+ "step": 548
+ },
+ {
+ "epoch": 7.6290956749672345,
+ "grad_norm": 0.44426342844963074,
+ "learning_rate": 0.0006,
+ "loss": 4.737357139587402,
+ "step": 549
+ },
+ {
+ "epoch": 7.643075578855395,
+ "grad_norm": 0.4181079864501953,
+ "learning_rate": 0.0006,
+ "loss": 4.731383800506592,
+ "step": 550
+ },
+ {
+ "epoch": 7.657055482743556,
+ "grad_norm": 0.3486088216304779,
+ "learning_rate": 0.0006,
+ "loss": 4.728029727935791,
+ "step": 551
+ },
+ {
+ "epoch": 7.671035386631717,
+ "grad_norm": 0.37150970101356506,
+ "learning_rate": 0.0006,
+ "loss": 4.7083210945129395,
+ "step": 552
+ },
+ {
+ "epoch": 7.685015290519877,
+ "grad_norm": 0.43324410915374756,
+ "learning_rate": 0.0006,
+ "loss": 4.728720664978027,
+ "step": 553
+ },
+ {
+ "epoch": 7.698995194408038,
+ "grad_norm": 0.5026620626449585,
+ "learning_rate": 0.0006,
+ "loss": 4.698156356811523,
+ "step": 554
+ },
+ {
+ "epoch": 7.712975098296199,
+ "grad_norm": 0.4873499274253845,
+ "learning_rate": 0.0006,
+ "loss": 4.7169952392578125,
+ "step": 555
+ },
+ {
+ "epoch": 7.72695500218436,
+ "grad_norm": 0.4285493791103363,
+ "learning_rate": 0.0006,
+ "loss": 4.6877241134643555,
+ "step": 556
+ },
+ {
+ "epoch": 7.740934906072521,
+ "grad_norm": 0.5179854035377502,
+ "learning_rate": 0.0006,
+ "loss": 4.704267501831055,
+ "step": 557
+ },
+ {
+ "epoch": 7.754914809960681,
+ "grad_norm": 0.4642147421836853,
+ "learning_rate": 0.0006,
+ "loss": 4.695004463195801,
+ "step": 558
+ },
+ {
+ "epoch": 7.768894713848843,
+ "grad_norm": 0.47149503231048584,
+ "learning_rate": 0.0006,
+ "loss": 4.694338798522949,
+ "step": 559
+ },
+ {
+ "epoch": 7.782874617737003,
+ "grad_norm": 0.5422149300575256,
+ "learning_rate": 0.0006,
+ "loss": 4.749478340148926,
+ "step": 560
+ },
+ {
+ "epoch": 7.796854521625164,
+ "grad_norm": 0.4360728859901428,
+ "learning_rate": 0.0006,
+ "loss": 4.685191631317139,
+ "step": 561
+ },
+ {
+ "epoch": 7.810834425513325,
+ "grad_norm": 0.4243801534175873,
+ "learning_rate": 0.0006,
+ "loss": 4.69228458404541,
+ "step": 562
+ },
+ {
+ "epoch": 7.824814329401486,
+ "grad_norm": 0.40380290150642395,
+ "learning_rate": 0.0006,
+ "loss": 4.690923690795898,
+ "step": 563
+ },
+ {
+ "epoch": 7.838794233289646,
+ "grad_norm": 0.4352976381778717,
+ "learning_rate": 0.0006,
+ "loss": 4.720489978790283,
+ "step": 564
+ },
+ {
+ "epoch": 7.852774137177807,
+ "grad_norm": 0.44634920358657837,
+ "learning_rate": 0.0006,
+ "loss": 4.683789253234863,
+ "step": 565
+ },
+ {
+ "epoch": 7.866754041065968,
+ "grad_norm": 0.3818186819553375,
+ "learning_rate": 0.0006,
+ "loss": 4.696887016296387,
+ "step": 566
+ },
+ {
+ "epoch": 7.8807339449541285,
+ "grad_norm": 0.35270464420318604,
+ "learning_rate": 0.0006,
+ "loss": 4.715676307678223,
+ "step": 567
+ },
+ {
+ "epoch": 7.894713848842289,
+ "grad_norm": 0.249756321310997,
+ "learning_rate": 0.0006,
+ "loss": 4.672721862792969,
+ "step": 568
+ },
+ {
+ "epoch": 7.90869375273045,
+ "grad_norm": 0.25097888708114624,
+ "learning_rate": 0.0006,
+ "loss": 4.663518905639648,
+ "step": 569
+ },
+ {
+ "epoch": 7.922673656618611,
+ "grad_norm": 0.26563209295272827,
+ "learning_rate": 0.0006,
+ "loss": 4.675405025482178,
+ "step": 570
+ },
+ {
+ "epoch": 7.936653560506771,
+ "grad_norm": 0.26451292634010315,
+ "learning_rate": 0.0006,
+ "loss": 4.651235103607178,
+ "step": 571
+ },
+ {
+ "epoch": 7.950633464394932,
+ "grad_norm": 0.24185842275619507,
+ "learning_rate": 0.0006,
+ "loss": 4.671639919281006,
+ "step": 572
+ },
+ {
+ "epoch": 7.964613368283093,
+ "grad_norm": 0.21506108343601227,
+ "learning_rate": 0.0006,
+ "loss": 4.665352821350098,
+ "step": 573
+ },
+ {
+ "epoch": 7.978593272171254,
+ "grad_norm": 0.24365705251693726,
+ "learning_rate": 0.0006,
+ "loss": 4.663162708282471,
+ "step": 574
+ },
+ {
+ "epoch": 7.992573176059414,
+ "grad_norm": 0.24251042306423187,
+ "learning_rate": 0.0006,
+ "loss": 4.666633605957031,
+ "step": 575
+ },
+ {
+ "epoch": 8.0,
+ "grad_norm": 0.24187657237052917,
+ "learning_rate": 0.0006,
+ "loss": 4.63957405090332,
+ "step": 576
+ },
+ {
+ "epoch": 8.0,
+ "eval_loss": 4.923156261444092,
+ "eval_runtime": 44.1587,
+ "eval_samples_per_second": 55.301,
+ "eval_steps_per_second": 3.465,
+ "step": 576
+ },
+ {
+ "epoch": 8.013979903888162,
+ "grad_norm": 0.21323645114898682,
+ "learning_rate": 0.0006,
+ "loss": 4.636347770690918,
+ "step": 577
+ },
+ {
+ "epoch": 8.027959807776321,
+ "grad_norm": 0.2325759083032608,
+ "learning_rate": 0.0006,
+ "loss": 4.60684871673584,
+ "step": 578
+ },
+ {
+ "epoch": 8.041939711664483,
+ "grad_norm": 0.26741257309913635,
+ "learning_rate": 0.0006,
+ "loss": 4.647780418395996,
+ "step": 579
+ },
+ {
+ "epoch": 8.055919615552643,
+ "grad_norm": 0.285720556974411,
+ "learning_rate": 0.0006,
+ "loss": 4.629637718200684,
+ "step": 580
+ },
+ {
+ "epoch": 8.069899519440805,
+ "grad_norm": 0.2453618347644806,
+ "learning_rate": 0.0006,
+ "loss": 4.62420654296875,
+ "step": 581
+ },
+ {
+ "epoch": 8.083879423328964,
+ "grad_norm": 0.19662636518478394,
+ "learning_rate": 0.0006,
+ "loss": 4.593767166137695,
+ "step": 582
+ },
+ {
+ "epoch": 8.097859327217126,
+ "grad_norm": 0.22731931507587433,
+ "learning_rate": 0.0006,
+ "loss": 4.627089023590088,
+ "step": 583
+ },
+ {
+ "epoch": 8.111839231105286,
+ "grad_norm": 0.24452590942382812,
+ "learning_rate": 0.0006,
+ "loss": 4.613677024841309,
+ "step": 584
+ },
+ {
+ "epoch": 8.125819134993447,
+ "grad_norm": 0.2952791154384613,
+ "learning_rate": 0.0006,
+ "loss": 4.604985237121582,
+ "step": 585
+ },
+ {
+ "epoch": 8.139799038881607,
+ "grad_norm": 0.3184696137905121,
+ "learning_rate": 0.0006,
+ "loss": 4.589205741882324,
+ "step": 586
+ },
+ {
+ "epoch": 8.153778942769769,
+ "grad_norm": 0.2948093116283417,
+ "learning_rate": 0.0006,
+ "loss": 4.605442047119141,
+ "step": 587
+ },
+ {
+ "epoch": 8.167758846657929,
+ "grad_norm": 0.2450508326292038,
+ "learning_rate": 0.0006,
+ "loss": 4.615349292755127,
+ "step": 588
+ },
+ {
+ "epoch": 8.18173875054609,
+ "grad_norm": 0.25664836168289185,
+ "learning_rate": 0.0006,
+ "loss": 4.592251777648926,
+ "step": 589
+ },
+ {
+ "epoch": 8.19571865443425,
+ "grad_norm": 0.24479512870311737,
+ "learning_rate": 0.0006,
+ "loss": 4.6145920753479,
+ "step": 590
+ },
+ {
+ "epoch": 8.209698558322412,
+ "grad_norm": 0.24395205080509186,
+ "learning_rate": 0.0006,
+ "loss": 4.600954055786133,
+ "step": 591
+ },
+ {
+ "epoch": 8.223678462210572,
+ "grad_norm": 0.21804189682006836,
+ "learning_rate": 0.0006,
+ "loss": 4.607785224914551,
+ "step": 592
+ },
+ {
+ "epoch": 8.237658366098733,
+ "grad_norm": 0.20951785147190094,
+ "learning_rate": 0.0006,
+ "loss": 4.58140754699707,
+ "step": 593
+ },
+ {
+ "epoch": 8.251638269986893,
+ "grad_norm": 0.20415149629116058,
+ "learning_rate": 0.0006,
+ "loss": 4.593405723571777,
+ "step": 594
+ },
+ {
+ "epoch": 8.265618173875055,
+ "grad_norm": 0.19210249185562134,
+ "learning_rate": 0.0006,
+ "loss": 4.603294372558594,
+ "step": 595
+ },
+ {
+ "epoch": 8.279598077763215,
+ "grad_norm": 0.20719751715660095,
+ "learning_rate": 0.0006,
+ "loss": 4.55255651473999,
+ "step": 596
+ },
+ {
+ "epoch": 8.293577981651376,
+ "grad_norm": 0.20101022720336914,
+ "learning_rate": 0.0006,
+ "loss": 4.5928192138671875,
+ "step": 597
+ },
+ {
+ "epoch": 8.307557885539538,
+ "grad_norm": 0.19254222512245178,
+ "learning_rate": 0.0006,
+ "loss": 4.590397834777832,
+ "step": 598
+ },
+ {
+ "epoch": 8.321537789427698,
+ "grad_norm": 0.23234105110168457,
+ "learning_rate": 0.0006,
+ "loss": 4.5987677574157715,
+ "step": 599
+ },
+ {
+ "epoch": 8.33551769331586,
+ "grad_norm": 0.2537451982498169,
+ "learning_rate": 0.0006,
+ "loss": 4.543115615844727,
+ "step": 600
+ },
+ {
+ "epoch": 8.349497597204019,
+ "grad_norm": 0.29171040654182434,
+ "learning_rate": 0.0006,
+ "loss": 4.597387313842773,
+ "step": 601
+ },
+ {
+ "epoch": 8.36347750109218,
+ "grad_norm": 0.3035930097103119,
+ "learning_rate": 0.0006,
+ "loss": 4.566247463226318,
+ "step": 602
+ },
+ {
+ "epoch": 8.37745740498034,
+ "grad_norm": 0.2826756238937378,
+ "learning_rate": 0.0006,
+ "loss": 4.57047176361084,
+ "step": 603
+ },
+ {
+ "epoch": 8.391437308868502,
+ "grad_norm": 0.2959657609462738,
+ "learning_rate": 0.0006,
+ "loss": 4.582820892333984,
+ "step": 604
+ },
+ {
+ "epoch": 8.405417212756662,
+ "grad_norm": 0.3180356025695801,
+ "learning_rate": 0.0006,
+ "loss": 4.5573272705078125,
+ "step": 605
+ },
+ {
+ "epoch": 8.419397116644824,
+ "grad_norm": 0.3617221713066101,
+ "learning_rate": 0.0006,
+ "loss": 4.593079090118408,
+ "step": 606
+ },
+ {
+ "epoch": 8.433377020532983,
+ "grad_norm": 0.35198062658309937,
+ "learning_rate": 0.0006,
+ "loss": 4.615298271179199,
+ "step": 607
+ },
+ {
+ "epoch": 8.447356924421145,
+ "grad_norm": 0.3944903314113617,
+ "learning_rate": 0.0006,
+ "loss": 4.561809539794922,
+ "step": 608
+ },
+ {
+ "epoch": 8.461336828309305,
+ "grad_norm": 0.4525868594646454,
+ "learning_rate": 0.0006,
+ "loss": 4.613105773925781,
+ "step": 609
+ },
+ {
+ "epoch": 8.475316732197467,
+ "grad_norm": 0.4915139079093933,
+ "learning_rate": 0.0006,
+ "loss": 4.566202163696289,
+ "step": 610
+ },
+ {
+ "epoch": 8.489296636085626,
+ "grad_norm": 0.49231988191604614,
+ "learning_rate": 0.0006,
+ "loss": 4.556222915649414,
+ "step": 611
+ },
+ {
+ "epoch": 8.503276539973788,
+ "grad_norm": 0.43036946654319763,
+ "learning_rate": 0.0006,
+ "loss": 4.55517578125,
+ "step": 612
+ },
+ {
+ "epoch": 8.517256443861948,
+ "grad_norm": 0.42405328154563904,
+ "learning_rate": 0.0006,
+ "loss": 4.574039936065674,
+ "step": 613
+ },
+ {
+ "epoch": 8.53123634775011,
+ "grad_norm": 0.3955961763858795,
+ "learning_rate": 0.0006,
+ "loss": 4.6082611083984375,
+ "step": 614
+ },
+ {
+ "epoch": 8.54521625163827,
+ "grad_norm": 0.4377101957798004,
+ "learning_rate": 0.0006,
+ "loss": 4.555740833282471,
+ "step": 615
+ },
+ {
+ "epoch": 8.55919615552643,
+ "grad_norm": 0.4601984918117523,
+ "learning_rate": 0.0006,
+ "loss": 4.553995132446289,
+ "step": 616
+ },
+ {
+ "epoch": 8.57317605941459,
+ "grad_norm": 0.42025700211524963,
+ "learning_rate": 0.0006,
+ "loss": 4.567340850830078,
+ "step": 617
+ },
+ {
+ "epoch": 8.587155963302752,
+ "grad_norm": 0.35569432377815247,
+ "learning_rate": 0.0006,
+ "loss": 4.570140361785889,
+ "step": 618
+ },
+ {
+ "epoch": 8.601135867190912,
+ "grad_norm": 0.37940406799316406,
+ "learning_rate": 0.0006,
+ "loss": 4.581291198730469,
+ "step": 619
+ },
+ {
+ "epoch": 8.615115771079074,
+ "grad_norm": 0.3658490777015686,
+ "learning_rate": 0.0006,
+ "loss": 4.55476188659668,
+ "step": 620
+ },
+ {
+ "epoch": 8.629095674967235,
+ "grad_norm": 0.2908247113227844,
+ "learning_rate": 0.0006,
+ "loss": 4.564087867736816,
+ "step": 621
+ },
+ {
+ "epoch": 8.643075578855395,
+ "grad_norm": 0.29961925745010376,
+ "learning_rate": 0.0006,
+ "loss": 4.556543350219727,
+ "step": 622
+ },
+ {
+ "epoch": 8.657055482743557,
+ "grad_norm": 0.3144846558570862,
+ "learning_rate": 0.0006,
+ "loss": 4.553670883178711,
+ "step": 623
+ },
+ {
+ "epoch": 8.671035386631717,
+ "grad_norm": 0.2845900356769562,
+ "learning_rate": 0.0006,
+ "loss": 4.567296981811523,
+ "step": 624
+ },
+ {
+ "epoch": 8.685015290519878,
+ "grad_norm": 0.253591388463974,
+ "learning_rate": 0.0006,
+ "loss": 4.554507255554199,
+ "step": 625
+ },
+ {
+ "epoch": 8.698995194408038,
+ "grad_norm": 0.2563088536262512,
+ "learning_rate": 0.0006,
+ "loss": 4.542218208312988,
+ "step": 626
+ },
+ {
+ "epoch": 8.7129750982962,
+ "grad_norm": 0.26058217883110046,
+ "learning_rate": 0.0006,
+ "loss": 4.535512447357178,
+ "step": 627
+ },
+ {
+ "epoch": 8.72695500218436,
+ "grad_norm": 0.20749829709529877,
+ "learning_rate": 0.0006,
+ "loss": 4.516959190368652,
+ "step": 628
+ },
+ {
+ "epoch": 8.740934906072521,
+ "grad_norm": 0.2034810334444046,
+ "learning_rate": 0.0006,
+ "loss": 4.55794095993042,
+ "step": 629
+ },
+ {
+ "epoch": 8.754914809960681,
+ "grad_norm": 0.18418121337890625,
+ "learning_rate": 0.0006,
+ "loss": 4.5421247482299805,
+ "step": 630
+ },
+ {
+ "epoch": 8.768894713848843,
+ "grad_norm": 0.20551933348178864,
+ "learning_rate": 0.0006,
+ "loss": 4.50805139541626,
+ "step": 631
+ },
+ {
+ "epoch": 8.782874617737003,
+ "grad_norm": 0.21615999937057495,
+ "learning_rate": 0.0006,
+ "loss": 4.520708084106445,
+ "step": 632
+ },
+ {
+ "epoch": 8.796854521625164,
+ "grad_norm": 0.24864810705184937,
+ "learning_rate": 0.0006,
+ "loss": 4.509330749511719,
+ "step": 633
+ },
+ {
+ "epoch": 8.810834425513324,
+ "grad_norm": 0.2573665380477905,
+ "learning_rate": 0.0006,
+ "loss": 4.531505584716797,
+ "step": 634
+ },
+ {
+ "epoch": 8.824814329401486,
+ "grad_norm": 0.22452878952026367,
+ "learning_rate": 0.0006,
+ "loss": 4.529216289520264,
+ "step": 635
+ },
+ {
+ "epoch": 8.838794233289645,
+ "grad_norm": 0.19727355241775513,
+ "learning_rate": 0.0006,
+ "loss": 4.519906520843506,
+ "step": 636
+ },
+ {
+ "epoch": 8.852774137177807,
+ "grad_norm": 0.19937913119792938,
+ "learning_rate": 0.0006,
+ "loss": 4.536892414093018,
+ "step": 637
+ },
+ {
+ "epoch": 8.866754041065967,
+ "grad_norm": 0.2070389986038208,
+ "learning_rate": 0.0006,
+ "loss": 4.51191520690918,
+ "step": 638
+ },
+ {
+ "epoch": 8.880733944954128,
+ "grad_norm": 0.2293873429298401,
+ "learning_rate": 0.0006,
+ "loss": 4.505377769470215,
+ "step": 639
+ },
+ {
+ "epoch": 8.89471384884229,
+ "grad_norm": 0.21285250782966614,
+ "learning_rate": 0.0006,
+ "loss": 4.5138959884643555,
+ "step": 640
+ },
+ {
+ "epoch": 8.90869375273045,
+ "grad_norm": 0.19487562775611877,
+ "learning_rate": 0.0006,
+ "loss": 4.506108283996582,
+ "step": 641
+ },
+ {
+ "epoch": 8.922673656618612,
+ "grad_norm": 0.21986965835094452,
+ "learning_rate": 0.0006,
+ "loss": 4.506397247314453,
+ "step": 642
+ },
+ {
+ "epoch": 8.936653560506771,
+ "grad_norm": 0.20763885974884033,
+ "learning_rate": 0.0006,
+ "loss": 4.508007049560547,
+ "step": 643
+ },
+ {
+ "epoch": 8.950633464394933,
+ "grad_norm": 0.22858479619026184,
+ "learning_rate": 0.0006,
+ "loss": 4.520846366882324,
+ "step": 644
+ },
+ {
+ "epoch": 8.964613368283093,
+ "grad_norm": 0.23923712968826294,
+ "learning_rate": 0.0006,
+ "loss": 4.535306930541992,
+ "step": 645
+ },
+ {
+ "epoch": 8.978593272171254,
+ "grad_norm": 0.23717579245567322,
+ "learning_rate": 0.0006,
+ "loss": 4.485929489135742,
+ "step": 646
+ },
+ {
+ "epoch": 8.992573176059414,
+ "grad_norm": 0.24033977091312408,
+ "learning_rate": 0.0006,
+ "loss": 4.508999824523926,
+ "step": 647
+ },
+ {
+ "epoch": 9.0,
+ "grad_norm": 0.22432062029838562,
+ "learning_rate": 0.0006,
+ "loss": 4.473136901855469,
+ "step": 648
+ },
+ {
+ "epoch": 9.0,
+ "eval_loss": 4.735903263092041,
+ "eval_runtime": 44.2163,
+ "eval_samples_per_second": 55.228,
+ "eval_steps_per_second": 3.46,
+ "step": 648
+ },
+ {
+ "epoch": 9.013979903888162,
+ "grad_norm": 0.22491489350795746,
+ "learning_rate": 0.0006,
+ "loss": 4.468614101409912,
+ "step": 649
+ },
+ {
+ "epoch": 9.027959807776321,
+ "grad_norm": 0.255759060382843,
+ "learning_rate": 0.0006,
+ "loss": 4.516196250915527,
+ "step": 650
+ },
+ {
+ "epoch": 9.041939711664483,
+ "grad_norm": 0.2591100335121155,
+ "learning_rate": 0.0006,
+ "loss": 4.478276252746582,
+ "step": 651
+ },
+ {
+ "epoch": 9.055919615552643,
+ "grad_norm": 0.30472296476364136,
+ "learning_rate": 0.0006,
+ "loss": 4.479726791381836,
+ "step": 652
+ },
+ {
+ "epoch": 9.069899519440805,
+ "grad_norm": 0.2840559780597687,
+ "learning_rate": 0.0006,
+ "loss": 4.4437384605407715,
+ "step": 653
+ },
+ {
+ "epoch": 9.083879423328964,
+ "grad_norm": 0.2695577144622803,
+ "learning_rate": 0.0006,
+ "loss": 4.476065635681152,
+ "step": 654
+ },
+ {
+ "epoch": 9.097859327217126,
+ "grad_norm": 0.27912381291389465,
+ "learning_rate": 0.0006,
+ "loss": 4.484747409820557,
+ "step": 655
+ },
+ {
+ "epoch": 9.111839231105286,
+ "grad_norm": 0.3091907501220703,
+ "learning_rate": 0.0006,
+ "loss": 4.449443817138672,
+ "step": 656
+ },
+ {
+ "epoch": 9.125819134993447,
+ "grad_norm": 0.30756646394729614,
+ "learning_rate": 0.0006,
+ "loss": 4.496490001678467,
+ "step": 657
+ },
+ {
+ "epoch": 9.139799038881607,
+ "grad_norm": 0.305698037147522,
+ "learning_rate": 0.0006,
+ "loss": 4.466765880584717,
+ "step": 658
+ },
+ {
+ "epoch": 9.153778942769769,
+ "grad_norm": 0.3031201660633087,
+ "learning_rate": 0.0006,
+ "loss": 4.462430953979492,
+ "step": 659
+ },
+ {
+ "epoch": 9.167758846657929,
+ "grad_norm": 0.32725608348846436,
+ "learning_rate": 0.0006,
+ "loss": 4.479879379272461,
+ "step": 660
+ },
+ {
+ "epoch": 9.18173875054609,
+ "grad_norm": 0.31773585081100464,
+ "learning_rate": 0.0006,
+ "loss": 4.473912239074707,
+ "step": 661
+ },
+ {
+ "epoch": 9.19571865443425,
+ "grad_norm": 0.30025365948677063,
+ "learning_rate": 0.0006,
+ "loss": 4.476703643798828,
+ "step": 662
+ },
+ {
+ "epoch": 9.209698558322412,
+ "grad_norm": 0.3177371025085449,
+ "learning_rate": 0.0006,
+ "loss": 4.439765930175781,
+ "step": 663
+ },
+ {
+ "epoch": 9.223678462210572,
+ "grad_norm": 0.3060745894908905,
+ "learning_rate": 0.0006,
+ "loss": 4.487849235534668,
+ "step": 664
+ },
+ {
+ "epoch": 9.237658366098733,
+ "grad_norm": 0.33287373185157776,
+ "learning_rate": 0.0006,
+ "loss": 4.443496227264404,
+ "step": 665
+ },
+ {
+ "epoch": 9.251638269986893,
+ "grad_norm": 0.3758000433444977,
+ "learning_rate": 0.0006,
+ "loss": 4.478017330169678,
+ "step": 666
+ },
+ {
+ "epoch": 9.265618173875055,
+ "grad_norm": 0.32124510407447815,
+ "learning_rate": 0.0006,
+ "loss": 4.4092206954956055,
+ "step": 667
+ },
+ {
+ "epoch": 9.279598077763215,
+ "grad_norm": 0.2786794602870941,
+ "learning_rate": 0.0006,
+ "loss": 4.432734489440918,
+ "step": 668
+ },
+ {
+ "epoch": 9.293577981651376,
+ "grad_norm": 0.35042962431907654,
+ "learning_rate": 0.0006,
+ "loss": 4.462737083435059,
+ "step": 669
+ },
+ {
+ "epoch": 9.307557885539538,
+ "grad_norm": 0.4080469310283661,
+ "learning_rate": 0.0006,
+ "loss": 4.429462432861328,
+ "step": 670
+ },
+ {
+ "epoch": 9.321537789427698,
+ "grad_norm": 0.465158075094223,
+ "learning_rate": 0.0006,
+ "loss": 4.465776443481445,
+ "step": 671
+ },
+ {
+ "epoch": 9.33551769331586,
+ "grad_norm": 0.44833582639694214,
+ "learning_rate": 0.0006,
+ "loss": 4.454195976257324,
+ "step": 672
+ },
+ {
+ "epoch": 9.349497597204019,
+ "grad_norm": 0.451052188873291,
+ "learning_rate": 0.0006,
+ "loss": 4.456139087677002,
+ "step": 673
+ },
+ {
+ "epoch": 9.36347750109218,
+ "grad_norm": 0.3759656250476837,
+ "learning_rate": 0.0006,
+ "loss": 4.461119651794434,
+ "step": 674
+ },
+ {
+ "epoch": 9.37745740498034,
+ "grad_norm": 0.514560341835022,
+ "learning_rate": 0.0006,
+ "loss": 4.49595832824707,
+ "step": 675
+ },
+ {
+ "epoch": 9.391437308868502,
+ "grad_norm": 0.5650647282600403,
+ "learning_rate": 0.0006,
+ "loss": 4.461362838745117,
+ "step": 676
+ },
+ {
+ "epoch": 9.405417212756662,
+ "grad_norm": 0.4218835234642029,
+ "learning_rate": 0.0006,
+ "loss": 4.469146728515625,
+ "step": 677
+ },
+ {
+ "epoch": 9.419397116644824,
+ "grad_norm": 0.4169512689113617,
+ "learning_rate": 0.0006,
+ "loss": 4.470132827758789,
+ "step": 678
+ },
+ {
+ "epoch": 9.433377020532983,
+ "grad_norm": 0.3772219717502594,
+ "learning_rate": 0.0006,
+ "loss": 4.4742608070373535,
+ "step": 679
+ },
+ {
+ "epoch": 9.447356924421145,
+ "grad_norm": 0.35755908489227295,
+ "learning_rate": 0.0006,
+ "loss": 4.461928367614746,
+ "step": 680
+ },
+ {
+ "epoch": 9.461336828309305,
+ "grad_norm": 0.3141227662563324,
+ "learning_rate": 0.0006,
+ "loss": 4.491983413696289,
+ "step": 681
+ },
+ {
+ "epoch": 9.475316732197467,
+ "grad_norm": 0.282461017370224,
+ "learning_rate": 0.0006,
+ "loss": 4.460200309753418,
+ "step": 682
+ },
+ {
+ "epoch": 9.489296636085626,
+ "grad_norm": 0.27174389362335205,
+ "learning_rate": 0.0006,
+ "loss": 4.416125297546387,
+ "step": 683
+ },
+ {
+ "epoch": 9.503276539973788,
+ "grad_norm": 0.24570637941360474,
+ "learning_rate": 0.0006,
+ "loss": 4.4451093673706055,
+ "step": 684
+ },
+ {
+ "epoch": 9.517256443861948,
+ "grad_norm": 0.2741486132144928,
+ "learning_rate": 0.0006,
+ "loss": 4.453263282775879,
+ "step": 685
+ },
+ {
+ "epoch": 9.53123634775011,
+ "grad_norm": 0.24753718078136444,
+ "learning_rate": 0.0006,
+ "loss": 4.483033180236816,
+ "step": 686
+ },
+ {
+ "epoch": 9.54521625163827,
+ "grad_norm": 0.24288412928581238,
+ "learning_rate": 0.0006,
+ "loss": 4.452961444854736,
+ "step": 687
+ },
+ {
+ "epoch": 9.55919615552643,
+ "grad_norm": 0.21554753184318542,
+ "learning_rate": 0.0006,
+ "loss": 4.476005554199219,
+ "step": 688
+ },
+ {
+ "epoch": 9.57317605941459,
+ "grad_norm": 0.22775942087173462,
+ "learning_rate": 0.0006,
+ "loss": 4.4479193687438965,
+ "step": 689
+ },
+ {
+ "epoch": 9.587155963302752,
+ "grad_norm": 0.2610701024532318,
+ "learning_rate": 0.0006,
+ "loss": 4.474987506866455,
+ "step": 690
+ },
+ {
+ "epoch": 9.601135867190912,
+ "grad_norm": 0.2394690215587616,
+ "learning_rate": 0.0006,
+ "loss": 4.444857597351074,
+ "step": 691
+ },
+ {
+ "epoch": 9.615115771079074,
+ "grad_norm": 0.20868559181690216,
+ "learning_rate": 0.0006,
+ "loss": 4.4220709800720215,
+ "step": 692
+ },
+ {
+ "epoch": 9.629095674967235,
+ "grad_norm": 0.21869882941246033,
+ "learning_rate": 0.0006,
+ "loss": 4.451737403869629,
+ "step": 693
+ },
+ {
+ "epoch": 9.643075578855395,
+ "grad_norm": 0.1802823394536972,
+ "learning_rate": 0.0006,
+ "loss": 4.409085273742676,
+ "step": 694
+ },
+ {
+ "epoch": 9.657055482743557,
+ "grad_norm": 0.17046281695365906,
+ "learning_rate": 0.0006,
+ "loss": 4.424643516540527,
+ "step": 695
+ },
+ {
+ "epoch": 9.671035386631717,
+ "grad_norm": 0.19561922550201416,
+ "learning_rate": 0.0006,
+ "loss": 4.412302017211914,
+ "step": 696
+ },
+ {
+ "epoch": 9.685015290519878,
+ "grad_norm": 0.21928799152374268,
+ "learning_rate": 0.0006,
+ "loss": 4.427582263946533,
+ "step": 697
+ },
+ {
+ "epoch": 9.698995194408038,
+ "grad_norm": 0.244873046875,
+ "learning_rate": 0.0006,
+ "loss": 4.431827545166016,
+ "step": 698
+ },
+ {
+ "epoch": 9.7129750982962,
+ "grad_norm": 0.2799488604068756,
+ "learning_rate": 0.0006,
+ "loss": 4.407991409301758,
+ "step": 699
+ },
+ {
+ "epoch": 9.72695500218436,
+ "grad_norm": 0.2699538767337799,
+ "learning_rate": 0.0006,
+ "loss": 4.412313461303711,
+ "step": 700
+ },
+ {
+ "epoch": 9.740934906072521,
+ "grad_norm": 0.22293835878372192,
+ "learning_rate": 0.0006,
+ "loss": 4.423369884490967,
+ "step": 701
+ },
+ {
+ "epoch": 9.754914809960681,
+ "grad_norm": 0.21554361283779144,
+ "learning_rate": 0.0006,
+ "loss": 4.42026948928833,
+ "step": 702
+ },
+ {
+ "epoch": 9.768894713848843,
+ "grad_norm": 0.22135840356349945,
+ "learning_rate": 0.0006,
+ "loss": 4.400010108947754,
+ "step": 703
+ },
+ {
+ "epoch": 9.782874617737003,
+ "grad_norm": 0.2169952541589737,
+ "learning_rate": 0.0006,
+ "loss": 4.394582271575928,
+ "step": 704
+ },
+ {
+ "epoch": 9.796854521625164,
+ "grad_norm": 0.18913042545318604,
+ "learning_rate": 0.0006,
+ "loss": 4.395880699157715,
+ "step": 705
+ },
+ {
+ "epoch": 9.810834425513324,
+ "grad_norm": 0.191524475812912,
+ "learning_rate": 0.0006,
+ "loss": 4.378962516784668,
+ "step": 706
+ },
+ {
+ "epoch": 9.824814329401486,
+ "grad_norm": 0.20057640969753265,
+ "learning_rate": 0.0006,
+ "loss": 4.431066513061523,
+ "step": 707
+ },
+ {
+ "epoch": 9.838794233289645,
+ "grad_norm": 0.21670377254486084,
+ "learning_rate": 0.0006,
+ "loss": 4.364682197570801,
+ "step": 708
+ },
+ {
+ "epoch": 9.852774137177807,
+ "grad_norm": 0.21653099358081818,
+ "learning_rate": 0.0006,
+ "loss": 4.4050445556640625,
+ "step": 709
+ },
+ {
+ "epoch": 9.866754041065967,
+ "grad_norm": 0.2217673808336258,
+ "learning_rate": 0.0006,
+ "loss": 4.423664093017578,
+ "step": 710
+ },
+ {
+ "epoch": 9.880733944954128,
+ "grad_norm": 0.251078337430954,
+ "learning_rate": 0.0006,
+ "loss": 4.405768394470215,
+ "step": 711
+ },
+ {
+ "epoch": 9.89471384884229,
+ "grad_norm": 0.28962627053260803,
+ "learning_rate": 0.0006,
+ "loss": 4.421207427978516,
+ "step": 712
+ },
+ {
+ "epoch": 9.90869375273045,
+ "grad_norm": 0.3478074371814728,
+ "learning_rate": 0.0006,
+ "loss": 4.414942741394043,
+ "step": 713
+ },
+ {
+ "epoch": 9.922673656618612,
+ "grad_norm": 0.40396368503570557,
+ "learning_rate": 0.0006,
+ "loss": 4.415163993835449,
+ "step": 714
+ },
+ {
+ "epoch": 9.936653560506771,
+ "grad_norm": 0.3689858019351959,
+ "learning_rate": 0.0006,
+ "loss": 4.381345272064209,
+ "step": 715
+ },
+ {
+ "epoch": 9.950633464394933,
+ "grad_norm": 0.344868004322052,
+ "learning_rate": 0.0006,
+ "loss": 4.433088302612305,
+ "step": 716
+ },
+ {
+ "epoch": 9.964613368283093,
+ "grad_norm": 0.37976378202438354,
+ "learning_rate": 0.0006,
+ "loss": 4.431371212005615,
+ "step": 717
+ },
+ {
+ "epoch": 9.978593272171254,
+ "grad_norm": 0.4354130029678345,
+ "learning_rate": 0.0006,
+ "loss": 4.434148788452148,
+ "step": 718
+ },
+ {
+ "epoch": 9.992573176059414,
+ "grad_norm": 0.35859373211860657,
+ "learning_rate": 0.0006,
+ "loss": 4.428055763244629,
+ "step": 719
+ },
+ {
+ "epoch": 10.0,
+ "grad_norm": 0.3365023732185364,
+ "learning_rate": 0.0006,
+ "loss": 4.3888654708862305,
+ "step": 720
+ },
+ {
+ "epoch": 10.0,
+ "eval_loss": 4.638620853424072,
+ "eval_runtime": 44.3054,
+ "eval_samples_per_second": 55.117,
+ "eval_steps_per_second": 3.453,
+ "step": 720
+ },
+ {
+ "epoch": 10.013979903888162,
+ "grad_norm": 0.3267960250377655,
+ "learning_rate": 0.0006,
+ "loss": 4.386068344116211,
+ "step": 721
+ },
+ {
+ "epoch": 10.027959807776321,
+ "grad_norm": 0.33440953493118286,
+ "learning_rate": 0.0006,
+ "loss": 4.397515296936035,
+ "step": 722
+ },
+ {
+ "epoch": 10.041939711664483,
+ "grad_norm": 0.30047518014907837,
+ "learning_rate": 0.0006,
+ "loss": 4.398358345031738,
+ "step": 723
+ },
+ {
+ "epoch": 10.055919615552643,
+ "grad_norm": 0.2912217378616333,
+ "learning_rate": 0.0006,
+ "loss": 4.341166973114014,
+ "step": 724
+ },
+ {
+ "epoch": 10.069899519440805,
+ "grad_norm": 0.3199564218521118,
+ "learning_rate": 0.0006,
+ "loss": 4.388717174530029,
+ "step": 725
+ },
+ {
+ "epoch": 10.083879423328964,
+ "grad_norm": 0.2765582799911499,
+ "learning_rate": 0.0006,
+ "loss": 4.392992973327637,
+ "step": 726
+ },
+ {
+ "epoch": 10.097859327217126,
+ "grad_norm": 0.27138450741767883,
+ "learning_rate": 0.0006,
+ "loss": 4.382307529449463,
+ "step": 727
+ },
+ {
+ "epoch": 10.111839231105286,
+ "grad_norm": 0.29230645298957825,
+ "learning_rate": 0.0006,
+ "loss": 4.357486724853516,
+ "step": 728
+ },
+ {
+ "epoch": 10.125819134993447,
+ "grad_norm": 0.3127598464488983,
+ "learning_rate": 0.0006,
+ "loss": 4.39072322845459,
+ "step": 729
+ },
+ {
+ "epoch": 10.139799038881607,
+ "grad_norm": 0.3230913281440735,
+ "learning_rate": 0.0006,
+ "loss": 4.35037899017334,
+ "step": 730
+ },
+ {
+ "epoch": 10.153778942769769,
+ "grad_norm": 0.333675354719162,
+ "learning_rate": 0.0006,
+ "loss": 4.378030776977539,
+ "step": 731
+ },
+ {
+ "epoch": 10.167758846657929,
+ "grad_norm": 0.30325770378112793,
+ "learning_rate": 0.0006,
+ "loss": 4.372736930847168,
+ "step": 732
+ },
+ {
+ "epoch": 10.18173875054609,
+ "grad_norm": 0.2888163924217224,
+ "learning_rate": 0.0006,
+ "loss": 4.397604942321777,
+ "step": 733
+ },
+ {
+ "epoch": 10.19571865443425,
+ "grad_norm": 0.3378832936286926,
+ "learning_rate": 0.0006,
+ "loss": 4.395705223083496,
+ "step": 734
+ },
+ {
+ "epoch": 10.209698558322412,
+ "grad_norm": 0.30980268120765686,
+ "learning_rate": 0.0006,
+ "loss": 4.3861212730407715,
+ "step": 735
+ },
+ {
+ "epoch": 10.223678462210572,
+ "grad_norm": 0.2965783178806305,
+ "learning_rate": 0.0006,
+ "loss": 4.394898414611816,
+ "step": 736
+ },
+ {
+ "epoch": 10.237658366098733,
+ "grad_norm": 0.2818217873573303,
+ "learning_rate": 0.0006,
+ "loss": 4.36171817779541,
+ "step": 737
+ },
+ {
+ "epoch": 10.251638269986893,
+ "grad_norm": 0.2418123185634613,
+ "learning_rate": 0.0006,
+ "loss": 4.370945930480957,
+ "step": 738
+ },
+ {
+ "epoch": 10.265618173875055,
+ "grad_norm": 0.22372810542583466,
+ "learning_rate": 0.0006,
+ "loss": 4.354825973510742,
+ "step": 739
+ },
+ {
+ "epoch": 10.279598077763215,
+ "grad_norm": 0.238066166639328,
+ "learning_rate": 0.0006,
+ "loss": 4.376237392425537,
+ "step": 740
+ },
+ {
+ "epoch": 10.293577981651376,
+ "grad_norm": 0.22352449595928192,
+ "learning_rate": 0.0006,
+ "loss": 4.317084312438965,
+ "step": 741
+ },
+ {
+ "epoch": 10.307557885539538,
+ "grad_norm": 0.21685205399990082,
+ "learning_rate": 0.0006,
+ "loss": 4.335271835327148,
+ "step": 742
+ },
+ {
+ "epoch": 10.321537789427698,
+ "grad_norm": 0.19584694504737854,
+ "learning_rate": 0.0006,
+ "loss": 4.357963562011719,
+ "step": 743
+ },
+ {
+ "epoch": 10.33551769331586,
+ "grad_norm": 0.20373336970806122,
+ "learning_rate": 0.0006,
+ "loss": 4.401963233947754,
+ "step": 744
+ },
+ {
+ "epoch": 10.349497597204019,
+ "grad_norm": 0.2247837632894516,
+ "learning_rate": 0.0006,
+ "loss": 4.357202529907227,
+ "step": 745
+ },
+ {
+ "epoch": 10.36347750109218,
+ "grad_norm": 0.2416863739490509,
+ "learning_rate": 0.0006,
+ "loss": 4.364739418029785,
+ "step": 746
+ },
+ {
+ "epoch": 10.37745740498034,
+ "grad_norm": 0.22281162440776825,
+ "learning_rate": 0.0006,
+ "loss": 4.351607799530029,
+ "step": 747
+ },
+ {
+ "epoch": 10.391437308868502,
+ "grad_norm": 0.20751096308231354,
+ "learning_rate": 0.0006,
+ "loss": 4.370017051696777,
+ "step": 748
+ },
+ {
+ "epoch": 10.405417212756662,
+ "grad_norm": 0.19178363680839539,
+ "learning_rate": 0.0006,
+ "loss": 4.360328674316406,
+ "step": 749
+ },
+ {
+ "epoch": 10.419397116644824,
+ "grad_norm": 0.20534078776836395,
+ "learning_rate": 0.0006,
+ "loss": 4.3735432624816895,
+ "step": 750
+ },
+ {
+ "epoch": 10.433377020532983,
+ "grad_norm": 0.20533937215805054,
+ "learning_rate": 0.0006,
+ "loss": 4.326902389526367,
+ "step": 751
+ },
+ {
+ "epoch": 10.447356924421145,
+ "grad_norm": 0.22057875990867615,
+ "learning_rate": 0.0006,
+ "loss": 4.360934257507324,
+ "step": 752
+ },
+ {
+ "epoch": 10.461336828309305,
+ "grad_norm": 0.25568997859954834,
+ "learning_rate": 0.0006,
+ "loss": 4.345063209533691,
+ "step": 753
+ },
+ {
+ "epoch": 10.475316732197467,
+ "grad_norm": 0.31471487879753113,
+ "learning_rate": 0.0006,
+ "loss": 4.324014186859131,
+ "step": 754
+ },
+ {
+ "epoch": 10.489296636085626,
+ "grad_norm": 0.2716822624206543,
+ "learning_rate": 0.0006,
+ "loss": 4.318459510803223,
+ "step": 755
+ },
+ {
+ "epoch": 10.503276539973788,
+ "grad_norm": 0.19552019238471985,
+ "learning_rate": 0.0006,
+ "loss": 4.3367509841918945,
+ "step": 756
+ },
+ {
+ "epoch": 10.517256443861948,
+ "grad_norm": 0.22822986543178558,
+ "learning_rate": 0.0006,
+ "loss": 4.328935623168945,
+ "step": 757
+ },
+ {
+ "epoch": 10.53123634775011,
+ "grad_norm": 0.22282928228378296,
+ "learning_rate": 0.0006,
+ "loss": 4.358272552490234,
+ "step": 758
+ },
+ {
+ "epoch": 10.54521625163827,
+ "grad_norm": 0.23303352296352386,
+ "learning_rate": 0.0006,
+ "loss": 4.336641311645508,
+ "step": 759
+ },
+ {
+ "epoch": 10.55919615552643,
+ "grad_norm": 0.29474690556526184,
+ "learning_rate": 0.0006,
+ "loss": 4.343188285827637,
+ "step": 760
+ },
+ {
+ "epoch": 10.57317605941459,
+ "grad_norm": 0.36269059777259827,
+ "learning_rate": 0.0006,
+ "loss": 4.313019752502441,
+ "step": 761
+ },
+ {
+ "epoch": 10.587155963302752,
+ "grad_norm": 0.3742978870868683,
+ "learning_rate": 0.0006,
+ "loss": 4.361410140991211,
+ "step": 762
+ },
+ {
+ "epoch": 10.601135867190912,
+ "grad_norm": 0.34412163496017456,
+ "learning_rate": 0.0006,
+ "loss": 4.321324825286865,
+ "step": 763
+ },
+ {
+ "epoch": 10.615115771079074,
+ "grad_norm": 0.3464587926864624,
+ "learning_rate": 0.0006,
+ "loss": 4.341907501220703,
+ "step": 764
+ },
+ {
+ "epoch": 10.629095674967235,
+ "grad_norm": 0.3318136930465698,
+ "learning_rate": 0.0006,
+ "loss": 4.329099655151367,
+ "step": 765
+ },
+ {
+ "epoch": 10.643075578855395,
+ "grad_norm": 0.31292903423309326,
+ "learning_rate": 0.0006,
+ "loss": 4.332015037536621,
+ "step": 766
+ },
+ {
+ "epoch": 10.657055482743557,
+ "grad_norm": 0.2904847264289856,
+ "learning_rate": 0.0006,
+ "loss": 4.341764450073242,
+ "step": 767
+ },
+ {
+ "epoch": 10.671035386631717,
+ "grad_norm": 0.3287692666053772,
+ "learning_rate": 0.0006,
+ "loss": 4.342329025268555,
+ "step": 768
+ },
+ {
+ "epoch": 10.685015290519878,
+ "grad_norm": 0.3115365207195282,
+ "learning_rate": 0.0006,
+ "loss": 4.3530073165893555,
+ "step": 769
+ },
+ {
+ "epoch": 10.698995194408038,
+ "grad_norm": 0.24133864045143127,
+ "learning_rate": 0.0006,
+ "loss": 4.321497917175293,
+ "step": 770
+ },
+ {
+ "epoch": 10.7129750982962,
+ "grad_norm": 0.24658630788326263,
+ "learning_rate": 0.0006,
+ "loss": 4.32669734954834,
+ "step": 771
+ },
+ {
+ "epoch": 10.72695500218436,
+ "grad_norm": 0.2342129647731781,
+ "learning_rate": 0.0006,
+ "loss": 4.345459461212158,
+ "step": 772
+ },
+ {
+ "epoch": 10.740934906072521,
+ "grad_norm": 0.23360829055309296,
+ "learning_rate": 0.0006,
+ "loss": 4.33249568939209,
+ "step": 773
+ },
+ {
+ "epoch": 10.754914809960681,
+ "grad_norm": 0.24314677715301514,
+ "learning_rate": 0.0006,
+ "loss": 4.30499792098999,
+ "step": 774
+ },
+ {
+ "epoch": 10.768894713848843,
+ "grad_norm": 0.22105181217193604,
+ "learning_rate": 0.0006,
+ "loss": 4.33706521987915,
+ "step": 775
+ },
+ {
+ "epoch": 10.782874617737003,
+ "grad_norm": 0.23307174444198608,
+ "learning_rate": 0.0006,
+ "loss": 4.320387840270996,
+ "step": 776
+ },
+ {
+ "epoch": 10.796854521625164,
+ "grad_norm": 0.24946169555187225,
+ "learning_rate": 0.0006,
+ "loss": 4.316012382507324,
+ "step": 777
+ },
+ {
+ "epoch": 10.810834425513324,
+ "grad_norm": 0.26023536920547485,
+ "learning_rate": 0.0006,
+ "loss": 4.315193176269531,
+ "step": 778
+ },
+ {
+ "epoch": 10.824814329401486,
+ "grad_norm": 0.2688547968864441,
+ "learning_rate": 0.0006,
+ "loss": 4.3243255615234375,
+ "step": 779
+ },
+ {
+ "epoch": 10.838794233289645,
+ "grad_norm": 0.28188297152519226,
+ "learning_rate": 0.0006,
+ "loss": 4.3202972412109375,
+ "step": 780
+ },
+ {
+ "epoch": 10.852774137177807,
+ "grad_norm": 0.2890053689479828,
+ "learning_rate": 0.0006,
+ "loss": 4.318799018859863,
+ "step": 781
+ },
+ {
+ "epoch": 10.866754041065967,
+ "grad_norm": 0.2914353013038635,
+ "learning_rate": 0.0006,
+ "loss": 4.314262390136719,
+ "step": 782
+ },
+ {
+ "epoch": 10.880733944954128,
+ "grad_norm": 0.3145572543144226,
+ "learning_rate": 0.0006,
+ "loss": 4.339262008666992,
+ "step": 783
+ },
+ {
+ "epoch": 10.89471384884229,
+ "grad_norm": 0.323062002658844,
+ "learning_rate": 0.0006,
+ "loss": 4.354856491088867,
+ "step": 784
+ },
+ {
+ "epoch": 10.90869375273045,
+ "grad_norm": 0.32741227746009827,
+ "learning_rate": 0.0006,
+ "loss": 4.325577735900879,
+ "step": 785
+ },
+ {
+ "epoch": 10.922673656618612,
+ "grad_norm": 0.2855733036994934,
+ "learning_rate": 0.0006,
+ "loss": 4.324419021606445,
+ "step": 786
+ },
+ {
+ "epoch": 10.936653560506771,
+ "grad_norm": 0.2969444990158081,
+ "learning_rate": 0.0006,
+ "loss": 4.320681095123291,
+ "step": 787
+ },
+ {
+ "epoch": 10.950633464394933,
+ "grad_norm": 0.28108111023902893,
+ "learning_rate": 0.0006,
+ "loss": 4.32673454284668,
+ "step": 788
+ },
+ {
+ "epoch": 10.964613368283093,
+ "grad_norm": 0.2537972629070282,
+ "learning_rate": 0.0006,
+ "loss": 4.3197021484375,
+ "step": 789
+ },
+ {
+ "epoch": 10.978593272171254,
+ "grad_norm": 0.2354544699192047,
+ "learning_rate": 0.0006,
+ "loss": 4.3354973793029785,
+ "step": 790
+ },
+ {
+ "epoch": 10.992573176059414,
+ "grad_norm": 0.26195117831230164,
+ "learning_rate": 0.0006,
+ "loss": 4.3172526359558105,
+ "step": 791
+ },
+ {
+ "epoch": 11.0,
+ "grad_norm": 0.27089616656303406,
+ "learning_rate": 0.0006,
+ "loss": 4.324293613433838,
+ "step": 792
+ },
+ {
+ "epoch": 11.0,
+ "eval_loss": 4.531813621520996,
+ "eval_runtime": 44.1656,
+ "eval_samples_per_second": 55.292,
+ "eval_steps_per_second": 3.464,
+ "step": 792
+ },
+ {
+ "epoch": 11.013979903888162,
+ "grad_norm": 0.2526339590549469,
+ "learning_rate": 0.0006,
+ "loss": 4.287600517272949,
+ "step": 793
+ },
+ {
+ "epoch": 11.027959807776321,
+ "grad_norm": 0.24318458139896393,
+ "learning_rate": 0.0006,
+ "loss": 4.268078327178955,
+ "step": 794
+ },
+ {
+ "epoch": 11.041939711664483,
+ "grad_norm": 0.2450830638408661,
+ "learning_rate": 0.0006,
+ "loss": 4.265467643737793,
+ "step": 795
+ },
+ {
+ "epoch": 11.055919615552643,
+ "grad_norm": 0.23963099718093872,
+ "learning_rate": 0.0006,
+ "loss": 4.267931938171387,
+ "step": 796
+ },
+ {
+ "epoch": 11.069899519440805,
+ "grad_norm": 0.2488657534122467,
+ "learning_rate": 0.0006,
+ "loss": 4.30262565612793,
+ "step": 797
+ },
+ {
+ "epoch": 11.083879423328964,
+ "grad_norm": 0.2319781631231308,
+ "learning_rate": 0.0006,
+ "loss": 4.28665828704834,
+ "step": 798
+ },
+ {
+ "epoch": 11.097859327217126,
+ "grad_norm": 0.2425263375043869,
+ "learning_rate": 0.0006,
+ "loss": 4.284830570220947,
+ "step": 799
+ },
+ {
+ "epoch": 11.111839231105286,
+ "grad_norm": 0.23096567392349243,
+ "learning_rate": 0.0006,
+ "loss": 4.2817206382751465,
+ "step": 800
+ },
+ {
+ "epoch": 11.125819134993447,
+ "grad_norm": 0.2846364676952362,
+ "learning_rate": 0.0006,
+ "loss": 4.276104927062988,
+ "step": 801
+ },
+ {
+ "epoch": 11.139799038881607,
+ "grad_norm": 0.2984965741634369,
+ "learning_rate": 0.0006,
+ "loss": 4.2909650802612305,
+ "step": 802
+ },
+ {
+ "epoch": 11.153778942769769,
+ "grad_norm": 0.2841213643550873,
+ "learning_rate": 0.0006,
+ "loss": 4.283358097076416,
+ "step": 803
+ },
+ {
+ "epoch": 11.167758846657929,
+ "grad_norm": 0.29192933440208435,
+ "learning_rate": 0.0006,
+ "loss": 4.267040729522705,
+ "step": 804
+ },
+ {
+ "epoch": 11.18173875054609,
+ "grad_norm": 0.3254184126853943,
+ "learning_rate": 0.0006,
+ "loss": 4.301564693450928,
+ "step": 805
+ },
+ {
+ "epoch": 11.19571865443425,
+ "grad_norm": 0.3347095847129822,
+ "learning_rate": 0.0006,
+ "loss": 4.271395683288574,
+ "step": 806
+ },
+ {
+ "epoch": 11.209698558322412,
+ "grad_norm": 0.25609350204467773,
+ "learning_rate": 0.0006,
+ "loss": 4.2963056564331055,
+ "step": 807
+ },
+ {
+ "epoch": 11.223678462210572,
+ "grad_norm": 0.29272061586380005,
+ "learning_rate": 0.0006,
+ "loss": 4.298416614532471,
+ "step": 808
+ },
+ {
+ "epoch": 11.237658366098733,
+ "grad_norm": 0.32179465889930725,
+ "learning_rate": 0.0006,
+ "loss": 4.294036865234375,
+ "step": 809
+ },
+ {
+ "epoch": 11.251638269986893,
+ "grad_norm": 0.3336549401283264,
+ "learning_rate": 0.0006,
+ "loss": 4.291993141174316,
+ "step": 810
+ },
+ {
+ "epoch": 11.265618173875055,
+ "grad_norm": 0.32273536920547485,
+ "learning_rate": 0.0006,
+ "loss": 4.311004638671875,
+ "step": 811
+ },
+ {
+ "epoch": 11.279598077763215,
+ "grad_norm": 0.3575087785720825,
+ "learning_rate": 0.0006,
+ "loss": 4.300217628479004,
+ "step": 812
+ },
+ {
+ "epoch": 11.293577981651376,
+ "grad_norm": 0.3332885205745697,
+ "learning_rate": 0.0006,
+ "loss": 4.278337478637695,
+ "step": 813
+ },
+ {
+ "epoch": 11.307557885539538,
+ "grad_norm": 0.31440407037734985,
+ "learning_rate": 0.0006,
+ "loss": 4.273826599121094,
+ "step": 814
+ },
+ {
+ "epoch": 11.321537789427698,
+ "grad_norm": 0.29822009801864624,
+ "learning_rate": 0.0006,
+ "loss": 4.284292221069336,
+ "step": 815
+ },
+ {
+ "epoch": 11.33551769331586,
+ "grad_norm": 0.30695512890815735,
+ "learning_rate": 0.0006,
+ "loss": 4.2831926345825195,
+ "step": 816
+ },
+ {
+ "epoch": 11.349497597204019,
+ "grad_norm": 0.30576950311660767,
+ "learning_rate": 0.0006,
+ "loss": 4.277133464813232,
+ "step": 817
+ },
+ {
+ "epoch": 11.36347750109218,
+ "grad_norm": 0.2859647870063782,
+ "learning_rate": 0.0006,
+ "loss": 4.3130106925964355,
+ "step": 818
+ },
+ {
+ "epoch": 11.37745740498034,
+ "grad_norm": 0.32417574524879456,
+ "learning_rate": 0.0006,
+ "loss": 4.310303211212158,
+ "step": 819
+ },
+ {
+ "epoch": 11.391437308868502,
+ "grad_norm": 0.3512463867664337,
+ "learning_rate": 0.0006,
+ "loss": 4.287015438079834,
+ "step": 820
+ },
+ {
+ "epoch": 11.405417212756662,
+ "grad_norm": 0.32578620314598083,
+ "learning_rate": 0.0006,
+ "loss": 4.2957940101623535,
+ "step": 821
+ },
+ {
+ "epoch": 11.419397116644824,
+ "grad_norm": 0.287949800491333,
+ "learning_rate": 0.0006,
+ "loss": 4.2881879806518555,
+ "step": 822
+ },
+ {
+ "epoch": 11.433377020532983,
+ "grad_norm": 0.28048595786094666,
+ "learning_rate": 0.0006,
+ "loss": 4.274960517883301,
+ "step": 823
+ },
+ {
+ "epoch": 11.447356924421145,
+ "grad_norm": 0.2541540563106537,
+ "learning_rate": 0.0006,
+ "loss": 4.261083602905273,
+ "step": 824
+ },
+ {
+ "epoch": 11.461336828309305,
+ "grad_norm": 0.2348361313343048,
+ "learning_rate": 0.0006,
+ "loss": 4.271036148071289,
+ "step": 825
+ },
+ {
+ "epoch": 11.475316732197467,
+ "grad_norm": 0.20913535356521606,
+ "learning_rate": 0.0006,
+ "loss": 4.307661056518555,
+ "step": 826
+ },
+ {
+ "epoch": 11.489296636085626,
+ "grad_norm": 0.22298868000507355,
+ "learning_rate": 0.0006,
+ "loss": 4.26902961730957,
+ "step": 827
+ },
+ {
+ "epoch": 11.503276539973788,
+ "grad_norm": 0.22752761840820312,
+ "learning_rate": 0.0006,
+ "loss": 4.305529594421387,
+ "step": 828
+ },
+ {
+ "epoch": 11.517256443861948,
+ "grad_norm": 0.2149917483329773,
+ "learning_rate": 0.0006,
+ "loss": 4.25134801864624,
+ "step": 829
+ },
+ {
+ "epoch": 11.53123634775011,
+ "grad_norm": 0.21085695922374725,
+ "learning_rate": 0.0006,
+ "loss": 4.266982078552246,
+ "step": 830
+ },
+ {
+ "epoch": 11.54521625163827,
+ "grad_norm": 0.21586747467517853,
+ "learning_rate": 0.0006,
+ "loss": 4.235255718231201,
+ "step": 831
+ },
+ {
+ "epoch": 11.55919615552643,
+ "grad_norm": 0.2520856559276581,
+ "learning_rate": 0.0006,
+ "loss": 4.283442497253418,
+ "step": 832
+ },
+ {
+ "epoch": 11.57317605941459,
+ "grad_norm": 0.2825471758842468,
+ "learning_rate": 0.0006,
+ "loss": 4.234672546386719,
+ "step": 833
+ },
+ {
+ "epoch": 11.587155963302752,
+ "grad_norm": 0.27437824010849,
+ "learning_rate": 0.0006,
+ "loss": 4.246068000793457,
+ "step": 834
+ },
+ {
+ "epoch": 11.601135867190912,
+ "grad_norm": 0.2596757411956787,
+ "learning_rate": 0.0006,
+ "loss": 4.278448104858398,
+ "step": 835
+ },
+ {
+ "epoch": 11.615115771079074,
+ "grad_norm": 0.25663474202156067,
+ "learning_rate": 0.0006,
+ "loss": 4.308779716491699,
+ "step": 836
+ },
+ {
+ "epoch": 11.629095674967235,
+ "grad_norm": 0.2546203136444092,
+ "learning_rate": 0.0006,
+ "loss": 4.261247634887695,
+ "step": 837
+ },
+ {
+ "epoch": 11.643075578855395,
+ "grad_norm": 0.24722838401794434,
+ "learning_rate": 0.0006,
+ "loss": 4.275888442993164,
+ "step": 838
+ },
+ {
+ "epoch": 11.657055482743557,
+ "grad_norm": 0.3022806644439697,
+ "learning_rate": 0.0006,
+ "loss": 4.2572407722473145,
+ "step": 839
+ },
+ {
+ "epoch": 11.671035386631717,
+ "grad_norm": 0.31170839071273804,
+ "learning_rate": 0.0006,
+ "loss": 4.26992654800415,
+ "step": 840
+ },
+ {
+ "epoch": 11.685015290519878,
+ "grad_norm": 0.31362825632095337,
+ "learning_rate": 0.0006,
+ "loss": 4.2354655265808105,
+ "step": 841
+ },
+ {
+ "epoch": 11.698995194408038,
+ "grad_norm": 0.28741633892059326,
+ "learning_rate": 0.0006,
+ "loss": 4.263496398925781,
+ "step": 842
+ },
+ {
+ "epoch": 11.7129750982962,
+ "grad_norm": 0.2492494285106659,
+ "learning_rate": 0.0006,
+ "loss": 4.26463508605957,
+ "step": 843
+ },
+ {
+ "epoch": 11.72695500218436,
+ "grad_norm": 0.24324660003185272,
+ "learning_rate": 0.0006,
+ "loss": 4.245428085327148,
+ "step": 844
+ },
+ {
+ "epoch": 11.740934906072521,
+ "grad_norm": 0.23591114580631256,
+ "learning_rate": 0.0006,
+ "loss": 4.249845504760742,
+ "step": 845
+ },
+ {
+ "epoch": 11.754914809960681,
+ "grad_norm": 0.2202281504869461,
+ "learning_rate": 0.0006,
+ "loss": 4.245006084442139,
+ "step": 846
+ },
+ {
+ "epoch": 11.768894713848843,
+ "grad_norm": 0.22117942571640015,
+ "learning_rate": 0.0006,
+ "loss": 4.27812385559082,
+ "step": 847
+ },
+ {
+ "epoch": 11.782874617737003,
+ "grad_norm": 0.26361414790153503,
+ "learning_rate": 0.0006,
+ "loss": 4.250475883483887,
+ "step": 848
+ },
+ {
+ "epoch": 11.796854521625164,
+ "grad_norm": 0.2820321321487427,
+ "learning_rate": 0.0006,
+ "loss": 4.265835762023926,
+ "step": 849
+ },
+ {
+ "epoch": 11.810834425513324,
+ "grad_norm": 0.2078961282968521,
+ "learning_rate": 0.0006,
+ "loss": 4.251298904418945,
+ "step": 850
+ },
+ {
+ "epoch": 11.824814329401486,
+ "grad_norm": 0.21548646688461304,
+ "learning_rate": 0.0006,
+ "loss": 4.288539886474609,
+ "step": 851
+ },
+ {
+ "epoch": 11.838794233289645,
+ "grad_norm": 0.22719401121139526,
+ "learning_rate": 0.0006,
+ "loss": 4.252035140991211,
+ "step": 852
+ },
+ {
+ "epoch": 11.852774137177807,
+ "grad_norm": 0.21628320217132568,
+ "learning_rate": 0.0006,
+ "loss": 4.268622398376465,
+ "step": 853
+ },
+ {
+ "epoch": 11.866754041065967,
+ "grad_norm": 0.20855145156383514,
+ "learning_rate": 0.0006,
+ "loss": 4.253366470336914,
+ "step": 854
+ },
+ {
+ "epoch": 11.880733944954128,
+ "grad_norm": 0.2091914266347885,
+ "learning_rate": 0.0006,
+ "loss": 4.237805366516113,
+ "step": 855
+ },
+ {
+ "epoch": 11.89471384884229,
+ "grad_norm": 0.2000127136707306,
+ "learning_rate": 0.0006,
+ "loss": 4.268559455871582,
+ "step": 856
+ },
+ {
+ "epoch": 11.90869375273045,
+ "grad_norm": 0.21080894768238068,
+ "learning_rate": 0.0006,
+ "loss": 4.208702087402344,
+ "step": 857
+ },
+ {
+ "epoch": 11.922673656618612,
+ "grad_norm": 0.22125796973705292,
+ "learning_rate": 0.0006,
+ "loss": 4.250210762023926,
+ "step": 858
+ },
+ {
+ "epoch": 11.936653560506771,
+ "grad_norm": 0.25905469059944153,
+ "learning_rate": 0.0006,
+ "loss": 4.2263593673706055,
+ "step": 859
+ },
+ {
+ "epoch": 11.950633464394933,
+ "grad_norm": 0.29970306158065796,
+ "learning_rate": 0.0006,
+ "loss": 4.250848770141602,
+ "step": 860
+ },
+ {
+ "epoch": 11.964613368283093,
+ "grad_norm": 0.28155168890953064,
+ "learning_rate": 0.0006,
+ "loss": 4.272709369659424,
+ "step": 861
+ },
+ {
+ "epoch": 11.978593272171254,
+ "grad_norm": 0.23396113514900208,
+ "learning_rate": 0.0006,
+ "loss": 4.2674970626831055,
+ "step": 862
+ },
+ {
+ "epoch": 11.992573176059414,
+ "grad_norm": 0.23619577288627625,
+ "learning_rate": 0.0006,
+ "loss": 4.240267753601074,
+ "step": 863
+ },
+ {
+ "epoch": 12.0,
+ "grad_norm": 0.2779577076435089,
+ "learning_rate": 0.0006,
+ "loss": 4.267625331878662,
+ "step": 864
+ },
+ {
+ "epoch": 12.0,
+ "eval_loss": 4.437657356262207,
+ "eval_runtime": 44.4959,
+ "eval_samples_per_second": 54.881,
+ "eval_steps_per_second": 3.439,
+ "step": 864
+ },
+ {
+ "epoch": 12.013979903888162,
+ "grad_norm": 0.2948288321495056,
+ "learning_rate": 0.0006,
+ "loss": 4.232182502746582,
+ "step": 865
+ },
+ {
+ "epoch": 12.027959807776321,
+ "grad_norm": 0.3715663254261017,
+ "learning_rate": 0.0006,
+ "loss": 4.233771324157715,
+ "step": 866
+ },
+ {
+ "epoch": 12.041939711664483,
+ "grad_norm": 0.38358673453330994,
+ "learning_rate": 0.0006,
+ "loss": 4.208967685699463,
+ "step": 867
+ },
+ {
+ "epoch": 12.055919615552643,
+ "grad_norm": 0.3314538896083832,
+ "learning_rate": 0.0006,
+ "loss": 4.230685234069824,
+ "step": 868
+ },
+ {
+ "epoch": 12.069899519440805,
+ "grad_norm": 0.34171539545059204,
+ "learning_rate": 0.0006,
+ "loss": 4.231358528137207,
+ "step": 869
+ },
+ {
+ "epoch": 12.083879423328964,
+ "grad_norm": 0.3253359794616699,
+ "learning_rate": 0.0006,
+ "loss": 4.276405334472656,
+ "step": 870
+ },
+ {
+ "epoch": 12.097859327217126,
+ "grad_norm": 0.29008302092552185,
+ "learning_rate": 0.0006,
+ "loss": 4.232935905456543,
+ "step": 871
+ },
+ {
+ "epoch": 12.111839231105286,
+ "grad_norm": 0.28490355610847473,
+ "learning_rate": 0.0006,
+ "loss": 4.238036632537842,
+ "step": 872
+ },
+ {
+ "epoch": 12.125819134993447,
+ "grad_norm": 0.28446322679519653,
+ "learning_rate": 0.0006,
+ "loss": 4.210229873657227,
+ "step": 873
+ },
+ {
+ "epoch": 12.139799038881607,
+ "grad_norm": 0.29664531350135803,
+ "learning_rate": 0.0006,
+ "loss": 4.221309185028076,
+ "step": 874
+ },
+ {
+ "epoch": 12.153778942769769,
+ "grad_norm": 0.3083505928516388,
+ "learning_rate": 0.0006,
+ "loss": 4.221837997436523,
+ "step": 875
+ },
+ {
+ "epoch": 12.167758846657929,
+ "grad_norm": 0.3282921314239502,
+ "learning_rate": 0.0006,
+ "loss": 4.236713409423828,
+ "step": 876
+ },
+ {
+ "epoch": 12.18173875054609,
+ "grad_norm": 0.3603622615337372,
+ "learning_rate": 0.0006,
+ "loss": 4.245080947875977,
+ "step": 877
+ },
+ {
+ "epoch": 12.19571865443425,
+ "grad_norm": 0.38070905208587646,
+ "learning_rate": 0.0006,
+ "loss": 4.240756988525391,
+ "step": 878
+ },
+ {
+ "epoch": 12.209698558322412,
+ "grad_norm": 0.34479081630706787,
+ "learning_rate": 0.0006,
+ "loss": 4.200998306274414,
+ "step": 879
+ },
+ {
+ "epoch": 12.223678462210572,
+ "grad_norm": 0.3006879389286041,
+ "learning_rate": 0.0006,
+ "loss": 4.23531436920166,
+ "step": 880
+ },
+ {
+ "epoch": 12.237658366098733,
+ "grad_norm": 0.36835649609565735,
+ "learning_rate": 0.0006,
+ "loss": 4.229718208312988,
+ "step": 881
+ },
+ {
+ "epoch": 12.251638269986893,
+ "grad_norm": 0.4386984407901764,
+ "learning_rate": 0.0006,
+ "loss": 4.241188049316406,
+ "step": 882
+ },
+ {
+ "epoch": 12.265618173875055,
+ "grad_norm": 0.4442787170410156,
+ "learning_rate": 0.0006,
+ "loss": 4.239102840423584,
+ "step": 883
+ },
+ {
+ "epoch": 12.279598077763215,
+ "grad_norm": 0.324411541223526,
+ "learning_rate": 0.0006,
+ "loss": 4.198982238769531,
+ "step": 884
+ },
+ {
+ "epoch": 12.293577981651376,
+ "grad_norm": 0.2824151813983917,
+ "learning_rate": 0.0006,
+ "loss": 4.248816967010498,
+ "step": 885
+ },
+ {
+ "epoch": 12.307557885539538,
+ "grad_norm": 0.31407129764556885,
+ "learning_rate": 0.0006,
+ "loss": 4.2371320724487305,
+ "step": 886
+ },
+ {
+ "epoch": 12.321537789427698,
+ "grad_norm": 0.32920050621032715,
+ "learning_rate": 0.0006,
+ "loss": 4.210432052612305,
+ "step": 887
+ },
+ {
+ "epoch": 12.33551769331586,
+ "grad_norm": 0.315231055021286,
+ "learning_rate": 0.0006,
+ "loss": 4.219416618347168,
+ "step": 888
+ },
+ {
+ "epoch": 12.349497597204019,
+ "grad_norm": 0.30932050943374634,
+ "learning_rate": 0.0006,
+ "loss": 4.225022315979004,
+ "step": 889
+ },
+ {
+ "epoch": 12.36347750109218,
+ "grad_norm": 0.30242064595222473,
+ "learning_rate": 0.0006,
+ "loss": 4.2738518714904785,
+ "step": 890
+ },
+ {
+ "epoch": 12.37745740498034,
+ "grad_norm": 0.2926250994205475,
+ "learning_rate": 0.0006,
+ "loss": 4.231094837188721,
+ "step": 891
+ },
+ {
+ "epoch": 12.391437308868502,
+ "grad_norm": 0.2541215717792511,
+ "learning_rate": 0.0006,
+ "loss": 4.211821556091309,
+ "step": 892
+ },
+ {
+ "epoch": 12.405417212756662,
+ "grad_norm": 0.23693418502807617,
+ "learning_rate": 0.0006,
+ "loss": 4.208099365234375,
+ "step": 893
+ },
+ {
+ "epoch": 12.419397116644824,
+ "grad_norm": 0.22063226997852325,
+ "learning_rate": 0.0006,
+ "loss": 4.211234092712402,
+ "step": 894
+ },
+ {
+ "epoch": 12.433377020532983,
+ "grad_norm": 0.21536271274089813,
+ "learning_rate": 0.0006,
+ "loss": 4.199228286743164,
+ "step": 895
+ },
+ {
+ "epoch": 12.447356924421145,
+ "grad_norm": 0.243179589509964,
+ "learning_rate": 0.0006,
+ "loss": 4.204344749450684,
+ "step": 896
+ },
+ {
+ "epoch": 12.461336828309305,
+ "grad_norm": 0.2299746423959732,
+ "learning_rate": 0.0006,
+ "loss": 4.1565752029418945,
+ "step": 897
+ },
+ {
+ "epoch": 12.475316732197467,
+ "grad_norm": 0.2286847084760666,
+ "learning_rate": 0.0006,
+ "loss": 4.242953777313232,
+ "step": 898
+ },
+ {
+ "epoch": 12.489296636085626,
+ "grad_norm": 0.19463586807250977,
+ "learning_rate": 0.0006,
+ "loss": 4.214809417724609,
+ "step": 899
+ },
+ {
+ "epoch": 12.503276539973788,
+ "grad_norm": 0.1978398710489273,
+ "learning_rate": 0.0006,
+ "loss": 4.159815311431885,
+ "step": 900
+ },
+ {
+ "epoch": 12.517256443861948,
+ "grad_norm": 0.23177850246429443,
+ "learning_rate": 0.0006,
+ "loss": 4.2069902420043945,
+ "step": 901
+ },
+ {
+ "epoch": 12.53123634775011,
+ "grad_norm": 0.2408912032842636,
+ "learning_rate": 0.0006,
+ "loss": 4.206778526306152,
+ "step": 902
+ },
+ {
+ "epoch": 12.54521625163827,
+ "grad_norm": 0.21839919686317444,
+ "learning_rate": 0.0006,
+ "loss": 4.197076320648193,
+ "step": 903
+ },
+ {
+ "epoch": 12.55919615552643,
+ "grad_norm": 0.2053343504667282,
+ "learning_rate": 0.0006,
+ "loss": 4.21247673034668,
+ "step": 904
+ },
+ {
+ "epoch": 12.57317605941459,
+ "grad_norm": 0.19943439960479736,
+ "learning_rate": 0.0006,
+ "loss": 4.176966667175293,
+ "step": 905
+ },
+ {
+ "epoch": 12.587155963302752,
+ "grad_norm": 0.2012074887752533,
+ "learning_rate": 0.0006,
+ "loss": 4.210303783416748,
+ "step": 906
+ },
+ {
+ "epoch": 12.601135867190912,
+ "grad_norm": 0.22240376472473145,
+ "learning_rate": 0.0006,
+ "loss": 4.200625896453857,
+ "step": 907
+ },
+ {
+ "epoch": 12.615115771079074,
+ "grad_norm": 0.21729710698127747,
+ "learning_rate": 0.0006,
+ "loss": 4.2001953125,
+ "step": 908
+ },
+ {
+ "epoch": 12.629095674967235,
+ "grad_norm": 0.22470413148403168,
+ "learning_rate": 0.0006,
+ "loss": 4.197505950927734,
+ "step": 909
+ },
+ {
+ "epoch": 12.643075578855395,
+ "grad_norm": 0.23776157200336456,
+ "learning_rate": 0.0006,
+ "loss": 4.235603332519531,
+ "step": 910
+ },
+ {
+ "epoch": 12.657055482743557,
+ "grad_norm": 0.20616604387760162,
+ "learning_rate": 0.0006,
+ "loss": 4.193584442138672,
+ "step": 911
+ },
+ {
+ "epoch": 12.671035386631717,
+ "grad_norm": 0.1913922131061554,
+ "learning_rate": 0.0006,
+ "loss": 4.209191799163818,
+ "step": 912
+ },
+ {
+ "epoch": 12.685015290519878,
+ "grad_norm": 0.19427193701267242,
+ "learning_rate": 0.0006,
+ "loss": 4.219709396362305,
+ "step": 913
+ },
+ {
+ "epoch": 12.698995194408038,
+ "grad_norm": 0.20976558327674866,
+ "learning_rate": 0.0006,
+ "loss": 4.210859298706055,
+ "step": 914
+ },
+ {
+ "epoch": 12.7129750982962,
+ "grad_norm": 0.21571609377861023,
+ "learning_rate": 0.0006,
+ "loss": 4.189394950866699,
+ "step": 915
+ },
+ {
+ "epoch": 12.72695500218436,
+ "grad_norm": 0.2152620255947113,
+ "learning_rate": 0.0006,
+ "loss": 4.223589897155762,
+ "step": 916
+ },
+ {
+ "epoch": 12.740934906072521,
+ "grad_norm": 0.21867749094963074,
+ "learning_rate": 0.0006,
+ "loss": 4.198590278625488,
+ "step": 917
+ },
+ {
+ "epoch": 12.754914809960681,
+ "grad_norm": 0.22300855815410614,
+ "learning_rate": 0.0006,
+ "loss": 4.188891410827637,
+ "step": 918
+ },
+ {
+ "epoch": 12.768894713848843,
+ "grad_norm": 0.22197802364826202,
+ "learning_rate": 0.0006,
+ "loss": 4.190221309661865,
+ "step": 919
+ },
+ {
+ "epoch": 12.782874617737003,
+ "grad_norm": 0.20003341138362885,
+ "learning_rate": 0.0006,
+ "loss": 4.215453147888184,
+ "step": 920
+ },
+ {
+ "epoch": 12.796854521625164,
+ "grad_norm": 0.19887958467006683,
+ "learning_rate": 0.0006,
+ "loss": 4.18174934387207,
+ "step": 921
+ },
+ {
+ "epoch": 12.810834425513324,
+ "grad_norm": 0.20945803821086884,
+ "learning_rate": 0.0006,
+ "loss": 4.234947204589844,
+ "step": 922
+ },
+ {
+ "epoch": 12.824814329401486,
+ "grad_norm": 0.2253490388393402,
+ "learning_rate": 0.0006,
+ "loss": 4.2177228927612305,
+ "step": 923
+ },
+ {
+ "epoch": 12.838794233289645,
+ "grad_norm": 0.247610405087471,
+ "learning_rate": 0.0006,
+ "loss": 4.2013139724731445,
+ "step": 924
+ },
+ {
+ "epoch": 12.852774137177807,
+ "grad_norm": 0.2792088985443115,
+ "learning_rate": 0.0006,
+ "loss": 4.204774379730225,
+ "step": 925
+ },
+ {
+ "epoch": 12.866754041065967,
+ "grad_norm": 0.2839066982269287,
+ "learning_rate": 0.0006,
+ "loss": 4.186254978179932,
+ "step": 926
+ },
+ {
+ "epoch": 12.880733944954128,
+ "grad_norm": 0.2793181836605072,
+ "learning_rate": 0.0006,
+ "loss": 4.172411918640137,
+ "step": 927
+ },
+ {
+ "epoch": 12.89471384884229,
+ "grad_norm": 0.29506033658981323,
+ "learning_rate": 0.0006,
+ "loss": 4.202878475189209,
+ "step": 928
+ },
+ {
+ "epoch": 12.90869375273045,
+ "grad_norm": 0.2799845039844513,
+ "learning_rate": 0.0006,
+ "loss": 4.1563310623168945,
+ "step": 929
+ },
+ {
+ "epoch": 12.922673656618612,
+ "grad_norm": 0.23972125351428986,
+ "learning_rate": 0.0006,
+ "loss": 4.224601745605469,
+ "step": 930
+ },
+ {
+ "epoch": 12.936653560506771,
+ "grad_norm": 0.21558353304862976,
+ "learning_rate": 0.0006,
+ "loss": 4.167957305908203,
+ "step": 931
+ },
+ {
+ "epoch": 12.950633464394933,
+ "grad_norm": 0.21800188720226288,
+ "learning_rate": 0.0006,
+ "loss": 4.1746039390563965,
+ "step": 932
+ },
+ {
+ "epoch": 12.964613368283093,
+ "grad_norm": 0.2086547315120697,
+ "learning_rate": 0.0006,
+ "loss": 4.188137054443359,
+ "step": 933
+ },
+ {
+ "epoch": 12.978593272171254,
+ "grad_norm": 0.2174186110496521,
+ "learning_rate": 0.0006,
+ "loss": 4.184014320373535,
+ "step": 934
+ },
+ {
+ "epoch": 12.992573176059414,
+ "grad_norm": 0.22755110263824463,
+ "learning_rate": 0.0006,
+ "loss": 4.180912017822266,
+ "step": 935
+ },
+ {
+ "epoch": 13.0,
+ "grad_norm": 0.2735324203968048,
+ "learning_rate": 0.0006,
+ "loss": 4.201578617095947,
+ "step": 936
+ },
+ {
+ "epoch": 13.0,
+ "eval_loss": 4.396903038024902,
+ "eval_runtime": 44.5664,
+ "eval_samples_per_second": 54.795,
+ "eval_steps_per_second": 3.433,
+ "step": 936
+ },
+ {
+ "epoch": 13.013979903888162,
+ "grad_norm": 0.27577832341194153,
+ "learning_rate": 0.0006,
+ "loss": 4.149985313415527,
+ "step": 937
+ },
+ {
+ "epoch": 13.027959807776321,
+ "grad_norm": 0.25817009806632996,
+ "learning_rate": 0.0006,
+ "loss": 4.1526103019714355,
+ "step": 938
+ },
+ {
+ "epoch": 13.041939711664483,
+ "grad_norm": 0.24564379453659058,
+ "learning_rate": 0.0006,
+ "loss": 4.1661152839660645,
+ "step": 939
+ },
+ {
+ "epoch": 13.055919615552643,
+ "grad_norm": 0.2465466856956482,
+ "learning_rate": 0.0006,
+ "loss": 4.152953624725342,
+ "step": 940
+ },
+ {
+ "epoch": 13.069899519440805,
+ "grad_norm": 0.22702018916606903,
+ "learning_rate": 0.0006,
+ "loss": 4.145125389099121,
+ "step": 941
+ },
+ {
+ "epoch": 13.083879423328964,
+ "grad_norm": 0.24350613355636597,
+ "learning_rate": 0.0006,
+ "loss": 4.163095474243164,
+ "step": 942
+ },
+ {
+ "epoch": 13.097859327217126,
+ "grad_norm": 0.2504431903362274,
+ "learning_rate": 0.0006,
+ "loss": 4.136016845703125,
+ "step": 943
+ },
+ {
+ "epoch": 13.111839231105286,
+ "grad_norm": 0.24968865513801575,
+ "learning_rate": 0.0006,
+ "loss": 4.163487911224365,
+ "step": 944
+ },
+ {
+ "epoch": 13.125819134993447,
+ "grad_norm": 0.27164196968078613,
+ "learning_rate": 0.0006,
+ "loss": 4.1194353103637695,
+ "step": 945
+ },
+ {
+ "epoch": 13.139799038881607,
+ "grad_norm": 0.28127020597457886,
+ "learning_rate": 0.0006,
+ "loss": 4.184807300567627,
+ "step": 946
+ },
+ {
+ "epoch": 13.153778942769769,
+ "grad_norm": 0.24574966728687286,
+ "learning_rate": 0.0006,
+ "loss": 4.154998779296875,
+ "step": 947
+ },
+ {
+ "epoch": 13.167758846657929,
+ "grad_norm": 0.22310060262680054,
+ "learning_rate": 0.0006,
+ "loss": 4.182928085327148,
+ "step": 948
+ },
+ {
+ "epoch": 13.18173875054609,
+ "grad_norm": 0.2539508640766144,
+ "learning_rate": 0.0006,
+ "loss": 4.176900386810303,
+ "step": 949
+ },
+ {
+ "epoch": 13.19571865443425,
+ "grad_norm": 0.30925488471984863,
+ "learning_rate": 0.0006,
+ "loss": 4.1760711669921875,
+ "step": 950
+ },
+ {
+ "epoch": 13.209698558322412,
+ "grad_norm": 0.3842967450618744,
+ "learning_rate": 0.0006,
+ "loss": 4.1830949783325195,
+ "step": 951
+ },
+ {
+ "epoch": 13.223678462210572,
+ "grad_norm": 0.35950011014938354,
+ "learning_rate": 0.0006,
+ "loss": 4.131983757019043,
+ "step": 952
+ },
+ {
+ "epoch": 13.237658366098733,
+ "grad_norm": 0.29913705587387085,
+ "learning_rate": 0.0006,
+ "loss": 4.166984558105469,
+ "step": 953
+ },
+ {
+ "epoch": 13.251638269986893,
+ "grad_norm": 0.32008400559425354,
+ "learning_rate": 0.0006,
+ "loss": 4.156482696533203,
+ "step": 954
+ },
+ {
+ "epoch": 13.265618173875055,
+ "grad_norm": 0.3186642825603485,
+ "learning_rate": 0.0006,
+ "loss": 4.1661057472229,
+ "step": 955
+ },
+ {
+ "epoch": 13.279598077763215,
+ "grad_norm": 0.3194582462310791,
+ "learning_rate": 0.0006,
+ "loss": 4.169328689575195,
+ "step": 956
+ },
+ {
+ "epoch": 13.293577981651376,
+ "grad_norm": 0.3133867084980011,
+ "learning_rate": 0.0006,
+ "loss": 4.165459632873535,
+ "step": 957
+ },
+ {
+ "epoch": 13.307557885539538,
+ "grad_norm": 0.3232237696647644,
+ "learning_rate": 0.0006,
+ "loss": 4.2107439041137695,
+ "step": 958
+ },
+ {
+ "epoch": 13.321537789427698,
+ "grad_norm": 0.3133196234703064,
+ "learning_rate": 0.0006,
+ "loss": 4.184182167053223,
+ "step": 959
+ },
+ {
+ "epoch": 13.33551769331586,
+ "grad_norm": 0.296129435300827,
+ "learning_rate": 0.0006,
+ "loss": 4.168312072753906,
+ "step": 960
+ },
+ {
+ "epoch": 13.349497597204019,
+ "grad_norm": 0.2685348391532898,
+ "learning_rate": 0.0006,
+ "loss": 4.159984588623047,
+ "step": 961
+ },
+ {
+ "epoch": 13.36347750109218,
+ "grad_norm": 0.2644975781440735,
+ "learning_rate": 0.0006,
+ "loss": 4.164909362792969,
+ "step": 962
+ },
+ {
+ "epoch": 13.37745740498034,
+ "grad_norm": 0.2712913155555725,
+ "learning_rate": 0.0006,
+ "loss": 4.158056259155273,
+ "step": 963
+ },
+ {
+ "epoch": 13.391437308868502,
+ "grad_norm": 0.2687259316444397,
+ "learning_rate": 0.0006,
+ "loss": 4.182924270629883,
+ "step": 964
+ },
+ {
+ "epoch": 13.405417212756662,
+ "grad_norm": 0.25640392303466797,
+ "learning_rate": 0.0006,
+ "loss": 4.153351783752441,
+ "step": 965
+ },
+ {
+ "epoch": 13.419397116644824,
+ "grad_norm": 0.2646305561065674,
+ "learning_rate": 0.0006,
+ "loss": 4.18464469909668,
+ "step": 966
+ },
+ {
+ "epoch": 13.433377020532983,
+ "grad_norm": 0.24206851422786713,
+ "learning_rate": 0.0006,
+ "loss": 4.127564430236816,
+ "step": 967
+ },
+ {
+ "epoch": 13.447356924421145,
+ "grad_norm": 0.23800471425056458,
+ "learning_rate": 0.0006,
+ "loss": 4.163488388061523,
+ "step": 968
+ },
+ {
+ "epoch": 13.461336828309305,
+ "grad_norm": 0.22957314550876617,
+ "learning_rate": 0.0006,
+ "loss": 4.178133964538574,
+ "step": 969
+ },
+ {
+ "epoch": 13.475316732197467,
+ "grad_norm": 0.22867488861083984,
+ "learning_rate": 0.0006,
+ "loss": 4.159056186676025,
+ "step": 970
+ },
+ {
+ "epoch": 13.489296636085626,
+ "grad_norm": 0.21737419068813324,
+ "learning_rate": 0.0006,
+ "loss": 4.138628005981445,
+ "step": 971
+ },
+ {
+ "epoch": 13.503276539973788,
+ "grad_norm": 0.2319175899028778,
+ "learning_rate": 0.0006,
+ "loss": 4.14644718170166,
+ "step": 972
+ },
+ {
+ "epoch": 13.517256443861948,
+ "grad_norm": 0.2572193443775177,
+ "learning_rate": 0.0006,
+ "loss": 4.175213813781738,
+ "step": 973
+ },
+ {
+ "epoch": 13.53123634775011,
+ "grad_norm": 0.23483099043369293,
+ "learning_rate": 0.0006,
+ "loss": 4.133171558380127,
+ "step": 974
+ },
+ {
+ "epoch": 13.54521625163827,
+ "grad_norm": 0.2071552872657776,
+ "learning_rate": 0.0006,
+ "loss": 4.13730525970459,
+ "step": 975
+ },
+ {
+ "epoch": 13.55919615552643,
+ "grad_norm": 0.23074553906917572,
+ "learning_rate": 0.0006,
+ "loss": 4.175051689147949,
+ "step": 976
+ },
+ {
+ "epoch": 13.57317605941459,
+ "grad_norm": 0.2480078786611557,
+ "learning_rate": 0.0006,
+ "loss": 4.167630672454834,
+ "step": 977
+ },
+ {
+ "epoch": 13.587155963302752,
+ "grad_norm": 0.23444348573684692,
+ "learning_rate": 0.0006,
+ "loss": 4.141780853271484,
+ "step": 978
+ },
+ {
+ "epoch": 13.601135867190912,
+ "grad_norm": 0.2227829396724701,
+ "learning_rate": 0.0006,
+ "loss": 4.157566547393799,
+ "step": 979
+ },
+ {
+ "epoch": 13.615115771079074,
+ "grad_norm": 0.21478354930877686,
+ "learning_rate": 0.0006,
+ "loss": 4.131053447723389,
+ "step": 980
+ },
+ {
+ "epoch": 13.629095674967235,
+ "grad_norm": 0.1978664994239807,
+ "learning_rate": 0.0006,
+ "loss": 4.123660564422607,
+ "step": 981
+ },
+ {
+ "epoch": 13.643075578855395,
+ "grad_norm": 0.19980201125144958,
+ "learning_rate": 0.0006,
+ "loss": 4.174160480499268,
+ "step": 982
+ },
+ {
+ "epoch": 13.657055482743557,
+ "grad_norm": 0.19815555214881897,
+ "learning_rate": 0.0006,
+ "loss": 4.181703090667725,
+ "step": 983
+ },
+ {
+ "epoch": 13.671035386631717,
+ "grad_norm": 0.19524012506008148,
+ "learning_rate": 0.0006,
+ "loss": 4.163766860961914,
+ "step": 984
+ },
+ {
+ "epoch": 13.685015290519878,
+ "grad_norm": 0.2286096215248108,
+ "learning_rate": 0.0006,
+ "loss": 4.172213554382324,
+ "step": 985
+ },
+ {
+ "epoch": 13.698995194408038,
+ "grad_norm": 0.2210782766342163,
+ "learning_rate": 0.0006,
+ "loss": 4.187033653259277,
+ "step": 986
+ },
+ {
+ "epoch": 13.7129750982962,
+ "grad_norm": 0.21874216198921204,
+ "learning_rate": 0.0006,
+ "loss": 4.125125885009766,
+ "step": 987
+ },
+ {
+ "epoch": 13.72695500218436,
+ "grad_norm": 0.22848057746887207,
+ "learning_rate": 0.0006,
+ "loss": 4.153496742248535,
+ "step": 988
+ },
+ {
+ "epoch": 13.740934906072521,
+ "grad_norm": 0.2250450700521469,
+ "learning_rate": 0.0006,
+ "loss": 4.149165630340576,
+ "step": 989
+ },
+ {
+ "epoch": 13.754914809960681,
+ "grad_norm": 0.21443772315979004,
+ "learning_rate": 0.0006,
+ "loss": 4.1528825759887695,
+ "step": 990
+ },
+ {
+ "epoch": 13.768894713848843,
+ "grad_norm": 0.21927927434444427,
+ "learning_rate": 0.0006,
+ "loss": 4.146831512451172,
+ "step": 991
+ },
+ {
+ "epoch": 13.782874617737003,
+ "grad_norm": 0.2413124144077301,
+ "learning_rate": 0.0006,
+ "loss": 4.136909008026123,
+ "step": 992
+ },
+ {
+ "epoch": 13.796854521625164,
+ "grad_norm": 0.2603479325771332,
+ "learning_rate": 0.0006,
+ "loss": 4.12525749206543,
+ "step": 993
+ },
+ {
+ "epoch": 13.810834425513324,
+ "grad_norm": 0.26246970891952515,
+ "learning_rate": 0.0006,
+ "loss": 4.114049434661865,
+ "step": 994
+ },
+ {
+ "epoch": 13.824814329401486,
+ "grad_norm": 0.27031877636909485,
+ "learning_rate": 0.0006,
+ "loss": 4.1646552085876465,
+ "step": 995
+ },
+ {
+ "epoch": 13.838794233289645,
+ "grad_norm": 0.2499857395887375,
+ "learning_rate": 0.0006,
+ "loss": 4.139284133911133,
+ "step": 996
+ },
+ {
+ "epoch": 13.852774137177807,
+ "grad_norm": 0.22026537358760834,
+ "learning_rate": 0.0006,
+ "loss": 4.142191410064697,
+ "step": 997
+ },
+ {
+ "epoch": 13.866754041065967,
+ "grad_norm": 0.23738551139831543,
+ "learning_rate": 0.0006,
+ "loss": 4.1422882080078125,
+ "step": 998
+ },
+ {
+ "epoch": 13.880733944954128,
+ "grad_norm": 0.2416357398033142,
+ "learning_rate": 0.0006,
+ "loss": 4.14063835144043,
+ "step": 999
+ },
+ {
+ "epoch": 13.89471384884229,
+ "grad_norm": 0.33822184801101685,
+ "learning_rate": 0.0006,
+ "loss": 4.12839412689209,
+ "step": 1000
+ },
+ {
+ "epoch": 13.90869375273045,
+ "grad_norm": 0.3409678339958191,
+ "learning_rate": 0.0006,
+ "loss": 4.145351886749268,
+ "step": 1001
+ },
+ {
+ "epoch": 13.922673656618612,
+ "grad_norm": 0.2467597872018814,
+ "learning_rate": 0.0006,
+ "loss": 4.155339241027832,
+ "step": 1002
+ },
+ {
+ "epoch": 13.936653560506771,
+ "grad_norm": 0.2314649075269699,
+ "learning_rate": 0.0006,
+ "loss": 4.130176067352295,
+ "step": 1003
+ },
+ {
+ "epoch": 13.950633464394933,
+ "grad_norm": 0.23701290786266327,
+ "learning_rate": 0.0006,
+ "loss": 4.19205379486084,
+ "step": 1004
+ },
+ {
+ "epoch": 13.964613368283093,
+ "grad_norm": 0.2466491460800171,
+ "learning_rate": 0.0006,
+ "loss": 4.118908882141113,
+ "step": 1005
+ },
+ {
+ "epoch": 13.978593272171254,
+ "grad_norm": 0.23746836185455322,
+ "learning_rate": 0.0006,
+ "loss": 4.16111946105957,
+ "step": 1006
+ },
+ {
+ "epoch": 13.992573176059414,
+ "grad_norm": 0.24497751891613007,
+ "learning_rate": 0.0006,
+ "loss": 4.148624420166016,
+ "step": 1007
+ },
+ {
+ "epoch": 14.0,
+ "grad_norm": 0.25735899806022644,
+ "learning_rate": 0.0006,
+ "loss": 4.12002420425415,
+ "step": 1008
+ },
+ {
+ "epoch": 14.0,
+ "eval_loss": 4.335351467132568,
+ "eval_runtime": 44.0523,
+ "eval_samples_per_second": 55.434,
+ "eval_steps_per_second": 3.473,
+ "step": 1008
+ },
+ {
+ "epoch": 14.013979903888162,
+ "grad_norm": 0.24570082128047943,
+ "learning_rate": 0.0006,
+ "loss": 4.1036176681518555,
+ "step": 1009
+ },
+ {
+ "epoch": 14.027959807776321,
+ "grad_norm": 0.2525855302810669,
+ "learning_rate": 0.0006,
+ "loss": 4.142077445983887,
+ "step": 1010
+ },
+ {
+ "epoch": 14.041939711664483,
+ "grad_norm": 0.2701111435890198,
+ "learning_rate": 0.0006,
+ "loss": 4.096988677978516,
+ "step": 1011
+ },
+ {
+ "epoch": 14.055919615552643,
+ "grad_norm": 0.28173309564590454,
+ "learning_rate": 0.0006,
+ "loss": 4.148448944091797,
+ "step": 1012
+ },
+ {
+ "epoch": 14.069899519440805,
+ "grad_norm": 0.2651294469833374,
+ "learning_rate": 0.0006,
+ "loss": 4.121731281280518,
+ "step": 1013
+ },
+ {
+ "epoch": 14.083879423328964,
+ "grad_norm": 0.21160121262073517,
+ "learning_rate": 0.0006,
+ "loss": 4.108980178833008,
+ "step": 1014
+ },
+ {
+ "epoch": 14.097859327217126,
+ "grad_norm": 0.24786953628063202,
+ "learning_rate": 0.0006,
+ "loss": 4.133942604064941,
+ "step": 1015
+ },
+ {
+ "epoch": 14.111839231105286,
+ "grad_norm": 0.2722747027873993,
+ "learning_rate": 0.0006,
+ "loss": 4.115242958068848,
+ "step": 1016
+ },
+ {
+ "epoch": 14.125819134993447,
+ "grad_norm": 0.273360013961792,
+ "learning_rate": 0.0006,
+ "loss": 4.059296607971191,
+ "step": 1017
+ },
+ {
+ "epoch": 14.139799038881607,
+ "grad_norm": 0.2541784942150116,
+ "learning_rate": 0.0006,
+ "loss": 4.118365287780762,
+ "step": 1018
+ },
+ {
+ "epoch": 14.153778942769769,
+ "grad_norm": 0.23806381225585938,
+ "learning_rate": 0.0006,
+ "loss": 4.102812767028809,
+ "step": 1019
+ },
+ {
+ "epoch": 14.167758846657929,
+ "grad_norm": 0.2541005313396454,
+ "learning_rate": 0.0006,
+ "loss": 4.093264579772949,
+ "step": 1020
+ },
+ {
+ "epoch": 14.18173875054609,
+ "grad_norm": 0.2619539499282837,
+ "learning_rate": 0.0006,
+ "loss": 4.114917278289795,
+ "step": 1021
+ },
+ {
+ "epoch": 14.19571865443425,
+ "grad_norm": 0.2466963529586792,
+ "learning_rate": 0.0006,
+ "loss": 4.098258972167969,
+ "step": 1022
+ },
+ {
+ "epoch": 14.209698558322412,
+ "grad_norm": 0.24341611564159393,
+ "learning_rate": 0.0006,
+ "loss": 4.109346389770508,
+ "step": 1023
+ },
+ {
+ "epoch": 14.223678462210572,
+ "grad_norm": 0.23977765440940857,
+ "learning_rate": 0.0006,
+ "loss": 4.106716156005859,
+ "step": 1024
+ },
+ {
+ "epoch": 14.237658366098733,
+ "grad_norm": 0.253528356552124,
+ "learning_rate": 0.0006,
+ "loss": 4.102226257324219,
+ "step": 1025
+ },
+ {
+ "epoch": 14.251638269986893,
+ "grad_norm": 0.26954543590545654,
+ "learning_rate": 0.0006,
+ "loss": 4.107413291931152,
+ "step": 1026
+ },
+ {
+ "epoch": 14.265618173875055,
+ "grad_norm": 0.2610514760017395,
+ "learning_rate": 0.0006,
+ "loss": 4.110824108123779,
+ "step": 1027
+ },
+ {
+ "epoch": 14.279598077763215,
+ "grad_norm": 0.2579168677330017,
+ "learning_rate": 0.0006,
+ "loss": 4.082438945770264,
+ "step": 1028
+ },
+ {
+ "epoch": 14.293577981651376,
+ "grad_norm": 0.26916536688804626,
+ "learning_rate": 0.0006,
+ "loss": 4.075734615325928,
+ "step": 1029
+ },
+ {
+ "epoch": 14.307557885539538,
+ "grad_norm": 0.2998618185520172,
+ "learning_rate": 0.0006,
+ "loss": 4.088419437408447,
+ "step": 1030
+ },
+ {
+ "epoch": 14.321537789427698,
+ "grad_norm": 0.3162737190723419,
+ "learning_rate": 0.0006,
+ "loss": 4.125833034515381,
+ "step": 1031
+ },
+ {
+ "epoch": 14.33551769331586,
+ "grad_norm": 0.318601131439209,
+ "learning_rate": 0.0006,
+ "loss": 4.077424049377441,
+ "step": 1032
+ },
+ {
+ "epoch": 14.349497597204019,
+ "grad_norm": 0.32113415002822876,
+ "learning_rate": 0.0006,
+ "loss": 4.113360404968262,
+ "step": 1033
+ },
+ {
+ "epoch": 14.36347750109218,
+ "grad_norm": 0.3150886297225952,
+ "learning_rate": 0.0006,
+ "loss": 4.100013732910156,
+ "step": 1034
+ },
+ {
+ "epoch": 14.37745740498034,
+ "grad_norm": 0.29279956221580505,
+ "learning_rate": 0.0006,
+ "loss": 4.136394500732422,
+ "step": 1035
+ },
+ {
+ "epoch": 14.391437308868502,
+ "grad_norm": 0.28532543778419495,
+ "learning_rate": 0.0006,
+ "loss": 4.138948440551758,
+ "step": 1036
+ },
+ {
+ "epoch": 14.405417212756662,
+ "grad_norm": 0.2825978398323059,
+ "learning_rate": 0.0006,
+ "loss": 4.112217903137207,
+ "step": 1037
+ },
+ {
+ "epoch": 14.419397116644824,
+ "grad_norm": 0.2891198694705963,
+ "learning_rate": 0.0006,
+ "loss": 4.102682113647461,
+ "step": 1038
+ },
+ {
+ "epoch": 14.433377020532983,
+ "grad_norm": 0.2917391061782837,
+ "learning_rate": 0.0006,
+ "loss": 4.120752811431885,
+ "step": 1039
+ },
+ {
+ "epoch": 14.447356924421145,
+ "grad_norm": 0.2589806914329529,
+ "learning_rate": 0.0006,
+ "loss": 4.130519390106201,
+ "step": 1040
+ },
+ {
+ "epoch": 14.461336828309305,
+ "grad_norm": 0.2674788534641266,
+ "learning_rate": 0.0006,
+ "loss": 4.130382537841797,
+ "step": 1041
+ },
+ {
+ "epoch": 14.475316732197467,
+ "grad_norm": 0.2820362150669098,
+ "learning_rate": 0.0006,
+ "loss": 4.13947868347168,
+ "step": 1042
+ },
+ {
+ "epoch": 14.489296636085626,
+ "grad_norm": 0.2650109529495239,
+ "learning_rate": 0.0006,
+ "loss": 4.130346775054932,
+ "step": 1043
+ },
+ {
+ "epoch": 14.503276539973788,
+ "grad_norm": 0.29137638211250305,
+ "learning_rate": 0.0006,
+ "loss": 4.055751800537109,
+ "step": 1044
+ },
+ {
+ "epoch": 14.517256443861948,
+ "grad_norm": 0.3232433497905731,
+ "learning_rate": 0.0006,
+ "loss": 4.114810943603516,
+ "step": 1045
+ },
+ {
+ "epoch": 14.53123634775011,
+ "grad_norm": 0.2724473476409912,
+ "learning_rate": 0.0006,
+ "loss": 4.088351249694824,
+ "step": 1046
+ },
+ {
+ "epoch": 14.54521625163827,
+ "grad_norm": 0.23994430899620056,
+ "learning_rate": 0.0006,
+ "loss": 4.110936164855957,
+ "step": 1047
+ },
+ {
+ "epoch": 14.55919615552643,
+ "grad_norm": 0.2422720044851303,
+ "learning_rate": 0.0006,
+ "loss": 4.132844924926758,
+ "step": 1048
+ },
+ {
+ "epoch": 14.57317605941459,
+ "grad_norm": 0.21148815751075745,
+ "learning_rate": 0.0006,
+ "loss": 4.102499961853027,
+ "step": 1049
+ },
+ {
+ "epoch": 14.587155963302752,
+ "grad_norm": 0.22221639752388,
+ "learning_rate": 0.0006,
+ "loss": 4.126241683959961,
+ "step": 1050
+ },
+ {
+ "epoch": 14.601135867190912,
+ "grad_norm": 0.2538735866546631,
+ "learning_rate": 0.0006,
+ "loss": 4.116817951202393,
+ "step": 1051
+ },
+ {
+ "epoch": 14.615115771079074,
+ "grad_norm": 0.2555900514125824,
+ "learning_rate": 0.0006,
+ "loss": 4.106309413909912,
+ "step": 1052
+ },
+ {
+ "epoch": 14.629095674967235,
+ "grad_norm": 0.24753783643245697,
+ "learning_rate": 0.0006,
+ "loss": 4.1015119552612305,
+ "step": 1053
+ },
+ {
+ "epoch": 14.643075578855395,
+ "grad_norm": 0.238885298371315,
+ "learning_rate": 0.0006,
+ "loss": 4.120419502258301,
+ "step": 1054
+ },
+ {
+ "epoch": 14.657055482743557,
+ "grad_norm": 0.22693610191345215,
+ "learning_rate": 0.0006,
+ "loss": 4.084968566894531,
+ "step": 1055
+ },
+ {
+ "epoch": 14.671035386631717,
+ "grad_norm": 0.2100025862455368,
+ "learning_rate": 0.0006,
+ "loss": 4.108001708984375,
+ "step": 1056
+ },
+ {
+ "epoch": 14.685015290519878,
+ "grad_norm": 0.20437054336071014,
+ "learning_rate": 0.0006,
+ "loss": 4.151417255401611,
+ "step": 1057
+ },
+ {
+ "epoch": 14.698995194408038,
+ "grad_norm": 0.1926720291376114,
+ "learning_rate": 0.0006,
+ "loss": 4.091334342956543,
+ "step": 1058
+ },
+ {
+ "epoch": 14.7129750982962,
+ "grad_norm": 0.2120140641927719,
+ "learning_rate": 0.0006,
+ "loss": 4.111706256866455,
+ "step": 1059
+ },
+ {
+ "epoch": 14.72695500218436,
+ "grad_norm": 0.22877076268196106,
+ "learning_rate": 0.0006,
+ "loss": 4.123166084289551,
+ "step": 1060
+ },
+ {
+ "epoch": 14.740934906072521,
+ "grad_norm": 0.22149473428726196,
+ "learning_rate": 0.0006,
+ "loss": 4.099740028381348,
+ "step": 1061
+ },
+ {
+ "epoch": 14.754914809960681,
+ "grad_norm": 0.2351604402065277,
+ "learning_rate": 0.0006,
+ "loss": 4.066174507141113,
+ "step": 1062
+ },
+ {
+ "epoch": 14.768894713848843,
+ "grad_norm": 0.22895802557468414,
+ "learning_rate": 0.0006,
+ "loss": 4.101897239685059,
+ "step": 1063
+ },
+ {
+ "epoch": 14.782874617737003,
+ "grad_norm": 0.22050750255584717,
+ "learning_rate": 0.0006,
+ "loss": 4.122953414916992,
+ "step": 1064
+ },
+ {
+ "epoch": 14.796854521625164,
+ "grad_norm": 0.23255324363708496,
+ "learning_rate": 0.0006,
+ "loss": 4.11297607421875,
+ "step": 1065
+ },
+ {
+ "epoch": 14.810834425513324,
+ "grad_norm": 0.24522703886032104,
+ "learning_rate": 0.0006,
+ "loss": 4.131030082702637,
+ "step": 1066
+ },
+ {
+ "epoch": 14.824814329401486,
+ "grad_norm": 0.2492702752351761,
+ "learning_rate": 0.0006,
+ "loss": 4.076324939727783,
+ "step": 1067
+ },
+ {
+ "epoch": 14.838794233289645,
+ "grad_norm": 0.24410948157310486,
+ "learning_rate": 0.0006,
+ "loss": 4.109020709991455,
+ "step": 1068
+ },
+ {
+ "epoch": 14.852774137177807,
+ "grad_norm": 0.2463168203830719,
+ "learning_rate": 0.0006,
+ "loss": 4.135679244995117,
+ "step": 1069
+ },
+ {
+ "epoch": 14.866754041065967,
+ "grad_norm": 0.2563146650791168,
+ "learning_rate": 0.0006,
+ "loss": 4.0958027839660645,
+ "step": 1070
+ },
+ {
+ "epoch": 14.880733944954128,
+ "grad_norm": 0.261167049407959,
+ "learning_rate": 0.0006,
+ "loss": 4.114803314208984,
+ "step": 1071
+ },
+ {
+ "epoch": 14.89471384884229,
+ "grad_norm": 0.2593795955181122,
+ "learning_rate": 0.0006,
+ "loss": 4.1210618019104,
+ "step": 1072
+ },
+ {
+ "epoch": 14.90869375273045,
+ "grad_norm": 0.27184173464775085,
+ "learning_rate": 0.0006,
+ "loss": 4.095145225524902,
+ "step": 1073
+ },
+ {
+ "epoch": 14.922673656618612,
+ "grad_norm": 0.25289732217788696,
+ "learning_rate": 0.0006,
+ "loss": 4.107388973236084,
+ "step": 1074
+ },
+ {
+ "epoch": 14.936653560506771,
+ "grad_norm": 0.2176840454339981,
+ "learning_rate": 0.0006,
+ "loss": 4.105966567993164,
+ "step": 1075
+ },
+ {
+ "epoch": 14.950633464394933,
+ "grad_norm": 0.20930173993110657,
+ "learning_rate": 0.0006,
+ "loss": 4.126853942871094,
+ "step": 1076
+ },
+ {
+ "epoch": 14.964613368283093,
+ "grad_norm": 0.20850051939487457,
+ "learning_rate": 0.0006,
+ "loss": 4.074934959411621,
+ "step": 1077
+ },
+ {
+ "epoch": 14.978593272171254,
+ "grad_norm": 0.21987544000148773,
+ "learning_rate": 0.0006,
+ "loss": 4.123321533203125,
+ "step": 1078
+ },
+ {
+ "epoch": 14.992573176059414,
+ "grad_norm": 0.23821689188480377,
+ "learning_rate": 0.0006,
+ "loss": 4.082647323608398,
+ "step": 1079
+ },
+ {
+ "epoch": 15.0,
+ "grad_norm": 0.2590881288051605,
+ "learning_rate": 0.0006,
+ "loss": 4.113482475280762,
+ "step": 1080
+ },
+ {
+ "epoch": 15.0,
+ "eval_loss": 4.286936283111572,
+ "eval_runtime": 44.2665,
+ "eval_samples_per_second": 55.166,
+ "eval_steps_per_second": 3.456,
+ "step": 1080
+ },
+ {
+ "epoch": 15.013979903888162,
+ "grad_norm": 0.27885961532592773,
+ "learning_rate": 0.0006,
+ "loss": 4.0825958251953125,
+ "step": 1081
+ },
+ {
+ "epoch": 15.027959807776321,
+ "grad_norm": 0.2751246690750122,
+ "learning_rate": 0.0006,
+ "loss": 4.049782752990723,
+ "step": 1082
+ },
+ {
+ "epoch": 15.041939711664483,
+ "grad_norm": 0.25238561630249023,
+ "learning_rate": 0.0006,
+ "loss": 4.067366600036621,
+ "step": 1083
+ },
+ {
+ "epoch": 15.055919615552643,
+ "grad_norm": 0.27481040358543396,
+ "learning_rate": 0.0006,
+ "loss": 4.089946746826172,
+ "step": 1084
+ },
+ {
+ "epoch": 15.069899519440805,
+ "grad_norm": 0.2666703164577484,
+ "learning_rate": 0.0006,
+ "loss": 4.071957588195801,
+ "step": 1085
+ },
+ {
+ "epoch": 15.083879423328964,
+ "grad_norm": 0.2532065212726593,
+ "learning_rate": 0.0006,
+ "loss": 4.091561794281006,
+ "step": 1086
+ },
+ {
+ "epoch": 15.097859327217126,
+ "grad_norm": 0.23562374711036682,
+ "learning_rate": 0.0006,
+ "loss": 4.074953079223633,
+ "step": 1087
+ },
+ {
+ "epoch": 15.111839231105286,
+ "grad_norm": 0.2498065084218979,
+ "learning_rate": 0.0006,
+ "loss": 4.056004047393799,
+ "step": 1088
+ },
+ {
+ "epoch": 15.125819134993447,
+ "grad_norm": 0.257046639919281,
+ "learning_rate": 0.0006,
+ "loss": 4.044149875640869,
+ "step": 1089
+ },
+ {
+ "epoch": 15.139799038881607,
+ "grad_norm": 0.2417808622121811,
+ "learning_rate": 0.0006,
+ "loss": 4.071811676025391,
+ "step": 1090
+ },
+ {
+ "epoch": 15.153778942769769,
+ "grad_norm": 0.24742013216018677,
+ "learning_rate": 0.0006,
+ "loss": 4.081482887268066,
+ "step": 1091
+ },
+ {
+ "epoch": 15.167758846657929,
+ "grad_norm": 0.2610231637954712,
+ "learning_rate": 0.0006,
+ "loss": 4.06953763961792,
+ "step": 1092
+ },
+ {
+ "epoch": 15.18173875054609,
+ "grad_norm": 0.24688200652599335,
+ "learning_rate": 0.0006,
+ "loss": 4.079700469970703,
+ "step": 1093
+ },
+ {
+ "epoch": 15.19571865443425,
+ "grad_norm": 0.2650167942047119,
+ "learning_rate": 0.0006,
+ "loss": 4.082088947296143,
+ "step": 1094
+ },
+ {
+ "epoch": 15.209698558322412,
+ "grad_norm": 0.25913330912590027,
+ "learning_rate": 0.0006,
+ "loss": 4.081713676452637,
+ "step": 1095
+ },
+ {
+ "epoch": 15.223678462210572,
+ "grad_norm": 0.2547631561756134,
+ "learning_rate": 0.0006,
+ "loss": 4.073573112487793,
+ "step": 1096
+ },
+ {
+ "epoch": 15.237658366098733,
+ "grad_norm": 0.2732609510421753,
+ "learning_rate": 0.0006,
+ "loss": 4.10186767578125,
+ "step": 1097
+ },
+ {
+ "epoch": 15.251638269986893,
+ "grad_norm": 0.2990017533302307,
+ "learning_rate": 0.0006,
+ "loss": 4.085466384887695,
+ "step": 1098
+ },
+ {
+ "epoch": 15.265618173875055,
+ "grad_norm": 0.30252209305763245,
+ "learning_rate": 0.0006,
+ "loss": 4.077337265014648,
+ "step": 1099
+ },
+ {
+ "epoch": 15.279598077763215,
+ "grad_norm": 0.30046045780181885,
+ "learning_rate": 0.0006,
+ "loss": 4.0895891189575195,
+ "step": 1100
+ },
+ {
+ "epoch": 15.293577981651376,
+ "grad_norm": 0.2779843211174011,
+ "learning_rate": 0.0006,
+ "loss": 4.060354709625244,
+ "step": 1101
+ },
+ {
+ "epoch": 15.307557885539538,
+ "grad_norm": 0.26914986968040466,
+ "learning_rate": 0.0006,
+ "loss": 4.07314395904541,
+ "step": 1102
+ },
+ {
+ "epoch": 15.321537789427698,
+ "grad_norm": 0.24605873227119446,
+ "learning_rate": 0.0006,
+ "loss": 4.051377296447754,
+ "step": 1103
+ },
+ {
+ "epoch": 15.33551769331586,
+ "grad_norm": 0.25634095072746277,
+ "learning_rate": 0.0006,
+ "loss": 4.082427024841309,
+ "step": 1104
+ },
+ {
+ "epoch": 15.349497597204019,
+ "grad_norm": 0.2888158857822418,
+ "learning_rate": 0.0006,
+ "loss": 4.074253082275391,
+ "step": 1105
+ },
+ {
+ "epoch": 15.36347750109218,
+ "grad_norm": 0.2758261561393738,
+ "learning_rate": 0.0006,
+ "loss": 4.08344841003418,
+ "step": 1106
+ },
+ {
+ "epoch": 15.37745740498034,
+ "grad_norm": 0.26937270164489746,
+ "learning_rate": 0.0006,
+ "loss": 4.063424587249756,
+ "step": 1107
+ },
+ {
+ "epoch": 15.391437308868502,
+ "grad_norm": 0.2739955484867096,
+ "learning_rate": 0.0006,
+ "loss": 4.08005952835083,
+ "step": 1108
+ },
+ {
+ "epoch": 15.405417212756662,
+ "grad_norm": 0.2635386288166046,
+ "learning_rate": 0.0006,
+ "loss": 4.087360382080078,
+ "step": 1109
+ },
+ {
+ "epoch": 15.419397116644824,
+ "grad_norm": 0.2619768977165222,
+ "learning_rate": 0.0006,
+ "loss": 4.072653770446777,
+ "step": 1110
+ },
+ {
+ "epoch": 15.433377020532983,
+ "grad_norm": 0.24154804646968842,
+ "learning_rate": 0.0006,
+ "loss": 4.084464073181152,
+ "step": 1111
+ },
+ {
+ "epoch": 15.447356924421145,
+ "grad_norm": 0.24236027896404266,
+ "learning_rate": 0.0006,
+ "loss": 4.078777313232422,
+ "step": 1112
+ },
+ {
+ "epoch": 15.461336828309305,
+ "grad_norm": 0.24653038382530212,
+ "learning_rate": 0.0006,
+ "loss": 4.075024604797363,
+ "step": 1113
+ },
+ {
+ "epoch": 15.475316732197467,
+ "grad_norm": 0.27106523513793945,
+ "learning_rate": 0.0006,
+ "loss": 4.060937881469727,
+ "step": 1114
+ },
+ {
+ "epoch": 15.489296636085626,
+ "grad_norm": 0.25109633803367615,
+ "learning_rate": 0.0006,
+ "loss": 4.081971168518066,
+ "step": 1115
+ },
+ {
+ "epoch": 15.503276539973788,
+ "grad_norm": 0.23452287912368774,
+ "learning_rate": 0.0006,
+ "loss": 4.0762834548950195,
+ "step": 1116
+ },
+ {
+ "epoch": 15.517256443861948,
+ "grad_norm": 0.25415024161338806,
+ "learning_rate": 0.0006,
+ "loss": 4.069386959075928,
+ "step": 1117
+ },
+ {
+ "epoch": 15.53123634775011,
+ "grad_norm": 0.25448229908943176,
+ "learning_rate": 0.0006,
+ "loss": 4.075098514556885,
+ "step": 1118
+ },
+ {
+ "epoch": 15.54521625163827,
+ "grad_norm": 0.25679755210876465,
+ "learning_rate": 0.0006,
+ "loss": 4.097431182861328,
+ "step": 1119
+ },
+ {
+ "epoch": 15.55919615552643,
+ "grad_norm": 0.25973212718963623,
+ "learning_rate": 0.0006,
+ "loss": 4.058948516845703,
+ "step": 1120
+ },
+ {
+ "epoch": 15.57317605941459,
+ "grad_norm": 0.24511456489562988,
+ "learning_rate": 0.0006,
+ "loss": 4.092263698577881,
+ "step": 1121
+ },
+ {
+ "epoch": 15.587155963302752,
+ "grad_norm": 0.22949442267417908,
+ "learning_rate": 0.0006,
+ "loss": 4.0526604652404785,
+ "step": 1122
+ },
+ {
+ "epoch": 15.601135867190912,
+ "grad_norm": 0.22486285865306854,
+ "learning_rate": 0.0006,
+ "loss": 4.051939010620117,
+ "step": 1123
+ },
+ {
+ "epoch": 15.615115771079074,
+ "grad_norm": 0.22183601558208466,
+ "learning_rate": 0.0006,
+ "loss": 4.065430641174316,
+ "step": 1124
+ },
+ {
+ "epoch": 15.629095674967235,
+ "grad_norm": 0.2531328797340393,
+ "learning_rate": 0.0006,
+ "loss": 4.069165229797363,
+ "step": 1125
+ },
+ {
+ "epoch": 15.643075578855395,
+ "grad_norm": 0.24403320252895355,
+ "learning_rate": 0.0006,
+ "loss": 4.055041790008545,
+ "step": 1126
+ },
+ {
+ "epoch": 15.657055482743557,
+ "grad_norm": 0.24504756927490234,
+ "learning_rate": 0.0006,
+ "loss": 4.035850524902344,
+ "step": 1127
+ },
+ {
+ "epoch": 15.671035386631717,
+ "grad_norm": 0.23812057077884674,
+ "learning_rate": 0.0006,
+ "loss": 4.049278259277344,
+ "step": 1128
+ },
+ {
+ "epoch": 15.685015290519878,
+ "grad_norm": 0.23694153130054474,
+ "learning_rate": 0.0006,
+ "loss": 4.065816402435303,
+ "step": 1129
+ },
+ {
+ "epoch": 15.698995194408038,
+ "grad_norm": 0.23252786695957184,
+ "learning_rate": 0.0006,
+ "loss": 4.05952262878418,
+ "step": 1130
+ },
+ {
+ "epoch": 15.7129750982962,
+ "grad_norm": 0.2243805080652237,
+ "learning_rate": 0.0006,
+ "loss": 4.058291435241699,
+ "step": 1131
+ },
+ {
+ "epoch": 15.72695500218436,
+ "grad_norm": 0.2200988084077835,
+ "learning_rate": 0.0006,
+ "loss": 4.040788650512695,
+ "step": 1132
+ },
+ {
+ "epoch": 15.740934906072521,
+ "grad_norm": 0.21460631489753723,
+ "learning_rate": 0.0006,
+ "loss": 4.072552680969238,
+ "step": 1133
+ },
+ {
+ "epoch": 15.754914809960681,
+ "grad_norm": 0.2056441456079483,
+ "learning_rate": 0.0006,
+ "loss": 4.059467315673828,
+ "step": 1134
+ },
+ {
+ "epoch": 15.768894713848843,
+ "grad_norm": 0.2068045437335968,
+ "learning_rate": 0.0006,
+ "loss": 4.063803195953369,
+ "step": 1135
+ },
+ {
+ "epoch": 15.782874617737003,
+ "grad_norm": 0.21307601034641266,
+ "learning_rate": 0.0006,
+ "loss": 4.093092918395996,
+ "step": 1136
+ },
+ {
+ "epoch": 15.796854521625164,
+ "grad_norm": 0.20729634165763855,
+ "learning_rate": 0.0006,
+ "loss": 4.066030502319336,
+ "step": 1137
+ },
+ {
+ "epoch": 15.810834425513324,
+ "grad_norm": 0.2097514122724533,
+ "learning_rate": 0.0006,
+ "loss": 4.077326774597168,
+ "step": 1138
+ },
+ {
+ "epoch": 15.824814329401486,
+ "grad_norm": 0.21884000301361084,
+ "learning_rate": 0.0006,
+ "loss": 4.0595598220825195,
+ "step": 1139
+ },
+ {
+ "epoch": 15.838794233289645,
+ "grad_norm": 0.22220250964164734,
+ "learning_rate": 0.0006,
+ "loss": 4.061574459075928,
+ "step": 1140
+ },
+ {
+ "epoch": 15.852774137177807,
+ "grad_norm": 0.23189949989318848,
+ "learning_rate": 0.0006,
+ "loss": 4.0504045486450195,
+ "step": 1141
+ },
+ {
+ "epoch": 15.866754041065967,
+ "grad_norm": 0.226649671792984,
+ "learning_rate": 0.0006,
+ "loss": 4.060986518859863,
+ "step": 1142
+ },
+ {
+ "epoch": 15.880733944954128,
+ "grad_norm": 0.2456834763288498,
+ "learning_rate": 0.0006,
+ "loss": 4.038525581359863,
+ "step": 1143
+ },
+ {
+ "epoch": 15.89471384884229,
+ "grad_norm": 0.2818352282047272,
+ "learning_rate": 0.0006,
+ "loss": 4.062709331512451,
+ "step": 1144
+ },
+ {
+ "epoch": 15.90869375273045,
+ "grad_norm": 0.2850170135498047,
+ "learning_rate": 0.0006,
+ "loss": 4.0683274269104,
+ "step": 1145
+ },
+ {
+ "epoch": 15.922673656618612,
+ "grad_norm": 0.27691730856895447,
+ "learning_rate": 0.0006,
+ "loss": 4.076540470123291,
+ "step": 1146
+ },
+ {
+ "epoch": 15.936653560506771,
+ "grad_norm": 0.2685548961162567,
+ "learning_rate": 0.0006,
+ "loss": 4.048116683959961,
+ "step": 1147
+ },
+ {
+ "epoch": 15.950633464394933,
+ "grad_norm": 0.2452288419008255,
+ "learning_rate": 0.0006,
+ "loss": 4.06640625,
+ "step": 1148
+ },
+ {
+ "epoch": 15.964613368283093,
+ "grad_norm": 0.2601441740989685,
+ "learning_rate": 0.0006,
+ "loss": 4.073277473449707,
+ "step": 1149
+ },
+ {
+ "epoch": 15.978593272171254,
+ "grad_norm": 0.2748197913169861,
+ "learning_rate": 0.0006,
+ "loss": 4.0332536697387695,
+ "step": 1150
+ },
+ {
+ "epoch": 15.992573176059414,
+ "grad_norm": 0.27249959111213684,
+ "learning_rate": 0.0006,
+ "loss": 3.9952516555786133,
+ "step": 1151
+ },
+ {
+ "epoch": 16.0,
+ "grad_norm": 0.3475601375102997,
+ "learning_rate": 0.0006,
+ "loss": 4.040761947631836,
+ "step": 1152
+ },
+ {
+ "epoch": 16.0,
+ "eval_loss": 4.237997531890869,
+ "eval_runtime": 43.8692,
+ "eval_samples_per_second": 55.665,
+ "eval_steps_per_second": 3.488,
+ "step": 1152
+ },
+ {
+ "epoch": 16.01397990388816,
+ "grad_norm": 0.3365611433982849,
+ "learning_rate": 0.0006,
+ "loss": 4.031302452087402,
+ "step": 1153
+ },
+ {
+ "epoch": 16.027959807776323,
+ "grad_norm": 0.3020530641078949,
+ "learning_rate": 0.0006,
+ "loss": 4.036273956298828,
+ "step": 1154
+ },
+ {
+ "epoch": 16.041939711664483,
+ "grad_norm": 0.25277993083000183,
+ "learning_rate": 0.0006,
+ "loss": 4.007067680358887,
+ "step": 1155
+ },
+ {
+ "epoch": 16.055919615552643,
+ "grad_norm": 0.24762840569019318,
+ "learning_rate": 0.0006,
+ "loss": 4.046561241149902,
+ "step": 1156
+ },
+ {
+ "epoch": 16.069899519440803,
+ "grad_norm": 0.25236397981643677,
+ "learning_rate": 0.0006,
+ "loss": 4.061616897583008,
+ "step": 1157
+ },
+ {
+ "epoch": 16.083879423328966,
+ "grad_norm": 0.22789105772972107,
+ "learning_rate": 0.0006,
+ "loss": 4.010061740875244,
+ "step": 1158
+ },
+ {
+ "epoch": 16.097859327217126,
+ "grad_norm": 0.21866244077682495,
+ "learning_rate": 0.0006,
+ "loss": 4.0181097984313965,
+ "step": 1159
+ },
+ {
+ "epoch": 16.111839231105286,
+ "grad_norm": 0.21889029443264008,
+ "learning_rate": 0.0006,
+ "loss": 4.012239456176758,
+ "step": 1160
+ },
+ {
+ "epoch": 16.125819134993446,
+ "grad_norm": 0.23002485930919647,
+ "learning_rate": 0.0006,
+ "loss": 4.034092426300049,
+ "step": 1161
+ },
+ {
+ "epoch": 16.13979903888161,
+ "grad_norm": 0.2271798551082611,
+ "learning_rate": 0.0006,
+ "loss": 4.026222229003906,
+ "step": 1162
+ },
+ {
+ "epoch": 16.15377894276977,
+ "grad_norm": 0.238200843334198,
+ "learning_rate": 0.0006,
+ "loss": 4.044692039489746,
+ "step": 1163
+ },
+ {
+ "epoch": 16.16775884665793,
+ "grad_norm": 0.2281467169523239,
+ "learning_rate": 0.0006,
+ "loss": 4.032305717468262,
+ "step": 1164
+ },
+ {
+ "epoch": 16.18173875054609,
+ "grad_norm": 0.2213946431875229,
+ "learning_rate": 0.0006,
+ "loss": 4.048737525939941,
+ "step": 1165
+ },
+ {
+ "epoch": 16.195718654434252,
+ "grad_norm": 0.26638558506965637,
+ "learning_rate": 0.0006,
+ "loss": 4.006335258483887,
+ "step": 1166
+ },
+ {
+ "epoch": 16.209698558322412,
+ "grad_norm": 0.2780219316482544,
+ "learning_rate": 0.0006,
+ "loss": 4.049234390258789,
+ "step": 1167
+ },
+ {
+ "epoch": 16.22367846221057,
+ "grad_norm": 0.27425870299339294,
+ "learning_rate": 0.0006,
+ "loss": 4.017177104949951,
+ "step": 1168
+ },
+ {
+ "epoch": 16.23765836609873,
+ "grad_norm": 0.2596667408943176,
+ "learning_rate": 0.0006,
+ "loss": 4.022942543029785,
+ "step": 1169
+ },
+ {
+ "epoch": 16.251638269986895,
+ "grad_norm": 0.26972314715385437,
+ "learning_rate": 0.0006,
+ "loss": 4.035310745239258,
+ "step": 1170
+ },
+ {
+ "epoch": 16.265618173875055,
+ "grad_norm": 0.2677772045135498,
+ "learning_rate": 0.0006,
+ "loss": 4.0280561447143555,
+ "step": 1171
+ },
+ {
+ "epoch": 16.279598077763215,
+ "grad_norm": 0.25433358550071716,
+ "learning_rate": 0.0006,
+ "loss": 4.03616189956665,
+ "step": 1172
+ },
+ {
+ "epoch": 16.293577981651374,
+ "grad_norm": 0.2583644688129425,
+ "learning_rate": 0.0006,
+ "loss": 4.073624134063721,
+ "step": 1173
+ },
+ {
+ "epoch": 16.307557885539538,
+ "grad_norm": 0.25437524914741516,
+ "learning_rate": 0.0006,
+ "loss": 4.057926654815674,
+ "step": 1174
+ },
+ {
+ "epoch": 16.321537789427698,
+ "grad_norm": 0.2819201350212097,
+ "learning_rate": 0.0006,
+ "loss": 4.020838737487793,
+ "step": 1175
+ },
+ {
+ "epoch": 16.335517693315857,
+ "grad_norm": 0.32689282298088074,
+ "learning_rate": 0.0006,
+ "loss": 4.062448501586914,
+ "step": 1176
+ },
+ {
+ "epoch": 16.34949759720402,
+ "grad_norm": 0.33002278208732605,
+ "learning_rate": 0.0006,
+ "loss": 4.052059173583984,
+ "step": 1177
+ },
+ {
+ "epoch": 16.36347750109218,
+ "grad_norm": 0.32472696900367737,
+ "learning_rate": 0.0006,
+ "loss": 4.042375564575195,
+ "step": 1178
+ },
+ {
+ "epoch": 16.37745740498034,
+ "grad_norm": 0.35279813408851624,
+ "learning_rate": 0.0006,
+ "loss": 4.028722763061523,
+ "step": 1179
+ },
+ {
+ "epoch": 16.3914373088685,
+ "grad_norm": 0.3243204951286316,
+ "learning_rate": 0.0006,
+ "loss": 4.045693874359131,
+ "step": 1180
+ },
+ {
+ "epoch": 16.405417212756664,
+ "grad_norm": 0.32171115279197693,
+ "learning_rate": 0.0006,
+ "loss": 4.018350124359131,
+ "step": 1181
+ },
+ {
+ "epoch": 16.419397116644824,
+ "grad_norm": 0.31459906697273254,
+ "learning_rate": 0.0006,
+ "loss": 4.039547443389893,
+ "step": 1182
+ },
+ {
+ "epoch": 16.433377020532983,
+ "grad_norm": 0.35038673877716064,
+ "learning_rate": 0.0006,
+ "loss": 4.005928039550781,
+ "step": 1183
+ },
+ {
+ "epoch": 16.447356924421143,
+ "grad_norm": 0.34110963344573975,
+ "learning_rate": 0.0006,
+ "loss": 4.042272090911865,
+ "step": 1184
+ },
+ {
+ "epoch": 16.461336828309307,
+ "grad_norm": 0.33760902285575867,
+ "learning_rate": 0.0006,
+ "loss": 4.02886962890625,
+ "step": 1185
+ },
+ {
+ "epoch": 16.475316732197467,
+ "grad_norm": 0.3162464499473572,
+ "learning_rate": 0.0006,
+ "loss": 4.059924125671387,
+ "step": 1186
+ },
+ {
+ "epoch": 16.489296636085626,
+ "grad_norm": 0.2667233645915985,
+ "learning_rate": 0.0006,
+ "loss": 4.069073677062988,
+ "step": 1187
+ },
+ {
+ "epoch": 16.503276539973786,
+ "grad_norm": 0.22626568377017975,
+ "learning_rate": 0.0006,
+ "loss": 4.044912338256836,
+ "step": 1188
+ },
+ {
+ "epoch": 16.51725644386195,
+ "grad_norm": 0.203303262591362,
+ "learning_rate": 0.0006,
+ "loss": 4.025210380554199,
+ "step": 1189
+ },
+ {
+ "epoch": 16.53123634775011,
+ "grad_norm": 0.2108820080757141,
+ "learning_rate": 0.0006,
+ "loss": 4.035998821258545,
+ "step": 1190
+ },
+ {
+ "epoch": 16.54521625163827,
+ "grad_norm": 0.20451335608959198,
+ "learning_rate": 0.0006,
+ "loss": 4.043377876281738,
+ "step": 1191
+ },
+ {
+ "epoch": 16.55919615552643,
+ "grad_norm": 0.23348836600780487,
+ "learning_rate": 0.0006,
+ "loss": 4.033735275268555,
+ "step": 1192
+ },
+ {
+ "epoch": 16.573176059414592,
+ "grad_norm": 0.24438607692718506,
+ "learning_rate": 0.0006,
+ "loss": 4.071747779846191,
+ "step": 1193
+ },
+ {
+ "epoch": 16.587155963302752,
+ "grad_norm": 0.24233631789684296,
+ "learning_rate": 0.0006,
+ "loss": 4.0138702392578125,
+ "step": 1194
+ },
+ {
+ "epoch": 16.601135867190912,
+ "grad_norm": 0.21625740826129913,
+ "learning_rate": 0.0006,
+ "loss": 4.013422012329102,
+ "step": 1195
+ },
+ {
+ "epoch": 16.615115771079076,
+ "grad_norm": 0.22447720170021057,
+ "learning_rate": 0.0006,
+ "loss": 4.056326866149902,
+ "step": 1196
+ },
+ {
+ "epoch": 16.629095674967235,
+ "grad_norm": 0.21899616718292236,
+ "learning_rate": 0.0006,
+ "loss": 4.006134033203125,
+ "step": 1197
+ },
+ {
+ "epoch": 16.643075578855395,
+ "grad_norm": 0.191362664103508,
+ "learning_rate": 0.0006,
+ "loss": 4.036748886108398,
+ "step": 1198
+ },
+ {
+ "epoch": 16.657055482743555,
+ "grad_norm": 0.20203463733196259,
+ "learning_rate": 0.0006,
+ "loss": 4.006264686584473,
+ "step": 1199
+ },
+ {
+ "epoch": 16.67103538663172,
+ "grad_norm": 0.20209139585494995,
+ "learning_rate": 0.0006,
+ "loss": 4.059018135070801,
+ "step": 1200
+ },
+ {
+ "epoch": 16.68501529051988,
+ "grad_norm": 0.20811820030212402,
+ "learning_rate": 0.0006,
+ "loss": 4.054325103759766,
+ "step": 1201
+ },
+ {
+ "epoch": 16.698995194408038,
+ "grad_norm": 0.22448928654193878,
+ "learning_rate": 0.0006,
+ "loss": 3.996121406555176,
+ "step": 1202
+ },
+ {
+ "epoch": 16.712975098296198,
+ "grad_norm": 0.21692240238189697,
+ "learning_rate": 0.0006,
+ "loss": 4.042046546936035,
+ "step": 1203
+ },
+ {
+ "epoch": 16.72695500218436,
+ "grad_norm": 0.20688563585281372,
+ "learning_rate": 0.0006,
+ "loss": 4.002251625061035,
+ "step": 1204
+ },
+ {
+ "epoch": 16.74093490607252,
+ "grad_norm": 0.1835535764694214,
+ "learning_rate": 0.0006,
+ "loss": 4.02545166015625,
+ "step": 1205
+ },
+ {
+ "epoch": 16.75491480996068,
+ "grad_norm": 0.20532558858394623,
+ "learning_rate": 0.0006,
+ "loss": 4.039333343505859,
+ "step": 1206
+ },
+ {
+ "epoch": 16.76889471384884,
+ "grad_norm": 0.2214215099811554,
+ "learning_rate": 0.0006,
+ "loss": 4.037858486175537,
+ "step": 1207
+ },
+ {
+ "epoch": 16.782874617737004,
+ "grad_norm": 0.24926038086414337,
+ "learning_rate": 0.0006,
+ "loss": 4.024799346923828,
+ "step": 1208
+ },
+ {
+ "epoch": 16.796854521625164,
+ "grad_norm": 0.26057952642440796,
+ "learning_rate": 0.0006,
+ "loss": 4.042788505554199,
+ "step": 1209
+ },
+ {
+ "epoch": 16.810834425513324,
+ "grad_norm": 0.2501208782196045,
+ "learning_rate": 0.0006,
+ "loss": 4.051809310913086,
+ "step": 1210
+ },
+ {
+ "epoch": 16.824814329401484,
+ "grad_norm": 0.21760012209415436,
+ "learning_rate": 0.0006,
+ "loss": 4.063589096069336,
+ "step": 1211
+ },
+ {
+ "epoch": 16.838794233289647,
+ "grad_norm": 0.2243622988462448,
+ "learning_rate": 0.0006,
+ "loss": 4.008829593658447,
+ "step": 1212
+ },
+ {
+ "epoch": 16.852774137177807,
+ "grad_norm": 0.2399163395166397,
+ "learning_rate": 0.0006,
+ "loss": 4.013262748718262,
+ "step": 1213
+ },
+ {
+ "epoch": 16.866754041065967,
+ "grad_norm": 0.23187831044197083,
+ "learning_rate": 0.0006,
+ "loss": 4.023053169250488,
+ "step": 1214
+ },
+ {
+ "epoch": 16.88073394495413,
+ "grad_norm": 0.23723892867565155,
+ "learning_rate": 0.0006,
+ "loss": 3.991321563720703,
+ "step": 1215
+ },
+ {
+ "epoch": 16.89471384884229,
+ "grad_norm": 0.21766342222690582,
+ "learning_rate": 0.0006,
+ "loss": 4.0250773429870605,
+ "step": 1216
+ },
+ {
+ "epoch": 16.90869375273045,
+ "grad_norm": 0.20715023577213287,
+ "learning_rate": 0.0006,
+ "loss": 4.063642978668213,
+ "step": 1217
+ },
+ {
+ "epoch": 16.92267365661861,
+ "grad_norm": 0.20165133476257324,
+ "learning_rate": 0.0006,
+ "loss": 3.9951367378234863,
+ "step": 1218
+ },
+ {
+ "epoch": 16.936653560506773,
+ "grad_norm": 0.19956178963184357,
+ "learning_rate": 0.0006,
+ "loss": 4.025641441345215,
+ "step": 1219
+ },
+ {
+ "epoch": 16.950633464394933,
+ "grad_norm": 0.2175494134426117,
+ "learning_rate": 0.0006,
+ "loss": 4.030346393585205,
+ "step": 1220
+ },
+ {
+ "epoch": 16.964613368283093,
+ "grad_norm": 0.22365593910217285,
+ "learning_rate": 0.0006,
+ "loss": 4.018105506896973,
+ "step": 1221
+ },
+ {
+ "epoch": 16.978593272171253,
+ "grad_norm": 0.21251538395881653,
+ "learning_rate": 0.0006,
+ "loss": 4.023580074310303,
+ "step": 1222
+ },
+ {
+ "epoch": 16.992573176059416,
+ "grad_norm": 0.2230125218629837,
+ "learning_rate": 0.0006,
+ "loss": 4.001980304718018,
+ "step": 1223
+ },
+ {
+ "epoch": 17.0,
+ "grad_norm": 0.24261972308158875,
+ "learning_rate": 0.0006,
+ "loss": 4.081348896026611,
+ "step": 1224
+ },
+ {
+ "epoch": 17.0,
+ "eval_loss": 4.225194931030273,
+ "eval_runtime": 44.247,
+ "eval_samples_per_second": 55.19,
+ "eval_steps_per_second": 3.458,
+ "step": 1224
+ },
+ {
+ "epoch": 17.01397990388816,
+ "grad_norm": 0.2438880205154419,
+ "learning_rate": 0.0006,
+ "loss": 4.0164794921875,
+ "step": 1225
+ },
+ {
+ "epoch": 17.027959807776323,
+ "grad_norm": 0.22459383308887482,
+ "learning_rate": 0.0006,
+ "loss": 3.991623878479004,
+ "step": 1226
+ },
+ {
+ "epoch": 17.041939711664483,
+ "grad_norm": 0.25021040439605713,
+ "learning_rate": 0.0006,
+ "loss": 4.003020286560059,
+ "step": 1227
+ },
+ {
+ "epoch": 17.055919615552643,
+ "grad_norm": 0.30358025431632996,
+ "learning_rate": 0.0006,
+ "loss": 3.980921983718872,
+ "step": 1228
+ },
+ {
+ "epoch": 17.069899519440803,
+ "grad_norm": 0.27313271164894104,
+ "learning_rate": 0.0006,
+ "loss": 3.992398977279663,
+ "step": 1229
+ },
+ {
+ "epoch": 17.083879423328966,
+ "grad_norm": 0.2293211966753006,
+ "learning_rate": 0.0006,
+ "loss": 4.02568244934082,
+ "step": 1230
+ },
+ {
+ "epoch": 17.097859327217126,
+ "grad_norm": 0.2363300621509552,
+ "learning_rate": 0.0006,
+ "loss": 3.977229356765747,
+ "step": 1231
+ },
+ {
+ "epoch": 17.111839231105286,
+ "grad_norm": 0.2809674143791199,
+ "learning_rate": 0.0006,
+ "loss": 3.9720497131347656,
+ "step": 1232
+ },
+ {
+ "epoch": 17.125819134993446,
+ "grad_norm": 0.2913855016231537,
+ "learning_rate": 0.0006,
+ "loss": 3.979529857635498,
+ "step": 1233
+ },
+ {
+ "epoch": 17.13979903888161,
+ "grad_norm": 0.2920287251472473,
+ "learning_rate": 0.0006,
+ "loss": 3.9678473472595215,
+ "step": 1234
+ },
+ {
+ "epoch": 17.15377894276977,
+ "grad_norm": 0.2521543502807617,
+ "learning_rate": 0.0006,
+ "loss": 3.9912607669830322,
+ "step": 1235
+ },
+ {
+ "epoch": 17.16775884665793,
+ "grad_norm": 0.22844268381595612,
+ "learning_rate": 0.0006,
+ "loss": 3.9898228645324707,
+ "step": 1236
+ },
+ {
+ "epoch": 17.18173875054609,
+ "grad_norm": 0.2199884057044983,
+ "learning_rate": 0.0006,
+ "loss": 4.0050740242004395,
+ "step": 1237
+ },
+ {
+ "epoch": 17.195718654434252,
+ "grad_norm": 0.23072892427444458,
+ "learning_rate": 0.0006,
+ "loss": 3.9957475662231445,
+ "step": 1238
+ },
+ {
+ "epoch": 17.209698558322412,
+ "grad_norm": 0.2034899890422821,
+ "learning_rate": 0.0006,
+ "loss": 3.9672317504882812,
+ "step": 1239
+ },
+ {
+ "epoch": 17.22367846221057,
+ "grad_norm": 0.21826180815696716,
+ "learning_rate": 0.0006,
+ "loss": 3.98543119430542,
+ "step": 1240
+ },
+ {
+ "epoch": 17.23765836609873,
+ "grad_norm": 0.21203237771987915,
+ "learning_rate": 0.0006,
+ "loss": 3.9971959590911865,
+ "step": 1241
+ },
+ {
+ "epoch": 17.251638269986895,
+ "grad_norm": 0.22139234840869904,
+ "learning_rate": 0.0006,
+ "loss": 4.017539978027344,
+ "step": 1242
+ },
+ {
+ "epoch": 17.265618173875055,
+ "grad_norm": 0.21553276479244232,
+ "learning_rate": 0.0006,
+ "loss": 3.98740553855896,
+ "step": 1243
+ },
+ {
+ "epoch": 17.279598077763215,
+ "grad_norm": 0.23259080946445465,
+ "learning_rate": 0.0006,
+ "loss": 3.9963035583496094,
+ "step": 1244
+ },
+ {
+ "epoch": 17.293577981651374,
+ "grad_norm": 0.2527932822704315,
+ "learning_rate": 0.0006,
+ "loss": 4.0202956199646,
+ "step": 1245
+ },
+ {
+ "epoch": 17.307557885539538,
+ "grad_norm": 0.28669068217277527,
+ "learning_rate": 0.0006,
+ "loss": 3.9947609901428223,
+ "step": 1246
+ },
+ {
+ "epoch": 17.321537789427698,
+ "grad_norm": 0.341602623462677,
+ "learning_rate": 0.0006,
+ "loss": 3.997032642364502,
+ "step": 1247
+ },
+ {
+ "epoch": 17.335517693315857,
+ "grad_norm": 0.3364104926586151,
+ "learning_rate": 0.0006,
+ "loss": 3.9881834983825684,
+ "step": 1248
+ },
+ {
+ "epoch": 17.34949759720402,
+ "grad_norm": 0.2979278266429901,
+ "learning_rate": 0.0006,
+ "loss": 4.045898914337158,
+ "step": 1249
+ },
+ {
+ "epoch": 17.36347750109218,
+ "grad_norm": 0.2857462465763092,
+ "learning_rate": 0.0006,
+ "loss": 4.0085272789001465,
+ "step": 1250
+ },
+ {
+ "epoch": 17.37745740498034,
+ "grad_norm": 0.2689058780670166,
+ "learning_rate": 0.0006,
+ "loss": 4.021465301513672,
+ "step": 1251
+ },
+ {
+ "epoch": 17.3914373088685,
+ "grad_norm": 0.24943363666534424,
+ "learning_rate": 0.0006,
+ "loss": 4.003451347351074,
+ "step": 1252
+ },
+ {
+ "epoch": 17.405417212756664,
+ "grad_norm": 0.2635347843170166,
+ "learning_rate": 0.0006,
+ "loss": 3.9837827682495117,
+ "step": 1253
+ },
+ {
+ "epoch": 17.419397116644824,
+ "grad_norm": 0.29126450419425964,
+ "learning_rate": 0.0006,
+ "loss": 3.9857311248779297,
+ "step": 1254
+ },
+ {
+ "epoch": 17.433377020532983,
+ "grad_norm": 0.3166918456554413,
+ "learning_rate": 0.0006,
+ "loss": 3.9842967987060547,
+ "step": 1255
+ },
+ {
+ "epoch": 17.447356924421143,
+ "grad_norm": 0.27869969606399536,
+ "learning_rate": 0.0006,
+ "loss": 4.012607574462891,
+ "step": 1256
+ },
+ {
+ "epoch": 17.461336828309307,
+ "grad_norm": 0.23719419538974762,
+ "learning_rate": 0.0006,
+ "loss": 3.981034755706787,
+ "step": 1257
+ },
+ {
+ "epoch": 17.475316732197467,
+ "grad_norm": 0.22687610983848572,
+ "learning_rate": 0.0006,
+ "loss": 4.011059761047363,
+ "step": 1258
+ },
+ {
+ "epoch": 17.489296636085626,
+ "grad_norm": 0.22034095227718353,
+ "learning_rate": 0.0006,
+ "loss": 4.015044689178467,
+ "step": 1259
+ },
+ {
+ "epoch": 17.503276539973786,
+ "grad_norm": 0.21208405494689941,
+ "learning_rate": 0.0006,
+ "loss": 4.003793716430664,
+ "step": 1260
+ },
+ {
+ "epoch": 17.51725644386195,
+ "grad_norm": 0.21759214997291565,
+ "learning_rate": 0.0006,
+ "loss": 3.978652238845825,
+ "step": 1261
+ },
+ {
+ "epoch": 17.53123634775011,
+ "grad_norm": 0.22481068968772888,
+ "learning_rate": 0.0006,
+ "loss": 4.034845352172852,
+ "step": 1262
+ },
+ {
+ "epoch": 17.54521625163827,
+ "grad_norm": 0.20376387238502502,
+ "learning_rate": 0.0006,
+ "loss": 3.990541934967041,
+ "step": 1263
+ },
+ {
+ "epoch": 17.55919615552643,
+ "grad_norm": 0.20459355413913727,
+ "learning_rate": 0.0006,
+ "loss": 4.006990432739258,
+ "step": 1264
+ },
+ {
+ "epoch": 17.573176059414592,
+ "grad_norm": 0.19306913018226624,
+ "learning_rate": 0.0006,
+ "loss": 3.993408679962158,
+ "step": 1265
+ },
+ {
+ "epoch": 17.587155963302752,
+ "grad_norm": 0.20727239549160004,
+ "learning_rate": 0.0006,
+ "loss": 3.988016128540039,
+ "step": 1266
+ },
+ {
+ "epoch": 17.601135867190912,
+ "grad_norm": 0.20213133096694946,
+ "learning_rate": 0.0006,
+ "loss": 4.0120368003845215,
+ "step": 1267
+ },
+ {
+ "epoch": 17.615115771079076,
+ "grad_norm": 0.21074117720127106,
+ "learning_rate": 0.0006,
+ "loss": 4.048871040344238,
+ "step": 1268
+ },
+ {
+ "epoch": 17.629095674967235,
+ "grad_norm": 0.2074330598115921,
+ "learning_rate": 0.0006,
+ "loss": 3.997509002685547,
+ "step": 1269
+ },
+ {
+ "epoch": 17.643075578855395,
+ "grad_norm": 0.20383669435977936,
+ "learning_rate": 0.0006,
+ "loss": 4.0028839111328125,
+ "step": 1270
+ },
+ {
+ "epoch": 17.657055482743555,
+ "grad_norm": 0.2060765027999878,
+ "learning_rate": 0.0006,
+ "loss": 3.998032331466675,
+ "step": 1271
+ },
+ {
+ "epoch": 17.67103538663172,
+ "grad_norm": 0.21851404011249542,
+ "learning_rate": 0.0006,
+ "loss": 3.9928741455078125,
+ "step": 1272
+ },
+ {
+ "epoch": 17.68501529051988,
+ "grad_norm": 0.24324250221252441,
+ "learning_rate": 0.0006,
+ "loss": 3.9896507263183594,
+ "step": 1273
+ },
+ {
+ "epoch": 17.698995194408038,
+ "grad_norm": 0.25584331154823303,
+ "learning_rate": 0.0006,
+ "loss": 4.010485649108887,
+ "step": 1274
+ },
+ {
+ "epoch": 17.712975098296198,
+ "grad_norm": 0.2490610033273697,
+ "learning_rate": 0.0006,
+ "loss": 3.9906954765319824,
+ "step": 1275
+ },
+ {
+ "epoch": 17.72695500218436,
+ "grad_norm": 0.24241414666175842,
+ "learning_rate": 0.0006,
+ "loss": 4.016420364379883,
+ "step": 1276
+ },
+ {
+ "epoch": 17.74093490607252,
+ "grad_norm": 0.2222128063440323,
+ "learning_rate": 0.0006,
+ "loss": 4.009827136993408,
+ "step": 1277
+ },
+ {
+ "epoch": 17.75491480996068,
+ "grad_norm": 0.23119516670703888,
+ "learning_rate": 0.0006,
+ "loss": 4.0034589767456055,
+ "step": 1278
+ },
+ {
+ "epoch": 17.76889471384884,
+ "grad_norm": 0.24596457183361053,
+ "learning_rate": 0.0006,
+ "loss": 4.003161907196045,
+ "step": 1279
+ },
+ {
+ "epoch": 17.782874617737004,
+ "grad_norm": 0.2607562839984894,
+ "learning_rate": 0.0006,
+ "loss": 3.9894633293151855,
+ "step": 1280
+ },
+ {
+ "epoch": 17.796854521625164,
+ "grad_norm": 0.28706878423690796,
+ "learning_rate": 0.0006,
+ "loss": 4.005712985992432,
+ "step": 1281
+ },
+ {
+ "epoch": 17.810834425513324,
+ "grad_norm": 0.27178290486335754,
+ "learning_rate": 0.0006,
+ "loss": 3.9784536361694336,
+ "step": 1282
+ },
+ {
+ "epoch": 17.824814329401484,
+ "grad_norm": 0.27962708473205566,
+ "learning_rate": 0.0006,
+ "loss": 4.012705326080322,
+ "step": 1283
+ },
+ {
+ "epoch": 17.838794233289647,
+ "grad_norm": 0.29147693514823914,
+ "learning_rate": 0.0006,
+ "loss": 4.0159783363342285,
+ "step": 1284
+ },
+ {
+ "epoch": 17.852774137177807,
+ "grad_norm": 0.2841821312904358,
+ "learning_rate": 0.0006,
+ "loss": 4.011552810668945,
+ "step": 1285
+ },
+ {
+ "epoch": 17.866754041065967,
+ "grad_norm": 0.24924969673156738,
+ "learning_rate": 0.0006,
+ "loss": 3.992421865463257,
+ "step": 1286
+ },
+ {
+ "epoch": 17.88073394495413,
+ "grad_norm": 0.24850749969482422,
+ "learning_rate": 0.0006,
+ "loss": 3.974897861480713,
+ "step": 1287
+ },
+ {
+ "epoch": 17.89471384884229,
+ "grad_norm": 0.2409554123878479,
+ "learning_rate": 0.0006,
+ "loss": 4.002941131591797,
+ "step": 1288
+ },
+ {
+ "epoch": 17.90869375273045,
+ "grad_norm": 0.2656126320362091,
+ "learning_rate": 0.0006,
+ "loss": 3.9804210662841797,
+ "step": 1289
+ },
+ {
+ "epoch": 17.92267365661861,
+ "grad_norm": 0.28210243582725525,
+ "learning_rate": 0.0006,
+ "loss": 4.007192134857178,
+ "step": 1290
+ },
+ {
+ "epoch": 17.936653560506773,
+ "grad_norm": 0.28427553176879883,
+ "learning_rate": 0.0006,
+ "loss": 3.9739556312561035,
+ "step": 1291
+ },
+ {
+ "epoch": 17.950633464394933,
+ "grad_norm": 0.28893420100212097,
+ "learning_rate": 0.0006,
+ "loss": 4.004766941070557,
+ "step": 1292
+ },
+ {
+ "epoch": 17.964613368283093,
+ "grad_norm": 0.2831471562385559,
+ "learning_rate": 0.0006,
+ "loss": 3.984936237335205,
+ "step": 1293
+ },
+ {
+ "epoch": 17.978593272171253,
+ "grad_norm": 0.2518300712108612,
+ "learning_rate": 0.0006,
+ "loss": 4.002814292907715,
+ "step": 1294
+ },
+ {
+ "epoch": 17.992573176059416,
+ "grad_norm": 0.24264675378799438,
+ "learning_rate": 0.0006,
+ "loss": 3.998900890350342,
+ "step": 1295
+ },
+ {
+ "epoch": 18.0,
+ "grad_norm": 0.24474996328353882,
+ "learning_rate": 0.0006,
+ "loss": 3.974229335784912,
+ "step": 1296
+ },
+ {
+ "epoch": 18.0,
+ "eval_loss": 4.195685863494873,
+ "eval_runtime": 44.0709,
+ "eval_samples_per_second": 55.411,
+ "eval_steps_per_second": 3.472,
+ "step": 1296
+ },
+ {
+ "epoch": 18.01397990388816,
+ "grad_norm": 0.2553016245365143,
+ "learning_rate": 0.0006,
+ "loss": 3.9522247314453125,
+ "step": 1297
+ },
+ {
+ "epoch": 18.027959807776323,
+ "grad_norm": 0.22350727021694183,
+ "learning_rate": 0.0006,
+ "loss": 3.9850122928619385,
+ "step": 1298
+ },
+ {
+ "epoch": 18.041939711664483,
+ "grad_norm": 0.23935550451278687,
+ "learning_rate": 0.0006,
+ "loss": 3.9758832454681396,
+ "step": 1299
+ },
+ {
+ "epoch": 18.055919615552643,
+ "grad_norm": 0.23868797719478607,
+ "learning_rate": 0.0006,
+ "loss": 3.9567959308624268,
+ "step": 1300
+ },
+ {
+ "epoch": 18.069899519440803,
+ "grad_norm": 0.23102357983589172,
+ "learning_rate": 0.0006,
+ "loss": 3.9399867057800293,
+ "step": 1301
+ },
+ {
+ "epoch": 18.083879423328966,
+ "grad_norm": 0.23706983029842377,
+ "learning_rate": 0.0006,
+ "loss": 3.993434190750122,
+ "step": 1302
+ },
+ {
+ "epoch": 18.097859327217126,
+ "grad_norm": 0.22207573056221008,
+ "learning_rate": 0.0006,
+ "loss": 3.993436574935913,
+ "step": 1303
+ },
+ {
+ "epoch": 18.111839231105286,
+ "grad_norm": 0.23975296318531036,
+ "learning_rate": 0.0006,
+ "loss": 3.981943368911743,
+ "step": 1304
+ },
+ {
+ "epoch": 18.125819134993446,
+ "grad_norm": 0.2520582675933838,
+ "learning_rate": 0.0006,
+ "loss": 3.965493679046631,
+ "step": 1305
+ },
+ {
+ "epoch": 18.13979903888161,
+ "grad_norm": 0.2230956256389618,
+ "learning_rate": 0.0006,
+ "loss": 3.9360928535461426,
+ "step": 1306
+ },
+ {
+ "epoch": 18.15377894276977,
+ "grad_norm": 0.22527500987052917,
+ "learning_rate": 0.0006,
+ "loss": 3.9814581871032715,
+ "step": 1307
+ },
+ {
+ "epoch": 18.16775884665793,
+ "grad_norm": 0.22389626502990723,
+ "learning_rate": 0.0006,
+ "loss": 3.961590051651001,
+ "step": 1308
+ },
+ {
+ "epoch": 18.18173875054609,
+ "grad_norm": 0.22279471158981323,
+ "learning_rate": 0.0006,
+ "loss": 3.952338695526123,
+ "step": 1309
+ },
+ {
+ "epoch": 18.195718654434252,
+ "grad_norm": 0.24635115265846252,
+ "learning_rate": 0.0006,
+ "loss": 3.9693849086761475,
+ "step": 1310
+ },
+ {
+ "epoch": 18.209698558322412,
+ "grad_norm": 0.2757279872894287,
+ "learning_rate": 0.0006,
+ "loss": 3.9956700801849365,
+ "step": 1311
+ },
+ {
+ "epoch": 18.22367846221057,
+ "grad_norm": 0.2619115710258484,
+ "learning_rate": 0.0006,
+ "loss": 3.948878765106201,
+ "step": 1312
+ },
+ {
+ "epoch": 18.23765836609873,
+ "grad_norm": 0.22853828966617584,
+ "learning_rate": 0.0006,
+ "loss": 3.9545674324035645,
+ "step": 1313
+ },
+ {
+ "epoch": 18.251638269986895,
+ "grad_norm": 0.22904761135578156,
+ "learning_rate": 0.0006,
+ "loss": 3.947535991668701,
+ "step": 1314
+ },
+ {
+ "epoch": 18.265618173875055,
+ "grad_norm": 0.23592644929885864,
+ "learning_rate": 0.0006,
+ "loss": 3.971926212310791,
+ "step": 1315
+ },
+ {
+ "epoch": 18.279598077763215,
+ "grad_norm": 0.22120243310928345,
+ "learning_rate": 0.0006,
+ "loss": 3.9471049308776855,
+ "step": 1316
+ },
+ {
+ "epoch": 18.293577981651374,
+ "grad_norm": 0.20308749377727509,
+ "learning_rate": 0.0006,
+ "loss": 3.967449188232422,
+ "step": 1317
+ },
+ {
+ "epoch": 18.307557885539538,
+ "grad_norm": 0.20013529062271118,
+ "learning_rate": 0.0006,
+ "loss": 3.966151237487793,
+ "step": 1318
+ },
+ {
+ "epoch": 18.321537789427698,
+ "grad_norm": 0.20635221898555756,
+ "learning_rate": 0.0006,
+ "loss": 3.9908885955810547,
+ "step": 1319
+ },
+ {
+ "epoch": 18.335517693315857,
+ "grad_norm": 0.2232237160205841,
+ "learning_rate": 0.0006,
+ "loss": 3.9488768577575684,
+ "step": 1320
+ },
+ {
+ "epoch": 18.34949759720402,
+ "grad_norm": 0.21916444599628448,
+ "learning_rate": 0.0006,
+ "loss": 3.973428726196289,
+ "step": 1321
+ },
+ {
+ "epoch": 18.36347750109218,
+ "grad_norm": 0.20427337288856506,
+ "learning_rate": 0.0006,
+ "loss": 3.969332695007324,
+ "step": 1322
+ },
+ {
+ "epoch": 18.37745740498034,
+ "grad_norm": 0.20138131082057953,
+ "learning_rate": 0.0006,
+ "loss": 3.9651856422424316,
+ "step": 1323
+ },
+ {
+ "epoch": 18.3914373088685,
+ "grad_norm": 0.18918880820274353,
+ "learning_rate": 0.0006,
+ "loss": 3.9772281646728516,
+ "step": 1324
+ },
+ {
+ "epoch": 18.405417212756664,
+ "grad_norm": 0.1860039383172989,
+ "learning_rate": 0.0006,
+ "loss": 3.9289052486419678,
+ "step": 1325
+ },
+ {
+ "epoch": 18.419397116644824,
+ "grad_norm": 0.19541646540164948,
+ "learning_rate": 0.0006,
+ "loss": 3.9527673721313477,
+ "step": 1326
+ },
+ {
+ "epoch": 18.433377020532983,
+ "grad_norm": 0.206914022564888,
+ "learning_rate": 0.0006,
+ "loss": 3.99316143989563,
+ "step": 1327
+ },
+ {
+ "epoch": 18.447356924421143,
+ "grad_norm": 0.209097757935524,
+ "learning_rate": 0.0006,
+ "loss": 3.978130340576172,
+ "step": 1328
+ },
+ {
+ "epoch": 18.461336828309307,
+ "grad_norm": 0.22163373231887817,
+ "learning_rate": 0.0006,
+ "loss": 3.951460361480713,
+ "step": 1329
+ },
+ {
+ "epoch": 18.475316732197467,
+ "grad_norm": 0.21446120738983154,
+ "learning_rate": 0.0006,
+ "loss": 3.963571071624756,
+ "step": 1330
+ },
+ {
+ "epoch": 18.489296636085626,
+ "grad_norm": 0.2341388761997223,
+ "learning_rate": 0.0006,
+ "loss": 4.010684013366699,
+ "step": 1331
+ },
+ {
+ "epoch": 18.503276539973786,
+ "grad_norm": 0.2433937042951584,
+ "learning_rate": 0.0006,
+ "loss": 3.987537384033203,
+ "step": 1332
+ },
+ {
+ "epoch": 18.51725644386195,
+ "grad_norm": 0.24916228652000427,
+ "learning_rate": 0.0006,
+ "loss": 3.953075647354126,
+ "step": 1333
+ },
+ {
+ "epoch": 18.53123634775011,
+ "grad_norm": 0.24542421102523804,
+ "learning_rate": 0.0006,
+ "loss": 3.9510841369628906,
+ "step": 1334
+ },
+ {
+ "epoch": 18.54521625163827,
+ "grad_norm": 0.2393690049648285,
+ "learning_rate": 0.0006,
+ "loss": 3.981747627258301,
+ "step": 1335
+ },
+ {
+ "epoch": 18.55919615552643,
+ "grad_norm": 0.22806711494922638,
+ "learning_rate": 0.0006,
+ "loss": 3.9714856147766113,
+ "step": 1336
+ },
+ {
+ "epoch": 18.573176059414592,
+ "grad_norm": 0.21948303282260895,
+ "learning_rate": 0.0006,
+ "loss": 3.9429898262023926,
+ "step": 1337
+ },
+ {
+ "epoch": 18.587155963302752,
+ "grad_norm": 0.21575778722763062,
+ "learning_rate": 0.0006,
+ "loss": 3.9639933109283447,
+ "step": 1338
+ },
+ {
+ "epoch": 18.601135867190912,
+ "grad_norm": 0.23370565474033356,
+ "learning_rate": 0.0006,
+ "loss": 3.9819254875183105,
+ "step": 1339
+ },
+ {
+ "epoch": 18.615115771079076,
+ "grad_norm": 0.2613106369972229,
+ "learning_rate": 0.0006,
+ "loss": 3.9654669761657715,
+ "step": 1340
+ },
+ {
+ "epoch": 18.629095674967235,
+ "grad_norm": 0.26682716608047485,
+ "learning_rate": 0.0006,
+ "loss": 3.9832968711853027,
+ "step": 1341
+ },
+ {
+ "epoch": 18.643075578855395,
+ "grad_norm": 0.24331490695476532,
+ "learning_rate": 0.0006,
+ "loss": 3.9926600456237793,
+ "step": 1342
+ },
+ {
+ "epoch": 18.657055482743555,
+ "grad_norm": 0.2459341287612915,
+ "learning_rate": 0.0006,
+ "loss": 3.9508986473083496,
+ "step": 1343
+ },
+ {
+ "epoch": 18.67103538663172,
+ "grad_norm": 0.26395753026008606,
+ "learning_rate": 0.0006,
+ "loss": 3.961359977722168,
+ "step": 1344
+ },
+ {
+ "epoch": 18.68501529051988,
+ "grad_norm": 0.26049068570137024,
+ "learning_rate": 0.0006,
+ "loss": 3.9763245582580566,
+ "step": 1345
+ },
+ {
+ "epoch": 18.698995194408038,
+ "grad_norm": 0.24018602073192596,
+ "learning_rate": 0.0006,
+ "loss": 3.951780319213867,
+ "step": 1346
+ },
+ {
+ "epoch": 18.712975098296198,
+ "grad_norm": 0.23886290192604065,
+ "learning_rate": 0.0006,
+ "loss": 3.9883017539978027,
+ "step": 1347
+ },
+ {
+ "epoch": 18.72695500218436,
+ "grad_norm": 0.2293774038553238,
+ "learning_rate": 0.0006,
+ "loss": 3.9852685928344727,
+ "step": 1348
+ },
+ {
+ "epoch": 18.74093490607252,
+ "grad_norm": 0.22172975540161133,
+ "learning_rate": 0.0006,
+ "loss": 3.967550277709961,
+ "step": 1349
+ },
+ {
+ "epoch": 18.75491480996068,
+ "grad_norm": 0.2170475423336029,
+ "learning_rate": 0.0006,
+ "loss": 3.9570775032043457,
+ "step": 1350
+ },
+ {
+ "epoch": 18.76889471384884,
+ "grad_norm": 0.21458806097507477,
+ "learning_rate": 0.0006,
+ "loss": 3.9461212158203125,
+ "step": 1351
+ },
+ {
+ "epoch": 18.782874617737004,
+ "grad_norm": 0.21101507544517517,
+ "learning_rate": 0.0006,
+ "loss": 3.984398365020752,
+ "step": 1352
+ },
+ {
+ "epoch": 18.796854521625164,
+ "grad_norm": 0.23480583727359772,
+ "learning_rate": 0.0006,
+ "loss": 3.950312614440918,
+ "step": 1353
+ },
+ {
+ "epoch": 18.810834425513324,
+ "grad_norm": 0.24728581309318542,
+ "learning_rate": 0.0006,
+ "loss": 3.9572393894195557,
+ "step": 1354
+ },
+ {
+ "epoch": 18.824814329401484,
+ "grad_norm": 0.26063451170921326,
+ "learning_rate": 0.0006,
+ "loss": 3.9653234481811523,
+ "step": 1355
+ },
+ {
+ "epoch": 18.838794233289647,
+ "grad_norm": 0.24679961800575256,
+ "learning_rate": 0.0006,
+ "loss": 3.9560108184814453,
+ "step": 1356
+ },
+ {
+ "epoch": 18.852774137177807,
+ "grad_norm": 0.23199526965618134,
+ "learning_rate": 0.0006,
+ "loss": 3.9948246479034424,
+ "step": 1357
+ },
+ {
+ "epoch": 18.866754041065967,
+ "grad_norm": 0.22619125247001648,
+ "learning_rate": 0.0006,
+ "loss": 3.9783573150634766,
+ "step": 1358
+ },
+ {
+ "epoch": 18.88073394495413,
+ "grad_norm": 0.25499874353408813,
+ "learning_rate": 0.0006,
+ "loss": 3.9674575328826904,
+ "step": 1359
+ },
+ {
+ "epoch": 18.89471384884229,
+ "grad_norm": 0.23961037397384644,
+ "learning_rate": 0.0006,
+ "loss": 3.969209909439087,
+ "step": 1360
+ },
+ {
+ "epoch": 18.90869375273045,
+ "grad_norm": 0.21039162576198578,
+ "learning_rate": 0.0006,
+ "loss": 3.978661060333252,
+ "step": 1361
+ },
+ {
+ "epoch": 18.92267365661861,
+ "grad_norm": 0.2297026664018631,
+ "learning_rate": 0.0006,
+ "loss": 3.9483046531677246,
+ "step": 1362
+ },
+ {
+ "epoch": 18.936653560506773,
+ "grad_norm": 0.26367098093032837,
+ "learning_rate": 0.0006,
+ "loss": 3.927133560180664,
+ "step": 1363
+ },
+ {
+ "epoch": 18.950633464394933,
+ "grad_norm": 0.26893147826194763,
+ "learning_rate": 0.0006,
+ "loss": 3.957932710647583,
+ "step": 1364
+ },
+ {
+ "epoch": 18.964613368283093,
+ "grad_norm": 0.27092233300209045,
+ "learning_rate": 0.0006,
+ "loss": 3.976621150970459,
+ "step": 1365
+ },
+ {
+ "epoch": 18.978593272171253,
+ "grad_norm": 0.2672635018825531,
+ "learning_rate": 0.0006,
+ "loss": 3.9577765464782715,
+ "step": 1366
+ },
+ {
+ "epoch": 18.992573176059416,
+ "grad_norm": 0.2721385359764099,
+ "learning_rate": 0.0006,
+ "loss": 3.986100196838379,
+ "step": 1367
+ },
+ {
+ "epoch": 19.0,
+ "grad_norm": 0.27648621797561646,
+ "learning_rate": 0.0006,
+ "loss": 3.9942402839660645,
+ "step": 1368
+ },
+ {
+ "epoch": 19.0,
+ "eval_loss": 4.180216312408447,
+ "eval_runtime": 44.0079,
+ "eval_samples_per_second": 55.49,
+ "eval_steps_per_second": 3.477,
+ "step": 1368
+ },
+ {
+ "epoch": 19.01397990388816,
+ "grad_norm": 0.2563098073005676,
+ "learning_rate": 0.0006,
+ "loss": 3.9267354011535645,
+ "step": 1369
+ },
+ {
+ "epoch": 19.027959807776323,
+ "grad_norm": 0.2531425952911377,
+ "learning_rate": 0.0006,
+ "loss": 3.9273324012756348,
+ "step": 1370
+ },
+ {
+ "epoch": 19.041939711664483,
+ "grad_norm": 0.27485427260398865,
+ "learning_rate": 0.0006,
+ "loss": 3.9542183876037598,
+ "step": 1371
+ },
+ {
+ "epoch": 19.055919615552643,
+ "grad_norm": 0.27509891986846924,
+ "learning_rate": 0.0006,
+ "loss": 3.921940326690674,
+ "step": 1372
+ },
+ {
+ "epoch": 19.069899519440803,
+ "grad_norm": 0.28154096007347107,
+ "learning_rate": 0.0006,
+ "loss": 3.926743984222412,
+ "step": 1373
+ },
+ {
+ "epoch": 19.083879423328966,
+ "grad_norm": 0.2749912738800049,
+ "learning_rate": 0.0006,
+ "loss": 3.9257748126983643,
+ "step": 1374
+ },
+ {
+ "epoch": 19.097859327217126,
+ "grad_norm": 0.26168501377105713,
+ "learning_rate": 0.0006,
+ "loss": 3.9403202533721924,
+ "step": 1375
+ },
+ {
+ "epoch": 19.111839231105286,
+ "grad_norm": 0.23410023748874664,
+ "learning_rate": 0.0006,
+ "loss": 3.935378313064575,
+ "step": 1376
+ },
+ {
+ "epoch": 19.125819134993446,
+ "grad_norm": 0.25790470838546753,
+ "learning_rate": 0.0006,
+ "loss": 3.946147918701172,
+ "step": 1377
+ },
+ {
+ "epoch": 19.13979903888161,
+ "grad_norm": 0.26704177260398865,
+ "learning_rate": 0.0006,
+ "loss": 3.9511594772338867,
+ "step": 1378
+ },
+ {
+ "epoch": 19.15377894276977,
+ "grad_norm": 0.2560667097568512,
+ "learning_rate": 0.0006,
+ "loss": 3.915806531906128,
+ "step": 1379
+ },
+ {
+ "epoch": 19.16775884665793,
+ "grad_norm": 0.24684149026870728,
+ "learning_rate": 0.0006,
+ "loss": 3.9162003993988037,
+ "step": 1380
+ },
+ {
+ "epoch": 19.18173875054609,
+ "grad_norm": 0.2097567766904831,
+ "learning_rate": 0.0006,
+ "loss": 3.915739059448242,
+ "step": 1381
+ },
+ {
+ "epoch": 19.195718654434252,
+ "grad_norm": 0.21646849811077118,
+ "learning_rate": 0.0006,
+ "loss": 3.9097084999084473,
+ "step": 1382
+ },
+ {
+ "epoch": 19.209698558322412,
+ "grad_norm": 0.20626980066299438,
+ "learning_rate": 0.0006,
+ "loss": 3.9541783332824707,
+ "step": 1383
+ },
+ {
+ "epoch": 19.22367846221057,
+ "grad_norm": 0.23362718522548676,
+ "learning_rate": 0.0006,
+ "loss": 3.950096845626831,
+ "step": 1384
+ },
+ {
+ "epoch": 19.23765836609873,
+ "grad_norm": 0.25402209162712097,
+ "learning_rate": 0.0006,
+ "loss": 3.927671432495117,
+ "step": 1385
+ },
+ {
+ "epoch": 19.251638269986895,
+ "grad_norm": 0.23714083433151245,
+ "learning_rate": 0.0006,
+ "loss": 3.939765453338623,
+ "step": 1386
+ },
+ {
+ "epoch": 19.265618173875055,
+ "grad_norm": 0.20895546674728394,
+ "learning_rate": 0.0006,
+ "loss": 3.9384806156158447,
+ "step": 1387
+ },
+ {
+ "epoch": 19.279598077763215,
+ "grad_norm": 0.21374300122261047,
+ "learning_rate": 0.0006,
+ "loss": 3.9523749351501465,
+ "step": 1388
+ },
+ {
+ "epoch": 19.293577981651374,
+ "grad_norm": 0.210394486784935,
+ "learning_rate": 0.0006,
+ "loss": 3.9540798664093018,
+ "step": 1389
+ },
+ {
+ "epoch": 19.307557885539538,
+ "grad_norm": 0.20646725594997406,
+ "learning_rate": 0.0006,
+ "loss": 3.9514098167419434,
+ "step": 1390
+ },
+ {
+ "epoch": 19.321537789427698,
+ "grad_norm": 0.21477538347244263,
+ "learning_rate": 0.0006,
+ "loss": 3.9369924068450928,
+ "step": 1391
+ },
+ {
+ "epoch": 19.335517693315857,
+ "grad_norm": 0.20431505143642426,
+ "learning_rate": 0.0006,
+ "loss": 3.9389796257019043,
+ "step": 1392
+ },
+ {
+ "epoch": 19.34949759720402,
+ "grad_norm": 0.19575877487659454,
+ "learning_rate": 0.0006,
+ "loss": 3.935976028442383,
+ "step": 1393
+ },
+ {
+ "epoch": 19.36347750109218,
+ "grad_norm": 0.20720405876636505,
+ "learning_rate": 0.0006,
+ "loss": 3.9670963287353516,
+ "step": 1394
+ },
+ {
+ "epoch": 19.37745740498034,
+ "grad_norm": 0.2173967957496643,
+ "learning_rate": 0.0006,
+ "loss": 3.903940439224243,
+ "step": 1395
+ },
+ {
+ "epoch": 19.3914373088685,
+ "grad_norm": 0.2180529683828354,
+ "learning_rate": 0.0006,
+ "loss": 3.8716301918029785,
+ "step": 1396
+ },
+ {
+ "epoch": 19.405417212756664,
+ "grad_norm": 0.20666591823101044,
+ "learning_rate": 0.0006,
+ "loss": 3.930936813354492,
+ "step": 1397
+ },
+ {
+ "epoch": 19.419397116644824,
+ "grad_norm": 0.20353034138679504,
+ "learning_rate": 0.0006,
+ "loss": 3.926954746246338,
+ "step": 1398
+ },
+ {
+ "epoch": 19.433377020532983,
+ "grad_norm": 0.22333289682865143,
+ "learning_rate": 0.0006,
+ "loss": 3.947504997253418,
+ "step": 1399
+ },
+ {
+ "epoch": 19.447356924421143,
+ "grad_norm": 0.21787697076797485,
+ "learning_rate": 0.0006,
+ "loss": 3.9325344562530518,
+ "step": 1400
+ },
+ {
+ "epoch": 19.461336828309307,
+ "grad_norm": 0.22805874049663544,
+ "learning_rate": 0.0006,
+ "loss": 3.9640727043151855,
+ "step": 1401
+ },
+ {
+ "epoch": 19.475316732197467,
+ "grad_norm": 0.22396457195281982,
+ "learning_rate": 0.0006,
+ "loss": 3.9537901878356934,
+ "step": 1402
+ },
+ {
+ "epoch": 19.489296636085626,
+ "grad_norm": 0.2333047240972519,
+ "learning_rate": 0.0006,
+ "loss": 3.935609817504883,
+ "step": 1403
+ },
+ {
+ "epoch": 19.503276539973786,
+ "grad_norm": 0.25063616037368774,
+ "learning_rate": 0.0006,
+ "loss": 3.9659228324890137,
+ "step": 1404
+ },
+ {
+ "epoch": 19.51725644386195,
+ "grad_norm": 0.29074087738990784,
+ "learning_rate": 0.0006,
+ "loss": 3.9552183151245117,
+ "step": 1405
+ },
+ {
+ "epoch": 19.53123634775011,
+ "grad_norm": 0.34876152873039246,
+ "learning_rate": 0.0006,
+ "loss": 3.976163387298584,
+ "step": 1406
+ },
+ {
+ "epoch": 19.54521625163827,
+ "grad_norm": 0.35026612877845764,
+ "learning_rate": 0.0006,
+ "loss": 3.961186408996582,
+ "step": 1407
+ },
+ {
+ "epoch": 19.55919615552643,
+ "grad_norm": 0.3199564218521118,
+ "learning_rate": 0.0006,
+ "loss": 3.9366297721862793,
+ "step": 1408
+ },
+ {
+ "epoch": 19.573176059414592,
+ "grad_norm": 0.2976185977458954,
+ "learning_rate": 0.0006,
+ "loss": 3.9502010345458984,
+ "step": 1409
+ },
+ {
+ "epoch": 19.587155963302752,
+ "grad_norm": 0.2951911687850952,
+ "learning_rate": 0.0006,
+ "loss": 3.9427943229675293,
+ "step": 1410
+ },
+ {
+ "epoch": 19.601135867190912,
+ "grad_norm": 0.27918702363967896,
+ "learning_rate": 0.0006,
+ "loss": 3.963700532913208,
+ "step": 1411
+ },
+ {
+ "epoch": 19.615115771079076,
+ "grad_norm": 0.26197490096092224,
+ "learning_rate": 0.0006,
+ "loss": 3.9636964797973633,
+ "step": 1412
+ },
+ {
+ "epoch": 19.629095674967235,
+ "grad_norm": 0.24242281913757324,
+ "learning_rate": 0.0006,
+ "loss": 3.961815595626831,
+ "step": 1413
+ },
+ {
+ "epoch": 19.643075578855395,
+ "grad_norm": 0.2606375515460968,
+ "learning_rate": 0.0006,
+ "loss": 3.946643352508545,
+ "step": 1414
+ },
+ {
+ "epoch": 19.657055482743555,
+ "grad_norm": 0.23353353142738342,
+ "learning_rate": 0.0006,
+ "loss": 3.973155975341797,
+ "step": 1415
+ },
+ {
+ "epoch": 19.67103538663172,
+ "grad_norm": 0.22872662544250488,
+ "learning_rate": 0.0006,
+ "loss": 3.9528894424438477,
+ "step": 1416
+ },
+ {
+ "epoch": 19.68501529051988,
+ "grad_norm": 0.24678432941436768,
+ "learning_rate": 0.0006,
+ "loss": 3.9313249588012695,
+ "step": 1417
+ },
+ {
+ "epoch": 19.698995194408038,
+ "grad_norm": 0.23895515501499176,
+ "learning_rate": 0.0006,
+ "loss": 3.944082498550415,
+ "step": 1418
+ },
+ {
+ "epoch": 19.712975098296198,
+ "grad_norm": 0.23649105429649353,
+ "learning_rate": 0.0006,
+ "loss": 3.962069034576416,
+ "step": 1419
+ },
+ {
+ "epoch": 19.72695500218436,
+ "grad_norm": 0.22031061351299286,
+ "learning_rate": 0.0006,
+ "loss": 3.912972927093506,
+ "step": 1420
+ },
+ {
+ "epoch": 19.74093490607252,
+ "grad_norm": 0.20231695473194122,
+ "learning_rate": 0.0006,
+ "loss": 3.964531421661377,
+ "step": 1421
+ },
+ {
+ "epoch": 19.75491480996068,
+ "grad_norm": 0.19980913400650024,
+ "learning_rate": 0.0006,
+ "loss": 3.9452600479125977,
+ "step": 1422
+ },
+ {
+ "epoch": 19.76889471384884,
+ "grad_norm": 0.21768775582313538,
+ "learning_rate": 0.0006,
+ "loss": 3.9214301109313965,
+ "step": 1423
+ },
+ {
+ "epoch": 19.782874617737004,
+ "grad_norm": 0.21287119388580322,
+ "learning_rate": 0.0006,
+ "loss": 3.9416494369506836,
+ "step": 1424
+ },
+ {
+ "epoch": 19.796854521625164,
+ "grad_norm": 0.21399827301502228,
+ "learning_rate": 0.0006,
+ "loss": 3.971010208129883,
+ "step": 1425
+ },
+ {
+ "epoch": 19.810834425513324,
+ "grad_norm": 0.1957658976316452,
+ "learning_rate": 0.0006,
+ "loss": 3.936331272125244,
+ "step": 1426
+ },
+ {
+ "epoch": 19.824814329401484,
+ "grad_norm": 0.19341488182544708,
+ "learning_rate": 0.0006,
+ "loss": 3.9321448802948,
+ "step": 1427
+ },
+ {
+ "epoch": 19.838794233289647,
+ "grad_norm": 0.18405723571777344,
+ "learning_rate": 0.0006,
+ "loss": 3.939542293548584,
+ "step": 1428
+ },
+ {
+ "epoch": 19.852774137177807,
+ "grad_norm": 0.19672836363315582,
+ "learning_rate": 0.0006,
+ "loss": 3.939652919769287,
+ "step": 1429
+ },
+ {
+ "epoch": 19.866754041065967,
+ "grad_norm": 0.1998940259218216,
+ "learning_rate": 0.0006,
+ "loss": 3.932892322540283,
+ "step": 1430
+ },
+ {
+ "epoch": 19.88073394495413,
+ "grad_norm": 0.2307668924331665,
+ "learning_rate": 0.0006,
+ "loss": 3.9402761459350586,
+ "step": 1431
+ },
+ {
+ "epoch": 19.89471384884229,
+ "grad_norm": 0.2531987726688385,
+ "learning_rate": 0.0006,
+ "loss": 3.9153199195861816,
+ "step": 1432
+ },
+ {
+ "epoch": 19.90869375273045,
+ "grad_norm": 0.2299388349056244,
+ "learning_rate": 0.0006,
+ "loss": 3.9569954872131348,
+ "step": 1433
+ },
+ {
+ "epoch": 19.92267365661861,
+ "grad_norm": 0.2503527104854584,
+ "learning_rate": 0.0006,
+ "loss": 3.9469428062438965,
+ "step": 1434
+ },
+ {
+ "epoch": 19.936653560506773,
+ "grad_norm": 0.25390249490737915,
+ "learning_rate": 0.0006,
+ "loss": 3.941803455352783,
+ "step": 1435
+ },
+ {
+ "epoch": 19.950633464394933,
+ "grad_norm": 0.2288687825202942,
+ "learning_rate": 0.0006,
+ "loss": 3.9385883808135986,
+ "step": 1436
+ },
+ {
+ "epoch": 19.964613368283093,
+ "grad_norm": 0.2231096774339676,
+ "learning_rate": 0.0006,
+ "loss": 3.9255237579345703,
+ "step": 1437
+ },
+ {
+ "epoch": 19.978593272171253,
+ "grad_norm": 0.20729343593120575,
+ "learning_rate": 0.0006,
+ "loss": 3.9443163871765137,
+ "step": 1438
+ },
+ {
+ "epoch": 19.992573176059416,
+ "grad_norm": 0.197743758559227,
+ "learning_rate": 0.0006,
+ "loss": 3.925455093383789,
+ "step": 1439
+ },
+ {
+ "epoch": 20.0,
+ "grad_norm": 0.23943661153316498,
+ "learning_rate": 0.0006,
+ "loss": 3.9458866119384766,
+ "step": 1440
+ },
+ {
+ "epoch": 20.0,
+ "eval_loss": 4.144192218780518,
+ "eval_runtime": 44.0278,
+ "eval_samples_per_second": 55.465,
+ "eval_steps_per_second": 3.475,
+ "step": 1440
+ },
+ {
+ "epoch": 20.01397990388816,
+ "grad_norm": 0.2032143622636795,
+ "learning_rate": 0.0006,
+ "loss": 3.9151499271392822,
+ "step": 1441
+ },
+ {
+ "epoch": 20.027959807776323,
+ "grad_norm": 0.20164789259433746,
+ "learning_rate": 0.0006,
+ "loss": 3.874115228652954,
+ "step": 1442
+ },
+ {
+ "epoch": 20.041939711664483,
+ "grad_norm": 0.20796619355678558,
+ "learning_rate": 0.0006,
+ "loss": 3.9090776443481445,
+ "step": 1443
+ },
+ {
+ "epoch": 20.055919615552643,
+ "grad_norm": 0.1999918520450592,
+ "learning_rate": 0.0006,
+ "loss": 3.926563262939453,
+ "step": 1444
+ },
+ {
+ "epoch": 20.069899519440803,
+ "grad_norm": 0.204790860414505,
+ "learning_rate": 0.0006,
+ "loss": 3.9088830947875977,
+ "step": 1445
+ },
+ {
+ "epoch": 20.083879423328966,
+ "grad_norm": 0.21507175266742706,
+ "learning_rate": 0.0006,
+ "loss": 3.916504383087158,
+ "step": 1446
+ },
+ {
+ "epoch": 20.097859327217126,
+ "grad_norm": 0.2398025095462799,
+ "learning_rate": 0.0006,
+ "loss": 3.9128990173339844,
+ "step": 1447
+ },
+ {
+ "epoch": 20.111839231105286,
+ "grad_norm": 0.26037144660949707,
+ "learning_rate": 0.0006,
+ "loss": 3.9125187397003174,
+ "step": 1448
+ },
+ {
+ "epoch": 20.125819134993446,
+ "grad_norm": 0.25564828515052795,
+ "learning_rate": 0.0006,
+ "loss": 3.891867160797119,
+ "step": 1449
+ },
+ {
+ "epoch": 20.13979903888161,
+ "grad_norm": 0.2767223119735718,
+ "learning_rate": 0.0006,
+ "loss": 3.9202775955200195,
+ "step": 1450
+ },
+ {
+ "epoch": 20.15377894276977,
+ "grad_norm": 0.27696558833122253,
+ "learning_rate": 0.0006,
+ "loss": 3.9231314659118652,
+ "step": 1451
+ },
+ {
+ "epoch": 20.16775884665793,
+ "grad_norm": 0.3054044246673584,
+ "learning_rate": 0.0006,
+ "loss": 3.918138027191162,
+ "step": 1452
+ },
+ {
+ "epoch": 20.18173875054609,
+ "grad_norm": 0.3018973171710968,
+ "learning_rate": 0.0006,
+ "loss": 3.890678882598877,
+ "step": 1453
+ },
+ {
+ "epoch": 20.195718654434252,
+ "grad_norm": 0.306232750415802,
+ "learning_rate": 0.0006,
+ "loss": 3.920753002166748,
+ "step": 1454
+ },
+ {
+ "epoch": 20.209698558322412,
+ "grad_norm": 0.29593729972839355,
+ "learning_rate": 0.0006,
+ "loss": 3.9455509185791016,
+ "step": 1455
+ },
+ {
+ "epoch": 20.22367846221057,
+ "grad_norm": 0.2937646210193634,
+ "learning_rate": 0.0006,
+ "loss": 3.9227709770202637,
+ "step": 1456
+ },
+ {
+ "epoch": 20.23765836609873,
+ "grad_norm": 0.26380231976509094,
+ "learning_rate": 0.0006,
+ "loss": 3.9097609519958496,
+ "step": 1457
+ },
+ {
+ "epoch": 20.251638269986895,
+ "grad_norm": 0.24992692470550537,
+ "learning_rate": 0.0006,
+ "loss": 3.9393627643585205,
+ "step": 1458
+ },
+ {
+ "epoch": 20.265618173875055,
+ "grad_norm": 0.270219087600708,
+ "learning_rate": 0.0006,
+ "loss": 3.929330348968506,
+ "step": 1459
+ },
+ {
+ "epoch": 20.279598077763215,
+ "grad_norm": 0.2860020399093628,
+ "learning_rate": 0.0006,
+ "loss": 3.8947913646698,
+ "step": 1460
+ },
+ {
+ "epoch": 20.293577981651374,
+ "grad_norm": 0.27494579553604126,
+ "learning_rate": 0.0006,
+ "loss": 3.9105992317199707,
+ "step": 1461
+ },
+ {
+ "epoch": 20.307557885539538,
+ "grad_norm": 0.26467713713645935,
+ "learning_rate": 0.0006,
+ "loss": 3.914632797241211,
+ "step": 1462
+ },
+ {
+ "epoch": 20.321537789427698,
+ "grad_norm": 0.25747713446617126,
+ "learning_rate": 0.0006,
+ "loss": 3.919846534729004,
+ "step": 1463
+ },
+ {
+ "epoch": 20.335517693315857,
+ "grad_norm": 0.24027711153030396,
+ "learning_rate": 0.0006,
+ "loss": 3.904740810394287,
+ "step": 1464
+ },
+ {
+ "epoch": 20.34949759720402,
+ "grad_norm": 0.24682414531707764,
+ "learning_rate": 0.0006,
+ "loss": 3.9190149307250977,
+ "step": 1465
+ },
+ {
+ "epoch": 20.36347750109218,
+ "grad_norm": 0.2619759440422058,
+ "learning_rate": 0.0006,
+ "loss": 3.9488329887390137,
+ "step": 1466
+ },
+ {
+ "epoch": 20.37745740498034,
+ "grad_norm": 0.2632448971271515,
+ "learning_rate": 0.0006,
+ "loss": 3.9216647148132324,
+ "step": 1467
+ },
+ {
+ "epoch": 20.3914373088685,
+ "grad_norm": 0.27569764852523804,
+ "learning_rate": 0.0006,
+ "loss": 3.9178895950317383,
+ "step": 1468
+ },
+ {
+ "epoch": 20.405417212756664,
+ "grad_norm": 0.2611774802207947,
+ "learning_rate": 0.0006,
+ "loss": 3.933730125427246,
+ "step": 1469
+ },
+ {
+ "epoch": 20.419397116644824,
+ "grad_norm": 0.2839447557926178,
+ "learning_rate": 0.0006,
+ "loss": 3.9261364936828613,
+ "step": 1470
+ },
+ {
+ "epoch": 20.433377020532983,
+ "grad_norm": 0.29006227850914,
+ "learning_rate": 0.0006,
+ "loss": 3.9157633781433105,
+ "step": 1471
+ },
+ {
+ "epoch": 20.447356924421143,
+ "grad_norm": 0.2809498906135559,
+ "learning_rate": 0.0006,
+ "loss": 3.9211745262145996,
+ "step": 1472
+ },
+ {
+ "epoch": 20.461336828309307,
+ "grad_norm": 0.27859532833099365,
+ "learning_rate": 0.0006,
+ "loss": 3.9115967750549316,
+ "step": 1473
+ },
+ {
+ "epoch": 20.475316732197467,
+ "grad_norm": 0.29114410281181335,
+ "learning_rate": 0.0006,
+ "loss": 3.9024441242218018,
+ "step": 1474
+ },
+ {
+ "epoch": 20.489296636085626,
+ "grad_norm": 0.2686930000782013,
+ "learning_rate": 0.0006,
+ "loss": 3.9497199058532715,
+ "step": 1475
+ },
+ {
+ "epoch": 20.503276539973786,
+ "grad_norm": 0.24120540916919708,
+ "learning_rate": 0.0006,
+ "loss": 3.9218955039978027,
+ "step": 1476
+ },
+ {
+ "epoch": 20.51725644386195,
+ "grad_norm": 0.23689547181129456,
+ "learning_rate": 0.0006,
+ "loss": 3.9410176277160645,
+ "step": 1477
+ },
+ {
+ "epoch": 20.53123634775011,
+ "grad_norm": 0.26382362842559814,
+ "learning_rate": 0.0006,
+ "loss": 3.8880343437194824,
+ "step": 1478
+ },
+ {
+ "epoch": 20.54521625163827,
+ "grad_norm": 0.21628661453723907,
+ "learning_rate": 0.0006,
+ "loss": 3.892622470855713,
+ "step": 1479
+ },
+ {
+ "epoch": 20.55919615552643,
+ "grad_norm": 0.19896996021270752,
+ "learning_rate": 0.0006,
+ "loss": 3.938734769821167,
+ "step": 1480
+ },
+ {
+ "epoch": 20.573176059414592,
+ "grad_norm": 0.20232494175434113,
+ "learning_rate": 0.0006,
+ "loss": 3.9197006225585938,
+ "step": 1481
+ },
+ {
+ "epoch": 20.587155963302752,
+ "grad_norm": 0.21807828545570374,
+ "learning_rate": 0.0006,
+ "loss": 3.9195618629455566,
+ "step": 1482
+ },
+ {
+ "epoch": 20.601135867190912,
+ "grad_norm": 0.21778680384159088,
+ "learning_rate": 0.0006,
+ "loss": 3.913395404815674,
+ "step": 1483
+ },
+ {
+ "epoch": 20.615115771079076,
+ "grad_norm": 0.21015185117721558,
+ "learning_rate": 0.0006,
+ "loss": 3.8858234882354736,
+ "step": 1484
+ },
+ {
+ "epoch": 20.629095674967235,
+ "grad_norm": 0.20131368935108185,
+ "learning_rate": 0.0006,
+ "loss": 3.927213430404663,
+ "step": 1485
+ },
+ {
+ "epoch": 20.643075578855395,
+ "grad_norm": 0.20746243000030518,
+ "learning_rate": 0.0006,
+ "loss": 3.913198471069336,
+ "step": 1486
+ },
+ {
+ "epoch": 20.657055482743555,
+ "grad_norm": 0.2024548053741455,
+ "learning_rate": 0.0006,
+ "loss": 3.923048257827759,
+ "step": 1487
+ },
+ {
+ "epoch": 20.67103538663172,
+ "grad_norm": 0.19735988974571228,
+ "learning_rate": 0.0006,
+ "loss": 3.9136500358581543,
+ "step": 1488
+ },
+ {
+ "epoch": 20.68501529051988,
+ "grad_norm": 0.19781625270843506,
+ "learning_rate": 0.0006,
+ "loss": 3.883793592453003,
+ "step": 1489
+ },
+ {
+ "epoch": 20.698995194408038,
+ "grad_norm": 0.1911996454000473,
+ "learning_rate": 0.0006,
+ "loss": 3.9078567028045654,
+ "step": 1490
+ },
+ {
+ "epoch": 20.712975098296198,
+ "grad_norm": 0.1989123821258545,
+ "learning_rate": 0.0006,
+ "loss": 3.9314043521881104,
+ "step": 1491
+ },
+ {
+ "epoch": 20.72695500218436,
+ "grad_norm": 0.18839342892169952,
+ "learning_rate": 0.0006,
+ "loss": 3.8955953121185303,
+ "step": 1492
+ },
+ {
+ "epoch": 20.74093490607252,
+ "grad_norm": 0.1944834142923355,
+ "learning_rate": 0.0006,
+ "loss": 3.9272377490997314,
+ "step": 1493
+ },
+ {
+ "epoch": 20.75491480996068,
+ "grad_norm": 0.20829126238822937,
+ "learning_rate": 0.0006,
+ "loss": 3.878857374191284,
+ "step": 1494
+ },
+ {
+ "epoch": 20.76889471384884,
+ "grad_norm": 0.21438424289226532,
+ "learning_rate": 0.0006,
+ "loss": 3.9155564308166504,
+ "step": 1495
+ },
+ {
+ "epoch": 20.782874617737004,
+ "grad_norm": 0.22309324145317078,
+ "learning_rate": 0.0006,
+ "loss": 3.9281692504882812,
+ "step": 1496
+ },
+ {
+ "epoch": 20.796854521625164,
+ "grad_norm": 0.2053767591714859,
+ "learning_rate": 0.0006,
+ "loss": 3.9096317291259766,
+ "step": 1497
+ },
+ {
+ "epoch": 20.810834425513324,
+ "grad_norm": 0.20429186522960663,
+ "learning_rate": 0.0006,
+ "loss": 3.9184865951538086,
+ "step": 1498
+ },
+ {
+ "epoch": 20.824814329401484,
+ "grad_norm": 0.21983473002910614,
+ "learning_rate": 0.0006,
+ "loss": 3.9130771160125732,
+ "step": 1499
+ },
+ {
+ "epoch": 20.838794233289647,
+ "grad_norm": 0.21649539470672607,
+ "learning_rate": 0.0006,
+ "loss": 3.921581268310547,
+ "step": 1500
+ },
+ {
+ "epoch": 20.852774137177807,
+ "grad_norm": 0.19645053148269653,
+ "learning_rate": 0.0006,
+ "loss": 3.966360092163086,
+ "step": 1501
+ },
+ {
+ "epoch": 20.866754041065967,
+ "grad_norm": 0.2126782387495041,
+ "learning_rate": 0.0006,
+ "loss": 3.9004554748535156,
+ "step": 1502
+ },
+ {
+ "epoch": 20.88073394495413,
+ "grad_norm": 0.22359658777713776,
+ "learning_rate": 0.0006,
+ "loss": 3.92336368560791,
+ "step": 1503
+ },
+ {
+ "epoch": 20.89471384884229,
+ "grad_norm": 0.2334042638540268,
+ "learning_rate": 0.0006,
+ "loss": 3.9188671112060547,
+ "step": 1504
+ },
+ {
+ "epoch": 20.90869375273045,
+ "grad_norm": 0.24595916271209717,
+ "learning_rate": 0.0006,
+ "loss": 3.9348371028900146,
+ "step": 1505
+ },
+ {
+ "epoch": 20.92267365661861,
+ "grad_norm": 0.24177910387516022,
+ "learning_rate": 0.0006,
+ "loss": 3.8796424865722656,
+ "step": 1506
+ },
+ {
+ "epoch": 20.936653560506773,
+ "grad_norm": 0.24193289875984192,
+ "learning_rate": 0.0006,
+ "loss": 3.892627716064453,
+ "step": 1507
+ },
+ {
+ "epoch": 20.950633464394933,
+ "grad_norm": 0.252849280834198,
+ "learning_rate": 0.0006,
+ "loss": 3.9300179481506348,
+ "step": 1508
+ },
+ {
+ "epoch": 20.964613368283093,
+ "grad_norm": 0.24933326244354248,
+ "learning_rate": 0.0006,
+ "loss": 3.9597225189208984,
+ "step": 1509
+ },
+ {
+ "epoch": 20.978593272171253,
+ "grad_norm": 0.23850969970226288,
+ "learning_rate": 0.0006,
+ "loss": 3.9027397632598877,
+ "step": 1510
+ },
+ {
+ "epoch": 20.992573176059416,
+ "grad_norm": 0.23298311233520508,
+ "learning_rate": 0.0006,
+ "loss": 3.9024105072021484,
+ "step": 1511
+ },
+ {
+ "epoch": 21.0,
+ "grad_norm": 0.2467455416917801,
+ "learning_rate": 0.0006,
+ "loss": 3.915929079055786,
+ "step": 1512
+ },
+ {
+ "epoch": 21.0,
+ "eval_loss": 4.136331081390381,
+ "eval_runtime": 43.9468,
+ "eval_samples_per_second": 55.567,
+ "eval_steps_per_second": 3.481,
+ "step": 1512
+ },
+ {
+ "epoch": 21.01397990388816,
+ "grad_norm": 0.2195885181427002,
+ "learning_rate": 0.0006,
+ "loss": 3.873412847518921,
+ "step": 1513
+ },
+ {
+ "epoch": 21.027959807776323,
+ "grad_norm": 0.24250614643096924,
+ "learning_rate": 0.0006,
+ "loss": 3.882302761077881,
+ "step": 1514
+ },
+ {
+ "epoch": 21.041939711664483,
+ "grad_norm": 0.249113991856575,
+ "learning_rate": 0.0006,
+ "loss": 3.9112048149108887,
+ "step": 1515
+ },
+ {
+ "epoch": 21.055919615552643,
+ "grad_norm": 0.25365301966667175,
+ "learning_rate": 0.0006,
+ "loss": 3.8625712394714355,
+ "step": 1516
+ },
+ {
+ "epoch": 21.069899519440803,
+ "grad_norm": 0.2218591272830963,
+ "learning_rate": 0.0006,
+ "loss": 3.876072406768799,
+ "step": 1517
+ },
+ {
+ "epoch": 21.083879423328966,
+ "grad_norm": 0.238582581281662,
+ "learning_rate": 0.0006,
+ "loss": 3.862060546875,
+ "step": 1518
+ },
+ {
+ "epoch": 21.097859327217126,
+ "grad_norm": 0.25051242113113403,
+ "learning_rate": 0.0006,
+ "loss": 3.905315399169922,
+ "step": 1519
+ },
+ {
+ "epoch": 21.111839231105286,
+ "grad_norm": 0.2391843944787979,
+ "learning_rate": 0.0006,
+ "loss": 3.909144401550293,
+ "step": 1520
+ },
+ {
+ "epoch": 21.125819134993446,
+ "grad_norm": 0.230543315410614,
+ "learning_rate": 0.0006,
+ "loss": 3.8856799602508545,
+ "step": 1521
+ },
+ {
+ "epoch": 21.13979903888161,
+ "grad_norm": 0.24165484309196472,
+ "learning_rate": 0.0006,
+ "loss": 3.893883228302002,
+ "step": 1522
+ },
+ {
+ "epoch": 21.15377894276977,
+ "grad_norm": 0.24657143652439117,
+ "learning_rate": 0.0006,
+ "loss": 3.901129722595215,
+ "step": 1523
+ },
+ {
+ "epoch": 21.16775884665793,
+ "grad_norm": 0.2659998834133148,
+ "learning_rate": 0.0006,
+ "loss": 3.910468101501465,
+ "step": 1524
+ },
+ {
+ "epoch": 21.18173875054609,
+ "grad_norm": 0.2673095166683197,
+ "learning_rate": 0.0006,
+ "loss": 3.917454242706299,
+ "step": 1525
+ },
+ {
+ "epoch": 21.195718654434252,
+ "grad_norm": 0.22122322022914886,
+ "learning_rate": 0.0006,
+ "loss": 3.9017257690429688,
+ "step": 1526
+ },
+ {
+ "epoch": 21.209698558322412,
+ "grad_norm": 0.21882867813110352,
+ "learning_rate": 0.0006,
+ "loss": 3.8605496883392334,
+ "step": 1527
+ },
+ {
+ "epoch": 21.22367846221057,
+ "grad_norm": 0.22335563600063324,
+ "learning_rate": 0.0006,
+ "loss": 3.88120174407959,
+ "step": 1528
+ },
+ {
+ "epoch": 21.23765836609873,
+ "grad_norm": 0.22973211109638214,
+ "learning_rate": 0.0006,
+ "loss": 3.8636834621429443,
+ "step": 1529
+ },
+ {
+ "epoch": 21.251638269986895,
+ "grad_norm": 0.2410288006067276,
+ "learning_rate": 0.0006,
+ "loss": 3.8698177337646484,
+ "step": 1530
+ },
+ {
+ "epoch": 21.265618173875055,
+ "grad_norm": 0.2454768717288971,
+ "learning_rate": 0.0006,
+ "loss": 3.905341148376465,
+ "step": 1531
+ },
+ {
+ "epoch": 21.279598077763215,
+ "grad_norm": 0.2271580696105957,
+ "learning_rate": 0.0006,
+ "loss": 3.864063262939453,
+ "step": 1532
+ },
+ {
+ "epoch": 21.293577981651374,
+ "grad_norm": 0.2200947403907776,
+ "learning_rate": 0.0006,
+ "loss": 3.8889589309692383,
+ "step": 1533
+ },
+ {
+ "epoch": 21.307557885539538,
+ "grad_norm": 0.2180824875831604,
+ "learning_rate": 0.0006,
+ "loss": 3.8873472213745117,
+ "step": 1534
+ },
+ {
+ "epoch": 21.321537789427698,
+ "grad_norm": 0.214975506067276,
+ "learning_rate": 0.0006,
+ "loss": 3.882307529449463,
+ "step": 1535
+ },
+ {
+ "epoch": 21.335517693315857,
+ "grad_norm": 0.21411260962486267,
+ "learning_rate": 0.0006,
+ "loss": 3.8861560821533203,
+ "step": 1536
+ },
+ {
+ "epoch": 21.34949759720402,
+ "grad_norm": 0.22635889053344727,
+ "learning_rate": 0.0006,
+ "loss": 3.9174342155456543,
+ "step": 1537
+ },
+ {
+ "epoch": 21.36347750109218,
+ "grad_norm": 0.22700625658035278,
+ "learning_rate": 0.0006,
+ "loss": 3.890416383743286,
+ "step": 1538
+ },
+ {
+ "epoch": 21.37745740498034,
+ "grad_norm": 0.2106025069952011,
+ "learning_rate": 0.0006,
+ "loss": 3.8672406673431396,
+ "step": 1539
+ },
+ {
+ "epoch": 21.3914373088685,
+ "grad_norm": 0.22994661331176758,
+ "learning_rate": 0.0006,
+ "loss": 3.893190383911133,
+ "step": 1540
+ },
+ {
+ "epoch": 21.405417212756664,
+ "grad_norm": 0.24701105058193207,
+ "learning_rate": 0.0006,
+ "loss": 3.898078441619873,
+ "step": 1541
+ },
+ {
+ "epoch": 21.419397116644824,
+ "grad_norm": 0.26914113759994507,
+ "learning_rate": 0.0006,
+ "loss": 3.905871868133545,
+ "step": 1542
+ },
+ {
+ "epoch": 21.433377020532983,
+ "grad_norm": 0.2904224097728729,
+ "learning_rate": 0.0006,
+ "loss": 3.8919103145599365,
+ "step": 1543
+ },
+ {
+ "epoch": 21.447356924421143,
+ "grad_norm": 0.2911844551563263,
+ "learning_rate": 0.0006,
+ "loss": 3.9073286056518555,
+ "step": 1544
+ },
+ {
+ "epoch": 21.461336828309307,
+ "grad_norm": 0.2742345929145813,
+ "learning_rate": 0.0006,
+ "loss": 3.9075546264648438,
+ "step": 1545
+ },
+ {
+ "epoch": 21.475316732197467,
+ "grad_norm": 0.2341093122959137,
+ "learning_rate": 0.0006,
+ "loss": 3.9232025146484375,
+ "step": 1546
+ },
+ {
+ "epoch": 21.489296636085626,
+ "grad_norm": 0.22808541357517242,
+ "learning_rate": 0.0006,
+ "loss": 3.9168174266815186,
+ "step": 1547
+ },
+ {
+ "epoch": 21.503276539973786,
+ "grad_norm": 0.23049889504909515,
+ "learning_rate": 0.0006,
+ "loss": 3.8850595951080322,
+ "step": 1548
+ },
+ {
+ "epoch": 21.51725644386195,
+ "grad_norm": 0.21519650518894196,
+ "learning_rate": 0.0006,
+ "loss": 3.891313076019287,
+ "step": 1549
+ },
+ {
+ "epoch": 21.53123634775011,
+ "grad_norm": 0.20999883115291595,
+ "learning_rate": 0.0006,
+ "loss": 3.894439220428467,
+ "step": 1550
+ },
+ {
+ "epoch": 21.54521625163827,
+ "grad_norm": 0.19641105830669403,
+ "learning_rate": 0.0006,
+ "loss": 3.894871473312378,
+ "step": 1551
+ },
+ {
+ "epoch": 21.55919615552643,
+ "grad_norm": 0.19108249247074127,
+ "learning_rate": 0.0006,
+ "loss": 3.905968189239502,
+ "step": 1552
+ },
+ {
+ "epoch": 21.573176059414592,
+ "grad_norm": 0.20222234725952148,
+ "learning_rate": 0.0006,
+ "loss": 3.90565824508667,
+ "step": 1553
+ },
+ {
+ "epoch": 21.587155963302752,
+ "grad_norm": 0.20620177686214447,
+ "learning_rate": 0.0006,
+ "loss": 3.9103245735168457,
+ "step": 1554
+ },
+ {
+ "epoch": 21.601135867190912,
+ "grad_norm": 0.2149713784456253,
+ "learning_rate": 0.0006,
+ "loss": 3.8864927291870117,
+ "step": 1555
+ },
+ {
+ "epoch": 21.615115771079076,
+ "grad_norm": 0.2354084551334381,
+ "learning_rate": 0.0006,
+ "loss": 3.905095100402832,
+ "step": 1556
+ },
+ {
+ "epoch": 21.629095674967235,
+ "grad_norm": 0.23949941992759705,
+ "learning_rate": 0.0006,
+ "loss": 3.901803493499756,
+ "step": 1557
+ },
+ {
+ "epoch": 21.643075578855395,
+ "grad_norm": 0.22914277017116547,
+ "learning_rate": 0.0006,
+ "loss": 3.876044273376465,
+ "step": 1558
+ },
+ {
+ "epoch": 21.657055482743555,
+ "grad_norm": 0.2363225370645523,
+ "learning_rate": 0.0006,
+ "loss": 3.910841703414917,
+ "step": 1559
+ },
+ {
+ "epoch": 21.67103538663172,
+ "grad_norm": 0.2635626792907715,
+ "learning_rate": 0.0006,
+ "loss": 3.847407579421997,
+ "step": 1560
+ },
+ {
+ "epoch": 21.68501529051988,
+ "grad_norm": 0.2499786615371704,
+ "learning_rate": 0.0006,
+ "loss": 3.8667140007019043,
+ "step": 1561
+ },
+ {
+ "epoch": 21.698995194408038,
+ "grad_norm": 0.21609611809253693,
+ "learning_rate": 0.0006,
+ "loss": 3.895470142364502,
+ "step": 1562
+ },
+ {
+ "epoch": 21.712975098296198,
+ "grad_norm": 0.2466774582862854,
+ "learning_rate": 0.0006,
+ "loss": 3.8853235244750977,
+ "step": 1563
+ },
+ {
+ "epoch": 21.72695500218436,
+ "grad_norm": 0.23791883885860443,
+ "learning_rate": 0.0006,
+ "loss": 3.899418354034424,
+ "step": 1564
+ },
+ {
+ "epoch": 21.74093490607252,
+ "grad_norm": 0.2048920840024948,
+ "learning_rate": 0.0006,
+ "loss": 3.8992419242858887,
+ "step": 1565
+ },
+ {
+ "epoch": 21.75491480996068,
+ "grad_norm": 0.22266621887683868,
+ "learning_rate": 0.0006,
+ "loss": 3.885765552520752,
+ "step": 1566
+ },
+ {
+ "epoch": 21.76889471384884,
+ "grad_norm": 0.2508748769760132,
+ "learning_rate": 0.0006,
+ "loss": 3.8797037601470947,
+ "step": 1567
+ },
+ {
+ "epoch": 21.782874617737004,
+ "grad_norm": 0.27245673537254333,
+ "learning_rate": 0.0006,
+ "loss": 3.8743176460266113,
+ "step": 1568
+ },
+ {
+ "epoch": 21.796854521625164,
+ "grad_norm": 0.25503191351890564,
+ "learning_rate": 0.0006,
+ "loss": 3.868906259536743,
+ "step": 1569
+ },
+ {
+ "epoch": 21.810834425513324,
+ "grad_norm": 0.22984394431114197,
+ "learning_rate": 0.0006,
+ "loss": 3.9051015377044678,
+ "step": 1570
+ },
+ {
+ "epoch": 21.824814329401484,
+ "grad_norm": 0.2411898821592331,
+ "learning_rate": 0.0006,
+ "loss": 3.8911490440368652,
+ "step": 1571
+ },
+ {
+ "epoch": 21.838794233289647,
+ "grad_norm": 0.22609318792819977,
+ "learning_rate": 0.0006,
+ "loss": 3.894839286804199,
+ "step": 1572
+ },
+ {
+ "epoch": 21.852774137177807,
+ "grad_norm": 0.21904583275318146,
+ "learning_rate": 0.0006,
+ "loss": 3.9314537048339844,
+ "step": 1573
+ },
+ {
+ "epoch": 21.866754041065967,
+ "grad_norm": 0.21869723498821259,
+ "learning_rate": 0.0006,
+ "loss": 3.9141433238983154,
+ "step": 1574
+ },
+ {
+ "epoch": 21.88073394495413,
+ "grad_norm": 0.21682019531726837,
+ "learning_rate": 0.0006,
+ "loss": 3.867898464202881,
+ "step": 1575
+ },
+ {
+ "epoch": 21.89471384884229,
+ "grad_norm": 0.2211964726448059,
+ "learning_rate": 0.0006,
+ "loss": 3.8892226219177246,
+ "step": 1576
+ },
+ {
+ "epoch": 21.90869375273045,
+ "grad_norm": 0.2097381353378296,
+ "learning_rate": 0.0006,
+ "loss": 3.9194154739379883,
+ "step": 1577
+ },
+ {
+ "epoch": 21.92267365661861,
+ "grad_norm": 0.21229565143585205,
+ "learning_rate": 0.0006,
+ "loss": 3.924694538116455,
+ "step": 1578
+ },
+ {
+ "epoch": 21.936653560506773,
+ "grad_norm": 0.2186083346605301,
+ "learning_rate": 0.0006,
+ "loss": 3.904440402984619,
+ "step": 1579
+ },
+ {
+ "epoch": 21.950633464394933,
+ "grad_norm": 0.21112321317195892,
+ "learning_rate": 0.0006,
+ "loss": 3.905674934387207,
+ "step": 1580
+ },
+ {
+ "epoch": 21.964613368283093,
+ "grad_norm": 0.20867373049259186,
+ "learning_rate": 0.0006,
+ "loss": 3.8761563301086426,
+ "step": 1581
+ },
+ {
+ "epoch": 21.978593272171253,
+ "grad_norm": 0.21640732884407043,
+ "learning_rate": 0.0006,
+ "loss": 3.871950149536133,
+ "step": 1582
+ },
+ {
+ "epoch": 21.992573176059416,
+ "grad_norm": 0.21920442581176758,
+ "learning_rate": 0.0006,
+ "loss": 3.8853464126586914,
+ "step": 1583
+ },
+ {
+ "epoch": 22.0,
+ "grad_norm": 0.24132665991783142,
+ "learning_rate": 0.0006,
+ "loss": 3.9012184143066406,
+ "step": 1584
+ },
+ {
+ "epoch": 22.0,
+ "eval_loss": 4.108598232269287,
+ "eval_runtime": 44.0434,
+ "eval_samples_per_second": 55.445,
+ "eval_steps_per_second": 3.474,
+ "step": 1584
+ },
+ {
+ "epoch": 22.01397990388816,
+ "grad_norm": 0.21989449858665466,
+ "learning_rate": 0.0006,
+ "loss": 3.8657469749450684,
+ "step": 1585
+ },
+ {
+ "epoch": 22.027959807776323,
+ "grad_norm": 0.20416802167892456,
+ "learning_rate": 0.0006,
+ "loss": 3.8682117462158203,
+ "step": 1586
+ },
+ {
+ "epoch": 22.041939711664483,
+ "grad_norm": 0.20651975274085999,
+ "learning_rate": 0.0006,
+ "loss": 3.8501222133636475,
+ "step": 1587
+ },
+ {
+ "epoch": 22.055919615552643,
+ "grad_norm": 0.22987176477909088,
+ "learning_rate": 0.0006,
+ "loss": 3.8830955028533936,
+ "step": 1588
+ },
+ {
+ "epoch": 22.069899519440803,
+ "grad_norm": 0.23308858275413513,
+ "learning_rate": 0.0006,
+ "loss": 3.8659040927886963,
+ "step": 1589
+ },
+ {
+ "epoch": 22.083879423328966,
+ "grad_norm": 0.2144266963005066,
+ "learning_rate": 0.0006,
+ "loss": 3.8311047554016113,
+ "step": 1590
+ },
+ {
+ "epoch": 22.097859327217126,
+ "grad_norm": 0.2052636295557022,
+ "learning_rate": 0.0006,
+ "loss": 3.8700156211853027,
+ "step": 1591
+ },
+ {
+ "epoch": 22.111839231105286,
+ "grad_norm": 0.22792384028434753,
+ "learning_rate": 0.0006,
+ "loss": 3.8799097537994385,
+ "step": 1592
+ },
+ {
+ "epoch": 22.125819134993446,
+ "grad_norm": 0.2533944249153137,
+ "learning_rate": 0.0006,
+ "loss": 3.874959945678711,
+ "step": 1593
+ },
+ {
+ "epoch": 22.13979903888161,
+ "grad_norm": 0.27126258611679077,
+ "learning_rate": 0.0006,
+ "loss": 3.863774299621582,
+ "step": 1594
+ },
+ {
+ "epoch": 22.15377894276977,
+ "grad_norm": 0.2634040415287018,
+ "learning_rate": 0.0006,
+ "loss": 3.8876869678497314,
+ "step": 1595
+ },
+ {
+ "epoch": 22.16775884665793,
+ "grad_norm": 0.267987459897995,
+ "learning_rate": 0.0006,
+ "loss": 3.871776819229126,
+ "step": 1596
+ },
+ {
+ "epoch": 22.18173875054609,
+ "grad_norm": 0.2972337305545807,
+ "learning_rate": 0.0006,
+ "loss": 3.8453969955444336,
+ "step": 1597
+ },
+ {
+ "epoch": 22.195718654434252,
+ "grad_norm": 0.3012159764766693,
+ "learning_rate": 0.0006,
+ "loss": 3.8774254322052,
+ "step": 1598
+ },
+ {
+ "epoch": 22.209698558322412,
+ "grad_norm": 0.27275875210762024,
+ "learning_rate": 0.0006,
+ "loss": 3.8558950424194336,
+ "step": 1599
+ },
+ {
+ "epoch": 22.22367846221057,
+ "grad_norm": 0.2817993462085724,
+ "learning_rate": 0.0006,
+ "loss": 3.872211217880249,
+ "step": 1600
+ },
+ {
+ "epoch": 22.23765836609873,
+ "grad_norm": 0.28823208808898926,
+ "learning_rate": 0.0006,
+ "loss": 3.847616672515869,
+ "step": 1601
+ },
+ {
+ "epoch": 22.251638269986895,
+ "grad_norm": 0.2646387815475464,
+ "learning_rate": 0.0006,
+ "loss": 3.8993802070617676,
+ "step": 1602
+ },
+ {
+ "epoch": 22.265618173875055,
+ "grad_norm": 0.27664077281951904,
+ "learning_rate": 0.0006,
+ "loss": 3.858553409576416,
+ "step": 1603
+ },
+ {
+ "epoch": 22.279598077763215,
+ "grad_norm": 0.27708905935287476,
+ "learning_rate": 0.0006,
+ "loss": 3.8691039085388184,
+ "step": 1604
+ },
+ {
+ "epoch": 22.293577981651374,
+ "grad_norm": 0.3045521378517151,
+ "learning_rate": 0.0006,
+ "loss": 3.8721439838409424,
+ "step": 1605
+ },
+ {
+ "epoch": 22.307557885539538,
+ "grad_norm": 0.3481914699077606,
+ "learning_rate": 0.0006,
+ "loss": 3.894503593444824,
+ "step": 1606
+ },
+ {
+ "epoch": 22.321537789427698,
+ "grad_norm": 0.3298046588897705,
+ "learning_rate": 0.0006,
+ "loss": 3.8420844078063965,
+ "step": 1607
+ },
+ {
+ "epoch": 22.335517693315857,
+ "grad_norm": 0.24967724084854126,
+ "learning_rate": 0.0006,
+ "loss": 3.8892619609832764,
+ "step": 1608
+ },
+ {
+ "epoch": 22.34949759720402,
+ "grad_norm": 0.22645241022109985,
+ "learning_rate": 0.0006,
+ "loss": 3.873265504837036,
+ "step": 1609
+ },
+ {
+ "epoch": 22.36347750109218,
+ "grad_norm": 0.22813954949378967,
+ "learning_rate": 0.0006,
+ "loss": 3.8658013343811035,
+ "step": 1610
+ },
+ {
+ "epoch": 22.37745740498034,
+ "grad_norm": 0.23825274407863617,
+ "learning_rate": 0.0006,
+ "loss": 3.885456085205078,
+ "step": 1611
+ },
+ {
+ "epoch": 22.3914373088685,
+ "grad_norm": 0.23612336814403534,
+ "learning_rate": 0.0006,
+ "loss": 3.851841449737549,
+ "step": 1612
+ },
+ {
+ "epoch": 22.405417212756664,
+ "grad_norm": 0.23851265013217926,
+ "learning_rate": 0.0006,
+ "loss": 3.8711647987365723,
+ "step": 1613
+ },
+ {
+ "epoch": 22.419397116644824,
+ "grad_norm": 0.22977286577224731,
+ "learning_rate": 0.0006,
+ "loss": 3.848539113998413,
+ "step": 1614
+ },
+ {
+ "epoch": 22.433377020532983,
+ "grad_norm": 0.20970143377780914,
+ "learning_rate": 0.0006,
+ "loss": 3.8709521293640137,
+ "step": 1615
+ },
+ {
+ "epoch": 22.447356924421143,
+ "grad_norm": 0.20714804530143738,
+ "learning_rate": 0.0006,
+ "loss": 3.875060558319092,
+ "step": 1616
+ },
+ {
+ "epoch": 22.461336828309307,
+ "grad_norm": 0.18881355226039886,
+ "learning_rate": 0.0006,
+ "loss": 3.8744640350341797,
+ "step": 1617
+ },
+ {
+ "epoch": 22.475316732197467,
+ "grad_norm": 0.1928759068250656,
+ "learning_rate": 0.0006,
+ "loss": 3.867971420288086,
+ "step": 1618
+ },
+ {
+ "epoch": 22.489296636085626,
+ "grad_norm": 0.18614749610424042,
+ "learning_rate": 0.0006,
+ "loss": 3.8738222122192383,
+ "step": 1619
+ },
+ {
+ "epoch": 22.503276539973786,
+ "grad_norm": 0.18614931404590607,
+ "learning_rate": 0.0006,
+ "loss": 3.8470513820648193,
+ "step": 1620
+ },
+ {
+ "epoch": 22.51725644386195,
+ "grad_norm": 0.17805059254169464,
+ "learning_rate": 0.0006,
+ "loss": 3.866396903991699,
+ "step": 1621
+ },
+ {
+ "epoch": 22.53123634775011,
+ "grad_norm": 0.16941314935684204,
+ "learning_rate": 0.0006,
+ "loss": 3.856832265853882,
+ "step": 1622
+ },
+ {
+ "epoch": 22.54521625163827,
+ "grad_norm": 0.1802310198545456,
+ "learning_rate": 0.0006,
+ "loss": 3.885653018951416,
+ "step": 1623
+ },
+ {
+ "epoch": 22.55919615552643,
+ "grad_norm": 0.1854856163263321,
+ "learning_rate": 0.0006,
+ "loss": 3.8779640197753906,
+ "step": 1624
+ },
+ {
+ "epoch": 22.573176059414592,
+ "grad_norm": 0.18765869736671448,
+ "learning_rate": 0.0006,
+ "loss": 3.8449032306671143,
+ "step": 1625
+ },
+ {
+ "epoch": 22.587155963302752,
+ "grad_norm": 0.1907789707183838,
+ "learning_rate": 0.0006,
+ "loss": 3.863029718399048,
+ "step": 1626
+ },
+ {
+ "epoch": 22.601135867190912,
+ "grad_norm": 0.19285395741462708,
+ "learning_rate": 0.0006,
+ "loss": 3.880145788192749,
+ "step": 1627
+ },
+ {
+ "epoch": 22.615115771079076,
+ "grad_norm": 0.19229751825332642,
+ "learning_rate": 0.0006,
+ "loss": 3.8521225452423096,
+ "step": 1628
+ },
+ {
+ "epoch": 22.629095674967235,
+ "grad_norm": 0.191694438457489,
+ "learning_rate": 0.0006,
+ "loss": 3.899827003479004,
+ "step": 1629
+ },
+ {
+ "epoch": 22.643075578855395,
+ "grad_norm": 0.20143048465251923,
+ "learning_rate": 0.0006,
+ "loss": 3.862064838409424,
+ "step": 1630
+ },
+ {
+ "epoch": 22.657055482743555,
+ "grad_norm": 0.1959840953350067,
+ "learning_rate": 0.0006,
+ "loss": 3.8955392837524414,
+ "step": 1631
+ },
+ {
+ "epoch": 22.67103538663172,
+ "grad_norm": 0.21454884111881256,
+ "learning_rate": 0.0006,
+ "loss": 3.8503167629241943,
+ "step": 1632
+ },
+ {
+ "epoch": 22.68501529051988,
+ "grad_norm": 0.21748484671115875,
+ "learning_rate": 0.0006,
+ "loss": 3.897134304046631,
+ "step": 1633
+ },
+ {
+ "epoch": 22.698995194408038,
+ "grad_norm": 0.21204186975955963,
+ "learning_rate": 0.0006,
+ "loss": 3.9292588233947754,
+ "step": 1634
+ },
+ {
+ "epoch": 22.712975098296198,
+ "grad_norm": 0.2112748771905899,
+ "learning_rate": 0.0006,
+ "loss": 3.89798641204834,
+ "step": 1635
+ },
+ {
+ "epoch": 22.72695500218436,
+ "grad_norm": 0.188576802611351,
+ "learning_rate": 0.0006,
+ "loss": 3.85627818107605,
+ "step": 1636
+ },
+ {
+ "epoch": 22.74093490607252,
+ "grad_norm": 0.17755994200706482,
+ "learning_rate": 0.0006,
+ "loss": 3.8480074405670166,
+ "step": 1637
+ },
+ {
+ "epoch": 22.75491480996068,
+ "grad_norm": 0.18037520349025726,
+ "learning_rate": 0.0006,
+ "loss": 3.8800172805786133,
+ "step": 1638
+ },
+ {
+ "epoch": 22.76889471384884,
+ "grad_norm": 0.19205765426158905,
+ "learning_rate": 0.0006,
+ "loss": 3.8658275604248047,
+ "step": 1639
+ },
+ {
+ "epoch": 22.782874617737004,
+ "grad_norm": 0.21801964938640594,
+ "learning_rate": 0.0006,
+ "loss": 3.8999452590942383,
+ "step": 1640
+ },
+ {
+ "epoch": 22.796854521625164,
+ "grad_norm": 0.23586086928844452,
+ "learning_rate": 0.0006,
+ "loss": 3.8660664558410645,
+ "step": 1641
+ },
+ {
+ "epoch": 22.810834425513324,
+ "grad_norm": 0.22289055585861206,
+ "learning_rate": 0.0006,
+ "loss": 3.86102557182312,
+ "step": 1642
+ },
+ {
+ "epoch": 22.824814329401484,
+ "grad_norm": 0.20695745944976807,
+ "learning_rate": 0.0006,
+ "loss": 3.8336222171783447,
+ "step": 1643
+ },
+ {
+ "epoch": 22.838794233289647,
+ "grad_norm": 0.2157406210899353,
+ "learning_rate": 0.0006,
+ "loss": 3.8923370838165283,
+ "step": 1644
+ },
+ {
+ "epoch": 22.852774137177807,
+ "grad_norm": 0.2326202690601349,
+ "learning_rate": 0.0006,
+ "loss": 3.8841443061828613,
+ "step": 1645
+ },
+ {
+ "epoch": 22.866754041065967,
+ "grad_norm": 0.2228803187608719,
+ "learning_rate": 0.0006,
+ "loss": 3.8791375160217285,
+ "step": 1646
+ },
+ {
+ "epoch": 22.88073394495413,
+ "grad_norm": 0.228999063372612,
+ "learning_rate": 0.0006,
+ "loss": 3.9005866050720215,
+ "step": 1647
+ },
+ {
+ "epoch": 22.89471384884229,
+ "grad_norm": 0.19673815369606018,
+ "learning_rate": 0.0006,
+ "loss": 3.8954291343688965,
+ "step": 1648
+ },
+ {
+ "epoch": 22.90869375273045,
+ "grad_norm": 0.1862584501504898,
+ "learning_rate": 0.0006,
+ "loss": 3.8591439723968506,
+ "step": 1649
+ },
+ {
+ "epoch": 22.92267365661861,
+ "grad_norm": 0.21360838413238525,
+ "learning_rate": 0.0006,
+ "loss": 3.862949848175049,
+ "step": 1650
+ },
+ {
+ "epoch": 22.936653560506773,
+ "grad_norm": 0.22538702189922333,
+ "learning_rate": 0.0006,
+ "loss": 3.8466529846191406,
+ "step": 1651
+ },
+ {
+ "epoch": 22.950633464394933,
+ "grad_norm": 0.21452727913856506,
+ "learning_rate": 0.0006,
+ "loss": 3.890007495880127,
+ "step": 1652
+ },
+ {
+ "epoch": 22.964613368283093,
+ "grad_norm": 0.21283482015132904,
+ "learning_rate": 0.0006,
+ "loss": 3.8820929527282715,
+ "step": 1653
+ },
+ {
+ "epoch": 22.978593272171253,
+ "grad_norm": 0.2035825103521347,
+ "learning_rate": 0.0006,
+ "loss": 3.8663241863250732,
+ "step": 1654
+ },
+ {
+ "epoch": 22.992573176059416,
+ "grad_norm": 0.22431661188602448,
+ "learning_rate": 0.0006,
+ "loss": 3.88238525390625,
+ "step": 1655
+ },
+ {
+ "epoch": 23.0,
+ "grad_norm": 0.2619943916797638,
+ "learning_rate": 0.0006,
+ "loss": 3.8482635021209717,
+ "step": 1656
+ },
+ {
+ "epoch": 23.0,
+ "eval_loss": 4.099980354309082,
+ "eval_runtime": 44.1311,
+ "eval_samples_per_second": 55.335,
+ "eval_steps_per_second": 3.467,
+ "step": 1656
+ },
+ {
+ "epoch": 23.01397990388816,
+ "grad_norm": 0.24712848663330078,
+ "learning_rate": 0.0006,
+ "loss": 3.836700916290283,
+ "step": 1657
+ },
+ {
+ "epoch": 23.027959807776323,
+ "grad_norm": 0.28568798303604126,
+ "learning_rate": 0.0006,
+ "loss": 3.8523952960968018,
+ "step": 1658
+ },
+ {
+ "epoch": 23.041939711664483,
+ "grad_norm": 0.2999744415283203,
+ "learning_rate": 0.0006,
+ "loss": 3.8229494094848633,
+ "step": 1659
+ },
+ {
+ "epoch": 23.055919615552643,
+ "grad_norm": 0.32080450654029846,
+ "learning_rate": 0.0006,
+ "loss": 3.8562774658203125,
+ "step": 1660
+ },
+ {
+ "epoch": 23.069899519440803,
+ "grad_norm": 0.293468177318573,
+ "learning_rate": 0.0006,
+ "loss": 3.889139175415039,
+ "step": 1661
+ },
+ {
+ "epoch": 23.083879423328966,
+ "grad_norm": 0.2605799436569214,
+ "learning_rate": 0.0006,
+ "loss": 3.838681221008301,
+ "step": 1662
+ },
+ {
+ "epoch": 23.097859327217126,
+ "grad_norm": 0.2656237483024597,
+ "learning_rate": 0.0006,
+ "loss": 3.8603532314300537,
+ "step": 1663
+ },
+ {
+ "epoch": 23.111839231105286,
+ "grad_norm": 0.27163293957710266,
+ "learning_rate": 0.0006,
+ "loss": 3.846987009048462,
+ "step": 1664
+ },
+ {
+ "epoch": 23.125819134993446,
+ "grad_norm": 0.2719763517379761,
+ "learning_rate": 0.0006,
+ "loss": 3.805354595184326,
+ "step": 1665
+ },
+ {
+ "epoch": 23.13979903888161,
+ "grad_norm": 0.25786274671554565,
+ "learning_rate": 0.0006,
+ "loss": 3.8486907482147217,
+ "step": 1666
+ },
+ {
+ "epoch": 23.15377894276977,
+ "grad_norm": 0.2675692141056061,
+ "learning_rate": 0.0006,
+ "loss": 3.816493511199951,
+ "step": 1667
+ },
+ {
+ "epoch": 23.16775884665793,
+ "grad_norm": 0.2711698114871979,
+ "learning_rate": 0.0006,
+ "loss": 3.851863384246826,
+ "step": 1668
+ },
+ {
+ "epoch": 23.18173875054609,
+ "grad_norm": 0.2588968873023987,
+ "learning_rate": 0.0006,
+ "loss": 3.860816717147827,
+ "step": 1669
+ },
+ {
+ "epoch": 23.195718654434252,
+ "grad_norm": 0.2458600401878357,
+ "learning_rate": 0.0006,
+ "loss": 3.8058223724365234,
+ "step": 1670
+ },
+ {
+ "epoch": 23.209698558322412,
+ "grad_norm": 0.22014005482196808,
+ "learning_rate": 0.0006,
+ "loss": 3.8686985969543457,
+ "step": 1671
+ },
+ {
+ "epoch": 23.22367846221057,
+ "grad_norm": 0.22450537979602814,
+ "learning_rate": 0.0006,
+ "loss": 3.8379364013671875,
+ "step": 1672
+ },
+ {
+ "epoch": 23.23765836609873,
+ "grad_norm": 0.22132326662540436,
+ "learning_rate": 0.0006,
+ "loss": 3.8873870372772217,
+ "step": 1673
+ },
+ {
+ "epoch": 23.251638269986895,
+ "grad_norm": 0.20994804799556732,
+ "learning_rate": 0.0006,
+ "loss": 3.821415424346924,
+ "step": 1674
+ },
+ {
+ "epoch": 23.265618173875055,
+ "grad_norm": 0.2040853649377823,
+ "learning_rate": 0.0006,
+ "loss": 3.831658124923706,
+ "step": 1675
+ },
+ {
+ "epoch": 23.279598077763215,
+ "grad_norm": 0.20878618955612183,
+ "learning_rate": 0.0006,
+ "loss": 3.838672637939453,
+ "step": 1676
+ },
+ {
+ "epoch": 23.293577981651374,
+ "grad_norm": 0.19974198937416077,
+ "learning_rate": 0.0006,
+ "loss": 3.8442561626434326,
+ "step": 1677
+ },
+ {
+ "epoch": 23.307557885539538,
+ "grad_norm": 0.20523984730243683,
+ "learning_rate": 0.0006,
+ "loss": 3.846139907836914,
+ "step": 1678
+ },
+ {
+ "epoch": 23.321537789427698,
+ "grad_norm": 0.2045847624540329,
+ "learning_rate": 0.0006,
+ "loss": 3.8597474098205566,
+ "step": 1679
+ },
+ {
+ "epoch": 23.335517693315857,
+ "grad_norm": 0.20957441627979279,
+ "learning_rate": 0.0006,
+ "loss": 3.8493881225585938,
+ "step": 1680
+ },
+ {
+ "epoch": 23.34949759720402,
+ "grad_norm": 0.2069379836320877,
+ "learning_rate": 0.0006,
+ "loss": 3.8510046005249023,
+ "step": 1681
+ },
+ {
+ "epoch": 23.36347750109218,
+ "grad_norm": 0.19627872109413147,
+ "learning_rate": 0.0006,
+ "loss": 3.844618320465088,
+ "step": 1682
+ },
+ {
+ "epoch": 23.37745740498034,
+ "grad_norm": 0.19599434733390808,
+ "learning_rate": 0.0006,
+ "loss": 3.8245465755462646,
+ "step": 1683
+ },
+ {
+ "epoch": 23.3914373088685,
+ "grad_norm": 0.2035072147846222,
+ "learning_rate": 0.0006,
+ "loss": 3.854422092437744,
+ "step": 1684
+ },
+ {
+ "epoch": 23.405417212756664,
+ "grad_norm": 0.21836814284324646,
+ "learning_rate": 0.0006,
+ "loss": 3.83512282371521,
+ "step": 1685
+ },
+ {
+ "epoch": 23.419397116644824,
+ "grad_norm": 0.22844630479812622,
+ "learning_rate": 0.0006,
+ "loss": 3.8744301795959473,
+ "step": 1686
+ },
+ {
+ "epoch": 23.433377020532983,
+ "grad_norm": 0.2259359359741211,
+ "learning_rate": 0.0006,
+ "loss": 3.8460323810577393,
+ "step": 1687
+ },
+ {
+ "epoch": 23.447356924421143,
+ "grad_norm": 0.24440120160579681,
+ "learning_rate": 0.0006,
+ "loss": 3.8543787002563477,
+ "step": 1688
+ },
+ {
+ "epoch": 23.461336828309307,
+ "grad_norm": 0.25063708424568176,
+ "learning_rate": 0.0006,
+ "loss": 3.851004123687744,
+ "step": 1689
+ },
+ {
+ "epoch": 23.475316732197467,
+ "grad_norm": 0.25515618920326233,
+ "learning_rate": 0.0006,
+ "loss": 3.8685030937194824,
+ "step": 1690
+ },
+ {
+ "epoch": 23.489296636085626,
+ "grad_norm": 0.23961050808429718,
+ "learning_rate": 0.0006,
+ "loss": 3.866792678833008,
+ "step": 1691
+ },
+ {
+ "epoch": 23.503276539973786,
+ "grad_norm": 0.20880955457687378,
+ "learning_rate": 0.0006,
+ "loss": 3.8416638374328613,
+ "step": 1692
+ },
+ {
+ "epoch": 23.51725644386195,
+ "grad_norm": 0.1989721804857254,
+ "learning_rate": 0.0006,
+ "loss": 3.8608641624450684,
+ "step": 1693
+ },
+ {
+ "epoch": 23.53123634775011,
+ "grad_norm": 0.207577183842659,
+ "learning_rate": 0.0006,
+ "loss": 3.8431811332702637,
+ "step": 1694
+ },
+ {
+ "epoch": 23.54521625163827,
+ "grad_norm": 0.20844359695911407,
+ "learning_rate": 0.0006,
+ "loss": 3.882844924926758,
+ "step": 1695
+ },
+ {
+ "epoch": 23.55919615552643,
+ "grad_norm": 0.22511139512062073,
+ "learning_rate": 0.0006,
+ "loss": 3.866156578063965,
+ "step": 1696
+ },
+ {
+ "epoch": 23.573176059414592,
+ "grad_norm": 0.21648484468460083,
+ "learning_rate": 0.0006,
+ "loss": 3.87117075920105,
+ "step": 1697
+ },
+ {
+ "epoch": 23.587155963302752,
+ "grad_norm": 0.2081802636384964,
+ "learning_rate": 0.0006,
+ "loss": 3.828132152557373,
+ "step": 1698
+ },
+ {
+ "epoch": 23.601135867190912,
+ "grad_norm": 0.2017381489276886,
+ "learning_rate": 0.0006,
+ "loss": 3.839737892150879,
+ "step": 1699
+ },
+ {
+ "epoch": 23.615115771079076,
+ "grad_norm": 0.2025786191225052,
+ "learning_rate": 0.0006,
+ "loss": 3.8787710666656494,
+ "step": 1700
+ },
+ {
+ "epoch": 23.629095674967235,
+ "grad_norm": 0.21394102275371552,
+ "learning_rate": 0.0006,
+ "loss": 3.824047088623047,
+ "step": 1701
+ },
+ {
+ "epoch": 23.643075578855395,
+ "grad_norm": 0.20749174058437347,
+ "learning_rate": 0.0006,
+ "loss": 3.877009153366089,
+ "step": 1702
+ },
+ {
+ "epoch": 23.657055482743555,
+ "grad_norm": 0.2132839858531952,
+ "learning_rate": 0.0006,
+ "loss": 3.844214916229248,
+ "step": 1703
+ },
+ {
+ "epoch": 23.67103538663172,
+ "grad_norm": 0.22408637404441833,
+ "learning_rate": 0.0006,
+ "loss": 3.8570785522460938,
+ "step": 1704
+ },
+ {
+ "epoch": 23.68501529051988,
+ "grad_norm": 0.2275897115468979,
+ "learning_rate": 0.0006,
+ "loss": 3.8599512577056885,
+ "step": 1705
+ },
+ {
+ "epoch": 23.698995194408038,
+ "grad_norm": 0.2230614721775055,
+ "learning_rate": 0.0006,
+ "loss": 3.86374568939209,
+ "step": 1706
+ },
+ {
+ "epoch": 23.712975098296198,
+ "grad_norm": 0.21873739361763,
+ "learning_rate": 0.0006,
+ "loss": 3.8530168533325195,
+ "step": 1707
+ },
+ {
+ "epoch": 23.72695500218436,
+ "grad_norm": 0.24418923258781433,
+ "learning_rate": 0.0006,
+ "loss": 3.8410465717315674,
+ "step": 1708
+ },
+ {
+ "epoch": 23.74093490607252,
+ "grad_norm": 0.24894575774669647,
+ "learning_rate": 0.0006,
+ "loss": 3.8386030197143555,
+ "step": 1709
+ },
+ {
+ "epoch": 23.75491480996068,
+ "grad_norm": 0.221230611205101,
+ "learning_rate": 0.0006,
+ "loss": 3.8116674423217773,
+ "step": 1710
+ },
+ {
+ "epoch": 23.76889471384884,
+ "grad_norm": 0.20560568571090698,
+ "learning_rate": 0.0006,
+ "loss": 3.8634426593780518,
+ "step": 1711
+ },
+ {
+ "epoch": 23.782874617737004,
+ "grad_norm": 0.20450648665428162,
+ "learning_rate": 0.0006,
+ "loss": 3.8690528869628906,
+ "step": 1712
+ },
+ {
+ "epoch": 23.796854521625164,
+ "grad_norm": 0.18996809422969818,
+ "learning_rate": 0.0006,
+ "loss": 3.8484325408935547,
+ "step": 1713
+ },
+ {
+ "epoch": 23.810834425513324,
+ "grad_norm": 0.20165087282657623,
+ "learning_rate": 0.0006,
+ "loss": 3.8823161125183105,
+ "step": 1714
+ },
+ {
+ "epoch": 23.824814329401484,
+ "grad_norm": 0.21149255335330963,
+ "learning_rate": 0.0006,
+ "loss": 3.8833112716674805,
+ "step": 1715
+ },
+ {
+ "epoch": 23.838794233289647,
+ "grad_norm": 0.21254824101924896,
+ "learning_rate": 0.0006,
+ "loss": 3.8414595127105713,
+ "step": 1716
+ },
+ {
+ "epoch": 23.852774137177807,
+ "grad_norm": 0.21313664317131042,
+ "learning_rate": 0.0006,
+ "loss": 3.8732268810272217,
+ "step": 1717
+ },
+ {
+ "epoch": 23.866754041065967,
+ "grad_norm": 0.21635662019252777,
+ "learning_rate": 0.0006,
+ "loss": 3.861222743988037,
+ "step": 1718
+ },
+ {
+ "epoch": 23.88073394495413,
+ "grad_norm": 0.20612190663814545,
+ "learning_rate": 0.0006,
+ "loss": 3.821854591369629,
+ "step": 1719
+ },
+ {
+ "epoch": 23.89471384884229,
+ "grad_norm": 0.1975104659795761,
+ "learning_rate": 0.0006,
+ "loss": 3.8815202713012695,
+ "step": 1720
+ },
+ {
+ "epoch": 23.90869375273045,
+ "grad_norm": 0.20893609523773193,
+ "learning_rate": 0.0006,
+ "loss": 3.8581607341766357,
+ "step": 1721
+ },
+ {
+ "epoch": 23.92267365661861,
+ "grad_norm": 0.2125461846590042,
+ "learning_rate": 0.0006,
+ "loss": 3.839498281478882,
+ "step": 1722
+ },
+ {
+ "epoch": 23.936653560506773,
+ "grad_norm": 0.19985878467559814,
+ "learning_rate": 0.0006,
+ "loss": 3.856555223464966,
+ "step": 1723
+ },
+ {
+ "epoch": 23.950633464394933,
+ "grad_norm": 0.1922348290681839,
+ "learning_rate": 0.0006,
+ "loss": 3.8956782817840576,
+ "step": 1724
+ },
+ {
+ "epoch": 23.964613368283093,
+ "grad_norm": 0.2191949337720871,
+ "learning_rate": 0.0006,
+ "loss": 3.8582406044006348,
+ "step": 1725
+ },
+ {
+ "epoch": 23.978593272171253,
+ "grad_norm": 0.2569248676300049,
+ "learning_rate": 0.0006,
+ "loss": 3.855678081512451,
+ "step": 1726
+ },
+ {
+ "epoch": 23.992573176059416,
+ "grad_norm": 0.2641172409057617,
+ "learning_rate": 0.0006,
+ "loss": 3.8426473140716553,
+ "step": 1727
+ },
+ {
+ "epoch": 24.0,
+ "grad_norm": 0.29637208580970764,
+ "learning_rate": 0.0006,
+ "loss": 3.843040704727173,
+ "step": 1728
+ },
+ {
+ "epoch": 24.0,
+ "eval_loss": 4.075617790222168,
+ "eval_runtime": 43.9795,
+ "eval_samples_per_second": 55.526,
+ "eval_steps_per_second": 3.479,
+ "step": 1728
+ },
+ {
+ "epoch": 24.01397990388816,
+ "grad_norm": 0.2804758548736572,
+ "learning_rate": 0.0006,
+ "loss": 3.819150924682617,
+ "step": 1729
+ },
+ {
+ "epoch": 24.027959807776323,
+ "grad_norm": 0.2796347141265869,
+ "learning_rate": 0.0006,
+ "loss": 3.8400537967681885,
+ "step": 1730
+ },
+ {
+ "epoch": 24.041939711664483,
+ "grad_norm": 0.28388649225234985,
+ "learning_rate": 0.0006,
+ "loss": 3.844595432281494,
+ "step": 1731
+ },
+ {
+ "epoch": 24.055919615552643,
+ "grad_norm": 0.2944681942462921,
+ "learning_rate": 0.0006,
+ "loss": 3.8048014640808105,
+ "step": 1732
+ },
+ {
+ "epoch": 24.069899519440803,
+ "grad_norm": 0.2956784665584564,
+ "learning_rate": 0.0006,
+ "loss": 3.8488049507141113,
+ "step": 1733
+ },
+ {
+ "epoch": 24.083879423328966,
+ "grad_norm": 0.2822059392929077,
+ "learning_rate": 0.0006,
+ "loss": 3.850322723388672,
+ "step": 1734
+ },
+ {
+ "epoch": 24.097859327217126,
+ "grad_norm": 0.3012927174568176,
+ "learning_rate": 0.0006,
+ "loss": 3.8748154640197754,
+ "step": 1735
+ },
+ {
+ "epoch": 24.111839231105286,
+ "grad_norm": 0.28868764638900757,
+ "learning_rate": 0.0006,
+ "loss": 3.8282783031463623,
+ "step": 1736
+ },
+ {
+ "epoch": 24.125819134993446,
+ "grad_norm": 0.277203768491745,
+ "learning_rate": 0.0006,
+ "loss": 3.8462908267974854,
+ "step": 1737
+ },
+ {
+ "epoch": 24.13979903888161,
+ "grad_norm": 0.2654508948326111,
+ "learning_rate": 0.0006,
+ "loss": 3.8043856620788574,
+ "step": 1738
+ },
+ {
+ "epoch": 24.15377894276977,
+ "grad_norm": 0.24425740540027618,
+ "learning_rate": 0.0006,
+ "loss": 3.8284308910369873,
+ "step": 1739
+ },
+ {
+ "epoch": 24.16775884665793,
+ "grad_norm": 0.24407348036766052,
+ "learning_rate": 0.0006,
+ "loss": 3.8489203453063965,
+ "step": 1740
+ },
+ {
+ "epoch": 24.18173875054609,
+ "grad_norm": 0.2387724369764328,
+ "learning_rate": 0.0006,
+ "loss": 3.8240389823913574,
+ "step": 1741
+ },
+ {
+ "epoch": 24.195718654434252,
+ "grad_norm": 0.2832290232181549,
+ "learning_rate": 0.0006,
+ "loss": 3.869053363800049,
+ "step": 1742
+ },
+ {
+ "epoch": 24.209698558322412,
+ "grad_norm": 0.26501718163490295,
+ "learning_rate": 0.0006,
+ "loss": 3.8624343872070312,
+ "step": 1743
+ },
+ {
+ "epoch": 24.22367846221057,
+ "grad_norm": 0.24234668910503387,
+ "learning_rate": 0.0006,
+ "loss": 3.823103904724121,
+ "step": 1744
+ },
+ {
+ "epoch": 24.23765836609873,
+ "grad_norm": 0.24160076677799225,
+ "learning_rate": 0.0006,
+ "loss": 3.8174376487731934,
+ "step": 1745
+ },
+ {
+ "epoch": 24.251638269986895,
+ "grad_norm": 0.2447604238986969,
+ "learning_rate": 0.0006,
+ "loss": 3.8345441818237305,
+ "step": 1746
+ },
+ {
+ "epoch": 24.265618173875055,
+ "grad_norm": 0.22864456474781036,
+ "learning_rate": 0.0006,
+ "loss": 3.833101272583008,
+ "step": 1747
+ },
+ {
+ "epoch": 24.279598077763215,
+ "grad_norm": 0.20429204404354095,
+ "learning_rate": 0.0006,
+ "loss": 3.8055219650268555,
+ "step": 1748
+ },
+ {
+ "epoch": 24.293577981651374,
+ "grad_norm": 0.21538510918617249,
+ "learning_rate": 0.0006,
+ "loss": 3.7929327487945557,
+ "step": 1749
+ },
+ {
+ "epoch": 24.307557885539538,
+ "grad_norm": 0.2189008593559265,
+ "learning_rate": 0.0006,
+ "loss": 3.852264881134033,
+ "step": 1750
+ },
+ {
+ "epoch": 24.321537789427698,
+ "grad_norm": 0.2228662073612213,
+ "learning_rate": 0.0006,
+ "loss": 3.831088066101074,
+ "step": 1751
+ },
+ {
+ "epoch": 24.335517693315857,
+ "grad_norm": 0.2039937973022461,
+ "learning_rate": 0.0006,
+ "loss": 3.8358256816864014,
+ "step": 1752
+ },
+ {
+ "epoch": 24.34949759720402,
+ "grad_norm": 0.19247715175151825,
+ "learning_rate": 0.0006,
+ "loss": 3.8077402114868164,
+ "step": 1753
+ },
+ {
+ "epoch": 24.36347750109218,
+ "grad_norm": 0.18301935493946075,
+ "learning_rate": 0.0006,
+ "loss": 3.81380033493042,
+ "step": 1754
+ },
+ {
+ "epoch": 24.37745740498034,
+ "grad_norm": 0.19325268268585205,
+ "learning_rate": 0.0006,
+ "loss": 3.8447322845458984,
+ "step": 1755
+ },
+ {
+ "epoch": 24.3914373088685,
+ "grad_norm": 0.2007269263267517,
+ "learning_rate": 0.0006,
+ "loss": 3.82779860496521,
+ "step": 1756
+ },
+ {
+ "epoch": 24.405417212756664,
+ "grad_norm": 0.20567037165164948,
+ "learning_rate": 0.0006,
+ "loss": 3.800354480743408,
+ "step": 1757
+ },
+ {
+ "epoch": 24.419397116644824,
+ "grad_norm": 0.22553028166294098,
+ "learning_rate": 0.0006,
+ "loss": 3.7910406589508057,
+ "step": 1758
+ },
+ {
+ "epoch": 24.433377020532983,
+ "grad_norm": 0.22697079181671143,
+ "learning_rate": 0.0006,
+ "loss": 3.857635974884033,
+ "step": 1759
+ },
+ {
+ "epoch": 24.447356924421143,
+ "grad_norm": 0.22090297937393188,
+ "learning_rate": 0.0006,
+ "loss": 3.8112804889678955,
+ "step": 1760
+ },
+ {
+ "epoch": 24.461336828309307,
+ "grad_norm": 0.24325518310070038,
+ "learning_rate": 0.0006,
+ "loss": 3.822084426879883,
+ "step": 1761
+ },
+ {
+ "epoch": 24.475316732197467,
+ "grad_norm": 0.2702929377555847,
+ "learning_rate": 0.0006,
+ "loss": 3.8307600021362305,
+ "step": 1762
+ },
+ {
+ "epoch": 24.489296636085626,
+ "grad_norm": 0.2699742317199707,
+ "learning_rate": 0.0006,
+ "loss": 3.8479247093200684,
+ "step": 1763
+ },
+ {
+ "epoch": 24.503276539973786,
+ "grad_norm": 0.2526061236858368,
+ "learning_rate": 0.0006,
+ "loss": 3.8615071773529053,
+ "step": 1764
+ },
+ {
+ "epoch": 24.51725644386195,
+ "grad_norm": 0.2633848190307617,
+ "learning_rate": 0.0006,
+ "loss": 3.8412697315216064,
+ "step": 1765
+ },
+ {
+ "epoch": 24.53123634775011,
+ "grad_norm": 0.2711184024810791,
+ "learning_rate": 0.0006,
+ "loss": 3.83647084236145,
+ "step": 1766
+ },
+ {
+ "epoch": 24.54521625163827,
+ "grad_norm": 0.2691243588924408,
+ "learning_rate": 0.0006,
+ "loss": 3.8489012718200684,
+ "step": 1767
+ },
+ {
+ "epoch": 24.55919615552643,
+ "grad_norm": 0.2580898404121399,
+ "learning_rate": 0.0006,
+ "loss": 3.8464407920837402,
+ "step": 1768
+ },
+ {
+ "epoch": 24.573176059414592,
+ "grad_norm": 0.21342119574546814,
+ "learning_rate": 0.0006,
+ "loss": 3.8279383182525635,
+ "step": 1769
+ },
+ {
+ "epoch": 24.587155963302752,
+ "grad_norm": 0.22102399170398712,
+ "learning_rate": 0.0006,
+ "loss": 3.841676712036133,
+ "step": 1770
+ },
+ {
+ "epoch": 24.601135867190912,
+ "grad_norm": 0.2882173955440521,
+ "learning_rate": 0.0006,
+ "loss": 3.825528383255005,
+ "step": 1771
+ },
+ {
+ "epoch": 24.615115771079076,
+ "grad_norm": 0.3403635323047638,
+ "learning_rate": 0.0006,
+ "loss": 3.8282246589660645,
+ "step": 1772
+ },
+ {
+ "epoch": 24.629095674967235,
+ "grad_norm": 0.32192692160606384,
+ "learning_rate": 0.0006,
+ "loss": 3.8411307334899902,
+ "step": 1773
+ },
+ {
+ "epoch": 24.643075578855395,
+ "grad_norm": 0.2534109055995941,
+ "learning_rate": 0.0006,
+ "loss": 3.843007802963257,
+ "step": 1774
+ },
+ {
+ "epoch": 24.657055482743555,
+ "grad_norm": 0.25483962893486023,
+ "learning_rate": 0.0006,
+ "loss": 3.848358154296875,
+ "step": 1775
+ },
+ {
+ "epoch": 24.67103538663172,
+ "grad_norm": 0.25175443291664124,
+ "learning_rate": 0.0006,
+ "loss": 3.8232598304748535,
+ "step": 1776
+ },
+ {
+ "epoch": 24.68501529051988,
+ "grad_norm": 0.20538510382175446,
+ "learning_rate": 0.0006,
+ "loss": 3.857635498046875,
+ "step": 1777
+ },
+ {
+ "epoch": 24.698995194408038,
+ "grad_norm": 0.240861177444458,
+ "learning_rate": 0.0006,
+ "loss": 3.83717679977417,
+ "step": 1778
+ },
+ {
+ "epoch": 24.712975098296198,
+ "grad_norm": 0.23646967113018036,
+ "learning_rate": 0.0006,
+ "loss": 3.81032133102417,
+ "step": 1779
+ },
+ {
+ "epoch": 24.72695500218436,
+ "grad_norm": 0.2164423167705536,
+ "learning_rate": 0.0006,
+ "loss": 3.807878255844116,
+ "step": 1780
+ },
+ {
+ "epoch": 24.74093490607252,
+ "grad_norm": 0.21160705387592316,
+ "learning_rate": 0.0006,
+ "loss": 3.870394468307495,
+ "step": 1781
+ },
+ {
+ "epoch": 24.75491480996068,
+ "grad_norm": 0.20284807682037354,
+ "learning_rate": 0.0006,
+ "loss": 3.842154026031494,
+ "step": 1782
+ },
+ {
+ "epoch": 24.76889471384884,
+ "grad_norm": 0.20738485455513,
+ "learning_rate": 0.0006,
+ "loss": 3.8347136974334717,
+ "step": 1783
+ },
+ {
+ "epoch": 24.782874617737004,
+ "grad_norm": 0.20253778994083405,
+ "learning_rate": 0.0006,
+ "loss": 3.814948320388794,
+ "step": 1784
+ },
+ {
+ "epoch": 24.796854521625164,
+ "grad_norm": 0.20567010343074799,
+ "learning_rate": 0.0006,
+ "loss": 3.8354592323303223,
+ "step": 1785
+ },
+ {
+ "epoch": 24.810834425513324,
+ "grad_norm": 0.20639720559120178,
+ "learning_rate": 0.0006,
+ "loss": 3.8336033821105957,
+ "step": 1786
+ },
+ {
+ "epoch": 24.824814329401484,
+ "grad_norm": 0.19978247582912445,
+ "learning_rate": 0.0006,
+ "loss": 3.8209140300750732,
+ "step": 1787
+ },
+ {
+ "epoch": 24.838794233289647,
+ "grad_norm": 0.20628373324871063,
+ "learning_rate": 0.0006,
+ "loss": 3.8372955322265625,
+ "step": 1788
+ },
+ {
+ "epoch": 24.852774137177807,
+ "grad_norm": 0.2266162782907486,
+ "learning_rate": 0.0006,
+ "loss": 3.850994110107422,
+ "step": 1789
+ },
+ {
+ "epoch": 24.866754041065967,
+ "grad_norm": 0.22567765414714813,
+ "learning_rate": 0.0006,
+ "loss": 3.8552165031433105,
+ "step": 1790
+ },
+ {
+ "epoch": 24.88073394495413,
+ "grad_norm": 0.228011354804039,
+ "learning_rate": 0.0006,
+ "loss": 3.8310747146606445,
+ "step": 1791
+ },
+ {
+ "epoch": 24.89471384884229,
+ "grad_norm": 0.23706914484500885,
+ "learning_rate": 0.0006,
+ "loss": 3.8369603157043457,
+ "step": 1792
+ },
+ {
+ "epoch": 24.90869375273045,
+ "grad_norm": 0.22669097781181335,
+ "learning_rate": 0.0006,
+ "loss": 3.8443825244903564,
+ "step": 1793
+ },
+ {
+ "epoch": 24.92267365661861,
+ "grad_norm": 0.2051001936197281,
+ "learning_rate": 0.0006,
+ "loss": 3.7938501834869385,
+ "step": 1794
+ },
+ {
+ "epoch": 24.936653560506773,
+ "grad_norm": 0.2091219276189804,
+ "learning_rate": 0.0006,
+ "loss": 3.8167076110839844,
+ "step": 1795
+ },
+ {
+ "epoch": 24.950633464394933,
+ "grad_norm": 0.20517204701900482,
+ "learning_rate": 0.0006,
+ "loss": 3.852670669555664,
+ "step": 1796
+ },
+ {
+ "epoch": 24.964613368283093,
+ "grad_norm": 0.19916993379592896,
+ "learning_rate": 0.0006,
+ "loss": 3.8410873413085938,
+ "step": 1797
+ },
+ {
+ "epoch": 24.978593272171253,
+ "grad_norm": 0.21313942968845367,
+ "learning_rate": 0.0006,
+ "loss": 3.8383948802948,
+ "step": 1798
+ },
+ {
+ "epoch": 24.992573176059416,
+ "grad_norm": 0.21042990684509277,
+ "learning_rate": 0.0006,
+ "loss": 3.8623173236846924,
+ "step": 1799
+ },
+ {
+ "epoch": 25.0,
+ "grad_norm": 0.23052045702934265,
+ "learning_rate": 0.0006,
+ "loss": 3.8646674156188965,
+ "step": 1800
+ },
+ {
+ "epoch": 25.0,
+ "eval_loss": 4.081690311431885,
+ "eval_runtime": 44.036,
+ "eval_samples_per_second": 55.455,
+ "eval_steps_per_second": 3.474,
+ "step": 1800
+ },
+ {
+ "epoch": 25.01397990388816,
+ "grad_norm": 0.22068746387958527,
+ "learning_rate": 0.0006,
+ "loss": 3.8002820014953613,
+ "step": 1801
+ },
+ {
+ "epoch": 25.027959807776323,
+ "grad_norm": 0.20711193978786469,
+ "learning_rate": 0.0006,
+ "loss": 3.787785768508911,
+ "step": 1802
+ },
+ {
+ "epoch": 25.041939711664483,
+ "grad_norm": 0.20659677684307098,
+ "learning_rate": 0.0006,
+ "loss": 3.80245304107666,
+ "step": 1803
+ },
+ {
+ "epoch": 25.055919615552643,
+ "grad_norm": 0.22891797125339508,
+ "learning_rate": 0.0006,
+ "loss": 3.784543514251709,
+ "step": 1804
+ },
+ {
+ "epoch": 25.069899519440803,
+ "grad_norm": 0.23679181933403015,
+ "learning_rate": 0.0006,
+ "loss": 3.8311429023742676,
+ "step": 1805
+ },
+ {
+ "epoch": 25.083879423328966,
+ "grad_norm": 0.2548872232437134,
+ "learning_rate": 0.0006,
+ "loss": 3.8047211170196533,
+ "step": 1806
+ },
+ {
+ "epoch": 25.097859327217126,
+ "grad_norm": 0.26181501150131226,
+ "learning_rate": 0.0006,
+ "loss": 3.837508201599121,
+ "step": 1807
+ },
+ {
+ "epoch": 25.111839231105286,
+ "grad_norm": 0.2548452913761139,
+ "learning_rate": 0.0006,
+ "loss": 3.831544876098633,
+ "step": 1808
+ },
+ {
+ "epoch": 25.125819134993446,
+ "grad_norm": 0.26177605986595154,
+ "learning_rate": 0.0006,
+ "loss": 3.805346965789795,
+ "step": 1809
+ },
+ {
+ "epoch": 25.13979903888161,
+ "grad_norm": 0.2608112394809723,
+ "learning_rate": 0.0006,
+ "loss": 3.8040924072265625,
+ "step": 1810
+ },
+ {
+ "epoch": 25.15377894276977,
+ "grad_norm": 0.2586037814617157,
+ "learning_rate": 0.0006,
+ "loss": 3.8102216720581055,
+ "step": 1811
+ },
+ {
+ "epoch": 25.16775884665793,
+ "grad_norm": 0.26258161664009094,
+ "learning_rate": 0.0006,
+ "loss": 3.8152549266815186,
+ "step": 1812
+ },
+ {
+ "epoch": 25.18173875054609,
+ "grad_norm": 0.2803022265434265,
+ "learning_rate": 0.0006,
+ "loss": 3.82576584815979,
+ "step": 1813
+ },
+ {
+ "epoch": 25.195718654434252,
+ "grad_norm": 0.2618221938610077,
+ "learning_rate": 0.0006,
+ "loss": 3.817220687866211,
+ "step": 1814
+ },
+ {
+ "epoch": 25.209698558322412,
+ "grad_norm": 0.23283469676971436,
+ "learning_rate": 0.0006,
+ "loss": 3.7999041080474854,
+ "step": 1815
+ },
+ {
+ "epoch": 25.22367846221057,
+ "grad_norm": 0.20110781490802765,
+ "learning_rate": 0.0006,
+ "loss": 3.783228874206543,
+ "step": 1816
+ },
+ {
+ "epoch": 25.23765836609873,
+ "grad_norm": 0.2231830358505249,
+ "learning_rate": 0.0006,
+ "loss": 3.8032913208007812,
+ "step": 1817
+ },
+ {
+ "epoch": 25.251638269986895,
+ "grad_norm": 0.21807286143302917,
+ "learning_rate": 0.0006,
+ "loss": 3.817028045654297,
+ "step": 1818
+ },
+ {
+ "epoch": 25.265618173875055,
+ "grad_norm": 0.22710664570331573,
+ "learning_rate": 0.0006,
+ "loss": 3.8201727867126465,
+ "step": 1819
+ },
+ {
+ "epoch": 25.279598077763215,
+ "grad_norm": 0.22299866378307343,
+ "learning_rate": 0.0006,
+ "loss": 3.8198719024658203,
+ "step": 1820
+ },
+ {
+ "epoch": 25.293577981651374,
+ "grad_norm": 0.20886564254760742,
+ "learning_rate": 0.0006,
+ "loss": 3.792414665222168,
+ "step": 1821
+ },
+ {
+ "epoch": 25.307557885539538,
+ "grad_norm": 0.20887352526187897,
+ "learning_rate": 0.0006,
+ "loss": 3.7634057998657227,
+ "step": 1822
+ },
+ {
+ "epoch": 25.321537789427698,
+ "grad_norm": 0.24560041725635529,
+ "learning_rate": 0.0006,
+ "loss": 3.79359769821167,
+ "step": 1823
+ },
+ {
+ "epoch": 25.335517693315857,
+ "grad_norm": 0.22767415642738342,
+ "learning_rate": 0.0006,
+ "loss": 3.8313469886779785,
+ "step": 1824
+ },
+ {
+ "epoch": 25.34949759720402,
+ "grad_norm": 0.21617893874645233,
+ "learning_rate": 0.0006,
+ "loss": 3.77200984954834,
+ "step": 1825
+ },
+ {
+ "epoch": 25.36347750109218,
+ "grad_norm": 0.21010833978652954,
+ "learning_rate": 0.0006,
+ "loss": 3.8042140007019043,
+ "step": 1826
+ },
+ {
+ "epoch": 25.37745740498034,
+ "grad_norm": 0.24087965488433838,
+ "learning_rate": 0.0006,
+ "loss": 3.8260979652404785,
+ "step": 1827
+ },
+ {
+ "epoch": 25.3914373088685,
+ "grad_norm": 0.2735275626182556,
+ "learning_rate": 0.0006,
+ "loss": 3.8499274253845215,
+ "step": 1828
+ },
+ {
+ "epoch": 25.405417212756664,
+ "grad_norm": 0.24831001460552216,
+ "learning_rate": 0.0006,
+ "loss": 3.8146448135375977,
+ "step": 1829
+ },
+ {
+ "epoch": 25.419397116644824,
+ "grad_norm": 0.21822866797447205,
+ "learning_rate": 0.0006,
+ "loss": 3.7845146656036377,
+ "step": 1830
+ },
+ {
+ "epoch": 25.433377020532983,
+ "grad_norm": 0.19948813319206238,
+ "learning_rate": 0.0006,
+ "loss": 3.823997974395752,
+ "step": 1831
+ },
+ {
+ "epoch": 25.447356924421143,
+ "grad_norm": 0.18342702090740204,
+ "learning_rate": 0.0006,
+ "loss": 3.8201193809509277,
+ "step": 1832
+ },
+ {
+ "epoch": 25.461336828309307,
+ "grad_norm": 0.19377560913562775,
+ "learning_rate": 0.0006,
+ "loss": 3.8069632053375244,
+ "step": 1833
+ },
+ {
+ "epoch": 25.475316732197467,
+ "grad_norm": 0.22348709404468536,
+ "learning_rate": 0.0006,
+ "loss": 3.7918643951416016,
+ "step": 1834
+ },
+ {
+ "epoch": 25.489296636085626,
+ "grad_norm": 0.24484702944755554,
+ "learning_rate": 0.0006,
+ "loss": 3.85046124458313,
+ "step": 1835
+ },
+ {
+ "epoch": 25.503276539973786,
+ "grad_norm": 0.2493520826101303,
+ "learning_rate": 0.0006,
+ "loss": 3.8043932914733887,
+ "step": 1836
+ },
+ {
+ "epoch": 25.51725644386195,
+ "grad_norm": 0.21509641408920288,
+ "learning_rate": 0.0006,
+ "loss": 3.8064627647399902,
+ "step": 1837
+ },
+ {
+ "epoch": 25.53123634775011,
+ "grad_norm": 0.21912820637226105,
+ "learning_rate": 0.0006,
+ "loss": 3.850588321685791,
+ "step": 1838
+ },
+ {
+ "epoch": 25.54521625163827,
+ "grad_norm": 0.28400927782058716,
+ "learning_rate": 0.0006,
+ "loss": 3.79818058013916,
+ "step": 1839
+ },
+ {
+ "epoch": 25.55919615552643,
+ "grad_norm": 0.32193225622177124,
+ "learning_rate": 0.0006,
+ "loss": 3.836275815963745,
+ "step": 1840
+ },
+ {
+ "epoch": 25.573176059414592,
+ "grad_norm": 0.2902325987815857,
+ "learning_rate": 0.0006,
+ "loss": 3.8080005645751953,
+ "step": 1841
+ },
+ {
+ "epoch": 25.587155963302752,
+ "grad_norm": 0.21759532392024994,
+ "learning_rate": 0.0006,
+ "loss": 3.8233771324157715,
+ "step": 1842
+ },
+ {
+ "epoch": 25.601135867190912,
+ "grad_norm": 0.19645214080810547,
+ "learning_rate": 0.0006,
+ "loss": 3.838881015777588,
+ "step": 1843
+ },
+ {
+ "epoch": 25.615115771079076,
+ "grad_norm": 0.19322903454303741,
+ "learning_rate": 0.0006,
+ "loss": 3.7870054244995117,
+ "step": 1844
+ },
+ {
+ "epoch": 25.629095674967235,
+ "grad_norm": 0.2074001580476761,
+ "learning_rate": 0.0006,
+ "loss": 3.8239974975585938,
+ "step": 1845
+ },
+ {
+ "epoch": 25.643075578855395,
+ "grad_norm": 0.2166101336479187,
+ "learning_rate": 0.0006,
+ "loss": 3.8290855884552,
+ "step": 1846
+ },
+ {
+ "epoch": 25.657055482743555,
+ "grad_norm": 0.23738539218902588,
+ "learning_rate": 0.0006,
+ "loss": 3.7993364334106445,
+ "step": 1847
+ },
+ {
+ "epoch": 25.67103538663172,
+ "grad_norm": 0.23882314562797546,
+ "learning_rate": 0.0006,
+ "loss": 3.802586078643799,
+ "step": 1848
+ },
+ {
+ "epoch": 25.68501529051988,
+ "grad_norm": 0.24168142676353455,
+ "learning_rate": 0.0006,
+ "loss": 3.8303489685058594,
+ "step": 1849
+ },
+ {
+ "epoch": 25.698995194408038,
+ "grad_norm": 0.22423343360424042,
+ "learning_rate": 0.0006,
+ "loss": 3.836228370666504,
+ "step": 1850
+ },
+ {
+ "epoch": 25.712975098296198,
+ "grad_norm": 0.23816974461078644,
+ "learning_rate": 0.0006,
+ "loss": 3.8380274772644043,
+ "step": 1851
+ },
+ {
+ "epoch": 25.72695500218436,
+ "grad_norm": 0.22465108335018158,
+ "learning_rate": 0.0006,
+ "loss": 3.8496339321136475,
+ "step": 1852
+ },
+ {
+ "epoch": 25.74093490607252,
+ "grad_norm": 0.20792442560195923,
+ "learning_rate": 0.0006,
+ "loss": 3.797853946685791,
+ "step": 1853
+ },
+ {
+ "epoch": 25.75491480996068,
+ "grad_norm": 0.20770230889320374,
+ "learning_rate": 0.0006,
+ "loss": 3.842322826385498,
+ "step": 1854
+ },
+ {
+ "epoch": 25.76889471384884,
+ "grad_norm": 0.1928192526102066,
+ "learning_rate": 0.0006,
+ "loss": 3.836540699005127,
+ "step": 1855
+ },
+ {
+ "epoch": 25.782874617737004,
+ "grad_norm": 0.19045178592205048,
+ "learning_rate": 0.0006,
+ "loss": 3.7758889198303223,
+ "step": 1856
+ },
+ {
+ "epoch": 25.796854521625164,
+ "grad_norm": 0.205548495054245,
+ "learning_rate": 0.0006,
+ "loss": 3.8244709968566895,
+ "step": 1857
+ },
+ {
+ "epoch": 25.810834425513324,
+ "grad_norm": 0.20968270301818848,
+ "learning_rate": 0.0006,
+ "loss": 3.8376216888427734,
+ "step": 1858
+ },
+ {
+ "epoch": 25.824814329401484,
+ "grad_norm": 0.18917354941368103,
+ "learning_rate": 0.0006,
+ "loss": 3.8497915267944336,
+ "step": 1859
+ },
+ {
+ "epoch": 25.838794233289647,
+ "grad_norm": 0.2050701528787613,
+ "learning_rate": 0.0006,
+ "loss": 3.819628953933716,
+ "step": 1860
+ },
+ {
+ "epoch": 25.852774137177807,
+ "grad_norm": 0.1981319785118103,
+ "learning_rate": 0.0006,
+ "loss": 3.8007922172546387,
+ "step": 1861
+ },
+ {
+ "epoch": 25.866754041065967,
+ "grad_norm": 0.19055861234664917,
+ "learning_rate": 0.0006,
+ "loss": 3.8304519653320312,
+ "step": 1862
+ },
+ {
+ "epoch": 25.88073394495413,
+ "grad_norm": 0.19255517423152924,
+ "learning_rate": 0.0006,
+ "loss": 3.833280563354492,
+ "step": 1863
+ },
+ {
+ "epoch": 25.89471384884229,
+ "grad_norm": 0.19059430062770844,
+ "learning_rate": 0.0006,
+ "loss": 3.813796281814575,
+ "step": 1864
+ },
+ {
+ "epoch": 25.90869375273045,
+ "grad_norm": 0.18581309914588928,
+ "learning_rate": 0.0006,
+ "loss": 3.8211798667907715,
+ "step": 1865
+ },
+ {
+ "epoch": 25.92267365661861,
+ "grad_norm": 0.20181003212928772,
+ "learning_rate": 0.0006,
+ "loss": 3.8380484580993652,
+ "step": 1866
+ },
+ {
+ "epoch": 25.936653560506773,
+ "grad_norm": 0.22334498167037964,
+ "learning_rate": 0.0006,
+ "loss": 3.8294434547424316,
+ "step": 1867
+ },
+ {
+ "epoch": 25.950633464394933,
+ "grad_norm": 0.20456703007221222,
+ "learning_rate": 0.0006,
+ "loss": 3.819223642349243,
+ "step": 1868
+ },
+ {
+ "epoch": 25.964613368283093,
+ "grad_norm": 0.1885606348514557,
+ "learning_rate": 0.0006,
+ "loss": 3.8110103607177734,
+ "step": 1869
+ },
+ {
+ "epoch": 25.978593272171253,
+ "grad_norm": 0.18862110376358032,
+ "learning_rate": 0.0006,
+ "loss": 3.788691997528076,
+ "step": 1870
+ },
+ {
+ "epoch": 25.992573176059416,
+ "grad_norm": 0.19802744686603546,
+ "learning_rate": 0.0006,
+ "loss": 3.8423619270324707,
+ "step": 1871
+ },
+ {
+ "epoch": 26.0,
+ "grad_norm": 0.23762032389640808,
+ "learning_rate": 0.0006,
+ "loss": 3.7848567962646484,
+ "step": 1872
+ },
+ {
+ "epoch": 26.0,
+ "eval_loss": 4.054965019226074,
+ "eval_runtime": 44.2423,
+ "eval_samples_per_second": 55.196,
+ "eval_steps_per_second": 3.458,
+ "step": 1872
+ },
+ {
+ "epoch": 26.01397990388816,
+ "grad_norm": 0.21533054113388062,
+ "learning_rate": 0.0006,
+ "loss": 3.8123154640197754,
+ "step": 1873
+ },
+ {
+ "epoch": 26.027959807776323,
+ "grad_norm": 0.25094854831695557,
+ "learning_rate": 0.0006,
+ "loss": 3.7847447395324707,
+ "step": 1874
+ },
+ {
+ "epoch": 26.041939711664483,
+ "grad_norm": 0.24042077362537384,
+ "learning_rate": 0.0006,
+ "loss": 3.8033599853515625,
+ "step": 1875
+ },
+ {
+ "epoch": 26.055919615552643,
+ "grad_norm": 0.2425149381160736,
+ "learning_rate": 0.0006,
+ "loss": 3.7828550338745117,
+ "step": 1876
+ },
+ {
+ "epoch": 26.069899519440803,
+ "grad_norm": 0.2300514280796051,
+ "learning_rate": 0.0006,
+ "loss": 3.750882148742676,
+ "step": 1877
+ },
+ {
+ "epoch": 26.083879423328966,
+ "grad_norm": 0.2513943612575531,
+ "learning_rate": 0.0006,
+ "loss": 3.800323963165283,
+ "step": 1878
+ },
+ {
+ "epoch": 26.097859327217126,
+ "grad_norm": 0.2536966800689697,
+ "learning_rate": 0.0006,
+ "loss": 3.8198962211608887,
+ "step": 1879
+ },
+ {
+ "epoch": 26.111839231105286,
+ "grad_norm": 0.24483931064605713,
+ "learning_rate": 0.0006,
+ "loss": 3.825563907623291,
+ "step": 1880
+ },
+ {
+ "epoch": 26.125819134993446,
+ "grad_norm": 0.2502584755420685,
+ "learning_rate": 0.0006,
+ "loss": 3.78756046295166,
+ "step": 1881
+ },
+ {
+ "epoch": 26.13979903888161,
+ "grad_norm": 0.2695745527744293,
+ "learning_rate": 0.0006,
+ "loss": 3.8205409049987793,
+ "step": 1882
+ },
+ {
+ "epoch": 26.15377894276977,
+ "grad_norm": 0.2873472273349762,
+ "learning_rate": 0.0006,
+ "loss": 3.7880778312683105,
+ "step": 1883
+ },
+ {
+ "epoch": 26.16775884665793,
+ "grad_norm": 0.28609949350357056,
+ "learning_rate": 0.0006,
+ "loss": 3.788517951965332,
+ "step": 1884
+ },
+ {
+ "epoch": 26.18173875054609,
+ "grad_norm": 0.28352269530296326,
+ "learning_rate": 0.0006,
+ "loss": 3.778015613555908,
+ "step": 1885
+ },
+ {
+ "epoch": 26.195718654434252,
+ "grad_norm": 0.27055084705352783,
+ "learning_rate": 0.0006,
+ "loss": 3.7857203483581543,
+ "step": 1886
+ },
+ {
+ "epoch": 26.209698558322412,
+ "grad_norm": 0.255647748708725,
+ "learning_rate": 0.0006,
+ "loss": 3.791355609893799,
+ "step": 1887
+ },
+ {
+ "epoch": 26.22367846221057,
+ "grad_norm": 0.22624439001083374,
+ "learning_rate": 0.0006,
+ "loss": 3.7624831199645996,
+ "step": 1888
+ },
+ {
+ "epoch": 26.23765836609873,
+ "grad_norm": 0.2283596396446228,
+ "learning_rate": 0.0006,
+ "loss": 3.8052897453308105,
+ "step": 1889
+ },
+ {
+ "epoch": 26.251638269986895,
+ "grad_norm": 0.2336510866880417,
+ "learning_rate": 0.0006,
+ "loss": 3.789015054702759,
+ "step": 1890
+ },
+ {
+ "epoch": 26.265618173875055,
+ "grad_norm": 0.24107608199119568,
+ "learning_rate": 0.0006,
+ "loss": 3.756551742553711,
+ "step": 1891
+ },
+ {
+ "epoch": 26.279598077763215,
+ "grad_norm": 0.22438564896583557,
+ "learning_rate": 0.0006,
+ "loss": 3.797952651977539,
+ "step": 1892
+ },
+ {
+ "epoch": 26.293577981651374,
+ "grad_norm": 0.24594341218471527,
+ "learning_rate": 0.0006,
+ "loss": 3.7925708293914795,
+ "step": 1893
+ },
+ {
+ "epoch": 26.307557885539538,
+ "grad_norm": 0.23314352333545685,
+ "learning_rate": 0.0006,
+ "loss": 3.792447328567505,
+ "step": 1894
+ },
+ {
+ "epoch": 26.321537789427698,
+ "grad_norm": 0.20870383083820343,
+ "learning_rate": 0.0006,
+ "loss": 3.7888340950012207,
+ "step": 1895
+ },
+ {
+ "epoch": 26.335517693315857,
+ "grad_norm": 0.206504687666893,
+ "learning_rate": 0.0006,
+ "loss": 3.7856602668762207,
+ "step": 1896
+ },
+ {
+ "epoch": 26.34949759720402,
+ "grad_norm": 0.20193266868591309,
+ "learning_rate": 0.0006,
+ "loss": 3.810800552368164,
+ "step": 1897
+ },
+ {
+ "epoch": 26.36347750109218,
+ "grad_norm": 0.2143869698047638,
+ "learning_rate": 0.0006,
+ "loss": 3.818742275238037,
+ "step": 1898
+ },
+ {
+ "epoch": 26.37745740498034,
+ "grad_norm": 0.21388593316078186,
+ "learning_rate": 0.0006,
+ "loss": 3.7576632499694824,
+ "step": 1899
+ },
+ {
+ "epoch": 26.3914373088685,
+ "grad_norm": 0.1933414787054062,
+ "learning_rate": 0.0006,
+ "loss": 3.802579879760742,
+ "step": 1900
+ },
+ {
+ "epoch": 26.405417212756664,
+ "grad_norm": 0.18144549429416656,
+ "learning_rate": 0.0006,
+ "loss": 3.7830452919006348,
+ "step": 1901
+ },
+ {
+ "epoch": 26.419397116644824,
+ "grad_norm": 0.20027601718902588,
+ "learning_rate": 0.0006,
+ "loss": 3.8112521171569824,
+ "step": 1902
+ },
+ {
+ "epoch": 26.433377020532983,
+ "grad_norm": 0.19402910768985748,
+ "learning_rate": 0.0006,
+ "loss": 3.778012990951538,
+ "step": 1903
+ },
+ {
+ "epoch": 26.447356924421143,
+ "grad_norm": 0.19020743668079376,
+ "learning_rate": 0.0006,
+ "loss": 3.823355197906494,
+ "step": 1904
+ },
+ {
+ "epoch": 26.461336828309307,
+ "grad_norm": 0.1885242760181427,
+ "learning_rate": 0.0006,
+ "loss": 3.782108783721924,
+ "step": 1905
+ },
+ {
+ "epoch": 26.475316732197467,
+ "grad_norm": 0.2024235874414444,
+ "learning_rate": 0.0006,
+ "loss": 3.810448408126831,
+ "step": 1906
+ },
+ {
+ "epoch": 26.489296636085626,
+ "grad_norm": 0.21408027410507202,
+ "learning_rate": 0.0006,
+ "loss": 3.8185606002807617,
+ "step": 1907
+ },
+ {
+ "epoch": 26.503276539973786,
+ "grad_norm": 0.22810906171798706,
+ "learning_rate": 0.0006,
+ "loss": 3.8052706718444824,
+ "step": 1908
+ },
+ {
+ "epoch": 26.51725644386195,
+ "grad_norm": 0.21328197419643402,
+ "learning_rate": 0.0006,
+ "loss": 3.7858219146728516,
+ "step": 1909
+ },
+ {
+ "epoch": 26.53123634775011,
+ "grad_norm": 0.20843173563480377,
+ "learning_rate": 0.0006,
+ "loss": 3.8069310188293457,
+ "step": 1910
+ },
+ {
+ "epoch": 26.54521625163827,
+ "grad_norm": 0.2072986662387848,
+ "learning_rate": 0.0006,
+ "loss": 3.794975996017456,
+ "step": 1911
+ },
+ {
+ "epoch": 26.55919615552643,
+ "grad_norm": 0.2203216850757599,
+ "learning_rate": 0.0006,
+ "loss": 3.8070101737976074,
+ "step": 1912
+ },
+ {
+ "epoch": 26.573176059414592,
+ "grad_norm": 0.23449191451072693,
+ "learning_rate": 0.0006,
+ "loss": 3.828695774078369,
+ "step": 1913
+ },
+ {
+ "epoch": 26.587155963302752,
+ "grad_norm": 0.2222008854150772,
+ "learning_rate": 0.0006,
+ "loss": 3.781275749206543,
+ "step": 1914
+ },
+ {
+ "epoch": 26.601135867190912,
+ "grad_norm": 0.22328314185142517,
+ "learning_rate": 0.0006,
+ "loss": 3.7953736782073975,
+ "step": 1915
+ },
+ {
+ "epoch": 26.615115771079076,
+ "grad_norm": 0.2377961128950119,
+ "learning_rate": 0.0006,
+ "loss": 3.8428916931152344,
+ "step": 1916
+ },
+ {
+ "epoch": 26.629095674967235,
+ "grad_norm": 0.2546147108078003,
+ "learning_rate": 0.0006,
+ "loss": 3.7940590381622314,
+ "step": 1917
+ },
+ {
+ "epoch": 26.643075578855395,
+ "grad_norm": 0.24234509468078613,
+ "learning_rate": 0.0006,
+ "loss": 3.802234172821045,
+ "step": 1918
+ },
+ {
+ "epoch": 26.657055482743555,
+ "grad_norm": 0.21294651925563812,
+ "learning_rate": 0.0006,
+ "loss": 3.8159232139587402,
+ "step": 1919
+ },
+ {
+ "epoch": 26.67103538663172,
+ "grad_norm": 0.20008964836597443,
+ "learning_rate": 0.0006,
+ "loss": 3.796949863433838,
+ "step": 1920
+ },
+ {
+ "epoch": 26.68501529051988,
+ "grad_norm": 0.21031023561954498,
+ "learning_rate": 0.0006,
+ "loss": 3.8015570640563965,
+ "step": 1921
+ },
+ {
+ "epoch": 26.698995194408038,
+ "grad_norm": 0.2185603827238083,
+ "learning_rate": 0.0006,
+ "loss": 3.8022537231445312,
+ "step": 1922
+ },
+ {
+ "epoch": 26.712975098296198,
+ "grad_norm": 0.22957198321819305,
+ "learning_rate": 0.0006,
+ "loss": 3.7859907150268555,
+ "step": 1923
+ },
+ {
+ "epoch": 26.72695500218436,
+ "grad_norm": 0.23779156804084778,
+ "learning_rate": 0.0006,
+ "loss": 3.830345630645752,
+ "step": 1924
+ },
+ {
+ "epoch": 26.74093490607252,
+ "grad_norm": 0.23577193915843964,
+ "learning_rate": 0.0006,
+ "loss": 3.777338981628418,
+ "step": 1925
+ },
+ {
+ "epoch": 26.75491480996068,
+ "grad_norm": 0.2521933913230896,
+ "learning_rate": 0.0006,
+ "loss": 3.8215396404266357,
+ "step": 1926
+ },
+ {
+ "epoch": 26.76889471384884,
+ "grad_norm": 0.25050726532936096,
+ "learning_rate": 0.0006,
+ "loss": 3.817509651184082,
+ "step": 1927
+ },
+ {
+ "epoch": 26.782874617737004,
+ "grad_norm": 0.24442453682422638,
+ "learning_rate": 0.0006,
+ "loss": 3.8033013343811035,
+ "step": 1928
+ },
+ {
+ "epoch": 26.796854521625164,
+ "grad_norm": 0.2280828058719635,
+ "learning_rate": 0.0006,
+ "loss": 3.798625946044922,
+ "step": 1929
+ },
+ {
+ "epoch": 26.810834425513324,
+ "grad_norm": 0.23072117567062378,
+ "learning_rate": 0.0006,
+ "loss": 3.8109097480773926,
+ "step": 1930
+ },
+ {
+ "epoch": 26.824814329401484,
+ "grad_norm": 0.2690806984901428,
+ "learning_rate": 0.0006,
+ "loss": 3.7707223892211914,
+ "step": 1931
+ },
+ {
+ "epoch": 26.838794233289647,
+ "grad_norm": 0.24973517656326294,
+ "learning_rate": 0.0006,
+ "loss": 3.7788357734680176,
+ "step": 1932
+ },
+ {
+ "epoch": 26.852774137177807,
+ "grad_norm": 0.24221451580524445,
+ "learning_rate": 0.0006,
+ "loss": 3.8083114624023438,
+ "step": 1933
+ },
+ {
+ "epoch": 26.866754041065967,
+ "grad_norm": 0.23499037325382233,
+ "learning_rate": 0.0006,
+ "loss": 3.845512866973877,
+ "step": 1934
+ },
+ {
+ "epoch": 26.88073394495413,
+ "grad_norm": 0.2172643095254898,
+ "learning_rate": 0.0006,
+ "loss": 3.8171584606170654,
+ "step": 1935
+ },
+ {
+ "epoch": 26.89471384884229,
+ "grad_norm": 0.19935013353824615,
+ "learning_rate": 0.0006,
+ "loss": 3.808596611022949,
+ "step": 1936
+ },
+ {
+ "epoch": 26.90869375273045,
+ "grad_norm": 0.2077745944261551,
+ "learning_rate": 0.0006,
+ "loss": 3.842836856842041,
+ "step": 1937
+ },
+ {
+ "epoch": 26.92267365661861,
+ "grad_norm": 0.20017282664775848,
+ "learning_rate": 0.0006,
+ "loss": 3.791734457015991,
+ "step": 1938
+ },
+ {
+ "epoch": 26.936653560506773,
+ "grad_norm": 0.2082037627696991,
+ "learning_rate": 0.0006,
+ "loss": 3.7987842559814453,
+ "step": 1939
+ },
+ {
+ "epoch": 26.950633464394933,
+ "grad_norm": 0.21100632846355438,
+ "learning_rate": 0.0006,
+ "loss": 3.8033156394958496,
+ "step": 1940
+ },
+ {
+ "epoch": 26.964613368283093,
+ "grad_norm": 0.2091331034898758,
+ "learning_rate": 0.0006,
+ "loss": 3.8250908851623535,
+ "step": 1941
+ },
+ {
+ "epoch": 26.978593272171253,
+ "grad_norm": 0.19728544354438782,
+ "learning_rate": 0.0006,
+ "loss": 3.7934365272521973,
+ "step": 1942
+ },
+ {
+ "epoch": 26.992573176059416,
+ "grad_norm": 0.19266465306282043,
+ "learning_rate": 0.0006,
+ "loss": 3.8095879554748535,
+ "step": 1943
+ },
+ {
+ "epoch": 27.0,
+ "grad_norm": 0.2264554500579834,
+ "learning_rate": 0.0006,
+ "loss": 3.840135335922241,
+ "step": 1944
+ },
+ {
+ "epoch": 27.0,
+ "eval_loss": 4.046233654022217,
+ "eval_runtime": 44.0648,
+ "eval_samples_per_second": 55.418,
+ "eval_steps_per_second": 3.472,
+ "step": 1944
+ },
+ {
+ "epoch": 27.01397990388816,
+ "grad_norm": 0.24101831018924713,
+ "learning_rate": 0.0006,
+ "loss": 3.7463197708129883,
+ "step": 1945
+ },
+ {
+ "epoch": 27.027959807776323,
+ "grad_norm": 0.2917300760746002,
+ "learning_rate": 0.0006,
+ "loss": 3.769083261489868,
+ "step": 1946
+ },
+ {
+ "epoch": 27.041939711664483,
+ "grad_norm": 0.30864080786705017,
+ "learning_rate": 0.0006,
+ "loss": 3.7774248123168945,
+ "step": 1947
+ },
+ {
+ "epoch": 27.055919615552643,
+ "grad_norm": 0.28574317693710327,
+ "learning_rate": 0.0006,
+ "loss": 3.759530544281006,
+ "step": 1948
+ },
+ {
+ "epoch": 27.069899519440803,
+ "grad_norm": 0.23381628096103668,
+ "learning_rate": 0.0006,
+ "loss": 3.764347791671753,
+ "step": 1949
+ },
+ {
+ "epoch": 27.083879423328966,
+ "grad_norm": 0.2717961072921753,
+ "learning_rate": 0.0006,
+ "loss": 3.785306692123413,
+ "step": 1950
+ },
+ {
+ "epoch": 27.097859327217126,
+ "grad_norm": 0.2753375470638275,
+ "learning_rate": 0.0006,
+ "loss": 3.7511696815490723,
+ "step": 1951
+ },
+ {
+ "epoch": 27.111839231105286,
+ "grad_norm": 0.260250061750412,
+ "learning_rate": 0.0006,
+ "loss": 3.7775721549987793,
+ "step": 1952
+ },
+ {
+ "epoch": 27.125819134993446,
+ "grad_norm": 0.2462741732597351,
+ "learning_rate": 0.0006,
+ "loss": 3.775203227996826,
+ "step": 1953
+ },
+ {
+ "epoch": 27.13979903888161,
+ "grad_norm": 0.23599569499492645,
+ "learning_rate": 0.0006,
+ "loss": 3.7580947875976562,
+ "step": 1954
+ },
+ {
+ "epoch": 27.15377894276977,
+ "grad_norm": 0.21749968826770782,
+ "learning_rate": 0.0006,
+ "loss": 3.778254985809326,
+ "step": 1955
+ },
+ {
+ "epoch": 27.16775884665793,
+ "grad_norm": 0.22210343182086945,
+ "learning_rate": 0.0006,
+ "loss": 3.734727144241333,
+ "step": 1956
+ },
+ {
+ "epoch": 27.18173875054609,
+ "grad_norm": 0.23376141488552094,
+ "learning_rate": 0.0006,
+ "loss": 3.7892181873321533,
+ "step": 1957
+ },
+ {
+ "epoch": 27.195718654434252,
+ "grad_norm": 0.21751847863197327,
+ "learning_rate": 0.0006,
+ "loss": 3.801621913909912,
+ "step": 1958
+ },
+ {
+ "epoch": 27.209698558322412,
+ "grad_norm": 0.22995133697986603,
+ "learning_rate": 0.0006,
+ "loss": 3.8031363487243652,
+ "step": 1959
+ },
+ {
+ "epoch": 27.22367846221057,
+ "grad_norm": 0.22716350853443146,
+ "learning_rate": 0.0006,
+ "loss": 3.7591521739959717,
+ "step": 1960
+ },
+ {
+ "epoch": 27.23765836609873,
+ "grad_norm": 0.20819596946239471,
+ "learning_rate": 0.0006,
+ "loss": 3.7988929748535156,
+ "step": 1961
+ },
+ {
+ "epoch": 27.251638269986895,
+ "grad_norm": 0.19861504435539246,
+ "learning_rate": 0.0006,
+ "loss": 3.7752838134765625,
+ "step": 1962
+ },
+ {
+ "epoch": 27.265618173875055,
+ "grad_norm": 0.1959371268749237,
+ "learning_rate": 0.0006,
+ "loss": 3.7707290649414062,
+ "step": 1963
+ },
+ {
+ "epoch": 27.279598077763215,
+ "grad_norm": 0.18772225081920624,
+ "learning_rate": 0.0006,
+ "loss": 3.7714555263519287,
+ "step": 1964
+ },
+ {
+ "epoch": 27.293577981651374,
+ "grad_norm": 0.20839282870292664,
+ "learning_rate": 0.0006,
+ "loss": 3.7857258319854736,
+ "step": 1965
+ },
+ {
+ "epoch": 27.307557885539538,
+ "grad_norm": 0.22521957755088806,
+ "learning_rate": 0.0006,
+ "loss": 3.776909351348877,
+ "step": 1966
+ },
+ {
+ "epoch": 27.321537789427698,
+ "grad_norm": 0.19533076882362366,
+ "learning_rate": 0.0006,
+ "loss": 3.8152523040771484,
+ "step": 1967
+ },
+ {
+ "epoch": 27.335517693315857,
+ "grad_norm": 0.18678881227970123,
+ "learning_rate": 0.0006,
+ "loss": 3.751555919647217,
+ "step": 1968
+ },
+ {
+ "epoch": 27.34949759720402,
+ "grad_norm": 0.18257129192352295,
+ "learning_rate": 0.0006,
+ "loss": 3.7701754570007324,
+ "step": 1969
+ },
+ {
+ "epoch": 27.36347750109218,
+ "grad_norm": 0.18191468715667725,
+ "learning_rate": 0.0006,
+ "loss": 3.817451238632202,
+ "step": 1970
+ },
+ {
+ "epoch": 27.37745740498034,
+ "grad_norm": 0.18665607273578644,
+ "learning_rate": 0.0006,
+ "loss": 3.78645658493042,
+ "step": 1971
+ },
+ {
+ "epoch": 27.3914373088685,
+ "grad_norm": 0.19604510068893433,
+ "learning_rate": 0.0006,
+ "loss": 3.7735626697540283,
+ "step": 1972
+ },
+ {
+ "epoch": 27.405417212756664,
+ "grad_norm": 0.20136640965938568,
+ "learning_rate": 0.0006,
+ "loss": 3.77310848236084,
+ "step": 1973
+ },
+ {
+ "epoch": 27.419397116644824,
+ "grad_norm": 0.19314947724342346,
+ "learning_rate": 0.0006,
+ "loss": 3.8084068298339844,
+ "step": 1974
+ },
+ {
+ "epoch": 27.433377020532983,
+ "grad_norm": 0.20761604607105255,
+ "learning_rate": 0.0006,
+ "loss": 3.80732798576355,
+ "step": 1975
+ },
+ {
+ "epoch": 27.447356924421143,
+ "grad_norm": 0.2239987850189209,
+ "learning_rate": 0.0006,
+ "loss": 3.7950329780578613,
+ "step": 1976
+ },
+ {
+ "epoch": 27.461336828309307,
+ "grad_norm": 0.22146444022655487,
+ "learning_rate": 0.0006,
+ "loss": 3.7957234382629395,
+ "step": 1977
+ },
+ {
+ "epoch": 27.475316732197467,
+ "grad_norm": 0.23218585550785065,
+ "learning_rate": 0.0006,
+ "loss": 3.806377410888672,
+ "step": 1978
+ },
+ {
+ "epoch": 27.489296636085626,
+ "grad_norm": 0.23549026250839233,
+ "learning_rate": 0.0006,
+ "loss": 3.7833383083343506,
+ "step": 1979
+ },
+ {
+ "epoch": 27.503276539973786,
+ "grad_norm": 0.24219457805156708,
+ "learning_rate": 0.0006,
+ "loss": 3.8154187202453613,
+ "step": 1980
+ },
+ {
+ "epoch": 27.51725644386195,
+ "grad_norm": 0.23703953623771667,
+ "learning_rate": 0.0006,
+ "loss": 3.7846405506134033,
+ "step": 1981
+ },
+ {
+ "epoch": 27.53123634775011,
+ "grad_norm": 0.23596109449863434,
+ "learning_rate": 0.0006,
+ "loss": 3.7698163986206055,
+ "step": 1982
+ },
+ {
+ "epoch": 27.54521625163827,
+ "grad_norm": 0.23073506355285645,
+ "learning_rate": 0.0006,
+ "loss": 3.8114185333251953,
+ "step": 1983
+ },
+ {
+ "epoch": 27.55919615552643,
+ "grad_norm": 0.24761143326759338,
+ "learning_rate": 0.0006,
+ "loss": 3.7548117637634277,
+ "step": 1984
+ },
+ {
+ "epoch": 27.573176059414592,
+ "grad_norm": 0.2834068238735199,
+ "learning_rate": 0.0006,
+ "loss": 3.7990212440490723,
+ "step": 1985
+ },
+ {
+ "epoch": 27.587155963302752,
+ "grad_norm": 0.29774922132492065,
+ "learning_rate": 0.0006,
+ "loss": 3.7845072746276855,
+ "step": 1986
+ },
+ {
+ "epoch": 27.601135867190912,
+ "grad_norm": 0.2732089161872864,
+ "learning_rate": 0.0006,
+ "loss": 3.8050694465637207,
+ "step": 1987
+ },
+ {
+ "epoch": 27.615115771079076,
+ "grad_norm": 0.24433180689811707,
+ "learning_rate": 0.0006,
+ "loss": 3.762704372406006,
+ "step": 1988
+ },
+ {
+ "epoch": 27.629095674967235,
+ "grad_norm": 0.21340419352054596,
+ "learning_rate": 0.0006,
+ "loss": 3.826023817062378,
+ "step": 1989
+ },
+ {
+ "epoch": 27.643075578855395,
+ "grad_norm": 0.22518761456012726,
+ "learning_rate": 0.0006,
+ "loss": 3.7823970317840576,
+ "step": 1990
+ },
+ {
+ "epoch": 27.657055482743555,
+ "grad_norm": 0.2196940928697586,
+ "learning_rate": 0.0006,
+ "loss": 3.787463426589966,
+ "step": 1991
+ },
+ {
+ "epoch": 27.67103538663172,
+ "grad_norm": 0.21906471252441406,
+ "learning_rate": 0.0006,
+ "loss": 3.7856104373931885,
+ "step": 1992
+ },
+ {
+ "epoch": 27.68501529051988,
+ "grad_norm": 0.2280956357717514,
+ "learning_rate": 0.0006,
+ "loss": 3.7829794883728027,
+ "step": 1993
+ },
+ {
+ "epoch": 27.698995194408038,
+ "grad_norm": 0.22567005455493927,
+ "learning_rate": 0.0006,
+ "loss": 3.762316942214966,
+ "step": 1994
+ },
+ {
+ "epoch": 27.712975098296198,
+ "grad_norm": 0.21703341603279114,
+ "learning_rate": 0.0006,
+ "loss": 3.772535800933838,
+ "step": 1995
+ },
+ {
+ "epoch": 27.72695500218436,
+ "grad_norm": 0.20586732029914856,
+ "learning_rate": 0.0006,
+ "loss": 3.775930881500244,
+ "step": 1996
+ },
+ {
+ "epoch": 27.74093490607252,
+ "grad_norm": 0.2126319408416748,
+ "learning_rate": 0.0006,
+ "loss": 3.793353796005249,
+ "step": 1997
+ },
+ {
+ "epoch": 27.75491480996068,
+ "grad_norm": 0.19664280116558075,
+ "learning_rate": 0.0006,
+ "loss": 3.7721195220947266,
+ "step": 1998
+ },
+ {
+ "epoch": 27.76889471384884,
+ "grad_norm": 0.17695854604244232,
+ "learning_rate": 0.0006,
+ "loss": 3.7931227684020996,
+ "step": 1999
+ },
+ {
+ "epoch": 27.782874617737004,
+ "grad_norm": 0.1899620145559311,
+ "learning_rate": 0.0006,
+ "loss": 3.798692226409912,
+ "step": 2000
+ },
+ {
+ "epoch": 27.796854521625164,
+ "grad_norm": 0.20334762334823608,
+ "learning_rate": 0.0006,
+ "loss": 3.774670124053955,
+ "step": 2001
+ },
+ {
+ "epoch": 27.810834425513324,
+ "grad_norm": 0.21150588989257812,
+ "learning_rate": 0.0006,
+ "loss": 3.803859233856201,
+ "step": 2002
+ },
+ {
+ "epoch": 27.824814329401484,
+ "grad_norm": 0.20425523817539215,
+ "learning_rate": 0.0006,
+ "loss": 3.810410976409912,
+ "step": 2003
+ },
+ {
+ "epoch": 27.838794233289647,
+ "grad_norm": 0.20468413829803467,
+ "learning_rate": 0.0006,
+ "loss": 3.800917625427246,
+ "step": 2004
+ },
+ {
+ "epoch": 27.852774137177807,
+ "grad_norm": 0.2113286256790161,
+ "learning_rate": 0.0006,
+ "loss": 3.7581989765167236,
+ "step": 2005
+ },
+ {
+ "epoch": 27.866754041065967,
+ "grad_norm": 0.2098054736852646,
+ "learning_rate": 0.0006,
+ "loss": 3.7921502590179443,
+ "step": 2006
+ },
+ {
+ "epoch": 27.88073394495413,
+ "grad_norm": 0.21701586246490479,
+ "learning_rate": 0.0006,
+ "loss": 3.8166770935058594,
+ "step": 2007
+ },
+ {
+ "epoch": 27.89471384884229,
+ "grad_norm": 0.2086625099182129,
+ "learning_rate": 0.0006,
+ "loss": 3.7732229232788086,
+ "step": 2008
+ },
+ {
+ "epoch": 27.90869375273045,
+ "grad_norm": 0.2186812162399292,
+ "learning_rate": 0.0006,
+ "loss": 3.8067402839660645,
+ "step": 2009
+ },
+ {
+ "epoch": 27.92267365661861,
+ "grad_norm": 0.2168985903263092,
+ "learning_rate": 0.0006,
+ "loss": 3.798159122467041,
+ "step": 2010
+ },
+ {
+ "epoch": 27.936653560506773,
+ "grad_norm": 0.23713620007038116,
+ "learning_rate": 0.0006,
+ "loss": 3.7958693504333496,
+ "step": 2011
+ },
+ {
+ "epoch": 27.950633464394933,
+ "grad_norm": 0.23592841625213623,
+ "learning_rate": 0.0006,
+ "loss": 3.795126438140869,
+ "step": 2012
+ },
+ {
+ "epoch": 27.964613368283093,
+ "grad_norm": 0.22210197150707245,
+ "learning_rate": 0.0006,
+ "loss": 3.791013240814209,
+ "step": 2013
+ },
+ {
+ "epoch": 27.978593272171253,
+ "grad_norm": 0.23190008103847504,
+ "learning_rate": 0.0006,
+ "loss": 3.813408374786377,
+ "step": 2014
+ },
+ {
+ "epoch": 27.992573176059416,
+ "grad_norm": 0.22158131003379822,
+ "learning_rate": 0.0006,
+ "loss": 3.7975716590881348,
+ "step": 2015
+ },
+ {
+ "epoch": 28.0,
+ "grad_norm": 0.2300519198179245,
+ "learning_rate": 0.0006,
+ "loss": 3.776214838027954,
+ "step": 2016
+ },
+ {
+ "epoch": 28.0,
+ "eval_loss": 4.04406213760376,
+ "eval_runtime": 44.0285,
+ "eval_samples_per_second": 55.464,
+ "eval_steps_per_second": 3.475,
+ "step": 2016
+ },
+ {
+ "epoch": 28.01397990388816,
+ "grad_norm": 0.21007688343524933,
+ "learning_rate": 0.0006,
+ "loss": 3.7366907596588135,
+ "step": 2017
+ },
+ {
+ "epoch": 28.027959807776323,
+ "grad_norm": 0.1941644549369812,
+ "learning_rate": 0.0006,
+ "loss": 3.744373321533203,
+ "step": 2018
+ },
+ {
+ "epoch": 28.041939711664483,
+ "grad_norm": 0.21308493614196777,
+ "learning_rate": 0.0006,
+ "loss": 3.7650012969970703,
+ "step": 2019
+ },
+ {
+ "epoch": 28.055919615552643,
+ "grad_norm": 0.20114868879318237,
+ "learning_rate": 0.0006,
+ "loss": 3.7652382850646973,
+ "step": 2020
+ },
+ {
+ "epoch": 28.069899519440803,
+ "grad_norm": 0.20266319811344147,
+ "learning_rate": 0.0006,
+ "loss": 3.7710442543029785,
+ "step": 2021
+ },
+ {
+ "epoch": 28.083879423328966,
+ "grad_norm": 0.205102801322937,
+ "learning_rate": 0.0006,
+ "loss": 3.7515463829040527,
+ "step": 2022
+ },
+ {
+ "epoch": 28.097859327217126,
+ "grad_norm": 0.22002041339874268,
+ "learning_rate": 0.0006,
+ "loss": 3.762019157409668,
+ "step": 2023
+ },
+ {
+ "epoch": 28.111839231105286,
+ "grad_norm": 0.2063235342502594,
+ "learning_rate": 0.0006,
+ "loss": 3.765453338623047,
+ "step": 2024
+ },
+ {
+ "epoch": 28.125819134993446,
+ "grad_norm": 0.19145619869232178,
+ "learning_rate": 0.0006,
+ "loss": 3.769411325454712,
+ "step": 2025
+ },
+ {
+ "epoch": 28.13979903888161,
+ "grad_norm": 0.19308455288410187,
+ "learning_rate": 0.0006,
+ "loss": 3.8009989261627197,
+ "step": 2026
+ },
+ {
+ "epoch": 28.15377894276977,
+ "grad_norm": 0.220510333776474,
+ "learning_rate": 0.0006,
+ "loss": 3.7582602500915527,
+ "step": 2027
+ },
+ {
+ "epoch": 28.16775884665793,
+ "grad_norm": 0.22855883836746216,
+ "learning_rate": 0.0006,
+ "loss": 3.803917407989502,
+ "step": 2028
+ },
+ {
+ "epoch": 28.18173875054609,
+ "grad_norm": 0.24206340312957764,
+ "learning_rate": 0.0006,
+ "loss": 3.764101028442383,
+ "step": 2029
+ },
+ {
+ "epoch": 28.195718654434252,
+ "grad_norm": 0.23973612487316132,
+ "learning_rate": 0.0006,
+ "loss": 3.787308931350708,
+ "step": 2030
+ },
+ {
+ "epoch": 28.209698558322412,
+ "grad_norm": 0.21400697529315948,
+ "learning_rate": 0.0006,
+ "loss": 3.7706117630004883,
+ "step": 2031
+ },
+ {
+ "epoch": 28.22367846221057,
+ "grad_norm": 0.21983976662158966,
+ "learning_rate": 0.0006,
+ "loss": 3.772731304168701,
+ "step": 2032
+ },
+ {
+ "epoch": 28.23765836609873,
+ "grad_norm": 0.22427113354206085,
+ "learning_rate": 0.0006,
+ "loss": 3.7724413871765137,
+ "step": 2033
+ },
+ {
+ "epoch": 28.251638269986895,
+ "grad_norm": 0.23665079474449158,
+ "learning_rate": 0.0006,
+ "loss": 3.769845962524414,
+ "step": 2034
+ },
+ {
+ "epoch": 28.265618173875055,
+ "grad_norm": 0.22663180530071259,
+ "learning_rate": 0.0006,
+ "loss": 3.764380931854248,
+ "step": 2035
+ },
+ {
+ "epoch": 28.279598077763215,
+ "grad_norm": 0.21094927191734314,
+ "learning_rate": 0.0006,
+ "loss": 3.7598326206207275,
+ "step": 2036
+ },
+ {
+ "epoch": 28.293577981651374,
+ "grad_norm": 0.20419518649578094,
+ "learning_rate": 0.0006,
+ "loss": 3.7737207412719727,
+ "step": 2037
+ },
+ {
+ "epoch": 28.307557885539538,
+ "grad_norm": 0.2171909660100937,
+ "learning_rate": 0.0006,
+ "loss": 3.7499468326568604,
+ "step": 2038
+ },
+ {
+ "epoch": 28.321537789427698,
+ "grad_norm": 0.22749298810958862,
+ "learning_rate": 0.0006,
+ "loss": 3.767536163330078,
+ "step": 2039
+ },
+ {
+ "epoch": 28.335517693315857,
+ "grad_norm": 0.22821909189224243,
+ "learning_rate": 0.0006,
+ "loss": 3.744386672973633,
+ "step": 2040
+ },
+ {
+ "epoch": 28.34949759720402,
+ "grad_norm": 0.2227880209684372,
+ "learning_rate": 0.0006,
+ "loss": 3.72955322265625,
+ "step": 2041
+ },
+ {
+ "epoch": 28.36347750109218,
+ "grad_norm": 0.22204327583312988,
+ "learning_rate": 0.0006,
+ "loss": 3.793854236602783,
+ "step": 2042
+ },
+ {
+ "epoch": 28.37745740498034,
+ "grad_norm": 0.21621409058570862,
+ "learning_rate": 0.0006,
+ "loss": 3.775379180908203,
+ "step": 2043
+ },
+ {
+ "epoch": 28.3914373088685,
+ "grad_norm": 0.2439221441745758,
+ "learning_rate": 0.0006,
+ "loss": 3.727464199066162,
+ "step": 2044
+ },
+ {
+ "epoch": 28.405417212756664,
+ "grad_norm": 0.24408605694770813,
+ "learning_rate": 0.0006,
+ "loss": 3.761747360229492,
+ "step": 2045
+ },
+ {
+ "epoch": 28.419397116644824,
+ "grad_norm": 0.26118648052215576,
+ "learning_rate": 0.0006,
+ "loss": 3.7587313652038574,
+ "step": 2046
+ },
+ {
+ "epoch": 28.433377020532983,
+ "grad_norm": 0.25948166847229004,
+ "learning_rate": 0.0006,
+ "loss": 3.7698440551757812,
+ "step": 2047
+ },
+ {
+ "epoch": 28.447356924421143,
+ "grad_norm": 0.26413780450820923,
+ "learning_rate": 0.0006,
+ "loss": 3.799107551574707,
+ "step": 2048
+ },
+ {
+ "epoch": 28.461336828309307,
+ "grad_norm": 0.2687148153781891,
+ "learning_rate": 0.0006,
+ "loss": 3.7564382553100586,
+ "step": 2049
+ },
+ {
+ "epoch": 28.475316732197467,
+ "grad_norm": 0.2676694691181183,
+ "learning_rate": 0.0006,
+ "loss": 3.754267692565918,
+ "step": 2050
+ },
+ {
+ "epoch": 28.489296636085626,
+ "grad_norm": 0.27275168895721436,
+ "learning_rate": 0.0006,
+ "loss": 3.802988052368164,
+ "step": 2051
+ },
+ {
+ "epoch": 28.503276539973786,
+ "grad_norm": 0.28783538937568665,
+ "learning_rate": 0.0006,
+ "loss": 3.762540817260742,
+ "step": 2052
+ },
+ {
+ "epoch": 28.51725644386195,
+ "grad_norm": 0.2628997266292572,
+ "learning_rate": 0.0006,
+ "loss": 3.7933349609375,
+ "step": 2053
+ },
+ {
+ "epoch": 28.53123634775011,
+ "grad_norm": 0.2498515099287033,
+ "learning_rate": 0.0006,
+ "loss": 3.7773094177246094,
+ "step": 2054
+ },
+ {
+ "epoch": 28.54521625163827,
+ "grad_norm": 0.22625942528247833,
+ "learning_rate": 0.0006,
+ "loss": 3.803457021713257,
+ "step": 2055
+ },
+ {
+ "epoch": 28.55919615552643,
+ "grad_norm": 0.21488751471042633,
+ "learning_rate": 0.0006,
+ "loss": 3.78924560546875,
+ "step": 2056
+ },
+ {
+ "epoch": 28.573176059414592,
+ "grad_norm": 0.22041267156600952,
+ "learning_rate": 0.0006,
+ "loss": 3.79361629486084,
+ "step": 2057
+ },
+ {
+ "epoch": 28.587155963302752,
+ "grad_norm": 0.23164816200733185,
+ "learning_rate": 0.0006,
+ "loss": 3.735037326812744,
+ "step": 2058
+ },
+ {
+ "epoch": 28.601135867190912,
+ "grad_norm": 0.22371916472911835,
+ "learning_rate": 0.0006,
+ "loss": 3.731417179107666,
+ "step": 2059
+ },
+ {
+ "epoch": 28.615115771079076,
+ "grad_norm": 0.2280314862728119,
+ "learning_rate": 0.0006,
+ "loss": 3.796154499053955,
+ "step": 2060
+ },
+ {
+ "epoch": 28.629095674967235,
+ "grad_norm": 0.21386604011058807,
+ "learning_rate": 0.0006,
+ "loss": 3.778648614883423,
+ "step": 2061
+ },
+ {
+ "epoch": 28.643075578855395,
+ "grad_norm": 0.20433050394058228,
+ "learning_rate": 0.0006,
+ "loss": 3.772826910018921,
+ "step": 2062
+ },
+ {
+ "epoch": 28.657055482743555,
+ "grad_norm": 0.2049262523651123,
+ "learning_rate": 0.0006,
+ "loss": 3.7410364151000977,
+ "step": 2063
+ },
+ {
+ "epoch": 28.67103538663172,
+ "grad_norm": 0.22041259706020355,
+ "learning_rate": 0.0006,
+ "loss": 3.796724319458008,
+ "step": 2064
+ },
+ {
+ "epoch": 28.68501529051988,
+ "grad_norm": 0.2018800675868988,
+ "learning_rate": 0.0006,
+ "loss": 3.775252342224121,
+ "step": 2065
+ },
+ {
+ "epoch": 28.698995194408038,
+ "grad_norm": 0.2159280925989151,
+ "learning_rate": 0.0006,
+ "loss": 3.766021251678467,
+ "step": 2066
+ },
+ {
+ "epoch": 28.712975098296198,
+ "grad_norm": 0.2072775512933731,
+ "learning_rate": 0.0006,
+ "loss": 3.765397548675537,
+ "step": 2067
+ },
+ {
+ "epoch": 28.72695500218436,
+ "grad_norm": 0.19592848420143127,
+ "learning_rate": 0.0006,
+ "loss": 3.8151614665985107,
+ "step": 2068
+ },
+ {
+ "epoch": 28.74093490607252,
+ "grad_norm": 0.19266322255134583,
+ "learning_rate": 0.0006,
+ "loss": 3.774945020675659,
+ "step": 2069
+ },
+ {
+ "epoch": 28.75491480996068,
+ "grad_norm": 0.19442392885684967,
+ "learning_rate": 0.0006,
+ "loss": 3.816283702850342,
+ "step": 2070
+ },
+ {
+ "epoch": 28.76889471384884,
+ "grad_norm": 0.19080746173858643,
+ "learning_rate": 0.0006,
+ "loss": 3.7784247398376465,
+ "step": 2071
+ },
+ {
+ "epoch": 28.782874617737004,
+ "grad_norm": 0.20150451362133026,
+ "learning_rate": 0.0006,
+ "loss": 3.7710249423980713,
+ "step": 2072
+ },
+ {
+ "epoch": 28.796854521625164,
+ "grad_norm": 0.1835816204547882,
+ "learning_rate": 0.0006,
+ "loss": 3.750032901763916,
+ "step": 2073
+ },
+ {
+ "epoch": 28.810834425513324,
+ "grad_norm": 0.1855502873659134,
+ "learning_rate": 0.0006,
+ "loss": 3.7276318073272705,
+ "step": 2074
+ },
+ {
+ "epoch": 28.824814329401484,
+ "grad_norm": 0.18683169782161713,
+ "learning_rate": 0.0006,
+ "loss": 3.7516555786132812,
+ "step": 2075
+ },
+ {
+ "epoch": 28.838794233289647,
+ "grad_norm": 0.2034577578306198,
+ "learning_rate": 0.0006,
+ "loss": 3.749875068664551,
+ "step": 2076
+ },
+ {
+ "epoch": 28.852774137177807,
+ "grad_norm": 0.2234230488538742,
+ "learning_rate": 0.0006,
+ "loss": 3.791429042816162,
+ "step": 2077
+ },
+ {
+ "epoch": 28.866754041065967,
+ "grad_norm": 0.25600525736808777,
+ "learning_rate": 0.0006,
+ "loss": 3.7769298553466797,
+ "step": 2078
+ },
+ {
+ "epoch": 28.88073394495413,
+ "grad_norm": 0.2741529643535614,
+ "learning_rate": 0.0006,
+ "loss": 3.771848201751709,
+ "step": 2079
+ },
+ {
+ "epoch": 28.89471384884229,
+ "grad_norm": 0.2710304260253906,
+ "learning_rate": 0.0006,
+ "loss": 3.8235626220703125,
+ "step": 2080
+ },
+ {
+ "epoch": 28.90869375273045,
+ "grad_norm": 0.25497519969940186,
+ "learning_rate": 0.0006,
+ "loss": 3.811288595199585,
+ "step": 2081
+ },
+ {
+ "epoch": 28.92267365661861,
+ "grad_norm": 0.25689464807510376,
+ "learning_rate": 0.0006,
+ "loss": 3.7848939895629883,
+ "step": 2082
+ },
+ {
+ "epoch": 28.936653560506773,
+ "grad_norm": 0.2794921398162842,
+ "learning_rate": 0.0006,
+ "loss": 3.7836732864379883,
+ "step": 2083
+ },
+ {
+ "epoch": 28.950633464394933,
+ "grad_norm": 0.24730202555656433,
+ "learning_rate": 0.0006,
+ "loss": 3.7703347206115723,
+ "step": 2084
+ },
+ {
+ "epoch": 28.964613368283093,
+ "grad_norm": 0.21078833937644958,
+ "learning_rate": 0.0006,
+ "loss": 3.7521653175354004,
+ "step": 2085
+ },
+ {
+ "epoch": 28.978593272171253,
+ "grad_norm": 0.2188870757818222,
+ "learning_rate": 0.0006,
+ "loss": 3.769604206085205,
+ "step": 2086
+ },
+ {
+ "epoch": 28.992573176059416,
+ "grad_norm": 0.20447929203510284,
+ "learning_rate": 0.0006,
+ "loss": 3.7842764854431152,
+ "step": 2087
+ },
+ {
+ "epoch": 29.0,
+ "grad_norm": 0.21607689559459686,
+ "learning_rate": 0.0006,
+ "loss": 3.7428855895996094,
+ "step": 2088
+ },
+ {
+ "epoch": 29.0,
+ "eval_loss": 4.0355753898620605,
+ "eval_runtime": 44.1435,
+ "eval_samples_per_second": 55.32,
+ "eval_steps_per_second": 3.466,
+ "step": 2088
+ },
+ {
+ "epoch": 29.01397990388816,
+ "grad_norm": 0.21270133554935455,
+ "learning_rate": 0.0006,
+ "loss": 3.7548413276672363,
+ "step": 2089
+ },
+ {
+ "epoch": 29.027959807776323,
+ "grad_norm": 0.21576301753520966,
+ "learning_rate": 0.0006,
+ "loss": 3.754613161087036,
+ "step": 2090
+ },
+ {
+ "epoch": 29.041939711664483,
+ "grad_norm": 0.2162923663854599,
+ "learning_rate": 0.0006,
+ "loss": 3.755772590637207,
+ "step": 2091
+ },
+ {
+ "epoch": 29.055919615552643,
+ "grad_norm": 0.22236663103103638,
+ "learning_rate": 0.0006,
+ "loss": 3.743497848510742,
+ "step": 2092
+ },
+ {
+ "epoch": 29.069899519440803,
+ "grad_norm": 0.2391042858362198,
+ "learning_rate": 0.0006,
+ "loss": 3.749204158782959,
+ "step": 2093
+ },
+ {
+ "epoch": 29.083879423328966,
+ "grad_norm": 0.23387965559959412,
+ "learning_rate": 0.0006,
+ "loss": 3.7286791801452637,
+ "step": 2094
+ },
+ {
+ "epoch": 29.097859327217126,
+ "grad_norm": 0.23677746951580048,
+ "learning_rate": 0.0006,
+ "loss": 3.755279541015625,
+ "step": 2095
+ },
+ {
+ "epoch": 29.111839231105286,
+ "grad_norm": 0.22771087288856506,
+ "learning_rate": 0.0006,
+ "loss": 3.722566604614258,
+ "step": 2096
+ },
+ {
+ "epoch": 29.125819134993446,
+ "grad_norm": 0.2132875621318817,
+ "learning_rate": 0.0006,
+ "loss": 3.748939037322998,
+ "step": 2097
+ },
+ {
+ "epoch": 29.13979903888161,
+ "grad_norm": 0.2033746838569641,
+ "learning_rate": 0.0006,
+ "loss": 3.7393670082092285,
+ "step": 2098
+ },
+ {
+ "epoch": 29.15377894276977,
+ "grad_norm": 0.1997237652540207,
+ "learning_rate": 0.0006,
+ "loss": 3.718498945236206,
+ "step": 2099
+ },
+ {
+ "epoch": 29.16775884665793,
+ "grad_norm": 0.19102543592453003,
+ "learning_rate": 0.0006,
+ "loss": 3.748950719833374,
+ "step": 2100
+ },
+ {
+ "epoch": 29.18173875054609,
+ "grad_norm": 0.19801580905914307,
+ "learning_rate": 0.0006,
+ "loss": 3.7123501300811768,
+ "step": 2101
+ },
+ {
+ "epoch": 29.195718654434252,
+ "grad_norm": 0.20186249911785126,
+ "learning_rate": 0.0006,
+ "loss": 3.7632713317871094,
+ "step": 2102
+ },
+ {
+ "epoch": 29.209698558322412,
+ "grad_norm": 0.22725415229797363,
+ "learning_rate": 0.0006,
+ "loss": 3.753506660461426,
+ "step": 2103
+ },
+ {
+ "epoch": 29.22367846221057,
+ "grad_norm": 0.23138119280338287,
+ "learning_rate": 0.0006,
+ "loss": 3.753282070159912,
+ "step": 2104
+ },
+ {
+ "epoch": 29.23765836609873,
+ "grad_norm": 0.23171944916248322,
+ "learning_rate": 0.0006,
+ "loss": 3.73783540725708,
+ "step": 2105
+ },
+ {
+ "epoch": 29.251638269986895,
+ "grad_norm": 0.2166522741317749,
+ "learning_rate": 0.0006,
+ "loss": 3.778803825378418,
+ "step": 2106
+ },
+ {
+ "epoch": 29.265618173875055,
+ "grad_norm": 0.2009056806564331,
+ "learning_rate": 0.0006,
+ "loss": 3.738290786743164,
+ "step": 2107
+ },
+ {
+ "epoch": 29.279598077763215,
+ "grad_norm": 0.19451597332954407,
+ "learning_rate": 0.0006,
+ "loss": 3.7553348541259766,
+ "step": 2108
+ },
+ {
+ "epoch": 29.293577981651374,
+ "grad_norm": 0.19246742129325867,
+ "learning_rate": 0.0006,
+ "loss": 3.7321622371673584,
+ "step": 2109
+ },
+ {
+ "epoch": 29.307557885539538,
+ "grad_norm": 0.18917441368103027,
+ "learning_rate": 0.0006,
+ "loss": 3.7408928871154785,
+ "step": 2110
+ },
+ {
+ "epoch": 29.321537789427698,
+ "grad_norm": 0.19067776203155518,
+ "learning_rate": 0.0006,
+ "loss": 3.780052900314331,
+ "step": 2111
+ },
+ {
+ "epoch": 29.335517693315857,
+ "grad_norm": 0.18849676847457886,
+ "learning_rate": 0.0006,
+ "loss": 3.749375820159912,
+ "step": 2112
+ },
+ {
+ "epoch": 29.34949759720402,
+ "grad_norm": 0.19713285565376282,
+ "learning_rate": 0.0006,
+ "loss": 3.7128982543945312,
+ "step": 2113
+ },
+ {
+ "epoch": 29.36347750109218,
+ "grad_norm": 0.196336030960083,
+ "learning_rate": 0.0006,
+ "loss": 3.7528390884399414,
+ "step": 2114
+ },
+ {
+ "epoch": 29.37745740498034,
+ "grad_norm": 0.19574350118637085,
+ "learning_rate": 0.0006,
+ "loss": 3.7105777263641357,
+ "step": 2115
+ },
+ {
+ "epoch": 29.3914373088685,
+ "grad_norm": 0.20396539568901062,
+ "learning_rate": 0.0006,
+ "loss": 3.782249927520752,
+ "step": 2116
+ },
+ {
+ "epoch": 29.405417212756664,
+ "grad_norm": 0.24702422320842743,
+ "learning_rate": 0.0006,
+ "loss": 3.7685647010803223,
+ "step": 2117
+ },
+ {
+ "epoch": 29.419397116644824,
+ "grad_norm": 0.2729755640029907,
+ "learning_rate": 0.0006,
+ "loss": 3.7731213569641113,
+ "step": 2118
+ },
+ {
+ "epoch": 29.433377020532983,
+ "grad_norm": 0.29240545630455017,
+ "learning_rate": 0.0006,
+ "loss": 3.770162343978882,
+ "step": 2119
+ },
+ {
+ "epoch": 29.447356924421143,
+ "grad_norm": 0.2469114065170288,
+ "learning_rate": 0.0006,
+ "loss": 3.764681339263916,
+ "step": 2120
+ },
+ {
+ "epoch": 29.461336828309307,
+ "grad_norm": 0.19837401807308197,
+ "learning_rate": 0.0006,
+ "loss": 3.7600088119506836,
+ "step": 2121
+ },
+ {
+ "epoch": 29.475316732197467,
+ "grad_norm": 0.21266621351242065,
+ "learning_rate": 0.0006,
+ "loss": 3.769454002380371,
+ "step": 2122
+ },
+ {
+ "epoch": 29.489296636085626,
+ "grad_norm": 0.25908344984054565,
+ "learning_rate": 0.0006,
+ "loss": 3.7230491638183594,
+ "step": 2123
+ },
+ {
+ "epoch": 29.503276539973786,
+ "grad_norm": 0.2914169728755951,
+ "learning_rate": 0.0006,
+ "loss": 3.767849922180176,
+ "step": 2124
+ },
+ {
+ "epoch": 29.51725644386195,
+ "grad_norm": 0.2796176075935364,
+ "learning_rate": 0.0006,
+ "loss": 3.741734266281128,
+ "step": 2125
+ },
+ {
+ "epoch": 29.53123634775011,
+ "grad_norm": 0.276309996843338,
+ "learning_rate": 0.0006,
+ "loss": 3.8001914024353027,
+ "step": 2126
+ },
+ {
+ "epoch": 29.54521625163827,
+ "grad_norm": 0.26512834429740906,
+ "learning_rate": 0.0006,
+ "loss": 3.7741384506225586,
+ "step": 2127
+ },
+ {
+ "epoch": 29.55919615552643,
+ "grad_norm": 0.26514101028442383,
+ "learning_rate": 0.0006,
+ "loss": 3.7466959953308105,
+ "step": 2128
+ },
+ {
+ "epoch": 29.573176059414592,
+ "grad_norm": 0.24121330678462982,
+ "learning_rate": 0.0006,
+ "loss": 3.759542465209961,
+ "step": 2129
+ },
+ {
+ "epoch": 29.587155963302752,
+ "grad_norm": 0.2264087200164795,
+ "learning_rate": 0.0006,
+ "loss": 3.791344165802002,
+ "step": 2130
+ },
+ {
+ "epoch": 29.601135867190912,
+ "grad_norm": 0.21915403008460999,
+ "learning_rate": 0.0006,
+ "loss": 3.7540485858917236,
+ "step": 2131
+ },
+ {
+ "epoch": 29.615115771079076,
+ "grad_norm": 0.20453961193561554,
+ "learning_rate": 0.0006,
+ "loss": 3.765617609024048,
+ "step": 2132
+ },
+ {
+ "epoch": 29.629095674967235,
+ "grad_norm": 0.2194051444530487,
+ "learning_rate": 0.0006,
+ "loss": 3.7664294242858887,
+ "step": 2133
+ },
+ {
+ "epoch": 29.643075578855395,
+ "grad_norm": 0.21926000714302063,
+ "learning_rate": 0.0006,
+ "loss": 3.7551684379577637,
+ "step": 2134
+ },
+ {
+ "epoch": 29.657055482743555,
+ "grad_norm": 0.20835602283477783,
+ "learning_rate": 0.0006,
+ "loss": 3.7654306888580322,
+ "step": 2135
+ },
+ {
+ "epoch": 29.67103538663172,
+ "grad_norm": 0.23094356060028076,
+ "learning_rate": 0.0006,
+ "loss": 3.7847180366516113,
+ "step": 2136
+ },
+ {
+ "epoch": 29.68501529051988,
+ "grad_norm": 0.23871271312236786,
+ "learning_rate": 0.0006,
+ "loss": 3.789036273956299,
+ "step": 2137
+ },
+ {
+ "epoch": 29.698995194408038,
+ "grad_norm": 0.22263272106647491,
+ "learning_rate": 0.0006,
+ "loss": 3.7677512168884277,
+ "step": 2138
+ },
+ {
+ "epoch": 29.712975098296198,
+ "grad_norm": 0.2293892651796341,
+ "learning_rate": 0.0006,
+ "loss": 3.777097225189209,
+ "step": 2139
+ },
+ {
+ "epoch": 29.72695500218436,
+ "grad_norm": 0.21068568527698517,
+ "learning_rate": 0.0006,
+ "loss": 3.785336494445801,
+ "step": 2140
+ },
+ {
+ "epoch": 29.74093490607252,
+ "grad_norm": 0.19600282609462738,
+ "learning_rate": 0.0006,
+ "loss": 3.7363505363464355,
+ "step": 2141
+ },
+ {
+ "epoch": 29.75491480996068,
+ "grad_norm": 0.20053936541080475,
+ "learning_rate": 0.0006,
+ "loss": 3.753859043121338,
+ "step": 2142
+ },
+ {
+ "epoch": 29.76889471384884,
+ "grad_norm": 0.22790539264678955,
+ "learning_rate": 0.0006,
+ "loss": 3.749492645263672,
+ "step": 2143
+ },
+ {
+ "epoch": 29.782874617737004,
+ "grad_norm": 0.26042407751083374,
+ "learning_rate": 0.0006,
+ "loss": 3.7905430793762207,
+ "step": 2144
+ },
+ {
+ "epoch": 29.796854521625164,
+ "grad_norm": 0.2753683626651764,
+ "learning_rate": 0.0006,
+ "loss": 3.756442070007324,
+ "step": 2145
+ },
+ {
+ "epoch": 29.810834425513324,
+ "grad_norm": 0.2795007526874542,
+ "learning_rate": 0.0006,
+ "loss": 3.7691903114318848,
+ "step": 2146
+ },
+ {
+ "epoch": 29.824814329401484,
+ "grad_norm": 0.2461438924074173,
+ "learning_rate": 0.0006,
+ "loss": 3.7573065757751465,
+ "step": 2147
+ },
+ {
+ "epoch": 29.838794233289647,
+ "grad_norm": 0.21051941812038422,
+ "learning_rate": 0.0006,
+ "loss": 3.7540078163146973,
+ "step": 2148
+ },
+ {
+ "epoch": 29.852774137177807,
+ "grad_norm": 0.197485089302063,
+ "learning_rate": 0.0006,
+ "loss": 3.734403133392334,
+ "step": 2149
+ },
+ {
+ "epoch": 29.866754041065967,
+ "grad_norm": 0.203064426779747,
+ "learning_rate": 0.0006,
+ "loss": 3.7888364791870117,
+ "step": 2150
+ },
+ {
+ "epoch": 29.88073394495413,
+ "grad_norm": 0.2000301480293274,
+ "learning_rate": 0.0006,
+ "loss": 3.7444958686828613,
+ "step": 2151
+ },
+ {
+ "epoch": 29.89471384884229,
+ "grad_norm": 0.20492053031921387,
+ "learning_rate": 0.0006,
+ "loss": 3.7878224849700928,
+ "step": 2152
+ },
+ {
+ "epoch": 29.90869375273045,
+ "grad_norm": 0.22565388679504395,
+ "learning_rate": 0.0006,
+ "loss": 3.7539188861846924,
+ "step": 2153
+ },
+ {
+ "epoch": 29.92267365661861,
+ "grad_norm": 0.20258226990699768,
+ "learning_rate": 0.0006,
+ "loss": 3.7491893768310547,
+ "step": 2154
+ },
+ {
+ "epoch": 29.936653560506773,
+ "grad_norm": 0.20028717815876007,
+ "learning_rate": 0.0006,
+ "loss": 3.7497997283935547,
+ "step": 2155
+ },
+ {
+ "epoch": 29.950633464394933,
+ "grad_norm": 0.2246360331773758,
+ "learning_rate": 0.0006,
+ "loss": 3.773930788040161,
+ "step": 2156
+ },
+ {
+ "epoch": 29.964613368283093,
+ "grad_norm": 0.22432482242584229,
+ "learning_rate": 0.0006,
+ "loss": 3.7926344871520996,
+ "step": 2157
+ },
+ {
+ "epoch": 29.978593272171253,
+ "grad_norm": 0.2165718674659729,
+ "learning_rate": 0.0006,
+ "loss": 3.7436647415161133,
+ "step": 2158
+ },
+ {
+ "epoch": 29.992573176059416,
+ "grad_norm": 0.20629167556762695,
+ "learning_rate": 0.0006,
+ "loss": 3.7619552612304688,
+ "step": 2159
+ },
+ {
+ "epoch": 30.0,
+ "grad_norm": 0.24264708161354065,
+ "learning_rate": 0.0006,
+ "loss": 3.772679328918457,
+ "step": 2160
+ },
+ {
+ "epoch": 30.0,
+ "eval_loss": 4.024484634399414,
+ "eval_runtime": 44.3611,
+ "eval_samples_per_second": 55.048,
+ "eval_steps_per_second": 3.449,
+ "step": 2160
+ },
+ {
+ "epoch": 30.01397990388816,
+ "grad_norm": 0.2373432070016861,
+ "learning_rate": 0.0006,
+ "loss": 3.7423200607299805,
+ "step": 2161
+ },
+ {
+ "epoch": 30.027959807776323,
+ "grad_norm": 0.26835134625434875,
+ "learning_rate": 0.0006,
+ "loss": 3.7215471267700195,
+ "step": 2162
+ },
+ {
+ "epoch": 30.041939711664483,
+ "grad_norm": 0.2743220329284668,
+ "learning_rate": 0.0006,
+ "loss": 3.7190256118774414,
+ "step": 2163
+ },
+ {
+ "epoch": 30.055919615552643,
+ "grad_norm": 0.2292490005493164,
+ "learning_rate": 0.0006,
+ "loss": 3.731855869293213,
+ "step": 2164
+ },
+ {
+ "epoch": 30.069899519440803,
+ "grad_norm": 0.22704607248306274,
+ "learning_rate": 0.0006,
+ "loss": 3.7649693489074707,
+ "step": 2165
+ },
+ {
+ "epoch": 30.083879423328966,
+ "grad_norm": 0.23255930840969086,
+ "learning_rate": 0.0006,
+ "loss": 3.7547781467437744,
+ "step": 2166
+ },
+ {
+ "epoch": 30.097859327217126,
+ "grad_norm": 0.2068684846162796,
+ "learning_rate": 0.0006,
+ "loss": 3.7343382835388184,
+ "step": 2167
+ },
+ {
+ "epoch": 30.111839231105286,
+ "grad_norm": 0.22523464262485504,
+ "learning_rate": 0.0006,
+ "loss": 3.7304530143737793,
+ "step": 2168
+ },
+ {
+ "epoch": 30.125819134993446,
+ "grad_norm": 0.24650199711322784,
+ "learning_rate": 0.0006,
+ "loss": 3.7414379119873047,
+ "step": 2169
+ },
+ {
+ "epoch": 30.13979903888161,
+ "grad_norm": 0.2392522394657135,
+ "learning_rate": 0.0006,
+ "loss": 3.754481792449951,
+ "step": 2170
+ },
+ {
+ "epoch": 30.15377894276977,
+ "grad_norm": 0.21174749732017517,
+ "learning_rate": 0.0006,
+ "loss": 3.7249929904937744,
+ "step": 2171
+ },
+ {
+ "epoch": 30.16775884665793,
+ "grad_norm": 0.20847836136817932,
+ "learning_rate": 0.0006,
+ "loss": 3.7146458625793457,
+ "step": 2172
+ },
+ {
+ "epoch": 30.18173875054609,
+ "grad_norm": 0.22131472826004028,
+ "learning_rate": 0.0006,
+ "loss": 3.7569539546966553,
+ "step": 2173
+ },
+ {
+ "epoch": 30.195718654434252,
+ "grad_norm": 0.23528096079826355,
+ "learning_rate": 0.0006,
+ "loss": 3.743435859680176,
+ "step": 2174
+ },
+ {
+ "epoch": 30.209698558322412,
+ "grad_norm": 0.2382429540157318,
+ "learning_rate": 0.0006,
+ "loss": 3.745307445526123,
+ "step": 2175
+ },
+ {
+ "epoch": 30.22367846221057,
+ "grad_norm": 0.2477114498615265,
+ "learning_rate": 0.0006,
+ "loss": 3.742305278778076,
+ "step": 2176
+ },
+ {
+ "epoch": 30.23765836609873,
+ "grad_norm": 0.24507801234722137,
+ "learning_rate": 0.0006,
+ "loss": 3.733564853668213,
+ "step": 2177
+ },
+ {
+ "epoch": 30.251638269986895,
+ "grad_norm": 0.2266329675912857,
+ "learning_rate": 0.0006,
+ "loss": 3.747429370880127,
+ "step": 2178
+ },
+ {
+ "epoch": 30.265618173875055,
+ "grad_norm": 0.22146396338939667,
+ "learning_rate": 0.0006,
+ "loss": 3.738630533218384,
+ "step": 2179
+ },
+ {
+ "epoch": 30.279598077763215,
+ "grad_norm": 0.20202279090881348,
+ "learning_rate": 0.0006,
+ "loss": 3.74582839012146,
+ "step": 2180
+ },
+ {
+ "epoch": 30.293577981651374,
+ "grad_norm": 0.20591886341571808,
+ "learning_rate": 0.0006,
+ "loss": 3.792062997817993,
+ "step": 2181
+ },
+ {
+ "epoch": 30.307557885539538,
+ "grad_norm": 0.21744129061698914,
+ "learning_rate": 0.0006,
+ "loss": 3.7389049530029297,
+ "step": 2182
+ },
+ {
+ "epoch": 30.321537789427698,
+ "grad_norm": 0.22641272842884064,
+ "learning_rate": 0.0006,
+ "loss": 3.756775140762329,
+ "step": 2183
+ },
+ {
+ "epoch": 30.335517693315857,
+ "grad_norm": 0.22433501482009888,
+ "learning_rate": 0.0006,
+ "loss": 3.764744758605957,
+ "step": 2184
+ },
+ {
+ "epoch": 30.34949759720402,
+ "grad_norm": 0.20184539258480072,
+ "learning_rate": 0.0006,
+ "loss": 3.747469902038574,
+ "step": 2185
+ },
+ {
+ "epoch": 30.36347750109218,
+ "grad_norm": 0.20864923298358917,
+ "learning_rate": 0.0006,
+ "loss": 3.7472925186157227,
+ "step": 2186
+ },
+ {
+ "epoch": 30.37745740498034,
+ "grad_norm": 0.22537396848201752,
+ "learning_rate": 0.0006,
+ "loss": 3.7194581031799316,
+ "step": 2187
+ },
+ {
+ "epoch": 30.3914373088685,
+ "grad_norm": 0.23159919679164886,
+ "learning_rate": 0.0006,
+ "loss": 3.7124292850494385,
+ "step": 2188
+ },
+ {
+ "epoch": 30.405417212756664,
+ "grad_norm": 0.24334494769573212,
+ "learning_rate": 0.0006,
+ "loss": 3.7769203186035156,
+ "step": 2189
+ },
+ {
+ "epoch": 30.419397116644824,
+ "grad_norm": 0.3031228482723236,
+ "learning_rate": 0.0006,
+ "loss": 3.762169361114502,
+ "step": 2190
+ },
+ {
+ "epoch": 30.433377020532983,
+ "grad_norm": 0.29114583134651184,
+ "learning_rate": 0.0006,
+ "loss": 3.76554799079895,
+ "step": 2191
+ },
+ {
+ "epoch": 30.447356924421143,
+ "grad_norm": 0.26824963092803955,
+ "learning_rate": 0.0006,
+ "loss": 3.732962131500244,
+ "step": 2192
+ },
+ {
+ "epoch": 30.461336828309307,
+ "grad_norm": 0.3026561141014099,
+ "learning_rate": 0.0006,
+ "loss": 3.7567975521087646,
+ "step": 2193
+ },
+ {
+ "epoch": 30.475316732197467,
+ "grad_norm": 0.27224525809288025,
+ "learning_rate": 0.0006,
+ "loss": 3.7856051921844482,
+ "step": 2194
+ },
+ {
+ "epoch": 30.489296636085626,
+ "grad_norm": 0.24295508861541748,
+ "learning_rate": 0.0006,
+ "loss": 3.7514901161193848,
+ "step": 2195
+ },
+ {
+ "epoch": 30.503276539973786,
+ "grad_norm": 0.24435290694236755,
+ "learning_rate": 0.0006,
+ "loss": 3.715973138809204,
+ "step": 2196
+ },
+ {
+ "epoch": 30.51725644386195,
+ "grad_norm": 0.2298959195613861,
+ "learning_rate": 0.0006,
+ "loss": 3.7960405349731445,
+ "step": 2197
+ },
+ {
+ "epoch": 30.53123634775011,
+ "grad_norm": 0.20313066244125366,
+ "learning_rate": 0.0006,
+ "loss": 3.7377915382385254,
+ "step": 2198
+ },
+ {
+ "epoch": 30.54521625163827,
+ "grad_norm": 0.2018895149230957,
+ "learning_rate": 0.0006,
+ "loss": 3.6980559825897217,
+ "step": 2199
+ },
+ {
+ "epoch": 30.55919615552643,
+ "grad_norm": 0.20048382878303528,
+ "learning_rate": 0.0006,
+ "loss": 3.7474141120910645,
+ "step": 2200
+ },
+ {
+ "epoch": 30.573176059414592,
+ "grad_norm": 0.19821316003799438,
+ "learning_rate": 0.0006,
+ "loss": 3.7668564319610596,
+ "step": 2201
+ },
+ {
+ "epoch": 30.587155963302752,
+ "grad_norm": 0.21467992663383484,
+ "learning_rate": 0.0006,
+ "loss": 3.7636144161224365,
+ "step": 2202
+ },
+ {
+ "epoch": 30.601135867190912,
+ "grad_norm": 0.20192000269889832,
+ "learning_rate": 0.0006,
+ "loss": 3.745736837387085,
+ "step": 2203
+ },
+ {
+ "epoch": 30.615115771079076,
+ "grad_norm": 0.2078823447227478,
+ "learning_rate": 0.0006,
+ "loss": 3.726665496826172,
+ "step": 2204
+ },
+ {
+ "epoch": 30.629095674967235,
+ "grad_norm": 0.22535845637321472,
+ "learning_rate": 0.0006,
+ "loss": 3.745058059692383,
+ "step": 2205
+ },
+ {
+ "epoch": 30.643075578855395,
+ "grad_norm": 0.22277814149856567,
+ "learning_rate": 0.0006,
+ "loss": 3.7488319873809814,
+ "step": 2206
+ },
+ {
+ "epoch": 30.657055482743555,
+ "grad_norm": 0.20940838754177094,
+ "learning_rate": 0.0006,
+ "loss": 3.7395732402801514,
+ "step": 2207
+ },
+ {
+ "epoch": 30.67103538663172,
+ "grad_norm": 0.21384629607200623,
+ "learning_rate": 0.0006,
+ "loss": 3.7275657653808594,
+ "step": 2208
+ },
+ {
+ "epoch": 30.68501529051988,
+ "grad_norm": 0.18796643614768982,
+ "learning_rate": 0.0006,
+ "loss": 3.743420124053955,
+ "step": 2209
+ },
+ {
+ "epoch": 30.698995194408038,
+ "grad_norm": 0.213258296251297,
+ "learning_rate": 0.0006,
+ "loss": 3.7227492332458496,
+ "step": 2210
+ },
+ {
+ "epoch": 30.712975098296198,
+ "grad_norm": 0.22714753448963165,
+ "learning_rate": 0.0006,
+ "loss": 3.7301113605499268,
+ "step": 2211
+ },
+ {
+ "epoch": 30.72695500218436,
+ "grad_norm": 0.21657656133174896,
+ "learning_rate": 0.0006,
+ "loss": 3.7336206436157227,
+ "step": 2212
+ },
+ {
+ "epoch": 30.74093490607252,
+ "grad_norm": 0.19550828635692596,
+ "learning_rate": 0.0006,
+ "loss": 3.7367351055145264,
+ "step": 2213
+ },
+ {
+ "epoch": 30.75491480996068,
+ "grad_norm": 0.17011769115924835,
+ "learning_rate": 0.0006,
+ "loss": 3.7401928901672363,
+ "step": 2214
+ },
+ {
+ "epoch": 30.76889471384884,
+ "grad_norm": 0.19110196828842163,
+ "learning_rate": 0.0006,
+ "loss": 3.7496562004089355,
+ "step": 2215
+ },
+ {
+ "epoch": 30.782874617737004,
+ "grad_norm": 0.20054543018341064,
+ "learning_rate": 0.0006,
+ "loss": 3.7532992362976074,
+ "step": 2216
+ },
+ {
+ "epoch": 30.796854521625164,
+ "grad_norm": 0.20667670667171478,
+ "learning_rate": 0.0006,
+ "loss": 3.746974468231201,
+ "step": 2217
+ },
+ {
+ "epoch": 30.810834425513324,
+ "grad_norm": 0.19850662350654602,
+ "learning_rate": 0.0006,
+ "loss": 3.7566256523132324,
+ "step": 2218
+ },
+ {
+ "epoch": 30.824814329401484,
+ "grad_norm": 0.19666457176208496,
+ "learning_rate": 0.0006,
+ "loss": 3.7356925010681152,
+ "step": 2219
+ },
+ {
+ "epoch": 30.838794233289647,
+ "grad_norm": 0.20022115111351013,
+ "learning_rate": 0.0006,
+ "loss": 3.768794536590576,
+ "step": 2220
+ },
+ {
+ "epoch": 30.852774137177807,
+ "grad_norm": 0.225278839468956,
+ "learning_rate": 0.0006,
+ "loss": 3.730262279510498,
+ "step": 2221
+ },
+ {
+ "epoch": 30.866754041065967,
+ "grad_norm": 0.2155608832836151,
+ "learning_rate": 0.0006,
+ "loss": 3.758157968521118,
+ "step": 2222
+ },
+ {
+ "epoch": 30.88073394495413,
+ "grad_norm": 0.20914921164512634,
+ "learning_rate": 0.0006,
+ "loss": 3.7290844917297363,
+ "step": 2223
+ },
+ {
+ "epoch": 30.89471384884229,
+ "grad_norm": 0.21579554677009583,
+ "learning_rate": 0.0006,
+ "loss": 3.7666125297546387,
+ "step": 2224
+ },
+ {
+ "epoch": 30.90869375273045,
+ "grad_norm": 0.22606384754180908,
+ "learning_rate": 0.0006,
+ "loss": 3.7396788597106934,
+ "step": 2225
+ },
+ {
+ "epoch": 30.92267365661861,
+ "grad_norm": 0.22218658030033112,
+ "learning_rate": 0.0006,
+ "loss": 3.7363057136535645,
+ "step": 2226
+ },
+ {
+ "epoch": 30.936653560506773,
+ "grad_norm": 0.2107125222682953,
+ "learning_rate": 0.0006,
+ "loss": 3.7402844429016113,
+ "step": 2227
+ },
+ {
+ "epoch": 30.950633464394933,
+ "grad_norm": 0.2143280804157257,
+ "learning_rate": 0.0006,
+ "loss": 3.7715706825256348,
+ "step": 2228
+ },
+ {
+ "epoch": 30.964613368283093,
+ "grad_norm": 0.20918118953704834,
+ "learning_rate": 0.0006,
+ "loss": 3.783510446548462,
+ "step": 2229
+ },
+ {
+ "epoch": 30.978593272171253,
+ "grad_norm": 0.2184133678674698,
+ "learning_rate": 0.0006,
+ "loss": 3.729846954345703,
+ "step": 2230
+ },
+ {
+ "epoch": 30.992573176059416,
+ "grad_norm": 0.20314796268939972,
+ "learning_rate": 0.0006,
+ "loss": 3.753312110900879,
+ "step": 2231
+ },
+ {
+ "epoch": 31.0,
+ "grad_norm": 0.21582408249378204,
+ "learning_rate": 0.0006,
+ "loss": 3.7653090953826904,
+ "step": 2232
+ },
+ {
+ "epoch": 31.0,
+ "eval_loss": 4.030437469482422,
+ "eval_runtime": 43.8529,
+ "eval_samples_per_second": 55.686,
+ "eval_steps_per_second": 3.489,
+ "step": 2232
+ },
+ {
+ "epoch": 31.01397990388816,
+ "grad_norm": 0.214233860373497,
+ "learning_rate": 0.0006,
+ "loss": 3.7179880142211914,
+ "step": 2233
+ },
+ {
+ "epoch": 31.027959807776323,
+ "grad_norm": 0.24621504545211792,
+ "learning_rate": 0.0006,
+ "loss": 3.712569236755371,
+ "step": 2234
+ },
+ {
+ "epoch": 31.041939711664483,
+ "grad_norm": 0.24189279973506927,
+ "learning_rate": 0.0006,
+ "loss": 3.7503058910369873,
+ "step": 2235
+ },
+ {
+ "epoch": 31.055919615552643,
+ "grad_norm": 0.22872278094291687,
+ "learning_rate": 0.0006,
+ "loss": 3.7386386394500732,
+ "step": 2236
+ },
+ {
+ "epoch": 31.069899519440803,
+ "grad_norm": 0.25036823749542236,
+ "learning_rate": 0.0006,
+ "loss": 3.710566997528076,
+ "step": 2237
+ },
+ {
+ "epoch": 31.083879423328966,
+ "grad_norm": 0.2506193220615387,
+ "learning_rate": 0.0006,
+ "loss": 3.7270963191986084,
+ "step": 2238
+ },
+ {
+ "epoch": 31.097859327217126,
+ "grad_norm": 0.24819663166999817,
+ "learning_rate": 0.0006,
+ "loss": 3.716430425643921,
+ "step": 2239
+ },
+ {
+ "epoch": 31.111839231105286,
+ "grad_norm": 0.27226534485816956,
+ "learning_rate": 0.0006,
+ "loss": 3.704428195953369,
+ "step": 2240
+ },
+ {
+ "epoch": 31.125819134993446,
+ "grad_norm": 0.27718204259872437,
+ "learning_rate": 0.0006,
+ "loss": 3.7309701442718506,
+ "step": 2241
+ },
+ {
+ "epoch": 31.13979903888161,
+ "grad_norm": 0.27272021770477295,
+ "learning_rate": 0.0006,
+ "loss": 3.7325143814086914,
+ "step": 2242
+ },
+ {
+ "epoch": 31.15377894276977,
+ "grad_norm": 0.2666020095348358,
+ "learning_rate": 0.0006,
+ "loss": 3.715268611907959,
+ "step": 2243
+ },
+ {
+ "epoch": 31.16775884665793,
+ "grad_norm": 0.258543461561203,
+ "learning_rate": 0.0006,
+ "loss": 3.7336134910583496,
+ "step": 2244
+ },
+ {
+ "epoch": 31.18173875054609,
+ "grad_norm": 0.2528740167617798,
+ "learning_rate": 0.0006,
+ "loss": 3.724491596221924,
+ "step": 2245
+ },
+ {
+ "epoch": 31.195718654434252,
+ "grad_norm": 0.2659667730331421,
+ "learning_rate": 0.0006,
+ "loss": 3.7144742012023926,
+ "step": 2246
+ },
+ {
+ "epoch": 31.209698558322412,
+ "grad_norm": 0.26563164591789246,
+ "learning_rate": 0.0006,
+ "loss": 3.741182327270508,
+ "step": 2247
+ },
+ {
+ "epoch": 31.22367846221057,
+ "grad_norm": 0.26326918601989746,
+ "learning_rate": 0.0006,
+ "loss": 3.7306275367736816,
+ "step": 2248
+ },
+ {
+ "epoch": 31.23765836609873,
+ "grad_norm": 0.23020948469638824,
+ "learning_rate": 0.0006,
+ "loss": 3.7212486267089844,
+ "step": 2249
+ },
+ {
+ "epoch": 31.251638269986895,
+ "grad_norm": 0.21207433938980103,
+ "learning_rate": 0.0006,
+ "loss": 3.6914258003234863,
+ "step": 2250
+ },
+ {
+ "epoch": 31.265618173875055,
+ "grad_norm": 0.2392292022705078,
+ "learning_rate": 0.0006,
+ "loss": 3.7117457389831543,
+ "step": 2251
+ },
+ {
+ "epoch": 31.279598077763215,
+ "grad_norm": 0.22084997594356537,
+ "learning_rate": 0.0006,
+ "loss": 3.728043794631958,
+ "step": 2252
+ },
+ {
+ "epoch": 31.293577981651374,
+ "grad_norm": 0.20818188786506653,
+ "learning_rate": 0.0006,
+ "loss": 3.751762866973877,
+ "step": 2253
+ },
+ {
+ "epoch": 31.307557885539538,
+ "grad_norm": 0.21866194903850555,
+ "learning_rate": 0.0006,
+ "loss": 3.72676420211792,
+ "step": 2254
+ },
+ {
+ "epoch": 31.321537789427698,
+ "grad_norm": 0.20727522671222687,
+ "learning_rate": 0.0006,
+ "loss": 3.735708236694336,
+ "step": 2255
+ },
+ {
+ "epoch": 31.335517693315857,
+ "grad_norm": 0.20655220746994019,
+ "learning_rate": 0.0006,
+ "loss": 3.714116096496582,
+ "step": 2256
+ },
+ {
+ "epoch": 31.34949759720402,
+ "grad_norm": 0.21738854050636292,
+ "learning_rate": 0.0006,
+ "loss": 3.731657028198242,
+ "step": 2257
+ },
+ {
+ "epoch": 31.36347750109218,
+ "grad_norm": 0.20758475363254547,
+ "learning_rate": 0.0006,
+ "loss": 3.7378528118133545,
+ "step": 2258
+ },
+ {
+ "epoch": 31.37745740498034,
+ "grad_norm": 0.20107139647006989,
+ "learning_rate": 0.0006,
+ "loss": 3.748572826385498,
+ "step": 2259
+ },
+ {
+ "epoch": 31.3914373088685,
+ "grad_norm": 0.18707452714443207,
+ "learning_rate": 0.0006,
+ "loss": 3.7237391471862793,
+ "step": 2260
+ },
+ {
+ "epoch": 31.405417212756664,
+ "grad_norm": 0.20745301246643066,
+ "learning_rate": 0.0006,
+ "loss": 3.734435558319092,
+ "step": 2261
+ },
+ {
+ "epoch": 31.419397116644824,
+ "grad_norm": 0.20793399214744568,
+ "learning_rate": 0.0006,
+ "loss": 3.7639012336730957,
+ "step": 2262
+ },
+ {
+ "epoch": 31.433377020532983,
+ "grad_norm": 0.20193757116794586,
+ "learning_rate": 0.0006,
+ "loss": 3.754117727279663,
+ "step": 2263
+ },
+ {
+ "epoch": 31.447356924421143,
+ "grad_norm": 0.1912323236465454,
+ "learning_rate": 0.0006,
+ "loss": 3.728111982345581,
+ "step": 2264
+ },
+ {
+ "epoch": 31.461336828309307,
+ "grad_norm": 0.19441582262516022,
+ "learning_rate": 0.0006,
+ "loss": 3.7533278465270996,
+ "step": 2265
+ },
+ {
+ "epoch": 31.475316732197467,
+ "grad_norm": 0.19807079434394836,
+ "learning_rate": 0.0006,
+ "loss": 3.7351698875427246,
+ "step": 2266
+ },
+ {
+ "epoch": 31.489296636085626,
+ "grad_norm": 0.20373263955116272,
+ "learning_rate": 0.0006,
+ "loss": 3.714097023010254,
+ "step": 2267
+ },
+ {
+ "epoch": 31.503276539973786,
+ "grad_norm": 0.21868768334388733,
+ "learning_rate": 0.0006,
+ "loss": 3.736743688583374,
+ "step": 2268
+ },
+ {
+ "epoch": 31.51725644386195,
+ "grad_norm": 0.20767922699451447,
+ "learning_rate": 0.0006,
+ "loss": 3.7097702026367188,
+ "step": 2269
+ },
+ {
+ "epoch": 31.53123634775011,
+ "grad_norm": 0.18425600230693817,
+ "learning_rate": 0.0006,
+ "loss": 3.7349140644073486,
+ "step": 2270
+ },
+ {
+ "epoch": 31.54521625163827,
+ "grad_norm": 0.18813826143741608,
+ "learning_rate": 0.0006,
+ "loss": 3.7023448944091797,
+ "step": 2271
+ },
+ {
+ "epoch": 31.55919615552643,
+ "grad_norm": 0.1892116516828537,
+ "learning_rate": 0.0006,
+ "loss": 3.7170143127441406,
+ "step": 2272
+ },
+ {
+ "epoch": 31.573176059414592,
+ "grad_norm": 0.2067834585905075,
+ "learning_rate": 0.0006,
+ "loss": 3.7312588691711426,
+ "step": 2273
+ },
+ {
+ "epoch": 31.587155963302752,
+ "grad_norm": 0.204023078083992,
+ "learning_rate": 0.0006,
+ "loss": 3.7399091720581055,
+ "step": 2274
+ },
+ {
+ "epoch": 31.601135867190912,
+ "grad_norm": 0.20245152711868286,
+ "learning_rate": 0.0006,
+ "loss": 3.7259416580200195,
+ "step": 2275
+ },
+ {
+ "epoch": 31.615115771079076,
+ "grad_norm": 0.21125490963459015,
+ "learning_rate": 0.0006,
+ "loss": 3.7217836380004883,
+ "step": 2276
+ },
+ {
+ "epoch": 31.629095674967235,
+ "grad_norm": 0.2093241959810257,
+ "learning_rate": 0.0006,
+ "loss": 3.707627773284912,
+ "step": 2277
+ },
+ {
+ "epoch": 31.643075578855395,
+ "grad_norm": 0.19290480017662048,
+ "learning_rate": 0.0006,
+ "loss": 3.7467126846313477,
+ "step": 2278
+ },
+ {
+ "epoch": 31.657055482743555,
+ "grad_norm": 0.1853940635919571,
+ "learning_rate": 0.0006,
+ "loss": 3.7565581798553467,
+ "step": 2279
+ },
+ {
+ "epoch": 31.67103538663172,
+ "grad_norm": 0.18917642533779144,
+ "learning_rate": 0.0006,
+ "loss": 3.7286229133605957,
+ "step": 2280
+ },
+ {
+ "epoch": 31.68501529051988,
+ "grad_norm": 0.2094079703092575,
+ "learning_rate": 0.0006,
+ "loss": 3.7297096252441406,
+ "step": 2281
+ },
+ {
+ "epoch": 31.698995194408038,
+ "grad_norm": 0.20020027458667755,
+ "learning_rate": 0.0006,
+ "loss": 3.7565250396728516,
+ "step": 2282
+ },
+ {
+ "epoch": 31.712975098296198,
+ "grad_norm": 0.19156186282634735,
+ "learning_rate": 0.0006,
+ "loss": 3.7401509284973145,
+ "step": 2283
+ },
+ {
+ "epoch": 31.72695500218436,
+ "grad_norm": 0.19176368415355682,
+ "learning_rate": 0.0006,
+ "loss": 3.751206398010254,
+ "step": 2284
+ },
+ {
+ "epoch": 31.74093490607252,
+ "grad_norm": 0.18351277709007263,
+ "learning_rate": 0.0006,
+ "loss": 3.752984046936035,
+ "step": 2285
+ },
+ {
+ "epoch": 31.75491480996068,
+ "grad_norm": 0.1879221349954605,
+ "learning_rate": 0.0006,
+ "loss": 3.7156834602355957,
+ "step": 2286
+ },
+ {
+ "epoch": 31.76889471384884,
+ "grad_norm": 0.19232559204101562,
+ "learning_rate": 0.0006,
+ "loss": 3.732879638671875,
+ "step": 2287
+ },
+ {
+ "epoch": 31.782874617737004,
+ "grad_norm": 0.18484069406986237,
+ "learning_rate": 0.0006,
+ "loss": 3.7489013671875,
+ "step": 2288
+ },
+ {
+ "epoch": 31.796854521625164,
+ "grad_norm": 0.20705144107341766,
+ "learning_rate": 0.0006,
+ "loss": 3.7214112281799316,
+ "step": 2289
+ },
+ {
+ "epoch": 31.810834425513324,
+ "grad_norm": 0.23424774408340454,
+ "learning_rate": 0.0006,
+ "loss": 3.714550256729126,
+ "step": 2290
+ },
+ {
+ "epoch": 31.824814329401484,
+ "grad_norm": 0.24061693251132965,
+ "learning_rate": 0.0006,
+ "loss": 3.717336654663086,
+ "step": 2291
+ },
+ {
+ "epoch": 31.838794233289647,
+ "grad_norm": 0.23156678676605225,
+ "learning_rate": 0.0006,
+ "loss": 3.7345399856567383,
+ "step": 2292
+ },
+ {
+ "epoch": 31.852774137177807,
+ "grad_norm": 0.2256302684545517,
+ "learning_rate": 0.0006,
+ "loss": 3.7596092224121094,
+ "step": 2293
+ },
+ {
+ "epoch": 31.866754041065967,
+ "grad_norm": 0.2118781954050064,
+ "learning_rate": 0.0006,
+ "loss": 3.725433588027954,
+ "step": 2294
+ },
+ {
+ "epoch": 31.88073394495413,
+ "grad_norm": 0.1874573826789856,
+ "learning_rate": 0.0006,
+ "loss": 3.738901138305664,
+ "step": 2295
+ },
+ {
+ "epoch": 31.89471384884229,
+ "grad_norm": 0.2062024176120758,
+ "learning_rate": 0.0006,
+ "loss": 3.7439217567443848,
+ "step": 2296
+ },
+ {
+ "epoch": 31.90869375273045,
+ "grad_norm": 0.19886671006679535,
+ "learning_rate": 0.0006,
+ "loss": 3.7583155632019043,
+ "step": 2297
+ },
+ {
+ "epoch": 31.92267365661861,
+ "grad_norm": 0.2079734355211258,
+ "learning_rate": 0.0006,
+ "loss": 3.7251501083374023,
+ "step": 2298
+ },
+ {
+ "epoch": 31.936653560506773,
+ "grad_norm": 0.19710204005241394,
+ "learning_rate": 0.0006,
+ "loss": 3.765778064727783,
+ "step": 2299
+ },
+ {
+ "epoch": 31.950633464394933,
+ "grad_norm": 0.1949392408132553,
+ "learning_rate": 0.0006,
+ "loss": 3.7634787559509277,
+ "step": 2300
+ },
+ {
+ "epoch": 31.964613368283093,
+ "grad_norm": 0.21466250717639923,
+ "learning_rate": 0.0006,
+ "loss": 3.7673215866088867,
+ "step": 2301
+ },
+ {
+ "epoch": 31.978593272171253,
+ "grad_norm": 0.21624267101287842,
+ "learning_rate": 0.0006,
+ "loss": 3.7617220878601074,
+ "step": 2302
+ },
+ {
+ "epoch": 31.992573176059416,
+ "grad_norm": 0.22880229353904724,
+ "learning_rate": 0.0006,
+ "loss": 3.7190351486206055,
+ "step": 2303
+ },
+ {
+ "epoch": 32.0,
+ "grad_norm": 0.23227518796920776,
+ "learning_rate": 0.0006,
+ "loss": 3.740169048309326,
+ "step": 2304
+ },
+ {
+ "epoch": 32.0,
+ "eval_loss": 4.017981052398682,
+ "eval_runtime": 44.4134,
+ "eval_samples_per_second": 54.983,
+ "eval_steps_per_second": 3.445,
+ "step": 2304
+ },
+ {
+ "epoch": 32.01397990388816,
+ "grad_norm": 0.1893721967935562,
+ "learning_rate": 0.0006,
+ "loss": 3.71738338470459,
+ "step": 2305
+ },
+ {
+ "epoch": 32.02795980777632,
+ "grad_norm": 0.23771171271800995,
+ "learning_rate": 0.0006,
+ "loss": 3.71402645111084,
+ "step": 2306
+ },
+ {
+ "epoch": 32.04193971166448,
+ "grad_norm": 0.26343807578086853,
+ "learning_rate": 0.0006,
+ "loss": 3.6926395893096924,
+ "step": 2307
+ },
+ {
+ "epoch": 32.05591961555265,
+ "grad_norm": 0.25092509388923645,
+ "learning_rate": 0.0006,
+ "loss": 3.715243339538574,
+ "step": 2308
+ },
+ {
+ "epoch": 32.0698995194408,
+ "grad_norm": 0.23148509860038757,
+ "learning_rate": 0.0006,
+ "loss": 3.690734386444092,
+ "step": 2309
+ },
+ {
+ "epoch": 32.083879423328966,
+ "grad_norm": 0.23314623534679413,
+ "learning_rate": 0.0006,
+ "loss": 3.6980109214782715,
+ "step": 2310
+ },
+ {
+ "epoch": 32.09785932721712,
+ "grad_norm": 0.2210417091846466,
+ "learning_rate": 0.0006,
+ "loss": 3.7395730018615723,
+ "step": 2311
+ },
+ {
+ "epoch": 32.111839231105286,
+ "grad_norm": 0.20263685286045074,
+ "learning_rate": 0.0006,
+ "loss": 3.678412914276123,
+ "step": 2312
+ },
+ {
+ "epoch": 32.12581913499345,
+ "grad_norm": 0.20412251353263855,
+ "learning_rate": 0.0006,
+ "loss": 3.688762903213501,
+ "step": 2313
+ },
+ {
+ "epoch": 32.139799038881605,
+ "grad_norm": 0.2041679322719574,
+ "learning_rate": 0.0006,
+ "loss": 3.7231521606445312,
+ "step": 2314
+ },
+ {
+ "epoch": 32.15377894276977,
+ "grad_norm": 0.23270174860954285,
+ "learning_rate": 0.0006,
+ "loss": 3.7102620601654053,
+ "step": 2315
+ },
+ {
+ "epoch": 32.16775884665793,
+ "grad_norm": 0.25470519065856934,
+ "learning_rate": 0.0006,
+ "loss": 3.7353053092956543,
+ "step": 2316
+ },
+ {
+ "epoch": 32.18173875054609,
+ "grad_norm": 0.2930106222629547,
+ "learning_rate": 0.0006,
+ "loss": 3.7418713569641113,
+ "step": 2317
+ },
+ {
+ "epoch": 32.19571865443425,
+ "grad_norm": 0.3181219696998596,
+ "learning_rate": 0.0006,
+ "loss": 3.6716184616088867,
+ "step": 2318
+ },
+ {
+ "epoch": 32.20969855832241,
+ "grad_norm": 0.2752978801727295,
+ "learning_rate": 0.0006,
+ "loss": 3.70334792137146,
+ "step": 2319
+ },
+ {
+ "epoch": 32.22367846221057,
+ "grad_norm": 0.28381186723709106,
+ "learning_rate": 0.0006,
+ "loss": 3.719794750213623,
+ "step": 2320
+ },
+ {
+ "epoch": 32.237658366098735,
+ "grad_norm": 0.3287750482559204,
+ "learning_rate": 0.0006,
+ "loss": 3.7363362312316895,
+ "step": 2321
+ },
+ {
+ "epoch": 32.25163826998689,
+ "grad_norm": 0.32669803500175476,
+ "learning_rate": 0.0006,
+ "loss": 3.739394426345825,
+ "step": 2322
+ },
+ {
+ "epoch": 32.265618173875055,
+ "grad_norm": 0.27423885464668274,
+ "learning_rate": 0.0006,
+ "loss": 3.7381205558776855,
+ "step": 2323
+ },
+ {
+ "epoch": 32.27959807776322,
+ "grad_norm": 0.2594660818576813,
+ "learning_rate": 0.0006,
+ "loss": 3.698683738708496,
+ "step": 2324
+ },
+ {
+ "epoch": 32.293577981651374,
+ "grad_norm": 0.2785511016845703,
+ "learning_rate": 0.0006,
+ "loss": 3.688774824142456,
+ "step": 2325
+ },
+ {
+ "epoch": 32.30755788553954,
+ "grad_norm": 0.2690320611000061,
+ "learning_rate": 0.0006,
+ "loss": 3.7209150791168213,
+ "step": 2326
+ },
+ {
+ "epoch": 32.3215377894277,
+ "grad_norm": 0.23331770300865173,
+ "learning_rate": 0.0006,
+ "loss": 3.682931423187256,
+ "step": 2327
+ },
+ {
+ "epoch": 32.33551769331586,
+ "grad_norm": 0.22380802035331726,
+ "learning_rate": 0.0006,
+ "loss": 3.720445156097412,
+ "step": 2328
+ },
+ {
+ "epoch": 32.34949759720402,
+ "grad_norm": 0.2065964937210083,
+ "learning_rate": 0.0006,
+ "loss": 3.705427885055542,
+ "step": 2329
+ },
+ {
+ "epoch": 32.36347750109218,
+ "grad_norm": 0.20701853930950165,
+ "learning_rate": 0.0006,
+ "loss": 3.7078697681427,
+ "step": 2330
+ },
+ {
+ "epoch": 32.37745740498034,
+ "grad_norm": 0.2063559591770172,
+ "learning_rate": 0.0006,
+ "loss": 3.745004653930664,
+ "step": 2331
+ },
+ {
+ "epoch": 32.391437308868504,
+ "grad_norm": 0.19377011060714722,
+ "learning_rate": 0.0006,
+ "loss": 3.713808059692383,
+ "step": 2332
+ },
+ {
+ "epoch": 32.40541721275666,
+ "grad_norm": 0.19260725378990173,
+ "learning_rate": 0.0006,
+ "loss": 3.717043876647949,
+ "step": 2333
+ },
+ {
+ "epoch": 32.419397116644824,
+ "grad_norm": 0.20792821049690247,
+ "learning_rate": 0.0006,
+ "loss": 3.68632173538208,
+ "step": 2334
+ },
+ {
+ "epoch": 32.43337702053299,
+ "grad_norm": 0.22278444468975067,
+ "learning_rate": 0.0006,
+ "loss": 3.7345821857452393,
+ "step": 2335
+ },
+ {
+ "epoch": 32.44735692442114,
+ "grad_norm": 0.22533579170703888,
+ "learning_rate": 0.0006,
+ "loss": 3.7224173545837402,
+ "step": 2336
+ },
+ {
+ "epoch": 32.46133682830931,
+ "grad_norm": 0.20228394865989685,
+ "learning_rate": 0.0006,
+ "loss": 3.748530149459839,
+ "step": 2337
+ },
+ {
+ "epoch": 32.47531673219746,
+ "grad_norm": 0.19944614171981812,
+ "learning_rate": 0.0006,
+ "loss": 3.707085371017456,
+ "step": 2338
+ },
+ {
+ "epoch": 32.489296636085626,
+ "grad_norm": 0.19856145977973938,
+ "learning_rate": 0.0006,
+ "loss": 3.6898274421691895,
+ "step": 2339
+ },
+ {
+ "epoch": 32.50327653997379,
+ "grad_norm": 0.20734605193138123,
+ "learning_rate": 0.0006,
+ "loss": 3.7511792182922363,
+ "step": 2340
+ },
+ {
+ "epoch": 32.517256443861946,
+ "grad_norm": 0.19489309191703796,
+ "learning_rate": 0.0006,
+ "loss": 3.736445426940918,
+ "step": 2341
+ },
+ {
+ "epoch": 32.53123634775011,
+ "grad_norm": 0.18899282813072205,
+ "learning_rate": 0.0006,
+ "loss": 3.727325916290283,
+ "step": 2342
+ },
+ {
+ "epoch": 32.54521625163827,
+ "grad_norm": 0.19670401513576508,
+ "learning_rate": 0.0006,
+ "loss": 3.7326102256774902,
+ "step": 2343
+ },
+ {
+ "epoch": 32.55919615552643,
+ "grad_norm": 0.20061780512332916,
+ "learning_rate": 0.0006,
+ "loss": 3.698716402053833,
+ "step": 2344
+ },
+ {
+ "epoch": 32.57317605941459,
+ "grad_norm": 0.1991659700870514,
+ "learning_rate": 0.0006,
+ "loss": 3.6913180351257324,
+ "step": 2345
+ },
+ {
+ "epoch": 32.58715596330275,
+ "grad_norm": 0.18856225907802582,
+ "learning_rate": 0.0006,
+ "loss": 3.7130961418151855,
+ "step": 2346
+ },
+ {
+ "epoch": 32.60113586719091,
+ "grad_norm": 0.1983972191810608,
+ "learning_rate": 0.0006,
+ "loss": 3.7530808448791504,
+ "step": 2347
+ },
+ {
+ "epoch": 32.615115771079076,
+ "grad_norm": 0.2037997543811798,
+ "learning_rate": 0.0006,
+ "loss": 3.7076587677001953,
+ "step": 2348
+ },
+ {
+ "epoch": 32.62909567496723,
+ "grad_norm": 0.21008458733558655,
+ "learning_rate": 0.0006,
+ "loss": 3.7379021644592285,
+ "step": 2349
+ },
+ {
+ "epoch": 32.643075578855395,
+ "grad_norm": 0.2129313349723816,
+ "learning_rate": 0.0006,
+ "loss": 3.7031373977661133,
+ "step": 2350
+ },
+ {
+ "epoch": 32.65705548274356,
+ "grad_norm": 0.18756245076656342,
+ "learning_rate": 0.0006,
+ "loss": 3.7066285610198975,
+ "step": 2351
+ },
+ {
+ "epoch": 32.671035386631715,
+ "grad_norm": 0.17946591973304749,
+ "learning_rate": 0.0006,
+ "loss": 3.73781681060791,
+ "step": 2352
+ },
+ {
+ "epoch": 32.68501529051988,
+ "grad_norm": 0.18983198702335358,
+ "learning_rate": 0.0006,
+ "loss": 3.718855381011963,
+ "step": 2353
+ },
+ {
+ "epoch": 32.69899519440804,
+ "grad_norm": 0.2080942839384079,
+ "learning_rate": 0.0006,
+ "loss": 3.7111258506774902,
+ "step": 2354
+ },
+ {
+ "epoch": 32.7129750982962,
+ "grad_norm": 0.23633413016796112,
+ "learning_rate": 0.0006,
+ "loss": 3.709766149520874,
+ "step": 2355
+ },
+ {
+ "epoch": 32.72695500218436,
+ "grad_norm": 0.2723144590854645,
+ "learning_rate": 0.0006,
+ "loss": 3.745850086212158,
+ "step": 2356
+ },
+ {
+ "epoch": 32.74093490607252,
+ "grad_norm": 0.29774025082588196,
+ "learning_rate": 0.0006,
+ "loss": 3.733771324157715,
+ "step": 2357
+ },
+ {
+ "epoch": 32.75491480996068,
+ "grad_norm": 0.25976699590682983,
+ "learning_rate": 0.0006,
+ "loss": 3.734194278717041,
+ "step": 2358
+ },
+ {
+ "epoch": 32.768894713848844,
+ "grad_norm": 0.20038039982318878,
+ "learning_rate": 0.0006,
+ "loss": 3.735656261444092,
+ "step": 2359
+ },
+ {
+ "epoch": 32.782874617737,
+ "grad_norm": 0.19745637476444244,
+ "learning_rate": 0.0006,
+ "loss": 3.7335894107818604,
+ "step": 2360
+ },
+ {
+ "epoch": 32.796854521625164,
+ "grad_norm": 0.22022396326065063,
+ "learning_rate": 0.0006,
+ "loss": 3.708998680114746,
+ "step": 2361
+ },
+ {
+ "epoch": 32.81083442551333,
+ "grad_norm": 0.24754752218723297,
+ "learning_rate": 0.0006,
+ "loss": 3.7616286277770996,
+ "step": 2362
+ },
+ {
+ "epoch": 32.824814329401484,
+ "grad_norm": 0.26438358426094055,
+ "learning_rate": 0.0006,
+ "loss": 3.737079620361328,
+ "step": 2363
+ },
+ {
+ "epoch": 32.83879423328965,
+ "grad_norm": 0.2507241666316986,
+ "learning_rate": 0.0006,
+ "loss": 3.708500385284424,
+ "step": 2364
+ },
+ {
+ "epoch": 32.8527741371778,
+ "grad_norm": 0.25688016414642334,
+ "learning_rate": 0.0006,
+ "loss": 3.7389419078826904,
+ "step": 2365
+ },
+ {
+ "epoch": 32.86675404106597,
+ "grad_norm": 0.257447749376297,
+ "learning_rate": 0.0006,
+ "loss": 3.7253334522247314,
+ "step": 2366
+ },
+ {
+ "epoch": 32.88073394495413,
+ "grad_norm": 0.2621215879917145,
+ "learning_rate": 0.0006,
+ "loss": 3.773163318634033,
+ "step": 2367
+ },
+ {
+ "epoch": 32.89471384884229,
+ "grad_norm": 0.23554839193820953,
+ "learning_rate": 0.0006,
+ "loss": 3.7534430027008057,
+ "step": 2368
+ },
+ {
+ "epoch": 32.90869375273045,
+ "grad_norm": 0.19698940217494965,
+ "learning_rate": 0.0006,
+ "loss": 3.7094414234161377,
+ "step": 2369
+ },
+ {
+ "epoch": 32.92267365661861,
+ "grad_norm": 0.21380476653575897,
+ "learning_rate": 0.0006,
+ "loss": 3.7666497230529785,
+ "step": 2370
+ },
+ {
+ "epoch": 32.93665356050677,
+ "grad_norm": 0.20876452326774597,
+ "learning_rate": 0.0006,
+ "loss": 3.7467992305755615,
+ "step": 2371
+ },
+ {
+ "epoch": 32.95063346439493,
+ "grad_norm": 0.1989884227514267,
+ "learning_rate": 0.0006,
+ "loss": 3.749878168106079,
+ "step": 2372
+ },
+ {
+ "epoch": 32.964613368283096,
+ "grad_norm": 0.19089168310165405,
+ "learning_rate": 0.0006,
+ "loss": 3.7211015224456787,
+ "step": 2373
+ },
+ {
+ "epoch": 32.97859327217125,
+ "grad_norm": 0.1962461918592453,
+ "learning_rate": 0.0006,
+ "loss": 3.728684425354004,
+ "step": 2374
+ },
+ {
+ "epoch": 32.992573176059416,
+ "grad_norm": 0.22518110275268555,
+ "learning_rate": 0.0006,
+ "loss": 3.7361507415771484,
+ "step": 2375
+ },
+ {
+ "epoch": 33.0,
+ "grad_norm": 0.26704078912734985,
+ "learning_rate": 0.0006,
+ "loss": 3.7478318214416504,
+ "step": 2376
+ },
+ {
+ "epoch": 33.0,
+ "eval_loss": 4.024221897125244,
+ "eval_runtime": 43.9826,
+ "eval_samples_per_second": 55.522,
+ "eval_steps_per_second": 3.479,
+ "step": 2376
+ },
+ {
+ "epoch": 33.01397990388816,
+ "grad_norm": 0.23387742042541504,
+ "learning_rate": 0.0006,
+ "loss": 3.7043614387512207,
+ "step": 2377
+ },
+ {
+ "epoch": 33.02795980777632,
+ "grad_norm": 0.21334673464298248,
+ "learning_rate": 0.0006,
+ "loss": 3.6714677810668945,
+ "step": 2378
+ },
+ {
+ "epoch": 33.04193971166448,
+ "grad_norm": 0.2608581483364105,
+ "learning_rate": 0.0006,
+ "loss": 3.678460121154785,
+ "step": 2379
+ },
+ {
+ "epoch": 33.05591961555265,
+ "grad_norm": 0.31364381313323975,
+ "learning_rate": 0.0006,
+ "loss": 3.6771793365478516,
+ "step": 2380
+ },
+ {
+ "epoch": 33.0698995194408,
+ "grad_norm": 0.31785935163497925,
+ "learning_rate": 0.0006,
+ "loss": 3.7248926162719727,
+ "step": 2381
+ },
+ {
+ "epoch": 33.083879423328966,
+ "grad_norm": 0.29244646430015564,
+ "learning_rate": 0.0006,
+ "loss": 3.677882194519043,
+ "step": 2382
+ },
+ {
+ "epoch": 33.09785932721712,
+ "grad_norm": 0.23943741619586945,
+ "learning_rate": 0.0006,
+ "loss": 3.7365124225616455,
+ "step": 2383
+ },
+ {
+ "epoch": 33.111839231105286,
+ "grad_norm": 0.2547394931316376,
+ "learning_rate": 0.0006,
+ "loss": 3.7031357288360596,
+ "step": 2384
+ },
+ {
+ "epoch": 33.12581913499345,
+ "grad_norm": 0.2696659564971924,
+ "learning_rate": 0.0006,
+ "loss": 3.6904754638671875,
+ "step": 2385
+ },
+ {
+ "epoch": 33.139799038881605,
+ "grad_norm": 0.24271385371685028,
+ "learning_rate": 0.0006,
+ "loss": 3.7137649059295654,
+ "step": 2386
+ },
+ {
+ "epoch": 33.15377894276977,
+ "grad_norm": 0.23435993492603302,
+ "learning_rate": 0.0006,
+ "loss": 3.707383632659912,
+ "step": 2387
+ },
+ {
+ "epoch": 33.16775884665793,
+ "grad_norm": 0.21428440511226654,
+ "learning_rate": 0.0006,
+ "loss": 3.7148897647857666,
+ "step": 2388
+ },
+ {
+ "epoch": 33.18173875054609,
+ "grad_norm": 0.22420962154865265,
+ "learning_rate": 0.0006,
+ "loss": 3.710111141204834,
+ "step": 2389
+ },
+ {
+ "epoch": 33.19571865443425,
+ "grad_norm": 0.26222777366638184,
+ "learning_rate": 0.0006,
+ "loss": 3.677438259124756,
+ "step": 2390
+ },
+ {
+ "epoch": 33.20969855832241,
+ "grad_norm": 0.29910165071487427,
+ "learning_rate": 0.0006,
+ "loss": 3.6895523071289062,
+ "step": 2391
+ },
+ {
+ "epoch": 33.22367846221057,
+ "grad_norm": 0.2615569531917572,
+ "learning_rate": 0.0006,
+ "loss": 3.7339906692504883,
+ "step": 2392
+ },
+ {
+ "epoch": 33.237658366098735,
+ "grad_norm": 0.23396961390972137,
+ "learning_rate": 0.0006,
+ "loss": 3.7179932594299316,
+ "step": 2393
+ },
+ {
+ "epoch": 33.25163826998689,
+ "grad_norm": 0.24844495952129364,
+ "learning_rate": 0.0006,
+ "loss": 3.7191576957702637,
+ "step": 2394
+ },
+ {
+ "epoch": 33.265618173875055,
+ "grad_norm": 0.2306993454694748,
+ "learning_rate": 0.0006,
+ "loss": 3.7172658443450928,
+ "step": 2395
+ },
+ {
+ "epoch": 33.27959807776322,
+ "grad_norm": 0.24935221672058105,
+ "learning_rate": 0.0006,
+ "loss": 3.6917519569396973,
+ "step": 2396
+ },
+ {
+ "epoch": 33.293577981651374,
+ "grad_norm": 0.2522840201854706,
+ "learning_rate": 0.0006,
+ "loss": 3.7263593673706055,
+ "step": 2397
+ },
+ {
+ "epoch": 33.30755788553954,
+ "grad_norm": 0.26411181688308716,
+ "learning_rate": 0.0006,
+ "loss": 3.6981635093688965,
+ "step": 2398
+ },
+ {
+ "epoch": 33.3215377894277,
+ "grad_norm": 0.22396239638328552,
+ "learning_rate": 0.0006,
+ "loss": 3.713247299194336,
+ "step": 2399
+ },
+ {
+ "epoch": 33.33551769331586,
+ "grad_norm": 0.20579157769680023,
+ "learning_rate": 0.0006,
+ "loss": 3.7058467864990234,
+ "step": 2400
+ },
+ {
+ "epoch": 33.34949759720402,
+ "grad_norm": 0.20103922486305237,
+ "learning_rate": 0.0006,
+ "loss": 3.700924873352051,
+ "step": 2401
+ },
+ {
+ "epoch": 33.36347750109218,
+ "grad_norm": 0.19964663684368134,
+ "learning_rate": 0.0006,
+ "loss": 3.6985437870025635,
+ "step": 2402
+ },
+ {
+ "epoch": 33.37745740498034,
+ "grad_norm": 0.20860575139522552,
+ "learning_rate": 0.0006,
+ "loss": 3.7480058670043945,
+ "step": 2403
+ },
+ {
+ "epoch": 33.391437308868504,
+ "grad_norm": 0.19043605029582977,
+ "learning_rate": 0.0006,
+ "loss": 3.6952016353607178,
+ "step": 2404
+ },
+ {
+ "epoch": 33.40541721275666,
+ "grad_norm": 0.1968909204006195,
+ "learning_rate": 0.0006,
+ "loss": 3.69362735748291,
+ "step": 2405
+ },
+ {
+ "epoch": 33.419397116644824,
+ "grad_norm": 0.23492494225502014,
+ "learning_rate": 0.0006,
+ "loss": 3.707993984222412,
+ "step": 2406
+ },
+ {
+ "epoch": 33.43337702053299,
+ "grad_norm": 0.23970453441143036,
+ "learning_rate": 0.0006,
+ "loss": 3.707731246948242,
+ "step": 2407
+ },
+ {
+ "epoch": 33.44735692442114,
+ "grad_norm": 0.2515844404697418,
+ "learning_rate": 0.0006,
+ "loss": 3.723824977874756,
+ "step": 2408
+ },
+ {
+ "epoch": 33.46133682830931,
+ "grad_norm": 0.2343570590019226,
+ "learning_rate": 0.0006,
+ "loss": 3.7068886756896973,
+ "step": 2409
+ },
+ {
+ "epoch": 33.47531673219746,
+ "grad_norm": 0.23419860005378723,
+ "learning_rate": 0.0006,
+ "loss": 3.6964287757873535,
+ "step": 2410
+ },
+ {
+ "epoch": 33.489296636085626,
+ "grad_norm": 0.21280375123023987,
+ "learning_rate": 0.0006,
+ "loss": 3.7020950317382812,
+ "step": 2411
+ },
+ {
+ "epoch": 33.50327653997379,
+ "grad_norm": 0.2061092108488083,
+ "learning_rate": 0.0006,
+ "loss": 3.750861406326294,
+ "step": 2412
+ },
+ {
+ "epoch": 33.517256443861946,
+ "grad_norm": 0.19693219661712646,
+ "learning_rate": 0.0006,
+ "loss": 3.717020034790039,
+ "step": 2413
+ },
+ {
+ "epoch": 33.53123634775011,
+ "grad_norm": 0.18199551105499268,
+ "learning_rate": 0.0006,
+ "loss": 3.7242612838745117,
+ "step": 2414
+ },
+ {
+ "epoch": 33.54521625163827,
+ "grad_norm": 0.20131248235702515,
+ "learning_rate": 0.0006,
+ "loss": 3.6758954524993896,
+ "step": 2415
+ },
+ {
+ "epoch": 33.55919615552643,
+ "grad_norm": 0.2219412475824356,
+ "learning_rate": 0.0006,
+ "loss": 3.707927703857422,
+ "step": 2416
+ },
+ {
+ "epoch": 33.57317605941459,
+ "grad_norm": 0.22541435062885284,
+ "learning_rate": 0.0006,
+ "loss": 3.696967601776123,
+ "step": 2417
+ },
+ {
+ "epoch": 33.58715596330275,
+ "grad_norm": 0.20367272198200226,
+ "learning_rate": 0.0006,
+ "loss": 3.730795383453369,
+ "step": 2418
+ },
+ {
+ "epoch": 33.60113586719091,
+ "grad_norm": 0.20861074328422546,
+ "learning_rate": 0.0006,
+ "loss": 3.707066535949707,
+ "step": 2419
+ },
+ {
+ "epoch": 33.615115771079076,
+ "grad_norm": 0.20570263266563416,
+ "learning_rate": 0.0006,
+ "loss": 3.730602502822876,
+ "step": 2420
+ },
+ {
+ "epoch": 33.62909567496723,
+ "grad_norm": 0.21318231523036957,
+ "learning_rate": 0.0006,
+ "loss": 3.7073278427124023,
+ "step": 2421
+ },
+ {
+ "epoch": 33.643075578855395,
+ "grad_norm": 0.2142639458179474,
+ "learning_rate": 0.0006,
+ "loss": 3.718470573425293,
+ "step": 2422
+ },
+ {
+ "epoch": 33.65705548274356,
+ "grad_norm": 0.19620704650878906,
+ "learning_rate": 0.0006,
+ "loss": 3.716036319732666,
+ "step": 2423
+ },
+ {
+ "epoch": 33.671035386631715,
+ "grad_norm": 0.19308267533779144,
+ "learning_rate": 0.0006,
+ "loss": 3.734597682952881,
+ "step": 2424
+ },
+ {
+ "epoch": 33.68501529051988,
+ "grad_norm": 0.19453389942646027,
+ "learning_rate": 0.0006,
+ "loss": 3.726262092590332,
+ "step": 2425
+ },
+ {
+ "epoch": 33.69899519440804,
+ "grad_norm": 0.20405639708042145,
+ "learning_rate": 0.0006,
+ "loss": 3.678340435028076,
+ "step": 2426
+ },
+ {
+ "epoch": 33.7129750982962,
+ "grad_norm": 0.19525611400604248,
+ "learning_rate": 0.0006,
+ "loss": 3.723907470703125,
+ "step": 2427
+ },
+ {
+ "epoch": 33.72695500218436,
+ "grad_norm": 0.19390441477298737,
+ "learning_rate": 0.0006,
+ "loss": 3.707897186279297,
+ "step": 2428
+ },
+ {
+ "epoch": 33.74093490607252,
+ "grad_norm": 0.2032899558544159,
+ "learning_rate": 0.0006,
+ "loss": 3.735041618347168,
+ "step": 2429
+ },
+ {
+ "epoch": 33.75491480996068,
+ "grad_norm": 0.2134784460067749,
+ "learning_rate": 0.0006,
+ "loss": 3.674978017807007,
+ "step": 2430
+ },
+ {
+ "epoch": 33.768894713848844,
+ "grad_norm": 0.24691973626613617,
+ "learning_rate": 0.0006,
+ "loss": 3.7028675079345703,
+ "step": 2431
+ },
+ {
+ "epoch": 33.782874617737,
+ "grad_norm": 0.2272702008485794,
+ "learning_rate": 0.0006,
+ "loss": 3.7277941703796387,
+ "step": 2432
+ },
+ {
+ "epoch": 33.796854521625164,
+ "grad_norm": 0.20052100718021393,
+ "learning_rate": 0.0006,
+ "loss": 3.7146830558776855,
+ "step": 2433
+ },
+ {
+ "epoch": 33.81083442551333,
+ "grad_norm": 0.1958577185869217,
+ "learning_rate": 0.0006,
+ "loss": 3.6936864852905273,
+ "step": 2434
+ },
+ {
+ "epoch": 33.824814329401484,
+ "grad_norm": 0.191860631108284,
+ "learning_rate": 0.0006,
+ "loss": 3.7451858520507812,
+ "step": 2435
+ },
+ {
+ "epoch": 33.83879423328965,
+ "grad_norm": 0.20961424708366394,
+ "learning_rate": 0.0006,
+ "loss": 3.722400665283203,
+ "step": 2436
+ },
+ {
+ "epoch": 33.8527741371778,
+ "grad_norm": 0.19784288108348846,
+ "learning_rate": 0.0006,
+ "loss": 3.712474822998047,
+ "step": 2437
+ },
+ {
+ "epoch": 33.86675404106597,
+ "grad_norm": 0.18645426630973816,
+ "learning_rate": 0.0006,
+ "loss": 3.7054500579833984,
+ "step": 2438
+ },
+ {
+ "epoch": 33.88073394495413,
+ "grad_norm": 0.19622360169887543,
+ "learning_rate": 0.0006,
+ "loss": 3.7010550498962402,
+ "step": 2439
+ },
+ {
+ "epoch": 33.89471384884229,
+ "grad_norm": 0.20283745229244232,
+ "learning_rate": 0.0006,
+ "loss": 3.7252519130706787,
+ "step": 2440
+ },
+ {
+ "epoch": 33.90869375273045,
+ "grad_norm": 0.18671709299087524,
+ "learning_rate": 0.0006,
+ "loss": 3.6932945251464844,
+ "step": 2441
+ },
+ {
+ "epoch": 33.92267365661861,
+ "grad_norm": 0.17953112721443176,
+ "learning_rate": 0.0006,
+ "loss": 3.7453854084014893,
+ "step": 2442
+ },
+ {
+ "epoch": 33.93665356050677,
+ "grad_norm": 0.1945437788963318,
+ "learning_rate": 0.0006,
+ "loss": 3.722881317138672,
+ "step": 2443
+ },
+ {
+ "epoch": 33.95063346439493,
+ "grad_norm": 0.18414495885372162,
+ "learning_rate": 0.0006,
+ "loss": 3.7402591705322266,
+ "step": 2444
+ },
+ {
+ "epoch": 33.964613368283096,
+ "grad_norm": 0.1936541497707367,
+ "learning_rate": 0.0006,
+ "loss": 3.720057964324951,
+ "step": 2445
+ },
+ {
+ "epoch": 33.97859327217125,
+ "grad_norm": 0.20177008211612701,
+ "learning_rate": 0.0006,
+ "loss": 3.6983802318573,
+ "step": 2446
+ },
+ {
+ "epoch": 33.992573176059416,
+ "grad_norm": 0.18977557122707367,
+ "learning_rate": 0.0006,
+ "loss": 3.7202203273773193,
+ "step": 2447
+ },
+ {
+ "epoch": 34.0,
+ "grad_norm": 0.220163956284523,
+ "learning_rate": 0.0006,
+ "loss": 3.72540283203125,
+ "step": 2448
+ },
+ {
+ "epoch": 34.0,
+ "eval_loss": 4.009343147277832,
+ "eval_runtime": 44.1825,
+ "eval_samples_per_second": 55.271,
+ "eval_steps_per_second": 3.463,
+ "step": 2448
+ },
+ {
+ "epoch": 34.01397990388816,
+ "grad_norm": 0.19843372702598572,
+ "learning_rate": 0.0006,
+ "loss": 3.664431571960449,
+ "step": 2449
+ },
+ {
+ "epoch": 34.02795980777632,
+ "grad_norm": 0.20413008332252502,
+ "learning_rate": 0.0006,
+ "loss": 3.699094533920288,
+ "step": 2450
+ },
+ {
+ "epoch": 34.04193971166448,
+ "grad_norm": 0.22086848318576813,
+ "learning_rate": 0.0006,
+ "loss": 3.681825637817383,
+ "step": 2451
+ },
+ {
+ "epoch": 34.05591961555265,
+ "grad_norm": 0.20753061771392822,
+ "learning_rate": 0.0006,
+ "loss": 3.677116870880127,
+ "step": 2452
+ },
+ {
+ "epoch": 34.0698995194408,
+ "grad_norm": 0.21835783123970032,
+ "learning_rate": 0.0006,
+ "loss": 3.7079062461853027,
+ "step": 2453
+ },
+ {
+ "epoch": 34.083879423328966,
+ "grad_norm": 0.2244357019662857,
+ "learning_rate": 0.0006,
+ "loss": 3.69844913482666,
+ "step": 2454
+ },
+ {
+ "epoch": 34.09785932721712,
+ "grad_norm": 0.2238784283399582,
+ "learning_rate": 0.0006,
+ "loss": 3.6835570335388184,
+ "step": 2455
+ },
+ {
+ "epoch": 34.111839231105286,
+ "grad_norm": 0.24816176295280457,
+ "learning_rate": 0.0006,
+ "loss": 3.6832966804504395,
+ "step": 2456
+ },
+ {
+ "epoch": 34.12581913499345,
+ "grad_norm": 0.2445257306098938,
+ "learning_rate": 0.0006,
+ "loss": 3.7190022468566895,
+ "step": 2457
+ },
+ {
+ "epoch": 34.139799038881605,
+ "grad_norm": 0.24510814249515533,
+ "learning_rate": 0.0006,
+ "loss": 3.678098201751709,
+ "step": 2458
+ },
+ {
+ "epoch": 34.15377894276977,
+ "grad_norm": 0.2550753653049469,
+ "learning_rate": 0.0006,
+ "loss": 3.69335675239563,
+ "step": 2459
+ },
+ {
+ "epoch": 34.16775884665793,
+ "grad_norm": 0.2435017228126526,
+ "learning_rate": 0.0006,
+ "loss": 3.70463228225708,
+ "step": 2460
+ },
+ {
+ "epoch": 34.18173875054609,
+ "grad_norm": 0.26441144943237305,
+ "learning_rate": 0.0006,
+ "loss": 3.6757068634033203,
+ "step": 2461
+ },
+ {
+ "epoch": 34.19571865443425,
+ "grad_norm": 0.2737993001937866,
+ "learning_rate": 0.0006,
+ "loss": 3.6510863304138184,
+ "step": 2462
+ },
+ {
+ "epoch": 34.20969855832241,
+ "grad_norm": 0.24625736474990845,
+ "learning_rate": 0.0006,
+ "loss": 3.707612991333008,
+ "step": 2463
+ },
+ {
+ "epoch": 34.22367846221057,
+ "grad_norm": 0.22222039103507996,
+ "learning_rate": 0.0006,
+ "loss": 3.7145133018493652,
+ "step": 2464
+ },
+ {
+ "epoch": 34.237658366098735,
+ "grad_norm": 0.2173531949520111,
+ "learning_rate": 0.0006,
+ "loss": 3.685112476348877,
+ "step": 2465
+ },
+ {
+ "epoch": 34.25163826998689,
+ "grad_norm": 0.23102006316184998,
+ "learning_rate": 0.0006,
+ "loss": 3.6742453575134277,
+ "step": 2466
+ },
+ {
+ "epoch": 34.265618173875055,
+ "grad_norm": 0.22287188470363617,
+ "learning_rate": 0.0006,
+ "loss": 3.7030534744262695,
+ "step": 2467
+ },
+ {
+ "epoch": 34.27959807776322,
+ "grad_norm": 0.20377251505851746,
+ "learning_rate": 0.0006,
+ "loss": 3.6866259574890137,
+ "step": 2468
+ },
+ {
+ "epoch": 34.293577981651374,
+ "grad_norm": 0.19867438077926636,
+ "learning_rate": 0.0006,
+ "loss": 3.70395565032959,
+ "step": 2469
+ },
+ {
+ "epoch": 34.30755788553954,
+ "grad_norm": 0.2014918178319931,
+ "learning_rate": 0.0006,
+ "loss": 3.660795211791992,
+ "step": 2470
+ },
+ {
+ "epoch": 34.3215377894277,
+ "grad_norm": 0.20981402695178986,
+ "learning_rate": 0.0006,
+ "loss": 3.7045323848724365,
+ "step": 2471
+ },
+ {
+ "epoch": 34.33551769331586,
+ "grad_norm": 0.20968124270439148,
+ "learning_rate": 0.0006,
+ "loss": 3.7113170623779297,
+ "step": 2472
+ },
+ {
+ "epoch": 34.34949759720402,
+ "grad_norm": 0.2214043140411377,
+ "learning_rate": 0.0006,
+ "loss": 3.7330074310302734,
+ "step": 2473
+ },
+ {
+ "epoch": 34.36347750109218,
+ "grad_norm": 0.21231533586978912,
+ "learning_rate": 0.0006,
+ "loss": 3.6706933975219727,
+ "step": 2474
+ },
+ {
+ "epoch": 34.37745740498034,
+ "grad_norm": 0.2022094875574112,
+ "learning_rate": 0.0006,
+ "loss": 3.7230453491210938,
+ "step": 2475
+ },
+ {
+ "epoch": 34.391437308868504,
+ "grad_norm": 0.2281145304441452,
+ "learning_rate": 0.0006,
+ "loss": 3.7197465896606445,
+ "step": 2476
+ },
+ {
+ "epoch": 34.40541721275666,
+ "grad_norm": 0.2147362381219864,
+ "learning_rate": 0.0006,
+ "loss": 3.7092337608337402,
+ "step": 2477
+ },
+ {
+ "epoch": 34.419397116644824,
+ "grad_norm": 0.19984203577041626,
+ "learning_rate": 0.0006,
+ "loss": 3.6939496994018555,
+ "step": 2478
+ },
+ {
+ "epoch": 34.43337702053299,
+ "grad_norm": 0.21088480949401855,
+ "learning_rate": 0.0006,
+ "loss": 3.6942667961120605,
+ "step": 2479
+ },
+ {
+ "epoch": 34.44735692442114,
+ "grad_norm": 0.20444616675376892,
+ "learning_rate": 0.0006,
+ "loss": 3.718186378479004,
+ "step": 2480
+ },
+ {
+ "epoch": 34.46133682830931,
+ "grad_norm": 0.19133952260017395,
+ "learning_rate": 0.0006,
+ "loss": 3.697197437286377,
+ "step": 2481
+ },
+ {
+ "epoch": 34.47531673219746,
+ "grad_norm": 0.2219255417585373,
+ "learning_rate": 0.0006,
+ "loss": 3.684386730194092,
+ "step": 2482
+ },
+ {
+ "epoch": 34.489296636085626,
+ "grad_norm": 0.2480643391609192,
+ "learning_rate": 0.0006,
+ "loss": 3.6656622886657715,
+ "step": 2483
+ },
+ {
+ "epoch": 34.50327653997379,
+ "grad_norm": 0.22907346487045288,
+ "learning_rate": 0.0006,
+ "loss": 3.741391897201538,
+ "step": 2484
+ },
+ {
+ "epoch": 34.517256443861946,
+ "grad_norm": 0.20277173817157745,
+ "learning_rate": 0.0006,
+ "loss": 3.7062582969665527,
+ "step": 2485
+ },
+ {
+ "epoch": 34.53123634775011,
+ "grad_norm": 0.21411100029945374,
+ "learning_rate": 0.0006,
+ "loss": 3.691784381866455,
+ "step": 2486
+ },
+ {
+ "epoch": 34.54521625163827,
+ "grad_norm": 0.20261600613594055,
+ "learning_rate": 0.0006,
+ "loss": 3.6855502128601074,
+ "step": 2487
+ },
+ {
+ "epoch": 34.55919615552643,
+ "grad_norm": 0.23913109302520752,
+ "learning_rate": 0.0006,
+ "loss": 3.670754909515381,
+ "step": 2488
+ },
+ {
+ "epoch": 34.57317605941459,
+ "grad_norm": 0.24427077174186707,
+ "learning_rate": 0.0006,
+ "loss": 3.700611114501953,
+ "step": 2489
+ },
+ {
+ "epoch": 34.58715596330275,
+ "grad_norm": 0.20305761694908142,
+ "learning_rate": 0.0006,
+ "loss": 3.7284226417541504,
+ "step": 2490
+ },
+ {
+ "epoch": 34.60113586719091,
+ "grad_norm": 0.20398905873298645,
+ "learning_rate": 0.0006,
+ "loss": 3.6860880851745605,
+ "step": 2491
+ },
+ {
+ "epoch": 34.615115771079076,
+ "grad_norm": 0.21016651391983032,
+ "learning_rate": 0.0006,
+ "loss": 3.7366015911102295,
+ "step": 2492
+ },
+ {
+ "epoch": 34.62909567496723,
+ "grad_norm": 0.22279402613639832,
+ "learning_rate": 0.0006,
+ "loss": 3.7024295330047607,
+ "step": 2493
+ },
+ {
+ "epoch": 34.643075578855395,
+ "grad_norm": 0.25080347061157227,
+ "learning_rate": 0.0006,
+ "loss": 3.68355655670166,
+ "step": 2494
+ },
+ {
+ "epoch": 34.65705548274356,
+ "grad_norm": 0.2702971398830414,
+ "learning_rate": 0.0006,
+ "loss": 3.7400612831115723,
+ "step": 2495
+ },
+ {
+ "epoch": 34.671035386631715,
+ "grad_norm": 0.299398273229599,
+ "learning_rate": 0.0006,
+ "loss": 3.7160325050354004,
+ "step": 2496
+ },
+ {
+ "epoch": 34.68501529051988,
+ "grad_norm": 0.29151082038879395,
+ "learning_rate": 0.0006,
+ "loss": 3.7124147415161133,
+ "step": 2497
+ },
+ {
+ "epoch": 34.69899519440804,
+ "grad_norm": 0.23828288912773132,
+ "learning_rate": 0.0006,
+ "loss": 3.7181267738342285,
+ "step": 2498
+ },
+ {
+ "epoch": 34.7129750982962,
+ "grad_norm": 0.21776588261127472,
+ "learning_rate": 0.0006,
+ "loss": 3.6811792850494385,
+ "step": 2499
+ },
+ {
+ "epoch": 34.72695500218436,
+ "grad_norm": 0.2318469136953354,
+ "learning_rate": 0.0006,
+ "loss": 3.698467254638672,
+ "step": 2500
+ },
+ {
+ "epoch": 34.74093490607252,
+ "grad_norm": 0.22341546416282654,
+ "learning_rate": 0.0006,
+ "loss": 3.7406411170959473,
+ "step": 2501
+ },
+ {
+ "epoch": 34.75491480996068,
+ "grad_norm": 0.20676901936531067,
+ "learning_rate": 0.0006,
+ "loss": 3.6914243698120117,
+ "step": 2502
+ },
+ {
+ "epoch": 34.768894713848844,
+ "grad_norm": 0.20459024608135223,
+ "learning_rate": 0.0006,
+ "loss": 3.713369607925415,
+ "step": 2503
+ },
+ {
+ "epoch": 34.782874617737,
+ "grad_norm": 0.22369320690631866,
+ "learning_rate": 0.0006,
+ "loss": 3.697587490081787,
+ "step": 2504
+ },
+ {
+ "epoch": 34.796854521625164,
+ "grad_norm": 0.2393338829278946,
+ "learning_rate": 0.0006,
+ "loss": 3.7171854972839355,
+ "step": 2505
+ },
+ {
+ "epoch": 34.81083442551333,
+ "grad_norm": 0.23756961524486542,
+ "learning_rate": 0.0006,
+ "loss": 3.6969614028930664,
+ "step": 2506
+ },
+ {
+ "epoch": 34.824814329401484,
+ "grad_norm": 0.22761376202106476,
+ "learning_rate": 0.0006,
+ "loss": 3.722501754760742,
+ "step": 2507
+ },
+ {
+ "epoch": 34.83879423328965,
+ "grad_norm": 0.23564888536930084,
+ "learning_rate": 0.0006,
+ "loss": 3.714003086090088,
+ "step": 2508
+ },
+ {
+ "epoch": 34.8527741371778,
+ "grad_norm": 0.22197313606739044,
+ "learning_rate": 0.0006,
+ "loss": 3.7107110023498535,
+ "step": 2509
+ },
+ {
+ "epoch": 34.86675404106597,
+ "grad_norm": 0.20199328660964966,
+ "learning_rate": 0.0006,
+ "loss": 3.7167551517486572,
+ "step": 2510
+ },
+ {
+ "epoch": 34.88073394495413,
+ "grad_norm": 0.19569700956344604,
+ "learning_rate": 0.0006,
+ "loss": 3.679098129272461,
+ "step": 2511
+ },
+ {
+ "epoch": 34.89471384884229,
+ "grad_norm": 0.21320141851902008,
+ "learning_rate": 0.0006,
+ "loss": 3.733187675476074,
+ "step": 2512
+ },
+ {
+ "epoch": 34.90869375273045,
+ "grad_norm": 0.20074625313282013,
+ "learning_rate": 0.0006,
+ "loss": 3.713339328765869,
+ "step": 2513
+ },
+ {
+ "epoch": 34.92267365661861,
+ "grad_norm": 0.20249252021312714,
+ "learning_rate": 0.0006,
+ "loss": 3.680785655975342,
+ "step": 2514
+ },
+ {
+ "epoch": 34.93665356050677,
+ "grad_norm": 0.22165577113628387,
+ "learning_rate": 0.0006,
+ "loss": 3.696131706237793,
+ "step": 2515
+ },
+ {
+ "epoch": 34.95063346439493,
+ "grad_norm": 0.20769749581813812,
+ "learning_rate": 0.0006,
+ "loss": 3.6910316944122314,
+ "step": 2516
+ },
+ {
+ "epoch": 34.964613368283096,
+ "grad_norm": 0.20857223868370056,
+ "learning_rate": 0.0006,
+ "loss": 3.7327451705932617,
+ "step": 2517
+ },
+ {
+ "epoch": 34.97859327217125,
+ "grad_norm": 0.19155766069889069,
+ "learning_rate": 0.0006,
+ "loss": 3.705609083175659,
+ "step": 2518
+ },
+ {
+ "epoch": 34.992573176059416,
+ "grad_norm": 0.17890529334545135,
+ "learning_rate": 0.0006,
+ "loss": 3.6844797134399414,
+ "step": 2519
+ },
+ {
+ "epoch": 35.0,
+ "grad_norm": 0.2053528130054474,
+ "learning_rate": 0.0006,
+ "loss": 3.6942501068115234,
+ "step": 2520
+ },
+ {
+ "epoch": 35.0,
+ "eval_loss": 3.998469591140747,
+ "eval_runtime": 43.9147,
+ "eval_samples_per_second": 55.608,
+ "eval_steps_per_second": 3.484,
+ "step": 2520
+ },
+ {
+ "epoch": 35.01397990388816,
+ "grad_norm": 0.2288869470357895,
+ "learning_rate": 0.0006,
+ "loss": 3.6966426372528076,
+ "step": 2521
+ },
+ {
+ "epoch": 35.02795980777632,
+ "grad_norm": 0.25702035427093506,
+ "learning_rate": 0.0006,
+ "loss": 3.6622562408447266,
+ "step": 2522
+ },
+ {
+ "epoch": 35.04193971166448,
+ "grad_norm": 0.254422128200531,
+ "learning_rate": 0.0006,
+ "loss": 3.690046548843384,
+ "step": 2523
+ },
+ {
+ "epoch": 35.05591961555265,
+ "grad_norm": 0.24177077412605286,
+ "learning_rate": 0.0006,
+ "loss": 3.685335874557495,
+ "step": 2524
+ },
+ {
+ "epoch": 35.0698995194408,
+ "grad_norm": 0.23959586024284363,
+ "learning_rate": 0.0006,
+ "loss": 3.6534650325775146,
+ "step": 2525
+ },
+ {
+ "epoch": 35.083879423328966,
+ "grad_norm": 0.23474839329719543,
+ "learning_rate": 0.0006,
+ "loss": 3.7092814445495605,
+ "step": 2526
+ },
+ {
+ "epoch": 35.09785932721712,
+ "grad_norm": 0.23240867257118225,
+ "learning_rate": 0.0006,
+ "loss": 3.6819097995758057,
+ "step": 2527
+ },
+ {
+ "epoch": 35.111839231105286,
+ "grad_norm": 0.26267048716545105,
+ "learning_rate": 0.0006,
+ "loss": 3.6566696166992188,
+ "step": 2528
+ },
+ {
+ "epoch": 35.12581913499345,
+ "grad_norm": 0.27070754766464233,
+ "learning_rate": 0.0006,
+ "loss": 3.676304340362549,
+ "step": 2529
+ },
+ {
+ "epoch": 35.139799038881605,
+ "grad_norm": 0.25297826528549194,
+ "learning_rate": 0.0006,
+ "loss": 3.65259051322937,
+ "step": 2530
+ },
+ {
+ "epoch": 35.15377894276977,
+ "grad_norm": 0.22776272892951965,
+ "learning_rate": 0.0006,
+ "loss": 3.6813838481903076,
+ "step": 2531
+ },
+ {
+ "epoch": 35.16775884665793,
+ "grad_norm": 0.2288261204957962,
+ "learning_rate": 0.0006,
+ "loss": 3.6916379928588867,
+ "step": 2532
+ },
+ {
+ "epoch": 35.18173875054609,
+ "grad_norm": 0.20445892214775085,
+ "learning_rate": 0.0006,
+ "loss": 3.6550145149230957,
+ "step": 2533
+ },
+ {
+ "epoch": 35.19571865443425,
+ "grad_norm": 0.20298904180526733,
+ "learning_rate": 0.0006,
+ "loss": 3.704042434692383,
+ "step": 2534
+ },
+ {
+ "epoch": 35.20969855832241,
+ "grad_norm": 0.2264423668384552,
+ "learning_rate": 0.0006,
+ "loss": 3.646308183670044,
+ "step": 2535
+ },
+ {
+ "epoch": 35.22367846221057,
+ "grad_norm": 0.21537378430366516,
+ "learning_rate": 0.0006,
+ "loss": 3.686048984527588,
+ "step": 2536
+ },
+ {
+ "epoch": 35.237658366098735,
+ "grad_norm": 0.19820059835910797,
+ "learning_rate": 0.0006,
+ "loss": 3.6993050575256348,
+ "step": 2537
+ },
+ {
+ "epoch": 35.25163826998689,
+ "grad_norm": 0.19485290348529816,
+ "learning_rate": 0.0006,
+ "loss": 3.6507070064544678,
+ "step": 2538
+ },
+ {
+ "epoch": 35.265618173875055,
+ "grad_norm": 0.21234364807605743,
+ "learning_rate": 0.0006,
+ "loss": 3.6913719177246094,
+ "step": 2539
+ },
+ {
+ "epoch": 35.27959807776322,
+ "grad_norm": 0.19834300875663757,
+ "learning_rate": 0.0006,
+ "loss": 3.6793041229248047,
+ "step": 2540
+ },
+ {
+ "epoch": 35.293577981651374,
+ "grad_norm": 0.1969013512134552,
+ "learning_rate": 0.0006,
+ "loss": 3.7063517570495605,
+ "step": 2541
+ },
+ {
+ "epoch": 35.30755788553954,
+ "grad_norm": 0.196136936545372,
+ "learning_rate": 0.0006,
+ "loss": 3.679825782775879,
+ "step": 2542
+ },
+ {
+ "epoch": 35.3215377894277,
+ "grad_norm": 0.20465479791164398,
+ "learning_rate": 0.0006,
+ "loss": 3.698906421661377,
+ "step": 2543
+ },
+ {
+ "epoch": 35.33551769331586,
+ "grad_norm": 0.204293355345726,
+ "learning_rate": 0.0006,
+ "loss": 3.728549003601074,
+ "step": 2544
+ },
+ {
+ "epoch": 35.34949759720402,
+ "grad_norm": 0.18861903250217438,
+ "learning_rate": 0.0006,
+ "loss": 3.687018632888794,
+ "step": 2545
+ },
+ {
+ "epoch": 35.36347750109218,
+ "grad_norm": 0.19066226482391357,
+ "learning_rate": 0.0006,
+ "loss": 3.667919158935547,
+ "step": 2546
+ },
+ {
+ "epoch": 35.37745740498034,
+ "grad_norm": 0.19985736906528473,
+ "learning_rate": 0.0006,
+ "loss": 3.6697773933410645,
+ "step": 2547
+ },
+ {
+ "epoch": 35.391437308868504,
+ "grad_norm": 0.20669348537921906,
+ "learning_rate": 0.0006,
+ "loss": 3.6718077659606934,
+ "step": 2548
+ },
+ {
+ "epoch": 35.40541721275666,
+ "grad_norm": 0.22164477407932281,
+ "learning_rate": 0.0006,
+ "loss": 3.692106246948242,
+ "step": 2549
+ },
+ {
+ "epoch": 35.419397116644824,
+ "grad_norm": 0.20884688198566437,
+ "learning_rate": 0.0006,
+ "loss": 3.714324712753296,
+ "step": 2550
+ },
+ {
+ "epoch": 35.43337702053299,
+ "grad_norm": 0.21811005473136902,
+ "learning_rate": 0.0006,
+ "loss": 3.678694725036621,
+ "step": 2551
+ },
+ {
+ "epoch": 35.44735692442114,
+ "grad_norm": 0.2427632063627243,
+ "learning_rate": 0.0006,
+ "loss": 3.6584935188293457,
+ "step": 2552
+ },
+ {
+ "epoch": 35.46133682830931,
+ "grad_norm": 0.2584928572177887,
+ "learning_rate": 0.0006,
+ "loss": 3.694148063659668,
+ "step": 2553
+ },
+ {
+ "epoch": 35.47531673219746,
+ "grad_norm": 0.2594548761844635,
+ "learning_rate": 0.0006,
+ "loss": 3.690629005432129,
+ "step": 2554
+ },
+ {
+ "epoch": 35.489296636085626,
+ "grad_norm": 0.2521844208240509,
+ "learning_rate": 0.0006,
+ "loss": 3.6949915885925293,
+ "step": 2555
+ },
+ {
+ "epoch": 35.50327653997379,
+ "grad_norm": 0.2284533679485321,
+ "learning_rate": 0.0006,
+ "loss": 3.6822848320007324,
+ "step": 2556
+ },
+ {
+ "epoch": 35.517256443861946,
+ "grad_norm": 0.2350241094827652,
+ "learning_rate": 0.0006,
+ "loss": 3.6841659545898438,
+ "step": 2557
+ },
+ {
+ "epoch": 35.53123634775011,
+ "grad_norm": 0.22496885061264038,
+ "learning_rate": 0.0006,
+ "loss": 3.676447629928589,
+ "step": 2558
+ },
+ {
+ "epoch": 35.54521625163827,
+ "grad_norm": 0.24326276779174805,
+ "learning_rate": 0.0006,
+ "loss": 3.681678533554077,
+ "step": 2559
+ },
+ {
+ "epoch": 35.55919615552643,
+ "grad_norm": 0.26298362016677856,
+ "learning_rate": 0.0006,
+ "loss": 3.6877617835998535,
+ "step": 2560
+ },
+ {
+ "epoch": 35.57317605941459,
+ "grad_norm": 0.2507239282131195,
+ "learning_rate": 0.0006,
+ "loss": 3.7089176177978516,
+ "step": 2561
+ },
+ {
+ "epoch": 35.58715596330275,
+ "grad_norm": 0.2276458442211151,
+ "learning_rate": 0.0006,
+ "loss": 3.705570936203003,
+ "step": 2562
+ },
+ {
+ "epoch": 35.60113586719091,
+ "grad_norm": 0.23317085206508636,
+ "learning_rate": 0.0006,
+ "loss": 3.6772396564483643,
+ "step": 2563
+ },
+ {
+ "epoch": 35.615115771079076,
+ "grad_norm": 0.23301710188388824,
+ "learning_rate": 0.0006,
+ "loss": 3.694855213165283,
+ "step": 2564
+ },
+ {
+ "epoch": 35.62909567496723,
+ "grad_norm": 0.2170179933309555,
+ "learning_rate": 0.0006,
+ "loss": 3.7095537185668945,
+ "step": 2565
+ },
+ {
+ "epoch": 35.643075578855395,
+ "grad_norm": 0.21211965382099152,
+ "learning_rate": 0.0006,
+ "loss": 3.670109272003174,
+ "step": 2566
+ },
+ {
+ "epoch": 35.65705548274356,
+ "grad_norm": 0.21052585542201996,
+ "learning_rate": 0.0006,
+ "loss": 3.6576027870178223,
+ "step": 2567
+ },
+ {
+ "epoch": 35.671035386631715,
+ "grad_norm": 0.21556039154529572,
+ "learning_rate": 0.0006,
+ "loss": 3.6870639324188232,
+ "step": 2568
+ },
+ {
+ "epoch": 35.68501529051988,
+ "grad_norm": 0.2246469408273697,
+ "learning_rate": 0.0006,
+ "loss": 3.675652503967285,
+ "step": 2569
+ },
+ {
+ "epoch": 35.69899519440804,
+ "grad_norm": 0.21891754865646362,
+ "learning_rate": 0.0006,
+ "loss": 3.692298650741577,
+ "step": 2570
+ },
+ {
+ "epoch": 35.7129750982962,
+ "grad_norm": 0.18774104118347168,
+ "learning_rate": 0.0006,
+ "loss": 3.681035041809082,
+ "step": 2571
+ },
+ {
+ "epoch": 35.72695500218436,
+ "grad_norm": 0.19461573660373688,
+ "learning_rate": 0.0006,
+ "loss": 3.7007932662963867,
+ "step": 2572
+ },
+ {
+ "epoch": 35.74093490607252,
+ "grad_norm": 0.25579094886779785,
+ "learning_rate": 0.0006,
+ "loss": 3.724409580230713,
+ "step": 2573
+ },
+ {
+ "epoch": 35.75491480996068,
+ "grad_norm": 0.27635645866394043,
+ "learning_rate": 0.0006,
+ "loss": 3.68107271194458,
+ "step": 2574
+ },
+ {
+ "epoch": 35.768894713848844,
+ "grad_norm": 0.2233380675315857,
+ "learning_rate": 0.0006,
+ "loss": 3.7123913764953613,
+ "step": 2575
+ },
+ {
+ "epoch": 35.782874617737,
+ "grad_norm": 0.19383835792541504,
+ "learning_rate": 0.0006,
+ "loss": 3.6948328018188477,
+ "step": 2576
+ },
+ {
+ "epoch": 35.796854521625164,
+ "grad_norm": 0.18138426542282104,
+ "learning_rate": 0.0006,
+ "loss": 3.6837103366851807,
+ "step": 2577
+ },
+ {
+ "epoch": 35.81083442551333,
+ "grad_norm": 0.18680135905742645,
+ "learning_rate": 0.0006,
+ "loss": 3.7106502056121826,
+ "step": 2578
+ },
+ {
+ "epoch": 35.824814329401484,
+ "grad_norm": 0.19226312637329102,
+ "learning_rate": 0.0006,
+ "loss": 3.69488787651062,
+ "step": 2579
+ },
+ {
+ "epoch": 35.83879423328965,
+ "grad_norm": 0.19224657118320465,
+ "learning_rate": 0.0006,
+ "loss": 3.7103662490844727,
+ "step": 2580
+ },
+ {
+ "epoch": 35.8527741371778,
+ "grad_norm": 0.18991880118846893,
+ "learning_rate": 0.0006,
+ "loss": 3.7154245376586914,
+ "step": 2581
+ },
+ {
+ "epoch": 35.86675404106597,
+ "grad_norm": 0.2036849409341812,
+ "learning_rate": 0.0006,
+ "loss": 3.723738193511963,
+ "step": 2582
+ },
+ {
+ "epoch": 35.88073394495413,
+ "grad_norm": 0.24730375409126282,
+ "learning_rate": 0.0006,
+ "loss": 3.6830549240112305,
+ "step": 2583
+ },
+ {
+ "epoch": 35.89471384884229,
+ "grad_norm": 0.26552343368530273,
+ "learning_rate": 0.0006,
+ "loss": 3.7025017738342285,
+ "step": 2584
+ },
+ {
+ "epoch": 35.90869375273045,
+ "grad_norm": 0.2621893286705017,
+ "learning_rate": 0.0006,
+ "loss": 3.697399854660034,
+ "step": 2585
+ },
+ {
+ "epoch": 35.92267365661861,
+ "grad_norm": 0.2320089191198349,
+ "learning_rate": 0.0006,
+ "loss": 3.722207546234131,
+ "step": 2586
+ },
+ {
+ "epoch": 35.93665356050677,
+ "grad_norm": 0.1848745346069336,
+ "learning_rate": 0.0006,
+ "loss": 3.711249351501465,
+ "step": 2587
+ },
+ {
+ "epoch": 35.95063346439493,
+ "grad_norm": 0.24218113720417023,
+ "learning_rate": 0.0006,
+ "loss": 3.698894500732422,
+ "step": 2588
+ },
+ {
+ "epoch": 35.964613368283096,
+ "grad_norm": 0.29338452219963074,
+ "learning_rate": 0.0006,
+ "loss": 3.7470521926879883,
+ "step": 2589
+ },
+ {
+ "epoch": 35.97859327217125,
+ "grad_norm": 0.2804136276245117,
+ "learning_rate": 0.0006,
+ "loss": 3.750649929046631,
+ "step": 2590
+ },
+ {
+ "epoch": 35.992573176059416,
+ "grad_norm": 0.26404470205307007,
+ "learning_rate": 0.0006,
+ "loss": 3.6995797157287598,
+ "step": 2591
+ },
+ {
+ "epoch": 36.0,
+ "grad_norm": 0.27446141839027405,
+ "learning_rate": 0.0006,
+ "loss": 3.715768814086914,
+ "step": 2592
+ },
+ {
+ "epoch": 36.0,
+ "eval_loss": 4.007599830627441,
+ "eval_runtime": 44.0149,
+ "eval_samples_per_second": 55.481,
+ "eval_steps_per_second": 3.476,
+ "step": 2592
+ },
+ {
+ "epoch": 36.01397990388816,
+ "grad_norm": 0.2365594208240509,
+ "learning_rate": 0.0006,
+ "loss": 3.6529457569122314,
+ "step": 2593
+ },
+ {
+ "epoch": 36.02795980777632,
+ "grad_norm": 0.24824099242687225,
+ "learning_rate": 0.0006,
+ "loss": 3.6703386306762695,
+ "step": 2594
+ },
+ {
+ "epoch": 36.04193971166448,
+ "grad_norm": 0.26802200078964233,
+ "learning_rate": 0.0006,
+ "loss": 3.688307762145996,
+ "step": 2595
+ },
+ {
+ "epoch": 36.05591961555265,
+ "grad_norm": 0.2552911341190338,
+ "learning_rate": 0.0006,
+ "loss": 3.681797981262207,
+ "step": 2596
+ },
+ {
+ "epoch": 36.0698995194408,
+ "grad_norm": 0.254991739988327,
+ "learning_rate": 0.0006,
+ "loss": 3.644087791442871,
+ "step": 2597
+ },
+ {
+ "epoch": 36.083879423328966,
+ "grad_norm": 0.2496735155582428,
+ "learning_rate": 0.0006,
+ "loss": 3.644047737121582,
+ "step": 2598
+ },
+ {
+ "epoch": 36.09785932721712,
+ "grad_norm": 0.23637443780899048,
+ "learning_rate": 0.0006,
+ "loss": 3.684454917907715,
+ "step": 2599
+ },
+ {
+ "epoch": 36.111839231105286,
+ "grad_norm": 0.22065003216266632,
+ "learning_rate": 0.0006,
+ "loss": 3.661752700805664,
+ "step": 2600
+ },
+ {
+ "epoch": 36.12581913499345,
+ "grad_norm": 0.2292395532131195,
+ "learning_rate": 0.0006,
+ "loss": 3.6709558963775635,
+ "step": 2601
+ },
+ {
+ "epoch": 36.139799038881605,
+ "grad_norm": 0.22295089066028595,
+ "learning_rate": 0.0006,
+ "loss": 3.642230987548828,
+ "step": 2602
+ },
+ {
+ "epoch": 36.15377894276977,
+ "grad_norm": 0.2220531553030014,
+ "learning_rate": 0.0006,
+ "loss": 3.653268814086914,
+ "step": 2603
+ },
+ {
+ "epoch": 36.16775884665793,
+ "grad_norm": 0.21605174243450165,
+ "learning_rate": 0.0006,
+ "loss": 3.6791329383850098,
+ "step": 2604
+ },
+ {
+ "epoch": 36.18173875054609,
+ "grad_norm": 0.20932699739933014,
+ "learning_rate": 0.0006,
+ "loss": 3.6496856212615967,
+ "step": 2605
+ },
+ {
+ "epoch": 36.19571865443425,
+ "grad_norm": 0.20941385626792908,
+ "learning_rate": 0.0006,
+ "loss": 3.6445729732513428,
+ "step": 2606
+ },
+ {
+ "epoch": 36.20969855832241,
+ "grad_norm": 0.1987197995185852,
+ "learning_rate": 0.0006,
+ "loss": 3.6481809616088867,
+ "step": 2607
+ },
+ {
+ "epoch": 36.22367846221057,
+ "grad_norm": 0.19054439663887024,
+ "learning_rate": 0.0006,
+ "loss": 3.66894268989563,
+ "step": 2608
+ },
+ {
+ "epoch": 36.237658366098735,
+ "grad_norm": 0.19940806925296783,
+ "learning_rate": 0.0006,
+ "loss": 3.7123427391052246,
+ "step": 2609
+ },
+ {
+ "epoch": 36.25163826998689,
+ "grad_norm": 0.22157685458660126,
+ "learning_rate": 0.0006,
+ "loss": 3.6707541942596436,
+ "step": 2610
+ },
+ {
+ "epoch": 36.265618173875055,
+ "grad_norm": 0.2362316995859146,
+ "learning_rate": 0.0006,
+ "loss": 3.6906795501708984,
+ "step": 2611
+ },
+ {
+ "epoch": 36.27959807776322,
+ "grad_norm": 0.24560341238975525,
+ "learning_rate": 0.0006,
+ "loss": 3.668379783630371,
+ "step": 2612
+ },
+ {
+ "epoch": 36.293577981651374,
+ "grad_norm": 0.22814054787158966,
+ "learning_rate": 0.0006,
+ "loss": 3.665527820587158,
+ "step": 2613
+ },
+ {
+ "epoch": 36.30755788553954,
+ "grad_norm": 0.2156696617603302,
+ "learning_rate": 0.0006,
+ "loss": 3.673835277557373,
+ "step": 2614
+ },
+ {
+ "epoch": 36.3215377894277,
+ "grad_norm": 0.20152772963047028,
+ "learning_rate": 0.0006,
+ "loss": 3.6512670516967773,
+ "step": 2615
+ },
+ {
+ "epoch": 36.33551769331586,
+ "grad_norm": 0.22466860711574554,
+ "learning_rate": 0.0006,
+ "loss": 3.6877706050872803,
+ "step": 2616
+ },
+ {
+ "epoch": 36.34949759720402,
+ "grad_norm": 0.21688112616539001,
+ "learning_rate": 0.0006,
+ "loss": 3.6895859241485596,
+ "step": 2617
+ },
+ {
+ "epoch": 36.36347750109218,
+ "grad_norm": 0.19836577773094177,
+ "learning_rate": 0.0006,
+ "loss": 3.6658992767333984,
+ "step": 2618
+ },
+ {
+ "epoch": 36.37745740498034,
+ "grad_norm": 0.1995069831609726,
+ "learning_rate": 0.0006,
+ "loss": 3.677614450454712,
+ "step": 2619
+ },
+ {
+ "epoch": 36.391437308868504,
+ "grad_norm": 0.21234792470932007,
+ "learning_rate": 0.0006,
+ "loss": 3.6971967220306396,
+ "step": 2620
+ },
+ {
+ "epoch": 36.40541721275666,
+ "grad_norm": 0.20898285508155823,
+ "learning_rate": 0.0006,
+ "loss": 3.6936516761779785,
+ "step": 2621
+ },
+ {
+ "epoch": 36.419397116644824,
+ "grad_norm": 0.2115008533000946,
+ "learning_rate": 0.0006,
+ "loss": 3.6674065589904785,
+ "step": 2622
+ },
+ {
+ "epoch": 36.43337702053299,
+ "grad_norm": 0.2041143774986267,
+ "learning_rate": 0.0006,
+ "loss": 3.6455483436584473,
+ "step": 2623
+ },
+ {
+ "epoch": 36.44735692442114,
+ "grad_norm": 0.1966932713985443,
+ "learning_rate": 0.0006,
+ "loss": 3.6938109397888184,
+ "step": 2624
+ },
+ {
+ "epoch": 36.46133682830931,
+ "grad_norm": 0.20062223076820374,
+ "learning_rate": 0.0006,
+ "loss": 3.6775765419006348,
+ "step": 2625
+ },
+ {
+ "epoch": 36.47531673219746,
+ "grad_norm": 0.20610390603542328,
+ "learning_rate": 0.0006,
+ "loss": 3.6835384368896484,
+ "step": 2626
+ },
+ {
+ "epoch": 36.489296636085626,
+ "grad_norm": 0.20481473207473755,
+ "learning_rate": 0.0006,
+ "loss": 3.6794047355651855,
+ "step": 2627
+ },
+ {
+ "epoch": 36.50327653997379,
+ "grad_norm": 0.18964581191539764,
+ "learning_rate": 0.0006,
+ "loss": 3.7035841941833496,
+ "step": 2628
+ },
+ {
+ "epoch": 36.517256443861946,
+ "grad_norm": 0.2029343545436859,
+ "learning_rate": 0.0006,
+ "loss": 3.6667590141296387,
+ "step": 2629
+ },
+ {
+ "epoch": 36.53123634775011,
+ "grad_norm": 0.23656968772411346,
+ "learning_rate": 0.0006,
+ "loss": 3.6974546909332275,
+ "step": 2630
+ },
+ {
+ "epoch": 36.54521625163827,
+ "grad_norm": 0.23401431739330292,
+ "learning_rate": 0.0006,
+ "loss": 3.668936252593994,
+ "step": 2631
+ },
+ {
+ "epoch": 36.55919615552643,
+ "grad_norm": 0.22258102893829346,
+ "learning_rate": 0.0006,
+ "loss": 3.667977809906006,
+ "step": 2632
+ },
+ {
+ "epoch": 36.57317605941459,
+ "grad_norm": 0.20849554240703583,
+ "learning_rate": 0.0006,
+ "loss": 3.6674845218658447,
+ "step": 2633
+ },
+ {
+ "epoch": 36.58715596330275,
+ "grad_norm": 0.20684309303760529,
+ "learning_rate": 0.0006,
+ "loss": 3.6828644275665283,
+ "step": 2634
+ },
+ {
+ "epoch": 36.60113586719091,
+ "grad_norm": 0.19114233553409576,
+ "learning_rate": 0.0006,
+ "loss": 3.7084832191467285,
+ "step": 2635
+ },
+ {
+ "epoch": 36.615115771079076,
+ "grad_norm": 0.20382429659366608,
+ "learning_rate": 0.0006,
+ "loss": 3.68354868888855,
+ "step": 2636
+ },
+ {
+ "epoch": 36.62909567496723,
+ "grad_norm": 0.22526590526103973,
+ "learning_rate": 0.0006,
+ "loss": 3.684112310409546,
+ "step": 2637
+ },
+ {
+ "epoch": 36.643075578855395,
+ "grad_norm": 0.20735391974449158,
+ "learning_rate": 0.0006,
+ "loss": 3.67702054977417,
+ "step": 2638
+ },
+ {
+ "epoch": 36.65705548274356,
+ "grad_norm": 0.18549653887748718,
+ "learning_rate": 0.0006,
+ "loss": 3.6840810775756836,
+ "step": 2639
+ },
+ {
+ "epoch": 36.671035386631715,
+ "grad_norm": 0.1805262714624405,
+ "learning_rate": 0.0006,
+ "loss": 3.688119411468506,
+ "step": 2640
+ },
+ {
+ "epoch": 36.68501529051988,
+ "grad_norm": 0.17545704543590546,
+ "learning_rate": 0.0006,
+ "loss": 3.6477861404418945,
+ "step": 2641
+ },
+ {
+ "epoch": 36.69899519440804,
+ "grad_norm": 0.1772221326828003,
+ "learning_rate": 0.0006,
+ "loss": 3.6935806274414062,
+ "step": 2642
+ },
+ {
+ "epoch": 36.7129750982962,
+ "grad_norm": 0.18701671063899994,
+ "learning_rate": 0.0006,
+ "loss": 3.6820428371429443,
+ "step": 2643
+ },
+ {
+ "epoch": 36.72695500218436,
+ "grad_norm": 0.2057863473892212,
+ "learning_rate": 0.0006,
+ "loss": 3.669762134552002,
+ "step": 2644
+ },
+ {
+ "epoch": 36.74093490607252,
+ "grad_norm": 0.2565848231315613,
+ "learning_rate": 0.0006,
+ "loss": 3.717599391937256,
+ "step": 2645
+ },
+ {
+ "epoch": 36.75491480996068,
+ "grad_norm": 0.24362123012542725,
+ "learning_rate": 0.0006,
+ "loss": 3.671900987625122,
+ "step": 2646
+ },
+ {
+ "epoch": 36.768894713848844,
+ "grad_norm": 0.19606009125709534,
+ "learning_rate": 0.0006,
+ "loss": 3.6782546043395996,
+ "step": 2647
+ },
+ {
+ "epoch": 36.782874617737,
+ "grad_norm": 0.1948748379945755,
+ "learning_rate": 0.0006,
+ "loss": 3.6823501586914062,
+ "step": 2648
+ },
+ {
+ "epoch": 36.796854521625164,
+ "grad_norm": 0.22289852797985077,
+ "learning_rate": 0.0006,
+ "loss": 3.693469762802124,
+ "step": 2649
+ },
+ {
+ "epoch": 36.81083442551333,
+ "grad_norm": 0.24751701951026917,
+ "learning_rate": 0.0006,
+ "loss": 3.700678825378418,
+ "step": 2650
+ },
+ {
+ "epoch": 36.824814329401484,
+ "grad_norm": 0.28663966059684753,
+ "learning_rate": 0.0006,
+ "loss": 3.6960878372192383,
+ "step": 2651
+ },
+ {
+ "epoch": 36.83879423328965,
+ "grad_norm": 0.3288552165031433,
+ "learning_rate": 0.0006,
+ "loss": 3.7255043983459473,
+ "step": 2652
+ },
+ {
+ "epoch": 36.8527741371778,
+ "grad_norm": 0.3555443286895752,
+ "learning_rate": 0.0006,
+ "loss": 3.725308418273926,
+ "step": 2653
+ },
+ {
+ "epoch": 36.86675404106597,
+ "grad_norm": 0.3204147219657898,
+ "learning_rate": 0.0006,
+ "loss": 3.7137985229492188,
+ "step": 2654
+ },
+ {
+ "epoch": 36.88073394495413,
+ "grad_norm": 0.2944706976413727,
+ "learning_rate": 0.0006,
+ "loss": 3.7032840251922607,
+ "step": 2655
+ },
+ {
+ "epoch": 36.89471384884229,
+ "grad_norm": 0.2845679223537445,
+ "learning_rate": 0.0006,
+ "loss": 3.6840004920959473,
+ "step": 2656
+ },
+ {
+ "epoch": 36.90869375273045,
+ "grad_norm": 0.2815704047679901,
+ "learning_rate": 0.0006,
+ "loss": 3.6958417892456055,
+ "step": 2657
+ },
+ {
+ "epoch": 36.92267365661861,
+ "grad_norm": 0.2733481228351593,
+ "learning_rate": 0.0006,
+ "loss": 3.677690029144287,
+ "step": 2658
+ },
+ {
+ "epoch": 36.93665356050677,
+ "grad_norm": 0.29572054743766785,
+ "learning_rate": 0.0006,
+ "loss": 3.6983718872070312,
+ "step": 2659
+ },
+ {
+ "epoch": 36.95063346439493,
+ "grad_norm": 0.2487923800945282,
+ "learning_rate": 0.0006,
+ "loss": 3.7041163444519043,
+ "step": 2660
+ },
+ {
+ "epoch": 36.964613368283096,
+ "grad_norm": 0.2541966438293457,
+ "learning_rate": 0.0006,
+ "loss": 3.7038979530334473,
+ "step": 2661
+ },
+ {
+ "epoch": 36.97859327217125,
+ "grad_norm": 0.2441335767507553,
+ "learning_rate": 0.0006,
+ "loss": 3.717966079711914,
+ "step": 2662
+ },
+ {
+ "epoch": 36.992573176059416,
+ "grad_norm": 0.2304554283618927,
+ "learning_rate": 0.0006,
+ "loss": 3.671098232269287,
+ "step": 2663
+ },
+ {
+ "epoch": 37.0,
+ "grad_norm": 0.2346591204404831,
+ "learning_rate": 0.0006,
+ "loss": 3.680298089981079,
+ "step": 2664
+ },
+ {
+ "epoch": 37.0,
+ "eval_loss": 3.9944777488708496,
+ "eval_runtime": 43.9862,
+ "eval_samples_per_second": 55.517,
+ "eval_steps_per_second": 3.478,
+ "step": 2664
+ },
+ {
+ "epoch": 37.01397990388816,
+ "grad_norm": 0.22970618307590485,
+ "learning_rate": 0.0006,
+ "loss": 3.6835923194885254,
+ "step": 2665
+ },
+ {
+ "epoch": 37.02795980777632,
+ "grad_norm": 0.25463759899139404,
+ "learning_rate": 0.0006,
+ "loss": 3.658339023590088,
+ "step": 2666
+ },
+ {
+ "epoch": 37.04193971166448,
+ "grad_norm": 0.2520577311515808,
+ "learning_rate": 0.0006,
+ "loss": 3.6275506019592285,
+ "step": 2667
+ },
+ {
+ "epoch": 37.05591961555265,
+ "grad_norm": 0.22698813676834106,
+ "learning_rate": 0.0006,
+ "loss": 3.65043568611145,
+ "step": 2668
+ },
+ {
+ "epoch": 37.0698995194408,
+ "grad_norm": 0.21133972704410553,
+ "learning_rate": 0.0006,
+ "loss": 3.6262078285217285,
+ "step": 2669
+ },
+ {
+ "epoch": 37.083879423328966,
+ "grad_norm": 0.21940460801124573,
+ "learning_rate": 0.0006,
+ "loss": 3.6709489822387695,
+ "step": 2670
+ },
+ {
+ "epoch": 37.09785932721712,
+ "grad_norm": 0.21897517144680023,
+ "learning_rate": 0.0006,
+ "loss": 3.6621508598327637,
+ "step": 2671
+ },
+ {
+ "epoch": 37.111839231105286,
+ "grad_norm": 0.2270219624042511,
+ "learning_rate": 0.0006,
+ "loss": 3.6334924697875977,
+ "step": 2672
+ },
+ {
+ "epoch": 37.12581913499345,
+ "grad_norm": 0.22082042694091797,
+ "learning_rate": 0.0006,
+ "loss": 3.662209987640381,
+ "step": 2673
+ },
+ {
+ "epoch": 37.139799038881605,
+ "grad_norm": 0.19931960105895996,
+ "learning_rate": 0.0006,
+ "loss": 3.6655359268188477,
+ "step": 2674
+ },
+ {
+ "epoch": 37.15377894276977,
+ "grad_norm": 0.21451307833194733,
+ "learning_rate": 0.0006,
+ "loss": 3.656287670135498,
+ "step": 2675
+ },
+ {
+ "epoch": 37.16775884665793,
+ "grad_norm": 0.2131514698266983,
+ "learning_rate": 0.0006,
+ "loss": 3.635054111480713,
+ "step": 2676
+ },
+ {
+ "epoch": 37.18173875054609,
+ "grad_norm": 0.20425808429718018,
+ "learning_rate": 0.0006,
+ "loss": 3.67653226852417,
+ "step": 2677
+ },
+ {
+ "epoch": 37.19571865443425,
+ "grad_norm": 0.19423379004001617,
+ "learning_rate": 0.0006,
+ "loss": 3.6827316284179688,
+ "step": 2678
+ },
+ {
+ "epoch": 37.20969855832241,
+ "grad_norm": 0.1954883486032486,
+ "learning_rate": 0.0006,
+ "loss": 3.658092498779297,
+ "step": 2679
+ },
+ {
+ "epoch": 37.22367846221057,
+ "grad_norm": 0.21153928339481354,
+ "learning_rate": 0.0006,
+ "loss": 3.6675186157226562,
+ "step": 2680
+ },
+ {
+ "epoch": 37.237658366098735,
+ "grad_norm": 0.2032976895570755,
+ "learning_rate": 0.0006,
+ "loss": 3.6725759506225586,
+ "step": 2681
+ },
+ {
+ "epoch": 37.25163826998689,
+ "grad_norm": 0.19839346408843994,
+ "learning_rate": 0.0006,
+ "loss": 3.660851240158081,
+ "step": 2682
+ },
+ {
+ "epoch": 37.265618173875055,
+ "grad_norm": 0.1884699910879135,
+ "learning_rate": 0.0006,
+ "loss": 3.6653623580932617,
+ "step": 2683
+ },
+ {
+ "epoch": 37.27959807776322,
+ "grad_norm": 0.19558705389499664,
+ "learning_rate": 0.0006,
+ "loss": 3.648016929626465,
+ "step": 2684
+ },
+ {
+ "epoch": 37.293577981651374,
+ "grad_norm": 0.19453682005405426,
+ "learning_rate": 0.0006,
+ "loss": 3.6804773807525635,
+ "step": 2685
+ },
+ {
+ "epoch": 37.30755788553954,
+ "grad_norm": 0.1901177167892456,
+ "learning_rate": 0.0006,
+ "loss": 3.6533353328704834,
+ "step": 2686
+ },
+ {
+ "epoch": 37.3215377894277,
+ "grad_norm": 0.19425596296787262,
+ "learning_rate": 0.0006,
+ "loss": 3.665745735168457,
+ "step": 2687
+ },
+ {
+ "epoch": 37.33551769331586,
+ "grad_norm": 0.17583411931991577,
+ "learning_rate": 0.0006,
+ "loss": 3.679112434387207,
+ "step": 2688
+ },
+ {
+ "epoch": 37.34949759720402,
+ "grad_norm": 0.19667863845825195,
+ "learning_rate": 0.0006,
+ "loss": 3.6650352478027344,
+ "step": 2689
+ },
+ {
+ "epoch": 37.36347750109218,
+ "grad_norm": 0.22803270816802979,
+ "learning_rate": 0.0006,
+ "loss": 3.6658573150634766,
+ "step": 2690
+ },
+ {
+ "epoch": 37.37745740498034,
+ "grad_norm": 0.20589298009872437,
+ "learning_rate": 0.0006,
+ "loss": 3.6587300300598145,
+ "step": 2691
+ },
+ {
+ "epoch": 37.391437308868504,
+ "grad_norm": 0.1946951299905777,
+ "learning_rate": 0.0006,
+ "loss": 3.6515092849731445,
+ "step": 2692
+ },
+ {
+ "epoch": 37.40541721275666,
+ "grad_norm": 0.19029614329338074,
+ "learning_rate": 0.0006,
+ "loss": 3.6383113861083984,
+ "step": 2693
+ },
+ {
+ "epoch": 37.419397116644824,
+ "grad_norm": 0.1944548338651657,
+ "learning_rate": 0.0006,
+ "loss": 3.7017135620117188,
+ "step": 2694
+ },
+ {
+ "epoch": 37.43337702053299,
+ "grad_norm": 0.19482386112213135,
+ "learning_rate": 0.0006,
+ "loss": 3.6791775226593018,
+ "step": 2695
+ },
+ {
+ "epoch": 37.44735692442114,
+ "grad_norm": 0.23276680707931519,
+ "learning_rate": 0.0006,
+ "loss": 3.672245979309082,
+ "step": 2696
+ },
+ {
+ "epoch": 37.46133682830931,
+ "grad_norm": 0.22267542779445648,
+ "learning_rate": 0.0006,
+ "loss": 3.683380365371704,
+ "step": 2697
+ },
+ {
+ "epoch": 37.47531673219746,
+ "grad_norm": 0.1942203938961029,
+ "learning_rate": 0.0006,
+ "loss": 3.6760759353637695,
+ "step": 2698
+ },
+ {
+ "epoch": 37.489296636085626,
+ "grad_norm": 0.21212540566921234,
+ "learning_rate": 0.0006,
+ "loss": 3.660719633102417,
+ "step": 2699
+ },
+ {
+ "epoch": 37.50327653997379,
+ "grad_norm": 0.2365427315235138,
+ "learning_rate": 0.0006,
+ "loss": 3.6727194786071777,
+ "step": 2700
+ },
+ {
+ "epoch": 37.517256443861946,
+ "grad_norm": 0.2379675805568695,
+ "learning_rate": 0.0006,
+ "loss": 3.6691598892211914,
+ "step": 2701
+ },
+ {
+ "epoch": 37.53123634775011,
+ "grad_norm": 0.22142401337623596,
+ "learning_rate": 0.0006,
+ "loss": 3.6882128715515137,
+ "step": 2702
+ },
+ {
+ "epoch": 37.54521625163827,
+ "grad_norm": 0.19993607699871063,
+ "learning_rate": 0.0006,
+ "loss": 3.6651787757873535,
+ "step": 2703
+ },
+ {
+ "epoch": 37.55919615552643,
+ "grad_norm": 0.19934895634651184,
+ "learning_rate": 0.0006,
+ "loss": 3.6680638790130615,
+ "step": 2704
+ },
+ {
+ "epoch": 37.57317605941459,
+ "grad_norm": 0.21202369034290314,
+ "learning_rate": 0.0006,
+ "loss": 3.697615623474121,
+ "step": 2705
+ },
+ {
+ "epoch": 37.58715596330275,
+ "grad_norm": 0.1994577795267105,
+ "learning_rate": 0.0006,
+ "loss": 3.688243865966797,
+ "step": 2706
+ },
+ {
+ "epoch": 37.60113586719091,
+ "grad_norm": 0.20365118980407715,
+ "learning_rate": 0.0006,
+ "loss": 3.6615519523620605,
+ "step": 2707
+ },
+ {
+ "epoch": 37.615115771079076,
+ "grad_norm": 0.22466035187244415,
+ "learning_rate": 0.0006,
+ "loss": 3.703111171722412,
+ "step": 2708
+ },
+ {
+ "epoch": 37.62909567496723,
+ "grad_norm": 0.21140407025814056,
+ "learning_rate": 0.0006,
+ "loss": 3.6744728088378906,
+ "step": 2709
+ },
+ {
+ "epoch": 37.643075578855395,
+ "grad_norm": 0.22220195829868317,
+ "learning_rate": 0.0006,
+ "loss": 3.671501874923706,
+ "step": 2710
+ },
+ {
+ "epoch": 37.65705548274356,
+ "grad_norm": 0.23279480636119843,
+ "learning_rate": 0.0006,
+ "loss": 3.6962859630584717,
+ "step": 2711
+ },
+ {
+ "epoch": 37.671035386631715,
+ "grad_norm": 0.23284408450126648,
+ "learning_rate": 0.0006,
+ "loss": 3.670231342315674,
+ "step": 2712
+ },
+ {
+ "epoch": 37.68501529051988,
+ "grad_norm": 0.21935738623142242,
+ "learning_rate": 0.0006,
+ "loss": 3.6908650398254395,
+ "step": 2713
+ },
+ {
+ "epoch": 37.69899519440804,
+ "grad_norm": 0.2072262167930603,
+ "learning_rate": 0.0006,
+ "loss": 3.7204506397247314,
+ "step": 2714
+ },
+ {
+ "epoch": 37.7129750982962,
+ "grad_norm": 0.22547709941864014,
+ "learning_rate": 0.0006,
+ "loss": 3.6740894317626953,
+ "step": 2715
+ },
+ {
+ "epoch": 37.72695500218436,
+ "grad_norm": 0.2460414469242096,
+ "learning_rate": 0.0006,
+ "loss": 3.6938390731811523,
+ "step": 2716
+ },
+ {
+ "epoch": 37.74093490607252,
+ "grad_norm": 0.24756456911563873,
+ "learning_rate": 0.0006,
+ "loss": 3.692173480987549,
+ "step": 2717
+ },
+ {
+ "epoch": 37.75491480996068,
+ "grad_norm": 0.20149244368076324,
+ "learning_rate": 0.0006,
+ "loss": 3.6677675247192383,
+ "step": 2718
+ },
+ {
+ "epoch": 37.768894713848844,
+ "grad_norm": 0.19834814965724945,
+ "learning_rate": 0.0006,
+ "loss": 3.6717336177825928,
+ "step": 2719
+ },
+ {
+ "epoch": 37.782874617737,
+ "grad_norm": 0.22929978370666504,
+ "learning_rate": 0.0006,
+ "loss": 3.6818275451660156,
+ "step": 2720
+ },
+ {
+ "epoch": 37.796854521625164,
+ "grad_norm": 0.23674434423446655,
+ "learning_rate": 0.0006,
+ "loss": 3.689767360687256,
+ "step": 2721
+ },
+ {
+ "epoch": 37.81083442551333,
+ "grad_norm": 0.22798952460289001,
+ "learning_rate": 0.0006,
+ "loss": 3.6928915977478027,
+ "step": 2722
+ },
+ {
+ "epoch": 37.824814329401484,
+ "grad_norm": 0.2270302027463913,
+ "learning_rate": 0.0006,
+ "loss": 3.6884233951568604,
+ "step": 2723
+ },
+ {
+ "epoch": 37.83879423328965,
+ "grad_norm": 0.23563820123672485,
+ "learning_rate": 0.0006,
+ "loss": 3.6962456703186035,
+ "step": 2724
+ },
+ {
+ "epoch": 37.8527741371778,
+ "grad_norm": 0.2240045815706253,
+ "learning_rate": 0.0006,
+ "loss": 3.6985082626342773,
+ "step": 2725
+ },
+ {
+ "epoch": 37.86675404106597,
+ "grad_norm": 0.21541155874729156,
+ "learning_rate": 0.0006,
+ "loss": 3.6960105895996094,
+ "step": 2726
+ },
+ {
+ "epoch": 37.88073394495413,
+ "grad_norm": 0.23257222771644592,
+ "learning_rate": 0.0006,
+ "loss": 3.667404890060425,
+ "step": 2727
+ },
+ {
+ "epoch": 37.89471384884229,
+ "grad_norm": 0.226792573928833,
+ "learning_rate": 0.0006,
+ "loss": 3.6549744606018066,
+ "step": 2728
+ },
+ {
+ "epoch": 37.90869375273045,
+ "grad_norm": 0.18993401527404785,
+ "learning_rate": 0.0006,
+ "loss": 3.6772334575653076,
+ "step": 2729
+ },
+ {
+ "epoch": 37.92267365661861,
+ "grad_norm": 0.20936095714569092,
+ "learning_rate": 0.0006,
+ "loss": 3.671116352081299,
+ "step": 2730
+ },
+ {
+ "epoch": 37.93665356050677,
+ "grad_norm": 0.2203974425792694,
+ "learning_rate": 0.0006,
+ "loss": 3.6549739837646484,
+ "step": 2731
+ },
+ {
+ "epoch": 37.95063346439493,
+ "grad_norm": 0.19504620134830475,
+ "learning_rate": 0.0006,
+ "loss": 3.6755447387695312,
+ "step": 2732
+ },
+ {
+ "epoch": 37.964613368283096,
+ "grad_norm": 0.2025984674692154,
+ "learning_rate": 0.0006,
+ "loss": 3.678955554962158,
+ "step": 2733
+ },
+ {
+ "epoch": 37.97859327217125,
+ "grad_norm": 0.21556107699871063,
+ "learning_rate": 0.0006,
+ "loss": 3.6680502891540527,
+ "step": 2734
+ },
+ {
+ "epoch": 37.992573176059416,
+ "grad_norm": 0.21011291444301605,
+ "learning_rate": 0.0006,
+ "loss": 3.672039031982422,
+ "step": 2735
+ },
+ {
+ "epoch": 38.0,
+ "grad_norm": 0.23710957169532776,
+ "learning_rate": 0.0006,
+ "loss": 3.6326794624328613,
+ "step": 2736
+ },
+ {
+ "epoch": 38.0,
+ "eval_loss": 3.990501880645752,
+ "eval_runtime": 43.8951,
+ "eval_samples_per_second": 55.633,
+ "eval_steps_per_second": 3.486,
+ "step": 2736
+ },
+ {
+ "epoch": 38.01397990388816,
+ "grad_norm": 0.20711326599121094,
+ "learning_rate": 0.0006,
+ "loss": 3.6364657878875732,
+ "step": 2737
+ },
+ {
+ "epoch": 38.02795980777632,
+ "grad_norm": 0.2250880002975464,
+ "learning_rate": 0.0006,
+ "loss": 3.637646436691284,
+ "step": 2738
+ },
+ {
+ "epoch": 38.04193971166448,
+ "grad_norm": 0.2448352724313736,
+ "learning_rate": 0.0006,
+ "loss": 3.63557767868042,
+ "step": 2739
+ },
+ {
+ "epoch": 38.05591961555265,
+ "grad_norm": 0.23031368851661682,
+ "learning_rate": 0.0006,
+ "loss": 3.627117395401001,
+ "step": 2740
+ },
+ {
+ "epoch": 38.0698995194408,
+ "grad_norm": 0.2045450210571289,
+ "learning_rate": 0.0006,
+ "loss": 3.6594958305358887,
+ "step": 2741
+ },
+ {
+ "epoch": 38.083879423328966,
+ "grad_norm": 0.21253496408462524,
+ "learning_rate": 0.0006,
+ "loss": 3.65494441986084,
+ "step": 2742
+ },
+ {
+ "epoch": 38.09785932721712,
+ "grad_norm": 0.20196112990379333,
+ "learning_rate": 0.0006,
+ "loss": 3.645289421081543,
+ "step": 2743
+ },
+ {
+ "epoch": 38.111839231105286,
+ "grad_norm": 0.20258229970932007,
+ "learning_rate": 0.0006,
+ "loss": 3.6698505878448486,
+ "step": 2744
+ },
+ {
+ "epoch": 38.12581913499345,
+ "grad_norm": 0.22182606160640717,
+ "learning_rate": 0.0006,
+ "loss": 3.6427698135375977,
+ "step": 2745
+ },
+ {
+ "epoch": 38.139799038881605,
+ "grad_norm": 0.21281519532203674,
+ "learning_rate": 0.0006,
+ "loss": 3.668337345123291,
+ "step": 2746
+ },
+ {
+ "epoch": 38.15377894276977,
+ "grad_norm": 0.21680216491222382,
+ "learning_rate": 0.0006,
+ "loss": 3.6362109184265137,
+ "step": 2747
+ },
+ {
+ "epoch": 38.16775884665793,
+ "grad_norm": 0.24396903812885284,
+ "learning_rate": 0.0006,
+ "loss": 3.660510540008545,
+ "step": 2748
+ },
+ {
+ "epoch": 38.18173875054609,
+ "grad_norm": 0.2546434700489044,
+ "learning_rate": 0.0006,
+ "loss": 3.6562418937683105,
+ "step": 2749
+ },
+ {
+ "epoch": 38.19571865443425,
+ "grad_norm": 0.22705447673797607,
+ "learning_rate": 0.0006,
+ "loss": 3.6801514625549316,
+ "step": 2750
+ },
+ {
+ "epoch": 38.20969855832241,
+ "grad_norm": 0.21516330540180206,
+ "learning_rate": 0.0006,
+ "loss": 3.6633429527282715,
+ "step": 2751
+ },
+ {
+ "epoch": 38.22367846221057,
+ "grad_norm": 0.20895853638648987,
+ "learning_rate": 0.0006,
+ "loss": 3.619896411895752,
+ "step": 2752
+ },
+ {
+ "epoch": 38.237658366098735,
+ "grad_norm": 0.21183325350284576,
+ "learning_rate": 0.0006,
+ "loss": 3.639491558074951,
+ "step": 2753
+ },
+ {
+ "epoch": 38.25163826998689,
+ "grad_norm": 0.21439522504806519,
+ "learning_rate": 0.0006,
+ "loss": 3.671931028366089,
+ "step": 2754
+ },
+ {
+ "epoch": 38.265618173875055,
+ "grad_norm": 0.2017785906791687,
+ "learning_rate": 0.0006,
+ "loss": 3.639533519744873,
+ "step": 2755
+ },
+ {
+ "epoch": 38.27959807776322,
+ "grad_norm": 0.20015068352222443,
+ "learning_rate": 0.0006,
+ "loss": 3.654262065887451,
+ "step": 2756
+ },
+ {
+ "epoch": 38.293577981651374,
+ "grad_norm": 0.21518948674201965,
+ "learning_rate": 0.0006,
+ "loss": 3.649919033050537,
+ "step": 2757
+ },
+ {
+ "epoch": 38.30755788553954,
+ "grad_norm": 0.21994580328464508,
+ "learning_rate": 0.0006,
+ "loss": 3.6756131649017334,
+ "step": 2758
+ },
+ {
+ "epoch": 38.3215377894277,
+ "grad_norm": 0.2053978443145752,
+ "learning_rate": 0.0006,
+ "loss": 3.651520252227783,
+ "step": 2759
+ },
+ {
+ "epoch": 38.33551769331586,
+ "grad_norm": 0.2066337615251541,
+ "learning_rate": 0.0006,
+ "loss": 3.6404507160186768,
+ "step": 2760
+ },
+ {
+ "epoch": 38.34949759720402,
+ "grad_norm": 0.20898301899433136,
+ "learning_rate": 0.0006,
+ "loss": 3.637200355529785,
+ "step": 2761
+ },
+ {
+ "epoch": 38.36347750109218,
+ "grad_norm": 0.19212259352207184,
+ "learning_rate": 0.0006,
+ "loss": 3.68394136428833,
+ "step": 2762
+ },
+ {
+ "epoch": 38.37745740498034,
+ "grad_norm": 0.2011883556842804,
+ "learning_rate": 0.0006,
+ "loss": 3.6494975090026855,
+ "step": 2763
+ },
+ {
+ "epoch": 38.391437308868504,
+ "grad_norm": 0.23072998225688934,
+ "learning_rate": 0.0006,
+ "loss": 3.6644320487976074,
+ "step": 2764
+ },
+ {
+ "epoch": 38.40541721275666,
+ "grad_norm": 0.2195347547531128,
+ "learning_rate": 0.0006,
+ "loss": 3.6666269302368164,
+ "step": 2765
+ },
+ {
+ "epoch": 38.419397116644824,
+ "grad_norm": 0.19820117950439453,
+ "learning_rate": 0.0006,
+ "loss": 3.690683364868164,
+ "step": 2766
+ },
+ {
+ "epoch": 38.43337702053299,
+ "grad_norm": 0.20381149649620056,
+ "learning_rate": 0.0006,
+ "loss": 3.6647756099700928,
+ "step": 2767
+ },
+ {
+ "epoch": 38.44735692442114,
+ "grad_norm": 0.19477297365665436,
+ "learning_rate": 0.0006,
+ "loss": 3.6419155597686768,
+ "step": 2768
+ },
+ {
+ "epoch": 38.46133682830931,
+ "grad_norm": 0.20118845999240875,
+ "learning_rate": 0.0006,
+ "loss": 3.678511142730713,
+ "step": 2769
+ },
+ {
+ "epoch": 38.47531673219746,
+ "grad_norm": 0.19538167119026184,
+ "learning_rate": 0.0006,
+ "loss": 3.632112503051758,
+ "step": 2770
+ },
+ {
+ "epoch": 38.489296636085626,
+ "grad_norm": 0.18136411905288696,
+ "learning_rate": 0.0006,
+ "loss": 3.6631078720092773,
+ "step": 2771
+ },
+ {
+ "epoch": 38.50327653997379,
+ "grad_norm": 0.1993526667356491,
+ "learning_rate": 0.0006,
+ "loss": 3.6800379753112793,
+ "step": 2772
+ },
+ {
+ "epoch": 38.517256443861946,
+ "grad_norm": 0.21409109234809875,
+ "learning_rate": 0.0006,
+ "loss": 3.6355738639831543,
+ "step": 2773
+ },
+ {
+ "epoch": 38.53123634775011,
+ "grad_norm": 0.20932911336421967,
+ "learning_rate": 0.0006,
+ "loss": 3.6639811992645264,
+ "step": 2774
+ },
+ {
+ "epoch": 38.54521625163827,
+ "grad_norm": 0.22266243398189545,
+ "learning_rate": 0.0006,
+ "loss": 3.6927733421325684,
+ "step": 2775
+ },
+ {
+ "epoch": 38.55919615552643,
+ "grad_norm": 0.22916539013385773,
+ "learning_rate": 0.0006,
+ "loss": 3.6381587982177734,
+ "step": 2776
+ },
+ {
+ "epoch": 38.57317605941459,
+ "grad_norm": 0.21507245302200317,
+ "learning_rate": 0.0006,
+ "loss": 3.6724753379821777,
+ "step": 2777
+ },
+ {
+ "epoch": 38.58715596330275,
+ "grad_norm": 0.21132487058639526,
+ "learning_rate": 0.0006,
+ "loss": 3.68450927734375,
+ "step": 2778
+ },
+ {
+ "epoch": 38.60113586719091,
+ "grad_norm": 0.2323923259973526,
+ "learning_rate": 0.0006,
+ "loss": 3.6917476654052734,
+ "step": 2779
+ },
+ {
+ "epoch": 38.615115771079076,
+ "grad_norm": 0.2862907648086548,
+ "learning_rate": 0.0006,
+ "loss": 3.6832518577575684,
+ "step": 2780
+ },
+ {
+ "epoch": 38.62909567496723,
+ "grad_norm": 0.28132742643356323,
+ "learning_rate": 0.0006,
+ "loss": 3.6619668006896973,
+ "step": 2781
+ },
+ {
+ "epoch": 38.643075578855395,
+ "grad_norm": 0.24933350086212158,
+ "learning_rate": 0.0006,
+ "loss": 3.6342711448669434,
+ "step": 2782
+ },
+ {
+ "epoch": 38.65705548274356,
+ "grad_norm": 0.23482646048069,
+ "learning_rate": 0.0006,
+ "loss": 3.667548656463623,
+ "step": 2783
+ },
+ {
+ "epoch": 38.671035386631715,
+ "grad_norm": 0.2529793083667755,
+ "learning_rate": 0.0006,
+ "loss": 3.6613709926605225,
+ "step": 2784
+ },
+ {
+ "epoch": 38.68501529051988,
+ "grad_norm": 0.2306097447872162,
+ "learning_rate": 0.0006,
+ "loss": 3.653153419494629,
+ "step": 2785
+ },
+ {
+ "epoch": 38.69899519440804,
+ "grad_norm": 0.21787869930267334,
+ "learning_rate": 0.0006,
+ "loss": 3.6991848945617676,
+ "step": 2786
+ },
+ {
+ "epoch": 38.7129750982962,
+ "grad_norm": 0.24818190932273865,
+ "learning_rate": 0.0006,
+ "loss": 3.664022445678711,
+ "step": 2787
+ },
+ {
+ "epoch": 38.72695500218436,
+ "grad_norm": 0.23205995559692383,
+ "learning_rate": 0.0006,
+ "loss": 3.656064987182617,
+ "step": 2788
+ },
+ {
+ "epoch": 38.74093490607252,
+ "grad_norm": 0.2268102467060089,
+ "learning_rate": 0.0006,
+ "loss": 3.678421974182129,
+ "step": 2789
+ },
+ {
+ "epoch": 38.75491480996068,
+ "grad_norm": 0.22549907863140106,
+ "learning_rate": 0.0006,
+ "loss": 3.6483302116394043,
+ "step": 2790
+ },
+ {
+ "epoch": 38.768894713848844,
+ "grad_norm": 0.2293119877576828,
+ "learning_rate": 0.0006,
+ "loss": 3.646825075149536,
+ "step": 2791
+ },
+ {
+ "epoch": 38.782874617737,
+ "grad_norm": 0.21879418194293976,
+ "learning_rate": 0.0006,
+ "loss": 3.682124614715576,
+ "step": 2792
+ },
+ {
+ "epoch": 38.796854521625164,
+ "grad_norm": 0.22012849152088165,
+ "learning_rate": 0.0006,
+ "loss": 3.6590089797973633,
+ "step": 2793
+ },
+ {
+ "epoch": 38.81083442551333,
+ "grad_norm": 0.2449142336845398,
+ "learning_rate": 0.0006,
+ "loss": 3.7053747177124023,
+ "step": 2794
+ },
+ {
+ "epoch": 38.824814329401484,
+ "grad_norm": 0.2677161395549774,
+ "learning_rate": 0.0006,
+ "loss": 3.666144371032715,
+ "step": 2795
+ },
+ {
+ "epoch": 38.83879423328965,
+ "grad_norm": 0.2654981315135956,
+ "learning_rate": 0.0006,
+ "loss": 3.637512683868408,
+ "step": 2796
+ },
+ {
+ "epoch": 38.8527741371778,
+ "grad_norm": 0.23169654607772827,
+ "learning_rate": 0.0006,
+ "loss": 3.6885948181152344,
+ "step": 2797
+ },
+ {
+ "epoch": 38.86675404106597,
+ "grad_norm": 0.22195108234882355,
+ "learning_rate": 0.0006,
+ "loss": 3.6597604751586914,
+ "step": 2798
+ },
+ {
+ "epoch": 38.88073394495413,
+ "grad_norm": 0.23703525960445404,
+ "learning_rate": 0.0006,
+ "loss": 3.6808712482452393,
+ "step": 2799
+ },
+ {
+ "epoch": 38.89471384884229,
+ "grad_norm": 0.24711088836193085,
+ "learning_rate": 0.0006,
+ "loss": 3.733792781829834,
+ "step": 2800
+ },
+ {
+ "epoch": 38.90869375273045,
+ "grad_norm": 0.216362863779068,
+ "learning_rate": 0.0006,
+ "loss": 3.670599937438965,
+ "step": 2801
+ },
+ {
+ "epoch": 38.92267365661861,
+ "grad_norm": 0.19483810663223267,
+ "learning_rate": 0.0006,
+ "loss": 3.6965198516845703,
+ "step": 2802
+ },
+ {
+ "epoch": 38.93665356050677,
+ "grad_norm": 0.1941208392381668,
+ "learning_rate": 0.0006,
+ "loss": 3.678022861480713,
+ "step": 2803
+ },
+ {
+ "epoch": 38.95063346439493,
+ "grad_norm": 0.1919465959072113,
+ "learning_rate": 0.0006,
+ "loss": 3.6763226985931396,
+ "step": 2804
+ },
+ {
+ "epoch": 38.964613368283096,
+ "grad_norm": 0.2003280073404312,
+ "learning_rate": 0.0006,
+ "loss": 3.670313835144043,
+ "step": 2805
+ },
+ {
+ "epoch": 38.97859327217125,
+ "grad_norm": 0.198478564620018,
+ "learning_rate": 0.0006,
+ "loss": 3.675569772720337,
+ "step": 2806
+ },
+ {
+ "epoch": 38.992573176059416,
+ "grad_norm": 0.23692303895950317,
+ "learning_rate": 0.0006,
+ "loss": 3.696561336517334,
+ "step": 2807
+ },
+ {
+ "epoch": 39.0,
+ "grad_norm": 0.3208145797252655,
+ "learning_rate": 0.0006,
+ "loss": 3.6791436672210693,
+ "step": 2808
+ },
+ {
+ "epoch": 39.0,
+ "eval_loss": 4.0079450607299805,
+ "eval_runtime": 43.8573,
+ "eval_samples_per_second": 55.681,
+ "eval_steps_per_second": 3.489,
+ "step": 2808
+ },
+ {
+ "epoch": 39.01397990388816,
+ "grad_norm": 0.28338733315467834,
+ "learning_rate": 0.0006,
+ "loss": 3.6277060508728027,
+ "step": 2809
+ },
+ {
+ "epoch": 39.02795980777632,
+ "grad_norm": 0.22057899832725525,
+ "learning_rate": 0.0006,
+ "loss": 3.6132822036743164,
+ "step": 2810
+ },
+ {
+ "epoch": 39.04193971166448,
+ "grad_norm": 0.20630282163619995,
+ "learning_rate": 0.0006,
+ "loss": 3.6143927574157715,
+ "step": 2811
+ },
+ {
+ "epoch": 39.05591961555265,
+ "grad_norm": 0.2178523689508438,
+ "learning_rate": 0.0006,
+ "loss": 3.6304664611816406,
+ "step": 2812
+ },
+ {
+ "epoch": 39.0698995194408,
+ "grad_norm": 0.19613824784755707,
+ "learning_rate": 0.0006,
+ "loss": 3.6137919425964355,
+ "step": 2813
+ },
+ {
+ "epoch": 39.083879423328966,
+ "grad_norm": 0.2047276794910431,
+ "learning_rate": 0.0006,
+ "loss": 3.6854846477508545,
+ "step": 2814
+ },
+ {
+ "epoch": 39.09785932721712,
+ "grad_norm": 0.20082715153694153,
+ "learning_rate": 0.0006,
+ "loss": 3.632091522216797,
+ "step": 2815
+ },
+ {
+ "epoch": 39.111839231105286,
+ "grad_norm": 0.21746563911437988,
+ "learning_rate": 0.0006,
+ "loss": 3.640477180480957,
+ "step": 2816
+ },
+ {
+ "epoch": 39.12581913499345,
+ "grad_norm": 0.2128882110118866,
+ "learning_rate": 0.0006,
+ "loss": 3.643984317779541,
+ "step": 2817
+ },
+ {
+ "epoch": 39.139799038881605,
+ "grad_norm": 0.2110479772090912,
+ "learning_rate": 0.0006,
+ "loss": 3.6328823566436768,
+ "step": 2818
+ },
+ {
+ "epoch": 39.15377894276977,
+ "grad_norm": 0.22304436564445496,
+ "learning_rate": 0.0006,
+ "loss": 3.6669845581054688,
+ "step": 2819
+ },
+ {
+ "epoch": 39.16775884665793,
+ "grad_norm": 0.22310666739940643,
+ "learning_rate": 0.0006,
+ "loss": 3.609743595123291,
+ "step": 2820
+ },
+ {
+ "epoch": 39.18173875054609,
+ "grad_norm": 0.21002045273780823,
+ "learning_rate": 0.0006,
+ "loss": 3.601900815963745,
+ "step": 2821
+ },
+ {
+ "epoch": 39.19571865443425,
+ "grad_norm": 0.20531952381134033,
+ "learning_rate": 0.0006,
+ "loss": 3.6405060291290283,
+ "step": 2822
+ },
+ {
+ "epoch": 39.20969855832241,
+ "grad_norm": 0.20646385848522186,
+ "learning_rate": 0.0006,
+ "loss": 3.669617176055908,
+ "step": 2823
+ },
+ {
+ "epoch": 39.22367846221057,
+ "grad_norm": 0.2553980350494385,
+ "learning_rate": 0.0006,
+ "loss": 3.642709255218506,
+ "step": 2824
+ },
+ {
+ "epoch": 39.237658366098735,
+ "grad_norm": 0.2753220498561859,
+ "learning_rate": 0.0006,
+ "loss": 3.668405055999756,
+ "step": 2825
+ },
+ {
+ "epoch": 39.25163826998689,
+ "grad_norm": 0.2425055354833603,
+ "learning_rate": 0.0006,
+ "loss": 3.659559726715088,
+ "step": 2826
+ },
+ {
+ "epoch": 39.265618173875055,
+ "grad_norm": 0.2199426293373108,
+ "learning_rate": 0.0006,
+ "loss": 3.6466197967529297,
+ "step": 2827
+ },
+ {
+ "epoch": 39.27959807776322,
+ "grad_norm": 0.221355602145195,
+ "learning_rate": 0.0006,
+ "loss": 3.639418125152588,
+ "step": 2828
+ },
+ {
+ "epoch": 39.293577981651374,
+ "grad_norm": 0.20777100324630737,
+ "learning_rate": 0.0006,
+ "loss": 3.68102765083313,
+ "step": 2829
+ },
+ {
+ "epoch": 39.30755788553954,
+ "grad_norm": 0.20557557046413422,
+ "learning_rate": 0.0006,
+ "loss": 3.663064956665039,
+ "step": 2830
+ },
+ {
+ "epoch": 39.3215377894277,
+ "grad_norm": 0.2385585904121399,
+ "learning_rate": 0.0006,
+ "loss": 3.6598849296569824,
+ "step": 2831
+ },
+ {
+ "epoch": 39.33551769331586,
+ "grad_norm": 0.25222650170326233,
+ "learning_rate": 0.0006,
+ "loss": 3.635199546813965,
+ "step": 2832
+ },
+ {
+ "epoch": 39.34949759720402,
+ "grad_norm": 0.22894687950611115,
+ "learning_rate": 0.0006,
+ "loss": 3.6100258827209473,
+ "step": 2833
+ },
+ {
+ "epoch": 39.36347750109218,
+ "grad_norm": 0.22945865988731384,
+ "learning_rate": 0.0006,
+ "loss": 3.63069748878479,
+ "step": 2834
+ },
+ {
+ "epoch": 39.37745740498034,
+ "grad_norm": 0.2466309368610382,
+ "learning_rate": 0.0006,
+ "loss": 3.6615123748779297,
+ "step": 2835
+ },
+ {
+ "epoch": 39.391437308868504,
+ "grad_norm": 0.23845571279525757,
+ "learning_rate": 0.0006,
+ "loss": 3.655045509338379,
+ "step": 2836
+ },
+ {
+ "epoch": 39.40541721275666,
+ "grad_norm": 0.20273560285568237,
+ "learning_rate": 0.0006,
+ "loss": 3.6497647762298584,
+ "step": 2837
+ },
+ {
+ "epoch": 39.419397116644824,
+ "grad_norm": 0.19820313155651093,
+ "learning_rate": 0.0006,
+ "loss": 3.6728386878967285,
+ "step": 2838
+ },
+ {
+ "epoch": 39.43337702053299,
+ "grad_norm": 0.21581435203552246,
+ "learning_rate": 0.0006,
+ "loss": 3.660247325897217,
+ "step": 2839
+ },
+ {
+ "epoch": 39.44735692442114,
+ "grad_norm": 0.20559731125831604,
+ "learning_rate": 0.0006,
+ "loss": 3.6244559288024902,
+ "step": 2840
+ },
+ {
+ "epoch": 39.46133682830931,
+ "grad_norm": 0.22041910886764526,
+ "learning_rate": 0.0006,
+ "loss": 3.6577587127685547,
+ "step": 2841
+ },
+ {
+ "epoch": 39.47531673219746,
+ "grad_norm": 0.1966651976108551,
+ "learning_rate": 0.0006,
+ "loss": 3.673975944519043,
+ "step": 2842
+ },
+ {
+ "epoch": 39.489296636085626,
+ "grad_norm": 0.19127163290977478,
+ "learning_rate": 0.0006,
+ "loss": 3.7022414207458496,
+ "step": 2843
+ },
+ {
+ "epoch": 39.50327653997379,
+ "grad_norm": 0.20260316133499146,
+ "learning_rate": 0.0006,
+ "loss": 3.6155128479003906,
+ "step": 2844
+ },
+ {
+ "epoch": 39.517256443861946,
+ "grad_norm": 0.2302546352148056,
+ "learning_rate": 0.0006,
+ "loss": 3.670212984085083,
+ "step": 2845
+ },
+ {
+ "epoch": 39.53123634775011,
+ "grad_norm": 0.2512998878955841,
+ "learning_rate": 0.0006,
+ "loss": 3.6257572174072266,
+ "step": 2846
+ },
+ {
+ "epoch": 39.54521625163827,
+ "grad_norm": 0.24780063331127167,
+ "learning_rate": 0.0006,
+ "loss": 3.6458964347839355,
+ "step": 2847
+ },
+ {
+ "epoch": 39.55919615552643,
+ "grad_norm": 0.21305061876773834,
+ "learning_rate": 0.0006,
+ "loss": 3.666834831237793,
+ "step": 2848
+ },
+ {
+ "epoch": 39.57317605941459,
+ "grad_norm": 0.20699542760849,
+ "learning_rate": 0.0006,
+ "loss": 3.660571813583374,
+ "step": 2849
+ },
+ {
+ "epoch": 39.58715596330275,
+ "grad_norm": 0.20799173414707184,
+ "learning_rate": 0.0006,
+ "loss": 3.649744987487793,
+ "step": 2850
+ },
+ {
+ "epoch": 39.60113586719091,
+ "grad_norm": 0.20118695497512817,
+ "learning_rate": 0.0006,
+ "loss": 3.663865089416504,
+ "step": 2851
+ },
+ {
+ "epoch": 39.615115771079076,
+ "grad_norm": 0.2019277960062027,
+ "learning_rate": 0.0006,
+ "loss": 3.6600584983825684,
+ "step": 2852
+ },
+ {
+ "epoch": 39.62909567496723,
+ "grad_norm": 0.2093067765235901,
+ "learning_rate": 0.0006,
+ "loss": 3.6926870346069336,
+ "step": 2853
+ },
+ {
+ "epoch": 39.643075578855395,
+ "grad_norm": 0.2280927449464798,
+ "learning_rate": 0.0006,
+ "loss": 3.677157402038574,
+ "step": 2854
+ },
+ {
+ "epoch": 39.65705548274356,
+ "grad_norm": 0.219201922416687,
+ "learning_rate": 0.0006,
+ "loss": 3.6763858795166016,
+ "step": 2855
+ },
+ {
+ "epoch": 39.671035386631715,
+ "grad_norm": 0.2132134735584259,
+ "learning_rate": 0.0006,
+ "loss": 3.6853187084198,
+ "step": 2856
+ },
+ {
+ "epoch": 39.68501529051988,
+ "grad_norm": 0.1979551613330841,
+ "learning_rate": 0.0006,
+ "loss": 3.633850574493408,
+ "step": 2857
+ },
+ {
+ "epoch": 39.69899519440804,
+ "grad_norm": 0.2181098908185959,
+ "learning_rate": 0.0006,
+ "loss": 3.671356201171875,
+ "step": 2858
+ },
+ {
+ "epoch": 39.7129750982962,
+ "grad_norm": 0.21820145845413208,
+ "learning_rate": 0.0006,
+ "loss": 3.640101432800293,
+ "step": 2859
+ },
+ {
+ "epoch": 39.72695500218436,
+ "grad_norm": 0.22734931111335754,
+ "learning_rate": 0.0006,
+ "loss": 3.6326088905334473,
+ "step": 2860
+ },
+ {
+ "epoch": 39.74093490607252,
+ "grad_norm": 0.2407236248254776,
+ "learning_rate": 0.0006,
+ "loss": 3.665416955947876,
+ "step": 2861
+ },
+ {
+ "epoch": 39.75491480996068,
+ "grad_norm": 0.2507246434688568,
+ "learning_rate": 0.0006,
+ "loss": 3.6996266841888428,
+ "step": 2862
+ },
+ {
+ "epoch": 39.768894713848844,
+ "grad_norm": 0.2273668497800827,
+ "learning_rate": 0.0006,
+ "loss": 3.6786417961120605,
+ "step": 2863
+ },
+ {
+ "epoch": 39.782874617737,
+ "grad_norm": 0.20584821701049805,
+ "learning_rate": 0.0006,
+ "loss": 3.6539974212646484,
+ "step": 2864
+ },
+ {
+ "epoch": 39.796854521625164,
+ "grad_norm": 0.2327643632888794,
+ "learning_rate": 0.0006,
+ "loss": 3.681267738342285,
+ "step": 2865
+ },
+ {
+ "epoch": 39.81083442551333,
+ "grad_norm": 0.24243171513080597,
+ "learning_rate": 0.0006,
+ "loss": 3.6814589500427246,
+ "step": 2866
+ },
+ {
+ "epoch": 39.824814329401484,
+ "grad_norm": 0.21462969481945038,
+ "learning_rate": 0.0006,
+ "loss": 3.681321620941162,
+ "step": 2867
+ },
+ {
+ "epoch": 39.83879423328965,
+ "grad_norm": 0.20973211526870728,
+ "learning_rate": 0.0006,
+ "loss": 3.636986017227173,
+ "step": 2868
+ },
+ {
+ "epoch": 39.8527741371778,
+ "grad_norm": 0.20357508957386017,
+ "learning_rate": 0.0006,
+ "loss": 3.6664552688598633,
+ "step": 2869
+ },
+ {
+ "epoch": 39.86675404106597,
+ "grad_norm": 0.20389088988304138,
+ "learning_rate": 0.0006,
+ "loss": 3.6685709953308105,
+ "step": 2870
+ },
+ {
+ "epoch": 39.88073394495413,
+ "grad_norm": 0.21024158596992493,
+ "learning_rate": 0.0006,
+ "loss": 3.650658130645752,
+ "step": 2871
+ },
+ {
+ "epoch": 39.89471384884229,
+ "grad_norm": 0.19477778673171997,
+ "learning_rate": 0.0006,
+ "loss": 3.664834976196289,
+ "step": 2872
+ },
+ {
+ "epoch": 39.90869375273045,
+ "grad_norm": 0.22345365583896637,
+ "learning_rate": 0.0006,
+ "loss": 3.6652634143829346,
+ "step": 2873
+ },
+ {
+ "epoch": 39.92267365661861,
+ "grad_norm": 0.206041157245636,
+ "learning_rate": 0.0006,
+ "loss": 3.6649513244628906,
+ "step": 2874
+ },
+ {
+ "epoch": 39.93665356050677,
+ "grad_norm": 0.18524570763111115,
+ "learning_rate": 0.0006,
+ "loss": 3.665579080581665,
+ "step": 2875
+ },
+ {
+ "epoch": 39.95063346439493,
+ "grad_norm": 0.17730890214443207,
+ "learning_rate": 0.0006,
+ "loss": 3.6372880935668945,
+ "step": 2876
+ },
+ {
+ "epoch": 39.964613368283096,
+ "grad_norm": 0.213678777217865,
+ "learning_rate": 0.0006,
+ "loss": 3.681305408477783,
+ "step": 2877
+ },
+ {
+ "epoch": 39.97859327217125,
+ "grad_norm": 0.2595686614513397,
+ "learning_rate": 0.0006,
+ "loss": 3.6660351753234863,
+ "step": 2878
+ },
+ {
+ "epoch": 39.992573176059416,
+ "grad_norm": 0.22678600251674652,
+ "learning_rate": 0.0006,
+ "loss": 3.681619644165039,
+ "step": 2879
+ },
+ {
+ "epoch": 40.0,
+ "grad_norm": 0.2294030636548996,
+ "learning_rate": 0.0006,
+ "loss": 3.654366970062256,
+ "step": 2880
+ },
+ {
+ "epoch": 40.0,
+ "eval_loss": 3.9810431003570557,
+ "eval_runtime": 43.832,
+ "eval_samples_per_second": 55.713,
+ "eval_steps_per_second": 3.491,
+ "step": 2880
+ },
+ {
+ "epoch": 40.01397990388816,
+ "grad_norm": 0.220590278506279,
+ "learning_rate": 0.0006,
+ "loss": 3.6346259117126465,
+ "step": 2881
+ },
+ {
+ "epoch": 40.02795980777632,
+ "grad_norm": 0.2568257749080658,
+ "learning_rate": 0.0006,
+ "loss": 3.64436674118042,
+ "step": 2882
+ },
+ {
+ "epoch": 40.04193971166448,
+ "grad_norm": 0.2869258224964142,
+ "learning_rate": 0.0006,
+ "loss": 3.613316059112549,
+ "step": 2883
+ },
+ {
+ "epoch": 40.05591961555265,
+ "grad_norm": 0.3005172908306122,
+ "learning_rate": 0.0006,
+ "loss": 3.607339859008789,
+ "step": 2884
+ },
+ {
+ "epoch": 40.0698995194408,
+ "grad_norm": 0.28642305731773376,
+ "learning_rate": 0.0006,
+ "loss": 3.65151047706604,
+ "step": 2885
+ },
+ {
+ "epoch": 40.083879423328966,
+ "grad_norm": 0.24176034331321716,
+ "learning_rate": 0.0006,
+ "loss": 3.633742332458496,
+ "step": 2886
+ },
+ {
+ "epoch": 40.09785932721712,
+ "grad_norm": 0.2139386385679245,
+ "learning_rate": 0.0006,
+ "loss": 3.614245653152466,
+ "step": 2887
+ },
+ {
+ "epoch": 40.111839231105286,
+ "grad_norm": 0.28025752305984497,
+ "learning_rate": 0.0006,
+ "loss": 3.6415746212005615,
+ "step": 2888
+ },
+ {
+ "epoch": 40.12581913499345,
+ "grad_norm": 0.28534311056137085,
+ "learning_rate": 0.0006,
+ "loss": 3.6302027702331543,
+ "step": 2889
+ },
+ {
+ "epoch": 40.139799038881605,
+ "grad_norm": 0.26842808723449707,
+ "learning_rate": 0.0006,
+ "loss": 3.657480239868164,
+ "step": 2890
+ },
+ {
+ "epoch": 40.15377894276977,
+ "grad_norm": 0.25235965847969055,
+ "learning_rate": 0.0006,
+ "loss": 3.6843931674957275,
+ "step": 2891
+ },
+ {
+ "epoch": 40.16775884665793,
+ "grad_norm": 0.22192128002643585,
+ "learning_rate": 0.0006,
+ "loss": 3.6374592781066895,
+ "step": 2892
+ },
+ {
+ "epoch": 40.18173875054609,
+ "grad_norm": 0.21524523198604584,
+ "learning_rate": 0.0006,
+ "loss": 3.6052589416503906,
+ "step": 2893
+ },
+ {
+ "epoch": 40.19571865443425,
+ "grad_norm": 0.21011514961719513,
+ "learning_rate": 0.0006,
+ "loss": 3.62197208404541,
+ "step": 2894
+ },
+ {
+ "epoch": 40.20969855832241,
+ "grad_norm": 0.23187001049518585,
+ "learning_rate": 0.0006,
+ "loss": 3.6505377292633057,
+ "step": 2895
+ },
+ {
+ "epoch": 40.22367846221057,
+ "grad_norm": 0.21962887048721313,
+ "learning_rate": 0.0006,
+ "loss": 3.594991683959961,
+ "step": 2896
+ },
+ {
+ "epoch": 40.237658366098735,
+ "grad_norm": 0.23299361765384674,
+ "learning_rate": 0.0006,
+ "loss": 3.6370339393615723,
+ "step": 2897
+ },
+ {
+ "epoch": 40.25163826998689,
+ "grad_norm": 0.22504881024360657,
+ "learning_rate": 0.0006,
+ "loss": 3.6173815727233887,
+ "step": 2898
+ },
+ {
+ "epoch": 40.265618173875055,
+ "grad_norm": 0.21678344905376434,
+ "learning_rate": 0.0006,
+ "loss": 3.6231422424316406,
+ "step": 2899
+ },
+ {
+ "epoch": 40.27959807776322,
+ "grad_norm": 0.2184615284204483,
+ "learning_rate": 0.0006,
+ "loss": 3.6552987098693848,
+ "step": 2900
+ },
+ {
+ "epoch": 40.293577981651374,
+ "grad_norm": 0.2145485281944275,
+ "learning_rate": 0.0006,
+ "loss": 3.628025531768799,
+ "step": 2901
+ },
+ {
+ "epoch": 40.30755788553954,
+ "grad_norm": 0.21119336783885956,
+ "learning_rate": 0.0006,
+ "loss": 3.6511590480804443,
+ "step": 2902
+ },
+ {
+ "epoch": 40.3215377894277,
+ "grad_norm": 0.2158869504928589,
+ "learning_rate": 0.0006,
+ "loss": 3.6302051544189453,
+ "step": 2903
+ },
+ {
+ "epoch": 40.33551769331586,
+ "grad_norm": 0.22736455500125885,
+ "learning_rate": 0.0006,
+ "loss": 3.6678733825683594,
+ "step": 2904
+ },
+ {
+ "epoch": 40.34949759720402,
+ "grad_norm": 0.22723783552646637,
+ "learning_rate": 0.0006,
+ "loss": 3.632068634033203,
+ "step": 2905
+ },
+ {
+ "epoch": 40.36347750109218,
+ "grad_norm": 0.20606189966201782,
+ "learning_rate": 0.0006,
+ "loss": 3.6534624099731445,
+ "step": 2906
+ },
+ {
+ "epoch": 40.37745740498034,
+ "grad_norm": 0.21033786237239838,
+ "learning_rate": 0.0006,
+ "loss": 3.6194064617156982,
+ "step": 2907
+ },
+ {
+ "epoch": 40.391437308868504,
+ "grad_norm": 0.2175762951374054,
+ "learning_rate": 0.0006,
+ "loss": 3.637385368347168,
+ "step": 2908
+ },
+ {
+ "epoch": 40.40541721275666,
+ "grad_norm": 0.21063381433486938,
+ "learning_rate": 0.0006,
+ "loss": 3.656857967376709,
+ "step": 2909
+ },
+ {
+ "epoch": 40.419397116644824,
+ "grad_norm": 0.19982226192951202,
+ "learning_rate": 0.0006,
+ "loss": 3.655738353729248,
+ "step": 2910
+ },
+ {
+ "epoch": 40.43337702053299,
+ "grad_norm": 0.20608870685100555,
+ "learning_rate": 0.0006,
+ "loss": 3.6521377563476562,
+ "step": 2911
+ },
+ {
+ "epoch": 40.44735692442114,
+ "grad_norm": 0.19817334413528442,
+ "learning_rate": 0.0006,
+ "loss": 3.61527681350708,
+ "step": 2912
+ },
+ {
+ "epoch": 40.46133682830931,
+ "grad_norm": 0.20407769083976746,
+ "learning_rate": 0.0006,
+ "loss": 3.6668765544891357,
+ "step": 2913
+ },
+ {
+ "epoch": 40.47531673219746,
+ "grad_norm": 0.19874799251556396,
+ "learning_rate": 0.0006,
+ "loss": 3.6748533248901367,
+ "step": 2914
+ },
+ {
+ "epoch": 40.489296636085626,
+ "grad_norm": 0.1979510486125946,
+ "learning_rate": 0.0006,
+ "loss": 3.6141977310180664,
+ "step": 2915
+ },
+ {
+ "epoch": 40.50327653997379,
+ "grad_norm": 0.19811518490314484,
+ "learning_rate": 0.0006,
+ "loss": 3.6391215324401855,
+ "step": 2916
+ },
+ {
+ "epoch": 40.517256443861946,
+ "grad_norm": 0.20208898186683655,
+ "learning_rate": 0.0006,
+ "loss": 3.664179801940918,
+ "step": 2917
+ },
+ {
+ "epoch": 40.53123634775011,
+ "grad_norm": 0.22063760459423065,
+ "learning_rate": 0.0006,
+ "loss": 3.645388126373291,
+ "step": 2918
+ },
+ {
+ "epoch": 40.54521625163827,
+ "grad_norm": 0.23420891165733337,
+ "learning_rate": 0.0006,
+ "loss": 3.6424708366394043,
+ "step": 2919
+ },
+ {
+ "epoch": 40.55919615552643,
+ "grad_norm": 0.2263612151145935,
+ "learning_rate": 0.0006,
+ "loss": 3.6649224758148193,
+ "step": 2920
+ },
+ {
+ "epoch": 40.57317605941459,
+ "grad_norm": 0.22745433449745178,
+ "learning_rate": 0.0006,
+ "loss": 3.631586790084839,
+ "step": 2921
+ },
+ {
+ "epoch": 40.58715596330275,
+ "grad_norm": 0.22413238883018494,
+ "learning_rate": 0.0006,
+ "loss": 3.6666674613952637,
+ "step": 2922
+ },
+ {
+ "epoch": 40.60113586719091,
+ "grad_norm": 0.2178265005350113,
+ "learning_rate": 0.0006,
+ "loss": 3.6002111434936523,
+ "step": 2923
+ },
+ {
+ "epoch": 40.615115771079076,
+ "grad_norm": 0.21822521090507507,
+ "learning_rate": 0.0006,
+ "loss": 3.6538329124450684,
+ "step": 2924
+ },
+ {
+ "epoch": 40.62909567496723,
+ "grad_norm": 0.21728558838367462,
+ "learning_rate": 0.0006,
+ "loss": 3.651254653930664,
+ "step": 2925
+ },
+ {
+ "epoch": 40.643075578855395,
+ "grad_norm": 0.22377707064151764,
+ "learning_rate": 0.0006,
+ "loss": 3.6505789756774902,
+ "step": 2926
+ },
+ {
+ "epoch": 40.65705548274356,
+ "grad_norm": 0.2035706788301468,
+ "learning_rate": 0.0006,
+ "loss": 3.6471967697143555,
+ "step": 2927
+ },
+ {
+ "epoch": 40.671035386631715,
+ "grad_norm": 0.2011154741048813,
+ "learning_rate": 0.0006,
+ "loss": 3.6582741737365723,
+ "step": 2928
+ },
+ {
+ "epoch": 40.68501529051988,
+ "grad_norm": 0.23812712728977203,
+ "learning_rate": 0.0006,
+ "loss": 3.6388421058654785,
+ "step": 2929
+ },
+ {
+ "epoch": 40.69899519440804,
+ "grad_norm": 0.2117796689271927,
+ "learning_rate": 0.0006,
+ "loss": 3.688337802886963,
+ "step": 2930
+ },
+ {
+ "epoch": 40.7129750982962,
+ "grad_norm": 0.18440942466259003,
+ "learning_rate": 0.0006,
+ "loss": 3.6409997940063477,
+ "step": 2931
+ },
+ {
+ "epoch": 40.72695500218436,
+ "grad_norm": 0.19005917012691498,
+ "learning_rate": 0.0006,
+ "loss": 3.6760218143463135,
+ "step": 2932
+ },
+ {
+ "epoch": 40.74093490607252,
+ "grad_norm": 0.19982726871967316,
+ "learning_rate": 0.0006,
+ "loss": 3.6375021934509277,
+ "step": 2933
+ },
+ {
+ "epoch": 40.75491480996068,
+ "grad_norm": 0.19240257143974304,
+ "learning_rate": 0.0006,
+ "loss": 3.636807918548584,
+ "step": 2934
+ },
+ {
+ "epoch": 40.768894713848844,
+ "grad_norm": 0.20563434064388275,
+ "learning_rate": 0.0006,
+ "loss": 3.6667532920837402,
+ "step": 2935
+ },
+ {
+ "epoch": 40.782874617737,
+ "grad_norm": 0.26531776785850525,
+ "learning_rate": 0.0006,
+ "loss": 3.6332945823669434,
+ "step": 2936
+ },
+ {
+ "epoch": 40.796854521625164,
+ "grad_norm": 0.2766861021518707,
+ "learning_rate": 0.0006,
+ "loss": 3.6645212173461914,
+ "step": 2937
+ },
+ {
+ "epoch": 40.81083442551333,
+ "grad_norm": 0.235750213265419,
+ "learning_rate": 0.0006,
+ "loss": 3.67067813873291,
+ "step": 2938
+ },
+ {
+ "epoch": 40.824814329401484,
+ "grad_norm": 0.20778773725032806,
+ "learning_rate": 0.0006,
+ "loss": 3.6565768718719482,
+ "step": 2939
+ },
+ {
+ "epoch": 40.83879423328965,
+ "grad_norm": 0.187322199344635,
+ "learning_rate": 0.0006,
+ "loss": 3.620129346847534,
+ "step": 2940
+ },
+ {
+ "epoch": 40.8527741371778,
+ "grad_norm": 0.20576219260692596,
+ "learning_rate": 0.0006,
+ "loss": 3.6700220108032227,
+ "step": 2941
+ },
+ {
+ "epoch": 40.86675404106597,
+ "grad_norm": 0.2197345495223999,
+ "learning_rate": 0.0006,
+ "loss": 3.709311008453369,
+ "step": 2942
+ },
+ {
+ "epoch": 40.88073394495413,
+ "grad_norm": 0.20205345749855042,
+ "learning_rate": 0.0006,
+ "loss": 3.6646361351013184,
+ "step": 2943
+ },
+ {
+ "epoch": 40.89471384884229,
+ "grad_norm": 0.20026250183582306,
+ "learning_rate": 0.0006,
+ "loss": 3.6639604568481445,
+ "step": 2944
+ },
+ {
+ "epoch": 40.90869375273045,
+ "grad_norm": 0.224214106798172,
+ "learning_rate": 0.0006,
+ "loss": 3.6669654846191406,
+ "step": 2945
+ },
+ {
+ "epoch": 40.92267365661861,
+ "grad_norm": 0.2155972272157669,
+ "learning_rate": 0.0006,
+ "loss": 3.6494603157043457,
+ "step": 2946
+ },
+ {
+ "epoch": 40.93665356050677,
+ "grad_norm": 0.23038871586322784,
+ "learning_rate": 0.0006,
+ "loss": 3.6368541717529297,
+ "step": 2947
+ },
+ {
+ "epoch": 40.95063346439493,
+ "grad_norm": 0.2001815289258957,
+ "learning_rate": 0.0006,
+ "loss": 3.711174249649048,
+ "step": 2948
+ },
+ {
+ "epoch": 40.964613368283096,
+ "grad_norm": 0.20428860187530518,
+ "learning_rate": 0.0006,
+ "loss": 3.6342315673828125,
+ "step": 2949
+ },
+ {
+ "epoch": 40.97859327217125,
+ "grad_norm": 0.20724134147167206,
+ "learning_rate": 0.0006,
+ "loss": 3.679375171661377,
+ "step": 2950
+ },
+ {
+ "epoch": 40.992573176059416,
+ "grad_norm": 0.20723849534988403,
+ "learning_rate": 0.0006,
+ "loss": 3.6477675437927246,
+ "step": 2951
+ },
+ {
+ "epoch": 41.0,
+ "grad_norm": 0.23891447484493256,
+ "learning_rate": 0.0006,
+ "loss": 3.632950782775879,
+ "step": 2952
+ },
+ {
+ "epoch": 41.0,
+ "eval_loss": 3.9871256351470947,
+ "eval_runtime": 43.8367,
+ "eval_samples_per_second": 55.707,
+ "eval_steps_per_second": 3.49,
+ "step": 2952
+ },
+ {
+ "epoch": 41.01397990388816,
+ "grad_norm": 0.2258434295654297,
+ "learning_rate": 0.0006,
+ "loss": 3.631239414215088,
+ "step": 2953
+ },
+ {
+ "epoch": 41.02795980777632,
+ "grad_norm": 0.24932795763015747,
+ "learning_rate": 0.0006,
+ "loss": 3.601083517074585,
+ "step": 2954
+ },
+ {
+ "epoch": 41.04193971166448,
+ "grad_norm": 0.2688388228416443,
+ "learning_rate": 0.0006,
+ "loss": 3.655724048614502,
+ "step": 2955
+ },
+ {
+ "epoch": 41.05591961555265,
+ "grad_norm": 0.23880694806575775,
+ "learning_rate": 0.0006,
+ "loss": 3.617628812789917,
+ "step": 2956
+ },
+ {
+ "epoch": 41.0698995194408,
+ "grad_norm": 0.23784616589546204,
+ "learning_rate": 0.0006,
+ "loss": 3.6309127807617188,
+ "step": 2957
+ },
+ {
+ "epoch": 41.083879423328966,
+ "grad_norm": 0.22609511017799377,
+ "learning_rate": 0.0006,
+ "loss": 3.6138553619384766,
+ "step": 2958
+ },
+ {
+ "epoch": 41.09785932721712,
+ "grad_norm": 0.22936329245567322,
+ "learning_rate": 0.0006,
+ "loss": 3.6620094776153564,
+ "step": 2959
+ },
+ {
+ "epoch": 41.111839231105286,
+ "grad_norm": 0.23354190587997437,
+ "learning_rate": 0.0006,
+ "loss": 3.59959077835083,
+ "step": 2960
+ },
+ {
+ "epoch": 41.12581913499345,
+ "grad_norm": 0.2496265172958374,
+ "learning_rate": 0.0006,
+ "loss": 3.588359832763672,
+ "step": 2961
+ },
+ {
+ "epoch": 41.139799038881605,
+ "grad_norm": 0.23618635535240173,
+ "learning_rate": 0.0006,
+ "loss": 3.6341018676757812,
+ "step": 2962
+ },
+ {
+ "epoch": 41.15377894276977,
+ "grad_norm": 0.23724640905857086,
+ "learning_rate": 0.0006,
+ "loss": 3.6170616149902344,
+ "step": 2963
+ },
+ {
+ "epoch": 41.16775884665793,
+ "grad_norm": 0.20944789052009583,
+ "learning_rate": 0.0006,
+ "loss": 3.6158995628356934,
+ "step": 2964
+ },
+ {
+ "epoch": 41.18173875054609,
+ "grad_norm": 0.2089492678642273,
+ "learning_rate": 0.0006,
+ "loss": 3.586538314819336,
+ "step": 2965
+ },
+ {
+ "epoch": 41.19571865443425,
+ "grad_norm": 0.2370915710926056,
+ "learning_rate": 0.0006,
+ "loss": 3.599236011505127,
+ "step": 2966
+ },
+ {
+ "epoch": 41.20969855832241,
+ "grad_norm": 0.25749558210372925,
+ "learning_rate": 0.0006,
+ "loss": 3.631399154663086,
+ "step": 2967
+ },
+ {
+ "epoch": 41.22367846221057,
+ "grad_norm": 0.24754776060581207,
+ "learning_rate": 0.0006,
+ "loss": 3.6503920555114746,
+ "step": 2968
+ },
+ {
+ "epoch": 41.237658366098735,
+ "grad_norm": 0.22060903906822205,
+ "learning_rate": 0.0006,
+ "loss": 3.671673536300659,
+ "step": 2969
+ },
+ {
+ "epoch": 41.25163826998689,
+ "grad_norm": 0.19416594505310059,
+ "learning_rate": 0.0006,
+ "loss": 3.6158413887023926,
+ "step": 2970
+ },
+ {
+ "epoch": 41.265618173875055,
+ "grad_norm": 0.22596411406993866,
+ "learning_rate": 0.0006,
+ "loss": 3.64003849029541,
+ "step": 2971
+ },
+ {
+ "epoch": 41.27959807776322,
+ "grad_norm": 0.26785415410995483,
+ "learning_rate": 0.0006,
+ "loss": 3.642327308654785,
+ "step": 2972
+ },
+ {
+ "epoch": 41.293577981651374,
+ "grad_norm": 0.2988710403442383,
+ "learning_rate": 0.0006,
+ "loss": 3.6018929481506348,
+ "step": 2973
+ },
+ {
+ "epoch": 41.30755788553954,
+ "grad_norm": 0.2428133338689804,
+ "learning_rate": 0.0006,
+ "loss": 3.645270824432373,
+ "step": 2974
+ },
+ {
+ "epoch": 41.3215377894277,
+ "grad_norm": 0.20330320298671722,
+ "learning_rate": 0.0006,
+ "loss": 3.625495433807373,
+ "step": 2975
+ },
+ {
+ "epoch": 41.33551769331586,
+ "grad_norm": 0.2267787605524063,
+ "learning_rate": 0.0006,
+ "loss": 3.6469204425811768,
+ "step": 2976
+ },
+ {
+ "epoch": 41.34949759720402,
+ "grad_norm": 0.20702822506427765,
+ "learning_rate": 0.0006,
+ "loss": 3.644191265106201,
+ "step": 2977
+ },
+ {
+ "epoch": 41.36347750109218,
+ "grad_norm": 0.19693221151828766,
+ "learning_rate": 0.0006,
+ "loss": 3.591794967651367,
+ "step": 2978
+ },
+ {
+ "epoch": 41.37745740498034,
+ "grad_norm": 0.21193185448646545,
+ "learning_rate": 0.0006,
+ "loss": 3.6283936500549316,
+ "step": 2979
+ },
+ {
+ "epoch": 41.391437308868504,
+ "grad_norm": 0.20953163504600525,
+ "learning_rate": 0.0006,
+ "loss": 3.617565155029297,
+ "step": 2980
+ },
+ {
+ "epoch": 41.40541721275666,
+ "grad_norm": 0.21839819848537445,
+ "learning_rate": 0.0006,
+ "loss": 3.621209144592285,
+ "step": 2981
+ },
+ {
+ "epoch": 41.419397116644824,
+ "grad_norm": 0.2152671068906784,
+ "learning_rate": 0.0006,
+ "loss": 3.643197536468506,
+ "step": 2982
+ },
+ {
+ "epoch": 41.43337702053299,
+ "grad_norm": 0.2507486641407013,
+ "learning_rate": 0.0006,
+ "loss": 3.657499313354492,
+ "step": 2983
+ },
+ {
+ "epoch": 41.44735692442114,
+ "grad_norm": 0.24695388972759247,
+ "learning_rate": 0.0006,
+ "loss": 3.62170672416687,
+ "step": 2984
+ },
+ {
+ "epoch": 41.46133682830931,
+ "grad_norm": 0.22652822732925415,
+ "learning_rate": 0.0006,
+ "loss": 3.64322566986084,
+ "step": 2985
+ },
+ {
+ "epoch": 41.47531673219746,
+ "grad_norm": 0.2575881779193878,
+ "learning_rate": 0.0006,
+ "loss": 3.659621477127075,
+ "step": 2986
+ },
+ {
+ "epoch": 41.489296636085626,
+ "grad_norm": 0.24162672460079193,
+ "learning_rate": 0.0006,
+ "loss": 3.6527223587036133,
+ "step": 2987
+ },
+ {
+ "epoch": 41.50327653997379,
+ "grad_norm": 0.20930497348308563,
+ "learning_rate": 0.0006,
+ "loss": 3.6412787437438965,
+ "step": 2988
+ },
+ {
+ "epoch": 41.517256443861946,
+ "grad_norm": 0.20480819046497345,
+ "learning_rate": 0.0006,
+ "loss": 3.614767074584961,
+ "step": 2989
+ },
+ {
+ "epoch": 41.53123634775011,
+ "grad_norm": 0.20015820860862732,
+ "learning_rate": 0.0006,
+ "loss": 3.6512045860290527,
+ "step": 2990
+ },
+ {
+ "epoch": 41.54521625163827,
+ "grad_norm": 0.20220743119716644,
+ "learning_rate": 0.0006,
+ "loss": 3.6732325553894043,
+ "step": 2991
+ },
+ {
+ "epoch": 41.55919615552643,
+ "grad_norm": 0.20505326986312866,
+ "learning_rate": 0.0006,
+ "loss": 3.6374664306640625,
+ "step": 2992
+ },
+ {
+ "epoch": 41.57317605941459,
+ "grad_norm": 0.19423344731330872,
+ "learning_rate": 0.0006,
+ "loss": 3.6564126014709473,
+ "step": 2993
+ },
+ {
+ "epoch": 41.58715596330275,
+ "grad_norm": 0.19284583628177643,
+ "learning_rate": 0.0006,
+ "loss": 3.6460509300231934,
+ "step": 2994
+ },
+ {
+ "epoch": 41.60113586719091,
+ "grad_norm": 0.18488959968090057,
+ "learning_rate": 0.0006,
+ "loss": 3.632859468460083,
+ "step": 2995
+ },
+ {
+ "epoch": 41.615115771079076,
+ "grad_norm": 0.18816296756267548,
+ "learning_rate": 0.0006,
+ "loss": 3.5958361625671387,
+ "step": 2996
+ },
+ {
+ "epoch": 41.62909567496723,
+ "grad_norm": 0.18987809121608734,
+ "learning_rate": 0.0006,
+ "loss": 3.6330695152282715,
+ "step": 2997
+ },
+ {
+ "epoch": 41.643075578855395,
+ "grad_norm": 0.18999919295310974,
+ "learning_rate": 0.0006,
+ "loss": 3.6486730575561523,
+ "step": 2998
+ },
+ {
+ "epoch": 41.65705548274356,
+ "grad_norm": 0.20190183818340302,
+ "learning_rate": 0.0006,
+ "loss": 3.6564230918884277,
+ "step": 2999
+ },
+ {
+ "epoch": 41.671035386631715,
+ "grad_norm": 0.20331363379955292,
+ "learning_rate": 0.0006,
+ "loss": 3.6789698600769043,
+ "step": 3000
+ },
+ {
+ "epoch": 41.68501529051988,
+ "grad_norm": 0.21599505841732025,
+ "learning_rate": 0.0006,
+ "loss": 3.6544511318206787,
+ "step": 3001
+ },
+ {
+ "epoch": 41.69899519440804,
+ "grad_norm": 0.21123184263706207,
+ "learning_rate": 0.0006,
+ "loss": 3.6506948471069336,
+ "step": 3002
+ },
+ {
+ "epoch": 41.7129750982962,
+ "grad_norm": 0.21337002515792847,
+ "learning_rate": 0.0006,
+ "loss": 3.676854372024536,
+ "step": 3003
+ },
+ {
+ "epoch": 41.72695500218436,
+ "grad_norm": 0.22567597031593323,
+ "learning_rate": 0.0006,
+ "loss": 3.6467485427856445,
+ "step": 3004
+ },
+ {
+ "epoch": 41.74093490607252,
+ "grad_norm": 0.22923491895198822,
+ "learning_rate": 0.0006,
+ "loss": 3.663224697113037,
+ "step": 3005
+ },
+ {
+ "epoch": 41.75491480996068,
+ "grad_norm": 0.21511489152908325,
+ "learning_rate": 0.0006,
+ "loss": 3.6290054321289062,
+ "step": 3006
+ },
+ {
+ "epoch": 41.768894713848844,
+ "grad_norm": 0.23855915665626526,
+ "learning_rate": 0.0006,
+ "loss": 3.631225109100342,
+ "step": 3007
+ },
+ {
+ "epoch": 41.782874617737,
+ "grad_norm": 0.22771067917346954,
+ "learning_rate": 0.0006,
+ "loss": 3.652575731277466,
+ "step": 3008
+ },
+ {
+ "epoch": 41.796854521625164,
+ "grad_norm": 0.2006237953901291,
+ "learning_rate": 0.0006,
+ "loss": 3.6883468627929688,
+ "step": 3009
+ },
+ {
+ "epoch": 41.81083442551333,
+ "grad_norm": 0.21182459592819214,
+ "learning_rate": 0.0006,
+ "loss": 3.6443567276000977,
+ "step": 3010
+ },
+ {
+ "epoch": 41.824814329401484,
+ "grad_norm": 0.21083690226078033,
+ "learning_rate": 0.0006,
+ "loss": 3.66660475730896,
+ "step": 3011
+ },
+ {
+ "epoch": 41.83879423328965,
+ "grad_norm": 0.21232296526432037,
+ "learning_rate": 0.0006,
+ "loss": 3.6436524391174316,
+ "step": 3012
+ },
+ {
+ "epoch": 41.8527741371778,
+ "grad_norm": 0.2089361697435379,
+ "learning_rate": 0.0006,
+ "loss": 3.648113250732422,
+ "step": 3013
+ },
+ {
+ "epoch": 41.86675404106597,
+ "grad_norm": 0.21517033874988556,
+ "learning_rate": 0.0006,
+ "loss": 3.6382269859313965,
+ "step": 3014
+ },
+ {
+ "epoch": 41.88073394495413,
+ "grad_norm": 0.1930733323097229,
+ "learning_rate": 0.0006,
+ "loss": 3.639441967010498,
+ "step": 3015
+ },
+ {
+ "epoch": 41.89471384884229,
+ "grad_norm": 0.18282832205295563,
+ "learning_rate": 0.0006,
+ "loss": 3.652860164642334,
+ "step": 3016
+ },
+ {
+ "epoch": 41.90869375273045,
+ "grad_norm": 0.18649716675281525,
+ "learning_rate": 0.0006,
+ "loss": 3.6335558891296387,
+ "step": 3017
+ },
+ {
+ "epoch": 41.92267365661861,
+ "grad_norm": 0.18873754143714905,
+ "learning_rate": 0.0006,
+ "loss": 3.6743149757385254,
+ "step": 3018
+ },
+ {
+ "epoch": 41.93665356050677,
+ "grad_norm": 0.1937907189130783,
+ "learning_rate": 0.0006,
+ "loss": 3.6749300956726074,
+ "step": 3019
+ },
+ {
+ "epoch": 41.95063346439493,
+ "grad_norm": 0.20620854198932648,
+ "learning_rate": 0.0006,
+ "loss": 3.6591262817382812,
+ "step": 3020
+ },
+ {
+ "epoch": 41.964613368283096,
+ "grad_norm": 0.18541009724140167,
+ "learning_rate": 0.0006,
+ "loss": 3.647010326385498,
+ "step": 3021
+ },
+ {
+ "epoch": 41.97859327217125,
+ "grad_norm": 0.19224928319454193,
+ "learning_rate": 0.0006,
+ "loss": 3.629920482635498,
+ "step": 3022
+ },
+ {
+ "epoch": 41.992573176059416,
+ "grad_norm": 0.21286419034004211,
+ "learning_rate": 0.0006,
+ "loss": 3.6516964435577393,
+ "step": 3023
+ },
+ {
+ "epoch": 42.0,
+ "grad_norm": 0.24787360429763794,
+ "learning_rate": 0.0006,
+ "loss": 3.6378865242004395,
+ "step": 3024
+ },
+ {
+ "epoch": 42.0,
+ "eval_loss": 3.9910318851470947,
+ "eval_runtime": 43.7914,
+ "eval_samples_per_second": 55.764,
+ "eval_steps_per_second": 3.494,
+ "step": 3024
+ },
+ {
+ "epoch": 42.01397990388816,
+ "grad_norm": 0.21036255359649658,
+ "learning_rate": 0.0006,
+ "loss": 3.6604344844818115,
+ "step": 3025
+ },
+ {
+ "epoch": 42.02795980777632,
+ "grad_norm": 0.22240597009658813,
+ "learning_rate": 0.0006,
+ "loss": 3.6160645484924316,
+ "step": 3026
+ },
+ {
+ "epoch": 42.04193971166448,
+ "grad_norm": 0.2487850785255432,
+ "learning_rate": 0.0006,
+ "loss": 3.6293773651123047,
+ "step": 3027
+ },
+ {
+ "epoch": 42.05591961555265,
+ "grad_norm": 0.27058133482933044,
+ "learning_rate": 0.0006,
+ "loss": 3.5827436447143555,
+ "step": 3028
+ },
+ {
+ "epoch": 42.0698995194408,
+ "grad_norm": 0.25001782178878784,
+ "learning_rate": 0.0006,
+ "loss": 3.5833029747009277,
+ "step": 3029
+ },
+ {
+ "epoch": 42.083879423328966,
+ "grad_norm": 0.23811939358711243,
+ "learning_rate": 0.0006,
+ "loss": 3.605585813522339,
+ "step": 3030
+ },
+ {
+ "epoch": 42.09785932721712,
+ "grad_norm": 0.23279601335525513,
+ "learning_rate": 0.0006,
+ "loss": 3.607205867767334,
+ "step": 3031
+ },
+ {
+ "epoch": 42.111839231105286,
+ "grad_norm": 0.24410508573055267,
+ "learning_rate": 0.0006,
+ "loss": 3.621175765991211,
+ "step": 3032
+ },
+ {
+ "epoch": 42.12581913499345,
+ "grad_norm": 0.24782028794288635,
+ "learning_rate": 0.0006,
+ "loss": 3.6236867904663086,
+ "step": 3033
+ },
+ {
+ "epoch": 42.139799038881605,
+ "grad_norm": 0.2301972657442093,
+ "learning_rate": 0.0006,
+ "loss": 3.603853464126587,
+ "step": 3034
+ },
+ {
+ "epoch": 42.15377894276977,
+ "grad_norm": 0.21988637745380402,
+ "learning_rate": 0.0006,
+ "loss": 3.600142002105713,
+ "step": 3035
+ },
+ {
+ "epoch": 42.16775884665793,
+ "grad_norm": 0.22623786330223083,
+ "learning_rate": 0.0006,
+ "loss": 3.61971116065979,
+ "step": 3036
+ },
+ {
+ "epoch": 42.18173875054609,
+ "grad_norm": 0.21844688057899475,
+ "learning_rate": 0.0006,
+ "loss": 3.61320161819458,
+ "step": 3037
+ },
+ {
+ "epoch": 42.19571865443425,
+ "grad_norm": 0.20444536209106445,
+ "learning_rate": 0.0006,
+ "loss": 3.6179633140563965,
+ "step": 3038
+ },
+ {
+ "epoch": 42.20969855832241,
+ "grad_norm": 0.22862036526203156,
+ "learning_rate": 0.0006,
+ "loss": 3.605433940887451,
+ "step": 3039
+ },
+ {
+ "epoch": 42.22367846221057,
+ "grad_norm": 0.2906605005264282,
+ "learning_rate": 0.0006,
+ "loss": 3.6279449462890625,
+ "step": 3040
+ },
+ {
+ "epoch": 42.237658366098735,
+ "grad_norm": 0.29074418544769287,
+ "learning_rate": 0.0006,
+ "loss": 3.5959763526916504,
+ "step": 3041
+ },
+ {
+ "epoch": 42.25163826998689,
+ "grad_norm": 0.1994444876909256,
+ "learning_rate": 0.0006,
+ "loss": 3.5858588218688965,
+ "step": 3042
+ },
+ {
+ "epoch": 42.265618173875055,
+ "grad_norm": 0.20793452858924866,
+ "learning_rate": 0.0006,
+ "loss": 3.604630470275879,
+ "step": 3043
+ },
+ {
+ "epoch": 42.27959807776322,
+ "grad_norm": 0.2119535505771637,
+ "learning_rate": 0.0006,
+ "loss": 3.6287126541137695,
+ "step": 3044
+ },
+ {
+ "epoch": 42.293577981651374,
+ "grad_norm": 0.21092535555362701,
+ "learning_rate": 0.0006,
+ "loss": 3.646294593811035,
+ "step": 3045
+ },
+ {
+ "epoch": 42.30755788553954,
+ "grad_norm": 0.21474479138851166,
+ "learning_rate": 0.0006,
+ "loss": 3.6364355087280273,
+ "step": 3046
+ },
+ {
+ "epoch": 42.3215377894277,
+ "grad_norm": 0.21100781857967377,
+ "learning_rate": 0.0006,
+ "loss": 3.622528553009033,
+ "step": 3047
+ },
+ {
+ "epoch": 42.33551769331586,
+ "grad_norm": 0.20739853382110596,
+ "learning_rate": 0.0006,
+ "loss": 3.6261959075927734,
+ "step": 3048
+ },
+ {
+ "epoch": 42.34949759720402,
+ "grad_norm": 0.22264131903648376,
+ "learning_rate": 0.0006,
+ "loss": 3.6195173263549805,
+ "step": 3049
+ },
+ {
+ "epoch": 42.36347750109218,
+ "grad_norm": 0.23696285486221313,
+ "learning_rate": 0.0006,
+ "loss": 3.631103515625,
+ "step": 3050
+ },
+ {
+ "epoch": 42.37745740498034,
+ "grad_norm": 0.2124902606010437,
+ "learning_rate": 0.0006,
+ "loss": 3.6490437984466553,
+ "step": 3051
+ },
+ {
+ "epoch": 42.391437308868504,
+ "grad_norm": 0.18831083178520203,
+ "learning_rate": 0.0006,
+ "loss": 3.628459930419922,
+ "step": 3052
+ },
+ {
+ "epoch": 42.40541721275666,
+ "grad_norm": 0.20390060544013977,
+ "learning_rate": 0.0006,
+ "loss": 3.6348538398742676,
+ "step": 3053
+ },
+ {
+ "epoch": 42.419397116644824,
+ "grad_norm": 0.2205851823091507,
+ "learning_rate": 0.0006,
+ "loss": 3.6286797523498535,
+ "step": 3054
+ },
+ {
+ "epoch": 42.43337702053299,
+ "grad_norm": 0.21518434584140778,
+ "learning_rate": 0.0006,
+ "loss": 3.5918965339660645,
+ "step": 3055
+ },
+ {
+ "epoch": 42.44735692442114,
+ "grad_norm": 0.2342296987771988,
+ "learning_rate": 0.0006,
+ "loss": 3.6364407539367676,
+ "step": 3056
+ },
+ {
+ "epoch": 42.46133682830931,
+ "grad_norm": 0.2304094135761261,
+ "learning_rate": 0.0006,
+ "loss": 3.6561477184295654,
+ "step": 3057
+ },
+ {
+ "epoch": 42.47531673219746,
+ "grad_norm": 0.20882441103458405,
+ "learning_rate": 0.0006,
+ "loss": 3.611250638961792,
+ "step": 3058
+ },
+ {
+ "epoch": 42.489296636085626,
+ "grad_norm": 0.24346643686294556,
+ "learning_rate": 0.0006,
+ "loss": 3.580082416534424,
+ "step": 3059
+ },
+ {
+ "epoch": 42.50327653997379,
+ "grad_norm": 0.260711133480072,
+ "learning_rate": 0.0006,
+ "loss": 3.6179792881011963,
+ "step": 3060
+ },
+ {
+ "epoch": 42.517256443861946,
+ "grad_norm": 0.21223759651184082,
+ "learning_rate": 0.0006,
+ "loss": 3.6153154373168945,
+ "step": 3061
+ },
+ {
+ "epoch": 42.53123634775011,
+ "grad_norm": 0.21429137885570526,
+ "learning_rate": 0.0006,
+ "loss": 3.6003379821777344,
+ "step": 3062
+ },
+ {
+ "epoch": 42.54521625163827,
+ "grad_norm": 0.23659434914588928,
+ "learning_rate": 0.0006,
+ "loss": 3.6540589332580566,
+ "step": 3063
+ },
+ {
+ "epoch": 42.55919615552643,
+ "grad_norm": 0.280344158411026,
+ "learning_rate": 0.0006,
+ "loss": 3.6406192779541016,
+ "step": 3064
+ },
+ {
+ "epoch": 42.57317605941459,
+ "grad_norm": 0.2903953194618225,
+ "learning_rate": 0.0006,
+ "loss": 3.643479824066162,
+ "step": 3065
+ },
+ {
+ "epoch": 42.58715596330275,
+ "grad_norm": 0.24958311021327972,
+ "learning_rate": 0.0006,
+ "loss": 3.6320221424102783,
+ "step": 3066
+ },
+ {
+ "epoch": 42.60113586719091,
+ "grad_norm": 0.22525225579738617,
+ "learning_rate": 0.0006,
+ "loss": 3.641676425933838,
+ "step": 3067
+ },
+ {
+ "epoch": 42.615115771079076,
+ "grad_norm": 0.23025161027908325,
+ "learning_rate": 0.0006,
+ "loss": 3.6465210914611816,
+ "step": 3068
+ },
+ {
+ "epoch": 42.62909567496723,
+ "grad_norm": 0.21947328746318817,
+ "learning_rate": 0.0006,
+ "loss": 3.667877435684204,
+ "step": 3069
+ },
+ {
+ "epoch": 42.643075578855395,
+ "grad_norm": 0.22809366881847382,
+ "learning_rate": 0.0006,
+ "loss": 3.663166046142578,
+ "step": 3070
+ },
+ {
+ "epoch": 42.65705548274356,
+ "grad_norm": 0.21938708424568176,
+ "learning_rate": 0.0006,
+ "loss": 3.619001865386963,
+ "step": 3071
+ },
+ {
+ "epoch": 42.671035386631715,
+ "grad_norm": 0.231620192527771,
+ "learning_rate": 0.0006,
+ "loss": 3.652332305908203,
+ "step": 3072
+ },
+ {
+ "epoch": 42.68501529051988,
+ "grad_norm": 0.23683936893939972,
+ "learning_rate": 0.0006,
+ "loss": 3.6633410453796387,
+ "step": 3073
+ },
+ {
+ "epoch": 42.69899519440804,
+ "grad_norm": 0.23752044141292572,
+ "learning_rate": 0.0006,
+ "loss": 3.646064281463623,
+ "step": 3074
+ },
+ {
+ "epoch": 42.7129750982962,
+ "grad_norm": 0.23041971027851105,
+ "learning_rate": 0.0006,
+ "loss": 3.6431851387023926,
+ "step": 3075
+ },
+ {
+ "epoch": 42.72695500218436,
+ "grad_norm": 0.220438614487648,
+ "learning_rate": 0.0006,
+ "loss": 3.6499950885772705,
+ "step": 3076
+ },
+ {
+ "epoch": 42.74093490607252,
+ "grad_norm": 0.24297107756137848,
+ "learning_rate": 0.0006,
+ "loss": 3.6655125617980957,
+ "step": 3077
+ },
+ {
+ "epoch": 42.75491480996068,
+ "grad_norm": 0.21835893392562866,
+ "learning_rate": 0.0006,
+ "loss": 3.61672043800354,
+ "step": 3078
+ },
+ {
+ "epoch": 42.768894713848844,
+ "grad_norm": 0.22490793466567993,
+ "learning_rate": 0.0006,
+ "loss": 3.652825355529785,
+ "step": 3079
+ },
+ {
+ "epoch": 42.782874617737,
+ "grad_norm": 0.2246086746454239,
+ "learning_rate": 0.0006,
+ "loss": 3.6290056705474854,
+ "step": 3080
+ },
+ {
+ "epoch": 42.796854521625164,
+ "grad_norm": 0.21527042984962463,
+ "learning_rate": 0.0006,
+ "loss": 3.6587281227111816,
+ "step": 3081
+ },
+ {
+ "epoch": 42.81083442551333,
+ "grad_norm": 0.19586899876594543,
+ "learning_rate": 0.0006,
+ "loss": 3.639626979827881,
+ "step": 3082
+ },
+ {
+ "epoch": 42.824814329401484,
+ "grad_norm": 0.20881155133247375,
+ "learning_rate": 0.0006,
+ "loss": 3.6305861473083496,
+ "step": 3083
+ },
+ {
+ "epoch": 42.83879423328965,
+ "grad_norm": 0.20094981789588928,
+ "learning_rate": 0.0006,
+ "loss": 3.609614849090576,
+ "step": 3084
+ },
+ {
+ "epoch": 42.8527741371778,
+ "grad_norm": 0.21786150336265564,
+ "learning_rate": 0.0006,
+ "loss": 3.6423556804656982,
+ "step": 3085
+ },
+ {
+ "epoch": 42.86675404106597,
+ "grad_norm": 0.24493595957756042,
+ "learning_rate": 0.0006,
+ "loss": 3.631321668624878,
+ "step": 3086
+ },
+ {
+ "epoch": 42.88073394495413,
+ "grad_norm": 0.2437327355146408,
+ "learning_rate": 0.0006,
+ "loss": 3.6624178886413574,
+ "step": 3087
+ },
+ {
+ "epoch": 42.89471384884229,
+ "grad_norm": 0.21020543575286865,
+ "learning_rate": 0.0006,
+ "loss": 3.6567513942718506,
+ "step": 3088
+ },
+ {
+ "epoch": 42.90869375273045,
+ "grad_norm": 0.18977083265781403,
+ "learning_rate": 0.0006,
+ "loss": 3.6268601417541504,
+ "step": 3089
+ },
+ {
+ "epoch": 42.92267365661861,
+ "grad_norm": 0.2211192399263382,
+ "learning_rate": 0.0006,
+ "loss": 3.6690402030944824,
+ "step": 3090
+ },
+ {
+ "epoch": 42.93665356050677,
+ "grad_norm": 0.2695990204811096,
+ "learning_rate": 0.0006,
+ "loss": 3.667701244354248,
+ "step": 3091
+ },
+ {
+ "epoch": 42.95063346439493,
+ "grad_norm": 0.25910887122154236,
+ "learning_rate": 0.0006,
+ "loss": 3.627504587173462,
+ "step": 3092
+ },
+ {
+ "epoch": 42.964613368283096,
+ "grad_norm": 0.2466248720884323,
+ "learning_rate": 0.0006,
+ "loss": 3.6462182998657227,
+ "step": 3093
+ },
+ {
+ "epoch": 42.97859327217125,
+ "grad_norm": 0.22997038066387177,
+ "learning_rate": 0.0006,
+ "loss": 3.647430896759033,
+ "step": 3094
+ },
+ {
+ "epoch": 42.992573176059416,
+ "grad_norm": 0.1989113837480545,
+ "learning_rate": 0.0006,
+ "loss": 3.6502084732055664,
+ "step": 3095
+ },
+ {
+ "epoch": 43.0,
+ "grad_norm": 0.22976496815681458,
+ "learning_rate": 0.0006,
+ "loss": 3.6963884830474854,
+ "step": 3096
+ },
+ {
+ "epoch": 43.0,
+ "eval_loss": 3.9656779766082764,
+ "eval_runtime": 43.9281,
+ "eval_samples_per_second": 55.591,
+ "eval_steps_per_second": 3.483,
+ "step": 3096
+ },
+ {
+ "epoch": 43.01397990388816,
+ "grad_norm": 0.2862325608730316,
+ "learning_rate": 0.0006,
+ "loss": 3.581247568130493,
+ "step": 3097
+ },
+ {
+ "epoch": 43.02795980777632,
+ "grad_norm": 0.3867015540599823,
+ "learning_rate": 0.0006,
+ "loss": 3.611076593399048,
+ "step": 3098
+ },
+ {
+ "epoch": 43.04193971166448,
+ "grad_norm": 0.4139448404312134,
+ "learning_rate": 0.0006,
+ "loss": 3.625164031982422,
+ "step": 3099
+ },
+ {
+ "epoch": 43.05591961555265,
+ "grad_norm": 0.292407363653183,
+ "learning_rate": 0.0006,
+ "loss": 3.615546703338623,
+ "step": 3100
+ },
+ {
+ "epoch": 43.0698995194408,
+ "grad_norm": 0.24272124469280243,
+ "learning_rate": 0.0006,
+ "loss": 3.5965943336486816,
+ "step": 3101
+ },
+ {
+ "epoch": 43.083879423328966,
+ "grad_norm": 0.2761254608631134,
+ "learning_rate": 0.0006,
+ "loss": 3.605706214904785,
+ "step": 3102
+ },
+ {
+ "epoch": 43.09785932721712,
+ "grad_norm": 0.25232183933258057,
+ "learning_rate": 0.0006,
+ "loss": 3.6252012252807617,
+ "step": 3103
+ },
+ {
+ "epoch": 43.111839231105286,
+ "grad_norm": 0.248970165848732,
+ "learning_rate": 0.0006,
+ "loss": 3.6028337478637695,
+ "step": 3104
+ },
+ {
+ "epoch": 43.12581913499345,
+ "grad_norm": 0.22088921070098877,
+ "learning_rate": 0.0006,
+ "loss": 3.591614007949829,
+ "step": 3105
+ },
+ {
+ "epoch": 43.139799038881605,
+ "grad_norm": 0.21528655290603638,
+ "learning_rate": 0.0006,
+ "loss": 3.6237306594848633,
+ "step": 3106
+ },
+ {
+ "epoch": 43.15377894276977,
+ "grad_norm": 0.22799135744571686,
+ "learning_rate": 0.0006,
+ "loss": 3.5968847274780273,
+ "step": 3107
+ },
+ {
+ "epoch": 43.16775884665793,
+ "grad_norm": 0.23102127015590668,
+ "learning_rate": 0.0006,
+ "loss": 3.6046414375305176,
+ "step": 3108
+ },
+ {
+ "epoch": 43.18173875054609,
+ "grad_norm": 0.22876501083374023,
+ "learning_rate": 0.0006,
+ "loss": 3.635608196258545,
+ "step": 3109
+ },
+ {
+ "epoch": 43.19571865443425,
+ "grad_norm": 0.24920420348644257,
+ "learning_rate": 0.0006,
+ "loss": 3.628662109375,
+ "step": 3110
+ },
+ {
+ "epoch": 43.20969855832241,
+ "grad_norm": 0.2527749538421631,
+ "learning_rate": 0.0006,
+ "loss": 3.6109046936035156,
+ "step": 3111
+ },
+ {
+ "epoch": 43.22367846221057,
+ "grad_norm": 0.22529229521751404,
+ "learning_rate": 0.0006,
+ "loss": 3.6536030769348145,
+ "step": 3112
+ },
+ {
+ "epoch": 43.237658366098735,
+ "grad_norm": 0.20031821727752686,
+ "learning_rate": 0.0006,
+ "loss": 3.6328792572021484,
+ "step": 3113
+ },
+ {
+ "epoch": 43.25163826998689,
+ "grad_norm": 0.21075189113616943,
+ "learning_rate": 0.0006,
+ "loss": 3.6200530529022217,
+ "step": 3114
+ },
+ {
+ "epoch": 43.265618173875055,
+ "grad_norm": 0.21164856851100922,
+ "learning_rate": 0.0006,
+ "loss": 3.6276001930236816,
+ "step": 3115
+ },
+ {
+ "epoch": 43.27959807776322,
+ "grad_norm": 0.19306758046150208,
+ "learning_rate": 0.0006,
+ "loss": 3.608675956726074,
+ "step": 3116
+ },
+ {
+ "epoch": 43.293577981651374,
+ "grad_norm": 0.20288796722888947,
+ "learning_rate": 0.0006,
+ "loss": 3.6057004928588867,
+ "step": 3117
+ },
+ {
+ "epoch": 43.30755788553954,
+ "grad_norm": 0.1901484876871109,
+ "learning_rate": 0.0006,
+ "loss": 3.6191725730895996,
+ "step": 3118
+ },
+ {
+ "epoch": 43.3215377894277,
+ "grad_norm": 0.19438181817531586,
+ "learning_rate": 0.0006,
+ "loss": 3.5814337730407715,
+ "step": 3119
+ },
+ {
+ "epoch": 43.33551769331586,
+ "grad_norm": 0.19924484193325043,
+ "learning_rate": 0.0006,
+ "loss": 3.6168713569641113,
+ "step": 3120
+ },
+ {
+ "epoch": 43.34949759720402,
+ "grad_norm": 0.20757409930229187,
+ "learning_rate": 0.0006,
+ "loss": 3.6281509399414062,
+ "step": 3121
+ },
+ {
+ "epoch": 43.36347750109218,
+ "grad_norm": 0.22500184178352356,
+ "learning_rate": 0.0006,
+ "loss": 3.635101795196533,
+ "step": 3122
+ },
+ {
+ "epoch": 43.37745740498034,
+ "grad_norm": 0.22061555087566376,
+ "learning_rate": 0.0006,
+ "loss": 3.630622386932373,
+ "step": 3123
+ },
+ {
+ "epoch": 43.391437308868504,
+ "grad_norm": 0.2094152420759201,
+ "learning_rate": 0.0006,
+ "loss": 3.581803798675537,
+ "step": 3124
+ },
+ {
+ "epoch": 43.40541721275666,
+ "grad_norm": 0.19607678055763245,
+ "learning_rate": 0.0006,
+ "loss": 3.6149864196777344,
+ "step": 3125
+ },
+ {
+ "epoch": 43.419397116644824,
+ "grad_norm": 0.18985028564929962,
+ "learning_rate": 0.0006,
+ "loss": 3.6338040828704834,
+ "step": 3126
+ },
+ {
+ "epoch": 43.43337702053299,
+ "grad_norm": 0.20490778982639313,
+ "learning_rate": 0.0006,
+ "loss": 3.63275146484375,
+ "step": 3127
+ },
+ {
+ "epoch": 43.44735692442114,
+ "grad_norm": 0.24385297298431396,
+ "learning_rate": 0.0006,
+ "loss": 3.6412134170532227,
+ "step": 3128
+ },
+ {
+ "epoch": 43.46133682830931,
+ "grad_norm": 0.243601992726326,
+ "learning_rate": 0.0006,
+ "loss": 3.594238758087158,
+ "step": 3129
+ },
+ {
+ "epoch": 43.47531673219746,
+ "grad_norm": 0.21314913034439087,
+ "learning_rate": 0.0006,
+ "loss": 3.5962629318237305,
+ "step": 3130
+ },
+ {
+ "epoch": 43.489296636085626,
+ "grad_norm": 0.20499329268932343,
+ "learning_rate": 0.0006,
+ "loss": 3.61600923538208,
+ "step": 3131
+ },
+ {
+ "epoch": 43.50327653997379,
+ "grad_norm": 0.20199540257453918,
+ "learning_rate": 0.0006,
+ "loss": 3.638469934463501,
+ "step": 3132
+ },
+ {
+ "epoch": 43.517256443861946,
+ "grad_norm": 0.19932983815670013,
+ "learning_rate": 0.0006,
+ "loss": 3.619145393371582,
+ "step": 3133
+ },
+ {
+ "epoch": 43.53123634775011,
+ "grad_norm": 0.20401954650878906,
+ "learning_rate": 0.0006,
+ "loss": 3.643700122833252,
+ "step": 3134
+ },
+ {
+ "epoch": 43.54521625163827,
+ "grad_norm": 0.20784904062747955,
+ "learning_rate": 0.0006,
+ "loss": 3.619272232055664,
+ "step": 3135
+ },
+ {
+ "epoch": 43.55919615552643,
+ "grad_norm": 0.21003122627735138,
+ "learning_rate": 0.0006,
+ "loss": 3.629542827606201,
+ "step": 3136
+ },
+ {
+ "epoch": 43.57317605941459,
+ "grad_norm": 0.2220298945903778,
+ "learning_rate": 0.0006,
+ "loss": 3.655543804168701,
+ "step": 3137
+ },
+ {
+ "epoch": 43.58715596330275,
+ "grad_norm": 0.21159163117408752,
+ "learning_rate": 0.0006,
+ "loss": 3.6092495918273926,
+ "step": 3138
+ },
+ {
+ "epoch": 43.60113586719091,
+ "grad_norm": 0.19462746381759644,
+ "learning_rate": 0.0006,
+ "loss": 3.6447129249572754,
+ "step": 3139
+ },
+ {
+ "epoch": 43.615115771079076,
+ "grad_norm": 0.20523829758167267,
+ "learning_rate": 0.0006,
+ "loss": 3.6292669773101807,
+ "step": 3140
+ },
+ {
+ "epoch": 43.62909567496723,
+ "grad_norm": 0.2172321230173111,
+ "learning_rate": 0.0006,
+ "loss": 3.6144580841064453,
+ "step": 3141
+ },
+ {
+ "epoch": 43.643075578855395,
+ "grad_norm": 0.21751564741134644,
+ "learning_rate": 0.0006,
+ "loss": 3.6381068229675293,
+ "step": 3142
+ },
+ {
+ "epoch": 43.65705548274356,
+ "grad_norm": 0.1914236694574356,
+ "learning_rate": 0.0006,
+ "loss": 3.6392078399658203,
+ "step": 3143
+ },
+ {
+ "epoch": 43.671035386631715,
+ "grad_norm": 0.19792547821998596,
+ "learning_rate": 0.0006,
+ "loss": 3.6394457817077637,
+ "step": 3144
+ },
+ {
+ "epoch": 43.68501529051988,
+ "grad_norm": 0.2106214165687561,
+ "learning_rate": 0.0006,
+ "loss": 3.626147747039795,
+ "step": 3145
+ },
+ {
+ "epoch": 43.69899519440804,
+ "grad_norm": 0.21802955865859985,
+ "learning_rate": 0.0006,
+ "loss": 3.63372802734375,
+ "step": 3146
+ },
+ {
+ "epoch": 43.7129750982962,
+ "grad_norm": 0.21498727798461914,
+ "learning_rate": 0.0006,
+ "loss": 3.6193063259124756,
+ "step": 3147
+ },
+ {
+ "epoch": 43.72695500218436,
+ "grad_norm": 0.2176690250635147,
+ "learning_rate": 0.0006,
+ "loss": 3.6431519985198975,
+ "step": 3148
+ },
+ {
+ "epoch": 43.74093490607252,
+ "grad_norm": 0.26883506774902344,
+ "learning_rate": 0.0006,
+ "loss": 3.6216721534729004,
+ "step": 3149
+ },
+ {
+ "epoch": 43.75491480996068,
+ "grad_norm": 0.23485299944877625,
+ "learning_rate": 0.0006,
+ "loss": 3.6361191272735596,
+ "step": 3150
+ },
+ {
+ "epoch": 43.768894713848844,
+ "grad_norm": 0.20496341586112976,
+ "learning_rate": 0.0006,
+ "loss": 3.6258792877197266,
+ "step": 3151
+ },
+ {
+ "epoch": 43.782874617737,
+ "grad_norm": 0.21792510151863098,
+ "learning_rate": 0.0006,
+ "loss": 3.6522839069366455,
+ "step": 3152
+ },
+ {
+ "epoch": 43.796854521625164,
+ "grad_norm": 0.2589452564716339,
+ "learning_rate": 0.0006,
+ "loss": 3.651235580444336,
+ "step": 3153
+ },
+ {
+ "epoch": 43.81083442551333,
+ "grad_norm": 0.24883611500263214,
+ "learning_rate": 0.0006,
+ "loss": 3.6382546424865723,
+ "step": 3154
+ },
+ {
+ "epoch": 43.824814329401484,
+ "grad_norm": 0.22466720640659332,
+ "learning_rate": 0.0006,
+ "loss": 3.6232261657714844,
+ "step": 3155
+ },
+ {
+ "epoch": 43.83879423328965,
+ "grad_norm": 0.19477292895317078,
+ "learning_rate": 0.0006,
+ "loss": 3.6350135803222656,
+ "step": 3156
+ },
+ {
+ "epoch": 43.8527741371778,
+ "grad_norm": 0.20302540063858032,
+ "learning_rate": 0.0006,
+ "loss": 3.638143539428711,
+ "step": 3157
+ },
+ {
+ "epoch": 43.86675404106597,
+ "grad_norm": 0.2112276554107666,
+ "learning_rate": 0.0006,
+ "loss": 3.6415610313415527,
+ "step": 3158
+ },
+ {
+ "epoch": 43.88073394495413,
+ "grad_norm": 0.20544779300689697,
+ "learning_rate": 0.0006,
+ "loss": 3.6437134742736816,
+ "step": 3159
+ },
+ {
+ "epoch": 43.89471384884229,
+ "grad_norm": 0.2320292890071869,
+ "learning_rate": 0.0006,
+ "loss": 3.6178359985351562,
+ "step": 3160
+ },
+ {
+ "epoch": 43.90869375273045,
+ "grad_norm": 0.25862693786621094,
+ "learning_rate": 0.0006,
+ "loss": 3.618229389190674,
+ "step": 3161
+ },
+ {
+ "epoch": 43.92267365661861,
+ "grad_norm": 0.2741934061050415,
+ "learning_rate": 0.0006,
+ "loss": 3.6046690940856934,
+ "step": 3162
+ },
+ {
+ "epoch": 43.93665356050677,
+ "grad_norm": 0.24312593042850494,
+ "learning_rate": 0.0006,
+ "loss": 3.5835556983947754,
+ "step": 3163
+ },
+ {
+ "epoch": 43.95063346439493,
+ "grad_norm": 0.22174517810344696,
+ "learning_rate": 0.0006,
+ "loss": 3.6505162715911865,
+ "step": 3164
+ },
+ {
+ "epoch": 43.964613368283096,
+ "grad_norm": 0.22016975283622742,
+ "learning_rate": 0.0006,
+ "loss": 3.6385562419891357,
+ "step": 3165
+ },
+ {
+ "epoch": 43.97859327217125,
+ "grad_norm": 0.23034313321113586,
+ "learning_rate": 0.0006,
+ "loss": 3.6345865726470947,
+ "step": 3166
+ },
+ {
+ "epoch": 43.992573176059416,
+ "grad_norm": 0.21236231923103333,
+ "learning_rate": 0.0006,
+ "loss": 3.6337084770202637,
+ "step": 3167
+ },
+ {
+ "epoch": 44.0,
+ "grad_norm": 0.2344549298286438,
+ "learning_rate": 0.0006,
+ "loss": 3.677978515625,
+ "step": 3168
+ },
+ {
+ "epoch": 44.0,
+ "eval_loss": 3.9817888736724854,
+ "eval_runtime": 44.4396,
+ "eval_samples_per_second": 54.951,
+ "eval_steps_per_second": 3.443,
+ "step": 3168
+ },
+ {
+ "epoch": 44.01397990388816,
+ "grad_norm": 0.19790801405906677,
+ "learning_rate": 0.0006,
+ "loss": 3.590817451477051,
+ "step": 3169
+ },
+ {
+ "epoch": 44.02795980777632,
+ "grad_norm": 0.22922387719154358,
+ "learning_rate": 0.0006,
+ "loss": 3.643888473510742,
+ "step": 3170
+ },
+ {
+ "epoch": 44.04193971166448,
+ "grad_norm": 0.24750149250030518,
+ "learning_rate": 0.0006,
+ "loss": 3.596278667449951,
+ "step": 3171
+ },
+ {
+ "epoch": 44.05591961555265,
+ "grad_norm": 0.2511967420578003,
+ "learning_rate": 0.0006,
+ "loss": 3.6138253211975098,
+ "step": 3172
+ },
+ {
+ "epoch": 44.0698995194408,
+ "grad_norm": 0.2530326843261719,
+ "learning_rate": 0.0006,
+ "loss": 3.5710060596466064,
+ "step": 3173
+ },
+ {
+ "epoch": 44.083879423328966,
+ "grad_norm": 0.2629041373729706,
+ "learning_rate": 0.0006,
+ "loss": 3.61676025390625,
+ "step": 3174
+ },
+ {
+ "epoch": 44.09785932721712,
+ "grad_norm": 0.27373939752578735,
+ "learning_rate": 0.0006,
+ "loss": 3.613091230392456,
+ "step": 3175
+ },
+ {
+ "epoch": 44.111839231105286,
+ "grad_norm": 0.24354346096515656,
+ "learning_rate": 0.0006,
+ "loss": 3.6133360862731934,
+ "step": 3176
+ },
+ {
+ "epoch": 44.12581913499345,
+ "grad_norm": 0.21540892124176025,
+ "learning_rate": 0.0006,
+ "loss": 3.6367645263671875,
+ "step": 3177
+ },
+ {
+ "epoch": 44.139799038881605,
+ "grad_norm": 0.22251278162002563,
+ "learning_rate": 0.0006,
+ "loss": 3.6266322135925293,
+ "step": 3178
+ },
+ {
+ "epoch": 44.15377894276977,
+ "grad_norm": 0.26196029782295227,
+ "learning_rate": 0.0006,
+ "loss": 3.616487979888916,
+ "step": 3179
+ },
+ {
+ "epoch": 44.16775884665793,
+ "grad_norm": 0.2614341080188751,
+ "learning_rate": 0.0006,
+ "loss": 3.5902786254882812,
+ "step": 3180
+ },
+ {
+ "epoch": 44.18173875054609,
+ "grad_norm": 0.23517177999019623,
+ "learning_rate": 0.0006,
+ "loss": 3.610124111175537,
+ "step": 3181
+ },
+ {
+ "epoch": 44.19571865443425,
+ "grad_norm": 0.20091469585895538,
+ "learning_rate": 0.0006,
+ "loss": 3.5861713886260986,
+ "step": 3182
+ },
+ {
+ "epoch": 44.20969855832241,
+ "grad_norm": 0.19659830629825592,
+ "learning_rate": 0.0006,
+ "loss": 3.6157889366149902,
+ "step": 3183
+ },
+ {
+ "epoch": 44.22367846221057,
+ "grad_norm": 0.20690861344337463,
+ "learning_rate": 0.0006,
+ "loss": 3.5710649490356445,
+ "step": 3184
+ },
+ {
+ "epoch": 44.237658366098735,
+ "grad_norm": 0.2478247433900833,
+ "learning_rate": 0.0006,
+ "loss": 3.609031915664673,
+ "step": 3185
+ },
+ {
+ "epoch": 44.25163826998689,
+ "grad_norm": 0.2678471505641937,
+ "learning_rate": 0.0006,
+ "loss": 3.6412887573242188,
+ "step": 3186
+ },
+ {
+ "epoch": 44.265618173875055,
+ "grad_norm": 0.21856079995632172,
+ "learning_rate": 0.0006,
+ "loss": 3.6113123893737793,
+ "step": 3187
+ },
+ {
+ "epoch": 44.27959807776322,
+ "grad_norm": 0.23104850947856903,
+ "learning_rate": 0.0006,
+ "loss": 3.6022086143493652,
+ "step": 3188
+ },
+ {
+ "epoch": 44.293577981651374,
+ "grad_norm": 0.2380223423242569,
+ "learning_rate": 0.0006,
+ "loss": 3.598735809326172,
+ "step": 3189
+ },
+ {
+ "epoch": 44.30755788553954,
+ "grad_norm": 0.23005320131778717,
+ "learning_rate": 0.0006,
+ "loss": 3.595881938934326,
+ "step": 3190
+ },
+ {
+ "epoch": 44.3215377894277,
+ "grad_norm": 0.23327432572841644,
+ "learning_rate": 0.0006,
+ "loss": 3.6198601722717285,
+ "step": 3191
+ },
+ {
+ "epoch": 44.33551769331586,
+ "grad_norm": 0.2272268831729889,
+ "learning_rate": 0.0006,
+ "loss": 3.6135387420654297,
+ "step": 3192
+ },
+ {
+ "epoch": 44.34949759720402,
+ "grad_norm": 0.2518279552459717,
+ "learning_rate": 0.0006,
+ "loss": 3.6084556579589844,
+ "step": 3193
+ },
+ {
+ "epoch": 44.36347750109218,
+ "grad_norm": 0.27668607234954834,
+ "learning_rate": 0.0006,
+ "loss": 3.644430160522461,
+ "step": 3194
+ },
+ {
+ "epoch": 44.37745740498034,
+ "grad_norm": 0.26110342144966125,
+ "learning_rate": 0.0006,
+ "loss": 3.64072322845459,
+ "step": 3195
+ },
+ {
+ "epoch": 44.391437308868504,
+ "grad_norm": 0.22767964005470276,
+ "learning_rate": 0.0006,
+ "loss": 3.5570502281188965,
+ "step": 3196
+ },
+ {
+ "epoch": 44.40541721275666,
+ "grad_norm": 0.2199093997478485,
+ "learning_rate": 0.0006,
+ "loss": 3.558889150619507,
+ "step": 3197
+ },
+ {
+ "epoch": 44.419397116644824,
+ "grad_norm": 0.21653494238853455,
+ "learning_rate": 0.0006,
+ "loss": 3.6215333938598633,
+ "step": 3198
+ },
+ {
+ "epoch": 44.43337702053299,
+ "grad_norm": 0.1958773136138916,
+ "learning_rate": 0.0006,
+ "loss": 3.588468551635742,
+ "step": 3199
+ },
+ {
+ "epoch": 44.44735692442114,
+ "grad_norm": 0.20205403864383698,
+ "learning_rate": 0.0006,
+ "loss": 3.6109578609466553,
+ "step": 3200
+ },
+ {
+ "epoch": 44.46133682830931,
+ "grad_norm": 0.19632115960121155,
+ "learning_rate": 0.0006,
+ "loss": 3.634315013885498,
+ "step": 3201
+ },
+ {
+ "epoch": 44.47531673219746,
+ "grad_norm": 0.19327203929424286,
+ "learning_rate": 0.0006,
+ "loss": 3.6335930824279785,
+ "step": 3202
+ },
+ {
+ "epoch": 44.489296636085626,
+ "grad_norm": 0.19743897020816803,
+ "learning_rate": 0.0006,
+ "loss": 3.6164016723632812,
+ "step": 3203
+ },
+ {
+ "epoch": 44.50327653997379,
+ "grad_norm": 0.20413564145565033,
+ "learning_rate": 0.0006,
+ "loss": 3.663613796234131,
+ "step": 3204
+ },
+ {
+ "epoch": 44.517256443861946,
+ "grad_norm": 0.2057798206806183,
+ "learning_rate": 0.0006,
+ "loss": 3.625131130218506,
+ "step": 3205
+ },
+ {
+ "epoch": 44.53123634775011,
+ "grad_norm": 0.20076915621757507,
+ "learning_rate": 0.0006,
+ "loss": 3.6362178325653076,
+ "step": 3206
+ },
+ {
+ "epoch": 44.54521625163827,
+ "grad_norm": 0.2381955236196518,
+ "learning_rate": 0.0006,
+ "loss": 3.621263265609741,
+ "step": 3207
+ },
+ {
+ "epoch": 44.55919615552643,
+ "grad_norm": 0.27008768916130066,
+ "learning_rate": 0.0006,
+ "loss": 3.6133322715759277,
+ "step": 3208
+ },
+ {
+ "epoch": 44.57317605941459,
+ "grad_norm": 0.25677573680877686,
+ "learning_rate": 0.0006,
+ "loss": 3.6210851669311523,
+ "step": 3209
+ },
+ {
+ "epoch": 44.58715596330275,
+ "grad_norm": 0.21022997796535492,
+ "learning_rate": 0.0006,
+ "loss": 3.626483917236328,
+ "step": 3210
+ },
+ {
+ "epoch": 44.60113586719091,
+ "grad_norm": 0.19918566942214966,
+ "learning_rate": 0.0006,
+ "loss": 3.6321091651916504,
+ "step": 3211
+ },
+ {
+ "epoch": 44.615115771079076,
+ "grad_norm": 0.2114727795124054,
+ "learning_rate": 0.0006,
+ "loss": 3.5767595767974854,
+ "step": 3212
+ },
+ {
+ "epoch": 44.62909567496723,
+ "grad_norm": 0.20968441665172577,
+ "learning_rate": 0.0006,
+ "loss": 3.6040430068969727,
+ "step": 3213
+ },
+ {
+ "epoch": 44.643075578855395,
+ "grad_norm": 0.19996227324008942,
+ "learning_rate": 0.0006,
+ "loss": 3.6688590049743652,
+ "step": 3214
+ },
+ {
+ "epoch": 44.65705548274356,
+ "grad_norm": 0.19998830556869507,
+ "learning_rate": 0.0006,
+ "loss": 3.6349434852600098,
+ "step": 3215
+ },
+ {
+ "epoch": 44.671035386631715,
+ "grad_norm": 0.20812496542930603,
+ "learning_rate": 0.0006,
+ "loss": 3.6363840103149414,
+ "step": 3216
+ },
+ {
+ "epoch": 44.68501529051988,
+ "grad_norm": 0.1988825500011444,
+ "learning_rate": 0.0006,
+ "loss": 3.6180496215820312,
+ "step": 3217
+ },
+ {
+ "epoch": 44.69899519440804,
+ "grad_norm": 0.2114664614200592,
+ "learning_rate": 0.0006,
+ "loss": 3.6362106800079346,
+ "step": 3218
+ },
+ {
+ "epoch": 44.7129750982962,
+ "grad_norm": 0.19847962260246277,
+ "learning_rate": 0.0006,
+ "loss": 3.618500232696533,
+ "step": 3219
+ },
+ {
+ "epoch": 44.72695500218436,
+ "grad_norm": 0.19903887808322906,
+ "learning_rate": 0.0006,
+ "loss": 3.6360888481140137,
+ "step": 3220
+ },
+ {
+ "epoch": 44.74093490607252,
+ "grad_norm": 0.21198545396327972,
+ "learning_rate": 0.0006,
+ "loss": 3.6347005367279053,
+ "step": 3221
+ },
+ {
+ "epoch": 44.75491480996068,
+ "grad_norm": 0.18334898352622986,
+ "learning_rate": 0.0006,
+ "loss": 3.6160783767700195,
+ "step": 3222
+ },
+ {
+ "epoch": 44.768894713848844,
+ "grad_norm": 0.19260665774345398,
+ "learning_rate": 0.0006,
+ "loss": 3.6322834491729736,
+ "step": 3223
+ },
+ {
+ "epoch": 44.782874617737,
+ "grad_norm": 0.2084558755159378,
+ "learning_rate": 0.0006,
+ "loss": 3.615227699279785,
+ "step": 3224
+ },
+ {
+ "epoch": 44.796854521625164,
+ "grad_norm": 0.24538686871528625,
+ "learning_rate": 0.0006,
+ "loss": 3.6387081146240234,
+ "step": 3225
+ },
+ {
+ "epoch": 44.81083442551333,
+ "grad_norm": 0.23291894793510437,
+ "learning_rate": 0.0006,
+ "loss": 3.6245408058166504,
+ "step": 3226
+ },
+ {
+ "epoch": 44.824814329401484,
+ "grad_norm": 0.20715969800949097,
+ "learning_rate": 0.0006,
+ "loss": 3.633620262145996,
+ "step": 3227
+ },
+ {
+ "epoch": 44.83879423328965,
+ "grad_norm": 0.20866821706295013,
+ "learning_rate": 0.0006,
+ "loss": 3.613438129425049,
+ "step": 3228
+ },
+ {
+ "epoch": 44.8527741371778,
+ "grad_norm": 0.2048904299736023,
+ "learning_rate": 0.0006,
+ "loss": 3.668807029724121,
+ "step": 3229
+ },
+ {
+ "epoch": 44.86675404106597,
+ "grad_norm": 0.2073894739151001,
+ "learning_rate": 0.0006,
+ "loss": 3.6000914573669434,
+ "step": 3230
+ },
+ {
+ "epoch": 44.88073394495413,
+ "grad_norm": 0.22017404437065125,
+ "learning_rate": 0.0006,
+ "loss": 3.6024718284606934,
+ "step": 3231
+ },
+ {
+ "epoch": 44.89471384884229,
+ "grad_norm": 0.23971669375896454,
+ "learning_rate": 0.0006,
+ "loss": 3.6339516639709473,
+ "step": 3232
+ },
+ {
+ "epoch": 44.90869375273045,
+ "grad_norm": 0.2258273959159851,
+ "learning_rate": 0.0006,
+ "loss": 3.6480093002319336,
+ "step": 3233
+ },
+ {
+ "epoch": 44.92267365661861,
+ "grad_norm": 0.22079502046108246,
+ "learning_rate": 0.0006,
+ "loss": 3.643446922302246,
+ "step": 3234
+ },
+ {
+ "epoch": 44.93665356050677,
+ "grad_norm": 0.22109337151050568,
+ "learning_rate": 0.0006,
+ "loss": 3.5975499153137207,
+ "step": 3235
+ },
+ {
+ "epoch": 44.95063346439493,
+ "grad_norm": 0.20142309367656708,
+ "learning_rate": 0.0006,
+ "loss": 3.6057305335998535,
+ "step": 3236
+ },
+ {
+ "epoch": 44.964613368283096,
+ "grad_norm": 0.20089569687843323,
+ "learning_rate": 0.0006,
+ "loss": 3.5900750160217285,
+ "step": 3237
+ },
+ {
+ "epoch": 44.97859327217125,
+ "grad_norm": 0.19860075414180756,
+ "learning_rate": 0.0006,
+ "loss": 3.5954184532165527,
+ "step": 3238
+ },
+ {
+ "epoch": 44.992573176059416,
+ "grad_norm": 0.19166013598442078,
+ "learning_rate": 0.0006,
+ "loss": 3.6568803787231445,
+ "step": 3239
+ },
+ {
+ "epoch": 45.0,
+ "grad_norm": 0.22416932880878448,
+ "learning_rate": 0.0006,
+ "loss": 3.6483092308044434,
+ "step": 3240
+ },
+ {
+ "epoch": 45.0,
+ "eval_loss": 3.9821224212646484,
+ "eval_runtime": 44.5415,
+ "eval_samples_per_second": 54.825,
+ "eval_steps_per_second": 3.435,
+ "step": 3240
+ },
+ {
+ "epoch": 45.01397990388816,
+ "grad_norm": 0.2107669562101364,
+ "learning_rate": 0.0006,
+ "loss": 3.5858099460601807,
+ "step": 3241
+ },
+ {
+ "epoch": 45.02795980777632,
+ "grad_norm": 0.20831939578056335,
+ "learning_rate": 0.0006,
+ "loss": 3.5793800354003906,
+ "step": 3242
+ },
+ {
+ "epoch": 45.04193971166448,
+ "grad_norm": 0.2169167846441269,
+ "learning_rate": 0.0006,
+ "loss": 3.601961135864258,
+ "step": 3243
+ },
+ {
+ "epoch": 45.05591961555265,
+ "grad_norm": 0.22451531887054443,
+ "learning_rate": 0.0006,
+ "loss": 3.586371898651123,
+ "step": 3244
+ },
+ {
+ "epoch": 45.0698995194408,
+ "grad_norm": 0.2187003344297409,
+ "learning_rate": 0.0006,
+ "loss": 3.58760929107666,
+ "step": 3245
+ },
+ {
+ "epoch": 45.083879423328966,
+ "grad_norm": 0.22805631160736084,
+ "learning_rate": 0.0006,
+ "loss": 3.554107904434204,
+ "step": 3246
+ },
+ {
+ "epoch": 45.09785932721712,
+ "grad_norm": 0.2573186159133911,
+ "learning_rate": 0.0006,
+ "loss": 3.5815420150756836,
+ "step": 3247
+ },
+ {
+ "epoch": 45.111839231105286,
+ "grad_norm": 0.25940126180648804,
+ "learning_rate": 0.0006,
+ "loss": 3.5754308700561523,
+ "step": 3248
+ },
+ {
+ "epoch": 45.12581913499345,
+ "grad_norm": 0.23834384977817535,
+ "learning_rate": 0.0006,
+ "loss": 3.5857350826263428,
+ "step": 3249
+ },
+ {
+ "epoch": 45.139799038881605,
+ "grad_norm": 0.23342885076999664,
+ "learning_rate": 0.0006,
+ "loss": 3.6116228103637695,
+ "step": 3250
+ },
+ {
+ "epoch": 45.15377894276977,
+ "grad_norm": 0.23284269869327545,
+ "learning_rate": 0.0006,
+ "loss": 3.5778629779815674,
+ "step": 3251
+ },
+ {
+ "epoch": 45.16775884665793,
+ "grad_norm": 0.30510780215263367,
+ "learning_rate": 0.0006,
+ "loss": 3.5888915061950684,
+ "step": 3252
+ },
+ {
+ "epoch": 45.18173875054609,
+ "grad_norm": 0.3462519645690918,
+ "learning_rate": 0.0006,
+ "loss": 3.5955758094787598,
+ "step": 3253
+ },
+ {
+ "epoch": 45.19571865443425,
+ "grad_norm": 0.2795974314212799,
+ "learning_rate": 0.0006,
+ "loss": 3.6222946643829346,
+ "step": 3254
+ },
+ {
+ "epoch": 45.20969855832241,
+ "grad_norm": 0.24624103307724,
+ "learning_rate": 0.0006,
+ "loss": 3.63046932220459,
+ "step": 3255
+ },
+ {
+ "epoch": 45.22367846221057,
+ "grad_norm": 0.23007310926914215,
+ "learning_rate": 0.0006,
+ "loss": 3.652526378631592,
+ "step": 3256
+ },
+ {
+ "epoch": 45.237658366098735,
+ "grad_norm": 0.21325333416461945,
+ "learning_rate": 0.0006,
+ "loss": 3.5960049629211426,
+ "step": 3257
+ },
+ {
+ "epoch": 45.25163826998689,
+ "grad_norm": 0.22697314620018005,
+ "learning_rate": 0.0006,
+ "loss": 3.5723695755004883,
+ "step": 3258
+ },
+ {
+ "epoch": 45.265618173875055,
+ "grad_norm": 0.21900491416454315,
+ "learning_rate": 0.0006,
+ "loss": 3.613572120666504,
+ "step": 3259
+ },
+ {
+ "epoch": 45.27959807776322,
+ "grad_norm": 0.21030694246292114,
+ "learning_rate": 0.0006,
+ "loss": 3.5830235481262207,
+ "step": 3260
+ },
+ {
+ "epoch": 45.293577981651374,
+ "grad_norm": 0.20229968428611755,
+ "learning_rate": 0.0006,
+ "loss": 3.620349884033203,
+ "step": 3261
+ },
+ {
+ "epoch": 45.30755788553954,
+ "grad_norm": 0.21611201763153076,
+ "learning_rate": 0.0006,
+ "loss": 3.5937819480895996,
+ "step": 3262
+ },
+ {
+ "epoch": 45.3215377894277,
+ "grad_norm": 0.21876764297485352,
+ "learning_rate": 0.0006,
+ "loss": 3.6180777549743652,
+ "step": 3263
+ },
+ {
+ "epoch": 45.33551769331586,
+ "grad_norm": 0.200356587767601,
+ "learning_rate": 0.0006,
+ "loss": 3.6140146255493164,
+ "step": 3264
+ },
+ {
+ "epoch": 45.34949759720402,
+ "grad_norm": 0.19151835143566132,
+ "learning_rate": 0.0006,
+ "loss": 3.607077121734619,
+ "step": 3265
+ },
+ {
+ "epoch": 45.36347750109218,
+ "grad_norm": 0.1994648575782776,
+ "learning_rate": 0.0006,
+ "loss": 3.646780490875244,
+ "step": 3266
+ },
+ {
+ "epoch": 45.37745740498034,
+ "grad_norm": 0.23145829141139984,
+ "learning_rate": 0.0006,
+ "loss": 3.624591588973999,
+ "step": 3267
+ },
+ {
+ "epoch": 45.391437308868504,
+ "grad_norm": 0.23608829081058502,
+ "learning_rate": 0.0006,
+ "loss": 3.598904609680176,
+ "step": 3268
+ },
+ {
+ "epoch": 45.40541721275666,
+ "grad_norm": 0.22254547476768494,
+ "learning_rate": 0.0006,
+ "loss": 3.581087827682495,
+ "step": 3269
+ },
+ {
+ "epoch": 45.419397116644824,
+ "grad_norm": 0.21640023589134216,
+ "learning_rate": 0.0006,
+ "loss": 3.5961151123046875,
+ "step": 3270
+ },
+ {
+ "epoch": 45.43337702053299,
+ "grad_norm": 0.2252444475889206,
+ "learning_rate": 0.0006,
+ "loss": 3.590231418609619,
+ "step": 3271
+ },
+ {
+ "epoch": 45.44735692442114,
+ "grad_norm": 0.23785367608070374,
+ "learning_rate": 0.0006,
+ "loss": 3.615896701812744,
+ "step": 3272
+ },
+ {
+ "epoch": 45.46133682830931,
+ "grad_norm": 0.2509191036224365,
+ "learning_rate": 0.0006,
+ "loss": 3.6413722038269043,
+ "step": 3273
+ },
+ {
+ "epoch": 45.47531673219746,
+ "grad_norm": 0.23734210431575775,
+ "learning_rate": 0.0006,
+ "loss": 3.608898639678955,
+ "step": 3274
+ },
+ {
+ "epoch": 45.489296636085626,
+ "grad_norm": 0.19802412390708923,
+ "learning_rate": 0.0006,
+ "loss": 3.5957250595092773,
+ "step": 3275
+ },
+ {
+ "epoch": 45.50327653997379,
+ "grad_norm": 0.20621423423290253,
+ "learning_rate": 0.0006,
+ "loss": 3.607945442199707,
+ "step": 3276
+ },
+ {
+ "epoch": 45.517256443861946,
+ "grad_norm": 0.225870743393898,
+ "learning_rate": 0.0006,
+ "loss": 3.641449451446533,
+ "step": 3277
+ },
+ {
+ "epoch": 45.53123634775011,
+ "grad_norm": 0.21482397615909576,
+ "learning_rate": 0.0006,
+ "loss": 3.61629581451416,
+ "step": 3278
+ },
+ {
+ "epoch": 45.54521625163827,
+ "grad_norm": 0.21159376204013824,
+ "learning_rate": 0.0006,
+ "loss": 3.5977988243103027,
+ "step": 3279
+ },
+ {
+ "epoch": 45.55919615552643,
+ "grad_norm": 0.2031678408384323,
+ "learning_rate": 0.0006,
+ "loss": 3.629343032836914,
+ "step": 3280
+ },
+ {
+ "epoch": 45.57317605941459,
+ "grad_norm": 0.1827101707458496,
+ "learning_rate": 0.0006,
+ "loss": 3.6161365509033203,
+ "step": 3281
+ },
+ {
+ "epoch": 45.58715596330275,
+ "grad_norm": 0.21884584426879883,
+ "learning_rate": 0.0006,
+ "loss": 3.6131834983825684,
+ "step": 3282
+ },
+ {
+ "epoch": 45.60113586719091,
+ "grad_norm": 0.21764980256557465,
+ "learning_rate": 0.0006,
+ "loss": 3.612516164779663,
+ "step": 3283
+ },
+ {
+ "epoch": 45.615115771079076,
+ "grad_norm": 0.22257080674171448,
+ "learning_rate": 0.0006,
+ "loss": 3.63425874710083,
+ "step": 3284
+ },
+ {
+ "epoch": 45.62909567496723,
+ "grad_norm": 0.2419128566980362,
+ "learning_rate": 0.0006,
+ "loss": 3.602997064590454,
+ "step": 3285
+ },
+ {
+ "epoch": 45.643075578855395,
+ "grad_norm": 0.20856884121894836,
+ "learning_rate": 0.0006,
+ "loss": 3.597352981567383,
+ "step": 3286
+ },
+ {
+ "epoch": 45.65705548274356,
+ "grad_norm": 0.20298589766025543,
+ "learning_rate": 0.0006,
+ "loss": 3.5961315631866455,
+ "step": 3287
+ },
+ {
+ "epoch": 45.671035386631715,
+ "grad_norm": 0.19006133079528809,
+ "learning_rate": 0.0006,
+ "loss": 3.6314568519592285,
+ "step": 3288
+ },
+ {
+ "epoch": 45.68501529051988,
+ "grad_norm": 0.20886142551898956,
+ "learning_rate": 0.0006,
+ "loss": 3.6200413703918457,
+ "step": 3289
+ },
+ {
+ "epoch": 45.69899519440804,
+ "grad_norm": 0.18085862696170807,
+ "learning_rate": 0.0006,
+ "loss": 3.6273961067199707,
+ "step": 3290
+ },
+ {
+ "epoch": 45.7129750982962,
+ "grad_norm": 0.18651945888996124,
+ "learning_rate": 0.0006,
+ "loss": 3.6490976810455322,
+ "step": 3291
+ },
+ {
+ "epoch": 45.72695500218436,
+ "grad_norm": 0.19668170809745789,
+ "learning_rate": 0.0006,
+ "loss": 3.610409736633301,
+ "step": 3292
+ },
+ {
+ "epoch": 45.74093490607252,
+ "grad_norm": 0.19865764677524567,
+ "learning_rate": 0.0006,
+ "loss": 3.614025115966797,
+ "step": 3293
+ },
+ {
+ "epoch": 45.75491480996068,
+ "grad_norm": 0.20814085006713867,
+ "learning_rate": 0.0006,
+ "loss": 3.6220510005950928,
+ "step": 3294
+ },
+ {
+ "epoch": 45.768894713848844,
+ "grad_norm": 0.20996463298797607,
+ "learning_rate": 0.0006,
+ "loss": 3.5754218101501465,
+ "step": 3295
+ },
+ {
+ "epoch": 45.782874617737,
+ "grad_norm": 0.1987130492925644,
+ "learning_rate": 0.0006,
+ "loss": 3.614746570587158,
+ "step": 3296
+ },
+ {
+ "epoch": 45.796854521625164,
+ "grad_norm": 0.23048028349876404,
+ "learning_rate": 0.0006,
+ "loss": 3.602620840072632,
+ "step": 3297
+ },
+ {
+ "epoch": 45.81083442551333,
+ "grad_norm": 0.21877387166023254,
+ "learning_rate": 0.0006,
+ "loss": 3.6294198036193848,
+ "step": 3298
+ },
+ {
+ "epoch": 45.824814329401484,
+ "grad_norm": 0.20007763803005219,
+ "learning_rate": 0.0006,
+ "loss": 3.630868434906006,
+ "step": 3299
+ },
+ {
+ "epoch": 45.83879423328965,
+ "grad_norm": 0.200496107339859,
+ "learning_rate": 0.0006,
+ "loss": 3.5972986221313477,
+ "step": 3300
+ },
+ {
+ "epoch": 45.8527741371778,
+ "grad_norm": 0.20494480431079865,
+ "learning_rate": 0.0006,
+ "loss": 3.61934494972229,
+ "step": 3301
+ },
+ {
+ "epoch": 45.86675404106597,
+ "grad_norm": 0.21374984085559845,
+ "learning_rate": 0.0006,
+ "loss": 3.6236257553100586,
+ "step": 3302
+ },
+ {
+ "epoch": 45.88073394495413,
+ "grad_norm": 0.22020408511161804,
+ "learning_rate": 0.0006,
+ "loss": 3.6030755043029785,
+ "step": 3303
+ },
+ {
+ "epoch": 45.89471384884229,
+ "grad_norm": 0.2239987701177597,
+ "learning_rate": 0.0006,
+ "loss": 3.6778974533081055,
+ "step": 3304
+ },
+ {
+ "epoch": 45.90869375273045,
+ "grad_norm": 0.22156383097171783,
+ "learning_rate": 0.0006,
+ "loss": 3.6186561584472656,
+ "step": 3305
+ },
+ {
+ "epoch": 45.92267365661861,
+ "grad_norm": 0.2264711856842041,
+ "learning_rate": 0.0006,
+ "loss": 3.6349918842315674,
+ "step": 3306
+ },
+ {
+ "epoch": 45.93665356050677,
+ "grad_norm": 0.2287975549697876,
+ "learning_rate": 0.0006,
+ "loss": 3.600268840789795,
+ "step": 3307
+ },
+ {
+ "epoch": 45.95063346439493,
+ "grad_norm": 0.22459761798381805,
+ "learning_rate": 0.0006,
+ "loss": 3.6029114723205566,
+ "step": 3308
+ },
+ {
+ "epoch": 45.964613368283096,
+ "grad_norm": 0.2430959790945053,
+ "learning_rate": 0.0006,
+ "loss": 3.6781656742095947,
+ "step": 3309
+ },
+ {
+ "epoch": 45.97859327217125,
+ "grad_norm": 0.2718662619590759,
+ "learning_rate": 0.0006,
+ "loss": 3.606778144836426,
+ "step": 3310
+ },
+ {
+ "epoch": 45.992573176059416,
+ "grad_norm": 0.27250170707702637,
+ "learning_rate": 0.0006,
+ "loss": 3.6142611503601074,
+ "step": 3311
+ },
+ {
+ "epoch": 46.0,
+ "grad_norm": 0.26663821935653687,
+ "learning_rate": 0.0006,
+ "loss": 3.6367483139038086,
+ "step": 3312
+ },
+ {
+ "epoch": 46.0,
+ "eval_loss": 3.9835095405578613,
+ "eval_runtime": 44.6504,
+ "eval_samples_per_second": 54.692,
+ "eval_steps_per_second": 3.427,
+ "step": 3312
+ },
+ {
+ "epoch": 46.01397990388816,
+ "grad_norm": 0.22670713067054749,
+ "learning_rate": 0.0006,
+ "loss": 3.5553648471832275,
+ "step": 3313
+ },
+ {
+ "epoch": 46.02795980777632,
+ "grad_norm": 0.2759886384010315,
+ "learning_rate": 0.0006,
+ "loss": 3.595186948776245,
+ "step": 3314
+ },
+ {
+ "epoch": 46.04193971166448,
+ "grad_norm": 0.31634145975112915,
+ "learning_rate": 0.0006,
+ "loss": 3.5805907249450684,
+ "step": 3315
+ },
+ {
+ "epoch": 46.05591961555265,
+ "grad_norm": 0.3097986578941345,
+ "learning_rate": 0.0006,
+ "loss": 3.593407154083252,
+ "step": 3316
+ },
+ {
+ "epoch": 46.0698995194408,
+ "grad_norm": 0.24616138637065887,
+ "learning_rate": 0.0006,
+ "loss": 3.606736898422241,
+ "step": 3317
+ },
+ {
+ "epoch": 46.083879423328966,
+ "grad_norm": 0.22210408747196198,
+ "learning_rate": 0.0006,
+ "loss": 3.59546160697937,
+ "step": 3318
+ },
+ {
+ "epoch": 46.09785932721712,
+ "grad_norm": 0.2429778128862381,
+ "learning_rate": 0.0006,
+ "loss": 3.5900321006774902,
+ "step": 3319
+ },
+ {
+ "epoch": 46.111839231105286,
+ "grad_norm": 0.22875761985778809,
+ "learning_rate": 0.0006,
+ "loss": 3.5793521404266357,
+ "step": 3320
+ },
+ {
+ "epoch": 46.12581913499345,
+ "grad_norm": 0.21508760750293732,
+ "learning_rate": 0.0006,
+ "loss": 3.5462498664855957,
+ "step": 3321
+ },
+ {
+ "epoch": 46.139799038881605,
+ "grad_norm": 0.23590944707393646,
+ "learning_rate": 0.0006,
+ "loss": 3.6247925758361816,
+ "step": 3322
+ },
+ {
+ "epoch": 46.15377894276977,
+ "grad_norm": 0.22288036346435547,
+ "learning_rate": 0.0006,
+ "loss": 3.6063995361328125,
+ "step": 3323
+ },
+ {
+ "epoch": 46.16775884665793,
+ "grad_norm": 0.20460885763168335,
+ "learning_rate": 0.0006,
+ "loss": 3.5744826793670654,
+ "step": 3324
+ },
+ {
+ "epoch": 46.18173875054609,
+ "grad_norm": 0.20172059535980225,
+ "learning_rate": 0.0006,
+ "loss": 3.5827057361602783,
+ "step": 3325
+ },
+ {
+ "epoch": 46.19571865443425,
+ "grad_norm": 0.2268448770046234,
+ "learning_rate": 0.0006,
+ "loss": 3.5801379680633545,
+ "step": 3326
+ },
+ {
+ "epoch": 46.20969855832241,
+ "grad_norm": 0.2244444191455841,
+ "learning_rate": 0.0006,
+ "loss": 3.5790224075317383,
+ "step": 3327
+ },
+ {
+ "epoch": 46.22367846221057,
+ "grad_norm": 0.20954380929470062,
+ "learning_rate": 0.0006,
+ "loss": 3.5979342460632324,
+ "step": 3328
+ },
+ {
+ "epoch": 46.237658366098735,
+ "grad_norm": 0.21395887434482574,
+ "learning_rate": 0.0006,
+ "loss": 3.6015186309814453,
+ "step": 3329
+ },
+ {
+ "epoch": 46.25163826998689,
+ "grad_norm": 0.23200181126594543,
+ "learning_rate": 0.0006,
+ "loss": 3.5904979705810547,
+ "step": 3330
+ },
+ {
+ "epoch": 46.265618173875055,
+ "grad_norm": 0.20558731257915497,
+ "learning_rate": 0.0006,
+ "loss": 3.5745811462402344,
+ "step": 3331
+ },
+ {
+ "epoch": 46.27959807776322,
+ "grad_norm": 0.1973227560520172,
+ "learning_rate": 0.0006,
+ "loss": 3.588560104370117,
+ "step": 3332
+ },
+ {
+ "epoch": 46.293577981651374,
+ "grad_norm": 0.2137945592403412,
+ "learning_rate": 0.0006,
+ "loss": 3.606064796447754,
+ "step": 3333
+ },
+ {
+ "epoch": 46.30755788553954,
+ "grad_norm": 0.2082151472568512,
+ "learning_rate": 0.0006,
+ "loss": 3.569392442703247,
+ "step": 3334
+ },
+ {
+ "epoch": 46.3215377894277,
+ "grad_norm": 0.2151029258966446,
+ "learning_rate": 0.0006,
+ "loss": 3.6016604900360107,
+ "step": 3335
+ },
+ {
+ "epoch": 46.33551769331586,
+ "grad_norm": 0.2256474643945694,
+ "learning_rate": 0.0006,
+ "loss": 3.571319580078125,
+ "step": 3336
+ },
+ {
+ "epoch": 46.34949759720402,
+ "grad_norm": 0.21454207599163055,
+ "learning_rate": 0.0006,
+ "loss": 3.6028685569763184,
+ "step": 3337
+ },
+ {
+ "epoch": 46.36347750109218,
+ "grad_norm": 0.21864144504070282,
+ "learning_rate": 0.0006,
+ "loss": 3.6146860122680664,
+ "step": 3338
+ },
+ {
+ "epoch": 46.37745740498034,
+ "grad_norm": 0.24512453377246857,
+ "learning_rate": 0.0006,
+ "loss": 3.614696502685547,
+ "step": 3339
+ },
+ {
+ "epoch": 46.391437308868504,
+ "grad_norm": 0.26355695724487305,
+ "learning_rate": 0.0006,
+ "loss": 3.6124234199523926,
+ "step": 3340
+ },
+ {
+ "epoch": 46.40541721275666,
+ "grad_norm": 0.2778678834438324,
+ "learning_rate": 0.0006,
+ "loss": 3.6075634956359863,
+ "step": 3341
+ },
+ {
+ "epoch": 46.419397116644824,
+ "grad_norm": 0.2626822292804718,
+ "learning_rate": 0.0006,
+ "loss": 3.59267520904541,
+ "step": 3342
+ },
+ {
+ "epoch": 46.43337702053299,
+ "grad_norm": 0.2211887091398239,
+ "learning_rate": 0.0006,
+ "loss": 3.606135606765747,
+ "step": 3343
+ },
+ {
+ "epoch": 46.44735692442114,
+ "grad_norm": 0.20117639005184174,
+ "learning_rate": 0.0006,
+ "loss": 3.566512107849121,
+ "step": 3344
+ },
+ {
+ "epoch": 46.46133682830931,
+ "grad_norm": 0.20202599465847015,
+ "learning_rate": 0.0006,
+ "loss": 3.603398561477661,
+ "step": 3345
+ },
+ {
+ "epoch": 46.47531673219746,
+ "grad_norm": 0.22238481044769287,
+ "learning_rate": 0.0006,
+ "loss": 3.599888324737549,
+ "step": 3346
+ },
+ {
+ "epoch": 46.489296636085626,
+ "grad_norm": 0.23298178613185883,
+ "learning_rate": 0.0006,
+ "loss": 3.6135406494140625,
+ "step": 3347
+ },
+ {
+ "epoch": 46.50327653997379,
+ "grad_norm": 0.21998152136802673,
+ "learning_rate": 0.0006,
+ "loss": 3.6022939682006836,
+ "step": 3348
+ },
+ {
+ "epoch": 46.517256443861946,
+ "grad_norm": 0.22595210373401642,
+ "learning_rate": 0.0006,
+ "loss": 3.605905532836914,
+ "step": 3349
+ },
+ {
+ "epoch": 46.53123634775011,
+ "grad_norm": 0.23549678921699524,
+ "learning_rate": 0.0006,
+ "loss": 3.606264591217041,
+ "step": 3350
+ },
+ {
+ "epoch": 46.54521625163827,
+ "grad_norm": 0.2075573205947876,
+ "learning_rate": 0.0006,
+ "loss": 3.580575942993164,
+ "step": 3351
+ },
+ {
+ "epoch": 46.55919615552643,
+ "grad_norm": 0.19052642583847046,
+ "learning_rate": 0.0006,
+ "loss": 3.618326187133789,
+ "step": 3352
+ },
+ {
+ "epoch": 46.57317605941459,
+ "grad_norm": 0.20372900366783142,
+ "learning_rate": 0.0006,
+ "loss": 3.5817952156066895,
+ "step": 3353
+ },
+ {
+ "epoch": 46.58715596330275,
+ "grad_norm": 0.20024648308753967,
+ "learning_rate": 0.0006,
+ "loss": 3.6128273010253906,
+ "step": 3354
+ },
+ {
+ "epoch": 46.60113586719091,
+ "grad_norm": 0.20892181992530823,
+ "learning_rate": 0.0006,
+ "loss": 3.6173012256622314,
+ "step": 3355
+ },
+ {
+ "epoch": 46.615115771079076,
+ "grad_norm": 0.20254571735858917,
+ "learning_rate": 0.0006,
+ "loss": 3.5924699306488037,
+ "step": 3356
+ },
+ {
+ "epoch": 46.62909567496723,
+ "grad_norm": 0.20290599763393402,
+ "learning_rate": 0.0006,
+ "loss": 3.6134514808654785,
+ "step": 3357
+ },
+ {
+ "epoch": 46.643075578855395,
+ "grad_norm": 0.23314513266086578,
+ "learning_rate": 0.0006,
+ "loss": 3.604102611541748,
+ "step": 3358
+ },
+ {
+ "epoch": 46.65705548274356,
+ "grad_norm": 0.2352486401796341,
+ "learning_rate": 0.0006,
+ "loss": 3.6210808753967285,
+ "step": 3359
+ },
+ {
+ "epoch": 46.671035386631715,
+ "grad_norm": 0.2289503663778305,
+ "learning_rate": 0.0006,
+ "loss": 3.596968650817871,
+ "step": 3360
+ },
+ {
+ "epoch": 46.68501529051988,
+ "grad_norm": 0.19971057772636414,
+ "learning_rate": 0.0006,
+ "loss": 3.5973198413848877,
+ "step": 3361
+ },
+ {
+ "epoch": 46.69899519440804,
+ "grad_norm": 0.21000619232654572,
+ "learning_rate": 0.0006,
+ "loss": 3.607048511505127,
+ "step": 3362
+ },
+ {
+ "epoch": 46.7129750982962,
+ "grad_norm": 0.22295686602592468,
+ "learning_rate": 0.0006,
+ "loss": 3.6323728561401367,
+ "step": 3363
+ },
+ {
+ "epoch": 46.72695500218436,
+ "grad_norm": 0.21939052641391754,
+ "learning_rate": 0.0006,
+ "loss": 3.6073317527770996,
+ "step": 3364
+ },
+ {
+ "epoch": 46.74093490607252,
+ "grad_norm": 0.2192271202802658,
+ "learning_rate": 0.0006,
+ "loss": 3.6396851539611816,
+ "step": 3365
+ },
+ {
+ "epoch": 46.75491480996068,
+ "grad_norm": 0.20871607959270477,
+ "learning_rate": 0.0006,
+ "loss": 3.613509178161621,
+ "step": 3366
+ },
+ {
+ "epoch": 46.768894713848844,
+ "grad_norm": 0.1837828904390335,
+ "learning_rate": 0.0006,
+ "loss": 3.604039192199707,
+ "step": 3367
+ },
+ {
+ "epoch": 46.782874617737,
+ "grad_norm": 0.1904219537973404,
+ "learning_rate": 0.0006,
+ "loss": 3.6065895557403564,
+ "step": 3368
+ },
+ {
+ "epoch": 46.796854521625164,
+ "grad_norm": 0.19873572885990143,
+ "learning_rate": 0.0006,
+ "loss": 3.5927226543426514,
+ "step": 3369
+ },
+ {
+ "epoch": 46.81083442551333,
+ "grad_norm": 0.18319591879844666,
+ "learning_rate": 0.0006,
+ "loss": 3.6114919185638428,
+ "step": 3370
+ },
+ {
+ "epoch": 46.824814329401484,
+ "grad_norm": 0.19832435250282288,
+ "learning_rate": 0.0006,
+ "loss": 3.613637924194336,
+ "step": 3371
+ },
+ {
+ "epoch": 46.83879423328965,
+ "grad_norm": 0.21506333351135254,
+ "learning_rate": 0.0006,
+ "loss": 3.6116209030151367,
+ "step": 3372
+ },
+ {
+ "epoch": 46.8527741371778,
+ "grad_norm": 0.20374484360218048,
+ "learning_rate": 0.0006,
+ "loss": 3.5923004150390625,
+ "step": 3373
+ },
+ {
+ "epoch": 46.86675404106597,
+ "grad_norm": 0.19743360579013824,
+ "learning_rate": 0.0006,
+ "loss": 3.599381685256958,
+ "step": 3374
+ },
+ {
+ "epoch": 46.88073394495413,
+ "grad_norm": 0.20996616780757904,
+ "learning_rate": 0.0006,
+ "loss": 3.624969959259033,
+ "step": 3375
+ },
+ {
+ "epoch": 46.89471384884229,
+ "grad_norm": 0.22336791455745697,
+ "learning_rate": 0.0006,
+ "loss": 3.6152467727661133,
+ "step": 3376
+ },
+ {
+ "epoch": 46.90869375273045,
+ "grad_norm": 0.2337532341480255,
+ "learning_rate": 0.0006,
+ "loss": 3.6198863983154297,
+ "step": 3377
+ },
+ {
+ "epoch": 46.92267365661861,
+ "grad_norm": 0.23823462426662445,
+ "learning_rate": 0.0006,
+ "loss": 3.6411237716674805,
+ "step": 3378
+ },
+ {
+ "epoch": 46.93665356050677,
+ "grad_norm": 0.2521338164806366,
+ "learning_rate": 0.0006,
+ "loss": 3.621544122695923,
+ "step": 3379
+ },
+ {
+ "epoch": 46.95063346439493,
+ "grad_norm": 0.253682941198349,
+ "learning_rate": 0.0006,
+ "loss": 3.6570887565612793,
+ "step": 3380
+ },
+ {
+ "epoch": 46.964613368283096,
+ "grad_norm": 0.23392300307750702,
+ "learning_rate": 0.0006,
+ "loss": 3.669538974761963,
+ "step": 3381
+ },
+ {
+ "epoch": 46.97859327217125,
+ "grad_norm": 0.2154092937707901,
+ "learning_rate": 0.0006,
+ "loss": 3.6184825897216797,
+ "step": 3382
+ },
+ {
+ "epoch": 46.992573176059416,
+ "grad_norm": 0.1909833699464798,
+ "learning_rate": 0.0006,
+ "loss": 3.647658348083496,
+ "step": 3383
+ },
+ {
+ "epoch": 47.0,
+ "grad_norm": 0.2226407378911972,
+ "learning_rate": 0.0006,
+ "loss": 3.6413815021514893,
+ "step": 3384
+ },
+ {
+ "epoch": 47.0,
+ "eval_loss": 3.98313570022583,
+ "eval_runtime": 44.7152,
+ "eval_samples_per_second": 54.612,
+ "eval_steps_per_second": 3.422,
+ "step": 3384
+ },
+ {
+ "epoch": 47.01397990388816,
+ "grad_norm": 0.20830968022346497,
+ "learning_rate": 0.0006,
+ "loss": 3.5652623176574707,
+ "step": 3385
+ },
+ {
+ "epoch": 47.02795980777632,
+ "grad_norm": 0.18953651189804077,
+ "learning_rate": 0.0006,
+ "loss": 3.570180654525757,
+ "step": 3386
+ },
+ {
+ "epoch": 47.04193971166448,
+ "grad_norm": 0.20167700946331024,
+ "learning_rate": 0.0006,
+ "loss": 3.5623056888580322,
+ "step": 3387
+ },
+ {
+ "epoch": 47.05591961555265,
+ "grad_norm": 0.21554343402385712,
+ "learning_rate": 0.0006,
+ "loss": 3.549492835998535,
+ "step": 3388
+ },
+ {
+ "epoch": 47.0698995194408,
+ "grad_norm": 0.2232149988412857,
+ "learning_rate": 0.0006,
+ "loss": 3.584181785583496,
+ "step": 3389
+ },
+ {
+ "epoch": 47.083879423328966,
+ "grad_norm": 0.23489049077033997,
+ "learning_rate": 0.0006,
+ "loss": 3.581028461456299,
+ "step": 3390
+ },
+ {
+ "epoch": 47.09785932721712,
+ "grad_norm": 0.22486020624637604,
+ "learning_rate": 0.0006,
+ "loss": 3.600348949432373,
+ "step": 3391
+ },
+ {
+ "epoch": 47.111839231105286,
+ "grad_norm": 0.22932346165180206,
+ "learning_rate": 0.0006,
+ "loss": 3.5600457191467285,
+ "step": 3392
+ },
+ {
+ "epoch": 47.12581913499345,
+ "grad_norm": 0.2179419994354248,
+ "learning_rate": 0.0006,
+ "loss": 3.560136079788208,
+ "step": 3393
+ },
+ {
+ "epoch": 47.139799038881605,
+ "grad_norm": 0.2438054382801056,
+ "learning_rate": 0.0006,
+ "loss": 3.5955698490142822,
+ "step": 3394
+ },
+ {
+ "epoch": 47.15377894276977,
+ "grad_norm": 0.2652001976966858,
+ "learning_rate": 0.0006,
+ "loss": 3.5942912101745605,
+ "step": 3395
+ },
+ {
+ "epoch": 47.16775884665793,
+ "grad_norm": 0.270924836397171,
+ "learning_rate": 0.0006,
+ "loss": 3.5733351707458496,
+ "step": 3396
+ },
+ {
+ "epoch": 47.18173875054609,
+ "grad_norm": 0.28365132212638855,
+ "learning_rate": 0.0006,
+ "loss": 3.6042075157165527,
+ "step": 3397
+ },
+ {
+ "epoch": 47.19571865443425,
+ "grad_norm": 0.29530975222587585,
+ "learning_rate": 0.0006,
+ "loss": 3.588935375213623,
+ "step": 3398
+ },
+ {
+ "epoch": 47.20969855832241,
+ "grad_norm": 0.2658918797969818,
+ "learning_rate": 0.0006,
+ "loss": 3.5944671630859375,
+ "step": 3399
+ },
+ {
+ "epoch": 47.22367846221057,
+ "grad_norm": 0.24076500535011292,
+ "learning_rate": 0.0006,
+ "loss": 3.5853185653686523,
+ "step": 3400
+ },
+ {
+ "epoch": 47.237658366098735,
+ "grad_norm": 0.23032112419605255,
+ "learning_rate": 0.0006,
+ "loss": 3.620483875274658,
+ "step": 3401
+ },
+ {
+ "epoch": 47.25163826998689,
+ "grad_norm": 0.23124775290489197,
+ "learning_rate": 0.0006,
+ "loss": 3.6032004356384277,
+ "step": 3402
+ },
+ {
+ "epoch": 47.265618173875055,
+ "grad_norm": 0.21960225701332092,
+ "learning_rate": 0.0006,
+ "loss": 3.6079649925231934,
+ "step": 3403
+ },
+ {
+ "epoch": 47.27959807776322,
+ "grad_norm": 0.236652672290802,
+ "learning_rate": 0.0006,
+ "loss": 3.582645893096924,
+ "step": 3404
+ },
+ {
+ "epoch": 47.293577981651374,
+ "grad_norm": 0.2600267231464386,
+ "learning_rate": 0.0006,
+ "loss": 3.6067757606506348,
+ "step": 3405
+ },
+ {
+ "epoch": 47.30755788553954,
+ "grad_norm": 0.2337152659893036,
+ "learning_rate": 0.0006,
+ "loss": 3.5912275314331055,
+ "step": 3406
+ },
+ {
+ "epoch": 47.3215377894277,
+ "grad_norm": 0.21887873113155365,
+ "learning_rate": 0.0006,
+ "loss": 3.6008896827697754,
+ "step": 3407
+ },
+ {
+ "epoch": 47.33551769331586,
+ "grad_norm": 0.20265911519527435,
+ "learning_rate": 0.0006,
+ "loss": 3.5820152759552,
+ "step": 3408
+ },
+ {
+ "epoch": 47.34949759720402,
+ "grad_norm": 0.2005501389503479,
+ "learning_rate": 0.0006,
+ "loss": 3.604556083679199,
+ "step": 3409
+ },
+ {
+ "epoch": 47.36347750109218,
+ "grad_norm": 0.20682275295257568,
+ "learning_rate": 0.0006,
+ "loss": 3.584531307220459,
+ "step": 3410
+ },
+ {
+ "epoch": 47.37745740498034,
+ "grad_norm": 0.23283354938030243,
+ "learning_rate": 0.0006,
+ "loss": 3.59186053276062,
+ "step": 3411
+ },
+ {
+ "epoch": 47.391437308868504,
+ "grad_norm": 0.23033356666564941,
+ "learning_rate": 0.0006,
+ "loss": 3.5944037437438965,
+ "step": 3412
+ },
+ {
+ "epoch": 47.40541721275666,
+ "grad_norm": 0.21714402735233307,
+ "learning_rate": 0.0006,
+ "loss": 3.5834851264953613,
+ "step": 3413
+ },
+ {
+ "epoch": 47.419397116644824,
+ "grad_norm": 0.2138672024011612,
+ "learning_rate": 0.0006,
+ "loss": 3.6313700675964355,
+ "step": 3414
+ },
+ {
+ "epoch": 47.43337702053299,
+ "grad_norm": 0.23200160264968872,
+ "learning_rate": 0.0006,
+ "loss": 3.6112399101257324,
+ "step": 3415
+ },
+ {
+ "epoch": 47.44735692442114,
+ "grad_norm": 0.2632092833518982,
+ "learning_rate": 0.0006,
+ "loss": 3.6099038124084473,
+ "step": 3416
+ },
+ {
+ "epoch": 47.46133682830931,
+ "grad_norm": 0.23115520179271698,
+ "learning_rate": 0.0006,
+ "loss": 3.6060497760772705,
+ "step": 3417
+ },
+ {
+ "epoch": 47.47531673219746,
+ "grad_norm": 0.2596223056316376,
+ "learning_rate": 0.0006,
+ "loss": 3.5749685764312744,
+ "step": 3418
+ },
+ {
+ "epoch": 47.489296636085626,
+ "grad_norm": 0.27893415093421936,
+ "learning_rate": 0.0006,
+ "loss": 3.584045886993408,
+ "step": 3419
+ },
+ {
+ "epoch": 47.50327653997379,
+ "grad_norm": 0.23112469911575317,
+ "learning_rate": 0.0006,
+ "loss": 3.595407485961914,
+ "step": 3420
+ },
+ {
+ "epoch": 47.517256443861946,
+ "grad_norm": 0.23562486469745636,
+ "learning_rate": 0.0006,
+ "loss": 3.5657241344451904,
+ "step": 3421
+ },
+ {
+ "epoch": 47.53123634775011,
+ "grad_norm": 0.23366105556488037,
+ "learning_rate": 0.0006,
+ "loss": 3.624885082244873,
+ "step": 3422
+ },
+ {
+ "epoch": 47.54521625163827,
+ "grad_norm": 0.24383248388767242,
+ "learning_rate": 0.0006,
+ "loss": 3.638352394104004,
+ "step": 3423
+ },
+ {
+ "epoch": 47.55919615552643,
+ "grad_norm": 0.26388120651245117,
+ "learning_rate": 0.0006,
+ "loss": 3.614579200744629,
+ "step": 3424
+ },
+ {
+ "epoch": 47.57317605941459,
+ "grad_norm": 0.23676545917987823,
+ "learning_rate": 0.0006,
+ "loss": 3.609004259109497,
+ "step": 3425
+ },
+ {
+ "epoch": 47.58715596330275,
+ "grad_norm": 0.227967768907547,
+ "learning_rate": 0.0006,
+ "loss": 3.626171827316284,
+ "step": 3426
+ },
+ {
+ "epoch": 47.60113586719091,
+ "grad_norm": 0.23786529898643494,
+ "learning_rate": 0.0006,
+ "loss": 3.6205172538757324,
+ "step": 3427
+ },
+ {
+ "epoch": 47.615115771079076,
+ "grad_norm": 0.2599100172519684,
+ "learning_rate": 0.0006,
+ "loss": 3.6178271770477295,
+ "step": 3428
+ },
+ {
+ "epoch": 47.62909567496723,
+ "grad_norm": 0.2591858208179474,
+ "learning_rate": 0.0006,
+ "loss": 3.600297451019287,
+ "step": 3429
+ },
+ {
+ "epoch": 47.643075578855395,
+ "grad_norm": 0.2234215885400772,
+ "learning_rate": 0.0006,
+ "loss": 3.623141288757324,
+ "step": 3430
+ },
+ {
+ "epoch": 47.65705548274356,
+ "grad_norm": 0.23395098745822906,
+ "learning_rate": 0.0006,
+ "loss": 3.6243159770965576,
+ "step": 3431
+ },
+ {
+ "epoch": 47.671035386631715,
+ "grad_norm": 0.25706854462623596,
+ "learning_rate": 0.0006,
+ "loss": 3.5933618545532227,
+ "step": 3432
+ },
+ {
+ "epoch": 47.68501529051988,
+ "grad_norm": 0.22468037903308868,
+ "learning_rate": 0.0006,
+ "loss": 3.6048693656921387,
+ "step": 3433
+ },
+ {
+ "epoch": 47.69899519440804,
+ "grad_norm": 0.22432644665241241,
+ "learning_rate": 0.0006,
+ "loss": 3.604891777038574,
+ "step": 3434
+ },
+ {
+ "epoch": 47.7129750982962,
+ "grad_norm": 0.2278960943222046,
+ "learning_rate": 0.0006,
+ "loss": 3.610567092895508,
+ "step": 3435
+ },
+ {
+ "epoch": 47.72695500218436,
+ "grad_norm": 0.20652735233306885,
+ "learning_rate": 0.0006,
+ "loss": 3.60245418548584,
+ "step": 3436
+ },
+ {
+ "epoch": 47.74093490607252,
+ "grad_norm": 0.2141297310590744,
+ "learning_rate": 0.0006,
+ "loss": 3.5712027549743652,
+ "step": 3437
+ },
+ {
+ "epoch": 47.75491480996068,
+ "grad_norm": 0.23282566666603088,
+ "learning_rate": 0.0006,
+ "loss": 3.573568820953369,
+ "step": 3438
+ },
+ {
+ "epoch": 47.768894713848844,
+ "grad_norm": 0.21718674898147583,
+ "learning_rate": 0.0006,
+ "loss": 3.602047920227051,
+ "step": 3439
+ },
+ {
+ "epoch": 47.782874617737,
+ "grad_norm": 0.19592095911502838,
+ "learning_rate": 0.0006,
+ "loss": 3.6046957969665527,
+ "step": 3440
+ },
+ {
+ "epoch": 47.796854521625164,
+ "grad_norm": 0.21548260748386383,
+ "learning_rate": 0.0006,
+ "loss": 3.5808444023132324,
+ "step": 3441
+ },
+ {
+ "epoch": 47.81083442551333,
+ "grad_norm": 0.21945662796497345,
+ "learning_rate": 0.0006,
+ "loss": 3.6044554710388184,
+ "step": 3442
+ },
+ {
+ "epoch": 47.824814329401484,
+ "grad_norm": 0.20777440071105957,
+ "learning_rate": 0.0006,
+ "loss": 3.5991361141204834,
+ "step": 3443
+ },
+ {
+ "epoch": 47.83879423328965,
+ "grad_norm": 0.21566642820835114,
+ "learning_rate": 0.0006,
+ "loss": 3.6272850036621094,
+ "step": 3444
+ },
+ {
+ "epoch": 47.8527741371778,
+ "grad_norm": 0.22365771234035492,
+ "learning_rate": 0.0006,
+ "loss": 3.6323323249816895,
+ "step": 3445
+ },
+ {
+ "epoch": 47.86675404106597,
+ "grad_norm": 0.20193088054656982,
+ "learning_rate": 0.0006,
+ "loss": 3.5938191413879395,
+ "step": 3446
+ },
+ {
+ "epoch": 47.88073394495413,
+ "grad_norm": 0.20968061685562134,
+ "learning_rate": 0.0006,
+ "loss": 3.616640329360962,
+ "step": 3447
+ },
+ {
+ "epoch": 47.89471384884229,
+ "grad_norm": 0.20275580883026123,
+ "learning_rate": 0.0006,
+ "loss": 3.5769052505493164,
+ "step": 3448
+ },
+ {
+ "epoch": 47.90869375273045,
+ "grad_norm": 0.237605020403862,
+ "learning_rate": 0.0006,
+ "loss": 3.6221203804016113,
+ "step": 3449
+ },
+ {
+ "epoch": 47.92267365661861,
+ "grad_norm": 0.2820972502231598,
+ "learning_rate": 0.0006,
+ "loss": 3.5977487564086914,
+ "step": 3450
+ },
+ {
+ "epoch": 47.93665356050677,
+ "grad_norm": 0.23722891509532928,
+ "learning_rate": 0.0006,
+ "loss": 3.5963053703308105,
+ "step": 3451
+ },
+ {
+ "epoch": 47.95063346439493,
+ "grad_norm": 0.21471276879310608,
+ "learning_rate": 0.0006,
+ "loss": 3.6234917640686035,
+ "step": 3452
+ },
+ {
+ "epoch": 47.964613368283096,
+ "grad_norm": 0.2139028012752533,
+ "learning_rate": 0.0006,
+ "loss": 3.640500545501709,
+ "step": 3453
+ },
+ {
+ "epoch": 47.97859327217125,
+ "grad_norm": 0.1966913342475891,
+ "learning_rate": 0.0006,
+ "loss": 3.5856776237487793,
+ "step": 3454
+ },
+ {
+ "epoch": 47.992573176059416,
+ "grad_norm": 0.2375730276107788,
+ "learning_rate": 0.0006,
+ "loss": 3.6126937866210938,
+ "step": 3455
+ },
+ {
+ "epoch": 48.0,
+ "grad_norm": 0.2772855758666992,
+ "learning_rate": 0.0006,
+ "loss": 3.6041951179504395,
+ "step": 3456
+ },
+ {
+ "epoch": 48.0,
+ "eval_loss": 3.971400499343872,
+ "eval_runtime": 45.4792,
+ "eval_samples_per_second": 53.695,
+ "eval_steps_per_second": 3.364,
+ "step": 3456
+ },
+ {
+ "epoch": 48.01397990388816,
+ "grad_norm": 0.2269497811794281,
+ "learning_rate": 0.0006,
+ "loss": 3.525441884994507,
+ "step": 3457
+ },
+ {
+ "epoch": 48.02795980777632,
+ "grad_norm": 0.2080184519290924,
+ "learning_rate": 0.0006,
+ "loss": 3.5727145671844482,
+ "step": 3458
+ },
+ {
+ "epoch": 48.04193971166448,
+ "grad_norm": 0.21827049553394318,
+ "learning_rate": 0.0006,
+ "loss": 3.5799875259399414,
+ "step": 3459
+ },
+ {
+ "epoch": 48.05591961555265,
+ "grad_norm": 0.2173643410205841,
+ "learning_rate": 0.0006,
+ "loss": 3.587097406387329,
+ "step": 3460
+ },
+ {
+ "epoch": 48.0698995194408,
+ "grad_norm": 0.23125280439853668,
+ "learning_rate": 0.0006,
+ "loss": 3.593235969543457,
+ "step": 3461
+ },
+ {
+ "epoch": 48.083879423328966,
+ "grad_norm": 0.2235819697380066,
+ "learning_rate": 0.0006,
+ "loss": 3.5724973678588867,
+ "step": 3462
+ },
+ {
+ "epoch": 48.09785932721712,
+ "grad_norm": 0.2329849898815155,
+ "learning_rate": 0.0006,
+ "loss": 3.5689549446105957,
+ "step": 3463
+ },
+ {
+ "epoch": 48.111839231105286,
+ "grad_norm": 0.21178825199604034,
+ "learning_rate": 0.0006,
+ "loss": 3.5522305965423584,
+ "step": 3464
+ },
+ {
+ "epoch": 48.12581913499345,
+ "grad_norm": 0.22026701271533966,
+ "learning_rate": 0.0006,
+ "loss": 3.5622801780700684,
+ "step": 3465
+ },
+ {
+ "epoch": 48.139799038881605,
+ "grad_norm": 0.23427478969097137,
+ "learning_rate": 0.0006,
+ "loss": 3.6076972484588623,
+ "step": 3466
+ },
+ {
+ "epoch": 48.15377894276977,
+ "grad_norm": 0.22437651455402374,
+ "learning_rate": 0.0006,
+ "loss": 3.5898380279541016,
+ "step": 3467
+ },
+ {
+ "epoch": 48.16775884665793,
+ "grad_norm": 0.22911588847637177,
+ "learning_rate": 0.0006,
+ "loss": 3.584866523742676,
+ "step": 3468
+ },
+ {
+ "epoch": 48.18173875054609,
+ "grad_norm": 0.21358130872249603,
+ "learning_rate": 0.0006,
+ "loss": 3.581397533416748,
+ "step": 3469
+ },
+ {
+ "epoch": 48.19571865443425,
+ "grad_norm": 0.2102762758731842,
+ "learning_rate": 0.0006,
+ "loss": 3.6218419075012207,
+ "step": 3470
+ },
+ {
+ "epoch": 48.20969855832241,
+ "grad_norm": 0.22417177259922028,
+ "learning_rate": 0.0006,
+ "loss": 3.5875539779663086,
+ "step": 3471
+ },
+ {
+ "epoch": 48.22367846221057,
+ "grad_norm": 0.2096744030714035,
+ "learning_rate": 0.0006,
+ "loss": 3.6017215251922607,
+ "step": 3472
+ },
+ {
+ "epoch": 48.237658366098735,
+ "grad_norm": 0.18693844974040985,
+ "learning_rate": 0.0006,
+ "loss": 3.590221405029297,
+ "step": 3473
+ },
+ {
+ "epoch": 48.25163826998689,
+ "grad_norm": 0.21102994680404663,
+ "learning_rate": 0.0006,
+ "loss": 3.5685019493103027,
+ "step": 3474
+ },
+ {
+ "epoch": 48.265618173875055,
+ "grad_norm": 0.20756356418132782,
+ "learning_rate": 0.0006,
+ "loss": 3.577427387237549,
+ "step": 3475
+ },
+ {
+ "epoch": 48.27959807776322,
+ "grad_norm": 0.20425064861774445,
+ "learning_rate": 0.0006,
+ "loss": 3.602522134780884,
+ "step": 3476
+ },
+ {
+ "epoch": 48.293577981651374,
+ "grad_norm": 0.1976020187139511,
+ "learning_rate": 0.0006,
+ "loss": 3.5847134590148926,
+ "step": 3477
+ },
+ {
+ "epoch": 48.30755788553954,
+ "grad_norm": 0.19685129821300507,
+ "learning_rate": 0.0006,
+ "loss": 3.5638442039489746,
+ "step": 3478
+ },
+ {
+ "epoch": 48.3215377894277,
+ "grad_norm": 0.19657646119594574,
+ "learning_rate": 0.0006,
+ "loss": 3.5669779777526855,
+ "step": 3479
+ },
+ {
+ "epoch": 48.33551769331586,
+ "grad_norm": 0.19855819642543793,
+ "learning_rate": 0.0006,
+ "loss": 3.5712571144104004,
+ "step": 3480
+ },
+ {
+ "epoch": 48.34949759720402,
+ "grad_norm": 0.19961503148078918,
+ "learning_rate": 0.0006,
+ "loss": 3.5869312286376953,
+ "step": 3481
+ },
+ {
+ "epoch": 48.36347750109218,
+ "grad_norm": 0.19302639365196228,
+ "learning_rate": 0.0006,
+ "loss": 3.571394920349121,
+ "step": 3482
+ },
+ {
+ "epoch": 48.37745740498034,
+ "grad_norm": 0.1953866183757782,
+ "learning_rate": 0.0006,
+ "loss": 3.556633234024048,
+ "step": 3483
+ },
+ {
+ "epoch": 48.391437308868504,
+ "grad_norm": 0.20028206706047058,
+ "learning_rate": 0.0006,
+ "loss": 3.5559535026550293,
+ "step": 3484
+ },
+ {
+ "epoch": 48.40541721275666,
+ "grad_norm": 0.2286558896303177,
+ "learning_rate": 0.0006,
+ "loss": 3.6052510738372803,
+ "step": 3485
+ },
+ {
+ "epoch": 48.419397116644824,
+ "grad_norm": 0.21764399111270905,
+ "learning_rate": 0.0006,
+ "loss": 3.5955848693847656,
+ "step": 3486
+ },
+ {
+ "epoch": 48.43337702053299,
+ "grad_norm": 0.2257501780986786,
+ "learning_rate": 0.0006,
+ "loss": 3.586179256439209,
+ "step": 3487
+ },
+ {
+ "epoch": 48.44735692442114,
+ "grad_norm": 0.23023653030395508,
+ "learning_rate": 0.0006,
+ "loss": 3.593329906463623,
+ "step": 3488
+ },
+ {
+ "epoch": 48.46133682830931,
+ "grad_norm": 0.21283918619155884,
+ "learning_rate": 0.0006,
+ "loss": 3.5909814834594727,
+ "step": 3489
+ },
+ {
+ "epoch": 48.47531673219746,
+ "grad_norm": 0.2143639773130417,
+ "learning_rate": 0.0006,
+ "loss": 3.61320161819458,
+ "step": 3490
+ },
+ {
+ "epoch": 48.489296636085626,
+ "grad_norm": 0.2138844132423401,
+ "learning_rate": 0.0006,
+ "loss": 3.556607246398926,
+ "step": 3491
+ },
+ {
+ "epoch": 48.50327653997379,
+ "grad_norm": 0.22122617065906525,
+ "learning_rate": 0.0006,
+ "loss": 3.629208564758301,
+ "step": 3492
+ },
+ {
+ "epoch": 48.517256443861946,
+ "grad_norm": 0.22430218756198883,
+ "learning_rate": 0.0006,
+ "loss": 3.61891508102417,
+ "step": 3493
+ },
+ {
+ "epoch": 48.53123634775011,
+ "grad_norm": 0.23830844461917877,
+ "learning_rate": 0.0006,
+ "loss": 3.5818424224853516,
+ "step": 3494
+ },
+ {
+ "epoch": 48.54521625163827,
+ "grad_norm": 0.23596757650375366,
+ "learning_rate": 0.0006,
+ "loss": 3.609959602355957,
+ "step": 3495
+ },
+ {
+ "epoch": 48.55919615552643,
+ "grad_norm": 0.22046151757240295,
+ "learning_rate": 0.0006,
+ "loss": 3.585991382598877,
+ "step": 3496
+ },
+ {
+ "epoch": 48.57317605941459,
+ "grad_norm": 0.22838662564754486,
+ "learning_rate": 0.0006,
+ "loss": 3.6047747135162354,
+ "step": 3497
+ },
+ {
+ "epoch": 48.58715596330275,
+ "grad_norm": 0.22605256736278534,
+ "learning_rate": 0.0006,
+ "loss": 3.584585428237915,
+ "step": 3498
+ },
+ {
+ "epoch": 48.60113586719091,
+ "grad_norm": 0.22761467099189758,
+ "learning_rate": 0.0006,
+ "loss": 3.5680465698242188,
+ "step": 3499
+ },
+ {
+ "epoch": 48.615115771079076,
+ "grad_norm": 0.20537005364894867,
+ "learning_rate": 0.0006,
+ "loss": 3.5822806358337402,
+ "step": 3500
+ },
+ {
+ "epoch": 48.62909567496723,
+ "grad_norm": 0.21871088445186615,
+ "learning_rate": 0.0006,
+ "loss": 3.5643906593322754,
+ "step": 3501
+ },
+ {
+ "epoch": 48.643075578855395,
+ "grad_norm": 0.2291785329580307,
+ "learning_rate": 0.0006,
+ "loss": 3.6313328742980957,
+ "step": 3502
+ },
+ {
+ "epoch": 48.65705548274356,
+ "grad_norm": 0.2437039464712143,
+ "learning_rate": 0.0006,
+ "loss": 3.588334083557129,
+ "step": 3503
+ },
+ {
+ "epoch": 48.671035386631715,
+ "grad_norm": 0.23070715367794037,
+ "learning_rate": 0.0006,
+ "loss": 3.611356258392334,
+ "step": 3504
+ },
+ {
+ "epoch": 48.68501529051988,
+ "grad_norm": 0.23983895778656006,
+ "learning_rate": 0.0006,
+ "loss": 3.5953967571258545,
+ "step": 3505
+ },
+ {
+ "epoch": 48.69899519440804,
+ "grad_norm": 0.2283167690038681,
+ "learning_rate": 0.0006,
+ "loss": 3.605307102203369,
+ "step": 3506
+ },
+ {
+ "epoch": 48.7129750982962,
+ "grad_norm": 0.20861059427261353,
+ "learning_rate": 0.0006,
+ "loss": 3.598266363143921,
+ "step": 3507
+ },
+ {
+ "epoch": 48.72695500218436,
+ "grad_norm": 0.20209547877311707,
+ "learning_rate": 0.0006,
+ "loss": 3.6022191047668457,
+ "step": 3508
+ },
+ {
+ "epoch": 48.74093490607252,
+ "grad_norm": 0.19089370965957642,
+ "learning_rate": 0.0006,
+ "loss": 3.628640651702881,
+ "step": 3509
+ },
+ {
+ "epoch": 48.75491480996068,
+ "grad_norm": 0.18544727563858032,
+ "learning_rate": 0.0006,
+ "loss": 3.6204819679260254,
+ "step": 3510
+ },
+ {
+ "epoch": 48.768894713848844,
+ "grad_norm": 0.18295186758041382,
+ "learning_rate": 0.0006,
+ "loss": 3.5899410247802734,
+ "step": 3511
+ },
+ {
+ "epoch": 48.782874617737,
+ "grad_norm": 0.1953844279050827,
+ "learning_rate": 0.0006,
+ "loss": 3.581699848175049,
+ "step": 3512
+ },
+ {
+ "epoch": 48.796854521625164,
+ "grad_norm": 0.195505291223526,
+ "learning_rate": 0.0006,
+ "loss": 3.6046862602233887,
+ "step": 3513
+ },
+ {
+ "epoch": 48.81083442551333,
+ "grad_norm": 0.19805945456027985,
+ "learning_rate": 0.0006,
+ "loss": 3.609510898590088,
+ "step": 3514
+ },
+ {
+ "epoch": 48.824814329401484,
+ "grad_norm": 0.18694287538528442,
+ "learning_rate": 0.0006,
+ "loss": 3.580693483352661,
+ "step": 3515
+ },
+ {
+ "epoch": 48.83879423328965,
+ "grad_norm": 0.19227269291877747,
+ "learning_rate": 0.0006,
+ "loss": 3.6174416542053223,
+ "step": 3516
+ },
+ {
+ "epoch": 48.8527741371778,
+ "grad_norm": 0.1966937631368637,
+ "learning_rate": 0.0006,
+ "loss": 3.616194248199463,
+ "step": 3517
+ },
+ {
+ "epoch": 48.86675404106597,
+ "grad_norm": 0.20755162835121155,
+ "learning_rate": 0.0006,
+ "loss": 3.594695568084717,
+ "step": 3518
+ },
+ {
+ "epoch": 48.88073394495413,
+ "grad_norm": 0.2012479156255722,
+ "learning_rate": 0.0006,
+ "loss": 3.6069273948669434,
+ "step": 3519
+ },
+ {
+ "epoch": 48.89471384884229,
+ "grad_norm": 0.19260065257549286,
+ "learning_rate": 0.0006,
+ "loss": 3.573819160461426,
+ "step": 3520
+ },
+ {
+ "epoch": 48.90869375273045,
+ "grad_norm": 0.19911104440689087,
+ "learning_rate": 0.0006,
+ "loss": 3.632185459136963,
+ "step": 3521
+ },
+ {
+ "epoch": 48.92267365661861,
+ "grad_norm": 0.22266048192977905,
+ "learning_rate": 0.0006,
+ "loss": 3.607295513153076,
+ "step": 3522
+ },
+ {
+ "epoch": 48.93665356050677,
+ "grad_norm": 0.2542882561683655,
+ "learning_rate": 0.0006,
+ "loss": 3.6014773845672607,
+ "step": 3523
+ },
+ {
+ "epoch": 48.95063346439493,
+ "grad_norm": 0.2878575026988983,
+ "learning_rate": 0.0006,
+ "loss": 3.5825531482696533,
+ "step": 3524
+ },
+ {
+ "epoch": 48.964613368283096,
+ "grad_norm": 0.3157055675983429,
+ "learning_rate": 0.0006,
+ "loss": 3.5986037254333496,
+ "step": 3525
+ },
+ {
+ "epoch": 48.97859327217125,
+ "grad_norm": 0.2815262973308563,
+ "learning_rate": 0.0006,
+ "loss": 3.6099600791931152,
+ "step": 3526
+ },
+ {
+ "epoch": 48.992573176059416,
+ "grad_norm": 0.22102823853492737,
+ "learning_rate": 0.0006,
+ "loss": 3.5859827995300293,
+ "step": 3527
+ },
+ {
+ "epoch": 49.0,
+ "grad_norm": 0.24937094748020172,
+ "learning_rate": 0.0006,
+ "loss": 3.622842311859131,
+ "step": 3528
+ },
+ {
+ "epoch": 49.0,
+ "eval_loss": 3.977067232131958,
+ "eval_runtime": 45.5503,
+ "eval_samples_per_second": 53.611,
+ "eval_steps_per_second": 3.359,
+ "step": 3528
+ },
+ {
+ "epoch": 49.01397990388816,
+ "grad_norm": 0.25072216987609863,
+ "learning_rate": 0.0006,
+ "loss": 3.590653419494629,
+ "step": 3529
+ },
+ {
+ "epoch": 49.02795980777632,
+ "grad_norm": 0.2611052989959717,
+ "learning_rate": 0.0006,
+ "loss": 3.5504279136657715,
+ "step": 3530
+ },
+ {
+ "epoch": 49.04193971166448,
+ "grad_norm": 0.2547961473464966,
+ "learning_rate": 0.0006,
+ "loss": 3.5797581672668457,
+ "step": 3531
+ },
+ {
+ "epoch": 49.05591961555265,
+ "grad_norm": 0.25674310326576233,
+ "learning_rate": 0.0006,
+ "loss": 3.557278871536255,
+ "step": 3532
+ },
+ {
+ "epoch": 49.0698995194408,
+ "grad_norm": 0.25511929392814636,
+ "learning_rate": 0.0006,
+ "loss": 3.5788025856018066,
+ "step": 3533
+ },
+ {
+ "epoch": 49.083879423328966,
+ "grad_norm": 0.22920994460582733,
+ "learning_rate": 0.0006,
+ "loss": 3.580489158630371,
+ "step": 3534
+ },
+ {
+ "epoch": 49.09785932721712,
+ "grad_norm": 0.23436492681503296,
+ "learning_rate": 0.0006,
+ "loss": 3.5603699684143066,
+ "step": 3535
+ },
+ {
+ "epoch": 49.111839231105286,
+ "grad_norm": 0.2542382776737213,
+ "learning_rate": 0.0006,
+ "loss": 3.5937037467956543,
+ "step": 3536
+ },
+ {
+ "epoch": 49.12581913499345,
+ "grad_norm": 0.26718273758888245,
+ "learning_rate": 0.0006,
+ "loss": 3.6032168865203857,
+ "step": 3537
+ },
+ {
+ "epoch": 49.139799038881605,
+ "grad_norm": 0.2406773865222931,
+ "learning_rate": 0.0006,
+ "loss": 3.5737085342407227,
+ "step": 3538
+ },
+ {
+ "epoch": 49.15377894276977,
+ "grad_norm": 0.23408754169940948,
+ "learning_rate": 0.0006,
+ "loss": 3.592543601989746,
+ "step": 3539
+ },
+ {
+ "epoch": 49.16775884665793,
+ "grad_norm": 0.22974351048469543,
+ "learning_rate": 0.0006,
+ "loss": 3.543618679046631,
+ "step": 3540
+ },
+ {
+ "epoch": 49.18173875054609,
+ "grad_norm": 0.23479530215263367,
+ "learning_rate": 0.0006,
+ "loss": 3.547590732574463,
+ "step": 3541
+ },
+ {
+ "epoch": 49.19571865443425,
+ "grad_norm": 0.2100638598203659,
+ "learning_rate": 0.0006,
+ "loss": 3.6027469635009766,
+ "step": 3542
+ },
+ {
+ "epoch": 49.20969855832241,
+ "grad_norm": 0.20239035785198212,
+ "learning_rate": 0.0006,
+ "loss": 3.598567008972168,
+ "step": 3543
+ },
+ {
+ "epoch": 49.22367846221057,
+ "grad_norm": 0.20480065047740936,
+ "learning_rate": 0.0006,
+ "loss": 3.591038227081299,
+ "step": 3544
+ },
+ {
+ "epoch": 49.237658366098735,
+ "grad_norm": 0.20439887046813965,
+ "learning_rate": 0.0006,
+ "loss": 3.555039405822754,
+ "step": 3545
+ },
+ {
+ "epoch": 49.25163826998689,
+ "grad_norm": 0.21245788037776947,
+ "learning_rate": 0.0006,
+ "loss": 3.5772666931152344,
+ "step": 3546
+ },
+ {
+ "epoch": 49.265618173875055,
+ "grad_norm": 0.1993357390165329,
+ "learning_rate": 0.0006,
+ "loss": 3.5847411155700684,
+ "step": 3547
+ },
+ {
+ "epoch": 49.27959807776322,
+ "grad_norm": 0.22550229728221893,
+ "learning_rate": 0.0006,
+ "loss": 3.5679750442504883,
+ "step": 3548
+ },
+ {
+ "epoch": 49.293577981651374,
+ "grad_norm": 0.2383355349302292,
+ "learning_rate": 0.0006,
+ "loss": 3.57085919380188,
+ "step": 3549
+ },
+ {
+ "epoch": 49.30755788553954,
+ "grad_norm": 0.23968911170959473,
+ "learning_rate": 0.0006,
+ "loss": 3.557415246963501,
+ "step": 3550
+ },
+ {
+ "epoch": 49.3215377894277,
+ "grad_norm": 0.21453262865543365,
+ "learning_rate": 0.0006,
+ "loss": 3.5763611793518066,
+ "step": 3551
+ },
+ {
+ "epoch": 49.33551769331586,
+ "grad_norm": 0.20380273461341858,
+ "learning_rate": 0.0006,
+ "loss": 3.552011013031006,
+ "step": 3552
+ },
+ {
+ "epoch": 49.34949759720402,
+ "grad_norm": 0.19719970226287842,
+ "learning_rate": 0.0006,
+ "loss": 3.5719075202941895,
+ "step": 3553
+ },
+ {
+ "epoch": 49.36347750109218,
+ "grad_norm": 0.19018089771270752,
+ "learning_rate": 0.0006,
+ "loss": 3.5843467712402344,
+ "step": 3554
+ },
+ {
+ "epoch": 49.37745740498034,
+ "grad_norm": 0.18369099497795105,
+ "learning_rate": 0.0006,
+ "loss": 3.561741352081299,
+ "step": 3555
+ },
+ {
+ "epoch": 49.391437308868504,
+ "grad_norm": 0.2070280760526657,
+ "learning_rate": 0.0006,
+ "loss": 3.590721607208252,
+ "step": 3556
+ },
+ {
+ "epoch": 49.40541721275666,
+ "grad_norm": 0.23287905752658844,
+ "learning_rate": 0.0006,
+ "loss": 3.617081642150879,
+ "step": 3557
+ },
+ {
+ "epoch": 49.419397116644824,
+ "grad_norm": 0.21877793967723846,
+ "learning_rate": 0.0006,
+ "loss": 3.547166347503662,
+ "step": 3558
+ },
+ {
+ "epoch": 49.43337702053299,
+ "grad_norm": 0.21105137467384338,
+ "learning_rate": 0.0006,
+ "loss": 3.593552350997925,
+ "step": 3559
+ },
+ {
+ "epoch": 49.44735692442114,
+ "grad_norm": 0.24940872192382812,
+ "learning_rate": 0.0006,
+ "loss": 3.599729537963867,
+ "step": 3560
+ },
+ {
+ "epoch": 49.46133682830931,
+ "grad_norm": 0.26952996850013733,
+ "learning_rate": 0.0006,
+ "loss": 3.5915074348449707,
+ "step": 3561
+ },
+ {
+ "epoch": 49.47531673219746,
+ "grad_norm": 0.25706353783607483,
+ "learning_rate": 0.0006,
+ "loss": 3.587472915649414,
+ "step": 3562
+ },
+ {
+ "epoch": 49.489296636085626,
+ "grad_norm": 0.23666661977767944,
+ "learning_rate": 0.0006,
+ "loss": 3.561340808868408,
+ "step": 3563
+ },
+ {
+ "epoch": 49.50327653997379,
+ "grad_norm": 0.22524063289165497,
+ "learning_rate": 0.0006,
+ "loss": 3.587310314178467,
+ "step": 3564
+ },
+ {
+ "epoch": 49.517256443861946,
+ "grad_norm": 0.22991003096103668,
+ "learning_rate": 0.0006,
+ "loss": 3.56671142578125,
+ "step": 3565
+ },
+ {
+ "epoch": 49.53123634775011,
+ "grad_norm": 0.23067602515220642,
+ "learning_rate": 0.0006,
+ "loss": 3.578601837158203,
+ "step": 3566
+ },
+ {
+ "epoch": 49.54521625163827,
+ "grad_norm": 0.2133914828300476,
+ "learning_rate": 0.0006,
+ "loss": 3.593726873397827,
+ "step": 3567
+ },
+ {
+ "epoch": 49.55919615552643,
+ "grad_norm": 0.21879160404205322,
+ "learning_rate": 0.0006,
+ "loss": 3.5833992958068848,
+ "step": 3568
+ },
+ {
+ "epoch": 49.57317605941459,
+ "grad_norm": 0.2116270661354065,
+ "learning_rate": 0.0006,
+ "loss": 3.575761079788208,
+ "step": 3569
+ },
+ {
+ "epoch": 49.58715596330275,
+ "grad_norm": 0.19506660103797913,
+ "learning_rate": 0.0006,
+ "loss": 3.5600461959838867,
+ "step": 3570
+ },
+ {
+ "epoch": 49.60113586719091,
+ "grad_norm": 0.21305067837238312,
+ "learning_rate": 0.0006,
+ "loss": 3.5717577934265137,
+ "step": 3571
+ },
+ {
+ "epoch": 49.615115771079076,
+ "grad_norm": 0.21184347569942474,
+ "learning_rate": 0.0006,
+ "loss": 3.608819007873535,
+ "step": 3572
+ },
+ {
+ "epoch": 49.62909567496723,
+ "grad_norm": 0.22302201390266418,
+ "learning_rate": 0.0006,
+ "loss": 3.5871644020080566,
+ "step": 3573
+ },
+ {
+ "epoch": 49.643075578855395,
+ "grad_norm": 0.21942365169525146,
+ "learning_rate": 0.0006,
+ "loss": 3.596029043197632,
+ "step": 3574
+ },
+ {
+ "epoch": 49.65705548274356,
+ "grad_norm": 0.2627110481262207,
+ "learning_rate": 0.0006,
+ "loss": 3.5900766849517822,
+ "step": 3575
+ },
+ {
+ "epoch": 49.671035386631715,
+ "grad_norm": 0.28253448009490967,
+ "learning_rate": 0.0006,
+ "loss": 3.599386215209961,
+ "step": 3576
+ },
+ {
+ "epoch": 49.68501529051988,
+ "grad_norm": 0.24279426038265228,
+ "learning_rate": 0.0006,
+ "loss": 3.580909013748169,
+ "step": 3577
+ },
+ {
+ "epoch": 49.69899519440804,
+ "grad_norm": 0.22092898190021515,
+ "learning_rate": 0.0006,
+ "loss": 3.6043782234191895,
+ "step": 3578
+ },
+ {
+ "epoch": 49.7129750982962,
+ "grad_norm": 0.23356051743030548,
+ "learning_rate": 0.0006,
+ "loss": 3.6103105545043945,
+ "step": 3579
+ },
+ {
+ "epoch": 49.72695500218436,
+ "grad_norm": 0.24508118629455566,
+ "learning_rate": 0.0006,
+ "loss": 3.612980365753174,
+ "step": 3580
+ },
+ {
+ "epoch": 49.74093490607252,
+ "grad_norm": 0.2501833438873291,
+ "learning_rate": 0.0006,
+ "loss": 3.6111063957214355,
+ "step": 3581
+ },
+ {
+ "epoch": 49.75491480996068,
+ "grad_norm": 0.2263427972793579,
+ "learning_rate": 0.0006,
+ "loss": 3.5709285736083984,
+ "step": 3582
+ },
+ {
+ "epoch": 49.768894713848844,
+ "grad_norm": 0.19881728291511536,
+ "learning_rate": 0.0006,
+ "loss": 3.5836503505706787,
+ "step": 3583
+ },
+ {
+ "epoch": 49.782874617737,
+ "grad_norm": 0.22516517341136932,
+ "learning_rate": 0.0006,
+ "loss": 3.5797667503356934,
+ "step": 3584
+ },
+ {
+ "epoch": 49.796854521625164,
+ "grad_norm": 0.22347061336040497,
+ "learning_rate": 0.0006,
+ "loss": 3.6245951652526855,
+ "step": 3585
+ },
+ {
+ "epoch": 49.81083442551333,
+ "grad_norm": 0.2062593549489975,
+ "learning_rate": 0.0006,
+ "loss": 3.607572317123413,
+ "step": 3586
+ },
+ {
+ "epoch": 49.824814329401484,
+ "grad_norm": 0.20671074092388153,
+ "learning_rate": 0.0006,
+ "loss": 3.5671472549438477,
+ "step": 3587
+ },
+ {
+ "epoch": 49.83879423328965,
+ "grad_norm": 0.19981902837753296,
+ "learning_rate": 0.0006,
+ "loss": 3.6084837913513184,
+ "step": 3588
+ },
+ {
+ "epoch": 49.8527741371778,
+ "grad_norm": 0.2004556804895401,
+ "learning_rate": 0.0006,
+ "loss": 3.631455898284912,
+ "step": 3589
+ },
+ {
+ "epoch": 49.86675404106597,
+ "grad_norm": 0.20990414917469025,
+ "learning_rate": 0.0006,
+ "loss": 3.6017699241638184,
+ "step": 3590
+ },
+ {
+ "epoch": 49.88073394495413,
+ "grad_norm": 0.19016146659851074,
+ "learning_rate": 0.0006,
+ "loss": 3.6110801696777344,
+ "step": 3591
+ },
+ {
+ "epoch": 49.89471384884229,
+ "grad_norm": 0.2015834003686905,
+ "learning_rate": 0.0006,
+ "loss": 3.58852481842041,
+ "step": 3592
+ },
+ {
+ "epoch": 49.90869375273045,
+ "grad_norm": 0.205678328871727,
+ "learning_rate": 0.0006,
+ "loss": 3.581789970397949,
+ "step": 3593
+ },
+ {
+ "epoch": 49.92267365661861,
+ "grad_norm": 0.20975211262702942,
+ "learning_rate": 0.0006,
+ "loss": 3.6126320362091064,
+ "step": 3594
+ },
+ {
+ "epoch": 49.93665356050677,
+ "grad_norm": 0.20510081946849823,
+ "learning_rate": 0.0006,
+ "loss": 3.5970656871795654,
+ "step": 3595
+ },
+ {
+ "epoch": 49.95063346439493,
+ "grad_norm": 0.19842886924743652,
+ "learning_rate": 0.0006,
+ "loss": 3.6055545806884766,
+ "step": 3596
+ },
+ {
+ "epoch": 49.964613368283096,
+ "grad_norm": 0.20551791787147522,
+ "learning_rate": 0.0006,
+ "loss": 3.5861949920654297,
+ "step": 3597
+ },
+ {
+ "epoch": 49.97859327217125,
+ "grad_norm": 0.21147456765174866,
+ "learning_rate": 0.0006,
+ "loss": 3.585934638977051,
+ "step": 3598
+ },
+ {
+ "epoch": 49.992573176059416,
+ "grad_norm": 0.21793442964553833,
+ "learning_rate": 0.0006,
+ "loss": 3.5956411361694336,
+ "step": 3599
+ },
+ {
+ "epoch": 50.0,
+ "grad_norm": 0.24623161554336548,
+ "learning_rate": 0.0006,
+ "loss": 3.623453140258789,
+ "step": 3600
+ },
+ {
+ "epoch": 50.0,
+ "eval_loss": 3.9807891845703125,
+ "eval_runtime": 45.7708,
+ "eval_samples_per_second": 53.353,
+ "eval_steps_per_second": 3.343,
+ "step": 3600
+ },
+ {
+ "epoch": 50.01397990388816,
+ "grad_norm": 0.22322626411914825,
+ "learning_rate": 0.0006,
+ "loss": 3.5475401878356934,
+ "step": 3601
+ },
+ {
+ "epoch": 50.02795980777632,
+ "grad_norm": 0.21957066655158997,
+ "learning_rate": 0.0006,
+ "loss": 3.5616683959960938,
+ "step": 3602
+ },
+ {
+ "epoch": 50.04193971166448,
+ "grad_norm": 0.22030551731586456,
+ "learning_rate": 0.0006,
+ "loss": 3.56367826461792,
+ "step": 3603
+ },
+ {
+ "epoch": 50.05591961555265,
+ "grad_norm": 0.21536092460155487,
+ "learning_rate": 0.0006,
+ "loss": 3.5613503456115723,
+ "step": 3604
+ },
+ {
+ "epoch": 50.0698995194408,
+ "grad_norm": 0.22454269230365753,
+ "learning_rate": 0.0006,
+ "loss": 3.5348987579345703,
+ "step": 3605
+ },
+ {
+ "epoch": 50.083879423328966,
+ "grad_norm": 0.2281617820262909,
+ "learning_rate": 0.0006,
+ "loss": 3.5722241401672363,
+ "step": 3606
+ },
+ {
+ "epoch": 50.09785932721712,
+ "grad_norm": 0.23318710923194885,
+ "learning_rate": 0.0006,
+ "loss": 3.559063673019409,
+ "step": 3607
+ },
+ {
+ "epoch": 50.111839231105286,
+ "grad_norm": 0.2277889847755432,
+ "learning_rate": 0.0006,
+ "loss": 3.5632925033569336,
+ "step": 3608
+ },
+ {
+ "epoch": 50.12581913499345,
+ "grad_norm": 0.2317705601453781,
+ "learning_rate": 0.0006,
+ "loss": 3.5835886001586914,
+ "step": 3609
+ },
+ {
+ "epoch": 50.139799038881605,
+ "grad_norm": 0.21388863027095795,
+ "learning_rate": 0.0006,
+ "loss": 3.5976145267486572,
+ "step": 3610
+ },
+ {
+ "epoch": 50.15377894276977,
+ "grad_norm": 0.2070954293012619,
+ "learning_rate": 0.0006,
+ "loss": 3.5486221313476562,
+ "step": 3611
+ },
+ {
+ "epoch": 50.16775884665793,
+ "grad_norm": 0.21602077782154083,
+ "learning_rate": 0.0006,
+ "loss": 3.5897607803344727,
+ "step": 3612
+ },
+ {
+ "epoch": 50.18173875054609,
+ "grad_norm": 0.21106162667274475,
+ "learning_rate": 0.0006,
+ "loss": 3.5587167739868164,
+ "step": 3613
+ },
+ {
+ "epoch": 50.19571865443425,
+ "grad_norm": 0.2047950178384781,
+ "learning_rate": 0.0006,
+ "loss": 3.576798915863037,
+ "step": 3614
+ },
+ {
+ "epoch": 50.20969855832241,
+ "grad_norm": 0.2204097956418991,
+ "learning_rate": 0.0006,
+ "loss": 3.5466837882995605,
+ "step": 3615
+ },
+ {
+ "epoch": 50.22367846221057,
+ "grad_norm": 0.2220875471830368,
+ "learning_rate": 0.0006,
+ "loss": 3.5722036361694336,
+ "step": 3616
+ },
+ {
+ "epoch": 50.237658366098735,
+ "grad_norm": 0.2250797003507614,
+ "learning_rate": 0.0006,
+ "loss": 3.566347122192383,
+ "step": 3617
+ },
+ {
+ "epoch": 50.25163826998689,
+ "grad_norm": 0.22837485373020172,
+ "learning_rate": 0.0006,
+ "loss": 3.5673274993896484,
+ "step": 3618
+ },
+ {
+ "epoch": 50.265618173875055,
+ "grad_norm": 0.2281104475259781,
+ "learning_rate": 0.0006,
+ "loss": 3.5543737411499023,
+ "step": 3619
+ },
+ {
+ "epoch": 50.27959807776322,
+ "grad_norm": 0.2052381932735443,
+ "learning_rate": 0.0006,
+ "loss": 3.566401958465576,
+ "step": 3620
+ },
+ {
+ "epoch": 50.293577981651374,
+ "grad_norm": 0.2125921994447708,
+ "learning_rate": 0.0006,
+ "loss": 3.5467424392700195,
+ "step": 3621
+ },
+ {
+ "epoch": 50.30755788553954,
+ "grad_norm": 0.22641244530677795,
+ "learning_rate": 0.0006,
+ "loss": 3.548497200012207,
+ "step": 3622
+ },
+ {
+ "epoch": 50.3215377894277,
+ "grad_norm": 0.23039482533931732,
+ "learning_rate": 0.0006,
+ "loss": 3.5948381423950195,
+ "step": 3623
+ },
+ {
+ "epoch": 50.33551769331586,
+ "grad_norm": 0.22753404080867767,
+ "learning_rate": 0.0006,
+ "loss": 3.541825532913208,
+ "step": 3624
+ },
+ {
+ "epoch": 50.34949759720402,
+ "grad_norm": 0.2528170347213745,
+ "learning_rate": 0.0006,
+ "loss": 3.5937235355377197,
+ "step": 3625
+ },
+ {
+ "epoch": 50.36347750109218,
+ "grad_norm": 0.25434595346450806,
+ "learning_rate": 0.0006,
+ "loss": 3.5779776573181152,
+ "step": 3626
+ },
+ {
+ "epoch": 50.37745740498034,
+ "grad_norm": 0.22519059479236603,
+ "learning_rate": 0.0006,
+ "loss": 3.5456271171569824,
+ "step": 3627
+ },
+ {
+ "epoch": 50.391437308868504,
+ "grad_norm": 0.2077232301235199,
+ "learning_rate": 0.0006,
+ "loss": 3.5693111419677734,
+ "step": 3628
+ },
+ {
+ "epoch": 50.40541721275666,
+ "grad_norm": 0.20925411581993103,
+ "learning_rate": 0.0006,
+ "loss": 3.6063997745513916,
+ "step": 3629
+ },
+ {
+ "epoch": 50.419397116644824,
+ "grad_norm": 0.2114555686712265,
+ "learning_rate": 0.0006,
+ "loss": 3.5676894187927246,
+ "step": 3630
+ },
+ {
+ "epoch": 50.43337702053299,
+ "grad_norm": 0.23759354650974274,
+ "learning_rate": 0.0006,
+ "loss": 3.5465126037597656,
+ "step": 3631
+ },
+ {
+ "epoch": 50.44735692442114,
+ "grad_norm": 0.23809516429901123,
+ "learning_rate": 0.0006,
+ "loss": 3.571600914001465,
+ "step": 3632
+ },
+ {
+ "epoch": 50.46133682830931,
+ "grad_norm": 0.20501303672790527,
+ "learning_rate": 0.0006,
+ "loss": 3.573550224304199,
+ "step": 3633
+ },
+ {
+ "epoch": 50.47531673219746,
+ "grad_norm": 0.21562306582927704,
+ "learning_rate": 0.0006,
+ "loss": 3.5625600814819336,
+ "step": 3634
+ },
+ {
+ "epoch": 50.489296636085626,
+ "grad_norm": 0.20469479262828827,
+ "learning_rate": 0.0006,
+ "loss": 3.5737175941467285,
+ "step": 3635
+ },
+ {
+ "epoch": 50.50327653997379,
+ "grad_norm": 0.2078634798526764,
+ "learning_rate": 0.0006,
+ "loss": 3.5691545009613037,
+ "step": 3636
+ },
+ {
+ "epoch": 50.517256443861946,
+ "grad_norm": 0.20340897142887115,
+ "learning_rate": 0.0006,
+ "loss": 3.583918571472168,
+ "step": 3637
+ },
+ {
+ "epoch": 50.53123634775011,
+ "grad_norm": 0.2006944715976715,
+ "learning_rate": 0.0006,
+ "loss": 3.596034049987793,
+ "step": 3638
+ },
+ {
+ "epoch": 50.54521625163827,
+ "grad_norm": 0.19281257688999176,
+ "learning_rate": 0.0006,
+ "loss": 3.5993080139160156,
+ "step": 3639
+ },
+ {
+ "epoch": 50.55919615552643,
+ "grad_norm": 0.19528807699680328,
+ "learning_rate": 0.0006,
+ "loss": 3.6108102798461914,
+ "step": 3640
+ },
+ {
+ "epoch": 50.57317605941459,
+ "grad_norm": 0.19329112768173218,
+ "learning_rate": 0.0006,
+ "loss": 3.5964512825012207,
+ "step": 3641
+ },
+ {
+ "epoch": 50.58715596330275,
+ "grad_norm": 0.1928209513425827,
+ "learning_rate": 0.0006,
+ "loss": 3.5927724838256836,
+ "step": 3642
+ },
+ {
+ "epoch": 50.60113586719091,
+ "grad_norm": 0.20212236046791077,
+ "learning_rate": 0.0006,
+ "loss": 3.5778708457946777,
+ "step": 3643
+ },
+ {
+ "epoch": 50.615115771079076,
+ "grad_norm": 0.22244620323181152,
+ "learning_rate": 0.0006,
+ "loss": 3.6219539642333984,
+ "step": 3644
+ },
+ {
+ "epoch": 50.62909567496723,
+ "grad_norm": 0.2659119963645935,
+ "learning_rate": 0.0006,
+ "loss": 3.578831195831299,
+ "step": 3645
+ },
+ {
+ "epoch": 50.643075578855395,
+ "grad_norm": 0.2837344706058502,
+ "learning_rate": 0.0006,
+ "loss": 3.587677240371704,
+ "step": 3646
+ },
+ {
+ "epoch": 50.65705548274356,
+ "grad_norm": 0.26747965812683105,
+ "learning_rate": 0.0006,
+ "loss": 3.611286163330078,
+ "step": 3647
+ },
+ {
+ "epoch": 50.671035386631715,
+ "grad_norm": 0.24604788422584534,
+ "learning_rate": 0.0006,
+ "loss": 3.5740575790405273,
+ "step": 3648
+ },
+ {
+ "epoch": 50.68501529051988,
+ "grad_norm": 0.2379457652568817,
+ "learning_rate": 0.0006,
+ "loss": 3.5997209548950195,
+ "step": 3649
+ },
+ {
+ "epoch": 50.69899519440804,
+ "grad_norm": 0.2296321839094162,
+ "learning_rate": 0.0006,
+ "loss": 3.5975162982940674,
+ "step": 3650
+ },
+ {
+ "epoch": 50.7129750982962,
+ "grad_norm": 0.22054627537727356,
+ "learning_rate": 0.0006,
+ "loss": 3.5821738243103027,
+ "step": 3651
+ },
+ {
+ "epoch": 50.72695500218436,
+ "grad_norm": 0.22114980220794678,
+ "learning_rate": 0.0006,
+ "loss": 3.5769970417022705,
+ "step": 3652
+ },
+ {
+ "epoch": 50.74093490607252,
+ "grad_norm": 0.21389314532279968,
+ "learning_rate": 0.0006,
+ "loss": 3.5952796936035156,
+ "step": 3653
+ },
+ {
+ "epoch": 50.75491480996068,
+ "grad_norm": 0.21069210767745972,
+ "learning_rate": 0.0006,
+ "loss": 3.5884671211242676,
+ "step": 3654
+ },
+ {
+ "epoch": 50.768894713848844,
+ "grad_norm": 0.22028805315494537,
+ "learning_rate": 0.0006,
+ "loss": 3.593442440032959,
+ "step": 3655
+ },
+ {
+ "epoch": 50.782874617737,
+ "grad_norm": 0.21296948194503784,
+ "learning_rate": 0.0006,
+ "loss": 3.5656774044036865,
+ "step": 3656
+ },
+ {
+ "epoch": 50.796854521625164,
+ "grad_norm": 0.19871588051319122,
+ "learning_rate": 0.0006,
+ "loss": 3.5939064025878906,
+ "step": 3657
+ },
+ {
+ "epoch": 50.81083442551333,
+ "grad_norm": 0.19523470103740692,
+ "learning_rate": 0.0006,
+ "loss": 3.5806071758270264,
+ "step": 3658
+ },
+ {
+ "epoch": 50.824814329401484,
+ "grad_norm": 0.18718191981315613,
+ "learning_rate": 0.0006,
+ "loss": 3.5903120040893555,
+ "step": 3659
+ },
+ {
+ "epoch": 50.83879423328965,
+ "grad_norm": 0.18796689808368683,
+ "learning_rate": 0.0006,
+ "loss": 3.5799593925476074,
+ "step": 3660
+ },
+ {
+ "epoch": 50.8527741371778,
+ "grad_norm": 0.21794569492340088,
+ "learning_rate": 0.0006,
+ "loss": 3.5712361335754395,
+ "step": 3661
+ },
+ {
+ "epoch": 50.86675404106597,
+ "grad_norm": 0.2374759465456009,
+ "learning_rate": 0.0006,
+ "loss": 3.602503776550293,
+ "step": 3662
+ },
+ {
+ "epoch": 50.88073394495413,
+ "grad_norm": 0.20213527977466583,
+ "learning_rate": 0.0006,
+ "loss": 3.5756399631500244,
+ "step": 3663
+ },
+ {
+ "epoch": 50.89471384884229,
+ "grad_norm": 0.1875160187482834,
+ "learning_rate": 0.0006,
+ "loss": 3.625436305999756,
+ "step": 3664
+ },
+ {
+ "epoch": 50.90869375273045,
+ "grad_norm": 0.19908255338668823,
+ "learning_rate": 0.0006,
+ "loss": 3.592522621154785,
+ "step": 3665
+ },
+ {
+ "epoch": 50.92267365661861,
+ "grad_norm": 0.20776167511940002,
+ "learning_rate": 0.0006,
+ "loss": 3.5777883529663086,
+ "step": 3666
+ },
+ {
+ "epoch": 50.93665356050677,
+ "grad_norm": 0.19510093331336975,
+ "learning_rate": 0.0006,
+ "loss": 3.587306022644043,
+ "step": 3667
+ },
+ {
+ "epoch": 50.95063346439493,
+ "grad_norm": 0.2180490493774414,
+ "learning_rate": 0.0006,
+ "loss": 3.5855464935302734,
+ "step": 3668
+ },
+ {
+ "epoch": 50.964613368283096,
+ "grad_norm": 0.19967055320739746,
+ "learning_rate": 0.0006,
+ "loss": 3.609689235687256,
+ "step": 3669
+ },
+ {
+ "epoch": 50.97859327217125,
+ "grad_norm": 0.2081584632396698,
+ "learning_rate": 0.0006,
+ "loss": 3.625236749649048,
+ "step": 3670
+ },
+ {
+ "epoch": 50.992573176059416,
+ "grad_norm": 0.2312266230583191,
+ "learning_rate": 0.0006,
+ "loss": 3.5977330207824707,
+ "step": 3671
+ },
+ {
+ "epoch": 51.0,
+ "grad_norm": 0.2464766502380371,
+ "learning_rate": 0.0006,
+ "loss": 3.610635995864868,
+ "step": 3672
+ },
+ {
+ "epoch": 51.0,
+ "eval_loss": 3.9810166358947754,
+ "eval_runtime": 45.5851,
+ "eval_samples_per_second": 53.57,
+ "eval_steps_per_second": 3.356,
+ "step": 3672
+ },
+ {
+ "epoch": 51.01397990388816,
+ "grad_norm": 0.22583232820034027,
+ "learning_rate": 0.0006,
+ "loss": 3.547168016433716,
+ "step": 3673
+ },
+ {
+ "epoch": 51.02795980777632,
+ "grad_norm": 0.23001070320606232,
+ "learning_rate": 0.0006,
+ "loss": 3.546207904815674,
+ "step": 3674
+ },
+ {
+ "epoch": 51.04193971166448,
+ "grad_norm": 0.21891392767429352,
+ "learning_rate": 0.0006,
+ "loss": 3.564371109008789,
+ "step": 3675
+ },
+ {
+ "epoch": 51.05591961555265,
+ "grad_norm": 0.22195076942443848,
+ "learning_rate": 0.0006,
+ "loss": 3.538297414779663,
+ "step": 3676
+ },
+ {
+ "epoch": 51.0698995194408,
+ "grad_norm": 0.24688288569450378,
+ "learning_rate": 0.0006,
+ "loss": 3.5705811977386475,
+ "step": 3677
+ },
+ {
+ "epoch": 51.083879423328966,
+ "grad_norm": 0.2731003165245056,
+ "learning_rate": 0.0006,
+ "loss": 3.530763626098633,
+ "step": 3678
+ },
+ {
+ "epoch": 51.09785932721712,
+ "grad_norm": 0.27474021911621094,
+ "learning_rate": 0.0006,
+ "loss": 3.5559208393096924,
+ "step": 3679
+ },
+ {
+ "epoch": 51.111839231105286,
+ "grad_norm": 0.26311439275741577,
+ "learning_rate": 0.0006,
+ "loss": 3.5698819160461426,
+ "step": 3680
+ },
+ {
+ "epoch": 51.12581913499345,
+ "grad_norm": 0.21895965933799744,
+ "learning_rate": 0.0006,
+ "loss": 3.567232370376587,
+ "step": 3681
+ },
+ {
+ "epoch": 51.139799038881605,
+ "grad_norm": 0.19598282873630524,
+ "learning_rate": 0.0006,
+ "loss": 3.6033718585968018,
+ "step": 3682
+ },
+ {
+ "epoch": 51.15377894276977,
+ "grad_norm": 0.2183268666267395,
+ "learning_rate": 0.0006,
+ "loss": 3.5599026679992676,
+ "step": 3683
+ },
+ {
+ "epoch": 51.16775884665793,
+ "grad_norm": 0.22657731175422668,
+ "learning_rate": 0.0006,
+ "loss": 3.532038688659668,
+ "step": 3684
+ },
+ {
+ "epoch": 51.18173875054609,
+ "grad_norm": 0.21979935467243195,
+ "learning_rate": 0.0006,
+ "loss": 3.544640064239502,
+ "step": 3685
+ },
+ {
+ "epoch": 51.19571865443425,
+ "grad_norm": 0.20581361651420593,
+ "learning_rate": 0.0006,
+ "loss": 3.579803466796875,
+ "step": 3686
+ },
+ {
+ "epoch": 51.20969855832241,
+ "grad_norm": 0.22677212953567505,
+ "learning_rate": 0.0006,
+ "loss": 3.576796054840088,
+ "step": 3687
+ },
+ {
+ "epoch": 51.22367846221057,
+ "grad_norm": 0.2599104940891266,
+ "learning_rate": 0.0006,
+ "loss": 3.5657899379730225,
+ "step": 3688
+ },
+ {
+ "epoch": 51.237658366098735,
+ "grad_norm": 0.23320309817790985,
+ "learning_rate": 0.0006,
+ "loss": 3.5537824630737305,
+ "step": 3689
+ },
+ {
+ "epoch": 51.25163826998689,
+ "grad_norm": 0.2345186471939087,
+ "learning_rate": 0.0006,
+ "loss": 3.5699901580810547,
+ "step": 3690
+ },
+ {
+ "epoch": 51.265618173875055,
+ "grad_norm": 0.24723312258720398,
+ "learning_rate": 0.0006,
+ "loss": 3.553495168685913,
+ "step": 3691
+ },
+ {
+ "epoch": 51.27959807776322,
+ "grad_norm": 0.24195604026317596,
+ "learning_rate": 0.0006,
+ "loss": 3.6008248329162598,
+ "step": 3692
+ },
+ {
+ "epoch": 51.293577981651374,
+ "grad_norm": 0.23011726140975952,
+ "learning_rate": 0.0006,
+ "loss": 3.5842812061309814,
+ "step": 3693
+ },
+ {
+ "epoch": 51.30755788553954,
+ "grad_norm": 0.23412185907363892,
+ "learning_rate": 0.0006,
+ "loss": 3.5648040771484375,
+ "step": 3694
+ },
+ {
+ "epoch": 51.3215377894277,
+ "grad_norm": 0.22911828756332397,
+ "learning_rate": 0.0006,
+ "loss": 3.5599000453948975,
+ "step": 3695
+ },
+ {
+ "epoch": 51.33551769331586,
+ "grad_norm": 0.20045386254787445,
+ "learning_rate": 0.0006,
+ "loss": 3.559370517730713,
+ "step": 3696
+ },
+ {
+ "epoch": 51.34949759720402,
+ "grad_norm": 0.24723322689533234,
+ "learning_rate": 0.0006,
+ "loss": 3.5734081268310547,
+ "step": 3697
+ },
+ {
+ "epoch": 51.36347750109218,
+ "grad_norm": 0.28003066778182983,
+ "learning_rate": 0.0006,
+ "loss": 3.574591636657715,
+ "step": 3698
+ },
+ {
+ "epoch": 51.37745740498034,
+ "grad_norm": 0.27969157695770264,
+ "learning_rate": 0.0006,
+ "loss": 3.5703907012939453,
+ "step": 3699
+ },
+ {
+ "epoch": 51.391437308868504,
+ "grad_norm": 0.2352922111749649,
+ "learning_rate": 0.0006,
+ "loss": 3.540452480316162,
+ "step": 3700
+ },
+ {
+ "epoch": 51.40541721275666,
+ "grad_norm": 0.21332240104675293,
+ "learning_rate": 0.0006,
+ "loss": 3.5883522033691406,
+ "step": 3701
+ },
+ {
+ "epoch": 51.419397116644824,
+ "grad_norm": 0.2021809071302414,
+ "learning_rate": 0.0006,
+ "loss": 3.567544460296631,
+ "step": 3702
+ },
+ {
+ "epoch": 51.43337702053299,
+ "grad_norm": 0.23054654896259308,
+ "learning_rate": 0.0006,
+ "loss": 3.5927062034606934,
+ "step": 3703
+ },
+ {
+ "epoch": 51.44735692442114,
+ "grad_norm": 0.22398747503757477,
+ "learning_rate": 0.0006,
+ "loss": 3.5977213382720947,
+ "step": 3704
+ },
+ {
+ "epoch": 51.46133682830931,
+ "grad_norm": 0.2021128088235855,
+ "learning_rate": 0.0006,
+ "loss": 3.585836887359619,
+ "step": 3705
+ },
+ {
+ "epoch": 51.47531673219746,
+ "grad_norm": 0.23031292855739594,
+ "learning_rate": 0.0006,
+ "loss": 3.532315731048584,
+ "step": 3706
+ },
+ {
+ "epoch": 51.489296636085626,
+ "grad_norm": 0.26744455099105835,
+ "learning_rate": 0.0006,
+ "loss": 3.585782289505005,
+ "step": 3707
+ },
+ {
+ "epoch": 51.50327653997379,
+ "grad_norm": 0.2508980929851532,
+ "learning_rate": 0.0006,
+ "loss": 3.550276279449463,
+ "step": 3708
+ },
+ {
+ "epoch": 51.517256443861946,
+ "grad_norm": 0.2180585265159607,
+ "learning_rate": 0.0006,
+ "loss": 3.566798210144043,
+ "step": 3709
+ },
+ {
+ "epoch": 51.53123634775011,
+ "grad_norm": 0.18508869409561157,
+ "learning_rate": 0.0006,
+ "loss": 3.5295116901397705,
+ "step": 3710
+ },
+ {
+ "epoch": 51.54521625163827,
+ "grad_norm": 0.19017672538757324,
+ "learning_rate": 0.0006,
+ "loss": 3.5932717323303223,
+ "step": 3711
+ },
+ {
+ "epoch": 51.55919615552643,
+ "grad_norm": 0.2228020876646042,
+ "learning_rate": 0.0006,
+ "loss": 3.5660648345947266,
+ "step": 3712
+ },
+ {
+ "epoch": 51.57317605941459,
+ "grad_norm": 0.22948148846626282,
+ "learning_rate": 0.0006,
+ "loss": 3.5785627365112305,
+ "step": 3713
+ },
+ {
+ "epoch": 51.58715596330275,
+ "grad_norm": 0.2438911497592926,
+ "learning_rate": 0.0006,
+ "loss": 3.5885257720947266,
+ "step": 3714
+ },
+ {
+ "epoch": 51.60113586719091,
+ "grad_norm": 0.25012296438217163,
+ "learning_rate": 0.0006,
+ "loss": 3.577232599258423,
+ "step": 3715
+ },
+ {
+ "epoch": 51.615115771079076,
+ "grad_norm": 0.27102336287498474,
+ "learning_rate": 0.0006,
+ "loss": 3.5600078105926514,
+ "step": 3716
+ },
+ {
+ "epoch": 51.62909567496723,
+ "grad_norm": 0.26425355672836304,
+ "learning_rate": 0.0006,
+ "loss": 3.5694093704223633,
+ "step": 3717
+ },
+ {
+ "epoch": 51.643075578855395,
+ "grad_norm": 0.24292822182178497,
+ "learning_rate": 0.0006,
+ "loss": 3.5774331092834473,
+ "step": 3718
+ },
+ {
+ "epoch": 51.65705548274356,
+ "grad_norm": 0.22668084502220154,
+ "learning_rate": 0.0006,
+ "loss": 3.5912742614746094,
+ "step": 3719
+ },
+ {
+ "epoch": 51.671035386631715,
+ "grad_norm": 0.2090575248003006,
+ "learning_rate": 0.0006,
+ "loss": 3.5473170280456543,
+ "step": 3720
+ },
+ {
+ "epoch": 51.68501529051988,
+ "grad_norm": 0.22276616096496582,
+ "learning_rate": 0.0006,
+ "loss": 3.6076784133911133,
+ "step": 3721
+ },
+ {
+ "epoch": 51.69899519440804,
+ "grad_norm": 0.22105294466018677,
+ "learning_rate": 0.0006,
+ "loss": 3.5820791721343994,
+ "step": 3722
+ },
+ {
+ "epoch": 51.7129750982962,
+ "grad_norm": 0.19231240451335907,
+ "learning_rate": 0.0006,
+ "loss": 3.6017708778381348,
+ "step": 3723
+ },
+ {
+ "epoch": 51.72695500218436,
+ "grad_norm": 0.2050354927778244,
+ "learning_rate": 0.0006,
+ "loss": 3.5967769622802734,
+ "step": 3724
+ },
+ {
+ "epoch": 51.74093490607252,
+ "grad_norm": 0.19779305160045624,
+ "learning_rate": 0.0006,
+ "loss": 3.597214698791504,
+ "step": 3725
+ },
+ {
+ "epoch": 51.75491480996068,
+ "grad_norm": 0.22394844889640808,
+ "learning_rate": 0.0006,
+ "loss": 3.574063301086426,
+ "step": 3726
+ },
+ {
+ "epoch": 51.768894713848844,
+ "grad_norm": 0.2262638807296753,
+ "learning_rate": 0.0006,
+ "loss": 3.5754079818725586,
+ "step": 3727
+ },
+ {
+ "epoch": 51.782874617737,
+ "grad_norm": 0.2168288677930832,
+ "learning_rate": 0.0006,
+ "loss": 3.6079599857330322,
+ "step": 3728
+ },
+ {
+ "epoch": 51.796854521625164,
+ "grad_norm": 0.2035517394542694,
+ "learning_rate": 0.0006,
+ "loss": 3.5948667526245117,
+ "step": 3729
+ },
+ {
+ "epoch": 51.81083442551333,
+ "grad_norm": 0.20529425144195557,
+ "learning_rate": 0.0006,
+ "loss": 3.5589542388916016,
+ "step": 3730
+ },
+ {
+ "epoch": 51.824814329401484,
+ "grad_norm": 0.2464100867509842,
+ "learning_rate": 0.0006,
+ "loss": 3.5947155952453613,
+ "step": 3731
+ },
+ {
+ "epoch": 51.83879423328965,
+ "grad_norm": 0.28043219447135925,
+ "learning_rate": 0.0006,
+ "loss": 3.6102852821350098,
+ "step": 3732
+ },
+ {
+ "epoch": 51.8527741371778,
+ "grad_norm": 0.2879013121128082,
+ "learning_rate": 0.0006,
+ "loss": 3.5903573036193848,
+ "step": 3733
+ },
+ {
+ "epoch": 51.86675404106597,
+ "grad_norm": 0.2532044053077698,
+ "learning_rate": 0.0006,
+ "loss": 3.5704729557037354,
+ "step": 3734
+ },
+ {
+ "epoch": 51.88073394495413,
+ "grad_norm": 0.25126248598098755,
+ "learning_rate": 0.0006,
+ "loss": 3.5449633598327637,
+ "step": 3735
+ },
+ {
+ "epoch": 51.89471384884229,
+ "grad_norm": 0.2494364082813263,
+ "learning_rate": 0.0006,
+ "loss": 3.5825607776641846,
+ "step": 3736
+ },
+ {
+ "epoch": 51.90869375273045,
+ "grad_norm": 0.24867761135101318,
+ "learning_rate": 0.0006,
+ "loss": 3.5998034477233887,
+ "step": 3737
+ },
+ {
+ "epoch": 51.92267365661861,
+ "grad_norm": 0.2552012801170349,
+ "learning_rate": 0.0006,
+ "loss": 3.5487377643585205,
+ "step": 3738
+ },
+ {
+ "epoch": 51.93665356050677,
+ "grad_norm": 0.2243119329214096,
+ "learning_rate": 0.0006,
+ "loss": 3.6081466674804688,
+ "step": 3739
+ },
+ {
+ "epoch": 51.95063346439493,
+ "grad_norm": 0.2106700837612152,
+ "learning_rate": 0.0006,
+ "loss": 3.607586622238159,
+ "step": 3740
+ },
+ {
+ "epoch": 51.964613368283096,
+ "grad_norm": 0.2207096666097641,
+ "learning_rate": 0.0006,
+ "loss": 3.6094579696655273,
+ "step": 3741
+ },
+ {
+ "epoch": 51.97859327217125,
+ "grad_norm": 0.2310071736574173,
+ "learning_rate": 0.0006,
+ "loss": 3.5837807655334473,
+ "step": 3742
+ },
+ {
+ "epoch": 51.992573176059416,
+ "grad_norm": 0.258770614862442,
+ "learning_rate": 0.0006,
+ "loss": 3.639329433441162,
+ "step": 3743
+ },
+ {
+ "epoch": 52.0,
+ "grad_norm": 0.24004915356636047,
+ "learning_rate": 0.0006,
+ "loss": 3.6178512573242188,
+ "step": 3744
+ },
+ {
+ "epoch": 52.0,
+ "eval_loss": 3.97371244430542,
+ "eval_runtime": 46.1923,
+ "eval_samples_per_second": 52.866,
+ "eval_steps_per_second": 3.312,
+ "step": 3744
+ },
+ {
+ "epoch": 52.01397990388816,
+ "grad_norm": 0.21953323483467102,
+ "learning_rate": 0.0006,
+ "loss": 3.5929579734802246,
+ "step": 3745
+ },
+ {
+ "epoch": 52.02795980777632,
+ "grad_norm": 0.25547415018081665,
+ "learning_rate": 0.0006,
+ "loss": 3.5762600898742676,
+ "step": 3746
+ },
+ {
+ "epoch": 52.04193971166448,
+ "grad_norm": 0.28905144333839417,
+ "learning_rate": 0.0006,
+ "loss": 3.5794596672058105,
+ "step": 3747
+ },
+ {
+ "epoch": 52.05591961555265,
+ "grad_norm": 0.2618118226528168,
+ "learning_rate": 0.0006,
+ "loss": 3.543205499649048,
+ "step": 3748
+ },
+ {
+ "epoch": 52.0698995194408,
+ "grad_norm": 0.2288745492696762,
+ "learning_rate": 0.0006,
+ "loss": 3.562770366668701,
+ "step": 3749
+ },
+ {
+ "epoch": 52.083879423328966,
+ "grad_norm": 0.25327110290527344,
+ "learning_rate": 0.0006,
+ "loss": 3.5405054092407227,
+ "step": 3750
+ },
+ {
+ "epoch": 52.09785932721712,
+ "grad_norm": 0.2721746861934662,
+ "learning_rate": 0.0006,
+ "loss": 3.5650479793548584,
+ "step": 3751
+ },
+ {
+ "epoch": 52.111839231105286,
+ "grad_norm": 0.2890555262565613,
+ "learning_rate": 0.0006,
+ "loss": 3.556122303009033,
+ "step": 3752
+ },
+ {
+ "epoch": 52.12581913499345,
+ "grad_norm": 0.30541476607322693,
+ "learning_rate": 0.0006,
+ "loss": 3.544271469116211,
+ "step": 3753
+ },
+ {
+ "epoch": 52.139799038881605,
+ "grad_norm": 0.2555760443210602,
+ "learning_rate": 0.0006,
+ "loss": 3.5452728271484375,
+ "step": 3754
+ },
+ {
+ "epoch": 52.15377894276977,
+ "grad_norm": 0.2653098404407501,
+ "learning_rate": 0.0006,
+ "loss": 3.57212495803833,
+ "step": 3755
+ },
+ {
+ "epoch": 52.16775884665793,
+ "grad_norm": 0.2479168176651001,
+ "learning_rate": 0.0006,
+ "loss": 3.5893373489379883,
+ "step": 3756
+ },
+ {
+ "epoch": 52.18173875054609,
+ "grad_norm": 0.21718256175518036,
+ "learning_rate": 0.0006,
+ "loss": 3.5616965293884277,
+ "step": 3757
+ },
+ {
+ "epoch": 52.19571865443425,
+ "grad_norm": 0.22033235430717468,
+ "learning_rate": 0.0006,
+ "loss": 3.566401481628418,
+ "step": 3758
+ },
+ {
+ "epoch": 52.20969855832241,
+ "grad_norm": 0.2401825189590454,
+ "learning_rate": 0.0006,
+ "loss": 3.547682762145996,
+ "step": 3759
+ },
+ {
+ "epoch": 52.22367846221057,
+ "grad_norm": 0.24496418237686157,
+ "learning_rate": 0.0006,
+ "loss": 3.5405421257019043,
+ "step": 3760
+ },
+ {
+ "epoch": 52.237658366098735,
+ "grad_norm": 0.2311883270740509,
+ "learning_rate": 0.0006,
+ "loss": 3.5709781646728516,
+ "step": 3761
+ },
+ {
+ "epoch": 52.25163826998689,
+ "grad_norm": 0.20850200951099396,
+ "learning_rate": 0.0006,
+ "loss": 3.5563712120056152,
+ "step": 3762
+ },
+ {
+ "epoch": 52.265618173875055,
+ "grad_norm": 0.2073400765657425,
+ "learning_rate": 0.0006,
+ "loss": 3.542343854904175,
+ "step": 3763
+ },
+ {
+ "epoch": 52.27959807776322,
+ "grad_norm": 0.21886718273162842,
+ "learning_rate": 0.0006,
+ "loss": 3.5633034706115723,
+ "step": 3764
+ },
+ {
+ "epoch": 52.293577981651374,
+ "grad_norm": 0.2218562215566635,
+ "learning_rate": 0.0006,
+ "loss": 3.5644288063049316,
+ "step": 3765
+ },
+ {
+ "epoch": 52.30755788553954,
+ "grad_norm": 0.22043557465076447,
+ "learning_rate": 0.0006,
+ "loss": 3.564373731613159,
+ "step": 3766
+ },
+ {
+ "epoch": 52.3215377894277,
+ "grad_norm": 0.2095082402229309,
+ "learning_rate": 0.0006,
+ "loss": 3.5336289405822754,
+ "step": 3767
+ },
+ {
+ "epoch": 52.33551769331586,
+ "grad_norm": 0.21115876734256744,
+ "learning_rate": 0.0006,
+ "loss": 3.5761165618896484,
+ "step": 3768
+ },
+ {
+ "epoch": 52.34949759720402,
+ "grad_norm": 0.21558400988578796,
+ "learning_rate": 0.0006,
+ "loss": 3.573495388031006,
+ "step": 3769
+ },
+ {
+ "epoch": 52.36347750109218,
+ "grad_norm": 0.213745579123497,
+ "learning_rate": 0.0006,
+ "loss": 3.572171211242676,
+ "step": 3770
+ },
+ {
+ "epoch": 52.37745740498034,
+ "grad_norm": 0.1926180124282837,
+ "learning_rate": 0.0006,
+ "loss": 3.532592535018921,
+ "step": 3771
+ },
+ {
+ "epoch": 52.391437308868504,
+ "grad_norm": 0.1993863731622696,
+ "learning_rate": 0.0006,
+ "loss": 3.551880359649658,
+ "step": 3772
+ },
+ {
+ "epoch": 52.40541721275666,
+ "grad_norm": 0.2018740326166153,
+ "learning_rate": 0.0006,
+ "loss": 3.557328701019287,
+ "step": 3773
+ },
+ {
+ "epoch": 52.419397116644824,
+ "grad_norm": 0.19035610556602478,
+ "learning_rate": 0.0006,
+ "loss": 3.600301504135132,
+ "step": 3774
+ },
+ {
+ "epoch": 52.43337702053299,
+ "grad_norm": 0.20069538056850433,
+ "learning_rate": 0.0006,
+ "loss": 3.5938944816589355,
+ "step": 3775
+ },
+ {
+ "epoch": 52.44735692442114,
+ "grad_norm": 0.21255625784397125,
+ "learning_rate": 0.0006,
+ "loss": 3.561086893081665,
+ "step": 3776
+ },
+ {
+ "epoch": 52.46133682830931,
+ "grad_norm": 0.20132070779800415,
+ "learning_rate": 0.0006,
+ "loss": 3.5525574684143066,
+ "step": 3777
+ },
+ {
+ "epoch": 52.47531673219746,
+ "grad_norm": 0.20152916014194489,
+ "learning_rate": 0.0006,
+ "loss": 3.5697402954101562,
+ "step": 3778
+ },
+ {
+ "epoch": 52.489296636085626,
+ "grad_norm": 0.1984269767999649,
+ "learning_rate": 0.0006,
+ "loss": 3.5686168670654297,
+ "step": 3779
+ },
+ {
+ "epoch": 52.50327653997379,
+ "grad_norm": 0.212612584233284,
+ "learning_rate": 0.0006,
+ "loss": 3.5522124767303467,
+ "step": 3780
+ },
+ {
+ "epoch": 52.517256443861946,
+ "grad_norm": 0.21382521092891693,
+ "learning_rate": 0.0006,
+ "loss": 3.5692944526672363,
+ "step": 3781
+ },
+ {
+ "epoch": 52.53123634775011,
+ "grad_norm": 0.2118486911058426,
+ "learning_rate": 0.0006,
+ "loss": 3.562495708465576,
+ "step": 3782
+ },
+ {
+ "epoch": 52.54521625163827,
+ "grad_norm": 0.22253486514091492,
+ "learning_rate": 0.0006,
+ "loss": 3.5709781646728516,
+ "step": 3783
+ },
+ {
+ "epoch": 52.55919615552643,
+ "grad_norm": 0.23701436817646027,
+ "learning_rate": 0.0006,
+ "loss": 3.548953056335449,
+ "step": 3784
+ },
+ {
+ "epoch": 52.57317605941459,
+ "grad_norm": 0.21345193684101105,
+ "learning_rate": 0.0006,
+ "loss": 3.543029308319092,
+ "step": 3785
+ },
+ {
+ "epoch": 52.58715596330275,
+ "grad_norm": 0.1854170262813568,
+ "learning_rate": 0.0006,
+ "loss": 3.5490989685058594,
+ "step": 3786
+ },
+ {
+ "epoch": 52.60113586719091,
+ "grad_norm": 0.23733633756637573,
+ "learning_rate": 0.0006,
+ "loss": 3.5800132751464844,
+ "step": 3787
+ },
+ {
+ "epoch": 52.615115771079076,
+ "grad_norm": 0.26175495982170105,
+ "learning_rate": 0.0006,
+ "loss": 3.562596321105957,
+ "step": 3788
+ },
+ {
+ "epoch": 52.62909567496723,
+ "grad_norm": 0.23134057223796844,
+ "learning_rate": 0.0006,
+ "loss": 3.5685765743255615,
+ "step": 3789
+ },
+ {
+ "epoch": 52.643075578855395,
+ "grad_norm": 0.1974988877773285,
+ "learning_rate": 0.0006,
+ "loss": 3.570517063140869,
+ "step": 3790
+ },
+ {
+ "epoch": 52.65705548274356,
+ "grad_norm": 0.20049697160720825,
+ "learning_rate": 0.0006,
+ "loss": 3.573286533355713,
+ "step": 3791
+ },
+ {
+ "epoch": 52.671035386631715,
+ "grad_norm": 0.1956445872783661,
+ "learning_rate": 0.0006,
+ "loss": 3.565880537033081,
+ "step": 3792
+ },
+ {
+ "epoch": 52.68501529051988,
+ "grad_norm": 0.2082354575395584,
+ "learning_rate": 0.0006,
+ "loss": 3.587278366088867,
+ "step": 3793
+ },
+ {
+ "epoch": 52.69899519440804,
+ "grad_norm": 0.20923161506652832,
+ "learning_rate": 0.0006,
+ "loss": 3.569469451904297,
+ "step": 3794
+ },
+ {
+ "epoch": 52.7129750982962,
+ "grad_norm": 0.20482848584651947,
+ "learning_rate": 0.0006,
+ "loss": 3.5826265811920166,
+ "step": 3795
+ },
+ {
+ "epoch": 52.72695500218436,
+ "grad_norm": 0.20411530137062073,
+ "learning_rate": 0.0006,
+ "loss": 3.5870275497436523,
+ "step": 3796
+ },
+ {
+ "epoch": 52.74093490607252,
+ "grad_norm": 0.2205485701560974,
+ "learning_rate": 0.0006,
+ "loss": 3.58900785446167,
+ "step": 3797
+ },
+ {
+ "epoch": 52.75491480996068,
+ "grad_norm": 0.21134008467197418,
+ "learning_rate": 0.0006,
+ "loss": 3.591036558151245,
+ "step": 3798
+ },
+ {
+ "epoch": 52.768894713848844,
+ "grad_norm": 0.20001831650733948,
+ "learning_rate": 0.0006,
+ "loss": 3.5670390129089355,
+ "step": 3799
+ },
+ {
+ "epoch": 52.782874617737,
+ "grad_norm": 0.2175939679145813,
+ "learning_rate": 0.0006,
+ "loss": 3.594132423400879,
+ "step": 3800
+ },
+ {
+ "epoch": 52.796854521625164,
+ "grad_norm": 0.22054694592952728,
+ "learning_rate": 0.0006,
+ "loss": 3.5565545558929443,
+ "step": 3801
+ },
+ {
+ "epoch": 52.81083442551333,
+ "grad_norm": 0.22901731729507446,
+ "learning_rate": 0.0006,
+ "loss": 3.5837020874023438,
+ "step": 3802
+ },
+ {
+ "epoch": 52.824814329401484,
+ "grad_norm": 0.22492778301239014,
+ "learning_rate": 0.0006,
+ "loss": 3.608218193054199,
+ "step": 3803
+ },
+ {
+ "epoch": 52.83879423328965,
+ "grad_norm": 0.21645256876945496,
+ "learning_rate": 0.0006,
+ "loss": 3.5839202404022217,
+ "step": 3804
+ },
+ {
+ "epoch": 52.8527741371778,
+ "grad_norm": 0.19680161774158478,
+ "learning_rate": 0.0006,
+ "loss": 3.568756580352783,
+ "step": 3805
+ },
+ {
+ "epoch": 52.86675404106597,
+ "grad_norm": 0.2084486186504364,
+ "learning_rate": 0.0006,
+ "loss": 3.580197811126709,
+ "step": 3806
+ },
+ {
+ "epoch": 52.88073394495413,
+ "grad_norm": 0.19380393624305725,
+ "learning_rate": 0.0006,
+ "loss": 3.5871198177337646,
+ "step": 3807
+ },
+ {
+ "epoch": 52.89471384884229,
+ "grad_norm": 0.1962910294532776,
+ "learning_rate": 0.0006,
+ "loss": 3.5878777503967285,
+ "step": 3808
+ },
+ {
+ "epoch": 52.90869375273045,
+ "grad_norm": 0.23292803764343262,
+ "learning_rate": 0.0006,
+ "loss": 3.574855327606201,
+ "step": 3809
+ },
+ {
+ "epoch": 52.92267365661861,
+ "grad_norm": 0.26974233984947205,
+ "learning_rate": 0.0006,
+ "loss": 3.5731749534606934,
+ "step": 3810
+ },
+ {
+ "epoch": 52.93665356050677,
+ "grad_norm": 0.26665496826171875,
+ "learning_rate": 0.0006,
+ "loss": 3.552717685699463,
+ "step": 3811
+ },
+ {
+ "epoch": 52.95063346439493,
+ "grad_norm": 0.24156489968299866,
+ "learning_rate": 0.0006,
+ "loss": 3.581787109375,
+ "step": 3812
+ },
+ {
+ "epoch": 52.964613368283096,
+ "grad_norm": 0.22062325477600098,
+ "learning_rate": 0.0006,
+ "loss": 3.578994035720825,
+ "step": 3813
+ },
+ {
+ "epoch": 52.97859327217125,
+ "grad_norm": 0.19949151575565338,
+ "learning_rate": 0.0006,
+ "loss": 3.6157355308532715,
+ "step": 3814
+ },
+ {
+ "epoch": 52.992573176059416,
+ "grad_norm": 0.2157975435256958,
+ "learning_rate": 0.0006,
+ "loss": 3.5677759647369385,
+ "step": 3815
+ },
+ {
+ "epoch": 53.0,
+ "grad_norm": 0.23285679519176483,
+ "learning_rate": 0.0006,
+ "loss": 3.5541789531707764,
+ "step": 3816
+ },
+ {
+ "epoch": 53.0,
+ "eval_loss": 3.9737255573272705,
+ "eval_runtime": 46.0304,
+ "eval_samples_per_second": 53.052,
+ "eval_steps_per_second": 3.324,
+ "step": 3816
+ },
+ {
+ "epoch": 53.01397990388816,
+ "grad_norm": 0.212715283036232,
+ "learning_rate": 0.0006,
+ "loss": 3.5475640296936035,
+ "step": 3817
+ },
+ {
+ "epoch": 53.02795980777632,
+ "grad_norm": 0.24556505680084229,
+ "learning_rate": 0.0006,
+ "loss": 3.5197463035583496,
+ "step": 3818
+ },
+ {
+ "epoch": 53.04193971166448,
+ "grad_norm": 0.2898217737674713,
+ "learning_rate": 0.0006,
+ "loss": 3.527390956878662,
+ "step": 3819
+ },
+ {
+ "epoch": 53.05591961555265,
+ "grad_norm": 0.26151803135871887,
+ "learning_rate": 0.0006,
+ "loss": 3.5462024211883545,
+ "step": 3820
+ },
+ {
+ "epoch": 53.0698995194408,
+ "grad_norm": 0.24648059904575348,
+ "learning_rate": 0.0006,
+ "loss": 3.5584919452667236,
+ "step": 3821
+ },
+ {
+ "epoch": 53.083879423328966,
+ "grad_norm": 0.22295059263706207,
+ "learning_rate": 0.0006,
+ "loss": 3.517195701599121,
+ "step": 3822
+ },
+ {
+ "epoch": 53.09785932721712,
+ "grad_norm": 0.2206476330757141,
+ "learning_rate": 0.0006,
+ "loss": 3.570678234100342,
+ "step": 3823
+ },
+ {
+ "epoch": 53.111839231105286,
+ "grad_norm": 0.22069714963436127,
+ "learning_rate": 0.0006,
+ "loss": 3.5707359313964844,
+ "step": 3824
+ },
+ {
+ "epoch": 53.12581913499345,
+ "grad_norm": 0.21850740909576416,
+ "learning_rate": 0.0006,
+ "loss": 3.5730209350585938,
+ "step": 3825
+ },
+ {
+ "epoch": 53.139799038881605,
+ "grad_norm": 0.21554340422153473,
+ "learning_rate": 0.0006,
+ "loss": 3.5578367710113525,
+ "step": 3826
+ },
+ {
+ "epoch": 53.15377894276977,
+ "grad_norm": 0.21678747236728668,
+ "learning_rate": 0.0006,
+ "loss": 3.5603280067443848,
+ "step": 3827
+ },
+ {
+ "epoch": 53.16775884665793,
+ "grad_norm": 0.22017014026641846,
+ "learning_rate": 0.0006,
+ "loss": 3.577760696411133,
+ "step": 3828
+ },
+ {
+ "epoch": 53.18173875054609,
+ "grad_norm": 0.20485524833202362,
+ "learning_rate": 0.0006,
+ "loss": 3.574751853942871,
+ "step": 3829
+ },
+ {
+ "epoch": 53.19571865443425,
+ "grad_norm": 0.22951237857341766,
+ "learning_rate": 0.0006,
+ "loss": 3.5464377403259277,
+ "step": 3830
+ },
+ {
+ "epoch": 53.20969855832241,
+ "grad_norm": 0.2343965619802475,
+ "learning_rate": 0.0006,
+ "loss": 3.516113758087158,
+ "step": 3831
+ },
+ {
+ "epoch": 53.22367846221057,
+ "grad_norm": 0.24002069234848022,
+ "learning_rate": 0.0006,
+ "loss": 3.564629554748535,
+ "step": 3832
+ },
+ {
+ "epoch": 53.237658366098735,
+ "grad_norm": 0.23933765292167664,
+ "learning_rate": 0.0006,
+ "loss": 3.5518507957458496,
+ "step": 3833
+ },
+ {
+ "epoch": 53.25163826998689,
+ "grad_norm": 0.2188953459262848,
+ "learning_rate": 0.0006,
+ "loss": 3.5341856479644775,
+ "step": 3834
+ },
+ {
+ "epoch": 53.265618173875055,
+ "grad_norm": 0.22629091143608093,
+ "learning_rate": 0.0006,
+ "loss": 3.5479273796081543,
+ "step": 3835
+ },
+ {
+ "epoch": 53.27959807776322,
+ "grad_norm": 0.2386554479598999,
+ "learning_rate": 0.0006,
+ "loss": 3.6097445487976074,
+ "step": 3836
+ },
+ {
+ "epoch": 53.293577981651374,
+ "grad_norm": 0.23003390431404114,
+ "learning_rate": 0.0006,
+ "loss": 3.5435304641723633,
+ "step": 3837
+ },
+ {
+ "epoch": 53.30755788553954,
+ "grad_norm": 0.248053640127182,
+ "learning_rate": 0.0006,
+ "loss": 3.545290470123291,
+ "step": 3838
+ },
+ {
+ "epoch": 53.3215377894277,
+ "grad_norm": 0.23945583403110504,
+ "learning_rate": 0.0006,
+ "loss": 3.570158004760742,
+ "step": 3839
+ },
+ {
+ "epoch": 53.33551769331586,
+ "grad_norm": 0.22801059484481812,
+ "learning_rate": 0.0006,
+ "loss": 3.5600779056549072,
+ "step": 3840
+ },
+ {
+ "epoch": 53.34949759720402,
+ "grad_norm": 0.2303777039051056,
+ "learning_rate": 0.0006,
+ "loss": 3.576674222946167,
+ "step": 3841
+ },
+ {
+ "epoch": 53.36347750109218,
+ "grad_norm": 0.23318468034267426,
+ "learning_rate": 0.0006,
+ "loss": 3.5705552101135254,
+ "step": 3842
+ },
+ {
+ "epoch": 53.37745740498034,
+ "grad_norm": 0.2435566782951355,
+ "learning_rate": 0.0006,
+ "loss": 3.576536178588867,
+ "step": 3843
+ },
+ {
+ "epoch": 53.391437308868504,
+ "grad_norm": 0.2857200503349304,
+ "learning_rate": 0.0006,
+ "loss": 3.535977363586426,
+ "step": 3844
+ },
+ {
+ "epoch": 53.40541721275666,
+ "grad_norm": 0.2640133500099182,
+ "learning_rate": 0.0006,
+ "loss": 3.547731399536133,
+ "step": 3845
+ },
+ {
+ "epoch": 53.419397116644824,
+ "grad_norm": 0.22218745946884155,
+ "learning_rate": 0.0006,
+ "loss": 3.5798351764678955,
+ "step": 3846
+ },
+ {
+ "epoch": 53.43337702053299,
+ "grad_norm": 0.2537193298339844,
+ "learning_rate": 0.0006,
+ "loss": 3.5289204120635986,
+ "step": 3847
+ },
+ {
+ "epoch": 53.44735692442114,
+ "grad_norm": 0.28360968828201294,
+ "learning_rate": 0.0006,
+ "loss": 3.5503361225128174,
+ "step": 3848
+ },
+ {
+ "epoch": 53.46133682830931,
+ "grad_norm": 0.2892421782016754,
+ "learning_rate": 0.0006,
+ "loss": 3.5675411224365234,
+ "step": 3849
+ },
+ {
+ "epoch": 53.47531673219746,
+ "grad_norm": 0.28305584192276,
+ "learning_rate": 0.0006,
+ "loss": 3.573280096054077,
+ "step": 3850
+ },
+ {
+ "epoch": 53.489296636085626,
+ "grad_norm": 0.24628037214279175,
+ "learning_rate": 0.0006,
+ "loss": 3.5215024948120117,
+ "step": 3851
+ },
+ {
+ "epoch": 53.50327653997379,
+ "grad_norm": 0.2463715672492981,
+ "learning_rate": 0.0006,
+ "loss": 3.5790698528289795,
+ "step": 3852
+ },
+ {
+ "epoch": 53.517256443861946,
+ "grad_norm": 0.2646636664867401,
+ "learning_rate": 0.0006,
+ "loss": 3.589735269546509,
+ "step": 3853
+ },
+ {
+ "epoch": 53.53123634775011,
+ "grad_norm": 0.27668821811676025,
+ "learning_rate": 0.0006,
+ "loss": 3.5690393447875977,
+ "step": 3854
+ },
+ {
+ "epoch": 53.54521625163827,
+ "grad_norm": 0.2630347013473511,
+ "learning_rate": 0.0006,
+ "loss": 3.5846545696258545,
+ "step": 3855
+ },
+ {
+ "epoch": 53.55919615552643,
+ "grad_norm": 0.27177906036376953,
+ "learning_rate": 0.0006,
+ "loss": 3.5431671142578125,
+ "step": 3856
+ },
+ {
+ "epoch": 53.57317605941459,
+ "grad_norm": 0.27125081419944763,
+ "learning_rate": 0.0006,
+ "loss": 3.5905215740203857,
+ "step": 3857
+ },
+ {
+ "epoch": 53.58715596330275,
+ "grad_norm": 0.24802975356578827,
+ "learning_rate": 0.0006,
+ "loss": 3.5472917556762695,
+ "step": 3858
+ },
+ {
+ "epoch": 53.60113586719091,
+ "grad_norm": 0.23812460899353027,
+ "learning_rate": 0.0006,
+ "loss": 3.5917325019836426,
+ "step": 3859
+ },
+ {
+ "epoch": 53.615115771079076,
+ "grad_norm": 0.2597416937351227,
+ "learning_rate": 0.0006,
+ "loss": 3.5515074729919434,
+ "step": 3860
+ },
+ {
+ "epoch": 53.62909567496723,
+ "grad_norm": 0.24389132857322693,
+ "learning_rate": 0.0006,
+ "loss": 3.578125476837158,
+ "step": 3861
+ },
+ {
+ "epoch": 53.643075578855395,
+ "grad_norm": 0.23878274857997894,
+ "learning_rate": 0.0006,
+ "loss": 3.5612001419067383,
+ "step": 3862
+ },
+ {
+ "epoch": 53.65705548274356,
+ "grad_norm": 0.23248082399368286,
+ "learning_rate": 0.0006,
+ "loss": 3.5651350021362305,
+ "step": 3863
+ },
+ {
+ "epoch": 53.671035386631715,
+ "grad_norm": 0.22560833394527435,
+ "learning_rate": 0.0006,
+ "loss": 3.58971905708313,
+ "step": 3864
+ },
+ {
+ "epoch": 53.68501529051988,
+ "grad_norm": 0.22092120349407196,
+ "learning_rate": 0.0006,
+ "loss": 3.5567374229431152,
+ "step": 3865
+ },
+ {
+ "epoch": 53.69899519440804,
+ "grad_norm": 0.20171885192394257,
+ "learning_rate": 0.0006,
+ "loss": 3.5868449211120605,
+ "step": 3866
+ },
+ {
+ "epoch": 53.7129750982962,
+ "grad_norm": 0.2051871120929718,
+ "learning_rate": 0.0006,
+ "loss": 3.5853161811828613,
+ "step": 3867
+ },
+ {
+ "epoch": 53.72695500218436,
+ "grad_norm": 0.1912045031785965,
+ "learning_rate": 0.0006,
+ "loss": 3.5901622772216797,
+ "step": 3868
+ },
+ {
+ "epoch": 53.74093490607252,
+ "grad_norm": 0.20817188918590546,
+ "learning_rate": 0.0006,
+ "loss": 3.5759787559509277,
+ "step": 3869
+ },
+ {
+ "epoch": 53.75491480996068,
+ "grad_norm": 0.2157917469739914,
+ "learning_rate": 0.0006,
+ "loss": 3.5438575744628906,
+ "step": 3870
+ },
+ {
+ "epoch": 53.768894713848844,
+ "grad_norm": 0.2332053929567337,
+ "learning_rate": 0.0006,
+ "loss": 3.587697982788086,
+ "step": 3871
+ },
+ {
+ "epoch": 53.782874617737,
+ "grad_norm": 0.22700314223766327,
+ "learning_rate": 0.0006,
+ "loss": 3.586625337600708,
+ "step": 3872
+ },
+ {
+ "epoch": 53.796854521625164,
+ "grad_norm": 0.20737017691135406,
+ "learning_rate": 0.0006,
+ "loss": 3.552398204803467,
+ "step": 3873
+ },
+ {
+ "epoch": 53.81083442551333,
+ "grad_norm": 0.20355650782585144,
+ "learning_rate": 0.0006,
+ "loss": 3.5734331607818604,
+ "step": 3874
+ },
+ {
+ "epoch": 53.824814329401484,
+ "grad_norm": 0.18868018686771393,
+ "learning_rate": 0.0006,
+ "loss": 3.582509756088257,
+ "step": 3875
+ },
+ {
+ "epoch": 53.83879423328965,
+ "grad_norm": 0.20373275876045227,
+ "learning_rate": 0.0006,
+ "loss": 3.559354782104492,
+ "step": 3876
+ },
+ {
+ "epoch": 53.8527741371778,
+ "grad_norm": 0.1988871544599533,
+ "learning_rate": 0.0006,
+ "loss": 3.5575170516967773,
+ "step": 3877
+ },
+ {
+ "epoch": 53.86675404106597,
+ "grad_norm": 0.19602873921394348,
+ "learning_rate": 0.0006,
+ "loss": 3.5500855445861816,
+ "step": 3878
+ },
+ {
+ "epoch": 53.88073394495413,
+ "grad_norm": 0.201382577419281,
+ "learning_rate": 0.0006,
+ "loss": 3.563499927520752,
+ "step": 3879
+ },
+ {
+ "epoch": 53.89471384884229,
+ "grad_norm": 0.19682180881500244,
+ "learning_rate": 0.0006,
+ "loss": 3.586855888366699,
+ "step": 3880
+ },
+ {
+ "epoch": 53.90869375273045,
+ "grad_norm": 0.19423548877239227,
+ "learning_rate": 0.0006,
+ "loss": 3.5840401649475098,
+ "step": 3881
+ },
+ {
+ "epoch": 53.92267365661861,
+ "grad_norm": 0.1970449835062027,
+ "learning_rate": 0.0006,
+ "loss": 3.554568290710449,
+ "step": 3882
+ },
+ {
+ "epoch": 53.93665356050677,
+ "grad_norm": 0.20274291932582855,
+ "learning_rate": 0.0006,
+ "loss": 3.5928239822387695,
+ "step": 3883
+ },
+ {
+ "epoch": 53.95063346439493,
+ "grad_norm": 0.18485035002231598,
+ "learning_rate": 0.0006,
+ "loss": 3.576934337615967,
+ "step": 3884
+ },
+ {
+ "epoch": 53.964613368283096,
+ "grad_norm": 0.18437646329402924,
+ "learning_rate": 0.0006,
+ "loss": 3.574990749359131,
+ "step": 3885
+ },
+ {
+ "epoch": 53.97859327217125,
+ "grad_norm": 0.18616823852062225,
+ "learning_rate": 0.0006,
+ "loss": 3.5566892623901367,
+ "step": 3886
+ },
+ {
+ "epoch": 53.992573176059416,
+ "grad_norm": 0.19502122700214386,
+ "learning_rate": 0.0006,
+ "loss": 3.604814052581787,
+ "step": 3887
+ },
+ {
+ "epoch": 54.0,
+ "grad_norm": 0.2657789885997772,
+ "learning_rate": 0.0006,
+ "loss": 3.5094165802001953,
+ "step": 3888
+ },
+ {
+ "epoch": 54.0,
+ "eval_loss": 3.965742349624634,
+ "eval_runtime": 45.5851,
+ "eval_samples_per_second": 53.57,
+ "eval_steps_per_second": 3.356,
+ "step": 3888
+ },
+ {
+ "epoch": 54.01397990388816,
+ "grad_norm": 0.27879253029823303,
+ "learning_rate": 0.0006,
+ "loss": 3.565103530883789,
+ "step": 3889
+ },
+ {
+ "epoch": 54.02795980777632,
+ "grad_norm": 0.2959246337413788,
+ "learning_rate": 0.0006,
+ "loss": 3.5378212928771973,
+ "step": 3890
+ },
+ {
+ "epoch": 54.04193971166448,
+ "grad_norm": 0.32719552516937256,
+ "learning_rate": 0.0006,
+ "loss": 3.5566751956939697,
+ "step": 3891
+ },
+ {
+ "epoch": 54.05591961555265,
+ "grad_norm": 0.36854541301727295,
+ "learning_rate": 0.0006,
+ "loss": 3.5363879203796387,
+ "step": 3892
+ },
+ {
+ "epoch": 54.0698995194408,
+ "grad_norm": 0.34325551986694336,
+ "learning_rate": 0.0006,
+ "loss": 3.5306153297424316,
+ "step": 3893
+ },
+ {
+ "epoch": 54.083879423328966,
+ "grad_norm": 0.2798653244972229,
+ "learning_rate": 0.0006,
+ "loss": 3.5642261505126953,
+ "step": 3894
+ },
+ {
+ "epoch": 54.09785932721712,
+ "grad_norm": 0.24857765436172485,
+ "learning_rate": 0.0006,
+ "loss": 3.50216007232666,
+ "step": 3895
+ },
+ {
+ "epoch": 54.111839231105286,
+ "grad_norm": 0.2943299114704132,
+ "learning_rate": 0.0006,
+ "loss": 3.524904251098633,
+ "step": 3896
+ },
+ {
+ "epoch": 54.12581913499345,
+ "grad_norm": 0.2791048586368561,
+ "learning_rate": 0.0006,
+ "loss": 3.56490421295166,
+ "step": 3897
+ },
+ {
+ "epoch": 54.139799038881605,
+ "grad_norm": 0.2781159579753876,
+ "learning_rate": 0.0006,
+ "loss": 3.536180019378662,
+ "step": 3898
+ },
+ {
+ "epoch": 54.15377894276977,
+ "grad_norm": 0.30359897017478943,
+ "learning_rate": 0.0006,
+ "loss": 3.546919345855713,
+ "step": 3899
+ },
+ {
+ "epoch": 54.16775884665793,
+ "grad_norm": 0.2738530933856964,
+ "learning_rate": 0.0006,
+ "loss": 3.547968864440918,
+ "step": 3900
+ },
+ {
+ "epoch": 54.18173875054609,
+ "grad_norm": 0.24783718585968018,
+ "learning_rate": 0.0006,
+ "loss": 3.5802721977233887,
+ "step": 3901
+ },
+ {
+ "epoch": 54.19571865443425,
+ "grad_norm": 0.2544802725315094,
+ "learning_rate": 0.0006,
+ "loss": 3.5556836128234863,
+ "step": 3902
+ },
+ {
+ "epoch": 54.20969855832241,
+ "grad_norm": 0.26695969700813293,
+ "learning_rate": 0.0006,
+ "loss": 3.534266471862793,
+ "step": 3903
+ },
+ {
+ "epoch": 54.22367846221057,
+ "grad_norm": 0.24152538180351257,
+ "learning_rate": 0.0006,
+ "loss": 3.534069538116455,
+ "step": 3904
+ },
+ {
+ "epoch": 54.237658366098735,
+ "grad_norm": 0.21859917044639587,
+ "learning_rate": 0.0006,
+ "loss": 3.535362958908081,
+ "step": 3905
+ },
+ {
+ "epoch": 54.25163826998689,
+ "grad_norm": 0.24676479399204254,
+ "learning_rate": 0.0006,
+ "loss": 3.567283868789673,
+ "step": 3906
+ },
+ {
+ "epoch": 54.265618173875055,
+ "grad_norm": 0.26998138427734375,
+ "learning_rate": 0.0006,
+ "loss": 3.518892765045166,
+ "step": 3907
+ },
+ {
+ "epoch": 54.27959807776322,
+ "grad_norm": 0.30108749866485596,
+ "learning_rate": 0.0006,
+ "loss": 3.5865135192871094,
+ "step": 3908
+ },
+ {
+ "epoch": 54.293577981651374,
+ "grad_norm": 0.31310492753982544,
+ "learning_rate": 0.0006,
+ "loss": 3.546637535095215,
+ "step": 3909
+ },
+ {
+ "epoch": 54.30755788553954,
+ "grad_norm": 0.2994784712791443,
+ "learning_rate": 0.0006,
+ "loss": 3.5441226959228516,
+ "step": 3910
+ },
+ {
+ "epoch": 54.3215377894277,
+ "grad_norm": 0.25010061264038086,
+ "learning_rate": 0.0006,
+ "loss": 3.5619735717773438,
+ "step": 3911
+ },
+ {
+ "epoch": 54.33551769331586,
+ "grad_norm": 0.253129780292511,
+ "learning_rate": 0.0006,
+ "loss": 3.530210494995117,
+ "step": 3912
+ },
+ {
+ "epoch": 54.34949759720402,
+ "grad_norm": 0.2652498781681061,
+ "learning_rate": 0.0006,
+ "loss": 3.534478187561035,
+ "step": 3913
+ },
+ {
+ "epoch": 54.36347750109218,
+ "grad_norm": 0.250503808259964,
+ "learning_rate": 0.0006,
+ "loss": 3.545886516571045,
+ "step": 3914
+ },
+ {
+ "epoch": 54.37745740498034,
+ "grad_norm": 0.22186073660850525,
+ "learning_rate": 0.0006,
+ "loss": 3.5884604454040527,
+ "step": 3915
+ },
+ {
+ "epoch": 54.391437308868504,
+ "grad_norm": 0.21128980815410614,
+ "learning_rate": 0.0006,
+ "loss": 3.527862548828125,
+ "step": 3916
+ },
+ {
+ "epoch": 54.40541721275666,
+ "grad_norm": 0.23184002935886383,
+ "learning_rate": 0.0006,
+ "loss": 3.5599637031555176,
+ "step": 3917
+ },
+ {
+ "epoch": 54.419397116644824,
+ "grad_norm": 0.23710627853870392,
+ "learning_rate": 0.0006,
+ "loss": 3.54667329788208,
+ "step": 3918
+ },
+ {
+ "epoch": 54.43337702053299,
+ "grad_norm": 0.2314598113298416,
+ "learning_rate": 0.0006,
+ "loss": 3.518406391143799,
+ "step": 3919
+ },
+ {
+ "epoch": 54.44735692442114,
+ "grad_norm": 0.21623452007770538,
+ "learning_rate": 0.0006,
+ "loss": 3.5749731063842773,
+ "step": 3920
+ },
+ {
+ "epoch": 54.46133682830931,
+ "grad_norm": 0.22832012176513672,
+ "learning_rate": 0.0006,
+ "loss": 3.57436466217041,
+ "step": 3921
+ },
+ {
+ "epoch": 54.47531673219746,
+ "grad_norm": 0.2184043526649475,
+ "learning_rate": 0.0006,
+ "loss": 3.578040838241577,
+ "step": 3922
+ },
+ {
+ "epoch": 54.489296636085626,
+ "grad_norm": 0.2302335649728775,
+ "learning_rate": 0.0006,
+ "loss": 3.5646257400512695,
+ "step": 3923
+ },
+ {
+ "epoch": 54.50327653997379,
+ "grad_norm": 0.21635375916957855,
+ "learning_rate": 0.0006,
+ "loss": 3.546786308288574,
+ "step": 3924
+ },
+ {
+ "epoch": 54.517256443861946,
+ "grad_norm": 0.22332443296909332,
+ "learning_rate": 0.0006,
+ "loss": 3.5804502964019775,
+ "step": 3925
+ },
+ {
+ "epoch": 54.53123634775011,
+ "grad_norm": 0.21662919223308563,
+ "learning_rate": 0.0006,
+ "loss": 3.567797899246216,
+ "step": 3926
+ },
+ {
+ "epoch": 54.54521625163827,
+ "grad_norm": 0.21345169842243195,
+ "learning_rate": 0.0006,
+ "loss": 3.5746283531188965,
+ "step": 3927
+ },
+ {
+ "epoch": 54.55919615552643,
+ "grad_norm": 0.2111794501543045,
+ "learning_rate": 0.0006,
+ "loss": 3.5626277923583984,
+ "step": 3928
+ },
+ {
+ "epoch": 54.57317605941459,
+ "grad_norm": 0.22575712203979492,
+ "learning_rate": 0.0006,
+ "loss": 3.5856311321258545,
+ "step": 3929
+ },
+ {
+ "epoch": 54.58715596330275,
+ "grad_norm": 0.22963617742061615,
+ "learning_rate": 0.0006,
+ "loss": 3.584038257598877,
+ "step": 3930
+ },
+ {
+ "epoch": 54.60113586719091,
+ "grad_norm": 0.21805310249328613,
+ "learning_rate": 0.0006,
+ "loss": 3.5603089332580566,
+ "step": 3931
+ },
+ {
+ "epoch": 54.615115771079076,
+ "grad_norm": 0.22830283641815186,
+ "learning_rate": 0.0006,
+ "loss": 3.5533390045166016,
+ "step": 3932
+ },
+ {
+ "epoch": 54.62909567496723,
+ "grad_norm": 0.24158291518688202,
+ "learning_rate": 0.0006,
+ "loss": 3.5437779426574707,
+ "step": 3933
+ },
+ {
+ "epoch": 54.643075578855395,
+ "grad_norm": 0.22687768936157227,
+ "learning_rate": 0.0006,
+ "loss": 3.566315174102783,
+ "step": 3934
+ },
+ {
+ "epoch": 54.65705548274356,
+ "grad_norm": 0.21220184862613678,
+ "learning_rate": 0.0006,
+ "loss": 3.5772881507873535,
+ "step": 3935
+ },
+ {
+ "epoch": 54.671035386631715,
+ "grad_norm": 0.19508333504199982,
+ "learning_rate": 0.0006,
+ "loss": 3.5213584899902344,
+ "step": 3936
+ },
+ {
+ "epoch": 54.68501529051988,
+ "grad_norm": 0.199599027633667,
+ "learning_rate": 0.0006,
+ "loss": 3.553925037384033,
+ "step": 3937
+ },
+ {
+ "epoch": 54.69899519440804,
+ "grad_norm": 0.2063189297914505,
+ "learning_rate": 0.0006,
+ "loss": 3.5706050395965576,
+ "step": 3938
+ },
+ {
+ "epoch": 54.7129750982962,
+ "grad_norm": 0.2056119441986084,
+ "learning_rate": 0.0006,
+ "loss": 3.557199478149414,
+ "step": 3939
+ },
+ {
+ "epoch": 54.72695500218436,
+ "grad_norm": 0.2192074954509735,
+ "learning_rate": 0.0006,
+ "loss": 3.5869479179382324,
+ "step": 3940
+ },
+ {
+ "epoch": 54.74093490607252,
+ "grad_norm": 0.19796597957611084,
+ "learning_rate": 0.0006,
+ "loss": 3.559929609298706,
+ "step": 3941
+ },
+ {
+ "epoch": 54.75491480996068,
+ "grad_norm": 0.19003179669380188,
+ "learning_rate": 0.0006,
+ "loss": 3.5481486320495605,
+ "step": 3942
+ },
+ {
+ "epoch": 54.768894713848844,
+ "grad_norm": 0.189231738448143,
+ "learning_rate": 0.0006,
+ "loss": 3.5603561401367188,
+ "step": 3943
+ },
+ {
+ "epoch": 54.782874617737,
+ "grad_norm": 0.20949427783489227,
+ "learning_rate": 0.0006,
+ "loss": 3.567026138305664,
+ "step": 3944
+ },
+ {
+ "epoch": 54.796854521625164,
+ "grad_norm": 0.21650178730487823,
+ "learning_rate": 0.0006,
+ "loss": 3.5981621742248535,
+ "step": 3945
+ },
+ {
+ "epoch": 54.81083442551333,
+ "grad_norm": 0.21941770613193512,
+ "learning_rate": 0.0006,
+ "loss": 3.590226173400879,
+ "step": 3946
+ },
+ {
+ "epoch": 54.824814329401484,
+ "grad_norm": 0.2169734537601471,
+ "learning_rate": 0.0006,
+ "loss": 3.592764139175415,
+ "step": 3947
+ },
+ {
+ "epoch": 54.83879423328965,
+ "grad_norm": 0.20309467613697052,
+ "learning_rate": 0.0006,
+ "loss": 3.5706393718719482,
+ "step": 3948
+ },
+ {
+ "epoch": 54.8527741371778,
+ "grad_norm": 0.21803754568099976,
+ "learning_rate": 0.0006,
+ "loss": 3.5816526412963867,
+ "step": 3949
+ },
+ {
+ "epoch": 54.86675404106597,
+ "grad_norm": 0.22217069566249847,
+ "learning_rate": 0.0006,
+ "loss": 3.5895018577575684,
+ "step": 3950
+ },
+ {
+ "epoch": 54.88073394495413,
+ "grad_norm": 0.21204866468906403,
+ "learning_rate": 0.0006,
+ "loss": 3.5574231147766113,
+ "step": 3951
+ },
+ {
+ "epoch": 54.89471384884229,
+ "grad_norm": 0.2173423171043396,
+ "learning_rate": 0.0006,
+ "loss": 3.564763069152832,
+ "step": 3952
+ },
+ {
+ "epoch": 54.90869375273045,
+ "grad_norm": 0.2039082646369934,
+ "learning_rate": 0.0006,
+ "loss": 3.59708309173584,
+ "step": 3953
+ },
+ {
+ "epoch": 54.92267365661861,
+ "grad_norm": 0.20248384773731232,
+ "learning_rate": 0.0006,
+ "loss": 3.587890148162842,
+ "step": 3954
+ },
+ {
+ "epoch": 54.93665356050677,
+ "grad_norm": 0.20693068206310272,
+ "learning_rate": 0.0006,
+ "loss": 3.5569000244140625,
+ "step": 3955
+ },
+ {
+ "epoch": 54.95063346439493,
+ "grad_norm": 0.2109357714653015,
+ "learning_rate": 0.0006,
+ "loss": 3.552126884460449,
+ "step": 3956
+ },
+ {
+ "epoch": 54.964613368283096,
+ "grad_norm": 0.2278970628976822,
+ "learning_rate": 0.0006,
+ "loss": 3.564998149871826,
+ "step": 3957
+ },
+ {
+ "epoch": 54.97859327217125,
+ "grad_norm": 0.21663756668567657,
+ "learning_rate": 0.0006,
+ "loss": 3.571608543395996,
+ "step": 3958
+ },
+ {
+ "epoch": 54.992573176059416,
+ "grad_norm": 0.19653232395648956,
+ "learning_rate": 0.0006,
+ "loss": 3.5885231494903564,
+ "step": 3959
+ },
+ {
+ "epoch": 55.0,
+ "grad_norm": 0.21956856548786163,
+ "learning_rate": 0.0006,
+ "loss": 3.4966204166412354,
+ "step": 3960
+ },
+ {
+ "epoch": 55.0,
+ "eval_loss": 3.972649097442627,
+ "eval_runtime": 45.2298,
+ "eval_samples_per_second": 53.991,
+ "eval_steps_per_second": 3.383,
+ "step": 3960
+ },
+ {
+ "epoch": 55.01397990388816,
+ "grad_norm": 0.22733832895755768,
+ "learning_rate": 0.0006,
+ "loss": 3.546975612640381,
+ "step": 3961
+ },
+ {
+ "epoch": 55.02795980777632,
+ "grad_norm": 0.25451111793518066,
+ "learning_rate": 0.0006,
+ "loss": 3.54240083694458,
+ "step": 3962
+ },
+ {
+ "epoch": 55.04193971166448,
+ "grad_norm": 0.2394949048757553,
+ "learning_rate": 0.0006,
+ "loss": 3.5492677688598633,
+ "step": 3963
+ },
+ {
+ "epoch": 55.05591961555265,
+ "grad_norm": 0.2306671440601349,
+ "learning_rate": 0.0006,
+ "loss": 3.524200916290283,
+ "step": 3964
+ },
+ {
+ "epoch": 55.0698995194408,
+ "grad_norm": 0.2307029813528061,
+ "learning_rate": 0.0006,
+ "loss": 3.509249687194824,
+ "step": 3965
+ },
+ {
+ "epoch": 55.083879423328966,
+ "grad_norm": 0.24812111258506775,
+ "learning_rate": 0.0006,
+ "loss": 3.5500473976135254,
+ "step": 3966
+ },
+ {
+ "epoch": 55.09785932721712,
+ "grad_norm": 0.28564271330833435,
+ "learning_rate": 0.0006,
+ "loss": 3.5178303718566895,
+ "step": 3967
+ },
+ {
+ "epoch": 55.111839231105286,
+ "grad_norm": 0.26979005336761475,
+ "learning_rate": 0.0006,
+ "loss": 3.5306806564331055,
+ "step": 3968
+ },
+ {
+ "epoch": 55.12581913499345,
+ "grad_norm": 0.24274848401546478,
+ "learning_rate": 0.0006,
+ "loss": 3.5758519172668457,
+ "step": 3969
+ },
+ {
+ "epoch": 55.139799038881605,
+ "grad_norm": 0.2560444474220276,
+ "learning_rate": 0.0006,
+ "loss": 3.5417323112487793,
+ "step": 3970
+ },
+ {
+ "epoch": 55.15377894276977,
+ "grad_norm": 0.2553671598434448,
+ "learning_rate": 0.0006,
+ "loss": 3.5258004665374756,
+ "step": 3971
+ },
+ {
+ "epoch": 55.16775884665793,
+ "grad_norm": 0.2170111984014511,
+ "learning_rate": 0.0006,
+ "loss": 3.514847755432129,
+ "step": 3972
+ },
+ {
+ "epoch": 55.18173875054609,
+ "grad_norm": 0.20854522287845612,
+ "learning_rate": 0.0006,
+ "loss": 3.5248336791992188,
+ "step": 3973
+ },
+ {
+ "epoch": 55.19571865443425,
+ "grad_norm": 0.21873287856578827,
+ "learning_rate": 0.0006,
+ "loss": 3.5468008518218994,
+ "step": 3974
+ },
+ {
+ "epoch": 55.20969855832241,
+ "grad_norm": 0.21194154024124146,
+ "learning_rate": 0.0006,
+ "loss": 3.568512439727783,
+ "step": 3975
+ },
+ {
+ "epoch": 55.22367846221057,
+ "grad_norm": 0.23534680902957916,
+ "learning_rate": 0.0006,
+ "loss": 3.5285420417785645,
+ "step": 3976
+ },
+ {
+ "epoch": 55.237658366098735,
+ "grad_norm": 0.22674795985221863,
+ "learning_rate": 0.0006,
+ "loss": 3.5399436950683594,
+ "step": 3977
+ },
+ {
+ "epoch": 55.25163826998689,
+ "grad_norm": 0.2248486578464508,
+ "learning_rate": 0.0006,
+ "loss": 3.5241036415100098,
+ "step": 3978
+ },
+ {
+ "epoch": 55.265618173875055,
+ "grad_norm": 0.241151362657547,
+ "learning_rate": 0.0006,
+ "loss": 3.547079086303711,
+ "step": 3979
+ },
+ {
+ "epoch": 55.27959807776322,
+ "grad_norm": 0.2783249318599701,
+ "learning_rate": 0.0006,
+ "loss": 3.5442988872528076,
+ "step": 3980
+ },
+ {
+ "epoch": 55.293577981651374,
+ "grad_norm": 0.2743528485298157,
+ "learning_rate": 0.0006,
+ "loss": 3.529618978500366,
+ "step": 3981
+ },
+ {
+ "epoch": 55.30755788553954,
+ "grad_norm": 0.23901724815368652,
+ "learning_rate": 0.0006,
+ "loss": 3.5379443168640137,
+ "step": 3982
+ },
+ {
+ "epoch": 55.3215377894277,
+ "grad_norm": 0.22758841514587402,
+ "learning_rate": 0.0006,
+ "loss": 3.5446794033050537,
+ "step": 3983
+ },
+ {
+ "epoch": 55.33551769331586,
+ "grad_norm": 0.22634629905223846,
+ "learning_rate": 0.0006,
+ "loss": 3.521944522857666,
+ "step": 3984
+ },
+ {
+ "epoch": 55.34949759720402,
+ "grad_norm": 0.23372086882591248,
+ "learning_rate": 0.0006,
+ "loss": 3.565023899078369,
+ "step": 3985
+ },
+ {
+ "epoch": 55.36347750109218,
+ "grad_norm": 0.24722231924533844,
+ "learning_rate": 0.0006,
+ "loss": 3.535661220550537,
+ "step": 3986
+ },
+ {
+ "epoch": 55.37745740498034,
+ "grad_norm": 0.21684594452381134,
+ "learning_rate": 0.0006,
+ "loss": 3.59070086479187,
+ "step": 3987
+ },
+ {
+ "epoch": 55.391437308868504,
+ "grad_norm": 0.186308816075325,
+ "learning_rate": 0.0006,
+ "loss": 3.5373833179473877,
+ "step": 3988
+ },
+ {
+ "epoch": 55.40541721275666,
+ "grad_norm": 0.2240687608718872,
+ "learning_rate": 0.0006,
+ "loss": 3.613295555114746,
+ "step": 3989
+ },
+ {
+ "epoch": 55.419397116644824,
+ "grad_norm": 0.25724494457244873,
+ "learning_rate": 0.0006,
+ "loss": 3.581005096435547,
+ "step": 3990
+ },
+ {
+ "epoch": 55.43337702053299,
+ "grad_norm": 0.24023419618606567,
+ "learning_rate": 0.0006,
+ "loss": 3.563951015472412,
+ "step": 3991
+ },
+ {
+ "epoch": 55.44735692442114,
+ "grad_norm": 0.21473391354084015,
+ "learning_rate": 0.0006,
+ "loss": 3.5444185733795166,
+ "step": 3992
+ },
+ {
+ "epoch": 55.46133682830931,
+ "grad_norm": 0.20466852188110352,
+ "learning_rate": 0.0006,
+ "loss": 3.5585713386535645,
+ "step": 3993
+ },
+ {
+ "epoch": 55.47531673219746,
+ "grad_norm": 0.20925740897655487,
+ "learning_rate": 0.0006,
+ "loss": 3.5656747817993164,
+ "step": 3994
+ },
+ {
+ "epoch": 55.489296636085626,
+ "grad_norm": 0.2309556007385254,
+ "learning_rate": 0.0006,
+ "loss": 3.5653891563415527,
+ "step": 3995
+ },
+ {
+ "epoch": 55.50327653997379,
+ "grad_norm": 0.24270877242088318,
+ "learning_rate": 0.0006,
+ "loss": 3.5275917053222656,
+ "step": 3996
+ },
+ {
+ "epoch": 55.517256443861946,
+ "grad_norm": 0.22749851644039154,
+ "learning_rate": 0.0006,
+ "loss": 3.5392730236053467,
+ "step": 3997
+ },
+ {
+ "epoch": 55.53123634775011,
+ "grad_norm": 0.21618196368217468,
+ "learning_rate": 0.0006,
+ "loss": 3.5581812858581543,
+ "step": 3998
+ },
+ {
+ "epoch": 55.54521625163827,
+ "grad_norm": 0.22232134640216827,
+ "learning_rate": 0.0006,
+ "loss": 3.5340118408203125,
+ "step": 3999
+ },
+ {
+ "epoch": 55.55919615552643,
+ "grad_norm": 0.24543501436710358,
+ "learning_rate": 0.0006,
+ "loss": 3.572153329849243,
+ "step": 4000
+ },
+ {
+ "epoch": 55.57317605941459,
+ "grad_norm": 0.2385311722755432,
+ "learning_rate": 0.0006,
+ "loss": 3.5366618633270264,
+ "step": 4001
+ },
+ {
+ "epoch": 55.58715596330275,
+ "grad_norm": 0.27977821230888367,
+ "learning_rate": 0.0006,
+ "loss": 3.5788960456848145,
+ "step": 4002
+ },
+ {
+ "epoch": 55.60113586719091,
+ "grad_norm": 0.2929013967514038,
+ "learning_rate": 0.0006,
+ "loss": 3.61065936088562,
+ "step": 4003
+ },
+ {
+ "epoch": 55.615115771079076,
+ "grad_norm": 0.27820730209350586,
+ "learning_rate": 0.0006,
+ "loss": 3.538694381713867,
+ "step": 4004
+ },
+ {
+ "epoch": 55.62909567496723,
+ "grad_norm": 0.24188996851444244,
+ "learning_rate": 0.0006,
+ "loss": 3.571709632873535,
+ "step": 4005
+ },
+ {
+ "epoch": 55.643075578855395,
+ "grad_norm": 0.21659360826015472,
+ "learning_rate": 0.0006,
+ "loss": 3.5431199073791504,
+ "step": 4006
+ },
+ {
+ "epoch": 55.65705548274356,
+ "grad_norm": 0.23356232047080994,
+ "learning_rate": 0.0006,
+ "loss": 3.5664005279541016,
+ "step": 4007
+ },
+ {
+ "epoch": 55.671035386631715,
+ "grad_norm": 0.21523472666740417,
+ "learning_rate": 0.0006,
+ "loss": 3.575711250305176,
+ "step": 4008
+ },
+ {
+ "epoch": 55.68501529051988,
+ "grad_norm": 0.22101815044879913,
+ "learning_rate": 0.0006,
+ "loss": 3.5843849182128906,
+ "step": 4009
+ },
+ {
+ "epoch": 55.69899519440804,
+ "grad_norm": 0.24153906106948853,
+ "learning_rate": 0.0006,
+ "loss": 3.5737733840942383,
+ "step": 4010
+ },
+ {
+ "epoch": 55.7129750982962,
+ "grad_norm": 0.2181350439786911,
+ "learning_rate": 0.0006,
+ "loss": 3.582613945007324,
+ "step": 4011
+ },
+ {
+ "epoch": 55.72695500218436,
+ "grad_norm": 0.21046742796897888,
+ "learning_rate": 0.0006,
+ "loss": 3.5380563735961914,
+ "step": 4012
+ },
+ {
+ "epoch": 55.74093490607252,
+ "grad_norm": 0.23996953666210175,
+ "learning_rate": 0.0006,
+ "loss": 3.57753849029541,
+ "step": 4013
+ },
+ {
+ "epoch": 55.75491480996068,
+ "grad_norm": 0.24543973803520203,
+ "learning_rate": 0.0006,
+ "loss": 3.578747272491455,
+ "step": 4014
+ },
+ {
+ "epoch": 55.768894713848844,
+ "grad_norm": 0.23597940802574158,
+ "learning_rate": 0.0006,
+ "loss": 3.5816988945007324,
+ "step": 4015
+ },
+ {
+ "epoch": 55.782874617737,
+ "grad_norm": 0.237411230802536,
+ "learning_rate": 0.0006,
+ "loss": 3.5659806728363037,
+ "step": 4016
+ },
+ {
+ "epoch": 55.796854521625164,
+ "grad_norm": 0.23947440087795258,
+ "learning_rate": 0.0006,
+ "loss": 3.545125961303711,
+ "step": 4017
+ },
+ {
+ "epoch": 55.81083442551333,
+ "grad_norm": 0.21562735736370087,
+ "learning_rate": 0.0006,
+ "loss": 3.5571303367614746,
+ "step": 4018
+ },
+ {
+ "epoch": 55.824814329401484,
+ "grad_norm": 0.21958434581756592,
+ "learning_rate": 0.0006,
+ "loss": 3.5243420600891113,
+ "step": 4019
+ },
+ {
+ "epoch": 55.83879423328965,
+ "grad_norm": 0.23856471478939056,
+ "learning_rate": 0.0006,
+ "loss": 3.586078643798828,
+ "step": 4020
+ },
+ {
+ "epoch": 55.8527741371778,
+ "grad_norm": 0.20703551173210144,
+ "learning_rate": 0.0006,
+ "loss": 3.5503201484680176,
+ "step": 4021
+ },
+ {
+ "epoch": 55.86675404106597,
+ "grad_norm": 0.21183231472969055,
+ "learning_rate": 0.0006,
+ "loss": 3.5873844623565674,
+ "step": 4022
+ },
+ {
+ "epoch": 55.88073394495413,
+ "grad_norm": 0.2129688709974289,
+ "learning_rate": 0.0006,
+ "loss": 3.582061290740967,
+ "step": 4023
+ },
+ {
+ "epoch": 55.89471384884229,
+ "grad_norm": 0.2122214287519455,
+ "learning_rate": 0.0006,
+ "loss": 3.547175884246826,
+ "step": 4024
+ },
+ {
+ "epoch": 55.90869375273045,
+ "grad_norm": 0.214874267578125,
+ "learning_rate": 0.0006,
+ "loss": 3.5322279930114746,
+ "step": 4025
+ },
+ {
+ "epoch": 55.92267365661861,
+ "grad_norm": 0.24104614555835724,
+ "learning_rate": 0.0006,
+ "loss": 3.5742111206054688,
+ "step": 4026
+ },
+ {
+ "epoch": 55.93665356050677,
+ "grad_norm": 0.2257685512304306,
+ "learning_rate": 0.0006,
+ "loss": 3.5686793327331543,
+ "step": 4027
+ },
+ {
+ "epoch": 55.95063346439493,
+ "grad_norm": 0.2170567363500595,
+ "learning_rate": 0.0006,
+ "loss": 3.5670571327209473,
+ "step": 4028
+ },
+ {
+ "epoch": 55.964613368283096,
+ "grad_norm": 0.2003280222415924,
+ "learning_rate": 0.0006,
+ "loss": 3.533921718597412,
+ "step": 4029
+ },
+ {
+ "epoch": 55.97859327217125,
+ "grad_norm": 0.21483278274536133,
+ "learning_rate": 0.0006,
+ "loss": 3.539720058441162,
+ "step": 4030
+ },
+ {
+ "epoch": 55.992573176059416,
+ "grad_norm": 0.26908108592033386,
+ "learning_rate": 0.0006,
+ "loss": 3.575934886932373,
+ "step": 4031
+ },
+ {
+ "epoch": 56.0,
+ "grad_norm": 0.30002665519714355,
+ "learning_rate": 0.0006,
+ "loss": 3.5702414512634277,
+ "step": 4032
+ },
+ {
+ "epoch": 56.0,
+ "eval_loss": 3.9834072589874268,
+ "eval_runtime": 46.2268,
+ "eval_samples_per_second": 52.826,
+ "eval_steps_per_second": 3.31,
+ "step": 4032
+ },
+ {
+ "epoch": 56.01397990388816,
+ "grad_norm": 0.25298207998275757,
+ "learning_rate": 0.0006,
+ "loss": 3.538151741027832,
+ "step": 4033
+ },
+ {
+ "epoch": 56.02795980777632,
+ "grad_norm": 0.2231103479862213,
+ "learning_rate": 0.0006,
+ "loss": 3.551466941833496,
+ "step": 4034
+ },
+ {
+ "epoch": 56.04193971166448,
+ "grad_norm": 0.2504221796989441,
+ "learning_rate": 0.0006,
+ "loss": 3.5361199378967285,
+ "step": 4035
+ },
+ {
+ "epoch": 56.05591961555265,
+ "grad_norm": 0.23491773009300232,
+ "learning_rate": 0.0006,
+ "loss": 3.549346446990967,
+ "step": 4036
+ },
+ {
+ "epoch": 56.0698995194408,
+ "grad_norm": 0.23068852722644806,
+ "learning_rate": 0.0006,
+ "loss": 3.5243453979492188,
+ "step": 4037
+ },
+ {
+ "epoch": 56.083879423328966,
+ "grad_norm": 0.22160249948501587,
+ "learning_rate": 0.0006,
+ "loss": 3.551191806793213,
+ "step": 4038
+ },
+ {
+ "epoch": 56.09785932721712,
+ "grad_norm": 0.2389034926891327,
+ "learning_rate": 0.0006,
+ "loss": 3.5358071327209473,
+ "step": 4039
+ },
+ {
+ "epoch": 56.111839231105286,
+ "grad_norm": 0.2552168071269989,
+ "learning_rate": 0.0006,
+ "loss": 3.564204692840576,
+ "step": 4040
+ },
+ {
+ "epoch": 56.12581913499345,
+ "grad_norm": 0.2802336812019348,
+ "learning_rate": 0.0006,
+ "loss": 3.540386438369751,
+ "step": 4041
+ },
+ {
+ "epoch": 56.139799038881605,
+ "grad_norm": 0.2564619779586792,
+ "learning_rate": 0.0006,
+ "loss": 3.544264554977417,
+ "step": 4042
+ },
+ {
+ "epoch": 56.15377894276977,
+ "grad_norm": 0.24272632598876953,
+ "learning_rate": 0.0006,
+ "loss": 3.509497880935669,
+ "step": 4043
+ },
+ {
+ "epoch": 56.16775884665793,
+ "grad_norm": 0.23981881141662598,
+ "learning_rate": 0.0006,
+ "loss": 3.551090955734253,
+ "step": 4044
+ },
+ {
+ "epoch": 56.18173875054609,
+ "grad_norm": 0.22418269515037537,
+ "learning_rate": 0.0006,
+ "loss": 3.558614492416382,
+ "step": 4045
+ },
+ {
+ "epoch": 56.19571865443425,
+ "grad_norm": 0.21792462468147278,
+ "learning_rate": 0.0006,
+ "loss": 3.540558338165283,
+ "step": 4046
+ },
+ {
+ "epoch": 56.20969855832241,
+ "grad_norm": 0.21248634159564972,
+ "learning_rate": 0.0006,
+ "loss": 3.5273942947387695,
+ "step": 4047
+ },
+ {
+ "epoch": 56.22367846221057,
+ "grad_norm": 0.1863572895526886,
+ "learning_rate": 0.0006,
+ "loss": 3.555302143096924,
+ "step": 4048
+ },
+ {
+ "epoch": 56.237658366098735,
+ "grad_norm": 0.21031822264194489,
+ "learning_rate": 0.0006,
+ "loss": 3.547515630722046,
+ "step": 4049
+ },
+ {
+ "epoch": 56.25163826998689,
+ "grad_norm": 0.19754044711589813,
+ "learning_rate": 0.0006,
+ "loss": 3.5476508140563965,
+ "step": 4050
+ },
+ {
+ "epoch": 56.265618173875055,
+ "grad_norm": 0.19707852602005005,
+ "learning_rate": 0.0006,
+ "loss": 3.506730794906616,
+ "step": 4051
+ },
+ {
+ "epoch": 56.27959807776322,
+ "grad_norm": 0.21011239290237427,
+ "learning_rate": 0.0006,
+ "loss": 3.51116681098938,
+ "step": 4052
+ },
+ {
+ "epoch": 56.293577981651374,
+ "grad_norm": 0.20281212031841278,
+ "learning_rate": 0.0006,
+ "loss": 3.549513816833496,
+ "step": 4053
+ },
+ {
+ "epoch": 56.30755788553954,
+ "grad_norm": 0.19198910892009735,
+ "learning_rate": 0.0006,
+ "loss": 3.5299534797668457,
+ "step": 4054
+ },
+ {
+ "epoch": 56.3215377894277,
+ "grad_norm": 0.1861368715763092,
+ "learning_rate": 0.0006,
+ "loss": 3.513909339904785,
+ "step": 4055
+ },
+ {
+ "epoch": 56.33551769331586,
+ "grad_norm": 0.20779506862163544,
+ "learning_rate": 0.0006,
+ "loss": 3.5528712272644043,
+ "step": 4056
+ },
+ {
+ "epoch": 56.34949759720402,
+ "grad_norm": 0.2229684591293335,
+ "learning_rate": 0.0006,
+ "loss": 3.518359661102295,
+ "step": 4057
+ },
+ {
+ "epoch": 56.36347750109218,
+ "grad_norm": 0.22998179495334625,
+ "learning_rate": 0.0006,
+ "loss": 3.5004091262817383,
+ "step": 4058
+ },
+ {
+ "epoch": 56.37745740498034,
+ "grad_norm": 0.2176709622144699,
+ "learning_rate": 0.0006,
+ "loss": 3.550295829772949,
+ "step": 4059
+ },
+ {
+ "epoch": 56.391437308868504,
+ "grad_norm": 0.19512872397899628,
+ "learning_rate": 0.0006,
+ "loss": 3.5305161476135254,
+ "step": 4060
+ },
+ {
+ "epoch": 56.40541721275666,
+ "grad_norm": 0.23127448558807373,
+ "learning_rate": 0.0006,
+ "loss": 3.5341286659240723,
+ "step": 4061
+ },
+ {
+ "epoch": 56.419397116644824,
+ "grad_norm": 0.20905959606170654,
+ "learning_rate": 0.0006,
+ "loss": 3.553912401199341,
+ "step": 4062
+ },
+ {
+ "epoch": 56.43337702053299,
+ "grad_norm": 0.23370878398418427,
+ "learning_rate": 0.0006,
+ "loss": 3.5700249671936035,
+ "step": 4063
+ },
+ {
+ "epoch": 56.44735692442114,
+ "grad_norm": 0.233205646276474,
+ "learning_rate": 0.0006,
+ "loss": 3.5184097290039062,
+ "step": 4064
+ },
+ {
+ "epoch": 56.46133682830931,
+ "grad_norm": 0.23928777873516083,
+ "learning_rate": 0.0006,
+ "loss": 3.535874366760254,
+ "step": 4065
+ },
+ {
+ "epoch": 56.47531673219746,
+ "grad_norm": 0.24950815737247467,
+ "learning_rate": 0.0006,
+ "loss": 3.508136749267578,
+ "step": 4066
+ },
+ {
+ "epoch": 56.489296636085626,
+ "grad_norm": 0.24821820855140686,
+ "learning_rate": 0.0006,
+ "loss": 3.5421361923217773,
+ "step": 4067
+ },
+ {
+ "epoch": 56.50327653997379,
+ "grad_norm": 0.2252482771873474,
+ "learning_rate": 0.0006,
+ "loss": 3.5516514778137207,
+ "step": 4068
+ },
+ {
+ "epoch": 56.517256443861946,
+ "grad_norm": 0.2238101363182068,
+ "learning_rate": 0.0006,
+ "loss": 3.567741632461548,
+ "step": 4069
+ },
+ {
+ "epoch": 56.53123634775011,
+ "grad_norm": 0.20759683847427368,
+ "learning_rate": 0.0006,
+ "loss": 3.544705390930176,
+ "step": 4070
+ },
+ {
+ "epoch": 56.54521625163827,
+ "grad_norm": 0.21918460726737976,
+ "learning_rate": 0.0006,
+ "loss": 3.5725836753845215,
+ "step": 4071
+ },
+ {
+ "epoch": 56.55919615552643,
+ "grad_norm": 0.22640042006969452,
+ "learning_rate": 0.0006,
+ "loss": 3.5447535514831543,
+ "step": 4072
+ },
+ {
+ "epoch": 56.57317605941459,
+ "grad_norm": 0.23130203783512115,
+ "learning_rate": 0.0006,
+ "loss": 3.5620853900909424,
+ "step": 4073
+ },
+ {
+ "epoch": 56.58715596330275,
+ "grad_norm": 0.2215641736984253,
+ "learning_rate": 0.0006,
+ "loss": 3.5416438579559326,
+ "step": 4074
+ },
+ {
+ "epoch": 56.60113586719091,
+ "grad_norm": 0.20106497406959534,
+ "learning_rate": 0.0006,
+ "loss": 3.537386178970337,
+ "step": 4075
+ },
+ {
+ "epoch": 56.615115771079076,
+ "grad_norm": 0.2045976221561432,
+ "learning_rate": 0.0006,
+ "loss": 3.555032730102539,
+ "step": 4076
+ },
+ {
+ "epoch": 56.62909567496723,
+ "grad_norm": 0.20097647607326508,
+ "learning_rate": 0.0006,
+ "loss": 3.559572458267212,
+ "step": 4077
+ },
+ {
+ "epoch": 56.643075578855395,
+ "grad_norm": 0.24158388376235962,
+ "learning_rate": 0.0006,
+ "loss": 3.56520938873291,
+ "step": 4078
+ },
+ {
+ "epoch": 56.65705548274356,
+ "grad_norm": 0.2687791585922241,
+ "learning_rate": 0.0006,
+ "loss": 3.545924663543701,
+ "step": 4079
+ },
+ {
+ "epoch": 56.671035386631715,
+ "grad_norm": 0.22466111183166504,
+ "learning_rate": 0.0006,
+ "loss": 3.5556845664978027,
+ "step": 4080
+ },
+ {
+ "epoch": 56.68501529051988,
+ "grad_norm": 0.2177814394235611,
+ "learning_rate": 0.0006,
+ "loss": 3.5799131393432617,
+ "step": 4081
+ },
+ {
+ "epoch": 56.69899519440804,
+ "grad_norm": 0.2700476050376892,
+ "learning_rate": 0.0006,
+ "loss": 3.5859055519104004,
+ "step": 4082
+ },
+ {
+ "epoch": 56.7129750982962,
+ "grad_norm": 0.28230178356170654,
+ "learning_rate": 0.0006,
+ "loss": 3.5733890533447266,
+ "step": 4083
+ },
+ {
+ "epoch": 56.72695500218436,
+ "grad_norm": 0.29298731684684753,
+ "learning_rate": 0.0006,
+ "loss": 3.556626319885254,
+ "step": 4084
+ },
+ {
+ "epoch": 56.74093490607252,
+ "grad_norm": 0.2818183898925781,
+ "learning_rate": 0.0006,
+ "loss": 3.5884718894958496,
+ "step": 4085
+ },
+ {
+ "epoch": 56.75491480996068,
+ "grad_norm": 0.24008697271347046,
+ "learning_rate": 0.0006,
+ "loss": 3.5464529991149902,
+ "step": 4086
+ },
+ {
+ "epoch": 56.768894713848844,
+ "grad_norm": 0.23406296968460083,
+ "learning_rate": 0.0006,
+ "loss": 3.5622801780700684,
+ "step": 4087
+ },
+ {
+ "epoch": 56.782874617737,
+ "grad_norm": 0.26089322566986084,
+ "learning_rate": 0.0006,
+ "loss": 3.5775020122528076,
+ "step": 4088
+ },
+ {
+ "epoch": 56.796854521625164,
+ "grad_norm": 0.2576654851436615,
+ "learning_rate": 0.0006,
+ "loss": 3.5543627738952637,
+ "step": 4089
+ },
+ {
+ "epoch": 56.81083442551333,
+ "grad_norm": 0.26576393842697144,
+ "learning_rate": 0.0006,
+ "loss": 3.546170711517334,
+ "step": 4090
+ },
+ {
+ "epoch": 56.824814329401484,
+ "grad_norm": 0.22380715608596802,
+ "learning_rate": 0.0006,
+ "loss": 3.5437729358673096,
+ "step": 4091
+ },
+ {
+ "epoch": 56.83879423328965,
+ "grad_norm": 0.20786714553833008,
+ "learning_rate": 0.0006,
+ "loss": 3.5951266288757324,
+ "step": 4092
+ },
+ {
+ "epoch": 56.8527741371778,
+ "grad_norm": 0.23177042603492737,
+ "learning_rate": 0.0006,
+ "loss": 3.549454689025879,
+ "step": 4093
+ },
+ {
+ "epoch": 56.86675404106597,
+ "grad_norm": 0.21466009318828583,
+ "learning_rate": 0.0006,
+ "loss": 3.5611233711242676,
+ "step": 4094
+ },
+ {
+ "epoch": 56.88073394495413,
+ "grad_norm": 0.20928414165973663,
+ "learning_rate": 0.0006,
+ "loss": 3.5550684928894043,
+ "step": 4095
+ },
+ {
+ "epoch": 56.89471384884229,
+ "grad_norm": 0.20727156102657318,
+ "learning_rate": 0.0006,
+ "loss": 3.552496910095215,
+ "step": 4096
+ },
+ {
+ "epoch": 56.90869375273045,
+ "grad_norm": 0.21370401978492737,
+ "learning_rate": 0.0006,
+ "loss": 3.5763869285583496,
+ "step": 4097
+ },
+ {
+ "epoch": 56.92267365661861,
+ "grad_norm": 0.22490337491035461,
+ "learning_rate": 0.0006,
+ "loss": 3.538986921310425,
+ "step": 4098
+ },
+ {
+ "epoch": 56.93665356050677,
+ "grad_norm": 0.23320236802101135,
+ "learning_rate": 0.0006,
+ "loss": 3.5514214038848877,
+ "step": 4099
+ },
+ {
+ "epoch": 56.95063346439493,
+ "grad_norm": 0.22050419449806213,
+ "learning_rate": 0.0006,
+ "loss": 3.5486960411071777,
+ "step": 4100
+ },
+ {
+ "epoch": 56.964613368283096,
+ "grad_norm": 0.2241443395614624,
+ "learning_rate": 0.0006,
+ "loss": 3.5858001708984375,
+ "step": 4101
+ },
+ {
+ "epoch": 56.97859327217125,
+ "grad_norm": 0.24904389679431915,
+ "learning_rate": 0.0006,
+ "loss": 3.586472511291504,
+ "step": 4102
+ },
+ {
+ "epoch": 56.992573176059416,
+ "grad_norm": 0.2333211451768875,
+ "learning_rate": 0.0006,
+ "loss": 3.5463132858276367,
+ "step": 4103
+ },
+ {
+ "epoch": 57.0,
+ "grad_norm": 0.24142783880233765,
+ "learning_rate": 0.0006,
+ "loss": 3.5642542839050293,
+ "step": 4104
+ },
+ {
+ "epoch": 57.0,
+ "eval_loss": 3.973973035812378,
+ "eval_runtime": 46.2906,
+ "eval_samples_per_second": 52.754,
+ "eval_steps_per_second": 3.305,
+ "step": 4104
+ },
+ {
+ "epoch": 57.01397990388816,
+ "grad_norm": 0.21989624202251434,
+ "learning_rate": 0.0006,
+ "loss": 3.539435863494873,
+ "step": 4105
+ },
+ {
+ "epoch": 57.02795980777632,
+ "grad_norm": 0.24061834812164307,
+ "learning_rate": 0.0006,
+ "loss": 3.5251410007476807,
+ "step": 4106
+ },
+ {
+ "epoch": 57.04193971166448,
+ "grad_norm": 0.2483278512954712,
+ "learning_rate": 0.0006,
+ "loss": 3.5104010105133057,
+ "step": 4107
+ },
+ {
+ "epoch": 57.05591961555265,
+ "grad_norm": 0.2717698812484741,
+ "learning_rate": 0.0006,
+ "loss": 3.5134170055389404,
+ "step": 4108
+ },
+ {
+ "epoch": 57.0698995194408,
+ "grad_norm": 0.27335646748542786,
+ "learning_rate": 0.0006,
+ "loss": 3.53574275970459,
+ "step": 4109
+ },
+ {
+ "epoch": 57.083879423328966,
+ "grad_norm": 0.2423052042722702,
+ "learning_rate": 0.0006,
+ "loss": 3.4960169792175293,
+ "step": 4110
+ },
+ {
+ "epoch": 57.09785932721712,
+ "grad_norm": 0.2241092175245285,
+ "learning_rate": 0.0006,
+ "loss": 3.5409107208251953,
+ "step": 4111
+ },
+ {
+ "epoch": 57.111839231105286,
+ "grad_norm": 0.23098452389240265,
+ "learning_rate": 0.0006,
+ "loss": 3.5326709747314453,
+ "step": 4112
+ },
+ {
+ "epoch": 57.12581913499345,
+ "grad_norm": 0.2500186562538147,
+ "learning_rate": 0.0006,
+ "loss": 3.509953498840332,
+ "step": 4113
+ },
+ {
+ "epoch": 57.139799038881605,
+ "grad_norm": 0.26994550228118896,
+ "learning_rate": 0.0006,
+ "loss": 3.560410499572754,
+ "step": 4114
+ },
+ {
+ "epoch": 57.15377894276977,
+ "grad_norm": 0.24950402975082397,
+ "learning_rate": 0.0006,
+ "loss": 3.517613649368286,
+ "step": 4115
+ },
+ {
+ "epoch": 57.16775884665793,
+ "grad_norm": 0.21742430329322815,
+ "learning_rate": 0.0006,
+ "loss": 3.531256675720215,
+ "step": 4116
+ },
+ {
+ "epoch": 57.18173875054609,
+ "grad_norm": 0.29069146513938904,
+ "learning_rate": 0.0006,
+ "loss": 3.5283756256103516,
+ "step": 4117
+ },
+ {
+ "epoch": 57.19571865443425,
+ "grad_norm": 0.2901996970176697,
+ "learning_rate": 0.0006,
+ "loss": 3.5460801124572754,
+ "step": 4118
+ },
+ {
+ "epoch": 57.20969855832241,
+ "grad_norm": 0.2534845471382141,
+ "learning_rate": 0.0006,
+ "loss": 3.515536308288574,
+ "step": 4119
+ },
+ {
+ "epoch": 57.22367846221057,
+ "grad_norm": 0.2352340817451477,
+ "learning_rate": 0.0006,
+ "loss": 3.5281717777252197,
+ "step": 4120
+ },
+ {
+ "epoch": 57.237658366098735,
+ "grad_norm": 0.2263645976781845,
+ "learning_rate": 0.0006,
+ "loss": 3.5629191398620605,
+ "step": 4121
+ },
+ {
+ "epoch": 57.25163826998689,
+ "grad_norm": 0.21413370966911316,
+ "learning_rate": 0.0006,
+ "loss": 3.5342142581939697,
+ "step": 4122
+ },
+ {
+ "epoch": 57.265618173875055,
+ "grad_norm": 0.1969698667526245,
+ "learning_rate": 0.0006,
+ "loss": 3.5467586517333984,
+ "step": 4123
+ },
+ {
+ "epoch": 57.27959807776322,
+ "grad_norm": 0.2106606364250183,
+ "learning_rate": 0.0006,
+ "loss": 3.5409536361694336,
+ "step": 4124
+ },
+ {
+ "epoch": 57.293577981651374,
+ "grad_norm": 0.21824438869953156,
+ "learning_rate": 0.0006,
+ "loss": 3.5246548652648926,
+ "step": 4125
+ },
+ {
+ "epoch": 57.30755788553954,
+ "grad_norm": 0.2147768884897232,
+ "learning_rate": 0.0006,
+ "loss": 3.5411794185638428,
+ "step": 4126
+ },
+ {
+ "epoch": 57.3215377894277,
+ "grad_norm": 0.21352852880954742,
+ "learning_rate": 0.0006,
+ "loss": 3.569387197494507,
+ "step": 4127
+ },
+ {
+ "epoch": 57.33551769331586,
+ "grad_norm": 0.20957978069782257,
+ "learning_rate": 0.0006,
+ "loss": 3.522695779800415,
+ "step": 4128
+ },
+ {
+ "epoch": 57.34949759720402,
+ "grad_norm": 0.2013026475906372,
+ "learning_rate": 0.0006,
+ "loss": 3.5485787391662598,
+ "step": 4129
+ },
+ {
+ "epoch": 57.36347750109218,
+ "grad_norm": 0.2260376214981079,
+ "learning_rate": 0.0006,
+ "loss": 3.547607421875,
+ "step": 4130
+ },
+ {
+ "epoch": 57.37745740498034,
+ "grad_norm": 0.22991685569286346,
+ "learning_rate": 0.0006,
+ "loss": 3.5464730262756348,
+ "step": 4131
+ },
+ {
+ "epoch": 57.391437308868504,
+ "grad_norm": 0.19638051092624664,
+ "learning_rate": 0.0006,
+ "loss": 3.54355525970459,
+ "step": 4132
+ },
+ {
+ "epoch": 57.40541721275666,
+ "grad_norm": 0.19450774788856506,
+ "learning_rate": 0.0006,
+ "loss": 3.5490050315856934,
+ "step": 4133
+ },
+ {
+ "epoch": 57.419397116644824,
+ "grad_norm": 0.21798551082611084,
+ "learning_rate": 0.0006,
+ "loss": 3.56355619430542,
+ "step": 4134
+ },
+ {
+ "epoch": 57.43337702053299,
+ "grad_norm": 0.2129846215248108,
+ "learning_rate": 0.0006,
+ "loss": 3.5607380867004395,
+ "step": 4135
+ },
+ {
+ "epoch": 57.44735692442114,
+ "grad_norm": 0.20589227974414825,
+ "learning_rate": 0.0006,
+ "loss": 3.523768663406372,
+ "step": 4136
+ },
+ {
+ "epoch": 57.46133682830931,
+ "grad_norm": 0.21841686964035034,
+ "learning_rate": 0.0006,
+ "loss": 3.5187885761260986,
+ "step": 4137
+ },
+ {
+ "epoch": 57.47531673219746,
+ "grad_norm": 0.2118791788816452,
+ "learning_rate": 0.0006,
+ "loss": 3.5271782875061035,
+ "step": 4138
+ },
+ {
+ "epoch": 57.489296636085626,
+ "grad_norm": 0.21905459463596344,
+ "learning_rate": 0.0006,
+ "loss": 3.546968460083008,
+ "step": 4139
+ },
+ {
+ "epoch": 57.50327653997379,
+ "grad_norm": 0.23899133503437042,
+ "learning_rate": 0.0006,
+ "loss": 3.5156688690185547,
+ "step": 4140
+ },
+ {
+ "epoch": 57.517256443861946,
+ "grad_norm": 0.23873545229434967,
+ "learning_rate": 0.0006,
+ "loss": 3.5271472930908203,
+ "step": 4141
+ },
+ {
+ "epoch": 57.53123634775011,
+ "grad_norm": 0.20691858232021332,
+ "learning_rate": 0.0006,
+ "loss": 3.552854537963867,
+ "step": 4142
+ },
+ {
+ "epoch": 57.54521625163827,
+ "grad_norm": 0.21962891519069672,
+ "learning_rate": 0.0006,
+ "loss": 3.5258498191833496,
+ "step": 4143
+ },
+ {
+ "epoch": 57.55919615552643,
+ "grad_norm": 0.21762165427207947,
+ "learning_rate": 0.0006,
+ "loss": 3.566831588745117,
+ "step": 4144
+ },
+ {
+ "epoch": 57.57317605941459,
+ "grad_norm": 0.19603654742240906,
+ "learning_rate": 0.0006,
+ "loss": 3.5393714904785156,
+ "step": 4145
+ },
+ {
+ "epoch": 57.58715596330275,
+ "grad_norm": 0.20347437262535095,
+ "learning_rate": 0.0006,
+ "loss": 3.538390874862671,
+ "step": 4146
+ },
+ {
+ "epoch": 57.60113586719091,
+ "grad_norm": 0.2179173231124878,
+ "learning_rate": 0.0006,
+ "loss": 3.566631317138672,
+ "step": 4147
+ },
+ {
+ "epoch": 57.615115771079076,
+ "grad_norm": 0.19678309559822083,
+ "learning_rate": 0.0006,
+ "loss": 3.5659375190734863,
+ "step": 4148
+ },
+ {
+ "epoch": 57.62909567496723,
+ "grad_norm": 0.20221677422523499,
+ "learning_rate": 0.0006,
+ "loss": 3.5679430961608887,
+ "step": 4149
+ },
+ {
+ "epoch": 57.643075578855395,
+ "grad_norm": 0.21337579190731049,
+ "learning_rate": 0.0006,
+ "loss": 3.5330681800842285,
+ "step": 4150
+ },
+ {
+ "epoch": 57.65705548274356,
+ "grad_norm": 0.2646789848804474,
+ "learning_rate": 0.0006,
+ "loss": 3.5216803550720215,
+ "step": 4151
+ },
+ {
+ "epoch": 57.671035386631715,
+ "grad_norm": 0.304950088262558,
+ "learning_rate": 0.0006,
+ "loss": 3.5570156574249268,
+ "step": 4152
+ },
+ {
+ "epoch": 57.68501529051988,
+ "grad_norm": 0.2739402651786804,
+ "learning_rate": 0.0006,
+ "loss": 3.5844314098358154,
+ "step": 4153
+ },
+ {
+ "epoch": 57.69899519440804,
+ "grad_norm": 0.19060099124908447,
+ "learning_rate": 0.0006,
+ "loss": 3.571052074432373,
+ "step": 4154
+ },
+ {
+ "epoch": 57.7129750982962,
+ "grad_norm": 0.2941007614135742,
+ "learning_rate": 0.0006,
+ "loss": 3.543100357055664,
+ "step": 4155
+ },
+ {
+ "epoch": 57.72695500218436,
+ "grad_norm": 0.34624332189559937,
+ "learning_rate": 0.0006,
+ "loss": 3.564270496368408,
+ "step": 4156
+ },
+ {
+ "epoch": 57.74093490607252,
+ "grad_norm": 0.30635201930999756,
+ "learning_rate": 0.0006,
+ "loss": 3.5390584468841553,
+ "step": 4157
+ },
+ {
+ "epoch": 57.75491480996068,
+ "grad_norm": 0.2204878330230713,
+ "learning_rate": 0.0006,
+ "loss": 3.5427281856536865,
+ "step": 4158
+ },
+ {
+ "epoch": 57.768894713848844,
+ "grad_norm": 0.20659378170967102,
+ "learning_rate": 0.0006,
+ "loss": 3.528977155685425,
+ "step": 4159
+ },
+ {
+ "epoch": 57.782874617737,
+ "grad_norm": 0.2281361073255539,
+ "learning_rate": 0.0006,
+ "loss": 3.5531792640686035,
+ "step": 4160
+ },
+ {
+ "epoch": 57.796854521625164,
+ "grad_norm": 0.22478239238262177,
+ "learning_rate": 0.0006,
+ "loss": 3.566704750061035,
+ "step": 4161
+ },
+ {
+ "epoch": 57.81083442551333,
+ "grad_norm": 0.20797103643417358,
+ "learning_rate": 0.0006,
+ "loss": 3.5684943199157715,
+ "step": 4162
+ },
+ {
+ "epoch": 57.824814329401484,
+ "grad_norm": 0.2108374983072281,
+ "learning_rate": 0.0006,
+ "loss": 3.5475950241088867,
+ "step": 4163
+ },
+ {
+ "epoch": 57.83879423328965,
+ "grad_norm": 0.2268034815788269,
+ "learning_rate": 0.0006,
+ "loss": 3.5456833839416504,
+ "step": 4164
+ },
+ {
+ "epoch": 57.8527741371778,
+ "grad_norm": 0.2131519913673401,
+ "learning_rate": 0.0006,
+ "loss": 3.5316243171691895,
+ "step": 4165
+ },
+ {
+ "epoch": 57.86675404106597,
+ "grad_norm": 0.20163841545581818,
+ "learning_rate": 0.0006,
+ "loss": 3.5320897102355957,
+ "step": 4166
+ },
+ {
+ "epoch": 57.88073394495413,
+ "grad_norm": 0.20961757004261017,
+ "learning_rate": 0.0006,
+ "loss": 3.5800695419311523,
+ "step": 4167
+ },
+ {
+ "epoch": 57.89471384884229,
+ "grad_norm": 0.2061416506767273,
+ "learning_rate": 0.0006,
+ "loss": 3.544395923614502,
+ "step": 4168
+ },
+ {
+ "epoch": 57.90869375273045,
+ "grad_norm": 0.20306318998336792,
+ "learning_rate": 0.0006,
+ "loss": 3.554436683654785,
+ "step": 4169
+ },
+ {
+ "epoch": 57.92267365661861,
+ "grad_norm": 0.20685963332653046,
+ "learning_rate": 0.0006,
+ "loss": 3.5614635944366455,
+ "step": 4170
+ },
+ {
+ "epoch": 57.93665356050677,
+ "grad_norm": 0.19938082993030548,
+ "learning_rate": 0.0006,
+ "loss": 3.578136920928955,
+ "step": 4171
+ },
+ {
+ "epoch": 57.95063346439493,
+ "grad_norm": 0.2150411158800125,
+ "learning_rate": 0.0006,
+ "loss": 3.5754270553588867,
+ "step": 4172
+ },
+ {
+ "epoch": 57.964613368283096,
+ "grad_norm": 0.23399604856967926,
+ "learning_rate": 0.0006,
+ "loss": 3.5553112030029297,
+ "step": 4173
+ },
+ {
+ "epoch": 57.97859327217125,
+ "grad_norm": 0.2496841847896576,
+ "learning_rate": 0.0006,
+ "loss": 3.5509696006774902,
+ "step": 4174
+ },
+ {
+ "epoch": 57.992573176059416,
+ "grad_norm": 0.23759980499744415,
+ "learning_rate": 0.0006,
+ "loss": 3.5806684494018555,
+ "step": 4175
+ },
+ {
+ "epoch": 58.0,
+ "grad_norm": 0.2494540512561798,
+ "learning_rate": 0.0006,
+ "loss": 3.541708469390869,
+ "step": 4176
+ },
+ {
+ "epoch": 58.0,
+ "eval_loss": 3.970658779144287,
+ "eval_runtime": 46.0262,
+ "eval_samples_per_second": 53.057,
+ "eval_steps_per_second": 3.324,
+ "step": 4176
+ },
+ {
+ "epoch": 58.01397990388816,
+ "grad_norm": 0.2053643763065338,
+ "learning_rate": 0.0006,
+ "loss": 3.5264205932617188,
+ "step": 4177
+ },
+ {
+ "epoch": 58.02795980777632,
+ "grad_norm": 0.20680591464042664,
+ "learning_rate": 0.0006,
+ "loss": 3.495445728302002,
+ "step": 4178
+ },
+ {
+ "epoch": 58.04193971166448,
+ "grad_norm": 0.22180874645709991,
+ "learning_rate": 0.0006,
+ "loss": 3.546283483505249,
+ "step": 4179
+ },
+ {
+ "epoch": 58.05591961555265,
+ "grad_norm": 0.24255339801311493,
+ "learning_rate": 0.0006,
+ "loss": 3.50639271736145,
+ "step": 4180
+ },
+ {
+ "epoch": 58.0698995194408,
+ "grad_norm": 0.2747100591659546,
+ "learning_rate": 0.0006,
+ "loss": 3.514240026473999,
+ "step": 4181
+ },
+ {
+ "epoch": 58.083879423328966,
+ "grad_norm": 0.27960914373397827,
+ "learning_rate": 0.0006,
+ "loss": 3.5614311695098877,
+ "step": 4182
+ },
+ {
+ "epoch": 58.09785932721712,
+ "grad_norm": 0.25837743282318115,
+ "learning_rate": 0.0006,
+ "loss": 3.533560276031494,
+ "step": 4183
+ },
+ {
+ "epoch": 58.111839231105286,
+ "grad_norm": 0.24635657668113708,
+ "learning_rate": 0.0006,
+ "loss": 3.4867968559265137,
+ "step": 4184
+ },
+ {
+ "epoch": 58.12581913499345,
+ "grad_norm": 0.31520891189575195,
+ "learning_rate": 0.0006,
+ "loss": 3.5131611824035645,
+ "step": 4185
+ },
+ {
+ "epoch": 58.139799038881605,
+ "grad_norm": 0.36781513690948486,
+ "learning_rate": 0.0006,
+ "loss": 3.5149288177490234,
+ "step": 4186
+ },
+ {
+ "epoch": 58.15377894276977,
+ "grad_norm": 0.32433459162712097,
+ "learning_rate": 0.0006,
+ "loss": 3.5485405921936035,
+ "step": 4187
+ },
+ {
+ "epoch": 58.16775884665793,
+ "grad_norm": 0.2532205283641815,
+ "learning_rate": 0.0006,
+ "loss": 3.4994513988494873,
+ "step": 4188
+ },
+ {
+ "epoch": 58.18173875054609,
+ "grad_norm": 0.29780858755111694,
+ "learning_rate": 0.0006,
+ "loss": 3.496187448501587,
+ "step": 4189
+ },
+ {
+ "epoch": 58.19571865443425,
+ "grad_norm": 0.2804715037345886,
+ "learning_rate": 0.0006,
+ "loss": 3.5210375785827637,
+ "step": 4190
+ },
+ {
+ "epoch": 58.20969855832241,
+ "grad_norm": 0.2186010330915451,
+ "learning_rate": 0.0006,
+ "loss": 3.5139119625091553,
+ "step": 4191
+ },
+ {
+ "epoch": 58.22367846221057,
+ "grad_norm": 0.21566270291805267,
+ "learning_rate": 0.0006,
+ "loss": 3.5011606216430664,
+ "step": 4192
+ },
+ {
+ "epoch": 58.237658366098735,
+ "grad_norm": 0.21042031049728394,
+ "learning_rate": 0.0006,
+ "loss": 3.52295184135437,
+ "step": 4193
+ },
+ {
+ "epoch": 58.25163826998689,
+ "grad_norm": 0.20117411017417908,
+ "learning_rate": 0.0006,
+ "loss": 3.54593563079834,
+ "step": 4194
+ },
+ {
+ "epoch": 58.265618173875055,
+ "grad_norm": 0.21747945249080658,
+ "learning_rate": 0.0006,
+ "loss": 3.5341522693634033,
+ "step": 4195
+ },
+ {
+ "epoch": 58.27959807776322,
+ "grad_norm": 0.266024649143219,
+ "learning_rate": 0.0006,
+ "loss": 3.536393165588379,
+ "step": 4196
+ },
+ {
+ "epoch": 58.293577981651374,
+ "grad_norm": 0.2577304542064667,
+ "learning_rate": 0.0006,
+ "loss": 3.557468891143799,
+ "step": 4197
+ },
+ {
+ "epoch": 58.30755788553954,
+ "grad_norm": 0.22055941820144653,
+ "learning_rate": 0.0006,
+ "loss": 3.5307652950286865,
+ "step": 4198
+ },
+ {
+ "epoch": 58.3215377894277,
+ "grad_norm": 0.22490856051445007,
+ "learning_rate": 0.0006,
+ "loss": 3.506265163421631,
+ "step": 4199
+ },
+ {
+ "epoch": 58.33551769331586,
+ "grad_norm": 0.23600345849990845,
+ "learning_rate": 0.0006,
+ "loss": 3.523414134979248,
+ "step": 4200
+ },
+ {
+ "epoch": 58.34949759720402,
+ "grad_norm": 0.24872642755508423,
+ "learning_rate": 0.0006,
+ "loss": 3.561278820037842,
+ "step": 4201
+ },
+ {
+ "epoch": 58.36347750109218,
+ "grad_norm": 0.2702998220920563,
+ "learning_rate": 0.0006,
+ "loss": 3.573561191558838,
+ "step": 4202
+ },
+ {
+ "epoch": 58.37745740498034,
+ "grad_norm": 0.2532080411911011,
+ "learning_rate": 0.0006,
+ "loss": 3.5476837158203125,
+ "step": 4203
+ },
+ {
+ "epoch": 58.391437308868504,
+ "grad_norm": 0.23641079664230347,
+ "learning_rate": 0.0006,
+ "loss": 3.5464468002319336,
+ "step": 4204
+ },
+ {
+ "epoch": 58.40541721275666,
+ "grad_norm": 0.29965463280677795,
+ "learning_rate": 0.0006,
+ "loss": 3.560166835784912,
+ "step": 4205
+ },
+ {
+ "epoch": 58.419397116644824,
+ "grad_norm": 0.2778814136981964,
+ "learning_rate": 0.0006,
+ "loss": 3.5363056659698486,
+ "step": 4206
+ },
+ {
+ "epoch": 58.43337702053299,
+ "grad_norm": 0.23625248670578003,
+ "learning_rate": 0.0006,
+ "loss": 3.5575437545776367,
+ "step": 4207
+ },
+ {
+ "epoch": 58.44735692442114,
+ "grad_norm": 0.2165721356868744,
+ "learning_rate": 0.0006,
+ "loss": 3.541654109954834,
+ "step": 4208
+ },
+ {
+ "epoch": 58.46133682830931,
+ "grad_norm": 0.2261950671672821,
+ "learning_rate": 0.0006,
+ "loss": 3.5462238788604736,
+ "step": 4209
+ },
+ {
+ "epoch": 58.47531673219746,
+ "grad_norm": 0.23496517539024353,
+ "learning_rate": 0.0006,
+ "loss": 3.510138988494873,
+ "step": 4210
+ },
+ {
+ "epoch": 58.489296636085626,
+ "grad_norm": 0.27041929960250854,
+ "learning_rate": 0.0006,
+ "loss": 3.527822971343994,
+ "step": 4211
+ },
+ {
+ "epoch": 58.50327653997379,
+ "grad_norm": 0.2594013512134552,
+ "learning_rate": 0.0006,
+ "loss": 3.5358262062072754,
+ "step": 4212
+ },
+ {
+ "epoch": 58.517256443861946,
+ "grad_norm": 0.23336786031723022,
+ "learning_rate": 0.0006,
+ "loss": 3.530122756958008,
+ "step": 4213
+ },
+ {
+ "epoch": 58.53123634775011,
+ "grad_norm": 0.21956655383110046,
+ "learning_rate": 0.0006,
+ "loss": 3.541039228439331,
+ "step": 4214
+ },
+ {
+ "epoch": 58.54521625163827,
+ "grad_norm": 0.22432804107666016,
+ "learning_rate": 0.0006,
+ "loss": 3.520948886871338,
+ "step": 4215
+ },
+ {
+ "epoch": 58.55919615552643,
+ "grad_norm": 0.21589893102645874,
+ "learning_rate": 0.0006,
+ "loss": 3.569808006286621,
+ "step": 4216
+ },
+ {
+ "epoch": 58.57317605941459,
+ "grad_norm": 0.20264557003974915,
+ "learning_rate": 0.0006,
+ "loss": 3.514918088912964,
+ "step": 4217
+ },
+ {
+ "epoch": 58.58715596330275,
+ "grad_norm": 0.20911480486392975,
+ "learning_rate": 0.0006,
+ "loss": 3.5340771675109863,
+ "step": 4218
+ },
+ {
+ "epoch": 58.60113586719091,
+ "grad_norm": 0.21068964898586273,
+ "learning_rate": 0.0006,
+ "loss": 3.5388903617858887,
+ "step": 4219
+ },
+ {
+ "epoch": 58.615115771079076,
+ "grad_norm": 0.19314789772033691,
+ "learning_rate": 0.0006,
+ "loss": 3.5405967235565186,
+ "step": 4220
+ },
+ {
+ "epoch": 58.62909567496723,
+ "grad_norm": 0.18347802758216858,
+ "learning_rate": 0.0006,
+ "loss": 3.5208020210266113,
+ "step": 4221
+ },
+ {
+ "epoch": 58.643075578855395,
+ "grad_norm": 0.2082843780517578,
+ "learning_rate": 0.0006,
+ "loss": 3.5454647541046143,
+ "step": 4222
+ },
+ {
+ "epoch": 58.65705548274356,
+ "grad_norm": 0.2049611210823059,
+ "learning_rate": 0.0006,
+ "loss": 3.529350996017456,
+ "step": 4223
+ },
+ {
+ "epoch": 58.671035386631715,
+ "grad_norm": 0.19259536266326904,
+ "learning_rate": 0.0006,
+ "loss": 3.5589945316314697,
+ "step": 4224
+ },
+ {
+ "epoch": 58.68501529051988,
+ "grad_norm": 0.19039863348007202,
+ "learning_rate": 0.0006,
+ "loss": 3.5593101978302,
+ "step": 4225
+ },
+ {
+ "epoch": 58.69899519440804,
+ "grad_norm": 0.21481311321258545,
+ "learning_rate": 0.0006,
+ "loss": 3.55385422706604,
+ "step": 4226
+ },
+ {
+ "epoch": 58.7129750982962,
+ "grad_norm": 0.2053634226322174,
+ "learning_rate": 0.0006,
+ "loss": 3.535224437713623,
+ "step": 4227
+ },
+ {
+ "epoch": 58.72695500218436,
+ "grad_norm": 0.21111956238746643,
+ "learning_rate": 0.0006,
+ "loss": 3.5208349227905273,
+ "step": 4228
+ },
+ {
+ "epoch": 58.74093490607252,
+ "grad_norm": 0.22069109976291656,
+ "learning_rate": 0.0006,
+ "loss": 3.5292487144470215,
+ "step": 4229
+ },
+ {
+ "epoch": 58.75491480996068,
+ "grad_norm": 0.22549185156822205,
+ "learning_rate": 0.0006,
+ "loss": 3.556830406188965,
+ "step": 4230
+ },
+ {
+ "epoch": 58.768894713848844,
+ "grad_norm": 0.22341859340667725,
+ "learning_rate": 0.0006,
+ "loss": 3.5573582649230957,
+ "step": 4231
+ },
+ {
+ "epoch": 58.782874617737,
+ "grad_norm": 0.20664502680301666,
+ "learning_rate": 0.0006,
+ "loss": 3.578657865524292,
+ "step": 4232
+ },
+ {
+ "epoch": 58.796854521625164,
+ "grad_norm": 0.19885236024856567,
+ "learning_rate": 0.0006,
+ "loss": 3.5604476928710938,
+ "step": 4233
+ },
+ {
+ "epoch": 58.81083442551333,
+ "grad_norm": 0.19446797668933868,
+ "learning_rate": 0.0006,
+ "loss": 3.5686912536621094,
+ "step": 4234
+ },
+ {
+ "epoch": 58.824814329401484,
+ "grad_norm": 0.20658083260059357,
+ "learning_rate": 0.0006,
+ "loss": 3.563167095184326,
+ "step": 4235
+ },
+ {
+ "epoch": 58.83879423328965,
+ "grad_norm": 0.21075408160686493,
+ "learning_rate": 0.0006,
+ "loss": 3.5597028732299805,
+ "step": 4236
+ },
+ {
+ "epoch": 58.8527741371778,
+ "grad_norm": 0.20652376115322113,
+ "learning_rate": 0.0006,
+ "loss": 3.5651087760925293,
+ "step": 4237
+ },
+ {
+ "epoch": 58.86675404106597,
+ "grad_norm": 0.2243892401456833,
+ "learning_rate": 0.0006,
+ "loss": 3.5442488193511963,
+ "step": 4238
+ },
+ {
+ "epoch": 58.88073394495413,
+ "grad_norm": 0.23486459255218506,
+ "learning_rate": 0.0006,
+ "loss": 3.545135974884033,
+ "step": 4239
+ },
+ {
+ "epoch": 58.89471384884229,
+ "grad_norm": 0.23100663721561432,
+ "learning_rate": 0.0006,
+ "loss": 3.57177734375,
+ "step": 4240
+ },
+ {
+ "epoch": 58.90869375273045,
+ "grad_norm": 0.2269909679889679,
+ "learning_rate": 0.0006,
+ "loss": 3.528768301010132,
+ "step": 4241
+ },
+ {
+ "epoch": 58.92267365661861,
+ "grad_norm": 0.20349252223968506,
+ "learning_rate": 0.0006,
+ "loss": 3.591031789779663,
+ "step": 4242
+ },
+ {
+ "epoch": 58.93665356050677,
+ "grad_norm": 0.21038702130317688,
+ "learning_rate": 0.0006,
+ "loss": 3.5696892738342285,
+ "step": 4243
+ },
+ {
+ "epoch": 58.95063346439493,
+ "grad_norm": 0.21356560289859772,
+ "learning_rate": 0.0006,
+ "loss": 3.5708963871002197,
+ "step": 4244
+ },
+ {
+ "epoch": 58.964613368283096,
+ "grad_norm": 0.20008863508701324,
+ "learning_rate": 0.0006,
+ "loss": 3.524749279022217,
+ "step": 4245
+ },
+ {
+ "epoch": 58.97859327217125,
+ "grad_norm": 0.20453840494155884,
+ "learning_rate": 0.0006,
+ "loss": 3.5677876472473145,
+ "step": 4246
+ },
+ {
+ "epoch": 58.992573176059416,
+ "grad_norm": 0.21549056470394135,
+ "learning_rate": 0.0006,
+ "loss": 3.550870418548584,
+ "step": 4247
+ },
+ {
+ "epoch": 59.0,
+ "grad_norm": 0.2592930793762207,
+ "learning_rate": 0.0006,
+ "loss": 3.550673484802246,
+ "step": 4248
+ },
+ {
+ "epoch": 59.0,
+ "eval_loss": 3.968780279159546,
+ "eval_runtime": 45.6246,
+ "eval_samples_per_second": 53.524,
+ "eval_steps_per_second": 3.353,
+ "step": 4248
+ },
+ {
+ "epoch": 59.01397990388816,
+ "grad_norm": 0.218043252825737,
+ "learning_rate": 0.0006,
+ "loss": 3.49605655670166,
+ "step": 4249
+ },
+ {
+ "epoch": 59.02795980777632,
+ "grad_norm": 0.25112417340278625,
+ "learning_rate": 0.0006,
+ "loss": 3.534919023513794,
+ "step": 4250
+ },
+ {
+ "epoch": 59.04193971166448,
+ "grad_norm": 0.2785079777240753,
+ "learning_rate": 0.0006,
+ "loss": 3.5425362586975098,
+ "step": 4251
+ },
+ {
+ "epoch": 59.05591961555265,
+ "grad_norm": 0.2667599618434906,
+ "learning_rate": 0.0006,
+ "loss": 3.4955453872680664,
+ "step": 4252
+ },
+ {
+ "epoch": 59.0698995194408,
+ "grad_norm": 0.24012432992458344,
+ "learning_rate": 0.0006,
+ "loss": 3.4949915409088135,
+ "step": 4253
+ },
+ {
+ "epoch": 59.083879423328966,
+ "grad_norm": 0.2502294182777405,
+ "learning_rate": 0.0006,
+ "loss": 3.5163769721984863,
+ "step": 4254
+ },
+ {
+ "epoch": 59.09785932721712,
+ "grad_norm": 0.28585609793663025,
+ "learning_rate": 0.0006,
+ "loss": 3.4852542877197266,
+ "step": 4255
+ },
+ {
+ "epoch": 59.111839231105286,
+ "grad_norm": 0.2815989553928375,
+ "learning_rate": 0.0006,
+ "loss": 3.4991462230682373,
+ "step": 4256
+ },
+ {
+ "epoch": 59.12581913499345,
+ "grad_norm": 0.22922837734222412,
+ "learning_rate": 0.0006,
+ "loss": 3.511322021484375,
+ "step": 4257
+ },
+ {
+ "epoch": 59.139799038881605,
+ "grad_norm": 0.24964241683483124,
+ "learning_rate": 0.0006,
+ "loss": 3.521056652069092,
+ "step": 4258
+ },
+ {
+ "epoch": 59.15377894276977,
+ "grad_norm": 0.27568385004997253,
+ "learning_rate": 0.0006,
+ "loss": 3.514004707336426,
+ "step": 4259
+ },
+ {
+ "epoch": 59.16775884665793,
+ "grad_norm": 0.2605166733264923,
+ "learning_rate": 0.0006,
+ "loss": 3.5132668018341064,
+ "step": 4260
+ },
+ {
+ "epoch": 59.18173875054609,
+ "grad_norm": 0.24248117208480835,
+ "learning_rate": 0.0006,
+ "loss": 3.5492095947265625,
+ "step": 4261
+ },
+ {
+ "epoch": 59.19571865443425,
+ "grad_norm": 0.26359522342681885,
+ "learning_rate": 0.0006,
+ "loss": 3.521390438079834,
+ "step": 4262
+ },
+ {
+ "epoch": 59.20969855832241,
+ "grad_norm": 0.262248694896698,
+ "learning_rate": 0.0006,
+ "loss": 3.556307315826416,
+ "step": 4263
+ },
+ {
+ "epoch": 59.22367846221057,
+ "grad_norm": 0.23514866828918457,
+ "learning_rate": 0.0006,
+ "loss": 3.4989941120147705,
+ "step": 4264
+ },
+ {
+ "epoch": 59.237658366098735,
+ "grad_norm": 0.22758382558822632,
+ "learning_rate": 0.0006,
+ "loss": 3.5307068824768066,
+ "step": 4265
+ },
+ {
+ "epoch": 59.25163826998689,
+ "grad_norm": 0.24037839472293854,
+ "learning_rate": 0.0006,
+ "loss": 3.495872974395752,
+ "step": 4266
+ },
+ {
+ "epoch": 59.265618173875055,
+ "grad_norm": 0.22763589024543762,
+ "learning_rate": 0.0006,
+ "loss": 3.54052472114563,
+ "step": 4267
+ },
+ {
+ "epoch": 59.27959807776322,
+ "grad_norm": 0.22400406002998352,
+ "learning_rate": 0.0006,
+ "loss": 3.498671054840088,
+ "step": 4268
+ },
+ {
+ "epoch": 59.293577981651374,
+ "grad_norm": 0.2326328009366989,
+ "learning_rate": 0.0006,
+ "loss": 3.559108257293701,
+ "step": 4269
+ },
+ {
+ "epoch": 59.30755788553954,
+ "grad_norm": 0.24426043033599854,
+ "learning_rate": 0.0006,
+ "loss": 3.5245609283447266,
+ "step": 4270
+ },
+ {
+ "epoch": 59.3215377894277,
+ "grad_norm": 0.2159317582845688,
+ "learning_rate": 0.0006,
+ "loss": 3.5189900398254395,
+ "step": 4271
+ },
+ {
+ "epoch": 59.33551769331586,
+ "grad_norm": 0.19148702919483185,
+ "learning_rate": 0.0006,
+ "loss": 3.548433303833008,
+ "step": 4272
+ },
+ {
+ "epoch": 59.34949759720402,
+ "grad_norm": 0.23349083960056305,
+ "learning_rate": 0.0006,
+ "loss": 3.5475196838378906,
+ "step": 4273
+ },
+ {
+ "epoch": 59.36347750109218,
+ "grad_norm": 0.24024079740047455,
+ "learning_rate": 0.0006,
+ "loss": 3.5172529220581055,
+ "step": 4274
+ },
+ {
+ "epoch": 59.37745740498034,
+ "grad_norm": 0.23772001266479492,
+ "learning_rate": 0.0006,
+ "loss": 3.5428695678710938,
+ "step": 4275
+ },
+ {
+ "epoch": 59.391437308868504,
+ "grad_norm": 0.21134959161281586,
+ "learning_rate": 0.0006,
+ "loss": 3.523099422454834,
+ "step": 4276
+ },
+ {
+ "epoch": 59.40541721275666,
+ "grad_norm": 0.20760025084018707,
+ "learning_rate": 0.0006,
+ "loss": 3.55435848236084,
+ "step": 4277
+ },
+ {
+ "epoch": 59.419397116644824,
+ "grad_norm": 0.21113243699073792,
+ "learning_rate": 0.0006,
+ "loss": 3.5355324745178223,
+ "step": 4278
+ },
+ {
+ "epoch": 59.43337702053299,
+ "grad_norm": 0.21604566276073456,
+ "learning_rate": 0.0006,
+ "loss": 3.5517663955688477,
+ "step": 4279
+ },
+ {
+ "epoch": 59.44735692442114,
+ "grad_norm": 0.19646669924259186,
+ "learning_rate": 0.0006,
+ "loss": 3.538435935974121,
+ "step": 4280
+ },
+ {
+ "epoch": 59.46133682830931,
+ "grad_norm": 0.20394550263881683,
+ "learning_rate": 0.0006,
+ "loss": 3.528444290161133,
+ "step": 4281
+ },
+ {
+ "epoch": 59.47531673219746,
+ "grad_norm": 0.24543620645999908,
+ "learning_rate": 0.0006,
+ "loss": 3.5355372428894043,
+ "step": 4282
+ },
+ {
+ "epoch": 59.489296636085626,
+ "grad_norm": 0.24048425257205963,
+ "learning_rate": 0.0006,
+ "loss": 3.521336078643799,
+ "step": 4283
+ },
+ {
+ "epoch": 59.50327653997379,
+ "grad_norm": 0.23630213737487793,
+ "learning_rate": 0.0006,
+ "loss": 3.556244373321533,
+ "step": 4284
+ },
+ {
+ "epoch": 59.517256443861946,
+ "grad_norm": 0.2791444659233093,
+ "learning_rate": 0.0006,
+ "loss": 3.5927138328552246,
+ "step": 4285
+ },
+ {
+ "epoch": 59.53123634775011,
+ "grad_norm": 0.30325770378112793,
+ "learning_rate": 0.0006,
+ "loss": 3.559296131134033,
+ "step": 4286
+ },
+ {
+ "epoch": 59.54521625163827,
+ "grad_norm": 0.2708670496940613,
+ "learning_rate": 0.0006,
+ "loss": 3.531050205230713,
+ "step": 4287
+ },
+ {
+ "epoch": 59.55919615552643,
+ "grad_norm": 0.23795515298843384,
+ "learning_rate": 0.0006,
+ "loss": 3.5365982055664062,
+ "step": 4288
+ },
+ {
+ "epoch": 59.57317605941459,
+ "grad_norm": 0.20949627459049225,
+ "learning_rate": 0.0006,
+ "loss": 3.5591273307800293,
+ "step": 4289
+ },
+ {
+ "epoch": 59.58715596330275,
+ "grad_norm": 0.21885769069194794,
+ "learning_rate": 0.0006,
+ "loss": 3.4965288639068604,
+ "step": 4290
+ },
+ {
+ "epoch": 59.60113586719091,
+ "grad_norm": 0.22365590929985046,
+ "learning_rate": 0.0006,
+ "loss": 3.538118362426758,
+ "step": 4291
+ },
+ {
+ "epoch": 59.615115771079076,
+ "grad_norm": 0.23178881406784058,
+ "learning_rate": 0.0006,
+ "loss": 3.515933036804199,
+ "step": 4292
+ },
+ {
+ "epoch": 59.62909567496723,
+ "grad_norm": 0.21539060771465302,
+ "learning_rate": 0.0006,
+ "loss": 3.54185152053833,
+ "step": 4293
+ },
+ {
+ "epoch": 59.643075578855395,
+ "grad_norm": 0.22033682465553284,
+ "learning_rate": 0.0006,
+ "loss": 3.526728630065918,
+ "step": 4294
+ },
+ {
+ "epoch": 59.65705548274356,
+ "grad_norm": 0.23003938794136047,
+ "learning_rate": 0.0006,
+ "loss": 3.555710792541504,
+ "step": 4295
+ },
+ {
+ "epoch": 59.671035386631715,
+ "grad_norm": 0.22887346148490906,
+ "learning_rate": 0.0006,
+ "loss": 3.580883502960205,
+ "step": 4296
+ },
+ {
+ "epoch": 59.68501529051988,
+ "grad_norm": 0.2147892713546753,
+ "learning_rate": 0.0006,
+ "loss": 3.5318822860717773,
+ "step": 4297
+ },
+ {
+ "epoch": 59.69899519440804,
+ "grad_norm": 0.22063598036766052,
+ "learning_rate": 0.0006,
+ "loss": 3.5179357528686523,
+ "step": 4298
+ },
+ {
+ "epoch": 59.7129750982962,
+ "grad_norm": 0.22569656372070312,
+ "learning_rate": 0.0006,
+ "loss": 3.583181381225586,
+ "step": 4299
+ },
+ {
+ "epoch": 59.72695500218436,
+ "grad_norm": 0.2252701222896576,
+ "learning_rate": 0.0006,
+ "loss": 3.5780375003814697,
+ "step": 4300
+ },
+ {
+ "epoch": 59.74093490607252,
+ "grad_norm": 0.2288130521774292,
+ "learning_rate": 0.0006,
+ "loss": 3.570399284362793,
+ "step": 4301
+ },
+ {
+ "epoch": 59.75491480996068,
+ "grad_norm": 0.21879231929779053,
+ "learning_rate": 0.0006,
+ "loss": 3.540292739868164,
+ "step": 4302
+ },
+ {
+ "epoch": 59.768894713848844,
+ "grad_norm": 0.20675964653491974,
+ "learning_rate": 0.0006,
+ "loss": 3.532649040222168,
+ "step": 4303
+ },
+ {
+ "epoch": 59.782874617737,
+ "grad_norm": 0.21810708940029144,
+ "learning_rate": 0.0006,
+ "loss": 3.5156657695770264,
+ "step": 4304
+ },
+ {
+ "epoch": 59.796854521625164,
+ "grad_norm": 0.22701260447502136,
+ "learning_rate": 0.0006,
+ "loss": 3.5535266399383545,
+ "step": 4305
+ },
+ {
+ "epoch": 59.81083442551333,
+ "grad_norm": 0.23433080315589905,
+ "learning_rate": 0.0006,
+ "loss": 3.5280754566192627,
+ "step": 4306
+ },
+ {
+ "epoch": 59.824814329401484,
+ "grad_norm": 0.2254341095685959,
+ "learning_rate": 0.0006,
+ "loss": 3.534045696258545,
+ "step": 4307
+ },
+ {
+ "epoch": 59.83879423328965,
+ "grad_norm": 0.21756123006343842,
+ "learning_rate": 0.0006,
+ "loss": 3.5621533393859863,
+ "step": 4308
+ },
+ {
+ "epoch": 59.8527741371778,
+ "grad_norm": 0.19731850922107697,
+ "learning_rate": 0.0006,
+ "loss": 3.536633253097534,
+ "step": 4309
+ },
+ {
+ "epoch": 59.86675404106597,
+ "grad_norm": 0.2260110229253769,
+ "learning_rate": 0.0006,
+ "loss": 3.5721538066864014,
+ "step": 4310
+ },
+ {
+ "epoch": 59.88073394495413,
+ "grad_norm": 0.22728438675403595,
+ "learning_rate": 0.0006,
+ "loss": 3.5576961040496826,
+ "step": 4311
+ },
+ {
+ "epoch": 59.89471384884229,
+ "grad_norm": 0.20675411820411682,
+ "learning_rate": 0.0006,
+ "loss": 3.5070700645446777,
+ "step": 4312
+ },
+ {
+ "epoch": 59.90869375273045,
+ "grad_norm": 0.22258996963500977,
+ "learning_rate": 0.0006,
+ "loss": 3.564357280731201,
+ "step": 4313
+ },
+ {
+ "epoch": 59.92267365661861,
+ "grad_norm": 0.2429998815059662,
+ "learning_rate": 0.0006,
+ "loss": 3.519744873046875,
+ "step": 4314
+ },
+ {
+ "epoch": 59.93665356050677,
+ "grad_norm": 0.2394791841506958,
+ "learning_rate": 0.0006,
+ "loss": 3.533292055130005,
+ "step": 4315
+ },
+ {
+ "epoch": 59.95063346439493,
+ "grad_norm": 0.20659418404102325,
+ "learning_rate": 0.0006,
+ "loss": 3.5475940704345703,
+ "step": 4316
+ },
+ {
+ "epoch": 59.964613368283096,
+ "grad_norm": 0.19679132103919983,
+ "learning_rate": 0.0006,
+ "loss": 3.5794930458068848,
+ "step": 4317
+ },
+ {
+ "epoch": 59.97859327217125,
+ "grad_norm": 0.2133002132177353,
+ "learning_rate": 0.0006,
+ "loss": 3.5506505966186523,
+ "step": 4318
+ },
+ {
+ "epoch": 59.992573176059416,
+ "grad_norm": 0.22383661568164825,
+ "learning_rate": 0.0006,
+ "loss": 3.547708511352539,
+ "step": 4319
+ },
+ {
+ "epoch": 60.0,
+ "grad_norm": 0.25744178891181946,
+ "learning_rate": 0.0006,
+ "loss": 3.5519227981567383,
+ "step": 4320
+ },
+ {
+ "epoch": 60.0,
+ "eval_loss": 3.9816012382507324,
+ "eval_runtime": 46.3931,
+ "eval_samples_per_second": 52.637,
+ "eval_steps_per_second": 3.298,
+ "step": 4320
+ },
+ {
+ "epoch": 60.01397990388816,
+ "grad_norm": 0.2202005684375763,
+ "learning_rate": 0.0006,
+ "loss": 3.51010799407959,
+ "step": 4321
+ },
+ {
+ "epoch": 60.02795980777632,
+ "grad_norm": 0.24285688996315002,
+ "learning_rate": 0.0006,
+ "loss": 3.519137382507324,
+ "step": 4322
+ },
+ {
+ "epoch": 60.04193971166448,
+ "grad_norm": 0.2700578570365906,
+ "learning_rate": 0.0006,
+ "loss": 3.523392915725708,
+ "step": 4323
+ },
+ {
+ "epoch": 60.05591961555265,
+ "grad_norm": 0.30088669061660767,
+ "learning_rate": 0.0006,
+ "loss": 3.48724627494812,
+ "step": 4324
+ },
+ {
+ "epoch": 60.0698995194408,
+ "grad_norm": 0.30426669120788574,
+ "learning_rate": 0.0006,
+ "loss": 3.479025363922119,
+ "step": 4325
+ },
+ {
+ "epoch": 60.083879423328966,
+ "grad_norm": 0.2718220055103302,
+ "learning_rate": 0.0006,
+ "loss": 3.4923276901245117,
+ "step": 4326
+ },
+ {
+ "epoch": 60.09785932721712,
+ "grad_norm": 0.23625287413597107,
+ "learning_rate": 0.0006,
+ "loss": 3.5152812004089355,
+ "step": 4327
+ },
+ {
+ "epoch": 60.111839231105286,
+ "grad_norm": 0.23336869478225708,
+ "learning_rate": 0.0006,
+ "loss": 3.512453079223633,
+ "step": 4328
+ },
+ {
+ "epoch": 60.12581913499345,
+ "grad_norm": 0.24780215322971344,
+ "learning_rate": 0.0006,
+ "loss": 3.505812168121338,
+ "step": 4329
+ },
+ {
+ "epoch": 60.139799038881605,
+ "grad_norm": 0.25600194931030273,
+ "learning_rate": 0.0006,
+ "loss": 3.5281314849853516,
+ "step": 4330
+ },
+ {
+ "epoch": 60.15377894276977,
+ "grad_norm": 0.2458304911851883,
+ "learning_rate": 0.0006,
+ "loss": 3.4932949542999268,
+ "step": 4331
+ },
+ {
+ "epoch": 60.16775884665793,
+ "grad_norm": 0.2246888130903244,
+ "learning_rate": 0.0006,
+ "loss": 3.5295495986938477,
+ "step": 4332
+ },
+ {
+ "epoch": 60.18173875054609,
+ "grad_norm": 0.23762951791286469,
+ "learning_rate": 0.0006,
+ "loss": 3.4938201904296875,
+ "step": 4333
+ },
+ {
+ "epoch": 60.19571865443425,
+ "grad_norm": 0.24483945965766907,
+ "learning_rate": 0.0006,
+ "loss": 3.544774055480957,
+ "step": 4334
+ },
+ {
+ "epoch": 60.20969855832241,
+ "grad_norm": 0.24154368042945862,
+ "learning_rate": 0.0006,
+ "loss": 3.5352816581726074,
+ "step": 4335
+ },
+ {
+ "epoch": 60.22367846221057,
+ "grad_norm": 0.22929225862026215,
+ "learning_rate": 0.0006,
+ "loss": 3.5546953678131104,
+ "step": 4336
+ },
+ {
+ "epoch": 60.237658366098735,
+ "grad_norm": 0.21391373872756958,
+ "learning_rate": 0.0006,
+ "loss": 3.537647247314453,
+ "step": 4337
+ },
+ {
+ "epoch": 60.25163826998689,
+ "grad_norm": 0.20410357415676117,
+ "learning_rate": 0.0006,
+ "loss": 3.535831928253174,
+ "step": 4338
+ },
+ {
+ "epoch": 60.265618173875055,
+ "grad_norm": 0.2070329487323761,
+ "learning_rate": 0.0006,
+ "loss": 3.5234389305114746,
+ "step": 4339
+ },
+ {
+ "epoch": 60.27959807776322,
+ "grad_norm": 0.20540225505828857,
+ "learning_rate": 0.0006,
+ "loss": 3.557478427886963,
+ "step": 4340
+ },
+ {
+ "epoch": 60.293577981651374,
+ "grad_norm": 0.2124919891357422,
+ "learning_rate": 0.0006,
+ "loss": 3.532726764678955,
+ "step": 4341
+ },
+ {
+ "epoch": 60.30755788553954,
+ "grad_norm": 0.22207678854465485,
+ "learning_rate": 0.0006,
+ "loss": 3.5314202308654785,
+ "step": 4342
+ },
+ {
+ "epoch": 60.3215377894277,
+ "grad_norm": 0.2137281745672226,
+ "learning_rate": 0.0006,
+ "loss": 3.5491206645965576,
+ "step": 4343
+ },
+ {
+ "epoch": 60.33551769331586,
+ "grad_norm": 0.20728953182697296,
+ "learning_rate": 0.0006,
+ "loss": 3.5111031532287598,
+ "step": 4344
+ },
+ {
+ "epoch": 60.34949759720402,
+ "grad_norm": 0.22547020018100739,
+ "learning_rate": 0.0006,
+ "loss": 3.5311098098754883,
+ "step": 4345
+ },
+ {
+ "epoch": 60.36347750109218,
+ "grad_norm": 0.23352888226509094,
+ "learning_rate": 0.0006,
+ "loss": 3.5200939178466797,
+ "step": 4346
+ },
+ {
+ "epoch": 60.37745740498034,
+ "grad_norm": 0.21329060196876526,
+ "learning_rate": 0.0006,
+ "loss": 3.508589744567871,
+ "step": 4347
+ },
+ {
+ "epoch": 60.391437308868504,
+ "grad_norm": 0.1904045194387436,
+ "learning_rate": 0.0006,
+ "loss": 3.4850475788116455,
+ "step": 4348
+ },
+ {
+ "epoch": 60.40541721275666,
+ "grad_norm": 0.20586109161376953,
+ "learning_rate": 0.0006,
+ "loss": 3.5503551959991455,
+ "step": 4349
+ },
+ {
+ "epoch": 60.419397116644824,
+ "grad_norm": 0.21311818063259125,
+ "learning_rate": 0.0006,
+ "loss": 3.5243923664093018,
+ "step": 4350
+ },
+ {
+ "epoch": 60.43337702053299,
+ "grad_norm": 0.21479184925556183,
+ "learning_rate": 0.0006,
+ "loss": 3.553647041320801,
+ "step": 4351
+ },
+ {
+ "epoch": 60.44735692442114,
+ "grad_norm": 0.19994449615478516,
+ "learning_rate": 0.0006,
+ "loss": 3.5558884143829346,
+ "step": 4352
+ },
+ {
+ "epoch": 60.46133682830931,
+ "grad_norm": 0.21455694735050201,
+ "learning_rate": 0.0006,
+ "loss": 3.5186543464660645,
+ "step": 4353
+ },
+ {
+ "epoch": 60.47531673219746,
+ "grad_norm": 0.21904151141643524,
+ "learning_rate": 0.0006,
+ "loss": 3.526367425918579,
+ "step": 4354
+ },
+ {
+ "epoch": 60.489296636085626,
+ "grad_norm": 0.1908986121416092,
+ "learning_rate": 0.0006,
+ "loss": 3.541072368621826,
+ "step": 4355
+ },
+ {
+ "epoch": 60.50327653997379,
+ "grad_norm": 0.20290519297122955,
+ "learning_rate": 0.0006,
+ "loss": 3.530333995819092,
+ "step": 4356
+ },
+ {
+ "epoch": 60.517256443861946,
+ "grad_norm": 0.2318771779537201,
+ "learning_rate": 0.0006,
+ "loss": 3.5260486602783203,
+ "step": 4357
+ },
+ {
+ "epoch": 60.53123634775011,
+ "grad_norm": 0.25559669733047485,
+ "learning_rate": 0.0006,
+ "loss": 3.56851863861084,
+ "step": 4358
+ },
+ {
+ "epoch": 60.54521625163827,
+ "grad_norm": 0.2529429793357849,
+ "learning_rate": 0.0006,
+ "loss": 3.5519490242004395,
+ "step": 4359
+ },
+ {
+ "epoch": 60.55919615552643,
+ "grad_norm": 0.22857248783111572,
+ "learning_rate": 0.0006,
+ "loss": 3.5556063652038574,
+ "step": 4360
+ },
+ {
+ "epoch": 60.57317605941459,
+ "grad_norm": 0.21628573536872864,
+ "learning_rate": 0.0006,
+ "loss": 3.5321288108825684,
+ "step": 4361
+ },
+ {
+ "epoch": 60.58715596330275,
+ "grad_norm": 0.19497910141944885,
+ "learning_rate": 0.0006,
+ "loss": 3.5480406284332275,
+ "step": 4362
+ },
+ {
+ "epoch": 60.60113586719091,
+ "grad_norm": 0.204348623752594,
+ "learning_rate": 0.0006,
+ "loss": 3.522806167602539,
+ "step": 4363
+ },
+ {
+ "epoch": 60.615115771079076,
+ "grad_norm": 0.23013663291931152,
+ "learning_rate": 0.0006,
+ "loss": 3.512876033782959,
+ "step": 4364
+ },
+ {
+ "epoch": 60.62909567496723,
+ "grad_norm": 0.22948725521564484,
+ "learning_rate": 0.0006,
+ "loss": 3.54276704788208,
+ "step": 4365
+ },
+ {
+ "epoch": 60.643075578855395,
+ "grad_norm": 0.20528492331504822,
+ "learning_rate": 0.0006,
+ "loss": 3.5592503547668457,
+ "step": 4366
+ },
+ {
+ "epoch": 60.65705548274356,
+ "grad_norm": 0.214582160115242,
+ "learning_rate": 0.0006,
+ "loss": 3.5168166160583496,
+ "step": 4367
+ },
+ {
+ "epoch": 60.671035386631715,
+ "grad_norm": 0.18893493711948395,
+ "learning_rate": 0.0006,
+ "loss": 3.51012921333313,
+ "step": 4368
+ },
+ {
+ "epoch": 60.68501529051988,
+ "grad_norm": 0.19301992654800415,
+ "learning_rate": 0.0006,
+ "loss": 3.5396199226379395,
+ "step": 4369
+ },
+ {
+ "epoch": 60.69899519440804,
+ "grad_norm": 0.22339801490306854,
+ "learning_rate": 0.0006,
+ "loss": 3.5463967323303223,
+ "step": 4370
+ },
+ {
+ "epoch": 60.7129750982962,
+ "grad_norm": 0.19028180837631226,
+ "learning_rate": 0.0006,
+ "loss": 3.534419536590576,
+ "step": 4371
+ },
+ {
+ "epoch": 60.72695500218436,
+ "grad_norm": 0.2078639566898346,
+ "learning_rate": 0.0006,
+ "loss": 3.5345680713653564,
+ "step": 4372
+ },
+ {
+ "epoch": 60.74093490607252,
+ "grad_norm": 0.24292199313640594,
+ "learning_rate": 0.0006,
+ "loss": 3.5291242599487305,
+ "step": 4373
+ },
+ {
+ "epoch": 60.75491480996068,
+ "grad_norm": 0.25118497014045715,
+ "learning_rate": 0.0006,
+ "loss": 3.5362191200256348,
+ "step": 4374
+ },
+ {
+ "epoch": 60.768894713848844,
+ "grad_norm": 0.24816395342350006,
+ "learning_rate": 0.0006,
+ "loss": 3.539637804031372,
+ "step": 4375
+ },
+ {
+ "epoch": 60.782874617737,
+ "grad_norm": 0.23654010891914368,
+ "learning_rate": 0.0006,
+ "loss": 3.482605457305908,
+ "step": 4376
+ },
+ {
+ "epoch": 60.796854521625164,
+ "grad_norm": 0.21593770384788513,
+ "learning_rate": 0.0006,
+ "loss": 3.550279140472412,
+ "step": 4377
+ },
+ {
+ "epoch": 60.81083442551333,
+ "grad_norm": 0.21346014738082886,
+ "learning_rate": 0.0006,
+ "loss": 3.541086196899414,
+ "step": 4378
+ },
+ {
+ "epoch": 60.824814329401484,
+ "grad_norm": 0.2284841537475586,
+ "learning_rate": 0.0006,
+ "loss": 3.544254779815674,
+ "step": 4379
+ },
+ {
+ "epoch": 60.83879423328965,
+ "grad_norm": 0.23353151977062225,
+ "learning_rate": 0.0006,
+ "loss": 3.5606589317321777,
+ "step": 4380
+ },
+ {
+ "epoch": 60.8527741371778,
+ "grad_norm": 0.2201574146747589,
+ "learning_rate": 0.0006,
+ "loss": 3.524120807647705,
+ "step": 4381
+ },
+ {
+ "epoch": 60.86675404106597,
+ "grad_norm": 0.2277211993932724,
+ "learning_rate": 0.0006,
+ "loss": 3.553539276123047,
+ "step": 4382
+ },
+ {
+ "epoch": 60.88073394495413,
+ "grad_norm": 0.2282724678516388,
+ "learning_rate": 0.0006,
+ "loss": 3.5247130393981934,
+ "step": 4383
+ },
+ {
+ "epoch": 60.89471384884229,
+ "grad_norm": 0.20859065651893616,
+ "learning_rate": 0.0006,
+ "loss": 3.5654680728912354,
+ "step": 4384
+ },
+ {
+ "epoch": 60.90869375273045,
+ "grad_norm": 0.1995432823896408,
+ "learning_rate": 0.0006,
+ "loss": 3.5091423988342285,
+ "step": 4385
+ },
+ {
+ "epoch": 60.92267365661861,
+ "grad_norm": 0.19769565761089325,
+ "learning_rate": 0.0006,
+ "loss": 3.5375986099243164,
+ "step": 4386
+ },
+ {
+ "epoch": 60.93665356050677,
+ "grad_norm": 0.21246176958084106,
+ "learning_rate": 0.0006,
+ "loss": 3.570774793624878,
+ "step": 4387
+ },
+ {
+ "epoch": 60.95063346439493,
+ "grad_norm": 0.2212657630443573,
+ "learning_rate": 0.0006,
+ "loss": 3.5192928314208984,
+ "step": 4388
+ },
+ {
+ "epoch": 60.964613368283096,
+ "grad_norm": 0.2258632481098175,
+ "learning_rate": 0.0006,
+ "loss": 3.5356457233428955,
+ "step": 4389
+ },
+ {
+ "epoch": 60.97859327217125,
+ "grad_norm": 0.1998971700668335,
+ "learning_rate": 0.0006,
+ "loss": 3.52758526802063,
+ "step": 4390
+ },
+ {
+ "epoch": 60.992573176059416,
+ "grad_norm": 0.1932399868965149,
+ "learning_rate": 0.0006,
+ "loss": 3.562718391418457,
+ "step": 4391
+ },
+ {
+ "epoch": 61.0,
+ "grad_norm": 0.24292197823524475,
+ "learning_rate": 0.0006,
+ "loss": 3.550189971923828,
+ "step": 4392
+ },
+ {
+ "epoch": 61.0,
+ "eval_loss": 3.974423408508301,
+ "eval_runtime": 45.8822,
+ "eval_samples_per_second": 53.223,
+ "eval_steps_per_second": 3.335,
+ "step": 4392
+ },
+ {
+ "epoch": 61.01397990388816,
+ "grad_norm": 0.2216092199087143,
+ "learning_rate": 0.0006,
+ "loss": 3.51747989654541,
+ "step": 4393
+ },
+ {
+ "epoch": 61.02795980777632,
+ "grad_norm": 0.23488417267799377,
+ "learning_rate": 0.0006,
+ "loss": 3.529064178466797,
+ "step": 4394
+ },
+ {
+ "epoch": 61.04193971166448,
+ "grad_norm": 0.2805800437927246,
+ "learning_rate": 0.0006,
+ "loss": 3.4868035316467285,
+ "step": 4395
+ },
+ {
+ "epoch": 61.05591961555265,
+ "grad_norm": 0.32623469829559326,
+ "learning_rate": 0.0006,
+ "loss": 3.5209708213806152,
+ "step": 4396
+ },
+ {
+ "epoch": 61.0698995194408,
+ "grad_norm": 0.2645402252674103,
+ "learning_rate": 0.0006,
+ "loss": 3.524512767791748,
+ "step": 4397
+ },
+ {
+ "epoch": 61.083879423328966,
+ "grad_norm": 0.21118173003196716,
+ "learning_rate": 0.0006,
+ "loss": 3.5167856216430664,
+ "step": 4398
+ },
+ {
+ "epoch": 61.09785932721712,
+ "grad_norm": 0.28649622201919556,
+ "learning_rate": 0.0006,
+ "loss": 3.5122973918914795,
+ "step": 4399
+ },
+ {
+ "epoch": 61.111839231105286,
+ "grad_norm": 0.39095914363861084,
+ "learning_rate": 0.0006,
+ "loss": 3.481421947479248,
+ "step": 4400
+ },
+ {
+ "epoch": 61.12581913499345,
+ "grad_norm": 0.4013976454734802,
+ "learning_rate": 0.0006,
+ "loss": 3.4859061241149902,
+ "step": 4401
+ },
+ {
+ "epoch": 61.139799038881605,
+ "grad_norm": 0.30067047476768494,
+ "learning_rate": 0.0006,
+ "loss": 3.524209976196289,
+ "step": 4402
+ },
+ {
+ "epoch": 61.15377894276977,
+ "grad_norm": 0.2086855173110962,
+ "learning_rate": 0.0006,
+ "loss": 3.4974379539489746,
+ "step": 4403
+ },
+ {
+ "epoch": 61.16775884665793,
+ "grad_norm": 0.25443482398986816,
+ "learning_rate": 0.0006,
+ "loss": 3.517038345336914,
+ "step": 4404
+ },
+ {
+ "epoch": 61.18173875054609,
+ "grad_norm": 0.27545589208602905,
+ "learning_rate": 0.0006,
+ "loss": 3.5075795650482178,
+ "step": 4405
+ },
+ {
+ "epoch": 61.19571865443425,
+ "grad_norm": 0.269279420375824,
+ "learning_rate": 0.0006,
+ "loss": 3.512235641479492,
+ "step": 4406
+ },
+ {
+ "epoch": 61.20969855832241,
+ "grad_norm": 0.24606923758983612,
+ "learning_rate": 0.0006,
+ "loss": 3.5362367630004883,
+ "step": 4407
+ },
+ {
+ "epoch": 61.22367846221057,
+ "grad_norm": 0.23358067870140076,
+ "learning_rate": 0.0006,
+ "loss": 3.5256686210632324,
+ "step": 4408
+ },
+ {
+ "epoch": 61.237658366098735,
+ "grad_norm": 0.2528085708618164,
+ "learning_rate": 0.0006,
+ "loss": 3.504239559173584,
+ "step": 4409
+ },
+ {
+ "epoch": 61.25163826998689,
+ "grad_norm": 0.28145745396614075,
+ "learning_rate": 0.0006,
+ "loss": 3.4862139225006104,
+ "step": 4410
+ },
+ {
+ "epoch": 61.265618173875055,
+ "grad_norm": 0.26570039987564087,
+ "learning_rate": 0.0006,
+ "loss": 3.5138425827026367,
+ "step": 4411
+ },
+ {
+ "epoch": 61.27959807776322,
+ "grad_norm": 0.2391415685415268,
+ "learning_rate": 0.0006,
+ "loss": 3.537569999694824,
+ "step": 4412
+ },
+ {
+ "epoch": 61.293577981651374,
+ "grad_norm": 0.22194577753543854,
+ "learning_rate": 0.0006,
+ "loss": 3.5367543697357178,
+ "step": 4413
+ },
+ {
+ "epoch": 61.30755788553954,
+ "grad_norm": 0.2388865202665329,
+ "learning_rate": 0.0006,
+ "loss": 3.533341407775879,
+ "step": 4414
+ },
+ {
+ "epoch": 61.3215377894277,
+ "grad_norm": 0.2666625380516052,
+ "learning_rate": 0.0006,
+ "loss": 3.501162528991699,
+ "step": 4415
+ },
+ {
+ "epoch": 61.33551769331586,
+ "grad_norm": 0.25569409132003784,
+ "learning_rate": 0.0006,
+ "loss": 3.529283046722412,
+ "step": 4416
+ },
+ {
+ "epoch": 61.34949759720402,
+ "grad_norm": 0.24683351814746857,
+ "learning_rate": 0.0006,
+ "loss": 3.508152484893799,
+ "step": 4417
+ },
+ {
+ "epoch": 61.36347750109218,
+ "grad_norm": 0.22290605306625366,
+ "learning_rate": 0.0006,
+ "loss": 3.5309581756591797,
+ "step": 4418
+ },
+ {
+ "epoch": 61.37745740498034,
+ "grad_norm": 0.2174215167760849,
+ "learning_rate": 0.0006,
+ "loss": 3.508796453475952,
+ "step": 4419
+ },
+ {
+ "epoch": 61.391437308868504,
+ "grad_norm": 0.23006199300289154,
+ "learning_rate": 0.0006,
+ "loss": 3.5497584342956543,
+ "step": 4420
+ },
+ {
+ "epoch": 61.40541721275666,
+ "grad_norm": 0.2311345487833023,
+ "learning_rate": 0.0006,
+ "loss": 3.5524582862854004,
+ "step": 4421
+ },
+ {
+ "epoch": 61.419397116644824,
+ "grad_norm": 0.2296203076839447,
+ "learning_rate": 0.0006,
+ "loss": 3.5146689414978027,
+ "step": 4422
+ },
+ {
+ "epoch": 61.43337702053299,
+ "grad_norm": 0.24848754703998566,
+ "learning_rate": 0.0006,
+ "loss": 3.489335060119629,
+ "step": 4423
+ },
+ {
+ "epoch": 61.44735692442114,
+ "grad_norm": 0.23717737197875977,
+ "learning_rate": 0.0006,
+ "loss": 3.4982404708862305,
+ "step": 4424
+ },
+ {
+ "epoch": 61.46133682830931,
+ "grad_norm": 0.21826806664466858,
+ "learning_rate": 0.0006,
+ "loss": 3.5134825706481934,
+ "step": 4425
+ },
+ {
+ "epoch": 61.47531673219746,
+ "grad_norm": 0.22878992557525635,
+ "learning_rate": 0.0006,
+ "loss": 3.512604236602783,
+ "step": 4426
+ },
+ {
+ "epoch": 61.489296636085626,
+ "grad_norm": 0.21184465289115906,
+ "learning_rate": 0.0006,
+ "loss": 3.5314245223999023,
+ "step": 4427
+ },
+ {
+ "epoch": 61.50327653997379,
+ "grad_norm": 0.2129429429769516,
+ "learning_rate": 0.0006,
+ "loss": 3.51242733001709,
+ "step": 4428
+ },
+ {
+ "epoch": 61.517256443861946,
+ "grad_norm": 0.21566109359264374,
+ "learning_rate": 0.0006,
+ "loss": 3.5287160873413086,
+ "step": 4429
+ },
+ {
+ "epoch": 61.53123634775011,
+ "grad_norm": 0.2010934203863144,
+ "learning_rate": 0.0006,
+ "loss": 3.5250844955444336,
+ "step": 4430
+ },
+ {
+ "epoch": 61.54521625163827,
+ "grad_norm": 0.1979563683271408,
+ "learning_rate": 0.0006,
+ "loss": 3.553415536880493,
+ "step": 4431
+ },
+ {
+ "epoch": 61.55919615552643,
+ "grad_norm": 0.19513480365276337,
+ "learning_rate": 0.0006,
+ "loss": 3.500551223754883,
+ "step": 4432
+ },
+ {
+ "epoch": 61.57317605941459,
+ "grad_norm": 0.19601108133792877,
+ "learning_rate": 0.0006,
+ "loss": 3.532161235809326,
+ "step": 4433
+ },
+ {
+ "epoch": 61.58715596330275,
+ "grad_norm": 0.2054651528596878,
+ "learning_rate": 0.0006,
+ "loss": 3.5360732078552246,
+ "step": 4434
+ },
+ {
+ "epoch": 61.60113586719091,
+ "grad_norm": 0.2096887230873108,
+ "learning_rate": 0.0006,
+ "loss": 3.522620916366577,
+ "step": 4435
+ },
+ {
+ "epoch": 61.615115771079076,
+ "grad_norm": 0.19664394855499268,
+ "learning_rate": 0.0006,
+ "loss": 3.5298569202423096,
+ "step": 4436
+ },
+ {
+ "epoch": 61.62909567496723,
+ "grad_norm": 0.20641925930976868,
+ "learning_rate": 0.0006,
+ "loss": 3.521233320236206,
+ "step": 4437
+ },
+ {
+ "epoch": 61.643075578855395,
+ "grad_norm": 0.2013241946697235,
+ "learning_rate": 0.0006,
+ "loss": 3.536212682723999,
+ "step": 4438
+ },
+ {
+ "epoch": 61.65705548274356,
+ "grad_norm": 0.19561146199703217,
+ "learning_rate": 0.0006,
+ "loss": 3.569584846496582,
+ "step": 4439
+ },
+ {
+ "epoch": 61.671035386631715,
+ "grad_norm": 0.2281758189201355,
+ "learning_rate": 0.0006,
+ "loss": 3.5208396911621094,
+ "step": 4440
+ },
+ {
+ "epoch": 61.68501529051988,
+ "grad_norm": 0.2387618124485016,
+ "learning_rate": 0.0006,
+ "loss": 3.5338330268859863,
+ "step": 4441
+ },
+ {
+ "epoch": 61.69899519440804,
+ "grad_norm": 0.23753441870212555,
+ "learning_rate": 0.0006,
+ "loss": 3.5454416275024414,
+ "step": 4442
+ },
+ {
+ "epoch": 61.7129750982962,
+ "grad_norm": 0.2477191686630249,
+ "learning_rate": 0.0006,
+ "loss": 3.5409836769104004,
+ "step": 4443
+ },
+ {
+ "epoch": 61.72695500218436,
+ "grad_norm": 0.25156062841415405,
+ "learning_rate": 0.0006,
+ "loss": 3.5135607719421387,
+ "step": 4444
+ },
+ {
+ "epoch": 61.74093490607252,
+ "grad_norm": 0.21422065794467926,
+ "learning_rate": 0.0006,
+ "loss": 3.5514771938323975,
+ "step": 4445
+ },
+ {
+ "epoch": 61.75491480996068,
+ "grad_norm": 0.2103811502456665,
+ "learning_rate": 0.0006,
+ "loss": 3.544037103652954,
+ "step": 4446
+ },
+ {
+ "epoch": 61.768894713848844,
+ "grad_norm": 0.21455387771129608,
+ "learning_rate": 0.0006,
+ "loss": 3.5526280403137207,
+ "step": 4447
+ },
+ {
+ "epoch": 61.782874617737,
+ "grad_norm": 0.22101432085037231,
+ "learning_rate": 0.0006,
+ "loss": 3.510197639465332,
+ "step": 4448
+ },
+ {
+ "epoch": 61.796854521625164,
+ "grad_norm": 0.2093520164489746,
+ "learning_rate": 0.0006,
+ "loss": 3.52504301071167,
+ "step": 4449
+ },
+ {
+ "epoch": 61.81083442551333,
+ "grad_norm": 0.2224605530500412,
+ "learning_rate": 0.0006,
+ "loss": 3.5590806007385254,
+ "step": 4450
+ },
+ {
+ "epoch": 61.824814329401484,
+ "grad_norm": 0.22242501378059387,
+ "learning_rate": 0.0006,
+ "loss": 3.5409610271453857,
+ "step": 4451
+ },
+ {
+ "epoch": 61.83879423328965,
+ "grad_norm": 0.22488343715667725,
+ "learning_rate": 0.0006,
+ "loss": 3.537534236907959,
+ "step": 4452
+ },
+ {
+ "epoch": 61.8527741371778,
+ "grad_norm": 0.23510107398033142,
+ "learning_rate": 0.0006,
+ "loss": 3.5561342239379883,
+ "step": 4453
+ },
+ {
+ "epoch": 61.86675404106597,
+ "grad_norm": 0.237285315990448,
+ "learning_rate": 0.0006,
+ "loss": 3.539592742919922,
+ "step": 4454
+ },
+ {
+ "epoch": 61.88073394495413,
+ "grad_norm": 0.21573765575885773,
+ "learning_rate": 0.0006,
+ "loss": 3.552250385284424,
+ "step": 4455
+ },
+ {
+ "epoch": 61.89471384884229,
+ "grad_norm": 0.20348075032234192,
+ "learning_rate": 0.0006,
+ "loss": 3.5406012535095215,
+ "step": 4456
+ },
+ {
+ "epoch": 61.90869375273045,
+ "grad_norm": 0.21306075155735016,
+ "learning_rate": 0.0006,
+ "loss": 3.504248857498169,
+ "step": 4457
+ },
+ {
+ "epoch": 61.92267365661861,
+ "grad_norm": 0.2184341996908188,
+ "learning_rate": 0.0006,
+ "loss": 3.5441558361053467,
+ "step": 4458
+ },
+ {
+ "epoch": 61.93665356050677,
+ "grad_norm": 0.20888687670230865,
+ "learning_rate": 0.0006,
+ "loss": 3.517657518386841,
+ "step": 4459
+ },
+ {
+ "epoch": 61.95063346439493,
+ "grad_norm": 0.2066143900156021,
+ "learning_rate": 0.0006,
+ "loss": 3.525796890258789,
+ "step": 4460
+ },
+ {
+ "epoch": 61.964613368283096,
+ "grad_norm": 0.1906299591064453,
+ "learning_rate": 0.0006,
+ "loss": 3.550924777984619,
+ "step": 4461
+ },
+ {
+ "epoch": 61.97859327217125,
+ "grad_norm": 0.1834334284067154,
+ "learning_rate": 0.0006,
+ "loss": 3.5818099975585938,
+ "step": 4462
+ },
+ {
+ "epoch": 61.992573176059416,
+ "grad_norm": 0.22725825011730194,
+ "learning_rate": 0.0006,
+ "loss": 3.5573811531066895,
+ "step": 4463
+ },
+ {
+ "epoch": 62.0,
+ "grad_norm": 0.29936420917510986,
+ "learning_rate": 0.0006,
+ "loss": 3.557694435119629,
+ "step": 4464
+ },
+ {
+ "epoch": 62.0,
+ "eval_loss": 3.985543966293335,
+ "eval_runtime": 46.6388,
+ "eval_samples_per_second": 52.36,
+ "eval_steps_per_second": 3.281,
+ "step": 4464
+ },
+ {
+ "epoch": 62.01397990388816,
+ "grad_norm": 0.30896103382110596,
+ "learning_rate": 0.0006,
+ "loss": 3.4991438388824463,
+ "step": 4465
+ },
+ {
+ "epoch": 62.02795980777632,
+ "grad_norm": 0.27383437752723694,
+ "learning_rate": 0.0006,
+ "loss": 3.4710259437561035,
+ "step": 4466
+ },
+ {
+ "epoch": 62.04193971166448,
+ "grad_norm": 0.24412496387958527,
+ "learning_rate": 0.0006,
+ "loss": 3.4983878135681152,
+ "step": 4467
+ },
+ {
+ "epoch": 62.05591961555265,
+ "grad_norm": 0.2649880051612854,
+ "learning_rate": 0.0006,
+ "loss": 3.5481886863708496,
+ "step": 4468
+ },
+ {
+ "epoch": 62.0698995194408,
+ "grad_norm": 0.2625769078731537,
+ "learning_rate": 0.0006,
+ "loss": 3.5114197731018066,
+ "step": 4469
+ },
+ {
+ "epoch": 62.083879423328966,
+ "grad_norm": 0.234181210398674,
+ "learning_rate": 0.0006,
+ "loss": 3.504152536392212,
+ "step": 4470
+ },
+ {
+ "epoch": 62.09785932721712,
+ "grad_norm": 0.21403342485427856,
+ "learning_rate": 0.0006,
+ "loss": 3.50738525390625,
+ "step": 4471
+ },
+ {
+ "epoch": 62.111839231105286,
+ "grad_norm": 0.22780060768127441,
+ "learning_rate": 0.0006,
+ "loss": 3.518354892730713,
+ "step": 4472
+ },
+ {
+ "epoch": 62.12581913499345,
+ "grad_norm": 0.23725424706935883,
+ "learning_rate": 0.0006,
+ "loss": 3.5227513313293457,
+ "step": 4473
+ },
+ {
+ "epoch": 62.139799038881605,
+ "grad_norm": 0.23643283545970917,
+ "learning_rate": 0.0006,
+ "loss": 3.504271984100342,
+ "step": 4474
+ },
+ {
+ "epoch": 62.15377894276977,
+ "grad_norm": 0.22513480484485626,
+ "learning_rate": 0.0006,
+ "loss": 3.5232059955596924,
+ "step": 4475
+ },
+ {
+ "epoch": 62.16775884665793,
+ "grad_norm": 0.23375700414180756,
+ "learning_rate": 0.0006,
+ "loss": 3.506519317626953,
+ "step": 4476
+ },
+ {
+ "epoch": 62.18173875054609,
+ "grad_norm": 0.24691303074359894,
+ "learning_rate": 0.0006,
+ "loss": 3.5212974548339844,
+ "step": 4477
+ },
+ {
+ "epoch": 62.19571865443425,
+ "grad_norm": 0.23466123640537262,
+ "learning_rate": 0.0006,
+ "loss": 3.5295071601867676,
+ "step": 4478
+ },
+ {
+ "epoch": 62.20969855832241,
+ "grad_norm": 0.2432340532541275,
+ "learning_rate": 0.0006,
+ "loss": 3.487830638885498,
+ "step": 4479
+ },
+ {
+ "epoch": 62.22367846221057,
+ "grad_norm": 0.24575389921665192,
+ "learning_rate": 0.0006,
+ "loss": 3.5329103469848633,
+ "step": 4480
+ },
+ {
+ "epoch": 62.237658366098735,
+ "grad_norm": 0.2441941201686859,
+ "learning_rate": 0.0006,
+ "loss": 3.5230906009674072,
+ "step": 4481
+ },
+ {
+ "epoch": 62.25163826998689,
+ "grad_norm": 0.2278154343366623,
+ "learning_rate": 0.0006,
+ "loss": 3.4919002056121826,
+ "step": 4482
+ },
+ {
+ "epoch": 62.265618173875055,
+ "grad_norm": 0.23517796397209167,
+ "learning_rate": 0.0006,
+ "loss": 3.5137887001037598,
+ "step": 4483
+ },
+ {
+ "epoch": 62.27959807776322,
+ "grad_norm": 0.2533835470676422,
+ "learning_rate": 0.0006,
+ "loss": 3.526322841644287,
+ "step": 4484
+ },
+ {
+ "epoch": 62.293577981651374,
+ "grad_norm": 0.24535894393920898,
+ "learning_rate": 0.0006,
+ "loss": 3.5060930252075195,
+ "step": 4485
+ },
+ {
+ "epoch": 62.30755788553954,
+ "grad_norm": 0.23312991857528687,
+ "learning_rate": 0.0006,
+ "loss": 3.5015740394592285,
+ "step": 4486
+ },
+ {
+ "epoch": 62.3215377894277,
+ "grad_norm": 0.2073916792869568,
+ "learning_rate": 0.0006,
+ "loss": 3.5239500999450684,
+ "step": 4487
+ },
+ {
+ "epoch": 62.33551769331586,
+ "grad_norm": 0.23528249561786652,
+ "learning_rate": 0.0006,
+ "loss": 3.4946212768554688,
+ "step": 4488
+ },
+ {
+ "epoch": 62.34949759720402,
+ "grad_norm": 0.25181272625923157,
+ "learning_rate": 0.0006,
+ "loss": 3.5492000579833984,
+ "step": 4489
+ },
+ {
+ "epoch": 62.36347750109218,
+ "grad_norm": 0.250745564699173,
+ "learning_rate": 0.0006,
+ "loss": 3.491637706756592,
+ "step": 4490
+ },
+ {
+ "epoch": 62.37745740498034,
+ "grad_norm": 0.2461264729499817,
+ "learning_rate": 0.0006,
+ "loss": 3.514125108718872,
+ "step": 4491
+ },
+ {
+ "epoch": 62.391437308868504,
+ "grad_norm": 0.2265472114086151,
+ "learning_rate": 0.0006,
+ "loss": 3.5513534545898438,
+ "step": 4492
+ },
+ {
+ "epoch": 62.40541721275666,
+ "grad_norm": 0.21937128901481628,
+ "learning_rate": 0.0006,
+ "loss": 3.541867733001709,
+ "step": 4493
+ },
+ {
+ "epoch": 62.419397116644824,
+ "grad_norm": 0.21318639814853668,
+ "learning_rate": 0.0006,
+ "loss": 3.530449867248535,
+ "step": 4494
+ },
+ {
+ "epoch": 62.43337702053299,
+ "grad_norm": 0.21287934482097626,
+ "learning_rate": 0.0006,
+ "loss": 3.51837158203125,
+ "step": 4495
+ },
+ {
+ "epoch": 62.44735692442114,
+ "grad_norm": 0.21953676640987396,
+ "learning_rate": 0.0006,
+ "loss": 3.517456293106079,
+ "step": 4496
+ },
+ {
+ "epoch": 62.46133682830931,
+ "grad_norm": 0.23475255072116852,
+ "learning_rate": 0.0006,
+ "loss": 3.493858575820923,
+ "step": 4497
+ },
+ {
+ "epoch": 62.47531673219746,
+ "grad_norm": 0.21805652976036072,
+ "learning_rate": 0.0006,
+ "loss": 3.533367872238159,
+ "step": 4498
+ },
+ {
+ "epoch": 62.489296636085626,
+ "grad_norm": 0.21494100987911224,
+ "learning_rate": 0.0006,
+ "loss": 3.509060859680176,
+ "step": 4499
+ },
+ {
+ "epoch": 62.50327653997379,
+ "grad_norm": 0.20512273907661438,
+ "learning_rate": 0.0006,
+ "loss": 3.524643659591675,
+ "step": 4500
+ },
+ {
+ "epoch": 62.517256443861946,
+ "grad_norm": 0.2046528458595276,
+ "learning_rate": 0.0006,
+ "loss": 3.520662784576416,
+ "step": 4501
+ },
+ {
+ "epoch": 62.53123634775011,
+ "grad_norm": 0.21108978986740112,
+ "learning_rate": 0.0006,
+ "loss": 3.5121688842773438,
+ "step": 4502
+ },
+ {
+ "epoch": 62.54521625163827,
+ "grad_norm": 0.19229449331760406,
+ "learning_rate": 0.0006,
+ "loss": 3.5201103687286377,
+ "step": 4503
+ },
+ {
+ "epoch": 62.55919615552643,
+ "grad_norm": 0.1984805464744568,
+ "learning_rate": 0.0006,
+ "loss": 3.546898365020752,
+ "step": 4504
+ },
+ {
+ "epoch": 62.57317605941459,
+ "grad_norm": 0.21615411341190338,
+ "learning_rate": 0.0006,
+ "loss": 3.4933600425720215,
+ "step": 4505
+ },
+ {
+ "epoch": 62.58715596330275,
+ "grad_norm": 0.22868046164512634,
+ "learning_rate": 0.0006,
+ "loss": 3.506098747253418,
+ "step": 4506
+ },
+ {
+ "epoch": 62.60113586719091,
+ "grad_norm": 0.21856851875782013,
+ "learning_rate": 0.0006,
+ "loss": 3.5790011882781982,
+ "step": 4507
+ },
+ {
+ "epoch": 62.615115771079076,
+ "grad_norm": 0.20573008060455322,
+ "learning_rate": 0.0006,
+ "loss": 3.5236854553222656,
+ "step": 4508
+ },
+ {
+ "epoch": 62.62909567496723,
+ "grad_norm": 0.21287901699543,
+ "learning_rate": 0.0006,
+ "loss": 3.5323190689086914,
+ "step": 4509
+ },
+ {
+ "epoch": 62.643075578855395,
+ "grad_norm": 0.22703637182712555,
+ "learning_rate": 0.0006,
+ "loss": 3.5300045013427734,
+ "step": 4510
+ },
+ {
+ "epoch": 62.65705548274356,
+ "grad_norm": 0.2194957137107849,
+ "learning_rate": 0.0006,
+ "loss": 3.5727438926696777,
+ "step": 4511
+ },
+ {
+ "epoch": 62.671035386631715,
+ "grad_norm": 0.22334235906600952,
+ "learning_rate": 0.0006,
+ "loss": 3.521441698074341,
+ "step": 4512
+ },
+ {
+ "epoch": 62.68501529051988,
+ "grad_norm": 0.2559402883052826,
+ "learning_rate": 0.0006,
+ "loss": 3.513730525970459,
+ "step": 4513
+ },
+ {
+ "epoch": 62.69899519440804,
+ "grad_norm": 0.25041815638542175,
+ "learning_rate": 0.0006,
+ "loss": 3.536247968673706,
+ "step": 4514
+ },
+ {
+ "epoch": 62.7129750982962,
+ "grad_norm": 0.24958674609661102,
+ "learning_rate": 0.0006,
+ "loss": 3.5245871543884277,
+ "step": 4515
+ },
+ {
+ "epoch": 62.72695500218436,
+ "grad_norm": 0.22527511417865753,
+ "learning_rate": 0.0006,
+ "loss": 3.508802652359009,
+ "step": 4516
+ },
+ {
+ "epoch": 62.74093490607252,
+ "grad_norm": 0.19455862045288086,
+ "learning_rate": 0.0006,
+ "loss": 3.5296337604522705,
+ "step": 4517
+ },
+ {
+ "epoch": 62.75491480996068,
+ "grad_norm": 0.20303845405578613,
+ "learning_rate": 0.0006,
+ "loss": 3.57499098777771,
+ "step": 4518
+ },
+ {
+ "epoch": 62.768894713848844,
+ "grad_norm": 0.20851430296897888,
+ "learning_rate": 0.0006,
+ "loss": 3.5139262676239014,
+ "step": 4519
+ },
+ {
+ "epoch": 62.782874617737,
+ "grad_norm": 0.19765593111515045,
+ "learning_rate": 0.0006,
+ "loss": 3.5398616790771484,
+ "step": 4520
+ },
+ {
+ "epoch": 62.796854521625164,
+ "grad_norm": 0.20502524077892303,
+ "learning_rate": 0.0006,
+ "loss": 3.5163207054138184,
+ "step": 4521
+ },
+ {
+ "epoch": 62.81083442551333,
+ "grad_norm": 0.20211154222488403,
+ "learning_rate": 0.0006,
+ "loss": 3.5164661407470703,
+ "step": 4522
+ },
+ {
+ "epoch": 62.824814329401484,
+ "grad_norm": 0.19798780977725983,
+ "learning_rate": 0.0006,
+ "loss": 3.533470869064331,
+ "step": 4523
+ },
+ {
+ "epoch": 62.83879423328965,
+ "grad_norm": 0.21921277046203613,
+ "learning_rate": 0.0006,
+ "loss": 3.532498598098755,
+ "step": 4524
+ },
+ {
+ "epoch": 62.8527741371778,
+ "grad_norm": 0.2352060228586197,
+ "learning_rate": 0.0006,
+ "loss": 3.5674972534179688,
+ "step": 4525
+ },
+ {
+ "epoch": 62.86675404106597,
+ "grad_norm": 0.21286381781101227,
+ "learning_rate": 0.0006,
+ "loss": 3.508051872253418,
+ "step": 4526
+ },
+ {
+ "epoch": 62.88073394495413,
+ "grad_norm": 0.21557490527629852,
+ "learning_rate": 0.0006,
+ "loss": 3.5300607681274414,
+ "step": 4527
+ },
+ {
+ "epoch": 62.89471384884229,
+ "grad_norm": 0.23020988702774048,
+ "learning_rate": 0.0006,
+ "loss": 3.508237361907959,
+ "step": 4528
+ },
+ {
+ "epoch": 62.90869375273045,
+ "grad_norm": 0.26428425312042236,
+ "learning_rate": 0.0006,
+ "loss": 3.52371883392334,
+ "step": 4529
+ },
+ {
+ "epoch": 62.92267365661861,
+ "grad_norm": 0.2568773925304413,
+ "learning_rate": 0.0006,
+ "loss": 3.5371956825256348,
+ "step": 4530
+ },
+ {
+ "epoch": 62.93665356050677,
+ "grad_norm": 0.2216598093509674,
+ "learning_rate": 0.0006,
+ "loss": 3.5286736488342285,
+ "step": 4531
+ },
+ {
+ "epoch": 62.95063346439493,
+ "grad_norm": 0.23094940185546875,
+ "learning_rate": 0.0006,
+ "loss": 3.5389769077301025,
+ "step": 4532
+ },
+ {
+ "epoch": 62.964613368283096,
+ "grad_norm": 0.23469413816928864,
+ "learning_rate": 0.0006,
+ "loss": 3.546466588973999,
+ "step": 4533
+ },
+ {
+ "epoch": 62.97859327217125,
+ "grad_norm": 0.2289242148399353,
+ "learning_rate": 0.0006,
+ "loss": 3.565002679824829,
+ "step": 4534
+ },
+ {
+ "epoch": 62.992573176059416,
+ "grad_norm": 0.262317955493927,
+ "learning_rate": 0.0006,
+ "loss": 3.5388731956481934,
+ "step": 4535
+ },
+ {
+ "epoch": 63.0,
+ "grad_norm": 0.273183137178421,
+ "learning_rate": 0.0006,
+ "loss": 3.482903003692627,
+ "step": 4536
+ },
+ {
+ "epoch": 63.0,
+ "eval_loss": 3.973074436187744,
+ "eval_runtime": 45.5476,
+ "eval_samples_per_second": 53.614,
+ "eval_steps_per_second": 3.359,
+ "step": 4536
+ },
+ {
+ "epoch": 63.01397990388816,
+ "grad_norm": 0.22226323187351227,
+ "learning_rate": 0.0006,
+ "loss": 3.483798027038574,
+ "step": 4537
+ },
+ {
+ "epoch": 63.02795980777632,
+ "grad_norm": 0.24443542957305908,
+ "learning_rate": 0.0006,
+ "loss": 3.496903419494629,
+ "step": 4538
+ },
+ {
+ "epoch": 63.04193971166448,
+ "grad_norm": 0.2508153021335602,
+ "learning_rate": 0.0006,
+ "loss": 3.5234804153442383,
+ "step": 4539
+ },
+ {
+ "epoch": 63.05591961555265,
+ "grad_norm": 0.2610569894313812,
+ "learning_rate": 0.0006,
+ "loss": 3.502870798110962,
+ "step": 4540
+ },
+ {
+ "epoch": 63.0698995194408,
+ "grad_norm": 0.27980759739875793,
+ "learning_rate": 0.0006,
+ "loss": 3.50645112991333,
+ "step": 4541
+ },
+ {
+ "epoch": 63.083879423328966,
+ "grad_norm": 0.292883038520813,
+ "learning_rate": 0.0006,
+ "loss": 3.478863000869751,
+ "step": 4542
+ },
+ {
+ "epoch": 63.09785932721712,
+ "grad_norm": 0.2593323588371277,
+ "learning_rate": 0.0006,
+ "loss": 3.506967067718506,
+ "step": 4543
+ },
+ {
+ "epoch": 63.111839231105286,
+ "grad_norm": 0.23973147571086884,
+ "learning_rate": 0.0006,
+ "loss": 3.513401746749878,
+ "step": 4544
+ },
+ {
+ "epoch": 63.12581913499345,
+ "grad_norm": 0.22731348872184753,
+ "learning_rate": 0.0006,
+ "loss": 3.4880478382110596,
+ "step": 4545
+ },
+ {
+ "epoch": 63.139799038881605,
+ "grad_norm": 0.22627407312393188,
+ "learning_rate": 0.0006,
+ "loss": 3.4975132942199707,
+ "step": 4546
+ },
+ {
+ "epoch": 63.15377894276977,
+ "grad_norm": 0.25107741355895996,
+ "learning_rate": 0.0006,
+ "loss": 3.5068140029907227,
+ "step": 4547
+ },
+ {
+ "epoch": 63.16775884665793,
+ "grad_norm": 0.23031412065029144,
+ "learning_rate": 0.0006,
+ "loss": 3.515760898590088,
+ "step": 4548
+ },
+ {
+ "epoch": 63.18173875054609,
+ "grad_norm": 0.21028949320316315,
+ "learning_rate": 0.0006,
+ "loss": 3.521303415298462,
+ "step": 4549
+ },
+ {
+ "epoch": 63.19571865443425,
+ "grad_norm": 0.22366516292095184,
+ "learning_rate": 0.0006,
+ "loss": 3.5283193588256836,
+ "step": 4550
+ },
+ {
+ "epoch": 63.20969855832241,
+ "grad_norm": 0.2176598459482193,
+ "learning_rate": 0.0006,
+ "loss": 3.490306854248047,
+ "step": 4551
+ },
+ {
+ "epoch": 63.22367846221057,
+ "grad_norm": 0.20985916256904602,
+ "learning_rate": 0.0006,
+ "loss": 3.5335614681243896,
+ "step": 4552
+ },
+ {
+ "epoch": 63.237658366098735,
+ "grad_norm": 0.2085118442773819,
+ "learning_rate": 0.0006,
+ "loss": 3.5108132362365723,
+ "step": 4553
+ },
+ {
+ "epoch": 63.25163826998689,
+ "grad_norm": 0.22644028067588806,
+ "learning_rate": 0.0006,
+ "loss": 3.4813215732574463,
+ "step": 4554
+ },
+ {
+ "epoch": 63.265618173875055,
+ "grad_norm": 0.21942120790481567,
+ "learning_rate": 0.0006,
+ "loss": 3.5310909748077393,
+ "step": 4555
+ },
+ {
+ "epoch": 63.27959807776322,
+ "grad_norm": 0.2335938662290573,
+ "learning_rate": 0.0006,
+ "loss": 3.530893564224243,
+ "step": 4556
+ },
+ {
+ "epoch": 63.293577981651374,
+ "grad_norm": 0.2409360110759735,
+ "learning_rate": 0.0006,
+ "loss": 3.5301408767700195,
+ "step": 4557
+ },
+ {
+ "epoch": 63.30755788553954,
+ "grad_norm": 0.2354922890663147,
+ "learning_rate": 0.0006,
+ "loss": 3.5211031436920166,
+ "step": 4558
+ },
+ {
+ "epoch": 63.3215377894277,
+ "grad_norm": 0.23376664519309998,
+ "learning_rate": 0.0006,
+ "loss": 3.538367509841919,
+ "step": 4559
+ },
+ {
+ "epoch": 63.33551769331586,
+ "grad_norm": 0.25319674611091614,
+ "learning_rate": 0.0006,
+ "loss": 3.494905471801758,
+ "step": 4560
+ },
+ {
+ "epoch": 63.34949759720402,
+ "grad_norm": 0.24088945984840393,
+ "learning_rate": 0.0006,
+ "loss": 3.5189433097839355,
+ "step": 4561
+ },
+ {
+ "epoch": 63.36347750109218,
+ "grad_norm": 0.2373911589384079,
+ "learning_rate": 0.0006,
+ "loss": 3.4956908226013184,
+ "step": 4562
+ },
+ {
+ "epoch": 63.37745740498034,
+ "grad_norm": 0.2590023875236511,
+ "learning_rate": 0.0006,
+ "loss": 3.511784076690674,
+ "step": 4563
+ },
+ {
+ "epoch": 63.391437308868504,
+ "grad_norm": 0.2600874900817871,
+ "learning_rate": 0.0006,
+ "loss": 3.478942394256592,
+ "step": 4564
+ },
+ {
+ "epoch": 63.40541721275666,
+ "grad_norm": 0.24018031358718872,
+ "learning_rate": 0.0006,
+ "loss": 3.521773338317871,
+ "step": 4565
+ },
+ {
+ "epoch": 63.419397116644824,
+ "grad_norm": 0.2552972435951233,
+ "learning_rate": 0.0006,
+ "loss": 3.4893441200256348,
+ "step": 4566
+ },
+ {
+ "epoch": 63.43337702053299,
+ "grad_norm": 0.26195958256721497,
+ "learning_rate": 0.0006,
+ "loss": 3.5366687774658203,
+ "step": 4567
+ },
+ {
+ "epoch": 63.44735692442114,
+ "grad_norm": 0.24390678107738495,
+ "learning_rate": 0.0006,
+ "loss": 3.4948301315307617,
+ "step": 4568
+ },
+ {
+ "epoch": 63.46133682830931,
+ "grad_norm": 0.21185952425003052,
+ "learning_rate": 0.0006,
+ "loss": 3.486267566680908,
+ "step": 4569
+ },
+ {
+ "epoch": 63.47531673219746,
+ "grad_norm": 0.21932153403759003,
+ "learning_rate": 0.0006,
+ "loss": 3.499481201171875,
+ "step": 4570
+ },
+ {
+ "epoch": 63.489296636085626,
+ "grad_norm": 0.22503717243671417,
+ "learning_rate": 0.0006,
+ "loss": 3.4932126998901367,
+ "step": 4571
+ },
+ {
+ "epoch": 63.50327653997379,
+ "grad_norm": 0.23853568732738495,
+ "learning_rate": 0.0006,
+ "loss": 3.4893674850463867,
+ "step": 4572
+ },
+ {
+ "epoch": 63.517256443861946,
+ "grad_norm": 0.2531817853450775,
+ "learning_rate": 0.0006,
+ "loss": 3.5391907691955566,
+ "step": 4573
+ },
+ {
+ "epoch": 63.53123634775011,
+ "grad_norm": 0.23776786029338837,
+ "learning_rate": 0.0006,
+ "loss": 3.5097427368164062,
+ "step": 4574
+ },
+ {
+ "epoch": 63.54521625163827,
+ "grad_norm": 0.24308739602565765,
+ "learning_rate": 0.0006,
+ "loss": 3.4988107681274414,
+ "step": 4575
+ },
+ {
+ "epoch": 63.55919615552643,
+ "grad_norm": 0.24214281141757965,
+ "learning_rate": 0.0006,
+ "loss": 3.506901502609253,
+ "step": 4576
+ },
+ {
+ "epoch": 63.57317605941459,
+ "grad_norm": 0.21378614008426666,
+ "learning_rate": 0.0006,
+ "loss": 3.54103684425354,
+ "step": 4577
+ },
+ {
+ "epoch": 63.58715596330275,
+ "grad_norm": 0.21135152876377106,
+ "learning_rate": 0.0006,
+ "loss": 3.534852981567383,
+ "step": 4578
+ },
+ {
+ "epoch": 63.60113586719091,
+ "grad_norm": 0.2335089147090912,
+ "learning_rate": 0.0006,
+ "loss": 3.542457342147827,
+ "step": 4579
+ },
+ {
+ "epoch": 63.615115771079076,
+ "grad_norm": 0.23693214356899261,
+ "learning_rate": 0.0006,
+ "loss": 3.4781997203826904,
+ "step": 4580
+ },
+ {
+ "epoch": 63.62909567496723,
+ "grad_norm": 0.21237023174762726,
+ "learning_rate": 0.0006,
+ "loss": 3.4980621337890625,
+ "step": 4581
+ },
+ {
+ "epoch": 63.643075578855395,
+ "grad_norm": 0.20930461585521698,
+ "learning_rate": 0.0006,
+ "loss": 3.5177974700927734,
+ "step": 4582
+ },
+ {
+ "epoch": 63.65705548274356,
+ "grad_norm": 0.22565403580665588,
+ "learning_rate": 0.0006,
+ "loss": 3.5385828018188477,
+ "step": 4583
+ },
+ {
+ "epoch": 63.671035386631715,
+ "grad_norm": 0.22187408804893494,
+ "learning_rate": 0.0006,
+ "loss": 3.5461559295654297,
+ "step": 4584
+ },
+ {
+ "epoch": 63.68501529051988,
+ "grad_norm": 0.23496168851852417,
+ "learning_rate": 0.0006,
+ "loss": 3.526822090148926,
+ "step": 4585
+ },
+ {
+ "epoch": 63.69899519440804,
+ "grad_norm": 0.2432301938533783,
+ "learning_rate": 0.0006,
+ "loss": 3.5248091220855713,
+ "step": 4586
+ },
+ {
+ "epoch": 63.7129750982962,
+ "grad_norm": 0.22797444462776184,
+ "learning_rate": 0.0006,
+ "loss": 3.5276098251342773,
+ "step": 4587
+ },
+ {
+ "epoch": 63.72695500218436,
+ "grad_norm": 0.2332911491394043,
+ "learning_rate": 0.0006,
+ "loss": 3.5454764366149902,
+ "step": 4588
+ },
+ {
+ "epoch": 63.74093490607252,
+ "grad_norm": 0.23016804456710815,
+ "learning_rate": 0.0006,
+ "loss": 3.519209384918213,
+ "step": 4589
+ },
+ {
+ "epoch": 63.75491480996068,
+ "grad_norm": 0.2160855233669281,
+ "learning_rate": 0.0006,
+ "loss": 3.536961317062378,
+ "step": 4590
+ },
+ {
+ "epoch": 63.768894713848844,
+ "grad_norm": 0.25935620069503784,
+ "learning_rate": 0.0006,
+ "loss": 3.5653820037841797,
+ "step": 4591
+ },
+ {
+ "epoch": 63.782874617737,
+ "grad_norm": 0.26625221967697144,
+ "learning_rate": 0.0006,
+ "loss": 3.5492172241210938,
+ "step": 4592
+ },
+ {
+ "epoch": 63.796854521625164,
+ "grad_norm": 0.25456854701042175,
+ "learning_rate": 0.0006,
+ "loss": 3.516575336456299,
+ "step": 4593
+ },
+ {
+ "epoch": 63.81083442551333,
+ "grad_norm": 0.26114824414253235,
+ "learning_rate": 0.0006,
+ "loss": 3.5429139137268066,
+ "step": 4594
+ },
+ {
+ "epoch": 63.824814329401484,
+ "grad_norm": 0.27836596965789795,
+ "learning_rate": 0.0006,
+ "loss": 3.5567727088928223,
+ "step": 4595
+ },
+ {
+ "epoch": 63.83879423328965,
+ "grad_norm": 0.2674464285373688,
+ "learning_rate": 0.0006,
+ "loss": 3.5093564987182617,
+ "step": 4596
+ },
+ {
+ "epoch": 63.8527741371778,
+ "grad_norm": 0.27393433451652527,
+ "learning_rate": 0.0006,
+ "loss": 3.5500247478485107,
+ "step": 4597
+ },
+ {
+ "epoch": 63.86675404106597,
+ "grad_norm": 0.30968594551086426,
+ "learning_rate": 0.0006,
+ "loss": 3.539085865020752,
+ "step": 4598
+ },
+ {
+ "epoch": 63.88073394495413,
+ "grad_norm": 0.279060423374176,
+ "learning_rate": 0.0006,
+ "loss": 3.517862319946289,
+ "step": 4599
+ },
+ {
+ "epoch": 63.89471384884229,
+ "grad_norm": 0.22436867654323578,
+ "learning_rate": 0.0006,
+ "loss": 3.5714004039764404,
+ "step": 4600
+ },
+ {
+ "epoch": 63.90869375273045,
+ "grad_norm": 0.22473126649856567,
+ "learning_rate": 0.0006,
+ "loss": 3.5212388038635254,
+ "step": 4601
+ },
+ {
+ "epoch": 63.92267365661861,
+ "grad_norm": 0.2802466154098511,
+ "learning_rate": 0.0006,
+ "loss": 3.5112411975860596,
+ "step": 4602
+ },
+ {
+ "epoch": 63.93665356050677,
+ "grad_norm": 0.29435867071151733,
+ "learning_rate": 0.0006,
+ "loss": 3.554875373840332,
+ "step": 4603
+ },
+ {
+ "epoch": 63.95063346439493,
+ "grad_norm": 0.24592025578022003,
+ "learning_rate": 0.0006,
+ "loss": 3.5593767166137695,
+ "step": 4604
+ },
+ {
+ "epoch": 63.964613368283096,
+ "grad_norm": 0.25918886065483093,
+ "learning_rate": 0.0006,
+ "loss": 3.5020017623901367,
+ "step": 4605
+ },
+ {
+ "epoch": 63.97859327217125,
+ "grad_norm": 0.24892419576644897,
+ "learning_rate": 0.0006,
+ "loss": 3.520456314086914,
+ "step": 4606
+ },
+ {
+ "epoch": 63.992573176059416,
+ "grad_norm": 0.24131213128566742,
+ "learning_rate": 0.0006,
+ "loss": 3.5576815605163574,
+ "step": 4607
+ },
+ {
+ "epoch": 64.0,
+ "grad_norm": 0.2348976731300354,
+ "learning_rate": 0.0006,
+ "loss": 3.524242401123047,
+ "step": 4608
+ },
+ {
+ "epoch": 64.0,
+ "eval_loss": 3.972158670425415,
+ "eval_runtime": 45.883,
+ "eval_samples_per_second": 53.222,
+ "eval_steps_per_second": 3.335,
+ "step": 4608
+ },
+ {
+ "epoch": 64.01397990388816,
+ "grad_norm": 0.24034473299980164,
+ "learning_rate": 0.0006,
+ "loss": 3.463156223297119,
+ "step": 4609
+ },
+ {
+ "epoch": 64.02795980777633,
+ "grad_norm": 0.28686341643333435,
+ "learning_rate": 0.0006,
+ "loss": 3.5137135982513428,
+ "step": 4610
+ },
+ {
+ "epoch": 64.04193971166448,
+ "grad_norm": 0.30763131380081177,
+ "learning_rate": 0.0006,
+ "loss": 3.490610361099243,
+ "step": 4611
+ },
+ {
+ "epoch": 64.05591961555264,
+ "grad_norm": 0.2775363624095917,
+ "learning_rate": 0.0006,
+ "loss": 3.516378879547119,
+ "step": 4612
+ },
+ {
+ "epoch": 64.06989951944081,
+ "grad_norm": 0.2643020749092102,
+ "learning_rate": 0.0006,
+ "loss": 3.511389970779419,
+ "step": 4613
+ },
+ {
+ "epoch": 64.08387942332897,
+ "grad_norm": 0.2859032452106476,
+ "learning_rate": 0.0006,
+ "loss": 3.5125572681427,
+ "step": 4614
+ },
+ {
+ "epoch": 64.09785932721712,
+ "grad_norm": 0.28378766775131226,
+ "learning_rate": 0.0006,
+ "loss": 3.4953627586364746,
+ "step": 4615
+ },
+ {
+ "epoch": 64.1118392311053,
+ "grad_norm": 0.2809223234653473,
+ "learning_rate": 0.0006,
+ "loss": 3.5114667415618896,
+ "step": 4616
+ },
+ {
+ "epoch": 64.12581913499345,
+ "grad_norm": 0.251823753118515,
+ "learning_rate": 0.0006,
+ "loss": 3.529876232147217,
+ "step": 4617
+ },
+ {
+ "epoch": 64.1397990388816,
+ "grad_norm": 0.236602321267128,
+ "learning_rate": 0.0006,
+ "loss": 3.5067150592803955,
+ "step": 4618
+ },
+ {
+ "epoch": 64.15377894276976,
+ "grad_norm": 0.2317773550748825,
+ "learning_rate": 0.0006,
+ "loss": 3.5166091918945312,
+ "step": 4619
+ },
+ {
+ "epoch": 64.16775884665793,
+ "grad_norm": 0.2237853854894638,
+ "learning_rate": 0.0006,
+ "loss": 3.492464065551758,
+ "step": 4620
+ },
+ {
+ "epoch": 64.18173875054609,
+ "grad_norm": 0.22309459745883942,
+ "learning_rate": 0.0006,
+ "loss": 3.4892983436584473,
+ "step": 4621
+ },
+ {
+ "epoch": 64.19571865443424,
+ "grad_norm": 0.21838971972465515,
+ "learning_rate": 0.0006,
+ "loss": 3.528764486312866,
+ "step": 4622
+ },
+ {
+ "epoch": 64.20969855832242,
+ "grad_norm": 0.22414161264896393,
+ "learning_rate": 0.0006,
+ "loss": 3.506270170211792,
+ "step": 4623
+ },
+ {
+ "epoch": 64.22367846221057,
+ "grad_norm": 0.22375065088272095,
+ "learning_rate": 0.0006,
+ "loss": 3.4844071865081787,
+ "step": 4624
+ },
+ {
+ "epoch": 64.23765836609873,
+ "grad_norm": 0.2091676890850067,
+ "learning_rate": 0.0006,
+ "loss": 3.4983415603637695,
+ "step": 4625
+ },
+ {
+ "epoch": 64.2516382699869,
+ "grad_norm": 0.22184209525585175,
+ "learning_rate": 0.0006,
+ "loss": 3.4846835136413574,
+ "step": 4626
+ },
+ {
+ "epoch": 64.26561817387505,
+ "grad_norm": 0.21549198031425476,
+ "learning_rate": 0.0006,
+ "loss": 3.4933011531829834,
+ "step": 4627
+ },
+ {
+ "epoch": 64.27959807776321,
+ "grad_norm": 0.21613609790802002,
+ "learning_rate": 0.0006,
+ "loss": 3.523514986038208,
+ "step": 4628
+ },
+ {
+ "epoch": 64.29357798165138,
+ "grad_norm": 0.22394488751888275,
+ "learning_rate": 0.0006,
+ "loss": 3.512820243835449,
+ "step": 4629
+ },
+ {
+ "epoch": 64.30755788553954,
+ "grad_norm": 0.22381016612052917,
+ "learning_rate": 0.0006,
+ "loss": 3.4967026710510254,
+ "step": 4630
+ },
+ {
+ "epoch": 64.3215377894277,
+ "grad_norm": 0.22533059120178223,
+ "learning_rate": 0.0006,
+ "loss": 3.5051097869873047,
+ "step": 4631
+ },
+ {
+ "epoch": 64.33551769331586,
+ "grad_norm": 0.23043590784072876,
+ "learning_rate": 0.0006,
+ "loss": 3.4784820079803467,
+ "step": 4632
+ },
+ {
+ "epoch": 64.34949759720402,
+ "grad_norm": 0.20840506255626678,
+ "learning_rate": 0.0006,
+ "loss": 3.496629238128662,
+ "step": 4633
+ },
+ {
+ "epoch": 64.36347750109218,
+ "grad_norm": 0.20293036103248596,
+ "learning_rate": 0.0006,
+ "loss": 3.500199317932129,
+ "step": 4634
+ },
+ {
+ "epoch": 64.37745740498035,
+ "grad_norm": 0.20510733127593994,
+ "learning_rate": 0.0006,
+ "loss": 3.4943113327026367,
+ "step": 4635
+ },
+ {
+ "epoch": 64.3914373088685,
+ "grad_norm": 0.21207642555236816,
+ "learning_rate": 0.0006,
+ "loss": 3.5024590492248535,
+ "step": 4636
+ },
+ {
+ "epoch": 64.40541721275666,
+ "grad_norm": 0.19878660142421722,
+ "learning_rate": 0.0006,
+ "loss": 3.5065855979919434,
+ "step": 4637
+ },
+ {
+ "epoch": 64.41939711664482,
+ "grad_norm": 0.22502431273460388,
+ "learning_rate": 0.0006,
+ "loss": 3.527764081954956,
+ "step": 4638
+ },
+ {
+ "epoch": 64.43337702053299,
+ "grad_norm": 0.2167922705411911,
+ "learning_rate": 0.0006,
+ "loss": 3.5075361728668213,
+ "step": 4639
+ },
+ {
+ "epoch": 64.44735692442114,
+ "grad_norm": 0.21200154721736908,
+ "learning_rate": 0.0006,
+ "loss": 3.5339698791503906,
+ "step": 4640
+ },
+ {
+ "epoch": 64.4613368283093,
+ "grad_norm": 0.22495608031749725,
+ "learning_rate": 0.0006,
+ "loss": 3.5342869758605957,
+ "step": 4641
+ },
+ {
+ "epoch": 64.47531673219747,
+ "grad_norm": 0.21426217257976532,
+ "learning_rate": 0.0006,
+ "loss": 3.5065689086914062,
+ "step": 4642
+ },
+ {
+ "epoch": 64.48929663608563,
+ "grad_norm": 0.19980023801326752,
+ "learning_rate": 0.0006,
+ "loss": 3.508183002471924,
+ "step": 4643
+ },
+ {
+ "epoch": 64.50327653997378,
+ "grad_norm": 0.2054566591978073,
+ "learning_rate": 0.0006,
+ "loss": 3.5098650455474854,
+ "step": 4644
+ },
+ {
+ "epoch": 64.51725644386195,
+ "grad_norm": 0.2038603276014328,
+ "learning_rate": 0.0006,
+ "loss": 3.517388105392456,
+ "step": 4645
+ },
+ {
+ "epoch": 64.53123634775011,
+ "grad_norm": 0.22438357770442963,
+ "learning_rate": 0.0006,
+ "loss": 3.5215954780578613,
+ "step": 4646
+ },
+ {
+ "epoch": 64.54521625163827,
+ "grad_norm": 0.23507612943649292,
+ "learning_rate": 0.0006,
+ "loss": 3.488262176513672,
+ "step": 4647
+ },
+ {
+ "epoch": 64.55919615552644,
+ "grad_norm": 0.21669664978981018,
+ "learning_rate": 0.0006,
+ "loss": 3.4945027828216553,
+ "step": 4648
+ },
+ {
+ "epoch": 64.57317605941459,
+ "grad_norm": 0.20035886764526367,
+ "learning_rate": 0.0006,
+ "loss": 3.516415596008301,
+ "step": 4649
+ },
+ {
+ "epoch": 64.58715596330275,
+ "grad_norm": 0.21818110346794128,
+ "learning_rate": 0.0006,
+ "loss": 3.4944982528686523,
+ "step": 4650
+ },
+ {
+ "epoch": 64.60113586719092,
+ "grad_norm": 0.20609644055366516,
+ "learning_rate": 0.0006,
+ "loss": 3.4914844036102295,
+ "step": 4651
+ },
+ {
+ "epoch": 64.61511577107908,
+ "grad_norm": 0.21921353042125702,
+ "learning_rate": 0.0006,
+ "loss": 3.5292391777038574,
+ "step": 4652
+ },
+ {
+ "epoch": 64.62909567496723,
+ "grad_norm": 0.23570363223552704,
+ "learning_rate": 0.0006,
+ "loss": 3.5353617668151855,
+ "step": 4653
+ },
+ {
+ "epoch": 64.6430755788554,
+ "grad_norm": 0.20933061838150024,
+ "learning_rate": 0.0006,
+ "loss": 3.524240016937256,
+ "step": 4654
+ },
+ {
+ "epoch": 64.65705548274356,
+ "grad_norm": 0.22739441692829132,
+ "learning_rate": 0.0006,
+ "loss": 3.529047966003418,
+ "step": 4655
+ },
+ {
+ "epoch": 64.67103538663171,
+ "grad_norm": 0.22208894789218903,
+ "learning_rate": 0.0006,
+ "loss": 3.5492024421691895,
+ "step": 4656
+ },
+ {
+ "epoch": 64.68501529051987,
+ "grad_norm": 0.23031534254550934,
+ "learning_rate": 0.0006,
+ "loss": 3.532979726791382,
+ "step": 4657
+ },
+ {
+ "epoch": 64.69899519440804,
+ "grad_norm": 0.25316348671913147,
+ "learning_rate": 0.0006,
+ "loss": 3.5105819702148438,
+ "step": 4658
+ },
+ {
+ "epoch": 64.7129750982962,
+ "grad_norm": 0.23601582646369934,
+ "learning_rate": 0.0006,
+ "loss": 3.5270726680755615,
+ "step": 4659
+ },
+ {
+ "epoch": 64.72695500218435,
+ "grad_norm": 0.20309361815452576,
+ "learning_rate": 0.0006,
+ "loss": 3.5072035789489746,
+ "step": 4660
+ },
+ {
+ "epoch": 64.74093490607252,
+ "grad_norm": 0.21525762975215912,
+ "learning_rate": 0.0006,
+ "loss": 3.531649112701416,
+ "step": 4661
+ },
+ {
+ "epoch": 64.75491480996068,
+ "grad_norm": 0.2262735813856125,
+ "learning_rate": 0.0006,
+ "loss": 3.5053927898406982,
+ "step": 4662
+ },
+ {
+ "epoch": 64.76889471384884,
+ "grad_norm": 0.2223973125219345,
+ "learning_rate": 0.0006,
+ "loss": 3.5400562286376953,
+ "step": 4663
+ },
+ {
+ "epoch": 64.78287461773701,
+ "grad_norm": 0.22822168469429016,
+ "learning_rate": 0.0006,
+ "loss": 3.502312421798706,
+ "step": 4664
+ },
+ {
+ "epoch": 64.79685452162516,
+ "grad_norm": 0.2337028533220291,
+ "learning_rate": 0.0006,
+ "loss": 3.524888038635254,
+ "step": 4665
+ },
+ {
+ "epoch": 64.81083442551332,
+ "grad_norm": 0.22423268854618073,
+ "learning_rate": 0.0006,
+ "loss": 3.5380213260650635,
+ "step": 4666
+ },
+ {
+ "epoch": 64.82481432940149,
+ "grad_norm": 0.21429643034934998,
+ "learning_rate": 0.0006,
+ "loss": 3.5499157905578613,
+ "step": 4667
+ },
+ {
+ "epoch": 64.83879423328965,
+ "grad_norm": 0.22421850264072418,
+ "learning_rate": 0.0006,
+ "loss": 3.5034070014953613,
+ "step": 4668
+ },
+ {
+ "epoch": 64.8527741371778,
+ "grad_norm": 0.21886403858661652,
+ "learning_rate": 0.0006,
+ "loss": 3.5276694297790527,
+ "step": 4669
+ },
+ {
+ "epoch": 64.86675404106597,
+ "grad_norm": 0.2404339462518692,
+ "learning_rate": 0.0006,
+ "loss": 3.515219211578369,
+ "step": 4670
+ },
+ {
+ "epoch": 64.88073394495413,
+ "grad_norm": 0.2837470769882202,
+ "learning_rate": 0.0006,
+ "loss": 3.561008930206299,
+ "step": 4671
+ },
+ {
+ "epoch": 64.89471384884229,
+ "grad_norm": 0.3101402223110199,
+ "learning_rate": 0.0006,
+ "loss": 3.556626319885254,
+ "step": 4672
+ },
+ {
+ "epoch": 64.90869375273044,
+ "grad_norm": 0.30606821179389954,
+ "learning_rate": 0.0006,
+ "loss": 3.540271282196045,
+ "step": 4673
+ },
+ {
+ "epoch": 64.92267365661861,
+ "grad_norm": 0.2715052664279938,
+ "learning_rate": 0.0006,
+ "loss": 3.5128841400146484,
+ "step": 4674
+ },
+ {
+ "epoch": 64.93665356050677,
+ "grad_norm": 0.24061815440654755,
+ "learning_rate": 0.0006,
+ "loss": 3.554208278656006,
+ "step": 4675
+ },
+ {
+ "epoch": 64.95063346439493,
+ "grad_norm": 0.23540185391902924,
+ "learning_rate": 0.0006,
+ "loss": 3.544139862060547,
+ "step": 4676
+ },
+ {
+ "epoch": 64.9646133682831,
+ "grad_norm": 0.26172906160354614,
+ "learning_rate": 0.0006,
+ "loss": 3.567110061645508,
+ "step": 4677
+ },
+ {
+ "epoch": 64.97859327217125,
+ "grad_norm": 0.2766035795211792,
+ "learning_rate": 0.0006,
+ "loss": 3.494391918182373,
+ "step": 4678
+ },
+ {
+ "epoch": 64.99257317605941,
+ "grad_norm": 0.2400948703289032,
+ "learning_rate": 0.0006,
+ "loss": 3.5130133628845215,
+ "step": 4679
+ },
+ {
+ "epoch": 65.0,
+ "grad_norm": 0.24790917336940765,
+ "learning_rate": 0.0006,
+ "loss": 3.5481390953063965,
+ "step": 4680
+ },
+ {
+ "epoch": 65.0,
+ "eval_loss": 3.976747989654541,
+ "eval_runtime": 46.3575,
+ "eval_samples_per_second": 52.678,
+ "eval_steps_per_second": 3.3,
+ "step": 4680
+ },
+ {
+ "epoch": 65.01397990388816,
+ "grad_norm": 0.22275416553020477,
+ "learning_rate": 0.0006,
+ "loss": 3.4832773208618164,
+ "step": 4681
+ },
+ {
+ "epoch": 65.02795980777633,
+ "grad_norm": 0.23779742419719696,
+ "learning_rate": 0.0006,
+ "loss": 3.5049266815185547,
+ "step": 4682
+ },
+ {
+ "epoch": 65.04193971166448,
+ "grad_norm": 0.2394440770149231,
+ "learning_rate": 0.0006,
+ "loss": 3.5335357189178467,
+ "step": 4683
+ },
+ {
+ "epoch": 65.05591961555264,
+ "grad_norm": 0.22160623967647552,
+ "learning_rate": 0.0006,
+ "loss": 3.5066094398498535,
+ "step": 4684
+ },
+ {
+ "epoch": 65.06989951944081,
+ "grad_norm": 0.22387197613716125,
+ "learning_rate": 0.0006,
+ "loss": 3.474155902862549,
+ "step": 4685
+ },
+ {
+ "epoch": 65.08387942332897,
+ "grad_norm": 0.24355316162109375,
+ "learning_rate": 0.0006,
+ "loss": 3.4905145168304443,
+ "step": 4686
+ },
+ {
+ "epoch": 65.09785932721712,
+ "grad_norm": 0.25801026821136475,
+ "learning_rate": 0.0006,
+ "loss": 3.50339937210083,
+ "step": 4687
+ },
+ {
+ "epoch": 65.1118392311053,
+ "grad_norm": 0.26155906915664673,
+ "learning_rate": 0.0006,
+ "loss": 3.523623466491699,
+ "step": 4688
+ },
+ {
+ "epoch": 65.12581913499345,
+ "grad_norm": 0.2512831389904022,
+ "learning_rate": 0.0006,
+ "loss": 3.490898609161377,
+ "step": 4689
+ },
+ {
+ "epoch": 65.1397990388816,
+ "grad_norm": 0.25024810433387756,
+ "learning_rate": 0.0006,
+ "loss": 3.4742162227630615,
+ "step": 4690
+ },
+ {
+ "epoch": 65.15377894276976,
+ "grad_norm": 0.27639806270599365,
+ "learning_rate": 0.0006,
+ "loss": 3.503298282623291,
+ "step": 4691
+ },
+ {
+ "epoch": 65.16775884665793,
+ "grad_norm": 0.2543538510799408,
+ "learning_rate": 0.0006,
+ "loss": 3.4785704612731934,
+ "step": 4692
+ },
+ {
+ "epoch": 65.18173875054609,
+ "grad_norm": 0.24148274958133698,
+ "learning_rate": 0.0006,
+ "loss": 3.48526668548584,
+ "step": 4693
+ },
+ {
+ "epoch": 65.19571865443424,
+ "grad_norm": 0.2161206603050232,
+ "learning_rate": 0.0006,
+ "loss": 3.477449417114258,
+ "step": 4694
+ },
+ {
+ "epoch": 65.20969855832242,
+ "grad_norm": 0.21417468786239624,
+ "learning_rate": 0.0006,
+ "loss": 3.5010929107666016,
+ "step": 4695
+ },
+ {
+ "epoch": 65.22367846221057,
+ "grad_norm": 0.22810059785842896,
+ "learning_rate": 0.0006,
+ "loss": 3.4384589195251465,
+ "step": 4696
+ },
+ {
+ "epoch": 65.23765836609873,
+ "grad_norm": 0.23555037379264832,
+ "learning_rate": 0.0006,
+ "loss": 3.4912073612213135,
+ "step": 4697
+ },
+ {
+ "epoch": 65.2516382699869,
+ "grad_norm": 0.2628633975982666,
+ "learning_rate": 0.0006,
+ "loss": 3.4763574600219727,
+ "step": 4698
+ },
+ {
+ "epoch": 65.26561817387505,
+ "grad_norm": 0.2515856921672821,
+ "learning_rate": 0.0006,
+ "loss": 3.480222463607788,
+ "step": 4699
+ },
+ {
+ "epoch": 65.27959807776321,
+ "grad_norm": 0.19862835109233856,
+ "learning_rate": 0.0006,
+ "loss": 3.510263204574585,
+ "step": 4700
+ },
+ {
+ "epoch": 65.29357798165138,
+ "grad_norm": 0.22558043897151947,
+ "learning_rate": 0.0006,
+ "loss": 3.4952306747436523,
+ "step": 4701
+ },
+ {
+ "epoch": 65.30755788553954,
+ "grad_norm": 0.2351200133562088,
+ "learning_rate": 0.0006,
+ "loss": 3.5010221004486084,
+ "step": 4702
+ },
+ {
+ "epoch": 65.3215377894277,
+ "grad_norm": 0.21748903393745422,
+ "learning_rate": 0.0006,
+ "loss": 3.5186777114868164,
+ "step": 4703
+ },
+ {
+ "epoch": 65.33551769331586,
+ "grad_norm": 0.2073124349117279,
+ "learning_rate": 0.0006,
+ "loss": 3.5397891998291016,
+ "step": 4704
+ },
+ {
+ "epoch": 65.34949759720402,
+ "grad_norm": 0.1948464810848236,
+ "learning_rate": 0.0006,
+ "loss": 3.5413217544555664,
+ "step": 4705
+ },
+ {
+ "epoch": 65.36347750109218,
+ "grad_norm": 0.19741199910640717,
+ "learning_rate": 0.0006,
+ "loss": 3.515199899673462,
+ "step": 4706
+ },
+ {
+ "epoch": 65.37745740498035,
+ "grad_norm": 0.22518441081047058,
+ "learning_rate": 0.0006,
+ "loss": 3.512284278869629,
+ "step": 4707
+ },
+ {
+ "epoch": 65.3914373088685,
+ "grad_norm": 0.24368613958358765,
+ "learning_rate": 0.0006,
+ "loss": 3.528355121612549,
+ "step": 4708
+ },
+ {
+ "epoch": 65.40541721275666,
+ "grad_norm": 0.21857064962387085,
+ "learning_rate": 0.0006,
+ "loss": 3.494401454925537,
+ "step": 4709
+ },
+ {
+ "epoch": 65.41939711664482,
+ "grad_norm": 0.2199285924434662,
+ "learning_rate": 0.0006,
+ "loss": 3.49814772605896,
+ "step": 4710
+ },
+ {
+ "epoch": 65.43337702053299,
+ "grad_norm": 0.23801206052303314,
+ "learning_rate": 0.0006,
+ "loss": 3.4678444862365723,
+ "step": 4711
+ },
+ {
+ "epoch": 65.44735692442114,
+ "grad_norm": 0.231369748711586,
+ "learning_rate": 0.0006,
+ "loss": 3.501521587371826,
+ "step": 4712
+ },
+ {
+ "epoch": 65.4613368283093,
+ "grad_norm": 0.20447038114070892,
+ "learning_rate": 0.0006,
+ "loss": 3.508510112762451,
+ "step": 4713
+ },
+ {
+ "epoch": 65.47531673219747,
+ "grad_norm": 0.21331779658794403,
+ "learning_rate": 0.0006,
+ "loss": 3.498544692993164,
+ "step": 4714
+ },
+ {
+ "epoch": 65.48929663608563,
+ "grad_norm": 0.2365437150001526,
+ "learning_rate": 0.0006,
+ "loss": 3.4972000122070312,
+ "step": 4715
+ },
+ {
+ "epoch": 65.50327653997378,
+ "grad_norm": 0.2236112356185913,
+ "learning_rate": 0.0006,
+ "loss": 3.5397965908050537,
+ "step": 4716
+ },
+ {
+ "epoch": 65.51725644386195,
+ "grad_norm": 0.20595021545886993,
+ "learning_rate": 0.0006,
+ "loss": 3.532902717590332,
+ "step": 4717
+ },
+ {
+ "epoch": 65.53123634775011,
+ "grad_norm": 0.2043730616569519,
+ "learning_rate": 0.0006,
+ "loss": 3.5136585235595703,
+ "step": 4718
+ },
+ {
+ "epoch": 65.54521625163827,
+ "grad_norm": 0.21925127506256104,
+ "learning_rate": 0.0006,
+ "loss": 3.526590347290039,
+ "step": 4719
+ },
+ {
+ "epoch": 65.55919615552644,
+ "grad_norm": 0.21580299735069275,
+ "learning_rate": 0.0006,
+ "loss": 3.530301332473755,
+ "step": 4720
+ },
+ {
+ "epoch": 65.57317605941459,
+ "grad_norm": 0.2296830266714096,
+ "learning_rate": 0.0006,
+ "loss": 3.527580976486206,
+ "step": 4721
+ },
+ {
+ "epoch": 65.58715596330275,
+ "grad_norm": 0.21846120059490204,
+ "learning_rate": 0.0006,
+ "loss": 3.524075746536255,
+ "step": 4722
+ },
+ {
+ "epoch": 65.60113586719092,
+ "grad_norm": 0.19835807383060455,
+ "learning_rate": 0.0006,
+ "loss": 3.4560012817382812,
+ "step": 4723
+ },
+ {
+ "epoch": 65.61511577107908,
+ "grad_norm": 0.20501157641410828,
+ "learning_rate": 0.0006,
+ "loss": 3.508017063140869,
+ "step": 4724
+ },
+ {
+ "epoch": 65.62909567496723,
+ "grad_norm": 0.21347478032112122,
+ "learning_rate": 0.0006,
+ "loss": 3.5479536056518555,
+ "step": 4725
+ },
+ {
+ "epoch": 65.6430755788554,
+ "grad_norm": 0.19286541640758514,
+ "learning_rate": 0.0006,
+ "loss": 3.537360906600952,
+ "step": 4726
+ },
+ {
+ "epoch": 65.65705548274356,
+ "grad_norm": 0.19364185631275177,
+ "learning_rate": 0.0006,
+ "loss": 3.5186867713928223,
+ "step": 4727
+ },
+ {
+ "epoch": 65.67103538663171,
+ "grad_norm": 0.19047997891902924,
+ "learning_rate": 0.0006,
+ "loss": 3.5242767333984375,
+ "step": 4728
+ },
+ {
+ "epoch": 65.68501529051987,
+ "grad_norm": 0.19712361693382263,
+ "learning_rate": 0.0006,
+ "loss": 3.5176010131835938,
+ "step": 4729
+ },
+ {
+ "epoch": 65.69899519440804,
+ "grad_norm": 0.2034953087568283,
+ "learning_rate": 0.0006,
+ "loss": 3.510268211364746,
+ "step": 4730
+ },
+ {
+ "epoch": 65.7129750982962,
+ "grad_norm": 0.20022697746753693,
+ "learning_rate": 0.0006,
+ "loss": 3.53619647026062,
+ "step": 4731
+ },
+ {
+ "epoch": 65.72695500218435,
+ "grad_norm": 0.20698072016239166,
+ "learning_rate": 0.0006,
+ "loss": 3.5179615020751953,
+ "step": 4732
+ },
+ {
+ "epoch": 65.74093490607252,
+ "grad_norm": 0.2297508418560028,
+ "learning_rate": 0.0006,
+ "loss": 3.5308024883270264,
+ "step": 4733
+ },
+ {
+ "epoch": 65.75491480996068,
+ "grad_norm": 0.227255716919899,
+ "learning_rate": 0.0006,
+ "loss": 3.5443387031555176,
+ "step": 4734
+ },
+ {
+ "epoch": 65.76889471384884,
+ "grad_norm": 0.21772262454032898,
+ "learning_rate": 0.0006,
+ "loss": 3.52345871925354,
+ "step": 4735
+ },
+ {
+ "epoch": 65.78287461773701,
+ "grad_norm": 0.22124525904655457,
+ "learning_rate": 0.0006,
+ "loss": 3.5262577533721924,
+ "step": 4736
+ },
+ {
+ "epoch": 65.79685452162516,
+ "grad_norm": 0.22992224991321564,
+ "learning_rate": 0.0006,
+ "loss": 3.531507730484009,
+ "step": 4737
+ },
+ {
+ "epoch": 65.81083442551332,
+ "grad_norm": 0.24775296449661255,
+ "learning_rate": 0.0006,
+ "loss": 3.4781999588012695,
+ "step": 4738
+ },
+ {
+ "epoch": 65.82481432940149,
+ "grad_norm": 0.24917690455913544,
+ "learning_rate": 0.0006,
+ "loss": 3.5157413482666016,
+ "step": 4739
+ },
+ {
+ "epoch": 65.83879423328965,
+ "grad_norm": 0.23374824225902557,
+ "learning_rate": 0.0006,
+ "loss": 3.536634683609009,
+ "step": 4740
+ },
+ {
+ "epoch": 65.8527741371778,
+ "grad_norm": 0.25592541694641113,
+ "learning_rate": 0.0006,
+ "loss": 3.5343942642211914,
+ "step": 4741
+ },
+ {
+ "epoch": 65.86675404106597,
+ "grad_norm": 0.2698819935321808,
+ "learning_rate": 0.0006,
+ "loss": 3.4906277656555176,
+ "step": 4742
+ },
+ {
+ "epoch": 65.88073394495413,
+ "grad_norm": 0.2175036370754242,
+ "learning_rate": 0.0006,
+ "loss": 3.506230354309082,
+ "step": 4743
+ },
+ {
+ "epoch": 65.89471384884229,
+ "grad_norm": 0.22451810538768768,
+ "learning_rate": 0.0006,
+ "loss": 3.5139262676239014,
+ "step": 4744
+ },
+ {
+ "epoch": 65.90869375273044,
+ "grad_norm": 0.24293720722198486,
+ "learning_rate": 0.0006,
+ "loss": 3.528148651123047,
+ "step": 4745
+ },
+ {
+ "epoch": 65.92267365661861,
+ "grad_norm": 0.2138707935810089,
+ "learning_rate": 0.0006,
+ "loss": 3.516911029815674,
+ "step": 4746
+ },
+ {
+ "epoch": 65.93665356050677,
+ "grad_norm": 0.2216160148382187,
+ "learning_rate": 0.0006,
+ "loss": 3.540201187133789,
+ "step": 4747
+ },
+ {
+ "epoch": 65.95063346439493,
+ "grad_norm": 0.2276899367570877,
+ "learning_rate": 0.0006,
+ "loss": 3.525435447692871,
+ "step": 4748
+ },
+ {
+ "epoch": 65.9646133682831,
+ "grad_norm": 0.2441754788160324,
+ "learning_rate": 0.0006,
+ "loss": 3.5337369441986084,
+ "step": 4749
+ },
+ {
+ "epoch": 65.97859327217125,
+ "grad_norm": 0.2364634871482849,
+ "learning_rate": 0.0006,
+ "loss": 3.5289382934570312,
+ "step": 4750
+ },
+ {
+ "epoch": 65.99257317605941,
+ "grad_norm": 0.2322802096605301,
+ "learning_rate": 0.0006,
+ "loss": 3.519960403442383,
+ "step": 4751
+ },
+ {
+ "epoch": 66.0,
+ "grad_norm": 0.28910940885543823,
+ "learning_rate": 0.0006,
+ "loss": 3.535785436630249,
+ "step": 4752
+ },
+ {
+ "epoch": 66.0,
+ "eval_loss": 3.9755074977874756,
+ "eval_runtime": 44.9956,
+ "eval_samples_per_second": 54.272,
+ "eval_steps_per_second": 3.4,
+ "step": 4752
+ },
+ {
+ "epoch": 66.01397990388816,
+ "grad_norm": 0.2833491861820221,
+ "learning_rate": 0.0006,
+ "loss": 3.4532885551452637,
+ "step": 4753
+ },
+ {
+ "epoch": 66.02795980777633,
+ "grad_norm": 0.31011638045310974,
+ "learning_rate": 0.0006,
+ "loss": 3.5164999961853027,
+ "step": 4754
+ },
+ {
+ "epoch": 66.04193971166448,
+ "grad_norm": 0.34583768248558044,
+ "learning_rate": 0.0006,
+ "loss": 3.463331937789917,
+ "step": 4755
+ },
+ {
+ "epoch": 66.05591961555264,
+ "grad_norm": 0.3586544990539551,
+ "learning_rate": 0.0006,
+ "loss": 3.4739010334014893,
+ "step": 4756
+ },
+ {
+ "epoch": 66.06989951944081,
+ "grad_norm": 0.32337963581085205,
+ "learning_rate": 0.0006,
+ "loss": 3.5309596061706543,
+ "step": 4757
+ },
+ {
+ "epoch": 66.08387942332897,
+ "grad_norm": 0.3091002404689789,
+ "learning_rate": 0.0006,
+ "loss": 3.479280471801758,
+ "step": 4758
+ },
+ {
+ "epoch": 66.09785932721712,
+ "grad_norm": 0.29722821712493896,
+ "learning_rate": 0.0006,
+ "loss": 3.52632999420166,
+ "step": 4759
+ },
+ {
+ "epoch": 66.1118392311053,
+ "grad_norm": 0.2636614739894867,
+ "learning_rate": 0.0006,
+ "loss": 3.4953694343566895,
+ "step": 4760
+ },
+ {
+ "epoch": 66.12581913499345,
+ "grad_norm": 0.2646677494049072,
+ "learning_rate": 0.0006,
+ "loss": 3.519223213195801,
+ "step": 4761
+ },
+ {
+ "epoch": 66.1397990388816,
+ "grad_norm": 0.26999902725219727,
+ "learning_rate": 0.0006,
+ "loss": 3.500627040863037,
+ "step": 4762
+ },
+ {
+ "epoch": 66.15377894276976,
+ "grad_norm": 0.26489800214767456,
+ "learning_rate": 0.0006,
+ "loss": 3.486992120742798,
+ "step": 4763
+ },
+ {
+ "epoch": 66.16775884665793,
+ "grad_norm": 0.23870280385017395,
+ "learning_rate": 0.0006,
+ "loss": 3.5312767028808594,
+ "step": 4764
+ },
+ {
+ "epoch": 66.18173875054609,
+ "grad_norm": 0.260374516248703,
+ "learning_rate": 0.0006,
+ "loss": 3.529757499694824,
+ "step": 4765
+ },
+ {
+ "epoch": 66.19571865443424,
+ "grad_norm": 0.22300437092781067,
+ "learning_rate": 0.0006,
+ "loss": 3.534423351287842,
+ "step": 4766
+ },
+ {
+ "epoch": 66.20969855832242,
+ "grad_norm": 0.22216713428497314,
+ "learning_rate": 0.0006,
+ "loss": 3.4944376945495605,
+ "step": 4767
+ },
+ {
+ "epoch": 66.22367846221057,
+ "grad_norm": 0.22038567066192627,
+ "learning_rate": 0.0006,
+ "loss": 3.500737190246582,
+ "step": 4768
+ },
+ {
+ "epoch": 66.23765836609873,
+ "grad_norm": 0.23068127036094666,
+ "learning_rate": 0.0006,
+ "loss": 3.486678123474121,
+ "step": 4769
+ },
+ {
+ "epoch": 66.2516382699869,
+ "grad_norm": 0.22809696197509766,
+ "learning_rate": 0.0006,
+ "loss": 3.49131441116333,
+ "step": 4770
+ },
+ {
+ "epoch": 66.26561817387505,
+ "grad_norm": 0.2096482366323471,
+ "learning_rate": 0.0006,
+ "loss": 3.462193012237549,
+ "step": 4771
+ },
+ {
+ "epoch": 66.27959807776321,
+ "grad_norm": 0.20821219682693481,
+ "learning_rate": 0.0006,
+ "loss": 3.482736110687256,
+ "step": 4772
+ },
+ {
+ "epoch": 66.29357798165138,
+ "grad_norm": 0.20735417306423187,
+ "learning_rate": 0.0006,
+ "loss": 3.4810829162597656,
+ "step": 4773
+ },
+ {
+ "epoch": 66.30755788553954,
+ "grad_norm": 0.21598318219184875,
+ "learning_rate": 0.0006,
+ "loss": 3.5151000022888184,
+ "step": 4774
+ },
+ {
+ "epoch": 66.3215377894277,
+ "grad_norm": 0.20589035749435425,
+ "learning_rate": 0.0006,
+ "loss": 3.4938106536865234,
+ "step": 4775
+ },
+ {
+ "epoch": 66.33551769331586,
+ "grad_norm": 0.22494125366210938,
+ "learning_rate": 0.0006,
+ "loss": 3.4739134311676025,
+ "step": 4776
+ },
+ {
+ "epoch": 66.34949759720402,
+ "grad_norm": 0.24715618789196014,
+ "learning_rate": 0.0006,
+ "loss": 3.492598295211792,
+ "step": 4777
+ },
+ {
+ "epoch": 66.36347750109218,
+ "grad_norm": 0.26689210534095764,
+ "learning_rate": 0.0006,
+ "loss": 3.5183334350585938,
+ "step": 4778
+ },
+ {
+ "epoch": 66.37745740498035,
+ "grad_norm": 0.29018405079841614,
+ "learning_rate": 0.0006,
+ "loss": 3.4874320030212402,
+ "step": 4779
+ },
+ {
+ "epoch": 66.3914373088685,
+ "grad_norm": 0.2511773109436035,
+ "learning_rate": 0.0006,
+ "loss": 3.5105361938476562,
+ "step": 4780
+ },
+ {
+ "epoch": 66.40541721275666,
+ "grad_norm": 0.20808005332946777,
+ "learning_rate": 0.0006,
+ "loss": 3.4932327270507812,
+ "step": 4781
+ },
+ {
+ "epoch": 66.41939711664482,
+ "grad_norm": 0.21036715805530548,
+ "learning_rate": 0.0006,
+ "loss": 3.5223588943481445,
+ "step": 4782
+ },
+ {
+ "epoch": 66.43337702053299,
+ "grad_norm": 0.2151600569486618,
+ "learning_rate": 0.0006,
+ "loss": 3.491854190826416,
+ "step": 4783
+ },
+ {
+ "epoch": 66.44735692442114,
+ "grad_norm": 0.23702189326286316,
+ "learning_rate": 0.0006,
+ "loss": 3.4869368076324463,
+ "step": 4784
+ },
+ {
+ "epoch": 66.4613368283093,
+ "grad_norm": 0.23089149594306946,
+ "learning_rate": 0.0006,
+ "loss": 3.5014419555664062,
+ "step": 4785
+ },
+ {
+ "epoch": 66.47531673219747,
+ "grad_norm": 0.25527265667915344,
+ "learning_rate": 0.0006,
+ "loss": 3.5148048400878906,
+ "step": 4786
+ },
+ {
+ "epoch": 66.48929663608563,
+ "grad_norm": 0.2308386117219925,
+ "learning_rate": 0.0006,
+ "loss": 3.5196022987365723,
+ "step": 4787
+ },
+ {
+ "epoch": 66.50327653997378,
+ "grad_norm": 0.23467418551445007,
+ "learning_rate": 0.0006,
+ "loss": 3.478280544281006,
+ "step": 4788
+ },
+ {
+ "epoch": 66.51725644386195,
+ "grad_norm": 0.23607908189296722,
+ "learning_rate": 0.0006,
+ "loss": 3.4826481342315674,
+ "step": 4789
+ },
+ {
+ "epoch": 66.53123634775011,
+ "grad_norm": 0.255309522151947,
+ "learning_rate": 0.0006,
+ "loss": 3.498870849609375,
+ "step": 4790
+ },
+ {
+ "epoch": 66.54521625163827,
+ "grad_norm": 0.29246363043785095,
+ "learning_rate": 0.0006,
+ "loss": 3.544440269470215,
+ "step": 4791
+ },
+ {
+ "epoch": 66.55919615552644,
+ "grad_norm": 0.2658552825450897,
+ "learning_rate": 0.0006,
+ "loss": 3.4844512939453125,
+ "step": 4792
+ },
+ {
+ "epoch": 66.57317605941459,
+ "grad_norm": 0.23498542606830597,
+ "learning_rate": 0.0006,
+ "loss": 3.5411434173583984,
+ "step": 4793
+ },
+ {
+ "epoch": 66.58715596330275,
+ "grad_norm": 0.2616438567638397,
+ "learning_rate": 0.0006,
+ "loss": 3.501821994781494,
+ "step": 4794
+ },
+ {
+ "epoch": 66.60113586719092,
+ "grad_norm": 0.2577981650829315,
+ "learning_rate": 0.0006,
+ "loss": 3.519040584564209,
+ "step": 4795
+ },
+ {
+ "epoch": 66.61511577107908,
+ "grad_norm": 0.25896304845809937,
+ "learning_rate": 0.0006,
+ "loss": 3.514458656311035,
+ "step": 4796
+ },
+ {
+ "epoch": 66.62909567496723,
+ "grad_norm": 0.26136472821235657,
+ "learning_rate": 0.0006,
+ "loss": 3.5054283142089844,
+ "step": 4797
+ },
+ {
+ "epoch": 66.6430755788554,
+ "grad_norm": 0.2134191244840622,
+ "learning_rate": 0.0006,
+ "loss": 3.551358222961426,
+ "step": 4798
+ },
+ {
+ "epoch": 66.65705548274356,
+ "grad_norm": 0.20154543220996857,
+ "learning_rate": 0.0006,
+ "loss": 3.5363516807556152,
+ "step": 4799
+ },
+ {
+ "epoch": 66.67103538663171,
+ "grad_norm": 0.20807082951068878,
+ "learning_rate": 0.0006,
+ "loss": 3.4861817359924316,
+ "step": 4800
+ },
+ {
+ "epoch": 66.68501529051987,
+ "grad_norm": 0.22268050909042358,
+ "learning_rate": 0.0006,
+ "loss": 3.5229034423828125,
+ "step": 4801
+ },
+ {
+ "epoch": 66.69899519440804,
+ "grad_norm": 0.21031907200813293,
+ "learning_rate": 0.0006,
+ "loss": 3.499587059020996,
+ "step": 4802
+ },
+ {
+ "epoch": 66.7129750982962,
+ "grad_norm": 0.207321435213089,
+ "learning_rate": 0.0006,
+ "loss": 3.5246481895446777,
+ "step": 4803
+ },
+ {
+ "epoch": 66.72695500218435,
+ "grad_norm": 0.21961352229118347,
+ "learning_rate": 0.0006,
+ "loss": 3.5126147270202637,
+ "step": 4804
+ },
+ {
+ "epoch": 66.74093490607252,
+ "grad_norm": 0.2144167572259903,
+ "learning_rate": 0.0006,
+ "loss": 3.5319013595581055,
+ "step": 4805
+ },
+ {
+ "epoch": 66.75491480996068,
+ "grad_norm": 0.19109441339969635,
+ "learning_rate": 0.0006,
+ "loss": 3.5124895572662354,
+ "step": 4806
+ },
+ {
+ "epoch": 66.76889471384884,
+ "grad_norm": 0.20463025569915771,
+ "learning_rate": 0.0006,
+ "loss": 3.5368666648864746,
+ "step": 4807
+ },
+ {
+ "epoch": 66.78287461773701,
+ "grad_norm": 0.20978771150112152,
+ "learning_rate": 0.0006,
+ "loss": 3.5166687965393066,
+ "step": 4808
+ },
+ {
+ "epoch": 66.79685452162516,
+ "grad_norm": 0.2258925437927246,
+ "learning_rate": 0.0006,
+ "loss": 3.532341957092285,
+ "step": 4809
+ },
+ {
+ "epoch": 66.81083442551332,
+ "grad_norm": 0.21758350729942322,
+ "learning_rate": 0.0006,
+ "loss": 3.5155858993530273,
+ "step": 4810
+ },
+ {
+ "epoch": 66.82481432940149,
+ "grad_norm": 0.20124484598636627,
+ "learning_rate": 0.0006,
+ "loss": 3.491522789001465,
+ "step": 4811
+ },
+ {
+ "epoch": 66.83879423328965,
+ "grad_norm": 0.21627238392829895,
+ "learning_rate": 0.0006,
+ "loss": 3.5303220748901367,
+ "step": 4812
+ },
+ {
+ "epoch": 66.8527741371778,
+ "grad_norm": 0.21125555038452148,
+ "learning_rate": 0.0006,
+ "loss": 3.535466194152832,
+ "step": 4813
+ },
+ {
+ "epoch": 66.86675404106597,
+ "grad_norm": 0.2247028350830078,
+ "learning_rate": 0.0006,
+ "loss": 3.51188325881958,
+ "step": 4814
+ },
+ {
+ "epoch": 66.88073394495413,
+ "grad_norm": 0.21800914406776428,
+ "learning_rate": 0.0006,
+ "loss": 3.5084712505340576,
+ "step": 4815
+ },
+ {
+ "epoch": 66.89471384884229,
+ "grad_norm": 0.2118908166885376,
+ "learning_rate": 0.0006,
+ "loss": 3.5099692344665527,
+ "step": 4816
+ },
+ {
+ "epoch": 66.90869375273044,
+ "grad_norm": 0.22638460993766785,
+ "learning_rate": 0.0006,
+ "loss": 3.5099596977233887,
+ "step": 4817
+ },
+ {
+ "epoch": 66.92267365661861,
+ "grad_norm": 0.1987311840057373,
+ "learning_rate": 0.0006,
+ "loss": 3.5497078895568848,
+ "step": 4818
+ },
+ {
+ "epoch": 66.93665356050677,
+ "grad_norm": 0.21048952639102936,
+ "learning_rate": 0.0006,
+ "loss": 3.524364948272705,
+ "step": 4819
+ },
+ {
+ "epoch": 66.95063346439493,
+ "grad_norm": 0.21481701731681824,
+ "learning_rate": 0.0006,
+ "loss": 3.5121915340423584,
+ "step": 4820
+ },
+ {
+ "epoch": 66.9646133682831,
+ "grad_norm": 0.22060725092887878,
+ "learning_rate": 0.0006,
+ "loss": 3.5288822650909424,
+ "step": 4821
+ },
+ {
+ "epoch": 66.97859327217125,
+ "grad_norm": 0.22192992269992828,
+ "learning_rate": 0.0006,
+ "loss": 3.504401206970215,
+ "step": 4822
+ },
+ {
+ "epoch": 66.99257317605941,
+ "grad_norm": 0.21677598357200623,
+ "learning_rate": 0.0006,
+ "loss": 3.5447967052459717,
+ "step": 4823
+ },
+ {
+ "epoch": 67.0,
+ "grad_norm": 0.24961385130882263,
+ "learning_rate": 0.0006,
+ "loss": 3.4890012741088867,
+ "step": 4824
+ },
+ {
+ "epoch": 67.0,
+ "eval_loss": 3.9784040451049805,
+ "eval_runtime": 45.0843,
+ "eval_samples_per_second": 54.165,
+ "eval_steps_per_second": 3.394,
+ "step": 4824
+ },
+ {
+ "epoch": 67.01397990388816,
+ "grad_norm": 0.22992873191833496,
+ "learning_rate": 0.0006,
+ "loss": 3.470973491668701,
+ "step": 4825
+ },
+ {
+ "epoch": 67.02795980777633,
+ "grad_norm": 0.2189949005842209,
+ "learning_rate": 0.0006,
+ "loss": 3.4956774711608887,
+ "step": 4826
+ },
+ {
+ "epoch": 67.04193971166448,
+ "grad_norm": 0.22506096959114075,
+ "learning_rate": 0.0006,
+ "loss": 3.448911190032959,
+ "step": 4827
+ },
+ {
+ "epoch": 67.05591961555264,
+ "grad_norm": 0.2447187304496765,
+ "learning_rate": 0.0006,
+ "loss": 3.465512275695801,
+ "step": 4828
+ },
+ {
+ "epoch": 67.06989951944081,
+ "grad_norm": 0.27052751183509827,
+ "learning_rate": 0.0006,
+ "loss": 3.493760824203491,
+ "step": 4829
+ },
+ {
+ "epoch": 67.08387942332897,
+ "grad_norm": 0.29693296551704407,
+ "learning_rate": 0.0006,
+ "loss": 3.4922988414764404,
+ "step": 4830
+ },
+ {
+ "epoch": 67.09785932721712,
+ "grad_norm": 0.27461376786231995,
+ "learning_rate": 0.0006,
+ "loss": 3.4782471656799316,
+ "step": 4831
+ },
+ {
+ "epoch": 67.1118392311053,
+ "grad_norm": 0.21409225463867188,
+ "learning_rate": 0.0006,
+ "loss": 3.4636545181274414,
+ "step": 4832
+ },
+ {
+ "epoch": 67.12581913499345,
+ "grad_norm": 0.24362294375896454,
+ "learning_rate": 0.0006,
+ "loss": 3.4836316108703613,
+ "step": 4833
+ },
+ {
+ "epoch": 67.1397990388816,
+ "grad_norm": 0.3237941265106201,
+ "learning_rate": 0.0006,
+ "loss": 3.4853315353393555,
+ "step": 4834
+ },
+ {
+ "epoch": 67.15377894276976,
+ "grad_norm": 0.3138698935508728,
+ "learning_rate": 0.0006,
+ "loss": 3.5045557022094727,
+ "step": 4835
+ },
+ {
+ "epoch": 67.16775884665793,
+ "grad_norm": 0.24102728068828583,
+ "learning_rate": 0.0006,
+ "loss": 3.450237512588501,
+ "step": 4836
+ },
+ {
+ "epoch": 67.18173875054609,
+ "grad_norm": 0.22504228353500366,
+ "learning_rate": 0.0006,
+ "loss": 3.5141711235046387,
+ "step": 4837
+ },
+ {
+ "epoch": 67.19571865443424,
+ "grad_norm": 0.2226196974515915,
+ "learning_rate": 0.0006,
+ "loss": 3.4973597526550293,
+ "step": 4838
+ },
+ {
+ "epoch": 67.20969855832242,
+ "grad_norm": 0.23295332491397858,
+ "learning_rate": 0.0006,
+ "loss": 3.455085277557373,
+ "step": 4839
+ },
+ {
+ "epoch": 67.22367846221057,
+ "grad_norm": 0.24799001216888428,
+ "learning_rate": 0.0006,
+ "loss": 3.5016517639160156,
+ "step": 4840
+ },
+ {
+ "epoch": 67.23765836609873,
+ "grad_norm": 0.2431265115737915,
+ "learning_rate": 0.0006,
+ "loss": 3.5138516426086426,
+ "step": 4841
+ },
+ {
+ "epoch": 67.2516382699869,
+ "grad_norm": 0.22402037680149078,
+ "learning_rate": 0.0006,
+ "loss": 3.5154635906219482,
+ "step": 4842
+ },
+ {
+ "epoch": 67.26561817387505,
+ "grad_norm": 0.2097088098526001,
+ "learning_rate": 0.0006,
+ "loss": 3.512531280517578,
+ "step": 4843
+ },
+ {
+ "epoch": 67.27959807776321,
+ "grad_norm": 0.21303699910640717,
+ "learning_rate": 0.0006,
+ "loss": 3.489511728286743,
+ "step": 4844
+ },
+ {
+ "epoch": 67.29357798165138,
+ "grad_norm": 0.2164260894060135,
+ "learning_rate": 0.0006,
+ "loss": 3.521756172180176,
+ "step": 4845
+ },
+ {
+ "epoch": 67.30755788553954,
+ "grad_norm": 0.2179967612028122,
+ "learning_rate": 0.0006,
+ "loss": 3.4991297721862793,
+ "step": 4846
+ },
+ {
+ "epoch": 67.3215377894277,
+ "grad_norm": 0.21892501413822174,
+ "learning_rate": 0.0006,
+ "loss": 3.475011110305786,
+ "step": 4847
+ },
+ {
+ "epoch": 67.33551769331586,
+ "grad_norm": 0.2372686117887497,
+ "learning_rate": 0.0006,
+ "loss": 3.49537992477417,
+ "step": 4848
+ },
+ {
+ "epoch": 67.34949759720402,
+ "grad_norm": 0.24897949397563934,
+ "learning_rate": 0.0006,
+ "loss": 3.4762938022613525,
+ "step": 4849
+ },
+ {
+ "epoch": 67.36347750109218,
+ "grad_norm": 0.24987933039665222,
+ "learning_rate": 0.0006,
+ "loss": 3.511708974838257,
+ "step": 4850
+ },
+ {
+ "epoch": 67.37745740498035,
+ "grad_norm": 0.24062976241111755,
+ "learning_rate": 0.0006,
+ "loss": 3.4955873489379883,
+ "step": 4851
+ },
+ {
+ "epoch": 67.3914373088685,
+ "grad_norm": 0.2277272790670395,
+ "learning_rate": 0.0006,
+ "loss": 3.5036606788635254,
+ "step": 4852
+ },
+ {
+ "epoch": 67.40541721275666,
+ "grad_norm": 0.23996487259864807,
+ "learning_rate": 0.0006,
+ "loss": 3.515568971633911,
+ "step": 4853
+ },
+ {
+ "epoch": 67.41939711664482,
+ "grad_norm": 0.23224318027496338,
+ "learning_rate": 0.0006,
+ "loss": 3.4915125370025635,
+ "step": 4854
+ },
+ {
+ "epoch": 67.43337702053299,
+ "grad_norm": 0.21011298894882202,
+ "learning_rate": 0.0006,
+ "loss": 3.5076327323913574,
+ "step": 4855
+ },
+ {
+ "epoch": 67.44735692442114,
+ "grad_norm": 0.21975480020046234,
+ "learning_rate": 0.0006,
+ "loss": 3.4929163455963135,
+ "step": 4856
+ },
+ {
+ "epoch": 67.4613368283093,
+ "grad_norm": 0.21966299414634705,
+ "learning_rate": 0.0006,
+ "loss": 3.50154447555542,
+ "step": 4857
+ },
+ {
+ "epoch": 67.47531673219747,
+ "grad_norm": 0.2167058289051056,
+ "learning_rate": 0.0006,
+ "loss": 3.4866533279418945,
+ "step": 4858
+ },
+ {
+ "epoch": 67.48929663608563,
+ "grad_norm": 0.2072296291589737,
+ "learning_rate": 0.0006,
+ "loss": 3.506241798400879,
+ "step": 4859
+ },
+ {
+ "epoch": 67.50327653997378,
+ "grad_norm": 0.2358800321817398,
+ "learning_rate": 0.0006,
+ "loss": 3.51871919631958,
+ "step": 4860
+ },
+ {
+ "epoch": 67.51725644386195,
+ "grad_norm": 0.2841838598251343,
+ "learning_rate": 0.0006,
+ "loss": 3.531181812286377,
+ "step": 4861
+ },
+ {
+ "epoch": 67.53123634775011,
+ "grad_norm": 0.2744826078414917,
+ "learning_rate": 0.0006,
+ "loss": 3.4916810989379883,
+ "step": 4862
+ },
+ {
+ "epoch": 67.54521625163827,
+ "grad_norm": 0.229517862200737,
+ "learning_rate": 0.0006,
+ "loss": 3.522495746612549,
+ "step": 4863
+ },
+ {
+ "epoch": 67.55919615552644,
+ "grad_norm": 0.22933268547058105,
+ "learning_rate": 0.0006,
+ "loss": 3.522249698638916,
+ "step": 4864
+ },
+ {
+ "epoch": 67.57317605941459,
+ "grad_norm": 0.2578641176223755,
+ "learning_rate": 0.0006,
+ "loss": 3.497955799102783,
+ "step": 4865
+ },
+ {
+ "epoch": 67.58715596330275,
+ "grad_norm": 0.26098695397377014,
+ "learning_rate": 0.0006,
+ "loss": 3.508647918701172,
+ "step": 4866
+ },
+ {
+ "epoch": 67.60113586719092,
+ "grad_norm": 0.26429283618927,
+ "learning_rate": 0.0006,
+ "loss": 3.504948139190674,
+ "step": 4867
+ },
+ {
+ "epoch": 67.61511577107908,
+ "grad_norm": 0.2604367136955261,
+ "learning_rate": 0.0006,
+ "loss": 3.529656410217285,
+ "step": 4868
+ },
+ {
+ "epoch": 67.62909567496723,
+ "grad_norm": 0.26351016759872437,
+ "learning_rate": 0.0006,
+ "loss": 3.497729778289795,
+ "step": 4869
+ },
+ {
+ "epoch": 67.6430755788554,
+ "grad_norm": 0.23902031779289246,
+ "learning_rate": 0.0006,
+ "loss": 3.5174601078033447,
+ "step": 4870
+ },
+ {
+ "epoch": 67.65705548274356,
+ "grad_norm": 0.2439061552286148,
+ "learning_rate": 0.0006,
+ "loss": 3.472304344177246,
+ "step": 4871
+ },
+ {
+ "epoch": 67.67103538663171,
+ "grad_norm": 0.28729668259620667,
+ "learning_rate": 0.0006,
+ "loss": 3.4945883750915527,
+ "step": 4872
+ },
+ {
+ "epoch": 67.68501529051987,
+ "grad_norm": 0.2690763771533966,
+ "learning_rate": 0.0006,
+ "loss": 3.524843215942383,
+ "step": 4873
+ },
+ {
+ "epoch": 67.69899519440804,
+ "grad_norm": 0.24424311518669128,
+ "learning_rate": 0.0006,
+ "loss": 3.5337445735931396,
+ "step": 4874
+ },
+ {
+ "epoch": 67.7129750982962,
+ "grad_norm": 0.25736868381500244,
+ "learning_rate": 0.0006,
+ "loss": 3.51664400100708,
+ "step": 4875
+ },
+ {
+ "epoch": 67.72695500218435,
+ "grad_norm": 0.24504248797893524,
+ "learning_rate": 0.0006,
+ "loss": 3.5089268684387207,
+ "step": 4876
+ },
+ {
+ "epoch": 67.74093490607252,
+ "grad_norm": 0.24296091496944427,
+ "learning_rate": 0.0006,
+ "loss": 3.5506460666656494,
+ "step": 4877
+ },
+ {
+ "epoch": 67.75491480996068,
+ "grad_norm": 0.24984019994735718,
+ "learning_rate": 0.0006,
+ "loss": 3.5290684700012207,
+ "step": 4878
+ },
+ {
+ "epoch": 67.76889471384884,
+ "grad_norm": 0.23878677189350128,
+ "learning_rate": 0.0006,
+ "loss": 3.522343635559082,
+ "step": 4879
+ },
+ {
+ "epoch": 67.78287461773701,
+ "grad_norm": 0.2275245040655136,
+ "learning_rate": 0.0006,
+ "loss": 3.5218796730041504,
+ "step": 4880
+ },
+ {
+ "epoch": 67.79685452162516,
+ "grad_norm": 0.21045760810375214,
+ "learning_rate": 0.0006,
+ "loss": 3.512430191040039,
+ "step": 4881
+ },
+ {
+ "epoch": 67.81083442551332,
+ "grad_norm": 0.21902696788311005,
+ "learning_rate": 0.0006,
+ "loss": 3.537611484527588,
+ "step": 4882
+ },
+ {
+ "epoch": 67.82481432940149,
+ "grad_norm": 0.20757564902305603,
+ "learning_rate": 0.0006,
+ "loss": 3.470278263092041,
+ "step": 4883
+ },
+ {
+ "epoch": 67.83879423328965,
+ "grad_norm": 0.22352434694766998,
+ "learning_rate": 0.0006,
+ "loss": 3.4816718101501465,
+ "step": 4884
+ },
+ {
+ "epoch": 67.8527741371778,
+ "grad_norm": 0.20459680259227753,
+ "learning_rate": 0.0006,
+ "loss": 3.508671998977661,
+ "step": 4885
+ },
+ {
+ "epoch": 67.86675404106597,
+ "grad_norm": 0.20641672611236572,
+ "learning_rate": 0.0006,
+ "loss": 3.500471591949463,
+ "step": 4886
+ },
+ {
+ "epoch": 67.88073394495413,
+ "grad_norm": 0.20340596139431,
+ "learning_rate": 0.0006,
+ "loss": 3.5282673835754395,
+ "step": 4887
+ },
+ {
+ "epoch": 67.89471384884229,
+ "grad_norm": 0.20768426358699799,
+ "learning_rate": 0.0006,
+ "loss": 3.528446912765503,
+ "step": 4888
+ },
+ {
+ "epoch": 67.90869375273044,
+ "grad_norm": 0.19998659193515778,
+ "learning_rate": 0.0006,
+ "loss": 3.501742124557495,
+ "step": 4889
+ },
+ {
+ "epoch": 67.92267365661861,
+ "grad_norm": 0.20472751557826996,
+ "learning_rate": 0.0006,
+ "loss": 3.510523796081543,
+ "step": 4890
+ },
+ {
+ "epoch": 67.93665356050677,
+ "grad_norm": 0.21528398990631104,
+ "learning_rate": 0.0006,
+ "loss": 3.529409170150757,
+ "step": 4891
+ },
+ {
+ "epoch": 67.95063346439493,
+ "grad_norm": 0.19671283662319183,
+ "learning_rate": 0.0006,
+ "loss": 3.5512051582336426,
+ "step": 4892
+ },
+ {
+ "epoch": 67.9646133682831,
+ "grad_norm": 0.20629945397377014,
+ "learning_rate": 0.0006,
+ "loss": 3.5127525329589844,
+ "step": 4893
+ },
+ {
+ "epoch": 67.97859327217125,
+ "grad_norm": 0.2121579945087433,
+ "learning_rate": 0.0006,
+ "loss": 3.5242156982421875,
+ "step": 4894
+ },
+ {
+ "epoch": 67.99257317605941,
+ "grad_norm": 0.20770777761936188,
+ "learning_rate": 0.0006,
+ "loss": 3.5094361305236816,
+ "step": 4895
+ },
+ {
+ "epoch": 68.0,
+ "grad_norm": 0.2619984447956085,
+ "learning_rate": 0.0006,
+ "loss": 3.491684675216675,
+ "step": 4896
+ },
+ {
+ "epoch": 68.0,
+ "eval_loss": 3.97202730178833,
+ "eval_runtime": 44.2471,
+ "eval_samples_per_second": 55.19,
+ "eval_steps_per_second": 3.458,
+ "step": 4896
+ },
+ {
+ "epoch": 68.01397990388816,
+ "grad_norm": 0.25237807631492615,
+ "learning_rate": 0.0006,
+ "loss": 3.4720845222473145,
+ "step": 4897
+ },
+ {
+ "epoch": 68.02795980777633,
+ "grad_norm": 0.26686927676200867,
+ "learning_rate": 0.0006,
+ "loss": 3.4825453758239746,
+ "step": 4898
+ },
+ {
+ "epoch": 68.04193971166448,
+ "grad_norm": 0.2826477885246277,
+ "learning_rate": 0.0006,
+ "loss": 3.489805221557617,
+ "step": 4899
+ },
+ {
+ "epoch": 68.05591961555264,
+ "grad_norm": 0.291363000869751,
+ "learning_rate": 0.0006,
+ "loss": 3.464585304260254,
+ "step": 4900
+ },
+ {
+ "epoch": 68.06989951944081,
+ "grad_norm": 0.2645387649536133,
+ "learning_rate": 0.0006,
+ "loss": 3.4891953468322754,
+ "step": 4901
+ },
+ {
+ "epoch": 68.08387942332897,
+ "grad_norm": 0.2398659586906433,
+ "learning_rate": 0.0006,
+ "loss": 3.474371910095215,
+ "step": 4902
+ },
+ {
+ "epoch": 68.09785932721712,
+ "grad_norm": 0.23359309136867523,
+ "learning_rate": 0.0006,
+ "loss": 3.5011367797851562,
+ "step": 4903
+ },
+ {
+ "epoch": 68.1118392311053,
+ "grad_norm": 0.235616534948349,
+ "learning_rate": 0.0006,
+ "loss": 3.472562551498413,
+ "step": 4904
+ },
+ {
+ "epoch": 68.12581913499345,
+ "grad_norm": 0.25396600365638733,
+ "learning_rate": 0.0006,
+ "loss": 3.484182834625244,
+ "step": 4905
+ },
+ {
+ "epoch": 68.1397990388816,
+ "grad_norm": 0.2668958604335785,
+ "learning_rate": 0.0006,
+ "loss": 3.4625918865203857,
+ "step": 4906
+ },
+ {
+ "epoch": 68.15377894276976,
+ "grad_norm": 0.2608959674835205,
+ "learning_rate": 0.0006,
+ "loss": 3.4769415855407715,
+ "step": 4907
+ },
+ {
+ "epoch": 68.16775884665793,
+ "grad_norm": 0.2817389667034149,
+ "learning_rate": 0.0006,
+ "loss": 3.4722979068756104,
+ "step": 4908
+ },
+ {
+ "epoch": 68.18173875054609,
+ "grad_norm": 0.24425546824932098,
+ "learning_rate": 0.0006,
+ "loss": 3.4710354804992676,
+ "step": 4909
+ },
+ {
+ "epoch": 68.19571865443424,
+ "grad_norm": 0.2355373501777649,
+ "learning_rate": 0.0006,
+ "loss": 3.475369453430176,
+ "step": 4910
+ },
+ {
+ "epoch": 68.20969855832242,
+ "grad_norm": 0.23627427220344543,
+ "learning_rate": 0.0006,
+ "loss": 3.50154447555542,
+ "step": 4911
+ },
+ {
+ "epoch": 68.22367846221057,
+ "grad_norm": 0.21174706518650055,
+ "learning_rate": 0.0006,
+ "loss": 3.5018253326416016,
+ "step": 4912
+ },
+ {
+ "epoch": 68.23765836609873,
+ "grad_norm": 0.2101593017578125,
+ "learning_rate": 0.0006,
+ "loss": 3.4931211471557617,
+ "step": 4913
+ },
+ {
+ "epoch": 68.2516382699869,
+ "grad_norm": 0.21808475255966187,
+ "learning_rate": 0.0006,
+ "loss": 3.5047576427459717,
+ "step": 4914
+ },
+ {
+ "epoch": 68.26561817387505,
+ "grad_norm": 0.2354060262441635,
+ "learning_rate": 0.0006,
+ "loss": 3.471801996231079,
+ "step": 4915
+ },
+ {
+ "epoch": 68.27959807776321,
+ "grad_norm": 0.2839724123477936,
+ "learning_rate": 0.0006,
+ "loss": 3.4861397743225098,
+ "step": 4916
+ },
+ {
+ "epoch": 68.29357798165138,
+ "grad_norm": 0.2884398102760315,
+ "learning_rate": 0.0006,
+ "loss": 3.497713088989258,
+ "step": 4917
+ },
+ {
+ "epoch": 68.30755788553954,
+ "grad_norm": 0.24654951691627502,
+ "learning_rate": 0.0006,
+ "loss": 3.4795613288879395,
+ "step": 4918
+ },
+ {
+ "epoch": 68.3215377894277,
+ "grad_norm": 0.22197365760803223,
+ "learning_rate": 0.0006,
+ "loss": 3.495490550994873,
+ "step": 4919
+ },
+ {
+ "epoch": 68.33551769331586,
+ "grad_norm": 0.22666935622692108,
+ "learning_rate": 0.0006,
+ "loss": 3.4859418869018555,
+ "step": 4920
+ },
+ {
+ "epoch": 68.34949759720402,
+ "grad_norm": 0.22135236859321594,
+ "learning_rate": 0.0006,
+ "loss": 3.475436210632324,
+ "step": 4921
+ },
+ {
+ "epoch": 68.36347750109218,
+ "grad_norm": 0.28992167115211487,
+ "learning_rate": 0.0006,
+ "loss": 3.5220274925231934,
+ "step": 4922
+ },
+ {
+ "epoch": 68.37745740498035,
+ "grad_norm": 0.296501100063324,
+ "learning_rate": 0.0006,
+ "loss": 3.4783244132995605,
+ "step": 4923
+ },
+ {
+ "epoch": 68.3914373088685,
+ "grad_norm": 0.24111351370811462,
+ "learning_rate": 0.0006,
+ "loss": 3.4972972869873047,
+ "step": 4924
+ },
+ {
+ "epoch": 68.40541721275666,
+ "grad_norm": 0.22319315373897552,
+ "learning_rate": 0.0006,
+ "loss": 3.517050266265869,
+ "step": 4925
+ },
+ {
+ "epoch": 68.41939711664482,
+ "grad_norm": 0.20984329283237457,
+ "learning_rate": 0.0006,
+ "loss": 3.5097880363464355,
+ "step": 4926
+ },
+ {
+ "epoch": 68.43337702053299,
+ "grad_norm": 0.2221212387084961,
+ "learning_rate": 0.0006,
+ "loss": 3.4824156761169434,
+ "step": 4927
+ },
+ {
+ "epoch": 68.44735692442114,
+ "grad_norm": 0.23731078207492828,
+ "learning_rate": 0.0006,
+ "loss": 3.5319526195526123,
+ "step": 4928
+ },
+ {
+ "epoch": 68.4613368283093,
+ "grad_norm": 0.233421191573143,
+ "learning_rate": 0.0006,
+ "loss": 3.4952187538146973,
+ "step": 4929
+ },
+ {
+ "epoch": 68.47531673219747,
+ "grad_norm": 0.2320558875799179,
+ "learning_rate": 0.0006,
+ "loss": 3.5152385234832764,
+ "step": 4930
+ },
+ {
+ "epoch": 68.48929663608563,
+ "grad_norm": 0.21786290407180786,
+ "learning_rate": 0.0006,
+ "loss": 3.4857373237609863,
+ "step": 4931
+ },
+ {
+ "epoch": 68.50327653997378,
+ "grad_norm": 0.20560047030448914,
+ "learning_rate": 0.0006,
+ "loss": 3.487344264984131,
+ "step": 4932
+ },
+ {
+ "epoch": 68.51725644386195,
+ "grad_norm": 0.2326865941286087,
+ "learning_rate": 0.0006,
+ "loss": 3.5202066898345947,
+ "step": 4933
+ },
+ {
+ "epoch": 68.53123634775011,
+ "grad_norm": 0.2338377833366394,
+ "learning_rate": 0.0006,
+ "loss": 3.4967358112335205,
+ "step": 4934
+ },
+ {
+ "epoch": 68.54521625163827,
+ "grad_norm": 0.22698800265789032,
+ "learning_rate": 0.0006,
+ "loss": 3.484452724456787,
+ "step": 4935
+ },
+ {
+ "epoch": 68.55919615552644,
+ "grad_norm": 0.21141181886196136,
+ "learning_rate": 0.0006,
+ "loss": 3.4950156211853027,
+ "step": 4936
+ },
+ {
+ "epoch": 68.57317605941459,
+ "grad_norm": 0.22393199801445007,
+ "learning_rate": 0.0006,
+ "loss": 3.4950199127197266,
+ "step": 4937
+ },
+ {
+ "epoch": 68.58715596330275,
+ "grad_norm": 0.22276045382022858,
+ "learning_rate": 0.0006,
+ "loss": 3.5180115699768066,
+ "step": 4938
+ },
+ {
+ "epoch": 68.60113586719092,
+ "grad_norm": 0.22738748788833618,
+ "learning_rate": 0.0006,
+ "loss": 3.5053911209106445,
+ "step": 4939
+ },
+ {
+ "epoch": 68.61511577107908,
+ "grad_norm": 0.21496275067329407,
+ "learning_rate": 0.0006,
+ "loss": 3.5315306186676025,
+ "step": 4940
+ },
+ {
+ "epoch": 68.62909567496723,
+ "grad_norm": 0.20695674419403076,
+ "learning_rate": 0.0006,
+ "loss": 3.514780044555664,
+ "step": 4941
+ },
+ {
+ "epoch": 68.6430755788554,
+ "grad_norm": 0.22777840495109558,
+ "learning_rate": 0.0006,
+ "loss": 3.5249099731445312,
+ "step": 4942
+ },
+ {
+ "epoch": 68.65705548274356,
+ "grad_norm": 0.26664453744888306,
+ "learning_rate": 0.0006,
+ "loss": 3.4763400554656982,
+ "step": 4943
+ },
+ {
+ "epoch": 68.67103538663171,
+ "grad_norm": 0.3005792498588562,
+ "learning_rate": 0.0006,
+ "loss": 3.4936861991882324,
+ "step": 4944
+ },
+ {
+ "epoch": 68.68501529051987,
+ "grad_norm": 0.2860395908355713,
+ "learning_rate": 0.0006,
+ "loss": 3.4994754791259766,
+ "step": 4945
+ },
+ {
+ "epoch": 68.69899519440804,
+ "grad_norm": 0.21164822578430176,
+ "learning_rate": 0.0006,
+ "loss": 3.5011136531829834,
+ "step": 4946
+ },
+ {
+ "epoch": 68.7129750982962,
+ "grad_norm": 0.2122834324836731,
+ "learning_rate": 0.0006,
+ "loss": 3.52018404006958,
+ "step": 4947
+ },
+ {
+ "epoch": 68.72695500218435,
+ "grad_norm": 0.23951229453086853,
+ "learning_rate": 0.0006,
+ "loss": 3.4910717010498047,
+ "step": 4948
+ },
+ {
+ "epoch": 68.74093490607252,
+ "grad_norm": 0.22745490074157715,
+ "learning_rate": 0.0006,
+ "loss": 3.5251622200012207,
+ "step": 4949
+ },
+ {
+ "epoch": 68.75491480996068,
+ "grad_norm": 0.21616250276565552,
+ "learning_rate": 0.0006,
+ "loss": 3.4933743476867676,
+ "step": 4950
+ },
+ {
+ "epoch": 68.76889471384884,
+ "grad_norm": 0.2164236605167389,
+ "learning_rate": 0.0006,
+ "loss": 3.513286590576172,
+ "step": 4951
+ },
+ {
+ "epoch": 68.78287461773701,
+ "grad_norm": 0.2450464814901352,
+ "learning_rate": 0.0006,
+ "loss": 3.5084245204925537,
+ "step": 4952
+ },
+ {
+ "epoch": 68.79685452162516,
+ "grad_norm": 0.29221615195274353,
+ "learning_rate": 0.0006,
+ "loss": 3.5463311672210693,
+ "step": 4953
+ },
+ {
+ "epoch": 68.81083442551332,
+ "grad_norm": 0.24574553966522217,
+ "learning_rate": 0.0006,
+ "loss": 3.5099716186523438,
+ "step": 4954
+ },
+ {
+ "epoch": 68.82481432940149,
+ "grad_norm": 0.20879139006137848,
+ "learning_rate": 0.0006,
+ "loss": 3.5220701694488525,
+ "step": 4955
+ },
+ {
+ "epoch": 68.83879423328965,
+ "grad_norm": 0.295693963766098,
+ "learning_rate": 0.0006,
+ "loss": 3.4854037761688232,
+ "step": 4956
+ },
+ {
+ "epoch": 68.8527741371778,
+ "grad_norm": 0.35441911220550537,
+ "learning_rate": 0.0006,
+ "loss": 3.5216379165649414,
+ "step": 4957
+ },
+ {
+ "epoch": 68.86675404106597,
+ "grad_norm": 0.2840341031551361,
+ "learning_rate": 0.0006,
+ "loss": 3.5208358764648438,
+ "step": 4958
+ },
+ {
+ "epoch": 68.88073394495413,
+ "grad_norm": 0.2082499861717224,
+ "learning_rate": 0.0006,
+ "loss": 3.5028862953186035,
+ "step": 4959
+ },
+ {
+ "epoch": 68.89471384884229,
+ "grad_norm": 0.2505369186401367,
+ "learning_rate": 0.0006,
+ "loss": 3.4982357025146484,
+ "step": 4960
+ },
+ {
+ "epoch": 68.90869375273044,
+ "grad_norm": 0.24573875963687897,
+ "learning_rate": 0.0006,
+ "loss": 3.5239524841308594,
+ "step": 4961
+ },
+ {
+ "epoch": 68.92267365661861,
+ "grad_norm": 0.23462185263633728,
+ "learning_rate": 0.0006,
+ "loss": 3.544379234313965,
+ "step": 4962
+ },
+ {
+ "epoch": 68.93665356050677,
+ "grad_norm": 0.26491034030914307,
+ "learning_rate": 0.0006,
+ "loss": 3.518372058868408,
+ "step": 4963
+ },
+ {
+ "epoch": 68.95063346439493,
+ "grad_norm": 0.2729686498641968,
+ "learning_rate": 0.0006,
+ "loss": 3.517185926437378,
+ "step": 4964
+ },
+ {
+ "epoch": 68.9646133682831,
+ "grad_norm": 0.26077502965927124,
+ "learning_rate": 0.0006,
+ "loss": 3.5147576332092285,
+ "step": 4965
+ },
+ {
+ "epoch": 68.97859327217125,
+ "grad_norm": 0.2313229888677597,
+ "learning_rate": 0.0006,
+ "loss": 3.5008926391601562,
+ "step": 4966
+ },
+ {
+ "epoch": 68.99257317605941,
+ "grad_norm": 0.21773307025432587,
+ "learning_rate": 0.0006,
+ "loss": 3.5004096031188965,
+ "step": 4967
+ },
+ {
+ "epoch": 69.0,
+ "grad_norm": 0.2326030433177948,
+ "learning_rate": 0.0006,
+ "loss": 3.5572075843811035,
+ "step": 4968
+ },
+ {
+ "epoch": 69.0,
+ "eval_loss": 3.993666410446167,
+ "eval_runtime": 45.2778,
+ "eval_samples_per_second": 53.934,
+ "eval_steps_per_second": 3.379,
+ "step": 4968
+ },
+ {
+ "epoch": 69.01397990388816,
+ "grad_norm": 0.22886492311954498,
+ "learning_rate": 0.0006,
+ "loss": 3.4994781017303467,
+ "step": 4969
+ },
+ {
+ "epoch": 69.02795980777633,
+ "grad_norm": 0.2972700595855713,
+ "learning_rate": 0.0006,
+ "loss": 3.5022270679473877,
+ "step": 4970
+ },
+ {
+ "epoch": 69.04193971166448,
+ "grad_norm": 0.32146573066711426,
+ "learning_rate": 0.0006,
+ "loss": 3.49113130569458,
+ "step": 4971
+ },
+ {
+ "epoch": 69.05591961555264,
+ "grad_norm": 0.26019641757011414,
+ "learning_rate": 0.0006,
+ "loss": 3.4609522819519043,
+ "step": 4972
+ },
+ {
+ "epoch": 69.06989951944081,
+ "grad_norm": 0.2116279900074005,
+ "learning_rate": 0.0006,
+ "loss": 3.518007278442383,
+ "step": 4973
+ },
+ {
+ "epoch": 69.08387942332897,
+ "grad_norm": 0.24797578155994415,
+ "learning_rate": 0.0006,
+ "loss": 3.465017318725586,
+ "step": 4974
+ },
+ {
+ "epoch": 69.09785932721712,
+ "grad_norm": 0.2988112270832062,
+ "learning_rate": 0.0006,
+ "loss": 3.46774959564209,
+ "step": 4975
+ },
+ {
+ "epoch": 69.1118392311053,
+ "grad_norm": 0.2741694450378418,
+ "learning_rate": 0.0006,
+ "loss": 3.4726247787475586,
+ "step": 4976
+ },
+ {
+ "epoch": 69.12581913499345,
+ "grad_norm": 0.246512308716774,
+ "learning_rate": 0.0006,
+ "loss": 3.4634053707122803,
+ "step": 4977
+ },
+ {
+ "epoch": 69.1397990388816,
+ "grad_norm": 0.25938132405281067,
+ "learning_rate": 0.0006,
+ "loss": 3.4496707916259766,
+ "step": 4978
+ },
+ {
+ "epoch": 69.15377894276976,
+ "grad_norm": 0.30637112259864807,
+ "learning_rate": 0.0006,
+ "loss": 3.4703760147094727,
+ "step": 4979
+ },
+ {
+ "epoch": 69.16775884665793,
+ "grad_norm": 0.26681914925575256,
+ "learning_rate": 0.0006,
+ "loss": 3.50388240814209,
+ "step": 4980
+ },
+ {
+ "epoch": 69.18173875054609,
+ "grad_norm": 0.24075748026371002,
+ "learning_rate": 0.0006,
+ "loss": 3.517247438430786,
+ "step": 4981
+ },
+ {
+ "epoch": 69.19571865443424,
+ "grad_norm": 0.21730124950408936,
+ "learning_rate": 0.0006,
+ "loss": 3.49320650100708,
+ "step": 4982
+ },
+ {
+ "epoch": 69.20969855832242,
+ "grad_norm": 0.21399953961372375,
+ "learning_rate": 0.0006,
+ "loss": 3.4763529300689697,
+ "step": 4983
+ },
+ {
+ "epoch": 69.22367846221057,
+ "grad_norm": 0.22505059838294983,
+ "learning_rate": 0.0006,
+ "loss": 3.4744338989257812,
+ "step": 4984
+ },
+ {
+ "epoch": 69.23765836609873,
+ "grad_norm": 0.23260554671287537,
+ "learning_rate": 0.0006,
+ "loss": 3.469099760055542,
+ "step": 4985
+ },
+ {
+ "epoch": 69.2516382699869,
+ "grad_norm": 0.2212911993265152,
+ "learning_rate": 0.0006,
+ "loss": 3.484243869781494,
+ "step": 4986
+ },
+ {
+ "epoch": 69.26561817387505,
+ "grad_norm": 0.22414085268974304,
+ "learning_rate": 0.0006,
+ "loss": 3.485083818435669,
+ "step": 4987
+ },
+ {
+ "epoch": 69.27959807776321,
+ "grad_norm": 0.2222541719675064,
+ "learning_rate": 0.0006,
+ "loss": 3.4827499389648438,
+ "step": 4988
+ },
+ {
+ "epoch": 69.29357798165138,
+ "grad_norm": 0.23511181771755219,
+ "learning_rate": 0.0006,
+ "loss": 3.4688282012939453,
+ "step": 4989
+ },
+ {
+ "epoch": 69.30755788553954,
+ "grad_norm": 0.23599068820476532,
+ "learning_rate": 0.0006,
+ "loss": 3.498142719268799,
+ "step": 4990
+ },
+ {
+ "epoch": 69.3215377894277,
+ "grad_norm": 0.22533927857875824,
+ "learning_rate": 0.0006,
+ "loss": 3.4815826416015625,
+ "step": 4991
+ },
+ {
+ "epoch": 69.33551769331586,
+ "grad_norm": 0.2343030720949173,
+ "learning_rate": 0.0006,
+ "loss": 3.483752489089966,
+ "step": 4992
+ },
+ {
+ "epoch": 69.34949759720402,
+ "grad_norm": 0.23283112049102783,
+ "learning_rate": 0.0006,
+ "loss": 3.4877965450286865,
+ "step": 4993
+ },
+ {
+ "epoch": 69.36347750109218,
+ "grad_norm": 0.24869517982006073,
+ "learning_rate": 0.0006,
+ "loss": 3.480337142944336,
+ "step": 4994
+ },
+ {
+ "epoch": 69.37745740498035,
+ "grad_norm": 0.22779154777526855,
+ "learning_rate": 0.0006,
+ "loss": 3.4828710556030273,
+ "step": 4995
+ },
+ {
+ "epoch": 69.3914373088685,
+ "grad_norm": 0.22645261883735657,
+ "learning_rate": 0.0006,
+ "loss": 3.509845018386841,
+ "step": 4996
+ },
+ {
+ "epoch": 69.40541721275666,
+ "grad_norm": 0.2432178109884262,
+ "learning_rate": 0.0006,
+ "loss": 3.4617137908935547,
+ "step": 4997
+ },
+ {
+ "epoch": 69.41939711664482,
+ "grad_norm": 0.2587018311023712,
+ "learning_rate": 0.0006,
+ "loss": 3.4713127613067627,
+ "step": 4998
+ },
+ {
+ "epoch": 69.43337702053299,
+ "grad_norm": 0.21907378733158112,
+ "learning_rate": 0.0006,
+ "loss": 3.509188175201416,
+ "step": 4999
+ },
+ {
+ "epoch": 69.44735692442114,
+ "grad_norm": 0.22740772366523743,
+ "learning_rate": 0.0006,
+ "loss": 3.4754276275634766,
+ "step": 5000
+ },
+ {
+ "epoch": 69.4613368283093,
+ "grad_norm": 0.21934257447719574,
+ "learning_rate": 0.0006,
+ "loss": 3.4663891792297363,
+ "step": 5001
+ },
+ {
+ "epoch": 69.47531673219747,
+ "grad_norm": 0.2244742065668106,
+ "learning_rate": 0.0006,
+ "loss": 3.4800233840942383,
+ "step": 5002
+ },
+ {
+ "epoch": 69.48929663608563,
+ "grad_norm": 0.20470912754535675,
+ "learning_rate": 0.0006,
+ "loss": 3.5089359283447266,
+ "step": 5003
+ },
+ {
+ "epoch": 69.50327653997378,
+ "grad_norm": 0.21532751619815826,
+ "learning_rate": 0.0006,
+ "loss": 3.5029287338256836,
+ "step": 5004
+ },
+ {
+ "epoch": 69.51725644386195,
+ "grad_norm": 0.2311217337846756,
+ "learning_rate": 0.0006,
+ "loss": 3.5031962394714355,
+ "step": 5005
+ },
+ {
+ "epoch": 69.53123634775011,
+ "grad_norm": 0.22248436510562897,
+ "learning_rate": 0.0006,
+ "loss": 3.5059356689453125,
+ "step": 5006
+ },
+ {
+ "epoch": 69.54521625163827,
+ "grad_norm": 0.2108408361673355,
+ "learning_rate": 0.0006,
+ "loss": 3.498697280883789,
+ "step": 5007
+ },
+ {
+ "epoch": 69.55919615552644,
+ "grad_norm": 0.22833184897899628,
+ "learning_rate": 0.0006,
+ "loss": 3.505685806274414,
+ "step": 5008
+ },
+ {
+ "epoch": 69.57317605941459,
+ "grad_norm": 0.22630111873149872,
+ "learning_rate": 0.0006,
+ "loss": 3.497771978378296,
+ "step": 5009
+ },
+ {
+ "epoch": 69.58715596330275,
+ "grad_norm": 0.23363569378852844,
+ "learning_rate": 0.0006,
+ "loss": 3.5422916412353516,
+ "step": 5010
+ },
+ {
+ "epoch": 69.60113586719092,
+ "grad_norm": 0.23720940947532654,
+ "learning_rate": 0.0006,
+ "loss": 3.504817008972168,
+ "step": 5011
+ },
+ {
+ "epoch": 69.61511577107908,
+ "grad_norm": 0.22822913527488708,
+ "learning_rate": 0.0006,
+ "loss": 3.51149320602417,
+ "step": 5012
+ },
+ {
+ "epoch": 69.62909567496723,
+ "grad_norm": 0.24143314361572266,
+ "learning_rate": 0.0006,
+ "loss": 3.509063720703125,
+ "step": 5013
+ },
+ {
+ "epoch": 69.6430755788554,
+ "grad_norm": 0.2394775152206421,
+ "learning_rate": 0.0006,
+ "loss": 3.5275425910949707,
+ "step": 5014
+ },
+ {
+ "epoch": 69.65705548274356,
+ "grad_norm": 0.23898433148860931,
+ "learning_rate": 0.0006,
+ "loss": 3.5251870155334473,
+ "step": 5015
+ },
+ {
+ "epoch": 69.67103538663171,
+ "grad_norm": 0.22647695243358612,
+ "learning_rate": 0.0006,
+ "loss": 3.4790940284729004,
+ "step": 5016
+ },
+ {
+ "epoch": 69.68501529051987,
+ "grad_norm": 0.23094546794891357,
+ "learning_rate": 0.0006,
+ "loss": 3.515676975250244,
+ "step": 5017
+ },
+ {
+ "epoch": 69.69899519440804,
+ "grad_norm": 0.21791698038578033,
+ "learning_rate": 0.0006,
+ "loss": 3.4938859939575195,
+ "step": 5018
+ },
+ {
+ "epoch": 69.7129750982962,
+ "grad_norm": 0.2420767843723297,
+ "learning_rate": 0.0006,
+ "loss": 3.489206075668335,
+ "step": 5019
+ },
+ {
+ "epoch": 69.72695500218435,
+ "grad_norm": 0.22724151611328125,
+ "learning_rate": 0.0006,
+ "loss": 3.502804756164551,
+ "step": 5020
+ },
+ {
+ "epoch": 69.74093490607252,
+ "grad_norm": 0.23462660610675812,
+ "learning_rate": 0.0006,
+ "loss": 3.4947867393493652,
+ "step": 5021
+ },
+ {
+ "epoch": 69.75491480996068,
+ "grad_norm": 0.2545832097530365,
+ "learning_rate": 0.0006,
+ "loss": 3.500843048095703,
+ "step": 5022
+ },
+ {
+ "epoch": 69.76889471384884,
+ "grad_norm": 0.26692283153533936,
+ "learning_rate": 0.0006,
+ "loss": 3.5054852962493896,
+ "step": 5023
+ },
+ {
+ "epoch": 69.78287461773701,
+ "grad_norm": 0.22788259387016296,
+ "learning_rate": 0.0006,
+ "loss": 3.5261473655700684,
+ "step": 5024
+ },
+ {
+ "epoch": 69.79685452162516,
+ "grad_norm": 0.24453137814998627,
+ "learning_rate": 0.0006,
+ "loss": 3.5090155601501465,
+ "step": 5025
+ },
+ {
+ "epoch": 69.81083442551332,
+ "grad_norm": 0.27876126766204834,
+ "learning_rate": 0.0006,
+ "loss": 3.5091753005981445,
+ "step": 5026
+ },
+ {
+ "epoch": 69.82481432940149,
+ "grad_norm": 0.280249685049057,
+ "learning_rate": 0.0006,
+ "loss": 3.5129857063293457,
+ "step": 5027
+ },
+ {
+ "epoch": 69.83879423328965,
+ "grad_norm": 0.2260117530822754,
+ "learning_rate": 0.0006,
+ "loss": 3.5320475101470947,
+ "step": 5028
+ },
+ {
+ "epoch": 69.8527741371778,
+ "grad_norm": 0.2237965613603592,
+ "learning_rate": 0.0006,
+ "loss": 3.5061261653900146,
+ "step": 5029
+ },
+ {
+ "epoch": 69.86675404106597,
+ "grad_norm": 0.226779967546463,
+ "learning_rate": 0.0006,
+ "loss": 3.5076608657836914,
+ "step": 5030
+ },
+ {
+ "epoch": 69.88073394495413,
+ "grad_norm": 0.23626334965229034,
+ "learning_rate": 0.0006,
+ "loss": 3.50716495513916,
+ "step": 5031
+ },
+ {
+ "epoch": 69.89471384884229,
+ "grad_norm": 0.2639276385307312,
+ "learning_rate": 0.0006,
+ "loss": 3.5299901962280273,
+ "step": 5032
+ },
+ {
+ "epoch": 69.90869375273044,
+ "grad_norm": 0.23369482159614563,
+ "learning_rate": 0.0006,
+ "loss": 3.5289621353149414,
+ "step": 5033
+ },
+ {
+ "epoch": 69.92267365661861,
+ "grad_norm": 0.23041120171546936,
+ "learning_rate": 0.0006,
+ "loss": 3.5174753665924072,
+ "step": 5034
+ },
+ {
+ "epoch": 69.93665356050677,
+ "grad_norm": 0.21268987655639648,
+ "learning_rate": 0.0006,
+ "loss": 3.506927967071533,
+ "step": 5035
+ },
+ {
+ "epoch": 69.95063346439493,
+ "grad_norm": 0.22524571418762207,
+ "learning_rate": 0.0006,
+ "loss": 3.5054068565368652,
+ "step": 5036
+ },
+ {
+ "epoch": 69.9646133682831,
+ "grad_norm": 0.26068753004074097,
+ "learning_rate": 0.0006,
+ "loss": 3.502107620239258,
+ "step": 5037
+ },
+ {
+ "epoch": 69.97859327217125,
+ "grad_norm": 0.2473640888929367,
+ "learning_rate": 0.0006,
+ "loss": 3.4879817962646484,
+ "step": 5038
+ },
+ {
+ "epoch": 69.99257317605941,
+ "grad_norm": 0.23933477699756622,
+ "learning_rate": 0.0006,
+ "loss": 3.52518892288208,
+ "step": 5039
+ },
+ {
+ "epoch": 70.0,
+ "grad_norm": 0.26498401165008545,
+ "learning_rate": 0.0006,
+ "loss": 3.528074026107788,
+ "step": 5040
+ },
+ {
+ "epoch": 70.0,
+ "eval_loss": 3.9862265586853027,
+ "eval_runtime": 45.1344,
+ "eval_samples_per_second": 54.105,
+ "eval_steps_per_second": 3.39,
+ "step": 5040
+ },
+ {
+ "epoch": 70.01397990388816,
+ "grad_norm": 0.23711830377578735,
+ "learning_rate": 0.0006,
+ "loss": 3.4622411727905273,
+ "step": 5041
+ },
+ {
+ "epoch": 70.02795980777633,
+ "grad_norm": 0.25422438979148865,
+ "learning_rate": 0.0006,
+ "loss": 3.4546890258789062,
+ "step": 5042
+ },
+ {
+ "epoch": 70.04193971166448,
+ "grad_norm": 0.2520093619823456,
+ "learning_rate": 0.0006,
+ "loss": 3.4625046253204346,
+ "step": 5043
+ },
+ {
+ "epoch": 70.05591961555264,
+ "grad_norm": 0.23353877663612366,
+ "learning_rate": 0.0006,
+ "loss": 3.5090699195861816,
+ "step": 5044
+ },
+ {
+ "epoch": 70.06989951944081,
+ "grad_norm": 0.2775326669216156,
+ "learning_rate": 0.0006,
+ "loss": 3.4860758781433105,
+ "step": 5045
+ },
+ {
+ "epoch": 70.08387942332897,
+ "grad_norm": 0.297573447227478,
+ "learning_rate": 0.0006,
+ "loss": 3.5181596279144287,
+ "step": 5046
+ },
+ {
+ "epoch": 70.09785932721712,
+ "grad_norm": 0.29662513732910156,
+ "learning_rate": 0.0006,
+ "loss": 3.4715771675109863,
+ "step": 5047
+ },
+ {
+ "epoch": 70.1118392311053,
+ "grad_norm": 0.2619902193546295,
+ "learning_rate": 0.0006,
+ "loss": 3.430412769317627,
+ "step": 5048
+ },
+ {
+ "epoch": 70.12581913499345,
+ "grad_norm": 0.21740001440048218,
+ "learning_rate": 0.0006,
+ "loss": 3.473442792892456,
+ "step": 5049
+ },
+ {
+ "epoch": 70.1397990388816,
+ "grad_norm": 0.221281036734581,
+ "learning_rate": 0.0006,
+ "loss": 3.4651594161987305,
+ "step": 5050
+ },
+ {
+ "epoch": 70.15377894276976,
+ "grad_norm": 0.21638400852680206,
+ "learning_rate": 0.0006,
+ "loss": 3.475860118865967,
+ "step": 5051
+ },
+ {
+ "epoch": 70.16775884665793,
+ "grad_norm": 0.21825452148914337,
+ "learning_rate": 0.0006,
+ "loss": 3.467684268951416,
+ "step": 5052
+ },
+ {
+ "epoch": 70.18173875054609,
+ "grad_norm": 0.22535094618797302,
+ "learning_rate": 0.0006,
+ "loss": 3.4543721675872803,
+ "step": 5053
+ },
+ {
+ "epoch": 70.19571865443424,
+ "grad_norm": 0.22751732170581818,
+ "learning_rate": 0.0006,
+ "loss": 3.480132818222046,
+ "step": 5054
+ },
+ {
+ "epoch": 70.20969855832242,
+ "grad_norm": 0.21935929358005524,
+ "learning_rate": 0.0006,
+ "loss": 3.4883337020874023,
+ "step": 5055
+ },
+ {
+ "epoch": 70.22367846221057,
+ "grad_norm": 0.2164992392063141,
+ "learning_rate": 0.0006,
+ "loss": 3.4758238792419434,
+ "step": 5056
+ },
+ {
+ "epoch": 70.23765836609873,
+ "grad_norm": 0.2284509837627411,
+ "learning_rate": 0.0006,
+ "loss": 3.4639101028442383,
+ "step": 5057
+ },
+ {
+ "epoch": 70.2516382699869,
+ "grad_norm": 0.2616494297981262,
+ "learning_rate": 0.0006,
+ "loss": 3.4850382804870605,
+ "step": 5058
+ },
+ {
+ "epoch": 70.26561817387505,
+ "grad_norm": 0.25582870841026306,
+ "learning_rate": 0.0006,
+ "loss": 3.4912681579589844,
+ "step": 5059
+ },
+ {
+ "epoch": 70.27959807776321,
+ "grad_norm": 0.23707713186740875,
+ "learning_rate": 0.0006,
+ "loss": 3.493809700012207,
+ "step": 5060
+ },
+ {
+ "epoch": 70.29357798165138,
+ "grad_norm": 0.233265221118927,
+ "learning_rate": 0.0006,
+ "loss": 3.5143074989318848,
+ "step": 5061
+ },
+ {
+ "epoch": 70.30755788553954,
+ "grad_norm": 0.2607567012310028,
+ "learning_rate": 0.0006,
+ "loss": 3.5042223930358887,
+ "step": 5062
+ },
+ {
+ "epoch": 70.3215377894277,
+ "grad_norm": 0.21082724630832672,
+ "learning_rate": 0.0006,
+ "loss": 3.493569850921631,
+ "step": 5063
+ },
+ {
+ "epoch": 70.33551769331586,
+ "grad_norm": 0.2609533369541168,
+ "learning_rate": 0.0006,
+ "loss": 3.503533363342285,
+ "step": 5064
+ },
+ {
+ "epoch": 70.34949759720402,
+ "grad_norm": 0.2863939702510834,
+ "learning_rate": 0.0006,
+ "loss": 3.465226173400879,
+ "step": 5065
+ },
+ {
+ "epoch": 70.36347750109218,
+ "grad_norm": 0.26796457171440125,
+ "learning_rate": 0.0006,
+ "loss": 3.517176866531372,
+ "step": 5066
+ },
+ {
+ "epoch": 70.37745740498035,
+ "grad_norm": 0.2766019105911255,
+ "learning_rate": 0.0006,
+ "loss": 3.5126867294311523,
+ "step": 5067
+ },
+ {
+ "epoch": 70.3914373088685,
+ "grad_norm": 0.24560758471488953,
+ "learning_rate": 0.0006,
+ "loss": 3.515030860900879,
+ "step": 5068
+ },
+ {
+ "epoch": 70.40541721275666,
+ "grad_norm": 0.20993568003177643,
+ "learning_rate": 0.0006,
+ "loss": 3.4899773597717285,
+ "step": 5069
+ },
+ {
+ "epoch": 70.41939711664482,
+ "grad_norm": 0.20855914056301117,
+ "learning_rate": 0.0006,
+ "loss": 3.4906468391418457,
+ "step": 5070
+ },
+ {
+ "epoch": 70.43337702053299,
+ "grad_norm": 0.2210836559534073,
+ "learning_rate": 0.0006,
+ "loss": 3.482866048812866,
+ "step": 5071
+ },
+ {
+ "epoch": 70.44735692442114,
+ "grad_norm": 0.2210542857646942,
+ "learning_rate": 0.0006,
+ "loss": 3.501636028289795,
+ "step": 5072
+ },
+ {
+ "epoch": 70.4613368283093,
+ "grad_norm": 0.21207138895988464,
+ "learning_rate": 0.0006,
+ "loss": 3.519104242324829,
+ "step": 5073
+ },
+ {
+ "epoch": 70.47531673219747,
+ "grad_norm": 0.19901272654533386,
+ "learning_rate": 0.0006,
+ "loss": 3.486097574234009,
+ "step": 5074
+ },
+ {
+ "epoch": 70.48929663608563,
+ "grad_norm": 0.21536870300769806,
+ "learning_rate": 0.0006,
+ "loss": 3.476889133453369,
+ "step": 5075
+ },
+ {
+ "epoch": 70.50327653997378,
+ "grad_norm": 0.22002893686294556,
+ "learning_rate": 0.0006,
+ "loss": 3.5007381439208984,
+ "step": 5076
+ },
+ {
+ "epoch": 70.51725644386195,
+ "grad_norm": 0.20761331915855408,
+ "learning_rate": 0.0006,
+ "loss": 3.4693777561187744,
+ "step": 5077
+ },
+ {
+ "epoch": 70.53123634775011,
+ "grad_norm": 0.2145029455423355,
+ "learning_rate": 0.0006,
+ "loss": 3.438809871673584,
+ "step": 5078
+ },
+ {
+ "epoch": 70.54521625163827,
+ "grad_norm": 0.1961168795824051,
+ "learning_rate": 0.0006,
+ "loss": 3.4975242614746094,
+ "step": 5079
+ },
+ {
+ "epoch": 70.55919615552644,
+ "grad_norm": 0.20411522686481476,
+ "learning_rate": 0.0006,
+ "loss": 3.4908413887023926,
+ "step": 5080
+ },
+ {
+ "epoch": 70.57317605941459,
+ "grad_norm": 0.22646412253379822,
+ "learning_rate": 0.0006,
+ "loss": 3.4542629718780518,
+ "step": 5081
+ },
+ {
+ "epoch": 70.58715596330275,
+ "grad_norm": 0.2181357741355896,
+ "learning_rate": 0.0006,
+ "loss": 3.522963047027588,
+ "step": 5082
+ },
+ {
+ "epoch": 70.60113586719092,
+ "grad_norm": 0.23564083874225616,
+ "learning_rate": 0.0006,
+ "loss": 3.475222110748291,
+ "step": 5083
+ },
+ {
+ "epoch": 70.61511577107908,
+ "grad_norm": 0.22964410483837128,
+ "learning_rate": 0.0006,
+ "loss": 3.517993927001953,
+ "step": 5084
+ },
+ {
+ "epoch": 70.62909567496723,
+ "grad_norm": 0.20958925783634186,
+ "learning_rate": 0.0006,
+ "loss": 3.4651894569396973,
+ "step": 5085
+ },
+ {
+ "epoch": 70.6430755788554,
+ "grad_norm": 0.19693933427333832,
+ "learning_rate": 0.0006,
+ "loss": 3.4992640018463135,
+ "step": 5086
+ },
+ {
+ "epoch": 70.65705548274356,
+ "grad_norm": 0.22487083077430725,
+ "learning_rate": 0.0006,
+ "loss": 3.502739906311035,
+ "step": 5087
+ },
+ {
+ "epoch": 70.67103538663171,
+ "grad_norm": 0.22145701944828033,
+ "learning_rate": 0.0006,
+ "loss": 3.4855666160583496,
+ "step": 5088
+ },
+ {
+ "epoch": 70.68501529051987,
+ "grad_norm": 0.2145165652036667,
+ "learning_rate": 0.0006,
+ "loss": 3.5234193801879883,
+ "step": 5089
+ },
+ {
+ "epoch": 70.69899519440804,
+ "grad_norm": 0.2453656941652298,
+ "learning_rate": 0.0006,
+ "loss": 3.497983932495117,
+ "step": 5090
+ },
+ {
+ "epoch": 70.7129750982962,
+ "grad_norm": 0.2324638068675995,
+ "learning_rate": 0.0006,
+ "loss": 3.487849712371826,
+ "step": 5091
+ },
+ {
+ "epoch": 70.72695500218435,
+ "grad_norm": 0.2176654040813446,
+ "learning_rate": 0.0006,
+ "loss": 3.496427059173584,
+ "step": 5092
+ },
+ {
+ "epoch": 70.74093490607252,
+ "grad_norm": 0.20912162959575653,
+ "learning_rate": 0.0006,
+ "loss": 3.4953227043151855,
+ "step": 5093
+ },
+ {
+ "epoch": 70.75491480996068,
+ "grad_norm": 0.1988947093486786,
+ "learning_rate": 0.0006,
+ "loss": 3.4566853046417236,
+ "step": 5094
+ },
+ {
+ "epoch": 70.76889471384884,
+ "grad_norm": 0.23707804083824158,
+ "learning_rate": 0.0006,
+ "loss": 3.5447797775268555,
+ "step": 5095
+ },
+ {
+ "epoch": 70.78287461773701,
+ "grad_norm": 0.24296057224273682,
+ "learning_rate": 0.0006,
+ "loss": 3.5124454498291016,
+ "step": 5096
+ },
+ {
+ "epoch": 70.79685452162516,
+ "grad_norm": 0.21297545731067657,
+ "learning_rate": 0.0006,
+ "loss": 3.5096077919006348,
+ "step": 5097
+ },
+ {
+ "epoch": 70.81083442551332,
+ "grad_norm": 0.20642022788524628,
+ "learning_rate": 0.0006,
+ "loss": 3.5008912086486816,
+ "step": 5098
+ },
+ {
+ "epoch": 70.82481432940149,
+ "grad_norm": 0.2428225725889206,
+ "learning_rate": 0.0006,
+ "loss": 3.511782169342041,
+ "step": 5099
+ },
+ {
+ "epoch": 70.83879423328965,
+ "grad_norm": 0.2369006872177124,
+ "learning_rate": 0.0006,
+ "loss": 3.5016889572143555,
+ "step": 5100
+ },
+ {
+ "epoch": 70.8527741371778,
+ "grad_norm": 0.2299226075410843,
+ "learning_rate": 0.0006,
+ "loss": 3.5024492740631104,
+ "step": 5101
+ },
+ {
+ "epoch": 70.86675404106597,
+ "grad_norm": 0.2069583684206009,
+ "learning_rate": 0.0006,
+ "loss": 3.5401811599731445,
+ "step": 5102
+ },
+ {
+ "epoch": 70.88073394495413,
+ "grad_norm": 0.21548444032669067,
+ "learning_rate": 0.0006,
+ "loss": 3.506899833679199,
+ "step": 5103
+ },
+ {
+ "epoch": 70.89471384884229,
+ "grad_norm": 0.24152785539627075,
+ "learning_rate": 0.0006,
+ "loss": 3.517747163772583,
+ "step": 5104
+ },
+ {
+ "epoch": 70.90869375273044,
+ "grad_norm": 0.2301841676235199,
+ "learning_rate": 0.0006,
+ "loss": 3.4825563430786133,
+ "step": 5105
+ },
+ {
+ "epoch": 70.92267365661861,
+ "grad_norm": 0.20378732681274414,
+ "learning_rate": 0.0006,
+ "loss": 3.51491641998291,
+ "step": 5106
+ },
+ {
+ "epoch": 70.93665356050677,
+ "grad_norm": 0.23954246938228607,
+ "learning_rate": 0.0006,
+ "loss": 3.505157709121704,
+ "step": 5107
+ },
+ {
+ "epoch": 70.95063346439493,
+ "grad_norm": 0.24072174727916718,
+ "learning_rate": 0.0006,
+ "loss": 3.5006208419799805,
+ "step": 5108
+ },
+ {
+ "epoch": 70.9646133682831,
+ "grad_norm": 0.2187308371067047,
+ "learning_rate": 0.0006,
+ "loss": 3.5031535625457764,
+ "step": 5109
+ },
+ {
+ "epoch": 70.97859327217125,
+ "grad_norm": 0.22237645089626312,
+ "learning_rate": 0.0006,
+ "loss": 3.5143189430236816,
+ "step": 5110
+ },
+ {
+ "epoch": 70.99257317605941,
+ "grad_norm": 0.22169137001037598,
+ "learning_rate": 0.0006,
+ "loss": 3.4963934421539307,
+ "step": 5111
+ },
+ {
+ "epoch": 71.0,
+ "grad_norm": 0.257404088973999,
+ "learning_rate": 0.0006,
+ "loss": 3.5386219024658203,
+ "step": 5112
+ },
+ {
+ "epoch": 71.0,
+ "eval_loss": 3.9918019771575928,
+ "eval_runtime": 46.6377,
+ "eval_samples_per_second": 52.361,
+ "eval_steps_per_second": 3.281,
+ "step": 5112
+ },
+ {
+ "epoch": 71.01397990388816,
+ "grad_norm": 0.22763817012310028,
+ "learning_rate": 0.0006,
+ "loss": 3.4723024368286133,
+ "step": 5113
+ },
+ {
+ "epoch": 71.02795980777633,
+ "grad_norm": 0.22345447540283203,
+ "learning_rate": 0.0006,
+ "loss": 3.491352081298828,
+ "step": 5114
+ },
+ {
+ "epoch": 71.04193971166448,
+ "grad_norm": 0.28975343704223633,
+ "learning_rate": 0.0006,
+ "loss": 3.474012851715088,
+ "step": 5115
+ },
+ {
+ "epoch": 71.05591961555264,
+ "grad_norm": 0.34715282917022705,
+ "learning_rate": 0.0006,
+ "loss": 3.460543155670166,
+ "step": 5116
+ },
+ {
+ "epoch": 71.06989951944081,
+ "grad_norm": 0.3298324942588806,
+ "learning_rate": 0.0006,
+ "loss": 3.481487512588501,
+ "step": 5117
+ },
+ {
+ "epoch": 71.08387942332897,
+ "grad_norm": 0.25802168250083923,
+ "learning_rate": 0.0006,
+ "loss": 3.472047805786133,
+ "step": 5118
+ },
+ {
+ "epoch": 71.09785932721712,
+ "grad_norm": 0.27691733837127686,
+ "learning_rate": 0.0006,
+ "loss": 3.471902847290039,
+ "step": 5119
+ },
+ {
+ "epoch": 71.1118392311053,
+ "grad_norm": 0.3614637851715088,
+ "learning_rate": 0.0006,
+ "loss": 3.482367992401123,
+ "step": 5120
+ },
+ {
+ "epoch": 71.12581913499345,
+ "grad_norm": 0.3808763027191162,
+ "learning_rate": 0.0006,
+ "loss": 3.468003273010254,
+ "step": 5121
+ },
+ {
+ "epoch": 71.1397990388816,
+ "grad_norm": 0.30960485339164734,
+ "learning_rate": 0.0006,
+ "loss": 3.4756040573120117,
+ "step": 5122
+ },
+ {
+ "epoch": 71.15377894276976,
+ "grad_norm": 0.23345506191253662,
+ "learning_rate": 0.0006,
+ "loss": 3.4682583808898926,
+ "step": 5123
+ },
+ {
+ "epoch": 71.16775884665793,
+ "grad_norm": 0.23517020046710968,
+ "learning_rate": 0.0006,
+ "loss": 3.481360912322998,
+ "step": 5124
+ },
+ {
+ "epoch": 71.18173875054609,
+ "grad_norm": 0.23654034733772278,
+ "learning_rate": 0.0006,
+ "loss": 3.4833765029907227,
+ "step": 5125
+ },
+ {
+ "epoch": 71.19571865443424,
+ "grad_norm": 0.2085893303155899,
+ "learning_rate": 0.0006,
+ "loss": 3.486340045928955,
+ "step": 5126
+ },
+ {
+ "epoch": 71.20969855832242,
+ "grad_norm": 0.23823733627796173,
+ "learning_rate": 0.0006,
+ "loss": 3.477477550506592,
+ "step": 5127
+ },
+ {
+ "epoch": 71.22367846221057,
+ "grad_norm": 0.2195197194814682,
+ "learning_rate": 0.0006,
+ "loss": 3.4914462566375732,
+ "step": 5128
+ },
+ {
+ "epoch": 71.23765836609873,
+ "grad_norm": 0.20015183091163635,
+ "learning_rate": 0.0006,
+ "loss": 3.4731597900390625,
+ "step": 5129
+ },
+ {
+ "epoch": 71.2516382699869,
+ "grad_norm": 0.22865013778209686,
+ "learning_rate": 0.0006,
+ "loss": 3.474112033843994,
+ "step": 5130
+ },
+ {
+ "epoch": 71.26561817387505,
+ "grad_norm": 0.23216912150382996,
+ "learning_rate": 0.0006,
+ "loss": 3.4641566276550293,
+ "step": 5131
+ },
+ {
+ "epoch": 71.27959807776321,
+ "grad_norm": 0.229189932346344,
+ "learning_rate": 0.0006,
+ "loss": 3.499788999557495,
+ "step": 5132
+ },
+ {
+ "epoch": 71.29357798165138,
+ "grad_norm": 0.21727289259433746,
+ "learning_rate": 0.0006,
+ "loss": 3.4823837280273438,
+ "step": 5133
+ },
+ {
+ "epoch": 71.30755788553954,
+ "grad_norm": 0.21023842692375183,
+ "learning_rate": 0.0006,
+ "loss": 3.4864656925201416,
+ "step": 5134
+ },
+ {
+ "epoch": 71.3215377894277,
+ "grad_norm": 0.2303229570388794,
+ "learning_rate": 0.0006,
+ "loss": 3.4989194869995117,
+ "step": 5135
+ },
+ {
+ "epoch": 71.33551769331586,
+ "grad_norm": 0.2317735254764557,
+ "learning_rate": 0.0006,
+ "loss": 3.460954189300537,
+ "step": 5136
+ },
+ {
+ "epoch": 71.34949759720402,
+ "grad_norm": 0.22612634301185608,
+ "learning_rate": 0.0006,
+ "loss": 3.5102381706237793,
+ "step": 5137
+ },
+ {
+ "epoch": 71.36347750109218,
+ "grad_norm": 0.23815463483333588,
+ "learning_rate": 0.0006,
+ "loss": 3.446244239807129,
+ "step": 5138
+ },
+ {
+ "epoch": 71.37745740498035,
+ "grad_norm": 0.22914297878742218,
+ "learning_rate": 0.0006,
+ "loss": 3.4789650440216064,
+ "step": 5139
+ },
+ {
+ "epoch": 71.3914373088685,
+ "grad_norm": 0.22563296556472778,
+ "learning_rate": 0.0006,
+ "loss": 3.490419864654541,
+ "step": 5140
+ },
+ {
+ "epoch": 71.40541721275666,
+ "grad_norm": 0.21704672276973724,
+ "learning_rate": 0.0006,
+ "loss": 3.503981113433838,
+ "step": 5141
+ },
+ {
+ "epoch": 71.41939711664482,
+ "grad_norm": 0.2196325659751892,
+ "learning_rate": 0.0006,
+ "loss": 3.4878809452056885,
+ "step": 5142
+ },
+ {
+ "epoch": 71.43337702053299,
+ "grad_norm": 0.21130836009979248,
+ "learning_rate": 0.0006,
+ "loss": 3.4546194076538086,
+ "step": 5143
+ },
+ {
+ "epoch": 71.44735692442114,
+ "grad_norm": 0.21542105078697205,
+ "learning_rate": 0.0006,
+ "loss": 3.4721519947052,
+ "step": 5144
+ },
+ {
+ "epoch": 71.4613368283093,
+ "grad_norm": 0.22387142479419708,
+ "learning_rate": 0.0006,
+ "loss": 3.4667282104492188,
+ "step": 5145
+ },
+ {
+ "epoch": 71.47531673219747,
+ "grad_norm": 0.23259611427783966,
+ "learning_rate": 0.0006,
+ "loss": 3.467545986175537,
+ "step": 5146
+ },
+ {
+ "epoch": 71.48929663608563,
+ "grad_norm": 0.2771410644054413,
+ "learning_rate": 0.0006,
+ "loss": 3.4783425331115723,
+ "step": 5147
+ },
+ {
+ "epoch": 71.50327653997378,
+ "grad_norm": 0.29756635427474976,
+ "learning_rate": 0.0006,
+ "loss": 3.492600440979004,
+ "step": 5148
+ },
+ {
+ "epoch": 71.51725644386195,
+ "grad_norm": 0.26306024193763733,
+ "learning_rate": 0.0006,
+ "loss": 3.510770559310913,
+ "step": 5149
+ },
+ {
+ "epoch": 71.53123634775011,
+ "grad_norm": 0.20751827955245972,
+ "learning_rate": 0.0006,
+ "loss": 3.466935634613037,
+ "step": 5150
+ },
+ {
+ "epoch": 71.54521625163827,
+ "grad_norm": 0.21394366025924683,
+ "learning_rate": 0.0006,
+ "loss": 3.436068058013916,
+ "step": 5151
+ },
+ {
+ "epoch": 71.55919615552644,
+ "grad_norm": 0.25711846351623535,
+ "learning_rate": 0.0006,
+ "loss": 3.484564781188965,
+ "step": 5152
+ },
+ {
+ "epoch": 71.57317605941459,
+ "grad_norm": 0.29579317569732666,
+ "learning_rate": 0.0006,
+ "loss": 3.4905800819396973,
+ "step": 5153
+ },
+ {
+ "epoch": 71.58715596330275,
+ "grad_norm": 0.3033061921596527,
+ "learning_rate": 0.0006,
+ "loss": 3.508679151535034,
+ "step": 5154
+ },
+ {
+ "epoch": 71.60113586719092,
+ "grad_norm": 0.2520291805267334,
+ "learning_rate": 0.0006,
+ "loss": 3.5057215690612793,
+ "step": 5155
+ },
+ {
+ "epoch": 71.61511577107908,
+ "grad_norm": 0.226261705160141,
+ "learning_rate": 0.0006,
+ "loss": 3.5037670135498047,
+ "step": 5156
+ },
+ {
+ "epoch": 71.62909567496723,
+ "grad_norm": 0.20596027374267578,
+ "learning_rate": 0.0006,
+ "loss": 3.495021343231201,
+ "step": 5157
+ },
+ {
+ "epoch": 71.6430755788554,
+ "grad_norm": 0.20619751513004303,
+ "learning_rate": 0.0006,
+ "loss": 3.4958693981170654,
+ "step": 5158
+ },
+ {
+ "epoch": 71.65705548274356,
+ "grad_norm": 0.24510066211223602,
+ "learning_rate": 0.0006,
+ "loss": 3.5301260948181152,
+ "step": 5159
+ },
+ {
+ "epoch": 71.67103538663171,
+ "grad_norm": 0.26109805703163147,
+ "learning_rate": 0.0006,
+ "loss": 3.5022244453430176,
+ "step": 5160
+ },
+ {
+ "epoch": 71.68501529051987,
+ "grad_norm": 0.28911513090133667,
+ "learning_rate": 0.0006,
+ "loss": 3.488947868347168,
+ "step": 5161
+ },
+ {
+ "epoch": 71.69899519440804,
+ "grad_norm": 0.2741655111312866,
+ "learning_rate": 0.0006,
+ "loss": 3.4888229370117188,
+ "step": 5162
+ },
+ {
+ "epoch": 71.7129750982962,
+ "grad_norm": 0.2789880633354187,
+ "learning_rate": 0.0006,
+ "loss": 3.4911744594573975,
+ "step": 5163
+ },
+ {
+ "epoch": 71.72695500218435,
+ "grad_norm": 0.23872195184230804,
+ "learning_rate": 0.0006,
+ "loss": 3.5175111293792725,
+ "step": 5164
+ },
+ {
+ "epoch": 71.74093490607252,
+ "grad_norm": 0.23090124130249023,
+ "learning_rate": 0.0006,
+ "loss": 3.477285861968994,
+ "step": 5165
+ },
+ {
+ "epoch": 71.75491480996068,
+ "grad_norm": 0.25918251276016235,
+ "learning_rate": 0.0006,
+ "loss": 3.5374622344970703,
+ "step": 5166
+ },
+ {
+ "epoch": 71.76889471384884,
+ "grad_norm": 0.28394266963005066,
+ "learning_rate": 0.0006,
+ "loss": 3.505443572998047,
+ "step": 5167
+ },
+ {
+ "epoch": 71.78287461773701,
+ "grad_norm": 0.29756471514701843,
+ "learning_rate": 0.0006,
+ "loss": 3.4858479499816895,
+ "step": 5168
+ },
+ {
+ "epoch": 71.79685452162516,
+ "grad_norm": 0.2913147211074829,
+ "learning_rate": 0.0006,
+ "loss": 3.4602723121643066,
+ "step": 5169
+ },
+ {
+ "epoch": 71.81083442551332,
+ "grad_norm": 0.23923781514167786,
+ "learning_rate": 0.0006,
+ "loss": 3.4713358879089355,
+ "step": 5170
+ },
+ {
+ "epoch": 71.82481432940149,
+ "grad_norm": 0.23478655517101288,
+ "learning_rate": 0.0006,
+ "loss": 3.4848878383636475,
+ "step": 5171
+ },
+ {
+ "epoch": 71.83879423328965,
+ "grad_norm": 0.2668255865573883,
+ "learning_rate": 0.0006,
+ "loss": 3.507920742034912,
+ "step": 5172
+ },
+ {
+ "epoch": 71.8527741371778,
+ "grad_norm": 0.2818165719509125,
+ "learning_rate": 0.0006,
+ "loss": 3.5128116607666016,
+ "step": 5173
+ },
+ {
+ "epoch": 71.86675404106597,
+ "grad_norm": 0.22830909490585327,
+ "learning_rate": 0.0006,
+ "loss": 3.4789090156555176,
+ "step": 5174
+ },
+ {
+ "epoch": 71.88073394495413,
+ "grad_norm": 0.2291419357061386,
+ "learning_rate": 0.0006,
+ "loss": 3.4977774620056152,
+ "step": 5175
+ },
+ {
+ "epoch": 71.89471384884229,
+ "grad_norm": 0.22237083315849304,
+ "learning_rate": 0.0006,
+ "loss": 3.5563011169433594,
+ "step": 5176
+ },
+ {
+ "epoch": 71.90869375273044,
+ "grad_norm": 0.2287488579750061,
+ "learning_rate": 0.0006,
+ "loss": 3.515289783477783,
+ "step": 5177
+ },
+ {
+ "epoch": 71.92267365661861,
+ "grad_norm": 0.21992293000221252,
+ "learning_rate": 0.0006,
+ "loss": 3.5213077068328857,
+ "step": 5178
+ },
+ {
+ "epoch": 71.93665356050677,
+ "grad_norm": 0.21338967978954315,
+ "learning_rate": 0.0006,
+ "loss": 3.5168190002441406,
+ "step": 5179
+ },
+ {
+ "epoch": 71.95063346439493,
+ "grad_norm": 0.2198970913887024,
+ "learning_rate": 0.0006,
+ "loss": 3.517268180847168,
+ "step": 5180
+ },
+ {
+ "epoch": 71.9646133682831,
+ "grad_norm": 0.2309885025024414,
+ "learning_rate": 0.0006,
+ "loss": 3.5538675785064697,
+ "step": 5181
+ },
+ {
+ "epoch": 71.97859327217125,
+ "grad_norm": 0.23529282212257385,
+ "learning_rate": 0.0006,
+ "loss": 3.477951765060425,
+ "step": 5182
+ },
+ {
+ "epoch": 71.99257317605941,
+ "grad_norm": 0.2553477883338928,
+ "learning_rate": 0.0006,
+ "loss": 3.502894878387451,
+ "step": 5183
+ },
+ {
+ "epoch": 72.0,
+ "grad_norm": 0.2943936288356781,
+ "learning_rate": 0.0006,
+ "loss": 3.5049710273742676,
+ "step": 5184
+ },
+ {
+ "epoch": 72.0,
+ "eval_loss": 3.9860572814941406,
+ "eval_runtime": 46.9591,
+ "eval_samples_per_second": 52.003,
+ "eval_steps_per_second": 3.258,
+ "step": 5184
+ },
+ {
+ "epoch": 72.01397990388816,
+ "grad_norm": 0.25285470485687256,
+ "learning_rate": 0.0006,
+ "loss": 3.4515252113342285,
+ "step": 5185
+ },
+ {
+ "epoch": 72.02795980777633,
+ "grad_norm": 0.29215890169143677,
+ "learning_rate": 0.0006,
+ "loss": 3.4472908973693848,
+ "step": 5186
+ },
+ {
+ "epoch": 72.04193971166448,
+ "grad_norm": 0.34719136357307434,
+ "learning_rate": 0.0006,
+ "loss": 3.4762914180755615,
+ "step": 5187
+ },
+ {
+ "epoch": 72.05591961555264,
+ "grad_norm": 0.31336039304733276,
+ "learning_rate": 0.0006,
+ "loss": 3.4866042137145996,
+ "step": 5188
+ },
+ {
+ "epoch": 72.06989951944081,
+ "grad_norm": 0.2586875557899475,
+ "learning_rate": 0.0006,
+ "loss": 3.4296340942382812,
+ "step": 5189
+ },
+ {
+ "epoch": 72.08387942332897,
+ "grad_norm": 0.2677823603153229,
+ "learning_rate": 0.0006,
+ "loss": 3.442481517791748,
+ "step": 5190
+ },
+ {
+ "epoch": 72.09785932721712,
+ "grad_norm": 0.30640944838523865,
+ "learning_rate": 0.0006,
+ "loss": 3.435530424118042,
+ "step": 5191
+ },
+ {
+ "epoch": 72.1118392311053,
+ "grad_norm": 0.29822733998298645,
+ "learning_rate": 0.0006,
+ "loss": 3.4399731159210205,
+ "step": 5192
+ },
+ {
+ "epoch": 72.12581913499345,
+ "grad_norm": 0.25714683532714844,
+ "learning_rate": 0.0006,
+ "loss": 3.4679667949676514,
+ "step": 5193
+ },
+ {
+ "epoch": 72.1397990388816,
+ "grad_norm": 0.2347356528043747,
+ "learning_rate": 0.0006,
+ "loss": 3.4473838806152344,
+ "step": 5194
+ },
+ {
+ "epoch": 72.15377894276976,
+ "grad_norm": 0.23640039563179016,
+ "learning_rate": 0.0006,
+ "loss": 3.4716782569885254,
+ "step": 5195
+ },
+ {
+ "epoch": 72.16775884665793,
+ "grad_norm": 0.2285412698984146,
+ "learning_rate": 0.0006,
+ "loss": 3.4927384853363037,
+ "step": 5196
+ },
+ {
+ "epoch": 72.18173875054609,
+ "grad_norm": 0.2305673509836197,
+ "learning_rate": 0.0006,
+ "loss": 3.5064914226531982,
+ "step": 5197
+ },
+ {
+ "epoch": 72.19571865443424,
+ "grad_norm": 0.21706514060497284,
+ "learning_rate": 0.0006,
+ "loss": 3.4467828273773193,
+ "step": 5198
+ },
+ {
+ "epoch": 72.20969855832242,
+ "grad_norm": 0.21769501268863678,
+ "learning_rate": 0.0006,
+ "loss": 3.473309278488159,
+ "step": 5199
+ },
+ {
+ "epoch": 72.22367846221057,
+ "grad_norm": 0.23256097733974457,
+ "learning_rate": 0.0006,
+ "loss": 3.457587718963623,
+ "step": 5200
+ },
+ {
+ "epoch": 72.23765836609873,
+ "grad_norm": 0.23531964421272278,
+ "learning_rate": 0.0006,
+ "loss": 3.485863208770752,
+ "step": 5201
+ },
+ {
+ "epoch": 72.2516382699869,
+ "grad_norm": 0.2240941971540451,
+ "learning_rate": 0.0006,
+ "loss": 3.4677062034606934,
+ "step": 5202
+ },
+ {
+ "epoch": 72.26561817387505,
+ "grad_norm": 0.22390629351139069,
+ "learning_rate": 0.0006,
+ "loss": 3.5203280448913574,
+ "step": 5203
+ },
+ {
+ "epoch": 72.27959807776321,
+ "grad_norm": 0.21178147196769714,
+ "learning_rate": 0.0006,
+ "loss": 3.4824347496032715,
+ "step": 5204
+ },
+ {
+ "epoch": 72.29357798165138,
+ "grad_norm": 0.21738161146640778,
+ "learning_rate": 0.0006,
+ "loss": 3.4587113857269287,
+ "step": 5205
+ },
+ {
+ "epoch": 72.30755788553954,
+ "grad_norm": 0.21534697711467743,
+ "learning_rate": 0.0006,
+ "loss": 3.499147415161133,
+ "step": 5206
+ },
+ {
+ "epoch": 72.3215377894277,
+ "grad_norm": 0.22616741061210632,
+ "learning_rate": 0.0006,
+ "loss": 3.5025434494018555,
+ "step": 5207
+ },
+ {
+ "epoch": 72.33551769331586,
+ "grad_norm": 0.26784682273864746,
+ "learning_rate": 0.0006,
+ "loss": 3.4733633995056152,
+ "step": 5208
+ },
+ {
+ "epoch": 72.34949759720402,
+ "grad_norm": 0.2774837911128998,
+ "learning_rate": 0.0006,
+ "loss": 3.508082389831543,
+ "step": 5209
+ },
+ {
+ "epoch": 72.36347750109218,
+ "grad_norm": 0.28039997816085815,
+ "learning_rate": 0.0006,
+ "loss": 3.503880500793457,
+ "step": 5210
+ },
+ {
+ "epoch": 72.37745740498035,
+ "grad_norm": 0.2990040183067322,
+ "learning_rate": 0.0006,
+ "loss": 3.4885363578796387,
+ "step": 5211
+ },
+ {
+ "epoch": 72.3914373088685,
+ "grad_norm": 0.2857728600502014,
+ "learning_rate": 0.0006,
+ "loss": 3.4977049827575684,
+ "step": 5212
+ },
+ {
+ "epoch": 72.40541721275666,
+ "grad_norm": 0.2675400972366333,
+ "learning_rate": 0.0006,
+ "loss": 3.49003267288208,
+ "step": 5213
+ },
+ {
+ "epoch": 72.41939711664482,
+ "grad_norm": 0.258004367351532,
+ "learning_rate": 0.0006,
+ "loss": 3.4726967811584473,
+ "step": 5214
+ },
+ {
+ "epoch": 72.43337702053299,
+ "grad_norm": 0.20816923677921295,
+ "learning_rate": 0.0006,
+ "loss": 3.4798901081085205,
+ "step": 5215
+ },
+ {
+ "epoch": 72.44735692442114,
+ "grad_norm": 0.21589888632297516,
+ "learning_rate": 0.0006,
+ "loss": 3.4784836769104004,
+ "step": 5216
+ },
+ {
+ "epoch": 72.4613368283093,
+ "grad_norm": 0.22663359344005585,
+ "learning_rate": 0.0006,
+ "loss": 3.5278806686401367,
+ "step": 5217
+ },
+ {
+ "epoch": 72.47531673219747,
+ "grad_norm": 0.2165268212556839,
+ "learning_rate": 0.0006,
+ "loss": 3.5198988914489746,
+ "step": 5218
+ },
+ {
+ "epoch": 72.48929663608563,
+ "grad_norm": 0.22635547816753387,
+ "learning_rate": 0.0006,
+ "loss": 3.476203441619873,
+ "step": 5219
+ },
+ {
+ "epoch": 72.50327653997378,
+ "grad_norm": 0.23315833508968353,
+ "learning_rate": 0.0006,
+ "loss": 3.4451494216918945,
+ "step": 5220
+ },
+ {
+ "epoch": 72.51725644386195,
+ "grad_norm": 0.2262018620967865,
+ "learning_rate": 0.0006,
+ "loss": 3.5126566886901855,
+ "step": 5221
+ },
+ {
+ "epoch": 72.53123634775011,
+ "grad_norm": 0.2273683398962021,
+ "learning_rate": 0.0006,
+ "loss": 3.485413074493408,
+ "step": 5222
+ },
+ {
+ "epoch": 72.54521625163827,
+ "grad_norm": 0.25254759192466736,
+ "learning_rate": 0.0006,
+ "loss": 3.4997940063476562,
+ "step": 5223
+ },
+ {
+ "epoch": 72.55919615552644,
+ "grad_norm": 0.23467472195625305,
+ "learning_rate": 0.0006,
+ "loss": 3.4924259185791016,
+ "step": 5224
+ },
+ {
+ "epoch": 72.57317605941459,
+ "grad_norm": 0.20206208527088165,
+ "learning_rate": 0.0006,
+ "loss": 3.5010361671447754,
+ "step": 5225
+ },
+ {
+ "epoch": 72.58715596330275,
+ "grad_norm": 0.21526813507080078,
+ "learning_rate": 0.0006,
+ "loss": 3.4889681339263916,
+ "step": 5226
+ },
+ {
+ "epoch": 72.60113586719092,
+ "grad_norm": 0.212263822555542,
+ "learning_rate": 0.0006,
+ "loss": 3.467782497406006,
+ "step": 5227
+ },
+ {
+ "epoch": 72.61511577107908,
+ "grad_norm": 0.2126736342906952,
+ "learning_rate": 0.0006,
+ "loss": 3.470729112625122,
+ "step": 5228
+ },
+ {
+ "epoch": 72.62909567496723,
+ "grad_norm": 0.22448696196079254,
+ "learning_rate": 0.0006,
+ "loss": 3.4688234329223633,
+ "step": 5229
+ },
+ {
+ "epoch": 72.6430755788554,
+ "grad_norm": 0.2322869449853897,
+ "learning_rate": 0.0006,
+ "loss": 3.490103244781494,
+ "step": 5230
+ },
+ {
+ "epoch": 72.65705548274356,
+ "grad_norm": 0.220216765999794,
+ "learning_rate": 0.0006,
+ "loss": 3.474886894226074,
+ "step": 5231
+ },
+ {
+ "epoch": 72.67103538663171,
+ "grad_norm": 0.2191896289587021,
+ "learning_rate": 0.0006,
+ "loss": 3.4965224266052246,
+ "step": 5232
+ },
+ {
+ "epoch": 72.68501529051987,
+ "grad_norm": 0.2120339423418045,
+ "learning_rate": 0.0006,
+ "loss": 3.4710934162139893,
+ "step": 5233
+ },
+ {
+ "epoch": 72.69899519440804,
+ "grad_norm": 0.21517711877822876,
+ "learning_rate": 0.0006,
+ "loss": 3.4698405265808105,
+ "step": 5234
+ },
+ {
+ "epoch": 72.7129750982962,
+ "grad_norm": 0.22012922167778015,
+ "learning_rate": 0.0006,
+ "loss": 3.513930320739746,
+ "step": 5235
+ },
+ {
+ "epoch": 72.72695500218435,
+ "grad_norm": 0.19231025874614716,
+ "learning_rate": 0.0006,
+ "loss": 3.476353168487549,
+ "step": 5236
+ },
+ {
+ "epoch": 72.74093490607252,
+ "grad_norm": 0.19383855164051056,
+ "learning_rate": 0.0006,
+ "loss": 3.5002031326293945,
+ "step": 5237
+ },
+ {
+ "epoch": 72.75491480996068,
+ "grad_norm": 0.22001665830612183,
+ "learning_rate": 0.0006,
+ "loss": 3.5080370903015137,
+ "step": 5238
+ },
+ {
+ "epoch": 72.76889471384884,
+ "grad_norm": 0.27273863554000854,
+ "learning_rate": 0.0006,
+ "loss": 3.504277229309082,
+ "step": 5239
+ },
+ {
+ "epoch": 72.78287461773701,
+ "grad_norm": 0.29014623165130615,
+ "learning_rate": 0.0006,
+ "loss": 3.493192195892334,
+ "step": 5240
+ },
+ {
+ "epoch": 72.79685452162516,
+ "grad_norm": 0.23816372454166412,
+ "learning_rate": 0.0006,
+ "loss": 3.519443988800049,
+ "step": 5241
+ },
+ {
+ "epoch": 72.81083442551332,
+ "grad_norm": 0.24076248705387115,
+ "learning_rate": 0.0006,
+ "loss": 3.4935712814331055,
+ "step": 5242
+ },
+ {
+ "epoch": 72.82481432940149,
+ "grad_norm": 0.264731764793396,
+ "learning_rate": 0.0006,
+ "loss": 3.5004658699035645,
+ "step": 5243
+ },
+ {
+ "epoch": 72.83879423328965,
+ "grad_norm": 0.2939820885658264,
+ "learning_rate": 0.0006,
+ "loss": 3.5297188758850098,
+ "step": 5244
+ },
+ {
+ "epoch": 72.8527741371778,
+ "grad_norm": 0.2904265522956848,
+ "learning_rate": 0.0006,
+ "loss": 3.496081829071045,
+ "step": 5245
+ },
+ {
+ "epoch": 72.86675404106597,
+ "grad_norm": 0.23428429663181305,
+ "learning_rate": 0.0006,
+ "loss": 3.493727684020996,
+ "step": 5246
+ },
+ {
+ "epoch": 72.88073394495413,
+ "grad_norm": 0.22780542075634003,
+ "learning_rate": 0.0006,
+ "loss": 3.523094654083252,
+ "step": 5247
+ },
+ {
+ "epoch": 72.89471384884229,
+ "grad_norm": 0.2745443284511566,
+ "learning_rate": 0.0006,
+ "loss": 3.497293472290039,
+ "step": 5248
+ },
+ {
+ "epoch": 72.90869375273044,
+ "grad_norm": 0.2678476870059967,
+ "learning_rate": 0.0006,
+ "loss": 3.5067732334136963,
+ "step": 5249
+ },
+ {
+ "epoch": 72.92267365661861,
+ "grad_norm": 0.2085755169391632,
+ "learning_rate": 0.0006,
+ "loss": 3.4695444107055664,
+ "step": 5250
+ },
+ {
+ "epoch": 72.93665356050677,
+ "grad_norm": 0.21488192677497864,
+ "learning_rate": 0.0006,
+ "loss": 3.522829055786133,
+ "step": 5251
+ },
+ {
+ "epoch": 72.95063346439493,
+ "grad_norm": 0.21374237537384033,
+ "learning_rate": 0.0006,
+ "loss": 3.5045344829559326,
+ "step": 5252
+ },
+ {
+ "epoch": 72.9646133682831,
+ "grad_norm": 0.23072510957717896,
+ "learning_rate": 0.0006,
+ "loss": 3.474557399749756,
+ "step": 5253
+ },
+ {
+ "epoch": 72.97859327217125,
+ "grad_norm": 0.22491991519927979,
+ "learning_rate": 0.0006,
+ "loss": 3.489443778991699,
+ "step": 5254
+ },
+ {
+ "epoch": 72.99257317605941,
+ "grad_norm": 0.22613948583602905,
+ "learning_rate": 0.0006,
+ "loss": 3.5056793689727783,
+ "step": 5255
+ },
+ {
+ "epoch": 73.0,
+ "grad_norm": 0.23435193300247192,
+ "learning_rate": 0.0006,
+ "loss": 3.520559787750244,
+ "step": 5256
+ },
+ {
+ "epoch": 73.0,
+ "eval_loss": 3.982722282409668,
+ "eval_runtime": 46.464,
+ "eval_samples_per_second": 52.557,
+ "eval_steps_per_second": 3.293,
+ "step": 5256
+ },
+ {
+ "epoch": 73.01397990388816,
+ "grad_norm": 0.22881661355495453,
+ "learning_rate": 0.0006,
+ "loss": 3.468254566192627,
+ "step": 5257
+ },
+ {
+ "epoch": 73.02795980777633,
+ "grad_norm": 0.2834230959415436,
+ "learning_rate": 0.0006,
+ "loss": 3.4606356620788574,
+ "step": 5258
+ },
+ {
+ "epoch": 73.04193971166448,
+ "grad_norm": 0.319560170173645,
+ "learning_rate": 0.0006,
+ "loss": 3.475505828857422,
+ "step": 5259
+ },
+ {
+ "epoch": 73.05591961555264,
+ "grad_norm": 0.32880520820617676,
+ "learning_rate": 0.0006,
+ "loss": 3.493833541870117,
+ "step": 5260
+ },
+ {
+ "epoch": 73.06989951944081,
+ "grad_norm": 0.2588718831539154,
+ "learning_rate": 0.0006,
+ "loss": 3.469942092895508,
+ "step": 5261
+ },
+ {
+ "epoch": 73.08387942332897,
+ "grad_norm": 0.2732829749584198,
+ "learning_rate": 0.0006,
+ "loss": 3.4531373977661133,
+ "step": 5262
+ },
+ {
+ "epoch": 73.09785932721712,
+ "grad_norm": 0.320829302072525,
+ "learning_rate": 0.0006,
+ "loss": 3.492429256439209,
+ "step": 5263
+ },
+ {
+ "epoch": 73.1118392311053,
+ "grad_norm": 0.24258096516132355,
+ "learning_rate": 0.0006,
+ "loss": 3.4776196479797363,
+ "step": 5264
+ },
+ {
+ "epoch": 73.12581913499345,
+ "grad_norm": 0.24697262048721313,
+ "learning_rate": 0.0006,
+ "loss": 3.4624526500701904,
+ "step": 5265
+ },
+ {
+ "epoch": 73.1397990388816,
+ "grad_norm": 0.2629360258579254,
+ "learning_rate": 0.0006,
+ "loss": 3.4608631134033203,
+ "step": 5266
+ },
+ {
+ "epoch": 73.15377894276976,
+ "grad_norm": 0.27060654759407043,
+ "learning_rate": 0.0006,
+ "loss": 3.4834189414978027,
+ "step": 5267
+ },
+ {
+ "epoch": 73.16775884665793,
+ "grad_norm": 0.246307834982872,
+ "learning_rate": 0.0006,
+ "loss": 3.477510929107666,
+ "step": 5268
+ },
+ {
+ "epoch": 73.18173875054609,
+ "grad_norm": 0.2469998300075531,
+ "learning_rate": 0.0006,
+ "loss": 3.4855780601501465,
+ "step": 5269
+ },
+ {
+ "epoch": 73.19571865443424,
+ "grad_norm": 0.24349135160446167,
+ "learning_rate": 0.0006,
+ "loss": 3.468322277069092,
+ "step": 5270
+ },
+ {
+ "epoch": 73.20969855832242,
+ "grad_norm": 0.22562023997306824,
+ "learning_rate": 0.0006,
+ "loss": 3.4036335945129395,
+ "step": 5271
+ },
+ {
+ "epoch": 73.22367846221057,
+ "grad_norm": 0.2311064749956131,
+ "learning_rate": 0.0006,
+ "loss": 3.4399924278259277,
+ "step": 5272
+ },
+ {
+ "epoch": 73.23765836609873,
+ "grad_norm": 0.21685704588890076,
+ "learning_rate": 0.0006,
+ "loss": 3.476149797439575,
+ "step": 5273
+ },
+ {
+ "epoch": 73.2516382699869,
+ "grad_norm": 0.22484169900417328,
+ "learning_rate": 0.0006,
+ "loss": 3.475130081176758,
+ "step": 5274
+ },
+ {
+ "epoch": 73.26561817387505,
+ "grad_norm": 0.22753819823265076,
+ "learning_rate": 0.0006,
+ "loss": 3.5259978771209717,
+ "step": 5275
+ },
+ {
+ "epoch": 73.27959807776321,
+ "grad_norm": 0.23297421634197235,
+ "learning_rate": 0.0006,
+ "loss": 3.4897689819335938,
+ "step": 5276
+ },
+ {
+ "epoch": 73.29357798165138,
+ "grad_norm": 0.22227609157562256,
+ "learning_rate": 0.0006,
+ "loss": 3.4681925773620605,
+ "step": 5277
+ },
+ {
+ "epoch": 73.30755788553954,
+ "grad_norm": 0.23390381038188934,
+ "learning_rate": 0.0006,
+ "loss": 3.4816267490386963,
+ "step": 5278
+ },
+ {
+ "epoch": 73.3215377894277,
+ "grad_norm": 0.25036972761154175,
+ "learning_rate": 0.0006,
+ "loss": 3.4513161182403564,
+ "step": 5279
+ },
+ {
+ "epoch": 73.33551769331586,
+ "grad_norm": 0.22425831854343414,
+ "learning_rate": 0.0006,
+ "loss": 3.504206657409668,
+ "step": 5280
+ },
+ {
+ "epoch": 73.34949759720402,
+ "grad_norm": 0.20987127721309662,
+ "learning_rate": 0.0006,
+ "loss": 3.463526487350464,
+ "step": 5281
+ },
+ {
+ "epoch": 73.36347750109218,
+ "grad_norm": 0.22594138979911804,
+ "learning_rate": 0.0006,
+ "loss": 3.467395067214966,
+ "step": 5282
+ },
+ {
+ "epoch": 73.37745740498035,
+ "grad_norm": 0.2819368243217468,
+ "learning_rate": 0.0006,
+ "loss": 3.458601236343384,
+ "step": 5283
+ },
+ {
+ "epoch": 73.3914373088685,
+ "grad_norm": 0.28703081607818604,
+ "learning_rate": 0.0006,
+ "loss": 3.489081382751465,
+ "step": 5284
+ },
+ {
+ "epoch": 73.40541721275666,
+ "grad_norm": 0.22495481371879578,
+ "learning_rate": 0.0006,
+ "loss": 3.4584622383117676,
+ "step": 5285
+ },
+ {
+ "epoch": 73.41939711664482,
+ "grad_norm": 0.26278403401374817,
+ "learning_rate": 0.0006,
+ "loss": 3.4610750675201416,
+ "step": 5286
+ },
+ {
+ "epoch": 73.43337702053299,
+ "grad_norm": 0.2335882931947708,
+ "learning_rate": 0.0006,
+ "loss": 3.4642205238342285,
+ "step": 5287
+ },
+ {
+ "epoch": 73.44735692442114,
+ "grad_norm": 0.23634950816631317,
+ "learning_rate": 0.0006,
+ "loss": 3.4628195762634277,
+ "step": 5288
+ },
+ {
+ "epoch": 73.4613368283093,
+ "grad_norm": 0.2428942620754242,
+ "learning_rate": 0.0006,
+ "loss": 3.486786365509033,
+ "step": 5289
+ },
+ {
+ "epoch": 73.47531673219747,
+ "grad_norm": 0.2235412299633026,
+ "learning_rate": 0.0006,
+ "loss": 3.4655373096466064,
+ "step": 5290
+ },
+ {
+ "epoch": 73.48929663608563,
+ "grad_norm": 0.22825124859809875,
+ "learning_rate": 0.0006,
+ "loss": 3.519115924835205,
+ "step": 5291
+ },
+ {
+ "epoch": 73.50327653997378,
+ "grad_norm": 0.22555601596832275,
+ "learning_rate": 0.0006,
+ "loss": 3.4672327041625977,
+ "step": 5292
+ },
+ {
+ "epoch": 73.51725644386195,
+ "grad_norm": 0.21196876466274261,
+ "learning_rate": 0.0006,
+ "loss": 3.477919101715088,
+ "step": 5293
+ },
+ {
+ "epoch": 73.53123634775011,
+ "grad_norm": 0.21254780888557434,
+ "learning_rate": 0.0006,
+ "loss": 3.493739604949951,
+ "step": 5294
+ },
+ {
+ "epoch": 73.54521625163827,
+ "grad_norm": 0.22243253886699677,
+ "learning_rate": 0.0006,
+ "loss": 3.5028891563415527,
+ "step": 5295
+ },
+ {
+ "epoch": 73.55919615552644,
+ "grad_norm": 0.1982688158750534,
+ "learning_rate": 0.0006,
+ "loss": 3.490211009979248,
+ "step": 5296
+ },
+ {
+ "epoch": 73.57317605941459,
+ "grad_norm": 0.19433127343654633,
+ "learning_rate": 0.0006,
+ "loss": 3.5000174045562744,
+ "step": 5297
+ },
+ {
+ "epoch": 73.58715596330275,
+ "grad_norm": 0.19470061361789703,
+ "learning_rate": 0.0006,
+ "loss": 3.4725089073181152,
+ "step": 5298
+ },
+ {
+ "epoch": 73.60113586719092,
+ "grad_norm": 0.20479093492031097,
+ "learning_rate": 0.0006,
+ "loss": 3.473649501800537,
+ "step": 5299
+ },
+ {
+ "epoch": 73.61511577107908,
+ "grad_norm": 0.22485226392745972,
+ "learning_rate": 0.0006,
+ "loss": 3.5234975814819336,
+ "step": 5300
+ },
+ {
+ "epoch": 73.62909567496723,
+ "grad_norm": 0.2219000905752182,
+ "learning_rate": 0.0006,
+ "loss": 3.483283281326294,
+ "step": 5301
+ },
+ {
+ "epoch": 73.6430755788554,
+ "grad_norm": 0.25735849142074585,
+ "learning_rate": 0.0006,
+ "loss": 3.4863831996917725,
+ "step": 5302
+ },
+ {
+ "epoch": 73.65705548274356,
+ "grad_norm": 0.2822291851043701,
+ "learning_rate": 0.0006,
+ "loss": 3.4864425659179688,
+ "step": 5303
+ },
+ {
+ "epoch": 73.67103538663171,
+ "grad_norm": 0.2965867817401886,
+ "learning_rate": 0.0006,
+ "loss": 3.487774133682251,
+ "step": 5304
+ },
+ {
+ "epoch": 73.68501529051987,
+ "grad_norm": 0.2446807473897934,
+ "learning_rate": 0.0006,
+ "loss": 3.485553741455078,
+ "step": 5305
+ },
+ {
+ "epoch": 73.69899519440804,
+ "grad_norm": 0.2298526167869568,
+ "learning_rate": 0.0006,
+ "loss": 3.4513039588928223,
+ "step": 5306
+ },
+ {
+ "epoch": 73.7129750982962,
+ "grad_norm": 0.24967409670352936,
+ "learning_rate": 0.0006,
+ "loss": 3.4974756240844727,
+ "step": 5307
+ },
+ {
+ "epoch": 73.72695500218435,
+ "grad_norm": 0.22180770337581635,
+ "learning_rate": 0.0006,
+ "loss": 3.501955509185791,
+ "step": 5308
+ },
+ {
+ "epoch": 73.74093490607252,
+ "grad_norm": 0.21294254064559937,
+ "learning_rate": 0.0006,
+ "loss": 3.52626371383667,
+ "step": 5309
+ },
+ {
+ "epoch": 73.75491480996068,
+ "grad_norm": 0.23970918357372284,
+ "learning_rate": 0.0006,
+ "loss": 3.479355812072754,
+ "step": 5310
+ },
+ {
+ "epoch": 73.76889471384884,
+ "grad_norm": 0.22978267073631287,
+ "learning_rate": 0.0006,
+ "loss": 3.4972357749938965,
+ "step": 5311
+ },
+ {
+ "epoch": 73.78287461773701,
+ "grad_norm": 0.22393731772899628,
+ "learning_rate": 0.0006,
+ "loss": 3.499718189239502,
+ "step": 5312
+ },
+ {
+ "epoch": 73.79685452162516,
+ "grad_norm": 0.2265646904706955,
+ "learning_rate": 0.0006,
+ "loss": 3.5240416526794434,
+ "step": 5313
+ },
+ {
+ "epoch": 73.81083442551332,
+ "grad_norm": 0.23060904443264008,
+ "learning_rate": 0.0006,
+ "loss": 3.4981179237365723,
+ "step": 5314
+ },
+ {
+ "epoch": 73.82481432940149,
+ "grad_norm": 0.2358054369688034,
+ "learning_rate": 0.0006,
+ "loss": 3.4671754837036133,
+ "step": 5315
+ },
+ {
+ "epoch": 73.83879423328965,
+ "grad_norm": 0.22466880083084106,
+ "learning_rate": 0.0006,
+ "loss": 3.5178170204162598,
+ "step": 5316
+ },
+ {
+ "epoch": 73.8527741371778,
+ "grad_norm": 0.24523386359214783,
+ "learning_rate": 0.0006,
+ "loss": 3.5059657096862793,
+ "step": 5317
+ },
+ {
+ "epoch": 73.86675404106597,
+ "grad_norm": 0.24812379479408264,
+ "learning_rate": 0.0006,
+ "loss": 3.4979734420776367,
+ "step": 5318
+ },
+ {
+ "epoch": 73.88073394495413,
+ "grad_norm": 0.2210223525762558,
+ "learning_rate": 0.0006,
+ "loss": 3.5158674716949463,
+ "step": 5319
+ },
+ {
+ "epoch": 73.89471384884229,
+ "grad_norm": 0.23374506831169128,
+ "learning_rate": 0.0006,
+ "loss": 3.4730381965637207,
+ "step": 5320
+ },
+ {
+ "epoch": 73.90869375273044,
+ "grad_norm": 0.2209903597831726,
+ "learning_rate": 0.0006,
+ "loss": 3.5152671337127686,
+ "step": 5321
+ },
+ {
+ "epoch": 73.92267365661861,
+ "grad_norm": 0.19783467054367065,
+ "learning_rate": 0.0006,
+ "loss": 3.508627414703369,
+ "step": 5322
+ },
+ {
+ "epoch": 73.93665356050677,
+ "grad_norm": 0.20683151483535767,
+ "learning_rate": 0.0006,
+ "loss": 3.5041322708129883,
+ "step": 5323
+ },
+ {
+ "epoch": 73.95063346439493,
+ "grad_norm": 0.20111984014511108,
+ "learning_rate": 0.0006,
+ "loss": 3.4618184566497803,
+ "step": 5324
+ },
+ {
+ "epoch": 73.9646133682831,
+ "grad_norm": 0.22296449542045593,
+ "learning_rate": 0.0006,
+ "loss": 3.4695611000061035,
+ "step": 5325
+ },
+ {
+ "epoch": 73.97859327217125,
+ "grad_norm": 0.22317543625831604,
+ "learning_rate": 0.0006,
+ "loss": 3.497115135192871,
+ "step": 5326
+ },
+ {
+ "epoch": 73.99257317605941,
+ "grad_norm": 0.19182799756526947,
+ "learning_rate": 0.0006,
+ "loss": 3.502279758453369,
+ "step": 5327
+ },
+ {
+ "epoch": 74.0,
+ "grad_norm": 0.2484123259782791,
+ "learning_rate": 0.0006,
+ "loss": 3.4998650550842285,
+ "step": 5328
+ },
+ {
+ "epoch": 74.0,
+ "eval_loss": 3.977353572845459,
+ "eval_runtime": 46.9154,
+ "eval_samples_per_second": 52.051,
+ "eval_steps_per_second": 3.261,
+ "step": 5328
+ },
+ {
+ "epoch": 74.01397990388816,
+ "grad_norm": 0.2512458860874176,
+ "learning_rate": 0.0006,
+ "loss": 3.454616069793701,
+ "step": 5329
+ },
+ {
+ "epoch": 74.02795980777633,
+ "grad_norm": 0.2781964838504791,
+ "learning_rate": 0.0006,
+ "loss": 3.4444780349731445,
+ "step": 5330
+ },
+ {
+ "epoch": 74.04193971166448,
+ "grad_norm": 0.3014058470726013,
+ "learning_rate": 0.0006,
+ "loss": 3.4059829711914062,
+ "step": 5331
+ },
+ {
+ "epoch": 74.05591961555264,
+ "grad_norm": 0.28226929903030396,
+ "learning_rate": 0.0006,
+ "loss": 3.474538803100586,
+ "step": 5332
+ },
+ {
+ "epoch": 74.06989951944081,
+ "grad_norm": 0.22589807212352753,
+ "learning_rate": 0.0006,
+ "loss": 3.4484004974365234,
+ "step": 5333
+ },
+ {
+ "epoch": 74.08387942332897,
+ "grad_norm": 0.2317565679550171,
+ "learning_rate": 0.0006,
+ "loss": 3.4559502601623535,
+ "step": 5334
+ },
+ {
+ "epoch": 74.09785932721712,
+ "grad_norm": 0.2484085112810135,
+ "learning_rate": 0.0006,
+ "loss": 3.4723763465881348,
+ "step": 5335
+ },
+ {
+ "epoch": 74.1118392311053,
+ "grad_norm": 0.24313412606716156,
+ "learning_rate": 0.0006,
+ "loss": 3.4581704139709473,
+ "step": 5336
+ },
+ {
+ "epoch": 74.12581913499345,
+ "grad_norm": 0.2317453771829605,
+ "learning_rate": 0.0006,
+ "loss": 3.4556710720062256,
+ "step": 5337
+ },
+ {
+ "epoch": 74.1397990388816,
+ "grad_norm": 0.2423294484615326,
+ "learning_rate": 0.0006,
+ "loss": 3.450899124145508,
+ "step": 5338
+ },
+ {
+ "epoch": 74.15377894276976,
+ "grad_norm": 0.24861979484558105,
+ "learning_rate": 0.0006,
+ "loss": 3.4524154663085938,
+ "step": 5339
+ },
+ {
+ "epoch": 74.16775884665793,
+ "grad_norm": 0.27226537466049194,
+ "learning_rate": 0.0006,
+ "loss": 3.4728293418884277,
+ "step": 5340
+ },
+ {
+ "epoch": 74.18173875054609,
+ "grad_norm": 0.29282820224761963,
+ "learning_rate": 0.0006,
+ "loss": 3.482450008392334,
+ "step": 5341
+ },
+ {
+ "epoch": 74.19571865443424,
+ "grad_norm": 0.2666662931442261,
+ "learning_rate": 0.0006,
+ "loss": 3.4708619117736816,
+ "step": 5342
+ },
+ {
+ "epoch": 74.20969855832242,
+ "grad_norm": 0.22029168903827667,
+ "learning_rate": 0.0006,
+ "loss": 3.4592952728271484,
+ "step": 5343
+ },
+ {
+ "epoch": 74.22367846221057,
+ "grad_norm": 0.21203964948654175,
+ "learning_rate": 0.0006,
+ "loss": 3.4983129501342773,
+ "step": 5344
+ },
+ {
+ "epoch": 74.23765836609873,
+ "grad_norm": 0.24254444241523743,
+ "learning_rate": 0.0006,
+ "loss": 3.4695663452148438,
+ "step": 5345
+ },
+ {
+ "epoch": 74.2516382699869,
+ "grad_norm": 0.28514090180397034,
+ "learning_rate": 0.0006,
+ "loss": 3.501779556274414,
+ "step": 5346
+ },
+ {
+ "epoch": 74.26561817387505,
+ "grad_norm": 0.27082809805870056,
+ "learning_rate": 0.0006,
+ "loss": 3.4754765033721924,
+ "step": 5347
+ },
+ {
+ "epoch": 74.27959807776321,
+ "grad_norm": 0.21144570410251617,
+ "learning_rate": 0.0006,
+ "loss": 3.481623649597168,
+ "step": 5348
+ },
+ {
+ "epoch": 74.29357798165138,
+ "grad_norm": 0.23012803494930267,
+ "learning_rate": 0.0006,
+ "loss": 3.478872776031494,
+ "step": 5349
+ },
+ {
+ "epoch": 74.30755788553954,
+ "grad_norm": 0.2497818022966385,
+ "learning_rate": 0.0006,
+ "loss": 3.465214252471924,
+ "step": 5350
+ },
+ {
+ "epoch": 74.3215377894277,
+ "grad_norm": 0.27346086502075195,
+ "learning_rate": 0.0006,
+ "loss": 3.4749603271484375,
+ "step": 5351
+ },
+ {
+ "epoch": 74.33551769331586,
+ "grad_norm": 0.24193984270095825,
+ "learning_rate": 0.0006,
+ "loss": 3.4898180961608887,
+ "step": 5352
+ },
+ {
+ "epoch": 74.34949759720402,
+ "grad_norm": 0.2432994395494461,
+ "learning_rate": 0.0006,
+ "loss": 3.478156089782715,
+ "step": 5353
+ },
+ {
+ "epoch": 74.36347750109218,
+ "grad_norm": 0.331503689289093,
+ "learning_rate": 0.0006,
+ "loss": 3.496690273284912,
+ "step": 5354
+ },
+ {
+ "epoch": 74.37745740498035,
+ "grad_norm": 0.27467086911201477,
+ "learning_rate": 0.0006,
+ "loss": 3.472379684448242,
+ "step": 5355
+ },
+ {
+ "epoch": 74.3914373088685,
+ "grad_norm": 0.23563839495182037,
+ "learning_rate": 0.0006,
+ "loss": 3.4963388442993164,
+ "step": 5356
+ },
+ {
+ "epoch": 74.40541721275666,
+ "grad_norm": 0.23829393088817596,
+ "learning_rate": 0.0006,
+ "loss": 3.473438262939453,
+ "step": 5357
+ },
+ {
+ "epoch": 74.41939711664482,
+ "grad_norm": 0.28113624453544617,
+ "learning_rate": 0.0006,
+ "loss": 3.481104612350464,
+ "step": 5358
+ },
+ {
+ "epoch": 74.43337702053299,
+ "grad_norm": 0.29099389910697937,
+ "learning_rate": 0.0006,
+ "loss": 3.497255325317383,
+ "step": 5359
+ },
+ {
+ "epoch": 74.44735692442114,
+ "grad_norm": 0.24911890923976898,
+ "learning_rate": 0.0006,
+ "loss": 3.4622669219970703,
+ "step": 5360
+ },
+ {
+ "epoch": 74.4613368283093,
+ "grad_norm": 0.2488860785961151,
+ "learning_rate": 0.0006,
+ "loss": 3.4906888008117676,
+ "step": 5361
+ },
+ {
+ "epoch": 74.47531673219747,
+ "grad_norm": 0.27969980239868164,
+ "learning_rate": 0.0006,
+ "loss": 3.495727300643921,
+ "step": 5362
+ },
+ {
+ "epoch": 74.48929663608563,
+ "grad_norm": 0.2811402380466461,
+ "learning_rate": 0.0006,
+ "loss": 3.4817042350769043,
+ "step": 5363
+ },
+ {
+ "epoch": 74.50327653997378,
+ "grad_norm": 0.25717079639434814,
+ "learning_rate": 0.0006,
+ "loss": 3.4818572998046875,
+ "step": 5364
+ },
+ {
+ "epoch": 74.51725644386195,
+ "grad_norm": 0.2527103126049042,
+ "learning_rate": 0.0006,
+ "loss": 3.494536876678467,
+ "step": 5365
+ },
+ {
+ "epoch": 74.53123634775011,
+ "grad_norm": 0.24561476707458496,
+ "learning_rate": 0.0006,
+ "loss": 3.4908809661865234,
+ "step": 5366
+ },
+ {
+ "epoch": 74.54521625163827,
+ "grad_norm": 0.2540345788002014,
+ "learning_rate": 0.0006,
+ "loss": 3.477179765701294,
+ "step": 5367
+ },
+ {
+ "epoch": 74.55919615552644,
+ "grad_norm": 0.2220340371131897,
+ "learning_rate": 0.0006,
+ "loss": 3.4914112091064453,
+ "step": 5368
+ },
+ {
+ "epoch": 74.57317605941459,
+ "grad_norm": 0.21146169304847717,
+ "learning_rate": 0.0006,
+ "loss": 3.457792043685913,
+ "step": 5369
+ },
+ {
+ "epoch": 74.58715596330275,
+ "grad_norm": 0.2657042443752289,
+ "learning_rate": 0.0006,
+ "loss": 3.4626612663269043,
+ "step": 5370
+ },
+ {
+ "epoch": 74.60113586719092,
+ "grad_norm": 0.2684510350227356,
+ "learning_rate": 0.0006,
+ "loss": 3.472271203994751,
+ "step": 5371
+ },
+ {
+ "epoch": 74.61511577107908,
+ "grad_norm": 0.22635070979595184,
+ "learning_rate": 0.0006,
+ "loss": 3.4719159603118896,
+ "step": 5372
+ },
+ {
+ "epoch": 74.62909567496723,
+ "grad_norm": 0.22514945268630981,
+ "learning_rate": 0.0006,
+ "loss": 3.4851810932159424,
+ "step": 5373
+ },
+ {
+ "epoch": 74.6430755788554,
+ "grad_norm": 0.24570822715759277,
+ "learning_rate": 0.0006,
+ "loss": 3.4688820838928223,
+ "step": 5374
+ },
+ {
+ "epoch": 74.65705548274356,
+ "grad_norm": 0.24397042393684387,
+ "learning_rate": 0.0006,
+ "loss": 3.4923229217529297,
+ "step": 5375
+ },
+ {
+ "epoch": 74.67103538663171,
+ "grad_norm": 0.23729953169822693,
+ "learning_rate": 0.0006,
+ "loss": 3.4608895778656006,
+ "step": 5376
+ },
+ {
+ "epoch": 74.68501529051987,
+ "grad_norm": 0.2729131877422333,
+ "learning_rate": 0.0006,
+ "loss": 3.4602279663085938,
+ "step": 5377
+ },
+ {
+ "epoch": 74.69899519440804,
+ "grad_norm": 0.25115323066711426,
+ "learning_rate": 0.0006,
+ "loss": 3.514993906021118,
+ "step": 5378
+ },
+ {
+ "epoch": 74.7129750982962,
+ "grad_norm": 0.22035203874111176,
+ "learning_rate": 0.0006,
+ "loss": 3.4471445083618164,
+ "step": 5379
+ },
+ {
+ "epoch": 74.72695500218435,
+ "grad_norm": 0.21248559653759003,
+ "learning_rate": 0.0006,
+ "loss": 3.495924472808838,
+ "step": 5380
+ },
+ {
+ "epoch": 74.74093490607252,
+ "grad_norm": 0.2532788813114166,
+ "learning_rate": 0.0006,
+ "loss": 3.4937939643859863,
+ "step": 5381
+ },
+ {
+ "epoch": 74.75491480996068,
+ "grad_norm": 0.3140663206577301,
+ "learning_rate": 0.0006,
+ "loss": 3.47257661819458,
+ "step": 5382
+ },
+ {
+ "epoch": 74.76889471384884,
+ "grad_norm": 0.24233469367027283,
+ "learning_rate": 0.0006,
+ "loss": 3.522697925567627,
+ "step": 5383
+ },
+ {
+ "epoch": 74.78287461773701,
+ "grad_norm": 0.21789517998695374,
+ "learning_rate": 0.0006,
+ "loss": 3.4718894958496094,
+ "step": 5384
+ },
+ {
+ "epoch": 74.79685452162516,
+ "grad_norm": 0.27909520268440247,
+ "learning_rate": 0.0006,
+ "loss": 3.495565891265869,
+ "step": 5385
+ },
+ {
+ "epoch": 74.81083442551332,
+ "grad_norm": 0.2829185724258423,
+ "learning_rate": 0.0006,
+ "loss": 3.498117446899414,
+ "step": 5386
+ },
+ {
+ "epoch": 74.82481432940149,
+ "grad_norm": 0.24295735359191895,
+ "learning_rate": 0.0006,
+ "loss": 3.520672559738159,
+ "step": 5387
+ },
+ {
+ "epoch": 74.83879423328965,
+ "grad_norm": 0.22691823542118073,
+ "learning_rate": 0.0006,
+ "loss": 3.493411064147949,
+ "step": 5388
+ },
+ {
+ "epoch": 74.8527741371778,
+ "grad_norm": 0.2304782122373581,
+ "learning_rate": 0.0006,
+ "loss": 3.515381336212158,
+ "step": 5389
+ },
+ {
+ "epoch": 74.86675404106597,
+ "grad_norm": 0.2201395034790039,
+ "learning_rate": 0.0006,
+ "loss": 3.4841480255126953,
+ "step": 5390
+ },
+ {
+ "epoch": 74.88073394495413,
+ "grad_norm": 0.2174619734287262,
+ "learning_rate": 0.0006,
+ "loss": 3.522420883178711,
+ "step": 5391
+ },
+ {
+ "epoch": 74.89471384884229,
+ "grad_norm": 0.2168722301721573,
+ "learning_rate": 0.0006,
+ "loss": 3.5378670692443848,
+ "step": 5392
+ },
+ {
+ "epoch": 74.90869375273044,
+ "grad_norm": 0.2191118448972702,
+ "learning_rate": 0.0006,
+ "loss": 3.4727582931518555,
+ "step": 5393
+ },
+ {
+ "epoch": 74.92267365661861,
+ "grad_norm": 0.20210173726081848,
+ "learning_rate": 0.0006,
+ "loss": 3.482863426208496,
+ "step": 5394
+ },
+ {
+ "epoch": 74.93665356050677,
+ "grad_norm": 0.2193301022052765,
+ "learning_rate": 0.0006,
+ "loss": 3.504102945327759,
+ "step": 5395
+ },
+ {
+ "epoch": 74.95063346439493,
+ "grad_norm": 0.24017557501792908,
+ "learning_rate": 0.0006,
+ "loss": 3.5117030143737793,
+ "step": 5396
+ },
+ {
+ "epoch": 74.9646133682831,
+ "grad_norm": 0.2410554140806198,
+ "learning_rate": 0.0006,
+ "loss": 3.4764766693115234,
+ "step": 5397
+ },
+ {
+ "epoch": 74.97859327217125,
+ "grad_norm": 0.22423039376735687,
+ "learning_rate": 0.0006,
+ "loss": 3.480515480041504,
+ "step": 5398
+ },
+ {
+ "epoch": 74.99257317605941,
+ "grad_norm": 0.21722744405269623,
+ "learning_rate": 0.0006,
+ "loss": 3.498002052307129,
+ "step": 5399
+ },
+ {
+ "epoch": 75.0,
+ "grad_norm": 0.25303882360458374,
+ "learning_rate": 0.0006,
+ "loss": 3.5146775245666504,
+ "step": 5400
+ },
+ {
+ "epoch": 75.0,
+ "eval_loss": 3.98659610748291,
+ "eval_runtime": 46.184,
+ "eval_samples_per_second": 52.875,
+ "eval_steps_per_second": 3.313,
+ "step": 5400
+ },
+ {
+ "epoch": 75.01397990388816,
+ "grad_norm": 0.22890645265579224,
+ "learning_rate": 0.0006,
+ "loss": 3.4320144653320312,
+ "step": 5401
+ },
+ {
+ "epoch": 75.02795980777633,
+ "grad_norm": 0.21108074486255646,
+ "learning_rate": 0.0006,
+ "loss": 3.4783573150634766,
+ "step": 5402
+ },
+ {
+ "epoch": 75.04193971166448,
+ "grad_norm": 0.24622507393360138,
+ "learning_rate": 0.0006,
+ "loss": 3.443662643432617,
+ "step": 5403
+ },
+ {
+ "epoch": 75.05591961555264,
+ "grad_norm": 0.27554580569267273,
+ "learning_rate": 0.0006,
+ "loss": 3.4758429527282715,
+ "step": 5404
+ },
+ {
+ "epoch": 75.06989951944081,
+ "grad_norm": 0.23775196075439453,
+ "learning_rate": 0.0006,
+ "loss": 3.433439254760742,
+ "step": 5405
+ },
+ {
+ "epoch": 75.08387942332897,
+ "grad_norm": 0.24933192133903503,
+ "learning_rate": 0.0006,
+ "loss": 3.474876642227173,
+ "step": 5406
+ },
+ {
+ "epoch": 75.09785932721712,
+ "grad_norm": 0.25970155000686646,
+ "learning_rate": 0.0006,
+ "loss": 3.4557571411132812,
+ "step": 5407
+ },
+ {
+ "epoch": 75.1118392311053,
+ "grad_norm": 0.24002394080162048,
+ "learning_rate": 0.0006,
+ "loss": 3.487683057785034,
+ "step": 5408
+ },
+ {
+ "epoch": 75.12581913499345,
+ "grad_norm": 0.23790079355239868,
+ "learning_rate": 0.0006,
+ "loss": 3.4572582244873047,
+ "step": 5409
+ },
+ {
+ "epoch": 75.1397990388816,
+ "grad_norm": 0.24431537091732025,
+ "learning_rate": 0.0006,
+ "loss": 3.47338604927063,
+ "step": 5410
+ },
+ {
+ "epoch": 75.15377894276976,
+ "grad_norm": 0.23062901198863983,
+ "learning_rate": 0.0006,
+ "loss": 3.4597620964050293,
+ "step": 5411
+ },
+ {
+ "epoch": 75.16775884665793,
+ "grad_norm": 0.22011473774909973,
+ "learning_rate": 0.0006,
+ "loss": 3.442854404449463,
+ "step": 5412
+ },
+ {
+ "epoch": 75.18173875054609,
+ "grad_norm": 0.22079597413539886,
+ "learning_rate": 0.0006,
+ "loss": 3.4655394554138184,
+ "step": 5413
+ },
+ {
+ "epoch": 75.19571865443424,
+ "grad_norm": 0.2491050660610199,
+ "learning_rate": 0.0006,
+ "loss": 3.4235432147979736,
+ "step": 5414
+ },
+ {
+ "epoch": 75.20969855832242,
+ "grad_norm": 0.2579537332057953,
+ "learning_rate": 0.0006,
+ "loss": 3.4655489921569824,
+ "step": 5415
+ },
+ {
+ "epoch": 75.22367846221057,
+ "grad_norm": 0.2544846832752228,
+ "learning_rate": 0.0006,
+ "loss": 3.4843227863311768,
+ "step": 5416
+ },
+ {
+ "epoch": 75.23765836609873,
+ "grad_norm": 0.2496761977672577,
+ "learning_rate": 0.0006,
+ "loss": 3.4830572605133057,
+ "step": 5417
+ },
+ {
+ "epoch": 75.2516382699869,
+ "grad_norm": 0.23450163006782532,
+ "learning_rate": 0.0006,
+ "loss": 3.4443750381469727,
+ "step": 5418
+ },
+ {
+ "epoch": 75.26561817387505,
+ "grad_norm": 0.21221424639225006,
+ "learning_rate": 0.0006,
+ "loss": 3.4960341453552246,
+ "step": 5419
+ },
+ {
+ "epoch": 75.27959807776321,
+ "grad_norm": 0.24375751614570618,
+ "learning_rate": 0.0006,
+ "loss": 3.489213466644287,
+ "step": 5420
+ },
+ {
+ "epoch": 75.29357798165138,
+ "grad_norm": 0.2396956831216812,
+ "learning_rate": 0.0006,
+ "loss": 3.4710469245910645,
+ "step": 5421
+ },
+ {
+ "epoch": 75.30755788553954,
+ "grad_norm": 0.2423015981912613,
+ "learning_rate": 0.0006,
+ "loss": 3.4676403999328613,
+ "step": 5422
+ },
+ {
+ "epoch": 75.3215377894277,
+ "grad_norm": 0.21398219466209412,
+ "learning_rate": 0.0006,
+ "loss": 3.4844627380371094,
+ "step": 5423
+ },
+ {
+ "epoch": 75.33551769331586,
+ "grad_norm": 0.22983498871326447,
+ "learning_rate": 0.0006,
+ "loss": 3.499535083770752,
+ "step": 5424
+ },
+ {
+ "epoch": 75.34949759720402,
+ "grad_norm": 0.2247568666934967,
+ "learning_rate": 0.0006,
+ "loss": 3.459460973739624,
+ "step": 5425
+ },
+ {
+ "epoch": 75.36347750109218,
+ "grad_norm": 0.2223675400018692,
+ "learning_rate": 0.0006,
+ "loss": 3.483078718185425,
+ "step": 5426
+ },
+ {
+ "epoch": 75.37745740498035,
+ "grad_norm": 0.25076913833618164,
+ "learning_rate": 0.0006,
+ "loss": 3.4823365211486816,
+ "step": 5427
+ },
+ {
+ "epoch": 75.3914373088685,
+ "grad_norm": 0.23170171678066254,
+ "learning_rate": 0.0006,
+ "loss": 3.487278461456299,
+ "step": 5428
+ },
+ {
+ "epoch": 75.40541721275666,
+ "grad_norm": 0.22735518217086792,
+ "learning_rate": 0.0006,
+ "loss": 3.4565181732177734,
+ "step": 5429
+ },
+ {
+ "epoch": 75.41939711664482,
+ "grad_norm": 0.2241843193769455,
+ "learning_rate": 0.0006,
+ "loss": 3.4886221885681152,
+ "step": 5430
+ },
+ {
+ "epoch": 75.43337702053299,
+ "grad_norm": 0.23641140758991241,
+ "learning_rate": 0.0006,
+ "loss": 3.4589765071868896,
+ "step": 5431
+ },
+ {
+ "epoch": 75.44735692442114,
+ "grad_norm": 0.22404645383358002,
+ "learning_rate": 0.0006,
+ "loss": 3.4804739952087402,
+ "step": 5432
+ },
+ {
+ "epoch": 75.4613368283093,
+ "grad_norm": 0.22107535600662231,
+ "learning_rate": 0.0006,
+ "loss": 3.5022053718566895,
+ "step": 5433
+ },
+ {
+ "epoch": 75.47531673219747,
+ "grad_norm": 0.26106131076812744,
+ "learning_rate": 0.0006,
+ "loss": 3.4907431602478027,
+ "step": 5434
+ },
+ {
+ "epoch": 75.48929663608563,
+ "grad_norm": 0.24156032502651215,
+ "learning_rate": 0.0006,
+ "loss": 3.4733991622924805,
+ "step": 5435
+ },
+ {
+ "epoch": 75.50327653997378,
+ "grad_norm": 0.24767442047595978,
+ "learning_rate": 0.0006,
+ "loss": 3.4697909355163574,
+ "step": 5436
+ },
+ {
+ "epoch": 75.51725644386195,
+ "grad_norm": 0.2323860228061676,
+ "learning_rate": 0.0006,
+ "loss": 3.4606242179870605,
+ "step": 5437
+ },
+ {
+ "epoch": 75.53123634775011,
+ "grad_norm": 0.2262393981218338,
+ "learning_rate": 0.0006,
+ "loss": 3.4854025840759277,
+ "step": 5438
+ },
+ {
+ "epoch": 75.54521625163827,
+ "grad_norm": 0.23461535573005676,
+ "learning_rate": 0.0006,
+ "loss": 3.4778385162353516,
+ "step": 5439
+ },
+ {
+ "epoch": 75.55919615552644,
+ "grad_norm": 0.27161163091659546,
+ "learning_rate": 0.0006,
+ "loss": 3.495377540588379,
+ "step": 5440
+ },
+ {
+ "epoch": 75.57317605941459,
+ "grad_norm": 0.24618741869926453,
+ "learning_rate": 0.0006,
+ "loss": 3.47642183303833,
+ "step": 5441
+ },
+ {
+ "epoch": 75.58715596330275,
+ "grad_norm": 0.22948747873306274,
+ "learning_rate": 0.0006,
+ "loss": 3.4459116458892822,
+ "step": 5442
+ },
+ {
+ "epoch": 75.60113586719092,
+ "grad_norm": 0.23935501277446747,
+ "learning_rate": 0.0006,
+ "loss": 3.487091541290283,
+ "step": 5443
+ },
+ {
+ "epoch": 75.61511577107908,
+ "grad_norm": 0.2796297073364258,
+ "learning_rate": 0.0006,
+ "loss": 3.473480701446533,
+ "step": 5444
+ },
+ {
+ "epoch": 75.62909567496723,
+ "grad_norm": 0.29329824447631836,
+ "learning_rate": 0.0006,
+ "loss": 3.5074462890625,
+ "step": 5445
+ },
+ {
+ "epoch": 75.6430755788554,
+ "grad_norm": 0.2570355534553528,
+ "learning_rate": 0.0006,
+ "loss": 3.489321231842041,
+ "step": 5446
+ },
+ {
+ "epoch": 75.65705548274356,
+ "grad_norm": 0.2363484650850296,
+ "learning_rate": 0.0006,
+ "loss": 3.468007802963257,
+ "step": 5447
+ },
+ {
+ "epoch": 75.67103538663171,
+ "grad_norm": 0.2406139075756073,
+ "learning_rate": 0.0006,
+ "loss": 3.46791410446167,
+ "step": 5448
+ },
+ {
+ "epoch": 75.68501529051987,
+ "grad_norm": 0.21734113991260529,
+ "learning_rate": 0.0006,
+ "loss": 3.4879536628723145,
+ "step": 5449
+ },
+ {
+ "epoch": 75.69899519440804,
+ "grad_norm": 0.23314808309078217,
+ "learning_rate": 0.0006,
+ "loss": 3.4743285179138184,
+ "step": 5450
+ },
+ {
+ "epoch": 75.7129750982962,
+ "grad_norm": 0.23886935412883759,
+ "learning_rate": 0.0006,
+ "loss": 3.4746532440185547,
+ "step": 5451
+ },
+ {
+ "epoch": 75.72695500218435,
+ "grad_norm": 0.22808042168617249,
+ "learning_rate": 0.0006,
+ "loss": 3.4969987869262695,
+ "step": 5452
+ },
+ {
+ "epoch": 75.74093490607252,
+ "grad_norm": 0.2143876552581787,
+ "learning_rate": 0.0006,
+ "loss": 3.4843339920043945,
+ "step": 5453
+ },
+ {
+ "epoch": 75.75491480996068,
+ "grad_norm": 0.21905699372291565,
+ "learning_rate": 0.0006,
+ "loss": 3.4854626655578613,
+ "step": 5454
+ },
+ {
+ "epoch": 75.76889471384884,
+ "grad_norm": 0.222469300031662,
+ "learning_rate": 0.0006,
+ "loss": 3.4997758865356445,
+ "step": 5455
+ },
+ {
+ "epoch": 75.78287461773701,
+ "grad_norm": 0.23095394670963287,
+ "learning_rate": 0.0006,
+ "loss": 3.515315532684326,
+ "step": 5456
+ },
+ {
+ "epoch": 75.79685452162516,
+ "grad_norm": 0.23326516151428223,
+ "learning_rate": 0.0006,
+ "loss": 3.482665538787842,
+ "step": 5457
+ },
+ {
+ "epoch": 75.81083442551332,
+ "grad_norm": 0.22779764235019684,
+ "learning_rate": 0.0006,
+ "loss": 3.5068790912628174,
+ "step": 5458
+ },
+ {
+ "epoch": 75.82481432940149,
+ "grad_norm": 0.2396935224533081,
+ "learning_rate": 0.0006,
+ "loss": 3.4874000549316406,
+ "step": 5459
+ },
+ {
+ "epoch": 75.83879423328965,
+ "grad_norm": 0.25353050231933594,
+ "learning_rate": 0.0006,
+ "loss": 3.4948503971099854,
+ "step": 5460
+ },
+ {
+ "epoch": 75.8527741371778,
+ "grad_norm": 0.21191656589508057,
+ "learning_rate": 0.0006,
+ "loss": 3.4621965885162354,
+ "step": 5461
+ },
+ {
+ "epoch": 75.86675404106597,
+ "grad_norm": 0.2224014550447464,
+ "learning_rate": 0.0006,
+ "loss": 3.4568324089050293,
+ "step": 5462
+ },
+ {
+ "epoch": 75.88073394495413,
+ "grad_norm": 0.2205243706703186,
+ "learning_rate": 0.0006,
+ "loss": 3.4809136390686035,
+ "step": 5463
+ },
+ {
+ "epoch": 75.89471384884229,
+ "grad_norm": 0.2065657079219818,
+ "learning_rate": 0.0006,
+ "loss": 3.4930431842803955,
+ "step": 5464
+ },
+ {
+ "epoch": 75.90869375273044,
+ "grad_norm": 0.23017582297325134,
+ "learning_rate": 0.0006,
+ "loss": 3.471113443374634,
+ "step": 5465
+ },
+ {
+ "epoch": 75.92267365661861,
+ "grad_norm": 0.23186780512332916,
+ "learning_rate": 0.0006,
+ "loss": 3.4903316497802734,
+ "step": 5466
+ },
+ {
+ "epoch": 75.93665356050677,
+ "grad_norm": 0.21441741287708282,
+ "learning_rate": 0.0006,
+ "loss": 3.4762520790100098,
+ "step": 5467
+ },
+ {
+ "epoch": 75.95063346439493,
+ "grad_norm": 0.23942787945270538,
+ "learning_rate": 0.0006,
+ "loss": 3.5144190788269043,
+ "step": 5468
+ },
+ {
+ "epoch": 75.9646133682831,
+ "grad_norm": 0.2516455352306366,
+ "learning_rate": 0.0006,
+ "loss": 3.496724843978882,
+ "step": 5469
+ },
+ {
+ "epoch": 75.97859327217125,
+ "grad_norm": 0.26983004808425903,
+ "learning_rate": 0.0006,
+ "loss": 3.4975180625915527,
+ "step": 5470
+ },
+ {
+ "epoch": 75.99257317605941,
+ "grad_norm": 0.2471132129430771,
+ "learning_rate": 0.0006,
+ "loss": 3.4897234439849854,
+ "step": 5471
+ },
+ {
+ "epoch": 76.0,
+ "grad_norm": 0.2606436014175415,
+ "learning_rate": 0.0006,
+ "loss": 3.4784388542175293,
+ "step": 5472
+ },
+ {
+ "epoch": 76.0,
+ "eval_loss": 3.973442554473877,
+ "eval_runtime": 46.348,
+ "eval_samples_per_second": 52.688,
+ "eval_steps_per_second": 3.301,
+ "step": 5472
+ },
+ {
+ "epoch": 76.01397990388816,
+ "grad_norm": 0.28274571895599365,
+ "learning_rate": 0.0006,
+ "loss": 3.432469367980957,
+ "step": 5473
+ },
+ {
+ "epoch": 76.02795980777633,
+ "grad_norm": 0.3165026009082794,
+ "learning_rate": 0.0006,
+ "loss": 3.4121832847595215,
+ "step": 5474
+ },
+ {
+ "epoch": 76.04193971166448,
+ "grad_norm": 0.33816471695899963,
+ "learning_rate": 0.0006,
+ "loss": 3.429927349090576,
+ "step": 5475
+ },
+ {
+ "epoch": 76.05591961555264,
+ "grad_norm": 0.2813689112663269,
+ "learning_rate": 0.0006,
+ "loss": 3.4992995262145996,
+ "step": 5476
+ },
+ {
+ "epoch": 76.06989951944081,
+ "grad_norm": 0.2319067418575287,
+ "learning_rate": 0.0006,
+ "loss": 3.468172073364258,
+ "step": 5477
+ },
+ {
+ "epoch": 76.08387942332897,
+ "grad_norm": 0.2963521182537079,
+ "learning_rate": 0.0006,
+ "loss": 3.4306883811950684,
+ "step": 5478
+ },
+ {
+ "epoch": 76.09785932721712,
+ "grad_norm": 0.3123914301395416,
+ "learning_rate": 0.0006,
+ "loss": 3.434607982635498,
+ "step": 5479
+ },
+ {
+ "epoch": 76.1118392311053,
+ "grad_norm": 0.28318360447883606,
+ "learning_rate": 0.0006,
+ "loss": 3.4461169242858887,
+ "step": 5480
+ },
+ {
+ "epoch": 76.12581913499345,
+ "grad_norm": 0.2599116265773773,
+ "learning_rate": 0.0006,
+ "loss": 3.452208995819092,
+ "step": 5481
+ },
+ {
+ "epoch": 76.1397990388816,
+ "grad_norm": 0.2547946274280548,
+ "learning_rate": 0.0006,
+ "loss": 3.456831455230713,
+ "step": 5482
+ },
+ {
+ "epoch": 76.15377894276976,
+ "grad_norm": 0.25178053975105286,
+ "learning_rate": 0.0006,
+ "loss": 3.4486212730407715,
+ "step": 5483
+ },
+ {
+ "epoch": 76.16775884665793,
+ "grad_norm": 0.2500477135181427,
+ "learning_rate": 0.0006,
+ "loss": 3.4861841201782227,
+ "step": 5484
+ },
+ {
+ "epoch": 76.18173875054609,
+ "grad_norm": 0.25729069113731384,
+ "learning_rate": 0.0006,
+ "loss": 3.4522268772125244,
+ "step": 5485
+ },
+ {
+ "epoch": 76.19571865443424,
+ "grad_norm": 0.2618412375450134,
+ "learning_rate": 0.0006,
+ "loss": 3.4625625610351562,
+ "step": 5486
+ },
+ {
+ "epoch": 76.20969855832242,
+ "grad_norm": 0.24906174838542938,
+ "learning_rate": 0.0006,
+ "loss": 3.5010147094726562,
+ "step": 5487
+ },
+ {
+ "epoch": 76.22367846221057,
+ "grad_norm": 0.2631669342517853,
+ "learning_rate": 0.0006,
+ "loss": 3.4834048748016357,
+ "step": 5488
+ },
+ {
+ "epoch": 76.23765836609873,
+ "grad_norm": 0.22962148487567902,
+ "learning_rate": 0.0006,
+ "loss": 3.437201976776123,
+ "step": 5489
+ },
+ {
+ "epoch": 76.2516382699869,
+ "grad_norm": 0.21113844215869904,
+ "learning_rate": 0.0006,
+ "loss": 3.4715452194213867,
+ "step": 5490
+ },
+ {
+ "epoch": 76.26561817387505,
+ "grad_norm": 0.21345451474189758,
+ "learning_rate": 0.0006,
+ "loss": 3.470175266265869,
+ "step": 5491
+ },
+ {
+ "epoch": 76.27959807776321,
+ "grad_norm": 0.22897619009017944,
+ "learning_rate": 0.0006,
+ "loss": 3.458296775817871,
+ "step": 5492
+ },
+ {
+ "epoch": 76.29357798165138,
+ "grad_norm": 0.2222777009010315,
+ "learning_rate": 0.0006,
+ "loss": 3.4519572257995605,
+ "step": 5493
+ },
+ {
+ "epoch": 76.30755788553954,
+ "grad_norm": 0.2297116070985794,
+ "learning_rate": 0.0006,
+ "loss": 3.470816135406494,
+ "step": 5494
+ },
+ {
+ "epoch": 76.3215377894277,
+ "grad_norm": 0.24459777772426605,
+ "learning_rate": 0.0006,
+ "loss": 3.490407943725586,
+ "step": 5495
+ },
+ {
+ "epoch": 76.33551769331586,
+ "grad_norm": 0.22549642622470856,
+ "learning_rate": 0.0006,
+ "loss": 3.471388816833496,
+ "step": 5496
+ },
+ {
+ "epoch": 76.34949759720402,
+ "grad_norm": 0.220009908080101,
+ "learning_rate": 0.0006,
+ "loss": 3.46909761428833,
+ "step": 5497
+ },
+ {
+ "epoch": 76.36347750109218,
+ "grad_norm": 0.21473553776741028,
+ "learning_rate": 0.0006,
+ "loss": 3.491536855697632,
+ "step": 5498
+ },
+ {
+ "epoch": 76.37745740498035,
+ "grad_norm": 0.20368808507919312,
+ "learning_rate": 0.0006,
+ "loss": 3.449502944946289,
+ "step": 5499
+ },
+ {
+ "epoch": 76.3914373088685,
+ "grad_norm": 0.20559734106063843,
+ "learning_rate": 0.0006,
+ "loss": 3.4466171264648438,
+ "step": 5500
+ },
+ {
+ "epoch": 76.40541721275666,
+ "grad_norm": 0.2107473611831665,
+ "learning_rate": 0.0006,
+ "loss": 3.4709558486938477,
+ "step": 5501
+ },
+ {
+ "epoch": 76.41939711664482,
+ "grad_norm": 0.20774322748184204,
+ "learning_rate": 0.0006,
+ "loss": 3.5067873001098633,
+ "step": 5502
+ },
+ {
+ "epoch": 76.43337702053299,
+ "grad_norm": 0.20616984367370605,
+ "learning_rate": 0.0006,
+ "loss": 3.46718168258667,
+ "step": 5503
+ },
+ {
+ "epoch": 76.44735692442114,
+ "grad_norm": 0.22518491744995117,
+ "learning_rate": 0.0006,
+ "loss": 3.4624900817871094,
+ "step": 5504
+ },
+ {
+ "epoch": 76.4613368283093,
+ "grad_norm": 0.21241682767868042,
+ "learning_rate": 0.0006,
+ "loss": 3.4807918071746826,
+ "step": 5505
+ },
+ {
+ "epoch": 76.47531673219747,
+ "grad_norm": 0.20331047475337982,
+ "learning_rate": 0.0006,
+ "loss": 3.4387712478637695,
+ "step": 5506
+ },
+ {
+ "epoch": 76.48929663608563,
+ "grad_norm": 0.20476725697517395,
+ "learning_rate": 0.0006,
+ "loss": 3.478198528289795,
+ "step": 5507
+ },
+ {
+ "epoch": 76.50327653997378,
+ "grad_norm": 0.19799263775348663,
+ "learning_rate": 0.0006,
+ "loss": 3.458812713623047,
+ "step": 5508
+ },
+ {
+ "epoch": 76.51725644386195,
+ "grad_norm": 0.20378418266773224,
+ "learning_rate": 0.0006,
+ "loss": 3.492115020751953,
+ "step": 5509
+ },
+ {
+ "epoch": 76.53123634775011,
+ "grad_norm": 0.19318847358226776,
+ "learning_rate": 0.0006,
+ "loss": 3.444512128829956,
+ "step": 5510
+ },
+ {
+ "epoch": 76.54521625163827,
+ "grad_norm": 0.20766256749629974,
+ "learning_rate": 0.0006,
+ "loss": 3.4897234439849854,
+ "step": 5511
+ },
+ {
+ "epoch": 76.55919615552644,
+ "grad_norm": 0.20554299652576447,
+ "learning_rate": 0.0006,
+ "loss": 3.470285415649414,
+ "step": 5512
+ },
+ {
+ "epoch": 76.57317605941459,
+ "grad_norm": 0.21081854403018951,
+ "learning_rate": 0.0006,
+ "loss": 3.473558187484741,
+ "step": 5513
+ },
+ {
+ "epoch": 76.58715596330275,
+ "grad_norm": 0.23622071743011475,
+ "learning_rate": 0.0006,
+ "loss": 3.4782865047454834,
+ "step": 5514
+ },
+ {
+ "epoch": 76.60113586719092,
+ "grad_norm": 0.22481192648410797,
+ "learning_rate": 0.0006,
+ "loss": 3.4996776580810547,
+ "step": 5515
+ },
+ {
+ "epoch": 76.61511577107908,
+ "grad_norm": 0.2192675620317459,
+ "learning_rate": 0.0006,
+ "loss": 3.521728277206421,
+ "step": 5516
+ },
+ {
+ "epoch": 76.62909567496723,
+ "grad_norm": 0.23627865314483643,
+ "learning_rate": 0.0006,
+ "loss": 3.5019800662994385,
+ "step": 5517
+ },
+ {
+ "epoch": 76.6430755788554,
+ "grad_norm": 0.22374436259269714,
+ "learning_rate": 0.0006,
+ "loss": 3.4527387619018555,
+ "step": 5518
+ },
+ {
+ "epoch": 76.65705548274356,
+ "grad_norm": 0.23872409760951996,
+ "learning_rate": 0.0006,
+ "loss": 3.4938204288482666,
+ "step": 5519
+ },
+ {
+ "epoch": 76.67103538663171,
+ "grad_norm": 0.23943012952804565,
+ "learning_rate": 0.0006,
+ "loss": 3.4902846813201904,
+ "step": 5520
+ },
+ {
+ "epoch": 76.68501529051987,
+ "grad_norm": 0.23605254292488098,
+ "learning_rate": 0.0006,
+ "loss": 3.4715919494628906,
+ "step": 5521
+ },
+ {
+ "epoch": 76.69899519440804,
+ "grad_norm": 0.2116839587688446,
+ "learning_rate": 0.0006,
+ "loss": 3.515658378601074,
+ "step": 5522
+ },
+ {
+ "epoch": 76.7129750982962,
+ "grad_norm": 0.22817043960094452,
+ "learning_rate": 0.0006,
+ "loss": 3.466154098510742,
+ "step": 5523
+ },
+ {
+ "epoch": 76.72695500218435,
+ "grad_norm": 0.26730015873908997,
+ "learning_rate": 0.0006,
+ "loss": 3.4843881130218506,
+ "step": 5524
+ },
+ {
+ "epoch": 76.74093490607252,
+ "grad_norm": 0.24832892417907715,
+ "learning_rate": 0.0006,
+ "loss": 3.495150566101074,
+ "step": 5525
+ },
+ {
+ "epoch": 76.75491480996068,
+ "grad_norm": 0.2358865737915039,
+ "learning_rate": 0.0006,
+ "loss": 3.475858211517334,
+ "step": 5526
+ },
+ {
+ "epoch": 76.76889471384884,
+ "grad_norm": 0.2310672551393509,
+ "learning_rate": 0.0006,
+ "loss": 3.5099706649780273,
+ "step": 5527
+ },
+ {
+ "epoch": 76.78287461773701,
+ "grad_norm": 0.25284910202026367,
+ "learning_rate": 0.0006,
+ "loss": 3.510529041290283,
+ "step": 5528
+ },
+ {
+ "epoch": 76.79685452162516,
+ "grad_norm": 0.25088873505592346,
+ "learning_rate": 0.0006,
+ "loss": 3.480929374694824,
+ "step": 5529
+ },
+ {
+ "epoch": 76.81083442551332,
+ "grad_norm": 0.2349051833152771,
+ "learning_rate": 0.0006,
+ "loss": 3.457334041595459,
+ "step": 5530
+ },
+ {
+ "epoch": 76.82481432940149,
+ "grad_norm": 0.23446795344352722,
+ "learning_rate": 0.0006,
+ "loss": 3.493607997894287,
+ "step": 5531
+ },
+ {
+ "epoch": 76.83879423328965,
+ "grad_norm": 0.2285156399011612,
+ "learning_rate": 0.0006,
+ "loss": 3.4858193397521973,
+ "step": 5532
+ },
+ {
+ "epoch": 76.8527741371778,
+ "grad_norm": 0.2247011512517929,
+ "learning_rate": 0.0006,
+ "loss": 3.4766390323638916,
+ "step": 5533
+ },
+ {
+ "epoch": 76.86675404106597,
+ "grad_norm": 0.2175820916891098,
+ "learning_rate": 0.0006,
+ "loss": 3.4545059204101562,
+ "step": 5534
+ },
+ {
+ "epoch": 76.88073394495413,
+ "grad_norm": 0.22910308837890625,
+ "learning_rate": 0.0006,
+ "loss": 3.5201025009155273,
+ "step": 5535
+ },
+ {
+ "epoch": 76.89471384884229,
+ "grad_norm": 0.25674742460250854,
+ "learning_rate": 0.0006,
+ "loss": 3.4851608276367188,
+ "step": 5536
+ },
+ {
+ "epoch": 76.90869375273044,
+ "grad_norm": 0.2939974069595337,
+ "learning_rate": 0.0006,
+ "loss": 3.4853453636169434,
+ "step": 5537
+ },
+ {
+ "epoch": 76.92267365661861,
+ "grad_norm": 0.30211713910102844,
+ "learning_rate": 0.0006,
+ "loss": 3.465470790863037,
+ "step": 5538
+ },
+ {
+ "epoch": 76.93665356050677,
+ "grad_norm": 0.27954718470573425,
+ "learning_rate": 0.0006,
+ "loss": 3.4921772480010986,
+ "step": 5539
+ },
+ {
+ "epoch": 76.95063346439493,
+ "grad_norm": 0.22834837436676025,
+ "learning_rate": 0.0006,
+ "loss": 3.4936747550964355,
+ "step": 5540
+ },
+ {
+ "epoch": 76.9646133682831,
+ "grad_norm": 0.2698923349380493,
+ "learning_rate": 0.0006,
+ "loss": 3.477677345275879,
+ "step": 5541
+ },
+ {
+ "epoch": 76.97859327217125,
+ "grad_norm": 0.3047026991844177,
+ "learning_rate": 0.0006,
+ "loss": 3.48386549949646,
+ "step": 5542
+ },
+ {
+ "epoch": 76.99257317605941,
+ "grad_norm": 0.25420624017715454,
+ "learning_rate": 0.0006,
+ "loss": 3.4954631328582764,
+ "step": 5543
+ },
+ {
+ "epoch": 77.0,
+ "grad_norm": 0.24408109486103058,
+ "learning_rate": 0.0006,
+ "loss": 3.445572853088379,
+ "step": 5544
+ },
+ {
+ "epoch": 77.0,
+ "eval_loss": 4.007506847381592,
+ "eval_runtime": 46.4852,
+ "eval_samples_per_second": 52.533,
+ "eval_steps_per_second": 3.291,
+ "step": 5544
+ },
+ {
+ "epoch": 77.01397990388816,
+ "grad_norm": 0.2915779650211334,
+ "learning_rate": 0.0006,
+ "loss": 3.4563474655151367,
+ "step": 5545
+ },
+ {
+ "epoch": 77.02795980777633,
+ "grad_norm": 0.3169223964214325,
+ "learning_rate": 0.0006,
+ "loss": 3.4652180671691895,
+ "step": 5546
+ },
+ {
+ "epoch": 77.04193971166448,
+ "grad_norm": 0.25844213366508484,
+ "learning_rate": 0.0006,
+ "loss": 3.462665319442749,
+ "step": 5547
+ },
+ {
+ "epoch": 77.05591961555264,
+ "grad_norm": 0.25074702501296997,
+ "learning_rate": 0.0006,
+ "loss": 3.4422531127929688,
+ "step": 5548
+ },
+ {
+ "epoch": 77.06989951944081,
+ "grad_norm": 0.25484949350357056,
+ "learning_rate": 0.0006,
+ "loss": 3.4290740489959717,
+ "step": 5549
+ },
+ {
+ "epoch": 77.08387942332897,
+ "grad_norm": 0.25956255197525024,
+ "learning_rate": 0.0006,
+ "loss": 3.450035333633423,
+ "step": 5550
+ },
+ {
+ "epoch": 77.09785932721712,
+ "grad_norm": 0.22940650582313538,
+ "learning_rate": 0.0006,
+ "loss": 3.4249258041381836,
+ "step": 5551
+ },
+ {
+ "epoch": 77.1118392311053,
+ "grad_norm": 0.2277630716562271,
+ "learning_rate": 0.0006,
+ "loss": 3.4766159057617188,
+ "step": 5552
+ },
+ {
+ "epoch": 77.12581913499345,
+ "grad_norm": 0.23797406256198883,
+ "learning_rate": 0.0006,
+ "loss": 3.4734766483306885,
+ "step": 5553
+ },
+ {
+ "epoch": 77.1397990388816,
+ "grad_norm": 0.21684569120407104,
+ "learning_rate": 0.0006,
+ "loss": 3.459162950515747,
+ "step": 5554
+ },
+ {
+ "epoch": 77.15377894276976,
+ "grad_norm": 0.22176246345043182,
+ "learning_rate": 0.0006,
+ "loss": 3.4285407066345215,
+ "step": 5555
+ },
+ {
+ "epoch": 77.16775884665793,
+ "grad_norm": 0.22516196966171265,
+ "learning_rate": 0.0006,
+ "loss": 3.430083990097046,
+ "step": 5556
+ },
+ {
+ "epoch": 77.18173875054609,
+ "grad_norm": 0.21629488468170166,
+ "learning_rate": 0.0006,
+ "loss": 3.4317891597747803,
+ "step": 5557
+ },
+ {
+ "epoch": 77.19571865443424,
+ "grad_norm": 0.2110232561826706,
+ "learning_rate": 0.0006,
+ "loss": 3.441636085510254,
+ "step": 5558
+ },
+ {
+ "epoch": 77.20969855832242,
+ "grad_norm": 0.23733535408973694,
+ "learning_rate": 0.0006,
+ "loss": 3.4615190029144287,
+ "step": 5559
+ },
+ {
+ "epoch": 77.22367846221057,
+ "grad_norm": 0.2405165284872055,
+ "learning_rate": 0.0006,
+ "loss": 3.4209976196289062,
+ "step": 5560
+ },
+ {
+ "epoch": 77.23765836609873,
+ "grad_norm": 0.2469998598098755,
+ "learning_rate": 0.0006,
+ "loss": 3.4215030670166016,
+ "step": 5561
+ },
+ {
+ "epoch": 77.2516382699869,
+ "grad_norm": 0.25612175464630127,
+ "learning_rate": 0.0006,
+ "loss": 3.438417911529541,
+ "step": 5562
+ },
+ {
+ "epoch": 77.26561817387505,
+ "grad_norm": 0.23456519842147827,
+ "learning_rate": 0.0006,
+ "loss": 3.455623149871826,
+ "step": 5563
+ },
+ {
+ "epoch": 77.27959807776321,
+ "grad_norm": 0.21399898827075958,
+ "learning_rate": 0.0006,
+ "loss": 3.4647960662841797,
+ "step": 5564
+ },
+ {
+ "epoch": 77.29357798165138,
+ "grad_norm": 0.2188381850719452,
+ "learning_rate": 0.0006,
+ "loss": 3.4621052742004395,
+ "step": 5565
+ },
+ {
+ "epoch": 77.30755788553954,
+ "grad_norm": 0.24125352501869202,
+ "learning_rate": 0.0006,
+ "loss": 3.4713289737701416,
+ "step": 5566
+ },
+ {
+ "epoch": 77.3215377894277,
+ "grad_norm": 0.2860930562019348,
+ "learning_rate": 0.0006,
+ "loss": 3.4664835929870605,
+ "step": 5567
+ },
+ {
+ "epoch": 77.33551769331586,
+ "grad_norm": 0.26902931928634644,
+ "learning_rate": 0.0006,
+ "loss": 3.4329450130462646,
+ "step": 5568
+ },
+ {
+ "epoch": 77.34949759720402,
+ "grad_norm": 0.23035289347171783,
+ "learning_rate": 0.0006,
+ "loss": 3.4574995040893555,
+ "step": 5569
+ },
+ {
+ "epoch": 77.36347750109218,
+ "grad_norm": 0.21633122861385345,
+ "learning_rate": 0.0006,
+ "loss": 3.4807615280151367,
+ "step": 5570
+ },
+ {
+ "epoch": 77.37745740498035,
+ "grad_norm": 0.2515130043029785,
+ "learning_rate": 0.0006,
+ "loss": 3.4523189067840576,
+ "step": 5571
+ },
+ {
+ "epoch": 77.3914373088685,
+ "grad_norm": 0.24801862239837646,
+ "learning_rate": 0.0006,
+ "loss": 3.4288992881774902,
+ "step": 5572
+ },
+ {
+ "epoch": 77.40541721275666,
+ "grad_norm": 0.2390354871749878,
+ "learning_rate": 0.0006,
+ "loss": 3.484312057495117,
+ "step": 5573
+ },
+ {
+ "epoch": 77.41939711664482,
+ "grad_norm": 0.21863406896591187,
+ "learning_rate": 0.0006,
+ "loss": 3.514920234680176,
+ "step": 5574
+ },
+ {
+ "epoch": 77.43337702053299,
+ "grad_norm": 0.24056300520896912,
+ "learning_rate": 0.0006,
+ "loss": 3.4896860122680664,
+ "step": 5575
+ },
+ {
+ "epoch": 77.44735692442114,
+ "grad_norm": 0.23909592628479004,
+ "learning_rate": 0.0006,
+ "loss": 3.4793200492858887,
+ "step": 5576
+ },
+ {
+ "epoch": 77.4613368283093,
+ "grad_norm": 0.24454306066036224,
+ "learning_rate": 0.0006,
+ "loss": 3.461653470993042,
+ "step": 5577
+ },
+ {
+ "epoch": 77.47531673219747,
+ "grad_norm": 0.2615761160850525,
+ "learning_rate": 0.0006,
+ "loss": 3.465709686279297,
+ "step": 5578
+ },
+ {
+ "epoch": 77.48929663608563,
+ "grad_norm": 0.29720982909202576,
+ "learning_rate": 0.0006,
+ "loss": 3.4943344593048096,
+ "step": 5579
+ },
+ {
+ "epoch": 77.50327653997378,
+ "grad_norm": 0.2776208221912384,
+ "learning_rate": 0.0006,
+ "loss": 3.4455578327178955,
+ "step": 5580
+ },
+ {
+ "epoch": 77.51725644386195,
+ "grad_norm": 0.23060724139213562,
+ "learning_rate": 0.0006,
+ "loss": 3.505800724029541,
+ "step": 5581
+ },
+ {
+ "epoch": 77.53123634775011,
+ "grad_norm": 0.24247834086418152,
+ "learning_rate": 0.0006,
+ "loss": 3.4776053428649902,
+ "step": 5582
+ },
+ {
+ "epoch": 77.54521625163827,
+ "grad_norm": 0.2725653648376465,
+ "learning_rate": 0.0006,
+ "loss": 3.4901909828186035,
+ "step": 5583
+ },
+ {
+ "epoch": 77.55919615552644,
+ "grad_norm": 0.2663135528564453,
+ "learning_rate": 0.0006,
+ "loss": 3.4535939693450928,
+ "step": 5584
+ },
+ {
+ "epoch": 77.57317605941459,
+ "grad_norm": 0.22942234575748444,
+ "learning_rate": 0.0006,
+ "loss": 3.4478676319122314,
+ "step": 5585
+ },
+ {
+ "epoch": 77.58715596330275,
+ "grad_norm": 0.23543357849121094,
+ "learning_rate": 0.0006,
+ "loss": 3.4794795513153076,
+ "step": 5586
+ },
+ {
+ "epoch": 77.60113586719092,
+ "grad_norm": 0.24251683056354523,
+ "learning_rate": 0.0006,
+ "loss": 3.51051664352417,
+ "step": 5587
+ },
+ {
+ "epoch": 77.61511577107908,
+ "grad_norm": 0.2273259162902832,
+ "learning_rate": 0.0006,
+ "loss": 3.506385326385498,
+ "step": 5588
+ },
+ {
+ "epoch": 77.62909567496723,
+ "grad_norm": 0.23449701070785522,
+ "learning_rate": 0.0006,
+ "loss": 3.481034278869629,
+ "step": 5589
+ },
+ {
+ "epoch": 77.6430755788554,
+ "grad_norm": 0.25050288438796997,
+ "learning_rate": 0.0006,
+ "loss": 3.449924945831299,
+ "step": 5590
+ },
+ {
+ "epoch": 77.65705548274356,
+ "grad_norm": 0.25048449635505676,
+ "learning_rate": 0.0006,
+ "loss": 3.500735282897949,
+ "step": 5591
+ },
+ {
+ "epoch": 77.67103538663171,
+ "grad_norm": 0.2699182629585266,
+ "learning_rate": 0.0006,
+ "loss": 3.5185136795043945,
+ "step": 5592
+ },
+ {
+ "epoch": 77.68501529051987,
+ "grad_norm": 0.2451692819595337,
+ "learning_rate": 0.0006,
+ "loss": 3.4736194610595703,
+ "step": 5593
+ },
+ {
+ "epoch": 77.69899519440804,
+ "grad_norm": 0.24240832030773163,
+ "learning_rate": 0.0006,
+ "loss": 3.510906219482422,
+ "step": 5594
+ },
+ {
+ "epoch": 77.7129750982962,
+ "grad_norm": 0.24055726826190948,
+ "learning_rate": 0.0006,
+ "loss": 3.4826507568359375,
+ "step": 5595
+ },
+ {
+ "epoch": 77.72695500218435,
+ "grad_norm": 0.21117587387561798,
+ "learning_rate": 0.0006,
+ "loss": 3.4430460929870605,
+ "step": 5596
+ },
+ {
+ "epoch": 77.74093490607252,
+ "grad_norm": 0.22443950176239014,
+ "learning_rate": 0.0006,
+ "loss": 3.478419780731201,
+ "step": 5597
+ },
+ {
+ "epoch": 77.75491480996068,
+ "grad_norm": 0.265615314245224,
+ "learning_rate": 0.0006,
+ "loss": 3.511934280395508,
+ "step": 5598
+ },
+ {
+ "epoch": 77.76889471384884,
+ "grad_norm": 0.27084261178970337,
+ "learning_rate": 0.0006,
+ "loss": 3.5032665729522705,
+ "step": 5599
+ },
+ {
+ "epoch": 77.78287461773701,
+ "grad_norm": 0.24575908482074738,
+ "learning_rate": 0.0006,
+ "loss": 3.463124990463257,
+ "step": 5600
+ },
+ {
+ "epoch": 77.79685452162516,
+ "grad_norm": 0.24604707956314087,
+ "learning_rate": 0.0006,
+ "loss": 3.500135898590088,
+ "step": 5601
+ },
+ {
+ "epoch": 77.81083442551332,
+ "grad_norm": 0.23443962633609772,
+ "learning_rate": 0.0006,
+ "loss": 3.4497289657592773,
+ "step": 5602
+ },
+ {
+ "epoch": 77.82481432940149,
+ "grad_norm": 0.23644082248210907,
+ "learning_rate": 0.0006,
+ "loss": 3.47178316116333,
+ "step": 5603
+ },
+ {
+ "epoch": 77.83879423328965,
+ "grad_norm": 0.20530658960342407,
+ "learning_rate": 0.0006,
+ "loss": 3.455582618713379,
+ "step": 5604
+ },
+ {
+ "epoch": 77.8527741371778,
+ "grad_norm": 0.2663075029850006,
+ "learning_rate": 0.0006,
+ "loss": 3.5106711387634277,
+ "step": 5605
+ },
+ {
+ "epoch": 77.86675404106597,
+ "grad_norm": 0.3181896507740021,
+ "learning_rate": 0.0006,
+ "loss": 3.4886298179626465,
+ "step": 5606
+ },
+ {
+ "epoch": 77.88073394495413,
+ "grad_norm": 0.30120763182640076,
+ "learning_rate": 0.0006,
+ "loss": 3.5012121200561523,
+ "step": 5607
+ },
+ {
+ "epoch": 77.89471384884229,
+ "grad_norm": 0.2766421139240265,
+ "learning_rate": 0.0006,
+ "loss": 3.465404748916626,
+ "step": 5608
+ },
+ {
+ "epoch": 77.90869375273044,
+ "grad_norm": 0.26150527596473694,
+ "learning_rate": 0.0006,
+ "loss": 3.505079984664917,
+ "step": 5609
+ },
+ {
+ "epoch": 77.92267365661861,
+ "grad_norm": 0.2585010826587677,
+ "learning_rate": 0.0006,
+ "loss": 3.46713924407959,
+ "step": 5610
+ },
+ {
+ "epoch": 77.93665356050677,
+ "grad_norm": 0.2746208608150482,
+ "learning_rate": 0.0006,
+ "loss": 3.464250087738037,
+ "step": 5611
+ },
+ {
+ "epoch": 77.95063346439493,
+ "grad_norm": 0.2630884647369385,
+ "learning_rate": 0.0006,
+ "loss": 3.4834718704223633,
+ "step": 5612
+ },
+ {
+ "epoch": 77.9646133682831,
+ "grad_norm": 0.23336872458457947,
+ "learning_rate": 0.0006,
+ "loss": 3.5086607933044434,
+ "step": 5613
+ },
+ {
+ "epoch": 77.97859327217125,
+ "grad_norm": 0.22938823699951172,
+ "learning_rate": 0.0006,
+ "loss": 3.5135412216186523,
+ "step": 5614
+ },
+ {
+ "epoch": 77.99257317605941,
+ "grad_norm": 0.22952115535736084,
+ "learning_rate": 0.0006,
+ "loss": 3.4909496307373047,
+ "step": 5615
+ },
+ {
+ "epoch": 78.0,
+ "grad_norm": 0.244375079870224,
+ "learning_rate": 0.0006,
+ "loss": 3.5009336471557617,
+ "step": 5616
+ },
+ {
+ "epoch": 78.0,
+ "eval_loss": 3.9880237579345703,
+ "eval_runtime": 46.3392,
+ "eval_samples_per_second": 52.698,
+ "eval_steps_per_second": 3.302,
+ "step": 5616
+ },
+ {
+ "epoch": 78.01397990388816,
+ "grad_norm": 0.21258895099163055,
+ "learning_rate": 0.0006,
+ "loss": 3.473972797393799,
+ "step": 5617
+ },
+ {
+ "epoch": 78.02795980777633,
+ "grad_norm": 0.24391628801822662,
+ "learning_rate": 0.0006,
+ "loss": 3.422597646713257,
+ "step": 5618
+ },
+ {
+ "epoch": 78.04193971166448,
+ "grad_norm": 0.2876848578453064,
+ "learning_rate": 0.0006,
+ "loss": 3.458035469055176,
+ "step": 5619
+ },
+ {
+ "epoch": 78.05591961555264,
+ "grad_norm": 0.29750117659568787,
+ "learning_rate": 0.0006,
+ "loss": 3.4394774436950684,
+ "step": 5620
+ },
+ {
+ "epoch": 78.06989951944081,
+ "grad_norm": 0.2604219615459442,
+ "learning_rate": 0.0006,
+ "loss": 3.450514793395996,
+ "step": 5621
+ },
+ {
+ "epoch": 78.08387942332897,
+ "grad_norm": 0.2383262813091278,
+ "learning_rate": 0.0006,
+ "loss": 3.4291372299194336,
+ "step": 5622
+ },
+ {
+ "epoch": 78.09785932721712,
+ "grad_norm": 0.2188589870929718,
+ "learning_rate": 0.0006,
+ "loss": 3.441857099533081,
+ "step": 5623
+ },
+ {
+ "epoch": 78.1118392311053,
+ "grad_norm": 0.20857281982898712,
+ "learning_rate": 0.0006,
+ "loss": 3.444624423980713,
+ "step": 5624
+ },
+ {
+ "epoch": 78.12581913499345,
+ "grad_norm": 0.25901344418525696,
+ "learning_rate": 0.0006,
+ "loss": 3.436108112335205,
+ "step": 5625
+ },
+ {
+ "epoch": 78.1397990388816,
+ "grad_norm": 0.29044362902641296,
+ "learning_rate": 0.0006,
+ "loss": 3.4631142616271973,
+ "step": 5626
+ },
+ {
+ "epoch": 78.15377894276976,
+ "grad_norm": 0.2697533071041107,
+ "learning_rate": 0.0006,
+ "loss": 3.47342586517334,
+ "step": 5627
+ },
+ {
+ "epoch": 78.16775884665793,
+ "grad_norm": 0.23660187423229218,
+ "learning_rate": 0.0006,
+ "loss": 3.4970450401306152,
+ "step": 5628
+ },
+ {
+ "epoch": 78.18173875054609,
+ "grad_norm": 0.2369665950536728,
+ "learning_rate": 0.0006,
+ "loss": 3.4965858459472656,
+ "step": 5629
+ },
+ {
+ "epoch": 78.19571865443424,
+ "grad_norm": 0.2571038603782654,
+ "learning_rate": 0.0006,
+ "loss": 3.412412166595459,
+ "step": 5630
+ },
+ {
+ "epoch": 78.20969855832242,
+ "grad_norm": 0.26016053557395935,
+ "learning_rate": 0.0006,
+ "loss": 3.4462265968322754,
+ "step": 5631
+ },
+ {
+ "epoch": 78.22367846221057,
+ "grad_norm": 0.2378724217414856,
+ "learning_rate": 0.0006,
+ "loss": 3.4451708793640137,
+ "step": 5632
+ },
+ {
+ "epoch": 78.23765836609873,
+ "grad_norm": 0.24232783913612366,
+ "learning_rate": 0.0006,
+ "loss": 3.4438111782073975,
+ "step": 5633
+ },
+ {
+ "epoch": 78.2516382699869,
+ "grad_norm": 0.23770418763160706,
+ "learning_rate": 0.0006,
+ "loss": 3.43533992767334,
+ "step": 5634
+ },
+ {
+ "epoch": 78.26561817387505,
+ "grad_norm": 0.23466856777668,
+ "learning_rate": 0.0006,
+ "loss": 3.48561954498291,
+ "step": 5635
+ },
+ {
+ "epoch": 78.27959807776321,
+ "grad_norm": 0.2326284646987915,
+ "learning_rate": 0.0006,
+ "loss": 3.473475217819214,
+ "step": 5636
+ },
+ {
+ "epoch": 78.29357798165138,
+ "grad_norm": 0.24022948741912842,
+ "learning_rate": 0.0006,
+ "loss": 3.4412283897399902,
+ "step": 5637
+ },
+ {
+ "epoch": 78.30755788553954,
+ "grad_norm": 0.2522888779640198,
+ "learning_rate": 0.0006,
+ "loss": 3.4387173652648926,
+ "step": 5638
+ },
+ {
+ "epoch": 78.3215377894277,
+ "grad_norm": 0.2409897744655609,
+ "learning_rate": 0.0006,
+ "loss": 3.4434142112731934,
+ "step": 5639
+ },
+ {
+ "epoch": 78.33551769331586,
+ "grad_norm": 0.24789150059223175,
+ "learning_rate": 0.0006,
+ "loss": 3.479180335998535,
+ "step": 5640
+ },
+ {
+ "epoch": 78.34949759720402,
+ "grad_norm": 0.23893289268016815,
+ "learning_rate": 0.0006,
+ "loss": 3.4569711685180664,
+ "step": 5641
+ },
+ {
+ "epoch": 78.36347750109218,
+ "grad_norm": 0.25813573598861694,
+ "learning_rate": 0.0006,
+ "loss": 3.4897937774658203,
+ "step": 5642
+ },
+ {
+ "epoch": 78.37745740498035,
+ "grad_norm": 0.2786903977394104,
+ "learning_rate": 0.0006,
+ "loss": 3.449057102203369,
+ "step": 5643
+ },
+ {
+ "epoch": 78.3914373088685,
+ "grad_norm": 0.2671049237251282,
+ "learning_rate": 0.0006,
+ "loss": 3.4653759002685547,
+ "step": 5644
+ },
+ {
+ "epoch": 78.40541721275666,
+ "grad_norm": 0.22132059931755066,
+ "learning_rate": 0.0006,
+ "loss": 3.469104766845703,
+ "step": 5645
+ },
+ {
+ "epoch": 78.41939711664482,
+ "grad_norm": 0.23016799986362457,
+ "learning_rate": 0.0006,
+ "loss": 3.459315776824951,
+ "step": 5646
+ },
+ {
+ "epoch": 78.43337702053299,
+ "grad_norm": 0.24416282773017883,
+ "learning_rate": 0.0006,
+ "loss": 3.455636978149414,
+ "step": 5647
+ },
+ {
+ "epoch": 78.44735692442114,
+ "grad_norm": 0.21846890449523926,
+ "learning_rate": 0.0006,
+ "loss": 3.448091506958008,
+ "step": 5648
+ },
+ {
+ "epoch": 78.4613368283093,
+ "grad_norm": 0.23508375883102417,
+ "learning_rate": 0.0006,
+ "loss": 3.4912142753601074,
+ "step": 5649
+ },
+ {
+ "epoch": 78.47531673219747,
+ "grad_norm": 0.2555168867111206,
+ "learning_rate": 0.0006,
+ "loss": 3.4540610313415527,
+ "step": 5650
+ },
+ {
+ "epoch": 78.48929663608563,
+ "grad_norm": 0.24908530712127686,
+ "learning_rate": 0.0006,
+ "loss": 3.4480438232421875,
+ "step": 5651
+ },
+ {
+ "epoch": 78.50327653997378,
+ "grad_norm": 0.21412776410579681,
+ "learning_rate": 0.0006,
+ "loss": 3.4866371154785156,
+ "step": 5652
+ },
+ {
+ "epoch": 78.51725644386195,
+ "grad_norm": 0.20922242105007172,
+ "learning_rate": 0.0006,
+ "loss": 3.478621006011963,
+ "step": 5653
+ },
+ {
+ "epoch": 78.53123634775011,
+ "grad_norm": 0.2246457040309906,
+ "learning_rate": 0.0006,
+ "loss": 3.481985569000244,
+ "step": 5654
+ },
+ {
+ "epoch": 78.54521625163827,
+ "grad_norm": 0.2635398805141449,
+ "learning_rate": 0.0006,
+ "loss": 3.4374074935913086,
+ "step": 5655
+ },
+ {
+ "epoch": 78.55919615552644,
+ "grad_norm": 0.24871022999286652,
+ "learning_rate": 0.0006,
+ "loss": 3.4646430015563965,
+ "step": 5656
+ },
+ {
+ "epoch": 78.57317605941459,
+ "grad_norm": 0.20784349739551544,
+ "learning_rate": 0.0006,
+ "loss": 3.5141677856445312,
+ "step": 5657
+ },
+ {
+ "epoch": 78.58715596330275,
+ "grad_norm": 0.22655104100704193,
+ "learning_rate": 0.0006,
+ "loss": 3.4698171615600586,
+ "step": 5658
+ },
+ {
+ "epoch": 78.60113586719092,
+ "grad_norm": 0.22383511066436768,
+ "learning_rate": 0.0006,
+ "loss": 3.444244146347046,
+ "step": 5659
+ },
+ {
+ "epoch": 78.61511577107908,
+ "grad_norm": 0.2113238275051117,
+ "learning_rate": 0.0006,
+ "loss": 3.465719223022461,
+ "step": 5660
+ },
+ {
+ "epoch": 78.62909567496723,
+ "grad_norm": 0.19101600348949432,
+ "learning_rate": 0.0006,
+ "loss": 3.484689712524414,
+ "step": 5661
+ },
+ {
+ "epoch": 78.6430755788554,
+ "grad_norm": 0.2073238044977188,
+ "learning_rate": 0.0006,
+ "loss": 3.46522855758667,
+ "step": 5662
+ },
+ {
+ "epoch": 78.65705548274356,
+ "grad_norm": 0.21808618307113647,
+ "learning_rate": 0.0006,
+ "loss": 3.479005813598633,
+ "step": 5663
+ },
+ {
+ "epoch": 78.67103538663171,
+ "grad_norm": 0.203338161110878,
+ "learning_rate": 0.0006,
+ "loss": 3.492825984954834,
+ "step": 5664
+ },
+ {
+ "epoch": 78.68501529051987,
+ "grad_norm": 0.23006507754325867,
+ "learning_rate": 0.0006,
+ "loss": 3.4999642372131348,
+ "step": 5665
+ },
+ {
+ "epoch": 78.69899519440804,
+ "grad_norm": 0.2446610927581787,
+ "learning_rate": 0.0006,
+ "loss": 3.48500919342041,
+ "step": 5666
+ },
+ {
+ "epoch": 78.7129750982962,
+ "grad_norm": 0.2601945400238037,
+ "learning_rate": 0.0006,
+ "loss": 3.4861927032470703,
+ "step": 5667
+ },
+ {
+ "epoch": 78.72695500218435,
+ "grad_norm": 0.23464927077293396,
+ "learning_rate": 0.0006,
+ "loss": 3.474249839782715,
+ "step": 5668
+ },
+ {
+ "epoch": 78.74093490607252,
+ "grad_norm": 0.21698802709579468,
+ "learning_rate": 0.0006,
+ "loss": 3.499706745147705,
+ "step": 5669
+ },
+ {
+ "epoch": 78.75491480996068,
+ "grad_norm": 0.22146548330783844,
+ "learning_rate": 0.0006,
+ "loss": 3.496151924133301,
+ "step": 5670
+ },
+ {
+ "epoch": 78.76889471384884,
+ "grad_norm": 0.2459285408258438,
+ "learning_rate": 0.0006,
+ "loss": 3.4743995666503906,
+ "step": 5671
+ },
+ {
+ "epoch": 78.78287461773701,
+ "grad_norm": 0.2358015924692154,
+ "learning_rate": 0.0006,
+ "loss": 3.479529857635498,
+ "step": 5672
+ },
+ {
+ "epoch": 78.79685452162516,
+ "grad_norm": 0.23457956314086914,
+ "learning_rate": 0.0006,
+ "loss": 3.4957330226898193,
+ "step": 5673
+ },
+ {
+ "epoch": 78.81083442551332,
+ "grad_norm": 0.21969331800937653,
+ "learning_rate": 0.0006,
+ "loss": 3.4782285690307617,
+ "step": 5674
+ },
+ {
+ "epoch": 78.82481432940149,
+ "grad_norm": 0.23743604123592377,
+ "learning_rate": 0.0006,
+ "loss": 3.497030735015869,
+ "step": 5675
+ },
+ {
+ "epoch": 78.83879423328965,
+ "grad_norm": 0.23925618827342987,
+ "learning_rate": 0.0006,
+ "loss": 3.495553493499756,
+ "step": 5676
+ },
+ {
+ "epoch": 78.8527741371778,
+ "grad_norm": 0.20647381246089935,
+ "learning_rate": 0.0006,
+ "loss": 3.47171688079834,
+ "step": 5677
+ },
+ {
+ "epoch": 78.86675404106597,
+ "grad_norm": 0.20148544013500214,
+ "learning_rate": 0.0006,
+ "loss": 3.4736156463623047,
+ "step": 5678
+ },
+ {
+ "epoch": 78.88073394495413,
+ "grad_norm": 0.2097293585538864,
+ "learning_rate": 0.0006,
+ "loss": 3.436239719390869,
+ "step": 5679
+ },
+ {
+ "epoch": 78.89471384884229,
+ "grad_norm": 0.21129930019378662,
+ "learning_rate": 0.0006,
+ "loss": 3.4720277786254883,
+ "step": 5680
+ },
+ {
+ "epoch": 78.90869375273044,
+ "grad_norm": 0.2049081027507782,
+ "learning_rate": 0.0006,
+ "loss": 3.476945400238037,
+ "step": 5681
+ },
+ {
+ "epoch": 78.92267365661861,
+ "grad_norm": 0.2183583825826645,
+ "learning_rate": 0.0006,
+ "loss": 3.4852776527404785,
+ "step": 5682
+ },
+ {
+ "epoch": 78.93665356050677,
+ "grad_norm": 0.21253879368305206,
+ "learning_rate": 0.0006,
+ "loss": 3.4781546592712402,
+ "step": 5683
+ },
+ {
+ "epoch": 78.95063346439493,
+ "grad_norm": 0.20699666440486908,
+ "learning_rate": 0.0006,
+ "loss": 3.450756788253784,
+ "step": 5684
+ },
+ {
+ "epoch": 78.9646133682831,
+ "grad_norm": 0.25612396001815796,
+ "learning_rate": 0.0006,
+ "loss": 3.4762487411499023,
+ "step": 5685
+ },
+ {
+ "epoch": 78.97859327217125,
+ "grad_norm": 0.26524025201797485,
+ "learning_rate": 0.0006,
+ "loss": 3.4931769371032715,
+ "step": 5686
+ },
+ {
+ "epoch": 78.99257317605941,
+ "grad_norm": 0.2541322410106659,
+ "learning_rate": 0.0006,
+ "loss": 3.468247413635254,
+ "step": 5687
+ },
+ {
+ "epoch": 79.0,
+ "grad_norm": 0.2663288414478302,
+ "learning_rate": 0.0006,
+ "loss": 3.487189292907715,
+ "step": 5688
+ },
+ {
+ "epoch": 79.0,
+ "eval_loss": 3.988255739212036,
+ "eval_runtime": 46.5996,
+ "eval_samples_per_second": 52.404,
+ "eval_steps_per_second": 3.283,
+ "step": 5688
+ },
+ {
+ "epoch": 79.01397990388816,
+ "grad_norm": 0.2503090500831604,
+ "learning_rate": 0.0006,
+ "loss": 3.452444553375244,
+ "step": 5689
+ },
+ {
+ "epoch": 79.02795980777633,
+ "grad_norm": 0.28306853771209717,
+ "learning_rate": 0.0006,
+ "loss": 3.4412660598754883,
+ "step": 5690
+ },
+ {
+ "epoch": 79.04193971166448,
+ "grad_norm": 0.3115243911743164,
+ "learning_rate": 0.0006,
+ "loss": 3.4124369621276855,
+ "step": 5691
+ },
+ {
+ "epoch": 79.05591961555264,
+ "grad_norm": 0.273013710975647,
+ "learning_rate": 0.0006,
+ "loss": 3.4493820667266846,
+ "step": 5692
+ },
+ {
+ "epoch": 79.06989951944081,
+ "grad_norm": 0.22326645255088806,
+ "learning_rate": 0.0006,
+ "loss": 3.4517998695373535,
+ "step": 5693
+ },
+ {
+ "epoch": 79.08387942332897,
+ "grad_norm": 0.24398484826087952,
+ "learning_rate": 0.0006,
+ "loss": 3.4242095947265625,
+ "step": 5694
+ },
+ {
+ "epoch": 79.09785932721712,
+ "grad_norm": 0.25253739953041077,
+ "learning_rate": 0.0006,
+ "loss": 3.4249048233032227,
+ "step": 5695
+ },
+ {
+ "epoch": 79.1118392311053,
+ "grad_norm": 0.2664744555950165,
+ "learning_rate": 0.0006,
+ "loss": 3.452235698699951,
+ "step": 5696
+ },
+ {
+ "epoch": 79.12581913499345,
+ "grad_norm": 0.28276678919792175,
+ "learning_rate": 0.0006,
+ "loss": 3.4641671180725098,
+ "step": 5697
+ },
+ {
+ "epoch": 79.1397990388816,
+ "grad_norm": 0.2725527882575989,
+ "learning_rate": 0.0006,
+ "loss": 3.4483447074890137,
+ "step": 5698
+ },
+ {
+ "epoch": 79.15377894276976,
+ "grad_norm": 0.2702547609806061,
+ "learning_rate": 0.0006,
+ "loss": 3.4427199363708496,
+ "step": 5699
+ },
+ {
+ "epoch": 79.16775884665793,
+ "grad_norm": 0.2617502212524414,
+ "learning_rate": 0.0006,
+ "loss": 3.46244740486145,
+ "step": 5700
+ },
+ {
+ "epoch": 79.18173875054609,
+ "grad_norm": 0.22378475964069366,
+ "learning_rate": 0.0006,
+ "loss": 3.460523843765259,
+ "step": 5701
+ },
+ {
+ "epoch": 79.19571865443424,
+ "grad_norm": 0.2233104556798935,
+ "learning_rate": 0.0006,
+ "loss": 3.425114631652832,
+ "step": 5702
+ },
+ {
+ "epoch": 79.20969855832242,
+ "grad_norm": 0.24079658091068268,
+ "learning_rate": 0.0006,
+ "loss": 3.4773077964782715,
+ "step": 5703
+ },
+ {
+ "epoch": 79.22367846221057,
+ "grad_norm": 0.24479007720947266,
+ "learning_rate": 0.0006,
+ "loss": 3.438293218612671,
+ "step": 5704
+ },
+ {
+ "epoch": 79.23765836609873,
+ "grad_norm": 0.24505102634429932,
+ "learning_rate": 0.0006,
+ "loss": 3.4798545837402344,
+ "step": 5705
+ },
+ {
+ "epoch": 79.2516382699869,
+ "grad_norm": 0.22588814795017242,
+ "learning_rate": 0.0006,
+ "loss": 3.4557571411132812,
+ "step": 5706
+ },
+ {
+ "epoch": 79.26561817387505,
+ "grad_norm": 0.24139748513698578,
+ "learning_rate": 0.0006,
+ "loss": 3.4543919563293457,
+ "step": 5707
+ },
+ {
+ "epoch": 79.27959807776321,
+ "grad_norm": 0.21584808826446533,
+ "learning_rate": 0.0006,
+ "loss": 3.4505133628845215,
+ "step": 5708
+ },
+ {
+ "epoch": 79.29357798165138,
+ "grad_norm": 0.2180371880531311,
+ "learning_rate": 0.0006,
+ "loss": 3.4630508422851562,
+ "step": 5709
+ },
+ {
+ "epoch": 79.30755788553954,
+ "grad_norm": 0.21993961930274963,
+ "learning_rate": 0.0006,
+ "loss": 3.455995559692383,
+ "step": 5710
+ },
+ {
+ "epoch": 79.3215377894277,
+ "grad_norm": 0.2302546501159668,
+ "learning_rate": 0.0006,
+ "loss": 3.4884848594665527,
+ "step": 5711
+ },
+ {
+ "epoch": 79.33551769331586,
+ "grad_norm": 0.2554272711277008,
+ "learning_rate": 0.0006,
+ "loss": 3.440516948699951,
+ "step": 5712
+ },
+ {
+ "epoch": 79.34949759720402,
+ "grad_norm": 0.2361014038324356,
+ "learning_rate": 0.0006,
+ "loss": 3.4706239700317383,
+ "step": 5713
+ },
+ {
+ "epoch": 79.36347750109218,
+ "grad_norm": 0.22390307486057281,
+ "learning_rate": 0.0006,
+ "loss": 3.4447524547576904,
+ "step": 5714
+ },
+ {
+ "epoch": 79.37745740498035,
+ "grad_norm": 0.2271745353937149,
+ "learning_rate": 0.0006,
+ "loss": 3.47141170501709,
+ "step": 5715
+ },
+ {
+ "epoch": 79.3914373088685,
+ "grad_norm": 0.25239962339401245,
+ "learning_rate": 0.0006,
+ "loss": 3.4772067070007324,
+ "step": 5716
+ },
+ {
+ "epoch": 79.40541721275666,
+ "grad_norm": 0.2375272810459137,
+ "learning_rate": 0.0006,
+ "loss": 3.45712947845459,
+ "step": 5717
+ },
+ {
+ "epoch": 79.41939711664482,
+ "grad_norm": 0.22904036939144135,
+ "learning_rate": 0.0006,
+ "loss": 3.4753048419952393,
+ "step": 5718
+ },
+ {
+ "epoch": 79.43337702053299,
+ "grad_norm": 0.24097497761249542,
+ "learning_rate": 0.0006,
+ "loss": 3.462437391281128,
+ "step": 5719
+ },
+ {
+ "epoch": 79.44735692442114,
+ "grad_norm": 0.25267651677131653,
+ "learning_rate": 0.0006,
+ "loss": 3.4526681900024414,
+ "step": 5720
+ },
+ {
+ "epoch": 79.4613368283093,
+ "grad_norm": 0.25850236415863037,
+ "learning_rate": 0.0006,
+ "loss": 3.452427625656128,
+ "step": 5721
+ },
+ {
+ "epoch": 79.47531673219747,
+ "grad_norm": 0.26425909996032715,
+ "learning_rate": 0.0006,
+ "loss": 3.4524970054626465,
+ "step": 5722
+ },
+ {
+ "epoch": 79.48929663608563,
+ "grad_norm": 0.2287026345729828,
+ "learning_rate": 0.0006,
+ "loss": 3.4680042266845703,
+ "step": 5723
+ },
+ {
+ "epoch": 79.50327653997378,
+ "grad_norm": 0.2357720285654068,
+ "learning_rate": 0.0006,
+ "loss": 3.4661996364593506,
+ "step": 5724
+ },
+ {
+ "epoch": 79.51725644386195,
+ "grad_norm": 0.2378997653722763,
+ "learning_rate": 0.0006,
+ "loss": 3.4744834899902344,
+ "step": 5725
+ },
+ {
+ "epoch": 79.53123634775011,
+ "grad_norm": 0.2487446367740631,
+ "learning_rate": 0.0006,
+ "loss": 3.4760963916778564,
+ "step": 5726
+ },
+ {
+ "epoch": 79.54521625163827,
+ "grad_norm": 0.25056660175323486,
+ "learning_rate": 0.0006,
+ "loss": 3.4646544456481934,
+ "step": 5727
+ },
+ {
+ "epoch": 79.55919615552644,
+ "grad_norm": 0.22458213567733765,
+ "learning_rate": 0.0006,
+ "loss": 3.48275089263916,
+ "step": 5728
+ },
+ {
+ "epoch": 79.57317605941459,
+ "grad_norm": 0.22517307102680206,
+ "learning_rate": 0.0006,
+ "loss": 3.4858477115631104,
+ "step": 5729
+ },
+ {
+ "epoch": 79.58715596330275,
+ "grad_norm": 0.2253974974155426,
+ "learning_rate": 0.0006,
+ "loss": 3.4601099491119385,
+ "step": 5730
+ },
+ {
+ "epoch": 79.60113586719092,
+ "grad_norm": 0.22956253588199615,
+ "learning_rate": 0.0006,
+ "loss": 3.4599132537841797,
+ "step": 5731
+ },
+ {
+ "epoch": 79.61511577107908,
+ "grad_norm": 0.26346060633659363,
+ "learning_rate": 0.0006,
+ "loss": 3.4992642402648926,
+ "step": 5732
+ },
+ {
+ "epoch": 79.62909567496723,
+ "grad_norm": 0.2493542581796646,
+ "learning_rate": 0.0006,
+ "loss": 3.4743075370788574,
+ "step": 5733
+ },
+ {
+ "epoch": 79.6430755788554,
+ "grad_norm": 0.2473273128271103,
+ "learning_rate": 0.0006,
+ "loss": 3.487657070159912,
+ "step": 5734
+ },
+ {
+ "epoch": 79.65705548274356,
+ "grad_norm": 0.21894414722919464,
+ "learning_rate": 0.0006,
+ "loss": 3.4761929512023926,
+ "step": 5735
+ },
+ {
+ "epoch": 79.67103538663171,
+ "grad_norm": 0.20691576600074768,
+ "learning_rate": 0.0006,
+ "loss": 3.468233585357666,
+ "step": 5736
+ },
+ {
+ "epoch": 79.68501529051987,
+ "grad_norm": 0.22317089140415192,
+ "learning_rate": 0.0006,
+ "loss": 3.4676461219787598,
+ "step": 5737
+ },
+ {
+ "epoch": 79.69899519440804,
+ "grad_norm": 0.22669419646263123,
+ "learning_rate": 0.0006,
+ "loss": 3.4934377670288086,
+ "step": 5738
+ },
+ {
+ "epoch": 79.7129750982962,
+ "grad_norm": 0.23321859538555145,
+ "learning_rate": 0.0006,
+ "loss": 3.470146417617798,
+ "step": 5739
+ },
+ {
+ "epoch": 79.72695500218435,
+ "grad_norm": 0.21628828346729279,
+ "learning_rate": 0.0006,
+ "loss": 3.464975118637085,
+ "step": 5740
+ },
+ {
+ "epoch": 79.74093490607252,
+ "grad_norm": 0.22889219224452972,
+ "learning_rate": 0.0006,
+ "loss": 3.464859962463379,
+ "step": 5741
+ },
+ {
+ "epoch": 79.75491480996068,
+ "grad_norm": 0.23041504621505737,
+ "learning_rate": 0.0006,
+ "loss": 3.478351593017578,
+ "step": 5742
+ },
+ {
+ "epoch": 79.76889471384884,
+ "grad_norm": 0.2246071994304657,
+ "learning_rate": 0.0006,
+ "loss": 3.4927172660827637,
+ "step": 5743
+ },
+ {
+ "epoch": 79.78287461773701,
+ "grad_norm": 0.2326883226633072,
+ "learning_rate": 0.0006,
+ "loss": 3.4568581581115723,
+ "step": 5744
+ },
+ {
+ "epoch": 79.79685452162516,
+ "grad_norm": 0.22930850088596344,
+ "learning_rate": 0.0006,
+ "loss": 3.4665210247039795,
+ "step": 5745
+ },
+ {
+ "epoch": 79.81083442551332,
+ "grad_norm": 0.22361859679222107,
+ "learning_rate": 0.0006,
+ "loss": 3.4809937477111816,
+ "step": 5746
+ },
+ {
+ "epoch": 79.82481432940149,
+ "grad_norm": 0.20599117875099182,
+ "learning_rate": 0.0006,
+ "loss": 3.4918923377990723,
+ "step": 5747
+ },
+ {
+ "epoch": 79.83879423328965,
+ "grad_norm": 0.230980783700943,
+ "learning_rate": 0.0006,
+ "loss": 3.4691390991210938,
+ "step": 5748
+ },
+ {
+ "epoch": 79.8527741371778,
+ "grad_norm": 0.2432822734117508,
+ "learning_rate": 0.0006,
+ "loss": 3.465531349182129,
+ "step": 5749
+ },
+ {
+ "epoch": 79.86675404106597,
+ "grad_norm": 0.2326139360666275,
+ "learning_rate": 0.0006,
+ "loss": 3.464198350906372,
+ "step": 5750
+ },
+ {
+ "epoch": 79.88073394495413,
+ "grad_norm": 0.22227711975574493,
+ "learning_rate": 0.0006,
+ "loss": 3.4587674140930176,
+ "step": 5751
+ },
+ {
+ "epoch": 79.89471384884229,
+ "grad_norm": 0.20254085958003998,
+ "learning_rate": 0.0006,
+ "loss": 3.4628102779388428,
+ "step": 5752
+ },
+ {
+ "epoch": 79.90869375273044,
+ "grad_norm": 0.2130574733018875,
+ "learning_rate": 0.0006,
+ "loss": 3.491631031036377,
+ "step": 5753
+ },
+ {
+ "epoch": 79.92267365661861,
+ "grad_norm": 0.2221127301454544,
+ "learning_rate": 0.0006,
+ "loss": 3.477632522583008,
+ "step": 5754
+ },
+ {
+ "epoch": 79.93665356050677,
+ "grad_norm": 0.21647712588310242,
+ "learning_rate": 0.0006,
+ "loss": 3.470122814178467,
+ "step": 5755
+ },
+ {
+ "epoch": 79.95063346439493,
+ "grad_norm": 0.21333082020282745,
+ "learning_rate": 0.0006,
+ "loss": 3.4466612339019775,
+ "step": 5756
+ },
+ {
+ "epoch": 79.9646133682831,
+ "grad_norm": 0.24608036875724792,
+ "learning_rate": 0.0006,
+ "loss": 3.5203800201416016,
+ "step": 5757
+ },
+ {
+ "epoch": 79.97859327217125,
+ "grad_norm": 0.22165493667125702,
+ "learning_rate": 0.0006,
+ "loss": 3.467963457107544,
+ "step": 5758
+ },
+ {
+ "epoch": 79.99257317605941,
+ "grad_norm": 0.1960810422897339,
+ "learning_rate": 0.0006,
+ "loss": 3.4682164192199707,
+ "step": 5759
+ },
+ {
+ "epoch": 80.0,
+ "grad_norm": 0.23430649936199188,
+ "learning_rate": 0.0006,
+ "loss": 3.4980459213256836,
+ "step": 5760
+ },
+ {
+ "epoch": 80.01397990388816,
+ "grad_norm": 0.21651697158813477,
+ "learning_rate": 0.0006,
+ "loss": 3.4181911945343018,
+ "step": 5761
+ },
+ {
+ "epoch": 80.02795980777633,
+ "grad_norm": 0.2599288821220398,
+ "learning_rate": 0.0006,
+ "loss": 3.438791275024414,
+ "step": 5762
+ },
+ {
+ "epoch": 80.04193971166448,
+ "grad_norm": 0.26531898975372314,
+ "learning_rate": 0.0006,
+ "loss": 3.4669299125671387,
+ "step": 5763
+ },
+ {
+ "epoch": 80.05591961555264,
+ "grad_norm": 0.2965814769268036,
+ "learning_rate": 0.0006,
+ "loss": 3.3976120948791504,
+ "step": 5764
+ },
+ {
+ "epoch": 80.06989951944081,
+ "grad_norm": 0.28300485014915466,
+ "learning_rate": 0.0006,
+ "loss": 3.4121291637420654,
+ "step": 5765
+ },
+ {
+ "epoch": 80.08387942332897,
+ "grad_norm": 0.2511967718601227,
+ "learning_rate": 0.0006,
+ "loss": 3.4298207759857178,
+ "step": 5766
+ },
+ {
+ "epoch": 80.09785932721712,
+ "grad_norm": 0.2919110059738159,
+ "learning_rate": 0.0006,
+ "loss": 3.4311981201171875,
+ "step": 5767
+ },
+ {
+ "epoch": 80.1118392311053,
+ "grad_norm": 0.3141780197620392,
+ "learning_rate": 0.0006,
+ "loss": 3.435318946838379,
+ "step": 5768
+ },
+ {
+ "epoch": 80.12581913499345,
+ "grad_norm": 0.29728513956069946,
+ "learning_rate": 0.0006,
+ "loss": 3.4430551528930664,
+ "step": 5769
+ },
+ {
+ "epoch": 80.1397990388816,
+ "grad_norm": 0.2732396423816681,
+ "learning_rate": 0.0006,
+ "loss": 3.4580936431884766,
+ "step": 5770
+ },
+ {
+ "epoch": 80.15377894276976,
+ "grad_norm": 0.2561073303222656,
+ "learning_rate": 0.0006,
+ "loss": 3.443518877029419,
+ "step": 5771
+ },
+ {
+ "epoch": 80.16775884665793,
+ "grad_norm": 0.23583678901195526,
+ "learning_rate": 0.0006,
+ "loss": 3.4591064453125,
+ "step": 5772
+ },
+ {
+ "epoch": 80.18173875054609,
+ "grad_norm": 0.23391224443912506,
+ "learning_rate": 0.0006,
+ "loss": 3.4735608100891113,
+ "step": 5773
+ },
+ {
+ "epoch": 80.19571865443424,
+ "grad_norm": 0.24136026203632355,
+ "learning_rate": 0.0006,
+ "loss": 3.4389798641204834,
+ "step": 5774
+ },
+ {
+ "epoch": 80.20969855832242,
+ "grad_norm": 0.217203289270401,
+ "learning_rate": 0.0006,
+ "loss": 3.4284729957580566,
+ "step": 5775
+ },
+ {
+ "epoch": 80.22367846221057,
+ "grad_norm": 0.22632482647895813,
+ "learning_rate": 0.0006,
+ "loss": 3.4612345695495605,
+ "step": 5776
+ },
+ {
+ "epoch": 80.23765836609873,
+ "grad_norm": 0.23246599733829498,
+ "learning_rate": 0.0006,
+ "loss": 3.461637496948242,
+ "step": 5777
+ },
+ {
+ "epoch": 80.2516382699869,
+ "grad_norm": 0.21817834675312042,
+ "learning_rate": 0.0006,
+ "loss": 3.483128070831299,
+ "step": 5778
+ },
+ {
+ "epoch": 80.26561817387505,
+ "grad_norm": 0.2208380103111267,
+ "learning_rate": 0.0006,
+ "loss": 3.4182612895965576,
+ "step": 5779
+ },
+ {
+ "epoch": 80.27959807776321,
+ "grad_norm": 0.21948039531707764,
+ "learning_rate": 0.0006,
+ "loss": 3.4268085956573486,
+ "step": 5780
+ },
+ {
+ "epoch": 80.29357798165138,
+ "grad_norm": 0.24356511235237122,
+ "learning_rate": 0.0006,
+ "loss": 3.4365224838256836,
+ "step": 5781
+ },
+ {
+ "epoch": 80.30755788553954,
+ "grad_norm": 0.2545076012611389,
+ "learning_rate": 0.0006,
+ "loss": 3.4595799446105957,
+ "step": 5782
+ },
+ {
+ "epoch": 80.3215377894277,
+ "grad_norm": 0.23793567717075348,
+ "learning_rate": 0.0006,
+ "loss": 3.4590306282043457,
+ "step": 5783
+ },
+ {
+ "epoch": 80.33551769331586,
+ "grad_norm": 0.22215817868709564,
+ "learning_rate": 0.0006,
+ "loss": 3.4594779014587402,
+ "step": 5784
+ },
+ {
+ "epoch": 80.34949759720402,
+ "grad_norm": 0.24598804116249084,
+ "learning_rate": 0.0006,
+ "loss": 3.4702706336975098,
+ "step": 5785
+ },
+ {
+ "epoch": 80.36347750109218,
+ "grad_norm": 0.26150956749916077,
+ "learning_rate": 0.0006,
+ "loss": 3.504547357559204,
+ "step": 5786
+ },
+ {
+ "epoch": 80.37745740498035,
+ "grad_norm": 0.22220160067081451,
+ "learning_rate": 0.0006,
+ "loss": 3.4633049964904785,
+ "step": 5787
+ },
+ {
+ "epoch": 80.3914373088685,
+ "grad_norm": 0.2343321293592453,
+ "learning_rate": 0.0006,
+ "loss": 3.4659838676452637,
+ "step": 5788
+ },
+ {
+ "epoch": 80.40541721275666,
+ "grad_norm": 0.2196560502052307,
+ "learning_rate": 0.0006,
+ "loss": 3.477983236312866,
+ "step": 5789
+ },
+ {
+ "epoch": 80.41939711664482,
+ "grad_norm": 0.22598406672477722,
+ "learning_rate": 0.0006,
+ "loss": 3.4452672004699707,
+ "step": 5790
+ },
+ {
+ "epoch": 80.43337702053299,
+ "grad_norm": 0.21038709580898285,
+ "learning_rate": 0.0006,
+ "loss": 3.4401512145996094,
+ "step": 5791
+ },
+ {
+ "epoch": 80.44735692442114,
+ "grad_norm": 0.21702879667282104,
+ "learning_rate": 0.0006,
+ "loss": 3.482847213745117,
+ "step": 5792
+ },
+ {
+ "epoch": 80.4613368283093,
+ "grad_norm": 0.22423747181892395,
+ "learning_rate": 0.0006,
+ "loss": 3.454658031463623,
+ "step": 5793
+ },
+ {
+ "epoch": 80.47531673219747,
+ "grad_norm": 0.2156888246536255,
+ "learning_rate": 0.0006,
+ "loss": 3.4609858989715576,
+ "step": 5794
+ },
+ {
+ "epoch": 80.48929663608563,
+ "grad_norm": 0.22172603011131287,
+ "learning_rate": 0.0006,
+ "loss": 3.479116916656494,
+ "step": 5795
+ },
+ {
+ "epoch": 80.50327653997378,
+ "grad_norm": 0.22773809731006622,
+ "learning_rate": 0.0006,
+ "loss": 3.457540988922119,
+ "step": 5796
+ },
+ {
+ "epoch": 80.51725644386195,
+ "grad_norm": 0.2215251326560974,
+ "learning_rate": 0.0006,
+ "loss": 3.451545476913452,
+ "step": 5797
+ },
+ {
+ "epoch": 80.53123634775011,
+ "grad_norm": 0.22479848563671112,
+ "learning_rate": 0.0006,
+ "loss": 3.4318554401397705,
+ "step": 5798
+ },
+ {
+ "epoch": 80.54521625163827,
+ "grad_norm": 0.23643286526203156,
+ "learning_rate": 0.0006,
+ "loss": 3.448240280151367,
+ "step": 5799
+ },
+ {
+ "epoch": 80.55919615552644,
+ "grad_norm": 0.22819532454013824,
+ "learning_rate": 0.0006,
+ "loss": 3.4966626167297363,
+ "step": 5800
+ },
+ {
+ "epoch": 80.57317605941459,
+ "grad_norm": 0.2213105857372284,
+ "learning_rate": 0.0006,
+ "loss": 3.4401497840881348,
+ "step": 5801
+ },
+ {
+ "epoch": 80.58715596330275,
+ "grad_norm": 0.23570658266544342,
+ "learning_rate": 0.0006,
+ "loss": 3.4650940895080566,
+ "step": 5802
+ },
+ {
+ "epoch": 80.60113586719092,
+ "grad_norm": 0.2692683935165405,
+ "learning_rate": 0.0006,
+ "loss": 3.502164125442505,
+ "step": 5803
+ },
+ {
+ "epoch": 80.61511577107908,
+ "grad_norm": 0.2756805121898651,
+ "learning_rate": 0.0006,
+ "loss": 3.4653677940368652,
+ "step": 5804
+ },
+ {
+ "epoch": 80.62909567496723,
+ "grad_norm": 0.2219257950782776,
+ "learning_rate": 0.0006,
+ "loss": 3.459779977798462,
+ "step": 5805
+ },
+ {
+ "epoch": 80.6430755788554,
+ "grad_norm": 0.21970611810684204,
+ "learning_rate": 0.0006,
+ "loss": 3.451747417449951,
+ "step": 5806
+ },
+ {
+ "epoch": 80.65705548274356,
+ "grad_norm": 0.22080424427986145,
+ "learning_rate": 0.0006,
+ "loss": 3.469550609588623,
+ "step": 5807
+ },
+ {
+ "epoch": 80.67103538663171,
+ "grad_norm": 0.22235846519470215,
+ "learning_rate": 0.0006,
+ "loss": 3.488161563873291,
+ "step": 5808
+ },
+ {
+ "epoch": 80.68501529051987,
+ "grad_norm": 0.24261491000652313,
+ "learning_rate": 0.0006,
+ "loss": 3.486595630645752,
+ "step": 5809
+ },
+ {
+ "epoch": 80.69899519440804,
+ "grad_norm": 0.20906759798526764,
+ "learning_rate": 0.0006,
+ "loss": 3.450944423675537,
+ "step": 5810
+ },
+ {
+ "epoch": 80.7129750982962,
+ "grad_norm": 0.225368469953537,
+ "learning_rate": 0.0006,
+ "loss": 3.4868040084838867,
+ "step": 5811
+ },
+ {
+ "epoch": 80.72695500218435,
+ "grad_norm": 0.254836767911911,
+ "learning_rate": 0.0006,
+ "loss": 3.5024094581604004,
+ "step": 5812
+ },
+ {
+ "epoch": 80.74093490607252,
+ "grad_norm": 0.23393481969833374,
+ "learning_rate": 0.0006,
+ "loss": 3.453914165496826,
+ "step": 5813
+ },
+ {
+ "epoch": 80.75491480996068,
+ "grad_norm": 0.2270888388156891,
+ "learning_rate": 0.0006,
+ "loss": 3.4943716526031494,
+ "step": 5814
+ },
+ {
+ "epoch": 80.76889471384884,
+ "grad_norm": 0.24670317769050598,
+ "learning_rate": 0.0006,
+ "loss": 3.504342794418335,
+ "step": 5815
+ },
+ {
+ "epoch": 80.78287461773701,
+ "grad_norm": 0.23893672227859497,
+ "learning_rate": 0.0006,
+ "loss": 3.452670097351074,
+ "step": 5816
+ },
+ {
+ "epoch": 80.79685452162516,
+ "grad_norm": 0.2175605446100235,
+ "learning_rate": 0.0006,
+ "loss": 3.4578192234039307,
+ "step": 5817
+ },
+ {
+ "epoch": 80.81083442551332,
+ "grad_norm": 0.2156844139099121,
+ "learning_rate": 0.0006,
+ "loss": 3.4781908988952637,
+ "step": 5818
+ },
+ {
+ "epoch": 80.82481432940149,
+ "grad_norm": 0.2505752444267273,
+ "learning_rate": 0.0006,
+ "loss": 3.493128538131714,
+ "step": 5819
+ },
+ {
+ "epoch": 80.83879423328965,
+ "grad_norm": 0.2448679655790329,
+ "learning_rate": 0.0006,
+ "loss": 3.472296714782715,
+ "step": 5820
+ },
+ {
+ "epoch": 80.8527741371778,
+ "grad_norm": 0.22968287765979767,
+ "learning_rate": 0.0006,
+ "loss": 3.4909615516662598,
+ "step": 5821
+ },
+ {
+ "epoch": 80.86675404106597,
+ "grad_norm": 0.24920479953289032,
+ "learning_rate": 0.0006,
+ "loss": 3.4653358459472656,
+ "step": 5822
+ },
+ {
+ "epoch": 80.88073394495413,
+ "grad_norm": 0.24923524260520935,
+ "learning_rate": 0.0006,
+ "loss": 3.4682798385620117,
+ "step": 5823
+ },
+ {
+ "epoch": 80.89471384884229,
+ "grad_norm": 0.2546396255493164,
+ "learning_rate": 0.0006,
+ "loss": 3.4581995010375977,
+ "step": 5824
+ },
+ {
+ "epoch": 80.90869375273044,
+ "grad_norm": 0.27739930152893066,
+ "learning_rate": 0.0006,
+ "loss": 3.476200819015503,
+ "step": 5825
+ },
+ {
+ "epoch": 80.92267365661861,
+ "grad_norm": 0.25831520557403564,
+ "learning_rate": 0.0006,
+ "loss": 3.5037174224853516,
+ "step": 5826
+ },
+ {
+ "epoch": 80.93665356050677,
+ "grad_norm": 0.2223384827375412,
+ "learning_rate": 0.0006,
+ "loss": 3.458250045776367,
+ "step": 5827
+ },
+ {
+ "epoch": 80.95063346439493,
+ "grad_norm": 0.22563499212265015,
+ "learning_rate": 0.0006,
+ "loss": 3.474761486053467,
+ "step": 5828
+ },
+ {
+ "epoch": 80.9646133682831,
+ "grad_norm": 0.2326449155807495,
+ "learning_rate": 0.0006,
+ "loss": 3.500535011291504,
+ "step": 5829
+ },
+ {
+ "epoch": 80.97859327217125,
+ "grad_norm": 0.23983219265937805,
+ "learning_rate": 0.0006,
+ "loss": 3.462369680404663,
+ "step": 5830
+ },
+ {
+ "epoch": 80.99257317605941,
+ "grad_norm": 0.2850669324398041,
+ "learning_rate": 0.0006,
+ "loss": 3.4906742572784424,
+ "step": 5831
+ },
+ {
+ "epoch": 81.0,
+ "grad_norm": 0.33799314498901367,
+ "learning_rate": 0.0006,
+ "loss": 3.5178146362304688,
+ "step": 5832
+ },
+ {
+ "epoch": 81.0,
+ "eval_loss": 4.0064849853515625,
+ "eval_runtime": 46.5715,
+ "eval_samples_per_second": 52.435,
+ "eval_steps_per_second": 3.285,
+ "step": 5832
+ },
+ {
+ "epoch": 81.01397990388816,
+ "grad_norm": 0.2734781801700592,
+ "learning_rate": 0.0006,
+ "loss": 3.44972562789917,
+ "step": 5833
+ },
+ {
+ "epoch": 81.02795980777633,
+ "grad_norm": 0.24696482717990875,
+ "learning_rate": 0.0006,
+ "loss": 3.43271541595459,
+ "step": 5834
+ },
+ {
+ "epoch": 81.04193971166448,
+ "grad_norm": 0.24902470409870148,
+ "learning_rate": 0.0006,
+ "loss": 3.442819595336914,
+ "step": 5835
+ },
+ {
+ "epoch": 81.05591961555264,
+ "grad_norm": 0.26691070199012756,
+ "learning_rate": 0.0006,
+ "loss": 3.4350805282592773,
+ "step": 5836
+ },
+ {
+ "epoch": 81.06989951944081,
+ "grad_norm": 0.271199107170105,
+ "learning_rate": 0.0006,
+ "loss": 3.4339957237243652,
+ "step": 5837
+ },
+ {
+ "epoch": 81.08387942332897,
+ "grad_norm": 0.24132029712200165,
+ "learning_rate": 0.0006,
+ "loss": 3.437596321105957,
+ "step": 5838
+ },
+ {
+ "epoch": 81.09785932721712,
+ "grad_norm": 0.22754840552806854,
+ "learning_rate": 0.0006,
+ "loss": 3.420121431350708,
+ "step": 5839
+ },
+ {
+ "epoch": 81.1118392311053,
+ "grad_norm": 0.2779895067214966,
+ "learning_rate": 0.0006,
+ "loss": 3.4544930458068848,
+ "step": 5840
+ },
+ {
+ "epoch": 81.12581913499345,
+ "grad_norm": 0.28317394852638245,
+ "learning_rate": 0.0006,
+ "loss": 3.4461822509765625,
+ "step": 5841
+ },
+ {
+ "epoch": 81.1397990388816,
+ "grad_norm": 0.22738827764987946,
+ "learning_rate": 0.0006,
+ "loss": 3.460659980773926,
+ "step": 5842
+ },
+ {
+ "epoch": 81.15377894276976,
+ "grad_norm": 0.24671101570129395,
+ "learning_rate": 0.0006,
+ "loss": 3.4540371894836426,
+ "step": 5843
+ },
+ {
+ "epoch": 81.16775884665793,
+ "grad_norm": 0.2668206989765167,
+ "learning_rate": 0.0006,
+ "loss": 3.40748929977417,
+ "step": 5844
+ },
+ {
+ "epoch": 81.18173875054609,
+ "grad_norm": 0.2719775140285492,
+ "learning_rate": 0.0006,
+ "loss": 3.432345390319824,
+ "step": 5845
+ },
+ {
+ "epoch": 81.19571865443424,
+ "grad_norm": 0.25384029746055603,
+ "learning_rate": 0.0006,
+ "loss": 3.4371347427368164,
+ "step": 5846
+ },
+ {
+ "epoch": 81.20969855832242,
+ "grad_norm": 0.2570390999317169,
+ "learning_rate": 0.0006,
+ "loss": 3.4476442337036133,
+ "step": 5847
+ },
+ {
+ "epoch": 81.22367846221057,
+ "grad_norm": 0.26525548100471497,
+ "learning_rate": 0.0006,
+ "loss": 3.471432685852051,
+ "step": 5848
+ },
+ {
+ "epoch": 81.23765836609873,
+ "grad_norm": 0.2836049199104309,
+ "learning_rate": 0.0006,
+ "loss": 3.4596359729766846,
+ "step": 5849
+ },
+ {
+ "epoch": 81.2516382699869,
+ "grad_norm": 0.2822650671005249,
+ "learning_rate": 0.0006,
+ "loss": 3.433651924133301,
+ "step": 5850
+ },
+ {
+ "epoch": 81.26561817387505,
+ "grad_norm": 0.25116705894470215,
+ "learning_rate": 0.0006,
+ "loss": 3.452144145965576,
+ "step": 5851
+ },
+ {
+ "epoch": 81.27959807776321,
+ "grad_norm": 0.23779597878456116,
+ "learning_rate": 0.0006,
+ "loss": 3.459000587463379,
+ "step": 5852
+ },
+ {
+ "epoch": 81.29357798165138,
+ "grad_norm": 0.21741659939289093,
+ "learning_rate": 0.0006,
+ "loss": 3.44561505317688,
+ "step": 5853
+ },
+ {
+ "epoch": 81.30755788553954,
+ "grad_norm": 0.24104240536689758,
+ "learning_rate": 0.0006,
+ "loss": 3.4796364307403564,
+ "step": 5854
+ },
+ {
+ "epoch": 81.3215377894277,
+ "grad_norm": 0.2497674971818924,
+ "learning_rate": 0.0006,
+ "loss": 3.460237741470337,
+ "step": 5855
+ },
+ {
+ "epoch": 81.33551769331586,
+ "grad_norm": 0.26402798295021057,
+ "learning_rate": 0.0006,
+ "loss": 3.459944725036621,
+ "step": 5856
+ },
+ {
+ "epoch": 81.34949759720402,
+ "grad_norm": 0.2843187153339386,
+ "learning_rate": 0.0006,
+ "loss": 3.464351177215576,
+ "step": 5857
+ },
+ {
+ "epoch": 81.36347750109218,
+ "grad_norm": 0.26369425654411316,
+ "learning_rate": 0.0006,
+ "loss": 3.459855556488037,
+ "step": 5858
+ },
+ {
+ "epoch": 81.37745740498035,
+ "grad_norm": 0.2376980036497116,
+ "learning_rate": 0.0006,
+ "loss": 3.4585585594177246,
+ "step": 5859
+ },
+ {
+ "epoch": 81.3914373088685,
+ "grad_norm": 0.2369474321603775,
+ "learning_rate": 0.0006,
+ "loss": 3.4587368965148926,
+ "step": 5860
+ },
+ {
+ "epoch": 81.40541721275666,
+ "grad_norm": 0.24202723801136017,
+ "learning_rate": 0.0006,
+ "loss": 3.456484317779541,
+ "step": 5861
+ },
+ {
+ "epoch": 81.41939711664482,
+ "grad_norm": 0.24000433087348938,
+ "learning_rate": 0.0006,
+ "loss": 3.4597935676574707,
+ "step": 5862
+ },
+ {
+ "epoch": 81.43337702053299,
+ "grad_norm": 0.21620287001132965,
+ "learning_rate": 0.0006,
+ "loss": 3.490447759628296,
+ "step": 5863
+ },
+ {
+ "epoch": 81.44735692442114,
+ "grad_norm": 0.21280473470687866,
+ "learning_rate": 0.0006,
+ "loss": 3.4409351348876953,
+ "step": 5864
+ },
+ {
+ "epoch": 81.4613368283093,
+ "grad_norm": 0.21686480939388275,
+ "learning_rate": 0.0006,
+ "loss": 3.4337422847747803,
+ "step": 5865
+ },
+ {
+ "epoch": 81.47531673219747,
+ "grad_norm": 0.21165262162685394,
+ "learning_rate": 0.0006,
+ "loss": 3.4551923274993896,
+ "step": 5866
+ },
+ {
+ "epoch": 81.48929663608563,
+ "grad_norm": 0.24010618031024933,
+ "learning_rate": 0.0006,
+ "loss": 3.4817299842834473,
+ "step": 5867
+ },
+ {
+ "epoch": 81.50327653997378,
+ "grad_norm": 0.23277464509010315,
+ "learning_rate": 0.0006,
+ "loss": 3.4820570945739746,
+ "step": 5868
+ },
+ {
+ "epoch": 81.51725644386195,
+ "grad_norm": 0.20819281041622162,
+ "learning_rate": 0.0006,
+ "loss": 3.442948341369629,
+ "step": 5869
+ },
+ {
+ "epoch": 81.53123634775011,
+ "grad_norm": 0.22829480469226837,
+ "learning_rate": 0.0006,
+ "loss": 3.4757442474365234,
+ "step": 5870
+ },
+ {
+ "epoch": 81.54521625163827,
+ "grad_norm": 0.24158570170402527,
+ "learning_rate": 0.0006,
+ "loss": 3.4724745750427246,
+ "step": 5871
+ },
+ {
+ "epoch": 81.55919615552644,
+ "grad_norm": 0.24712695181369781,
+ "learning_rate": 0.0006,
+ "loss": 3.4481959342956543,
+ "step": 5872
+ },
+ {
+ "epoch": 81.57317605941459,
+ "grad_norm": 0.2370705008506775,
+ "learning_rate": 0.0006,
+ "loss": 3.466951847076416,
+ "step": 5873
+ },
+ {
+ "epoch": 81.58715596330275,
+ "grad_norm": 0.2232188880443573,
+ "learning_rate": 0.0006,
+ "loss": 3.4636940956115723,
+ "step": 5874
+ },
+ {
+ "epoch": 81.60113586719092,
+ "grad_norm": 0.22505831718444824,
+ "learning_rate": 0.0006,
+ "loss": 3.476677894592285,
+ "step": 5875
+ },
+ {
+ "epoch": 81.61511577107908,
+ "grad_norm": 0.23009659349918365,
+ "learning_rate": 0.0006,
+ "loss": 3.451272964477539,
+ "step": 5876
+ },
+ {
+ "epoch": 81.62909567496723,
+ "grad_norm": 0.26682841777801514,
+ "learning_rate": 0.0006,
+ "loss": 3.454648733139038,
+ "step": 5877
+ },
+ {
+ "epoch": 81.6430755788554,
+ "grad_norm": 0.26330509781837463,
+ "learning_rate": 0.0006,
+ "loss": 3.483720064163208,
+ "step": 5878
+ },
+ {
+ "epoch": 81.65705548274356,
+ "grad_norm": 0.24642175436019897,
+ "learning_rate": 0.0006,
+ "loss": 3.483520984649658,
+ "step": 5879
+ },
+ {
+ "epoch": 81.67103538663171,
+ "grad_norm": 0.24045883119106293,
+ "learning_rate": 0.0006,
+ "loss": 3.478955030441284,
+ "step": 5880
+ },
+ {
+ "epoch": 81.68501529051987,
+ "grad_norm": 0.25334200263023376,
+ "learning_rate": 0.0006,
+ "loss": 3.46458101272583,
+ "step": 5881
+ },
+ {
+ "epoch": 81.69899519440804,
+ "grad_norm": 0.23601189255714417,
+ "learning_rate": 0.0006,
+ "loss": 3.4435858726501465,
+ "step": 5882
+ },
+ {
+ "epoch": 81.7129750982962,
+ "grad_norm": 0.24426797032356262,
+ "learning_rate": 0.0006,
+ "loss": 3.47581148147583,
+ "step": 5883
+ },
+ {
+ "epoch": 81.72695500218435,
+ "grad_norm": 0.28175151348114014,
+ "learning_rate": 0.0006,
+ "loss": 3.464777946472168,
+ "step": 5884
+ },
+ {
+ "epoch": 81.74093490607252,
+ "grad_norm": 0.30024033784866333,
+ "learning_rate": 0.0006,
+ "loss": 3.4527053833007812,
+ "step": 5885
+ },
+ {
+ "epoch": 81.75491480996068,
+ "grad_norm": 0.2306688278913498,
+ "learning_rate": 0.0006,
+ "loss": 3.4810023307800293,
+ "step": 5886
+ },
+ {
+ "epoch": 81.76889471384884,
+ "grad_norm": 0.2599645256996155,
+ "learning_rate": 0.0006,
+ "loss": 3.4631409645080566,
+ "step": 5887
+ },
+ {
+ "epoch": 81.78287461773701,
+ "grad_norm": 0.2765994966030121,
+ "learning_rate": 0.0006,
+ "loss": 3.477273464202881,
+ "step": 5888
+ },
+ {
+ "epoch": 81.79685452162516,
+ "grad_norm": 0.2595500648021698,
+ "learning_rate": 0.0006,
+ "loss": 3.4744186401367188,
+ "step": 5889
+ },
+ {
+ "epoch": 81.81083442551332,
+ "grad_norm": 0.2481662631034851,
+ "learning_rate": 0.0006,
+ "loss": 3.507770538330078,
+ "step": 5890
+ },
+ {
+ "epoch": 81.82481432940149,
+ "grad_norm": 0.23018419742584229,
+ "learning_rate": 0.0006,
+ "loss": 3.4804000854492188,
+ "step": 5891
+ },
+ {
+ "epoch": 81.83879423328965,
+ "grad_norm": 0.230391263961792,
+ "learning_rate": 0.0006,
+ "loss": 3.4579944610595703,
+ "step": 5892
+ },
+ {
+ "epoch": 81.8527741371778,
+ "grad_norm": 0.21724778413772583,
+ "learning_rate": 0.0006,
+ "loss": 3.501087188720703,
+ "step": 5893
+ },
+ {
+ "epoch": 81.86675404106597,
+ "grad_norm": 0.24898028373718262,
+ "learning_rate": 0.0006,
+ "loss": 3.4701733589172363,
+ "step": 5894
+ },
+ {
+ "epoch": 81.88073394495413,
+ "grad_norm": 0.2489824891090393,
+ "learning_rate": 0.0006,
+ "loss": 3.4377074241638184,
+ "step": 5895
+ },
+ {
+ "epoch": 81.89471384884229,
+ "grad_norm": 0.22714054584503174,
+ "learning_rate": 0.0006,
+ "loss": 3.457437515258789,
+ "step": 5896
+ },
+ {
+ "epoch": 81.90869375273044,
+ "grad_norm": 0.25653958320617676,
+ "learning_rate": 0.0006,
+ "loss": 3.4825286865234375,
+ "step": 5897
+ },
+ {
+ "epoch": 81.92267365661861,
+ "grad_norm": 0.2545621991157532,
+ "learning_rate": 0.0006,
+ "loss": 3.4589271545410156,
+ "step": 5898
+ },
+ {
+ "epoch": 81.93665356050677,
+ "grad_norm": 0.2259686142206192,
+ "learning_rate": 0.0006,
+ "loss": 3.4559035301208496,
+ "step": 5899
+ },
+ {
+ "epoch": 81.95063346439493,
+ "grad_norm": 0.2246817946434021,
+ "learning_rate": 0.0006,
+ "loss": 3.5045571327209473,
+ "step": 5900
+ },
+ {
+ "epoch": 81.9646133682831,
+ "grad_norm": 0.23750948905944824,
+ "learning_rate": 0.0006,
+ "loss": 3.450650453567505,
+ "step": 5901
+ },
+ {
+ "epoch": 81.97859327217125,
+ "grad_norm": 0.23084647953510284,
+ "learning_rate": 0.0006,
+ "loss": 3.488955020904541,
+ "step": 5902
+ },
+ {
+ "epoch": 81.99257317605941,
+ "grad_norm": 0.22894839942455292,
+ "learning_rate": 0.0006,
+ "loss": 3.459271192550659,
+ "step": 5903
+ },
+ {
+ "epoch": 82.0,
+ "grad_norm": 0.2765962779521942,
+ "learning_rate": 0.0006,
+ "loss": 3.408276081085205,
+ "step": 5904
+ },
+ {
+ "epoch": 82.0,
+ "eval_loss": 3.996730327606201,
+ "eval_runtime": 45.9786,
+ "eval_samples_per_second": 53.112,
+ "eval_steps_per_second": 3.328,
+ "step": 5904
+ },
+ {
+ "epoch": 82.01397990388816,
+ "grad_norm": 0.23179036378860474,
+ "learning_rate": 0.0006,
+ "loss": 3.4373724460601807,
+ "step": 5905
+ },
+ {
+ "epoch": 82.02795980777633,
+ "grad_norm": 0.26358088850975037,
+ "learning_rate": 0.0006,
+ "loss": 3.409518241882324,
+ "step": 5906
+ },
+ {
+ "epoch": 82.04193971166448,
+ "grad_norm": 0.2684100866317749,
+ "learning_rate": 0.0006,
+ "loss": 3.454376697540283,
+ "step": 5907
+ },
+ {
+ "epoch": 82.05591961555264,
+ "grad_norm": 0.2605251371860504,
+ "learning_rate": 0.0006,
+ "loss": 3.443272113800049,
+ "step": 5908
+ },
+ {
+ "epoch": 82.06989951944081,
+ "grad_norm": 0.28532418608665466,
+ "learning_rate": 0.0006,
+ "loss": 3.462437629699707,
+ "step": 5909
+ },
+ {
+ "epoch": 82.08387942332897,
+ "grad_norm": 0.27555668354034424,
+ "learning_rate": 0.0006,
+ "loss": 3.441549301147461,
+ "step": 5910
+ },
+ {
+ "epoch": 82.09785932721712,
+ "grad_norm": 0.24676190316677094,
+ "learning_rate": 0.0006,
+ "loss": 3.4276766777038574,
+ "step": 5911
+ },
+ {
+ "epoch": 82.1118392311053,
+ "grad_norm": 0.24529537558555603,
+ "learning_rate": 0.0006,
+ "loss": 3.4216628074645996,
+ "step": 5912
+ },
+ {
+ "epoch": 82.12581913499345,
+ "grad_norm": 0.24856150150299072,
+ "learning_rate": 0.0006,
+ "loss": 3.440220832824707,
+ "step": 5913
+ },
+ {
+ "epoch": 82.1397990388816,
+ "grad_norm": 0.25839412212371826,
+ "learning_rate": 0.0006,
+ "loss": 3.4307751655578613,
+ "step": 5914
+ },
+ {
+ "epoch": 82.15377894276976,
+ "grad_norm": 0.24331165850162506,
+ "learning_rate": 0.0006,
+ "loss": 3.434621810913086,
+ "step": 5915
+ },
+ {
+ "epoch": 82.16775884665793,
+ "grad_norm": 0.23028214275836945,
+ "learning_rate": 0.0006,
+ "loss": 3.4578404426574707,
+ "step": 5916
+ },
+ {
+ "epoch": 82.18173875054609,
+ "grad_norm": 0.25276753306388855,
+ "learning_rate": 0.0006,
+ "loss": 3.447455406188965,
+ "step": 5917
+ },
+ {
+ "epoch": 82.19571865443424,
+ "grad_norm": 0.2595311105251312,
+ "learning_rate": 0.0006,
+ "loss": 3.4466679096221924,
+ "step": 5918
+ },
+ {
+ "epoch": 82.20969855832242,
+ "grad_norm": 0.2971263527870178,
+ "learning_rate": 0.0006,
+ "loss": 3.4721288681030273,
+ "step": 5919
+ },
+ {
+ "epoch": 82.22367846221057,
+ "grad_norm": 0.3399767577648163,
+ "learning_rate": 0.0006,
+ "loss": 3.433732032775879,
+ "step": 5920
+ },
+ {
+ "epoch": 82.23765836609873,
+ "grad_norm": 0.2947933077812195,
+ "learning_rate": 0.0006,
+ "loss": 3.437530994415283,
+ "step": 5921
+ },
+ {
+ "epoch": 82.2516382699869,
+ "grad_norm": 0.24236083030700684,
+ "learning_rate": 0.0006,
+ "loss": 3.4405105113983154,
+ "step": 5922
+ },
+ {
+ "epoch": 82.26561817387505,
+ "grad_norm": 0.2506858706474304,
+ "learning_rate": 0.0006,
+ "loss": 3.4653801918029785,
+ "step": 5923
+ },
+ {
+ "epoch": 82.27959807776321,
+ "grad_norm": 0.3094657361507416,
+ "learning_rate": 0.0006,
+ "loss": 3.444723129272461,
+ "step": 5924
+ },
+ {
+ "epoch": 82.29357798165138,
+ "grad_norm": 0.3230939209461212,
+ "learning_rate": 0.0006,
+ "loss": 3.4660234451293945,
+ "step": 5925
+ },
+ {
+ "epoch": 82.30755788553954,
+ "grad_norm": 0.30391860008239746,
+ "learning_rate": 0.0006,
+ "loss": 3.451413631439209,
+ "step": 5926
+ },
+ {
+ "epoch": 82.3215377894277,
+ "grad_norm": 0.2740595042705536,
+ "learning_rate": 0.0006,
+ "loss": 3.449131965637207,
+ "step": 5927
+ },
+ {
+ "epoch": 82.33551769331586,
+ "grad_norm": 0.2436739057302475,
+ "learning_rate": 0.0006,
+ "loss": 3.4319000244140625,
+ "step": 5928
+ },
+ {
+ "epoch": 82.34949759720402,
+ "grad_norm": 0.28533536195755005,
+ "learning_rate": 0.0006,
+ "loss": 3.4300975799560547,
+ "step": 5929
+ },
+ {
+ "epoch": 82.36347750109218,
+ "grad_norm": 0.2921883761882782,
+ "learning_rate": 0.0006,
+ "loss": 3.4531779289245605,
+ "step": 5930
+ },
+ {
+ "epoch": 82.37745740498035,
+ "grad_norm": 0.23490813374519348,
+ "learning_rate": 0.0006,
+ "loss": 3.461367130279541,
+ "step": 5931
+ },
+ {
+ "epoch": 82.3914373088685,
+ "grad_norm": 0.23341777920722961,
+ "learning_rate": 0.0006,
+ "loss": 3.4425978660583496,
+ "step": 5932
+ },
+ {
+ "epoch": 82.40541721275666,
+ "grad_norm": 0.2530428171157837,
+ "learning_rate": 0.0006,
+ "loss": 3.4478020668029785,
+ "step": 5933
+ },
+ {
+ "epoch": 82.41939711664482,
+ "grad_norm": 0.2404085248708725,
+ "learning_rate": 0.0006,
+ "loss": 3.401540517807007,
+ "step": 5934
+ },
+ {
+ "epoch": 82.43337702053299,
+ "grad_norm": 0.23845867812633514,
+ "learning_rate": 0.0006,
+ "loss": 3.461883544921875,
+ "step": 5935
+ },
+ {
+ "epoch": 82.44735692442114,
+ "grad_norm": 0.23088037967681885,
+ "learning_rate": 0.0006,
+ "loss": 3.4389796257019043,
+ "step": 5936
+ },
+ {
+ "epoch": 82.4613368283093,
+ "grad_norm": 0.24288570880889893,
+ "learning_rate": 0.0006,
+ "loss": 3.457475185394287,
+ "step": 5937
+ },
+ {
+ "epoch": 82.47531673219747,
+ "grad_norm": 0.2799559235572815,
+ "learning_rate": 0.0006,
+ "loss": 3.445082664489746,
+ "step": 5938
+ },
+ {
+ "epoch": 82.48929663608563,
+ "grad_norm": 0.23611751198768616,
+ "learning_rate": 0.0006,
+ "loss": 3.463675022125244,
+ "step": 5939
+ },
+ {
+ "epoch": 82.50327653997378,
+ "grad_norm": 0.2390424907207489,
+ "learning_rate": 0.0006,
+ "loss": 3.4434826374053955,
+ "step": 5940
+ },
+ {
+ "epoch": 82.51725644386195,
+ "grad_norm": 0.3373001217842102,
+ "learning_rate": 0.0006,
+ "loss": 3.4687438011169434,
+ "step": 5941
+ },
+ {
+ "epoch": 82.53123634775011,
+ "grad_norm": 0.3413066267967224,
+ "learning_rate": 0.0006,
+ "loss": 3.4376461505889893,
+ "step": 5942
+ },
+ {
+ "epoch": 82.54521625163827,
+ "grad_norm": 0.24165762960910797,
+ "learning_rate": 0.0006,
+ "loss": 3.430239200592041,
+ "step": 5943
+ },
+ {
+ "epoch": 82.55919615552644,
+ "grad_norm": 0.25374823808670044,
+ "learning_rate": 0.0006,
+ "loss": 3.417081832885742,
+ "step": 5944
+ },
+ {
+ "epoch": 82.57317605941459,
+ "grad_norm": 0.32946228981018066,
+ "learning_rate": 0.0006,
+ "loss": 3.4235644340515137,
+ "step": 5945
+ },
+ {
+ "epoch": 82.58715596330275,
+ "grad_norm": 0.32193586230278015,
+ "learning_rate": 0.0006,
+ "loss": 3.450972080230713,
+ "step": 5946
+ },
+ {
+ "epoch": 82.60113586719092,
+ "grad_norm": 0.24615046381950378,
+ "learning_rate": 0.0006,
+ "loss": 3.489959716796875,
+ "step": 5947
+ },
+ {
+ "epoch": 82.61511577107908,
+ "grad_norm": 0.24981027841567993,
+ "learning_rate": 0.0006,
+ "loss": 3.466486930847168,
+ "step": 5948
+ },
+ {
+ "epoch": 82.62909567496723,
+ "grad_norm": 0.2472672462463379,
+ "learning_rate": 0.0006,
+ "loss": 3.47261381149292,
+ "step": 5949
+ },
+ {
+ "epoch": 82.6430755788554,
+ "grad_norm": 0.2465936541557312,
+ "learning_rate": 0.0006,
+ "loss": 3.46502423286438,
+ "step": 5950
+ },
+ {
+ "epoch": 82.65705548274356,
+ "grad_norm": 0.2683236300945282,
+ "learning_rate": 0.0006,
+ "loss": 3.4559872150421143,
+ "step": 5951
+ },
+ {
+ "epoch": 82.67103538663171,
+ "grad_norm": 0.2673622965812683,
+ "learning_rate": 0.0006,
+ "loss": 3.5017478466033936,
+ "step": 5952
+ },
+ {
+ "epoch": 82.68501529051987,
+ "grad_norm": 0.2692212164402008,
+ "learning_rate": 0.0006,
+ "loss": 3.4872794151306152,
+ "step": 5953
+ },
+ {
+ "epoch": 82.69899519440804,
+ "grad_norm": 0.26421430706977844,
+ "learning_rate": 0.0006,
+ "loss": 3.4612350463867188,
+ "step": 5954
+ },
+ {
+ "epoch": 82.7129750982962,
+ "grad_norm": 0.2509252727031708,
+ "learning_rate": 0.0006,
+ "loss": 3.4686827659606934,
+ "step": 5955
+ },
+ {
+ "epoch": 82.72695500218435,
+ "grad_norm": 0.209443598985672,
+ "learning_rate": 0.0006,
+ "loss": 3.454824924468994,
+ "step": 5956
+ },
+ {
+ "epoch": 82.74093490607252,
+ "grad_norm": 0.24989601969718933,
+ "learning_rate": 0.0006,
+ "loss": 3.4740121364593506,
+ "step": 5957
+ },
+ {
+ "epoch": 82.75491480996068,
+ "grad_norm": 0.2902134954929352,
+ "learning_rate": 0.0006,
+ "loss": 3.4464473724365234,
+ "step": 5958
+ },
+ {
+ "epoch": 82.76889471384884,
+ "grad_norm": 0.24959035217761993,
+ "learning_rate": 0.0006,
+ "loss": 3.465094566345215,
+ "step": 5959
+ },
+ {
+ "epoch": 82.78287461773701,
+ "grad_norm": 0.23020492494106293,
+ "learning_rate": 0.0006,
+ "loss": 3.4868249893188477,
+ "step": 5960
+ },
+ {
+ "epoch": 82.79685452162516,
+ "grad_norm": 0.2315775454044342,
+ "learning_rate": 0.0006,
+ "loss": 3.4711623191833496,
+ "step": 5961
+ },
+ {
+ "epoch": 82.81083442551332,
+ "grad_norm": 0.2326463758945465,
+ "learning_rate": 0.0006,
+ "loss": 3.447787284851074,
+ "step": 5962
+ },
+ {
+ "epoch": 82.82481432940149,
+ "grad_norm": 0.23650991916656494,
+ "learning_rate": 0.0006,
+ "loss": 3.4676520824432373,
+ "step": 5963
+ },
+ {
+ "epoch": 82.83879423328965,
+ "grad_norm": 0.25990426540374756,
+ "learning_rate": 0.0006,
+ "loss": 3.494727373123169,
+ "step": 5964
+ },
+ {
+ "epoch": 82.8527741371778,
+ "grad_norm": 0.23490077257156372,
+ "learning_rate": 0.0006,
+ "loss": 3.5040855407714844,
+ "step": 5965
+ },
+ {
+ "epoch": 82.86675404106597,
+ "grad_norm": 0.20543795824050903,
+ "learning_rate": 0.0006,
+ "loss": 3.4675912857055664,
+ "step": 5966
+ },
+ {
+ "epoch": 82.88073394495413,
+ "grad_norm": 0.21899794042110443,
+ "learning_rate": 0.0006,
+ "loss": 3.4491946697235107,
+ "step": 5967
+ },
+ {
+ "epoch": 82.89471384884229,
+ "grad_norm": 0.22304055094718933,
+ "learning_rate": 0.0006,
+ "loss": 3.4818315505981445,
+ "step": 5968
+ },
+ {
+ "epoch": 82.90869375273044,
+ "grad_norm": 0.2622174024581909,
+ "learning_rate": 0.0006,
+ "loss": 3.475957155227661,
+ "step": 5969
+ },
+ {
+ "epoch": 82.92267365661861,
+ "grad_norm": 0.2829800546169281,
+ "learning_rate": 0.0006,
+ "loss": 3.5397486686706543,
+ "step": 5970
+ },
+ {
+ "epoch": 82.93665356050677,
+ "grad_norm": 0.23583251237869263,
+ "learning_rate": 0.0006,
+ "loss": 3.4955060482025146,
+ "step": 5971
+ },
+ {
+ "epoch": 82.95063346439493,
+ "grad_norm": 0.2033468782901764,
+ "learning_rate": 0.0006,
+ "loss": 3.477050542831421,
+ "step": 5972
+ },
+ {
+ "epoch": 82.9646133682831,
+ "grad_norm": 0.20826712250709534,
+ "learning_rate": 0.0006,
+ "loss": 3.4818544387817383,
+ "step": 5973
+ },
+ {
+ "epoch": 82.97859327217125,
+ "grad_norm": 0.20250852406024933,
+ "learning_rate": 0.0006,
+ "loss": 3.44329571723938,
+ "step": 5974
+ },
+ {
+ "epoch": 82.99257317605941,
+ "grad_norm": 0.21684879064559937,
+ "learning_rate": 0.0006,
+ "loss": 3.482222318649292,
+ "step": 5975
+ },
+ {
+ "epoch": 83.0,
+ "grad_norm": 0.2637452781200409,
+ "learning_rate": 0.0006,
+ "loss": 3.526481866836548,
+ "step": 5976
+ },
+ {
+ "epoch": 83.0,
+ "eval_loss": 3.9838967323303223,
+ "eval_runtime": 45.8267,
+ "eval_samples_per_second": 53.288,
+ "eval_steps_per_second": 3.339,
+ "step": 5976
+ },
+ {
+ "epoch": 83.01397990388816,
+ "grad_norm": 0.2888176143169403,
+ "learning_rate": 0.0006,
+ "loss": 3.409271717071533,
+ "step": 5977
+ },
+ {
+ "epoch": 83.02795980777633,
+ "grad_norm": 0.3692282736301422,
+ "learning_rate": 0.0006,
+ "loss": 3.4353346824645996,
+ "step": 5978
+ },
+ {
+ "epoch": 83.04193971166448,
+ "grad_norm": 0.3694300353527069,
+ "learning_rate": 0.0006,
+ "loss": 3.4257359504699707,
+ "step": 5979
+ },
+ {
+ "epoch": 83.05591961555264,
+ "grad_norm": 0.29487040638923645,
+ "learning_rate": 0.0006,
+ "loss": 3.416271209716797,
+ "step": 5980
+ },
+ {
+ "epoch": 83.06989951944081,
+ "grad_norm": 0.2911352217197418,
+ "learning_rate": 0.0006,
+ "loss": 3.424140214920044,
+ "step": 5981
+ },
+ {
+ "epoch": 83.08387942332897,
+ "grad_norm": 0.35632601380348206,
+ "learning_rate": 0.0006,
+ "loss": 3.4235711097717285,
+ "step": 5982
+ },
+ {
+ "epoch": 83.09785932721712,
+ "grad_norm": 0.4010505676269531,
+ "learning_rate": 0.0006,
+ "loss": 3.462642192840576,
+ "step": 5983
+ },
+ {
+ "epoch": 83.1118392311053,
+ "grad_norm": 0.3426569402217865,
+ "learning_rate": 0.0006,
+ "loss": 3.448690176010132,
+ "step": 5984
+ },
+ {
+ "epoch": 83.12581913499345,
+ "grad_norm": 0.2632673382759094,
+ "learning_rate": 0.0006,
+ "loss": 3.447197914123535,
+ "step": 5985
+ },
+ {
+ "epoch": 83.1397990388816,
+ "grad_norm": 0.2999698221683502,
+ "learning_rate": 0.0006,
+ "loss": 3.4137229919433594,
+ "step": 5986
+ },
+ {
+ "epoch": 83.15377894276976,
+ "grad_norm": 0.3033472001552582,
+ "learning_rate": 0.0006,
+ "loss": 3.4816393852233887,
+ "step": 5987
+ },
+ {
+ "epoch": 83.16775884665793,
+ "grad_norm": 0.2590268850326538,
+ "learning_rate": 0.0006,
+ "loss": 3.4059391021728516,
+ "step": 5988
+ },
+ {
+ "epoch": 83.18173875054609,
+ "grad_norm": 0.2598235607147217,
+ "learning_rate": 0.0006,
+ "loss": 3.447913885116577,
+ "step": 5989
+ },
+ {
+ "epoch": 83.19571865443424,
+ "grad_norm": 0.25087642669677734,
+ "learning_rate": 0.0006,
+ "loss": 3.4645161628723145,
+ "step": 5990
+ },
+ {
+ "epoch": 83.20969855832242,
+ "grad_norm": 0.267760306596756,
+ "learning_rate": 0.0006,
+ "loss": 3.4360952377319336,
+ "step": 5991
+ },
+ {
+ "epoch": 83.22367846221057,
+ "grad_norm": 0.25042274594306946,
+ "learning_rate": 0.0006,
+ "loss": 3.464437961578369,
+ "step": 5992
+ },
+ {
+ "epoch": 83.23765836609873,
+ "grad_norm": 0.22963418066501617,
+ "learning_rate": 0.0006,
+ "loss": 3.421604633331299,
+ "step": 5993
+ },
+ {
+ "epoch": 83.2516382699869,
+ "grad_norm": 0.24857227504253387,
+ "learning_rate": 0.0006,
+ "loss": 3.4228515625,
+ "step": 5994
+ },
+ {
+ "epoch": 83.26561817387505,
+ "grad_norm": 0.24745461344718933,
+ "learning_rate": 0.0006,
+ "loss": 3.463120222091675,
+ "step": 5995
+ },
+ {
+ "epoch": 83.27959807776321,
+ "grad_norm": 0.258258581161499,
+ "learning_rate": 0.0006,
+ "loss": 3.4567341804504395,
+ "step": 5996
+ },
+ {
+ "epoch": 83.29357798165138,
+ "grad_norm": 0.26854267716407776,
+ "learning_rate": 0.0006,
+ "loss": 3.459993839263916,
+ "step": 5997
+ },
+ {
+ "epoch": 83.30755788553954,
+ "grad_norm": 0.253322571516037,
+ "learning_rate": 0.0006,
+ "loss": 3.4329309463500977,
+ "step": 5998
+ },
+ {
+ "epoch": 83.3215377894277,
+ "grad_norm": 0.2596076726913452,
+ "learning_rate": 0.0006,
+ "loss": 3.463113784790039,
+ "step": 5999
+ },
+ {
+ "epoch": 83.33551769331586,
+ "grad_norm": 0.23935553431510925,
+ "learning_rate": 0.0006,
+ "loss": 3.45231556892395,
+ "step": 6000
+ },
+ {
+ "epoch": 83.34949759720402,
+ "grad_norm": 0.23181283473968506,
+ "learning_rate": 0.0006,
+ "loss": 3.4250950813293457,
+ "step": 6001
+ },
+ {
+ "epoch": 83.36347750109218,
+ "grad_norm": 0.22866526246070862,
+ "learning_rate": 0.0006,
+ "loss": 3.451408863067627,
+ "step": 6002
+ },
+ {
+ "epoch": 83.37745740498035,
+ "grad_norm": 0.2585664689540863,
+ "learning_rate": 0.0006,
+ "loss": 3.474940299987793,
+ "step": 6003
+ },
+ {
+ "epoch": 83.3914373088685,
+ "grad_norm": 0.21957920491695404,
+ "learning_rate": 0.0006,
+ "loss": 3.4120378494262695,
+ "step": 6004
+ },
+ {
+ "epoch": 83.40541721275666,
+ "grad_norm": 0.21237598359584808,
+ "learning_rate": 0.0006,
+ "loss": 3.458988666534424,
+ "step": 6005
+ },
+ {
+ "epoch": 83.41939711664482,
+ "grad_norm": 0.21803049743175507,
+ "learning_rate": 0.0006,
+ "loss": 3.436127185821533,
+ "step": 6006
+ },
+ {
+ "epoch": 83.43337702053299,
+ "grad_norm": 0.24005955457687378,
+ "learning_rate": 0.0006,
+ "loss": 3.4540181159973145,
+ "step": 6007
+ },
+ {
+ "epoch": 83.44735692442114,
+ "grad_norm": 0.26444754004478455,
+ "learning_rate": 0.0006,
+ "loss": 3.4646968841552734,
+ "step": 6008
+ },
+ {
+ "epoch": 83.4613368283093,
+ "grad_norm": 0.2504395544528961,
+ "learning_rate": 0.0006,
+ "loss": 3.4380784034729004,
+ "step": 6009
+ },
+ {
+ "epoch": 83.47531673219747,
+ "grad_norm": 0.23231923580169678,
+ "learning_rate": 0.0006,
+ "loss": 3.4435203075408936,
+ "step": 6010
+ },
+ {
+ "epoch": 83.48929663608563,
+ "grad_norm": 0.22733177244663239,
+ "learning_rate": 0.0006,
+ "loss": 3.459223747253418,
+ "step": 6011
+ },
+ {
+ "epoch": 83.50327653997378,
+ "grad_norm": 0.23871523141860962,
+ "learning_rate": 0.0006,
+ "loss": 3.452695369720459,
+ "step": 6012
+ },
+ {
+ "epoch": 83.51725644386195,
+ "grad_norm": 0.26548200845718384,
+ "learning_rate": 0.0006,
+ "loss": 3.4481754302978516,
+ "step": 6013
+ },
+ {
+ "epoch": 83.53123634775011,
+ "grad_norm": 0.2633417248725891,
+ "learning_rate": 0.0006,
+ "loss": 3.469902753829956,
+ "step": 6014
+ },
+ {
+ "epoch": 83.54521625163827,
+ "grad_norm": 0.2338850200176239,
+ "learning_rate": 0.0006,
+ "loss": 3.438602924346924,
+ "step": 6015
+ },
+ {
+ "epoch": 83.55919615552644,
+ "grad_norm": 0.2187591791152954,
+ "learning_rate": 0.0006,
+ "loss": 3.426084280014038,
+ "step": 6016
+ },
+ {
+ "epoch": 83.57317605941459,
+ "grad_norm": 0.2570044994354248,
+ "learning_rate": 0.0006,
+ "loss": 3.4380812644958496,
+ "step": 6017
+ },
+ {
+ "epoch": 83.58715596330275,
+ "grad_norm": 0.25832056999206543,
+ "learning_rate": 0.0006,
+ "loss": 3.45045804977417,
+ "step": 6018
+ },
+ {
+ "epoch": 83.60113586719092,
+ "grad_norm": 0.24552716314792633,
+ "learning_rate": 0.0006,
+ "loss": 3.447704792022705,
+ "step": 6019
+ },
+ {
+ "epoch": 83.61511577107908,
+ "grad_norm": 0.2358967810869217,
+ "learning_rate": 0.0006,
+ "loss": 3.4598300457000732,
+ "step": 6020
+ },
+ {
+ "epoch": 83.62909567496723,
+ "grad_norm": 0.20650409162044525,
+ "learning_rate": 0.0006,
+ "loss": 3.4821555614471436,
+ "step": 6021
+ },
+ {
+ "epoch": 83.6430755788554,
+ "grad_norm": 0.20103590190410614,
+ "learning_rate": 0.0006,
+ "loss": 3.468846082687378,
+ "step": 6022
+ },
+ {
+ "epoch": 83.65705548274356,
+ "grad_norm": 0.20957764983177185,
+ "learning_rate": 0.0006,
+ "loss": 3.4600605964660645,
+ "step": 6023
+ },
+ {
+ "epoch": 83.67103538663171,
+ "grad_norm": 0.21819661557674408,
+ "learning_rate": 0.0006,
+ "loss": 3.4393796920776367,
+ "step": 6024
+ },
+ {
+ "epoch": 83.68501529051987,
+ "grad_norm": 0.23196570575237274,
+ "learning_rate": 0.0006,
+ "loss": 3.452263832092285,
+ "step": 6025
+ },
+ {
+ "epoch": 83.69899519440804,
+ "grad_norm": 0.2700229287147522,
+ "learning_rate": 0.0006,
+ "loss": 3.452803134918213,
+ "step": 6026
+ },
+ {
+ "epoch": 83.7129750982962,
+ "grad_norm": 0.26435309648513794,
+ "learning_rate": 0.0006,
+ "loss": 3.457122802734375,
+ "step": 6027
+ },
+ {
+ "epoch": 83.72695500218435,
+ "grad_norm": 0.24041543900966644,
+ "learning_rate": 0.0006,
+ "loss": 3.455793619155884,
+ "step": 6028
+ },
+ {
+ "epoch": 83.74093490607252,
+ "grad_norm": 0.22590254247188568,
+ "learning_rate": 0.0006,
+ "loss": 3.4643428325653076,
+ "step": 6029
+ },
+ {
+ "epoch": 83.75491480996068,
+ "grad_norm": 0.2043512612581253,
+ "learning_rate": 0.0006,
+ "loss": 3.474919557571411,
+ "step": 6030
+ },
+ {
+ "epoch": 83.76889471384884,
+ "grad_norm": 0.23114001750946045,
+ "learning_rate": 0.0006,
+ "loss": 3.469618797302246,
+ "step": 6031
+ },
+ {
+ "epoch": 83.78287461773701,
+ "grad_norm": 0.24307213723659515,
+ "learning_rate": 0.0006,
+ "loss": 3.44295072555542,
+ "step": 6032
+ },
+ {
+ "epoch": 83.79685452162516,
+ "grad_norm": 0.24907614290714264,
+ "learning_rate": 0.0006,
+ "loss": 3.4820055961608887,
+ "step": 6033
+ },
+ {
+ "epoch": 83.81083442551332,
+ "grad_norm": 0.24758939445018768,
+ "learning_rate": 0.0006,
+ "loss": 3.4528980255126953,
+ "step": 6034
+ },
+ {
+ "epoch": 83.82481432940149,
+ "grad_norm": 0.24556805193424225,
+ "learning_rate": 0.0006,
+ "loss": 3.4928247928619385,
+ "step": 6035
+ },
+ {
+ "epoch": 83.83879423328965,
+ "grad_norm": 0.22058741748332977,
+ "learning_rate": 0.0006,
+ "loss": 3.4515697956085205,
+ "step": 6036
+ },
+ {
+ "epoch": 83.8527741371778,
+ "grad_norm": 0.2287076860666275,
+ "learning_rate": 0.0006,
+ "loss": 3.464742422103882,
+ "step": 6037
+ },
+ {
+ "epoch": 83.86675404106597,
+ "grad_norm": 0.23122717440128326,
+ "learning_rate": 0.0006,
+ "loss": 3.475945472717285,
+ "step": 6038
+ },
+ {
+ "epoch": 83.88073394495413,
+ "grad_norm": 0.23839165270328522,
+ "learning_rate": 0.0006,
+ "loss": 3.486027479171753,
+ "step": 6039
+ },
+ {
+ "epoch": 83.89471384884229,
+ "grad_norm": 0.23857836425304413,
+ "learning_rate": 0.0006,
+ "loss": 3.474921226501465,
+ "step": 6040
+ },
+ {
+ "epoch": 83.90869375273044,
+ "grad_norm": 0.24372349679470062,
+ "learning_rate": 0.0006,
+ "loss": 3.4775476455688477,
+ "step": 6041
+ },
+ {
+ "epoch": 83.92267365661861,
+ "grad_norm": 0.28166019916534424,
+ "learning_rate": 0.0006,
+ "loss": 3.450713634490967,
+ "step": 6042
+ },
+ {
+ "epoch": 83.93665356050677,
+ "grad_norm": 0.27276918292045593,
+ "learning_rate": 0.0006,
+ "loss": 3.4824142456054688,
+ "step": 6043
+ },
+ {
+ "epoch": 83.95063346439493,
+ "grad_norm": 0.2137363702058792,
+ "learning_rate": 0.0006,
+ "loss": 3.4720726013183594,
+ "step": 6044
+ },
+ {
+ "epoch": 83.9646133682831,
+ "grad_norm": 0.21120159327983856,
+ "learning_rate": 0.0006,
+ "loss": 3.5012218952178955,
+ "step": 6045
+ },
+ {
+ "epoch": 83.97859327217125,
+ "grad_norm": 0.22474384307861328,
+ "learning_rate": 0.0006,
+ "loss": 3.460742950439453,
+ "step": 6046
+ },
+ {
+ "epoch": 83.99257317605941,
+ "grad_norm": 0.20441333949565887,
+ "learning_rate": 0.0006,
+ "loss": 3.4822964668273926,
+ "step": 6047
+ },
+ {
+ "epoch": 84.0,
+ "grad_norm": 0.2454686462879181,
+ "learning_rate": 0.0006,
+ "loss": 3.5237345695495605,
+ "step": 6048
+ },
+ {
+ "epoch": 84.0,
+ "eval_loss": 3.9953911304473877,
+ "eval_runtime": 45.8514,
+ "eval_samples_per_second": 53.259,
+ "eval_steps_per_second": 3.337,
+ "step": 6048
+ },
+ {
+ "epoch": 84.01397990388816,
+ "grad_norm": 0.23639939725399017,
+ "learning_rate": 0.0006,
+ "loss": 3.4068121910095215,
+ "step": 6049
+ },
+ {
+ "epoch": 84.02795980777633,
+ "grad_norm": 0.2581193149089813,
+ "learning_rate": 0.0006,
+ "loss": 3.4408299922943115,
+ "step": 6050
+ },
+ {
+ "epoch": 84.04193971166448,
+ "grad_norm": 0.2579401433467865,
+ "learning_rate": 0.0006,
+ "loss": 3.4009571075439453,
+ "step": 6051
+ },
+ {
+ "epoch": 84.05591961555264,
+ "grad_norm": 0.2377995103597641,
+ "learning_rate": 0.0006,
+ "loss": 3.4338529109954834,
+ "step": 6052
+ },
+ {
+ "epoch": 84.06989951944081,
+ "grad_norm": 0.22722864151000977,
+ "learning_rate": 0.0006,
+ "loss": 3.411055564880371,
+ "step": 6053
+ },
+ {
+ "epoch": 84.08387942332897,
+ "grad_norm": 0.2766192555427551,
+ "learning_rate": 0.0006,
+ "loss": 3.4304237365722656,
+ "step": 6054
+ },
+ {
+ "epoch": 84.09785932721712,
+ "grad_norm": 0.2608284652233124,
+ "learning_rate": 0.0006,
+ "loss": 3.444244384765625,
+ "step": 6055
+ },
+ {
+ "epoch": 84.1118392311053,
+ "grad_norm": 0.22354614734649658,
+ "learning_rate": 0.0006,
+ "loss": 3.439541816711426,
+ "step": 6056
+ },
+ {
+ "epoch": 84.12581913499345,
+ "grad_norm": 0.24095603823661804,
+ "learning_rate": 0.0006,
+ "loss": 3.4354658126831055,
+ "step": 6057
+ },
+ {
+ "epoch": 84.1397990388816,
+ "grad_norm": 0.23401515185832977,
+ "learning_rate": 0.0006,
+ "loss": 3.4395503997802734,
+ "step": 6058
+ },
+ {
+ "epoch": 84.15377894276976,
+ "grad_norm": 0.21646054089069366,
+ "learning_rate": 0.0006,
+ "loss": 3.432781457901001,
+ "step": 6059
+ },
+ {
+ "epoch": 84.16775884665793,
+ "grad_norm": 0.22034308314323425,
+ "learning_rate": 0.0006,
+ "loss": 3.406602144241333,
+ "step": 6060
+ },
+ {
+ "epoch": 84.18173875054609,
+ "grad_norm": 0.2310352474451065,
+ "learning_rate": 0.0006,
+ "loss": 3.45137095451355,
+ "step": 6061
+ },
+ {
+ "epoch": 84.19571865443424,
+ "grad_norm": 0.22129112482070923,
+ "learning_rate": 0.0006,
+ "loss": 3.4401423931121826,
+ "step": 6062
+ },
+ {
+ "epoch": 84.20969855832242,
+ "grad_norm": 0.22799579799175262,
+ "learning_rate": 0.0006,
+ "loss": 3.4391798973083496,
+ "step": 6063
+ },
+ {
+ "epoch": 84.22367846221057,
+ "grad_norm": 0.22834676504135132,
+ "learning_rate": 0.0006,
+ "loss": 3.492427349090576,
+ "step": 6064
+ },
+ {
+ "epoch": 84.23765836609873,
+ "grad_norm": 0.22315837442874908,
+ "learning_rate": 0.0006,
+ "loss": 3.4242477416992188,
+ "step": 6065
+ },
+ {
+ "epoch": 84.2516382699869,
+ "grad_norm": 0.22605115175247192,
+ "learning_rate": 0.0006,
+ "loss": 3.441441059112549,
+ "step": 6066
+ },
+ {
+ "epoch": 84.26561817387505,
+ "grad_norm": 0.2410772442817688,
+ "learning_rate": 0.0006,
+ "loss": 3.4162003993988037,
+ "step": 6067
+ },
+ {
+ "epoch": 84.27959807776321,
+ "grad_norm": 0.23363634943962097,
+ "learning_rate": 0.0006,
+ "loss": 3.4367871284484863,
+ "step": 6068
+ },
+ {
+ "epoch": 84.29357798165138,
+ "grad_norm": 0.2501516342163086,
+ "learning_rate": 0.0006,
+ "loss": 3.4679744243621826,
+ "step": 6069
+ },
+ {
+ "epoch": 84.30755788553954,
+ "grad_norm": 0.2761887013912201,
+ "learning_rate": 0.0006,
+ "loss": 3.4481863975524902,
+ "step": 6070
+ },
+ {
+ "epoch": 84.3215377894277,
+ "grad_norm": 0.26753947138786316,
+ "learning_rate": 0.0006,
+ "loss": 3.492464065551758,
+ "step": 6071
+ },
+ {
+ "epoch": 84.33551769331586,
+ "grad_norm": 0.23492486774921417,
+ "learning_rate": 0.0006,
+ "loss": 3.4377055168151855,
+ "step": 6072
+ },
+ {
+ "epoch": 84.34949759720402,
+ "grad_norm": 0.22405743598937988,
+ "learning_rate": 0.0006,
+ "loss": 3.44317626953125,
+ "step": 6073
+ },
+ {
+ "epoch": 84.36347750109218,
+ "grad_norm": 0.262371689081192,
+ "learning_rate": 0.0006,
+ "loss": 3.445984363555908,
+ "step": 6074
+ },
+ {
+ "epoch": 84.37745740498035,
+ "grad_norm": 0.2874908745288849,
+ "learning_rate": 0.0006,
+ "loss": 3.455535411834717,
+ "step": 6075
+ },
+ {
+ "epoch": 84.3914373088685,
+ "grad_norm": 0.2813026010990143,
+ "learning_rate": 0.0006,
+ "loss": 3.450965404510498,
+ "step": 6076
+ },
+ {
+ "epoch": 84.40541721275666,
+ "grad_norm": 0.2511669099330902,
+ "learning_rate": 0.0006,
+ "loss": 3.4422781467437744,
+ "step": 6077
+ },
+ {
+ "epoch": 84.41939711664482,
+ "grad_norm": 0.24031679332256317,
+ "learning_rate": 0.0006,
+ "loss": 3.4646971225738525,
+ "step": 6078
+ },
+ {
+ "epoch": 84.43337702053299,
+ "grad_norm": 0.2375684231519699,
+ "learning_rate": 0.0006,
+ "loss": 3.404259204864502,
+ "step": 6079
+ },
+ {
+ "epoch": 84.44735692442114,
+ "grad_norm": 0.2297784835100174,
+ "learning_rate": 0.0006,
+ "loss": 3.4274559020996094,
+ "step": 6080
+ },
+ {
+ "epoch": 84.4613368283093,
+ "grad_norm": 0.22411473095417023,
+ "learning_rate": 0.0006,
+ "loss": 3.420492172241211,
+ "step": 6081
+ },
+ {
+ "epoch": 84.47531673219747,
+ "grad_norm": 0.23126399517059326,
+ "learning_rate": 0.0006,
+ "loss": 3.4440231323242188,
+ "step": 6082
+ },
+ {
+ "epoch": 84.48929663608563,
+ "grad_norm": 0.2578703761100769,
+ "learning_rate": 0.0006,
+ "loss": 3.419753074645996,
+ "step": 6083
+ },
+ {
+ "epoch": 84.50327653997378,
+ "grad_norm": 0.25254541635513306,
+ "learning_rate": 0.0006,
+ "loss": 3.4504146575927734,
+ "step": 6084
+ },
+ {
+ "epoch": 84.51725644386195,
+ "grad_norm": 0.22324225306510925,
+ "learning_rate": 0.0006,
+ "loss": 3.4860897064208984,
+ "step": 6085
+ },
+ {
+ "epoch": 84.53123634775011,
+ "grad_norm": 0.23084819316864014,
+ "learning_rate": 0.0006,
+ "loss": 3.4693355560302734,
+ "step": 6086
+ },
+ {
+ "epoch": 84.54521625163827,
+ "grad_norm": 0.23229891061782837,
+ "learning_rate": 0.0006,
+ "loss": 3.4350061416625977,
+ "step": 6087
+ },
+ {
+ "epoch": 84.55919615552644,
+ "grad_norm": 0.23634378612041473,
+ "learning_rate": 0.0006,
+ "loss": 3.425060272216797,
+ "step": 6088
+ },
+ {
+ "epoch": 84.57317605941459,
+ "grad_norm": 0.24133262038230896,
+ "learning_rate": 0.0006,
+ "loss": 3.420022487640381,
+ "step": 6089
+ },
+ {
+ "epoch": 84.58715596330275,
+ "grad_norm": 0.2206571102142334,
+ "learning_rate": 0.0006,
+ "loss": 3.4881091117858887,
+ "step": 6090
+ },
+ {
+ "epoch": 84.60113586719092,
+ "grad_norm": 0.21868985891342163,
+ "learning_rate": 0.0006,
+ "loss": 3.444207191467285,
+ "step": 6091
+ },
+ {
+ "epoch": 84.61511577107908,
+ "grad_norm": 0.21661551296710968,
+ "learning_rate": 0.0006,
+ "loss": 3.46708345413208,
+ "step": 6092
+ },
+ {
+ "epoch": 84.62909567496723,
+ "grad_norm": 0.2211335003376007,
+ "learning_rate": 0.0006,
+ "loss": 3.422534465789795,
+ "step": 6093
+ },
+ {
+ "epoch": 84.6430755788554,
+ "grad_norm": 0.23101121187210083,
+ "learning_rate": 0.0006,
+ "loss": 3.4558486938476562,
+ "step": 6094
+ },
+ {
+ "epoch": 84.65705548274356,
+ "grad_norm": 0.21324186027050018,
+ "learning_rate": 0.0006,
+ "loss": 3.488935708999634,
+ "step": 6095
+ },
+ {
+ "epoch": 84.67103538663171,
+ "grad_norm": 0.23262912034988403,
+ "learning_rate": 0.0006,
+ "loss": 3.455625057220459,
+ "step": 6096
+ },
+ {
+ "epoch": 84.68501529051987,
+ "grad_norm": 0.245137020945549,
+ "learning_rate": 0.0006,
+ "loss": 3.459805727005005,
+ "step": 6097
+ },
+ {
+ "epoch": 84.69899519440804,
+ "grad_norm": 0.24005620181560516,
+ "learning_rate": 0.0006,
+ "loss": 3.4524760246276855,
+ "step": 6098
+ },
+ {
+ "epoch": 84.7129750982962,
+ "grad_norm": 0.2383408397436142,
+ "learning_rate": 0.0006,
+ "loss": 3.482253074645996,
+ "step": 6099
+ },
+ {
+ "epoch": 84.72695500218435,
+ "grad_norm": 0.21188686788082123,
+ "learning_rate": 0.0006,
+ "loss": 3.4336321353912354,
+ "step": 6100
+ },
+ {
+ "epoch": 84.74093490607252,
+ "grad_norm": 0.20706120133399963,
+ "learning_rate": 0.0006,
+ "loss": 3.4603681564331055,
+ "step": 6101
+ },
+ {
+ "epoch": 84.75491480996068,
+ "grad_norm": 0.2089851349592209,
+ "learning_rate": 0.0006,
+ "loss": 3.433825969696045,
+ "step": 6102
+ },
+ {
+ "epoch": 84.76889471384884,
+ "grad_norm": 0.24237141013145447,
+ "learning_rate": 0.0006,
+ "loss": 3.4863271713256836,
+ "step": 6103
+ },
+ {
+ "epoch": 84.78287461773701,
+ "grad_norm": 0.24052679538726807,
+ "learning_rate": 0.0006,
+ "loss": 3.4620628356933594,
+ "step": 6104
+ },
+ {
+ "epoch": 84.79685452162516,
+ "grad_norm": 0.21260327100753784,
+ "learning_rate": 0.0006,
+ "loss": 3.4749603271484375,
+ "step": 6105
+ },
+ {
+ "epoch": 84.81083442551332,
+ "grad_norm": 0.21502383053302765,
+ "learning_rate": 0.0006,
+ "loss": 3.47800350189209,
+ "step": 6106
+ },
+ {
+ "epoch": 84.82481432940149,
+ "grad_norm": 0.2255013883113861,
+ "learning_rate": 0.0006,
+ "loss": 3.479379177093506,
+ "step": 6107
+ },
+ {
+ "epoch": 84.83879423328965,
+ "grad_norm": 0.21322280168533325,
+ "learning_rate": 0.0006,
+ "loss": 3.4761860370635986,
+ "step": 6108
+ },
+ {
+ "epoch": 84.8527741371778,
+ "grad_norm": 0.21868883073329926,
+ "learning_rate": 0.0006,
+ "loss": 3.4408018589019775,
+ "step": 6109
+ },
+ {
+ "epoch": 84.86675404106597,
+ "grad_norm": 0.24075059592723846,
+ "learning_rate": 0.0006,
+ "loss": 3.491424798965454,
+ "step": 6110
+ },
+ {
+ "epoch": 84.88073394495413,
+ "grad_norm": 0.22453387081623077,
+ "learning_rate": 0.0006,
+ "loss": 3.473700523376465,
+ "step": 6111
+ },
+ {
+ "epoch": 84.89471384884229,
+ "grad_norm": 0.21405141055583954,
+ "learning_rate": 0.0006,
+ "loss": 3.5045337677001953,
+ "step": 6112
+ },
+ {
+ "epoch": 84.90869375273044,
+ "grad_norm": 0.22792331874370575,
+ "learning_rate": 0.0006,
+ "loss": 3.459500312805176,
+ "step": 6113
+ },
+ {
+ "epoch": 84.92267365661861,
+ "grad_norm": 0.23756900429725647,
+ "learning_rate": 0.0006,
+ "loss": 3.4716384410858154,
+ "step": 6114
+ },
+ {
+ "epoch": 84.93665356050677,
+ "grad_norm": 0.23942020535469055,
+ "learning_rate": 0.0006,
+ "loss": 3.458301544189453,
+ "step": 6115
+ },
+ {
+ "epoch": 84.95063346439493,
+ "grad_norm": 0.2668362855911255,
+ "learning_rate": 0.0006,
+ "loss": 3.4793195724487305,
+ "step": 6116
+ },
+ {
+ "epoch": 84.9646133682831,
+ "grad_norm": 0.2655593454837799,
+ "learning_rate": 0.0006,
+ "loss": 3.461183547973633,
+ "step": 6117
+ },
+ {
+ "epoch": 84.97859327217125,
+ "grad_norm": 0.23327142000198364,
+ "learning_rate": 0.0006,
+ "loss": 3.488638401031494,
+ "step": 6118
+ },
+ {
+ "epoch": 84.99257317605941,
+ "grad_norm": 0.21170541644096375,
+ "learning_rate": 0.0006,
+ "loss": 3.4597835540771484,
+ "step": 6119
+ },
+ {
+ "epoch": 85.0,
+ "grad_norm": 0.25858765840530396,
+ "learning_rate": 0.0006,
+ "loss": 3.4496002197265625,
+ "step": 6120
+ },
+ {
+ "epoch": 85.0,
+ "eval_loss": 3.9907591342926025,
+ "eval_runtime": 46.7196,
+ "eval_samples_per_second": 52.269,
+ "eval_steps_per_second": 3.275,
+ "step": 6120
+ },
+ {
+ "epoch": 85.01397990388816,
+ "grad_norm": 0.25001025199890137,
+ "learning_rate": 0.0006,
+ "loss": 3.408668041229248,
+ "step": 6121
+ },
+ {
+ "epoch": 85.02795980777633,
+ "grad_norm": 0.27951815724372864,
+ "learning_rate": 0.0006,
+ "loss": 3.4662365913391113,
+ "step": 6122
+ },
+ {
+ "epoch": 85.04193971166448,
+ "grad_norm": 0.3308251202106476,
+ "learning_rate": 0.0006,
+ "loss": 3.445281982421875,
+ "step": 6123
+ },
+ {
+ "epoch": 85.05591961555264,
+ "grad_norm": 0.38616496324539185,
+ "learning_rate": 0.0006,
+ "loss": 3.420867443084717,
+ "step": 6124
+ },
+ {
+ "epoch": 85.06989951944081,
+ "grad_norm": 0.34203988313674927,
+ "learning_rate": 0.0006,
+ "loss": 3.4531023502349854,
+ "step": 6125
+ },
+ {
+ "epoch": 85.08387942332897,
+ "grad_norm": 0.2681678533554077,
+ "learning_rate": 0.0006,
+ "loss": 3.452749252319336,
+ "step": 6126
+ },
+ {
+ "epoch": 85.09785932721712,
+ "grad_norm": 0.3256039619445801,
+ "learning_rate": 0.0006,
+ "loss": 3.428740978240967,
+ "step": 6127
+ },
+ {
+ "epoch": 85.1118392311053,
+ "grad_norm": 0.35335347056388855,
+ "learning_rate": 0.0006,
+ "loss": 3.438882827758789,
+ "step": 6128
+ },
+ {
+ "epoch": 85.12581913499345,
+ "grad_norm": 0.3345780074596405,
+ "learning_rate": 0.0006,
+ "loss": 3.454054832458496,
+ "step": 6129
+ },
+ {
+ "epoch": 85.1397990388816,
+ "grad_norm": 0.26127031445503235,
+ "learning_rate": 0.0006,
+ "loss": 3.468048572540283,
+ "step": 6130
+ },
+ {
+ "epoch": 85.15377894276976,
+ "grad_norm": 0.24848037958145142,
+ "learning_rate": 0.0006,
+ "loss": 3.452026844024658,
+ "step": 6131
+ },
+ {
+ "epoch": 85.16775884665793,
+ "grad_norm": 0.23380406200885773,
+ "learning_rate": 0.0006,
+ "loss": 3.4506797790527344,
+ "step": 6132
+ },
+ {
+ "epoch": 85.18173875054609,
+ "grad_norm": 0.23879839479923248,
+ "learning_rate": 0.0006,
+ "loss": 3.451416492462158,
+ "step": 6133
+ },
+ {
+ "epoch": 85.19571865443424,
+ "grad_norm": 0.25148293375968933,
+ "learning_rate": 0.0006,
+ "loss": 3.4010143280029297,
+ "step": 6134
+ },
+ {
+ "epoch": 85.20969855832242,
+ "grad_norm": 0.22815518081188202,
+ "learning_rate": 0.0006,
+ "loss": 3.430312156677246,
+ "step": 6135
+ },
+ {
+ "epoch": 85.22367846221057,
+ "grad_norm": 0.22946542501449585,
+ "learning_rate": 0.0006,
+ "loss": 3.4514856338500977,
+ "step": 6136
+ },
+ {
+ "epoch": 85.23765836609873,
+ "grad_norm": 0.2776675522327423,
+ "learning_rate": 0.0006,
+ "loss": 3.4610185623168945,
+ "step": 6137
+ },
+ {
+ "epoch": 85.2516382699869,
+ "grad_norm": 0.2937948703765869,
+ "learning_rate": 0.0006,
+ "loss": 3.411609172821045,
+ "step": 6138
+ },
+ {
+ "epoch": 85.26561817387505,
+ "grad_norm": 0.25498732924461365,
+ "learning_rate": 0.0006,
+ "loss": 3.4253973960876465,
+ "step": 6139
+ },
+ {
+ "epoch": 85.27959807776321,
+ "grad_norm": 0.22892245650291443,
+ "learning_rate": 0.0006,
+ "loss": 3.4420440196990967,
+ "step": 6140
+ },
+ {
+ "epoch": 85.29357798165138,
+ "grad_norm": 0.28531017899513245,
+ "learning_rate": 0.0006,
+ "loss": 3.423523426055908,
+ "step": 6141
+ },
+ {
+ "epoch": 85.30755788553954,
+ "grad_norm": 0.27804628014564514,
+ "learning_rate": 0.0006,
+ "loss": 3.4334774017333984,
+ "step": 6142
+ },
+ {
+ "epoch": 85.3215377894277,
+ "grad_norm": 0.23773743212223053,
+ "learning_rate": 0.0006,
+ "loss": 3.430731773376465,
+ "step": 6143
+ },
+ {
+ "epoch": 85.33551769331586,
+ "grad_norm": 0.2544757127761841,
+ "learning_rate": 0.0006,
+ "loss": 3.434880495071411,
+ "step": 6144
+ },
+ {
+ "epoch": 85.34949759720402,
+ "grad_norm": 0.2462168037891388,
+ "learning_rate": 0.0006,
+ "loss": 3.4443912506103516,
+ "step": 6145
+ },
+ {
+ "epoch": 85.36347750109218,
+ "grad_norm": 0.2208261936903,
+ "learning_rate": 0.0006,
+ "loss": 3.428115129470825,
+ "step": 6146
+ },
+ {
+ "epoch": 85.37745740498035,
+ "grad_norm": 0.25137123465538025,
+ "learning_rate": 0.0006,
+ "loss": 3.419116973876953,
+ "step": 6147
+ },
+ {
+ "epoch": 85.3914373088685,
+ "grad_norm": 0.24375031888484955,
+ "learning_rate": 0.0006,
+ "loss": 3.451228141784668,
+ "step": 6148
+ },
+ {
+ "epoch": 85.40541721275666,
+ "grad_norm": 0.2252039909362793,
+ "learning_rate": 0.0006,
+ "loss": 3.4388835430145264,
+ "step": 6149
+ },
+ {
+ "epoch": 85.41939711664482,
+ "grad_norm": 0.23697529733181,
+ "learning_rate": 0.0006,
+ "loss": 3.447420597076416,
+ "step": 6150
+ },
+ {
+ "epoch": 85.43337702053299,
+ "grad_norm": 0.2558874189853668,
+ "learning_rate": 0.0006,
+ "loss": 3.4357810020446777,
+ "step": 6151
+ },
+ {
+ "epoch": 85.44735692442114,
+ "grad_norm": 0.27266883850097656,
+ "learning_rate": 0.0006,
+ "loss": 3.4142231941223145,
+ "step": 6152
+ },
+ {
+ "epoch": 85.4613368283093,
+ "grad_norm": 0.25111037492752075,
+ "learning_rate": 0.0006,
+ "loss": 3.444758892059326,
+ "step": 6153
+ },
+ {
+ "epoch": 85.47531673219747,
+ "grad_norm": 0.23968860507011414,
+ "learning_rate": 0.0006,
+ "loss": 3.4785890579223633,
+ "step": 6154
+ },
+ {
+ "epoch": 85.48929663608563,
+ "grad_norm": 0.25013360381126404,
+ "learning_rate": 0.0006,
+ "loss": 3.4348931312561035,
+ "step": 6155
+ },
+ {
+ "epoch": 85.50327653997378,
+ "grad_norm": 0.2417520433664322,
+ "learning_rate": 0.0006,
+ "loss": 3.468465805053711,
+ "step": 6156
+ },
+ {
+ "epoch": 85.51725644386195,
+ "grad_norm": 0.25971105694770813,
+ "learning_rate": 0.0006,
+ "loss": 3.45487117767334,
+ "step": 6157
+ },
+ {
+ "epoch": 85.53123634775011,
+ "grad_norm": 0.2513342797756195,
+ "learning_rate": 0.0006,
+ "loss": 3.4282164573669434,
+ "step": 6158
+ },
+ {
+ "epoch": 85.54521625163827,
+ "grad_norm": 0.26253822445869446,
+ "learning_rate": 0.0006,
+ "loss": 3.448113441467285,
+ "step": 6159
+ },
+ {
+ "epoch": 85.55919615552644,
+ "grad_norm": 0.2234651893377304,
+ "learning_rate": 0.0006,
+ "loss": 3.449909210205078,
+ "step": 6160
+ },
+ {
+ "epoch": 85.57317605941459,
+ "grad_norm": 0.2503814995288849,
+ "learning_rate": 0.0006,
+ "loss": 3.450794219970703,
+ "step": 6161
+ },
+ {
+ "epoch": 85.58715596330275,
+ "grad_norm": 0.3087758719921112,
+ "learning_rate": 0.0006,
+ "loss": 3.447343349456787,
+ "step": 6162
+ },
+ {
+ "epoch": 85.60113586719092,
+ "grad_norm": 0.3024158179759979,
+ "learning_rate": 0.0006,
+ "loss": 3.463745594024658,
+ "step": 6163
+ },
+ {
+ "epoch": 85.61511577107908,
+ "grad_norm": 0.2416113317012787,
+ "learning_rate": 0.0006,
+ "loss": 3.4399218559265137,
+ "step": 6164
+ },
+ {
+ "epoch": 85.62909567496723,
+ "grad_norm": 0.24341659247875214,
+ "learning_rate": 0.0006,
+ "loss": 3.434213399887085,
+ "step": 6165
+ },
+ {
+ "epoch": 85.6430755788554,
+ "grad_norm": 0.26014256477355957,
+ "learning_rate": 0.0006,
+ "loss": 3.472182273864746,
+ "step": 6166
+ },
+ {
+ "epoch": 85.65705548274356,
+ "grad_norm": 0.23963001370429993,
+ "learning_rate": 0.0006,
+ "loss": 3.469517230987549,
+ "step": 6167
+ },
+ {
+ "epoch": 85.67103538663171,
+ "grad_norm": 0.22674021124839783,
+ "learning_rate": 0.0006,
+ "loss": 3.479959011077881,
+ "step": 6168
+ },
+ {
+ "epoch": 85.68501529051987,
+ "grad_norm": 0.20710913836956024,
+ "learning_rate": 0.0006,
+ "loss": 3.480604887008667,
+ "step": 6169
+ },
+ {
+ "epoch": 85.69899519440804,
+ "grad_norm": 0.21589986979961395,
+ "learning_rate": 0.0006,
+ "loss": 3.469245672225952,
+ "step": 6170
+ },
+ {
+ "epoch": 85.7129750982962,
+ "grad_norm": 0.23213276267051697,
+ "learning_rate": 0.0006,
+ "loss": 3.4860196113586426,
+ "step": 6171
+ },
+ {
+ "epoch": 85.72695500218435,
+ "grad_norm": 0.2420436143875122,
+ "learning_rate": 0.0006,
+ "loss": 3.4592981338500977,
+ "step": 6172
+ },
+ {
+ "epoch": 85.74093490607252,
+ "grad_norm": 0.238332599401474,
+ "learning_rate": 0.0006,
+ "loss": 3.4611167907714844,
+ "step": 6173
+ },
+ {
+ "epoch": 85.75491480996068,
+ "grad_norm": 0.24084614217281342,
+ "learning_rate": 0.0006,
+ "loss": 3.453734874725342,
+ "step": 6174
+ },
+ {
+ "epoch": 85.76889471384884,
+ "grad_norm": 0.24251829087734222,
+ "learning_rate": 0.0006,
+ "loss": 3.4667110443115234,
+ "step": 6175
+ },
+ {
+ "epoch": 85.78287461773701,
+ "grad_norm": 0.2444705069065094,
+ "learning_rate": 0.0006,
+ "loss": 3.4690022468566895,
+ "step": 6176
+ },
+ {
+ "epoch": 85.79685452162516,
+ "grad_norm": 0.2430824637413025,
+ "learning_rate": 0.0006,
+ "loss": 3.4224982261657715,
+ "step": 6177
+ },
+ {
+ "epoch": 85.81083442551332,
+ "grad_norm": 0.2261204868555069,
+ "learning_rate": 0.0006,
+ "loss": 3.438565731048584,
+ "step": 6178
+ },
+ {
+ "epoch": 85.82481432940149,
+ "grad_norm": 0.24399994313716888,
+ "learning_rate": 0.0006,
+ "loss": 3.4490773677825928,
+ "step": 6179
+ },
+ {
+ "epoch": 85.83879423328965,
+ "grad_norm": 0.2316661775112152,
+ "learning_rate": 0.0006,
+ "loss": 3.4330191612243652,
+ "step": 6180
+ },
+ {
+ "epoch": 85.8527741371778,
+ "grad_norm": 0.2188100963830948,
+ "learning_rate": 0.0006,
+ "loss": 3.4233832359313965,
+ "step": 6181
+ },
+ {
+ "epoch": 85.86675404106597,
+ "grad_norm": 0.24287547171115875,
+ "learning_rate": 0.0006,
+ "loss": 3.48030948638916,
+ "step": 6182
+ },
+ {
+ "epoch": 85.88073394495413,
+ "grad_norm": 0.24130523204803467,
+ "learning_rate": 0.0006,
+ "loss": 3.4757492542266846,
+ "step": 6183
+ },
+ {
+ "epoch": 85.89471384884229,
+ "grad_norm": 0.2325134128332138,
+ "learning_rate": 0.0006,
+ "loss": 3.4519848823547363,
+ "step": 6184
+ },
+ {
+ "epoch": 85.90869375273044,
+ "grad_norm": 0.23389047384262085,
+ "learning_rate": 0.0006,
+ "loss": 3.450676679611206,
+ "step": 6185
+ },
+ {
+ "epoch": 85.92267365661861,
+ "grad_norm": 0.2409949004650116,
+ "learning_rate": 0.0006,
+ "loss": 3.466392993927002,
+ "step": 6186
+ },
+ {
+ "epoch": 85.93665356050677,
+ "grad_norm": 0.2111821174621582,
+ "learning_rate": 0.0006,
+ "loss": 3.4553070068359375,
+ "step": 6187
+ },
+ {
+ "epoch": 85.95063346439493,
+ "grad_norm": 0.22436438500881195,
+ "learning_rate": 0.0006,
+ "loss": 3.445744752883911,
+ "step": 6188
+ },
+ {
+ "epoch": 85.9646133682831,
+ "grad_norm": 0.26781001687049866,
+ "learning_rate": 0.0006,
+ "loss": 3.482301712036133,
+ "step": 6189
+ },
+ {
+ "epoch": 85.97859327217125,
+ "grad_norm": 0.2733628749847412,
+ "learning_rate": 0.0006,
+ "loss": 3.4652910232543945,
+ "step": 6190
+ },
+ {
+ "epoch": 85.99257317605941,
+ "grad_norm": 0.25800710916519165,
+ "learning_rate": 0.0006,
+ "loss": 3.4839513301849365,
+ "step": 6191
+ },
+ {
+ "epoch": 86.0,
+ "grad_norm": 0.26130056381225586,
+ "learning_rate": 0.0006,
+ "loss": 3.4895389080047607,
+ "step": 6192
+ },
+ {
+ "epoch": 86.0,
+ "eval_loss": 4.000945568084717,
+ "eval_runtime": 46.0157,
+ "eval_samples_per_second": 53.069,
+ "eval_steps_per_second": 3.325,
+ "step": 6192
+ },
+ {
+ "epoch": 86.01397990388816,
+ "grad_norm": 0.23707960546016693,
+ "learning_rate": 0.0006,
+ "loss": 3.4757728576660156,
+ "step": 6193
+ },
+ {
+ "epoch": 86.02795980777633,
+ "grad_norm": 0.2764144241809845,
+ "learning_rate": 0.0006,
+ "loss": 3.42104434967041,
+ "step": 6194
+ },
+ {
+ "epoch": 86.04193971166448,
+ "grad_norm": 0.35273146629333496,
+ "learning_rate": 0.0006,
+ "loss": 3.4807112216949463,
+ "step": 6195
+ },
+ {
+ "epoch": 86.05591961555264,
+ "grad_norm": 0.3258572220802307,
+ "learning_rate": 0.0006,
+ "loss": 3.403010368347168,
+ "step": 6196
+ },
+ {
+ "epoch": 86.06989951944081,
+ "grad_norm": 0.24783624708652496,
+ "learning_rate": 0.0006,
+ "loss": 3.4262008666992188,
+ "step": 6197
+ },
+ {
+ "epoch": 86.08387942332897,
+ "grad_norm": 0.2660251259803772,
+ "learning_rate": 0.0006,
+ "loss": 3.4516983032226562,
+ "step": 6198
+ },
+ {
+ "epoch": 86.09785932721712,
+ "grad_norm": 0.3270852863788605,
+ "learning_rate": 0.0006,
+ "loss": 3.389641761779785,
+ "step": 6199
+ },
+ {
+ "epoch": 86.1118392311053,
+ "grad_norm": 0.2954437732696533,
+ "learning_rate": 0.0006,
+ "loss": 3.4136974811553955,
+ "step": 6200
+ },
+ {
+ "epoch": 86.12581913499345,
+ "grad_norm": 0.2529906630516052,
+ "learning_rate": 0.0006,
+ "loss": 3.460862636566162,
+ "step": 6201
+ },
+ {
+ "epoch": 86.1397990388816,
+ "grad_norm": 0.26711413264274597,
+ "learning_rate": 0.0006,
+ "loss": 3.4429545402526855,
+ "step": 6202
+ },
+ {
+ "epoch": 86.15377894276976,
+ "grad_norm": 0.2965209484100342,
+ "learning_rate": 0.0006,
+ "loss": 3.4389548301696777,
+ "step": 6203
+ },
+ {
+ "epoch": 86.16775884665793,
+ "grad_norm": 0.22617623209953308,
+ "learning_rate": 0.0006,
+ "loss": 3.4105193614959717,
+ "step": 6204
+ },
+ {
+ "epoch": 86.18173875054609,
+ "grad_norm": 0.3065163791179657,
+ "learning_rate": 0.0006,
+ "loss": 3.4296300411224365,
+ "step": 6205
+ },
+ {
+ "epoch": 86.19571865443424,
+ "grad_norm": 0.3704215884208679,
+ "learning_rate": 0.0006,
+ "loss": 3.4289116859436035,
+ "step": 6206
+ },
+ {
+ "epoch": 86.20969855832242,
+ "grad_norm": 0.31153222918510437,
+ "learning_rate": 0.0006,
+ "loss": 3.4390859603881836,
+ "step": 6207
+ },
+ {
+ "epoch": 86.22367846221057,
+ "grad_norm": 0.22702480852603912,
+ "learning_rate": 0.0006,
+ "loss": 3.383817672729492,
+ "step": 6208
+ },
+ {
+ "epoch": 86.23765836609873,
+ "grad_norm": 0.28542056679725647,
+ "learning_rate": 0.0006,
+ "loss": 3.4279141426086426,
+ "step": 6209
+ },
+ {
+ "epoch": 86.2516382699869,
+ "grad_norm": 0.3165401816368103,
+ "learning_rate": 0.0006,
+ "loss": 3.4489288330078125,
+ "step": 6210
+ },
+ {
+ "epoch": 86.26561817387505,
+ "grad_norm": 0.2535671293735504,
+ "learning_rate": 0.0006,
+ "loss": 3.4294838905334473,
+ "step": 6211
+ },
+ {
+ "epoch": 86.27959807776321,
+ "grad_norm": 0.22173726558685303,
+ "learning_rate": 0.0006,
+ "loss": 3.426486015319824,
+ "step": 6212
+ },
+ {
+ "epoch": 86.29357798165138,
+ "grad_norm": 0.2316059023141861,
+ "learning_rate": 0.0006,
+ "loss": 3.4588875770568848,
+ "step": 6213
+ },
+ {
+ "epoch": 86.30755788553954,
+ "grad_norm": 0.27897709608078003,
+ "learning_rate": 0.0006,
+ "loss": 3.4686155319213867,
+ "step": 6214
+ },
+ {
+ "epoch": 86.3215377894277,
+ "grad_norm": 0.25086233019828796,
+ "learning_rate": 0.0006,
+ "loss": 3.446758270263672,
+ "step": 6215
+ },
+ {
+ "epoch": 86.33551769331586,
+ "grad_norm": 0.23055854439735413,
+ "learning_rate": 0.0006,
+ "loss": 3.4350295066833496,
+ "step": 6216
+ },
+ {
+ "epoch": 86.34949759720402,
+ "grad_norm": 0.23594850301742554,
+ "learning_rate": 0.0006,
+ "loss": 3.4460220336914062,
+ "step": 6217
+ },
+ {
+ "epoch": 86.36347750109218,
+ "grad_norm": 0.23999659717082977,
+ "learning_rate": 0.0006,
+ "loss": 3.453679084777832,
+ "step": 6218
+ },
+ {
+ "epoch": 86.37745740498035,
+ "grad_norm": 0.22812359035015106,
+ "learning_rate": 0.0006,
+ "loss": 3.4583206176757812,
+ "step": 6219
+ },
+ {
+ "epoch": 86.3914373088685,
+ "grad_norm": 0.2186255306005478,
+ "learning_rate": 0.0006,
+ "loss": 3.4447624683380127,
+ "step": 6220
+ },
+ {
+ "epoch": 86.40541721275666,
+ "grad_norm": 0.2433556765317917,
+ "learning_rate": 0.0006,
+ "loss": 3.4328105449676514,
+ "step": 6221
+ },
+ {
+ "epoch": 86.41939711664482,
+ "grad_norm": 0.2386074811220169,
+ "learning_rate": 0.0006,
+ "loss": 3.4535934925079346,
+ "step": 6222
+ },
+ {
+ "epoch": 86.43337702053299,
+ "grad_norm": 0.20723499357700348,
+ "learning_rate": 0.0006,
+ "loss": 3.450345516204834,
+ "step": 6223
+ },
+ {
+ "epoch": 86.44735692442114,
+ "grad_norm": 0.22816963493824005,
+ "learning_rate": 0.0006,
+ "loss": 3.423295497894287,
+ "step": 6224
+ },
+ {
+ "epoch": 86.4613368283093,
+ "grad_norm": 0.22962307929992676,
+ "learning_rate": 0.0006,
+ "loss": 3.45308256149292,
+ "step": 6225
+ },
+ {
+ "epoch": 86.47531673219747,
+ "grad_norm": 0.2421693354845047,
+ "learning_rate": 0.0006,
+ "loss": 3.426295757293701,
+ "step": 6226
+ },
+ {
+ "epoch": 86.48929663608563,
+ "grad_norm": 0.24205337464809418,
+ "learning_rate": 0.0006,
+ "loss": 3.462637424468994,
+ "step": 6227
+ },
+ {
+ "epoch": 86.50327653997378,
+ "grad_norm": 0.22262844443321228,
+ "learning_rate": 0.0006,
+ "loss": 3.4503636360168457,
+ "step": 6228
+ },
+ {
+ "epoch": 86.51725644386195,
+ "grad_norm": 0.2236059308052063,
+ "learning_rate": 0.0006,
+ "loss": 3.4362423419952393,
+ "step": 6229
+ },
+ {
+ "epoch": 86.53123634775011,
+ "grad_norm": 0.2580125033855438,
+ "learning_rate": 0.0006,
+ "loss": 3.4705324172973633,
+ "step": 6230
+ },
+ {
+ "epoch": 86.54521625163827,
+ "grad_norm": 0.22285981476306915,
+ "learning_rate": 0.0006,
+ "loss": 3.406367301940918,
+ "step": 6231
+ },
+ {
+ "epoch": 86.55919615552644,
+ "grad_norm": 0.2187017947435379,
+ "learning_rate": 0.0006,
+ "loss": 3.471634864807129,
+ "step": 6232
+ },
+ {
+ "epoch": 86.57317605941459,
+ "grad_norm": 0.23384198546409607,
+ "learning_rate": 0.0006,
+ "loss": 3.4251890182495117,
+ "step": 6233
+ },
+ {
+ "epoch": 86.58715596330275,
+ "grad_norm": 0.22788184881210327,
+ "learning_rate": 0.0006,
+ "loss": 3.445756673812866,
+ "step": 6234
+ },
+ {
+ "epoch": 86.60113586719092,
+ "grad_norm": 0.2567905783653259,
+ "learning_rate": 0.0006,
+ "loss": 3.5046191215515137,
+ "step": 6235
+ },
+ {
+ "epoch": 86.61511577107908,
+ "grad_norm": 0.2762927711009979,
+ "learning_rate": 0.0006,
+ "loss": 3.4604568481445312,
+ "step": 6236
+ },
+ {
+ "epoch": 86.62909567496723,
+ "grad_norm": 0.23241275548934937,
+ "learning_rate": 0.0006,
+ "loss": 3.4507508277893066,
+ "step": 6237
+ },
+ {
+ "epoch": 86.6430755788554,
+ "grad_norm": 0.20948687195777893,
+ "learning_rate": 0.0006,
+ "loss": 3.427971601486206,
+ "step": 6238
+ },
+ {
+ "epoch": 86.65705548274356,
+ "grad_norm": 0.22805556654930115,
+ "learning_rate": 0.0006,
+ "loss": 3.430675506591797,
+ "step": 6239
+ },
+ {
+ "epoch": 86.67103538663171,
+ "grad_norm": 0.23048850893974304,
+ "learning_rate": 0.0006,
+ "loss": 3.4266695976257324,
+ "step": 6240
+ },
+ {
+ "epoch": 86.68501529051987,
+ "grad_norm": 0.2140568345785141,
+ "learning_rate": 0.0006,
+ "loss": 3.4591073989868164,
+ "step": 6241
+ },
+ {
+ "epoch": 86.69899519440804,
+ "grad_norm": 0.21846334636211395,
+ "learning_rate": 0.0006,
+ "loss": 3.4366419315338135,
+ "step": 6242
+ },
+ {
+ "epoch": 86.7129750982962,
+ "grad_norm": 0.2556895911693573,
+ "learning_rate": 0.0006,
+ "loss": 3.489287853240967,
+ "step": 6243
+ },
+ {
+ "epoch": 86.72695500218435,
+ "grad_norm": 0.2661151587963104,
+ "learning_rate": 0.0006,
+ "loss": 3.458925485610962,
+ "step": 6244
+ },
+ {
+ "epoch": 86.74093490607252,
+ "grad_norm": 0.25377899408340454,
+ "learning_rate": 0.0006,
+ "loss": 3.467498779296875,
+ "step": 6245
+ },
+ {
+ "epoch": 86.75491480996068,
+ "grad_norm": 0.22298671305179596,
+ "learning_rate": 0.0006,
+ "loss": 3.435739517211914,
+ "step": 6246
+ },
+ {
+ "epoch": 86.76889471384884,
+ "grad_norm": 0.21926400065422058,
+ "learning_rate": 0.0006,
+ "loss": 3.470432996749878,
+ "step": 6247
+ },
+ {
+ "epoch": 86.78287461773701,
+ "grad_norm": 0.25376564264297485,
+ "learning_rate": 0.0006,
+ "loss": 3.485386371612549,
+ "step": 6248
+ },
+ {
+ "epoch": 86.79685452162516,
+ "grad_norm": 0.2282877415418625,
+ "learning_rate": 0.0006,
+ "loss": 3.480099678039551,
+ "step": 6249
+ },
+ {
+ "epoch": 86.81083442551332,
+ "grad_norm": 0.22524423897266388,
+ "learning_rate": 0.0006,
+ "loss": 3.4317450523376465,
+ "step": 6250
+ },
+ {
+ "epoch": 86.82481432940149,
+ "grad_norm": 0.19947095215320587,
+ "learning_rate": 0.0006,
+ "loss": 3.4561359882354736,
+ "step": 6251
+ },
+ {
+ "epoch": 86.83879423328965,
+ "grad_norm": 0.225057914853096,
+ "learning_rate": 0.0006,
+ "loss": 3.4447779655456543,
+ "step": 6252
+ },
+ {
+ "epoch": 86.8527741371778,
+ "grad_norm": 0.23058123886585236,
+ "learning_rate": 0.0006,
+ "loss": 3.4552550315856934,
+ "step": 6253
+ },
+ {
+ "epoch": 86.86675404106597,
+ "grad_norm": 0.22090156376361847,
+ "learning_rate": 0.0006,
+ "loss": 3.462661027908325,
+ "step": 6254
+ },
+ {
+ "epoch": 86.88073394495413,
+ "grad_norm": 0.214723140001297,
+ "learning_rate": 0.0006,
+ "loss": 3.4558322429656982,
+ "step": 6255
+ },
+ {
+ "epoch": 86.89471384884229,
+ "grad_norm": 0.22168223559856415,
+ "learning_rate": 0.0006,
+ "loss": 3.441250801086426,
+ "step": 6256
+ },
+ {
+ "epoch": 86.90869375273044,
+ "grad_norm": 0.21010933816432953,
+ "learning_rate": 0.0006,
+ "loss": 3.4355521202087402,
+ "step": 6257
+ },
+ {
+ "epoch": 86.92267365661861,
+ "grad_norm": 0.21967823803424835,
+ "learning_rate": 0.0006,
+ "loss": 3.4233269691467285,
+ "step": 6258
+ },
+ {
+ "epoch": 86.93665356050677,
+ "grad_norm": 0.22320227324962616,
+ "learning_rate": 0.0006,
+ "loss": 3.4550540447235107,
+ "step": 6259
+ },
+ {
+ "epoch": 86.95063346439493,
+ "grad_norm": 0.22877629101276398,
+ "learning_rate": 0.0006,
+ "loss": 3.46563720703125,
+ "step": 6260
+ },
+ {
+ "epoch": 86.9646133682831,
+ "grad_norm": 0.2401096075773239,
+ "learning_rate": 0.0006,
+ "loss": 3.463639259338379,
+ "step": 6261
+ },
+ {
+ "epoch": 86.97859327217125,
+ "grad_norm": 0.21287918090820312,
+ "learning_rate": 0.0006,
+ "loss": 3.4746999740600586,
+ "step": 6262
+ },
+ {
+ "epoch": 86.99257317605941,
+ "grad_norm": 0.22452335059642792,
+ "learning_rate": 0.0006,
+ "loss": 3.467658281326294,
+ "step": 6263
+ },
+ {
+ "epoch": 87.0,
+ "grad_norm": 0.26455584168434143,
+ "learning_rate": 0.0006,
+ "loss": 3.4675745964050293,
+ "step": 6264
+ },
+ {
+ "epoch": 87.0,
+ "eval_loss": 3.9968631267547607,
+ "eval_runtime": 46.323,
+ "eval_samples_per_second": 52.717,
+ "eval_steps_per_second": 3.303,
+ "step": 6264
+ },
+ {
+ "epoch": 87.01397990388816,
+ "grad_norm": 0.2470027059316635,
+ "learning_rate": 0.0006,
+ "loss": 3.406507730484009,
+ "step": 6265
+ },
+ {
+ "epoch": 87.02795980777633,
+ "grad_norm": 0.2460237443447113,
+ "learning_rate": 0.0006,
+ "loss": 3.411306381225586,
+ "step": 6266
+ },
+ {
+ "epoch": 87.04193971166448,
+ "grad_norm": 0.27289488911628723,
+ "learning_rate": 0.0006,
+ "loss": 3.4275155067443848,
+ "step": 6267
+ },
+ {
+ "epoch": 87.05591961555264,
+ "grad_norm": 0.2657255232334137,
+ "learning_rate": 0.0006,
+ "loss": 3.4513368606567383,
+ "step": 6268
+ },
+ {
+ "epoch": 87.06989951944081,
+ "grad_norm": 0.2561056613922119,
+ "learning_rate": 0.0006,
+ "loss": 3.4209394454956055,
+ "step": 6269
+ },
+ {
+ "epoch": 87.08387942332897,
+ "grad_norm": 0.24750930070877075,
+ "learning_rate": 0.0006,
+ "loss": 3.442840576171875,
+ "step": 6270
+ },
+ {
+ "epoch": 87.09785932721712,
+ "grad_norm": 0.24194562435150146,
+ "learning_rate": 0.0006,
+ "loss": 3.432831287384033,
+ "step": 6271
+ },
+ {
+ "epoch": 87.1118392311053,
+ "grad_norm": 0.24561241269111633,
+ "learning_rate": 0.0006,
+ "loss": 3.41995906829834,
+ "step": 6272
+ },
+ {
+ "epoch": 87.12581913499345,
+ "grad_norm": 0.28488844633102417,
+ "learning_rate": 0.0006,
+ "loss": 3.4203033447265625,
+ "step": 6273
+ },
+ {
+ "epoch": 87.1397990388816,
+ "grad_norm": 0.2719418406486511,
+ "learning_rate": 0.0006,
+ "loss": 3.4112062454223633,
+ "step": 6274
+ },
+ {
+ "epoch": 87.15377894276976,
+ "grad_norm": 0.24953287839889526,
+ "learning_rate": 0.0006,
+ "loss": 3.4096338748931885,
+ "step": 6275
+ },
+ {
+ "epoch": 87.16775884665793,
+ "grad_norm": 0.23657488822937012,
+ "learning_rate": 0.0006,
+ "loss": 3.4253625869750977,
+ "step": 6276
+ },
+ {
+ "epoch": 87.18173875054609,
+ "grad_norm": 0.23536205291748047,
+ "learning_rate": 0.0006,
+ "loss": 3.417539596557617,
+ "step": 6277
+ },
+ {
+ "epoch": 87.19571865443424,
+ "grad_norm": 0.2406543642282486,
+ "learning_rate": 0.0006,
+ "loss": 3.4071755409240723,
+ "step": 6278
+ },
+ {
+ "epoch": 87.20969855832242,
+ "grad_norm": 0.2562157213687897,
+ "learning_rate": 0.0006,
+ "loss": 3.4041831493377686,
+ "step": 6279
+ },
+ {
+ "epoch": 87.22367846221057,
+ "grad_norm": 0.2869356870651245,
+ "learning_rate": 0.0006,
+ "loss": 3.414750576019287,
+ "step": 6280
+ },
+ {
+ "epoch": 87.23765836609873,
+ "grad_norm": 0.27232855558395386,
+ "learning_rate": 0.0006,
+ "loss": 3.407370090484619,
+ "step": 6281
+ },
+ {
+ "epoch": 87.2516382699869,
+ "grad_norm": 0.2774076759815216,
+ "learning_rate": 0.0006,
+ "loss": 3.4218215942382812,
+ "step": 6282
+ },
+ {
+ "epoch": 87.26561817387505,
+ "grad_norm": 0.30042508244514465,
+ "learning_rate": 0.0006,
+ "loss": 3.4334588050842285,
+ "step": 6283
+ },
+ {
+ "epoch": 87.27959807776321,
+ "grad_norm": 0.2553543448448181,
+ "learning_rate": 0.0006,
+ "loss": 3.4333605766296387,
+ "step": 6284
+ },
+ {
+ "epoch": 87.29357798165138,
+ "grad_norm": 0.2525957226753235,
+ "learning_rate": 0.0006,
+ "loss": 3.4196009635925293,
+ "step": 6285
+ },
+ {
+ "epoch": 87.30755788553954,
+ "grad_norm": 0.24260185658931732,
+ "learning_rate": 0.0006,
+ "loss": 3.4140827655792236,
+ "step": 6286
+ },
+ {
+ "epoch": 87.3215377894277,
+ "grad_norm": 0.22283563017845154,
+ "learning_rate": 0.0006,
+ "loss": 3.444605827331543,
+ "step": 6287
+ },
+ {
+ "epoch": 87.33551769331586,
+ "grad_norm": 0.235158771276474,
+ "learning_rate": 0.0006,
+ "loss": 3.431881904602051,
+ "step": 6288
+ },
+ {
+ "epoch": 87.34949759720402,
+ "grad_norm": 0.2347733974456787,
+ "learning_rate": 0.0006,
+ "loss": 3.428152561187744,
+ "step": 6289
+ },
+ {
+ "epoch": 87.36347750109218,
+ "grad_norm": 0.2563766837120056,
+ "learning_rate": 0.0006,
+ "loss": 3.4577133655548096,
+ "step": 6290
+ },
+ {
+ "epoch": 87.37745740498035,
+ "grad_norm": 0.2618260681629181,
+ "learning_rate": 0.0006,
+ "loss": 3.4267096519470215,
+ "step": 6291
+ },
+ {
+ "epoch": 87.3914373088685,
+ "grad_norm": 0.25793492794036865,
+ "learning_rate": 0.0006,
+ "loss": 3.4507100582122803,
+ "step": 6292
+ },
+ {
+ "epoch": 87.40541721275666,
+ "grad_norm": 0.25354278087615967,
+ "learning_rate": 0.0006,
+ "loss": 3.4111928939819336,
+ "step": 6293
+ },
+ {
+ "epoch": 87.41939711664482,
+ "grad_norm": 0.2546374201774597,
+ "learning_rate": 0.0006,
+ "loss": 3.4853005409240723,
+ "step": 6294
+ },
+ {
+ "epoch": 87.43337702053299,
+ "grad_norm": 0.22910001873970032,
+ "learning_rate": 0.0006,
+ "loss": 3.46594500541687,
+ "step": 6295
+ },
+ {
+ "epoch": 87.44735692442114,
+ "grad_norm": 0.26341190934181213,
+ "learning_rate": 0.0006,
+ "loss": 3.448117733001709,
+ "step": 6296
+ },
+ {
+ "epoch": 87.4613368283093,
+ "grad_norm": 0.24096941947937012,
+ "learning_rate": 0.0006,
+ "loss": 3.4500057697296143,
+ "step": 6297
+ },
+ {
+ "epoch": 87.47531673219747,
+ "grad_norm": 0.22930867969989777,
+ "learning_rate": 0.0006,
+ "loss": 3.4056637287139893,
+ "step": 6298
+ },
+ {
+ "epoch": 87.48929663608563,
+ "grad_norm": 0.24585163593292236,
+ "learning_rate": 0.0006,
+ "loss": 3.443779945373535,
+ "step": 6299
+ },
+ {
+ "epoch": 87.50327653997378,
+ "grad_norm": 0.2679557204246521,
+ "learning_rate": 0.0006,
+ "loss": 3.4453015327453613,
+ "step": 6300
+ },
+ {
+ "epoch": 87.51725644386195,
+ "grad_norm": 0.2750099301338196,
+ "learning_rate": 0.0006,
+ "loss": 3.4492931365966797,
+ "step": 6301
+ },
+ {
+ "epoch": 87.53123634775011,
+ "grad_norm": 0.2397976517677307,
+ "learning_rate": 0.0006,
+ "loss": 3.4672493934631348,
+ "step": 6302
+ },
+ {
+ "epoch": 87.54521625163827,
+ "grad_norm": 0.2328847199678421,
+ "learning_rate": 0.0006,
+ "loss": 3.4675941467285156,
+ "step": 6303
+ },
+ {
+ "epoch": 87.55919615552644,
+ "grad_norm": 0.2174302190542221,
+ "learning_rate": 0.0006,
+ "loss": 3.4673750400543213,
+ "step": 6304
+ },
+ {
+ "epoch": 87.57317605941459,
+ "grad_norm": 0.2191520780324936,
+ "learning_rate": 0.0006,
+ "loss": 3.447082042694092,
+ "step": 6305
+ },
+ {
+ "epoch": 87.58715596330275,
+ "grad_norm": 0.221266508102417,
+ "learning_rate": 0.0006,
+ "loss": 3.4626669883728027,
+ "step": 6306
+ },
+ {
+ "epoch": 87.60113586719092,
+ "grad_norm": 0.23890595138072968,
+ "learning_rate": 0.0006,
+ "loss": 3.4423880577087402,
+ "step": 6307
+ },
+ {
+ "epoch": 87.61511577107908,
+ "grad_norm": 0.2518463730812073,
+ "learning_rate": 0.0006,
+ "loss": 3.444969415664673,
+ "step": 6308
+ },
+ {
+ "epoch": 87.62909567496723,
+ "grad_norm": 0.26311877369880676,
+ "learning_rate": 0.0006,
+ "loss": 3.431830406188965,
+ "step": 6309
+ },
+ {
+ "epoch": 87.6430755788554,
+ "grad_norm": 0.22257472574710846,
+ "learning_rate": 0.0006,
+ "loss": 3.4477615356445312,
+ "step": 6310
+ },
+ {
+ "epoch": 87.65705548274356,
+ "grad_norm": 0.20058895647525787,
+ "learning_rate": 0.0006,
+ "loss": 3.4231035709381104,
+ "step": 6311
+ },
+ {
+ "epoch": 87.67103538663171,
+ "grad_norm": 0.25480031967163086,
+ "learning_rate": 0.0006,
+ "loss": 3.455605983734131,
+ "step": 6312
+ },
+ {
+ "epoch": 87.68501529051987,
+ "grad_norm": 0.281009703874588,
+ "learning_rate": 0.0006,
+ "loss": 3.4484899044036865,
+ "step": 6313
+ },
+ {
+ "epoch": 87.69899519440804,
+ "grad_norm": 0.2769845724105835,
+ "learning_rate": 0.0006,
+ "loss": 3.4509403705596924,
+ "step": 6314
+ },
+ {
+ "epoch": 87.7129750982962,
+ "grad_norm": 0.25785791873931885,
+ "learning_rate": 0.0006,
+ "loss": 3.4717955589294434,
+ "step": 6315
+ },
+ {
+ "epoch": 87.72695500218435,
+ "grad_norm": 0.2630847990512848,
+ "learning_rate": 0.0006,
+ "loss": 3.489973545074463,
+ "step": 6316
+ },
+ {
+ "epoch": 87.74093490607252,
+ "grad_norm": 0.2828741669654846,
+ "learning_rate": 0.0006,
+ "loss": 3.4274351596832275,
+ "step": 6317
+ },
+ {
+ "epoch": 87.75491480996068,
+ "grad_norm": 0.26448315382003784,
+ "learning_rate": 0.0006,
+ "loss": 3.439527988433838,
+ "step": 6318
+ },
+ {
+ "epoch": 87.76889471384884,
+ "grad_norm": 0.2555212080478668,
+ "learning_rate": 0.0006,
+ "loss": 3.476854085922241,
+ "step": 6319
+ },
+ {
+ "epoch": 87.78287461773701,
+ "grad_norm": 0.2586565911769867,
+ "learning_rate": 0.0006,
+ "loss": 3.4791836738586426,
+ "step": 6320
+ },
+ {
+ "epoch": 87.79685452162516,
+ "grad_norm": 0.24381688237190247,
+ "learning_rate": 0.0006,
+ "loss": 3.4730138778686523,
+ "step": 6321
+ },
+ {
+ "epoch": 87.81083442551332,
+ "grad_norm": 0.24554914236068726,
+ "learning_rate": 0.0006,
+ "loss": 3.466851234436035,
+ "step": 6322
+ },
+ {
+ "epoch": 87.82481432940149,
+ "grad_norm": 0.2559501826763153,
+ "learning_rate": 0.0006,
+ "loss": 3.4899802207946777,
+ "step": 6323
+ },
+ {
+ "epoch": 87.83879423328965,
+ "grad_norm": 0.24709442257881165,
+ "learning_rate": 0.0006,
+ "loss": 3.462717294692993,
+ "step": 6324
+ },
+ {
+ "epoch": 87.8527741371778,
+ "grad_norm": 0.238383486866951,
+ "learning_rate": 0.0006,
+ "loss": 3.4490647315979004,
+ "step": 6325
+ },
+ {
+ "epoch": 87.86675404106597,
+ "grad_norm": 0.25038403272628784,
+ "learning_rate": 0.0006,
+ "loss": 3.4700093269348145,
+ "step": 6326
+ },
+ {
+ "epoch": 87.88073394495413,
+ "grad_norm": 0.25541093945503235,
+ "learning_rate": 0.0006,
+ "loss": 3.4632275104522705,
+ "step": 6327
+ },
+ {
+ "epoch": 87.89471384884229,
+ "grad_norm": 0.27114391326904297,
+ "learning_rate": 0.0006,
+ "loss": 3.4618139266967773,
+ "step": 6328
+ },
+ {
+ "epoch": 87.90869375273044,
+ "grad_norm": 0.23148465156555176,
+ "learning_rate": 0.0006,
+ "loss": 3.438594341278076,
+ "step": 6329
+ },
+ {
+ "epoch": 87.92267365661861,
+ "grad_norm": 0.2270335704088211,
+ "learning_rate": 0.0006,
+ "loss": 3.4554107189178467,
+ "step": 6330
+ },
+ {
+ "epoch": 87.93665356050677,
+ "grad_norm": 0.2097586989402771,
+ "learning_rate": 0.0006,
+ "loss": 3.4348864555358887,
+ "step": 6331
+ },
+ {
+ "epoch": 87.95063346439493,
+ "grad_norm": 0.2221650779247284,
+ "learning_rate": 0.0006,
+ "loss": 3.449270486831665,
+ "step": 6332
+ },
+ {
+ "epoch": 87.9646133682831,
+ "grad_norm": 0.2341674566268921,
+ "learning_rate": 0.0006,
+ "loss": 3.452688694000244,
+ "step": 6333
+ },
+ {
+ "epoch": 87.97859327217125,
+ "grad_norm": 0.23425638675689697,
+ "learning_rate": 0.0006,
+ "loss": 3.478743076324463,
+ "step": 6334
+ },
+ {
+ "epoch": 87.99257317605941,
+ "grad_norm": 0.22582922875881195,
+ "learning_rate": 0.0006,
+ "loss": 3.4957661628723145,
+ "step": 6335
+ },
+ {
+ "epoch": 88.0,
+ "grad_norm": 0.25822433829307556,
+ "learning_rate": 0.0006,
+ "loss": 3.4841136932373047,
+ "step": 6336
+ },
+ {
+ "epoch": 88.0,
+ "eval_loss": 3.996260404586792,
+ "eval_runtime": 46.5497,
+ "eval_samples_per_second": 52.46,
+ "eval_steps_per_second": 3.287,
+ "step": 6336
+ },
+ {
+ "epoch": 88.01397990388816,
+ "grad_norm": 0.25544533133506775,
+ "learning_rate": 0.0006,
+ "loss": 3.398768424987793,
+ "step": 6337
+ },
+ {
+ "epoch": 88.02795980777633,
+ "grad_norm": 0.31270086765289307,
+ "learning_rate": 0.0006,
+ "loss": 3.4350461959838867,
+ "step": 6338
+ },
+ {
+ "epoch": 88.04193971166448,
+ "grad_norm": 0.31236228346824646,
+ "learning_rate": 0.0006,
+ "loss": 3.4069981575012207,
+ "step": 6339
+ },
+ {
+ "epoch": 88.05591961555264,
+ "grad_norm": 0.28024131059646606,
+ "learning_rate": 0.0006,
+ "loss": 3.421595811843872,
+ "step": 6340
+ },
+ {
+ "epoch": 88.06989951944081,
+ "grad_norm": 0.2668711245059967,
+ "learning_rate": 0.0006,
+ "loss": 3.3885085582733154,
+ "step": 6341
+ },
+ {
+ "epoch": 88.08387942332897,
+ "grad_norm": 0.3261690139770508,
+ "learning_rate": 0.0006,
+ "loss": 3.4128613471984863,
+ "step": 6342
+ },
+ {
+ "epoch": 88.09785932721712,
+ "grad_norm": 0.35211819410324097,
+ "learning_rate": 0.0006,
+ "loss": 3.4122352600097656,
+ "step": 6343
+ },
+ {
+ "epoch": 88.1118392311053,
+ "grad_norm": 0.30320537090301514,
+ "learning_rate": 0.0006,
+ "loss": 3.4083406925201416,
+ "step": 6344
+ },
+ {
+ "epoch": 88.12581913499345,
+ "grad_norm": 0.2462662160396576,
+ "learning_rate": 0.0006,
+ "loss": 3.458763837814331,
+ "step": 6345
+ },
+ {
+ "epoch": 88.1397990388816,
+ "grad_norm": 0.24706120789051056,
+ "learning_rate": 0.0006,
+ "loss": 3.3685402870178223,
+ "step": 6346
+ },
+ {
+ "epoch": 88.15377894276976,
+ "grad_norm": 0.25646236538887024,
+ "learning_rate": 0.0006,
+ "loss": 3.453892230987549,
+ "step": 6347
+ },
+ {
+ "epoch": 88.16775884665793,
+ "grad_norm": 0.23423898220062256,
+ "learning_rate": 0.0006,
+ "loss": 3.4273645877838135,
+ "step": 6348
+ },
+ {
+ "epoch": 88.18173875054609,
+ "grad_norm": 0.22806601226329803,
+ "learning_rate": 0.0006,
+ "loss": 3.3917994499206543,
+ "step": 6349
+ },
+ {
+ "epoch": 88.19571865443424,
+ "grad_norm": 0.2243315428495407,
+ "learning_rate": 0.0006,
+ "loss": 3.4123449325561523,
+ "step": 6350
+ },
+ {
+ "epoch": 88.20969855832242,
+ "grad_norm": 0.2315295934677124,
+ "learning_rate": 0.0006,
+ "loss": 3.4313998222351074,
+ "step": 6351
+ },
+ {
+ "epoch": 88.22367846221057,
+ "grad_norm": 0.2538231909275055,
+ "learning_rate": 0.0006,
+ "loss": 3.473200798034668,
+ "step": 6352
+ },
+ {
+ "epoch": 88.23765836609873,
+ "grad_norm": 0.24312785267829895,
+ "learning_rate": 0.0006,
+ "loss": 3.414944887161255,
+ "step": 6353
+ },
+ {
+ "epoch": 88.2516382699869,
+ "grad_norm": 0.2515439987182617,
+ "learning_rate": 0.0006,
+ "loss": 3.4162838459014893,
+ "step": 6354
+ },
+ {
+ "epoch": 88.26561817387505,
+ "grad_norm": 0.24469073116779327,
+ "learning_rate": 0.0006,
+ "loss": 3.444321393966675,
+ "step": 6355
+ },
+ {
+ "epoch": 88.27959807776321,
+ "grad_norm": 0.22281599044799805,
+ "learning_rate": 0.0006,
+ "loss": 3.4098334312438965,
+ "step": 6356
+ },
+ {
+ "epoch": 88.29357798165138,
+ "grad_norm": 0.24646595120429993,
+ "learning_rate": 0.0006,
+ "loss": 3.464479446411133,
+ "step": 6357
+ },
+ {
+ "epoch": 88.30755788553954,
+ "grad_norm": 0.22729575634002686,
+ "learning_rate": 0.0006,
+ "loss": 3.423619031906128,
+ "step": 6358
+ },
+ {
+ "epoch": 88.3215377894277,
+ "grad_norm": 0.2455425262451172,
+ "learning_rate": 0.0006,
+ "loss": 3.4085960388183594,
+ "step": 6359
+ },
+ {
+ "epoch": 88.33551769331586,
+ "grad_norm": 0.26134350895881653,
+ "learning_rate": 0.0006,
+ "loss": 3.3751399517059326,
+ "step": 6360
+ },
+ {
+ "epoch": 88.34949759720402,
+ "grad_norm": 0.2470584213733673,
+ "learning_rate": 0.0006,
+ "loss": 3.474815845489502,
+ "step": 6361
+ },
+ {
+ "epoch": 88.36347750109218,
+ "grad_norm": 0.24315427243709564,
+ "learning_rate": 0.0006,
+ "loss": 3.444636344909668,
+ "step": 6362
+ },
+ {
+ "epoch": 88.37745740498035,
+ "grad_norm": 0.25277286767959595,
+ "learning_rate": 0.0006,
+ "loss": 3.4518373012542725,
+ "step": 6363
+ },
+ {
+ "epoch": 88.3914373088685,
+ "grad_norm": 0.26929786801338196,
+ "learning_rate": 0.0006,
+ "loss": 3.446774482727051,
+ "step": 6364
+ },
+ {
+ "epoch": 88.40541721275666,
+ "grad_norm": 0.23554161190986633,
+ "learning_rate": 0.0006,
+ "loss": 3.385951042175293,
+ "step": 6365
+ },
+ {
+ "epoch": 88.41939711664482,
+ "grad_norm": 0.22048695385456085,
+ "learning_rate": 0.0006,
+ "loss": 3.45289945602417,
+ "step": 6366
+ },
+ {
+ "epoch": 88.43337702053299,
+ "grad_norm": 0.2575032114982605,
+ "learning_rate": 0.0006,
+ "loss": 3.4713096618652344,
+ "step": 6367
+ },
+ {
+ "epoch": 88.44735692442114,
+ "grad_norm": 0.2453707456588745,
+ "learning_rate": 0.0006,
+ "loss": 3.4257078170776367,
+ "step": 6368
+ },
+ {
+ "epoch": 88.4613368283093,
+ "grad_norm": 0.2514393627643585,
+ "learning_rate": 0.0006,
+ "loss": 3.4188473224639893,
+ "step": 6369
+ },
+ {
+ "epoch": 88.47531673219747,
+ "grad_norm": 0.23554356396198273,
+ "learning_rate": 0.0006,
+ "loss": 3.443974494934082,
+ "step": 6370
+ },
+ {
+ "epoch": 88.48929663608563,
+ "grad_norm": 0.22241100668907166,
+ "learning_rate": 0.0006,
+ "loss": 3.4610610008239746,
+ "step": 6371
+ },
+ {
+ "epoch": 88.50327653997378,
+ "grad_norm": 0.25195151567459106,
+ "learning_rate": 0.0006,
+ "loss": 3.4192237854003906,
+ "step": 6372
+ },
+ {
+ "epoch": 88.51725644386195,
+ "grad_norm": 0.25323209166526794,
+ "learning_rate": 0.0006,
+ "loss": 3.449105739593506,
+ "step": 6373
+ },
+ {
+ "epoch": 88.53123634775011,
+ "grad_norm": 0.23256665468215942,
+ "learning_rate": 0.0006,
+ "loss": 3.454131603240967,
+ "step": 6374
+ },
+ {
+ "epoch": 88.54521625163827,
+ "grad_norm": 0.22301720082759857,
+ "learning_rate": 0.0006,
+ "loss": 3.452838182449341,
+ "step": 6375
+ },
+ {
+ "epoch": 88.55919615552644,
+ "grad_norm": 0.24171237647533417,
+ "learning_rate": 0.0006,
+ "loss": 3.4515328407287598,
+ "step": 6376
+ },
+ {
+ "epoch": 88.57317605941459,
+ "grad_norm": 0.22223307192325592,
+ "learning_rate": 0.0006,
+ "loss": 3.447723388671875,
+ "step": 6377
+ },
+ {
+ "epoch": 88.58715596330275,
+ "grad_norm": 0.22373506426811218,
+ "learning_rate": 0.0006,
+ "loss": 3.4628777503967285,
+ "step": 6378
+ },
+ {
+ "epoch": 88.60113586719092,
+ "grad_norm": 0.2627395987510681,
+ "learning_rate": 0.0006,
+ "loss": 3.456012010574341,
+ "step": 6379
+ },
+ {
+ "epoch": 88.61511577107908,
+ "grad_norm": 0.2567562162876129,
+ "learning_rate": 0.0006,
+ "loss": 3.436379909515381,
+ "step": 6380
+ },
+ {
+ "epoch": 88.62909567496723,
+ "grad_norm": 0.2223784178495407,
+ "learning_rate": 0.0006,
+ "loss": 3.437389373779297,
+ "step": 6381
+ },
+ {
+ "epoch": 88.6430755788554,
+ "grad_norm": 0.2634836733341217,
+ "learning_rate": 0.0006,
+ "loss": 3.447709798812866,
+ "step": 6382
+ },
+ {
+ "epoch": 88.65705548274356,
+ "grad_norm": 0.2559404671192169,
+ "learning_rate": 0.0006,
+ "loss": 3.502635955810547,
+ "step": 6383
+ },
+ {
+ "epoch": 88.67103538663171,
+ "grad_norm": 0.2341974973678589,
+ "learning_rate": 0.0006,
+ "loss": 3.422739028930664,
+ "step": 6384
+ },
+ {
+ "epoch": 88.68501529051987,
+ "grad_norm": 0.23838907480239868,
+ "learning_rate": 0.0006,
+ "loss": 3.4362587928771973,
+ "step": 6385
+ },
+ {
+ "epoch": 88.69899519440804,
+ "grad_norm": 0.25170615315437317,
+ "learning_rate": 0.0006,
+ "loss": 3.4428529739379883,
+ "step": 6386
+ },
+ {
+ "epoch": 88.7129750982962,
+ "grad_norm": 0.29359322786331177,
+ "learning_rate": 0.0006,
+ "loss": 3.457087993621826,
+ "step": 6387
+ },
+ {
+ "epoch": 88.72695500218435,
+ "grad_norm": 0.2596781849861145,
+ "learning_rate": 0.0006,
+ "loss": 3.474092483520508,
+ "step": 6388
+ },
+ {
+ "epoch": 88.74093490607252,
+ "grad_norm": 0.2290738970041275,
+ "learning_rate": 0.0006,
+ "loss": 3.4652552604675293,
+ "step": 6389
+ },
+ {
+ "epoch": 88.75491480996068,
+ "grad_norm": 0.2197772115468979,
+ "learning_rate": 0.0006,
+ "loss": 3.4849348068237305,
+ "step": 6390
+ },
+ {
+ "epoch": 88.76889471384884,
+ "grad_norm": 0.2582140266895294,
+ "learning_rate": 0.0006,
+ "loss": 3.451672315597534,
+ "step": 6391
+ },
+ {
+ "epoch": 88.78287461773701,
+ "grad_norm": 0.28999677300453186,
+ "learning_rate": 0.0006,
+ "loss": 3.4680047035217285,
+ "step": 6392
+ },
+ {
+ "epoch": 88.79685452162516,
+ "grad_norm": 0.27091309428215027,
+ "learning_rate": 0.0006,
+ "loss": 3.4288430213928223,
+ "step": 6393
+ },
+ {
+ "epoch": 88.81083442551332,
+ "grad_norm": 0.22377929091453552,
+ "learning_rate": 0.0006,
+ "loss": 3.429720401763916,
+ "step": 6394
+ },
+ {
+ "epoch": 88.82481432940149,
+ "grad_norm": 0.25913205742836,
+ "learning_rate": 0.0006,
+ "loss": 3.4717307090759277,
+ "step": 6395
+ },
+ {
+ "epoch": 88.83879423328965,
+ "grad_norm": 0.2942664623260498,
+ "learning_rate": 0.0006,
+ "loss": 3.459348201751709,
+ "step": 6396
+ },
+ {
+ "epoch": 88.8527741371778,
+ "grad_norm": 0.2814873158931732,
+ "learning_rate": 0.0006,
+ "loss": 3.4601378440856934,
+ "step": 6397
+ },
+ {
+ "epoch": 88.86675404106597,
+ "grad_norm": 0.23663274943828583,
+ "learning_rate": 0.0006,
+ "loss": 3.4499621391296387,
+ "step": 6398
+ },
+ {
+ "epoch": 88.88073394495413,
+ "grad_norm": 0.2373311072587967,
+ "learning_rate": 0.0006,
+ "loss": 3.4788646697998047,
+ "step": 6399
+ },
+ {
+ "epoch": 88.89471384884229,
+ "grad_norm": 0.23589301109313965,
+ "learning_rate": 0.0006,
+ "loss": 3.4490485191345215,
+ "step": 6400
+ },
+ {
+ "epoch": 88.90869375273044,
+ "grad_norm": 0.2493848204612732,
+ "learning_rate": 0.0006,
+ "loss": 3.4638071060180664,
+ "step": 6401
+ },
+ {
+ "epoch": 88.92267365661861,
+ "grad_norm": 0.253894567489624,
+ "learning_rate": 0.0006,
+ "loss": 3.4215211868286133,
+ "step": 6402
+ },
+ {
+ "epoch": 88.93665356050677,
+ "grad_norm": 0.24402591586112976,
+ "learning_rate": 0.0006,
+ "loss": 3.4285635948181152,
+ "step": 6403
+ },
+ {
+ "epoch": 88.95063346439493,
+ "grad_norm": 0.23428580164909363,
+ "learning_rate": 0.0006,
+ "loss": 3.479029655456543,
+ "step": 6404
+ },
+ {
+ "epoch": 88.9646133682831,
+ "grad_norm": 0.22734172642230988,
+ "learning_rate": 0.0006,
+ "loss": 3.4614226818084717,
+ "step": 6405
+ },
+ {
+ "epoch": 88.97859327217125,
+ "grad_norm": 0.23591332137584686,
+ "learning_rate": 0.0006,
+ "loss": 3.45747709274292,
+ "step": 6406
+ },
+ {
+ "epoch": 88.99257317605941,
+ "grad_norm": 0.2494441717863083,
+ "learning_rate": 0.0006,
+ "loss": 3.4813613891601562,
+ "step": 6407
+ },
+ {
+ "epoch": 89.0,
+ "grad_norm": 0.2755223214626312,
+ "learning_rate": 0.0006,
+ "loss": 3.5029916763305664,
+ "step": 6408
+ },
+ {
+ "epoch": 89.0,
+ "eval_loss": 3.99692440032959,
+ "eval_runtime": 46.4257,
+ "eval_samples_per_second": 52.6,
+ "eval_steps_per_second": 3.296,
+ "step": 6408
+ },
+ {
+ "epoch": 89.01397990388816,
+ "grad_norm": 0.2804921567440033,
+ "learning_rate": 0.0006,
+ "loss": 3.390130043029785,
+ "step": 6409
+ },
+ {
+ "epoch": 89.02795980777633,
+ "grad_norm": 0.2886325716972351,
+ "learning_rate": 0.0006,
+ "loss": 3.403815507888794,
+ "step": 6410
+ },
+ {
+ "epoch": 89.04193971166448,
+ "grad_norm": 0.2708413898944855,
+ "learning_rate": 0.0006,
+ "loss": 3.4433977603912354,
+ "step": 6411
+ },
+ {
+ "epoch": 89.05591961555264,
+ "grad_norm": 0.24649782478809357,
+ "learning_rate": 0.0006,
+ "loss": 3.4159514904022217,
+ "step": 6412
+ },
+ {
+ "epoch": 89.06989951944081,
+ "grad_norm": 0.24781741201877594,
+ "learning_rate": 0.0006,
+ "loss": 3.419957399368286,
+ "step": 6413
+ },
+ {
+ "epoch": 89.08387942332897,
+ "grad_norm": 0.24064421653747559,
+ "learning_rate": 0.0006,
+ "loss": 3.422407388687134,
+ "step": 6414
+ },
+ {
+ "epoch": 89.09785932721712,
+ "grad_norm": 0.23315085470676422,
+ "learning_rate": 0.0006,
+ "loss": 3.4167463779449463,
+ "step": 6415
+ },
+ {
+ "epoch": 89.1118392311053,
+ "grad_norm": 0.22830364108085632,
+ "learning_rate": 0.0006,
+ "loss": 3.3770923614501953,
+ "step": 6416
+ },
+ {
+ "epoch": 89.12581913499345,
+ "grad_norm": 0.2393895536661148,
+ "learning_rate": 0.0006,
+ "loss": 3.398796558380127,
+ "step": 6417
+ },
+ {
+ "epoch": 89.1397990388816,
+ "grad_norm": 0.23011191189289093,
+ "learning_rate": 0.0006,
+ "loss": 3.4162049293518066,
+ "step": 6418
+ },
+ {
+ "epoch": 89.15377894276976,
+ "grad_norm": 0.21913395822048187,
+ "learning_rate": 0.0006,
+ "loss": 3.4067492485046387,
+ "step": 6419
+ },
+ {
+ "epoch": 89.16775884665793,
+ "grad_norm": 0.2405850887298584,
+ "learning_rate": 0.0006,
+ "loss": 3.4392945766448975,
+ "step": 6420
+ },
+ {
+ "epoch": 89.18173875054609,
+ "grad_norm": 0.23586462438106537,
+ "learning_rate": 0.0006,
+ "loss": 3.4119157791137695,
+ "step": 6421
+ },
+ {
+ "epoch": 89.19571865443424,
+ "grad_norm": 0.2438800036907196,
+ "learning_rate": 0.0006,
+ "loss": 3.4040637016296387,
+ "step": 6422
+ },
+ {
+ "epoch": 89.20969855832242,
+ "grad_norm": 0.2754521071910858,
+ "learning_rate": 0.0006,
+ "loss": 3.3838582038879395,
+ "step": 6423
+ },
+ {
+ "epoch": 89.22367846221057,
+ "grad_norm": 0.23522698879241943,
+ "learning_rate": 0.0006,
+ "loss": 3.43086576461792,
+ "step": 6424
+ },
+ {
+ "epoch": 89.23765836609873,
+ "grad_norm": 0.20969218015670776,
+ "learning_rate": 0.0006,
+ "loss": 3.419610023498535,
+ "step": 6425
+ },
+ {
+ "epoch": 89.2516382699869,
+ "grad_norm": 0.24013124406337738,
+ "learning_rate": 0.0006,
+ "loss": 3.440587043762207,
+ "step": 6426
+ },
+ {
+ "epoch": 89.26561817387505,
+ "grad_norm": 0.22006145119667053,
+ "learning_rate": 0.0006,
+ "loss": 3.4141197204589844,
+ "step": 6427
+ },
+ {
+ "epoch": 89.27959807776321,
+ "grad_norm": 0.23387178778648376,
+ "learning_rate": 0.0006,
+ "loss": 3.4153761863708496,
+ "step": 6428
+ },
+ {
+ "epoch": 89.29357798165138,
+ "grad_norm": 0.2203698605298996,
+ "learning_rate": 0.0006,
+ "loss": 3.3872125148773193,
+ "step": 6429
+ },
+ {
+ "epoch": 89.30755788553954,
+ "grad_norm": 0.24457088112831116,
+ "learning_rate": 0.0006,
+ "loss": 3.408695697784424,
+ "step": 6430
+ },
+ {
+ "epoch": 89.3215377894277,
+ "grad_norm": 0.2421625852584839,
+ "learning_rate": 0.0006,
+ "loss": 3.4664320945739746,
+ "step": 6431
+ },
+ {
+ "epoch": 89.33551769331586,
+ "grad_norm": 0.23027287423610687,
+ "learning_rate": 0.0006,
+ "loss": 3.416273593902588,
+ "step": 6432
+ },
+ {
+ "epoch": 89.34949759720402,
+ "grad_norm": 0.23090727627277374,
+ "learning_rate": 0.0006,
+ "loss": 3.4398555755615234,
+ "step": 6433
+ },
+ {
+ "epoch": 89.36347750109218,
+ "grad_norm": 0.2195872664451599,
+ "learning_rate": 0.0006,
+ "loss": 3.4498820304870605,
+ "step": 6434
+ },
+ {
+ "epoch": 89.37745740498035,
+ "grad_norm": 0.21808069944381714,
+ "learning_rate": 0.0006,
+ "loss": 3.441169023513794,
+ "step": 6435
+ },
+ {
+ "epoch": 89.3914373088685,
+ "grad_norm": 0.22228756546974182,
+ "learning_rate": 0.0006,
+ "loss": 3.4655652046203613,
+ "step": 6436
+ },
+ {
+ "epoch": 89.40541721275666,
+ "grad_norm": 0.22122591733932495,
+ "learning_rate": 0.0006,
+ "loss": 3.4240527153015137,
+ "step": 6437
+ },
+ {
+ "epoch": 89.41939711664482,
+ "grad_norm": 0.21600909531116486,
+ "learning_rate": 0.0006,
+ "loss": 3.416105270385742,
+ "step": 6438
+ },
+ {
+ "epoch": 89.43337702053299,
+ "grad_norm": 0.2144104689359665,
+ "learning_rate": 0.0006,
+ "loss": 3.4098658561706543,
+ "step": 6439
+ },
+ {
+ "epoch": 89.44735692442114,
+ "grad_norm": 0.23326139152050018,
+ "learning_rate": 0.0006,
+ "loss": 3.469301700592041,
+ "step": 6440
+ },
+ {
+ "epoch": 89.4613368283093,
+ "grad_norm": 0.26567789912223816,
+ "learning_rate": 0.0006,
+ "loss": 3.4470887184143066,
+ "step": 6441
+ },
+ {
+ "epoch": 89.47531673219747,
+ "grad_norm": 0.2632465362548828,
+ "learning_rate": 0.0006,
+ "loss": 3.4050705432891846,
+ "step": 6442
+ },
+ {
+ "epoch": 89.48929663608563,
+ "grad_norm": 0.2504420578479767,
+ "learning_rate": 0.0006,
+ "loss": 3.456641912460327,
+ "step": 6443
+ },
+ {
+ "epoch": 89.50327653997378,
+ "grad_norm": 0.23118335008621216,
+ "learning_rate": 0.0006,
+ "loss": 3.4431729316711426,
+ "step": 6444
+ },
+ {
+ "epoch": 89.51725644386195,
+ "grad_norm": 0.2547391951084137,
+ "learning_rate": 0.0006,
+ "loss": 3.4665348529815674,
+ "step": 6445
+ },
+ {
+ "epoch": 89.53123634775011,
+ "grad_norm": 0.24364003539085388,
+ "learning_rate": 0.0006,
+ "loss": 3.415684223175049,
+ "step": 6446
+ },
+ {
+ "epoch": 89.54521625163827,
+ "grad_norm": 0.23808231949806213,
+ "learning_rate": 0.0006,
+ "loss": 3.452906608581543,
+ "step": 6447
+ },
+ {
+ "epoch": 89.55919615552644,
+ "grad_norm": 0.22440290451049805,
+ "learning_rate": 0.0006,
+ "loss": 3.4534897804260254,
+ "step": 6448
+ },
+ {
+ "epoch": 89.57317605941459,
+ "grad_norm": 0.2142396867275238,
+ "learning_rate": 0.0006,
+ "loss": 3.4557271003723145,
+ "step": 6449
+ },
+ {
+ "epoch": 89.58715596330275,
+ "grad_norm": 0.23520410060882568,
+ "learning_rate": 0.0006,
+ "loss": 3.4715747833251953,
+ "step": 6450
+ },
+ {
+ "epoch": 89.60113586719092,
+ "grad_norm": 0.20662814378738403,
+ "learning_rate": 0.0006,
+ "loss": 3.4436354637145996,
+ "step": 6451
+ },
+ {
+ "epoch": 89.61511577107908,
+ "grad_norm": 0.2474508434534073,
+ "learning_rate": 0.0006,
+ "loss": 3.4383606910705566,
+ "step": 6452
+ },
+ {
+ "epoch": 89.62909567496723,
+ "grad_norm": 0.278999924659729,
+ "learning_rate": 0.0006,
+ "loss": 3.4703361988067627,
+ "step": 6453
+ },
+ {
+ "epoch": 89.6430755788554,
+ "grad_norm": 0.25253745913505554,
+ "learning_rate": 0.0006,
+ "loss": 3.414583206176758,
+ "step": 6454
+ },
+ {
+ "epoch": 89.65705548274356,
+ "grad_norm": 0.22693559527397156,
+ "learning_rate": 0.0006,
+ "loss": 3.464961528778076,
+ "step": 6455
+ },
+ {
+ "epoch": 89.67103538663171,
+ "grad_norm": 0.24077758193016052,
+ "learning_rate": 0.0006,
+ "loss": 3.439797878265381,
+ "step": 6456
+ },
+ {
+ "epoch": 89.68501529051987,
+ "grad_norm": 0.2611824870109558,
+ "learning_rate": 0.0006,
+ "loss": 3.4732823371887207,
+ "step": 6457
+ },
+ {
+ "epoch": 89.69899519440804,
+ "grad_norm": 0.250815749168396,
+ "learning_rate": 0.0006,
+ "loss": 3.4433367252349854,
+ "step": 6458
+ },
+ {
+ "epoch": 89.7129750982962,
+ "grad_norm": 0.23598846793174744,
+ "learning_rate": 0.0006,
+ "loss": 3.4715113639831543,
+ "step": 6459
+ },
+ {
+ "epoch": 89.72695500218435,
+ "grad_norm": 0.2527889311313629,
+ "learning_rate": 0.0006,
+ "loss": 3.4698610305786133,
+ "step": 6460
+ },
+ {
+ "epoch": 89.74093490607252,
+ "grad_norm": 0.276784211397171,
+ "learning_rate": 0.0006,
+ "loss": 3.475592613220215,
+ "step": 6461
+ },
+ {
+ "epoch": 89.75491480996068,
+ "grad_norm": 0.2685011923313141,
+ "learning_rate": 0.0006,
+ "loss": 3.4594340324401855,
+ "step": 6462
+ },
+ {
+ "epoch": 89.76889471384884,
+ "grad_norm": 0.2204517424106598,
+ "learning_rate": 0.0006,
+ "loss": 3.4383888244628906,
+ "step": 6463
+ },
+ {
+ "epoch": 89.78287461773701,
+ "grad_norm": 0.21650364995002747,
+ "learning_rate": 0.0006,
+ "loss": 3.440211772918701,
+ "step": 6464
+ },
+ {
+ "epoch": 89.79685452162516,
+ "grad_norm": 0.23860572278499603,
+ "learning_rate": 0.0006,
+ "loss": 3.4803309440612793,
+ "step": 6465
+ },
+ {
+ "epoch": 89.81083442551332,
+ "grad_norm": 0.21272678673267365,
+ "learning_rate": 0.0006,
+ "loss": 3.415151596069336,
+ "step": 6466
+ },
+ {
+ "epoch": 89.82481432940149,
+ "grad_norm": 0.21292860805988312,
+ "learning_rate": 0.0006,
+ "loss": 3.431708812713623,
+ "step": 6467
+ },
+ {
+ "epoch": 89.83879423328965,
+ "grad_norm": 0.2239128053188324,
+ "learning_rate": 0.0006,
+ "loss": 3.4703831672668457,
+ "step": 6468
+ },
+ {
+ "epoch": 89.8527741371778,
+ "grad_norm": 0.2337617129087448,
+ "learning_rate": 0.0006,
+ "loss": 3.480558395385742,
+ "step": 6469
+ },
+ {
+ "epoch": 89.86675404106597,
+ "grad_norm": 0.2368871420621872,
+ "learning_rate": 0.0006,
+ "loss": 3.460475444793701,
+ "step": 6470
+ },
+ {
+ "epoch": 89.88073394495413,
+ "grad_norm": 0.20681516826152802,
+ "learning_rate": 0.0006,
+ "loss": 3.4175658226013184,
+ "step": 6471
+ },
+ {
+ "epoch": 89.89471384884229,
+ "grad_norm": 0.20790521800518036,
+ "learning_rate": 0.0006,
+ "loss": 3.4417853355407715,
+ "step": 6472
+ },
+ {
+ "epoch": 89.90869375273044,
+ "grad_norm": 0.20643968880176544,
+ "learning_rate": 0.0006,
+ "loss": 3.4470458030700684,
+ "step": 6473
+ },
+ {
+ "epoch": 89.92267365661861,
+ "grad_norm": 0.2111901491880417,
+ "learning_rate": 0.0006,
+ "loss": 3.477799654006958,
+ "step": 6474
+ },
+ {
+ "epoch": 89.93665356050677,
+ "grad_norm": 0.20657071471214294,
+ "learning_rate": 0.0006,
+ "loss": 3.4574146270751953,
+ "step": 6475
+ },
+ {
+ "epoch": 89.95063346439493,
+ "grad_norm": 0.20643314719200134,
+ "learning_rate": 0.0006,
+ "loss": 3.459632396697998,
+ "step": 6476
+ },
+ {
+ "epoch": 89.9646133682831,
+ "grad_norm": 0.22173410654067993,
+ "learning_rate": 0.0006,
+ "loss": 3.475869655609131,
+ "step": 6477
+ },
+ {
+ "epoch": 89.97859327217125,
+ "grad_norm": 0.21396701037883759,
+ "learning_rate": 0.0006,
+ "loss": 3.432828664779663,
+ "step": 6478
+ },
+ {
+ "epoch": 89.99257317605941,
+ "grad_norm": 0.20806321501731873,
+ "learning_rate": 0.0006,
+ "loss": 3.4380345344543457,
+ "step": 6479
+ },
+ {
+ "epoch": 90.0,
+ "grad_norm": 0.29019099473953247,
+ "learning_rate": 0.0006,
+ "loss": 3.4722766876220703,
+ "step": 6480
+ },
+ {
+ "epoch": 90.0,
+ "eval_loss": 3.9953255653381348,
+ "eval_runtime": 46.5084,
+ "eval_samples_per_second": 52.507,
+ "eval_steps_per_second": 3.29,
+ "step": 6480
+ },
+ {
+ "epoch": 90.01397990388816,
+ "grad_norm": 0.30904439091682434,
+ "learning_rate": 0.0006,
+ "loss": 3.418851852416992,
+ "step": 6481
+ },
+ {
+ "epoch": 90.02795980777633,
+ "grad_norm": 0.33757269382476807,
+ "learning_rate": 0.0006,
+ "loss": 3.4239983558654785,
+ "step": 6482
+ },
+ {
+ "epoch": 90.04193971166448,
+ "grad_norm": 0.3366031050682068,
+ "learning_rate": 0.0006,
+ "loss": 3.4371347427368164,
+ "step": 6483
+ },
+ {
+ "epoch": 90.05591961555264,
+ "grad_norm": 0.3123963177204132,
+ "learning_rate": 0.0006,
+ "loss": 3.3881397247314453,
+ "step": 6484
+ },
+ {
+ "epoch": 90.06989951944081,
+ "grad_norm": 0.2818542420864105,
+ "learning_rate": 0.0006,
+ "loss": 3.4260921478271484,
+ "step": 6485
+ },
+ {
+ "epoch": 90.08387942332897,
+ "grad_norm": 0.30521923303604126,
+ "learning_rate": 0.0006,
+ "loss": 3.430814504623413,
+ "step": 6486
+ },
+ {
+ "epoch": 90.09785932721712,
+ "grad_norm": 0.28015220165252686,
+ "learning_rate": 0.0006,
+ "loss": 3.4476559162139893,
+ "step": 6487
+ },
+ {
+ "epoch": 90.1118392311053,
+ "grad_norm": 0.2598329186439514,
+ "learning_rate": 0.0006,
+ "loss": 3.4090490341186523,
+ "step": 6488
+ },
+ {
+ "epoch": 90.12581913499345,
+ "grad_norm": 0.2669932246208191,
+ "learning_rate": 0.0006,
+ "loss": 3.3986735343933105,
+ "step": 6489
+ },
+ {
+ "epoch": 90.1397990388816,
+ "grad_norm": 0.25984710454940796,
+ "learning_rate": 0.0006,
+ "loss": 3.417846202850342,
+ "step": 6490
+ },
+ {
+ "epoch": 90.15377894276976,
+ "grad_norm": 0.2787732779979706,
+ "learning_rate": 0.0006,
+ "loss": 3.4399795532226562,
+ "step": 6491
+ },
+ {
+ "epoch": 90.16775884665793,
+ "grad_norm": 0.2931681275367737,
+ "learning_rate": 0.0006,
+ "loss": 3.4119021892547607,
+ "step": 6492
+ },
+ {
+ "epoch": 90.18173875054609,
+ "grad_norm": 0.33927759528160095,
+ "learning_rate": 0.0006,
+ "loss": 3.384705066680908,
+ "step": 6493
+ },
+ {
+ "epoch": 90.19571865443424,
+ "grad_norm": 0.3411446213722229,
+ "learning_rate": 0.0006,
+ "loss": 3.4089555740356445,
+ "step": 6494
+ },
+ {
+ "epoch": 90.20969855832242,
+ "grad_norm": 0.2604075074195862,
+ "learning_rate": 0.0006,
+ "loss": 3.4233946800231934,
+ "step": 6495
+ },
+ {
+ "epoch": 90.22367846221057,
+ "grad_norm": 0.24992363154888153,
+ "learning_rate": 0.0006,
+ "loss": 3.4724960327148438,
+ "step": 6496
+ },
+ {
+ "epoch": 90.23765836609873,
+ "grad_norm": 0.2375895380973816,
+ "learning_rate": 0.0006,
+ "loss": 3.458033561706543,
+ "step": 6497
+ },
+ {
+ "epoch": 90.2516382699869,
+ "grad_norm": 0.22809554636478424,
+ "learning_rate": 0.0006,
+ "loss": 3.408811092376709,
+ "step": 6498
+ },
+ {
+ "epoch": 90.26561817387505,
+ "grad_norm": 0.21157044172286987,
+ "learning_rate": 0.0006,
+ "loss": 3.4245152473449707,
+ "step": 6499
+ },
+ {
+ "epoch": 90.27959807776321,
+ "grad_norm": 0.22064797580242157,
+ "learning_rate": 0.0006,
+ "loss": 3.404344320297241,
+ "step": 6500
+ },
+ {
+ "epoch": 90.29357798165138,
+ "grad_norm": 0.24731965363025665,
+ "learning_rate": 0.0006,
+ "loss": 3.4225330352783203,
+ "step": 6501
+ },
+ {
+ "epoch": 90.30755788553954,
+ "grad_norm": 0.24225078523159027,
+ "learning_rate": 0.0006,
+ "loss": 3.432037591934204,
+ "step": 6502
+ },
+ {
+ "epoch": 90.3215377894277,
+ "grad_norm": 0.2522440552711487,
+ "learning_rate": 0.0006,
+ "loss": 3.4188179969787598,
+ "step": 6503
+ },
+ {
+ "epoch": 90.33551769331586,
+ "grad_norm": 0.25284767150878906,
+ "learning_rate": 0.0006,
+ "loss": 3.4024617671966553,
+ "step": 6504
+ },
+ {
+ "epoch": 90.34949759720402,
+ "grad_norm": 0.25376370549201965,
+ "learning_rate": 0.0006,
+ "loss": 3.4594764709472656,
+ "step": 6505
+ },
+ {
+ "epoch": 90.36347750109218,
+ "grad_norm": 0.26418960094451904,
+ "learning_rate": 0.0006,
+ "loss": 3.4271185398101807,
+ "step": 6506
+ },
+ {
+ "epoch": 90.37745740498035,
+ "grad_norm": 0.25357338786125183,
+ "learning_rate": 0.0006,
+ "loss": 3.453247308731079,
+ "step": 6507
+ },
+ {
+ "epoch": 90.3914373088685,
+ "grad_norm": 0.27471402287483215,
+ "learning_rate": 0.0006,
+ "loss": 3.4602694511413574,
+ "step": 6508
+ },
+ {
+ "epoch": 90.40541721275666,
+ "grad_norm": 0.277476966381073,
+ "learning_rate": 0.0006,
+ "loss": 3.445067882537842,
+ "step": 6509
+ },
+ {
+ "epoch": 90.41939711664482,
+ "grad_norm": 0.26854971051216125,
+ "learning_rate": 0.0006,
+ "loss": 3.4413654804229736,
+ "step": 6510
+ },
+ {
+ "epoch": 90.43337702053299,
+ "grad_norm": 0.2936476767063141,
+ "learning_rate": 0.0006,
+ "loss": 3.4006855487823486,
+ "step": 6511
+ },
+ {
+ "epoch": 90.44735692442114,
+ "grad_norm": 0.3106863796710968,
+ "learning_rate": 0.0006,
+ "loss": 3.4397261142730713,
+ "step": 6512
+ },
+ {
+ "epoch": 90.4613368283093,
+ "grad_norm": 0.2725449204444885,
+ "learning_rate": 0.0006,
+ "loss": 3.428178548812866,
+ "step": 6513
+ },
+ {
+ "epoch": 90.47531673219747,
+ "grad_norm": 0.24062374234199524,
+ "learning_rate": 0.0006,
+ "loss": 3.4532151222229004,
+ "step": 6514
+ },
+ {
+ "epoch": 90.48929663608563,
+ "grad_norm": 0.20387989282608032,
+ "learning_rate": 0.0006,
+ "loss": 3.4402451515197754,
+ "step": 6515
+ },
+ {
+ "epoch": 90.50327653997378,
+ "grad_norm": 0.22572724521160126,
+ "learning_rate": 0.0006,
+ "loss": 3.434530735015869,
+ "step": 6516
+ },
+ {
+ "epoch": 90.51725644386195,
+ "grad_norm": 0.238680899143219,
+ "learning_rate": 0.0006,
+ "loss": 3.4565868377685547,
+ "step": 6517
+ },
+ {
+ "epoch": 90.53123634775011,
+ "grad_norm": 0.21353137493133545,
+ "learning_rate": 0.0006,
+ "loss": 3.4423351287841797,
+ "step": 6518
+ },
+ {
+ "epoch": 90.54521625163827,
+ "grad_norm": 0.23349817097187042,
+ "learning_rate": 0.0006,
+ "loss": 3.445049285888672,
+ "step": 6519
+ },
+ {
+ "epoch": 90.55919615552644,
+ "grad_norm": 0.2219848334789276,
+ "learning_rate": 0.0006,
+ "loss": 3.45231556892395,
+ "step": 6520
+ },
+ {
+ "epoch": 90.57317605941459,
+ "grad_norm": 0.21629275381565094,
+ "learning_rate": 0.0006,
+ "loss": 3.4129867553710938,
+ "step": 6521
+ },
+ {
+ "epoch": 90.58715596330275,
+ "grad_norm": 0.2235035002231598,
+ "learning_rate": 0.0006,
+ "loss": 3.4591660499572754,
+ "step": 6522
+ },
+ {
+ "epoch": 90.60113586719092,
+ "grad_norm": 0.26521024107933044,
+ "learning_rate": 0.0006,
+ "loss": 3.4373743534088135,
+ "step": 6523
+ },
+ {
+ "epoch": 90.61511577107908,
+ "grad_norm": 0.2680232524871826,
+ "learning_rate": 0.0006,
+ "loss": 3.4387364387512207,
+ "step": 6524
+ },
+ {
+ "epoch": 90.62909567496723,
+ "grad_norm": 0.22376984357833862,
+ "learning_rate": 0.0006,
+ "loss": 3.419330358505249,
+ "step": 6525
+ },
+ {
+ "epoch": 90.6430755788554,
+ "grad_norm": 0.2209475338459015,
+ "learning_rate": 0.0006,
+ "loss": 3.392704486846924,
+ "step": 6526
+ },
+ {
+ "epoch": 90.65705548274356,
+ "grad_norm": 0.23697848618030548,
+ "learning_rate": 0.0006,
+ "loss": 3.4427690505981445,
+ "step": 6527
+ },
+ {
+ "epoch": 90.67103538663171,
+ "grad_norm": 0.23086845874786377,
+ "learning_rate": 0.0006,
+ "loss": 3.4663751125335693,
+ "step": 6528
+ },
+ {
+ "epoch": 90.68501529051987,
+ "grad_norm": 0.2024257779121399,
+ "learning_rate": 0.0006,
+ "loss": 3.4333503246307373,
+ "step": 6529
+ },
+ {
+ "epoch": 90.69899519440804,
+ "grad_norm": 0.20319615304470062,
+ "learning_rate": 0.0006,
+ "loss": 3.441241502761841,
+ "step": 6530
+ },
+ {
+ "epoch": 90.7129750982962,
+ "grad_norm": 0.20323923230171204,
+ "learning_rate": 0.0006,
+ "loss": 3.4349968433380127,
+ "step": 6531
+ },
+ {
+ "epoch": 90.72695500218435,
+ "grad_norm": 0.21205076575279236,
+ "learning_rate": 0.0006,
+ "loss": 3.4660801887512207,
+ "step": 6532
+ },
+ {
+ "epoch": 90.74093490607252,
+ "grad_norm": 0.20939043164253235,
+ "learning_rate": 0.0006,
+ "loss": 3.4456377029418945,
+ "step": 6533
+ },
+ {
+ "epoch": 90.75491480996068,
+ "grad_norm": 0.2304895967245102,
+ "learning_rate": 0.0006,
+ "loss": 3.4799728393554688,
+ "step": 6534
+ },
+ {
+ "epoch": 90.76889471384884,
+ "grad_norm": 0.23180201649665833,
+ "learning_rate": 0.0006,
+ "loss": 3.4439339637756348,
+ "step": 6535
+ },
+ {
+ "epoch": 90.78287461773701,
+ "grad_norm": 0.21886807680130005,
+ "learning_rate": 0.0006,
+ "loss": 3.457972526550293,
+ "step": 6536
+ },
+ {
+ "epoch": 90.79685452162516,
+ "grad_norm": 0.2383895367383957,
+ "learning_rate": 0.0006,
+ "loss": 3.4571423530578613,
+ "step": 6537
+ },
+ {
+ "epoch": 90.81083442551332,
+ "grad_norm": 0.28625327348709106,
+ "learning_rate": 0.0006,
+ "loss": 3.425898551940918,
+ "step": 6538
+ },
+ {
+ "epoch": 90.82481432940149,
+ "grad_norm": 0.2728622257709503,
+ "learning_rate": 0.0006,
+ "loss": 3.4169094562530518,
+ "step": 6539
+ },
+ {
+ "epoch": 90.83879423328965,
+ "grad_norm": 0.2563427984714508,
+ "learning_rate": 0.0006,
+ "loss": 3.412403106689453,
+ "step": 6540
+ },
+ {
+ "epoch": 90.8527741371778,
+ "grad_norm": 0.2255549281835556,
+ "learning_rate": 0.0006,
+ "loss": 3.455230712890625,
+ "step": 6541
+ },
+ {
+ "epoch": 90.86675404106597,
+ "grad_norm": 0.20950232446193695,
+ "learning_rate": 0.0006,
+ "loss": 3.4527735710144043,
+ "step": 6542
+ },
+ {
+ "epoch": 90.88073394495413,
+ "grad_norm": 0.21894556283950806,
+ "learning_rate": 0.0006,
+ "loss": 3.4224467277526855,
+ "step": 6543
+ },
+ {
+ "epoch": 90.89471384884229,
+ "grad_norm": 0.21209512650966644,
+ "learning_rate": 0.0006,
+ "loss": 3.431763172149658,
+ "step": 6544
+ },
+ {
+ "epoch": 90.90869375273044,
+ "grad_norm": 0.2315598577260971,
+ "learning_rate": 0.0006,
+ "loss": 3.450211524963379,
+ "step": 6545
+ },
+ {
+ "epoch": 90.92267365661861,
+ "grad_norm": 0.2402508407831192,
+ "learning_rate": 0.0006,
+ "loss": 3.455052375793457,
+ "step": 6546
+ },
+ {
+ "epoch": 90.93665356050677,
+ "grad_norm": 0.2308250069618225,
+ "learning_rate": 0.0006,
+ "loss": 3.4867026805877686,
+ "step": 6547
+ },
+ {
+ "epoch": 90.95063346439493,
+ "grad_norm": 0.24072574079036713,
+ "learning_rate": 0.0006,
+ "loss": 3.4766125679016113,
+ "step": 6548
+ },
+ {
+ "epoch": 90.9646133682831,
+ "grad_norm": 0.24275705218315125,
+ "learning_rate": 0.0006,
+ "loss": 3.4633054733276367,
+ "step": 6549
+ },
+ {
+ "epoch": 90.97859327217125,
+ "grad_norm": 0.22423091530799866,
+ "learning_rate": 0.0006,
+ "loss": 3.4584946632385254,
+ "step": 6550
+ },
+ {
+ "epoch": 90.99257317605941,
+ "grad_norm": 0.225535050034523,
+ "learning_rate": 0.0006,
+ "loss": 3.453803539276123,
+ "step": 6551
+ },
+ {
+ "epoch": 91.0,
+ "grad_norm": 0.2719618082046509,
+ "learning_rate": 0.0006,
+ "loss": 3.4374547004699707,
+ "step": 6552
+ },
+ {
+ "epoch": 91.0,
+ "eval_loss": 4.004940986633301,
+ "eval_runtime": 46.5029,
+ "eval_samples_per_second": 52.513,
+ "eval_steps_per_second": 3.29,
+ "step": 6552
+ },
+ {
+ "epoch": 91.01397990388816,
+ "grad_norm": 0.2452932447195053,
+ "learning_rate": 0.0006,
+ "loss": 3.4305531978607178,
+ "step": 6553
+ },
+ {
+ "epoch": 91.02795980777633,
+ "grad_norm": 0.25326210260391235,
+ "learning_rate": 0.0006,
+ "loss": 3.384127140045166,
+ "step": 6554
+ },
+ {
+ "epoch": 91.04193971166448,
+ "grad_norm": 0.2665634751319885,
+ "learning_rate": 0.0006,
+ "loss": 3.4163594245910645,
+ "step": 6555
+ },
+ {
+ "epoch": 91.05591961555264,
+ "grad_norm": 0.2732037603855133,
+ "learning_rate": 0.0006,
+ "loss": 3.3771586418151855,
+ "step": 6556
+ },
+ {
+ "epoch": 91.06989951944081,
+ "grad_norm": 0.23763145506381989,
+ "learning_rate": 0.0006,
+ "loss": 3.3978042602539062,
+ "step": 6557
+ },
+ {
+ "epoch": 91.08387942332897,
+ "grad_norm": 0.25869178771972656,
+ "learning_rate": 0.0006,
+ "loss": 3.3812952041625977,
+ "step": 6558
+ },
+ {
+ "epoch": 91.09785932721712,
+ "grad_norm": 0.24454088509082794,
+ "learning_rate": 0.0006,
+ "loss": 3.4127495288848877,
+ "step": 6559
+ },
+ {
+ "epoch": 91.1118392311053,
+ "grad_norm": 0.21807557344436646,
+ "learning_rate": 0.0006,
+ "loss": 3.4293503761291504,
+ "step": 6560
+ },
+ {
+ "epoch": 91.12581913499345,
+ "grad_norm": 0.24649474024772644,
+ "learning_rate": 0.0006,
+ "loss": 3.3676466941833496,
+ "step": 6561
+ },
+ {
+ "epoch": 91.1397990388816,
+ "grad_norm": 0.232633575797081,
+ "learning_rate": 0.0006,
+ "loss": 3.3941407203674316,
+ "step": 6562
+ },
+ {
+ "epoch": 91.15377894276976,
+ "grad_norm": 0.21927355229854584,
+ "learning_rate": 0.0006,
+ "loss": 3.4050021171569824,
+ "step": 6563
+ },
+ {
+ "epoch": 91.16775884665793,
+ "grad_norm": 0.22213764488697052,
+ "learning_rate": 0.0006,
+ "loss": 3.4130403995513916,
+ "step": 6564
+ },
+ {
+ "epoch": 91.18173875054609,
+ "grad_norm": 0.23417729139328003,
+ "learning_rate": 0.0006,
+ "loss": 3.4020724296569824,
+ "step": 6565
+ },
+ {
+ "epoch": 91.19571865443424,
+ "grad_norm": 0.2246304750442505,
+ "learning_rate": 0.0006,
+ "loss": 3.4340522289276123,
+ "step": 6566
+ },
+ {
+ "epoch": 91.20969855832242,
+ "grad_norm": 0.221421480178833,
+ "learning_rate": 0.0006,
+ "loss": 3.4325551986694336,
+ "step": 6567
+ },
+ {
+ "epoch": 91.22367846221057,
+ "grad_norm": 0.22669611871242523,
+ "learning_rate": 0.0006,
+ "loss": 3.379284381866455,
+ "step": 6568
+ },
+ {
+ "epoch": 91.23765836609873,
+ "grad_norm": 0.24856597185134888,
+ "learning_rate": 0.0006,
+ "loss": 3.4661848545074463,
+ "step": 6569
+ },
+ {
+ "epoch": 91.2516382699869,
+ "grad_norm": 0.2874867022037506,
+ "learning_rate": 0.0006,
+ "loss": 3.421952486038208,
+ "step": 6570
+ },
+ {
+ "epoch": 91.26561817387505,
+ "grad_norm": 0.2838810384273529,
+ "learning_rate": 0.0006,
+ "loss": 3.4232606887817383,
+ "step": 6571
+ },
+ {
+ "epoch": 91.27959807776321,
+ "grad_norm": 0.27111512422561646,
+ "learning_rate": 0.0006,
+ "loss": 3.427985668182373,
+ "step": 6572
+ },
+ {
+ "epoch": 91.29357798165138,
+ "grad_norm": 0.25255000591278076,
+ "learning_rate": 0.0006,
+ "loss": 3.437727451324463,
+ "step": 6573
+ },
+ {
+ "epoch": 91.30755788553954,
+ "grad_norm": 0.24753448367118835,
+ "learning_rate": 0.0006,
+ "loss": 3.431509494781494,
+ "step": 6574
+ },
+ {
+ "epoch": 91.3215377894277,
+ "grad_norm": 0.3003036081790924,
+ "learning_rate": 0.0006,
+ "loss": 3.4692001342773438,
+ "step": 6575
+ },
+ {
+ "epoch": 91.33551769331586,
+ "grad_norm": 0.2745291590690613,
+ "learning_rate": 0.0006,
+ "loss": 3.428563117980957,
+ "step": 6576
+ },
+ {
+ "epoch": 91.34949759720402,
+ "grad_norm": 0.24292010068893433,
+ "learning_rate": 0.0006,
+ "loss": 3.433021068572998,
+ "step": 6577
+ },
+ {
+ "epoch": 91.36347750109218,
+ "grad_norm": 0.2417255938053131,
+ "learning_rate": 0.0006,
+ "loss": 3.42389178276062,
+ "step": 6578
+ },
+ {
+ "epoch": 91.37745740498035,
+ "grad_norm": 0.26591625809669495,
+ "learning_rate": 0.0006,
+ "loss": 3.446324348449707,
+ "step": 6579
+ },
+ {
+ "epoch": 91.3914373088685,
+ "grad_norm": 0.2473662942647934,
+ "learning_rate": 0.0006,
+ "loss": 3.4376204013824463,
+ "step": 6580
+ },
+ {
+ "epoch": 91.40541721275666,
+ "grad_norm": 0.22889690101146698,
+ "learning_rate": 0.0006,
+ "loss": 3.388927936553955,
+ "step": 6581
+ },
+ {
+ "epoch": 91.41939711664482,
+ "grad_norm": 0.24227893352508545,
+ "learning_rate": 0.0006,
+ "loss": 3.4282050132751465,
+ "step": 6582
+ },
+ {
+ "epoch": 91.43337702053299,
+ "grad_norm": 0.22293400764465332,
+ "learning_rate": 0.0006,
+ "loss": 3.4289140701293945,
+ "step": 6583
+ },
+ {
+ "epoch": 91.44735692442114,
+ "grad_norm": 0.22775113582611084,
+ "learning_rate": 0.0006,
+ "loss": 3.417121410369873,
+ "step": 6584
+ },
+ {
+ "epoch": 91.4613368283093,
+ "grad_norm": 0.23245708644390106,
+ "learning_rate": 0.0006,
+ "loss": 3.420234203338623,
+ "step": 6585
+ },
+ {
+ "epoch": 91.47531673219747,
+ "grad_norm": 0.2506006062030792,
+ "learning_rate": 0.0006,
+ "loss": 3.415706157684326,
+ "step": 6586
+ },
+ {
+ "epoch": 91.48929663608563,
+ "grad_norm": 0.23158405721187592,
+ "learning_rate": 0.0006,
+ "loss": 3.405642509460449,
+ "step": 6587
+ },
+ {
+ "epoch": 91.50327653997378,
+ "grad_norm": 0.2237837165594101,
+ "learning_rate": 0.0006,
+ "loss": 3.4335689544677734,
+ "step": 6588
+ },
+ {
+ "epoch": 91.51725644386195,
+ "grad_norm": 0.22722665965557098,
+ "learning_rate": 0.0006,
+ "loss": 3.4654386043548584,
+ "step": 6589
+ },
+ {
+ "epoch": 91.53123634775011,
+ "grad_norm": 0.2230997383594513,
+ "learning_rate": 0.0006,
+ "loss": 3.4406728744506836,
+ "step": 6590
+ },
+ {
+ "epoch": 91.54521625163827,
+ "grad_norm": 0.20826208591461182,
+ "learning_rate": 0.0006,
+ "loss": 3.461658000946045,
+ "step": 6591
+ },
+ {
+ "epoch": 91.55919615552644,
+ "grad_norm": 0.22250162065029144,
+ "learning_rate": 0.0006,
+ "loss": 3.419250011444092,
+ "step": 6592
+ },
+ {
+ "epoch": 91.57317605941459,
+ "grad_norm": 0.2545854449272156,
+ "learning_rate": 0.0006,
+ "loss": 3.443878173828125,
+ "step": 6593
+ },
+ {
+ "epoch": 91.58715596330275,
+ "grad_norm": 0.2367449849843979,
+ "learning_rate": 0.0006,
+ "loss": 3.423168659210205,
+ "step": 6594
+ },
+ {
+ "epoch": 91.60113586719092,
+ "grad_norm": 0.2320464551448822,
+ "learning_rate": 0.0006,
+ "loss": 3.4623992443084717,
+ "step": 6595
+ },
+ {
+ "epoch": 91.61511577107908,
+ "grad_norm": 0.22751834988594055,
+ "learning_rate": 0.0006,
+ "loss": 3.4606170654296875,
+ "step": 6596
+ },
+ {
+ "epoch": 91.62909567496723,
+ "grad_norm": 0.22919580340385437,
+ "learning_rate": 0.0006,
+ "loss": 3.4593071937561035,
+ "step": 6597
+ },
+ {
+ "epoch": 91.6430755788554,
+ "grad_norm": 0.21247684955596924,
+ "learning_rate": 0.0006,
+ "loss": 3.464904308319092,
+ "step": 6598
+ },
+ {
+ "epoch": 91.65705548274356,
+ "grad_norm": 0.21709196269512177,
+ "learning_rate": 0.0006,
+ "loss": 3.4596290588378906,
+ "step": 6599
+ },
+ {
+ "epoch": 91.67103538663171,
+ "grad_norm": 0.2424597144126892,
+ "learning_rate": 0.0006,
+ "loss": 3.448538303375244,
+ "step": 6600
+ },
+ {
+ "epoch": 91.68501529051987,
+ "grad_norm": 0.2395647168159485,
+ "learning_rate": 0.0006,
+ "loss": 3.4488210678100586,
+ "step": 6601
+ },
+ {
+ "epoch": 91.69899519440804,
+ "grad_norm": 0.2409609705209732,
+ "learning_rate": 0.0006,
+ "loss": 3.4203569889068604,
+ "step": 6602
+ },
+ {
+ "epoch": 91.7129750982962,
+ "grad_norm": 0.23729364573955536,
+ "learning_rate": 0.0006,
+ "loss": 3.410933494567871,
+ "step": 6603
+ },
+ {
+ "epoch": 91.72695500218435,
+ "grad_norm": 0.210970938205719,
+ "learning_rate": 0.0006,
+ "loss": 3.432286024093628,
+ "step": 6604
+ },
+ {
+ "epoch": 91.74093490607252,
+ "grad_norm": 0.25386837124824524,
+ "learning_rate": 0.0006,
+ "loss": 3.4530787467956543,
+ "step": 6605
+ },
+ {
+ "epoch": 91.75491480996068,
+ "grad_norm": 0.23256954550743103,
+ "learning_rate": 0.0006,
+ "loss": 3.428518772125244,
+ "step": 6606
+ },
+ {
+ "epoch": 91.76889471384884,
+ "grad_norm": 0.23063044250011444,
+ "learning_rate": 0.0006,
+ "loss": 3.4331274032592773,
+ "step": 6607
+ },
+ {
+ "epoch": 91.78287461773701,
+ "grad_norm": 0.22678597271442413,
+ "learning_rate": 0.0006,
+ "loss": 3.485541343688965,
+ "step": 6608
+ },
+ {
+ "epoch": 91.79685452162516,
+ "grad_norm": 0.23040807247161865,
+ "learning_rate": 0.0006,
+ "loss": 3.413050651550293,
+ "step": 6609
+ },
+ {
+ "epoch": 91.81083442551332,
+ "grad_norm": 0.24709701538085938,
+ "learning_rate": 0.0006,
+ "loss": 3.4578094482421875,
+ "step": 6610
+ },
+ {
+ "epoch": 91.82481432940149,
+ "grad_norm": 0.2618633806705475,
+ "learning_rate": 0.0006,
+ "loss": 3.459503173828125,
+ "step": 6611
+ },
+ {
+ "epoch": 91.83879423328965,
+ "grad_norm": 0.2603336274623871,
+ "learning_rate": 0.0006,
+ "loss": 3.476443290710449,
+ "step": 6612
+ },
+ {
+ "epoch": 91.8527741371778,
+ "grad_norm": 0.2600095868110657,
+ "learning_rate": 0.0006,
+ "loss": 3.4230222702026367,
+ "step": 6613
+ },
+ {
+ "epoch": 91.86675404106597,
+ "grad_norm": 0.3156466484069824,
+ "learning_rate": 0.0006,
+ "loss": 3.4416275024414062,
+ "step": 6614
+ },
+ {
+ "epoch": 91.88073394495413,
+ "grad_norm": 0.33223336935043335,
+ "learning_rate": 0.0006,
+ "loss": 3.459763526916504,
+ "step": 6615
+ },
+ {
+ "epoch": 91.89471384884229,
+ "grad_norm": 0.24999754130840302,
+ "learning_rate": 0.0006,
+ "loss": 3.4882445335388184,
+ "step": 6616
+ },
+ {
+ "epoch": 91.90869375273044,
+ "grad_norm": 0.2177472859621048,
+ "learning_rate": 0.0006,
+ "loss": 3.4443440437316895,
+ "step": 6617
+ },
+ {
+ "epoch": 91.92267365661861,
+ "grad_norm": 0.23315973579883575,
+ "learning_rate": 0.0006,
+ "loss": 3.453639507293701,
+ "step": 6618
+ },
+ {
+ "epoch": 91.93665356050677,
+ "grad_norm": 0.25978362560272217,
+ "learning_rate": 0.0006,
+ "loss": 3.4746177196502686,
+ "step": 6619
+ },
+ {
+ "epoch": 91.95063346439493,
+ "grad_norm": 0.2419944554567337,
+ "learning_rate": 0.0006,
+ "loss": 3.4525551795959473,
+ "step": 6620
+ },
+ {
+ "epoch": 91.9646133682831,
+ "grad_norm": 0.23098371922969818,
+ "learning_rate": 0.0006,
+ "loss": 3.4819016456604004,
+ "step": 6621
+ },
+ {
+ "epoch": 91.97859327217125,
+ "grad_norm": 0.2250458300113678,
+ "learning_rate": 0.0006,
+ "loss": 3.4790477752685547,
+ "step": 6622
+ },
+ {
+ "epoch": 91.99257317605941,
+ "grad_norm": 0.2512681484222412,
+ "learning_rate": 0.0006,
+ "loss": 3.444125175476074,
+ "step": 6623
+ },
+ {
+ "epoch": 92.0,
+ "grad_norm": 0.29921481013298035,
+ "learning_rate": 0.0006,
+ "loss": 3.4197065830230713,
+ "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/mask15-l2r50-fulle-lm/checkpoint-6624/training_args.bin b/runs/mask15-l2r50-fulle-lm/checkpoint-6624/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..43721c50815fe94f90cb043bf545b8f7bd9afc38
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-6624/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:a0b8d7bb9ac952b1abed3bd1e5c8f6ebd20daa957b3a85688954f8df03be6eb9
+size 4856
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-6912/chat_template.jinja b/runs/mask15-l2r50-fulle-lm/checkpoint-6912/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/mask15-l2r50-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/mask15-l2r50-fulle-lm/checkpoint-6912/config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-6912/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..1b4ac3c550d6003148026765eba4cb1512b216c9
--- /dev/null
+++ b/runs/mask15-l2r50-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": 151672
+}
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-6912/generation_config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-6912/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..5cd15fe1269fd505cfdefe9b3e9989dacd9f68f4
--- /dev/null
+++ b/runs/mask15-l2r50-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/mask15-l2r50-fulle-lm/checkpoint-6912/model.safetensors b/runs/mask15-l2r50-fulle-lm/checkpoint-6912/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..94a7dfa95e94d6f606787730040b03988e2db15c
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-6912/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:e2ee0bd86422bca83ecf348c5b6ebb190818b5ef33f9c4d3f0f2b27e73ac34e8
+size 583358280
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-6912/optimizer.pt b/runs/mask15-l2r50-fulle-lm/checkpoint-6912/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..392f97c9dbcd4f43780458e7248abb3f075a9dbf
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-6912/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:b1b69b95c2d7df33b47b0809437c84191e184f1dca2e479018b9a87a58caa3b2
+size 1166831994
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-6912/rng_state_0.pth b/runs/mask15-l2r50-fulle-lm/checkpoint-6912/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..c8ed1b6c4eff9fcb3e8308f500833992561ef4d2
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-6912/rng_state_0.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:3faa65cfabade45377846df8148800a72d345b79ca77c258101e72747ac5a1b1
+size 14512
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-6912/rng_state_1.pth b/runs/mask15-l2r50-fulle-lm/checkpoint-6912/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..f1e1988b84792dac0b29b24dffaa16f83cd455dc
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-6912/rng_state_1.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:eef2784434ebf2a0a5c73f24696547eb760d6bfdc7263b9f378de6f195e7d2e4
+size 14512
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-6912/scheduler.pt b/runs/mask15-l2r50-fulle-lm/checkpoint-6912/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..80771355cefe444a789dc3e83678b2d55d3b8db3
--- /dev/null
+++ b/runs/mask15-l2r50-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/mask15-l2r50-fulle-lm/checkpoint-6912/tokenizer.json b/runs/mask15-l2r50-fulle-lm/checkpoint-6912/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..6226bf25372d1a86dbd704ec75d2129960f1ba88
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-6912/tokenizer.json
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:9245fe3cb2d40f9ed8d5d8ddd1d58701ba2a236beec08f656162281673f30560
+size 11424264
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-6912/tokenizer_config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-6912/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..01bc9676576e8cf62a08a9db166d6c5bab1d6727
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-6912/tokenizer_config.json
@@ -0,0 +1,20 @@
+{
+ "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|>",
+ "<|mask|>"
+ ],
+ "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/mask15-l2r50-fulle-lm/checkpoint-6912/trainer_state.json b/runs/mask15-l2r50-fulle-lm/checkpoint-6912/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..b6e6fb8be0e3144e8356c43f6ab58c24463057ee
--- /dev/null
+++ b/runs/mask15-l2r50-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": 9.807971954345703,
+ "learning_rate": 0.0,
+ "loss": 11.989814758300781,
+ "step": 1
+ },
+ {
+ "epoch": 0.027959807776321538,
+ "grad_norm": 9.834383010864258,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 11.993022918701172,
+ "step": 2
+ },
+ {
+ "epoch": 0.04193971166448231,
+ "grad_norm": 9.482470512390137,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 11.854345321655273,
+ "step": 3
+ },
+ {
+ "epoch": 0.055919615552643076,
+ "grad_norm": 7.678808689117432,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 11.618255615234375,
+ "step": 4
+ },
+ {
+ "epoch": 0.06989951944080385,
+ "grad_norm": 6.011275291442871,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 11.351423263549805,
+ "step": 5
+ },
+ {
+ "epoch": 0.08387942332896461,
+ "grad_norm": 5.244393825531006,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 11.128631591796875,
+ "step": 6
+ },
+ {
+ "epoch": 0.09785932721712538,
+ "grad_norm": 4.577618598937988,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 10.921937942504883,
+ "step": 7
+ },
+ {
+ "epoch": 0.11183923110528615,
+ "grad_norm": 4.03810453414917,
+ "learning_rate": 4.2e-05,
+ "loss": 10.742650985717773,
+ "step": 8
+ },
+ {
+ "epoch": 0.1258191349934469,
+ "grad_norm": 3.657679796218872,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 10.600778579711914,
+ "step": 9
+ },
+ {
+ "epoch": 0.1397990388816077,
+ "grad_norm": 3.352902889251709,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 10.489639282226562,
+ "step": 10
+ },
+ {
+ "epoch": 0.15377894276976845,
+ "grad_norm": 3.1162633895874023,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 10.417770385742188,
+ "step": 11
+ },
+ {
+ "epoch": 0.16775884665792923,
+ "grad_norm": 3.0402638912200928,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 10.35334587097168,
+ "step": 12
+ },
+ {
+ "epoch": 0.18173875054608998,
+ "grad_norm": 3.030630111694336,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 10.306867599487305,
+ "step": 13
+ },
+ {
+ "epoch": 0.19571865443425077,
+ "grad_norm": 3.035292148590088,
+ "learning_rate": 7.8e-05,
+ "loss": 10.26003646850586,
+ "step": 14
+ },
+ {
+ "epoch": 0.20969855832241152,
+ "grad_norm": 3.0125675201416016,
+ "learning_rate": 8.4e-05,
+ "loss": 10.219265937805176,
+ "step": 15
+ },
+ {
+ "epoch": 0.2236784622105723,
+ "grad_norm": 2.9998886585235596,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 10.161077499389648,
+ "step": 16
+ },
+ {
+ "epoch": 0.23765836609873306,
+ "grad_norm": 2.9411966800689697,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 10.107423782348633,
+ "step": 17
+ },
+ {
+ "epoch": 0.2516382699868938,
+ "grad_norm": 2.88081955909729,
+ "learning_rate": 0.000102,
+ "loss": 10.04700756072998,
+ "step": 18
+ },
+ {
+ "epoch": 0.2656181738750546,
+ "grad_norm": 2.8219687938690186,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 9.981185913085938,
+ "step": 19
+ },
+ {
+ "epoch": 0.2795980777632154,
+ "grad_norm": 2.79306960105896,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 9.89747142791748,
+ "step": 20
+ },
+ {
+ "epoch": 0.29357798165137616,
+ "grad_norm": 2.7314443588256836,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 9.829219818115234,
+ "step": 21
+ },
+ {
+ "epoch": 0.3075578855395369,
+ "grad_norm": 2.6923747062683105,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 9.747566223144531,
+ "step": 22
+ },
+ {
+ "epoch": 0.3215377894276977,
+ "grad_norm": 2.650602340698242,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 9.66455078125,
+ "step": 23
+ },
+ {
+ "epoch": 0.33551769331585846,
+ "grad_norm": 2.606977701187134,
+ "learning_rate": 0.000138,
+ "loss": 9.582326889038086,
+ "step": 24
+ },
+ {
+ "epoch": 0.34949759720401924,
+ "grad_norm": 2.567256212234497,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 9.492591857910156,
+ "step": 25
+ },
+ {
+ "epoch": 0.36347750109217997,
+ "grad_norm": 2.520740509033203,
+ "learning_rate": 0.00015,
+ "loss": 9.396563529968262,
+ "step": 26
+ },
+ {
+ "epoch": 0.37745740498034075,
+ "grad_norm": 2.471588611602783,
+ "learning_rate": 0.000156,
+ "loss": 9.303571701049805,
+ "step": 27
+ },
+ {
+ "epoch": 0.39143730886850153,
+ "grad_norm": 2.4341530799865723,
+ "learning_rate": 0.000162,
+ "loss": 9.191819190979004,
+ "step": 28
+ },
+ {
+ "epoch": 0.4054172127566623,
+ "grad_norm": 2.369244337081909,
+ "learning_rate": 0.000168,
+ "loss": 9.092012405395508,
+ "step": 29
+ },
+ {
+ "epoch": 0.41939711664482304,
+ "grad_norm": 2.28625226020813,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 8.984567642211914,
+ "step": 30
+ },
+ {
+ "epoch": 0.4333770205329838,
+ "grad_norm": 2.2082231044769287,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 8.889009475708008,
+ "step": 31
+ },
+ {
+ "epoch": 0.4473569244211446,
+ "grad_norm": 2.1429483890533447,
+ "learning_rate": 0.000186,
+ "loss": 8.778556823730469,
+ "step": 32
+ },
+ {
+ "epoch": 0.4613368283093054,
+ "grad_norm": 2.0937352180480957,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 8.661166191101074,
+ "step": 33
+ },
+ {
+ "epoch": 0.4753167321974661,
+ "grad_norm": 2.040790557861328,
+ "learning_rate": 0.000198,
+ "loss": 8.550382614135742,
+ "step": 34
+ },
+ {
+ "epoch": 0.4892966360856269,
+ "grad_norm": 1.93914794921875,
+ "learning_rate": 0.000204,
+ "loss": 8.463907241821289,
+ "step": 35
+ },
+ {
+ "epoch": 0.5032765399737876,
+ "grad_norm": 1.8624178171157837,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 8.3438720703125,
+ "step": 36
+ },
+ {
+ "epoch": 0.5172564438619485,
+ "grad_norm": 1.8107167482376099,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 8.21871566772461,
+ "step": 37
+ },
+ {
+ "epoch": 0.5312363477501092,
+ "grad_norm": 1.717979073524475,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 8.113494873046875,
+ "step": 38
+ },
+ {
+ "epoch": 0.54521625163827,
+ "grad_norm": 1.668742060661316,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 8.006099700927734,
+ "step": 39
+ },
+ {
+ "epoch": 0.5591961555264308,
+ "grad_norm": 1.6147786378860474,
+ "learning_rate": 0.000234,
+ "loss": 7.911509037017822,
+ "step": 40
+ },
+ {
+ "epoch": 0.5731760594145915,
+ "grad_norm": 1.535750150680542,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 7.822839736938477,
+ "step": 41
+ },
+ {
+ "epoch": 0.5871559633027523,
+ "grad_norm": 1.4700065851211548,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 7.713842868804932,
+ "step": 42
+ },
+ {
+ "epoch": 0.601135867190913,
+ "grad_norm": 1.39020574092865,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 7.6040191650390625,
+ "step": 43
+ },
+ {
+ "epoch": 0.6151157710790738,
+ "grad_norm": 1.2875399589538574,
+ "learning_rate": 0.000258,
+ "loss": 7.550642013549805,
+ "step": 44
+ },
+ {
+ "epoch": 0.6290956749672346,
+ "grad_norm": 1.2094247341156006,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 7.460824012756348,
+ "step": 45
+ },
+ {
+ "epoch": 0.6430755788553953,
+ "grad_norm": 1.126452088356018,
+ "learning_rate": 0.00027,
+ "loss": 7.380537986755371,
+ "step": 46
+ },
+ {
+ "epoch": 0.6570554827435562,
+ "grad_norm": 1.0313163995742798,
+ "learning_rate": 0.000276,
+ "loss": 7.286153793334961,
+ "step": 47
+ },
+ {
+ "epoch": 0.6710353866317169,
+ "grad_norm": 0.9172859787940979,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 7.2064714431762695,
+ "step": 48
+ },
+ {
+ "epoch": 0.6850152905198776,
+ "grad_norm": 0.8148201107978821,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 7.158207416534424,
+ "step": 49
+ },
+ {
+ "epoch": 0.6989951944080385,
+ "grad_norm": 0.650123119354248,
+ "learning_rate": 0.000294,
+ "loss": 7.108791828155518,
+ "step": 50
+ },
+ {
+ "epoch": 0.7129750982961992,
+ "grad_norm": 0.5437585711479187,
+ "learning_rate": 0.0003,
+ "loss": 7.083050727844238,
+ "step": 51
+ },
+ {
+ "epoch": 0.7269550021843599,
+ "grad_norm": 0.46762895584106445,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 7.058027267456055,
+ "step": 52
+ },
+ {
+ "epoch": 0.7409349060725208,
+ "grad_norm": 0.47947561740875244,
+ "learning_rate": 0.000312,
+ "loss": 7.015172958374023,
+ "step": 53
+ },
+ {
+ "epoch": 0.7549148099606815,
+ "grad_norm": 0.7546492218971252,
+ "learning_rate": 0.000318,
+ "loss": 7.024629592895508,
+ "step": 54
+ },
+ {
+ "epoch": 0.7688947138488423,
+ "grad_norm": 0.6153718829154968,
+ "learning_rate": 0.000324,
+ "loss": 7.026667594909668,
+ "step": 55
+ },
+ {
+ "epoch": 0.7828746177370031,
+ "grad_norm": 0.3359069228172302,
+ "learning_rate": 0.00033,
+ "loss": 7.008166313171387,
+ "step": 56
+ },
+ {
+ "epoch": 0.7968545216251638,
+ "grad_norm": 0.48906823992729187,
+ "learning_rate": 0.000336,
+ "loss": 7.019716262817383,
+ "step": 57
+ },
+ {
+ "epoch": 0.8108344255133246,
+ "grad_norm": 0.5525421500205994,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 7.02108097076416,
+ "step": 58
+ },
+ {
+ "epoch": 0.8248143294014854,
+ "grad_norm": 0.3103712201118469,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 7.003164768218994,
+ "step": 59
+ },
+ {
+ "epoch": 0.8387942332896461,
+ "grad_norm": 0.4431874752044678,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 7.003463268280029,
+ "step": 60
+ },
+ {
+ "epoch": 0.8527741371778069,
+ "grad_norm": 0.4291120767593384,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 6.96931791305542,
+ "step": 61
+ },
+ {
+ "epoch": 0.8667540410659677,
+ "grad_norm": 0.6566054224967957,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 6.989445686340332,
+ "step": 62
+ },
+ {
+ "epoch": 0.8807339449541285,
+ "grad_norm": 0.20663189888000488,
+ "learning_rate": 0.000372,
+ "loss": 6.9669342041015625,
+ "step": 63
+ },
+ {
+ "epoch": 0.8947138488422892,
+ "grad_norm": 0.6242535710334778,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 6.949883460998535,
+ "step": 64
+ },
+ {
+ "epoch": 0.9086937527304499,
+ "grad_norm": 0.6984224915504456,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 6.955153465270996,
+ "step": 65
+ },
+ {
+ "epoch": 0.9226736566186108,
+ "grad_norm": 0.6328083872795105,
+ "learning_rate": 0.00039,
+ "loss": 6.965421676635742,
+ "step": 66
+ },
+ {
+ "epoch": 0.9366535605067715,
+ "grad_norm": 1.213352918624878,
+ "learning_rate": 0.000396,
+ "loss": 6.9454345703125,
+ "step": 67
+ },
+ {
+ "epoch": 0.9506334643949322,
+ "grad_norm": 0.9221940636634827,
+ "learning_rate": 0.000402,
+ "loss": 6.923908233642578,
+ "step": 68
+ },
+ {
+ "epoch": 0.9646133682830931,
+ "grad_norm": 0.6825450658798218,
+ "learning_rate": 0.000408,
+ "loss": 6.910131454467773,
+ "step": 69
+ },
+ {
+ "epoch": 0.9785932721712538,
+ "grad_norm": 0.5690162181854248,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 6.89891242980957,
+ "step": 70
+ },
+ {
+ "epoch": 0.9925731760594146,
+ "grad_norm": 0.4320870041847229,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 6.896081924438477,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.31632405519485474,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 6.897444725036621,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 7.757839679718018,
+ "eval_runtime": 43.8338,
+ "eval_samples_per_second": 55.71,
+ "eval_steps_per_second": 3.49,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139799038881607,
+ "grad_norm": 0.3789916932582855,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 6.877245903015137,
+ "step": 73
+ },
+ {
+ "epoch": 1.0279598077763215,
+ "grad_norm": 0.9167932868003845,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 6.921600341796875,
+ "step": 74
+ },
+ {
+ "epoch": 1.0419397116644824,
+ "grad_norm": 0.581188440322876,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 6.861001968383789,
+ "step": 75
+ },
+ {
+ "epoch": 1.0559196155526431,
+ "grad_norm": 0.4179714024066925,
+ "learning_rate": 0.00045,
+ "loss": 6.875657081604004,
+ "step": 76
+ },
+ {
+ "epoch": 1.0698995194408039,
+ "grad_norm": 1.0669957399368286,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 6.857122421264648,
+ "step": 77
+ },
+ {
+ "epoch": 1.0838794233289646,
+ "grad_norm": 0.27855145931243896,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 6.828852653503418,
+ "step": 78
+ },
+ {
+ "epoch": 1.0978593272171253,
+ "grad_norm": 0.7192047834396362,
+ "learning_rate": 0.000468,
+ "loss": 6.870839595794678,
+ "step": 79
+ },
+ {
+ "epoch": 1.1118392311052863,
+ "grad_norm": 0.5583325624465942,
+ "learning_rate": 0.000474,
+ "loss": 6.8497514724731445,
+ "step": 80
+ },
+ {
+ "epoch": 1.125819134993447,
+ "grad_norm": 0.3001925051212311,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 6.858528137207031,
+ "step": 81
+ },
+ {
+ "epoch": 1.1397990388816077,
+ "grad_norm": 0.2408239096403122,
+ "learning_rate": 0.000486,
+ "loss": 6.83231258392334,
+ "step": 82
+ },
+ {
+ "epoch": 1.1537789427697684,
+ "grad_norm": 0.28230324387550354,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 6.815476894378662,
+ "step": 83
+ },
+ {
+ "epoch": 1.1677588466579292,
+ "grad_norm": 0.3247123658657074,
+ "learning_rate": 0.000498,
+ "loss": 6.780126094818115,
+ "step": 84
+ },
+ {
+ "epoch": 1.18173875054609,
+ "grad_norm": 0.25713011622428894,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 6.7798309326171875,
+ "step": 85
+ },
+ {
+ "epoch": 1.1957186544342508,
+ "grad_norm": 0.5386835932731628,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 6.791745185852051,
+ "step": 86
+ },
+ {
+ "epoch": 1.2096985583224116,
+ "grad_norm": 0.2226393222808838,
+ "learning_rate": 0.000516,
+ "loss": 6.7826972007751465,
+ "step": 87
+ },
+ {
+ "epoch": 1.2236784622105723,
+ "grad_norm": 0.4338362216949463,
+ "learning_rate": 0.000522,
+ "loss": 6.805043697357178,
+ "step": 88
+ },
+ {
+ "epoch": 1.237658366098733,
+ "grad_norm": 0.2953208386898041,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 6.768434524536133,
+ "step": 89
+ },
+ {
+ "epoch": 1.2516382699868938,
+ "grad_norm": 0.13453717529773712,
+ "learning_rate": 0.000534,
+ "loss": 6.773697376251221,
+ "step": 90
+ },
+ {
+ "epoch": 1.2656181738750547,
+ "grad_norm": 0.35774412751197815,
+ "learning_rate": 0.00054,
+ "loss": 6.766414642333984,
+ "step": 91
+ },
+ {
+ "epoch": 1.2795980777632154,
+ "grad_norm": 0.4669720530509949,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 6.754847526550293,
+ "step": 92
+ },
+ {
+ "epoch": 1.2935779816513762,
+ "grad_norm": 0.13806621730327606,
+ "learning_rate": 0.000552,
+ "loss": 6.746858596801758,
+ "step": 93
+ },
+ {
+ "epoch": 1.307557885539537,
+ "grad_norm": 0.3280332386493683,
+ "learning_rate": 0.000558,
+ "loss": 6.715662956237793,
+ "step": 94
+ },
+ {
+ "epoch": 1.3215377894276976,
+ "grad_norm": 0.4689937233924866,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 6.734938144683838,
+ "step": 95
+ },
+ {
+ "epoch": 1.3355176933158583,
+ "grad_norm": 0.35371264815330505,
+ "learning_rate": 0.00057,
+ "loss": 6.748386383056641,
+ "step": 96
+ },
+ {
+ "epoch": 1.3494975972040193,
+ "grad_norm": 0.15232303738594055,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 6.705557823181152,
+ "step": 97
+ },
+ {
+ "epoch": 1.36347750109218,
+ "grad_norm": 0.30132821202278137,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 6.7199859619140625,
+ "step": 98
+ },
+ {
+ "epoch": 1.3774574049803407,
+ "grad_norm": 0.42174842953681946,
+ "learning_rate": 0.000588,
+ "loss": 6.715370178222656,
+ "step": 99
+ },
+ {
+ "epoch": 1.3914373088685015,
+ "grad_norm": 0.6257228851318359,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 6.707026958465576,
+ "step": 100
+ },
+ {
+ "epoch": 1.4054172127566624,
+ "grad_norm": 0.4551195800304413,
+ "learning_rate": 0.0006,
+ "loss": 6.7078423500061035,
+ "step": 101
+ },
+ {
+ "epoch": 1.4193971166448232,
+ "grad_norm": 0.41940346360206604,
+ "learning_rate": 0.0006,
+ "loss": 6.6959357261657715,
+ "step": 102
+ },
+ {
+ "epoch": 1.4333770205329839,
+ "grad_norm": 0.32251718640327454,
+ "learning_rate": 0.0006,
+ "loss": 6.689168930053711,
+ "step": 103
+ },
+ {
+ "epoch": 1.4473569244211446,
+ "grad_norm": 0.2992720305919647,
+ "learning_rate": 0.0006,
+ "loss": 6.680738925933838,
+ "step": 104
+ },
+ {
+ "epoch": 1.4613368283093053,
+ "grad_norm": 0.3228456974029541,
+ "learning_rate": 0.0006,
+ "loss": 6.672350883483887,
+ "step": 105
+ },
+ {
+ "epoch": 1.475316732197466,
+ "grad_norm": 0.24954743683338165,
+ "learning_rate": 0.0006,
+ "loss": 6.653716087341309,
+ "step": 106
+ },
+ {
+ "epoch": 1.4892966360856268,
+ "grad_norm": 0.30740687251091003,
+ "learning_rate": 0.0006,
+ "loss": 6.676583290100098,
+ "step": 107
+ },
+ {
+ "epoch": 1.5032765399737875,
+ "grad_norm": 0.24950599670410156,
+ "learning_rate": 0.0006,
+ "loss": 6.656691551208496,
+ "step": 108
+ },
+ {
+ "epoch": 1.5172564438619485,
+ "grad_norm": 0.24293005466461182,
+ "learning_rate": 0.0006,
+ "loss": 6.640995979309082,
+ "step": 109
+ },
+ {
+ "epoch": 1.5312363477501092,
+ "grad_norm": 0.30167272686958313,
+ "learning_rate": 0.0006,
+ "loss": 6.647380352020264,
+ "step": 110
+ },
+ {
+ "epoch": 1.5452162516382701,
+ "grad_norm": 0.4424632787704468,
+ "learning_rate": 0.0006,
+ "loss": 6.6548261642456055,
+ "step": 111
+ },
+ {
+ "epoch": 1.5591961555264309,
+ "grad_norm": 0.5295748114585876,
+ "learning_rate": 0.0006,
+ "loss": 6.64370059967041,
+ "step": 112
+ },
+ {
+ "epoch": 1.5731760594145916,
+ "grad_norm": 0.6829339265823364,
+ "learning_rate": 0.0006,
+ "loss": 6.654196739196777,
+ "step": 113
+ },
+ {
+ "epoch": 1.5871559633027523,
+ "grad_norm": 0.6534460186958313,
+ "learning_rate": 0.0006,
+ "loss": 6.675765037536621,
+ "step": 114
+ },
+ {
+ "epoch": 1.601135867190913,
+ "grad_norm": 0.6172244548797607,
+ "learning_rate": 0.0006,
+ "loss": 6.631234169006348,
+ "step": 115
+ },
+ {
+ "epoch": 1.6151157710790738,
+ "grad_norm": 0.5650008320808411,
+ "learning_rate": 0.0006,
+ "loss": 6.654262542724609,
+ "step": 116
+ },
+ {
+ "epoch": 1.6290956749672345,
+ "grad_norm": 0.3890475928783417,
+ "learning_rate": 0.0006,
+ "loss": 6.627526760101318,
+ "step": 117
+ },
+ {
+ "epoch": 1.6430755788553952,
+ "grad_norm": 0.6409873366355896,
+ "learning_rate": 0.0006,
+ "loss": 6.619794845581055,
+ "step": 118
+ },
+ {
+ "epoch": 1.6570554827435562,
+ "grad_norm": 0.5052326321601868,
+ "learning_rate": 0.0006,
+ "loss": 6.612556457519531,
+ "step": 119
+ },
+ {
+ "epoch": 1.671035386631717,
+ "grad_norm": 0.5001237988471985,
+ "learning_rate": 0.0006,
+ "loss": 6.577266693115234,
+ "step": 120
+ },
+ {
+ "epoch": 1.6850152905198776,
+ "grad_norm": 0.5328938364982605,
+ "learning_rate": 0.0006,
+ "loss": 6.59553337097168,
+ "step": 121
+ },
+ {
+ "epoch": 1.6989951944080386,
+ "grad_norm": 0.3568951189517975,
+ "learning_rate": 0.0006,
+ "loss": 6.602717399597168,
+ "step": 122
+ },
+ {
+ "epoch": 1.7129750982961993,
+ "grad_norm": 0.4017309546470642,
+ "learning_rate": 0.0006,
+ "loss": 6.589657783508301,
+ "step": 123
+ },
+ {
+ "epoch": 1.72695500218436,
+ "grad_norm": 0.21432629227638245,
+ "learning_rate": 0.0006,
+ "loss": 6.586555480957031,
+ "step": 124
+ },
+ {
+ "epoch": 1.7409349060725208,
+ "grad_norm": 0.21038052439689636,
+ "learning_rate": 0.0006,
+ "loss": 6.576569557189941,
+ "step": 125
+ },
+ {
+ "epoch": 1.7549148099606815,
+ "grad_norm": 0.23074904084205627,
+ "learning_rate": 0.0006,
+ "loss": 6.5880632400512695,
+ "step": 126
+ },
+ {
+ "epoch": 1.7688947138488422,
+ "grad_norm": 0.42963048815727234,
+ "learning_rate": 0.0006,
+ "loss": 6.603862762451172,
+ "step": 127
+ },
+ {
+ "epoch": 1.782874617737003,
+ "grad_norm": 0.361331045627594,
+ "learning_rate": 0.0006,
+ "loss": 6.579834938049316,
+ "step": 128
+ },
+ {
+ "epoch": 1.7968545216251637,
+ "grad_norm": 0.4951060712337494,
+ "learning_rate": 0.0006,
+ "loss": 6.570443630218506,
+ "step": 129
+ },
+ {
+ "epoch": 1.8108344255133246,
+ "grad_norm": 0.2258434295654297,
+ "learning_rate": 0.0006,
+ "loss": 6.5664777755737305,
+ "step": 130
+ },
+ {
+ "epoch": 1.8248143294014854,
+ "grad_norm": 0.2922155559062958,
+ "learning_rate": 0.0006,
+ "loss": 6.561326503753662,
+ "step": 131
+ },
+ {
+ "epoch": 1.838794233289646,
+ "grad_norm": 0.19068220257759094,
+ "learning_rate": 0.0006,
+ "loss": 6.528727054595947,
+ "step": 132
+ },
+ {
+ "epoch": 1.852774137177807,
+ "grad_norm": 0.2122010439634323,
+ "learning_rate": 0.0006,
+ "loss": 6.535636901855469,
+ "step": 133
+ },
+ {
+ "epoch": 1.8667540410659678,
+ "grad_norm": 0.25760164856910706,
+ "learning_rate": 0.0006,
+ "loss": 6.530498504638672,
+ "step": 134
+ },
+ {
+ "epoch": 1.8807339449541285,
+ "grad_norm": 0.1761016845703125,
+ "learning_rate": 0.0006,
+ "loss": 6.514466285705566,
+ "step": 135
+ },
+ {
+ "epoch": 1.8947138488422892,
+ "grad_norm": 0.2250051498413086,
+ "learning_rate": 0.0006,
+ "loss": 6.521268844604492,
+ "step": 136
+ },
+ {
+ "epoch": 1.90869375273045,
+ "grad_norm": 0.34458497166633606,
+ "learning_rate": 0.0006,
+ "loss": 6.512831687927246,
+ "step": 137
+ },
+ {
+ "epoch": 1.9226736566186107,
+ "grad_norm": 0.3468617796897888,
+ "learning_rate": 0.0006,
+ "loss": 6.515641689300537,
+ "step": 138
+ },
+ {
+ "epoch": 1.9366535605067714,
+ "grad_norm": 0.5051495432853699,
+ "learning_rate": 0.0006,
+ "loss": 6.5147905349731445,
+ "step": 139
+ },
+ {
+ "epoch": 1.9506334643949321,
+ "grad_norm": 0.7106727361679077,
+ "learning_rate": 0.0006,
+ "loss": 6.519277572631836,
+ "step": 140
+ },
+ {
+ "epoch": 1.964613368283093,
+ "grad_norm": 0.8881394267082214,
+ "learning_rate": 0.0006,
+ "loss": 6.526865482330322,
+ "step": 141
+ },
+ {
+ "epoch": 1.9785932721712538,
+ "grad_norm": 0.5552834272384644,
+ "learning_rate": 0.0006,
+ "loss": 6.469970226287842,
+ "step": 142
+ },
+ {
+ "epoch": 1.9925731760594148,
+ "grad_norm": 0.6903126835823059,
+ "learning_rate": 0.0006,
+ "loss": 6.476300239562988,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.47679027915000916,
+ "learning_rate": 0.0006,
+ "loss": 6.463827133178711,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 7.388528823852539,
+ "eval_runtime": 44.2519,
+ "eval_samples_per_second": 55.184,
+ "eval_steps_per_second": 3.457,
+ "step": 144
+ },
+ {
+ "epoch": 2.0139799038881607,
+ "grad_norm": 0.4719221293926239,
+ "learning_rate": 0.0006,
+ "loss": 6.480956077575684,
+ "step": 145
+ },
+ {
+ "epoch": 2.0279598077763215,
+ "grad_norm": 0.41137924790382385,
+ "learning_rate": 0.0006,
+ "loss": 6.449707984924316,
+ "step": 146
+ },
+ {
+ "epoch": 2.041939711664482,
+ "grad_norm": 0.4237765371799469,
+ "learning_rate": 0.0006,
+ "loss": 6.467435836791992,
+ "step": 147
+ },
+ {
+ "epoch": 2.055919615552643,
+ "grad_norm": 0.44081810116767883,
+ "learning_rate": 0.0006,
+ "loss": 6.436868667602539,
+ "step": 148
+ },
+ {
+ "epoch": 2.0698995194408036,
+ "grad_norm": 0.4163798391819,
+ "learning_rate": 0.0006,
+ "loss": 6.4642014503479,
+ "step": 149
+ },
+ {
+ "epoch": 2.083879423328965,
+ "grad_norm": 0.3831583261489868,
+ "learning_rate": 0.0006,
+ "loss": 6.454092025756836,
+ "step": 150
+ },
+ {
+ "epoch": 2.0978593272171255,
+ "grad_norm": 0.37721413373947144,
+ "learning_rate": 0.0006,
+ "loss": 6.426377296447754,
+ "step": 151
+ },
+ {
+ "epoch": 2.1118392311052863,
+ "grad_norm": 0.3323550224304199,
+ "learning_rate": 0.0006,
+ "loss": 6.421375274658203,
+ "step": 152
+ },
+ {
+ "epoch": 2.125819134993447,
+ "grad_norm": 0.47739624977111816,
+ "learning_rate": 0.0006,
+ "loss": 6.412004470825195,
+ "step": 153
+ },
+ {
+ "epoch": 2.1397990388816077,
+ "grad_norm": 0.8530274629592896,
+ "learning_rate": 0.0006,
+ "loss": 6.410468578338623,
+ "step": 154
+ },
+ {
+ "epoch": 2.1537789427697684,
+ "grad_norm": 0.6420364379882812,
+ "learning_rate": 0.0006,
+ "loss": 6.413525581359863,
+ "step": 155
+ },
+ {
+ "epoch": 2.167758846657929,
+ "grad_norm": 0.5005049109458923,
+ "learning_rate": 0.0006,
+ "loss": 6.401463508605957,
+ "step": 156
+ },
+ {
+ "epoch": 2.18173875054609,
+ "grad_norm": 0.3614683449268341,
+ "learning_rate": 0.0006,
+ "loss": 6.390063285827637,
+ "step": 157
+ },
+ {
+ "epoch": 2.1957186544342506,
+ "grad_norm": 0.595215380191803,
+ "learning_rate": 0.0006,
+ "loss": 6.369806289672852,
+ "step": 158
+ },
+ {
+ "epoch": 2.2096985583224114,
+ "grad_norm": 0.5700321793556213,
+ "learning_rate": 0.0006,
+ "loss": 6.368378639221191,
+ "step": 159
+ },
+ {
+ "epoch": 2.2236784622105725,
+ "grad_norm": 0.36273983120918274,
+ "learning_rate": 0.0006,
+ "loss": 6.366860389709473,
+ "step": 160
+ },
+ {
+ "epoch": 2.2376583660987333,
+ "grad_norm": 0.2850998342037201,
+ "learning_rate": 0.0006,
+ "loss": 6.352144718170166,
+ "step": 161
+ },
+ {
+ "epoch": 2.251638269986894,
+ "grad_norm": 0.38558584451675415,
+ "learning_rate": 0.0006,
+ "loss": 6.375765800476074,
+ "step": 162
+ },
+ {
+ "epoch": 2.2656181738750547,
+ "grad_norm": 0.34809231758117676,
+ "learning_rate": 0.0006,
+ "loss": 6.350445747375488,
+ "step": 163
+ },
+ {
+ "epoch": 2.2795980777632154,
+ "grad_norm": 0.5211818814277649,
+ "learning_rate": 0.0006,
+ "loss": 6.354585647583008,
+ "step": 164
+ },
+ {
+ "epoch": 2.293577981651376,
+ "grad_norm": 1.0809133052825928,
+ "learning_rate": 0.0006,
+ "loss": 6.3752007484436035,
+ "step": 165
+ },
+ {
+ "epoch": 2.307557885539537,
+ "grad_norm": 0.8293641209602356,
+ "learning_rate": 0.0006,
+ "loss": 6.35113525390625,
+ "step": 166
+ },
+ {
+ "epoch": 2.3215377894276976,
+ "grad_norm": 0.3428577780723572,
+ "learning_rate": 0.0006,
+ "loss": 6.334470748901367,
+ "step": 167
+ },
+ {
+ "epoch": 2.3355176933158583,
+ "grad_norm": 0.7587600946426392,
+ "learning_rate": 0.0006,
+ "loss": 6.353979587554932,
+ "step": 168
+ },
+ {
+ "epoch": 2.349497597204019,
+ "grad_norm": 0.4227249026298523,
+ "learning_rate": 0.0006,
+ "loss": 6.34018611907959,
+ "step": 169
+ },
+ {
+ "epoch": 2.36347750109218,
+ "grad_norm": 0.4226846694946289,
+ "learning_rate": 0.0006,
+ "loss": 6.290019989013672,
+ "step": 170
+ },
+ {
+ "epoch": 2.3774574049803405,
+ "grad_norm": 0.38412365317344666,
+ "learning_rate": 0.0006,
+ "loss": 6.309510231018066,
+ "step": 171
+ },
+ {
+ "epoch": 2.3914373088685017,
+ "grad_norm": 0.45698508620262146,
+ "learning_rate": 0.0006,
+ "loss": 6.283290863037109,
+ "step": 172
+ },
+ {
+ "epoch": 2.4054172127566624,
+ "grad_norm": 0.7575915455818176,
+ "learning_rate": 0.0006,
+ "loss": 6.306073188781738,
+ "step": 173
+ },
+ {
+ "epoch": 2.419397116644823,
+ "grad_norm": 0.695123553276062,
+ "learning_rate": 0.0006,
+ "loss": 6.308144569396973,
+ "step": 174
+ },
+ {
+ "epoch": 2.433377020532984,
+ "grad_norm": 0.5035743117332458,
+ "learning_rate": 0.0006,
+ "loss": 6.282073974609375,
+ "step": 175
+ },
+ {
+ "epoch": 2.4473569244211446,
+ "grad_norm": 0.3158020079135895,
+ "learning_rate": 0.0006,
+ "loss": 6.282169342041016,
+ "step": 176
+ },
+ {
+ "epoch": 2.4613368283093053,
+ "grad_norm": 0.4829689860343933,
+ "learning_rate": 0.0006,
+ "loss": 6.264578819274902,
+ "step": 177
+ },
+ {
+ "epoch": 2.475316732197466,
+ "grad_norm": 0.3992770314216614,
+ "learning_rate": 0.0006,
+ "loss": 6.228628158569336,
+ "step": 178
+ },
+ {
+ "epoch": 2.489296636085627,
+ "grad_norm": 0.40887606143951416,
+ "learning_rate": 0.0006,
+ "loss": 6.230792045593262,
+ "step": 179
+ },
+ {
+ "epoch": 2.5032765399737875,
+ "grad_norm": 0.3540310263633728,
+ "learning_rate": 0.0006,
+ "loss": 6.222573280334473,
+ "step": 180
+ },
+ {
+ "epoch": 2.5172564438619487,
+ "grad_norm": 0.496219664812088,
+ "learning_rate": 0.0006,
+ "loss": 6.212109565734863,
+ "step": 181
+ },
+ {
+ "epoch": 2.5312363477501094,
+ "grad_norm": 0.435173898935318,
+ "learning_rate": 0.0006,
+ "loss": 6.221210479736328,
+ "step": 182
+ },
+ {
+ "epoch": 2.54521625163827,
+ "grad_norm": 0.5364007949829102,
+ "learning_rate": 0.0006,
+ "loss": 6.217929840087891,
+ "step": 183
+ },
+ {
+ "epoch": 2.559196155526431,
+ "grad_norm": 0.5946390628814697,
+ "learning_rate": 0.0006,
+ "loss": 6.189267158508301,
+ "step": 184
+ },
+ {
+ "epoch": 2.5731760594145916,
+ "grad_norm": 0.41621312499046326,
+ "learning_rate": 0.0006,
+ "loss": 6.182415008544922,
+ "step": 185
+ },
+ {
+ "epoch": 2.5871559633027523,
+ "grad_norm": 0.5442072749137878,
+ "learning_rate": 0.0006,
+ "loss": 6.150757789611816,
+ "step": 186
+ },
+ {
+ "epoch": 2.601135867190913,
+ "grad_norm": 0.727843165397644,
+ "learning_rate": 0.0006,
+ "loss": 6.146082878112793,
+ "step": 187
+ },
+ {
+ "epoch": 2.615115771079074,
+ "grad_norm": 0.8898891806602478,
+ "learning_rate": 0.0006,
+ "loss": 6.190483093261719,
+ "step": 188
+ },
+ {
+ "epoch": 2.6290956749672345,
+ "grad_norm": 0.5173947215080261,
+ "learning_rate": 0.0006,
+ "loss": 6.151251792907715,
+ "step": 189
+ },
+ {
+ "epoch": 2.6430755788553952,
+ "grad_norm": 0.6476729512214661,
+ "learning_rate": 0.0006,
+ "loss": 6.154841423034668,
+ "step": 190
+ },
+ {
+ "epoch": 2.657055482743556,
+ "grad_norm": 0.3538810908794403,
+ "learning_rate": 0.0006,
+ "loss": 6.103879928588867,
+ "step": 191
+ },
+ {
+ "epoch": 2.6710353866317167,
+ "grad_norm": 0.4773508310317993,
+ "learning_rate": 0.0006,
+ "loss": 6.118101119995117,
+ "step": 192
+ },
+ {
+ "epoch": 2.6850152905198774,
+ "grad_norm": 0.29213786125183105,
+ "learning_rate": 0.0006,
+ "loss": 6.108916282653809,
+ "step": 193
+ },
+ {
+ "epoch": 2.6989951944080386,
+ "grad_norm": 0.40800607204437256,
+ "learning_rate": 0.0006,
+ "loss": 6.113438606262207,
+ "step": 194
+ },
+ {
+ "epoch": 2.7129750982961993,
+ "grad_norm": 0.31157299876213074,
+ "learning_rate": 0.0006,
+ "loss": 6.101809501647949,
+ "step": 195
+ },
+ {
+ "epoch": 2.72695500218436,
+ "grad_norm": 0.28660309314727783,
+ "learning_rate": 0.0006,
+ "loss": 6.075886249542236,
+ "step": 196
+ },
+ {
+ "epoch": 2.7409349060725208,
+ "grad_norm": 0.3810449540615082,
+ "learning_rate": 0.0006,
+ "loss": 6.053257942199707,
+ "step": 197
+ },
+ {
+ "epoch": 2.7549148099606815,
+ "grad_norm": 0.21741755306720734,
+ "learning_rate": 0.0006,
+ "loss": 6.013825416564941,
+ "step": 198
+ },
+ {
+ "epoch": 2.7688947138488422,
+ "grad_norm": 0.2777678966522217,
+ "learning_rate": 0.0006,
+ "loss": 6.054204940795898,
+ "step": 199
+ },
+ {
+ "epoch": 2.782874617737003,
+ "grad_norm": 0.28503066301345825,
+ "learning_rate": 0.0006,
+ "loss": 6.035628318786621,
+ "step": 200
+ },
+ {
+ "epoch": 2.7968545216251637,
+ "grad_norm": 0.41954755783081055,
+ "learning_rate": 0.0006,
+ "loss": 6.028354644775391,
+ "step": 201
+ },
+ {
+ "epoch": 2.810834425513325,
+ "grad_norm": 0.8785563111305237,
+ "learning_rate": 0.0006,
+ "loss": 6.055761337280273,
+ "step": 202
+ },
+ {
+ "epoch": 2.8248143294014856,
+ "grad_norm": 1.7459558248519897,
+ "learning_rate": 0.0006,
+ "loss": 6.11599588394165,
+ "step": 203
+ },
+ {
+ "epoch": 2.8387942332896463,
+ "grad_norm": 0.5725523233413696,
+ "learning_rate": 0.0006,
+ "loss": 6.024280548095703,
+ "step": 204
+ },
+ {
+ "epoch": 2.852774137177807,
+ "grad_norm": 0.5913150906562805,
+ "learning_rate": 0.0006,
+ "loss": 6.050281524658203,
+ "step": 205
+ },
+ {
+ "epoch": 2.8667540410659678,
+ "grad_norm": 0.5929384827613831,
+ "learning_rate": 0.0006,
+ "loss": 6.041121482849121,
+ "step": 206
+ },
+ {
+ "epoch": 2.8807339449541285,
+ "grad_norm": 0.5650724768638611,
+ "learning_rate": 0.0006,
+ "loss": 6.004258155822754,
+ "step": 207
+ },
+ {
+ "epoch": 2.894713848842289,
+ "grad_norm": 0.3420545756816864,
+ "learning_rate": 0.0006,
+ "loss": 5.983296871185303,
+ "step": 208
+ },
+ {
+ "epoch": 2.90869375273045,
+ "grad_norm": 0.2960914075374603,
+ "learning_rate": 0.0006,
+ "loss": 5.988578796386719,
+ "step": 209
+ },
+ {
+ "epoch": 2.9226736566186107,
+ "grad_norm": 0.3252662718296051,
+ "learning_rate": 0.0006,
+ "loss": 5.99103307723999,
+ "step": 210
+ },
+ {
+ "epoch": 2.9366535605067714,
+ "grad_norm": 0.4851132929325104,
+ "learning_rate": 0.0006,
+ "loss": 6.0028977394104,
+ "step": 211
+ },
+ {
+ "epoch": 2.950633464394932,
+ "grad_norm": 0.5639995336532593,
+ "learning_rate": 0.0006,
+ "loss": 5.965080738067627,
+ "step": 212
+ },
+ {
+ "epoch": 2.964613368283093,
+ "grad_norm": 0.4514601230621338,
+ "learning_rate": 0.0006,
+ "loss": 5.961450576782227,
+ "step": 213
+ },
+ {
+ "epoch": 2.9785932721712536,
+ "grad_norm": 0.5397921800613403,
+ "learning_rate": 0.0006,
+ "loss": 5.965290546417236,
+ "step": 214
+ },
+ {
+ "epoch": 2.9925731760594148,
+ "grad_norm": 0.4735587239265442,
+ "learning_rate": 0.0006,
+ "loss": 5.952754497528076,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.32061058282852173,
+ "learning_rate": 0.0006,
+ "loss": 5.961667060852051,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 6.8517303466796875,
+ "eval_runtime": 44.03,
+ "eval_samples_per_second": 55.462,
+ "eval_steps_per_second": 3.475,
+ "step": 216
+ },
+ {
+ "epoch": 3.0139799038881607,
+ "grad_norm": 0.3537784814834595,
+ "learning_rate": 0.0006,
+ "loss": 5.928008079528809,
+ "step": 217
+ },
+ {
+ "epoch": 3.0279598077763215,
+ "grad_norm": 0.40713080763816833,
+ "learning_rate": 0.0006,
+ "loss": 5.9150800704956055,
+ "step": 218
+ },
+ {
+ "epoch": 3.041939711664482,
+ "grad_norm": 0.2548826336860657,
+ "learning_rate": 0.0006,
+ "loss": 5.919757843017578,
+ "step": 219
+ },
+ {
+ "epoch": 3.055919615552643,
+ "grad_norm": 0.2818543016910553,
+ "learning_rate": 0.0006,
+ "loss": 5.913688659667969,
+ "step": 220
+ },
+ {
+ "epoch": 3.0698995194408036,
+ "grad_norm": 0.4196692705154419,
+ "learning_rate": 0.0006,
+ "loss": 5.8675336837768555,
+ "step": 221
+ },
+ {
+ "epoch": 3.083879423328965,
+ "grad_norm": 0.35272282361984253,
+ "learning_rate": 0.0006,
+ "loss": 5.878874778747559,
+ "step": 222
+ },
+ {
+ "epoch": 3.0978593272171255,
+ "grad_norm": 0.3254282772541046,
+ "learning_rate": 0.0006,
+ "loss": 5.8823041915893555,
+ "step": 223
+ },
+ {
+ "epoch": 3.1118392311052863,
+ "grad_norm": 0.4052561819553375,
+ "learning_rate": 0.0006,
+ "loss": 5.867744445800781,
+ "step": 224
+ },
+ {
+ "epoch": 3.125819134993447,
+ "grad_norm": 0.31246256828308105,
+ "learning_rate": 0.0006,
+ "loss": 5.886094093322754,
+ "step": 225
+ },
+ {
+ "epoch": 3.1397990388816077,
+ "grad_norm": 0.3479118347167969,
+ "learning_rate": 0.0006,
+ "loss": 5.850762367248535,
+ "step": 226
+ },
+ {
+ "epoch": 3.1537789427697684,
+ "grad_norm": 0.5037238597869873,
+ "learning_rate": 0.0006,
+ "loss": 5.844175815582275,
+ "step": 227
+ },
+ {
+ "epoch": 3.167758846657929,
+ "grad_norm": 0.6271815896034241,
+ "learning_rate": 0.0006,
+ "loss": 5.871790885925293,
+ "step": 228
+ },
+ {
+ "epoch": 3.18173875054609,
+ "grad_norm": 0.43838298320770264,
+ "learning_rate": 0.0006,
+ "loss": 5.844024658203125,
+ "step": 229
+ },
+ {
+ "epoch": 3.1957186544342506,
+ "grad_norm": 0.4755159616470337,
+ "learning_rate": 0.0006,
+ "loss": 5.846892356872559,
+ "step": 230
+ },
+ {
+ "epoch": 3.2096985583224114,
+ "grad_norm": 0.5229779481887817,
+ "learning_rate": 0.0006,
+ "loss": 5.827000617980957,
+ "step": 231
+ },
+ {
+ "epoch": 3.2236784622105725,
+ "grad_norm": 0.8264499306678772,
+ "learning_rate": 0.0006,
+ "loss": 5.867050647735596,
+ "step": 232
+ },
+ {
+ "epoch": 3.2376583660987333,
+ "grad_norm": 1.0607538223266602,
+ "learning_rate": 0.0006,
+ "loss": 5.877876281738281,
+ "step": 233
+ },
+ {
+ "epoch": 3.251638269986894,
+ "grad_norm": 0.7656505703926086,
+ "learning_rate": 0.0006,
+ "loss": 5.86760139465332,
+ "step": 234
+ },
+ {
+ "epoch": 3.2656181738750547,
+ "grad_norm": 0.7940183281898499,
+ "learning_rate": 0.0006,
+ "loss": 5.861355781555176,
+ "step": 235
+ },
+ {
+ "epoch": 3.2795980777632154,
+ "grad_norm": 0.45171424746513367,
+ "learning_rate": 0.0006,
+ "loss": 5.799808502197266,
+ "step": 236
+ },
+ {
+ "epoch": 3.293577981651376,
+ "grad_norm": 0.6174989342689514,
+ "learning_rate": 0.0006,
+ "loss": 5.8585920333862305,
+ "step": 237
+ },
+ {
+ "epoch": 3.307557885539537,
+ "grad_norm": 0.5341290831565857,
+ "learning_rate": 0.0006,
+ "loss": 5.8116044998168945,
+ "step": 238
+ },
+ {
+ "epoch": 3.3215377894276976,
+ "grad_norm": 0.3938343822956085,
+ "learning_rate": 0.0006,
+ "loss": 5.83797550201416,
+ "step": 239
+ },
+ {
+ "epoch": 3.3355176933158583,
+ "grad_norm": 0.5106972455978394,
+ "learning_rate": 0.0006,
+ "loss": 5.832303047180176,
+ "step": 240
+ },
+ {
+ "epoch": 3.349497597204019,
+ "grad_norm": 0.3791428506374359,
+ "learning_rate": 0.0006,
+ "loss": 5.794981956481934,
+ "step": 241
+ },
+ {
+ "epoch": 3.36347750109218,
+ "grad_norm": 0.42287978529930115,
+ "learning_rate": 0.0006,
+ "loss": 5.788144111633301,
+ "step": 242
+ },
+ {
+ "epoch": 3.3774574049803405,
+ "grad_norm": 0.27334436774253845,
+ "learning_rate": 0.0006,
+ "loss": 5.771070957183838,
+ "step": 243
+ },
+ {
+ "epoch": 3.3914373088685017,
+ "grad_norm": 0.2470470368862152,
+ "learning_rate": 0.0006,
+ "loss": 5.755998611450195,
+ "step": 244
+ },
+ {
+ "epoch": 3.4054172127566624,
+ "grad_norm": 0.3043915033340454,
+ "learning_rate": 0.0006,
+ "loss": 5.779492378234863,
+ "step": 245
+ },
+ {
+ "epoch": 3.419397116644823,
+ "grad_norm": 0.2960112988948822,
+ "learning_rate": 0.0006,
+ "loss": 5.750328063964844,
+ "step": 246
+ },
+ {
+ "epoch": 3.433377020532984,
+ "grad_norm": 0.3046723008155823,
+ "learning_rate": 0.0006,
+ "loss": 5.776517868041992,
+ "step": 247
+ },
+ {
+ "epoch": 3.4473569244211446,
+ "grad_norm": 0.22461780905723572,
+ "learning_rate": 0.0006,
+ "loss": 5.760989665985107,
+ "step": 248
+ },
+ {
+ "epoch": 3.4613368283093053,
+ "grad_norm": 0.24625757336616516,
+ "learning_rate": 0.0006,
+ "loss": 5.759706497192383,
+ "step": 249
+ },
+ {
+ "epoch": 3.475316732197466,
+ "grad_norm": 0.18207131326198578,
+ "learning_rate": 0.0006,
+ "loss": 5.747040748596191,
+ "step": 250
+ },
+ {
+ "epoch": 3.489296636085627,
+ "grad_norm": 0.16473834216594696,
+ "learning_rate": 0.0006,
+ "loss": 5.761577606201172,
+ "step": 251
+ },
+ {
+ "epoch": 3.5032765399737875,
+ "grad_norm": 0.25155773758888245,
+ "learning_rate": 0.0006,
+ "loss": 5.696502208709717,
+ "step": 252
+ },
+ {
+ "epoch": 3.5172564438619487,
+ "grad_norm": 0.24115674197673798,
+ "learning_rate": 0.0006,
+ "loss": 5.676957130432129,
+ "step": 253
+ },
+ {
+ "epoch": 3.5312363477501094,
+ "grad_norm": 0.40912172198295593,
+ "learning_rate": 0.0006,
+ "loss": 5.695090293884277,
+ "step": 254
+ },
+ {
+ "epoch": 3.54521625163827,
+ "grad_norm": 0.6727662682533264,
+ "learning_rate": 0.0006,
+ "loss": 5.722194671630859,
+ "step": 255
+ },
+ {
+ "epoch": 3.559196155526431,
+ "grad_norm": 0.8450719118118286,
+ "learning_rate": 0.0006,
+ "loss": 5.764680862426758,
+ "step": 256
+ },
+ {
+ "epoch": 3.5731760594145916,
+ "grad_norm": 0.9916183352470398,
+ "learning_rate": 0.0006,
+ "loss": 5.754530429840088,
+ "step": 257
+ },
+ {
+ "epoch": 3.5871559633027523,
+ "grad_norm": 1.041922688484192,
+ "learning_rate": 0.0006,
+ "loss": 5.781468391418457,
+ "step": 258
+ },
+ {
+ "epoch": 3.601135867190913,
+ "grad_norm": 0.972039520740509,
+ "learning_rate": 0.0006,
+ "loss": 5.760323524475098,
+ "step": 259
+ },
+ {
+ "epoch": 3.615115771079074,
+ "grad_norm": 0.6802462935447693,
+ "learning_rate": 0.0006,
+ "loss": 5.750064849853516,
+ "step": 260
+ },
+ {
+ "epoch": 3.6290956749672345,
+ "grad_norm": 0.48553529381752014,
+ "learning_rate": 0.0006,
+ "loss": 5.7464094161987305,
+ "step": 261
+ },
+ {
+ "epoch": 3.6430755788553952,
+ "grad_norm": 0.4066704213619232,
+ "learning_rate": 0.0006,
+ "loss": 5.719789505004883,
+ "step": 262
+ },
+ {
+ "epoch": 3.657055482743556,
+ "grad_norm": 0.3300860822200775,
+ "learning_rate": 0.0006,
+ "loss": 5.719920635223389,
+ "step": 263
+ },
+ {
+ "epoch": 3.6710353866317167,
+ "grad_norm": 0.3286679983139038,
+ "learning_rate": 0.0006,
+ "loss": 5.723465919494629,
+ "step": 264
+ },
+ {
+ "epoch": 3.6850152905198774,
+ "grad_norm": 0.27653390169143677,
+ "learning_rate": 0.0006,
+ "loss": 5.713820457458496,
+ "step": 265
+ },
+ {
+ "epoch": 3.6989951944080386,
+ "grad_norm": 0.26138055324554443,
+ "learning_rate": 0.0006,
+ "loss": 5.683221817016602,
+ "step": 266
+ },
+ {
+ "epoch": 3.7129750982961993,
+ "grad_norm": 0.23706290125846863,
+ "learning_rate": 0.0006,
+ "loss": 5.6896867752075195,
+ "step": 267
+ },
+ {
+ "epoch": 3.72695500218436,
+ "grad_norm": 0.2751729190349579,
+ "learning_rate": 0.0006,
+ "loss": 5.710301876068115,
+ "step": 268
+ },
+ {
+ "epoch": 3.7409349060725208,
+ "grad_norm": 0.255393385887146,
+ "learning_rate": 0.0006,
+ "loss": 5.687932968139648,
+ "step": 269
+ },
+ {
+ "epoch": 3.7549148099606815,
+ "grad_norm": 0.21453925967216492,
+ "learning_rate": 0.0006,
+ "loss": 5.68234395980835,
+ "step": 270
+ },
+ {
+ "epoch": 3.7688947138488422,
+ "grad_norm": 0.21771012246608734,
+ "learning_rate": 0.0006,
+ "loss": 5.683980464935303,
+ "step": 271
+ },
+ {
+ "epoch": 3.782874617737003,
+ "grad_norm": 0.1884593963623047,
+ "learning_rate": 0.0006,
+ "loss": 5.662779808044434,
+ "step": 272
+ },
+ {
+ "epoch": 3.7968545216251637,
+ "grad_norm": 0.20429612696170807,
+ "learning_rate": 0.0006,
+ "loss": 5.650941848754883,
+ "step": 273
+ },
+ {
+ "epoch": 3.810834425513325,
+ "grad_norm": 0.22586797177791595,
+ "learning_rate": 0.0006,
+ "loss": 5.639376640319824,
+ "step": 274
+ },
+ {
+ "epoch": 3.8248143294014856,
+ "grad_norm": 0.19651705026626587,
+ "learning_rate": 0.0006,
+ "loss": 5.612030029296875,
+ "step": 275
+ },
+ {
+ "epoch": 3.8387942332896463,
+ "grad_norm": 0.2125253826379776,
+ "learning_rate": 0.0006,
+ "loss": 5.622836589813232,
+ "step": 276
+ },
+ {
+ "epoch": 3.852774137177807,
+ "grad_norm": 0.2905234694480896,
+ "learning_rate": 0.0006,
+ "loss": 5.624594688415527,
+ "step": 277
+ },
+ {
+ "epoch": 3.8667540410659678,
+ "grad_norm": 0.2718426585197449,
+ "learning_rate": 0.0006,
+ "loss": 5.619892120361328,
+ "step": 278
+ },
+ {
+ "epoch": 3.8807339449541285,
+ "grad_norm": 0.26481127738952637,
+ "learning_rate": 0.0006,
+ "loss": 5.612496852874756,
+ "step": 279
+ },
+ {
+ "epoch": 3.894713848842289,
+ "grad_norm": 0.2876453399658203,
+ "learning_rate": 0.0006,
+ "loss": 5.59157133102417,
+ "step": 280
+ },
+ {
+ "epoch": 3.90869375273045,
+ "grad_norm": 0.22829554975032806,
+ "learning_rate": 0.0006,
+ "loss": 5.5884199142456055,
+ "step": 281
+ },
+ {
+ "epoch": 3.9226736566186107,
+ "grad_norm": 0.22852344810962677,
+ "learning_rate": 0.0006,
+ "loss": 5.618719100952148,
+ "step": 282
+ },
+ {
+ "epoch": 3.9366535605067714,
+ "grad_norm": 0.37366563081741333,
+ "learning_rate": 0.0006,
+ "loss": 5.611738204956055,
+ "step": 283
+ },
+ {
+ "epoch": 3.950633464394932,
+ "grad_norm": 0.5650382041931152,
+ "learning_rate": 0.0006,
+ "loss": 5.606371879577637,
+ "step": 284
+ },
+ {
+ "epoch": 3.964613368283093,
+ "grad_norm": 0.5960066914558411,
+ "learning_rate": 0.0006,
+ "loss": 5.595022201538086,
+ "step": 285
+ },
+ {
+ "epoch": 3.9785932721712536,
+ "grad_norm": 0.3561663031578064,
+ "learning_rate": 0.0006,
+ "loss": 5.581035614013672,
+ "step": 286
+ },
+ {
+ "epoch": 3.9925731760594148,
+ "grad_norm": 0.44699913263320923,
+ "learning_rate": 0.0006,
+ "loss": 5.568033218383789,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.42783990502357483,
+ "learning_rate": 0.0006,
+ "loss": 5.571993827819824,
+ "step": 288
+ },
+ {
+ "epoch": 4.0,
+ "eval_loss": 6.349016189575195,
+ "eval_runtime": 44.3326,
+ "eval_samples_per_second": 55.084,
+ "eval_steps_per_second": 3.451,
+ "step": 288
+ },
+ {
+ "epoch": 4.013979903888161,
+ "grad_norm": 0.41305896639823914,
+ "learning_rate": 0.0006,
+ "loss": 5.562954902648926,
+ "step": 289
+ },
+ {
+ "epoch": 4.0279598077763215,
+ "grad_norm": 0.3966459035873413,
+ "learning_rate": 0.0006,
+ "loss": 5.5671916007995605,
+ "step": 290
+ },
+ {
+ "epoch": 4.041939711664482,
+ "grad_norm": 0.4846104085445404,
+ "learning_rate": 0.0006,
+ "loss": 5.548027038574219,
+ "step": 291
+ },
+ {
+ "epoch": 4.055919615552643,
+ "grad_norm": 0.5916333794593811,
+ "learning_rate": 0.0006,
+ "loss": 5.5900068283081055,
+ "step": 292
+ },
+ {
+ "epoch": 4.069899519440804,
+ "grad_norm": 0.5973889231681824,
+ "learning_rate": 0.0006,
+ "loss": 5.537594795227051,
+ "step": 293
+ },
+ {
+ "epoch": 4.083879423328964,
+ "grad_norm": 0.4190494418144226,
+ "learning_rate": 0.0006,
+ "loss": 5.534749984741211,
+ "step": 294
+ },
+ {
+ "epoch": 4.097859327217125,
+ "grad_norm": 0.5956901907920837,
+ "learning_rate": 0.0006,
+ "loss": 5.554540634155273,
+ "step": 295
+ },
+ {
+ "epoch": 4.111839231105286,
+ "grad_norm": 0.8257920742034912,
+ "learning_rate": 0.0006,
+ "loss": 5.5728068351745605,
+ "step": 296
+ },
+ {
+ "epoch": 4.1258191349934465,
+ "grad_norm": 0.7241750955581665,
+ "learning_rate": 0.0006,
+ "loss": 5.5643815994262695,
+ "step": 297
+ },
+ {
+ "epoch": 4.139799038881607,
+ "grad_norm": 0.45730507373809814,
+ "learning_rate": 0.0006,
+ "loss": 5.554225921630859,
+ "step": 298
+ },
+ {
+ "epoch": 4.153778942769769,
+ "grad_norm": 0.5166977643966675,
+ "learning_rate": 0.0006,
+ "loss": 5.540790557861328,
+ "step": 299
+ },
+ {
+ "epoch": 4.16775884665793,
+ "grad_norm": 0.433237761259079,
+ "learning_rate": 0.0006,
+ "loss": 5.536884784698486,
+ "step": 300
+ },
+ {
+ "epoch": 4.18173875054609,
+ "grad_norm": 0.3369830250740051,
+ "learning_rate": 0.0006,
+ "loss": 5.532837867736816,
+ "step": 301
+ },
+ {
+ "epoch": 4.195718654434251,
+ "grad_norm": 0.33091458678245544,
+ "learning_rate": 0.0006,
+ "loss": 5.547643661499023,
+ "step": 302
+ },
+ {
+ "epoch": 4.209698558322412,
+ "grad_norm": 0.36462724208831787,
+ "learning_rate": 0.0006,
+ "loss": 5.525021076202393,
+ "step": 303
+ },
+ {
+ "epoch": 4.2236784622105725,
+ "grad_norm": 0.3342771530151367,
+ "learning_rate": 0.0006,
+ "loss": 5.512082099914551,
+ "step": 304
+ },
+ {
+ "epoch": 4.237658366098733,
+ "grad_norm": 0.26784762740135193,
+ "learning_rate": 0.0006,
+ "loss": 5.488072395324707,
+ "step": 305
+ },
+ {
+ "epoch": 4.251638269986894,
+ "grad_norm": 0.25986987352371216,
+ "learning_rate": 0.0006,
+ "loss": 5.4960455894470215,
+ "step": 306
+ },
+ {
+ "epoch": 4.265618173875055,
+ "grad_norm": 0.24595795571804047,
+ "learning_rate": 0.0006,
+ "loss": 5.513367176055908,
+ "step": 307
+ },
+ {
+ "epoch": 4.279598077763215,
+ "grad_norm": 0.2224857211112976,
+ "learning_rate": 0.0006,
+ "loss": 5.465205192565918,
+ "step": 308
+ },
+ {
+ "epoch": 4.293577981651376,
+ "grad_norm": 0.26799243688583374,
+ "learning_rate": 0.0006,
+ "loss": 5.476632118225098,
+ "step": 309
+ },
+ {
+ "epoch": 4.307557885539537,
+ "grad_norm": 0.20443417131900787,
+ "learning_rate": 0.0006,
+ "loss": 5.442601203918457,
+ "step": 310
+ },
+ {
+ "epoch": 4.321537789427698,
+ "grad_norm": 0.2275059074163437,
+ "learning_rate": 0.0006,
+ "loss": 5.453519344329834,
+ "step": 311
+ },
+ {
+ "epoch": 4.335517693315858,
+ "grad_norm": 0.2860901951789856,
+ "learning_rate": 0.0006,
+ "loss": 5.439424514770508,
+ "step": 312
+ },
+ {
+ "epoch": 4.349497597204019,
+ "grad_norm": 0.3378142714500427,
+ "learning_rate": 0.0006,
+ "loss": 5.476953983306885,
+ "step": 313
+ },
+ {
+ "epoch": 4.36347750109218,
+ "grad_norm": 0.3487110733985901,
+ "learning_rate": 0.0006,
+ "loss": 5.47003698348999,
+ "step": 314
+ },
+ {
+ "epoch": 4.3774574049803405,
+ "grad_norm": 0.3655227720737457,
+ "learning_rate": 0.0006,
+ "loss": 5.454250812530518,
+ "step": 315
+ },
+ {
+ "epoch": 4.391437308868501,
+ "grad_norm": 0.3754786252975464,
+ "learning_rate": 0.0006,
+ "loss": 5.475249290466309,
+ "step": 316
+ },
+ {
+ "epoch": 4.405417212756662,
+ "grad_norm": 0.42494088411331177,
+ "learning_rate": 0.0006,
+ "loss": 5.4552459716796875,
+ "step": 317
+ },
+ {
+ "epoch": 4.419397116644823,
+ "grad_norm": 0.4914703667163849,
+ "learning_rate": 0.0006,
+ "loss": 5.431845188140869,
+ "step": 318
+ },
+ {
+ "epoch": 4.433377020532983,
+ "grad_norm": 0.42470860481262207,
+ "learning_rate": 0.0006,
+ "loss": 5.454581260681152,
+ "step": 319
+ },
+ {
+ "epoch": 4.447356924421145,
+ "grad_norm": 0.3828011155128479,
+ "learning_rate": 0.0006,
+ "loss": 5.435178756713867,
+ "step": 320
+ },
+ {
+ "epoch": 4.461336828309306,
+ "grad_norm": 0.47256892919540405,
+ "learning_rate": 0.0006,
+ "loss": 5.428861618041992,
+ "step": 321
+ },
+ {
+ "epoch": 4.4753167321974665,
+ "grad_norm": 0.5665146708488464,
+ "learning_rate": 0.0006,
+ "loss": 5.424633026123047,
+ "step": 322
+ },
+ {
+ "epoch": 4.489296636085627,
+ "grad_norm": 0.48146721720695496,
+ "learning_rate": 0.0006,
+ "loss": 5.4577860832214355,
+ "step": 323
+ },
+ {
+ "epoch": 4.503276539973788,
+ "grad_norm": 0.3378535509109497,
+ "learning_rate": 0.0006,
+ "loss": 5.422727108001709,
+ "step": 324
+ },
+ {
+ "epoch": 4.517256443861949,
+ "grad_norm": 0.41981473565101624,
+ "learning_rate": 0.0006,
+ "loss": 5.418993949890137,
+ "step": 325
+ },
+ {
+ "epoch": 4.531236347750109,
+ "grad_norm": 0.39389684796333313,
+ "learning_rate": 0.0006,
+ "loss": 5.41835880279541,
+ "step": 326
+ },
+ {
+ "epoch": 4.54521625163827,
+ "grad_norm": 0.5912176370620728,
+ "learning_rate": 0.0006,
+ "loss": 5.40073299407959,
+ "step": 327
+ },
+ {
+ "epoch": 4.559196155526431,
+ "grad_norm": 0.6877487897872925,
+ "learning_rate": 0.0006,
+ "loss": 5.445301055908203,
+ "step": 328
+ },
+ {
+ "epoch": 4.573176059414592,
+ "grad_norm": 0.580555260181427,
+ "learning_rate": 0.0006,
+ "loss": 5.431069374084473,
+ "step": 329
+ },
+ {
+ "epoch": 4.587155963302752,
+ "grad_norm": 0.5974457859992981,
+ "learning_rate": 0.0006,
+ "loss": 5.422694206237793,
+ "step": 330
+ },
+ {
+ "epoch": 4.601135867190913,
+ "grad_norm": 0.722481906414032,
+ "learning_rate": 0.0006,
+ "loss": 5.447752952575684,
+ "step": 331
+ },
+ {
+ "epoch": 4.615115771079074,
+ "grad_norm": 0.7687886953353882,
+ "learning_rate": 0.0006,
+ "loss": 5.437956809997559,
+ "step": 332
+ },
+ {
+ "epoch": 4.6290956749672345,
+ "grad_norm": 0.7368173003196716,
+ "learning_rate": 0.0006,
+ "loss": 5.4367241859436035,
+ "step": 333
+ },
+ {
+ "epoch": 4.643075578855395,
+ "grad_norm": 0.6650524139404297,
+ "learning_rate": 0.0006,
+ "loss": 5.4288434982299805,
+ "step": 334
+ },
+ {
+ "epoch": 4.657055482743556,
+ "grad_norm": 0.4997614920139313,
+ "learning_rate": 0.0006,
+ "loss": 5.412769317626953,
+ "step": 335
+ },
+ {
+ "epoch": 4.671035386631717,
+ "grad_norm": 0.44208982586860657,
+ "learning_rate": 0.0006,
+ "loss": 5.42405366897583,
+ "step": 336
+ },
+ {
+ "epoch": 4.685015290519877,
+ "grad_norm": 0.39510273933410645,
+ "learning_rate": 0.0006,
+ "loss": 5.402547836303711,
+ "step": 337
+ },
+ {
+ "epoch": 4.698995194408038,
+ "grad_norm": 0.44970476627349854,
+ "learning_rate": 0.0006,
+ "loss": 5.377168655395508,
+ "step": 338
+ },
+ {
+ "epoch": 4.712975098296199,
+ "grad_norm": 0.3902331590652466,
+ "learning_rate": 0.0006,
+ "loss": 5.401622772216797,
+ "step": 339
+ },
+ {
+ "epoch": 4.72695500218436,
+ "grad_norm": 0.33485135436058044,
+ "learning_rate": 0.0006,
+ "loss": 5.397945880889893,
+ "step": 340
+ },
+ {
+ "epoch": 4.740934906072521,
+ "grad_norm": 0.29062309861183167,
+ "learning_rate": 0.0006,
+ "loss": 5.356175422668457,
+ "step": 341
+ },
+ {
+ "epoch": 4.754914809960681,
+ "grad_norm": 0.23617377877235413,
+ "learning_rate": 0.0006,
+ "loss": 5.388517379760742,
+ "step": 342
+ },
+ {
+ "epoch": 4.768894713848843,
+ "grad_norm": 0.2704737186431885,
+ "learning_rate": 0.0006,
+ "loss": 5.3746137619018555,
+ "step": 343
+ },
+ {
+ "epoch": 4.782874617737003,
+ "grad_norm": 0.20488551259040833,
+ "learning_rate": 0.0006,
+ "loss": 5.3754472732543945,
+ "step": 344
+ },
+ {
+ "epoch": 4.796854521625164,
+ "grad_norm": 0.2007082849740982,
+ "learning_rate": 0.0006,
+ "loss": 5.3538618087768555,
+ "step": 345
+ },
+ {
+ "epoch": 4.810834425513325,
+ "grad_norm": 0.21732935309410095,
+ "learning_rate": 0.0006,
+ "loss": 5.351774215698242,
+ "step": 346
+ },
+ {
+ "epoch": 4.824814329401486,
+ "grad_norm": 0.1944841742515564,
+ "learning_rate": 0.0006,
+ "loss": 5.357545852661133,
+ "step": 347
+ },
+ {
+ "epoch": 4.838794233289646,
+ "grad_norm": 0.1953933835029602,
+ "learning_rate": 0.0006,
+ "loss": 5.321681022644043,
+ "step": 348
+ },
+ {
+ "epoch": 4.852774137177807,
+ "grad_norm": 0.1743433028459549,
+ "learning_rate": 0.0006,
+ "loss": 5.340302467346191,
+ "step": 349
+ },
+ {
+ "epoch": 4.866754041065968,
+ "grad_norm": 0.19655466079711914,
+ "learning_rate": 0.0006,
+ "loss": 5.325471878051758,
+ "step": 350
+ },
+ {
+ "epoch": 4.8807339449541285,
+ "grad_norm": 0.15761791169643402,
+ "learning_rate": 0.0006,
+ "loss": 5.3453240394592285,
+ "step": 351
+ },
+ {
+ "epoch": 4.894713848842289,
+ "grad_norm": 0.19164425134658813,
+ "learning_rate": 0.0006,
+ "loss": 5.315583229064941,
+ "step": 352
+ },
+ {
+ "epoch": 4.90869375273045,
+ "grad_norm": 0.28084540367126465,
+ "learning_rate": 0.0006,
+ "loss": 5.309171676635742,
+ "step": 353
+ },
+ {
+ "epoch": 4.922673656618611,
+ "grad_norm": 0.4681853652000427,
+ "learning_rate": 0.0006,
+ "loss": 5.318211078643799,
+ "step": 354
+ },
+ {
+ "epoch": 4.936653560506771,
+ "grad_norm": 0.6417295932769775,
+ "learning_rate": 0.0006,
+ "loss": 5.309263706207275,
+ "step": 355
+ },
+ {
+ "epoch": 4.950633464394932,
+ "grad_norm": 0.501312792301178,
+ "learning_rate": 0.0006,
+ "loss": 5.321534156799316,
+ "step": 356
+ },
+ {
+ "epoch": 4.964613368283093,
+ "grad_norm": 0.47502145171165466,
+ "learning_rate": 0.0006,
+ "loss": 5.323659896850586,
+ "step": 357
+ },
+ {
+ "epoch": 4.978593272171254,
+ "grad_norm": 0.5366594791412354,
+ "learning_rate": 0.0006,
+ "loss": 5.327367782592773,
+ "step": 358
+ },
+ {
+ "epoch": 4.992573176059414,
+ "grad_norm": 0.6986395120620728,
+ "learning_rate": 0.0006,
+ "loss": 5.311097145080566,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.6626625657081604,
+ "learning_rate": 0.0006,
+ "loss": 5.337558269500732,
+ "step": 360
+ },
+ {
+ "epoch": 5.0,
+ "eval_loss": 5.929230690002441,
+ "eval_runtime": 44.5268,
+ "eval_samples_per_second": 54.843,
+ "eval_steps_per_second": 3.436,
+ "step": 360
+ },
+ {
+ "epoch": 5.013979903888161,
+ "grad_norm": 0.7383704781532288,
+ "learning_rate": 0.0006,
+ "loss": 5.315563678741455,
+ "step": 361
+ },
+ {
+ "epoch": 5.0279598077763215,
+ "grad_norm": 0.7730138301849365,
+ "learning_rate": 0.0006,
+ "loss": 5.324905872344971,
+ "step": 362
+ },
+ {
+ "epoch": 5.041939711664482,
+ "grad_norm": 0.8170825839042664,
+ "learning_rate": 0.0006,
+ "loss": 5.350251197814941,
+ "step": 363
+ },
+ {
+ "epoch": 5.055919615552643,
+ "grad_norm": 0.6950958371162415,
+ "learning_rate": 0.0006,
+ "loss": 5.338744163513184,
+ "step": 364
+ },
+ {
+ "epoch": 5.069899519440804,
+ "grad_norm": 0.5582894086837769,
+ "learning_rate": 0.0006,
+ "loss": 5.340539932250977,
+ "step": 365
+ },
+ {
+ "epoch": 5.083879423328964,
+ "grad_norm": 0.4772159159183502,
+ "learning_rate": 0.0006,
+ "loss": 5.344161033630371,
+ "step": 366
+ },
+ {
+ "epoch": 5.097859327217125,
+ "grad_norm": 0.5432839393615723,
+ "learning_rate": 0.0006,
+ "loss": 5.312403678894043,
+ "step": 367
+ },
+ {
+ "epoch": 5.111839231105286,
+ "grad_norm": 0.4944784641265869,
+ "learning_rate": 0.0006,
+ "loss": 5.30281925201416,
+ "step": 368
+ },
+ {
+ "epoch": 5.1258191349934465,
+ "grad_norm": 0.4298315942287445,
+ "learning_rate": 0.0006,
+ "loss": 5.29564094543457,
+ "step": 369
+ },
+ {
+ "epoch": 5.139799038881607,
+ "grad_norm": 0.349889874458313,
+ "learning_rate": 0.0006,
+ "loss": 5.287062644958496,
+ "step": 370
+ },
+ {
+ "epoch": 5.153778942769769,
+ "grad_norm": 0.2823719084262848,
+ "learning_rate": 0.0006,
+ "loss": 5.28826904296875,
+ "step": 371
+ },
+ {
+ "epoch": 5.16775884665793,
+ "grad_norm": 0.32975050806999207,
+ "learning_rate": 0.0006,
+ "loss": 5.256399631500244,
+ "step": 372
+ },
+ {
+ "epoch": 5.18173875054609,
+ "grad_norm": 0.2963952124118805,
+ "learning_rate": 0.0006,
+ "loss": 5.273757457733154,
+ "step": 373
+ },
+ {
+ "epoch": 5.195718654434251,
+ "grad_norm": 0.21345984935760498,
+ "learning_rate": 0.0006,
+ "loss": 5.274978160858154,
+ "step": 374
+ },
+ {
+ "epoch": 5.209698558322412,
+ "grad_norm": 0.2363101840019226,
+ "learning_rate": 0.0006,
+ "loss": 5.261585235595703,
+ "step": 375
+ },
+ {
+ "epoch": 5.2236784622105725,
+ "grad_norm": 0.19626963138580322,
+ "learning_rate": 0.0006,
+ "loss": 5.259700298309326,
+ "step": 376
+ },
+ {
+ "epoch": 5.237658366098733,
+ "grad_norm": 0.21083571016788483,
+ "learning_rate": 0.0006,
+ "loss": 5.233585357666016,
+ "step": 377
+ },
+ {
+ "epoch": 5.251638269986894,
+ "grad_norm": 0.2273513823747635,
+ "learning_rate": 0.0006,
+ "loss": 5.231740474700928,
+ "step": 378
+ },
+ {
+ "epoch": 5.265618173875055,
+ "grad_norm": 0.18299247324466705,
+ "learning_rate": 0.0006,
+ "loss": 5.251256465911865,
+ "step": 379
+ },
+ {
+ "epoch": 5.279598077763215,
+ "grad_norm": 0.19578224420547485,
+ "learning_rate": 0.0006,
+ "loss": 5.230329513549805,
+ "step": 380
+ },
+ {
+ "epoch": 5.293577981651376,
+ "grad_norm": 0.20308879017829895,
+ "learning_rate": 0.0006,
+ "loss": 5.243951797485352,
+ "step": 381
+ },
+ {
+ "epoch": 5.307557885539537,
+ "grad_norm": 0.21053212881088257,
+ "learning_rate": 0.0006,
+ "loss": 5.210272789001465,
+ "step": 382
+ },
+ {
+ "epoch": 5.321537789427698,
+ "grad_norm": 0.21852520108222961,
+ "learning_rate": 0.0006,
+ "loss": 5.215418815612793,
+ "step": 383
+ },
+ {
+ "epoch": 5.335517693315858,
+ "grad_norm": 0.24872010946273804,
+ "learning_rate": 0.0006,
+ "loss": 5.225139617919922,
+ "step": 384
+ },
+ {
+ "epoch": 5.349497597204019,
+ "grad_norm": 0.27780187129974365,
+ "learning_rate": 0.0006,
+ "loss": 5.241010665893555,
+ "step": 385
+ },
+ {
+ "epoch": 5.36347750109218,
+ "grad_norm": 0.261767715215683,
+ "learning_rate": 0.0006,
+ "loss": 5.230723857879639,
+ "step": 386
+ },
+ {
+ "epoch": 5.3774574049803405,
+ "grad_norm": 0.2111261785030365,
+ "learning_rate": 0.0006,
+ "loss": 5.1848602294921875,
+ "step": 387
+ },
+ {
+ "epoch": 5.391437308868501,
+ "grad_norm": 0.24325387179851532,
+ "learning_rate": 0.0006,
+ "loss": 5.180911064147949,
+ "step": 388
+ },
+ {
+ "epoch": 5.405417212756662,
+ "grad_norm": 0.19542962312698364,
+ "learning_rate": 0.0006,
+ "loss": 5.189907073974609,
+ "step": 389
+ },
+ {
+ "epoch": 5.419397116644823,
+ "grad_norm": 0.20489346981048584,
+ "learning_rate": 0.0006,
+ "loss": 5.184634208679199,
+ "step": 390
+ },
+ {
+ "epoch": 5.433377020532983,
+ "grad_norm": 0.2753409147262573,
+ "learning_rate": 0.0006,
+ "loss": 5.190083026885986,
+ "step": 391
+ },
+ {
+ "epoch": 5.447356924421145,
+ "grad_norm": 0.3758019208908081,
+ "learning_rate": 0.0006,
+ "loss": 5.189423561096191,
+ "step": 392
+ },
+ {
+ "epoch": 5.461336828309306,
+ "grad_norm": 0.4425095021724701,
+ "learning_rate": 0.0006,
+ "loss": 5.17152214050293,
+ "step": 393
+ },
+ {
+ "epoch": 5.4753167321974665,
+ "grad_norm": 0.39721858501434326,
+ "learning_rate": 0.0006,
+ "loss": 5.189178466796875,
+ "step": 394
+ },
+ {
+ "epoch": 5.489296636085627,
+ "grad_norm": 0.43441957235336304,
+ "learning_rate": 0.0006,
+ "loss": 5.1823577880859375,
+ "step": 395
+ },
+ {
+ "epoch": 5.503276539973788,
+ "grad_norm": 0.3583861291408539,
+ "learning_rate": 0.0006,
+ "loss": 5.160187721252441,
+ "step": 396
+ },
+ {
+ "epoch": 5.517256443861949,
+ "grad_norm": 0.323290079832077,
+ "learning_rate": 0.0006,
+ "loss": 5.113046646118164,
+ "step": 397
+ },
+ {
+ "epoch": 5.531236347750109,
+ "grad_norm": 0.3049418330192566,
+ "learning_rate": 0.0006,
+ "loss": 5.172209739685059,
+ "step": 398
+ },
+ {
+ "epoch": 5.54521625163827,
+ "grad_norm": 0.3253744840621948,
+ "learning_rate": 0.0006,
+ "loss": 5.1970720291137695,
+ "step": 399
+ },
+ {
+ "epoch": 5.559196155526431,
+ "grad_norm": 0.3232555091381073,
+ "learning_rate": 0.0006,
+ "loss": 5.173195838928223,
+ "step": 400
+ },
+ {
+ "epoch": 5.573176059414592,
+ "grad_norm": 0.33751845359802246,
+ "learning_rate": 0.0006,
+ "loss": 5.137526988983154,
+ "step": 401
+ },
+ {
+ "epoch": 5.587155963302752,
+ "grad_norm": 0.45970913767814636,
+ "learning_rate": 0.0006,
+ "loss": 5.123377799987793,
+ "step": 402
+ },
+ {
+ "epoch": 5.601135867190913,
+ "grad_norm": 0.5383784770965576,
+ "learning_rate": 0.0006,
+ "loss": 5.154180526733398,
+ "step": 403
+ },
+ {
+ "epoch": 5.615115771079074,
+ "grad_norm": 0.45765912532806396,
+ "learning_rate": 0.0006,
+ "loss": 5.1485209465026855,
+ "step": 404
+ },
+ {
+ "epoch": 5.6290956749672345,
+ "grad_norm": 0.5079503059387207,
+ "learning_rate": 0.0006,
+ "loss": 5.158293724060059,
+ "step": 405
+ },
+ {
+ "epoch": 5.643075578855395,
+ "grad_norm": 0.4860183894634247,
+ "learning_rate": 0.0006,
+ "loss": 5.1610212326049805,
+ "step": 406
+ },
+ {
+ "epoch": 5.657055482743556,
+ "grad_norm": 0.4065648913383484,
+ "learning_rate": 0.0006,
+ "loss": 5.1260786056518555,
+ "step": 407
+ },
+ {
+ "epoch": 5.671035386631717,
+ "grad_norm": 0.39606142044067383,
+ "learning_rate": 0.0006,
+ "loss": 5.1598711013793945,
+ "step": 408
+ },
+ {
+ "epoch": 5.685015290519877,
+ "grad_norm": 0.4705151319503784,
+ "learning_rate": 0.0006,
+ "loss": 5.166455268859863,
+ "step": 409
+ },
+ {
+ "epoch": 5.698995194408038,
+ "grad_norm": 0.5040799379348755,
+ "learning_rate": 0.0006,
+ "loss": 5.1408209800720215,
+ "step": 410
+ },
+ {
+ "epoch": 5.712975098296199,
+ "grad_norm": 0.5012556910514832,
+ "learning_rate": 0.0006,
+ "loss": 5.144109725952148,
+ "step": 411
+ },
+ {
+ "epoch": 5.72695500218436,
+ "grad_norm": 0.44301411509513855,
+ "learning_rate": 0.0006,
+ "loss": 5.155509948730469,
+ "step": 412
+ },
+ {
+ "epoch": 5.740934906072521,
+ "grad_norm": 0.36632269620895386,
+ "learning_rate": 0.0006,
+ "loss": 5.123111248016357,
+ "step": 413
+ },
+ {
+ "epoch": 5.754914809960681,
+ "grad_norm": 0.2980524003505707,
+ "learning_rate": 0.0006,
+ "loss": 5.1355719566345215,
+ "step": 414
+ },
+ {
+ "epoch": 5.768894713848843,
+ "grad_norm": 0.3441782295703888,
+ "learning_rate": 0.0006,
+ "loss": 5.132327079772949,
+ "step": 415
+ },
+ {
+ "epoch": 5.782874617737003,
+ "grad_norm": 0.4150780737400055,
+ "learning_rate": 0.0006,
+ "loss": 5.148543357849121,
+ "step": 416
+ },
+ {
+ "epoch": 5.796854521625164,
+ "grad_norm": 0.48417383432388306,
+ "learning_rate": 0.0006,
+ "loss": 5.104989528656006,
+ "step": 417
+ },
+ {
+ "epoch": 5.810834425513325,
+ "grad_norm": 0.3216031491756439,
+ "learning_rate": 0.0006,
+ "loss": 5.0926127433776855,
+ "step": 418
+ },
+ {
+ "epoch": 5.824814329401486,
+ "grad_norm": 0.2821158468723297,
+ "learning_rate": 0.0006,
+ "loss": 5.112299919128418,
+ "step": 419
+ },
+ {
+ "epoch": 5.838794233289646,
+ "grad_norm": 0.29821011424064636,
+ "learning_rate": 0.0006,
+ "loss": 5.091662406921387,
+ "step": 420
+ },
+ {
+ "epoch": 5.852774137177807,
+ "grad_norm": 0.30570563673973083,
+ "learning_rate": 0.0006,
+ "loss": 5.137539863586426,
+ "step": 421
+ },
+ {
+ "epoch": 5.866754041065968,
+ "grad_norm": 0.4029594957828522,
+ "learning_rate": 0.0006,
+ "loss": 5.112751007080078,
+ "step": 422
+ },
+ {
+ "epoch": 5.8807339449541285,
+ "grad_norm": 0.3878514766693115,
+ "learning_rate": 0.0006,
+ "loss": 5.094973564147949,
+ "step": 423
+ },
+ {
+ "epoch": 5.894713848842289,
+ "grad_norm": 0.31936126947402954,
+ "learning_rate": 0.0006,
+ "loss": 5.081070899963379,
+ "step": 424
+ },
+ {
+ "epoch": 5.90869375273045,
+ "grad_norm": 0.3309082090854645,
+ "learning_rate": 0.0006,
+ "loss": 5.06803560256958,
+ "step": 425
+ },
+ {
+ "epoch": 5.922673656618611,
+ "grad_norm": 0.27830439805984497,
+ "learning_rate": 0.0006,
+ "loss": 5.044766426086426,
+ "step": 426
+ },
+ {
+ "epoch": 5.936653560506771,
+ "grad_norm": 0.3301011919975281,
+ "learning_rate": 0.0006,
+ "loss": 5.093942165374756,
+ "step": 427
+ },
+ {
+ "epoch": 5.950633464394932,
+ "grad_norm": 0.40845948457717896,
+ "learning_rate": 0.0006,
+ "loss": 5.0889458656311035,
+ "step": 428
+ },
+ {
+ "epoch": 5.964613368283093,
+ "grad_norm": 0.4412153959274292,
+ "learning_rate": 0.0006,
+ "loss": 5.064834117889404,
+ "step": 429
+ },
+ {
+ "epoch": 5.978593272171254,
+ "grad_norm": 0.3592590093612671,
+ "learning_rate": 0.0006,
+ "loss": 5.066648006439209,
+ "step": 430
+ },
+ {
+ "epoch": 5.992573176059414,
+ "grad_norm": 0.3952840268611908,
+ "learning_rate": 0.0006,
+ "loss": 5.066549301147461,
+ "step": 431
+ },
+ {
+ "epoch": 6.0,
+ "grad_norm": 0.38878682255744934,
+ "learning_rate": 0.0006,
+ "loss": 5.0354323387146,
+ "step": 432
+ },
+ {
+ "epoch": 6.0,
+ "eval_loss": 5.473907947540283,
+ "eval_runtime": 44.5121,
+ "eval_samples_per_second": 54.861,
+ "eval_steps_per_second": 3.437,
+ "step": 432
+ },
+ {
+ "epoch": 6.013979903888161,
+ "grad_norm": 0.42730140686035156,
+ "learning_rate": 0.0006,
+ "loss": 5.048557281494141,
+ "step": 433
+ },
+ {
+ "epoch": 6.0279598077763215,
+ "grad_norm": 0.32713913917541504,
+ "learning_rate": 0.0006,
+ "loss": 5.041255950927734,
+ "step": 434
+ },
+ {
+ "epoch": 6.041939711664482,
+ "grad_norm": 0.32520365715026855,
+ "learning_rate": 0.0006,
+ "loss": 5.043124198913574,
+ "step": 435
+ },
+ {
+ "epoch": 6.055919615552643,
+ "grad_norm": 0.2941839098930359,
+ "learning_rate": 0.0006,
+ "loss": 5.0407304763793945,
+ "step": 436
+ },
+ {
+ "epoch": 6.069899519440804,
+ "grad_norm": 0.3088819682598114,
+ "learning_rate": 0.0006,
+ "loss": 5.020771026611328,
+ "step": 437
+ },
+ {
+ "epoch": 6.083879423328964,
+ "grad_norm": 0.34334254264831543,
+ "learning_rate": 0.0006,
+ "loss": 5.0260009765625,
+ "step": 438
+ },
+ {
+ "epoch": 6.097859327217125,
+ "grad_norm": 0.33016136288642883,
+ "learning_rate": 0.0006,
+ "loss": 4.994412899017334,
+ "step": 439
+ },
+ {
+ "epoch": 6.111839231105286,
+ "grad_norm": 0.2527366280555725,
+ "learning_rate": 0.0006,
+ "loss": 4.997830390930176,
+ "step": 440
+ },
+ {
+ "epoch": 6.1258191349934465,
+ "grad_norm": 0.24742509424686432,
+ "learning_rate": 0.0006,
+ "loss": 5.017087936401367,
+ "step": 441
+ },
+ {
+ "epoch": 6.139799038881607,
+ "grad_norm": 0.22578303515911102,
+ "learning_rate": 0.0006,
+ "loss": 5.000683784484863,
+ "step": 442
+ },
+ {
+ "epoch": 6.153778942769769,
+ "grad_norm": 0.21213896572589874,
+ "learning_rate": 0.0006,
+ "loss": 4.993280410766602,
+ "step": 443
+ },
+ {
+ "epoch": 6.16775884665793,
+ "grad_norm": 0.22559592127799988,
+ "learning_rate": 0.0006,
+ "loss": 5.005735874176025,
+ "step": 444
+ },
+ {
+ "epoch": 6.18173875054609,
+ "grad_norm": 0.18574322760105133,
+ "learning_rate": 0.0006,
+ "loss": 4.996601104736328,
+ "step": 445
+ },
+ {
+ "epoch": 6.195718654434251,
+ "grad_norm": 0.1793852299451828,
+ "learning_rate": 0.0006,
+ "loss": 4.977394104003906,
+ "step": 446
+ },
+ {
+ "epoch": 6.209698558322412,
+ "grad_norm": 0.1851297914981842,
+ "learning_rate": 0.0006,
+ "loss": 4.983541488647461,
+ "step": 447
+ },
+ {
+ "epoch": 6.2236784622105725,
+ "grad_norm": 0.2045268565416336,
+ "learning_rate": 0.0006,
+ "loss": 4.992830276489258,
+ "step": 448
+ },
+ {
+ "epoch": 6.237658366098733,
+ "grad_norm": 0.21707463264465332,
+ "learning_rate": 0.0006,
+ "loss": 4.998589515686035,
+ "step": 449
+ },
+ {
+ "epoch": 6.251638269986894,
+ "grad_norm": 0.2805860638618469,
+ "learning_rate": 0.0006,
+ "loss": 4.973134517669678,
+ "step": 450
+ },
+ {
+ "epoch": 6.265618173875055,
+ "grad_norm": 0.33102089166641235,
+ "learning_rate": 0.0006,
+ "loss": 4.957348823547363,
+ "step": 451
+ },
+ {
+ "epoch": 6.279598077763215,
+ "grad_norm": 0.3763096034526825,
+ "learning_rate": 0.0006,
+ "loss": 5.0133256912231445,
+ "step": 452
+ },
+ {
+ "epoch": 6.293577981651376,
+ "grad_norm": 0.4676196575164795,
+ "learning_rate": 0.0006,
+ "loss": 4.972289562225342,
+ "step": 453
+ },
+ {
+ "epoch": 6.307557885539537,
+ "grad_norm": 0.6158978343009949,
+ "learning_rate": 0.0006,
+ "loss": 4.989326477050781,
+ "step": 454
+ },
+ {
+ "epoch": 6.321537789427698,
+ "grad_norm": 0.537460446357727,
+ "learning_rate": 0.0006,
+ "loss": 5.0210676193237305,
+ "step": 455
+ },
+ {
+ "epoch": 6.335517693315858,
+ "grad_norm": 0.5342532396316528,
+ "learning_rate": 0.0006,
+ "loss": 4.988524436950684,
+ "step": 456
+ },
+ {
+ "epoch": 6.349497597204019,
+ "grad_norm": 0.5736384987831116,
+ "learning_rate": 0.0006,
+ "loss": 4.977508068084717,
+ "step": 457
+ },
+ {
+ "epoch": 6.36347750109218,
+ "grad_norm": 0.6656201481819153,
+ "learning_rate": 0.0006,
+ "loss": 5.047934055328369,
+ "step": 458
+ },
+ {
+ "epoch": 6.3774574049803405,
+ "grad_norm": 0.6388342380523682,
+ "learning_rate": 0.0006,
+ "loss": 5.017617225646973,
+ "step": 459
+ },
+ {
+ "epoch": 6.391437308868501,
+ "grad_norm": 0.6620904207229614,
+ "learning_rate": 0.0006,
+ "loss": 5.032195091247559,
+ "step": 460
+ },
+ {
+ "epoch": 6.405417212756662,
+ "grad_norm": 0.693274974822998,
+ "learning_rate": 0.0006,
+ "loss": 5.02433967590332,
+ "step": 461
+ },
+ {
+ "epoch": 6.419397116644823,
+ "grad_norm": 0.6888924241065979,
+ "learning_rate": 0.0006,
+ "loss": 5.010735511779785,
+ "step": 462
+ },
+ {
+ "epoch": 6.433377020532983,
+ "grad_norm": 0.7181721925735474,
+ "learning_rate": 0.0006,
+ "loss": 5.049690246582031,
+ "step": 463
+ },
+ {
+ "epoch": 6.447356924421145,
+ "grad_norm": 0.7225117087364197,
+ "learning_rate": 0.0006,
+ "loss": 5.031939506530762,
+ "step": 464
+ },
+ {
+ "epoch": 6.461336828309306,
+ "grad_norm": 0.5268304347991943,
+ "learning_rate": 0.0006,
+ "loss": 5.01638126373291,
+ "step": 465
+ },
+ {
+ "epoch": 6.4753167321974665,
+ "grad_norm": 0.38218435645103455,
+ "learning_rate": 0.0006,
+ "loss": 4.997034072875977,
+ "step": 466
+ },
+ {
+ "epoch": 6.489296636085627,
+ "grad_norm": 0.3576396703720093,
+ "learning_rate": 0.0006,
+ "loss": 5.006804943084717,
+ "step": 467
+ },
+ {
+ "epoch": 6.503276539973788,
+ "grad_norm": 0.3305981755256653,
+ "learning_rate": 0.0006,
+ "loss": 4.994671821594238,
+ "step": 468
+ },
+ {
+ "epoch": 6.517256443861949,
+ "grad_norm": 0.3254900574684143,
+ "learning_rate": 0.0006,
+ "loss": 4.9747490882873535,
+ "step": 469
+ },
+ {
+ "epoch": 6.531236347750109,
+ "grad_norm": 0.2655033469200134,
+ "learning_rate": 0.0006,
+ "loss": 5.002863883972168,
+ "step": 470
+ },
+ {
+ "epoch": 6.54521625163827,
+ "grad_norm": 0.2620532810688019,
+ "learning_rate": 0.0006,
+ "loss": 4.9813337326049805,
+ "step": 471
+ },
+ {
+ "epoch": 6.559196155526431,
+ "grad_norm": 0.22128869593143463,
+ "learning_rate": 0.0006,
+ "loss": 4.978368759155273,
+ "step": 472
+ },
+ {
+ "epoch": 6.573176059414592,
+ "grad_norm": 0.22638699412345886,
+ "learning_rate": 0.0006,
+ "loss": 4.944509029388428,
+ "step": 473
+ },
+ {
+ "epoch": 6.587155963302752,
+ "grad_norm": 0.20720207691192627,
+ "learning_rate": 0.0006,
+ "loss": 4.98404598236084,
+ "step": 474
+ },
+ {
+ "epoch": 6.601135867190913,
+ "grad_norm": 0.21577289700508118,
+ "learning_rate": 0.0006,
+ "loss": 4.958878040313721,
+ "step": 475
+ },
+ {
+ "epoch": 6.615115771079074,
+ "grad_norm": 0.22453972697257996,
+ "learning_rate": 0.0006,
+ "loss": 4.935467720031738,
+ "step": 476
+ },
+ {
+ "epoch": 6.6290956749672345,
+ "grad_norm": 0.20757712423801422,
+ "learning_rate": 0.0006,
+ "loss": 4.943334579467773,
+ "step": 477
+ },
+ {
+ "epoch": 6.643075578855395,
+ "grad_norm": 0.22808043658733368,
+ "learning_rate": 0.0006,
+ "loss": 4.936544418334961,
+ "step": 478
+ },
+ {
+ "epoch": 6.657055482743556,
+ "grad_norm": 0.2193756401538849,
+ "learning_rate": 0.0006,
+ "loss": 4.938162326812744,
+ "step": 479
+ },
+ {
+ "epoch": 6.671035386631717,
+ "grad_norm": 0.19677500426769257,
+ "learning_rate": 0.0006,
+ "loss": 4.9026713371276855,
+ "step": 480
+ },
+ {
+ "epoch": 6.685015290519877,
+ "grad_norm": 0.17271658778190613,
+ "learning_rate": 0.0006,
+ "loss": 4.912519454956055,
+ "step": 481
+ },
+ {
+ "epoch": 6.698995194408038,
+ "grad_norm": 0.17551499605178833,
+ "learning_rate": 0.0006,
+ "loss": 4.929941177368164,
+ "step": 482
+ },
+ {
+ "epoch": 6.712975098296199,
+ "grad_norm": 0.1582687348127365,
+ "learning_rate": 0.0006,
+ "loss": 4.908967971801758,
+ "step": 483
+ },
+ {
+ "epoch": 6.72695500218436,
+ "grad_norm": 0.1593410074710846,
+ "learning_rate": 0.0006,
+ "loss": 4.901554107666016,
+ "step": 484
+ },
+ {
+ "epoch": 6.740934906072521,
+ "grad_norm": 0.16746895015239716,
+ "learning_rate": 0.0006,
+ "loss": 4.917915344238281,
+ "step": 485
+ },
+ {
+ "epoch": 6.754914809960681,
+ "grad_norm": 0.17066062986850739,
+ "learning_rate": 0.0006,
+ "loss": 4.912853240966797,
+ "step": 486
+ },
+ {
+ "epoch": 6.768894713848843,
+ "grad_norm": 0.16727769374847412,
+ "learning_rate": 0.0006,
+ "loss": 4.895434856414795,
+ "step": 487
+ },
+ {
+ "epoch": 6.782874617737003,
+ "grad_norm": 0.1784558743238449,
+ "learning_rate": 0.0006,
+ "loss": 4.8805341720581055,
+ "step": 488
+ },
+ {
+ "epoch": 6.796854521625164,
+ "grad_norm": 0.176686093211174,
+ "learning_rate": 0.0006,
+ "loss": 4.855296611785889,
+ "step": 489
+ },
+ {
+ "epoch": 6.810834425513325,
+ "grad_norm": 0.21577849984169006,
+ "learning_rate": 0.0006,
+ "loss": 4.885506629943848,
+ "step": 490
+ },
+ {
+ "epoch": 6.824814329401486,
+ "grad_norm": 0.27615776658058167,
+ "learning_rate": 0.0006,
+ "loss": 4.913756847381592,
+ "step": 491
+ },
+ {
+ "epoch": 6.838794233289646,
+ "grad_norm": 0.3653675615787506,
+ "learning_rate": 0.0006,
+ "loss": 4.880918979644775,
+ "step": 492
+ },
+ {
+ "epoch": 6.852774137177807,
+ "grad_norm": 0.41473883390426636,
+ "learning_rate": 0.0006,
+ "loss": 4.894164562225342,
+ "step": 493
+ },
+ {
+ "epoch": 6.866754041065968,
+ "grad_norm": 0.45850715041160583,
+ "learning_rate": 0.0006,
+ "loss": 4.907922744750977,
+ "step": 494
+ },
+ {
+ "epoch": 6.8807339449541285,
+ "grad_norm": 0.4675290882587433,
+ "learning_rate": 0.0006,
+ "loss": 4.883112907409668,
+ "step": 495
+ },
+ {
+ "epoch": 6.894713848842289,
+ "grad_norm": 0.45795994997024536,
+ "learning_rate": 0.0006,
+ "loss": 4.897843360900879,
+ "step": 496
+ },
+ {
+ "epoch": 6.90869375273045,
+ "grad_norm": 0.46130508184432983,
+ "learning_rate": 0.0006,
+ "loss": 4.890612602233887,
+ "step": 497
+ },
+ {
+ "epoch": 6.922673656618611,
+ "grad_norm": 0.44783803820610046,
+ "learning_rate": 0.0006,
+ "loss": 4.880192756652832,
+ "step": 498
+ },
+ {
+ "epoch": 6.936653560506771,
+ "grad_norm": 0.35361284017562866,
+ "learning_rate": 0.0006,
+ "loss": 4.840778350830078,
+ "step": 499
+ },
+ {
+ "epoch": 6.950633464394932,
+ "grad_norm": 0.34027689695358276,
+ "learning_rate": 0.0006,
+ "loss": 4.871222496032715,
+ "step": 500
+ },
+ {
+ "epoch": 6.964613368283093,
+ "grad_norm": 0.30228909850120544,
+ "learning_rate": 0.0006,
+ "loss": 4.868077278137207,
+ "step": 501
+ },
+ {
+ "epoch": 6.978593272171254,
+ "grad_norm": 0.27706998586654663,
+ "learning_rate": 0.0006,
+ "loss": 4.895936012268066,
+ "step": 502
+ },
+ {
+ "epoch": 6.992573176059414,
+ "grad_norm": 0.3516870439052582,
+ "learning_rate": 0.0006,
+ "loss": 4.824636459350586,
+ "step": 503
+ },
+ {
+ "epoch": 7.0,
+ "grad_norm": 0.36831387877464294,
+ "learning_rate": 0.0006,
+ "loss": 4.874397277832031,
+ "step": 504
+ },
+ {
+ "epoch": 7.0,
+ "eval_loss": 5.176281452178955,
+ "eval_runtime": 44.2386,
+ "eval_samples_per_second": 55.201,
+ "eval_steps_per_second": 3.459,
+ "step": 504
+ },
+ {
+ "epoch": 7.013979903888161,
+ "grad_norm": 0.4265240430831909,
+ "learning_rate": 0.0006,
+ "loss": 4.814333438873291,
+ "step": 505
+ },
+ {
+ "epoch": 7.0279598077763215,
+ "grad_norm": 0.5126975774765015,
+ "learning_rate": 0.0006,
+ "loss": 4.852343559265137,
+ "step": 506
+ },
+ {
+ "epoch": 7.041939711664482,
+ "grad_norm": 0.43080806732177734,
+ "learning_rate": 0.0006,
+ "loss": 4.843439102172852,
+ "step": 507
+ },
+ {
+ "epoch": 7.055919615552643,
+ "grad_norm": 0.43170198798179626,
+ "learning_rate": 0.0006,
+ "loss": 4.845984935760498,
+ "step": 508
+ },
+ {
+ "epoch": 7.069899519440804,
+ "grad_norm": 0.5640552043914795,
+ "learning_rate": 0.0006,
+ "loss": 4.840991973876953,
+ "step": 509
+ },
+ {
+ "epoch": 7.083879423328964,
+ "grad_norm": 0.540381133556366,
+ "learning_rate": 0.0006,
+ "loss": 4.801316738128662,
+ "step": 510
+ },
+ {
+ "epoch": 7.097859327217125,
+ "grad_norm": 0.5412097573280334,
+ "learning_rate": 0.0006,
+ "loss": 4.886598587036133,
+ "step": 511
+ },
+ {
+ "epoch": 7.111839231105286,
+ "grad_norm": 0.630648136138916,
+ "learning_rate": 0.0006,
+ "loss": 4.849774360656738,
+ "step": 512
+ },
+ {
+ "epoch": 7.1258191349934465,
+ "grad_norm": 0.569952130317688,
+ "learning_rate": 0.0006,
+ "loss": 4.870607376098633,
+ "step": 513
+ },
+ {
+ "epoch": 7.139799038881607,
+ "grad_norm": 0.42051541805267334,
+ "learning_rate": 0.0006,
+ "loss": 4.83833122253418,
+ "step": 514
+ },
+ {
+ "epoch": 7.153778942769769,
+ "grad_norm": 0.3930990397930145,
+ "learning_rate": 0.0006,
+ "loss": 4.853984355926514,
+ "step": 515
+ },
+ {
+ "epoch": 7.16775884665793,
+ "grad_norm": 0.512886106967926,
+ "learning_rate": 0.0006,
+ "loss": 4.815458297729492,
+ "step": 516
+ },
+ {
+ "epoch": 7.18173875054609,
+ "grad_norm": 0.42580172419548035,
+ "learning_rate": 0.0006,
+ "loss": 4.825312614440918,
+ "step": 517
+ },
+ {
+ "epoch": 7.195718654434251,
+ "grad_norm": 0.31628182530403137,
+ "learning_rate": 0.0006,
+ "loss": 4.806377410888672,
+ "step": 518
+ },
+ {
+ "epoch": 7.209698558322412,
+ "grad_norm": 0.3109956681728363,
+ "learning_rate": 0.0006,
+ "loss": 4.819339752197266,
+ "step": 519
+ },
+ {
+ "epoch": 7.2236784622105725,
+ "grad_norm": 0.2740071415901184,
+ "learning_rate": 0.0006,
+ "loss": 4.81319522857666,
+ "step": 520
+ },
+ {
+ "epoch": 7.237658366098733,
+ "grad_norm": 0.26441165804862976,
+ "learning_rate": 0.0006,
+ "loss": 4.8107380867004395,
+ "step": 521
+ },
+ {
+ "epoch": 7.251638269986894,
+ "grad_norm": 0.2496110051870346,
+ "learning_rate": 0.0006,
+ "loss": 4.785193920135498,
+ "step": 522
+ },
+ {
+ "epoch": 7.265618173875055,
+ "grad_norm": 0.2565560042858124,
+ "learning_rate": 0.0006,
+ "loss": 4.802750587463379,
+ "step": 523
+ },
+ {
+ "epoch": 7.279598077763215,
+ "grad_norm": 0.2126980572938919,
+ "learning_rate": 0.0006,
+ "loss": 4.763580322265625,
+ "step": 524
+ },
+ {
+ "epoch": 7.293577981651376,
+ "grad_norm": 0.2169921100139618,
+ "learning_rate": 0.0006,
+ "loss": 4.756124973297119,
+ "step": 525
+ },
+ {
+ "epoch": 7.307557885539537,
+ "grad_norm": 0.2372167706489563,
+ "learning_rate": 0.0006,
+ "loss": 4.786888599395752,
+ "step": 526
+ },
+ {
+ "epoch": 7.321537789427698,
+ "grad_norm": 0.2124386429786682,
+ "learning_rate": 0.0006,
+ "loss": 4.777996063232422,
+ "step": 527
+ },
+ {
+ "epoch": 7.335517693315858,
+ "grad_norm": 0.18585442006587982,
+ "learning_rate": 0.0006,
+ "loss": 4.770537853240967,
+ "step": 528
+ },
+ {
+ "epoch": 7.349497597204019,
+ "grad_norm": 0.20515340566635132,
+ "learning_rate": 0.0006,
+ "loss": 4.769230842590332,
+ "step": 529
+ },
+ {
+ "epoch": 7.36347750109218,
+ "grad_norm": 0.19906704127788544,
+ "learning_rate": 0.0006,
+ "loss": 4.752581596374512,
+ "step": 530
+ },
+ {
+ "epoch": 7.3774574049803405,
+ "grad_norm": 0.2030428946018219,
+ "learning_rate": 0.0006,
+ "loss": 4.7353715896606445,
+ "step": 531
+ },
+ {
+ "epoch": 7.391437308868501,
+ "grad_norm": 0.17820630967617035,
+ "learning_rate": 0.0006,
+ "loss": 4.742705345153809,
+ "step": 532
+ },
+ {
+ "epoch": 7.405417212756662,
+ "grad_norm": 0.17642682790756226,
+ "learning_rate": 0.0006,
+ "loss": 4.752669334411621,
+ "step": 533
+ },
+ {
+ "epoch": 7.419397116644823,
+ "grad_norm": 0.18088409304618835,
+ "learning_rate": 0.0006,
+ "loss": 4.734611511230469,
+ "step": 534
+ },
+ {
+ "epoch": 7.433377020532983,
+ "grad_norm": 0.20897020399570465,
+ "learning_rate": 0.0006,
+ "loss": 4.756442070007324,
+ "step": 535
+ },
+ {
+ "epoch": 7.447356924421145,
+ "grad_norm": 0.23166777193546295,
+ "learning_rate": 0.0006,
+ "loss": 4.712922096252441,
+ "step": 536
+ },
+ {
+ "epoch": 7.461336828309306,
+ "grad_norm": 0.2205347716808319,
+ "learning_rate": 0.0006,
+ "loss": 4.75001335144043,
+ "step": 537
+ },
+ {
+ "epoch": 7.4753167321974665,
+ "grad_norm": 0.23868022859096527,
+ "learning_rate": 0.0006,
+ "loss": 4.726134300231934,
+ "step": 538
+ },
+ {
+ "epoch": 7.489296636085627,
+ "grad_norm": 0.2861441373825073,
+ "learning_rate": 0.0006,
+ "loss": 4.754112243652344,
+ "step": 539
+ },
+ {
+ "epoch": 7.503276539973788,
+ "grad_norm": 0.28980305790901184,
+ "learning_rate": 0.0006,
+ "loss": 4.716021537780762,
+ "step": 540
+ },
+ {
+ "epoch": 7.517256443861949,
+ "grad_norm": 0.2784835696220398,
+ "learning_rate": 0.0006,
+ "loss": 4.713929176330566,
+ "step": 541
+ },
+ {
+ "epoch": 7.531236347750109,
+ "grad_norm": 0.2962653934955597,
+ "learning_rate": 0.0006,
+ "loss": 4.711845397949219,
+ "step": 542
+ },
+ {
+ "epoch": 7.54521625163827,
+ "grad_norm": 0.3333161175251007,
+ "learning_rate": 0.0006,
+ "loss": 4.709834575653076,
+ "step": 543
+ },
+ {
+ "epoch": 7.559196155526431,
+ "grad_norm": 0.35304850339889526,
+ "learning_rate": 0.0006,
+ "loss": 4.732914924621582,
+ "step": 544
+ },
+ {
+ "epoch": 7.573176059414592,
+ "grad_norm": 0.4165869355201721,
+ "learning_rate": 0.0006,
+ "loss": 4.716190338134766,
+ "step": 545
+ },
+ {
+ "epoch": 7.587155963302752,
+ "grad_norm": 0.4878059923648834,
+ "learning_rate": 0.0006,
+ "loss": 4.723773002624512,
+ "step": 546
+ },
+ {
+ "epoch": 7.601135867190913,
+ "grad_norm": 0.36643707752227783,
+ "learning_rate": 0.0006,
+ "loss": 4.721458911895752,
+ "step": 547
+ },
+ {
+ "epoch": 7.615115771079074,
+ "grad_norm": 0.4046908915042877,
+ "learning_rate": 0.0006,
+ "loss": 4.715397834777832,
+ "step": 548
+ },
+ {
+ "epoch": 7.6290956749672345,
+ "grad_norm": 0.44426342844963074,
+ "learning_rate": 0.0006,
+ "loss": 4.737357139587402,
+ "step": 549
+ },
+ {
+ "epoch": 7.643075578855395,
+ "grad_norm": 0.4181079864501953,
+ "learning_rate": 0.0006,
+ "loss": 4.731383800506592,
+ "step": 550
+ },
+ {
+ "epoch": 7.657055482743556,
+ "grad_norm": 0.3486088216304779,
+ "learning_rate": 0.0006,
+ "loss": 4.728029727935791,
+ "step": 551
+ },
+ {
+ "epoch": 7.671035386631717,
+ "grad_norm": 0.37150970101356506,
+ "learning_rate": 0.0006,
+ "loss": 4.7083210945129395,
+ "step": 552
+ },
+ {
+ "epoch": 7.685015290519877,
+ "grad_norm": 0.43324410915374756,
+ "learning_rate": 0.0006,
+ "loss": 4.728720664978027,
+ "step": 553
+ },
+ {
+ "epoch": 7.698995194408038,
+ "grad_norm": 0.5026620626449585,
+ "learning_rate": 0.0006,
+ "loss": 4.698156356811523,
+ "step": 554
+ },
+ {
+ "epoch": 7.712975098296199,
+ "grad_norm": 0.4873499274253845,
+ "learning_rate": 0.0006,
+ "loss": 4.7169952392578125,
+ "step": 555
+ },
+ {
+ "epoch": 7.72695500218436,
+ "grad_norm": 0.4285493791103363,
+ "learning_rate": 0.0006,
+ "loss": 4.6877241134643555,
+ "step": 556
+ },
+ {
+ "epoch": 7.740934906072521,
+ "grad_norm": 0.5179854035377502,
+ "learning_rate": 0.0006,
+ "loss": 4.704267501831055,
+ "step": 557
+ },
+ {
+ "epoch": 7.754914809960681,
+ "grad_norm": 0.4642147421836853,
+ "learning_rate": 0.0006,
+ "loss": 4.695004463195801,
+ "step": 558
+ },
+ {
+ "epoch": 7.768894713848843,
+ "grad_norm": 0.47149503231048584,
+ "learning_rate": 0.0006,
+ "loss": 4.694338798522949,
+ "step": 559
+ },
+ {
+ "epoch": 7.782874617737003,
+ "grad_norm": 0.5422149300575256,
+ "learning_rate": 0.0006,
+ "loss": 4.749478340148926,
+ "step": 560
+ },
+ {
+ "epoch": 7.796854521625164,
+ "grad_norm": 0.4360728859901428,
+ "learning_rate": 0.0006,
+ "loss": 4.685191631317139,
+ "step": 561
+ },
+ {
+ "epoch": 7.810834425513325,
+ "grad_norm": 0.4243801534175873,
+ "learning_rate": 0.0006,
+ "loss": 4.69228458404541,
+ "step": 562
+ },
+ {
+ "epoch": 7.824814329401486,
+ "grad_norm": 0.40380290150642395,
+ "learning_rate": 0.0006,
+ "loss": 4.690923690795898,
+ "step": 563
+ },
+ {
+ "epoch": 7.838794233289646,
+ "grad_norm": 0.4352976381778717,
+ "learning_rate": 0.0006,
+ "loss": 4.720489978790283,
+ "step": 564
+ },
+ {
+ "epoch": 7.852774137177807,
+ "grad_norm": 0.44634920358657837,
+ "learning_rate": 0.0006,
+ "loss": 4.683789253234863,
+ "step": 565
+ },
+ {
+ "epoch": 7.866754041065968,
+ "grad_norm": 0.3818186819553375,
+ "learning_rate": 0.0006,
+ "loss": 4.696887016296387,
+ "step": 566
+ },
+ {
+ "epoch": 7.8807339449541285,
+ "grad_norm": 0.35270464420318604,
+ "learning_rate": 0.0006,
+ "loss": 4.715676307678223,
+ "step": 567
+ },
+ {
+ "epoch": 7.894713848842289,
+ "grad_norm": 0.249756321310997,
+ "learning_rate": 0.0006,
+ "loss": 4.672721862792969,
+ "step": 568
+ },
+ {
+ "epoch": 7.90869375273045,
+ "grad_norm": 0.25097888708114624,
+ "learning_rate": 0.0006,
+ "loss": 4.663518905639648,
+ "step": 569
+ },
+ {
+ "epoch": 7.922673656618611,
+ "grad_norm": 0.26563209295272827,
+ "learning_rate": 0.0006,
+ "loss": 4.675405025482178,
+ "step": 570
+ },
+ {
+ "epoch": 7.936653560506771,
+ "grad_norm": 0.26451292634010315,
+ "learning_rate": 0.0006,
+ "loss": 4.651235103607178,
+ "step": 571
+ },
+ {
+ "epoch": 7.950633464394932,
+ "grad_norm": 0.24185842275619507,
+ "learning_rate": 0.0006,
+ "loss": 4.671639919281006,
+ "step": 572
+ },
+ {
+ "epoch": 7.964613368283093,
+ "grad_norm": 0.21506108343601227,
+ "learning_rate": 0.0006,
+ "loss": 4.665352821350098,
+ "step": 573
+ },
+ {
+ "epoch": 7.978593272171254,
+ "grad_norm": 0.24365705251693726,
+ "learning_rate": 0.0006,
+ "loss": 4.663162708282471,
+ "step": 574
+ },
+ {
+ "epoch": 7.992573176059414,
+ "grad_norm": 0.24251042306423187,
+ "learning_rate": 0.0006,
+ "loss": 4.666633605957031,
+ "step": 575
+ },
+ {
+ "epoch": 8.0,
+ "grad_norm": 0.24187657237052917,
+ "learning_rate": 0.0006,
+ "loss": 4.63957405090332,
+ "step": 576
+ },
+ {
+ "epoch": 8.0,
+ "eval_loss": 4.923156261444092,
+ "eval_runtime": 44.1587,
+ "eval_samples_per_second": 55.301,
+ "eval_steps_per_second": 3.465,
+ "step": 576
+ },
+ {
+ "epoch": 8.013979903888162,
+ "grad_norm": 0.21323645114898682,
+ "learning_rate": 0.0006,
+ "loss": 4.636347770690918,
+ "step": 577
+ },
+ {
+ "epoch": 8.027959807776321,
+ "grad_norm": 0.2325759083032608,
+ "learning_rate": 0.0006,
+ "loss": 4.60684871673584,
+ "step": 578
+ },
+ {
+ "epoch": 8.041939711664483,
+ "grad_norm": 0.26741257309913635,
+ "learning_rate": 0.0006,
+ "loss": 4.647780418395996,
+ "step": 579
+ },
+ {
+ "epoch": 8.055919615552643,
+ "grad_norm": 0.285720556974411,
+ "learning_rate": 0.0006,
+ "loss": 4.629637718200684,
+ "step": 580
+ },
+ {
+ "epoch": 8.069899519440805,
+ "grad_norm": 0.2453618347644806,
+ "learning_rate": 0.0006,
+ "loss": 4.62420654296875,
+ "step": 581
+ },
+ {
+ "epoch": 8.083879423328964,
+ "grad_norm": 0.19662636518478394,
+ "learning_rate": 0.0006,
+ "loss": 4.593767166137695,
+ "step": 582
+ },
+ {
+ "epoch": 8.097859327217126,
+ "grad_norm": 0.22731931507587433,
+ "learning_rate": 0.0006,
+ "loss": 4.627089023590088,
+ "step": 583
+ },
+ {
+ "epoch": 8.111839231105286,
+ "grad_norm": 0.24452590942382812,
+ "learning_rate": 0.0006,
+ "loss": 4.613677024841309,
+ "step": 584
+ },
+ {
+ "epoch": 8.125819134993447,
+ "grad_norm": 0.2952791154384613,
+ "learning_rate": 0.0006,
+ "loss": 4.604985237121582,
+ "step": 585
+ },
+ {
+ "epoch": 8.139799038881607,
+ "grad_norm": 0.3184696137905121,
+ "learning_rate": 0.0006,
+ "loss": 4.589205741882324,
+ "step": 586
+ },
+ {
+ "epoch": 8.153778942769769,
+ "grad_norm": 0.2948093116283417,
+ "learning_rate": 0.0006,
+ "loss": 4.605442047119141,
+ "step": 587
+ },
+ {
+ "epoch": 8.167758846657929,
+ "grad_norm": 0.2450508326292038,
+ "learning_rate": 0.0006,
+ "loss": 4.615349292755127,
+ "step": 588
+ },
+ {
+ "epoch": 8.18173875054609,
+ "grad_norm": 0.25664836168289185,
+ "learning_rate": 0.0006,
+ "loss": 4.592251777648926,
+ "step": 589
+ },
+ {
+ "epoch": 8.19571865443425,
+ "grad_norm": 0.24479512870311737,
+ "learning_rate": 0.0006,
+ "loss": 4.6145920753479,
+ "step": 590
+ },
+ {
+ "epoch": 8.209698558322412,
+ "grad_norm": 0.24395205080509186,
+ "learning_rate": 0.0006,
+ "loss": 4.600954055786133,
+ "step": 591
+ },
+ {
+ "epoch": 8.223678462210572,
+ "grad_norm": 0.21804189682006836,
+ "learning_rate": 0.0006,
+ "loss": 4.607785224914551,
+ "step": 592
+ },
+ {
+ "epoch": 8.237658366098733,
+ "grad_norm": 0.20951785147190094,
+ "learning_rate": 0.0006,
+ "loss": 4.58140754699707,
+ "step": 593
+ },
+ {
+ "epoch": 8.251638269986893,
+ "grad_norm": 0.20415149629116058,
+ "learning_rate": 0.0006,
+ "loss": 4.593405723571777,
+ "step": 594
+ },
+ {
+ "epoch": 8.265618173875055,
+ "grad_norm": 0.19210249185562134,
+ "learning_rate": 0.0006,
+ "loss": 4.603294372558594,
+ "step": 595
+ },
+ {
+ "epoch": 8.279598077763215,
+ "grad_norm": 0.20719751715660095,
+ "learning_rate": 0.0006,
+ "loss": 4.55255651473999,
+ "step": 596
+ },
+ {
+ "epoch": 8.293577981651376,
+ "grad_norm": 0.20101022720336914,
+ "learning_rate": 0.0006,
+ "loss": 4.5928192138671875,
+ "step": 597
+ },
+ {
+ "epoch": 8.307557885539538,
+ "grad_norm": 0.19254222512245178,
+ "learning_rate": 0.0006,
+ "loss": 4.590397834777832,
+ "step": 598
+ },
+ {
+ "epoch": 8.321537789427698,
+ "grad_norm": 0.23234105110168457,
+ "learning_rate": 0.0006,
+ "loss": 4.5987677574157715,
+ "step": 599
+ },
+ {
+ "epoch": 8.33551769331586,
+ "grad_norm": 0.2537451982498169,
+ "learning_rate": 0.0006,
+ "loss": 4.543115615844727,
+ "step": 600
+ },
+ {
+ "epoch": 8.349497597204019,
+ "grad_norm": 0.29171040654182434,
+ "learning_rate": 0.0006,
+ "loss": 4.597387313842773,
+ "step": 601
+ },
+ {
+ "epoch": 8.36347750109218,
+ "grad_norm": 0.3035930097103119,
+ "learning_rate": 0.0006,
+ "loss": 4.566247463226318,
+ "step": 602
+ },
+ {
+ "epoch": 8.37745740498034,
+ "grad_norm": 0.2826756238937378,
+ "learning_rate": 0.0006,
+ "loss": 4.57047176361084,
+ "step": 603
+ },
+ {
+ "epoch": 8.391437308868502,
+ "grad_norm": 0.2959657609462738,
+ "learning_rate": 0.0006,
+ "loss": 4.582820892333984,
+ "step": 604
+ },
+ {
+ "epoch": 8.405417212756662,
+ "grad_norm": 0.3180356025695801,
+ "learning_rate": 0.0006,
+ "loss": 4.5573272705078125,
+ "step": 605
+ },
+ {
+ "epoch": 8.419397116644824,
+ "grad_norm": 0.3617221713066101,
+ "learning_rate": 0.0006,
+ "loss": 4.593079090118408,
+ "step": 606
+ },
+ {
+ "epoch": 8.433377020532983,
+ "grad_norm": 0.35198062658309937,
+ "learning_rate": 0.0006,
+ "loss": 4.615298271179199,
+ "step": 607
+ },
+ {
+ "epoch": 8.447356924421145,
+ "grad_norm": 0.3944903314113617,
+ "learning_rate": 0.0006,
+ "loss": 4.561809539794922,
+ "step": 608
+ },
+ {
+ "epoch": 8.461336828309305,
+ "grad_norm": 0.4525868594646454,
+ "learning_rate": 0.0006,
+ "loss": 4.613105773925781,
+ "step": 609
+ },
+ {
+ "epoch": 8.475316732197467,
+ "grad_norm": 0.4915139079093933,
+ "learning_rate": 0.0006,
+ "loss": 4.566202163696289,
+ "step": 610
+ },
+ {
+ "epoch": 8.489296636085626,
+ "grad_norm": 0.49231988191604614,
+ "learning_rate": 0.0006,
+ "loss": 4.556222915649414,
+ "step": 611
+ },
+ {
+ "epoch": 8.503276539973788,
+ "grad_norm": 0.43036946654319763,
+ "learning_rate": 0.0006,
+ "loss": 4.55517578125,
+ "step": 612
+ },
+ {
+ "epoch": 8.517256443861948,
+ "grad_norm": 0.42405328154563904,
+ "learning_rate": 0.0006,
+ "loss": 4.574039936065674,
+ "step": 613
+ },
+ {
+ "epoch": 8.53123634775011,
+ "grad_norm": 0.3955961763858795,
+ "learning_rate": 0.0006,
+ "loss": 4.6082611083984375,
+ "step": 614
+ },
+ {
+ "epoch": 8.54521625163827,
+ "grad_norm": 0.4377101957798004,
+ "learning_rate": 0.0006,
+ "loss": 4.555740833282471,
+ "step": 615
+ },
+ {
+ "epoch": 8.55919615552643,
+ "grad_norm": 0.4601984918117523,
+ "learning_rate": 0.0006,
+ "loss": 4.553995132446289,
+ "step": 616
+ },
+ {
+ "epoch": 8.57317605941459,
+ "grad_norm": 0.42025700211524963,
+ "learning_rate": 0.0006,
+ "loss": 4.567340850830078,
+ "step": 617
+ },
+ {
+ "epoch": 8.587155963302752,
+ "grad_norm": 0.35569432377815247,
+ "learning_rate": 0.0006,
+ "loss": 4.570140361785889,
+ "step": 618
+ },
+ {
+ "epoch": 8.601135867190912,
+ "grad_norm": 0.37940406799316406,
+ "learning_rate": 0.0006,
+ "loss": 4.581291198730469,
+ "step": 619
+ },
+ {
+ "epoch": 8.615115771079074,
+ "grad_norm": 0.3658490777015686,
+ "learning_rate": 0.0006,
+ "loss": 4.55476188659668,
+ "step": 620
+ },
+ {
+ "epoch": 8.629095674967235,
+ "grad_norm": 0.2908247113227844,
+ "learning_rate": 0.0006,
+ "loss": 4.564087867736816,
+ "step": 621
+ },
+ {
+ "epoch": 8.643075578855395,
+ "grad_norm": 0.29961925745010376,
+ "learning_rate": 0.0006,
+ "loss": 4.556543350219727,
+ "step": 622
+ },
+ {
+ "epoch": 8.657055482743557,
+ "grad_norm": 0.3144846558570862,
+ "learning_rate": 0.0006,
+ "loss": 4.553670883178711,
+ "step": 623
+ },
+ {
+ "epoch": 8.671035386631717,
+ "grad_norm": 0.2845900356769562,
+ "learning_rate": 0.0006,
+ "loss": 4.567296981811523,
+ "step": 624
+ },
+ {
+ "epoch": 8.685015290519878,
+ "grad_norm": 0.253591388463974,
+ "learning_rate": 0.0006,
+ "loss": 4.554507255554199,
+ "step": 625
+ },
+ {
+ "epoch": 8.698995194408038,
+ "grad_norm": 0.2563088536262512,
+ "learning_rate": 0.0006,
+ "loss": 4.542218208312988,
+ "step": 626
+ },
+ {
+ "epoch": 8.7129750982962,
+ "grad_norm": 0.26058217883110046,
+ "learning_rate": 0.0006,
+ "loss": 4.535512447357178,
+ "step": 627
+ },
+ {
+ "epoch": 8.72695500218436,
+ "grad_norm": 0.20749829709529877,
+ "learning_rate": 0.0006,
+ "loss": 4.516959190368652,
+ "step": 628
+ },
+ {
+ "epoch": 8.740934906072521,
+ "grad_norm": 0.2034810334444046,
+ "learning_rate": 0.0006,
+ "loss": 4.55794095993042,
+ "step": 629
+ },
+ {
+ "epoch": 8.754914809960681,
+ "grad_norm": 0.18418121337890625,
+ "learning_rate": 0.0006,
+ "loss": 4.5421247482299805,
+ "step": 630
+ },
+ {
+ "epoch": 8.768894713848843,
+ "grad_norm": 0.20551933348178864,
+ "learning_rate": 0.0006,
+ "loss": 4.50805139541626,
+ "step": 631
+ },
+ {
+ "epoch": 8.782874617737003,
+ "grad_norm": 0.21615999937057495,
+ "learning_rate": 0.0006,
+ "loss": 4.520708084106445,
+ "step": 632
+ },
+ {
+ "epoch": 8.796854521625164,
+ "grad_norm": 0.24864810705184937,
+ "learning_rate": 0.0006,
+ "loss": 4.509330749511719,
+ "step": 633
+ },
+ {
+ "epoch": 8.810834425513324,
+ "grad_norm": 0.2573665380477905,
+ "learning_rate": 0.0006,
+ "loss": 4.531505584716797,
+ "step": 634
+ },
+ {
+ "epoch": 8.824814329401486,
+ "grad_norm": 0.22452878952026367,
+ "learning_rate": 0.0006,
+ "loss": 4.529216289520264,
+ "step": 635
+ },
+ {
+ "epoch": 8.838794233289645,
+ "grad_norm": 0.19727355241775513,
+ "learning_rate": 0.0006,
+ "loss": 4.519906520843506,
+ "step": 636
+ },
+ {
+ "epoch": 8.852774137177807,
+ "grad_norm": 0.19937913119792938,
+ "learning_rate": 0.0006,
+ "loss": 4.536892414093018,
+ "step": 637
+ },
+ {
+ "epoch": 8.866754041065967,
+ "grad_norm": 0.2070389986038208,
+ "learning_rate": 0.0006,
+ "loss": 4.51191520690918,
+ "step": 638
+ },
+ {
+ "epoch": 8.880733944954128,
+ "grad_norm": 0.2293873429298401,
+ "learning_rate": 0.0006,
+ "loss": 4.505377769470215,
+ "step": 639
+ },
+ {
+ "epoch": 8.89471384884229,
+ "grad_norm": 0.21285250782966614,
+ "learning_rate": 0.0006,
+ "loss": 4.5138959884643555,
+ "step": 640
+ },
+ {
+ "epoch": 8.90869375273045,
+ "grad_norm": 0.19487562775611877,
+ "learning_rate": 0.0006,
+ "loss": 4.506108283996582,
+ "step": 641
+ },
+ {
+ "epoch": 8.922673656618612,
+ "grad_norm": 0.21986965835094452,
+ "learning_rate": 0.0006,
+ "loss": 4.506397247314453,
+ "step": 642
+ },
+ {
+ "epoch": 8.936653560506771,
+ "grad_norm": 0.20763885974884033,
+ "learning_rate": 0.0006,
+ "loss": 4.508007049560547,
+ "step": 643
+ },
+ {
+ "epoch": 8.950633464394933,
+ "grad_norm": 0.22858479619026184,
+ "learning_rate": 0.0006,
+ "loss": 4.520846366882324,
+ "step": 644
+ },
+ {
+ "epoch": 8.964613368283093,
+ "grad_norm": 0.23923712968826294,
+ "learning_rate": 0.0006,
+ "loss": 4.535306930541992,
+ "step": 645
+ },
+ {
+ "epoch": 8.978593272171254,
+ "grad_norm": 0.23717579245567322,
+ "learning_rate": 0.0006,
+ "loss": 4.485929489135742,
+ "step": 646
+ },
+ {
+ "epoch": 8.992573176059414,
+ "grad_norm": 0.24033977091312408,
+ "learning_rate": 0.0006,
+ "loss": 4.508999824523926,
+ "step": 647
+ },
+ {
+ "epoch": 9.0,
+ "grad_norm": 0.22432062029838562,
+ "learning_rate": 0.0006,
+ "loss": 4.473136901855469,
+ "step": 648
+ },
+ {
+ "epoch": 9.0,
+ "eval_loss": 4.735903263092041,
+ "eval_runtime": 44.2163,
+ "eval_samples_per_second": 55.228,
+ "eval_steps_per_second": 3.46,
+ "step": 648
+ },
+ {
+ "epoch": 9.013979903888162,
+ "grad_norm": 0.22491489350795746,
+ "learning_rate": 0.0006,
+ "loss": 4.468614101409912,
+ "step": 649
+ },
+ {
+ "epoch": 9.027959807776321,
+ "grad_norm": 0.255759060382843,
+ "learning_rate": 0.0006,
+ "loss": 4.516196250915527,
+ "step": 650
+ },
+ {
+ "epoch": 9.041939711664483,
+ "grad_norm": 0.2591100335121155,
+ "learning_rate": 0.0006,
+ "loss": 4.478276252746582,
+ "step": 651
+ },
+ {
+ "epoch": 9.055919615552643,
+ "grad_norm": 0.30472296476364136,
+ "learning_rate": 0.0006,
+ "loss": 4.479726791381836,
+ "step": 652
+ },
+ {
+ "epoch": 9.069899519440805,
+ "grad_norm": 0.2840559780597687,
+ "learning_rate": 0.0006,
+ "loss": 4.4437384605407715,
+ "step": 653
+ },
+ {
+ "epoch": 9.083879423328964,
+ "grad_norm": 0.2695577144622803,
+ "learning_rate": 0.0006,
+ "loss": 4.476065635681152,
+ "step": 654
+ },
+ {
+ "epoch": 9.097859327217126,
+ "grad_norm": 0.27912381291389465,
+ "learning_rate": 0.0006,
+ "loss": 4.484747409820557,
+ "step": 655
+ },
+ {
+ "epoch": 9.111839231105286,
+ "grad_norm": 0.3091907501220703,
+ "learning_rate": 0.0006,
+ "loss": 4.449443817138672,
+ "step": 656
+ },
+ {
+ "epoch": 9.125819134993447,
+ "grad_norm": 0.30756646394729614,
+ "learning_rate": 0.0006,
+ "loss": 4.496490001678467,
+ "step": 657
+ },
+ {
+ "epoch": 9.139799038881607,
+ "grad_norm": 0.305698037147522,
+ "learning_rate": 0.0006,
+ "loss": 4.466765880584717,
+ "step": 658
+ },
+ {
+ "epoch": 9.153778942769769,
+ "grad_norm": 0.3031201660633087,
+ "learning_rate": 0.0006,
+ "loss": 4.462430953979492,
+ "step": 659
+ },
+ {
+ "epoch": 9.167758846657929,
+ "grad_norm": 0.32725608348846436,
+ "learning_rate": 0.0006,
+ "loss": 4.479879379272461,
+ "step": 660
+ },
+ {
+ "epoch": 9.18173875054609,
+ "grad_norm": 0.31773585081100464,
+ "learning_rate": 0.0006,
+ "loss": 4.473912239074707,
+ "step": 661
+ },
+ {
+ "epoch": 9.19571865443425,
+ "grad_norm": 0.30025365948677063,
+ "learning_rate": 0.0006,
+ "loss": 4.476703643798828,
+ "step": 662
+ },
+ {
+ "epoch": 9.209698558322412,
+ "grad_norm": 0.3177371025085449,
+ "learning_rate": 0.0006,
+ "loss": 4.439765930175781,
+ "step": 663
+ },
+ {
+ "epoch": 9.223678462210572,
+ "grad_norm": 0.3060745894908905,
+ "learning_rate": 0.0006,
+ "loss": 4.487849235534668,
+ "step": 664
+ },
+ {
+ "epoch": 9.237658366098733,
+ "grad_norm": 0.33287373185157776,
+ "learning_rate": 0.0006,
+ "loss": 4.443496227264404,
+ "step": 665
+ },
+ {
+ "epoch": 9.251638269986893,
+ "grad_norm": 0.3758000433444977,
+ "learning_rate": 0.0006,
+ "loss": 4.478017330169678,
+ "step": 666
+ },
+ {
+ "epoch": 9.265618173875055,
+ "grad_norm": 0.32124510407447815,
+ "learning_rate": 0.0006,
+ "loss": 4.4092206954956055,
+ "step": 667
+ },
+ {
+ "epoch": 9.279598077763215,
+ "grad_norm": 0.2786794602870941,
+ "learning_rate": 0.0006,
+ "loss": 4.432734489440918,
+ "step": 668
+ },
+ {
+ "epoch": 9.293577981651376,
+ "grad_norm": 0.35042962431907654,
+ "learning_rate": 0.0006,
+ "loss": 4.462737083435059,
+ "step": 669
+ },
+ {
+ "epoch": 9.307557885539538,
+ "grad_norm": 0.4080469310283661,
+ "learning_rate": 0.0006,
+ "loss": 4.429462432861328,
+ "step": 670
+ },
+ {
+ "epoch": 9.321537789427698,
+ "grad_norm": 0.465158075094223,
+ "learning_rate": 0.0006,
+ "loss": 4.465776443481445,
+ "step": 671
+ },
+ {
+ "epoch": 9.33551769331586,
+ "grad_norm": 0.44833582639694214,
+ "learning_rate": 0.0006,
+ "loss": 4.454195976257324,
+ "step": 672
+ },
+ {
+ "epoch": 9.349497597204019,
+ "grad_norm": 0.451052188873291,
+ "learning_rate": 0.0006,
+ "loss": 4.456139087677002,
+ "step": 673
+ },
+ {
+ "epoch": 9.36347750109218,
+ "grad_norm": 0.3759656250476837,
+ "learning_rate": 0.0006,
+ "loss": 4.461119651794434,
+ "step": 674
+ },
+ {
+ "epoch": 9.37745740498034,
+ "grad_norm": 0.514560341835022,
+ "learning_rate": 0.0006,
+ "loss": 4.49595832824707,
+ "step": 675
+ },
+ {
+ "epoch": 9.391437308868502,
+ "grad_norm": 0.5650647282600403,
+ "learning_rate": 0.0006,
+ "loss": 4.461362838745117,
+ "step": 676
+ },
+ {
+ "epoch": 9.405417212756662,
+ "grad_norm": 0.4218835234642029,
+ "learning_rate": 0.0006,
+ "loss": 4.469146728515625,
+ "step": 677
+ },
+ {
+ "epoch": 9.419397116644824,
+ "grad_norm": 0.4169512689113617,
+ "learning_rate": 0.0006,
+ "loss": 4.470132827758789,
+ "step": 678
+ },
+ {
+ "epoch": 9.433377020532983,
+ "grad_norm": 0.3772219717502594,
+ "learning_rate": 0.0006,
+ "loss": 4.4742608070373535,
+ "step": 679
+ },
+ {
+ "epoch": 9.447356924421145,
+ "grad_norm": 0.35755908489227295,
+ "learning_rate": 0.0006,
+ "loss": 4.461928367614746,
+ "step": 680
+ },
+ {
+ "epoch": 9.461336828309305,
+ "grad_norm": 0.3141227662563324,
+ "learning_rate": 0.0006,
+ "loss": 4.491983413696289,
+ "step": 681
+ },
+ {
+ "epoch": 9.475316732197467,
+ "grad_norm": 0.282461017370224,
+ "learning_rate": 0.0006,
+ "loss": 4.460200309753418,
+ "step": 682
+ },
+ {
+ "epoch": 9.489296636085626,
+ "grad_norm": 0.27174389362335205,
+ "learning_rate": 0.0006,
+ "loss": 4.416125297546387,
+ "step": 683
+ },
+ {
+ "epoch": 9.503276539973788,
+ "grad_norm": 0.24570637941360474,
+ "learning_rate": 0.0006,
+ "loss": 4.4451093673706055,
+ "step": 684
+ },
+ {
+ "epoch": 9.517256443861948,
+ "grad_norm": 0.2741486132144928,
+ "learning_rate": 0.0006,
+ "loss": 4.453263282775879,
+ "step": 685
+ },
+ {
+ "epoch": 9.53123634775011,
+ "grad_norm": 0.24753718078136444,
+ "learning_rate": 0.0006,
+ "loss": 4.483033180236816,
+ "step": 686
+ },
+ {
+ "epoch": 9.54521625163827,
+ "grad_norm": 0.24288412928581238,
+ "learning_rate": 0.0006,
+ "loss": 4.452961444854736,
+ "step": 687
+ },
+ {
+ "epoch": 9.55919615552643,
+ "grad_norm": 0.21554753184318542,
+ "learning_rate": 0.0006,
+ "loss": 4.476005554199219,
+ "step": 688
+ },
+ {
+ "epoch": 9.57317605941459,
+ "grad_norm": 0.22775942087173462,
+ "learning_rate": 0.0006,
+ "loss": 4.4479193687438965,
+ "step": 689
+ },
+ {
+ "epoch": 9.587155963302752,
+ "grad_norm": 0.2610701024532318,
+ "learning_rate": 0.0006,
+ "loss": 4.474987506866455,
+ "step": 690
+ },
+ {
+ "epoch": 9.601135867190912,
+ "grad_norm": 0.2394690215587616,
+ "learning_rate": 0.0006,
+ "loss": 4.444857597351074,
+ "step": 691
+ },
+ {
+ "epoch": 9.615115771079074,
+ "grad_norm": 0.20868559181690216,
+ "learning_rate": 0.0006,
+ "loss": 4.4220709800720215,
+ "step": 692
+ },
+ {
+ "epoch": 9.629095674967235,
+ "grad_norm": 0.21869882941246033,
+ "learning_rate": 0.0006,
+ "loss": 4.451737403869629,
+ "step": 693
+ },
+ {
+ "epoch": 9.643075578855395,
+ "grad_norm": 0.1802823394536972,
+ "learning_rate": 0.0006,
+ "loss": 4.409085273742676,
+ "step": 694
+ },
+ {
+ "epoch": 9.657055482743557,
+ "grad_norm": 0.17046281695365906,
+ "learning_rate": 0.0006,
+ "loss": 4.424643516540527,
+ "step": 695
+ },
+ {
+ "epoch": 9.671035386631717,
+ "grad_norm": 0.19561922550201416,
+ "learning_rate": 0.0006,
+ "loss": 4.412302017211914,
+ "step": 696
+ },
+ {
+ "epoch": 9.685015290519878,
+ "grad_norm": 0.21928799152374268,
+ "learning_rate": 0.0006,
+ "loss": 4.427582263946533,
+ "step": 697
+ },
+ {
+ "epoch": 9.698995194408038,
+ "grad_norm": 0.244873046875,
+ "learning_rate": 0.0006,
+ "loss": 4.431827545166016,
+ "step": 698
+ },
+ {
+ "epoch": 9.7129750982962,
+ "grad_norm": 0.2799488604068756,
+ "learning_rate": 0.0006,
+ "loss": 4.407991409301758,
+ "step": 699
+ },
+ {
+ "epoch": 9.72695500218436,
+ "grad_norm": 0.2699538767337799,
+ "learning_rate": 0.0006,
+ "loss": 4.412313461303711,
+ "step": 700
+ },
+ {
+ "epoch": 9.740934906072521,
+ "grad_norm": 0.22293835878372192,
+ "learning_rate": 0.0006,
+ "loss": 4.423369884490967,
+ "step": 701
+ },
+ {
+ "epoch": 9.754914809960681,
+ "grad_norm": 0.21554361283779144,
+ "learning_rate": 0.0006,
+ "loss": 4.42026948928833,
+ "step": 702
+ },
+ {
+ "epoch": 9.768894713848843,
+ "grad_norm": 0.22135840356349945,
+ "learning_rate": 0.0006,
+ "loss": 4.400010108947754,
+ "step": 703
+ },
+ {
+ "epoch": 9.782874617737003,
+ "grad_norm": 0.2169952541589737,
+ "learning_rate": 0.0006,
+ "loss": 4.394582271575928,
+ "step": 704
+ },
+ {
+ "epoch": 9.796854521625164,
+ "grad_norm": 0.18913042545318604,
+ "learning_rate": 0.0006,
+ "loss": 4.395880699157715,
+ "step": 705
+ },
+ {
+ "epoch": 9.810834425513324,
+ "grad_norm": 0.191524475812912,
+ "learning_rate": 0.0006,
+ "loss": 4.378962516784668,
+ "step": 706
+ },
+ {
+ "epoch": 9.824814329401486,
+ "grad_norm": 0.20057640969753265,
+ "learning_rate": 0.0006,
+ "loss": 4.431066513061523,
+ "step": 707
+ },
+ {
+ "epoch": 9.838794233289645,
+ "grad_norm": 0.21670377254486084,
+ "learning_rate": 0.0006,
+ "loss": 4.364682197570801,
+ "step": 708
+ },
+ {
+ "epoch": 9.852774137177807,
+ "grad_norm": 0.21653099358081818,
+ "learning_rate": 0.0006,
+ "loss": 4.4050445556640625,
+ "step": 709
+ },
+ {
+ "epoch": 9.866754041065967,
+ "grad_norm": 0.2217673808336258,
+ "learning_rate": 0.0006,
+ "loss": 4.423664093017578,
+ "step": 710
+ },
+ {
+ "epoch": 9.880733944954128,
+ "grad_norm": 0.251078337430954,
+ "learning_rate": 0.0006,
+ "loss": 4.405768394470215,
+ "step": 711
+ },
+ {
+ "epoch": 9.89471384884229,
+ "grad_norm": 0.28962627053260803,
+ "learning_rate": 0.0006,
+ "loss": 4.421207427978516,
+ "step": 712
+ },
+ {
+ "epoch": 9.90869375273045,
+ "grad_norm": 0.3478074371814728,
+ "learning_rate": 0.0006,
+ "loss": 4.414942741394043,
+ "step": 713
+ },
+ {
+ "epoch": 9.922673656618612,
+ "grad_norm": 0.40396368503570557,
+ "learning_rate": 0.0006,
+ "loss": 4.415163993835449,
+ "step": 714
+ },
+ {
+ "epoch": 9.936653560506771,
+ "grad_norm": 0.3689858019351959,
+ "learning_rate": 0.0006,
+ "loss": 4.381345272064209,
+ "step": 715
+ },
+ {
+ "epoch": 9.950633464394933,
+ "grad_norm": 0.344868004322052,
+ "learning_rate": 0.0006,
+ "loss": 4.433088302612305,
+ "step": 716
+ },
+ {
+ "epoch": 9.964613368283093,
+ "grad_norm": 0.37976378202438354,
+ "learning_rate": 0.0006,
+ "loss": 4.431371212005615,
+ "step": 717
+ },
+ {
+ "epoch": 9.978593272171254,
+ "grad_norm": 0.4354130029678345,
+ "learning_rate": 0.0006,
+ "loss": 4.434148788452148,
+ "step": 718
+ },
+ {
+ "epoch": 9.992573176059414,
+ "grad_norm": 0.35859373211860657,
+ "learning_rate": 0.0006,
+ "loss": 4.428055763244629,
+ "step": 719
+ },
+ {
+ "epoch": 10.0,
+ "grad_norm": 0.3365023732185364,
+ "learning_rate": 0.0006,
+ "loss": 4.3888654708862305,
+ "step": 720
+ },
+ {
+ "epoch": 10.0,
+ "eval_loss": 4.638620853424072,
+ "eval_runtime": 44.3054,
+ "eval_samples_per_second": 55.117,
+ "eval_steps_per_second": 3.453,
+ "step": 720
+ },
+ {
+ "epoch": 10.013979903888162,
+ "grad_norm": 0.3267960250377655,
+ "learning_rate": 0.0006,
+ "loss": 4.386068344116211,
+ "step": 721
+ },
+ {
+ "epoch": 10.027959807776321,
+ "grad_norm": 0.33440953493118286,
+ "learning_rate": 0.0006,
+ "loss": 4.397515296936035,
+ "step": 722
+ },
+ {
+ "epoch": 10.041939711664483,
+ "grad_norm": 0.30047518014907837,
+ "learning_rate": 0.0006,
+ "loss": 4.398358345031738,
+ "step": 723
+ },
+ {
+ "epoch": 10.055919615552643,
+ "grad_norm": 0.2912217378616333,
+ "learning_rate": 0.0006,
+ "loss": 4.341166973114014,
+ "step": 724
+ },
+ {
+ "epoch": 10.069899519440805,
+ "grad_norm": 0.3199564218521118,
+ "learning_rate": 0.0006,
+ "loss": 4.388717174530029,
+ "step": 725
+ },
+ {
+ "epoch": 10.083879423328964,
+ "grad_norm": 0.2765582799911499,
+ "learning_rate": 0.0006,
+ "loss": 4.392992973327637,
+ "step": 726
+ },
+ {
+ "epoch": 10.097859327217126,
+ "grad_norm": 0.27138450741767883,
+ "learning_rate": 0.0006,
+ "loss": 4.382307529449463,
+ "step": 727
+ },
+ {
+ "epoch": 10.111839231105286,
+ "grad_norm": 0.29230645298957825,
+ "learning_rate": 0.0006,
+ "loss": 4.357486724853516,
+ "step": 728
+ },
+ {
+ "epoch": 10.125819134993447,
+ "grad_norm": 0.3127598464488983,
+ "learning_rate": 0.0006,
+ "loss": 4.39072322845459,
+ "step": 729
+ },
+ {
+ "epoch": 10.139799038881607,
+ "grad_norm": 0.3230913281440735,
+ "learning_rate": 0.0006,
+ "loss": 4.35037899017334,
+ "step": 730
+ },
+ {
+ "epoch": 10.153778942769769,
+ "grad_norm": 0.333675354719162,
+ "learning_rate": 0.0006,
+ "loss": 4.378030776977539,
+ "step": 731
+ },
+ {
+ "epoch": 10.167758846657929,
+ "grad_norm": 0.30325770378112793,
+ "learning_rate": 0.0006,
+ "loss": 4.372736930847168,
+ "step": 732
+ },
+ {
+ "epoch": 10.18173875054609,
+ "grad_norm": 0.2888163924217224,
+ "learning_rate": 0.0006,
+ "loss": 4.397604942321777,
+ "step": 733
+ },
+ {
+ "epoch": 10.19571865443425,
+ "grad_norm": 0.3378832936286926,
+ "learning_rate": 0.0006,
+ "loss": 4.395705223083496,
+ "step": 734
+ },
+ {
+ "epoch": 10.209698558322412,
+ "grad_norm": 0.30980268120765686,
+ "learning_rate": 0.0006,
+ "loss": 4.3861212730407715,
+ "step": 735
+ },
+ {
+ "epoch": 10.223678462210572,
+ "grad_norm": 0.2965783178806305,
+ "learning_rate": 0.0006,
+ "loss": 4.394898414611816,
+ "step": 736
+ },
+ {
+ "epoch": 10.237658366098733,
+ "grad_norm": 0.2818217873573303,
+ "learning_rate": 0.0006,
+ "loss": 4.36171817779541,
+ "step": 737
+ },
+ {
+ "epoch": 10.251638269986893,
+ "grad_norm": 0.2418123185634613,
+ "learning_rate": 0.0006,
+ "loss": 4.370945930480957,
+ "step": 738
+ },
+ {
+ "epoch": 10.265618173875055,
+ "grad_norm": 0.22372810542583466,
+ "learning_rate": 0.0006,
+ "loss": 4.354825973510742,
+ "step": 739
+ },
+ {
+ "epoch": 10.279598077763215,
+ "grad_norm": 0.238066166639328,
+ "learning_rate": 0.0006,
+ "loss": 4.376237392425537,
+ "step": 740
+ },
+ {
+ "epoch": 10.293577981651376,
+ "grad_norm": 0.22352449595928192,
+ "learning_rate": 0.0006,
+ "loss": 4.317084312438965,
+ "step": 741
+ },
+ {
+ "epoch": 10.307557885539538,
+ "grad_norm": 0.21685205399990082,
+ "learning_rate": 0.0006,
+ "loss": 4.335271835327148,
+ "step": 742
+ },
+ {
+ "epoch": 10.321537789427698,
+ "grad_norm": 0.19584694504737854,
+ "learning_rate": 0.0006,
+ "loss": 4.357963562011719,
+ "step": 743
+ },
+ {
+ "epoch": 10.33551769331586,
+ "grad_norm": 0.20373336970806122,
+ "learning_rate": 0.0006,
+ "loss": 4.401963233947754,
+ "step": 744
+ },
+ {
+ "epoch": 10.349497597204019,
+ "grad_norm": 0.2247837632894516,
+ "learning_rate": 0.0006,
+ "loss": 4.357202529907227,
+ "step": 745
+ },
+ {
+ "epoch": 10.36347750109218,
+ "grad_norm": 0.2416863739490509,
+ "learning_rate": 0.0006,
+ "loss": 4.364739418029785,
+ "step": 746
+ },
+ {
+ "epoch": 10.37745740498034,
+ "grad_norm": 0.22281162440776825,
+ "learning_rate": 0.0006,
+ "loss": 4.351607799530029,
+ "step": 747
+ },
+ {
+ "epoch": 10.391437308868502,
+ "grad_norm": 0.20751096308231354,
+ "learning_rate": 0.0006,
+ "loss": 4.370017051696777,
+ "step": 748
+ },
+ {
+ "epoch": 10.405417212756662,
+ "grad_norm": 0.19178363680839539,
+ "learning_rate": 0.0006,
+ "loss": 4.360328674316406,
+ "step": 749
+ },
+ {
+ "epoch": 10.419397116644824,
+ "grad_norm": 0.20534078776836395,
+ "learning_rate": 0.0006,
+ "loss": 4.3735432624816895,
+ "step": 750
+ },
+ {
+ "epoch": 10.433377020532983,
+ "grad_norm": 0.20533937215805054,
+ "learning_rate": 0.0006,
+ "loss": 4.326902389526367,
+ "step": 751
+ },
+ {
+ "epoch": 10.447356924421145,
+ "grad_norm": 0.22057875990867615,
+ "learning_rate": 0.0006,
+ "loss": 4.360934257507324,
+ "step": 752
+ },
+ {
+ "epoch": 10.461336828309305,
+ "grad_norm": 0.25568997859954834,
+ "learning_rate": 0.0006,
+ "loss": 4.345063209533691,
+ "step": 753
+ },
+ {
+ "epoch": 10.475316732197467,
+ "grad_norm": 0.31471487879753113,
+ "learning_rate": 0.0006,
+ "loss": 4.324014186859131,
+ "step": 754
+ },
+ {
+ "epoch": 10.489296636085626,
+ "grad_norm": 0.2716822624206543,
+ "learning_rate": 0.0006,
+ "loss": 4.318459510803223,
+ "step": 755
+ },
+ {
+ "epoch": 10.503276539973788,
+ "grad_norm": 0.19552019238471985,
+ "learning_rate": 0.0006,
+ "loss": 4.3367509841918945,
+ "step": 756
+ },
+ {
+ "epoch": 10.517256443861948,
+ "grad_norm": 0.22822986543178558,
+ "learning_rate": 0.0006,
+ "loss": 4.328935623168945,
+ "step": 757
+ },
+ {
+ "epoch": 10.53123634775011,
+ "grad_norm": 0.22282928228378296,
+ "learning_rate": 0.0006,
+ "loss": 4.358272552490234,
+ "step": 758
+ },
+ {
+ "epoch": 10.54521625163827,
+ "grad_norm": 0.23303352296352386,
+ "learning_rate": 0.0006,
+ "loss": 4.336641311645508,
+ "step": 759
+ },
+ {
+ "epoch": 10.55919615552643,
+ "grad_norm": 0.29474690556526184,
+ "learning_rate": 0.0006,
+ "loss": 4.343188285827637,
+ "step": 760
+ },
+ {
+ "epoch": 10.57317605941459,
+ "grad_norm": 0.36269059777259827,
+ "learning_rate": 0.0006,
+ "loss": 4.313019752502441,
+ "step": 761
+ },
+ {
+ "epoch": 10.587155963302752,
+ "grad_norm": 0.3742978870868683,
+ "learning_rate": 0.0006,
+ "loss": 4.361410140991211,
+ "step": 762
+ },
+ {
+ "epoch": 10.601135867190912,
+ "grad_norm": 0.34412163496017456,
+ "learning_rate": 0.0006,
+ "loss": 4.321324825286865,
+ "step": 763
+ },
+ {
+ "epoch": 10.615115771079074,
+ "grad_norm": 0.3464587926864624,
+ "learning_rate": 0.0006,
+ "loss": 4.341907501220703,
+ "step": 764
+ },
+ {
+ "epoch": 10.629095674967235,
+ "grad_norm": 0.3318136930465698,
+ "learning_rate": 0.0006,
+ "loss": 4.329099655151367,
+ "step": 765
+ },
+ {
+ "epoch": 10.643075578855395,
+ "grad_norm": 0.31292903423309326,
+ "learning_rate": 0.0006,
+ "loss": 4.332015037536621,
+ "step": 766
+ },
+ {
+ "epoch": 10.657055482743557,
+ "grad_norm": 0.2904847264289856,
+ "learning_rate": 0.0006,
+ "loss": 4.341764450073242,
+ "step": 767
+ },
+ {
+ "epoch": 10.671035386631717,
+ "grad_norm": 0.3287692666053772,
+ "learning_rate": 0.0006,
+ "loss": 4.342329025268555,
+ "step": 768
+ },
+ {
+ "epoch": 10.685015290519878,
+ "grad_norm": 0.3115365207195282,
+ "learning_rate": 0.0006,
+ "loss": 4.3530073165893555,
+ "step": 769
+ },
+ {
+ "epoch": 10.698995194408038,
+ "grad_norm": 0.24133864045143127,
+ "learning_rate": 0.0006,
+ "loss": 4.321497917175293,
+ "step": 770
+ },
+ {
+ "epoch": 10.7129750982962,
+ "grad_norm": 0.24658630788326263,
+ "learning_rate": 0.0006,
+ "loss": 4.32669734954834,
+ "step": 771
+ },
+ {
+ "epoch": 10.72695500218436,
+ "grad_norm": 0.2342129647731781,
+ "learning_rate": 0.0006,
+ "loss": 4.345459461212158,
+ "step": 772
+ },
+ {
+ "epoch": 10.740934906072521,
+ "grad_norm": 0.23360829055309296,
+ "learning_rate": 0.0006,
+ "loss": 4.33249568939209,
+ "step": 773
+ },
+ {
+ "epoch": 10.754914809960681,
+ "grad_norm": 0.24314677715301514,
+ "learning_rate": 0.0006,
+ "loss": 4.30499792098999,
+ "step": 774
+ },
+ {
+ "epoch": 10.768894713848843,
+ "grad_norm": 0.22105181217193604,
+ "learning_rate": 0.0006,
+ "loss": 4.33706521987915,
+ "step": 775
+ },
+ {
+ "epoch": 10.782874617737003,
+ "grad_norm": 0.23307174444198608,
+ "learning_rate": 0.0006,
+ "loss": 4.320387840270996,
+ "step": 776
+ },
+ {
+ "epoch": 10.796854521625164,
+ "grad_norm": 0.24946169555187225,
+ "learning_rate": 0.0006,
+ "loss": 4.316012382507324,
+ "step": 777
+ },
+ {
+ "epoch": 10.810834425513324,
+ "grad_norm": 0.26023536920547485,
+ "learning_rate": 0.0006,
+ "loss": 4.315193176269531,
+ "step": 778
+ },
+ {
+ "epoch": 10.824814329401486,
+ "grad_norm": 0.2688547968864441,
+ "learning_rate": 0.0006,
+ "loss": 4.3243255615234375,
+ "step": 779
+ },
+ {
+ "epoch": 10.838794233289645,
+ "grad_norm": 0.28188297152519226,
+ "learning_rate": 0.0006,
+ "loss": 4.3202972412109375,
+ "step": 780
+ },
+ {
+ "epoch": 10.852774137177807,
+ "grad_norm": 0.2890053689479828,
+ "learning_rate": 0.0006,
+ "loss": 4.318799018859863,
+ "step": 781
+ },
+ {
+ "epoch": 10.866754041065967,
+ "grad_norm": 0.2914353013038635,
+ "learning_rate": 0.0006,
+ "loss": 4.314262390136719,
+ "step": 782
+ },
+ {
+ "epoch": 10.880733944954128,
+ "grad_norm": 0.3145572543144226,
+ "learning_rate": 0.0006,
+ "loss": 4.339262008666992,
+ "step": 783
+ },
+ {
+ "epoch": 10.89471384884229,
+ "grad_norm": 0.323062002658844,
+ "learning_rate": 0.0006,
+ "loss": 4.354856491088867,
+ "step": 784
+ },
+ {
+ "epoch": 10.90869375273045,
+ "grad_norm": 0.32741227746009827,
+ "learning_rate": 0.0006,
+ "loss": 4.325577735900879,
+ "step": 785
+ },
+ {
+ "epoch": 10.922673656618612,
+ "grad_norm": 0.2855733036994934,
+ "learning_rate": 0.0006,
+ "loss": 4.324419021606445,
+ "step": 786
+ },
+ {
+ "epoch": 10.936653560506771,
+ "grad_norm": 0.2969444990158081,
+ "learning_rate": 0.0006,
+ "loss": 4.320681095123291,
+ "step": 787
+ },
+ {
+ "epoch": 10.950633464394933,
+ "grad_norm": 0.28108111023902893,
+ "learning_rate": 0.0006,
+ "loss": 4.32673454284668,
+ "step": 788
+ },
+ {
+ "epoch": 10.964613368283093,
+ "grad_norm": 0.2537972629070282,
+ "learning_rate": 0.0006,
+ "loss": 4.3197021484375,
+ "step": 789
+ },
+ {
+ "epoch": 10.978593272171254,
+ "grad_norm": 0.2354544699192047,
+ "learning_rate": 0.0006,
+ "loss": 4.3354973793029785,
+ "step": 790
+ },
+ {
+ "epoch": 10.992573176059414,
+ "grad_norm": 0.26195117831230164,
+ "learning_rate": 0.0006,
+ "loss": 4.3172526359558105,
+ "step": 791
+ },
+ {
+ "epoch": 11.0,
+ "grad_norm": 0.27089616656303406,
+ "learning_rate": 0.0006,
+ "loss": 4.324293613433838,
+ "step": 792
+ },
+ {
+ "epoch": 11.0,
+ "eval_loss": 4.531813621520996,
+ "eval_runtime": 44.1656,
+ "eval_samples_per_second": 55.292,
+ "eval_steps_per_second": 3.464,
+ "step": 792
+ },
+ {
+ "epoch": 11.013979903888162,
+ "grad_norm": 0.2526339590549469,
+ "learning_rate": 0.0006,
+ "loss": 4.287600517272949,
+ "step": 793
+ },
+ {
+ "epoch": 11.027959807776321,
+ "grad_norm": 0.24318458139896393,
+ "learning_rate": 0.0006,
+ "loss": 4.268078327178955,
+ "step": 794
+ },
+ {
+ "epoch": 11.041939711664483,
+ "grad_norm": 0.2450830638408661,
+ "learning_rate": 0.0006,
+ "loss": 4.265467643737793,
+ "step": 795
+ },
+ {
+ "epoch": 11.055919615552643,
+ "grad_norm": 0.23963099718093872,
+ "learning_rate": 0.0006,
+ "loss": 4.267931938171387,
+ "step": 796
+ },
+ {
+ "epoch": 11.069899519440805,
+ "grad_norm": 0.2488657534122467,
+ "learning_rate": 0.0006,
+ "loss": 4.30262565612793,
+ "step": 797
+ },
+ {
+ "epoch": 11.083879423328964,
+ "grad_norm": 0.2319781631231308,
+ "learning_rate": 0.0006,
+ "loss": 4.28665828704834,
+ "step": 798
+ },
+ {
+ "epoch": 11.097859327217126,
+ "grad_norm": 0.2425263375043869,
+ "learning_rate": 0.0006,
+ "loss": 4.284830570220947,
+ "step": 799
+ },
+ {
+ "epoch": 11.111839231105286,
+ "grad_norm": 0.23096567392349243,
+ "learning_rate": 0.0006,
+ "loss": 4.2817206382751465,
+ "step": 800
+ },
+ {
+ "epoch": 11.125819134993447,
+ "grad_norm": 0.2846364676952362,
+ "learning_rate": 0.0006,
+ "loss": 4.276104927062988,
+ "step": 801
+ },
+ {
+ "epoch": 11.139799038881607,
+ "grad_norm": 0.2984965741634369,
+ "learning_rate": 0.0006,
+ "loss": 4.2909650802612305,
+ "step": 802
+ },
+ {
+ "epoch": 11.153778942769769,
+ "grad_norm": 0.2841213643550873,
+ "learning_rate": 0.0006,
+ "loss": 4.283358097076416,
+ "step": 803
+ },
+ {
+ "epoch": 11.167758846657929,
+ "grad_norm": 0.29192933440208435,
+ "learning_rate": 0.0006,
+ "loss": 4.267040729522705,
+ "step": 804
+ },
+ {
+ "epoch": 11.18173875054609,
+ "grad_norm": 0.3254184126853943,
+ "learning_rate": 0.0006,
+ "loss": 4.301564693450928,
+ "step": 805
+ },
+ {
+ "epoch": 11.19571865443425,
+ "grad_norm": 0.3347095847129822,
+ "learning_rate": 0.0006,
+ "loss": 4.271395683288574,
+ "step": 806
+ },
+ {
+ "epoch": 11.209698558322412,
+ "grad_norm": 0.25609350204467773,
+ "learning_rate": 0.0006,
+ "loss": 4.2963056564331055,
+ "step": 807
+ },
+ {
+ "epoch": 11.223678462210572,
+ "grad_norm": 0.29272061586380005,
+ "learning_rate": 0.0006,
+ "loss": 4.298416614532471,
+ "step": 808
+ },
+ {
+ "epoch": 11.237658366098733,
+ "grad_norm": 0.32179465889930725,
+ "learning_rate": 0.0006,
+ "loss": 4.294036865234375,
+ "step": 809
+ },
+ {
+ "epoch": 11.251638269986893,
+ "grad_norm": 0.3336549401283264,
+ "learning_rate": 0.0006,
+ "loss": 4.291993141174316,
+ "step": 810
+ },
+ {
+ "epoch": 11.265618173875055,
+ "grad_norm": 0.32273536920547485,
+ "learning_rate": 0.0006,
+ "loss": 4.311004638671875,
+ "step": 811
+ },
+ {
+ "epoch": 11.279598077763215,
+ "grad_norm": 0.3575087785720825,
+ "learning_rate": 0.0006,
+ "loss": 4.300217628479004,
+ "step": 812
+ },
+ {
+ "epoch": 11.293577981651376,
+ "grad_norm": 0.3332885205745697,
+ "learning_rate": 0.0006,
+ "loss": 4.278337478637695,
+ "step": 813
+ },
+ {
+ "epoch": 11.307557885539538,
+ "grad_norm": 0.31440407037734985,
+ "learning_rate": 0.0006,
+ "loss": 4.273826599121094,
+ "step": 814
+ },
+ {
+ "epoch": 11.321537789427698,
+ "grad_norm": 0.29822009801864624,
+ "learning_rate": 0.0006,
+ "loss": 4.284292221069336,
+ "step": 815
+ },
+ {
+ "epoch": 11.33551769331586,
+ "grad_norm": 0.30695512890815735,
+ "learning_rate": 0.0006,
+ "loss": 4.2831926345825195,
+ "step": 816
+ },
+ {
+ "epoch": 11.349497597204019,
+ "grad_norm": 0.30576950311660767,
+ "learning_rate": 0.0006,
+ "loss": 4.277133464813232,
+ "step": 817
+ },
+ {
+ "epoch": 11.36347750109218,
+ "grad_norm": 0.2859647870063782,
+ "learning_rate": 0.0006,
+ "loss": 4.3130106925964355,
+ "step": 818
+ },
+ {
+ "epoch": 11.37745740498034,
+ "grad_norm": 0.32417574524879456,
+ "learning_rate": 0.0006,
+ "loss": 4.310303211212158,
+ "step": 819
+ },
+ {
+ "epoch": 11.391437308868502,
+ "grad_norm": 0.3512463867664337,
+ "learning_rate": 0.0006,
+ "loss": 4.287015438079834,
+ "step": 820
+ },
+ {
+ "epoch": 11.405417212756662,
+ "grad_norm": 0.32578620314598083,
+ "learning_rate": 0.0006,
+ "loss": 4.2957940101623535,
+ "step": 821
+ },
+ {
+ "epoch": 11.419397116644824,
+ "grad_norm": 0.287949800491333,
+ "learning_rate": 0.0006,
+ "loss": 4.2881879806518555,
+ "step": 822
+ },
+ {
+ "epoch": 11.433377020532983,
+ "grad_norm": 0.28048595786094666,
+ "learning_rate": 0.0006,
+ "loss": 4.274960517883301,
+ "step": 823
+ },
+ {
+ "epoch": 11.447356924421145,
+ "grad_norm": 0.2541540563106537,
+ "learning_rate": 0.0006,
+ "loss": 4.261083602905273,
+ "step": 824
+ },
+ {
+ "epoch": 11.461336828309305,
+ "grad_norm": 0.2348361313343048,
+ "learning_rate": 0.0006,
+ "loss": 4.271036148071289,
+ "step": 825
+ },
+ {
+ "epoch": 11.475316732197467,
+ "grad_norm": 0.20913535356521606,
+ "learning_rate": 0.0006,
+ "loss": 4.307661056518555,
+ "step": 826
+ },
+ {
+ "epoch": 11.489296636085626,
+ "grad_norm": 0.22298868000507355,
+ "learning_rate": 0.0006,
+ "loss": 4.26902961730957,
+ "step": 827
+ },
+ {
+ "epoch": 11.503276539973788,
+ "grad_norm": 0.22752761840820312,
+ "learning_rate": 0.0006,
+ "loss": 4.305529594421387,
+ "step": 828
+ },
+ {
+ "epoch": 11.517256443861948,
+ "grad_norm": 0.2149917483329773,
+ "learning_rate": 0.0006,
+ "loss": 4.25134801864624,
+ "step": 829
+ },
+ {
+ "epoch": 11.53123634775011,
+ "grad_norm": 0.21085695922374725,
+ "learning_rate": 0.0006,
+ "loss": 4.266982078552246,
+ "step": 830
+ },
+ {
+ "epoch": 11.54521625163827,
+ "grad_norm": 0.21586747467517853,
+ "learning_rate": 0.0006,
+ "loss": 4.235255718231201,
+ "step": 831
+ },
+ {
+ "epoch": 11.55919615552643,
+ "grad_norm": 0.2520856559276581,
+ "learning_rate": 0.0006,
+ "loss": 4.283442497253418,
+ "step": 832
+ },
+ {
+ "epoch": 11.57317605941459,
+ "grad_norm": 0.2825471758842468,
+ "learning_rate": 0.0006,
+ "loss": 4.234672546386719,
+ "step": 833
+ },
+ {
+ "epoch": 11.587155963302752,
+ "grad_norm": 0.27437824010849,
+ "learning_rate": 0.0006,
+ "loss": 4.246068000793457,
+ "step": 834
+ },
+ {
+ "epoch": 11.601135867190912,
+ "grad_norm": 0.2596757411956787,
+ "learning_rate": 0.0006,
+ "loss": 4.278448104858398,
+ "step": 835
+ },
+ {
+ "epoch": 11.615115771079074,
+ "grad_norm": 0.25663474202156067,
+ "learning_rate": 0.0006,
+ "loss": 4.308779716491699,
+ "step": 836
+ },
+ {
+ "epoch": 11.629095674967235,
+ "grad_norm": 0.2546203136444092,
+ "learning_rate": 0.0006,
+ "loss": 4.261247634887695,
+ "step": 837
+ },
+ {
+ "epoch": 11.643075578855395,
+ "grad_norm": 0.24722838401794434,
+ "learning_rate": 0.0006,
+ "loss": 4.275888442993164,
+ "step": 838
+ },
+ {
+ "epoch": 11.657055482743557,
+ "grad_norm": 0.3022806644439697,
+ "learning_rate": 0.0006,
+ "loss": 4.2572407722473145,
+ "step": 839
+ },
+ {
+ "epoch": 11.671035386631717,
+ "grad_norm": 0.31170839071273804,
+ "learning_rate": 0.0006,
+ "loss": 4.26992654800415,
+ "step": 840
+ },
+ {
+ "epoch": 11.685015290519878,
+ "grad_norm": 0.31362825632095337,
+ "learning_rate": 0.0006,
+ "loss": 4.2354655265808105,
+ "step": 841
+ },
+ {
+ "epoch": 11.698995194408038,
+ "grad_norm": 0.28741633892059326,
+ "learning_rate": 0.0006,
+ "loss": 4.263496398925781,
+ "step": 842
+ },
+ {
+ "epoch": 11.7129750982962,
+ "grad_norm": 0.2492494285106659,
+ "learning_rate": 0.0006,
+ "loss": 4.26463508605957,
+ "step": 843
+ },
+ {
+ "epoch": 11.72695500218436,
+ "grad_norm": 0.24324660003185272,
+ "learning_rate": 0.0006,
+ "loss": 4.245428085327148,
+ "step": 844
+ },
+ {
+ "epoch": 11.740934906072521,
+ "grad_norm": 0.23591114580631256,
+ "learning_rate": 0.0006,
+ "loss": 4.249845504760742,
+ "step": 845
+ },
+ {
+ "epoch": 11.754914809960681,
+ "grad_norm": 0.2202281504869461,
+ "learning_rate": 0.0006,
+ "loss": 4.245006084442139,
+ "step": 846
+ },
+ {
+ "epoch": 11.768894713848843,
+ "grad_norm": 0.22117942571640015,
+ "learning_rate": 0.0006,
+ "loss": 4.27812385559082,
+ "step": 847
+ },
+ {
+ "epoch": 11.782874617737003,
+ "grad_norm": 0.26361414790153503,
+ "learning_rate": 0.0006,
+ "loss": 4.250475883483887,
+ "step": 848
+ },
+ {
+ "epoch": 11.796854521625164,
+ "grad_norm": 0.2820321321487427,
+ "learning_rate": 0.0006,
+ "loss": 4.265835762023926,
+ "step": 849
+ },
+ {
+ "epoch": 11.810834425513324,
+ "grad_norm": 0.2078961282968521,
+ "learning_rate": 0.0006,
+ "loss": 4.251298904418945,
+ "step": 850
+ },
+ {
+ "epoch": 11.824814329401486,
+ "grad_norm": 0.21548646688461304,
+ "learning_rate": 0.0006,
+ "loss": 4.288539886474609,
+ "step": 851
+ },
+ {
+ "epoch": 11.838794233289645,
+ "grad_norm": 0.22719401121139526,
+ "learning_rate": 0.0006,
+ "loss": 4.252035140991211,
+ "step": 852
+ },
+ {
+ "epoch": 11.852774137177807,
+ "grad_norm": 0.21628320217132568,
+ "learning_rate": 0.0006,
+ "loss": 4.268622398376465,
+ "step": 853
+ },
+ {
+ "epoch": 11.866754041065967,
+ "grad_norm": 0.20855145156383514,
+ "learning_rate": 0.0006,
+ "loss": 4.253366470336914,
+ "step": 854
+ },
+ {
+ "epoch": 11.880733944954128,
+ "grad_norm": 0.2091914266347885,
+ "learning_rate": 0.0006,
+ "loss": 4.237805366516113,
+ "step": 855
+ },
+ {
+ "epoch": 11.89471384884229,
+ "grad_norm": 0.2000127136707306,
+ "learning_rate": 0.0006,
+ "loss": 4.268559455871582,
+ "step": 856
+ },
+ {
+ "epoch": 11.90869375273045,
+ "grad_norm": 0.21080894768238068,
+ "learning_rate": 0.0006,
+ "loss": 4.208702087402344,
+ "step": 857
+ },
+ {
+ "epoch": 11.922673656618612,
+ "grad_norm": 0.22125796973705292,
+ "learning_rate": 0.0006,
+ "loss": 4.250210762023926,
+ "step": 858
+ },
+ {
+ "epoch": 11.936653560506771,
+ "grad_norm": 0.25905469059944153,
+ "learning_rate": 0.0006,
+ "loss": 4.2263593673706055,
+ "step": 859
+ },
+ {
+ "epoch": 11.950633464394933,
+ "grad_norm": 0.29970306158065796,
+ "learning_rate": 0.0006,
+ "loss": 4.250848770141602,
+ "step": 860
+ },
+ {
+ "epoch": 11.964613368283093,
+ "grad_norm": 0.28155168890953064,
+ "learning_rate": 0.0006,
+ "loss": 4.272709369659424,
+ "step": 861
+ },
+ {
+ "epoch": 11.978593272171254,
+ "grad_norm": 0.23396113514900208,
+ "learning_rate": 0.0006,
+ "loss": 4.2674970626831055,
+ "step": 862
+ },
+ {
+ "epoch": 11.992573176059414,
+ "grad_norm": 0.23619577288627625,
+ "learning_rate": 0.0006,
+ "loss": 4.240267753601074,
+ "step": 863
+ },
+ {
+ "epoch": 12.0,
+ "grad_norm": 0.2779577076435089,
+ "learning_rate": 0.0006,
+ "loss": 4.267625331878662,
+ "step": 864
+ },
+ {
+ "epoch": 12.0,
+ "eval_loss": 4.437657356262207,
+ "eval_runtime": 44.4959,
+ "eval_samples_per_second": 54.881,
+ "eval_steps_per_second": 3.439,
+ "step": 864
+ },
+ {
+ "epoch": 12.013979903888162,
+ "grad_norm": 0.2948288321495056,
+ "learning_rate": 0.0006,
+ "loss": 4.232182502746582,
+ "step": 865
+ },
+ {
+ "epoch": 12.027959807776321,
+ "grad_norm": 0.3715663254261017,
+ "learning_rate": 0.0006,
+ "loss": 4.233771324157715,
+ "step": 866
+ },
+ {
+ "epoch": 12.041939711664483,
+ "grad_norm": 0.38358673453330994,
+ "learning_rate": 0.0006,
+ "loss": 4.208967685699463,
+ "step": 867
+ },
+ {
+ "epoch": 12.055919615552643,
+ "grad_norm": 0.3314538896083832,
+ "learning_rate": 0.0006,
+ "loss": 4.230685234069824,
+ "step": 868
+ },
+ {
+ "epoch": 12.069899519440805,
+ "grad_norm": 0.34171539545059204,
+ "learning_rate": 0.0006,
+ "loss": 4.231358528137207,
+ "step": 869
+ },
+ {
+ "epoch": 12.083879423328964,
+ "grad_norm": 0.3253359794616699,
+ "learning_rate": 0.0006,
+ "loss": 4.276405334472656,
+ "step": 870
+ },
+ {
+ "epoch": 12.097859327217126,
+ "grad_norm": 0.29008302092552185,
+ "learning_rate": 0.0006,
+ "loss": 4.232935905456543,
+ "step": 871
+ },
+ {
+ "epoch": 12.111839231105286,
+ "grad_norm": 0.28490355610847473,
+ "learning_rate": 0.0006,
+ "loss": 4.238036632537842,
+ "step": 872
+ },
+ {
+ "epoch": 12.125819134993447,
+ "grad_norm": 0.28446322679519653,
+ "learning_rate": 0.0006,
+ "loss": 4.210229873657227,
+ "step": 873
+ },
+ {
+ "epoch": 12.139799038881607,
+ "grad_norm": 0.29664531350135803,
+ "learning_rate": 0.0006,
+ "loss": 4.221309185028076,
+ "step": 874
+ },
+ {
+ "epoch": 12.153778942769769,
+ "grad_norm": 0.3083505928516388,
+ "learning_rate": 0.0006,
+ "loss": 4.221837997436523,
+ "step": 875
+ },
+ {
+ "epoch": 12.167758846657929,
+ "grad_norm": 0.3282921314239502,
+ "learning_rate": 0.0006,
+ "loss": 4.236713409423828,
+ "step": 876
+ },
+ {
+ "epoch": 12.18173875054609,
+ "grad_norm": 0.3603622615337372,
+ "learning_rate": 0.0006,
+ "loss": 4.245080947875977,
+ "step": 877
+ },
+ {
+ "epoch": 12.19571865443425,
+ "grad_norm": 0.38070905208587646,
+ "learning_rate": 0.0006,
+ "loss": 4.240756988525391,
+ "step": 878
+ },
+ {
+ "epoch": 12.209698558322412,
+ "grad_norm": 0.34479081630706787,
+ "learning_rate": 0.0006,
+ "loss": 4.200998306274414,
+ "step": 879
+ },
+ {
+ "epoch": 12.223678462210572,
+ "grad_norm": 0.3006879389286041,
+ "learning_rate": 0.0006,
+ "loss": 4.23531436920166,
+ "step": 880
+ },
+ {
+ "epoch": 12.237658366098733,
+ "grad_norm": 0.36835649609565735,
+ "learning_rate": 0.0006,
+ "loss": 4.229718208312988,
+ "step": 881
+ },
+ {
+ "epoch": 12.251638269986893,
+ "grad_norm": 0.4386984407901764,
+ "learning_rate": 0.0006,
+ "loss": 4.241188049316406,
+ "step": 882
+ },
+ {
+ "epoch": 12.265618173875055,
+ "grad_norm": 0.4442787170410156,
+ "learning_rate": 0.0006,
+ "loss": 4.239102840423584,
+ "step": 883
+ },
+ {
+ "epoch": 12.279598077763215,
+ "grad_norm": 0.324411541223526,
+ "learning_rate": 0.0006,
+ "loss": 4.198982238769531,
+ "step": 884
+ },
+ {
+ "epoch": 12.293577981651376,
+ "grad_norm": 0.2824151813983917,
+ "learning_rate": 0.0006,
+ "loss": 4.248816967010498,
+ "step": 885
+ },
+ {
+ "epoch": 12.307557885539538,
+ "grad_norm": 0.31407129764556885,
+ "learning_rate": 0.0006,
+ "loss": 4.2371320724487305,
+ "step": 886
+ },
+ {
+ "epoch": 12.321537789427698,
+ "grad_norm": 0.32920050621032715,
+ "learning_rate": 0.0006,
+ "loss": 4.210432052612305,
+ "step": 887
+ },
+ {
+ "epoch": 12.33551769331586,
+ "grad_norm": 0.315231055021286,
+ "learning_rate": 0.0006,
+ "loss": 4.219416618347168,
+ "step": 888
+ },
+ {
+ "epoch": 12.349497597204019,
+ "grad_norm": 0.30932050943374634,
+ "learning_rate": 0.0006,
+ "loss": 4.225022315979004,
+ "step": 889
+ },
+ {
+ "epoch": 12.36347750109218,
+ "grad_norm": 0.30242064595222473,
+ "learning_rate": 0.0006,
+ "loss": 4.2738518714904785,
+ "step": 890
+ },
+ {
+ "epoch": 12.37745740498034,
+ "grad_norm": 0.2926250994205475,
+ "learning_rate": 0.0006,
+ "loss": 4.231094837188721,
+ "step": 891
+ },
+ {
+ "epoch": 12.391437308868502,
+ "grad_norm": 0.2541215717792511,
+ "learning_rate": 0.0006,
+ "loss": 4.211821556091309,
+ "step": 892
+ },
+ {
+ "epoch": 12.405417212756662,
+ "grad_norm": 0.23693418502807617,
+ "learning_rate": 0.0006,
+ "loss": 4.208099365234375,
+ "step": 893
+ },
+ {
+ "epoch": 12.419397116644824,
+ "grad_norm": 0.22063226997852325,
+ "learning_rate": 0.0006,
+ "loss": 4.211234092712402,
+ "step": 894
+ },
+ {
+ "epoch": 12.433377020532983,
+ "grad_norm": 0.21536271274089813,
+ "learning_rate": 0.0006,
+ "loss": 4.199228286743164,
+ "step": 895
+ },
+ {
+ "epoch": 12.447356924421145,
+ "grad_norm": 0.243179589509964,
+ "learning_rate": 0.0006,
+ "loss": 4.204344749450684,
+ "step": 896
+ },
+ {
+ "epoch": 12.461336828309305,
+ "grad_norm": 0.2299746423959732,
+ "learning_rate": 0.0006,
+ "loss": 4.1565752029418945,
+ "step": 897
+ },
+ {
+ "epoch": 12.475316732197467,
+ "grad_norm": 0.2286847084760666,
+ "learning_rate": 0.0006,
+ "loss": 4.242953777313232,
+ "step": 898
+ },
+ {
+ "epoch": 12.489296636085626,
+ "grad_norm": 0.19463586807250977,
+ "learning_rate": 0.0006,
+ "loss": 4.214809417724609,
+ "step": 899
+ },
+ {
+ "epoch": 12.503276539973788,
+ "grad_norm": 0.1978398710489273,
+ "learning_rate": 0.0006,
+ "loss": 4.159815311431885,
+ "step": 900
+ },
+ {
+ "epoch": 12.517256443861948,
+ "grad_norm": 0.23177850246429443,
+ "learning_rate": 0.0006,
+ "loss": 4.2069902420043945,
+ "step": 901
+ },
+ {
+ "epoch": 12.53123634775011,
+ "grad_norm": 0.2408912032842636,
+ "learning_rate": 0.0006,
+ "loss": 4.206778526306152,
+ "step": 902
+ },
+ {
+ "epoch": 12.54521625163827,
+ "grad_norm": 0.21839919686317444,
+ "learning_rate": 0.0006,
+ "loss": 4.197076320648193,
+ "step": 903
+ },
+ {
+ "epoch": 12.55919615552643,
+ "grad_norm": 0.2053343504667282,
+ "learning_rate": 0.0006,
+ "loss": 4.21247673034668,
+ "step": 904
+ },
+ {
+ "epoch": 12.57317605941459,
+ "grad_norm": 0.19943439960479736,
+ "learning_rate": 0.0006,
+ "loss": 4.176966667175293,
+ "step": 905
+ },
+ {
+ "epoch": 12.587155963302752,
+ "grad_norm": 0.2012074887752533,
+ "learning_rate": 0.0006,
+ "loss": 4.210303783416748,
+ "step": 906
+ },
+ {
+ "epoch": 12.601135867190912,
+ "grad_norm": 0.22240376472473145,
+ "learning_rate": 0.0006,
+ "loss": 4.200625896453857,
+ "step": 907
+ },
+ {
+ "epoch": 12.615115771079074,
+ "grad_norm": 0.21729710698127747,
+ "learning_rate": 0.0006,
+ "loss": 4.2001953125,
+ "step": 908
+ },
+ {
+ "epoch": 12.629095674967235,
+ "grad_norm": 0.22470413148403168,
+ "learning_rate": 0.0006,
+ "loss": 4.197505950927734,
+ "step": 909
+ },
+ {
+ "epoch": 12.643075578855395,
+ "grad_norm": 0.23776157200336456,
+ "learning_rate": 0.0006,
+ "loss": 4.235603332519531,
+ "step": 910
+ },
+ {
+ "epoch": 12.657055482743557,
+ "grad_norm": 0.20616604387760162,
+ "learning_rate": 0.0006,
+ "loss": 4.193584442138672,
+ "step": 911
+ },
+ {
+ "epoch": 12.671035386631717,
+ "grad_norm": 0.1913922131061554,
+ "learning_rate": 0.0006,
+ "loss": 4.209191799163818,
+ "step": 912
+ },
+ {
+ "epoch": 12.685015290519878,
+ "grad_norm": 0.19427193701267242,
+ "learning_rate": 0.0006,
+ "loss": 4.219709396362305,
+ "step": 913
+ },
+ {
+ "epoch": 12.698995194408038,
+ "grad_norm": 0.20976558327674866,
+ "learning_rate": 0.0006,
+ "loss": 4.210859298706055,
+ "step": 914
+ },
+ {
+ "epoch": 12.7129750982962,
+ "grad_norm": 0.21571609377861023,
+ "learning_rate": 0.0006,
+ "loss": 4.189394950866699,
+ "step": 915
+ },
+ {
+ "epoch": 12.72695500218436,
+ "grad_norm": 0.2152620255947113,
+ "learning_rate": 0.0006,
+ "loss": 4.223589897155762,
+ "step": 916
+ },
+ {
+ "epoch": 12.740934906072521,
+ "grad_norm": 0.21867749094963074,
+ "learning_rate": 0.0006,
+ "loss": 4.198590278625488,
+ "step": 917
+ },
+ {
+ "epoch": 12.754914809960681,
+ "grad_norm": 0.22300855815410614,
+ "learning_rate": 0.0006,
+ "loss": 4.188891410827637,
+ "step": 918
+ },
+ {
+ "epoch": 12.768894713848843,
+ "grad_norm": 0.22197802364826202,
+ "learning_rate": 0.0006,
+ "loss": 4.190221309661865,
+ "step": 919
+ },
+ {
+ "epoch": 12.782874617737003,
+ "grad_norm": 0.20003341138362885,
+ "learning_rate": 0.0006,
+ "loss": 4.215453147888184,
+ "step": 920
+ },
+ {
+ "epoch": 12.796854521625164,
+ "grad_norm": 0.19887958467006683,
+ "learning_rate": 0.0006,
+ "loss": 4.18174934387207,
+ "step": 921
+ },
+ {
+ "epoch": 12.810834425513324,
+ "grad_norm": 0.20945803821086884,
+ "learning_rate": 0.0006,
+ "loss": 4.234947204589844,
+ "step": 922
+ },
+ {
+ "epoch": 12.824814329401486,
+ "grad_norm": 0.2253490388393402,
+ "learning_rate": 0.0006,
+ "loss": 4.2177228927612305,
+ "step": 923
+ },
+ {
+ "epoch": 12.838794233289645,
+ "grad_norm": 0.247610405087471,
+ "learning_rate": 0.0006,
+ "loss": 4.2013139724731445,
+ "step": 924
+ },
+ {
+ "epoch": 12.852774137177807,
+ "grad_norm": 0.2792088985443115,
+ "learning_rate": 0.0006,
+ "loss": 4.204774379730225,
+ "step": 925
+ },
+ {
+ "epoch": 12.866754041065967,
+ "grad_norm": 0.2839066982269287,
+ "learning_rate": 0.0006,
+ "loss": 4.186254978179932,
+ "step": 926
+ },
+ {
+ "epoch": 12.880733944954128,
+ "grad_norm": 0.2793181836605072,
+ "learning_rate": 0.0006,
+ "loss": 4.172411918640137,
+ "step": 927
+ },
+ {
+ "epoch": 12.89471384884229,
+ "grad_norm": 0.29506033658981323,
+ "learning_rate": 0.0006,
+ "loss": 4.202878475189209,
+ "step": 928
+ },
+ {
+ "epoch": 12.90869375273045,
+ "grad_norm": 0.2799845039844513,
+ "learning_rate": 0.0006,
+ "loss": 4.1563310623168945,
+ "step": 929
+ },
+ {
+ "epoch": 12.922673656618612,
+ "grad_norm": 0.23972125351428986,
+ "learning_rate": 0.0006,
+ "loss": 4.224601745605469,
+ "step": 930
+ },
+ {
+ "epoch": 12.936653560506771,
+ "grad_norm": 0.21558353304862976,
+ "learning_rate": 0.0006,
+ "loss": 4.167957305908203,
+ "step": 931
+ },
+ {
+ "epoch": 12.950633464394933,
+ "grad_norm": 0.21800188720226288,
+ "learning_rate": 0.0006,
+ "loss": 4.1746039390563965,
+ "step": 932
+ },
+ {
+ "epoch": 12.964613368283093,
+ "grad_norm": 0.2086547315120697,
+ "learning_rate": 0.0006,
+ "loss": 4.188137054443359,
+ "step": 933
+ },
+ {
+ "epoch": 12.978593272171254,
+ "grad_norm": 0.2174186110496521,
+ "learning_rate": 0.0006,
+ "loss": 4.184014320373535,
+ "step": 934
+ },
+ {
+ "epoch": 12.992573176059414,
+ "grad_norm": 0.22755110263824463,
+ "learning_rate": 0.0006,
+ "loss": 4.180912017822266,
+ "step": 935
+ },
+ {
+ "epoch": 13.0,
+ "grad_norm": 0.2735324203968048,
+ "learning_rate": 0.0006,
+ "loss": 4.201578617095947,
+ "step": 936
+ },
+ {
+ "epoch": 13.0,
+ "eval_loss": 4.396903038024902,
+ "eval_runtime": 44.5664,
+ "eval_samples_per_second": 54.795,
+ "eval_steps_per_second": 3.433,
+ "step": 936
+ },
+ {
+ "epoch": 13.013979903888162,
+ "grad_norm": 0.27577832341194153,
+ "learning_rate": 0.0006,
+ "loss": 4.149985313415527,
+ "step": 937
+ },
+ {
+ "epoch": 13.027959807776321,
+ "grad_norm": 0.25817009806632996,
+ "learning_rate": 0.0006,
+ "loss": 4.1526103019714355,
+ "step": 938
+ },
+ {
+ "epoch": 13.041939711664483,
+ "grad_norm": 0.24564379453659058,
+ "learning_rate": 0.0006,
+ "loss": 4.1661152839660645,
+ "step": 939
+ },
+ {
+ "epoch": 13.055919615552643,
+ "grad_norm": 0.2465466856956482,
+ "learning_rate": 0.0006,
+ "loss": 4.152953624725342,
+ "step": 940
+ },
+ {
+ "epoch": 13.069899519440805,
+ "grad_norm": 0.22702018916606903,
+ "learning_rate": 0.0006,
+ "loss": 4.145125389099121,
+ "step": 941
+ },
+ {
+ "epoch": 13.083879423328964,
+ "grad_norm": 0.24350613355636597,
+ "learning_rate": 0.0006,
+ "loss": 4.163095474243164,
+ "step": 942
+ },
+ {
+ "epoch": 13.097859327217126,
+ "grad_norm": 0.2504431903362274,
+ "learning_rate": 0.0006,
+ "loss": 4.136016845703125,
+ "step": 943
+ },
+ {
+ "epoch": 13.111839231105286,
+ "grad_norm": 0.24968865513801575,
+ "learning_rate": 0.0006,
+ "loss": 4.163487911224365,
+ "step": 944
+ },
+ {
+ "epoch": 13.125819134993447,
+ "grad_norm": 0.27164196968078613,
+ "learning_rate": 0.0006,
+ "loss": 4.1194353103637695,
+ "step": 945
+ },
+ {
+ "epoch": 13.139799038881607,
+ "grad_norm": 0.28127020597457886,
+ "learning_rate": 0.0006,
+ "loss": 4.184807300567627,
+ "step": 946
+ },
+ {
+ "epoch": 13.153778942769769,
+ "grad_norm": 0.24574966728687286,
+ "learning_rate": 0.0006,
+ "loss": 4.154998779296875,
+ "step": 947
+ },
+ {
+ "epoch": 13.167758846657929,
+ "grad_norm": 0.22310060262680054,
+ "learning_rate": 0.0006,
+ "loss": 4.182928085327148,
+ "step": 948
+ },
+ {
+ "epoch": 13.18173875054609,
+ "grad_norm": 0.2539508640766144,
+ "learning_rate": 0.0006,
+ "loss": 4.176900386810303,
+ "step": 949
+ },
+ {
+ "epoch": 13.19571865443425,
+ "grad_norm": 0.30925488471984863,
+ "learning_rate": 0.0006,
+ "loss": 4.1760711669921875,
+ "step": 950
+ },
+ {
+ "epoch": 13.209698558322412,
+ "grad_norm": 0.3842967450618744,
+ "learning_rate": 0.0006,
+ "loss": 4.1830949783325195,
+ "step": 951
+ },
+ {
+ "epoch": 13.223678462210572,
+ "grad_norm": 0.35950011014938354,
+ "learning_rate": 0.0006,
+ "loss": 4.131983757019043,
+ "step": 952
+ },
+ {
+ "epoch": 13.237658366098733,
+ "grad_norm": 0.29913705587387085,
+ "learning_rate": 0.0006,
+ "loss": 4.166984558105469,
+ "step": 953
+ },
+ {
+ "epoch": 13.251638269986893,
+ "grad_norm": 0.32008400559425354,
+ "learning_rate": 0.0006,
+ "loss": 4.156482696533203,
+ "step": 954
+ },
+ {
+ "epoch": 13.265618173875055,
+ "grad_norm": 0.3186642825603485,
+ "learning_rate": 0.0006,
+ "loss": 4.1661057472229,
+ "step": 955
+ },
+ {
+ "epoch": 13.279598077763215,
+ "grad_norm": 0.3194582462310791,
+ "learning_rate": 0.0006,
+ "loss": 4.169328689575195,
+ "step": 956
+ },
+ {
+ "epoch": 13.293577981651376,
+ "grad_norm": 0.3133867084980011,
+ "learning_rate": 0.0006,
+ "loss": 4.165459632873535,
+ "step": 957
+ },
+ {
+ "epoch": 13.307557885539538,
+ "grad_norm": 0.3232237696647644,
+ "learning_rate": 0.0006,
+ "loss": 4.2107439041137695,
+ "step": 958
+ },
+ {
+ "epoch": 13.321537789427698,
+ "grad_norm": 0.3133196234703064,
+ "learning_rate": 0.0006,
+ "loss": 4.184182167053223,
+ "step": 959
+ },
+ {
+ "epoch": 13.33551769331586,
+ "grad_norm": 0.296129435300827,
+ "learning_rate": 0.0006,
+ "loss": 4.168312072753906,
+ "step": 960
+ },
+ {
+ "epoch": 13.349497597204019,
+ "grad_norm": 0.2685348391532898,
+ "learning_rate": 0.0006,
+ "loss": 4.159984588623047,
+ "step": 961
+ },
+ {
+ "epoch": 13.36347750109218,
+ "grad_norm": 0.2644975781440735,
+ "learning_rate": 0.0006,
+ "loss": 4.164909362792969,
+ "step": 962
+ },
+ {
+ "epoch": 13.37745740498034,
+ "grad_norm": 0.2712913155555725,
+ "learning_rate": 0.0006,
+ "loss": 4.158056259155273,
+ "step": 963
+ },
+ {
+ "epoch": 13.391437308868502,
+ "grad_norm": 0.2687259316444397,
+ "learning_rate": 0.0006,
+ "loss": 4.182924270629883,
+ "step": 964
+ },
+ {
+ "epoch": 13.405417212756662,
+ "grad_norm": 0.25640392303466797,
+ "learning_rate": 0.0006,
+ "loss": 4.153351783752441,
+ "step": 965
+ },
+ {
+ "epoch": 13.419397116644824,
+ "grad_norm": 0.2646305561065674,
+ "learning_rate": 0.0006,
+ "loss": 4.18464469909668,
+ "step": 966
+ },
+ {
+ "epoch": 13.433377020532983,
+ "grad_norm": 0.24206851422786713,
+ "learning_rate": 0.0006,
+ "loss": 4.127564430236816,
+ "step": 967
+ },
+ {
+ "epoch": 13.447356924421145,
+ "grad_norm": 0.23800471425056458,
+ "learning_rate": 0.0006,
+ "loss": 4.163488388061523,
+ "step": 968
+ },
+ {
+ "epoch": 13.461336828309305,
+ "grad_norm": 0.22957314550876617,
+ "learning_rate": 0.0006,
+ "loss": 4.178133964538574,
+ "step": 969
+ },
+ {
+ "epoch": 13.475316732197467,
+ "grad_norm": 0.22867488861083984,
+ "learning_rate": 0.0006,
+ "loss": 4.159056186676025,
+ "step": 970
+ },
+ {
+ "epoch": 13.489296636085626,
+ "grad_norm": 0.21737419068813324,
+ "learning_rate": 0.0006,
+ "loss": 4.138628005981445,
+ "step": 971
+ },
+ {
+ "epoch": 13.503276539973788,
+ "grad_norm": 0.2319175899028778,
+ "learning_rate": 0.0006,
+ "loss": 4.14644718170166,
+ "step": 972
+ },
+ {
+ "epoch": 13.517256443861948,
+ "grad_norm": 0.2572193443775177,
+ "learning_rate": 0.0006,
+ "loss": 4.175213813781738,
+ "step": 973
+ },
+ {
+ "epoch": 13.53123634775011,
+ "grad_norm": 0.23483099043369293,
+ "learning_rate": 0.0006,
+ "loss": 4.133171558380127,
+ "step": 974
+ },
+ {
+ "epoch": 13.54521625163827,
+ "grad_norm": 0.2071552872657776,
+ "learning_rate": 0.0006,
+ "loss": 4.13730525970459,
+ "step": 975
+ },
+ {
+ "epoch": 13.55919615552643,
+ "grad_norm": 0.23074553906917572,
+ "learning_rate": 0.0006,
+ "loss": 4.175051689147949,
+ "step": 976
+ },
+ {
+ "epoch": 13.57317605941459,
+ "grad_norm": 0.2480078786611557,
+ "learning_rate": 0.0006,
+ "loss": 4.167630672454834,
+ "step": 977
+ },
+ {
+ "epoch": 13.587155963302752,
+ "grad_norm": 0.23444348573684692,
+ "learning_rate": 0.0006,
+ "loss": 4.141780853271484,
+ "step": 978
+ },
+ {
+ "epoch": 13.601135867190912,
+ "grad_norm": 0.2227829396724701,
+ "learning_rate": 0.0006,
+ "loss": 4.157566547393799,
+ "step": 979
+ },
+ {
+ "epoch": 13.615115771079074,
+ "grad_norm": 0.21478354930877686,
+ "learning_rate": 0.0006,
+ "loss": 4.131053447723389,
+ "step": 980
+ },
+ {
+ "epoch": 13.629095674967235,
+ "grad_norm": 0.1978664994239807,
+ "learning_rate": 0.0006,
+ "loss": 4.123660564422607,
+ "step": 981
+ },
+ {
+ "epoch": 13.643075578855395,
+ "grad_norm": 0.19980201125144958,
+ "learning_rate": 0.0006,
+ "loss": 4.174160480499268,
+ "step": 982
+ },
+ {
+ "epoch": 13.657055482743557,
+ "grad_norm": 0.19815555214881897,
+ "learning_rate": 0.0006,
+ "loss": 4.181703090667725,
+ "step": 983
+ },
+ {
+ "epoch": 13.671035386631717,
+ "grad_norm": 0.19524012506008148,
+ "learning_rate": 0.0006,
+ "loss": 4.163766860961914,
+ "step": 984
+ },
+ {
+ "epoch": 13.685015290519878,
+ "grad_norm": 0.2286096215248108,
+ "learning_rate": 0.0006,
+ "loss": 4.172213554382324,
+ "step": 985
+ },
+ {
+ "epoch": 13.698995194408038,
+ "grad_norm": 0.2210782766342163,
+ "learning_rate": 0.0006,
+ "loss": 4.187033653259277,
+ "step": 986
+ },
+ {
+ "epoch": 13.7129750982962,
+ "grad_norm": 0.21874216198921204,
+ "learning_rate": 0.0006,
+ "loss": 4.125125885009766,
+ "step": 987
+ },
+ {
+ "epoch": 13.72695500218436,
+ "grad_norm": 0.22848057746887207,
+ "learning_rate": 0.0006,
+ "loss": 4.153496742248535,
+ "step": 988
+ },
+ {
+ "epoch": 13.740934906072521,
+ "grad_norm": 0.2250450700521469,
+ "learning_rate": 0.0006,
+ "loss": 4.149165630340576,
+ "step": 989
+ },
+ {
+ "epoch": 13.754914809960681,
+ "grad_norm": 0.21443772315979004,
+ "learning_rate": 0.0006,
+ "loss": 4.1528825759887695,
+ "step": 990
+ },
+ {
+ "epoch": 13.768894713848843,
+ "grad_norm": 0.21927927434444427,
+ "learning_rate": 0.0006,
+ "loss": 4.146831512451172,
+ "step": 991
+ },
+ {
+ "epoch": 13.782874617737003,
+ "grad_norm": 0.2413124144077301,
+ "learning_rate": 0.0006,
+ "loss": 4.136909008026123,
+ "step": 992
+ },
+ {
+ "epoch": 13.796854521625164,
+ "grad_norm": 0.2603479325771332,
+ "learning_rate": 0.0006,
+ "loss": 4.12525749206543,
+ "step": 993
+ },
+ {
+ "epoch": 13.810834425513324,
+ "grad_norm": 0.26246970891952515,
+ "learning_rate": 0.0006,
+ "loss": 4.114049434661865,
+ "step": 994
+ },
+ {
+ "epoch": 13.824814329401486,
+ "grad_norm": 0.27031877636909485,
+ "learning_rate": 0.0006,
+ "loss": 4.1646552085876465,
+ "step": 995
+ },
+ {
+ "epoch": 13.838794233289645,
+ "grad_norm": 0.2499857395887375,
+ "learning_rate": 0.0006,
+ "loss": 4.139284133911133,
+ "step": 996
+ },
+ {
+ "epoch": 13.852774137177807,
+ "grad_norm": 0.22026537358760834,
+ "learning_rate": 0.0006,
+ "loss": 4.142191410064697,
+ "step": 997
+ },
+ {
+ "epoch": 13.866754041065967,
+ "grad_norm": 0.23738551139831543,
+ "learning_rate": 0.0006,
+ "loss": 4.1422882080078125,
+ "step": 998
+ },
+ {
+ "epoch": 13.880733944954128,
+ "grad_norm": 0.2416357398033142,
+ "learning_rate": 0.0006,
+ "loss": 4.14063835144043,
+ "step": 999
+ },
+ {
+ "epoch": 13.89471384884229,
+ "grad_norm": 0.33822184801101685,
+ "learning_rate": 0.0006,
+ "loss": 4.12839412689209,
+ "step": 1000
+ },
+ {
+ "epoch": 13.90869375273045,
+ "grad_norm": 0.3409678339958191,
+ "learning_rate": 0.0006,
+ "loss": 4.145351886749268,
+ "step": 1001
+ },
+ {
+ "epoch": 13.922673656618612,
+ "grad_norm": 0.2467597872018814,
+ "learning_rate": 0.0006,
+ "loss": 4.155339241027832,
+ "step": 1002
+ },
+ {
+ "epoch": 13.936653560506771,
+ "grad_norm": 0.2314649075269699,
+ "learning_rate": 0.0006,
+ "loss": 4.130176067352295,
+ "step": 1003
+ },
+ {
+ "epoch": 13.950633464394933,
+ "grad_norm": 0.23701290786266327,
+ "learning_rate": 0.0006,
+ "loss": 4.19205379486084,
+ "step": 1004
+ },
+ {
+ "epoch": 13.964613368283093,
+ "grad_norm": 0.2466491460800171,
+ "learning_rate": 0.0006,
+ "loss": 4.118908882141113,
+ "step": 1005
+ },
+ {
+ "epoch": 13.978593272171254,
+ "grad_norm": 0.23746836185455322,
+ "learning_rate": 0.0006,
+ "loss": 4.16111946105957,
+ "step": 1006
+ },
+ {
+ "epoch": 13.992573176059414,
+ "grad_norm": 0.24497751891613007,
+ "learning_rate": 0.0006,
+ "loss": 4.148624420166016,
+ "step": 1007
+ },
+ {
+ "epoch": 14.0,
+ "grad_norm": 0.25735899806022644,
+ "learning_rate": 0.0006,
+ "loss": 4.12002420425415,
+ "step": 1008
+ },
+ {
+ "epoch": 14.0,
+ "eval_loss": 4.335351467132568,
+ "eval_runtime": 44.0523,
+ "eval_samples_per_second": 55.434,
+ "eval_steps_per_second": 3.473,
+ "step": 1008
+ },
+ {
+ "epoch": 14.013979903888162,
+ "grad_norm": 0.24570082128047943,
+ "learning_rate": 0.0006,
+ "loss": 4.1036176681518555,
+ "step": 1009
+ },
+ {
+ "epoch": 14.027959807776321,
+ "grad_norm": 0.2525855302810669,
+ "learning_rate": 0.0006,
+ "loss": 4.142077445983887,
+ "step": 1010
+ },
+ {
+ "epoch": 14.041939711664483,
+ "grad_norm": 0.2701111435890198,
+ "learning_rate": 0.0006,
+ "loss": 4.096988677978516,
+ "step": 1011
+ },
+ {
+ "epoch": 14.055919615552643,
+ "grad_norm": 0.28173309564590454,
+ "learning_rate": 0.0006,
+ "loss": 4.148448944091797,
+ "step": 1012
+ },
+ {
+ "epoch": 14.069899519440805,
+ "grad_norm": 0.2651294469833374,
+ "learning_rate": 0.0006,
+ "loss": 4.121731281280518,
+ "step": 1013
+ },
+ {
+ "epoch": 14.083879423328964,
+ "grad_norm": 0.21160121262073517,
+ "learning_rate": 0.0006,
+ "loss": 4.108980178833008,
+ "step": 1014
+ },
+ {
+ "epoch": 14.097859327217126,
+ "grad_norm": 0.24786953628063202,
+ "learning_rate": 0.0006,
+ "loss": 4.133942604064941,
+ "step": 1015
+ },
+ {
+ "epoch": 14.111839231105286,
+ "grad_norm": 0.2722747027873993,
+ "learning_rate": 0.0006,
+ "loss": 4.115242958068848,
+ "step": 1016
+ },
+ {
+ "epoch": 14.125819134993447,
+ "grad_norm": 0.273360013961792,
+ "learning_rate": 0.0006,
+ "loss": 4.059296607971191,
+ "step": 1017
+ },
+ {
+ "epoch": 14.139799038881607,
+ "grad_norm": 0.2541784942150116,
+ "learning_rate": 0.0006,
+ "loss": 4.118365287780762,
+ "step": 1018
+ },
+ {
+ "epoch": 14.153778942769769,
+ "grad_norm": 0.23806381225585938,
+ "learning_rate": 0.0006,
+ "loss": 4.102812767028809,
+ "step": 1019
+ },
+ {
+ "epoch": 14.167758846657929,
+ "grad_norm": 0.2541005313396454,
+ "learning_rate": 0.0006,
+ "loss": 4.093264579772949,
+ "step": 1020
+ },
+ {
+ "epoch": 14.18173875054609,
+ "grad_norm": 0.2619539499282837,
+ "learning_rate": 0.0006,
+ "loss": 4.114917278289795,
+ "step": 1021
+ },
+ {
+ "epoch": 14.19571865443425,
+ "grad_norm": 0.2466963529586792,
+ "learning_rate": 0.0006,
+ "loss": 4.098258972167969,
+ "step": 1022
+ },
+ {
+ "epoch": 14.209698558322412,
+ "grad_norm": 0.24341611564159393,
+ "learning_rate": 0.0006,
+ "loss": 4.109346389770508,
+ "step": 1023
+ },
+ {
+ "epoch": 14.223678462210572,
+ "grad_norm": 0.23977765440940857,
+ "learning_rate": 0.0006,
+ "loss": 4.106716156005859,
+ "step": 1024
+ },
+ {
+ "epoch": 14.237658366098733,
+ "grad_norm": 0.253528356552124,
+ "learning_rate": 0.0006,
+ "loss": 4.102226257324219,
+ "step": 1025
+ },
+ {
+ "epoch": 14.251638269986893,
+ "grad_norm": 0.26954543590545654,
+ "learning_rate": 0.0006,
+ "loss": 4.107413291931152,
+ "step": 1026
+ },
+ {
+ "epoch": 14.265618173875055,
+ "grad_norm": 0.2610514760017395,
+ "learning_rate": 0.0006,
+ "loss": 4.110824108123779,
+ "step": 1027
+ },
+ {
+ "epoch": 14.279598077763215,
+ "grad_norm": 0.2579168677330017,
+ "learning_rate": 0.0006,
+ "loss": 4.082438945770264,
+ "step": 1028
+ },
+ {
+ "epoch": 14.293577981651376,
+ "grad_norm": 0.26916536688804626,
+ "learning_rate": 0.0006,
+ "loss": 4.075734615325928,
+ "step": 1029
+ },
+ {
+ "epoch": 14.307557885539538,
+ "grad_norm": 0.2998618185520172,
+ "learning_rate": 0.0006,
+ "loss": 4.088419437408447,
+ "step": 1030
+ },
+ {
+ "epoch": 14.321537789427698,
+ "grad_norm": 0.3162737190723419,
+ "learning_rate": 0.0006,
+ "loss": 4.125833034515381,
+ "step": 1031
+ },
+ {
+ "epoch": 14.33551769331586,
+ "grad_norm": 0.318601131439209,
+ "learning_rate": 0.0006,
+ "loss": 4.077424049377441,
+ "step": 1032
+ },
+ {
+ "epoch": 14.349497597204019,
+ "grad_norm": 0.32113415002822876,
+ "learning_rate": 0.0006,
+ "loss": 4.113360404968262,
+ "step": 1033
+ },
+ {
+ "epoch": 14.36347750109218,
+ "grad_norm": 0.3150886297225952,
+ "learning_rate": 0.0006,
+ "loss": 4.100013732910156,
+ "step": 1034
+ },
+ {
+ "epoch": 14.37745740498034,
+ "grad_norm": 0.29279956221580505,
+ "learning_rate": 0.0006,
+ "loss": 4.136394500732422,
+ "step": 1035
+ },
+ {
+ "epoch": 14.391437308868502,
+ "grad_norm": 0.28532543778419495,
+ "learning_rate": 0.0006,
+ "loss": 4.138948440551758,
+ "step": 1036
+ },
+ {
+ "epoch": 14.405417212756662,
+ "grad_norm": 0.2825978398323059,
+ "learning_rate": 0.0006,
+ "loss": 4.112217903137207,
+ "step": 1037
+ },
+ {
+ "epoch": 14.419397116644824,
+ "grad_norm": 0.2891198694705963,
+ "learning_rate": 0.0006,
+ "loss": 4.102682113647461,
+ "step": 1038
+ },
+ {
+ "epoch": 14.433377020532983,
+ "grad_norm": 0.2917391061782837,
+ "learning_rate": 0.0006,
+ "loss": 4.120752811431885,
+ "step": 1039
+ },
+ {
+ "epoch": 14.447356924421145,
+ "grad_norm": 0.2589806914329529,
+ "learning_rate": 0.0006,
+ "loss": 4.130519390106201,
+ "step": 1040
+ },
+ {
+ "epoch": 14.461336828309305,
+ "grad_norm": 0.2674788534641266,
+ "learning_rate": 0.0006,
+ "loss": 4.130382537841797,
+ "step": 1041
+ },
+ {
+ "epoch": 14.475316732197467,
+ "grad_norm": 0.2820362150669098,
+ "learning_rate": 0.0006,
+ "loss": 4.13947868347168,
+ "step": 1042
+ },
+ {
+ "epoch": 14.489296636085626,
+ "grad_norm": 0.2650109529495239,
+ "learning_rate": 0.0006,
+ "loss": 4.130346775054932,
+ "step": 1043
+ },
+ {
+ "epoch": 14.503276539973788,
+ "grad_norm": 0.29137638211250305,
+ "learning_rate": 0.0006,
+ "loss": 4.055751800537109,
+ "step": 1044
+ },
+ {
+ "epoch": 14.517256443861948,
+ "grad_norm": 0.3232433497905731,
+ "learning_rate": 0.0006,
+ "loss": 4.114810943603516,
+ "step": 1045
+ },
+ {
+ "epoch": 14.53123634775011,
+ "grad_norm": 0.2724473476409912,
+ "learning_rate": 0.0006,
+ "loss": 4.088351249694824,
+ "step": 1046
+ },
+ {
+ "epoch": 14.54521625163827,
+ "grad_norm": 0.23994430899620056,
+ "learning_rate": 0.0006,
+ "loss": 4.110936164855957,
+ "step": 1047
+ },
+ {
+ "epoch": 14.55919615552643,
+ "grad_norm": 0.2422720044851303,
+ "learning_rate": 0.0006,
+ "loss": 4.132844924926758,
+ "step": 1048
+ },
+ {
+ "epoch": 14.57317605941459,
+ "grad_norm": 0.21148815751075745,
+ "learning_rate": 0.0006,
+ "loss": 4.102499961853027,
+ "step": 1049
+ },
+ {
+ "epoch": 14.587155963302752,
+ "grad_norm": 0.22221639752388,
+ "learning_rate": 0.0006,
+ "loss": 4.126241683959961,
+ "step": 1050
+ },
+ {
+ "epoch": 14.601135867190912,
+ "grad_norm": 0.2538735866546631,
+ "learning_rate": 0.0006,
+ "loss": 4.116817951202393,
+ "step": 1051
+ },
+ {
+ "epoch": 14.615115771079074,
+ "grad_norm": 0.2555900514125824,
+ "learning_rate": 0.0006,
+ "loss": 4.106309413909912,
+ "step": 1052
+ },
+ {
+ "epoch": 14.629095674967235,
+ "grad_norm": 0.24753783643245697,
+ "learning_rate": 0.0006,
+ "loss": 4.1015119552612305,
+ "step": 1053
+ },
+ {
+ "epoch": 14.643075578855395,
+ "grad_norm": 0.238885298371315,
+ "learning_rate": 0.0006,
+ "loss": 4.120419502258301,
+ "step": 1054
+ },
+ {
+ "epoch": 14.657055482743557,
+ "grad_norm": 0.22693610191345215,
+ "learning_rate": 0.0006,
+ "loss": 4.084968566894531,
+ "step": 1055
+ },
+ {
+ "epoch": 14.671035386631717,
+ "grad_norm": 0.2100025862455368,
+ "learning_rate": 0.0006,
+ "loss": 4.108001708984375,
+ "step": 1056
+ },
+ {
+ "epoch": 14.685015290519878,
+ "grad_norm": 0.20437054336071014,
+ "learning_rate": 0.0006,
+ "loss": 4.151417255401611,
+ "step": 1057
+ },
+ {
+ "epoch": 14.698995194408038,
+ "grad_norm": 0.1926720291376114,
+ "learning_rate": 0.0006,
+ "loss": 4.091334342956543,
+ "step": 1058
+ },
+ {
+ "epoch": 14.7129750982962,
+ "grad_norm": 0.2120140641927719,
+ "learning_rate": 0.0006,
+ "loss": 4.111706256866455,
+ "step": 1059
+ },
+ {
+ "epoch": 14.72695500218436,
+ "grad_norm": 0.22877076268196106,
+ "learning_rate": 0.0006,
+ "loss": 4.123166084289551,
+ "step": 1060
+ },
+ {
+ "epoch": 14.740934906072521,
+ "grad_norm": 0.22149473428726196,
+ "learning_rate": 0.0006,
+ "loss": 4.099740028381348,
+ "step": 1061
+ },
+ {
+ "epoch": 14.754914809960681,
+ "grad_norm": 0.2351604402065277,
+ "learning_rate": 0.0006,
+ "loss": 4.066174507141113,
+ "step": 1062
+ },
+ {
+ "epoch": 14.768894713848843,
+ "grad_norm": 0.22895802557468414,
+ "learning_rate": 0.0006,
+ "loss": 4.101897239685059,
+ "step": 1063
+ },
+ {
+ "epoch": 14.782874617737003,
+ "grad_norm": 0.22050750255584717,
+ "learning_rate": 0.0006,
+ "loss": 4.122953414916992,
+ "step": 1064
+ },
+ {
+ "epoch": 14.796854521625164,
+ "grad_norm": 0.23255324363708496,
+ "learning_rate": 0.0006,
+ "loss": 4.11297607421875,
+ "step": 1065
+ },
+ {
+ "epoch": 14.810834425513324,
+ "grad_norm": 0.24522703886032104,
+ "learning_rate": 0.0006,
+ "loss": 4.131030082702637,
+ "step": 1066
+ },
+ {
+ "epoch": 14.824814329401486,
+ "grad_norm": 0.2492702752351761,
+ "learning_rate": 0.0006,
+ "loss": 4.076324939727783,
+ "step": 1067
+ },
+ {
+ "epoch": 14.838794233289645,
+ "grad_norm": 0.24410948157310486,
+ "learning_rate": 0.0006,
+ "loss": 4.109020709991455,
+ "step": 1068
+ },
+ {
+ "epoch": 14.852774137177807,
+ "grad_norm": 0.2463168203830719,
+ "learning_rate": 0.0006,
+ "loss": 4.135679244995117,
+ "step": 1069
+ },
+ {
+ "epoch": 14.866754041065967,
+ "grad_norm": 0.2563146650791168,
+ "learning_rate": 0.0006,
+ "loss": 4.0958027839660645,
+ "step": 1070
+ },
+ {
+ "epoch": 14.880733944954128,
+ "grad_norm": 0.261167049407959,
+ "learning_rate": 0.0006,
+ "loss": 4.114803314208984,
+ "step": 1071
+ },
+ {
+ "epoch": 14.89471384884229,
+ "grad_norm": 0.2593795955181122,
+ "learning_rate": 0.0006,
+ "loss": 4.1210618019104,
+ "step": 1072
+ },
+ {
+ "epoch": 14.90869375273045,
+ "grad_norm": 0.27184173464775085,
+ "learning_rate": 0.0006,
+ "loss": 4.095145225524902,
+ "step": 1073
+ },
+ {
+ "epoch": 14.922673656618612,
+ "grad_norm": 0.25289732217788696,
+ "learning_rate": 0.0006,
+ "loss": 4.107388973236084,
+ "step": 1074
+ },
+ {
+ "epoch": 14.936653560506771,
+ "grad_norm": 0.2176840454339981,
+ "learning_rate": 0.0006,
+ "loss": 4.105966567993164,
+ "step": 1075
+ },
+ {
+ "epoch": 14.950633464394933,
+ "grad_norm": 0.20930173993110657,
+ "learning_rate": 0.0006,
+ "loss": 4.126853942871094,
+ "step": 1076
+ },
+ {
+ "epoch": 14.964613368283093,
+ "grad_norm": 0.20850051939487457,
+ "learning_rate": 0.0006,
+ "loss": 4.074934959411621,
+ "step": 1077
+ },
+ {
+ "epoch": 14.978593272171254,
+ "grad_norm": 0.21987544000148773,
+ "learning_rate": 0.0006,
+ "loss": 4.123321533203125,
+ "step": 1078
+ },
+ {
+ "epoch": 14.992573176059414,
+ "grad_norm": 0.23821689188480377,
+ "learning_rate": 0.0006,
+ "loss": 4.082647323608398,
+ "step": 1079
+ },
+ {
+ "epoch": 15.0,
+ "grad_norm": 0.2590881288051605,
+ "learning_rate": 0.0006,
+ "loss": 4.113482475280762,
+ "step": 1080
+ },
+ {
+ "epoch": 15.0,
+ "eval_loss": 4.286936283111572,
+ "eval_runtime": 44.2665,
+ "eval_samples_per_second": 55.166,
+ "eval_steps_per_second": 3.456,
+ "step": 1080
+ },
+ {
+ "epoch": 15.013979903888162,
+ "grad_norm": 0.27885961532592773,
+ "learning_rate": 0.0006,
+ "loss": 4.0825958251953125,
+ "step": 1081
+ },
+ {
+ "epoch": 15.027959807776321,
+ "grad_norm": 0.2751246690750122,
+ "learning_rate": 0.0006,
+ "loss": 4.049782752990723,
+ "step": 1082
+ },
+ {
+ "epoch": 15.041939711664483,
+ "grad_norm": 0.25238561630249023,
+ "learning_rate": 0.0006,
+ "loss": 4.067366600036621,
+ "step": 1083
+ },
+ {
+ "epoch": 15.055919615552643,
+ "grad_norm": 0.27481040358543396,
+ "learning_rate": 0.0006,
+ "loss": 4.089946746826172,
+ "step": 1084
+ },
+ {
+ "epoch": 15.069899519440805,
+ "grad_norm": 0.2666703164577484,
+ "learning_rate": 0.0006,
+ "loss": 4.071957588195801,
+ "step": 1085
+ },
+ {
+ "epoch": 15.083879423328964,
+ "grad_norm": 0.2532065212726593,
+ "learning_rate": 0.0006,
+ "loss": 4.091561794281006,
+ "step": 1086
+ },
+ {
+ "epoch": 15.097859327217126,
+ "grad_norm": 0.23562374711036682,
+ "learning_rate": 0.0006,
+ "loss": 4.074953079223633,
+ "step": 1087
+ },
+ {
+ "epoch": 15.111839231105286,
+ "grad_norm": 0.2498065084218979,
+ "learning_rate": 0.0006,
+ "loss": 4.056004047393799,
+ "step": 1088
+ },
+ {
+ "epoch": 15.125819134993447,
+ "grad_norm": 0.257046639919281,
+ "learning_rate": 0.0006,
+ "loss": 4.044149875640869,
+ "step": 1089
+ },
+ {
+ "epoch": 15.139799038881607,
+ "grad_norm": 0.2417808622121811,
+ "learning_rate": 0.0006,
+ "loss": 4.071811676025391,
+ "step": 1090
+ },
+ {
+ "epoch": 15.153778942769769,
+ "grad_norm": 0.24742013216018677,
+ "learning_rate": 0.0006,
+ "loss": 4.081482887268066,
+ "step": 1091
+ },
+ {
+ "epoch": 15.167758846657929,
+ "grad_norm": 0.2610231637954712,
+ "learning_rate": 0.0006,
+ "loss": 4.06953763961792,
+ "step": 1092
+ },
+ {
+ "epoch": 15.18173875054609,
+ "grad_norm": 0.24688200652599335,
+ "learning_rate": 0.0006,
+ "loss": 4.079700469970703,
+ "step": 1093
+ },
+ {
+ "epoch": 15.19571865443425,
+ "grad_norm": 0.2650167942047119,
+ "learning_rate": 0.0006,
+ "loss": 4.082088947296143,
+ "step": 1094
+ },
+ {
+ "epoch": 15.209698558322412,
+ "grad_norm": 0.25913330912590027,
+ "learning_rate": 0.0006,
+ "loss": 4.081713676452637,
+ "step": 1095
+ },
+ {
+ "epoch": 15.223678462210572,
+ "grad_norm": 0.2547631561756134,
+ "learning_rate": 0.0006,
+ "loss": 4.073573112487793,
+ "step": 1096
+ },
+ {
+ "epoch": 15.237658366098733,
+ "grad_norm": 0.2732609510421753,
+ "learning_rate": 0.0006,
+ "loss": 4.10186767578125,
+ "step": 1097
+ },
+ {
+ "epoch": 15.251638269986893,
+ "grad_norm": 0.2990017533302307,
+ "learning_rate": 0.0006,
+ "loss": 4.085466384887695,
+ "step": 1098
+ },
+ {
+ "epoch": 15.265618173875055,
+ "grad_norm": 0.30252209305763245,
+ "learning_rate": 0.0006,
+ "loss": 4.077337265014648,
+ "step": 1099
+ },
+ {
+ "epoch": 15.279598077763215,
+ "grad_norm": 0.30046045780181885,
+ "learning_rate": 0.0006,
+ "loss": 4.0895891189575195,
+ "step": 1100
+ },
+ {
+ "epoch": 15.293577981651376,
+ "grad_norm": 0.2779843211174011,
+ "learning_rate": 0.0006,
+ "loss": 4.060354709625244,
+ "step": 1101
+ },
+ {
+ "epoch": 15.307557885539538,
+ "grad_norm": 0.26914986968040466,
+ "learning_rate": 0.0006,
+ "loss": 4.07314395904541,
+ "step": 1102
+ },
+ {
+ "epoch": 15.321537789427698,
+ "grad_norm": 0.24605873227119446,
+ "learning_rate": 0.0006,
+ "loss": 4.051377296447754,
+ "step": 1103
+ },
+ {
+ "epoch": 15.33551769331586,
+ "grad_norm": 0.25634095072746277,
+ "learning_rate": 0.0006,
+ "loss": 4.082427024841309,
+ "step": 1104
+ },
+ {
+ "epoch": 15.349497597204019,
+ "grad_norm": 0.2888158857822418,
+ "learning_rate": 0.0006,
+ "loss": 4.074253082275391,
+ "step": 1105
+ },
+ {
+ "epoch": 15.36347750109218,
+ "grad_norm": 0.2758261561393738,
+ "learning_rate": 0.0006,
+ "loss": 4.08344841003418,
+ "step": 1106
+ },
+ {
+ "epoch": 15.37745740498034,
+ "grad_norm": 0.26937270164489746,
+ "learning_rate": 0.0006,
+ "loss": 4.063424587249756,
+ "step": 1107
+ },
+ {
+ "epoch": 15.391437308868502,
+ "grad_norm": 0.2739955484867096,
+ "learning_rate": 0.0006,
+ "loss": 4.08005952835083,
+ "step": 1108
+ },
+ {
+ "epoch": 15.405417212756662,
+ "grad_norm": 0.2635386288166046,
+ "learning_rate": 0.0006,
+ "loss": 4.087360382080078,
+ "step": 1109
+ },
+ {
+ "epoch": 15.419397116644824,
+ "grad_norm": 0.2619768977165222,
+ "learning_rate": 0.0006,
+ "loss": 4.072653770446777,
+ "step": 1110
+ },
+ {
+ "epoch": 15.433377020532983,
+ "grad_norm": 0.24154804646968842,
+ "learning_rate": 0.0006,
+ "loss": 4.084464073181152,
+ "step": 1111
+ },
+ {
+ "epoch": 15.447356924421145,
+ "grad_norm": 0.24236027896404266,
+ "learning_rate": 0.0006,
+ "loss": 4.078777313232422,
+ "step": 1112
+ },
+ {
+ "epoch": 15.461336828309305,
+ "grad_norm": 0.24653038382530212,
+ "learning_rate": 0.0006,
+ "loss": 4.075024604797363,
+ "step": 1113
+ },
+ {
+ "epoch": 15.475316732197467,
+ "grad_norm": 0.27106523513793945,
+ "learning_rate": 0.0006,
+ "loss": 4.060937881469727,
+ "step": 1114
+ },
+ {
+ "epoch": 15.489296636085626,
+ "grad_norm": 0.25109633803367615,
+ "learning_rate": 0.0006,
+ "loss": 4.081971168518066,
+ "step": 1115
+ },
+ {
+ "epoch": 15.503276539973788,
+ "grad_norm": 0.23452287912368774,
+ "learning_rate": 0.0006,
+ "loss": 4.0762834548950195,
+ "step": 1116
+ },
+ {
+ "epoch": 15.517256443861948,
+ "grad_norm": 0.25415024161338806,
+ "learning_rate": 0.0006,
+ "loss": 4.069386959075928,
+ "step": 1117
+ },
+ {
+ "epoch": 15.53123634775011,
+ "grad_norm": 0.25448229908943176,
+ "learning_rate": 0.0006,
+ "loss": 4.075098514556885,
+ "step": 1118
+ },
+ {
+ "epoch": 15.54521625163827,
+ "grad_norm": 0.25679755210876465,
+ "learning_rate": 0.0006,
+ "loss": 4.097431182861328,
+ "step": 1119
+ },
+ {
+ "epoch": 15.55919615552643,
+ "grad_norm": 0.25973212718963623,
+ "learning_rate": 0.0006,
+ "loss": 4.058948516845703,
+ "step": 1120
+ },
+ {
+ "epoch": 15.57317605941459,
+ "grad_norm": 0.24511456489562988,
+ "learning_rate": 0.0006,
+ "loss": 4.092263698577881,
+ "step": 1121
+ },
+ {
+ "epoch": 15.587155963302752,
+ "grad_norm": 0.22949442267417908,
+ "learning_rate": 0.0006,
+ "loss": 4.0526604652404785,
+ "step": 1122
+ },
+ {
+ "epoch": 15.601135867190912,
+ "grad_norm": 0.22486285865306854,
+ "learning_rate": 0.0006,
+ "loss": 4.051939010620117,
+ "step": 1123
+ },
+ {
+ "epoch": 15.615115771079074,
+ "grad_norm": 0.22183601558208466,
+ "learning_rate": 0.0006,
+ "loss": 4.065430641174316,
+ "step": 1124
+ },
+ {
+ "epoch": 15.629095674967235,
+ "grad_norm": 0.2531328797340393,
+ "learning_rate": 0.0006,
+ "loss": 4.069165229797363,
+ "step": 1125
+ },
+ {
+ "epoch": 15.643075578855395,
+ "grad_norm": 0.24403320252895355,
+ "learning_rate": 0.0006,
+ "loss": 4.055041790008545,
+ "step": 1126
+ },
+ {
+ "epoch": 15.657055482743557,
+ "grad_norm": 0.24504756927490234,
+ "learning_rate": 0.0006,
+ "loss": 4.035850524902344,
+ "step": 1127
+ },
+ {
+ "epoch": 15.671035386631717,
+ "grad_norm": 0.23812057077884674,
+ "learning_rate": 0.0006,
+ "loss": 4.049278259277344,
+ "step": 1128
+ },
+ {
+ "epoch": 15.685015290519878,
+ "grad_norm": 0.23694153130054474,
+ "learning_rate": 0.0006,
+ "loss": 4.065816402435303,
+ "step": 1129
+ },
+ {
+ "epoch": 15.698995194408038,
+ "grad_norm": 0.23252786695957184,
+ "learning_rate": 0.0006,
+ "loss": 4.05952262878418,
+ "step": 1130
+ },
+ {
+ "epoch": 15.7129750982962,
+ "grad_norm": 0.2243805080652237,
+ "learning_rate": 0.0006,
+ "loss": 4.058291435241699,
+ "step": 1131
+ },
+ {
+ "epoch": 15.72695500218436,
+ "grad_norm": 0.2200988084077835,
+ "learning_rate": 0.0006,
+ "loss": 4.040788650512695,
+ "step": 1132
+ },
+ {
+ "epoch": 15.740934906072521,
+ "grad_norm": 0.21460631489753723,
+ "learning_rate": 0.0006,
+ "loss": 4.072552680969238,
+ "step": 1133
+ },
+ {
+ "epoch": 15.754914809960681,
+ "grad_norm": 0.2056441456079483,
+ "learning_rate": 0.0006,
+ "loss": 4.059467315673828,
+ "step": 1134
+ },
+ {
+ "epoch": 15.768894713848843,
+ "grad_norm": 0.2068045437335968,
+ "learning_rate": 0.0006,
+ "loss": 4.063803195953369,
+ "step": 1135
+ },
+ {
+ "epoch": 15.782874617737003,
+ "grad_norm": 0.21307601034641266,
+ "learning_rate": 0.0006,
+ "loss": 4.093092918395996,
+ "step": 1136
+ },
+ {
+ "epoch": 15.796854521625164,
+ "grad_norm": 0.20729634165763855,
+ "learning_rate": 0.0006,
+ "loss": 4.066030502319336,
+ "step": 1137
+ },
+ {
+ "epoch": 15.810834425513324,
+ "grad_norm": 0.2097514122724533,
+ "learning_rate": 0.0006,
+ "loss": 4.077326774597168,
+ "step": 1138
+ },
+ {
+ "epoch": 15.824814329401486,
+ "grad_norm": 0.21884000301361084,
+ "learning_rate": 0.0006,
+ "loss": 4.0595598220825195,
+ "step": 1139
+ },
+ {
+ "epoch": 15.838794233289645,
+ "grad_norm": 0.22220250964164734,
+ "learning_rate": 0.0006,
+ "loss": 4.061574459075928,
+ "step": 1140
+ },
+ {
+ "epoch": 15.852774137177807,
+ "grad_norm": 0.23189949989318848,
+ "learning_rate": 0.0006,
+ "loss": 4.0504045486450195,
+ "step": 1141
+ },
+ {
+ "epoch": 15.866754041065967,
+ "grad_norm": 0.226649671792984,
+ "learning_rate": 0.0006,
+ "loss": 4.060986518859863,
+ "step": 1142
+ },
+ {
+ "epoch": 15.880733944954128,
+ "grad_norm": 0.2456834763288498,
+ "learning_rate": 0.0006,
+ "loss": 4.038525581359863,
+ "step": 1143
+ },
+ {
+ "epoch": 15.89471384884229,
+ "grad_norm": 0.2818352282047272,
+ "learning_rate": 0.0006,
+ "loss": 4.062709331512451,
+ "step": 1144
+ },
+ {
+ "epoch": 15.90869375273045,
+ "grad_norm": 0.2850170135498047,
+ "learning_rate": 0.0006,
+ "loss": 4.0683274269104,
+ "step": 1145
+ },
+ {
+ "epoch": 15.922673656618612,
+ "grad_norm": 0.27691730856895447,
+ "learning_rate": 0.0006,
+ "loss": 4.076540470123291,
+ "step": 1146
+ },
+ {
+ "epoch": 15.936653560506771,
+ "grad_norm": 0.2685548961162567,
+ "learning_rate": 0.0006,
+ "loss": 4.048116683959961,
+ "step": 1147
+ },
+ {
+ "epoch": 15.950633464394933,
+ "grad_norm": 0.2452288419008255,
+ "learning_rate": 0.0006,
+ "loss": 4.06640625,
+ "step": 1148
+ },
+ {
+ "epoch": 15.964613368283093,
+ "grad_norm": 0.2601441740989685,
+ "learning_rate": 0.0006,
+ "loss": 4.073277473449707,
+ "step": 1149
+ },
+ {
+ "epoch": 15.978593272171254,
+ "grad_norm": 0.2748197913169861,
+ "learning_rate": 0.0006,
+ "loss": 4.0332536697387695,
+ "step": 1150
+ },
+ {
+ "epoch": 15.992573176059414,
+ "grad_norm": 0.27249959111213684,
+ "learning_rate": 0.0006,
+ "loss": 3.9952516555786133,
+ "step": 1151
+ },
+ {
+ "epoch": 16.0,
+ "grad_norm": 0.3475601375102997,
+ "learning_rate": 0.0006,
+ "loss": 4.040761947631836,
+ "step": 1152
+ },
+ {
+ "epoch": 16.0,
+ "eval_loss": 4.237997531890869,
+ "eval_runtime": 43.8692,
+ "eval_samples_per_second": 55.665,
+ "eval_steps_per_second": 3.488,
+ "step": 1152
+ },
+ {
+ "epoch": 16.01397990388816,
+ "grad_norm": 0.3365611433982849,
+ "learning_rate": 0.0006,
+ "loss": 4.031302452087402,
+ "step": 1153
+ },
+ {
+ "epoch": 16.027959807776323,
+ "grad_norm": 0.3020530641078949,
+ "learning_rate": 0.0006,
+ "loss": 4.036273956298828,
+ "step": 1154
+ },
+ {
+ "epoch": 16.041939711664483,
+ "grad_norm": 0.25277993083000183,
+ "learning_rate": 0.0006,
+ "loss": 4.007067680358887,
+ "step": 1155
+ },
+ {
+ "epoch": 16.055919615552643,
+ "grad_norm": 0.24762840569019318,
+ "learning_rate": 0.0006,
+ "loss": 4.046561241149902,
+ "step": 1156
+ },
+ {
+ "epoch": 16.069899519440803,
+ "grad_norm": 0.25236397981643677,
+ "learning_rate": 0.0006,
+ "loss": 4.061616897583008,
+ "step": 1157
+ },
+ {
+ "epoch": 16.083879423328966,
+ "grad_norm": 0.22789105772972107,
+ "learning_rate": 0.0006,
+ "loss": 4.010061740875244,
+ "step": 1158
+ },
+ {
+ "epoch": 16.097859327217126,
+ "grad_norm": 0.21866244077682495,
+ "learning_rate": 0.0006,
+ "loss": 4.0181097984313965,
+ "step": 1159
+ },
+ {
+ "epoch": 16.111839231105286,
+ "grad_norm": 0.21889029443264008,
+ "learning_rate": 0.0006,
+ "loss": 4.012239456176758,
+ "step": 1160
+ },
+ {
+ "epoch": 16.125819134993446,
+ "grad_norm": 0.23002485930919647,
+ "learning_rate": 0.0006,
+ "loss": 4.034092426300049,
+ "step": 1161
+ },
+ {
+ "epoch": 16.13979903888161,
+ "grad_norm": 0.2271798551082611,
+ "learning_rate": 0.0006,
+ "loss": 4.026222229003906,
+ "step": 1162
+ },
+ {
+ "epoch": 16.15377894276977,
+ "grad_norm": 0.238200843334198,
+ "learning_rate": 0.0006,
+ "loss": 4.044692039489746,
+ "step": 1163
+ },
+ {
+ "epoch": 16.16775884665793,
+ "grad_norm": 0.2281467169523239,
+ "learning_rate": 0.0006,
+ "loss": 4.032305717468262,
+ "step": 1164
+ },
+ {
+ "epoch": 16.18173875054609,
+ "grad_norm": 0.2213946431875229,
+ "learning_rate": 0.0006,
+ "loss": 4.048737525939941,
+ "step": 1165
+ },
+ {
+ "epoch": 16.195718654434252,
+ "grad_norm": 0.26638558506965637,
+ "learning_rate": 0.0006,
+ "loss": 4.006335258483887,
+ "step": 1166
+ },
+ {
+ "epoch": 16.209698558322412,
+ "grad_norm": 0.2780219316482544,
+ "learning_rate": 0.0006,
+ "loss": 4.049234390258789,
+ "step": 1167
+ },
+ {
+ "epoch": 16.22367846221057,
+ "grad_norm": 0.27425870299339294,
+ "learning_rate": 0.0006,
+ "loss": 4.017177104949951,
+ "step": 1168
+ },
+ {
+ "epoch": 16.23765836609873,
+ "grad_norm": 0.2596667408943176,
+ "learning_rate": 0.0006,
+ "loss": 4.022942543029785,
+ "step": 1169
+ },
+ {
+ "epoch": 16.251638269986895,
+ "grad_norm": 0.26972314715385437,
+ "learning_rate": 0.0006,
+ "loss": 4.035310745239258,
+ "step": 1170
+ },
+ {
+ "epoch": 16.265618173875055,
+ "grad_norm": 0.2677772045135498,
+ "learning_rate": 0.0006,
+ "loss": 4.0280561447143555,
+ "step": 1171
+ },
+ {
+ "epoch": 16.279598077763215,
+ "grad_norm": 0.25433358550071716,
+ "learning_rate": 0.0006,
+ "loss": 4.03616189956665,
+ "step": 1172
+ },
+ {
+ "epoch": 16.293577981651374,
+ "grad_norm": 0.2583644688129425,
+ "learning_rate": 0.0006,
+ "loss": 4.073624134063721,
+ "step": 1173
+ },
+ {
+ "epoch": 16.307557885539538,
+ "grad_norm": 0.25437524914741516,
+ "learning_rate": 0.0006,
+ "loss": 4.057926654815674,
+ "step": 1174
+ },
+ {
+ "epoch": 16.321537789427698,
+ "grad_norm": 0.2819201350212097,
+ "learning_rate": 0.0006,
+ "loss": 4.020838737487793,
+ "step": 1175
+ },
+ {
+ "epoch": 16.335517693315857,
+ "grad_norm": 0.32689282298088074,
+ "learning_rate": 0.0006,
+ "loss": 4.062448501586914,
+ "step": 1176
+ },
+ {
+ "epoch": 16.34949759720402,
+ "grad_norm": 0.33002278208732605,
+ "learning_rate": 0.0006,
+ "loss": 4.052059173583984,
+ "step": 1177
+ },
+ {
+ "epoch": 16.36347750109218,
+ "grad_norm": 0.32472696900367737,
+ "learning_rate": 0.0006,
+ "loss": 4.042375564575195,
+ "step": 1178
+ },
+ {
+ "epoch": 16.37745740498034,
+ "grad_norm": 0.35279813408851624,
+ "learning_rate": 0.0006,
+ "loss": 4.028722763061523,
+ "step": 1179
+ },
+ {
+ "epoch": 16.3914373088685,
+ "grad_norm": 0.3243204951286316,
+ "learning_rate": 0.0006,
+ "loss": 4.045693874359131,
+ "step": 1180
+ },
+ {
+ "epoch": 16.405417212756664,
+ "grad_norm": 0.32171115279197693,
+ "learning_rate": 0.0006,
+ "loss": 4.018350124359131,
+ "step": 1181
+ },
+ {
+ "epoch": 16.419397116644824,
+ "grad_norm": 0.31459906697273254,
+ "learning_rate": 0.0006,
+ "loss": 4.039547443389893,
+ "step": 1182
+ },
+ {
+ "epoch": 16.433377020532983,
+ "grad_norm": 0.35038673877716064,
+ "learning_rate": 0.0006,
+ "loss": 4.005928039550781,
+ "step": 1183
+ },
+ {
+ "epoch": 16.447356924421143,
+ "grad_norm": 0.34110963344573975,
+ "learning_rate": 0.0006,
+ "loss": 4.042272090911865,
+ "step": 1184
+ },
+ {
+ "epoch": 16.461336828309307,
+ "grad_norm": 0.33760902285575867,
+ "learning_rate": 0.0006,
+ "loss": 4.02886962890625,
+ "step": 1185
+ },
+ {
+ "epoch": 16.475316732197467,
+ "grad_norm": 0.3162464499473572,
+ "learning_rate": 0.0006,
+ "loss": 4.059924125671387,
+ "step": 1186
+ },
+ {
+ "epoch": 16.489296636085626,
+ "grad_norm": 0.2667233645915985,
+ "learning_rate": 0.0006,
+ "loss": 4.069073677062988,
+ "step": 1187
+ },
+ {
+ "epoch": 16.503276539973786,
+ "grad_norm": 0.22626568377017975,
+ "learning_rate": 0.0006,
+ "loss": 4.044912338256836,
+ "step": 1188
+ },
+ {
+ "epoch": 16.51725644386195,
+ "grad_norm": 0.203303262591362,
+ "learning_rate": 0.0006,
+ "loss": 4.025210380554199,
+ "step": 1189
+ },
+ {
+ "epoch": 16.53123634775011,
+ "grad_norm": 0.2108820080757141,
+ "learning_rate": 0.0006,
+ "loss": 4.035998821258545,
+ "step": 1190
+ },
+ {
+ "epoch": 16.54521625163827,
+ "grad_norm": 0.20451335608959198,
+ "learning_rate": 0.0006,
+ "loss": 4.043377876281738,
+ "step": 1191
+ },
+ {
+ "epoch": 16.55919615552643,
+ "grad_norm": 0.23348836600780487,
+ "learning_rate": 0.0006,
+ "loss": 4.033735275268555,
+ "step": 1192
+ },
+ {
+ "epoch": 16.573176059414592,
+ "grad_norm": 0.24438607692718506,
+ "learning_rate": 0.0006,
+ "loss": 4.071747779846191,
+ "step": 1193
+ },
+ {
+ "epoch": 16.587155963302752,
+ "grad_norm": 0.24233631789684296,
+ "learning_rate": 0.0006,
+ "loss": 4.0138702392578125,
+ "step": 1194
+ },
+ {
+ "epoch": 16.601135867190912,
+ "grad_norm": 0.21625740826129913,
+ "learning_rate": 0.0006,
+ "loss": 4.013422012329102,
+ "step": 1195
+ },
+ {
+ "epoch": 16.615115771079076,
+ "grad_norm": 0.22447720170021057,
+ "learning_rate": 0.0006,
+ "loss": 4.056326866149902,
+ "step": 1196
+ },
+ {
+ "epoch": 16.629095674967235,
+ "grad_norm": 0.21899616718292236,
+ "learning_rate": 0.0006,
+ "loss": 4.006134033203125,
+ "step": 1197
+ },
+ {
+ "epoch": 16.643075578855395,
+ "grad_norm": 0.191362664103508,
+ "learning_rate": 0.0006,
+ "loss": 4.036748886108398,
+ "step": 1198
+ },
+ {
+ "epoch": 16.657055482743555,
+ "grad_norm": 0.20203463733196259,
+ "learning_rate": 0.0006,
+ "loss": 4.006264686584473,
+ "step": 1199
+ },
+ {
+ "epoch": 16.67103538663172,
+ "grad_norm": 0.20209139585494995,
+ "learning_rate": 0.0006,
+ "loss": 4.059018135070801,
+ "step": 1200
+ },
+ {
+ "epoch": 16.68501529051988,
+ "grad_norm": 0.20811820030212402,
+ "learning_rate": 0.0006,
+ "loss": 4.054325103759766,
+ "step": 1201
+ },
+ {
+ "epoch": 16.698995194408038,
+ "grad_norm": 0.22448928654193878,
+ "learning_rate": 0.0006,
+ "loss": 3.996121406555176,
+ "step": 1202
+ },
+ {
+ "epoch": 16.712975098296198,
+ "grad_norm": 0.21692240238189697,
+ "learning_rate": 0.0006,
+ "loss": 4.042046546936035,
+ "step": 1203
+ },
+ {
+ "epoch": 16.72695500218436,
+ "grad_norm": 0.20688563585281372,
+ "learning_rate": 0.0006,
+ "loss": 4.002251625061035,
+ "step": 1204
+ },
+ {
+ "epoch": 16.74093490607252,
+ "grad_norm": 0.1835535764694214,
+ "learning_rate": 0.0006,
+ "loss": 4.02545166015625,
+ "step": 1205
+ },
+ {
+ "epoch": 16.75491480996068,
+ "grad_norm": 0.20532558858394623,
+ "learning_rate": 0.0006,
+ "loss": 4.039333343505859,
+ "step": 1206
+ },
+ {
+ "epoch": 16.76889471384884,
+ "grad_norm": 0.2214215099811554,
+ "learning_rate": 0.0006,
+ "loss": 4.037858486175537,
+ "step": 1207
+ },
+ {
+ "epoch": 16.782874617737004,
+ "grad_norm": 0.24926038086414337,
+ "learning_rate": 0.0006,
+ "loss": 4.024799346923828,
+ "step": 1208
+ },
+ {
+ "epoch": 16.796854521625164,
+ "grad_norm": 0.26057952642440796,
+ "learning_rate": 0.0006,
+ "loss": 4.042788505554199,
+ "step": 1209
+ },
+ {
+ "epoch": 16.810834425513324,
+ "grad_norm": 0.2501208782196045,
+ "learning_rate": 0.0006,
+ "loss": 4.051809310913086,
+ "step": 1210
+ },
+ {
+ "epoch": 16.824814329401484,
+ "grad_norm": 0.21760012209415436,
+ "learning_rate": 0.0006,
+ "loss": 4.063589096069336,
+ "step": 1211
+ },
+ {
+ "epoch": 16.838794233289647,
+ "grad_norm": 0.2243622988462448,
+ "learning_rate": 0.0006,
+ "loss": 4.008829593658447,
+ "step": 1212
+ },
+ {
+ "epoch": 16.852774137177807,
+ "grad_norm": 0.2399163395166397,
+ "learning_rate": 0.0006,
+ "loss": 4.013262748718262,
+ "step": 1213
+ },
+ {
+ "epoch": 16.866754041065967,
+ "grad_norm": 0.23187831044197083,
+ "learning_rate": 0.0006,
+ "loss": 4.023053169250488,
+ "step": 1214
+ },
+ {
+ "epoch": 16.88073394495413,
+ "grad_norm": 0.23723892867565155,
+ "learning_rate": 0.0006,
+ "loss": 3.991321563720703,
+ "step": 1215
+ },
+ {
+ "epoch": 16.89471384884229,
+ "grad_norm": 0.21766342222690582,
+ "learning_rate": 0.0006,
+ "loss": 4.0250773429870605,
+ "step": 1216
+ },
+ {
+ "epoch": 16.90869375273045,
+ "grad_norm": 0.20715023577213287,
+ "learning_rate": 0.0006,
+ "loss": 4.063642978668213,
+ "step": 1217
+ },
+ {
+ "epoch": 16.92267365661861,
+ "grad_norm": 0.20165133476257324,
+ "learning_rate": 0.0006,
+ "loss": 3.9951367378234863,
+ "step": 1218
+ },
+ {
+ "epoch": 16.936653560506773,
+ "grad_norm": 0.19956178963184357,
+ "learning_rate": 0.0006,
+ "loss": 4.025641441345215,
+ "step": 1219
+ },
+ {
+ "epoch": 16.950633464394933,
+ "grad_norm": 0.2175494134426117,
+ "learning_rate": 0.0006,
+ "loss": 4.030346393585205,
+ "step": 1220
+ },
+ {
+ "epoch": 16.964613368283093,
+ "grad_norm": 0.22365593910217285,
+ "learning_rate": 0.0006,
+ "loss": 4.018105506896973,
+ "step": 1221
+ },
+ {
+ "epoch": 16.978593272171253,
+ "grad_norm": 0.21251538395881653,
+ "learning_rate": 0.0006,
+ "loss": 4.023580074310303,
+ "step": 1222
+ },
+ {
+ "epoch": 16.992573176059416,
+ "grad_norm": 0.2230125218629837,
+ "learning_rate": 0.0006,
+ "loss": 4.001980304718018,
+ "step": 1223
+ },
+ {
+ "epoch": 17.0,
+ "grad_norm": 0.24261972308158875,
+ "learning_rate": 0.0006,
+ "loss": 4.081348896026611,
+ "step": 1224
+ },
+ {
+ "epoch": 17.0,
+ "eval_loss": 4.225194931030273,
+ "eval_runtime": 44.247,
+ "eval_samples_per_second": 55.19,
+ "eval_steps_per_second": 3.458,
+ "step": 1224
+ },
+ {
+ "epoch": 17.01397990388816,
+ "grad_norm": 0.2438880205154419,
+ "learning_rate": 0.0006,
+ "loss": 4.0164794921875,
+ "step": 1225
+ },
+ {
+ "epoch": 17.027959807776323,
+ "grad_norm": 0.22459383308887482,
+ "learning_rate": 0.0006,
+ "loss": 3.991623878479004,
+ "step": 1226
+ },
+ {
+ "epoch": 17.041939711664483,
+ "grad_norm": 0.25021040439605713,
+ "learning_rate": 0.0006,
+ "loss": 4.003020286560059,
+ "step": 1227
+ },
+ {
+ "epoch": 17.055919615552643,
+ "grad_norm": 0.30358025431632996,
+ "learning_rate": 0.0006,
+ "loss": 3.980921983718872,
+ "step": 1228
+ },
+ {
+ "epoch": 17.069899519440803,
+ "grad_norm": 0.27313271164894104,
+ "learning_rate": 0.0006,
+ "loss": 3.992398977279663,
+ "step": 1229
+ },
+ {
+ "epoch": 17.083879423328966,
+ "grad_norm": 0.2293211966753006,
+ "learning_rate": 0.0006,
+ "loss": 4.02568244934082,
+ "step": 1230
+ },
+ {
+ "epoch": 17.097859327217126,
+ "grad_norm": 0.2363300621509552,
+ "learning_rate": 0.0006,
+ "loss": 3.977229356765747,
+ "step": 1231
+ },
+ {
+ "epoch": 17.111839231105286,
+ "grad_norm": 0.2809674143791199,
+ "learning_rate": 0.0006,
+ "loss": 3.9720497131347656,
+ "step": 1232
+ },
+ {
+ "epoch": 17.125819134993446,
+ "grad_norm": 0.2913855016231537,
+ "learning_rate": 0.0006,
+ "loss": 3.979529857635498,
+ "step": 1233
+ },
+ {
+ "epoch": 17.13979903888161,
+ "grad_norm": 0.2920287251472473,
+ "learning_rate": 0.0006,
+ "loss": 3.9678473472595215,
+ "step": 1234
+ },
+ {
+ "epoch": 17.15377894276977,
+ "grad_norm": 0.2521543502807617,
+ "learning_rate": 0.0006,
+ "loss": 3.9912607669830322,
+ "step": 1235
+ },
+ {
+ "epoch": 17.16775884665793,
+ "grad_norm": 0.22844268381595612,
+ "learning_rate": 0.0006,
+ "loss": 3.9898228645324707,
+ "step": 1236
+ },
+ {
+ "epoch": 17.18173875054609,
+ "grad_norm": 0.2199884057044983,
+ "learning_rate": 0.0006,
+ "loss": 4.0050740242004395,
+ "step": 1237
+ },
+ {
+ "epoch": 17.195718654434252,
+ "grad_norm": 0.23072892427444458,
+ "learning_rate": 0.0006,
+ "loss": 3.9957475662231445,
+ "step": 1238
+ },
+ {
+ "epoch": 17.209698558322412,
+ "grad_norm": 0.2034899890422821,
+ "learning_rate": 0.0006,
+ "loss": 3.9672317504882812,
+ "step": 1239
+ },
+ {
+ "epoch": 17.22367846221057,
+ "grad_norm": 0.21826180815696716,
+ "learning_rate": 0.0006,
+ "loss": 3.98543119430542,
+ "step": 1240
+ },
+ {
+ "epoch": 17.23765836609873,
+ "grad_norm": 0.21203237771987915,
+ "learning_rate": 0.0006,
+ "loss": 3.9971959590911865,
+ "step": 1241
+ },
+ {
+ "epoch": 17.251638269986895,
+ "grad_norm": 0.22139234840869904,
+ "learning_rate": 0.0006,
+ "loss": 4.017539978027344,
+ "step": 1242
+ },
+ {
+ "epoch": 17.265618173875055,
+ "grad_norm": 0.21553276479244232,
+ "learning_rate": 0.0006,
+ "loss": 3.98740553855896,
+ "step": 1243
+ },
+ {
+ "epoch": 17.279598077763215,
+ "grad_norm": 0.23259080946445465,
+ "learning_rate": 0.0006,
+ "loss": 3.9963035583496094,
+ "step": 1244
+ },
+ {
+ "epoch": 17.293577981651374,
+ "grad_norm": 0.2527932822704315,
+ "learning_rate": 0.0006,
+ "loss": 4.0202956199646,
+ "step": 1245
+ },
+ {
+ "epoch": 17.307557885539538,
+ "grad_norm": 0.28669068217277527,
+ "learning_rate": 0.0006,
+ "loss": 3.9947609901428223,
+ "step": 1246
+ },
+ {
+ "epoch": 17.321537789427698,
+ "grad_norm": 0.341602623462677,
+ "learning_rate": 0.0006,
+ "loss": 3.997032642364502,
+ "step": 1247
+ },
+ {
+ "epoch": 17.335517693315857,
+ "grad_norm": 0.3364104926586151,
+ "learning_rate": 0.0006,
+ "loss": 3.9881834983825684,
+ "step": 1248
+ },
+ {
+ "epoch": 17.34949759720402,
+ "grad_norm": 0.2979278266429901,
+ "learning_rate": 0.0006,
+ "loss": 4.045898914337158,
+ "step": 1249
+ },
+ {
+ "epoch": 17.36347750109218,
+ "grad_norm": 0.2857462465763092,
+ "learning_rate": 0.0006,
+ "loss": 4.0085272789001465,
+ "step": 1250
+ },
+ {
+ "epoch": 17.37745740498034,
+ "grad_norm": 0.2689058780670166,
+ "learning_rate": 0.0006,
+ "loss": 4.021465301513672,
+ "step": 1251
+ },
+ {
+ "epoch": 17.3914373088685,
+ "grad_norm": 0.24943363666534424,
+ "learning_rate": 0.0006,
+ "loss": 4.003451347351074,
+ "step": 1252
+ },
+ {
+ "epoch": 17.405417212756664,
+ "grad_norm": 0.2635347843170166,
+ "learning_rate": 0.0006,
+ "loss": 3.9837827682495117,
+ "step": 1253
+ },
+ {
+ "epoch": 17.419397116644824,
+ "grad_norm": 0.29126450419425964,
+ "learning_rate": 0.0006,
+ "loss": 3.9857311248779297,
+ "step": 1254
+ },
+ {
+ "epoch": 17.433377020532983,
+ "grad_norm": 0.3166918456554413,
+ "learning_rate": 0.0006,
+ "loss": 3.9842967987060547,
+ "step": 1255
+ },
+ {
+ "epoch": 17.447356924421143,
+ "grad_norm": 0.27869969606399536,
+ "learning_rate": 0.0006,
+ "loss": 4.012607574462891,
+ "step": 1256
+ },
+ {
+ "epoch": 17.461336828309307,
+ "grad_norm": 0.23719419538974762,
+ "learning_rate": 0.0006,
+ "loss": 3.981034755706787,
+ "step": 1257
+ },
+ {
+ "epoch": 17.475316732197467,
+ "grad_norm": 0.22687610983848572,
+ "learning_rate": 0.0006,
+ "loss": 4.011059761047363,
+ "step": 1258
+ },
+ {
+ "epoch": 17.489296636085626,
+ "grad_norm": 0.22034095227718353,
+ "learning_rate": 0.0006,
+ "loss": 4.015044689178467,
+ "step": 1259
+ },
+ {
+ "epoch": 17.503276539973786,
+ "grad_norm": 0.21208405494689941,
+ "learning_rate": 0.0006,
+ "loss": 4.003793716430664,
+ "step": 1260
+ },
+ {
+ "epoch": 17.51725644386195,
+ "grad_norm": 0.21759214997291565,
+ "learning_rate": 0.0006,
+ "loss": 3.978652238845825,
+ "step": 1261
+ },
+ {
+ "epoch": 17.53123634775011,
+ "grad_norm": 0.22481068968772888,
+ "learning_rate": 0.0006,
+ "loss": 4.034845352172852,
+ "step": 1262
+ },
+ {
+ "epoch": 17.54521625163827,
+ "grad_norm": 0.20376387238502502,
+ "learning_rate": 0.0006,
+ "loss": 3.990541934967041,
+ "step": 1263
+ },
+ {
+ "epoch": 17.55919615552643,
+ "grad_norm": 0.20459355413913727,
+ "learning_rate": 0.0006,
+ "loss": 4.006990432739258,
+ "step": 1264
+ },
+ {
+ "epoch": 17.573176059414592,
+ "grad_norm": 0.19306913018226624,
+ "learning_rate": 0.0006,
+ "loss": 3.993408679962158,
+ "step": 1265
+ },
+ {
+ "epoch": 17.587155963302752,
+ "grad_norm": 0.20727239549160004,
+ "learning_rate": 0.0006,
+ "loss": 3.988016128540039,
+ "step": 1266
+ },
+ {
+ "epoch": 17.601135867190912,
+ "grad_norm": 0.20213133096694946,
+ "learning_rate": 0.0006,
+ "loss": 4.0120368003845215,
+ "step": 1267
+ },
+ {
+ "epoch": 17.615115771079076,
+ "grad_norm": 0.21074117720127106,
+ "learning_rate": 0.0006,
+ "loss": 4.048871040344238,
+ "step": 1268
+ },
+ {
+ "epoch": 17.629095674967235,
+ "grad_norm": 0.2074330598115921,
+ "learning_rate": 0.0006,
+ "loss": 3.997509002685547,
+ "step": 1269
+ },
+ {
+ "epoch": 17.643075578855395,
+ "grad_norm": 0.20383669435977936,
+ "learning_rate": 0.0006,
+ "loss": 4.0028839111328125,
+ "step": 1270
+ },
+ {
+ "epoch": 17.657055482743555,
+ "grad_norm": 0.2060765027999878,
+ "learning_rate": 0.0006,
+ "loss": 3.998032331466675,
+ "step": 1271
+ },
+ {
+ "epoch": 17.67103538663172,
+ "grad_norm": 0.21851404011249542,
+ "learning_rate": 0.0006,
+ "loss": 3.9928741455078125,
+ "step": 1272
+ },
+ {
+ "epoch": 17.68501529051988,
+ "grad_norm": 0.24324250221252441,
+ "learning_rate": 0.0006,
+ "loss": 3.9896507263183594,
+ "step": 1273
+ },
+ {
+ "epoch": 17.698995194408038,
+ "grad_norm": 0.25584331154823303,
+ "learning_rate": 0.0006,
+ "loss": 4.010485649108887,
+ "step": 1274
+ },
+ {
+ "epoch": 17.712975098296198,
+ "grad_norm": 0.2490610033273697,
+ "learning_rate": 0.0006,
+ "loss": 3.9906954765319824,
+ "step": 1275
+ },
+ {
+ "epoch": 17.72695500218436,
+ "grad_norm": 0.24241414666175842,
+ "learning_rate": 0.0006,
+ "loss": 4.016420364379883,
+ "step": 1276
+ },
+ {
+ "epoch": 17.74093490607252,
+ "grad_norm": 0.2222128063440323,
+ "learning_rate": 0.0006,
+ "loss": 4.009827136993408,
+ "step": 1277
+ },
+ {
+ "epoch": 17.75491480996068,
+ "grad_norm": 0.23119516670703888,
+ "learning_rate": 0.0006,
+ "loss": 4.0034589767456055,
+ "step": 1278
+ },
+ {
+ "epoch": 17.76889471384884,
+ "grad_norm": 0.24596457183361053,
+ "learning_rate": 0.0006,
+ "loss": 4.003161907196045,
+ "step": 1279
+ },
+ {
+ "epoch": 17.782874617737004,
+ "grad_norm": 0.2607562839984894,
+ "learning_rate": 0.0006,
+ "loss": 3.9894633293151855,
+ "step": 1280
+ },
+ {
+ "epoch": 17.796854521625164,
+ "grad_norm": 0.28706878423690796,
+ "learning_rate": 0.0006,
+ "loss": 4.005712985992432,
+ "step": 1281
+ },
+ {
+ "epoch": 17.810834425513324,
+ "grad_norm": 0.27178290486335754,
+ "learning_rate": 0.0006,
+ "loss": 3.9784536361694336,
+ "step": 1282
+ },
+ {
+ "epoch": 17.824814329401484,
+ "grad_norm": 0.27962708473205566,
+ "learning_rate": 0.0006,
+ "loss": 4.012705326080322,
+ "step": 1283
+ },
+ {
+ "epoch": 17.838794233289647,
+ "grad_norm": 0.29147693514823914,
+ "learning_rate": 0.0006,
+ "loss": 4.0159783363342285,
+ "step": 1284
+ },
+ {
+ "epoch": 17.852774137177807,
+ "grad_norm": 0.2841821312904358,
+ "learning_rate": 0.0006,
+ "loss": 4.011552810668945,
+ "step": 1285
+ },
+ {
+ "epoch": 17.866754041065967,
+ "grad_norm": 0.24924969673156738,
+ "learning_rate": 0.0006,
+ "loss": 3.992421865463257,
+ "step": 1286
+ },
+ {
+ "epoch": 17.88073394495413,
+ "grad_norm": 0.24850749969482422,
+ "learning_rate": 0.0006,
+ "loss": 3.974897861480713,
+ "step": 1287
+ },
+ {
+ "epoch": 17.89471384884229,
+ "grad_norm": 0.2409554123878479,
+ "learning_rate": 0.0006,
+ "loss": 4.002941131591797,
+ "step": 1288
+ },
+ {
+ "epoch": 17.90869375273045,
+ "grad_norm": 0.2656126320362091,
+ "learning_rate": 0.0006,
+ "loss": 3.9804210662841797,
+ "step": 1289
+ },
+ {
+ "epoch": 17.92267365661861,
+ "grad_norm": 0.28210243582725525,
+ "learning_rate": 0.0006,
+ "loss": 4.007192134857178,
+ "step": 1290
+ },
+ {
+ "epoch": 17.936653560506773,
+ "grad_norm": 0.28427553176879883,
+ "learning_rate": 0.0006,
+ "loss": 3.9739556312561035,
+ "step": 1291
+ },
+ {
+ "epoch": 17.950633464394933,
+ "grad_norm": 0.28893420100212097,
+ "learning_rate": 0.0006,
+ "loss": 4.004766941070557,
+ "step": 1292
+ },
+ {
+ "epoch": 17.964613368283093,
+ "grad_norm": 0.2831471562385559,
+ "learning_rate": 0.0006,
+ "loss": 3.984936237335205,
+ "step": 1293
+ },
+ {
+ "epoch": 17.978593272171253,
+ "grad_norm": 0.2518300712108612,
+ "learning_rate": 0.0006,
+ "loss": 4.002814292907715,
+ "step": 1294
+ },
+ {
+ "epoch": 17.992573176059416,
+ "grad_norm": 0.24264675378799438,
+ "learning_rate": 0.0006,
+ "loss": 3.998900890350342,
+ "step": 1295
+ },
+ {
+ "epoch": 18.0,
+ "grad_norm": 0.24474996328353882,
+ "learning_rate": 0.0006,
+ "loss": 3.974229335784912,
+ "step": 1296
+ },
+ {
+ "epoch": 18.0,
+ "eval_loss": 4.195685863494873,
+ "eval_runtime": 44.0709,
+ "eval_samples_per_second": 55.411,
+ "eval_steps_per_second": 3.472,
+ "step": 1296
+ },
+ {
+ "epoch": 18.01397990388816,
+ "grad_norm": 0.2553016245365143,
+ "learning_rate": 0.0006,
+ "loss": 3.9522247314453125,
+ "step": 1297
+ },
+ {
+ "epoch": 18.027959807776323,
+ "grad_norm": 0.22350727021694183,
+ "learning_rate": 0.0006,
+ "loss": 3.9850122928619385,
+ "step": 1298
+ },
+ {
+ "epoch": 18.041939711664483,
+ "grad_norm": 0.23935550451278687,
+ "learning_rate": 0.0006,
+ "loss": 3.9758832454681396,
+ "step": 1299
+ },
+ {
+ "epoch": 18.055919615552643,
+ "grad_norm": 0.23868797719478607,
+ "learning_rate": 0.0006,
+ "loss": 3.9567959308624268,
+ "step": 1300
+ },
+ {
+ "epoch": 18.069899519440803,
+ "grad_norm": 0.23102357983589172,
+ "learning_rate": 0.0006,
+ "loss": 3.9399867057800293,
+ "step": 1301
+ },
+ {
+ "epoch": 18.083879423328966,
+ "grad_norm": 0.23706983029842377,
+ "learning_rate": 0.0006,
+ "loss": 3.993434190750122,
+ "step": 1302
+ },
+ {
+ "epoch": 18.097859327217126,
+ "grad_norm": 0.22207573056221008,
+ "learning_rate": 0.0006,
+ "loss": 3.993436574935913,
+ "step": 1303
+ },
+ {
+ "epoch": 18.111839231105286,
+ "grad_norm": 0.23975296318531036,
+ "learning_rate": 0.0006,
+ "loss": 3.981943368911743,
+ "step": 1304
+ },
+ {
+ "epoch": 18.125819134993446,
+ "grad_norm": 0.2520582675933838,
+ "learning_rate": 0.0006,
+ "loss": 3.965493679046631,
+ "step": 1305
+ },
+ {
+ "epoch": 18.13979903888161,
+ "grad_norm": 0.2230956256389618,
+ "learning_rate": 0.0006,
+ "loss": 3.9360928535461426,
+ "step": 1306
+ },
+ {
+ "epoch": 18.15377894276977,
+ "grad_norm": 0.22527500987052917,
+ "learning_rate": 0.0006,
+ "loss": 3.9814581871032715,
+ "step": 1307
+ },
+ {
+ "epoch": 18.16775884665793,
+ "grad_norm": 0.22389626502990723,
+ "learning_rate": 0.0006,
+ "loss": 3.961590051651001,
+ "step": 1308
+ },
+ {
+ "epoch": 18.18173875054609,
+ "grad_norm": 0.22279471158981323,
+ "learning_rate": 0.0006,
+ "loss": 3.952338695526123,
+ "step": 1309
+ },
+ {
+ "epoch": 18.195718654434252,
+ "grad_norm": 0.24635115265846252,
+ "learning_rate": 0.0006,
+ "loss": 3.9693849086761475,
+ "step": 1310
+ },
+ {
+ "epoch": 18.209698558322412,
+ "grad_norm": 0.2757279872894287,
+ "learning_rate": 0.0006,
+ "loss": 3.9956700801849365,
+ "step": 1311
+ },
+ {
+ "epoch": 18.22367846221057,
+ "grad_norm": 0.2619115710258484,
+ "learning_rate": 0.0006,
+ "loss": 3.948878765106201,
+ "step": 1312
+ },
+ {
+ "epoch": 18.23765836609873,
+ "grad_norm": 0.22853828966617584,
+ "learning_rate": 0.0006,
+ "loss": 3.9545674324035645,
+ "step": 1313
+ },
+ {
+ "epoch": 18.251638269986895,
+ "grad_norm": 0.22904761135578156,
+ "learning_rate": 0.0006,
+ "loss": 3.947535991668701,
+ "step": 1314
+ },
+ {
+ "epoch": 18.265618173875055,
+ "grad_norm": 0.23592644929885864,
+ "learning_rate": 0.0006,
+ "loss": 3.971926212310791,
+ "step": 1315
+ },
+ {
+ "epoch": 18.279598077763215,
+ "grad_norm": 0.22120243310928345,
+ "learning_rate": 0.0006,
+ "loss": 3.9471049308776855,
+ "step": 1316
+ },
+ {
+ "epoch": 18.293577981651374,
+ "grad_norm": 0.20308749377727509,
+ "learning_rate": 0.0006,
+ "loss": 3.967449188232422,
+ "step": 1317
+ },
+ {
+ "epoch": 18.307557885539538,
+ "grad_norm": 0.20013529062271118,
+ "learning_rate": 0.0006,
+ "loss": 3.966151237487793,
+ "step": 1318
+ },
+ {
+ "epoch": 18.321537789427698,
+ "grad_norm": 0.20635221898555756,
+ "learning_rate": 0.0006,
+ "loss": 3.9908885955810547,
+ "step": 1319
+ },
+ {
+ "epoch": 18.335517693315857,
+ "grad_norm": 0.2232237160205841,
+ "learning_rate": 0.0006,
+ "loss": 3.9488768577575684,
+ "step": 1320
+ },
+ {
+ "epoch": 18.34949759720402,
+ "grad_norm": 0.21916444599628448,
+ "learning_rate": 0.0006,
+ "loss": 3.973428726196289,
+ "step": 1321
+ },
+ {
+ "epoch": 18.36347750109218,
+ "grad_norm": 0.20427337288856506,
+ "learning_rate": 0.0006,
+ "loss": 3.969332695007324,
+ "step": 1322
+ },
+ {
+ "epoch": 18.37745740498034,
+ "grad_norm": 0.20138131082057953,
+ "learning_rate": 0.0006,
+ "loss": 3.9651856422424316,
+ "step": 1323
+ },
+ {
+ "epoch": 18.3914373088685,
+ "grad_norm": 0.18918880820274353,
+ "learning_rate": 0.0006,
+ "loss": 3.9772281646728516,
+ "step": 1324
+ },
+ {
+ "epoch": 18.405417212756664,
+ "grad_norm": 0.1860039383172989,
+ "learning_rate": 0.0006,
+ "loss": 3.9289052486419678,
+ "step": 1325
+ },
+ {
+ "epoch": 18.419397116644824,
+ "grad_norm": 0.19541646540164948,
+ "learning_rate": 0.0006,
+ "loss": 3.9527673721313477,
+ "step": 1326
+ },
+ {
+ "epoch": 18.433377020532983,
+ "grad_norm": 0.206914022564888,
+ "learning_rate": 0.0006,
+ "loss": 3.99316143989563,
+ "step": 1327
+ },
+ {
+ "epoch": 18.447356924421143,
+ "grad_norm": 0.209097757935524,
+ "learning_rate": 0.0006,
+ "loss": 3.978130340576172,
+ "step": 1328
+ },
+ {
+ "epoch": 18.461336828309307,
+ "grad_norm": 0.22163373231887817,
+ "learning_rate": 0.0006,
+ "loss": 3.951460361480713,
+ "step": 1329
+ },
+ {
+ "epoch": 18.475316732197467,
+ "grad_norm": 0.21446120738983154,
+ "learning_rate": 0.0006,
+ "loss": 3.963571071624756,
+ "step": 1330
+ },
+ {
+ "epoch": 18.489296636085626,
+ "grad_norm": 0.2341388761997223,
+ "learning_rate": 0.0006,
+ "loss": 4.010684013366699,
+ "step": 1331
+ },
+ {
+ "epoch": 18.503276539973786,
+ "grad_norm": 0.2433937042951584,
+ "learning_rate": 0.0006,
+ "loss": 3.987537384033203,
+ "step": 1332
+ },
+ {
+ "epoch": 18.51725644386195,
+ "grad_norm": 0.24916228652000427,
+ "learning_rate": 0.0006,
+ "loss": 3.953075647354126,
+ "step": 1333
+ },
+ {
+ "epoch": 18.53123634775011,
+ "grad_norm": 0.24542421102523804,
+ "learning_rate": 0.0006,
+ "loss": 3.9510841369628906,
+ "step": 1334
+ },
+ {
+ "epoch": 18.54521625163827,
+ "grad_norm": 0.2393690049648285,
+ "learning_rate": 0.0006,
+ "loss": 3.981747627258301,
+ "step": 1335
+ },
+ {
+ "epoch": 18.55919615552643,
+ "grad_norm": 0.22806711494922638,
+ "learning_rate": 0.0006,
+ "loss": 3.9714856147766113,
+ "step": 1336
+ },
+ {
+ "epoch": 18.573176059414592,
+ "grad_norm": 0.21948303282260895,
+ "learning_rate": 0.0006,
+ "loss": 3.9429898262023926,
+ "step": 1337
+ },
+ {
+ "epoch": 18.587155963302752,
+ "grad_norm": 0.21575778722763062,
+ "learning_rate": 0.0006,
+ "loss": 3.9639933109283447,
+ "step": 1338
+ },
+ {
+ "epoch": 18.601135867190912,
+ "grad_norm": 0.23370565474033356,
+ "learning_rate": 0.0006,
+ "loss": 3.9819254875183105,
+ "step": 1339
+ },
+ {
+ "epoch": 18.615115771079076,
+ "grad_norm": 0.2613106369972229,
+ "learning_rate": 0.0006,
+ "loss": 3.9654669761657715,
+ "step": 1340
+ },
+ {
+ "epoch": 18.629095674967235,
+ "grad_norm": 0.26682716608047485,
+ "learning_rate": 0.0006,
+ "loss": 3.9832968711853027,
+ "step": 1341
+ },
+ {
+ "epoch": 18.643075578855395,
+ "grad_norm": 0.24331490695476532,
+ "learning_rate": 0.0006,
+ "loss": 3.9926600456237793,
+ "step": 1342
+ },
+ {
+ "epoch": 18.657055482743555,
+ "grad_norm": 0.2459341287612915,
+ "learning_rate": 0.0006,
+ "loss": 3.9508986473083496,
+ "step": 1343
+ },
+ {
+ "epoch": 18.67103538663172,
+ "grad_norm": 0.26395753026008606,
+ "learning_rate": 0.0006,
+ "loss": 3.961359977722168,
+ "step": 1344
+ },
+ {
+ "epoch": 18.68501529051988,
+ "grad_norm": 0.26049068570137024,
+ "learning_rate": 0.0006,
+ "loss": 3.9763245582580566,
+ "step": 1345
+ },
+ {
+ "epoch": 18.698995194408038,
+ "grad_norm": 0.24018602073192596,
+ "learning_rate": 0.0006,
+ "loss": 3.951780319213867,
+ "step": 1346
+ },
+ {
+ "epoch": 18.712975098296198,
+ "grad_norm": 0.23886290192604065,
+ "learning_rate": 0.0006,
+ "loss": 3.9883017539978027,
+ "step": 1347
+ },
+ {
+ "epoch": 18.72695500218436,
+ "grad_norm": 0.2293774038553238,
+ "learning_rate": 0.0006,
+ "loss": 3.9852685928344727,
+ "step": 1348
+ },
+ {
+ "epoch": 18.74093490607252,
+ "grad_norm": 0.22172975540161133,
+ "learning_rate": 0.0006,
+ "loss": 3.967550277709961,
+ "step": 1349
+ },
+ {
+ "epoch": 18.75491480996068,
+ "grad_norm": 0.2170475423336029,
+ "learning_rate": 0.0006,
+ "loss": 3.9570775032043457,
+ "step": 1350
+ },
+ {
+ "epoch": 18.76889471384884,
+ "grad_norm": 0.21458806097507477,
+ "learning_rate": 0.0006,
+ "loss": 3.9461212158203125,
+ "step": 1351
+ },
+ {
+ "epoch": 18.782874617737004,
+ "grad_norm": 0.21101507544517517,
+ "learning_rate": 0.0006,
+ "loss": 3.984398365020752,
+ "step": 1352
+ },
+ {
+ "epoch": 18.796854521625164,
+ "grad_norm": 0.23480583727359772,
+ "learning_rate": 0.0006,
+ "loss": 3.950312614440918,
+ "step": 1353
+ },
+ {
+ "epoch": 18.810834425513324,
+ "grad_norm": 0.24728581309318542,
+ "learning_rate": 0.0006,
+ "loss": 3.9572393894195557,
+ "step": 1354
+ },
+ {
+ "epoch": 18.824814329401484,
+ "grad_norm": 0.26063451170921326,
+ "learning_rate": 0.0006,
+ "loss": 3.9653234481811523,
+ "step": 1355
+ },
+ {
+ "epoch": 18.838794233289647,
+ "grad_norm": 0.24679961800575256,
+ "learning_rate": 0.0006,
+ "loss": 3.9560108184814453,
+ "step": 1356
+ },
+ {
+ "epoch": 18.852774137177807,
+ "grad_norm": 0.23199526965618134,
+ "learning_rate": 0.0006,
+ "loss": 3.9948246479034424,
+ "step": 1357
+ },
+ {
+ "epoch": 18.866754041065967,
+ "grad_norm": 0.22619125247001648,
+ "learning_rate": 0.0006,
+ "loss": 3.9783573150634766,
+ "step": 1358
+ },
+ {
+ "epoch": 18.88073394495413,
+ "grad_norm": 0.25499874353408813,
+ "learning_rate": 0.0006,
+ "loss": 3.9674575328826904,
+ "step": 1359
+ },
+ {
+ "epoch": 18.89471384884229,
+ "grad_norm": 0.23961037397384644,
+ "learning_rate": 0.0006,
+ "loss": 3.969209909439087,
+ "step": 1360
+ },
+ {
+ "epoch": 18.90869375273045,
+ "grad_norm": 0.21039162576198578,
+ "learning_rate": 0.0006,
+ "loss": 3.978661060333252,
+ "step": 1361
+ },
+ {
+ "epoch": 18.92267365661861,
+ "grad_norm": 0.2297026664018631,
+ "learning_rate": 0.0006,
+ "loss": 3.9483046531677246,
+ "step": 1362
+ },
+ {
+ "epoch": 18.936653560506773,
+ "grad_norm": 0.26367098093032837,
+ "learning_rate": 0.0006,
+ "loss": 3.927133560180664,
+ "step": 1363
+ },
+ {
+ "epoch": 18.950633464394933,
+ "grad_norm": 0.26893147826194763,
+ "learning_rate": 0.0006,
+ "loss": 3.957932710647583,
+ "step": 1364
+ },
+ {
+ "epoch": 18.964613368283093,
+ "grad_norm": 0.27092233300209045,
+ "learning_rate": 0.0006,
+ "loss": 3.976621150970459,
+ "step": 1365
+ },
+ {
+ "epoch": 18.978593272171253,
+ "grad_norm": 0.2672635018825531,
+ "learning_rate": 0.0006,
+ "loss": 3.9577765464782715,
+ "step": 1366
+ },
+ {
+ "epoch": 18.992573176059416,
+ "grad_norm": 0.2721385359764099,
+ "learning_rate": 0.0006,
+ "loss": 3.986100196838379,
+ "step": 1367
+ },
+ {
+ "epoch": 19.0,
+ "grad_norm": 0.27648621797561646,
+ "learning_rate": 0.0006,
+ "loss": 3.9942402839660645,
+ "step": 1368
+ },
+ {
+ "epoch": 19.0,
+ "eval_loss": 4.180216312408447,
+ "eval_runtime": 44.0079,
+ "eval_samples_per_second": 55.49,
+ "eval_steps_per_second": 3.477,
+ "step": 1368
+ },
+ {
+ "epoch": 19.01397990388816,
+ "grad_norm": 0.2563098073005676,
+ "learning_rate": 0.0006,
+ "loss": 3.9267354011535645,
+ "step": 1369
+ },
+ {
+ "epoch": 19.027959807776323,
+ "grad_norm": 0.2531425952911377,
+ "learning_rate": 0.0006,
+ "loss": 3.9273324012756348,
+ "step": 1370
+ },
+ {
+ "epoch": 19.041939711664483,
+ "grad_norm": 0.27485427260398865,
+ "learning_rate": 0.0006,
+ "loss": 3.9542183876037598,
+ "step": 1371
+ },
+ {
+ "epoch": 19.055919615552643,
+ "grad_norm": 0.27509891986846924,
+ "learning_rate": 0.0006,
+ "loss": 3.921940326690674,
+ "step": 1372
+ },
+ {
+ "epoch": 19.069899519440803,
+ "grad_norm": 0.28154096007347107,
+ "learning_rate": 0.0006,
+ "loss": 3.926743984222412,
+ "step": 1373
+ },
+ {
+ "epoch": 19.083879423328966,
+ "grad_norm": 0.2749912738800049,
+ "learning_rate": 0.0006,
+ "loss": 3.9257748126983643,
+ "step": 1374
+ },
+ {
+ "epoch": 19.097859327217126,
+ "grad_norm": 0.26168501377105713,
+ "learning_rate": 0.0006,
+ "loss": 3.9403202533721924,
+ "step": 1375
+ },
+ {
+ "epoch": 19.111839231105286,
+ "grad_norm": 0.23410023748874664,
+ "learning_rate": 0.0006,
+ "loss": 3.935378313064575,
+ "step": 1376
+ },
+ {
+ "epoch": 19.125819134993446,
+ "grad_norm": 0.25790470838546753,
+ "learning_rate": 0.0006,
+ "loss": 3.946147918701172,
+ "step": 1377
+ },
+ {
+ "epoch": 19.13979903888161,
+ "grad_norm": 0.26704177260398865,
+ "learning_rate": 0.0006,
+ "loss": 3.9511594772338867,
+ "step": 1378
+ },
+ {
+ "epoch": 19.15377894276977,
+ "grad_norm": 0.2560667097568512,
+ "learning_rate": 0.0006,
+ "loss": 3.915806531906128,
+ "step": 1379
+ },
+ {
+ "epoch": 19.16775884665793,
+ "grad_norm": 0.24684149026870728,
+ "learning_rate": 0.0006,
+ "loss": 3.9162003993988037,
+ "step": 1380
+ },
+ {
+ "epoch": 19.18173875054609,
+ "grad_norm": 0.2097567766904831,
+ "learning_rate": 0.0006,
+ "loss": 3.915739059448242,
+ "step": 1381
+ },
+ {
+ "epoch": 19.195718654434252,
+ "grad_norm": 0.21646849811077118,
+ "learning_rate": 0.0006,
+ "loss": 3.9097084999084473,
+ "step": 1382
+ },
+ {
+ "epoch": 19.209698558322412,
+ "grad_norm": 0.20626980066299438,
+ "learning_rate": 0.0006,
+ "loss": 3.9541783332824707,
+ "step": 1383
+ },
+ {
+ "epoch": 19.22367846221057,
+ "grad_norm": 0.23362718522548676,
+ "learning_rate": 0.0006,
+ "loss": 3.950096845626831,
+ "step": 1384
+ },
+ {
+ "epoch": 19.23765836609873,
+ "grad_norm": 0.25402209162712097,
+ "learning_rate": 0.0006,
+ "loss": 3.927671432495117,
+ "step": 1385
+ },
+ {
+ "epoch": 19.251638269986895,
+ "grad_norm": 0.23714083433151245,
+ "learning_rate": 0.0006,
+ "loss": 3.939765453338623,
+ "step": 1386
+ },
+ {
+ "epoch": 19.265618173875055,
+ "grad_norm": 0.20895546674728394,
+ "learning_rate": 0.0006,
+ "loss": 3.9384806156158447,
+ "step": 1387
+ },
+ {
+ "epoch": 19.279598077763215,
+ "grad_norm": 0.21374300122261047,
+ "learning_rate": 0.0006,
+ "loss": 3.9523749351501465,
+ "step": 1388
+ },
+ {
+ "epoch": 19.293577981651374,
+ "grad_norm": 0.210394486784935,
+ "learning_rate": 0.0006,
+ "loss": 3.9540798664093018,
+ "step": 1389
+ },
+ {
+ "epoch": 19.307557885539538,
+ "grad_norm": 0.20646725594997406,
+ "learning_rate": 0.0006,
+ "loss": 3.9514098167419434,
+ "step": 1390
+ },
+ {
+ "epoch": 19.321537789427698,
+ "grad_norm": 0.21477538347244263,
+ "learning_rate": 0.0006,
+ "loss": 3.9369924068450928,
+ "step": 1391
+ },
+ {
+ "epoch": 19.335517693315857,
+ "grad_norm": 0.20431505143642426,
+ "learning_rate": 0.0006,
+ "loss": 3.9389796257019043,
+ "step": 1392
+ },
+ {
+ "epoch": 19.34949759720402,
+ "grad_norm": 0.19575877487659454,
+ "learning_rate": 0.0006,
+ "loss": 3.935976028442383,
+ "step": 1393
+ },
+ {
+ "epoch": 19.36347750109218,
+ "grad_norm": 0.20720405876636505,
+ "learning_rate": 0.0006,
+ "loss": 3.9670963287353516,
+ "step": 1394
+ },
+ {
+ "epoch": 19.37745740498034,
+ "grad_norm": 0.2173967957496643,
+ "learning_rate": 0.0006,
+ "loss": 3.903940439224243,
+ "step": 1395
+ },
+ {
+ "epoch": 19.3914373088685,
+ "grad_norm": 0.2180529683828354,
+ "learning_rate": 0.0006,
+ "loss": 3.8716301918029785,
+ "step": 1396
+ },
+ {
+ "epoch": 19.405417212756664,
+ "grad_norm": 0.20666591823101044,
+ "learning_rate": 0.0006,
+ "loss": 3.930936813354492,
+ "step": 1397
+ },
+ {
+ "epoch": 19.419397116644824,
+ "grad_norm": 0.20353034138679504,
+ "learning_rate": 0.0006,
+ "loss": 3.926954746246338,
+ "step": 1398
+ },
+ {
+ "epoch": 19.433377020532983,
+ "grad_norm": 0.22333289682865143,
+ "learning_rate": 0.0006,
+ "loss": 3.947504997253418,
+ "step": 1399
+ },
+ {
+ "epoch": 19.447356924421143,
+ "grad_norm": 0.21787697076797485,
+ "learning_rate": 0.0006,
+ "loss": 3.9325344562530518,
+ "step": 1400
+ },
+ {
+ "epoch": 19.461336828309307,
+ "grad_norm": 0.22805874049663544,
+ "learning_rate": 0.0006,
+ "loss": 3.9640727043151855,
+ "step": 1401
+ },
+ {
+ "epoch": 19.475316732197467,
+ "grad_norm": 0.22396457195281982,
+ "learning_rate": 0.0006,
+ "loss": 3.9537901878356934,
+ "step": 1402
+ },
+ {
+ "epoch": 19.489296636085626,
+ "grad_norm": 0.2333047240972519,
+ "learning_rate": 0.0006,
+ "loss": 3.935609817504883,
+ "step": 1403
+ },
+ {
+ "epoch": 19.503276539973786,
+ "grad_norm": 0.25063616037368774,
+ "learning_rate": 0.0006,
+ "loss": 3.9659228324890137,
+ "step": 1404
+ },
+ {
+ "epoch": 19.51725644386195,
+ "grad_norm": 0.29074087738990784,
+ "learning_rate": 0.0006,
+ "loss": 3.9552183151245117,
+ "step": 1405
+ },
+ {
+ "epoch": 19.53123634775011,
+ "grad_norm": 0.34876152873039246,
+ "learning_rate": 0.0006,
+ "loss": 3.976163387298584,
+ "step": 1406
+ },
+ {
+ "epoch": 19.54521625163827,
+ "grad_norm": 0.35026612877845764,
+ "learning_rate": 0.0006,
+ "loss": 3.961186408996582,
+ "step": 1407
+ },
+ {
+ "epoch": 19.55919615552643,
+ "grad_norm": 0.3199564218521118,
+ "learning_rate": 0.0006,
+ "loss": 3.9366297721862793,
+ "step": 1408
+ },
+ {
+ "epoch": 19.573176059414592,
+ "grad_norm": 0.2976185977458954,
+ "learning_rate": 0.0006,
+ "loss": 3.9502010345458984,
+ "step": 1409
+ },
+ {
+ "epoch": 19.587155963302752,
+ "grad_norm": 0.2951911687850952,
+ "learning_rate": 0.0006,
+ "loss": 3.9427943229675293,
+ "step": 1410
+ },
+ {
+ "epoch": 19.601135867190912,
+ "grad_norm": 0.27918702363967896,
+ "learning_rate": 0.0006,
+ "loss": 3.963700532913208,
+ "step": 1411
+ },
+ {
+ "epoch": 19.615115771079076,
+ "grad_norm": 0.26197490096092224,
+ "learning_rate": 0.0006,
+ "loss": 3.9636964797973633,
+ "step": 1412
+ },
+ {
+ "epoch": 19.629095674967235,
+ "grad_norm": 0.24242281913757324,
+ "learning_rate": 0.0006,
+ "loss": 3.961815595626831,
+ "step": 1413
+ },
+ {
+ "epoch": 19.643075578855395,
+ "grad_norm": 0.2606375515460968,
+ "learning_rate": 0.0006,
+ "loss": 3.946643352508545,
+ "step": 1414
+ },
+ {
+ "epoch": 19.657055482743555,
+ "grad_norm": 0.23353353142738342,
+ "learning_rate": 0.0006,
+ "loss": 3.973155975341797,
+ "step": 1415
+ },
+ {
+ "epoch": 19.67103538663172,
+ "grad_norm": 0.22872662544250488,
+ "learning_rate": 0.0006,
+ "loss": 3.9528894424438477,
+ "step": 1416
+ },
+ {
+ "epoch": 19.68501529051988,
+ "grad_norm": 0.24678432941436768,
+ "learning_rate": 0.0006,
+ "loss": 3.9313249588012695,
+ "step": 1417
+ },
+ {
+ "epoch": 19.698995194408038,
+ "grad_norm": 0.23895515501499176,
+ "learning_rate": 0.0006,
+ "loss": 3.944082498550415,
+ "step": 1418
+ },
+ {
+ "epoch": 19.712975098296198,
+ "grad_norm": 0.23649105429649353,
+ "learning_rate": 0.0006,
+ "loss": 3.962069034576416,
+ "step": 1419
+ },
+ {
+ "epoch": 19.72695500218436,
+ "grad_norm": 0.22031061351299286,
+ "learning_rate": 0.0006,
+ "loss": 3.912972927093506,
+ "step": 1420
+ },
+ {
+ "epoch": 19.74093490607252,
+ "grad_norm": 0.20231695473194122,
+ "learning_rate": 0.0006,
+ "loss": 3.964531421661377,
+ "step": 1421
+ },
+ {
+ "epoch": 19.75491480996068,
+ "grad_norm": 0.19980913400650024,
+ "learning_rate": 0.0006,
+ "loss": 3.9452600479125977,
+ "step": 1422
+ },
+ {
+ "epoch": 19.76889471384884,
+ "grad_norm": 0.21768775582313538,
+ "learning_rate": 0.0006,
+ "loss": 3.9214301109313965,
+ "step": 1423
+ },
+ {
+ "epoch": 19.782874617737004,
+ "grad_norm": 0.21287119388580322,
+ "learning_rate": 0.0006,
+ "loss": 3.9416494369506836,
+ "step": 1424
+ },
+ {
+ "epoch": 19.796854521625164,
+ "grad_norm": 0.21399827301502228,
+ "learning_rate": 0.0006,
+ "loss": 3.971010208129883,
+ "step": 1425
+ },
+ {
+ "epoch": 19.810834425513324,
+ "grad_norm": 0.1957658976316452,
+ "learning_rate": 0.0006,
+ "loss": 3.936331272125244,
+ "step": 1426
+ },
+ {
+ "epoch": 19.824814329401484,
+ "grad_norm": 0.19341488182544708,
+ "learning_rate": 0.0006,
+ "loss": 3.9321448802948,
+ "step": 1427
+ },
+ {
+ "epoch": 19.838794233289647,
+ "grad_norm": 0.18405723571777344,
+ "learning_rate": 0.0006,
+ "loss": 3.939542293548584,
+ "step": 1428
+ },
+ {
+ "epoch": 19.852774137177807,
+ "grad_norm": 0.19672836363315582,
+ "learning_rate": 0.0006,
+ "loss": 3.939652919769287,
+ "step": 1429
+ },
+ {
+ "epoch": 19.866754041065967,
+ "grad_norm": 0.1998940259218216,
+ "learning_rate": 0.0006,
+ "loss": 3.932892322540283,
+ "step": 1430
+ },
+ {
+ "epoch": 19.88073394495413,
+ "grad_norm": 0.2307668924331665,
+ "learning_rate": 0.0006,
+ "loss": 3.9402761459350586,
+ "step": 1431
+ },
+ {
+ "epoch": 19.89471384884229,
+ "grad_norm": 0.2531987726688385,
+ "learning_rate": 0.0006,
+ "loss": 3.9153199195861816,
+ "step": 1432
+ },
+ {
+ "epoch": 19.90869375273045,
+ "grad_norm": 0.2299388349056244,
+ "learning_rate": 0.0006,
+ "loss": 3.9569954872131348,
+ "step": 1433
+ },
+ {
+ "epoch": 19.92267365661861,
+ "grad_norm": 0.2503527104854584,
+ "learning_rate": 0.0006,
+ "loss": 3.9469428062438965,
+ "step": 1434
+ },
+ {
+ "epoch": 19.936653560506773,
+ "grad_norm": 0.25390249490737915,
+ "learning_rate": 0.0006,
+ "loss": 3.941803455352783,
+ "step": 1435
+ },
+ {
+ "epoch": 19.950633464394933,
+ "grad_norm": 0.2288687825202942,
+ "learning_rate": 0.0006,
+ "loss": 3.9385883808135986,
+ "step": 1436
+ },
+ {
+ "epoch": 19.964613368283093,
+ "grad_norm": 0.2231096774339676,
+ "learning_rate": 0.0006,
+ "loss": 3.9255237579345703,
+ "step": 1437
+ },
+ {
+ "epoch": 19.978593272171253,
+ "grad_norm": 0.20729343593120575,
+ "learning_rate": 0.0006,
+ "loss": 3.9443163871765137,
+ "step": 1438
+ },
+ {
+ "epoch": 19.992573176059416,
+ "grad_norm": 0.197743758559227,
+ "learning_rate": 0.0006,
+ "loss": 3.925455093383789,
+ "step": 1439
+ },
+ {
+ "epoch": 20.0,
+ "grad_norm": 0.23943661153316498,
+ "learning_rate": 0.0006,
+ "loss": 3.9458866119384766,
+ "step": 1440
+ },
+ {
+ "epoch": 20.0,
+ "eval_loss": 4.144192218780518,
+ "eval_runtime": 44.0278,
+ "eval_samples_per_second": 55.465,
+ "eval_steps_per_second": 3.475,
+ "step": 1440
+ },
+ {
+ "epoch": 20.01397990388816,
+ "grad_norm": 0.2032143622636795,
+ "learning_rate": 0.0006,
+ "loss": 3.9151499271392822,
+ "step": 1441
+ },
+ {
+ "epoch": 20.027959807776323,
+ "grad_norm": 0.20164789259433746,
+ "learning_rate": 0.0006,
+ "loss": 3.874115228652954,
+ "step": 1442
+ },
+ {
+ "epoch": 20.041939711664483,
+ "grad_norm": 0.20796619355678558,
+ "learning_rate": 0.0006,
+ "loss": 3.9090776443481445,
+ "step": 1443
+ },
+ {
+ "epoch": 20.055919615552643,
+ "grad_norm": 0.1999918520450592,
+ "learning_rate": 0.0006,
+ "loss": 3.926563262939453,
+ "step": 1444
+ },
+ {
+ "epoch": 20.069899519440803,
+ "grad_norm": 0.204790860414505,
+ "learning_rate": 0.0006,
+ "loss": 3.9088830947875977,
+ "step": 1445
+ },
+ {
+ "epoch": 20.083879423328966,
+ "grad_norm": 0.21507175266742706,
+ "learning_rate": 0.0006,
+ "loss": 3.916504383087158,
+ "step": 1446
+ },
+ {
+ "epoch": 20.097859327217126,
+ "grad_norm": 0.2398025095462799,
+ "learning_rate": 0.0006,
+ "loss": 3.9128990173339844,
+ "step": 1447
+ },
+ {
+ "epoch": 20.111839231105286,
+ "grad_norm": 0.26037144660949707,
+ "learning_rate": 0.0006,
+ "loss": 3.9125187397003174,
+ "step": 1448
+ },
+ {
+ "epoch": 20.125819134993446,
+ "grad_norm": 0.25564828515052795,
+ "learning_rate": 0.0006,
+ "loss": 3.891867160797119,
+ "step": 1449
+ },
+ {
+ "epoch": 20.13979903888161,
+ "grad_norm": 0.2767223119735718,
+ "learning_rate": 0.0006,
+ "loss": 3.9202775955200195,
+ "step": 1450
+ },
+ {
+ "epoch": 20.15377894276977,
+ "grad_norm": 0.27696558833122253,
+ "learning_rate": 0.0006,
+ "loss": 3.9231314659118652,
+ "step": 1451
+ },
+ {
+ "epoch": 20.16775884665793,
+ "grad_norm": 0.3054044246673584,
+ "learning_rate": 0.0006,
+ "loss": 3.918138027191162,
+ "step": 1452
+ },
+ {
+ "epoch": 20.18173875054609,
+ "grad_norm": 0.3018973171710968,
+ "learning_rate": 0.0006,
+ "loss": 3.890678882598877,
+ "step": 1453
+ },
+ {
+ "epoch": 20.195718654434252,
+ "grad_norm": 0.306232750415802,
+ "learning_rate": 0.0006,
+ "loss": 3.920753002166748,
+ "step": 1454
+ },
+ {
+ "epoch": 20.209698558322412,
+ "grad_norm": 0.29593729972839355,
+ "learning_rate": 0.0006,
+ "loss": 3.9455509185791016,
+ "step": 1455
+ },
+ {
+ "epoch": 20.22367846221057,
+ "grad_norm": 0.2937646210193634,
+ "learning_rate": 0.0006,
+ "loss": 3.9227709770202637,
+ "step": 1456
+ },
+ {
+ "epoch": 20.23765836609873,
+ "grad_norm": 0.26380231976509094,
+ "learning_rate": 0.0006,
+ "loss": 3.9097609519958496,
+ "step": 1457
+ },
+ {
+ "epoch": 20.251638269986895,
+ "grad_norm": 0.24992692470550537,
+ "learning_rate": 0.0006,
+ "loss": 3.9393627643585205,
+ "step": 1458
+ },
+ {
+ "epoch": 20.265618173875055,
+ "grad_norm": 0.270219087600708,
+ "learning_rate": 0.0006,
+ "loss": 3.929330348968506,
+ "step": 1459
+ },
+ {
+ "epoch": 20.279598077763215,
+ "grad_norm": 0.2860020399093628,
+ "learning_rate": 0.0006,
+ "loss": 3.8947913646698,
+ "step": 1460
+ },
+ {
+ "epoch": 20.293577981651374,
+ "grad_norm": 0.27494579553604126,
+ "learning_rate": 0.0006,
+ "loss": 3.9105992317199707,
+ "step": 1461
+ },
+ {
+ "epoch": 20.307557885539538,
+ "grad_norm": 0.26467713713645935,
+ "learning_rate": 0.0006,
+ "loss": 3.914632797241211,
+ "step": 1462
+ },
+ {
+ "epoch": 20.321537789427698,
+ "grad_norm": 0.25747713446617126,
+ "learning_rate": 0.0006,
+ "loss": 3.919846534729004,
+ "step": 1463
+ },
+ {
+ "epoch": 20.335517693315857,
+ "grad_norm": 0.24027711153030396,
+ "learning_rate": 0.0006,
+ "loss": 3.904740810394287,
+ "step": 1464
+ },
+ {
+ "epoch": 20.34949759720402,
+ "grad_norm": 0.24682414531707764,
+ "learning_rate": 0.0006,
+ "loss": 3.9190149307250977,
+ "step": 1465
+ },
+ {
+ "epoch": 20.36347750109218,
+ "grad_norm": 0.2619759440422058,
+ "learning_rate": 0.0006,
+ "loss": 3.9488329887390137,
+ "step": 1466
+ },
+ {
+ "epoch": 20.37745740498034,
+ "grad_norm": 0.2632448971271515,
+ "learning_rate": 0.0006,
+ "loss": 3.9216647148132324,
+ "step": 1467
+ },
+ {
+ "epoch": 20.3914373088685,
+ "grad_norm": 0.27569764852523804,
+ "learning_rate": 0.0006,
+ "loss": 3.9178895950317383,
+ "step": 1468
+ },
+ {
+ "epoch": 20.405417212756664,
+ "grad_norm": 0.2611774802207947,
+ "learning_rate": 0.0006,
+ "loss": 3.933730125427246,
+ "step": 1469
+ },
+ {
+ "epoch": 20.419397116644824,
+ "grad_norm": 0.2839447557926178,
+ "learning_rate": 0.0006,
+ "loss": 3.9261364936828613,
+ "step": 1470
+ },
+ {
+ "epoch": 20.433377020532983,
+ "grad_norm": 0.29006227850914,
+ "learning_rate": 0.0006,
+ "loss": 3.9157633781433105,
+ "step": 1471
+ },
+ {
+ "epoch": 20.447356924421143,
+ "grad_norm": 0.2809498906135559,
+ "learning_rate": 0.0006,
+ "loss": 3.9211745262145996,
+ "step": 1472
+ },
+ {
+ "epoch": 20.461336828309307,
+ "grad_norm": 0.27859532833099365,
+ "learning_rate": 0.0006,
+ "loss": 3.9115967750549316,
+ "step": 1473
+ },
+ {
+ "epoch": 20.475316732197467,
+ "grad_norm": 0.29114410281181335,
+ "learning_rate": 0.0006,
+ "loss": 3.9024441242218018,
+ "step": 1474
+ },
+ {
+ "epoch": 20.489296636085626,
+ "grad_norm": 0.2686930000782013,
+ "learning_rate": 0.0006,
+ "loss": 3.9497199058532715,
+ "step": 1475
+ },
+ {
+ "epoch": 20.503276539973786,
+ "grad_norm": 0.24120540916919708,
+ "learning_rate": 0.0006,
+ "loss": 3.9218955039978027,
+ "step": 1476
+ },
+ {
+ "epoch": 20.51725644386195,
+ "grad_norm": 0.23689547181129456,
+ "learning_rate": 0.0006,
+ "loss": 3.9410176277160645,
+ "step": 1477
+ },
+ {
+ "epoch": 20.53123634775011,
+ "grad_norm": 0.26382362842559814,
+ "learning_rate": 0.0006,
+ "loss": 3.8880343437194824,
+ "step": 1478
+ },
+ {
+ "epoch": 20.54521625163827,
+ "grad_norm": 0.21628661453723907,
+ "learning_rate": 0.0006,
+ "loss": 3.892622470855713,
+ "step": 1479
+ },
+ {
+ "epoch": 20.55919615552643,
+ "grad_norm": 0.19896996021270752,
+ "learning_rate": 0.0006,
+ "loss": 3.938734769821167,
+ "step": 1480
+ },
+ {
+ "epoch": 20.573176059414592,
+ "grad_norm": 0.20232494175434113,
+ "learning_rate": 0.0006,
+ "loss": 3.9197006225585938,
+ "step": 1481
+ },
+ {
+ "epoch": 20.587155963302752,
+ "grad_norm": 0.21807828545570374,
+ "learning_rate": 0.0006,
+ "loss": 3.9195618629455566,
+ "step": 1482
+ },
+ {
+ "epoch": 20.601135867190912,
+ "grad_norm": 0.21778680384159088,
+ "learning_rate": 0.0006,
+ "loss": 3.913395404815674,
+ "step": 1483
+ },
+ {
+ "epoch": 20.615115771079076,
+ "grad_norm": 0.21015185117721558,
+ "learning_rate": 0.0006,
+ "loss": 3.8858234882354736,
+ "step": 1484
+ },
+ {
+ "epoch": 20.629095674967235,
+ "grad_norm": 0.20131368935108185,
+ "learning_rate": 0.0006,
+ "loss": 3.927213430404663,
+ "step": 1485
+ },
+ {
+ "epoch": 20.643075578855395,
+ "grad_norm": 0.20746243000030518,
+ "learning_rate": 0.0006,
+ "loss": 3.913198471069336,
+ "step": 1486
+ },
+ {
+ "epoch": 20.657055482743555,
+ "grad_norm": 0.2024548053741455,
+ "learning_rate": 0.0006,
+ "loss": 3.923048257827759,
+ "step": 1487
+ },
+ {
+ "epoch": 20.67103538663172,
+ "grad_norm": 0.19735988974571228,
+ "learning_rate": 0.0006,
+ "loss": 3.9136500358581543,
+ "step": 1488
+ },
+ {
+ "epoch": 20.68501529051988,
+ "grad_norm": 0.19781625270843506,
+ "learning_rate": 0.0006,
+ "loss": 3.883793592453003,
+ "step": 1489
+ },
+ {
+ "epoch": 20.698995194408038,
+ "grad_norm": 0.1911996454000473,
+ "learning_rate": 0.0006,
+ "loss": 3.9078567028045654,
+ "step": 1490
+ },
+ {
+ "epoch": 20.712975098296198,
+ "grad_norm": 0.1989123821258545,
+ "learning_rate": 0.0006,
+ "loss": 3.9314043521881104,
+ "step": 1491
+ },
+ {
+ "epoch": 20.72695500218436,
+ "grad_norm": 0.18839342892169952,
+ "learning_rate": 0.0006,
+ "loss": 3.8955953121185303,
+ "step": 1492
+ },
+ {
+ "epoch": 20.74093490607252,
+ "grad_norm": 0.1944834142923355,
+ "learning_rate": 0.0006,
+ "loss": 3.9272377490997314,
+ "step": 1493
+ },
+ {
+ "epoch": 20.75491480996068,
+ "grad_norm": 0.20829126238822937,
+ "learning_rate": 0.0006,
+ "loss": 3.878857374191284,
+ "step": 1494
+ },
+ {
+ "epoch": 20.76889471384884,
+ "grad_norm": 0.21438424289226532,
+ "learning_rate": 0.0006,
+ "loss": 3.9155564308166504,
+ "step": 1495
+ },
+ {
+ "epoch": 20.782874617737004,
+ "grad_norm": 0.22309324145317078,
+ "learning_rate": 0.0006,
+ "loss": 3.9281692504882812,
+ "step": 1496
+ },
+ {
+ "epoch": 20.796854521625164,
+ "grad_norm": 0.2053767591714859,
+ "learning_rate": 0.0006,
+ "loss": 3.9096317291259766,
+ "step": 1497
+ },
+ {
+ "epoch": 20.810834425513324,
+ "grad_norm": 0.20429186522960663,
+ "learning_rate": 0.0006,
+ "loss": 3.9184865951538086,
+ "step": 1498
+ },
+ {
+ "epoch": 20.824814329401484,
+ "grad_norm": 0.21983473002910614,
+ "learning_rate": 0.0006,
+ "loss": 3.9130771160125732,
+ "step": 1499
+ },
+ {
+ "epoch": 20.838794233289647,
+ "grad_norm": 0.21649539470672607,
+ "learning_rate": 0.0006,
+ "loss": 3.921581268310547,
+ "step": 1500
+ },
+ {
+ "epoch": 20.852774137177807,
+ "grad_norm": 0.19645053148269653,
+ "learning_rate": 0.0006,
+ "loss": 3.966360092163086,
+ "step": 1501
+ },
+ {
+ "epoch": 20.866754041065967,
+ "grad_norm": 0.2126782387495041,
+ "learning_rate": 0.0006,
+ "loss": 3.9004554748535156,
+ "step": 1502
+ },
+ {
+ "epoch": 20.88073394495413,
+ "grad_norm": 0.22359658777713776,
+ "learning_rate": 0.0006,
+ "loss": 3.92336368560791,
+ "step": 1503
+ },
+ {
+ "epoch": 20.89471384884229,
+ "grad_norm": 0.2334042638540268,
+ "learning_rate": 0.0006,
+ "loss": 3.9188671112060547,
+ "step": 1504
+ },
+ {
+ "epoch": 20.90869375273045,
+ "grad_norm": 0.24595916271209717,
+ "learning_rate": 0.0006,
+ "loss": 3.9348371028900146,
+ "step": 1505
+ },
+ {
+ "epoch": 20.92267365661861,
+ "grad_norm": 0.24177910387516022,
+ "learning_rate": 0.0006,
+ "loss": 3.8796424865722656,
+ "step": 1506
+ },
+ {
+ "epoch": 20.936653560506773,
+ "grad_norm": 0.24193289875984192,
+ "learning_rate": 0.0006,
+ "loss": 3.892627716064453,
+ "step": 1507
+ },
+ {
+ "epoch": 20.950633464394933,
+ "grad_norm": 0.252849280834198,
+ "learning_rate": 0.0006,
+ "loss": 3.9300179481506348,
+ "step": 1508
+ },
+ {
+ "epoch": 20.964613368283093,
+ "grad_norm": 0.24933326244354248,
+ "learning_rate": 0.0006,
+ "loss": 3.9597225189208984,
+ "step": 1509
+ },
+ {
+ "epoch": 20.978593272171253,
+ "grad_norm": 0.23850969970226288,
+ "learning_rate": 0.0006,
+ "loss": 3.9027397632598877,
+ "step": 1510
+ },
+ {
+ "epoch": 20.992573176059416,
+ "grad_norm": 0.23298311233520508,
+ "learning_rate": 0.0006,
+ "loss": 3.9024105072021484,
+ "step": 1511
+ },
+ {
+ "epoch": 21.0,
+ "grad_norm": 0.2467455416917801,
+ "learning_rate": 0.0006,
+ "loss": 3.915929079055786,
+ "step": 1512
+ },
+ {
+ "epoch": 21.0,
+ "eval_loss": 4.136331081390381,
+ "eval_runtime": 43.9468,
+ "eval_samples_per_second": 55.567,
+ "eval_steps_per_second": 3.481,
+ "step": 1512
+ },
+ {
+ "epoch": 21.01397990388816,
+ "grad_norm": 0.2195885181427002,
+ "learning_rate": 0.0006,
+ "loss": 3.873412847518921,
+ "step": 1513
+ },
+ {
+ "epoch": 21.027959807776323,
+ "grad_norm": 0.24250614643096924,
+ "learning_rate": 0.0006,
+ "loss": 3.882302761077881,
+ "step": 1514
+ },
+ {
+ "epoch": 21.041939711664483,
+ "grad_norm": 0.249113991856575,
+ "learning_rate": 0.0006,
+ "loss": 3.9112048149108887,
+ "step": 1515
+ },
+ {
+ "epoch": 21.055919615552643,
+ "grad_norm": 0.25365301966667175,
+ "learning_rate": 0.0006,
+ "loss": 3.8625712394714355,
+ "step": 1516
+ },
+ {
+ "epoch": 21.069899519440803,
+ "grad_norm": 0.2218591272830963,
+ "learning_rate": 0.0006,
+ "loss": 3.876072406768799,
+ "step": 1517
+ },
+ {
+ "epoch": 21.083879423328966,
+ "grad_norm": 0.238582581281662,
+ "learning_rate": 0.0006,
+ "loss": 3.862060546875,
+ "step": 1518
+ },
+ {
+ "epoch": 21.097859327217126,
+ "grad_norm": 0.25051242113113403,
+ "learning_rate": 0.0006,
+ "loss": 3.905315399169922,
+ "step": 1519
+ },
+ {
+ "epoch": 21.111839231105286,
+ "grad_norm": 0.2391843944787979,
+ "learning_rate": 0.0006,
+ "loss": 3.909144401550293,
+ "step": 1520
+ },
+ {
+ "epoch": 21.125819134993446,
+ "grad_norm": 0.230543315410614,
+ "learning_rate": 0.0006,
+ "loss": 3.8856799602508545,
+ "step": 1521
+ },
+ {
+ "epoch": 21.13979903888161,
+ "grad_norm": 0.24165484309196472,
+ "learning_rate": 0.0006,
+ "loss": 3.893883228302002,
+ "step": 1522
+ },
+ {
+ "epoch": 21.15377894276977,
+ "grad_norm": 0.24657143652439117,
+ "learning_rate": 0.0006,
+ "loss": 3.901129722595215,
+ "step": 1523
+ },
+ {
+ "epoch": 21.16775884665793,
+ "grad_norm": 0.2659998834133148,
+ "learning_rate": 0.0006,
+ "loss": 3.910468101501465,
+ "step": 1524
+ },
+ {
+ "epoch": 21.18173875054609,
+ "grad_norm": 0.2673095166683197,
+ "learning_rate": 0.0006,
+ "loss": 3.917454242706299,
+ "step": 1525
+ },
+ {
+ "epoch": 21.195718654434252,
+ "grad_norm": 0.22122322022914886,
+ "learning_rate": 0.0006,
+ "loss": 3.9017257690429688,
+ "step": 1526
+ },
+ {
+ "epoch": 21.209698558322412,
+ "grad_norm": 0.21882867813110352,
+ "learning_rate": 0.0006,
+ "loss": 3.8605496883392334,
+ "step": 1527
+ },
+ {
+ "epoch": 21.22367846221057,
+ "grad_norm": 0.22335563600063324,
+ "learning_rate": 0.0006,
+ "loss": 3.88120174407959,
+ "step": 1528
+ },
+ {
+ "epoch": 21.23765836609873,
+ "grad_norm": 0.22973211109638214,
+ "learning_rate": 0.0006,
+ "loss": 3.8636834621429443,
+ "step": 1529
+ },
+ {
+ "epoch": 21.251638269986895,
+ "grad_norm": 0.2410288006067276,
+ "learning_rate": 0.0006,
+ "loss": 3.8698177337646484,
+ "step": 1530
+ },
+ {
+ "epoch": 21.265618173875055,
+ "grad_norm": 0.2454768717288971,
+ "learning_rate": 0.0006,
+ "loss": 3.905341148376465,
+ "step": 1531
+ },
+ {
+ "epoch": 21.279598077763215,
+ "grad_norm": 0.2271580696105957,
+ "learning_rate": 0.0006,
+ "loss": 3.864063262939453,
+ "step": 1532
+ },
+ {
+ "epoch": 21.293577981651374,
+ "grad_norm": 0.2200947403907776,
+ "learning_rate": 0.0006,
+ "loss": 3.8889589309692383,
+ "step": 1533
+ },
+ {
+ "epoch": 21.307557885539538,
+ "grad_norm": 0.2180824875831604,
+ "learning_rate": 0.0006,
+ "loss": 3.8873472213745117,
+ "step": 1534
+ },
+ {
+ "epoch": 21.321537789427698,
+ "grad_norm": 0.214975506067276,
+ "learning_rate": 0.0006,
+ "loss": 3.882307529449463,
+ "step": 1535
+ },
+ {
+ "epoch": 21.335517693315857,
+ "grad_norm": 0.21411260962486267,
+ "learning_rate": 0.0006,
+ "loss": 3.8861560821533203,
+ "step": 1536
+ },
+ {
+ "epoch": 21.34949759720402,
+ "grad_norm": 0.22635889053344727,
+ "learning_rate": 0.0006,
+ "loss": 3.9174342155456543,
+ "step": 1537
+ },
+ {
+ "epoch": 21.36347750109218,
+ "grad_norm": 0.22700625658035278,
+ "learning_rate": 0.0006,
+ "loss": 3.890416383743286,
+ "step": 1538
+ },
+ {
+ "epoch": 21.37745740498034,
+ "grad_norm": 0.2106025069952011,
+ "learning_rate": 0.0006,
+ "loss": 3.8672406673431396,
+ "step": 1539
+ },
+ {
+ "epoch": 21.3914373088685,
+ "grad_norm": 0.22994661331176758,
+ "learning_rate": 0.0006,
+ "loss": 3.893190383911133,
+ "step": 1540
+ },
+ {
+ "epoch": 21.405417212756664,
+ "grad_norm": 0.24701105058193207,
+ "learning_rate": 0.0006,
+ "loss": 3.898078441619873,
+ "step": 1541
+ },
+ {
+ "epoch": 21.419397116644824,
+ "grad_norm": 0.26914113759994507,
+ "learning_rate": 0.0006,
+ "loss": 3.905871868133545,
+ "step": 1542
+ },
+ {
+ "epoch": 21.433377020532983,
+ "grad_norm": 0.2904224097728729,
+ "learning_rate": 0.0006,
+ "loss": 3.8919103145599365,
+ "step": 1543
+ },
+ {
+ "epoch": 21.447356924421143,
+ "grad_norm": 0.2911844551563263,
+ "learning_rate": 0.0006,
+ "loss": 3.9073286056518555,
+ "step": 1544
+ },
+ {
+ "epoch": 21.461336828309307,
+ "grad_norm": 0.2742345929145813,
+ "learning_rate": 0.0006,
+ "loss": 3.9075546264648438,
+ "step": 1545
+ },
+ {
+ "epoch": 21.475316732197467,
+ "grad_norm": 0.2341093122959137,
+ "learning_rate": 0.0006,
+ "loss": 3.9232025146484375,
+ "step": 1546
+ },
+ {
+ "epoch": 21.489296636085626,
+ "grad_norm": 0.22808541357517242,
+ "learning_rate": 0.0006,
+ "loss": 3.9168174266815186,
+ "step": 1547
+ },
+ {
+ "epoch": 21.503276539973786,
+ "grad_norm": 0.23049889504909515,
+ "learning_rate": 0.0006,
+ "loss": 3.8850595951080322,
+ "step": 1548
+ },
+ {
+ "epoch": 21.51725644386195,
+ "grad_norm": 0.21519650518894196,
+ "learning_rate": 0.0006,
+ "loss": 3.891313076019287,
+ "step": 1549
+ },
+ {
+ "epoch": 21.53123634775011,
+ "grad_norm": 0.20999883115291595,
+ "learning_rate": 0.0006,
+ "loss": 3.894439220428467,
+ "step": 1550
+ },
+ {
+ "epoch": 21.54521625163827,
+ "grad_norm": 0.19641105830669403,
+ "learning_rate": 0.0006,
+ "loss": 3.894871473312378,
+ "step": 1551
+ },
+ {
+ "epoch": 21.55919615552643,
+ "grad_norm": 0.19108249247074127,
+ "learning_rate": 0.0006,
+ "loss": 3.905968189239502,
+ "step": 1552
+ },
+ {
+ "epoch": 21.573176059414592,
+ "grad_norm": 0.20222234725952148,
+ "learning_rate": 0.0006,
+ "loss": 3.90565824508667,
+ "step": 1553
+ },
+ {
+ "epoch": 21.587155963302752,
+ "grad_norm": 0.20620177686214447,
+ "learning_rate": 0.0006,
+ "loss": 3.9103245735168457,
+ "step": 1554
+ },
+ {
+ "epoch": 21.601135867190912,
+ "grad_norm": 0.2149713784456253,
+ "learning_rate": 0.0006,
+ "loss": 3.8864927291870117,
+ "step": 1555
+ },
+ {
+ "epoch": 21.615115771079076,
+ "grad_norm": 0.2354084551334381,
+ "learning_rate": 0.0006,
+ "loss": 3.905095100402832,
+ "step": 1556
+ },
+ {
+ "epoch": 21.629095674967235,
+ "grad_norm": 0.23949941992759705,
+ "learning_rate": 0.0006,
+ "loss": 3.901803493499756,
+ "step": 1557
+ },
+ {
+ "epoch": 21.643075578855395,
+ "grad_norm": 0.22914277017116547,
+ "learning_rate": 0.0006,
+ "loss": 3.876044273376465,
+ "step": 1558
+ },
+ {
+ "epoch": 21.657055482743555,
+ "grad_norm": 0.2363225370645523,
+ "learning_rate": 0.0006,
+ "loss": 3.910841703414917,
+ "step": 1559
+ },
+ {
+ "epoch": 21.67103538663172,
+ "grad_norm": 0.2635626792907715,
+ "learning_rate": 0.0006,
+ "loss": 3.847407579421997,
+ "step": 1560
+ },
+ {
+ "epoch": 21.68501529051988,
+ "grad_norm": 0.2499786615371704,
+ "learning_rate": 0.0006,
+ "loss": 3.8667140007019043,
+ "step": 1561
+ },
+ {
+ "epoch": 21.698995194408038,
+ "grad_norm": 0.21609611809253693,
+ "learning_rate": 0.0006,
+ "loss": 3.895470142364502,
+ "step": 1562
+ },
+ {
+ "epoch": 21.712975098296198,
+ "grad_norm": 0.2466774582862854,
+ "learning_rate": 0.0006,
+ "loss": 3.8853235244750977,
+ "step": 1563
+ },
+ {
+ "epoch": 21.72695500218436,
+ "grad_norm": 0.23791883885860443,
+ "learning_rate": 0.0006,
+ "loss": 3.899418354034424,
+ "step": 1564
+ },
+ {
+ "epoch": 21.74093490607252,
+ "grad_norm": 0.2048920840024948,
+ "learning_rate": 0.0006,
+ "loss": 3.8992419242858887,
+ "step": 1565
+ },
+ {
+ "epoch": 21.75491480996068,
+ "grad_norm": 0.22266621887683868,
+ "learning_rate": 0.0006,
+ "loss": 3.885765552520752,
+ "step": 1566
+ },
+ {
+ "epoch": 21.76889471384884,
+ "grad_norm": 0.2508748769760132,
+ "learning_rate": 0.0006,
+ "loss": 3.8797037601470947,
+ "step": 1567
+ },
+ {
+ "epoch": 21.782874617737004,
+ "grad_norm": 0.27245673537254333,
+ "learning_rate": 0.0006,
+ "loss": 3.8743176460266113,
+ "step": 1568
+ },
+ {
+ "epoch": 21.796854521625164,
+ "grad_norm": 0.25503191351890564,
+ "learning_rate": 0.0006,
+ "loss": 3.868906259536743,
+ "step": 1569
+ },
+ {
+ "epoch": 21.810834425513324,
+ "grad_norm": 0.22984394431114197,
+ "learning_rate": 0.0006,
+ "loss": 3.9051015377044678,
+ "step": 1570
+ },
+ {
+ "epoch": 21.824814329401484,
+ "grad_norm": 0.2411898821592331,
+ "learning_rate": 0.0006,
+ "loss": 3.8911490440368652,
+ "step": 1571
+ },
+ {
+ "epoch": 21.838794233289647,
+ "grad_norm": 0.22609318792819977,
+ "learning_rate": 0.0006,
+ "loss": 3.894839286804199,
+ "step": 1572
+ },
+ {
+ "epoch": 21.852774137177807,
+ "grad_norm": 0.21904583275318146,
+ "learning_rate": 0.0006,
+ "loss": 3.9314537048339844,
+ "step": 1573
+ },
+ {
+ "epoch": 21.866754041065967,
+ "grad_norm": 0.21869723498821259,
+ "learning_rate": 0.0006,
+ "loss": 3.9141433238983154,
+ "step": 1574
+ },
+ {
+ "epoch": 21.88073394495413,
+ "grad_norm": 0.21682019531726837,
+ "learning_rate": 0.0006,
+ "loss": 3.867898464202881,
+ "step": 1575
+ },
+ {
+ "epoch": 21.89471384884229,
+ "grad_norm": 0.2211964726448059,
+ "learning_rate": 0.0006,
+ "loss": 3.8892226219177246,
+ "step": 1576
+ },
+ {
+ "epoch": 21.90869375273045,
+ "grad_norm": 0.2097381353378296,
+ "learning_rate": 0.0006,
+ "loss": 3.9194154739379883,
+ "step": 1577
+ },
+ {
+ "epoch": 21.92267365661861,
+ "grad_norm": 0.21229565143585205,
+ "learning_rate": 0.0006,
+ "loss": 3.924694538116455,
+ "step": 1578
+ },
+ {
+ "epoch": 21.936653560506773,
+ "grad_norm": 0.2186083346605301,
+ "learning_rate": 0.0006,
+ "loss": 3.904440402984619,
+ "step": 1579
+ },
+ {
+ "epoch": 21.950633464394933,
+ "grad_norm": 0.21112321317195892,
+ "learning_rate": 0.0006,
+ "loss": 3.905674934387207,
+ "step": 1580
+ },
+ {
+ "epoch": 21.964613368283093,
+ "grad_norm": 0.20867373049259186,
+ "learning_rate": 0.0006,
+ "loss": 3.8761563301086426,
+ "step": 1581
+ },
+ {
+ "epoch": 21.978593272171253,
+ "grad_norm": 0.21640732884407043,
+ "learning_rate": 0.0006,
+ "loss": 3.871950149536133,
+ "step": 1582
+ },
+ {
+ "epoch": 21.992573176059416,
+ "grad_norm": 0.21920442581176758,
+ "learning_rate": 0.0006,
+ "loss": 3.8853464126586914,
+ "step": 1583
+ },
+ {
+ "epoch": 22.0,
+ "grad_norm": 0.24132665991783142,
+ "learning_rate": 0.0006,
+ "loss": 3.9012184143066406,
+ "step": 1584
+ },
+ {
+ "epoch": 22.0,
+ "eval_loss": 4.108598232269287,
+ "eval_runtime": 44.0434,
+ "eval_samples_per_second": 55.445,
+ "eval_steps_per_second": 3.474,
+ "step": 1584
+ },
+ {
+ "epoch": 22.01397990388816,
+ "grad_norm": 0.21989449858665466,
+ "learning_rate": 0.0006,
+ "loss": 3.8657469749450684,
+ "step": 1585
+ },
+ {
+ "epoch": 22.027959807776323,
+ "grad_norm": 0.20416802167892456,
+ "learning_rate": 0.0006,
+ "loss": 3.8682117462158203,
+ "step": 1586
+ },
+ {
+ "epoch": 22.041939711664483,
+ "grad_norm": 0.20651975274085999,
+ "learning_rate": 0.0006,
+ "loss": 3.8501222133636475,
+ "step": 1587
+ },
+ {
+ "epoch": 22.055919615552643,
+ "grad_norm": 0.22987176477909088,
+ "learning_rate": 0.0006,
+ "loss": 3.8830955028533936,
+ "step": 1588
+ },
+ {
+ "epoch": 22.069899519440803,
+ "grad_norm": 0.23308858275413513,
+ "learning_rate": 0.0006,
+ "loss": 3.8659040927886963,
+ "step": 1589
+ },
+ {
+ "epoch": 22.083879423328966,
+ "grad_norm": 0.2144266963005066,
+ "learning_rate": 0.0006,
+ "loss": 3.8311047554016113,
+ "step": 1590
+ },
+ {
+ "epoch": 22.097859327217126,
+ "grad_norm": 0.2052636295557022,
+ "learning_rate": 0.0006,
+ "loss": 3.8700156211853027,
+ "step": 1591
+ },
+ {
+ "epoch": 22.111839231105286,
+ "grad_norm": 0.22792384028434753,
+ "learning_rate": 0.0006,
+ "loss": 3.8799097537994385,
+ "step": 1592
+ },
+ {
+ "epoch": 22.125819134993446,
+ "grad_norm": 0.2533944249153137,
+ "learning_rate": 0.0006,
+ "loss": 3.874959945678711,
+ "step": 1593
+ },
+ {
+ "epoch": 22.13979903888161,
+ "grad_norm": 0.27126258611679077,
+ "learning_rate": 0.0006,
+ "loss": 3.863774299621582,
+ "step": 1594
+ },
+ {
+ "epoch": 22.15377894276977,
+ "grad_norm": 0.2634040415287018,
+ "learning_rate": 0.0006,
+ "loss": 3.8876869678497314,
+ "step": 1595
+ },
+ {
+ "epoch": 22.16775884665793,
+ "grad_norm": 0.267987459897995,
+ "learning_rate": 0.0006,
+ "loss": 3.871776819229126,
+ "step": 1596
+ },
+ {
+ "epoch": 22.18173875054609,
+ "grad_norm": 0.2972337305545807,
+ "learning_rate": 0.0006,
+ "loss": 3.8453969955444336,
+ "step": 1597
+ },
+ {
+ "epoch": 22.195718654434252,
+ "grad_norm": 0.3012159764766693,
+ "learning_rate": 0.0006,
+ "loss": 3.8774254322052,
+ "step": 1598
+ },
+ {
+ "epoch": 22.209698558322412,
+ "grad_norm": 0.27275875210762024,
+ "learning_rate": 0.0006,
+ "loss": 3.8558950424194336,
+ "step": 1599
+ },
+ {
+ "epoch": 22.22367846221057,
+ "grad_norm": 0.2817993462085724,
+ "learning_rate": 0.0006,
+ "loss": 3.872211217880249,
+ "step": 1600
+ },
+ {
+ "epoch": 22.23765836609873,
+ "grad_norm": 0.28823208808898926,
+ "learning_rate": 0.0006,
+ "loss": 3.847616672515869,
+ "step": 1601
+ },
+ {
+ "epoch": 22.251638269986895,
+ "grad_norm": 0.2646387815475464,
+ "learning_rate": 0.0006,
+ "loss": 3.8993802070617676,
+ "step": 1602
+ },
+ {
+ "epoch": 22.265618173875055,
+ "grad_norm": 0.27664077281951904,
+ "learning_rate": 0.0006,
+ "loss": 3.858553409576416,
+ "step": 1603
+ },
+ {
+ "epoch": 22.279598077763215,
+ "grad_norm": 0.27708905935287476,
+ "learning_rate": 0.0006,
+ "loss": 3.8691039085388184,
+ "step": 1604
+ },
+ {
+ "epoch": 22.293577981651374,
+ "grad_norm": 0.3045521378517151,
+ "learning_rate": 0.0006,
+ "loss": 3.8721439838409424,
+ "step": 1605
+ },
+ {
+ "epoch": 22.307557885539538,
+ "grad_norm": 0.3481914699077606,
+ "learning_rate": 0.0006,
+ "loss": 3.894503593444824,
+ "step": 1606
+ },
+ {
+ "epoch": 22.321537789427698,
+ "grad_norm": 0.3298046588897705,
+ "learning_rate": 0.0006,
+ "loss": 3.8420844078063965,
+ "step": 1607
+ },
+ {
+ "epoch": 22.335517693315857,
+ "grad_norm": 0.24967724084854126,
+ "learning_rate": 0.0006,
+ "loss": 3.8892619609832764,
+ "step": 1608
+ },
+ {
+ "epoch": 22.34949759720402,
+ "grad_norm": 0.22645241022109985,
+ "learning_rate": 0.0006,
+ "loss": 3.873265504837036,
+ "step": 1609
+ },
+ {
+ "epoch": 22.36347750109218,
+ "grad_norm": 0.22813954949378967,
+ "learning_rate": 0.0006,
+ "loss": 3.8658013343811035,
+ "step": 1610
+ },
+ {
+ "epoch": 22.37745740498034,
+ "grad_norm": 0.23825274407863617,
+ "learning_rate": 0.0006,
+ "loss": 3.885456085205078,
+ "step": 1611
+ },
+ {
+ "epoch": 22.3914373088685,
+ "grad_norm": 0.23612336814403534,
+ "learning_rate": 0.0006,
+ "loss": 3.851841449737549,
+ "step": 1612
+ },
+ {
+ "epoch": 22.405417212756664,
+ "grad_norm": 0.23851265013217926,
+ "learning_rate": 0.0006,
+ "loss": 3.8711647987365723,
+ "step": 1613
+ },
+ {
+ "epoch": 22.419397116644824,
+ "grad_norm": 0.22977286577224731,
+ "learning_rate": 0.0006,
+ "loss": 3.848539113998413,
+ "step": 1614
+ },
+ {
+ "epoch": 22.433377020532983,
+ "grad_norm": 0.20970143377780914,
+ "learning_rate": 0.0006,
+ "loss": 3.8709521293640137,
+ "step": 1615
+ },
+ {
+ "epoch": 22.447356924421143,
+ "grad_norm": 0.20714804530143738,
+ "learning_rate": 0.0006,
+ "loss": 3.875060558319092,
+ "step": 1616
+ },
+ {
+ "epoch": 22.461336828309307,
+ "grad_norm": 0.18881355226039886,
+ "learning_rate": 0.0006,
+ "loss": 3.8744640350341797,
+ "step": 1617
+ },
+ {
+ "epoch": 22.475316732197467,
+ "grad_norm": 0.1928759068250656,
+ "learning_rate": 0.0006,
+ "loss": 3.867971420288086,
+ "step": 1618
+ },
+ {
+ "epoch": 22.489296636085626,
+ "grad_norm": 0.18614749610424042,
+ "learning_rate": 0.0006,
+ "loss": 3.8738222122192383,
+ "step": 1619
+ },
+ {
+ "epoch": 22.503276539973786,
+ "grad_norm": 0.18614931404590607,
+ "learning_rate": 0.0006,
+ "loss": 3.8470513820648193,
+ "step": 1620
+ },
+ {
+ "epoch": 22.51725644386195,
+ "grad_norm": 0.17805059254169464,
+ "learning_rate": 0.0006,
+ "loss": 3.866396903991699,
+ "step": 1621
+ },
+ {
+ "epoch": 22.53123634775011,
+ "grad_norm": 0.16941314935684204,
+ "learning_rate": 0.0006,
+ "loss": 3.856832265853882,
+ "step": 1622
+ },
+ {
+ "epoch": 22.54521625163827,
+ "grad_norm": 0.1802310198545456,
+ "learning_rate": 0.0006,
+ "loss": 3.885653018951416,
+ "step": 1623
+ },
+ {
+ "epoch": 22.55919615552643,
+ "grad_norm": 0.1854856163263321,
+ "learning_rate": 0.0006,
+ "loss": 3.8779640197753906,
+ "step": 1624
+ },
+ {
+ "epoch": 22.573176059414592,
+ "grad_norm": 0.18765869736671448,
+ "learning_rate": 0.0006,
+ "loss": 3.8449032306671143,
+ "step": 1625
+ },
+ {
+ "epoch": 22.587155963302752,
+ "grad_norm": 0.1907789707183838,
+ "learning_rate": 0.0006,
+ "loss": 3.863029718399048,
+ "step": 1626
+ },
+ {
+ "epoch": 22.601135867190912,
+ "grad_norm": 0.19285395741462708,
+ "learning_rate": 0.0006,
+ "loss": 3.880145788192749,
+ "step": 1627
+ },
+ {
+ "epoch": 22.615115771079076,
+ "grad_norm": 0.19229751825332642,
+ "learning_rate": 0.0006,
+ "loss": 3.8521225452423096,
+ "step": 1628
+ },
+ {
+ "epoch": 22.629095674967235,
+ "grad_norm": 0.191694438457489,
+ "learning_rate": 0.0006,
+ "loss": 3.899827003479004,
+ "step": 1629
+ },
+ {
+ "epoch": 22.643075578855395,
+ "grad_norm": 0.20143048465251923,
+ "learning_rate": 0.0006,
+ "loss": 3.862064838409424,
+ "step": 1630
+ },
+ {
+ "epoch": 22.657055482743555,
+ "grad_norm": 0.1959840953350067,
+ "learning_rate": 0.0006,
+ "loss": 3.8955392837524414,
+ "step": 1631
+ },
+ {
+ "epoch": 22.67103538663172,
+ "grad_norm": 0.21454884111881256,
+ "learning_rate": 0.0006,
+ "loss": 3.8503167629241943,
+ "step": 1632
+ },
+ {
+ "epoch": 22.68501529051988,
+ "grad_norm": 0.21748484671115875,
+ "learning_rate": 0.0006,
+ "loss": 3.897134304046631,
+ "step": 1633
+ },
+ {
+ "epoch": 22.698995194408038,
+ "grad_norm": 0.21204186975955963,
+ "learning_rate": 0.0006,
+ "loss": 3.9292588233947754,
+ "step": 1634
+ },
+ {
+ "epoch": 22.712975098296198,
+ "grad_norm": 0.2112748771905899,
+ "learning_rate": 0.0006,
+ "loss": 3.89798641204834,
+ "step": 1635
+ },
+ {
+ "epoch": 22.72695500218436,
+ "grad_norm": 0.188576802611351,
+ "learning_rate": 0.0006,
+ "loss": 3.85627818107605,
+ "step": 1636
+ },
+ {
+ "epoch": 22.74093490607252,
+ "grad_norm": 0.17755994200706482,
+ "learning_rate": 0.0006,
+ "loss": 3.8480074405670166,
+ "step": 1637
+ },
+ {
+ "epoch": 22.75491480996068,
+ "grad_norm": 0.18037520349025726,
+ "learning_rate": 0.0006,
+ "loss": 3.8800172805786133,
+ "step": 1638
+ },
+ {
+ "epoch": 22.76889471384884,
+ "grad_norm": 0.19205765426158905,
+ "learning_rate": 0.0006,
+ "loss": 3.8658275604248047,
+ "step": 1639
+ },
+ {
+ "epoch": 22.782874617737004,
+ "grad_norm": 0.21801964938640594,
+ "learning_rate": 0.0006,
+ "loss": 3.8999452590942383,
+ "step": 1640
+ },
+ {
+ "epoch": 22.796854521625164,
+ "grad_norm": 0.23586086928844452,
+ "learning_rate": 0.0006,
+ "loss": 3.8660664558410645,
+ "step": 1641
+ },
+ {
+ "epoch": 22.810834425513324,
+ "grad_norm": 0.22289055585861206,
+ "learning_rate": 0.0006,
+ "loss": 3.86102557182312,
+ "step": 1642
+ },
+ {
+ "epoch": 22.824814329401484,
+ "grad_norm": 0.20695745944976807,
+ "learning_rate": 0.0006,
+ "loss": 3.8336222171783447,
+ "step": 1643
+ },
+ {
+ "epoch": 22.838794233289647,
+ "grad_norm": 0.2157406210899353,
+ "learning_rate": 0.0006,
+ "loss": 3.8923370838165283,
+ "step": 1644
+ },
+ {
+ "epoch": 22.852774137177807,
+ "grad_norm": 0.2326202690601349,
+ "learning_rate": 0.0006,
+ "loss": 3.8841443061828613,
+ "step": 1645
+ },
+ {
+ "epoch": 22.866754041065967,
+ "grad_norm": 0.2228803187608719,
+ "learning_rate": 0.0006,
+ "loss": 3.8791375160217285,
+ "step": 1646
+ },
+ {
+ "epoch": 22.88073394495413,
+ "grad_norm": 0.228999063372612,
+ "learning_rate": 0.0006,
+ "loss": 3.9005866050720215,
+ "step": 1647
+ },
+ {
+ "epoch": 22.89471384884229,
+ "grad_norm": 0.19673815369606018,
+ "learning_rate": 0.0006,
+ "loss": 3.8954291343688965,
+ "step": 1648
+ },
+ {
+ "epoch": 22.90869375273045,
+ "grad_norm": 0.1862584501504898,
+ "learning_rate": 0.0006,
+ "loss": 3.8591439723968506,
+ "step": 1649
+ },
+ {
+ "epoch": 22.92267365661861,
+ "grad_norm": 0.21360838413238525,
+ "learning_rate": 0.0006,
+ "loss": 3.862949848175049,
+ "step": 1650
+ },
+ {
+ "epoch": 22.936653560506773,
+ "grad_norm": 0.22538702189922333,
+ "learning_rate": 0.0006,
+ "loss": 3.8466529846191406,
+ "step": 1651
+ },
+ {
+ "epoch": 22.950633464394933,
+ "grad_norm": 0.21452727913856506,
+ "learning_rate": 0.0006,
+ "loss": 3.890007495880127,
+ "step": 1652
+ },
+ {
+ "epoch": 22.964613368283093,
+ "grad_norm": 0.21283482015132904,
+ "learning_rate": 0.0006,
+ "loss": 3.8820929527282715,
+ "step": 1653
+ },
+ {
+ "epoch": 22.978593272171253,
+ "grad_norm": 0.2035825103521347,
+ "learning_rate": 0.0006,
+ "loss": 3.8663241863250732,
+ "step": 1654
+ },
+ {
+ "epoch": 22.992573176059416,
+ "grad_norm": 0.22431661188602448,
+ "learning_rate": 0.0006,
+ "loss": 3.88238525390625,
+ "step": 1655
+ },
+ {
+ "epoch": 23.0,
+ "grad_norm": 0.2619943916797638,
+ "learning_rate": 0.0006,
+ "loss": 3.8482635021209717,
+ "step": 1656
+ },
+ {
+ "epoch": 23.0,
+ "eval_loss": 4.099980354309082,
+ "eval_runtime": 44.1311,
+ "eval_samples_per_second": 55.335,
+ "eval_steps_per_second": 3.467,
+ "step": 1656
+ },
+ {
+ "epoch": 23.01397990388816,
+ "grad_norm": 0.24712848663330078,
+ "learning_rate": 0.0006,
+ "loss": 3.836700916290283,
+ "step": 1657
+ },
+ {
+ "epoch": 23.027959807776323,
+ "grad_norm": 0.28568798303604126,
+ "learning_rate": 0.0006,
+ "loss": 3.8523952960968018,
+ "step": 1658
+ },
+ {
+ "epoch": 23.041939711664483,
+ "grad_norm": 0.2999744415283203,
+ "learning_rate": 0.0006,
+ "loss": 3.8229494094848633,
+ "step": 1659
+ },
+ {
+ "epoch": 23.055919615552643,
+ "grad_norm": 0.32080450654029846,
+ "learning_rate": 0.0006,
+ "loss": 3.8562774658203125,
+ "step": 1660
+ },
+ {
+ "epoch": 23.069899519440803,
+ "grad_norm": 0.293468177318573,
+ "learning_rate": 0.0006,
+ "loss": 3.889139175415039,
+ "step": 1661
+ },
+ {
+ "epoch": 23.083879423328966,
+ "grad_norm": 0.2605799436569214,
+ "learning_rate": 0.0006,
+ "loss": 3.838681221008301,
+ "step": 1662
+ },
+ {
+ "epoch": 23.097859327217126,
+ "grad_norm": 0.2656237483024597,
+ "learning_rate": 0.0006,
+ "loss": 3.8603532314300537,
+ "step": 1663
+ },
+ {
+ "epoch": 23.111839231105286,
+ "grad_norm": 0.27163293957710266,
+ "learning_rate": 0.0006,
+ "loss": 3.846987009048462,
+ "step": 1664
+ },
+ {
+ "epoch": 23.125819134993446,
+ "grad_norm": 0.2719763517379761,
+ "learning_rate": 0.0006,
+ "loss": 3.805354595184326,
+ "step": 1665
+ },
+ {
+ "epoch": 23.13979903888161,
+ "grad_norm": 0.25786274671554565,
+ "learning_rate": 0.0006,
+ "loss": 3.8486907482147217,
+ "step": 1666
+ },
+ {
+ "epoch": 23.15377894276977,
+ "grad_norm": 0.2675692141056061,
+ "learning_rate": 0.0006,
+ "loss": 3.816493511199951,
+ "step": 1667
+ },
+ {
+ "epoch": 23.16775884665793,
+ "grad_norm": 0.2711698114871979,
+ "learning_rate": 0.0006,
+ "loss": 3.851863384246826,
+ "step": 1668
+ },
+ {
+ "epoch": 23.18173875054609,
+ "grad_norm": 0.2588968873023987,
+ "learning_rate": 0.0006,
+ "loss": 3.860816717147827,
+ "step": 1669
+ },
+ {
+ "epoch": 23.195718654434252,
+ "grad_norm": 0.2458600401878357,
+ "learning_rate": 0.0006,
+ "loss": 3.8058223724365234,
+ "step": 1670
+ },
+ {
+ "epoch": 23.209698558322412,
+ "grad_norm": 0.22014005482196808,
+ "learning_rate": 0.0006,
+ "loss": 3.8686985969543457,
+ "step": 1671
+ },
+ {
+ "epoch": 23.22367846221057,
+ "grad_norm": 0.22450537979602814,
+ "learning_rate": 0.0006,
+ "loss": 3.8379364013671875,
+ "step": 1672
+ },
+ {
+ "epoch": 23.23765836609873,
+ "grad_norm": 0.22132326662540436,
+ "learning_rate": 0.0006,
+ "loss": 3.8873870372772217,
+ "step": 1673
+ },
+ {
+ "epoch": 23.251638269986895,
+ "grad_norm": 0.20994804799556732,
+ "learning_rate": 0.0006,
+ "loss": 3.821415424346924,
+ "step": 1674
+ },
+ {
+ "epoch": 23.265618173875055,
+ "grad_norm": 0.2040853649377823,
+ "learning_rate": 0.0006,
+ "loss": 3.831658124923706,
+ "step": 1675
+ },
+ {
+ "epoch": 23.279598077763215,
+ "grad_norm": 0.20878618955612183,
+ "learning_rate": 0.0006,
+ "loss": 3.838672637939453,
+ "step": 1676
+ },
+ {
+ "epoch": 23.293577981651374,
+ "grad_norm": 0.19974198937416077,
+ "learning_rate": 0.0006,
+ "loss": 3.8442561626434326,
+ "step": 1677
+ },
+ {
+ "epoch": 23.307557885539538,
+ "grad_norm": 0.20523984730243683,
+ "learning_rate": 0.0006,
+ "loss": 3.846139907836914,
+ "step": 1678
+ },
+ {
+ "epoch": 23.321537789427698,
+ "grad_norm": 0.2045847624540329,
+ "learning_rate": 0.0006,
+ "loss": 3.8597474098205566,
+ "step": 1679
+ },
+ {
+ "epoch": 23.335517693315857,
+ "grad_norm": 0.20957441627979279,
+ "learning_rate": 0.0006,
+ "loss": 3.8493881225585938,
+ "step": 1680
+ },
+ {
+ "epoch": 23.34949759720402,
+ "grad_norm": 0.2069379836320877,
+ "learning_rate": 0.0006,
+ "loss": 3.8510046005249023,
+ "step": 1681
+ },
+ {
+ "epoch": 23.36347750109218,
+ "grad_norm": 0.19627872109413147,
+ "learning_rate": 0.0006,
+ "loss": 3.844618320465088,
+ "step": 1682
+ },
+ {
+ "epoch": 23.37745740498034,
+ "grad_norm": 0.19599434733390808,
+ "learning_rate": 0.0006,
+ "loss": 3.8245465755462646,
+ "step": 1683
+ },
+ {
+ "epoch": 23.3914373088685,
+ "grad_norm": 0.2035072147846222,
+ "learning_rate": 0.0006,
+ "loss": 3.854422092437744,
+ "step": 1684
+ },
+ {
+ "epoch": 23.405417212756664,
+ "grad_norm": 0.21836814284324646,
+ "learning_rate": 0.0006,
+ "loss": 3.83512282371521,
+ "step": 1685
+ },
+ {
+ "epoch": 23.419397116644824,
+ "grad_norm": 0.22844630479812622,
+ "learning_rate": 0.0006,
+ "loss": 3.8744301795959473,
+ "step": 1686
+ },
+ {
+ "epoch": 23.433377020532983,
+ "grad_norm": 0.2259359359741211,
+ "learning_rate": 0.0006,
+ "loss": 3.8460323810577393,
+ "step": 1687
+ },
+ {
+ "epoch": 23.447356924421143,
+ "grad_norm": 0.24440120160579681,
+ "learning_rate": 0.0006,
+ "loss": 3.8543787002563477,
+ "step": 1688
+ },
+ {
+ "epoch": 23.461336828309307,
+ "grad_norm": 0.25063708424568176,
+ "learning_rate": 0.0006,
+ "loss": 3.851004123687744,
+ "step": 1689
+ },
+ {
+ "epoch": 23.475316732197467,
+ "grad_norm": 0.25515618920326233,
+ "learning_rate": 0.0006,
+ "loss": 3.8685030937194824,
+ "step": 1690
+ },
+ {
+ "epoch": 23.489296636085626,
+ "grad_norm": 0.23961050808429718,
+ "learning_rate": 0.0006,
+ "loss": 3.866792678833008,
+ "step": 1691
+ },
+ {
+ "epoch": 23.503276539973786,
+ "grad_norm": 0.20880955457687378,
+ "learning_rate": 0.0006,
+ "loss": 3.8416638374328613,
+ "step": 1692
+ },
+ {
+ "epoch": 23.51725644386195,
+ "grad_norm": 0.1989721804857254,
+ "learning_rate": 0.0006,
+ "loss": 3.8608641624450684,
+ "step": 1693
+ },
+ {
+ "epoch": 23.53123634775011,
+ "grad_norm": 0.207577183842659,
+ "learning_rate": 0.0006,
+ "loss": 3.8431811332702637,
+ "step": 1694
+ },
+ {
+ "epoch": 23.54521625163827,
+ "grad_norm": 0.20844359695911407,
+ "learning_rate": 0.0006,
+ "loss": 3.882844924926758,
+ "step": 1695
+ },
+ {
+ "epoch": 23.55919615552643,
+ "grad_norm": 0.22511139512062073,
+ "learning_rate": 0.0006,
+ "loss": 3.866156578063965,
+ "step": 1696
+ },
+ {
+ "epoch": 23.573176059414592,
+ "grad_norm": 0.21648484468460083,
+ "learning_rate": 0.0006,
+ "loss": 3.87117075920105,
+ "step": 1697
+ },
+ {
+ "epoch": 23.587155963302752,
+ "grad_norm": 0.2081802636384964,
+ "learning_rate": 0.0006,
+ "loss": 3.828132152557373,
+ "step": 1698
+ },
+ {
+ "epoch": 23.601135867190912,
+ "grad_norm": 0.2017381489276886,
+ "learning_rate": 0.0006,
+ "loss": 3.839737892150879,
+ "step": 1699
+ },
+ {
+ "epoch": 23.615115771079076,
+ "grad_norm": 0.2025786191225052,
+ "learning_rate": 0.0006,
+ "loss": 3.8787710666656494,
+ "step": 1700
+ },
+ {
+ "epoch": 23.629095674967235,
+ "grad_norm": 0.21394102275371552,
+ "learning_rate": 0.0006,
+ "loss": 3.824047088623047,
+ "step": 1701
+ },
+ {
+ "epoch": 23.643075578855395,
+ "grad_norm": 0.20749174058437347,
+ "learning_rate": 0.0006,
+ "loss": 3.877009153366089,
+ "step": 1702
+ },
+ {
+ "epoch": 23.657055482743555,
+ "grad_norm": 0.2132839858531952,
+ "learning_rate": 0.0006,
+ "loss": 3.844214916229248,
+ "step": 1703
+ },
+ {
+ "epoch": 23.67103538663172,
+ "grad_norm": 0.22408637404441833,
+ "learning_rate": 0.0006,
+ "loss": 3.8570785522460938,
+ "step": 1704
+ },
+ {
+ "epoch": 23.68501529051988,
+ "grad_norm": 0.2275897115468979,
+ "learning_rate": 0.0006,
+ "loss": 3.8599512577056885,
+ "step": 1705
+ },
+ {
+ "epoch": 23.698995194408038,
+ "grad_norm": 0.2230614721775055,
+ "learning_rate": 0.0006,
+ "loss": 3.86374568939209,
+ "step": 1706
+ },
+ {
+ "epoch": 23.712975098296198,
+ "grad_norm": 0.21873739361763,
+ "learning_rate": 0.0006,
+ "loss": 3.8530168533325195,
+ "step": 1707
+ },
+ {
+ "epoch": 23.72695500218436,
+ "grad_norm": 0.24418923258781433,
+ "learning_rate": 0.0006,
+ "loss": 3.8410465717315674,
+ "step": 1708
+ },
+ {
+ "epoch": 23.74093490607252,
+ "grad_norm": 0.24894575774669647,
+ "learning_rate": 0.0006,
+ "loss": 3.8386030197143555,
+ "step": 1709
+ },
+ {
+ "epoch": 23.75491480996068,
+ "grad_norm": 0.221230611205101,
+ "learning_rate": 0.0006,
+ "loss": 3.8116674423217773,
+ "step": 1710
+ },
+ {
+ "epoch": 23.76889471384884,
+ "grad_norm": 0.20560568571090698,
+ "learning_rate": 0.0006,
+ "loss": 3.8634426593780518,
+ "step": 1711
+ },
+ {
+ "epoch": 23.782874617737004,
+ "grad_norm": 0.20450648665428162,
+ "learning_rate": 0.0006,
+ "loss": 3.8690528869628906,
+ "step": 1712
+ },
+ {
+ "epoch": 23.796854521625164,
+ "grad_norm": 0.18996809422969818,
+ "learning_rate": 0.0006,
+ "loss": 3.8484325408935547,
+ "step": 1713
+ },
+ {
+ "epoch": 23.810834425513324,
+ "grad_norm": 0.20165087282657623,
+ "learning_rate": 0.0006,
+ "loss": 3.8823161125183105,
+ "step": 1714
+ },
+ {
+ "epoch": 23.824814329401484,
+ "grad_norm": 0.21149255335330963,
+ "learning_rate": 0.0006,
+ "loss": 3.8833112716674805,
+ "step": 1715
+ },
+ {
+ "epoch": 23.838794233289647,
+ "grad_norm": 0.21254824101924896,
+ "learning_rate": 0.0006,
+ "loss": 3.8414595127105713,
+ "step": 1716
+ },
+ {
+ "epoch": 23.852774137177807,
+ "grad_norm": 0.21313664317131042,
+ "learning_rate": 0.0006,
+ "loss": 3.8732268810272217,
+ "step": 1717
+ },
+ {
+ "epoch": 23.866754041065967,
+ "grad_norm": 0.21635662019252777,
+ "learning_rate": 0.0006,
+ "loss": 3.861222743988037,
+ "step": 1718
+ },
+ {
+ "epoch": 23.88073394495413,
+ "grad_norm": 0.20612190663814545,
+ "learning_rate": 0.0006,
+ "loss": 3.821854591369629,
+ "step": 1719
+ },
+ {
+ "epoch": 23.89471384884229,
+ "grad_norm": 0.1975104659795761,
+ "learning_rate": 0.0006,
+ "loss": 3.8815202713012695,
+ "step": 1720
+ },
+ {
+ "epoch": 23.90869375273045,
+ "grad_norm": 0.20893609523773193,
+ "learning_rate": 0.0006,
+ "loss": 3.8581607341766357,
+ "step": 1721
+ },
+ {
+ "epoch": 23.92267365661861,
+ "grad_norm": 0.2125461846590042,
+ "learning_rate": 0.0006,
+ "loss": 3.839498281478882,
+ "step": 1722
+ },
+ {
+ "epoch": 23.936653560506773,
+ "grad_norm": 0.19985878467559814,
+ "learning_rate": 0.0006,
+ "loss": 3.856555223464966,
+ "step": 1723
+ },
+ {
+ "epoch": 23.950633464394933,
+ "grad_norm": 0.1922348290681839,
+ "learning_rate": 0.0006,
+ "loss": 3.8956782817840576,
+ "step": 1724
+ },
+ {
+ "epoch": 23.964613368283093,
+ "grad_norm": 0.2191949337720871,
+ "learning_rate": 0.0006,
+ "loss": 3.8582406044006348,
+ "step": 1725
+ },
+ {
+ "epoch": 23.978593272171253,
+ "grad_norm": 0.2569248676300049,
+ "learning_rate": 0.0006,
+ "loss": 3.855678081512451,
+ "step": 1726
+ },
+ {
+ "epoch": 23.992573176059416,
+ "grad_norm": 0.2641172409057617,
+ "learning_rate": 0.0006,
+ "loss": 3.8426473140716553,
+ "step": 1727
+ },
+ {
+ "epoch": 24.0,
+ "grad_norm": 0.29637208580970764,
+ "learning_rate": 0.0006,
+ "loss": 3.843040704727173,
+ "step": 1728
+ },
+ {
+ "epoch": 24.0,
+ "eval_loss": 4.075617790222168,
+ "eval_runtime": 43.9795,
+ "eval_samples_per_second": 55.526,
+ "eval_steps_per_second": 3.479,
+ "step": 1728
+ },
+ {
+ "epoch": 24.01397990388816,
+ "grad_norm": 0.2804758548736572,
+ "learning_rate": 0.0006,
+ "loss": 3.819150924682617,
+ "step": 1729
+ },
+ {
+ "epoch": 24.027959807776323,
+ "grad_norm": 0.2796347141265869,
+ "learning_rate": 0.0006,
+ "loss": 3.8400537967681885,
+ "step": 1730
+ },
+ {
+ "epoch": 24.041939711664483,
+ "grad_norm": 0.28388649225234985,
+ "learning_rate": 0.0006,
+ "loss": 3.844595432281494,
+ "step": 1731
+ },
+ {
+ "epoch": 24.055919615552643,
+ "grad_norm": 0.2944681942462921,
+ "learning_rate": 0.0006,
+ "loss": 3.8048014640808105,
+ "step": 1732
+ },
+ {
+ "epoch": 24.069899519440803,
+ "grad_norm": 0.2956784665584564,
+ "learning_rate": 0.0006,
+ "loss": 3.8488049507141113,
+ "step": 1733
+ },
+ {
+ "epoch": 24.083879423328966,
+ "grad_norm": 0.2822059392929077,
+ "learning_rate": 0.0006,
+ "loss": 3.850322723388672,
+ "step": 1734
+ },
+ {
+ "epoch": 24.097859327217126,
+ "grad_norm": 0.3012927174568176,
+ "learning_rate": 0.0006,
+ "loss": 3.8748154640197754,
+ "step": 1735
+ },
+ {
+ "epoch": 24.111839231105286,
+ "grad_norm": 0.28868764638900757,
+ "learning_rate": 0.0006,
+ "loss": 3.8282783031463623,
+ "step": 1736
+ },
+ {
+ "epoch": 24.125819134993446,
+ "grad_norm": 0.277203768491745,
+ "learning_rate": 0.0006,
+ "loss": 3.8462908267974854,
+ "step": 1737
+ },
+ {
+ "epoch": 24.13979903888161,
+ "grad_norm": 0.2654508948326111,
+ "learning_rate": 0.0006,
+ "loss": 3.8043856620788574,
+ "step": 1738
+ },
+ {
+ "epoch": 24.15377894276977,
+ "grad_norm": 0.24425740540027618,
+ "learning_rate": 0.0006,
+ "loss": 3.8284308910369873,
+ "step": 1739
+ },
+ {
+ "epoch": 24.16775884665793,
+ "grad_norm": 0.24407348036766052,
+ "learning_rate": 0.0006,
+ "loss": 3.8489203453063965,
+ "step": 1740
+ },
+ {
+ "epoch": 24.18173875054609,
+ "grad_norm": 0.2387724369764328,
+ "learning_rate": 0.0006,
+ "loss": 3.8240389823913574,
+ "step": 1741
+ },
+ {
+ "epoch": 24.195718654434252,
+ "grad_norm": 0.2832290232181549,
+ "learning_rate": 0.0006,
+ "loss": 3.869053363800049,
+ "step": 1742
+ },
+ {
+ "epoch": 24.209698558322412,
+ "grad_norm": 0.26501718163490295,
+ "learning_rate": 0.0006,
+ "loss": 3.8624343872070312,
+ "step": 1743
+ },
+ {
+ "epoch": 24.22367846221057,
+ "grad_norm": 0.24234668910503387,
+ "learning_rate": 0.0006,
+ "loss": 3.823103904724121,
+ "step": 1744
+ },
+ {
+ "epoch": 24.23765836609873,
+ "grad_norm": 0.24160076677799225,
+ "learning_rate": 0.0006,
+ "loss": 3.8174376487731934,
+ "step": 1745
+ },
+ {
+ "epoch": 24.251638269986895,
+ "grad_norm": 0.2447604238986969,
+ "learning_rate": 0.0006,
+ "loss": 3.8345441818237305,
+ "step": 1746
+ },
+ {
+ "epoch": 24.265618173875055,
+ "grad_norm": 0.22864456474781036,
+ "learning_rate": 0.0006,
+ "loss": 3.833101272583008,
+ "step": 1747
+ },
+ {
+ "epoch": 24.279598077763215,
+ "grad_norm": 0.20429204404354095,
+ "learning_rate": 0.0006,
+ "loss": 3.8055219650268555,
+ "step": 1748
+ },
+ {
+ "epoch": 24.293577981651374,
+ "grad_norm": 0.21538510918617249,
+ "learning_rate": 0.0006,
+ "loss": 3.7929327487945557,
+ "step": 1749
+ },
+ {
+ "epoch": 24.307557885539538,
+ "grad_norm": 0.2189008593559265,
+ "learning_rate": 0.0006,
+ "loss": 3.852264881134033,
+ "step": 1750
+ },
+ {
+ "epoch": 24.321537789427698,
+ "grad_norm": 0.2228662073612213,
+ "learning_rate": 0.0006,
+ "loss": 3.831088066101074,
+ "step": 1751
+ },
+ {
+ "epoch": 24.335517693315857,
+ "grad_norm": 0.2039937973022461,
+ "learning_rate": 0.0006,
+ "loss": 3.8358256816864014,
+ "step": 1752
+ },
+ {
+ "epoch": 24.34949759720402,
+ "grad_norm": 0.19247715175151825,
+ "learning_rate": 0.0006,
+ "loss": 3.8077402114868164,
+ "step": 1753
+ },
+ {
+ "epoch": 24.36347750109218,
+ "grad_norm": 0.18301935493946075,
+ "learning_rate": 0.0006,
+ "loss": 3.81380033493042,
+ "step": 1754
+ },
+ {
+ "epoch": 24.37745740498034,
+ "grad_norm": 0.19325268268585205,
+ "learning_rate": 0.0006,
+ "loss": 3.8447322845458984,
+ "step": 1755
+ },
+ {
+ "epoch": 24.3914373088685,
+ "grad_norm": 0.2007269263267517,
+ "learning_rate": 0.0006,
+ "loss": 3.82779860496521,
+ "step": 1756
+ },
+ {
+ "epoch": 24.405417212756664,
+ "grad_norm": 0.20567037165164948,
+ "learning_rate": 0.0006,
+ "loss": 3.800354480743408,
+ "step": 1757
+ },
+ {
+ "epoch": 24.419397116644824,
+ "grad_norm": 0.22553028166294098,
+ "learning_rate": 0.0006,
+ "loss": 3.7910406589508057,
+ "step": 1758
+ },
+ {
+ "epoch": 24.433377020532983,
+ "grad_norm": 0.22697079181671143,
+ "learning_rate": 0.0006,
+ "loss": 3.857635974884033,
+ "step": 1759
+ },
+ {
+ "epoch": 24.447356924421143,
+ "grad_norm": 0.22090297937393188,
+ "learning_rate": 0.0006,
+ "loss": 3.8112804889678955,
+ "step": 1760
+ },
+ {
+ "epoch": 24.461336828309307,
+ "grad_norm": 0.24325518310070038,
+ "learning_rate": 0.0006,
+ "loss": 3.822084426879883,
+ "step": 1761
+ },
+ {
+ "epoch": 24.475316732197467,
+ "grad_norm": 0.2702929377555847,
+ "learning_rate": 0.0006,
+ "loss": 3.8307600021362305,
+ "step": 1762
+ },
+ {
+ "epoch": 24.489296636085626,
+ "grad_norm": 0.2699742317199707,
+ "learning_rate": 0.0006,
+ "loss": 3.8479247093200684,
+ "step": 1763
+ },
+ {
+ "epoch": 24.503276539973786,
+ "grad_norm": 0.2526061236858368,
+ "learning_rate": 0.0006,
+ "loss": 3.8615071773529053,
+ "step": 1764
+ },
+ {
+ "epoch": 24.51725644386195,
+ "grad_norm": 0.2633848190307617,
+ "learning_rate": 0.0006,
+ "loss": 3.8412697315216064,
+ "step": 1765
+ },
+ {
+ "epoch": 24.53123634775011,
+ "grad_norm": 0.2711184024810791,
+ "learning_rate": 0.0006,
+ "loss": 3.83647084236145,
+ "step": 1766
+ },
+ {
+ "epoch": 24.54521625163827,
+ "grad_norm": 0.2691243588924408,
+ "learning_rate": 0.0006,
+ "loss": 3.8489012718200684,
+ "step": 1767
+ },
+ {
+ "epoch": 24.55919615552643,
+ "grad_norm": 0.2580898404121399,
+ "learning_rate": 0.0006,
+ "loss": 3.8464407920837402,
+ "step": 1768
+ },
+ {
+ "epoch": 24.573176059414592,
+ "grad_norm": 0.21342119574546814,
+ "learning_rate": 0.0006,
+ "loss": 3.8279383182525635,
+ "step": 1769
+ },
+ {
+ "epoch": 24.587155963302752,
+ "grad_norm": 0.22102399170398712,
+ "learning_rate": 0.0006,
+ "loss": 3.841676712036133,
+ "step": 1770
+ },
+ {
+ "epoch": 24.601135867190912,
+ "grad_norm": 0.2882173955440521,
+ "learning_rate": 0.0006,
+ "loss": 3.825528383255005,
+ "step": 1771
+ },
+ {
+ "epoch": 24.615115771079076,
+ "grad_norm": 0.3403635323047638,
+ "learning_rate": 0.0006,
+ "loss": 3.8282246589660645,
+ "step": 1772
+ },
+ {
+ "epoch": 24.629095674967235,
+ "grad_norm": 0.32192692160606384,
+ "learning_rate": 0.0006,
+ "loss": 3.8411307334899902,
+ "step": 1773
+ },
+ {
+ "epoch": 24.643075578855395,
+ "grad_norm": 0.2534109055995941,
+ "learning_rate": 0.0006,
+ "loss": 3.843007802963257,
+ "step": 1774
+ },
+ {
+ "epoch": 24.657055482743555,
+ "grad_norm": 0.25483962893486023,
+ "learning_rate": 0.0006,
+ "loss": 3.848358154296875,
+ "step": 1775
+ },
+ {
+ "epoch": 24.67103538663172,
+ "grad_norm": 0.25175443291664124,
+ "learning_rate": 0.0006,
+ "loss": 3.8232598304748535,
+ "step": 1776
+ },
+ {
+ "epoch": 24.68501529051988,
+ "grad_norm": 0.20538510382175446,
+ "learning_rate": 0.0006,
+ "loss": 3.857635498046875,
+ "step": 1777
+ },
+ {
+ "epoch": 24.698995194408038,
+ "grad_norm": 0.240861177444458,
+ "learning_rate": 0.0006,
+ "loss": 3.83717679977417,
+ "step": 1778
+ },
+ {
+ "epoch": 24.712975098296198,
+ "grad_norm": 0.23646967113018036,
+ "learning_rate": 0.0006,
+ "loss": 3.81032133102417,
+ "step": 1779
+ },
+ {
+ "epoch": 24.72695500218436,
+ "grad_norm": 0.2164423167705536,
+ "learning_rate": 0.0006,
+ "loss": 3.807878255844116,
+ "step": 1780
+ },
+ {
+ "epoch": 24.74093490607252,
+ "grad_norm": 0.21160705387592316,
+ "learning_rate": 0.0006,
+ "loss": 3.870394468307495,
+ "step": 1781
+ },
+ {
+ "epoch": 24.75491480996068,
+ "grad_norm": 0.20284807682037354,
+ "learning_rate": 0.0006,
+ "loss": 3.842154026031494,
+ "step": 1782
+ },
+ {
+ "epoch": 24.76889471384884,
+ "grad_norm": 0.20738485455513,
+ "learning_rate": 0.0006,
+ "loss": 3.8347136974334717,
+ "step": 1783
+ },
+ {
+ "epoch": 24.782874617737004,
+ "grad_norm": 0.20253778994083405,
+ "learning_rate": 0.0006,
+ "loss": 3.814948320388794,
+ "step": 1784
+ },
+ {
+ "epoch": 24.796854521625164,
+ "grad_norm": 0.20567010343074799,
+ "learning_rate": 0.0006,
+ "loss": 3.8354592323303223,
+ "step": 1785
+ },
+ {
+ "epoch": 24.810834425513324,
+ "grad_norm": 0.20639720559120178,
+ "learning_rate": 0.0006,
+ "loss": 3.8336033821105957,
+ "step": 1786
+ },
+ {
+ "epoch": 24.824814329401484,
+ "grad_norm": 0.19978247582912445,
+ "learning_rate": 0.0006,
+ "loss": 3.8209140300750732,
+ "step": 1787
+ },
+ {
+ "epoch": 24.838794233289647,
+ "grad_norm": 0.20628373324871063,
+ "learning_rate": 0.0006,
+ "loss": 3.8372955322265625,
+ "step": 1788
+ },
+ {
+ "epoch": 24.852774137177807,
+ "grad_norm": 0.2266162782907486,
+ "learning_rate": 0.0006,
+ "loss": 3.850994110107422,
+ "step": 1789
+ },
+ {
+ "epoch": 24.866754041065967,
+ "grad_norm": 0.22567765414714813,
+ "learning_rate": 0.0006,
+ "loss": 3.8552165031433105,
+ "step": 1790
+ },
+ {
+ "epoch": 24.88073394495413,
+ "grad_norm": 0.228011354804039,
+ "learning_rate": 0.0006,
+ "loss": 3.8310747146606445,
+ "step": 1791
+ },
+ {
+ "epoch": 24.89471384884229,
+ "grad_norm": 0.23706914484500885,
+ "learning_rate": 0.0006,
+ "loss": 3.8369603157043457,
+ "step": 1792
+ },
+ {
+ "epoch": 24.90869375273045,
+ "grad_norm": 0.22669097781181335,
+ "learning_rate": 0.0006,
+ "loss": 3.8443825244903564,
+ "step": 1793
+ },
+ {
+ "epoch": 24.92267365661861,
+ "grad_norm": 0.2051001936197281,
+ "learning_rate": 0.0006,
+ "loss": 3.7938501834869385,
+ "step": 1794
+ },
+ {
+ "epoch": 24.936653560506773,
+ "grad_norm": 0.2091219276189804,
+ "learning_rate": 0.0006,
+ "loss": 3.8167076110839844,
+ "step": 1795
+ },
+ {
+ "epoch": 24.950633464394933,
+ "grad_norm": 0.20517204701900482,
+ "learning_rate": 0.0006,
+ "loss": 3.852670669555664,
+ "step": 1796
+ },
+ {
+ "epoch": 24.964613368283093,
+ "grad_norm": 0.19916993379592896,
+ "learning_rate": 0.0006,
+ "loss": 3.8410873413085938,
+ "step": 1797
+ },
+ {
+ "epoch": 24.978593272171253,
+ "grad_norm": 0.21313942968845367,
+ "learning_rate": 0.0006,
+ "loss": 3.8383948802948,
+ "step": 1798
+ },
+ {
+ "epoch": 24.992573176059416,
+ "grad_norm": 0.21042990684509277,
+ "learning_rate": 0.0006,
+ "loss": 3.8623173236846924,
+ "step": 1799
+ },
+ {
+ "epoch": 25.0,
+ "grad_norm": 0.23052045702934265,
+ "learning_rate": 0.0006,
+ "loss": 3.8646674156188965,
+ "step": 1800
+ },
+ {
+ "epoch": 25.0,
+ "eval_loss": 4.081690311431885,
+ "eval_runtime": 44.036,
+ "eval_samples_per_second": 55.455,
+ "eval_steps_per_second": 3.474,
+ "step": 1800
+ },
+ {
+ "epoch": 25.01397990388816,
+ "grad_norm": 0.22068746387958527,
+ "learning_rate": 0.0006,
+ "loss": 3.8002820014953613,
+ "step": 1801
+ },
+ {
+ "epoch": 25.027959807776323,
+ "grad_norm": 0.20711193978786469,
+ "learning_rate": 0.0006,
+ "loss": 3.787785768508911,
+ "step": 1802
+ },
+ {
+ "epoch": 25.041939711664483,
+ "grad_norm": 0.20659677684307098,
+ "learning_rate": 0.0006,
+ "loss": 3.80245304107666,
+ "step": 1803
+ },
+ {
+ "epoch": 25.055919615552643,
+ "grad_norm": 0.22891797125339508,
+ "learning_rate": 0.0006,
+ "loss": 3.784543514251709,
+ "step": 1804
+ },
+ {
+ "epoch": 25.069899519440803,
+ "grad_norm": 0.23679181933403015,
+ "learning_rate": 0.0006,
+ "loss": 3.8311429023742676,
+ "step": 1805
+ },
+ {
+ "epoch": 25.083879423328966,
+ "grad_norm": 0.2548872232437134,
+ "learning_rate": 0.0006,
+ "loss": 3.8047211170196533,
+ "step": 1806
+ },
+ {
+ "epoch": 25.097859327217126,
+ "grad_norm": 0.26181501150131226,
+ "learning_rate": 0.0006,
+ "loss": 3.837508201599121,
+ "step": 1807
+ },
+ {
+ "epoch": 25.111839231105286,
+ "grad_norm": 0.2548452913761139,
+ "learning_rate": 0.0006,
+ "loss": 3.831544876098633,
+ "step": 1808
+ },
+ {
+ "epoch": 25.125819134993446,
+ "grad_norm": 0.26177605986595154,
+ "learning_rate": 0.0006,
+ "loss": 3.805346965789795,
+ "step": 1809
+ },
+ {
+ "epoch": 25.13979903888161,
+ "grad_norm": 0.2608112394809723,
+ "learning_rate": 0.0006,
+ "loss": 3.8040924072265625,
+ "step": 1810
+ },
+ {
+ "epoch": 25.15377894276977,
+ "grad_norm": 0.2586037814617157,
+ "learning_rate": 0.0006,
+ "loss": 3.8102216720581055,
+ "step": 1811
+ },
+ {
+ "epoch": 25.16775884665793,
+ "grad_norm": 0.26258161664009094,
+ "learning_rate": 0.0006,
+ "loss": 3.8152549266815186,
+ "step": 1812
+ },
+ {
+ "epoch": 25.18173875054609,
+ "grad_norm": 0.2803022265434265,
+ "learning_rate": 0.0006,
+ "loss": 3.82576584815979,
+ "step": 1813
+ },
+ {
+ "epoch": 25.195718654434252,
+ "grad_norm": 0.2618221938610077,
+ "learning_rate": 0.0006,
+ "loss": 3.817220687866211,
+ "step": 1814
+ },
+ {
+ "epoch": 25.209698558322412,
+ "grad_norm": 0.23283469676971436,
+ "learning_rate": 0.0006,
+ "loss": 3.7999041080474854,
+ "step": 1815
+ },
+ {
+ "epoch": 25.22367846221057,
+ "grad_norm": 0.20110781490802765,
+ "learning_rate": 0.0006,
+ "loss": 3.783228874206543,
+ "step": 1816
+ },
+ {
+ "epoch": 25.23765836609873,
+ "grad_norm": 0.2231830358505249,
+ "learning_rate": 0.0006,
+ "loss": 3.8032913208007812,
+ "step": 1817
+ },
+ {
+ "epoch": 25.251638269986895,
+ "grad_norm": 0.21807286143302917,
+ "learning_rate": 0.0006,
+ "loss": 3.817028045654297,
+ "step": 1818
+ },
+ {
+ "epoch": 25.265618173875055,
+ "grad_norm": 0.22710664570331573,
+ "learning_rate": 0.0006,
+ "loss": 3.8201727867126465,
+ "step": 1819
+ },
+ {
+ "epoch": 25.279598077763215,
+ "grad_norm": 0.22299866378307343,
+ "learning_rate": 0.0006,
+ "loss": 3.8198719024658203,
+ "step": 1820
+ },
+ {
+ "epoch": 25.293577981651374,
+ "grad_norm": 0.20886564254760742,
+ "learning_rate": 0.0006,
+ "loss": 3.792414665222168,
+ "step": 1821
+ },
+ {
+ "epoch": 25.307557885539538,
+ "grad_norm": 0.20887352526187897,
+ "learning_rate": 0.0006,
+ "loss": 3.7634057998657227,
+ "step": 1822
+ },
+ {
+ "epoch": 25.321537789427698,
+ "grad_norm": 0.24560041725635529,
+ "learning_rate": 0.0006,
+ "loss": 3.79359769821167,
+ "step": 1823
+ },
+ {
+ "epoch": 25.335517693315857,
+ "grad_norm": 0.22767415642738342,
+ "learning_rate": 0.0006,
+ "loss": 3.8313469886779785,
+ "step": 1824
+ },
+ {
+ "epoch": 25.34949759720402,
+ "grad_norm": 0.21617893874645233,
+ "learning_rate": 0.0006,
+ "loss": 3.77200984954834,
+ "step": 1825
+ },
+ {
+ "epoch": 25.36347750109218,
+ "grad_norm": 0.21010833978652954,
+ "learning_rate": 0.0006,
+ "loss": 3.8042140007019043,
+ "step": 1826
+ },
+ {
+ "epoch": 25.37745740498034,
+ "grad_norm": 0.24087965488433838,
+ "learning_rate": 0.0006,
+ "loss": 3.8260979652404785,
+ "step": 1827
+ },
+ {
+ "epoch": 25.3914373088685,
+ "grad_norm": 0.2735275626182556,
+ "learning_rate": 0.0006,
+ "loss": 3.8499274253845215,
+ "step": 1828
+ },
+ {
+ "epoch": 25.405417212756664,
+ "grad_norm": 0.24831001460552216,
+ "learning_rate": 0.0006,
+ "loss": 3.8146448135375977,
+ "step": 1829
+ },
+ {
+ "epoch": 25.419397116644824,
+ "grad_norm": 0.21822866797447205,
+ "learning_rate": 0.0006,
+ "loss": 3.7845146656036377,
+ "step": 1830
+ },
+ {
+ "epoch": 25.433377020532983,
+ "grad_norm": 0.19948813319206238,
+ "learning_rate": 0.0006,
+ "loss": 3.823997974395752,
+ "step": 1831
+ },
+ {
+ "epoch": 25.447356924421143,
+ "grad_norm": 0.18342702090740204,
+ "learning_rate": 0.0006,
+ "loss": 3.8201193809509277,
+ "step": 1832
+ },
+ {
+ "epoch": 25.461336828309307,
+ "grad_norm": 0.19377560913562775,
+ "learning_rate": 0.0006,
+ "loss": 3.8069632053375244,
+ "step": 1833
+ },
+ {
+ "epoch": 25.475316732197467,
+ "grad_norm": 0.22348709404468536,
+ "learning_rate": 0.0006,
+ "loss": 3.7918643951416016,
+ "step": 1834
+ },
+ {
+ "epoch": 25.489296636085626,
+ "grad_norm": 0.24484702944755554,
+ "learning_rate": 0.0006,
+ "loss": 3.85046124458313,
+ "step": 1835
+ },
+ {
+ "epoch": 25.503276539973786,
+ "grad_norm": 0.2493520826101303,
+ "learning_rate": 0.0006,
+ "loss": 3.8043932914733887,
+ "step": 1836
+ },
+ {
+ "epoch": 25.51725644386195,
+ "grad_norm": 0.21509641408920288,
+ "learning_rate": 0.0006,
+ "loss": 3.8064627647399902,
+ "step": 1837
+ },
+ {
+ "epoch": 25.53123634775011,
+ "grad_norm": 0.21912820637226105,
+ "learning_rate": 0.0006,
+ "loss": 3.850588321685791,
+ "step": 1838
+ },
+ {
+ "epoch": 25.54521625163827,
+ "grad_norm": 0.28400927782058716,
+ "learning_rate": 0.0006,
+ "loss": 3.79818058013916,
+ "step": 1839
+ },
+ {
+ "epoch": 25.55919615552643,
+ "grad_norm": 0.32193225622177124,
+ "learning_rate": 0.0006,
+ "loss": 3.836275815963745,
+ "step": 1840
+ },
+ {
+ "epoch": 25.573176059414592,
+ "grad_norm": 0.2902325987815857,
+ "learning_rate": 0.0006,
+ "loss": 3.8080005645751953,
+ "step": 1841
+ },
+ {
+ "epoch": 25.587155963302752,
+ "grad_norm": 0.21759532392024994,
+ "learning_rate": 0.0006,
+ "loss": 3.8233771324157715,
+ "step": 1842
+ },
+ {
+ "epoch": 25.601135867190912,
+ "grad_norm": 0.19645214080810547,
+ "learning_rate": 0.0006,
+ "loss": 3.838881015777588,
+ "step": 1843
+ },
+ {
+ "epoch": 25.615115771079076,
+ "grad_norm": 0.19322903454303741,
+ "learning_rate": 0.0006,
+ "loss": 3.7870054244995117,
+ "step": 1844
+ },
+ {
+ "epoch": 25.629095674967235,
+ "grad_norm": 0.2074001580476761,
+ "learning_rate": 0.0006,
+ "loss": 3.8239974975585938,
+ "step": 1845
+ },
+ {
+ "epoch": 25.643075578855395,
+ "grad_norm": 0.2166101336479187,
+ "learning_rate": 0.0006,
+ "loss": 3.8290855884552,
+ "step": 1846
+ },
+ {
+ "epoch": 25.657055482743555,
+ "grad_norm": 0.23738539218902588,
+ "learning_rate": 0.0006,
+ "loss": 3.7993364334106445,
+ "step": 1847
+ },
+ {
+ "epoch": 25.67103538663172,
+ "grad_norm": 0.23882314562797546,
+ "learning_rate": 0.0006,
+ "loss": 3.802586078643799,
+ "step": 1848
+ },
+ {
+ "epoch": 25.68501529051988,
+ "grad_norm": 0.24168142676353455,
+ "learning_rate": 0.0006,
+ "loss": 3.8303489685058594,
+ "step": 1849
+ },
+ {
+ "epoch": 25.698995194408038,
+ "grad_norm": 0.22423343360424042,
+ "learning_rate": 0.0006,
+ "loss": 3.836228370666504,
+ "step": 1850
+ },
+ {
+ "epoch": 25.712975098296198,
+ "grad_norm": 0.23816974461078644,
+ "learning_rate": 0.0006,
+ "loss": 3.8380274772644043,
+ "step": 1851
+ },
+ {
+ "epoch": 25.72695500218436,
+ "grad_norm": 0.22465108335018158,
+ "learning_rate": 0.0006,
+ "loss": 3.8496339321136475,
+ "step": 1852
+ },
+ {
+ "epoch": 25.74093490607252,
+ "grad_norm": 0.20792442560195923,
+ "learning_rate": 0.0006,
+ "loss": 3.797853946685791,
+ "step": 1853
+ },
+ {
+ "epoch": 25.75491480996068,
+ "grad_norm": 0.20770230889320374,
+ "learning_rate": 0.0006,
+ "loss": 3.842322826385498,
+ "step": 1854
+ },
+ {
+ "epoch": 25.76889471384884,
+ "grad_norm": 0.1928192526102066,
+ "learning_rate": 0.0006,
+ "loss": 3.836540699005127,
+ "step": 1855
+ },
+ {
+ "epoch": 25.782874617737004,
+ "grad_norm": 0.19045178592205048,
+ "learning_rate": 0.0006,
+ "loss": 3.7758889198303223,
+ "step": 1856
+ },
+ {
+ "epoch": 25.796854521625164,
+ "grad_norm": 0.205548495054245,
+ "learning_rate": 0.0006,
+ "loss": 3.8244709968566895,
+ "step": 1857
+ },
+ {
+ "epoch": 25.810834425513324,
+ "grad_norm": 0.20968270301818848,
+ "learning_rate": 0.0006,
+ "loss": 3.8376216888427734,
+ "step": 1858
+ },
+ {
+ "epoch": 25.824814329401484,
+ "grad_norm": 0.18917354941368103,
+ "learning_rate": 0.0006,
+ "loss": 3.8497915267944336,
+ "step": 1859
+ },
+ {
+ "epoch": 25.838794233289647,
+ "grad_norm": 0.2050701528787613,
+ "learning_rate": 0.0006,
+ "loss": 3.819628953933716,
+ "step": 1860
+ },
+ {
+ "epoch": 25.852774137177807,
+ "grad_norm": 0.1981319785118103,
+ "learning_rate": 0.0006,
+ "loss": 3.8007922172546387,
+ "step": 1861
+ },
+ {
+ "epoch": 25.866754041065967,
+ "grad_norm": 0.19055861234664917,
+ "learning_rate": 0.0006,
+ "loss": 3.8304519653320312,
+ "step": 1862
+ },
+ {
+ "epoch": 25.88073394495413,
+ "grad_norm": 0.19255517423152924,
+ "learning_rate": 0.0006,
+ "loss": 3.833280563354492,
+ "step": 1863
+ },
+ {
+ "epoch": 25.89471384884229,
+ "grad_norm": 0.19059430062770844,
+ "learning_rate": 0.0006,
+ "loss": 3.813796281814575,
+ "step": 1864
+ },
+ {
+ "epoch": 25.90869375273045,
+ "grad_norm": 0.18581309914588928,
+ "learning_rate": 0.0006,
+ "loss": 3.8211798667907715,
+ "step": 1865
+ },
+ {
+ "epoch": 25.92267365661861,
+ "grad_norm": 0.20181003212928772,
+ "learning_rate": 0.0006,
+ "loss": 3.8380484580993652,
+ "step": 1866
+ },
+ {
+ "epoch": 25.936653560506773,
+ "grad_norm": 0.22334498167037964,
+ "learning_rate": 0.0006,
+ "loss": 3.8294434547424316,
+ "step": 1867
+ },
+ {
+ "epoch": 25.950633464394933,
+ "grad_norm": 0.20456703007221222,
+ "learning_rate": 0.0006,
+ "loss": 3.819223642349243,
+ "step": 1868
+ },
+ {
+ "epoch": 25.964613368283093,
+ "grad_norm": 0.1885606348514557,
+ "learning_rate": 0.0006,
+ "loss": 3.8110103607177734,
+ "step": 1869
+ },
+ {
+ "epoch": 25.978593272171253,
+ "grad_norm": 0.18862110376358032,
+ "learning_rate": 0.0006,
+ "loss": 3.788691997528076,
+ "step": 1870
+ },
+ {
+ "epoch": 25.992573176059416,
+ "grad_norm": 0.19802744686603546,
+ "learning_rate": 0.0006,
+ "loss": 3.8423619270324707,
+ "step": 1871
+ },
+ {
+ "epoch": 26.0,
+ "grad_norm": 0.23762032389640808,
+ "learning_rate": 0.0006,
+ "loss": 3.7848567962646484,
+ "step": 1872
+ },
+ {
+ "epoch": 26.0,
+ "eval_loss": 4.054965019226074,
+ "eval_runtime": 44.2423,
+ "eval_samples_per_second": 55.196,
+ "eval_steps_per_second": 3.458,
+ "step": 1872
+ },
+ {
+ "epoch": 26.01397990388816,
+ "grad_norm": 0.21533054113388062,
+ "learning_rate": 0.0006,
+ "loss": 3.8123154640197754,
+ "step": 1873
+ },
+ {
+ "epoch": 26.027959807776323,
+ "grad_norm": 0.25094854831695557,
+ "learning_rate": 0.0006,
+ "loss": 3.7847447395324707,
+ "step": 1874
+ },
+ {
+ "epoch": 26.041939711664483,
+ "grad_norm": 0.24042077362537384,
+ "learning_rate": 0.0006,
+ "loss": 3.8033599853515625,
+ "step": 1875
+ },
+ {
+ "epoch": 26.055919615552643,
+ "grad_norm": 0.2425149381160736,
+ "learning_rate": 0.0006,
+ "loss": 3.7828550338745117,
+ "step": 1876
+ },
+ {
+ "epoch": 26.069899519440803,
+ "grad_norm": 0.2300514280796051,
+ "learning_rate": 0.0006,
+ "loss": 3.750882148742676,
+ "step": 1877
+ },
+ {
+ "epoch": 26.083879423328966,
+ "grad_norm": 0.2513943612575531,
+ "learning_rate": 0.0006,
+ "loss": 3.800323963165283,
+ "step": 1878
+ },
+ {
+ "epoch": 26.097859327217126,
+ "grad_norm": 0.2536966800689697,
+ "learning_rate": 0.0006,
+ "loss": 3.8198962211608887,
+ "step": 1879
+ },
+ {
+ "epoch": 26.111839231105286,
+ "grad_norm": 0.24483931064605713,
+ "learning_rate": 0.0006,
+ "loss": 3.825563907623291,
+ "step": 1880
+ },
+ {
+ "epoch": 26.125819134993446,
+ "grad_norm": 0.2502584755420685,
+ "learning_rate": 0.0006,
+ "loss": 3.78756046295166,
+ "step": 1881
+ },
+ {
+ "epoch": 26.13979903888161,
+ "grad_norm": 0.2695745527744293,
+ "learning_rate": 0.0006,
+ "loss": 3.8205409049987793,
+ "step": 1882
+ },
+ {
+ "epoch": 26.15377894276977,
+ "grad_norm": 0.2873472273349762,
+ "learning_rate": 0.0006,
+ "loss": 3.7880778312683105,
+ "step": 1883
+ },
+ {
+ "epoch": 26.16775884665793,
+ "grad_norm": 0.28609949350357056,
+ "learning_rate": 0.0006,
+ "loss": 3.788517951965332,
+ "step": 1884
+ },
+ {
+ "epoch": 26.18173875054609,
+ "grad_norm": 0.28352269530296326,
+ "learning_rate": 0.0006,
+ "loss": 3.778015613555908,
+ "step": 1885
+ },
+ {
+ "epoch": 26.195718654434252,
+ "grad_norm": 0.27055084705352783,
+ "learning_rate": 0.0006,
+ "loss": 3.7857203483581543,
+ "step": 1886
+ },
+ {
+ "epoch": 26.209698558322412,
+ "grad_norm": 0.255647748708725,
+ "learning_rate": 0.0006,
+ "loss": 3.791355609893799,
+ "step": 1887
+ },
+ {
+ "epoch": 26.22367846221057,
+ "grad_norm": 0.22624439001083374,
+ "learning_rate": 0.0006,
+ "loss": 3.7624831199645996,
+ "step": 1888
+ },
+ {
+ "epoch": 26.23765836609873,
+ "grad_norm": 0.2283596396446228,
+ "learning_rate": 0.0006,
+ "loss": 3.8052897453308105,
+ "step": 1889
+ },
+ {
+ "epoch": 26.251638269986895,
+ "grad_norm": 0.2336510866880417,
+ "learning_rate": 0.0006,
+ "loss": 3.789015054702759,
+ "step": 1890
+ },
+ {
+ "epoch": 26.265618173875055,
+ "grad_norm": 0.24107608199119568,
+ "learning_rate": 0.0006,
+ "loss": 3.756551742553711,
+ "step": 1891
+ },
+ {
+ "epoch": 26.279598077763215,
+ "grad_norm": 0.22438564896583557,
+ "learning_rate": 0.0006,
+ "loss": 3.797952651977539,
+ "step": 1892
+ },
+ {
+ "epoch": 26.293577981651374,
+ "grad_norm": 0.24594341218471527,
+ "learning_rate": 0.0006,
+ "loss": 3.7925708293914795,
+ "step": 1893
+ },
+ {
+ "epoch": 26.307557885539538,
+ "grad_norm": 0.23314352333545685,
+ "learning_rate": 0.0006,
+ "loss": 3.792447328567505,
+ "step": 1894
+ },
+ {
+ "epoch": 26.321537789427698,
+ "grad_norm": 0.20870383083820343,
+ "learning_rate": 0.0006,
+ "loss": 3.7888340950012207,
+ "step": 1895
+ },
+ {
+ "epoch": 26.335517693315857,
+ "grad_norm": 0.206504687666893,
+ "learning_rate": 0.0006,
+ "loss": 3.7856602668762207,
+ "step": 1896
+ },
+ {
+ "epoch": 26.34949759720402,
+ "grad_norm": 0.20193266868591309,
+ "learning_rate": 0.0006,
+ "loss": 3.810800552368164,
+ "step": 1897
+ },
+ {
+ "epoch": 26.36347750109218,
+ "grad_norm": 0.2143869698047638,
+ "learning_rate": 0.0006,
+ "loss": 3.818742275238037,
+ "step": 1898
+ },
+ {
+ "epoch": 26.37745740498034,
+ "grad_norm": 0.21388593316078186,
+ "learning_rate": 0.0006,
+ "loss": 3.7576632499694824,
+ "step": 1899
+ },
+ {
+ "epoch": 26.3914373088685,
+ "grad_norm": 0.1933414787054062,
+ "learning_rate": 0.0006,
+ "loss": 3.802579879760742,
+ "step": 1900
+ },
+ {
+ "epoch": 26.405417212756664,
+ "grad_norm": 0.18144549429416656,
+ "learning_rate": 0.0006,
+ "loss": 3.7830452919006348,
+ "step": 1901
+ },
+ {
+ "epoch": 26.419397116644824,
+ "grad_norm": 0.20027601718902588,
+ "learning_rate": 0.0006,
+ "loss": 3.8112521171569824,
+ "step": 1902
+ },
+ {
+ "epoch": 26.433377020532983,
+ "grad_norm": 0.19402910768985748,
+ "learning_rate": 0.0006,
+ "loss": 3.778012990951538,
+ "step": 1903
+ },
+ {
+ "epoch": 26.447356924421143,
+ "grad_norm": 0.19020743668079376,
+ "learning_rate": 0.0006,
+ "loss": 3.823355197906494,
+ "step": 1904
+ },
+ {
+ "epoch": 26.461336828309307,
+ "grad_norm": 0.1885242760181427,
+ "learning_rate": 0.0006,
+ "loss": 3.782108783721924,
+ "step": 1905
+ },
+ {
+ "epoch": 26.475316732197467,
+ "grad_norm": 0.2024235874414444,
+ "learning_rate": 0.0006,
+ "loss": 3.810448408126831,
+ "step": 1906
+ },
+ {
+ "epoch": 26.489296636085626,
+ "grad_norm": 0.21408027410507202,
+ "learning_rate": 0.0006,
+ "loss": 3.8185606002807617,
+ "step": 1907
+ },
+ {
+ "epoch": 26.503276539973786,
+ "grad_norm": 0.22810906171798706,
+ "learning_rate": 0.0006,
+ "loss": 3.8052706718444824,
+ "step": 1908
+ },
+ {
+ "epoch": 26.51725644386195,
+ "grad_norm": 0.21328197419643402,
+ "learning_rate": 0.0006,
+ "loss": 3.7858219146728516,
+ "step": 1909
+ },
+ {
+ "epoch": 26.53123634775011,
+ "grad_norm": 0.20843173563480377,
+ "learning_rate": 0.0006,
+ "loss": 3.8069310188293457,
+ "step": 1910
+ },
+ {
+ "epoch": 26.54521625163827,
+ "grad_norm": 0.2072986662387848,
+ "learning_rate": 0.0006,
+ "loss": 3.794975996017456,
+ "step": 1911
+ },
+ {
+ "epoch": 26.55919615552643,
+ "grad_norm": 0.2203216850757599,
+ "learning_rate": 0.0006,
+ "loss": 3.8070101737976074,
+ "step": 1912
+ },
+ {
+ "epoch": 26.573176059414592,
+ "grad_norm": 0.23449191451072693,
+ "learning_rate": 0.0006,
+ "loss": 3.828695774078369,
+ "step": 1913
+ },
+ {
+ "epoch": 26.587155963302752,
+ "grad_norm": 0.2222008854150772,
+ "learning_rate": 0.0006,
+ "loss": 3.781275749206543,
+ "step": 1914
+ },
+ {
+ "epoch": 26.601135867190912,
+ "grad_norm": 0.22328314185142517,
+ "learning_rate": 0.0006,
+ "loss": 3.7953736782073975,
+ "step": 1915
+ },
+ {
+ "epoch": 26.615115771079076,
+ "grad_norm": 0.2377961128950119,
+ "learning_rate": 0.0006,
+ "loss": 3.8428916931152344,
+ "step": 1916
+ },
+ {
+ "epoch": 26.629095674967235,
+ "grad_norm": 0.2546147108078003,
+ "learning_rate": 0.0006,
+ "loss": 3.7940590381622314,
+ "step": 1917
+ },
+ {
+ "epoch": 26.643075578855395,
+ "grad_norm": 0.24234509468078613,
+ "learning_rate": 0.0006,
+ "loss": 3.802234172821045,
+ "step": 1918
+ },
+ {
+ "epoch": 26.657055482743555,
+ "grad_norm": 0.21294651925563812,
+ "learning_rate": 0.0006,
+ "loss": 3.8159232139587402,
+ "step": 1919
+ },
+ {
+ "epoch": 26.67103538663172,
+ "grad_norm": 0.20008964836597443,
+ "learning_rate": 0.0006,
+ "loss": 3.796949863433838,
+ "step": 1920
+ },
+ {
+ "epoch": 26.68501529051988,
+ "grad_norm": 0.21031023561954498,
+ "learning_rate": 0.0006,
+ "loss": 3.8015570640563965,
+ "step": 1921
+ },
+ {
+ "epoch": 26.698995194408038,
+ "grad_norm": 0.2185603827238083,
+ "learning_rate": 0.0006,
+ "loss": 3.8022537231445312,
+ "step": 1922
+ },
+ {
+ "epoch": 26.712975098296198,
+ "grad_norm": 0.22957198321819305,
+ "learning_rate": 0.0006,
+ "loss": 3.7859907150268555,
+ "step": 1923
+ },
+ {
+ "epoch": 26.72695500218436,
+ "grad_norm": 0.23779156804084778,
+ "learning_rate": 0.0006,
+ "loss": 3.830345630645752,
+ "step": 1924
+ },
+ {
+ "epoch": 26.74093490607252,
+ "grad_norm": 0.23577193915843964,
+ "learning_rate": 0.0006,
+ "loss": 3.777338981628418,
+ "step": 1925
+ },
+ {
+ "epoch": 26.75491480996068,
+ "grad_norm": 0.2521933913230896,
+ "learning_rate": 0.0006,
+ "loss": 3.8215396404266357,
+ "step": 1926
+ },
+ {
+ "epoch": 26.76889471384884,
+ "grad_norm": 0.25050726532936096,
+ "learning_rate": 0.0006,
+ "loss": 3.817509651184082,
+ "step": 1927
+ },
+ {
+ "epoch": 26.782874617737004,
+ "grad_norm": 0.24442453682422638,
+ "learning_rate": 0.0006,
+ "loss": 3.8033013343811035,
+ "step": 1928
+ },
+ {
+ "epoch": 26.796854521625164,
+ "grad_norm": 0.2280828058719635,
+ "learning_rate": 0.0006,
+ "loss": 3.798625946044922,
+ "step": 1929
+ },
+ {
+ "epoch": 26.810834425513324,
+ "grad_norm": 0.23072117567062378,
+ "learning_rate": 0.0006,
+ "loss": 3.8109097480773926,
+ "step": 1930
+ },
+ {
+ "epoch": 26.824814329401484,
+ "grad_norm": 0.2690806984901428,
+ "learning_rate": 0.0006,
+ "loss": 3.7707223892211914,
+ "step": 1931
+ },
+ {
+ "epoch": 26.838794233289647,
+ "grad_norm": 0.24973517656326294,
+ "learning_rate": 0.0006,
+ "loss": 3.7788357734680176,
+ "step": 1932
+ },
+ {
+ "epoch": 26.852774137177807,
+ "grad_norm": 0.24221451580524445,
+ "learning_rate": 0.0006,
+ "loss": 3.8083114624023438,
+ "step": 1933
+ },
+ {
+ "epoch": 26.866754041065967,
+ "grad_norm": 0.23499037325382233,
+ "learning_rate": 0.0006,
+ "loss": 3.845512866973877,
+ "step": 1934
+ },
+ {
+ "epoch": 26.88073394495413,
+ "grad_norm": 0.2172643095254898,
+ "learning_rate": 0.0006,
+ "loss": 3.8171584606170654,
+ "step": 1935
+ },
+ {
+ "epoch": 26.89471384884229,
+ "grad_norm": 0.19935013353824615,
+ "learning_rate": 0.0006,
+ "loss": 3.808596611022949,
+ "step": 1936
+ },
+ {
+ "epoch": 26.90869375273045,
+ "grad_norm": 0.2077745944261551,
+ "learning_rate": 0.0006,
+ "loss": 3.842836856842041,
+ "step": 1937
+ },
+ {
+ "epoch": 26.92267365661861,
+ "grad_norm": 0.20017282664775848,
+ "learning_rate": 0.0006,
+ "loss": 3.791734457015991,
+ "step": 1938
+ },
+ {
+ "epoch": 26.936653560506773,
+ "grad_norm": 0.2082037627696991,
+ "learning_rate": 0.0006,
+ "loss": 3.7987842559814453,
+ "step": 1939
+ },
+ {
+ "epoch": 26.950633464394933,
+ "grad_norm": 0.21100632846355438,
+ "learning_rate": 0.0006,
+ "loss": 3.8033156394958496,
+ "step": 1940
+ },
+ {
+ "epoch": 26.964613368283093,
+ "grad_norm": 0.2091331034898758,
+ "learning_rate": 0.0006,
+ "loss": 3.8250908851623535,
+ "step": 1941
+ },
+ {
+ "epoch": 26.978593272171253,
+ "grad_norm": 0.19728544354438782,
+ "learning_rate": 0.0006,
+ "loss": 3.7934365272521973,
+ "step": 1942
+ },
+ {
+ "epoch": 26.992573176059416,
+ "grad_norm": 0.19266465306282043,
+ "learning_rate": 0.0006,
+ "loss": 3.8095879554748535,
+ "step": 1943
+ },
+ {
+ "epoch": 27.0,
+ "grad_norm": 0.2264554500579834,
+ "learning_rate": 0.0006,
+ "loss": 3.840135335922241,
+ "step": 1944
+ },
+ {
+ "epoch": 27.0,
+ "eval_loss": 4.046233654022217,
+ "eval_runtime": 44.0648,
+ "eval_samples_per_second": 55.418,
+ "eval_steps_per_second": 3.472,
+ "step": 1944
+ },
+ {
+ "epoch": 27.01397990388816,
+ "grad_norm": 0.24101831018924713,
+ "learning_rate": 0.0006,
+ "loss": 3.7463197708129883,
+ "step": 1945
+ },
+ {
+ "epoch": 27.027959807776323,
+ "grad_norm": 0.2917300760746002,
+ "learning_rate": 0.0006,
+ "loss": 3.769083261489868,
+ "step": 1946
+ },
+ {
+ "epoch": 27.041939711664483,
+ "grad_norm": 0.30864080786705017,
+ "learning_rate": 0.0006,
+ "loss": 3.7774248123168945,
+ "step": 1947
+ },
+ {
+ "epoch": 27.055919615552643,
+ "grad_norm": 0.28574317693710327,
+ "learning_rate": 0.0006,
+ "loss": 3.759530544281006,
+ "step": 1948
+ },
+ {
+ "epoch": 27.069899519440803,
+ "grad_norm": 0.23381628096103668,
+ "learning_rate": 0.0006,
+ "loss": 3.764347791671753,
+ "step": 1949
+ },
+ {
+ "epoch": 27.083879423328966,
+ "grad_norm": 0.2717961072921753,
+ "learning_rate": 0.0006,
+ "loss": 3.785306692123413,
+ "step": 1950
+ },
+ {
+ "epoch": 27.097859327217126,
+ "grad_norm": 0.2753375470638275,
+ "learning_rate": 0.0006,
+ "loss": 3.7511696815490723,
+ "step": 1951
+ },
+ {
+ "epoch": 27.111839231105286,
+ "grad_norm": 0.260250061750412,
+ "learning_rate": 0.0006,
+ "loss": 3.7775721549987793,
+ "step": 1952
+ },
+ {
+ "epoch": 27.125819134993446,
+ "grad_norm": 0.2462741732597351,
+ "learning_rate": 0.0006,
+ "loss": 3.775203227996826,
+ "step": 1953
+ },
+ {
+ "epoch": 27.13979903888161,
+ "grad_norm": 0.23599569499492645,
+ "learning_rate": 0.0006,
+ "loss": 3.7580947875976562,
+ "step": 1954
+ },
+ {
+ "epoch": 27.15377894276977,
+ "grad_norm": 0.21749968826770782,
+ "learning_rate": 0.0006,
+ "loss": 3.778254985809326,
+ "step": 1955
+ },
+ {
+ "epoch": 27.16775884665793,
+ "grad_norm": 0.22210343182086945,
+ "learning_rate": 0.0006,
+ "loss": 3.734727144241333,
+ "step": 1956
+ },
+ {
+ "epoch": 27.18173875054609,
+ "grad_norm": 0.23376141488552094,
+ "learning_rate": 0.0006,
+ "loss": 3.7892181873321533,
+ "step": 1957
+ },
+ {
+ "epoch": 27.195718654434252,
+ "grad_norm": 0.21751847863197327,
+ "learning_rate": 0.0006,
+ "loss": 3.801621913909912,
+ "step": 1958
+ },
+ {
+ "epoch": 27.209698558322412,
+ "grad_norm": 0.22995133697986603,
+ "learning_rate": 0.0006,
+ "loss": 3.8031363487243652,
+ "step": 1959
+ },
+ {
+ "epoch": 27.22367846221057,
+ "grad_norm": 0.22716350853443146,
+ "learning_rate": 0.0006,
+ "loss": 3.7591521739959717,
+ "step": 1960
+ },
+ {
+ "epoch": 27.23765836609873,
+ "grad_norm": 0.20819596946239471,
+ "learning_rate": 0.0006,
+ "loss": 3.7988929748535156,
+ "step": 1961
+ },
+ {
+ "epoch": 27.251638269986895,
+ "grad_norm": 0.19861504435539246,
+ "learning_rate": 0.0006,
+ "loss": 3.7752838134765625,
+ "step": 1962
+ },
+ {
+ "epoch": 27.265618173875055,
+ "grad_norm": 0.1959371268749237,
+ "learning_rate": 0.0006,
+ "loss": 3.7707290649414062,
+ "step": 1963
+ },
+ {
+ "epoch": 27.279598077763215,
+ "grad_norm": 0.18772225081920624,
+ "learning_rate": 0.0006,
+ "loss": 3.7714555263519287,
+ "step": 1964
+ },
+ {
+ "epoch": 27.293577981651374,
+ "grad_norm": 0.20839282870292664,
+ "learning_rate": 0.0006,
+ "loss": 3.7857258319854736,
+ "step": 1965
+ },
+ {
+ "epoch": 27.307557885539538,
+ "grad_norm": 0.22521957755088806,
+ "learning_rate": 0.0006,
+ "loss": 3.776909351348877,
+ "step": 1966
+ },
+ {
+ "epoch": 27.321537789427698,
+ "grad_norm": 0.19533076882362366,
+ "learning_rate": 0.0006,
+ "loss": 3.8152523040771484,
+ "step": 1967
+ },
+ {
+ "epoch": 27.335517693315857,
+ "grad_norm": 0.18678881227970123,
+ "learning_rate": 0.0006,
+ "loss": 3.751555919647217,
+ "step": 1968
+ },
+ {
+ "epoch": 27.34949759720402,
+ "grad_norm": 0.18257129192352295,
+ "learning_rate": 0.0006,
+ "loss": 3.7701754570007324,
+ "step": 1969
+ },
+ {
+ "epoch": 27.36347750109218,
+ "grad_norm": 0.18191468715667725,
+ "learning_rate": 0.0006,
+ "loss": 3.817451238632202,
+ "step": 1970
+ },
+ {
+ "epoch": 27.37745740498034,
+ "grad_norm": 0.18665607273578644,
+ "learning_rate": 0.0006,
+ "loss": 3.78645658493042,
+ "step": 1971
+ },
+ {
+ "epoch": 27.3914373088685,
+ "grad_norm": 0.19604510068893433,
+ "learning_rate": 0.0006,
+ "loss": 3.7735626697540283,
+ "step": 1972
+ },
+ {
+ "epoch": 27.405417212756664,
+ "grad_norm": 0.20136640965938568,
+ "learning_rate": 0.0006,
+ "loss": 3.77310848236084,
+ "step": 1973
+ },
+ {
+ "epoch": 27.419397116644824,
+ "grad_norm": 0.19314947724342346,
+ "learning_rate": 0.0006,
+ "loss": 3.8084068298339844,
+ "step": 1974
+ },
+ {
+ "epoch": 27.433377020532983,
+ "grad_norm": 0.20761604607105255,
+ "learning_rate": 0.0006,
+ "loss": 3.80732798576355,
+ "step": 1975
+ },
+ {
+ "epoch": 27.447356924421143,
+ "grad_norm": 0.2239987850189209,
+ "learning_rate": 0.0006,
+ "loss": 3.7950329780578613,
+ "step": 1976
+ },
+ {
+ "epoch": 27.461336828309307,
+ "grad_norm": 0.22146444022655487,
+ "learning_rate": 0.0006,
+ "loss": 3.7957234382629395,
+ "step": 1977
+ },
+ {
+ "epoch": 27.475316732197467,
+ "grad_norm": 0.23218585550785065,
+ "learning_rate": 0.0006,
+ "loss": 3.806377410888672,
+ "step": 1978
+ },
+ {
+ "epoch": 27.489296636085626,
+ "grad_norm": 0.23549026250839233,
+ "learning_rate": 0.0006,
+ "loss": 3.7833383083343506,
+ "step": 1979
+ },
+ {
+ "epoch": 27.503276539973786,
+ "grad_norm": 0.24219457805156708,
+ "learning_rate": 0.0006,
+ "loss": 3.8154187202453613,
+ "step": 1980
+ },
+ {
+ "epoch": 27.51725644386195,
+ "grad_norm": 0.23703953623771667,
+ "learning_rate": 0.0006,
+ "loss": 3.7846405506134033,
+ "step": 1981
+ },
+ {
+ "epoch": 27.53123634775011,
+ "grad_norm": 0.23596109449863434,
+ "learning_rate": 0.0006,
+ "loss": 3.7698163986206055,
+ "step": 1982
+ },
+ {
+ "epoch": 27.54521625163827,
+ "grad_norm": 0.23073506355285645,
+ "learning_rate": 0.0006,
+ "loss": 3.8114185333251953,
+ "step": 1983
+ },
+ {
+ "epoch": 27.55919615552643,
+ "grad_norm": 0.24761143326759338,
+ "learning_rate": 0.0006,
+ "loss": 3.7548117637634277,
+ "step": 1984
+ },
+ {
+ "epoch": 27.573176059414592,
+ "grad_norm": 0.2834068238735199,
+ "learning_rate": 0.0006,
+ "loss": 3.7990212440490723,
+ "step": 1985
+ },
+ {
+ "epoch": 27.587155963302752,
+ "grad_norm": 0.29774922132492065,
+ "learning_rate": 0.0006,
+ "loss": 3.7845072746276855,
+ "step": 1986
+ },
+ {
+ "epoch": 27.601135867190912,
+ "grad_norm": 0.2732089161872864,
+ "learning_rate": 0.0006,
+ "loss": 3.8050694465637207,
+ "step": 1987
+ },
+ {
+ "epoch": 27.615115771079076,
+ "grad_norm": 0.24433180689811707,
+ "learning_rate": 0.0006,
+ "loss": 3.762704372406006,
+ "step": 1988
+ },
+ {
+ "epoch": 27.629095674967235,
+ "grad_norm": 0.21340419352054596,
+ "learning_rate": 0.0006,
+ "loss": 3.826023817062378,
+ "step": 1989
+ },
+ {
+ "epoch": 27.643075578855395,
+ "grad_norm": 0.22518761456012726,
+ "learning_rate": 0.0006,
+ "loss": 3.7823970317840576,
+ "step": 1990
+ },
+ {
+ "epoch": 27.657055482743555,
+ "grad_norm": 0.2196940928697586,
+ "learning_rate": 0.0006,
+ "loss": 3.787463426589966,
+ "step": 1991
+ },
+ {
+ "epoch": 27.67103538663172,
+ "grad_norm": 0.21906471252441406,
+ "learning_rate": 0.0006,
+ "loss": 3.7856104373931885,
+ "step": 1992
+ },
+ {
+ "epoch": 27.68501529051988,
+ "grad_norm": 0.2280956357717514,
+ "learning_rate": 0.0006,
+ "loss": 3.7829794883728027,
+ "step": 1993
+ },
+ {
+ "epoch": 27.698995194408038,
+ "grad_norm": 0.22567005455493927,
+ "learning_rate": 0.0006,
+ "loss": 3.762316942214966,
+ "step": 1994
+ },
+ {
+ "epoch": 27.712975098296198,
+ "grad_norm": 0.21703341603279114,
+ "learning_rate": 0.0006,
+ "loss": 3.772535800933838,
+ "step": 1995
+ },
+ {
+ "epoch": 27.72695500218436,
+ "grad_norm": 0.20586732029914856,
+ "learning_rate": 0.0006,
+ "loss": 3.775930881500244,
+ "step": 1996
+ },
+ {
+ "epoch": 27.74093490607252,
+ "grad_norm": 0.2126319408416748,
+ "learning_rate": 0.0006,
+ "loss": 3.793353796005249,
+ "step": 1997
+ },
+ {
+ "epoch": 27.75491480996068,
+ "grad_norm": 0.19664280116558075,
+ "learning_rate": 0.0006,
+ "loss": 3.7721195220947266,
+ "step": 1998
+ },
+ {
+ "epoch": 27.76889471384884,
+ "grad_norm": 0.17695854604244232,
+ "learning_rate": 0.0006,
+ "loss": 3.7931227684020996,
+ "step": 1999
+ },
+ {
+ "epoch": 27.782874617737004,
+ "grad_norm": 0.1899620145559311,
+ "learning_rate": 0.0006,
+ "loss": 3.798692226409912,
+ "step": 2000
+ },
+ {
+ "epoch": 27.796854521625164,
+ "grad_norm": 0.20334762334823608,
+ "learning_rate": 0.0006,
+ "loss": 3.774670124053955,
+ "step": 2001
+ },
+ {
+ "epoch": 27.810834425513324,
+ "grad_norm": 0.21150588989257812,
+ "learning_rate": 0.0006,
+ "loss": 3.803859233856201,
+ "step": 2002
+ },
+ {
+ "epoch": 27.824814329401484,
+ "grad_norm": 0.20425523817539215,
+ "learning_rate": 0.0006,
+ "loss": 3.810410976409912,
+ "step": 2003
+ },
+ {
+ "epoch": 27.838794233289647,
+ "grad_norm": 0.20468413829803467,
+ "learning_rate": 0.0006,
+ "loss": 3.800917625427246,
+ "step": 2004
+ },
+ {
+ "epoch": 27.852774137177807,
+ "grad_norm": 0.2113286256790161,
+ "learning_rate": 0.0006,
+ "loss": 3.7581989765167236,
+ "step": 2005
+ },
+ {
+ "epoch": 27.866754041065967,
+ "grad_norm": 0.2098054736852646,
+ "learning_rate": 0.0006,
+ "loss": 3.7921502590179443,
+ "step": 2006
+ },
+ {
+ "epoch": 27.88073394495413,
+ "grad_norm": 0.21701586246490479,
+ "learning_rate": 0.0006,
+ "loss": 3.8166770935058594,
+ "step": 2007
+ },
+ {
+ "epoch": 27.89471384884229,
+ "grad_norm": 0.2086625099182129,
+ "learning_rate": 0.0006,
+ "loss": 3.7732229232788086,
+ "step": 2008
+ },
+ {
+ "epoch": 27.90869375273045,
+ "grad_norm": 0.2186812162399292,
+ "learning_rate": 0.0006,
+ "loss": 3.8067402839660645,
+ "step": 2009
+ },
+ {
+ "epoch": 27.92267365661861,
+ "grad_norm": 0.2168985903263092,
+ "learning_rate": 0.0006,
+ "loss": 3.798159122467041,
+ "step": 2010
+ },
+ {
+ "epoch": 27.936653560506773,
+ "grad_norm": 0.23713620007038116,
+ "learning_rate": 0.0006,
+ "loss": 3.7958693504333496,
+ "step": 2011
+ },
+ {
+ "epoch": 27.950633464394933,
+ "grad_norm": 0.23592841625213623,
+ "learning_rate": 0.0006,
+ "loss": 3.795126438140869,
+ "step": 2012
+ },
+ {
+ "epoch": 27.964613368283093,
+ "grad_norm": 0.22210197150707245,
+ "learning_rate": 0.0006,
+ "loss": 3.791013240814209,
+ "step": 2013
+ },
+ {
+ "epoch": 27.978593272171253,
+ "grad_norm": 0.23190008103847504,
+ "learning_rate": 0.0006,
+ "loss": 3.813408374786377,
+ "step": 2014
+ },
+ {
+ "epoch": 27.992573176059416,
+ "grad_norm": 0.22158131003379822,
+ "learning_rate": 0.0006,
+ "loss": 3.7975716590881348,
+ "step": 2015
+ },
+ {
+ "epoch": 28.0,
+ "grad_norm": 0.2300519198179245,
+ "learning_rate": 0.0006,
+ "loss": 3.776214838027954,
+ "step": 2016
+ },
+ {
+ "epoch": 28.0,
+ "eval_loss": 4.04406213760376,
+ "eval_runtime": 44.0285,
+ "eval_samples_per_second": 55.464,
+ "eval_steps_per_second": 3.475,
+ "step": 2016
+ },
+ {
+ "epoch": 28.01397990388816,
+ "grad_norm": 0.21007688343524933,
+ "learning_rate": 0.0006,
+ "loss": 3.7366907596588135,
+ "step": 2017
+ },
+ {
+ "epoch": 28.027959807776323,
+ "grad_norm": 0.1941644549369812,
+ "learning_rate": 0.0006,
+ "loss": 3.744373321533203,
+ "step": 2018
+ },
+ {
+ "epoch": 28.041939711664483,
+ "grad_norm": 0.21308493614196777,
+ "learning_rate": 0.0006,
+ "loss": 3.7650012969970703,
+ "step": 2019
+ },
+ {
+ "epoch": 28.055919615552643,
+ "grad_norm": 0.20114868879318237,
+ "learning_rate": 0.0006,
+ "loss": 3.7652382850646973,
+ "step": 2020
+ },
+ {
+ "epoch": 28.069899519440803,
+ "grad_norm": 0.20266319811344147,
+ "learning_rate": 0.0006,
+ "loss": 3.7710442543029785,
+ "step": 2021
+ },
+ {
+ "epoch": 28.083879423328966,
+ "grad_norm": 0.205102801322937,
+ "learning_rate": 0.0006,
+ "loss": 3.7515463829040527,
+ "step": 2022
+ },
+ {
+ "epoch": 28.097859327217126,
+ "grad_norm": 0.22002041339874268,
+ "learning_rate": 0.0006,
+ "loss": 3.762019157409668,
+ "step": 2023
+ },
+ {
+ "epoch": 28.111839231105286,
+ "grad_norm": 0.2063235342502594,
+ "learning_rate": 0.0006,
+ "loss": 3.765453338623047,
+ "step": 2024
+ },
+ {
+ "epoch": 28.125819134993446,
+ "grad_norm": 0.19145619869232178,
+ "learning_rate": 0.0006,
+ "loss": 3.769411325454712,
+ "step": 2025
+ },
+ {
+ "epoch": 28.13979903888161,
+ "grad_norm": 0.19308455288410187,
+ "learning_rate": 0.0006,
+ "loss": 3.8009989261627197,
+ "step": 2026
+ },
+ {
+ "epoch": 28.15377894276977,
+ "grad_norm": 0.220510333776474,
+ "learning_rate": 0.0006,
+ "loss": 3.7582602500915527,
+ "step": 2027
+ },
+ {
+ "epoch": 28.16775884665793,
+ "grad_norm": 0.22855883836746216,
+ "learning_rate": 0.0006,
+ "loss": 3.803917407989502,
+ "step": 2028
+ },
+ {
+ "epoch": 28.18173875054609,
+ "grad_norm": 0.24206340312957764,
+ "learning_rate": 0.0006,
+ "loss": 3.764101028442383,
+ "step": 2029
+ },
+ {
+ "epoch": 28.195718654434252,
+ "grad_norm": 0.23973612487316132,
+ "learning_rate": 0.0006,
+ "loss": 3.787308931350708,
+ "step": 2030
+ },
+ {
+ "epoch": 28.209698558322412,
+ "grad_norm": 0.21400697529315948,
+ "learning_rate": 0.0006,
+ "loss": 3.7706117630004883,
+ "step": 2031
+ },
+ {
+ "epoch": 28.22367846221057,
+ "grad_norm": 0.21983976662158966,
+ "learning_rate": 0.0006,
+ "loss": 3.772731304168701,
+ "step": 2032
+ },
+ {
+ "epoch": 28.23765836609873,
+ "grad_norm": 0.22427113354206085,
+ "learning_rate": 0.0006,
+ "loss": 3.7724413871765137,
+ "step": 2033
+ },
+ {
+ "epoch": 28.251638269986895,
+ "grad_norm": 0.23665079474449158,
+ "learning_rate": 0.0006,
+ "loss": 3.769845962524414,
+ "step": 2034
+ },
+ {
+ "epoch": 28.265618173875055,
+ "grad_norm": 0.22663180530071259,
+ "learning_rate": 0.0006,
+ "loss": 3.764380931854248,
+ "step": 2035
+ },
+ {
+ "epoch": 28.279598077763215,
+ "grad_norm": 0.21094927191734314,
+ "learning_rate": 0.0006,
+ "loss": 3.7598326206207275,
+ "step": 2036
+ },
+ {
+ "epoch": 28.293577981651374,
+ "grad_norm": 0.20419518649578094,
+ "learning_rate": 0.0006,
+ "loss": 3.7737207412719727,
+ "step": 2037
+ },
+ {
+ "epoch": 28.307557885539538,
+ "grad_norm": 0.2171909660100937,
+ "learning_rate": 0.0006,
+ "loss": 3.7499468326568604,
+ "step": 2038
+ },
+ {
+ "epoch": 28.321537789427698,
+ "grad_norm": 0.22749298810958862,
+ "learning_rate": 0.0006,
+ "loss": 3.767536163330078,
+ "step": 2039
+ },
+ {
+ "epoch": 28.335517693315857,
+ "grad_norm": 0.22821909189224243,
+ "learning_rate": 0.0006,
+ "loss": 3.744386672973633,
+ "step": 2040
+ },
+ {
+ "epoch": 28.34949759720402,
+ "grad_norm": 0.2227880209684372,
+ "learning_rate": 0.0006,
+ "loss": 3.72955322265625,
+ "step": 2041
+ },
+ {
+ "epoch": 28.36347750109218,
+ "grad_norm": 0.22204327583312988,
+ "learning_rate": 0.0006,
+ "loss": 3.793854236602783,
+ "step": 2042
+ },
+ {
+ "epoch": 28.37745740498034,
+ "grad_norm": 0.21621409058570862,
+ "learning_rate": 0.0006,
+ "loss": 3.775379180908203,
+ "step": 2043
+ },
+ {
+ "epoch": 28.3914373088685,
+ "grad_norm": 0.2439221441745758,
+ "learning_rate": 0.0006,
+ "loss": 3.727464199066162,
+ "step": 2044
+ },
+ {
+ "epoch": 28.405417212756664,
+ "grad_norm": 0.24408605694770813,
+ "learning_rate": 0.0006,
+ "loss": 3.761747360229492,
+ "step": 2045
+ },
+ {
+ "epoch": 28.419397116644824,
+ "grad_norm": 0.26118648052215576,
+ "learning_rate": 0.0006,
+ "loss": 3.7587313652038574,
+ "step": 2046
+ },
+ {
+ "epoch": 28.433377020532983,
+ "grad_norm": 0.25948166847229004,
+ "learning_rate": 0.0006,
+ "loss": 3.7698440551757812,
+ "step": 2047
+ },
+ {
+ "epoch": 28.447356924421143,
+ "grad_norm": 0.26413780450820923,
+ "learning_rate": 0.0006,
+ "loss": 3.799107551574707,
+ "step": 2048
+ },
+ {
+ "epoch": 28.461336828309307,
+ "grad_norm": 0.2687148153781891,
+ "learning_rate": 0.0006,
+ "loss": 3.7564382553100586,
+ "step": 2049
+ },
+ {
+ "epoch": 28.475316732197467,
+ "grad_norm": 0.2676694691181183,
+ "learning_rate": 0.0006,
+ "loss": 3.754267692565918,
+ "step": 2050
+ },
+ {
+ "epoch": 28.489296636085626,
+ "grad_norm": 0.27275168895721436,
+ "learning_rate": 0.0006,
+ "loss": 3.802988052368164,
+ "step": 2051
+ },
+ {
+ "epoch": 28.503276539973786,
+ "grad_norm": 0.28783538937568665,
+ "learning_rate": 0.0006,
+ "loss": 3.762540817260742,
+ "step": 2052
+ },
+ {
+ "epoch": 28.51725644386195,
+ "grad_norm": 0.2628997266292572,
+ "learning_rate": 0.0006,
+ "loss": 3.7933349609375,
+ "step": 2053
+ },
+ {
+ "epoch": 28.53123634775011,
+ "grad_norm": 0.2498515099287033,
+ "learning_rate": 0.0006,
+ "loss": 3.7773094177246094,
+ "step": 2054
+ },
+ {
+ "epoch": 28.54521625163827,
+ "grad_norm": 0.22625942528247833,
+ "learning_rate": 0.0006,
+ "loss": 3.803457021713257,
+ "step": 2055
+ },
+ {
+ "epoch": 28.55919615552643,
+ "grad_norm": 0.21488751471042633,
+ "learning_rate": 0.0006,
+ "loss": 3.78924560546875,
+ "step": 2056
+ },
+ {
+ "epoch": 28.573176059414592,
+ "grad_norm": 0.22041267156600952,
+ "learning_rate": 0.0006,
+ "loss": 3.79361629486084,
+ "step": 2057
+ },
+ {
+ "epoch": 28.587155963302752,
+ "grad_norm": 0.23164816200733185,
+ "learning_rate": 0.0006,
+ "loss": 3.735037326812744,
+ "step": 2058
+ },
+ {
+ "epoch": 28.601135867190912,
+ "grad_norm": 0.22371916472911835,
+ "learning_rate": 0.0006,
+ "loss": 3.731417179107666,
+ "step": 2059
+ },
+ {
+ "epoch": 28.615115771079076,
+ "grad_norm": 0.2280314862728119,
+ "learning_rate": 0.0006,
+ "loss": 3.796154499053955,
+ "step": 2060
+ },
+ {
+ "epoch": 28.629095674967235,
+ "grad_norm": 0.21386604011058807,
+ "learning_rate": 0.0006,
+ "loss": 3.778648614883423,
+ "step": 2061
+ },
+ {
+ "epoch": 28.643075578855395,
+ "grad_norm": 0.20433050394058228,
+ "learning_rate": 0.0006,
+ "loss": 3.772826910018921,
+ "step": 2062
+ },
+ {
+ "epoch": 28.657055482743555,
+ "grad_norm": 0.2049262523651123,
+ "learning_rate": 0.0006,
+ "loss": 3.7410364151000977,
+ "step": 2063
+ },
+ {
+ "epoch": 28.67103538663172,
+ "grad_norm": 0.22041259706020355,
+ "learning_rate": 0.0006,
+ "loss": 3.796724319458008,
+ "step": 2064
+ },
+ {
+ "epoch": 28.68501529051988,
+ "grad_norm": 0.2018800675868988,
+ "learning_rate": 0.0006,
+ "loss": 3.775252342224121,
+ "step": 2065
+ },
+ {
+ "epoch": 28.698995194408038,
+ "grad_norm": 0.2159280925989151,
+ "learning_rate": 0.0006,
+ "loss": 3.766021251678467,
+ "step": 2066
+ },
+ {
+ "epoch": 28.712975098296198,
+ "grad_norm": 0.2072775512933731,
+ "learning_rate": 0.0006,
+ "loss": 3.765397548675537,
+ "step": 2067
+ },
+ {
+ "epoch": 28.72695500218436,
+ "grad_norm": 0.19592848420143127,
+ "learning_rate": 0.0006,
+ "loss": 3.8151614665985107,
+ "step": 2068
+ },
+ {
+ "epoch": 28.74093490607252,
+ "grad_norm": 0.19266322255134583,
+ "learning_rate": 0.0006,
+ "loss": 3.774945020675659,
+ "step": 2069
+ },
+ {
+ "epoch": 28.75491480996068,
+ "grad_norm": 0.19442392885684967,
+ "learning_rate": 0.0006,
+ "loss": 3.816283702850342,
+ "step": 2070
+ },
+ {
+ "epoch": 28.76889471384884,
+ "grad_norm": 0.19080746173858643,
+ "learning_rate": 0.0006,
+ "loss": 3.7784247398376465,
+ "step": 2071
+ },
+ {
+ "epoch": 28.782874617737004,
+ "grad_norm": 0.20150451362133026,
+ "learning_rate": 0.0006,
+ "loss": 3.7710249423980713,
+ "step": 2072
+ },
+ {
+ "epoch": 28.796854521625164,
+ "grad_norm": 0.1835816204547882,
+ "learning_rate": 0.0006,
+ "loss": 3.750032901763916,
+ "step": 2073
+ },
+ {
+ "epoch": 28.810834425513324,
+ "grad_norm": 0.1855502873659134,
+ "learning_rate": 0.0006,
+ "loss": 3.7276318073272705,
+ "step": 2074
+ },
+ {
+ "epoch": 28.824814329401484,
+ "grad_norm": 0.18683169782161713,
+ "learning_rate": 0.0006,
+ "loss": 3.7516555786132812,
+ "step": 2075
+ },
+ {
+ "epoch": 28.838794233289647,
+ "grad_norm": 0.2034577578306198,
+ "learning_rate": 0.0006,
+ "loss": 3.749875068664551,
+ "step": 2076
+ },
+ {
+ "epoch": 28.852774137177807,
+ "grad_norm": 0.2234230488538742,
+ "learning_rate": 0.0006,
+ "loss": 3.791429042816162,
+ "step": 2077
+ },
+ {
+ "epoch": 28.866754041065967,
+ "grad_norm": 0.25600525736808777,
+ "learning_rate": 0.0006,
+ "loss": 3.7769298553466797,
+ "step": 2078
+ },
+ {
+ "epoch": 28.88073394495413,
+ "grad_norm": 0.2741529643535614,
+ "learning_rate": 0.0006,
+ "loss": 3.771848201751709,
+ "step": 2079
+ },
+ {
+ "epoch": 28.89471384884229,
+ "grad_norm": 0.2710304260253906,
+ "learning_rate": 0.0006,
+ "loss": 3.8235626220703125,
+ "step": 2080
+ },
+ {
+ "epoch": 28.90869375273045,
+ "grad_norm": 0.25497519969940186,
+ "learning_rate": 0.0006,
+ "loss": 3.811288595199585,
+ "step": 2081
+ },
+ {
+ "epoch": 28.92267365661861,
+ "grad_norm": 0.25689464807510376,
+ "learning_rate": 0.0006,
+ "loss": 3.7848939895629883,
+ "step": 2082
+ },
+ {
+ "epoch": 28.936653560506773,
+ "grad_norm": 0.2794921398162842,
+ "learning_rate": 0.0006,
+ "loss": 3.7836732864379883,
+ "step": 2083
+ },
+ {
+ "epoch": 28.950633464394933,
+ "grad_norm": 0.24730202555656433,
+ "learning_rate": 0.0006,
+ "loss": 3.7703347206115723,
+ "step": 2084
+ },
+ {
+ "epoch": 28.964613368283093,
+ "grad_norm": 0.21078833937644958,
+ "learning_rate": 0.0006,
+ "loss": 3.7521653175354004,
+ "step": 2085
+ },
+ {
+ "epoch": 28.978593272171253,
+ "grad_norm": 0.2188870757818222,
+ "learning_rate": 0.0006,
+ "loss": 3.769604206085205,
+ "step": 2086
+ },
+ {
+ "epoch": 28.992573176059416,
+ "grad_norm": 0.20447929203510284,
+ "learning_rate": 0.0006,
+ "loss": 3.7842764854431152,
+ "step": 2087
+ },
+ {
+ "epoch": 29.0,
+ "grad_norm": 0.21607689559459686,
+ "learning_rate": 0.0006,
+ "loss": 3.7428855895996094,
+ "step": 2088
+ },
+ {
+ "epoch": 29.0,
+ "eval_loss": 4.0355753898620605,
+ "eval_runtime": 44.1435,
+ "eval_samples_per_second": 55.32,
+ "eval_steps_per_second": 3.466,
+ "step": 2088
+ },
+ {
+ "epoch": 29.01397990388816,
+ "grad_norm": 0.21270133554935455,
+ "learning_rate": 0.0006,
+ "loss": 3.7548413276672363,
+ "step": 2089
+ },
+ {
+ "epoch": 29.027959807776323,
+ "grad_norm": 0.21576301753520966,
+ "learning_rate": 0.0006,
+ "loss": 3.754613161087036,
+ "step": 2090
+ },
+ {
+ "epoch": 29.041939711664483,
+ "grad_norm": 0.2162923663854599,
+ "learning_rate": 0.0006,
+ "loss": 3.755772590637207,
+ "step": 2091
+ },
+ {
+ "epoch": 29.055919615552643,
+ "grad_norm": 0.22236663103103638,
+ "learning_rate": 0.0006,
+ "loss": 3.743497848510742,
+ "step": 2092
+ },
+ {
+ "epoch": 29.069899519440803,
+ "grad_norm": 0.2391042858362198,
+ "learning_rate": 0.0006,
+ "loss": 3.749204158782959,
+ "step": 2093
+ },
+ {
+ "epoch": 29.083879423328966,
+ "grad_norm": 0.23387965559959412,
+ "learning_rate": 0.0006,
+ "loss": 3.7286791801452637,
+ "step": 2094
+ },
+ {
+ "epoch": 29.097859327217126,
+ "grad_norm": 0.23677746951580048,
+ "learning_rate": 0.0006,
+ "loss": 3.755279541015625,
+ "step": 2095
+ },
+ {
+ "epoch": 29.111839231105286,
+ "grad_norm": 0.22771087288856506,
+ "learning_rate": 0.0006,
+ "loss": 3.722566604614258,
+ "step": 2096
+ },
+ {
+ "epoch": 29.125819134993446,
+ "grad_norm": 0.2132875621318817,
+ "learning_rate": 0.0006,
+ "loss": 3.748939037322998,
+ "step": 2097
+ },
+ {
+ "epoch": 29.13979903888161,
+ "grad_norm": 0.2033746838569641,
+ "learning_rate": 0.0006,
+ "loss": 3.7393670082092285,
+ "step": 2098
+ },
+ {
+ "epoch": 29.15377894276977,
+ "grad_norm": 0.1997237652540207,
+ "learning_rate": 0.0006,
+ "loss": 3.718498945236206,
+ "step": 2099
+ },
+ {
+ "epoch": 29.16775884665793,
+ "grad_norm": 0.19102543592453003,
+ "learning_rate": 0.0006,
+ "loss": 3.748950719833374,
+ "step": 2100
+ },
+ {
+ "epoch": 29.18173875054609,
+ "grad_norm": 0.19801580905914307,
+ "learning_rate": 0.0006,
+ "loss": 3.7123501300811768,
+ "step": 2101
+ },
+ {
+ "epoch": 29.195718654434252,
+ "grad_norm": 0.20186249911785126,
+ "learning_rate": 0.0006,
+ "loss": 3.7632713317871094,
+ "step": 2102
+ },
+ {
+ "epoch": 29.209698558322412,
+ "grad_norm": 0.22725415229797363,
+ "learning_rate": 0.0006,
+ "loss": 3.753506660461426,
+ "step": 2103
+ },
+ {
+ "epoch": 29.22367846221057,
+ "grad_norm": 0.23138119280338287,
+ "learning_rate": 0.0006,
+ "loss": 3.753282070159912,
+ "step": 2104
+ },
+ {
+ "epoch": 29.23765836609873,
+ "grad_norm": 0.23171944916248322,
+ "learning_rate": 0.0006,
+ "loss": 3.73783540725708,
+ "step": 2105
+ },
+ {
+ "epoch": 29.251638269986895,
+ "grad_norm": 0.2166522741317749,
+ "learning_rate": 0.0006,
+ "loss": 3.778803825378418,
+ "step": 2106
+ },
+ {
+ "epoch": 29.265618173875055,
+ "grad_norm": 0.2009056806564331,
+ "learning_rate": 0.0006,
+ "loss": 3.738290786743164,
+ "step": 2107
+ },
+ {
+ "epoch": 29.279598077763215,
+ "grad_norm": 0.19451597332954407,
+ "learning_rate": 0.0006,
+ "loss": 3.7553348541259766,
+ "step": 2108
+ },
+ {
+ "epoch": 29.293577981651374,
+ "grad_norm": 0.19246742129325867,
+ "learning_rate": 0.0006,
+ "loss": 3.7321622371673584,
+ "step": 2109
+ },
+ {
+ "epoch": 29.307557885539538,
+ "grad_norm": 0.18917441368103027,
+ "learning_rate": 0.0006,
+ "loss": 3.7408928871154785,
+ "step": 2110
+ },
+ {
+ "epoch": 29.321537789427698,
+ "grad_norm": 0.19067776203155518,
+ "learning_rate": 0.0006,
+ "loss": 3.780052900314331,
+ "step": 2111
+ },
+ {
+ "epoch": 29.335517693315857,
+ "grad_norm": 0.18849676847457886,
+ "learning_rate": 0.0006,
+ "loss": 3.749375820159912,
+ "step": 2112
+ },
+ {
+ "epoch": 29.34949759720402,
+ "grad_norm": 0.19713285565376282,
+ "learning_rate": 0.0006,
+ "loss": 3.7128982543945312,
+ "step": 2113
+ },
+ {
+ "epoch": 29.36347750109218,
+ "grad_norm": 0.196336030960083,
+ "learning_rate": 0.0006,
+ "loss": 3.7528390884399414,
+ "step": 2114
+ },
+ {
+ "epoch": 29.37745740498034,
+ "grad_norm": 0.19574350118637085,
+ "learning_rate": 0.0006,
+ "loss": 3.7105777263641357,
+ "step": 2115
+ },
+ {
+ "epoch": 29.3914373088685,
+ "grad_norm": 0.20396539568901062,
+ "learning_rate": 0.0006,
+ "loss": 3.782249927520752,
+ "step": 2116
+ },
+ {
+ "epoch": 29.405417212756664,
+ "grad_norm": 0.24702422320842743,
+ "learning_rate": 0.0006,
+ "loss": 3.7685647010803223,
+ "step": 2117
+ },
+ {
+ "epoch": 29.419397116644824,
+ "grad_norm": 0.2729755640029907,
+ "learning_rate": 0.0006,
+ "loss": 3.7731213569641113,
+ "step": 2118
+ },
+ {
+ "epoch": 29.433377020532983,
+ "grad_norm": 0.29240545630455017,
+ "learning_rate": 0.0006,
+ "loss": 3.770162343978882,
+ "step": 2119
+ },
+ {
+ "epoch": 29.447356924421143,
+ "grad_norm": 0.2469114065170288,
+ "learning_rate": 0.0006,
+ "loss": 3.764681339263916,
+ "step": 2120
+ },
+ {
+ "epoch": 29.461336828309307,
+ "grad_norm": 0.19837401807308197,
+ "learning_rate": 0.0006,
+ "loss": 3.7600088119506836,
+ "step": 2121
+ },
+ {
+ "epoch": 29.475316732197467,
+ "grad_norm": 0.21266621351242065,
+ "learning_rate": 0.0006,
+ "loss": 3.769454002380371,
+ "step": 2122
+ },
+ {
+ "epoch": 29.489296636085626,
+ "grad_norm": 0.25908344984054565,
+ "learning_rate": 0.0006,
+ "loss": 3.7230491638183594,
+ "step": 2123
+ },
+ {
+ "epoch": 29.503276539973786,
+ "grad_norm": 0.2914169728755951,
+ "learning_rate": 0.0006,
+ "loss": 3.767849922180176,
+ "step": 2124
+ },
+ {
+ "epoch": 29.51725644386195,
+ "grad_norm": 0.2796176075935364,
+ "learning_rate": 0.0006,
+ "loss": 3.741734266281128,
+ "step": 2125
+ },
+ {
+ "epoch": 29.53123634775011,
+ "grad_norm": 0.276309996843338,
+ "learning_rate": 0.0006,
+ "loss": 3.8001914024353027,
+ "step": 2126
+ },
+ {
+ "epoch": 29.54521625163827,
+ "grad_norm": 0.26512834429740906,
+ "learning_rate": 0.0006,
+ "loss": 3.7741384506225586,
+ "step": 2127
+ },
+ {
+ "epoch": 29.55919615552643,
+ "grad_norm": 0.26514101028442383,
+ "learning_rate": 0.0006,
+ "loss": 3.7466959953308105,
+ "step": 2128
+ },
+ {
+ "epoch": 29.573176059414592,
+ "grad_norm": 0.24121330678462982,
+ "learning_rate": 0.0006,
+ "loss": 3.759542465209961,
+ "step": 2129
+ },
+ {
+ "epoch": 29.587155963302752,
+ "grad_norm": 0.2264087200164795,
+ "learning_rate": 0.0006,
+ "loss": 3.791344165802002,
+ "step": 2130
+ },
+ {
+ "epoch": 29.601135867190912,
+ "grad_norm": 0.21915403008460999,
+ "learning_rate": 0.0006,
+ "loss": 3.7540485858917236,
+ "step": 2131
+ },
+ {
+ "epoch": 29.615115771079076,
+ "grad_norm": 0.20453961193561554,
+ "learning_rate": 0.0006,
+ "loss": 3.765617609024048,
+ "step": 2132
+ },
+ {
+ "epoch": 29.629095674967235,
+ "grad_norm": 0.2194051444530487,
+ "learning_rate": 0.0006,
+ "loss": 3.7664294242858887,
+ "step": 2133
+ },
+ {
+ "epoch": 29.643075578855395,
+ "grad_norm": 0.21926000714302063,
+ "learning_rate": 0.0006,
+ "loss": 3.7551684379577637,
+ "step": 2134
+ },
+ {
+ "epoch": 29.657055482743555,
+ "grad_norm": 0.20835602283477783,
+ "learning_rate": 0.0006,
+ "loss": 3.7654306888580322,
+ "step": 2135
+ },
+ {
+ "epoch": 29.67103538663172,
+ "grad_norm": 0.23094356060028076,
+ "learning_rate": 0.0006,
+ "loss": 3.7847180366516113,
+ "step": 2136
+ },
+ {
+ "epoch": 29.68501529051988,
+ "grad_norm": 0.23871271312236786,
+ "learning_rate": 0.0006,
+ "loss": 3.789036273956299,
+ "step": 2137
+ },
+ {
+ "epoch": 29.698995194408038,
+ "grad_norm": 0.22263272106647491,
+ "learning_rate": 0.0006,
+ "loss": 3.7677512168884277,
+ "step": 2138
+ },
+ {
+ "epoch": 29.712975098296198,
+ "grad_norm": 0.2293892651796341,
+ "learning_rate": 0.0006,
+ "loss": 3.777097225189209,
+ "step": 2139
+ },
+ {
+ "epoch": 29.72695500218436,
+ "grad_norm": 0.21068568527698517,
+ "learning_rate": 0.0006,
+ "loss": 3.785336494445801,
+ "step": 2140
+ },
+ {
+ "epoch": 29.74093490607252,
+ "grad_norm": 0.19600282609462738,
+ "learning_rate": 0.0006,
+ "loss": 3.7363505363464355,
+ "step": 2141
+ },
+ {
+ "epoch": 29.75491480996068,
+ "grad_norm": 0.20053936541080475,
+ "learning_rate": 0.0006,
+ "loss": 3.753859043121338,
+ "step": 2142
+ },
+ {
+ "epoch": 29.76889471384884,
+ "grad_norm": 0.22790539264678955,
+ "learning_rate": 0.0006,
+ "loss": 3.749492645263672,
+ "step": 2143
+ },
+ {
+ "epoch": 29.782874617737004,
+ "grad_norm": 0.26042407751083374,
+ "learning_rate": 0.0006,
+ "loss": 3.7905430793762207,
+ "step": 2144
+ },
+ {
+ "epoch": 29.796854521625164,
+ "grad_norm": 0.2753683626651764,
+ "learning_rate": 0.0006,
+ "loss": 3.756442070007324,
+ "step": 2145
+ },
+ {
+ "epoch": 29.810834425513324,
+ "grad_norm": 0.2795007526874542,
+ "learning_rate": 0.0006,
+ "loss": 3.7691903114318848,
+ "step": 2146
+ },
+ {
+ "epoch": 29.824814329401484,
+ "grad_norm": 0.2461438924074173,
+ "learning_rate": 0.0006,
+ "loss": 3.7573065757751465,
+ "step": 2147
+ },
+ {
+ "epoch": 29.838794233289647,
+ "grad_norm": 0.21051941812038422,
+ "learning_rate": 0.0006,
+ "loss": 3.7540078163146973,
+ "step": 2148
+ },
+ {
+ "epoch": 29.852774137177807,
+ "grad_norm": 0.197485089302063,
+ "learning_rate": 0.0006,
+ "loss": 3.734403133392334,
+ "step": 2149
+ },
+ {
+ "epoch": 29.866754041065967,
+ "grad_norm": 0.203064426779747,
+ "learning_rate": 0.0006,
+ "loss": 3.7888364791870117,
+ "step": 2150
+ },
+ {
+ "epoch": 29.88073394495413,
+ "grad_norm": 0.2000301480293274,
+ "learning_rate": 0.0006,
+ "loss": 3.7444958686828613,
+ "step": 2151
+ },
+ {
+ "epoch": 29.89471384884229,
+ "grad_norm": 0.20492053031921387,
+ "learning_rate": 0.0006,
+ "loss": 3.7878224849700928,
+ "step": 2152
+ },
+ {
+ "epoch": 29.90869375273045,
+ "grad_norm": 0.22565388679504395,
+ "learning_rate": 0.0006,
+ "loss": 3.7539188861846924,
+ "step": 2153
+ },
+ {
+ "epoch": 29.92267365661861,
+ "grad_norm": 0.20258226990699768,
+ "learning_rate": 0.0006,
+ "loss": 3.7491893768310547,
+ "step": 2154
+ },
+ {
+ "epoch": 29.936653560506773,
+ "grad_norm": 0.20028717815876007,
+ "learning_rate": 0.0006,
+ "loss": 3.7497997283935547,
+ "step": 2155
+ },
+ {
+ "epoch": 29.950633464394933,
+ "grad_norm": 0.2246360331773758,
+ "learning_rate": 0.0006,
+ "loss": 3.773930788040161,
+ "step": 2156
+ },
+ {
+ "epoch": 29.964613368283093,
+ "grad_norm": 0.22432482242584229,
+ "learning_rate": 0.0006,
+ "loss": 3.7926344871520996,
+ "step": 2157
+ },
+ {
+ "epoch": 29.978593272171253,
+ "grad_norm": 0.2165718674659729,
+ "learning_rate": 0.0006,
+ "loss": 3.7436647415161133,
+ "step": 2158
+ },
+ {
+ "epoch": 29.992573176059416,
+ "grad_norm": 0.20629167556762695,
+ "learning_rate": 0.0006,
+ "loss": 3.7619552612304688,
+ "step": 2159
+ },
+ {
+ "epoch": 30.0,
+ "grad_norm": 0.24264708161354065,
+ "learning_rate": 0.0006,
+ "loss": 3.772679328918457,
+ "step": 2160
+ },
+ {
+ "epoch": 30.0,
+ "eval_loss": 4.024484634399414,
+ "eval_runtime": 44.3611,
+ "eval_samples_per_second": 55.048,
+ "eval_steps_per_second": 3.449,
+ "step": 2160
+ },
+ {
+ "epoch": 30.01397990388816,
+ "grad_norm": 0.2373432070016861,
+ "learning_rate": 0.0006,
+ "loss": 3.7423200607299805,
+ "step": 2161
+ },
+ {
+ "epoch": 30.027959807776323,
+ "grad_norm": 0.26835134625434875,
+ "learning_rate": 0.0006,
+ "loss": 3.7215471267700195,
+ "step": 2162
+ },
+ {
+ "epoch": 30.041939711664483,
+ "grad_norm": 0.2743220329284668,
+ "learning_rate": 0.0006,
+ "loss": 3.7190256118774414,
+ "step": 2163
+ },
+ {
+ "epoch": 30.055919615552643,
+ "grad_norm": 0.2292490005493164,
+ "learning_rate": 0.0006,
+ "loss": 3.731855869293213,
+ "step": 2164
+ },
+ {
+ "epoch": 30.069899519440803,
+ "grad_norm": 0.22704607248306274,
+ "learning_rate": 0.0006,
+ "loss": 3.7649693489074707,
+ "step": 2165
+ },
+ {
+ "epoch": 30.083879423328966,
+ "grad_norm": 0.23255930840969086,
+ "learning_rate": 0.0006,
+ "loss": 3.7547781467437744,
+ "step": 2166
+ },
+ {
+ "epoch": 30.097859327217126,
+ "grad_norm": 0.2068684846162796,
+ "learning_rate": 0.0006,
+ "loss": 3.7343382835388184,
+ "step": 2167
+ },
+ {
+ "epoch": 30.111839231105286,
+ "grad_norm": 0.22523464262485504,
+ "learning_rate": 0.0006,
+ "loss": 3.7304530143737793,
+ "step": 2168
+ },
+ {
+ "epoch": 30.125819134993446,
+ "grad_norm": 0.24650199711322784,
+ "learning_rate": 0.0006,
+ "loss": 3.7414379119873047,
+ "step": 2169
+ },
+ {
+ "epoch": 30.13979903888161,
+ "grad_norm": 0.2392522394657135,
+ "learning_rate": 0.0006,
+ "loss": 3.754481792449951,
+ "step": 2170
+ },
+ {
+ "epoch": 30.15377894276977,
+ "grad_norm": 0.21174749732017517,
+ "learning_rate": 0.0006,
+ "loss": 3.7249929904937744,
+ "step": 2171
+ },
+ {
+ "epoch": 30.16775884665793,
+ "grad_norm": 0.20847836136817932,
+ "learning_rate": 0.0006,
+ "loss": 3.7146458625793457,
+ "step": 2172
+ },
+ {
+ "epoch": 30.18173875054609,
+ "grad_norm": 0.22131472826004028,
+ "learning_rate": 0.0006,
+ "loss": 3.7569539546966553,
+ "step": 2173
+ },
+ {
+ "epoch": 30.195718654434252,
+ "grad_norm": 0.23528096079826355,
+ "learning_rate": 0.0006,
+ "loss": 3.743435859680176,
+ "step": 2174
+ },
+ {
+ "epoch": 30.209698558322412,
+ "grad_norm": 0.2382429540157318,
+ "learning_rate": 0.0006,
+ "loss": 3.745307445526123,
+ "step": 2175
+ },
+ {
+ "epoch": 30.22367846221057,
+ "grad_norm": 0.2477114498615265,
+ "learning_rate": 0.0006,
+ "loss": 3.742305278778076,
+ "step": 2176
+ },
+ {
+ "epoch": 30.23765836609873,
+ "grad_norm": 0.24507801234722137,
+ "learning_rate": 0.0006,
+ "loss": 3.733564853668213,
+ "step": 2177
+ },
+ {
+ "epoch": 30.251638269986895,
+ "grad_norm": 0.2266329675912857,
+ "learning_rate": 0.0006,
+ "loss": 3.747429370880127,
+ "step": 2178
+ },
+ {
+ "epoch": 30.265618173875055,
+ "grad_norm": 0.22146396338939667,
+ "learning_rate": 0.0006,
+ "loss": 3.738630533218384,
+ "step": 2179
+ },
+ {
+ "epoch": 30.279598077763215,
+ "grad_norm": 0.20202279090881348,
+ "learning_rate": 0.0006,
+ "loss": 3.74582839012146,
+ "step": 2180
+ },
+ {
+ "epoch": 30.293577981651374,
+ "grad_norm": 0.20591886341571808,
+ "learning_rate": 0.0006,
+ "loss": 3.792062997817993,
+ "step": 2181
+ },
+ {
+ "epoch": 30.307557885539538,
+ "grad_norm": 0.21744129061698914,
+ "learning_rate": 0.0006,
+ "loss": 3.7389049530029297,
+ "step": 2182
+ },
+ {
+ "epoch": 30.321537789427698,
+ "grad_norm": 0.22641272842884064,
+ "learning_rate": 0.0006,
+ "loss": 3.756775140762329,
+ "step": 2183
+ },
+ {
+ "epoch": 30.335517693315857,
+ "grad_norm": 0.22433501482009888,
+ "learning_rate": 0.0006,
+ "loss": 3.764744758605957,
+ "step": 2184
+ },
+ {
+ "epoch": 30.34949759720402,
+ "grad_norm": 0.20184539258480072,
+ "learning_rate": 0.0006,
+ "loss": 3.747469902038574,
+ "step": 2185
+ },
+ {
+ "epoch": 30.36347750109218,
+ "grad_norm": 0.20864923298358917,
+ "learning_rate": 0.0006,
+ "loss": 3.7472925186157227,
+ "step": 2186
+ },
+ {
+ "epoch": 30.37745740498034,
+ "grad_norm": 0.22537396848201752,
+ "learning_rate": 0.0006,
+ "loss": 3.7194581031799316,
+ "step": 2187
+ },
+ {
+ "epoch": 30.3914373088685,
+ "grad_norm": 0.23159919679164886,
+ "learning_rate": 0.0006,
+ "loss": 3.7124292850494385,
+ "step": 2188
+ },
+ {
+ "epoch": 30.405417212756664,
+ "grad_norm": 0.24334494769573212,
+ "learning_rate": 0.0006,
+ "loss": 3.7769203186035156,
+ "step": 2189
+ },
+ {
+ "epoch": 30.419397116644824,
+ "grad_norm": 0.3031228482723236,
+ "learning_rate": 0.0006,
+ "loss": 3.762169361114502,
+ "step": 2190
+ },
+ {
+ "epoch": 30.433377020532983,
+ "grad_norm": 0.29114583134651184,
+ "learning_rate": 0.0006,
+ "loss": 3.76554799079895,
+ "step": 2191
+ },
+ {
+ "epoch": 30.447356924421143,
+ "grad_norm": 0.26824963092803955,
+ "learning_rate": 0.0006,
+ "loss": 3.732962131500244,
+ "step": 2192
+ },
+ {
+ "epoch": 30.461336828309307,
+ "grad_norm": 0.3026561141014099,
+ "learning_rate": 0.0006,
+ "loss": 3.7567975521087646,
+ "step": 2193
+ },
+ {
+ "epoch": 30.475316732197467,
+ "grad_norm": 0.27224525809288025,
+ "learning_rate": 0.0006,
+ "loss": 3.7856051921844482,
+ "step": 2194
+ },
+ {
+ "epoch": 30.489296636085626,
+ "grad_norm": 0.24295508861541748,
+ "learning_rate": 0.0006,
+ "loss": 3.7514901161193848,
+ "step": 2195
+ },
+ {
+ "epoch": 30.503276539973786,
+ "grad_norm": 0.24435290694236755,
+ "learning_rate": 0.0006,
+ "loss": 3.715973138809204,
+ "step": 2196
+ },
+ {
+ "epoch": 30.51725644386195,
+ "grad_norm": 0.2298959195613861,
+ "learning_rate": 0.0006,
+ "loss": 3.7960405349731445,
+ "step": 2197
+ },
+ {
+ "epoch": 30.53123634775011,
+ "grad_norm": 0.20313066244125366,
+ "learning_rate": 0.0006,
+ "loss": 3.7377915382385254,
+ "step": 2198
+ },
+ {
+ "epoch": 30.54521625163827,
+ "grad_norm": 0.2018895149230957,
+ "learning_rate": 0.0006,
+ "loss": 3.6980559825897217,
+ "step": 2199
+ },
+ {
+ "epoch": 30.55919615552643,
+ "grad_norm": 0.20048382878303528,
+ "learning_rate": 0.0006,
+ "loss": 3.7474141120910645,
+ "step": 2200
+ },
+ {
+ "epoch": 30.573176059414592,
+ "grad_norm": 0.19821316003799438,
+ "learning_rate": 0.0006,
+ "loss": 3.7668564319610596,
+ "step": 2201
+ },
+ {
+ "epoch": 30.587155963302752,
+ "grad_norm": 0.21467992663383484,
+ "learning_rate": 0.0006,
+ "loss": 3.7636144161224365,
+ "step": 2202
+ },
+ {
+ "epoch": 30.601135867190912,
+ "grad_norm": 0.20192000269889832,
+ "learning_rate": 0.0006,
+ "loss": 3.745736837387085,
+ "step": 2203
+ },
+ {
+ "epoch": 30.615115771079076,
+ "grad_norm": 0.2078823447227478,
+ "learning_rate": 0.0006,
+ "loss": 3.726665496826172,
+ "step": 2204
+ },
+ {
+ "epoch": 30.629095674967235,
+ "grad_norm": 0.22535845637321472,
+ "learning_rate": 0.0006,
+ "loss": 3.745058059692383,
+ "step": 2205
+ },
+ {
+ "epoch": 30.643075578855395,
+ "grad_norm": 0.22277814149856567,
+ "learning_rate": 0.0006,
+ "loss": 3.7488319873809814,
+ "step": 2206
+ },
+ {
+ "epoch": 30.657055482743555,
+ "grad_norm": 0.20940838754177094,
+ "learning_rate": 0.0006,
+ "loss": 3.7395732402801514,
+ "step": 2207
+ },
+ {
+ "epoch": 30.67103538663172,
+ "grad_norm": 0.21384629607200623,
+ "learning_rate": 0.0006,
+ "loss": 3.7275657653808594,
+ "step": 2208
+ },
+ {
+ "epoch": 30.68501529051988,
+ "grad_norm": 0.18796643614768982,
+ "learning_rate": 0.0006,
+ "loss": 3.743420124053955,
+ "step": 2209
+ },
+ {
+ "epoch": 30.698995194408038,
+ "grad_norm": 0.213258296251297,
+ "learning_rate": 0.0006,
+ "loss": 3.7227492332458496,
+ "step": 2210
+ },
+ {
+ "epoch": 30.712975098296198,
+ "grad_norm": 0.22714753448963165,
+ "learning_rate": 0.0006,
+ "loss": 3.7301113605499268,
+ "step": 2211
+ },
+ {
+ "epoch": 30.72695500218436,
+ "grad_norm": 0.21657656133174896,
+ "learning_rate": 0.0006,
+ "loss": 3.7336206436157227,
+ "step": 2212
+ },
+ {
+ "epoch": 30.74093490607252,
+ "grad_norm": 0.19550828635692596,
+ "learning_rate": 0.0006,
+ "loss": 3.7367351055145264,
+ "step": 2213
+ },
+ {
+ "epoch": 30.75491480996068,
+ "grad_norm": 0.17011769115924835,
+ "learning_rate": 0.0006,
+ "loss": 3.7401928901672363,
+ "step": 2214
+ },
+ {
+ "epoch": 30.76889471384884,
+ "grad_norm": 0.19110196828842163,
+ "learning_rate": 0.0006,
+ "loss": 3.7496562004089355,
+ "step": 2215
+ },
+ {
+ "epoch": 30.782874617737004,
+ "grad_norm": 0.20054543018341064,
+ "learning_rate": 0.0006,
+ "loss": 3.7532992362976074,
+ "step": 2216
+ },
+ {
+ "epoch": 30.796854521625164,
+ "grad_norm": 0.20667670667171478,
+ "learning_rate": 0.0006,
+ "loss": 3.746974468231201,
+ "step": 2217
+ },
+ {
+ "epoch": 30.810834425513324,
+ "grad_norm": 0.19850662350654602,
+ "learning_rate": 0.0006,
+ "loss": 3.7566256523132324,
+ "step": 2218
+ },
+ {
+ "epoch": 30.824814329401484,
+ "grad_norm": 0.19666457176208496,
+ "learning_rate": 0.0006,
+ "loss": 3.7356925010681152,
+ "step": 2219
+ },
+ {
+ "epoch": 30.838794233289647,
+ "grad_norm": 0.20022115111351013,
+ "learning_rate": 0.0006,
+ "loss": 3.768794536590576,
+ "step": 2220
+ },
+ {
+ "epoch": 30.852774137177807,
+ "grad_norm": 0.225278839468956,
+ "learning_rate": 0.0006,
+ "loss": 3.730262279510498,
+ "step": 2221
+ },
+ {
+ "epoch": 30.866754041065967,
+ "grad_norm": 0.2155608832836151,
+ "learning_rate": 0.0006,
+ "loss": 3.758157968521118,
+ "step": 2222
+ },
+ {
+ "epoch": 30.88073394495413,
+ "grad_norm": 0.20914921164512634,
+ "learning_rate": 0.0006,
+ "loss": 3.7290844917297363,
+ "step": 2223
+ },
+ {
+ "epoch": 30.89471384884229,
+ "grad_norm": 0.21579554677009583,
+ "learning_rate": 0.0006,
+ "loss": 3.7666125297546387,
+ "step": 2224
+ },
+ {
+ "epoch": 30.90869375273045,
+ "grad_norm": 0.22606384754180908,
+ "learning_rate": 0.0006,
+ "loss": 3.7396788597106934,
+ "step": 2225
+ },
+ {
+ "epoch": 30.92267365661861,
+ "grad_norm": 0.22218658030033112,
+ "learning_rate": 0.0006,
+ "loss": 3.7363057136535645,
+ "step": 2226
+ },
+ {
+ "epoch": 30.936653560506773,
+ "grad_norm": 0.2107125222682953,
+ "learning_rate": 0.0006,
+ "loss": 3.7402844429016113,
+ "step": 2227
+ },
+ {
+ "epoch": 30.950633464394933,
+ "grad_norm": 0.2143280804157257,
+ "learning_rate": 0.0006,
+ "loss": 3.7715706825256348,
+ "step": 2228
+ },
+ {
+ "epoch": 30.964613368283093,
+ "grad_norm": 0.20918118953704834,
+ "learning_rate": 0.0006,
+ "loss": 3.783510446548462,
+ "step": 2229
+ },
+ {
+ "epoch": 30.978593272171253,
+ "grad_norm": 0.2184133678674698,
+ "learning_rate": 0.0006,
+ "loss": 3.729846954345703,
+ "step": 2230
+ },
+ {
+ "epoch": 30.992573176059416,
+ "grad_norm": 0.20314796268939972,
+ "learning_rate": 0.0006,
+ "loss": 3.753312110900879,
+ "step": 2231
+ },
+ {
+ "epoch": 31.0,
+ "grad_norm": 0.21582408249378204,
+ "learning_rate": 0.0006,
+ "loss": 3.7653090953826904,
+ "step": 2232
+ },
+ {
+ "epoch": 31.0,
+ "eval_loss": 4.030437469482422,
+ "eval_runtime": 43.8529,
+ "eval_samples_per_second": 55.686,
+ "eval_steps_per_second": 3.489,
+ "step": 2232
+ },
+ {
+ "epoch": 31.01397990388816,
+ "grad_norm": 0.214233860373497,
+ "learning_rate": 0.0006,
+ "loss": 3.7179880142211914,
+ "step": 2233
+ },
+ {
+ "epoch": 31.027959807776323,
+ "grad_norm": 0.24621504545211792,
+ "learning_rate": 0.0006,
+ "loss": 3.712569236755371,
+ "step": 2234
+ },
+ {
+ "epoch": 31.041939711664483,
+ "grad_norm": 0.24189279973506927,
+ "learning_rate": 0.0006,
+ "loss": 3.7503058910369873,
+ "step": 2235
+ },
+ {
+ "epoch": 31.055919615552643,
+ "grad_norm": 0.22872278094291687,
+ "learning_rate": 0.0006,
+ "loss": 3.7386386394500732,
+ "step": 2236
+ },
+ {
+ "epoch": 31.069899519440803,
+ "grad_norm": 0.25036823749542236,
+ "learning_rate": 0.0006,
+ "loss": 3.710566997528076,
+ "step": 2237
+ },
+ {
+ "epoch": 31.083879423328966,
+ "grad_norm": 0.2506193220615387,
+ "learning_rate": 0.0006,
+ "loss": 3.7270963191986084,
+ "step": 2238
+ },
+ {
+ "epoch": 31.097859327217126,
+ "grad_norm": 0.24819663166999817,
+ "learning_rate": 0.0006,
+ "loss": 3.716430425643921,
+ "step": 2239
+ },
+ {
+ "epoch": 31.111839231105286,
+ "grad_norm": 0.27226534485816956,
+ "learning_rate": 0.0006,
+ "loss": 3.704428195953369,
+ "step": 2240
+ },
+ {
+ "epoch": 31.125819134993446,
+ "grad_norm": 0.27718204259872437,
+ "learning_rate": 0.0006,
+ "loss": 3.7309701442718506,
+ "step": 2241
+ },
+ {
+ "epoch": 31.13979903888161,
+ "grad_norm": 0.27272021770477295,
+ "learning_rate": 0.0006,
+ "loss": 3.7325143814086914,
+ "step": 2242
+ },
+ {
+ "epoch": 31.15377894276977,
+ "grad_norm": 0.2666020095348358,
+ "learning_rate": 0.0006,
+ "loss": 3.715268611907959,
+ "step": 2243
+ },
+ {
+ "epoch": 31.16775884665793,
+ "grad_norm": 0.258543461561203,
+ "learning_rate": 0.0006,
+ "loss": 3.7336134910583496,
+ "step": 2244
+ },
+ {
+ "epoch": 31.18173875054609,
+ "grad_norm": 0.2528740167617798,
+ "learning_rate": 0.0006,
+ "loss": 3.724491596221924,
+ "step": 2245
+ },
+ {
+ "epoch": 31.195718654434252,
+ "grad_norm": 0.2659667730331421,
+ "learning_rate": 0.0006,
+ "loss": 3.7144742012023926,
+ "step": 2246
+ },
+ {
+ "epoch": 31.209698558322412,
+ "grad_norm": 0.26563164591789246,
+ "learning_rate": 0.0006,
+ "loss": 3.741182327270508,
+ "step": 2247
+ },
+ {
+ "epoch": 31.22367846221057,
+ "grad_norm": 0.26326918601989746,
+ "learning_rate": 0.0006,
+ "loss": 3.7306275367736816,
+ "step": 2248
+ },
+ {
+ "epoch": 31.23765836609873,
+ "grad_norm": 0.23020948469638824,
+ "learning_rate": 0.0006,
+ "loss": 3.7212486267089844,
+ "step": 2249
+ },
+ {
+ "epoch": 31.251638269986895,
+ "grad_norm": 0.21207433938980103,
+ "learning_rate": 0.0006,
+ "loss": 3.6914258003234863,
+ "step": 2250
+ },
+ {
+ "epoch": 31.265618173875055,
+ "grad_norm": 0.2392292022705078,
+ "learning_rate": 0.0006,
+ "loss": 3.7117457389831543,
+ "step": 2251
+ },
+ {
+ "epoch": 31.279598077763215,
+ "grad_norm": 0.22084997594356537,
+ "learning_rate": 0.0006,
+ "loss": 3.728043794631958,
+ "step": 2252
+ },
+ {
+ "epoch": 31.293577981651374,
+ "grad_norm": 0.20818188786506653,
+ "learning_rate": 0.0006,
+ "loss": 3.751762866973877,
+ "step": 2253
+ },
+ {
+ "epoch": 31.307557885539538,
+ "grad_norm": 0.21866194903850555,
+ "learning_rate": 0.0006,
+ "loss": 3.72676420211792,
+ "step": 2254
+ },
+ {
+ "epoch": 31.321537789427698,
+ "grad_norm": 0.20727522671222687,
+ "learning_rate": 0.0006,
+ "loss": 3.735708236694336,
+ "step": 2255
+ },
+ {
+ "epoch": 31.335517693315857,
+ "grad_norm": 0.20655220746994019,
+ "learning_rate": 0.0006,
+ "loss": 3.714116096496582,
+ "step": 2256
+ },
+ {
+ "epoch": 31.34949759720402,
+ "grad_norm": 0.21738854050636292,
+ "learning_rate": 0.0006,
+ "loss": 3.731657028198242,
+ "step": 2257
+ },
+ {
+ "epoch": 31.36347750109218,
+ "grad_norm": 0.20758475363254547,
+ "learning_rate": 0.0006,
+ "loss": 3.7378528118133545,
+ "step": 2258
+ },
+ {
+ "epoch": 31.37745740498034,
+ "grad_norm": 0.20107139647006989,
+ "learning_rate": 0.0006,
+ "loss": 3.748572826385498,
+ "step": 2259
+ },
+ {
+ "epoch": 31.3914373088685,
+ "grad_norm": 0.18707452714443207,
+ "learning_rate": 0.0006,
+ "loss": 3.7237391471862793,
+ "step": 2260
+ },
+ {
+ "epoch": 31.405417212756664,
+ "grad_norm": 0.20745301246643066,
+ "learning_rate": 0.0006,
+ "loss": 3.734435558319092,
+ "step": 2261
+ },
+ {
+ "epoch": 31.419397116644824,
+ "grad_norm": 0.20793399214744568,
+ "learning_rate": 0.0006,
+ "loss": 3.7639012336730957,
+ "step": 2262
+ },
+ {
+ "epoch": 31.433377020532983,
+ "grad_norm": 0.20193757116794586,
+ "learning_rate": 0.0006,
+ "loss": 3.754117727279663,
+ "step": 2263
+ },
+ {
+ "epoch": 31.447356924421143,
+ "grad_norm": 0.1912323236465454,
+ "learning_rate": 0.0006,
+ "loss": 3.728111982345581,
+ "step": 2264
+ },
+ {
+ "epoch": 31.461336828309307,
+ "grad_norm": 0.19441582262516022,
+ "learning_rate": 0.0006,
+ "loss": 3.7533278465270996,
+ "step": 2265
+ },
+ {
+ "epoch": 31.475316732197467,
+ "grad_norm": 0.19807079434394836,
+ "learning_rate": 0.0006,
+ "loss": 3.7351698875427246,
+ "step": 2266
+ },
+ {
+ "epoch": 31.489296636085626,
+ "grad_norm": 0.20373263955116272,
+ "learning_rate": 0.0006,
+ "loss": 3.714097023010254,
+ "step": 2267
+ },
+ {
+ "epoch": 31.503276539973786,
+ "grad_norm": 0.21868768334388733,
+ "learning_rate": 0.0006,
+ "loss": 3.736743688583374,
+ "step": 2268
+ },
+ {
+ "epoch": 31.51725644386195,
+ "grad_norm": 0.20767922699451447,
+ "learning_rate": 0.0006,
+ "loss": 3.7097702026367188,
+ "step": 2269
+ },
+ {
+ "epoch": 31.53123634775011,
+ "grad_norm": 0.18425600230693817,
+ "learning_rate": 0.0006,
+ "loss": 3.7349140644073486,
+ "step": 2270
+ },
+ {
+ "epoch": 31.54521625163827,
+ "grad_norm": 0.18813826143741608,
+ "learning_rate": 0.0006,
+ "loss": 3.7023448944091797,
+ "step": 2271
+ },
+ {
+ "epoch": 31.55919615552643,
+ "grad_norm": 0.1892116516828537,
+ "learning_rate": 0.0006,
+ "loss": 3.7170143127441406,
+ "step": 2272
+ },
+ {
+ "epoch": 31.573176059414592,
+ "grad_norm": 0.2067834585905075,
+ "learning_rate": 0.0006,
+ "loss": 3.7312588691711426,
+ "step": 2273
+ },
+ {
+ "epoch": 31.587155963302752,
+ "grad_norm": 0.204023078083992,
+ "learning_rate": 0.0006,
+ "loss": 3.7399091720581055,
+ "step": 2274
+ },
+ {
+ "epoch": 31.601135867190912,
+ "grad_norm": 0.20245152711868286,
+ "learning_rate": 0.0006,
+ "loss": 3.7259416580200195,
+ "step": 2275
+ },
+ {
+ "epoch": 31.615115771079076,
+ "grad_norm": 0.21125490963459015,
+ "learning_rate": 0.0006,
+ "loss": 3.7217836380004883,
+ "step": 2276
+ },
+ {
+ "epoch": 31.629095674967235,
+ "grad_norm": 0.2093241959810257,
+ "learning_rate": 0.0006,
+ "loss": 3.707627773284912,
+ "step": 2277
+ },
+ {
+ "epoch": 31.643075578855395,
+ "grad_norm": 0.19290480017662048,
+ "learning_rate": 0.0006,
+ "loss": 3.7467126846313477,
+ "step": 2278
+ },
+ {
+ "epoch": 31.657055482743555,
+ "grad_norm": 0.1853940635919571,
+ "learning_rate": 0.0006,
+ "loss": 3.7565581798553467,
+ "step": 2279
+ },
+ {
+ "epoch": 31.67103538663172,
+ "grad_norm": 0.18917642533779144,
+ "learning_rate": 0.0006,
+ "loss": 3.7286229133605957,
+ "step": 2280
+ },
+ {
+ "epoch": 31.68501529051988,
+ "grad_norm": 0.2094079703092575,
+ "learning_rate": 0.0006,
+ "loss": 3.7297096252441406,
+ "step": 2281
+ },
+ {
+ "epoch": 31.698995194408038,
+ "grad_norm": 0.20020027458667755,
+ "learning_rate": 0.0006,
+ "loss": 3.7565250396728516,
+ "step": 2282
+ },
+ {
+ "epoch": 31.712975098296198,
+ "grad_norm": 0.19156186282634735,
+ "learning_rate": 0.0006,
+ "loss": 3.7401509284973145,
+ "step": 2283
+ },
+ {
+ "epoch": 31.72695500218436,
+ "grad_norm": 0.19176368415355682,
+ "learning_rate": 0.0006,
+ "loss": 3.751206398010254,
+ "step": 2284
+ },
+ {
+ "epoch": 31.74093490607252,
+ "grad_norm": 0.18351277709007263,
+ "learning_rate": 0.0006,
+ "loss": 3.752984046936035,
+ "step": 2285
+ },
+ {
+ "epoch": 31.75491480996068,
+ "grad_norm": 0.1879221349954605,
+ "learning_rate": 0.0006,
+ "loss": 3.7156834602355957,
+ "step": 2286
+ },
+ {
+ "epoch": 31.76889471384884,
+ "grad_norm": 0.19232559204101562,
+ "learning_rate": 0.0006,
+ "loss": 3.732879638671875,
+ "step": 2287
+ },
+ {
+ "epoch": 31.782874617737004,
+ "grad_norm": 0.18484069406986237,
+ "learning_rate": 0.0006,
+ "loss": 3.7489013671875,
+ "step": 2288
+ },
+ {
+ "epoch": 31.796854521625164,
+ "grad_norm": 0.20705144107341766,
+ "learning_rate": 0.0006,
+ "loss": 3.7214112281799316,
+ "step": 2289
+ },
+ {
+ "epoch": 31.810834425513324,
+ "grad_norm": 0.23424774408340454,
+ "learning_rate": 0.0006,
+ "loss": 3.714550256729126,
+ "step": 2290
+ },
+ {
+ "epoch": 31.824814329401484,
+ "grad_norm": 0.24061693251132965,
+ "learning_rate": 0.0006,
+ "loss": 3.717336654663086,
+ "step": 2291
+ },
+ {
+ "epoch": 31.838794233289647,
+ "grad_norm": 0.23156678676605225,
+ "learning_rate": 0.0006,
+ "loss": 3.7345399856567383,
+ "step": 2292
+ },
+ {
+ "epoch": 31.852774137177807,
+ "grad_norm": 0.2256302684545517,
+ "learning_rate": 0.0006,
+ "loss": 3.7596092224121094,
+ "step": 2293
+ },
+ {
+ "epoch": 31.866754041065967,
+ "grad_norm": 0.2118781954050064,
+ "learning_rate": 0.0006,
+ "loss": 3.725433588027954,
+ "step": 2294
+ },
+ {
+ "epoch": 31.88073394495413,
+ "grad_norm": 0.1874573826789856,
+ "learning_rate": 0.0006,
+ "loss": 3.738901138305664,
+ "step": 2295
+ },
+ {
+ "epoch": 31.89471384884229,
+ "grad_norm": 0.2062024176120758,
+ "learning_rate": 0.0006,
+ "loss": 3.7439217567443848,
+ "step": 2296
+ },
+ {
+ "epoch": 31.90869375273045,
+ "grad_norm": 0.19886671006679535,
+ "learning_rate": 0.0006,
+ "loss": 3.7583155632019043,
+ "step": 2297
+ },
+ {
+ "epoch": 31.92267365661861,
+ "grad_norm": 0.2079734355211258,
+ "learning_rate": 0.0006,
+ "loss": 3.7251501083374023,
+ "step": 2298
+ },
+ {
+ "epoch": 31.936653560506773,
+ "grad_norm": 0.19710204005241394,
+ "learning_rate": 0.0006,
+ "loss": 3.765778064727783,
+ "step": 2299
+ },
+ {
+ "epoch": 31.950633464394933,
+ "grad_norm": 0.1949392408132553,
+ "learning_rate": 0.0006,
+ "loss": 3.7634787559509277,
+ "step": 2300
+ },
+ {
+ "epoch": 31.964613368283093,
+ "grad_norm": 0.21466250717639923,
+ "learning_rate": 0.0006,
+ "loss": 3.7673215866088867,
+ "step": 2301
+ },
+ {
+ "epoch": 31.978593272171253,
+ "grad_norm": 0.21624267101287842,
+ "learning_rate": 0.0006,
+ "loss": 3.7617220878601074,
+ "step": 2302
+ },
+ {
+ "epoch": 31.992573176059416,
+ "grad_norm": 0.22880229353904724,
+ "learning_rate": 0.0006,
+ "loss": 3.7190351486206055,
+ "step": 2303
+ },
+ {
+ "epoch": 32.0,
+ "grad_norm": 0.23227518796920776,
+ "learning_rate": 0.0006,
+ "loss": 3.740169048309326,
+ "step": 2304
+ },
+ {
+ "epoch": 32.0,
+ "eval_loss": 4.017981052398682,
+ "eval_runtime": 44.4134,
+ "eval_samples_per_second": 54.983,
+ "eval_steps_per_second": 3.445,
+ "step": 2304
+ },
+ {
+ "epoch": 32.01397990388816,
+ "grad_norm": 0.1893721967935562,
+ "learning_rate": 0.0006,
+ "loss": 3.71738338470459,
+ "step": 2305
+ },
+ {
+ "epoch": 32.02795980777632,
+ "grad_norm": 0.23771171271800995,
+ "learning_rate": 0.0006,
+ "loss": 3.71402645111084,
+ "step": 2306
+ },
+ {
+ "epoch": 32.04193971166448,
+ "grad_norm": 0.26343807578086853,
+ "learning_rate": 0.0006,
+ "loss": 3.6926395893096924,
+ "step": 2307
+ },
+ {
+ "epoch": 32.05591961555265,
+ "grad_norm": 0.25092509388923645,
+ "learning_rate": 0.0006,
+ "loss": 3.715243339538574,
+ "step": 2308
+ },
+ {
+ "epoch": 32.0698995194408,
+ "grad_norm": 0.23148509860038757,
+ "learning_rate": 0.0006,
+ "loss": 3.690734386444092,
+ "step": 2309
+ },
+ {
+ "epoch": 32.083879423328966,
+ "grad_norm": 0.23314623534679413,
+ "learning_rate": 0.0006,
+ "loss": 3.6980109214782715,
+ "step": 2310
+ },
+ {
+ "epoch": 32.09785932721712,
+ "grad_norm": 0.2210417091846466,
+ "learning_rate": 0.0006,
+ "loss": 3.7395730018615723,
+ "step": 2311
+ },
+ {
+ "epoch": 32.111839231105286,
+ "grad_norm": 0.20263685286045074,
+ "learning_rate": 0.0006,
+ "loss": 3.678412914276123,
+ "step": 2312
+ },
+ {
+ "epoch": 32.12581913499345,
+ "grad_norm": 0.20412251353263855,
+ "learning_rate": 0.0006,
+ "loss": 3.688762903213501,
+ "step": 2313
+ },
+ {
+ "epoch": 32.139799038881605,
+ "grad_norm": 0.2041679322719574,
+ "learning_rate": 0.0006,
+ "loss": 3.7231521606445312,
+ "step": 2314
+ },
+ {
+ "epoch": 32.15377894276977,
+ "grad_norm": 0.23270174860954285,
+ "learning_rate": 0.0006,
+ "loss": 3.7102620601654053,
+ "step": 2315
+ },
+ {
+ "epoch": 32.16775884665793,
+ "grad_norm": 0.25470519065856934,
+ "learning_rate": 0.0006,
+ "loss": 3.7353053092956543,
+ "step": 2316
+ },
+ {
+ "epoch": 32.18173875054609,
+ "grad_norm": 0.2930106222629547,
+ "learning_rate": 0.0006,
+ "loss": 3.7418713569641113,
+ "step": 2317
+ },
+ {
+ "epoch": 32.19571865443425,
+ "grad_norm": 0.3181219696998596,
+ "learning_rate": 0.0006,
+ "loss": 3.6716184616088867,
+ "step": 2318
+ },
+ {
+ "epoch": 32.20969855832241,
+ "grad_norm": 0.2752978801727295,
+ "learning_rate": 0.0006,
+ "loss": 3.70334792137146,
+ "step": 2319
+ },
+ {
+ "epoch": 32.22367846221057,
+ "grad_norm": 0.28381186723709106,
+ "learning_rate": 0.0006,
+ "loss": 3.719794750213623,
+ "step": 2320
+ },
+ {
+ "epoch": 32.237658366098735,
+ "grad_norm": 0.3287750482559204,
+ "learning_rate": 0.0006,
+ "loss": 3.7363362312316895,
+ "step": 2321
+ },
+ {
+ "epoch": 32.25163826998689,
+ "grad_norm": 0.32669803500175476,
+ "learning_rate": 0.0006,
+ "loss": 3.739394426345825,
+ "step": 2322
+ },
+ {
+ "epoch": 32.265618173875055,
+ "grad_norm": 0.27423885464668274,
+ "learning_rate": 0.0006,
+ "loss": 3.7381205558776855,
+ "step": 2323
+ },
+ {
+ "epoch": 32.27959807776322,
+ "grad_norm": 0.2594660818576813,
+ "learning_rate": 0.0006,
+ "loss": 3.698683738708496,
+ "step": 2324
+ },
+ {
+ "epoch": 32.293577981651374,
+ "grad_norm": 0.2785511016845703,
+ "learning_rate": 0.0006,
+ "loss": 3.688774824142456,
+ "step": 2325
+ },
+ {
+ "epoch": 32.30755788553954,
+ "grad_norm": 0.2690320611000061,
+ "learning_rate": 0.0006,
+ "loss": 3.7209150791168213,
+ "step": 2326
+ },
+ {
+ "epoch": 32.3215377894277,
+ "grad_norm": 0.23331770300865173,
+ "learning_rate": 0.0006,
+ "loss": 3.682931423187256,
+ "step": 2327
+ },
+ {
+ "epoch": 32.33551769331586,
+ "grad_norm": 0.22380802035331726,
+ "learning_rate": 0.0006,
+ "loss": 3.720445156097412,
+ "step": 2328
+ },
+ {
+ "epoch": 32.34949759720402,
+ "grad_norm": 0.2065964937210083,
+ "learning_rate": 0.0006,
+ "loss": 3.705427885055542,
+ "step": 2329
+ },
+ {
+ "epoch": 32.36347750109218,
+ "grad_norm": 0.20701853930950165,
+ "learning_rate": 0.0006,
+ "loss": 3.7078697681427,
+ "step": 2330
+ },
+ {
+ "epoch": 32.37745740498034,
+ "grad_norm": 0.2063559591770172,
+ "learning_rate": 0.0006,
+ "loss": 3.745004653930664,
+ "step": 2331
+ },
+ {
+ "epoch": 32.391437308868504,
+ "grad_norm": 0.19377011060714722,
+ "learning_rate": 0.0006,
+ "loss": 3.713808059692383,
+ "step": 2332
+ },
+ {
+ "epoch": 32.40541721275666,
+ "grad_norm": 0.19260725378990173,
+ "learning_rate": 0.0006,
+ "loss": 3.717043876647949,
+ "step": 2333
+ },
+ {
+ "epoch": 32.419397116644824,
+ "grad_norm": 0.20792821049690247,
+ "learning_rate": 0.0006,
+ "loss": 3.68632173538208,
+ "step": 2334
+ },
+ {
+ "epoch": 32.43337702053299,
+ "grad_norm": 0.22278444468975067,
+ "learning_rate": 0.0006,
+ "loss": 3.7345821857452393,
+ "step": 2335
+ },
+ {
+ "epoch": 32.44735692442114,
+ "grad_norm": 0.22533579170703888,
+ "learning_rate": 0.0006,
+ "loss": 3.7224173545837402,
+ "step": 2336
+ },
+ {
+ "epoch": 32.46133682830931,
+ "grad_norm": 0.20228394865989685,
+ "learning_rate": 0.0006,
+ "loss": 3.748530149459839,
+ "step": 2337
+ },
+ {
+ "epoch": 32.47531673219746,
+ "grad_norm": 0.19944614171981812,
+ "learning_rate": 0.0006,
+ "loss": 3.707085371017456,
+ "step": 2338
+ },
+ {
+ "epoch": 32.489296636085626,
+ "grad_norm": 0.19856145977973938,
+ "learning_rate": 0.0006,
+ "loss": 3.6898274421691895,
+ "step": 2339
+ },
+ {
+ "epoch": 32.50327653997379,
+ "grad_norm": 0.20734605193138123,
+ "learning_rate": 0.0006,
+ "loss": 3.7511792182922363,
+ "step": 2340
+ },
+ {
+ "epoch": 32.517256443861946,
+ "grad_norm": 0.19489309191703796,
+ "learning_rate": 0.0006,
+ "loss": 3.736445426940918,
+ "step": 2341
+ },
+ {
+ "epoch": 32.53123634775011,
+ "grad_norm": 0.18899282813072205,
+ "learning_rate": 0.0006,
+ "loss": 3.727325916290283,
+ "step": 2342
+ },
+ {
+ "epoch": 32.54521625163827,
+ "grad_norm": 0.19670401513576508,
+ "learning_rate": 0.0006,
+ "loss": 3.7326102256774902,
+ "step": 2343
+ },
+ {
+ "epoch": 32.55919615552643,
+ "grad_norm": 0.20061780512332916,
+ "learning_rate": 0.0006,
+ "loss": 3.698716402053833,
+ "step": 2344
+ },
+ {
+ "epoch": 32.57317605941459,
+ "grad_norm": 0.1991659700870514,
+ "learning_rate": 0.0006,
+ "loss": 3.6913180351257324,
+ "step": 2345
+ },
+ {
+ "epoch": 32.58715596330275,
+ "grad_norm": 0.18856225907802582,
+ "learning_rate": 0.0006,
+ "loss": 3.7130961418151855,
+ "step": 2346
+ },
+ {
+ "epoch": 32.60113586719091,
+ "grad_norm": 0.1983972191810608,
+ "learning_rate": 0.0006,
+ "loss": 3.7530808448791504,
+ "step": 2347
+ },
+ {
+ "epoch": 32.615115771079076,
+ "grad_norm": 0.2037997543811798,
+ "learning_rate": 0.0006,
+ "loss": 3.7076587677001953,
+ "step": 2348
+ },
+ {
+ "epoch": 32.62909567496723,
+ "grad_norm": 0.21008458733558655,
+ "learning_rate": 0.0006,
+ "loss": 3.7379021644592285,
+ "step": 2349
+ },
+ {
+ "epoch": 32.643075578855395,
+ "grad_norm": 0.2129313349723816,
+ "learning_rate": 0.0006,
+ "loss": 3.7031373977661133,
+ "step": 2350
+ },
+ {
+ "epoch": 32.65705548274356,
+ "grad_norm": 0.18756245076656342,
+ "learning_rate": 0.0006,
+ "loss": 3.7066285610198975,
+ "step": 2351
+ },
+ {
+ "epoch": 32.671035386631715,
+ "grad_norm": 0.17946591973304749,
+ "learning_rate": 0.0006,
+ "loss": 3.73781681060791,
+ "step": 2352
+ },
+ {
+ "epoch": 32.68501529051988,
+ "grad_norm": 0.18983198702335358,
+ "learning_rate": 0.0006,
+ "loss": 3.718855381011963,
+ "step": 2353
+ },
+ {
+ "epoch": 32.69899519440804,
+ "grad_norm": 0.2080942839384079,
+ "learning_rate": 0.0006,
+ "loss": 3.7111258506774902,
+ "step": 2354
+ },
+ {
+ "epoch": 32.7129750982962,
+ "grad_norm": 0.23633413016796112,
+ "learning_rate": 0.0006,
+ "loss": 3.709766149520874,
+ "step": 2355
+ },
+ {
+ "epoch": 32.72695500218436,
+ "grad_norm": 0.2723144590854645,
+ "learning_rate": 0.0006,
+ "loss": 3.745850086212158,
+ "step": 2356
+ },
+ {
+ "epoch": 32.74093490607252,
+ "grad_norm": 0.29774025082588196,
+ "learning_rate": 0.0006,
+ "loss": 3.733771324157715,
+ "step": 2357
+ },
+ {
+ "epoch": 32.75491480996068,
+ "grad_norm": 0.25976699590682983,
+ "learning_rate": 0.0006,
+ "loss": 3.734194278717041,
+ "step": 2358
+ },
+ {
+ "epoch": 32.768894713848844,
+ "grad_norm": 0.20038039982318878,
+ "learning_rate": 0.0006,
+ "loss": 3.735656261444092,
+ "step": 2359
+ },
+ {
+ "epoch": 32.782874617737,
+ "grad_norm": 0.19745637476444244,
+ "learning_rate": 0.0006,
+ "loss": 3.7335894107818604,
+ "step": 2360
+ },
+ {
+ "epoch": 32.796854521625164,
+ "grad_norm": 0.22022396326065063,
+ "learning_rate": 0.0006,
+ "loss": 3.708998680114746,
+ "step": 2361
+ },
+ {
+ "epoch": 32.81083442551333,
+ "grad_norm": 0.24754752218723297,
+ "learning_rate": 0.0006,
+ "loss": 3.7616286277770996,
+ "step": 2362
+ },
+ {
+ "epoch": 32.824814329401484,
+ "grad_norm": 0.26438358426094055,
+ "learning_rate": 0.0006,
+ "loss": 3.737079620361328,
+ "step": 2363
+ },
+ {
+ "epoch": 32.83879423328965,
+ "grad_norm": 0.2507241666316986,
+ "learning_rate": 0.0006,
+ "loss": 3.708500385284424,
+ "step": 2364
+ },
+ {
+ "epoch": 32.8527741371778,
+ "grad_norm": 0.25688016414642334,
+ "learning_rate": 0.0006,
+ "loss": 3.7389419078826904,
+ "step": 2365
+ },
+ {
+ "epoch": 32.86675404106597,
+ "grad_norm": 0.257447749376297,
+ "learning_rate": 0.0006,
+ "loss": 3.7253334522247314,
+ "step": 2366
+ },
+ {
+ "epoch": 32.88073394495413,
+ "grad_norm": 0.2621215879917145,
+ "learning_rate": 0.0006,
+ "loss": 3.773163318634033,
+ "step": 2367
+ },
+ {
+ "epoch": 32.89471384884229,
+ "grad_norm": 0.23554839193820953,
+ "learning_rate": 0.0006,
+ "loss": 3.7534430027008057,
+ "step": 2368
+ },
+ {
+ "epoch": 32.90869375273045,
+ "grad_norm": 0.19698940217494965,
+ "learning_rate": 0.0006,
+ "loss": 3.7094414234161377,
+ "step": 2369
+ },
+ {
+ "epoch": 32.92267365661861,
+ "grad_norm": 0.21380476653575897,
+ "learning_rate": 0.0006,
+ "loss": 3.7666497230529785,
+ "step": 2370
+ },
+ {
+ "epoch": 32.93665356050677,
+ "grad_norm": 0.20876452326774597,
+ "learning_rate": 0.0006,
+ "loss": 3.7467992305755615,
+ "step": 2371
+ },
+ {
+ "epoch": 32.95063346439493,
+ "grad_norm": 0.1989884227514267,
+ "learning_rate": 0.0006,
+ "loss": 3.749878168106079,
+ "step": 2372
+ },
+ {
+ "epoch": 32.964613368283096,
+ "grad_norm": 0.19089168310165405,
+ "learning_rate": 0.0006,
+ "loss": 3.7211015224456787,
+ "step": 2373
+ },
+ {
+ "epoch": 32.97859327217125,
+ "grad_norm": 0.1962461918592453,
+ "learning_rate": 0.0006,
+ "loss": 3.728684425354004,
+ "step": 2374
+ },
+ {
+ "epoch": 32.992573176059416,
+ "grad_norm": 0.22518110275268555,
+ "learning_rate": 0.0006,
+ "loss": 3.7361507415771484,
+ "step": 2375
+ },
+ {
+ "epoch": 33.0,
+ "grad_norm": 0.26704078912734985,
+ "learning_rate": 0.0006,
+ "loss": 3.7478318214416504,
+ "step": 2376
+ },
+ {
+ "epoch": 33.0,
+ "eval_loss": 4.024221897125244,
+ "eval_runtime": 43.9826,
+ "eval_samples_per_second": 55.522,
+ "eval_steps_per_second": 3.479,
+ "step": 2376
+ },
+ {
+ "epoch": 33.01397990388816,
+ "grad_norm": 0.23387742042541504,
+ "learning_rate": 0.0006,
+ "loss": 3.7043614387512207,
+ "step": 2377
+ },
+ {
+ "epoch": 33.02795980777632,
+ "grad_norm": 0.21334673464298248,
+ "learning_rate": 0.0006,
+ "loss": 3.6714677810668945,
+ "step": 2378
+ },
+ {
+ "epoch": 33.04193971166448,
+ "grad_norm": 0.2608581483364105,
+ "learning_rate": 0.0006,
+ "loss": 3.678460121154785,
+ "step": 2379
+ },
+ {
+ "epoch": 33.05591961555265,
+ "grad_norm": 0.31364381313323975,
+ "learning_rate": 0.0006,
+ "loss": 3.6771793365478516,
+ "step": 2380
+ },
+ {
+ "epoch": 33.0698995194408,
+ "grad_norm": 0.31785935163497925,
+ "learning_rate": 0.0006,
+ "loss": 3.7248926162719727,
+ "step": 2381
+ },
+ {
+ "epoch": 33.083879423328966,
+ "grad_norm": 0.29244646430015564,
+ "learning_rate": 0.0006,
+ "loss": 3.677882194519043,
+ "step": 2382
+ },
+ {
+ "epoch": 33.09785932721712,
+ "grad_norm": 0.23943741619586945,
+ "learning_rate": 0.0006,
+ "loss": 3.7365124225616455,
+ "step": 2383
+ },
+ {
+ "epoch": 33.111839231105286,
+ "grad_norm": 0.2547394931316376,
+ "learning_rate": 0.0006,
+ "loss": 3.7031357288360596,
+ "step": 2384
+ },
+ {
+ "epoch": 33.12581913499345,
+ "grad_norm": 0.2696659564971924,
+ "learning_rate": 0.0006,
+ "loss": 3.6904754638671875,
+ "step": 2385
+ },
+ {
+ "epoch": 33.139799038881605,
+ "grad_norm": 0.24271385371685028,
+ "learning_rate": 0.0006,
+ "loss": 3.7137649059295654,
+ "step": 2386
+ },
+ {
+ "epoch": 33.15377894276977,
+ "grad_norm": 0.23435993492603302,
+ "learning_rate": 0.0006,
+ "loss": 3.707383632659912,
+ "step": 2387
+ },
+ {
+ "epoch": 33.16775884665793,
+ "grad_norm": 0.21428440511226654,
+ "learning_rate": 0.0006,
+ "loss": 3.7148897647857666,
+ "step": 2388
+ },
+ {
+ "epoch": 33.18173875054609,
+ "grad_norm": 0.22420962154865265,
+ "learning_rate": 0.0006,
+ "loss": 3.710111141204834,
+ "step": 2389
+ },
+ {
+ "epoch": 33.19571865443425,
+ "grad_norm": 0.26222777366638184,
+ "learning_rate": 0.0006,
+ "loss": 3.677438259124756,
+ "step": 2390
+ },
+ {
+ "epoch": 33.20969855832241,
+ "grad_norm": 0.29910165071487427,
+ "learning_rate": 0.0006,
+ "loss": 3.6895523071289062,
+ "step": 2391
+ },
+ {
+ "epoch": 33.22367846221057,
+ "grad_norm": 0.2615569531917572,
+ "learning_rate": 0.0006,
+ "loss": 3.7339906692504883,
+ "step": 2392
+ },
+ {
+ "epoch": 33.237658366098735,
+ "grad_norm": 0.23396961390972137,
+ "learning_rate": 0.0006,
+ "loss": 3.7179932594299316,
+ "step": 2393
+ },
+ {
+ "epoch": 33.25163826998689,
+ "grad_norm": 0.24844495952129364,
+ "learning_rate": 0.0006,
+ "loss": 3.7191576957702637,
+ "step": 2394
+ },
+ {
+ "epoch": 33.265618173875055,
+ "grad_norm": 0.2306993454694748,
+ "learning_rate": 0.0006,
+ "loss": 3.7172658443450928,
+ "step": 2395
+ },
+ {
+ "epoch": 33.27959807776322,
+ "grad_norm": 0.24935221672058105,
+ "learning_rate": 0.0006,
+ "loss": 3.6917519569396973,
+ "step": 2396
+ },
+ {
+ "epoch": 33.293577981651374,
+ "grad_norm": 0.2522840201854706,
+ "learning_rate": 0.0006,
+ "loss": 3.7263593673706055,
+ "step": 2397
+ },
+ {
+ "epoch": 33.30755788553954,
+ "grad_norm": 0.26411181688308716,
+ "learning_rate": 0.0006,
+ "loss": 3.6981635093688965,
+ "step": 2398
+ },
+ {
+ "epoch": 33.3215377894277,
+ "grad_norm": 0.22396239638328552,
+ "learning_rate": 0.0006,
+ "loss": 3.713247299194336,
+ "step": 2399
+ },
+ {
+ "epoch": 33.33551769331586,
+ "grad_norm": 0.20579157769680023,
+ "learning_rate": 0.0006,
+ "loss": 3.7058467864990234,
+ "step": 2400
+ },
+ {
+ "epoch": 33.34949759720402,
+ "grad_norm": 0.20103922486305237,
+ "learning_rate": 0.0006,
+ "loss": 3.700924873352051,
+ "step": 2401
+ },
+ {
+ "epoch": 33.36347750109218,
+ "grad_norm": 0.19964663684368134,
+ "learning_rate": 0.0006,
+ "loss": 3.6985437870025635,
+ "step": 2402
+ },
+ {
+ "epoch": 33.37745740498034,
+ "grad_norm": 0.20860575139522552,
+ "learning_rate": 0.0006,
+ "loss": 3.7480058670043945,
+ "step": 2403
+ },
+ {
+ "epoch": 33.391437308868504,
+ "grad_norm": 0.19043605029582977,
+ "learning_rate": 0.0006,
+ "loss": 3.6952016353607178,
+ "step": 2404
+ },
+ {
+ "epoch": 33.40541721275666,
+ "grad_norm": 0.1968909204006195,
+ "learning_rate": 0.0006,
+ "loss": 3.69362735748291,
+ "step": 2405
+ },
+ {
+ "epoch": 33.419397116644824,
+ "grad_norm": 0.23492494225502014,
+ "learning_rate": 0.0006,
+ "loss": 3.707993984222412,
+ "step": 2406
+ },
+ {
+ "epoch": 33.43337702053299,
+ "grad_norm": 0.23970453441143036,
+ "learning_rate": 0.0006,
+ "loss": 3.707731246948242,
+ "step": 2407
+ },
+ {
+ "epoch": 33.44735692442114,
+ "grad_norm": 0.2515844404697418,
+ "learning_rate": 0.0006,
+ "loss": 3.723824977874756,
+ "step": 2408
+ },
+ {
+ "epoch": 33.46133682830931,
+ "grad_norm": 0.2343570590019226,
+ "learning_rate": 0.0006,
+ "loss": 3.7068886756896973,
+ "step": 2409
+ },
+ {
+ "epoch": 33.47531673219746,
+ "grad_norm": 0.23419860005378723,
+ "learning_rate": 0.0006,
+ "loss": 3.6964287757873535,
+ "step": 2410
+ },
+ {
+ "epoch": 33.489296636085626,
+ "grad_norm": 0.21280375123023987,
+ "learning_rate": 0.0006,
+ "loss": 3.7020950317382812,
+ "step": 2411
+ },
+ {
+ "epoch": 33.50327653997379,
+ "grad_norm": 0.2061092108488083,
+ "learning_rate": 0.0006,
+ "loss": 3.750861406326294,
+ "step": 2412
+ },
+ {
+ "epoch": 33.517256443861946,
+ "grad_norm": 0.19693219661712646,
+ "learning_rate": 0.0006,
+ "loss": 3.717020034790039,
+ "step": 2413
+ },
+ {
+ "epoch": 33.53123634775011,
+ "grad_norm": 0.18199551105499268,
+ "learning_rate": 0.0006,
+ "loss": 3.7242612838745117,
+ "step": 2414
+ },
+ {
+ "epoch": 33.54521625163827,
+ "grad_norm": 0.20131248235702515,
+ "learning_rate": 0.0006,
+ "loss": 3.6758954524993896,
+ "step": 2415
+ },
+ {
+ "epoch": 33.55919615552643,
+ "grad_norm": 0.2219412475824356,
+ "learning_rate": 0.0006,
+ "loss": 3.707927703857422,
+ "step": 2416
+ },
+ {
+ "epoch": 33.57317605941459,
+ "grad_norm": 0.22541435062885284,
+ "learning_rate": 0.0006,
+ "loss": 3.696967601776123,
+ "step": 2417
+ },
+ {
+ "epoch": 33.58715596330275,
+ "grad_norm": 0.20367272198200226,
+ "learning_rate": 0.0006,
+ "loss": 3.730795383453369,
+ "step": 2418
+ },
+ {
+ "epoch": 33.60113586719091,
+ "grad_norm": 0.20861074328422546,
+ "learning_rate": 0.0006,
+ "loss": 3.707066535949707,
+ "step": 2419
+ },
+ {
+ "epoch": 33.615115771079076,
+ "grad_norm": 0.20570263266563416,
+ "learning_rate": 0.0006,
+ "loss": 3.730602502822876,
+ "step": 2420
+ },
+ {
+ "epoch": 33.62909567496723,
+ "grad_norm": 0.21318231523036957,
+ "learning_rate": 0.0006,
+ "loss": 3.7073278427124023,
+ "step": 2421
+ },
+ {
+ "epoch": 33.643075578855395,
+ "grad_norm": 0.2142639458179474,
+ "learning_rate": 0.0006,
+ "loss": 3.718470573425293,
+ "step": 2422
+ },
+ {
+ "epoch": 33.65705548274356,
+ "grad_norm": 0.19620704650878906,
+ "learning_rate": 0.0006,
+ "loss": 3.716036319732666,
+ "step": 2423
+ },
+ {
+ "epoch": 33.671035386631715,
+ "grad_norm": 0.19308267533779144,
+ "learning_rate": 0.0006,
+ "loss": 3.734597682952881,
+ "step": 2424
+ },
+ {
+ "epoch": 33.68501529051988,
+ "grad_norm": 0.19453389942646027,
+ "learning_rate": 0.0006,
+ "loss": 3.726262092590332,
+ "step": 2425
+ },
+ {
+ "epoch": 33.69899519440804,
+ "grad_norm": 0.20405639708042145,
+ "learning_rate": 0.0006,
+ "loss": 3.678340435028076,
+ "step": 2426
+ },
+ {
+ "epoch": 33.7129750982962,
+ "grad_norm": 0.19525611400604248,
+ "learning_rate": 0.0006,
+ "loss": 3.723907470703125,
+ "step": 2427
+ },
+ {
+ "epoch": 33.72695500218436,
+ "grad_norm": 0.19390441477298737,
+ "learning_rate": 0.0006,
+ "loss": 3.707897186279297,
+ "step": 2428
+ },
+ {
+ "epoch": 33.74093490607252,
+ "grad_norm": 0.2032899558544159,
+ "learning_rate": 0.0006,
+ "loss": 3.735041618347168,
+ "step": 2429
+ },
+ {
+ "epoch": 33.75491480996068,
+ "grad_norm": 0.2134784460067749,
+ "learning_rate": 0.0006,
+ "loss": 3.674978017807007,
+ "step": 2430
+ },
+ {
+ "epoch": 33.768894713848844,
+ "grad_norm": 0.24691973626613617,
+ "learning_rate": 0.0006,
+ "loss": 3.7028675079345703,
+ "step": 2431
+ },
+ {
+ "epoch": 33.782874617737,
+ "grad_norm": 0.2272702008485794,
+ "learning_rate": 0.0006,
+ "loss": 3.7277941703796387,
+ "step": 2432
+ },
+ {
+ "epoch": 33.796854521625164,
+ "grad_norm": 0.20052100718021393,
+ "learning_rate": 0.0006,
+ "loss": 3.7146830558776855,
+ "step": 2433
+ },
+ {
+ "epoch": 33.81083442551333,
+ "grad_norm": 0.1958577185869217,
+ "learning_rate": 0.0006,
+ "loss": 3.6936864852905273,
+ "step": 2434
+ },
+ {
+ "epoch": 33.824814329401484,
+ "grad_norm": 0.191860631108284,
+ "learning_rate": 0.0006,
+ "loss": 3.7451858520507812,
+ "step": 2435
+ },
+ {
+ "epoch": 33.83879423328965,
+ "grad_norm": 0.20961424708366394,
+ "learning_rate": 0.0006,
+ "loss": 3.722400665283203,
+ "step": 2436
+ },
+ {
+ "epoch": 33.8527741371778,
+ "grad_norm": 0.19784288108348846,
+ "learning_rate": 0.0006,
+ "loss": 3.712474822998047,
+ "step": 2437
+ },
+ {
+ "epoch": 33.86675404106597,
+ "grad_norm": 0.18645426630973816,
+ "learning_rate": 0.0006,
+ "loss": 3.7054500579833984,
+ "step": 2438
+ },
+ {
+ "epoch": 33.88073394495413,
+ "grad_norm": 0.19622360169887543,
+ "learning_rate": 0.0006,
+ "loss": 3.7010550498962402,
+ "step": 2439
+ },
+ {
+ "epoch": 33.89471384884229,
+ "grad_norm": 0.20283745229244232,
+ "learning_rate": 0.0006,
+ "loss": 3.7252519130706787,
+ "step": 2440
+ },
+ {
+ "epoch": 33.90869375273045,
+ "grad_norm": 0.18671709299087524,
+ "learning_rate": 0.0006,
+ "loss": 3.6932945251464844,
+ "step": 2441
+ },
+ {
+ "epoch": 33.92267365661861,
+ "grad_norm": 0.17953112721443176,
+ "learning_rate": 0.0006,
+ "loss": 3.7453854084014893,
+ "step": 2442
+ },
+ {
+ "epoch": 33.93665356050677,
+ "grad_norm": 0.1945437788963318,
+ "learning_rate": 0.0006,
+ "loss": 3.722881317138672,
+ "step": 2443
+ },
+ {
+ "epoch": 33.95063346439493,
+ "grad_norm": 0.18414495885372162,
+ "learning_rate": 0.0006,
+ "loss": 3.7402591705322266,
+ "step": 2444
+ },
+ {
+ "epoch": 33.964613368283096,
+ "grad_norm": 0.1936541497707367,
+ "learning_rate": 0.0006,
+ "loss": 3.720057964324951,
+ "step": 2445
+ },
+ {
+ "epoch": 33.97859327217125,
+ "grad_norm": 0.20177008211612701,
+ "learning_rate": 0.0006,
+ "loss": 3.6983802318573,
+ "step": 2446
+ },
+ {
+ "epoch": 33.992573176059416,
+ "grad_norm": 0.18977557122707367,
+ "learning_rate": 0.0006,
+ "loss": 3.7202203273773193,
+ "step": 2447
+ },
+ {
+ "epoch": 34.0,
+ "grad_norm": 0.220163956284523,
+ "learning_rate": 0.0006,
+ "loss": 3.72540283203125,
+ "step": 2448
+ },
+ {
+ "epoch": 34.0,
+ "eval_loss": 4.009343147277832,
+ "eval_runtime": 44.1825,
+ "eval_samples_per_second": 55.271,
+ "eval_steps_per_second": 3.463,
+ "step": 2448
+ },
+ {
+ "epoch": 34.01397990388816,
+ "grad_norm": 0.19843372702598572,
+ "learning_rate": 0.0006,
+ "loss": 3.664431571960449,
+ "step": 2449
+ },
+ {
+ "epoch": 34.02795980777632,
+ "grad_norm": 0.20413008332252502,
+ "learning_rate": 0.0006,
+ "loss": 3.699094533920288,
+ "step": 2450
+ },
+ {
+ "epoch": 34.04193971166448,
+ "grad_norm": 0.22086848318576813,
+ "learning_rate": 0.0006,
+ "loss": 3.681825637817383,
+ "step": 2451
+ },
+ {
+ "epoch": 34.05591961555265,
+ "grad_norm": 0.20753061771392822,
+ "learning_rate": 0.0006,
+ "loss": 3.677116870880127,
+ "step": 2452
+ },
+ {
+ "epoch": 34.0698995194408,
+ "grad_norm": 0.21835783123970032,
+ "learning_rate": 0.0006,
+ "loss": 3.7079062461853027,
+ "step": 2453
+ },
+ {
+ "epoch": 34.083879423328966,
+ "grad_norm": 0.2244357019662857,
+ "learning_rate": 0.0006,
+ "loss": 3.69844913482666,
+ "step": 2454
+ },
+ {
+ "epoch": 34.09785932721712,
+ "grad_norm": 0.2238784283399582,
+ "learning_rate": 0.0006,
+ "loss": 3.6835570335388184,
+ "step": 2455
+ },
+ {
+ "epoch": 34.111839231105286,
+ "grad_norm": 0.24816176295280457,
+ "learning_rate": 0.0006,
+ "loss": 3.6832966804504395,
+ "step": 2456
+ },
+ {
+ "epoch": 34.12581913499345,
+ "grad_norm": 0.2445257306098938,
+ "learning_rate": 0.0006,
+ "loss": 3.7190022468566895,
+ "step": 2457
+ },
+ {
+ "epoch": 34.139799038881605,
+ "grad_norm": 0.24510814249515533,
+ "learning_rate": 0.0006,
+ "loss": 3.678098201751709,
+ "step": 2458
+ },
+ {
+ "epoch": 34.15377894276977,
+ "grad_norm": 0.2550753653049469,
+ "learning_rate": 0.0006,
+ "loss": 3.69335675239563,
+ "step": 2459
+ },
+ {
+ "epoch": 34.16775884665793,
+ "grad_norm": 0.2435017228126526,
+ "learning_rate": 0.0006,
+ "loss": 3.70463228225708,
+ "step": 2460
+ },
+ {
+ "epoch": 34.18173875054609,
+ "grad_norm": 0.26441144943237305,
+ "learning_rate": 0.0006,
+ "loss": 3.6757068634033203,
+ "step": 2461
+ },
+ {
+ "epoch": 34.19571865443425,
+ "grad_norm": 0.2737993001937866,
+ "learning_rate": 0.0006,
+ "loss": 3.6510863304138184,
+ "step": 2462
+ },
+ {
+ "epoch": 34.20969855832241,
+ "grad_norm": 0.24625736474990845,
+ "learning_rate": 0.0006,
+ "loss": 3.707612991333008,
+ "step": 2463
+ },
+ {
+ "epoch": 34.22367846221057,
+ "grad_norm": 0.22222039103507996,
+ "learning_rate": 0.0006,
+ "loss": 3.7145133018493652,
+ "step": 2464
+ },
+ {
+ "epoch": 34.237658366098735,
+ "grad_norm": 0.2173531949520111,
+ "learning_rate": 0.0006,
+ "loss": 3.685112476348877,
+ "step": 2465
+ },
+ {
+ "epoch": 34.25163826998689,
+ "grad_norm": 0.23102006316184998,
+ "learning_rate": 0.0006,
+ "loss": 3.6742453575134277,
+ "step": 2466
+ },
+ {
+ "epoch": 34.265618173875055,
+ "grad_norm": 0.22287188470363617,
+ "learning_rate": 0.0006,
+ "loss": 3.7030534744262695,
+ "step": 2467
+ },
+ {
+ "epoch": 34.27959807776322,
+ "grad_norm": 0.20377251505851746,
+ "learning_rate": 0.0006,
+ "loss": 3.6866259574890137,
+ "step": 2468
+ },
+ {
+ "epoch": 34.293577981651374,
+ "grad_norm": 0.19867438077926636,
+ "learning_rate": 0.0006,
+ "loss": 3.70395565032959,
+ "step": 2469
+ },
+ {
+ "epoch": 34.30755788553954,
+ "grad_norm": 0.2014918178319931,
+ "learning_rate": 0.0006,
+ "loss": 3.660795211791992,
+ "step": 2470
+ },
+ {
+ "epoch": 34.3215377894277,
+ "grad_norm": 0.20981402695178986,
+ "learning_rate": 0.0006,
+ "loss": 3.7045323848724365,
+ "step": 2471
+ },
+ {
+ "epoch": 34.33551769331586,
+ "grad_norm": 0.20968124270439148,
+ "learning_rate": 0.0006,
+ "loss": 3.7113170623779297,
+ "step": 2472
+ },
+ {
+ "epoch": 34.34949759720402,
+ "grad_norm": 0.2214043140411377,
+ "learning_rate": 0.0006,
+ "loss": 3.7330074310302734,
+ "step": 2473
+ },
+ {
+ "epoch": 34.36347750109218,
+ "grad_norm": 0.21231533586978912,
+ "learning_rate": 0.0006,
+ "loss": 3.6706933975219727,
+ "step": 2474
+ },
+ {
+ "epoch": 34.37745740498034,
+ "grad_norm": 0.2022094875574112,
+ "learning_rate": 0.0006,
+ "loss": 3.7230453491210938,
+ "step": 2475
+ },
+ {
+ "epoch": 34.391437308868504,
+ "grad_norm": 0.2281145304441452,
+ "learning_rate": 0.0006,
+ "loss": 3.7197465896606445,
+ "step": 2476
+ },
+ {
+ "epoch": 34.40541721275666,
+ "grad_norm": 0.2147362381219864,
+ "learning_rate": 0.0006,
+ "loss": 3.7092337608337402,
+ "step": 2477
+ },
+ {
+ "epoch": 34.419397116644824,
+ "grad_norm": 0.19984203577041626,
+ "learning_rate": 0.0006,
+ "loss": 3.6939496994018555,
+ "step": 2478
+ },
+ {
+ "epoch": 34.43337702053299,
+ "grad_norm": 0.21088480949401855,
+ "learning_rate": 0.0006,
+ "loss": 3.6942667961120605,
+ "step": 2479
+ },
+ {
+ "epoch": 34.44735692442114,
+ "grad_norm": 0.20444616675376892,
+ "learning_rate": 0.0006,
+ "loss": 3.718186378479004,
+ "step": 2480
+ },
+ {
+ "epoch": 34.46133682830931,
+ "grad_norm": 0.19133952260017395,
+ "learning_rate": 0.0006,
+ "loss": 3.697197437286377,
+ "step": 2481
+ },
+ {
+ "epoch": 34.47531673219746,
+ "grad_norm": 0.2219255417585373,
+ "learning_rate": 0.0006,
+ "loss": 3.684386730194092,
+ "step": 2482
+ },
+ {
+ "epoch": 34.489296636085626,
+ "grad_norm": 0.2480643391609192,
+ "learning_rate": 0.0006,
+ "loss": 3.6656622886657715,
+ "step": 2483
+ },
+ {
+ "epoch": 34.50327653997379,
+ "grad_norm": 0.22907346487045288,
+ "learning_rate": 0.0006,
+ "loss": 3.741391897201538,
+ "step": 2484
+ },
+ {
+ "epoch": 34.517256443861946,
+ "grad_norm": 0.20277173817157745,
+ "learning_rate": 0.0006,
+ "loss": 3.7062582969665527,
+ "step": 2485
+ },
+ {
+ "epoch": 34.53123634775011,
+ "grad_norm": 0.21411100029945374,
+ "learning_rate": 0.0006,
+ "loss": 3.691784381866455,
+ "step": 2486
+ },
+ {
+ "epoch": 34.54521625163827,
+ "grad_norm": 0.20261600613594055,
+ "learning_rate": 0.0006,
+ "loss": 3.6855502128601074,
+ "step": 2487
+ },
+ {
+ "epoch": 34.55919615552643,
+ "grad_norm": 0.23913109302520752,
+ "learning_rate": 0.0006,
+ "loss": 3.670754909515381,
+ "step": 2488
+ },
+ {
+ "epoch": 34.57317605941459,
+ "grad_norm": 0.24427077174186707,
+ "learning_rate": 0.0006,
+ "loss": 3.700611114501953,
+ "step": 2489
+ },
+ {
+ "epoch": 34.58715596330275,
+ "grad_norm": 0.20305761694908142,
+ "learning_rate": 0.0006,
+ "loss": 3.7284226417541504,
+ "step": 2490
+ },
+ {
+ "epoch": 34.60113586719091,
+ "grad_norm": 0.20398905873298645,
+ "learning_rate": 0.0006,
+ "loss": 3.6860880851745605,
+ "step": 2491
+ },
+ {
+ "epoch": 34.615115771079076,
+ "grad_norm": 0.21016651391983032,
+ "learning_rate": 0.0006,
+ "loss": 3.7366015911102295,
+ "step": 2492
+ },
+ {
+ "epoch": 34.62909567496723,
+ "grad_norm": 0.22279402613639832,
+ "learning_rate": 0.0006,
+ "loss": 3.7024295330047607,
+ "step": 2493
+ },
+ {
+ "epoch": 34.643075578855395,
+ "grad_norm": 0.25080347061157227,
+ "learning_rate": 0.0006,
+ "loss": 3.68355655670166,
+ "step": 2494
+ },
+ {
+ "epoch": 34.65705548274356,
+ "grad_norm": 0.2702971398830414,
+ "learning_rate": 0.0006,
+ "loss": 3.7400612831115723,
+ "step": 2495
+ },
+ {
+ "epoch": 34.671035386631715,
+ "grad_norm": 0.299398273229599,
+ "learning_rate": 0.0006,
+ "loss": 3.7160325050354004,
+ "step": 2496
+ },
+ {
+ "epoch": 34.68501529051988,
+ "grad_norm": 0.29151082038879395,
+ "learning_rate": 0.0006,
+ "loss": 3.7124147415161133,
+ "step": 2497
+ },
+ {
+ "epoch": 34.69899519440804,
+ "grad_norm": 0.23828288912773132,
+ "learning_rate": 0.0006,
+ "loss": 3.7181267738342285,
+ "step": 2498
+ },
+ {
+ "epoch": 34.7129750982962,
+ "grad_norm": 0.21776588261127472,
+ "learning_rate": 0.0006,
+ "loss": 3.6811792850494385,
+ "step": 2499
+ },
+ {
+ "epoch": 34.72695500218436,
+ "grad_norm": 0.2318469136953354,
+ "learning_rate": 0.0006,
+ "loss": 3.698467254638672,
+ "step": 2500
+ },
+ {
+ "epoch": 34.74093490607252,
+ "grad_norm": 0.22341546416282654,
+ "learning_rate": 0.0006,
+ "loss": 3.7406411170959473,
+ "step": 2501
+ },
+ {
+ "epoch": 34.75491480996068,
+ "grad_norm": 0.20676901936531067,
+ "learning_rate": 0.0006,
+ "loss": 3.6914243698120117,
+ "step": 2502
+ },
+ {
+ "epoch": 34.768894713848844,
+ "grad_norm": 0.20459024608135223,
+ "learning_rate": 0.0006,
+ "loss": 3.713369607925415,
+ "step": 2503
+ },
+ {
+ "epoch": 34.782874617737,
+ "grad_norm": 0.22369320690631866,
+ "learning_rate": 0.0006,
+ "loss": 3.697587490081787,
+ "step": 2504
+ },
+ {
+ "epoch": 34.796854521625164,
+ "grad_norm": 0.2393338829278946,
+ "learning_rate": 0.0006,
+ "loss": 3.7171854972839355,
+ "step": 2505
+ },
+ {
+ "epoch": 34.81083442551333,
+ "grad_norm": 0.23756961524486542,
+ "learning_rate": 0.0006,
+ "loss": 3.6969614028930664,
+ "step": 2506
+ },
+ {
+ "epoch": 34.824814329401484,
+ "grad_norm": 0.22761376202106476,
+ "learning_rate": 0.0006,
+ "loss": 3.722501754760742,
+ "step": 2507
+ },
+ {
+ "epoch": 34.83879423328965,
+ "grad_norm": 0.23564888536930084,
+ "learning_rate": 0.0006,
+ "loss": 3.714003086090088,
+ "step": 2508
+ },
+ {
+ "epoch": 34.8527741371778,
+ "grad_norm": 0.22197313606739044,
+ "learning_rate": 0.0006,
+ "loss": 3.7107110023498535,
+ "step": 2509
+ },
+ {
+ "epoch": 34.86675404106597,
+ "grad_norm": 0.20199328660964966,
+ "learning_rate": 0.0006,
+ "loss": 3.7167551517486572,
+ "step": 2510
+ },
+ {
+ "epoch": 34.88073394495413,
+ "grad_norm": 0.19569700956344604,
+ "learning_rate": 0.0006,
+ "loss": 3.679098129272461,
+ "step": 2511
+ },
+ {
+ "epoch": 34.89471384884229,
+ "grad_norm": 0.21320141851902008,
+ "learning_rate": 0.0006,
+ "loss": 3.733187675476074,
+ "step": 2512
+ },
+ {
+ "epoch": 34.90869375273045,
+ "grad_norm": 0.20074625313282013,
+ "learning_rate": 0.0006,
+ "loss": 3.713339328765869,
+ "step": 2513
+ },
+ {
+ "epoch": 34.92267365661861,
+ "grad_norm": 0.20249252021312714,
+ "learning_rate": 0.0006,
+ "loss": 3.680785655975342,
+ "step": 2514
+ },
+ {
+ "epoch": 34.93665356050677,
+ "grad_norm": 0.22165577113628387,
+ "learning_rate": 0.0006,
+ "loss": 3.696131706237793,
+ "step": 2515
+ },
+ {
+ "epoch": 34.95063346439493,
+ "grad_norm": 0.20769749581813812,
+ "learning_rate": 0.0006,
+ "loss": 3.6910316944122314,
+ "step": 2516
+ },
+ {
+ "epoch": 34.964613368283096,
+ "grad_norm": 0.20857223868370056,
+ "learning_rate": 0.0006,
+ "loss": 3.7327451705932617,
+ "step": 2517
+ },
+ {
+ "epoch": 34.97859327217125,
+ "grad_norm": 0.19155766069889069,
+ "learning_rate": 0.0006,
+ "loss": 3.705609083175659,
+ "step": 2518
+ },
+ {
+ "epoch": 34.992573176059416,
+ "grad_norm": 0.17890529334545135,
+ "learning_rate": 0.0006,
+ "loss": 3.6844797134399414,
+ "step": 2519
+ },
+ {
+ "epoch": 35.0,
+ "grad_norm": 0.2053528130054474,
+ "learning_rate": 0.0006,
+ "loss": 3.6942501068115234,
+ "step": 2520
+ },
+ {
+ "epoch": 35.0,
+ "eval_loss": 3.998469591140747,
+ "eval_runtime": 43.9147,
+ "eval_samples_per_second": 55.608,
+ "eval_steps_per_second": 3.484,
+ "step": 2520
+ },
+ {
+ "epoch": 35.01397990388816,
+ "grad_norm": 0.2288869470357895,
+ "learning_rate": 0.0006,
+ "loss": 3.6966426372528076,
+ "step": 2521
+ },
+ {
+ "epoch": 35.02795980777632,
+ "grad_norm": 0.25702035427093506,
+ "learning_rate": 0.0006,
+ "loss": 3.6622562408447266,
+ "step": 2522
+ },
+ {
+ "epoch": 35.04193971166448,
+ "grad_norm": 0.254422128200531,
+ "learning_rate": 0.0006,
+ "loss": 3.690046548843384,
+ "step": 2523
+ },
+ {
+ "epoch": 35.05591961555265,
+ "grad_norm": 0.24177077412605286,
+ "learning_rate": 0.0006,
+ "loss": 3.685335874557495,
+ "step": 2524
+ },
+ {
+ "epoch": 35.0698995194408,
+ "grad_norm": 0.23959586024284363,
+ "learning_rate": 0.0006,
+ "loss": 3.6534650325775146,
+ "step": 2525
+ },
+ {
+ "epoch": 35.083879423328966,
+ "grad_norm": 0.23474839329719543,
+ "learning_rate": 0.0006,
+ "loss": 3.7092814445495605,
+ "step": 2526
+ },
+ {
+ "epoch": 35.09785932721712,
+ "grad_norm": 0.23240867257118225,
+ "learning_rate": 0.0006,
+ "loss": 3.6819097995758057,
+ "step": 2527
+ },
+ {
+ "epoch": 35.111839231105286,
+ "grad_norm": 0.26267048716545105,
+ "learning_rate": 0.0006,
+ "loss": 3.6566696166992188,
+ "step": 2528
+ },
+ {
+ "epoch": 35.12581913499345,
+ "grad_norm": 0.27070754766464233,
+ "learning_rate": 0.0006,
+ "loss": 3.676304340362549,
+ "step": 2529
+ },
+ {
+ "epoch": 35.139799038881605,
+ "grad_norm": 0.25297826528549194,
+ "learning_rate": 0.0006,
+ "loss": 3.65259051322937,
+ "step": 2530
+ },
+ {
+ "epoch": 35.15377894276977,
+ "grad_norm": 0.22776272892951965,
+ "learning_rate": 0.0006,
+ "loss": 3.6813838481903076,
+ "step": 2531
+ },
+ {
+ "epoch": 35.16775884665793,
+ "grad_norm": 0.2288261204957962,
+ "learning_rate": 0.0006,
+ "loss": 3.6916379928588867,
+ "step": 2532
+ },
+ {
+ "epoch": 35.18173875054609,
+ "grad_norm": 0.20445892214775085,
+ "learning_rate": 0.0006,
+ "loss": 3.6550145149230957,
+ "step": 2533
+ },
+ {
+ "epoch": 35.19571865443425,
+ "grad_norm": 0.20298904180526733,
+ "learning_rate": 0.0006,
+ "loss": 3.704042434692383,
+ "step": 2534
+ },
+ {
+ "epoch": 35.20969855832241,
+ "grad_norm": 0.2264423668384552,
+ "learning_rate": 0.0006,
+ "loss": 3.646308183670044,
+ "step": 2535
+ },
+ {
+ "epoch": 35.22367846221057,
+ "grad_norm": 0.21537378430366516,
+ "learning_rate": 0.0006,
+ "loss": 3.686048984527588,
+ "step": 2536
+ },
+ {
+ "epoch": 35.237658366098735,
+ "grad_norm": 0.19820059835910797,
+ "learning_rate": 0.0006,
+ "loss": 3.6993050575256348,
+ "step": 2537
+ },
+ {
+ "epoch": 35.25163826998689,
+ "grad_norm": 0.19485290348529816,
+ "learning_rate": 0.0006,
+ "loss": 3.6507070064544678,
+ "step": 2538
+ },
+ {
+ "epoch": 35.265618173875055,
+ "grad_norm": 0.21234364807605743,
+ "learning_rate": 0.0006,
+ "loss": 3.6913719177246094,
+ "step": 2539
+ },
+ {
+ "epoch": 35.27959807776322,
+ "grad_norm": 0.19834300875663757,
+ "learning_rate": 0.0006,
+ "loss": 3.6793041229248047,
+ "step": 2540
+ },
+ {
+ "epoch": 35.293577981651374,
+ "grad_norm": 0.1969013512134552,
+ "learning_rate": 0.0006,
+ "loss": 3.7063517570495605,
+ "step": 2541
+ },
+ {
+ "epoch": 35.30755788553954,
+ "grad_norm": 0.196136936545372,
+ "learning_rate": 0.0006,
+ "loss": 3.679825782775879,
+ "step": 2542
+ },
+ {
+ "epoch": 35.3215377894277,
+ "grad_norm": 0.20465479791164398,
+ "learning_rate": 0.0006,
+ "loss": 3.698906421661377,
+ "step": 2543
+ },
+ {
+ "epoch": 35.33551769331586,
+ "grad_norm": 0.204293355345726,
+ "learning_rate": 0.0006,
+ "loss": 3.728549003601074,
+ "step": 2544
+ },
+ {
+ "epoch": 35.34949759720402,
+ "grad_norm": 0.18861903250217438,
+ "learning_rate": 0.0006,
+ "loss": 3.687018632888794,
+ "step": 2545
+ },
+ {
+ "epoch": 35.36347750109218,
+ "grad_norm": 0.19066226482391357,
+ "learning_rate": 0.0006,
+ "loss": 3.667919158935547,
+ "step": 2546
+ },
+ {
+ "epoch": 35.37745740498034,
+ "grad_norm": 0.19985736906528473,
+ "learning_rate": 0.0006,
+ "loss": 3.6697773933410645,
+ "step": 2547
+ },
+ {
+ "epoch": 35.391437308868504,
+ "grad_norm": 0.20669348537921906,
+ "learning_rate": 0.0006,
+ "loss": 3.6718077659606934,
+ "step": 2548
+ },
+ {
+ "epoch": 35.40541721275666,
+ "grad_norm": 0.22164477407932281,
+ "learning_rate": 0.0006,
+ "loss": 3.692106246948242,
+ "step": 2549
+ },
+ {
+ "epoch": 35.419397116644824,
+ "grad_norm": 0.20884688198566437,
+ "learning_rate": 0.0006,
+ "loss": 3.714324712753296,
+ "step": 2550
+ },
+ {
+ "epoch": 35.43337702053299,
+ "grad_norm": 0.21811005473136902,
+ "learning_rate": 0.0006,
+ "loss": 3.678694725036621,
+ "step": 2551
+ },
+ {
+ "epoch": 35.44735692442114,
+ "grad_norm": 0.2427632063627243,
+ "learning_rate": 0.0006,
+ "loss": 3.6584935188293457,
+ "step": 2552
+ },
+ {
+ "epoch": 35.46133682830931,
+ "grad_norm": 0.2584928572177887,
+ "learning_rate": 0.0006,
+ "loss": 3.694148063659668,
+ "step": 2553
+ },
+ {
+ "epoch": 35.47531673219746,
+ "grad_norm": 0.2594548761844635,
+ "learning_rate": 0.0006,
+ "loss": 3.690629005432129,
+ "step": 2554
+ },
+ {
+ "epoch": 35.489296636085626,
+ "grad_norm": 0.2521844208240509,
+ "learning_rate": 0.0006,
+ "loss": 3.6949915885925293,
+ "step": 2555
+ },
+ {
+ "epoch": 35.50327653997379,
+ "grad_norm": 0.2284533679485321,
+ "learning_rate": 0.0006,
+ "loss": 3.6822848320007324,
+ "step": 2556
+ },
+ {
+ "epoch": 35.517256443861946,
+ "grad_norm": 0.2350241094827652,
+ "learning_rate": 0.0006,
+ "loss": 3.6841659545898438,
+ "step": 2557
+ },
+ {
+ "epoch": 35.53123634775011,
+ "grad_norm": 0.22496885061264038,
+ "learning_rate": 0.0006,
+ "loss": 3.676447629928589,
+ "step": 2558
+ },
+ {
+ "epoch": 35.54521625163827,
+ "grad_norm": 0.24326276779174805,
+ "learning_rate": 0.0006,
+ "loss": 3.681678533554077,
+ "step": 2559
+ },
+ {
+ "epoch": 35.55919615552643,
+ "grad_norm": 0.26298362016677856,
+ "learning_rate": 0.0006,
+ "loss": 3.6877617835998535,
+ "step": 2560
+ },
+ {
+ "epoch": 35.57317605941459,
+ "grad_norm": 0.2507239282131195,
+ "learning_rate": 0.0006,
+ "loss": 3.7089176177978516,
+ "step": 2561
+ },
+ {
+ "epoch": 35.58715596330275,
+ "grad_norm": 0.2276458442211151,
+ "learning_rate": 0.0006,
+ "loss": 3.705570936203003,
+ "step": 2562
+ },
+ {
+ "epoch": 35.60113586719091,
+ "grad_norm": 0.23317085206508636,
+ "learning_rate": 0.0006,
+ "loss": 3.6772396564483643,
+ "step": 2563
+ },
+ {
+ "epoch": 35.615115771079076,
+ "grad_norm": 0.23301710188388824,
+ "learning_rate": 0.0006,
+ "loss": 3.694855213165283,
+ "step": 2564
+ },
+ {
+ "epoch": 35.62909567496723,
+ "grad_norm": 0.2170179933309555,
+ "learning_rate": 0.0006,
+ "loss": 3.7095537185668945,
+ "step": 2565
+ },
+ {
+ "epoch": 35.643075578855395,
+ "grad_norm": 0.21211965382099152,
+ "learning_rate": 0.0006,
+ "loss": 3.670109272003174,
+ "step": 2566
+ },
+ {
+ "epoch": 35.65705548274356,
+ "grad_norm": 0.21052585542201996,
+ "learning_rate": 0.0006,
+ "loss": 3.6576027870178223,
+ "step": 2567
+ },
+ {
+ "epoch": 35.671035386631715,
+ "grad_norm": 0.21556039154529572,
+ "learning_rate": 0.0006,
+ "loss": 3.6870639324188232,
+ "step": 2568
+ },
+ {
+ "epoch": 35.68501529051988,
+ "grad_norm": 0.2246469408273697,
+ "learning_rate": 0.0006,
+ "loss": 3.675652503967285,
+ "step": 2569
+ },
+ {
+ "epoch": 35.69899519440804,
+ "grad_norm": 0.21891754865646362,
+ "learning_rate": 0.0006,
+ "loss": 3.692298650741577,
+ "step": 2570
+ },
+ {
+ "epoch": 35.7129750982962,
+ "grad_norm": 0.18774104118347168,
+ "learning_rate": 0.0006,
+ "loss": 3.681035041809082,
+ "step": 2571
+ },
+ {
+ "epoch": 35.72695500218436,
+ "grad_norm": 0.19461573660373688,
+ "learning_rate": 0.0006,
+ "loss": 3.7007932662963867,
+ "step": 2572
+ },
+ {
+ "epoch": 35.74093490607252,
+ "grad_norm": 0.25579094886779785,
+ "learning_rate": 0.0006,
+ "loss": 3.724409580230713,
+ "step": 2573
+ },
+ {
+ "epoch": 35.75491480996068,
+ "grad_norm": 0.27635645866394043,
+ "learning_rate": 0.0006,
+ "loss": 3.68107271194458,
+ "step": 2574
+ },
+ {
+ "epoch": 35.768894713848844,
+ "grad_norm": 0.2233380675315857,
+ "learning_rate": 0.0006,
+ "loss": 3.7123913764953613,
+ "step": 2575
+ },
+ {
+ "epoch": 35.782874617737,
+ "grad_norm": 0.19383835792541504,
+ "learning_rate": 0.0006,
+ "loss": 3.6948328018188477,
+ "step": 2576
+ },
+ {
+ "epoch": 35.796854521625164,
+ "grad_norm": 0.18138426542282104,
+ "learning_rate": 0.0006,
+ "loss": 3.6837103366851807,
+ "step": 2577
+ },
+ {
+ "epoch": 35.81083442551333,
+ "grad_norm": 0.18680135905742645,
+ "learning_rate": 0.0006,
+ "loss": 3.7106502056121826,
+ "step": 2578
+ },
+ {
+ "epoch": 35.824814329401484,
+ "grad_norm": 0.19226312637329102,
+ "learning_rate": 0.0006,
+ "loss": 3.69488787651062,
+ "step": 2579
+ },
+ {
+ "epoch": 35.83879423328965,
+ "grad_norm": 0.19224657118320465,
+ "learning_rate": 0.0006,
+ "loss": 3.7103662490844727,
+ "step": 2580
+ },
+ {
+ "epoch": 35.8527741371778,
+ "grad_norm": 0.18991880118846893,
+ "learning_rate": 0.0006,
+ "loss": 3.7154245376586914,
+ "step": 2581
+ },
+ {
+ "epoch": 35.86675404106597,
+ "grad_norm": 0.2036849409341812,
+ "learning_rate": 0.0006,
+ "loss": 3.723738193511963,
+ "step": 2582
+ },
+ {
+ "epoch": 35.88073394495413,
+ "grad_norm": 0.24730375409126282,
+ "learning_rate": 0.0006,
+ "loss": 3.6830549240112305,
+ "step": 2583
+ },
+ {
+ "epoch": 35.89471384884229,
+ "grad_norm": 0.26552343368530273,
+ "learning_rate": 0.0006,
+ "loss": 3.7025017738342285,
+ "step": 2584
+ },
+ {
+ "epoch": 35.90869375273045,
+ "grad_norm": 0.2621893286705017,
+ "learning_rate": 0.0006,
+ "loss": 3.697399854660034,
+ "step": 2585
+ },
+ {
+ "epoch": 35.92267365661861,
+ "grad_norm": 0.2320089191198349,
+ "learning_rate": 0.0006,
+ "loss": 3.722207546234131,
+ "step": 2586
+ },
+ {
+ "epoch": 35.93665356050677,
+ "grad_norm": 0.1848745346069336,
+ "learning_rate": 0.0006,
+ "loss": 3.711249351501465,
+ "step": 2587
+ },
+ {
+ "epoch": 35.95063346439493,
+ "grad_norm": 0.24218113720417023,
+ "learning_rate": 0.0006,
+ "loss": 3.698894500732422,
+ "step": 2588
+ },
+ {
+ "epoch": 35.964613368283096,
+ "grad_norm": 0.29338452219963074,
+ "learning_rate": 0.0006,
+ "loss": 3.7470521926879883,
+ "step": 2589
+ },
+ {
+ "epoch": 35.97859327217125,
+ "grad_norm": 0.2804136276245117,
+ "learning_rate": 0.0006,
+ "loss": 3.750649929046631,
+ "step": 2590
+ },
+ {
+ "epoch": 35.992573176059416,
+ "grad_norm": 0.26404470205307007,
+ "learning_rate": 0.0006,
+ "loss": 3.6995797157287598,
+ "step": 2591
+ },
+ {
+ "epoch": 36.0,
+ "grad_norm": 0.27446141839027405,
+ "learning_rate": 0.0006,
+ "loss": 3.715768814086914,
+ "step": 2592
+ },
+ {
+ "epoch": 36.0,
+ "eval_loss": 4.007599830627441,
+ "eval_runtime": 44.0149,
+ "eval_samples_per_second": 55.481,
+ "eval_steps_per_second": 3.476,
+ "step": 2592
+ },
+ {
+ "epoch": 36.01397990388816,
+ "grad_norm": 0.2365594208240509,
+ "learning_rate": 0.0006,
+ "loss": 3.6529457569122314,
+ "step": 2593
+ },
+ {
+ "epoch": 36.02795980777632,
+ "grad_norm": 0.24824099242687225,
+ "learning_rate": 0.0006,
+ "loss": 3.6703386306762695,
+ "step": 2594
+ },
+ {
+ "epoch": 36.04193971166448,
+ "grad_norm": 0.26802200078964233,
+ "learning_rate": 0.0006,
+ "loss": 3.688307762145996,
+ "step": 2595
+ },
+ {
+ "epoch": 36.05591961555265,
+ "grad_norm": 0.2552911341190338,
+ "learning_rate": 0.0006,
+ "loss": 3.681797981262207,
+ "step": 2596
+ },
+ {
+ "epoch": 36.0698995194408,
+ "grad_norm": 0.254991739988327,
+ "learning_rate": 0.0006,
+ "loss": 3.644087791442871,
+ "step": 2597
+ },
+ {
+ "epoch": 36.083879423328966,
+ "grad_norm": 0.2496735155582428,
+ "learning_rate": 0.0006,
+ "loss": 3.644047737121582,
+ "step": 2598
+ },
+ {
+ "epoch": 36.09785932721712,
+ "grad_norm": 0.23637443780899048,
+ "learning_rate": 0.0006,
+ "loss": 3.684454917907715,
+ "step": 2599
+ },
+ {
+ "epoch": 36.111839231105286,
+ "grad_norm": 0.22065003216266632,
+ "learning_rate": 0.0006,
+ "loss": 3.661752700805664,
+ "step": 2600
+ },
+ {
+ "epoch": 36.12581913499345,
+ "grad_norm": 0.2292395532131195,
+ "learning_rate": 0.0006,
+ "loss": 3.6709558963775635,
+ "step": 2601
+ },
+ {
+ "epoch": 36.139799038881605,
+ "grad_norm": 0.22295089066028595,
+ "learning_rate": 0.0006,
+ "loss": 3.642230987548828,
+ "step": 2602
+ },
+ {
+ "epoch": 36.15377894276977,
+ "grad_norm": 0.2220531553030014,
+ "learning_rate": 0.0006,
+ "loss": 3.653268814086914,
+ "step": 2603
+ },
+ {
+ "epoch": 36.16775884665793,
+ "grad_norm": 0.21605174243450165,
+ "learning_rate": 0.0006,
+ "loss": 3.6791329383850098,
+ "step": 2604
+ },
+ {
+ "epoch": 36.18173875054609,
+ "grad_norm": 0.20932699739933014,
+ "learning_rate": 0.0006,
+ "loss": 3.6496856212615967,
+ "step": 2605
+ },
+ {
+ "epoch": 36.19571865443425,
+ "grad_norm": 0.20941385626792908,
+ "learning_rate": 0.0006,
+ "loss": 3.6445729732513428,
+ "step": 2606
+ },
+ {
+ "epoch": 36.20969855832241,
+ "grad_norm": 0.1987197995185852,
+ "learning_rate": 0.0006,
+ "loss": 3.6481809616088867,
+ "step": 2607
+ },
+ {
+ "epoch": 36.22367846221057,
+ "grad_norm": 0.19054439663887024,
+ "learning_rate": 0.0006,
+ "loss": 3.66894268989563,
+ "step": 2608
+ },
+ {
+ "epoch": 36.237658366098735,
+ "grad_norm": 0.19940806925296783,
+ "learning_rate": 0.0006,
+ "loss": 3.7123427391052246,
+ "step": 2609
+ },
+ {
+ "epoch": 36.25163826998689,
+ "grad_norm": 0.22157685458660126,
+ "learning_rate": 0.0006,
+ "loss": 3.6707541942596436,
+ "step": 2610
+ },
+ {
+ "epoch": 36.265618173875055,
+ "grad_norm": 0.2362316995859146,
+ "learning_rate": 0.0006,
+ "loss": 3.6906795501708984,
+ "step": 2611
+ },
+ {
+ "epoch": 36.27959807776322,
+ "grad_norm": 0.24560341238975525,
+ "learning_rate": 0.0006,
+ "loss": 3.668379783630371,
+ "step": 2612
+ },
+ {
+ "epoch": 36.293577981651374,
+ "grad_norm": 0.22814054787158966,
+ "learning_rate": 0.0006,
+ "loss": 3.665527820587158,
+ "step": 2613
+ },
+ {
+ "epoch": 36.30755788553954,
+ "grad_norm": 0.2156696617603302,
+ "learning_rate": 0.0006,
+ "loss": 3.673835277557373,
+ "step": 2614
+ },
+ {
+ "epoch": 36.3215377894277,
+ "grad_norm": 0.20152772963047028,
+ "learning_rate": 0.0006,
+ "loss": 3.6512670516967773,
+ "step": 2615
+ },
+ {
+ "epoch": 36.33551769331586,
+ "grad_norm": 0.22466860711574554,
+ "learning_rate": 0.0006,
+ "loss": 3.6877706050872803,
+ "step": 2616
+ },
+ {
+ "epoch": 36.34949759720402,
+ "grad_norm": 0.21688112616539001,
+ "learning_rate": 0.0006,
+ "loss": 3.6895859241485596,
+ "step": 2617
+ },
+ {
+ "epoch": 36.36347750109218,
+ "grad_norm": 0.19836577773094177,
+ "learning_rate": 0.0006,
+ "loss": 3.6658992767333984,
+ "step": 2618
+ },
+ {
+ "epoch": 36.37745740498034,
+ "grad_norm": 0.1995069831609726,
+ "learning_rate": 0.0006,
+ "loss": 3.677614450454712,
+ "step": 2619
+ },
+ {
+ "epoch": 36.391437308868504,
+ "grad_norm": 0.21234792470932007,
+ "learning_rate": 0.0006,
+ "loss": 3.6971967220306396,
+ "step": 2620
+ },
+ {
+ "epoch": 36.40541721275666,
+ "grad_norm": 0.20898285508155823,
+ "learning_rate": 0.0006,
+ "loss": 3.6936516761779785,
+ "step": 2621
+ },
+ {
+ "epoch": 36.419397116644824,
+ "grad_norm": 0.2115008533000946,
+ "learning_rate": 0.0006,
+ "loss": 3.6674065589904785,
+ "step": 2622
+ },
+ {
+ "epoch": 36.43337702053299,
+ "grad_norm": 0.2041143774986267,
+ "learning_rate": 0.0006,
+ "loss": 3.6455483436584473,
+ "step": 2623
+ },
+ {
+ "epoch": 36.44735692442114,
+ "grad_norm": 0.1966932713985443,
+ "learning_rate": 0.0006,
+ "loss": 3.6938109397888184,
+ "step": 2624
+ },
+ {
+ "epoch": 36.46133682830931,
+ "grad_norm": 0.20062223076820374,
+ "learning_rate": 0.0006,
+ "loss": 3.6775765419006348,
+ "step": 2625
+ },
+ {
+ "epoch": 36.47531673219746,
+ "grad_norm": 0.20610390603542328,
+ "learning_rate": 0.0006,
+ "loss": 3.6835384368896484,
+ "step": 2626
+ },
+ {
+ "epoch": 36.489296636085626,
+ "grad_norm": 0.20481473207473755,
+ "learning_rate": 0.0006,
+ "loss": 3.6794047355651855,
+ "step": 2627
+ },
+ {
+ "epoch": 36.50327653997379,
+ "grad_norm": 0.18964581191539764,
+ "learning_rate": 0.0006,
+ "loss": 3.7035841941833496,
+ "step": 2628
+ },
+ {
+ "epoch": 36.517256443861946,
+ "grad_norm": 0.2029343545436859,
+ "learning_rate": 0.0006,
+ "loss": 3.6667590141296387,
+ "step": 2629
+ },
+ {
+ "epoch": 36.53123634775011,
+ "grad_norm": 0.23656968772411346,
+ "learning_rate": 0.0006,
+ "loss": 3.6974546909332275,
+ "step": 2630
+ },
+ {
+ "epoch": 36.54521625163827,
+ "grad_norm": 0.23401431739330292,
+ "learning_rate": 0.0006,
+ "loss": 3.668936252593994,
+ "step": 2631
+ },
+ {
+ "epoch": 36.55919615552643,
+ "grad_norm": 0.22258102893829346,
+ "learning_rate": 0.0006,
+ "loss": 3.667977809906006,
+ "step": 2632
+ },
+ {
+ "epoch": 36.57317605941459,
+ "grad_norm": 0.20849554240703583,
+ "learning_rate": 0.0006,
+ "loss": 3.6674845218658447,
+ "step": 2633
+ },
+ {
+ "epoch": 36.58715596330275,
+ "grad_norm": 0.20684309303760529,
+ "learning_rate": 0.0006,
+ "loss": 3.6828644275665283,
+ "step": 2634
+ },
+ {
+ "epoch": 36.60113586719091,
+ "grad_norm": 0.19114233553409576,
+ "learning_rate": 0.0006,
+ "loss": 3.7084832191467285,
+ "step": 2635
+ },
+ {
+ "epoch": 36.615115771079076,
+ "grad_norm": 0.20382429659366608,
+ "learning_rate": 0.0006,
+ "loss": 3.68354868888855,
+ "step": 2636
+ },
+ {
+ "epoch": 36.62909567496723,
+ "grad_norm": 0.22526590526103973,
+ "learning_rate": 0.0006,
+ "loss": 3.684112310409546,
+ "step": 2637
+ },
+ {
+ "epoch": 36.643075578855395,
+ "grad_norm": 0.20735391974449158,
+ "learning_rate": 0.0006,
+ "loss": 3.67702054977417,
+ "step": 2638
+ },
+ {
+ "epoch": 36.65705548274356,
+ "grad_norm": 0.18549653887748718,
+ "learning_rate": 0.0006,
+ "loss": 3.6840810775756836,
+ "step": 2639
+ },
+ {
+ "epoch": 36.671035386631715,
+ "grad_norm": 0.1805262714624405,
+ "learning_rate": 0.0006,
+ "loss": 3.688119411468506,
+ "step": 2640
+ },
+ {
+ "epoch": 36.68501529051988,
+ "grad_norm": 0.17545704543590546,
+ "learning_rate": 0.0006,
+ "loss": 3.6477861404418945,
+ "step": 2641
+ },
+ {
+ "epoch": 36.69899519440804,
+ "grad_norm": 0.1772221326828003,
+ "learning_rate": 0.0006,
+ "loss": 3.6935806274414062,
+ "step": 2642
+ },
+ {
+ "epoch": 36.7129750982962,
+ "grad_norm": 0.18701671063899994,
+ "learning_rate": 0.0006,
+ "loss": 3.6820428371429443,
+ "step": 2643
+ },
+ {
+ "epoch": 36.72695500218436,
+ "grad_norm": 0.2057863473892212,
+ "learning_rate": 0.0006,
+ "loss": 3.669762134552002,
+ "step": 2644
+ },
+ {
+ "epoch": 36.74093490607252,
+ "grad_norm": 0.2565848231315613,
+ "learning_rate": 0.0006,
+ "loss": 3.717599391937256,
+ "step": 2645
+ },
+ {
+ "epoch": 36.75491480996068,
+ "grad_norm": 0.24362123012542725,
+ "learning_rate": 0.0006,
+ "loss": 3.671900987625122,
+ "step": 2646
+ },
+ {
+ "epoch": 36.768894713848844,
+ "grad_norm": 0.19606009125709534,
+ "learning_rate": 0.0006,
+ "loss": 3.6782546043395996,
+ "step": 2647
+ },
+ {
+ "epoch": 36.782874617737,
+ "grad_norm": 0.1948748379945755,
+ "learning_rate": 0.0006,
+ "loss": 3.6823501586914062,
+ "step": 2648
+ },
+ {
+ "epoch": 36.796854521625164,
+ "grad_norm": 0.22289852797985077,
+ "learning_rate": 0.0006,
+ "loss": 3.693469762802124,
+ "step": 2649
+ },
+ {
+ "epoch": 36.81083442551333,
+ "grad_norm": 0.24751701951026917,
+ "learning_rate": 0.0006,
+ "loss": 3.700678825378418,
+ "step": 2650
+ },
+ {
+ "epoch": 36.824814329401484,
+ "grad_norm": 0.28663966059684753,
+ "learning_rate": 0.0006,
+ "loss": 3.6960878372192383,
+ "step": 2651
+ },
+ {
+ "epoch": 36.83879423328965,
+ "grad_norm": 0.3288552165031433,
+ "learning_rate": 0.0006,
+ "loss": 3.7255043983459473,
+ "step": 2652
+ },
+ {
+ "epoch": 36.8527741371778,
+ "grad_norm": 0.3555443286895752,
+ "learning_rate": 0.0006,
+ "loss": 3.725308418273926,
+ "step": 2653
+ },
+ {
+ "epoch": 36.86675404106597,
+ "grad_norm": 0.3204147219657898,
+ "learning_rate": 0.0006,
+ "loss": 3.7137985229492188,
+ "step": 2654
+ },
+ {
+ "epoch": 36.88073394495413,
+ "grad_norm": 0.2944706976413727,
+ "learning_rate": 0.0006,
+ "loss": 3.7032840251922607,
+ "step": 2655
+ },
+ {
+ "epoch": 36.89471384884229,
+ "grad_norm": 0.2845679223537445,
+ "learning_rate": 0.0006,
+ "loss": 3.6840004920959473,
+ "step": 2656
+ },
+ {
+ "epoch": 36.90869375273045,
+ "grad_norm": 0.2815704047679901,
+ "learning_rate": 0.0006,
+ "loss": 3.6958417892456055,
+ "step": 2657
+ },
+ {
+ "epoch": 36.92267365661861,
+ "grad_norm": 0.2733481228351593,
+ "learning_rate": 0.0006,
+ "loss": 3.677690029144287,
+ "step": 2658
+ },
+ {
+ "epoch": 36.93665356050677,
+ "grad_norm": 0.29572054743766785,
+ "learning_rate": 0.0006,
+ "loss": 3.6983718872070312,
+ "step": 2659
+ },
+ {
+ "epoch": 36.95063346439493,
+ "grad_norm": 0.2487923800945282,
+ "learning_rate": 0.0006,
+ "loss": 3.7041163444519043,
+ "step": 2660
+ },
+ {
+ "epoch": 36.964613368283096,
+ "grad_norm": 0.2541966438293457,
+ "learning_rate": 0.0006,
+ "loss": 3.7038979530334473,
+ "step": 2661
+ },
+ {
+ "epoch": 36.97859327217125,
+ "grad_norm": 0.2441335767507553,
+ "learning_rate": 0.0006,
+ "loss": 3.717966079711914,
+ "step": 2662
+ },
+ {
+ "epoch": 36.992573176059416,
+ "grad_norm": 0.2304554283618927,
+ "learning_rate": 0.0006,
+ "loss": 3.671098232269287,
+ "step": 2663
+ },
+ {
+ "epoch": 37.0,
+ "grad_norm": 0.2346591204404831,
+ "learning_rate": 0.0006,
+ "loss": 3.680298089981079,
+ "step": 2664
+ },
+ {
+ "epoch": 37.0,
+ "eval_loss": 3.9944777488708496,
+ "eval_runtime": 43.9862,
+ "eval_samples_per_second": 55.517,
+ "eval_steps_per_second": 3.478,
+ "step": 2664
+ },
+ {
+ "epoch": 37.01397990388816,
+ "grad_norm": 0.22970618307590485,
+ "learning_rate": 0.0006,
+ "loss": 3.6835923194885254,
+ "step": 2665
+ },
+ {
+ "epoch": 37.02795980777632,
+ "grad_norm": 0.25463759899139404,
+ "learning_rate": 0.0006,
+ "loss": 3.658339023590088,
+ "step": 2666
+ },
+ {
+ "epoch": 37.04193971166448,
+ "grad_norm": 0.2520577311515808,
+ "learning_rate": 0.0006,
+ "loss": 3.6275506019592285,
+ "step": 2667
+ },
+ {
+ "epoch": 37.05591961555265,
+ "grad_norm": 0.22698813676834106,
+ "learning_rate": 0.0006,
+ "loss": 3.65043568611145,
+ "step": 2668
+ },
+ {
+ "epoch": 37.0698995194408,
+ "grad_norm": 0.21133972704410553,
+ "learning_rate": 0.0006,
+ "loss": 3.6262078285217285,
+ "step": 2669
+ },
+ {
+ "epoch": 37.083879423328966,
+ "grad_norm": 0.21940460801124573,
+ "learning_rate": 0.0006,
+ "loss": 3.6709489822387695,
+ "step": 2670
+ },
+ {
+ "epoch": 37.09785932721712,
+ "grad_norm": 0.21897517144680023,
+ "learning_rate": 0.0006,
+ "loss": 3.6621508598327637,
+ "step": 2671
+ },
+ {
+ "epoch": 37.111839231105286,
+ "grad_norm": 0.2270219624042511,
+ "learning_rate": 0.0006,
+ "loss": 3.6334924697875977,
+ "step": 2672
+ },
+ {
+ "epoch": 37.12581913499345,
+ "grad_norm": 0.22082042694091797,
+ "learning_rate": 0.0006,
+ "loss": 3.662209987640381,
+ "step": 2673
+ },
+ {
+ "epoch": 37.139799038881605,
+ "grad_norm": 0.19931960105895996,
+ "learning_rate": 0.0006,
+ "loss": 3.6655359268188477,
+ "step": 2674
+ },
+ {
+ "epoch": 37.15377894276977,
+ "grad_norm": 0.21451307833194733,
+ "learning_rate": 0.0006,
+ "loss": 3.656287670135498,
+ "step": 2675
+ },
+ {
+ "epoch": 37.16775884665793,
+ "grad_norm": 0.2131514698266983,
+ "learning_rate": 0.0006,
+ "loss": 3.635054111480713,
+ "step": 2676
+ },
+ {
+ "epoch": 37.18173875054609,
+ "grad_norm": 0.20425808429718018,
+ "learning_rate": 0.0006,
+ "loss": 3.67653226852417,
+ "step": 2677
+ },
+ {
+ "epoch": 37.19571865443425,
+ "grad_norm": 0.19423379004001617,
+ "learning_rate": 0.0006,
+ "loss": 3.6827316284179688,
+ "step": 2678
+ },
+ {
+ "epoch": 37.20969855832241,
+ "grad_norm": 0.1954883486032486,
+ "learning_rate": 0.0006,
+ "loss": 3.658092498779297,
+ "step": 2679
+ },
+ {
+ "epoch": 37.22367846221057,
+ "grad_norm": 0.21153928339481354,
+ "learning_rate": 0.0006,
+ "loss": 3.6675186157226562,
+ "step": 2680
+ },
+ {
+ "epoch": 37.237658366098735,
+ "grad_norm": 0.2032976895570755,
+ "learning_rate": 0.0006,
+ "loss": 3.6725759506225586,
+ "step": 2681
+ },
+ {
+ "epoch": 37.25163826998689,
+ "grad_norm": 0.19839346408843994,
+ "learning_rate": 0.0006,
+ "loss": 3.660851240158081,
+ "step": 2682
+ },
+ {
+ "epoch": 37.265618173875055,
+ "grad_norm": 0.1884699910879135,
+ "learning_rate": 0.0006,
+ "loss": 3.6653623580932617,
+ "step": 2683
+ },
+ {
+ "epoch": 37.27959807776322,
+ "grad_norm": 0.19558705389499664,
+ "learning_rate": 0.0006,
+ "loss": 3.648016929626465,
+ "step": 2684
+ },
+ {
+ "epoch": 37.293577981651374,
+ "grad_norm": 0.19453682005405426,
+ "learning_rate": 0.0006,
+ "loss": 3.6804773807525635,
+ "step": 2685
+ },
+ {
+ "epoch": 37.30755788553954,
+ "grad_norm": 0.1901177167892456,
+ "learning_rate": 0.0006,
+ "loss": 3.6533353328704834,
+ "step": 2686
+ },
+ {
+ "epoch": 37.3215377894277,
+ "grad_norm": 0.19425596296787262,
+ "learning_rate": 0.0006,
+ "loss": 3.665745735168457,
+ "step": 2687
+ },
+ {
+ "epoch": 37.33551769331586,
+ "grad_norm": 0.17583411931991577,
+ "learning_rate": 0.0006,
+ "loss": 3.679112434387207,
+ "step": 2688
+ },
+ {
+ "epoch": 37.34949759720402,
+ "grad_norm": 0.19667863845825195,
+ "learning_rate": 0.0006,
+ "loss": 3.6650352478027344,
+ "step": 2689
+ },
+ {
+ "epoch": 37.36347750109218,
+ "grad_norm": 0.22803270816802979,
+ "learning_rate": 0.0006,
+ "loss": 3.6658573150634766,
+ "step": 2690
+ },
+ {
+ "epoch": 37.37745740498034,
+ "grad_norm": 0.20589298009872437,
+ "learning_rate": 0.0006,
+ "loss": 3.6587300300598145,
+ "step": 2691
+ },
+ {
+ "epoch": 37.391437308868504,
+ "grad_norm": 0.1946951299905777,
+ "learning_rate": 0.0006,
+ "loss": 3.6515092849731445,
+ "step": 2692
+ },
+ {
+ "epoch": 37.40541721275666,
+ "grad_norm": 0.19029614329338074,
+ "learning_rate": 0.0006,
+ "loss": 3.6383113861083984,
+ "step": 2693
+ },
+ {
+ "epoch": 37.419397116644824,
+ "grad_norm": 0.1944548338651657,
+ "learning_rate": 0.0006,
+ "loss": 3.7017135620117188,
+ "step": 2694
+ },
+ {
+ "epoch": 37.43337702053299,
+ "grad_norm": 0.19482386112213135,
+ "learning_rate": 0.0006,
+ "loss": 3.6791775226593018,
+ "step": 2695
+ },
+ {
+ "epoch": 37.44735692442114,
+ "grad_norm": 0.23276680707931519,
+ "learning_rate": 0.0006,
+ "loss": 3.672245979309082,
+ "step": 2696
+ },
+ {
+ "epoch": 37.46133682830931,
+ "grad_norm": 0.22267542779445648,
+ "learning_rate": 0.0006,
+ "loss": 3.683380365371704,
+ "step": 2697
+ },
+ {
+ "epoch": 37.47531673219746,
+ "grad_norm": 0.1942203938961029,
+ "learning_rate": 0.0006,
+ "loss": 3.6760759353637695,
+ "step": 2698
+ },
+ {
+ "epoch": 37.489296636085626,
+ "grad_norm": 0.21212540566921234,
+ "learning_rate": 0.0006,
+ "loss": 3.660719633102417,
+ "step": 2699
+ },
+ {
+ "epoch": 37.50327653997379,
+ "grad_norm": 0.2365427315235138,
+ "learning_rate": 0.0006,
+ "loss": 3.6727194786071777,
+ "step": 2700
+ },
+ {
+ "epoch": 37.517256443861946,
+ "grad_norm": 0.2379675805568695,
+ "learning_rate": 0.0006,
+ "loss": 3.6691598892211914,
+ "step": 2701
+ },
+ {
+ "epoch": 37.53123634775011,
+ "grad_norm": 0.22142401337623596,
+ "learning_rate": 0.0006,
+ "loss": 3.6882128715515137,
+ "step": 2702
+ },
+ {
+ "epoch": 37.54521625163827,
+ "grad_norm": 0.19993607699871063,
+ "learning_rate": 0.0006,
+ "loss": 3.6651787757873535,
+ "step": 2703
+ },
+ {
+ "epoch": 37.55919615552643,
+ "grad_norm": 0.19934895634651184,
+ "learning_rate": 0.0006,
+ "loss": 3.6680638790130615,
+ "step": 2704
+ },
+ {
+ "epoch": 37.57317605941459,
+ "grad_norm": 0.21202369034290314,
+ "learning_rate": 0.0006,
+ "loss": 3.697615623474121,
+ "step": 2705
+ },
+ {
+ "epoch": 37.58715596330275,
+ "grad_norm": 0.1994577795267105,
+ "learning_rate": 0.0006,
+ "loss": 3.688243865966797,
+ "step": 2706
+ },
+ {
+ "epoch": 37.60113586719091,
+ "grad_norm": 0.20365118980407715,
+ "learning_rate": 0.0006,
+ "loss": 3.6615519523620605,
+ "step": 2707
+ },
+ {
+ "epoch": 37.615115771079076,
+ "grad_norm": 0.22466035187244415,
+ "learning_rate": 0.0006,
+ "loss": 3.703111171722412,
+ "step": 2708
+ },
+ {
+ "epoch": 37.62909567496723,
+ "grad_norm": 0.21140407025814056,
+ "learning_rate": 0.0006,
+ "loss": 3.6744728088378906,
+ "step": 2709
+ },
+ {
+ "epoch": 37.643075578855395,
+ "grad_norm": 0.22220195829868317,
+ "learning_rate": 0.0006,
+ "loss": 3.671501874923706,
+ "step": 2710
+ },
+ {
+ "epoch": 37.65705548274356,
+ "grad_norm": 0.23279480636119843,
+ "learning_rate": 0.0006,
+ "loss": 3.6962859630584717,
+ "step": 2711
+ },
+ {
+ "epoch": 37.671035386631715,
+ "grad_norm": 0.23284408450126648,
+ "learning_rate": 0.0006,
+ "loss": 3.670231342315674,
+ "step": 2712
+ },
+ {
+ "epoch": 37.68501529051988,
+ "grad_norm": 0.21935738623142242,
+ "learning_rate": 0.0006,
+ "loss": 3.6908650398254395,
+ "step": 2713
+ },
+ {
+ "epoch": 37.69899519440804,
+ "grad_norm": 0.2072262167930603,
+ "learning_rate": 0.0006,
+ "loss": 3.7204506397247314,
+ "step": 2714
+ },
+ {
+ "epoch": 37.7129750982962,
+ "grad_norm": 0.22547709941864014,
+ "learning_rate": 0.0006,
+ "loss": 3.6740894317626953,
+ "step": 2715
+ },
+ {
+ "epoch": 37.72695500218436,
+ "grad_norm": 0.2460414469242096,
+ "learning_rate": 0.0006,
+ "loss": 3.6938390731811523,
+ "step": 2716
+ },
+ {
+ "epoch": 37.74093490607252,
+ "grad_norm": 0.24756456911563873,
+ "learning_rate": 0.0006,
+ "loss": 3.692173480987549,
+ "step": 2717
+ },
+ {
+ "epoch": 37.75491480996068,
+ "grad_norm": 0.20149244368076324,
+ "learning_rate": 0.0006,
+ "loss": 3.6677675247192383,
+ "step": 2718
+ },
+ {
+ "epoch": 37.768894713848844,
+ "grad_norm": 0.19834814965724945,
+ "learning_rate": 0.0006,
+ "loss": 3.6717336177825928,
+ "step": 2719
+ },
+ {
+ "epoch": 37.782874617737,
+ "grad_norm": 0.22929978370666504,
+ "learning_rate": 0.0006,
+ "loss": 3.6818275451660156,
+ "step": 2720
+ },
+ {
+ "epoch": 37.796854521625164,
+ "grad_norm": 0.23674434423446655,
+ "learning_rate": 0.0006,
+ "loss": 3.689767360687256,
+ "step": 2721
+ },
+ {
+ "epoch": 37.81083442551333,
+ "grad_norm": 0.22798952460289001,
+ "learning_rate": 0.0006,
+ "loss": 3.6928915977478027,
+ "step": 2722
+ },
+ {
+ "epoch": 37.824814329401484,
+ "grad_norm": 0.2270302027463913,
+ "learning_rate": 0.0006,
+ "loss": 3.6884233951568604,
+ "step": 2723
+ },
+ {
+ "epoch": 37.83879423328965,
+ "grad_norm": 0.23563820123672485,
+ "learning_rate": 0.0006,
+ "loss": 3.6962456703186035,
+ "step": 2724
+ },
+ {
+ "epoch": 37.8527741371778,
+ "grad_norm": 0.2240045815706253,
+ "learning_rate": 0.0006,
+ "loss": 3.6985082626342773,
+ "step": 2725
+ },
+ {
+ "epoch": 37.86675404106597,
+ "grad_norm": 0.21541155874729156,
+ "learning_rate": 0.0006,
+ "loss": 3.6960105895996094,
+ "step": 2726
+ },
+ {
+ "epoch": 37.88073394495413,
+ "grad_norm": 0.23257222771644592,
+ "learning_rate": 0.0006,
+ "loss": 3.667404890060425,
+ "step": 2727
+ },
+ {
+ "epoch": 37.89471384884229,
+ "grad_norm": 0.226792573928833,
+ "learning_rate": 0.0006,
+ "loss": 3.6549744606018066,
+ "step": 2728
+ },
+ {
+ "epoch": 37.90869375273045,
+ "grad_norm": 0.18993401527404785,
+ "learning_rate": 0.0006,
+ "loss": 3.6772334575653076,
+ "step": 2729
+ },
+ {
+ "epoch": 37.92267365661861,
+ "grad_norm": 0.20936095714569092,
+ "learning_rate": 0.0006,
+ "loss": 3.671116352081299,
+ "step": 2730
+ },
+ {
+ "epoch": 37.93665356050677,
+ "grad_norm": 0.2203974425792694,
+ "learning_rate": 0.0006,
+ "loss": 3.6549739837646484,
+ "step": 2731
+ },
+ {
+ "epoch": 37.95063346439493,
+ "grad_norm": 0.19504620134830475,
+ "learning_rate": 0.0006,
+ "loss": 3.6755447387695312,
+ "step": 2732
+ },
+ {
+ "epoch": 37.964613368283096,
+ "grad_norm": 0.2025984674692154,
+ "learning_rate": 0.0006,
+ "loss": 3.678955554962158,
+ "step": 2733
+ },
+ {
+ "epoch": 37.97859327217125,
+ "grad_norm": 0.21556107699871063,
+ "learning_rate": 0.0006,
+ "loss": 3.6680502891540527,
+ "step": 2734
+ },
+ {
+ "epoch": 37.992573176059416,
+ "grad_norm": 0.21011291444301605,
+ "learning_rate": 0.0006,
+ "loss": 3.672039031982422,
+ "step": 2735
+ },
+ {
+ "epoch": 38.0,
+ "grad_norm": 0.23710957169532776,
+ "learning_rate": 0.0006,
+ "loss": 3.6326794624328613,
+ "step": 2736
+ },
+ {
+ "epoch": 38.0,
+ "eval_loss": 3.990501880645752,
+ "eval_runtime": 43.8951,
+ "eval_samples_per_second": 55.633,
+ "eval_steps_per_second": 3.486,
+ "step": 2736
+ },
+ {
+ "epoch": 38.01397990388816,
+ "grad_norm": 0.20711326599121094,
+ "learning_rate": 0.0006,
+ "loss": 3.6364657878875732,
+ "step": 2737
+ },
+ {
+ "epoch": 38.02795980777632,
+ "grad_norm": 0.2250880002975464,
+ "learning_rate": 0.0006,
+ "loss": 3.637646436691284,
+ "step": 2738
+ },
+ {
+ "epoch": 38.04193971166448,
+ "grad_norm": 0.2448352724313736,
+ "learning_rate": 0.0006,
+ "loss": 3.63557767868042,
+ "step": 2739
+ },
+ {
+ "epoch": 38.05591961555265,
+ "grad_norm": 0.23031368851661682,
+ "learning_rate": 0.0006,
+ "loss": 3.627117395401001,
+ "step": 2740
+ },
+ {
+ "epoch": 38.0698995194408,
+ "grad_norm": 0.2045450210571289,
+ "learning_rate": 0.0006,
+ "loss": 3.6594958305358887,
+ "step": 2741
+ },
+ {
+ "epoch": 38.083879423328966,
+ "grad_norm": 0.21253496408462524,
+ "learning_rate": 0.0006,
+ "loss": 3.65494441986084,
+ "step": 2742
+ },
+ {
+ "epoch": 38.09785932721712,
+ "grad_norm": 0.20196112990379333,
+ "learning_rate": 0.0006,
+ "loss": 3.645289421081543,
+ "step": 2743
+ },
+ {
+ "epoch": 38.111839231105286,
+ "grad_norm": 0.20258229970932007,
+ "learning_rate": 0.0006,
+ "loss": 3.6698505878448486,
+ "step": 2744
+ },
+ {
+ "epoch": 38.12581913499345,
+ "grad_norm": 0.22182606160640717,
+ "learning_rate": 0.0006,
+ "loss": 3.6427698135375977,
+ "step": 2745
+ },
+ {
+ "epoch": 38.139799038881605,
+ "grad_norm": 0.21281519532203674,
+ "learning_rate": 0.0006,
+ "loss": 3.668337345123291,
+ "step": 2746
+ },
+ {
+ "epoch": 38.15377894276977,
+ "grad_norm": 0.21680216491222382,
+ "learning_rate": 0.0006,
+ "loss": 3.6362109184265137,
+ "step": 2747
+ },
+ {
+ "epoch": 38.16775884665793,
+ "grad_norm": 0.24396903812885284,
+ "learning_rate": 0.0006,
+ "loss": 3.660510540008545,
+ "step": 2748
+ },
+ {
+ "epoch": 38.18173875054609,
+ "grad_norm": 0.2546434700489044,
+ "learning_rate": 0.0006,
+ "loss": 3.6562418937683105,
+ "step": 2749
+ },
+ {
+ "epoch": 38.19571865443425,
+ "grad_norm": 0.22705447673797607,
+ "learning_rate": 0.0006,
+ "loss": 3.6801514625549316,
+ "step": 2750
+ },
+ {
+ "epoch": 38.20969855832241,
+ "grad_norm": 0.21516330540180206,
+ "learning_rate": 0.0006,
+ "loss": 3.6633429527282715,
+ "step": 2751
+ },
+ {
+ "epoch": 38.22367846221057,
+ "grad_norm": 0.20895853638648987,
+ "learning_rate": 0.0006,
+ "loss": 3.619896411895752,
+ "step": 2752
+ },
+ {
+ "epoch": 38.237658366098735,
+ "grad_norm": 0.21183325350284576,
+ "learning_rate": 0.0006,
+ "loss": 3.639491558074951,
+ "step": 2753
+ },
+ {
+ "epoch": 38.25163826998689,
+ "grad_norm": 0.21439522504806519,
+ "learning_rate": 0.0006,
+ "loss": 3.671931028366089,
+ "step": 2754
+ },
+ {
+ "epoch": 38.265618173875055,
+ "grad_norm": 0.2017785906791687,
+ "learning_rate": 0.0006,
+ "loss": 3.639533519744873,
+ "step": 2755
+ },
+ {
+ "epoch": 38.27959807776322,
+ "grad_norm": 0.20015068352222443,
+ "learning_rate": 0.0006,
+ "loss": 3.654262065887451,
+ "step": 2756
+ },
+ {
+ "epoch": 38.293577981651374,
+ "grad_norm": 0.21518948674201965,
+ "learning_rate": 0.0006,
+ "loss": 3.649919033050537,
+ "step": 2757
+ },
+ {
+ "epoch": 38.30755788553954,
+ "grad_norm": 0.21994580328464508,
+ "learning_rate": 0.0006,
+ "loss": 3.6756131649017334,
+ "step": 2758
+ },
+ {
+ "epoch": 38.3215377894277,
+ "grad_norm": 0.2053978443145752,
+ "learning_rate": 0.0006,
+ "loss": 3.651520252227783,
+ "step": 2759
+ },
+ {
+ "epoch": 38.33551769331586,
+ "grad_norm": 0.2066337615251541,
+ "learning_rate": 0.0006,
+ "loss": 3.6404507160186768,
+ "step": 2760
+ },
+ {
+ "epoch": 38.34949759720402,
+ "grad_norm": 0.20898301899433136,
+ "learning_rate": 0.0006,
+ "loss": 3.637200355529785,
+ "step": 2761
+ },
+ {
+ "epoch": 38.36347750109218,
+ "grad_norm": 0.19212259352207184,
+ "learning_rate": 0.0006,
+ "loss": 3.68394136428833,
+ "step": 2762
+ },
+ {
+ "epoch": 38.37745740498034,
+ "grad_norm": 0.2011883556842804,
+ "learning_rate": 0.0006,
+ "loss": 3.6494975090026855,
+ "step": 2763
+ },
+ {
+ "epoch": 38.391437308868504,
+ "grad_norm": 0.23072998225688934,
+ "learning_rate": 0.0006,
+ "loss": 3.6644320487976074,
+ "step": 2764
+ },
+ {
+ "epoch": 38.40541721275666,
+ "grad_norm": 0.2195347547531128,
+ "learning_rate": 0.0006,
+ "loss": 3.6666269302368164,
+ "step": 2765
+ },
+ {
+ "epoch": 38.419397116644824,
+ "grad_norm": 0.19820117950439453,
+ "learning_rate": 0.0006,
+ "loss": 3.690683364868164,
+ "step": 2766
+ },
+ {
+ "epoch": 38.43337702053299,
+ "grad_norm": 0.20381149649620056,
+ "learning_rate": 0.0006,
+ "loss": 3.6647756099700928,
+ "step": 2767
+ },
+ {
+ "epoch": 38.44735692442114,
+ "grad_norm": 0.19477297365665436,
+ "learning_rate": 0.0006,
+ "loss": 3.6419155597686768,
+ "step": 2768
+ },
+ {
+ "epoch": 38.46133682830931,
+ "grad_norm": 0.20118845999240875,
+ "learning_rate": 0.0006,
+ "loss": 3.678511142730713,
+ "step": 2769
+ },
+ {
+ "epoch": 38.47531673219746,
+ "grad_norm": 0.19538167119026184,
+ "learning_rate": 0.0006,
+ "loss": 3.632112503051758,
+ "step": 2770
+ },
+ {
+ "epoch": 38.489296636085626,
+ "grad_norm": 0.18136411905288696,
+ "learning_rate": 0.0006,
+ "loss": 3.6631078720092773,
+ "step": 2771
+ },
+ {
+ "epoch": 38.50327653997379,
+ "grad_norm": 0.1993526667356491,
+ "learning_rate": 0.0006,
+ "loss": 3.6800379753112793,
+ "step": 2772
+ },
+ {
+ "epoch": 38.517256443861946,
+ "grad_norm": 0.21409109234809875,
+ "learning_rate": 0.0006,
+ "loss": 3.6355738639831543,
+ "step": 2773
+ },
+ {
+ "epoch": 38.53123634775011,
+ "grad_norm": 0.20932911336421967,
+ "learning_rate": 0.0006,
+ "loss": 3.6639811992645264,
+ "step": 2774
+ },
+ {
+ "epoch": 38.54521625163827,
+ "grad_norm": 0.22266243398189545,
+ "learning_rate": 0.0006,
+ "loss": 3.6927733421325684,
+ "step": 2775
+ },
+ {
+ "epoch": 38.55919615552643,
+ "grad_norm": 0.22916539013385773,
+ "learning_rate": 0.0006,
+ "loss": 3.6381587982177734,
+ "step": 2776
+ },
+ {
+ "epoch": 38.57317605941459,
+ "grad_norm": 0.21507245302200317,
+ "learning_rate": 0.0006,
+ "loss": 3.6724753379821777,
+ "step": 2777
+ },
+ {
+ "epoch": 38.58715596330275,
+ "grad_norm": 0.21132487058639526,
+ "learning_rate": 0.0006,
+ "loss": 3.68450927734375,
+ "step": 2778
+ },
+ {
+ "epoch": 38.60113586719091,
+ "grad_norm": 0.2323923259973526,
+ "learning_rate": 0.0006,
+ "loss": 3.6917476654052734,
+ "step": 2779
+ },
+ {
+ "epoch": 38.615115771079076,
+ "grad_norm": 0.2862907648086548,
+ "learning_rate": 0.0006,
+ "loss": 3.6832518577575684,
+ "step": 2780
+ },
+ {
+ "epoch": 38.62909567496723,
+ "grad_norm": 0.28132742643356323,
+ "learning_rate": 0.0006,
+ "loss": 3.6619668006896973,
+ "step": 2781
+ },
+ {
+ "epoch": 38.643075578855395,
+ "grad_norm": 0.24933350086212158,
+ "learning_rate": 0.0006,
+ "loss": 3.6342711448669434,
+ "step": 2782
+ },
+ {
+ "epoch": 38.65705548274356,
+ "grad_norm": 0.23482646048069,
+ "learning_rate": 0.0006,
+ "loss": 3.667548656463623,
+ "step": 2783
+ },
+ {
+ "epoch": 38.671035386631715,
+ "grad_norm": 0.2529793083667755,
+ "learning_rate": 0.0006,
+ "loss": 3.6613709926605225,
+ "step": 2784
+ },
+ {
+ "epoch": 38.68501529051988,
+ "grad_norm": 0.2306097447872162,
+ "learning_rate": 0.0006,
+ "loss": 3.653153419494629,
+ "step": 2785
+ },
+ {
+ "epoch": 38.69899519440804,
+ "grad_norm": 0.21787869930267334,
+ "learning_rate": 0.0006,
+ "loss": 3.6991848945617676,
+ "step": 2786
+ },
+ {
+ "epoch": 38.7129750982962,
+ "grad_norm": 0.24818190932273865,
+ "learning_rate": 0.0006,
+ "loss": 3.664022445678711,
+ "step": 2787
+ },
+ {
+ "epoch": 38.72695500218436,
+ "grad_norm": 0.23205995559692383,
+ "learning_rate": 0.0006,
+ "loss": 3.656064987182617,
+ "step": 2788
+ },
+ {
+ "epoch": 38.74093490607252,
+ "grad_norm": 0.2268102467060089,
+ "learning_rate": 0.0006,
+ "loss": 3.678421974182129,
+ "step": 2789
+ },
+ {
+ "epoch": 38.75491480996068,
+ "grad_norm": 0.22549907863140106,
+ "learning_rate": 0.0006,
+ "loss": 3.6483302116394043,
+ "step": 2790
+ },
+ {
+ "epoch": 38.768894713848844,
+ "grad_norm": 0.2293119877576828,
+ "learning_rate": 0.0006,
+ "loss": 3.646825075149536,
+ "step": 2791
+ },
+ {
+ "epoch": 38.782874617737,
+ "grad_norm": 0.21879418194293976,
+ "learning_rate": 0.0006,
+ "loss": 3.682124614715576,
+ "step": 2792
+ },
+ {
+ "epoch": 38.796854521625164,
+ "grad_norm": 0.22012849152088165,
+ "learning_rate": 0.0006,
+ "loss": 3.6590089797973633,
+ "step": 2793
+ },
+ {
+ "epoch": 38.81083442551333,
+ "grad_norm": 0.2449142336845398,
+ "learning_rate": 0.0006,
+ "loss": 3.7053747177124023,
+ "step": 2794
+ },
+ {
+ "epoch": 38.824814329401484,
+ "grad_norm": 0.2677161395549774,
+ "learning_rate": 0.0006,
+ "loss": 3.666144371032715,
+ "step": 2795
+ },
+ {
+ "epoch": 38.83879423328965,
+ "grad_norm": 0.2654981315135956,
+ "learning_rate": 0.0006,
+ "loss": 3.637512683868408,
+ "step": 2796
+ },
+ {
+ "epoch": 38.8527741371778,
+ "grad_norm": 0.23169654607772827,
+ "learning_rate": 0.0006,
+ "loss": 3.6885948181152344,
+ "step": 2797
+ },
+ {
+ "epoch": 38.86675404106597,
+ "grad_norm": 0.22195108234882355,
+ "learning_rate": 0.0006,
+ "loss": 3.6597604751586914,
+ "step": 2798
+ },
+ {
+ "epoch": 38.88073394495413,
+ "grad_norm": 0.23703525960445404,
+ "learning_rate": 0.0006,
+ "loss": 3.6808712482452393,
+ "step": 2799
+ },
+ {
+ "epoch": 38.89471384884229,
+ "grad_norm": 0.24711088836193085,
+ "learning_rate": 0.0006,
+ "loss": 3.733792781829834,
+ "step": 2800
+ },
+ {
+ "epoch": 38.90869375273045,
+ "grad_norm": 0.216362863779068,
+ "learning_rate": 0.0006,
+ "loss": 3.670599937438965,
+ "step": 2801
+ },
+ {
+ "epoch": 38.92267365661861,
+ "grad_norm": 0.19483810663223267,
+ "learning_rate": 0.0006,
+ "loss": 3.6965198516845703,
+ "step": 2802
+ },
+ {
+ "epoch": 38.93665356050677,
+ "grad_norm": 0.1941208392381668,
+ "learning_rate": 0.0006,
+ "loss": 3.678022861480713,
+ "step": 2803
+ },
+ {
+ "epoch": 38.95063346439493,
+ "grad_norm": 0.1919465959072113,
+ "learning_rate": 0.0006,
+ "loss": 3.6763226985931396,
+ "step": 2804
+ },
+ {
+ "epoch": 38.964613368283096,
+ "grad_norm": 0.2003280073404312,
+ "learning_rate": 0.0006,
+ "loss": 3.670313835144043,
+ "step": 2805
+ },
+ {
+ "epoch": 38.97859327217125,
+ "grad_norm": 0.198478564620018,
+ "learning_rate": 0.0006,
+ "loss": 3.675569772720337,
+ "step": 2806
+ },
+ {
+ "epoch": 38.992573176059416,
+ "grad_norm": 0.23692303895950317,
+ "learning_rate": 0.0006,
+ "loss": 3.696561336517334,
+ "step": 2807
+ },
+ {
+ "epoch": 39.0,
+ "grad_norm": 0.3208145797252655,
+ "learning_rate": 0.0006,
+ "loss": 3.6791436672210693,
+ "step": 2808
+ },
+ {
+ "epoch": 39.0,
+ "eval_loss": 4.0079450607299805,
+ "eval_runtime": 43.8573,
+ "eval_samples_per_second": 55.681,
+ "eval_steps_per_second": 3.489,
+ "step": 2808
+ },
+ {
+ "epoch": 39.01397990388816,
+ "grad_norm": 0.28338733315467834,
+ "learning_rate": 0.0006,
+ "loss": 3.6277060508728027,
+ "step": 2809
+ },
+ {
+ "epoch": 39.02795980777632,
+ "grad_norm": 0.22057899832725525,
+ "learning_rate": 0.0006,
+ "loss": 3.6132822036743164,
+ "step": 2810
+ },
+ {
+ "epoch": 39.04193971166448,
+ "grad_norm": 0.20630282163619995,
+ "learning_rate": 0.0006,
+ "loss": 3.6143927574157715,
+ "step": 2811
+ },
+ {
+ "epoch": 39.05591961555265,
+ "grad_norm": 0.2178523689508438,
+ "learning_rate": 0.0006,
+ "loss": 3.6304664611816406,
+ "step": 2812
+ },
+ {
+ "epoch": 39.0698995194408,
+ "grad_norm": 0.19613824784755707,
+ "learning_rate": 0.0006,
+ "loss": 3.6137919425964355,
+ "step": 2813
+ },
+ {
+ "epoch": 39.083879423328966,
+ "grad_norm": 0.2047276794910431,
+ "learning_rate": 0.0006,
+ "loss": 3.6854846477508545,
+ "step": 2814
+ },
+ {
+ "epoch": 39.09785932721712,
+ "grad_norm": 0.20082715153694153,
+ "learning_rate": 0.0006,
+ "loss": 3.632091522216797,
+ "step": 2815
+ },
+ {
+ "epoch": 39.111839231105286,
+ "grad_norm": 0.21746563911437988,
+ "learning_rate": 0.0006,
+ "loss": 3.640477180480957,
+ "step": 2816
+ },
+ {
+ "epoch": 39.12581913499345,
+ "grad_norm": 0.2128882110118866,
+ "learning_rate": 0.0006,
+ "loss": 3.643984317779541,
+ "step": 2817
+ },
+ {
+ "epoch": 39.139799038881605,
+ "grad_norm": 0.2110479772090912,
+ "learning_rate": 0.0006,
+ "loss": 3.6328823566436768,
+ "step": 2818
+ },
+ {
+ "epoch": 39.15377894276977,
+ "grad_norm": 0.22304436564445496,
+ "learning_rate": 0.0006,
+ "loss": 3.6669845581054688,
+ "step": 2819
+ },
+ {
+ "epoch": 39.16775884665793,
+ "grad_norm": 0.22310666739940643,
+ "learning_rate": 0.0006,
+ "loss": 3.609743595123291,
+ "step": 2820
+ },
+ {
+ "epoch": 39.18173875054609,
+ "grad_norm": 0.21002045273780823,
+ "learning_rate": 0.0006,
+ "loss": 3.601900815963745,
+ "step": 2821
+ },
+ {
+ "epoch": 39.19571865443425,
+ "grad_norm": 0.20531952381134033,
+ "learning_rate": 0.0006,
+ "loss": 3.6405060291290283,
+ "step": 2822
+ },
+ {
+ "epoch": 39.20969855832241,
+ "grad_norm": 0.20646385848522186,
+ "learning_rate": 0.0006,
+ "loss": 3.669617176055908,
+ "step": 2823
+ },
+ {
+ "epoch": 39.22367846221057,
+ "grad_norm": 0.2553980350494385,
+ "learning_rate": 0.0006,
+ "loss": 3.642709255218506,
+ "step": 2824
+ },
+ {
+ "epoch": 39.237658366098735,
+ "grad_norm": 0.2753220498561859,
+ "learning_rate": 0.0006,
+ "loss": 3.668405055999756,
+ "step": 2825
+ },
+ {
+ "epoch": 39.25163826998689,
+ "grad_norm": 0.2425055354833603,
+ "learning_rate": 0.0006,
+ "loss": 3.659559726715088,
+ "step": 2826
+ },
+ {
+ "epoch": 39.265618173875055,
+ "grad_norm": 0.2199426293373108,
+ "learning_rate": 0.0006,
+ "loss": 3.6466197967529297,
+ "step": 2827
+ },
+ {
+ "epoch": 39.27959807776322,
+ "grad_norm": 0.221355602145195,
+ "learning_rate": 0.0006,
+ "loss": 3.639418125152588,
+ "step": 2828
+ },
+ {
+ "epoch": 39.293577981651374,
+ "grad_norm": 0.20777100324630737,
+ "learning_rate": 0.0006,
+ "loss": 3.68102765083313,
+ "step": 2829
+ },
+ {
+ "epoch": 39.30755788553954,
+ "grad_norm": 0.20557557046413422,
+ "learning_rate": 0.0006,
+ "loss": 3.663064956665039,
+ "step": 2830
+ },
+ {
+ "epoch": 39.3215377894277,
+ "grad_norm": 0.2385585904121399,
+ "learning_rate": 0.0006,
+ "loss": 3.6598849296569824,
+ "step": 2831
+ },
+ {
+ "epoch": 39.33551769331586,
+ "grad_norm": 0.25222650170326233,
+ "learning_rate": 0.0006,
+ "loss": 3.635199546813965,
+ "step": 2832
+ },
+ {
+ "epoch": 39.34949759720402,
+ "grad_norm": 0.22894687950611115,
+ "learning_rate": 0.0006,
+ "loss": 3.6100258827209473,
+ "step": 2833
+ },
+ {
+ "epoch": 39.36347750109218,
+ "grad_norm": 0.22945865988731384,
+ "learning_rate": 0.0006,
+ "loss": 3.63069748878479,
+ "step": 2834
+ },
+ {
+ "epoch": 39.37745740498034,
+ "grad_norm": 0.2466309368610382,
+ "learning_rate": 0.0006,
+ "loss": 3.6615123748779297,
+ "step": 2835
+ },
+ {
+ "epoch": 39.391437308868504,
+ "grad_norm": 0.23845571279525757,
+ "learning_rate": 0.0006,
+ "loss": 3.655045509338379,
+ "step": 2836
+ },
+ {
+ "epoch": 39.40541721275666,
+ "grad_norm": 0.20273560285568237,
+ "learning_rate": 0.0006,
+ "loss": 3.6497647762298584,
+ "step": 2837
+ },
+ {
+ "epoch": 39.419397116644824,
+ "grad_norm": 0.19820313155651093,
+ "learning_rate": 0.0006,
+ "loss": 3.6728386878967285,
+ "step": 2838
+ },
+ {
+ "epoch": 39.43337702053299,
+ "grad_norm": 0.21581435203552246,
+ "learning_rate": 0.0006,
+ "loss": 3.660247325897217,
+ "step": 2839
+ },
+ {
+ "epoch": 39.44735692442114,
+ "grad_norm": 0.20559731125831604,
+ "learning_rate": 0.0006,
+ "loss": 3.6244559288024902,
+ "step": 2840
+ },
+ {
+ "epoch": 39.46133682830931,
+ "grad_norm": 0.22041910886764526,
+ "learning_rate": 0.0006,
+ "loss": 3.6577587127685547,
+ "step": 2841
+ },
+ {
+ "epoch": 39.47531673219746,
+ "grad_norm": 0.1966651976108551,
+ "learning_rate": 0.0006,
+ "loss": 3.673975944519043,
+ "step": 2842
+ },
+ {
+ "epoch": 39.489296636085626,
+ "grad_norm": 0.19127163290977478,
+ "learning_rate": 0.0006,
+ "loss": 3.7022414207458496,
+ "step": 2843
+ },
+ {
+ "epoch": 39.50327653997379,
+ "grad_norm": 0.20260316133499146,
+ "learning_rate": 0.0006,
+ "loss": 3.6155128479003906,
+ "step": 2844
+ },
+ {
+ "epoch": 39.517256443861946,
+ "grad_norm": 0.2302546352148056,
+ "learning_rate": 0.0006,
+ "loss": 3.670212984085083,
+ "step": 2845
+ },
+ {
+ "epoch": 39.53123634775011,
+ "grad_norm": 0.2512998878955841,
+ "learning_rate": 0.0006,
+ "loss": 3.6257572174072266,
+ "step": 2846
+ },
+ {
+ "epoch": 39.54521625163827,
+ "grad_norm": 0.24780063331127167,
+ "learning_rate": 0.0006,
+ "loss": 3.6458964347839355,
+ "step": 2847
+ },
+ {
+ "epoch": 39.55919615552643,
+ "grad_norm": 0.21305061876773834,
+ "learning_rate": 0.0006,
+ "loss": 3.666834831237793,
+ "step": 2848
+ },
+ {
+ "epoch": 39.57317605941459,
+ "grad_norm": 0.20699542760849,
+ "learning_rate": 0.0006,
+ "loss": 3.660571813583374,
+ "step": 2849
+ },
+ {
+ "epoch": 39.58715596330275,
+ "grad_norm": 0.20799173414707184,
+ "learning_rate": 0.0006,
+ "loss": 3.649744987487793,
+ "step": 2850
+ },
+ {
+ "epoch": 39.60113586719091,
+ "grad_norm": 0.20118695497512817,
+ "learning_rate": 0.0006,
+ "loss": 3.663865089416504,
+ "step": 2851
+ },
+ {
+ "epoch": 39.615115771079076,
+ "grad_norm": 0.2019277960062027,
+ "learning_rate": 0.0006,
+ "loss": 3.6600584983825684,
+ "step": 2852
+ },
+ {
+ "epoch": 39.62909567496723,
+ "grad_norm": 0.2093067765235901,
+ "learning_rate": 0.0006,
+ "loss": 3.6926870346069336,
+ "step": 2853
+ },
+ {
+ "epoch": 39.643075578855395,
+ "grad_norm": 0.2280927449464798,
+ "learning_rate": 0.0006,
+ "loss": 3.677157402038574,
+ "step": 2854
+ },
+ {
+ "epoch": 39.65705548274356,
+ "grad_norm": 0.219201922416687,
+ "learning_rate": 0.0006,
+ "loss": 3.6763858795166016,
+ "step": 2855
+ },
+ {
+ "epoch": 39.671035386631715,
+ "grad_norm": 0.2132134735584259,
+ "learning_rate": 0.0006,
+ "loss": 3.6853187084198,
+ "step": 2856
+ },
+ {
+ "epoch": 39.68501529051988,
+ "grad_norm": 0.1979551613330841,
+ "learning_rate": 0.0006,
+ "loss": 3.633850574493408,
+ "step": 2857
+ },
+ {
+ "epoch": 39.69899519440804,
+ "grad_norm": 0.2181098908185959,
+ "learning_rate": 0.0006,
+ "loss": 3.671356201171875,
+ "step": 2858
+ },
+ {
+ "epoch": 39.7129750982962,
+ "grad_norm": 0.21820145845413208,
+ "learning_rate": 0.0006,
+ "loss": 3.640101432800293,
+ "step": 2859
+ },
+ {
+ "epoch": 39.72695500218436,
+ "grad_norm": 0.22734931111335754,
+ "learning_rate": 0.0006,
+ "loss": 3.6326088905334473,
+ "step": 2860
+ },
+ {
+ "epoch": 39.74093490607252,
+ "grad_norm": 0.2407236248254776,
+ "learning_rate": 0.0006,
+ "loss": 3.665416955947876,
+ "step": 2861
+ },
+ {
+ "epoch": 39.75491480996068,
+ "grad_norm": 0.2507246434688568,
+ "learning_rate": 0.0006,
+ "loss": 3.6996266841888428,
+ "step": 2862
+ },
+ {
+ "epoch": 39.768894713848844,
+ "grad_norm": 0.2273668497800827,
+ "learning_rate": 0.0006,
+ "loss": 3.6786417961120605,
+ "step": 2863
+ },
+ {
+ "epoch": 39.782874617737,
+ "grad_norm": 0.20584821701049805,
+ "learning_rate": 0.0006,
+ "loss": 3.6539974212646484,
+ "step": 2864
+ },
+ {
+ "epoch": 39.796854521625164,
+ "grad_norm": 0.2327643632888794,
+ "learning_rate": 0.0006,
+ "loss": 3.681267738342285,
+ "step": 2865
+ },
+ {
+ "epoch": 39.81083442551333,
+ "grad_norm": 0.24243171513080597,
+ "learning_rate": 0.0006,
+ "loss": 3.6814589500427246,
+ "step": 2866
+ },
+ {
+ "epoch": 39.824814329401484,
+ "grad_norm": 0.21462969481945038,
+ "learning_rate": 0.0006,
+ "loss": 3.681321620941162,
+ "step": 2867
+ },
+ {
+ "epoch": 39.83879423328965,
+ "grad_norm": 0.20973211526870728,
+ "learning_rate": 0.0006,
+ "loss": 3.636986017227173,
+ "step": 2868
+ },
+ {
+ "epoch": 39.8527741371778,
+ "grad_norm": 0.20357508957386017,
+ "learning_rate": 0.0006,
+ "loss": 3.6664552688598633,
+ "step": 2869
+ },
+ {
+ "epoch": 39.86675404106597,
+ "grad_norm": 0.20389088988304138,
+ "learning_rate": 0.0006,
+ "loss": 3.6685709953308105,
+ "step": 2870
+ },
+ {
+ "epoch": 39.88073394495413,
+ "grad_norm": 0.21024158596992493,
+ "learning_rate": 0.0006,
+ "loss": 3.650658130645752,
+ "step": 2871
+ },
+ {
+ "epoch": 39.89471384884229,
+ "grad_norm": 0.19477778673171997,
+ "learning_rate": 0.0006,
+ "loss": 3.664834976196289,
+ "step": 2872
+ },
+ {
+ "epoch": 39.90869375273045,
+ "grad_norm": 0.22345365583896637,
+ "learning_rate": 0.0006,
+ "loss": 3.6652634143829346,
+ "step": 2873
+ },
+ {
+ "epoch": 39.92267365661861,
+ "grad_norm": 0.206041157245636,
+ "learning_rate": 0.0006,
+ "loss": 3.6649513244628906,
+ "step": 2874
+ },
+ {
+ "epoch": 39.93665356050677,
+ "grad_norm": 0.18524570763111115,
+ "learning_rate": 0.0006,
+ "loss": 3.665579080581665,
+ "step": 2875
+ },
+ {
+ "epoch": 39.95063346439493,
+ "grad_norm": 0.17730890214443207,
+ "learning_rate": 0.0006,
+ "loss": 3.6372880935668945,
+ "step": 2876
+ },
+ {
+ "epoch": 39.964613368283096,
+ "grad_norm": 0.213678777217865,
+ "learning_rate": 0.0006,
+ "loss": 3.681305408477783,
+ "step": 2877
+ },
+ {
+ "epoch": 39.97859327217125,
+ "grad_norm": 0.2595686614513397,
+ "learning_rate": 0.0006,
+ "loss": 3.6660351753234863,
+ "step": 2878
+ },
+ {
+ "epoch": 39.992573176059416,
+ "grad_norm": 0.22678600251674652,
+ "learning_rate": 0.0006,
+ "loss": 3.681619644165039,
+ "step": 2879
+ },
+ {
+ "epoch": 40.0,
+ "grad_norm": 0.2294030636548996,
+ "learning_rate": 0.0006,
+ "loss": 3.654366970062256,
+ "step": 2880
+ },
+ {
+ "epoch": 40.0,
+ "eval_loss": 3.9810431003570557,
+ "eval_runtime": 43.832,
+ "eval_samples_per_second": 55.713,
+ "eval_steps_per_second": 3.491,
+ "step": 2880
+ },
+ {
+ "epoch": 40.01397990388816,
+ "grad_norm": 0.220590278506279,
+ "learning_rate": 0.0006,
+ "loss": 3.6346259117126465,
+ "step": 2881
+ },
+ {
+ "epoch": 40.02795980777632,
+ "grad_norm": 0.2568257749080658,
+ "learning_rate": 0.0006,
+ "loss": 3.64436674118042,
+ "step": 2882
+ },
+ {
+ "epoch": 40.04193971166448,
+ "grad_norm": 0.2869258224964142,
+ "learning_rate": 0.0006,
+ "loss": 3.613316059112549,
+ "step": 2883
+ },
+ {
+ "epoch": 40.05591961555265,
+ "grad_norm": 0.3005172908306122,
+ "learning_rate": 0.0006,
+ "loss": 3.607339859008789,
+ "step": 2884
+ },
+ {
+ "epoch": 40.0698995194408,
+ "grad_norm": 0.28642305731773376,
+ "learning_rate": 0.0006,
+ "loss": 3.65151047706604,
+ "step": 2885
+ },
+ {
+ "epoch": 40.083879423328966,
+ "grad_norm": 0.24176034331321716,
+ "learning_rate": 0.0006,
+ "loss": 3.633742332458496,
+ "step": 2886
+ },
+ {
+ "epoch": 40.09785932721712,
+ "grad_norm": 0.2139386385679245,
+ "learning_rate": 0.0006,
+ "loss": 3.614245653152466,
+ "step": 2887
+ },
+ {
+ "epoch": 40.111839231105286,
+ "grad_norm": 0.28025752305984497,
+ "learning_rate": 0.0006,
+ "loss": 3.6415746212005615,
+ "step": 2888
+ },
+ {
+ "epoch": 40.12581913499345,
+ "grad_norm": 0.28534311056137085,
+ "learning_rate": 0.0006,
+ "loss": 3.6302027702331543,
+ "step": 2889
+ },
+ {
+ "epoch": 40.139799038881605,
+ "grad_norm": 0.26842808723449707,
+ "learning_rate": 0.0006,
+ "loss": 3.657480239868164,
+ "step": 2890
+ },
+ {
+ "epoch": 40.15377894276977,
+ "grad_norm": 0.25235965847969055,
+ "learning_rate": 0.0006,
+ "loss": 3.6843931674957275,
+ "step": 2891
+ },
+ {
+ "epoch": 40.16775884665793,
+ "grad_norm": 0.22192128002643585,
+ "learning_rate": 0.0006,
+ "loss": 3.6374592781066895,
+ "step": 2892
+ },
+ {
+ "epoch": 40.18173875054609,
+ "grad_norm": 0.21524523198604584,
+ "learning_rate": 0.0006,
+ "loss": 3.6052589416503906,
+ "step": 2893
+ },
+ {
+ "epoch": 40.19571865443425,
+ "grad_norm": 0.21011514961719513,
+ "learning_rate": 0.0006,
+ "loss": 3.62197208404541,
+ "step": 2894
+ },
+ {
+ "epoch": 40.20969855832241,
+ "grad_norm": 0.23187001049518585,
+ "learning_rate": 0.0006,
+ "loss": 3.6505377292633057,
+ "step": 2895
+ },
+ {
+ "epoch": 40.22367846221057,
+ "grad_norm": 0.21962887048721313,
+ "learning_rate": 0.0006,
+ "loss": 3.594991683959961,
+ "step": 2896
+ },
+ {
+ "epoch": 40.237658366098735,
+ "grad_norm": 0.23299361765384674,
+ "learning_rate": 0.0006,
+ "loss": 3.6370339393615723,
+ "step": 2897
+ },
+ {
+ "epoch": 40.25163826998689,
+ "grad_norm": 0.22504881024360657,
+ "learning_rate": 0.0006,
+ "loss": 3.6173815727233887,
+ "step": 2898
+ },
+ {
+ "epoch": 40.265618173875055,
+ "grad_norm": 0.21678344905376434,
+ "learning_rate": 0.0006,
+ "loss": 3.6231422424316406,
+ "step": 2899
+ },
+ {
+ "epoch": 40.27959807776322,
+ "grad_norm": 0.2184615284204483,
+ "learning_rate": 0.0006,
+ "loss": 3.6552987098693848,
+ "step": 2900
+ },
+ {
+ "epoch": 40.293577981651374,
+ "grad_norm": 0.2145485281944275,
+ "learning_rate": 0.0006,
+ "loss": 3.628025531768799,
+ "step": 2901
+ },
+ {
+ "epoch": 40.30755788553954,
+ "grad_norm": 0.21119336783885956,
+ "learning_rate": 0.0006,
+ "loss": 3.6511590480804443,
+ "step": 2902
+ },
+ {
+ "epoch": 40.3215377894277,
+ "grad_norm": 0.2158869504928589,
+ "learning_rate": 0.0006,
+ "loss": 3.6302051544189453,
+ "step": 2903
+ },
+ {
+ "epoch": 40.33551769331586,
+ "grad_norm": 0.22736455500125885,
+ "learning_rate": 0.0006,
+ "loss": 3.6678733825683594,
+ "step": 2904
+ },
+ {
+ "epoch": 40.34949759720402,
+ "grad_norm": 0.22723783552646637,
+ "learning_rate": 0.0006,
+ "loss": 3.632068634033203,
+ "step": 2905
+ },
+ {
+ "epoch": 40.36347750109218,
+ "grad_norm": 0.20606189966201782,
+ "learning_rate": 0.0006,
+ "loss": 3.6534624099731445,
+ "step": 2906
+ },
+ {
+ "epoch": 40.37745740498034,
+ "grad_norm": 0.21033786237239838,
+ "learning_rate": 0.0006,
+ "loss": 3.6194064617156982,
+ "step": 2907
+ },
+ {
+ "epoch": 40.391437308868504,
+ "grad_norm": 0.2175762951374054,
+ "learning_rate": 0.0006,
+ "loss": 3.637385368347168,
+ "step": 2908
+ },
+ {
+ "epoch": 40.40541721275666,
+ "grad_norm": 0.21063381433486938,
+ "learning_rate": 0.0006,
+ "loss": 3.656857967376709,
+ "step": 2909
+ },
+ {
+ "epoch": 40.419397116644824,
+ "grad_norm": 0.19982226192951202,
+ "learning_rate": 0.0006,
+ "loss": 3.655738353729248,
+ "step": 2910
+ },
+ {
+ "epoch": 40.43337702053299,
+ "grad_norm": 0.20608870685100555,
+ "learning_rate": 0.0006,
+ "loss": 3.6521377563476562,
+ "step": 2911
+ },
+ {
+ "epoch": 40.44735692442114,
+ "grad_norm": 0.19817334413528442,
+ "learning_rate": 0.0006,
+ "loss": 3.61527681350708,
+ "step": 2912
+ },
+ {
+ "epoch": 40.46133682830931,
+ "grad_norm": 0.20407769083976746,
+ "learning_rate": 0.0006,
+ "loss": 3.6668765544891357,
+ "step": 2913
+ },
+ {
+ "epoch": 40.47531673219746,
+ "grad_norm": 0.19874799251556396,
+ "learning_rate": 0.0006,
+ "loss": 3.6748533248901367,
+ "step": 2914
+ },
+ {
+ "epoch": 40.489296636085626,
+ "grad_norm": 0.1979510486125946,
+ "learning_rate": 0.0006,
+ "loss": 3.6141977310180664,
+ "step": 2915
+ },
+ {
+ "epoch": 40.50327653997379,
+ "grad_norm": 0.19811518490314484,
+ "learning_rate": 0.0006,
+ "loss": 3.6391215324401855,
+ "step": 2916
+ },
+ {
+ "epoch": 40.517256443861946,
+ "grad_norm": 0.20208898186683655,
+ "learning_rate": 0.0006,
+ "loss": 3.664179801940918,
+ "step": 2917
+ },
+ {
+ "epoch": 40.53123634775011,
+ "grad_norm": 0.22063760459423065,
+ "learning_rate": 0.0006,
+ "loss": 3.645388126373291,
+ "step": 2918
+ },
+ {
+ "epoch": 40.54521625163827,
+ "grad_norm": 0.23420891165733337,
+ "learning_rate": 0.0006,
+ "loss": 3.6424708366394043,
+ "step": 2919
+ },
+ {
+ "epoch": 40.55919615552643,
+ "grad_norm": 0.2263612151145935,
+ "learning_rate": 0.0006,
+ "loss": 3.6649224758148193,
+ "step": 2920
+ },
+ {
+ "epoch": 40.57317605941459,
+ "grad_norm": 0.22745433449745178,
+ "learning_rate": 0.0006,
+ "loss": 3.631586790084839,
+ "step": 2921
+ },
+ {
+ "epoch": 40.58715596330275,
+ "grad_norm": 0.22413238883018494,
+ "learning_rate": 0.0006,
+ "loss": 3.6666674613952637,
+ "step": 2922
+ },
+ {
+ "epoch": 40.60113586719091,
+ "grad_norm": 0.2178265005350113,
+ "learning_rate": 0.0006,
+ "loss": 3.6002111434936523,
+ "step": 2923
+ },
+ {
+ "epoch": 40.615115771079076,
+ "grad_norm": 0.21822521090507507,
+ "learning_rate": 0.0006,
+ "loss": 3.6538329124450684,
+ "step": 2924
+ },
+ {
+ "epoch": 40.62909567496723,
+ "grad_norm": 0.21728558838367462,
+ "learning_rate": 0.0006,
+ "loss": 3.651254653930664,
+ "step": 2925
+ },
+ {
+ "epoch": 40.643075578855395,
+ "grad_norm": 0.22377707064151764,
+ "learning_rate": 0.0006,
+ "loss": 3.6505789756774902,
+ "step": 2926
+ },
+ {
+ "epoch": 40.65705548274356,
+ "grad_norm": 0.2035706788301468,
+ "learning_rate": 0.0006,
+ "loss": 3.6471967697143555,
+ "step": 2927
+ },
+ {
+ "epoch": 40.671035386631715,
+ "grad_norm": 0.2011154741048813,
+ "learning_rate": 0.0006,
+ "loss": 3.6582741737365723,
+ "step": 2928
+ },
+ {
+ "epoch": 40.68501529051988,
+ "grad_norm": 0.23812712728977203,
+ "learning_rate": 0.0006,
+ "loss": 3.6388421058654785,
+ "step": 2929
+ },
+ {
+ "epoch": 40.69899519440804,
+ "grad_norm": 0.2117796689271927,
+ "learning_rate": 0.0006,
+ "loss": 3.688337802886963,
+ "step": 2930
+ },
+ {
+ "epoch": 40.7129750982962,
+ "grad_norm": 0.18440942466259003,
+ "learning_rate": 0.0006,
+ "loss": 3.6409997940063477,
+ "step": 2931
+ },
+ {
+ "epoch": 40.72695500218436,
+ "grad_norm": 0.19005917012691498,
+ "learning_rate": 0.0006,
+ "loss": 3.6760218143463135,
+ "step": 2932
+ },
+ {
+ "epoch": 40.74093490607252,
+ "grad_norm": 0.19982726871967316,
+ "learning_rate": 0.0006,
+ "loss": 3.6375021934509277,
+ "step": 2933
+ },
+ {
+ "epoch": 40.75491480996068,
+ "grad_norm": 0.19240257143974304,
+ "learning_rate": 0.0006,
+ "loss": 3.636807918548584,
+ "step": 2934
+ },
+ {
+ "epoch": 40.768894713848844,
+ "grad_norm": 0.20563434064388275,
+ "learning_rate": 0.0006,
+ "loss": 3.6667532920837402,
+ "step": 2935
+ },
+ {
+ "epoch": 40.782874617737,
+ "grad_norm": 0.26531776785850525,
+ "learning_rate": 0.0006,
+ "loss": 3.6332945823669434,
+ "step": 2936
+ },
+ {
+ "epoch": 40.796854521625164,
+ "grad_norm": 0.2766861021518707,
+ "learning_rate": 0.0006,
+ "loss": 3.6645212173461914,
+ "step": 2937
+ },
+ {
+ "epoch": 40.81083442551333,
+ "grad_norm": 0.235750213265419,
+ "learning_rate": 0.0006,
+ "loss": 3.67067813873291,
+ "step": 2938
+ },
+ {
+ "epoch": 40.824814329401484,
+ "grad_norm": 0.20778773725032806,
+ "learning_rate": 0.0006,
+ "loss": 3.6565768718719482,
+ "step": 2939
+ },
+ {
+ "epoch": 40.83879423328965,
+ "grad_norm": 0.187322199344635,
+ "learning_rate": 0.0006,
+ "loss": 3.620129346847534,
+ "step": 2940
+ },
+ {
+ "epoch": 40.8527741371778,
+ "grad_norm": 0.20576219260692596,
+ "learning_rate": 0.0006,
+ "loss": 3.6700220108032227,
+ "step": 2941
+ },
+ {
+ "epoch": 40.86675404106597,
+ "grad_norm": 0.2197345495223999,
+ "learning_rate": 0.0006,
+ "loss": 3.709311008453369,
+ "step": 2942
+ },
+ {
+ "epoch": 40.88073394495413,
+ "grad_norm": 0.20205345749855042,
+ "learning_rate": 0.0006,
+ "loss": 3.6646361351013184,
+ "step": 2943
+ },
+ {
+ "epoch": 40.89471384884229,
+ "grad_norm": 0.20026250183582306,
+ "learning_rate": 0.0006,
+ "loss": 3.6639604568481445,
+ "step": 2944
+ },
+ {
+ "epoch": 40.90869375273045,
+ "grad_norm": 0.224214106798172,
+ "learning_rate": 0.0006,
+ "loss": 3.6669654846191406,
+ "step": 2945
+ },
+ {
+ "epoch": 40.92267365661861,
+ "grad_norm": 0.2155972272157669,
+ "learning_rate": 0.0006,
+ "loss": 3.6494603157043457,
+ "step": 2946
+ },
+ {
+ "epoch": 40.93665356050677,
+ "grad_norm": 0.23038871586322784,
+ "learning_rate": 0.0006,
+ "loss": 3.6368541717529297,
+ "step": 2947
+ },
+ {
+ "epoch": 40.95063346439493,
+ "grad_norm": 0.2001815289258957,
+ "learning_rate": 0.0006,
+ "loss": 3.711174249649048,
+ "step": 2948
+ },
+ {
+ "epoch": 40.964613368283096,
+ "grad_norm": 0.20428860187530518,
+ "learning_rate": 0.0006,
+ "loss": 3.6342315673828125,
+ "step": 2949
+ },
+ {
+ "epoch": 40.97859327217125,
+ "grad_norm": 0.20724134147167206,
+ "learning_rate": 0.0006,
+ "loss": 3.679375171661377,
+ "step": 2950
+ },
+ {
+ "epoch": 40.992573176059416,
+ "grad_norm": 0.20723849534988403,
+ "learning_rate": 0.0006,
+ "loss": 3.6477675437927246,
+ "step": 2951
+ },
+ {
+ "epoch": 41.0,
+ "grad_norm": 0.23891447484493256,
+ "learning_rate": 0.0006,
+ "loss": 3.632950782775879,
+ "step": 2952
+ },
+ {
+ "epoch": 41.0,
+ "eval_loss": 3.9871256351470947,
+ "eval_runtime": 43.8367,
+ "eval_samples_per_second": 55.707,
+ "eval_steps_per_second": 3.49,
+ "step": 2952
+ },
+ {
+ "epoch": 41.01397990388816,
+ "grad_norm": 0.2258434295654297,
+ "learning_rate": 0.0006,
+ "loss": 3.631239414215088,
+ "step": 2953
+ },
+ {
+ "epoch": 41.02795980777632,
+ "grad_norm": 0.24932795763015747,
+ "learning_rate": 0.0006,
+ "loss": 3.601083517074585,
+ "step": 2954
+ },
+ {
+ "epoch": 41.04193971166448,
+ "grad_norm": 0.2688388228416443,
+ "learning_rate": 0.0006,
+ "loss": 3.655724048614502,
+ "step": 2955
+ },
+ {
+ "epoch": 41.05591961555265,
+ "grad_norm": 0.23880694806575775,
+ "learning_rate": 0.0006,
+ "loss": 3.617628812789917,
+ "step": 2956
+ },
+ {
+ "epoch": 41.0698995194408,
+ "grad_norm": 0.23784616589546204,
+ "learning_rate": 0.0006,
+ "loss": 3.6309127807617188,
+ "step": 2957
+ },
+ {
+ "epoch": 41.083879423328966,
+ "grad_norm": 0.22609511017799377,
+ "learning_rate": 0.0006,
+ "loss": 3.6138553619384766,
+ "step": 2958
+ },
+ {
+ "epoch": 41.09785932721712,
+ "grad_norm": 0.22936329245567322,
+ "learning_rate": 0.0006,
+ "loss": 3.6620094776153564,
+ "step": 2959
+ },
+ {
+ "epoch": 41.111839231105286,
+ "grad_norm": 0.23354190587997437,
+ "learning_rate": 0.0006,
+ "loss": 3.59959077835083,
+ "step": 2960
+ },
+ {
+ "epoch": 41.12581913499345,
+ "grad_norm": 0.2496265172958374,
+ "learning_rate": 0.0006,
+ "loss": 3.588359832763672,
+ "step": 2961
+ },
+ {
+ "epoch": 41.139799038881605,
+ "grad_norm": 0.23618635535240173,
+ "learning_rate": 0.0006,
+ "loss": 3.6341018676757812,
+ "step": 2962
+ },
+ {
+ "epoch": 41.15377894276977,
+ "grad_norm": 0.23724640905857086,
+ "learning_rate": 0.0006,
+ "loss": 3.6170616149902344,
+ "step": 2963
+ },
+ {
+ "epoch": 41.16775884665793,
+ "grad_norm": 0.20944789052009583,
+ "learning_rate": 0.0006,
+ "loss": 3.6158995628356934,
+ "step": 2964
+ },
+ {
+ "epoch": 41.18173875054609,
+ "grad_norm": 0.2089492678642273,
+ "learning_rate": 0.0006,
+ "loss": 3.586538314819336,
+ "step": 2965
+ },
+ {
+ "epoch": 41.19571865443425,
+ "grad_norm": 0.2370915710926056,
+ "learning_rate": 0.0006,
+ "loss": 3.599236011505127,
+ "step": 2966
+ },
+ {
+ "epoch": 41.20969855832241,
+ "grad_norm": 0.25749558210372925,
+ "learning_rate": 0.0006,
+ "loss": 3.631399154663086,
+ "step": 2967
+ },
+ {
+ "epoch": 41.22367846221057,
+ "grad_norm": 0.24754776060581207,
+ "learning_rate": 0.0006,
+ "loss": 3.6503920555114746,
+ "step": 2968
+ },
+ {
+ "epoch": 41.237658366098735,
+ "grad_norm": 0.22060903906822205,
+ "learning_rate": 0.0006,
+ "loss": 3.671673536300659,
+ "step": 2969
+ },
+ {
+ "epoch": 41.25163826998689,
+ "grad_norm": 0.19416594505310059,
+ "learning_rate": 0.0006,
+ "loss": 3.6158413887023926,
+ "step": 2970
+ },
+ {
+ "epoch": 41.265618173875055,
+ "grad_norm": 0.22596411406993866,
+ "learning_rate": 0.0006,
+ "loss": 3.64003849029541,
+ "step": 2971
+ },
+ {
+ "epoch": 41.27959807776322,
+ "grad_norm": 0.26785415410995483,
+ "learning_rate": 0.0006,
+ "loss": 3.642327308654785,
+ "step": 2972
+ },
+ {
+ "epoch": 41.293577981651374,
+ "grad_norm": 0.2988710403442383,
+ "learning_rate": 0.0006,
+ "loss": 3.6018929481506348,
+ "step": 2973
+ },
+ {
+ "epoch": 41.30755788553954,
+ "grad_norm": 0.2428133338689804,
+ "learning_rate": 0.0006,
+ "loss": 3.645270824432373,
+ "step": 2974
+ },
+ {
+ "epoch": 41.3215377894277,
+ "grad_norm": 0.20330320298671722,
+ "learning_rate": 0.0006,
+ "loss": 3.625495433807373,
+ "step": 2975
+ },
+ {
+ "epoch": 41.33551769331586,
+ "grad_norm": 0.2267787605524063,
+ "learning_rate": 0.0006,
+ "loss": 3.6469204425811768,
+ "step": 2976
+ },
+ {
+ "epoch": 41.34949759720402,
+ "grad_norm": 0.20702822506427765,
+ "learning_rate": 0.0006,
+ "loss": 3.644191265106201,
+ "step": 2977
+ },
+ {
+ "epoch": 41.36347750109218,
+ "grad_norm": 0.19693221151828766,
+ "learning_rate": 0.0006,
+ "loss": 3.591794967651367,
+ "step": 2978
+ },
+ {
+ "epoch": 41.37745740498034,
+ "grad_norm": 0.21193185448646545,
+ "learning_rate": 0.0006,
+ "loss": 3.6283936500549316,
+ "step": 2979
+ },
+ {
+ "epoch": 41.391437308868504,
+ "grad_norm": 0.20953163504600525,
+ "learning_rate": 0.0006,
+ "loss": 3.617565155029297,
+ "step": 2980
+ },
+ {
+ "epoch": 41.40541721275666,
+ "grad_norm": 0.21839819848537445,
+ "learning_rate": 0.0006,
+ "loss": 3.621209144592285,
+ "step": 2981
+ },
+ {
+ "epoch": 41.419397116644824,
+ "grad_norm": 0.2152671068906784,
+ "learning_rate": 0.0006,
+ "loss": 3.643197536468506,
+ "step": 2982
+ },
+ {
+ "epoch": 41.43337702053299,
+ "grad_norm": 0.2507486641407013,
+ "learning_rate": 0.0006,
+ "loss": 3.657499313354492,
+ "step": 2983
+ },
+ {
+ "epoch": 41.44735692442114,
+ "grad_norm": 0.24695388972759247,
+ "learning_rate": 0.0006,
+ "loss": 3.62170672416687,
+ "step": 2984
+ },
+ {
+ "epoch": 41.46133682830931,
+ "grad_norm": 0.22652822732925415,
+ "learning_rate": 0.0006,
+ "loss": 3.64322566986084,
+ "step": 2985
+ },
+ {
+ "epoch": 41.47531673219746,
+ "grad_norm": 0.2575881779193878,
+ "learning_rate": 0.0006,
+ "loss": 3.659621477127075,
+ "step": 2986
+ },
+ {
+ "epoch": 41.489296636085626,
+ "grad_norm": 0.24162672460079193,
+ "learning_rate": 0.0006,
+ "loss": 3.6527223587036133,
+ "step": 2987
+ },
+ {
+ "epoch": 41.50327653997379,
+ "grad_norm": 0.20930497348308563,
+ "learning_rate": 0.0006,
+ "loss": 3.6412787437438965,
+ "step": 2988
+ },
+ {
+ "epoch": 41.517256443861946,
+ "grad_norm": 0.20480819046497345,
+ "learning_rate": 0.0006,
+ "loss": 3.614767074584961,
+ "step": 2989
+ },
+ {
+ "epoch": 41.53123634775011,
+ "grad_norm": 0.20015820860862732,
+ "learning_rate": 0.0006,
+ "loss": 3.6512045860290527,
+ "step": 2990
+ },
+ {
+ "epoch": 41.54521625163827,
+ "grad_norm": 0.20220743119716644,
+ "learning_rate": 0.0006,
+ "loss": 3.6732325553894043,
+ "step": 2991
+ },
+ {
+ "epoch": 41.55919615552643,
+ "grad_norm": 0.20505326986312866,
+ "learning_rate": 0.0006,
+ "loss": 3.6374664306640625,
+ "step": 2992
+ },
+ {
+ "epoch": 41.57317605941459,
+ "grad_norm": 0.19423344731330872,
+ "learning_rate": 0.0006,
+ "loss": 3.6564126014709473,
+ "step": 2993
+ },
+ {
+ "epoch": 41.58715596330275,
+ "grad_norm": 0.19284583628177643,
+ "learning_rate": 0.0006,
+ "loss": 3.6460509300231934,
+ "step": 2994
+ },
+ {
+ "epoch": 41.60113586719091,
+ "grad_norm": 0.18488959968090057,
+ "learning_rate": 0.0006,
+ "loss": 3.632859468460083,
+ "step": 2995
+ },
+ {
+ "epoch": 41.615115771079076,
+ "grad_norm": 0.18816296756267548,
+ "learning_rate": 0.0006,
+ "loss": 3.5958361625671387,
+ "step": 2996
+ },
+ {
+ "epoch": 41.62909567496723,
+ "grad_norm": 0.18987809121608734,
+ "learning_rate": 0.0006,
+ "loss": 3.6330695152282715,
+ "step": 2997
+ },
+ {
+ "epoch": 41.643075578855395,
+ "grad_norm": 0.18999919295310974,
+ "learning_rate": 0.0006,
+ "loss": 3.6486730575561523,
+ "step": 2998
+ },
+ {
+ "epoch": 41.65705548274356,
+ "grad_norm": 0.20190183818340302,
+ "learning_rate": 0.0006,
+ "loss": 3.6564230918884277,
+ "step": 2999
+ },
+ {
+ "epoch": 41.671035386631715,
+ "grad_norm": 0.20331363379955292,
+ "learning_rate": 0.0006,
+ "loss": 3.6789698600769043,
+ "step": 3000
+ },
+ {
+ "epoch": 41.68501529051988,
+ "grad_norm": 0.21599505841732025,
+ "learning_rate": 0.0006,
+ "loss": 3.6544511318206787,
+ "step": 3001
+ },
+ {
+ "epoch": 41.69899519440804,
+ "grad_norm": 0.21123184263706207,
+ "learning_rate": 0.0006,
+ "loss": 3.6506948471069336,
+ "step": 3002
+ },
+ {
+ "epoch": 41.7129750982962,
+ "grad_norm": 0.21337002515792847,
+ "learning_rate": 0.0006,
+ "loss": 3.676854372024536,
+ "step": 3003
+ },
+ {
+ "epoch": 41.72695500218436,
+ "grad_norm": 0.22567597031593323,
+ "learning_rate": 0.0006,
+ "loss": 3.6467485427856445,
+ "step": 3004
+ },
+ {
+ "epoch": 41.74093490607252,
+ "grad_norm": 0.22923491895198822,
+ "learning_rate": 0.0006,
+ "loss": 3.663224697113037,
+ "step": 3005
+ },
+ {
+ "epoch": 41.75491480996068,
+ "grad_norm": 0.21511489152908325,
+ "learning_rate": 0.0006,
+ "loss": 3.6290054321289062,
+ "step": 3006
+ },
+ {
+ "epoch": 41.768894713848844,
+ "grad_norm": 0.23855915665626526,
+ "learning_rate": 0.0006,
+ "loss": 3.631225109100342,
+ "step": 3007
+ },
+ {
+ "epoch": 41.782874617737,
+ "grad_norm": 0.22771067917346954,
+ "learning_rate": 0.0006,
+ "loss": 3.652575731277466,
+ "step": 3008
+ },
+ {
+ "epoch": 41.796854521625164,
+ "grad_norm": 0.2006237953901291,
+ "learning_rate": 0.0006,
+ "loss": 3.6883468627929688,
+ "step": 3009
+ },
+ {
+ "epoch": 41.81083442551333,
+ "grad_norm": 0.21182459592819214,
+ "learning_rate": 0.0006,
+ "loss": 3.6443567276000977,
+ "step": 3010
+ },
+ {
+ "epoch": 41.824814329401484,
+ "grad_norm": 0.21083690226078033,
+ "learning_rate": 0.0006,
+ "loss": 3.66660475730896,
+ "step": 3011
+ },
+ {
+ "epoch": 41.83879423328965,
+ "grad_norm": 0.21232296526432037,
+ "learning_rate": 0.0006,
+ "loss": 3.6436524391174316,
+ "step": 3012
+ },
+ {
+ "epoch": 41.8527741371778,
+ "grad_norm": 0.2089361697435379,
+ "learning_rate": 0.0006,
+ "loss": 3.648113250732422,
+ "step": 3013
+ },
+ {
+ "epoch": 41.86675404106597,
+ "grad_norm": 0.21517033874988556,
+ "learning_rate": 0.0006,
+ "loss": 3.6382269859313965,
+ "step": 3014
+ },
+ {
+ "epoch": 41.88073394495413,
+ "grad_norm": 0.1930733323097229,
+ "learning_rate": 0.0006,
+ "loss": 3.639441967010498,
+ "step": 3015
+ },
+ {
+ "epoch": 41.89471384884229,
+ "grad_norm": 0.18282832205295563,
+ "learning_rate": 0.0006,
+ "loss": 3.652860164642334,
+ "step": 3016
+ },
+ {
+ "epoch": 41.90869375273045,
+ "grad_norm": 0.18649716675281525,
+ "learning_rate": 0.0006,
+ "loss": 3.6335558891296387,
+ "step": 3017
+ },
+ {
+ "epoch": 41.92267365661861,
+ "grad_norm": 0.18873754143714905,
+ "learning_rate": 0.0006,
+ "loss": 3.6743149757385254,
+ "step": 3018
+ },
+ {
+ "epoch": 41.93665356050677,
+ "grad_norm": 0.1937907189130783,
+ "learning_rate": 0.0006,
+ "loss": 3.6749300956726074,
+ "step": 3019
+ },
+ {
+ "epoch": 41.95063346439493,
+ "grad_norm": 0.20620854198932648,
+ "learning_rate": 0.0006,
+ "loss": 3.6591262817382812,
+ "step": 3020
+ },
+ {
+ "epoch": 41.964613368283096,
+ "grad_norm": 0.18541009724140167,
+ "learning_rate": 0.0006,
+ "loss": 3.647010326385498,
+ "step": 3021
+ },
+ {
+ "epoch": 41.97859327217125,
+ "grad_norm": 0.19224928319454193,
+ "learning_rate": 0.0006,
+ "loss": 3.629920482635498,
+ "step": 3022
+ },
+ {
+ "epoch": 41.992573176059416,
+ "grad_norm": 0.21286419034004211,
+ "learning_rate": 0.0006,
+ "loss": 3.6516964435577393,
+ "step": 3023
+ },
+ {
+ "epoch": 42.0,
+ "grad_norm": 0.24787360429763794,
+ "learning_rate": 0.0006,
+ "loss": 3.6378865242004395,
+ "step": 3024
+ },
+ {
+ "epoch": 42.0,
+ "eval_loss": 3.9910318851470947,
+ "eval_runtime": 43.7914,
+ "eval_samples_per_second": 55.764,
+ "eval_steps_per_second": 3.494,
+ "step": 3024
+ },
+ {
+ "epoch": 42.01397990388816,
+ "grad_norm": 0.21036255359649658,
+ "learning_rate": 0.0006,
+ "loss": 3.6604344844818115,
+ "step": 3025
+ },
+ {
+ "epoch": 42.02795980777632,
+ "grad_norm": 0.22240597009658813,
+ "learning_rate": 0.0006,
+ "loss": 3.6160645484924316,
+ "step": 3026
+ },
+ {
+ "epoch": 42.04193971166448,
+ "grad_norm": 0.2487850785255432,
+ "learning_rate": 0.0006,
+ "loss": 3.6293773651123047,
+ "step": 3027
+ },
+ {
+ "epoch": 42.05591961555265,
+ "grad_norm": 0.27058133482933044,
+ "learning_rate": 0.0006,
+ "loss": 3.5827436447143555,
+ "step": 3028
+ },
+ {
+ "epoch": 42.0698995194408,
+ "grad_norm": 0.25001782178878784,
+ "learning_rate": 0.0006,
+ "loss": 3.5833029747009277,
+ "step": 3029
+ },
+ {
+ "epoch": 42.083879423328966,
+ "grad_norm": 0.23811939358711243,
+ "learning_rate": 0.0006,
+ "loss": 3.605585813522339,
+ "step": 3030
+ },
+ {
+ "epoch": 42.09785932721712,
+ "grad_norm": 0.23279601335525513,
+ "learning_rate": 0.0006,
+ "loss": 3.607205867767334,
+ "step": 3031
+ },
+ {
+ "epoch": 42.111839231105286,
+ "grad_norm": 0.24410508573055267,
+ "learning_rate": 0.0006,
+ "loss": 3.621175765991211,
+ "step": 3032
+ },
+ {
+ "epoch": 42.12581913499345,
+ "grad_norm": 0.24782028794288635,
+ "learning_rate": 0.0006,
+ "loss": 3.6236867904663086,
+ "step": 3033
+ },
+ {
+ "epoch": 42.139799038881605,
+ "grad_norm": 0.2301972657442093,
+ "learning_rate": 0.0006,
+ "loss": 3.603853464126587,
+ "step": 3034
+ },
+ {
+ "epoch": 42.15377894276977,
+ "grad_norm": 0.21988637745380402,
+ "learning_rate": 0.0006,
+ "loss": 3.600142002105713,
+ "step": 3035
+ },
+ {
+ "epoch": 42.16775884665793,
+ "grad_norm": 0.22623786330223083,
+ "learning_rate": 0.0006,
+ "loss": 3.61971116065979,
+ "step": 3036
+ },
+ {
+ "epoch": 42.18173875054609,
+ "grad_norm": 0.21844688057899475,
+ "learning_rate": 0.0006,
+ "loss": 3.61320161819458,
+ "step": 3037
+ },
+ {
+ "epoch": 42.19571865443425,
+ "grad_norm": 0.20444536209106445,
+ "learning_rate": 0.0006,
+ "loss": 3.6179633140563965,
+ "step": 3038
+ },
+ {
+ "epoch": 42.20969855832241,
+ "grad_norm": 0.22862036526203156,
+ "learning_rate": 0.0006,
+ "loss": 3.605433940887451,
+ "step": 3039
+ },
+ {
+ "epoch": 42.22367846221057,
+ "grad_norm": 0.2906605005264282,
+ "learning_rate": 0.0006,
+ "loss": 3.6279449462890625,
+ "step": 3040
+ },
+ {
+ "epoch": 42.237658366098735,
+ "grad_norm": 0.29074418544769287,
+ "learning_rate": 0.0006,
+ "loss": 3.5959763526916504,
+ "step": 3041
+ },
+ {
+ "epoch": 42.25163826998689,
+ "grad_norm": 0.1994444876909256,
+ "learning_rate": 0.0006,
+ "loss": 3.5858588218688965,
+ "step": 3042
+ },
+ {
+ "epoch": 42.265618173875055,
+ "grad_norm": 0.20793452858924866,
+ "learning_rate": 0.0006,
+ "loss": 3.604630470275879,
+ "step": 3043
+ },
+ {
+ "epoch": 42.27959807776322,
+ "grad_norm": 0.2119535505771637,
+ "learning_rate": 0.0006,
+ "loss": 3.6287126541137695,
+ "step": 3044
+ },
+ {
+ "epoch": 42.293577981651374,
+ "grad_norm": 0.21092535555362701,
+ "learning_rate": 0.0006,
+ "loss": 3.646294593811035,
+ "step": 3045
+ },
+ {
+ "epoch": 42.30755788553954,
+ "grad_norm": 0.21474479138851166,
+ "learning_rate": 0.0006,
+ "loss": 3.6364355087280273,
+ "step": 3046
+ },
+ {
+ "epoch": 42.3215377894277,
+ "grad_norm": 0.21100781857967377,
+ "learning_rate": 0.0006,
+ "loss": 3.622528553009033,
+ "step": 3047
+ },
+ {
+ "epoch": 42.33551769331586,
+ "grad_norm": 0.20739853382110596,
+ "learning_rate": 0.0006,
+ "loss": 3.6261959075927734,
+ "step": 3048
+ },
+ {
+ "epoch": 42.34949759720402,
+ "grad_norm": 0.22264131903648376,
+ "learning_rate": 0.0006,
+ "loss": 3.6195173263549805,
+ "step": 3049
+ },
+ {
+ "epoch": 42.36347750109218,
+ "grad_norm": 0.23696285486221313,
+ "learning_rate": 0.0006,
+ "loss": 3.631103515625,
+ "step": 3050
+ },
+ {
+ "epoch": 42.37745740498034,
+ "grad_norm": 0.2124902606010437,
+ "learning_rate": 0.0006,
+ "loss": 3.6490437984466553,
+ "step": 3051
+ },
+ {
+ "epoch": 42.391437308868504,
+ "grad_norm": 0.18831083178520203,
+ "learning_rate": 0.0006,
+ "loss": 3.628459930419922,
+ "step": 3052
+ },
+ {
+ "epoch": 42.40541721275666,
+ "grad_norm": 0.20390060544013977,
+ "learning_rate": 0.0006,
+ "loss": 3.6348538398742676,
+ "step": 3053
+ },
+ {
+ "epoch": 42.419397116644824,
+ "grad_norm": 0.2205851823091507,
+ "learning_rate": 0.0006,
+ "loss": 3.6286797523498535,
+ "step": 3054
+ },
+ {
+ "epoch": 42.43337702053299,
+ "grad_norm": 0.21518434584140778,
+ "learning_rate": 0.0006,
+ "loss": 3.5918965339660645,
+ "step": 3055
+ },
+ {
+ "epoch": 42.44735692442114,
+ "grad_norm": 0.2342296987771988,
+ "learning_rate": 0.0006,
+ "loss": 3.6364407539367676,
+ "step": 3056
+ },
+ {
+ "epoch": 42.46133682830931,
+ "grad_norm": 0.2304094135761261,
+ "learning_rate": 0.0006,
+ "loss": 3.6561477184295654,
+ "step": 3057
+ },
+ {
+ "epoch": 42.47531673219746,
+ "grad_norm": 0.20882441103458405,
+ "learning_rate": 0.0006,
+ "loss": 3.611250638961792,
+ "step": 3058
+ },
+ {
+ "epoch": 42.489296636085626,
+ "grad_norm": 0.24346643686294556,
+ "learning_rate": 0.0006,
+ "loss": 3.580082416534424,
+ "step": 3059
+ },
+ {
+ "epoch": 42.50327653997379,
+ "grad_norm": 0.260711133480072,
+ "learning_rate": 0.0006,
+ "loss": 3.6179792881011963,
+ "step": 3060
+ },
+ {
+ "epoch": 42.517256443861946,
+ "grad_norm": 0.21223759651184082,
+ "learning_rate": 0.0006,
+ "loss": 3.6153154373168945,
+ "step": 3061
+ },
+ {
+ "epoch": 42.53123634775011,
+ "grad_norm": 0.21429137885570526,
+ "learning_rate": 0.0006,
+ "loss": 3.6003379821777344,
+ "step": 3062
+ },
+ {
+ "epoch": 42.54521625163827,
+ "grad_norm": 0.23659434914588928,
+ "learning_rate": 0.0006,
+ "loss": 3.6540589332580566,
+ "step": 3063
+ },
+ {
+ "epoch": 42.55919615552643,
+ "grad_norm": 0.280344158411026,
+ "learning_rate": 0.0006,
+ "loss": 3.6406192779541016,
+ "step": 3064
+ },
+ {
+ "epoch": 42.57317605941459,
+ "grad_norm": 0.2903953194618225,
+ "learning_rate": 0.0006,
+ "loss": 3.643479824066162,
+ "step": 3065
+ },
+ {
+ "epoch": 42.58715596330275,
+ "grad_norm": 0.24958311021327972,
+ "learning_rate": 0.0006,
+ "loss": 3.6320221424102783,
+ "step": 3066
+ },
+ {
+ "epoch": 42.60113586719091,
+ "grad_norm": 0.22525225579738617,
+ "learning_rate": 0.0006,
+ "loss": 3.641676425933838,
+ "step": 3067
+ },
+ {
+ "epoch": 42.615115771079076,
+ "grad_norm": 0.23025161027908325,
+ "learning_rate": 0.0006,
+ "loss": 3.6465210914611816,
+ "step": 3068
+ },
+ {
+ "epoch": 42.62909567496723,
+ "grad_norm": 0.21947328746318817,
+ "learning_rate": 0.0006,
+ "loss": 3.667877435684204,
+ "step": 3069
+ },
+ {
+ "epoch": 42.643075578855395,
+ "grad_norm": 0.22809366881847382,
+ "learning_rate": 0.0006,
+ "loss": 3.663166046142578,
+ "step": 3070
+ },
+ {
+ "epoch": 42.65705548274356,
+ "grad_norm": 0.21938708424568176,
+ "learning_rate": 0.0006,
+ "loss": 3.619001865386963,
+ "step": 3071
+ },
+ {
+ "epoch": 42.671035386631715,
+ "grad_norm": 0.231620192527771,
+ "learning_rate": 0.0006,
+ "loss": 3.652332305908203,
+ "step": 3072
+ },
+ {
+ "epoch": 42.68501529051988,
+ "grad_norm": 0.23683936893939972,
+ "learning_rate": 0.0006,
+ "loss": 3.6633410453796387,
+ "step": 3073
+ },
+ {
+ "epoch": 42.69899519440804,
+ "grad_norm": 0.23752044141292572,
+ "learning_rate": 0.0006,
+ "loss": 3.646064281463623,
+ "step": 3074
+ },
+ {
+ "epoch": 42.7129750982962,
+ "grad_norm": 0.23041971027851105,
+ "learning_rate": 0.0006,
+ "loss": 3.6431851387023926,
+ "step": 3075
+ },
+ {
+ "epoch": 42.72695500218436,
+ "grad_norm": 0.220438614487648,
+ "learning_rate": 0.0006,
+ "loss": 3.6499950885772705,
+ "step": 3076
+ },
+ {
+ "epoch": 42.74093490607252,
+ "grad_norm": 0.24297107756137848,
+ "learning_rate": 0.0006,
+ "loss": 3.6655125617980957,
+ "step": 3077
+ },
+ {
+ "epoch": 42.75491480996068,
+ "grad_norm": 0.21835893392562866,
+ "learning_rate": 0.0006,
+ "loss": 3.61672043800354,
+ "step": 3078
+ },
+ {
+ "epoch": 42.768894713848844,
+ "grad_norm": 0.22490793466567993,
+ "learning_rate": 0.0006,
+ "loss": 3.652825355529785,
+ "step": 3079
+ },
+ {
+ "epoch": 42.782874617737,
+ "grad_norm": 0.2246086746454239,
+ "learning_rate": 0.0006,
+ "loss": 3.6290056705474854,
+ "step": 3080
+ },
+ {
+ "epoch": 42.796854521625164,
+ "grad_norm": 0.21527042984962463,
+ "learning_rate": 0.0006,
+ "loss": 3.6587281227111816,
+ "step": 3081
+ },
+ {
+ "epoch": 42.81083442551333,
+ "grad_norm": 0.19586899876594543,
+ "learning_rate": 0.0006,
+ "loss": 3.639626979827881,
+ "step": 3082
+ },
+ {
+ "epoch": 42.824814329401484,
+ "grad_norm": 0.20881155133247375,
+ "learning_rate": 0.0006,
+ "loss": 3.6305861473083496,
+ "step": 3083
+ },
+ {
+ "epoch": 42.83879423328965,
+ "grad_norm": 0.20094981789588928,
+ "learning_rate": 0.0006,
+ "loss": 3.609614849090576,
+ "step": 3084
+ },
+ {
+ "epoch": 42.8527741371778,
+ "grad_norm": 0.21786150336265564,
+ "learning_rate": 0.0006,
+ "loss": 3.6423556804656982,
+ "step": 3085
+ },
+ {
+ "epoch": 42.86675404106597,
+ "grad_norm": 0.24493595957756042,
+ "learning_rate": 0.0006,
+ "loss": 3.631321668624878,
+ "step": 3086
+ },
+ {
+ "epoch": 42.88073394495413,
+ "grad_norm": 0.2437327355146408,
+ "learning_rate": 0.0006,
+ "loss": 3.6624178886413574,
+ "step": 3087
+ },
+ {
+ "epoch": 42.89471384884229,
+ "grad_norm": 0.21020543575286865,
+ "learning_rate": 0.0006,
+ "loss": 3.6567513942718506,
+ "step": 3088
+ },
+ {
+ "epoch": 42.90869375273045,
+ "grad_norm": 0.18977083265781403,
+ "learning_rate": 0.0006,
+ "loss": 3.6268601417541504,
+ "step": 3089
+ },
+ {
+ "epoch": 42.92267365661861,
+ "grad_norm": 0.2211192399263382,
+ "learning_rate": 0.0006,
+ "loss": 3.6690402030944824,
+ "step": 3090
+ },
+ {
+ "epoch": 42.93665356050677,
+ "grad_norm": 0.2695990204811096,
+ "learning_rate": 0.0006,
+ "loss": 3.667701244354248,
+ "step": 3091
+ },
+ {
+ "epoch": 42.95063346439493,
+ "grad_norm": 0.25910887122154236,
+ "learning_rate": 0.0006,
+ "loss": 3.627504587173462,
+ "step": 3092
+ },
+ {
+ "epoch": 42.964613368283096,
+ "grad_norm": 0.2466248720884323,
+ "learning_rate": 0.0006,
+ "loss": 3.6462182998657227,
+ "step": 3093
+ },
+ {
+ "epoch": 42.97859327217125,
+ "grad_norm": 0.22997038066387177,
+ "learning_rate": 0.0006,
+ "loss": 3.647430896759033,
+ "step": 3094
+ },
+ {
+ "epoch": 42.992573176059416,
+ "grad_norm": 0.1989113837480545,
+ "learning_rate": 0.0006,
+ "loss": 3.6502084732055664,
+ "step": 3095
+ },
+ {
+ "epoch": 43.0,
+ "grad_norm": 0.22976496815681458,
+ "learning_rate": 0.0006,
+ "loss": 3.6963884830474854,
+ "step": 3096
+ },
+ {
+ "epoch": 43.0,
+ "eval_loss": 3.9656779766082764,
+ "eval_runtime": 43.9281,
+ "eval_samples_per_second": 55.591,
+ "eval_steps_per_second": 3.483,
+ "step": 3096
+ },
+ {
+ "epoch": 43.01397990388816,
+ "grad_norm": 0.2862325608730316,
+ "learning_rate": 0.0006,
+ "loss": 3.581247568130493,
+ "step": 3097
+ },
+ {
+ "epoch": 43.02795980777632,
+ "grad_norm": 0.3867015540599823,
+ "learning_rate": 0.0006,
+ "loss": 3.611076593399048,
+ "step": 3098
+ },
+ {
+ "epoch": 43.04193971166448,
+ "grad_norm": 0.4139448404312134,
+ "learning_rate": 0.0006,
+ "loss": 3.625164031982422,
+ "step": 3099
+ },
+ {
+ "epoch": 43.05591961555265,
+ "grad_norm": 0.292407363653183,
+ "learning_rate": 0.0006,
+ "loss": 3.615546703338623,
+ "step": 3100
+ },
+ {
+ "epoch": 43.0698995194408,
+ "grad_norm": 0.24272124469280243,
+ "learning_rate": 0.0006,
+ "loss": 3.5965943336486816,
+ "step": 3101
+ },
+ {
+ "epoch": 43.083879423328966,
+ "grad_norm": 0.2761254608631134,
+ "learning_rate": 0.0006,
+ "loss": 3.605706214904785,
+ "step": 3102
+ },
+ {
+ "epoch": 43.09785932721712,
+ "grad_norm": 0.25232183933258057,
+ "learning_rate": 0.0006,
+ "loss": 3.6252012252807617,
+ "step": 3103
+ },
+ {
+ "epoch": 43.111839231105286,
+ "grad_norm": 0.248970165848732,
+ "learning_rate": 0.0006,
+ "loss": 3.6028337478637695,
+ "step": 3104
+ },
+ {
+ "epoch": 43.12581913499345,
+ "grad_norm": 0.22088921070098877,
+ "learning_rate": 0.0006,
+ "loss": 3.591614007949829,
+ "step": 3105
+ },
+ {
+ "epoch": 43.139799038881605,
+ "grad_norm": 0.21528655290603638,
+ "learning_rate": 0.0006,
+ "loss": 3.6237306594848633,
+ "step": 3106
+ },
+ {
+ "epoch": 43.15377894276977,
+ "grad_norm": 0.22799135744571686,
+ "learning_rate": 0.0006,
+ "loss": 3.5968847274780273,
+ "step": 3107
+ },
+ {
+ "epoch": 43.16775884665793,
+ "grad_norm": 0.23102127015590668,
+ "learning_rate": 0.0006,
+ "loss": 3.6046414375305176,
+ "step": 3108
+ },
+ {
+ "epoch": 43.18173875054609,
+ "grad_norm": 0.22876501083374023,
+ "learning_rate": 0.0006,
+ "loss": 3.635608196258545,
+ "step": 3109
+ },
+ {
+ "epoch": 43.19571865443425,
+ "grad_norm": 0.24920420348644257,
+ "learning_rate": 0.0006,
+ "loss": 3.628662109375,
+ "step": 3110
+ },
+ {
+ "epoch": 43.20969855832241,
+ "grad_norm": 0.2527749538421631,
+ "learning_rate": 0.0006,
+ "loss": 3.6109046936035156,
+ "step": 3111
+ },
+ {
+ "epoch": 43.22367846221057,
+ "grad_norm": 0.22529229521751404,
+ "learning_rate": 0.0006,
+ "loss": 3.6536030769348145,
+ "step": 3112
+ },
+ {
+ "epoch": 43.237658366098735,
+ "grad_norm": 0.20031821727752686,
+ "learning_rate": 0.0006,
+ "loss": 3.6328792572021484,
+ "step": 3113
+ },
+ {
+ "epoch": 43.25163826998689,
+ "grad_norm": 0.21075189113616943,
+ "learning_rate": 0.0006,
+ "loss": 3.6200530529022217,
+ "step": 3114
+ },
+ {
+ "epoch": 43.265618173875055,
+ "grad_norm": 0.21164856851100922,
+ "learning_rate": 0.0006,
+ "loss": 3.6276001930236816,
+ "step": 3115
+ },
+ {
+ "epoch": 43.27959807776322,
+ "grad_norm": 0.19306758046150208,
+ "learning_rate": 0.0006,
+ "loss": 3.608675956726074,
+ "step": 3116
+ },
+ {
+ "epoch": 43.293577981651374,
+ "grad_norm": 0.20288796722888947,
+ "learning_rate": 0.0006,
+ "loss": 3.6057004928588867,
+ "step": 3117
+ },
+ {
+ "epoch": 43.30755788553954,
+ "grad_norm": 0.1901484876871109,
+ "learning_rate": 0.0006,
+ "loss": 3.6191725730895996,
+ "step": 3118
+ },
+ {
+ "epoch": 43.3215377894277,
+ "grad_norm": 0.19438181817531586,
+ "learning_rate": 0.0006,
+ "loss": 3.5814337730407715,
+ "step": 3119
+ },
+ {
+ "epoch": 43.33551769331586,
+ "grad_norm": 0.19924484193325043,
+ "learning_rate": 0.0006,
+ "loss": 3.6168713569641113,
+ "step": 3120
+ },
+ {
+ "epoch": 43.34949759720402,
+ "grad_norm": 0.20757409930229187,
+ "learning_rate": 0.0006,
+ "loss": 3.6281509399414062,
+ "step": 3121
+ },
+ {
+ "epoch": 43.36347750109218,
+ "grad_norm": 0.22500184178352356,
+ "learning_rate": 0.0006,
+ "loss": 3.635101795196533,
+ "step": 3122
+ },
+ {
+ "epoch": 43.37745740498034,
+ "grad_norm": 0.22061555087566376,
+ "learning_rate": 0.0006,
+ "loss": 3.630622386932373,
+ "step": 3123
+ },
+ {
+ "epoch": 43.391437308868504,
+ "grad_norm": 0.2094152420759201,
+ "learning_rate": 0.0006,
+ "loss": 3.581803798675537,
+ "step": 3124
+ },
+ {
+ "epoch": 43.40541721275666,
+ "grad_norm": 0.19607678055763245,
+ "learning_rate": 0.0006,
+ "loss": 3.6149864196777344,
+ "step": 3125
+ },
+ {
+ "epoch": 43.419397116644824,
+ "grad_norm": 0.18985028564929962,
+ "learning_rate": 0.0006,
+ "loss": 3.6338040828704834,
+ "step": 3126
+ },
+ {
+ "epoch": 43.43337702053299,
+ "grad_norm": 0.20490778982639313,
+ "learning_rate": 0.0006,
+ "loss": 3.63275146484375,
+ "step": 3127
+ },
+ {
+ "epoch": 43.44735692442114,
+ "grad_norm": 0.24385297298431396,
+ "learning_rate": 0.0006,
+ "loss": 3.6412134170532227,
+ "step": 3128
+ },
+ {
+ "epoch": 43.46133682830931,
+ "grad_norm": 0.243601992726326,
+ "learning_rate": 0.0006,
+ "loss": 3.594238758087158,
+ "step": 3129
+ },
+ {
+ "epoch": 43.47531673219746,
+ "grad_norm": 0.21314913034439087,
+ "learning_rate": 0.0006,
+ "loss": 3.5962629318237305,
+ "step": 3130
+ },
+ {
+ "epoch": 43.489296636085626,
+ "grad_norm": 0.20499329268932343,
+ "learning_rate": 0.0006,
+ "loss": 3.61600923538208,
+ "step": 3131
+ },
+ {
+ "epoch": 43.50327653997379,
+ "grad_norm": 0.20199540257453918,
+ "learning_rate": 0.0006,
+ "loss": 3.638469934463501,
+ "step": 3132
+ },
+ {
+ "epoch": 43.517256443861946,
+ "grad_norm": 0.19932983815670013,
+ "learning_rate": 0.0006,
+ "loss": 3.619145393371582,
+ "step": 3133
+ },
+ {
+ "epoch": 43.53123634775011,
+ "grad_norm": 0.20401954650878906,
+ "learning_rate": 0.0006,
+ "loss": 3.643700122833252,
+ "step": 3134
+ },
+ {
+ "epoch": 43.54521625163827,
+ "grad_norm": 0.20784904062747955,
+ "learning_rate": 0.0006,
+ "loss": 3.619272232055664,
+ "step": 3135
+ },
+ {
+ "epoch": 43.55919615552643,
+ "grad_norm": 0.21003122627735138,
+ "learning_rate": 0.0006,
+ "loss": 3.629542827606201,
+ "step": 3136
+ },
+ {
+ "epoch": 43.57317605941459,
+ "grad_norm": 0.2220298945903778,
+ "learning_rate": 0.0006,
+ "loss": 3.655543804168701,
+ "step": 3137
+ },
+ {
+ "epoch": 43.58715596330275,
+ "grad_norm": 0.21159163117408752,
+ "learning_rate": 0.0006,
+ "loss": 3.6092495918273926,
+ "step": 3138
+ },
+ {
+ "epoch": 43.60113586719091,
+ "grad_norm": 0.19462746381759644,
+ "learning_rate": 0.0006,
+ "loss": 3.6447129249572754,
+ "step": 3139
+ },
+ {
+ "epoch": 43.615115771079076,
+ "grad_norm": 0.20523829758167267,
+ "learning_rate": 0.0006,
+ "loss": 3.6292669773101807,
+ "step": 3140
+ },
+ {
+ "epoch": 43.62909567496723,
+ "grad_norm": 0.2172321230173111,
+ "learning_rate": 0.0006,
+ "loss": 3.6144580841064453,
+ "step": 3141
+ },
+ {
+ "epoch": 43.643075578855395,
+ "grad_norm": 0.21751564741134644,
+ "learning_rate": 0.0006,
+ "loss": 3.6381068229675293,
+ "step": 3142
+ },
+ {
+ "epoch": 43.65705548274356,
+ "grad_norm": 0.1914236694574356,
+ "learning_rate": 0.0006,
+ "loss": 3.6392078399658203,
+ "step": 3143
+ },
+ {
+ "epoch": 43.671035386631715,
+ "grad_norm": 0.19792547821998596,
+ "learning_rate": 0.0006,
+ "loss": 3.6394457817077637,
+ "step": 3144
+ },
+ {
+ "epoch": 43.68501529051988,
+ "grad_norm": 0.2106214165687561,
+ "learning_rate": 0.0006,
+ "loss": 3.626147747039795,
+ "step": 3145
+ },
+ {
+ "epoch": 43.69899519440804,
+ "grad_norm": 0.21802955865859985,
+ "learning_rate": 0.0006,
+ "loss": 3.63372802734375,
+ "step": 3146
+ },
+ {
+ "epoch": 43.7129750982962,
+ "grad_norm": 0.21498727798461914,
+ "learning_rate": 0.0006,
+ "loss": 3.6193063259124756,
+ "step": 3147
+ },
+ {
+ "epoch": 43.72695500218436,
+ "grad_norm": 0.2176690250635147,
+ "learning_rate": 0.0006,
+ "loss": 3.6431519985198975,
+ "step": 3148
+ },
+ {
+ "epoch": 43.74093490607252,
+ "grad_norm": 0.26883506774902344,
+ "learning_rate": 0.0006,
+ "loss": 3.6216721534729004,
+ "step": 3149
+ },
+ {
+ "epoch": 43.75491480996068,
+ "grad_norm": 0.23485299944877625,
+ "learning_rate": 0.0006,
+ "loss": 3.6361191272735596,
+ "step": 3150
+ },
+ {
+ "epoch": 43.768894713848844,
+ "grad_norm": 0.20496341586112976,
+ "learning_rate": 0.0006,
+ "loss": 3.6258792877197266,
+ "step": 3151
+ },
+ {
+ "epoch": 43.782874617737,
+ "grad_norm": 0.21792510151863098,
+ "learning_rate": 0.0006,
+ "loss": 3.6522839069366455,
+ "step": 3152
+ },
+ {
+ "epoch": 43.796854521625164,
+ "grad_norm": 0.2589452564716339,
+ "learning_rate": 0.0006,
+ "loss": 3.651235580444336,
+ "step": 3153
+ },
+ {
+ "epoch": 43.81083442551333,
+ "grad_norm": 0.24883611500263214,
+ "learning_rate": 0.0006,
+ "loss": 3.6382546424865723,
+ "step": 3154
+ },
+ {
+ "epoch": 43.824814329401484,
+ "grad_norm": 0.22466720640659332,
+ "learning_rate": 0.0006,
+ "loss": 3.6232261657714844,
+ "step": 3155
+ },
+ {
+ "epoch": 43.83879423328965,
+ "grad_norm": 0.19477292895317078,
+ "learning_rate": 0.0006,
+ "loss": 3.6350135803222656,
+ "step": 3156
+ },
+ {
+ "epoch": 43.8527741371778,
+ "grad_norm": 0.20302540063858032,
+ "learning_rate": 0.0006,
+ "loss": 3.638143539428711,
+ "step": 3157
+ },
+ {
+ "epoch": 43.86675404106597,
+ "grad_norm": 0.2112276554107666,
+ "learning_rate": 0.0006,
+ "loss": 3.6415610313415527,
+ "step": 3158
+ },
+ {
+ "epoch": 43.88073394495413,
+ "grad_norm": 0.20544779300689697,
+ "learning_rate": 0.0006,
+ "loss": 3.6437134742736816,
+ "step": 3159
+ },
+ {
+ "epoch": 43.89471384884229,
+ "grad_norm": 0.2320292890071869,
+ "learning_rate": 0.0006,
+ "loss": 3.6178359985351562,
+ "step": 3160
+ },
+ {
+ "epoch": 43.90869375273045,
+ "grad_norm": 0.25862693786621094,
+ "learning_rate": 0.0006,
+ "loss": 3.618229389190674,
+ "step": 3161
+ },
+ {
+ "epoch": 43.92267365661861,
+ "grad_norm": 0.2741934061050415,
+ "learning_rate": 0.0006,
+ "loss": 3.6046690940856934,
+ "step": 3162
+ },
+ {
+ "epoch": 43.93665356050677,
+ "grad_norm": 0.24312593042850494,
+ "learning_rate": 0.0006,
+ "loss": 3.5835556983947754,
+ "step": 3163
+ },
+ {
+ "epoch": 43.95063346439493,
+ "grad_norm": 0.22174517810344696,
+ "learning_rate": 0.0006,
+ "loss": 3.6505162715911865,
+ "step": 3164
+ },
+ {
+ "epoch": 43.964613368283096,
+ "grad_norm": 0.22016975283622742,
+ "learning_rate": 0.0006,
+ "loss": 3.6385562419891357,
+ "step": 3165
+ },
+ {
+ "epoch": 43.97859327217125,
+ "grad_norm": 0.23034313321113586,
+ "learning_rate": 0.0006,
+ "loss": 3.6345865726470947,
+ "step": 3166
+ },
+ {
+ "epoch": 43.992573176059416,
+ "grad_norm": 0.21236231923103333,
+ "learning_rate": 0.0006,
+ "loss": 3.6337084770202637,
+ "step": 3167
+ },
+ {
+ "epoch": 44.0,
+ "grad_norm": 0.2344549298286438,
+ "learning_rate": 0.0006,
+ "loss": 3.677978515625,
+ "step": 3168
+ },
+ {
+ "epoch": 44.0,
+ "eval_loss": 3.9817888736724854,
+ "eval_runtime": 44.4396,
+ "eval_samples_per_second": 54.951,
+ "eval_steps_per_second": 3.443,
+ "step": 3168
+ },
+ {
+ "epoch": 44.01397990388816,
+ "grad_norm": 0.19790801405906677,
+ "learning_rate": 0.0006,
+ "loss": 3.590817451477051,
+ "step": 3169
+ },
+ {
+ "epoch": 44.02795980777632,
+ "grad_norm": 0.22922387719154358,
+ "learning_rate": 0.0006,
+ "loss": 3.643888473510742,
+ "step": 3170
+ },
+ {
+ "epoch": 44.04193971166448,
+ "grad_norm": 0.24750149250030518,
+ "learning_rate": 0.0006,
+ "loss": 3.596278667449951,
+ "step": 3171
+ },
+ {
+ "epoch": 44.05591961555265,
+ "grad_norm": 0.2511967420578003,
+ "learning_rate": 0.0006,
+ "loss": 3.6138253211975098,
+ "step": 3172
+ },
+ {
+ "epoch": 44.0698995194408,
+ "grad_norm": 0.2530326843261719,
+ "learning_rate": 0.0006,
+ "loss": 3.5710060596466064,
+ "step": 3173
+ },
+ {
+ "epoch": 44.083879423328966,
+ "grad_norm": 0.2629041373729706,
+ "learning_rate": 0.0006,
+ "loss": 3.61676025390625,
+ "step": 3174
+ },
+ {
+ "epoch": 44.09785932721712,
+ "grad_norm": 0.27373939752578735,
+ "learning_rate": 0.0006,
+ "loss": 3.613091230392456,
+ "step": 3175
+ },
+ {
+ "epoch": 44.111839231105286,
+ "grad_norm": 0.24354346096515656,
+ "learning_rate": 0.0006,
+ "loss": 3.6133360862731934,
+ "step": 3176
+ },
+ {
+ "epoch": 44.12581913499345,
+ "grad_norm": 0.21540892124176025,
+ "learning_rate": 0.0006,
+ "loss": 3.6367645263671875,
+ "step": 3177
+ },
+ {
+ "epoch": 44.139799038881605,
+ "grad_norm": 0.22251278162002563,
+ "learning_rate": 0.0006,
+ "loss": 3.6266322135925293,
+ "step": 3178
+ },
+ {
+ "epoch": 44.15377894276977,
+ "grad_norm": 0.26196029782295227,
+ "learning_rate": 0.0006,
+ "loss": 3.616487979888916,
+ "step": 3179
+ },
+ {
+ "epoch": 44.16775884665793,
+ "grad_norm": 0.2614341080188751,
+ "learning_rate": 0.0006,
+ "loss": 3.5902786254882812,
+ "step": 3180
+ },
+ {
+ "epoch": 44.18173875054609,
+ "grad_norm": 0.23517177999019623,
+ "learning_rate": 0.0006,
+ "loss": 3.610124111175537,
+ "step": 3181
+ },
+ {
+ "epoch": 44.19571865443425,
+ "grad_norm": 0.20091469585895538,
+ "learning_rate": 0.0006,
+ "loss": 3.5861713886260986,
+ "step": 3182
+ },
+ {
+ "epoch": 44.20969855832241,
+ "grad_norm": 0.19659830629825592,
+ "learning_rate": 0.0006,
+ "loss": 3.6157889366149902,
+ "step": 3183
+ },
+ {
+ "epoch": 44.22367846221057,
+ "grad_norm": 0.20690861344337463,
+ "learning_rate": 0.0006,
+ "loss": 3.5710649490356445,
+ "step": 3184
+ },
+ {
+ "epoch": 44.237658366098735,
+ "grad_norm": 0.2478247433900833,
+ "learning_rate": 0.0006,
+ "loss": 3.609031915664673,
+ "step": 3185
+ },
+ {
+ "epoch": 44.25163826998689,
+ "grad_norm": 0.2678471505641937,
+ "learning_rate": 0.0006,
+ "loss": 3.6412887573242188,
+ "step": 3186
+ },
+ {
+ "epoch": 44.265618173875055,
+ "grad_norm": 0.21856079995632172,
+ "learning_rate": 0.0006,
+ "loss": 3.6113123893737793,
+ "step": 3187
+ },
+ {
+ "epoch": 44.27959807776322,
+ "grad_norm": 0.23104850947856903,
+ "learning_rate": 0.0006,
+ "loss": 3.6022086143493652,
+ "step": 3188
+ },
+ {
+ "epoch": 44.293577981651374,
+ "grad_norm": 0.2380223423242569,
+ "learning_rate": 0.0006,
+ "loss": 3.598735809326172,
+ "step": 3189
+ },
+ {
+ "epoch": 44.30755788553954,
+ "grad_norm": 0.23005320131778717,
+ "learning_rate": 0.0006,
+ "loss": 3.595881938934326,
+ "step": 3190
+ },
+ {
+ "epoch": 44.3215377894277,
+ "grad_norm": 0.23327432572841644,
+ "learning_rate": 0.0006,
+ "loss": 3.6198601722717285,
+ "step": 3191
+ },
+ {
+ "epoch": 44.33551769331586,
+ "grad_norm": 0.2272268831729889,
+ "learning_rate": 0.0006,
+ "loss": 3.6135387420654297,
+ "step": 3192
+ },
+ {
+ "epoch": 44.34949759720402,
+ "grad_norm": 0.2518279552459717,
+ "learning_rate": 0.0006,
+ "loss": 3.6084556579589844,
+ "step": 3193
+ },
+ {
+ "epoch": 44.36347750109218,
+ "grad_norm": 0.27668607234954834,
+ "learning_rate": 0.0006,
+ "loss": 3.644430160522461,
+ "step": 3194
+ },
+ {
+ "epoch": 44.37745740498034,
+ "grad_norm": 0.26110342144966125,
+ "learning_rate": 0.0006,
+ "loss": 3.64072322845459,
+ "step": 3195
+ },
+ {
+ "epoch": 44.391437308868504,
+ "grad_norm": 0.22767964005470276,
+ "learning_rate": 0.0006,
+ "loss": 3.5570502281188965,
+ "step": 3196
+ },
+ {
+ "epoch": 44.40541721275666,
+ "grad_norm": 0.2199093997478485,
+ "learning_rate": 0.0006,
+ "loss": 3.558889150619507,
+ "step": 3197
+ },
+ {
+ "epoch": 44.419397116644824,
+ "grad_norm": 0.21653494238853455,
+ "learning_rate": 0.0006,
+ "loss": 3.6215333938598633,
+ "step": 3198
+ },
+ {
+ "epoch": 44.43337702053299,
+ "grad_norm": 0.1958773136138916,
+ "learning_rate": 0.0006,
+ "loss": 3.588468551635742,
+ "step": 3199
+ },
+ {
+ "epoch": 44.44735692442114,
+ "grad_norm": 0.20205403864383698,
+ "learning_rate": 0.0006,
+ "loss": 3.6109578609466553,
+ "step": 3200
+ },
+ {
+ "epoch": 44.46133682830931,
+ "grad_norm": 0.19632115960121155,
+ "learning_rate": 0.0006,
+ "loss": 3.634315013885498,
+ "step": 3201
+ },
+ {
+ "epoch": 44.47531673219746,
+ "grad_norm": 0.19327203929424286,
+ "learning_rate": 0.0006,
+ "loss": 3.6335930824279785,
+ "step": 3202
+ },
+ {
+ "epoch": 44.489296636085626,
+ "grad_norm": 0.19743897020816803,
+ "learning_rate": 0.0006,
+ "loss": 3.6164016723632812,
+ "step": 3203
+ },
+ {
+ "epoch": 44.50327653997379,
+ "grad_norm": 0.20413564145565033,
+ "learning_rate": 0.0006,
+ "loss": 3.663613796234131,
+ "step": 3204
+ },
+ {
+ "epoch": 44.517256443861946,
+ "grad_norm": 0.2057798206806183,
+ "learning_rate": 0.0006,
+ "loss": 3.625131130218506,
+ "step": 3205
+ },
+ {
+ "epoch": 44.53123634775011,
+ "grad_norm": 0.20076915621757507,
+ "learning_rate": 0.0006,
+ "loss": 3.6362178325653076,
+ "step": 3206
+ },
+ {
+ "epoch": 44.54521625163827,
+ "grad_norm": 0.2381955236196518,
+ "learning_rate": 0.0006,
+ "loss": 3.621263265609741,
+ "step": 3207
+ },
+ {
+ "epoch": 44.55919615552643,
+ "grad_norm": 0.27008768916130066,
+ "learning_rate": 0.0006,
+ "loss": 3.6133322715759277,
+ "step": 3208
+ },
+ {
+ "epoch": 44.57317605941459,
+ "grad_norm": 0.25677573680877686,
+ "learning_rate": 0.0006,
+ "loss": 3.6210851669311523,
+ "step": 3209
+ },
+ {
+ "epoch": 44.58715596330275,
+ "grad_norm": 0.21022997796535492,
+ "learning_rate": 0.0006,
+ "loss": 3.626483917236328,
+ "step": 3210
+ },
+ {
+ "epoch": 44.60113586719091,
+ "grad_norm": 0.19918566942214966,
+ "learning_rate": 0.0006,
+ "loss": 3.6321091651916504,
+ "step": 3211
+ },
+ {
+ "epoch": 44.615115771079076,
+ "grad_norm": 0.2114727795124054,
+ "learning_rate": 0.0006,
+ "loss": 3.5767595767974854,
+ "step": 3212
+ },
+ {
+ "epoch": 44.62909567496723,
+ "grad_norm": 0.20968441665172577,
+ "learning_rate": 0.0006,
+ "loss": 3.6040430068969727,
+ "step": 3213
+ },
+ {
+ "epoch": 44.643075578855395,
+ "grad_norm": 0.19996227324008942,
+ "learning_rate": 0.0006,
+ "loss": 3.6688590049743652,
+ "step": 3214
+ },
+ {
+ "epoch": 44.65705548274356,
+ "grad_norm": 0.19998830556869507,
+ "learning_rate": 0.0006,
+ "loss": 3.6349434852600098,
+ "step": 3215
+ },
+ {
+ "epoch": 44.671035386631715,
+ "grad_norm": 0.20812496542930603,
+ "learning_rate": 0.0006,
+ "loss": 3.6363840103149414,
+ "step": 3216
+ },
+ {
+ "epoch": 44.68501529051988,
+ "grad_norm": 0.1988825500011444,
+ "learning_rate": 0.0006,
+ "loss": 3.6180496215820312,
+ "step": 3217
+ },
+ {
+ "epoch": 44.69899519440804,
+ "grad_norm": 0.2114664614200592,
+ "learning_rate": 0.0006,
+ "loss": 3.6362106800079346,
+ "step": 3218
+ },
+ {
+ "epoch": 44.7129750982962,
+ "grad_norm": 0.19847962260246277,
+ "learning_rate": 0.0006,
+ "loss": 3.618500232696533,
+ "step": 3219
+ },
+ {
+ "epoch": 44.72695500218436,
+ "grad_norm": 0.19903887808322906,
+ "learning_rate": 0.0006,
+ "loss": 3.6360888481140137,
+ "step": 3220
+ },
+ {
+ "epoch": 44.74093490607252,
+ "grad_norm": 0.21198545396327972,
+ "learning_rate": 0.0006,
+ "loss": 3.6347005367279053,
+ "step": 3221
+ },
+ {
+ "epoch": 44.75491480996068,
+ "grad_norm": 0.18334898352622986,
+ "learning_rate": 0.0006,
+ "loss": 3.6160783767700195,
+ "step": 3222
+ },
+ {
+ "epoch": 44.768894713848844,
+ "grad_norm": 0.19260665774345398,
+ "learning_rate": 0.0006,
+ "loss": 3.6322834491729736,
+ "step": 3223
+ },
+ {
+ "epoch": 44.782874617737,
+ "grad_norm": 0.2084558755159378,
+ "learning_rate": 0.0006,
+ "loss": 3.615227699279785,
+ "step": 3224
+ },
+ {
+ "epoch": 44.796854521625164,
+ "grad_norm": 0.24538686871528625,
+ "learning_rate": 0.0006,
+ "loss": 3.6387081146240234,
+ "step": 3225
+ },
+ {
+ "epoch": 44.81083442551333,
+ "grad_norm": 0.23291894793510437,
+ "learning_rate": 0.0006,
+ "loss": 3.6245408058166504,
+ "step": 3226
+ },
+ {
+ "epoch": 44.824814329401484,
+ "grad_norm": 0.20715969800949097,
+ "learning_rate": 0.0006,
+ "loss": 3.633620262145996,
+ "step": 3227
+ },
+ {
+ "epoch": 44.83879423328965,
+ "grad_norm": 0.20866821706295013,
+ "learning_rate": 0.0006,
+ "loss": 3.613438129425049,
+ "step": 3228
+ },
+ {
+ "epoch": 44.8527741371778,
+ "grad_norm": 0.2048904299736023,
+ "learning_rate": 0.0006,
+ "loss": 3.668807029724121,
+ "step": 3229
+ },
+ {
+ "epoch": 44.86675404106597,
+ "grad_norm": 0.2073894739151001,
+ "learning_rate": 0.0006,
+ "loss": 3.6000914573669434,
+ "step": 3230
+ },
+ {
+ "epoch": 44.88073394495413,
+ "grad_norm": 0.22017404437065125,
+ "learning_rate": 0.0006,
+ "loss": 3.6024718284606934,
+ "step": 3231
+ },
+ {
+ "epoch": 44.89471384884229,
+ "grad_norm": 0.23971669375896454,
+ "learning_rate": 0.0006,
+ "loss": 3.6339516639709473,
+ "step": 3232
+ },
+ {
+ "epoch": 44.90869375273045,
+ "grad_norm": 0.2258273959159851,
+ "learning_rate": 0.0006,
+ "loss": 3.6480093002319336,
+ "step": 3233
+ },
+ {
+ "epoch": 44.92267365661861,
+ "grad_norm": 0.22079502046108246,
+ "learning_rate": 0.0006,
+ "loss": 3.643446922302246,
+ "step": 3234
+ },
+ {
+ "epoch": 44.93665356050677,
+ "grad_norm": 0.22109337151050568,
+ "learning_rate": 0.0006,
+ "loss": 3.5975499153137207,
+ "step": 3235
+ },
+ {
+ "epoch": 44.95063346439493,
+ "grad_norm": 0.20142309367656708,
+ "learning_rate": 0.0006,
+ "loss": 3.6057305335998535,
+ "step": 3236
+ },
+ {
+ "epoch": 44.964613368283096,
+ "grad_norm": 0.20089569687843323,
+ "learning_rate": 0.0006,
+ "loss": 3.5900750160217285,
+ "step": 3237
+ },
+ {
+ "epoch": 44.97859327217125,
+ "grad_norm": 0.19860075414180756,
+ "learning_rate": 0.0006,
+ "loss": 3.5954184532165527,
+ "step": 3238
+ },
+ {
+ "epoch": 44.992573176059416,
+ "grad_norm": 0.19166013598442078,
+ "learning_rate": 0.0006,
+ "loss": 3.6568803787231445,
+ "step": 3239
+ },
+ {
+ "epoch": 45.0,
+ "grad_norm": 0.22416932880878448,
+ "learning_rate": 0.0006,
+ "loss": 3.6483092308044434,
+ "step": 3240
+ },
+ {
+ "epoch": 45.0,
+ "eval_loss": 3.9821224212646484,
+ "eval_runtime": 44.5415,
+ "eval_samples_per_second": 54.825,
+ "eval_steps_per_second": 3.435,
+ "step": 3240
+ },
+ {
+ "epoch": 45.01397990388816,
+ "grad_norm": 0.2107669562101364,
+ "learning_rate": 0.0006,
+ "loss": 3.5858099460601807,
+ "step": 3241
+ },
+ {
+ "epoch": 45.02795980777632,
+ "grad_norm": 0.20831939578056335,
+ "learning_rate": 0.0006,
+ "loss": 3.5793800354003906,
+ "step": 3242
+ },
+ {
+ "epoch": 45.04193971166448,
+ "grad_norm": 0.2169167846441269,
+ "learning_rate": 0.0006,
+ "loss": 3.601961135864258,
+ "step": 3243
+ },
+ {
+ "epoch": 45.05591961555265,
+ "grad_norm": 0.22451531887054443,
+ "learning_rate": 0.0006,
+ "loss": 3.586371898651123,
+ "step": 3244
+ },
+ {
+ "epoch": 45.0698995194408,
+ "grad_norm": 0.2187003344297409,
+ "learning_rate": 0.0006,
+ "loss": 3.58760929107666,
+ "step": 3245
+ },
+ {
+ "epoch": 45.083879423328966,
+ "grad_norm": 0.22805631160736084,
+ "learning_rate": 0.0006,
+ "loss": 3.554107904434204,
+ "step": 3246
+ },
+ {
+ "epoch": 45.09785932721712,
+ "grad_norm": 0.2573186159133911,
+ "learning_rate": 0.0006,
+ "loss": 3.5815420150756836,
+ "step": 3247
+ },
+ {
+ "epoch": 45.111839231105286,
+ "grad_norm": 0.25940126180648804,
+ "learning_rate": 0.0006,
+ "loss": 3.5754308700561523,
+ "step": 3248
+ },
+ {
+ "epoch": 45.12581913499345,
+ "grad_norm": 0.23834384977817535,
+ "learning_rate": 0.0006,
+ "loss": 3.5857350826263428,
+ "step": 3249
+ },
+ {
+ "epoch": 45.139799038881605,
+ "grad_norm": 0.23342885076999664,
+ "learning_rate": 0.0006,
+ "loss": 3.6116228103637695,
+ "step": 3250
+ },
+ {
+ "epoch": 45.15377894276977,
+ "grad_norm": 0.23284269869327545,
+ "learning_rate": 0.0006,
+ "loss": 3.5778629779815674,
+ "step": 3251
+ },
+ {
+ "epoch": 45.16775884665793,
+ "grad_norm": 0.30510780215263367,
+ "learning_rate": 0.0006,
+ "loss": 3.5888915061950684,
+ "step": 3252
+ },
+ {
+ "epoch": 45.18173875054609,
+ "grad_norm": 0.3462519645690918,
+ "learning_rate": 0.0006,
+ "loss": 3.5955758094787598,
+ "step": 3253
+ },
+ {
+ "epoch": 45.19571865443425,
+ "grad_norm": 0.2795974314212799,
+ "learning_rate": 0.0006,
+ "loss": 3.6222946643829346,
+ "step": 3254
+ },
+ {
+ "epoch": 45.20969855832241,
+ "grad_norm": 0.24624103307724,
+ "learning_rate": 0.0006,
+ "loss": 3.63046932220459,
+ "step": 3255
+ },
+ {
+ "epoch": 45.22367846221057,
+ "grad_norm": 0.23007310926914215,
+ "learning_rate": 0.0006,
+ "loss": 3.652526378631592,
+ "step": 3256
+ },
+ {
+ "epoch": 45.237658366098735,
+ "grad_norm": 0.21325333416461945,
+ "learning_rate": 0.0006,
+ "loss": 3.5960049629211426,
+ "step": 3257
+ },
+ {
+ "epoch": 45.25163826998689,
+ "grad_norm": 0.22697314620018005,
+ "learning_rate": 0.0006,
+ "loss": 3.5723695755004883,
+ "step": 3258
+ },
+ {
+ "epoch": 45.265618173875055,
+ "grad_norm": 0.21900491416454315,
+ "learning_rate": 0.0006,
+ "loss": 3.613572120666504,
+ "step": 3259
+ },
+ {
+ "epoch": 45.27959807776322,
+ "grad_norm": 0.21030694246292114,
+ "learning_rate": 0.0006,
+ "loss": 3.5830235481262207,
+ "step": 3260
+ },
+ {
+ "epoch": 45.293577981651374,
+ "grad_norm": 0.20229968428611755,
+ "learning_rate": 0.0006,
+ "loss": 3.620349884033203,
+ "step": 3261
+ },
+ {
+ "epoch": 45.30755788553954,
+ "grad_norm": 0.21611201763153076,
+ "learning_rate": 0.0006,
+ "loss": 3.5937819480895996,
+ "step": 3262
+ },
+ {
+ "epoch": 45.3215377894277,
+ "grad_norm": 0.21876764297485352,
+ "learning_rate": 0.0006,
+ "loss": 3.6180777549743652,
+ "step": 3263
+ },
+ {
+ "epoch": 45.33551769331586,
+ "grad_norm": 0.200356587767601,
+ "learning_rate": 0.0006,
+ "loss": 3.6140146255493164,
+ "step": 3264
+ },
+ {
+ "epoch": 45.34949759720402,
+ "grad_norm": 0.19151835143566132,
+ "learning_rate": 0.0006,
+ "loss": 3.607077121734619,
+ "step": 3265
+ },
+ {
+ "epoch": 45.36347750109218,
+ "grad_norm": 0.1994648575782776,
+ "learning_rate": 0.0006,
+ "loss": 3.646780490875244,
+ "step": 3266
+ },
+ {
+ "epoch": 45.37745740498034,
+ "grad_norm": 0.23145829141139984,
+ "learning_rate": 0.0006,
+ "loss": 3.624591588973999,
+ "step": 3267
+ },
+ {
+ "epoch": 45.391437308868504,
+ "grad_norm": 0.23608829081058502,
+ "learning_rate": 0.0006,
+ "loss": 3.598904609680176,
+ "step": 3268
+ },
+ {
+ "epoch": 45.40541721275666,
+ "grad_norm": 0.22254547476768494,
+ "learning_rate": 0.0006,
+ "loss": 3.581087827682495,
+ "step": 3269
+ },
+ {
+ "epoch": 45.419397116644824,
+ "grad_norm": 0.21640023589134216,
+ "learning_rate": 0.0006,
+ "loss": 3.5961151123046875,
+ "step": 3270
+ },
+ {
+ "epoch": 45.43337702053299,
+ "grad_norm": 0.2252444475889206,
+ "learning_rate": 0.0006,
+ "loss": 3.590231418609619,
+ "step": 3271
+ },
+ {
+ "epoch": 45.44735692442114,
+ "grad_norm": 0.23785367608070374,
+ "learning_rate": 0.0006,
+ "loss": 3.615896701812744,
+ "step": 3272
+ },
+ {
+ "epoch": 45.46133682830931,
+ "grad_norm": 0.2509191036224365,
+ "learning_rate": 0.0006,
+ "loss": 3.6413722038269043,
+ "step": 3273
+ },
+ {
+ "epoch": 45.47531673219746,
+ "grad_norm": 0.23734210431575775,
+ "learning_rate": 0.0006,
+ "loss": 3.608898639678955,
+ "step": 3274
+ },
+ {
+ "epoch": 45.489296636085626,
+ "grad_norm": 0.19802412390708923,
+ "learning_rate": 0.0006,
+ "loss": 3.5957250595092773,
+ "step": 3275
+ },
+ {
+ "epoch": 45.50327653997379,
+ "grad_norm": 0.20621423423290253,
+ "learning_rate": 0.0006,
+ "loss": 3.607945442199707,
+ "step": 3276
+ },
+ {
+ "epoch": 45.517256443861946,
+ "grad_norm": 0.225870743393898,
+ "learning_rate": 0.0006,
+ "loss": 3.641449451446533,
+ "step": 3277
+ },
+ {
+ "epoch": 45.53123634775011,
+ "grad_norm": 0.21482397615909576,
+ "learning_rate": 0.0006,
+ "loss": 3.61629581451416,
+ "step": 3278
+ },
+ {
+ "epoch": 45.54521625163827,
+ "grad_norm": 0.21159376204013824,
+ "learning_rate": 0.0006,
+ "loss": 3.5977988243103027,
+ "step": 3279
+ },
+ {
+ "epoch": 45.55919615552643,
+ "grad_norm": 0.2031678408384323,
+ "learning_rate": 0.0006,
+ "loss": 3.629343032836914,
+ "step": 3280
+ },
+ {
+ "epoch": 45.57317605941459,
+ "grad_norm": 0.1827101707458496,
+ "learning_rate": 0.0006,
+ "loss": 3.6161365509033203,
+ "step": 3281
+ },
+ {
+ "epoch": 45.58715596330275,
+ "grad_norm": 0.21884584426879883,
+ "learning_rate": 0.0006,
+ "loss": 3.6131834983825684,
+ "step": 3282
+ },
+ {
+ "epoch": 45.60113586719091,
+ "grad_norm": 0.21764980256557465,
+ "learning_rate": 0.0006,
+ "loss": 3.612516164779663,
+ "step": 3283
+ },
+ {
+ "epoch": 45.615115771079076,
+ "grad_norm": 0.22257080674171448,
+ "learning_rate": 0.0006,
+ "loss": 3.63425874710083,
+ "step": 3284
+ },
+ {
+ "epoch": 45.62909567496723,
+ "grad_norm": 0.2419128566980362,
+ "learning_rate": 0.0006,
+ "loss": 3.602997064590454,
+ "step": 3285
+ },
+ {
+ "epoch": 45.643075578855395,
+ "grad_norm": 0.20856884121894836,
+ "learning_rate": 0.0006,
+ "loss": 3.597352981567383,
+ "step": 3286
+ },
+ {
+ "epoch": 45.65705548274356,
+ "grad_norm": 0.20298589766025543,
+ "learning_rate": 0.0006,
+ "loss": 3.5961315631866455,
+ "step": 3287
+ },
+ {
+ "epoch": 45.671035386631715,
+ "grad_norm": 0.19006133079528809,
+ "learning_rate": 0.0006,
+ "loss": 3.6314568519592285,
+ "step": 3288
+ },
+ {
+ "epoch": 45.68501529051988,
+ "grad_norm": 0.20886142551898956,
+ "learning_rate": 0.0006,
+ "loss": 3.6200413703918457,
+ "step": 3289
+ },
+ {
+ "epoch": 45.69899519440804,
+ "grad_norm": 0.18085862696170807,
+ "learning_rate": 0.0006,
+ "loss": 3.6273961067199707,
+ "step": 3290
+ },
+ {
+ "epoch": 45.7129750982962,
+ "grad_norm": 0.18651945888996124,
+ "learning_rate": 0.0006,
+ "loss": 3.6490976810455322,
+ "step": 3291
+ },
+ {
+ "epoch": 45.72695500218436,
+ "grad_norm": 0.19668170809745789,
+ "learning_rate": 0.0006,
+ "loss": 3.610409736633301,
+ "step": 3292
+ },
+ {
+ "epoch": 45.74093490607252,
+ "grad_norm": 0.19865764677524567,
+ "learning_rate": 0.0006,
+ "loss": 3.614025115966797,
+ "step": 3293
+ },
+ {
+ "epoch": 45.75491480996068,
+ "grad_norm": 0.20814085006713867,
+ "learning_rate": 0.0006,
+ "loss": 3.6220510005950928,
+ "step": 3294
+ },
+ {
+ "epoch": 45.768894713848844,
+ "grad_norm": 0.20996463298797607,
+ "learning_rate": 0.0006,
+ "loss": 3.5754218101501465,
+ "step": 3295
+ },
+ {
+ "epoch": 45.782874617737,
+ "grad_norm": 0.1987130492925644,
+ "learning_rate": 0.0006,
+ "loss": 3.614746570587158,
+ "step": 3296
+ },
+ {
+ "epoch": 45.796854521625164,
+ "grad_norm": 0.23048028349876404,
+ "learning_rate": 0.0006,
+ "loss": 3.602620840072632,
+ "step": 3297
+ },
+ {
+ "epoch": 45.81083442551333,
+ "grad_norm": 0.21877387166023254,
+ "learning_rate": 0.0006,
+ "loss": 3.6294198036193848,
+ "step": 3298
+ },
+ {
+ "epoch": 45.824814329401484,
+ "grad_norm": 0.20007763803005219,
+ "learning_rate": 0.0006,
+ "loss": 3.630868434906006,
+ "step": 3299
+ },
+ {
+ "epoch": 45.83879423328965,
+ "grad_norm": 0.200496107339859,
+ "learning_rate": 0.0006,
+ "loss": 3.5972986221313477,
+ "step": 3300
+ },
+ {
+ "epoch": 45.8527741371778,
+ "grad_norm": 0.20494480431079865,
+ "learning_rate": 0.0006,
+ "loss": 3.61934494972229,
+ "step": 3301
+ },
+ {
+ "epoch": 45.86675404106597,
+ "grad_norm": 0.21374984085559845,
+ "learning_rate": 0.0006,
+ "loss": 3.6236257553100586,
+ "step": 3302
+ },
+ {
+ "epoch": 45.88073394495413,
+ "grad_norm": 0.22020408511161804,
+ "learning_rate": 0.0006,
+ "loss": 3.6030755043029785,
+ "step": 3303
+ },
+ {
+ "epoch": 45.89471384884229,
+ "grad_norm": 0.2239987701177597,
+ "learning_rate": 0.0006,
+ "loss": 3.6778974533081055,
+ "step": 3304
+ },
+ {
+ "epoch": 45.90869375273045,
+ "grad_norm": 0.22156383097171783,
+ "learning_rate": 0.0006,
+ "loss": 3.6186561584472656,
+ "step": 3305
+ },
+ {
+ "epoch": 45.92267365661861,
+ "grad_norm": 0.2264711856842041,
+ "learning_rate": 0.0006,
+ "loss": 3.6349918842315674,
+ "step": 3306
+ },
+ {
+ "epoch": 45.93665356050677,
+ "grad_norm": 0.2287975549697876,
+ "learning_rate": 0.0006,
+ "loss": 3.600268840789795,
+ "step": 3307
+ },
+ {
+ "epoch": 45.95063346439493,
+ "grad_norm": 0.22459761798381805,
+ "learning_rate": 0.0006,
+ "loss": 3.6029114723205566,
+ "step": 3308
+ },
+ {
+ "epoch": 45.964613368283096,
+ "grad_norm": 0.2430959790945053,
+ "learning_rate": 0.0006,
+ "loss": 3.6781656742095947,
+ "step": 3309
+ },
+ {
+ "epoch": 45.97859327217125,
+ "grad_norm": 0.2718662619590759,
+ "learning_rate": 0.0006,
+ "loss": 3.606778144836426,
+ "step": 3310
+ },
+ {
+ "epoch": 45.992573176059416,
+ "grad_norm": 0.27250170707702637,
+ "learning_rate": 0.0006,
+ "loss": 3.6142611503601074,
+ "step": 3311
+ },
+ {
+ "epoch": 46.0,
+ "grad_norm": 0.26663821935653687,
+ "learning_rate": 0.0006,
+ "loss": 3.6367483139038086,
+ "step": 3312
+ },
+ {
+ "epoch": 46.0,
+ "eval_loss": 3.9835095405578613,
+ "eval_runtime": 44.6504,
+ "eval_samples_per_second": 54.692,
+ "eval_steps_per_second": 3.427,
+ "step": 3312
+ },
+ {
+ "epoch": 46.01397990388816,
+ "grad_norm": 0.22670713067054749,
+ "learning_rate": 0.0006,
+ "loss": 3.5553648471832275,
+ "step": 3313
+ },
+ {
+ "epoch": 46.02795980777632,
+ "grad_norm": 0.2759886384010315,
+ "learning_rate": 0.0006,
+ "loss": 3.595186948776245,
+ "step": 3314
+ },
+ {
+ "epoch": 46.04193971166448,
+ "grad_norm": 0.31634145975112915,
+ "learning_rate": 0.0006,
+ "loss": 3.5805907249450684,
+ "step": 3315
+ },
+ {
+ "epoch": 46.05591961555265,
+ "grad_norm": 0.3097986578941345,
+ "learning_rate": 0.0006,
+ "loss": 3.593407154083252,
+ "step": 3316
+ },
+ {
+ "epoch": 46.0698995194408,
+ "grad_norm": 0.24616138637065887,
+ "learning_rate": 0.0006,
+ "loss": 3.606736898422241,
+ "step": 3317
+ },
+ {
+ "epoch": 46.083879423328966,
+ "grad_norm": 0.22210408747196198,
+ "learning_rate": 0.0006,
+ "loss": 3.59546160697937,
+ "step": 3318
+ },
+ {
+ "epoch": 46.09785932721712,
+ "grad_norm": 0.2429778128862381,
+ "learning_rate": 0.0006,
+ "loss": 3.5900321006774902,
+ "step": 3319
+ },
+ {
+ "epoch": 46.111839231105286,
+ "grad_norm": 0.22875761985778809,
+ "learning_rate": 0.0006,
+ "loss": 3.5793521404266357,
+ "step": 3320
+ },
+ {
+ "epoch": 46.12581913499345,
+ "grad_norm": 0.21508760750293732,
+ "learning_rate": 0.0006,
+ "loss": 3.5462498664855957,
+ "step": 3321
+ },
+ {
+ "epoch": 46.139799038881605,
+ "grad_norm": 0.23590944707393646,
+ "learning_rate": 0.0006,
+ "loss": 3.6247925758361816,
+ "step": 3322
+ },
+ {
+ "epoch": 46.15377894276977,
+ "grad_norm": 0.22288036346435547,
+ "learning_rate": 0.0006,
+ "loss": 3.6063995361328125,
+ "step": 3323
+ },
+ {
+ "epoch": 46.16775884665793,
+ "grad_norm": 0.20460885763168335,
+ "learning_rate": 0.0006,
+ "loss": 3.5744826793670654,
+ "step": 3324
+ },
+ {
+ "epoch": 46.18173875054609,
+ "grad_norm": 0.20172059535980225,
+ "learning_rate": 0.0006,
+ "loss": 3.5827057361602783,
+ "step": 3325
+ },
+ {
+ "epoch": 46.19571865443425,
+ "grad_norm": 0.2268448770046234,
+ "learning_rate": 0.0006,
+ "loss": 3.5801379680633545,
+ "step": 3326
+ },
+ {
+ "epoch": 46.20969855832241,
+ "grad_norm": 0.2244444191455841,
+ "learning_rate": 0.0006,
+ "loss": 3.5790224075317383,
+ "step": 3327
+ },
+ {
+ "epoch": 46.22367846221057,
+ "grad_norm": 0.20954380929470062,
+ "learning_rate": 0.0006,
+ "loss": 3.5979342460632324,
+ "step": 3328
+ },
+ {
+ "epoch": 46.237658366098735,
+ "grad_norm": 0.21395887434482574,
+ "learning_rate": 0.0006,
+ "loss": 3.6015186309814453,
+ "step": 3329
+ },
+ {
+ "epoch": 46.25163826998689,
+ "grad_norm": 0.23200181126594543,
+ "learning_rate": 0.0006,
+ "loss": 3.5904979705810547,
+ "step": 3330
+ },
+ {
+ "epoch": 46.265618173875055,
+ "grad_norm": 0.20558731257915497,
+ "learning_rate": 0.0006,
+ "loss": 3.5745811462402344,
+ "step": 3331
+ },
+ {
+ "epoch": 46.27959807776322,
+ "grad_norm": 0.1973227560520172,
+ "learning_rate": 0.0006,
+ "loss": 3.588560104370117,
+ "step": 3332
+ },
+ {
+ "epoch": 46.293577981651374,
+ "grad_norm": 0.2137945592403412,
+ "learning_rate": 0.0006,
+ "loss": 3.606064796447754,
+ "step": 3333
+ },
+ {
+ "epoch": 46.30755788553954,
+ "grad_norm": 0.2082151472568512,
+ "learning_rate": 0.0006,
+ "loss": 3.569392442703247,
+ "step": 3334
+ },
+ {
+ "epoch": 46.3215377894277,
+ "grad_norm": 0.2151029258966446,
+ "learning_rate": 0.0006,
+ "loss": 3.6016604900360107,
+ "step": 3335
+ },
+ {
+ "epoch": 46.33551769331586,
+ "grad_norm": 0.2256474643945694,
+ "learning_rate": 0.0006,
+ "loss": 3.571319580078125,
+ "step": 3336
+ },
+ {
+ "epoch": 46.34949759720402,
+ "grad_norm": 0.21454207599163055,
+ "learning_rate": 0.0006,
+ "loss": 3.6028685569763184,
+ "step": 3337
+ },
+ {
+ "epoch": 46.36347750109218,
+ "grad_norm": 0.21864144504070282,
+ "learning_rate": 0.0006,
+ "loss": 3.6146860122680664,
+ "step": 3338
+ },
+ {
+ "epoch": 46.37745740498034,
+ "grad_norm": 0.24512453377246857,
+ "learning_rate": 0.0006,
+ "loss": 3.614696502685547,
+ "step": 3339
+ },
+ {
+ "epoch": 46.391437308868504,
+ "grad_norm": 0.26355695724487305,
+ "learning_rate": 0.0006,
+ "loss": 3.6124234199523926,
+ "step": 3340
+ },
+ {
+ "epoch": 46.40541721275666,
+ "grad_norm": 0.2778678834438324,
+ "learning_rate": 0.0006,
+ "loss": 3.6075634956359863,
+ "step": 3341
+ },
+ {
+ "epoch": 46.419397116644824,
+ "grad_norm": 0.2626822292804718,
+ "learning_rate": 0.0006,
+ "loss": 3.59267520904541,
+ "step": 3342
+ },
+ {
+ "epoch": 46.43337702053299,
+ "grad_norm": 0.2211887091398239,
+ "learning_rate": 0.0006,
+ "loss": 3.606135606765747,
+ "step": 3343
+ },
+ {
+ "epoch": 46.44735692442114,
+ "grad_norm": 0.20117639005184174,
+ "learning_rate": 0.0006,
+ "loss": 3.566512107849121,
+ "step": 3344
+ },
+ {
+ "epoch": 46.46133682830931,
+ "grad_norm": 0.20202599465847015,
+ "learning_rate": 0.0006,
+ "loss": 3.603398561477661,
+ "step": 3345
+ },
+ {
+ "epoch": 46.47531673219746,
+ "grad_norm": 0.22238481044769287,
+ "learning_rate": 0.0006,
+ "loss": 3.599888324737549,
+ "step": 3346
+ },
+ {
+ "epoch": 46.489296636085626,
+ "grad_norm": 0.23298178613185883,
+ "learning_rate": 0.0006,
+ "loss": 3.6135406494140625,
+ "step": 3347
+ },
+ {
+ "epoch": 46.50327653997379,
+ "grad_norm": 0.21998152136802673,
+ "learning_rate": 0.0006,
+ "loss": 3.6022939682006836,
+ "step": 3348
+ },
+ {
+ "epoch": 46.517256443861946,
+ "grad_norm": 0.22595210373401642,
+ "learning_rate": 0.0006,
+ "loss": 3.605905532836914,
+ "step": 3349
+ },
+ {
+ "epoch": 46.53123634775011,
+ "grad_norm": 0.23549678921699524,
+ "learning_rate": 0.0006,
+ "loss": 3.606264591217041,
+ "step": 3350
+ },
+ {
+ "epoch": 46.54521625163827,
+ "grad_norm": 0.2075573205947876,
+ "learning_rate": 0.0006,
+ "loss": 3.580575942993164,
+ "step": 3351
+ },
+ {
+ "epoch": 46.55919615552643,
+ "grad_norm": 0.19052642583847046,
+ "learning_rate": 0.0006,
+ "loss": 3.618326187133789,
+ "step": 3352
+ },
+ {
+ "epoch": 46.57317605941459,
+ "grad_norm": 0.20372900366783142,
+ "learning_rate": 0.0006,
+ "loss": 3.5817952156066895,
+ "step": 3353
+ },
+ {
+ "epoch": 46.58715596330275,
+ "grad_norm": 0.20024648308753967,
+ "learning_rate": 0.0006,
+ "loss": 3.6128273010253906,
+ "step": 3354
+ },
+ {
+ "epoch": 46.60113586719091,
+ "grad_norm": 0.20892181992530823,
+ "learning_rate": 0.0006,
+ "loss": 3.6173012256622314,
+ "step": 3355
+ },
+ {
+ "epoch": 46.615115771079076,
+ "grad_norm": 0.20254571735858917,
+ "learning_rate": 0.0006,
+ "loss": 3.5924699306488037,
+ "step": 3356
+ },
+ {
+ "epoch": 46.62909567496723,
+ "grad_norm": 0.20290599763393402,
+ "learning_rate": 0.0006,
+ "loss": 3.6134514808654785,
+ "step": 3357
+ },
+ {
+ "epoch": 46.643075578855395,
+ "grad_norm": 0.23314513266086578,
+ "learning_rate": 0.0006,
+ "loss": 3.604102611541748,
+ "step": 3358
+ },
+ {
+ "epoch": 46.65705548274356,
+ "grad_norm": 0.2352486401796341,
+ "learning_rate": 0.0006,
+ "loss": 3.6210808753967285,
+ "step": 3359
+ },
+ {
+ "epoch": 46.671035386631715,
+ "grad_norm": 0.2289503663778305,
+ "learning_rate": 0.0006,
+ "loss": 3.596968650817871,
+ "step": 3360
+ },
+ {
+ "epoch": 46.68501529051988,
+ "grad_norm": 0.19971057772636414,
+ "learning_rate": 0.0006,
+ "loss": 3.5973198413848877,
+ "step": 3361
+ },
+ {
+ "epoch": 46.69899519440804,
+ "grad_norm": 0.21000619232654572,
+ "learning_rate": 0.0006,
+ "loss": 3.607048511505127,
+ "step": 3362
+ },
+ {
+ "epoch": 46.7129750982962,
+ "grad_norm": 0.22295686602592468,
+ "learning_rate": 0.0006,
+ "loss": 3.6323728561401367,
+ "step": 3363
+ },
+ {
+ "epoch": 46.72695500218436,
+ "grad_norm": 0.21939052641391754,
+ "learning_rate": 0.0006,
+ "loss": 3.6073317527770996,
+ "step": 3364
+ },
+ {
+ "epoch": 46.74093490607252,
+ "grad_norm": 0.2192271202802658,
+ "learning_rate": 0.0006,
+ "loss": 3.6396851539611816,
+ "step": 3365
+ },
+ {
+ "epoch": 46.75491480996068,
+ "grad_norm": 0.20871607959270477,
+ "learning_rate": 0.0006,
+ "loss": 3.613509178161621,
+ "step": 3366
+ },
+ {
+ "epoch": 46.768894713848844,
+ "grad_norm": 0.1837828904390335,
+ "learning_rate": 0.0006,
+ "loss": 3.604039192199707,
+ "step": 3367
+ },
+ {
+ "epoch": 46.782874617737,
+ "grad_norm": 0.1904219537973404,
+ "learning_rate": 0.0006,
+ "loss": 3.6065895557403564,
+ "step": 3368
+ },
+ {
+ "epoch": 46.796854521625164,
+ "grad_norm": 0.19873572885990143,
+ "learning_rate": 0.0006,
+ "loss": 3.5927226543426514,
+ "step": 3369
+ },
+ {
+ "epoch": 46.81083442551333,
+ "grad_norm": 0.18319591879844666,
+ "learning_rate": 0.0006,
+ "loss": 3.6114919185638428,
+ "step": 3370
+ },
+ {
+ "epoch": 46.824814329401484,
+ "grad_norm": 0.19832435250282288,
+ "learning_rate": 0.0006,
+ "loss": 3.613637924194336,
+ "step": 3371
+ },
+ {
+ "epoch": 46.83879423328965,
+ "grad_norm": 0.21506333351135254,
+ "learning_rate": 0.0006,
+ "loss": 3.6116209030151367,
+ "step": 3372
+ },
+ {
+ "epoch": 46.8527741371778,
+ "grad_norm": 0.20374484360218048,
+ "learning_rate": 0.0006,
+ "loss": 3.5923004150390625,
+ "step": 3373
+ },
+ {
+ "epoch": 46.86675404106597,
+ "grad_norm": 0.19743360579013824,
+ "learning_rate": 0.0006,
+ "loss": 3.599381685256958,
+ "step": 3374
+ },
+ {
+ "epoch": 46.88073394495413,
+ "grad_norm": 0.20996616780757904,
+ "learning_rate": 0.0006,
+ "loss": 3.624969959259033,
+ "step": 3375
+ },
+ {
+ "epoch": 46.89471384884229,
+ "grad_norm": 0.22336791455745697,
+ "learning_rate": 0.0006,
+ "loss": 3.6152467727661133,
+ "step": 3376
+ },
+ {
+ "epoch": 46.90869375273045,
+ "grad_norm": 0.2337532341480255,
+ "learning_rate": 0.0006,
+ "loss": 3.6198863983154297,
+ "step": 3377
+ },
+ {
+ "epoch": 46.92267365661861,
+ "grad_norm": 0.23823462426662445,
+ "learning_rate": 0.0006,
+ "loss": 3.6411237716674805,
+ "step": 3378
+ },
+ {
+ "epoch": 46.93665356050677,
+ "grad_norm": 0.2521338164806366,
+ "learning_rate": 0.0006,
+ "loss": 3.621544122695923,
+ "step": 3379
+ },
+ {
+ "epoch": 46.95063346439493,
+ "grad_norm": 0.253682941198349,
+ "learning_rate": 0.0006,
+ "loss": 3.6570887565612793,
+ "step": 3380
+ },
+ {
+ "epoch": 46.964613368283096,
+ "grad_norm": 0.23392300307750702,
+ "learning_rate": 0.0006,
+ "loss": 3.669538974761963,
+ "step": 3381
+ },
+ {
+ "epoch": 46.97859327217125,
+ "grad_norm": 0.2154092937707901,
+ "learning_rate": 0.0006,
+ "loss": 3.6184825897216797,
+ "step": 3382
+ },
+ {
+ "epoch": 46.992573176059416,
+ "grad_norm": 0.1909833699464798,
+ "learning_rate": 0.0006,
+ "loss": 3.647658348083496,
+ "step": 3383
+ },
+ {
+ "epoch": 47.0,
+ "grad_norm": 0.2226407378911972,
+ "learning_rate": 0.0006,
+ "loss": 3.6413815021514893,
+ "step": 3384
+ },
+ {
+ "epoch": 47.0,
+ "eval_loss": 3.98313570022583,
+ "eval_runtime": 44.7152,
+ "eval_samples_per_second": 54.612,
+ "eval_steps_per_second": 3.422,
+ "step": 3384
+ },
+ {
+ "epoch": 47.01397990388816,
+ "grad_norm": 0.20830968022346497,
+ "learning_rate": 0.0006,
+ "loss": 3.5652623176574707,
+ "step": 3385
+ },
+ {
+ "epoch": 47.02795980777632,
+ "grad_norm": 0.18953651189804077,
+ "learning_rate": 0.0006,
+ "loss": 3.570180654525757,
+ "step": 3386
+ },
+ {
+ "epoch": 47.04193971166448,
+ "grad_norm": 0.20167700946331024,
+ "learning_rate": 0.0006,
+ "loss": 3.5623056888580322,
+ "step": 3387
+ },
+ {
+ "epoch": 47.05591961555265,
+ "grad_norm": 0.21554343402385712,
+ "learning_rate": 0.0006,
+ "loss": 3.549492835998535,
+ "step": 3388
+ },
+ {
+ "epoch": 47.0698995194408,
+ "grad_norm": 0.2232149988412857,
+ "learning_rate": 0.0006,
+ "loss": 3.584181785583496,
+ "step": 3389
+ },
+ {
+ "epoch": 47.083879423328966,
+ "grad_norm": 0.23489049077033997,
+ "learning_rate": 0.0006,
+ "loss": 3.581028461456299,
+ "step": 3390
+ },
+ {
+ "epoch": 47.09785932721712,
+ "grad_norm": 0.22486020624637604,
+ "learning_rate": 0.0006,
+ "loss": 3.600348949432373,
+ "step": 3391
+ },
+ {
+ "epoch": 47.111839231105286,
+ "grad_norm": 0.22932346165180206,
+ "learning_rate": 0.0006,
+ "loss": 3.5600457191467285,
+ "step": 3392
+ },
+ {
+ "epoch": 47.12581913499345,
+ "grad_norm": 0.2179419994354248,
+ "learning_rate": 0.0006,
+ "loss": 3.560136079788208,
+ "step": 3393
+ },
+ {
+ "epoch": 47.139799038881605,
+ "grad_norm": 0.2438054382801056,
+ "learning_rate": 0.0006,
+ "loss": 3.5955698490142822,
+ "step": 3394
+ },
+ {
+ "epoch": 47.15377894276977,
+ "grad_norm": 0.2652001976966858,
+ "learning_rate": 0.0006,
+ "loss": 3.5942912101745605,
+ "step": 3395
+ },
+ {
+ "epoch": 47.16775884665793,
+ "grad_norm": 0.270924836397171,
+ "learning_rate": 0.0006,
+ "loss": 3.5733351707458496,
+ "step": 3396
+ },
+ {
+ "epoch": 47.18173875054609,
+ "grad_norm": 0.28365132212638855,
+ "learning_rate": 0.0006,
+ "loss": 3.6042075157165527,
+ "step": 3397
+ },
+ {
+ "epoch": 47.19571865443425,
+ "grad_norm": 0.29530975222587585,
+ "learning_rate": 0.0006,
+ "loss": 3.588935375213623,
+ "step": 3398
+ },
+ {
+ "epoch": 47.20969855832241,
+ "grad_norm": 0.2658918797969818,
+ "learning_rate": 0.0006,
+ "loss": 3.5944671630859375,
+ "step": 3399
+ },
+ {
+ "epoch": 47.22367846221057,
+ "grad_norm": 0.24076500535011292,
+ "learning_rate": 0.0006,
+ "loss": 3.5853185653686523,
+ "step": 3400
+ },
+ {
+ "epoch": 47.237658366098735,
+ "grad_norm": 0.23032112419605255,
+ "learning_rate": 0.0006,
+ "loss": 3.620483875274658,
+ "step": 3401
+ },
+ {
+ "epoch": 47.25163826998689,
+ "grad_norm": 0.23124775290489197,
+ "learning_rate": 0.0006,
+ "loss": 3.6032004356384277,
+ "step": 3402
+ },
+ {
+ "epoch": 47.265618173875055,
+ "grad_norm": 0.21960225701332092,
+ "learning_rate": 0.0006,
+ "loss": 3.6079649925231934,
+ "step": 3403
+ },
+ {
+ "epoch": 47.27959807776322,
+ "grad_norm": 0.236652672290802,
+ "learning_rate": 0.0006,
+ "loss": 3.582645893096924,
+ "step": 3404
+ },
+ {
+ "epoch": 47.293577981651374,
+ "grad_norm": 0.2600267231464386,
+ "learning_rate": 0.0006,
+ "loss": 3.6067757606506348,
+ "step": 3405
+ },
+ {
+ "epoch": 47.30755788553954,
+ "grad_norm": 0.2337152659893036,
+ "learning_rate": 0.0006,
+ "loss": 3.5912275314331055,
+ "step": 3406
+ },
+ {
+ "epoch": 47.3215377894277,
+ "grad_norm": 0.21887873113155365,
+ "learning_rate": 0.0006,
+ "loss": 3.6008896827697754,
+ "step": 3407
+ },
+ {
+ "epoch": 47.33551769331586,
+ "grad_norm": 0.20265911519527435,
+ "learning_rate": 0.0006,
+ "loss": 3.5820152759552,
+ "step": 3408
+ },
+ {
+ "epoch": 47.34949759720402,
+ "grad_norm": 0.2005501389503479,
+ "learning_rate": 0.0006,
+ "loss": 3.604556083679199,
+ "step": 3409
+ },
+ {
+ "epoch": 47.36347750109218,
+ "grad_norm": 0.20682275295257568,
+ "learning_rate": 0.0006,
+ "loss": 3.584531307220459,
+ "step": 3410
+ },
+ {
+ "epoch": 47.37745740498034,
+ "grad_norm": 0.23283354938030243,
+ "learning_rate": 0.0006,
+ "loss": 3.59186053276062,
+ "step": 3411
+ },
+ {
+ "epoch": 47.391437308868504,
+ "grad_norm": 0.23033356666564941,
+ "learning_rate": 0.0006,
+ "loss": 3.5944037437438965,
+ "step": 3412
+ },
+ {
+ "epoch": 47.40541721275666,
+ "grad_norm": 0.21714402735233307,
+ "learning_rate": 0.0006,
+ "loss": 3.5834851264953613,
+ "step": 3413
+ },
+ {
+ "epoch": 47.419397116644824,
+ "grad_norm": 0.2138672024011612,
+ "learning_rate": 0.0006,
+ "loss": 3.6313700675964355,
+ "step": 3414
+ },
+ {
+ "epoch": 47.43337702053299,
+ "grad_norm": 0.23200160264968872,
+ "learning_rate": 0.0006,
+ "loss": 3.6112399101257324,
+ "step": 3415
+ },
+ {
+ "epoch": 47.44735692442114,
+ "grad_norm": 0.2632092833518982,
+ "learning_rate": 0.0006,
+ "loss": 3.6099038124084473,
+ "step": 3416
+ },
+ {
+ "epoch": 47.46133682830931,
+ "grad_norm": 0.23115520179271698,
+ "learning_rate": 0.0006,
+ "loss": 3.6060497760772705,
+ "step": 3417
+ },
+ {
+ "epoch": 47.47531673219746,
+ "grad_norm": 0.2596223056316376,
+ "learning_rate": 0.0006,
+ "loss": 3.5749685764312744,
+ "step": 3418
+ },
+ {
+ "epoch": 47.489296636085626,
+ "grad_norm": 0.27893415093421936,
+ "learning_rate": 0.0006,
+ "loss": 3.584045886993408,
+ "step": 3419
+ },
+ {
+ "epoch": 47.50327653997379,
+ "grad_norm": 0.23112469911575317,
+ "learning_rate": 0.0006,
+ "loss": 3.595407485961914,
+ "step": 3420
+ },
+ {
+ "epoch": 47.517256443861946,
+ "grad_norm": 0.23562486469745636,
+ "learning_rate": 0.0006,
+ "loss": 3.5657241344451904,
+ "step": 3421
+ },
+ {
+ "epoch": 47.53123634775011,
+ "grad_norm": 0.23366105556488037,
+ "learning_rate": 0.0006,
+ "loss": 3.624885082244873,
+ "step": 3422
+ },
+ {
+ "epoch": 47.54521625163827,
+ "grad_norm": 0.24383248388767242,
+ "learning_rate": 0.0006,
+ "loss": 3.638352394104004,
+ "step": 3423
+ },
+ {
+ "epoch": 47.55919615552643,
+ "grad_norm": 0.26388120651245117,
+ "learning_rate": 0.0006,
+ "loss": 3.614579200744629,
+ "step": 3424
+ },
+ {
+ "epoch": 47.57317605941459,
+ "grad_norm": 0.23676545917987823,
+ "learning_rate": 0.0006,
+ "loss": 3.609004259109497,
+ "step": 3425
+ },
+ {
+ "epoch": 47.58715596330275,
+ "grad_norm": 0.227967768907547,
+ "learning_rate": 0.0006,
+ "loss": 3.626171827316284,
+ "step": 3426
+ },
+ {
+ "epoch": 47.60113586719091,
+ "grad_norm": 0.23786529898643494,
+ "learning_rate": 0.0006,
+ "loss": 3.6205172538757324,
+ "step": 3427
+ },
+ {
+ "epoch": 47.615115771079076,
+ "grad_norm": 0.2599100172519684,
+ "learning_rate": 0.0006,
+ "loss": 3.6178271770477295,
+ "step": 3428
+ },
+ {
+ "epoch": 47.62909567496723,
+ "grad_norm": 0.2591858208179474,
+ "learning_rate": 0.0006,
+ "loss": 3.600297451019287,
+ "step": 3429
+ },
+ {
+ "epoch": 47.643075578855395,
+ "grad_norm": 0.2234215885400772,
+ "learning_rate": 0.0006,
+ "loss": 3.623141288757324,
+ "step": 3430
+ },
+ {
+ "epoch": 47.65705548274356,
+ "grad_norm": 0.23395098745822906,
+ "learning_rate": 0.0006,
+ "loss": 3.6243159770965576,
+ "step": 3431
+ },
+ {
+ "epoch": 47.671035386631715,
+ "grad_norm": 0.25706854462623596,
+ "learning_rate": 0.0006,
+ "loss": 3.5933618545532227,
+ "step": 3432
+ },
+ {
+ "epoch": 47.68501529051988,
+ "grad_norm": 0.22468037903308868,
+ "learning_rate": 0.0006,
+ "loss": 3.6048693656921387,
+ "step": 3433
+ },
+ {
+ "epoch": 47.69899519440804,
+ "grad_norm": 0.22432644665241241,
+ "learning_rate": 0.0006,
+ "loss": 3.604891777038574,
+ "step": 3434
+ },
+ {
+ "epoch": 47.7129750982962,
+ "grad_norm": 0.2278960943222046,
+ "learning_rate": 0.0006,
+ "loss": 3.610567092895508,
+ "step": 3435
+ },
+ {
+ "epoch": 47.72695500218436,
+ "grad_norm": 0.20652735233306885,
+ "learning_rate": 0.0006,
+ "loss": 3.60245418548584,
+ "step": 3436
+ },
+ {
+ "epoch": 47.74093490607252,
+ "grad_norm": 0.2141297310590744,
+ "learning_rate": 0.0006,
+ "loss": 3.5712027549743652,
+ "step": 3437
+ },
+ {
+ "epoch": 47.75491480996068,
+ "grad_norm": 0.23282566666603088,
+ "learning_rate": 0.0006,
+ "loss": 3.573568820953369,
+ "step": 3438
+ },
+ {
+ "epoch": 47.768894713848844,
+ "grad_norm": 0.21718674898147583,
+ "learning_rate": 0.0006,
+ "loss": 3.602047920227051,
+ "step": 3439
+ },
+ {
+ "epoch": 47.782874617737,
+ "grad_norm": 0.19592095911502838,
+ "learning_rate": 0.0006,
+ "loss": 3.6046957969665527,
+ "step": 3440
+ },
+ {
+ "epoch": 47.796854521625164,
+ "grad_norm": 0.21548260748386383,
+ "learning_rate": 0.0006,
+ "loss": 3.5808444023132324,
+ "step": 3441
+ },
+ {
+ "epoch": 47.81083442551333,
+ "grad_norm": 0.21945662796497345,
+ "learning_rate": 0.0006,
+ "loss": 3.6044554710388184,
+ "step": 3442
+ },
+ {
+ "epoch": 47.824814329401484,
+ "grad_norm": 0.20777440071105957,
+ "learning_rate": 0.0006,
+ "loss": 3.5991361141204834,
+ "step": 3443
+ },
+ {
+ "epoch": 47.83879423328965,
+ "grad_norm": 0.21566642820835114,
+ "learning_rate": 0.0006,
+ "loss": 3.6272850036621094,
+ "step": 3444
+ },
+ {
+ "epoch": 47.8527741371778,
+ "grad_norm": 0.22365771234035492,
+ "learning_rate": 0.0006,
+ "loss": 3.6323323249816895,
+ "step": 3445
+ },
+ {
+ "epoch": 47.86675404106597,
+ "grad_norm": 0.20193088054656982,
+ "learning_rate": 0.0006,
+ "loss": 3.5938191413879395,
+ "step": 3446
+ },
+ {
+ "epoch": 47.88073394495413,
+ "grad_norm": 0.20968061685562134,
+ "learning_rate": 0.0006,
+ "loss": 3.616640329360962,
+ "step": 3447
+ },
+ {
+ "epoch": 47.89471384884229,
+ "grad_norm": 0.20275580883026123,
+ "learning_rate": 0.0006,
+ "loss": 3.5769052505493164,
+ "step": 3448
+ },
+ {
+ "epoch": 47.90869375273045,
+ "grad_norm": 0.237605020403862,
+ "learning_rate": 0.0006,
+ "loss": 3.6221203804016113,
+ "step": 3449
+ },
+ {
+ "epoch": 47.92267365661861,
+ "grad_norm": 0.2820972502231598,
+ "learning_rate": 0.0006,
+ "loss": 3.5977487564086914,
+ "step": 3450
+ },
+ {
+ "epoch": 47.93665356050677,
+ "grad_norm": 0.23722891509532928,
+ "learning_rate": 0.0006,
+ "loss": 3.5963053703308105,
+ "step": 3451
+ },
+ {
+ "epoch": 47.95063346439493,
+ "grad_norm": 0.21471276879310608,
+ "learning_rate": 0.0006,
+ "loss": 3.6234917640686035,
+ "step": 3452
+ },
+ {
+ "epoch": 47.964613368283096,
+ "grad_norm": 0.2139028012752533,
+ "learning_rate": 0.0006,
+ "loss": 3.640500545501709,
+ "step": 3453
+ },
+ {
+ "epoch": 47.97859327217125,
+ "grad_norm": 0.1966913342475891,
+ "learning_rate": 0.0006,
+ "loss": 3.5856776237487793,
+ "step": 3454
+ },
+ {
+ "epoch": 47.992573176059416,
+ "grad_norm": 0.2375730276107788,
+ "learning_rate": 0.0006,
+ "loss": 3.6126937866210938,
+ "step": 3455
+ },
+ {
+ "epoch": 48.0,
+ "grad_norm": 0.2772855758666992,
+ "learning_rate": 0.0006,
+ "loss": 3.6041951179504395,
+ "step": 3456
+ },
+ {
+ "epoch": 48.0,
+ "eval_loss": 3.971400499343872,
+ "eval_runtime": 45.4792,
+ "eval_samples_per_second": 53.695,
+ "eval_steps_per_second": 3.364,
+ "step": 3456
+ },
+ {
+ "epoch": 48.01397990388816,
+ "grad_norm": 0.2269497811794281,
+ "learning_rate": 0.0006,
+ "loss": 3.525441884994507,
+ "step": 3457
+ },
+ {
+ "epoch": 48.02795980777632,
+ "grad_norm": 0.2080184519290924,
+ "learning_rate": 0.0006,
+ "loss": 3.5727145671844482,
+ "step": 3458
+ },
+ {
+ "epoch": 48.04193971166448,
+ "grad_norm": 0.21827049553394318,
+ "learning_rate": 0.0006,
+ "loss": 3.5799875259399414,
+ "step": 3459
+ },
+ {
+ "epoch": 48.05591961555265,
+ "grad_norm": 0.2173643410205841,
+ "learning_rate": 0.0006,
+ "loss": 3.587097406387329,
+ "step": 3460
+ },
+ {
+ "epoch": 48.0698995194408,
+ "grad_norm": 0.23125280439853668,
+ "learning_rate": 0.0006,
+ "loss": 3.593235969543457,
+ "step": 3461
+ },
+ {
+ "epoch": 48.083879423328966,
+ "grad_norm": 0.2235819697380066,
+ "learning_rate": 0.0006,
+ "loss": 3.5724973678588867,
+ "step": 3462
+ },
+ {
+ "epoch": 48.09785932721712,
+ "grad_norm": 0.2329849898815155,
+ "learning_rate": 0.0006,
+ "loss": 3.5689549446105957,
+ "step": 3463
+ },
+ {
+ "epoch": 48.111839231105286,
+ "grad_norm": 0.21178825199604034,
+ "learning_rate": 0.0006,
+ "loss": 3.5522305965423584,
+ "step": 3464
+ },
+ {
+ "epoch": 48.12581913499345,
+ "grad_norm": 0.22026701271533966,
+ "learning_rate": 0.0006,
+ "loss": 3.5622801780700684,
+ "step": 3465
+ },
+ {
+ "epoch": 48.139799038881605,
+ "grad_norm": 0.23427478969097137,
+ "learning_rate": 0.0006,
+ "loss": 3.6076972484588623,
+ "step": 3466
+ },
+ {
+ "epoch": 48.15377894276977,
+ "grad_norm": 0.22437651455402374,
+ "learning_rate": 0.0006,
+ "loss": 3.5898380279541016,
+ "step": 3467
+ },
+ {
+ "epoch": 48.16775884665793,
+ "grad_norm": 0.22911588847637177,
+ "learning_rate": 0.0006,
+ "loss": 3.584866523742676,
+ "step": 3468
+ },
+ {
+ "epoch": 48.18173875054609,
+ "grad_norm": 0.21358130872249603,
+ "learning_rate": 0.0006,
+ "loss": 3.581397533416748,
+ "step": 3469
+ },
+ {
+ "epoch": 48.19571865443425,
+ "grad_norm": 0.2102762758731842,
+ "learning_rate": 0.0006,
+ "loss": 3.6218419075012207,
+ "step": 3470
+ },
+ {
+ "epoch": 48.20969855832241,
+ "grad_norm": 0.22417177259922028,
+ "learning_rate": 0.0006,
+ "loss": 3.5875539779663086,
+ "step": 3471
+ },
+ {
+ "epoch": 48.22367846221057,
+ "grad_norm": 0.2096744030714035,
+ "learning_rate": 0.0006,
+ "loss": 3.6017215251922607,
+ "step": 3472
+ },
+ {
+ "epoch": 48.237658366098735,
+ "grad_norm": 0.18693844974040985,
+ "learning_rate": 0.0006,
+ "loss": 3.590221405029297,
+ "step": 3473
+ },
+ {
+ "epoch": 48.25163826998689,
+ "grad_norm": 0.21102994680404663,
+ "learning_rate": 0.0006,
+ "loss": 3.5685019493103027,
+ "step": 3474
+ },
+ {
+ "epoch": 48.265618173875055,
+ "grad_norm": 0.20756356418132782,
+ "learning_rate": 0.0006,
+ "loss": 3.577427387237549,
+ "step": 3475
+ },
+ {
+ "epoch": 48.27959807776322,
+ "grad_norm": 0.20425064861774445,
+ "learning_rate": 0.0006,
+ "loss": 3.602522134780884,
+ "step": 3476
+ },
+ {
+ "epoch": 48.293577981651374,
+ "grad_norm": 0.1976020187139511,
+ "learning_rate": 0.0006,
+ "loss": 3.5847134590148926,
+ "step": 3477
+ },
+ {
+ "epoch": 48.30755788553954,
+ "grad_norm": 0.19685129821300507,
+ "learning_rate": 0.0006,
+ "loss": 3.5638442039489746,
+ "step": 3478
+ },
+ {
+ "epoch": 48.3215377894277,
+ "grad_norm": 0.19657646119594574,
+ "learning_rate": 0.0006,
+ "loss": 3.5669779777526855,
+ "step": 3479
+ },
+ {
+ "epoch": 48.33551769331586,
+ "grad_norm": 0.19855819642543793,
+ "learning_rate": 0.0006,
+ "loss": 3.5712571144104004,
+ "step": 3480
+ },
+ {
+ "epoch": 48.34949759720402,
+ "grad_norm": 0.19961503148078918,
+ "learning_rate": 0.0006,
+ "loss": 3.5869312286376953,
+ "step": 3481
+ },
+ {
+ "epoch": 48.36347750109218,
+ "grad_norm": 0.19302639365196228,
+ "learning_rate": 0.0006,
+ "loss": 3.571394920349121,
+ "step": 3482
+ },
+ {
+ "epoch": 48.37745740498034,
+ "grad_norm": 0.1953866183757782,
+ "learning_rate": 0.0006,
+ "loss": 3.556633234024048,
+ "step": 3483
+ },
+ {
+ "epoch": 48.391437308868504,
+ "grad_norm": 0.20028206706047058,
+ "learning_rate": 0.0006,
+ "loss": 3.5559535026550293,
+ "step": 3484
+ },
+ {
+ "epoch": 48.40541721275666,
+ "grad_norm": 0.2286558896303177,
+ "learning_rate": 0.0006,
+ "loss": 3.6052510738372803,
+ "step": 3485
+ },
+ {
+ "epoch": 48.419397116644824,
+ "grad_norm": 0.21764399111270905,
+ "learning_rate": 0.0006,
+ "loss": 3.5955848693847656,
+ "step": 3486
+ },
+ {
+ "epoch": 48.43337702053299,
+ "grad_norm": 0.2257501780986786,
+ "learning_rate": 0.0006,
+ "loss": 3.586179256439209,
+ "step": 3487
+ },
+ {
+ "epoch": 48.44735692442114,
+ "grad_norm": 0.23023653030395508,
+ "learning_rate": 0.0006,
+ "loss": 3.593329906463623,
+ "step": 3488
+ },
+ {
+ "epoch": 48.46133682830931,
+ "grad_norm": 0.21283918619155884,
+ "learning_rate": 0.0006,
+ "loss": 3.5909814834594727,
+ "step": 3489
+ },
+ {
+ "epoch": 48.47531673219746,
+ "grad_norm": 0.2143639773130417,
+ "learning_rate": 0.0006,
+ "loss": 3.61320161819458,
+ "step": 3490
+ },
+ {
+ "epoch": 48.489296636085626,
+ "grad_norm": 0.2138844132423401,
+ "learning_rate": 0.0006,
+ "loss": 3.556607246398926,
+ "step": 3491
+ },
+ {
+ "epoch": 48.50327653997379,
+ "grad_norm": 0.22122617065906525,
+ "learning_rate": 0.0006,
+ "loss": 3.629208564758301,
+ "step": 3492
+ },
+ {
+ "epoch": 48.517256443861946,
+ "grad_norm": 0.22430218756198883,
+ "learning_rate": 0.0006,
+ "loss": 3.61891508102417,
+ "step": 3493
+ },
+ {
+ "epoch": 48.53123634775011,
+ "grad_norm": 0.23830844461917877,
+ "learning_rate": 0.0006,
+ "loss": 3.5818424224853516,
+ "step": 3494
+ },
+ {
+ "epoch": 48.54521625163827,
+ "grad_norm": 0.23596757650375366,
+ "learning_rate": 0.0006,
+ "loss": 3.609959602355957,
+ "step": 3495
+ },
+ {
+ "epoch": 48.55919615552643,
+ "grad_norm": 0.22046151757240295,
+ "learning_rate": 0.0006,
+ "loss": 3.585991382598877,
+ "step": 3496
+ },
+ {
+ "epoch": 48.57317605941459,
+ "grad_norm": 0.22838662564754486,
+ "learning_rate": 0.0006,
+ "loss": 3.6047747135162354,
+ "step": 3497
+ },
+ {
+ "epoch": 48.58715596330275,
+ "grad_norm": 0.22605256736278534,
+ "learning_rate": 0.0006,
+ "loss": 3.584585428237915,
+ "step": 3498
+ },
+ {
+ "epoch": 48.60113586719091,
+ "grad_norm": 0.22761467099189758,
+ "learning_rate": 0.0006,
+ "loss": 3.5680465698242188,
+ "step": 3499
+ },
+ {
+ "epoch": 48.615115771079076,
+ "grad_norm": 0.20537005364894867,
+ "learning_rate": 0.0006,
+ "loss": 3.5822806358337402,
+ "step": 3500
+ },
+ {
+ "epoch": 48.62909567496723,
+ "grad_norm": 0.21871088445186615,
+ "learning_rate": 0.0006,
+ "loss": 3.5643906593322754,
+ "step": 3501
+ },
+ {
+ "epoch": 48.643075578855395,
+ "grad_norm": 0.2291785329580307,
+ "learning_rate": 0.0006,
+ "loss": 3.6313328742980957,
+ "step": 3502
+ },
+ {
+ "epoch": 48.65705548274356,
+ "grad_norm": 0.2437039464712143,
+ "learning_rate": 0.0006,
+ "loss": 3.588334083557129,
+ "step": 3503
+ },
+ {
+ "epoch": 48.671035386631715,
+ "grad_norm": 0.23070715367794037,
+ "learning_rate": 0.0006,
+ "loss": 3.611356258392334,
+ "step": 3504
+ },
+ {
+ "epoch": 48.68501529051988,
+ "grad_norm": 0.23983895778656006,
+ "learning_rate": 0.0006,
+ "loss": 3.5953967571258545,
+ "step": 3505
+ },
+ {
+ "epoch": 48.69899519440804,
+ "grad_norm": 0.2283167690038681,
+ "learning_rate": 0.0006,
+ "loss": 3.605307102203369,
+ "step": 3506
+ },
+ {
+ "epoch": 48.7129750982962,
+ "grad_norm": 0.20861059427261353,
+ "learning_rate": 0.0006,
+ "loss": 3.598266363143921,
+ "step": 3507
+ },
+ {
+ "epoch": 48.72695500218436,
+ "grad_norm": 0.20209547877311707,
+ "learning_rate": 0.0006,
+ "loss": 3.6022191047668457,
+ "step": 3508
+ },
+ {
+ "epoch": 48.74093490607252,
+ "grad_norm": 0.19089370965957642,
+ "learning_rate": 0.0006,
+ "loss": 3.628640651702881,
+ "step": 3509
+ },
+ {
+ "epoch": 48.75491480996068,
+ "grad_norm": 0.18544727563858032,
+ "learning_rate": 0.0006,
+ "loss": 3.6204819679260254,
+ "step": 3510
+ },
+ {
+ "epoch": 48.768894713848844,
+ "grad_norm": 0.18295186758041382,
+ "learning_rate": 0.0006,
+ "loss": 3.5899410247802734,
+ "step": 3511
+ },
+ {
+ "epoch": 48.782874617737,
+ "grad_norm": 0.1953844279050827,
+ "learning_rate": 0.0006,
+ "loss": 3.581699848175049,
+ "step": 3512
+ },
+ {
+ "epoch": 48.796854521625164,
+ "grad_norm": 0.195505291223526,
+ "learning_rate": 0.0006,
+ "loss": 3.6046862602233887,
+ "step": 3513
+ },
+ {
+ "epoch": 48.81083442551333,
+ "grad_norm": 0.19805945456027985,
+ "learning_rate": 0.0006,
+ "loss": 3.609510898590088,
+ "step": 3514
+ },
+ {
+ "epoch": 48.824814329401484,
+ "grad_norm": 0.18694287538528442,
+ "learning_rate": 0.0006,
+ "loss": 3.580693483352661,
+ "step": 3515
+ },
+ {
+ "epoch": 48.83879423328965,
+ "grad_norm": 0.19227269291877747,
+ "learning_rate": 0.0006,
+ "loss": 3.6174416542053223,
+ "step": 3516
+ },
+ {
+ "epoch": 48.8527741371778,
+ "grad_norm": 0.1966937631368637,
+ "learning_rate": 0.0006,
+ "loss": 3.616194248199463,
+ "step": 3517
+ },
+ {
+ "epoch": 48.86675404106597,
+ "grad_norm": 0.20755162835121155,
+ "learning_rate": 0.0006,
+ "loss": 3.594695568084717,
+ "step": 3518
+ },
+ {
+ "epoch": 48.88073394495413,
+ "grad_norm": 0.2012479156255722,
+ "learning_rate": 0.0006,
+ "loss": 3.6069273948669434,
+ "step": 3519
+ },
+ {
+ "epoch": 48.89471384884229,
+ "grad_norm": 0.19260065257549286,
+ "learning_rate": 0.0006,
+ "loss": 3.573819160461426,
+ "step": 3520
+ },
+ {
+ "epoch": 48.90869375273045,
+ "grad_norm": 0.19911104440689087,
+ "learning_rate": 0.0006,
+ "loss": 3.632185459136963,
+ "step": 3521
+ },
+ {
+ "epoch": 48.92267365661861,
+ "grad_norm": 0.22266048192977905,
+ "learning_rate": 0.0006,
+ "loss": 3.607295513153076,
+ "step": 3522
+ },
+ {
+ "epoch": 48.93665356050677,
+ "grad_norm": 0.2542882561683655,
+ "learning_rate": 0.0006,
+ "loss": 3.6014773845672607,
+ "step": 3523
+ },
+ {
+ "epoch": 48.95063346439493,
+ "grad_norm": 0.2878575026988983,
+ "learning_rate": 0.0006,
+ "loss": 3.5825531482696533,
+ "step": 3524
+ },
+ {
+ "epoch": 48.964613368283096,
+ "grad_norm": 0.3157055675983429,
+ "learning_rate": 0.0006,
+ "loss": 3.5986037254333496,
+ "step": 3525
+ },
+ {
+ "epoch": 48.97859327217125,
+ "grad_norm": 0.2815262973308563,
+ "learning_rate": 0.0006,
+ "loss": 3.6099600791931152,
+ "step": 3526
+ },
+ {
+ "epoch": 48.992573176059416,
+ "grad_norm": 0.22102823853492737,
+ "learning_rate": 0.0006,
+ "loss": 3.5859827995300293,
+ "step": 3527
+ },
+ {
+ "epoch": 49.0,
+ "grad_norm": 0.24937094748020172,
+ "learning_rate": 0.0006,
+ "loss": 3.622842311859131,
+ "step": 3528
+ },
+ {
+ "epoch": 49.0,
+ "eval_loss": 3.977067232131958,
+ "eval_runtime": 45.5503,
+ "eval_samples_per_second": 53.611,
+ "eval_steps_per_second": 3.359,
+ "step": 3528
+ },
+ {
+ "epoch": 49.01397990388816,
+ "grad_norm": 0.25072216987609863,
+ "learning_rate": 0.0006,
+ "loss": 3.590653419494629,
+ "step": 3529
+ },
+ {
+ "epoch": 49.02795980777632,
+ "grad_norm": 0.2611052989959717,
+ "learning_rate": 0.0006,
+ "loss": 3.5504279136657715,
+ "step": 3530
+ },
+ {
+ "epoch": 49.04193971166448,
+ "grad_norm": 0.2547961473464966,
+ "learning_rate": 0.0006,
+ "loss": 3.5797581672668457,
+ "step": 3531
+ },
+ {
+ "epoch": 49.05591961555265,
+ "grad_norm": 0.25674310326576233,
+ "learning_rate": 0.0006,
+ "loss": 3.557278871536255,
+ "step": 3532
+ },
+ {
+ "epoch": 49.0698995194408,
+ "grad_norm": 0.25511929392814636,
+ "learning_rate": 0.0006,
+ "loss": 3.5788025856018066,
+ "step": 3533
+ },
+ {
+ "epoch": 49.083879423328966,
+ "grad_norm": 0.22920994460582733,
+ "learning_rate": 0.0006,
+ "loss": 3.580489158630371,
+ "step": 3534
+ },
+ {
+ "epoch": 49.09785932721712,
+ "grad_norm": 0.23436492681503296,
+ "learning_rate": 0.0006,
+ "loss": 3.5603699684143066,
+ "step": 3535
+ },
+ {
+ "epoch": 49.111839231105286,
+ "grad_norm": 0.2542382776737213,
+ "learning_rate": 0.0006,
+ "loss": 3.5937037467956543,
+ "step": 3536
+ },
+ {
+ "epoch": 49.12581913499345,
+ "grad_norm": 0.26718273758888245,
+ "learning_rate": 0.0006,
+ "loss": 3.6032168865203857,
+ "step": 3537
+ },
+ {
+ "epoch": 49.139799038881605,
+ "grad_norm": 0.2406773865222931,
+ "learning_rate": 0.0006,
+ "loss": 3.5737085342407227,
+ "step": 3538
+ },
+ {
+ "epoch": 49.15377894276977,
+ "grad_norm": 0.23408754169940948,
+ "learning_rate": 0.0006,
+ "loss": 3.592543601989746,
+ "step": 3539
+ },
+ {
+ "epoch": 49.16775884665793,
+ "grad_norm": 0.22974351048469543,
+ "learning_rate": 0.0006,
+ "loss": 3.543618679046631,
+ "step": 3540
+ },
+ {
+ "epoch": 49.18173875054609,
+ "grad_norm": 0.23479530215263367,
+ "learning_rate": 0.0006,
+ "loss": 3.547590732574463,
+ "step": 3541
+ },
+ {
+ "epoch": 49.19571865443425,
+ "grad_norm": 0.2100638598203659,
+ "learning_rate": 0.0006,
+ "loss": 3.6027469635009766,
+ "step": 3542
+ },
+ {
+ "epoch": 49.20969855832241,
+ "grad_norm": 0.20239035785198212,
+ "learning_rate": 0.0006,
+ "loss": 3.598567008972168,
+ "step": 3543
+ },
+ {
+ "epoch": 49.22367846221057,
+ "grad_norm": 0.20480065047740936,
+ "learning_rate": 0.0006,
+ "loss": 3.591038227081299,
+ "step": 3544
+ },
+ {
+ "epoch": 49.237658366098735,
+ "grad_norm": 0.20439887046813965,
+ "learning_rate": 0.0006,
+ "loss": 3.555039405822754,
+ "step": 3545
+ },
+ {
+ "epoch": 49.25163826998689,
+ "grad_norm": 0.21245788037776947,
+ "learning_rate": 0.0006,
+ "loss": 3.5772666931152344,
+ "step": 3546
+ },
+ {
+ "epoch": 49.265618173875055,
+ "grad_norm": 0.1993357390165329,
+ "learning_rate": 0.0006,
+ "loss": 3.5847411155700684,
+ "step": 3547
+ },
+ {
+ "epoch": 49.27959807776322,
+ "grad_norm": 0.22550229728221893,
+ "learning_rate": 0.0006,
+ "loss": 3.5679750442504883,
+ "step": 3548
+ },
+ {
+ "epoch": 49.293577981651374,
+ "grad_norm": 0.2383355349302292,
+ "learning_rate": 0.0006,
+ "loss": 3.57085919380188,
+ "step": 3549
+ },
+ {
+ "epoch": 49.30755788553954,
+ "grad_norm": 0.23968911170959473,
+ "learning_rate": 0.0006,
+ "loss": 3.557415246963501,
+ "step": 3550
+ },
+ {
+ "epoch": 49.3215377894277,
+ "grad_norm": 0.21453262865543365,
+ "learning_rate": 0.0006,
+ "loss": 3.5763611793518066,
+ "step": 3551
+ },
+ {
+ "epoch": 49.33551769331586,
+ "grad_norm": 0.20380273461341858,
+ "learning_rate": 0.0006,
+ "loss": 3.552011013031006,
+ "step": 3552
+ },
+ {
+ "epoch": 49.34949759720402,
+ "grad_norm": 0.19719970226287842,
+ "learning_rate": 0.0006,
+ "loss": 3.5719075202941895,
+ "step": 3553
+ },
+ {
+ "epoch": 49.36347750109218,
+ "grad_norm": 0.19018089771270752,
+ "learning_rate": 0.0006,
+ "loss": 3.5843467712402344,
+ "step": 3554
+ },
+ {
+ "epoch": 49.37745740498034,
+ "grad_norm": 0.18369099497795105,
+ "learning_rate": 0.0006,
+ "loss": 3.561741352081299,
+ "step": 3555
+ },
+ {
+ "epoch": 49.391437308868504,
+ "grad_norm": 0.2070280760526657,
+ "learning_rate": 0.0006,
+ "loss": 3.590721607208252,
+ "step": 3556
+ },
+ {
+ "epoch": 49.40541721275666,
+ "grad_norm": 0.23287905752658844,
+ "learning_rate": 0.0006,
+ "loss": 3.617081642150879,
+ "step": 3557
+ },
+ {
+ "epoch": 49.419397116644824,
+ "grad_norm": 0.21877793967723846,
+ "learning_rate": 0.0006,
+ "loss": 3.547166347503662,
+ "step": 3558
+ },
+ {
+ "epoch": 49.43337702053299,
+ "grad_norm": 0.21105137467384338,
+ "learning_rate": 0.0006,
+ "loss": 3.593552350997925,
+ "step": 3559
+ },
+ {
+ "epoch": 49.44735692442114,
+ "grad_norm": 0.24940872192382812,
+ "learning_rate": 0.0006,
+ "loss": 3.599729537963867,
+ "step": 3560
+ },
+ {
+ "epoch": 49.46133682830931,
+ "grad_norm": 0.26952996850013733,
+ "learning_rate": 0.0006,
+ "loss": 3.5915074348449707,
+ "step": 3561
+ },
+ {
+ "epoch": 49.47531673219746,
+ "grad_norm": 0.25706353783607483,
+ "learning_rate": 0.0006,
+ "loss": 3.587472915649414,
+ "step": 3562
+ },
+ {
+ "epoch": 49.489296636085626,
+ "grad_norm": 0.23666661977767944,
+ "learning_rate": 0.0006,
+ "loss": 3.561340808868408,
+ "step": 3563
+ },
+ {
+ "epoch": 49.50327653997379,
+ "grad_norm": 0.22524063289165497,
+ "learning_rate": 0.0006,
+ "loss": 3.587310314178467,
+ "step": 3564
+ },
+ {
+ "epoch": 49.517256443861946,
+ "grad_norm": 0.22991003096103668,
+ "learning_rate": 0.0006,
+ "loss": 3.56671142578125,
+ "step": 3565
+ },
+ {
+ "epoch": 49.53123634775011,
+ "grad_norm": 0.23067602515220642,
+ "learning_rate": 0.0006,
+ "loss": 3.578601837158203,
+ "step": 3566
+ },
+ {
+ "epoch": 49.54521625163827,
+ "grad_norm": 0.2133914828300476,
+ "learning_rate": 0.0006,
+ "loss": 3.593726873397827,
+ "step": 3567
+ },
+ {
+ "epoch": 49.55919615552643,
+ "grad_norm": 0.21879160404205322,
+ "learning_rate": 0.0006,
+ "loss": 3.5833992958068848,
+ "step": 3568
+ },
+ {
+ "epoch": 49.57317605941459,
+ "grad_norm": 0.2116270661354065,
+ "learning_rate": 0.0006,
+ "loss": 3.575761079788208,
+ "step": 3569
+ },
+ {
+ "epoch": 49.58715596330275,
+ "grad_norm": 0.19506660103797913,
+ "learning_rate": 0.0006,
+ "loss": 3.5600461959838867,
+ "step": 3570
+ },
+ {
+ "epoch": 49.60113586719091,
+ "grad_norm": 0.21305067837238312,
+ "learning_rate": 0.0006,
+ "loss": 3.5717577934265137,
+ "step": 3571
+ },
+ {
+ "epoch": 49.615115771079076,
+ "grad_norm": 0.21184347569942474,
+ "learning_rate": 0.0006,
+ "loss": 3.608819007873535,
+ "step": 3572
+ },
+ {
+ "epoch": 49.62909567496723,
+ "grad_norm": 0.22302201390266418,
+ "learning_rate": 0.0006,
+ "loss": 3.5871644020080566,
+ "step": 3573
+ },
+ {
+ "epoch": 49.643075578855395,
+ "grad_norm": 0.21942365169525146,
+ "learning_rate": 0.0006,
+ "loss": 3.596029043197632,
+ "step": 3574
+ },
+ {
+ "epoch": 49.65705548274356,
+ "grad_norm": 0.2627110481262207,
+ "learning_rate": 0.0006,
+ "loss": 3.5900766849517822,
+ "step": 3575
+ },
+ {
+ "epoch": 49.671035386631715,
+ "grad_norm": 0.28253448009490967,
+ "learning_rate": 0.0006,
+ "loss": 3.599386215209961,
+ "step": 3576
+ },
+ {
+ "epoch": 49.68501529051988,
+ "grad_norm": 0.24279426038265228,
+ "learning_rate": 0.0006,
+ "loss": 3.580909013748169,
+ "step": 3577
+ },
+ {
+ "epoch": 49.69899519440804,
+ "grad_norm": 0.22092898190021515,
+ "learning_rate": 0.0006,
+ "loss": 3.6043782234191895,
+ "step": 3578
+ },
+ {
+ "epoch": 49.7129750982962,
+ "grad_norm": 0.23356051743030548,
+ "learning_rate": 0.0006,
+ "loss": 3.6103105545043945,
+ "step": 3579
+ },
+ {
+ "epoch": 49.72695500218436,
+ "grad_norm": 0.24508118629455566,
+ "learning_rate": 0.0006,
+ "loss": 3.612980365753174,
+ "step": 3580
+ },
+ {
+ "epoch": 49.74093490607252,
+ "grad_norm": 0.2501833438873291,
+ "learning_rate": 0.0006,
+ "loss": 3.6111063957214355,
+ "step": 3581
+ },
+ {
+ "epoch": 49.75491480996068,
+ "grad_norm": 0.2263427972793579,
+ "learning_rate": 0.0006,
+ "loss": 3.5709285736083984,
+ "step": 3582
+ },
+ {
+ "epoch": 49.768894713848844,
+ "grad_norm": 0.19881728291511536,
+ "learning_rate": 0.0006,
+ "loss": 3.5836503505706787,
+ "step": 3583
+ },
+ {
+ "epoch": 49.782874617737,
+ "grad_norm": 0.22516517341136932,
+ "learning_rate": 0.0006,
+ "loss": 3.5797667503356934,
+ "step": 3584
+ },
+ {
+ "epoch": 49.796854521625164,
+ "grad_norm": 0.22347061336040497,
+ "learning_rate": 0.0006,
+ "loss": 3.6245951652526855,
+ "step": 3585
+ },
+ {
+ "epoch": 49.81083442551333,
+ "grad_norm": 0.2062593549489975,
+ "learning_rate": 0.0006,
+ "loss": 3.607572317123413,
+ "step": 3586
+ },
+ {
+ "epoch": 49.824814329401484,
+ "grad_norm": 0.20671074092388153,
+ "learning_rate": 0.0006,
+ "loss": 3.5671472549438477,
+ "step": 3587
+ },
+ {
+ "epoch": 49.83879423328965,
+ "grad_norm": 0.19981902837753296,
+ "learning_rate": 0.0006,
+ "loss": 3.6084837913513184,
+ "step": 3588
+ },
+ {
+ "epoch": 49.8527741371778,
+ "grad_norm": 0.2004556804895401,
+ "learning_rate": 0.0006,
+ "loss": 3.631455898284912,
+ "step": 3589
+ },
+ {
+ "epoch": 49.86675404106597,
+ "grad_norm": 0.20990414917469025,
+ "learning_rate": 0.0006,
+ "loss": 3.6017699241638184,
+ "step": 3590
+ },
+ {
+ "epoch": 49.88073394495413,
+ "grad_norm": 0.19016146659851074,
+ "learning_rate": 0.0006,
+ "loss": 3.6110801696777344,
+ "step": 3591
+ },
+ {
+ "epoch": 49.89471384884229,
+ "grad_norm": 0.2015834003686905,
+ "learning_rate": 0.0006,
+ "loss": 3.58852481842041,
+ "step": 3592
+ },
+ {
+ "epoch": 49.90869375273045,
+ "grad_norm": 0.205678328871727,
+ "learning_rate": 0.0006,
+ "loss": 3.581789970397949,
+ "step": 3593
+ },
+ {
+ "epoch": 49.92267365661861,
+ "grad_norm": 0.20975211262702942,
+ "learning_rate": 0.0006,
+ "loss": 3.6126320362091064,
+ "step": 3594
+ },
+ {
+ "epoch": 49.93665356050677,
+ "grad_norm": 0.20510081946849823,
+ "learning_rate": 0.0006,
+ "loss": 3.5970656871795654,
+ "step": 3595
+ },
+ {
+ "epoch": 49.95063346439493,
+ "grad_norm": 0.19842886924743652,
+ "learning_rate": 0.0006,
+ "loss": 3.6055545806884766,
+ "step": 3596
+ },
+ {
+ "epoch": 49.964613368283096,
+ "grad_norm": 0.20551791787147522,
+ "learning_rate": 0.0006,
+ "loss": 3.5861949920654297,
+ "step": 3597
+ },
+ {
+ "epoch": 49.97859327217125,
+ "grad_norm": 0.21147456765174866,
+ "learning_rate": 0.0006,
+ "loss": 3.585934638977051,
+ "step": 3598
+ },
+ {
+ "epoch": 49.992573176059416,
+ "grad_norm": 0.21793442964553833,
+ "learning_rate": 0.0006,
+ "loss": 3.5956411361694336,
+ "step": 3599
+ },
+ {
+ "epoch": 50.0,
+ "grad_norm": 0.24623161554336548,
+ "learning_rate": 0.0006,
+ "loss": 3.623453140258789,
+ "step": 3600
+ },
+ {
+ "epoch": 50.0,
+ "eval_loss": 3.9807891845703125,
+ "eval_runtime": 45.7708,
+ "eval_samples_per_second": 53.353,
+ "eval_steps_per_second": 3.343,
+ "step": 3600
+ },
+ {
+ "epoch": 50.01397990388816,
+ "grad_norm": 0.22322626411914825,
+ "learning_rate": 0.0006,
+ "loss": 3.5475401878356934,
+ "step": 3601
+ },
+ {
+ "epoch": 50.02795980777632,
+ "grad_norm": 0.21957066655158997,
+ "learning_rate": 0.0006,
+ "loss": 3.5616683959960938,
+ "step": 3602
+ },
+ {
+ "epoch": 50.04193971166448,
+ "grad_norm": 0.22030551731586456,
+ "learning_rate": 0.0006,
+ "loss": 3.56367826461792,
+ "step": 3603
+ },
+ {
+ "epoch": 50.05591961555265,
+ "grad_norm": 0.21536092460155487,
+ "learning_rate": 0.0006,
+ "loss": 3.5613503456115723,
+ "step": 3604
+ },
+ {
+ "epoch": 50.0698995194408,
+ "grad_norm": 0.22454269230365753,
+ "learning_rate": 0.0006,
+ "loss": 3.5348987579345703,
+ "step": 3605
+ },
+ {
+ "epoch": 50.083879423328966,
+ "grad_norm": 0.2281617820262909,
+ "learning_rate": 0.0006,
+ "loss": 3.5722241401672363,
+ "step": 3606
+ },
+ {
+ "epoch": 50.09785932721712,
+ "grad_norm": 0.23318710923194885,
+ "learning_rate": 0.0006,
+ "loss": 3.559063673019409,
+ "step": 3607
+ },
+ {
+ "epoch": 50.111839231105286,
+ "grad_norm": 0.2277889847755432,
+ "learning_rate": 0.0006,
+ "loss": 3.5632925033569336,
+ "step": 3608
+ },
+ {
+ "epoch": 50.12581913499345,
+ "grad_norm": 0.2317705601453781,
+ "learning_rate": 0.0006,
+ "loss": 3.5835886001586914,
+ "step": 3609
+ },
+ {
+ "epoch": 50.139799038881605,
+ "grad_norm": 0.21388863027095795,
+ "learning_rate": 0.0006,
+ "loss": 3.5976145267486572,
+ "step": 3610
+ },
+ {
+ "epoch": 50.15377894276977,
+ "grad_norm": 0.2070954293012619,
+ "learning_rate": 0.0006,
+ "loss": 3.5486221313476562,
+ "step": 3611
+ },
+ {
+ "epoch": 50.16775884665793,
+ "grad_norm": 0.21602077782154083,
+ "learning_rate": 0.0006,
+ "loss": 3.5897607803344727,
+ "step": 3612
+ },
+ {
+ "epoch": 50.18173875054609,
+ "grad_norm": 0.21106162667274475,
+ "learning_rate": 0.0006,
+ "loss": 3.5587167739868164,
+ "step": 3613
+ },
+ {
+ "epoch": 50.19571865443425,
+ "grad_norm": 0.2047950178384781,
+ "learning_rate": 0.0006,
+ "loss": 3.576798915863037,
+ "step": 3614
+ },
+ {
+ "epoch": 50.20969855832241,
+ "grad_norm": 0.2204097956418991,
+ "learning_rate": 0.0006,
+ "loss": 3.5466837882995605,
+ "step": 3615
+ },
+ {
+ "epoch": 50.22367846221057,
+ "grad_norm": 0.2220875471830368,
+ "learning_rate": 0.0006,
+ "loss": 3.5722036361694336,
+ "step": 3616
+ },
+ {
+ "epoch": 50.237658366098735,
+ "grad_norm": 0.2250797003507614,
+ "learning_rate": 0.0006,
+ "loss": 3.566347122192383,
+ "step": 3617
+ },
+ {
+ "epoch": 50.25163826998689,
+ "grad_norm": 0.22837485373020172,
+ "learning_rate": 0.0006,
+ "loss": 3.5673274993896484,
+ "step": 3618
+ },
+ {
+ "epoch": 50.265618173875055,
+ "grad_norm": 0.2281104475259781,
+ "learning_rate": 0.0006,
+ "loss": 3.5543737411499023,
+ "step": 3619
+ },
+ {
+ "epoch": 50.27959807776322,
+ "grad_norm": 0.2052381932735443,
+ "learning_rate": 0.0006,
+ "loss": 3.566401958465576,
+ "step": 3620
+ },
+ {
+ "epoch": 50.293577981651374,
+ "grad_norm": 0.2125921994447708,
+ "learning_rate": 0.0006,
+ "loss": 3.5467424392700195,
+ "step": 3621
+ },
+ {
+ "epoch": 50.30755788553954,
+ "grad_norm": 0.22641244530677795,
+ "learning_rate": 0.0006,
+ "loss": 3.548497200012207,
+ "step": 3622
+ },
+ {
+ "epoch": 50.3215377894277,
+ "grad_norm": 0.23039482533931732,
+ "learning_rate": 0.0006,
+ "loss": 3.5948381423950195,
+ "step": 3623
+ },
+ {
+ "epoch": 50.33551769331586,
+ "grad_norm": 0.22753404080867767,
+ "learning_rate": 0.0006,
+ "loss": 3.541825532913208,
+ "step": 3624
+ },
+ {
+ "epoch": 50.34949759720402,
+ "grad_norm": 0.2528170347213745,
+ "learning_rate": 0.0006,
+ "loss": 3.5937235355377197,
+ "step": 3625
+ },
+ {
+ "epoch": 50.36347750109218,
+ "grad_norm": 0.25434595346450806,
+ "learning_rate": 0.0006,
+ "loss": 3.5779776573181152,
+ "step": 3626
+ },
+ {
+ "epoch": 50.37745740498034,
+ "grad_norm": 0.22519059479236603,
+ "learning_rate": 0.0006,
+ "loss": 3.5456271171569824,
+ "step": 3627
+ },
+ {
+ "epoch": 50.391437308868504,
+ "grad_norm": 0.2077232301235199,
+ "learning_rate": 0.0006,
+ "loss": 3.5693111419677734,
+ "step": 3628
+ },
+ {
+ "epoch": 50.40541721275666,
+ "grad_norm": 0.20925411581993103,
+ "learning_rate": 0.0006,
+ "loss": 3.6063997745513916,
+ "step": 3629
+ },
+ {
+ "epoch": 50.419397116644824,
+ "grad_norm": 0.2114555686712265,
+ "learning_rate": 0.0006,
+ "loss": 3.5676894187927246,
+ "step": 3630
+ },
+ {
+ "epoch": 50.43337702053299,
+ "grad_norm": 0.23759354650974274,
+ "learning_rate": 0.0006,
+ "loss": 3.5465126037597656,
+ "step": 3631
+ },
+ {
+ "epoch": 50.44735692442114,
+ "grad_norm": 0.23809516429901123,
+ "learning_rate": 0.0006,
+ "loss": 3.571600914001465,
+ "step": 3632
+ },
+ {
+ "epoch": 50.46133682830931,
+ "grad_norm": 0.20501303672790527,
+ "learning_rate": 0.0006,
+ "loss": 3.573550224304199,
+ "step": 3633
+ },
+ {
+ "epoch": 50.47531673219746,
+ "grad_norm": 0.21562306582927704,
+ "learning_rate": 0.0006,
+ "loss": 3.5625600814819336,
+ "step": 3634
+ },
+ {
+ "epoch": 50.489296636085626,
+ "grad_norm": 0.20469479262828827,
+ "learning_rate": 0.0006,
+ "loss": 3.5737175941467285,
+ "step": 3635
+ },
+ {
+ "epoch": 50.50327653997379,
+ "grad_norm": 0.2078634798526764,
+ "learning_rate": 0.0006,
+ "loss": 3.5691545009613037,
+ "step": 3636
+ },
+ {
+ "epoch": 50.517256443861946,
+ "grad_norm": 0.20340897142887115,
+ "learning_rate": 0.0006,
+ "loss": 3.583918571472168,
+ "step": 3637
+ },
+ {
+ "epoch": 50.53123634775011,
+ "grad_norm": 0.2006944715976715,
+ "learning_rate": 0.0006,
+ "loss": 3.596034049987793,
+ "step": 3638
+ },
+ {
+ "epoch": 50.54521625163827,
+ "grad_norm": 0.19281257688999176,
+ "learning_rate": 0.0006,
+ "loss": 3.5993080139160156,
+ "step": 3639
+ },
+ {
+ "epoch": 50.55919615552643,
+ "grad_norm": 0.19528807699680328,
+ "learning_rate": 0.0006,
+ "loss": 3.6108102798461914,
+ "step": 3640
+ },
+ {
+ "epoch": 50.57317605941459,
+ "grad_norm": 0.19329112768173218,
+ "learning_rate": 0.0006,
+ "loss": 3.5964512825012207,
+ "step": 3641
+ },
+ {
+ "epoch": 50.58715596330275,
+ "grad_norm": 0.1928209513425827,
+ "learning_rate": 0.0006,
+ "loss": 3.5927724838256836,
+ "step": 3642
+ },
+ {
+ "epoch": 50.60113586719091,
+ "grad_norm": 0.20212236046791077,
+ "learning_rate": 0.0006,
+ "loss": 3.5778708457946777,
+ "step": 3643
+ },
+ {
+ "epoch": 50.615115771079076,
+ "grad_norm": 0.22244620323181152,
+ "learning_rate": 0.0006,
+ "loss": 3.6219539642333984,
+ "step": 3644
+ },
+ {
+ "epoch": 50.62909567496723,
+ "grad_norm": 0.2659119963645935,
+ "learning_rate": 0.0006,
+ "loss": 3.578831195831299,
+ "step": 3645
+ },
+ {
+ "epoch": 50.643075578855395,
+ "grad_norm": 0.2837344706058502,
+ "learning_rate": 0.0006,
+ "loss": 3.587677240371704,
+ "step": 3646
+ },
+ {
+ "epoch": 50.65705548274356,
+ "grad_norm": 0.26747965812683105,
+ "learning_rate": 0.0006,
+ "loss": 3.611286163330078,
+ "step": 3647
+ },
+ {
+ "epoch": 50.671035386631715,
+ "grad_norm": 0.24604788422584534,
+ "learning_rate": 0.0006,
+ "loss": 3.5740575790405273,
+ "step": 3648
+ },
+ {
+ "epoch": 50.68501529051988,
+ "grad_norm": 0.2379457652568817,
+ "learning_rate": 0.0006,
+ "loss": 3.5997209548950195,
+ "step": 3649
+ },
+ {
+ "epoch": 50.69899519440804,
+ "grad_norm": 0.2296321839094162,
+ "learning_rate": 0.0006,
+ "loss": 3.5975162982940674,
+ "step": 3650
+ },
+ {
+ "epoch": 50.7129750982962,
+ "grad_norm": 0.22054627537727356,
+ "learning_rate": 0.0006,
+ "loss": 3.5821738243103027,
+ "step": 3651
+ },
+ {
+ "epoch": 50.72695500218436,
+ "grad_norm": 0.22114980220794678,
+ "learning_rate": 0.0006,
+ "loss": 3.5769970417022705,
+ "step": 3652
+ },
+ {
+ "epoch": 50.74093490607252,
+ "grad_norm": 0.21389314532279968,
+ "learning_rate": 0.0006,
+ "loss": 3.5952796936035156,
+ "step": 3653
+ },
+ {
+ "epoch": 50.75491480996068,
+ "grad_norm": 0.21069210767745972,
+ "learning_rate": 0.0006,
+ "loss": 3.5884671211242676,
+ "step": 3654
+ },
+ {
+ "epoch": 50.768894713848844,
+ "grad_norm": 0.22028805315494537,
+ "learning_rate": 0.0006,
+ "loss": 3.593442440032959,
+ "step": 3655
+ },
+ {
+ "epoch": 50.782874617737,
+ "grad_norm": 0.21296948194503784,
+ "learning_rate": 0.0006,
+ "loss": 3.5656774044036865,
+ "step": 3656
+ },
+ {
+ "epoch": 50.796854521625164,
+ "grad_norm": 0.19871588051319122,
+ "learning_rate": 0.0006,
+ "loss": 3.5939064025878906,
+ "step": 3657
+ },
+ {
+ "epoch": 50.81083442551333,
+ "grad_norm": 0.19523470103740692,
+ "learning_rate": 0.0006,
+ "loss": 3.5806071758270264,
+ "step": 3658
+ },
+ {
+ "epoch": 50.824814329401484,
+ "grad_norm": 0.18718191981315613,
+ "learning_rate": 0.0006,
+ "loss": 3.5903120040893555,
+ "step": 3659
+ },
+ {
+ "epoch": 50.83879423328965,
+ "grad_norm": 0.18796689808368683,
+ "learning_rate": 0.0006,
+ "loss": 3.5799593925476074,
+ "step": 3660
+ },
+ {
+ "epoch": 50.8527741371778,
+ "grad_norm": 0.21794569492340088,
+ "learning_rate": 0.0006,
+ "loss": 3.5712361335754395,
+ "step": 3661
+ },
+ {
+ "epoch": 50.86675404106597,
+ "grad_norm": 0.2374759465456009,
+ "learning_rate": 0.0006,
+ "loss": 3.602503776550293,
+ "step": 3662
+ },
+ {
+ "epoch": 50.88073394495413,
+ "grad_norm": 0.20213527977466583,
+ "learning_rate": 0.0006,
+ "loss": 3.5756399631500244,
+ "step": 3663
+ },
+ {
+ "epoch": 50.89471384884229,
+ "grad_norm": 0.1875160187482834,
+ "learning_rate": 0.0006,
+ "loss": 3.625436305999756,
+ "step": 3664
+ },
+ {
+ "epoch": 50.90869375273045,
+ "grad_norm": 0.19908255338668823,
+ "learning_rate": 0.0006,
+ "loss": 3.592522621154785,
+ "step": 3665
+ },
+ {
+ "epoch": 50.92267365661861,
+ "grad_norm": 0.20776167511940002,
+ "learning_rate": 0.0006,
+ "loss": 3.5777883529663086,
+ "step": 3666
+ },
+ {
+ "epoch": 50.93665356050677,
+ "grad_norm": 0.19510093331336975,
+ "learning_rate": 0.0006,
+ "loss": 3.587306022644043,
+ "step": 3667
+ },
+ {
+ "epoch": 50.95063346439493,
+ "grad_norm": 0.2180490493774414,
+ "learning_rate": 0.0006,
+ "loss": 3.5855464935302734,
+ "step": 3668
+ },
+ {
+ "epoch": 50.964613368283096,
+ "grad_norm": 0.19967055320739746,
+ "learning_rate": 0.0006,
+ "loss": 3.609689235687256,
+ "step": 3669
+ },
+ {
+ "epoch": 50.97859327217125,
+ "grad_norm": 0.2081584632396698,
+ "learning_rate": 0.0006,
+ "loss": 3.625236749649048,
+ "step": 3670
+ },
+ {
+ "epoch": 50.992573176059416,
+ "grad_norm": 0.2312266230583191,
+ "learning_rate": 0.0006,
+ "loss": 3.5977330207824707,
+ "step": 3671
+ },
+ {
+ "epoch": 51.0,
+ "grad_norm": 0.2464766502380371,
+ "learning_rate": 0.0006,
+ "loss": 3.610635995864868,
+ "step": 3672
+ },
+ {
+ "epoch": 51.0,
+ "eval_loss": 3.9810166358947754,
+ "eval_runtime": 45.5851,
+ "eval_samples_per_second": 53.57,
+ "eval_steps_per_second": 3.356,
+ "step": 3672
+ },
+ {
+ "epoch": 51.01397990388816,
+ "grad_norm": 0.22583232820034027,
+ "learning_rate": 0.0006,
+ "loss": 3.547168016433716,
+ "step": 3673
+ },
+ {
+ "epoch": 51.02795980777632,
+ "grad_norm": 0.23001070320606232,
+ "learning_rate": 0.0006,
+ "loss": 3.546207904815674,
+ "step": 3674
+ },
+ {
+ "epoch": 51.04193971166448,
+ "grad_norm": 0.21891392767429352,
+ "learning_rate": 0.0006,
+ "loss": 3.564371109008789,
+ "step": 3675
+ },
+ {
+ "epoch": 51.05591961555265,
+ "grad_norm": 0.22195076942443848,
+ "learning_rate": 0.0006,
+ "loss": 3.538297414779663,
+ "step": 3676
+ },
+ {
+ "epoch": 51.0698995194408,
+ "grad_norm": 0.24688288569450378,
+ "learning_rate": 0.0006,
+ "loss": 3.5705811977386475,
+ "step": 3677
+ },
+ {
+ "epoch": 51.083879423328966,
+ "grad_norm": 0.2731003165245056,
+ "learning_rate": 0.0006,
+ "loss": 3.530763626098633,
+ "step": 3678
+ },
+ {
+ "epoch": 51.09785932721712,
+ "grad_norm": 0.27474021911621094,
+ "learning_rate": 0.0006,
+ "loss": 3.5559208393096924,
+ "step": 3679
+ },
+ {
+ "epoch": 51.111839231105286,
+ "grad_norm": 0.26311439275741577,
+ "learning_rate": 0.0006,
+ "loss": 3.5698819160461426,
+ "step": 3680
+ },
+ {
+ "epoch": 51.12581913499345,
+ "grad_norm": 0.21895965933799744,
+ "learning_rate": 0.0006,
+ "loss": 3.567232370376587,
+ "step": 3681
+ },
+ {
+ "epoch": 51.139799038881605,
+ "grad_norm": 0.19598282873630524,
+ "learning_rate": 0.0006,
+ "loss": 3.6033718585968018,
+ "step": 3682
+ },
+ {
+ "epoch": 51.15377894276977,
+ "grad_norm": 0.2183268666267395,
+ "learning_rate": 0.0006,
+ "loss": 3.5599026679992676,
+ "step": 3683
+ },
+ {
+ "epoch": 51.16775884665793,
+ "grad_norm": 0.22657731175422668,
+ "learning_rate": 0.0006,
+ "loss": 3.532038688659668,
+ "step": 3684
+ },
+ {
+ "epoch": 51.18173875054609,
+ "grad_norm": 0.21979935467243195,
+ "learning_rate": 0.0006,
+ "loss": 3.544640064239502,
+ "step": 3685
+ },
+ {
+ "epoch": 51.19571865443425,
+ "grad_norm": 0.20581361651420593,
+ "learning_rate": 0.0006,
+ "loss": 3.579803466796875,
+ "step": 3686
+ },
+ {
+ "epoch": 51.20969855832241,
+ "grad_norm": 0.22677212953567505,
+ "learning_rate": 0.0006,
+ "loss": 3.576796054840088,
+ "step": 3687
+ },
+ {
+ "epoch": 51.22367846221057,
+ "grad_norm": 0.2599104940891266,
+ "learning_rate": 0.0006,
+ "loss": 3.5657899379730225,
+ "step": 3688
+ },
+ {
+ "epoch": 51.237658366098735,
+ "grad_norm": 0.23320309817790985,
+ "learning_rate": 0.0006,
+ "loss": 3.5537824630737305,
+ "step": 3689
+ },
+ {
+ "epoch": 51.25163826998689,
+ "grad_norm": 0.2345186471939087,
+ "learning_rate": 0.0006,
+ "loss": 3.5699901580810547,
+ "step": 3690
+ },
+ {
+ "epoch": 51.265618173875055,
+ "grad_norm": 0.24723312258720398,
+ "learning_rate": 0.0006,
+ "loss": 3.553495168685913,
+ "step": 3691
+ },
+ {
+ "epoch": 51.27959807776322,
+ "grad_norm": 0.24195604026317596,
+ "learning_rate": 0.0006,
+ "loss": 3.6008248329162598,
+ "step": 3692
+ },
+ {
+ "epoch": 51.293577981651374,
+ "grad_norm": 0.23011726140975952,
+ "learning_rate": 0.0006,
+ "loss": 3.5842812061309814,
+ "step": 3693
+ },
+ {
+ "epoch": 51.30755788553954,
+ "grad_norm": 0.23412185907363892,
+ "learning_rate": 0.0006,
+ "loss": 3.5648040771484375,
+ "step": 3694
+ },
+ {
+ "epoch": 51.3215377894277,
+ "grad_norm": 0.22911828756332397,
+ "learning_rate": 0.0006,
+ "loss": 3.5599000453948975,
+ "step": 3695
+ },
+ {
+ "epoch": 51.33551769331586,
+ "grad_norm": 0.20045386254787445,
+ "learning_rate": 0.0006,
+ "loss": 3.559370517730713,
+ "step": 3696
+ },
+ {
+ "epoch": 51.34949759720402,
+ "grad_norm": 0.24723322689533234,
+ "learning_rate": 0.0006,
+ "loss": 3.5734081268310547,
+ "step": 3697
+ },
+ {
+ "epoch": 51.36347750109218,
+ "grad_norm": 0.28003066778182983,
+ "learning_rate": 0.0006,
+ "loss": 3.574591636657715,
+ "step": 3698
+ },
+ {
+ "epoch": 51.37745740498034,
+ "grad_norm": 0.27969157695770264,
+ "learning_rate": 0.0006,
+ "loss": 3.5703907012939453,
+ "step": 3699
+ },
+ {
+ "epoch": 51.391437308868504,
+ "grad_norm": 0.2352922111749649,
+ "learning_rate": 0.0006,
+ "loss": 3.540452480316162,
+ "step": 3700
+ },
+ {
+ "epoch": 51.40541721275666,
+ "grad_norm": 0.21332240104675293,
+ "learning_rate": 0.0006,
+ "loss": 3.5883522033691406,
+ "step": 3701
+ },
+ {
+ "epoch": 51.419397116644824,
+ "grad_norm": 0.2021809071302414,
+ "learning_rate": 0.0006,
+ "loss": 3.567544460296631,
+ "step": 3702
+ },
+ {
+ "epoch": 51.43337702053299,
+ "grad_norm": 0.23054654896259308,
+ "learning_rate": 0.0006,
+ "loss": 3.5927062034606934,
+ "step": 3703
+ },
+ {
+ "epoch": 51.44735692442114,
+ "grad_norm": 0.22398747503757477,
+ "learning_rate": 0.0006,
+ "loss": 3.5977213382720947,
+ "step": 3704
+ },
+ {
+ "epoch": 51.46133682830931,
+ "grad_norm": 0.2021128088235855,
+ "learning_rate": 0.0006,
+ "loss": 3.585836887359619,
+ "step": 3705
+ },
+ {
+ "epoch": 51.47531673219746,
+ "grad_norm": 0.23031292855739594,
+ "learning_rate": 0.0006,
+ "loss": 3.532315731048584,
+ "step": 3706
+ },
+ {
+ "epoch": 51.489296636085626,
+ "grad_norm": 0.26744455099105835,
+ "learning_rate": 0.0006,
+ "loss": 3.585782289505005,
+ "step": 3707
+ },
+ {
+ "epoch": 51.50327653997379,
+ "grad_norm": 0.2508980929851532,
+ "learning_rate": 0.0006,
+ "loss": 3.550276279449463,
+ "step": 3708
+ },
+ {
+ "epoch": 51.517256443861946,
+ "grad_norm": 0.2180585265159607,
+ "learning_rate": 0.0006,
+ "loss": 3.566798210144043,
+ "step": 3709
+ },
+ {
+ "epoch": 51.53123634775011,
+ "grad_norm": 0.18508869409561157,
+ "learning_rate": 0.0006,
+ "loss": 3.5295116901397705,
+ "step": 3710
+ },
+ {
+ "epoch": 51.54521625163827,
+ "grad_norm": 0.19017672538757324,
+ "learning_rate": 0.0006,
+ "loss": 3.5932717323303223,
+ "step": 3711
+ },
+ {
+ "epoch": 51.55919615552643,
+ "grad_norm": 0.2228020876646042,
+ "learning_rate": 0.0006,
+ "loss": 3.5660648345947266,
+ "step": 3712
+ },
+ {
+ "epoch": 51.57317605941459,
+ "grad_norm": 0.22948148846626282,
+ "learning_rate": 0.0006,
+ "loss": 3.5785627365112305,
+ "step": 3713
+ },
+ {
+ "epoch": 51.58715596330275,
+ "grad_norm": 0.2438911497592926,
+ "learning_rate": 0.0006,
+ "loss": 3.5885257720947266,
+ "step": 3714
+ },
+ {
+ "epoch": 51.60113586719091,
+ "grad_norm": 0.25012296438217163,
+ "learning_rate": 0.0006,
+ "loss": 3.577232599258423,
+ "step": 3715
+ },
+ {
+ "epoch": 51.615115771079076,
+ "grad_norm": 0.27102336287498474,
+ "learning_rate": 0.0006,
+ "loss": 3.5600078105926514,
+ "step": 3716
+ },
+ {
+ "epoch": 51.62909567496723,
+ "grad_norm": 0.26425355672836304,
+ "learning_rate": 0.0006,
+ "loss": 3.5694093704223633,
+ "step": 3717
+ },
+ {
+ "epoch": 51.643075578855395,
+ "grad_norm": 0.24292822182178497,
+ "learning_rate": 0.0006,
+ "loss": 3.5774331092834473,
+ "step": 3718
+ },
+ {
+ "epoch": 51.65705548274356,
+ "grad_norm": 0.22668084502220154,
+ "learning_rate": 0.0006,
+ "loss": 3.5912742614746094,
+ "step": 3719
+ },
+ {
+ "epoch": 51.671035386631715,
+ "grad_norm": 0.2090575248003006,
+ "learning_rate": 0.0006,
+ "loss": 3.5473170280456543,
+ "step": 3720
+ },
+ {
+ "epoch": 51.68501529051988,
+ "grad_norm": 0.22276616096496582,
+ "learning_rate": 0.0006,
+ "loss": 3.6076784133911133,
+ "step": 3721
+ },
+ {
+ "epoch": 51.69899519440804,
+ "grad_norm": 0.22105294466018677,
+ "learning_rate": 0.0006,
+ "loss": 3.5820791721343994,
+ "step": 3722
+ },
+ {
+ "epoch": 51.7129750982962,
+ "grad_norm": 0.19231240451335907,
+ "learning_rate": 0.0006,
+ "loss": 3.6017708778381348,
+ "step": 3723
+ },
+ {
+ "epoch": 51.72695500218436,
+ "grad_norm": 0.2050354927778244,
+ "learning_rate": 0.0006,
+ "loss": 3.5967769622802734,
+ "step": 3724
+ },
+ {
+ "epoch": 51.74093490607252,
+ "grad_norm": 0.19779305160045624,
+ "learning_rate": 0.0006,
+ "loss": 3.597214698791504,
+ "step": 3725
+ },
+ {
+ "epoch": 51.75491480996068,
+ "grad_norm": 0.22394844889640808,
+ "learning_rate": 0.0006,
+ "loss": 3.574063301086426,
+ "step": 3726
+ },
+ {
+ "epoch": 51.768894713848844,
+ "grad_norm": 0.2262638807296753,
+ "learning_rate": 0.0006,
+ "loss": 3.5754079818725586,
+ "step": 3727
+ },
+ {
+ "epoch": 51.782874617737,
+ "grad_norm": 0.2168288677930832,
+ "learning_rate": 0.0006,
+ "loss": 3.6079599857330322,
+ "step": 3728
+ },
+ {
+ "epoch": 51.796854521625164,
+ "grad_norm": 0.2035517394542694,
+ "learning_rate": 0.0006,
+ "loss": 3.5948667526245117,
+ "step": 3729
+ },
+ {
+ "epoch": 51.81083442551333,
+ "grad_norm": 0.20529425144195557,
+ "learning_rate": 0.0006,
+ "loss": 3.5589542388916016,
+ "step": 3730
+ },
+ {
+ "epoch": 51.824814329401484,
+ "grad_norm": 0.2464100867509842,
+ "learning_rate": 0.0006,
+ "loss": 3.5947155952453613,
+ "step": 3731
+ },
+ {
+ "epoch": 51.83879423328965,
+ "grad_norm": 0.28043219447135925,
+ "learning_rate": 0.0006,
+ "loss": 3.6102852821350098,
+ "step": 3732
+ },
+ {
+ "epoch": 51.8527741371778,
+ "grad_norm": 0.2879013121128082,
+ "learning_rate": 0.0006,
+ "loss": 3.5903573036193848,
+ "step": 3733
+ },
+ {
+ "epoch": 51.86675404106597,
+ "grad_norm": 0.2532044053077698,
+ "learning_rate": 0.0006,
+ "loss": 3.5704729557037354,
+ "step": 3734
+ },
+ {
+ "epoch": 51.88073394495413,
+ "grad_norm": 0.25126248598098755,
+ "learning_rate": 0.0006,
+ "loss": 3.5449633598327637,
+ "step": 3735
+ },
+ {
+ "epoch": 51.89471384884229,
+ "grad_norm": 0.2494364082813263,
+ "learning_rate": 0.0006,
+ "loss": 3.5825607776641846,
+ "step": 3736
+ },
+ {
+ "epoch": 51.90869375273045,
+ "grad_norm": 0.24867761135101318,
+ "learning_rate": 0.0006,
+ "loss": 3.5998034477233887,
+ "step": 3737
+ },
+ {
+ "epoch": 51.92267365661861,
+ "grad_norm": 0.2552012801170349,
+ "learning_rate": 0.0006,
+ "loss": 3.5487377643585205,
+ "step": 3738
+ },
+ {
+ "epoch": 51.93665356050677,
+ "grad_norm": 0.2243119329214096,
+ "learning_rate": 0.0006,
+ "loss": 3.6081466674804688,
+ "step": 3739
+ },
+ {
+ "epoch": 51.95063346439493,
+ "grad_norm": 0.2106700837612152,
+ "learning_rate": 0.0006,
+ "loss": 3.607586622238159,
+ "step": 3740
+ },
+ {
+ "epoch": 51.964613368283096,
+ "grad_norm": 0.2207096666097641,
+ "learning_rate": 0.0006,
+ "loss": 3.6094579696655273,
+ "step": 3741
+ },
+ {
+ "epoch": 51.97859327217125,
+ "grad_norm": 0.2310071736574173,
+ "learning_rate": 0.0006,
+ "loss": 3.5837807655334473,
+ "step": 3742
+ },
+ {
+ "epoch": 51.992573176059416,
+ "grad_norm": 0.258770614862442,
+ "learning_rate": 0.0006,
+ "loss": 3.639329433441162,
+ "step": 3743
+ },
+ {
+ "epoch": 52.0,
+ "grad_norm": 0.24004915356636047,
+ "learning_rate": 0.0006,
+ "loss": 3.6178512573242188,
+ "step": 3744
+ },
+ {
+ "epoch": 52.0,
+ "eval_loss": 3.97371244430542,
+ "eval_runtime": 46.1923,
+ "eval_samples_per_second": 52.866,
+ "eval_steps_per_second": 3.312,
+ "step": 3744
+ },
+ {
+ "epoch": 52.01397990388816,
+ "grad_norm": 0.21953323483467102,
+ "learning_rate": 0.0006,
+ "loss": 3.5929579734802246,
+ "step": 3745
+ },
+ {
+ "epoch": 52.02795980777632,
+ "grad_norm": 0.25547415018081665,
+ "learning_rate": 0.0006,
+ "loss": 3.5762600898742676,
+ "step": 3746
+ },
+ {
+ "epoch": 52.04193971166448,
+ "grad_norm": 0.28905144333839417,
+ "learning_rate": 0.0006,
+ "loss": 3.5794596672058105,
+ "step": 3747
+ },
+ {
+ "epoch": 52.05591961555265,
+ "grad_norm": 0.2618118226528168,
+ "learning_rate": 0.0006,
+ "loss": 3.543205499649048,
+ "step": 3748
+ },
+ {
+ "epoch": 52.0698995194408,
+ "grad_norm": 0.2288745492696762,
+ "learning_rate": 0.0006,
+ "loss": 3.562770366668701,
+ "step": 3749
+ },
+ {
+ "epoch": 52.083879423328966,
+ "grad_norm": 0.25327110290527344,
+ "learning_rate": 0.0006,
+ "loss": 3.5405054092407227,
+ "step": 3750
+ },
+ {
+ "epoch": 52.09785932721712,
+ "grad_norm": 0.2721746861934662,
+ "learning_rate": 0.0006,
+ "loss": 3.5650479793548584,
+ "step": 3751
+ },
+ {
+ "epoch": 52.111839231105286,
+ "grad_norm": 0.2890555262565613,
+ "learning_rate": 0.0006,
+ "loss": 3.556122303009033,
+ "step": 3752
+ },
+ {
+ "epoch": 52.12581913499345,
+ "grad_norm": 0.30541476607322693,
+ "learning_rate": 0.0006,
+ "loss": 3.544271469116211,
+ "step": 3753
+ },
+ {
+ "epoch": 52.139799038881605,
+ "grad_norm": 0.2555760443210602,
+ "learning_rate": 0.0006,
+ "loss": 3.5452728271484375,
+ "step": 3754
+ },
+ {
+ "epoch": 52.15377894276977,
+ "grad_norm": 0.2653098404407501,
+ "learning_rate": 0.0006,
+ "loss": 3.57212495803833,
+ "step": 3755
+ },
+ {
+ "epoch": 52.16775884665793,
+ "grad_norm": 0.2479168176651001,
+ "learning_rate": 0.0006,
+ "loss": 3.5893373489379883,
+ "step": 3756
+ },
+ {
+ "epoch": 52.18173875054609,
+ "grad_norm": 0.21718256175518036,
+ "learning_rate": 0.0006,
+ "loss": 3.5616965293884277,
+ "step": 3757
+ },
+ {
+ "epoch": 52.19571865443425,
+ "grad_norm": 0.22033235430717468,
+ "learning_rate": 0.0006,
+ "loss": 3.566401481628418,
+ "step": 3758
+ },
+ {
+ "epoch": 52.20969855832241,
+ "grad_norm": 0.2401825189590454,
+ "learning_rate": 0.0006,
+ "loss": 3.547682762145996,
+ "step": 3759
+ },
+ {
+ "epoch": 52.22367846221057,
+ "grad_norm": 0.24496418237686157,
+ "learning_rate": 0.0006,
+ "loss": 3.5405421257019043,
+ "step": 3760
+ },
+ {
+ "epoch": 52.237658366098735,
+ "grad_norm": 0.2311883270740509,
+ "learning_rate": 0.0006,
+ "loss": 3.5709781646728516,
+ "step": 3761
+ },
+ {
+ "epoch": 52.25163826998689,
+ "grad_norm": 0.20850200951099396,
+ "learning_rate": 0.0006,
+ "loss": 3.5563712120056152,
+ "step": 3762
+ },
+ {
+ "epoch": 52.265618173875055,
+ "grad_norm": 0.2073400765657425,
+ "learning_rate": 0.0006,
+ "loss": 3.542343854904175,
+ "step": 3763
+ },
+ {
+ "epoch": 52.27959807776322,
+ "grad_norm": 0.21886718273162842,
+ "learning_rate": 0.0006,
+ "loss": 3.5633034706115723,
+ "step": 3764
+ },
+ {
+ "epoch": 52.293577981651374,
+ "grad_norm": 0.2218562215566635,
+ "learning_rate": 0.0006,
+ "loss": 3.5644288063049316,
+ "step": 3765
+ },
+ {
+ "epoch": 52.30755788553954,
+ "grad_norm": 0.22043557465076447,
+ "learning_rate": 0.0006,
+ "loss": 3.564373731613159,
+ "step": 3766
+ },
+ {
+ "epoch": 52.3215377894277,
+ "grad_norm": 0.2095082402229309,
+ "learning_rate": 0.0006,
+ "loss": 3.5336289405822754,
+ "step": 3767
+ },
+ {
+ "epoch": 52.33551769331586,
+ "grad_norm": 0.21115876734256744,
+ "learning_rate": 0.0006,
+ "loss": 3.5761165618896484,
+ "step": 3768
+ },
+ {
+ "epoch": 52.34949759720402,
+ "grad_norm": 0.21558400988578796,
+ "learning_rate": 0.0006,
+ "loss": 3.573495388031006,
+ "step": 3769
+ },
+ {
+ "epoch": 52.36347750109218,
+ "grad_norm": 0.213745579123497,
+ "learning_rate": 0.0006,
+ "loss": 3.572171211242676,
+ "step": 3770
+ },
+ {
+ "epoch": 52.37745740498034,
+ "grad_norm": 0.1926180124282837,
+ "learning_rate": 0.0006,
+ "loss": 3.532592535018921,
+ "step": 3771
+ },
+ {
+ "epoch": 52.391437308868504,
+ "grad_norm": 0.1993863731622696,
+ "learning_rate": 0.0006,
+ "loss": 3.551880359649658,
+ "step": 3772
+ },
+ {
+ "epoch": 52.40541721275666,
+ "grad_norm": 0.2018740326166153,
+ "learning_rate": 0.0006,
+ "loss": 3.557328701019287,
+ "step": 3773
+ },
+ {
+ "epoch": 52.419397116644824,
+ "grad_norm": 0.19035610556602478,
+ "learning_rate": 0.0006,
+ "loss": 3.600301504135132,
+ "step": 3774
+ },
+ {
+ "epoch": 52.43337702053299,
+ "grad_norm": 0.20069538056850433,
+ "learning_rate": 0.0006,
+ "loss": 3.5938944816589355,
+ "step": 3775
+ },
+ {
+ "epoch": 52.44735692442114,
+ "grad_norm": 0.21255625784397125,
+ "learning_rate": 0.0006,
+ "loss": 3.561086893081665,
+ "step": 3776
+ },
+ {
+ "epoch": 52.46133682830931,
+ "grad_norm": 0.20132070779800415,
+ "learning_rate": 0.0006,
+ "loss": 3.5525574684143066,
+ "step": 3777
+ },
+ {
+ "epoch": 52.47531673219746,
+ "grad_norm": 0.20152916014194489,
+ "learning_rate": 0.0006,
+ "loss": 3.5697402954101562,
+ "step": 3778
+ },
+ {
+ "epoch": 52.489296636085626,
+ "grad_norm": 0.1984269767999649,
+ "learning_rate": 0.0006,
+ "loss": 3.5686168670654297,
+ "step": 3779
+ },
+ {
+ "epoch": 52.50327653997379,
+ "grad_norm": 0.212612584233284,
+ "learning_rate": 0.0006,
+ "loss": 3.5522124767303467,
+ "step": 3780
+ },
+ {
+ "epoch": 52.517256443861946,
+ "grad_norm": 0.21382521092891693,
+ "learning_rate": 0.0006,
+ "loss": 3.5692944526672363,
+ "step": 3781
+ },
+ {
+ "epoch": 52.53123634775011,
+ "grad_norm": 0.2118486911058426,
+ "learning_rate": 0.0006,
+ "loss": 3.562495708465576,
+ "step": 3782
+ },
+ {
+ "epoch": 52.54521625163827,
+ "grad_norm": 0.22253486514091492,
+ "learning_rate": 0.0006,
+ "loss": 3.5709781646728516,
+ "step": 3783
+ },
+ {
+ "epoch": 52.55919615552643,
+ "grad_norm": 0.23701436817646027,
+ "learning_rate": 0.0006,
+ "loss": 3.548953056335449,
+ "step": 3784
+ },
+ {
+ "epoch": 52.57317605941459,
+ "grad_norm": 0.21345193684101105,
+ "learning_rate": 0.0006,
+ "loss": 3.543029308319092,
+ "step": 3785
+ },
+ {
+ "epoch": 52.58715596330275,
+ "grad_norm": 0.1854170262813568,
+ "learning_rate": 0.0006,
+ "loss": 3.5490989685058594,
+ "step": 3786
+ },
+ {
+ "epoch": 52.60113586719091,
+ "grad_norm": 0.23733633756637573,
+ "learning_rate": 0.0006,
+ "loss": 3.5800132751464844,
+ "step": 3787
+ },
+ {
+ "epoch": 52.615115771079076,
+ "grad_norm": 0.26175495982170105,
+ "learning_rate": 0.0006,
+ "loss": 3.562596321105957,
+ "step": 3788
+ },
+ {
+ "epoch": 52.62909567496723,
+ "grad_norm": 0.23134057223796844,
+ "learning_rate": 0.0006,
+ "loss": 3.5685765743255615,
+ "step": 3789
+ },
+ {
+ "epoch": 52.643075578855395,
+ "grad_norm": 0.1974988877773285,
+ "learning_rate": 0.0006,
+ "loss": 3.570517063140869,
+ "step": 3790
+ },
+ {
+ "epoch": 52.65705548274356,
+ "grad_norm": 0.20049697160720825,
+ "learning_rate": 0.0006,
+ "loss": 3.573286533355713,
+ "step": 3791
+ },
+ {
+ "epoch": 52.671035386631715,
+ "grad_norm": 0.1956445872783661,
+ "learning_rate": 0.0006,
+ "loss": 3.565880537033081,
+ "step": 3792
+ },
+ {
+ "epoch": 52.68501529051988,
+ "grad_norm": 0.2082354575395584,
+ "learning_rate": 0.0006,
+ "loss": 3.587278366088867,
+ "step": 3793
+ },
+ {
+ "epoch": 52.69899519440804,
+ "grad_norm": 0.20923161506652832,
+ "learning_rate": 0.0006,
+ "loss": 3.569469451904297,
+ "step": 3794
+ },
+ {
+ "epoch": 52.7129750982962,
+ "grad_norm": 0.20482848584651947,
+ "learning_rate": 0.0006,
+ "loss": 3.5826265811920166,
+ "step": 3795
+ },
+ {
+ "epoch": 52.72695500218436,
+ "grad_norm": 0.20411530137062073,
+ "learning_rate": 0.0006,
+ "loss": 3.5870275497436523,
+ "step": 3796
+ },
+ {
+ "epoch": 52.74093490607252,
+ "grad_norm": 0.2205485701560974,
+ "learning_rate": 0.0006,
+ "loss": 3.58900785446167,
+ "step": 3797
+ },
+ {
+ "epoch": 52.75491480996068,
+ "grad_norm": 0.21134008467197418,
+ "learning_rate": 0.0006,
+ "loss": 3.591036558151245,
+ "step": 3798
+ },
+ {
+ "epoch": 52.768894713848844,
+ "grad_norm": 0.20001831650733948,
+ "learning_rate": 0.0006,
+ "loss": 3.5670390129089355,
+ "step": 3799
+ },
+ {
+ "epoch": 52.782874617737,
+ "grad_norm": 0.2175939679145813,
+ "learning_rate": 0.0006,
+ "loss": 3.594132423400879,
+ "step": 3800
+ },
+ {
+ "epoch": 52.796854521625164,
+ "grad_norm": 0.22054694592952728,
+ "learning_rate": 0.0006,
+ "loss": 3.5565545558929443,
+ "step": 3801
+ },
+ {
+ "epoch": 52.81083442551333,
+ "grad_norm": 0.22901731729507446,
+ "learning_rate": 0.0006,
+ "loss": 3.5837020874023438,
+ "step": 3802
+ },
+ {
+ "epoch": 52.824814329401484,
+ "grad_norm": 0.22492778301239014,
+ "learning_rate": 0.0006,
+ "loss": 3.608218193054199,
+ "step": 3803
+ },
+ {
+ "epoch": 52.83879423328965,
+ "grad_norm": 0.21645256876945496,
+ "learning_rate": 0.0006,
+ "loss": 3.5839202404022217,
+ "step": 3804
+ },
+ {
+ "epoch": 52.8527741371778,
+ "grad_norm": 0.19680161774158478,
+ "learning_rate": 0.0006,
+ "loss": 3.568756580352783,
+ "step": 3805
+ },
+ {
+ "epoch": 52.86675404106597,
+ "grad_norm": 0.2084486186504364,
+ "learning_rate": 0.0006,
+ "loss": 3.580197811126709,
+ "step": 3806
+ },
+ {
+ "epoch": 52.88073394495413,
+ "grad_norm": 0.19380393624305725,
+ "learning_rate": 0.0006,
+ "loss": 3.5871198177337646,
+ "step": 3807
+ },
+ {
+ "epoch": 52.89471384884229,
+ "grad_norm": 0.1962910294532776,
+ "learning_rate": 0.0006,
+ "loss": 3.5878777503967285,
+ "step": 3808
+ },
+ {
+ "epoch": 52.90869375273045,
+ "grad_norm": 0.23292803764343262,
+ "learning_rate": 0.0006,
+ "loss": 3.574855327606201,
+ "step": 3809
+ },
+ {
+ "epoch": 52.92267365661861,
+ "grad_norm": 0.26974233984947205,
+ "learning_rate": 0.0006,
+ "loss": 3.5731749534606934,
+ "step": 3810
+ },
+ {
+ "epoch": 52.93665356050677,
+ "grad_norm": 0.26665496826171875,
+ "learning_rate": 0.0006,
+ "loss": 3.552717685699463,
+ "step": 3811
+ },
+ {
+ "epoch": 52.95063346439493,
+ "grad_norm": 0.24156489968299866,
+ "learning_rate": 0.0006,
+ "loss": 3.581787109375,
+ "step": 3812
+ },
+ {
+ "epoch": 52.964613368283096,
+ "grad_norm": 0.22062325477600098,
+ "learning_rate": 0.0006,
+ "loss": 3.578994035720825,
+ "step": 3813
+ },
+ {
+ "epoch": 52.97859327217125,
+ "grad_norm": 0.19949151575565338,
+ "learning_rate": 0.0006,
+ "loss": 3.6157355308532715,
+ "step": 3814
+ },
+ {
+ "epoch": 52.992573176059416,
+ "grad_norm": 0.2157975435256958,
+ "learning_rate": 0.0006,
+ "loss": 3.5677759647369385,
+ "step": 3815
+ },
+ {
+ "epoch": 53.0,
+ "grad_norm": 0.23285679519176483,
+ "learning_rate": 0.0006,
+ "loss": 3.5541789531707764,
+ "step": 3816
+ },
+ {
+ "epoch": 53.0,
+ "eval_loss": 3.9737255573272705,
+ "eval_runtime": 46.0304,
+ "eval_samples_per_second": 53.052,
+ "eval_steps_per_second": 3.324,
+ "step": 3816
+ },
+ {
+ "epoch": 53.01397990388816,
+ "grad_norm": 0.212715283036232,
+ "learning_rate": 0.0006,
+ "loss": 3.5475640296936035,
+ "step": 3817
+ },
+ {
+ "epoch": 53.02795980777632,
+ "grad_norm": 0.24556505680084229,
+ "learning_rate": 0.0006,
+ "loss": 3.5197463035583496,
+ "step": 3818
+ },
+ {
+ "epoch": 53.04193971166448,
+ "grad_norm": 0.2898217737674713,
+ "learning_rate": 0.0006,
+ "loss": 3.527390956878662,
+ "step": 3819
+ },
+ {
+ "epoch": 53.05591961555265,
+ "grad_norm": 0.26151803135871887,
+ "learning_rate": 0.0006,
+ "loss": 3.5462024211883545,
+ "step": 3820
+ },
+ {
+ "epoch": 53.0698995194408,
+ "grad_norm": 0.24648059904575348,
+ "learning_rate": 0.0006,
+ "loss": 3.5584919452667236,
+ "step": 3821
+ },
+ {
+ "epoch": 53.083879423328966,
+ "grad_norm": 0.22295059263706207,
+ "learning_rate": 0.0006,
+ "loss": 3.517195701599121,
+ "step": 3822
+ },
+ {
+ "epoch": 53.09785932721712,
+ "grad_norm": 0.2206476330757141,
+ "learning_rate": 0.0006,
+ "loss": 3.570678234100342,
+ "step": 3823
+ },
+ {
+ "epoch": 53.111839231105286,
+ "grad_norm": 0.22069714963436127,
+ "learning_rate": 0.0006,
+ "loss": 3.5707359313964844,
+ "step": 3824
+ },
+ {
+ "epoch": 53.12581913499345,
+ "grad_norm": 0.21850740909576416,
+ "learning_rate": 0.0006,
+ "loss": 3.5730209350585938,
+ "step": 3825
+ },
+ {
+ "epoch": 53.139799038881605,
+ "grad_norm": 0.21554340422153473,
+ "learning_rate": 0.0006,
+ "loss": 3.5578367710113525,
+ "step": 3826
+ },
+ {
+ "epoch": 53.15377894276977,
+ "grad_norm": 0.21678747236728668,
+ "learning_rate": 0.0006,
+ "loss": 3.5603280067443848,
+ "step": 3827
+ },
+ {
+ "epoch": 53.16775884665793,
+ "grad_norm": 0.22017014026641846,
+ "learning_rate": 0.0006,
+ "loss": 3.577760696411133,
+ "step": 3828
+ },
+ {
+ "epoch": 53.18173875054609,
+ "grad_norm": 0.20485524833202362,
+ "learning_rate": 0.0006,
+ "loss": 3.574751853942871,
+ "step": 3829
+ },
+ {
+ "epoch": 53.19571865443425,
+ "grad_norm": 0.22951237857341766,
+ "learning_rate": 0.0006,
+ "loss": 3.5464377403259277,
+ "step": 3830
+ },
+ {
+ "epoch": 53.20969855832241,
+ "grad_norm": 0.2343965619802475,
+ "learning_rate": 0.0006,
+ "loss": 3.516113758087158,
+ "step": 3831
+ },
+ {
+ "epoch": 53.22367846221057,
+ "grad_norm": 0.24002069234848022,
+ "learning_rate": 0.0006,
+ "loss": 3.564629554748535,
+ "step": 3832
+ },
+ {
+ "epoch": 53.237658366098735,
+ "grad_norm": 0.23933765292167664,
+ "learning_rate": 0.0006,
+ "loss": 3.5518507957458496,
+ "step": 3833
+ },
+ {
+ "epoch": 53.25163826998689,
+ "grad_norm": 0.2188953459262848,
+ "learning_rate": 0.0006,
+ "loss": 3.5341856479644775,
+ "step": 3834
+ },
+ {
+ "epoch": 53.265618173875055,
+ "grad_norm": 0.22629091143608093,
+ "learning_rate": 0.0006,
+ "loss": 3.5479273796081543,
+ "step": 3835
+ },
+ {
+ "epoch": 53.27959807776322,
+ "grad_norm": 0.2386554479598999,
+ "learning_rate": 0.0006,
+ "loss": 3.6097445487976074,
+ "step": 3836
+ },
+ {
+ "epoch": 53.293577981651374,
+ "grad_norm": 0.23003390431404114,
+ "learning_rate": 0.0006,
+ "loss": 3.5435304641723633,
+ "step": 3837
+ },
+ {
+ "epoch": 53.30755788553954,
+ "grad_norm": 0.248053640127182,
+ "learning_rate": 0.0006,
+ "loss": 3.545290470123291,
+ "step": 3838
+ },
+ {
+ "epoch": 53.3215377894277,
+ "grad_norm": 0.23945583403110504,
+ "learning_rate": 0.0006,
+ "loss": 3.570158004760742,
+ "step": 3839
+ },
+ {
+ "epoch": 53.33551769331586,
+ "grad_norm": 0.22801059484481812,
+ "learning_rate": 0.0006,
+ "loss": 3.5600779056549072,
+ "step": 3840
+ },
+ {
+ "epoch": 53.34949759720402,
+ "grad_norm": 0.2303777039051056,
+ "learning_rate": 0.0006,
+ "loss": 3.576674222946167,
+ "step": 3841
+ },
+ {
+ "epoch": 53.36347750109218,
+ "grad_norm": 0.23318468034267426,
+ "learning_rate": 0.0006,
+ "loss": 3.5705552101135254,
+ "step": 3842
+ },
+ {
+ "epoch": 53.37745740498034,
+ "grad_norm": 0.2435566782951355,
+ "learning_rate": 0.0006,
+ "loss": 3.576536178588867,
+ "step": 3843
+ },
+ {
+ "epoch": 53.391437308868504,
+ "grad_norm": 0.2857200503349304,
+ "learning_rate": 0.0006,
+ "loss": 3.535977363586426,
+ "step": 3844
+ },
+ {
+ "epoch": 53.40541721275666,
+ "grad_norm": 0.2640133500099182,
+ "learning_rate": 0.0006,
+ "loss": 3.547731399536133,
+ "step": 3845
+ },
+ {
+ "epoch": 53.419397116644824,
+ "grad_norm": 0.22218745946884155,
+ "learning_rate": 0.0006,
+ "loss": 3.5798351764678955,
+ "step": 3846
+ },
+ {
+ "epoch": 53.43337702053299,
+ "grad_norm": 0.2537193298339844,
+ "learning_rate": 0.0006,
+ "loss": 3.5289204120635986,
+ "step": 3847
+ },
+ {
+ "epoch": 53.44735692442114,
+ "grad_norm": 0.28360968828201294,
+ "learning_rate": 0.0006,
+ "loss": 3.5503361225128174,
+ "step": 3848
+ },
+ {
+ "epoch": 53.46133682830931,
+ "grad_norm": 0.2892421782016754,
+ "learning_rate": 0.0006,
+ "loss": 3.5675411224365234,
+ "step": 3849
+ },
+ {
+ "epoch": 53.47531673219746,
+ "grad_norm": 0.28305584192276,
+ "learning_rate": 0.0006,
+ "loss": 3.573280096054077,
+ "step": 3850
+ },
+ {
+ "epoch": 53.489296636085626,
+ "grad_norm": 0.24628037214279175,
+ "learning_rate": 0.0006,
+ "loss": 3.5215024948120117,
+ "step": 3851
+ },
+ {
+ "epoch": 53.50327653997379,
+ "grad_norm": 0.2463715672492981,
+ "learning_rate": 0.0006,
+ "loss": 3.5790698528289795,
+ "step": 3852
+ },
+ {
+ "epoch": 53.517256443861946,
+ "grad_norm": 0.2646636664867401,
+ "learning_rate": 0.0006,
+ "loss": 3.589735269546509,
+ "step": 3853
+ },
+ {
+ "epoch": 53.53123634775011,
+ "grad_norm": 0.27668821811676025,
+ "learning_rate": 0.0006,
+ "loss": 3.5690393447875977,
+ "step": 3854
+ },
+ {
+ "epoch": 53.54521625163827,
+ "grad_norm": 0.2630347013473511,
+ "learning_rate": 0.0006,
+ "loss": 3.5846545696258545,
+ "step": 3855
+ },
+ {
+ "epoch": 53.55919615552643,
+ "grad_norm": 0.27177906036376953,
+ "learning_rate": 0.0006,
+ "loss": 3.5431671142578125,
+ "step": 3856
+ },
+ {
+ "epoch": 53.57317605941459,
+ "grad_norm": 0.27125081419944763,
+ "learning_rate": 0.0006,
+ "loss": 3.5905215740203857,
+ "step": 3857
+ },
+ {
+ "epoch": 53.58715596330275,
+ "grad_norm": 0.24802975356578827,
+ "learning_rate": 0.0006,
+ "loss": 3.5472917556762695,
+ "step": 3858
+ },
+ {
+ "epoch": 53.60113586719091,
+ "grad_norm": 0.23812460899353027,
+ "learning_rate": 0.0006,
+ "loss": 3.5917325019836426,
+ "step": 3859
+ },
+ {
+ "epoch": 53.615115771079076,
+ "grad_norm": 0.2597416937351227,
+ "learning_rate": 0.0006,
+ "loss": 3.5515074729919434,
+ "step": 3860
+ },
+ {
+ "epoch": 53.62909567496723,
+ "grad_norm": 0.24389132857322693,
+ "learning_rate": 0.0006,
+ "loss": 3.578125476837158,
+ "step": 3861
+ },
+ {
+ "epoch": 53.643075578855395,
+ "grad_norm": 0.23878274857997894,
+ "learning_rate": 0.0006,
+ "loss": 3.5612001419067383,
+ "step": 3862
+ },
+ {
+ "epoch": 53.65705548274356,
+ "grad_norm": 0.23248082399368286,
+ "learning_rate": 0.0006,
+ "loss": 3.5651350021362305,
+ "step": 3863
+ },
+ {
+ "epoch": 53.671035386631715,
+ "grad_norm": 0.22560833394527435,
+ "learning_rate": 0.0006,
+ "loss": 3.58971905708313,
+ "step": 3864
+ },
+ {
+ "epoch": 53.68501529051988,
+ "grad_norm": 0.22092120349407196,
+ "learning_rate": 0.0006,
+ "loss": 3.5567374229431152,
+ "step": 3865
+ },
+ {
+ "epoch": 53.69899519440804,
+ "grad_norm": 0.20171885192394257,
+ "learning_rate": 0.0006,
+ "loss": 3.5868449211120605,
+ "step": 3866
+ },
+ {
+ "epoch": 53.7129750982962,
+ "grad_norm": 0.2051871120929718,
+ "learning_rate": 0.0006,
+ "loss": 3.5853161811828613,
+ "step": 3867
+ },
+ {
+ "epoch": 53.72695500218436,
+ "grad_norm": 0.1912045031785965,
+ "learning_rate": 0.0006,
+ "loss": 3.5901622772216797,
+ "step": 3868
+ },
+ {
+ "epoch": 53.74093490607252,
+ "grad_norm": 0.20817188918590546,
+ "learning_rate": 0.0006,
+ "loss": 3.5759787559509277,
+ "step": 3869
+ },
+ {
+ "epoch": 53.75491480996068,
+ "grad_norm": 0.2157917469739914,
+ "learning_rate": 0.0006,
+ "loss": 3.5438575744628906,
+ "step": 3870
+ },
+ {
+ "epoch": 53.768894713848844,
+ "grad_norm": 0.2332053929567337,
+ "learning_rate": 0.0006,
+ "loss": 3.587697982788086,
+ "step": 3871
+ },
+ {
+ "epoch": 53.782874617737,
+ "grad_norm": 0.22700314223766327,
+ "learning_rate": 0.0006,
+ "loss": 3.586625337600708,
+ "step": 3872
+ },
+ {
+ "epoch": 53.796854521625164,
+ "grad_norm": 0.20737017691135406,
+ "learning_rate": 0.0006,
+ "loss": 3.552398204803467,
+ "step": 3873
+ },
+ {
+ "epoch": 53.81083442551333,
+ "grad_norm": 0.20355650782585144,
+ "learning_rate": 0.0006,
+ "loss": 3.5734331607818604,
+ "step": 3874
+ },
+ {
+ "epoch": 53.824814329401484,
+ "grad_norm": 0.18868018686771393,
+ "learning_rate": 0.0006,
+ "loss": 3.582509756088257,
+ "step": 3875
+ },
+ {
+ "epoch": 53.83879423328965,
+ "grad_norm": 0.20373275876045227,
+ "learning_rate": 0.0006,
+ "loss": 3.559354782104492,
+ "step": 3876
+ },
+ {
+ "epoch": 53.8527741371778,
+ "grad_norm": 0.1988871544599533,
+ "learning_rate": 0.0006,
+ "loss": 3.5575170516967773,
+ "step": 3877
+ },
+ {
+ "epoch": 53.86675404106597,
+ "grad_norm": 0.19602873921394348,
+ "learning_rate": 0.0006,
+ "loss": 3.5500855445861816,
+ "step": 3878
+ },
+ {
+ "epoch": 53.88073394495413,
+ "grad_norm": 0.201382577419281,
+ "learning_rate": 0.0006,
+ "loss": 3.563499927520752,
+ "step": 3879
+ },
+ {
+ "epoch": 53.89471384884229,
+ "grad_norm": 0.19682180881500244,
+ "learning_rate": 0.0006,
+ "loss": 3.586855888366699,
+ "step": 3880
+ },
+ {
+ "epoch": 53.90869375273045,
+ "grad_norm": 0.19423548877239227,
+ "learning_rate": 0.0006,
+ "loss": 3.5840401649475098,
+ "step": 3881
+ },
+ {
+ "epoch": 53.92267365661861,
+ "grad_norm": 0.1970449835062027,
+ "learning_rate": 0.0006,
+ "loss": 3.554568290710449,
+ "step": 3882
+ },
+ {
+ "epoch": 53.93665356050677,
+ "grad_norm": 0.20274291932582855,
+ "learning_rate": 0.0006,
+ "loss": 3.5928239822387695,
+ "step": 3883
+ },
+ {
+ "epoch": 53.95063346439493,
+ "grad_norm": 0.18485035002231598,
+ "learning_rate": 0.0006,
+ "loss": 3.576934337615967,
+ "step": 3884
+ },
+ {
+ "epoch": 53.964613368283096,
+ "grad_norm": 0.18437646329402924,
+ "learning_rate": 0.0006,
+ "loss": 3.574990749359131,
+ "step": 3885
+ },
+ {
+ "epoch": 53.97859327217125,
+ "grad_norm": 0.18616823852062225,
+ "learning_rate": 0.0006,
+ "loss": 3.5566892623901367,
+ "step": 3886
+ },
+ {
+ "epoch": 53.992573176059416,
+ "grad_norm": 0.19502122700214386,
+ "learning_rate": 0.0006,
+ "loss": 3.604814052581787,
+ "step": 3887
+ },
+ {
+ "epoch": 54.0,
+ "grad_norm": 0.2657789885997772,
+ "learning_rate": 0.0006,
+ "loss": 3.5094165802001953,
+ "step": 3888
+ },
+ {
+ "epoch": 54.0,
+ "eval_loss": 3.965742349624634,
+ "eval_runtime": 45.5851,
+ "eval_samples_per_second": 53.57,
+ "eval_steps_per_second": 3.356,
+ "step": 3888
+ },
+ {
+ "epoch": 54.01397990388816,
+ "grad_norm": 0.27879253029823303,
+ "learning_rate": 0.0006,
+ "loss": 3.565103530883789,
+ "step": 3889
+ },
+ {
+ "epoch": 54.02795980777632,
+ "grad_norm": 0.2959246337413788,
+ "learning_rate": 0.0006,
+ "loss": 3.5378212928771973,
+ "step": 3890
+ },
+ {
+ "epoch": 54.04193971166448,
+ "grad_norm": 0.32719552516937256,
+ "learning_rate": 0.0006,
+ "loss": 3.5566751956939697,
+ "step": 3891
+ },
+ {
+ "epoch": 54.05591961555265,
+ "grad_norm": 0.36854541301727295,
+ "learning_rate": 0.0006,
+ "loss": 3.5363879203796387,
+ "step": 3892
+ },
+ {
+ "epoch": 54.0698995194408,
+ "grad_norm": 0.34325551986694336,
+ "learning_rate": 0.0006,
+ "loss": 3.5306153297424316,
+ "step": 3893
+ },
+ {
+ "epoch": 54.083879423328966,
+ "grad_norm": 0.2798653244972229,
+ "learning_rate": 0.0006,
+ "loss": 3.5642261505126953,
+ "step": 3894
+ },
+ {
+ "epoch": 54.09785932721712,
+ "grad_norm": 0.24857765436172485,
+ "learning_rate": 0.0006,
+ "loss": 3.50216007232666,
+ "step": 3895
+ },
+ {
+ "epoch": 54.111839231105286,
+ "grad_norm": 0.2943299114704132,
+ "learning_rate": 0.0006,
+ "loss": 3.524904251098633,
+ "step": 3896
+ },
+ {
+ "epoch": 54.12581913499345,
+ "grad_norm": 0.2791048586368561,
+ "learning_rate": 0.0006,
+ "loss": 3.56490421295166,
+ "step": 3897
+ },
+ {
+ "epoch": 54.139799038881605,
+ "grad_norm": 0.2781159579753876,
+ "learning_rate": 0.0006,
+ "loss": 3.536180019378662,
+ "step": 3898
+ },
+ {
+ "epoch": 54.15377894276977,
+ "grad_norm": 0.30359897017478943,
+ "learning_rate": 0.0006,
+ "loss": 3.546919345855713,
+ "step": 3899
+ },
+ {
+ "epoch": 54.16775884665793,
+ "grad_norm": 0.2738530933856964,
+ "learning_rate": 0.0006,
+ "loss": 3.547968864440918,
+ "step": 3900
+ },
+ {
+ "epoch": 54.18173875054609,
+ "grad_norm": 0.24783718585968018,
+ "learning_rate": 0.0006,
+ "loss": 3.5802721977233887,
+ "step": 3901
+ },
+ {
+ "epoch": 54.19571865443425,
+ "grad_norm": 0.2544802725315094,
+ "learning_rate": 0.0006,
+ "loss": 3.5556836128234863,
+ "step": 3902
+ },
+ {
+ "epoch": 54.20969855832241,
+ "grad_norm": 0.26695969700813293,
+ "learning_rate": 0.0006,
+ "loss": 3.534266471862793,
+ "step": 3903
+ },
+ {
+ "epoch": 54.22367846221057,
+ "grad_norm": 0.24152538180351257,
+ "learning_rate": 0.0006,
+ "loss": 3.534069538116455,
+ "step": 3904
+ },
+ {
+ "epoch": 54.237658366098735,
+ "grad_norm": 0.21859917044639587,
+ "learning_rate": 0.0006,
+ "loss": 3.535362958908081,
+ "step": 3905
+ },
+ {
+ "epoch": 54.25163826998689,
+ "grad_norm": 0.24676479399204254,
+ "learning_rate": 0.0006,
+ "loss": 3.567283868789673,
+ "step": 3906
+ },
+ {
+ "epoch": 54.265618173875055,
+ "grad_norm": 0.26998138427734375,
+ "learning_rate": 0.0006,
+ "loss": 3.518892765045166,
+ "step": 3907
+ },
+ {
+ "epoch": 54.27959807776322,
+ "grad_norm": 0.30108749866485596,
+ "learning_rate": 0.0006,
+ "loss": 3.5865135192871094,
+ "step": 3908
+ },
+ {
+ "epoch": 54.293577981651374,
+ "grad_norm": 0.31310492753982544,
+ "learning_rate": 0.0006,
+ "loss": 3.546637535095215,
+ "step": 3909
+ },
+ {
+ "epoch": 54.30755788553954,
+ "grad_norm": 0.2994784712791443,
+ "learning_rate": 0.0006,
+ "loss": 3.5441226959228516,
+ "step": 3910
+ },
+ {
+ "epoch": 54.3215377894277,
+ "grad_norm": 0.25010061264038086,
+ "learning_rate": 0.0006,
+ "loss": 3.5619735717773438,
+ "step": 3911
+ },
+ {
+ "epoch": 54.33551769331586,
+ "grad_norm": 0.253129780292511,
+ "learning_rate": 0.0006,
+ "loss": 3.530210494995117,
+ "step": 3912
+ },
+ {
+ "epoch": 54.34949759720402,
+ "grad_norm": 0.2652498781681061,
+ "learning_rate": 0.0006,
+ "loss": 3.534478187561035,
+ "step": 3913
+ },
+ {
+ "epoch": 54.36347750109218,
+ "grad_norm": 0.250503808259964,
+ "learning_rate": 0.0006,
+ "loss": 3.545886516571045,
+ "step": 3914
+ },
+ {
+ "epoch": 54.37745740498034,
+ "grad_norm": 0.22186073660850525,
+ "learning_rate": 0.0006,
+ "loss": 3.5884604454040527,
+ "step": 3915
+ },
+ {
+ "epoch": 54.391437308868504,
+ "grad_norm": 0.21128980815410614,
+ "learning_rate": 0.0006,
+ "loss": 3.527862548828125,
+ "step": 3916
+ },
+ {
+ "epoch": 54.40541721275666,
+ "grad_norm": 0.23184002935886383,
+ "learning_rate": 0.0006,
+ "loss": 3.5599637031555176,
+ "step": 3917
+ },
+ {
+ "epoch": 54.419397116644824,
+ "grad_norm": 0.23710627853870392,
+ "learning_rate": 0.0006,
+ "loss": 3.54667329788208,
+ "step": 3918
+ },
+ {
+ "epoch": 54.43337702053299,
+ "grad_norm": 0.2314598113298416,
+ "learning_rate": 0.0006,
+ "loss": 3.518406391143799,
+ "step": 3919
+ },
+ {
+ "epoch": 54.44735692442114,
+ "grad_norm": 0.21623452007770538,
+ "learning_rate": 0.0006,
+ "loss": 3.5749731063842773,
+ "step": 3920
+ },
+ {
+ "epoch": 54.46133682830931,
+ "grad_norm": 0.22832012176513672,
+ "learning_rate": 0.0006,
+ "loss": 3.57436466217041,
+ "step": 3921
+ },
+ {
+ "epoch": 54.47531673219746,
+ "grad_norm": 0.2184043526649475,
+ "learning_rate": 0.0006,
+ "loss": 3.578040838241577,
+ "step": 3922
+ },
+ {
+ "epoch": 54.489296636085626,
+ "grad_norm": 0.2302335649728775,
+ "learning_rate": 0.0006,
+ "loss": 3.5646257400512695,
+ "step": 3923
+ },
+ {
+ "epoch": 54.50327653997379,
+ "grad_norm": 0.21635375916957855,
+ "learning_rate": 0.0006,
+ "loss": 3.546786308288574,
+ "step": 3924
+ },
+ {
+ "epoch": 54.517256443861946,
+ "grad_norm": 0.22332443296909332,
+ "learning_rate": 0.0006,
+ "loss": 3.5804502964019775,
+ "step": 3925
+ },
+ {
+ "epoch": 54.53123634775011,
+ "grad_norm": 0.21662919223308563,
+ "learning_rate": 0.0006,
+ "loss": 3.567797899246216,
+ "step": 3926
+ },
+ {
+ "epoch": 54.54521625163827,
+ "grad_norm": 0.21345169842243195,
+ "learning_rate": 0.0006,
+ "loss": 3.5746283531188965,
+ "step": 3927
+ },
+ {
+ "epoch": 54.55919615552643,
+ "grad_norm": 0.2111794501543045,
+ "learning_rate": 0.0006,
+ "loss": 3.5626277923583984,
+ "step": 3928
+ },
+ {
+ "epoch": 54.57317605941459,
+ "grad_norm": 0.22575712203979492,
+ "learning_rate": 0.0006,
+ "loss": 3.5856311321258545,
+ "step": 3929
+ },
+ {
+ "epoch": 54.58715596330275,
+ "grad_norm": 0.22963617742061615,
+ "learning_rate": 0.0006,
+ "loss": 3.584038257598877,
+ "step": 3930
+ },
+ {
+ "epoch": 54.60113586719091,
+ "grad_norm": 0.21805310249328613,
+ "learning_rate": 0.0006,
+ "loss": 3.5603089332580566,
+ "step": 3931
+ },
+ {
+ "epoch": 54.615115771079076,
+ "grad_norm": 0.22830283641815186,
+ "learning_rate": 0.0006,
+ "loss": 3.5533390045166016,
+ "step": 3932
+ },
+ {
+ "epoch": 54.62909567496723,
+ "grad_norm": 0.24158291518688202,
+ "learning_rate": 0.0006,
+ "loss": 3.5437779426574707,
+ "step": 3933
+ },
+ {
+ "epoch": 54.643075578855395,
+ "grad_norm": 0.22687768936157227,
+ "learning_rate": 0.0006,
+ "loss": 3.566315174102783,
+ "step": 3934
+ },
+ {
+ "epoch": 54.65705548274356,
+ "grad_norm": 0.21220184862613678,
+ "learning_rate": 0.0006,
+ "loss": 3.5772881507873535,
+ "step": 3935
+ },
+ {
+ "epoch": 54.671035386631715,
+ "grad_norm": 0.19508333504199982,
+ "learning_rate": 0.0006,
+ "loss": 3.5213584899902344,
+ "step": 3936
+ },
+ {
+ "epoch": 54.68501529051988,
+ "grad_norm": 0.199599027633667,
+ "learning_rate": 0.0006,
+ "loss": 3.553925037384033,
+ "step": 3937
+ },
+ {
+ "epoch": 54.69899519440804,
+ "grad_norm": 0.2063189297914505,
+ "learning_rate": 0.0006,
+ "loss": 3.5706050395965576,
+ "step": 3938
+ },
+ {
+ "epoch": 54.7129750982962,
+ "grad_norm": 0.2056119441986084,
+ "learning_rate": 0.0006,
+ "loss": 3.557199478149414,
+ "step": 3939
+ },
+ {
+ "epoch": 54.72695500218436,
+ "grad_norm": 0.2192074954509735,
+ "learning_rate": 0.0006,
+ "loss": 3.5869479179382324,
+ "step": 3940
+ },
+ {
+ "epoch": 54.74093490607252,
+ "grad_norm": 0.19796597957611084,
+ "learning_rate": 0.0006,
+ "loss": 3.559929609298706,
+ "step": 3941
+ },
+ {
+ "epoch": 54.75491480996068,
+ "grad_norm": 0.19003179669380188,
+ "learning_rate": 0.0006,
+ "loss": 3.5481486320495605,
+ "step": 3942
+ },
+ {
+ "epoch": 54.768894713848844,
+ "grad_norm": 0.189231738448143,
+ "learning_rate": 0.0006,
+ "loss": 3.5603561401367188,
+ "step": 3943
+ },
+ {
+ "epoch": 54.782874617737,
+ "grad_norm": 0.20949427783489227,
+ "learning_rate": 0.0006,
+ "loss": 3.567026138305664,
+ "step": 3944
+ },
+ {
+ "epoch": 54.796854521625164,
+ "grad_norm": 0.21650178730487823,
+ "learning_rate": 0.0006,
+ "loss": 3.5981621742248535,
+ "step": 3945
+ },
+ {
+ "epoch": 54.81083442551333,
+ "grad_norm": 0.21941770613193512,
+ "learning_rate": 0.0006,
+ "loss": 3.590226173400879,
+ "step": 3946
+ },
+ {
+ "epoch": 54.824814329401484,
+ "grad_norm": 0.2169734537601471,
+ "learning_rate": 0.0006,
+ "loss": 3.592764139175415,
+ "step": 3947
+ },
+ {
+ "epoch": 54.83879423328965,
+ "grad_norm": 0.20309467613697052,
+ "learning_rate": 0.0006,
+ "loss": 3.5706393718719482,
+ "step": 3948
+ },
+ {
+ "epoch": 54.8527741371778,
+ "grad_norm": 0.21803754568099976,
+ "learning_rate": 0.0006,
+ "loss": 3.5816526412963867,
+ "step": 3949
+ },
+ {
+ "epoch": 54.86675404106597,
+ "grad_norm": 0.22217069566249847,
+ "learning_rate": 0.0006,
+ "loss": 3.5895018577575684,
+ "step": 3950
+ },
+ {
+ "epoch": 54.88073394495413,
+ "grad_norm": 0.21204866468906403,
+ "learning_rate": 0.0006,
+ "loss": 3.5574231147766113,
+ "step": 3951
+ },
+ {
+ "epoch": 54.89471384884229,
+ "grad_norm": 0.2173423171043396,
+ "learning_rate": 0.0006,
+ "loss": 3.564763069152832,
+ "step": 3952
+ },
+ {
+ "epoch": 54.90869375273045,
+ "grad_norm": 0.2039082646369934,
+ "learning_rate": 0.0006,
+ "loss": 3.59708309173584,
+ "step": 3953
+ },
+ {
+ "epoch": 54.92267365661861,
+ "grad_norm": 0.20248384773731232,
+ "learning_rate": 0.0006,
+ "loss": 3.587890148162842,
+ "step": 3954
+ },
+ {
+ "epoch": 54.93665356050677,
+ "grad_norm": 0.20693068206310272,
+ "learning_rate": 0.0006,
+ "loss": 3.5569000244140625,
+ "step": 3955
+ },
+ {
+ "epoch": 54.95063346439493,
+ "grad_norm": 0.2109357714653015,
+ "learning_rate": 0.0006,
+ "loss": 3.552126884460449,
+ "step": 3956
+ },
+ {
+ "epoch": 54.964613368283096,
+ "grad_norm": 0.2278970628976822,
+ "learning_rate": 0.0006,
+ "loss": 3.564998149871826,
+ "step": 3957
+ },
+ {
+ "epoch": 54.97859327217125,
+ "grad_norm": 0.21663756668567657,
+ "learning_rate": 0.0006,
+ "loss": 3.571608543395996,
+ "step": 3958
+ },
+ {
+ "epoch": 54.992573176059416,
+ "grad_norm": 0.19653232395648956,
+ "learning_rate": 0.0006,
+ "loss": 3.5885231494903564,
+ "step": 3959
+ },
+ {
+ "epoch": 55.0,
+ "grad_norm": 0.21956856548786163,
+ "learning_rate": 0.0006,
+ "loss": 3.4966204166412354,
+ "step": 3960
+ },
+ {
+ "epoch": 55.0,
+ "eval_loss": 3.972649097442627,
+ "eval_runtime": 45.2298,
+ "eval_samples_per_second": 53.991,
+ "eval_steps_per_second": 3.383,
+ "step": 3960
+ },
+ {
+ "epoch": 55.01397990388816,
+ "grad_norm": 0.22733832895755768,
+ "learning_rate": 0.0006,
+ "loss": 3.546975612640381,
+ "step": 3961
+ },
+ {
+ "epoch": 55.02795980777632,
+ "grad_norm": 0.25451111793518066,
+ "learning_rate": 0.0006,
+ "loss": 3.54240083694458,
+ "step": 3962
+ },
+ {
+ "epoch": 55.04193971166448,
+ "grad_norm": 0.2394949048757553,
+ "learning_rate": 0.0006,
+ "loss": 3.5492677688598633,
+ "step": 3963
+ },
+ {
+ "epoch": 55.05591961555265,
+ "grad_norm": 0.2306671440601349,
+ "learning_rate": 0.0006,
+ "loss": 3.524200916290283,
+ "step": 3964
+ },
+ {
+ "epoch": 55.0698995194408,
+ "grad_norm": 0.2307029813528061,
+ "learning_rate": 0.0006,
+ "loss": 3.509249687194824,
+ "step": 3965
+ },
+ {
+ "epoch": 55.083879423328966,
+ "grad_norm": 0.24812111258506775,
+ "learning_rate": 0.0006,
+ "loss": 3.5500473976135254,
+ "step": 3966
+ },
+ {
+ "epoch": 55.09785932721712,
+ "grad_norm": 0.28564271330833435,
+ "learning_rate": 0.0006,
+ "loss": 3.5178303718566895,
+ "step": 3967
+ },
+ {
+ "epoch": 55.111839231105286,
+ "grad_norm": 0.26979005336761475,
+ "learning_rate": 0.0006,
+ "loss": 3.5306806564331055,
+ "step": 3968
+ },
+ {
+ "epoch": 55.12581913499345,
+ "grad_norm": 0.24274848401546478,
+ "learning_rate": 0.0006,
+ "loss": 3.5758519172668457,
+ "step": 3969
+ },
+ {
+ "epoch": 55.139799038881605,
+ "grad_norm": 0.2560444474220276,
+ "learning_rate": 0.0006,
+ "loss": 3.5417323112487793,
+ "step": 3970
+ },
+ {
+ "epoch": 55.15377894276977,
+ "grad_norm": 0.2553671598434448,
+ "learning_rate": 0.0006,
+ "loss": 3.5258004665374756,
+ "step": 3971
+ },
+ {
+ "epoch": 55.16775884665793,
+ "grad_norm": 0.2170111984014511,
+ "learning_rate": 0.0006,
+ "loss": 3.514847755432129,
+ "step": 3972
+ },
+ {
+ "epoch": 55.18173875054609,
+ "grad_norm": 0.20854522287845612,
+ "learning_rate": 0.0006,
+ "loss": 3.5248336791992188,
+ "step": 3973
+ },
+ {
+ "epoch": 55.19571865443425,
+ "grad_norm": 0.21873287856578827,
+ "learning_rate": 0.0006,
+ "loss": 3.5468008518218994,
+ "step": 3974
+ },
+ {
+ "epoch": 55.20969855832241,
+ "grad_norm": 0.21194154024124146,
+ "learning_rate": 0.0006,
+ "loss": 3.568512439727783,
+ "step": 3975
+ },
+ {
+ "epoch": 55.22367846221057,
+ "grad_norm": 0.23534680902957916,
+ "learning_rate": 0.0006,
+ "loss": 3.5285420417785645,
+ "step": 3976
+ },
+ {
+ "epoch": 55.237658366098735,
+ "grad_norm": 0.22674795985221863,
+ "learning_rate": 0.0006,
+ "loss": 3.5399436950683594,
+ "step": 3977
+ },
+ {
+ "epoch": 55.25163826998689,
+ "grad_norm": 0.2248486578464508,
+ "learning_rate": 0.0006,
+ "loss": 3.5241036415100098,
+ "step": 3978
+ },
+ {
+ "epoch": 55.265618173875055,
+ "grad_norm": 0.241151362657547,
+ "learning_rate": 0.0006,
+ "loss": 3.547079086303711,
+ "step": 3979
+ },
+ {
+ "epoch": 55.27959807776322,
+ "grad_norm": 0.2783249318599701,
+ "learning_rate": 0.0006,
+ "loss": 3.5442988872528076,
+ "step": 3980
+ },
+ {
+ "epoch": 55.293577981651374,
+ "grad_norm": 0.2743528485298157,
+ "learning_rate": 0.0006,
+ "loss": 3.529618978500366,
+ "step": 3981
+ },
+ {
+ "epoch": 55.30755788553954,
+ "grad_norm": 0.23901724815368652,
+ "learning_rate": 0.0006,
+ "loss": 3.5379443168640137,
+ "step": 3982
+ },
+ {
+ "epoch": 55.3215377894277,
+ "grad_norm": 0.22758841514587402,
+ "learning_rate": 0.0006,
+ "loss": 3.5446794033050537,
+ "step": 3983
+ },
+ {
+ "epoch": 55.33551769331586,
+ "grad_norm": 0.22634629905223846,
+ "learning_rate": 0.0006,
+ "loss": 3.521944522857666,
+ "step": 3984
+ },
+ {
+ "epoch": 55.34949759720402,
+ "grad_norm": 0.23372086882591248,
+ "learning_rate": 0.0006,
+ "loss": 3.565023899078369,
+ "step": 3985
+ },
+ {
+ "epoch": 55.36347750109218,
+ "grad_norm": 0.24722231924533844,
+ "learning_rate": 0.0006,
+ "loss": 3.535661220550537,
+ "step": 3986
+ },
+ {
+ "epoch": 55.37745740498034,
+ "grad_norm": 0.21684594452381134,
+ "learning_rate": 0.0006,
+ "loss": 3.59070086479187,
+ "step": 3987
+ },
+ {
+ "epoch": 55.391437308868504,
+ "grad_norm": 0.186308816075325,
+ "learning_rate": 0.0006,
+ "loss": 3.5373833179473877,
+ "step": 3988
+ },
+ {
+ "epoch": 55.40541721275666,
+ "grad_norm": 0.2240687608718872,
+ "learning_rate": 0.0006,
+ "loss": 3.613295555114746,
+ "step": 3989
+ },
+ {
+ "epoch": 55.419397116644824,
+ "grad_norm": 0.25724494457244873,
+ "learning_rate": 0.0006,
+ "loss": 3.581005096435547,
+ "step": 3990
+ },
+ {
+ "epoch": 55.43337702053299,
+ "grad_norm": 0.24023419618606567,
+ "learning_rate": 0.0006,
+ "loss": 3.563951015472412,
+ "step": 3991
+ },
+ {
+ "epoch": 55.44735692442114,
+ "grad_norm": 0.21473391354084015,
+ "learning_rate": 0.0006,
+ "loss": 3.5444185733795166,
+ "step": 3992
+ },
+ {
+ "epoch": 55.46133682830931,
+ "grad_norm": 0.20466852188110352,
+ "learning_rate": 0.0006,
+ "loss": 3.5585713386535645,
+ "step": 3993
+ },
+ {
+ "epoch": 55.47531673219746,
+ "grad_norm": 0.20925740897655487,
+ "learning_rate": 0.0006,
+ "loss": 3.5656747817993164,
+ "step": 3994
+ },
+ {
+ "epoch": 55.489296636085626,
+ "grad_norm": 0.2309556007385254,
+ "learning_rate": 0.0006,
+ "loss": 3.5653891563415527,
+ "step": 3995
+ },
+ {
+ "epoch": 55.50327653997379,
+ "grad_norm": 0.24270877242088318,
+ "learning_rate": 0.0006,
+ "loss": 3.5275917053222656,
+ "step": 3996
+ },
+ {
+ "epoch": 55.517256443861946,
+ "grad_norm": 0.22749851644039154,
+ "learning_rate": 0.0006,
+ "loss": 3.5392730236053467,
+ "step": 3997
+ },
+ {
+ "epoch": 55.53123634775011,
+ "grad_norm": 0.21618196368217468,
+ "learning_rate": 0.0006,
+ "loss": 3.5581812858581543,
+ "step": 3998
+ },
+ {
+ "epoch": 55.54521625163827,
+ "grad_norm": 0.22232134640216827,
+ "learning_rate": 0.0006,
+ "loss": 3.5340118408203125,
+ "step": 3999
+ },
+ {
+ "epoch": 55.55919615552643,
+ "grad_norm": 0.24543501436710358,
+ "learning_rate": 0.0006,
+ "loss": 3.572153329849243,
+ "step": 4000
+ },
+ {
+ "epoch": 55.57317605941459,
+ "grad_norm": 0.2385311722755432,
+ "learning_rate": 0.0006,
+ "loss": 3.5366618633270264,
+ "step": 4001
+ },
+ {
+ "epoch": 55.58715596330275,
+ "grad_norm": 0.27977821230888367,
+ "learning_rate": 0.0006,
+ "loss": 3.5788960456848145,
+ "step": 4002
+ },
+ {
+ "epoch": 55.60113586719091,
+ "grad_norm": 0.2929013967514038,
+ "learning_rate": 0.0006,
+ "loss": 3.61065936088562,
+ "step": 4003
+ },
+ {
+ "epoch": 55.615115771079076,
+ "grad_norm": 0.27820730209350586,
+ "learning_rate": 0.0006,
+ "loss": 3.538694381713867,
+ "step": 4004
+ },
+ {
+ "epoch": 55.62909567496723,
+ "grad_norm": 0.24188996851444244,
+ "learning_rate": 0.0006,
+ "loss": 3.571709632873535,
+ "step": 4005
+ },
+ {
+ "epoch": 55.643075578855395,
+ "grad_norm": 0.21659360826015472,
+ "learning_rate": 0.0006,
+ "loss": 3.5431199073791504,
+ "step": 4006
+ },
+ {
+ "epoch": 55.65705548274356,
+ "grad_norm": 0.23356232047080994,
+ "learning_rate": 0.0006,
+ "loss": 3.5664005279541016,
+ "step": 4007
+ },
+ {
+ "epoch": 55.671035386631715,
+ "grad_norm": 0.21523472666740417,
+ "learning_rate": 0.0006,
+ "loss": 3.575711250305176,
+ "step": 4008
+ },
+ {
+ "epoch": 55.68501529051988,
+ "grad_norm": 0.22101815044879913,
+ "learning_rate": 0.0006,
+ "loss": 3.5843849182128906,
+ "step": 4009
+ },
+ {
+ "epoch": 55.69899519440804,
+ "grad_norm": 0.24153906106948853,
+ "learning_rate": 0.0006,
+ "loss": 3.5737733840942383,
+ "step": 4010
+ },
+ {
+ "epoch": 55.7129750982962,
+ "grad_norm": 0.2181350439786911,
+ "learning_rate": 0.0006,
+ "loss": 3.582613945007324,
+ "step": 4011
+ },
+ {
+ "epoch": 55.72695500218436,
+ "grad_norm": 0.21046742796897888,
+ "learning_rate": 0.0006,
+ "loss": 3.5380563735961914,
+ "step": 4012
+ },
+ {
+ "epoch": 55.74093490607252,
+ "grad_norm": 0.23996953666210175,
+ "learning_rate": 0.0006,
+ "loss": 3.57753849029541,
+ "step": 4013
+ },
+ {
+ "epoch": 55.75491480996068,
+ "grad_norm": 0.24543973803520203,
+ "learning_rate": 0.0006,
+ "loss": 3.578747272491455,
+ "step": 4014
+ },
+ {
+ "epoch": 55.768894713848844,
+ "grad_norm": 0.23597940802574158,
+ "learning_rate": 0.0006,
+ "loss": 3.5816988945007324,
+ "step": 4015
+ },
+ {
+ "epoch": 55.782874617737,
+ "grad_norm": 0.237411230802536,
+ "learning_rate": 0.0006,
+ "loss": 3.5659806728363037,
+ "step": 4016
+ },
+ {
+ "epoch": 55.796854521625164,
+ "grad_norm": 0.23947440087795258,
+ "learning_rate": 0.0006,
+ "loss": 3.545125961303711,
+ "step": 4017
+ },
+ {
+ "epoch": 55.81083442551333,
+ "grad_norm": 0.21562735736370087,
+ "learning_rate": 0.0006,
+ "loss": 3.5571303367614746,
+ "step": 4018
+ },
+ {
+ "epoch": 55.824814329401484,
+ "grad_norm": 0.21958434581756592,
+ "learning_rate": 0.0006,
+ "loss": 3.5243420600891113,
+ "step": 4019
+ },
+ {
+ "epoch": 55.83879423328965,
+ "grad_norm": 0.23856471478939056,
+ "learning_rate": 0.0006,
+ "loss": 3.586078643798828,
+ "step": 4020
+ },
+ {
+ "epoch": 55.8527741371778,
+ "grad_norm": 0.20703551173210144,
+ "learning_rate": 0.0006,
+ "loss": 3.5503201484680176,
+ "step": 4021
+ },
+ {
+ "epoch": 55.86675404106597,
+ "grad_norm": 0.21183231472969055,
+ "learning_rate": 0.0006,
+ "loss": 3.5873844623565674,
+ "step": 4022
+ },
+ {
+ "epoch": 55.88073394495413,
+ "grad_norm": 0.2129688709974289,
+ "learning_rate": 0.0006,
+ "loss": 3.582061290740967,
+ "step": 4023
+ },
+ {
+ "epoch": 55.89471384884229,
+ "grad_norm": 0.2122214287519455,
+ "learning_rate": 0.0006,
+ "loss": 3.547175884246826,
+ "step": 4024
+ },
+ {
+ "epoch": 55.90869375273045,
+ "grad_norm": 0.214874267578125,
+ "learning_rate": 0.0006,
+ "loss": 3.5322279930114746,
+ "step": 4025
+ },
+ {
+ "epoch": 55.92267365661861,
+ "grad_norm": 0.24104614555835724,
+ "learning_rate": 0.0006,
+ "loss": 3.5742111206054688,
+ "step": 4026
+ },
+ {
+ "epoch": 55.93665356050677,
+ "grad_norm": 0.2257685512304306,
+ "learning_rate": 0.0006,
+ "loss": 3.5686793327331543,
+ "step": 4027
+ },
+ {
+ "epoch": 55.95063346439493,
+ "grad_norm": 0.2170567363500595,
+ "learning_rate": 0.0006,
+ "loss": 3.5670571327209473,
+ "step": 4028
+ },
+ {
+ "epoch": 55.964613368283096,
+ "grad_norm": 0.2003280222415924,
+ "learning_rate": 0.0006,
+ "loss": 3.533921718597412,
+ "step": 4029
+ },
+ {
+ "epoch": 55.97859327217125,
+ "grad_norm": 0.21483278274536133,
+ "learning_rate": 0.0006,
+ "loss": 3.539720058441162,
+ "step": 4030
+ },
+ {
+ "epoch": 55.992573176059416,
+ "grad_norm": 0.26908108592033386,
+ "learning_rate": 0.0006,
+ "loss": 3.575934886932373,
+ "step": 4031
+ },
+ {
+ "epoch": 56.0,
+ "grad_norm": 0.30002665519714355,
+ "learning_rate": 0.0006,
+ "loss": 3.5702414512634277,
+ "step": 4032
+ },
+ {
+ "epoch": 56.0,
+ "eval_loss": 3.9834072589874268,
+ "eval_runtime": 46.2268,
+ "eval_samples_per_second": 52.826,
+ "eval_steps_per_second": 3.31,
+ "step": 4032
+ },
+ {
+ "epoch": 56.01397990388816,
+ "grad_norm": 0.25298207998275757,
+ "learning_rate": 0.0006,
+ "loss": 3.538151741027832,
+ "step": 4033
+ },
+ {
+ "epoch": 56.02795980777632,
+ "grad_norm": 0.2231103479862213,
+ "learning_rate": 0.0006,
+ "loss": 3.551466941833496,
+ "step": 4034
+ },
+ {
+ "epoch": 56.04193971166448,
+ "grad_norm": 0.2504221796989441,
+ "learning_rate": 0.0006,
+ "loss": 3.5361199378967285,
+ "step": 4035
+ },
+ {
+ "epoch": 56.05591961555265,
+ "grad_norm": 0.23491773009300232,
+ "learning_rate": 0.0006,
+ "loss": 3.549346446990967,
+ "step": 4036
+ },
+ {
+ "epoch": 56.0698995194408,
+ "grad_norm": 0.23068852722644806,
+ "learning_rate": 0.0006,
+ "loss": 3.5243453979492188,
+ "step": 4037
+ },
+ {
+ "epoch": 56.083879423328966,
+ "grad_norm": 0.22160249948501587,
+ "learning_rate": 0.0006,
+ "loss": 3.551191806793213,
+ "step": 4038
+ },
+ {
+ "epoch": 56.09785932721712,
+ "grad_norm": 0.2389034926891327,
+ "learning_rate": 0.0006,
+ "loss": 3.5358071327209473,
+ "step": 4039
+ },
+ {
+ "epoch": 56.111839231105286,
+ "grad_norm": 0.2552168071269989,
+ "learning_rate": 0.0006,
+ "loss": 3.564204692840576,
+ "step": 4040
+ },
+ {
+ "epoch": 56.12581913499345,
+ "grad_norm": 0.2802336812019348,
+ "learning_rate": 0.0006,
+ "loss": 3.540386438369751,
+ "step": 4041
+ },
+ {
+ "epoch": 56.139799038881605,
+ "grad_norm": 0.2564619779586792,
+ "learning_rate": 0.0006,
+ "loss": 3.544264554977417,
+ "step": 4042
+ },
+ {
+ "epoch": 56.15377894276977,
+ "grad_norm": 0.24272632598876953,
+ "learning_rate": 0.0006,
+ "loss": 3.509497880935669,
+ "step": 4043
+ },
+ {
+ "epoch": 56.16775884665793,
+ "grad_norm": 0.23981881141662598,
+ "learning_rate": 0.0006,
+ "loss": 3.551090955734253,
+ "step": 4044
+ },
+ {
+ "epoch": 56.18173875054609,
+ "grad_norm": 0.22418269515037537,
+ "learning_rate": 0.0006,
+ "loss": 3.558614492416382,
+ "step": 4045
+ },
+ {
+ "epoch": 56.19571865443425,
+ "grad_norm": 0.21792462468147278,
+ "learning_rate": 0.0006,
+ "loss": 3.540558338165283,
+ "step": 4046
+ },
+ {
+ "epoch": 56.20969855832241,
+ "grad_norm": 0.21248634159564972,
+ "learning_rate": 0.0006,
+ "loss": 3.5273942947387695,
+ "step": 4047
+ },
+ {
+ "epoch": 56.22367846221057,
+ "grad_norm": 0.1863572895526886,
+ "learning_rate": 0.0006,
+ "loss": 3.555302143096924,
+ "step": 4048
+ },
+ {
+ "epoch": 56.237658366098735,
+ "grad_norm": 0.21031822264194489,
+ "learning_rate": 0.0006,
+ "loss": 3.547515630722046,
+ "step": 4049
+ },
+ {
+ "epoch": 56.25163826998689,
+ "grad_norm": 0.19754044711589813,
+ "learning_rate": 0.0006,
+ "loss": 3.5476508140563965,
+ "step": 4050
+ },
+ {
+ "epoch": 56.265618173875055,
+ "grad_norm": 0.19707852602005005,
+ "learning_rate": 0.0006,
+ "loss": 3.506730794906616,
+ "step": 4051
+ },
+ {
+ "epoch": 56.27959807776322,
+ "grad_norm": 0.21011239290237427,
+ "learning_rate": 0.0006,
+ "loss": 3.51116681098938,
+ "step": 4052
+ },
+ {
+ "epoch": 56.293577981651374,
+ "grad_norm": 0.20281212031841278,
+ "learning_rate": 0.0006,
+ "loss": 3.549513816833496,
+ "step": 4053
+ },
+ {
+ "epoch": 56.30755788553954,
+ "grad_norm": 0.19198910892009735,
+ "learning_rate": 0.0006,
+ "loss": 3.5299534797668457,
+ "step": 4054
+ },
+ {
+ "epoch": 56.3215377894277,
+ "grad_norm": 0.1861368715763092,
+ "learning_rate": 0.0006,
+ "loss": 3.513909339904785,
+ "step": 4055
+ },
+ {
+ "epoch": 56.33551769331586,
+ "grad_norm": 0.20779506862163544,
+ "learning_rate": 0.0006,
+ "loss": 3.5528712272644043,
+ "step": 4056
+ },
+ {
+ "epoch": 56.34949759720402,
+ "grad_norm": 0.2229684591293335,
+ "learning_rate": 0.0006,
+ "loss": 3.518359661102295,
+ "step": 4057
+ },
+ {
+ "epoch": 56.36347750109218,
+ "grad_norm": 0.22998179495334625,
+ "learning_rate": 0.0006,
+ "loss": 3.5004091262817383,
+ "step": 4058
+ },
+ {
+ "epoch": 56.37745740498034,
+ "grad_norm": 0.2176709622144699,
+ "learning_rate": 0.0006,
+ "loss": 3.550295829772949,
+ "step": 4059
+ },
+ {
+ "epoch": 56.391437308868504,
+ "grad_norm": 0.19512872397899628,
+ "learning_rate": 0.0006,
+ "loss": 3.5305161476135254,
+ "step": 4060
+ },
+ {
+ "epoch": 56.40541721275666,
+ "grad_norm": 0.23127448558807373,
+ "learning_rate": 0.0006,
+ "loss": 3.5341286659240723,
+ "step": 4061
+ },
+ {
+ "epoch": 56.419397116644824,
+ "grad_norm": 0.20905959606170654,
+ "learning_rate": 0.0006,
+ "loss": 3.553912401199341,
+ "step": 4062
+ },
+ {
+ "epoch": 56.43337702053299,
+ "grad_norm": 0.23370878398418427,
+ "learning_rate": 0.0006,
+ "loss": 3.5700249671936035,
+ "step": 4063
+ },
+ {
+ "epoch": 56.44735692442114,
+ "grad_norm": 0.233205646276474,
+ "learning_rate": 0.0006,
+ "loss": 3.5184097290039062,
+ "step": 4064
+ },
+ {
+ "epoch": 56.46133682830931,
+ "grad_norm": 0.23928777873516083,
+ "learning_rate": 0.0006,
+ "loss": 3.535874366760254,
+ "step": 4065
+ },
+ {
+ "epoch": 56.47531673219746,
+ "grad_norm": 0.24950815737247467,
+ "learning_rate": 0.0006,
+ "loss": 3.508136749267578,
+ "step": 4066
+ },
+ {
+ "epoch": 56.489296636085626,
+ "grad_norm": 0.24821820855140686,
+ "learning_rate": 0.0006,
+ "loss": 3.5421361923217773,
+ "step": 4067
+ },
+ {
+ "epoch": 56.50327653997379,
+ "grad_norm": 0.2252482771873474,
+ "learning_rate": 0.0006,
+ "loss": 3.5516514778137207,
+ "step": 4068
+ },
+ {
+ "epoch": 56.517256443861946,
+ "grad_norm": 0.2238101363182068,
+ "learning_rate": 0.0006,
+ "loss": 3.567741632461548,
+ "step": 4069
+ },
+ {
+ "epoch": 56.53123634775011,
+ "grad_norm": 0.20759683847427368,
+ "learning_rate": 0.0006,
+ "loss": 3.544705390930176,
+ "step": 4070
+ },
+ {
+ "epoch": 56.54521625163827,
+ "grad_norm": 0.21918460726737976,
+ "learning_rate": 0.0006,
+ "loss": 3.5725836753845215,
+ "step": 4071
+ },
+ {
+ "epoch": 56.55919615552643,
+ "grad_norm": 0.22640042006969452,
+ "learning_rate": 0.0006,
+ "loss": 3.5447535514831543,
+ "step": 4072
+ },
+ {
+ "epoch": 56.57317605941459,
+ "grad_norm": 0.23130203783512115,
+ "learning_rate": 0.0006,
+ "loss": 3.5620853900909424,
+ "step": 4073
+ },
+ {
+ "epoch": 56.58715596330275,
+ "grad_norm": 0.2215641736984253,
+ "learning_rate": 0.0006,
+ "loss": 3.5416438579559326,
+ "step": 4074
+ },
+ {
+ "epoch": 56.60113586719091,
+ "grad_norm": 0.20106497406959534,
+ "learning_rate": 0.0006,
+ "loss": 3.537386178970337,
+ "step": 4075
+ },
+ {
+ "epoch": 56.615115771079076,
+ "grad_norm": 0.2045976221561432,
+ "learning_rate": 0.0006,
+ "loss": 3.555032730102539,
+ "step": 4076
+ },
+ {
+ "epoch": 56.62909567496723,
+ "grad_norm": 0.20097647607326508,
+ "learning_rate": 0.0006,
+ "loss": 3.559572458267212,
+ "step": 4077
+ },
+ {
+ "epoch": 56.643075578855395,
+ "grad_norm": 0.24158388376235962,
+ "learning_rate": 0.0006,
+ "loss": 3.56520938873291,
+ "step": 4078
+ },
+ {
+ "epoch": 56.65705548274356,
+ "grad_norm": 0.2687791585922241,
+ "learning_rate": 0.0006,
+ "loss": 3.545924663543701,
+ "step": 4079
+ },
+ {
+ "epoch": 56.671035386631715,
+ "grad_norm": 0.22466111183166504,
+ "learning_rate": 0.0006,
+ "loss": 3.5556845664978027,
+ "step": 4080
+ },
+ {
+ "epoch": 56.68501529051988,
+ "grad_norm": 0.2177814394235611,
+ "learning_rate": 0.0006,
+ "loss": 3.5799131393432617,
+ "step": 4081
+ },
+ {
+ "epoch": 56.69899519440804,
+ "grad_norm": 0.2700476050376892,
+ "learning_rate": 0.0006,
+ "loss": 3.5859055519104004,
+ "step": 4082
+ },
+ {
+ "epoch": 56.7129750982962,
+ "grad_norm": 0.28230178356170654,
+ "learning_rate": 0.0006,
+ "loss": 3.5733890533447266,
+ "step": 4083
+ },
+ {
+ "epoch": 56.72695500218436,
+ "grad_norm": 0.29298731684684753,
+ "learning_rate": 0.0006,
+ "loss": 3.556626319885254,
+ "step": 4084
+ },
+ {
+ "epoch": 56.74093490607252,
+ "grad_norm": 0.2818183898925781,
+ "learning_rate": 0.0006,
+ "loss": 3.5884718894958496,
+ "step": 4085
+ },
+ {
+ "epoch": 56.75491480996068,
+ "grad_norm": 0.24008697271347046,
+ "learning_rate": 0.0006,
+ "loss": 3.5464529991149902,
+ "step": 4086
+ },
+ {
+ "epoch": 56.768894713848844,
+ "grad_norm": 0.23406296968460083,
+ "learning_rate": 0.0006,
+ "loss": 3.5622801780700684,
+ "step": 4087
+ },
+ {
+ "epoch": 56.782874617737,
+ "grad_norm": 0.26089322566986084,
+ "learning_rate": 0.0006,
+ "loss": 3.5775020122528076,
+ "step": 4088
+ },
+ {
+ "epoch": 56.796854521625164,
+ "grad_norm": 0.2576654851436615,
+ "learning_rate": 0.0006,
+ "loss": 3.5543627738952637,
+ "step": 4089
+ },
+ {
+ "epoch": 56.81083442551333,
+ "grad_norm": 0.26576393842697144,
+ "learning_rate": 0.0006,
+ "loss": 3.546170711517334,
+ "step": 4090
+ },
+ {
+ "epoch": 56.824814329401484,
+ "grad_norm": 0.22380715608596802,
+ "learning_rate": 0.0006,
+ "loss": 3.5437729358673096,
+ "step": 4091
+ },
+ {
+ "epoch": 56.83879423328965,
+ "grad_norm": 0.20786714553833008,
+ "learning_rate": 0.0006,
+ "loss": 3.5951266288757324,
+ "step": 4092
+ },
+ {
+ "epoch": 56.8527741371778,
+ "grad_norm": 0.23177042603492737,
+ "learning_rate": 0.0006,
+ "loss": 3.549454689025879,
+ "step": 4093
+ },
+ {
+ "epoch": 56.86675404106597,
+ "grad_norm": 0.21466009318828583,
+ "learning_rate": 0.0006,
+ "loss": 3.5611233711242676,
+ "step": 4094
+ },
+ {
+ "epoch": 56.88073394495413,
+ "grad_norm": 0.20928414165973663,
+ "learning_rate": 0.0006,
+ "loss": 3.5550684928894043,
+ "step": 4095
+ },
+ {
+ "epoch": 56.89471384884229,
+ "grad_norm": 0.20727156102657318,
+ "learning_rate": 0.0006,
+ "loss": 3.552496910095215,
+ "step": 4096
+ },
+ {
+ "epoch": 56.90869375273045,
+ "grad_norm": 0.21370401978492737,
+ "learning_rate": 0.0006,
+ "loss": 3.5763869285583496,
+ "step": 4097
+ },
+ {
+ "epoch": 56.92267365661861,
+ "grad_norm": 0.22490337491035461,
+ "learning_rate": 0.0006,
+ "loss": 3.538986921310425,
+ "step": 4098
+ },
+ {
+ "epoch": 56.93665356050677,
+ "grad_norm": 0.23320236802101135,
+ "learning_rate": 0.0006,
+ "loss": 3.5514214038848877,
+ "step": 4099
+ },
+ {
+ "epoch": 56.95063346439493,
+ "grad_norm": 0.22050419449806213,
+ "learning_rate": 0.0006,
+ "loss": 3.5486960411071777,
+ "step": 4100
+ },
+ {
+ "epoch": 56.964613368283096,
+ "grad_norm": 0.2241443395614624,
+ "learning_rate": 0.0006,
+ "loss": 3.5858001708984375,
+ "step": 4101
+ },
+ {
+ "epoch": 56.97859327217125,
+ "grad_norm": 0.24904389679431915,
+ "learning_rate": 0.0006,
+ "loss": 3.586472511291504,
+ "step": 4102
+ },
+ {
+ "epoch": 56.992573176059416,
+ "grad_norm": 0.2333211451768875,
+ "learning_rate": 0.0006,
+ "loss": 3.5463132858276367,
+ "step": 4103
+ },
+ {
+ "epoch": 57.0,
+ "grad_norm": 0.24142783880233765,
+ "learning_rate": 0.0006,
+ "loss": 3.5642542839050293,
+ "step": 4104
+ },
+ {
+ "epoch": 57.0,
+ "eval_loss": 3.973973035812378,
+ "eval_runtime": 46.2906,
+ "eval_samples_per_second": 52.754,
+ "eval_steps_per_second": 3.305,
+ "step": 4104
+ },
+ {
+ "epoch": 57.01397990388816,
+ "grad_norm": 0.21989624202251434,
+ "learning_rate": 0.0006,
+ "loss": 3.539435863494873,
+ "step": 4105
+ },
+ {
+ "epoch": 57.02795980777632,
+ "grad_norm": 0.24061834812164307,
+ "learning_rate": 0.0006,
+ "loss": 3.5251410007476807,
+ "step": 4106
+ },
+ {
+ "epoch": 57.04193971166448,
+ "grad_norm": 0.2483278512954712,
+ "learning_rate": 0.0006,
+ "loss": 3.5104010105133057,
+ "step": 4107
+ },
+ {
+ "epoch": 57.05591961555265,
+ "grad_norm": 0.2717698812484741,
+ "learning_rate": 0.0006,
+ "loss": 3.5134170055389404,
+ "step": 4108
+ },
+ {
+ "epoch": 57.0698995194408,
+ "grad_norm": 0.27335646748542786,
+ "learning_rate": 0.0006,
+ "loss": 3.53574275970459,
+ "step": 4109
+ },
+ {
+ "epoch": 57.083879423328966,
+ "grad_norm": 0.2423052042722702,
+ "learning_rate": 0.0006,
+ "loss": 3.4960169792175293,
+ "step": 4110
+ },
+ {
+ "epoch": 57.09785932721712,
+ "grad_norm": 0.2241092175245285,
+ "learning_rate": 0.0006,
+ "loss": 3.5409107208251953,
+ "step": 4111
+ },
+ {
+ "epoch": 57.111839231105286,
+ "grad_norm": 0.23098452389240265,
+ "learning_rate": 0.0006,
+ "loss": 3.5326709747314453,
+ "step": 4112
+ },
+ {
+ "epoch": 57.12581913499345,
+ "grad_norm": 0.2500186562538147,
+ "learning_rate": 0.0006,
+ "loss": 3.509953498840332,
+ "step": 4113
+ },
+ {
+ "epoch": 57.139799038881605,
+ "grad_norm": 0.26994550228118896,
+ "learning_rate": 0.0006,
+ "loss": 3.560410499572754,
+ "step": 4114
+ },
+ {
+ "epoch": 57.15377894276977,
+ "grad_norm": 0.24950402975082397,
+ "learning_rate": 0.0006,
+ "loss": 3.517613649368286,
+ "step": 4115
+ },
+ {
+ "epoch": 57.16775884665793,
+ "grad_norm": 0.21742430329322815,
+ "learning_rate": 0.0006,
+ "loss": 3.531256675720215,
+ "step": 4116
+ },
+ {
+ "epoch": 57.18173875054609,
+ "grad_norm": 0.29069146513938904,
+ "learning_rate": 0.0006,
+ "loss": 3.5283756256103516,
+ "step": 4117
+ },
+ {
+ "epoch": 57.19571865443425,
+ "grad_norm": 0.2901996970176697,
+ "learning_rate": 0.0006,
+ "loss": 3.5460801124572754,
+ "step": 4118
+ },
+ {
+ "epoch": 57.20969855832241,
+ "grad_norm": 0.2534845471382141,
+ "learning_rate": 0.0006,
+ "loss": 3.515536308288574,
+ "step": 4119
+ },
+ {
+ "epoch": 57.22367846221057,
+ "grad_norm": 0.2352340817451477,
+ "learning_rate": 0.0006,
+ "loss": 3.5281717777252197,
+ "step": 4120
+ },
+ {
+ "epoch": 57.237658366098735,
+ "grad_norm": 0.2263645976781845,
+ "learning_rate": 0.0006,
+ "loss": 3.5629191398620605,
+ "step": 4121
+ },
+ {
+ "epoch": 57.25163826998689,
+ "grad_norm": 0.21413370966911316,
+ "learning_rate": 0.0006,
+ "loss": 3.5342142581939697,
+ "step": 4122
+ },
+ {
+ "epoch": 57.265618173875055,
+ "grad_norm": 0.1969698667526245,
+ "learning_rate": 0.0006,
+ "loss": 3.5467586517333984,
+ "step": 4123
+ },
+ {
+ "epoch": 57.27959807776322,
+ "grad_norm": 0.2106606364250183,
+ "learning_rate": 0.0006,
+ "loss": 3.5409536361694336,
+ "step": 4124
+ },
+ {
+ "epoch": 57.293577981651374,
+ "grad_norm": 0.21824438869953156,
+ "learning_rate": 0.0006,
+ "loss": 3.5246548652648926,
+ "step": 4125
+ },
+ {
+ "epoch": 57.30755788553954,
+ "grad_norm": 0.2147768884897232,
+ "learning_rate": 0.0006,
+ "loss": 3.5411794185638428,
+ "step": 4126
+ },
+ {
+ "epoch": 57.3215377894277,
+ "grad_norm": 0.21352852880954742,
+ "learning_rate": 0.0006,
+ "loss": 3.569387197494507,
+ "step": 4127
+ },
+ {
+ "epoch": 57.33551769331586,
+ "grad_norm": 0.20957978069782257,
+ "learning_rate": 0.0006,
+ "loss": 3.522695779800415,
+ "step": 4128
+ },
+ {
+ "epoch": 57.34949759720402,
+ "grad_norm": 0.2013026475906372,
+ "learning_rate": 0.0006,
+ "loss": 3.5485787391662598,
+ "step": 4129
+ },
+ {
+ "epoch": 57.36347750109218,
+ "grad_norm": 0.2260376214981079,
+ "learning_rate": 0.0006,
+ "loss": 3.547607421875,
+ "step": 4130
+ },
+ {
+ "epoch": 57.37745740498034,
+ "grad_norm": 0.22991685569286346,
+ "learning_rate": 0.0006,
+ "loss": 3.5464730262756348,
+ "step": 4131
+ },
+ {
+ "epoch": 57.391437308868504,
+ "grad_norm": 0.19638051092624664,
+ "learning_rate": 0.0006,
+ "loss": 3.54355525970459,
+ "step": 4132
+ },
+ {
+ "epoch": 57.40541721275666,
+ "grad_norm": 0.19450774788856506,
+ "learning_rate": 0.0006,
+ "loss": 3.5490050315856934,
+ "step": 4133
+ },
+ {
+ "epoch": 57.419397116644824,
+ "grad_norm": 0.21798551082611084,
+ "learning_rate": 0.0006,
+ "loss": 3.56355619430542,
+ "step": 4134
+ },
+ {
+ "epoch": 57.43337702053299,
+ "grad_norm": 0.2129846215248108,
+ "learning_rate": 0.0006,
+ "loss": 3.5607380867004395,
+ "step": 4135
+ },
+ {
+ "epoch": 57.44735692442114,
+ "grad_norm": 0.20589227974414825,
+ "learning_rate": 0.0006,
+ "loss": 3.523768663406372,
+ "step": 4136
+ },
+ {
+ "epoch": 57.46133682830931,
+ "grad_norm": 0.21841686964035034,
+ "learning_rate": 0.0006,
+ "loss": 3.5187885761260986,
+ "step": 4137
+ },
+ {
+ "epoch": 57.47531673219746,
+ "grad_norm": 0.2118791788816452,
+ "learning_rate": 0.0006,
+ "loss": 3.5271782875061035,
+ "step": 4138
+ },
+ {
+ "epoch": 57.489296636085626,
+ "grad_norm": 0.21905459463596344,
+ "learning_rate": 0.0006,
+ "loss": 3.546968460083008,
+ "step": 4139
+ },
+ {
+ "epoch": 57.50327653997379,
+ "grad_norm": 0.23899133503437042,
+ "learning_rate": 0.0006,
+ "loss": 3.5156688690185547,
+ "step": 4140
+ },
+ {
+ "epoch": 57.517256443861946,
+ "grad_norm": 0.23873545229434967,
+ "learning_rate": 0.0006,
+ "loss": 3.5271472930908203,
+ "step": 4141
+ },
+ {
+ "epoch": 57.53123634775011,
+ "grad_norm": 0.20691858232021332,
+ "learning_rate": 0.0006,
+ "loss": 3.552854537963867,
+ "step": 4142
+ },
+ {
+ "epoch": 57.54521625163827,
+ "grad_norm": 0.21962891519069672,
+ "learning_rate": 0.0006,
+ "loss": 3.5258498191833496,
+ "step": 4143
+ },
+ {
+ "epoch": 57.55919615552643,
+ "grad_norm": 0.21762165427207947,
+ "learning_rate": 0.0006,
+ "loss": 3.566831588745117,
+ "step": 4144
+ },
+ {
+ "epoch": 57.57317605941459,
+ "grad_norm": 0.19603654742240906,
+ "learning_rate": 0.0006,
+ "loss": 3.5393714904785156,
+ "step": 4145
+ },
+ {
+ "epoch": 57.58715596330275,
+ "grad_norm": 0.20347437262535095,
+ "learning_rate": 0.0006,
+ "loss": 3.538390874862671,
+ "step": 4146
+ },
+ {
+ "epoch": 57.60113586719091,
+ "grad_norm": 0.2179173231124878,
+ "learning_rate": 0.0006,
+ "loss": 3.566631317138672,
+ "step": 4147
+ },
+ {
+ "epoch": 57.615115771079076,
+ "grad_norm": 0.19678309559822083,
+ "learning_rate": 0.0006,
+ "loss": 3.5659375190734863,
+ "step": 4148
+ },
+ {
+ "epoch": 57.62909567496723,
+ "grad_norm": 0.20221677422523499,
+ "learning_rate": 0.0006,
+ "loss": 3.5679430961608887,
+ "step": 4149
+ },
+ {
+ "epoch": 57.643075578855395,
+ "grad_norm": 0.21337579190731049,
+ "learning_rate": 0.0006,
+ "loss": 3.5330681800842285,
+ "step": 4150
+ },
+ {
+ "epoch": 57.65705548274356,
+ "grad_norm": 0.2646789848804474,
+ "learning_rate": 0.0006,
+ "loss": 3.5216803550720215,
+ "step": 4151
+ },
+ {
+ "epoch": 57.671035386631715,
+ "grad_norm": 0.304950088262558,
+ "learning_rate": 0.0006,
+ "loss": 3.5570156574249268,
+ "step": 4152
+ },
+ {
+ "epoch": 57.68501529051988,
+ "grad_norm": 0.2739402651786804,
+ "learning_rate": 0.0006,
+ "loss": 3.5844314098358154,
+ "step": 4153
+ },
+ {
+ "epoch": 57.69899519440804,
+ "grad_norm": 0.19060099124908447,
+ "learning_rate": 0.0006,
+ "loss": 3.571052074432373,
+ "step": 4154
+ },
+ {
+ "epoch": 57.7129750982962,
+ "grad_norm": 0.2941007614135742,
+ "learning_rate": 0.0006,
+ "loss": 3.543100357055664,
+ "step": 4155
+ },
+ {
+ "epoch": 57.72695500218436,
+ "grad_norm": 0.34624332189559937,
+ "learning_rate": 0.0006,
+ "loss": 3.564270496368408,
+ "step": 4156
+ },
+ {
+ "epoch": 57.74093490607252,
+ "grad_norm": 0.30635201930999756,
+ "learning_rate": 0.0006,
+ "loss": 3.5390584468841553,
+ "step": 4157
+ },
+ {
+ "epoch": 57.75491480996068,
+ "grad_norm": 0.2204878330230713,
+ "learning_rate": 0.0006,
+ "loss": 3.5427281856536865,
+ "step": 4158
+ },
+ {
+ "epoch": 57.768894713848844,
+ "grad_norm": 0.20659378170967102,
+ "learning_rate": 0.0006,
+ "loss": 3.528977155685425,
+ "step": 4159
+ },
+ {
+ "epoch": 57.782874617737,
+ "grad_norm": 0.2281361073255539,
+ "learning_rate": 0.0006,
+ "loss": 3.5531792640686035,
+ "step": 4160
+ },
+ {
+ "epoch": 57.796854521625164,
+ "grad_norm": 0.22478239238262177,
+ "learning_rate": 0.0006,
+ "loss": 3.566704750061035,
+ "step": 4161
+ },
+ {
+ "epoch": 57.81083442551333,
+ "grad_norm": 0.20797103643417358,
+ "learning_rate": 0.0006,
+ "loss": 3.5684943199157715,
+ "step": 4162
+ },
+ {
+ "epoch": 57.824814329401484,
+ "grad_norm": 0.2108374983072281,
+ "learning_rate": 0.0006,
+ "loss": 3.5475950241088867,
+ "step": 4163
+ },
+ {
+ "epoch": 57.83879423328965,
+ "grad_norm": 0.2268034815788269,
+ "learning_rate": 0.0006,
+ "loss": 3.5456833839416504,
+ "step": 4164
+ },
+ {
+ "epoch": 57.8527741371778,
+ "grad_norm": 0.2131519913673401,
+ "learning_rate": 0.0006,
+ "loss": 3.5316243171691895,
+ "step": 4165
+ },
+ {
+ "epoch": 57.86675404106597,
+ "grad_norm": 0.20163841545581818,
+ "learning_rate": 0.0006,
+ "loss": 3.5320897102355957,
+ "step": 4166
+ },
+ {
+ "epoch": 57.88073394495413,
+ "grad_norm": 0.20961757004261017,
+ "learning_rate": 0.0006,
+ "loss": 3.5800695419311523,
+ "step": 4167
+ },
+ {
+ "epoch": 57.89471384884229,
+ "grad_norm": 0.2061416506767273,
+ "learning_rate": 0.0006,
+ "loss": 3.544395923614502,
+ "step": 4168
+ },
+ {
+ "epoch": 57.90869375273045,
+ "grad_norm": 0.20306318998336792,
+ "learning_rate": 0.0006,
+ "loss": 3.554436683654785,
+ "step": 4169
+ },
+ {
+ "epoch": 57.92267365661861,
+ "grad_norm": 0.20685963332653046,
+ "learning_rate": 0.0006,
+ "loss": 3.5614635944366455,
+ "step": 4170
+ },
+ {
+ "epoch": 57.93665356050677,
+ "grad_norm": 0.19938082993030548,
+ "learning_rate": 0.0006,
+ "loss": 3.578136920928955,
+ "step": 4171
+ },
+ {
+ "epoch": 57.95063346439493,
+ "grad_norm": 0.2150411158800125,
+ "learning_rate": 0.0006,
+ "loss": 3.5754270553588867,
+ "step": 4172
+ },
+ {
+ "epoch": 57.964613368283096,
+ "grad_norm": 0.23399604856967926,
+ "learning_rate": 0.0006,
+ "loss": 3.5553112030029297,
+ "step": 4173
+ },
+ {
+ "epoch": 57.97859327217125,
+ "grad_norm": 0.2496841847896576,
+ "learning_rate": 0.0006,
+ "loss": 3.5509696006774902,
+ "step": 4174
+ },
+ {
+ "epoch": 57.992573176059416,
+ "grad_norm": 0.23759980499744415,
+ "learning_rate": 0.0006,
+ "loss": 3.5806684494018555,
+ "step": 4175
+ },
+ {
+ "epoch": 58.0,
+ "grad_norm": 0.2494540512561798,
+ "learning_rate": 0.0006,
+ "loss": 3.541708469390869,
+ "step": 4176
+ },
+ {
+ "epoch": 58.0,
+ "eval_loss": 3.970658779144287,
+ "eval_runtime": 46.0262,
+ "eval_samples_per_second": 53.057,
+ "eval_steps_per_second": 3.324,
+ "step": 4176
+ },
+ {
+ "epoch": 58.01397990388816,
+ "grad_norm": 0.2053643763065338,
+ "learning_rate": 0.0006,
+ "loss": 3.5264205932617188,
+ "step": 4177
+ },
+ {
+ "epoch": 58.02795980777632,
+ "grad_norm": 0.20680591464042664,
+ "learning_rate": 0.0006,
+ "loss": 3.495445728302002,
+ "step": 4178
+ },
+ {
+ "epoch": 58.04193971166448,
+ "grad_norm": 0.22180874645709991,
+ "learning_rate": 0.0006,
+ "loss": 3.546283483505249,
+ "step": 4179
+ },
+ {
+ "epoch": 58.05591961555265,
+ "grad_norm": 0.24255339801311493,
+ "learning_rate": 0.0006,
+ "loss": 3.50639271736145,
+ "step": 4180
+ },
+ {
+ "epoch": 58.0698995194408,
+ "grad_norm": 0.2747100591659546,
+ "learning_rate": 0.0006,
+ "loss": 3.514240026473999,
+ "step": 4181
+ },
+ {
+ "epoch": 58.083879423328966,
+ "grad_norm": 0.27960914373397827,
+ "learning_rate": 0.0006,
+ "loss": 3.5614311695098877,
+ "step": 4182
+ },
+ {
+ "epoch": 58.09785932721712,
+ "grad_norm": 0.25837743282318115,
+ "learning_rate": 0.0006,
+ "loss": 3.533560276031494,
+ "step": 4183
+ },
+ {
+ "epoch": 58.111839231105286,
+ "grad_norm": 0.24635657668113708,
+ "learning_rate": 0.0006,
+ "loss": 3.4867968559265137,
+ "step": 4184
+ },
+ {
+ "epoch": 58.12581913499345,
+ "grad_norm": 0.31520891189575195,
+ "learning_rate": 0.0006,
+ "loss": 3.5131611824035645,
+ "step": 4185
+ },
+ {
+ "epoch": 58.139799038881605,
+ "grad_norm": 0.36781513690948486,
+ "learning_rate": 0.0006,
+ "loss": 3.5149288177490234,
+ "step": 4186
+ },
+ {
+ "epoch": 58.15377894276977,
+ "grad_norm": 0.32433459162712097,
+ "learning_rate": 0.0006,
+ "loss": 3.5485405921936035,
+ "step": 4187
+ },
+ {
+ "epoch": 58.16775884665793,
+ "grad_norm": 0.2532205283641815,
+ "learning_rate": 0.0006,
+ "loss": 3.4994513988494873,
+ "step": 4188
+ },
+ {
+ "epoch": 58.18173875054609,
+ "grad_norm": 0.29780858755111694,
+ "learning_rate": 0.0006,
+ "loss": 3.496187448501587,
+ "step": 4189
+ },
+ {
+ "epoch": 58.19571865443425,
+ "grad_norm": 0.2804715037345886,
+ "learning_rate": 0.0006,
+ "loss": 3.5210375785827637,
+ "step": 4190
+ },
+ {
+ "epoch": 58.20969855832241,
+ "grad_norm": 0.2186010330915451,
+ "learning_rate": 0.0006,
+ "loss": 3.5139119625091553,
+ "step": 4191
+ },
+ {
+ "epoch": 58.22367846221057,
+ "grad_norm": 0.21566270291805267,
+ "learning_rate": 0.0006,
+ "loss": 3.5011606216430664,
+ "step": 4192
+ },
+ {
+ "epoch": 58.237658366098735,
+ "grad_norm": 0.21042031049728394,
+ "learning_rate": 0.0006,
+ "loss": 3.52295184135437,
+ "step": 4193
+ },
+ {
+ "epoch": 58.25163826998689,
+ "grad_norm": 0.20117411017417908,
+ "learning_rate": 0.0006,
+ "loss": 3.54593563079834,
+ "step": 4194
+ },
+ {
+ "epoch": 58.265618173875055,
+ "grad_norm": 0.21747945249080658,
+ "learning_rate": 0.0006,
+ "loss": 3.5341522693634033,
+ "step": 4195
+ },
+ {
+ "epoch": 58.27959807776322,
+ "grad_norm": 0.266024649143219,
+ "learning_rate": 0.0006,
+ "loss": 3.536393165588379,
+ "step": 4196
+ },
+ {
+ "epoch": 58.293577981651374,
+ "grad_norm": 0.2577304542064667,
+ "learning_rate": 0.0006,
+ "loss": 3.557468891143799,
+ "step": 4197
+ },
+ {
+ "epoch": 58.30755788553954,
+ "grad_norm": 0.22055941820144653,
+ "learning_rate": 0.0006,
+ "loss": 3.5307652950286865,
+ "step": 4198
+ },
+ {
+ "epoch": 58.3215377894277,
+ "grad_norm": 0.22490856051445007,
+ "learning_rate": 0.0006,
+ "loss": 3.506265163421631,
+ "step": 4199
+ },
+ {
+ "epoch": 58.33551769331586,
+ "grad_norm": 0.23600345849990845,
+ "learning_rate": 0.0006,
+ "loss": 3.523414134979248,
+ "step": 4200
+ },
+ {
+ "epoch": 58.34949759720402,
+ "grad_norm": 0.24872642755508423,
+ "learning_rate": 0.0006,
+ "loss": 3.561278820037842,
+ "step": 4201
+ },
+ {
+ "epoch": 58.36347750109218,
+ "grad_norm": 0.2702998220920563,
+ "learning_rate": 0.0006,
+ "loss": 3.573561191558838,
+ "step": 4202
+ },
+ {
+ "epoch": 58.37745740498034,
+ "grad_norm": 0.2532080411911011,
+ "learning_rate": 0.0006,
+ "loss": 3.5476837158203125,
+ "step": 4203
+ },
+ {
+ "epoch": 58.391437308868504,
+ "grad_norm": 0.23641079664230347,
+ "learning_rate": 0.0006,
+ "loss": 3.5464468002319336,
+ "step": 4204
+ },
+ {
+ "epoch": 58.40541721275666,
+ "grad_norm": 0.29965463280677795,
+ "learning_rate": 0.0006,
+ "loss": 3.560166835784912,
+ "step": 4205
+ },
+ {
+ "epoch": 58.419397116644824,
+ "grad_norm": 0.2778814136981964,
+ "learning_rate": 0.0006,
+ "loss": 3.5363056659698486,
+ "step": 4206
+ },
+ {
+ "epoch": 58.43337702053299,
+ "grad_norm": 0.23625248670578003,
+ "learning_rate": 0.0006,
+ "loss": 3.5575437545776367,
+ "step": 4207
+ },
+ {
+ "epoch": 58.44735692442114,
+ "grad_norm": 0.2165721356868744,
+ "learning_rate": 0.0006,
+ "loss": 3.541654109954834,
+ "step": 4208
+ },
+ {
+ "epoch": 58.46133682830931,
+ "grad_norm": 0.2261950671672821,
+ "learning_rate": 0.0006,
+ "loss": 3.5462238788604736,
+ "step": 4209
+ },
+ {
+ "epoch": 58.47531673219746,
+ "grad_norm": 0.23496517539024353,
+ "learning_rate": 0.0006,
+ "loss": 3.510138988494873,
+ "step": 4210
+ },
+ {
+ "epoch": 58.489296636085626,
+ "grad_norm": 0.27041929960250854,
+ "learning_rate": 0.0006,
+ "loss": 3.527822971343994,
+ "step": 4211
+ },
+ {
+ "epoch": 58.50327653997379,
+ "grad_norm": 0.2594013512134552,
+ "learning_rate": 0.0006,
+ "loss": 3.5358262062072754,
+ "step": 4212
+ },
+ {
+ "epoch": 58.517256443861946,
+ "grad_norm": 0.23336786031723022,
+ "learning_rate": 0.0006,
+ "loss": 3.530122756958008,
+ "step": 4213
+ },
+ {
+ "epoch": 58.53123634775011,
+ "grad_norm": 0.21956655383110046,
+ "learning_rate": 0.0006,
+ "loss": 3.541039228439331,
+ "step": 4214
+ },
+ {
+ "epoch": 58.54521625163827,
+ "grad_norm": 0.22432804107666016,
+ "learning_rate": 0.0006,
+ "loss": 3.520948886871338,
+ "step": 4215
+ },
+ {
+ "epoch": 58.55919615552643,
+ "grad_norm": 0.21589893102645874,
+ "learning_rate": 0.0006,
+ "loss": 3.569808006286621,
+ "step": 4216
+ },
+ {
+ "epoch": 58.57317605941459,
+ "grad_norm": 0.20264557003974915,
+ "learning_rate": 0.0006,
+ "loss": 3.514918088912964,
+ "step": 4217
+ },
+ {
+ "epoch": 58.58715596330275,
+ "grad_norm": 0.20911480486392975,
+ "learning_rate": 0.0006,
+ "loss": 3.5340771675109863,
+ "step": 4218
+ },
+ {
+ "epoch": 58.60113586719091,
+ "grad_norm": 0.21068964898586273,
+ "learning_rate": 0.0006,
+ "loss": 3.5388903617858887,
+ "step": 4219
+ },
+ {
+ "epoch": 58.615115771079076,
+ "grad_norm": 0.19314789772033691,
+ "learning_rate": 0.0006,
+ "loss": 3.5405967235565186,
+ "step": 4220
+ },
+ {
+ "epoch": 58.62909567496723,
+ "grad_norm": 0.18347802758216858,
+ "learning_rate": 0.0006,
+ "loss": 3.5208020210266113,
+ "step": 4221
+ },
+ {
+ "epoch": 58.643075578855395,
+ "grad_norm": 0.2082843780517578,
+ "learning_rate": 0.0006,
+ "loss": 3.5454647541046143,
+ "step": 4222
+ },
+ {
+ "epoch": 58.65705548274356,
+ "grad_norm": 0.2049611210823059,
+ "learning_rate": 0.0006,
+ "loss": 3.529350996017456,
+ "step": 4223
+ },
+ {
+ "epoch": 58.671035386631715,
+ "grad_norm": 0.19259536266326904,
+ "learning_rate": 0.0006,
+ "loss": 3.5589945316314697,
+ "step": 4224
+ },
+ {
+ "epoch": 58.68501529051988,
+ "grad_norm": 0.19039863348007202,
+ "learning_rate": 0.0006,
+ "loss": 3.5593101978302,
+ "step": 4225
+ },
+ {
+ "epoch": 58.69899519440804,
+ "grad_norm": 0.21481311321258545,
+ "learning_rate": 0.0006,
+ "loss": 3.55385422706604,
+ "step": 4226
+ },
+ {
+ "epoch": 58.7129750982962,
+ "grad_norm": 0.2053634226322174,
+ "learning_rate": 0.0006,
+ "loss": 3.535224437713623,
+ "step": 4227
+ },
+ {
+ "epoch": 58.72695500218436,
+ "grad_norm": 0.21111956238746643,
+ "learning_rate": 0.0006,
+ "loss": 3.5208349227905273,
+ "step": 4228
+ },
+ {
+ "epoch": 58.74093490607252,
+ "grad_norm": 0.22069109976291656,
+ "learning_rate": 0.0006,
+ "loss": 3.5292487144470215,
+ "step": 4229
+ },
+ {
+ "epoch": 58.75491480996068,
+ "grad_norm": 0.22549185156822205,
+ "learning_rate": 0.0006,
+ "loss": 3.556830406188965,
+ "step": 4230
+ },
+ {
+ "epoch": 58.768894713848844,
+ "grad_norm": 0.22341859340667725,
+ "learning_rate": 0.0006,
+ "loss": 3.5573582649230957,
+ "step": 4231
+ },
+ {
+ "epoch": 58.782874617737,
+ "grad_norm": 0.20664502680301666,
+ "learning_rate": 0.0006,
+ "loss": 3.578657865524292,
+ "step": 4232
+ },
+ {
+ "epoch": 58.796854521625164,
+ "grad_norm": 0.19885236024856567,
+ "learning_rate": 0.0006,
+ "loss": 3.5604476928710938,
+ "step": 4233
+ },
+ {
+ "epoch": 58.81083442551333,
+ "grad_norm": 0.19446797668933868,
+ "learning_rate": 0.0006,
+ "loss": 3.5686912536621094,
+ "step": 4234
+ },
+ {
+ "epoch": 58.824814329401484,
+ "grad_norm": 0.20658083260059357,
+ "learning_rate": 0.0006,
+ "loss": 3.563167095184326,
+ "step": 4235
+ },
+ {
+ "epoch": 58.83879423328965,
+ "grad_norm": 0.21075408160686493,
+ "learning_rate": 0.0006,
+ "loss": 3.5597028732299805,
+ "step": 4236
+ },
+ {
+ "epoch": 58.8527741371778,
+ "grad_norm": 0.20652376115322113,
+ "learning_rate": 0.0006,
+ "loss": 3.5651087760925293,
+ "step": 4237
+ },
+ {
+ "epoch": 58.86675404106597,
+ "grad_norm": 0.2243892401456833,
+ "learning_rate": 0.0006,
+ "loss": 3.5442488193511963,
+ "step": 4238
+ },
+ {
+ "epoch": 58.88073394495413,
+ "grad_norm": 0.23486459255218506,
+ "learning_rate": 0.0006,
+ "loss": 3.545135974884033,
+ "step": 4239
+ },
+ {
+ "epoch": 58.89471384884229,
+ "grad_norm": 0.23100663721561432,
+ "learning_rate": 0.0006,
+ "loss": 3.57177734375,
+ "step": 4240
+ },
+ {
+ "epoch": 58.90869375273045,
+ "grad_norm": 0.2269909679889679,
+ "learning_rate": 0.0006,
+ "loss": 3.528768301010132,
+ "step": 4241
+ },
+ {
+ "epoch": 58.92267365661861,
+ "grad_norm": 0.20349252223968506,
+ "learning_rate": 0.0006,
+ "loss": 3.591031789779663,
+ "step": 4242
+ },
+ {
+ "epoch": 58.93665356050677,
+ "grad_norm": 0.21038702130317688,
+ "learning_rate": 0.0006,
+ "loss": 3.5696892738342285,
+ "step": 4243
+ },
+ {
+ "epoch": 58.95063346439493,
+ "grad_norm": 0.21356560289859772,
+ "learning_rate": 0.0006,
+ "loss": 3.5708963871002197,
+ "step": 4244
+ },
+ {
+ "epoch": 58.964613368283096,
+ "grad_norm": 0.20008863508701324,
+ "learning_rate": 0.0006,
+ "loss": 3.524749279022217,
+ "step": 4245
+ },
+ {
+ "epoch": 58.97859327217125,
+ "grad_norm": 0.20453840494155884,
+ "learning_rate": 0.0006,
+ "loss": 3.5677876472473145,
+ "step": 4246
+ },
+ {
+ "epoch": 58.992573176059416,
+ "grad_norm": 0.21549056470394135,
+ "learning_rate": 0.0006,
+ "loss": 3.550870418548584,
+ "step": 4247
+ },
+ {
+ "epoch": 59.0,
+ "grad_norm": 0.2592930793762207,
+ "learning_rate": 0.0006,
+ "loss": 3.550673484802246,
+ "step": 4248
+ },
+ {
+ "epoch": 59.0,
+ "eval_loss": 3.968780279159546,
+ "eval_runtime": 45.6246,
+ "eval_samples_per_second": 53.524,
+ "eval_steps_per_second": 3.353,
+ "step": 4248
+ },
+ {
+ "epoch": 59.01397990388816,
+ "grad_norm": 0.218043252825737,
+ "learning_rate": 0.0006,
+ "loss": 3.49605655670166,
+ "step": 4249
+ },
+ {
+ "epoch": 59.02795980777632,
+ "grad_norm": 0.25112417340278625,
+ "learning_rate": 0.0006,
+ "loss": 3.534919023513794,
+ "step": 4250
+ },
+ {
+ "epoch": 59.04193971166448,
+ "grad_norm": 0.2785079777240753,
+ "learning_rate": 0.0006,
+ "loss": 3.5425362586975098,
+ "step": 4251
+ },
+ {
+ "epoch": 59.05591961555265,
+ "grad_norm": 0.2667599618434906,
+ "learning_rate": 0.0006,
+ "loss": 3.4955453872680664,
+ "step": 4252
+ },
+ {
+ "epoch": 59.0698995194408,
+ "grad_norm": 0.24012432992458344,
+ "learning_rate": 0.0006,
+ "loss": 3.4949915409088135,
+ "step": 4253
+ },
+ {
+ "epoch": 59.083879423328966,
+ "grad_norm": 0.2502294182777405,
+ "learning_rate": 0.0006,
+ "loss": 3.5163769721984863,
+ "step": 4254
+ },
+ {
+ "epoch": 59.09785932721712,
+ "grad_norm": 0.28585609793663025,
+ "learning_rate": 0.0006,
+ "loss": 3.4852542877197266,
+ "step": 4255
+ },
+ {
+ "epoch": 59.111839231105286,
+ "grad_norm": 0.2815989553928375,
+ "learning_rate": 0.0006,
+ "loss": 3.4991462230682373,
+ "step": 4256
+ },
+ {
+ "epoch": 59.12581913499345,
+ "grad_norm": 0.22922837734222412,
+ "learning_rate": 0.0006,
+ "loss": 3.511322021484375,
+ "step": 4257
+ },
+ {
+ "epoch": 59.139799038881605,
+ "grad_norm": 0.24964241683483124,
+ "learning_rate": 0.0006,
+ "loss": 3.521056652069092,
+ "step": 4258
+ },
+ {
+ "epoch": 59.15377894276977,
+ "grad_norm": 0.27568385004997253,
+ "learning_rate": 0.0006,
+ "loss": 3.514004707336426,
+ "step": 4259
+ },
+ {
+ "epoch": 59.16775884665793,
+ "grad_norm": 0.2605166733264923,
+ "learning_rate": 0.0006,
+ "loss": 3.5132668018341064,
+ "step": 4260
+ },
+ {
+ "epoch": 59.18173875054609,
+ "grad_norm": 0.24248117208480835,
+ "learning_rate": 0.0006,
+ "loss": 3.5492095947265625,
+ "step": 4261
+ },
+ {
+ "epoch": 59.19571865443425,
+ "grad_norm": 0.26359522342681885,
+ "learning_rate": 0.0006,
+ "loss": 3.521390438079834,
+ "step": 4262
+ },
+ {
+ "epoch": 59.20969855832241,
+ "grad_norm": 0.262248694896698,
+ "learning_rate": 0.0006,
+ "loss": 3.556307315826416,
+ "step": 4263
+ },
+ {
+ "epoch": 59.22367846221057,
+ "grad_norm": 0.23514866828918457,
+ "learning_rate": 0.0006,
+ "loss": 3.4989941120147705,
+ "step": 4264
+ },
+ {
+ "epoch": 59.237658366098735,
+ "grad_norm": 0.22758382558822632,
+ "learning_rate": 0.0006,
+ "loss": 3.5307068824768066,
+ "step": 4265
+ },
+ {
+ "epoch": 59.25163826998689,
+ "grad_norm": 0.24037839472293854,
+ "learning_rate": 0.0006,
+ "loss": 3.495872974395752,
+ "step": 4266
+ },
+ {
+ "epoch": 59.265618173875055,
+ "grad_norm": 0.22763589024543762,
+ "learning_rate": 0.0006,
+ "loss": 3.54052472114563,
+ "step": 4267
+ },
+ {
+ "epoch": 59.27959807776322,
+ "grad_norm": 0.22400406002998352,
+ "learning_rate": 0.0006,
+ "loss": 3.498671054840088,
+ "step": 4268
+ },
+ {
+ "epoch": 59.293577981651374,
+ "grad_norm": 0.2326328009366989,
+ "learning_rate": 0.0006,
+ "loss": 3.559108257293701,
+ "step": 4269
+ },
+ {
+ "epoch": 59.30755788553954,
+ "grad_norm": 0.24426043033599854,
+ "learning_rate": 0.0006,
+ "loss": 3.5245609283447266,
+ "step": 4270
+ },
+ {
+ "epoch": 59.3215377894277,
+ "grad_norm": 0.2159317582845688,
+ "learning_rate": 0.0006,
+ "loss": 3.5189900398254395,
+ "step": 4271
+ },
+ {
+ "epoch": 59.33551769331586,
+ "grad_norm": 0.19148702919483185,
+ "learning_rate": 0.0006,
+ "loss": 3.548433303833008,
+ "step": 4272
+ },
+ {
+ "epoch": 59.34949759720402,
+ "grad_norm": 0.23349083960056305,
+ "learning_rate": 0.0006,
+ "loss": 3.5475196838378906,
+ "step": 4273
+ },
+ {
+ "epoch": 59.36347750109218,
+ "grad_norm": 0.24024079740047455,
+ "learning_rate": 0.0006,
+ "loss": 3.5172529220581055,
+ "step": 4274
+ },
+ {
+ "epoch": 59.37745740498034,
+ "grad_norm": 0.23772001266479492,
+ "learning_rate": 0.0006,
+ "loss": 3.5428695678710938,
+ "step": 4275
+ },
+ {
+ "epoch": 59.391437308868504,
+ "grad_norm": 0.21134959161281586,
+ "learning_rate": 0.0006,
+ "loss": 3.523099422454834,
+ "step": 4276
+ },
+ {
+ "epoch": 59.40541721275666,
+ "grad_norm": 0.20760025084018707,
+ "learning_rate": 0.0006,
+ "loss": 3.55435848236084,
+ "step": 4277
+ },
+ {
+ "epoch": 59.419397116644824,
+ "grad_norm": 0.21113243699073792,
+ "learning_rate": 0.0006,
+ "loss": 3.5355324745178223,
+ "step": 4278
+ },
+ {
+ "epoch": 59.43337702053299,
+ "grad_norm": 0.21604566276073456,
+ "learning_rate": 0.0006,
+ "loss": 3.5517663955688477,
+ "step": 4279
+ },
+ {
+ "epoch": 59.44735692442114,
+ "grad_norm": 0.19646669924259186,
+ "learning_rate": 0.0006,
+ "loss": 3.538435935974121,
+ "step": 4280
+ },
+ {
+ "epoch": 59.46133682830931,
+ "grad_norm": 0.20394550263881683,
+ "learning_rate": 0.0006,
+ "loss": 3.528444290161133,
+ "step": 4281
+ },
+ {
+ "epoch": 59.47531673219746,
+ "grad_norm": 0.24543620645999908,
+ "learning_rate": 0.0006,
+ "loss": 3.5355372428894043,
+ "step": 4282
+ },
+ {
+ "epoch": 59.489296636085626,
+ "grad_norm": 0.24048425257205963,
+ "learning_rate": 0.0006,
+ "loss": 3.521336078643799,
+ "step": 4283
+ },
+ {
+ "epoch": 59.50327653997379,
+ "grad_norm": 0.23630213737487793,
+ "learning_rate": 0.0006,
+ "loss": 3.556244373321533,
+ "step": 4284
+ },
+ {
+ "epoch": 59.517256443861946,
+ "grad_norm": 0.2791444659233093,
+ "learning_rate": 0.0006,
+ "loss": 3.5927138328552246,
+ "step": 4285
+ },
+ {
+ "epoch": 59.53123634775011,
+ "grad_norm": 0.30325770378112793,
+ "learning_rate": 0.0006,
+ "loss": 3.559296131134033,
+ "step": 4286
+ },
+ {
+ "epoch": 59.54521625163827,
+ "grad_norm": 0.2708670496940613,
+ "learning_rate": 0.0006,
+ "loss": 3.531050205230713,
+ "step": 4287
+ },
+ {
+ "epoch": 59.55919615552643,
+ "grad_norm": 0.23795515298843384,
+ "learning_rate": 0.0006,
+ "loss": 3.5365982055664062,
+ "step": 4288
+ },
+ {
+ "epoch": 59.57317605941459,
+ "grad_norm": 0.20949627459049225,
+ "learning_rate": 0.0006,
+ "loss": 3.5591273307800293,
+ "step": 4289
+ },
+ {
+ "epoch": 59.58715596330275,
+ "grad_norm": 0.21885769069194794,
+ "learning_rate": 0.0006,
+ "loss": 3.4965288639068604,
+ "step": 4290
+ },
+ {
+ "epoch": 59.60113586719091,
+ "grad_norm": 0.22365590929985046,
+ "learning_rate": 0.0006,
+ "loss": 3.538118362426758,
+ "step": 4291
+ },
+ {
+ "epoch": 59.615115771079076,
+ "grad_norm": 0.23178881406784058,
+ "learning_rate": 0.0006,
+ "loss": 3.515933036804199,
+ "step": 4292
+ },
+ {
+ "epoch": 59.62909567496723,
+ "grad_norm": 0.21539060771465302,
+ "learning_rate": 0.0006,
+ "loss": 3.54185152053833,
+ "step": 4293
+ },
+ {
+ "epoch": 59.643075578855395,
+ "grad_norm": 0.22033682465553284,
+ "learning_rate": 0.0006,
+ "loss": 3.526728630065918,
+ "step": 4294
+ },
+ {
+ "epoch": 59.65705548274356,
+ "grad_norm": 0.23003938794136047,
+ "learning_rate": 0.0006,
+ "loss": 3.555710792541504,
+ "step": 4295
+ },
+ {
+ "epoch": 59.671035386631715,
+ "grad_norm": 0.22887346148490906,
+ "learning_rate": 0.0006,
+ "loss": 3.580883502960205,
+ "step": 4296
+ },
+ {
+ "epoch": 59.68501529051988,
+ "grad_norm": 0.2147892713546753,
+ "learning_rate": 0.0006,
+ "loss": 3.5318822860717773,
+ "step": 4297
+ },
+ {
+ "epoch": 59.69899519440804,
+ "grad_norm": 0.22063598036766052,
+ "learning_rate": 0.0006,
+ "loss": 3.5179357528686523,
+ "step": 4298
+ },
+ {
+ "epoch": 59.7129750982962,
+ "grad_norm": 0.22569656372070312,
+ "learning_rate": 0.0006,
+ "loss": 3.583181381225586,
+ "step": 4299
+ },
+ {
+ "epoch": 59.72695500218436,
+ "grad_norm": 0.2252701222896576,
+ "learning_rate": 0.0006,
+ "loss": 3.5780375003814697,
+ "step": 4300
+ },
+ {
+ "epoch": 59.74093490607252,
+ "grad_norm": 0.2288130521774292,
+ "learning_rate": 0.0006,
+ "loss": 3.570399284362793,
+ "step": 4301
+ },
+ {
+ "epoch": 59.75491480996068,
+ "grad_norm": 0.21879231929779053,
+ "learning_rate": 0.0006,
+ "loss": 3.540292739868164,
+ "step": 4302
+ },
+ {
+ "epoch": 59.768894713848844,
+ "grad_norm": 0.20675964653491974,
+ "learning_rate": 0.0006,
+ "loss": 3.532649040222168,
+ "step": 4303
+ },
+ {
+ "epoch": 59.782874617737,
+ "grad_norm": 0.21810708940029144,
+ "learning_rate": 0.0006,
+ "loss": 3.5156657695770264,
+ "step": 4304
+ },
+ {
+ "epoch": 59.796854521625164,
+ "grad_norm": 0.22701260447502136,
+ "learning_rate": 0.0006,
+ "loss": 3.5535266399383545,
+ "step": 4305
+ },
+ {
+ "epoch": 59.81083442551333,
+ "grad_norm": 0.23433080315589905,
+ "learning_rate": 0.0006,
+ "loss": 3.5280754566192627,
+ "step": 4306
+ },
+ {
+ "epoch": 59.824814329401484,
+ "grad_norm": 0.2254341095685959,
+ "learning_rate": 0.0006,
+ "loss": 3.534045696258545,
+ "step": 4307
+ },
+ {
+ "epoch": 59.83879423328965,
+ "grad_norm": 0.21756123006343842,
+ "learning_rate": 0.0006,
+ "loss": 3.5621533393859863,
+ "step": 4308
+ },
+ {
+ "epoch": 59.8527741371778,
+ "grad_norm": 0.19731850922107697,
+ "learning_rate": 0.0006,
+ "loss": 3.536633253097534,
+ "step": 4309
+ },
+ {
+ "epoch": 59.86675404106597,
+ "grad_norm": 0.2260110229253769,
+ "learning_rate": 0.0006,
+ "loss": 3.5721538066864014,
+ "step": 4310
+ },
+ {
+ "epoch": 59.88073394495413,
+ "grad_norm": 0.22728438675403595,
+ "learning_rate": 0.0006,
+ "loss": 3.5576961040496826,
+ "step": 4311
+ },
+ {
+ "epoch": 59.89471384884229,
+ "grad_norm": 0.20675411820411682,
+ "learning_rate": 0.0006,
+ "loss": 3.5070700645446777,
+ "step": 4312
+ },
+ {
+ "epoch": 59.90869375273045,
+ "grad_norm": 0.22258996963500977,
+ "learning_rate": 0.0006,
+ "loss": 3.564357280731201,
+ "step": 4313
+ },
+ {
+ "epoch": 59.92267365661861,
+ "grad_norm": 0.2429998815059662,
+ "learning_rate": 0.0006,
+ "loss": 3.519744873046875,
+ "step": 4314
+ },
+ {
+ "epoch": 59.93665356050677,
+ "grad_norm": 0.2394791841506958,
+ "learning_rate": 0.0006,
+ "loss": 3.533292055130005,
+ "step": 4315
+ },
+ {
+ "epoch": 59.95063346439493,
+ "grad_norm": 0.20659418404102325,
+ "learning_rate": 0.0006,
+ "loss": 3.5475940704345703,
+ "step": 4316
+ },
+ {
+ "epoch": 59.964613368283096,
+ "grad_norm": 0.19679132103919983,
+ "learning_rate": 0.0006,
+ "loss": 3.5794930458068848,
+ "step": 4317
+ },
+ {
+ "epoch": 59.97859327217125,
+ "grad_norm": 0.2133002132177353,
+ "learning_rate": 0.0006,
+ "loss": 3.5506505966186523,
+ "step": 4318
+ },
+ {
+ "epoch": 59.992573176059416,
+ "grad_norm": 0.22383661568164825,
+ "learning_rate": 0.0006,
+ "loss": 3.547708511352539,
+ "step": 4319
+ },
+ {
+ "epoch": 60.0,
+ "grad_norm": 0.25744178891181946,
+ "learning_rate": 0.0006,
+ "loss": 3.5519227981567383,
+ "step": 4320
+ },
+ {
+ "epoch": 60.0,
+ "eval_loss": 3.9816012382507324,
+ "eval_runtime": 46.3931,
+ "eval_samples_per_second": 52.637,
+ "eval_steps_per_second": 3.298,
+ "step": 4320
+ },
+ {
+ "epoch": 60.01397990388816,
+ "grad_norm": 0.2202005684375763,
+ "learning_rate": 0.0006,
+ "loss": 3.51010799407959,
+ "step": 4321
+ },
+ {
+ "epoch": 60.02795980777632,
+ "grad_norm": 0.24285688996315002,
+ "learning_rate": 0.0006,
+ "loss": 3.519137382507324,
+ "step": 4322
+ },
+ {
+ "epoch": 60.04193971166448,
+ "grad_norm": 0.2700578570365906,
+ "learning_rate": 0.0006,
+ "loss": 3.523392915725708,
+ "step": 4323
+ },
+ {
+ "epoch": 60.05591961555265,
+ "grad_norm": 0.30088669061660767,
+ "learning_rate": 0.0006,
+ "loss": 3.48724627494812,
+ "step": 4324
+ },
+ {
+ "epoch": 60.0698995194408,
+ "grad_norm": 0.30426669120788574,
+ "learning_rate": 0.0006,
+ "loss": 3.479025363922119,
+ "step": 4325
+ },
+ {
+ "epoch": 60.083879423328966,
+ "grad_norm": 0.2718220055103302,
+ "learning_rate": 0.0006,
+ "loss": 3.4923276901245117,
+ "step": 4326
+ },
+ {
+ "epoch": 60.09785932721712,
+ "grad_norm": 0.23625287413597107,
+ "learning_rate": 0.0006,
+ "loss": 3.5152812004089355,
+ "step": 4327
+ },
+ {
+ "epoch": 60.111839231105286,
+ "grad_norm": 0.23336869478225708,
+ "learning_rate": 0.0006,
+ "loss": 3.512453079223633,
+ "step": 4328
+ },
+ {
+ "epoch": 60.12581913499345,
+ "grad_norm": 0.24780215322971344,
+ "learning_rate": 0.0006,
+ "loss": 3.505812168121338,
+ "step": 4329
+ },
+ {
+ "epoch": 60.139799038881605,
+ "grad_norm": 0.25600194931030273,
+ "learning_rate": 0.0006,
+ "loss": 3.5281314849853516,
+ "step": 4330
+ },
+ {
+ "epoch": 60.15377894276977,
+ "grad_norm": 0.2458304911851883,
+ "learning_rate": 0.0006,
+ "loss": 3.4932949542999268,
+ "step": 4331
+ },
+ {
+ "epoch": 60.16775884665793,
+ "grad_norm": 0.2246888130903244,
+ "learning_rate": 0.0006,
+ "loss": 3.5295495986938477,
+ "step": 4332
+ },
+ {
+ "epoch": 60.18173875054609,
+ "grad_norm": 0.23762951791286469,
+ "learning_rate": 0.0006,
+ "loss": 3.4938201904296875,
+ "step": 4333
+ },
+ {
+ "epoch": 60.19571865443425,
+ "grad_norm": 0.24483945965766907,
+ "learning_rate": 0.0006,
+ "loss": 3.544774055480957,
+ "step": 4334
+ },
+ {
+ "epoch": 60.20969855832241,
+ "grad_norm": 0.24154368042945862,
+ "learning_rate": 0.0006,
+ "loss": 3.5352816581726074,
+ "step": 4335
+ },
+ {
+ "epoch": 60.22367846221057,
+ "grad_norm": 0.22929225862026215,
+ "learning_rate": 0.0006,
+ "loss": 3.5546953678131104,
+ "step": 4336
+ },
+ {
+ "epoch": 60.237658366098735,
+ "grad_norm": 0.21391373872756958,
+ "learning_rate": 0.0006,
+ "loss": 3.537647247314453,
+ "step": 4337
+ },
+ {
+ "epoch": 60.25163826998689,
+ "grad_norm": 0.20410357415676117,
+ "learning_rate": 0.0006,
+ "loss": 3.535831928253174,
+ "step": 4338
+ },
+ {
+ "epoch": 60.265618173875055,
+ "grad_norm": 0.2070329487323761,
+ "learning_rate": 0.0006,
+ "loss": 3.5234389305114746,
+ "step": 4339
+ },
+ {
+ "epoch": 60.27959807776322,
+ "grad_norm": 0.20540225505828857,
+ "learning_rate": 0.0006,
+ "loss": 3.557478427886963,
+ "step": 4340
+ },
+ {
+ "epoch": 60.293577981651374,
+ "grad_norm": 0.2124919891357422,
+ "learning_rate": 0.0006,
+ "loss": 3.532726764678955,
+ "step": 4341
+ },
+ {
+ "epoch": 60.30755788553954,
+ "grad_norm": 0.22207678854465485,
+ "learning_rate": 0.0006,
+ "loss": 3.5314202308654785,
+ "step": 4342
+ },
+ {
+ "epoch": 60.3215377894277,
+ "grad_norm": 0.2137281745672226,
+ "learning_rate": 0.0006,
+ "loss": 3.5491206645965576,
+ "step": 4343
+ },
+ {
+ "epoch": 60.33551769331586,
+ "grad_norm": 0.20728953182697296,
+ "learning_rate": 0.0006,
+ "loss": 3.5111031532287598,
+ "step": 4344
+ },
+ {
+ "epoch": 60.34949759720402,
+ "grad_norm": 0.22547020018100739,
+ "learning_rate": 0.0006,
+ "loss": 3.5311098098754883,
+ "step": 4345
+ },
+ {
+ "epoch": 60.36347750109218,
+ "grad_norm": 0.23352888226509094,
+ "learning_rate": 0.0006,
+ "loss": 3.5200939178466797,
+ "step": 4346
+ },
+ {
+ "epoch": 60.37745740498034,
+ "grad_norm": 0.21329060196876526,
+ "learning_rate": 0.0006,
+ "loss": 3.508589744567871,
+ "step": 4347
+ },
+ {
+ "epoch": 60.391437308868504,
+ "grad_norm": 0.1904045194387436,
+ "learning_rate": 0.0006,
+ "loss": 3.4850475788116455,
+ "step": 4348
+ },
+ {
+ "epoch": 60.40541721275666,
+ "grad_norm": 0.20586109161376953,
+ "learning_rate": 0.0006,
+ "loss": 3.5503551959991455,
+ "step": 4349
+ },
+ {
+ "epoch": 60.419397116644824,
+ "grad_norm": 0.21311818063259125,
+ "learning_rate": 0.0006,
+ "loss": 3.5243923664093018,
+ "step": 4350
+ },
+ {
+ "epoch": 60.43337702053299,
+ "grad_norm": 0.21479184925556183,
+ "learning_rate": 0.0006,
+ "loss": 3.553647041320801,
+ "step": 4351
+ },
+ {
+ "epoch": 60.44735692442114,
+ "grad_norm": 0.19994449615478516,
+ "learning_rate": 0.0006,
+ "loss": 3.5558884143829346,
+ "step": 4352
+ },
+ {
+ "epoch": 60.46133682830931,
+ "grad_norm": 0.21455694735050201,
+ "learning_rate": 0.0006,
+ "loss": 3.5186543464660645,
+ "step": 4353
+ },
+ {
+ "epoch": 60.47531673219746,
+ "grad_norm": 0.21904151141643524,
+ "learning_rate": 0.0006,
+ "loss": 3.526367425918579,
+ "step": 4354
+ },
+ {
+ "epoch": 60.489296636085626,
+ "grad_norm": 0.1908986121416092,
+ "learning_rate": 0.0006,
+ "loss": 3.541072368621826,
+ "step": 4355
+ },
+ {
+ "epoch": 60.50327653997379,
+ "grad_norm": 0.20290519297122955,
+ "learning_rate": 0.0006,
+ "loss": 3.530333995819092,
+ "step": 4356
+ },
+ {
+ "epoch": 60.517256443861946,
+ "grad_norm": 0.2318771779537201,
+ "learning_rate": 0.0006,
+ "loss": 3.5260486602783203,
+ "step": 4357
+ },
+ {
+ "epoch": 60.53123634775011,
+ "grad_norm": 0.25559669733047485,
+ "learning_rate": 0.0006,
+ "loss": 3.56851863861084,
+ "step": 4358
+ },
+ {
+ "epoch": 60.54521625163827,
+ "grad_norm": 0.2529429793357849,
+ "learning_rate": 0.0006,
+ "loss": 3.5519490242004395,
+ "step": 4359
+ },
+ {
+ "epoch": 60.55919615552643,
+ "grad_norm": 0.22857248783111572,
+ "learning_rate": 0.0006,
+ "loss": 3.5556063652038574,
+ "step": 4360
+ },
+ {
+ "epoch": 60.57317605941459,
+ "grad_norm": 0.21628573536872864,
+ "learning_rate": 0.0006,
+ "loss": 3.5321288108825684,
+ "step": 4361
+ },
+ {
+ "epoch": 60.58715596330275,
+ "grad_norm": 0.19497910141944885,
+ "learning_rate": 0.0006,
+ "loss": 3.5480406284332275,
+ "step": 4362
+ },
+ {
+ "epoch": 60.60113586719091,
+ "grad_norm": 0.204348623752594,
+ "learning_rate": 0.0006,
+ "loss": 3.522806167602539,
+ "step": 4363
+ },
+ {
+ "epoch": 60.615115771079076,
+ "grad_norm": 0.23013663291931152,
+ "learning_rate": 0.0006,
+ "loss": 3.512876033782959,
+ "step": 4364
+ },
+ {
+ "epoch": 60.62909567496723,
+ "grad_norm": 0.22948725521564484,
+ "learning_rate": 0.0006,
+ "loss": 3.54276704788208,
+ "step": 4365
+ },
+ {
+ "epoch": 60.643075578855395,
+ "grad_norm": 0.20528492331504822,
+ "learning_rate": 0.0006,
+ "loss": 3.5592503547668457,
+ "step": 4366
+ },
+ {
+ "epoch": 60.65705548274356,
+ "grad_norm": 0.214582160115242,
+ "learning_rate": 0.0006,
+ "loss": 3.5168166160583496,
+ "step": 4367
+ },
+ {
+ "epoch": 60.671035386631715,
+ "grad_norm": 0.18893493711948395,
+ "learning_rate": 0.0006,
+ "loss": 3.51012921333313,
+ "step": 4368
+ },
+ {
+ "epoch": 60.68501529051988,
+ "grad_norm": 0.19301992654800415,
+ "learning_rate": 0.0006,
+ "loss": 3.5396199226379395,
+ "step": 4369
+ },
+ {
+ "epoch": 60.69899519440804,
+ "grad_norm": 0.22339801490306854,
+ "learning_rate": 0.0006,
+ "loss": 3.5463967323303223,
+ "step": 4370
+ },
+ {
+ "epoch": 60.7129750982962,
+ "grad_norm": 0.19028180837631226,
+ "learning_rate": 0.0006,
+ "loss": 3.534419536590576,
+ "step": 4371
+ },
+ {
+ "epoch": 60.72695500218436,
+ "grad_norm": 0.2078639566898346,
+ "learning_rate": 0.0006,
+ "loss": 3.5345680713653564,
+ "step": 4372
+ },
+ {
+ "epoch": 60.74093490607252,
+ "grad_norm": 0.24292199313640594,
+ "learning_rate": 0.0006,
+ "loss": 3.5291242599487305,
+ "step": 4373
+ },
+ {
+ "epoch": 60.75491480996068,
+ "grad_norm": 0.25118497014045715,
+ "learning_rate": 0.0006,
+ "loss": 3.5362191200256348,
+ "step": 4374
+ },
+ {
+ "epoch": 60.768894713848844,
+ "grad_norm": 0.24816395342350006,
+ "learning_rate": 0.0006,
+ "loss": 3.539637804031372,
+ "step": 4375
+ },
+ {
+ "epoch": 60.782874617737,
+ "grad_norm": 0.23654010891914368,
+ "learning_rate": 0.0006,
+ "loss": 3.482605457305908,
+ "step": 4376
+ },
+ {
+ "epoch": 60.796854521625164,
+ "grad_norm": 0.21593770384788513,
+ "learning_rate": 0.0006,
+ "loss": 3.550279140472412,
+ "step": 4377
+ },
+ {
+ "epoch": 60.81083442551333,
+ "grad_norm": 0.21346014738082886,
+ "learning_rate": 0.0006,
+ "loss": 3.541086196899414,
+ "step": 4378
+ },
+ {
+ "epoch": 60.824814329401484,
+ "grad_norm": 0.2284841537475586,
+ "learning_rate": 0.0006,
+ "loss": 3.544254779815674,
+ "step": 4379
+ },
+ {
+ "epoch": 60.83879423328965,
+ "grad_norm": 0.23353151977062225,
+ "learning_rate": 0.0006,
+ "loss": 3.5606589317321777,
+ "step": 4380
+ },
+ {
+ "epoch": 60.8527741371778,
+ "grad_norm": 0.2201574146747589,
+ "learning_rate": 0.0006,
+ "loss": 3.524120807647705,
+ "step": 4381
+ },
+ {
+ "epoch": 60.86675404106597,
+ "grad_norm": 0.2277211993932724,
+ "learning_rate": 0.0006,
+ "loss": 3.553539276123047,
+ "step": 4382
+ },
+ {
+ "epoch": 60.88073394495413,
+ "grad_norm": 0.2282724678516388,
+ "learning_rate": 0.0006,
+ "loss": 3.5247130393981934,
+ "step": 4383
+ },
+ {
+ "epoch": 60.89471384884229,
+ "grad_norm": 0.20859065651893616,
+ "learning_rate": 0.0006,
+ "loss": 3.5654680728912354,
+ "step": 4384
+ },
+ {
+ "epoch": 60.90869375273045,
+ "grad_norm": 0.1995432823896408,
+ "learning_rate": 0.0006,
+ "loss": 3.5091423988342285,
+ "step": 4385
+ },
+ {
+ "epoch": 60.92267365661861,
+ "grad_norm": 0.19769565761089325,
+ "learning_rate": 0.0006,
+ "loss": 3.5375986099243164,
+ "step": 4386
+ },
+ {
+ "epoch": 60.93665356050677,
+ "grad_norm": 0.21246176958084106,
+ "learning_rate": 0.0006,
+ "loss": 3.570774793624878,
+ "step": 4387
+ },
+ {
+ "epoch": 60.95063346439493,
+ "grad_norm": 0.2212657630443573,
+ "learning_rate": 0.0006,
+ "loss": 3.5192928314208984,
+ "step": 4388
+ },
+ {
+ "epoch": 60.964613368283096,
+ "grad_norm": 0.2258632481098175,
+ "learning_rate": 0.0006,
+ "loss": 3.5356457233428955,
+ "step": 4389
+ },
+ {
+ "epoch": 60.97859327217125,
+ "grad_norm": 0.1998971700668335,
+ "learning_rate": 0.0006,
+ "loss": 3.52758526802063,
+ "step": 4390
+ },
+ {
+ "epoch": 60.992573176059416,
+ "grad_norm": 0.1932399868965149,
+ "learning_rate": 0.0006,
+ "loss": 3.562718391418457,
+ "step": 4391
+ },
+ {
+ "epoch": 61.0,
+ "grad_norm": 0.24292197823524475,
+ "learning_rate": 0.0006,
+ "loss": 3.550189971923828,
+ "step": 4392
+ },
+ {
+ "epoch": 61.0,
+ "eval_loss": 3.974423408508301,
+ "eval_runtime": 45.8822,
+ "eval_samples_per_second": 53.223,
+ "eval_steps_per_second": 3.335,
+ "step": 4392
+ },
+ {
+ "epoch": 61.01397990388816,
+ "grad_norm": 0.2216092199087143,
+ "learning_rate": 0.0006,
+ "loss": 3.51747989654541,
+ "step": 4393
+ },
+ {
+ "epoch": 61.02795980777632,
+ "grad_norm": 0.23488417267799377,
+ "learning_rate": 0.0006,
+ "loss": 3.529064178466797,
+ "step": 4394
+ },
+ {
+ "epoch": 61.04193971166448,
+ "grad_norm": 0.2805800437927246,
+ "learning_rate": 0.0006,
+ "loss": 3.4868035316467285,
+ "step": 4395
+ },
+ {
+ "epoch": 61.05591961555265,
+ "grad_norm": 0.32623469829559326,
+ "learning_rate": 0.0006,
+ "loss": 3.5209708213806152,
+ "step": 4396
+ },
+ {
+ "epoch": 61.0698995194408,
+ "grad_norm": 0.2645402252674103,
+ "learning_rate": 0.0006,
+ "loss": 3.524512767791748,
+ "step": 4397
+ },
+ {
+ "epoch": 61.083879423328966,
+ "grad_norm": 0.21118173003196716,
+ "learning_rate": 0.0006,
+ "loss": 3.5167856216430664,
+ "step": 4398
+ },
+ {
+ "epoch": 61.09785932721712,
+ "grad_norm": 0.28649622201919556,
+ "learning_rate": 0.0006,
+ "loss": 3.5122973918914795,
+ "step": 4399
+ },
+ {
+ "epoch": 61.111839231105286,
+ "grad_norm": 0.39095914363861084,
+ "learning_rate": 0.0006,
+ "loss": 3.481421947479248,
+ "step": 4400
+ },
+ {
+ "epoch": 61.12581913499345,
+ "grad_norm": 0.4013976454734802,
+ "learning_rate": 0.0006,
+ "loss": 3.4859061241149902,
+ "step": 4401
+ },
+ {
+ "epoch": 61.139799038881605,
+ "grad_norm": 0.30067047476768494,
+ "learning_rate": 0.0006,
+ "loss": 3.524209976196289,
+ "step": 4402
+ },
+ {
+ "epoch": 61.15377894276977,
+ "grad_norm": 0.2086855173110962,
+ "learning_rate": 0.0006,
+ "loss": 3.4974379539489746,
+ "step": 4403
+ },
+ {
+ "epoch": 61.16775884665793,
+ "grad_norm": 0.25443482398986816,
+ "learning_rate": 0.0006,
+ "loss": 3.517038345336914,
+ "step": 4404
+ },
+ {
+ "epoch": 61.18173875054609,
+ "grad_norm": 0.27545589208602905,
+ "learning_rate": 0.0006,
+ "loss": 3.5075795650482178,
+ "step": 4405
+ },
+ {
+ "epoch": 61.19571865443425,
+ "grad_norm": 0.269279420375824,
+ "learning_rate": 0.0006,
+ "loss": 3.512235641479492,
+ "step": 4406
+ },
+ {
+ "epoch": 61.20969855832241,
+ "grad_norm": 0.24606923758983612,
+ "learning_rate": 0.0006,
+ "loss": 3.5362367630004883,
+ "step": 4407
+ },
+ {
+ "epoch": 61.22367846221057,
+ "grad_norm": 0.23358067870140076,
+ "learning_rate": 0.0006,
+ "loss": 3.5256686210632324,
+ "step": 4408
+ },
+ {
+ "epoch": 61.237658366098735,
+ "grad_norm": 0.2528085708618164,
+ "learning_rate": 0.0006,
+ "loss": 3.504239559173584,
+ "step": 4409
+ },
+ {
+ "epoch": 61.25163826998689,
+ "grad_norm": 0.28145745396614075,
+ "learning_rate": 0.0006,
+ "loss": 3.4862139225006104,
+ "step": 4410
+ },
+ {
+ "epoch": 61.265618173875055,
+ "grad_norm": 0.26570039987564087,
+ "learning_rate": 0.0006,
+ "loss": 3.5138425827026367,
+ "step": 4411
+ },
+ {
+ "epoch": 61.27959807776322,
+ "grad_norm": 0.2391415685415268,
+ "learning_rate": 0.0006,
+ "loss": 3.537569999694824,
+ "step": 4412
+ },
+ {
+ "epoch": 61.293577981651374,
+ "grad_norm": 0.22194577753543854,
+ "learning_rate": 0.0006,
+ "loss": 3.5367543697357178,
+ "step": 4413
+ },
+ {
+ "epoch": 61.30755788553954,
+ "grad_norm": 0.2388865202665329,
+ "learning_rate": 0.0006,
+ "loss": 3.533341407775879,
+ "step": 4414
+ },
+ {
+ "epoch": 61.3215377894277,
+ "grad_norm": 0.2666625380516052,
+ "learning_rate": 0.0006,
+ "loss": 3.501162528991699,
+ "step": 4415
+ },
+ {
+ "epoch": 61.33551769331586,
+ "grad_norm": 0.25569409132003784,
+ "learning_rate": 0.0006,
+ "loss": 3.529283046722412,
+ "step": 4416
+ },
+ {
+ "epoch": 61.34949759720402,
+ "grad_norm": 0.24683351814746857,
+ "learning_rate": 0.0006,
+ "loss": 3.508152484893799,
+ "step": 4417
+ },
+ {
+ "epoch": 61.36347750109218,
+ "grad_norm": 0.22290605306625366,
+ "learning_rate": 0.0006,
+ "loss": 3.5309581756591797,
+ "step": 4418
+ },
+ {
+ "epoch": 61.37745740498034,
+ "grad_norm": 0.2174215167760849,
+ "learning_rate": 0.0006,
+ "loss": 3.508796453475952,
+ "step": 4419
+ },
+ {
+ "epoch": 61.391437308868504,
+ "grad_norm": 0.23006199300289154,
+ "learning_rate": 0.0006,
+ "loss": 3.5497584342956543,
+ "step": 4420
+ },
+ {
+ "epoch": 61.40541721275666,
+ "grad_norm": 0.2311345487833023,
+ "learning_rate": 0.0006,
+ "loss": 3.5524582862854004,
+ "step": 4421
+ },
+ {
+ "epoch": 61.419397116644824,
+ "grad_norm": 0.2296203076839447,
+ "learning_rate": 0.0006,
+ "loss": 3.5146689414978027,
+ "step": 4422
+ },
+ {
+ "epoch": 61.43337702053299,
+ "grad_norm": 0.24848754703998566,
+ "learning_rate": 0.0006,
+ "loss": 3.489335060119629,
+ "step": 4423
+ },
+ {
+ "epoch": 61.44735692442114,
+ "grad_norm": 0.23717737197875977,
+ "learning_rate": 0.0006,
+ "loss": 3.4982404708862305,
+ "step": 4424
+ },
+ {
+ "epoch": 61.46133682830931,
+ "grad_norm": 0.21826806664466858,
+ "learning_rate": 0.0006,
+ "loss": 3.5134825706481934,
+ "step": 4425
+ },
+ {
+ "epoch": 61.47531673219746,
+ "grad_norm": 0.22878992557525635,
+ "learning_rate": 0.0006,
+ "loss": 3.512604236602783,
+ "step": 4426
+ },
+ {
+ "epoch": 61.489296636085626,
+ "grad_norm": 0.21184465289115906,
+ "learning_rate": 0.0006,
+ "loss": 3.5314245223999023,
+ "step": 4427
+ },
+ {
+ "epoch": 61.50327653997379,
+ "grad_norm": 0.2129429429769516,
+ "learning_rate": 0.0006,
+ "loss": 3.51242733001709,
+ "step": 4428
+ },
+ {
+ "epoch": 61.517256443861946,
+ "grad_norm": 0.21566109359264374,
+ "learning_rate": 0.0006,
+ "loss": 3.5287160873413086,
+ "step": 4429
+ },
+ {
+ "epoch": 61.53123634775011,
+ "grad_norm": 0.2010934203863144,
+ "learning_rate": 0.0006,
+ "loss": 3.5250844955444336,
+ "step": 4430
+ },
+ {
+ "epoch": 61.54521625163827,
+ "grad_norm": 0.1979563683271408,
+ "learning_rate": 0.0006,
+ "loss": 3.553415536880493,
+ "step": 4431
+ },
+ {
+ "epoch": 61.55919615552643,
+ "grad_norm": 0.19513480365276337,
+ "learning_rate": 0.0006,
+ "loss": 3.500551223754883,
+ "step": 4432
+ },
+ {
+ "epoch": 61.57317605941459,
+ "grad_norm": 0.19601108133792877,
+ "learning_rate": 0.0006,
+ "loss": 3.532161235809326,
+ "step": 4433
+ },
+ {
+ "epoch": 61.58715596330275,
+ "grad_norm": 0.2054651528596878,
+ "learning_rate": 0.0006,
+ "loss": 3.5360732078552246,
+ "step": 4434
+ },
+ {
+ "epoch": 61.60113586719091,
+ "grad_norm": 0.2096887230873108,
+ "learning_rate": 0.0006,
+ "loss": 3.522620916366577,
+ "step": 4435
+ },
+ {
+ "epoch": 61.615115771079076,
+ "grad_norm": 0.19664394855499268,
+ "learning_rate": 0.0006,
+ "loss": 3.5298569202423096,
+ "step": 4436
+ },
+ {
+ "epoch": 61.62909567496723,
+ "grad_norm": 0.20641925930976868,
+ "learning_rate": 0.0006,
+ "loss": 3.521233320236206,
+ "step": 4437
+ },
+ {
+ "epoch": 61.643075578855395,
+ "grad_norm": 0.2013241946697235,
+ "learning_rate": 0.0006,
+ "loss": 3.536212682723999,
+ "step": 4438
+ },
+ {
+ "epoch": 61.65705548274356,
+ "grad_norm": 0.19561146199703217,
+ "learning_rate": 0.0006,
+ "loss": 3.569584846496582,
+ "step": 4439
+ },
+ {
+ "epoch": 61.671035386631715,
+ "grad_norm": 0.2281758189201355,
+ "learning_rate": 0.0006,
+ "loss": 3.5208396911621094,
+ "step": 4440
+ },
+ {
+ "epoch": 61.68501529051988,
+ "grad_norm": 0.2387618124485016,
+ "learning_rate": 0.0006,
+ "loss": 3.5338330268859863,
+ "step": 4441
+ },
+ {
+ "epoch": 61.69899519440804,
+ "grad_norm": 0.23753441870212555,
+ "learning_rate": 0.0006,
+ "loss": 3.5454416275024414,
+ "step": 4442
+ },
+ {
+ "epoch": 61.7129750982962,
+ "grad_norm": 0.2477191686630249,
+ "learning_rate": 0.0006,
+ "loss": 3.5409836769104004,
+ "step": 4443
+ },
+ {
+ "epoch": 61.72695500218436,
+ "grad_norm": 0.25156062841415405,
+ "learning_rate": 0.0006,
+ "loss": 3.5135607719421387,
+ "step": 4444
+ },
+ {
+ "epoch": 61.74093490607252,
+ "grad_norm": 0.21422065794467926,
+ "learning_rate": 0.0006,
+ "loss": 3.5514771938323975,
+ "step": 4445
+ },
+ {
+ "epoch": 61.75491480996068,
+ "grad_norm": 0.2103811502456665,
+ "learning_rate": 0.0006,
+ "loss": 3.544037103652954,
+ "step": 4446
+ },
+ {
+ "epoch": 61.768894713848844,
+ "grad_norm": 0.21455387771129608,
+ "learning_rate": 0.0006,
+ "loss": 3.5526280403137207,
+ "step": 4447
+ },
+ {
+ "epoch": 61.782874617737,
+ "grad_norm": 0.22101432085037231,
+ "learning_rate": 0.0006,
+ "loss": 3.510197639465332,
+ "step": 4448
+ },
+ {
+ "epoch": 61.796854521625164,
+ "grad_norm": 0.2093520164489746,
+ "learning_rate": 0.0006,
+ "loss": 3.52504301071167,
+ "step": 4449
+ },
+ {
+ "epoch": 61.81083442551333,
+ "grad_norm": 0.2224605530500412,
+ "learning_rate": 0.0006,
+ "loss": 3.5590806007385254,
+ "step": 4450
+ },
+ {
+ "epoch": 61.824814329401484,
+ "grad_norm": 0.22242501378059387,
+ "learning_rate": 0.0006,
+ "loss": 3.5409610271453857,
+ "step": 4451
+ },
+ {
+ "epoch": 61.83879423328965,
+ "grad_norm": 0.22488343715667725,
+ "learning_rate": 0.0006,
+ "loss": 3.537534236907959,
+ "step": 4452
+ },
+ {
+ "epoch": 61.8527741371778,
+ "grad_norm": 0.23510107398033142,
+ "learning_rate": 0.0006,
+ "loss": 3.5561342239379883,
+ "step": 4453
+ },
+ {
+ "epoch": 61.86675404106597,
+ "grad_norm": 0.237285315990448,
+ "learning_rate": 0.0006,
+ "loss": 3.539592742919922,
+ "step": 4454
+ },
+ {
+ "epoch": 61.88073394495413,
+ "grad_norm": 0.21573765575885773,
+ "learning_rate": 0.0006,
+ "loss": 3.552250385284424,
+ "step": 4455
+ },
+ {
+ "epoch": 61.89471384884229,
+ "grad_norm": 0.20348075032234192,
+ "learning_rate": 0.0006,
+ "loss": 3.5406012535095215,
+ "step": 4456
+ },
+ {
+ "epoch": 61.90869375273045,
+ "grad_norm": 0.21306075155735016,
+ "learning_rate": 0.0006,
+ "loss": 3.504248857498169,
+ "step": 4457
+ },
+ {
+ "epoch": 61.92267365661861,
+ "grad_norm": 0.2184341996908188,
+ "learning_rate": 0.0006,
+ "loss": 3.5441558361053467,
+ "step": 4458
+ },
+ {
+ "epoch": 61.93665356050677,
+ "grad_norm": 0.20888687670230865,
+ "learning_rate": 0.0006,
+ "loss": 3.517657518386841,
+ "step": 4459
+ },
+ {
+ "epoch": 61.95063346439493,
+ "grad_norm": 0.2066143900156021,
+ "learning_rate": 0.0006,
+ "loss": 3.525796890258789,
+ "step": 4460
+ },
+ {
+ "epoch": 61.964613368283096,
+ "grad_norm": 0.1906299591064453,
+ "learning_rate": 0.0006,
+ "loss": 3.550924777984619,
+ "step": 4461
+ },
+ {
+ "epoch": 61.97859327217125,
+ "grad_norm": 0.1834334284067154,
+ "learning_rate": 0.0006,
+ "loss": 3.5818099975585938,
+ "step": 4462
+ },
+ {
+ "epoch": 61.992573176059416,
+ "grad_norm": 0.22725825011730194,
+ "learning_rate": 0.0006,
+ "loss": 3.5573811531066895,
+ "step": 4463
+ },
+ {
+ "epoch": 62.0,
+ "grad_norm": 0.29936420917510986,
+ "learning_rate": 0.0006,
+ "loss": 3.557694435119629,
+ "step": 4464
+ },
+ {
+ "epoch": 62.0,
+ "eval_loss": 3.985543966293335,
+ "eval_runtime": 46.6388,
+ "eval_samples_per_second": 52.36,
+ "eval_steps_per_second": 3.281,
+ "step": 4464
+ },
+ {
+ "epoch": 62.01397990388816,
+ "grad_norm": 0.30896103382110596,
+ "learning_rate": 0.0006,
+ "loss": 3.4991438388824463,
+ "step": 4465
+ },
+ {
+ "epoch": 62.02795980777632,
+ "grad_norm": 0.27383437752723694,
+ "learning_rate": 0.0006,
+ "loss": 3.4710259437561035,
+ "step": 4466
+ },
+ {
+ "epoch": 62.04193971166448,
+ "grad_norm": 0.24412496387958527,
+ "learning_rate": 0.0006,
+ "loss": 3.4983878135681152,
+ "step": 4467
+ },
+ {
+ "epoch": 62.05591961555265,
+ "grad_norm": 0.2649880051612854,
+ "learning_rate": 0.0006,
+ "loss": 3.5481886863708496,
+ "step": 4468
+ },
+ {
+ "epoch": 62.0698995194408,
+ "grad_norm": 0.2625769078731537,
+ "learning_rate": 0.0006,
+ "loss": 3.5114197731018066,
+ "step": 4469
+ },
+ {
+ "epoch": 62.083879423328966,
+ "grad_norm": 0.234181210398674,
+ "learning_rate": 0.0006,
+ "loss": 3.504152536392212,
+ "step": 4470
+ },
+ {
+ "epoch": 62.09785932721712,
+ "grad_norm": 0.21403342485427856,
+ "learning_rate": 0.0006,
+ "loss": 3.50738525390625,
+ "step": 4471
+ },
+ {
+ "epoch": 62.111839231105286,
+ "grad_norm": 0.22780060768127441,
+ "learning_rate": 0.0006,
+ "loss": 3.518354892730713,
+ "step": 4472
+ },
+ {
+ "epoch": 62.12581913499345,
+ "grad_norm": 0.23725424706935883,
+ "learning_rate": 0.0006,
+ "loss": 3.5227513313293457,
+ "step": 4473
+ },
+ {
+ "epoch": 62.139799038881605,
+ "grad_norm": 0.23643283545970917,
+ "learning_rate": 0.0006,
+ "loss": 3.504271984100342,
+ "step": 4474
+ },
+ {
+ "epoch": 62.15377894276977,
+ "grad_norm": 0.22513480484485626,
+ "learning_rate": 0.0006,
+ "loss": 3.5232059955596924,
+ "step": 4475
+ },
+ {
+ "epoch": 62.16775884665793,
+ "grad_norm": 0.23375700414180756,
+ "learning_rate": 0.0006,
+ "loss": 3.506519317626953,
+ "step": 4476
+ },
+ {
+ "epoch": 62.18173875054609,
+ "grad_norm": 0.24691303074359894,
+ "learning_rate": 0.0006,
+ "loss": 3.5212974548339844,
+ "step": 4477
+ },
+ {
+ "epoch": 62.19571865443425,
+ "grad_norm": 0.23466123640537262,
+ "learning_rate": 0.0006,
+ "loss": 3.5295071601867676,
+ "step": 4478
+ },
+ {
+ "epoch": 62.20969855832241,
+ "grad_norm": 0.2432340532541275,
+ "learning_rate": 0.0006,
+ "loss": 3.487830638885498,
+ "step": 4479
+ },
+ {
+ "epoch": 62.22367846221057,
+ "grad_norm": 0.24575389921665192,
+ "learning_rate": 0.0006,
+ "loss": 3.5329103469848633,
+ "step": 4480
+ },
+ {
+ "epoch": 62.237658366098735,
+ "grad_norm": 0.2441941201686859,
+ "learning_rate": 0.0006,
+ "loss": 3.5230906009674072,
+ "step": 4481
+ },
+ {
+ "epoch": 62.25163826998689,
+ "grad_norm": 0.2278154343366623,
+ "learning_rate": 0.0006,
+ "loss": 3.4919002056121826,
+ "step": 4482
+ },
+ {
+ "epoch": 62.265618173875055,
+ "grad_norm": 0.23517796397209167,
+ "learning_rate": 0.0006,
+ "loss": 3.5137887001037598,
+ "step": 4483
+ },
+ {
+ "epoch": 62.27959807776322,
+ "grad_norm": 0.2533835470676422,
+ "learning_rate": 0.0006,
+ "loss": 3.526322841644287,
+ "step": 4484
+ },
+ {
+ "epoch": 62.293577981651374,
+ "grad_norm": 0.24535894393920898,
+ "learning_rate": 0.0006,
+ "loss": 3.5060930252075195,
+ "step": 4485
+ },
+ {
+ "epoch": 62.30755788553954,
+ "grad_norm": 0.23312991857528687,
+ "learning_rate": 0.0006,
+ "loss": 3.5015740394592285,
+ "step": 4486
+ },
+ {
+ "epoch": 62.3215377894277,
+ "grad_norm": 0.2073916792869568,
+ "learning_rate": 0.0006,
+ "loss": 3.5239500999450684,
+ "step": 4487
+ },
+ {
+ "epoch": 62.33551769331586,
+ "grad_norm": 0.23528249561786652,
+ "learning_rate": 0.0006,
+ "loss": 3.4946212768554688,
+ "step": 4488
+ },
+ {
+ "epoch": 62.34949759720402,
+ "grad_norm": 0.25181272625923157,
+ "learning_rate": 0.0006,
+ "loss": 3.5492000579833984,
+ "step": 4489
+ },
+ {
+ "epoch": 62.36347750109218,
+ "grad_norm": 0.250745564699173,
+ "learning_rate": 0.0006,
+ "loss": 3.491637706756592,
+ "step": 4490
+ },
+ {
+ "epoch": 62.37745740498034,
+ "grad_norm": 0.2461264729499817,
+ "learning_rate": 0.0006,
+ "loss": 3.514125108718872,
+ "step": 4491
+ },
+ {
+ "epoch": 62.391437308868504,
+ "grad_norm": 0.2265472114086151,
+ "learning_rate": 0.0006,
+ "loss": 3.5513534545898438,
+ "step": 4492
+ },
+ {
+ "epoch": 62.40541721275666,
+ "grad_norm": 0.21937128901481628,
+ "learning_rate": 0.0006,
+ "loss": 3.541867733001709,
+ "step": 4493
+ },
+ {
+ "epoch": 62.419397116644824,
+ "grad_norm": 0.21318639814853668,
+ "learning_rate": 0.0006,
+ "loss": 3.530449867248535,
+ "step": 4494
+ },
+ {
+ "epoch": 62.43337702053299,
+ "grad_norm": 0.21287934482097626,
+ "learning_rate": 0.0006,
+ "loss": 3.51837158203125,
+ "step": 4495
+ },
+ {
+ "epoch": 62.44735692442114,
+ "grad_norm": 0.21953676640987396,
+ "learning_rate": 0.0006,
+ "loss": 3.517456293106079,
+ "step": 4496
+ },
+ {
+ "epoch": 62.46133682830931,
+ "grad_norm": 0.23475255072116852,
+ "learning_rate": 0.0006,
+ "loss": 3.493858575820923,
+ "step": 4497
+ },
+ {
+ "epoch": 62.47531673219746,
+ "grad_norm": 0.21805652976036072,
+ "learning_rate": 0.0006,
+ "loss": 3.533367872238159,
+ "step": 4498
+ },
+ {
+ "epoch": 62.489296636085626,
+ "grad_norm": 0.21494100987911224,
+ "learning_rate": 0.0006,
+ "loss": 3.509060859680176,
+ "step": 4499
+ },
+ {
+ "epoch": 62.50327653997379,
+ "grad_norm": 0.20512273907661438,
+ "learning_rate": 0.0006,
+ "loss": 3.524643659591675,
+ "step": 4500
+ },
+ {
+ "epoch": 62.517256443861946,
+ "grad_norm": 0.2046528458595276,
+ "learning_rate": 0.0006,
+ "loss": 3.520662784576416,
+ "step": 4501
+ },
+ {
+ "epoch": 62.53123634775011,
+ "grad_norm": 0.21108978986740112,
+ "learning_rate": 0.0006,
+ "loss": 3.5121688842773438,
+ "step": 4502
+ },
+ {
+ "epoch": 62.54521625163827,
+ "grad_norm": 0.19229449331760406,
+ "learning_rate": 0.0006,
+ "loss": 3.5201103687286377,
+ "step": 4503
+ },
+ {
+ "epoch": 62.55919615552643,
+ "grad_norm": 0.1984805464744568,
+ "learning_rate": 0.0006,
+ "loss": 3.546898365020752,
+ "step": 4504
+ },
+ {
+ "epoch": 62.57317605941459,
+ "grad_norm": 0.21615411341190338,
+ "learning_rate": 0.0006,
+ "loss": 3.4933600425720215,
+ "step": 4505
+ },
+ {
+ "epoch": 62.58715596330275,
+ "grad_norm": 0.22868046164512634,
+ "learning_rate": 0.0006,
+ "loss": 3.506098747253418,
+ "step": 4506
+ },
+ {
+ "epoch": 62.60113586719091,
+ "grad_norm": 0.21856851875782013,
+ "learning_rate": 0.0006,
+ "loss": 3.5790011882781982,
+ "step": 4507
+ },
+ {
+ "epoch": 62.615115771079076,
+ "grad_norm": 0.20573008060455322,
+ "learning_rate": 0.0006,
+ "loss": 3.5236854553222656,
+ "step": 4508
+ },
+ {
+ "epoch": 62.62909567496723,
+ "grad_norm": 0.21287901699543,
+ "learning_rate": 0.0006,
+ "loss": 3.5323190689086914,
+ "step": 4509
+ },
+ {
+ "epoch": 62.643075578855395,
+ "grad_norm": 0.22703637182712555,
+ "learning_rate": 0.0006,
+ "loss": 3.5300045013427734,
+ "step": 4510
+ },
+ {
+ "epoch": 62.65705548274356,
+ "grad_norm": 0.2194957137107849,
+ "learning_rate": 0.0006,
+ "loss": 3.5727438926696777,
+ "step": 4511
+ },
+ {
+ "epoch": 62.671035386631715,
+ "grad_norm": 0.22334235906600952,
+ "learning_rate": 0.0006,
+ "loss": 3.521441698074341,
+ "step": 4512
+ },
+ {
+ "epoch": 62.68501529051988,
+ "grad_norm": 0.2559402883052826,
+ "learning_rate": 0.0006,
+ "loss": 3.513730525970459,
+ "step": 4513
+ },
+ {
+ "epoch": 62.69899519440804,
+ "grad_norm": 0.25041815638542175,
+ "learning_rate": 0.0006,
+ "loss": 3.536247968673706,
+ "step": 4514
+ },
+ {
+ "epoch": 62.7129750982962,
+ "grad_norm": 0.24958674609661102,
+ "learning_rate": 0.0006,
+ "loss": 3.5245871543884277,
+ "step": 4515
+ },
+ {
+ "epoch": 62.72695500218436,
+ "grad_norm": 0.22527511417865753,
+ "learning_rate": 0.0006,
+ "loss": 3.508802652359009,
+ "step": 4516
+ },
+ {
+ "epoch": 62.74093490607252,
+ "grad_norm": 0.19455862045288086,
+ "learning_rate": 0.0006,
+ "loss": 3.5296337604522705,
+ "step": 4517
+ },
+ {
+ "epoch": 62.75491480996068,
+ "grad_norm": 0.20303845405578613,
+ "learning_rate": 0.0006,
+ "loss": 3.57499098777771,
+ "step": 4518
+ },
+ {
+ "epoch": 62.768894713848844,
+ "grad_norm": 0.20851430296897888,
+ "learning_rate": 0.0006,
+ "loss": 3.5139262676239014,
+ "step": 4519
+ },
+ {
+ "epoch": 62.782874617737,
+ "grad_norm": 0.19765593111515045,
+ "learning_rate": 0.0006,
+ "loss": 3.5398616790771484,
+ "step": 4520
+ },
+ {
+ "epoch": 62.796854521625164,
+ "grad_norm": 0.20502524077892303,
+ "learning_rate": 0.0006,
+ "loss": 3.5163207054138184,
+ "step": 4521
+ },
+ {
+ "epoch": 62.81083442551333,
+ "grad_norm": 0.20211154222488403,
+ "learning_rate": 0.0006,
+ "loss": 3.5164661407470703,
+ "step": 4522
+ },
+ {
+ "epoch": 62.824814329401484,
+ "grad_norm": 0.19798780977725983,
+ "learning_rate": 0.0006,
+ "loss": 3.533470869064331,
+ "step": 4523
+ },
+ {
+ "epoch": 62.83879423328965,
+ "grad_norm": 0.21921277046203613,
+ "learning_rate": 0.0006,
+ "loss": 3.532498598098755,
+ "step": 4524
+ },
+ {
+ "epoch": 62.8527741371778,
+ "grad_norm": 0.2352060228586197,
+ "learning_rate": 0.0006,
+ "loss": 3.5674972534179688,
+ "step": 4525
+ },
+ {
+ "epoch": 62.86675404106597,
+ "grad_norm": 0.21286381781101227,
+ "learning_rate": 0.0006,
+ "loss": 3.508051872253418,
+ "step": 4526
+ },
+ {
+ "epoch": 62.88073394495413,
+ "grad_norm": 0.21557490527629852,
+ "learning_rate": 0.0006,
+ "loss": 3.5300607681274414,
+ "step": 4527
+ },
+ {
+ "epoch": 62.89471384884229,
+ "grad_norm": 0.23020988702774048,
+ "learning_rate": 0.0006,
+ "loss": 3.508237361907959,
+ "step": 4528
+ },
+ {
+ "epoch": 62.90869375273045,
+ "grad_norm": 0.26428425312042236,
+ "learning_rate": 0.0006,
+ "loss": 3.52371883392334,
+ "step": 4529
+ },
+ {
+ "epoch": 62.92267365661861,
+ "grad_norm": 0.2568773925304413,
+ "learning_rate": 0.0006,
+ "loss": 3.5371956825256348,
+ "step": 4530
+ },
+ {
+ "epoch": 62.93665356050677,
+ "grad_norm": 0.2216598093509674,
+ "learning_rate": 0.0006,
+ "loss": 3.5286736488342285,
+ "step": 4531
+ },
+ {
+ "epoch": 62.95063346439493,
+ "grad_norm": 0.23094940185546875,
+ "learning_rate": 0.0006,
+ "loss": 3.5389769077301025,
+ "step": 4532
+ },
+ {
+ "epoch": 62.964613368283096,
+ "grad_norm": 0.23469413816928864,
+ "learning_rate": 0.0006,
+ "loss": 3.546466588973999,
+ "step": 4533
+ },
+ {
+ "epoch": 62.97859327217125,
+ "grad_norm": 0.2289242148399353,
+ "learning_rate": 0.0006,
+ "loss": 3.565002679824829,
+ "step": 4534
+ },
+ {
+ "epoch": 62.992573176059416,
+ "grad_norm": 0.262317955493927,
+ "learning_rate": 0.0006,
+ "loss": 3.5388731956481934,
+ "step": 4535
+ },
+ {
+ "epoch": 63.0,
+ "grad_norm": 0.273183137178421,
+ "learning_rate": 0.0006,
+ "loss": 3.482903003692627,
+ "step": 4536
+ },
+ {
+ "epoch": 63.0,
+ "eval_loss": 3.973074436187744,
+ "eval_runtime": 45.5476,
+ "eval_samples_per_second": 53.614,
+ "eval_steps_per_second": 3.359,
+ "step": 4536
+ },
+ {
+ "epoch": 63.01397990388816,
+ "grad_norm": 0.22226323187351227,
+ "learning_rate": 0.0006,
+ "loss": 3.483798027038574,
+ "step": 4537
+ },
+ {
+ "epoch": 63.02795980777632,
+ "grad_norm": 0.24443542957305908,
+ "learning_rate": 0.0006,
+ "loss": 3.496903419494629,
+ "step": 4538
+ },
+ {
+ "epoch": 63.04193971166448,
+ "grad_norm": 0.2508153021335602,
+ "learning_rate": 0.0006,
+ "loss": 3.5234804153442383,
+ "step": 4539
+ },
+ {
+ "epoch": 63.05591961555265,
+ "grad_norm": 0.2610569894313812,
+ "learning_rate": 0.0006,
+ "loss": 3.502870798110962,
+ "step": 4540
+ },
+ {
+ "epoch": 63.0698995194408,
+ "grad_norm": 0.27980759739875793,
+ "learning_rate": 0.0006,
+ "loss": 3.50645112991333,
+ "step": 4541
+ },
+ {
+ "epoch": 63.083879423328966,
+ "grad_norm": 0.292883038520813,
+ "learning_rate": 0.0006,
+ "loss": 3.478863000869751,
+ "step": 4542
+ },
+ {
+ "epoch": 63.09785932721712,
+ "grad_norm": 0.2593323588371277,
+ "learning_rate": 0.0006,
+ "loss": 3.506967067718506,
+ "step": 4543
+ },
+ {
+ "epoch": 63.111839231105286,
+ "grad_norm": 0.23973147571086884,
+ "learning_rate": 0.0006,
+ "loss": 3.513401746749878,
+ "step": 4544
+ },
+ {
+ "epoch": 63.12581913499345,
+ "grad_norm": 0.22731348872184753,
+ "learning_rate": 0.0006,
+ "loss": 3.4880478382110596,
+ "step": 4545
+ },
+ {
+ "epoch": 63.139799038881605,
+ "grad_norm": 0.22627407312393188,
+ "learning_rate": 0.0006,
+ "loss": 3.4975132942199707,
+ "step": 4546
+ },
+ {
+ "epoch": 63.15377894276977,
+ "grad_norm": 0.25107741355895996,
+ "learning_rate": 0.0006,
+ "loss": 3.5068140029907227,
+ "step": 4547
+ },
+ {
+ "epoch": 63.16775884665793,
+ "grad_norm": 0.23031412065029144,
+ "learning_rate": 0.0006,
+ "loss": 3.515760898590088,
+ "step": 4548
+ },
+ {
+ "epoch": 63.18173875054609,
+ "grad_norm": 0.21028949320316315,
+ "learning_rate": 0.0006,
+ "loss": 3.521303415298462,
+ "step": 4549
+ },
+ {
+ "epoch": 63.19571865443425,
+ "grad_norm": 0.22366516292095184,
+ "learning_rate": 0.0006,
+ "loss": 3.5283193588256836,
+ "step": 4550
+ },
+ {
+ "epoch": 63.20969855832241,
+ "grad_norm": 0.2176598459482193,
+ "learning_rate": 0.0006,
+ "loss": 3.490306854248047,
+ "step": 4551
+ },
+ {
+ "epoch": 63.22367846221057,
+ "grad_norm": 0.20985916256904602,
+ "learning_rate": 0.0006,
+ "loss": 3.5335614681243896,
+ "step": 4552
+ },
+ {
+ "epoch": 63.237658366098735,
+ "grad_norm": 0.2085118442773819,
+ "learning_rate": 0.0006,
+ "loss": 3.5108132362365723,
+ "step": 4553
+ },
+ {
+ "epoch": 63.25163826998689,
+ "grad_norm": 0.22644028067588806,
+ "learning_rate": 0.0006,
+ "loss": 3.4813215732574463,
+ "step": 4554
+ },
+ {
+ "epoch": 63.265618173875055,
+ "grad_norm": 0.21942120790481567,
+ "learning_rate": 0.0006,
+ "loss": 3.5310909748077393,
+ "step": 4555
+ },
+ {
+ "epoch": 63.27959807776322,
+ "grad_norm": 0.2335938662290573,
+ "learning_rate": 0.0006,
+ "loss": 3.530893564224243,
+ "step": 4556
+ },
+ {
+ "epoch": 63.293577981651374,
+ "grad_norm": 0.2409360110759735,
+ "learning_rate": 0.0006,
+ "loss": 3.5301408767700195,
+ "step": 4557
+ },
+ {
+ "epoch": 63.30755788553954,
+ "grad_norm": 0.2354922890663147,
+ "learning_rate": 0.0006,
+ "loss": 3.5211031436920166,
+ "step": 4558
+ },
+ {
+ "epoch": 63.3215377894277,
+ "grad_norm": 0.23376664519309998,
+ "learning_rate": 0.0006,
+ "loss": 3.538367509841919,
+ "step": 4559
+ },
+ {
+ "epoch": 63.33551769331586,
+ "grad_norm": 0.25319674611091614,
+ "learning_rate": 0.0006,
+ "loss": 3.494905471801758,
+ "step": 4560
+ },
+ {
+ "epoch": 63.34949759720402,
+ "grad_norm": 0.24088945984840393,
+ "learning_rate": 0.0006,
+ "loss": 3.5189433097839355,
+ "step": 4561
+ },
+ {
+ "epoch": 63.36347750109218,
+ "grad_norm": 0.2373911589384079,
+ "learning_rate": 0.0006,
+ "loss": 3.4956908226013184,
+ "step": 4562
+ },
+ {
+ "epoch": 63.37745740498034,
+ "grad_norm": 0.2590023875236511,
+ "learning_rate": 0.0006,
+ "loss": 3.511784076690674,
+ "step": 4563
+ },
+ {
+ "epoch": 63.391437308868504,
+ "grad_norm": 0.2600874900817871,
+ "learning_rate": 0.0006,
+ "loss": 3.478942394256592,
+ "step": 4564
+ },
+ {
+ "epoch": 63.40541721275666,
+ "grad_norm": 0.24018031358718872,
+ "learning_rate": 0.0006,
+ "loss": 3.521773338317871,
+ "step": 4565
+ },
+ {
+ "epoch": 63.419397116644824,
+ "grad_norm": 0.2552972435951233,
+ "learning_rate": 0.0006,
+ "loss": 3.4893441200256348,
+ "step": 4566
+ },
+ {
+ "epoch": 63.43337702053299,
+ "grad_norm": 0.26195958256721497,
+ "learning_rate": 0.0006,
+ "loss": 3.5366687774658203,
+ "step": 4567
+ },
+ {
+ "epoch": 63.44735692442114,
+ "grad_norm": 0.24390678107738495,
+ "learning_rate": 0.0006,
+ "loss": 3.4948301315307617,
+ "step": 4568
+ },
+ {
+ "epoch": 63.46133682830931,
+ "grad_norm": 0.21185952425003052,
+ "learning_rate": 0.0006,
+ "loss": 3.486267566680908,
+ "step": 4569
+ },
+ {
+ "epoch": 63.47531673219746,
+ "grad_norm": 0.21932153403759003,
+ "learning_rate": 0.0006,
+ "loss": 3.499481201171875,
+ "step": 4570
+ },
+ {
+ "epoch": 63.489296636085626,
+ "grad_norm": 0.22503717243671417,
+ "learning_rate": 0.0006,
+ "loss": 3.4932126998901367,
+ "step": 4571
+ },
+ {
+ "epoch": 63.50327653997379,
+ "grad_norm": 0.23853568732738495,
+ "learning_rate": 0.0006,
+ "loss": 3.4893674850463867,
+ "step": 4572
+ },
+ {
+ "epoch": 63.517256443861946,
+ "grad_norm": 0.2531817853450775,
+ "learning_rate": 0.0006,
+ "loss": 3.5391907691955566,
+ "step": 4573
+ },
+ {
+ "epoch": 63.53123634775011,
+ "grad_norm": 0.23776786029338837,
+ "learning_rate": 0.0006,
+ "loss": 3.5097427368164062,
+ "step": 4574
+ },
+ {
+ "epoch": 63.54521625163827,
+ "grad_norm": 0.24308739602565765,
+ "learning_rate": 0.0006,
+ "loss": 3.4988107681274414,
+ "step": 4575
+ },
+ {
+ "epoch": 63.55919615552643,
+ "grad_norm": 0.24214281141757965,
+ "learning_rate": 0.0006,
+ "loss": 3.506901502609253,
+ "step": 4576
+ },
+ {
+ "epoch": 63.57317605941459,
+ "grad_norm": 0.21378614008426666,
+ "learning_rate": 0.0006,
+ "loss": 3.54103684425354,
+ "step": 4577
+ },
+ {
+ "epoch": 63.58715596330275,
+ "grad_norm": 0.21135152876377106,
+ "learning_rate": 0.0006,
+ "loss": 3.534852981567383,
+ "step": 4578
+ },
+ {
+ "epoch": 63.60113586719091,
+ "grad_norm": 0.2335089147090912,
+ "learning_rate": 0.0006,
+ "loss": 3.542457342147827,
+ "step": 4579
+ },
+ {
+ "epoch": 63.615115771079076,
+ "grad_norm": 0.23693214356899261,
+ "learning_rate": 0.0006,
+ "loss": 3.4781997203826904,
+ "step": 4580
+ },
+ {
+ "epoch": 63.62909567496723,
+ "grad_norm": 0.21237023174762726,
+ "learning_rate": 0.0006,
+ "loss": 3.4980621337890625,
+ "step": 4581
+ },
+ {
+ "epoch": 63.643075578855395,
+ "grad_norm": 0.20930461585521698,
+ "learning_rate": 0.0006,
+ "loss": 3.5177974700927734,
+ "step": 4582
+ },
+ {
+ "epoch": 63.65705548274356,
+ "grad_norm": 0.22565403580665588,
+ "learning_rate": 0.0006,
+ "loss": 3.5385828018188477,
+ "step": 4583
+ },
+ {
+ "epoch": 63.671035386631715,
+ "grad_norm": 0.22187408804893494,
+ "learning_rate": 0.0006,
+ "loss": 3.5461559295654297,
+ "step": 4584
+ },
+ {
+ "epoch": 63.68501529051988,
+ "grad_norm": 0.23496168851852417,
+ "learning_rate": 0.0006,
+ "loss": 3.526822090148926,
+ "step": 4585
+ },
+ {
+ "epoch": 63.69899519440804,
+ "grad_norm": 0.2432301938533783,
+ "learning_rate": 0.0006,
+ "loss": 3.5248091220855713,
+ "step": 4586
+ },
+ {
+ "epoch": 63.7129750982962,
+ "grad_norm": 0.22797444462776184,
+ "learning_rate": 0.0006,
+ "loss": 3.5276098251342773,
+ "step": 4587
+ },
+ {
+ "epoch": 63.72695500218436,
+ "grad_norm": 0.2332911491394043,
+ "learning_rate": 0.0006,
+ "loss": 3.5454764366149902,
+ "step": 4588
+ },
+ {
+ "epoch": 63.74093490607252,
+ "grad_norm": 0.23016804456710815,
+ "learning_rate": 0.0006,
+ "loss": 3.519209384918213,
+ "step": 4589
+ },
+ {
+ "epoch": 63.75491480996068,
+ "grad_norm": 0.2160855233669281,
+ "learning_rate": 0.0006,
+ "loss": 3.536961317062378,
+ "step": 4590
+ },
+ {
+ "epoch": 63.768894713848844,
+ "grad_norm": 0.25935620069503784,
+ "learning_rate": 0.0006,
+ "loss": 3.5653820037841797,
+ "step": 4591
+ },
+ {
+ "epoch": 63.782874617737,
+ "grad_norm": 0.26625221967697144,
+ "learning_rate": 0.0006,
+ "loss": 3.5492172241210938,
+ "step": 4592
+ },
+ {
+ "epoch": 63.796854521625164,
+ "grad_norm": 0.25456854701042175,
+ "learning_rate": 0.0006,
+ "loss": 3.516575336456299,
+ "step": 4593
+ },
+ {
+ "epoch": 63.81083442551333,
+ "grad_norm": 0.26114824414253235,
+ "learning_rate": 0.0006,
+ "loss": 3.5429139137268066,
+ "step": 4594
+ },
+ {
+ "epoch": 63.824814329401484,
+ "grad_norm": 0.27836596965789795,
+ "learning_rate": 0.0006,
+ "loss": 3.5567727088928223,
+ "step": 4595
+ },
+ {
+ "epoch": 63.83879423328965,
+ "grad_norm": 0.2674464285373688,
+ "learning_rate": 0.0006,
+ "loss": 3.5093564987182617,
+ "step": 4596
+ },
+ {
+ "epoch": 63.8527741371778,
+ "grad_norm": 0.27393433451652527,
+ "learning_rate": 0.0006,
+ "loss": 3.5500247478485107,
+ "step": 4597
+ },
+ {
+ "epoch": 63.86675404106597,
+ "grad_norm": 0.30968594551086426,
+ "learning_rate": 0.0006,
+ "loss": 3.539085865020752,
+ "step": 4598
+ },
+ {
+ "epoch": 63.88073394495413,
+ "grad_norm": 0.279060423374176,
+ "learning_rate": 0.0006,
+ "loss": 3.517862319946289,
+ "step": 4599
+ },
+ {
+ "epoch": 63.89471384884229,
+ "grad_norm": 0.22436867654323578,
+ "learning_rate": 0.0006,
+ "loss": 3.5714004039764404,
+ "step": 4600
+ },
+ {
+ "epoch": 63.90869375273045,
+ "grad_norm": 0.22473126649856567,
+ "learning_rate": 0.0006,
+ "loss": 3.5212388038635254,
+ "step": 4601
+ },
+ {
+ "epoch": 63.92267365661861,
+ "grad_norm": 0.2802466154098511,
+ "learning_rate": 0.0006,
+ "loss": 3.5112411975860596,
+ "step": 4602
+ },
+ {
+ "epoch": 63.93665356050677,
+ "grad_norm": 0.29435867071151733,
+ "learning_rate": 0.0006,
+ "loss": 3.554875373840332,
+ "step": 4603
+ },
+ {
+ "epoch": 63.95063346439493,
+ "grad_norm": 0.24592025578022003,
+ "learning_rate": 0.0006,
+ "loss": 3.5593767166137695,
+ "step": 4604
+ },
+ {
+ "epoch": 63.964613368283096,
+ "grad_norm": 0.25918886065483093,
+ "learning_rate": 0.0006,
+ "loss": 3.5020017623901367,
+ "step": 4605
+ },
+ {
+ "epoch": 63.97859327217125,
+ "grad_norm": 0.24892419576644897,
+ "learning_rate": 0.0006,
+ "loss": 3.520456314086914,
+ "step": 4606
+ },
+ {
+ "epoch": 63.992573176059416,
+ "grad_norm": 0.24131213128566742,
+ "learning_rate": 0.0006,
+ "loss": 3.5576815605163574,
+ "step": 4607
+ },
+ {
+ "epoch": 64.0,
+ "grad_norm": 0.2348976731300354,
+ "learning_rate": 0.0006,
+ "loss": 3.524242401123047,
+ "step": 4608
+ },
+ {
+ "epoch": 64.0,
+ "eval_loss": 3.972158670425415,
+ "eval_runtime": 45.883,
+ "eval_samples_per_second": 53.222,
+ "eval_steps_per_second": 3.335,
+ "step": 4608
+ },
+ {
+ "epoch": 64.01397990388816,
+ "grad_norm": 0.24034473299980164,
+ "learning_rate": 0.0006,
+ "loss": 3.463156223297119,
+ "step": 4609
+ },
+ {
+ "epoch": 64.02795980777633,
+ "grad_norm": 0.28686341643333435,
+ "learning_rate": 0.0006,
+ "loss": 3.5137135982513428,
+ "step": 4610
+ },
+ {
+ "epoch": 64.04193971166448,
+ "grad_norm": 0.30763131380081177,
+ "learning_rate": 0.0006,
+ "loss": 3.490610361099243,
+ "step": 4611
+ },
+ {
+ "epoch": 64.05591961555264,
+ "grad_norm": 0.2775363624095917,
+ "learning_rate": 0.0006,
+ "loss": 3.516378879547119,
+ "step": 4612
+ },
+ {
+ "epoch": 64.06989951944081,
+ "grad_norm": 0.2643020749092102,
+ "learning_rate": 0.0006,
+ "loss": 3.511389970779419,
+ "step": 4613
+ },
+ {
+ "epoch": 64.08387942332897,
+ "grad_norm": 0.2859032452106476,
+ "learning_rate": 0.0006,
+ "loss": 3.5125572681427,
+ "step": 4614
+ },
+ {
+ "epoch": 64.09785932721712,
+ "grad_norm": 0.28378766775131226,
+ "learning_rate": 0.0006,
+ "loss": 3.4953627586364746,
+ "step": 4615
+ },
+ {
+ "epoch": 64.1118392311053,
+ "grad_norm": 0.2809223234653473,
+ "learning_rate": 0.0006,
+ "loss": 3.5114667415618896,
+ "step": 4616
+ },
+ {
+ "epoch": 64.12581913499345,
+ "grad_norm": 0.251823753118515,
+ "learning_rate": 0.0006,
+ "loss": 3.529876232147217,
+ "step": 4617
+ },
+ {
+ "epoch": 64.1397990388816,
+ "grad_norm": 0.236602321267128,
+ "learning_rate": 0.0006,
+ "loss": 3.5067150592803955,
+ "step": 4618
+ },
+ {
+ "epoch": 64.15377894276976,
+ "grad_norm": 0.2317773550748825,
+ "learning_rate": 0.0006,
+ "loss": 3.5166091918945312,
+ "step": 4619
+ },
+ {
+ "epoch": 64.16775884665793,
+ "grad_norm": 0.2237853854894638,
+ "learning_rate": 0.0006,
+ "loss": 3.492464065551758,
+ "step": 4620
+ },
+ {
+ "epoch": 64.18173875054609,
+ "grad_norm": 0.22309459745883942,
+ "learning_rate": 0.0006,
+ "loss": 3.4892983436584473,
+ "step": 4621
+ },
+ {
+ "epoch": 64.19571865443424,
+ "grad_norm": 0.21838971972465515,
+ "learning_rate": 0.0006,
+ "loss": 3.528764486312866,
+ "step": 4622
+ },
+ {
+ "epoch": 64.20969855832242,
+ "grad_norm": 0.22414161264896393,
+ "learning_rate": 0.0006,
+ "loss": 3.506270170211792,
+ "step": 4623
+ },
+ {
+ "epoch": 64.22367846221057,
+ "grad_norm": 0.22375065088272095,
+ "learning_rate": 0.0006,
+ "loss": 3.4844071865081787,
+ "step": 4624
+ },
+ {
+ "epoch": 64.23765836609873,
+ "grad_norm": 0.2091676890850067,
+ "learning_rate": 0.0006,
+ "loss": 3.4983415603637695,
+ "step": 4625
+ },
+ {
+ "epoch": 64.2516382699869,
+ "grad_norm": 0.22184209525585175,
+ "learning_rate": 0.0006,
+ "loss": 3.4846835136413574,
+ "step": 4626
+ },
+ {
+ "epoch": 64.26561817387505,
+ "grad_norm": 0.21549198031425476,
+ "learning_rate": 0.0006,
+ "loss": 3.4933011531829834,
+ "step": 4627
+ },
+ {
+ "epoch": 64.27959807776321,
+ "grad_norm": 0.21613609790802002,
+ "learning_rate": 0.0006,
+ "loss": 3.523514986038208,
+ "step": 4628
+ },
+ {
+ "epoch": 64.29357798165138,
+ "grad_norm": 0.22394488751888275,
+ "learning_rate": 0.0006,
+ "loss": 3.512820243835449,
+ "step": 4629
+ },
+ {
+ "epoch": 64.30755788553954,
+ "grad_norm": 0.22381016612052917,
+ "learning_rate": 0.0006,
+ "loss": 3.4967026710510254,
+ "step": 4630
+ },
+ {
+ "epoch": 64.3215377894277,
+ "grad_norm": 0.22533059120178223,
+ "learning_rate": 0.0006,
+ "loss": 3.5051097869873047,
+ "step": 4631
+ },
+ {
+ "epoch": 64.33551769331586,
+ "grad_norm": 0.23043590784072876,
+ "learning_rate": 0.0006,
+ "loss": 3.4784820079803467,
+ "step": 4632
+ },
+ {
+ "epoch": 64.34949759720402,
+ "grad_norm": 0.20840506255626678,
+ "learning_rate": 0.0006,
+ "loss": 3.496629238128662,
+ "step": 4633
+ },
+ {
+ "epoch": 64.36347750109218,
+ "grad_norm": 0.20293036103248596,
+ "learning_rate": 0.0006,
+ "loss": 3.500199317932129,
+ "step": 4634
+ },
+ {
+ "epoch": 64.37745740498035,
+ "grad_norm": 0.20510733127593994,
+ "learning_rate": 0.0006,
+ "loss": 3.4943113327026367,
+ "step": 4635
+ },
+ {
+ "epoch": 64.3914373088685,
+ "grad_norm": 0.21207642555236816,
+ "learning_rate": 0.0006,
+ "loss": 3.5024590492248535,
+ "step": 4636
+ },
+ {
+ "epoch": 64.40541721275666,
+ "grad_norm": 0.19878660142421722,
+ "learning_rate": 0.0006,
+ "loss": 3.5065855979919434,
+ "step": 4637
+ },
+ {
+ "epoch": 64.41939711664482,
+ "grad_norm": 0.22502431273460388,
+ "learning_rate": 0.0006,
+ "loss": 3.527764081954956,
+ "step": 4638
+ },
+ {
+ "epoch": 64.43337702053299,
+ "grad_norm": 0.2167922705411911,
+ "learning_rate": 0.0006,
+ "loss": 3.5075361728668213,
+ "step": 4639
+ },
+ {
+ "epoch": 64.44735692442114,
+ "grad_norm": 0.21200154721736908,
+ "learning_rate": 0.0006,
+ "loss": 3.5339698791503906,
+ "step": 4640
+ },
+ {
+ "epoch": 64.4613368283093,
+ "grad_norm": 0.22495608031749725,
+ "learning_rate": 0.0006,
+ "loss": 3.5342869758605957,
+ "step": 4641
+ },
+ {
+ "epoch": 64.47531673219747,
+ "grad_norm": 0.21426217257976532,
+ "learning_rate": 0.0006,
+ "loss": 3.5065689086914062,
+ "step": 4642
+ },
+ {
+ "epoch": 64.48929663608563,
+ "grad_norm": 0.19980023801326752,
+ "learning_rate": 0.0006,
+ "loss": 3.508183002471924,
+ "step": 4643
+ },
+ {
+ "epoch": 64.50327653997378,
+ "grad_norm": 0.2054566591978073,
+ "learning_rate": 0.0006,
+ "loss": 3.5098650455474854,
+ "step": 4644
+ },
+ {
+ "epoch": 64.51725644386195,
+ "grad_norm": 0.2038603276014328,
+ "learning_rate": 0.0006,
+ "loss": 3.517388105392456,
+ "step": 4645
+ },
+ {
+ "epoch": 64.53123634775011,
+ "grad_norm": 0.22438357770442963,
+ "learning_rate": 0.0006,
+ "loss": 3.5215954780578613,
+ "step": 4646
+ },
+ {
+ "epoch": 64.54521625163827,
+ "grad_norm": 0.23507612943649292,
+ "learning_rate": 0.0006,
+ "loss": 3.488262176513672,
+ "step": 4647
+ },
+ {
+ "epoch": 64.55919615552644,
+ "grad_norm": 0.21669664978981018,
+ "learning_rate": 0.0006,
+ "loss": 3.4945027828216553,
+ "step": 4648
+ },
+ {
+ "epoch": 64.57317605941459,
+ "grad_norm": 0.20035886764526367,
+ "learning_rate": 0.0006,
+ "loss": 3.516415596008301,
+ "step": 4649
+ },
+ {
+ "epoch": 64.58715596330275,
+ "grad_norm": 0.21818110346794128,
+ "learning_rate": 0.0006,
+ "loss": 3.4944982528686523,
+ "step": 4650
+ },
+ {
+ "epoch": 64.60113586719092,
+ "grad_norm": 0.20609644055366516,
+ "learning_rate": 0.0006,
+ "loss": 3.4914844036102295,
+ "step": 4651
+ },
+ {
+ "epoch": 64.61511577107908,
+ "grad_norm": 0.21921353042125702,
+ "learning_rate": 0.0006,
+ "loss": 3.5292391777038574,
+ "step": 4652
+ },
+ {
+ "epoch": 64.62909567496723,
+ "grad_norm": 0.23570363223552704,
+ "learning_rate": 0.0006,
+ "loss": 3.5353617668151855,
+ "step": 4653
+ },
+ {
+ "epoch": 64.6430755788554,
+ "grad_norm": 0.20933061838150024,
+ "learning_rate": 0.0006,
+ "loss": 3.524240016937256,
+ "step": 4654
+ },
+ {
+ "epoch": 64.65705548274356,
+ "grad_norm": 0.22739441692829132,
+ "learning_rate": 0.0006,
+ "loss": 3.529047966003418,
+ "step": 4655
+ },
+ {
+ "epoch": 64.67103538663171,
+ "grad_norm": 0.22208894789218903,
+ "learning_rate": 0.0006,
+ "loss": 3.5492024421691895,
+ "step": 4656
+ },
+ {
+ "epoch": 64.68501529051987,
+ "grad_norm": 0.23031534254550934,
+ "learning_rate": 0.0006,
+ "loss": 3.532979726791382,
+ "step": 4657
+ },
+ {
+ "epoch": 64.69899519440804,
+ "grad_norm": 0.25316348671913147,
+ "learning_rate": 0.0006,
+ "loss": 3.5105819702148438,
+ "step": 4658
+ },
+ {
+ "epoch": 64.7129750982962,
+ "grad_norm": 0.23601582646369934,
+ "learning_rate": 0.0006,
+ "loss": 3.5270726680755615,
+ "step": 4659
+ },
+ {
+ "epoch": 64.72695500218435,
+ "grad_norm": 0.20309361815452576,
+ "learning_rate": 0.0006,
+ "loss": 3.5072035789489746,
+ "step": 4660
+ },
+ {
+ "epoch": 64.74093490607252,
+ "grad_norm": 0.21525762975215912,
+ "learning_rate": 0.0006,
+ "loss": 3.531649112701416,
+ "step": 4661
+ },
+ {
+ "epoch": 64.75491480996068,
+ "grad_norm": 0.2262735813856125,
+ "learning_rate": 0.0006,
+ "loss": 3.5053927898406982,
+ "step": 4662
+ },
+ {
+ "epoch": 64.76889471384884,
+ "grad_norm": 0.2223973125219345,
+ "learning_rate": 0.0006,
+ "loss": 3.5400562286376953,
+ "step": 4663
+ },
+ {
+ "epoch": 64.78287461773701,
+ "grad_norm": 0.22822168469429016,
+ "learning_rate": 0.0006,
+ "loss": 3.502312421798706,
+ "step": 4664
+ },
+ {
+ "epoch": 64.79685452162516,
+ "grad_norm": 0.2337028533220291,
+ "learning_rate": 0.0006,
+ "loss": 3.524888038635254,
+ "step": 4665
+ },
+ {
+ "epoch": 64.81083442551332,
+ "grad_norm": 0.22423268854618073,
+ "learning_rate": 0.0006,
+ "loss": 3.5380213260650635,
+ "step": 4666
+ },
+ {
+ "epoch": 64.82481432940149,
+ "grad_norm": 0.21429643034934998,
+ "learning_rate": 0.0006,
+ "loss": 3.5499157905578613,
+ "step": 4667
+ },
+ {
+ "epoch": 64.83879423328965,
+ "grad_norm": 0.22421850264072418,
+ "learning_rate": 0.0006,
+ "loss": 3.5034070014953613,
+ "step": 4668
+ },
+ {
+ "epoch": 64.8527741371778,
+ "grad_norm": 0.21886403858661652,
+ "learning_rate": 0.0006,
+ "loss": 3.5276694297790527,
+ "step": 4669
+ },
+ {
+ "epoch": 64.86675404106597,
+ "grad_norm": 0.2404339462518692,
+ "learning_rate": 0.0006,
+ "loss": 3.515219211578369,
+ "step": 4670
+ },
+ {
+ "epoch": 64.88073394495413,
+ "grad_norm": 0.2837470769882202,
+ "learning_rate": 0.0006,
+ "loss": 3.561008930206299,
+ "step": 4671
+ },
+ {
+ "epoch": 64.89471384884229,
+ "grad_norm": 0.3101402223110199,
+ "learning_rate": 0.0006,
+ "loss": 3.556626319885254,
+ "step": 4672
+ },
+ {
+ "epoch": 64.90869375273044,
+ "grad_norm": 0.30606821179389954,
+ "learning_rate": 0.0006,
+ "loss": 3.540271282196045,
+ "step": 4673
+ },
+ {
+ "epoch": 64.92267365661861,
+ "grad_norm": 0.2715052664279938,
+ "learning_rate": 0.0006,
+ "loss": 3.5128841400146484,
+ "step": 4674
+ },
+ {
+ "epoch": 64.93665356050677,
+ "grad_norm": 0.24061815440654755,
+ "learning_rate": 0.0006,
+ "loss": 3.554208278656006,
+ "step": 4675
+ },
+ {
+ "epoch": 64.95063346439493,
+ "grad_norm": 0.23540185391902924,
+ "learning_rate": 0.0006,
+ "loss": 3.544139862060547,
+ "step": 4676
+ },
+ {
+ "epoch": 64.9646133682831,
+ "grad_norm": 0.26172906160354614,
+ "learning_rate": 0.0006,
+ "loss": 3.567110061645508,
+ "step": 4677
+ },
+ {
+ "epoch": 64.97859327217125,
+ "grad_norm": 0.2766035795211792,
+ "learning_rate": 0.0006,
+ "loss": 3.494391918182373,
+ "step": 4678
+ },
+ {
+ "epoch": 64.99257317605941,
+ "grad_norm": 0.2400948703289032,
+ "learning_rate": 0.0006,
+ "loss": 3.5130133628845215,
+ "step": 4679
+ },
+ {
+ "epoch": 65.0,
+ "grad_norm": 0.24790917336940765,
+ "learning_rate": 0.0006,
+ "loss": 3.5481390953063965,
+ "step": 4680
+ },
+ {
+ "epoch": 65.0,
+ "eval_loss": 3.976747989654541,
+ "eval_runtime": 46.3575,
+ "eval_samples_per_second": 52.678,
+ "eval_steps_per_second": 3.3,
+ "step": 4680
+ },
+ {
+ "epoch": 65.01397990388816,
+ "grad_norm": 0.22275416553020477,
+ "learning_rate": 0.0006,
+ "loss": 3.4832773208618164,
+ "step": 4681
+ },
+ {
+ "epoch": 65.02795980777633,
+ "grad_norm": 0.23779742419719696,
+ "learning_rate": 0.0006,
+ "loss": 3.5049266815185547,
+ "step": 4682
+ },
+ {
+ "epoch": 65.04193971166448,
+ "grad_norm": 0.2394440770149231,
+ "learning_rate": 0.0006,
+ "loss": 3.5335357189178467,
+ "step": 4683
+ },
+ {
+ "epoch": 65.05591961555264,
+ "grad_norm": 0.22160623967647552,
+ "learning_rate": 0.0006,
+ "loss": 3.5066094398498535,
+ "step": 4684
+ },
+ {
+ "epoch": 65.06989951944081,
+ "grad_norm": 0.22387197613716125,
+ "learning_rate": 0.0006,
+ "loss": 3.474155902862549,
+ "step": 4685
+ },
+ {
+ "epoch": 65.08387942332897,
+ "grad_norm": 0.24355316162109375,
+ "learning_rate": 0.0006,
+ "loss": 3.4905145168304443,
+ "step": 4686
+ },
+ {
+ "epoch": 65.09785932721712,
+ "grad_norm": 0.25801026821136475,
+ "learning_rate": 0.0006,
+ "loss": 3.50339937210083,
+ "step": 4687
+ },
+ {
+ "epoch": 65.1118392311053,
+ "grad_norm": 0.26155906915664673,
+ "learning_rate": 0.0006,
+ "loss": 3.523623466491699,
+ "step": 4688
+ },
+ {
+ "epoch": 65.12581913499345,
+ "grad_norm": 0.2512831389904022,
+ "learning_rate": 0.0006,
+ "loss": 3.490898609161377,
+ "step": 4689
+ },
+ {
+ "epoch": 65.1397990388816,
+ "grad_norm": 0.25024810433387756,
+ "learning_rate": 0.0006,
+ "loss": 3.4742162227630615,
+ "step": 4690
+ },
+ {
+ "epoch": 65.15377894276976,
+ "grad_norm": 0.27639806270599365,
+ "learning_rate": 0.0006,
+ "loss": 3.503298282623291,
+ "step": 4691
+ },
+ {
+ "epoch": 65.16775884665793,
+ "grad_norm": 0.2543538510799408,
+ "learning_rate": 0.0006,
+ "loss": 3.4785704612731934,
+ "step": 4692
+ },
+ {
+ "epoch": 65.18173875054609,
+ "grad_norm": 0.24148274958133698,
+ "learning_rate": 0.0006,
+ "loss": 3.48526668548584,
+ "step": 4693
+ },
+ {
+ "epoch": 65.19571865443424,
+ "grad_norm": 0.2161206603050232,
+ "learning_rate": 0.0006,
+ "loss": 3.477449417114258,
+ "step": 4694
+ },
+ {
+ "epoch": 65.20969855832242,
+ "grad_norm": 0.21417468786239624,
+ "learning_rate": 0.0006,
+ "loss": 3.5010929107666016,
+ "step": 4695
+ },
+ {
+ "epoch": 65.22367846221057,
+ "grad_norm": 0.22810059785842896,
+ "learning_rate": 0.0006,
+ "loss": 3.4384589195251465,
+ "step": 4696
+ },
+ {
+ "epoch": 65.23765836609873,
+ "grad_norm": 0.23555037379264832,
+ "learning_rate": 0.0006,
+ "loss": 3.4912073612213135,
+ "step": 4697
+ },
+ {
+ "epoch": 65.2516382699869,
+ "grad_norm": 0.2628633975982666,
+ "learning_rate": 0.0006,
+ "loss": 3.4763574600219727,
+ "step": 4698
+ },
+ {
+ "epoch": 65.26561817387505,
+ "grad_norm": 0.2515856921672821,
+ "learning_rate": 0.0006,
+ "loss": 3.480222463607788,
+ "step": 4699
+ },
+ {
+ "epoch": 65.27959807776321,
+ "grad_norm": 0.19862835109233856,
+ "learning_rate": 0.0006,
+ "loss": 3.510263204574585,
+ "step": 4700
+ },
+ {
+ "epoch": 65.29357798165138,
+ "grad_norm": 0.22558043897151947,
+ "learning_rate": 0.0006,
+ "loss": 3.4952306747436523,
+ "step": 4701
+ },
+ {
+ "epoch": 65.30755788553954,
+ "grad_norm": 0.2351200133562088,
+ "learning_rate": 0.0006,
+ "loss": 3.5010221004486084,
+ "step": 4702
+ },
+ {
+ "epoch": 65.3215377894277,
+ "grad_norm": 0.21748903393745422,
+ "learning_rate": 0.0006,
+ "loss": 3.5186777114868164,
+ "step": 4703
+ },
+ {
+ "epoch": 65.33551769331586,
+ "grad_norm": 0.2073124349117279,
+ "learning_rate": 0.0006,
+ "loss": 3.5397891998291016,
+ "step": 4704
+ },
+ {
+ "epoch": 65.34949759720402,
+ "grad_norm": 0.1948464810848236,
+ "learning_rate": 0.0006,
+ "loss": 3.5413217544555664,
+ "step": 4705
+ },
+ {
+ "epoch": 65.36347750109218,
+ "grad_norm": 0.19741199910640717,
+ "learning_rate": 0.0006,
+ "loss": 3.515199899673462,
+ "step": 4706
+ },
+ {
+ "epoch": 65.37745740498035,
+ "grad_norm": 0.22518441081047058,
+ "learning_rate": 0.0006,
+ "loss": 3.512284278869629,
+ "step": 4707
+ },
+ {
+ "epoch": 65.3914373088685,
+ "grad_norm": 0.24368613958358765,
+ "learning_rate": 0.0006,
+ "loss": 3.528355121612549,
+ "step": 4708
+ },
+ {
+ "epoch": 65.40541721275666,
+ "grad_norm": 0.21857064962387085,
+ "learning_rate": 0.0006,
+ "loss": 3.494401454925537,
+ "step": 4709
+ },
+ {
+ "epoch": 65.41939711664482,
+ "grad_norm": 0.2199285924434662,
+ "learning_rate": 0.0006,
+ "loss": 3.49814772605896,
+ "step": 4710
+ },
+ {
+ "epoch": 65.43337702053299,
+ "grad_norm": 0.23801206052303314,
+ "learning_rate": 0.0006,
+ "loss": 3.4678444862365723,
+ "step": 4711
+ },
+ {
+ "epoch": 65.44735692442114,
+ "grad_norm": 0.231369748711586,
+ "learning_rate": 0.0006,
+ "loss": 3.501521587371826,
+ "step": 4712
+ },
+ {
+ "epoch": 65.4613368283093,
+ "grad_norm": 0.20447038114070892,
+ "learning_rate": 0.0006,
+ "loss": 3.508510112762451,
+ "step": 4713
+ },
+ {
+ "epoch": 65.47531673219747,
+ "grad_norm": 0.21331779658794403,
+ "learning_rate": 0.0006,
+ "loss": 3.498544692993164,
+ "step": 4714
+ },
+ {
+ "epoch": 65.48929663608563,
+ "grad_norm": 0.2365437150001526,
+ "learning_rate": 0.0006,
+ "loss": 3.4972000122070312,
+ "step": 4715
+ },
+ {
+ "epoch": 65.50327653997378,
+ "grad_norm": 0.2236112356185913,
+ "learning_rate": 0.0006,
+ "loss": 3.5397965908050537,
+ "step": 4716
+ },
+ {
+ "epoch": 65.51725644386195,
+ "grad_norm": 0.20595021545886993,
+ "learning_rate": 0.0006,
+ "loss": 3.532902717590332,
+ "step": 4717
+ },
+ {
+ "epoch": 65.53123634775011,
+ "grad_norm": 0.2043730616569519,
+ "learning_rate": 0.0006,
+ "loss": 3.5136585235595703,
+ "step": 4718
+ },
+ {
+ "epoch": 65.54521625163827,
+ "grad_norm": 0.21925127506256104,
+ "learning_rate": 0.0006,
+ "loss": 3.526590347290039,
+ "step": 4719
+ },
+ {
+ "epoch": 65.55919615552644,
+ "grad_norm": 0.21580299735069275,
+ "learning_rate": 0.0006,
+ "loss": 3.530301332473755,
+ "step": 4720
+ },
+ {
+ "epoch": 65.57317605941459,
+ "grad_norm": 0.2296830266714096,
+ "learning_rate": 0.0006,
+ "loss": 3.527580976486206,
+ "step": 4721
+ },
+ {
+ "epoch": 65.58715596330275,
+ "grad_norm": 0.21846120059490204,
+ "learning_rate": 0.0006,
+ "loss": 3.524075746536255,
+ "step": 4722
+ },
+ {
+ "epoch": 65.60113586719092,
+ "grad_norm": 0.19835807383060455,
+ "learning_rate": 0.0006,
+ "loss": 3.4560012817382812,
+ "step": 4723
+ },
+ {
+ "epoch": 65.61511577107908,
+ "grad_norm": 0.20501157641410828,
+ "learning_rate": 0.0006,
+ "loss": 3.508017063140869,
+ "step": 4724
+ },
+ {
+ "epoch": 65.62909567496723,
+ "grad_norm": 0.21347478032112122,
+ "learning_rate": 0.0006,
+ "loss": 3.5479536056518555,
+ "step": 4725
+ },
+ {
+ "epoch": 65.6430755788554,
+ "grad_norm": 0.19286541640758514,
+ "learning_rate": 0.0006,
+ "loss": 3.537360906600952,
+ "step": 4726
+ },
+ {
+ "epoch": 65.65705548274356,
+ "grad_norm": 0.19364185631275177,
+ "learning_rate": 0.0006,
+ "loss": 3.5186867713928223,
+ "step": 4727
+ },
+ {
+ "epoch": 65.67103538663171,
+ "grad_norm": 0.19047997891902924,
+ "learning_rate": 0.0006,
+ "loss": 3.5242767333984375,
+ "step": 4728
+ },
+ {
+ "epoch": 65.68501529051987,
+ "grad_norm": 0.19712361693382263,
+ "learning_rate": 0.0006,
+ "loss": 3.5176010131835938,
+ "step": 4729
+ },
+ {
+ "epoch": 65.69899519440804,
+ "grad_norm": 0.2034953087568283,
+ "learning_rate": 0.0006,
+ "loss": 3.510268211364746,
+ "step": 4730
+ },
+ {
+ "epoch": 65.7129750982962,
+ "grad_norm": 0.20022697746753693,
+ "learning_rate": 0.0006,
+ "loss": 3.53619647026062,
+ "step": 4731
+ },
+ {
+ "epoch": 65.72695500218435,
+ "grad_norm": 0.20698072016239166,
+ "learning_rate": 0.0006,
+ "loss": 3.5179615020751953,
+ "step": 4732
+ },
+ {
+ "epoch": 65.74093490607252,
+ "grad_norm": 0.2297508418560028,
+ "learning_rate": 0.0006,
+ "loss": 3.5308024883270264,
+ "step": 4733
+ },
+ {
+ "epoch": 65.75491480996068,
+ "grad_norm": 0.227255716919899,
+ "learning_rate": 0.0006,
+ "loss": 3.5443387031555176,
+ "step": 4734
+ },
+ {
+ "epoch": 65.76889471384884,
+ "grad_norm": 0.21772262454032898,
+ "learning_rate": 0.0006,
+ "loss": 3.52345871925354,
+ "step": 4735
+ },
+ {
+ "epoch": 65.78287461773701,
+ "grad_norm": 0.22124525904655457,
+ "learning_rate": 0.0006,
+ "loss": 3.5262577533721924,
+ "step": 4736
+ },
+ {
+ "epoch": 65.79685452162516,
+ "grad_norm": 0.22992224991321564,
+ "learning_rate": 0.0006,
+ "loss": 3.531507730484009,
+ "step": 4737
+ },
+ {
+ "epoch": 65.81083442551332,
+ "grad_norm": 0.24775296449661255,
+ "learning_rate": 0.0006,
+ "loss": 3.4781999588012695,
+ "step": 4738
+ },
+ {
+ "epoch": 65.82481432940149,
+ "grad_norm": 0.24917690455913544,
+ "learning_rate": 0.0006,
+ "loss": 3.5157413482666016,
+ "step": 4739
+ },
+ {
+ "epoch": 65.83879423328965,
+ "grad_norm": 0.23374824225902557,
+ "learning_rate": 0.0006,
+ "loss": 3.536634683609009,
+ "step": 4740
+ },
+ {
+ "epoch": 65.8527741371778,
+ "grad_norm": 0.25592541694641113,
+ "learning_rate": 0.0006,
+ "loss": 3.5343942642211914,
+ "step": 4741
+ },
+ {
+ "epoch": 65.86675404106597,
+ "grad_norm": 0.2698819935321808,
+ "learning_rate": 0.0006,
+ "loss": 3.4906277656555176,
+ "step": 4742
+ },
+ {
+ "epoch": 65.88073394495413,
+ "grad_norm": 0.2175036370754242,
+ "learning_rate": 0.0006,
+ "loss": 3.506230354309082,
+ "step": 4743
+ },
+ {
+ "epoch": 65.89471384884229,
+ "grad_norm": 0.22451810538768768,
+ "learning_rate": 0.0006,
+ "loss": 3.5139262676239014,
+ "step": 4744
+ },
+ {
+ "epoch": 65.90869375273044,
+ "grad_norm": 0.24293720722198486,
+ "learning_rate": 0.0006,
+ "loss": 3.528148651123047,
+ "step": 4745
+ },
+ {
+ "epoch": 65.92267365661861,
+ "grad_norm": 0.2138707935810089,
+ "learning_rate": 0.0006,
+ "loss": 3.516911029815674,
+ "step": 4746
+ },
+ {
+ "epoch": 65.93665356050677,
+ "grad_norm": 0.2216160148382187,
+ "learning_rate": 0.0006,
+ "loss": 3.540201187133789,
+ "step": 4747
+ },
+ {
+ "epoch": 65.95063346439493,
+ "grad_norm": 0.2276899367570877,
+ "learning_rate": 0.0006,
+ "loss": 3.525435447692871,
+ "step": 4748
+ },
+ {
+ "epoch": 65.9646133682831,
+ "grad_norm": 0.2441754788160324,
+ "learning_rate": 0.0006,
+ "loss": 3.5337369441986084,
+ "step": 4749
+ },
+ {
+ "epoch": 65.97859327217125,
+ "grad_norm": 0.2364634871482849,
+ "learning_rate": 0.0006,
+ "loss": 3.5289382934570312,
+ "step": 4750
+ },
+ {
+ "epoch": 65.99257317605941,
+ "grad_norm": 0.2322802096605301,
+ "learning_rate": 0.0006,
+ "loss": 3.519960403442383,
+ "step": 4751
+ },
+ {
+ "epoch": 66.0,
+ "grad_norm": 0.28910940885543823,
+ "learning_rate": 0.0006,
+ "loss": 3.535785436630249,
+ "step": 4752
+ },
+ {
+ "epoch": 66.0,
+ "eval_loss": 3.9755074977874756,
+ "eval_runtime": 44.9956,
+ "eval_samples_per_second": 54.272,
+ "eval_steps_per_second": 3.4,
+ "step": 4752
+ },
+ {
+ "epoch": 66.01397990388816,
+ "grad_norm": 0.2833491861820221,
+ "learning_rate": 0.0006,
+ "loss": 3.4532885551452637,
+ "step": 4753
+ },
+ {
+ "epoch": 66.02795980777633,
+ "grad_norm": 0.31011638045310974,
+ "learning_rate": 0.0006,
+ "loss": 3.5164999961853027,
+ "step": 4754
+ },
+ {
+ "epoch": 66.04193971166448,
+ "grad_norm": 0.34583768248558044,
+ "learning_rate": 0.0006,
+ "loss": 3.463331937789917,
+ "step": 4755
+ },
+ {
+ "epoch": 66.05591961555264,
+ "grad_norm": 0.3586544990539551,
+ "learning_rate": 0.0006,
+ "loss": 3.4739010334014893,
+ "step": 4756
+ },
+ {
+ "epoch": 66.06989951944081,
+ "grad_norm": 0.32337963581085205,
+ "learning_rate": 0.0006,
+ "loss": 3.5309596061706543,
+ "step": 4757
+ },
+ {
+ "epoch": 66.08387942332897,
+ "grad_norm": 0.3091002404689789,
+ "learning_rate": 0.0006,
+ "loss": 3.479280471801758,
+ "step": 4758
+ },
+ {
+ "epoch": 66.09785932721712,
+ "grad_norm": 0.29722821712493896,
+ "learning_rate": 0.0006,
+ "loss": 3.52632999420166,
+ "step": 4759
+ },
+ {
+ "epoch": 66.1118392311053,
+ "grad_norm": 0.2636614739894867,
+ "learning_rate": 0.0006,
+ "loss": 3.4953694343566895,
+ "step": 4760
+ },
+ {
+ "epoch": 66.12581913499345,
+ "grad_norm": 0.2646677494049072,
+ "learning_rate": 0.0006,
+ "loss": 3.519223213195801,
+ "step": 4761
+ },
+ {
+ "epoch": 66.1397990388816,
+ "grad_norm": 0.26999902725219727,
+ "learning_rate": 0.0006,
+ "loss": 3.500627040863037,
+ "step": 4762
+ },
+ {
+ "epoch": 66.15377894276976,
+ "grad_norm": 0.26489800214767456,
+ "learning_rate": 0.0006,
+ "loss": 3.486992120742798,
+ "step": 4763
+ },
+ {
+ "epoch": 66.16775884665793,
+ "grad_norm": 0.23870280385017395,
+ "learning_rate": 0.0006,
+ "loss": 3.5312767028808594,
+ "step": 4764
+ },
+ {
+ "epoch": 66.18173875054609,
+ "grad_norm": 0.260374516248703,
+ "learning_rate": 0.0006,
+ "loss": 3.529757499694824,
+ "step": 4765
+ },
+ {
+ "epoch": 66.19571865443424,
+ "grad_norm": 0.22300437092781067,
+ "learning_rate": 0.0006,
+ "loss": 3.534423351287842,
+ "step": 4766
+ },
+ {
+ "epoch": 66.20969855832242,
+ "grad_norm": 0.22216713428497314,
+ "learning_rate": 0.0006,
+ "loss": 3.4944376945495605,
+ "step": 4767
+ },
+ {
+ "epoch": 66.22367846221057,
+ "grad_norm": 0.22038567066192627,
+ "learning_rate": 0.0006,
+ "loss": 3.500737190246582,
+ "step": 4768
+ },
+ {
+ "epoch": 66.23765836609873,
+ "grad_norm": 0.23068127036094666,
+ "learning_rate": 0.0006,
+ "loss": 3.486678123474121,
+ "step": 4769
+ },
+ {
+ "epoch": 66.2516382699869,
+ "grad_norm": 0.22809696197509766,
+ "learning_rate": 0.0006,
+ "loss": 3.49131441116333,
+ "step": 4770
+ },
+ {
+ "epoch": 66.26561817387505,
+ "grad_norm": 0.2096482366323471,
+ "learning_rate": 0.0006,
+ "loss": 3.462193012237549,
+ "step": 4771
+ },
+ {
+ "epoch": 66.27959807776321,
+ "grad_norm": 0.20821219682693481,
+ "learning_rate": 0.0006,
+ "loss": 3.482736110687256,
+ "step": 4772
+ },
+ {
+ "epoch": 66.29357798165138,
+ "grad_norm": 0.20735417306423187,
+ "learning_rate": 0.0006,
+ "loss": 3.4810829162597656,
+ "step": 4773
+ },
+ {
+ "epoch": 66.30755788553954,
+ "grad_norm": 0.21598318219184875,
+ "learning_rate": 0.0006,
+ "loss": 3.5151000022888184,
+ "step": 4774
+ },
+ {
+ "epoch": 66.3215377894277,
+ "grad_norm": 0.20589035749435425,
+ "learning_rate": 0.0006,
+ "loss": 3.4938106536865234,
+ "step": 4775
+ },
+ {
+ "epoch": 66.33551769331586,
+ "grad_norm": 0.22494125366210938,
+ "learning_rate": 0.0006,
+ "loss": 3.4739134311676025,
+ "step": 4776
+ },
+ {
+ "epoch": 66.34949759720402,
+ "grad_norm": 0.24715618789196014,
+ "learning_rate": 0.0006,
+ "loss": 3.492598295211792,
+ "step": 4777
+ },
+ {
+ "epoch": 66.36347750109218,
+ "grad_norm": 0.26689210534095764,
+ "learning_rate": 0.0006,
+ "loss": 3.5183334350585938,
+ "step": 4778
+ },
+ {
+ "epoch": 66.37745740498035,
+ "grad_norm": 0.29018405079841614,
+ "learning_rate": 0.0006,
+ "loss": 3.4874320030212402,
+ "step": 4779
+ },
+ {
+ "epoch": 66.3914373088685,
+ "grad_norm": 0.2511773109436035,
+ "learning_rate": 0.0006,
+ "loss": 3.5105361938476562,
+ "step": 4780
+ },
+ {
+ "epoch": 66.40541721275666,
+ "grad_norm": 0.20808005332946777,
+ "learning_rate": 0.0006,
+ "loss": 3.4932327270507812,
+ "step": 4781
+ },
+ {
+ "epoch": 66.41939711664482,
+ "grad_norm": 0.21036715805530548,
+ "learning_rate": 0.0006,
+ "loss": 3.5223588943481445,
+ "step": 4782
+ },
+ {
+ "epoch": 66.43337702053299,
+ "grad_norm": 0.2151600569486618,
+ "learning_rate": 0.0006,
+ "loss": 3.491854190826416,
+ "step": 4783
+ },
+ {
+ "epoch": 66.44735692442114,
+ "grad_norm": 0.23702189326286316,
+ "learning_rate": 0.0006,
+ "loss": 3.4869368076324463,
+ "step": 4784
+ },
+ {
+ "epoch": 66.4613368283093,
+ "grad_norm": 0.23089149594306946,
+ "learning_rate": 0.0006,
+ "loss": 3.5014419555664062,
+ "step": 4785
+ },
+ {
+ "epoch": 66.47531673219747,
+ "grad_norm": 0.25527265667915344,
+ "learning_rate": 0.0006,
+ "loss": 3.5148048400878906,
+ "step": 4786
+ },
+ {
+ "epoch": 66.48929663608563,
+ "grad_norm": 0.2308386117219925,
+ "learning_rate": 0.0006,
+ "loss": 3.5196022987365723,
+ "step": 4787
+ },
+ {
+ "epoch": 66.50327653997378,
+ "grad_norm": 0.23467418551445007,
+ "learning_rate": 0.0006,
+ "loss": 3.478280544281006,
+ "step": 4788
+ },
+ {
+ "epoch": 66.51725644386195,
+ "grad_norm": 0.23607908189296722,
+ "learning_rate": 0.0006,
+ "loss": 3.4826481342315674,
+ "step": 4789
+ },
+ {
+ "epoch": 66.53123634775011,
+ "grad_norm": 0.255309522151947,
+ "learning_rate": 0.0006,
+ "loss": 3.498870849609375,
+ "step": 4790
+ },
+ {
+ "epoch": 66.54521625163827,
+ "grad_norm": 0.29246363043785095,
+ "learning_rate": 0.0006,
+ "loss": 3.544440269470215,
+ "step": 4791
+ },
+ {
+ "epoch": 66.55919615552644,
+ "grad_norm": 0.2658552825450897,
+ "learning_rate": 0.0006,
+ "loss": 3.4844512939453125,
+ "step": 4792
+ },
+ {
+ "epoch": 66.57317605941459,
+ "grad_norm": 0.23498542606830597,
+ "learning_rate": 0.0006,
+ "loss": 3.5411434173583984,
+ "step": 4793
+ },
+ {
+ "epoch": 66.58715596330275,
+ "grad_norm": 0.2616438567638397,
+ "learning_rate": 0.0006,
+ "loss": 3.501821994781494,
+ "step": 4794
+ },
+ {
+ "epoch": 66.60113586719092,
+ "grad_norm": 0.2577981650829315,
+ "learning_rate": 0.0006,
+ "loss": 3.519040584564209,
+ "step": 4795
+ },
+ {
+ "epoch": 66.61511577107908,
+ "grad_norm": 0.25896304845809937,
+ "learning_rate": 0.0006,
+ "loss": 3.514458656311035,
+ "step": 4796
+ },
+ {
+ "epoch": 66.62909567496723,
+ "grad_norm": 0.26136472821235657,
+ "learning_rate": 0.0006,
+ "loss": 3.5054283142089844,
+ "step": 4797
+ },
+ {
+ "epoch": 66.6430755788554,
+ "grad_norm": 0.2134191244840622,
+ "learning_rate": 0.0006,
+ "loss": 3.551358222961426,
+ "step": 4798
+ },
+ {
+ "epoch": 66.65705548274356,
+ "grad_norm": 0.20154543220996857,
+ "learning_rate": 0.0006,
+ "loss": 3.5363516807556152,
+ "step": 4799
+ },
+ {
+ "epoch": 66.67103538663171,
+ "grad_norm": 0.20807082951068878,
+ "learning_rate": 0.0006,
+ "loss": 3.4861817359924316,
+ "step": 4800
+ },
+ {
+ "epoch": 66.68501529051987,
+ "grad_norm": 0.22268050909042358,
+ "learning_rate": 0.0006,
+ "loss": 3.5229034423828125,
+ "step": 4801
+ },
+ {
+ "epoch": 66.69899519440804,
+ "grad_norm": 0.21031907200813293,
+ "learning_rate": 0.0006,
+ "loss": 3.499587059020996,
+ "step": 4802
+ },
+ {
+ "epoch": 66.7129750982962,
+ "grad_norm": 0.207321435213089,
+ "learning_rate": 0.0006,
+ "loss": 3.5246481895446777,
+ "step": 4803
+ },
+ {
+ "epoch": 66.72695500218435,
+ "grad_norm": 0.21961352229118347,
+ "learning_rate": 0.0006,
+ "loss": 3.5126147270202637,
+ "step": 4804
+ },
+ {
+ "epoch": 66.74093490607252,
+ "grad_norm": 0.2144167572259903,
+ "learning_rate": 0.0006,
+ "loss": 3.5319013595581055,
+ "step": 4805
+ },
+ {
+ "epoch": 66.75491480996068,
+ "grad_norm": 0.19109441339969635,
+ "learning_rate": 0.0006,
+ "loss": 3.5124895572662354,
+ "step": 4806
+ },
+ {
+ "epoch": 66.76889471384884,
+ "grad_norm": 0.20463025569915771,
+ "learning_rate": 0.0006,
+ "loss": 3.5368666648864746,
+ "step": 4807
+ },
+ {
+ "epoch": 66.78287461773701,
+ "grad_norm": 0.20978771150112152,
+ "learning_rate": 0.0006,
+ "loss": 3.5166687965393066,
+ "step": 4808
+ },
+ {
+ "epoch": 66.79685452162516,
+ "grad_norm": 0.2258925437927246,
+ "learning_rate": 0.0006,
+ "loss": 3.532341957092285,
+ "step": 4809
+ },
+ {
+ "epoch": 66.81083442551332,
+ "grad_norm": 0.21758350729942322,
+ "learning_rate": 0.0006,
+ "loss": 3.5155858993530273,
+ "step": 4810
+ },
+ {
+ "epoch": 66.82481432940149,
+ "grad_norm": 0.20124484598636627,
+ "learning_rate": 0.0006,
+ "loss": 3.491522789001465,
+ "step": 4811
+ },
+ {
+ "epoch": 66.83879423328965,
+ "grad_norm": 0.21627238392829895,
+ "learning_rate": 0.0006,
+ "loss": 3.5303220748901367,
+ "step": 4812
+ },
+ {
+ "epoch": 66.8527741371778,
+ "grad_norm": 0.21125555038452148,
+ "learning_rate": 0.0006,
+ "loss": 3.535466194152832,
+ "step": 4813
+ },
+ {
+ "epoch": 66.86675404106597,
+ "grad_norm": 0.2247028350830078,
+ "learning_rate": 0.0006,
+ "loss": 3.51188325881958,
+ "step": 4814
+ },
+ {
+ "epoch": 66.88073394495413,
+ "grad_norm": 0.21800914406776428,
+ "learning_rate": 0.0006,
+ "loss": 3.5084712505340576,
+ "step": 4815
+ },
+ {
+ "epoch": 66.89471384884229,
+ "grad_norm": 0.2118908166885376,
+ "learning_rate": 0.0006,
+ "loss": 3.5099692344665527,
+ "step": 4816
+ },
+ {
+ "epoch": 66.90869375273044,
+ "grad_norm": 0.22638460993766785,
+ "learning_rate": 0.0006,
+ "loss": 3.5099596977233887,
+ "step": 4817
+ },
+ {
+ "epoch": 66.92267365661861,
+ "grad_norm": 0.1987311840057373,
+ "learning_rate": 0.0006,
+ "loss": 3.5497078895568848,
+ "step": 4818
+ },
+ {
+ "epoch": 66.93665356050677,
+ "grad_norm": 0.21048952639102936,
+ "learning_rate": 0.0006,
+ "loss": 3.524364948272705,
+ "step": 4819
+ },
+ {
+ "epoch": 66.95063346439493,
+ "grad_norm": 0.21481701731681824,
+ "learning_rate": 0.0006,
+ "loss": 3.5121915340423584,
+ "step": 4820
+ },
+ {
+ "epoch": 66.9646133682831,
+ "grad_norm": 0.22060725092887878,
+ "learning_rate": 0.0006,
+ "loss": 3.5288822650909424,
+ "step": 4821
+ },
+ {
+ "epoch": 66.97859327217125,
+ "grad_norm": 0.22192992269992828,
+ "learning_rate": 0.0006,
+ "loss": 3.504401206970215,
+ "step": 4822
+ },
+ {
+ "epoch": 66.99257317605941,
+ "grad_norm": 0.21677598357200623,
+ "learning_rate": 0.0006,
+ "loss": 3.5447967052459717,
+ "step": 4823
+ },
+ {
+ "epoch": 67.0,
+ "grad_norm": 0.24961385130882263,
+ "learning_rate": 0.0006,
+ "loss": 3.4890012741088867,
+ "step": 4824
+ },
+ {
+ "epoch": 67.0,
+ "eval_loss": 3.9784040451049805,
+ "eval_runtime": 45.0843,
+ "eval_samples_per_second": 54.165,
+ "eval_steps_per_second": 3.394,
+ "step": 4824
+ },
+ {
+ "epoch": 67.01397990388816,
+ "grad_norm": 0.22992873191833496,
+ "learning_rate": 0.0006,
+ "loss": 3.470973491668701,
+ "step": 4825
+ },
+ {
+ "epoch": 67.02795980777633,
+ "grad_norm": 0.2189949005842209,
+ "learning_rate": 0.0006,
+ "loss": 3.4956774711608887,
+ "step": 4826
+ },
+ {
+ "epoch": 67.04193971166448,
+ "grad_norm": 0.22506096959114075,
+ "learning_rate": 0.0006,
+ "loss": 3.448911190032959,
+ "step": 4827
+ },
+ {
+ "epoch": 67.05591961555264,
+ "grad_norm": 0.2447187304496765,
+ "learning_rate": 0.0006,
+ "loss": 3.465512275695801,
+ "step": 4828
+ },
+ {
+ "epoch": 67.06989951944081,
+ "grad_norm": 0.27052751183509827,
+ "learning_rate": 0.0006,
+ "loss": 3.493760824203491,
+ "step": 4829
+ },
+ {
+ "epoch": 67.08387942332897,
+ "grad_norm": 0.29693296551704407,
+ "learning_rate": 0.0006,
+ "loss": 3.4922988414764404,
+ "step": 4830
+ },
+ {
+ "epoch": 67.09785932721712,
+ "grad_norm": 0.27461376786231995,
+ "learning_rate": 0.0006,
+ "loss": 3.4782471656799316,
+ "step": 4831
+ },
+ {
+ "epoch": 67.1118392311053,
+ "grad_norm": 0.21409225463867188,
+ "learning_rate": 0.0006,
+ "loss": 3.4636545181274414,
+ "step": 4832
+ },
+ {
+ "epoch": 67.12581913499345,
+ "grad_norm": 0.24362294375896454,
+ "learning_rate": 0.0006,
+ "loss": 3.4836316108703613,
+ "step": 4833
+ },
+ {
+ "epoch": 67.1397990388816,
+ "grad_norm": 0.3237941265106201,
+ "learning_rate": 0.0006,
+ "loss": 3.4853315353393555,
+ "step": 4834
+ },
+ {
+ "epoch": 67.15377894276976,
+ "grad_norm": 0.3138698935508728,
+ "learning_rate": 0.0006,
+ "loss": 3.5045557022094727,
+ "step": 4835
+ },
+ {
+ "epoch": 67.16775884665793,
+ "grad_norm": 0.24102728068828583,
+ "learning_rate": 0.0006,
+ "loss": 3.450237512588501,
+ "step": 4836
+ },
+ {
+ "epoch": 67.18173875054609,
+ "grad_norm": 0.22504228353500366,
+ "learning_rate": 0.0006,
+ "loss": 3.5141711235046387,
+ "step": 4837
+ },
+ {
+ "epoch": 67.19571865443424,
+ "grad_norm": 0.2226196974515915,
+ "learning_rate": 0.0006,
+ "loss": 3.4973597526550293,
+ "step": 4838
+ },
+ {
+ "epoch": 67.20969855832242,
+ "grad_norm": 0.23295332491397858,
+ "learning_rate": 0.0006,
+ "loss": 3.455085277557373,
+ "step": 4839
+ },
+ {
+ "epoch": 67.22367846221057,
+ "grad_norm": 0.24799001216888428,
+ "learning_rate": 0.0006,
+ "loss": 3.5016517639160156,
+ "step": 4840
+ },
+ {
+ "epoch": 67.23765836609873,
+ "grad_norm": 0.2431265115737915,
+ "learning_rate": 0.0006,
+ "loss": 3.5138516426086426,
+ "step": 4841
+ },
+ {
+ "epoch": 67.2516382699869,
+ "grad_norm": 0.22402037680149078,
+ "learning_rate": 0.0006,
+ "loss": 3.5154635906219482,
+ "step": 4842
+ },
+ {
+ "epoch": 67.26561817387505,
+ "grad_norm": 0.2097088098526001,
+ "learning_rate": 0.0006,
+ "loss": 3.512531280517578,
+ "step": 4843
+ },
+ {
+ "epoch": 67.27959807776321,
+ "grad_norm": 0.21303699910640717,
+ "learning_rate": 0.0006,
+ "loss": 3.489511728286743,
+ "step": 4844
+ },
+ {
+ "epoch": 67.29357798165138,
+ "grad_norm": 0.2164260894060135,
+ "learning_rate": 0.0006,
+ "loss": 3.521756172180176,
+ "step": 4845
+ },
+ {
+ "epoch": 67.30755788553954,
+ "grad_norm": 0.2179967612028122,
+ "learning_rate": 0.0006,
+ "loss": 3.4991297721862793,
+ "step": 4846
+ },
+ {
+ "epoch": 67.3215377894277,
+ "grad_norm": 0.21892501413822174,
+ "learning_rate": 0.0006,
+ "loss": 3.475011110305786,
+ "step": 4847
+ },
+ {
+ "epoch": 67.33551769331586,
+ "grad_norm": 0.2372686117887497,
+ "learning_rate": 0.0006,
+ "loss": 3.49537992477417,
+ "step": 4848
+ },
+ {
+ "epoch": 67.34949759720402,
+ "grad_norm": 0.24897949397563934,
+ "learning_rate": 0.0006,
+ "loss": 3.4762938022613525,
+ "step": 4849
+ },
+ {
+ "epoch": 67.36347750109218,
+ "grad_norm": 0.24987933039665222,
+ "learning_rate": 0.0006,
+ "loss": 3.511708974838257,
+ "step": 4850
+ },
+ {
+ "epoch": 67.37745740498035,
+ "grad_norm": 0.24062976241111755,
+ "learning_rate": 0.0006,
+ "loss": 3.4955873489379883,
+ "step": 4851
+ },
+ {
+ "epoch": 67.3914373088685,
+ "grad_norm": 0.2277272790670395,
+ "learning_rate": 0.0006,
+ "loss": 3.5036606788635254,
+ "step": 4852
+ },
+ {
+ "epoch": 67.40541721275666,
+ "grad_norm": 0.23996487259864807,
+ "learning_rate": 0.0006,
+ "loss": 3.515568971633911,
+ "step": 4853
+ },
+ {
+ "epoch": 67.41939711664482,
+ "grad_norm": 0.23224318027496338,
+ "learning_rate": 0.0006,
+ "loss": 3.4915125370025635,
+ "step": 4854
+ },
+ {
+ "epoch": 67.43337702053299,
+ "grad_norm": 0.21011298894882202,
+ "learning_rate": 0.0006,
+ "loss": 3.5076327323913574,
+ "step": 4855
+ },
+ {
+ "epoch": 67.44735692442114,
+ "grad_norm": 0.21975480020046234,
+ "learning_rate": 0.0006,
+ "loss": 3.4929163455963135,
+ "step": 4856
+ },
+ {
+ "epoch": 67.4613368283093,
+ "grad_norm": 0.21966299414634705,
+ "learning_rate": 0.0006,
+ "loss": 3.50154447555542,
+ "step": 4857
+ },
+ {
+ "epoch": 67.47531673219747,
+ "grad_norm": 0.2167058289051056,
+ "learning_rate": 0.0006,
+ "loss": 3.4866533279418945,
+ "step": 4858
+ },
+ {
+ "epoch": 67.48929663608563,
+ "grad_norm": 0.2072296291589737,
+ "learning_rate": 0.0006,
+ "loss": 3.506241798400879,
+ "step": 4859
+ },
+ {
+ "epoch": 67.50327653997378,
+ "grad_norm": 0.2358800321817398,
+ "learning_rate": 0.0006,
+ "loss": 3.51871919631958,
+ "step": 4860
+ },
+ {
+ "epoch": 67.51725644386195,
+ "grad_norm": 0.2841838598251343,
+ "learning_rate": 0.0006,
+ "loss": 3.531181812286377,
+ "step": 4861
+ },
+ {
+ "epoch": 67.53123634775011,
+ "grad_norm": 0.2744826078414917,
+ "learning_rate": 0.0006,
+ "loss": 3.4916810989379883,
+ "step": 4862
+ },
+ {
+ "epoch": 67.54521625163827,
+ "grad_norm": 0.229517862200737,
+ "learning_rate": 0.0006,
+ "loss": 3.522495746612549,
+ "step": 4863
+ },
+ {
+ "epoch": 67.55919615552644,
+ "grad_norm": 0.22933268547058105,
+ "learning_rate": 0.0006,
+ "loss": 3.522249698638916,
+ "step": 4864
+ },
+ {
+ "epoch": 67.57317605941459,
+ "grad_norm": 0.2578641176223755,
+ "learning_rate": 0.0006,
+ "loss": 3.497955799102783,
+ "step": 4865
+ },
+ {
+ "epoch": 67.58715596330275,
+ "grad_norm": 0.26098695397377014,
+ "learning_rate": 0.0006,
+ "loss": 3.508647918701172,
+ "step": 4866
+ },
+ {
+ "epoch": 67.60113586719092,
+ "grad_norm": 0.26429283618927,
+ "learning_rate": 0.0006,
+ "loss": 3.504948139190674,
+ "step": 4867
+ },
+ {
+ "epoch": 67.61511577107908,
+ "grad_norm": 0.2604367136955261,
+ "learning_rate": 0.0006,
+ "loss": 3.529656410217285,
+ "step": 4868
+ },
+ {
+ "epoch": 67.62909567496723,
+ "grad_norm": 0.26351016759872437,
+ "learning_rate": 0.0006,
+ "loss": 3.497729778289795,
+ "step": 4869
+ },
+ {
+ "epoch": 67.6430755788554,
+ "grad_norm": 0.23902031779289246,
+ "learning_rate": 0.0006,
+ "loss": 3.5174601078033447,
+ "step": 4870
+ },
+ {
+ "epoch": 67.65705548274356,
+ "grad_norm": 0.2439061552286148,
+ "learning_rate": 0.0006,
+ "loss": 3.472304344177246,
+ "step": 4871
+ },
+ {
+ "epoch": 67.67103538663171,
+ "grad_norm": 0.28729668259620667,
+ "learning_rate": 0.0006,
+ "loss": 3.4945883750915527,
+ "step": 4872
+ },
+ {
+ "epoch": 67.68501529051987,
+ "grad_norm": 0.2690763771533966,
+ "learning_rate": 0.0006,
+ "loss": 3.524843215942383,
+ "step": 4873
+ },
+ {
+ "epoch": 67.69899519440804,
+ "grad_norm": 0.24424311518669128,
+ "learning_rate": 0.0006,
+ "loss": 3.5337445735931396,
+ "step": 4874
+ },
+ {
+ "epoch": 67.7129750982962,
+ "grad_norm": 0.25736868381500244,
+ "learning_rate": 0.0006,
+ "loss": 3.51664400100708,
+ "step": 4875
+ },
+ {
+ "epoch": 67.72695500218435,
+ "grad_norm": 0.24504248797893524,
+ "learning_rate": 0.0006,
+ "loss": 3.5089268684387207,
+ "step": 4876
+ },
+ {
+ "epoch": 67.74093490607252,
+ "grad_norm": 0.24296091496944427,
+ "learning_rate": 0.0006,
+ "loss": 3.5506460666656494,
+ "step": 4877
+ },
+ {
+ "epoch": 67.75491480996068,
+ "grad_norm": 0.24984019994735718,
+ "learning_rate": 0.0006,
+ "loss": 3.5290684700012207,
+ "step": 4878
+ },
+ {
+ "epoch": 67.76889471384884,
+ "grad_norm": 0.23878677189350128,
+ "learning_rate": 0.0006,
+ "loss": 3.522343635559082,
+ "step": 4879
+ },
+ {
+ "epoch": 67.78287461773701,
+ "grad_norm": 0.2275245040655136,
+ "learning_rate": 0.0006,
+ "loss": 3.5218796730041504,
+ "step": 4880
+ },
+ {
+ "epoch": 67.79685452162516,
+ "grad_norm": 0.21045760810375214,
+ "learning_rate": 0.0006,
+ "loss": 3.512430191040039,
+ "step": 4881
+ },
+ {
+ "epoch": 67.81083442551332,
+ "grad_norm": 0.21902696788311005,
+ "learning_rate": 0.0006,
+ "loss": 3.537611484527588,
+ "step": 4882
+ },
+ {
+ "epoch": 67.82481432940149,
+ "grad_norm": 0.20757564902305603,
+ "learning_rate": 0.0006,
+ "loss": 3.470278263092041,
+ "step": 4883
+ },
+ {
+ "epoch": 67.83879423328965,
+ "grad_norm": 0.22352434694766998,
+ "learning_rate": 0.0006,
+ "loss": 3.4816718101501465,
+ "step": 4884
+ },
+ {
+ "epoch": 67.8527741371778,
+ "grad_norm": 0.20459680259227753,
+ "learning_rate": 0.0006,
+ "loss": 3.508671998977661,
+ "step": 4885
+ },
+ {
+ "epoch": 67.86675404106597,
+ "grad_norm": 0.20641672611236572,
+ "learning_rate": 0.0006,
+ "loss": 3.500471591949463,
+ "step": 4886
+ },
+ {
+ "epoch": 67.88073394495413,
+ "grad_norm": 0.20340596139431,
+ "learning_rate": 0.0006,
+ "loss": 3.5282673835754395,
+ "step": 4887
+ },
+ {
+ "epoch": 67.89471384884229,
+ "grad_norm": 0.20768426358699799,
+ "learning_rate": 0.0006,
+ "loss": 3.528446912765503,
+ "step": 4888
+ },
+ {
+ "epoch": 67.90869375273044,
+ "grad_norm": 0.19998659193515778,
+ "learning_rate": 0.0006,
+ "loss": 3.501742124557495,
+ "step": 4889
+ },
+ {
+ "epoch": 67.92267365661861,
+ "grad_norm": 0.20472751557826996,
+ "learning_rate": 0.0006,
+ "loss": 3.510523796081543,
+ "step": 4890
+ },
+ {
+ "epoch": 67.93665356050677,
+ "grad_norm": 0.21528398990631104,
+ "learning_rate": 0.0006,
+ "loss": 3.529409170150757,
+ "step": 4891
+ },
+ {
+ "epoch": 67.95063346439493,
+ "grad_norm": 0.19671283662319183,
+ "learning_rate": 0.0006,
+ "loss": 3.5512051582336426,
+ "step": 4892
+ },
+ {
+ "epoch": 67.9646133682831,
+ "grad_norm": 0.20629945397377014,
+ "learning_rate": 0.0006,
+ "loss": 3.5127525329589844,
+ "step": 4893
+ },
+ {
+ "epoch": 67.97859327217125,
+ "grad_norm": 0.2121579945087433,
+ "learning_rate": 0.0006,
+ "loss": 3.5242156982421875,
+ "step": 4894
+ },
+ {
+ "epoch": 67.99257317605941,
+ "grad_norm": 0.20770777761936188,
+ "learning_rate": 0.0006,
+ "loss": 3.5094361305236816,
+ "step": 4895
+ },
+ {
+ "epoch": 68.0,
+ "grad_norm": 0.2619984447956085,
+ "learning_rate": 0.0006,
+ "loss": 3.491684675216675,
+ "step": 4896
+ },
+ {
+ "epoch": 68.0,
+ "eval_loss": 3.97202730178833,
+ "eval_runtime": 44.2471,
+ "eval_samples_per_second": 55.19,
+ "eval_steps_per_second": 3.458,
+ "step": 4896
+ },
+ {
+ "epoch": 68.01397990388816,
+ "grad_norm": 0.25237807631492615,
+ "learning_rate": 0.0006,
+ "loss": 3.4720845222473145,
+ "step": 4897
+ },
+ {
+ "epoch": 68.02795980777633,
+ "grad_norm": 0.26686927676200867,
+ "learning_rate": 0.0006,
+ "loss": 3.4825453758239746,
+ "step": 4898
+ },
+ {
+ "epoch": 68.04193971166448,
+ "grad_norm": 0.2826477885246277,
+ "learning_rate": 0.0006,
+ "loss": 3.489805221557617,
+ "step": 4899
+ },
+ {
+ "epoch": 68.05591961555264,
+ "grad_norm": 0.291363000869751,
+ "learning_rate": 0.0006,
+ "loss": 3.464585304260254,
+ "step": 4900
+ },
+ {
+ "epoch": 68.06989951944081,
+ "grad_norm": 0.2645387649536133,
+ "learning_rate": 0.0006,
+ "loss": 3.4891953468322754,
+ "step": 4901
+ },
+ {
+ "epoch": 68.08387942332897,
+ "grad_norm": 0.2398659586906433,
+ "learning_rate": 0.0006,
+ "loss": 3.474371910095215,
+ "step": 4902
+ },
+ {
+ "epoch": 68.09785932721712,
+ "grad_norm": 0.23359309136867523,
+ "learning_rate": 0.0006,
+ "loss": 3.5011367797851562,
+ "step": 4903
+ },
+ {
+ "epoch": 68.1118392311053,
+ "grad_norm": 0.235616534948349,
+ "learning_rate": 0.0006,
+ "loss": 3.472562551498413,
+ "step": 4904
+ },
+ {
+ "epoch": 68.12581913499345,
+ "grad_norm": 0.25396600365638733,
+ "learning_rate": 0.0006,
+ "loss": 3.484182834625244,
+ "step": 4905
+ },
+ {
+ "epoch": 68.1397990388816,
+ "grad_norm": 0.2668958604335785,
+ "learning_rate": 0.0006,
+ "loss": 3.4625918865203857,
+ "step": 4906
+ },
+ {
+ "epoch": 68.15377894276976,
+ "grad_norm": 0.2608959674835205,
+ "learning_rate": 0.0006,
+ "loss": 3.4769415855407715,
+ "step": 4907
+ },
+ {
+ "epoch": 68.16775884665793,
+ "grad_norm": 0.2817389667034149,
+ "learning_rate": 0.0006,
+ "loss": 3.4722979068756104,
+ "step": 4908
+ },
+ {
+ "epoch": 68.18173875054609,
+ "grad_norm": 0.24425546824932098,
+ "learning_rate": 0.0006,
+ "loss": 3.4710354804992676,
+ "step": 4909
+ },
+ {
+ "epoch": 68.19571865443424,
+ "grad_norm": 0.2355373501777649,
+ "learning_rate": 0.0006,
+ "loss": 3.475369453430176,
+ "step": 4910
+ },
+ {
+ "epoch": 68.20969855832242,
+ "grad_norm": 0.23627427220344543,
+ "learning_rate": 0.0006,
+ "loss": 3.50154447555542,
+ "step": 4911
+ },
+ {
+ "epoch": 68.22367846221057,
+ "grad_norm": 0.21174706518650055,
+ "learning_rate": 0.0006,
+ "loss": 3.5018253326416016,
+ "step": 4912
+ },
+ {
+ "epoch": 68.23765836609873,
+ "grad_norm": 0.2101593017578125,
+ "learning_rate": 0.0006,
+ "loss": 3.4931211471557617,
+ "step": 4913
+ },
+ {
+ "epoch": 68.2516382699869,
+ "grad_norm": 0.21808475255966187,
+ "learning_rate": 0.0006,
+ "loss": 3.5047576427459717,
+ "step": 4914
+ },
+ {
+ "epoch": 68.26561817387505,
+ "grad_norm": 0.2354060262441635,
+ "learning_rate": 0.0006,
+ "loss": 3.471801996231079,
+ "step": 4915
+ },
+ {
+ "epoch": 68.27959807776321,
+ "grad_norm": 0.2839724123477936,
+ "learning_rate": 0.0006,
+ "loss": 3.4861397743225098,
+ "step": 4916
+ },
+ {
+ "epoch": 68.29357798165138,
+ "grad_norm": 0.2884398102760315,
+ "learning_rate": 0.0006,
+ "loss": 3.497713088989258,
+ "step": 4917
+ },
+ {
+ "epoch": 68.30755788553954,
+ "grad_norm": 0.24654951691627502,
+ "learning_rate": 0.0006,
+ "loss": 3.4795613288879395,
+ "step": 4918
+ },
+ {
+ "epoch": 68.3215377894277,
+ "grad_norm": 0.22197365760803223,
+ "learning_rate": 0.0006,
+ "loss": 3.495490550994873,
+ "step": 4919
+ },
+ {
+ "epoch": 68.33551769331586,
+ "grad_norm": 0.22666935622692108,
+ "learning_rate": 0.0006,
+ "loss": 3.4859418869018555,
+ "step": 4920
+ },
+ {
+ "epoch": 68.34949759720402,
+ "grad_norm": 0.22135236859321594,
+ "learning_rate": 0.0006,
+ "loss": 3.475436210632324,
+ "step": 4921
+ },
+ {
+ "epoch": 68.36347750109218,
+ "grad_norm": 0.28992167115211487,
+ "learning_rate": 0.0006,
+ "loss": 3.5220274925231934,
+ "step": 4922
+ },
+ {
+ "epoch": 68.37745740498035,
+ "grad_norm": 0.296501100063324,
+ "learning_rate": 0.0006,
+ "loss": 3.4783244132995605,
+ "step": 4923
+ },
+ {
+ "epoch": 68.3914373088685,
+ "grad_norm": 0.24111351370811462,
+ "learning_rate": 0.0006,
+ "loss": 3.4972972869873047,
+ "step": 4924
+ },
+ {
+ "epoch": 68.40541721275666,
+ "grad_norm": 0.22319315373897552,
+ "learning_rate": 0.0006,
+ "loss": 3.517050266265869,
+ "step": 4925
+ },
+ {
+ "epoch": 68.41939711664482,
+ "grad_norm": 0.20984329283237457,
+ "learning_rate": 0.0006,
+ "loss": 3.5097880363464355,
+ "step": 4926
+ },
+ {
+ "epoch": 68.43337702053299,
+ "grad_norm": 0.2221212387084961,
+ "learning_rate": 0.0006,
+ "loss": 3.4824156761169434,
+ "step": 4927
+ },
+ {
+ "epoch": 68.44735692442114,
+ "grad_norm": 0.23731078207492828,
+ "learning_rate": 0.0006,
+ "loss": 3.5319526195526123,
+ "step": 4928
+ },
+ {
+ "epoch": 68.4613368283093,
+ "grad_norm": 0.233421191573143,
+ "learning_rate": 0.0006,
+ "loss": 3.4952187538146973,
+ "step": 4929
+ },
+ {
+ "epoch": 68.47531673219747,
+ "grad_norm": 0.2320558875799179,
+ "learning_rate": 0.0006,
+ "loss": 3.5152385234832764,
+ "step": 4930
+ },
+ {
+ "epoch": 68.48929663608563,
+ "grad_norm": 0.21786290407180786,
+ "learning_rate": 0.0006,
+ "loss": 3.4857373237609863,
+ "step": 4931
+ },
+ {
+ "epoch": 68.50327653997378,
+ "grad_norm": 0.20560047030448914,
+ "learning_rate": 0.0006,
+ "loss": 3.487344264984131,
+ "step": 4932
+ },
+ {
+ "epoch": 68.51725644386195,
+ "grad_norm": 0.2326865941286087,
+ "learning_rate": 0.0006,
+ "loss": 3.5202066898345947,
+ "step": 4933
+ },
+ {
+ "epoch": 68.53123634775011,
+ "grad_norm": 0.2338377833366394,
+ "learning_rate": 0.0006,
+ "loss": 3.4967358112335205,
+ "step": 4934
+ },
+ {
+ "epoch": 68.54521625163827,
+ "grad_norm": 0.22698800265789032,
+ "learning_rate": 0.0006,
+ "loss": 3.484452724456787,
+ "step": 4935
+ },
+ {
+ "epoch": 68.55919615552644,
+ "grad_norm": 0.21141181886196136,
+ "learning_rate": 0.0006,
+ "loss": 3.4950156211853027,
+ "step": 4936
+ },
+ {
+ "epoch": 68.57317605941459,
+ "grad_norm": 0.22393199801445007,
+ "learning_rate": 0.0006,
+ "loss": 3.4950199127197266,
+ "step": 4937
+ },
+ {
+ "epoch": 68.58715596330275,
+ "grad_norm": 0.22276045382022858,
+ "learning_rate": 0.0006,
+ "loss": 3.5180115699768066,
+ "step": 4938
+ },
+ {
+ "epoch": 68.60113586719092,
+ "grad_norm": 0.22738748788833618,
+ "learning_rate": 0.0006,
+ "loss": 3.5053911209106445,
+ "step": 4939
+ },
+ {
+ "epoch": 68.61511577107908,
+ "grad_norm": 0.21496275067329407,
+ "learning_rate": 0.0006,
+ "loss": 3.5315306186676025,
+ "step": 4940
+ },
+ {
+ "epoch": 68.62909567496723,
+ "grad_norm": 0.20695674419403076,
+ "learning_rate": 0.0006,
+ "loss": 3.514780044555664,
+ "step": 4941
+ },
+ {
+ "epoch": 68.6430755788554,
+ "grad_norm": 0.22777840495109558,
+ "learning_rate": 0.0006,
+ "loss": 3.5249099731445312,
+ "step": 4942
+ },
+ {
+ "epoch": 68.65705548274356,
+ "grad_norm": 0.26664453744888306,
+ "learning_rate": 0.0006,
+ "loss": 3.4763400554656982,
+ "step": 4943
+ },
+ {
+ "epoch": 68.67103538663171,
+ "grad_norm": 0.3005792498588562,
+ "learning_rate": 0.0006,
+ "loss": 3.4936861991882324,
+ "step": 4944
+ },
+ {
+ "epoch": 68.68501529051987,
+ "grad_norm": 0.2860395908355713,
+ "learning_rate": 0.0006,
+ "loss": 3.4994754791259766,
+ "step": 4945
+ },
+ {
+ "epoch": 68.69899519440804,
+ "grad_norm": 0.21164822578430176,
+ "learning_rate": 0.0006,
+ "loss": 3.5011136531829834,
+ "step": 4946
+ },
+ {
+ "epoch": 68.7129750982962,
+ "grad_norm": 0.2122834324836731,
+ "learning_rate": 0.0006,
+ "loss": 3.52018404006958,
+ "step": 4947
+ },
+ {
+ "epoch": 68.72695500218435,
+ "grad_norm": 0.23951229453086853,
+ "learning_rate": 0.0006,
+ "loss": 3.4910717010498047,
+ "step": 4948
+ },
+ {
+ "epoch": 68.74093490607252,
+ "grad_norm": 0.22745490074157715,
+ "learning_rate": 0.0006,
+ "loss": 3.5251622200012207,
+ "step": 4949
+ },
+ {
+ "epoch": 68.75491480996068,
+ "grad_norm": 0.21616250276565552,
+ "learning_rate": 0.0006,
+ "loss": 3.4933743476867676,
+ "step": 4950
+ },
+ {
+ "epoch": 68.76889471384884,
+ "grad_norm": 0.2164236605167389,
+ "learning_rate": 0.0006,
+ "loss": 3.513286590576172,
+ "step": 4951
+ },
+ {
+ "epoch": 68.78287461773701,
+ "grad_norm": 0.2450464814901352,
+ "learning_rate": 0.0006,
+ "loss": 3.5084245204925537,
+ "step": 4952
+ },
+ {
+ "epoch": 68.79685452162516,
+ "grad_norm": 0.29221615195274353,
+ "learning_rate": 0.0006,
+ "loss": 3.5463311672210693,
+ "step": 4953
+ },
+ {
+ "epoch": 68.81083442551332,
+ "grad_norm": 0.24574553966522217,
+ "learning_rate": 0.0006,
+ "loss": 3.5099716186523438,
+ "step": 4954
+ },
+ {
+ "epoch": 68.82481432940149,
+ "grad_norm": 0.20879139006137848,
+ "learning_rate": 0.0006,
+ "loss": 3.5220701694488525,
+ "step": 4955
+ },
+ {
+ "epoch": 68.83879423328965,
+ "grad_norm": 0.295693963766098,
+ "learning_rate": 0.0006,
+ "loss": 3.4854037761688232,
+ "step": 4956
+ },
+ {
+ "epoch": 68.8527741371778,
+ "grad_norm": 0.35441911220550537,
+ "learning_rate": 0.0006,
+ "loss": 3.5216379165649414,
+ "step": 4957
+ },
+ {
+ "epoch": 68.86675404106597,
+ "grad_norm": 0.2840341031551361,
+ "learning_rate": 0.0006,
+ "loss": 3.5208358764648438,
+ "step": 4958
+ },
+ {
+ "epoch": 68.88073394495413,
+ "grad_norm": 0.2082499861717224,
+ "learning_rate": 0.0006,
+ "loss": 3.5028862953186035,
+ "step": 4959
+ },
+ {
+ "epoch": 68.89471384884229,
+ "grad_norm": 0.2505369186401367,
+ "learning_rate": 0.0006,
+ "loss": 3.4982357025146484,
+ "step": 4960
+ },
+ {
+ "epoch": 68.90869375273044,
+ "grad_norm": 0.24573875963687897,
+ "learning_rate": 0.0006,
+ "loss": 3.5239524841308594,
+ "step": 4961
+ },
+ {
+ "epoch": 68.92267365661861,
+ "grad_norm": 0.23462185263633728,
+ "learning_rate": 0.0006,
+ "loss": 3.544379234313965,
+ "step": 4962
+ },
+ {
+ "epoch": 68.93665356050677,
+ "grad_norm": 0.26491034030914307,
+ "learning_rate": 0.0006,
+ "loss": 3.518372058868408,
+ "step": 4963
+ },
+ {
+ "epoch": 68.95063346439493,
+ "grad_norm": 0.2729686498641968,
+ "learning_rate": 0.0006,
+ "loss": 3.517185926437378,
+ "step": 4964
+ },
+ {
+ "epoch": 68.9646133682831,
+ "grad_norm": 0.26077502965927124,
+ "learning_rate": 0.0006,
+ "loss": 3.5147576332092285,
+ "step": 4965
+ },
+ {
+ "epoch": 68.97859327217125,
+ "grad_norm": 0.2313229888677597,
+ "learning_rate": 0.0006,
+ "loss": 3.5008926391601562,
+ "step": 4966
+ },
+ {
+ "epoch": 68.99257317605941,
+ "grad_norm": 0.21773307025432587,
+ "learning_rate": 0.0006,
+ "loss": 3.5004096031188965,
+ "step": 4967
+ },
+ {
+ "epoch": 69.0,
+ "grad_norm": 0.2326030433177948,
+ "learning_rate": 0.0006,
+ "loss": 3.5572075843811035,
+ "step": 4968
+ },
+ {
+ "epoch": 69.0,
+ "eval_loss": 3.993666410446167,
+ "eval_runtime": 45.2778,
+ "eval_samples_per_second": 53.934,
+ "eval_steps_per_second": 3.379,
+ "step": 4968
+ },
+ {
+ "epoch": 69.01397990388816,
+ "grad_norm": 0.22886492311954498,
+ "learning_rate": 0.0006,
+ "loss": 3.4994781017303467,
+ "step": 4969
+ },
+ {
+ "epoch": 69.02795980777633,
+ "grad_norm": 0.2972700595855713,
+ "learning_rate": 0.0006,
+ "loss": 3.5022270679473877,
+ "step": 4970
+ },
+ {
+ "epoch": 69.04193971166448,
+ "grad_norm": 0.32146573066711426,
+ "learning_rate": 0.0006,
+ "loss": 3.49113130569458,
+ "step": 4971
+ },
+ {
+ "epoch": 69.05591961555264,
+ "grad_norm": 0.26019641757011414,
+ "learning_rate": 0.0006,
+ "loss": 3.4609522819519043,
+ "step": 4972
+ },
+ {
+ "epoch": 69.06989951944081,
+ "grad_norm": 0.2116279900074005,
+ "learning_rate": 0.0006,
+ "loss": 3.518007278442383,
+ "step": 4973
+ },
+ {
+ "epoch": 69.08387942332897,
+ "grad_norm": 0.24797578155994415,
+ "learning_rate": 0.0006,
+ "loss": 3.465017318725586,
+ "step": 4974
+ },
+ {
+ "epoch": 69.09785932721712,
+ "grad_norm": 0.2988112270832062,
+ "learning_rate": 0.0006,
+ "loss": 3.46774959564209,
+ "step": 4975
+ },
+ {
+ "epoch": 69.1118392311053,
+ "grad_norm": 0.2741694450378418,
+ "learning_rate": 0.0006,
+ "loss": 3.4726247787475586,
+ "step": 4976
+ },
+ {
+ "epoch": 69.12581913499345,
+ "grad_norm": 0.246512308716774,
+ "learning_rate": 0.0006,
+ "loss": 3.4634053707122803,
+ "step": 4977
+ },
+ {
+ "epoch": 69.1397990388816,
+ "grad_norm": 0.25938132405281067,
+ "learning_rate": 0.0006,
+ "loss": 3.4496707916259766,
+ "step": 4978
+ },
+ {
+ "epoch": 69.15377894276976,
+ "grad_norm": 0.30637112259864807,
+ "learning_rate": 0.0006,
+ "loss": 3.4703760147094727,
+ "step": 4979
+ },
+ {
+ "epoch": 69.16775884665793,
+ "grad_norm": 0.26681914925575256,
+ "learning_rate": 0.0006,
+ "loss": 3.50388240814209,
+ "step": 4980
+ },
+ {
+ "epoch": 69.18173875054609,
+ "grad_norm": 0.24075748026371002,
+ "learning_rate": 0.0006,
+ "loss": 3.517247438430786,
+ "step": 4981
+ },
+ {
+ "epoch": 69.19571865443424,
+ "grad_norm": 0.21730124950408936,
+ "learning_rate": 0.0006,
+ "loss": 3.49320650100708,
+ "step": 4982
+ },
+ {
+ "epoch": 69.20969855832242,
+ "grad_norm": 0.21399953961372375,
+ "learning_rate": 0.0006,
+ "loss": 3.4763529300689697,
+ "step": 4983
+ },
+ {
+ "epoch": 69.22367846221057,
+ "grad_norm": 0.22505059838294983,
+ "learning_rate": 0.0006,
+ "loss": 3.4744338989257812,
+ "step": 4984
+ },
+ {
+ "epoch": 69.23765836609873,
+ "grad_norm": 0.23260554671287537,
+ "learning_rate": 0.0006,
+ "loss": 3.469099760055542,
+ "step": 4985
+ },
+ {
+ "epoch": 69.2516382699869,
+ "grad_norm": 0.2212911993265152,
+ "learning_rate": 0.0006,
+ "loss": 3.484243869781494,
+ "step": 4986
+ },
+ {
+ "epoch": 69.26561817387505,
+ "grad_norm": 0.22414085268974304,
+ "learning_rate": 0.0006,
+ "loss": 3.485083818435669,
+ "step": 4987
+ },
+ {
+ "epoch": 69.27959807776321,
+ "grad_norm": 0.2222541719675064,
+ "learning_rate": 0.0006,
+ "loss": 3.4827499389648438,
+ "step": 4988
+ },
+ {
+ "epoch": 69.29357798165138,
+ "grad_norm": 0.23511181771755219,
+ "learning_rate": 0.0006,
+ "loss": 3.4688282012939453,
+ "step": 4989
+ },
+ {
+ "epoch": 69.30755788553954,
+ "grad_norm": 0.23599068820476532,
+ "learning_rate": 0.0006,
+ "loss": 3.498142719268799,
+ "step": 4990
+ },
+ {
+ "epoch": 69.3215377894277,
+ "grad_norm": 0.22533927857875824,
+ "learning_rate": 0.0006,
+ "loss": 3.4815826416015625,
+ "step": 4991
+ },
+ {
+ "epoch": 69.33551769331586,
+ "grad_norm": 0.2343030720949173,
+ "learning_rate": 0.0006,
+ "loss": 3.483752489089966,
+ "step": 4992
+ },
+ {
+ "epoch": 69.34949759720402,
+ "grad_norm": 0.23283112049102783,
+ "learning_rate": 0.0006,
+ "loss": 3.4877965450286865,
+ "step": 4993
+ },
+ {
+ "epoch": 69.36347750109218,
+ "grad_norm": 0.24869517982006073,
+ "learning_rate": 0.0006,
+ "loss": 3.480337142944336,
+ "step": 4994
+ },
+ {
+ "epoch": 69.37745740498035,
+ "grad_norm": 0.22779154777526855,
+ "learning_rate": 0.0006,
+ "loss": 3.4828710556030273,
+ "step": 4995
+ },
+ {
+ "epoch": 69.3914373088685,
+ "grad_norm": 0.22645261883735657,
+ "learning_rate": 0.0006,
+ "loss": 3.509845018386841,
+ "step": 4996
+ },
+ {
+ "epoch": 69.40541721275666,
+ "grad_norm": 0.2432178109884262,
+ "learning_rate": 0.0006,
+ "loss": 3.4617137908935547,
+ "step": 4997
+ },
+ {
+ "epoch": 69.41939711664482,
+ "grad_norm": 0.2587018311023712,
+ "learning_rate": 0.0006,
+ "loss": 3.4713127613067627,
+ "step": 4998
+ },
+ {
+ "epoch": 69.43337702053299,
+ "grad_norm": 0.21907378733158112,
+ "learning_rate": 0.0006,
+ "loss": 3.509188175201416,
+ "step": 4999
+ },
+ {
+ "epoch": 69.44735692442114,
+ "grad_norm": 0.22740772366523743,
+ "learning_rate": 0.0006,
+ "loss": 3.4754276275634766,
+ "step": 5000
+ },
+ {
+ "epoch": 69.4613368283093,
+ "grad_norm": 0.21934257447719574,
+ "learning_rate": 0.0006,
+ "loss": 3.4663891792297363,
+ "step": 5001
+ },
+ {
+ "epoch": 69.47531673219747,
+ "grad_norm": 0.2244742065668106,
+ "learning_rate": 0.0006,
+ "loss": 3.4800233840942383,
+ "step": 5002
+ },
+ {
+ "epoch": 69.48929663608563,
+ "grad_norm": 0.20470912754535675,
+ "learning_rate": 0.0006,
+ "loss": 3.5089359283447266,
+ "step": 5003
+ },
+ {
+ "epoch": 69.50327653997378,
+ "grad_norm": 0.21532751619815826,
+ "learning_rate": 0.0006,
+ "loss": 3.5029287338256836,
+ "step": 5004
+ },
+ {
+ "epoch": 69.51725644386195,
+ "grad_norm": 0.2311217337846756,
+ "learning_rate": 0.0006,
+ "loss": 3.5031962394714355,
+ "step": 5005
+ },
+ {
+ "epoch": 69.53123634775011,
+ "grad_norm": 0.22248436510562897,
+ "learning_rate": 0.0006,
+ "loss": 3.5059356689453125,
+ "step": 5006
+ },
+ {
+ "epoch": 69.54521625163827,
+ "grad_norm": 0.2108408361673355,
+ "learning_rate": 0.0006,
+ "loss": 3.498697280883789,
+ "step": 5007
+ },
+ {
+ "epoch": 69.55919615552644,
+ "grad_norm": 0.22833184897899628,
+ "learning_rate": 0.0006,
+ "loss": 3.505685806274414,
+ "step": 5008
+ },
+ {
+ "epoch": 69.57317605941459,
+ "grad_norm": 0.22630111873149872,
+ "learning_rate": 0.0006,
+ "loss": 3.497771978378296,
+ "step": 5009
+ },
+ {
+ "epoch": 69.58715596330275,
+ "grad_norm": 0.23363569378852844,
+ "learning_rate": 0.0006,
+ "loss": 3.5422916412353516,
+ "step": 5010
+ },
+ {
+ "epoch": 69.60113586719092,
+ "grad_norm": 0.23720940947532654,
+ "learning_rate": 0.0006,
+ "loss": 3.504817008972168,
+ "step": 5011
+ },
+ {
+ "epoch": 69.61511577107908,
+ "grad_norm": 0.22822913527488708,
+ "learning_rate": 0.0006,
+ "loss": 3.51149320602417,
+ "step": 5012
+ },
+ {
+ "epoch": 69.62909567496723,
+ "grad_norm": 0.24143314361572266,
+ "learning_rate": 0.0006,
+ "loss": 3.509063720703125,
+ "step": 5013
+ },
+ {
+ "epoch": 69.6430755788554,
+ "grad_norm": 0.2394775152206421,
+ "learning_rate": 0.0006,
+ "loss": 3.5275425910949707,
+ "step": 5014
+ },
+ {
+ "epoch": 69.65705548274356,
+ "grad_norm": 0.23898433148860931,
+ "learning_rate": 0.0006,
+ "loss": 3.5251870155334473,
+ "step": 5015
+ },
+ {
+ "epoch": 69.67103538663171,
+ "grad_norm": 0.22647695243358612,
+ "learning_rate": 0.0006,
+ "loss": 3.4790940284729004,
+ "step": 5016
+ },
+ {
+ "epoch": 69.68501529051987,
+ "grad_norm": 0.23094546794891357,
+ "learning_rate": 0.0006,
+ "loss": 3.515676975250244,
+ "step": 5017
+ },
+ {
+ "epoch": 69.69899519440804,
+ "grad_norm": 0.21791698038578033,
+ "learning_rate": 0.0006,
+ "loss": 3.4938859939575195,
+ "step": 5018
+ },
+ {
+ "epoch": 69.7129750982962,
+ "grad_norm": 0.2420767843723297,
+ "learning_rate": 0.0006,
+ "loss": 3.489206075668335,
+ "step": 5019
+ },
+ {
+ "epoch": 69.72695500218435,
+ "grad_norm": 0.22724151611328125,
+ "learning_rate": 0.0006,
+ "loss": 3.502804756164551,
+ "step": 5020
+ },
+ {
+ "epoch": 69.74093490607252,
+ "grad_norm": 0.23462660610675812,
+ "learning_rate": 0.0006,
+ "loss": 3.4947867393493652,
+ "step": 5021
+ },
+ {
+ "epoch": 69.75491480996068,
+ "grad_norm": 0.2545832097530365,
+ "learning_rate": 0.0006,
+ "loss": 3.500843048095703,
+ "step": 5022
+ },
+ {
+ "epoch": 69.76889471384884,
+ "grad_norm": 0.26692283153533936,
+ "learning_rate": 0.0006,
+ "loss": 3.5054852962493896,
+ "step": 5023
+ },
+ {
+ "epoch": 69.78287461773701,
+ "grad_norm": 0.22788259387016296,
+ "learning_rate": 0.0006,
+ "loss": 3.5261473655700684,
+ "step": 5024
+ },
+ {
+ "epoch": 69.79685452162516,
+ "grad_norm": 0.24453137814998627,
+ "learning_rate": 0.0006,
+ "loss": 3.5090155601501465,
+ "step": 5025
+ },
+ {
+ "epoch": 69.81083442551332,
+ "grad_norm": 0.27876126766204834,
+ "learning_rate": 0.0006,
+ "loss": 3.5091753005981445,
+ "step": 5026
+ },
+ {
+ "epoch": 69.82481432940149,
+ "grad_norm": 0.280249685049057,
+ "learning_rate": 0.0006,
+ "loss": 3.5129857063293457,
+ "step": 5027
+ },
+ {
+ "epoch": 69.83879423328965,
+ "grad_norm": 0.2260117530822754,
+ "learning_rate": 0.0006,
+ "loss": 3.5320475101470947,
+ "step": 5028
+ },
+ {
+ "epoch": 69.8527741371778,
+ "grad_norm": 0.2237965613603592,
+ "learning_rate": 0.0006,
+ "loss": 3.5061261653900146,
+ "step": 5029
+ },
+ {
+ "epoch": 69.86675404106597,
+ "grad_norm": 0.226779967546463,
+ "learning_rate": 0.0006,
+ "loss": 3.5076608657836914,
+ "step": 5030
+ },
+ {
+ "epoch": 69.88073394495413,
+ "grad_norm": 0.23626334965229034,
+ "learning_rate": 0.0006,
+ "loss": 3.50716495513916,
+ "step": 5031
+ },
+ {
+ "epoch": 69.89471384884229,
+ "grad_norm": 0.2639276385307312,
+ "learning_rate": 0.0006,
+ "loss": 3.5299901962280273,
+ "step": 5032
+ },
+ {
+ "epoch": 69.90869375273044,
+ "grad_norm": 0.23369482159614563,
+ "learning_rate": 0.0006,
+ "loss": 3.5289621353149414,
+ "step": 5033
+ },
+ {
+ "epoch": 69.92267365661861,
+ "grad_norm": 0.23041120171546936,
+ "learning_rate": 0.0006,
+ "loss": 3.5174753665924072,
+ "step": 5034
+ },
+ {
+ "epoch": 69.93665356050677,
+ "grad_norm": 0.21268987655639648,
+ "learning_rate": 0.0006,
+ "loss": 3.506927967071533,
+ "step": 5035
+ },
+ {
+ "epoch": 69.95063346439493,
+ "grad_norm": 0.22524571418762207,
+ "learning_rate": 0.0006,
+ "loss": 3.5054068565368652,
+ "step": 5036
+ },
+ {
+ "epoch": 69.9646133682831,
+ "grad_norm": 0.26068753004074097,
+ "learning_rate": 0.0006,
+ "loss": 3.502107620239258,
+ "step": 5037
+ },
+ {
+ "epoch": 69.97859327217125,
+ "grad_norm": 0.2473640888929367,
+ "learning_rate": 0.0006,
+ "loss": 3.4879817962646484,
+ "step": 5038
+ },
+ {
+ "epoch": 69.99257317605941,
+ "grad_norm": 0.23933477699756622,
+ "learning_rate": 0.0006,
+ "loss": 3.52518892288208,
+ "step": 5039
+ },
+ {
+ "epoch": 70.0,
+ "grad_norm": 0.26498401165008545,
+ "learning_rate": 0.0006,
+ "loss": 3.528074026107788,
+ "step": 5040
+ },
+ {
+ "epoch": 70.0,
+ "eval_loss": 3.9862265586853027,
+ "eval_runtime": 45.1344,
+ "eval_samples_per_second": 54.105,
+ "eval_steps_per_second": 3.39,
+ "step": 5040
+ },
+ {
+ "epoch": 70.01397990388816,
+ "grad_norm": 0.23711830377578735,
+ "learning_rate": 0.0006,
+ "loss": 3.4622411727905273,
+ "step": 5041
+ },
+ {
+ "epoch": 70.02795980777633,
+ "grad_norm": 0.25422438979148865,
+ "learning_rate": 0.0006,
+ "loss": 3.4546890258789062,
+ "step": 5042
+ },
+ {
+ "epoch": 70.04193971166448,
+ "grad_norm": 0.2520093619823456,
+ "learning_rate": 0.0006,
+ "loss": 3.4625046253204346,
+ "step": 5043
+ },
+ {
+ "epoch": 70.05591961555264,
+ "grad_norm": 0.23353877663612366,
+ "learning_rate": 0.0006,
+ "loss": 3.5090699195861816,
+ "step": 5044
+ },
+ {
+ "epoch": 70.06989951944081,
+ "grad_norm": 0.2775326669216156,
+ "learning_rate": 0.0006,
+ "loss": 3.4860758781433105,
+ "step": 5045
+ },
+ {
+ "epoch": 70.08387942332897,
+ "grad_norm": 0.297573447227478,
+ "learning_rate": 0.0006,
+ "loss": 3.5181596279144287,
+ "step": 5046
+ },
+ {
+ "epoch": 70.09785932721712,
+ "grad_norm": 0.29662513732910156,
+ "learning_rate": 0.0006,
+ "loss": 3.4715771675109863,
+ "step": 5047
+ },
+ {
+ "epoch": 70.1118392311053,
+ "grad_norm": 0.2619902193546295,
+ "learning_rate": 0.0006,
+ "loss": 3.430412769317627,
+ "step": 5048
+ },
+ {
+ "epoch": 70.12581913499345,
+ "grad_norm": 0.21740001440048218,
+ "learning_rate": 0.0006,
+ "loss": 3.473442792892456,
+ "step": 5049
+ },
+ {
+ "epoch": 70.1397990388816,
+ "grad_norm": 0.221281036734581,
+ "learning_rate": 0.0006,
+ "loss": 3.4651594161987305,
+ "step": 5050
+ },
+ {
+ "epoch": 70.15377894276976,
+ "grad_norm": 0.21638400852680206,
+ "learning_rate": 0.0006,
+ "loss": 3.475860118865967,
+ "step": 5051
+ },
+ {
+ "epoch": 70.16775884665793,
+ "grad_norm": 0.21825452148914337,
+ "learning_rate": 0.0006,
+ "loss": 3.467684268951416,
+ "step": 5052
+ },
+ {
+ "epoch": 70.18173875054609,
+ "grad_norm": 0.22535094618797302,
+ "learning_rate": 0.0006,
+ "loss": 3.4543721675872803,
+ "step": 5053
+ },
+ {
+ "epoch": 70.19571865443424,
+ "grad_norm": 0.22751732170581818,
+ "learning_rate": 0.0006,
+ "loss": 3.480132818222046,
+ "step": 5054
+ },
+ {
+ "epoch": 70.20969855832242,
+ "grad_norm": 0.21935929358005524,
+ "learning_rate": 0.0006,
+ "loss": 3.4883337020874023,
+ "step": 5055
+ },
+ {
+ "epoch": 70.22367846221057,
+ "grad_norm": 0.2164992392063141,
+ "learning_rate": 0.0006,
+ "loss": 3.4758238792419434,
+ "step": 5056
+ },
+ {
+ "epoch": 70.23765836609873,
+ "grad_norm": 0.2284509837627411,
+ "learning_rate": 0.0006,
+ "loss": 3.4639101028442383,
+ "step": 5057
+ },
+ {
+ "epoch": 70.2516382699869,
+ "grad_norm": 0.2616494297981262,
+ "learning_rate": 0.0006,
+ "loss": 3.4850382804870605,
+ "step": 5058
+ },
+ {
+ "epoch": 70.26561817387505,
+ "grad_norm": 0.25582870841026306,
+ "learning_rate": 0.0006,
+ "loss": 3.4912681579589844,
+ "step": 5059
+ },
+ {
+ "epoch": 70.27959807776321,
+ "grad_norm": 0.23707713186740875,
+ "learning_rate": 0.0006,
+ "loss": 3.493809700012207,
+ "step": 5060
+ },
+ {
+ "epoch": 70.29357798165138,
+ "grad_norm": 0.233265221118927,
+ "learning_rate": 0.0006,
+ "loss": 3.5143074989318848,
+ "step": 5061
+ },
+ {
+ "epoch": 70.30755788553954,
+ "grad_norm": 0.2607567012310028,
+ "learning_rate": 0.0006,
+ "loss": 3.5042223930358887,
+ "step": 5062
+ },
+ {
+ "epoch": 70.3215377894277,
+ "grad_norm": 0.21082724630832672,
+ "learning_rate": 0.0006,
+ "loss": 3.493569850921631,
+ "step": 5063
+ },
+ {
+ "epoch": 70.33551769331586,
+ "grad_norm": 0.2609533369541168,
+ "learning_rate": 0.0006,
+ "loss": 3.503533363342285,
+ "step": 5064
+ },
+ {
+ "epoch": 70.34949759720402,
+ "grad_norm": 0.2863939702510834,
+ "learning_rate": 0.0006,
+ "loss": 3.465226173400879,
+ "step": 5065
+ },
+ {
+ "epoch": 70.36347750109218,
+ "grad_norm": 0.26796457171440125,
+ "learning_rate": 0.0006,
+ "loss": 3.517176866531372,
+ "step": 5066
+ },
+ {
+ "epoch": 70.37745740498035,
+ "grad_norm": 0.2766019105911255,
+ "learning_rate": 0.0006,
+ "loss": 3.5126867294311523,
+ "step": 5067
+ },
+ {
+ "epoch": 70.3914373088685,
+ "grad_norm": 0.24560758471488953,
+ "learning_rate": 0.0006,
+ "loss": 3.515030860900879,
+ "step": 5068
+ },
+ {
+ "epoch": 70.40541721275666,
+ "grad_norm": 0.20993568003177643,
+ "learning_rate": 0.0006,
+ "loss": 3.4899773597717285,
+ "step": 5069
+ },
+ {
+ "epoch": 70.41939711664482,
+ "grad_norm": 0.20855914056301117,
+ "learning_rate": 0.0006,
+ "loss": 3.4906468391418457,
+ "step": 5070
+ },
+ {
+ "epoch": 70.43337702053299,
+ "grad_norm": 0.2210836559534073,
+ "learning_rate": 0.0006,
+ "loss": 3.482866048812866,
+ "step": 5071
+ },
+ {
+ "epoch": 70.44735692442114,
+ "grad_norm": 0.2210542857646942,
+ "learning_rate": 0.0006,
+ "loss": 3.501636028289795,
+ "step": 5072
+ },
+ {
+ "epoch": 70.4613368283093,
+ "grad_norm": 0.21207138895988464,
+ "learning_rate": 0.0006,
+ "loss": 3.519104242324829,
+ "step": 5073
+ },
+ {
+ "epoch": 70.47531673219747,
+ "grad_norm": 0.19901272654533386,
+ "learning_rate": 0.0006,
+ "loss": 3.486097574234009,
+ "step": 5074
+ },
+ {
+ "epoch": 70.48929663608563,
+ "grad_norm": 0.21536870300769806,
+ "learning_rate": 0.0006,
+ "loss": 3.476889133453369,
+ "step": 5075
+ },
+ {
+ "epoch": 70.50327653997378,
+ "grad_norm": 0.22002893686294556,
+ "learning_rate": 0.0006,
+ "loss": 3.5007381439208984,
+ "step": 5076
+ },
+ {
+ "epoch": 70.51725644386195,
+ "grad_norm": 0.20761331915855408,
+ "learning_rate": 0.0006,
+ "loss": 3.4693777561187744,
+ "step": 5077
+ },
+ {
+ "epoch": 70.53123634775011,
+ "grad_norm": 0.2145029455423355,
+ "learning_rate": 0.0006,
+ "loss": 3.438809871673584,
+ "step": 5078
+ },
+ {
+ "epoch": 70.54521625163827,
+ "grad_norm": 0.1961168795824051,
+ "learning_rate": 0.0006,
+ "loss": 3.4975242614746094,
+ "step": 5079
+ },
+ {
+ "epoch": 70.55919615552644,
+ "grad_norm": 0.20411522686481476,
+ "learning_rate": 0.0006,
+ "loss": 3.4908413887023926,
+ "step": 5080
+ },
+ {
+ "epoch": 70.57317605941459,
+ "grad_norm": 0.22646412253379822,
+ "learning_rate": 0.0006,
+ "loss": 3.4542629718780518,
+ "step": 5081
+ },
+ {
+ "epoch": 70.58715596330275,
+ "grad_norm": 0.2181357741355896,
+ "learning_rate": 0.0006,
+ "loss": 3.522963047027588,
+ "step": 5082
+ },
+ {
+ "epoch": 70.60113586719092,
+ "grad_norm": 0.23564083874225616,
+ "learning_rate": 0.0006,
+ "loss": 3.475222110748291,
+ "step": 5083
+ },
+ {
+ "epoch": 70.61511577107908,
+ "grad_norm": 0.22964410483837128,
+ "learning_rate": 0.0006,
+ "loss": 3.517993927001953,
+ "step": 5084
+ },
+ {
+ "epoch": 70.62909567496723,
+ "grad_norm": 0.20958925783634186,
+ "learning_rate": 0.0006,
+ "loss": 3.4651894569396973,
+ "step": 5085
+ },
+ {
+ "epoch": 70.6430755788554,
+ "grad_norm": 0.19693933427333832,
+ "learning_rate": 0.0006,
+ "loss": 3.4992640018463135,
+ "step": 5086
+ },
+ {
+ "epoch": 70.65705548274356,
+ "grad_norm": 0.22487083077430725,
+ "learning_rate": 0.0006,
+ "loss": 3.502739906311035,
+ "step": 5087
+ },
+ {
+ "epoch": 70.67103538663171,
+ "grad_norm": 0.22145701944828033,
+ "learning_rate": 0.0006,
+ "loss": 3.4855666160583496,
+ "step": 5088
+ },
+ {
+ "epoch": 70.68501529051987,
+ "grad_norm": 0.2145165652036667,
+ "learning_rate": 0.0006,
+ "loss": 3.5234193801879883,
+ "step": 5089
+ },
+ {
+ "epoch": 70.69899519440804,
+ "grad_norm": 0.2453656941652298,
+ "learning_rate": 0.0006,
+ "loss": 3.497983932495117,
+ "step": 5090
+ },
+ {
+ "epoch": 70.7129750982962,
+ "grad_norm": 0.2324638068675995,
+ "learning_rate": 0.0006,
+ "loss": 3.487849712371826,
+ "step": 5091
+ },
+ {
+ "epoch": 70.72695500218435,
+ "grad_norm": 0.2176654040813446,
+ "learning_rate": 0.0006,
+ "loss": 3.496427059173584,
+ "step": 5092
+ },
+ {
+ "epoch": 70.74093490607252,
+ "grad_norm": 0.20912162959575653,
+ "learning_rate": 0.0006,
+ "loss": 3.4953227043151855,
+ "step": 5093
+ },
+ {
+ "epoch": 70.75491480996068,
+ "grad_norm": 0.1988947093486786,
+ "learning_rate": 0.0006,
+ "loss": 3.4566853046417236,
+ "step": 5094
+ },
+ {
+ "epoch": 70.76889471384884,
+ "grad_norm": 0.23707804083824158,
+ "learning_rate": 0.0006,
+ "loss": 3.5447797775268555,
+ "step": 5095
+ },
+ {
+ "epoch": 70.78287461773701,
+ "grad_norm": 0.24296057224273682,
+ "learning_rate": 0.0006,
+ "loss": 3.5124454498291016,
+ "step": 5096
+ },
+ {
+ "epoch": 70.79685452162516,
+ "grad_norm": 0.21297545731067657,
+ "learning_rate": 0.0006,
+ "loss": 3.5096077919006348,
+ "step": 5097
+ },
+ {
+ "epoch": 70.81083442551332,
+ "grad_norm": 0.20642022788524628,
+ "learning_rate": 0.0006,
+ "loss": 3.5008912086486816,
+ "step": 5098
+ },
+ {
+ "epoch": 70.82481432940149,
+ "grad_norm": 0.2428225725889206,
+ "learning_rate": 0.0006,
+ "loss": 3.511782169342041,
+ "step": 5099
+ },
+ {
+ "epoch": 70.83879423328965,
+ "grad_norm": 0.2369006872177124,
+ "learning_rate": 0.0006,
+ "loss": 3.5016889572143555,
+ "step": 5100
+ },
+ {
+ "epoch": 70.8527741371778,
+ "grad_norm": 0.2299226075410843,
+ "learning_rate": 0.0006,
+ "loss": 3.5024492740631104,
+ "step": 5101
+ },
+ {
+ "epoch": 70.86675404106597,
+ "grad_norm": 0.2069583684206009,
+ "learning_rate": 0.0006,
+ "loss": 3.5401811599731445,
+ "step": 5102
+ },
+ {
+ "epoch": 70.88073394495413,
+ "grad_norm": 0.21548444032669067,
+ "learning_rate": 0.0006,
+ "loss": 3.506899833679199,
+ "step": 5103
+ },
+ {
+ "epoch": 70.89471384884229,
+ "grad_norm": 0.24152785539627075,
+ "learning_rate": 0.0006,
+ "loss": 3.517747163772583,
+ "step": 5104
+ },
+ {
+ "epoch": 70.90869375273044,
+ "grad_norm": 0.2301841676235199,
+ "learning_rate": 0.0006,
+ "loss": 3.4825563430786133,
+ "step": 5105
+ },
+ {
+ "epoch": 70.92267365661861,
+ "grad_norm": 0.20378732681274414,
+ "learning_rate": 0.0006,
+ "loss": 3.51491641998291,
+ "step": 5106
+ },
+ {
+ "epoch": 70.93665356050677,
+ "grad_norm": 0.23954246938228607,
+ "learning_rate": 0.0006,
+ "loss": 3.505157709121704,
+ "step": 5107
+ },
+ {
+ "epoch": 70.95063346439493,
+ "grad_norm": 0.24072174727916718,
+ "learning_rate": 0.0006,
+ "loss": 3.5006208419799805,
+ "step": 5108
+ },
+ {
+ "epoch": 70.9646133682831,
+ "grad_norm": 0.2187308371067047,
+ "learning_rate": 0.0006,
+ "loss": 3.5031535625457764,
+ "step": 5109
+ },
+ {
+ "epoch": 70.97859327217125,
+ "grad_norm": 0.22237645089626312,
+ "learning_rate": 0.0006,
+ "loss": 3.5143189430236816,
+ "step": 5110
+ },
+ {
+ "epoch": 70.99257317605941,
+ "grad_norm": 0.22169137001037598,
+ "learning_rate": 0.0006,
+ "loss": 3.4963934421539307,
+ "step": 5111
+ },
+ {
+ "epoch": 71.0,
+ "grad_norm": 0.257404088973999,
+ "learning_rate": 0.0006,
+ "loss": 3.5386219024658203,
+ "step": 5112
+ },
+ {
+ "epoch": 71.0,
+ "eval_loss": 3.9918019771575928,
+ "eval_runtime": 46.6377,
+ "eval_samples_per_second": 52.361,
+ "eval_steps_per_second": 3.281,
+ "step": 5112
+ },
+ {
+ "epoch": 71.01397990388816,
+ "grad_norm": 0.22763817012310028,
+ "learning_rate": 0.0006,
+ "loss": 3.4723024368286133,
+ "step": 5113
+ },
+ {
+ "epoch": 71.02795980777633,
+ "grad_norm": 0.22345447540283203,
+ "learning_rate": 0.0006,
+ "loss": 3.491352081298828,
+ "step": 5114
+ },
+ {
+ "epoch": 71.04193971166448,
+ "grad_norm": 0.28975343704223633,
+ "learning_rate": 0.0006,
+ "loss": 3.474012851715088,
+ "step": 5115
+ },
+ {
+ "epoch": 71.05591961555264,
+ "grad_norm": 0.34715282917022705,
+ "learning_rate": 0.0006,
+ "loss": 3.460543155670166,
+ "step": 5116
+ },
+ {
+ "epoch": 71.06989951944081,
+ "grad_norm": 0.3298324942588806,
+ "learning_rate": 0.0006,
+ "loss": 3.481487512588501,
+ "step": 5117
+ },
+ {
+ "epoch": 71.08387942332897,
+ "grad_norm": 0.25802168250083923,
+ "learning_rate": 0.0006,
+ "loss": 3.472047805786133,
+ "step": 5118
+ },
+ {
+ "epoch": 71.09785932721712,
+ "grad_norm": 0.27691733837127686,
+ "learning_rate": 0.0006,
+ "loss": 3.471902847290039,
+ "step": 5119
+ },
+ {
+ "epoch": 71.1118392311053,
+ "grad_norm": 0.3614637851715088,
+ "learning_rate": 0.0006,
+ "loss": 3.482367992401123,
+ "step": 5120
+ },
+ {
+ "epoch": 71.12581913499345,
+ "grad_norm": 0.3808763027191162,
+ "learning_rate": 0.0006,
+ "loss": 3.468003273010254,
+ "step": 5121
+ },
+ {
+ "epoch": 71.1397990388816,
+ "grad_norm": 0.30960485339164734,
+ "learning_rate": 0.0006,
+ "loss": 3.4756040573120117,
+ "step": 5122
+ },
+ {
+ "epoch": 71.15377894276976,
+ "grad_norm": 0.23345506191253662,
+ "learning_rate": 0.0006,
+ "loss": 3.4682583808898926,
+ "step": 5123
+ },
+ {
+ "epoch": 71.16775884665793,
+ "grad_norm": 0.23517020046710968,
+ "learning_rate": 0.0006,
+ "loss": 3.481360912322998,
+ "step": 5124
+ },
+ {
+ "epoch": 71.18173875054609,
+ "grad_norm": 0.23654034733772278,
+ "learning_rate": 0.0006,
+ "loss": 3.4833765029907227,
+ "step": 5125
+ },
+ {
+ "epoch": 71.19571865443424,
+ "grad_norm": 0.2085893303155899,
+ "learning_rate": 0.0006,
+ "loss": 3.486340045928955,
+ "step": 5126
+ },
+ {
+ "epoch": 71.20969855832242,
+ "grad_norm": 0.23823733627796173,
+ "learning_rate": 0.0006,
+ "loss": 3.477477550506592,
+ "step": 5127
+ },
+ {
+ "epoch": 71.22367846221057,
+ "grad_norm": 0.2195197194814682,
+ "learning_rate": 0.0006,
+ "loss": 3.4914462566375732,
+ "step": 5128
+ },
+ {
+ "epoch": 71.23765836609873,
+ "grad_norm": 0.20015183091163635,
+ "learning_rate": 0.0006,
+ "loss": 3.4731597900390625,
+ "step": 5129
+ },
+ {
+ "epoch": 71.2516382699869,
+ "grad_norm": 0.22865013778209686,
+ "learning_rate": 0.0006,
+ "loss": 3.474112033843994,
+ "step": 5130
+ },
+ {
+ "epoch": 71.26561817387505,
+ "grad_norm": 0.23216912150382996,
+ "learning_rate": 0.0006,
+ "loss": 3.4641566276550293,
+ "step": 5131
+ },
+ {
+ "epoch": 71.27959807776321,
+ "grad_norm": 0.229189932346344,
+ "learning_rate": 0.0006,
+ "loss": 3.499788999557495,
+ "step": 5132
+ },
+ {
+ "epoch": 71.29357798165138,
+ "grad_norm": 0.21727289259433746,
+ "learning_rate": 0.0006,
+ "loss": 3.4823837280273438,
+ "step": 5133
+ },
+ {
+ "epoch": 71.30755788553954,
+ "grad_norm": 0.21023842692375183,
+ "learning_rate": 0.0006,
+ "loss": 3.4864656925201416,
+ "step": 5134
+ },
+ {
+ "epoch": 71.3215377894277,
+ "grad_norm": 0.2303229570388794,
+ "learning_rate": 0.0006,
+ "loss": 3.4989194869995117,
+ "step": 5135
+ },
+ {
+ "epoch": 71.33551769331586,
+ "grad_norm": 0.2317735254764557,
+ "learning_rate": 0.0006,
+ "loss": 3.460954189300537,
+ "step": 5136
+ },
+ {
+ "epoch": 71.34949759720402,
+ "grad_norm": 0.22612634301185608,
+ "learning_rate": 0.0006,
+ "loss": 3.5102381706237793,
+ "step": 5137
+ },
+ {
+ "epoch": 71.36347750109218,
+ "grad_norm": 0.23815463483333588,
+ "learning_rate": 0.0006,
+ "loss": 3.446244239807129,
+ "step": 5138
+ },
+ {
+ "epoch": 71.37745740498035,
+ "grad_norm": 0.22914297878742218,
+ "learning_rate": 0.0006,
+ "loss": 3.4789650440216064,
+ "step": 5139
+ },
+ {
+ "epoch": 71.3914373088685,
+ "grad_norm": 0.22563296556472778,
+ "learning_rate": 0.0006,
+ "loss": 3.490419864654541,
+ "step": 5140
+ },
+ {
+ "epoch": 71.40541721275666,
+ "grad_norm": 0.21704672276973724,
+ "learning_rate": 0.0006,
+ "loss": 3.503981113433838,
+ "step": 5141
+ },
+ {
+ "epoch": 71.41939711664482,
+ "grad_norm": 0.2196325659751892,
+ "learning_rate": 0.0006,
+ "loss": 3.4878809452056885,
+ "step": 5142
+ },
+ {
+ "epoch": 71.43337702053299,
+ "grad_norm": 0.21130836009979248,
+ "learning_rate": 0.0006,
+ "loss": 3.4546194076538086,
+ "step": 5143
+ },
+ {
+ "epoch": 71.44735692442114,
+ "grad_norm": 0.21542105078697205,
+ "learning_rate": 0.0006,
+ "loss": 3.4721519947052,
+ "step": 5144
+ },
+ {
+ "epoch": 71.4613368283093,
+ "grad_norm": 0.22387142479419708,
+ "learning_rate": 0.0006,
+ "loss": 3.4667282104492188,
+ "step": 5145
+ },
+ {
+ "epoch": 71.47531673219747,
+ "grad_norm": 0.23259611427783966,
+ "learning_rate": 0.0006,
+ "loss": 3.467545986175537,
+ "step": 5146
+ },
+ {
+ "epoch": 71.48929663608563,
+ "grad_norm": 0.2771410644054413,
+ "learning_rate": 0.0006,
+ "loss": 3.4783425331115723,
+ "step": 5147
+ },
+ {
+ "epoch": 71.50327653997378,
+ "grad_norm": 0.29756635427474976,
+ "learning_rate": 0.0006,
+ "loss": 3.492600440979004,
+ "step": 5148
+ },
+ {
+ "epoch": 71.51725644386195,
+ "grad_norm": 0.26306024193763733,
+ "learning_rate": 0.0006,
+ "loss": 3.510770559310913,
+ "step": 5149
+ },
+ {
+ "epoch": 71.53123634775011,
+ "grad_norm": 0.20751827955245972,
+ "learning_rate": 0.0006,
+ "loss": 3.466935634613037,
+ "step": 5150
+ },
+ {
+ "epoch": 71.54521625163827,
+ "grad_norm": 0.21394366025924683,
+ "learning_rate": 0.0006,
+ "loss": 3.436068058013916,
+ "step": 5151
+ },
+ {
+ "epoch": 71.55919615552644,
+ "grad_norm": 0.25711846351623535,
+ "learning_rate": 0.0006,
+ "loss": 3.484564781188965,
+ "step": 5152
+ },
+ {
+ "epoch": 71.57317605941459,
+ "grad_norm": 0.29579317569732666,
+ "learning_rate": 0.0006,
+ "loss": 3.4905800819396973,
+ "step": 5153
+ },
+ {
+ "epoch": 71.58715596330275,
+ "grad_norm": 0.3033061921596527,
+ "learning_rate": 0.0006,
+ "loss": 3.508679151535034,
+ "step": 5154
+ },
+ {
+ "epoch": 71.60113586719092,
+ "grad_norm": 0.2520291805267334,
+ "learning_rate": 0.0006,
+ "loss": 3.5057215690612793,
+ "step": 5155
+ },
+ {
+ "epoch": 71.61511577107908,
+ "grad_norm": 0.226261705160141,
+ "learning_rate": 0.0006,
+ "loss": 3.5037670135498047,
+ "step": 5156
+ },
+ {
+ "epoch": 71.62909567496723,
+ "grad_norm": 0.20596027374267578,
+ "learning_rate": 0.0006,
+ "loss": 3.495021343231201,
+ "step": 5157
+ },
+ {
+ "epoch": 71.6430755788554,
+ "grad_norm": 0.20619751513004303,
+ "learning_rate": 0.0006,
+ "loss": 3.4958693981170654,
+ "step": 5158
+ },
+ {
+ "epoch": 71.65705548274356,
+ "grad_norm": 0.24510066211223602,
+ "learning_rate": 0.0006,
+ "loss": 3.5301260948181152,
+ "step": 5159
+ },
+ {
+ "epoch": 71.67103538663171,
+ "grad_norm": 0.26109805703163147,
+ "learning_rate": 0.0006,
+ "loss": 3.5022244453430176,
+ "step": 5160
+ },
+ {
+ "epoch": 71.68501529051987,
+ "grad_norm": 0.28911513090133667,
+ "learning_rate": 0.0006,
+ "loss": 3.488947868347168,
+ "step": 5161
+ },
+ {
+ "epoch": 71.69899519440804,
+ "grad_norm": 0.2741655111312866,
+ "learning_rate": 0.0006,
+ "loss": 3.4888229370117188,
+ "step": 5162
+ },
+ {
+ "epoch": 71.7129750982962,
+ "grad_norm": 0.2789880633354187,
+ "learning_rate": 0.0006,
+ "loss": 3.4911744594573975,
+ "step": 5163
+ },
+ {
+ "epoch": 71.72695500218435,
+ "grad_norm": 0.23872195184230804,
+ "learning_rate": 0.0006,
+ "loss": 3.5175111293792725,
+ "step": 5164
+ },
+ {
+ "epoch": 71.74093490607252,
+ "grad_norm": 0.23090124130249023,
+ "learning_rate": 0.0006,
+ "loss": 3.477285861968994,
+ "step": 5165
+ },
+ {
+ "epoch": 71.75491480996068,
+ "grad_norm": 0.25918251276016235,
+ "learning_rate": 0.0006,
+ "loss": 3.5374622344970703,
+ "step": 5166
+ },
+ {
+ "epoch": 71.76889471384884,
+ "grad_norm": 0.28394266963005066,
+ "learning_rate": 0.0006,
+ "loss": 3.505443572998047,
+ "step": 5167
+ },
+ {
+ "epoch": 71.78287461773701,
+ "grad_norm": 0.29756471514701843,
+ "learning_rate": 0.0006,
+ "loss": 3.4858479499816895,
+ "step": 5168
+ },
+ {
+ "epoch": 71.79685452162516,
+ "grad_norm": 0.2913147211074829,
+ "learning_rate": 0.0006,
+ "loss": 3.4602723121643066,
+ "step": 5169
+ },
+ {
+ "epoch": 71.81083442551332,
+ "grad_norm": 0.23923781514167786,
+ "learning_rate": 0.0006,
+ "loss": 3.4713358879089355,
+ "step": 5170
+ },
+ {
+ "epoch": 71.82481432940149,
+ "grad_norm": 0.23478655517101288,
+ "learning_rate": 0.0006,
+ "loss": 3.4848878383636475,
+ "step": 5171
+ },
+ {
+ "epoch": 71.83879423328965,
+ "grad_norm": 0.2668255865573883,
+ "learning_rate": 0.0006,
+ "loss": 3.507920742034912,
+ "step": 5172
+ },
+ {
+ "epoch": 71.8527741371778,
+ "grad_norm": 0.2818165719509125,
+ "learning_rate": 0.0006,
+ "loss": 3.5128116607666016,
+ "step": 5173
+ },
+ {
+ "epoch": 71.86675404106597,
+ "grad_norm": 0.22830909490585327,
+ "learning_rate": 0.0006,
+ "loss": 3.4789090156555176,
+ "step": 5174
+ },
+ {
+ "epoch": 71.88073394495413,
+ "grad_norm": 0.2291419357061386,
+ "learning_rate": 0.0006,
+ "loss": 3.4977774620056152,
+ "step": 5175
+ },
+ {
+ "epoch": 71.89471384884229,
+ "grad_norm": 0.22237083315849304,
+ "learning_rate": 0.0006,
+ "loss": 3.5563011169433594,
+ "step": 5176
+ },
+ {
+ "epoch": 71.90869375273044,
+ "grad_norm": 0.2287488579750061,
+ "learning_rate": 0.0006,
+ "loss": 3.515289783477783,
+ "step": 5177
+ },
+ {
+ "epoch": 71.92267365661861,
+ "grad_norm": 0.21992293000221252,
+ "learning_rate": 0.0006,
+ "loss": 3.5213077068328857,
+ "step": 5178
+ },
+ {
+ "epoch": 71.93665356050677,
+ "grad_norm": 0.21338967978954315,
+ "learning_rate": 0.0006,
+ "loss": 3.5168190002441406,
+ "step": 5179
+ },
+ {
+ "epoch": 71.95063346439493,
+ "grad_norm": 0.2198970913887024,
+ "learning_rate": 0.0006,
+ "loss": 3.517268180847168,
+ "step": 5180
+ },
+ {
+ "epoch": 71.9646133682831,
+ "grad_norm": 0.2309885025024414,
+ "learning_rate": 0.0006,
+ "loss": 3.5538675785064697,
+ "step": 5181
+ },
+ {
+ "epoch": 71.97859327217125,
+ "grad_norm": 0.23529282212257385,
+ "learning_rate": 0.0006,
+ "loss": 3.477951765060425,
+ "step": 5182
+ },
+ {
+ "epoch": 71.99257317605941,
+ "grad_norm": 0.2553477883338928,
+ "learning_rate": 0.0006,
+ "loss": 3.502894878387451,
+ "step": 5183
+ },
+ {
+ "epoch": 72.0,
+ "grad_norm": 0.2943936288356781,
+ "learning_rate": 0.0006,
+ "loss": 3.5049710273742676,
+ "step": 5184
+ },
+ {
+ "epoch": 72.0,
+ "eval_loss": 3.9860572814941406,
+ "eval_runtime": 46.9591,
+ "eval_samples_per_second": 52.003,
+ "eval_steps_per_second": 3.258,
+ "step": 5184
+ },
+ {
+ "epoch": 72.01397990388816,
+ "grad_norm": 0.25285470485687256,
+ "learning_rate": 0.0006,
+ "loss": 3.4515252113342285,
+ "step": 5185
+ },
+ {
+ "epoch": 72.02795980777633,
+ "grad_norm": 0.29215890169143677,
+ "learning_rate": 0.0006,
+ "loss": 3.4472908973693848,
+ "step": 5186
+ },
+ {
+ "epoch": 72.04193971166448,
+ "grad_norm": 0.34719136357307434,
+ "learning_rate": 0.0006,
+ "loss": 3.4762914180755615,
+ "step": 5187
+ },
+ {
+ "epoch": 72.05591961555264,
+ "grad_norm": 0.31336039304733276,
+ "learning_rate": 0.0006,
+ "loss": 3.4866042137145996,
+ "step": 5188
+ },
+ {
+ "epoch": 72.06989951944081,
+ "grad_norm": 0.2586875557899475,
+ "learning_rate": 0.0006,
+ "loss": 3.4296340942382812,
+ "step": 5189
+ },
+ {
+ "epoch": 72.08387942332897,
+ "grad_norm": 0.2677823603153229,
+ "learning_rate": 0.0006,
+ "loss": 3.442481517791748,
+ "step": 5190
+ },
+ {
+ "epoch": 72.09785932721712,
+ "grad_norm": 0.30640944838523865,
+ "learning_rate": 0.0006,
+ "loss": 3.435530424118042,
+ "step": 5191
+ },
+ {
+ "epoch": 72.1118392311053,
+ "grad_norm": 0.29822733998298645,
+ "learning_rate": 0.0006,
+ "loss": 3.4399731159210205,
+ "step": 5192
+ },
+ {
+ "epoch": 72.12581913499345,
+ "grad_norm": 0.25714683532714844,
+ "learning_rate": 0.0006,
+ "loss": 3.4679667949676514,
+ "step": 5193
+ },
+ {
+ "epoch": 72.1397990388816,
+ "grad_norm": 0.2347356528043747,
+ "learning_rate": 0.0006,
+ "loss": 3.4473838806152344,
+ "step": 5194
+ },
+ {
+ "epoch": 72.15377894276976,
+ "grad_norm": 0.23640039563179016,
+ "learning_rate": 0.0006,
+ "loss": 3.4716782569885254,
+ "step": 5195
+ },
+ {
+ "epoch": 72.16775884665793,
+ "grad_norm": 0.2285412698984146,
+ "learning_rate": 0.0006,
+ "loss": 3.4927384853363037,
+ "step": 5196
+ },
+ {
+ "epoch": 72.18173875054609,
+ "grad_norm": 0.2305673509836197,
+ "learning_rate": 0.0006,
+ "loss": 3.5064914226531982,
+ "step": 5197
+ },
+ {
+ "epoch": 72.19571865443424,
+ "grad_norm": 0.21706514060497284,
+ "learning_rate": 0.0006,
+ "loss": 3.4467828273773193,
+ "step": 5198
+ },
+ {
+ "epoch": 72.20969855832242,
+ "grad_norm": 0.21769501268863678,
+ "learning_rate": 0.0006,
+ "loss": 3.473309278488159,
+ "step": 5199
+ },
+ {
+ "epoch": 72.22367846221057,
+ "grad_norm": 0.23256097733974457,
+ "learning_rate": 0.0006,
+ "loss": 3.457587718963623,
+ "step": 5200
+ },
+ {
+ "epoch": 72.23765836609873,
+ "grad_norm": 0.23531964421272278,
+ "learning_rate": 0.0006,
+ "loss": 3.485863208770752,
+ "step": 5201
+ },
+ {
+ "epoch": 72.2516382699869,
+ "grad_norm": 0.2240941971540451,
+ "learning_rate": 0.0006,
+ "loss": 3.4677062034606934,
+ "step": 5202
+ },
+ {
+ "epoch": 72.26561817387505,
+ "grad_norm": 0.22390629351139069,
+ "learning_rate": 0.0006,
+ "loss": 3.5203280448913574,
+ "step": 5203
+ },
+ {
+ "epoch": 72.27959807776321,
+ "grad_norm": 0.21178147196769714,
+ "learning_rate": 0.0006,
+ "loss": 3.4824347496032715,
+ "step": 5204
+ },
+ {
+ "epoch": 72.29357798165138,
+ "grad_norm": 0.21738161146640778,
+ "learning_rate": 0.0006,
+ "loss": 3.4587113857269287,
+ "step": 5205
+ },
+ {
+ "epoch": 72.30755788553954,
+ "grad_norm": 0.21534697711467743,
+ "learning_rate": 0.0006,
+ "loss": 3.499147415161133,
+ "step": 5206
+ },
+ {
+ "epoch": 72.3215377894277,
+ "grad_norm": 0.22616741061210632,
+ "learning_rate": 0.0006,
+ "loss": 3.5025434494018555,
+ "step": 5207
+ },
+ {
+ "epoch": 72.33551769331586,
+ "grad_norm": 0.26784682273864746,
+ "learning_rate": 0.0006,
+ "loss": 3.4733633995056152,
+ "step": 5208
+ },
+ {
+ "epoch": 72.34949759720402,
+ "grad_norm": 0.2774837911128998,
+ "learning_rate": 0.0006,
+ "loss": 3.508082389831543,
+ "step": 5209
+ },
+ {
+ "epoch": 72.36347750109218,
+ "grad_norm": 0.28039997816085815,
+ "learning_rate": 0.0006,
+ "loss": 3.503880500793457,
+ "step": 5210
+ },
+ {
+ "epoch": 72.37745740498035,
+ "grad_norm": 0.2990040183067322,
+ "learning_rate": 0.0006,
+ "loss": 3.4885363578796387,
+ "step": 5211
+ },
+ {
+ "epoch": 72.3914373088685,
+ "grad_norm": 0.2857728600502014,
+ "learning_rate": 0.0006,
+ "loss": 3.4977049827575684,
+ "step": 5212
+ },
+ {
+ "epoch": 72.40541721275666,
+ "grad_norm": 0.2675400972366333,
+ "learning_rate": 0.0006,
+ "loss": 3.49003267288208,
+ "step": 5213
+ },
+ {
+ "epoch": 72.41939711664482,
+ "grad_norm": 0.258004367351532,
+ "learning_rate": 0.0006,
+ "loss": 3.4726967811584473,
+ "step": 5214
+ },
+ {
+ "epoch": 72.43337702053299,
+ "grad_norm": 0.20816923677921295,
+ "learning_rate": 0.0006,
+ "loss": 3.4798901081085205,
+ "step": 5215
+ },
+ {
+ "epoch": 72.44735692442114,
+ "grad_norm": 0.21589888632297516,
+ "learning_rate": 0.0006,
+ "loss": 3.4784836769104004,
+ "step": 5216
+ },
+ {
+ "epoch": 72.4613368283093,
+ "grad_norm": 0.22663359344005585,
+ "learning_rate": 0.0006,
+ "loss": 3.5278806686401367,
+ "step": 5217
+ },
+ {
+ "epoch": 72.47531673219747,
+ "grad_norm": 0.2165268212556839,
+ "learning_rate": 0.0006,
+ "loss": 3.5198988914489746,
+ "step": 5218
+ },
+ {
+ "epoch": 72.48929663608563,
+ "grad_norm": 0.22635547816753387,
+ "learning_rate": 0.0006,
+ "loss": 3.476203441619873,
+ "step": 5219
+ },
+ {
+ "epoch": 72.50327653997378,
+ "grad_norm": 0.23315833508968353,
+ "learning_rate": 0.0006,
+ "loss": 3.4451494216918945,
+ "step": 5220
+ },
+ {
+ "epoch": 72.51725644386195,
+ "grad_norm": 0.2262018620967865,
+ "learning_rate": 0.0006,
+ "loss": 3.5126566886901855,
+ "step": 5221
+ },
+ {
+ "epoch": 72.53123634775011,
+ "grad_norm": 0.2273683398962021,
+ "learning_rate": 0.0006,
+ "loss": 3.485413074493408,
+ "step": 5222
+ },
+ {
+ "epoch": 72.54521625163827,
+ "grad_norm": 0.25254759192466736,
+ "learning_rate": 0.0006,
+ "loss": 3.4997940063476562,
+ "step": 5223
+ },
+ {
+ "epoch": 72.55919615552644,
+ "grad_norm": 0.23467472195625305,
+ "learning_rate": 0.0006,
+ "loss": 3.4924259185791016,
+ "step": 5224
+ },
+ {
+ "epoch": 72.57317605941459,
+ "grad_norm": 0.20206208527088165,
+ "learning_rate": 0.0006,
+ "loss": 3.5010361671447754,
+ "step": 5225
+ },
+ {
+ "epoch": 72.58715596330275,
+ "grad_norm": 0.21526813507080078,
+ "learning_rate": 0.0006,
+ "loss": 3.4889681339263916,
+ "step": 5226
+ },
+ {
+ "epoch": 72.60113586719092,
+ "grad_norm": 0.212263822555542,
+ "learning_rate": 0.0006,
+ "loss": 3.467782497406006,
+ "step": 5227
+ },
+ {
+ "epoch": 72.61511577107908,
+ "grad_norm": 0.2126736342906952,
+ "learning_rate": 0.0006,
+ "loss": 3.470729112625122,
+ "step": 5228
+ },
+ {
+ "epoch": 72.62909567496723,
+ "grad_norm": 0.22448696196079254,
+ "learning_rate": 0.0006,
+ "loss": 3.4688234329223633,
+ "step": 5229
+ },
+ {
+ "epoch": 72.6430755788554,
+ "grad_norm": 0.2322869449853897,
+ "learning_rate": 0.0006,
+ "loss": 3.490103244781494,
+ "step": 5230
+ },
+ {
+ "epoch": 72.65705548274356,
+ "grad_norm": 0.220216765999794,
+ "learning_rate": 0.0006,
+ "loss": 3.474886894226074,
+ "step": 5231
+ },
+ {
+ "epoch": 72.67103538663171,
+ "grad_norm": 0.2191896289587021,
+ "learning_rate": 0.0006,
+ "loss": 3.4965224266052246,
+ "step": 5232
+ },
+ {
+ "epoch": 72.68501529051987,
+ "grad_norm": 0.2120339423418045,
+ "learning_rate": 0.0006,
+ "loss": 3.4710934162139893,
+ "step": 5233
+ },
+ {
+ "epoch": 72.69899519440804,
+ "grad_norm": 0.21517711877822876,
+ "learning_rate": 0.0006,
+ "loss": 3.4698405265808105,
+ "step": 5234
+ },
+ {
+ "epoch": 72.7129750982962,
+ "grad_norm": 0.22012922167778015,
+ "learning_rate": 0.0006,
+ "loss": 3.513930320739746,
+ "step": 5235
+ },
+ {
+ "epoch": 72.72695500218435,
+ "grad_norm": 0.19231025874614716,
+ "learning_rate": 0.0006,
+ "loss": 3.476353168487549,
+ "step": 5236
+ },
+ {
+ "epoch": 72.74093490607252,
+ "grad_norm": 0.19383855164051056,
+ "learning_rate": 0.0006,
+ "loss": 3.5002031326293945,
+ "step": 5237
+ },
+ {
+ "epoch": 72.75491480996068,
+ "grad_norm": 0.22001665830612183,
+ "learning_rate": 0.0006,
+ "loss": 3.5080370903015137,
+ "step": 5238
+ },
+ {
+ "epoch": 72.76889471384884,
+ "grad_norm": 0.27273863554000854,
+ "learning_rate": 0.0006,
+ "loss": 3.504277229309082,
+ "step": 5239
+ },
+ {
+ "epoch": 72.78287461773701,
+ "grad_norm": 0.29014623165130615,
+ "learning_rate": 0.0006,
+ "loss": 3.493192195892334,
+ "step": 5240
+ },
+ {
+ "epoch": 72.79685452162516,
+ "grad_norm": 0.23816372454166412,
+ "learning_rate": 0.0006,
+ "loss": 3.519443988800049,
+ "step": 5241
+ },
+ {
+ "epoch": 72.81083442551332,
+ "grad_norm": 0.24076248705387115,
+ "learning_rate": 0.0006,
+ "loss": 3.4935712814331055,
+ "step": 5242
+ },
+ {
+ "epoch": 72.82481432940149,
+ "grad_norm": 0.264731764793396,
+ "learning_rate": 0.0006,
+ "loss": 3.5004658699035645,
+ "step": 5243
+ },
+ {
+ "epoch": 72.83879423328965,
+ "grad_norm": 0.2939820885658264,
+ "learning_rate": 0.0006,
+ "loss": 3.5297188758850098,
+ "step": 5244
+ },
+ {
+ "epoch": 72.8527741371778,
+ "grad_norm": 0.2904265522956848,
+ "learning_rate": 0.0006,
+ "loss": 3.496081829071045,
+ "step": 5245
+ },
+ {
+ "epoch": 72.86675404106597,
+ "grad_norm": 0.23428429663181305,
+ "learning_rate": 0.0006,
+ "loss": 3.493727684020996,
+ "step": 5246
+ },
+ {
+ "epoch": 72.88073394495413,
+ "grad_norm": 0.22780542075634003,
+ "learning_rate": 0.0006,
+ "loss": 3.523094654083252,
+ "step": 5247
+ },
+ {
+ "epoch": 72.89471384884229,
+ "grad_norm": 0.2745443284511566,
+ "learning_rate": 0.0006,
+ "loss": 3.497293472290039,
+ "step": 5248
+ },
+ {
+ "epoch": 72.90869375273044,
+ "grad_norm": 0.2678476870059967,
+ "learning_rate": 0.0006,
+ "loss": 3.5067732334136963,
+ "step": 5249
+ },
+ {
+ "epoch": 72.92267365661861,
+ "grad_norm": 0.2085755169391632,
+ "learning_rate": 0.0006,
+ "loss": 3.4695444107055664,
+ "step": 5250
+ },
+ {
+ "epoch": 72.93665356050677,
+ "grad_norm": 0.21488192677497864,
+ "learning_rate": 0.0006,
+ "loss": 3.522829055786133,
+ "step": 5251
+ },
+ {
+ "epoch": 72.95063346439493,
+ "grad_norm": 0.21374237537384033,
+ "learning_rate": 0.0006,
+ "loss": 3.5045344829559326,
+ "step": 5252
+ },
+ {
+ "epoch": 72.9646133682831,
+ "grad_norm": 0.23072510957717896,
+ "learning_rate": 0.0006,
+ "loss": 3.474557399749756,
+ "step": 5253
+ },
+ {
+ "epoch": 72.97859327217125,
+ "grad_norm": 0.22491991519927979,
+ "learning_rate": 0.0006,
+ "loss": 3.489443778991699,
+ "step": 5254
+ },
+ {
+ "epoch": 72.99257317605941,
+ "grad_norm": 0.22613948583602905,
+ "learning_rate": 0.0006,
+ "loss": 3.5056793689727783,
+ "step": 5255
+ },
+ {
+ "epoch": 73.0,
+ "grad_norm": 0.23435193300247192,
+ "learning_rate": 0.0006,
+ "loss": 3.520559787750244,
+ "step": 5256
+ },
+ {
+ "epoch": 73.0,
+ "eval_loss": 3.982722282409668,
+ "eval_runtime": 46.464,
+ "eval_samples_per_second": 52.557,
+ "eval_steps_per_second": 3.293,
+ "step": 5256
+ },
+ {
+ "epoch": 73.01397990388816,
+ "grad_norm": 0.22881661355495453,
+ "learning_rate": 0.0006,
+ "loss": 3.468254566192627,
+ "step": 5257
+ },
+ {
+ "epoch": 73.02795980777633,
+ "grad_norm": 0.2834230959415436,
+ "learning_rate": 0.0006,
+ "loss": 3.4606356620788574,
+ "step": 5258
+ },
+ {
+ "epoch": 73.04193971166448,
+ "grad_norm": 0.319560170173645,
+ "learning_rate": 0.0006,
+ "loss": 3.475505828857422,
+ "step": 5259
+ },
+ {
+ "epoch": 73.05591961555264,
+ "grad_norm": 0.32880520820617676,
+ "learning_rate": 0.0006,
+ "loss": 3.493833541870117,
+ "step": 5260
+ },
+ {
+ "epoch": 73.06989951944081,
+ "grad_norm": 0.2588718831539154,
+ "learning_rate": 0.0006,
+ "loss": 3.469942092895508,
+ "step": 5261
+ },
+ {
+ "epoch": 73.08387942332897,
+ "grad_norm": 0.2732829749584198,
+ "learning_rate": 0.0006,
+ "loss": 3.4531373977661133,
+ "step": 5262
+ },
+ {
+ "epoch": 73.09785932721712,
+ "grad_norm": 0.320829302072525,
+ "learning_rate": 0.0006,
+ "loss": 3.492429256439209,
+ "step": 5263
+ },
+ {
+ "epoch": 73.1118392311053,
+ "grad_norm": 0.24258096516132355,
+ "learning_rate": 0.0006,
+ "loss": 3.4776196479797363,
+ "step": 5264
+ },
+ {
+ "epoch": 73.12581913499345,
+ "grad_norm": 0.24697262048721313,
+ "learning_rate": 0.0006,
+ "loss": 3.4624526500701904,
+ "step": 5265
+ },
+ {
+ "epoch": 73.1397990388816,
+ "grad_norm": 0.2629360258579254,
+ "learning_rate": 0.0006,
+ "loss": 3.4608631134033203,
+ "step": 5266
+ },
+ {
+ "epoch": 73.15377894276976,
+ "grad_norm": 0.27060654759407043,
+ "learning_rate": 0.0006,
+ "loss": 3.4834189414978027,
+ "step": 5267
+ },
+ {
+ "epoch": 73.16775884665793,
+ "grad_norm": 0.246307834982872,
+ "learning_rate": 0.0006,
+ "loss": 3.477510929107666,
+ "step": 5268
+ },
+ {
+ "epoch": 73.18173875054609,
+ "grad_norm": 0.2469998300075531,
+ "learning_rate": 0.0006,
+ "loss": 3.4855780601501465,
+ "step": 5269
+ },
+ {
+ "epoch": 73.19571865443424,
+ "grad_norm": 0.24349135160446167,
+ "learning_rate": 0.0006,
+ "loss": 3.468322277069092,
+ "step": 5270
+ },
+ {
+ "epoch": 73.20969855832242,
+ "grad_norm": 0.22562023997306824,
+ "learning_rate": 0.0006,
+ "loss": 3.4036335945129395,
+ "step": 5271
+ },
+ {
+ "epoch": 73.22367846221057,
+ "grad_norm": 0.2311064749956131,
+ "learning_rate": 0.0006,
+ "loss": 3.4399924278259277,
+ "step": 5272
+ },
+ {
+ "epoch": 73.23765836609873,
+ "grad_norm": 0.21685704588890076,
+ "learning_rate": 0.0006,
+ "loss": 3.476149797439575,
+ "step": 5273
+ },
+ {
+ "epoch": 73.2516382699869,
+ "grad_norm": 0.22484169900417328,
+ "learning_rate": 0.0006,
+ "loss": 3.475130081176758,
+ "step": 5274
+ },
+ {
+ "epoch": 73.26561817387505,
+ "grad_norm": 0.22753819823265076,
+ "learning_rate": 0.0006,
+ "loss": 3.5259978771209717,
+ "step": 5275
+ },
+ {
+ "epoch": 73.27959807776321,
+ "grad_norm": 0.23297421634197235,
+ "learning_rate": 0.0006,
+ "loss": 3.4897689819335938,
+ "step": 5276
+ },
+ {
+ "epoch": 73.29357798165138,
+ "grad_norm": 0.22227609157562256,
+ "learning_rate": 0.0006,
+ "loss": 3.4681925773620605,
+ "step": 5277
+ },
+ {
+ "epoch": 73.30755788553954,
+ "grad_norm": 0.23390381038188934,
+ "learning_rate": 0.0006,
+ "loss": 3.4816267490386963,
+ "step": 5278
+ },
+ {
+ "epoch": 73.3215377894277,
+ "grad_norm": 0.25036972761154175,
+ "learning_rate": 0.0006,
+ "loss": 3.4513161182403564,
+ "step": 5279
+ },
+ {
+ "epoch": 73.33551769331586,
+ "grad_norm": 0.22425831854343414,
+ "learning_rate": 0.0006,
+ "loss": 3.504206657409668,
+ "step": 5280
+ },
+ {
+ "epoch": 73.34949759720402,
+ "grad_norm": 0.20987127721309662,
+ "learning_rate": 0.0006,
+ "loss": 3.463526487350464,
+ "step": 5281
+ },
+ {
+ "epoch": 73.36347750109218,
+ "grad_norm": 0.22594138979911804,
+ "learning_rate": 0.0006,
+ "loss": 3.467395067214966,
+ "step": 5282
+ },
+ {
+ "epoch": 73.37745740498035,
+ "grad_norm": 0.2819368243217468,
+ "learning_rate": 0.0006,
+ "loss": 3.458601236343384,
+ "step": 5283
+ },
+ {
+ "epoch": 73.3914373088685,
+ "grad_norm": 0.28703081607818604,
+ "learning_rate": 0.0006,
+ "loss": 3.489081382751465,
+ "step": 5284
+ },
+ {
+ "epoch": 73.40541721275666,
+ "grad_norm": 0.22495481371879578,
+ "learning_rate": 0.0006,
+ "loss": 3.4584622383117676,
+ "step": 5285
+ },
+ {
+ "epoch": 73.41939711664482,
+ "grad_norm": 0.26278403401374817,
+ "learning_rate": 0.0006,
+ "loss": 3.4610750675201416,
+ "step": 5286
+ },
+ {
+ "epoch": 73.43337702053299,
+ "grad_norm": 0.2335882931947708,
+ "learning_rate": 0.0006,
+ "loss": 3.4642205238342285,
+ "step": 5287
+ },
+ {
+ "epoch": 73.44735692442114,
+ "grad_norm": 0.23634950816631317,
+ "learning_rate": 0.0006,
+ "loss": 3.4628195762634277,
+ "step": 5288
+ },
+ {
+ "epoch": 73.4613368283093,
+ "grad_norm": 0.2428942620754242,
+ "learning_rate": 0.0006,
+ "loss": 3.486786365509033,
+ "step": 5289
+ },
+ {
+ "epoch": 73.47531673219747,
+ "grad_norm": 0.2235412299633026,
+ "learning_rate": 0.0006,
+ "loss": 3.4655373096466064,
+ "step": 5290
+ },
+ {
+ "epoch": 73.48929663608563,
+ "grad_norm": 0.22825124859809875,
+ "learning_rate": 0.0006,
+ "loss": 3.519115924835205,
+ "step": 5291
+ },
+ {
+ "epoch": 73.50327653997378,
+ "grad_norm": 0.22555601596832275,
+ "learning_rate": 0.0006,
+ "loss": 3.4672327041625977,
+ "step": 5292
+ },
+ {
+ "epoch": 73.51725644386195,
+ "grad_norm": 0.21196876466274261,
+ "learning_rate": 0.0006,
+ "loss": 3.477919101715088,
+ "step": 5293
+ },
+ {
+ "epoch": 73.53123634775011,
+ "grad_norm": 0.21254780888557434,
+ "learning_rate": 0.0006,
+ "loss": 3.493739604949951,
+ "step": 5294
+ },
+ {
+ "epoch": 73.54521625163827,
+ "grad_norm": 0.22243253886699677,
+ "learning_rate": 0.0006,
+ "loss": 3.5028891563415527,
+ "step": 5295
+ },
+ {
+ "epoch": 73.55919615552644,
+ "grad_norm": 0.1982688158750534,
+ "learning_rate": 0.0006,
+ "loss": 3.490211009979248,
+ "step": 5296
+ },
+ {
+ "epoch": 73.57317605941459,
+ "grad_norm": 0.19433127343654633,
+ "learning_rate": 0.0006,
+ "loss": 3.5000174045562744,
+ "step": 5297
+ },
+ {
+ "epoch": 73.58715596330275,
+ "grad_norm": 0.19470061361789703,
+ "learning_rate": 0.0006,
+ "loss": 3.4725089073181152,
+ "step": 5298
+ },
+ {
+ "epoch": 73.60113586719092,
+ "grad_norm": 0.20479093492031097,
+ "learning_rate": 0.0006,
+ "loss": 3.473649501800537,
+ "step": 5299
+ },
+ {
+ "epoch": 73.61511577107908,
+ "grad_norm": 0.22485226392745972,
+ "learning_rate": 0.0006,
+ "loss": 3.5234975814819336,
+ "step": 5300
+ },
+ {
+ "epoch": 73.62909567496723,
+ "grad_norm": 0.2219000905752182,
+ "learning_rate": 0.0006,
+ "loss": 3.483283281326294,
+ "step": 5301
+ },
+ {
+ "epoch": 73.6430755788554,
+ "grad_norm": 0.25735849142074585,
+ "learning_rate": 0.0006,
+ "loss": 3.4863831996917725,
+ "step": 5302
+ },
+ {
+ "epoch": 73.65705548274356,
+ "grad_norm": 0.2822291851043701,
+ "learning_rate": 0.0006,
+ "loss": 3.4864425659179688,
+ "step": 5303
+ },
+ {
+ "epoch": 73.67103538663171,
+ "grad_norm": 0.2965867817401886,
+ "learning_rate": 0.0006,
+ "loss": 3.487774133682251,
+ "step": 5304
+ },
+ {
+ "epoch": 73.68501529051987,
+ "grad_norm": 0.2446807473897934,
+ "learning_rate": 0.0006,
+ "loss": 3.485553741455078,
+ "step": 5305
+ },
+ {
+ "epoch": 73.69899519440804,
+ "grad_norm": 0.2298526167869568,
+ "learning_rate": 0.0006,
+ "loss": 3.4513039588928223,
+ "step": 5306
+ },
+ {
+ "epoch": 73.7129750982962,
+ "grad_norm": 0.24967409670352936,
+ "learning_rate": 0.0006,
+ "loss": 3.4974756240844727,
+ "step": 5307
+ },
+ {
+ "epoch": 73.72695500218435,
+ "grad_norm": 0.22180770337581635,
+ "learning_rate": 0.0006,
+ "loss": 3.501955509185791,
+ "step": 5308
+ },
+ {
+ "epoch": 73.74093490607252,
+ "grad_norm": 0.21294254064559937,
+ "learning_rate": 0.0006,
+ "loss": 3.52626371383667,
+ "step": 5309
+ },
+ {
+ "epoch": 73.75491480996068,
+ "grad_norm": 0.23970918357372284,
+ "learning_rate": 0.0006,
+ "loss": 3.479355812072754,
+ "step": 5310
+ },
+ {
+ "epoch": 73.76889471384884,
+ "grad_norm": 0.22978267073631287,
+ "learning_rate": 0.0006,
+ "loss": 3.4972357749938965,
+ "step": 5311
+ },
+ {
+ "epoch": 73.78287461773701,
+ "grad_norm": 0.22393731772899628,
+ "learning_rate": 0.0006,
+ "loss": 3.499718189239502,
+ "step": 5312
+ },
+ {
+ "epoch": 73.79685452162516,
+ "grad_norm": 0.2265646904706955,
+ "learning_rate": 0.0006,
+ "loss": 3.5240416526794434,
+ "step": 5313
+ },
+ {
+ "epoch": 73.81083442551332,
+ "grad_norm": 0.23060904443264008,
+ "learning_rate": 0.0006,
+ "loss": 3.4981179237365723,
+ "step": 5314
+ },
+ {
+ "epoch": 73.82481432940149,
+ "grad_norm": 0.2358054369688034,
+ "learning_rate": 0.0006,
+ "loss": 3.4671754837036133,
+ "step": 5315
+ },
+ {
+ "epoch": 73.83879423328965,
+ "grad_norm": 0.22466880083084106,
+ "learning_rate": 0.0006,
+ "loss": 3.5178170204162598,
+ "step": 5316
+ },
+ {
+ "epoch": 73.8527741371778,
+ "grad_norm": 0.24523386359214783,
+ "learning_rate": 0.0006,
+ "loss": 3.5059657096862793,
+ "step": 5317
+ },
+ {
+ "epoch": 73.86675404106597,
+ "grad_norm": 0.24812379479408264,
+ "learning_rate": 0.0006,
+ "loss": 3.4979734420776367,
+ "step": 5318
+ },
+ {
+ "epoch": 73.88073394495413,
+ "grad_norm": 0.2210223525762558,
+ "learning_rate": 0.0006,
+ "loss": 3.5158674716949463,
+ "step": 5319
+ },
+ {
+ "epoch": 73.89471384884229,
+ "grad_norm": 0.23374506831169128,
+ "learning_rate": 0.0006,
+ "loss": 3.4730381965637207,
+ "step": 5320
+ },
+ {
+ "epoch": 73.90869375273044,
+ "grad_norm": 0.2209903597831726,
+ "learning_rate": 0.0006,
+ "loss": 3.5152671337127686,
+ "step": 5321
+ },
+ {
+ "epoch": 73.92267365661861,
+ "grad_norm": 0.19783467054367065,
+ "learning_rate": 0.0006,
+ "loss": 3.508627414703369,
+ "step": 5322
+ },
+ {
+ "epoch": 73.93665356050677,
+ "grad_norm": 0.20683151483535767,
+ "learning_rate": 0.0006,
+ "loss": 3.5041322708129883,
+ "step": 5323
+ },
+ {
+ "epoch": 73.95063346439493,
+ "grad_norm": 0.20111984014511108,
+ "learning_rate": 0.0006,
+ "loss": 3.4618184566497803,
+ "step": 5324
+ },
+ {
+ "epoch": 73.9646133682831,
+ "grad_norm": 0.22296449542045593,
+ "learning_rate": 0.0006,
+ "loss": 3.4695611000061035,
+ "step": 5325
+ },
+ {
+ "epoch": 73.97859327217125,
+ "grad_norm": 0.22317543625831604,
+ "learning_rate": 0.0006,
+ "loss": 3.497115135192871,
+ "step": 5326
+ },
+ {
+ "epoch": 73.99257317605941,
+ "grad_norm": 0.19182799756526947,
+ "learning_rate": 0.0006,
+ "loss": 3.502279758453369,
+ "step": 5327
+ },
+ {
+ "epoch": 74.0,
+ "grad_norm": 0.2484123259782791,
+ "learning_rate": 0.0006,
+ "loss": 3.4998650550842285,
+ "step": 5328
+ },
+ {
+ "epoch": 74.0,
+ "eval_loss": 3.977353572845459,
+ "eval_runtime": 46.9154,
+ "eval_samples_per_second": 52.051,
+ "eval_steps_per_second": 3.261,
+ "step": 5328
+ },
+ {
+ "epoch": 74.01397990388816,
+ "grad_norm": 0.2512458860874176,
+ "learning_rate": 0.0006,
+ "loss": 3.454616069793701,
+ "step": 5329
+ },
+ {
+ "epoch": 74.02795980777633,
+ "grad_norm": 0.2781964838504791,
+ "learning_rate": 0.0006,
+ "loss": 3.4444780349731445,
+ "step": 5330
+ },
+ {
+ "epoch": 74.04193971166448,
+ "grad_norm": 0.3014058470726013,
+ "learning_rate": 0.0006,
+ "loss": 3.4059829711914062,
+ "step": 5331
+ },
+ {
+ "epoch": 74.05591961555264,
+ "grad_norm": 0.28226929903030396,
+ "learning_rate": 0.0006,
+ "loss": 3.474538803100586,
+ "step": 5332
+ },
+ {
+ "epoch": 74.06989951944081,
+ "grad_norm": 0.22589807212352753,
+ "learning_rate": 0.0006,
+ "loss": 3.4484004974365234,
+ "step": 5333
+ },
+ {
+ "epoch": 74.08387942332897,
+ "grad_norm": 0.2317565679550171,
+ "learning_rate": 0.0006,
+ "loss": 3.4559502601623535,
+ "step": 5334
+ },
+ {
+ "epoch": 74.09785932721712,
+ "grad_norm": 0.2484085112810135,
+ "learning_rate": 0.0006,
+ "loss": 3.4723763465881348,
+ "step": 5335
+ },
+ {
+ "epoch": 74.1118392311053,
+ "grad_norm": 0.24313412606716156,
+ "learning_rate": 0.0006,
+ "loss": 3.4581704139709473,
+ "step": 5336
+ },
+ {
+ "epoch": 74.12581913499345,
+ "grad_norm": 0.2317453771829605,
+ "learning_rate": 0.0006,
+ "loss": 3.4556710720062256,
+ "step": 5337
+ },
+ {
+ "epoch": 74.1397990388816,
+ "grad_norm": 0.2423294484615326,
+ "learning_rate": 0.0006,
+ "loss": 3.450899124145508,
+ "step": 5338
+ },
+ {
+ "epoch": 74.15377894276976,
+ "grad_norm": 0.24861979484558105,
+ "learning_rate": 0.0006,
+ "loss": 3.4524154663085938,
+ "step": 5339
+ },
+ {
+ "epoch": 74.16775884665793,
+ "grad_norm": 0.27226537466049194,
+ "learning_rate": 0.0006,
+ "loss": 3.4728293418884277,
+ "step": 5340
+ },
+ {
+ "epoch": 74.18173875054609,
+ "grad_norm": 0.29282820224761963,
+ "learning_rate": 0.0006,
+ "loss": 3.482450008392334,
+ "step": 5341
+ },
+ {
+ "epoch": 74.19571865443424,
+ "grad_norm": 0.2666662931442261,
+ "learning_rate": 0.0006,
+ "loss": 3.4708619117736816,
+ "step": 5342
+ },
+ {
+ "epoch": 74.20969855832242,
+ "grad_norm": 0.22029168903827667,
+ "learning_rate": 0.0006,
+ "loss": 3.4592952728271484,
+ "step": 5343
+ },
+ {
+ "epoch": 74.22367846221057,
+ "grad_norm": 0.21203964948654175,
+ "learning_rate": 0.0006,
+ "loss": 3.4983129501342773,
+ "step": 5344
+ },
+ {
+ "epoch": 74.23765836609873,
+ "grad_norm": 0.24254444241523743,
+ "learning_rate": 0.0006,
+ "loss": 3.4695663452148438,
+ "step": 5345
+ },
+ {
+ "epoch": 74.2516382699869,
+ "grad_norm": 0.28514090180397034,
+ "learning_rate": 0.0006,
+ "loss": 3.501779556274414,
+ "step": 5346
+ },
+ {
+ "epoch": 74.26561817387505,
+ "grad_norm": 0.27082809805870056,
+ "learning_rate": 0.0006,
+ "loss": 3.4754765033721924,
+ "step": 5347
+ },
+ {
+ "epoch": 74.27959807776321,
+ "grad_norm": 0.21144570410251617,
+ "learning_rate": 0.0006,
+ "loss": 3.481623649597168,
+ "step": 5348
+ },
+ {
+ "epoch": 74.29357798165138,
+ "grad_norm": 0.23012803494930267,
+ "learning_rate": 0.0006,
+ "loss": 3.478872776031494,
+ "step": 5349
+ },
+ {
+ "epoch": 74.30755788553954,
+ "grad_norm": 0.2497818022966385,
+ "learning_rate": 0.0006,
+ "loss": 3.465214252471924,
+ "step": 5350
+ },
+ {
+ "epoch": 74.3215377894277,
+ "grad_norm": 0.27346086502075195,
+ "learning_rate": 0.0006,
+ "loss": 3.4749603271484375,
+ "step": 5351
+ },
+ {
+ "epoch": 74.33551769331586,
+ "grad_norm": 0.24193984270095825,
+ "learning_rate": 0.0006,
+ "loss": 3.4898180961608887,
+ "step": 5352
+ },
+ {
+ "epoch": 74.34949759720402,
+ "grad_norm": 0.2432994395494461,
+ "learning_rate": 0.0006,
+ "loss": 3.478156089782715,
+ "step": 5353
+ },
+ {
+ "epoch": 74.36347750109218,
+ "grad_norm": 0.331503689289093,
+ "learning_rate": 0.0006,
+ "loss": 3.496690273284912,
+ "step": 5354
+ },
+ {
+ "epoch": 74.37745740498035,
+ "grad_norm": 0.27467086911201477,
+ "learning_rate": 0.0006,
+ "loss": 3.472379684448242,
+ "step": 5355
+ },
+ {
+ "epoch": 74.3914373088685,
+ "grad_norm": 0.23563839495182037,
+ "learning_rate": 0.0006,
+ "loss": 3.4963388442993164,
+ "step": 5356
+ },
+ {
+ "epoch": 74.40541721275666,
+ "grad_norm": 0.23829393088817596,
+ "learning_rate": 0.0006,
+ "loss": 3.473438262939453,
+ "step": 5357
+ },
+ {
+ "epoch": 74.41939711664482,
+ "grad_norm": 0.28113624453544617,
+ "learning_rate": 0.0006,
+ "loss": 3.481104612350464,
+ "step": 5358
+ },
+ {
+ "epoch": 74.43337702053299,
+ "grad_norm": 0.29099389910697937,
+ "learning_rate": 0.0006,
+ "loss": 3.497255325317383,
+ "step": 5359
+ },
+ {
+ "epoch": 74.44735692442114,
+ "grad_norm": 0.24911890923976898,
+ "learning_rate": 0.0006,
+ "loss": 3.4622669219970703,
+ "step": 5360
+ },
+ {
+ "epoch": 74.4613368283093,
+ "grad_norm": 0.2488860785961151,
+ "learning_rate": 0.0006,
+ "loss": 3.4906888008117676,
+ "step": 5361
+ },
+ {
+ "epoch": 74.47531673219747,
+ "grad_norm": 0.27969980239868164,
+ "learning_rate": 0.0006,
+ "loss": 3.495727300643921,
+ "step": 5362
+ },
+ {
+ "epoch": 74.48929663608563,
+ "grad_norm": 0.2811402380466461,
+ "learning_rate": 0.0006,
+ "loss": 3.4817042350769043,
+ "step": 5363
+ },
+ {
+ "epoch": 74.50327653997378,
+ "grad_norm": 0.25717079639434814,
+ "learning_rate": 0.0006,
+ "loss": 3.4818572998046875,
+ "step": 5364
+ },
+ {
+ "epoch": 74.51725644386195,
+ "grad_norm": 0.2527103126049042,
+ "learning_rate": 0.0006,
+ "loss": 3.494536876678467,
+ "step": 5365
+ },
+ {
+ "epoch": 74.53123634775011,
+ "grad_norm": 0.24561476707458496,
+ "learning_rate": 0.0006,
+ "loss": 3.4908809661865234,
+ "step": 5366
+ },
+ {
+ "epoch": 74.54521625163827,
+ "grad_norm": 0.2540345788002014,
+ "learning_rate": 0.0006,
+ "loss": 3.477179765701294,
+ "step": 5367
+ },
+ {
+ "epoch": 74.55919615552644,
+ "grad_norm": 0.2220340371131897,
+ "learning_rate": 0.0006,
+ "loss": 3.4914112091064453,
+ "step": 5368
+ },
+ {
+ "epoch": 74.57317605941459,
+ "grad_norm": 0.21146169304847717,
+ "learning_rate": 0.0006,
+ "loss": 3.457792043685913,
+ "step": 5369
+ },
+ {
+ "epoch": 74.58715596330275,
+ "grad_norm": 0.2657042443752289,
+ "learning_rate": 0.0006,
+ "loss": 3.4626612663269043,
+ "step": 5370
+ },
+ {
+ "epoch": 74.60113586719092,
+ "grad_norm": 0.2684510350227356,
+ "learning_rate": 0.0006,
+ "loss": 3.472271203994751,
+ "step": 5371
+ },
+ {
+ "epoch": 74.61511577107908,
+ "grad_norm": 0.22635070979595184,
+ "learning_rate": 0.0006,
+ "loss": 3.4719159603118896,
+ "step": 5372
+ },
+ {
+ "epoch": 74.62909567496723,
+ "grad_norm": 0.22514945268630981,
+ "learning_rate": 0.0006,
+ "loss": 3.4851810932159424,
+ "step": 5373
+ },
+ {
+ "epoch": 74.6430755788554,
+ "grad_norm": 0.24570822715759277,
+ "learning_rate": 0.0006,
+ "loss": 3.4688820838928223,
+ "step": 5374
+ },
+ {
+ "epoch": 74.65705548274356,
+ "grad_norm": 0.24397042393684387,
+ "learning_rate": 0.0006,
+ "loss": 3.4923229217529297,
+ "step": 5375
+ },
+ {
+ "epoch": 74.67103538663171,
+ "grad_norm": 0.23729953169822693,
+ "learning_rate": 0.0006,
+ "loss": 3.4608895778656006,
+ "step": 5376
+ },
+ {
+ "epoch": 74.68501529051987,
+ "grad_norm": 0.2729131877422333,
+ "learning_rate": 0.0006,
+ "loss": 3.4602279663085938,
+ "step": 5377
+ },
+ {
+ "epoch": 74.69899519440804,
+ "grad_norm": 0.25115323066711426,
+ "learning_rate": 0.0006,
+ "loss": 3.514993906021118,
+ "step": 5378
+ },
+ {
+ "epoch": 74.7129750982962,
+ "grad_norm": 0.22035203874111176,
+ "learning_rate": 0.0006,
+ "loss": 3.4471445083618164,
+ "step": 5379
+ },
+ {
+ "epoch": 74.72695500218435,
+ "grad_norm": 0.21248559653759003,
+ "learning_rate": 0.0006,
+ "loss": 3.495924472808838,
+ "step": 5380
+ },
+ {
+ "epoch": 74.74093490607252,
+ "grad_norm": 0.2532788813114166,
+ "learning_rate": 0.0006,
+ "loss": 3.4937939643859863,
+ "step": 5381
+ },
+ {
+ "epoch": 74.75491480996068,
+ "grad_norm": 0.3140663206577301,
+ "learning_rate": 0.0006,
+ "loss": 3.47257661819458,
+ "step": 5382
+ },
+ {
+ "epoch": 74.76889471384884,
+ "grad_norm": 0.24233469367027283,
+ "learning_rate": 0.0006,
+ "loss": 3.522697925567627,
+ "step": 5383
+ },
+ {
+ "epoch": 74.78287461773701,
+ "grad_norm": 0.21789517998695374,
+ "learning_rate": 0.0006,
+ "loss": 3.4718894958496094,
+ "step": 5384
+ },
+ {
+ "epoch": 74.79685452162516,
+ "grad_norm": 0.27909520268440247,
+ "learning_rate": 0.0006,
+ "loss": 3.495565891265869,
+ "step": 5385
+ },
+ {
+ "epoch": 74.81083442551332,
+ "grad_norm": 0.2829185724258423,
+ "learning_rate": 0.0006,
+ "loss": 3.498117446899414,
+ "step": 5386
+ },
+ {
+ "epoch": 74.82481432940149,
+ "grad_norm": 0.24295735359191895,
+ "learning_rate": 0.0006,
+ "loss": 3.520672559738159,
+ "step": 5387
+ },
+ {
+ "epoch": 74.83879423328965,
+ "grad_norm": 0.22691823542118073,
+ "learning_rate": 0.0006,
+ "loss": 3.493411064147949,
+ "step": 5388
+ },
+ {
+ "epoch": 74.8527741371778,
+ "grad_norm": 0.2304782122373581,
+ "learning_rate": 0.0006,
+ "loss": 3.515381336212158,
+ "step": 5389
+ },
+ {
+ "epoch": 74.86675404106597,
+ "grad_norm": 0.2201395034790039,
+ "learning_rate": 0.0006,
+ "loss": 3.4841480255126953,
+ "step": 5390
+ },
+ {
+ "epoch": 74.88073394495413,
+ "grad_norm": 0.2174619734287262,
+ "learning_rate": 0.0006,
+ "loss": 3.522420883178711,
+ "step": 5391
+ },
+ {
+ "epoch": 74.89471384884229,
+ "grad_norm": 0.2168722301721573,
+ "learning_rate": 0.0006,
+ "loss": 3.5378670692443848,
+ "step": 5392
+ },
+ {
+ "epoch": 74.90869375273044,
+ "grad_norm": 0.2191118448972702,
+ "learning_rate": 0.0006,
+ "loss": 3.4727582931518555,
+ "step": 5393
+ },
+ {
+ "epoch": 74.92267365661861,
+ "grad_norm": 0.20210173726081848,
+ "learning_rate": 0.0006,
+ "loss": 3.482863426208496,
+ "step": 5394
+ },
+ {
+ "epoch": 74.93665356050677,
+ "grad_norm": 0.2193301022052765,
+ "learning_rate": 0.0006,
+ "loss": 3.504102945327759,
+ "step": 5395
+ },
+ {
+ "epoch": 74.95063346439493,
+ "grad_norm": 0.24017557501792908,
+ "learning_rate": 0.0006,
+ "loss": 3.5117030143737793,
+ "step": 5396
+ },
+ {
+ "epoch": 74.9646133682831,
+ "grad_norm": 0.2410554140806198,
+ "learning_rate": 0.0006,
+ "loss": 3.4764766693115234,
+ "step": 5397
+ },
+ {
+ "epoch": 74.97859327217125,
+ "grad_norm": 0.22423039376735687,
+ "learning_rate": 0.0006,
+ "loss": 3.480515480041504,
+ "step": 5398
+ },
+ {
+ "epoch": 74.99257317605941,
+ "grad_norm": 0.21722744405269623,
+ "learning_rate": 0.0006,
+ "loss": 3.498002052307129,
+ "step": 5399
+ },
+ {
+ "epoch": 75.0,
+ "grad_norm": 0.25303882360458374,
+ "learning_rate": 0.0006,
+ "loss": 3.5146775245666504,
+ "step": 5400
+ },
+ {
+ "epoch": 75.0,
+ "eval_loss": 3.98659610748291,
+ "eval_runtime": 46.184,
+ "eval_samples_per_second": 52.875,
+ "eval_steps_per_second": 3.313,
+ "step": 5400
+ },
+ {
+ "epoch": 75.01397990388816,
+ "grad_norm": 0.22890645265579224,
+ "learning_rate": 0.0006,
+ "loss": 3.4320144653320312,
+ "step": 5401
+ },
+ {
+ "epoch": 75.02795980777633,
+ "grad_norm": 0.21108074486255646,
+ "learning_rate": 0.0006,
+ "loss": 3.4783573150634766,
+ "step": 5402
+ },
+ {
+ "epoch": 75.04193971166448,
+ "grad_norm": 0.24622507393360138,
+ "learning_rate": 0.0006,
+ "loss": 3.443662643432617,
+ "step": 5403
+ },
+ {
+ "epoch": 75.05591961555264,
+ "grad_norm": 0.27554580569267273,
+ "learning_rate": 0.0006,
+ "loss": 3.4758429527282715,
+ "step": 5404
+ },
+ {
+ "epoch": 75.06989951944081,
+ "grad_norm": 0.23775196075439453,
+ "learning_rate": 0.0006,
+ "loss": 3.433439254760742,
+ "step": 5405
+ },
+ {
+ "epoch": 75.08387942332897,
+ "grad_norm": 0.24933192133903503,
+ "learning_rate": 0.0006,
+ "loss": 3.474876642227173,
+ "step": 5406
+ },
+ {
+ "epoch": 75.09785932721712,
+ "grad_norm": 0.25970155000686646,
+ "learning_rate": 0.0006,
+ "loss": 3.4557571411132812,
+ "step": 5407
+ },
+ {
+ "epoch": 75.1118392311053,
+ "grad_norm": 0.24002394080162048,
+ "learning_rate": 0.0006,
+ "loss": 3.487683057785034,
+ "step": 5408
+ },
+ {
+ "epoch": 75.12581913499345,
+ "grad_norm": 0.23790079355239868,
+ "learning_rate": 0.0006,
+ "loss": 3.4572582244873047,
+ "step": 5409
+ },
+ {
+ "epoch": 75.1397990388816,
+ "grad_norm": 0.24431537091732025,
+ "learning_rate": 0.0006,
+ "loss": 3.47338604927063,
+ "step": 5410
+ },
+ {
+ "epoch": 75.15377894276976,
+ "grad_norm": 0.23062901198863983,
+ "learning_rate": 0.0006,
+ "loss": 3.4597620964050293,
+ "step": 5411
+ },
+ {
+ "epoch": 75.16775884665793,
+ "grad_norm": 0.22011473774909973,
+ "learning_rate": 0.0006,
+ "loss": 3.442854404449463,
+ "step": 5412
+ },
+ {
+ "epoch": 75.18173875054609,
+ "grad_norm": 0.22079597413539886,
+ "learning_rate": 0.0006,
+ "loss": 3.4655394554138184,
+ "step": 5413
+ },
+ {
+ "epoch": 75.19571865443424,
+ "grad_norm": 0.2491050660610199,
+ "learning_rate": 0.0006,
+ "loss": 3.4235432147979736,
+ "step": 5414
+ },
+ {
+ "epoch": 75.20969855832242,
+ "grad_norm": 0.2579537332057953,
+ "learning_rate": 0.0006,
+ "loss": 3.4655489921569824,
+ "step": 5415
+ },
+ {
+ "epoch": 75.22367846221057,
+ "grad_norm": 0.2544846832752228,
+ "learning_rate": 0.0006,
+ "loss": 3.4843227863311768,
+ "step": 5416
+ },
+ {
+ "epoch": 75.23765836609873,
+ "grad_norm": 0.2496761977672577,
+ "learning_rate": 0.0006,
+ "loss": 3.4830572605133057,
+ "step": 5417
+ },
+ {
+ "epoch": 75.2516382699869,
+ "grad_norm": 0.23450163006782532,
+ "learning_rate": 0.0006,
+ "loss": 3.4443750381469727,
+ "step": 5418
+ },
+ {
+ "epoch": 75.26561817387505,
+ "grad_norm": 0.21221424639225006,
+ "learning_rate": 0.0006,
+ "loss": 3.4960341453552246,
+ "step": 5419
+ },
+ {
+ "epoch": 75.27959807776321,
+ "grad_norm": 0.24375751614570618,
+ "learning_rate": 0.0006,
+ "loss": 3.489213466644287,
+ "step": 5420
+ },
+ {
+ "epoch": 75.29357798165138,
+ "grad_norm": 0.2396956831216812,
+ "learning_rate": 0.0006,
+ "loss": 3.4710469245910645,
+ "step": 5421
+ },
+ {
+ "epoch": 75.30755788553954,
+ "grad_norm": 0.2423015981912613,
+ "learning_rate": 0.0006,
+ "loss": 3.4676403999328613,
+ "step": 5422
+ },
+ {
+ "epoch": 75.3215377894277,
+ "grad_norm": 0.21398219466209412,
+ "learning_rate": 0.0006,
+ "loss": 3.4844627380371094,
+ "step": 5423
+ },
+ {
+ "epoch": 75.33551769331586,
+ "grad_norm": 0.22983498871326447,
+ "learning_rate": 0.0006,
+ "loss": 3.499535083770752,
+ "step": 5424
+ },
+ {
+ "epoch": 75.34949759720402,
+ "grad_norm": 0.2247568666934967,
+ "learning_rate": 0.0006,
+ "loss": 3.459460973739624,
+ "step": 5425
+ },
+ {
+ "epoch": 75.36347750109218,
+ "grad_norm": 0.2223675400018692,
+ "learning_rate": 0.0006,
+ "loss": 3.483078718185425,
+ "step": 5426
+ },
+ {
+ "epoch": 75.37745740498035,
+ "grad_norm": 0.25076913833618164,
+ "learning_rate": 0.0006,
+ "loss": 3.4823365211486816,
+ "step": 5427
+ },
+ {
+ "epoch": 75.3914373088685,
+ "grad_norm": 0.23170171678066254,
+ "learning_rate": 0.0006,
+ "loss": 3.487278461456299,
+ "step": 5428
+ },
+ {
+ "epoch": 75.40541721275666,
+ "grad_norm": 0.22735518217086792,
+ "learning_rate": 0.0006,
+ "loss": 3.4565181732177734,
+ "step": 5429
+ },
+ {
+ "epoch": 75.41939711664482,
+ "grad_norm": 0.2241843193769455,
+ "learning_rate": 0.0006,
+ "loss": 3.4886221885681152,
+ "step": 5430
+ },
+ {
+ "epoch": 75.43337702053299,
+ "grad_norm": 0.23641140758991241,
+ "learning_rate": 0.0006,
+ "loss": 3.4589765071868896,
+ "step": 5431
+ },
+ {
+ "epoch": 75.44735692442114,
+ "grad_norm": 0.22404645383358002,
+ "learning_rate": 0.0006,
+ "loss": 3.4804739952087402,
+ "step": 5432
+ },
+ {
+ "epoch": 75.4613368283093,
+ "grad_norm": 0.22107535600662231,
+ "learning_rate": 0.0006,
+ "loss": 3.5022053718566895,
+ "step": 5433
+ },
+ {
+ "epoch": 75.47531673219747,
+ "grad_norm": 0.26106131076812744,
+ "learning_rate": 0.0006,
+ "loss": 3.4907431602478027,
+ "step": 5434
+ },
+ {
+ "epoch": 75.48929663608563,
+ "grad_norm": 0.24156032502651215,
+ "learning_rate": 0.0006,
+ "loss": 3.4733991622924805,
+ "step": 5435
+ },
+ {
+ "epoch": 75.50327653997378,
+ "grad_norm": 0.24767442047595978,
+ "learning_rate": 0.0006,
+ "loss": 3.4697909355163574,
+ "step": 5436
+ },
+ {
+ "epoch": 75.51725644386195,
+ "grad_norm": 0.2323860228061676,
+ "learning_rate": 0.0006,
+ "loss": 3.4606242179870605,
+ "step": 5437
+ },
+ {
+ "epoch": 75.53123634775011,
+ "grad_norm": 0.2262393981218338,
+ "learning_rate": 0.0006,
+ "loss": 3.4854025840759277,
+ "step": 5438
+ },
+ {
+ "epoch": 75.54521625163827,
+ "grad_norm": 0.23461535573005676,
+ "learning_rate": 0.0006,
+ "loss": 3.4778385162353516,
+ "step": 5439
+ },
+ {
+ "epoch": 75.55919615552644,
+ "grad_norm": 0.27161163091659546,
+ "learning_rate": 0.0006,
+ "loss": 3.495377540588379,
+ "step": 5440
+ },
+ {
+ "epoch": 75.57317605941459,
+ "grad_norm": 0.24618741869926453,
+ "learning_rate": 0.0006,
+ "loss": 3.47642183303833,
+ "step": 5441
+ },
+ {
+ "epoch": 75.58715596330275,
+ "grad_norm": 0.22948747873306274,
+ "learning_rate": 0.0006,
+ "loss": 3.4459116458892822,
+ "step": 5442
+ },
+ {
+ "epoch": 75.60113586719092,
+ "grad_norm": 0.23935501277446747,
+ "learning_rate": 0.0006,
+ "loss": 3.487091541290283,
+ "step": 5443
+ },
+ {
+ "epoch": 75.61511577107908,
+ "grad_norm": 0.2796297073364258,
+ "learning_rate": 0.0006,
+ "loss": 3.473480701446533,
+ "step": 5444
+ },
+ {
+ "epoch": 75.62909567496723,
+ "grad_norm": 0.29329824447631836,
+ "learning_rate": 0.0006,
+ "loss": 3.5074462890625,
+ "step": 5445
+ },
+ {
+ "epoch": 75.6430755788554,
+ "grad_norm": 0.2570355534553528,
+ "learning_rate": 0.0006,
+ "loss": 3.489321231842041,
+ "step": 5446
+ },
+ {
+ "epoch": 75.65705548274356,
+ "grad_norm": 0.2363484650850296,
+ "learning_rate": 0.0006,
+ "loss": 3.468007802963257,
+ "step": 5447
+ },
+ {
+ "epoch": 75.67103538663171,
+ "grad_norm": 0.2406139075756073,
+ "learning_rate": 0.0006,
+ "loss": 3.46791410446167,
+ "step": 5448
+ },
+ {
+ "epoch": 75.68501529051987,
+ "grad_norm": 0.21734113991260529,
+ "learning_rate": 0.0006,
+ "loss": 3.4879536628723145,
+ "step": 5449
+ },
+ {
+ "epoch": 75.69899519440804,
+ "grad_norm": 0.23314808309078217,
+ "learning_rate": 0.0006,
+ "loss": 3.4743285179138184,
+ "step": 5450
+ },
+ {
+ "epoch": 75.7129750982962,
+ "grad_norm": 0.23886935412883759,
+ "learning_rate": 0.0006,
+ "loss": 3.4746532440185547,
+ "step": 5451
+ },
+ {
+ "epoch": 75.72695500218435,
+ "grad_norm": 0.22808042168617249,
+ "learning_rate": 0.0006,
+ "loss": 3.4969987869262695,
+ "step": 5452
+ },
+ {
+ "epoch": 75.74093490607252,
+ "grad_norm": 0.2143876552581787,
+ "learning_rate": 0.0006,
+ "loss": 3.4843339920043945,
+ "step": 5453
+ },
+ {
+ "epoch": 75.75491480996068,
+ "grad_norm": 0.21905699372291565,
+ "learning_rate": 0.0006,
+ "loss": 3.4854626655578613,
+ "step": 5454
+ },
+ {
+ "epoch": 75.76889471384884,
+ "grad_norm": 0.222469300031662,
+ "learning_rate": 0.0006,
+ "loss": 3.4997758865356445,
+ "step": 5455
+ },
+ {
+ "epoch": 75.78287461773701,
+ "grad_norm": 0.23095394670963287,
+ "learning_rate": 0.0006,
+ "loss": 3.515315532684326,
+ "step": 5456
+ },
+ {
+ "epoch": 75.79685452162516,
+ "grad_norm": 0.23326516151428223,
+ "learning_rate": 0.0006,
+ "loss": 3.482665538787842,
+ "step": 5457
+ },
+ {
+ "epoch": 75.81083442551332,
+ "grad_norm": 0.22779764235019684,
+ "learning_rate": 0.0006,
+ "loss": 3.5068790912628174,
+ "step": 5458
+ },
+ {
+ "epoch": 75.82481432940149,
+ "grad_norm": 0.2396935224533081,
+ "learning_rate": 0.0006,
+ "loss": 3.4874000549316406,
+ "step": 5459
+ },
+ {
+ "epoch": 75.83879423328965,
+ "grad_norm": 0.25353050231933594,
+ "learning_rate": 0.0006,
+ "loss": 3.4948503971099854,
+ "step": 5460
+ },
+ {
+ "epoch": 75.8527741371778,
+ "grad_norm": 0.21191656589508057,
+ "learning_rate": 0.0006,
+ "loss": 3.4621965885162354,
+ "step": 5461
+ },
+ {
+ "epoch": 75.86675404106597,
+ "grad_norm": 0.2224014550447464,
+ "learning_rate": 0.0006,
+ "loss": 3.4568324089050293,
+ "step": 5462
+ },
+ {
+ "epoch": 75.88073394495413,
+ "grad_norm": 0.2205243706703186,
+ "learning_rate": 0.0006,
+ "loss": 3.4809136390686035,
+ "step": 5463
+ },
+ {
+ "epoch": 75.89471384884229,
+ "grad_norm": 0.2065657079219818,
+ "learning_rate": 0.0006,
+ "loss": 3.4930431842803955,
+ "step": 5464
+ },
+ {
+ "epoch": 75.90869375273044,
+ "grad_norm": 0.23017582297325134,
+ "learning_rate": 0.0006,
+ "loss": 3.471113443374634,
+ "step": 5465
+ },
+ {
+ "epoch": 75.92267365661861,
+ "grad_norm": 0.23186780512332916,
+ "learning_rate": 0.0006,
+ "loss": 3.4903316497802734,
+ "step": 5466
+ },
+ {
+ "epoch": 75.93665356050677,
+ "grad_norm": 0.21441741287708282,
+ "learning_rate": 0.0006,
+ "loss": 3.4762520790100098,
+ "step": 5467
+ },
+ {
+ "epoch": 75.95063346439493,
+ "grad_norm": 0.23942787945270538,
+ "learning_rate": 0.0006,
+ "loss": 3.5144190788269043,
+ "step": 5468
+ },
+ {
+ "epoch": 75.9646133682831,
+ "grad_norm": 0.2516455352306366,
+ "learning_rate": 0.0006,
+ "loss": 3.496724843978882,
+ "step": 5469
+ },
+ {
+ "epoch": 75.97859327217125,
+ "grad_norm": 0.26983004808425903,
+ "learning_rate": 0.0006,
+ "loss": 3.4975180625915527,
+ "step": 5470
+ },
+ {
+ "epoch": 75.99257317605941,
+ "grad_norm": 0.2471132129430771,
+ "learning_rate": 0.0006,
+ "loss": 3.4897234439849854,
+ "step": 5471
+ },
+ {
+ "epoch": 76.0,
+ "grad_norm": 0.2606436014175415,
+ "learning_rate": 0.0006,
+ "loss": 3.4784388542175293,
+ "step": 5472
+ },
+ {
+ "epoch": 76.0,
+ "eval_loss": 3.973442554473877,
+ "eval_runtime": 46.348,
+ "eval_samples_per_second": 52.688,
+ "eval_steps_per_second": 3.301,
+ "step": 5472
+ },
+ {
+ "epoch": 76.01397990388816,
+ "grad_norm": 0.28274571895599365,
+ "learning_rate": 0.0006,
+ "loss": 3.432469367980957,
+ "step": 5473
+ },
+ {
+ "epoch": 76.02795980777633,
+ "grad_norm": 0.3165026009082794,
+ "learning_rate": 0.0006,
+ "loss": 3.4121832847595215,
+ "step": 5474
+ },
+ {
+ "epoch": 76.04193971166448,
+ "grad_norm": 0.33816471695899963,
+ "learning_rate": 0.0006,
+ "loss": 3.429927349090576,
+ "step": 5475
+ },
+ {
+ "epoch": 76.05591961555264,
+ "grad_norm": 0.2813689112663269,
+ "learning_rate": 0.0006,
+ "loss": 3.4992995262145996,
+ "step": 5476
+ },
+ {
+ "epoch": 76.06989951944081,
+ "grad_norm": 0.2319067418575287,
+ "learning_rate": 0.0006,
+ "loss": 3.468172073364258,
+ "step": 5477
+ },
+ {
+ "epoch": 76.08387942332897,
+ "grad_norm": 0.2963521182537079,
+ "learning_rate": 0.0006,
+ "loss": 3.4306883811950684,
+ "step": 5478
+ },
+ {
+ "epoch": 76.09785932721712,
+ "grad_norm": 0.3123914301395416,
+ "learning_rate": 0.0006,
+ "loss": 3.434607982635498,
+ "step": 5479
+ },
+ {
+ "epoch": 76.1118392311053,
+ "grad_norm": 0.28318360447883606,
+ "learning_rate": 0.0006,
+ "loss": 3.4461169242858887,
+ "step": 5480
+ },
+ {
+ "epoch": 76.12581913499345,
+ "grad_norm": 0.2599116265773773,
+ "learning_rate": 0.0006,
+ "loss": 3.452208995819092,
+ "step": 5481
+ },
+ {
+ "epoch": 76.1397990388816,
+ "grad_norm": 0.2547946274280548,
+ "learning_rate": 0.0006,
+ "loss": 3.456831455230713,
+ "step": 5482
+ },
+ {
+ "epoch": 76.15377894276976,
+ "grad_norm": 0.25178053975105286,
+ "learning_rate": 0.0006,
+ "loss": 3.4486212730407715,
+ "step": 5483
+ },
+ {
+ "epoch": 76.16775884665793,
+ "grad_norm": 0.2500477135181427,
+ "learning_rate": 0.0006,
+ "loss": 3.4861841201782227,
+ "step": 5484
+ },
+ {
+ "epoch": 76.18173875054609,
+ "grad_norm": 0.25729069113731384,
+ "learning_rate": 0.0006,
+ "loss": 3.4522268772125244,
+ "step": 5485
+ },
+ {
+ "epoch": 76.19571865443424,
+ "grad_norm": 0.2618412375450134,
+ "learning_rate": 0.0006,
+ "loss": 3.4625625610351562,
+ "step": 5486
+ },
+ {
+ "epoch": 76.20969855832242,
+ "grad_norm": 0.24906174838542938,
+ "learning_rate": 0.0006,
+ "loss": 3.5010147094726562,
+ "step": 5487
+ },
+ {
+ "epoch": 76.22367846221057,
+ "grad_norm": 0.2631669342517853,
+ "learning_rate": 0.0006,
+ "loss": 3.4834048748016357,
+ "step": 5488
+ },
+ {
+ "epoch": 76.23765836609873,
+ "grad_norm": 0.22962148487567902,
+ "learning_rate": 0.0006,
+ "loss": 3.437201976776123,
+ "step": 5489
+ },
+ {
+ "epoch": 76.2516382699869,
+ "grad_norm": 0.21113844215869904,
+ "learning_rate": 0.0006,
+ "loss": 3.4715452194213867,
+ "step": 5490
+ },
+ {
+ "epoch": 76.26561817387505,
+ "grad_norm": 0.21345451474189758,
+ "learning_rate": 0.0006,
+ "loss": 3.470175266265869,
+ "step": 5491
+ },
+ {
+ "epoch": 76.27959807776321,
+ "grad_norm": 0.22897619009017944,
+ "learning_rate": 0.0006,
+ "loss": 3.458296775817871,
+ "step": 5492
+ },
+ {
+ "epoch": 76.29357798165138,
+ "grad_norm": 0.2222777009010315,
+ "learning_rate": 0.0006,
+ "loss": 3.4519572257995605,
+ "step": 5493
+ },
+ {
+ "epoch": 76.30755788553954,
+ "grad_norm": 0.2297116070985794,
+ "learning_rate": 0.0006,
+ "loss": 3.470816135406494,
+ "step": 5494
+ },
+ {
+ "epoch": 76.3215377894277,
+ "grad_norm": 0.24459777772426605,
+ "learning_rate": 0.0006,
+ "loss": 3.490407943725586,
+ "step": 5495
+ },
+ {
+ "epoch": 76.33551769331586,
+ "grad_norm": 0.22549642622470856,
+ "learning_rate": 0.0006,
+ "loss": 3.471388816833496,
+ "step": 5496
+ },
+ {
+ "epoch": 76.34949759720402,
+ "grad_norm": 0.220009908080101,
+ "learning_rate": 0.0006,
+ "loss": 3.46909761428833,
+ "step": 5497
+ },
+ {
+ "epoch": 76.36347750109218,
+ "grad_norm": 0.21473553776741028,
+ "learning_rate": 0.0006,
+ "loss": 3.491536855697632,
+ "step": 5498
+ },
+ {
+ "epoch": 76.37745740498035,
+ "grad_norm": 0.20368808507919312,
+ "learning_rate": 0.0006,
+ "loss": 3.449502944946289,
+ "step": 5499
+ },
+ {
+ "epoch": 76.3914373088685,
+ "grad_norm": 0.20559734106063843,
+ "learning_rate": 0.0006,
+ "loss": 3.4466171264648438,
+ "step": 5500
+ },
+ {
+ "epoch": 76.40541721275666,
+ "grad_norm": 0.2107473611831665,
+ "learning_rate": 0.0006,
+ "loss": 3.4709558486938477,
+ "step": 5501
+ },
+ {
+ "epoch": 76.41939711664482,
+ "grad_norm": 0.20774322748184204,
+ "learning_rate": 0.0006,
+ "loss": 3.5067873001098633,
+ "step": 5502
+ },
+ {
+ "epoch": 76.43337702053299,
+ "grad_norm": 0.20616984367370605,
+ "learning_rate": 0.0006,
+ "loss": 3.46718168258667,
+ "step": 5503
+ },
+ {
+ "epoch": 76.44735692442114,
+ "grad_norm": 0.22518491744995117,
+ "learning_rate": 0.0006,
+ "loss": 3.4624900817871094,
+ "step": 5504
+ },
+ {
+ "epoch": 76.4613368283093,
+ "grad_norm": 0.21241682767868042,
+ "learning_rate": 0.0006,
+ "loss": 3.4807918071746826,
+ "step": 5505
+ },
+ {
+ "epoch": 76.47531673219747,
+ "grad_norm": 0.20331047475337982,
+ "learning_rate": 0.0006,
+ "loss": 3.4387712478637695,
+ "step": 5506
+ },
+ {
+ "epoch": 76.48929663608563,
+ "grad_norm": 0.20476725697517395,
+ "learning_rate": 0.0006,
+ "loss": 3.478198528289795,
+ "step": 5507
+ },
+ {
+ "epoch": 76.50327653997378,
+ "grad_norm": 0.19799263775348663,
+ "learning_rate": 0.0006,
+ "loss": 3.458812713623047,
+ "step": 5508
+ },
+ {
+ "epoch": 76.51725644386195,
+ "grad_norm": 0.20378418266773224,
+ "learning_rate": 0.0006,
+ "loss": 3.492115020751953,
+ "step": 5509
+ },
+ {
+ "epoch": 76.53123634775011,
+ "grad_norm": 0.19318847358226776,
+ "learning_rate": 0.0006,
+ "loss": 3.444512128829956,
+ "step": 5510
+ },
+ {
+ "epoch": 76.54521625163827,
+ "grad_norm": 0.20766256749629974,
+ "learning_rate": 0.0006,
+ "loss": 3.4897234439849854,
+ "step": 5511
+ },
+ {
+ "epoch": 76.55919615552644,
+ "grad_norm": 0.20554299652576447,
+ "learning_rate": 0.0006,
+ "loss": 3.470285415649414,
+ "step": 5512
+ },
+ {
+ "epoch": 76.57317605941459,
+ "grad_norm": 0.21081854403018951,
+ "learning_rate": 0.0006,
+ "loss": 3.473558187484741,
+ "step": 5513
+ },
+ {
+ "epoch": 76.58715596330275,
+ "grad_norm": 0.23622071743011475,
+ "learning_rate": 0.0006,
+ "loss": 3.4782865047454834,
+ "step": 5514
+ },
+ {
+ "epoch": 76.60113586719092,
+ "grad_norm": 0.22481192648410797,
+ "learning_rate": 0.0006,
+ "loss": 3.4996776580810547,
+ "step": 5515
+ },
+ {
+ "epoch": 76.61511577107908,
+ "grad_norm": 0.2192675620317459,
+ "learning_rate": 0.0006,
+ "loss": 3.521728277206421,
+ "step": 5516
+ },
+ {
+ "epoch": 76.62909567496723,
+ "grad_norm": 0.23627865314483643,
+ "learning_rate": 0.0006,
+ "loss": 3.5019800662994385,
+ "step": 5517
+ },
+ {
+ "epoch": 76.6430755788554,
+ "grad_norm": 0.22374436259269714,
+ "learning_rate": 0.0006,
+ "loss": 3.4527387619018555,
+ "step": 5518
+ },
+ {
+ "epoch": 76.65705548274356,
+ "grad_norm": 0.23872409760951996,
+ "learning_rate": 0.0006,
+ "loss": 3.4938204288482666,
+ "step": 5519
+ },
+ {
+ "epoch": 76.67103538663171,
+ "grad_norm": 0.23943012952804565,
+ "learning_rate": 0.0006,
+ "loss": 3.4902846813201904,
+ "step": 5520
+ },
+ {
+ "epoch": 76.68501529051987,
+ "grad_norm": 0.23605254292488098,
+ "learning_rate": 0.0006,
+ "loss": 3.4715919494628906,
+ "step": 5521
+ },
+ {
+ "epoch": 76.69899519440804,
+ "grad_norm": 0.2116839587688446,
+ "learning_rate": 0.0006,
+ "loss": 3.515658378601074,
+ "step": 5522
+ },
+ {
+ "epoch": 76.7129750982962,
+ "grad_norm": 0.22817043960094452,
+ "learning_rate": 0.0006,
+ "loss": 3.466154098510742,
+ "step": 5523
+ },
+ {
+ "epoch": 76.72695500218435,
+ "grad_norm": 0.26730015873908997,
+ "learning_rate": 0.0006,
+ "loss": 3.4843881130218506,
+ "step": 5524
+ },
+ {
+ "epoch": 76.74093490607252,
+ "grad_norm": 0.24832892417907715,
+ "learning_rate": 0.0006,
+ "loss": 3.495150566101074,
+ "step": 5525
+ },
+ {
+ "epoch": 76.75491480996068,
+ "grad_norm": 0.2358865737915039,
+ "learning_rate": 0.0006,
+ "loss": 3.475858211517334,
+ "step": 5526
+ },
+ {
+ "epoch": 76.76889471384884,
+ "grad_norm": 0.2310672551393509,
+ "learning_rate": 0.0006,
+ "loss": 3.5099706649780273,
+ "step": 5527
+ },
+ {
+ "epoch": 76.78287461773701,
+ "grad_norm": 0.25284910202026367,
+ "learning_rate": 0.0006,
+ "loss": 3.510529041290283,
+ "step": 5528
+ },
+ {
+ "epoch": 76.79685452162516,
+ "grad_norm": 0.25088873505592346,
+ "learning_rate": 0.0006,
+ "loss": 3.480929374694824,
+ "step": 5529
+ },
+ {
+ "epoch": 76.81083442551332,
+ "grad_norm": 0.2349051833152771,
+ "learning_rate": 0.0006,
+ "loss": 3.457334041595459,
+ "step": 5530
+ },
+ {
+ "epoch": 76.82481432940149,
+ "grad_norm": 0.23446795344352722,
+ "learning_rate": 0.0006,
+ "loss": 3.493607997894287,
+ "step": 5531
+ },
+ {
+ "epoch": 76.83879423328965,
+ "grad_norm": 0.2285156399011612,
+ "learning_rate": 0.0006,
+ "loss": 3.4858193397521973,
+ "step": 5532
+ },
+ {
+ "epoch": 76.8527741371778,
+ "grad_norm": 0.2247011512517929,
+ "learning_rate": 0.0006,
+ "loss": 3.4766390323638916,
+ "step": 5533
+ },
+ {
+ "epoch": 76.86675404106597,
+ "grad_norm": 0.2175820916891098,
+ "learning_rate": 0.0006,
+ "loss": 3.4545059204101562,
+ "step": 5534
+ },
+ {
+ "epoch": 76.88073394495413,
+ "grad_norm": 0.22910308837890625,
+ "learning_rate": 0.0006,
+ "loss": 3.5201025009155273,
+ "step": 5535
+ },
+ {
+ "epoch": 76.89471384884229,
+ "grad_norm": 0.25674742460250854,
+ "learning_rate": 0.0006,
+ "loss": 3.4851608276367188,
+ "step": 5536
+ },
+ {
+ "epoch": 76.90869375273044,
+ "grad_norm": 0.2939974069595337,
+ "learning_rate": 0.0006,
+ "loss": 3.4853453636169434,
+ "step": 5537
+ },
+ {
+ "epoch": 76.92267365661861,
+ "grad_norm": 0.30211713910102844,
+ "learning_rate": 0.0006,
+ "loss": 3.465470790863037,
+ "step": 5538
+ },
+ {
+ "epoch": 76.93665356050677,
+ "grad_norm": 0.27954718470573425,
+ "learning_rate": 0.0006,
+ "loss": 3.4921772480010986,
+ "step": 5539
+ },
+ {
+ "epoch": 76.95063346439493,
+ "grad_norm": 0.22834837436676025,
+ "learning_rate": 0.0006,
+ "loss": 3.4936747550964355,
+ "step": 5540
+ },
+ {
+ "epoch": 76.9646133682831,
+ "grad_norm": 0.2698923349380493,
+ "learning_rate": 0.0006,
+ "loss": 3.477677345275879,
+ "step": 5541
+ },
+ {
+ "epoch": 76.97859327217125,
+ "grad_norm": 0.3047026991844177,
+ "learning_rate": 0.0006,
+ "loss": 3.48386549949646,
+ "step": 5542
+ },
+ {
+ "epoch": 76.99257317605941,
+ "grad_norm": 0.25420624017715454,
+ "learning_rate": 0.0006,
+ "loss": 3.4954631328582764,
+ "step": 5543
+ },
+ {
+ "epoch": 77.0,
+ "grad_norm": 0.24408109486103058,
+ "learning_rate": 0.0006,
+ "loss": 3.445572853088379,
+ "step": 5544
+ },
+ {
+ "epoch": 77.0,
+ "eval_loss": 4.007506847381592,
+ "eval_runtime": 46.4852,
+ "eval_samples_per_second": 52.533,
+ "eval_steps_per_second": 3.291,
+ "step": 5544
+ },
+ {
+ "epoch": 77.01397990388816,
+ "grad_norm": 0.2915779650211334,
+ "learning_rate": 0.0006,
+ "loss": 3.4563474655151367,
+ "step": 5545
+ },
+ {
+ "epoch": 77.02795980777633,
+ "grad_norm": 0.3169223964214325,
+ "learning_rate": 0.0006,
+ "loss": 3.4652180671691895,
+ "step": 5546
+ },
+ {
+ "epoch": 77.04193971166448,
+ "grad_norm": 0.25844213366508484,
+ "learning_rate": 0.0006,
+ "loss": 3.462665319442749,
+ "step": 5547
+ },
+ {
+ "epoch": 77.05591961555264,
+ "grad_norm": 0.25074702501296997,
+ "learning_rate": 0.0006,
+ "loss": 3.4422531127929688,
+ "step": 5548
+ },
+ {
+ "epoch": 77.06989951944081,
+ "grad_norm": 0.25484949350357056,
+ "learning_rate": 0.0006,
+ "loss": 3.4290740489959717,
+ "step": 5549
+ },
+ {
+ "epoch": 77.08387942332897,
+ "grad_norm": 0.25956255197525024,
+ "learning_rate": 0.0006,
+ "loss": 3.450035333633423,
+ "step": 5550
+ },
+ {
+ "epoch": 77.09785932721712,
+ "grad_norm": 0.22940650582313538,
+ "learning_rate": 0.0006,
+ "loss": 3.4249258041381836,
+ "step": 5551
+ },
+ {
+ "epoch": 77.1118392311053,
+ "grad_norm": 0.2277630716562271,
+ "learning_rate": 0.0006,
+ "loss": 3.4766159057617188,
+ "step": 5552
+ },
+ {
+ "epoch": 77.12581913499345,
+ "grad_norm": 0.23797406256198883,
+ "learning_rate": 0.0006,
+ "loss": 3.4734766483306885,
+ "step": 5553
+ },
+ {
+ "epoch": 77.1397990388816,
+ "grad_norm": 0.21684569120407104,
+ "learning_rate": 0.0006,
+ "loss": 3.459162950515747,
+ "step": 5554
+ },
+ {
+ "epoch": 77.15377894276976,
+ "grad_norm": 0.22176246345043182,
+ "learning_rate": 0.0006,
+ "loss": 3.4285407066345215,
+ "step": 5555
+ },
+ {
+ "epoch": 77.16775884665793,
+ "grad_norm": 0.22516196966171265,
+ "learning_rate": 0.0006,
+ "loss": 3.430083990097046,
+ "step": 5556
+ },
+ {
+ "epoch": 77.18173875054609,
+ "grad_norm": 0.21629488468170166,
+ "learning_rate": 0.0006,
+ "loss": 3.4317891597747803,
+ "step": 5557
+ },
+ {
+ "epoch": 77.19571865443424,
+ "grad_norm": 0.2110232561826706,
+ "learning_rate": 0.0006,
+ "loss": 3.441636085510254,
+ "step": 5558
+ },
+ {
+ "epoch": 77.20969855832242,
+ "grad_norm": 0.23733535408973694,
+ "learning_rate": 0.0006,
+ "loss": 3.4615190029144287,
+ "step": 5559
+ },
+ {
+ "epoch": 77.22367846221057,
+ "grad_norm": 0.2405165284872055,
+ "learning_rate": 0.0006,
+ "loss": 3.4209976196289062,
+ "step": 5560
+ },
+ {
+ "epoch": 77.23765836609873,
+ "grad_norm": 0.2469998598098755,
+ "learning_rate": 0.0006,
+ "loss": 3.4215030670166016,
+ "step": 5561
+ },
+ {
+ "epoch": 77.2516382699869,
+ "grad_norm": 0.25612175464630127,
+ "learning_rate": 0.0006,
+ "loss": 3.438417911529541,
+ "step": 5562
+ },
+ {
+ "epoch": 77.26561817387505,
+ "grad_norm": 0.23456519842147827,
+ "learning_rate": 0.0006,
+ "loss": 3.455623149871826,
+ "step": 5563
+ },
+ {
+ "epoch": 77.27959807776321,
+ "grad_norm": 0.21399898827075958,
+ "learning_rate": 0.0006,
+ "loss": 3.4647960662841797,
+ "step": 5564
+ },
+ {
+ "epoch": 77.29357798165138,
+ "grad_norm": 0.2188381850719452,
+ "learning_rate": 0.0006,
+ "loss": 3.4621052742004395,
+ "step": 5565
+ },
+ {
+ "epoch": 77.30755788553954,
+ "grad_norm": 0.24125352501869202,
+ "learning_rate": 0.0006,
+ "loss": 3.4713289737701416,
+ "step": 5566
+ },
+ {
+ "epoch": 77.3215377894277,
+ "grad_norm": 0.2860930562019348,
+ "learning_rate": 0.0006,
+ "loss": 3.4664835929870605,
+ "step": 5567
+ },
+ {
+ "epoch": 77.33551769331586,
+ "grad_norm": 0.26902931928634644,
+ "learning_rate": 0.0006,
+ "loss": 3.4329450130462646,
+ "step": 5568
+ },
+ {
+ "epoch": 77.34949759720402,
+ "grad_norm": 0.23035289347171783,
+ "learning_rate": 0.0006,
+ "loss": 3.4574995040893555,
+ "step": 5569
+ },
+ {
+ "epoch": 77.36347750109218,
+ "grad_norm": 0.21633122861385345,
+ "learning_rate": 0.0006,
+ "loss": 3.4807615280151367,
+ "step": 5570
+ },
+ {
+ "epoch": 77.37745740498035,
+ "grad_norm": 0.2515130043029785,
+ "learning_rate": 0.0006,
+ "loss": 3.4523189067840576,
+ "step": 5571
+ },
+ {
+ "epoch": 77.3914373088685,
+ "grad_norm": 0.24801862239837646,
+ "learning_rate": 0.0006,
+ "loss": 3.4288992881774902,
+ "step": 5572
+ },
+ {
+ "epoch": 77.40541721275666,
+ "grad_norm": 0.2390354871749878,
+ "learning_rate": 0.0006,
+ "loss": 3.484312057495117,
+ "step": 5573
+ },
+ {
+ "epoch": 77.41939711664482,
+ "grad_norm": 0.21863406896591187,
+ "learning_rate": 0.0006,
+ "loss": 3.514920234680176,
+ "step": 5574
+ },
+ {
+ "epoch": 77.43337702053299,
+ "grad_norm": 0.24056300520896912,
+ "learning_rate": 0.0006,
+ "loss": 3.4896860122680664,
+ "step": 5575
+ },
+ {
+ "epoch": 77.44735692442114,
+ "grad_norm": 0.23909592628479004,
+ "learning_rate": 0.0006,
+ "loss": 3.4793200492858887,
+ "step": 5576
+ },
+ {
+ "epoch": 77.4613368283093,
+ "grad_norm": 0.24454306066036224,
+ "learning_rate": 0.0006,
+ "loss": 3.461653470993042,
+ "step": 5577
+ },
+ {
+ "epoch": 77.47531673219747,
+ "grad_norm": 0.2615761160850525,
+ "learning_rate": 0.0006,
+ "loss": 3.465709686279297,
+ "step": 5578
+ },
+ {
+ "epoch": 77.48929663608563,
+ "grad_norm": 0.29720982909202576,
+ "learning_rate": 0.0006,
+ "loss": 3.4943344593048096,
+ "step": 5579
+ },
+ {
+ "epoch": 77.50327653997378,
+ "grad_norm": 0.2776208221912384,
+ "learning_rate": 0.0006,
+ "loss": 3.4455578327178955,
+ "step": 5580
+ },
+ {
+ "epoch": 77.51725644386195,
+ "grad_norm": 0.23060724139213562,
+ "learning_rate": 0.0006,
+ "loss": 3.505800724029541,
+ "step": 5581
+ },
+ {
+ "epoch": 77.53123634775011,
+ "grad_norm": 0.24247834086418152,
+ "learning_rate": 0.0006,
+ "loss": 3.4776053428649902,
+ "step": 5582
+ },
+ {
+ "epoch": 77.54521625163827,
+ "grad_norm": 0.2725653648376465,
+ "learning_rate": 0.0006,
+ "loss": 3.4901909828186035,
+ "step": 5583
+ },
+ {
+ "epoch": 77.55919615552644,
+ "grad_norm": 0.2663135528564453,
+ "learning_rate": 0.0006,
+ "loss": 3.4535939693450928,
+ "step": 5584
+ },
+ {
+ "epoch": 77.57317605941459,
+ "grad_norm": 0.22942234575748444,
+ "learning_rate": 0.0006,
+ "loss": 3.4478676319122314,
+ "step": 5585
+ },
+ {
+ "epoch": 77.58715596330275,
+ "grad_norm": 0.23543357849121094,
+ "learning_rate": 0.0006,
+ "loss": 3.4794795513153076,
+ "step": 5586
+ },
+ {
+ "epoch": 77.60113586719092,
+ "grad_norm": 0.24251683056354523,
+ "learning_rate": 0.0006,
+ "loss": 3.51051664352417,
+ "step": 5587
+ },
+ {
+ "epoch": 77.61511577107908,
+ "grad_norm": 0.2273259162902832,
+ "learning_rate": 0.0006,
+ "loss": 3.506385326385498,
+ "step": 5588
+ },
+ {
+ "epoch": 77.62909567496723,
+ "grad_norm": 0.23449701070785522,
+ "learning_rate": 0.0006,
+ "loss": 3.481034278869629,
+ "step": 5589
+ },
+ {
+ "epoch": 77.6430755788554,
+ "grad_norm": 0.25050288438796997,
+ "learning_rate": 0.0006,
+ "loss": 3.449924945831299,
+ "step": 5590
+ },
+ {
+ "epoch": 77.65705548274356,
+ "grad_norm": 0.25048449635505676,
+ "learning_rate": 0.0006,
+ "loss": 3.500735282897949,
+ "step": 5591
+ },
+ {
+ "epoch": 77.67103538663171,
+ "grad_norm": 0.2699182629585266,
+ "learning_rate": 0.0006,
+ "loss": 3.5185136795043945,
+ "step": 5592
+ },
+ {
+ "epoch": 77.68501529051987,
+ "grad_norm": 0.2451692819595337,
+ "learning_rate": 0.0006,
+ "loss": 3.4736194610595703,
+ "step": 5593
+ },
+ {
+ "epoch": 77.69899519440804,
+ "grad_norm": 0.24240832030773163,
+ "learning_rate": 0.0006,
+ "loss": 3.510906219482422,
+ "step": 5594
+ },
+ {
+ "epoch": 77.7129750982962,
+ "grad_norm": 0.24055726826190948,
+ "learning_rate": 0.0006,
+ "loss": 3.4826507568359375,
+ "step": 5595
+ },
+ {
+ "epoch": 77.72695500218435,
+ "grad_norm": 0.21117587387561798,
+ "learning_rate": 0.0006,
+ "loss": 3.4430460929870605,
+ "step": 5596
+ },
+ {
+ "epoch": 77.74093490607252,
+ "grad_norm": 0.22443950176239014,
+ "learning_rate": 0.0006,
+ "loss": 3.478419780731201,
+ "step": 5597
+ },
+ {
+ "epoch": 77.75491480996068,
+ "grad_norm": 0.265615314245224,
+ "learning_rate": 0.0006,
+ "loss": 3.511934280395508,
+ "step": 5598
+ },
+ {
+ "epoch": 77.76889471384884,
+ "grad_norm": 0.27084261178970337,
+ "learning_rate": 0.0006,
+ "loss": 3.5032665729522705,
+ "step": 5599
+ },
+ {
+ "epoch": 77.78287461773701,
+ "grad_norm": 0.24575908482074738,
+ "learning_rate": 0.0006,
+ "loss": 3.463124990463257,
+ "step": 5600
+ },
+ {
+ "epoch": 77.79685452162516,
+ "grad_norm": 0.24604707956314087,
+ "learning_rate": 0.0006,
+ "loss": 3.500135898590088,
+ "step": 5601
+ },
+ {
+ "epoch": 77.81083442551332,
+ "grad_norm": 0.23443962633609772,
+ "learning_rate": 0.0006,
+ "loss": 3.4497289657592773,
+ "step": 5602
+ },
+ {
+ "epoch": 77.82481432940149,
+ "grad_norm": 0.23644082248210907,
+ "learning_rate": 0.0006,
+ "loss": 3.47178316116333,
+ "step": 5603
+ },
+ {
+ "epoch": 77.83879423328965,
+ "grad_norm": 0.20530658960342407,
+ "learning_rate": 0.0006,
+ "loss": 3.455582618713379,
+ "step": 5604
+ },
+ {
+ "epoch": 77.8527741371778,
+ "grad_norm": 0.2663075029850006,
+ "learning_rate": 0.0006,
+ "loss": 3.5106711387634277,
+ "step": 5605
+ },
+ {
+ "epoch": 77.86675404106597,
+ "grad_norm": 0.3181896507740021,
+ "learning_rate": 0.0006,
+ "loss": 3.4886298179626465,
+ "step": 5606
+ },
+ {
+ "epoch": 77.88073394495413,
+ "grad_norm": 0.30120763182640076,
+ "learning_rate": 0.0006,
+ "loss": 3.5012121200561523,
+ "step": 5607
+ },
+ {
+ "epoch": 77.89471384884229,
+ "grad_norm": 0.2766421139240265,
+ "learning_rate": 0.0006,
+ "loss": 3.465404748916626,
+ "step": 5608
+ },
+ {
+ "epoch": 77.90869375273044,
+ "grad_norm": 0.26150527596473694,
+ "learning_rate": 0.0006,
+ "loss": 3.505079984664917,
+ "step": 5609
+ },
+ {
+ "epoch": 77.92267365661861,
+ "grad_norm": 0.2585010826587677,
+ "learning_rate": 0.0006,
+ "loss": 3.46713924407959,
+ "step": 5610
+ },
+ {
+ "epoch": 77.93665356050677,
+ "grad_norm": 0.2746208608150482,
+ "learning_rate": 0.0006,
+ "loss": 3.464250087738037,
+ "step": 5611
+ },
+ {
+ "epoch": 77.95063346439493,
+ "grad_norm": 0.2630884647369385,
+ "learning_rate": 0.0006,
+ "loss": 3.4834718704223633,
+ "step": 5612
+ },
+ {
+ "epoch": 77.9646133682831,
+ "grad_norm": 0.23336872458457947,
+ "learning_rate": 0.0006,
+ "loss": 3.5086607933044434,
+ "step": 5613
+ },
+ {
+ "epoch": 77.97859327217125,
+ "grad_norm": 0.22938823699951172,
+ "learning_rate": 0.0006,
+ "loss": 3.5135412216186523,
+ "step": 5614
+ },
+ {
+ "epoch": 77.99257317605941,
+ "grad_norm": 0.22952115535736084,
+ "learning_rate": 0.0006,
+ "loss": 3.4909496307373047,
+ "step": 5615
+ },
+ {
+ "epoch": 78.0,
+ "grad_norm": 0.244375079870224,
+ "learning_rate": 0.0006,
+ "loss": 3.5009336471557617,
+ "step": 5616
+ },
+ {
+ "epoch": 78.0,
+ "eval_loss": 3.9880237579345703,
+ "eval_runtime": 46.3392,
+ "eval_samples_per_second": 52.698,
+ "eval_steps_per_second": 3.302,
+ "step": 5616
+ },
+ {
+ "epoch": 78.01397990388816,
+ "grad_norm": 0.21258895099163055,
+ "learning_rate": 0.0006,
+ "loss": 3.473972797393799,
+ "step": 5617
+ },
+ {
+ "epoch": 78.02795980777633,
+ "grad_norm": 0.24391628801822662,
+ "learning_rate": 0.0006,
+ "loss": 3.422597646713257,
+ "step": 5618
+ },
+ {
+ "epoch": 78.04193971166448,
+ "grad_norm": 0.2876848578453064,
+ "learning_rate": 0.0006,
+ "loss": 3.458035469055176,
+ "step": 5619
+ },
+ {
+ "epoch": 78.05591961555264,
+ "grad_norm": 0.29750117659568787,
+ "learning_rate": 0.0006,
+ "loss": 3.4394774436950684,
+ "step": 5620
+ },
+ {
+ "epoch": 78.06989951944081,
+ "grad_norm": 0.2604219615459442,
+ "learning_rate": 0.0006,
+ "loss": 3.450514793395996,
+ "step": 5621
+ },
+ {
+ "epoch": 78.08387942332897,
+ "grad_norm": 0.2383262813091278,
+ "learning_rate": 0.0006,
+ "loss": 3.4291372299194336,
+ "step": 5622
+ },
+ {
+ "epoch": 78.09785932721712,
+ "grad_norm": 0.2188589870929718,
+ "learning_rate": 0.0006,
+ "loss": 3.441857099533081,
+ "step": 5623
+ },
+ {
+ "epoch": 78.1118392311053,
+ "grad_norm": 0.20857281982898712,
+ "learning_rate": 0.0006,
+ "loss": 3.444624423980713,
+ "step": 5624
+ },
+ {
+ "epoch": 78.12581913499345,
+ "grad_norm": 0.25901344418525696,
+ "learning_rate": 0.0006,
+ "loss": 3.436108112335205,
+ "step": 5625
+ },
+ {
+ "epoch": 78.1397990388816,
+ "grad_norm": 0.29044362902641296,
+ "learning_rate": 0.0006,
+ "loss": 3.4631142616271973,
+ "step": 5626
+ },
+ {
+ "epoch": 78.15377894276976,
+ "grad_norm": 0.2697533071041107,
+ "learning_rate": 0.0006,
+ "loss": 3.47342586517334,
+ "step": 5627
+ },
+ {
+ "epoch": 78.16775884665793,
+ "grad_norm": 0.23660187423229218,
+ "learning_rate": 0.0006,
+ "loss": 3.4970450401306152,
+ "step": 5628
+ },
+ {
+ "epoch": 78.18173875054609,
+ "grad_norm": 0.2369665950536728,
+ "learning_rate": 0.0006,
+ "loss": 3.4965858459472656,
+ "step": 5629
+ },
+ {
+ "epoch": 78.19571865443424,
+ "grad_norm": 0.2571038603782654,
+ "learning_rate": 0.0006,
+ "loss": 3.412412166595459,
+ "step": 5630
+ },
+ {
+ "epoch": 78.20969855832242,
+ "grad_norm": 0.26016053557395935,
+ "learning_rate": 0.0006,
+ "loss": 3.4462265968322754,
+ "step": 5631
+ },
+ {
+ "epoch": 78.22367846221057,
+ "grad_norm": 0.2378724217414856,
+ "learning_rate": 0.0006,
+ "loss": 3.4451708793640137,
+ "step": 5632
+ },
+ {
+ "epoch": 78.23765836609873,
+ "grad_norm": 0.24232783913612366,
+ "learning_rate": 0.0006,
+ "loss": 3.4438111782073975,
+ "step": 5633
+ },
+ {
+ "epoch": 78.2516382699869,
+ "grad_norm": 0.23770418763160706,
+ "learning_rate": 0.0006,
+ "loss": 3.43533992767334,
+ "step": 5634
+ },
+ {
+ "epoch": 78.26561817387505,
+ "grad_norm": 0.23466856777668,
+ "learning_rate": 0.0006,
+ "loss": 3.48561954498291,
+ "step": 5635
+ },
+ {
+ "epoch": 78.27959807776321,
+ "grad_norm": 0.2326284646987915,
+ "learning_rate": 0.0006,
+ "loss": 3.473475217819214,
+ "step": 5636
+ },
+ {
+ "epoch": 78.29357798165138,
+ "grad_norm": 0.24022948741912842,
+ "learning_rate": 0.0006,
+ "loss": 3.4412283897399902,
+ "step": 5637
+ },
+ {
+ "epoch": 78.30755788553954,
+ "grad_norm": 0.2522888779640198,
+ "learning_rate": 0.0006,
+ "loss": 3.4387173652648926,
+ "step": 5638
+ },
+ {
+ "epoch": 78.3215377894277,
+ "grad_norm": 0.2409897744655609,
+ "learning_rate": 0.0006,
+ "loss": 3.4434142112731934,
+ "step": 5639
+ },
+ {
+ "epoch": 78.33551769331586,
+ "grad_norm": 0.24789150059223175,
+ "learning_rate": 0.0006,
+ "loss": 3.479180335998535,
+ "step": 5640
+ },
+ {
+ "epoch": 78.34949759720402,
+ "grad_norm": 0.23893289268016815,
+ "learning_rate": 0.0006,
+ "loss": 3.4569711685180664,
+ "step": 5641
+ },
+ {
+ "epoch": 78.36347750109218,
+ "grad_norm": 0.25813573598861694,
+ "learning_rate": 0.0006,
+ "loss": 3.4897937774658203,
+ "step": 5642
+ },
+ {
+ "epoch": 78.37745740498035,
+ "grad_norm": 0.2786903977394104,
+ "learning_rate": 0.0006,
+ "loss": 3.449057102203369,
+ "step": 5643
+ },
+ {
+ "epoch": 78.3914373088685,
+ "grad_norm": 0.2671049237251282,
+ "learning_rate": 0.0006,
+ "loss": 3.4653759002685547,
+ "step": 5644
+ },
+ {
+ "epoch": 78.40541721275666,
+ "grad_norm": 0.22132059931755066,
+ "learning_rate": 0.0006,
+ "loss": 3.469104766845703,
+ "step": 5645
+ },
+ {
+ "epoch": 78.41939711664482,
+ "grad_norm": 0.23016799986362457,
+ "learning_rate": 0.0006,
+ "loss": 3.459315776824951,
+ "step": 5646
+ },
+ {
+ "epoch": 78.43337702053299,
+ "grad_norm": 0.24416282773017883,
+ "learning_rate": 0.0006,
+ "loss": 3.455636978149414,
+ "step": 5647
+ },
+ {
+ "epoch": 78.44735692442114,
+ "grad_norm": 0.21846890449523926,
+ "learning_rate": 0.0006,
+ "loss": 3.448091506958008,
+ "step": 5648
+ },
+ {
+ "epoch": 78.4613368283093,
+ "grad_norm": 0.23508375883102417,
+ "learning_rate": 0.0006,
+ "loss": 3.4912142753601074,
+ "step": 5649
+ },
+ {
+ "epoch": 78.47531673219747,
+ "grad_norm": 0.2555168867111206,
+ "learning_rate": 0.0006,
+ "loss": 3.4540610313415527,
+ "step": 5650
+ },
+ {
+ "epoch": 78.48929663608563,
+ "grad_norm": 0.24908530712127686,
+ "learning_rate": 0.0006,
+ "loss": 3.4480438232421875,
+ "step": 5651
+ },
+ {
+ "epoch": 78.50327653997378,
+ "grad_norm": 0.21412776410579681,
+ "learning_rate": 0.0006,
+ "loss": 3.4866371154785156,
+ "step": 5652
+ },
+ {
+ "epoch": 78.51725644386195,
+ "grad_norm": 0.20922242105007172,
+ "learning_rate": 0.0006,
+ "loss": 3.478621006011963,
+ "step": 5653
+ },
+ {
+ "epoch": 78.53123634775011,
+ "grad_norm": 0.2246457040309906,
+ "learning_rate": 0.0006,
+ "loss": 3.481985569000244,
+ "step": 5654
+ },
+ {
+ "epoch": 78.54521625163827,
+ "grad_norm": 0.2635398805141449,
+ "learning_rate": 0.0006,
+ "loss": 3.4374074935913086,
+ "step": 5655
+ },
+ {
+ "epoch": 78.55919615552644,
+ "grad_norm": 0.24871022999286652,
+ "learning_rate": 0.0006,
+ "loss": 3.4646430015563965,
+ "step": 5656
+ },
+ {
+ "epoch": 78.57317605941459,
+ "grad_norm": 0.20784349739551544,
+ "learning_rate": 0.0006,
+ "loss": 3.5141677856445312,
+ "step": 5657
+ },
+ {
+ "epoch": 78.58715596330275,
+ "grad_norm": 0.22655104100704193,
+ "learning_rate": 0.0006,
+ "loss": 3.4698171615600586,
+ "step": 5658
+ },
+ {
+ "epoch": 78.60113586719092,
+ "grad_norm": 0.22383511066436768,
+ "learning_rate": 0.0006,
+ "loss": 3.444244146347046,
+ "step": 5659
+ },
+ {
+ "epoch": 78.61511577107908,
+ "grad_norm": 0.2113238275051117,
+ "learning_rate": 0.0006,
+ "loss": 3.465719223022461,
+ "step": 5660
+ },
+ {
+ "epoch": 78.62909567496723,
+ "grad_norm": 0.19101600348949432,
+ "learning_rate": 0.0006,
+ "loss": 3.484689712524414,
+ "step": 5661
+ },
+ {
+ "epoch": 78.6430755788554,
+ "grad_norm": 0.2073238044977188,
+ "learning_rate": 0.0006,
+ "loss": 3.46522855758667,
+ "step": 5662
+ },
+ {
+ "epoch": 78.65705548274356,
+ "grad_norm": 0.21808618307113647,
+ "learning_rate": 0.0006,
+ "loss": 3.479005813598633,
+ "step": 5663
+ },
+ {
+ "epoch": 78.67103538663171,
+ "grad_norm": 0.203338161110878,
+ "learning_rate": 0.0006,
+ "loss": 3.492825984954834,
+ "step": 5664
+ },
+ {
+ "epoch": 78.68501529051987,
+ "grad_norm": 0.23006507754325867,
+ "learning_rate": 0.0006,
+ "loss": 3.4999642372131348,
+ "step": 5665
+ },
+ {
+ "epoch": 78.69899519440804,
+ "grad_norm": 0.2446610927581787,
+ "learning_rate": 0.0006,
+ "loss": 3.48500919342041,
+ "step": 5666
+ },
+ {
+ "epoch": 78.7129750982962,
+ "grad_norm": 0.2601945400238037,
+ "learning_rate": 0.0006,
+ "loss": 3.4861927032470703,
+ "step": 5667
+ },
+ {
+ "epoch": 78.72695500218435,
+ "grad_norm": 0.23464927077293396,
+ "learning_rate": 0.0006,
+ "loss": 3.474249839782715,
+ "step": 5668
+ },
+ {
+ "epoch": 78.74093490607252,
+ "grad_norm": 0.21698802709579468,
+ "learning_rate": 0.0006,
+ "loss": 3.499706745147705,
+ "step": 5669
+ },
+ {
+ "epoch": 78.75491480996068,
+ "grad_norm": 0.22146548330783844,
+ "learning_rate": 0.0006,
+ "loss": 3.496151924133301,
+ "step": 5670
+ },
+ {
+ "epoch": 78.76889471384884,
+ "grad_norm": 0.2459285408258438,
+ "learning_rate": 0.0006,
+ "loss": 3.4743995666503906,
+ "step": 5671
+ },
+ {
+ "epoch": 78.78287461773701,
+ "grad_norm": 0.2358015924692154,
+ "learning_rate": 0.0006,
+ "loss": 3.479529857635498,
+ "step": 5672
+ },
+ {
+ "epoch": 78.79685452162516,
+ "grad_norm": 0.23457956314086914,
+ "learning_rate": 0.0006,
+ "loss": 3.4957330226898193,
+ "step": 5673
+ },
+ {
+ "epoch": 78.81083442551332,
+ "grad_norm": 0.21969331800937653,
+ "learning_rate": 0.0006,
+ "loss": 3.4782285690307617,
+ "step": 5674
+ },
+ {
+ "epoch": 78.82481432940149,
+ "grad_norm": 0.23743604123592377,
+ "learning_rate": 0.0006,
+ "loss": 3.497030735015869,
+ "step": 5675
+ },
+ {
+ "epoch": 78.83879423328965,
+ "grad_norm": 0.23925618827342987,
+ "learning_rate": 0.0006,
+ "loss": 3.495553493499756,
+ "step": 5676
+ },
+ {
+ "epoch": 78.8527741371778,
+ "grad_norm": 0.20647381246089935,
+ "learning_rate": 0.0006,
+ "loss": 3.47171688079834,
+ "step": 5677
+ },
+ {
+ "epoch": 78.86675404106597,
+ "grad_norm": 0.20148544013500214,
+ "learning_rate": 0.0006,
+ "loss": 3.4736156463623047,
+ "step": 5678
+ },
+ {
+ "epoch": 78.88073394495413,
+ "grad_norm": 0.2097293585538864,
+ "learning_rate": 0.0006,
+ "loss": 3.436239719390869,
+ "step": 5679
+ },
+ {
+ "epoch": 78.89471384884229,
+ "grad_norm": 0.21129930019378662,
+ "learning_rate": 0.0006,
+ "loss": 3.4720277786254883,
+ "step": 5680
+ },
+ {
+ "epoch": 78.90869375273044,
+ "grad_norm": 0.2049081027507782,
+ "learning_rate": 0.0006,
+ "loss": 3.476945400238037,
+ "step": 5681
+ },
+ {
+ "epoch": 78.92267365661861,
+ "grad_norm": 0.2183583825826645,
+ "learning_rate": 0.0006,
+ "loss": 3.4852776527404785,
+ "step": 5682
+ },
+ {
+ "epoch": 78.93665356050677,
+ "grad_norm": 0.21253879368305206,
+ "learning_rate": 0.0006,
+ "loss": 3.4781546592712402,
+ "step": 5683
+ },
+ {
+ "epoch": 78.95063346439493,
+ "grad_norm": 0.20699666440486908,
+ "learning_rate": 0.0006,
+ "loss": 3.450756788253784,
+ "step": 5684
+ },
+ {
+ "epoch": 78.9646133682831,
+ "grad_norm": 0.25612396001815796,
+ "learning_rate": 0.0006,
+ "loss": 3.4762487411499023,
+ "step": 5685
+ },
+ {
+ "epoch": 78.97859327217125,
+ "grad_norm": 0.26524025201797485,
+ "learning_rate": 0.0006,
+ "loss": 3.4931769371032715,
+ "step": 5686
+ },
+ {
+ "epoch": 78.99257317605941,
+ "grad_norm": 0.2541322410106659,
+ "learning_rate": 0.0006,
+ "loss": 3.468247413635254,
+ "step": 5687
+ },
+ {
+ "epoch": 79.0,
+ "grad_norm": 0.2663288414478302,
+ "learning_rate": 0.0006,
+ "loss": 3.487189292907715,
+ "step": 5688
+ },
+ {
+ "epoch": 79.0,
+ "eval_loss": 3.988255739212036,
+ "eval_runtime": 46.5996,
+ "eval_samples_per_second": 52.404,
+ "eval_steps_per_second": 3.283,
+ "step": 5688
+ },
+ {
+ "epoch": 79.01397990388816,
+ "grad_norm": 0.2503090500831604,
+ "learning_rate": 0.0006,
+ "loss": 3.452444553375244,
+ "step": 5689
+ },
+ {
+ "epoch": 79.02795980777633,
+ "grad_norm": 0.28306853771209717,
+ "learning_rate": 0.0006,
+ "loss": 3.4412660598754883,
+ "step": 5690
+ },
+ {
+ "epoch": 79.04193971166448,
+ "grad_norm": 0.3115243911743164,
+ "learning_rate": 0.0006,
+ "loss": 3.4124369621276855,
+ "step": 5691
+ },
+ {
+ "epoch": 79.05591961555264,
+ "grad_norm": 0.273013710975647,
+ "learning_rate": 0.0006,
+ "loss": 3.4493820667266846,
+ "step": 5692
+ },
+ {
+ "epoch": 79.06989951944081,
+ "grad_norm": 0.22326645255088806,
+ "learning_rate": 0.0006,
+ "loss": 3.4517998695373535,
+ "step": 5693
+ },
+ {
+ "epoch": 79.08387942332897,
+ "grad_norm": 0.24398484826087952,
+ "learning_rate": 0.0006,
+ "loss": 3.4242095947265625,
+ "step": 5694
+ },
+ {
+ "epoch": 79.09785932721712,
+ "grad_norm": 0.25253739953041077,
+ "learning_rate": 0.0006,
+ "loss": 3.4249048233032227,
+ "step": 5695
+ },
+ {
+ "epoch": 79.1118392311053,
+ "grad_norm": 0.2664744555950165,
+ "learning_rate": 0.0006,
+ "loss": 3.452235698699951,
+ "step": 5696
+ },
+ {
+ "epoch": 79.12581913499345,
+ "grad_norm": 0.28276678919792175,
+ "learning_rate": 0.0006,
+ "loss": 3.4641671180725098,
+ "step": 5697
+ },
+ {
+ "epoch": 79.1397990388816,
+ "grad_norm": 0.2725527882575989,
+ "learning_rate": 0.0006,
+ "loss": 3.4483447074890137,
+ "step": 5698
+ },
+ {
+ "epoch": 79.15377894276976,
+ "grad_norm": 0.2702547609806061,
+ "learning_rate": 0.0006,
+ "loss": 3.4427199363708496,
+ "step": 5699
+ },
+ {
+ "epoch": 79.16775884665793,
+ "grad_norm": 0.2617502212524414,
+ "learning_rate": 0.0006,
+ "loss": 3.46244740486145,
+ "step": 5700
+ },
+ {
+ "epoch": 79.18173875054609,
+ "grad_norm": 0.22378475964069366,
+ "learning_rate": 0.0006,
+ "loss": 3.460523843765259,
+ "step": 5701
+ },
+ {
+ "epoch": 79.19571865443424,
+ "grad_norm": 0.2233104556798935,
+ "learning_rate": 0.0006,
+ "loss": 3.425114631652832,
+ "step": 5702
+ },
+ {
+ "epoch": 79.20969855832242,
+ "grad_norm": 0.24079658091068268,
+ "learning_rate": 0.0006,
+ "loss": 3.4773077964782715,
+ "step": 5703
+ },
+ {
+ "epoch": 79.22367846221057,
+ "grad_norm": 0.24479007720947266,
+ "learning_rate": 0.0006,
+ "loss": 3.438293218612671,
+ "step": 5704
+ },
+ {
+ "epoch": 79.23765836609873,
+ "grad_norm": 0.24505102634429932,
+ "learning_rate": 0.0006,
+ "loss": 3.4798545837402344,
+ "step": 5705
+ },
+ {
+ "epoch": 79.2516382699869,
+ "grad_norm": 0.22588814795017242,
+ "learning_rate": 0.0006,
+ "loss": 3.4557571411132812,
+ "step": 5706
+ },
+ {
+ "epoch": 79.26561817387505,
+ "grad_norm": 0.24139748513698578,
+ "learning_rate": 0.0006,
+ "loss": 3.4543919563293457,
+ "step": 5707
+ },
+ {
+ "epoch": 79.27959807776321,
+ "grad_norm": 0.21584808826446533,
+ "learning_rate": 0.0006,
+ "loss": 3.4505133628845215,
+ "step": 5708
+ },
+ {
+ "epoch": 79.29357798165138,
+ "grad_norm": 0.2180371880531311,
+ "learning_rate": 0.0006,
+ "loss": 3.4630508422851562,
+ "step": 5709
+ },
+ {
+ "epoch": 79.30755788553954,
+ "grad_norm": 0.21993961930274963,
+ "learning_rate": 0.0006,
+ "loss": 3.455995559692383,
+ "step": 5710
+ },
+ {
+ "epoch": 79.3215377894277,
+ "grad_norm": 0.2302546501159668,
+ "learning_rate": 0.0006,
+ "loss": 3.4884848594665527,
+ "step": 5711
+ },
+ {
+ "epoch": 79.33551769331586,
+ "grad_norm": 0.2554272711277008,
+ "learning_rate": 0.0006,
+ "loss": 3.440516948699951,
+ "step": 5712
+ },
+ {
+ "epoch": 79.34949759720402,
+ "grad_norm": 0.2361014038324356,
+ "learning_rate": 0.0006,
+ "loss": 3.4706239700317383,
+ "step": 5713
+ },
+ {
+ "epoch": 79.36347750109218,
+ "grad_norm": 0.22390307486057281,
+ "learning_rate": 0.0006,
+ "loss": 3.4447524547576904,
+ "step": 5714
+ },
+ {
+ "epoch": 79.37745740498035,
+ "grad_norm": 0.2271745353937149,
+ "learning_rate": 0.0006,
+ "loss": 3.47141170501709,
+ "step": 5715
+ },
+ {
+ "epoch": 79.3914373088685,
+ "grad_norm": 0.25239962339401245,
+ "learning_rate": 0.0006,
+ "loss": 3.4772067070007324,
+ "step": 5716
+ },
+ {
+ "epoch": 79.40541721275666,
+ "grad_norm": 0.2375272810459137,
+ "learning_rate": 0.0006,
+ "loss": 3.45712947845459,
+ "step": 5717
+ },
+ {
+ "epoch": 79.41939711664482,
+ "grad_norm": 0.22904036939144135,
+ "learning_rate": 0.0006,
+ "loss": 3.4753048419952393,
+ "step": 5718
+ },
+ {
+ "epoch": 79.43337702053299,
+ "grad_norm": 0.24097497761249542,
+ "learning_rate": 0.0006,
+ "loss": 3.462437391281128,
+ "step": 5719
+ },
+ {
+ "epoch": 79.44735692442114,
+ "grad_norm": 0.25267651677131653,
+ "learning_rate": 0.0006,
+ "loss": 3.4526681900024414,
+ "step": 5720
+ },
+ {
+ "epoch": 79.4613368283093,
+ "grad_norm": 0.25850236415863037,
+ "learning_rate": 0.0006,
+ "loss": 3.452427625656128,
+ "step": 5721
+ },
+ {
+ "epoch": 79.47531673219747,
+ "grad_norm": 0.26425909996032715,
+ "learning_rate": 0.0006,
+ "loss": 3.4524970054626465,
+ "step": 5722
+ },
+ {
+ "epoch": 79.48929663608563,
+ "grad_norm": 0.2287026345729828,
+ "learning_rate": 0.0006,
+ "loss": 3.4680042266845703,
+ "step": 5723
+ },
+ {
+ "epoch": 79.50327653997378,
+ "grad_norm": 0.2357720285654068,
+ "learning_rate": 0.0006,
+ "loss": 3.4661996364593506,
+ "step": 5724
+ },
+ {
+ "epoch": 79.51725644386195,
+ "grad_norm": 0.2378997653722763,
+ "learning_rate": 0.0006,
+ "loss": 3.4744834899902344,
+ "step": 5725
+ },
+ {
+ "epoch": 79.53123634775011,
+ "grad_norm": 0.2487446367740631,
+ "learning_rate": 0.0006,
+ "loss": 3.4760963916778564,
+ "step": 5726
+ },
+ {
+ "epoch": 79.54521625163827,
+ "grad_norm": 0.25056660175323486,
+ "learning_rate": 0.0006,
+ "loss": 3.4646544456481934,
+ "step": 5727
+ },
+ {
+ "epoch": 79.55919615552644,
+ "grad_norm": 0.22458213567733765,
+ "learning_rate": 0.0006,
+ "loss": 3.48275089263916,
+ "step": 5728
+ },
+ {
+ "epoch": 79.57317605941459,
+ "grad_norm": 0.22517307102680206,
+ "learning_rate": 0.0006,
+ "loss": 3.4858477115631104,
+ "step": 5729
+ },
+ {
+ "epoch": 79.58715596330275,
+ "grad_norm": 0.2253974974155426,
+ "learning_rate": 0.0006,
+ "loss": 3.4601099491119385,
+ "step": 5730
+ },
+ {
+ "epoch": 79.60113586719092,
+ "grad_norm": 0.22956253588199615,
+ "learning_rate": 0.0006,
+ "loss": 3.4599132537841797,
+ "step": 5731
+ },
+ {
+ "epoch": 79.61511577107908,
+ "grad_norm": 0.26346060633659363,
+ "learning_rate": 0.0006,
+ "loss": 3.4992642402648926,
+ "step": 5732
+ },
+ {
+ "epoch": 79.62909567496723,
+ "grad_norm": 0.2493542581796646,
+ "learning_rate": 0.0006,
+ "loss": 3.4743075370788574,
+ "step": 5733
+ },
+ {
+ "epoch": 79.6430755788554,
+ "grad_norm": 0.2473273128271103,
+ "learning_rate": 0.0006,
+ "loss": 3.487657070159912,
+ "step": 5734
+ },
+ {
+ "epoch": 79.65705548274356,
+ "grad_norm": 0.21894414722919464,
+ "learning_rate": 0.0006,
+ "loss": 3.4761929512023926,
+ "step": 5735
+ },
+ {
+ "epoch": 79.67103538663171,
+ "grad_norm": 0.20691576600074768,
+ "learning_rate": 0.0006,
+ "loss": 3.468233585357666,
+ "step": 5736
+ },
+ {
+ "epoch": 79.68501529051987,
+ "grad_norm": 0.22317089140415192,
+ "learning_rate": 0.0006,
+ "loss": 3.4676461219787598,
+ "step": 5737
+ },
+ {
+ "epoch": 79.69899519440804,
+ "grad_norm": 0.22669419646263123,
+ "learning_rate": 0.0006,
+ "loss": 3.4934377670288086,
+ "step": 5738
+ },
+ {
+ "epoch": 79.7129750982962,
+ "grad_norm": 0.23321859538555145,
+ "learning_rate": 0.0006,
+ "loss": 3.470146417617798,
+ "step": 5739
+ },
+ {
+ "epoch": 79.72695500218435,
+ "grad_norm": 0.21628828346729279,
+ "learning_rate": 0.0006,
+ "loss": 3.464975118637085,
+ "step": 5740
+ },
+ {
+ "epoch": 79.74093490607252,
+ "grad_norm": 0.22889219224452972,
+ "learning_rate": 0.0006,
+ "loss": 3.464859962463379,
+ "step": 5741
+ },
+ {
+ "epoch": 79.75491480996068,
+ "grad_norm": 0.23041504621505737,
+ "learning_rate": 0.0006,
+ "loss": 3.478351593017578,
+ "step": 5742
+ },
+ {
+ "epoch": 79.76889471384884,
+ "grad_norm": 0.2246071994304657,
+ "learning_rate": 0.0006,
+ "loss": 3.4927172660827637,
+ "step": 5743
+ },
+ {
+ "epoch": 79.78287461773701,
+ "grad_norm": 0.2326883226633072,
+ "learning_rate": 0.0006,
+ "loss": 3.4568581581115723,
+ "step": 5744
+ },
+ {
+ "epoch": 79.79685452162516,
+ "grad_norm": 0.22930850088596344,
+ "learning_rate": 0.0006,
+ "loss": 3.4665210247039795,
+ "step": 5745
+ },
+ {
+ "epoch": 79.81083442551332,
+ "grad_norm": 0.22361859679222107,
+ "learning_rate": 0.0006,
+ "loss": 3.4809937477111816,
+ "step": 5746
+ },
+ {
+ "epoch": 79.82481432940149,
+ "grad_norm": 0.20599117875099182,
+ "learning_rate": 0.0006,
+ "loss": 3.4918923377990723,
+ "step": 5747
+ },
+ {
+ "epoch": 79.83879423328965,
+ "grad_norm": 0.230980783700943,
+ "learning_rate": 0.0006,
+ "loss": 3.4691390991210938,
+ "step": 5748
+ },
+ {
+ "epoch": 79.8527741371778,
+ "grad_norm": 0.2432822734117508,
+ "learning_rate": 0.0006,
+ "loss": 3.465531349182129,
+ "step": 5749
+ },
+ {
+ "epoch": 79.86675404106597,
+ "grad_norm": 0.2326139360666275,
+ "learning_rate": 0.0006,
+ "loss": 3.464198350906372,
+ "step": 5750
+ },
+ {
+ "epoch": 79.88073394495413,
+ "grad_norm": 0.22227711975574493,
+ "learning_rate": 0.0006,
+ "loss": 3.4587674140930176,
+ "step": 5751
+ },
+ {
+ "epoch": 79.89471384884229,
+ "grad_norm": 0.20254085958003998,
+ "learning_rate": 0.0006,
+ "loss": 3.4628102779388428,
+ "step": 5752
+ },
+ {
+ "epoch": 79.90869375273044,
+ "grad_norm": 0.2130574733018875,
+ "learning_rate": 0.0006,
+ "loss": 3.491631031036377,
+ "step": 5753
+ },
+ {
+ "epoch": 79.92267365661861,
+ "grad_norm": 0.2221127301454544,
+ "learning_rate": 0.0006,
+ "loss": 3.477632522583008,
+ "step": 5754
+ },
+ {
+ "epoch": 79.93665356050677,
+ "grad_norm": 0.21647712588310242,
+ "learning_rate": 0.0006,
+ "loss": 3.470122814178467,
+ "step": 5755
+ },
+ {
+ "epoch": 79.95063346439493,
+ "grad_norm": 0.21333082020282745,
+ "learning_rate": 0.0006,
+ "loss": 3.4466612339019775,
+ "step": 5756
+ },
+ {
+ "epoch": 79.9646133682831,
+ "grad_norm": 0.24608036875724792,
+ "learning_rate": 0.0006,
+ "loss": 3.5203800201416016,
+ "step": 5757
+ },
+ {
+ "epoch": 79.97859327217125,
+ "grad_norm": 0.22165493667125702,
+ "learning_rate": 0.0006,
+ "loss": 3.467963457107544,
+ "step": 5758
+ },
+ {
+ "epoch": 79.99257317605941,
+ "grad_norm": 0.1960810422897339,
+ "learning_rate": 0.0006,
+ "loss": 3.4682164192199707,
+ "step": 5759
+ },
+ {
+ "epoch": 80.0,
+ "grad_norm": 0.23430649936199188,
+ "learning_rate": 0.0006,
+ "loss": 3.4980459213256836,
+ "step": 5760
+ },
+ {
+ "epoch": 80.01397990388816,
+ "grad_norm": 0.21651697158813477,
+ "learning_rate": 0.0006,
+ "loss": 3.4181911945343018,
+ "step": 5761
+ },
+ {
+ "epoch": 80.02795980777633,
+ "grad_norm": 0.2599288821220398,
+ "learning_rate": 0.0006,
+ "loss": 3.438791275024414,
+ "step": 5762
+ },
+ {
+ "epoch": 80.04193971166448,
+ "grad_norm": 0.26531898975372314,
+ "learning_rate": 0.0006,
+ "loss": 3.4669299125671387,
+ "step": 5763
+ },
+ {
+ "epoch": 80.05591961555264,
+ "grad_norm": 0.2965814769268036,
+ "learning_rate": 0.0006,
+ "loss": 3.3976120948791504,
+ "step": 5764
+ },
+ {
+ "epoch": 80.06989951944081,
+ "grad_norm": 0.28300485014915466,
+ "learning_rate": 0.0006,
+ "loss": 3.4121291637420654,
+ "step": 5765
+ },
+ {
+ "epoch": 80.08387942332897,
+ "grad_norm": 0.2511967718601227,
+ "learning_rate": 0.0006,
+ "loss": 3.4298207759857178,
+ "step": 5766
+ },
+ {
+ "epoch": 80.09785932721712,
+ "grad_norm": 0.2919110059738159,
+ "learning_rate": 0.0006,
+ "loss": 3.4311981201171875,
+ "step": 5767
+ },
+ {
+ "epoch": 80.1118392311053,
+ "grad_norm": 0.3141780197620392,
+ "learning_rate": 0.0006,
+ "loss": 3.435318946838379,
+ "step": 5768
+ },
+ {
+ "epoch": 80.12581913499345,
+ "grad_norm": 0.29728513956069946,
+ "learning_rate": 0.0006,
+ "loss": 3.4430551528930664,
+ "step": 5769
+ },
+ {
+ "epoch": 80.1397990388816,
+ "grad_norm": 0.2732396423816681,
+ "learning_rate": 0.0006,
+ "loss": 3.4580936431884766,
+ "step": 5770
+ },
+ {
+ "epoch": 80.15377894276976,
+ "grad_norm": 0.2561073303222656,
+ "learning_rate": 0.0006,
+ "loss": 3.443518877029419,
+ "step": 5771
+ },
+ {
+ "epoch": 80.16775884665793,
+ "grad_norm": 0.23583678901195526,
+ "learning_rate": 0.0006,
+ "loss": 3.4591064453125,
+ "step": 5772
+ },
+ {
+ "epoch": 80.18173875054609,
+ "grad_norm": 0.23391224443912506,
+ "learning_rate": 0.0006,
+ "loss": 3.4735608100891113,
+ "step": 5773
+ },
+ {
+ "epoch": 80.19571865443424,
+ "grad_norm": 0.24136026203632355,
+ "learning_rate": 0.0006,
+ "loss": 3.4389798641204834,
+ "step": 5774
+ },
+ {
+ "epoch": 80.20969855832242,
+ "grad_norm": 0.217203289270401,
+ "learning_rate": 0.0006,
+ "loss": 3.4284729957580566,
+ "step": 5775
+ },
+ {
+ "epoch": 80.22367846221057,
+ "grad_norm": 0.22632482647895813,
+ "learning_rate": 0.0006,
+ "loss": 3.4612345695495605,
+ "step": 5776
+ },
+ {
+ "epoch": 80.23765836609873,
+ "grad_norm": 0.23246599733829498,
+ "learning_rate": 0.0006,
+ "loss": 3.461637496948242,
+ "step": 5777
+ },
+ {
+ "epoch": 80.2516382699869,
+ "grad_norm": 0.21817834675312042,
+ "learning_rate": 0.0006,
+ "loss": 3.483128070831299,
+ "step": 5778
+ },
+ {
+ "epoch": 80.26561817387505,
+ "grad_norm": 0.2208380103111267,
+ "learning_rate": 0.0006,
+ "loss": 3.4182612895965576,
+ "step": 5779
+ },
+ {
+ "epoch": 80.27959807776321,
+ "grad_norm": 0.21948039531707764,
+ "learning_rate": 0.0006,
+ "loss": 3.4268085956573486,
+ "step": 5780
+ },
+ {
+ "epoch": 80.29357798165138,
+ "grad_norm": 0.24356511235237122,
+ "learning_rate": 0.0006,
+ "loss": 3.4365224838256836,
+ "step": 5781
+ },
+ {
+ "epoch": 80.30755788553954,
+ "grad_norm": 0.2545076012611389,
+ "learning_rate": 0.0006,
+ "loss": 3.4595799446105957,
+ "step": 5782
+ },
+ {
+ "epoch": 80.3215377894277,
+ "grad_norm": 0.23793567717075348,
+ "learning_rate": 0.0006,
+ "loss": 3.4590306282043457,
+ "step": 5783
+ },
+ {
+ "epoch": 80.33551769331586,
+ "grad_norm": 0.22215817868709564,
+ "learning_rate": 0.0006,
+ "loss": 3.4594779014587402,
+ "step": 5784
+ },
+ {
+ "epoch": 80.34949759720402,
+ "grad_norm": 0.24598804116249084,
+ "learning_rate": 0.0006,
+ "loss": 3.4702706336975098,
+ "step": 5785
+ },
+ {
+ "epoch": 80.36347750109218,
+ "grad_norm": 0.26150956749916077,
+ "learning_rate": 0.0006,
+ "loss": 3.504547357559204,
+ "step": 5786
+ },
+ {
+ "epoch": 80.37745740498035,
+ "grad_norm": 0.22220160067081451,
+ "learning_rate": 0.0006,
+ "loss": 3.4633049964904785,
+ "step": 5787
+ },
+ {
+ "epoch": 80.3914373088685,
+ "grad_norm": 0.2343321293592453,
+ "learning_rate": 0.0006,
+ "loss": 3.4659838676452637,
+ "step": 5788
+ },
+ {
+ "epoch": 80.40541721275666,
+ "grad_norm": 0.2196560502052307,
+ "learning_rate": 0.0006,
+ "loss": 3.477983236312866,
+ "step": 5789
+ },
+ {
+ "epoch": 80.41939711664482,
+ "grad_norm": 0.22598406672477722,
+ "learning_rate": 0.0006,
+ "loss": 3.4452672004699707,
+ "step": 5790
+ },
+ {
+ "epoch": 80.43337702053299,
+ "grad_norm": 0.21038709580898285,
+ "learning_rate": 0.0006,
+ "loss": 3.4401512145996094,
+ "step": 5791
+ },
+ {
+ "epoch": 80.44735692442114,
+ "grad_norm": 0.21702879667282104,
+ "learning_rate": 0.0006,
+ "loss": 3.482847213745117,
+ "step": 5792
+ },
+ {
+ "epoch": 80.4613368283093,
+ "grad_norm": 0.22423747181892395,
+ "learning_rate": 0.0006,
+ "loss": 3.454658031463623,
+ "step": 5793
+ },
+ {
+ "epoch": 80.47531673219747,
+ "grad_norm": 0.2156888246536255,
+ "learning_rate": 0.0006,
+ "loss": 3.4609858989715576,
+ "step": 5794
+ },
+ {
+ "epoch": 80.48929663608563,
+ "grad_norm": 0.22172603011131287,
+ "learning_rate": 0.0006,
+ "loss": 3.479116916656494,
+ "step": 5795
+ },
+ {
+ "epoch": 80.50327653997378,
+ "grad_norm": 0.22773809731006622,
+ "learning_rate": 0.0006,
+ "loss": 3.457540988922119,
+ "step": 5796
+ },
+ {
+ "epoch": 80.51725644386195,
+ "grad_norm": 0.2215251326560974,
+ "learning_rate": 0.0006,
+ "loss": 3.451545476913452,
+ "step": 5797
+ },
+ {
+ "epoch": 80.53123634775011,
+ "grad_norm": 0.22479848563671112,
+ "learning_rate": 0.0006,
+ "loss": 3.4318554401397705,
+ "step": 5798
+ },
+ {
+ "epoch": 80.54521625163827,
+ "grad_norm": 0.23643286526203156,
+ "learning_rate": 0.0006,
+ "loss": 3.448240280151367,
+ "step": 5799
+ },
+ {
+ "epoch": 80.55919615552644,
+ "grad_norm": 0.22819532454013824,
+ "learning_rate": 0.0006,
+ "loss": 3.4966626167297363,
+ "step": 5800
+ },
+ {
+ "epoch": 80.57317605941459,
+ "grad_norm": 0.2213105857372284,
+ "learning_rate": 0.0006,
+ "loss": 3.4401497840881348,
+ "step": 5801
+ },
+ {
+ "epoch": 80.58715596330275,
+ "grad_norm": 0.23570658266544342,
+ "learning_rate": 0.0006,
+ "loss": 3.4650940895080566,
+ "step": 5802
+ },
+ {
+ "epoch": 80.60113586719092,
+ "grad_norm": 0.2692683935165405,
+ "learning_rate": 0.0006,
+ "loss": 3.502164125442505,
+ "step": 5803
+ },
+ {
+ "epoch": 80.61511577107908,
+ "grad_norm": 0.2756805121898651,
+ "learning_rate": 0.0006,
+ "loss": 3.4653677940368652,
+ "step": 5804
+ },
+ {
+ "epoch": 80.62909567496723,
+ "grad_norm": 0.2219257950782776,
+ "learning_rate": 0.0006,
+ "loss": 3.459779977798462,
+ "step": 5805
+ },
+ {
+ "epoch": 80.6430755788554,
+ "grad_norm": 0.21970611810684204,
+ "learning_rate": 0.0006,
+ "loss": 3.451747417449951,
+ "step": 5806
+ },
+ {
+ "epoch": 80.65705548274356,
+ "grad_norm": 0.22080424427986145,
+ "learning_rate": 0.0006,
+ "loss": 3.469550609588623,
+ "step": 5807
+ },
+ {
+ "epoch": 80.67103538663171,
+ "grad_norm": 0.22235846519470215,
+ "learning_rate": 0.0006,
+ "loss": 3.488161563873291,
+ "step": 5808
+ },
+ {
+ "epoch": 80.68501529051987,
+ "grad_norm": 0.24261491000652313,
+ "learning_rate": 0.0006,
+ "loss": 3.486595630645752,
+ "step": 5809
+ },
+ {
+ "epoch": 80.69899519440804,
+ "grad_norm": 0.20906759798526764,
+ "learning_rate": 0.0006,
+ "loss": 3.450944423675537,
+ "step": 5810
+ },
+ {
+ "epoch": 80.7129750982962,
+ "grad_norm": 0.225368469953537,
+ "learning_rate": 0.0006,
+ "loss": 3.4868040084838867,
+ "step": 5811
+ },
+ {
+ "epoch": 80.72695500218435,
+ "grad_norm": 0.254836767911911,
+ "learning_rate": 0.0006,
+ "loss": 3.5024094581604004,
+ "step": 5812
+ },
+ {
+ "epoch": 80.74093490607252,
+ "grad_norm": 0.23393481969833374,
+ "learning_rate": 0.0006,
+ "loss": 3.453914165496826,
+ "step": 5813
+ },
+ {
+ "epoch": 80.75491480996068,
+ "grad_norm": 0.2270888388156891,
+ "learning_rate": 0.0006,
+ "loss": 3.4943716526031494,
+ "step": 5814
+ },
+ {
+ "epoch": 80.76889471384884,
+ "grad_norm": 0.24670317769050598,
+ "learning_rate": 0.0006,
+ "loss": 3.504342794418335,
+ "step": 5815
+ },
+ {
+ "epoch": 80.78287461773701,
+ "grad_norm": 0.23893672227859497,
+ "learning_rate": 0.0006,
+ "loss": 3.452670097351074,
+ "step": 5816
+ },
+ {
+ "epoch": 80.79685452162516,
+ "grad_norm": 0.2175605446100235,
+ "learning_rate": 0.0006,
+ "loss": 3.4578192234039307,
+ "step": 5817
+ },
+ {
+ "epoch": 80.81083442551332,
+ "grad_norm": 0.2156844139099121,
+ "learning_rate": 0.0006,
+ "loss": 3.4781908988952637,
+ "step": 5818
+ },
+ {
+ "epoch": 80.82481432940149,
+ "grad_norm": 0.2505752444267273,
+ "learning_rate": 0.0006,
+ "loss": 3.493128538131714,
+ "step": 5819
+ },
+ {
+ "epoch": 80.83879423328965,
+ "grad_norm": 0.2448679655790329,
+ "learning_rate": 0.0006,
+ "loss": 3.472296714782715,
+ "step": 5820
+ },
+ {
+ "epoch": 80.8527741371778,
+ "grad_norm": 0.22968287765979767,
+ "learning_rate": 0.0006,
+ "loss": 3.4909615516662598,
+ "step": 5821
+ },
+ {
+ "epoch": 80.86675404106597,
+ "grad_norm": 0.24920479953289032,
+ "learning_rate": 0.0006,
+ "loss": 3.4653358459472656,
+ "step": 5822
+ },
+ {
+ "epoch": 80.88073394495413,
+ "grad_norm": 0.24923524260520935,
+ "learning_rate": 0.0006,
+ "loss": 3.4682798385620117,
+ "step": 5823
+ },
+ {
+ "epoch": 80.89471384884229,
+ "grad_norm": 0.2546396255493164,
+ "learning_rate": 0.0006,
+ "loss": 3.4581995010375977,
+ "step": 5824
+ },
+ {
+ "epoch": 80.90869375273044,
+ "grad_norm": 0.27739930152893066,
+ "learning_rate": 0.0006,
+ "loss": 3.476200819015503,
+ "step": 5825
+ },
+ {
+ "epoch": 80.92267365661861,
+ "grad_norm": 0.25831520557403564,
+ "learning_rate": 0.0006,
+ "loss": 3.5037174224853516,
+ "step": 5826
+ },
+ {
+ "epoch": 80.93665356050677,
+ "grad_norm": 0.2223384827375412,
+ "learning_rate": 0.0006,
+ "loss": 3.458250045776367,
+ "step": 5827
+ },
+ {
+ "epoch": 80.95063346439493,
+ "grad_norm": 0.22563499212265015,
+ "learning_rate": 0.0006,
+ "loss": 3.474761486053467,
+ "step": 5828
+ },
+ {
+ "epoch": 80.9646133682831,
+ "grad_norm": 0.2326449155807495,
+ "learning_rate": 0.0006,
+ "loss": 3.500535011291504,
+ "step": 5829
+ },
+ {
+ "epoch": 80.97859327217125,
+ "grad_norm": 0.23983219265937805,
+ "learning_rate": 0.0006,
+ "loss": 3.462369680404663,
+ "step": 5830
+ },
+ {
+ "epoch": 80.99257317605941,
+ "grad_norm": 0.2850669324398041,
+ "learning_rate": 0.0006,
+ "loss": 3.4906742572784424,
+ "step": 5831
+ },
+ {
+ "epoch": 81.0,
+ "grad_norm": 0.33799314498901367,
+ "learning_rate": 0.0006,
+ "loss": 3.5178146362304688,
+ "step": 5832
+ },
+ {
+ "epoch": 81.0,
+ "eval_loss": 4.0064849853515625,
+ "eval_runtime": 46.5715,
+ "eval_samples_per_second": 52.435,
+ "eval_steps_per_second": 3.285,
+ "step": 5832
+ },
+ {
+ "epoch": 81.01397990388816,
+ "grad_norm": 0.2734781801700592,
+ "learning_rate": 0.0006,
+ "loss": 3.44972562789917,
+ "step": 5833
+ },
+ {
+ "epoch": 81.02795980777633,
+ "grad_norm": 0.24696482717990875,
+ "learning_rate": 0.0006,
+ "loss": 3.43271541595459,
+ "step": 5834
+ },
+ {
+ "epoch": 81.04193971166448,
+ "grad_norm": 0.24902470409870148,
+ "learning_rate": 0.0006,
+ "loss": 3.442819595336914,
+ "step": 5835
+ },
+ {
+ "epoch": 81.05591961555264,
+ "grad_norm": 0.26691070199012756,
+ "learning_rate": 0.0006,
+ "loss": 3.4350805282592773,
+ "step": 5836
+ },
+ {
+ "epoch": 81.06989951944081,
+ "grad_norm": 0.271199107170105,
+ "learning_rate": 0.0006,
+ "loss": 3.4339957237243652,
+ "step": 5837
+ },
+ {
+ "epoch": 81.08387942332897,
+ "grad_norm": 0.24132029712200165,
+ "learning_rate": 0.0006,
+ "loss": 3.437596321105957,
+ "step": 5838
+ },
+ {
+ "epoch": 81.09785932721712,
+ "grad_norm": 0.22754840552806854,
+ "learning_rate": 0.0006,
+ "loss": 3.420121431350708,
+ "step": 5839
+ },
+ {
+ "epoch": 81.1118392311053,
+ "grad_norm": 0.2779895067214966,
+ "learning_rate": 0.0006,
+ "loss": 3.4544930458068848,
+ "step": 5840
+ },
+ {
+ "epoch": 81.12581913499345,
+ "grad_norm": 0.28317394852638245,
+ "learning_rate": 0.0006,
+ "loss": 3.4461822509765625,
+ "step": 5841
+ },
+ {
+ "epoch": 81.1397990388816,
+ "grad_norm": 0.22738827764987946,
+ "learning_rate": 0.0006,
+ "loss": 3.460659980773926,
+ "step": 5842
+ },
+ {
+ "epoch": 81.15377894276976,
+ "grad_norm": 0.24671101570129395,
+ "learning_rate": 0.0006,
+ "loss": 3.4540371894836426,
+ "step": 5843
+ },
+ {
+ "epoch": 81.16775884665793,
+ "grad_norm": 0.2668206989765167,
+ "learning_rate": 0.0006,
+ "loss": 3.40748929977417,
+ "step": 5844
+ },
+ {
+ "epoch": 81.18173875054609,
+ "grad_norm": 0.2719775140285492,
+ "learning_rate": 0.0006,
+ "loss": 3.432345390319824,
+ "step": 5845
+ },
+ {
+ "epoch": 81.19571865443424,
+ "grad_norm": 0.25384029746055603,
+ "learning_rate": 0.0006,
+ "loss": 3.4371347427368164,
+ "step": 5846
+ },
+ {
+ "epoch": 81.20969855832242,
+ "grad_norm": 0.2570390999317169,
+ "learning_rate": 0.0006,
+ "loss": 3.4476442337036133,
+ "step": 5847
+ },
+ {
+ "epoch": 81.22367846221057,
+ "grad_norm": 0.26525548100471497,
+ "learning_rate": 0.0006,
+ "loss": 3.471432685852051,
+ "step": 5848
+ },
+ {
+ "epoch": 81.23765836609873,
+ "grad_norm": 0.2836049199104309,
+ "learning_rate": 0.0006,
+ "loss": 3.4596359729766846,
+ "step": 5849
+ },
+ {
+ "epoch": 81.2516382699869,
+ "grad_norm": 0.2822650671005249,
+ "learning_rate": 0.0006,
+ "loss": 3.433651924133301,
+ "step": 5850
+ },
+ {
+ "epoch": 81.26561817387505,
+ "grad_norm": 0.25116705894470215,
+ "learning_rate": 0.0006,
+ "loss": 3.452144145965576,
+ "step": 5851
+ },
+ {
+ "epoch": 81.27959807776321,
+ "grad_norm": 0.23779597878456116,
+ "learning_rate": 0.0006,
+ "loss": 3.459000587463379,
+ "step": 5852
+ },
+ {
+ "epoch": 81.29357798165138,
+ "grad_norm": 0.21741659939289093,
+ "learning_rate": 0.0006,
+ "loss": 3.44561505317688,
+ "step": 5853
+ },
+ {
+ "epoch": 81.30755788553954,
+ "grad_norm": 0.24104240536689758,
+ "learning_rate": 0.0006,
+ "loss": 3.4796364307403564,
+ "step": 5854
+ },
+ {
+ "epoch": 81.3215377894277,
+ "grad_norm": 0.2497674971818924,
+ "learning_rate": 0.0006,
+ "loss": 3.460237741470337,
+ "step": 5855
+ },
+ {
+ "epoch": 81.33551769331586,
+ "grad_norm": 0.26402798295021057,
+ "learning_rate": 0.0006,
+ "loss": 3.459944725036621,
+ "step": 5856
+ },
+ {
+ "epoch": 81.34949759720402,
+ "grad_norm": 0.2843187153339386,
+ "learning_rate": 0.0006,
+ "loss": 3.464351177215576,
+ "step": 5857
+ },
+ {
+ "epoch": 81.36347750109218,
+ "grad_norm": 0.26369425654411316,
+ "learning_rate": 0.0006,
+ "loss": 3.459855556488037,
+ "step": 5858
+ },
+ {
+ "epoch": 81.37745740498035,
+ "grad_norm": 0.2376980036497116,
+ "learning_rate": 0.0006,
+ "loss": 3.4585585594177246,
+ "step": 5859
+ },
+ {
+ "epoch": 81.3914373088685,
+ "grad_norm": 0.2369474321603775,
+ "learning_rate": 0.0006,
+ "loss": 3.4587368965148926,
+ "step": 5860
+ },
+ {
+ "epoch": 81.40541721275666,
+ "grad_norm": 0.24202723801136017,
+ "learning_rate": 0.0006,
+ "loss": 3.456484317779541,
+ "step": 5861
+ },
+ {
+ "epoch": 81.41939711664482,
+ "grad_norm": 0.24000433087348938,
+ "learning_rate": 0.0006,
+ "loss": 3.4597935676574707,
+ "step": 5862
+ },
+ {
+ "epoch": 81.43337702053299,
+ "grad_norm": 0.21620287001132965,
+ "learning_rate": 0.0006,
+ "loss": 3.490447759628296,
+ "step": 5863
+ },
+ {
+ "epoch": 81.44735692442114,
+ "grad_norm": 0.21280473470687866,
+ "learning_rate": 0.0006,
+ "loss": 3.4409351348876953,
+ "step": 5864
+ },
+ {
+ "epoch": 81.4613368283093,
+ "grad_norm": 0.21686480939388275,
+ "learning_rate": 0.0006,
+ "loss": 3.4337422847747803,
+ "step": 5865
+ },
+ {
+ "epoch": 81.47531673219747,
+ "grad_norm": 0.21165262162685394,
+ "learning_rate": 0.0006,
+ "loss": 3.4551923274993896,
+ "step": 5866
+ },
+ {
+ "epoch": 81.48929663608563,
+ "grad_norm": 0.24010618031024933,
+ "learning_rate": 0.0006,
+ "loss": 3.4817299842834473,
+ "step": 5867
+ },
+ {
+ "epoch": 81.50327653997378,
+ "grad_norm": 0.23277464509010315,
+ "learning_rate": 0.0006,
+ "loss": 3.4820570945739746,
+ "step": 5868
+ },
+ {
+ "epoch": 81.51725644386195,
+ "grad_norm": 0.20819281041622162,
+ "learning_rate": 0.0006,
+ "loss": 3.442948341369629,
+ "step": 5869
+ },
+ {
+ "epoch": 81.53123634775011,
+ "grad_norm": 0.22829480469226837,
+ "learning_rate": 0.0006,
+ "loss": 3.4757442474365234,
+ "step": 5870
+ },
+ {
+ "epoch": 81.54521625163827,
+ "grad_norm": 0.24158570170402527,
+ "learning_rate": 0.0006,
+ "loss": 3.4724745750427246,
+ "step": 5871
+ },
+ {
+ "epoch": 81.55919615552644,
+ "grad_norm": 0.24712695181369781,
+ "learning_rate": 0.0006,
+ "loss": 3.4481959342956543,
+ "step": 5872
+ },
+ {
+ "epoch": 81.57317605941459,
+ "grad_norm": 0.2370705008506775,
+ "learning_rate": 0.0006,
+ "loss": 3.466951847076416,
+ "step": 5873
+ },
+ {
+ "epoch": 81.58715596330275,
+ "grad_norm": 0.2232188880443573,
+ "learning_rate": 0.0006,
+ "loss": 3.4636940956115723,
+ "step": 5874
+ },
+ {
+ "epoch": 81.60113586719092,
+ "grad_norm": 0.22505831718444824,
+ "learning_rate": 0.0006,
+ "loss": 3.476677894592285,
+ "step": 5875
+ },
+ {
+ "epoch": 81.61511577107908,
+ "grad_norm": 0.23009659349918365,
+ "learning_rate": 0.0006,
+ "loss": 3.451272964477539,
+ "step": 5876
+ },
+ {
+ "epoch": 81.62909567496723,
+ "grad_norm": 0.26682841777801514,
+ "learning_rate": 0.0006,
+ "loss": 3.454648733139038,
+ "step": 5877
+ },
+ {
+ "epoch": 81.6430755788554,
+ "grad_norm": 0.26330509781837463,
+ "learning_rate": 0.0006,
+ "loss": 3.483720064163208,
+ "step": 5878
+ },
+ {
+ "epoch": 81.65705548274356,
+ "grad_norm": 0.24642175436019897,
+ "learning_rate": 0.0006,
+ "loss": 3.483520984649658,
+ "step": 5879
+ },
+ {
+ "epoch": 81.67103538663171,
+ "grad_norm": 0.24045883119106293,
+ "learning_rate": 0.0006,
+ "loss": 3.478955030441284,
+ "step": 5880
+ },
+ {
+ "epoch": 81.68501529051987,
+ "grad_norm": 0.25334200263023376,
+ "learning_rate": 0.0006,
+ "loss": 3.46458101272583,
+ "step": 5881
+ },
+ {
+ "epoch": 81.69899519440804,
+ "grad_norm": 0.23601189255714417,
+ "learning_rate": 0.0006,
+ "loss": 3.4435858726501465,
+ "step": 5882
+ },
+ {
+ "epoch": 81.7129750982962,
+ "grad_norm": 0.24426797032356262,
+ "learning_rate": 0.0006,
+ "loss": 3.47581148147583,
+ "step": 5883
+ },
+ {
+ "epoch": 81.72695500218435,
+ "grad_norm": 0.28175151348114014,
+ "learning_rate": 0.0006,
+ "loss": 3.464777946472168,
+ "step": 5884
+ },
+ {
+ "epoch": 81.74093490607252,
+ "grad_norm": 0.30024033784866333,
+ "learning_rate": 0.0006,
+ "loss": 3.4527053833007812,
+ "step": 5885
+ },
+ {
+ "epoch": 81.75491480996068,
+ "grad_norm": 0.2306688278913498,
+ "learning_rate": 0.0006,
+ "loss": 3.4810023307800293,
+ "step": 5886
+ },
+ {
+ "epoch": 81.76889471384884,
+ "grad_norm": 0.2599645256996155,
+ "learning_rate": 0.0006,
+ "loss": 3.4631409645080566,
+ "step": 5887
+ },
+ {
+ "epoch": 81.78287461773701,
+ "grad_norm": 0.2765994966030121,
+ "learning_rate": 0.0006,
+ "loss": 3.477273464202881,
+ "step": 5888
+ },
+ {
+ "epoch": 81.79685452162516,
+ "grad_norm": 0.2595500648021698,
+ "learning_rate": 0.0006,
+ "loss": 3.4744186401367188,
+ "step": 5889
+ },
+ {
+ "epoch": 81.81083442551332,
+ "grad_norm": 0.2481662631034851,
+ "learning_rate": 0.0006,
+ "loss": 3.507770538330078,
+ "step": 5890
+ },
+ {
+ "epoch": 81.82481432940149,
+ "grad_norm": 0.23018419742584229,
+ "learning_rate": 0.0006,
+ "loss": 3.4804000854492188,
+ "step": 5891
+ },
+ {
+ "epoch": 81.83879423328965,
+ "grad_norm": 0.230391263961792,
+ "learning_rate": 0.0006,
+ "loss": 3.4579944610595703,
+ "step": 5892
+ },
+ {
+ "epoch": 81.8527741371778,
+ "grad_norm": 0.21724778413772583,
+ "learning_rate": 0.0006,
+ "loss": 3.501087188720703,
+ "step": 5893
+ },
+ {
+ "epoch": 81.86675404106597,
+ "grad_norm": 0.24898028373718262,
+ "learning_rate": 0.0006,
+ "loss": 3.4701733589172363,
+ "step": 5894
+ },
+ {
+ "epoch": 81.88073394495413,
+ "grad_norm": 0.2489824891090393,
+ "learning_rate": 0.0006,
+ "loss": 3.4377074241638184,
+ "step": 5895
+ },
+ {
+ "epoch": 81.89471384884229,
+ "grad_norm": 0.22714054584503174,
+ "learning_rate": 0.0006,
+ "loss": 3.457437515258789,
+ "step": 5896
+ },
+ {
+ "epoch": 81.90869375273044,
+ "grad_norm": 0.25653958320617676,
+ "learning_rate": 0.0006,
+ "loss": 3.4825286865234375,
+ "step": 5897
+ },
+ {
+ "epoch": 81.92267365661861,
+ "grad_norm": 0.2545621991157532,
+ "learning_rate": 0.0006,
+ "loss": 3.4589271545410156,
+ "step": 5898
+ },
+ {
+ "epoch": 81.93665356050677,
+ "grad_norm": 0.2259686142206192,
+ "learning_rate": 0.0006,
+ "loss": 3.4559035301208496,
+ "step": 5899
+ },
+ {
+ "epoch": 81.95063346439493,
+ "grad_norm": 0.2246817946434021,
+ "learning_rate": 0.0006,
+ "loss": 3.5045571327209473,
+ "step": 5900
+ },
+ {
+ "epoch": 81.9646133682831,
+ "grad_norm": 0.23750948905944824,
+ "learning_rate": 0.0006,
+ "loss": 3.450650453567505,
+ "step": 5901
+ },
+ {
+ "epoch": 81.97859327217125,
+ "grad_norm": 0.23084647953510284,
+ "learning_rate": 0.0006,
+ "loss": 3.488955020904541,
+ "step": 5902
+ },
+ {
+ "epoch": 81.99257317605941,
+ "grad_norm": 0.22894839942455292,
+ "learning_rate": 0.0006,
+ "loss": 3.459271192550659,
+ "step": 5903
+ },
+ {
+ "epoch": 82.0,
+ "grad_norm": 0.2765962779521942,
+ "learning_rate": 0.0006,
+ "loss": 3.408276081085205,
+ "step": 5904
+ },
+ {
+ "epoch": 82.0,
+ "eval_loss": 3.996730327606201,
+ "eval_runtime": 45.9786,
+ "eval_samples_per_second": 53.112,
+ "eval_steps_per_second": 3.328,
+ "step": 5904
+ },
+ {
+ "epoch": 82.01397990388816,
+ "grad_norm": 0.23179036378860474,
+ "learning_rate": 0.0006,
+ "loss": 3.4373724460601807,
+ "step": 5905
+ },
+ {
+ "epoch": 82.02795980777633,
+ "grad_norm": 0.26358088850975037,
+ "learning_rate": 0.0006,
+ "loss": 3.409518241882324,
+ "step": 5906
+ },
+ {
+ "epoch": 82.04193971166448,
+ "grad_norm": 0.2684100866317749,
+ "learning_rate": 0.0006,
+ "loss": 3.454376697540283,
+ "step": 5907
+ },
+ {
+ "epoch": 82.05591961555264,
+ "grad_norm": 0.2605251371860504,
+ "learning_rate": 0.0006,
+ "loss": 3.443272113800049,
+ "step": 5908
+ },
+ {
+ "epoch": 82.06989951944081,
+ "grad_norm": 0.28532418608665466,
+ "learning_rate": 0.0006,
+ "loss": 3.462437629699707,
+ "step": 5909
+ },
+ {
+ "epoch": 82.08387942332897,
+ "grad_norm": 0.27555668354034424,
+ "learning_rate": 0.0006,
+ "loss": 3.441549301147461,
+ "step": 5910
+ },
+ {
+ "epoch": 82.09785932721712,
+ "grad_norm": 0.24676190316677094,
+ "learning_rate": 0.0006,
+ "loss": 3.4276766777038574,
+ "step": 5911
+ },
+ {
+ "epoch": 82.1118392311053,
+ "grad_norm": 0.24529537558555603,
+ "learning_rate": 0.0006,
+ "loss": 3.4216628074645996,
+ "step": 5912
+ },
+ {
+ "epoch": 82.12581913499345,
+ "grad_norm": 0.24856150150299072,
+ "learning_rate": 0.0006,
+ "loss": 3.440220832824707,
+ "step": 5913
+ },
+ {
+ "epoch": 82.1397990388816,
+ "grad_norm": 0.25839412212371826,
+ "learning_rate": 0.0006,
+ "loss": 3.4307751655578613,
+ "step": 5914
+ },
+ {
+ "epoch": 82.15377894276976,
+ "grad_norm": 0.24331165850162506,
+ "learning_rate": 0.0006,
+ "loss": 3.434621810913086,
+ "step": 5915
+ },
+ {
+ "epoch": 82.16775884665793,
+ "grad_norm": 0.23028214275836945,
+ "learning_rate": 0.0006,
+ "loss": 3.4578404426574707,
+ "step": 5916
+ },
+ {
+ "epoch": 82.18173875054609,
+ "grad_norm": 0.25276753306388855,
+ "learning_rate": 0.0006,
+ "loss": 3.447455406188965,
+ "step": 5917
+ },
+ {
+ "epoch": 82.19571865443424,
+ "grad_norm": 0.2595311105251312,
+ "learning_rate": 0.0006,
+ "loss": 3.4466679096221924,
+ "step": 5918
+ },
+ {
+ "epoch": 82.20969855832242,
+ "grad_norm": 0.2971263527870178,
+ "learning_rate": 0.0006,
+ "loss": 3.4721288681030273,
+ "step": 5919
+ },
+ {
+ "epoch": 82.22367846221057,
+ "grad_norm": 0.3399767577648163,
+ "learning_rate": 0.0006,
+ "loss": 3.433732032775879,
+ "step": 5920
+ },
+ {
+ "epoch": 82.23765836609873,
+ "grad_norm": 0.2947933077812195,
+ "learning_rate": 0.0006,
+ "loss": 3.437530994415283,
+ "step": 5921
+ },
+ {
+ "epoch": 82.2516382699869,
+ "grad_norm": 0.24236083030700684,
+ "learning_rate": 0.0006,
+ "loss": 3.4405105113983154,
+ "step": 5922
+ },
+ {
+ "epoch": 82.26561817387505,
+ "grad_norm": 0.2506858706474304,
+ "learning_rate": 0.0006,
+ "loss": 3.4653801918029785,
+ "step": 5923
+ },
+ {
+ "epoch": 82.27959807776321,
+ "grad_norm": 0.3094657361507416,
+ "learning_rate": 0.0006,
+ "loss": 3.444723129272461,
+ "step": 5924
+ },
+ {
+ "epoch": 82.29357798165138,
+ "grad_norm": 0.3230939209461212,
+ "learning_rate": 0.0006,
+ "loss": 3.4660234451293945,
+ "step": 5925
+ },
+ {
+ "epoch": 82.30755788553954,
+ "grad_norm": 0.30391860008239746,
+ "learning_rate": 0.0006,
+ "loss": 3.451413631439209,
+ "step": 5926
+ },
+ {
+ "epoch": 82.3215377894277,
+ "grad_norm": 0.2740595042705536,
+ "learning_rate": 0.0006,
+ "loss": 3.449131965637207,
+ "step": 5927
+ },
+ {
+ "epoch": 82.33551769331586,
+ "grad_norm": 0.2436739057302475,
+ "learning_rate": 0.0006,
+ "loss": 3.4319000244140625,
+ "step": 5928
+ },
+ {
+ "epoch": 82.34949759720402,
+ "grad_norm": 0.28533536195755005,
+ "learning_rate": 0.0006,
+ "loss": 3.4300975799560547,
+ "step": 5929
+ },
+ {
+ "epoch": 82.36347750109218,
+ "grad_norm": 0.2921883761882782,
+ "learning_rate": 0.0006,
+ "loss": 3.4531779289245605,
+ "step": 5930
+ },
+ {
+ "epoch": 82.37745740498035,
+ "grad_norm": 0.23490813374519348,
+ "learning_rate": 0.0006,
+ "loss": 3.461367130279541,
+ "step": 5931
+ },
+ {
+ "epoch": 82.3914373088685,
+ "grad_norm": 0.23341777920722961,
+ "learning_rate": 0.0006,
+ "loss": 3.4425978660583496,
+ "step": 5932
+ },
+ {
+ "epoch": 82.40541721275666,
+ "grad_norm": 0.2530428171157837,
+ "learning_rate": 0.0006,
+ "loss": 3.4478020668029785,
+ "step": 5933
+ },
+ {
+ "epoch": 82.41939711664482,
+ "grad_norm": 0.2404085248708725,
+ "learning_rate": 0.0006,
+ "loss": 3.401540517807007,
+ "step": 5934
+ },
+ {
+ "epoch": 82.43337702053299,
+ "grad_norm": 0.23845867812633514,
+ "learning_rate": 0.0006,
+ "loss": 3.461883544921875,
+ "step": 5935
+ },
+ {
+ "epoch": 82.44735692442114,
+ "grad_norm": 0.23088037967681885,
+ "learning_rate": 0.0006,
+ "loss": 3.4389796257019043,
+ "step": 5936
+ },
+ {
+ "epoch": 82.4613368283093,
+ "grad_norm": 0.24288570880889893,
+ "learning_rate": 0.0006,
+ "loss": 3.457475185394287,
+ "step": 5937
+ },
+ {
+ "epoch": 82.47531673219747,
+ "grad_norm": 0.2799559235572815,
+ "learning_rate": 0.0006,
+ "loss": 3.445082664489746,
+ "step": 5938
+ },
+ {
+ "epoch": 82.48929663608563,
+ "grad_norm": 0.23611751198768616,
+ "learning_rate": 0.0006,
+ "loss": 3.463675022125244,
+ "step": 5939
+ },
+ {
+ "epoch": 82.50327653997378,
+ "grad_norm": 0.2390424907207489,
+ "learning_rate": 0.0006,
+ "loss": 3.4434826374053955,
+ "step": 5940
+ },
+ {
+ "epoch": 82.51725644386195,
+ "grad_norm": 0.3373001217842102,
+ "learning_rate": 0.0006,
+ "loss": 3.4687438011169434,
+ "step": 5941
+ },
+ {
+ "epoch": 82.53123634775011,
+ "grad_norm": 0.3413066267967224,
+ "learning_rate": 0.0006,
+ "loss": 3.4376461505889893,
+ "step": 5942
+ },
+ {
+ "epoch": 82.54521625163827,
+ "grad_norm": 0.24165762960910797,
+ "learning_rate": 0.0006,
+ "loss": 3.430239200592041,
+ "step": 5943
+ },
+ {
+ "epoch": 82.55919615552644,
+ "grad_norm": 0.25374823808670044,
+ "learning_rate": 0.0006,
+ "loss": 3.417081832885742,
+ "step": 5944
+ },
+ {
+ "epoch": 82.57317605941459,
+ "grad_norm": 0.32946228981018066,
+ "learning_rate": 0.0006,
+ "loss": 3.4235644340515137,
+ "step": 5945
+ },
+ {
+ "epoch": 82.58715596330275,
+ "grad_norm": 0.32193586230278015,
+ "learning_rate": 0.0006,
+ "loss": 3.450972080230713,
+ "step": 5946
+ },
+ {
+ "epoch": 82.60113586719092,
+ "grad_norm": 0.24615046381950378,
+ "learning_rate": 0.0006,
+ "loss": 3.489959716796875,
+ "step": 5947
+ },
+ {
+ "epoch": 82.61511577107908,
+ "grad_norm": 0.24981027841567993,
+ "learning_rate": 0.0006,
+ "loss": 3.466486930847168,
+ "step": 5948
+ },
+ {
+ "epoch": 82.62909567496723,
+ "grad_norm": 0.2472672462463379,
+ "learning_rate": 0.0006,
+ "loss": 3.47261381149292,
+ "step": 5949
+ },
+ {
+ "epoch": 82.6430755788554,
+ "grad_norm": 0.2465936541557312,
+ "learning_rate": 0.0006,
+ "loss": 3.46502423286438,
+ "step": 5950
+ },
+ {
+ "epoch": 82.65705548274356,
+ "grad_norm": 0.2683236300945282,
+ "learning_rate": 0.0006,
+ "loss": 3.4559872150421143,
+ "step": 5951
+ },
+ {
+ "epoch": 82.67103538663171,
+ "grad_norm": 0.2673622965812683,
+ "learning_rate": 0.0006,
+ "loss": 3.5017478466033936,
+ "step": 5952
+ },
+ {
+ "epoch": 82.68501529051987,
+ "grad_norm": 0.2692212164402008,
+ "learning_rate": 0.0006,
+ "loss": 3.4872794151306152,
+ "step": 5953
+ },
+ {
+ "epoch": 82.69899519440804,
+ "grad_norm": 0.26421430706977844,
+ "learning_rate": 0.0006,
+ "loss": 3.4612350463867188,
+ "step": 5954
+ },
+ {
+ "epoch": 82.7129750982962,
+ "grad_norm": 0.2509252727031708,
+ "learning_rate": 0.0006,
+ "loss": 3.4686827659606934,
+ "step": 5955
+ },
+ {
+ "epoch": 82.72695500218435,
+ "grad_norm": 0.209443598985672,
+ "learning_rate": 0.0006,
+ "loss": 3.454824924468994,
+ "step": 5956
+ },
+ {
+ "epoch": 82.74093490607252,
+ "grad_norm": 0.24989601969718933,
+ "learning_rate": 0.0006,
+ "loss": 3.4740121364593506,
+ "step": 5957
+ },
+ {
+ "epoch": 82.75491480996068,
+ "grad_norm": 0.2902134954929352,
+ "learning_rate": 0.0006,
+ "loss": 3.4464473724365234,
+ "step": 5958
+ },
+ {
+ "epoch": 82.76889471384884,
+ "grad_norm": 0.24959035217761993,
+ "learning_rate": 0.0006,
+ "loss": 3.465094566345215,
+ "step": 5959
+ },
+ {
+ "epoch": 82.78287461773701,
+ "grad_norm": 0.23020492494106293,
+ "learning_rate": 0.0006,
+ "loss": 3.4868249893188477,
+ "step": 5960
+ },
+ {
+ "epoch": 82.79685452162516,
+ "grad_norm": 0.2315775454044342,
+ "learning_rate": 0.0006,
+ "loss": 3.4711623191833496,
+ "step": 5961
+ },
+ {
+ "epoch": 82.81083442551332,
+ "grad_norm": 0.2326463758945465,
+ "learning_rate": 0.0006,
+ "loss": 3.447787284851074,
+ "step": 5962
+ },
+ {
+ "epoch": 82.82481432940149,
+ "grad_norm": 0.23650991916656494,
+ "learning_rate": 0.0006,
+ "loss": 3.4676520824432373,
+ "step": 5963
+ },
+ {
+ "epoch": 82.83879423328965,
+ "grad_norm": 0.25990426540374756,
+ "learning_rate": 0.0006,
+ "loss": 3.494727373123169,
+ "step": 5964
+ },
+ {
+ "epoch": 82.8527741371778,
+ "grad_norm": 0.23490077257156372,
+ "learning_rate": 0.0006,
+ "loss": 3.5040855407714844,
+ "step": 5965
+ },
+ {
+ "epoch": 82.86675404106597,
+ "grad_norm": 0.20543795824050903,
+ "learning_rate": 0.0006,
+ "loss": 3.4675912857055664,
+ "step": 5966
+ },
+ {
+ "epoch": 82.88073394495413,
+ "grad_norm": 0.21899794042110443,
+ "learning_rate": 0.0006,
+ "loss": 3.4491946697235107,
+ "step": 5967
+ },
+ {
+ "epoch": 82.89471384884229,
+ "grad_norm": 0.22304055094718933,
+ "learning_rate": 0.0006,
+ "loss": 3.4818315505981445,
+ "step": 5968
+ },
+ {
+ "epoch": 82.90869375273044,
+ "grad_norm": 0.2622174024581909,
+ "learning_rate": 0.0006,
+ "loss": 3.475957155227661,
+ "step": 5969
+ },
+ {
+ "epoch": 82.92267365661861,
+ "grad_norm": 0.2829800546169281,
+ "learning_rate": 0.0006,
+ "loss": 3.5397486686706543,
+ "step": 5970
+ },
+ {
+ "epoch": 82.93665356050677,
+ "grad_norm": 0.23583251237869263,
+ "learning_rate": 0.0006,
+ "loss": 3.4955060482025146,
+ "step": 5971
+ },
+ {
+ "epoch": 82.95063346439493,
+ "grad_norm": 0.2033468782901764,
+ "learning_rate": 0.0006,
+ "loss": 3.477050542831421,
+ "step": 5972
+ },
+ {
+ "epoch": 82.9646133682831,
+ "grad_norm": 0.20826712250709534,
+ "learning_rate": 0.0006,
+ "loss": 3.4818544387817383,
+ "step": 5973
+ },
+ {
+ "epoch": 82.97859327217125,
+ "grad_norm": 0.20250852406024933,
+ "learning_rate": 0.0006,
+ "loss": 3.44329571723938,
+ "step": 5974
+ },
+ {
+ "epoch": 82.99257317605941,
+ "grad_norm": 0.21684879064559937,
+ "learning_rate": 0.0006,
+ "loss": 3.482222318649292,
+ "step": 5975
+ },
+ {
+ "epoch": 83.0,
+ "grad_norm": 0.2637452781200409,
+ "learning_rate": 0.0006,
+ "loss": 3.526481866836548,
+ "step": 5976
+ },
+ {
+ "epoch": 83.0,
+ "eval_loss": 3.9838967323303223,
+ "eval_runtime": 45.8267,
+ "eval_samples_per_second": 53.288,
+ "eval_steps_per_second": 3.339,
+ "step": 5976
+ },
+ {
+ "epoch": 83.01397990388816,
+ "grad_norm": 0.2888176143169403,
+ "learning_rate": 0.0006,
+ "loss": 3.409271717071533,
+ "step": 5977
+ },
+ {
+ "epoch": 83.02795980777633,
+ "grad_norm": 0.3692282736301422,
+ "learning_rate": 0.0006,
+ "loss": 3.4353346824645996,
+ "step": 5978
+ },
+ {
+ "epoch": 83.04193971166448,
+ "grad_norm": 0.3694300353527069,
+ "learning_rate": 0.0006,
+ "loss": 3.4257359504699707,
+ "step": 5979
+ },
+ {
+ "epoch": 83.05591961555264,
+ "grad_norm": 0.29487040638923645,
+ "learning_rate": 0.0006,
+ "loss": 3.416271209716797,
+ "step": 5980
+ },
+ {
+ "epoch": 83.06989951944081,
+ "grad_norm": 0.2911352217197418,
+ "learning_rate": 0.0006,
+ "loss": 3.424140214920044,
+ "step": 5981
+ },
+ {
+ "epoch": 83.08387942332897,
+ "grad_norm": 0.35632601380348206,
+ "learning_rate": 0.0006,
+ "loss": 3.4235711097717285,
+ "step": 5982
+ },
+ {
+ "epoch": 83.09785932721712,
+ "grad_norm": 0.4010505676269531,
+ "learning_rate": 0.0006,
+ "loss": 3.462642192840576,
+ "step": 5983
+ },
+ {
+ "epoch": 83.1118392311053,
+ "grad_norm": 0.3426569402217865,
+ "learning_rate": 0.0006,
+ "loss": 3.448690176010132,
+ "step": 5984
+ },
+ {
+ "epoch": 83.12581913499345,
+ "grad_norm": 0.2632673382759094,
+ "learning_rate": 0.0006,
+ "loss": 3.447197914123535,
+ "step": 5985
+ },
+ {
+ "epoch": 83.1397990388816,
+ "grad_norm": 0.2999698221683502,
+ "learning_rate": 0.0006,
+ "loss": 3.4137229919433594,
+ "step": 5986
+ },
+ {
+ "epoch": 83.15377894276976,
+ "grad_norm": 0.3033472001552582,
+ "learning_rate": 0.0006,
+ "loss": 3.4816393852233887,
+ "step": 5987
+ },
+ {
+ "epoch": 83.16775884665793,
+ "grad_norm": 0.2590268850326538,
+ "learning_rate": 0.0006,
+ "loss": 3.4059391021728516,
+ "step": 5988
+ },
+ {
+ "epoch": 83.18173875054609,
+ "grad_norm": 0.2598235607147217,
+ "learning_rate": 0.0006,
+ "loss": 3.447913885116577,
+ "step": 5989
+ },
+ {
+ "epoch": 83.19571865443424,
+ "grad_norm": 0.25087642669677734,
+ "learning_rate": 0.0006,
+ "loss": 3.4645161628723145,
+ "step": 5990
+ },
+ {
+ "epoch": 83.20969855832242,
+ "grad_norm": 0.267760306596756,
+ "learning_rate": 0.0006,
+ "loss": 3.4360952377319336,
+ "step": 5991
+ },
+ {
+ "epoch": 83.22367846221057,
+ "grad_norm": 0.25042274594306946,
+ "learning_rate": 0.0006,
+ "loss": 3.464437961578369,
+ "step": 5992
+ },
+ {
+ "epoch": 83.23765836609873,
+ "grad_norm": 0.22963418066501617,
+ "learning_rate": 0.0006,
+ "loss": 3.421604633331299,
+ "step": 5993
+ },
+ {
+ "epoch": 83.2516382699869,
+ "grad_norm": 0.24857227504253387,
+ "learning_rate": 0.0006,
+ "loss": 3.4228515625,
+ "step": 5994
+ },
+ {
+ "epoch": 83.26561817387505,
+ "grad_norm": 0.24745461344718933,
+ "learning_rate": 0.0006,
+ "loss": 3.463120222091675,
+ "step": 5995
+ },
+ {
+ "epoch": 83.27959807776321,
+ "grad_norm": 0.258258581161499,
+ "learning_rate": 0.0006,
+ "loss": 3.4567341804504395,
+ "step": 5996
+ },
+ {
+ "epoch": 83.29357798165138,
+ "grad_norm": 0.26854267716407776,
+ "learning_rate": 0.0006,
+ "loss": 3.459993839263916,
+ "step": 5997
+ },
+ {
+ "epoch": 83.30755788553954,
+ "grad_norm": 0.253322571516037,
+ "learning_rate": 0.0006,
+ "loss": 3.4329309463500977,
+ "step": 5998
+ },
+ {
+ "epoch": 83.3215377894277,
+ "grad_norm": 0.2596076726913452,
+ "learning_rate": 0.0006,
+ "loss": 3.463113784790039,
+ "step": 5999
+ },
+ {
+ "epoch": 83.33551769331586,
+ "grad_norm": 0.23935553431510925,
+ "learning_rate": 0.0006,
+ "loss": 3.45231556892395,
+ "step": 6000
+ },
+ {
+ "epoch": 83.34949759720402,
+ "grad_norm": 0.23181283473968506,
+ "learning_rate": 0.0006,
+ "loss": 3.4250950813293457,
+ "step": 6001
+ },
+ {
+ "epoch": 83.36347750109218,
+ "grad_norm": 0.22866526246070862,
+ "learning_rate": 0.0006,
+ "loss": 3.451408863067627,
+ "step": 6002
+ },
+ {
+ "epoch": 83.37745740498035,
+ "grad_norm": 0.2585664689540863,
+ "learning_rate": 0.0006,
+ "loss": 3.474940299987793,
+ "step": 6003
+ },
+ {
+ "epoch": 83.3914373088685,
+ "grad_norm": 0.21957920491695404,
+ "learning_rate": 0.0006,
+ "loss": 3.4120378494262695,
+ "step": 6004
+ },
+ {
+ "epoch": 83.40541721275666,
+ "grad_norm": 0.21237598359584808,
+ "learning_rate": 0.0006,
+ "loss": 3.458988666534424,
+ "step": 6005
+ },
+ {
+ "epoch": 83.41939711664482,
+ "grad_norm": 0.21803049743175507,
+ "learning_rate": 0.0006,
+ "loss": 3.436127185821533,
+ "step": 6006
+ },
+ {
+ "epoch": 83.43337702053299,
+ "grad_norm": 0.24005955457687378,
+ "learning_rate": 0.0006,
+ "loss": 3.4540181159973145,
+ "step": 6007
+ },
+ {
+ "epoch": 83.44735692442114,
+ "grad_norm": 0.26444754004478455,
+ "learning_rate": 0.0006,
+ "loss": 3.4646968841552734,
+ "step": 6008
+ },
+ {
+ "epoch": 83.4613368283093,
+ "grad_norm": 0.2504395544528961,
+ "learning_rate": 0.0006,
+ "loss": 3.4380784034729004,
+ "step": 6009
+ },
+ {
+ "epoch": 83.47531673219747,
+ "grad_norm": 0.23231923580169678,
+ "learning_rate": 0.0006,
+ "loss": 3.4435203075408936,
+ "step": 6010
+ },
+ {
+ "epoch": 83.48929663608563,
+ "grad_norm": 0.22733177244663239,
+ "learning_rate": 0.0006,
+ "loss": 3.459223747253418,
+ "step": 6011
+ },
+ {
+ "epoch": 83.50327653997378,
+ "grad_norm": 0.23871523141860962,
+ "learning_rate": 0.0006,
+ "loss": 3.452695369720459,
+ "step": 6012
+ },
+ {
+ "epoch": 83.51725644386195,
+ "grad_norm": 0.26548200845718384,
+ "learning_rate": 0.0006,
+ "loss": 3.4481754302978516,
+ "step": 6013
+ },
+ {
+ "epoch": 83.53123634775011,
+ "grad_norm": 0.2633417248725891,
+ "learning_rate": 0.0006,
+ "loss": 3.469902753829956,
+ "step": 6014
+ },
+ {
+ "epoch": 83.54521625163827,
+ "grad_norm": 0.2338850200176239,
+ "learning_rate": 0.0006,
+ "loss": 3.438602924346924,
+ "step": 6015
+ },
+ {
+ "epoch": 83.55919615552644,
+ "grad_norm": 0.2187591791152954,
+ "learning_rate": 0.0006,
+ "loss": 3.426084280014038,
+ "step": 6016
+ },
+ {
+ "epoch": 83.57317605941459,
+ "grad_norm": 0.2570044994354248,
+ "learning_rate": 0.0006,
+ "loss": 3.4380812644958496,
+ "step": 6017
+ },
+ {
+ "epoch": 83.58715596330275,
+ "grad_norm": 0.25832056999206543,
+ "learning_rate": 0.0006,
+ "loss": 3.45045804977417,
+ "step": 6018
+ },
+ {
+ "epoch": 83.60113586719092,
+ "grad_norm": 0.24552716314792633,
+ "learning_rate": 0.0006,
+ "loss": 3.447704792022705,
+ "step": 6019
+ },
+ {
+ "epoch": 83.61511577107908,
+ "grad_norm": 0.2358967810869217,
+ "learning_rate": 0.0006,
+ "loss": 3.4598300457000732,
+ "step": 6020
+ },
+ {
+ "epoch": 83.62909567496723,
+ "grad_norm": 0.20650409162044525,
+ "learning_rate": 0.0006,
+ "loss": 3.4821555614471436,
+ "step": 6021
+ },
+ {
+ "epoch": 83.6430755788554,
+ "grad_norm": 0.20103590190410614,
+ "learning_rate": 0.0006,
+ "loss": 3.468846082687378,
+ "step": 6022
+ },
+ {
+ "epoch": 83.65705548274356,
+ "grad_norm": 0.20957764983177185,
+ "learning_rate": 0.0006,
+ "loss": 3.4600605964660645,
+ "step": 6023
+ },
+ {
+ "epoch": 83.67103538663171,
+ "grad_norm": 0.21819661557674408,
+ "learning_rate": 0.0006,
+ "loss": 3.4393796920776367,
+ "step": 6024
+ },
+ {
+ "epoch": 83.68501529051987,
+ "grad_norm": 0.23196570575237274,
+ "learning_rate": 0.0006,
+ "loss": 3.452263832092285,
+ "step": 6025
+ },
+ {
+ "epoch": 83.69899519440804,
+ "grad_norm": 0.2700229287147522,
+ "learning_rate": 0.0006,
+ "loss": 3.452803134918213,
+ "step": 6026
+ },
+ {
+ "epoch": 83.7129750982962,
+ "grad_norm": 0.26435309648513794,
+ "learning_rate": 0.0006,
+ "loss": 3.457122802734375,
+ "step": 6027
+ },
+ {
+ "epoch": 83.72695500218435,
+ "grad_norm": 0.24041543900966644,
+ "learning_rate": 0.0006,
+ "loss": 3.455793619155884,
+ "step": 6028
+ },
+ {
+ "epoch": 83.74093490607252,
+ "grad_norm": 0.22590254247188568,
+ "learning_rate": 0.0006,
+ "loss": 3.4643428325653076,
+ "step": 6029
+ },
+ {
+ "epoch": 83.75491480996068,
+ "grad_norm": 0.2043512612581253,
+ "learning_rate": 0.0006,
+ "loss": 3.474919557571411,
+ "step": 6030
+ },
+ {
+ "epoch": 83.76889471384884,
+ "grad_norm": 0.23114001750946045,
+ "learning_rate": 0.0006,
+ "loss": 3.469618797302246,
+ "step": 6031
+ },
+ {
+ "epoch": 83.78287461773701,
+ "grad_norm": 0.24307213723659515,
+ "learning_rate": 0.0006,
+ "loss": 3.44295072555542,
+ "step": 6032
+ },
+ {
+ "epoch": 83.79685452162516,
+ "grad_norm": 0.24907614290714264,
+ "learning_rate": 0.0006,
+ "loss": 3.4820055961608887,
+ "step": 6033
+ },
+ {
+ "epoch": 83.81083442551332,
+ "grad_norm": 0.24758939445018768,
+ "learning_rate": 0.0006,
+ "loss": 3.4528980255126953,
+ "step": 6034
+ },
+ {
+ "epoch": 83.82481432940149,
+ "grad_norm": 0.24556805193424225,
+ "learning_rate": 0.0006,
+ "loss": 3.4928247928619385,
+ "step": 6035
+ },
+ {
+ "epoch": 83.83879423328965,
+ "grad_norm": 0.22058741748332977,
+ "learning_rate": 0.0006,
+ "loss": 3.4515697956085205,
+ "step": 6036
+ },
+ {
+ "epoch": 83.8527741371778,
+ "grad_norm": 0.2287076860666275,
+ "learning_rate": 0.0006,
+ "loss": 3.464742422103882,
+ "step": 6037
+ },
+ {
+ "epoch": 83.86675404106597,
+ "grad_norm": 0.23122717440128326,
+ "learning_rate": 0.0006,
+ "loss": 3.475945472717285,
+ "step": 6038
+ },
+ {
+ "epoch": 83.88073394495413,
+ "grad_norm": 0.23839165270328522,
+ "learning_rate": 0.0006,
+ "loss": 3.486027479171753,
+ "step": 6039
+ },
+ {
+ "epoch": 83.89471384884229,
+ "grad_norm": 0.23857836425304413,
+ "learning_rate": 0.0006,
+ "loss": 3.474921226501465,
+ "step": 6040
+ },
+ {
+ "epoch": 83.90869375273044,
+ "grad_norm": 0.24372349679470062,
+ "learning_rate": 0.0006,
+ "loss": 3.4775476455688477,
+ "step": 6041
+ },
+ {
+ "epoch": 83.92267365661861,
+ "grad_norm": 0.28166019916534424,
+ "learning_rate": 0.0006,
+ "loss": 3.450713634490967,
+ "step": 6042
+ },
+ {
+ "epoch": 83.93665356050677,
+ "grad_norm": 0.27276918292045593,
+ "learning_rate": 0.0006,
+ "loss": 3.4824142456054688,
+ "step": 6043
+ },
+ {
+ "epoch": 83.95063346439493,
+ "grad_norm": 0.2137363702058792,
+ "learning_rate": 0.0006,
+ "loss": 3.4720726013183594,
+ "step": 6044
+ },
+ {
+ "epoch": 83.9646133682831,
+ "grad_norm": 0.21120159327983856,
+ "learning_rate": 0.0006,
+ "loss": 3.5012218952178955,
+ "step": 6045
+ },
+ {
+ "epoch": 83.97859327217125,
+ "grad_norm": 0.22474384307861328,
+ "learning_rate": 0.0006,
+ "loss": 3.460742950439453,
+ "step": 6046
+ },
+ {
+ "epoch": 83.99257317605941,
+ "grad_norm": 0.20441333949565887,
+ "learning_rate": 0.0006,
+ "loss": 3.4822964668273926,
+ "step": 6047
+ },
+ {
+ "epoch": 84.0,
+ "grad_norm": 0.2454686462879181,
+ "learning_rate": 0.0006,
+ "loss": 3.5237345695495605,
+ "step": 6048
+ },
+ {
+ "epoch": 84.0,
+ "eval_loss": 3.9953911304473877,
+ "eval_runtime": 45.8514,
+ "eval_samples_per_second": 53.259,
+ "eval_steps_per_second": 3.337,
+ "step": 6048
+ },
+ {
+ "epoch": 84.01397990388816,
+ "grad_norm": 0.23639939725399017,
+ "learning_rate": 0.0006,
+ "loss": 3.4068121910095215,
+ "step": 6049
+ },
+ {
+ "epoch": 84.02795980777633,
+ "grad_norm": 0.2581193149089813,
+ "learning_rate": 0.0006,
+ "loss": 3.4408299922943115,
+ "step": 6050
+ },
+ {
+ "epoch": 84.04193971166448,
+ "grad_norm": 0.2579401433467865,
+ "learning_rate": 0.0006,
+ "loss": 3.4009571075439453,
+ "step": 6051
+ },
+ {
+ "epoch": 84.05591961555264,
+ "grad_norm": 0.2377995103597641,
+ "learning_rate": 0.0006,
+ "loss": 3.4338529109954834,
+ "step": 6052
+ },
+ {
+ "epoch": 84.06989951944081,
+ "grad_norm": 0.22722864151000977,
+ "learning_rate": 0.0006,
+ "loss": 3.411055564880371,
+ "step": 6053
+ },
+ {
+ "epoch": 84.08387942332897,
+ "grad_norm": 0.2766192555427551,
+ "learning_rate": 0.0006,
+ "loss": 3.4304237365722656,
+ "step": 6054
+ },
+ {
+ "epoch": 84.09785932721712,
+ "grad_norm": 0.2608284652233124,
+ "learning_rate": 0.0006,
+ "loss": 3.444244384765625,
+ "step": 6055
+ },
+ {
+ "epoch": 84.1118392311053,
+ "grad_norm": 0.22354614734649658,
+ "learning_rate": 0.0006,
+ "loss": 3.439541816711426,
+ "step": 6056
+ },
+ {
+ "epoch": 84.12581913499345,
+ "grad_norm": 0.24095603823661804,
+ "learning_rate": 0.0006,
+ "loss": 3.4354658126831055,
+ "step": 6057
+ },
+ {
+ "epoch": 84.1397990388816,
+ "grad_norm": 0.23401515185832977,
+ "learning_rate": 0.0006,
+ "loss": 3.4395503997802734,
+ "step": 6058
+ },
+ {
+ "epoch": 84.15377894276976,
+ "grad_norm": 0.21646054089069366,
+ "learning_rate": 0.0006,
+ "loss": 3.432781457901001,
+ "step": 6059
+ },
+ {
+ "epoch": 84.16775884665793,
+ "grad_norm": 0.22034308314323425,
+ "learning_rate": 0.0006,
+ "loss": 3.406602144241333,
+ "step": 6060
+ },
+ {
+ "epoch": 84.18173875054609,
+ "grad_norm": 0.2310352474451065,
+ "learning_rate": 0.0006,
+ "loss": 3.45137095451355,
+ "step": 6061
+ },
+ {
+ "epoch": 84.19571865443424,
+ "grad_norm": 0.22129112482070923,
+ "learning_rate": 0.0006,
+ "loss": 3.4401423931121826,
+ "step": 6062
+ },
+ {
+ "epoch": 84.20969855832242,
+ "grad_norm": 0.22799579799175262,
+ "learning_rate": 0.0006,
+ "loss": 3.4391798973083496,
+ "step": 6063
+ },
+ {
+ "epoch": 84.22367846221057,
+ "grad_norm": 0.22834676504135132,
+ "learning_rate": 0.0006,
+ "loss": 3.492427349090576,
+ "step": 6064
+ },
+ {
+ "epoch": 84.23765836609873,
+ "grad_norm": 0.22315837442874908,
+ "learning_rate": 0.0006,
+ "loss": 3.4242477416992188,
+ "step": 6065
+ },
+ {
+ "epoch": 84.2516382699869,
+ "grad_norm": 0.22605115175247192,
+ "learning_rate": 0.0006,
+ "loss": 3.441441059112549,
+ "step": 6066
+ },
+ {
+ "epoch": 84.26561817387505,
+ "grad_norm": 0.2410772442817688,
+ "learning_rate": 0.0006,
+ "loss": 3.4162003993988037,
+ "step": 6067
+ },
+ {
+ "epoch": 84.27959807776321,
+ "grad_norm": 0.23363634943962097,
+ "learning_rate": 0.0006,
+ "loss": 3.4367871284484863,
+ "step": 6068
+ },
+ {
+ "epoch": 84.29357798165138,
+ "grad_norm": 0.2501516342163086,
+ "learning_rate": 0.0006,
+ "loss": 3.4679744243621826,
+ "step": 6069
+ },
+ {
+ "epoch": 84.30755788553954,
+ "grad_norm": 0.2761887013912201,
+ "learning_rate": 0.0006,
+ "loss": 3.4481863975524902,
+ "step": 6070
+ },
+ {
+ "epoch": 84.3215377894277,
+ "grad_norm": 0.26753947138786316,
+ "learning_rate": 0.0006,
+ "loss": 3.492464065551758,
+ "step": 6071
+ },
+ {
+ "epoch": 84.33551769331586,
+ "grad_norm": 0.23492486774921417,
+ "learning_rate": 0.0006,
+ "loss": 3.4377055168151855,
+ "step": 6072
+ },
+ {
+ "epoch": 84.34949759720402,
+ "grad_norm": 0.22405743598937988,
+ "learning_rate": 0.0006,
+ "loss": 3.44317626953125,
+ "step": 6073
+ },
+ {
+ "epoch": 84.36347750109218,
+ "grad_norm": 0.262371689081192,
+ "learning_rate": 0.0006,
+ "loss": 3.445984363555908,
+ "step": 6074
+ },
+ {
+ "epoch": 84.37745740498035,
+ "grad_norm": 0.2874908745288849,
+ "learning_rate": 0.0006,
+ "loss": 3.455535411834717,
+ "step": 6075
+ },
+ {
+ "epoch": 84.3914373088685,
+ "grad_norm": 0.2813026010990143,
+ "learning_rate": 0.0006,
+ "loss": 3.450965404510498,
+ "step": 6076
+ },
+ {
+ "epoch": 84.40541721275666,
+ "grad_norm": 0.2511669099330902,
+ "learning_rate": 0.0006,
+ "loss": 3.4422781467437744,
+ "step": 6077
+ },
+ {
+ "epoch": 84.41939711664482,
+ "grad_norm": 0.24031679332256317,
+ "learning_rate": 0.0006,
+ "loss": 3.4646971225738525,
+ "step": 6078
+ },
+ {
+ "epoch": 84.43337702053299,
+ "grad_norm": 0.2375684231519699,
+ "learning_rate": 0.0006,
+ "loss": 3.404259204864502,
+ "step": 6079
+ },
+ {
+ "epoch": 84.44735692442114,
+ "grad_norm": 0.2297784835100174,
+ "learning_rate": 0.0006,
+ "loss": 3.4274559020996094,
+ "step": 6080
+ },
+ {
+ "epoch": 84.4613368283093,
+ "grad_norm": 0.22411473095417023,
+ "learning_rate": 0.0006,
+ "loss": 3.420492172241211,
+ "step": 6081
+ },
+ {
+ "epoch": 84.47531673219747,
+ "grad_norm": 0.23126399517059326,
+ "learning_rate": 0.0006,
+ "loss": 3.4440231323242188,
+ "step": 6082
+ },
+ {
+ "epoch": 84.48929663608563,
+ "grad_norm": 0.2578703761100769,
+ "learning_rate": 0.0006,
+ "loss": 3.419753074645996,
+ "step": 6083
+ },
+ {
+ "epoch": 84.50327653997378,
+ "grad_norm": 0.25254541635513306,
+ "learning_rate": 0.0006,
+ "loss": 3.4504146575927734,
+ "step": 6084
+ },
+ {
+ "epoch": 84.51725644386195,
+ "grad_norm": 0.22324225306510925,
+ "learning_rate": 0.0006,
+ "loss": 3.4860897064208984,
+ "step": 6085
+ },
+ {
+ "epoch": 84.53123634775011,
+ "grad_norm": 0.23084819316864014,
+ "learning_rate": 0.0006,
+ "loss": 3.4693355560302734,
+ "step": 6086
+ },
+ {
+ "epoch": 84.54521625163827,
+ "grad_norm": 0.23229891061782837,
+ "learning_rate": 0.0006,
+ "loss": 3.4350061416625977,
+ "step": 6087
+ },
+ {
+ "epoch": 84.55919615552644,
+ "grad_norm": 0.23634378612041473,
+ "learning_rate": 0.0006,
+ "loss": 3.425060272216797,
+ "step": 6088
+ },
+ {
+ "epoch": 84.57317605941459,
+ "grad_norm": 0.24133262038230896,
+ "learning_rate": 0.0006,
+ "loss": 3.420022487640381,
+ "step": 6089
+ },
+ {
+ "epoch": 84.58715596330275,
+ "grad_norm": 0.2206571102142334,
+ "learning_rate": 0.0006,
+ "loss": 3.4881091117858887,
+ "step": 6090
+ },
+ {
+ "epoch": 84.60113586719092,
+ "grad_norm": 0.21868985891342163,
+ "learning_rate": 0.0006,
+ "loss": 3.444207191467285,
+ "step": 6091
+ },
+ {
+ "epoch": 84.61511577107908,
+ "grad_norm": 0.21661551296710968,
+ "learning_rate": 0.0006,
+ "loss": 3.46708345413208,
+ "step": 6092
+ },
+ {
+ "epoch": 84.62909567496723,
+ "grad_norm": 0.2211335003376007,
+ "learning_rate": 0.0006,
+ "loss": 3.422534465789795,
+ "step": 6093
+ },
+ {
+ "epoch": 84.6430755788554,
+ "grad_norm": 0.23101121187210083,
+ "learning_rate": 0.0006,
+ "loss": 3.4558486938476562,
+ "step": 6094
+ },
+ {
+ "epoch": 84.65705548274356,
+ "grad_norm": 0.21324186027050018,
+ "learning_rate": 0.0006,
+ "loss": 3.488935708999634,
+ "step": 6095
+ },
+ {
+ "epoch": 84.67103538663171,
+ "grad_norm": 0.23262912034988403,
+ "learning_rate": 0.0006,
+ "loss": 3.455625057220459,
+ "step": 6096
+ },
+ {
+ "epoch": 84.68501529051987,
+ "grad_norm": 0.245137020945549,
+ "learning_rate": 0.0006,
+ "loss": 3.459805727005005,
+ "step": 6097
+ },
+ {
+ "epoch": 84.69899519440804,
+ "grad_norm": 0.24005620181560516,
+ "learning_rate": 0.0006,
+ "loss": 3.4524760246276855,
+ "step": 6098
+ },
+ {
+ "epoch": 84.7129750982962,
+ "grad_norm": 0.2383408397436142,
+ "learning_rate": 0.0006,
+ "loss": 3.482253074645996,
+ "step": 6099
+ },
+ {
+ "epoch": 84.72695500218435,
+ "grad_norm": 0.21188686788082123,
+ "learning_rate": 0.0006,
+ "loss": 3.4336321353912354,
+ "step": 6100
+ },
+ {
+ "epoch": 84.74093490607252,
+ "grad_norm": 0.20706120133399963,
+ "learning_rate": 0.0006,
+ "loss": 3.4603681564331055,
+ "step": 6101
+ },
+ {
+ "epoch": 84.75491480996068,
+ "grad_norm": 0.2089851349592209,
+ "learning_rate": 0.0006,
+ "loss": 3.433825969696045,
+ "step": 6102
+ },
+ {
+ "epoch": 84.76889471384884,
+ "grad_norm": 0.24237141013145447,
+ "learning_rate": 0.0006,
+ "loss": 3.4863271713256836,
+ "step": 6103
+ },
+ {
+ "epoch": 84.78287461773701,
+ "grad_norm": 0.24052679538726807,
+ "learning_rate": 0.0006,
+ "loss": 3.4620628356933594,
+ "step": 6104
+ },
+ {
+ "epoch": 84.79685452162516,
+ "grad_norm": 0.21260327100753784,
+ "learning_rate": 0.0006,
+ "loss": 3.4749603271484375,
+ "step": 6105
+ },
+ {
+ "epoch": 84.81083442551332,
+ "grad_norm": 0.21502383053302765,
+ "learning_rate": 0.0006,
+ "loss": 3.47800350189209,
+ "step": 6106
+ },
+ {
+ "epoch": 84.82481432940149,
+ "grad_norm": 0.2255013883113861,
+ "learning_rate": 0.0006,
+ "loss": 3.479379177093506,
+ "step": 6107
+ },
+ {
+ "epoch": 84.83879423328965,
+ "grad_norm": 0.21322280168533325,
+ "learning_rate": 0.0006,
+ "loss": 3.4761860370635986,
+ "step": 6108
+ },
+ {
+ "epoch": 84.8527741371778,
+ "grad_norm": 0.21868883073329926,
+ "learning_rate": 0.0006,
+ "loss": 3.4408018589019775,
+ "step": 6109
+ },
+ {
+ "epoch": 84.86675404106597,
+ "grad_norm": 0.24075059592723846,
+ "learning_rate": 0.0006,
+ "loss": 3.491424798965454,
+ "step": 6110
+ },
+ {
+ "epoch": 84.88073394495413,
+ "grad_norm": 0.22453387081623077,
+ "learning_rate": 0.0006,
+ "loss": 3.473700523376465,
+ "step": 6111
+ },
+ {
+ "epoch": 84.89471384884229,
+ "grad_norm": 0.21405141055583954,
+ "learning_rate": 0.0006,
+ "loss": 3.5045337677001953,
+ "step": 6112
+ },
+ {
+ "epoch": 84.90869375273044,
+ "grad_norm": 0.22792331874370575,
+ "learning_rate": 0.0006,
+ "loss": 3.459500312805176,
+ "step": 6113
+ },
+ {
+ "epoch": 84.92267365661861,
+ "grad_norm": 0.23756900429725647,
+ "learning_rate": 0.0006,
+ "loss": 3.4716384410858154,
+ "step": 6114
+ },
+ {
+ "epoch": 84.93665356050677,
+ "grad_norm": 0.23942020535469055,
+ "learning_rate": 0.0006,
+ "loss": 3.458301544189453,
+ "step": 6115
+ },
+ {
+ "epoch": 84.95063346439493,
+ "grad_norm": 0.2668362855911255,
+ "learning_rate": 0.0006,
+ "loss": 3.4793195724487305,
+ "step": 6116
+ },
+ {
+ "epoch": 84.9646133682831,
+ "grad_norm": 0.2655593454837799,
+ "learning_rate": 0.0006,
+ "loss": 3.461183547973633,
+ "step": 6117
+ },
+ {
+ "epoch": 84.97859327217125,
+ "grad_norm": 0.23327142000198364,
+ "learning_rate": 0.0006,
+ "loss": 3.488638401031494,
+ "step": 6118
+ },
+ {
+ "epoch": 84.99257317605941,
+ "grad_norm": 0.21170541644096375,
+ "learning_rate": 0.0006,
+ "loss": 3.4597835540771484,
+ "step": 6119
+ },
+ {
+ "epoch": 85.0,
+ "grad_norm": 0.25858765840530396,
+ "learning_rate": 0.0006,
+ "loss": 3.4496002197265625,
+ "step": 6120
+ },
+ {
+ "epoch": 85.0,
+ "eval_loss": 3.9907591342926025,
+ "eval_runtime": 46.7196,
+ "eval_samples_per_second": 52.269,
+ "eval_steps_per_second": 3.275,
+ "step": 6120
+ },
+ {
+ "epoch": 85.01397990388816,
+ "grad_norm": 0.25001025199890137,
+ "learning_rate": 0.0006,
+ "loss": 3.408668041229248,
+ "step": 6121
+ },
+ {
+ "epoch": 85.02795980777633,
+ "grad_norm": 0.27951815724372864,
+ "learning_rate": 0.0006,
+ "loss": 3.4662365913391113,
+ "step": 6122
+ },
+ {
+ "epoch": 85.04193971166448,
+ "grad_norm": 0.3308251202106476,
+ "learning_rate": 0.0006,
+ "loss": 3.445281982421875,
+ "step": 6123
+ },
+ {
+ "epoch": 85.05591961555264,
+ "grad_norm": 0.38616496324539185,
+ "learning_rate": 0.0006,
+ "loss": 3.420867443084717,
+ "step": 6124
+ },
+ {
+ "epoch": 85.06989951944081,
+ "grad_norm": 0.34203988313674927,
+ "learning_rate": 0.0006,
+ "loss": 3.4531023502349854,
+ "step": 6125
+ },
+ {
+ "epoch": 85.08387942332897,
+ "grad_norm": 0.2681678533554077,
+ "learning_rate": 0.0006,
+ "loss": 3.452749252319336,
+ "step": 6126
+ },
+ {
+ "epoch": 85.09785932721712,
+ "grad_norm": 0.3256039619445801,
+ "learning_rate": 0.0006,
+ "loss": 3.428740978240967,
+ "step": 6127
+ },
+ {
+ "epoch": 85.1118392311053,
+ "grad_norm": 0.35335347056388855,
+ "learning_rate": 0.0006,
+ "loss": 3.438882827758789,
+ "step": 6128
+ },
+ {
+ "epoch": 85.12581913499345,
+ "grad_norm": 0.3345780074596405,
+ "learning_rate": 0.0006,
+ "loss": 3.454054832458496,
+ "step": 6129
+ },
+ {
+ "epoch": 85.1397990388816,
+ "grad_norm": 0.26127031445503235,
+ "learning_rate": 0.0006,
+ "loss": 3.468048572540283,
+ "step": 6130
+ },
+ {
+ "epoch": 85.15377894276976,
+ "grad_norm": 0.24848037958145142,
+ "learning_rate": 0.0006,
+ "loss": 3.452026844024658,
+ "step": 6131
+ },
+ {
+ "epoch": 85.16775884665793,
+ "grad_norm": 0.23380406200885773,
+ "learning_rate": 0.0006,
+ "loss": 3.4506797790527344,
+ "step": 6132
+ },
+ {
+ "epoch": 85.18173875054609,
+ "grad_norm": 0.23879839479923248,
+ "learning_rate": 0.0006,
+ "loss": 3.451416492462158,
+ "step": 6133
+ },
+ {
+ "epoch": 85.19571865443424,
+ "grad_norm": 0.25148293375968933,
+ "learning_rate": 0.0006,
+ "loss": 3.4010143280029297,
+ "step": 6134
+ },
+ {
+ "epoch": 85.20969855832242,
+ "grad_norm": 0.22815518081188202,
+ "learning_rate": 0.0006,
+ "loss": 3.430312156677246,
+ "step": 6135
+ },
+ {
+ "epoch": 85.22367846221057,
+ "grad_norm": 0.22946542501449585,
+ "learning_rate": 0.0006,
+ "loss": 3.4514856338500977,
+ "step": 6136
+ },
+ {
+ "epoch": 85.23765836609873,
+ "grad_norm": 0.2776675522327423,
+ "learning_rate": 0.0006,
+ "loss": 3.4610185623168945,
+ "step": 6137
+ },
+ {
+ "epoch": 85.2516382699869,
+ "grad_norm": 0.2937948703765869,
+ "learning_rate": 0.0006,
+ "loss": 3.411609172821045,
+ "step": 6138
+ },
+ {
+ "epoch": 85.26561817387505,
+ "grad_norm": 0.25498732924461365,
+ "learning_rate": 0.0006,
+ "loss": 3.4253973960876465,
+ "step": 6139
+ },
+ {
+ "epoch": 85.27959807776321,
+ "grad_norm": 0.22892245650291443,
+ "learning_rate": 0.0006,
+ "loss": 3.4420440196990967,
+ "step": 6140
+ },
+ {
+ "epoch": 85.29357798165138,
+ "grad_norm": 0.28531017899513245,
+ "learning_rate": 0.0006,
+ "loss": 3.423523426055908,
+ "step": 6141
+ },
+ {
+ "epoch": 85.30755788553954,
+ "grad_norm": 0.27804628014564514,
+ "learning_rate": 0.0006,
+ "loss": 3.4334774017333984,
+ "step": 6142
+ },
+ {
+ "epoch": 85.3215377894277,
+ "grad_norm": 0.23773743212223053,
+ "learning_rate": 0.0006,
+ "loss": 3.430731773376465,
+ "step": 6143
+ },
+ {
+ "epoch": 85.33551769331586,
+ "grad_norm": 0.2544757127761841,
+ "learning_rate": 0.0006,
+ "loss": 3.434880495071411,
+ "step": 6144
+ },
+ {
+ "epoch": 85.34949759720402,
+ "grad_norm": 0.2462168037891388,
+ "learning_rate": 0.0006,
+ "loss": 3.4443912506103516,
+ "step": 6145
+ },
+ {
+ "epoch": 85.36347750109218,
+ "grad_norm": 0.2208261936903,
+ "learning_rate": 0.0006,
+ "loss": 3.428115129470825,
+ "step": 6146
+ },
+ {
+ "epoch": 85.37745740498035,
+ "grad_norm": 0.25137123465538025,
+ "learning_rate": 0.0006,
+ "loss": 3.419116973876953,
+ "step": 6147
+ },
+ {
+ "epoch": 85.3914373088685,
+ "grad_norm": 0.24375031888484955,
+ "learning_rate": 0.0006,
+ "loss": 3.451228141784668,
+ "step": 6148
+ },
+ {
+ "epoch": 85.40541721275666,
+ "grad_norm": 0.2252039909362793,
+ "learning_rate": 0.0006,
+ "loss": 3.4388835430145264,
+ "step": 6149
+ },
+ {
+ "epoch": 85.41939711664482,
+ "grad_norm": 0.23697529733181,
+ "learning_rate": 0.0006,
+ "loss": 3.447420597076416,
+ "step": 6150
+ },
+ {
+ "epoch": 85.43337702053299,
+ "grad_norm": 0.2558874189853668,
+ "learning_rate": 0.0006,
+ "loss": 3.4357810020446777,
+ "step": 6151
+ },
+ {
+ "epoch": 85.44735692442114,
+ "grad_norm": 0.27266883850097656,
+ "learning_rate": 0.0006,
+ "loss": 3.4142231941223145,
+ "step": 6152
+ },
+ {
+ "epoch": 85.4613368283093,
+ "grad_norm": 0.25111037492752075,
+ "learning_rate": 0.0006,
+ "loss": 3.444758892059326,
+ "step": 6153
+ },
+ {
+ "epoch": 85.47531673219747,
+ "grad_norm": 0.23968860507011414,
+ "learning_rate": 0.0006,
+ "loss": 3.4785890579223633,
+ "step": 6154
+ },
+ {
+ "epoch": 85.48929663608563,
+ "grad_norm": 0.25013360381126404,
+ "learning_rate": 0.0006,
+ "loss": 3.4348931312561035,
+ "step": 6155
+ },
+ {
+ "epoch": 85.50327653997378,
+ "grad_norm": 0.2417520433664322,
+ "learning_rate": 0.0006,
+ "loss": 3.468465805053711,
+ "step": 6156
+ },
+ {
+ "epoch": 85.51725644386195,
+ "grad_norm": 0.25971105694770813,
+ "learning_rate": 0.0006,
+ "loss": 3.45487117767334,
+ "step": 6157
+ },
+ {
+ "epoch": 85.53123634775011,
+ "grad_norm": 0.2513342797756195,
+ "learning_rate": 0.0006,
+ "loss": 3.4282164573669434,
+ "step": 6158
+ },
+ {
+ "epoch": 85.54521625163827,
+ "grad_norm": 0.26253822445869446,
+ "learning_rate": 0.0006,
+ "loss": 3.448113441467285,
+ "step": 6159
+ },
+ {
+ "epoch": 85.55919615552644,
+ "grad_norm": 0.2234651893377304,
+ "learning_rate": 0.0006,
+ "loss": 3.449909210205078,
+ "step": 6160
+ },
+ {
+ "epoch": 85.57317605941459,
+ "grad_norm": 0.2503814995288849,
+ "learning_rate": 0.0006,
+ "loss": 3.450794219970703,
+ "step": 6161
+ },
+ {
+ "epoch": 85.58715596330275,
+ "grad_norm": 0.3087758719921112,
+ "learning_rate": 0.0006,
+ "loss": 3.447343349456787,
+ "step": 6162
+ },
+ {
+ "epoch": 85.60113586719092,
+ "grad_norm": 0.3024158179759979,
+ "learning_rate": 0.0006,
+ "loss": 3.463745594024658,
+ "step": 6163
+ },
+ {
+ "epoch": 85.61511577107908,
+ "grad_norm": 0.2416113317012787,
+ "learning_rate": 0.0006,
+ "loss": 3.4399218559265137,
+ "step": 6164
+ },
+ {
+ "epoch": 85.62909567496723,
+ "grad_norm": 0.24341659247875214,
+ "learning_rate": 0.0006,
+ "loss": 3.434213399887085,
+ "step": 6165
+ },
+ {
+ "epoch": 85.6430755788554,
+ "grad_norm": 0.26014256477355957,
+ "learning_rate": 0.0006,
+ "loss": 3.472182273864746,
+ "step": 6166
+ },
+ {
+ "epoch": 85.65705548274356,
+ "grad_norm": 0.23963001370429993,
+ "learning_rate": 0.0006,
+ "loss": 3.469517230987549,
+ "step": 6167
+ },
+ {
+ "epoch": 85.67103538663171,
+ "grad_norm": 0.22674021124839783,
+ "learning_rate": 0.0006,
+ "loss": 3.479959011077881,
+ "step": 6168
+ },
+ {
+ "epoch": 85.68501529051987,
+ "grad_norm": 0.20710913836956024,
+ "learning_rate": 0.0006,
+ "loss": 3.480604887008667,
+ "step": 6169
+ },
+ {
+ "epoch": 85.69899519440804,
+ "grad_norm": 0.21589986979961395,
+ "learning_rate": 0.0006,
+ "loss": 3.469245672225952,
+ "step": 6170
+ },
+ {
+ "epoch": 85.7129750982962,
+ "grad_norm": 0.23213276267051697,
+ "learning_rate": 0.0006,
+ "loss": 3.4860196113586426,
+ "step": 6171
+ },
+ {
+ "epoch": 85.72695500218435,
+ "grad_norm": 0.2420436143875122,
+ "learning_rate": 0.0006,
+ "loss": 3.4592981338500977,
+ "step": 6172
+ },
+ {
+ "epoch": 85.74093490607252,
+ "grad_norm": 0.238332599401474,
+ "learning_rate": 0.0006,
+ "loss": 3.4611167907714844,
+ "step": 6173
+ },
+ {
+ "epoch": 85.75491480996068,
+ "grad_norm": 0.24084614217281342,
+ "learning_rate": 0.0006,
+ "loss": 3.453734874725342,
+ "step": 6174
+ },
+ {
+ "epoch": 85.76889471384884,
+ "grad_norm": 0.24251829087734222,
+ "learning_rate": 0.0006,
+ "loss": 3.4667110443115234,
+ "step": 6175
+ },
+ {
+ "epoch": 85.78287461773701,
+ "grad_norm": 0.2444705069065094,
+ "learning_rate": 0.0006,
+ "loss": 3.4690022468566895,
+ "step": 6176
+ },
+ {
+ "epoch": 85.79685452162516,
+ "grad_norm": 0.2430824637413025,
+ "learning_rate": 0.0006,
+ "loss": 3.4224982261657715,
+ "step": 6177
+ },
+ {
+ "epoch": 85.81083442551332,
+ "grad_norm": 0.2261204868555069,
+ "learning_rate": 0.0006,
+ "loss": 3.438565731048584,
+ "step": 6178
+ },
+ {
+ "epoch": 85.82481432940149,
+ "grad_norm": 0.24399994313716888,
+ "learning_rate": 0.0006,
+ "loss": 3.4490773677825928,
+ "step": 6179
+ },
+ {
+ "epoch": 85.83879423328965,
+ "grad_norm": 0.2316661775112152,
+ "learning_rate": 0.0006,
+ "loss": 3.4330191612243652,
+ "step": 6180
+ },
+ {
+ "epoch": 85.8527741371778,
+ "grad_norm": 0.2188100963830948,
+ "learning_rate": 0.0006,
+ "loss": 3.4233832359313965,
+ "step": 6181
+ },
+ {
+ "epoch": 85.86675404106597,
+ "grad_norm": 0.24287547171115875,
+ "learning_rate": 0.0006,
+ "loss": 3.48030948638916,
+ "step": 6182
+ },
+ {
+ "epoch": 85.88073394495413,
+ "grad_norm": 0.24130523204803467,
+ "learning_rate": 0.0006,
+ "loss": 3.4757492542266846,
+ "step": 6183
+ },
+ {
+ "epoch": 85.89471384884229,
+ "grad_norm": 0.2325134128332138,
+ "learning_rate": 0.0006,
+ "loss": 3.4519848823547363,
+ "step": 6184
+ },
+ {
+ "epoch": 85.90869375273044,
+ "grad_norm": 0.23389047384262085,
+ "learning_rate": 0.0006,
+ "loss": 3.450676679611206,
+ "step": 6185
+ },
+ {
+ "epoch": 85.92267365661861,
+ "grad_norm": 0.2409949004650116,
+ "learning_rate": 0.0006,
+ "loss": 3.466392993927002,
+ "step": 6186
+ },
+ {
+ "epoch": 85.93665356050677,
+ "grad_norm": 0.2111821174621582,
+ "learning_rate": 0.0006,
+ "loss": 3.4553070068359375,
+ "step": 6187
+ },
+ {
+ "epoch": 85.95063346439493,
+ "grad_norm": 0.22436438500881195,
+ "learning_rate": 0.0006,
+ "loss": 3.445744752883911,
+ "step": 6188
+ },
+ {
+ "epoch": 85.9646133682831,
+ "grad_norm": 0.26781001687049866,
+ "learning_rate": 0.0006,
+ "loss": 3.482301712036133,
+ "step": 6189
+ },
+ {
+ "epoch": 85.97859327217125,
+ "grad_norm": 0.2733628749847412,
+ "learning_rate": 0.0006,
+ "loss": 3.4652910232543945,
+ "step": 6190
+ },
+ {
+ "epoch": 85.99257317605941,
+ "grad_norm": 0.25800710916519165,
+ "learning_rate": 0.0006,
+ "loss": 3.4839513301849365,
+ "step": 6191
+ },
+ {
+ "epoch": 86.0,
+ "grad_norm": 0.26130056381225586,
+ "learning_rate": 0.0006,
+ "loss": 3.4895389080047607,
+ "step": 6192
+ },
+ {
+ "epoch": 86.0,
+ "eval_loss": 4.000945568084717,
+ "eval_runtime": 46.0157,
+ "eval_samples_per_second": 53.069,
+ "eval_steps_per_second": 3.325,
+ "step": 6192
+ },
+ {
+ "epoch": 86.01397990388816,
+ "grad_norm": 0.23707960546016693,
+ "learning_rate": 0.0006,
+ "loss": 3.4757728576660156,
+ "step": 6193
+ },
+ {
+ "epoch": 86.02795980777633,
+ "grad_norm": 0.2764144241809845,
+ "learning_rate": 0.0006,
+ "loss": 3.42104434967041,
+ "step": 6194
+ },
+ {
+ "epoch": 86.04193971166448,
+ "grad_norm": 0.35273146629333496,
+ "learning_rate": 0.0006,
+ "loss": 3.4807112216949463,
+ "step": 6195
+ },
+ {
+ "epoch": 86.05591961555264,
+ "grad_norm": 0.3258572220802307,
+ "learning_rate": 0.0006,
+ "loss": 3.403010368347168,
+ "step": 6196
+ },
+ {
+ "epoch": 86.06989951944081,
+ "grad_norm": 0.24783624708652496,
+ "learning_rate": 0.0006,
+ "loss": 3.4262008666992188,
+ "step": 6197
+ },
+ {
+ "epoch": 86.08387942332897,
+ "grad_norm": 0.2660251259803772,
+ "learning_rate": 0.0006,
+ "loss": 3.4516983032226562,
+ "step": 6198
+ },
+ {
+ "epoch": 86.09785932721712,
+ "grad_norm": 0.3270852863788605,
+ "learning_rate": 0.0006,
+ "loss": 3.389641761779785,
+ "step": 6199
+ },
+ {
+ "epoch": 86.1118392311053,
+ "grad_norm": 0.2954437732696533,
+ "learning_rate": 0.0006,
+ "loss": 3.4136974811553955,
+ "step": 6200
+ },
+ {
+ "epoch": 86.12581913499345,
+ "grad_norm": 0.2529906630516052,
+ "learning_rate": 0.0006,
+ "loss": 3.460862636566162,
+ "step": 6201
+ },
+ {
+ "epoch": 86.1397990388816,
+ "grad_norm": 0.26711413264274597,
+ "learning_rate": 0.0006,
+ "loss": 3.4429545402526855,
+ "step": 6202
+ },
+ {
+ "epoch": 86.15377894276976,
+ "grad_norm": 0.2965209484100342,
+ "learning_rate": 0.0006,
+ "loss": 3.4389548301696777,
+ "step": 6203
+ },
+ {
+ "epoch": 86.16775884665793,
+ "grad_norm": 0.22617623209953308,
+ "learning_rate": 0.0006,
+ "loss": 3.4105193614959717,
+ "step": 6204
+ },
+ {
+ "epoch": 86.18173875054609,
+ "grad_norm": 0.3065163791179657,
+ "learning_rate": 0.0006,
+ "loss": 3.4296300411224365,
+ "step": 6205
+ },
+ {
+ "epoch": 86.19571865443424,
+ "grad_norm": 0.3704215884208679,
+ "learning_rate": 0.0006,
+ "loss": 3.4289116859436035,
+ "step": 6206
+ },
+ {
+ "epoch": 86.20969855832242,
+ "grad_norm": 0.31153222918510437,
+ "learning_rate": 0.0006,
+ "loss": 3.4390859603881836,
+ "step": 6207
+ },
+ {
+ "epoch": 86.22367846221057,
+ "grad_norm": 0.22702480852603912,
+ "learning_rate": 0.0006,
+ "loss": 3.383817672729492,
+ "step": 6208
+ },
+ {
+ "epoch": 86.23765836609873,
+ "grad_norm": 0.28542056679725647,
+ "learning_rate": 0.0006,
+ "loss": 3.4279141426086426,
+ "step": 6209
+ },
+ {
+ "epoch": 86.2516382699869,
+ "grad_norm": 0.3165401816368103,
+ "learning_rate": 0.0006,
+ "loss": 3.4489288330078125,
+ "step": 6210
+ },
+ {
+ "epoch": 86.26561817387505,
+ "grad_norm": 0.2535671293735504,
+ "learning_rate": 0.0006,
+ "loss": 3.4294838905334473,
+ "step": 6211
+ },
+ {
+ "epoch": 86.27959807776321,
+ "grad_norm": 0.22173726558685303,
+ "learning_rate": 0.0006,
+ "loss": 3.426486015319824,
+ "step": 6212
+ },
+ {
+ "epoch": 86.29357798165138,
+ "grad_norm": 0.2316059023141861,
+ "learning_rate": 0.0006,
+ "loss": 3.4588875770568848,
+ "step": 6213
+ },
+ {
+ "epoch": 86.30755788553954,
+ "grad_norm": 0.27897709608078003,
+ "learning_rate": 0.0006,
+ "loss": 3.4686155319213867,
+ "step": 6214
+ },
+ {
+ "epoch": 86.3215377894277,
+ "grad_norm": 0.25086233019828796,
+ "learning_rate": 0.0006,
+ "loss": 3.446758270263672,
+ "step": 6215
+ },
+ {
+ "epoch": 86.33551769331586,
+ "grad_norm": 0.23055854439735413,
+ "learning_rate": 0.0006,
+ "loss": 3.4350295066833496,
+ "step": 6216
+ },
+ {
+ "epoch": 86.34949759720402,
+ "grad_norm": 0.23594850301742554,
+ "learning_rate": 0.0006,
+ "loss": 3.4460220336914062,
+ "step": 6217
+ },
+ {
+ "epoch": 86.36347750109218,
+ "grad_norm": 0.23999659717082977,
+ "learning_rate": 0.0006,
+ "loss": 3.453679084777832,
+ "step": 6218
+ },
+ {
+ "epoch": 86.37745740498035,
+ "grad_norm": 0.22812359035015106,
+ "learning_rate": 0.0006,
+ "loss": 3.4583206176757812,
+ "step": 6219
+ },
+ {
+ "epoch": 86.3914373088685,
+ "grad_norm": 0.2186255306005478,
+ "learning_rate": 0.0006,
+ "loss": 3.4447624683380127,
+ "step": 6220
+ },
+ {
+ "epoch": 86.40541721275666,
+ "grad_norm": 0.2433556765317917,
+ "learning_rate": 0.0006,
+ "loss": 3.4328105449676514,
+ "step": 6221
+ },
+ {
+ "epoch": 86.41939711664482,
+ "grad_norm": 0.2386074811220169,
+ "learning_rate": 0.0006,
+ "loss": 3.4535934925079346,
+ "step": 6222
+ },
+ {
+ "epoch": 86.43337702053299,
+ "grad_norm": 0.20723499357700348,
+ "learning_rate": 0.0006,
+ "loss": 3.450345516204834,
+ "step": 6223
+ },
+ {
+ "epoch": 86.44735692442114,
+ "grad_norm": 0.22816963493824005,
+ "learning_rate": 0.0006,
+ "loss": 3.423295497894287,
+ "step": 6224
+ },
+ {
+ "epoch": 86.4613368283093,
+ "grad_norm": 0.22962307929992676,
+ "learning_rate": 0.0006,
+ "loss": 3.45308256149292,
+ "step": 6225
+ },
+ {
+ "epoch": 86.47531673219747,
+ "grad_norm": 0.2421693354845047,
+ "learning_rate": 0.0006,
+ "loss": 3.426295757293701,
+ "step": 6226
+ },
+ {
+ "epoch": 86.48929663608563,
+ "grad_norm": 0.24205337464809418,
+ "learning_rate": 0.0006,
+ "loss": 3.462637424468994,
+ "step": 6227
+ },
+ {
+ "epoch": 86.50327653997378,
+ "grad_norm": 0.22262844443321228,
+ "learning_rate": 0.0006,
+ "loss": 3.4503636360168457,
+ "step": 6228
+ },
+ {
+ "epoch": 86.51725644386195,
+ "grad_norm": 0.2236059308052063,
+ "learning_rate": 0.0006,
+ "loss": 3.4362423419952393,
+ "step": 6229
+ },
+ {
+ "epoch": 86.53123634775011,
+ "grad_norm": 0.2580125033855438,
+ "learning_rate": 0.0006,
+ "loss": 3.4705324172973633,
+ "step": 6230
+ },
+ {
+ "epoch": 86.54521625163827,
+ "grad_norm": 0.22285981476306915,
+ "learning_rate": 0.0006,
+ "loss": 3.406367301940918,
+ "step": 6231
+ },
+ {
+ "epoch": 86.55919615552644,
+ "grad_norm": 0.2187017947435379,
+ "learning_rate": 0.0006,
+ "loss": 3.471634864807129,
+ "step": 6232
+ },
+ {
+ "epoch": 86.57317605941459,
+ "grad_norm": 0.23384198546409607,
+ "learning_rate": 0.0006,
+ "loss": 3.4251890182495117,
+ "step": 6233
+ },
+ {
+ "epoch": 86.58715596330275,
+ "grad_norm": 0.22788184881210327,
+ "learning_rate": 0.0006,
+ "loss": 3.445756673812866,
+ "step": 6234
+ },
+ {
+ "epoch": 86.60113586719092,
+ "grad_norm": 0.2567905783653259,
+ "learning_rate": 0.0006,
+ "loss": 3.5046191215515137,
+ "step": 6235
+ },
+ {
+ "epoch": 86.61511577107908,
+ "grad_norm": 0.2762927711009979,
+ "learning_rate": 0.0006,
+ "loss": 3.4604568481445312,
+ "step": 6236
+ },
+ {
+ "epoch": 86.62909567496723,
+ "grad_norm": 0.23241275548934937,
+ "learning_rate": 0.0006,
+ "loss": 3.4507508277893066,
+ "step": 6237
+ },
+ {
+ "epoch": 86.6430755788554,
+ "grad_norm": 0.20948687195777893,
+ "learning_rate": 0.0006,
+ "loss": 3.427971601486206,
+ "step": 6238
+ },
+ {
+ "epoch": 86.65705548274356,
+ "grad_norm": 0.22805556654930115,
+ "learning_rate": 0.0006,
+ "loss": 3.430675506591797,
+ "step": 6239
+ },
+ {
+ "epoch": 86.67103538663171,
+ "grad_norm": 0.23048850893974304,
+ "learning_rate": 0.0006,
+ "loss": 3.4266695976257324,
+ "step": 6240
+ },
+ {
+ "epoch": 86.68501529051987,
+ "grad_norm": 0.2140568345785141,
+ "learning_rate": 0.0006,
+ "loss": 3.4591073989868164,
+ "step": 6241
+ },
+ {
+ "epoch": 86.69899519440804,
+ "grad_norm": 0.21846334636211395,
+ "learning_rate": 0.0006,
+ "loss": 3.4366419315338135,
+ "step": 6242
+ },
+ {
+ "epoch": 86.7129750982962,
+ "grad_norm": 0.2556895911693573,
+ "learning_rate": 0.0006,
+ "loss": 3.489287853240967,
+ "step": 6243
+ },
+ {
+ "epoch": 86.72695500218435,
+ "grad_norm": 0.2661151587963104,
+ "learning_rate": 0.0006,
+ "loss": 3.458925485610962,
+ "step": 6244
+ },
+ {
+ "epoch": 86.74093490607252,
+ "grad_norm": 0.25377899408340454,
+ "learning_rate": 0.0006,
+ "loss": 3.467498779296875,
+ "step": 6245
+ },
+ {
+ "epoch": 86.75491480996068,
+ "grad_norm": 0.22298671305179596,
+ "learning_rate": 0.0006,
+ "loss": 3.435739517211914,
+ "step": 6246
+ },
+ {
+ "epoch": 86.76889471384884,
+ "grad_norm": 0.21926400065422058,
+ "learning_rate": 0.0006,
+ "loss": 3.470432996749878,
+ "step": 6247
+ },
+ {
+ "epoch": 86.78287461773701,
+ "grad_norm": 0.25376564264297485,
+ "learning_rate": 0.0006,
+ "loss": 3.485386371612549,
+ "step": 6248
+ },
+ {
+ "epoch": 86.79685452162516,
+ "grad_norm": 0.2282877415418625,
+ "learning_rate": 0.0006,
+ "loss": 3.480099678039551,
+ "step": 6249
+ },
+ {
+ "epoch": 86.81083442551332,
+ "grad_norm": 0.22524423897266388,
+ "learning_rate": 0.0006,
+ "loss": 3.4317450523376465,
+ "step": 6250
+ },
+ {
+ "epoch": 86.82481432940149,
+ "grad_norm": 0.19947095215320587,
+ "learning_rate": 0.0006,
+ "loss": 3.4561359882354736,
+ "step": 6251
+ },
+ {
+ "epoch": 86.83879423328965,
+ "grad_norm": 0.225057914853096,
+ "learning_rate": 0.0006,
+ "loss": 3.4447779655456543,
+ "step": 6252
+ },
+ {
+ "epoch": 86.8527741371778,
+ "grad_norm": 0.23058123886585236,
+ "learning_rate": 0.0006,
+ "loss": 3.4552550315856934,
+ "step": 6253
+ },
+ {
+ "epoch": 86.86675404106597,
+ "grad_norm": 0.22090156376361847,
+ "learning_rate": 0.0006,
+ "loss": 3.462661027908325,
+ "step": 6254
+ },
+ {
+ "epoch": 86.88073394495413,
+ "grad_norm": 0.214723140001297,
+ "learning_rate": 0.0006,
+ "loss": 3.4558322429656982,
+ "step": 6255
+ },
+ {
+ "epoch": 86.89471384884229,
+ "grad_norm": 0.22168223559856415,
+ "learning_rate": 0.0006,
+ "loss": 3.441250801086426,
+ "step": 6256
+ },
+ {
+ "epoch": 86.90869375273044,
+ "grad_norm": 0.21010933816432953,
+ "learning_rate": 0.0006,
+ "loss": 3.4355521202087402,
+ "step": 6257
+ },
+ {
+ "epoch": 86.92267365661861,
+ "grad_norm": 0.21967823803424835,
+ "learning_rate": 0.0006,
+ "loss": 3.4233269691467285,
+ "step": 6258
+ },
+ {
+ "epoch": 86.93665356050677,
+ "grad_norm": 0.22320227324962616,
+ "learning_rate": 0.0006,
+ "loss": 3.4550540447235107,
+ "step": 6259
+ },
+ {
+ "epoch": 86.95063346439493,
+ "grad_norm": 0.22877629101276398,
+ "learning_rate": 0.0006,
+ "loss": 3.46563720703125,
+ "step": 6260
+ },
+ {
+ "epoch": 86.9646133682831,
+ "grad_norm": 0.2401096075773239,
+ "learning_rate": 0.0006,
+ "loss": 3.463639259338379,
+ "step": 6261
+ },
+ {
+ "epoch": 86.97859327217125,
+ "grad_norm": 0.21287918090820312,
+ "learning_rate": 0.0006,
+ "loss": 3.4746999740600586,
+ "step": 6262
+ },
+ {
+ "epoch": 86.99257317605941,
+ "grad_norm": 0.22452335059642792,
+ "learning_rate": 0.0006,
+ "loss": 3.467658281326294,
+ "step": 6263
+ },
+ {
+ "epoch": 87.0,
+ "grad_norm": 0.26455584168434143,
+ "learning_rate": 0.0006,
+ "loss": 3.4675745964050293,
+ "step": 6264
+ },
+ {
+ "epoch": 87.0,
+ "eval_loss": 3.9968631267547607,
+ "eval_runtime": 46.323,
+ "eval_samples_per_second": 52.717,
+ "eval_steps_per_second": 3.303,
+ "step": 6264
+ },
+ {
+ "epoch": 87.01397990388816,
+ "grad_norm": 0.2470027059316635,
+ "learning_rate": 0.0006,
+ "loss": 3.406507730484009,
+ "step": 6265
+ },
+ {
+ "epoch": 87.02795980777633,
+ "grad_norm": 0.2460237443447113,
+ "learning_rate": 0.0006,
+ "loss": 3.411306381225586,
+ "step": 6266
+ },
+ {
+ "epoch": 87.04193971166448,
+ "grad_norm": 0.27289488911628723,
+ "learning_rate": 0.0006,
+ "loss": 3.4275155067443848,
+ "step": 6267
+ },
+ {
+ "epoch": 87.05591961555264,
+ "grad_norm": 0.2657255232334137,
+ "learning_rate": 0.0006,
+ "loss": 3.4513368606567383,
+ "step": 6268
+ },
+ {
+ "epoch": 87.06989951944081,
+ "grad_norm": 0.2561056613922119,
+ "learning_rate": 0.0006,
+ "loss": 3.4209394454956055,
+ "step": 6269
+ },
+ {
+ "epoch": 87.08387942332897,
+ "grad_norm": 0.24750930070877075,
+ "learning_rate": 0.0006,
+ "loss": 3.442840576171875,
+ "step": 6270
+ },
+ {
+ "epoch": 87.09785932721712,
+ "grad_norm": 0.24194562435150146,
+ "learning_rate": 0.0006,
+ "loss": 3.432831287384033,
+ "step": 6271
+ },
+ {
+ "epoch": 87.1118392311053,
+ "grad_norm": 0.24561241269111633,
+ "learning_rate": 0.0006,
+ "loss": 3.41995906829834,
+ "step": 6272
+ },
+ {
+ "epoch": 87.12581913499345,
+ "grad_norm": 0.28488844633102417,
+ "learning_rate": 0.0006,
+ "loss": 3.4203033447265625,
+ "step": 6273
+ },
+ {
+ "epoch": 87.1397990388816,
+ "grad_norm": 0.2719418406486511,
+ "learning_rate": 0.0006,
+ "loss": 3.4112062454223633,
+ "step": 6274
+ },
+ {
+ "epoch": 87.15377894276976,
+ "grad_norm": 0.24953287839889526,
+ "learning_rate": 0.0006,
+ "loss": 3.4096338748931885,
+ "step": 6275
+ },
+ {
+ "epoch": 87.16775884665793,
+ "grad_norm": 0.23657488822937012,
+ "learning_rate": 0.0006,
+ "loss": 3.4253625869750977,
+ "step": 6276
+ },
+ {
+ "epoch": 87.18173875054609,
+ "grad_norm": 0.23536205291748047,
+ "learning_rate": 0.0006,
+ "loss": 3.417539596557617,
+ "step": 6277
+ },
+ {
+ "epoch": 87.19571865443424,
+ "grad_norm": 0.2406543642282486,
+ "learning_rate": 0.0006,
+ "loss": 3.4071755409240723,
+ "step": 6278
+ },
+ {
+ "epoch": 87.20969855832242,
+ "grad_norm": 0.2562157213687897,
+ "learning_rate": 0.0006,
+ "loss": 3.4041831493377686,
+ "step": 6279
+ },
+ {
+ "epoch": 87.22367846221057,
+ "grad_norm": 0.2869356870651245,
+ "learning_rate": 0.0006,
+ "loss": 3.414750576019287,
+ "step": 6280
+ },
+ {
+ "epoch": 87.23765836609873,
+ "grad_norm": 0.27232855558395386,
+ "learning_rate": 0.0006,
+ "loss": 3.407370090484619,
+ "step": 6281
+ },
+ {
+ "epoch": 87.2516382699869,
+ "grad_norm": 0.2774076759815216,
+ "learning_rate": 0.0006,
+ "loss": 3.4218215942382812,
+ "step": 6282
+ },
+ {
+ "epoch": 87.26561817387505,
+ "grad_norm": 0.30042508244514465,
+ "learning_rate": 0.0006,
+ "loss": 3.4334588050842285,
+ "step": 6283
+ },
+ {
+ "epoch": 87.27959807776321,
+ "grad_norm": 0.2553543448448181,
+ "learning_rate": 0.0006,
+ "loss": 3.4333605766296387,
+ "step": 6284
+ },
+ {
+ "epoch": 87.29357798165138,
+ "grad_norm": 0.2525957226753235,
+ "learning_rate": 0.0006,
+ "loss": 3.4196009635925293,
+ "step": 6285
+ },
+ {
+ "epoch": 87.30755788553954,
+ "grad_norm": 0.24260185658931732,
+ "learning_rate": 0.0006,
+ "loss": 3.4140827655792236,
+ "step": 6286
+ },
+ {
+ "epoch": 87.3215377894277,
+ "grad_norm": 0.22283563017845154,
+ "learning_rate": 0.0006,
+ "loss": 3.444605827331543,
+ "step": 6287
+ },
+ {
+ "epoch": 87.33551769331586,
+ "grad_norm": 0.235158771276474,
+ "learning_rate": 0.0006,
+ "loss": 3.431881904602051,
+ "step": 6288
+ },
+ {
+ "epoch": 87.34949759720402,
+ "grad_norm": 0.2347733974456787,
+ "learning_rate": 0.0006,
+ "loss": 3.428152561187744,
+ "step": 6289
+ },
+ {
+ "epoch": 87.36347750109218,
+ "grad_norm": 0.2563766837120056,
+ "learning_rate": 0.0006,
+ "loss": 3.4577133655548096,
+ "step": 6290
+ },
+ {
+ "epoch": 87.37745740498035,
+ "grad_norm": 0.2618260681629181,
+ "learning_rate": 0.0006,
+ "loss": 3.4267096519470215,
+ "step": 6291
+ },
+ {
+ "epoch": 87.3914373088685,
+ "grad_norm": 0.25793492794036865,
+ "learning_rate": 0.0006,
+ "loss": 3.4507100582122803,
+ "step": 6292
+ },
+ {
+ "epoch": 87.40541721275666,
+ "grad_norm": 0.25354278087615967,
+ "learning_rate": 0.0006,
+ "loss": 3.4111928939819336,
+ "step": 6293
+ },
+ {
+ "epoch": 87.41939711664482,
+ "grad_norm": 0.2546374201774597,
+ "learning_rate": 0.0006,
+ "loss": 3.4853005409240723,
+ "step": 6294
+ },
+ {
+ "epoch": 87.43337702053299,
+ "grad_norm": 0.22910001873970032,
+ "learning_rate": 0.0006,
+ "loss": 3.46594500541687,
+ "step": 6295
+ },
+ {
+ "epoch": 87.44735692442114,
+ "grad_norm": 0.26341190934181213,
+ "learning_rate": 0.0006,
+ "loss": 3.448117733001709,
+ "step": 6296
+ },
+ {
+ "epoch": 87.4613368283093,
+ "grad_norm": 0.24096941947937012,
+ "learning_rate": 0.0006,
+ "loss": 3.4500057697296143,
+ "step": 6297
+ },
+ {
+ "epoch": 87.47531673219747,
+ "grad_norm": 0.22930867969989777,
+ "learning_rate": 0.0006,
+ "loss": 3.4056637287139893,
+ "step": 6298
+ },
+ {
+ "epoch": 87.48929663608563,
+ "grad_norm": 0.24585163593292236,
+ "learning_rate": 0.0006,
+ "loss": 3.443779945373535,
+ "step": 6299
+ },
+ {
+ "epoch": 87.50327653997378,
+ "grad_norm": 0.2679557204246521,
+ "learning_rate": 0.0006,
+ "loss": 3.4453015327453613,
+ "step": 6300
+ },
+ {
+ "epoch": 87.51725644386195,
+ "grad_norm": 0.2750099301338196,
+ "learning_rate": 0.0006,
+ "loss": 3.4492931365966797,
+ "step": 6301
+ },
+ {
+ "epoch": 87.53123634775011,
+ "grad_norm": 0.2397976517677307,
+ "learning_rate": 0.0006,
+ "loss": 3.4672493934631348,
+ "step": 6302
+ },
+ {
+ "epoch": 87.54521625163827,
+ "grad_norm": 0.2328847199678421,
+ "learning_rate": 0.0006,
+ "loss": 3.4675941467285156,
+ "step": 6303
+ },
+ {
+ "epoch": 87.55919615552644,
+ "grad_norm": 0.2174302190542221,
+ "learning_rate": 0.0006,
+ "loss": 3.4673750400543213,
+ "step": 6304
+ },
+ {
+ "epoch": 87.57317605941459,
+ "grad_norm": 0.2191520780324936,
+ "learning_rate": 0.0006,
+ "loss": 3.447082042694092,
+ "step": 6305
+ },
+ {
+ "epoch": 87.58715596330275,
+ "grad_norm": 0.221266508102417,
+ "learning_rate": 0.0006,
+ "loss": 3.4626669883728027,
+ "step": 6306
+ },
+ {
+ "epoch": 87.60113586719092,
+ "grad_norm": 0.23890595138072968,
+ "learning_rate": 0.0006,
+ "loss": 3.4423880577087402,
+ "step": 6307
+ },
+ {
+ "epoch": 87.61511577107908,
+ "grad_norm": 0.2518463730812073,
+ "learning_rate": 0.0006,
+ "loss": 3.444969415664673,
+ "step": 6308
+ },
+ {
+ "epoch": 87.62909567496723,
+ "grad_norm": 0.26311877369880676,
+ "learning_rate": 0.0006,
+ "loss": 3.431830406188965,
+ "step": 6309
+ },
+ {
+ "epoch": 87.6430755788554,
+ "grad_norm": 0.22257472574710846,
+ "learning_rate": 0.0006,
+ "loss": 3.4477615356445312,
+ "step": 6310
+ },
+ {
+ "epoch": 87.65705548274356,
+ "grad_norm": 0.20058895647525787,
+ "learning_rate": 0.0006,
+ "loss": 3.4231035709381104,
+ "step": 6311
+ },
+ {
+ "epoch": 87.67103538663171,
+ "grad_norm": 0.25480031967163086,
+ "learning_rate": 0.0006,
+ "loss": 3.455605983734131,
+ "step": 6312
+ },
+ {
+ "epoch": 87.68501529051987,
+ "grad_norm": 0.281009703874588,
+ "learning_rate": 0.0006,
+ "loss": 3.4484899044036865,
+ "step": 6313
+ },
+ {
+ "epoch": 87.69899519440804,
+ "grad_norm": 0.2769845724105835,
+ "learning_rate": 0.0006,
+ "loss": 3.4509403705596924,
+ "step": 6314
+ },
+ {
+ "epoch": 87.7129750982962,
+ "grad_norm": 0.25785791873931885,
+ "learning_rate": 0.0006,
+ "loss": 3.4717955589294434,
+ "step": 6315
+ },
+ {
+ "epoch": 87.72695500218435,
+ "grad_norm": 0.2630847990512848,
+ "learning_rate": 0.0006,
+ "loss": 3.489973545074463,
+ "step": 6316
+ },
+ {
+ "epoch": 87.74093490607252,
+ "grad_norm": 0.2828741669654846,
+ "learning_rate": 0.0006,
+ "loss": 3.4274351596832275,
+ "step": 6317
+ },
+ {
+ "epoch": 87.75491480996068,
+ "grad_norm": 0.26448315382003784,
+ "learning_rate": 0.0006,
+ "loss": 3.439527988433838,
+ "step": 6318
+ },
+ {
+ "epoch": 87.76889471384884,
+ "grad_norm": 0.2555212080478668,
+ "learning_rate": 0.0006,
+ "loss": 3.476854085922241,
+ "step": 6319
+ },
+ {
+ "epoch": 87.78287461773701,
+ "grad_norm": 0.2586565911769867,
+ "learning_rate": 0.0006,
+ "loss": 3.4791836738586426,
+ "step": 6320
+ },
+ {
+ "epoch": 87.79685452162516,
+ "grad_norm": 0.24381688237190247,
+ "learning_rate": 0.0006,
+ "loss": 3.4730138778686523,
+ "step": 6321
+ },
+ {
+ "epoch": 87.81083442551332,
+ "grad_norm": 0.24554914236068726,
+ "learning_rate": 0.0006,
+ "loss": 3.466851234436035,
+ "step": 6322
+ },
+ {
+ "epoch": 87.82481432940149,
+ "grad_norm": 0.2559501826763153,
+ "learning_rate": 0.0006,
+ "loss": 3.4899802207946777,
+ "step": 6323
+ },
+ {
+ "epoch": 87.83879423328965,
+ "grad_norm": 0.24709442257881165,
+ "learning_rate": 0.0006,
+ "loss": 3.462717294692993,
+ "step": 6324
+ },
+ {
+ "epoch": 87.8527741371778,
+ "grad_norm": 0.238383486866951,
+ "learning_rate": 0.0006,
+ "loss": 3.4490647315979004,
+ "step": 6325
+ },
+ {
+ "epoch": 87.86675404106597,
+ "grad_norm": 0.25038403272628784,
+ "learning_rate": 0.0006,
+ "loss": 3.4700093269348145,
+ "step": 6326
+ },
+ {
+ "epoch": 87.88073394495413,
+ "grad_norm": 0.25541093945503235,
+ "learning_rate": 0.0006,
+ "loss": 3.4632275104522705,
+ "step": 6327
+ },
+ {
+ "epoch": 87.89471384884229,
+ "grad_norm": 0.27114391326904297,
+ "learning_rate": 0.0006,
+ "loss": 3.4618139266967773,
+ "step": 6328
+ },
+ {
+ "epoch": 87.90869375273044,
+ "grad_norm": 0.23148465156555176,
+ "learning_rate": 0.0006,
+ "loss": 3.438594341278076,
+ "step": 6329
+ },
+ {
+ "epoch": 87.92267365661861,
+ "grad_norm": 0.2270335704088211,
+ "learning_rate": 0.0006,
+ "loss": 3.4554107189178467,
+ "step": 6330
+ },
+ {
+ "epoch": 87.93665356050677,
+ "grad_norm": 0.2097586989402771,
+ "learning_rate": 0.0006,
+ "loss": 3.4348864555358887,
+ "step": 6331
+ },
+ {
+ "epoch": 87.95063346439493,
+ "grad_norm": 0.2221650779247284,
+ "learning_rate": 0.0006,
+ "loss": 3.449270486831665,
+ "step": 6332
+ },
+ {
+ "epoch": 87.9646133682831,
+ "grad_norm": 0.2341674566268921,
+ "learning_rate": 0.0006,
+ "loss": 3.452688694000244,
+ "step": 6333
+ },
+ {
+ "epoch": 87.97859327217125,
+ "grad_norm": 0.23425638675689697,
+ "learning_rate": 0.0006,
+ "loss": 3.478743076324463,
+ "step": 6334
+ },
+ {
+ "epoch": 87.99257317605941,
+ "grad_norm": 0.22582922875881195,
+ "learning_rate": 0.0006,
+ "loss": 3.4957661628723145,
+ "step": 6335
+ },
+ {
+ "epoch": 88.0,
+ "grad_norm": 0.25822433829307556,
+ "learning_rate": 0.0006,
+ "loss": 3.4841136932373047,
+ "step": 6336
+ },
+ {
+ "epoch": 88.0,
+ "eval_loss": 3.996260404586792,
+ "eval_runtime": 46.5497,
+ "eval_samples_per_second": 52.46,
+ "eval_steps_per_second": 3.287,
+ "step": 6336
+ },
+ {
+ "epoch": 88.01397990388816,
+ "grad_norm": 0.25544533133506775,
+ "learning_rate": 0.0006,
+ "loss": 3.398768424987793,
+ "step": 6337
+ },
+ {
+ "epoch": 88.02795980777633,
+ "grad_norm": 0.31270086765289307,
+ "learning_rate": 0.0006,
+ "loss": 3.4350461959838867,
+ "step": 6338
+ },
+ {
+ "epoch": 88.04193971166448,
+ "grad_norm": 0.31236228346824646,
+ "learning_rate": 0.0006,
+ "loss": 3.4069981575012207,
+ "step": 6339
+ },
+ {
+ "epoch": 88.05591961555264,
+ "grad_norm": 0.28024131059646606,
+ "learning_rate": 0.0006,
+ "loss": 3.421595811843872,
+ "step": 6340
+ },
+ {
+ "epoch": 88.06989951944081,
+ "grad_norm": 0.2668711245059967,
+ "learning_rate": 0.0006,
+ "loss": 3.3885085582733154,
+ "step": 6341
+ },
+ {
+ "epoch": 88.08387942332897,
+ "grad_norm": 0.3261690139770508,
+ "learning_rate": 0.0006,
+ "loss": 3.4128613471984863,
+ "step": 6342
+ },
+ {
+ "epoch": 88.09785932721712,
+ "grad_norm": 0.35211819410324097,
+ "learning_rate": 0.0006,
+ "loss": 3.4122352600097656,
+ "step": 6343
+ },
+ {
+ "epoch": 88.1118392311053,
+ "grad_norm": 0.30320537090301514,
+ "learning_rate": 0.0006,
+ "loss": 3.4083406925201416,
+ "step": 6344
+ },
+ {
+ "epoch": 88.12581913499345,
+ "grad_norm": 0.2462662160396576,
+ "learning_rate": 0.0006,
+ "loss": 3.458763837814331,
+ "step": 6345
+ },
+ {
+ "epoch": 88.1397990388816,
+ "grad_norm": 0.24706120789051056,
+ "learning_rate": 0.0006,
+ "loss": 3.3685402870178223,
+ "step": 6346
+ },
+ {
+ "epoch": 88.15377894276976,
+ "grad_norm": 0.25646236538887024,
+ "learning_rate": 0.0006,
+ "loss": 3.453892230987549,
+ "step": 6347
+ },
+ {
+ "epoch": 88.16775884665793,
+ "grad_norm": 0.23423898220062256,
+ "learning_rate": 0.0006,
+ "loss": 3.4273645877838135,
+ "step": 6348
+ },
+ {
+ "epoch": 88.18173875054609,
+ "grad_norm": 0.22806601226329803,
+ "learning_rate": 0.0006,
+ "loss": 3.3917994499206543,
+ "step": 6349
+ },
+ {
+ "epoch": 88.19571865443424,
+ "grad_norm": 0.2243315428495407,
+ "learning_rate": 0.0006,
+ "loss": 3.4123449325561523,
+ "step": 6350
+ },
+ {
+ "epoch": 88.20969855832242,
+ "grad_norm": 0.2315295934677124,
+ "learning_rate": 0.0006,
+ "loss": 3.4313998222351074,
+ "step": 6351
+ },
+ {
+ "epoch": 88.22367846221057,
+ "grad_norm": 0.2538231909275055,
+ "learning_rate": 0.0006,
+ "loss": 3.473200798034668,
+ "step": 6352
+ },
+ {
+ "epoch": 88.23765836609873,
+ "grad_norm": 0.24312785267829895,
+ "learning_rate": 0.0006,
+ "loss": 3.414944887161255,
+ "step": 6353
+ },
+ {
+ "epoch": 88.2516382699869,
+ "grad_norm": 0.2515439987182617,
+ "learning_rate": 0.0006,
+ "loss": 3.4162838459014893,
+ "step": 6354
+ },
+ {
+ "epoch": 88.26561817387505,
+ "grad_norm": 0.24469073116779327,
+ "learning_rate": 0.0006,
+ "loss": 3.444321393966675,
+ "step": 6355
+ },
+ {
+ "epoch": 88.27959807776321,
+ "grad_norm": 0.22281599044799805,
+ "learning_rate": 0.0006,
+ "loss": 3.4098334312438965,
+ "step": 6356
+ },
+ {
+ "epoch": 88.29357798165138,
+ "grad_norm": 0.24646595120429993,
+ "learning_rate": 0.0006,
+ "loss": 3.464479446411133,
+ "step": 6357
+ },
+ {
+ "epoch": 88.30755788553954,
+ "grad_norm": 0.22729575634002686,
+ "learning_rate": 0.0006,
+ "loss": 3.423619031906128,
+ "step": 6358
+ },
+ {
+ "epoch": 88.3215377894277,
+ "grad_norm": 0.2455425262451172,
+ "learning_rate": 0.0006,
+ "loss": 3.4085960388183594,
+ "step": 6359
+ },
+ {
+ "epoch": 88.33551769331586,
+ "grad_norm": 0.26134350895881653,
+ "learning_rate": 0.0006,
+ "loss": 3.3751399517059326,
+ "step": 6360
+ },
+ {
+ "epoch": 88.34949759720402,
+ "grad_norm": 0.2470584213733673,
+ "learning_rate": 0.0006,
+ "loss": 3.474815845489502,
+ "step": 6361
+ },
+ {
+ "epoch": 88.36347750109218,
+ "grad_norm": 0.24315427243709564,
+ "learning_rate": 0.0006,
+ "loss": 3.444636344909668,
+ "step": 6362
+ },
+ {
+ "epoch": 88.37745740498035,
+ "grad_norm": 0.25277286767959595,
+ "learning_rate": 0.0006,
+ "loss": 3.4518373012542725,
+ "step": 6363
+ },
+ {
+ "epoch": 88.3914373088685,
+ "grad_norm": 0.26929786801338196,
+ "learning_rate": 0.0006,
+ "loss": 3.446774482727051,
+ "step": 6364
+ },
+ {
+ "epoch": 88.40541721275666,
+ "grad_norm": 0.23554161190986633,
+ "learning_rate": 0.0006,
+ "loss": 3.385951042175293,
+ "step": 6365
+ },
+ {
+ "epoch": 88.41939711664482,
+ "grad_norm": 0.22048695385456085,
+ "learning_rate": 0.0006,
+ "loss": 3.45289945602417,
+ "step": 6366
+ },
+ {
+ "epoch": 88.43337702053299,
+ "grad_norm": 0.2575032114982605,
+ "learning_rate": 0.0006,
+ "loss": 3.4713096618652344,
+ "step": 6367
+ },
+ {
+ "epoch": 88.44735692442114,
+ "grad_norm": 0.2453707456588745,
+ "learning_rate": 0.0006,
+ "loss": 3.4257078170776367,
+ "step": 6368
+ },
+ {
+ "epoch": 88.4613368283093,
+ "grad_norm": 0.2514393627643585,
+ "learning_rate": 0.0006,
+ "loss": 3.4188473224639893,
+ "step": 6369
+ },
+ {
+ "epoch": 88.47531673219747,
+ "grad_norm": 0.23554356396198273,
+ "learning_rate": 0.0006,
+ "loss": 3.443974494934082,
+ "step": 6370
+ },
+ {
+ "epoch": 88.48929663608563,
+ "grad_norm": 0.22241100668907166,
+ "learning_rate": 0.0006,
+ "loss": 3.4610610008239746,
+ "step": 6371
+ },
+ {
+ "epoch": 88.50327653997378,
+ "grad_norm": 0.25195151567459106,
+ "learning_rate": 0.0006,
+ "loss": 3.4192237854003906,
+ "step": 6372
+ },
+ {
+ "epoch": 88.51725644386195,
+ "grad_norm": 0.25323209166526794,
+ "learning_rate": 0.0006,
+ "loss": 3.449105739593506,
+ "step": 6373
+ },
+ {
+ "epoch": 88.53123634775011,
+ "grad_norm": 0.23256665468215942,
+ "learning_rate": 0.0006,
+ "loss": 3.454131603240967,
+ "step": 6374
+ },
+ {
+ "epoch": 88.54521625163827,
+ "grad_norm": 0.22301720082759857,
+ "learning_rate": 0.0006,
+ "loss": 3.452838182449341,
+ "step": 6375
+ },
+ {
+ "epoch": 88.55919615552644,
+ "grad_norm": 0.24171237647533417,
+ "learning_rate": 0.0006,
+ "loss": 3.4515328407287598,
+ "step": 6376
+ },
+ {
+ "epoch": 88.57317605941459,
+ "grad_norm": 0.22223307192325592,
+ "learning_rate": 0.0006,
+ "loss": 3.447723388671875,
+ "step": 6377
+ },
+ {
+ "epoch": 88.58715596330275,
+ "grad_norm": 0.22373506426811218,
+ "learning_rate": 0.0006,
+ "loss": 3.4628777503967285,
+ "step": 6378
+ },
+ {
+ "epoch": 88.60113586719092,
+ "grad_norm": 0.2627395987510681,
+ "learning_rate": 0.0006,
+ "loss": 3.456012010574341,
+ "step": 6379
+ },
+ {
+ "epoch": 88.61511577107908,
+ "grad_norm": 0.2567562162876129,
+ "learning_rate": 0.0006,
+ "loss": 3.436379909515381,
+ "step": 6380
+ },
+ {
+ "epoch": 88.62909567496723,
+ "grad_norm": 0.2223784178495407,
+ "learning_rate": 0.0006,
+ "loss": 3.437389373779297,
+ "step": 6381
+ },
+ {
+ "epoch": 88.6430755788554,
+ "grad_norm": 0.2634836733341217,
+ "learning_rate": 0.0006,
+ "loss": 3.447709798812866,
+ "step": 6382
+ },
+ {
+ "epoch": 88.65705548274356,
+ "grad_norm": 0.2559404671192169,
+ "learning_rate": 0.0006,
+ "loss": 3.502635955810547,
+ "step": 6383
+ },
+ {
+ "epoch": 88.67103538663171,
+ "grad_norm": 0.2341974973678589,
+ "learning_rate": 0.0006,
+ "loss": 3.422739028930664,
+ "step": 6384
+ },
+ {
+ "epoch": 88.68501529051987,
+ "grad_norm": 0.23838907480239868,
+ "learning_rate": 0.0006,
+ "loss": 3.4362587928771973,
+ "step": 6385
+ },
+ {
+ "epoch": 88.69899519440804,
+ "grad_norm": 0.25170615315437317,
+ "learning_rate": 0.0006,
+ "loss": 3.4428529739379883,
+ "step": 6386
+ },
+ {
+ "epoch": 88.7129750982962,
+ "grad_norm": 0.29359322786331177,
+ "learning_rate": 0.0006,
+ "loss": 3.457087993621826,
+ "step": 6387
+ },
+ {
+ "epoch": 88.72695500218435,
+ "grad_norm": 0.2596781849861145,
+ "learning_rate": 0.0006,
+ "loss": 3.474092483520508,
+ "step": 6388
+ },
+ {
+ "epoch": 88.74093490607252,
+ "grad_norm": 0.2290738970041275,
+ "learning_rate": 0.0006,
+ "loss": 3.4652552604675293,
+ "step": 6389
+ },
+ {
+ "epoch": 88.75491480996068,
+ "grad_norm": 0.2197772115468979,
+ "learning_rate": 0.0006,
+ "loss": 3.4849348068237305,
+ "step": 6390
+ },
+ {
+ "epoch": 88.76889471384884,
+ "grad_norm": 0.2582140266895294,
+ "learning_rate": 0.0006,
+ "loss": 3.451672315597534,
+ "step": 6391
+ },
+ {
+ "epoch": 88.78287461773701,
+ "grad_norm": 0.28999677300453186,
+ "learning_rate": 0.0006,
+ "loss": 3.4680047035217285,
+ "step": 6392
+ },
+ {
+ "epoch": 88.79685452162516,
+ "grad_norm": 0.27091309428215027,
+ "learning_rate": 0.0006,
+ "loss": 3.4288430213928223,
+ "step": 6393
+ },
+ {
+ "epoch": 88.81083442551332,
+ "grad_norm": 0.22377929091453552,
+ "learning_rate": 0.0006,
+ "loss": 3.429720401763916,
+ "step": 6394
+ },
+ {
+ "epoch": 88.82481432940149,
+ "grad_norm": 0.25913205742836,
+ "learning_rate": 0.0006,
+ "loss": 3.4717307090759277,
+ "step": 6395
+ },
+ {
+ "epoch": 88.83879423328965,
+ "grad_norm": 0.2942664623260498,
+ "learning_rate": 0.0006,
+ "loss": 3.459348201751709,
+ "step": 6396
+ },
+ {
+ "epoch": 88.8527741371778,
+ "grad_norm": 0.2814873158931732,
+ "learning_rate": 0.0006,
+ "loss": 3.4601378440856934,
+ "step": 6397
+ },
+ {
+ "epoch": 88.86675404106597,
+ "grad_norm": 0.23663274943828583,
+ "learning_rate": 0.0006,
+ "loss": 3.4499621391296387,
+ "step": 6398
+ },
+ {
+ "epoch": 88.88073394495413,
+ "grad_norm": 0.2373311072587967,
+ "learning_rate": 0.0006,
+ "loss": 3.4788646697998047,
+ "step": 6399
+ },
+ {
+ "epoch": 88.89471384884229,
+ "grad_norm": 0.23589301109313965,
+ "learning_rate": 0.0006,
+ "loss": 3.4490485191345215,
+ "step": 6400
+ },
+ {
+ "epoch": 88.90869375273044,
+ "grad_norm": 0.2493848204612732,
+ "learning_rate": 0.0006,
+ "loss": 3.4638071060180664,
+ "step": 6401
+ },
+ {
+ "epoch": 88.92267365661861,
+ "grad_norm": 0.253894567489624,
+ "learning_rate": 0.0006,
+ "loss": 3.4215211868286133,
+ "step": 6402
+ },
+ {
+ "epoch": 88.93665356050677,
+ "grad_norm": 0.24402591586112976,
+ "learning_rate": 0.0006,
+ "loss": 3.4285635948181152,
+ "step": 6403
+ },
+ {
+ "epoch": 88.95063346439493,
+ "grad_norm": 0.23428580164909363,
+ "learning_rate": 0.0006,
+ "loss": 3.479029655456543,
+ "step": 6404
+ },
+ {
+ "epoch": 88.9646133682831,
+ "grad_norm": 0.22734172642230988,
+ "learning_rate": 0.0006,
+ "loss": 3.4614226818084717,
+ "step": 6405
+ },
+ {
+ "epoch": 88.97859327217125,
+ "grad_norm": 0.23591332137584686,
+ "learning_rate": 0.0006,
+ "loss": 3.45747709274292,
+ "step": 6406
+ },
+ {
+ "epoch": 88.99257317605941,
+ "grad_norm": 0.2494441717863083,
+ "learning_rate": 0.0006,
+ "loss": 3.4813613891601562,
+ "step": 6407
+ },
+ {
+ "epoch": 89.0,
+ "grad_norm": 0.2755223214626312,
+ "learning_rate": 0.0006,
+ "loss": 3.5029916763305664,
+ "step": 6408
+ },
+ {
+ "epoch": 89.0,
+ "eval_loss": 3.99692440032959,
+ "eval_runtime": 46.4257,
+ "eval_samples_per_second": 52.6,
+ "eval_steps_per_second": 3.296,
+ "step": 6408
+ },
+ {
+ "epoch": 89.01397990388816,
+ "grad_norm": 0.2804921567440033,
+ "learning_rate": 0.0006,
+ "loss": 3.390130043029785,
+ "step": 6409
+ },
+ {
+ "epoch": 89.02795980777633,
+ "grad_norm": 0.2886325716972351,
+ "learning_rate": 0.0006,
+ "loss": 3.403815507888794,
+ "step": 6410
+ },
+ {
+ "epoch": 89.04193971166448,
+ "grad_norm": 0.2708413898944855,
+ "learning_rate": 0.0006,
+ "loss": 3.4433977603912354,
+ "step": 6411
+ },
+ {
+ "epoch": 89.05591961555264,
+ "grad_norm": 0.24649782478809357,
+ "learning_rate": 0.0006,
+ "loss": 3.4159514904022217,
+ "step": 6412
+ },
+ {
+ "epoch": 89.06989951944081,
+ "grad_norm": 0.24781741201877594,
+ "learning_rate": 0.0006,
+ "loss": 3.419957399368286,
+ "step": 6413
+ },
+ {
+ "epoch": 89.08387942332897,
+ "grad_norm": 0.24064421653747559,
+ "learning_rate": 0.0006,
+ "loss": 3.422407388687134,
+ "step": 6414
+ },
+ {
+ "epoch": 89.09785932721712,
+ "grad_norm": 0.23315085470676422,
+ "learning_rate": 0.0006,
+ "loss": 3.4167463779449463,
+ "step": 6415
+ },
+ {
+ "epoch": 89.1118392311053,
+ "grad_norm": 0.22830364108085632,
+ "learning_rate": 0.0006,
+ "loss": 3.3770923614501953,
+ "step": 6416
+ },
+ {
+ "epoch": 89.12581913499345,
+ "grad_norm": 0.2393895536661148,
+ "learning_rate": 0.0006,
+ "loss": 3.398796558380127,
+ "step": 6417
+ },
+ {
+ "epoch": 89.1397990388816,
+ "grad_norm": 0.23011191189289093,
+ "learning_rate": 0.0006,
+ "loss": 3.4162049293518066,
+ "step": 6418
+ },
+ {
+ "epoch": 89.15377894276976,
+ "grad_norm": 0.21913395822048187,
+ "learning_rate": 0.0006,
+ "loss": 3.4067492485046387,
+ "step": 6419
+ },
+ {
+ "epoch": 89.16775884665793,
+ "grad_norm": 0.2405850887298584,
+ "learning_rate": 0.0006,
+ "loss": 3.4392945766448975,
+ "step": 6420
+ },
+ {
+ "epoch": 89.18173875054609,
+ "grad_norm": 0.23586462438106537,
+ "learning_rate": 0.0006,
+ "loss": 3.4119157791137695,
+ "step": 6421
+ },
+ {
+ "epoch": 89.19571865443424,
+ "grad_norm": 0.2438800036907196,
+ "learning_rate": 0.0006,
+ "loss": 3.4040637016296387,
+ "step": 6422
+ },
+ {
+ "epoch": 89.20969855832242,
+ "grad_norm": 0.2754521071910858,
+ "learning_rate": 0.0006,
+ "loss": 3.3838582038879395,
+ "step": 6423
+ },
+ {
+ "epoch": 89.22367846221057,
+ "grad_norm": 0.23522698879241943,
+ "learning_rate": 0.0006,
+ "loss": 3.43086576461792,
+ "step": 6424
+ },
+ {
+ "epoch": 89.23765836609873,
+ "grad_norm": 0.20969218015670776,
+ "learning_rate": 0.0006,
+ "loss": 3.419610023498535,
+ "step": 6425
+ },
+ {
+ "epoch": 89.2516382699869,
+ "grad_norm": 0.24013124406337738,
+ "learning_rate": 0.0006,
+ "loss": 3.440587043762207,
+ "step": 6426
+ },
+ {
+ "epoch": 89.26561817387505,
+ "grad_norm": 0.22006145119667053,
+ "learning_rate": 0.0006,
+ "loss": 3.4141197204589844,
+ "step": 6427
+ },
+ {
+ "epoch": 89.27959807776321,
+ "grad_norm": 0.23387178778648376,
+ "learning_rate": 0.0006,
+ "loss": 3.4153761863708496,
+ "step": 6428
+ },
+ {
+ "epoch": 89.29357798165138,
+ "grad_norm": 0.2203698605298996,
+ "learning_rate": 0.0006,
+ "loss": 3.3872125148773193,
+ "step": 6429
+ },
+ {
+ "epoch": 89.30755788553954,
+ "grad_norm": 0.24457088112831116,
+ "learning_rate": 0.0006,
+ "loss": 3.408695697784424,
+ "step": 6430
+ },
+ {
+ "epoch": 89.3215377894277,
+ "grad_norm": 0.2421625852584839,
+ "learning_rate": 0.0006,
+ "loss": 3.4664320945739746,
+ "step": 6431
+ },
+ {
+ "epoch": 89.33551769331586,
+ "grad_norm": 0.23027287423610687,
+ "learning_rate": 0.0006,
+ "loss": 3.416273593902588,
+ "step": 6432
+ },
+ {
+ "epoch": 89.34949759720402,
+ "grad_norm": 0.23090727627277374,
+ "learning_rate": 0.0006,
+ "loss": 3.4398555755615234,
+ "step": 6433
+ },
+ {
+ "epoch": 89.36347750109218,
+ "grad_norm": 0.2195872664451599,
+ "learning_rate": 0.0006,
+ "loss": 3.4498820304870605,
+ "step": 6434
+ },
+ {
+ "epoch": 89.37745740498035,
+ "grad_norm": 0.21808069944381714,
+ "learning_rate": 0.0006,
+ "loss": 3.441169023513794,
+ "step": 6435
+ },
+ {
+ "epoch": 89.3914373088685,
+ "grad_norm": 0.22228756546974182,
+ "learning_rate": 0.0006,
+ "loss": 3.4655652046203613,
+ "step": 6436
+ },
+ {
+ "epoch": 89.40541721275666,
+ "grad_norm": 0.22122591733932495,
+ "learning_rate": 0.0006,
+ "loss": 3.4240527153015137,
+ "step": 6437
+ },
+ {
+ "epoch": 89.41939711664482,
+ "grad_norm": 0.21600909531116486,
+ "learning_rate": 0.0006,
+ "loss": 3.416105270385742,
+ "step": 6438
+ },
+ {
+ "epoch": 89.43337702053299,
+ "grad_norm": 0.2144104689359665,
+ "learning_rate": 0.0006,
+ "loss": 3.4098658561706543,
+ "step": 6439
+ },
+ {
+ "epoch": 89.44735692442114,
+ "grad_norm": 0.23326139152050018,
+ "learning_rate": 0.0006,
+ "loss": 3.469301700592041,
+ "step": 6440
+ },
+ {
+ "epoch": 89.4613368283093,
+ "grad_norm": 0.26567789912223816,
+ "learning_rate": 0.0006,
+ "loss": 3.4470887184143066,
+ "step": 6441
+ },
+ {
+ "epoch": 89.47531673219747,
+ "grad_norm": 0.2632465362548828,
+ "learning_rate": 0.0006,
+ "loss": 3.4050705432891846,
+ "step": 6442
+ },
+ {
+ "epoch": 89.48929663608563,
+ "grad_norm": 0.2504420578479767,
+ "learning_rate": 0.0006,
+ "loss": 3.456641912460327,
+ "step": 6443
+ },
+ {
+ "epoch": 89.50327653997378,
+ "grad_norm": 0.23118335008621216,
+ "learning_rate": 0.0006,
+ "loss": 3.4431729316711426,
+ "step": 6444
+ },
+ {
+ "epoch": 89.51725644386195,
+ "grad_norm": 0.2547391951084137,
+ "learning_rate": 0.0006,
+ "loss": 3.4665348529815674,
+ "step": 6445
+ },
+ {
+ "epoch": 89.53123634775011,
+ "grad_norm": 0.24364003539085388,
+ "learning_rate": 0.0006,
+ "loss": 3.415684223175049,
+ "step": 6446
+ },
+ {
+ "epoch": 89.54521625163827,
+ "grad_norm": 0.23808231949806213,
+ "learning_rate": 0.0006,
+ "loss": 3.452906608581543,
+ "step": 6447
+ },
+ {
+ "epoch": 89.55919615552644,
+ "grad_norm": 0.22440290451049805,
+ "learning_rate": 0.0006,
+ "loss": 3.4534897804260254,
+ "step": 6448
+ },
+ {
+ "epoch": 89.57317605941459,
+ "grad_norm": 0.2142396867275238,
+ "learning_rate": 0.0006,
+ "loss": 3.4557271003723145,
+ "step": 6449
+ },
+ {
+ "epoch": 89.58715596330275,
+ "grad_norm": 0.23520410060882568,
+ "learning_rate": 0.0006,
+ "loss": 3.4715747833251953,
+ "step": 6450
+ },
+ {
+ "epoch": 89.60113586719092,
+ "grad_norm": 0.20662814378738403,
+ "learning_rate": 0.0006,
+ "loss": 3.4436354637145996,
+ "step": 6451
+ },
+ {
+ "epoch": 89.61511577107908,
+ "grad_norm": 0.2474508434534073,
+ "learning_rate": 0.0006,
+ "loss": 3.4383606910705566,
+ "step": 6452
+ },
+ {
+ "epoch": 89.62909567496723,
+ "grad_norm": 0.278999924659729,
+ "learning_rate": 0.0006,
+ "loss": 3.4703361988067627,
+ "step": 6453
+ },
+ {
+ "epoch": 89.6430755788554,
+ "grad_norm": 0.25253745913505554,
+ "learning_rate": 0.0006,
+ "loss": 3.414583206176758,
+ "step": 6454
+ },
+ {
+ "epoch": 89.65705548274356,
+ "grad_norm": 0.22693559527397156,
+ "learning_rate": 0.0006,
+ "loss": 3.464961528778076,
+ "step": 6455
+ },
+ {
+ "epoch": 89.67103538663171,
+ "grad_norm": 0.24077758193016052,
+ "learning_rate": 0.0006,
+ "loss": 3.439797878265381,
+ "step": 6456
+ },
+ {
+ "epoch": 89.68501529051987,
+ "grad_norm": 0.2611824870109558,
+ "learning_rate": 0.0006,
+ "loss": 3.4732823371887207,
+ "step": 6457
+ },
+ {
+ "epoch": 89.69899519440804,
+ "grad_norm": 0.250815749168396,
+ "learning_rate": 0.0006,
+ "loss": 3.4433367252349854,
+ "step": 6458
+ },
+ {
+ "epoch": 89.7129750982962,
+ "grad_norm": 0.23598846793174744,
+ "learning_rate": 0.0006,
+ "loss": 3.4715113639831543,
+ "step": 6459
+ },
+ {
+ "epoch": 89.72695500218435,
+ "grad_norm": 0.2527889311313629,
+ "learning_rate": 0.0006,
+ "loss": 3.4698610305786133,
+ "step": 6460
+ },
+ {
+ "epoch": 89.74093490607252,
+ "grad_norm": 0.276784211397171,
+ "learning_rate": 0.0006,
+ "loss": 3.475592613220215,
+ "step": 6461
+ },
+ {
+ "epoch": 89.75491480996068,
+ "grad_norm": 0.2685011923313141,
+ "learning_rate": 0.0006,
+ "loss": 3.4594340324401855,
+ "step": 6462
+ },
+ {
+ "epoch": 89.76889471384884,
+ "grad_norm": 0.2204517424106598,
+ "learning_rate": 0.0006,
+ "loss": 3.4383888244628906,
+ "step": 6463
+ },
+ {
+ "epoch": 89.78287461773701,
+ "grad_norm": 0.21650364995002747,
+ "learning_rate": 0.0006,
+ "loss": 3.440211772918701,
+ "step": 6464
+ },
+ {
+ "epoch": 89.79685452162516,
+ "grad_norm": 0.23860572278499603,
+ "learning_rate": 0.0006,
+ "loss": 3.4803309440612793,
+ "step": 6465
+ },
+ {
+ "epoch": 89.81083442551332,
+ "grad_norm": 0.21272678673267365,
+ "learning_rate": 0.0006,
+ "loss": 3.415151596069336,
+ "step": 6466
+ },
+ {
+ "epoch": 89.82481432940149,
+ "grad_norm": 0.21292860805988312,
+ "learning_rate": 0.0006,
+ "loss": 3.431708812713623,
+ "step": 6467
+ },
+ {
+ "epoch": 89.83879423328965,
+ "grad_norm": 0.2239128053188324,
+ "learning_rate": 0.0006,
+ "loss": 3.4703831672668457,
+ "step": 6468
+ },
+ {
+ "epoch": 89.8527741371778,
+ "grad_norm": 0.2337617129087448,
+ "learning_rate": 0.0006,
+ "loss": 3.480558395385742,
+ "step": 6469
+ },
+ {
+ "epoch": 89.86675404106597,
+ "grad_norm": 0.2368871420621872,
+ "learning_rate": 0.0006,
+ "loss": 3.460475444793701,
+ "step": 6470
+ },
+ {
+ "epoch": 89.88073394495413,
+ "grad_norm": 0.20681516826152802,
+ "learning_rate": 0.0006,
+ "loss": 3.4175658226013184,
+ "step": 6471
+ },
+ {
+ "epoch": 89.89471384884229,
+ "grad_norm": 0.20790521800518036,
+ "learning_rate": 0.0006,
+ "loss": 3.4417853355407715,
+ "step": 6472
+ },
+ {
+ "epoch": 89.90869375273044,
+ "grad_norm": 0.20643968880176544,
+ "learning_rate": 0.0006,
+ "loss": 3.4470458030700684,
+ "step": 6473
+ },
+ {
+ "epoch": 89.92267365661861,
+ "grad_norm": 0.2111901491880417,
+ "learning_rate": 0.0006,
+ "loss": 3.477799654006958,
+ "step": 6474
+ },
+ {
+ "epoch": 89.93665356050677,
+ "grad_norm": 0.20657071471214294,
+ "learning_rate": 0.0006,
+ "loss": 3.4574146270751953,
+ "step": 6475
+ },
+ {
+ "epoch": 89.95063346439493,
+ "grad_norm": 0.20643314719200134,
+ "learning_rate": 0.0006,
+ "loss": 3.459632396697998,
+ "step": 6476
+ },
+ {
+ "epoch": 89.9646133682831,
+ "grad_norm": 0.22173410654067993,
+ "learning_rate": 0.0006,
+ "loss": 3.475869655609131,
+ "step": 6477
+ },
+ {
+ "epoch": 89.97859327217125,
+ "grad_norm": 0.21396701037883759,
+ "learning_rate": 0.0006,
+ "loss": 3.432828664779663,
+ "step": 6478
+ },
+ {
+ "epoch": 89.99257317605941,
+ "grad_norm": 0.20806321501731873,
+ "learning_rate": 0.0006,
+ "loss": 3.4380345344543457,
+ "step": 6479
+ },
+ {
+ "epoch": 90.0,
+ "grad_norm": 0.29019099473953247,
+ "learning_rate": 0.0006,
+ "loss": 3.4722766876220703,
+ "step": 6480
+ },
+ {
+ "epoch": 90.0,
+ "eval_loss": 3.9953255653381348,
+ "eval_runtime": 46.5084,
+ "eval_samples_per_second": 52.507,
+ "eval_steps_per_second": 3.29,
+ "step": 6480
+ },
+ {
+ "epoch": 90.01397990388816,
+ "grad_norm": 0.30904439091682434,
+ "learning_rate": 0.0006,
+ "loss": 3.418851852416992,
+ "step": 6481
+ },
+ {
+ "epoch": 90.02795980777633,
+ "grad_norm": 0.33757269382476807,
+ "learning_rate": 0.0006,
+ "loss": 3.4239983558654785,
+ "step": 6482
+ },
+ {
+ "epoch": 90.04193971166448,
+ "grad_norm": 0.3366031050682068,
+ "learning_rate": 0.0006,
+ "loss": 3.4371347427368164,
+ "step": 6483
+ },
+ {
+ "epoch": 90.05591961555264,
+ "grad_norm": 0.3123963177204132,
+ "learning_rate": 0.0006,
+ "loss": 3.3881397247314453,
+ "step": 6484
+ },
+ {
+ "epoch": 90.06989951944081,
+ "grad_norm": 0.2818542420864105,
+ "learning_rate": 0.0006,
+ "loss": 3.4260921478271484,
+ "step": 6485
+ },
+ {
+ "epoch": 90.08387942332897,
+ "grad_norm": 0.30521923303604126,
+ "learning_rate": 0.0006,
+ "loss": 3.430814504623413,
+ "step": 6486
+ },
+ {
+ "epoch": 90.09785932721712,
+ "grad_norm": 0.28015220165252686,
+ "learning_rate": 0.0006,
+ "loss": 3.4476559162139893,
+ "step": 6487
+ },
+ {
+ "epoch": 90.1118392311053,
+ "grad_norm": 0.2598329186439514,
+ "learning_rate": 0.0006,
+ "loss": 3.4090490341186523,
+ "step": 6488
+ },
+ {
+ "epoch": 90.12581913499345,
+ "grad_norm": 0.2669932246208191,
+ "learning_rate": 0.0006,
+ "loss": 3.3986735343933105,
+ "step": 6489
+ },
+ {
+ "epoch": 90.1397990388816,
+ "grad_norm": 0.25984710454940796,
+ "learning_rate": 0.0006,
+ "loss": 3.417846202850342,
+ "step": 6490
+ },
+ {
+ "epoch": 90.15377894276976,
+ "grad_norm": 0.2787732779979706,
+ "learning_rate": 0.0006,
+ "loss": 3.4399795532226562,
+ "step": 6491
+ },
+ {
+ "epoch": 90.16775884665793,
+ "grad_norm": 0.2931681275367737,
+ "learning_rate": 0.0006,
+ "loss": 3.4119021892547607,
+ "step": 6492
+ },
+ {
+ "epoch": 90.18173875054609,
+ "grad_norm": 0.33927759528160095,
+ "learning_rate": 0.0006,
+ "loss": 3.384705066680908,
+ "step": 6493
+ },
+ {
+ "epoch": 90.19571865443424,
+ "grad_norm": 0.3411446213722229,
+ "learning_rate": 0.0006,
+ "loss": 3.4089555740356445,
+ "step": 6494
+ },
+ {
+ "epoch": 90.20969855832242,
+ "grad_norm": 0.2604075074195862,
+ "learning_rate": 0.0006,
+ "loss": 3.4233946800231934,
+ "step": 6495
+ },
+ {
+ "epoch": 90.22367846221057,
+ "grad_norm": 0.24992363154888153,
+ "learning_rate": 0.0006,
+ "loss": 3.4724960327148438,
+ "step": 6496
+ },
+ {
+ "epoch": 90.23765836609873,
+ "grad_norm": 0.2375895380973816,
+ "learning_rate": 0.0006,
+ "loss": 3.458033561706543,
+ "step": 6497
+ },
+ {
+ "epoch": 90.2516382699869,
+ "grad_norm": 0.22809554636478424,
+ "learning_rate": 0.0006,
+ "loss": 3.408811092376709,
+ "step": 6498
+ },
+ {
+ "epoch": 90.26561817387505,
+ "grad_norm": 0.21157044172286987,
+ "learning_rate": 0.0006,
+ "loss": 3.4245152473449707,
+ "step": 6499
+ },
+ {
+ "epoch": 90.27959807776321,
+ "grad_norm": 0.22064797580242157,
+ "learning_rate": 0.0006,
+ "loss": 3.404344320297241,
+ "step": 6500
+ },
+ {
+ "epoch": 90.29357798165138,
+ "grad_norm": 0.24731965363025665,
+ "learning_rate": 0.0006,
+ "loss": 3.4225330352783203,
+ "step": 6501
+ },
+ {
+ "epoch": 90.30755788553954,
+ "grad_norm": 0.24225078523159027,
+ "learning_rate": 0.0006,
+ "loss": 3.432037591934204,
+ "step": 6502
+ },
+ {
+ "epoch": 90.3215377894277,
+ "grad_norm": 0.2522440552711487,
+ "learning_rate": 0.0006,
+ "loss": 3.4188179969787598,
+ "step": 6503
+ },
+ {
+ "epoch": 90.33551769331586,
+ "grad_norm": 0.25284767150878906,
+ "learning_rate": 0.0006,
+ "loss": 3.4024617671966553,
+ "step": 6504
+ },
+ {
+ "epoch": 90.34949759720402,
+ "grad_norm": 0.25376370549201965,
+ "learning_rate": 0.0006,
+ "loss": 3.4594764709472656,
+ "step": 6505
+ },
+ {
+ "epoch": 90.36347750109218,
+ "grad_norm": 0.26418960094451904,
+ "learning_rate": 0.0006,
+ "loss": 3.4271185398101807,
+ "step": 6506
+ },
+ {
+ "epoch": 90.37745740498035,
+ "grad_norm": 0.25357338786125183,
+ "learning_rate": 0.0006,
+ "loss": 3.453247308731079,
+ "step": 6507
+ },
+ {
+ "epoch": 90.3914373088685,
+ "grad_norm": 0.27471402287483215,
+ "learning_rate": 0.0006,
+ "loss": 3.4602694511413574,
+ "step": 6508
+ },
+ {
+ "epoch": 90.40541721275666,
+ "grad_norm": 0.277476966381073,
+ "learning_rate": 0.0006,
+ "loss": 3.445067882537842,
+ "step": 6509
+ },
+ {
+ "epoch": 90.41939711664482,
+ "grad_norm": 0.26854971051216125,
+ "learning_rate": 0.0006,
+ "loss": 3.4413654804229736,
+ "step": 6510
+ },
+ {
+ "epoch": 90.43337702053299,
+ "grad_norm": 0.2936476767063141,
+ "learning_rate": 0.0006,
+ "loss": 3.4006855487823486,
+ "step": 6511
+ },
+ {
+ "epoch": 90.44735692442114,
+ "grad_norm": 0.3106863796710968,
+ "learning_rate": 0.0006,
+ "loss": 3.4397261142730713,
+ "step": 6512
+ },
+ {
+ "epoch": 90.4613368283093,
+ "grad_norm": 0.2725449204444885,
+ "learning_rate": 0.0006,
+ "loss": 3.428178548812866,
+ "step": 6513
+ },
+ {
+ "epoch": 90.47531673219747,
+ "grad_norm": 0.24062374234199524,
+ "learning_rate": 0.0006,
+ "loss": 3.4532151222229004,
+ "step": 6514
+ },
+ {
+ "epoch": 90.48929663608563,
+ "grad_norm": 0.20387989282608032,
+ "learning_rate": 0.0006,
+ "loss": 3.4402451515197754,
+ "step": 6515
+ },
+ {
+ "epoch": 90.50327653997378,
+ "grad_norm": 0.22572724521160126,
+ "learning_rate": 0.0006,
+ "loss": 3.434530735015869,
+ "step": 6516
+ },
+ {
+ "epoch": 90.51725644386195,
+ "grad_norm": 0.238680899143219,
+ "learning_rate": 0.0006,
+ "loss": 3.4565868377685547,
+ "step": 6517
+ },
+ {
+ "epoch": 90.53123634775011,
+ "grad_norm": 0.21353137493133545,
+ "learning_rate": 0.0006,
+ "loss": 3.4423351287841797,
+ "step": 6518
+ },
+ {
+ "epoch": 90.54521625163827,
+ "grad_norm": 0.23349817097187042,
+ "learning_rate": 0.0006,
+ "loss": 3.445049285888672,
+ "step": 6519
+ },
+ {
+ "epoch": 90.55919615552644,
+ "grad_norm": 0.2219848334789276,
+ "learning_rate": 0.0006,
+ "loss": 3.45231556892395,
+ "step": 6520
+ },
+ {
+ "epoch": 90.57317605941459,
+ "grad_norm": 0.21629275381565094,
+ "learning_rate": 0.0006,
+ "loss": 3.4129867553710938,
+ "step": 6521
+ },
+ {
+ "epoch": 90.58715596330275,
+ "grad_norm": 0.2235035002231598,
+ "learning_rate": 0.0006,
+ "loss": 3.4591660499572754,
+ "step": 6522
+ },
+ {
+ "epoch": 90.60113586719092,
+ "grad_norm": 0.26521024107933044,
+ "learning_rate": 0.0006,
+ "loss": 3.4373743534088135,
+ "step": 6523
+ },
+ {
+ "epoch": 90.61511577107908,
+ "grad_norm": 0.2680232524871826,
+ "learning_rate": 0.0006,
+ "loss": 3.4387364387512207,
+ "step": 6524
+ },
+ {
+ "epoch": 90.62909567496723,
+ "grad_norm": 0.22376984357833862,
+ "learning_rate": 0.0006,
+ "loss": 3.419330358505249,
+ "step": 6525
+ },
+ {
+ "epoch": 90.6430755788554,
+ "grad_norm": 0.2209475338459015,
+ "learning_rate": 0.0006,
+ "loss": 3.392704486846924,
+ "step": 6526
+ },
+ {
+ "epoch": 90.65705548274356,
+ "grad_norm": 0.23697848618030548,
+ "learning_rate": 0.0006,
+ "loss": 3.4427690505981445,
+ "step": 6527
+ },
+ {
+ "epoch": 90.67103538663171,
+ "grad_norm": 0.23086845874786377,
+ "learning_rate": 0.0006,
+ "loss": 3.4663751125335693,
+ "step": 6528
+ },
+ {
+ "epoch": 90.68501529051987,
+ "grad_norm": 0.2024257779121399,
+ "learning_rate": 0.0006,
+ "loss": 3.4333503246307373,
+ "step": 6529
+ },
+ {
+ "epoch": 90.69899519440804,
+ "grad_norm": 0.20319615304470062,
+ "learning_rate": 0.0006,
+ "loss": 3.441241502761841,
+ "step": 6530
+ },
+ {
+ "epoch": 90.7129750982962,
+ "grad_norm": 0.20323923230171204,
+ "learning_rate": 0.0006,
+ "loss": 3.4349968433380127,
+ "step": 6531
+ },
+ {
+ "epoch": 90.72695500218435,
+ "grad_norm": 0.21205076575279236,
+ "learning_rate": 0.0006,
+ "loss": 3.4660801887512207,
+ "step": 6532
+ },
+ {
+ "epoch": 90.74093490607252,
+ "grad_norm": 0.20939043164253235,
+ "learning_rate": 0.0006,
+ "loss": 3.4456377029418945,
+ "step": 6533
+ },
+ {
+ "epoch": 90.75491480996068,
+ "grad_norm": 0.2304895967245102,
+ "learning_rate": 0.0006,
+ "loss": 3.4799728393554688,
+ "step": 6534
+ },
+ {
+ "epoch": 90.76889471384884,
+ "grad_norm": 0.23180201649665833,
+ "learning_rate": 0.0006,
+ "loss": 3.4439339637756348,
+ "step": 6535
+ },
+ {
+ "epoch": 90.78287461773701,
+ "grad_norm": 0.21886807680130005,
+ "learning_rate": 0.0006,
+ "loss": 3.457972526550293,
+ "step": 6536
+ },
+ {
+ "epoch": 90.79685452162516,
+ "grad_norm": 0.2383895367383957,
+ "learning_rate": 0.0006,
+ "loss": 3.4571423530578613,
+ "step": 6537
+ },
+ {
+ "epoch": 90.81083442551332,
+ "grad_norm": 0.28625327348709106,
+ "learning_rate": 0.0006,
+ "loss": 3.425898551940918,
+ "step": 6538
+ },
+ {
+ "epoch": 90.82481432940149,
+ "grad_norm": 0.2728622257709503,
+ "learning_rate": 0.0006,
+ "loss": 3.4169094562530518,
+ "step": 6539
+ },
+ {
+ "epoch": 90.83879423328965,
+ "grad_norm": 0.2563427984714508,
+ "learning_rate": 0.0006,
+ "loss": 3.412403106689453,
+ "step": 6540
+ },
+ {
+ "epoch": 90.8527741371778,
+ "grad_norm": 0.2255549281835556,
+ "learning_rate": 0.0006,
+ "loss": 3.455230712890625,
+ "step": 6541
+ },
+ {
+ "epoch": 90.86675404106597,
+ "grad_norm": 0.20950232446193695,
+ "learning_rate": 0.0006,
+ "loss": 3.4527735710144043,
+ "step": 6542
+ },
+ {
+ "epoch": 90.88073394495413,
+ "grad_norm": 0.21894556283950806,
+ "learning_rate": 0.0006,
+ "loss": 3.4224467277526855,
+ "step": 6543
+ },
+ {
+ "epoch": 90.89471384884229,
+ "grad_norm": 0.21209512650966644,
+ "learning_rate": 0.0006,
+ "loss": 3.431763172149658,
+ "step": 6544
+ },
+ {
+ "epoch": 90.90869375273044,
+ "grad_norm": 0.2315598577260971,
+ "learning_rate": 0.0006,
+ "loss": 3.450211524963379,
+ "step": 6545
+ },
+ {
+ "epoch": 90.92267365661861,
+ "grad_norm": 0.2402508407831192,
+ "learning_rate": 0.0006,
+ "loss": 3.455052375793457,
+ "step": 6546
+ },
+ {
+ "epoch": 90.93665356050677,
+ "grad_norm": 0.2308250069618225,
+ "learning_rate": 0.0006,
+ "loss": 3.4867026805877686,
+ "step": 6547
+ },
+ {
+ "epoch": 90.95063346439493,
+ "grad_norm": 0.24072574079036713,
+ "learning_rate": 0.0006,
+ "loss": 3.4766125679016113,
+ "step": 6548
+ },
+ {
+ "epoch": 90.9646133682831,
+ "grad_norm": 0.24275705218315125,
+ "learning_rate": 0.0006,
+ "loss": 3.4633054733276367,
+ "step": 6549
+ },
+ {
+ "epoch": 90.97859327217125,
+ "grad_norm": 0.22423091530799866,
+ "learning_rate": 0.0006,
+ "loss": 3.4584946632385254,
+ "step": 6550
+ },
+ {
+ "epoch": 90.99257317605941,
+ "grad_norm": 0.225535050034523,
+ "learning_rate": 0.0006,
+ "loss": 3.453803539276123,
+ "step": 6551
+ },
+ {
+ "epoch": 91.0,
+ "grad_norm": 0.2719618082046509,
+ "learning_rate": 0.0006,
+ "loss": 3.4374547004699707,
+ "step": 6552
+ },
+ {
+ "epoch": 91.0,
+ "eval_loss": 4.004940986633301,
+ "eval_runtime": 46.5029,
+ "eval_samples_per_second": 52.513,
+ "eval_steps_per_second": 3.29,
+ "step": 6552
+ },
+ {
+ "epoch": 91.01397990388816,
+ "grad_norm": 0.2452932447195053,
+ "learning_rate": 0.0006,
+ "loss": 3.4305531978607178,
+ "step": 6553
+ },
+ {
+ "epoch": 91.02795980777633,
+ "grad_norm": 0.25326210260391235,
+ "learning_rate": 0.0006,
+ "loss": 3.384127140045166,
+ "step": 6554
+ },
+ {
+ "epoch": 91.04193971166448,
+ "grad_norm": 0.2665634751319885,
+ "learning_rate": 0.0006,
+ "loss": 3.4163594245910645,
+ "step": 6555
+ },
+ {
+ "epoch": 91.05591961555264,
+ "grad_norm": 0.2732037603855133,
+ "learning_rate": 0.0006,
+ "loss": 3.3771586418151855,
+ "step": 6556
+ },
+ {
+ "epoch": 91.06989951944081,
+ "grad_norm": 0.23763145506381989,
+ "learning_rate": 0.0006,
+ "loss": 3.3978042602539062,
+ "step": 6557
+ },
+ {
+ "epoch": 91.08387942332897,
+ "grad_norm": 0.25869178771972656,
+ "learning_rate": 0.0006,
+ "loss": 3.3812952041625977,
+ "step": 6558
+ },
+ {
+ "epoch": 91.09785932721712,
+ "grad_norm": 0.24454088509082794,
+ "learning_rate": 0.0006,
+ "loss": 3.4127495288848877,
+ "step": 6559
+ },
+ {
+ "epoch": 91.1118392311053,
+ "grad_norm": 0.21807557344436646,
+ "learning_rate": 0.0006,
+ "loss": 3.4293503761291504,
+ "step": 6560
+ },
+ {
+ "epoch": 91.12581913499345,
+ "grad_norm": 0.24649474024772644,
+ "learning_rate": 0.0006,
+ "loss": 3.3676466941833496,
+ "step": 6561
+ },
+ {
+ "epoch": 91.1397990388816,
+ "grad_norm": 0.232633575797081,
+ "learning_rate": 0.0006,
+ "loss": 3.3941407203674316,
+ "step": 6562
+ },
+ {
+ "epoch": 91.15377894276976,
+ "grad_norm": 0.21927355229854584,
+ "learning_rate": 0.0006,
+ "loss": 3.4050021171569824,
+ "step": 6563
+ },
+ {
+ "epoch": 91.16775884665793,
+ "grad_norm": 0.22213764488697052,
+ "learning_rate": 0.0006,
+ "loss": 3.4130403995513916,
+ "step": 6564
+ },
+ {
+ "epoch": 91.18173875054609,
+ "grad_norm": 0.23417729139328003,
+ "learning_rate": 0.0006,
+ "loss": 3.4020724296569824,
+ "step": 6565
+ },
+ {
+ "epoch": 91.19571865443424,
+ "grad_norm": 0.2246304750442505,
+ "learning_rate": 0.0006,
+ "loss": 3.4340522289276123,
+ "step": 6566
+ },
+ {
+ "epoch": 91.20969855832242,
+ "grad_norm": 0.221421480178833,
+ "learning_rate": 0.0006,
+ "loss": 3.4325551986694336,
+ "step": 6567
+ },
+ {
+ "epoch": 91.22367846221057,
+ "grad_norm": 0.22669611871242523,
+ "learning_rate": 0.0006,
+ "loss": 3.379284381866455,
+ "step": 6568
+ },
+ {
+ "epoch": 91.23765836609873,
+ "grad_norm": 0.24856597185134888,
+ "learning_rate": 0.0006,
+ "loss": 3.4661848545074463,
+ "step": 6569
+ },
+ {
+ "epoch": 91.2516382699869,
+ "grad_norm": 0.2874867022037506,
+ "learning_rate": 0.0006,
+ "loss": 3.421952486038208,
+ "step": 6570
+ },
+ {
+ "epoch": 91.26561817387505,
+ "grad_norm": 0.2838810384273529,
+ "learning_rate": 0.0006,
+ "loss": 3.4232606887817383,
+ "step": 6571
+ },
+ {
+ "epoch": 91.27959807776321,
+ "grad_norm": 0.27111512422561646,
+ "learning_rate": 0.0006,
+ "loss": 3.427985668182373,
+ "step": 6572
+ },
+ {
+ "epoch": 91.29357798165138,
+ "grad_norm": 0.25255000591278076,
+ "learning_rate": 0.0006,
+ "loss": 3.437727451324463,
+ "step": 6573
+ },
+ {
+ "epoch": 91.30755788553954,
+ "grad_norm": 0.24753448367118835,
+ "learning_rate": 0.0006,
+ "loss": 3.431509494781494,
+ "step": 6574
+ },
+ {
+ "epoch": 91.3215377894277,
+ "grad_norm": 0.3003036081790924,
+ "learning_rate": 0.0006,
+ "loss": 3.4692001342773438,
+ "step": 6575
+ },
+ {
+ "epoch": 91.33551769331586,
+ "grad_norm": 0.2745291590690613,
+ "learning_rate": 0.0006,
+ "loss": 3.428563117980957,
+ "step": 6576
+ },
+ {
+ "epoch": 91.34949759720402,
+ "grad_norm": 0.24292010068893433,
+ "learning_rate": 0.0006,
+ "loss": 3.433021068572998,
+ "step": 6577
+ },
+ {
+ "epoch": 91.36347750109218,
+ "grad_norm": 0.2417255938053131,
+ "learning_rate": 0.0006,
+ "loss": 3.42389178276062,
+ "step": 6578
+ },
+ {
+ "epoch": 91.37745740498035,
+ "grad_norm": 0.26591625809669495,
+ "learning_rate": 0.0006,
+ "loss": 3.446324348449707,
+ "step": 6579
+ },
+ {
+ "epoch": 91.3914373088685,
+ "grad_norm": 0.2473662942647934,
+ "learning_rate": 0.0006,
+ "loss": 3.4376204013824463,
+ "step": 6580
+ },
+ {
+ "epoch": 91.40541721275666,
+ "grad_norm": 0.22889690101146698,
+ "learning_rate": 0.0006,
+ "loss": 3.388927936553955,
+ "step": 6581
+ },
+ {
+ "epoch": 91.41939711664482,
+ "grad_norm": 0.24227893352508545,
+ "learning_rate": 0.0006,
+ "loss": 3.4282050132751465,
+ "step": 6582
+ },
+ {
+ "epoch": 91.43337702053299,
+ "grad_norm": 0.22293400764465332,
+ "learning_rate": 0.0006,
+ "loss": 3.4289140701293945,
+ "step": 6583
+ },
+ {
+ "epoch": 91.44735692442114,
+ "grad_norm": 0.22775113582611084,
+ "learning_rate": 0.0006,
+ "loss": 3.417121410369873,
+ "step": 6584
+ },
+ {
+ "epoch": 91.4613368283093,
+ "grad_norm": 0.23245708644390106,
+ "learning_rate": 0.0006,
+ "loss": 3.420234203338623,
+ "step": 6585
+ },
+ {
+ "epoch": 91.47531673219747,
+ "grad_norm": 0.2506006062030792,
+ "learning_rate": 0.0006,
+ "loss": 3.415706157684326,
+ "step": 6586
+ },
+ {
+ "epoch": 91.48929663608563,
+ "grad_norm": 0.23158405721187592,
+ "learning_rate": 0.0006,
+ "loss": 3.405642509460449,
+ "step": 6587
+ },
+ {
+ "epoch": 91.50327653997378,
+ "grad_norm": 0.2237837165594101,
+ "learning_rate": 0.0006,
+ "loss": 3.4335689544677734,
+ "step": 6588
+ },
+ {
+ "epoch": 91.51725644386195,
+ "grad_norm": 0.22722665965557098,
+ "learning_rate": 0.0006,
+ "loss": 3.4654386043548584,
+ "step": 6589
+ },
+ {
+ "epoch": 91.53123634775011,
+ "grad_norm": 0.2230997383594513,
+ "learning_rate": 0.0006,
+ "loss": 3.4406728744506836,
+ "step": 6590
+ },
+ {
+ "epoch": 91.54521625163827,
+ "grad_norm": 0.20826208591461182,
+ "learning_rate": 0.0006,
+ "loss": 3.461658000946045,
+ "step": 6591
+ },
+ {
+ "epoch": 91.55919615552644,
+ "grad_norm": 0.22250162065029144,
+ "learning_rate": 0.0006,
+ "loss": 3.419250011444092,
+ "step": 6592
+ },
+ {
+ "epoch": 91.57317605941459,
+ "grad_norm": 0.2545854449272156,
+ "learning_rate": 0.0006,
+ "loss": 3.443878173828125,
+ "step": 6593
+ },
+ {
+ "epoch": 91.58715596330275,
+ "grad_norm": 0.2367449849843979,
+ "learning_rate": 0.0006,
+ "loss": 3.423168659210205,
+ "step": 6594
+ },
+ {
+ "epoch": 91.60113586719092,
+ "grad_norm": 0.2320464551448822,
+ "learning_rate": 0.0006,
+ "loss": 3.4623992443084717,
+ "step": 6595
+ },
+ {
+ "epoch": 91.61511577107908,
+ "grad_norm": 0.22751834988594055,
+ "learning_rate": 0.0006,
+ "loss": 3.4606170654296875,
+ "step": 6596
+ },
+ {
+ "epoch": 91.62909567496723,
+ "grad_norm": 0.22919580340385437,
+ "learning_rate": 0.0006,
+ "loss": 3.4593071937561035,
+ "step": 6597
+ },
+ {
+ "epoch": 91.6430755788554,
+ "grad_norm": 0.21247684955596924,
+ "learning_rate": 0.0006,
+ "loss": 3.464904308319092,
+ "step": 6598
+ },
+ {
+ "epoch": 91.65705548274356,
+ "grad_norm": 0.21709196269512177,
+ "learning_rate": 0.0006,
+ "loss": 3.4596290588378906,
+ "step": 6599
+ },
+ {
+ "epoch": 91.67103538663171,
+ "grad_norm": 0.2424597144126892,
+ "learning_rate": 0.0006,
+ "loss": 3.448538303375244,
+ "step": 6600
+ },
+ {
+ "epoch": 91.68501529051987,
+ "grad_norm": 0.2395647168159485,
+ "learning_rate": 0.0006,
+ "loss": 3.4488210678100586,
+ "step": 6601
+ },
+ {
+ "epoch": 91.69899519440804,
+ "grad_norm": 0.2409609705209732,
+ "learning_rate": 0.0006,
+ "loss": 3.4203569889068604,
+ "step": 6602
+ },
+ {
+ "epoch": 91.7129750982962,
+ "grad_norm": 0.23729364573955536,
+ "learning_rate": 0.0006,
+ "loss": 3.410933494567871,
+ "step": 6603
+ },
+ {
+ "epoch": 91.72695500218435,
+ "grad_norm": 0.210970938205719,
+ "learning_rate": 0.0006,
+ "loss": 3.432286024093628,
+ "step": 6604
+ },
+ {
+ "epoch": 91.74093490607252,
+ "grad_norm": 0.25386837124824524,
+ "learning_rate": 0.0006,
+ "loss": 3.4530787467956543,
+ "step": 6605
+ },
+ {
+ "epoch": 91.75491480996068,
+ "grad_norm": 0.23256954550743103,
+ "learning_rate": 0.0006,
+ "loss": 3.428518772125244,
+ "step": 6606
+ },
+ {
+ "epoch": 91.76889471384884,
+ "grad_norm": 0.23063044250011444,
+ "learning_rate": 0.0006,
+ "loss": 3.4331274032592773,
+ "step": 6607
+ },
+ {
+ "epoch": 91.78287461773701,
+ "grad_norm": 0.22678597271442413,
+ "learning_rate": 0.0006,
+ "loss": 3.485541343688965,
+ "step": 6608
+ },
+ {
+ "epoch": 91.79685452162516,
+ "grad_norm": 0.23040807247161865,
+ "learning_rate": 0.0006,
+ "loss": 3.413050651550293,
+ "step": 6609
+ },
+ {
+ "epoch": 91.81083442551332,
+ "grad_norm": 0.24709701538085938,
+ "learning_rate": 0.0006,
+ "loss": 3.4578094482421875,
+ "step": 6610
+ },
+ {
+ "epoch": 91.82481432940149,
+ "grad_norm": 0.2618633806705475,
+ "learning_rate": 0.0006,
+ "loss": 3.459503173828125,
+ "step": 6611
+ },
+ {
+ "epoch": 91.83879423328965,
+ "grad_norm": 0.2603336274623871,
+ "learning_rate": 0.0006,
+ "loss": 3.476443290710449,
+ "step": 6612
+ },
+ {
+ "epoch": 91.8527741371778,
+ "grad_norm": 0.2600095868110657,
+ "learning_rate": 0.0006,
+ "loss": 3.4230222702026367,
+ "step": 6613
+ },
+ {
+ "epoch": 91.86675404106597,
+ "grad_norm": 0.3156466484069824,
+ "learning_rate": 0.0006,
+ "loss": 3.4416275024414062,
+ "step": 6614
+ },
+ {
+ "epoch": 91.88073394495413,
+ "grad_norm": 0.33223336935043335,
+ "learning_rate": 0.0006,
+ "loss": 3.459763526916504,
+ "step": 6615
+ },
+ {
+ "epoch": 91.89471384884229,
+ "grad_norm": 0.24999754130840302,
+ "learning_rate": 0.0006,
+ "loss": 3.4882445335388184,
+ "step": 6616
+ },
+ {
+ "epoch": 91.90869375273044,
+ "grad_norm": 0.2177472859621048,
+ "learning_rate": 0.0006,
+ "loss": 3.4443440437316895,
+ "step": 6617
+ },
+ {
+ "epoch": 91.92267365661861,
+ "grad_norm": 0.23315973579883575,
+ "learning_rate": 0.0006,
+ "loss": 3.453639507293701,
+ "step": 6618
+ },
+ {
+ "epoch": 91.93665356050677,
+ "grad_norm": 0.25978362560272217,
+ "learning_rate": 0.0006,
+ "loss": 3.4746177196502686,
+ "step": 6619
+ },
+ {
+ "epoch": 91.95063346439493,
+ "grad_norm": 0.2419944554567337,
+ "learning_rate": 0.0006,
+ "loss": 3.4525551795959473,
+ "step": 6620
+ },
+ {
+ "epoch": 91.9646133682831,
+ "grad_norm": 0.23098371922969818,
+ "learning_rate": 0.0006,
+ "loss": 3.4819016456604004,
+ "step": 6621
+ },
+ {
+ "epoch": 91.97859327217125,
+ "grad_norm": 0.2250458300113678,
+ "learning_rate": 0.0006,
+ "loss": 3.4790477752685547,
+ "step": 6622
+ },
+ {
+ "epoch": 91.99257317605941,
+ "grad_norm": 0.2512681484222412,
+ "learning_rate": 0.0006,
+ "loss": 3.444125175476074,
+ "step": 6623
+ },
+ {
+ "epoch": 92.0,
+ "grad_norm": 0.29921481013298035,
+ "learning_rate": 0.0006,
+ "loss": 3.4197065830230713,
+ "step": 6624
+ },
+ {
+ "epoch": 92.0,
+ "eval_loss": 3.990424633026123,
+ "eval_runtime": 46.396,
+ "eval_samples_per_second": 52.634,
+ "eval_steps_per_second": 3.298,
+ "step": 6624
+ },
+ {
+ "epoch": 92.01397990388816,
+ "grad_norm": 0.293844610452652,
+ "learning_rate": 0.0006,
+ "loss": 3.401441812515259,
+ "step": 6625
+ },
+ {
+ "epoch": 92.02795980777633,
+ "grad_norm": 0.3120594620704651,
+ "learning_rate": 0.0006,
+ "loss": 3.417057514190674,
+ "step": 6626
+ },
+ {
+ "epoch": 92.04193971166448,
+ "grad_norm": 0.3397780656814575,
+ "learning_rate": 0.0006,
+ "loss": 3.4054136276245117,
+ "step": 6627
+ },
+ {
+ "epoch": 92.05591961555264,
+ "grad_norm": 0.37544959783554077,
+ "learning_rate": 0.0006,
+ "loss": 3.372990608215332,
+ "step": 6628
+ },
+ {
+ "epoch": 92.06989951944081,
+ "grad_norm": 0.3074891269207001,
+ "learning_rate": 0.0006,
+ "loss": 3.4348435401916504,
+ "step": 6629
+ },
+ {
+ "epoch": 92.08387942332897,
+ "grad_norm": 0.2593157887458801,
+ "learning_rate": 0.0006,
+ "loss": 3.398172378540039,
+ "step": 6630
+ },
+ {
+ "epoch": 92.09785932721712,
+ "grad_norm": 0.28176161646842957,
+ "learning_rate": 0.0006,
+ "loss": 3.4359188079833984,
+ "step": 6631
+ },
+ {
+ "epoch": 92.1118392311053,
+ "grad_norm": 0.2928430140018463,
+ "learning_rate": 0.0006,
+ "loss": 3.399282455444336,
+ "step": 6632
+ },
+ {
+ "epoch": 92.12581913499345,
+ "grad_norm": 0.2591678202152252,
+ "learning_rate": 0.0006,
+ "loss": 3.420551300048828,
+ "step": 6633
+ },
+ {
+ "epoch": 92.1397990388816,
+ "grad_norm": 0.2669394314289093,
+ "learning_rate": 0.0006,
+ "loss": 3.4320037364959717,
+ "step": 6634
+ },
+ {
+ "epoch": 92.15377894276976,
+ "grad_norm": 0.2545861005783081,
+ "learning_rate": 0.0006,
+ "loss": 3.40364933013916,
+ "step": 6635
+ },
+ {
+ "epoch": 92.16775884665793,
+ "grad_norm": 0.27218759059906006,
+ "learning_rate": 0.0006,
+ "loss": 3.404567241668701,
+ "step": 6636
+ },
+ {
+ "epoch": 92.18173875054609,
+ "grad_norm": 0.2475498616695404,
+ "learning_rate": 0.0006,
+ "loss": 3.414416790008545,
+ "step": 6637
+ },
+ {
+ "epoch": 92.19571865443424,
+ "grad_norm": 0.2325468212366104,
+ "learning_rate": 0.0006,
+ "loss": 3.406236171722412,
+ "step": 6638
+ },
+ {
+ "epoch": 92.20969855832242,
+ "grad_norm": 0.2711200416088104,
+ "learning_rate": 0.0006,
+ "loss": 3.428661823272705,
+ "step": 6639
+ },
+ {
+ "epoch": 92.22367846221057,
+ "grad_norm": 0.24988055229187012,
+ "learning_rate": 0.0006,
+ "loss": 3.431516408920288,
+ "step": 6640
+ },
+ {
+ "epoch": 92.23765836609873,
+ "grad_norm": 0.25862860679626465,
+ "learning_rate": 0.0006,
+ "loss": 3.4037771224975586,
+ "step": 6641
+ },
+ {
+ "epoch": 92.2516382699869,
+ "grad_norm": 0.25960293412208557,
+ "learning_rate": 0.0006,
+ "loss": 3.4335427284240723,
+ "step": 6642
+ },
+ {
+ "epoch": 92.26561817387505,
+ "grad_norm": 0.2285071611404419,
+ "learning_rate": 0.0006,
+ "loss": 3.409482002258301,
+ "step": 6643
+ },
+ {
+ "epoch": 92.27959807776321,
+ "grad_norm": 0.23144803941249847,
+ "learning_rate": 0.0006,
+ "loss": 3.4032318592071533,
+ "step": 6644
+ },
+ {
+ "epoch": 92.29357798165138,
+ "grad_norm": 0.243625670671463,
+ "learning_rate": 0.0006,
+ "loss": 3.441851854324341,
+ "step": 6645
+ },
+ {
+ "epoch": 92.30755788553954,
+ "grad_norm": 0.24354898929595947,
+ "learning_rate": 0.0006,
+ "loss": 3.4319992065429688,
+ "step": 6646
+ },
+ {
+ "epoch": 92.3215377894277,
+ "grad_norm": 0.27033108472824097,
+ "learning_rate": 0.0006,
+ "loss": 3.423489809036255,
+ "step": 6647
+ },
+ {
+ "epoch": 92.33551769331586,
+ "grad_norm": 0.2687682509422302,
+ "learning_rate": 0.0006,
+ "loss": 3.3948974609375,
+ "step": 6648
+ },
+ {
+ "epoch": 92.34949759720402,
+ "grad_norm": 0.23249676823616028,
+ "learning_rate": 0.0006,
+ "loss": 3.4357218742370605,
+ "step": 6649
+ },
+ {
+ "epoch": 92.36347750109218,
+ "grad_norm": 0.24828878045082092,
+ "learning_rate": 0.0006,
+ "loss": 3.4487977027893066,
+ "step": 6650
+ },
+ {
+ "epoch": 92.37745740498035,
+ "grad_norm": 0.24538534879684448,
+ "learning_rate": 0.0006,
+ "loss": 3.4412765502929688,
+ "step": 6651
+ },
+ {
+ "epoch": 92.3914373088685,
+ "grad_norm": 0.2199631631374359,
+ "learning_rate": 0.0006,
+ "loss": 3.4368536472320557,
+ "step": 6652
+ },
+ {
+ "epoch": 92.40541721275666,
+ "grad_norm": 0.2277228981256485,
+ "learning_rate": 0.0006,
+ "loss": 3.446643829345703,
+ "step": 6653
+ },
+ {
+ "epoch": 92.41939711664482,
+ "grad_norm": 0.21492542326450348,
+ "learning_rate": 0.0006,
+ "loss": 3.4235596656799316,
+ "step": 6654
+ },
+ {
+ "epoch": 92.43337702053299,
+ "grad_norm": 0.2213222086429596,
+ "learning_rate": 0.0006,
+ "loss": 3.4097518920898438,
+ "step": 6655
+ },
+ {
+ "epoch": 92.44735692442114,
+ "grad_norm": 0.23967257142066956,
+ "learning_rate": 0.0006,
+ "loss": 3.412379503250122,
+ "step": 6656
+ },
+ {
+ "epoch": 92.4613368283093,
+ "grad_norm": 0.24196487665176392,
+ "learning_rate": 0.0006,
+ "loss": 3.399301290512085,
+ "step": 6657
+ },
+ {
+ "epoch": 92.47531673219747,
+ "grad_norm": 0.23678216338157654,
+ "learning_rate": 0.0006,
+ "loss": 3.4319005012512207,
+ "step": 6658
+ },
+ {
+ "epoch": 92.48929663608563,
+ "grad_norm": 0.24745887517929077,
+ "learning_rate": 0.0006,
+ "loss": 3.424887180328369,
+ "step": 6659
+ },
+ {
+ "epoch": 92.50327653997378,
+ "grad_norm": 0.2678569257259369,
+ "learning_rate": 0.0006,
+ "loss": 3.415461778640747,
+ "step": 6660
+ },
+ {
+ "epoch": 92.51725644386195,
+ "grad_norm": 0.28347229957580566,
+ "learning_rate": 0.0006,
+ "loss": 3.423457145690918,
+ "step": 6661
+ },
+ {
+ "epoch": 92.53123634775011,
+ "grad_norm": 0.2731434106826782,
+ "learning_rate": 0.0006,
+ "loss": 3.4127073287963867,
+ "step": 6662
+ },
+ {
+ "epoch": 92.54521625163827,
+ "grad_norm": 0.24231183528900146,
+ "learning_rate": 0.0006,
+ "loss": 3.4209909439086914,
+ "step": 6663
+ },
+ {
+ "epoch": 92.55919615552644,
+ "grad_norm": 0.21519047021865845,
+ "learning_rate": 0.0006,
+ "loss": 3.4467225074768066,
+ "step": 6664
+ },
+ {
+ "epoch": 92.57317605941459,
+ "grad_norm": 0.26692843437194824,
+ "learning_rate": 0.0006,
+ "loss": 3.422398090362549,
+ "step": 6665
+ },
+ {
+ "epoch": 92.58715596330275,
+ "grad_norm": 0.25423285365104675,
+ "learning_rate": 0.0006,
+ "loss": 3.466486930847168,
+ "step": 6666
+ },
+ {
+ "epoch": 92.60113586719092,
+ "grad_norm": 0.21296674013137817,
+ "learning_rate": 0.0006,
+ "loss": 3.432711124420166,
+ "step": 6667
+ },
+ {
+ "epoch": 92.61511577107908,
+ "grad_norm": 0.2509782016277313,
+ "learning_rate": 0.0006,
+ "loss": 3.4516279697418213,
+ "step": 6668
+ },
+ {
+ "epoch": 92.62909567496723,
+ "grad_norm": 0.2675098776817322,
+ "learning_rate": 0.0006,
+ "loss": 3.456596851348877,
+ "step": 6669
+ },
+ {
+ "epoch": 92.6430755788554,
+ "grad_norm": 0.29142946004867554,
+ "learning_rate": 0.0006,
+ "loss": 3.427300453186035,
+ "step": 6670
+ },
+ {
+ "epoch": 92.65705548274356,
+ "grad_norm": 0.25576716661453247,
+ "learning_rate": 0.0006,
+ "loss": 3.4819178581237793,
+ "step": 6671
+ },
+ {
+ "epoch": 92.67103538663171,
+ "grad_norm": 0.24975362420082092,
+ "learning_rate": 0.0006,
+ "loss": 3.4298954010009766,
+ "step": 6672
+ },
+ {
+ "epoch": 92.68501529051987,
+ "grad_norm": 0.24055132269859314,
+ "learning_rate": 0.0006,
+ "loss": 3.4593138694763184,
+ "step": 6673
+ },
+ {
+ "epoch": 92.69899519440804,
+ "grad_norm": 0.25517308712005615,
+ "learning_rate": 0.0006,
+ "loss": 3.449608325958252,
+ "step": 6674
+ },
+ {
+ "epoch": 92.7129750982962,
+ "grad_norm": 0.25566577911376953,
+ "learning_rate": 0.0006,
+ "loss": 3.444607734680176,
+ "step": 6675
+ },
+ {
+ "epoch": 92.72695500218435,
+ "grad_norm": 0.23388373851776123,
+ "learning_rate": 0.0006,
+ "loss": 3.437791347503662,
+ "step": 6676
+ },
+ {
+ "epoch": 92.74093490607252,
+ "grad_norm": 0.2368888556957245,
+ "learning_rate": 0.0006,
+ "loss": 3.4171619415283203,
+ "step": 6677
+ },
+ {
+ "epoch": 92.75491480996068,
+ "grad_norm": 0.2242693156003952,
+ "learning_rate": 0.0006,
+ "loss": 3.451737403869629,
+ "step": 6678
+ },
+ {
+ "epoch": 92.76889471384884,
+ "grad_norm": 0.23336493968963623,
+ "learning_rate": 0.0006,
+ "loss": 3.4509100914001465,
+ "step": 6679
+ },
+ {
+ "epoch": 92.78287461773701,
+ "grad_norm": 0.23847080767154694,
+ "learning_rate": 0.0006,
+ "loss": 3.435800313949585,
+ "step": 6680
+ },
+ {
+ "epoch": 92.79685452162516,
+ "grad_norm": 0.24109719693660736,
+ "learning_rate": 0.0006,
+ "loss": 3.454310417175293,
+ "step": 6681
+ },
+ {
+ "epoch": 92.81083442551332,
+ "grad_norm": 0.2272281050682068,
+ "learning_rate": 0.0006,
+ "loss": 3.455033540725708,
+ "step": 6682
+ },
+ {
+ "epoch": 92.82481432940149,
+ "grad_norm": 0.2284226417541504,
+ "learning_rate": 0.0006,
+ "loss": 3.425632953643799,
+ "step": 6683
+ },
+ {
+ "epoch": 92.83879423328965,
+ "grad_norm": 0.23978091776371002,
+ "learning_rate": 0.0006,
+ "loss": 3.451955795288086,
+ "step": 6684
+ },
+ {
+ "epoch": 92.8527741371778,
+ "grad_norm": 0.2376631647348404,
+ "learning_rate": 0.0006,
+ "loss": 3.429849147796631,
+ "step": 6685
+ },
+ {
+ "epoch": 92.86675404106597,
+ "grad_norm": 0.22930841147899628,
+ "learning_rate": 0.0006,
+ "loss": 3.4608373641967773,
+ "step": 6686
+ },
+ {
+ "epoch": 92.88073394495413,
+ "grad_norm": 0.22491370141506195,
+ "learning_rate": 0.0006,
+ "loss": 3.4849934577941895,
+ "step": 6687
+ },
+ {
+ "epoch": 92.89471384884229,
+ "grad_norm": 0.21682271361351013,
+ "learning_rate": 0.0006,
+ "loss": 3.4571456909179688,
+ "step": 6688
+ },
+ {
+ "epoch": 92.90869375273044,
+ "grad_norm": 0.234682098031044,
+ "learning_rate": 0.0006,
+ "loss": 3.4258341789245605,
+ "step": 6689
+ },
+ {
+ "epoch": 92.92267365661861,
+ "grad_norm": 0.22355671226978302,
+ "learning_rate": 0.0006,
+ "loss": 3.4478983879089355,
+ "step": 6690
+ },
+ {
+ "epoch": 92.93665356050677,
+ "grad_norm": 0.20840972661972046,
+ "learning_rate": 0.0006,
+ "loss": 3.456587791442871,
+ "step": 6691
+ },
+ {
+ "epoch": 92.95063346439493,
+ "grad_norm": 0.22297403216362,
+ "learning_rate": 0.0006,
+ "loss": 3.4647953510284424,
+ "step": 6692
+ },
+ {
+ "epoch": 92.9646133682831,
+ "grad_norm": 0.2390260398387909,
+ "learning_rate": 0.0006,
+ "loss": 3.442249298095703,
+ "step": 6693
+ },
+ {
+ "epoch": 92.97859327217125,
+ "grad_norm": 0.2315380722284317,
+ "learning_rate": 0.0006,
+ "loss": 3.4680938720703125,
+ "step": 6694
+ },
+ {
+ "epoch": 92.99257317605941,
+ "grad_norm": 0.21837230026721954,
+ "learning_rate": 0.0006,
+ "loss": 3.424527645111084,
+ "step": 6695
+ },
+ {
+ "epoch": 93.0,
+ "grad_norm": 0.23587742447853088,
+ "learning_rate": 0.0006,
+ "loss": 3.426384449005127,
+ "step": 6696
+ },
+ {
+ "epoch": 93.0,
+ "eval_loss": 4.011545181274414,
+ "eval_runtime": 47.0685,
+ "eval_samples_per_second": 51.882,
+ "eval_steps_per_second": 3.251,
+ "step": 6696
+ },
+ {
+ "epoch": 93.01397990388816,
+ "grad_norm": 0.25423353910446167,
+ "learning_rate": 0.0006,
+ "loss": 3.3949575424194336,
+ "step": 6697
+ },
+ {
+ "epoch": 93.02795980777633,
+ "grad_norm": 0.256784051656723,
+ "learning_rate": 0.0006,
+ "loss": 3.4352171421051025,
+ "step": 6698
+ },
+ {
+ "epoch": 93.04193971166448,
+ "grad_norm": 0.2239868938922882,
+ "learning_rate": 0.0006,
+ "loss": 3.361023426055908,
+ "step": 6699
+ },
+ {
+ "epoch": 93.05591961555264,
+ "grad_norm": 0.227825328707695,
+ "learning_rate": 0.0006,
+ "loss": 3.4022746086120605,
+ "step": 6700
+ },
+ {
+ "epoch": 93.06989951944081,
+ "grad_norm": 0.24019530415534973,
+ "learning_rate": 0.0006,
+ "loss": 3.38535737991333,
+ "step": 6701
+ },
+ {
+ "epoch": 93.08387942332897,
+ "grad_norm": 0.2553795874118805,
+ "learning_rate": 0.0006,
+ "loss": 3.4249091148376465,
+ "step": 6702
+ },
+ {
+ "epoch": 93.09785932721712,
+ "grad_norm": 0.2860201299190521,
+ "learning_rate": 0.0006,
+ "loss": 3.4192934036254883,
+ "step": 6703
+ },
+ {
+ "epoch": 93.1118392311053,
+ "grad_norm": 0.2675059139728546,
+ "learning_rate": 0.0006,
+ "loss": 3.423948287963867,
+ "step": 6704
+ },
+ {
+ "epoch": 93.12581913499345,
+ "grad_norm": 0.21901658177375793,
+ "learning_rate": 0.0006,
+ "loss": 3.402798652648926,
+ "step": 6705
+ },
+ {
+ "epoch": 93.1397990388816,
+ "grad_norm": 0.27664417028427124,
+ "learning_rate": 0.0006,
+ "loss": 3.4677541255950928,
+ "step": 6706
+ },
+ {
+ "epoch": 93.15377894276976,
+ "grad_norm": 0.30117082595825195,
+ "learning_rate": 0.0006,
+ "loss": 3.423790693283081,
+ "step": 6707
+ },
+ {
+ "epoch": 93.16775884665793,
+ "grad_norm": 0.26260191202163696,
+ "learning_rate": 0.0006,
+ "loss": 3.427980422973633,
+ "step": 6708
+ },
+ {
+ "epoch": 93.18173875054609,
+ "grad_norm": 0.24175108969211578,
+ "learning_rate": 0.0006,
+ "loss": 3.3951404094696045,
+ "step": 6709
+ },
+ {
+ "epoch": 93.19571865443424,
+ "grad_norm": 0.2562611699104309,
+ "learning_rate": 0.0006,
+ "loss": 3.3931374549865723,
+ "step": 6710
+ },
+ {
+ "epoch": 93.20969855832242,
+ "grad_norm": 0.3151496946811676,
+ "learning_rate": 0.0006,
+ "loss": 3.4212417602539062,
+ "step": 6711
+ },
+ {
+ "epoch": 93.22367846221057,
+ "grad_norm": 0.3006970286369324,
+ "learning_rate": 0.0006,
+ "loss": 3.4395434856414795,
+ "step": 6712
+ },
+ {
+ "epoch": 93.23765836609873,
+ "grad_norm": 0.2450924962759018,
+ "learning_rate": 0.0006,
+ "loss": 3.421356201171875,
+ "step": 6713
+ },
+ {
+ "epoch": 93.2516382699869,
+ "grad_norm": 0.20292925834655762,
+ "learning_rate": 0.0006,
+ "loss": 3.4097542762756348,
+ "step": 6714
+ },
+ {
+ "epoch": 93.26561817387505,
+ "grad_norm": 0.24533076584339142,
+ "learning_rate": 0.0006,
+ "loss": 3.407641649246216,
+ "step": 6715
+ },
+ {
+ "epoch": 93.27959807776321,
+ "grad_norm": 0.28086504340171814,
+ "learning_rate": 0.0006,
+ "loss": 3.440011501312256,
+ "step": 6716
+ },
+ {
+ "epoch": 93.29357798165138,
+ "grad_norm": 0.29378727078437805,
+ "learning_rate": 0.0006,
+ "loss": 3.4147515296936035,
+ "step": 6717
+ },
+ {
+ "epoch": 93.30755788553954,
+ "grad_norm": 0.27327433228492737,
+ "learning_rate": 0.0006,
+ "loss": 3.432960271835327,
+ "step": 6718
+ },
+ {
+ "epoch": 93.3215377894277,
+ "grad_norm": 0.24034656584262848,
+ "learning_rate": 0.0006,
+ "loss": 3.4161510467529297,
+ "step": 6719
+ },
+ {
+ "epoch": 93.33551769331586,
+ "grad_norm": 0.25273817777633667,
+ "learning_rate": 0.0006,
+ "loss": 3.4412970542907715,
+ "step": 6720
+ },
+ {
+ "epoch": 93.34949759720402,
+ "grad_norm": 0.2488318234682083,
+ "learning_rate": 0.0006,
+ "loss": 3.3732097148895264,
+ "step": 6721
+ },
+ {
+ "epoch": 93.36347750109218,
+ "grad_norm": 0.23355160653591156,
+ "learning_rate": 0.0006,
+ "loss": 3.4381232261657715,
+ "step": 6722
+ },
+ {
+ "epoch": 93.37745740498035,
+ "grad_norm": 0.242261603474617,
+ "learning_rate": 0.0006,
+ "loss": 3.4310121536254883,
+ "step": 6723
+ },
+ {
+ "epoch": 93.3914373088685,
+ "grad_norm": 0.28622329235076904,
+ "learning_rate": 0.0006,
+ "loss": 3.409791946411133,
+ "step": 6724
+ },
+ {
+ "epoch": 93.40541721275666,
+ "grad_norm": 0.28278490900993347,
+ "learning_rate": 0.0006,
+ "loss": 3.3841657638549805,
+ "step": 6725
+ },
+ {
+ "epoch": 93.41939711664482,
+ "grad_norm": 0.3122783899307251,
+ "learning_rate": 0.0006,
+ "loss": 3.46968412399292,
+ "step": 6726
+ },
+ {
+ "epoch": 93.43337702053299,
+ "grad_norm": 0.2850068211555481,
+ "learning_rate": 0.0006,
+ "loss": 3.403409481048584,
+ "step": 6727
+ },
+ {
+ "epoch": 93.44735692442114,
+ "grad_norm": 0.24325743317604065,
+ "learning_rate": 0.0006,
+ "loss": 3.4340319633483887,
+ "step": 6728
+ },
+ {
+ "epoch": 93.4613368283093,
+ "grad_norm": 0.2815382182598114,
+ "learning_rate": 0.0006,
+ "loss": 3.426218032836914,
+ "step": 6729
+ },
+ {
+ "epoch": 93.47531673219747,
+ "grad_norm": 0.24958917498588562,
+ "learning_rate": 0.0006,
+ "loss": 3.436997890472412,
+ "step": 6730
+ },
+ {
+ "epoch": 93.48929663608563,
+ "grad_norm": 0.259321004152298,
+ "learning_rate": 0.0006,
+ "loss": 3.441648006439209,
+ "step": 6731
+ },
+ {
+ "epoch": 93.50327653997378,
+ "grad_norm": 0.2609651982784271,
+ "learning_rate": 0.0006,
+ "loss": 3.4095306396484375,
+ "step": 6732
+ },
+ {
+ "epoch": 93.51725644386195,
+ "grad_norm": 0.25657615065574646,
+ "learning_rate": 0.0006,
+ "loss": 3.4314627647399902,
+ "step": 6733
+ },
+ {
+ "epoch": 93.53123634775011,
+ "grad_norm": 0.24983316659927368,
+ "learning_rate": 0.0006,
+ "loss": 3.4123897552490234,
+ "step": 6734
+ },
+ {
+ "epoch": 93.54521625163827,
+ "grad_norm": 0.28103333711624146,
+ "learning_rate": 0.0006,
+ "loss": 3.4229750633239746,
+ "step": 6735
+ },
+ {
+ "epoch": 93.55919615552644,
+ "grad_norm": 0.27745917439460754,
+ "learning_rate": 0.0006,
+ "loss": 3.4401450157165527,
+ "step": 6736
+ },
+ {
+ "epoch": 93.57317605941459,
+ "grad_norm": 0.22952015697956085,
+ "learning_rate": 0.0006,
+ "loss": 3.437746524810791,
+ "step": 6737
+ },
+ {
+ "epoch": 93.58715596330275,
+ "grad_norm": 0.24895013868808746,
+ "learning_rate": 0.0006,
+ "loss": 3.4435274600982666,
+ "step": 6738
+ },
+ {
+ "epoch": 93.60113586719092,
+ "grad_norm": 0.2647884786128998,
+ "learning_rate": 0.0006,
+ "loss": 3.4621620178222656,
+ "step": 6739
+ },
+ {
+ "epoch": 93.61511577107908,
+ "grad_norm": 0.27854952216148376,
+ "learning_rate": 0.0006,
+ "loss": 3.4305949211120605,
+ "step": 6740
+ },
+ {
+ "epoch": 93.62909567496723,
+ "grad_norm": 0.23614352941513062,
+ "learning_rate": 0.0006,
+ "loss": 3.4643940925598145,
+ "step": 6741
+ },
+ {
+ "epoch": 93.6430755788554,
+ "grad_norm": 0.2449609786272049,
+ "learning_rate": 0.0006,
+ "loss": 3.446962594985962,
+ "step": 6742
+ },
+ {
+ "epoch": 93.65705548274356,
+ "grad_norm": 0.24940796196460724,
+ "learning_rate": 0.0006,
+ "loss": 3.4275929927825928,
+ "step": 6743
+ },
+ {
+ "epoch": 93.67103538663171,
+ "grad_norm": 0.21372026205062866,
+ "learning_rate": 0.0006,
+ "loss": 3.4385480880737305,
+ "step": 6744
+ },
+ {
+ "epoch": 93.68501529051987,
+ "grad_norm": 0.23362566530704498,
+ "learning_rate": 0.0006,
+ "loss": 3.4287164211273193,
+ "step": 6745
+ },
+ {
+ "epoch": 93.69899519440804,
+ "grad_norm": 0.20412877202033997,
+ "learning_rate": 0.0006,
+ "loss": 3.4070377349853516,
+ "step": 6746
+ },
+ {
+ "epoch": 93.7129750982962,
+ "grad_norm": 0.24040280282497406,
+ "learning_rate": 0.0006,
+ "loss": 3.4321208000183105,
+ "step": 6747
+ },
+ {
+ "epoch": 93.72695500218435,
+ "grad_norm": 0.2276143878698349,
+ "learning_rate": 0.0006,
+ "loss": 3.4187378883361816,
+ "step": 6748
+ },
+ {
+ "epoch": 93.74093490607252,
+ "grad_norm": 0.2609905004501343,
+ "learning_rate": 0.0006,
+ "loss": 3.4392778873443604,
+ "step": 6749
+ },
+ {
+ "epoch": 93.75491480996068,
+ "grad_norm": 0.2735007405281067,
+ "learning_rate": 0.0006,
+ "loss": 3.4539361000061035,
+ "step": 6750
+ },
+ {
+ "epoch": 93.76889471384884,
+ "grad_norm": 0.2638690769672394,
+ "learning_rate": 0.0006,
+ "loss": 3.463449239730835,
+ "step": 6751
+ },
+ {
+ "epoch": 93.78287461773701,
+ "grad_norm": 0.2457268089056015,
+ "learning_rate": 0.0006,
+ "loss": 3.4742202758789062,
+ "step": 6752
+ },
+ {
+ "epoch": 93.79685452162516,
+ "grad_norm": 0.23120850324630737,
+ "learning_rate": 0.0006,
+ "loss": 3.445014238357544,
+ "step": 6753
+ },
+ {
+ "epoch": 93.81083442551332,
+ "grad_norm": 0.28982552886009216,
+ "learning_rate": 0.0006,
+ "loss": 3.4345569610595703,
+ "step": 6754
+ },
+ {
+ "epoch": 93.82481432940149,
+ "grad_norm": 0.3160055875778198,
+ "learning_rate": 0.0006,
+ "loss": 3.4224295616149902,
+ "step": 6755
+ },
+ {
+ "epoch": 93.83879423328965,
+ "grad_norm": 0.23795701563358307,
+ "learning_rate": 0.0006,
+ "loss": 3.427156925201416,
+ "step": 6756
+ },
+ {
+ "epoch": 93.8527741371778,
+ "grad_norm": 0.21941617131233215,
+ "learning_rate": 0.0006,
+ "loss": 3.436102867126465,
+ "step": 6757
+ },
+ {
+ "epoch": 93.86675404106597,
+ "grad_norm": 0.2393350899219513,
+ "learning_rate": 0.0006,
+ "loss": 3.450915813446045,
+ "step": 6758
+ },
+ {
+ "epoch": 93.88073394495413,
+ "grad_norm": 0.2698851227760315,
+ "learning_rate": 0.0006,
+ "loss": 3.451040744781494,
+ "step": 6759
+ },
+ {
+ "epoch": 93.89471384884229,
+ "grad_norm": 0.29526287317276,
+ "learning_rate": 0.0006,
+ "loss": 3.4361257553100586,
+ "step": 6760
+ },
+ {
+ "epoch": 93.90869375273044,
+ "grad_norm": 0.284241259098053,
+ "learning_rate": 0.0006,
+ "loss": 3.4544219970703125,
+ "step": 6761
+ },
+ {
+ "epoch": 93.92267365661861,
+ "grad_norm": 0.23226694762706757,
+ "learning_rate": 0.0006,
+ "loss": 3.4306488037109375,
+ "step": 6762
+ },
+ {
+ "epoch": 93.93665356050677,
+ "grad_norm": 0.221400648355484,
+ "learning_rate": 0.0006,
+ "loss": 3.4596056938171387,
+ "step": 6763
+ },
+ {
+ "epoch": 93.95063346439493,
+ "grad_norm": 0.24546507000923157,
+ "learning_rate": 0.0006,
+ "loss": 3.459442615509033,
+ "step": 6764
+ },
+ {
+ "epoch": 93.9646133682831,
+ "grad_norm": 0.25056585669517517,
+ "learning_rate": 0.0006,
+ "loss": 3.4576244354248047,
+ "step": 6765
+ },
+ {
+ "epoch": 93.97859327217125,
+ "grad_norm": 0.24382533133029938,
+ "learning_rate": 0.0006,
+ "loss": 3.46604323387146,
+ "step": 6766
+ },
+ {
+ "epoch": 93.99257317605941,
+ "grad_norm": 0.23111487925052643,
+ "learning_rate": 0.0006,
+ "loss": 3.419752597808838,
+ "step": 6767
+ },
+ {
+ "epoch": 94.0,
+ "grad_norm": 0.25429150462150574,
+ "learning_rate": 0.0006,
+ "loss": 3.470834732055664,
+ "step": 6768
+ },
+ {
+ "epoch": 94.0,
+ "eval_loss": 4.0048723220825195,
+ "eval_runtime": 46.2608,
+ "eval_samples_per_second": 52.788,
+ "eval_steps_per_second": 3.307,
+ "step": 6768
+ },
+ {
+ "epoch": 94.01397990388816,
+ "grad_norm": 0.24850931763648987,
+ "learning_rate": 0.0006,
+ "loss": 3.381406784057617,
+ "step": 6769
+ },
+ {
+ "epoch": 94.02795980777633,
+ "grad_norm": 0.3083341419696808,
+ "learning_rate": 0.0006,
+ "loss": 3.390745162963867,
+ "step": 6770
+ },
+ {
+ "epoch": 94.04193971166448,
+ "grad_norm": 0.3341517448425293,
+ "learning_rate": 0.0006,
+ "loss": 3.4235048294067383,
+ "step": 6771
+ },
+ {
+ "epoch": 94.05591961555264,
+ "grad_norm": 0.28903666138648987,
+ "learning_rate": 0.0006,
+ "loss": 3.415342330932617,
+ "step": 6772
+ },
+ {
+ "epoch": 94.06989951944081,
+ "grad_norm": 0.2792344093322754,
+ "learning_rate": 0.0006,
+ "loss": 3.3831491470336914,
+ "step": 6773
+ },
+ {
+ "epoch": 94.08387942332897,
+ "grad_norm": 0.2897225618362427,
+ "learning_rate": 0.0006,
+ "loss": 3.4128687381744385,
+ "step": 6774
+ },
+ {
+ "epoch": 94.09785932721712,
+ "grad_norm": 0.27192890644073486,
+ "learning_rate": 0.0006,
+ "loss": 3.3719396591186523,
+ "step": 6775
+ },
+ {
+ "epoch": 94.1118392311053,
+ "grad_norm": 0.28466618061065674,
+ "learning_rate": 0.0006,
+ "loss": 3.377894639968872,
+ "step": 6776
+ },
+ {
+ "epoch": 94.12581913499345,
+ "grad_norm": 0.2761063873767853,
+ "learning_rate": 0.0006,
+ "loss": 3.407897472381592,
+ "step": 6777
+ },
+ {
+ "epoch": 94.1397990388816,
+ "grad_norm": 0.27651312947273254,
+ "learning_rate": 0.0006,
+ "loss": 3.39689040184021,
+ "step": 6778
+ },
+ {
+ "epoch": 94.15377894276976,
+ "grad_norm": 0.24393969774246216,
+ "learning_rate": 0.0006,
+ "loss": 3.4338550567626953,
+ "step": 6779
+ },
+ {
+ "epoch": 94.16775884665793,
+ "grad_norm": 0.23041163384914398,
+ "learning_rate": 0.0006,
+ "loss": 3.394223213195801,
+ "step": 6780
+ },
+ {
+ "epoch": 94.18173875054609,
+ "grad_norm": 0.23411819338798523,
+ "learning_rate": 0.0006,
+ "loss": 3.4109203815460205,
+ "step": 6781
+ },
+ {
+ "epoch": 94.19571865443424,
+ "grad_norm": 0.247885599732399,
+ "learning_rate": 0.0006,
+ "loss": 3.401597023010254,
+ "step": 6782
+ },
+ {
+ "epoch": 94.20969855832242,
+ "grad_norm": 0.25364676117897034,
+ "learning_rate": 0.0006,
+ "loss": 3.3792240619659424,
+ "step": 6783
+ },
+ {
+ "epoch": 94.22367846221057,
+ "grad_norm": 0.23333978652954102,
+ "learning_rate": 0.0006,
+ "loss": 3.421966314315796,
+ "step": 6784
+ },
+ {
+ "epoch": 94.23765836609873,
+ "grad_norm": 0.2363957166671753,
+ "learning_rate": 0.0006,
+ "loss": 3.440180778503418,
+ "step": 6785
+ },
+ {
+ "epoch": 94.2516382699869,
+ "grad_norm": 0.23245413601398468,
+ "learning_rate": 0.0006,
+ "loss": 3.4096598625183105,
+ "step": 6786
+ },
+ {
+ "epoch": 94.26561817387505,
+ "grad_norm": 0.2178839147090912,
+ "learning_rate": 0.0006,
+ "loss": 3.399242639541626,
+ "step": 6787
+ },
+ {
+ "epoch": 94.27959807776321,
+ "grad_norm": 0.24033723771572113,
+ "learning_rate": 0.0006,
+ "loss": 3.4221351146698,
+ "step": 6788
+ },
+ {
+ "epoch": 94.29357798165138,
+ "grad_norm": 0.25050002336502075,
+ "learning_rate": 0.0006,
+ "loss": 3.4256739616394043,
+ "step": 6789
+ },
+ {
+ "epoch": 94.30755788553954,
+ "grad_norm": 0.23650702834129333,
+ "learning_rate": 0.0006,
+ "loss": 3.4433517456054688,
+ "step": 6790
+ },
+ {
+ "epoch": 94.3215377894277,
+ "grad_norm": 0.22703666985034943,
+ "learning_rate": 0.0006,
+ "loss": 3.4374194145202637,
+ "step": 6791
+ },
+ {
+ "epoch": 94.33551769331586,
+ "grad_norm": 0.22083595395088196,
+ "learning_rate": 0.0006,
+ "loss": 3.411393880844116,
+ "step": 6792
+ },
+ {
+ "epoch": 94.34949759720402,
+ "grad_norm": 0.2282603532075882,
+ "learning_rate": 0.0006,
+ "loss": 3.4167723655700684,
+ "step": 6793
+ },
+ {
+ "epoch": 94.36347750109218,
+ "grad_norm": 0.21445757150650024,
+ "learning_rate": 0.0006,
+ "loss": 3.411402702331543,
+ "step": 6794
+ },
+ {
+ "epoch": 94.37745740498035,
+ "grad_norm": 0.22590994834899902,
+ "learning_rate": 0.0006,
+ "loss": 3.423203945159912,
+ "step": 6795
+ },
+ {
+ "epoch": 94.3914373088685,
+ "grad_norm": 0.2211935818195343,
+ "learning_rate": 0.0006,
+ "loss": 3.416825294494629,
+ "step": 6796
+ },
+ {
+ "epoch": 94.40541721275666,
+ "grad_norm": 0.21597808599472046,
+ "learning_rate": 0.0006,
+ "loss": 3.427116632461548,
+ "step": 6797
+ },
+ {
+ "epoch": 94.41939711664482,
+ "grad_norm": 0.21597442030906677,
+ "learning_rate": 0.0006,
+ "loss": 3.4304189682006836,
+ "step": 6798
+ },
+ {
+ "epoch": 94.43337702053299,
+ "grad_norm": 0.22279265522956848,
+ "learning_rate": 0.0006,
+ "loss": 3.423524856567383,
+ "step": 6799
+ },
+ {
+ "epoch": 94.44735692442114,
+ "grad_norm": 0.2205088585615158,
+ "learning_rate": 0.0006,
+ "loss": 3.426898956298828,
+ "step": 6800
+ },
+ {
+ "epoch": 94.4613368283093,
+ "grad_norm": 0.23161499202251434,
+ "learning_rate": 0.0006,
+ "loss": 3.416133403778076,
+ "step": 6801
+ },
+ {
+ "epoch": 94.47531673219747,
+ "grad_norm": 0.2583356201648712,
+ "learning_rate": 0.0006,
+ "loss": 3.4359500408172607,
+ "step": 6802
+ },
+ {
+ "epoch": 94.48929663608563,
+ "grad_norm": 0.28056100010871887,
+ "learning_rate": 0.0006,
+ "loss": 3.437521457672119,
+ "step": 6803
+ },
+ {
+ "epoch": 94.50327653997378,
+ "grad_norm": 0.2517118752002716,
+ "learning_rate": 0.0006,
+ "loss": 3.415987968444824,
+ "step": 6804
+ },
+ {
+ "epoch": 94.51725644386195,
+ "grad_norm": 0.21850481629371643,
+ "learning_rate": 0.0006,
+ "loss": 3.4574694633483887,
+ "step": 6805
+ },
+ {
+ "epoch": 94.53123634775011,
+ "grad_norm": 0.2539876699447632,
+ "learning_rate": 0.0006,
+ "loss": 3.4554924964904785,
+ "step": 6806
+ },
+ {
+ "epoch": 94.54521625163827,
+ "grad_norm": 0.2322462499141693,
+ "learning_rate": 0.0006,
+ "loss": 3.4383111000061035,
+ "step": 6807
+ },
+ {
+ "epoch": 94.55919615552644,
+ "grad_norm": 0.21425172686576843,
+ "learning_rate": 0.0006,
+ "loss": 3.425259590148926,
+ "step": 6808
+ },
+ {
+ "epoch": 94.57317605941459,
+ "grad_norm": 0.2356613278388977,
+ "learning_rate": 0.0006,
+ "loss": 3.4199063777923584,
+ "step": 6809
+ },
+ {
+ "epoch": 94.58715596330275,
+ "grad_norm": 0.24037371575832367,
+ "learning_rate": 0.0006,
+ "loss": 3.4822161197662354,
+ "step": 6810
+ },
+ {
+ "epoch": 94.60113586719092,
+ "grad_norm": 0.22631457448005676,
+ "learning_rate": 0.0006,
+ "loss": 3.436655044555664,
+ "step": 6811
+ },
+ {
+ "epoch": 94.61511577107908,
+ "grad_norm": 0.24926011264324188,
+ "learning_rate": 0.0006,
+ "loss": 3.424330711364746,
+ "step": 6812
+ },
+ {
+ "epoch": 94.62909567496723,
+ "grad_norm": 0.23928102850914001,
+ "learning_rate": 0.0006,
+ "loss": 3.457498073577881,
+ "step": 6813
+ },
+ {
+ "epoch": 94.6430755788554,
+ "grad_norm": 0.22744503617286682,
+ "learning_rate": 0.0006,
+ "loss": 3.429507255554199,
+ "step": 6814
+ },
+ {
+ "epoch": 94.65705548274356,
+ "grad_norm": 0.23157230019569397,
+ "learning_rate": 0.0006,
+ "loss": 3.4118356704711914,
+ "step": 6815
+ },
+ {
+ "epoch": 94.67103538663171,
+ "grad_norm": 0.26120537519454956,
+ "learning_rate": 0.0006,
+ "loss": 3.43738055229187,
+ "step": 6816
+ },
+ {
+ "epoch": 94.68501529051987,
+ "grad_norm": 0.2555256485939026,
+ "learning_rate": 0.0006,
+ "loss": 3.410588026046753,
+ "step": 6817
+ },
+ {
+ "epoch": 94.69899519440804,
+ "grad_norm": 0.22490885853767395,
+ "learning_rate": 0.0006,
+ "loss": 3.427495002746582,
+ "step": 6818
+ },
+ {
+ "epoch": 94.7129750982962,
+ "grad_norm": 0.24245399236679077,
+ "learning_rate": 0.0006,
+ "loss": 3.4033799171447754,
+ "step": 6819
+ },
+ {
+ "epoch": 94.72695500218435,
+ "grad_norm": 0.2504974603652954,
+ "learning_rate": 0.0006,
+ "loss": 3.4584431648254395,
+ "step": 6820
+ },
+ {
+ "epoch": 94.74093490607252,
+ "grad_norm": 0.31661778688430786,
+ "learning_rate": 0.0006,
+ "loss": 3.4557833671569824,
+ "step": 6821
+ },
+ {
+ "epoch": 94.75491480996068,
+ "grad_norm": 0.3266008794307709,
+ "learning_rate": 0.0006,
+ "loss": 3.40358829498291,
+ "step": 6822
+ },
+ {
+ "epoch": 94.76889471384884,
+ "grad_norm": 0.2262050360441208,
+ "learning_rate": 0.0006,
+ "loss": 3.4626946449279785,
+ "step": 6823
+ },
+ {
+ "epoch": 94.78287461773701,
+ "grad_norm": 0.24493470788002014,
+ "learning_rate": 0.0006,
+ "loss": 3.476741313934326,
+ "step": 6824
+ },
+ {
+ "epoch": 94.79685452162516,
+ "grad_norm": 0.2546406090259552,
+ "learning_rate": 0.0006,
+ "loss": 3.4281368255615234,
+ "step": 6825
+ },
+ {
+ "epoch": 94.81083442551332,
+ "grad_norm": 0.25845927000045776,
+ "learning_rate": 0.0006,
+ "loss": 3.435153007507324,
+ "step": 6826
+ },
+ {
+ "epoch": 94.82481432940149,
+ "grad_norm": 0.2400490790605545,
+ "learning_rate": 0.0006,
+ "loss": 3.4383115768432617,
+ "step": 6827
+ },
+ {
+ "epoch": 94.83879423328965,
+ "grad_norm": 0.2185630351305008,
+ "learning_rate": 0.0006,
+ "loss": 3.409846305847168,
+ "step": 6828
+ },
+ {
+ "epoch": 94.8527741371778,
+ "grad_norm": 0.238392636179924,
+ "learning_rate": 0.0006,
+ "loss": 3.443201780319214,
+ "step": 6829
+ },
+ {
+ "epoch": 94.86675404106597,
+ "grad_norm": 0.25249531865119934,
+ "learning_rate": 0.0006,
+ "loss": 3.464893341064453,
+ "step": 6830
+ },
+ {
+ "epoch": 94.88073394495413,
+ "grad_norm": 0.2648811638355255,
+ "learning_rate": 0.0006,
+ "loss": 3.4110443592071533,
+ "step": 6831
+ },
+ {
+ "epoch": 94.89471384884229,
+ "grad_norm": 0.23435312509536743,
+ "learning_rate": 0.0006,
+ "loss": 3.455955982208252,
+ "step": 6832
+ },
+ {
+ "epoch": 94.90869375273044,
+ "grad_norm": 0.21973535418510437,
+ "learning_rate": 0.0006,
+ "loss": 3.4360694885253906,
+ "step": 6833
+ },
+ {
+ "epoch": 94.92267365661861,
+ "grad_norm": 0.22766733169555664,
+ "learning_rate": 0.0006,
+ "loss": 3.4413442611694336,
+ "step": 6834
+ },
+ {
+ "epoch": 94.93665356050677,
+ "grad_norm": 0.22387754917144775,
+ "learning_rate": 0.0006,
+ "loss": 3.479048252105713,
+ "step": 6835
+ },
+ {
+ "epoch": 94.95063346439493,
+ "grad_norm": 0.2156190723180771,
+ "learning_rate": 0.0006,
+ "loss": 3.461625576019287,
+ "step": 6836
+ },
+ {
+ "epoch": 94.9646133682831,
+ "grad_norm": 0.23217801749706268,
+ "learning_rate": 0.0006,
+ "loss": 3.4501914978027344,
+ "step": 6837
+ },
+ {
+ "epoch": 94.97859327217125,
+ "grad_norm": 0.22949737310409546,
+ "learning_rate": 0.0006,
+ "loss": 3.4513964653015137,
+ "step": 6838
+ },
+ {
+ "epoch": 94.99257317605941,
+ "grad_norm": 0.22951069474220276,
+ "learning_rate": 0.0006,
+ "loss": 3.4735987186431885,
+ "step": 6839
+ },
+ {
+ "epoch": 95.0,
+ "grad_norm": 0.26237088441848755,
+ "learning_rate": 0.0006,
+ "loss": 3.4632973670959473,
+ "step": 6840
+ },
+ {
+ "epoch": 95.0,
+ "eval_loss": 4.005683898925781,
+ "eval_runtime": 46.4654,
+ "eval_samples_per_second": 52.555,
+ "eval_steps_per_second": 3.293,
+ "step": 6840
+ },
+ {
+ "epoch": 95.01397990388816,
+ "grad_norm": 0.25238674879074097,
+ "learning_rate": 0.0006,
+ "loss": 3.4283447265625,
+ "step": 6841
+ },
+ {
+ "epoch": 95.02795980777633,
+ "grad_norm": 0.2381853610277176,
+ "learning_rate": 0.0006,
+ "loss": 3.3766396045684814,
+ "step": 6842
+ },
+ {
+ "epoch": 95.04193971166448,
+ "grad_norm": 0.2379564344882965,
+ "learning_rate": 0.0006,
+ "loss": 3.3778748512268066,
+ "step": 6843
+ },
+ {
+ "epoch": 95.05591961555264,
+ "grad_norm": 0.2300495207309723,
+ "learning_rate": 0.0006,
+ "loss": 3.424384593963623,
+ "step": 6844
+ },
+ {
+ "epoch": 95.06989951944081,
+ "grad_norm": 0.27144646644592285,
+ "learning_rate": 0.0006,
+ "loss": 3.4174411296844482,
+ "step": 6845
+ },
+ {
+ "epoch": 95.08387942332897,
+ "grad_norm": 0.2806922197341919,
+ "learning_rate": 0.0006,
+ "loss": 3.399534225463867,
+ "step": 6846
+ },
+ {
+ "epoch": 95.09785932721712,
+ "grad_norm": 0.26581236720085144,
+ "learning_rate": 0.0006,
+ "loss": 3.4088947772979736,
+ "step": 6847
+ },
+ {
+ "epoch": 95.1118392311053,
+ "grad_norm": 0.2521856129169464,
+ "learning_rate": 0.0006,
+ "loss": 3.425666332244873,
+ "step": 6848
+ },
+ {
+ "epoch": 95.12581913499345,
+ "grad_norm": 0.2296123504638672,
+ "learning_rate": 0.0006,
+ "loss": 3.4058749675750732,
+ "step": 6849
+ },
+ {
+ "epoch": 95.1397990388816,
+ "grad_norm": 0.26084741950035095,
+ "learning_rate": 0.0006,
+ "loss": 3.4144835472106934,
+ "step": 6850
+ },
+ {
+ "epoch": 95.15377894276976,
+ "grad_norm": 0.2859461307525635,
+ "learning_rate": 0.0006,
+ "loss": 3.4004955291748047,
+ "step": 6851
+ },
+ {
+ "epoch": 95.16775884665793,
+ "grad_norm": 0.2513970136642456,
+ "learning_rate": 0.0006,
+ "loss": 3.3978776931762695,
+ "step": 6852
+ },
+ {
+ "epoch": 95.18173875054609,
+ "grad_norm": 0.25857359170913696,
+ "learning_rate": 0.0006,
+ "loss": 3.4178826808929443,
+ "step": 6853
+ },
+ {
+ "epoch": 95.19571865443424,
+ "grad_norm": 0.2735590934753418,
+ "learning_rate": 0.0006,
+ "loss": 3.4532670974731445,
+ "step": 6854
+ },
+ {
+ "epoch": 95.20969855832242,
+ "grad_norm": 0.2597769498825073,
+ "learning_rate": 0.0006,
+ "loss": 3.4178519248962402,
+ "step": 6855
+ },
+ {
+ "epoch": 95.22367846221057,
+ "grad_norm": 0.2731434106826782,
+ "learning_rate": 0.0006,
+ "loss": 3.3755178451538086,
+ "step": 6856
+ },
+ {
+ "epoch": 95.23765836609873,
+ "grad_norm": 0.2927812933921814,
+ "learning_rate": 0.0006,
+ "loss": 3.3890786170959473,
+ "step": 6857
+ },
+ {
+ "epoch": 95.2516382699869,
+ "grad_norm": 0.25509774684906006,
+ "learning_rate": 0.0006,
+ "loss": 3.4205737113952637,
+ "step": 6858
+ },
+ {
+ "epoch": 95.26561817387505,
+ "grad_norm": 0.23796725273132324,
+ "learning_rate": 0.0006,
+ "loss": 3.424884796142578,
+ "step": 6859
+ },
+ {
+ "epoch": 95.27959807776321,
+ "grad_norm": 0.23993532359600067,
+ "learning_rate": 0.0006,
+ "loss": 3.381929874420166,
+ "step": 6860
+ },
+ {
+ "epoch": 95.29357798165138,
+ "grad_norm": 0.24368232488632202,
+ "learning_rate": 0.0006,
+ "loss": 3.4277493953704834,
+ "step": 6861
+ },
+ {
+ "epoch": 95.30755788553954,
+ "grad_norm": 0.2876133322715759,
+ "learning_rate": 0.0006,
+ "loss": 3.4178905487060547,
+ "step": 6862
+ },
+ {
+ "epoch": 95.3215377894277,
+ "grad_norm": 0.29725784063339233,
+ "learning_rate": 0.0006,
+ "loss": 3.3831002712249756,
+ "step": 6863
+ },
+ {
+ "epoch": 95.33551769331586,
+ "grad_norm": 0.26999276876449585,
+ "learning_rate": 0.0006,
+ "loss": 3.4437084197998047,
+ "step": 6864
+ },
+ {
+ "epoch": 95.34949759720402,
+ "grad_norm": 0.2634904086589813,
+ "learning_rate": 0.0006,
+ "loss": 3.4158716201782227,
+ "step": 6865
+ },
+ {
+ "epoch": 95.36347750109218,
+ "grad_norm": 0.26630404591560364,
+ "learning_rate": 0.0006,
+ "loss": 3.408945083618164,
+ "step": 6866
+ },
+ {
+ "epoch": 95.37745740498035,
+ "grad_norm": 0.254926472902298,
+ "learning_rate": 0.0006,
+ "loss": 3.418691635131836,
+ "step": 6867
+ },
+ {
+ "epoch": 95.3914373088685,
+ "grad_norm": 0.26357024908065796,
+ "learning_rate": 0.0006,
+ "loss": 3.400965690612793,
+ "step": 6868
+ },
+ {
+ "epoch": 95.40541721275666,
+ "grad_norm": 0.27461501955986023,
+ "learning_rate": 0.0006,
+ "loss": 3.4147491455078125,
+ "step": 6869
+ },
+ {
+ "epoch": 95.41939711664482,
+ "grad_norm": 0.2720128893852234,
+ "learning_rate": 0.0006,
+ "loss": 3.4361958503723145,
+ "step": 6870
+ },
+ {
+ "epoch": 95.43337702053299,
+ "grad_norm": 0.25204896926879883,
+ "learning_rate": 0.0006,
+ "loss": 3.4017176628112793,
+ "step": 6871
+ },
+ {
+ "epoch": 95.44735692442114,
+ "grad_norm": 0.25743263959884644,
+ "learning_rate": 0.0006,
+ "loss": 3.432799816131592,
+ "step": 6872
+ },
+ {
+ "epoch": 95.4613368283093,
+ "grad_norm": 0.2920421063899994,
+ "learning_rate": 0.0006,
+ "loss": 3.4494667053222656,
+ "step": 6873
+ },
+ {
+ "epoch": 95.47531673219747,
+ "grad_norm": 0.2647784650325775,
+ "learning_rate": 0.0006,
+ "loss": 3.412154197692871,
+ "step": 6874
+ },
+ {
+ "epoch": 95.48929663608563,
+ "grad_norm": 0.24153636395931244,
+ "learning_rate": 0.0006,
+ "loss": 3.4469103813171387,
+ "step": 6875
+ },
+ {
+ "epoch": 95.50327653997378,
+ "grad_norm": 0.2455543428659439,
+ "learning_rate": 0.0006,
+ "loss": 3.3944413661956787,
+ "step": 6876
+ },
+ {
+ "epoch": 95.51725644386195,
+ "grad_norm": 0.22764283418655396,
+ "learning_rate": 0.0006,
+ "loss": 3.4298970699310303,
+ "step": 6877
+ },
+ {
+ "epoch": 95.53123634775011,
+ "grad_norm": 0.24529367685317993,
+ "learning_rate": 0.0006,
+ "loss": 3.441706657409668,
+ "step": 6878
+ },
+ {
+ "epoch": 95.54521625163827,
+ "grad_norm": 0.2799682915210724,
+ "learning_rate": 0.0006,
+ "loss": 3.448045253753662,
+ "step": 6879
+ },
+ {
+ "epoch": 95.55919615552644,
+ "grad_norm": 0.26428157091140747,
+ "learning_rate": 0.0006,
+ "loss": 3.4332120418548584,
+ "step": 6880
+ },
+ {
+ "epoch": 95.57317605941459,
+ "grad_norm": 0.22051474452018738,
+ "learning_rate": 0.0006,
+ "loss": 3.3927958011627197,
+ "step": 6881
+ },
+ {
+ "epoch": 95.58715596330275,
+ "grad_norm": 0.23627591133117676,
+ "learning_rate": 0.0006,
+ "loss": 3.4616801738739014,
+ "step": 6882
+ },
+ {
+ "epoch": 95.60113586719092,
+ "grad_norm": 0.28352341055870056,
+ "learning_rate": 0.0006,
+ "loss": 3.4393179416656494,
+ "step": 6883
+ },
+ {
+ "epoch": 95.61511577107908,
+ "grad_norm": 0.2789309322834015,
+ "learning_rate": 0.0006,
+ "loss": 3.427706241607666,
+ "step": 6884
+ },
+ {
+ "epoch": 95.62909567496723,
+ "grad_norm": 0.2807752192020416,
+ "learning_rate": 0.0006,
+ "loss": 3.4490489959716797,
+ "step": 6885
+ },
+ {
+ "epoch": 95.6430755788554,
+ "grad_norm": 0.24874471127986908,
+ "learning_rate": 0.0006,
+ "loss": 3.43320369720459,
+ "step": 6886
+ },
+ {
+ "epoch": 95.65705548274356,
+ "grad_norm": 0.21681128442287445,
+ "learning_rate": 0.0006,
+ "loss": 3.4079744815826416,
+ "step": 6887
+ },
+ {
+ "epoch": 95.67103538663171,
+ "grad_norm": 0.2251712679862976,
+ "learning_rate": 0.0006,
+ "loss": 3.4503328800201416,
+ "step": 6888
+ },
+ {
+ "epoch": 95.68501529051987,
+ "grad_norm": 0.2447051852941513,
+ "learning_rate": 0.0006,
+ "loss": 3.4318175315856934,
+ "step": 6889
+ },
+ {
+ "epoch": 95.69899519440804,
+ "grad_norm": 0.24111638963222504,
+ "learning_rate": 0.0006,
+ "loss": 3.4468672275543213,
+ "step": 6890
+ },
+ {
+ "epoch": 95.7129750982962,
+ "grad_norm": 0.2091565877199173,
+ "learning_rate": 0.0006,
+ "loss": 3.4336628913879395,
+ "step": 6891
+ },
+ {
+ "epoch": 95.72695500218435,
+ "grad_norm": 0.2004513144493103,
+ "learning_rate": 0.0006,
+ "loss": 3.432036876678467,
+ "step": 6892
+ },
+ {
+ "epoch": 95.74093490607252,
+ "grad_norm": 0.22274938225746155,
+ "learning_rate": 0.0006,
+ "loss": 3.4573302268981934,
+ "step": 6893
+ },
+ {
+ "epoch": 95.75491480996068,
+ "grad_norm": 0.22637732326984406,
+ "learning_rate": 0.0006,
+ "loss": 3.4259235858917236,
+ "step": 6894
+ },
+ {
+ "epoch": 95.76889471384884,
+ "grad_norm": 0.19517652690410614,
+ "learning_rate": 0.0006,
+ "loss": 3.434769630432129,
+ "step": 6895
+ },
+ {
+ "epoch": 95.78287461773701,
+ "grad_norm": 0.21309402585029602,
+ "learning_rate": 0.0006,
+ "loss": 3.4296374320983887,
+ "step": 6896
+ },
+ {
+ "epoch": 95.79685452162516,
+ "grad_norm": 0.22638419270515442,
+ "learning_rate": 0.0006,
+ "loss": 3.421220302581787,
+ "step": 6897
+ },
+ {
+ "epoch": 95.81083442551332,
+ "grad_norm": 0.22125105559825897,
+ "learning_rate": 0.0006,
+ "loss": 3.419447422027588,
+ "step": 6898
+ },
+ {
+ "epoch": 95.82481432940149,
+ "grad_norm": 0.20812378823757172,
+ "learning_rate": 0.0006,
+ "loss": 3.4455454349517822,
+ "step": 6899
+ },
+ {
+ "epoch": 95.83879423328965,
+ "grad_norm": 0.2165258377790451,
+ "learning_rate": 0.0006,
+ "loss": 3.469867706298828,
+ "step": 6900
+ },
+ {
+ "epoch": 95.8527741371778,
+ "grad_norm": 0.22964654862880707,
+ "learning_rate": 0.0006,
+ "loss": 3.457120180130005,
+ "step": 6901
+ },
+ {
+ "epoch": 95.86675404106597,
+ "grad_norm": 0.21772581338882446,
+ "learning_rate": 0.0006,
+ "loss": 3.474360466003418,
+ "step": 6902
+ },
+ {
+ "epoch": 95.88073394495413,
+ "grad_norm": 0.21107611060142517,
+ "learning_rate": 0.0006,
+ "loss": 3.422196388244629,
+ "step": 6903
+ },
+ {
+ "epoch": 95.89471384884229,
+ "grad_norm": 0.23257437348365784,
+ "learning_rate": 0.0006,
+ "loss": 3.4433343410491943,
+ "step": 6904
+ },
+ {
+ "epoch": 95.90869375273044,
+ "grad_norm": 0.2382373809814453,
+ "learning_rate": 0.0006,
+ "loss": 3.460090160369873,
+ "step": 6905
+ },
+ {
+ "epoch": 95.92267365661861,
+ "grad_norm": 0.26780450344085693,
+ "learning_rate": 0.0006,
+ "loss": 3.4034292697906494,
+ "step": 6906
+ },
+ {
+ "epoch": 95.93665356050677,
+ "grad_norm": 0.2656048536300659,
+ "learning_rate": 0.0006,
+ "loss": 3.421441078186035,
+ "step": 6907
+ },
+ {
+ "epoch": 95.95063346439493,
+ "grad_norm": 0.2481391578912735,
+ "learning_rate": 0.0006,
+ "loss": 3.4351892471313477,
+ "step": 6908
+ },
+ {
+ "epoch": 95.9646133682831,
+ "grad_norm": 0.23047798871994019,
+ "learning_rate": 0.0006,
+ "loss": 3.4360337257385254,
+ "step": 6909
+ },
+ {
+ "epoch": 95.97859327217125,
+ "grad_norm": 0.22177286446094513,
+ "learning_rate": 0.0006,
+ "loss": 3.4541707038879395,
+ "step": 6910
+ },
+ {
+ "epoch": 95.99257317605941,
+ "grad_norm": 0.23291228711605072,
+ "learning_rate": 0.0006,
+ "loss": 3.4537198543548584,
+ "step": 6911
+ },
+ {
+ "epoch": 96.0,
+ "grad_norm": 0.27189648151397705,
+ "learning_rate": 0.0006,
+ "loss": 3.4249231815338135,
+ "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/mask15-l2r50-fulle-lm/checkpoint-6912/training_args.bin b/runs/mask15-l2r50-fulle-lm/checkpoint-6912/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..43721c50815fe94f90cb043bf545b8f7bd9afc38
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-6912/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:a0b8d7bb9ac952b1abed3bd1e5c8f6ebd20daa957b3a85688954f8df03be6eb9
+size 4856
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-72/chat_template.jinja b/runs/mask15-l2r50-fulle-lm/checkpoint-72/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-72/chat_template.jinja
@@ -0,0 +1,85 @@
+{%- if tools %}
+ {{- '<|im_start|>system\n' }}
+ {%- if messages[0].role == 'system' %}
+ {{- messages[0].content + '\n\n' }}
+ {%- endif %}
+ {{- "# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within XML tags:\n" }}
+ {%- for tool in tools %}
+ {{- "\n" }}
+ {{- tool | tojson }}
+ {%- endfor %}
+ {{- "\n\n\nFor each function call, return a json object with function name and arguments within XML tags:\n\n{\"name\": , \"arguments\": }\n<|im_end|>\n" }}
+{%- else %}
+ {%- if messages[0].role == 'system' %}
+ {{- '<|im_start|>system\n' + messages[0].content + '<|im_end|>\n' }}
+ {%- endif %}
+{%- endif %}
+{%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %}
+{%- for message in messages[::-1] %}
+ {%- set index = (messages|length - 1) - loop.index0 %}
+ {%- if ns.multi_step_tool and message.role == "user" and not(message.content.startswith('') and message.content.endswith('')) %}
+ {%- set ns.multi_step_tool = false %}
+ {%- set ns.last_query_index = index %}
+ {%- endif %}
+{%- endfor %}
+{%- for message in messages %}
+ {%- if (message.role == "user") or (message.role == "system" and not loop.first) %}
+ {{- '<|im_start|>' + message.role + '\n' + message.content + '<|im_end|>' + '\n' }}
+ {%- elif message.role == "assistant" %}
+ {%- set content = message.content %}
+ {%- set reasoning_content = '' %}
+ {%- if message.reasoning_content is defined and message.reasoning_content is not none %}
+ {%- set reasoning_content = message.reasoning_content %}
+ {%- else %}
+ {%- if '' in message.content %}
+ {%- set content = message.content.split('')[-1].lstrip('\n') %}
+ {%- set reasoning_content = message.content.split('')[0].rstrip('\n').split('')[-1].lstrip('\n') %}
+ {%- endif %}
+ {%- endif %}
+ {%- if loop.index0 > ns.last_query_index %}
+ {%- if loop.last or (not loop.last and reasoning_content) %}
+ {{- '<|im_start|>' + message.role + '\n\n' + reasoning_content.strip('\n') + '\n\n\n' + content.lstrip('\n') }}
+ {%- else %}
+ {{- '<|im_start|>' + message.role + '\n' + content }}
+ {%- endif %}
+ {%- else %}
+ {{- '<|im_start|>' + message.role + '\n' + content }}
+ {%- endif %}
+ {%- if message.tool_calls %}
+ {%- for tool_call in message.tool_calls %}
+ {%- if (loop.first and content) or (not loop.first) %}
+ {{- '\n' }}
+ {%- endif %}
+ {%- if tool_call.function %}
+ {%- set tool_call = tool_call.function %}
+ {%- endif %}
+ {{- '\n{"name": "' }}
+ {{- tool_call.name }}
+ {{- '", "arguments": ' }}
+ {%- if tool_call.arguments is string %}
+ {{- tool_call.arguments }}
+ {%- else %}
+ {{- tool_call.arguments | tojson }}
+ {%- endif %}
+ {{- '}\n' }}
+ {%- endfor %}
+ {%- endif %}
+ {{- '<|im_end|>\n' }}
+ {%- elif message.role == "tool" %}
+ {%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}
+ {{- '<|im_start|>user' }}
+ {%- endif %}
+ {{- '\n\n' }}
+ {{- message.content }}
+ {{- '\n' }}
+ {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
+ {{- '<|im_end|>\n' }}
+ {%- endif %}
+ {%- endif %}
+{%- endfor %}
+{%- if add_generation_prompt %}
+ {{- '<|im_start|>assistant\n' }}
+ {%- if enable_thinking is defined and enable_thinking is false %}
+ {{- '\n\n\n\n' }}
+ {%- endif %}
+{%- endif %}
\ No newline at end of file
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-72/config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-72/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..1b4ac3c550d6003148026765eba4cb1512b216c9
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-72/config.json
@@ -0,0 +1,32 @@
+{
+ "architectures": [
+ "LlamaForCausalLM"
+ ],
+ "attention_bias": false,
+ "attention_dropout": 0.0,
+ "bos_token_id": null,
+ "dtype": "float32",
+ "eos_token_id": 151645,
+ "head_dim": 128,
+ "hidden_act": "silu",
+ "hidden_size": 512,
+ "initializer_range": 0.02,
+ "intermediate_size": 1536,
+ "max_position_embeddings": 2048,
+ "mlp_bias": false,
+ "model_type": "llama",
+ "num_attention_heads": 4,
+ "num_hidden_layers": 20,
+ "num_key_value_heads": 4,
+ "pad_token_id": 151645,
+ "pretraining_tp": 1,
+ "rms_norm_eps": 1e-06,
+ "rope_parameters": {
+ "rope_theta": 10000.0,
+ "rope_type": "default"
+ },
+ "tie_word_embeddings": true,
+ "transformers_version": "5.6.2",
+ "use_cache": false,
+ "vocab_size": 151672
+}
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-72/generation_config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-72/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..5cd15fe1269fd505cfdefe9b3e9989dacd9f68f4
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-72/generation_config.json
@@ -0,0 +1,11 @@
+{
+ "_from_model_config": true,
+ "eos_token_id": [
+ 151645
+ ],
+ "output_attentions": false,
+ "output_hidden_states": false,
+ "pad_token_id": 151645,
+ "transformers_version": "5.6.2",
+ "use_cache": true
+}
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-72/model.safetensors b/runs/mask15-l2r50-fulle-lm/checkpoint-72/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..9daa6050bc37557b33e56df6eb31f89de8372cb1
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-72/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:9ba9a9e35539714a912ae88a9e60b343be38e21425da7a45de6f0c82c25d2c96
+size 583358280
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-72/optimizer.pt b/runs/mask15-l2r50-fulle-lm/checkpoint-72/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..9e7c5b98218c9a381893c09bc8f2f9397722af77
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-72/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:fc8aec9aad0190fe2529457115eea34e98e3bdfdfacc534ae5265fdab245c3fd
+size 1166829434
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-72/rng_state_0.pth b/runs/mask15-l2r50-fulle-lm/checkpoint-72/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..c9997ba5dfb3dad85ce07d3d01f5dd0c21b73e04
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-72/rng_state_0.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:2c177cdec7b32ca9c62c848a01589c743e5214cb60d768cdf7657ed3772aa0e8
+size 14512
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-72/rng_state_1.pth b/runs/mask15-l2r50-fulle-lm/checkpoint-72/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..54a1eb69db406a52562ce734a2e03b904e6e9ef8
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-72/rng_state_1.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:1f49974f0f5e39592c25e854d2c190d99d3bca940e1e70877631ebc7daedb120
+size 14512
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-72/scheduler.pt b/runs/mask15-l2r50-fulle-lm/checkpoint-72/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..43cf114590f1088fd438450226c42885d843da41
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-72/scheduler.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:878ec53f5c2a524fc37af578b94a9025923faefea55f621be8e5643a79915d0f
+size 1064
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-72/tokenizer.json b/runs/mask15-l2r50-fulle-lm/checkpoint-72/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..6226bf25372d1a86dbd704ec75d2129960f1ba88
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-72/tokenizer.json
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:9245fe3cb2d40f9ed8d5d8ddd1d58701ba2a236beec08f656162281673f30560
+size 11424264
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-72/tokenizer_config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-72/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..01bc9676576e8cf62a08a9db166d6c5bab1d6727
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-72/tokenizer_config.json
@@ -0,0 +1,20 @@
+{
+ "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|>",
+ "<|mask|>"
+ ],
+ "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/mask15-l2r50-fulle-lm/checkpoint-72/trainer_state.json b/runs/mask15-l2r50-fulle-lm/checkpoint-72/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..576e3a306e182039c8184cb5c666d1dd451b7113
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-72/trainer_state.json
@@ -0,0 +1,538 @@
+{
+ "best_global_step": null,
+ "best_metric": null,
+ "best_model_checkpoint": null,
+ "epoch": 1.0,
+ "eval_steps": 500,
+ "global_step": 72,
+ "is_hyper_param_search": false,
+ "is_local_process_zero": true,
+ "is_world_process_zero": true,
+ "log_history": [
+ {
+ "epoch": 0.013979903888160769,
+ "grad_norm": 9.807971954345703,
+ "learning_rate": 0.0,
+ "loss": 11.989814758300781,
+ "step": 1
+ },
+ {
+ "epoch": 0.027959807776321538,
+ "grad_norm": 9.834383010864258,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 11.993022918701172,
+ "step": 2
+ },
+ {
+ "epoch": 0.04193971166448231,
+ "grad_norm": 9.482470512390137,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 11.854345321655273,
+ "step": 3
+ },
+ {
+ "epoch": 0.055919615552643076,
+ "grad_norm": 7.678808689117432,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 11.618255615234375,
+ "step": 4
+ },
+ {
+ "epoch": 0.06989951944080385,
+ "grad_norm": 6.011275291442871,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 11.351423263549805,
+ "step": 5
+ },
+ {
+ "epoch": 0.08387942332896461,
+ "grad_norm": 5.244393825531006,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 11.128631591796875,
+ "step": 6
+ },
+ {
+ "epoch": 0.09785932721712538,
+ "grad_norm": 4.577618598937988,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 10.921937942504883,
+ "step": 7
+ },
+ {
+ "epoch": 0.11183923110528615,
+ "grad_norm": 4.03810453414917,
+ "learning_rate": 4.2e-05,
+ "loss": 10.742650985717773,
+ "step": 8
+ },
+ {
+ "epoch": 0.1258191349934469,
+ "grad_norm": 3.657679796218872,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 10.600778579711914,
+ "step": 9
+ },
+ {
+ "epoch": 0.1397990388816077,
+ "grad_norm": 3.352902889251709,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 10.489639282226562,
+ "step": 10
+ },
+ {
+ "epoch": 0.15377894276976845,
+ "grad_norm": 3.1162633895874023,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 10.417770385742188,
+ "step": 11
+ },
+ {
+ "epoch": 0.16775884665792923,
+ "grad_norm": 3.0402638912200928,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 10.35334587097168,
+ "step": 12
+ },
+ {
+ "epoch": 0.18173875054608998,
+ "grad_norm": 3.030630111694336,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 10.306867599487305,
+ "step": 13
+ },
+ {
+ "epoch": 0.19571865443425077,
+ "grad_norm": 3.035292148590088,
+ "learning_rate": 7.8e-05,
+ "loss": 10.26003646850586,
+ "step": 14
+ },
+ {
+ "epoch": 0.20969855832241152,
+ "grad_norm": 3.0125675201416016,
+ "learning_rate": 8.4e-05,
+ "loss": 10.219265937805176,
+ "step": 15
+ },
+ {
+ "epoch": 0.2236784622105723,
+ "grad_norm": 2.9998886585235596,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 10.161077499389648,
+ "step": 16
+ },
+ {
+ "epoch": 0.23765836609873306,
+ "grad_norm": 2.9411966800689697,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 10.107423782348633,
+ "step": 17
+ },
+ {
+ "epoch": 0.2516382699868938,
+ "grad_norm": 2.88081955909729,
+ "learning_rate": 0.000102,
+ "loss": 10.04700756072998,
+ "step": 18
+ },
+ {
+ "epoch": 0.2656181738750546,
+ "grad_norm": 2.8219687938690186,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 9.981185913085938,
+ "step": 19
+ },
+ {
+ "epoch": 0.2795980777632154,
+ "grad_norm": 2.79306960105896,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 9.89747142791748,
+ "step": 20
+ },
+ {
+ "epoch": 0.29357798165137616,
+ "grad_norm": 2.7314443588256836,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 9.829219818115234,
+ "step": 21
+ },
+ {
+ "epoch": 0.3075578855395369,
+ "grad_norm": 2.6923747062683105,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 9.747566223144531,
+ "step": 22
+ },
+ {
+ "epoch": 0.3215377894276977,
+ "grad_norm": 2.650602340698242,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 9.66455078125,
+ "step": 23
+ },
+ {
+ "epoch": 0.33551769331585846,
+ "grad_norm": 2.606977701187134,
+ "learning_rate": 0.000138,
+ "loss": 9.582326889038086,
+ "step": 24
+ },
+ {
+ "epoch": 0.34949759720401924,
+ "grad_norm": 2.567256212234497,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 9.492591857910156,
+ "step": 25
+ },
+ {
+ "epoch": 0.36347750109217997,
+ "grad_norm": 2.520740509033203,
+ "learning_rate": 0.00015,
+ "loss": 9.396563529968262,
+ "step": 26
+ },
+ {
+ "epoch": 0.37745740498034075,
+ "grad_norm": 2.471588611602783,
+ "learning_rate": 0.000156,
+ "loss": 9.303571701049805,
+ "step": 27
+ },
+ {
+ "epoch": 0.39143730886850153,
+ "grad_norm": 2.4341530799865723,
+ "learning_rate": 0.000162,
+ "loss": 9.191819190979004,
+ "step": 28
+ },
+ {
+ "epoch": 0.4054172127566623,
+ "grad_norm": 2.369244337081909,
+ "learning_rate": 0.000168,
+ "loss": 9.092012405395508,
+ "step": 29
+ },
+ {
+ "epoch": 0.41939711664482304,
+ "grad_norm": 2.28625226020813,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 8.984567642211914,
+ "step": 30
+ },
+ {
+ "epoch": 0.4333770205329838,
+ "grad_norm": 2.2082231044769287,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 8.889009475708008,
+ "step": 31
+ },
+ {
+ "epoch": 0.4473569244211446,
+ "grad_norm": 2.1429483890533447,
+ "learning_rate": 0.000186,
+ "loss": 8.778556823730469,
+ "step": 32
+ },
+ {
+ "epoch": 0.4613368283093054,
+ "grad_norm": 2.0937352180480957,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 8.661166191101074,
+ "step": 33
+ },
+ {
+ "epoch": 0.4753167321974661,
+ "grad_norm": 2.040790557861328,
+ "learning_rate": 0.000198,
+ "loss": 8.550382614135742,
+ "step": 34
+ },
+ {
+ "epoch": 0.4892966360856269,
+ "grad_norm": 1.93914794921875,
+ "learning_rate": 0.000204,
+ "loss": 8.463907241821289,
+ "step": 35
+ },
+ {
+ "epoch": 0.5032765399737876,
+ "grad_norm": 1.8624178171157837,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 8.3438720703125,
+ "step": 36
+ },
+ {
+ "epoch": 0.5172564438619485,
+ "grad_norm": 1.8107167482376099,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 8.21871566772461,
+ "step": 37
+ },
+ {
+ "epoch": 0.5312363477501092,
+ "grad_norm": 1.717979073524475,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 8.113494873046875,
+ "step": 38
+ },
+ {
+ "epoch": 0.54521625163827,
+ "grad_norm": 1.668742060661316,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 8.006099700927734,
+ "step": 39
+ },
+ {
+ "epoch": 0.5591961555264308,
+ "grad_norm": 1.6147786378860474,
+ "learning_rate": 0.000234,
+ "loss": 7.911509037017822,
+ "step": 40
+ },
+ {
+ "epoch": 0.5731760594145915,
+ "grad_norm": 1.535750150680542,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 7.822839736938477,
+ "step": 41
+ },
+ {
+ "epoch": 0.5871559633027523,
+ "grad_norm": 1.4700065851211548,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 7.713842868804932,
+ "step": 42
+ },
+ {
+ "epoch": 0.601135867190913,
+ "grad_norm": 1.39020574092865,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 7.6040191650390625,
+ "step": 43
+ },
+ {
+ "epoch": 0.6151157710790738,
+ "grad_norm": 1.2875399589538574,
+ "learning_rate": 0.000258,
+ "loss": 7.550642013549805,
+ "step": 44
+ },
+ {
+ "epoch": 0.6290956749672346,
+ "grad_norm": 1.2094247341156006,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 7.460824012756348,
+ "step": 45
+ },
+ {
+ "epoch": 0.6430755788553953,
+ "grad_norm": 1.126452088356018,
+ "learning_rate": 0.00027,
+ "loss": 7.380537986755371,
+ "step": 46
+ },
+ {
+ "epoch": 0.6570554827435562,
+ "grad_norm": 1.0313163995742798,
+ "learning_rate": 0.000276,
+ "loss": 7.286153793334961,
+ "step": 47
+ },
+ {
+ "epoch": 0.6710353866317169,
+ "grad_norm": 0.9172859787940979,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 7.2064714431762695,
+ "step": 48
+ },
+ {
+ "epoch": 0.6850152905198776,
+ "grad_norm": 0.8148201107978821,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 7.158207416534424,
+ "step": 49
+ },
+ {
+ "epoch": 0.6989951944080385,
+ "grad_norm": 0.650123119354248,
+ "learning_rate": 0.000294,
+ "loss": 7.108791828155518,
+ "step": 50
+ },
+ {
+ "epoch": 0.7129750982961992,
+ "grad_norm": 0.5437585711479187,
+ "learning_rate": 0.0003,
+ "loss": 7.083050727844238,
+ "step": 51
+ },
+ {
+ "epoch": 0.7269550021843599,
+ "grad_norm": 0.46762895584106445,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 7.058027267456055,
+ "step": 52
+ },
+ {
+ "epoch": 0.7409349060725208,
+ "grad_norm": 0.47947561740875244,
+ "learning_rate": 0.000312,
+ "loss": 7.015172958374023,
+ "step": 53
+ },
+ {
+ "epoch": 0.7549148099606815,
+ "grad_norm": 0.7546492218971252,
+ "learning_rate": 0.000318,
+ "loss": 7.024629592895508,
+ "step": 54
+ },
+ {
+ "epoch": 0.7688947138488423,
+ "grad_norm": 0.6153718829154968,
+ "learning_rate": 0.000324,
+ "loss": 7.026667594909668,
+ "step": 55
+ },
+ {
+ "epoch": 0.7828746177370031,
+ "grad_norm": 0.3359069228172302,
+ "learning_rate": 0.00033,
+ "loss": 7.008166313171387,
+ "step": 56
+ },
+ {
+ "epoch": 0.7968545216251638,
+ "grad_norm": 0.48906823992729187,
+ "learning_rate": 0.000336,
+ "loss": 7.019716262817383,
+ "step": 57
+ },
+ {
+ "epoch": 0.8108344255133246,
+ "grad_norm": 0.5525421500205994,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 7.02108097076416,
+ "step": 58
+ },
+ {
+ "epoch": 0.8248143294014854,
+ "grad_norm": 0.3103712201118469,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 7.003164768218994,
+ "step": 59
+ },
+ {
+ "epoch": 0.8387942332896461,
+ "grad_norm": 0.4431874752044678,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 7.003463268280029,
+ "step": 60
+ },
+ {
+ "epoch": 0.8527741371778069,
+ "grad_norm": 0.4291120767593384,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 6.96931791305542,
+ "step": 61
+ },
+ {
+ "epoch": 0.8667540410659677,
+ "grad_norm": 0.6566054224967957,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 6.989445686340332,
+ "step": 62
+ },
+ {
+ "epoch": 0.8807339449541285,
+ "grad_norm": 0.20663189888000488,
+ "learning_rate": 0.000372,
+ "loss": 6.9669342041015625,
+ "step": 63
+ },
+ {
+ "epoch": 0.8947138488422892,
+ "grad_norm": 0.6242535710334778,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 6.949883460998535,
+ "step": 64
+ },
+ {
+ "epoch": 0.9086937527304499,
+ "grad_norm": 0.6984224915504456,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 6.955153465270996,
+ "step": 65
+ },
+ {
+ "epoch": 0.9226736566186108,
+ "grad_norm": 0.6328083872795105,
+ "learning_rate": 0.00039,
+ "loss": 6.965421676635742,
+ "step": 66
+ },
+ {
+ "epoch": 0.9366535605067715,
+ "grad_norm": 1.213352918624878,
+ "learning_rate": 0.000396,
+ "loss": 6.9454345703125,
+ "step": 67
+ },
+ {
+ "epoch": 0.9506334643949322,
+ "grad_norm": 0.9221940636634827,
+ "learning_rate": 0.000402,
+ "loss": 6.923908233642578,
+ "step": 68
+ },
+ {
+ "epoch": 0.9646133682830931,
+ "grad_norm": 0.6825450658798218,
+ "learning_rate": 0.000408,
+ "loss": 6.910131454467773,
+ "step": 69
+ },
+ {
+ "epoch": 0.9785932721712538,
+ "grad_norm": 0.5690162181854248,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 6.89891242980957,
+ "step": 70
+ },
+ {
+ "epoch": 0.9925731760594146,
+ "grad_norm": 0.4320870041847229,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 6.896081924438477,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.31632405519485474,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 6.897444725036621,
+ "step": 72
+ }
+ ],
+ "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+16,
+ "train_batch_size": 8,
+ "trial_name": null,
+ "trial_params": null
+}
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-72/training_args.bin b/runs/mask15-l2r50-fulle-lm/checkpoint-72/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..43721c50815fe94f90cb043bf545b8f7bd9afc38
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-72/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:a0b8d7bb9ac952b1abed3bd1e5c8f6ebd20daa957b3a85688954f8df03be6eb9
+size 4856
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-7200/chat_template.jinja b/runs/mask15-l2r50-fulle-lm/checkpoint-7200/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/mask15-l2r50-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/mask15-l2r50-fulle-lm/checkpoint-7200/config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-7200/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..1b4ac3c550d6003148026765eba4cb1512b216c9
--- /dev/null
+++ b/runs/mask15-l2r50-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": 151672
+}
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-7200/generation_config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-7200/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..5cd15fe1269fd505cfdefe9b3e9989dacd9f68f4
--- /dev/null
+++ b/runs/mask15-l2r50-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/mask15-l2r50-fulle-lm/checkpoint-7200/model.safetensors b/runs/mask15-l2r50-fulle-lm/checkpoint-7200/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..2c8f32722aa1827d48a450613d6af259f54c2866
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-7200/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:4a3e9ae11f1339bb7ca96a17641e2f18c73ed9a4b6e7fc1f3bfd641548629d43
+size 583358280
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-7200/optimizer.pt b/runs/mask15-l2r50-fulle-lm/checkpoint-7200/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..8a7d2e2faa24a6c0554b3e2f1ed95ed2de567f83
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-7200/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:e2d2941b67580db9f9d7bfac813bfff097aeae44a0ed3e790b5d57173134e212
+size 1166831994
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-7200/rng_state_0.pth b/runs/mask15-l2r50-fulle-lm/checkpoint-7200/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..e4efbeb66de39df31f4a9c5b523b1717a9646fb2
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-7200/rng_state_0.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:bcd75a064db5b842fe9414a725f278a926e946f745cefcac0f3a341aec0622e3
+size 14512
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-7200/rng_state_1.pth b/runs/mask15-l2r50-fulle-lm/checkpoint-7200/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..c5bd7f323a4a28052549be92ecc4b01e70e80144
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-7200/rng_state_1.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:f92dc6c05a4c7fe5a1f612054d7b49a23ac2125d8ba11bd99cb65b8cc54ae4ab
+size 14512
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-7200/scheduler.pt b/runs/mask15-l2r50-fulle-lm/checkpoint-7200/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..624c26e041c29e4eef4955201869827f6f6a567e
--- /dev/null
+++ b/runs/mask15-l2r50-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/mask15-l2r50-fulle-lm/checkpoint-7200/tokenizer.json b/runs/mask15-l2r50-fulle-lm/checkpoint-7200/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..6226bf25372d1a86dbd704ec75d2129960f1ba88
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-7200/tokenizer.json
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:9245fe3cb2d40f9ed8d5d8ddd1d58701ba2a236beec08f656162281673f30560
+size 11424264
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-7200/tokenizer_config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-7200/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..01bc9676576e8cf62a08a9db166d6c5bab1d6727
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-7200/tokenizer_config.json
@@ -0,0 +1,20 @@
+{
+ "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|>",
+ "<|mask|>"
+ ],
+ "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/mask15-l2r50-fulle-lm/checkpoint-7200/trainer_state.json b/runs/mask15-l2r50-fulle-lm/checkpoint-7200/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..3efd904bedffb41c2fde4e8320b519c5401cc6e2
--- /dev/null
+++ b/runs/mask15-l2r50-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": 9.807971954345703,
+ "learning_rate": 0.0,
+ "loss": 11.989814758300781,
+ "step": 1
+ },
+ {
+ "epoch": 0.027959807776321538,
+ "grad_norm": 9.834383010864258,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 11.993022918701172,
+ "step": 2
+ },
+ {
+ "epoch": 0.04193971166448231,
+ "grad_norm": 9.482470512390137,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 11.854345321655273,
+ "step": 3
+ },
+ {
+ "epoch": 0.055919615552643076,
+ "grad_norm": 7.678808689117432,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 11.618255615234375,
+ "step": 4
+ },
+ {
+ "epoch": 0.06989951944080385,
+ "grad_norm": 6.011275291442871,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 11.351423263549805,
+ "step": 5
+ },
+ {
+ "epoch": 0.08387942332896461,
+ "grad_norm": 5.244393825531006,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 11.128631591796875,
+ "step": 6
+ },
+ {
+ "epoch": 0.09785932721712538,
+ "grad_norm": 4.577618598937988,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 10.921937942504883,
+ "step": 7
+ },
+ {
+ "epoch": 0.11183923110528615,
+ "grad_norm": 4.03810453414917,
+ "learning_rate": 4.2e-05,
+ "loss": 10.742650985717773,
+ "step": 8
+ },
+ {
+ "epoch": 0.1258191349934469,
+ "grad_norm": 3.657679796218872,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 10.600778579711914,
+ "step": 9
+ },
+ {
+ "epoch": 0.1397990388816077,
+ "grad_norm": 3.352902889251709,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 10.489639282226562,
+ "step": 10
+ },
+ {
+ "epoch": 0.15377894276976845,
+ "grad_norm": 3.1162633895874023,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 10.417770385742188,
+ "step": 11
+ },
+ {
+ "epoch": 0.16775884665792923,
+ "grad_norm": 3.0402638912200928,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 10.35334587097168,
+ "step": 12
+ },
+ {
+ "epoch": 0.18173875054608998,
+ "grad_norm": 3.030630111694336,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 10.306867599487305,
+ "step": 13
+ },
+ {
+ "epoch": 0.19571865443425077,
+ "grad_norm": 3.035292148590088,
+ "learning_rate": 7.8e-05,
+ "loss": 10.26003646850586,
+ "step": 14
+ },
+ {
+ "epoch": 0.20969855832241152,
+ "grad_norm": 3.0125675201416016,
+ "learning_rate": 8.4e-05,
+ "loss": 10.219265937805176,
+ "step": 15
+ },
+ {
+ "epoch": 0.2236784622105723,
+ "grad_norm": 2.9998886585235596,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 10.161077499389648,
+ "step": 16
+ },
+ {
+ "epoch": 0.23765836609873306,
+ "grad_norm": 2.9411966800689697,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 10.107423782348633,
+ "step": 17
+ },
+ {
+ "epoch": 0.2516382699868938,
+ "grad_norm": 2.88081955909729,
+ "learning_rate": 0.000102,
+ "loss": 10.04700756072998,
+ "step": 18
+ },
+ {
+ "epoch": 0.2656181738750546,
+ "grad_norm": 2.8219687938690186,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 9.981185913085938,
+ "step": 19
+ },
+ {
+ "epoch": 0.2795980777632154,
+ "grad_norm": 2.79306960105896,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 9.89747142791748,
+ "step": 20
+ },
+ {
+ "epoch": 0.29357798165137616,
+ "grad_norm": 2.7314443588256836,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 9.829219818115234,
+ "step": 21
+ },
+ {
+ "epoch": 0.3075578855395369,
+ "grad_norm": 2.6923747062683105,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 9.747566223144531,
+ "step": 22
+ },
+ {
+ "epoch": 0.3215377894276977,
+ "grad_norm": 2.650602340698242,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 9.66455078125,
+ "step": 23
+ },
+ {
+ "epoch": 0.33551769331585846,
+ "grad_norm": 2.606977701187134,
+ "learning_rate": 0.000138,
+ "loss": 9.582326889038086,
+ "step": 24
+ },
+ {
+ "epoch": 0.34949759720401924,
+ "grad_norm": 2.567256212234497,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 9.492591857910156,
+ "step": 25
+ },
+ {
+ "epoch": 0.36347750109217997,
+ "grad_norm": 2.520740509033203,
+ "learning_rate": 0.00015,
+ "loss": 9.396563529968262,
+ "step": 26
+ },
+ {
+ "epoch": 0.37745740498034075,
+ "grad_norm": 2.471588611602783,
+ "learning_rate": 0.000156,
+ "loss": 9.303571701049805,
+ "step": 27
+ },
+ {
+ "epoch": 0.39143730886850153,
+ "grad_norm": 2.4341530799865723,
+ "learning_rate": 0.000162,
+ "loss": 9.191819190979004,
+ "step": 28
+ },
+ {
+ "epoch": 0.4054172127566623,
+ "grad_norm": 2.369244337081909,
+ "learning_rate": 0.000168,
+ "loss": 9.092012405395508,
+ "step": 29
+ },
+ {
+ "epoch": 0.41939711664482304,
+ "grad_norm": 2.28625226020813,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 8.984567642211914,
+ "step": 30
+ },
+ {
+ "epoch": 0.4333770205329838,
+ "grad_norm": 2.2082231044769287,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 8.889009475708008,
+ "step": 31
+ },
+ {
+ "epoch": 0.4473569244211446,
+ "grad_norm": 2.1429483890533447,
+ "learning_rate": 0.000186,
+ "loss": 8.778556823730469,
+ "step": 32
+ },
+ {
+ "epoch": 0.4613368283093054,
+ "grad_norm": 2.0937352180480957,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 8.661166191101074,
+ "step": 33
+ },
+ {
+ "epoch": 0.4753167321974661,
+ "grad_norm": 2.040790557861328,
+ "learning_rate": 0.000198,
+ "loss": 8.550382614135742,
+ "step": 34
+ },
+ {
+ "epoch": 0.4892966360856269,
+ "grad_norm": 1.93914794921875,
+ "learning_rate": 0.000204,
+ "loss": 8.463907241821289,
+ "step": 35
+ },
+ {
+ "epoch": 0.5032765399737876,
+ "grad_norm": 1.8624178171157837,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 8.3438720703125,
+ "step": 36
+ },
+ {
+ "epoch": 0.5172564438619485,
+ "grad_norm": 1.8107167482376099,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 8.21871566772461,
+ "step": 37
+ },
+ {
+ "epoch": 0.5312363477501092,
+ "grad_norm": 1.717979073524475,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 8.113494873046875,
+ "step": 38
+ },
+ {
+ "epoch": 0.54521625163827,
+ "grad_norm": 1.668742060661316,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 8.006099700927734,
+ "step": 39
+ },
+ {
+ "epoch": 0.5591961555264308,
+ "grad_norm": 1.6147786378860474,
+ "learning_rate": 0.000234,
+ "loss": 7.911509037017822,
+ "step": 40
+ },
+ {
+ "epoch": 0.5731760594145915,
+ "grad_norm": 1.535750150680542,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 7.822839736938477,
+ "step": 41
+ },
+ {
+ "epoch": 0.5871559633027523,
+ "grad_norm": 1.4700065851211548,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 7.713842868804932,
+ "step": 42
+ },
+ {
+ "epoch": 0.601135867190913,
+ "grad_norm": 1.39020574092865,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 7.6040191650390625,
+ "step": 43
+ },
+ {
+ "epoch": 0.6151157710790738,
+ "grad_norm": 1.2875399589538574,
+ "learning_rate": 0.000258,
+ "loss": 7.550642013549805,
+ "step": 44
+ },
+ {
+ "epoch": 0.6290956749672346,
+ "grad_norm": 1.2094247341156006,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 7.460824012756348,
+ "step": 45
+ },
+ {
+ "epoch": 0.6430755788553953,
+ "grad_norm": 1.126452088356018,
+ "learning_rate": 0.00027,
+ "loss": 7.380537986755371,
+ "step": 46
+ },
+ {
+ "epoch": 0.6570554827435562,
+ "grad_norm": 1.0313163995742798,
+ "learning_rate": 0.000276,
+ "loss": 7.286153793334961,
+ "step": 47
+ },
+ {
+ "epoch": 0.6710353866317169,
+ "grad_norm": 0.9172859787940979,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 7.2064714431762695,
+ "step": 48
+ },
+ {
+ "epoch": 0.6850152905198776,
+ "grad_norm": 0.8148201107978821,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 7.158207416534424,
+ "step": 49
+ },
+ {
+ "epoch": 0.6989951944080385,
+ "grad_norm": 0.650123119354248,
+ "learning_rate": 0.000294,
+ "loss": 7.108791828155518,
+ "step": 50
+ },
+ {
+ "epoch": 0.7129750982961992,
+ "grad_norm": 0.5437585711479187,
+ "learning_rate": 0.0003,
+ "loss": 7.083050727844238,
+ "step": 51
+ },
+ {
+ "epoch": 0.7269550021843599,
+ "grad_norm": 0.46762895584106445,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 7.058027267456055,
+ "step": 52
+ },
+ {
+ "epoch": 0.7409349060725208,
+ "grad_norm": 0.47947561740875244,
+ "learning_rate": 0.000312,
+ "loss": 7.015172958374023,
+ "step": 53
+ },
+ {
+ "epoch": 0.7549148099606815,
+ "grad_norm": 0.7546492218971252,
+ "learning_rate": 0.000318,
+ "loss": 7.024629592895508,
+ "step": 54
+ },
+ {
+ "epoch": 0.7688947138488423,
+ "grad_norm": 0.6153718829154968,
+ "learning_rate": 0.000324,
+ "loss": 7.026667594909668,
+ "step": 55
+ },
+ {
+ "epoch": 0.7828746177370031,
+ "grad_norm": 0.3359069228172302,
+ "learning_rate": 0.00033,
+ "loss": 7.008166313171387,
+ "step": 56
+ },
+ {
+ "epoch": 0.7968545216251638,
+ "grad_norm": 0.48906823992729187,
+ "learning_rate": 0.000336,
+ "loss": 7.019716262817383,
+ "step": 57
+ },
+ {
+ "epoch": 0.8108344255133246,
+ "grad_norm": 0.5525421500205994,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 7.02108097076416,
+ "step": 58
+ },
+ {
+ "epoch": 0.8248143294014854,
+ "grad_norm": 0.3103712201118469,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 7.003164768218994,
+ "step": 59
+ },
+ {
+ "epoch": 0.8387942332896461,
+ "grad_norm": 0.4431874752044678,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 7.003463268280029,
+ "step": 60
+ },
+ {
+ "epoch": 0.8527741371778069,
+ "grad_norm": 0.4291120767593384,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 6.96931791305542,
+ "step": 61
+ },
+ {
+ "epoch": 0.8667540410659677,
+ "grad_norm": 0.6566054224967957,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 6.989445686340332,
+ "step": 62
+ },
+ {
+ "epoch": 0.8807339449541285,
+ "grad_norm": 0.20663189888000488,
+ "learning_rate": 0.000372,
+ "loss": 6.9669342041015625,
+ "step": 63
+ },
+ {
+ "epoch": 0.8947138488422892,
+ "grad_norm": 0.6242535710334778,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 6.949883460998535,
+ "step": 64
+ },
+ {
+ "epoch": 0.9086937527304499,
+ "grad_norm": 0.6984224915504456,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 6.955153465270996,
+ "step": 65
+ },
+ {
+ "epoch": 0.9226736566186108,
+ "grad_norm": 0.6328083872795105,
+ "learning_rate": 0.00039,
+ "loss": 6.965421676635742,
+ "step": 66
+ },
+ {
+ "epoch": 0.9366535605067715,
+ "grad_norm": 1.213352918624878,
+ "learning_rate": 0.000396,
+ "loss": 6.9454345703125,
+ "step": 67
+ },
+ {
+ "epoch": 0.9506334643949322,
+ "grad_norm": 0.9221940636634827,
+ "learning_rate": 0.000402,
+ "loss": 6.923908233642578,
+ "step": 68
+ },
+ {
+ "epoch": 0.9646133682830931,
+ "grad_norm": 0.6825450658798218,
+ "learning_rate": 0.000408,
+ "loss": 6.910131454467773,
+ "step": 69
+ },
+ {
+ "epoch": 0.9785932721712538,
+ "grad_norm": 0.5690162181854248,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 6.89891242980957,
+ "step": 70
+ },
+ {
+ "epoch": 0.9925731760594146,
+ "grad_norm": 0.4320870041847229,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 6.896081924438477,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.31632405519485474,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 6.897444725036621,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 7.757839679718018,
+ "eval_runtime": 43.8338,
+ "eval_samples_per_second": 55.71,
+ "eval_steps_per_second": 3.49,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139799038881607,
+ "grad_norm": 0.3789916932582855,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 6.877245903015137,
+ "step": 73
+ },
+ {
+ "epoch": 1.0279598077763215,
+ "grad_norm": 0.9167932868003845,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 6.921600341796875,
+ "step": 74
+ },
+ {
+ "epoch": 1.0419397116644824,
+ "grad_norm": 0.581188440322876,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 6.861001968383789,
+ "step": 75
+ },
+ {
+ "epoch": 1.0559196155526431,
+ "grad_norm": 0.4179714024066925,
+ "learning_rate": 0.00045,
+ "loss": 6.875657081604004,
+ "step": 76
+ },
+ {
+ "epoch": 1.0698995194408039,
+ "grad_norm": 1.0669957399368286,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 6.857122421264648,
+ "step": 77
+ },
+ {
+ "epoch": 1.0838794233289646,
+ "grad_norm": 0.27855145931243896,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 6.828852653503418,
+ "step": 78
+ },
+ {
+ "epoch": 1.0978593272171253,
+ "grad_norm": 0.7192047834396362,
+ "learning_rate": 0.000468,
+ "loss": 6.870839595794678,
+ "step": 79
+ },
+ {
+ "epoch": 1.1118392311052863,
+ "grad_norm": 0.5583325624465942,
+ "learning_rate": 0.000474,
+ "loss": 6.8497514724731445,
+ "step": 80
+ },
+ {
+ "epoch": 1.125819134993447,
+ "grad_norm": 0.3001925051212311,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 6.858528137207031,
+ "step": 81
+ },
+ {
+ "epoch": 1.1397990388816077,
+ "grad_norm": 0.2408239096403122,
+ "learning_rate": 0.000486,
+ "loss": 6.83231258392334,
+ "step": 82
+ },
+ {
+ "epoch": 1.1537789427697684,
+ "grad_norm": 0.28230324387550354,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 6.815476894378662,
+ "step": 83
+ },
+ {
+ "epoch": 1.1677588466579292,
+ "grad_norm": 0.3247123658657074,
+ "learning_rate": 0.000498,
+ "loss": 6.780126094818115,
+ "step": 84
+ },
+ {
+ "epoch": 1.18173875054609,
+ "grad_norm": 0.25713011622428894,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 6.7798309326171875,
+ "step": 85
+ },
+ {
+ "epoch": 1.1957186544342508,
+ "grad_norm": 0.5386835932731628,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 6.791745185852051,
+ "step": 86
+ },
+ {
+ "epoch": 1.2096985583224116,
+ "grad_norm": 0.2226393222808838,
+ "learning_rate": 0.000516,
+ "loss": 6.7826972007751465,
+ "step": 87
+ },
+ {
+ "epoch": 1.2236784622105723,
+ "grad_norm": 0.4338362216949463,
+ "learning_rate": 0.000522,
+ "loss": 6.805043697357178,
+ "step": 88
+ },
+ {
+ "epoch": 1.237658366098733,
+ "grad_norm": 0.2953208386898041,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 6.768434524536133,
+ "step": 89
+ },
+ {
+ "epoch": 1.2516382699868938,
+ "grad_norm": 0.13453717529773712,
+ "learning_rate": 0.000534,
+ "loss": 6.773697376251221,
+ "step": 90
+ },
+ {
+ "epoch": 1.2656181738750547,
+ "grad_norm": 0.35774412751197815,
+ "learning_rate": 0.00054,
+ "loss": 6.766414642333984,
+ "step": 91
+ },
+ {
+ "epoch": 1.2795980777632154,
+ "grad_norm": 0.4669720530509949,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 6.754847526550293,
+ "step": 92
+ },
+ {
+ "epoch": 1.2935779816513762,
+ "grad_norm": 0.13806621730327606,
+ "learning_rate": 0.000552,
+ "loss": 6.746858596801758,
+ "step": 93
+ },
+ {
+ "epoch": 1.307557885539537,
+ "grad_norm": 0.3280332386493683,
+ "learning_rate": 0.000558,
+ "loss": 6.715662956237793,
+ "step": 94
+ },
+ {
+ "epoch": 1.3215377894276976,
+ "grad_norm": 0.4689937233924866,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 6.734938144683838,
+ "step": 95
+ },
+ {
+ "epoch": 1.3355176933158583,
+ "grad_norm": 0.35371264815330505,
+ "learning_rate": 0.00057,
+ "loss": 6.748386383056641,
+ "step": 96
+ },
+ {
+ "epoch": 1.3494975972040193,
+ "grad_norm": 0.15232303738594055,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 6.705557823181152,
+ "step": 97
+ },
+ {
+ "epoch": 1.36347750109218,
+ "grad_norm": 0.30132821202278137,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 6.7199859619140625,
+ "step": 98
+ },
+ {
+ "epoch": 1.3774574049803407,
+ "grad_norm": 0.42174842953681946,
+ "learning_rate": 0.000588,
+ "loss": 6.715370178222656,
+ "step": 99
+ },
+ {
+ "epoch": 1.3914373088685015,
+ "grad_norm": 0.6257228851318359,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 6.707026958465576,
+ "step": 100
+ },
+ {
+ "epoch": 1.4054172127566624,
+ "grad_norm": 0.4551195800304413,
+ "learning_rate": 0.0006,
+ "loss": 6.7078423500061035,
+ "step": 101
+ },
+ {
+ "epoch": 1.4193971166448232,
+ "grad_norm": 0.41940346360206604,
+ "learning_rate": 0.0006,
+ "loss": 6.6959357261657715,
+ "step": 102
+ },
+ {
+ "epoch": 1.4333770205329839,
+ "grad_norm": 0.32251718640327454,
+ "learning_rate": 0.0006,
+ "loss": 6.689168930053711,
+ "step": 103
+ },
+ {
+ "epoch": 1.4473569244211446,
+ "grad_norm": 0.2992720305919647,
+ "learning_rate": 0.0006,
+ "loss": 6.680738925933838,
+ "step": 104
+ },
+ {
+ "epoch": 1.4613368283093053,
+ "grad_norm": 0.3228456974029541,
+ "learning_rate": 0.0006,
+ "loss": 6.672350883483887,
+ "step": 105
+ },
+ {
+ "epoch": 1.475316732197466,
+ "grad_norm": 0.24954743683338165,
+ "learning_rate": 0.0006,
+ "loss": 6.653716087341309,
+ "step": 106
+ },
+ {
+ "epoch": 1.4892966360856268,
+ "grad_norm": 0.30740687251091003,
+ "learning_rate": 0.0006,
+ "loss": 6.676583290100098,
+ "step": 107
+ },
+ {
+ "epoch": 1.5032765399737875,
+ "grad_norm": 0.24950599670410156,
+ "learning_rate": 0.0006,
+ "loss": 6.656691551208496,
+ "step": 108
+ },
+ {
+ "epoch": 1.5172564438619485,
+ "grad_norm": 0.24293005466461182,
+ "learning_rate": 0.0006,
+ "loss": 6.640995979309082,
+ "step": 109
+ },
+ {
+ "epoch": 1.5312363477501092,
+ "grad_norm": 0.30167272686958313,
+ "learning_rate": 0.0006,
+ "loss": 6.647380352020264,
+ "step": 110
+ },
+ {
+ "epoch": 1.5452162516382701,
+ "grad_norm": 0.4424632787704468,
+ "learning_rate": 0.0006,
+ "loss": 6.6548261642456055,
+ "step": 111
+ },
+ {
+ "epoch": 1.5591961555264309,
+ "grad_norm": 0.5295748114585876,
+ "learning_rate": 0.0006,
+ "loss": 6.64370059967041,
+ "step": 112
+ },
+ {
+ "epoch": 1.5731760594145916,
+ "grad_norm": 0.6829339265823364,
+ "learning_rate": 0.0006,
+ "loss": 6.654196739196777,
+ "step": 113
+ },
+ {
+ "epoch": 1.5871559633027523,
+ "grad_norm": 0.6534460186958313,
+ "learning_rate": 0.0006,
+ "loss": 6.675765037536621,
+ "step": 114
+ },
+ {
+ "epoch": 1.601135867190913,
+ "grad_norm": 0.6172244548797607,
+ "learning_rate": 0.0006,
+ "loss": 6.631234169006348,
+ "step": 115
+ },
+ {
+ "epoch": 1.6151157710790738,
+ "grad_norm": 0.5650008320808411,
+ "learning_rate": 0.0006,
+ "loss": 6.654262542724609,
+ "step": 116
+ },
+ {
+ "epoch": 1.6290956749672345,
+ "grad_norm": 0.3890475928783417,
+ "learning_rate": 0.0006,
+ "loss": 6.627526760101318,
+ "step": 117
+ },
+ {
+ "epoch": 1.6430755788553952,
+ "grad_norm": 0.6409873366355896,
+ "learning_rate": 0.0006,
+ "loss": 6.619794845581055,
+ "step": 118
+ },
+ {
+ "epoch": 1.6570554827435562,
+ "grad_norm": 0.5052326321601868,
+ "learning_rate": 0.0006,
+ "loss": 6.612556457519531,
+ "step": 119
+ },
+ {
+ "epoch": 1.671035386631717,
+ "grad_norm": 0.5001237988471985,
+ "learning_rate": 0.0006,
+ "loss": 6.577266693115234,
+ "step": 120
+ },
+ {
+ "epoch": 1.6850152905198776,
+ "grad_norm": 0.5328938364982605,
+ "learning_rate": 0.0006,
+ "loss": 6.59553337097168,
+ "step": 121
+ },
+ {
+ "epoch": 1.6989951944080386,
+ "grad_norm": 0.3568951189517975,
+ "learning_rate": 0.0006,
+ "loss": 6.602717399597168,
+ "step": 122
+ },
+ {
+ "epoch": 1.7129750982961993,
+ "grad_norm": 0.4017309546470642,
+ "learning_rate": 0.0006,
+ "loss": 6.589657783508301,
+ "step": 123
+ },
+ {
+ "epoch": 1.72695500218436,
+ "grad_norm": 0.21432629227638245,
+ "learning_rate": 0.0006,
+ "loss": 6.586555480957031,
+ "step": 124
+ },
+ {
+ "epoch": 1.7409349060725208,
+ "grad_norm": 0.21038052439689636,
+ "learning_rate": 0.0006,
+ "loss": 6.576569557189941,
+ "step": 125
+ },
+ {
+ "epoch": 1.7549148099606815,
+ "grad_norm": 0.23074904084205627,
+ "learning_rate": 0.0006,
+ "loss": 6.5880632400512695,
+ "step": 126
+ },
+ {
+ "epoch": 1.7688947138488422,
+ "grad_norm": 0.42963048815727234,
+ "learning_rate": 0.0006,
+ "loss": 6.603862762451172,
+ "step": 127
+ },
+ {
+ "epoch": 1.782874617737003,
+ "grad_norm": 0.361331045627594,
+ "learning_rate": 0.0006,
+ "loss": 6.579834938049316,
+ "step": 128
+ },
+ {
+ "epoch": 1.7968545216251637,
+ "grad_norm": 0.4951060712337494,
+ "learning_rate": 0.0006,
+ "loss": 6.570443630218506,
+ "step": 129
+ },
+ {
+ "epoch": 1.8108344255133246,
+ "grad_norm": 0.2258434295654297,
+ "learning_rate": 0.0006,
+ "loss": 6.5664777755737305,
+ "step": 130
+ },
+ {
+ "epoch": 1.8248143294014854,
+ "grad_norm": 0.2922155559062958,
+ "learning_rate": 0.0006,
+ "loss": 6.561326503753662,
+ "step": 131
+ },
+ {
+ "epoch": 1.838794233289646,
+ "grad_norm": 0.19068220257759094,
+ "learning_rate": 0.0006,
+ "loss": 6.528727054595947,
+ "step": 132
+ },
+ {
+ "epoch": 1.852774137177807,
+ "grad_norm": 0.2122010439634323,
+ "learning_rate": 0.0006,
+ "loss": 6.535636901855469,
+ "step": 133
+ },
+ {
+ "epoch": 1.8667540410659678,
+ "grad_norm": 0.25760164856910706,
+ "learning_rate": 0.0006,
+ "loss": 6.530498504638672,
+ "step": 134
+ },
+ {
+ "epoch": 1.8807339449541285,
+ "grad_norm": 0.1761016845703125,
+ "learning_rate": 0.0006,
+ "loss": 6.514466285705566,
+ "step": 135
+ },
+ {
+ "epoch": 1.8947138488422892,
+ "grad_norm": 0.2250051498413086,
+ "learning_rate": 0.0006,
+ "loss": 6.521268844604492,
+ "step": 136
+ },
+ {
+ "epoch": 1.90869375273045,
+ "grad_norm": 0.34458497166633606,
+ "learning_rate": 0.0006,
+ "loss": 6.512831687927246,
+ "step": 137
+ },
+ {
+ "epoch": 1.9226736566186107,
+ "grad_norm": 0.3468617796897888,
+ "learning_rate": 0.0006,
+ "loss": 6.515641689300537,
+ "step": 138
+ },
+ {
+ "epoch": 1.9366535605067714,
+ "grad_norm": 0.5051495432853699,
+ "learning_rate": 0.0006,
+ "loss": 6.5147905349731445,
+ "step": 139
+ },
+ {
+ "epoch": 1.9506334643949321,
+ "grad_norm": 0.7106727361679077,
+ "learning_rate": 0.0006,
+ "loss": 6.519277572631836,
+ "step": 140
+ },
+ {
+ "epoch": 1.964613368283093,
+ "grad_norm": 0.8881394267082214,
+ "learning_rate": 0.0006,
+ "loss": 6.526865482330322,
+ "step": 141
+ },
+ {
+ "epoch": 1.9785932721712538,
+ "grad_norm": 0.5552834272384644,
+ "learning_rate": 0.0006,
+ "loss": 6.469970226287842,
+ "step": 142
+ },
+ {
+ "epoch": 1.9925731760594148,
+ "grad_norm": 0.6903126835823059,
+ "learning_rate": 0.0006,
+ "loss": 6.476300239562988,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.47679027915000916,
+ "learning_rate": 0.0006,
+ "loss": 6.463827133178711,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 7.388528823852539,
+ "eval_runtime": 44.2519,
+ "eval_samples_per_second": 55.184,
+ "eval_steps_per_second": 3.457,
+ "step": 144
+ },
+ {
+ "epoch": 2.0139799038881607,
+ "grad_norm": 0.4719221293926239,
+ "learning_rate": 0.0006,
+ "loss": 6.480956077575684,
+ "step": 145
+ },
+ {
+ "epoch": 2.0279598077763215,
+ "grad_norm": 0.41137924790382385,
+ "learning_rate": 0.0006,
+ "loss": 6.449707984924316,
+ "step": 146
+ },
+ {
+ "epoch": 2.041939711664482,
+ "grad_norm": 0.4237765371799469,
+ "learning_rate": 0.0006,
+ "loss": 6.467435836791992,
+ "step": 147
+ },
+ {
+ "epoch": 2.055919615552643,
+ "grad_norm": 0.44081810116767883,
+ "learning_rate": 0.0006,
+ "loss": 6.436868667602539,
+ "step": 148
+ },
+ {
+ "epoch": 2.0698995194408036,
+ "grad_norm": 0.4163798391819,
+ "learning_rate": 0.0006,
+ "loss": 6.4642014503479,
+ "step": 149
+ },
+ {
+ "epoch": 2.083879423328965,
+ "grad_norm": 0.3831583261489868,
+ "learning_rate": 0.0006,
+ "loss": 6.454092025756836,
+ "step": 150
+ },
+ {
+ "epoch": 2.0978593272171255,
+ "grad_norm": 0.37721413373947144,
+ "learning_rate": 0.0006,
+ "loss": 6.426377296447754,
+ "step": 151
+ },
+ {
+ "epoch": 2.1118392311052863,
+ "grad_norm": 0.3323550224304199,
+ "learning_rate": 0.0006,
+ "loss": 6.421375274658203,
+ "step": 152
+ },
+ {
+ "epoch": 2.125819134993447,
+ "grad_norm": 0.47739624977111816,
+ "learning_rate": 0.0006,
+ "loss": 6.412004470825195,
+ "step": 153
+ },
+ {
+ "epoch": 2.1397990388816077,
+ "grad_norm": 0.8530274629592896,
+ "learning_rate": 0.0006,
+ "loss": 6.410468578338623,
+ "step": 154
+ },
+ {
+ "epoch": 2.1537789427697684,
+ "grad_norm": 0.6420364379882812,
+ "learning_rate": 0.0006,
+ "loss": 6.413525581359863,
+ "step": 155
+ },
+ {
+ "epoch": 2.167758846657929,
+ "grad_norm": 0.5005049109458923,
+ "learning_rate": 0.0006,
+ "loss": 6.401463508605957,
+ "step": 156
+ },
+ {
+ "epoch": 2.18173875054609,
+ "grad_norm": 0.3614683449268341,
+ "learning_rate": 0.0006,
+ "loss": 6.390063285827637,
+ "step": 157
+ },
+ {
+ "epoch": 2.1957186544342506,
+ "grad_norm": 0.595215380191803,
+ "learning_rate": 0.0006,
+ "loss": 6.369806289672852,
+ "step": 158
+ },
+ {
+ "epoch": 2.2096985583224114,
+ "grad_norm": 0.5700321793556213,
+ "learning_rate": 0.0006,
+ "loss": 6.368378639221191,
+ "step": 159
+ },
+ {
+ "epoch": 2.2236784622105725,
+ "grad_norm": 0.36273983120918274,
+ "learning_rate": 0.0006,
+ "loss": 6.366860389709473,
+ "step": 160
+ },
+ {
+ "epoch": 2.2376583660987333,
+ "grad_norm": 0.2850998342037201,
+ "learning_rate": 0.0006,
+ "loss": 6.352144718170166,
+ "step": 161
+ },
+ {
+ "epoch": 2.251638269986894,
+ "grad_norm": 0.38558584451675415,
+ "learning_rate": 0.0006,
+ "loss": 6.375765800476074,
+ "step": 162
+ },
+ {
+ "epoch": 2.2656181738750547,
+ "grad_norm": 0.34809231758117676,
+ "learning_rate": 0.0006,
+ "loss": 6.350445747375488,
+ "step": 163
+ },
+ {
+ "epoch": 2.2795980777632154,
+ "grad_norm": 0.5211818814277649,
+ "learning_rate": 0.0006,
+ "loss": 6.354585647583008,
+ "step": 164
+ },
+ {
+ "epoch": 2.293577981651376,
+ "grad_norm": 1.0809133052825928,
+ "learning_rate": 0.0006,
+ "loss": 6.3752007484436035,
+ "step": 165
+ },
+ {
+ "epoch": 2.307557885539537,
+ "grad_norm": 0.8293641209602356,
+ "learning_rate": 0.0006,
+ "loss": 6.35113525390625,
+ "step": 166
+ },
+ {
+ "epoch": 2.3215377894276976,
+ "grad_norm": 0.3428577780723572,
+ "learning_rate": 0.0006,
+ "loss": 6.334470748901367,
+ "step": 167
+ },
+ {
+ "epoch": 2.3355176933158583,
+ "grad_norm": 0.7587600946426392,
+ "learning_rate": 0.0006,
+ "loss": 6.353979587554932,
+ "step": 168
+ },
+ {
+ "epoch": 2.349497597204019,
+ "grad_norm": 0.4227249026298523,
+ "learning_rate": 0.0006,
+ "loss": 6.34018611907959,
+ "step": 169
+ },
+ {
+ "epoch": 2.36347750109218,
+ "grad_norm": 0.4226846694946289,
+ "learning_rate": 0.0006,
+ "loss": 6.290019989013672,
+ "step": 170
+ },
+ {
+ "epoch": 2.3774574049803405,
+ "grad_norm": 0.38412365317344666,
+ "learning_rate": 0.0006,
+ "loss": 6.309510231018066,
+ "step": 171
+ },
+ {
+ "epoch": 2.3914373088685017,
+ "grad_norm": 0.45698508620262146,
+ "learning_rate": 0.0006,
+ "loss": 6.283290863037109,
+ "step": 172
+ },
+ {
+ "epoch": 2.4054172127566624,
+ "grad_norm": 0.7575915455818176,
+ "learning_rate": 0.0006,
+ "loss": 6.306073188781738,
+ "step": 173
+ },
+ {
+ "epoch": 2.419397116644823,
+ "grad_norm": 0.695123553276062,
+ "learning_rate": 0.0006,
+ "loss": 6.308144569396973,
+ "step": 174
+ },
+ {
+ "epoch": 2.433377020532984,
+ "grad_norm": 0.5035743117332458,
+ "learning_rate": 0.0006,
+ "loss": 6.282073974609375,
+ "step": 175
+ },
+ {
+ "epoch": 2.4473569244211446,
+ "grad_norm": 0.3158020079135895,
+ "learning_rate": 0.0006,
+ "loss": 6.282169342041016,
+ "step": 176
+ },
+ {
+ "epoch": 2.4613368283093053,
+ "grad_norm": 0.4829689860343933,
+ "learning_rate": 0.0006,
+ "loss": 6.264578819274902,
+ "step": 177
+ },
+ {
+ "epoch": 2.475316732197466,
+ "grad_norm": 0.3992770314216614,
+ "learning_rate": 0.0006,
+ "loss": 6.228628158569336,
+ "step": 178
+ },
+ {
+ "epoch": 2.489296636085627,
+ "grad_norm": 0.40887606143951416,
+ "learning_rate": 0.0006,
+ "loss": 6.230792045593262,
+ "step": 179
+ },
+ {
+ "epoch": 2.5032765399737875,
+ "grad_norm": 0.3540310263633728,
+ "learning_rate": 0.0006,
+ "loss": 6.222573280334473,
+ "step": 180
+ },
+ {
+ "epoch": 2.5172564438619487,
+ "grad_norm": 0.496219664812088,
+ "learning_rate": 0.0006,
+ "loss": 6.212109565734863,
+ "step": 181
+ },
+ {
+ "epoch": 2.5312363477501094,
+ "grad_norm": 0.435173898935318,
+ "learning_rate": 0.0006,
+ "loss": 6.221210479736328,
+ "step": 182
+ },
+ {
+ "epoch": 2.54521625163827,
+ "grad_norm": 0.5364007949829102,
+ "learning_rate": 0.0006,
+ "loss": 6.217929840087891,
+ "step": 183
+ },
+ {
+ "epoch": 2.559196155526431,
+ "grad_norm": 0.5946390628814697,
+ "learning_rate": 0.0006,
+ "loss": 6.189267158508301,
+ "step": 184
+ },
+ {
+ "epoch": 2.5731760594145916,
+ "grad_norm": 0.41621312499046326,
+ "learning_rate": 0.0006,
+ "loss": 6.182415008544922,
+ "step": 185
+ },
+ {
+ "epoch": 2.5871559633027523,
+ "grad_norm": 0.5442072749137878,
+ "learning_rate": 0.0006,
+ "loss": 6.150757789611816,
+ "step": 186
+ },
+ {
+ "epoch": 2.601135867190913,
+ "grad_norm": 0.727843165397644,
+ "learning_rate": 0.0006,
+ "loss": 6.146082878112793,
+ "step": 187
+ },
+ {
+ "epoch": 2.615115771079074,
+ "grad_norm": 0.8898891806602478,
+ "learning_rate": 0.0006,
+ "loss": 6.190483093261719,
+ "step": 188
+ },
+ {
+ "epoch": 2.6290956749672345,
+ "grad_norm": 0.5173947215080261,
+ "learning_rate": 0.0006,
+ "loss": 6.151251792907715,
+ "step": 189
+ },
+ {
+ "epoch": 2.6430755788553952,
+ "grad_norm": 0.6476729512214661,
+ "learning_rate": 0.0006,
+ "loss": 6.154841423034668,
+ "step": 190
+ },
+ {
+ "epoch": 2.657055482743556,
+ "grad_norm": 0.3538810908794403,
+ "learning_rate": 0.0006,
+ "loss": 6.103879928588867,
+ "step": 191
+ },
+ {
+ "epoch": 2.6710353866317167,
+ "grad_norm": 0.4773508310317993,
+ "learning_rate": 0.0006,
+ "loss": 6.118101119995117,
+ "step": 192
+ },
+ {
+ "epoch": 2.6850152905198774,
+ "grad_norm": 0.29213786125183105,
+ "learning_rate": 0.0006,
+ "loss": 6.108916282653809,
+ "step": 193
+ },
+ {
+ "epoch": 2.6989951944080386,
+ "grad_norm": 0.40800607204437256,
+ "learning_rate": 0.0006,
+ "loss": 6.113438606262207,
+ "step": 194
+ },
+ {
+ "epoch": 2.7129750982961993,
+ "grad_norm": 0.31157299876213074,
+ "learning_rate": 0.0006,
+ "loss": 6.101809501647949,
+ "step": 195
+ },
+ {
+ "epoch": 2.72695500218436,
+ "grad_norm": 0.28660309314727783,
+ "learning_rate": 0.0006,
+ "loss": 6.075886249542236,
+ "step": 196
+ },
+ {
+ "epoch": 2.7409349060725208,
+ "grad_norm": 0.3810449540615082,
+ "learning_rate": 0.0006,
+ "loss": 6.053257942199707,
+ "step": 197
+ },
+ {
+ "epoch": 2.7549148099606815,
+ "grad_norm": 0.21741755306720734,
+ "learning_rate": 0.0006,
+ "loss": 6.013825416564941,
+ "step": 198
+ },
+ {
+ "epoch": 2.7688947138488422,
+ "grad_norm": 0.2777678966522217,
+ "learning_rate": 0.0006,
+ "loss": 6.054204940795898,
+ "step": 199
+ },
+ {
+ "epoch": 2.782874617737003,
+ "grad_norm": 0.28503066301345825,
+ "learning_rate": 0.0006,
+ "loss": 6.035628318786621,
+ "step": 200
+ },
+ {
+ "epoch": 2.7968545216251637,
+ "grad_norm": 0.41954755783081055,
+ "learning_rate": 0.0006,
+ "loss": 6.028354644775391,
+ "step": 201
+ },
+ {
+ "epoch": 2.810834425513325,
+ "grad_norm": 0.8785563111305237,
+ "learning_rate": 0.0006,
+ "loss": 6.055761337280273,
+ "step": 202
+ },
+ {
+ "epoch": 2.8248143294014856,
+ "grad_norm": 1.7459558248519897,
+ "learning_rate": 0.0006,
+ "loss": 6.11599588394165,
+ "step": 203
+ },
+ {
+ "epoch": 2.8387942332896463,
+ "grad_norm": 0.5725523233413696,
+ "learning_rate": 0.0006,
+ "loss": 6.024280548095703,
+ "step": 204
+ },
+ {
+ "epoch": 2.852774137177807,
+ "grad_norm": 0.5913150906562805,
+ "learning_rate": 0.0006,
+ "loss": 6.050281524658203,
+ "step": 205
+ },
+ {
+ "epoch": 2.8667540410659678,
+ "grad_norm": 0.5929384827613831,
+ "learning_rate": 0.0006,
+ "loss": 6.041121482849121,
+ "step": 206
+ },
+ {
+ "epoch": 2.8807339449541285,
+ "grad_norm": 0.5650724768638611,
+ "learning_rate": 0.0006,
+ "loss": 6.004258155822754,
+ "step": 207
+ },
+ {
+ "epoch": 2.894713848842289,
+ "grad_norm": 0.3420545756816864,
+ "learning_rate": 0.0006,
+ "loss": 5.983296871185303,
+ "step": 208
+ },
+ {
+ "epoch": 2.90869375273045,
+ "grad_norm": 0.2960914075374603,
+ "learning_rate": 0.0006,
+ "loss": 5.988578796386719,
+ "step": 209
+ },
+ {
+ "epoch": 2.9226736566186107,
+ "grad_norm": 0.3252662718296051,
+ "learning_rate": 0.0006,
+ "loss": 5.99103307723999,
+ "step": 210
+ },
+ {
+ "epoch": 2.9366535605067714,
+ "grad_norm": 0.4851132929325104,
+ "learning_rate": 0.0006,
+ "loss": 6.0028977394104,
+ "step": 211
+ },
+ {
+ "epoch": 2.950633464394932,
+ "grad_norm": 0.5639995336532593,
+ "learning_rate": 0.0006,
+ "loss": 5.965080738067627,
+ "step": 212
+ },
+ {
+ "epoch": 2.964613368283093,
+ "grad_norm": 0.4514601230621338,
+ "learning_rate": 0.0006,
+ "loss": 5.961450576782227,
+ "step": 213
+ },
+ {
+ "epoch": 2.9785932721712536,
+ "grad_norm": 0.5397921800613403,
+ "learning_rate": 0.0006,
+ "loss": 5.965290546417236,
+ "step": 214
+ },
+ {
+ "epoch": 2.9925731760594148,
+ "grad_norm": 0.4735587239265442,
+ "learning_rate": 0.0006,
+ "loss": 5.952754497528076,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.32061058282852173,
+ "learning_rate": 0.0006,
+ "loss": 5.961667060852051,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 6.8517303466796875,
+ "eval_runtime": 44.03,
+ "eval_samples_per_second": 55.462,
+ "eval_steps_per_second": 3.475,
+ "step": 216
+ },
+ {
+ "epoch": 3.0139799038881607,
+ "grad_norm": 0.3537784814834595,
+ "learning_rate": 0.0006,
+ "loss": 5.928008079528809,
+ "step": 217
+ },
+ {
+ "epoch": 3.0279598077763215,
+ "grad_norm": 0.40713080763816833,
+ "learning_rate": 0.0006,
+ "loss": 5.9150800704956055,
+ "step": 218
+ },
+ {
+ "epoch": 3.041939711664482,
+ "grad_norm": 0.2548826336860657,
+ "learning_rate": 0.0006,
+ "loss": 5.919757843017578,
+ "step": 219
+ },
+ {
+ "epoch": 3.055919615552643,
+ "grad_norm": 0.2818543016910553,
+ "learning_rate": 0.0006,
+ "loss": 5.913688659667969,
+ "step": 220
+ },
+ {
+ "epoch": 3.0698995194408036,
+ "grad_norm": 0.4196692705154419,
+ "learning_rate": 0.0006,
+ "loss": 5.8675336837768555,
+ "step": 221
+ },
+ {
+ "epoch": 3.083879423328965,
+ "grad_norm": 0.35272282361984253,
+ "learning_rate": 0.0006,
+ "loss": 5.878874778747559,
+ "step": 222
+ },
+ {
+ "epoch": 3.0978593272171255,
+ "grad_norm": 0.3254282772541046,
+ "learning_rate": 0.0006,
+ "loss": 5.8823041915893555,
+ "step": 223
+ },
+ {
+ "epoch": 3.1118392311052863,
+ "grad_norm": 0.4052561819553375,
+ "learning_rate": 0.0006,
+ "loss": 5.867744445800781,
+ "step": 224
+ },
+ {
+ "epoch": 3.125819134993447,
+ "grad_norm": 0.31246256828308105,
+ "learning_rate": 0.0006,
+ "loss": 5.886094093322754,
+ "step": 225
+ },
+ {
+ "epoch": 3.1397990388816077,
+ "grad_norm": 0.3479118347167969,
+ "learning_rate": 0.0006,
+ "loss": 5.850762367248535,
+ "step": 226
+ },
+ {
+ "epoch": 3.1537789427697684,
+ "grad_norm": 0.5037238597869873,
+ "learning_rate": 0.0006,
+ "loss": 5.844175815582275,
+ "step": 227
+ },
+ {
+ "epoch": 3.167758846657929,
+ "grad_norm": 0.6271815896034241,
+ "learning_rate": 0.0006,
+ "loss": 5.871790885925293,
+ "step": 228
+ },
+ {
+ "epoch": 3.18173875054609,
+ "grad_norm": 0.43838298320770264,
+ "learning_rate": 0.0006,
+ "loss": 5.844024658203125,
+ "step": 229
+ },
+ {
+ "epoch": 3.1957186544342506,
+ "grad_norm": 0.4755159616470337,
+ "learning_rate": 0.0006,
+ "loss": 5.846892356872559,
+ "step": 230
+ },
+ {
+ "epoch": 3.2096985583224114,
+ "grad_norm": 0.5229779481887817,
+ "learning_rate": 0.0006,
+ "loss": 5.827000617980957,
+ "step": 231
+ },
+ {
+ "epoch": 3.2236784622105725,
+ "grad_norm": 0.8264499306678772,
+ "learning_rate": 0.0006,
+ "loss": 5.867050647735596,
+ "step": 232
+ },
+ {
+ "epoch": 3.2376583660987333,
+ "grad_norm": 1.0607538223266602,
+ "learning_rate": 0.0006,
+ "loss": 5.877876281738281,
+ "step": 233
+ },
+ {
+ "epoch": 3.251638269986894,
+ "grad_norm": 0.7656505703926086,
+ "learning_rate": 0.0006,
+ "loss": 5.86760139465332,
+ "step": 234
+ },
+ {
+ "epoch": 3.2656181738750547,
+ "grad_norm": 0.7940183281898499,
+ "learning_rate": 0.0006,
+ "loss": 5.861355781555176,
+ "step": 235
+ },
+ {
+ "epoch": 3.2795980777632154,
+ "grad_norm": 0.45171424746513367,
+ "learning_rate": 0.0006,
+ "loss": 5.799808502197266,
+ "step": 236
+ },
+ {
+ "epoch": 3.293577981651376,
+ "grad_norm": 0.6174989342689514,
+ "learning_rate": 0.0006,
+ "loss": 5.8585920333862305,
+ "step": 237
+ },
+ {
+ "epoch": 3.307557885539537,
+ "grad_norm": 0.5341290831565857,
+ "learning_rate": 0.0006,
+ "loss": 5.8116044998168945,
+ "step": 238
+ },
+ {
+ "epoch": 3.3215377894276976,
+ "grad_norm": 0.3938343822956085,
+ "learning_rate": 0.0006,
+ "loss": 5.83797550201416,
+ "step": 239
+ },
+ {
+ "epoch": 3.3355176933158583,
+ "grad_norm": 0.5106972455978394,
+ "learning_rate": 0.0006,
+ "loss": 5.832303047180176,
+ "step": 240
+ },
+ {
+ "epoch": 3.349497597204019,
+ "grad_norm": 0.3791428506374359,
+ "learning_rate": 0.0006,
+ "loss": 5.794981956481934,
+ "step": 241
+ },
+ {
+ "epoch": 3.36347750109218,
+ "grad_norm": 0.42287978529930115,
+ "learning_rate": 0.0006,
+ "loss": 5.788144111633301,
+ "step": 242
+ },
+ {
+ "epoch": 3.3774574049803405,
+ "grad_norm": 0.27334436774253845,
+ "learning_rate": 0.0006,
+ "loss": 5.771070957183838,
+ "step": 243
+ },
+ {
+ "epoch": 3.3914373088685017,
+ "grad_norm": 0.2470470368862152,
+ "learning_rate": 0.0006,
+ "loss": 5.755998611450195,
+ "step": 244
+ },
+ {
+ "epoch": 3.4054172127566624,
+ "grad_norm": 0.3043915033340454,
+ "learning_rate": 0.0006,
+ "loss": 5.779492378234863,
+ "step": 245
+ },
+ {
+ "epoch": 3.419397116644823,
+ "grad_norm": 0.2960112988948822,
+ "learning_rate": 0.0006,
+ "loss": 5.750328063964844,
+ "step": 246
+ },
+ {
+ "epoch": 3.433377020532984,
+ "grad_norm": 0.3046723008155823,
+ "learning_rate": 0.0006,
+ "loss": 5.776517868041992,
+ "step": 247
+ },
+ {
+ "epoch": 3.4473569244211446,
+ "grad_norm": 0.22461780905723572,
+ "learning_rate": 0.0006,
+ "loss": 5.760989665985107,
+ "step": 248
+ },
+ {
+ "epoch": 3.4613368283093053,
+ "grad_norm": 0.24625757336616516,
+ "learning_rate": 0.0006,
+ "loss": 5.759706497192383,
+ "step": 249
+ },
+ {
+ "epoch": 3.475316732197466,
+ "grad_norm": 0.18207131326198578,
+ "learning_rate": 0.0006,
+ "loss": 5.747040748596191,
+ "step": 250
+ },
+ {
+ "epoch": 3.489296636085627,
+ "grad_norm": 0.16473834216594696,
+ "learning_rate": 0.0006,
+ "loss": 5.761577606201172,
+ "step": 251
+ },
+ {
+ "epoch": 3.5032765399737875,
+ "grad_norm": 0.25155773758888245,
+ "learning_rate": 0.0006,
+ "loss": 5.696502208709717,
+ "step": 252
+ },
+ {
+ "epoch": 3.5172564438619487,
+ "grad_norm": 0.24115674197673798,
+ "learning_rate": 0.0006,
+ "loss": 5.676957130432129,
+ "step": 253
+ },
+ {
+ "epoch": 3.5312363477501094,
+ "grad_norm": 0.40912172198295593,
+ "learning_rate": 0.0006,
+ "loss": 5.695090293884277,
+ "step": 254
+ },
+ {
+ "epoch": 3.54521625163827,
+ "grad_norm": 0.6727662682533264,
+ "learning_rate": 0.0006,
+ "loss": 5.722194671630859,
+ "step": 255
+ },
+ {
+ "epoch": 3.559196155526431,
+ "grad_norm": 0.8450719118118286,
+ "learning_rate": 0.0006,
+ "loss": 5.764680862426758,
+ "step": 256
+ },
+ {
+ "epoch": 3.5731760594145916,
+ "grad_norm": 0.9916183352470398,
+ "learning_rate": 0.0006,
+ "loss": 5.754530429840088,
+ "step": 257
+ },
+ {
+ "epoch": 3.5871559633027523,
+ "grad_norm": 1.041922688484192,
+ "learning_rate": 0.0006,
+ "loss": 5.781468391418457,
+ "step": 258
+ },
+ {
+ "epoch": 3.601135867190913,
+ "grad_norm": 0.972039520740509,
+ "learning_rate": 0.0006,
+ "loss": 5.760323524475098,
+ "step": 259
+ },
+ {
+ "epoch": 3.615115771079074,
+ "grad_norm": 0.6802462935447693,
+ "learning_rate": 0.0006,
+ "loss": 5.750064849853516,
+ "step": 260
+ },
+ {
+ "epoch": 3.6290956749672345,
+ "grad_norm": 0.48553529381752014,
+ "learning_rate": 0.0006,
+ "loss": 5.7464094161987305,
+ "step": 261
+ },
+ {
+ "epoch": 3.6430755788553952,
+ "grad_norm": 0.4066704213619232,
+ "learning_rate": 0.0006,
+ "loss": 5.719789505004883,
+ "step": 262
+ },
+ {
+ "epoch": 3.657055482743556,
+ "grad_norm": 0.3300860822200775,
+ "learning_rate": 0.0006,
+ "loss": 5.719920635223389,
+ "step": 263
+ },
+ {
+ "epoch": 3.6710353866317167,
+ "grad_norm": 0.3286679983139038,
+ "learning_rate": 0.0006,
+ "loss": 5.723465919494629,
+ "step": 264
+ },
+ {
+ "epoch": 3.6850152905198774,
+ "grad_norm": 0.27653390169143677,
+ "learning_rate": 0.0006,
+ "loss": 5.713820457458496,
+ "step": 265
+ },
+ {
+ "epoch": 3.6989951944080386,
+ "grad_norm": 0.26138055324554443,
+ "learning_rate": 0.0006,
+ "loss": 5.683221817016602,
+ "step": 266
+ },
+ {
+ "epoch": 3.7129750982961993,
+ "grad_norm": 0.23706290125846863,
+ "learning_rate": 0.0006,
+ "loss": 5.6896867752075195,
+ "step": 267
+ },
+ {
+ "epoch": 3.72695500218436,
+ "grad_norm": 0.2751729190349579,
+ "learning_rate": 0.0006,
+ "loss": 5.710301876068115,
+ "step": 268
+ },
+ {
+ "epoch": 3.7409349060725208,
+ "grad_norm": 0.255393385887146,
+ "learning_rate": 0.0006,
+ "loss": 5.687932968139648,
+ "step": 269
+ },
+ {
+ "epoch": 3.7549148099606815,
+ "grad_norm": 0.21453925967216492,
+ "learning_rate": 0.0006,
+ "loss": 5.68234395980835,
+ "step": 270
+ },
+ {
+ "epoch": 3.7688947138488422,
+ "grad_norm": 0.21771012246608734,
+ "learning_rate": 0.0006,
+ "loss": 5.683980464935303,
+ "step": 271
+ },
+ {
+ "epoch": 3.782874617737003,
+ "grad_norm": 0.1884593963623047,
+ "learning_rate": 0.0006,
+ "loss": 5.662779808044434,
+ "step": 272
+ },
+ {
+ "epoch": 3.7968545216251637,
+ "grad_norm": 0.20429612696170807,
+ "learning_rate": 0.0006,
+ "loss": 5.650941848754883,
+ "step": 273
+ },
+ {
+ "epoch": 3.810834425513325,
+ "grad_norm": 0.22586797177791595,
+ "learning_rate": 0.0006,
+ "loss": 5.639376640319824,
+ "step": 274
+ },
+ {
+ "epoch": 3.8248143294014856,
+ "grad_norm": 0.19651705026626587,
+ "learning_rate": 0.0006,
+ "loss": 5.612030029296875,
+ "step": 275
+ },
+ {
+ "epoch": 3.8387942332896463,
+ "grad_norm": 0.2125253826379776,
+ "learning_rate": 0.0006,
+ "loss": 5.622836589813232,
+ "step": 276
+ },
+ {
+ "epoch": 3.852774137177807,
+ "grad_norm": 0.2905234694480896,
+ "learning_rate": 0.0006,
+ "loss": 5.624594688415527,
+ "step": 277
+ },
+ {
+ "epoch": 3.8667540410659678,
+ "grad_norm": 0.2718426585197449,
+ "learning_rate": 0.0006,
+ "loss": 5.619892120361328,
+ "step": 278
+ },
+ {
+ "epoch": 3.8807339449541285,
+ "grad_norm": 0.26481127738952637,
+ "learning_rate": 0.0006,
+ "loss": 5.612496852874756,
+ "step": 279
+ },
+ {
+ "epoch": 3.894713848842289,
+ "grad_norm": 0.2876453399658203,
+ "learning_rate": 0.0006,
+ "loss": 5.59157133102417,
+ "step": 280
+ },
+ {
+ "epoch": 3.90869375273045,
+ "grad_norm": 0.22829554975032806,
+ "learning_rate": 0.0006,
+ "loss": 5.5884199142456055,
+ "step": 281
+ },
+ {
+ "epoch": 3.9226736566186107,
+ "grad_norm": 0.22852344810962677,
+ "learning_rate": 0.0006,
+ "loss": 5.618719100952148,
+ "step": 282
+ },
+ {
+ "epoch": 3.9366535605067714,
+ "grad_norm": 0.37366563081741333,
+ "learning_rate": 0.0006,
+ "loss": 5.611738204956055,
+ "step": 283
+ },
+ {
+ "epoch": 3.950633464394932,
+ "grad_norm": 0.5650382041931152,
+ "learning_rate": 0.0006,
+ "loss": 5.606371879577637,
+ "step": 284
+ },
+ {
+ "epoch": 3.964613368283093,
+ "grad_norm": 0.5960066914558411,
+ "learning_rate": 0.0006,
+ "loss": 5.595022201538086,
+ "step": 285
+ },
+ {
+ "epoch": 3.9785932721712536,
+ "grad_norm": 0.3561663031578064,
+ "learning_rate": 0.0006,
+ "loss": 5.581035614013672,
+ "step": 286
+ },
+ {
+ "epoch": 3.9925731760594148,
+ "grad_norm": 0.44699913263320923,
+ "learning_rate": 0.0006,
+ "loss": 5.568033218383789,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.42783990502357483,
+ "learning_rate": 0.0006,
+ "loss": 5.571993827819824,
+ "step": 288
+ },
+ {
+ "epoch": 4.0,
+ "eval_loss": 6.349016189575195,
+ "eval_runtime": 44.3326,
+ "eval_samples_per_second": 55.084,
+ "eval_steps_per_second": 3.451,
+ "step": 288
+ },
+ {
+ "epoch": 4.013979903888161,
+ "grad_norm": 0.41305896639823914,
+ "learning_rate": 0.0006,
+ "loss": 5.562954902648926,
+ "step": 289
+ },
+ {
+ "epoch": 4.0279598077763215,
+ "grad_norm": 0.3966459035873413,
+ "learning_rate": 0.0006,
+ "loss": 5.5671916007995605,
+ "step": 290
+ },
+ {
+ "epoch": 4.041939711664482,
+ "grad_norm": 0.4846104085445404,
+ "learning_rate": 0.0006,
+ "loss": 5.548027038574219,
+ "step": 291
+ },
+ {
+ "epoch": 4.055919615552643,
+ "grad_norm": 0.5916333794593811,
+ "learning_rate": 0.0006,
+ "loss": 5.5900068283081055,
+ "step": 292
+ },
+ {
+ "epoch": 4.069899519440804,
+ "grad_norm": 0.5973889231681824,
+ "learning_rate": 0.0006,
+ "loss": 5.537594795227051,
+ "step": 293
+ },
+ {
+ "epoch": 4.083879423328964,
+ "grad_norm": 0.4190494418144226,
+ "learning_rate": 0.0006,
+ "loss": 5.534749984741211,
+ "step": 294
+ },
+ {
+ "epoch": 4.097859327217125,
+ "grad_norm": 0.5956901907920837,
+ "learning_rate": 0.0006,
+ "loss": 5.554540634155273,
+ "step": 295
+ },
+ {
+ "epoch": 4.111839231105286,
+ "grad_norm": 0.8257920742034912,
+ "learning_rate": 0.0006,
+ "loss": 5.5728068351745605,
+ "step": 296
+ },
+ {
+ "epoch": 4.1258191349934465,
+ "grad_norm": 0.7241750955581665,
+ "learning_rate": 0.0006,
+ "loss": 5.5643815994262695,
+ "step": 297
+ },
+ {
+ "epoch": 4.139799038881607,
+ "grad_norm": 0.45730507373809814,
+ "learning_rate": 0.0006,
+ "loss": 5.554225921630859,
+ "step": 298
+ },
+ {
+ "epoch": 4.153778942769769,
+ "grad_norm": 0.5166977643966675,
+ "learning_rate": 0.0006,
+ "loss": 5.540790557861328,
+ "step": 299
+ },
+ {
+ "epoch": 4.16775884665793,
+ "grad_norm": 0.433237761259079,
+ "learning_rate": 0.0006,
+ "loss": 5.536884784698486,
+ "step": 300
+ },
+ {
+ "epoch": 4.18173875054609,
+ "grad_norm": 0.3369830250740051,
+ "learning_rate": 0.0006,
+ "loss": 5.532837867736816,
+ "step": 301
+ },
+ {
+ "epoch": 4.195718654434251,
+ "grad_norm": 0.33091458678245544,
+ "learning_rate": 0.0006,
+ "loss": 5.547643661499023,
+ "step": 302
+ },
+ {
+ "epoch": 4.209698558322412,
+ "grad_norm": 0.36462724208831787,
+ "learning_rate": 0.0006,
+ "loss": 5.525021076202393,
+ "step": 303
+ },
+ {
+ "epoch": 4.2236784622105725,
+ "grad_norm": 0.3342771530151367,
+ "learning_rate": 0.0006,
+ "loss": 5.512082099914551,
+ "step": 304
+ },
+ {
+ "epoch": 4.237658366098733,
+ "grad_norm": 0.26784762740135193,
+ "learning_rate": 0.0006,
+ "loss": 5.488072395324707,
+ "step": 305
+ },
+ {
+ "epoch": 4.251638269986894,
+ "grad_norm": 0.25986987352371216,
+ "learning_rate": 0.0006,
+ "loss": 5.4960455894470215,
+ "step": 306
+ },
+ {
+ "epoch": 4.265618173875055,
+ "grad_norm": 0.24595795571804047,
+ "learning_rate": 0.0006,
+ "loss": 5.513367176055908,
+ "step": 307
+ },
+ {
+ "epoch": 4.279598077763215,
+ "grad_norm": 0.2224857211112976,
+ "learning_rate": 0.0006,
+ "loss": 5.465205192565918,
+ "step": 308
+ },
+ {
+ "epoch": 4.293577981651376,
+ "grad_norm": 0.26799243688583374,
+ "learning_rate": 0.0006,
+ "loss": 5.476632118225098,
+ "step": 309
+ },
+ {
+ "epoch": 4.307557885539537,
+ "grad_norm": 0.20443417131900787,
+ "learning_rate": 0.0006,
+ "loss": 5.442601203918457,
+ "step": 310
+ },
+ {
+ "epoch": 4.321537789427698,
+ "grad_norm": 0.2275059074163437,
+ "learning_rate": 0.0006,
+ "loss": 5.453519344329834,
+ "step": 311
+ },
+ {
+ "epoch": 4.335517693315858,
+ "grad_norm": 0.2860901951789856,
+ "learning_rate": 0.0006,
+ "loss": 5.439424514770508,
+ "step": 312
+ },
+ {
+ "epoch": 4.349497597204019,
+ "grad_norm": 0.3378142714500427,
+ "learning_rate": 0.0006,
+ "loss": 5.476953983306885,
+ "step": 313
+ },
+ {
+ "epoch": 4.36347750109218,
+ "grad_norm": 0.3487110733985901,
+ "learning_rate": 0.0006,
+ "loss": 5.47003698348999,
+ "step": 314
+ },
+ {
+ "epoch": 4.3774574049803405,
+ "grad_norm": 0.3655227720737457,
+ "learning_rate": 0.0006,
+ "loss": 5.454250812530518,
+ "step": 315
+ },
+ {
+ "epoch": 4.391437308868501,
+ "grad_norm": 0.3754786252975464,
+ "learning_rate": 0.0006,
+ "loss": 5.475249290466309,
+ "step": 316
+ },
+ {
+ "epoch": 4.405417212756662,
+ "grad_norm": 0.42494088411331177,
+ "learning_rate": 0.0006,
+ "loss": 5.4552459716796875,
+ "step": 317
+ },
+ {
+ "epoch": 4.419397116644823,
+ "grad_norm": 0.4914703667163849,
+ "learning_rate": 0.0006,
+ "loss": 5.431845188140869,
+ "step": 318
+ },
+ {
+ "epoch": 4.433377020532983,
+ "grad_norm": 0.42470860481262207,
+ "learning_rate": 0.0006,
+ "loss": 5.454581260681152,
+ "step": 319
+ },
+ {
+ "epoch": 4.447356924421145,
+ "grad_norm": 0.3828011155128479,
+ "learning_rate": 0.0006,
+ "loss": 5.435178756713867,
+ "step": 320
+ },
+ {
+ "epoch": 4.461336828309306,
+ "grad_norm": 0.47256892919540405,
+ "learning_rate": 0.0006,
+ "loss": 5.428861618041992,
+ "step": 321
+ },
+ {
+ "epoch": 4.4753167321974665,
+ "grad_norm": 0.5665146708488464,
+ "learning_rate": 0.0006,
+ "loss": 5.424633026123047,
+ "step": 322
+ },
+ {
+ "epoch": 4.489296636085627,
+ "grad_norm": 0.48146721720695496,
+ "learning_rate": 0.0006,
+ "loss": 5.4577860832214355,
+ "step": 323
+ },
+ {
+ "epoch": 4.503276539973788,
+ "grad_norm": 0.3378535509109497,
+ "learning_rate": 0.0006,
+ "loss": 5.422727108001709,
+ "step": 324
+ },
+ {
+ "epoch": 4.517256443861949,
+ "grad_norm": 0.41981473565101624,
+ "learning_rate": 0.0006,
+ "loss": 5.418993949890137,
+ "step": 325
+ },
+ {
+ "epoch": 4.531236347750109,
+ "grad_norm": 0.39389684796333313,
+ "learning_rate": 0.0006,
+ "loss": 5.41835880279541,
+ "step": 326
+ },
+ {
+ "epoch": 4.54521625163827,
+ "grad_norm": 0.5912176370620728,
+ "learning_rate": 0.0006,
+ "loss": 5.40073299407959,
+ "step": 327
+ },
+ {
+ "epoch": 4.559196155526431,
+ "grad_norm": 0.6877487897872925,
+ "learning_rate": 0.0006,
+ "loss": 5.445301055908203,
+ "step": 328
+ },
+ {
+ "epoch": 4.573176059414592,
+ "grad_norm": 0.580555260181427,
+ "learning_rate": 0.0006,
+ "loss": 5.431069374084473,
+ "step": 329
+ },
+ {
+ "epoch": 4.587155963302752,
+ "grad_norm": 0.5974457859992981,
+ "learning_rate": 0.0006,
+ "loss": 5.422694206237793,
+ "step": 330
+ },
+ {
+ "epoch": 4.601135867190913,
+ "grad_norm": 0.722481906414032,
+ "learning_rate": 0.0006,
+ "loss": 5.447752952575684,
+ "step": 331
+ },
+ {
+ "epoch": 4.615115771079074,
+ "grad_norm": 0.7687886953353882,
+ "learning_rate": 0.0006,
+ "loss": 5.437956809997559,
+ "step": 332
+ },
+ {
+ "epoch": 4.6290956749672345,
+ "grad_norm": 0.7368173003196716,
+ "learning_rate": 0.0006,
+ "loss": 5.4367241859436035,
+ "step": 333
+ },
+ {
+ "epoch": 4.643075578855395,
+ "grad_norm": 0.6650524139404297,
+ "learning_rate": 0.0006,
+ "loss": 5.4288434982299805,
+ "step": 334
+ },
+ {
+ "epoch": 4.657055482743556,
+ "grad_norm": 0.4997614920139313,
+ "learning_rate": 0.0006,
+ "loss": 5.412769317626953,
+ "step": 335
+ },
+ {
+ "epoch": 4.671035386631717,
+ "grad_norm": 0.44208982586860657,
+ "learning_rate": 0.0006,
+ "loss": 5.42405366897583,
+ "step": 336
+ },
+ {
+ "epoch": 4.685015290519877,
+ "grad_norm": 0.39510273933410645,
+ "learning_rate": 0.0006,
+ "loss": 5.402547836303711,
+ "step": 337
+ },
+ {
+ "epoch": 4.698995194408038,
+ "grad_norm": 0.44970476627349854,
+ "learning_rate": 0.0006,
+ "loss": 5.377168655395508,
+ "step": 338
+ },
+ {
+ "epoch": 4.712975098296199,
+ "grad_norm": 0.3902331590652466,
+ "learning_rate": 0.0006,
+ "loss": 5.401622772216797,
+ "step": 339
+ },
+ {
+ "epoch": 4.72695500218436,
+ "grad_norm": 0.33485135436058044,
+ "learning_rate": 0.0006,
+ "loss": 5.397945880889893,
+ "step": 340
+ },
+ {
+ "epoch": 4.740934906072521,
+ "grad_norm": 0.29062309861183167,
+ "learning_rate": 0.0006,
+ "loss": 5.356175422668457,
+ "step": 341
+ },
+ {
+ "epoch": 4.754914809960681,
+ "grad_norm": 0.23617377877235413,
+ "learning_rate": 0.0006,
+ "loss": 5.388517379760742,
+ "step": 342
+ },
+ {
+ "epoch": 4.768894713848843,
+ "grad_norm": 0.2704737186431885,
+ "learning_rate": 0.0006,
+ "loss": 5.3746137619018555,
+ "step": 343
+ },
+ {
+ "epoch": 4.782874617737003,
+ "grad_norm": 0.20488551259040833,
+ "learning_rate": 0.0006,
+ "loss": 5.3754472732543945,
+ "step": 344
+ },
+ {
+ "epoch": 4.796854521625164,
+ "grad_norm": 0.2007082849740982,
+ "learning_rate": 0.0006,
+ "loss": 5.3538618087768555,
+ "step": 345
+ },
+ {
+ "epoch": 4.810834425513325,
+ "grad_norm": 0.21732935309410095,
+ "learning_rate": 0.0006,
+ "loss": 5.351774215698242,
+ "step": 346
+ },
+ {
+ "epoch": 4.824814329401486,
+ "grad_norm": 0.1944841742515564,
+ "learning_rate": 0.0006,
+ "loss": 5.357545852661133,
+ "step": 347
+ },
+ {
+ "epoch": 4.838794233289646,
+ "grad_norm": 0.1953933835029602,
+ "learning_rate": 0.0006,
+ "loss": 5.321681022644043,
+ "step": 348
+ },
+ {
+ "epoch": 4.852774137177807,
+ "grad_norm": 0.1743433028459549,
+ "learning_rate": 0.0006,
+ "loss": 5.340302467346191,
+ "step": 349
+ },
+ {
+ "epoch": 4.866754041065968,
+ "grad_norm": 0.19655466079711914,
+ "learning_rate": 0.0006,
+ "loss": 5.325471878051758,
+ "step": 350
+ },
+ {
+ "epoch": 4.8807339449541285,
+ "grad_norm": 0.15761791169643402,
+ "learning_rate": 0.0006,
+ "loss": 5.3453240394592285,
+ "step": 351
+ },
+ {
+ "epoch": 4.894713848842289,
+ "grad_norm": 0.19164425134658813,
+ "learning_rate": 0.0006,
+ "loss": 5.315583229064941,
+ "step": 352
+ },
+ {
+ "epoch": 4.90869375273045,
+ "grad_norm": 0.28084540367126465,
+ "learning_rate": 0.0006,
+ "loss": 5.309171676635742,
+ "step": 353
+ },
+ {
+ "epoch": 4.922673656618611,
+ "grad_norm": 0.4681853652000427,
+ "learning_rate": 0.0006,
+ "loss": 5.318211078643799,
+ "step": 354
+ },
+ {
+ "epoch": 4.936653560506771,
+ "grad_norm": 0.6417295932769775,
+ "learning_rate": 0.0006,
+ "loss": 5.309263706207275,
+ "step": 355
+ },
+ {
+ "epoch": 4.950633464394932,
+ "grad_norm": 0.501312792301178,
+ "learning_rate": 0.0006,
+ "loss": 5.321534156799316,
+ "step": 356
+ },
+ {
+ "epoch": 4.964613368283093,
+ "grad_norm": 0.47502145171165466,
+ "learning_rate": 0.0006,
+ "loss": 5.323659896850586,
+ "step": 357
+ },
+ {
+ "epoch": 4.978593272171254,
+ "grad_norm": 0.5366594791412354,
+ "learning_rate": 0.0006,
+ "loss": 5.327367782592773,
+ "step": 358
+ },
+ {
+ "epoch": 4.992573176059414,
+ "grad_norm": 0.6986395120620728,
+ "learning_rate": 0.0006,
+ "loss": 5.311097145080566,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.6626625657081604,
+ "learning_rate": 0.0006,
+ "loss": 5.337558269500732,
+ "step": 360
+ },
+ {
+ "epoch": 5.0,
+ "eval_loss": 5.929230690002441,
+ "eval_runtime": 44.5268,
+ "eval_samples_per_second": 54.843,
+ "eval_steps_per_second": 3.436,
+ "step": 360
+ },
+ {
+ "epoch": 5.013979903888161,
+ "grad_norm": 0.7383704781532288,
+ "learning_rate": 0.0006,
+ "loss": 5.315563678741455,
+ "step": 361
+ },
+ {
+ "epoch": 5.0279598077763215,
+ "grad_norm": 0.7730138301849365,
+ "learning_rate": 0.0006,
+ "loss": 5.324905872344971,
+ "step": 362
+ },
+ {
+ "epoch": 5.041939711664482,
+ "grad_norm": 0.8170825839042664,
+ "learning_rate": 0.0006,
+ "loss": 5.350251197814941,
+ "step": 363
+ },
+ {
+ "epoch": 5.055919615552643,
+ "grad_norm": 0.6950958371162415,
+ "learning_rate": 0.0006,
+ "loss": 5.338744163513184,
+ "step": 364
+ },
+ {
+ "epoch": 5.069899519440804,
+ "grad_norm": 0.5582894086837769,
+ "learning_rate": 0.0006,
+ "loss": 5.340539932250977,
+ "step": 365
+ },
+ {
+ "epoch": 5.083879423328964,
+ "grad_norm": 0.4772159159183502,
+ "learning_rate": 0.0006,
+ "loss": 5.344161033630371,
+ "step": 366
+ },
+ {
+ "epoch": 5.097859327217125,
+ "grad_norm": 0.5432839393615723,
+ "learning_rate": 0.0006,
+ "loss": 5.312403678894043,
+ "step": 367
+ },
+ {
+ "epoch": 5.111839231105286,
+ "grad_norm": 0.4944784641265869,
+ "learning_rate": 0.0006,
+ "loss": 5.30281925201416,
+ "step": 368
+ },
+ {
+ "epoch": 5.1258191349934465,
+ "grad_norm": 0.4298315942287445,
+ "learning_rate": 0.0006,
+ "loss": 5.29564094543457,
+ "step": 369
+ },
+ {
+ "epoch": 5.139799038881607,
+ "grad_norm": 0.349889874458313,
+ "learning_rate": 0.0006,
+ "loss": 5.287062644958496,
+ "step": 370
+ },
+ {
+ "epoch": 5.153778942769769,
+ "grad_norm": 0.2823719084262848,
+ "learning_rate": 0.0006,
+ "loss": 5.28826904296875,
+ "step": 371
+ },
+ {
+ "epoch": 5.16775884665793,
+ "grad_norm": 0.32975050806999207,
+ "learning_rate": 0.0006,
+ "loss": 5.256399631500244,
+ "step": 372
+ },
+ {
+ "epoch": 5.18173875054609,
+ "grad_norm": 0.2963952124118805,
+ "learning_rate": 0.0006,
+ "loss": 5.273757457733154,
+ "step": 373
+ },
+ {
+ "epoch": 5.195718654434251,
+ "grad_norm": 0.21345984935760498,
+ "learning_rate": 0.0006,
+ "loss": 5.274978160858154,
+ "step": 374
+ },
+ {
+ "epoch": 5.209698558322412,
+ "grad_norm": 0.2363101840019226,
+ "learning_rate": 0.0006,
+ "loss": 5.261585235595703,
+ "step": 375
+ },
+ {
+ "epoch": 5.2236784622105725,
+ "grad_norm": 0.19626963138580322,
+ "learning_rate": 0.0006,
+ "loss": 5.259700298309326,
+ "step": 376
+ },
+ {
+ "epoch": 5.237658366098733,
+ "grad_norm": 0.21083571016788483,
+ "learning_rate": 0.0006,
+ "loss": 5.233585357666016,
+ "step": 377
+ },
+ {
+ "epoch": 5.251638269986894,
+ "grad_norm": 0.2273513823747635,
+ "learning_rate": 0.0006,
+ "loss": 5.231740474700928,
+ "step": 378
+ },
+ {
+ "epoch": 5.265618173875055,
+ "grad_norm": 0.18299247324466705,
+ "learning_rate": 0.0006,
+ "loss": 5.251256465911865,
+ "step": 379
+ },
+ {
+ "epoch": 5.279598077763215,
+ "grad_norm": 0.19578224420547485,
+ "learning_rate": 0.0006,
+ "loss": 5.230329513549805,
+ "step": 380
+ },
+ {
+ "epoch": 5.293577981651376,
+ "grad_norm": 0.20308879017829895,
+ "learning_rate": 0.0006,
+ "loss": 5.243951797485352,
+ "step": 381
+ },
+ {
+ "epoch": 5.307557885539537,
+ "grad_norm": 0.21053212881088257,
+ "learning_rate": 0.0006,
+ "loss": 5.210272789001465,
+ "step": 382
+ },
+ {
+ "epoch": 5.321537789427698,
+ "grad_norm": 0.21852520108222961,
+ "learning_rate": 0.0006,
+ "loss": 5.215418815612793,
+ "step": 383
+ },
+ {
+ "epoch": 5.335517693315858,
+ "grad_norm": 0.24872010946273804,
+ "learning_rate": 0.0006,
+ "loss": 5.225139617919922,
+ "step": 384
+ },
+ {
+ "epoch": 5.349497597204019,
+ "grad_norm": 0.27780187129974365,
+ "learning_rate": 0.0006,
+ "loss": 5.241010665893555,
+ "step": 385
+ },
+ {
+ "epoch": 5.36347750109218,
+ "grad_norm": 0.261767715215683,
+ "learning_rate": 0.0006,
+ "loss": 5.230723857879639,
+ "step": 386
+ },
+ {
+ "epoch": 5.3774574049803405,
+ "grad_norm": 0.2111261785030365,
+ "learning_rate": 0.0006,
+ "loss": 5.1848602294921875,
+ "step": 387
+ },
+ {
+ "epoch": 5.391437308868501,
+ "grad_norm": 0.24325387179851532,
+ "learning_rate": 0.0006,
+ "loss": 5.180911064147949,
+ "step": 388
+ },
+ {
+ "epoch": 5.405417212756662,
+ "grad_norm": 0.19542962312698364,
+ "learning_rate": 0.0006,
+ "loss": 5.189907073974609,
+ "step": 389
+ },
+ {
+ "epoch": 5.419397116644823,
+ "grad_norm": 0.20489346981048584,
+ "learning_rate": 0.0006,
+ "loss": 5.184634208679199,
+ "step": 390
+ },
+ {
+ "epoch": 5.433377020532983,
+ "grad_norm": 0.2753409147262573,
+ "learning_rate": 0.0006,
+ "loss": 5.190083026885986,
+ "step": 391
+ },
+ {
+ "epoch": 5.447356924421145,
+ "grad_norm": 0.3758019208908081,
+ "learning_rate": 0.0006,
+ "loss": 5.189423561096191,
+ "step": 392
+ },
+ {
+ "epoch": 5.461336828309306,
+ "grad_norm": 0.4425095021724701,
+ "learning_rate": 0.0006,
+ "loss": 5.17152214050293,
+ "step": 393
+ },
+ {
+ "epoch": 5.4753167321974665,
+ "grad_norm": 0.39721858501434326,
+ "learning_rate": 0.0006,
+ "loss": 5.189178466796875,
+ "step": 394
+ },
+ {
+ "epoch": 5.489296636085627,
+ "grad_norm": 0.43441957235336304,
+ "learning_rate": 0.0006,
+ "loss": 5.1823577880859375,
+ "step": 395
+ },
+ {
+ "epoch": 5.503276539973788,
+ "grad_norm": 0.3583861291408539,
+ "learning_rate": 0.0006,
+ "loss": 5.160187721252441,
+ "step": 396
+ },
+ {
+ "epoch": 5.517256443861949,
+ "grad_norm": 0.323290079832077,
+ "learning_rate": 0.0006,
+ "loss": 5.113046646118164,
+ "step": 397
+ },
+ {
+ "epoch": 5.531236347750109,
+ "grad_norm": 0.3049418330192566,
+ "learning_rate": 0.0006,
+ "loss": 5.172209739685059,
+ "step": 398
+ },
+ {
+ "epoch": 5.54521625163827,
+ "grad_norm": 0.3253744840621948,
+ "learning_rate": 0.0006,
+ "loss": 5.1970720291137695,
+ "step": 399
+ },
+ {
+ "epoch": 5.559196155526431,
+ "grad_norm": 0.3232555091381073,
+ "learning_rate": 0.0006,
+ "loss": 5.173195838928223,
+ "step": 400
+ },
+ {
+ "epoch": 5.573176059414592,
+ "grad_norm": 0.33751845359802246,
+ "learning_rate": 0.0006,
+ "loss": 5.137526988983154,
+ "step": 401
+ },
+ {
+ "epoch": 5.587155963302752,
+ "grad_norm": 0.45970913767814636,
+ "learning_rate": 0.0006,
+ "loss": 5.123377799987793,
+ "step": 402
+ },
+ {
+ "epoch": 5.601135867190913,
+ "grad_norm": 0.5383784770965576,
+ "learning_rate": 0.0006,
+ "loss": 5.154180526733398,
+ "step": 403
+ },
+ {
+ "epoch": 5.615115771079074,
+ "grad_norm": 0.45765912532806396,
+ "learning_rate": 0.0006,
+ "loss": 5.1485209465026855,
+ "step": 404
+ },
+ {
+ "epoch": 5.6290956749672345,
+ "grad_norm": 0.5079503059387207,
+ "learning_rate": 0.0006,
+ "loss": 5.158293724060059,
+ "step": 405
+ },
+ {
+ "epoch": 5.643075578855395,
+ "grad_norm": 0.4860183894634247,
+ "learning_rate": 0.0006,
+ "loss": 5.1610212326049805,
+ "step": 406
+ },
+ {
+ "epoch": 5.657055482743556,
+ "grad_norm": 0.4065648913383484,
+ "learning_rate": 0.0006,
+ "loss": 5.1260786056518555,
+ "step": 407
+ },
+ {
+ "epoch": 5.671035386631717,
+ "grad_norm": 0.39606142044067383,
+ "learning_rate": 0.0006,
+ "loss": 5.1598711013793945,
+ "step": 408
+ },
+ {
+ "epoch": 5.685015290519877,
+ "grad_norm": 0.4705151319503784,
+ "learning_rate": 0.0006,
+ "loss": 5.166455268859863,
+ "step": 409
+ },
+ {
+ "epoch": 5.698995194408038,
+ "grad_norm": 0.5040799379348755,
+ "learning_rate": 0.0006,
+ "loss": 5.1408209800720215,
+ "step": 410
+ },
+ {
+ "epoch": 5.712975098296199,
+ "grad_norm": 0.5012556910514832,
+ "learning_rate": 0.0006,
+ "loss": 5.144109725952148,
+ "step": 411
+ },
+ {
+ "epoch": 5.72695500218436,
+ "grad_norm": 0.44301411509513855,
+ "learning_rate": 0.0006,
+ "loss": 5.155509948730469,
+ "step": 412
+ },
+ {
+ "epoch": 5.740934906072521,
+ "grad_norm": 0.36632269620895386,
+ "learning_rate": 0.0006,
+ "loss": 5.123111248016357,
+ "step": 413
+ },
+ {
+ "epoch": 5.754914809960681,
+ "grad_norm": 0.2980524003505707,
+ "learning_rate": 0.0006,
+ "loss": 5.1355719566345215,
+ "step": 414
+ },
+ {
+ "epoch": 5.768894713848843,
+ "grad_norm": 0.3441782295703888,
+ "learning_rate": 0.0006,
+ "loss": 5.132327079772949,
+ "step": 415
+ },
+ {
+ "epoch": 5.782874617737003,
+ "grad_norm": 0.4150780737400055,
+ "learning_rate": 0.0006,
+ "loss": 5.148543357849121,
+ "step": 416
+ },
+ {
+ "epoch": 5.796854521625164,
+ "grad_norm": 0.48417383432388306,
+ "learning_rate": 0.0006,
+ "loss": 5.104989528656006,
+ "step": 417
+ },
+ {
+ "epoch": 5.810834425513325,
+ "grad_norm": 0.3216031491756439,
+ "learning_rate": 0.0006,
+ "loss": 5.0926127433776855,
+ "step": 418
+ },
+ {
+ "epoch": 5.824814329401486,
+ "grad_norm": 0.2821158468723297,
+ "learning_rate": 0.0006,
+ "loss": 5.112299919128418,
+ "step": 419
+ },
+ {
+ "epoch": 5.838794233289646,
+ "grad_norm": 0.29821011424064636,
+ "learning_rate": 0.0006,
+ "loss": 5.091662406921387,
+ "step": 420
+ },
+ {
+ "epoch": 5.852774137177807,
+ "grad_norm": 0.30570563673973083,
+ "learning_rate": 0.0006,
+ "loss": 5.137539863586426,
+ "step": 421
+ },
+ {
+ "epoch": 5.866754041065968,
+ "grad_norm": 0.4029594957828522,
+ "learning_rate": 0.0006,
+ "loss": 5.112751007080078,
+ "step": 422
+ },
+ {
+ "epoch": 5.8807339449541285,
+ "grad_norm": 0.3878514766693115,
+ "learning_rate": 0.0006,
+ "loss": 5.094973564147949,
+ "step": 423
+ },
+ {
+ "epoch": 5.894713848842289,
+ "grad_norm": 0.31936126947402954,
+ "learning_rate": 0.0006,
+ "loss": 5.081070899963379,
+ "step": 424
+ },
+ {
+ "epoch": 5.90869375273045,
+ "grad_norm": 0.3309082090854645,
+ "learning_rate": 0.0006,
+ "loss": 5.06803560256958,
+ "step": 425
+ },
+ {
+ "epoch": 5.922673656618611,
+ "grad_norm": 0.27830439805984497,
+ "learning_rate": 0.0006,
+ "loss": 5.044766426086426,
+ "step": 426
+ },
+ {
+ "epoch": 5.936653560506771,
+ "grad_norm": 0.3301011919975281,
+ "learning_rate": 0.0006,
+ "loss": 5.093942165374756,
+ "step": 427
+ },
+ {
+ "epoch": 5.950633464394932,
+ "grad_norm": 0.40845948457717896,
+ "learning_rate": 0.0006,
+ "loss": 5.0889458656311035,
+ "step": 428
+ },
+ {
+ "epoch": 5.964613368283093,
+ "grad_norm": 0.4412153959274292,
+ "learning_rate": 0.0006,
+ "loss": 5.064834117889404,
+ "step": 429
+ },
+ {
+ "epoch": 5.978593272171254,
+ "grad_norm": 0.3592590093612671,
+ "learning_rate": 0.0006,
+ "loss": 5.066648006439209,
+ "step": 430
+ },
+ {
+ "epoch": 5.992573176059414,
+ "grad_norm": 0.3952840268611908,
+ "learning_rate": 0.0006,
+ "loss": 5.066549301147461,
+ "step": 431
+ },
+ {
+ "epoch": 6.0,
+ "grad_norm": 0.38878682255744934,
+ "learning_rate": 0.0006,
+ "loss": 5.0354323387146,
+ "step": 432
+ },
+ {
+ "epoch": 6.0,
+ "eval_loss": 5.473907947540283,
+ "eval_runtime": 44.5121,
+ "eval_samples_per_second": 54.861,
+ "eval_steps_per_second": 3.437,
+ "step": 432
+ },
+ {
+ "epoch": 6.013979903888161,
+ "grad_norm": 0.42730140686035156,
+ "learning_rate": 0.0006,
+ "loss": 5.048557281494141,
+ "step": 433
+ },
+ {
+ "epoch": 6.0279598077763215,
+ "grad_norm": 0.32713913917541504,
+ "learning_rate": 0.0006,
+ "loss": 5.041255950927734,
+ "step": 434
+ },
+ {
+ "epoch": 6.041939711664482,
+ "grad_norm": 0.32520365715026855,
+ "learning_rate": 0.0006,
+ "loss": 5.043124198913574,
+ "step": 435
+ },
+ {
+ "epoch": 6.055919615552643,
+ "grad_norm": 0.2941839098930359,
+ "learning_rate": 0.0006,
+ "loss": 5.0407304763793945,
+ "step": 436
+ },
+ {
+ "epoch": 6.069899519440804,
+ "grad_norm": 0.3088819682598114,
+ "learning_rate": 0.0006,
+ "loss": 5.020771026611328,
+ "step": 437
+ },
+ {
+ "epoch": 6.083879423328964,
+ "grad_norm": 0.34334254264831543,
+ "learning_rate": 0.0006,
+ "loss": 5.0260009765625,
+ "step": 438
+ },
+ {
+ "epoch": 6.097859327217125,
+ "grad_norm": 0.33016136288642883,
+ "learning_rate": 0.0006,
+ "loss": 4.994412899017334,
+ "step": 439
+ },
+ {
+ "epoch": 6.111839231105286,
+ "grad_norm": 0.2527366280555725,
+ "learning_rate": 0.0006,
+ "loss": 4.997830390930176,
+ "step": 440
+ },
+ {
+ "epoch": 6.1258191349934465,
+ "grad_norm": 0.24742509424686432,
+ "learning_rate": 0.0006,
+ "loss": 5.017087936401367,
+ "step": 441
+ },
+ {
+ "epoch": 6.139799038881607,
+ "grad_norm": 0.22578303515911102,
+ "learning_rate": 0.0006,
+ "loss": 5.000683784484863,
+ "step": 442
+ },
+ {
+ "epoch": 6.153778942769769,
+ "grad_norm": 0.21213896572589874,
+ "learning_rate": 0.0006,
+ "loss": 4.993280410766602,
+ "step": 443
+ },
+ {
+ "epoch": 6.16775884665793,
+ "grad_norm": 0.22559592127799988,
+ "learning_rate": 0.0006,
+ "loss": 5.005735874176025,
+ "step": 444
+ },
+ {
+ "epoch": 6.18173875054609,
+ "grad_norm": 0.18574322760105133,
+ "learning_rate": 0.0006,
+ "loss": 4.996601104736328,
+ "step": 445
+ },
+ {
+ "epoch": 6.195718654434251,
+ "grad_norm": 0.1793852299451828,
+ "learning_rate": 0.0006,
+ "loss": 4.977394104003906,
+ "step": 446
+ },
+ {
+ "epoch": 6.209698558322412,
+ "grad_norm": 0.1851297914981842,
+ "learning_rate": 0.0006,
+ "loss": 4.983541488647461,
+ "step": 447
+ },
+ {
+ "epoch": 6.2236784622105725,
+ "grad_norm": 0.2045268565416336,
+ "learning_rate": 0.0006,
+ "loss": 4.992830276489258,
+ "step": 448
+ },
+ {
+ "epoch": 6.237658366098733,
+ "grad_norm": 0.21707463264465332,
+ "learning_rate": 0.0006,
+ "loss": 4.998589515686035,
+ "step": 449
+ },
+ {
+ "epoch": 6.251638269986894,
+ "grad_norm": 0.2805860638618469,
+ "learning_rate": 0.0006,
+ "loss": 4.973134517669678,
+ "step": 450
+ },
+ {
+ "epoch": 6.265618173875055,
+ "grad_norm": 0.33102089166641235,
+ "learning_rate": 0.0006,
+ "loss": 4.957348823547363,
+ "step": 451
+ },
+ {
+ "epoch": 6.279598077763215,
+ "grad_norm": 0.3763096034526825,
+ "learning_rate": 0.0006,
+ "loss": 5.0133256912231445,
+ "step": 452
+ },
+ {
+ "epoch": 6.293577981651376,
+ "grad_norm": 0.4676196575164795,
+ "learning_rate": 0.0006,
+ "loss": 4.972289562225342,
+ "step": 453
+ },
+ {
+ "epoch": 6.307557885539537,
+ "grad_norm": 0.6158978343009949,
+ "learning_rate": 0.0006,
+ "loss": 4.989326477050781,
+ "step": 454
+ },
+ {
+ "epoch": 6.321537789427698,
+ "grad_norm": 0.537460446357727,
+ "learning_rate": 0.0006,
+ "loss": 5.0210676193237305,
+ "step": 455
+ },
+ {
+ "epoch": 6.335517693315858,
+ "grad_norm": 0.5342532396316528,
+ "learning_rate": 0.0006,
+ "loss": 4.988524436950684,
+ "step": 456
+ },
+ {
+ "epoch": 6.349497597204019,
+ "grad_norm": 0.5736384987831116,
+ "learning_rate": 0.0006,
+ "loss": 4.977508068084717,
+ "step": 457
+ },
+ {
+ "epoch": 6.36347750109218,
+ "grad_norm": 0.6656201481819153,
+ "learning_rate": 0.0006,
+ "loss": 5.047934055328369,
+ "step": 458
+ },
+ {
+ "epoch": 6.3774574049803405,
+ "grad_norm": 0.6388342380523682,
+ "learning_rate": 0.0006,
+ "loss": 5.017617225646973,
+ "step": 459
+ },
+ {
+ "epoch": 6.391437308868501,
+ "grad_norm": 0.6620904207229614,
+ "learning_rate": 0.0006,
+ "loss": 5.032195091247559,
+ "step": 460
+ },
+ {
+ "epoch": 6.405417212756662,
+ "grad_norm": 0.693274974822998,
+ "learning_rate": 0.0006,
+ "loss": 5.02433967590332,
+ "step": 461
+ },
+ {
+ "epoch": 6.419397116644823,
+ "grad_norm": 0.6888924241065979,
+ "learning_rate": 0.0006,
+ "loss": 5.010735511779785,
+ "step": 462
+ },
+ {
+ "epoch": 6.433377020532983,
+ "grad_norm": 0.7181721925735474,
+ "learning_rate": 0.0006,
+ "loss": 5.049690246582031,
+ "step": 463
+ },
+ {
+ "epoch": 6.447356924421145,
+ "grad_norm": 0.7225117087364197,
+ "learning_rate": 0.0006,
+ "loss": 5.031939506530762,
+ "step": 464
+ },
+ {
+ "epoch": 6.461336828309306,
+ "grad_norm": 0.5268304347991943,
+ "learning_rate": 0.0006,
+ "loss": 5.01638126373291,
+ "step": 465
+ },
+ {
+ "epoch": 6.4753167321974665,
+ "grad_norm": 0.38218435645103455,
+ "learning_rate": 0.0006,
+ "loss": 4.997034072875977,
+ "step": 466
+ },
+ {
+ "epoch": 6.489296636085627,
+ "grad_norm": 0.3576396703720093,
+ "learning_rate": 0.0006,
+ "loss": 5.006804943084717,
+ "step": 467
+ },
+ {
+ "epoch": 6.503276539973788,
+ "grad_norm": 0.3305981755256653,
+ "learning_rate": 0.0006,
+ "loss": 4.994671821594238,
+ "step": 468
+ },
+ {
+ "epoch": 6.517256443861949,
+ "grad_norm": 0.3254900574684143,
+ "learning_rate": 0.0006,
+ "loss": 4.9747490882873535,
+ "step": 469
+ },
+ {
+ "epoch": 6.531236347750109,
+ "grad_norm": 0.2655033469200134,
+ "learning_rate": 0.0006,
+ "loss": 5.002863883972168,
+ "step": 470
+ },
+ {
+ "epoch": 6.54521625163827,
+ "grad_norm": 0.2620532810688019,
+ "learning_rate": 0.0006,
+ "loss": 4.9813337326049805,
+ "step": 471
+ },
+ {
+ "epoch": 6.559196155526431,
+ "grad_norm": 0.22128869593143463,
+ "learning_rate": 0.0006,
+ "loss": 4.978368759155273,
+ "step": 472
+ },
+ {
+ "epoch": 6.573176059414592,
+ "grad_norm": 0.22638699412345886,
+ "learning_rate": 0.0006,
+ "loss": 4.944509029388428,
+ "step": 473
+ },
+ {
+ "epoch": 6.587155963302752,
+ "grad_norm": 0.20720207691192627,
+ "learning_rate": 0.0006,
+ "loss": 4.98404598236084,
+ "step": 474
+ },
+ {
+ "epoch": 6.601135867190913,
+ "grad_norm": 0.21577289700508118,
+ "learning_rate": 0.0006,
+ "loss": 4.958878040313721,
+ "step": 475
+ },
+ {
+ "epoch": 6.615115771079074,
+ "grad_norm": 0.22453972697257996,
+ "learning_rate": 0.0006,
+ "loss": 4.935467720031738,
+ "step": 476
+ },
+ {
+ "epoch": 6.6290956749672345,
+ "grad_norm": 0.20757712423801422,
+ "learning_rate": 0.0006,
+ "loss": 4.943334579467773,
+ "step": 477
+ },
+ {
+ "epoch": 6.643075578855395,
+ "grad_norm": 0.22808043658733368,
+ "learning_rate": 0.0006,
+ "loss": 4.936544418334961,
+ "step": 478
+ },
+ {
+ "epoch": 6.657055482743556,
+ "grad_norm": 0.2193756401538849,
+ "learning_rate": 0.0006,
+ "loss": 4.938162326812744,
+ "step": 479
+ },
+ {
+ "epoch": 6.671035386631717,
+ "grad_norm": 0.19677500426769257,
+ "learning_rate": 0.0006,
+ "loss": 4.9026713371276855,
+ "step": 480
+ },
+ {
+ "epoch": 6.685015290519877,
+ "grad_norm": 0.17271658778190613,
+ "learning_rate": 0.0006,
+ "loss": 4.912519454956055,
+ "step": 481
+ },
+ {
+ "epoch": 6.698995194408038,
+ "grad_norm": 0.17551499605178833,
+ "learning_rate": 0.0006,
+ "loss": 4.929941177368164,
+ "step": 482
+ },
+ {
+ "epoch": 6.712975098296199,
+ "grad_norm": 0.1582687348127365,
+ "learning_rate": 0.0006,
+ "loss": 4.908967971801758,
+ "step": 483
+ },
+ {
+ "epoch": 6.72695500218436,
+ "grad_norm": 0.1593410074710846,
+ "learning_rate": 0.0006,
+ "loss": 4.901554107666016,
+ "step": 484
+ },
+ {
+ "epoch": 6.740934906072521,
+ "grad_norm": 0.16746895015239716,
+ "learning_rate": 0.0006,
+ "loss": 4.917915344238281,
+ "step": 485
+ },
+ {
+ "epoch": 6.754914809960681,
+ "grad_norm": 0.17066062986850739,
+ "learning_rate": 0.0006,
+ "loss": 4.912853240966797,
+ "step": 486
+ },
+ {
+ "epoch": 6.768894713848843,
+ "grad_norm": 0.16727769374847412,
+ "learning_rate": 0.0006,
+ "loss": 4.895434856414795,
+ "step": 487
+ },
+ {
+ "epoch": 6.782874617737003,
+ "grad_norm": 0.1784558743238449,
+ "learning_rate": 0.0006,
+ "loss": 4.8805341720581055,
+ "step": 488
+ },
+ {
+ "epoch": 6.796854521625164,
+ "grad_norm": 0.176686093211174,
+ "learning_rate": 0.0006,
+ "loss": 4.855296611785889,
+ "step": 489
+ },
+ {
+ "epoch": 6.810834425513325,
+ "grad_norm": 0.21577849984169006,
+ "learning_rate": 0.0006,
+ "loss": 4.885506629943848,
+ "step": 490
+ },
+ {
+ "epoch": 6.824814329401486,
+ "grad_norm": 0.27615776658058167,
+ "learning_rate": 0.0006,
+ "loss": 4.913756847381592,
+ "step": 491
+ },
+ {
+ "epoch": 6.838794233289646,
+ "grad_norm": 0.3653675615787506,
+ "learning_rate": 0.0006,
+ "loss": 4.880918979644775,
+ "step": 492
+ },
+ {
+ "epoch": 6.852774137177807,
+ "grad_norm": 0.41473883390426636,
+ "learning_rate": 0.0006,
+ "loss": 4.894164562225342,
+ "step": 493
+ },
+ {
+ "epoch": 6.866754041065968,
+ "grad_norm": 0.45850715041160583,
+ "learning_rate": 0.0006,
+ "loss": 4.907922744750977,
+ "step": 494
+ },
+ {
+ "epoch": 6.8807339449541285,
+ "grad_norm": 0.4675290882587433,
+ "learning_rate": 0.0006,
+ "loss": 4.883112907409668,
+ "step": 495
+ },
+ {
+ "epoch": 6.894713848842289,
+ "grad_norm": 0.45795994997024536,
+ "learning_rate": 0.0006,
+ "loss": 4.897843360900879,
+ "step": 496
+ },
+ {
+ "epoch": 6.90869375273045,
+ "grad_norm": 0.46130508184432983,
+ "learning_rate": 0.0006,
+ "loss": 4.890612602233887,
+ "step": 497
+ },
+ {
+ "epoch": 6.922673656618611,
+ "grad_norm": 0.44783803820610046,
+ "learning_rate": 0.0006,
+ "loss": 4.880192756652832,
+ "step": 498
+ },
+ {
+ "epoch": 6.936653560506771,
+ "grad_norm": 0.35361284017562866,
+ "learning_rate": 0.0006,
+ "loss": 4.840778350830078,
+ "step": 499
+ },
+ {
+ "epoch": 6.950633464394932,
+ "grad_norm": 0.34027689695358276,
+ "learning_rate": 0.0006,
+ "loss": 4.871222496032715,
+ "step": 500
+ },
+ {
+ "epoch": 6.964613368283093,
+ "grad_norm": 0.30228909850120544,
+ "learning_rate": 0.0006,
+ "loss": 4.868077278137207,
+ "step": 501
+ },
+ {
+ "epoch": 6.978593272171254,
+ "grad_norm": 0.27706998586654663,
+ "learning_rate": 0.0006,
+ "loss": 4.895936012268066,
+ "step": 502
+ },
+ {
+ "epoch": 6.992573176059414,
+ "grad_norm": 0.3516870439052582,
+ "learning_rate": 0.0006,
+ "loss": 4.824636459350586,
+ "step": 503
+ },
+ {
+ "epoch": 7.0,
+ "grad_norm": 0.36831387877464294,
+ "learning_rate": 0.0006,
+ "loss": 4.874397277832031,
+ "step": 504
+ },
+ {
+ "epoch": 7.0,
+ "eval_loss": 5.176281452178955,
+ "eval_runtime": 44.2386,
+ "eval_samples_per_second": 55.201,
+ "eval_steps_per_second": 3.459,
+ "step": 504
+ },
+ {
+ "epoch": 7.013979903888161,
+ "grad_norm": 0.4265240430831909,
+ "learning_rate": 0.0006,
+ "loss": 4.814333438873291,
+ "step": 505
+ },
+ {
+ "epoch": 7.0279598077763215,
+ "grad_norm": 0.5126975774765015,
+ "learning_rate": 0.0006,
+ "loss": 4.852343559265137,
+ "step": 506
+ },
+ {
+ "epoch": 7.041939711664482,
+ "grad_norm": 0.43080806732177734,
+ "learning_rate": 0.0006,
+ "loss": 4.843439102172852,
+ "step": 507
+ },
+ {
+ "epoch": 7.055919615552643,
+ "grad_norm": 0.43170198798179626,
+ "learning_rate": 0.0006,
+ "loss": 4.845984935760498,
+ "step": 508
+ },
+ {
+ "epoch": 7.069899519440804,
+ "grad_norm": 0.5640552043914795,
+ "learning_rate": 0.0006,
+ "loss": 4.840991973876953,
+ "step": 509
+ },
+ {
+ "epoch": 7.083879423328964,
+ "grad_norm": 0.540381133556366,
+ "learning_rate": 0.0006,
+ "loss": 4.801316738128662,
+ "step": 510
+ },
+ {
+ "epoch": 7.097859327217125,
+ "grad_norm": 0.5412097573280334,
+ "learning_rate": 0.0006,
+ "loss": 4.886598587036133,
+ "step": 511
+ },
+ {
+ "epoch": 7.111839231105286,
+ "grad_norm": 0.630648136138916,
+ "learning_rate": 0.0006,
+ "loss": 4.849774360656738,
+ "step": 512
+ },
+ {
+ "epoch": 7.1258191349934465,
+ "grad_norm": 0.569952130317688,
+ "learning_rate": 0.0006,
+ "loss": 4.870607376098633,
+ "step": 513
+ },
+ {
+ "epoch": 7.139799038881607,
+ "grad_norm": 0.42051541805267334,
+ "learning_rate": 0.0006,
+ "loss": 4.83833122253418,
+ "step": 514
+ },
+ {
+ "epoch": 7.153778942769769,
+ "grad_norm": 0.3930990397930145,
+ "learning_rate": 0.0006,
+ "loss": 4.853984355926514,
+ "step": 515
+ },
+ {
+ "epoch": 7.16775884665793,
+ "grad_norm": 0.512886106967926,
+ "learning_rate": 0.0006,
+ "loss": 4.815458297729492,
+ "step": 516
+ },
+ {
+ "epoch": 7.18173875054609,
+ "grad_norm": 0.42580172419548035,
+ "learning_rate": 0.0006,
+ "loss": 4.825312614440918,
+ "step": 517
+ },
+ {
+ "epoch": 7.195718654434251,
+ "grad_norm": 0.31628182530403137,
+ "learning_rate": 0.0006,
+ "loss": 4.806377410888672,
+ "step": 518
+ },
+ {
+ "epoch": 7.209698558322412,
+ "grad_norm": 0.3109956681728363,
+ "learning_rate": 0.0006,
+ "loss": 4.819339752197266,
+ "step": 519
+ },
+ {
+ "epoch": 7.2236784622105725,
+ "grad_norm": 0.2740071415901184,
+ "learning_rate": 0.0006,
+ "loss": 4.81319522857666,
+ "step": 520
+ },
+ {
+ "epoch": 7.237658366098733,
+ "grad_norm": 0.26441165804862976,
+ "learning_rate": 0.0006,
+ "loss": 4.8107380867004395,
+ "step": 521
+ },
+ {
+ "epoch": 7.251638269986894,
+ "grad_norm": 0.2496110051870346,
+ "learning_rate": 0.0006,
+ "loss": 4.785193920135498,
+ "step": 522
+ },
+ {
+ "epoch": 7.265618173875055,
+ "grad_norm": 0.2565560042858124,
+ "learning_rate": 0.0006,
+ "loss": 4.802750587463379,
+ "step": 523
+ },
+ {
+ "epoch": 7.279598077763215,
+ "grad_norm": 0.2126980572938919,
+ "learning_rate": 0.0006,
+ "loss": 4.763580322265625,
+ "step": 524
+ },
+ {
+ "epoch": 7.293577981651376,
+ "grad_norm": 0.2169921100139618,
+ "learning_rate": 0.0006,
+ "loss": 4.756124973297119,
+ "step": 525
+ },
+ {
+ "epoch": 7.307557885539537,
+ "grad_norm": 0.2372167706489563,
+ "learning_rate": 0.0006,
+ "loss": 4.786888599395752,
+ "step": 526
+ },
+ {
+ "epoch": 7.321537789427698,
+ "grad_norm": 0.2124386429786682,
+ "learning_rate": 0.0006,
+ "loss": 4.777996063232422,
+ "step": 527
+ },
+ {
+ "epoch": 7.335517693315858,
+ "grad_norm": 0.18585442006587982,
+ "learning_rate": 0.0006,
+ "loss": 4.770537853240967,
+ "step": 528
+ },
+ {
+ "epoch": 7.349497597204019,
+ "grad_norm": 0.20515340566635132,
+ "learning_rate": 0.0006,
+ "loss": 4.769230842590332,
+ "step": 529
+ },
+ {
+ "epoch": 7.36347750109218,
+ "grad_norm": 0.19906704127788544,
+ "learning_rate": 0.0006,
+ "loss": 4.752581596374512,
+ "step": 530
+ },
+ {
+ "epoch": 7.3774574049803405,
+ "grad_norm": 0.2030428946018219,
+ "learning_rate": 0.0006,
+ "loss": 4.7353715896606445,
+ "step": 531
+ },
+ {
+ "epoch": 7.391437308868501,
+ "grad_norm": 0.17820630967617035,
+ "learning_rate": 0.0006,
+ "loss": 4.742705345153809,
+ "step": 532
+ },
+ {
+ "epoch": 7.405417212756662,
+ "grad_norm": 0.17642682790756226,
+ "learning_rate": 0.0006,
+ "loss": 4.752669334411621,
+ "step": 533
+ },
+ {
+ "epoch": 7.419397116644823,
+ "grad_norm": 0.18088409304618835,
+ "learning_rate": 0.0006,
+ "loss": 4.734611511230469,
+ "step": 534
+ },
+ {
+ "epoch": 7.433377020532983,
+ "grad_norm": 0.20897020399570465,
+ "learning_rate": 0.0006,
+ "loss": 4.756442070007324,
+ "step": 535
+ },
+ {
+ "epoch": 7.447356924421145,
+ "grad_norm": 0.23166777193546295,
+ "learning_rate": 0.0006,
+ "loss": 4.712922096252441,
+ "step": 536
+ },
+ {
+ "epoch": 7.461336828309306,
+ "grad_norm": 0.2205347716808319,
+ "learning_rate": 0.0006,
+ "loss": 4.75001335144043,
+ "step": 537
+ },
+ {
+ "epoch": 7.4753167321974665,
+ "grad_norm": 0.23868022859096527,
+ "learning_rate": 0.0006,
+ "loss": 4.726134300231934,
+ "step": 538
+ },
+ {
+ "epoch": 7.489296636085627,
+ "grad_norm": 0.2861441373825073,
+ "learning_rate": 0.0006,
+ "loss": 4.754112243652344,
+ "step": 539
+ },
+ {
+ "epoch": 7.503276539973788,
+ "grad_norm": 0.28980305790901184,
+ "learning_rate": 0.0006,
+ "loss": 4.716021537780762,
+ "step": 540
+ },
+ {
+ "epoch": 7.517256443861949,
+ "grad_norm": 0.2784835696220398,
+ "learning_rate": 0.0006,
+ "loss": 4.713929176330566,
+ "step": 541
+ },
+ {
+ "epoch": 7.531236347750109,
+ "grad_norm": 0.2962653934955597,
+ "learning_rate": 0.0006,
+ "loss": 4.711845397949219,
+ "step": 542
+ },
+ {
+ "epoch": 7.54521625163827,
+ "grad_norm": 0.3333161175251007,
+ "learning_rate": 0.0006,
+ "loss": 4.709834575653076,
+ "step": 543
+ },
+ {
+ "epoch": 7.559196155526431,
+ "grad_norm": 0.35304850339889526,
+ "learning_rate": 0.0006,
+ "loss": 4.732914924621582,
+ "step": 544
+ },
+ {
+ "epoch": 7.573176059414592,
+ "grad_norm": 0.4165869355201721,
+ "learning_rate": 0.0006,
+ "loss": 4.716190338134766,
+ "step": 545
+ },
+ {
+ "epoch": 7.587155963302752,
+ "grad_norm": 0.4878059923648834,
+ "learning_rate": 0.0006,
+ "loss": 4.723773002624512,
+ "step": 546
+ },
+ {
+ "epoch": 7.601135867190913,
+ "grad_norm": 0.36643707752227783,
+ "learning_rate": 0.0006,
+ "loss": 4.721458911895752,
+ "step": 547
+ },
+ {
+ "epoch": 7.615115771079074,
+ "grad_norm": 0.4046908915042877,
+ "learning_rate": 0.0006,
+ "loss": 4.715397834777832,
+ "step": 548
+ },
+ {
+ "epoch": 7.6290956749672345,
+ "grad_norm": 0.44426342844963074,
+ "learning_rate": 0.0006,
+ "loss": 4.737357139587402,
+ "step": 549
+ },
+ {
+ "epoch": 7.643075578855395,
+ "grad_norm": 0.4181079864501953,
+ "learning_rate": 0.0006,
+ "loss": 4.731383800506592,
+ "step": 550
+ },
+ {
+ "epoch": 7.657055482743556,
+ "grad_norm": 0.3486088216304779,
+ "learning_rate": 0.0006,
+ "loss": 4.728029727935791,
+ "step": 551
+ },
+ {
+ "epoch": 7.671035386631717,
+ "grad_norm": 0.37150970101356506,
+ "learning_rate": 0.0006,
+ "loss": 4.7083210945129395,
+ "step": 552
+ },
+ {
+ "epoch": 7.685015290519877,
+ "grad_norm": 0.43324410915374756,
+ "learning_rate": 0.0006,
+ "loss": 4.728720664978027,
+ "step": 553
+ },
+ {
+ "epoch": 7.698995194408038,
+ "grad_norm": 0.5026620626449585,
+ "learning_rate": 0.0006,
+ "loss": 4.698156356811523,
+ "step": 554
+ },
+ {
+ "epoch": 7.712975098296199,
+ "grad_norm": 0.4873499274253845,
+ "learning_rate": 0.0006,
+ "loss": 4.7169952392578125,
+ "step": 555
+ },
+ {
+ "epoch": 7.72695500218436,
+ "grad_norm": 0.4285493791103363,
+ "learning_rate": 0.0006,
+ "loss": 4.6877241134643555,
+ "step": 556
+ },
+ {
+ "epoch": 7.740934906072521,
+ "grad_norm": 0.5179854035377502,
+ "learning_rate": 0.0006,
+ "loss": 4.704267501831055,
+ "step": 557
+ },
+ {
+ "epoch": 7.754914809960681,
+ "grad_norm": 0.4642147421836853,
+ "learning_rate": 0.0006,
+ "loss": 4.695004463195801,
+ "step": 558
+ },
+ {
+ "epoch": 7.768894713848843,
+ "grad_norm": 0.47149503231048584,
+ "learning_rate": 0.0006,
+ "loss": 4.694338798522949,
+ "step": 559
+ },
+ {
+ "epoch": 7.782874617737003,
+ "grad_norm": 0.5422149300575256,
+ "learning_rate": 0.0006,
+ "loss": 4.749478340148926,
+ "step": 560
+ },
+ {
+ "epoch": 7.796854521625164,
+ "grad_norm": 0.4360728859901428,
+ "learning_rate": 0.0006,
+ "loss": 4.685191631317139,
+ "step": 561
+ },
+ {
+ "epoch": 7.810834425513325,
+ "grad_norm": 0.4243801534175873,
+ "learning_rate": 0.0006,
+ "loss": 4.69228458404541,
+ "step": 562
+ },
+ {
+ "epoch": 7.824814329401486,
+ "grad_norm": 0.40380290150642395,
+ "learning_rate": 0.0006,
+ "loss": 4.690923690795898,
+ "step": 563
+ },
+ {
+ "epoch": 7.838794233289646,
+ "grad_norm": 0.4352976381778717,
+ "learning_rate": 0.0006,
+ "loss": 4.720489978790283,
+ "step": 564
+ },
+ {
+ "epoch": 7.852774137177807,
+ "grad_norm": 0.44634920358657837,
+ "learning_rate": 0.0006,
+ "loss": 4.683789253234863,
+ "step": 565
+ },
+ {
+ "epoch": 7.866754041065968,
+ "grad_norm": 0.3818186819553375,
+ "learning_rate": 0.0006,
+ "loss": 4.696887016296387,
+ "step": 566
+ },
+ {
+ "epoch": 7.8807339449541285,
+ "grad_norm": 0.35270464420318604,
+ "learning_rate": 0.0006,
+ "loss": 4.715676307678223,
+ "step": 567
+ },
+ {
+ "epoch": 7.894713848842289,
+ "grad_norm": 0.249756321310997,
+ "learning_rate": 0.0006,
+ "loss": 4.672721862792969,
+ "step": 568
+ },
+ {
+ "epoch": 7.90869375273045,
+ "grad_norm": 0.25097888708114624,
+ "learning_rate": 0.0006,
+ "loss": 4.663518905639648,
+ "step": 569
+ },
+ {
+ "epoch": 7.922673656618611,
+ "grad_norm": 0.26563209295272827,
+ "learning_rate": 0.0006,
+ "loss": 4.675405025482178,
+ "step": 570
+ },
+ {
+ "epoch": 7.936653560506771,
+ "grad_norm": 0.26451292634010315,
+ "learning_rate": 0.0006,
+ "loss": 4.651235103607178,
+ "step": 571
+ },
+ {
+ "epoch": 7.950633464394932,
+ "grad_norm": 0.24185842275619507,
+ "learning_rate": 0.0006,
+ "loss": 4.671639919281006,
+ "step": 572
+ },
+ {
+ "epoch": 7.964613368283093,
+ "grad_norm": 0.21506108343601227,
+ "learning_rate": 0.0006,
+ "loss": 4.665352821350098,
+ "step": 573
+ },
+ {
+ "epoch": 7.978593272171254,
+ "grad_norm": 0.24365705251693726,
+ "learning_rate": 0.0006,
+ "loss": 4.663162708282471,
+ "step": 574
+ },
+ {
+ "epoch": 7.992573176059414,
+ "grad_norm": 0.24251042306423187,
+ "learning_rate": 0.0006,
+ "loss": 4.666633605957031,
+ "step": 575
+ },
+ {
+ "epoch": 8.0,
+ "grad_norm": 0.24187657237052917,
+ "learning_rate": 0.0006,
+ "loss": 4.63957405090332,
+ "step": 576
+ },
+ {
+ "epoch": 8.0,
+ "eval_loss": 4.923156261444092,
+ "eval_runtime": 44.1587,
+ "eval_samples_per_second": 55.301,
+ "eval_steps_per_second": 3.465,
+ "step": 576
+ },
+ {
+ "epoch": 8.013979903888162,
+ "grad_norm": 0.21323645114898682,
+ "learning_rate": 0.0006,
+ "loss": 4.636347770690918,
+ "step": 577
+ },
+ {
+ "epoch": 8.027959807776321,
+ "grad_norm": 0.2325759083032608,
+ "learning_rate": 0.0006,
+ "loss": 4.60684871673584,
+ "step": 578
+ },
+ {
+ "epoch": 8.041939711664483,
+ "grad_norm": 0.26741257309913635,
+ "learning_rate": 0.0006,
+ "loss": 4.647780418395996,
+ "step": 579
+ },
+ {
+ "epoch": 8.055919615552643,
+ "grad_norm": 0.285720556974411,
+ "learning_rate": 0.0006,
+ "loss": 4.629637718200684,
+ "step": 580
+ },
+ {
+ "epoch": 8.069899519440805,
+ "grad_norm": 0.2453618347644806,
+ "learning_rate": 0.0006,
+ "loss": 4.62420654296875,
+ "step": 581
+ },
+ {
+ "epoch": 8.083879423328964,
+ "grad_norm": 0.19662636518478394,
+ "learning_rate": 0.0006,
+ "loss": 4.593767166137695,
+ "step": 582
+ },
+ {
+ "epoch": 8.097859327217126,
+ "grad_norm": 0.22731931507587433,
+ "learning_rate": 0.0006,
+ "loss": 4.627089023590088,
+ "step": 583
+ },
+ {
+ "epoch": 8.111839231105286,
+ "grad_norm": 0.24452590942382812,
+ "learning_rate": 0.0006,
+ "loss": 4.613677024841309,
+ "step": 584
+ },
+ {
+ "epoch": 8.125819134993447,
+ "grad_norm": 0.2952791154384613,
+ "learning_rate": 0.0006,
+ "loss": 4.604985237121582,
+ "step": 585
+ },
+ {
+ "epoch": 8.139799038881607,
+ "grad_norm": 0.3184696137905121,
+ "learning_rate": 0.0006,
+ "loss": 4.589205741882324,
+ "step": 586
+ },
+ {
+ "epoch": 8.153778942769769,
+ "grad_norm": 0.2948093116283417,
+ "learning_rate": 0.0006,
+ "loss": 4.605442047119141,
+ "step": 587
+ },
+ {
+ "epoch": 8.167758846657929,
+ "grad_norm": 0.2450508326292038,
+ "learning_rate": 0.0006,
+ "loss": 4.615349292755127,
+ "step": 588
+ },
+ {
+ "epoch": 8.18173875054609,
+ "grad_norm": 0.25664836168289185,
+ "learning_rate": 0.0006,
+ "loss": 4.592251777648926,
+ "step": 589
+ },
+ {
+ "epoch": 8.19571865443425,
+ "grad_norm": 0.24479512870311737,
+ "learning_rate": 0.0006,
+ "loss": 4.6145920753479,
+ "step": 590
+ },
+ {
+ "epoch": 8.209698558322412,
+ "grad_norm": 0.24395205080509186,
+ "learning_rate": 0.0006,
+ "loss": 4.600954055786133,
+ "step": 591
+ },
+ {
+ "epoch": 8.223678462210572,
+ "grad_norm": 0.21804189682006836,
+ "learning_rate": 0.0006,
+ "loss": 4.607785224914551,
+ "step": 592
+ },
+ {
+ "epoch": 8.237658366098733,
+ "grad_norm": 0.20951785147190094,
+ "learning_rate": 0.0006,
+ "loss": 4.58140754699707,
+ "step": 593
+ },
+ {
+ "epoch": 8.251638269986893,
+ "grad_norm": 0.20415149629116058,
+ "learning_rate": 0.0006,
+ "loss": 4.593405723571777,
+ "step": 594
+ },
+ {
+ "epoch": 8.265618173875055,
+ "grad_norm": 0.19210249185562134,
+ "learning_rate": 0.0006,
+ "loss": 4.603294372558594,
+ "step": 595
+ },
+ {
+ "epoch": 8.279598077763215,
+ "grad_norm": 0.20719751715660095,
+ "learning_rate": 0.0006,
+ "loss": 4.55255651473999,
+ "step": 596
+ },
+ {
+ "epoch": 8.293577981651376,
+ "grad_norm": 0.20101022720336914,
+ "learning_rate": 0.0006,
+ "loss": 4.5928192138671875,
+ "step": 597
+ },
+ {
+ "epoch": 8.307557885539538,
+ "grad_norm": 0.19254222512245178,
+ "learning_rate": 0.0006,
+ "loss": 4.590397834777832,
+ "step": 598
+ },
+ {
+ "epoch": 8.321537789427698,
+ "grad_norm": 0.23234105110168457,
+ "learning_rate": 0.0006,
+ "loss": 4.5987677574157715,
+ "step": 599
+ },
+ {
+ "epoch": 8.33551769331586,
+ "grad_norm": 0.2537451982498169,
+ "learning_rate": 0.0006,
+ "loss": 4.543115615844727,
+ "step": 600
+ },
+ {
+ "epoch": 8.349497597204019,
+ "grad_norm": 0.29171040654182434,
+ "learning_rate": 0.0006,
+ "loss": 4.597387313842773,
+ "step": 601
+ },
+ {
+ "epoch": 8.36347750109218,
+ "grad_norm": 0.3035930097103119,
+ "learning_rate": 0.0006,
+ "loss": 4.566247463226318,
+ "step": 602
+ },
+ {
+ "epoch": 8.37745740498034,
+ "grad_norm": 0.2826756238937378,
+ "learning_rate": 0.0006,
+ "loss": 4.57047176361084,
+ "step": 603
+ },
+ {
+ "epoch": 8.391437308868502,
+ "grad_norm": 0.2959657609462738,
+ "learning_rate": 0.0006,
+ "loss": 4.582820892333984,
+ "step": 604
+ },
+ {
+ "epoch": 8.405417212756662,
+ "grad_norm": 0.3180356025695801,
+ "learning_rate": 0.0006,
+ "loss": 4.5573272705078125,
+ "step": 605
+ },
+ {
+ "epoch": 8.419397116644824,
+ "grad_norm": 0.3617221713066101,
+ "learning_rate": 0.0006,
+ "loss": 4.593079090118408,
+ "step": 606
+ },
+ {
+ "epoch": 8.433377020532983,
+ "grad_norm": 0.35198062658309937,
+ "learning_rate": 0.0006,
+ "loss": 4.615298271179199,
+ "step": 607
+ },
+ {
+ "epoch": 8.447356924421145,
+ "grad_norm": 0.3944903314113617,
+ "learning_rate": 0.0006,
+ "loss": 4.561809539794922,
+ "step": 608
+ },
+ {
+ "epoch": 8.461336828309305,
+ "grad_norm": 0.4525868594646454,
+ "learning_rate": 0.0006,
+ "loss": 4.613105773925781,
+ "step": 609
+ },
+ {
+ "epoch": 8.475316732197467,
+ "grad_norm": 0.4915139079093933,
+ "learning_rate": 0.0006,
+ "loss": 4.566202163696289,
+ "step": 610
+ },
+ {
+ "epoch": 8.489296636085626,
+ "grad_norm": 0.49231988191604614,
+ "learning_rate": 0.0006,
+ "loss": 4.556222915649414,
+ "step": 611
+ },
+ {
+ "epoch": 8.503276539973788,
+ "grad_norm": 0.43036946654319763,
+ "learning_rate": 0.0006,
+ "loss": 4.55517578125,
+ "step": 612
+ },
+ {
+ "epoch": 8.517256443861948,
+ "grad_norm": 0.42405328154563904,
+ "learning_rate": 0.0006,
+ "loss": 4.574039936065674,
+ "step": 613
+ },
+ {
+ "epoch": 8.53123634775011,
+ "grad_norm": 0.3955961763858795,
+ "learning_rate": 0.0006,
+ "loss": 4.6082611083984375,
+ "step": 614
+ },
+ {
+ "epoch": 8.54521625163827,
+ "grad_norm": 0.4377101957798004,
+ "learning_rate": 0.0006,
+ "loss": 4.555740833282471,
+ "step": 615
+ },
+ {
+ "epoch": 8.55919615552643,
+ "grad_norm": 0.4601984918117523,
+ "learning_rate": 0.0006,
+ "loss": 4.553995132446289,
+ "step": 616
+ },
+ {
+ "epoch": 8.57317605941459,
+ "grad_norm": 0.42025700211524963,
+ "learning_rate": 0.0006,
+ "loss": 4.567340850830078,
+ "step": 617
+ },
+ {
+ "epoch": 8.587155963302752,
+ "grad_norm": 0.35569432377815247,
+ "learning_rate": 0.0006,
+ "loss": 4.570140361785889,
+ "step": 618
+ },
+ {
+ "epoch": 8.601135867190912,
+ "grad_norm": 0.37940406799316406,
+ "learning_rate": 0.0006,
+ "loss": 4.581291198730469,
+ "step": 619
+ },
+ {
+ "epoch": 8.615115771079074,
+ "grad_norm": 0.3658490777015686,
+ "learning_rate": 0.0006,
+ "loss": 4.55476188659668,
+ "step": 620
+ },
+ {
+ "epoch": 8.629095674967235,
+ "grad_norm": 0.2908247113227844,
+ "learning_rate": 0.0006,
+ "loss": 4.564087867736816,
+ "step": 621
+ },
+ {
+ "epoch": 8.643075578855395,
+ "grad_norm": 0.29961925745010376,
+ "learning_rate": 0.0006,
+ "loss": 4.556543350219727,
+ "step": 622
+ },
+ {
+ "epoch": 8.657055482743557,
+ "grad_norm": 0.3144846558570862,
+ "learning_rate": 0.0006,
+ "loss": 4.553670883178711,
+ "step": 623
+ },
+ {
+ "epoch": 8.671035386631717,
+ "grad_norm": 0.2845900356769562,
+ "learning_rate": 0.0006,
+ "loss": 4.567296981811523,
+ "step": 624
+ },
+ {
+ "epoch": 8.685015290519878,
+ "grad_norm": 0.253591388463974,
+ "learning_rate": 0.0006,
+ "loss": 4.554507255554199,
+ "step": 625
+ },
+ {
+ "epoch": 8.698995194408038,
+ "grad_norm": 0.2563088536262512,
+ "learning_rate": 0.0006,
+ "loss": 4.542218208312988,
+ "step": 626
+ },
+ {
+ "epoch": 8.7129750982962,
+ "grad_norm": 0.26058217883110046,
+ "learning_rate": 0.0006,
+ "loss": 4.535512447357178,
+ "step": 627
+ },
+ {
+ "epoch": 8.72695500218436,
+ "grad_norm": 0.20749829709529877,
+ "learning_rate": 0.0006,
+ "loss": 4.516959190368652,
+ "step": 628
+ },
+ {
+ "epoch": 8.740934906072521,
+ "grad_norm": 0.2034810334444046,
+ "learning_rate": 0.0006,
+ "loss": 4.55794095993042,
+ "step": 629
+ },
+ {
+ "epoch": 8.754914809960681,
+ "grad_norm": 0.18418121337890625,
+ "learning_rate": 0.0006,
+ "loss": 4.5421247482299805,
+ "step": 630
+ },
+ {
+ "epoch": 8.768894713848843,
+ "grad_norm": 0.20551933348178864,
+ "learning_rate": 0.0006,
+ "loss": 4.50805139541626,
+ "step": 631
+ },
+ {
+ "epoch": 8.782874617737003,
+ "grad_norm": 0.21615999937057495,
+ "learning_rate": 0.0006,
+ "loss": 4.520708084106445,
+ "step": 632
+ },
+ {
+ "epoch": 8.796854521625164,
+ "grad_norm": 0.24864810705184937,
+ "learning_rate": 0.0006,
+ "loss": 4.509330749511719,
+ "step": 633
+ },
+ {
+ "epoch": 8.810834425513324,
+ "grad_norm": 0.2573665380477905,
+ "learning_rate": 0.0006,
+ "loss": 4.531505584716797,
+ "step": 634
+ },
+ {
+ "epoch": 8.824814329401486,
+ "grad_norm": 0.22452878952026367,
+ "learning_rate": 0.0006,
+ "loss": 4.529216289520264,
+ "step": 635
+ },
+ {
+ "epoch": 8.838794233289645,
+ "grad_norm": 0.19727355241775513,
+ "learning_rate": 0.0006,
+ "loss": 4.519906520843506,
+ "step": 636
+ },
+ {
+ "epoch": 8.852774137177807,
+ "grad_norm": 0.19937913119792938,
+ "learning_rate": 0.0006,
+ "loss": 4.536892414093018,
+ "step": 637
+ },
+ {
+ "epoch": 8.866754041065967,
+ "grad_norm": 0.2070389986038208,
+ "learning_rate": 0.0006,
+ "loss": 4.51191520690918,
+ "step": 638
+ },
+ {
+ "epoch": 8.880733944954128,
+ "grad_norm": 0.2293873429298401,
+ "learning_rate": 0.0006,
+ "loss": 4.505377769470215,
+ "step": 639
+ },
+ {
+ "epoch": 8.89471384884229,
+ "grad_norm": 0.21285250782966614,
+ "learning_rate": 0.0006,
+ "loss": 4.5138959884643555,
+ "step": 640
+ },
+ {
+ "epoch": 8.90869375273045,
+ "grad_norm": 0.19487562775611877,
+ "learning_rate": 0.0006,
+ "loss": 4.506108283996582,
+ "step": 641
+ },
+ {
+ "epoch": 8.922673656618612,
+ "grad_norm": 0.21986965835094452,
+ "learning_rate": 0.0006,
+ "loss": 4.506397247314453,
+ "step": 642
+ },
+ {
+ "epoch": 8.936653560506771,
+ "grad_norm": 0.20763885974884033,
+ "learning_rate": 0.0006,
+ "loss": 4.508007049560547,
+ "step": 643
+ },
+ {
+ "epoch": 8.950633464394933,
+ "grad_norm": 0.22858479619026184,
+ "learning_rate": 0.0006,
+ "loss": 4.520846366882324,
+ "step": 644
+ },
+ {
+ "epoch": 8.964613368283093,
+ "grad_norm": 0.23923712968826294,
+ "learning_rate": 0.0006,
+ "loss": 4.535306930541992,
+ "step": 645
+ },
+ {
+ "epoch": 8.978593272171254,
+ "grad_norm": 0.23717579245567322,
+ "learning_rate": 0.0006,
+ "loss": 4.485929489135742,
+ "step": 646
+ },
+ {
+ "epoch": 8.992573176059414,
+ "grad_norm": 0.24033977091312408,
+ "learning_rate": 0.0006,
+ "loss": 4.508999824523926,
+ "step": 647
+ },
+ {
+ "epoch": 9.0,
+ "grad_norm": 0.22432062029838562,
+ "learning_rate": 0.0006,
+ "loss": 4.473136901855469,
+ "step": 648
+ },
+ {
+ "epoch": 9.0,
+ "eval_loss": 4.735903263092041,
+ "eval_runtime": 44.2163,
+ "eval_samples_per_second": 55.228,
+ "eval_steps_per_second": 3.46,
+ "step": 648
+ },
+ {
+ "epoch": 9.013979903888162,
+ "grad_norm": 0.22491489350795746,
+ "learning_rate": 0.0006,
+ "loss": 4.468614101409912,
+ "step": 649
+ },
+ {
+ "epoch": 9.027959807776321,
+ "grad_norm": 0.255759060382843,
+ "learning_rate": 0.0006,
+ "loss": 4.516196250915527,
+ "step": 650
+ },
+ {
+ "epoch": 9.041939711664483,
+ "grad_norm": 0.2591100335121155,
+ "learning_rate": 0.0006,
+ "loss": 4.478276252746582,
+ "step": 651
+ },
+ {
+ "epoch": 9.055919615552643,
+ "grad_norm": 0.30472296476364136,
+ "learning_rate": 0.0006,
+ "loss": 4.479726791381836,
+ "step": 652
+ },
+ {
+ "epoch": 9.069899519440805,
+ "grad_norm": 0.2840559780597687,
+ "learning_rate": 0.0006,
+ "loss": 4.4437384605407715,
+ "step": 653
+ },
+ {
+ "epoch": 9.083879423328964,
+ "grad_norm": 0.2695577144622803,
+ "learning_rate": 0.0006,
+ "loss": 4.476065635681152,
+ "step": 654
+ },
+ {
+ "epoch": 9.097859327217126,
+ "grad_norm": 0.27912381291389465,
+ "learning_rate": 0.0006,
+ "loss": 4.484747409820557,
+ "step": 655
+ },
+ {
+ "epoch": 9.111839231105286,
+ "grad_norm": 0.3091907501220703,
+ "learning_rate": 0.0006,
+ "loss": 4.449443817138672,
+ "step": 656
+ },
+ {
+ "epoch": 9.125819134993447,
+ "grad_norm": 0.30756646394729614,
+ "learning_rate": 0.0006,
+ "loss": 4.496490001678467,
+ "step": 657
+ },
+ {
+ "epoch": 9.139799038881607,
+ "grad_norm": 0.305698037147522,
+ "learning_rate": 0.0006,
+ "loss": 4.466765880584717,
+ "step": 658
+ },
+ {
+ "epoch": 9.153778942769769,
+ "grad_norm": 0.3031201660633087,
+ "learning_rate": 0.0006,
+ "loss": 4.462430953979492,
+ "step": 659
+ },
+ {
+ "epoch": 9.167758846657929,
+ "grad_norm": 0.32725608348846436,
+ "learning_rate": 0.0006,
+ "loss": 4.479879379272461,
+ "step": 660
+ },
+ {
+ "epoch": 9.18173875054609,
+ "grad_norm": 0.31773585081100464,
+ "learning_rate": 0.0006,
+ "loss": 4.473912239074707,
+ "step": 661
+ },
+ {
+ "epoch": 9.19571865443425,
+ "grad_norm": 0.30025365948677063,
+ "learning_rate": 0.0006,
+ "loss": 4.476703643798828,
+ "step": 662
+ },
+ {
+ "epoch": 9.209698558322412,
+ "grad_norm": 0.3177371025085449,
+ "learning_rate": 0.0006,
+ "loss": 4.439765930175781,
+ "step": 663
+ },
+ {
+ "epoch": 9.223678462210572,
+ "grad_norm": 0.3060745894908905,
+ "learning_rate": 0.0006,
+ "loss": 4.487849235534668,
+ "step": 664
+ },
+ {
+ "epoch": 9.237658366098733,
+ "grad_norm": 0.33287373185157776,
+ "learning_rate": 0.0006,
+ "loss": 4.443496227264404,
+ "step": 665
+ },
+ {
+ "epoch": 9.251638269986893,
+ "grad_norm": 0.3758000433444977,
+ "learning_rate": 0.0006,
+ "loss": 4.478017330169678,
+ "step": 666
+ },
+ {
+ "epoch": 9.265618173875055,
+ "grad_norm": 0.32124510407447815,
+ "learning_rate": 0.0006,
+ "loss": 4.4092206954956055,
+ "step": 667
+ },
+ {
+ "epoch": 9.279598077763215,
+ "grad_norm": 0.2786794602870941,
+ "learning_rate": 0.0006,
+ "loss": 4.432734489440918,
+ "step": 668
+ },
+ {
+ "epoch": 9.293577981651376,
+ "grad_norm": 0.35042962431907654,
+ "learning_rate": 0.0006,
+ "loss": 4.462737083435059,
+ "step": 669
+ },
+ {
+ "epoch": 9.307557885539538,
+ "grad_norm": 0.4080469310283661,
+ "learning_rate": 0.0006,
+ "loss": 4.429462432861328,
+ "step": 670
+ },
+ {
+ "epoch": 9.321537789427698,
+ "grad_norm": 0.465158075094223,
+ "learning_rate": 0.0006,
+ "loss": 4.465776443481445,
+ "step": 671
+ },
+ {
+ "epoch": 9.33551769331586,
+ "grad_norm": 0.44833582639694214,
+ "learning_rate": 0.0006,
+ "loss": 4.454195976257324,
+ "step": 672
+ },
+ {
+ "epoch": 9.349497597204019,
+ "grad_norm": 0.451052188873291,
+ "learning_rate": 0.0006,
+ "loss": 4.456139087677002,
+ "step": 673
+ },
+ {
+ "epoch": 9.36347750109218,
+ "grad_norm": 0.3759656250476837,
+ "learning_rate": 0.0006,
+ "loss": 4.461119651794434,
+ "step": 674
+ },
+ {
+ "epoch": 9.37745740498034,
+ "grad_norm": 0.514560341835022,
+ "learning_rate": 0.0006,
+ "loss": 4.49595832824707,
+ "step": 675
+ },
+ {
+ "epoch": 9.391437308868502,
+ "grad_norm": 0.5650647282600403,
+ "learning_rate": 0.0006,
+ "loss": 4.461362838745117,
+ "step": 676
+ },
+ {
+ "epoch": 9.405417212756662,
+ "grad_norm": 0.4218835234642029,
+ "learning_rate": 0.0006,
+ "loss": 4.469146728515625,
+ "step": 677
+ },
+ {
+ "epoch": 9.419397116644824,
+ "grad_norm": 0.4169512689113617,
+ "learning_rate": 0.0006,
+ "loss": 4.470132827758789,
+ "step": 678
+ },
+ {
+ "epoch": 9.433377020532983,
+ "grad_norm": 0.3772219717502594,
+ "learning_rate": 0.0006,
+ "loss": 4.4742608070373535,
+ "step": 679
+ },
+ {
+ "epoch": 9.447356924421145,
+ "grad_norm": 0.35755908489227295,
+ "learning_rate": 0.0006,
+ "loss": 4.461928367614746,
+ "step": 680
+ },
+ {
+ "epoch": 9.461336828309305,
+ "grad_norm": 0.3141227662563324,
+ "learning_rate": 0.0006,
+ "loss": 4.491983413696289,
+ "step": 681
+ },
+ {
+ "epoch": 9.475316732197467,
+ "grad_norm": 0.282461017370224,
+ "learning_rate": 0.0006,
+ "loss": 4.460200309753418,
+ "step": 682
+ },
+ {
+ "epoch": 9.489296636085626,
+ "grad_norm": 0.27174389362335205,
+ "learning_rate": 0.0006,
+ "loss": 4.416125297546387,
+ "step": 683
+ },
+ {
+ "epoch": 9.503276539973788,
+ "grad_norm": 0.24570637941360474,
+ "learning_rate": 0.0006,
+ "loss": 4.4451093673706055,
+ "step": 684
+ },
+ {
+ "epoch": 9.517256443861948,
+ "grad_norm": 0.2741486132144928,
+ "learning_rate": 0.0006,
+ "loss": 4.453263282775879,
+ "step": 685
+ },
+ {
+ "epoch": 9.53123634775011,
+ "grad_norm": 0.24753718078136444,
+ "learning_rate": 0.0006,
+ "loss": 4.483033180236816,
+ "step": 686
+ },
+ {
+ "epoch": 9.54521625163827,
+ "grad_norm": 0.24288412928581238,
+ "learning_rate": 0.0006,
+ "loss": 4.452961444854736,
+ "step": 687
+ },
+ {
+ "epoch": 9.55919615552643,
+ "grad_norm": 0.21554753184318542,
+ "learning_rate": 0.0006,
+ "loss": 4.476005554199219,
+ "step": 688
+ },
+ {
+ "epoch": 9.57317605941459,
+ "grad_norm": 0.22775942087173462,
+ "learning_rate": 0.0006,
+ "loss": 4.4479193687438965,
+ "step": 689
+ },
+ {
+ "epoch": 9.587155963302752,
+ "grad_norm": 0.2610701024532318,
+ "learning_rate": 0.0006,
+ "loss": 4.474987506866455,
+ "step": 690
+ },
+ {
+ "epoch": 9.601135867190912,
+ "grad_norm": 0.2394690215587616,
+ "learning_rate": 0.0006,
+ "loss": 4.444857597351074,
+ "step": 691
+ },
+ {
+ "epoch": 9.615115771079074,
+ "grad_norm": 0.20868559181690216,
+ "learning_rate": 0.0006,
+ "loss": 4.4220709800720215,
+ "step": 692
+ },
+ {
+ "epoch": 9.629095674967235,
+ "grad_norm": 0.21869882941246033,
+ "learning_rate": 0.0006,
+ "loss": 4.451737403869629,
+ "step": 693
+ },
+ {
+ "epoch": 9.643075578855395,
+ "grad_norm": 0.1802823394536972,
+ "learning_rate": 0.0006,
+ "loss": 4.409085273742676,
+ "step": 694
+ },
+ {
+ "epoch": 9.657055482743557,
+ "grad_norm": 0.17046281695365906,
+ "learning_rate": 0.0006,
+ "loss": 4.424643516540527,
+ "step": 695
+ },
+ {
+ "epoch": 9.671035386631717,
+ "grad_norm": 0.19561922550201416,
+ "learning_rate": 0.0006,
+ "loss": 4.412302017211914,
+ "step": 696
+ },
+ {
+ "epoch": 9.685015290519878,
+ "grad_norm": 0.21928799152374268,
+ "learning_rate": 0.0006,
+ "loss": 4.427582263946533,
+ "step": 697
+ },
+ {
+ "epoch": 9.698995194408038,
+ "grad_norm": 0.244873046875,
+ "learning_rate": 0.0006,
+ "loss": 4.431827545166016,
+ "step": 698
+ },
+ {
+ "epoch": 9.7129750982962,
+ "grad_norm": 0.2799488604068756,
+ "learning_rate": 0.0006,
+ "loss": 4.407991409301758,
+ "step": 699
+ },
+ {
+ "epoch": 9.72695500218436,
+ "grad_norm": 0.2699538767337799,
+ "learning_rate": 0.0006,
+ "loss": 4.412313461303711,
+ "step": 700
+ },
+ {
+ "epoch": 9.740934906072521,
+ "grad_norm": 0.22293835878372192,
+ "learning_rate": 0.0006,
+ "loss": 4.423369884490967,
+ "step": 701
+ },
+ {
+ "epoch": 9.754914809960681,
+ "grad_norm": 0.21554361283779144,
+ "learning_rate": 0.0006,
+ "loss": 4.42026948928833,
+ "step": 702
+ },
+ {
+ "epoch": 9.768894713848843,
+ "grad_norm": 0.22135840356349945,
+ "learning_rate": 0.0006,
+ "loss": 4.400010108947754,
+ "step": 703
+ },
+ {
+ "epoch": 9.782874617737003,
+ "grad_norm": 0.2169952541589737,
+ "learning_rate": 0.0006,
+ "loss": 4.394582271575928,
+ "step": 704
+ },
+ {
+ "epoch": 9.796854521625164,
+ "grad_norm": 0.18913042545318604,
+ "learning_rate": 0.0006,
+ "loss": 4.395880699157715,
+ "step": 705
+ },
+ {
+ "epoch": 9.810834425513324,
+ "grad_norm": 0.191524475812912,
+ "learning_rate": 0.0006,
+ "loss": 4.378962516784668,
+ "step": 706
+ },
+ {
+ "epoch": 9.824814329401486,
+ "grad_norm": 0.20057640969753265,
+ "learning_rate": 0.0006,
+ "loss": 4.431066513061523,
+ "step": 707
+ },
+ {
+ "epoch": 9.838794233289645,
+ "grad_norm": 0.21670377254486084,
+ "learning_rate": 0.0006,
+ "loss": 4.364682197570801,
+ "step": 708
+ },
+ {
+ "epoch": 9.852774137177807,
+ "grad_norm": 0.21653099358081818,
+ "learning_rate": 0.0006,
+ "loss": 4.4050445556640625,
+ "step": 709
+ },
+ {
+ "epoch": 9.866754041065967,
+ "grad_norm": 0.2217673808336258,
+ "learning_rate": 0.0006,
+ "loss": 4.423664093017578,
+ "step": 710
+ },
+ {
+ "epoch": 9.880733944954128,
+ "grad_norm": 0.251078337430954,
+ "learning_rate": 0.0006,
+ "loss": 4.405768394470215,
+ "step": 711
+ },
+ {
+ "epoch": 9.89471384884229,
+ "grad_norm": 0.28962627053260803,
+ "learning_rate": 0.0006,
+ "loss": 4.421207427978516,
+ "step": 712
+ },
+ {
+ "epoch": 9.90869375273045,
+ "grad_norm": 0.3478074371814728,
+ "learning_rate": 0.0006,
+ "loss": 4.414942741394043,
+ "step": 713
+ },
+ {
+ "epoch": 9.922673656618612,
+ "grad_norm": 0.40396368503570557,
+ "learning_rate": 0.0006,
+ "loss": 4.415163993835449,
+ "step": 714
+ },
+ {
+ "epoch": 9.936653560506771,
+ "grad_norm": 0.3689858019351959,
+ "learning_rate": 0.0006,
+ "loss": 4.381345272064209,
+ "step": 715
+ },
+ {
+ "epoch": 9.950633464394933,
+ "grad_norm": 0.344868004322052,
+ "learning_rate": 0.0006,
+ "loss": 4.433088302612305,
+ "step": 716
+ },
+ {
+ "epoch": 9.964613368283093,
+ "grad_norm": 0.37976378202438354,
+ "learning_rate": 0.0006,
+ "loss": 4.431371212005615,
+ "step": 717
+ },
+ {
+ "epoch": 9.978593272171254,
+ "grad_norm": 0.4354130029678345,
+ "learning_rate": 0.0006,
+ "loss": 4.434148788452148,
+ "step": 718
+ },
+ {
+ "epoch": 9.992573176059414,
+ "grad_norm": 0.35859373211860657,
+ "learning_rate": 0.0006,
+ "loss": 4.428055763244629,
+ "step": 719
+ },
+ {
+ "epoch": 10.0,
+ "grad_norm": 0.3365023732185364,
+ "learning_rate": 0.0006,
+ "loss": 4.3888654708862305,
+ "step": 720
+ },
+ {
+ "epoch": 10.0,
+ "eval_loss": 4.638620853424072,
+ "eval_runtime": 44.3054,
+ "eval_samples_per_second": 55.117,
+ "eval_steps_per_second": 3.453,
+ "step": 720
+ },
+ {
+ "epoch": 10.013979903888162,
+ "grad_norm": 0.3267960250377655,
+ "learning_rate": 0.0006,
+ "loss": 4.386068344116211,
+ "step": 721
+ },
+ {
+ "epoch": 10.027959807776321,
+ "grad_norm": 0.33440953493118286,
+ "learning_rate": 0.0006,
+ "loss": 4.397515296936035,
+ "step": 722
+ },
+ {
+ "epoch": 10.041939711664483,
+ "grad_norm": 0.30047518014907837,
+ "learning_rate": 0.0006,
+ "loss": 4.398358345031738,
+ "step": 723
+ },
+ {
+ "epoch": 10.055919615552643,
+ "grad_norm": 0.2912217378616333,
+ "learning_rate": 0.0006,
+ "loss": 4.341166973114014,
+ "step": 724
+ },
+ {
+ "epoch": 10.069899519440805,
+ "grad_norm": 0.3199564218521118,
+ "learning_rate": 0.0006,
+ "loss": 4.388717174530029,
+ "step": 725
+ },
+ {
+ "epoch": 10.083879423328964,
+ "grad_norm": 0.2765582799911499,
+ "learning_rate": 0.0006,
+ "loss": 4.392992973327637,
+ "step": 726
+ },
+ {
+ "epoch": 10.097859327217126,
+ "grad_norm": 0.27138450741767883,
+ "learning_rate": 0.0006,
+ "loss": 4.382307529449463,
+ "step": 727
+ },
+ {
+ "epoch": 10.111839231105286,
+ "grad_norm": 0.29230645298957825,
+ "learning_rate": 0.0006,
+ "loss": 4.357486724853516,
+ "step": 728
+ },
+ {
+ "epoch": 10.125819134993447,
+ "grad_norm": 0.3127598464488983,
+ "learning_rate": 0.0006,
+ "loss": 4.39072322845459,
+ "step": 729
+ },
+ {
+ "epoch": 10.139799038881607,
+ "grad_norm": 0.3230913281440735,
+ "learning_rate": 0.0006,
+ "loss": 4.35037899017334,
+ "step": 730
+ },
+ {
+ "epoch": 10.153778942769769,
+ "grad_norm": 0.333675354719162,
+ "learning_rate": 0.0006,
+ "loss": 4.378030776977539,
+ "step": 731
+ },
+ {
+ "epoch": 10.167758846657929,
+ "grad_norm": 0.30325770378112793,
+ "learning_rate": 0.0006,
+ "loss": 4.372736930847168,
+ "step": 732
+ },
+ {
+ "epoch": 10.18173875054609,
+ "grad_norm": 0.2888163924217224,
+ "learning_rate": 0.0006,
+ "loss": 4.397604942321777,
+ "step": 733
+ },
+ {
+ "epoch": 10.19571865443425,
+ "grad_norm": 0.3378832936286926,
+ "learning_rate": 0.0006,
+ "loss": 4.395705223083496,
+ "step": 734
+ },
+ {
+ "epoch": 10.209698558322412,
+ "grad_norm": 0.30980268120765686,
+ "learning_rate": 0.0006,
+ "loss": 4.3861212730407715,
+ "step": 735
+ },
+ {
+ "epoch": 10.223678462210572,
+ "grad_norm": 0.2965783178806305,
+ "learning_rate": 0.0006,
+ "loss": 4.394898414611816,
+ "step": 736
+ },
+ {
+ "epoch": 10.237658366098733,
+ "grad_norm": 0.2818217873573303,
+ "learning_rate": 0.0006,
+ "loss": 4.36171817779541,
+ "step": 737
+ },
+ {
+ "epoch": 10.251638269986893,
+ "grad_norm": 0.2418123185634613,
+ "learning_rate": 0.0006,
+ "loss": 4.370945930480957,
+ "step": 738
+ },
+ {
+ "epoch": 10.265618173875055,
+ "grad_norm": 0.22372810542583466,
+ "learning_rate": 0.0006,
+ "loss": 4.354825973510742,
+ "step": 739
+ },
+ {
+ "epoch": 10.279598077763215,
+ "grad_norm": 0.238066166639328,
+ "learning_rate": 0.0006,
+ "loss": 4.376237392425537,
+ "step": 740
+ },
+ {
+ "epoch": 10.293577981651376,
+ "grad_norm": 0.22352449595928192,
+ "learning_rate": 0.0006,
+ "loss": 4.317084312438965,
+ "step": 741
+ },
+ {
+ "epoch": 10.307557885539538,
+ "grad_norm": 0.21685205399990082,
+ "learning_rate": 0.0006,
+ "loss": 4.335271835327148,
+ "step": 742
+ },
+ {
+ "epoch": 10.321537789427698,
+ "grad_norm": 0.19584694504737854,
+ "learning_rate": 0.0006,
+ "loss": 4.357963562011719,
+ "step": 743
+ },
+ {
+ "epoch": 10.33551769331586,
+ "grad_norm": 0.20373336970806122,
+ "learning_rate": 0.0006,
+ "loss": 4.401963233947754,
+ "step": 744
+ },
+ {
+ "epoch": 10.349497597204019,
+ "grad_norm": 0.2247837632894516,
+ "learning_rate": 0.0006,
+ "loss": 4.357202529907227,
+ "step": 745
+ },
+ {
+ "epoch": 10.36347750109218,
+ "grad_norm": 0.2416863739490509,
+ "learning_rate": 0.0006,
+ "loss": 4.364739418029785,
+ "step": 746
+ },
+ {
+ "epoch": 10.37745740498034,
+ "grad_norm": 0.22281162440776825,
+ "learning_rate": 0.0006,
+ "loss": 4.351607799530029,
+ "step": 747
+ },
+ {
+ "epoch": 10.391437308868502,
+ "grad_norm": 0.20751096308231354,
+ "learning_rate": 0.0006,
+ "loss": 4.370017051696777,
+ "step": 748
+ },
+ {
+ "epoch": 10.405417212756662,
+ "grad_norm": 0.19178363680839539,
+ "learning_rate": 0.0006,
+ "loss": 4.360328674316406,
+ "step": 749
+ },
+ {
+ "epoch": 10.419397116644824,
+ "grad_norm": 0.20534078776836395,
+ "learning_rate": 0.0006,
+ "loss": 4.3735432624816895,
+ "step": 750
+ },
+ {
+ "epoch": 10.433377020532983,
+ "grad_norm": 0.20533937215805054,
+ "learning_rate": 0.0006,
+ "loss": 4.326902389526367,
+ "step": 751
+ },
+ {
+ "epoch": 10.447356924421145,
+ "grad_norm": 0.22057875990867615,
+ "learning_rate": 0.0006,
+ "loss": 4.360934257507324,
+ "step": 752
+ },
+ {
+ "epoch": 10.461336828309305,
+ "grad_norm": 0.25568997859954834,
+ "learning_rate": 0.0006,
+ "loss": 4.345063209533691,
+ "step": 753
+ },
+ {
+ "epoch": 10.475316732197467,
+ "grad_norm": 0.31471487879753113,
+ "learning_rate": 0.0006,
+ "loss": 4.324014186859131,
+ "step": 754
+ },
+ {
+ "epoch": 10.489296636085626,
+ "grad_norm": 0.2716822624206543,
+ "learning_rate": 0.0006,
+ "loss": 4.318459510803223,
+ "step": 755
+ },
+ {
+ "epoch": 10.503276539973788,
+ "grad_norm": 0.19552019238471985,
+ "learning_rate": 0.0006,
+ "loss": 4.3367509841918945,
+ "step": 756
+ },
+ {
+ "epoch": 10.517256443861948,
+ "grad_norm": 0.22822986543178558,
+ "learning_rate": 0.0006,
+ "loss": 4.328935623168945,
+ "step": 757
+ },
+ {
+ "epoch": 10.53123634775011,
+ "grad_norm": 0.22282928228378296,
+ "learning_rate": 0.0006,
+ "loss": 4.358272552490234,
+ "step": 758
+ },
+ {
+ "epoch": 10.54521625163827,
+ "grad_norm": 0.23303352296352386,
+ "learning_rate": 0.0006,
+ "loss": 4.336641311645508,
+ "step": 759
+ },
+ {
+ "epoch": 10.55919615552643,
+ "grad_norm": 0.29474690556526184,
+ "learning_rate": 0.0006,
+ "loss": 4.343188285827637,
+ "step": 760
+ },
+ {
+ "epoch": 10.57317605941459,
+ "grad_norm": 0.36269059777259827,
+ "learning_rate": 0.0006,
+ "loss": 4.313019752502441,
+ "step": 761
+ },
+ {
+ "epoch": 10.587155963302752,
+ "grad_norm": 0.3742978870868683,
+ "learning_rate": 0.0006,
+ "loss": 4.361410140991211,
+ "step": 762
+ },
+ {
+ "epoch": 10.601135867190912,
+ "grad_norm": 0.34412163496017456,
+ "learning_rate": 0.0006,
+ "loss": 4.321324825286865,
+ "step": 763
+ },
+ {
+ "epoch": 10.615115771079074,
+ "grad_norm": 0.3464587926864624,
+ "learning_rate": 0.0006,
+ "loss": 4.341907501220703,
+ "step": 764
+ },
+ {
+ "epoch": 10.629095674967235,
+ "grad_norm": 0.3318136930465698,
+ "learning_rate": 0.0006,
+ "loss": 4.329099655151367,
+ "step": 765
+ },
+ {
+ "epoch": 10.643075578855395,
+ "grad_norm": 0.31292903423309326,
+ "learning_rate": 0.0006,
+ "loss": 4.332015037536621,
+ "step": 766
+ },
+ {
+ "epoch": 10.657055482743557,
+ "grad_norm": 0.2904847264289856,
+ "learning_rate": 0.0006,
+ "loss": 4.341764450073242,
+ "step": 767
+ },
+ {
+ "epoch": 10.671035386631717,
+ "grad_norm": 0.3287692666053772,
+ "learning_rate": 0.0006,
+ "loss": 4.342329025268555,
+ "step": 768
+ },
+ {
+ "epoch": 10.685015290519878,
+ "grad_norm": 0.3115365207195282,
+ "learning_rate": 0.0006,
+ "loss": 4.3530073165893555,
+ "step": 769
+ },
+ {
+ "epoch": 10.698995194408038,
+ "grad_norm": 0.24133864045143127,
+ "learning_rate": 0.0006,
+ "loss": 4.321497917175293,
+ "step": 770
+ },
+ {
+ "epoch": 10.7129750982962,
+ "grad_norm": 0.24658630788326263,
+ "learning_rate": 0.0006,
+ "loss": 4.32669734954834,
+ "step": 771
+ },
+ {
+ "epoch": 10.72695500218436,
+ "grad_norm": 0.2342129647731781,
+ "learning_rate": 0.0006,
+ "loss": 4.345459461212158,
+ "step": 772
+ },
+ {
+ "epoch": 10.740934906072521,
+ "grad_norm": 0.23360829055309296,
+ "learning_rate": 0.0006,
+ "loss": 4.33249568939209,
+ "step": 773
+ },
+ {
+ "epoch": 10.754914809960681,
+ "grad_norm": 0.24314677715301514,
+ "learning_rate": 0.0006,
+ "loss": 4.30499792098999,
+ "step": 774
+ },
+ {
+ "epoch": 10.768894713848843,
+ "grad_norm": 0.22105181217193604,
+ "learning_rate": 0.0006,
+ "loss": 4.33706521987915,
+ "step": 775
+ },
+ {
+ "epoch": 10.782874617737003,
+ "grad_norm": 0.23307174444198608,
+ "learning_rate": 0.0006,
+ "loss": 4.320387840270996,
+ "step": 776
+ },
+ {
+ "epoch": 10.796854521625164,
+ "grad_norm": 0.24946169555187225,
+ "learning_rate": 0.0006,
+ "loss": 4.316012382507324,
+ "step": 777
+ },
+ {
+ "epoch": 10.810834425513324,
+ "grad_norm": 0.26023536920547485,
+ "learning_rate": 0.0006,
+ "loss": 4.315193176269531,
+ "step": 778
+ },
+ {
+ "epoch": 10.824814329401486,
+ "grad_norm": 0.2688547968864441,
+ "learning_rate": 0.0006,
+ "loss": 4.3243255615234375,
+ "step": 779
+ },
+ {
+ "epoch": 10.838794233289645,
+ "grad_norm": 0.28188297152519226,
+ "learning_rate": 0.0006,
+ "loss": 4.3202972412109375,
+ "step": 780
+ },
+ {
+ "epoch": 10.852774137177807,
+ "grad_norm": 0.2890053689479828,
+ "learning_rate": 0.0006,
+ "loss": 4.318799018859863,
+ "step": 781
+ },
+ {
+ "epoch": 10.866754041065967,
+ "grad_norm": 0.2914353013038635,
+ "learning_rate": 0.0006,
+ "loss": 4.314262390136719,
+ "step": 782
+ },
+ {
+ "epoch": 10.880733944954128,
+ "grad_norm": 0.3145572543144226,
+ "learning_rate": 0.0006,
+ "loss": 4.339262008666992,
+ "step": 783
+ },
+ {
+ "epoch": 10.89471384884229,
+ "grad_norm": 0.323062002658844,
+ "learning_rate": 0.0006,
+ "loss": 4.354856491088867,
+ "step": 784
+ },
+ {
+ "epoch": 10.90869375273045,
+ "grad_norm": 0.32741227746009827,
+ "learning_rate": 0.0006,
+ "loss": 4.325577735900879,
+ "step": 785
+ },
+ {
+ "epoch": 10.922673656618612,
+ "grad_norm": 0.2855733036994934,
+ "learning_rate": 0.0006,
+ "loss": 4.324419021606445,
+ "step": 786
+ },
+ {
+ "epoch": 10.936653560506771,
+ "grad_norm": 0.2969444990158081,
+ "learning_rate": 0.0006,
+ "loss": 4.320681095123291,
+ "step": 787
+ },
+ {
+ "epoch": 10.950633464394933,
+ "grad_norm": 0.28108111023902893,
+ "learning_rate": 0.0006,
+ "loss": 4.32673454284668,
+ "step": 788
+ },
+ {
+ "epoch": 10.964613368283093,
+ "grad_norm": 0.2537972629070282,
+ "learning_rate": 0.0006,
+ "loss": 4.3197021484375,
+ "step": 789
+ },
+ {
+ "epoch": 10.978593272171254,
+ "grad_norm": 0.2354544699192047,
+ "learning_rate": 0.0006,
+ "loss": 4.3354973793029785,
+ "step": 790
+ },
+ {
+ "epoch": 10.992573176059414,
+ "grad_norm": 0.26195117831230164,
+ "learning_rate": 0.0006,
+ "loss": 4.3172526359558105,
+ "step": 791
+ },
+ {
+ "epoch": 11.0,
+ "grad_norm": 0.27089616656303406,
+ "learning_rate": 0.0006,
+ "loss": 4.324293613433838,
+ "step": 792
+ },
+ {
+ "epoch": 11.0,
+ "eval_loss": 4.531813621520996,
+ "eval_runtime": 44.1656,
+ "eval_samples_per_second": 55.292,
+ "eval_steps_per_second": 3.464,
+ "step": 792
+ },
+ {
+ "epoch": 11.013979903888162,
+ "grad_norm": 0.2526339590549469,
+ "learning_rate": 0.0006,
+ "loss": 4.287600517272949,
+ "step": 793
+ },
+ {
+ "epoch": 11.027959807776321,
+ "grad_norm": 0.24318458139896393,
+ "learning_rate": 0.0006,
+ "loss": 4.268078327178955,
+ "step": 794
+ },
+ {
+ "epoch": 11.041939711664483,
+ "grad_norm": 0.2450830638408661,
+ "learning_rate": 0.0006,
+ "loss": 4.265467643737793,
+ "step": 795
+ },
+ {
+ "epoch": 11.055919615552643,
+ "grad_norm": 0.23963099718093872,
+ "learning_rate": 0.0006,
+ "loss": 4.267931938171387,
+ "step": 796
+ },
+ {
+ "epoch": 11.069899519440805,
+ "grad_norm": 0.2488657534122467,
+ "learning_rate": 0.0006,
+ "loss": 4.30262565612793,
+ "step": 797
+ },
+ {
+ "epoch": 11.083879423328964,
+ "grad_norm": 0.2319781631231308,
+ "learning_rate": 0.0006,
+ "loss": 4.28665828704834,
+ "step": 798
+ },
+ {
+ "epoch": 11.097859327217126,
+ "grad_norm": 0.2425263375043869,
+ "learning_rate": 0.0006,
+ "loss": 4.284830570220947,
+ "step": 799
+ },
+ {
+ "epoch": 11.111839231105286,
+ "grad_norm": 0.23096567392349243,
+ "learning_rate": 0.0006,
+ "loss": 4.2817206382751465,
+ "step": 800
+ },
+ {
+ "epoch": 11.125819134993447,
+ "grad_norm": 0.2846364676952362,
+ "learning_rate": 0.0006,
+ "loss": 4.276104927062988,
+ "step": 801
+ },
+ {
+ "epoch": 11.139799038881607,
+ "grad_norm": 0.2984965741634369,
+ "learning_rate": 0.0006,
+ "loss": 4.2909650802612305,
+ "step": 802
+ },
+ {
+ "epoch": 11.153778942769769,
+ "grad_norm": 0.2841213643550873,
+ "learning_rate": 0.0006,
+ "loss": 4.283358097076416,
+ "step": 803
+ },
+ {
+ "epoch": 11.167758846657929,
+ "grad_norm": 0.29192933440208435,
+ "learning_rate": 0.0006,
+ "loss": 4.267040729522705,
+ "step": 804
+ },
+ {
+ "epoch": 11.18173875054609,
+ "grad_norm": 0.3254184126853943,
+ "learning_rate": 0.0006,
+ "loss": 4.301564693450928,
+ "step": 805
+ },
+ {
+ "epoch": 11.19571865443425,
+ "grad_norm": 0.3347095847129822,
+ "learning_rate": 0.0006,
+ "loss": 4.271395683288574,
+ "step": 806
+ },
+ {
+ "epoch": 11.209698558322412,
+ "grad_norm": 0.25609350204467773,
+ "learning_rate": 0.0006,
+ "loss": 4.2963056564331055,
+ "step": 807
+ },
+ {
+ "epoch": 11.223678462210572,
+ "grad_norm": 0.29272061586380005,
+ "learning_rate": 0.0006,
+ "loss": 4.298416614532471,
+ "step": 808
+ },
+ {
+ "epoch": 11.237658366098733,
+ "grad_norm": 0.32179465889930725,
+ "learning_rate": 0.0006,
+ "loss": 4.294036865234375,
+ "step": 809
+ },
+ {
+ "epoch": 11.251638269986893,
+ "grad_norm": 0.3336549401283264,
+ "learning_rate": 0.0006,
+ "loss": 4.291993141174316,
+ "step": 810
+ },
+ {
+ "epoch": 11.265618173875055,
+ "grad_norm": 0.32273536920547485,
+ "learning_rate": 0.0006,
+ "loss": 4.311004638671875,
+ "step": 811
+ },
+ {
+ "epoch": 11.279598077763215,
+ "grad_norm": 0.3575087785720825,
+ "learning_rate": 0.0006,
+ "loss": 4.300217628479004,
+ "step": 812
+ },
+ {
+ "epoch": 11.293577981651376,
+ "grad_norm": 0.3332885205745697,
+ "learning_rate": 0.0006,
+ "loss": 4.278337478637695,
+ "step": 813
+ },
+ {
+ "epoch": 11.307557885539538,
+ "grad_norm": 0.31440407037734985,
+ "learning_rate": 0.0006,
+ "loss": 4.273826599121094,
+ "step": 814
+ },
+ {
+ "epoch": 11.321537789427698,
+ "grad_norm": 0.29822009801864624,
+ "learning_rate": 0.0006,
+ "loss": 4.284292221069336,
+ "step": 815
+ },
+ {
+ "epoch": 11.33551769331586,
+ "grad_norm": 0.30695512890815735,
+ "learning_rate": 0.0006,
+ "loss": 4.2831926345825195,
+ "step": 816
+ },
+ {
+ "epoch": 11.349497597204019,
+ "grad_norm": 0.30576950311660767,
+ "learning_rate": 0.0006,
+ "loss": 4.277133464813232,
+ "step": 817
+ },
+ {
+ "epoch": 11.36347750109218,
+ "grad_norm": 0.2859647870063782,
+ "learning_rate": 0.0006,
+ "loss": 4.3130106925964355,
+ "step": 818
+ },
+ {
+ "epoch": 11.37745740498034,
+ "grad_norm": 0.32417574524879456,
+ "learning_rate": 0.0006,
+ "loss": 4.310303211212158,
+ "step": 819
+ },
+ {
+ "epoch": 11.391437308868502,
+ "grad_norm": 0.3512463867664337,
+ "learning_rate": 0.0006,
+ "loss": 4.287015438079834,
+ "step": 820
+ },
+ {
+ "epoch": 11.405417212756662,
+ "grad_norm": 0.32578620314598083,
+ "learning_rate": 0.0006,
+ "loss": 4.2957940101623535,
+ "step": 821
+ },
+ {
+ "epoch": 11.419397116644824,
+ "grad_norm": 0.287949800491333,
+ "learning_rate": 0.0006,
+ "loss": 4.2881879806518555,
+ "step": 822
+ },
+ {
+ "epoch": 11.433377020532983,
+ "grad_norm": 0.28048595786094666,
+ "learning_rate": 0.0006,
+ "loss": 4.274960517883301,
+ "step": 823
+ },
+ {
+ "epoch": 11.447356924421145,
+ "grad_norm": 0.2541540563106537,
+ "learning_rate": 0.0006,
+ "loss": 4.261083602905273,
+ "step": 824
+ },
+ {
+ "epoch": 11.461336828309305,
+ "grad_norm": 0.2348361313343048,
+ "learning_rate": 0.0006,
+ "loss": 4.271036148071289,
+ "step": 825
+ },
+ {
+ "epoch": 11.475316732197467,
+ "grad_norm": 0.20913535356521606,
+ "learning_rate": 0.0006,
+ "loss": 4.307661056518555,
+ "step": 826
+ },
+ {
+ "epoch": 11.489296636085626,
+ "grad_norm": 0.22298868000507355,
+ "learning_rate": 0.0006,
+ "loss": 4.26902961730957,
+ "step": 827
+ },
+ {
+ "epoch": 11.503276539973788,
+ "grad_norm": 0.22752761840820312,
+ "learning_rate": 0.0006,
+ "loss": 4.305529594421387,
+ "step": 828
+ },
+ {
+ "epoch": 11.517256443861948,
+ "grad_norm": 0.2149917483329773,
+ "learning_rate": 0.0006,
+ "loss": 4.25134801864624,
+ "step": 829
+ },
+ {
+ "epoch": 11.53123634775011,
+ "grad_norm": 0.21085695922374725,
+ "learning_rate": 0.0006,
+ "loss": 4.266982078552246,
+ "step": 830
+ },
+ {
+ "epoch": 11.54521625163827,
+ "grad_norm": 0.21586747467517853,
+ "learning_rate": 0.0006,
+ "loss": 4.235255718231201,
+ "step": 831
+ },
+ {
+ "epoch": 11.55919615552643,
+ "grad_norm": 0.2520856559276581,
+ "learning_rate": 0.0006,
+ "loss": 4.283442497253418,
+ "step": 832
+ },
+ {
+ "epoch": 11.57317605941459,
+ "grad_norm": 0.2825471758842468,
+ "learning_rate": 0.0006,
+ "loss": 4.234672546386719,
+ "step": 833
+ },
+ {
+ "epoch": 11.587155963302752,
+ "grad_norm": 0.27437824010849,
+ "learning_rate": 0.0006,
+ "loss": 4.246068000793457,
+ "step": 834
+ },
+ {
+ "epoch": 11.601135867190912,
+ "grad_norm": 0.2596757411956787,
+ "learning_rate": 0.0006,
+ "loss": 4.278448104858398,
+ "step": 835
+ },
+ {
+ "epoch": 11.615115771079074,
+ "grad_norm": 0.25663474202156067,
+ "learning_rate": 0.0006,
+ "loss": 4.308779716491699,
+ "step": 836
+ },
+ {
+ "epoch": 11.629095674967235,
+ "grad_norm": 0.2546203136444092,
+ "learning_rate": 0.0006,
+ "loss": 4.261247634887695,
+ "step": 837
+ },
+ {
+ "epoch": 11.643075578855395,
+ "grad_norm": 0.24722838401794434,
+ "learning_rate": 0.0006,
+ "loss": 4.275888442993164,
+ "step": 838
+ },
+ {
+ "epoch": 11.657055482743557,
+ "grad_norm": 0.3022806644439697,
+ "learning_rate": 0.0006,
+ "loss": 4.2572407722473145,
+ "step": 839
+ },
+ {
+ "epoch": 11.671035386631717,
+ "grad_norm": 0.31170839071273804,
+ "learning_rate": 0.0006,
+ "loss": 4.26992654800415,
+ "step": 840
+ },
+ {
+ "epoch": 11.685015290519878,
+ "grad_norm": 0.31362825632095337,
+ "learning_rate": 0.0006,
+ "loss": 4.2354655265808105,
+ "step": 841
+ },
+ {
+ "epoch": 11.698995194408038,
+ "grad_norm": 0.28741633892059326,
+ "learning_rate": 0.0006,
+ "loss": 4.263496398925781,
+ "step": 842
+ },
+ {
+ "epoch": 11.7129750982962,
+ "grad_norm": 0.2492494285106659,
+ "learning_rate": 0.0006,
+ "loss": 4.26463508605957,
+ "step": 843
+ },
+ {
+ "epoch": 11.72695500218436,
+ "grad_norm": 0.24324660003185272,
+ "learning_rate": 0.0006,
+ "loss": 4.245428085327148,
+ "step": 844
+ },
+ {
+ "epoch": 11.740934906072521,
+ "grad_norm": 0.23591114580631256,
+ "learning_rate": 0.0006,
+ "loss": 4.249845504760742,
+ "step": 845
+ },
+ {
+ "epoch": 11.754914809960681,
+ "grad_norm": 0.2202281504869461,
+ "learning_rate": 0.0006,
+ "loss": 4.245006084442139,
+ "step": 846
+ },
+ {
+ "epoch": 11.768894713848843,
+ "grad_norm": 0.22117942571640015,
+ "learning_rate": 0.0006,
+ "loss": 4.27812385559082,
+ "step": 847
+ },
+ {
+ "epoch": 11.782874617737003,
+ "grad_norm": 0.26361414790153503,
+ "learning_rate": 0.0006,
+ "loss": 4.250475883483887,
+ "step": 848
+ },
+ {
+ "epoch": 11.796854521625164,
+ "grad_norm": 0.2820321321487427,
+ "learning_rate": 0.0006,
+ "loss": 4.265835762023926,
+ "step": 849
+ },
+ {
+ "epoch": 11.810834425513324,
+ "grad_norm": 0.2078961282968521,
+ "learning_rate": 0.0006,
+ "loss": 4.251298904418945,
+ "step": 850
+ },
+ {
+ "epoch": 11.824814329401486,
+ "grad_norm": 0.21548646688461304,
+ "learning_rate": 0.0006,
+ "loss": 4.288539886474609,
+ "step": 851
+ },
+ {
+ "epoch": 11.838794233289645,
+ "grad_norm": 0.22719401121139526,
+ "learning_rate": 0.0006,
+ "loss": 4.252035140991211,
+ "step": 852
+ },
+ {
+ "epoch": 11.852774137177807,
+ "grad_norm": 0.21628320217132568,
+ "learning_rate": 0.0006,
+ "loss": 4.268622398376465,
+ "step": 853
+ },
+ {
+ "epoch": 11.866754041065967,
+ "grad_norm": 0.20855145156383514,
+ "learning_rate": 0.0006,
+ "loss": 4.253366470336914,
+ "step": 854
+ },
+ {
+ "epoch": 11.880733944954128,
+ "grad_norm": 0.2091914266347885,
+ "learning_rate": 0.0006,
+ "loss": 4.237805366516113,
+ "step": 855
+ },
+ {
+ "epoch": 11.89471384884229,
+ "grad_norm": 0.2000127136707306,
+ "learning_rate": 0.0006,
+ "loss": 4.268559455871582,
+ "step": 856
+ },
+ {
+ "epoch": 11.90869375273045,
+ "grad_norm": 0.21080894768238068,
+ "learning_rate": 0.0006,
+ "loss": 4.208702087402344,
+ "step": 857
+ },
+ {
+ "epoch": 11.922673656618612,
+ "grad_norm": 0.22125796973705292,
+ "learning_rate": 0.0006,
+ "loss": 4.250210762023926,
+ "step": 858
+ },
+ {
+ "epoch": 11.936653560506771,
+ "grad_norm": 0.25905469059944153,
+ "learning_rate": 0.0006,
+ "loss": 4.2263593673706055,
+ "step": 859
+ },
+ {
+ "epoch": 11.950633464394933,
+ "grad_norm": 0.29970306158065796,
+ "learning_rate": 0.0006,
+ "loss": 4.250848770141602,
+ "step": 860
+ },
+ {
+ "epoch": 11.964613368283093,
+ "grad_norm": 0.28155168890953064,
+ "learning_rate": 0.0006,
+ "loss": 4.272709369659424,
+ "step": 861
+ },
+ {
+ "epoch": 11.978593272171254,
+ "grad_norm": 0.23396113514900208,
+ "learning_rate": 0.0006,
+ "loss": 4.2674970626831055,
+ "step": 862
+ },
+ {
+ "epoch": 11.992573176059414,
+ "grad_norm": 0.23619577288627625,
+ "learning_rate": 0.0006,
+ "loss": 4.240267753601074,
+ "step": 863
+ },
+ {
+ "epoch": 12.0,
+ "grad_norm": 0.2779577076435089,
+ "learning_rate": 0.0006,
+ "loss": 4.267625331878662,
+ "step": 864
+ },
+ {
+ "epoch": 12.0,
+ "eval_loss": 4.437657356262207,
+ "eval_runtime": 44.4959,
+ "eval_samples_per_second": 54.881,
+ "eval_steps_per_second": 3.439,
+ "step": 864
+ },
+ {
+ "epoch": 12.013979903888162,
+ "grad_norm": 0.2948288321495056,
+ "learning_rate": 0.0006,
+ "loss": 4.232182502746582,
+ "step": 865
+ },
+ {
+ "epoch": 12.027959807776321,
+ "grad_norm": 0.3715663254261017,
+ "learning_rate": 0.0006,
+ "loss": 4.233771324157715,
+ "step": 866
+ },
+ {
+ "epoch": 12.041939711664483,
+ "grad_norm": 0.38358673453330994,
+ "learning_rate": 0.0006,
+ "loss": 4.208967685699463,
+ "step": 867
+ },
+ {
+ "epoch": 12.055919615552643,
+ "grad_norm": 0.3314538896083832,
+ "learning_rate": 0.0006,
+ "loss": 4.230685234069824,
+ "step": 868
+ },
+ {
+ "epoch": 12.069899519440805,
+ "grad_norm": 0.34171539545059204,
+ "learning_rate": 0.0006,
+ "loss": 4.231358528137207,
+ "step": 869
+ },
+ {
+ "epoch": 12.083879423328964,
+ "grad_norm": 0.3253359794616699,
+ "learning_rate": 0.0006,
+ "loss": 4.276405334472656,
+ "step": 870
+ },
+ {
+ "epoch": 12.097859327217126,
+ "grad_norm": 0.29008302092552185,
+ "learning_rate": 0.0006,
+ "loss": 4.232935905456543,
+ "step": 871
+ },
+ {
+ "epoch": 12.111839231105286,
+ "grad_norm": 0.28490355610847473,
+ "learning_rate": 0.0006,
+ "loss": 4.238036632537842,
+ "step": 872
+ },
+ {
+ "epoch": 12.125819134993447,
+ "grad_norm": 0.28446322679519653,
+ "learning_rate": 0.0006,
+ "loss": 4.210229873657227,
+ "step": 873
+ },
+ {
+ "epoch": 12.139799038881607,
+ "grad_norm": 0.29664531350135803,
+ "learning_rate": 0.0006,
+ "loss": 4.221309185028076,
+ "step": 874
+ },
+ {
+ "epoch": 12.153778942769769,
+ "grad_norm": 0.3083505928516388,
+ "learning_rate": 0.0006,
+ "loss": 4.221837997436523,
+ "step": 875
+ },
+ {
+ "epoch": 12.167758846657929,
+ "grad_norm": 0.3282921314239502,
+ "learning_rate": 0.0006,
+ "loss": 4.236713409423828,
+ "step": 876
+ },
+ {
+ "epoch": 12.18173875054609,
+ "grad_norm": 0.3603622615337372,
+ "learning_rate": 0.0006,
+ "loss": 4.245080947875977,
+ "step": 877
+ },
+ {
+ "epoch": 12.19571865443425,
+ "grad_norm": 0.38070905208587646,
+ "learning_rate": 0.0006,
+ "loss": 4.240756988525391,
+ "step": 878
+ },
+ {
+ "epoch": 12.209698558322412,
+ "grad_norm": 0.34479081630706787,
+ "learning_rate": 0.0006,
+ "loss": 4.200998306274414,
+ "step": 879
+ },
+ {
+ "epoch": 12.223678462210572,
+ "grad_norm": 0.3006879389286041,
+ "learning_rate": 0.0006,
+ "loss": 4.23531436920166,
+ "step": 880
+ },
+ {
+ "epoch": 12.237658366098733,
+ "grad_norm": 0.36835649609565735,
+ "learning_rate": 0.0006,
+ "loss": 4.229718208312988,
+ "step": 881
+ },
+ {
+ "epoch": 12.251638269986893,
+ "grad_norm": 0.4386984407901764,
+ "learning_rate": 0.0006,
+ "loss": 4.241188049316406,
+ "step": 882
+ },
+ {
+ "epoch": 12.265618173875055,
+ "grad_norm": 0.4442787170410156,
+ "learning_rate": 0.0006,
+ "loss": 4.239102840423584,
+ "step": 883
+ },
+ {
+ "epoch": 12.279598077763215,
+ "grad_norm": 0.324411541223526,
+ "learning_rate": 0.0006,
+ "loss": 4.198982238769531,
+ "step": 884
+ },
+ {
+ "epoch": 12.293577981651376,
+ "grad_norm": 0.2824151813983917,
+ "learning_rate": 0.0006,
+ "loss": 4.248816967010498,
+ "step": 885
+ },
+ {
+ "epoch": 12.307557885539538,
+ "grad_norm": 0.31407129764556885,
+ "learning_rate": 0.0006,
+ "loss": 4.2371320724487305,
+ "step": 886
+ },
+ {
+ "epoch": 12.321537789427698,
+ "grad_norm": 0.32920050621032715,
+ "learning_rate": 0.0006,
+ "loss": 4.210432052612305,
+ "step": 887
+ },
+ {
+ "epoch": 12.33551769331586,
+ "grad_norm": 0.315231055021286,
+ "learning_rate": 0.0006,
+ "loss": 4.219416618347168,
+ "step": 888
+ },
+ {
+ "epoch": 12.349497597204019,
+ "grad_norm": 0.30932050943374634,
+ "learning_rate": 0.0006,
+ "loss": 4.225022315979004,
+ "step": 889
+ },
+ {
+ "epoch": 12.36347750109218,
+ "grad_norm": 0.30242064595222473,
+ "learning_rate": 0.0006,
+ "loss": 4.2738518714904785,
+ "step": 890
+ },
+ {
+ "epoch": 12.37745740498034,
+ "grad_norm": 0.2926250994205475,
+ "learning_rate": 0.0006,
+ "loss": 4.231094837188721,
+ "step": 891
+ },
+ {
+ "epoch": 12.391437308868502,
+ "grad_norm": 0.2541215717792511,
+ "learning_rate": 0.0006,
+ "loss": 4.211821556091309,
+ "step": 892
+ },
+ {
+ "epoch": 12.405417212756662,
+ "grad_norm": 0.23693418502807617,
+ "learning_rate": 0.0006,
+ "loss": 4.208099365234375,
+ "step": 893
+ },
+ {
+ "epoch": 12.419397116644824,
+ "grad_norm": 0.22063226997852325,
+ "learning_rate": 0.0006,
+ "loss": 4.211234092712402,
+ "step": 894
+ },
+ {
+ "epoch": 12.433377020532983,
+ "grad_norm": 0.21536271274089813,
+ "learning_rate": 0.0006,
+ "loss": 4.199228286743164,
+ "step": 895
+ },
+ {
+ "epoch": 12.447356924421145,
+ "grad_norm": 0.243179589509964,
+ "learning_rate": 0.0006,
+ "loss": 4.204344749450684,
+ "step": 896
+ },
+ {
+ "epoch": 12.461336828309305,
+ "grad_norm": 0.2299746423959732,
+ "learning_rate": 0.0006,
+ "loss": 4.1565752029418945,
+ "step": 897
+ },
+ {
+ "epoch": 12.475316732197467,
+ "grad_norm": 0.2286847084760666,
+ "learning_rate": 0.0006,
+ "loss": 4.242953777313232,
+ "step": 898
+ },
+ {
+ "epoch": 12.489296636085626,
+ "grad_norm": 0.19463586807250977,
+ "learning_rate": 0.0006,
+ "loss": 4.214809417724609,
+ "step": 899
+ },
+ {
+ "epoch": 12.503276539973788,
+ "grad_norm": 0.1978398710489273,
+ "learning_rate": 0.0006,
+ "loss": 4.159815311431885,
+ "step": 900
+ },
+ {
+ "epoch": 12.517256443861948,
+ "grad_norm": 0.23177850246429443,
+ "learning_rate": 0.0006,
+ "loss": 4.2069902420043945,
+ "step": 901
+ },
+ {
+ "epoch": 12.53123634775011,
+ "grad_norm": 0.2408912032842636,
+ "learning_rate": 0.0006,
+ "loss": 4.206778526306152,
+ "step": 902
+ },
+ {
+ "epoch": 12.54521625163827,
+ "grad_norm": 0.21839919686317444,
+ "learning_rate": 0.0006,
+ "loss": 4.197076320648193,
+ "step": 903
+ },
+ {
+ "epoch": 12.55919615552643,
+ "grad_norm": 0.2053343504667282,
+ "learning_rate": 0.0006,
+ "loss": 4.21247673034668,
+ "step": 904
+ },
+ {
+ "epoch": 12.57317605941459,
+ "grad_norm": 0.19943439960479736,
+ "learning_rate": 0.0006,
+ "loss": 4.176966667175293,
+ "step": 905
+ },
+ {
+ "epoch": 12.587155963302752,
+ "grad_norm": 0.2012074887752533,
+ "learning_rate": 0.0006,
+ "loss": 4.210303783416748,
+ "step": 906
+ },
+ {
+ "epoch": 12.601135867190912,
+ "grad_norm": 0.22240376472473145,
+ "learning_rate": 0.0006,
+ "loss": 4.200625896453857,
+ "step": 907
+ },
+ {
+ "epoch": 12.615115771079074,
+ "grad_norm": 0.21729710698127747,
+ "learning_rate": 0.0006,
+ "loss": 4.2001953125,
+ "step": 908
+ },
+ {
+ "epoch": 12.629095674967235,
+ "grad_norm": 0.22470413148403168,
+ "learning_rate": 0.0006,
+ "loss": 4.197505950927734,
+ "step": 909
+ },
+ {
+ "epoch": 12.643075578855395,
+ "grad_norm": 0.23776157200336456,
+ "learning_rate": 0.0006,
+ "loss": 4.235603332519531,
+ "step": 910
+ },
+ {
+ "epoch": 12.657055482743557,
+ "grad_norm": 0.20616604387760162,
+ "learning_rate": 0.0006,
+ "loss": 4.193584442138672,
+ "step": 911
+ },
+ {
+ "epoch": 12.671035386631717,
+ "grad_norm": 0.1913922131061554,
+ "learning_rate": 0.0006,
+ "loss": 4.209191799163818,
+ "step": 912
+ },
+ {
+ "epoch": 12.685015290519878,
+ "grad_norm": 0.19427193701267242,
+ "learning_rate": 0.0006,
+ "loss": 4.219709396362305,
+ "step": 913
+ },
+ {
+ "epoch": 12.698995194408038,
+ "grad_norm": 0.20976558327674866,
+ "learning_rate": 0.0006,
+ "loss": 4.210859298706055,
+ "step": 914
+ },
+ {
+ "epoch": 12.7129750982962,
+ "grad_norm": 0.21571609377861023,
+ "learning_rate": 0.0006,
+ "loss": 4.189394950866699,
+ "step": 915
+ },
+ {
+ "epoch": 12.72695500218436,
+ "grad_norm": 0.2152620255947113,
+ "learning_rate": 0.0006,
+ "loss": 4.223589897155762,
+ "step": 916
+ },
+ {
+ "epoch": 12.740934906072521,
+ "grad_norm": 0.21867749094963074,
+ "learning_rate": 0.0006,
+ "loss": 4.198590278625488,
+ "step": 917
+ },
+ {
+ "epoch": 12.754914809960681,
+ "grad_norm": 0.22300855815410614,
+ "learning_rate": 0.0006,
+ "loss": 4.188891410827637,
+ "step": 918
+ },
+ {
+ "epoch": 12.768894713848843,
+ "grad_norm": 0.22197802364826202,
+ "learning_rate": 0.0006,
+ "loss": 4.190221309661865,
+ "step": 919
+ },
+ {
+ "epoch": 12.782874617737003,
+ "grad_norm": 0.20003341138362885,
+ "learning_rate": 0.0006,
+ "loss": 4.215453147888184,
+ "step": 920
+ },
+ {
+ "epoch": 12.796854521625164,
+ "grad_norm": 0.19887958467006683,
+ "learning_rate": 0.0006,
+ "loss": 4.18174934387207,
+ "step": 921
+ },
+ {
+ "epoch": 12.810834425513324,
+ "grad_norm": 0.20945803821086884,
+ "learning_rate": 0.0006,
+ "loss": 4.234947204589844,
+ "step": 922
+ },
+ {
+ "epoch": 12.824814329401486,
+ "grad_norm": 0.2253490388393402,
+ "learning_rate": 0.0006,
+ "loss": 4.2177228927612305,
+ "step": 923
+ },
+ {
+ "epoch": 12.838794233289645,
+ "grad_norm": 0.247610405087471,
+ "learning_rate": 0.0006,
+ "loss": 4.2013139724731445,
+ "step": 924
+ },
+ {
+ "epoch": 12.852774137177807,
+ "grad_norm": 0.2792088985443115,
+ "learning_rate": 0.0006,
+ "loss": 4.204774379730225,
+ "step": 925
+ },
+ {
+ "epoch": 12.866754041065967,
+ "grad_norm": 0.2839066982269287,
+ "learning_rate": 0.0006,
+ "loss": 4.186254978179932,
+ "step": 926
+ },
+ {
+ "epoch": 12.880733944954128,
+ "grad_norm": 0.2793181836605072,
+ "learning_rate": 0.0006,
+ "loss": 4.172411918640137,
+ "step": 927
+ },
+ {
+ "epoch": 12.89471384884229,
+ "grad_norm": 0.29506033658981323,
+ "learning_rate": 0.0006,
+ "loss": 4.202878475189209,
+ "step": 928
+ },
+ {
+ "epoch": 12.90869375273045,
+ "grad_norm": 0.2799845039844513,
+ "learning_rate": 0.0006,
+ "loss": 4.1563310623168945,
+ "step": 929
+ },
+ {
+ "epoch": 12.922673656618612,
+ "grad_norm": 0.23972125351428986,
+ "learning_rate": 0.0006,
+ "loss": 4.224601745605469,
+ "step": 930
+ },
+ {
+ "epoch": 12.936653560506771,
+ "grad_norm": 0.21558353304862976,
+ "learning_rate": 0.0006,
+ "loss": 4.167957305908203,
+ "step": 931
+ },
+ {
+ "epoch": 12.950633464394933,
+ "grad_norm": 0.21800188720226288,
+ "learning_rate": 0.0006,
+ "loss": 4.1746039390563965,
+ "step": 932
+ },
+ {
+ "epoch": 12.964613368283093,
+ "grad_norm": 0.2086547315120697,
+ "learning_rate": 0.0006,
+ "loss": 4.188137054443359,
+ "step": 933
+ },
+ {
+ "epoch": 12.978593272171254,
+ "grad_norm": 0.2174186110496521,
+ "learning_rate": 0.0006,
+ "loss": 4.184014320373535,
+ "step": 934
+ },
+ {
+ "epoch": 12.992573176059414,
+ "grad_norm": 0.22755110263824463,
+ "learning_rate": 0.0006,
+ "loss": 4.180912017822266,
+ "step": 935
+ },
+ {
+ "epoch": 13.0,
+ "grad_norm": 0.2735324203968048,
+ "learning_rate": 0.0006,
+ "loss": 4.201578617095947,
+ "step": 936
+ },
+ {
+ "epoch": 13.0,
+ "eval_loss": 4.396903038024902,
+ "eval_runtime": 44.5664,
+ "eval_samples_per_second": 54.795,
+ "eval_steps_per_second": 3.433,
+ "step": 936
+ },
+ {
+ "epoch": 13.013979903888162,
+ "grad_norm": 0.27577832341194153,
+ "learning_rate": 0.0006,
+ "loss": 4.149985313415527,
+ "step": 937
+ },
+ {
+ "epoch": 13.027959807776321,
+ "grad_norm": 0.25817009806632996,
+ "learning_rate": 0.0006,
+ "loss": 4.1526103019714355,
+ "step": 938
+ },
+ {
+ "epoch": 13.041939711664483,
+ "grad_norm": 0.24564379453659058,
+ "learning_rate": 0.0006,
+ "loss": 4.1661152839660645,
+ "step": 939
+ },
+ {
+ "epoch": 13.055919615552643,
+ "grad_norm": 0.2465466856956482,
+ "learning_rate": 0.0006,
+ "loss": 4.152953624725342,
+ "step": 940
+ },
+ {
+ "epoch": 13.069899519440805,
+ "grad_norm": 0.22702018916606903,
+ "learning_rate": 0.0006,
+ "loss": 4.145125389099121,
+ "step": 941
+ },
+ {
+ "epoch": 13.083879423328964,
+ "grad_norm": 0.24350613355636597,
+ "learning_rate": 0.0006,
+ "loss": 4.163095474243164,
+ "step": 942
+ },
+ {
+ "epoch": 13.097859327217126,
+ "grad_norm": 0.2504431903362274,
+ "learning_rate": 0.0006,
+ "loss": 4.136016845703125,
+ "step": 943
+ },
+ {
+ "epoch": 13.111839231105286,
+ "grad_norm": 0.24968865513801575,
+ "learning_rate": 0.0006,
+ "loss": 4.163487911224365,
+ "step": 944
+ },
+ {
+ "epoch": 13.125819134993447,
+ "grad_norm": 0.27164196968078613,
+ "learning_rate": 0.0006,
+ "loss": 4.1194353103637695,
+ "step": 945
+ },
+ {
+ "epoch": 13.139799038881607,
+ "grad_norm": 0.28127020597457886,
+ "learning_rate": 0.0006,
+ "loss": 4.184807300567627,
+ "step": 946
+ },
+ {
+ "epoch": 13.153778942769769,
+ "grad_norm": 0.24574966728687286,
+ "learning_rate": 0.0006,
+ "loss": 4.154998779296875,
+ "step": 947
+ },
+ {
+ "epoch": 13.167758846657929,
+ "grad_norm": 0.22310060262680054,
+ "learning_rate": 0.0006,
+ "loss": 4.182928085327148,
+ "step": 948
+ },
+ {
+ "epoch": 13.18173875054609,
+ "grad_norm": 0.2539508640766144,
+ "learning_rate": 0.0006,
+ "loss": 4.176900386810303,
+ "step": 949
+ },
+ {
+ "epoch": 13.19571865443425,
+ "grad_norm": 0.30925488471984863,
+ "learning_rate": 0.0006,
+ "loss": 4.1760711669921875,
+ "step": 950
+ },
+ {
+ "epoch": 13.209698558322412,
+ "grad_norm": 0.3842967450618744,
+ "learning_rate": 0.0006,
+ "loss": 4.1830949783325195,
+ "step": 951
+ },
+ {
+ "epoch": 13.223678462210572,
+ "grad_norm": 0.35950011014938354,
+ "learning_rate": 0.0006,
+ "loss": 4.131983757019043,
+ "step": 952
+ },
+ {
+ "epoch": 13.237658366098733,
+ "grad_norm": 0.29913705587387085,
+ "learning_rate": 0.0006,
+ "loss": 4.166984558105469,
+ "step": 953
+ },
+ {
+ "epoch": 13.251638269986893,
+ "grad_norm": 0.32008400559425354,
+ "learning_rate": 0.0006,
+ "loss": 4.156482696533203,
+ "step": 954
+ },
+ {
+ "epoch": 13.265618173875055,
+ "grad_norm": 0.3186642825603485,
+ "learning_rate": 0.0006,
+ "loss": 4.1661057472229,
+ "step": 955
+ },
+ {
+ "epoch": 13.279598077763215,
+ "grad_norm": 0.3194582462310791,
+ "learning_rate": 0.0006,
+ "loss": 4.169328689575195,
+ "step": 956
+ },
+ {
+ "epoch": 13.293577981651376,
+ "grad_norm": 0.3133867084980011,
+ "learning_rate": 0.0006,
+ "loss": 4.165459632873535,
+ "step": 957
+ },
+ {
+ "epoch": 13.307557885539538,
+ "grad_norm": 0.3232237696647644,
+ "learning_rate": 0.0006,
+ "loss": 4.2107439041137695,
+ "step": 958
+ },
+ {
+ "epoch": 13.321537789427698,
+ "grad_norm": 0.3133196234703064,
+ "learning_rate": 0.0006,
+ "loss": 4.184182167053223,
+ "step": 959
+ },
+ {
+ "epoch": 13.33551769331586,
+ "grad_norm": 0.296129435300827,
+ "learning_rate": 0.0006,
+ "loss": 4.168312072753906,
+ "step": 960
+ },
+ {
+ "epoch": 13.349497597204019,
+ "grad_norm": 0.2685348391532898,
+ "learning_rate": 0.0006,
+ "loss": 4.159984588623047,
+ "step": 961
+ },
+ {
+ "epoch": 13.36347750109218,
+ "grad_norm": 0.2644975781440735,
+ "learning_rate": 0.0006,
+ "loss": 4.164909362792969,
+ "step": 962
+ },
+ {
+ "epoch": 13.37745740498034,
+ "grad_norm": 0.2712913155555725,
+ "learning_rate": 0.0006,
+ "loss": 4.158056259155273,
+ "step": 963
+ },
+ {
+ "epoch": 13.391437308868502,
+ "grad_norm": 0.2687259316444397,
+ "learning_rate": 0.0006,
+ "loss": 4.182924270629883,
+ "step": 964
+ },
+ {
+ "epoch": 13.405417212756662,
+ "grad_norm": 0.25640392303466797,
+ "learning_rate": 0.0006,
+ "loss": 4.153351783752441,
+ "step": 965
+ },
+ {
+ "epoch": 13.419397116644824,
+ "grad_norm": 0.2646305561065674,
+ "learning_rate": 0.0006,
+ "loss": 4.18464469909668,
+ "step": 966
+ },
+ {
+ "epoch": 13.433377020532983,
+ "grad_norm": 0.24206851422786713,
+ "learning_rate": 0.0006,
+ "loss": 4.127564430236816,
+ "step": 967
+ },
+ {
+ "epoch": 13.447356924421145,
+ "grad_norm": 0.23800471425056458,
+ "learning_rate": 0.0006,
+ "loss": 4.163488388061523,
+ "step": 968
+ },
+ {
+ "epoch": 13.461336828309305,
+ "grad_norm": 0.22957314550876617,
+ "learning_rate": 0.0006,
+ "loss": 4.178133964538574,
+ "step": 969
+ },
+ {
+ "epoch": 13.475316732197467,
+ "grad_norm": 0.22867488861083984,
+ "learning_rate": 0.0006,
+ "loss": 4.159056186676025,
+ "step": 970
+ },
+ {
+ "epoch": 13.489296636085626,
+ "grad_norm": 0.21737419068813324,
+ "learning_rate": 0.0006,
+ "loss": 4.138628005981445,
+ "step": 971
+ },
+ {
+ "epoch": 13.503276539973788,
+ "grad_norm": 0.2319175899028778,
+ "learning_rate": 0.0006,
+ "loss": 4.14644718170166,
+ "step": 972
+ },
+ {
+ "epoch": 13.517256443861948,
+ "grad_norm": 0.2572193443775177,
+ "learning_rate": 0.0006,
+ "loss": 4.175213813781738,
+ "step": 973
+ },
+ {
+ "epoch": 13.53123634775011,
+ "grad_norm": 0.23483099043369293,
+ "learning_rate": 0.0006,
+ "loss": 4.133171558380127,
+ "step": 974
+ },
+ {
+ "epoch": 13.54521625163827,
+ "grad_norm": 0.2071552872657776,
+ "learning_rate": 0.0006,
+ "loss": 4.13730525970459,
+ "step": 975
+ },
+ {
+ "epoch": 13.55919615552643,
+ "grad_norm": 0.23074553906917572,
+ "learning_rate": 0.0006,
+ "loss": 4.175051689147949,
+ "step": 976
+ },
+ {
+ "epoch": 13.57317605941459,
+ "grad_norm": 0.2480078786611557,
+ "learning_rate": 0.0006,
+ "loss": 4.167630672454834,
+ "step": 977
+ },
+ {
+ "epoch": 13.587155963302752,
+ "grad_norm": 0.23444348573684692,
+ "learning_rate": 0.0006,
+ "loss": 4.141780853271484,
+ "step": 978
+ },
+ {
+ "epoch": 13.601135867190912,
+ "grad_norm": 0.2227829396724701,
+ "learning_rate": 0.0006,
+ "loss": 4.157566547393799,
+ "step": 979
+ },
+ {
+ "epoch": 13.615115771079074,
+ "grad_norm": 0.21478354930877686,
+ "learning_rate": 0.0006,
+ "loss": 4.131053447723389,
+ "step": 980
+ },
+ {
+ "epoch": 13.629095674967235,
+ "grad_norm": 0.1978664994239807,
+ "learning_rate": 0.0006,
+ "loss": 4.123660564422607,
+ "step": 981
+ },
+ {
+ "epoch": 13.643075578855395,
+ "grad_norm": 0.19980201125144958,
+ "learning_rate": 0.0006,
+ "loss": 4.174160480499268,
+ "step": 982
+ },
+ {
+ "epoch": 13.657055482743557,
+ "grad_norm": 0.19815555214881897,
+ "learning_rate": 0.0006,
+ "loss": 4.181703090667725,
+ "step": 983
+ },
+ {
+ "epoch": 13.671035386631717,
+ "grad_norm": 0.19524012506008148,
+ "learning_rate": 0.0006,
+ "loss": 4.163766860961914,
+ "step": 984
+ },
+ {
+ "epoch": 13.685015290519878,
+ "grad_norm": 0.2286096215248108,
+ "learning_rate": 0.0006,
+ "loss": 4.172213554382324,
+ "step": 985
+ },
+ {
+ "epoch": 13.698995194408038,
+ "grad_norm": 0.2210782766342163,
+ "learning_rate": 0.0006,
+ "loss": 4.187033653259277,
+ "step": 986
+ },
+ {
+ "epoch": 13.7129750982962,
+ "grad_norm": 0.21874216198921204,
+ "learning_rate": 0.0006,
+ "loss": 4.125125885009766,
+ "step": 987
+ },
+ {
+ "epoch": 13.72695500218436,
+ "grad_norm": 0.22848057746887207,
+ "learning_rate": 0.0006,
+ "loss": 4.153496742248535,
+ "step": 988
+ },
+ {
+ "epoch": 13.740934906072521,
+ "grad_norm": 0.2250450700521469,
+ "learning_rate": 0.0006,
+ "loss": 4.149165630340576,
+ "step": 989
+ },
+ {
+ "epoch": 13.754914809960681,
+ "grad_norm": 0.21443772315979004,
+ "learning_rate": 0.0006,
+ "loss": 4.1528825759887695,
+ "step": 990
+ },
+ {
+ "epoch": 13.768894713848843,
+ "grad_norm": 0.21927927434444427,
+ "learning_rate": 0.0006,
+ "loss": 4.146831512451172,
+ "step": 991
+ },
+ {
+ "epoch": 13.782874617737003,
+ "grad_norm": 0.2413124144077301,
+ "learning_rate": 0.0006,
+ "loss": 4.136909008026123,
+ "step": 992
+ },
+ {
+ "epoch": 13.796854521625164,
+ "grad_norm": 0.2603479325771332,
+ "learning_rate": 0.0006,
+ "loss": 4.12525749206543,
+ "step": 993
+ },
+ {
+ "epoch": 13.810834425513324,
+ "grad_norm": 0.26246970891952515,
+ "learning_rate": 0.0006,
+ "loss": 4.114049434661865,
+ "step": 994
+ },
+ {
+ "epoch": 13.824814329401486,
+ "grad_norm": 0.27031877636909485,
+ "learning_rate": 0.0006,
+ "loss": 4.1646552085876465,
+ "step": 995
+ },
+ {
+ "epoch": 13.838794233289645,
+ "grad_norm": 0.2499857395887375,
+ "learning_rate": 0.0006,
+ "loss": 4.139284133911133,
+ "step": 996
+ },
+ {
+ "epoch": 13.852774137177807,
+ "grad_norm": 0.22026537358760834,
+ "learning_rate": 0.0006,
+ "loss": 4.142191410064697,
+ "step": 997
+ },
+ {
+ "epoch": 13.866754041065967,
+ "grad_norm": 0.23738551139831543,
+ "learning_rate": 0.0006,
+ "loss": 4.1422882080078125,
+ "step": 998
+ },
+ {
+ "epoch": 13.880733944954128,
+ "grad_norm": 0.2416357398033142,
+ "learning_rate": 0.0006,
+ "loss": 4.14063835144043,
+ "step": 999
+ },
+ {
+ "epoch": 13.89471384884229,
+ "grad_norm": 0.33822184801101685,
+ "learning_rate": 0.0006,
+ "loss": 4.12839412689209,
+ "step": 1000
+ },
+ {
+ "epoch": 13.90869375273045,
+ "grad_norm": 0.3409678339958191,
+ "learning_rate": 0.0006,
+ "loss": 4.145351886749268,
+ "step": 1001
+ },
+ {
+ "epoch": 13.922673656618612,
+ "grad_norm": 0.2467597872018814,
+ "learning_rate": 0.0006,
+ "loss": 4.155339241027832,
+ "step": 1002
+ },
+ {
+ "epoch": 13.936653560506771,
+ "grad_norm": 0.2314649075269699,
+ "learning_rate": 0.0006,
+ "loss": 4.130176067352295,
+ "step": 1003
+ },
+ {
+ "epoch": 13.950633464394933,
+ "grad_norm": 0.23701290786266327,
+ "learning_rate": 0.0006,
+ "loss": 4.19205379486084,
+ "step": 1004
+ },
+ {
+ "epoch": 13.964613368283093,
+ "grad_norm": 0.2466491460800171,
+ "learning_rate": 0.0006,
+ "loss": 4.118908882141113,
+ "step": 1005
+ },
+ {
+ "epoch": 13.978593272171254,
+ "grad_norm": 0.23746836185455322,
+ "learning_rate": 0.0006,
+ "loss": 4.16111946105957,
+ "step": 1006
+ },
+ {
+ "epoch": 13.992573176059414,
+ "grad_norm": 0.24497751891613007,
+ "learning_rate": 0.0006,
+ "loss": 4.148624420166016,
+ "step": 1007
+ },
+ {
+ "epoch": 14.0,
+ "grad_norm": 0.25735899806022644,
+ "learning_rate": 0.0006,
+ "loss": 4.12002420425415,
+ "step": 1008
+ },
+ {
+ "epoch": 14.0,
+ "eval_loss": 4.335351467132568,
+ "eval_runtime": 44.0523,
+ "eval_samples_per_second": 55.434,
+ "eval_steps_per_second": 3.473,
+ "step": 1008
+ },
+ {
+ "epoch": 14.013979903888162,
+ "grad_norm": 0.24570082128047943,
+ "learning_rate": 0.0006,
+ "loss": 4.1036176681518555,
+ "step": 1009
+ },
+ {
+ "epoch": 14.027959807776321,
+ "grad_norm": 0.2525855302810669,
+ "learning_rate": 0.0006,
+ "loss": 4.142077445983887,
+ "step": 1010
+ },
+ {
+ "epoch": 14.041939711664483,
+ "grad_norm": 0.2701111435890198,
+ "learning_rate": 0.0006,
+ "loss": 4.096988677978516,
+ "step": 1011
+ },
+ {
+ "epoch": 14.055919615552643,
+ "grad_norm": 0.28173309564590454,
+ "learning_rate": 0.0006,
+ "loss": 4.148448944091797,
+ "step": 1012
+ },
+ {
+ "epoch": 14.069899519440805,
+ "grad_norm": 0.2651294469833374,
+ "learning_rate": 0.0006,
+ "loss": 4.121731281280518,
+ "step": 1013
+ },
+ {
+ "epoch": 14.083879423328964,
+ "grad_norm": 0.21160121262073517,
+ "learning_rate": 0.0006,
+ "loss": 4.108980178833008,
+ "step": 1014
+ },
+ {
+ "epoch": 14.097859327217126,
+ "grad_norm": 0.24786953628063202,
+ "learning_rate": 0.0006,
+ "loss": 4.133942604064941,
+ "step": 1015
+ },
+ {
+ "epoch": 14.111839231105286,
+ "grad_norm": 0.2722747027873993,
+ "learning_rate": 0.0006,
+ "loss": 4.115242958068848,
+ "step": 1016
+ },
+ {
+ "epoch": 14.125819134993447,
+ "grad_norm": 0.273360013961792,
+ "learning_rate": 0.0006,
+ "loss": 4.059296607971191,
+ "step": 1017
+ },
+ {
+ "epoch": 14.139799038881607,
+ "grad_norm": 0.2541784942150116,
+ "learning_rate": 0.0006,
+ "loss": 4.118365287780762,
+ "step": 1018
+ },
+ {
+ "epoch": 14.153778942769769,
+ "grad_norm": 0.23806381225585938,
+ "learning_rate": 0.0006,
+ "loss": 4.102812767028809,
+ "step": 1019
+ },
+ {
+ "epoch": 14.167758846657929,
+ "grad_norm": 0.2541005313396454,
+ "learning_rate": 0.0006,
+ "loss": 4.093264579772949,
+ "step": 1020
+ },
+ {
+ "epoch": 14.18173875054609,
+ "grad_norm": 0.2619539499282837,
+ "learning_rate": 0.0006,
+ "loss": 4.114917278289795,
+ "step": 1021
+ },
+ {
+ "epoch": 14.19571865443425,
+ "grad_norm": 0.2466963529586792,
+ "learning_rate": 0.0006,
+ "loss": 4.098258972167969,
+ "step": 1022
+ },
+ {
+ "epoch": 14.209698558322412,
+ "grad_norm": 0.24341611564159393,
+ "learning_rate": 0.0006,
+ "loss": 4.109346389770508,
+ "step": 1023
+ },
+ {
+ "epoch": 14.223678462210572,
+ "grad_norm": 0.23977765440940857,
+ "learning_rate": 0.0006,
+ "loss": 4.106716156005859,
+ "step": 1024
+ },
+ {
+ "epoch": 14.237658366098733,
+ "grad_norm": 0.253528356552124,
+ "learning_rate": 0.0006,
+ "loss": 4.102226257324219,
+ "step": 1025
+ },
+ {
+ "epoch": 14.251638269986893,
+ "grad_norm": 0.26954543590545654,
+ "learning_rate": 0.0006,
+ "loss": 4.107413291931152,
+ "step": 1026
+ },
+ {
+ "epoch": 14.265618173875055,
+ "grad_norm": 0.2610514760017395,
+ "learning_rate": 0.0006,
+ "loss": 4.110824108123779,
+ "step": 1027
+ },
+ {
+ "epoch": 14.279598077763215,
+ "grad_norm": 0.2579168677330017,
+ "learning_rate": 0.0006,
+ "loss": 4.082438945770264,
+ "step": 1028
+ },
+ {
+ "epoch": 14.293577981651376,
+ "grad_norm": 0.26916536688804626,
+ "learning_rate": 0.0006,
+ "loss": 4.075734615325928,
+ "step": 1029
+ },
+ {
+ "epoch": 14.307557885539538,
+ "grad_norm": 0.2998618185520172,
+ "learning_rate": 0.0006,
+ "loss": 4.088419437408447,
+ "step": 1030
+ },
+ {
+ "epoch": 14.321537789427698,
+ "grad_norm": 0.3162737190723419,
+ "learning_rate": 0.0006,
+ "loss": 4.125833034515381,
+ "step": 1031
+ },
+ {
+ "epoch": 14.33551769331586,
+ "grad_norm": 0.318601131439209,
+ "learning_rate": 0.0006,
+ "loss": 4.077424049377441,
+ "step": 1032
+ },
+ {
+ "epoch": 14.349497597204019,
+ "grad_norm": 0.32113415002822876,
+ "learning_rate": 0.0006,
+ "loss": 4.113360404968262,
+ "step": 1033
+ },
+ {
+ "epoch": 14.36347750109218,
+ "grad_norm": 0.3150886297225952,
+ "learning_rate": 0.0006,
+ "loss": 4.100013732910156,
+ "step": 1034
+ },
+ {
+ "epoch": 14.37745740498034,
+ "grad_norm": 0.29279956221580505,
+ "learning_rate": 0.0006,
+ "loss": 4.136394500732422,
+ "step": 1035
+ },
+ {
+ "epoch": 14.391437308868502,
+ "grad_norm": 0.28532543778419495,
+ "learning_rate": 0.0006,
+ "loss": 4.138948440551758,
+ "step": 1036
+ },
+ {
+ "epoch": 14.405417212756662,
+ "grad_norm": 0.2825978398323059,
+ "learning_rate": 0.0006,
+ "loss": 4.112217903137207,
+ "step": 1037
+ },
+ {
+ "epoch": 14.419397116644824,
+ "grad_norm": 0.2891198694705963,
+ "learning_rate": 0.0006,
+ "loss": 4.102682113647461,
+ "step": 1038
+ },
+ {
+ "epoch": 14.433377020532983,
+ "grad_norm": 0.2917391061782837,
+ "learning_rate": 0.0006,
+ "loss": 4.120752811431885,
+ "step": 1039
+ },
+ {
+ "epoch": 14.447356924421145,
+ "grad_norm": 0.2589806914329529,
+ "learning_rate": 0.0006,
+ "loss": 4.130519390106201,
+ "step": 1040
+ },
+ {
+ "epoch": 14.461336828309305,
+ "grad_norm": 0.2674788534641266,
+ "learning_rate": 0.0006,
+ "loss": 4.130382537841797,
+ "step": 1041
+ },
+ {
+ "epoch": 14.475316732197467,
+ "grad_norm": 0.2820362150669098,
+ "learning_rate": 0.0006,
+ "loss": 4.13947868347168,
+ "step": 1042
+ },
+ {
+ "epoch": 14.489296636085626,
+ "grad_norm": 0.2650109529495239,
+ "learning_rate": 0.0006,
+ "loss": 4.130346775054932,
+ "step": 1043
+ },
+ {
+ "epoch": 14.503276539973788,
+ "grad_norm": 0.29137638211250305,
+ "learning_rate": 0.0006,
+ "loss": 4.055751800537109,
+ "step": 1044
+ },
+ {
+ "epoch": 14.517256443861948,
+ "grad_norm": 0.3232433497905731,
+ "learning_rate": 0.0006,
+ "loss": 4.114810943603516,
+ "step": 1045
+ },
+ {
+ "epoch": 14.53123634775011,
+ "grad_norm": 0.2724473476409912,
+ "learning_rate": 0.0006,
+ "loss": 4.088351249694824,
+ "step": 1046
+ },
+ {
+ "epoch": 14.54521625163827,
+ "grad_norm": 0.23994430899620056,
+ "learning_rate": 0.0006,
+ "loss": 4.110936164855957,
+ "step": 1047
+ },
+ {
+ "epoch": 14.55919615552643,
+ "grad_norm": 0.2422720044851303,
+ "learning_rate": 0.0006,
+ "loss": 4.132844924926758,
+ "step": 1048
+ },
+ {
+ "epoch": 14.57317605941459,
+ "grad_norm": 0.21148815751075745,
+ "learning_rate": 0.0006,
+ "loss": 4.102499961853027,
+ "step": 1049
+ },
+ {
+ "epoch": 14.587155963302752,
+ "grad_norm": 0.22221639752388,
+ "learning_rate": 0.0006,
+ "loss": 4.126241683959961,
+ "step": 1050
+ },
+ {
+ "epoch": 14.601135867190912,
+ "grad_norm": 0.2538735866546631,
+ "learning_rate": 0.0006,
+ "loss": 4.116817951202393,
+ "step": 1051
+ },
+ {
+ "epoch": 14.615115771079074,
+ "grad_norm": 0.2555900514125824,
+ "learning_rate": 0.0006,
+ "loss": 4.106309413909912,
+ "step": 1052
+ },
+ {
+ "epoch": 14.629095674967235,
+ "grad_norm": 0.24753783643245697,
+ "learning_rate": 0.0006,
+ "loss": 4.1015119552612305,
+ "step": 1053
+ },
+ {
+ "epoch": 14.643075578855395,
+ "grad_norm": 0.238885298371315,
+ "learning_rate": 0.0006,
+ "loss": 4.120419502258301,
+ "step": 1054
+ },
+ {
+ "epoch": 14.657055482743557,
+ "grad_norm": 0.22693610191345215,
+ "learning_rate": 0.0006,
+ "loss": 4.084968566894531,
+ "step": 1055
+ },
+ {
+ "epoch": 14.671035386631717,
+ "grad_norm": 0.2100025862455368,
+ "learning_rate": 0.0006,
+ "loss": 4.108001708984375,
+ "step": 1056
+ },
+ {
+ "epoch": 14.685015290519878,
+ "grad_norm": 0.20437054336071014,
+ "learning_rate": 0.0006,
+ "loss": 4.151417255401611,
+ "step": 1057
+ },
+ {
+ "epoch": 14.698995194408038,
+ "grad_norm": 0.1926720291376114,
+ "learning_rate": 0.0006,
+ "loss": 4.091334342956543,
+ "step": 1058
+ },
+ {
+ "epoch": 14.7129750982962,
+ "grad_norm": 0.2120140641927719,
+ "learning_rate": 0.0006,
+ "loss": 4.111706256866455,
+ "step": 1059
+ },
+ {
+ "epoch": 14.72695500218436,
+ "grad_norm": 0.22877076268196106,
+ "learning_rate": 0.0006,
+ "loss": 4.123166084289551,
+ "step": 1060
+ },
+ {
+ "epoch": 14.740934906072521,
+ "grad_norm": 0.22149473428726196,
+ "learning_rate": 0.0006,
+ "loss": 4.099740028381348,
+ "step": 1061
+ },
+ {
+ "epoch": 14.754914809960681,
+ "grad_norm": 0.2351604402065277,
+ "learning_rate": 0.0006,
+ "loss": 4.066174507141113,
+ "step": 1062
+ },
+ {
+ "epoch": 14.768894713848843,
+ "grad_norm": 0.22895802557468414,
+ "learning_rate": 0.0006,
+ "loss": 4.101897239685059,
+ "step": 1063
+ },
+ {
+ "epoch": 14.782874617737003,
+ "grad_norm": 0.22050750255584717,
+ "learning_rate": 0.0006,
+ "loss": 4.122953414916992,
+ "step": 1064
+ },
+ {
+ "epoch": 14.796854521625164,
+ "grad_norm": 0.23255324363708496,
+ "learning_rate": 0.0006,
+ "loss": 4.11297607421875,
+ "step": 1065
+ },
+ {
+ "epoch": 14.810834425513324,
+ "grad_norm": 0.24522703886032104,
+ "learning_rate": 0.0006,
+ "loss": 4.131030082702637,
+ "step": 1066
+ },
+ {
+ "epoch": 14.824814329401486,
+ "grad_norm": 0.2492702752351761,
+ "learning_rate": 0.0006,
+ "loss": 4.076324939727783,
+ "step": 1067
+ },
+ {
+ "epoch": 14.838794233289645,
+ "grad_norm": 0.24410948157310486,
+ "learning_rate": 0.0006,
+ "loss": 4.109020709991455,
+ "step": 1068
+ },
+ {
+ "epoch": 14.852774137177807,
+ "grad_norm": 0.2463168203830719,
+ "learning_rate": 0.0006,
+ "loss": 4.135679244995117,
+ "step": 1069
+ },
+ {
+ "epoch": 14.866754041065967,
+ "grad_norm": 0.2563146650791168,
+ "learning_rate": 0.0006,
+ "loss": 4.0958027839660645,
+ "step": 1070
+ },
+ {
+ "epoch": 14.880733944954128,
+ "grad_norm": 0.261167049407959,
+ "learning_rate": 0.0006,
+ "loss": 4.114803314208984,
+ "step": 1071
+ },
+ {
+ "epoch": 14.89471384884229,
+ "grad_norm": 0.2593795955181122,
+ "learning_rate": 0.0006,
+ "loss": 4.1210618019104,
+ "step": 1072
+ },
+ {
+ "epoch": 14.90869375273045,
+ "grad_norm": 0.27184173464775085,
+ "learning_rate": 0.0006,
+ "loss": 4.095145225524902,
+ "step": 1073
+ },
+ {
+ "epoch": 14.922673656618612,
+ "grad_norm": 0.25289732217788696,
+ "learning_rate": 0.0006,
+ "loss": 4.107388973236084,
+ "step": 1074
+ },
+ {
+ "epoch": 14.936653560506771,
+ "grad_norm": 0.2176840454339981,
+ "learning_rate": 0.0006,
+ "loss": 4.105966567993164,
+ "step": 1075
+ },
+ {
+ "epoch": 14.950633464394933,
+ "grad_norm": 0.20930173993110657,
+ "learning_rate": 0.0006,
+ "loss": 4.126853942871094,
+ "step": 1076
+ },
+ {
+ "epoch": 14.964613368283093,
+ "grad_norm": 0.20850051939487457,
+ "learning_rate": 0.0006,
+ "loss": 4.074934959411621,
+ "step": 1077
+ },
+ {
+ "epoch": 14.978593272171254,
+ "grad_norm": 0.21987544000148773,
+ "learning_rate": 0.0006,
+ "loss": 4.123321533203125,
+ "step": 1078
+ },
+ {
+ "epoch": 14.992573176059414,
+ "grad_norm": 0.23821689188480377,
+ "learning_rate": 0.0006,
+ "loss": 4.082647323608398,
+ "step": 1079
+ },
+ {
+ "epoch": 15.0,
+ "grad_norm": 0.2590881288051605,
+ "learning_rate": 0.0006,
+ "loss": 4.113482475280762,
+ "step": 1080
+ },
+ {
+ "epoch": 15.0,
+ "eval_loss": 4.286936283111572,
+ "eval_runtime": 44.2665,
+ "eval_samples_per_second": 55.166,
+ "eval_steps_per_second": 3.456,
+ "step": 1080
+ },
+ {
+ "epoch": 15.013979903888162,
+ "grad_norm": 0.27885961532592773,
+ "learning_rate": 0.0006,
+ "loss": 4.0825958251953125,
+ "step": 1081
+ },
+ {
+ "epoch": 15.027959807776321,
+ "grad_norm": 0.2751246690750122,
+ "learning_rate": 0.0006,
+ "loss": 4.049782752990723,
+ "step": 1082
+ },
+ {
+ "epoch": 15.041939711664483,
+ "grad_norm": 0.25238561630249023,
+ "learning_rate": 0.0006,
+ "loss": 4.067366600036621,
+ "step": 1083
+ },
+ {
+ "epoch": 15.055919615552643,
+ "grad_norm": 0.27481040358543396,
+ "learning_rate": 0.0006,
+ "loss": 4.089946746826172,
+ "step": 1084
+ },
+ {
+ "epoch": 15.069899519440805,
+ "grad_norm": 0.2666703164577484,
+ "learning_rate": 0.0006,
+ "loss": 4.071957588195801,
+ "step": 1085
+ },
+ {
+ "epoch": 15.083879423328964,
+ "grad_norm": 0.2532065212726593,
+ "learning_rate": 0.0006,
+ "loss": 4.091561794281006,
+ "step": 1086
+ },
+ {
+ "epoch": 15.097859327217126,
+ "grad_norm": 0.23562374711036682,
+ "learning_rate": 0.0006,
+ "loss": 4.074953079223633,
+ "step": 1087
+ },
+ {
+ "epoch": 15.111839231105286,
+ "grad_norm": 0.2498065084218979,
+ "learning_rate": 0.0006,
+ "loss": 4.056004047393799,
+ "step": 1088
+ },
+ {
+ "epoch": 15.125819134993447,
+ "grad_norm": 0.257046639919281,
+ "learning_rate": 0.0006,
+ "loss": 4.044149875640869,
+ "step": 1089
+ },
+ {
+ "epoch": 15.139799038881607,
+ "grad_norm": 0.2417808622121811,
+ "learning_rate": 0.0006,
+ "loss": 4.071811676025391,
+ "step": 1090
+ },
+ {
+ "epoch": 15.153778942769769,
+ "grad_norm": 0.24742013216018677,
+ "learning_rate": 0.0006,
+ "loss": 4.081482887268066,
+ "step": 1091
+ },
+ {
+ "epoch": 15.167758846657929,
+ "grad_norm": 0.2610231637954712,
+ "learning_rate": 0.0006,
+ "loss": 4.06953763961792,
+ "step": 1092
+ },
+ {
+ "epoch": 15.18173875054609,
+ "grad_norm": 0.24688200652599335,
+ "learning_rate": 0.0006,
+ "loss": 4.079700469970703,
+ "step": 1093
+ },
+ {
+ "epoch": 15.19571865443425,
+ "grad_norm": 0.2650167942047119,
+ "learning_rate": 0.0006,
+ "loss": 4.082088947296143,
+ "step": 1094
+ },
+ {
+ "epoch": 15.209698558322412,
+ "grad_norm": 0.25913330912590027,
+ "learning_rate": 0.0006,
+ "loss": 4.081713676452637,
+ "step": 1095
+ },
+ {
+ "epoch": 15.223678462210572,
+ "grad_norm": 0.2547631561756134,
+ "learning_rate": 0.0006,
+ "loss": 4.073573112487793,
+ "step": 1096
+ },
+ {
+ "epoch": 15.237658366098733,
+ "grad_norm": 0.2732609510421753,
+ "learning_rate": 0.0006,
+ "loss": 4.10186767578125,
+ "step": 1097
+ },
+ {
+ "epoch": 15.251638269986893,
+ "grad_norm": 0.2990017533302307,
+ "learning_rate": 0.0006,
+ "loss": 4.085466384887695,
+ "step": 1098
+ },
+ {
+ "epoch": 15.265618173875055,
+ "grad_norm": 0.30252209305763245,
+ "learning_rate": 0.0006,
+ "loss": 4.077337265014648,
+ "step": 1099
+ },
+ {
+ "epoch": 15.279598077763215,
+ "grad_norm": 0.30046045780181885,
+ "learning_rate": 0.0006,
+ "loss": 4.0895891189575195,
+ "step": 1100
+ },
+ {
+ "epoch": 15.293577981651376,
+ "grad_norm": 0.2779843211174011,
+ "learning_rate": 0.0006,
+ "loss": 4.060354709625244,
+ "step": 1101
+ },
+ {
+ "epoch": 15.307557885539538,
+ "grad_norm": 0.26914986968040466,
+ "learning_rate": 0.0006,
+ "loss": 4.07314395904541,
+ "step": 1102
+ },
+ {
+ "epoch": 15.321537789427698,
+ "grad_norm": 0.24605873227119446,
+ "learning_rate": 0.0006,
+ "loss": 4.051377296447754,
+ "step": 1103
+ },
+ {
+ "epoch": 15.33551769331586,
+ "grad_norm": 0.25634095072746277,
+ "learning_rate": 0.0006,
+ "loss": 4.082427024841309,
+ "step": 1104
+ },
+ {
+ "epoch": 15.349497597204019,
+ "grad_norm": 0.2888158857822418,
+ "learning_rate": 0.0006,
+ "loss": 4.074253082275391,
+ "step": 1105
+ },
+ {
+ "epoch": 15.36347750109218,
+ "grad_norm": 0.2758261561393738,
+ "learning_rate": 0.0006,
+ "loss": 4.08344841003418,
+ "step": 1106
+ },
+ {
+ "epoch": 15.37745740498034,
+ "grad_norm": 0.26937270164489746,
+ "learning_rate": 0.0006,
+ "loss": 4.063424587249756,
+ "step": 1107
+ },
+ {
+ "epoch": 15.391437308868502,
+ "grad_norm": 0.2739955484867096,
+ "learning_rate": 0.0006,
+ "loss": 4.08005952835083,
+ "step": 1108
+ },
+ {
+ "epoch": 15.405417212756662,
+ "grad_norm": 0.2635386288166046,
+ "learning_rate": 0.0006,
+ "loss": 4.087360382080078,
+ "step": 1109
+ },
+ {
+ "epoch": 15.419397116644824,
+ "grad_norm": 0.2619768977165222,
+ "learning_rate": 0.0006,
+ "loss": 4.072653770446777,
+ "step": 1110
+ },
+ {
+ "epoch": 15.433377020532983,
+ "grad_norm": 0.24154804646968842,
+ "learning_rate": 0.0006,
+ "loss": 4.084464073181152,
+ "step": 1111
+ },
+ {
+ "epoch": 15.447356924421145,
+ "grad_norm": 0.24236027896404266,
+ "learning_rate": 0.0006,
+ "loss": 4.078777313232422,
+ "step": 1112
+ },
+ {
+ "epoch": 15.461336828309305,
+ "grad_norm": 0.24653038382530212,
+ "learning_rate": 0.0006,
+ "loss": 4.075024604797363,
+ "step": 1113
+ },
+ {
+ "epoch": 15.475316732197467,
+ "grad_norm": 0.27106523513793945,
+ "learning_rate": 0.0006,
+ "loss": 4.060937881469727,
+ "step": 1114
+ },
+ {
+ "epoch": 15.489296636085626,
+ "grad_norm": 0.25109633803367615,
+ "learning_rate": 0.0006,
+ "loss": 4.081971168518066,
+ "step": 1115
+ },
+ {
+ "epoch": 15.503276539973788,
+ "grad_norm": 0.23452287912368774,
+ "learning_rate": 0.0006,
+ "loss": 4.0762834548950195,
+ "step": 1116
+ },
+ {
+ "epoch": 15.517256443861948,
+ "grad_norm": 0.25415024161338806,
+ "learning_rate": 0.0006,
+ "loss": 4.069386959075928,
+ "step": 1117
+ },
+ {
+ "epoch": 15.53123634775011,
+ "grad_norm": 0.25448229908943176,
+ "learning_rate": 0.0006,
+ "loss": 4.075098514556885,
+ "step": 1118
+ },
+ {
+ "epoch": 15.54521625163827,
+ "grad_norm": 0.25679755210876465,
+ "learning_rate": 0.0006,
+ "loss": 4.097431182861328,
+ "step": 1119
+ },
+ {
+ "epoch": 15.55919615552643,
+ "grad_norm": 0.25973212718963623,
+ "learning_rate": 0.0006,
+ "loss": 4.058948516845703,
+ "step": 1120
+ },
+ {
+ "epoch": 15.57317605941459,
+ "grad_norm": 0.24511456489562988,
+ "learning_rate": 0.0006,
+ "loss": 4.092263698577881,
+ "step": 1121
+ },
+ {
+ "epoch": 15.587155963302752,
+ "grad_norm": 0.22949442267417908,
+ "learning_rate": 0.0006,
+ "loss": 4.0526604652404785,
+ "step": 1122
+ },
+ {
+ "epoch": 15.601135867190912,
+ "grad_norm": 0.22486285865306854,
+ "learning_rate": 0.0006,
+ "loss": 4.051939010620117,
+ "step": 1123
+ },
+ {
+ "epoch": 15.615115771079074,
+ "grad_norm": 0.22183601558208466,
+ "learning_rate": 0.0006,
+ "loss": 4.065430641174316,
+ "step": 1124
+ },
+ {
+ "epoch": 15.629095674967235,
+ "grad_norm": 0.2531328797340393,
+ "learning_rate": 0.0006,
+ "loss": 4.069165229797363,
+ "step": 1125
+ },
+ {
+ "epoch": 15.643075578855395,
+ "grad_norm": 0.24403320252895355,
+ "learning_rate": 0.0006,
+ "loss": 4.055041790008545,
+ "step": 1126
+ },
+ {
+ "epoch": 15.657055482743557,
+ "grad_norm": 0.24504756927490234,
+ "learning_rate": 0.0006,
+ "loss": 4.035850524902344,
+ "step": 1127
+ },
+ {
+ "epoch": 15.671035386631717,
+ "grad_norm": 0.23812057077884674,
+ "learning_rate": 0.0006,
+ "loss": 4.049278259277344,
+ "step": 1128
+ },
+ {
+ "epoch": 15.685015290519878,
+ "grad_norm": 0.23694153130054474,
+ "learning_rate": 0.0006,
+ "loss": 4.065816402435303,
+ "step": 1129
+ },
+ {
+ "epoch": 15.698995194408038,
+ "grad_norm": 0.23252786695957184,
+ "learning_rate": 0.0006,
+ "loss": 4.05952262878418,
+ "step": 1130
+ },
+ {
+ "epoch": 15.7129750982962,
+ "grad_norm": 0.2243805080652237,
+ "learning_rate": 0.0006,
+ "loss": 4.058291435241699,
+ "step": 1131
+ },
+ {
+ "epoch": 15.72695500218436,
+ "grad_norm": 0.2200988084077835,
+ "learning_rate": 0.0006,
+ "loss": 4.040788650512695,
+ "step": 1132
+ },
+ {
+ "epoch": 15.740934906072521,
+ "grad_norm": 0.21460631489753723,
+ "learning_rate": 0.0006,
+ "loss": 4.072552680969238,
+ "step": 1133
+ },
+ {
+ "epoch": 15.754914809960681,
+ "grad_norm": 0.2056441456079483,
+ "learning_rate": 0.0006,
+ "loss": 4.059467315673828,
+ "step": 1134
+ },
+ {
+ "epoch": 15.768894713848843,
+ "grad_norm": 0.2068045437335968,
+ "learning_rate": 0.0006,
+ "loss": 4.063803195953369,
+ "step": 1135
+ },
+ {
+ "epoch": 15.782874617737003,
+ "grad_norm": 0.21307601034641266,
+ "learning_rate": 0.0006,
+ "loss": 4.093092918395996,
+ "step": 1136
+ },
+ {
+ "epoch": 15.796854521625164,
+ "grad_norm": 0.20729634165763855,
+ "learning_rate": 0.0006,
+ "loss": 4.066030502319336,
+ "step": 1137
+ },
+ {
+ "epoch": 15.810834425513324,
+ "grad_norm": 0.2097514122724533,
+ "learning_rate": 0.0006,
+ "loss": 4.077326774597168,
+ "step": 1138
+ },
+ {
+ "epoch": 15.824814329401486,
+ "grad_norm": 0.21884000301361084,
+ "learning_rate": 0.0006,
+ "loss": 4.0595598220825195,
+ "step": 1139
+ },
+ {
+ "epoch": 15.838794233289645,
+ "grad_norm": 0.22220250964164734,
+ "learning_rate": 0.0006,
+ "loss": 4.061574459075928,
+ "step": 1140
+ },
+ {
+ "epoch": 15.852774137177807,
+ "grad_norm": 0.23189949989318848,
+ "learning_rate": 0.0006,
+ "loss": 4.0504045486450195,
+ "step": 1141
+ },
+ {
+ "epoch": 15.866754041065967,
+ "grad_norm": 0.226649671792984,
+ "learning_rate": 0.0006,
+ "loss": 4.060986518859863,
+ "step": 1142
+ },
+ {
+ "epoch": 15.880733944954128,
+ "grad_norm": 0.2456834763288498,
+ "learning_rate": 0.0006,
+ "loss": 4.038525581359863,
+ "step": 1143
+ },
+ {
+ "epoch": 15.89471384884229,
+ "grad_norm": 0.2818352282047272,
+ "learning_rate": 0.0006,
+ "loss": 4.062709331512451,
+ "step": 1144
+ },
+ {
+ "epoch": 15.90869375273045,
+ "grad_norm": 0.2850170135498047,
+ "learning_rate": 0.0006,
+ "loss": 4.0683274269104,
+ "step": 1145
+ },
+ {
+ "epoch": 15.922673656618612,
+ "grad_norm": 0.27691730856895447,
+ "learning_rate": 0.0006,
+ "loss": 4.076540470123291,
+ "step": 1146
+ },
+ {
+ "epoch": 15.936653560506771,
+ "grad_norm": 0.2685548961162567,
+ "learning_rate": 0.0006,
+ "loss": 4.048116683959961,
+ "step": 1147
+ },
+ {
+ "epoch": 15.950633464394933,
+ "grad_norm": 0.2452288419008255,
+ "learning_rate": 0.0006,
+ "loss": 4.06640625,
+ "step": 1148
+ },
+ {
+ "epoch": 15.964613368283093,
+ "grad_norm": 0.2601441740989685,
+ "learning_rate": 0.0006,
+ "loss": 4.073277473449707,
+ "step": 1149
+ },
+ {
+ "epoch": 15.978593272171254,
+ "grad_norm": 0.2748197913169861,
+ "learning_rate": 0.0006,
+ "loss": 4.0332536697387695,
+ "step": 1150
+ },
+ {
+ "epoch": 15.992573176059414,
+ "grad_norm": 0.27249959111213684,
+ "learning_rate": 0.0006,
+ "loss": 3.9952516555786133,
+ "step": 1151
+ },
+ {
+ "epoch": 16.0,
+ "grad_norm": 0.3475601375102997,
+ "learning_rate": 0.0006,
+ "loss": 4.040761947631836,
+ "step": 1152
+ },
+ {
+ "epoch": 16.0,
+ "eval_loss": 4.237997531890869,
+ "eval_runtime": 43.8692,
+ "eval_samples_per_second": 55.665,
+ "eval_steps_per_second": 3.488,
+ "step": 1152
+ },
+ {
+ "epoch": 16.01397990388816,
+ "grad_norm": 0.3365611433982849,
+ "learning_rate": 0.0006,
+ "loss": 4.031302452087402,
+ "step": 1153
+ },
+ {
+ "epoch": 16.027959807776323,
+ "grad_norm": 0.3020530641078949,
+ "learning_rate": 0.0006,
+ "loss": 4.036273956298828,
+ "step": 1154
+ },
+ {
+ "epoch": 16.041939711664483,
+ "grad_norm": 0.25277993083000183,
+ "learning_rate": 0.0006,
+ "loss": 4.007067680358887,
+ "step": 1155
+ },
+ {
+ "epoch": 16.055919615552643,
+ "grad_norm": 0.24762840569019318,
+ "learning_rate": 0.0006,
+ "loss": 4.046561241149902,
+ "step": 1156
+ },
+ {
+ "epoch": 16.069899519440803,
+ "grad_norm": 0.25236397981643677,
+ "learning_rate": 0.0006,
+ "loss": 4.061616897583008,
+ "step": 1157
+ },
+ {
+ "epoch": 16.083879423328966,
+ "grad_norm": 0.22789105772972107,
+ "learning_rate": 0.0006,
+ "loss": 4.010061740875244,
+ "step": 1158
+ },
+ {
+ "epoch": 16.097859327217126,
+ "grad_norm": 0.21866244077682495,
+ "learning_rate": 0.0006,
+ "loss": 4.0181097984313965,
+ "step": 1159
+ },
+ {
+ "epoch": 16.111839231105286,
+ "grad_norm": 0.21889029443264008,
+ "learning_rate": 0.0006,
+ "loss": 4.012239456176758,
+ "step": 1160
+ },
+ {
+ "epoch": 16.125819134993446,
+ "grad_norm": 0.23002485930919647,
+ "learning_rate": 0.0006,
+ "loss": 4.034092426300049,
+ "step": 1161
+ },
+ {
+ "epoch": 16.13979903888161,
+ "grad_norm": 0.2271798551082611,
+ "learning_rate": 0.0006,
+ "loss": 4.026222229003906,
+ "step": 1162
+ },
+ {
+ "epoch": 16.15377894276977,
+ "grad_norm": 0.238200843334198,
+ "learning_rate": 0.0006,
+ "loss": 4.044692039489746,
+ "step": 1163
+ },
+ {
+ "epoch": 16.16775884665793,
+ "grad_norm": 0.2281467169523239,
+ "learning_rate": 0.0006,
+ "loss": 4.032305717468262,
+ "step": 1164
+ },
+ {
+ "epoch": 16.18173875054609,
+ "grad_norm": 0.2213946431875229,
+ "learning_rate": 0.0006,
+ "loss": 4.048737525939941,
+ "step": 1165
+ },
+ {
+ "epoch": 16.195718654434252,
+ "grad_norm": 0.26638558506965637,
+ "learning_rate": 0.0006,
+ "loss": 4.006335258483887,
+ "step": 1166
+ },
+ {
+ "epoch": 16.209698558322412,
+ "grad_norm": 0.2780219316482544,
+ "learning_rate": 0.0006,
+ "loss": 4.049234390258789,
+ "step": 1167
+ },
+ {
+ "epoch": 16.22367846221057,
+ "grad_norm": 0.27425870299339294,
+ "learning_rate": 0.0006,
+ "loss": 4.017177104949951,
+ "step": 1168
+ },
+ {
+ "epoch": 16.23765836609873,
+ "grad_norm": 0.2596667408943176,
+ "learning_rate": 0.0006,
+ "loss": 4.022942543029785,
+ "step": 1169
+ },
+ {
+ "epoch": 16.251638269986895,
+ "grad_norm": 0.26972314715385437,
+ "learning_rate": 0.0006,
+ "loss": 4.035310745239258,
+ "step": 1170
+ },
+ {
+ "epoch": 16.265618173875055,
+ "grad_norm": 0.2677772045135498,
+ "learning_rate": 0.0006,
+ "loss": 4.0280561447143555,
+ "step": 1171
+ },
+ {
+ "epoch": 16.279598077763215,
+ "grad_norm": 0.25433358550071716,
+ "learning_rate": 0.0006,
+ "loss": 4.03616189956665,
+ "step": 1172
+ },
+ {
+ "epoch": 16.293577981651374,
+ "grad_norm": 0.2583644688129425,
+ "learning_rate": 0.0006,
+ "loss": 4.073624134063721,
+ "step": 1173
+ },
+ {
+ "epoch": 16.307557885539538,
+ "grad_norm": 0.25437524914741516,
+ "learning_rate": 0.0006,
+ "loss": 4.057926654815674,
+ "step": 1174
+ },
+ {
+ "epoch": 16.321537789427698,
+ "grad_norm": 0.2819201350212097,
+ "learning_rate": 0.0006,
+ "loss": 4.020838737487793,
+ "step": 1175
+ },
+ {
+ "epoch": 16.335517693315857,
+ "grad_norm": 0.32689282298088074,
+ "learning_rate": 0.0006,
+ "loss": 4.062448501586914,
+ "step": 1176
+ },
+ {
+ "epoch": 16.34949759720402,
+ "grad_norm": 0.33002278208732605,
+ "learning_rate": 0.0006,
+ "loss": 4.052059173583984,
+ "step": 1177
+ },
+ {
+ "epoch": 16.36347750109218,
+ "grad_norm": 0.32472696900367737,
+ "learning_rate": 0.0006,
+ "loss": 4.042375564575195,
+ "step": 1178
+ },
+ {
+ "epoch": 16.37745740498034,
+ "grad_norm": 0.35279813408851624,
+ "learning_rate": 0.0006,
+ "loss": 4.028722763061523,
+ "step": 1179
+ },
+ {
+ "epoch": 16.3914373088685,
+ "grad_norm": 0.3243204951286316,
+ "learning_rate": 0.0006,
+ "loss": 4.045693874359131,
+ "step": 1180
+ },
+ {
+ "epoch": 16.405417212756664,
+ "grad_norm": 0.32171115279197693,
+ "learning_rate": 0.0006,
+ "loss": 4.018350124359131,
+ "step": 1181
+ },
+ {
+ "epoch": 16.419397116644824,
+ "grad_norm": 0.31459906697273254,
+ "learning_rate": 0.0006,
+ "loss": 4.039547443389893,
+ "step": 1182
+ },
+ {
+ "epoch": 16.433377020532983,
+ "grad_norm": 0.35038673877716064,
+ "learning_rate": 0.0006,
+ "loss": 4.005928039550781,
+ "step": 1183
+ },
+ {
+ "epoch": 16.447356924421143,
+ "grad_norm": 0.34110963344573975,
+ "learning_rate": 0.0006,
+ "loss": 4.042272090911865,
+ "step": 1184
+ },
+ {
+ "epoch": 16.461336828309307,
+ "grad_norm": 0.33760902285575867,
+ "learning_rate": 0.0006,
+ "loss": 4.02886962890625,
+ "step": 1185
+ },
+ {
+ "epoch": 16.475316732197467,
+ "grad_norm": 0.3162464499473572,
+ "learning_rate": 0.0006,
+ "loss": 4.059924125671387,
+ "step": 1186
+ },
+ {
+ "epoch": 16.489296636085626,
+ "grad_norm": 0.2667233645915985,
+ "learning_rate": 0.0006,
+ "loss": 4.069073677062988,
+ "step": 1187
+ },
+ {
+ "epoch": 16.503276539973786,
+ "grad_norm": 0.22626568377017975,
+ "learning_rate": 0.0006,
+ "loss": 4.044912338256836,
+ "step": 1188
+ },
+ {
+ "epoch": 16.51725644386195,
+ "grad_norm": 0.203303262591362,
+ "learning_rate": 0.0006,
+ "loss": 4.025210380554199,
+ "step": 1189
+ },
+ {
+ "epoch": 16.53123634775011,
+ "grad_norm": 0.2108820080757141,
+ "learning_rate": 0.0006,
+ "loss": 4.035998821258545,
+ "step": 1190
+ },
+ {
+ "epoch": 16.54521625163827,
+ "grad_norm": 0.20451335608959198,
+ "learning_rate": 0.0006,
+ "loss": 4.043377876281738,
+ "step": 1191
+ },
+ {
+ "epoch": 16.55919615552643,
+ "grad_norm": 0.23348836600780487,
+ "learning_rate": 0.0006,
+ "loss": 4.033735275268555,
+ "step": 1192
+ },
+ {
+ "epoch": 16.573176059414592,
+ "grad_norm": 0.24438607692718506,
+ "learning_rate": 0.0006,
+ "loss": 4.071747779846191,
+ "step": 1193
+ },
+ {
+ "epoch": 16.587155963302752,
+ "grad_norm": 0.24233631789684296,
+ "learning_rate": 0.0006,
+ "loss": 4.0138702392578125,
+ "step": 1194
+ },
+ {
+ "epoch": 16.601135867190912,
+ "grad_norm": 0.21625740826129913,
+ "learning_rate": 0.0006,
+ "loss": 4.013422012329102,
+ "step": 1195
+ },
+ {
+ "epoch": 16.615115771079076,
+ "grad_norm": 0.22447720170021057,
+ "learning_rate": 0.0006,
+ "loss": 4.056326866149902,
+ "step": 1196
+ },
+ {
+ "epoch": 16.629095674967235,
+ "grad_norm": 0.21899616718292236,
+ "learning_rate": 0.0006,
+ "loss": 4.006134033203125,
+ "step": 1197
+ },
+ {
+ "epoch": 16.643075578855395,
+ "grad_norm": 0.191362664103508,
+ "learning_rate": 0.0006,
+ "loss": 4.036748886108398,
+ "step": 1198
+ },
+ {
+ "epoch": 16.657055482743555,
+ "grad_norm": 0.20203463733196259,
+ "learning_rate": 0.0006,
+ "loss": 4.006264686584473,
+ "step": 1199
+ },
+ {
+ "epoch": 16.67103538663172,
+ "grad_norm": 0.20209139585494995,
+ "learning_rate": 0.0006,
+ "loss": 4.059018135070801,
+ "step": 1200
+ },
+ {
+ "epoch": 16.68501529051988,
+ "grad_norm": 0.20811820030212402,
+ "learning_rate": 0.0006,
+ "loss": 4.054325103759766,
+ "step": 1201
+ },
+ {
+ "epoch": 16.698995194408038,
+ "grad_norm": 0.22448928654193878,
+ "learning_rate": 0.0006,
+ "loss": 3.996121406555176,
+ "step": 1202
+ },
+ {
+ "epoch": 16.712975098296198,
+ "grad_norm": 0.21692240238189697,
+ "learning_rate": 0.0006,
+ "loss": 4.042046546936035,
+ "step": 1203
+ },
+ {
+ "epoch": 16.72695500218436,
+ "grad_norm": 0.20688563585281372,
+ "learning_rate": 0.0006,
+ "loss": 4.002251625061035,
+ "step": 1204
+ },
+ {
+ "epoch": 16.74093490607252,
+ "grad_norm": 0.1835535764694214,
+ "learning_rate": 0.0006,
+ "loss": 4.02545166015625,
+ "step": 1205
+ },
+ {
+ "epoch": 16.75491480996068,
+ "grad_norm": 0.20532558858394623,
+ "learning_rate": 0.0006,
+ "loss": 4.039333343505859,
+ "step": 1206
+ },
+ {
+ "epoch": 16.76889471384884,
+ "grad_norm": 0.2214215099811554,
+ "learning_rate": 0.0006,
+ "loss": 4.037858486175537,
+ "step": 1207
+ },
+ {
+ "epoch": 16.782874617737004,
+ "grad_norm": 0.24926038086414337,
+ "learning_rate": 0.0006,
+ "loss": 4.024799346923828,
+ "step": 1208
+ },
+ {
+ "epoch": 16.796854521625164,
+ "grad_norm": 0.26057952642440796,
+ "learning_rate": 0.0006,
+ "loss": 4.042788505554199,
+ "step": 1209
+ },
+ {
+ "epoch": 16.810834425513324,
+ "grad_norm": 0.2501208782196045,
+ "learning_rate": 0.0006,
+ "loss": 4.051809310913086,
+ "step": 1210
+ },
+ {
+ "epoch": 16.824814329401484,
+ "grad_norm": 0.21760012209415436,
+ "learning_rate": 0.0006,
+ "loss": 4.063589096069336,
+ "step": 1211
+ },
+ {
+ "epoch": 16.838794233289647,
+ "grad_norm": 0.2243622988462448,
+ "learning_rate": 0.0006,
+ "loss": 4.008829593658447,
+ "step": 1212
+ },
+ {
+ "epoch": 16.852774137177807,
+ "grad_norm": 0.2399163395166397,
+ "learning_rate": 0.0006,
+ "loss": 4.013262748718262,
+ "step": 1213
+ },
+ {
+ "epoch": 16.866754041065967,
+ "grad_norm": 0.23187831044197083,
+ "learning_rate": 0.0006,
+ "loss": 4.023053169250488,
+ "step": 1214
+ },
+ {
+ "epoch": 16.88073394495413,
+ "grad_norm": 0.23723892867565155,
+ "learning_rate": 0.0006,
+ "loss": 3.991321563720703,
+ "step": 1215
+ },
+ {
+ "epoch": 16.89471384884229,
+ "grad_norm": 0.21766342222690582,
+ "learning_rate": 0.0006,
+ "loss": 4.0250773429870605,
+ "step": 1216
+ },
+ {
+ "epoch": 16.90869375273045,
+ "grad_norm": 0.20715023577213287,
+ "learning_rate": 0.0006,
+ "loss": 4.063642978668213,
+ "step": 1217
+ },
+ {
+ "epoch": 16.92267365661861,
+ "grad_norm": 0.20165133476257324,
+ "learning_rate": 0.0006,
+ "loss": 3.9951367378234863,
+ "step": 1218
+ },
+ {
+ "epoch": 16.936653560506773,
+ "grad_norm": 0.19956178963184357,
+ "learning_rate": 0.0006,
+ "loss": 4.025641441345215,
+ "step": 1219
+ },
+ {
+ "epoch": 16.950633464394933,
+ "grad_norm": 0.2175494134426117,
+ "learning_rate": 0.0006,
+ "loss": 4.030346393585205,
+ "step": 1220
+ },
+ {
+ "epoch": 16.964613368283093,
+ "grad_norm": 0.22365593910217285,
+ "learning_rate": 0.0006,
+ "loss": 4.018105506896973,
+ "step": 1221
+ },
+ {
+ "epoch": 16.978593272171253,
+ "grad_norm": 0.21251538395881653,
+ "learning_rate": 0.0006,
+ "loss": 4.023580074310303,
+ "step": 1222
+ },
+ {
+ "epoch": 16.992573176059416,
+ "grad_norm": 0.2230125218629837,
+ "learning_rate": 0.0006,
+ "loss": 4.001980304718018,
+ "step": 1223
+ },
+ {
+ "epoch": 17.0,
+ "grad_norm": 0.24261972308158875,
+ "learning_rate": 0.0006,
+ "loss": 4.081348896026611,
+ "step": 1224
+ },
+ {
+ "epoch": 17.0,
+ "eval_loss": 4.225194931030273,
+ "eval_runtime": 44.247,
+ "eval_samples_per_second": 55.19,
+ "eval_steps_per_second": 3.458,
+ "step": 1224
+ },
+ {
+ "epoch": 17.01397990388816,
+ "grad_norm": 0.2438880205154419,
+ "learning_rate": 0.0006,
+ "loss": 4.0164794921875,
+ "step": 1225
+ },
+ {
+ "epoch": 17.027959807776323,
+ "grad_norm": 0.22459383308887482,
+ "learning_rate": 0.0006,
+ "loss": 3.991623878479004,
+ "step": 1226
+ },
+ {
+ "epoch": 17.041939711664483,
+ "grad_norm": 0.25021040439605713,
+ "learning_rate": 0.0006,
+ "loss": 4.003020286560059,
+ "step": 1227
+ },
+ {
+ "epoch": 17.055919615552643,
+ "grad_norm": 0.30358025431632996,
+ "learning_rate": 0.0006,
+ "loss": 3.980921983718872,
+ "step": 1228
+ },
+ {
+ "epoch": 17.069899519440803,
+ "grad_norm": 0.27313271164894104,
+ "learning_rate": 0.0006,
+ "loss": 3.992398977279663,
+ "step": 1229
+ },
+ {
+ "epoch": 17.083879423328966,
+ "grad_norm": 0.2293211966753006,
+ "learning_rate": 0.0006,
+ "loss": 4.02568244934082,
+ "step": 1230
+ },
+ {
+ "epoch": 17.097859327217126,
+ "grad_norm": 0.2363300621509552,
+ "learning_rate": 0.0006,
+ "loss": 3.977229356765747,
+ "step": 1231
+ },
+ {
+ "epoch": 17.111839231105286,
+ "grad_norm": 0.2809674143791199,
+ "learning_rate": 0.0006,
+ "loss": 3.9720497131347656,
+ "step": 1232
+ },
+ {
+ "epoch": 17.125819134993446,
+ "grad_norm": 0.2913855016231537,
+ "learning_rate": 0.0006,
+ "loss": 3.979529857635498,
+ "step": 1233
+ },
+ {
+ "epoch": 17.13979903888161,
+ "grad_norm": 0.2920287251472473,
+ "learning_rate": 0.0006,
+ "loss": 3.9678473472595215,
+ "step": 1234
+ },
+ {
+ "epoch": 17.15377894276977,
+ "grad_norm": 0.2521543502807617,
+ "learning_rate": 0.0006,
+ "loss": 3.9912607669830322,
+ "step": 1235
+ },
+ {
+ "epoch": 17.16775884665793,
+ "grad_norm": 0.22844268381595612,
+ "learning_rate": 0.0006,
+ "loss": 3.9898228645324707,
+ "step": 1236
+ },
+ {
+ "epoch": 17.18173875054609,
+ "grad_norm": 0.2199884057044983,
+ "learning_rate": 0.0006,
+ "loss": 4.0050740242004395,
+ "step": 1237
+ },
+ {
+ "epoch": 17.195718654434252,
+ "grad_norm": 0.23072892427444458,
+ "learning_rate": 0.0006,
+ "loss": 3.9957475662231445,
+ "step": 1238
+ },
+ {
+ "epoch": 17.209698558322412,
+ "grad_norm": 0.2034899890422821,
+ "learning_rate": 0.0006,
+ "loss": 3.9672317504882812,
+ "step": 1239
+ },
+ {
+ "epoch": 17.22367846221057,
+ "grad_norm": 0.21826180815696716,
+ "learning_rate": 0.0006,
+ "loss": 3.98543119430542,
+ "step": 1240
+ },
+ {
+ "epoch": 17.23765836609873,
+ "grad_norm": 0.21203237771987915,
+ "learning_rate": 0.0006,
+ "loss": 3.9971959590911865,
+ "step": 1241
+ },
+ {
+ "epoch": 17.251638269986895,
+ "grad_norm": 0.22139234840869904,
+ "learning_rate": 0.0006,
+ "loss": 4.017539978027344,
+ "step": 1242
+ },
+ {
+ "epoch": 17.265618173875055,
+ "grad_norm": 0.21553276479244232,
+ "learning_rate": 0.0006,
+ "loss": 3.98740553855896,
+ "step": 1243
+ },
+ {
+ "epoch": 17.279598077763215,
+ "grad_norm": 0.23259080946445465,
+ "learning_rate": 0.0006,
+ "loss": 3.9963035583496094,
+ "step": 1244
+ },
+ {
+ "epoch": 17.293577981651374,
+ "grad_norm": 0.2527932822704315,
+ "learning_rate": 0.0006,
+ "loss": 4.0202956199646,
+ "step": 1245
+ },
+ {
+ "epoch": 17.307557885539538,
+ "grad_norm": 0.28669068217277527,
+ "learning_rate": 0.0006,
+ "loss": 3.9947609901428223,
+ "step": 1246
+ },
+ {
+ "epoch": 17.321537789427698,
+ "grad_norm": 0.341602623462677,
+ "learning_rate": 0.0006,
+ "loss": 3.997032642364502,
+ "step": 1247
+ },
+ {
+ "epoch": 17.335517693315857,
+ "grad_norm": 0.3364104926586151,
+ "learning_rate": 0.0006,
+ "loss": 3.9881834983825684,
+ "step": 1248
+ },
+ {
+ "epoch": 17.34949759720402,
+ "grad_norm": 0.2979278266429901,
+ "learning_rate": 0.0006,
+ "loss": 4.045898914337158,
+ "step": 1249
+ },
+ {
+ "epoch": 17.36347750109218,
+ "grad_norm": 0.2857462465763092,
+ "learning_rate": 0.0006,
+ "loss": 4.0085272789001465,
+ "step": 1250
+ },
+ {
+ "epoch": 17.37745740498034,
+ "grad_norm": 0.2689058780670166,
+ "learning_rate": 0.0006,
+ "loss": 4.021465301513672,
+ "step": 1251
+ },
+ {
+ "epoch": 17.3914373088685,
+ "grad_norm": 0.24943363666534424,
+ "learning_rate": 0.0006,
+ "loss": 4.003451347351074,
+ "step": 1252
+ },
+ {
+ "epoch": 17.405417212756664,
+ "grad_norm": 0.2635347843170166,
+ "learning_rate": 0.0006,
+ "loss": 3.9837827682495117,
+ "step": 1253
+ },
+ {
+ "epoch": 17.419397116644824,
+ "grad_norm": 0.29126450419425964,
+ "learning_rate": 0.0006,
+ "loss": 3.9857311248779297,
+ "step": 1254
+ },
+ {
+ "epoch": 17.433377020532983,
+ "grad_norm": 0.3166918456554413,
+ "learning_rate": 0.0006,
+ "loss": 3.9842967987060547,
+ "step": 1255
+ },
+ {
+ "epoch": 17.447356924421143,
+ "grad_norm": 0.27869969606399536,
+ "learning_rate": 0.0006,
+ "loss": 4.012607574462891,
+ "step": 1256
+ },
+ {
+ "epoch": 17.461336828309307,
+ "grad_norm": 0.23719419538974762,
+ "learning_rate": 0.0006,
+ "loss": 3.981034755706787,
+ "step": 1257
+ },
+ {
+ "epoch": 17.475316732197467,
+ "grad_norm": 0.22687610983848572,
+ "learning_rate": 0.0006,
+ "loss": 4.011059761047363,
+ "step": 1258
+ },
+ {
+ "epoch": 17.489296636085626,
+ "grad_norm": 0.22034095227718353,
+ "learning_rate": 0.0006,
+ "loss": 4.015044689178467,
+ "step": 1259
+ },
+ {
+ "epoch": 17.503276539973786,
+ "grad_norm": 0.21208405494689941,
+ "learning_rate": 0.0006,
+ "loss": 4.003793716430664,
+ "step": 1260
+ },
+ {
+ "epoch": 17.51725644386195,
+ "grad_norm": 0.21759214997291565,
+ "learning_rate": 0.0006,
+ "loss": 3.978652238845825,
+ "step": 1261
+ },
+ {
+ "epoch": 17.53123634775011,
+ "grad_norm": 0.22481068968772888,
+ "learning_rate": 0.0006,
+ "loss": 4.034845352172852,
+ "step": 1262
+ },
+ {
+ "epoch": 17.54521625163827,
+ "grad_norm": 0.20376387238502502,
+ "learning_rate": 0.0006,
+ "loss": 3.990541934967041,
+ "step": 1263
+ },
+ {
+ "epoch": 17.55919615552643,
+ "grad_norm": 0.20459355413913727,
+ "learning_rate": 0.0006,
+ "loss": 4.006990432739258,
+ "step": 1264
+ },
+ {
+ "epoch": 17.573176059414592,
+ "grad_norm": 0.19306913018226624,
+ "learning_rate": 0.0006,
+ "loss": 3.993408679962158,
+ "step": 1265
+ },
+ {
+ "epoch": 17.587155963302752,
+ "grad_norm": 0.20727239549160004,
+ "learning_rate": 0.0006,
+ "loss": 3.988016128540039,
+ "step": 1266
+ },
+ {
+ "epoch": 17.601135867190912,
+ "grad_norm": 0.20213133096694946,
+ "learning_rate": 0.0006,
+ "loss": 4.0120368003845215,
+ "step": 1267
+ },
+ {
+ "epoch": 17.615115771079076,
+ "grad_norm": 0.21074117720127106,
+ "learning_rate": 0.0006,
+ "loss": 4.048871040344238,
+ "step": 1268
+ },
+ {
+ "epoch": 17.629095674967235,
+ "grad_norm": 0.2074330598115921,
+ "learning_rate": 0.0006,
+ "loss": 3.997509002685547,
+ "step": 1269
+ },
+ {
+ "epoch": 17.643075578855395,
+ "grad_norm": 0.20383669435977936,
+ "learning_rate": 0.0006,
+ "loss": 4.0028839111328125,
+ "step": 1270
+ },
+ {
+ "epoch": 17.657055482743555,
+ "grad_norm": 0.2060765027999878,
+ "learning_rate": 0.0006,
+ "loss": 3.998032331466675,
+ "step": 1271
+ },
+ {
+ "epoch": 17.67103538663172,
+ "grad_norm": 0.21851404011249542,
+ "learning_rate": 0.0006,
+ "loss": 3.9928741455078125,
+ "step": 1272
+ },
+ {
+ "epoch": 17.68501529051988,
+ "grad_norm": 0.24324250221252441,
+ "learning_rate": 0.0006,
+ "loss": 3.9896507263183594,
+ "step": 1273
+ },
+ {
+ "epoch": 17.698995194408038,
+ "grad_norm": 0.25584331154823303,
+ "learning_rate": 0.0006,
+ "loss": 4.010485649108887,
+ "step": 1274
+ },
+ {
+ "epoch": 17.712975098296198,
+ "grad_norm": 0.2490610033273697,
+ "learning_rate": 0.0006,
+ "loss": 3.9906954765319824,
+ "step": 1275
+ },
+ {
+ "epoch": 17.72695500218436,
+ "grad_norm": 0.24241414666175842,
+ "learning_rate": 0.0006,
+ "loss": 4.016420364379883,
+ "step": 1276
+ },
+ {
+ "epoch": 17.74093490607252,
+ "grad_norm": 0.2222128063440323,
+ "learning_rate": 0.0006,
+ "loss": 4.009827136993408,
+ "step": 1277
+ },
+ {
+ "epoch": 17.75491480996068,
+ "grad_norm": 0.23119516670703888,
+ "learning_rate": 0.0006,
+ "loss": 4.0034589767456055,
+ "step": 1278
+ },
+ {
+ "epoch": 17.76889471384884,
+ "grad_norm": 0.24596457183361053,
+ "learning_rate": 0.0006,
+ "loss": 4.003161907196045,
+ "step": 1279
+ },
+ {
+ "epoch": 17.782874617737004,
+ "grad_norm": 0.2607562839984894,
+ "learning_rate": 0.0006,
+ "loss": 3.9894633293151855,
+ "step": 1280
+ },
+ {
+ "epoch": 17.796854521625164,
+ "grad_norm": 0.28706878423690796,
+ "learning_rate": 0.0006,
+ "loss": 4.005712985992432,
+ "step": 1281
+ },
+ {
+ "epoch": 17.810834425513324,
+ "grad_norm": 0.27178290486335754,
+ "learning_rate": 0.0006,
+ "loss": 3.9784536361694336,
+ "step": 1282
+ },
+ {
+ "epoch": 17.824814329401484,
+ "grad_norm": 0.27962708473205566,
+ "learning_rate": 0.0006,
+ "loss": 4.012705326080322,
+ "step": 1283
+ },
+ {
+ "epoch": 17.838794233289647,
+ "grad_norm": 0.29147693514823914,
+ "learning_rate": 0.0006,
+ "loss": 4.0159783363342285,
+ "step": 1284
+ },
+ {
+ "epoch": 17.852774137177807,
+ "grad_norm": 0.2841821312904358,
+ "learning_rate": 0.0006,
+ "loss": 4.011552810668945,
+ "step": 1285
+ },
+ {
+ "epoch": 17.866754041065967,
+ "grad_norm": 0.24924969673156738,
+ "learning_rate": 0.0006,
+ "loss": 3.992421865463257,
+ "step": 1286
+ },
+ {
+ "epoch": 17.88073394495413,
+ "grad_norm": 0.24850749969482422,
+ "learning_rate": 0.0006,
+ "loss": 3.974897861480713,
+ "step": 1287
+ },
+ {
+ "epoch": 17.89471384884229,
+ "grad_norm": 0.2409554123878479,
+ "learning_rate": 0.0006,
+ "loss": 4.002941131591797,
+ "step": 1288
+ },
+ {
+ "epoch": 17.90869375273045,
+ "grad_norm": 0.2656126320362091,
+ "learning_rate": 0.0006,
+ "loss": 3.9804210662841797,
+ "step": 1289
+ },
+ {
+ "epoch": 17.92267365661861,
+ "grad_norm": 0.28210243582725525,
+ "learning_rate": 0.0006,
+ "loss": 4.007192134857178,
+ "step": 1290
+ },
+ {
+ "epoch": 17.936653560506773,
+ "grad_norm": 0.28427553176879883,
+ "learning_rate": 0.0006,
+ "loss": 3.9739556312561035,
+ "step": 1291
+ },
+ {
+ "epoch": 17.950633464394933,
+ "grad_norm": 0.28893420100212097,
+ "learning_rate": 0.0006,
+ "loss": 4.004766941070557,
+ "step": 1292
+ },
+ {
+ "epoch": 17.964613368283093,
+ "grad_norm": 0.2831471562385559,
+ "learning_rate": 0.0006,
+ "loss": 3.984936237335205,
+ "step": 1293
+ },
+ {
+ "epoch": 17.978593272171253,
+ "grad_norm": 0.2518300712108612,
+ "learning_rate": 0.0006,
+ "loss": 4.002814292907715,
+ "step": 1294
+ },
+ {
+ "epoch": 17.992573176059416,
+ "grad_norm": 0.24264675378799438,
+ "learning_rate": 0.0006,
+ "loss": 3.998900890350342,
+ "step": 1295
+ },
+ {
+ "epoch": 18.0,
+ "grad_norm": 0.24474996328353882,
+ "learning_rate": 0.0006,
+ "loss": 3.974229335784912,
+ "step": 1296
+ },
+ {
+ "epoch": 18.0,
+ "eval_loss": 4.195685863494873,
+ "eval_runtime": 44.0709,
+ "eval_samples_per_second": 55.411,
+ "eval_steps_per_second": 3.472,
+ "step": 1296
+ },
+ {
+ "epoch": 18.01397990388816,
+ "grad_norm": 0.2553016245365143,
+ "learning_rate": 0.0006,
+ "loss": 3.9522247314453125,
+ "step": 1297
+ },
+ {
+ "epoch": 18.027959807776323,
+ "grad_norm": 0.22350727021694183,
+ "learning_rate": 0.0006,
+ "loss": 3.9850122928619385,
+ "step": 1298
+ },
+ {
+ "epoch": 18.041939711664483,
+ "grad_norm": 0.23935550451278687,
+ "learning_rate": 0.0006,
+ "loss": 3.9758832454681396,
+ "step": 1299
+ },
+ {
+ "epoch": 18.055919615552643,
+ "grad_norm": 0.23868797719478607,
+ "learning_rate": 0.0006,
+ "loss": 3.9567959308624268,
+ "step": 1300
+ },
+ {
+ "epoch": 18.069899519440803,
+ "grad_norm": 0.23102357983589172,
+ "learning_rate": 0.0006,
+ "loss": 3.9399867057800293,
+ "step": 1301
+ },
+ {
+ "epoch": 18.083879423328966,
+ "grad_norm": 0.23706983029842377,
+ "learning_rate": 0.0006,
+ "loss": 3.993434190750122,
+ "step": 1302
+ },
+ {
+ "epoch": 18.097859327217126,
+ "grad_norm": 0.22207573056221008,
+ "learning_rate": 0.0006,
+ "loss": 3.993436574935913,
+ "step": 1303
+ },
+ {
+ "epoch": 18.111839231105286,
+ "grad_norm": 0.23975296318531036,
+ "learning_rate": 0.0006,
+ "loss": 3.981943368911743,
+ "step": 1304
+ },
+ {
+ "epoch": 18.125819134993446,
+ "grad_norm": 0.2520582675933838,
+ "learning_rate": 0.0006,
+ "loss": 3.965493679046631,
+ "step": 1305
+ },
+ {
+ "epoch": 18.13979903888161,
+ "grad_norm": 0.2230956256389618,
+ "learning_rate": 0.0006,
+ "loss": 3.9360928535461426,
+ "step": 1306
+ },
+ {
+ "epoch": 18.15377894276977,
+ "grad_norm": 0.22527500987052917,
+ "learning_rate": 0.0006,
+ "loss": 3.9814581871032715,
+ "step": 1307
+ },
+ {
+ "epoch": 18.16775884665793,
+ "grad_norm": 0.22389626502990723,
+ "learning_rate": 0.0006,
+ "loss": 3.961590051651001,
+ "step": 1308
+ },
+ {
+ "epoch": 18.18173875054609,
+ "grad_norm": 0.22279471158981323,
+ "learning_rate": 0.0006,
+ "loss": 3.952338695526123,
+ "step": 1309
+ },
+ {
+ "epoch": 18.195718654434252,
+ "grad_norm": 0.24635115265846252,
+ "learning_rate": 0.0006,
+ "loss": 3.9693849086761475,
+ "step": 1310
+ },
+ {
+ "epoch": 18.209698558322412,
+ "grad_norm": 0.2757279872894287,
+ "learning_rate": 0.0006,
+ "loss": 3.9956700801849365,
+ "step": 1311
+ },
+ {
+ "epoch": 18.22367846221057,
+ "grad_norm": 0.2619115710258484,
+ "learning_rate": 0.0006,
+ "loss": 3.948878765106201,
+ "step": 1312
+ },
+ {
+ "epoch": 18.23765836609873,
+ "grad_norm": 0.22853828966617584,
+ "learning_rate": 0.0006,
+ "loss": 3.9545674324035645,
+ "step": 1313
+ },
+ {
+ "epoch": 18.251638269986895,
+ "grad_norm": 0.22904761135578156,
+ "learning_rate": 0.0006,
+ "loss": 3.947535991668701,
+ "step": 1314
+ },
+ {
+ "epoch": 18.265618173875055,
+ "grad_norm": 0.23592644929885864,
+ "learning_rate": 0.0006,
+ "loss": 3.971926212310791,
+ "step": 1315
+ },
+ {
+ "epoch": 18.279598077763215,
+ "grad_norm": 0.22120243310928345,
+ "learning_rate": 0.0006,
+ "loss": 3.9471049308776855,
+ "step": 1316
+ },
+ {
+ "epoch": 18.293577981651374,
+ "grad_norm": 0.20308749377727509,
+ "learning_rate": 0.0006,
+ "loss": 3.967449188232422,
+ "step": 1317
+ },
+ {
+ "epoch": 18.307557885539538,
+ "grad_norm": 0.20013529062271118,
+ "learning_rate": 0.0006,
+ "loss": 3.966151237487793,
+ "step": 1318
+ },
+ {
+ "epoch": 18.321537789427698,
+ "grad_norm": 0.20635221898555756,
+ "learning_rate": 0.0006,
+ "loss": 3.9908885955810547,
+ "step": 1319
+ },
+ {
+ "epoch": 18.335517693315857,
+ "grad_norm": 0.2232237160205841,
+ "learning_rate": 0.0006,
+ "loss": 3.9488768577575684,
+ "step": 1320
+ },
+ {
+ "epoch": 18.34949759720402,
+ "grad_norm": 0.21916444599628448,
+ "learning_rate": 0.0006,
+ "loss": 3.973428726196289,
+ "step": 1321
+ },
+ {
+ "epoch": 18.36347750109218,
+ "grad_norm": 0.20427337288856506,
+ "learning_rate": 0.0006,
+ "loss": 3.969332695007324,
+ "step": 1322
+ },
+ {
+ "epoch": 18.37745740498034,
+ "grad_norm": 0.20138131082057953,
+ "learning_rate": 0.0006,
+ "loss": 3.9651856422424316,
+ "step": 1323
+ },
+ {
+ "epoch": 18.3914373088685,
+ "grad_norm": 0.18918880820274353,
+ "learning_rate": 0.0006,
+ "loss": 3.9772281646728516,
+ "step": 1324
+ },
+ {
+ "epoch": 18.405417212756664,
+ "grad_norm": 0.1860039383172989,
+ "learning_rate": 0.0006,
+ "loss": 3.9289052486419678,
+ "step": 1325
+ },
+ {
+ "epoch": 18.419397116644824,
+ "grad_norm": 0.19541646540164948,
+ "learning_rate": 0.0006,
+ "loss": 3.9527673721313477,
+ "step": 1326
+ },
+ {
+ "epoch": 18.433377020532983,
+ "grad_norm": 0.206914022564888,
+ "learning_rate": 0.0006,
+ "loss": 3.99316143989563,
+ "step": 1327
+ },
+ {
+ "epoch": 18.447356924421143,
+ "grad_norm": 0.209097757935524,
+ "learning_rate": 0.0006,
+ "loss": 3.978130340576172,
+ "step": 1328
+ },
+ {
+ "epoch": 18.461336828309307,
+ "grad_norm": 0.22163373231887817,
+ "learning_rate": 0.0006,
+ "loss": 3.951460361480713,
+ "step": 1329
+ },
+ {
+ "epoch": 18.475316732197467,
+ "grad_norm": 0.21446120738983154,
+ "learning_rate": 0.0006,
+ "loss": 3.963571071624756,
+ "step": 1330
+ },
+ {
+ "epoch": 18.489296636085626,
+ "grad_norm": 0.2341388761997223,
+ "learning_rate": 0.0006,
+ "loss": 4.010684013366699,
+ "step": 1331
+ },
+ {
+ "epoch": 18.503276539973786,
+ "grad_norm": 0.2433937042951584,
+ "learning_rate": 0.0006,
+ "loss": 3.987537384033203,
+ "step": 1332
+ },
+ {
+ "epoch": 18.51725644386195,
+ "grad_norm": 0.24916228652000427,
+ "learning_rate": 0.0006,
+ "loss": 3.953075647354126,
+ "step": 1333
+ },
+ {
+ "epoch": 18.53123634775011,
+ "grad_norm": 0.24542421102523804,
+ "learning_rate": 0.0006,
+ "loss": 3.9510841369628906,
+ "step": 1334
+ },
+ {
+ "epoch": 18.54521625163827,
+ "grad_norm": 0.2393690049648285,
+ "learning_rate": 0.0006,
+ "loss": 3.981747627258301,
+ "step": 1335
+ },
+ {
+ "epoch": 18.55919615552643,
+ "grad_norm": 0.22806711494922638,
+ "learning_rate": 0.0006,
+ "loss": 3.9714856147766113,
+ "step": 1336
+ },
+ {
+ "epoch": 18.573176059414592,
+ "grad_norm": 0.21948303282260895,
+ "learning_rate": 0.0006,
+ "loss": 3.9429898262023926,
+ "step": 1337
+ },
+ {
+ "epoch": 18.587155963302752,
+ "grad_norm": 0.21575778722763062,
+ "learning_rate": 0.0006,
+ "loss": 3.9639933109283447,
+ "step": 1338
+ },
+ {
+ "epoch": 18.601135867190912,
+ "grad_norm": 0.23370565474033356,
+ "learning_rate": 0.0006,
+ "loss": 3.9819254875183105,
+ "step": 1339
+ },
+ {
+ "epoch": 18.615115771079076,
+ "grad_norm": 0.2613106369972229,
+ "learning_rate": 0.0006,
+ "loss": 3.9654669761657715,
+ "step": 1340
+ },
+ {
+ "epoch": 18.629095674967235,
+ "grad_norm": 0.26682716608047485,
+ "learning_rate": 0.0006,
+ "loss": 3.9832968711853027,
+ "step": 1341
+ },
+ {
+ "epoch": 18.643075578855395,
+ "grad_norm": 0.24331490695476532,
+ "learning_rate": 0.0006,
+ "loss": 3.9926600456237793,
+ "step": 1342
+ },
+ {
+ "epoch": 18.657055482743555,
+ "grad_norm": 0.2459341287612915,
+ "learning_rate": 0.0006,
+ "loss": 3.9508986473083496,
+ "step": 1343
+ },
+ {
+ "epoch": 18.67103538663172,
+ "grad_norm": 0.26395753026008606,
+ "learning_rate": 0.0006,
+ "loss": 3.961359977722168,
+ "step": 1344
+ },
+ {
+ "epoch": 18.68501529051988,
+ "grad_norm": 0.26049068570137024,
+ "learning_rate": 0.0006,
+ "loss": 3.9763245582580566,
+ "step": 1345
+ },
+ {
+ "epoch": 18.698995194408038,
+ "grad_norm": 0.24018602073192596,
+ "learning_rate": 0.0006,
+ "loss": 3.951780319213867,
+ "step": 1346
+ },
+ {
+ "epoch": 18.712975098296198,
+ "grad_norm": 0.23886290192604065,
+ "learning_rate": 0.0006,
+ "loss": 3.9883017539978027,
+ "step": 1347
+ },
+ {
+ "epoch": 18.72695500218436,
+ "grad_norm": 0.2293774038553238,
+ "learning_rate": 0.0006,
+ "loss": 3.9852685928344727,
+ "step": 1348
+ },
+ {
+ "epoch": 18.74093490607252,
+ "grad_norm": 0.22172975540161133,
+ "learning_rate": 0.0006,
+ "loss": 3.967550277709961,
+ "step": 1349
+ },
+ {
+ "epoch": 18.75491480996068,
+ "grad_norm": 0.2170475423336029,
+ "learning_rate": 0.0006,
+ "loss": 3.9570775032043457,
+ "step": 1350
+ },
+ {
+ "epoch": 18.76889471384884,
+ "grad_norm": 0.21458806097507477,
+ "learning_rate": 0.0006,
+ "loss": 3.9461212158203125,
+ "step": 1351
+ },
+ {
+ "epoch": 18.782874617737004,
+ "grad_norm": 0.21101507544517517,
+ "learning_rate": 0.0006,
+ "loss": 3.984398365020752,
+ "step": 1352
+ },
+ {
+ "epoch": 18.796854521625164,
+ "grad_norm": 0.23480583727359772,
+ "learning_rate": 0.0006,
+ "loss": 3.950312614440918,
+ "step": 1353
+ },
+ {
+ "epoch": 18.810834425513324,
+ "grad_norm": 0.24728581309318542,
+ "learning_rate": 0.0006,
+ "loss": 3.9572393894195557,
+ "step": 1354
+ },
+ {
+ "epoch": 18.824814329401484,
+ "grad_norm": 0.26063451170921326,
+ "learning_rate": 0.0006,
+ "loss": 3.9653234481811523,
+ "step": 1355
+ },
+ {
+ "epoch": 18.838794233289647,
+ "grad_norm": 0.24679961800575256,
+ "learning_rate": 0.0006,
+ "loss": 3.9560108184814453,
+ "step": 1356
+ },
+ {
+ "epoch": 18.852774137177807,
+ "grad_norm": 0.23199526965618134,
+ "learning_rate": 0.0006,
+ "loss": 3.9948246479034424,
+ "step": 1357
+ },
+ {
+ "epoch": 18.866754041065967,
+ "grad_norm": 0.22619125247001648,
+ "learning_rate": 0.0006,
+ "loss": 3.9783573150634766,
+ "step": 1358
+ },
+ {
+ "epoch": 18.88073394495413,
+ "grad_norm": 0.25499874353408813,
+ "learning_rate": 0.0006,
+ "loss": 3.9674575328826904,
+ "step": 1359
+ },
+ {
+ "epoch": 18.89471384884229,
+ "grad_norm": 0.23961037397384644,
+ "learning_rate": 0.0006,
+ "loss": 3.969209909439087,
+ "step": 1360
+ },
+ {
+ "epoch": 18.90869375273045,
+ "grad_norm": 0.21039162576198578,
+ "learning_rate": 0.0006,
+ "loss": 3.978661060333252,
+ "step": 1361
+ },
+ {
+ "epoch": 18.92267365661861,
+ "grad_norm": 0.2297026664018631,
+ "learning_rate": 0.0006,
+ "loss": 3.9483046531677246,
+ "step": 1362
+ },
+ {
+ "epoch": 18.936653560506773,
+ "grad_norm": 0.26367098093032837,
+ "learning_rate": 0.0006,
+ "loss": 3.927133560180664,
+ "step": 1363
+ },
+ {
+ "epoch": 18.950633464394933,
+ "grad_norm": 0.26893147826194763,
+ "learning_rate": 0.0006,
+ "loss": 3.957932710647583,
+ "step": 1364
+ },
+ {
+ "epoch": 18.964613368283093,
+ "grad_norm": 0.27092233300209045,
+ "learning_rate": 0.0006,
+ "loss": 3.976621150970459,
+ "step": 1365
+ },
+ {
+ "epoch": 18.978593272171253,
+ "grad_norm": 0.2672635018825531,
+ "learning_rate": 0.0006,
+ "loss": 3.9577765464782715,
+ "step": 1366
+ },
+ {
+ "epoch": 18.992573176059416,
+ "grad_norm": 0.2721385359764099,
+ "learning_rate": 0.0006,
+ "loss": 3.986100196838379,
+ "step": 1367
+ },
+ {
+ "epoch": 19.0,
+ "grad_norm": 0.27648621797561646,
+ "learning_rate": 0.0006,
+ "loss": 3.9942402839660645,
+ "step": 1368
+ },
+ {
+ "epoch": 19.0,
+ "eval_loss": 4.180216312408447,
+ "eval_runtime": 44.0079,
+ "eval_samples_per_second": 55.49,
+ "eval_steps_per_second": 3.477,
+ "step": 1368
+ },
+ {
+ "epoch": 19.01397990388816,
+ "grad_norm": 0.2563098073005676,
+ "learning_rate": 0.0006,
+ "loss": 3.9267354011535645,
+ "step": 1369
+ },
+ {
+ "epoch": 19.027959807776323,
+ "grad_norm": 0.2531425952911377,
+ "learning_rate": 0.0006,
+ "loss": 3.9273324012756348,
+ "step": 1370
+ },
+ {
+ "epoch": 19.041939711664483,
+ "grad_norm": 0.27485427260398865,
+ "learning_rate": 0.0006,
+ "loss": 3.9542183876037598,
+ "step": 1371
+ },
+ {
+ "epoch": 19.055919615552643,
+ "grad_norm": 0.27509891986846924,
+ "learning_rate": 0.0006,
+ "loss": 3.921940326690674,
+ "step": 1372
+ },
+ {
+ "epoch": 19.069899519440803,
+ "grad_norm": 0.28154096007347107,
+ "learning_rate": 0.0006,
+ "loss": 3.926743984222412,
+ "step": 1373
+ },
+ {
+ "epoch": 19.083879423328966,
+ "grad_norm": 0.2749912738800049,
+ "learning_rate": 0.0006,
+ "loss": 3.9257748126983643,
+ "step": 1374
+ },
+ {
+ "epoch": 19.097859327217126,
+ "grad_norm": 0.26168501377105713,
+ "learning_rate": 0.0006,
+ "loss": 3.9403202533721924,
+ "step": 1375
+ },
+ {
+ "epoch": 19.111839231105286,
+ "grad_norm": 0.23410023748874664,
+ "learning_rate": 0.0006,
+ "loss": 3.935378313064575,
+ "step": 1376
+ },
+ {
+ "epoch": 19.125819134993446,
+ "grad_norm": 0.25790470838546753,
+ "learning_rate": 0.0006,
+ "loss": 3.946147918701172,
+ "step": 1377
+ },
+ {
+ "epoch": 19.13979903888161,
+ "grad_norm": 0.26704177260398865,
+ "learning_rate": 0.0006,
+ "loss": 3.9511594772338867,
+ "step": 1378
+ },
+ {
+ "epoch": 19.15377894276977,
+ "grad_norm": 0.2560667097568512,
+ "learning_rate": 0.0006,
+ "loss": 3.915806531906128,
+ "step": 1379
+ },
+ {
+ "epoch": 19.16775884665793,
+ "grad_norm": 0.24684149026870728,
+ "learning_rate": 0.0006,
+ "loss": 3.9162003993988037,
+ "step": 1380
+ },
+ {
+ "epoch": 19.18173875054609,
+ "grad_norm": 0.2097567766904831,
+ "learning_rate": 0.0006,
+ "loss": 3.915739059448242,
+ "step": 1381
+ },
+ {
+ "epoch": 19.195718654434252,
+ "grad_norm": 0.21646849811077118,
+ "learning_rate": 0.0006,
+ "loss": 3.9097084999084473,
+ "step": 1382
+ },
+ {
+ "epoch": 19.209698558322412,
+ "grad_norm": 0.20626980066299438,
+ "learning_rate": 0.0006,
+ "loss": 3.9541783332824707,
+ "step": 1383
+ },
+ {
+ "epoch": 19.22367846221057,
+ "grad_norm": 0.23362718522548676,
+ "learning_rate": 0.0006,
+ "loss": 3.950096845626831,
+ "step": 1384
+ },
+ {
+ "epoch": 19.23765836609873,
+ "grad_norm": 0.25402209162712097,
+ "learning_rate": 0.0006,
+ "loss": 3.927671432495117,
+ "step": 1385
+ },
+ {
+ "epoch": 19.251638269986895,
+ "grad_norm": 0.23714083433151245,
+ "learning_rate": 0.0006,
+ "loss": 3.939765453338623,
+ "step": 1386
+ },
+ {
+ "epoch": 19.265618173875055,
+ "grad_norm": 0.20895546674728394,
+ "learning_rate": 0.0006,
+ "loss": 3.9384806156158447,
+ "step": 1387
+ },
+ {
+ "epoch": 19.279598077763215,
+ "grad_norm": 0.21374300122261047,
+ "learning_rate": 0.0006,
+ "loss": 3.9523749351501465,
+ "step": 1388
+ },
+ {
+ "epoch": 19.293577981651374,
+ "grad_norm": 0.210394486784935,
+ "learning_rate": 0.0006,
+ "loss": 3.9540798664093018,
+ "step": 1389
+ },
+ {
+ "epoch": 19.307557885539538,
+ "grad_norm": 0.20646725594997406,
+ "learning_rate": 0.0006,
+ "loss": 3.9514098167419434,
+ "step": 1390
+ },
+ {
+ "epoch": 19.321537789427698,
+ "grad_norm": 0.21477538347244263,
+ "learning_rate": 0.0006,
+ "loss": 3.9369924068450928,
+ "step": 1391
+ },
+ {
+ "epoch": 19.335517693315857,
+ "grad_norm": 0.20431505143642426,
+ "learning_rate": 0.0006,
+ "loss": 3.9389796257019043,
+ "step": 1392
+ },
+ {
+ "epoch": 19.34949759720402,
+ "grad_norm": 0.19575877487659454,
+ "learning_rate": 0.0006,
+ "loss": 3.935976028442383,
+ "step": 1393
+ },
+ {
+ "epoch": 19.36347750109218,
+ "grad_norm": 0.20720405876636505,
+ "learning_rate": 0.0006,
+ "loss": 3.9670963287353516,
+ "step": 1394
+ },
+ {
+ "epoch": 19.37745740498034,
+ "grad_norm": 0.2173967957496643,
+ "learning_rate": 0.0006,
+ "loss": 3.903940439224243,
+ "step": 1395
+ },
+ {
+ "epoch": 19.3914373088685,
+ "grad_norm": 0.2180529683828354,
+ "learning_rate": 0.0006,
+ "loss": 3.8716301918029785,
+ "step": 1396
+ },
+ {
+ "epoch": 19.405417212756664,
+ "grad_norm": 0.20666591823101044,
+ "learning_rate": 0.0006,
+ "loss": 3.930936813354492,
+ "step": 1397
+ },
+ {
+ "epoch": 19.419397116644824,
+ "grad_norm": 0.20353034138679504,
+ "learning_rate": 0.0006,
+ "loss": 3.926954746246338,
+ "step": 1398
+ },
+ {
+ "epoch": 19.433377020532983,
+ "grad_norm": 0.22333289682865143,
+ "learning_rate": 0.0006,
+ "loss": 3.947504997253418,
+ "step": 1399
+ },
+ {
+ "epoch": 19.447356924421143,
+ "grad_norm": 0.21787697076797485,
+ "learning_rate": 0.0006,
+ "loss": 3.9325344562530518,
+ "step": 1400
+ },
+ {
+ "epoch": 19.461336828309307,
+ "grad_norm": 0.22805874049663544,
+ "learning_rate": 0.0006,
+ "loss": 3.9640727043151855,
+ "step": 1401
+ },
+ {
+ "epoch": 19.475316732197467,
+ "grad_norm": 0.22396457195281982,
+ "learning_rate": 0.0006,
+ "loss": 3.9537901878356934,
+ "step": 1402
+ },
+ {
+ "epoch": 19.489296636085626,
+ "grad_norm": 0.2333047240972519,
+ "learning_rate": 0.0006,
+ "loss": 3.935609817504883,
+ "step": 1403
+ },
+ {
+ "epoch": 19.503276539973786,
+ "grad_norm": 0.25063616037368774,
+ "learning_rate": 0.0006,
+ "loss": 3.9659228324890137,
+ "step": 1404
+ },
+ {
+ "epoch": 19.51725644386195,
+ "grad_norm": 0.29074087738990784,
+ "learning_rate": 0.0006,
+ "loss": 3.9552183151245117,
+ "step": 1405
+ },
+ {
+ "epoch": 19.53123634775011,
+ "grad_norm": 0.34876152873039246,
+ "learning_rate": 0.0006,
+ "loss": 3.976163387298584,
+ "step": 1406
+ },
+ {
+ "epoch": 19.54521625163827,
+ "grad_norm": 0.35026612877845764,
+ "learning_rate": 0.0006,
+ "loss": 3.961186408996582,
+ "step": 1407
+ },
+ {
+ "epoch": 19.55919615552643,
+ "grad_norm": 0.3199564218521118,
+ "learning_rate": 0.0006,
+ "loss": 3.9366297721862793,
+ "step": 1408
+ },
+ {
+ "epoch": 19.573176059414592,
+ "grad_norm": 0.2976185977458954,
+ "learning_rate": 0.0006,
+ "loss": 3.9502010345458984,
+ "step": 1409
+ },
+ {
+ "epoch": 19.587155963302752,
+ "grad_norm": 0.2951911687850952,
+ "learning_rate": 0.0006,
+ "loss": 3.9427943229675293,
+ "step": 1410
+ },
+ {
+ "epoch": 19.601135867190912,
+ "grad_norm": 0.27918702363967896,
+ "learning_rate": 0.0006,
+ "loss": 3.963700532913208,
+ "step": 1411
+ },
+ {
+ "epoch": 19.615115771079076,
+ "grad_norm": 0.26197490096092224,
+ "learning_rate": 0.0006,
+ "loss": 3.9636964797973633,
+ "step": 1412
+ },
+ {
+ "epoch": 19.629095674967235,
+ "grad_norm": 0.24242281913757324,
+ "learning_rate": 0.0006,
+ "loss": 3.961815595626831,
+ "step": 1413
+ },
+ {
+ "epoch": 19.643075578855395,
+ "grad_norm": 0.2606375515460968,
+ "learning_rate": 0.0006,
+ "loss": 3.946643352508545,
+ "step": 1414
+ },
+ {
+ "epoch": 19.657055482743555,
+ "grad_norm": 0.23353353142738342,
+ "learning_rate": 0.0006,
+ "loss": 3.973155975341797,
+ "step": 1415
+ },
+ {
+ "epoch": 19.67103538663172,
+ "grad_norm": 0.22872662544250488,
+ "learning_rate": 0.0006,
+ "loss": 3.9528894424438477,
+ "step": 1416
+ },
+ {
+ "epoch": 19.68501529051988,
+ "grad_norm": 0.24678432941436768,
+ "learning_rate": 0.0006,
+ "loss": 3.9313249588012695,
+ "step": 1417
+ },
+ {
+ "epoch": 19.698995194408038,
+ "grad_norm": 0.23895515501499176,
+ "learning_rate": 0.0006,
+ "loss": 3.944082498550415,
+ "step": 1418
+ },
+ {
+ "epoch": 19.712975098296198,
+ "grad_norm": 0.23649105429649353,
+ "learning_rate": 0.0006,
+ "loss": 3.962069034576416,
+ "step": 1419
+ },
+ {
+ "epoch": 19.72695500218436,
+ "grad_norm": 0.22031061351299286,
+ "learning_rate": 0.0006,
+ "loss": 3.912972927093506,
+ "step": 1420
+ },
+ {
+ "epoch": 19.74093490607252,
+ "grad_norm": 0.20231695473194122,
+ "learning_rate": 0.0006,
+ "loss": 3.964531421661377,
+ "step": 1421
+ },
+ {
+ "epoch": 19.75491480996068,
+ "grad_norm": 0.19980913400650024,
+ "learning_rate": 0.0006,
+ "loss": 3.9452600479125977,
+ "step": 1422
+ },
+ {
+ "epoch": 19.76889471384884,
+ "grad_norm": 0.21768775582313538,
+ "learning_rate": 0.0006,
+ "loss": 3.9214301109313965,
+ "step": 1423
+ },
+ {
+ "epoch": 19.782874617737004,
+ "grad_norm": 0.21287119388580322,
+ "learning_rate": 0.0006,
+ "loss": 3.9416494369506836,
+ "step": 1424
+ },
+ {
+ "epoch": 19.796854521625164,
+ "grad_norm": 0.21399827301502228,
+ "learning_rate": 0.0006,
+ "loss": 3.971010208129883,
+ "step": 1425
+ },
+ {
+ "epoch": 19.810834425513324,
+ "grad_norm": 0.1957658976316452,
+ "learning_rate": 0.0006,
+ "loss": 3.936331272125244,
+ "step": 1426
+ },
+ {
+ "epoch": 19.824814329401484,
+ "grad_norm": 0.19341488182544708,
+ "learning_rate": 0.0006,
+ "loss": 3.9321448802948,
+ "step": 1427
+ },
+ {
+ "epoch": 19.838794233289647,
+ "grad_norm": 0.18405723571777344,
+ "learning_rate": 0.0006,
+ "loss": 3.939542293548584,
+ "step": 1428
+ },
+ {
+ "epoch": 19.852774137177807,
+ "grad_norm": 0.19672836363315582,
+ "learning_rate": 0.0006,
+ "loss": 3.939652919769287,
+ "step": 1429
+ },
+ {
+ "epoch": 19.866754041065967,
+ "grad_norm": 0.1998940259218216,
+ "learning_rate": 0.0006,
+ "loss": 3.932892322540283,
+ "step": 1430
+ },
+ {
+ "epoch": 19.88073394495413,
+ "grad_norm": 0.2307668924331665,
+ "learning_rate": 0.0006,
+ "loss": 3.9402761459350586,
+ "step": 1431
+ },
+ {
+ "epoch": 19.89471384884229,
+ "grad_norm": 0.2531987726688385,
+ "learning_rate": 0.0006,
+ "loss": 3.9153199195861816,
+ "step": 1432
+ },
+ {
+ "epoch": 19.90869375273045,
+ "grad_norm": 0.2299388349056244,
+ "learning_rate": 0.0006,
+ "loss": 3.9569954872131348,
+ "step": 1433
+ },
+ {
+ "epoch": 19.92267365661861,
+ "grad_norm": 0.2503527104854584,
+ "learning_rate": 0.0006,
+ "loss": 3.9469428062438965,
+ "step": 1434
+ },
+ {
+ "epoch": 19.936653560506773,
+ "grad_norm": 0.25390249490737915,
+ "learning_rate": 0.0006,
+ "loss": 3.941803455352783,
+ "step": 1435
+ },
+ {
+ "epoch": 19.950633464394933,
+ "grad_norm": 0.2288687825202942,
+ "learning_rate": 0.0006,
+ "loss": 3.9385883808135986,
+ "step": 1436
+ },
+ {
+ "epoch": 19.964613368283093,
+ "grad_norm": 0.2231096774339676,
+ "learning_rate": 0.0006,
+ "loss": 3.9255237579345703,
+ "step": 1437
+ },
+ {
+ "epoch": 19.978593272171253,
+ "grad_norm": 0.20729343593120575,
+ "learning_rate": 0.0006,
+ "loss": 3.9443163871765137,
+ "step": 1438
+ },
+ {
+ "epoch": 19.992573176059416,
+ "grad_norm": 0.197743758559227,
+ "learning_rate": 0.0006,
+ "loss": 3.925455093383789,
+ "step": 1439
+ },
+ {
+ "epoch": 20.0,
+ "grad_norm": 0.23943661153316498,
+ "learning_rate": 0.0006,
+ "loss": 3.9458866119384766,
+ "step": 1440
+ },
+ {
+ "epoch": 20.0,
+ "eval_loss": 4.144192218780518,
+ "eval_runtime": 44.0278,
+ "eval_samples_per_second": 55.465,
+ "eval_steps_per_second": 3.475,
+ "step": 1440
+ },
+ {
+ "epoch": 20.01397990388816,
+ "grad_norm": 0.2032143622636795,
+ "learning_rate": 0.0006,
+ "loss": 3.9151499271392822,
+ "step": 1441
+ },
+ {
+ "epoch": 20.027959807776323,
+ "grad_norm": 0.20164789259433746,
+ "learning_rate": 0.0006,
+ "loss": 3.874115228652954,
+ "step": 1442
+ },
+ {
+ "epoch": 20.041939711664483,
+ "grad_norm": 0.20796619355678558,
+ "learning_rate": 0.0006,
+ "loss": 3.9090776443481445,
+ "step": 1443
+ },
+ {
+ "epoch": 20.055919615552643,
+ "grad_norm": 0.1999918520450592,
+ "learning_rate": 0.0006,
+ "loss": 3.926563262939453,
+ "step": 1444
+ },
+ {
+ "epoch": 20.069899519440803,
+ "grad_norm": 0.204790860414505,
+ "learning_rate": 0.0006,
+ "loss": 3.9088830947875977,
+ "step": 1445
+ },
+ {
+ "epoch": 20.083879423328966,
+ "grad_norm": 0.21507175266742706,
+ "learning_rate": 0.0006,
+ "loss": 3.916504383087158,
+ "step": 1446
+ },
+ {
+ "epoch": 20.097859327217126,
+ "grad_norm": 0.2398025095462799,
+ "learning_rate": 0.0006,
+ "loss": 3.9128990173339844,
+ "step": 1447
+ },
+ {
+ "epoch": 20.111839231105286,
+ "grad_norm": 0.26037144660949707,
+ "learning_rate": 0.0006,
+ "loss": 3.9125187397003174,
+ "step": 1448
+ },
+ {
+ "epoch": 20.125819134993446,
+ "grad_norm": 0.25564828515052795,
+ "learning_rate": 0.0006,
+ "loss": 3.891867160797119,
+ "step": 1449
+ },
+ {
+ "epoch": 20.13979903888161,
+ "grad_norm": 0.2767223119735718,
+ "learning_rate": 0.0006,
+ "loss": 3.9202775955200195,
+ "step": 1450
+ },
+ {
+ "epoch": 20.15377894276977,
+ "grad_norm": 0.27696558833122253,
+ "learning_rate": 0.0006,
+ "loss": 3.9231314659118652,
+ "step": 1451
+ },
+ {
+ "epoch": 20.16775884665793,
+ "grad_norm": 0.3054044246673584,
+ "learning_rate": 0.0006,
+ "loss": 3.918138027191162,
+ "step": 1452
+ },
+ {
+ "epoch": 20.18173875054609,
+ "grad_norm": 0.3018973171710968,
+ "learning_rate": 0.0006,
+ "loss": 3.890678882598877,
+ "step": 1453
+ },
+ {
+ "epoch": 20.195718654434252,
+ "grad_norm": 0.306232750415802,
+ "learning_rate": 0.0006,
+ "loss": 3.920753002166748,
+ "step": 1454
+ },
+ {
+ "epoch": 20.209698558322412,
+ "grad_norm": 0.29593729972839355,
+ "learning_rate": 0.0006,
+ "loss": 3.9455509185791016,
+ "step": 1455
+ },
+ {
+ "epoch": 20.22367846221057,
+ "grad_norm": 0.2937646210193634,
+ "learning_rate": 0.0006,
+ "loss": 3.9227709770202637,
+ "step": 1456
+ },
+ {
+ "epoch": 20.23765836609873,
+ "grad_norm": 0.26380231976509094,
+ "learning_rate": 0.0006,
+ "loss": 3.9097609519958496,
+ "step": 1457
+ },
+ {
+ "epoch": 20.251638269986895,
+ "grad_norm": 0.24992692470550537,
+ "learning_rate": 0.0006,
+ "loss": 3.9393627643585205,
+ "step": 1458
+ },
+ {
+ "epoch": 20.265618173875055,
+ "grad_norm": 0.270219087600708,
+ "learning_rate": 0.0006,
+ "loss": 3.929330348968506,
+ "step": 1459
+ },
+ {
+ "epoch": 20.279598077763215,
+ "grad_norm": 0.2860020399093628,
+ "learning_rate": 0.0006,
+ "loss": 3.8947913646698,
+ "step": 1460
+ },
+ {
+ "epoch": 20.293577981651374,
+ "grad_norm": 0.27494579553604126,
+ "learning_rate": 0.0006,
+ "loss": 3.9105992317199707,
+ "step": 1461
+ },
+ {
+ "epoch": 20.307557885539538,
+ "grad_norm": 0.26467713713645935,
+ "learning_rate": 0.0006,
+ "loss": 3.914632797241211,
+ "step": 1462
+ },
+ {
+ "epoch": 20.321537789427698,
+ "grad_norm": 0.25747713446617126,
+ "learning_rate": 0.0006,
+ "loss": 3.919846534729004,
+ "step": 1463
+ },
+ {
+ "epoch": 20.335517693315857,
+ "grad_norm": 0.24027711153030396,
+ "learning_rate": 0.0006,
+ "loss": 3.904740810394287,
+ "step": 1464
+ },
+ {
+ "epoch": 20.34949759720402,
+ "grad_norm": 0.24682414531707764,
+ "learning_rate": 0.0006,
+ "loss": 3.9190149307250977,
+ "step": 1465
+ },
+ {
+ "epoch": 20.36347750109218,
+ "grad_norm": 0.2619759440422058,
+ "learning_rate": 0.0006,
+ "loss": 3.9488329887390137,
+ "step": 1466
+ },
+ {
+ "epoch": 20.37745740498034,
+ "grad_norm": 0.2632448971271515,
+ "learning_rate": 0.0006,
+ "loss": 3.9216647148132324,
+ "step": 1467
+ },
+ {
+ "epoch": 20.3914373088685,
+ "grad_norm": 0.27569764852523804,
+ "learning_rate": 0.0006,
+ "loss": 3.9178895950317383,
+ "step": 1468
+ },
+ {
+ "epoch": 20.405417212756664,
+ "grad_norm": 0.2611774802207947,
+ "learning_rate": 0.0006,
+ "loss": 3.933730125427246,
+ "step": 1469
+ },
+ {
+ "epoch": 20.419397116644824,
+ "grad_norm": 0.2839447557926178,
+ "learning_rate": 0.0006,
+ "loss": 3.9261364936828613,
+ "step": 1470
+ },
+ {
+ "epoch": 20.433377020532983,
+ "grad_norm": 0.29006227850914,
+ "learning_rate": 0.0006,
+ "loss": 3.9157633781433105,
+ "step": 1471
+ },
+ {
+ "epoch": 20.447356924421143,
+ "grad_norm": 0.2809498906135559,
+ "learning_rate": 0.0006,
+ "loss": 3.9211745262145996,
+ "step": 1472
+ },
+ {
+ "epoch": 20.461336828309307,
+ "grad_norm": 0.27859532833099365,
+ "learning_rate": 0.0006,
+ "loss": 3.9115967750549316,
+ "step": 1473
+ },
+ {
+ "epoch": 20.475316732197467,
+ "grad_norm": 0.29114410281181335,
+ "learning_rate": 0.0006,
+ "loss": 3.9024441242218018,
+ "step": 1474
+ },
+ {
+ "epoch": 20.489296636085626,
+ "grad_norm": 0.2686930000782013,
+ "learning_rate": 0.0006,
+ "loss": 3.9497199058532715,
+ "step": 1475
+ },
+ {
+ "epoch": 20.503276539973786,
+ "grad_norm": 0.24120540916919708,
+ "learning_rate": 0.0006,
+ "loss": 3.9218955039978027,
+ "step": 1476
+ },
+ {
+ "epoch": 20.51725644386195,
+ "grad_norm": 0.23689547181129456,
+ "learning_rate": 0.0006,
+ "loss": 3.9410176277160645,
+ "step": 1477
+ },
+ {
+ "epoch": 20.53123634775011,
+ "grad_norm": 0.26382362842559814,
+ "learning_rate": 0.0006,
+ "loss": 3.8880343437194824,
+ "step": 1478
+ },
+ {
+ "epoch": 20.54521625163827,
+ "grad_norm": 0.21628661453723907,
+ "learning_rate": 0.0006,
+ "loss": 3.892622470855713,
+ "step": 1479
+ },
+ {
+ "epoch": 20.55919615552643,
+ "grad_norm": 0.19896996021270752,
+ "learning_rate": 0.0006,
+ "loss": 3.938734769821167,
+ "step": 1480
+ },
+ {
+ "epoch": 20.573176059414592,
+ "grad_norm": 0.20232494175434113,
+ "learning_rate": 0.0006,
+ "loss": 3.9197006225585938,
+ "step": 1481
+ },
+ {
+ "epoch": 20.587155963302752,
+ "grad_norm": 0.21807828545570374,
+ "learning_rate": 0.0006,
+ "loss": 3.9195618629455566,
+ "step": 1482
+ },
+ {
+ "epoch": 20.601135867190912,
+ "grad_norm": 0.21778680384159088,
+ "learning_rate": 0.0006,
+ "loss": 3.913395404815674,
+ "step": 1483
+ },
+ {
+ "epoch": 20.615115771079076,
+ "grad_norm": 0.21015185117721558,
+ "learning_rate": 0.0006,
+ "loss": 3.8858234882354736,
+ "step": 1484
+ },
+ {
+ "epoch": 20.629095674967235,
+ "grad_norm": 0.20131368935108185,
+ "learning_rate": 0.0006,
+ "loss": 3.927213430404663,
+ "step": 1485
+ },
+ {
+ "epoch": 20.643075578855395,
+ "grad_norm": 0.20746243000030518,
+ "learning_rate": 0.0006,
+ "loss": 3.913198471069336,
+ "step": 1486
+ },
+ {
+ "epoch": 20.657055482743555,
+ "grad_norm": 0.2024548053741455,
+ "learning_rate": 0.0006,
+ "loss": 3.923048257827759,
+ "step": 1487
+ },
+ {
+ "epoch": 20.67103538663172,
+ "grad_norm": 0.19735988974571228,
+ "learning_rate": 0.0006,
+ "loss": 3.9136500358581543,
+ "step": 1488
+ },
+ {
+ "epoch": 20.68501529051988,
+ "grad_norm": 0.19781625270843506,
+ "learning_rate": 0.0006,
+ "loss": 3.883793592453003,
+ "step": 1489
+ },
+ {
+ "epoch": 20.698995194408038,
+ "grad_norm": 0.1911996454000473,
+ "learning_rate": 0.0006,
+ "loss": 3.9078567028045654,
+ "step": 1490
+ },
+ {
+ "epoch": 20.712975098296198,
+ "grad_norm": 0.1989123821258545,
+ "learning_rate": 0.0006,
+ "loss": 3.9314043521881104,
+ "step": 1491
+ },
+ {
+ "epoch": 20.72695500218436,
+ "grad_norm": 0.18839342892169952,
+ "learning_rate": 0.0006,
+ "loss": 3.8955953121185303,
+ "step": 1492
+ },
+ {
+ "epoch": 20.74093490607252,
+ "grad_norm": 0.1944834142923355,
+ "learning_rate": 0.0006,
+ "loss": 3.9272377490997314,
+ "step": 1493
+ },
+ {
+ "epoch": 20.75491480996068,
+ "grad_norm": 0.20829126238822937,
+ "learning_rate": 0.0006,
+ "loss": 3.878857374191284,
+ "step": 1494
+ },
+ {
+ "epoch": 20.76889471384884,
+ "grad_norm": 0.21438424289226532,
+ "learning_rate": 0.0006,
+ "loss": 3.9155564308166504,
+ "step": 1495
+ },
+ {
+ "epoch": 20.782874617737004,
+ "grad_norm": 0.22309324145317078,
+ "learning_rate": 0.0006,
+ "loss": 3.9281692504882812,
+ "step": 1496
+ },
+ {
+ "epoch": 20.796854521625164,
+ "grad_norm": 0.2053767591714859,
+ "learning_rate": 0.0006,
+ "loss": 3.9096317291259766,
+ "step": 1497
+ },
+ {
+ "epoch": 20.810834425513324,
+ "grad_norm": 0.20429186522960663,
+ "learning_rate": 0.0006,
+ "loss": 3.9184865951538086,
+ "step": 1498
+ },
+ {
+ "epoch": 20.824814329401484,
+ "grad_norm": 0.21983473002910614,
+ "learning_rate": 0.0006,
+ "loss": 3.9130771160125732,
+ "step": 1499
+ },
+ {
+ "epoch": 20.838794233289647,
+ "grad_norm": 0.21649539470672607,
+ "learning_rate": 0.0006,
+ "loss": 3.921581268310547,
+ "step": 1500
+ },
+ {
+ "epoch": 20.852774137177807,
+ "grad_norm": 0.19645053148269653,
+ "learning_rate": 0.0006,
+ "loss": 3.966360092163086,
+ "step": 1501
+ },
+ {
+ "epoch": 20.866754041065967,
+ "grad_norm": 0.2126782387495041,
+ "learning_rate": 0.0006,
+ "loss": 3.9004554748535156,
+ "step": 1502
+ },
+ {
+ "epoch": 20.88073394495413,
+ "grad_norm": 0.22359658777713776,
+ "learning_rate": 0.0006,
+ "loss": 3.92336368560791,
+ "step": 1503
+ },
+ {
+ "epoch": 20.89471384884229,
+ "grad_norm": 0.2334042638540268,
+ "learning_rate": 0.0006,
+ "loss": 3.9188671112060547,
+ "step": 1504
+ },
+ {
+ "epoch": 20.90869375273045,
+ "grad_norm": 0.24595916271209717,
+ "learning_rate": 0.0006,
+ "loss": 3.9348371028900146,
+ "step": 1505
+ },
+ {
+ "epoch": 20.92267365661861,
+ "grad_norm": 0.24177910387516022,
+ "learning_rate": 0.0006,
+ "loss": 3.8796424865722656,
+ "step": 1506
+ },
+ {
+ "epoch": 20.936653560506773,
+ "grad_norm": 0.24193289875984192,
+ "learning_rate": 0.0006,
+ "loss": 3.892627716064453,
+ "step": 1507
+ },
+ {
+ "epoch": 20.950633464394933,
+ "grad_norm": 0.252849280834198,
+ "learning_rate": 0.0006,
+ "loss": 3.9300179481506348,
+ "step": 1508
+ },
+ {
+ "epoch": 20.964613368283093,
+ "grad_norm": 0.24933326244354248,
+ "learning_rate": 0.0006,
+ "loss": 3.9597225189208984,
+ "step": 1509
+ },
+ {
+ "epoch": 20.978593272171253,
+ "grad_norm": 0.23850969970226288,
+ "learning_rate": 0.0006,
+ "loss": 3.9027397632598877,
+ "step": 1510
+ },
+ {
+ "epoch": 20.992573176059416,
+ "grad_norm": 0.23298311233520508,
+ "learning_rate": 0.0006,
+ "loss": 3.9024105072021484,
+ "step": 1511
+ },
+ {
+ "epoch": 21.0,
+ "grad_norm": 0.2467455416917801,
+ "learning_rate": 0.0006,
+ "loss": 3.915929079055786,
+ "step": 1512
+ },
+ {
+ "epoch": 21.0,
+ "eval_loss": 4.136331081390381,
+ "eval_runtime": 43.9468,
+ "eval_samples_per_second": 55.567,
+ "eval_steps_per_second": 3.481,
+ "step": 1512
+ },
+ {
+ "epoch": 21.01397990388816,
+ "grad_norm": 0.2195885181427002,
+ "learning_rate": 0.0006,
+ "loss": 3.873412847518921,
+ "step": 1513
+ },
+ {
+ "epoch": 21.027959807776323,
+ "grad_norm": 0.24250614643096924,
+ "learning_rate": 0.0006,
+ "loss": 3.882302761077881,
+ "step": 1514
+ },
+ {
+ "epoch": 21.041939711664483,
+ "grad_norm": 0.249113991856575,
+ "learning_rate": 0.0006,
+ "loss": 3.9112048149108887,
+ "step": 1515
+ },
+ {
+ "epoch": 21.055919615552643,
+ "grad_norm": 0.25365301966667175,
+ "learning_rate": 0.0006,
+ "loss": 3.8625712394714355,
+ "step": 1516
+ },
+ {
+ "epoch": 21.069899519440803,
+ "grad_norm": 0.2218591272830963,
+ "learning_rate": 0.0006,
+ "loss": 3.876072406768799,
+ "step": 1517
+ },
+ {
+ "epoch": 21.083879423328966,
+ "grad_norm": 0.238582581281662,
+ "learning_rate": 0.0006,
+ "loss": 3.862060546875,
+ "step": 1518
+ },
+ {
+ "epoch": 21.097859327217126,
+ "grad_norm": 0.25051242113113403,
+ "learning_rate": 0.0006,
+ "loss": 3.905315399169922,
+ "step": 1519
+ },
+ {
+ "epoch": 21.111839231105286,
+ "grad_norm": 0.2391843944787979,
+ "learning_rate": 0.0006,
+ "loss": 3.909144401550293,
+ "step": 1520
+ },
+ {
+ "epoch": 21.125819134993446,
+ "grad_norm": 0.230543315410614,
+ "learning_rate": 0.0006,
+ "loss": 3.8856799602508545,
+ "step": 1521
+ },
+ {
+ "epoch": 21.13979903888161,
+ "grad_norm": 0.24165484309196472,
+ "learning_rate": 0.0006,
+ "loss": 3.893883228302002,
+ "step": 1522
+ },
+ {
+ "epoch": 21.15377894276977,
+ "grad_norm": 0.24657143652439117,
+ "learning_rate": 0.0006,
+ "loss": 3.901129722595215,
+ "step": 1523
+ },
+ {
+ "epoch": 21.16775884665793,
+ "grad_norm": 0.2659998834133148,
+ "learning_rate": 0.0006,
+ "loss": 3.910468101501465,
+ "step": 1524
+ },
+ {
+ "epoch": 21.18173875054609,
+ "grad_norm": 0.2673095166683197,
+ "learning_rate": 0.0006,
+ "loss": 3.917454242706299,
+ "step": 1525
+ },
+ {
+ "epoch": 21.195718654434252,
+ "grad_norm": 0.22122322022914886,
+ "learning_rate": 0.0006,
+ "loss": 3.9017257690429688,
+ "step": 1526
+ },
+ {
+ "epoch": 21.209698558322412,
+ "grad_norm": 0.21882867813110352,
+ "learning_rate": 0.0006,
+ "loss": 3.8605496883392334,
+ "step": 1527
+ },
+ {
+ "epoch": 21.22367846221057,
+ "grad_norm": 0.22335563600063324,
+ "learning_rate": 0.0006,
+ "loss": 3.88120174407959,
+ "step": 1528
+ },
+ {
+ "epoch": 21.23765836609873,
+ "grad_norm": 0.22973211109638214,
+ "learning_rate": 0.0006,
+ "loss": 3.8636834621429443,
+ "step": 1529
+ },
+ {
+ "epoch": 21.251638269986895,
+ "grad_norm": 0.2410288006067276,
+ "learning_rate": 0.0006,
+ "loss": 3.8698177337646484,
+ "step": 1530
+ },
+ {
+ "epoch": 21.265618173875055,
+ "grad_norm": 0.2454768717288971,
+ "learning_rate": 0.0006,
+ "loss": 3.905341148376465,
+ "step": 1531
+ },
+ {
+ "epoch": 21.279598077763215,
+ "grad_norm": 0.2271580696105957,
+ "learning_rate": 0.0006,
+ "loss": 3.864063262939453,
+ "step": 1532
+ },
+ {
+ "epoch": 21.293577981651374,
+ "grad_norm": 0.2200947403907776,
+ "learning_rate": 0.0006,
+ "loss": 3.8889589309692383,
+ "step": 1533
+ },
+ {
+ "epoch": 21.307557885539538,
+ "grad_norm": 0.2180824875831604,
+ "learning_rate": 0.0006,
+ "loss": 3.8873472213745117,
+ "step": 1534
+ },
+ {
+ "epoch": 21.321537789427698,
+ "grad_norm": 0.214975506067276,
+ "learning_rate": 0.0006,
+ "loss": 3.882307529449463,
+ "step": 1535
+ },
+ {
+ "epoch": 21.335517693315857,
+ "grad_norm": 0.21411260962486267,
+ "learning_rate": 0.0006,
+ "loss": 3.8861560821533203,
+ "step": 1536
+ },
+ {
+ "epoch": 21.34949759720402,
+ "grad_norm": 0.22635889053344727,
+ "learning_rate": 0.0006,
+ "loss": 3.9174342155456543,
+ "step": 1537
+ },
+ {
+ "epoch": 21.36347750109218,
+ "grad_norm": 0.22700625658035278,
+ "learning_rate": 0.0006,
+ "loss": 3.890416383743286,
+ "step": 1538
+ },
+ {
+ "epoch": 21.37745740498034,
+ "grad_norm": 0.2106025069952011,
+ "learning_rate": 0.0006,
+ "loss": 3.8672406673431396,
+ "step": 1539
+ },
+ {
+ "epoch": 21.3914373088685,
+ "grad_norm": 0.22994661331176758,
+ "learning_rate": 0.0006,
+ "loss": 3.893190383911133,
+ "step": 1540
+ },
+ {
+ "epoch": 21.405417212756664,
+ "grad_norm": 0.24701105058193207,
+ "learning_rate": 0.0006,
+ "loss": 3.898078441619873,
+ "step": 1541
+ },
+ {
+ "epoch": 21.419397116644824,
+ "grad_norm": 0.26914113759994507,
+ "learning_rate": 0.0006,
+ "loss": 3.905871868133545,
+ "step": 1542
+ },
+ {
+ "epoch": 21.433377020532983,
+ "grad_norm": 0.2904224097728729,
+ "learning_rate": 0.0006,
+ "loss": 3.8919103145599365,
+ "step": 1543
+ },
+ {
+ "epoch": 21.447356924421143,
+ "grad_norm": 0.2911844551563263,
+ "learning_rate": 0.0006,
+ "loss": 3.9073286056518555,
+ "step": 1544
+ },
+ {
+ "epoch": 21.461336828309307,
+ "grad_norm": 0.2742345929145813,
+ "learning_rate": 0.0006,
+ "loss": 3.9075546264648438,
+ "step": 1545
+ },
+ {
+ "epoch": 21.475316732197467,
+ "grad_norm": 0.2341093122959137,
+ "learning_rate": 0.0006,
+ "loss": 3.9232025146484375,
+ "step": 1546
+ },
+ {
+ "epoch": 21.489296636085626,
+ "grad_norm": 0.22808541357517242,
+ "learning_rate": 0.0006,
+ "loss": 3.9168174266815186,
+ "step": 1547
+ },
+ {
+ "epoch": 21.503276539973786,
+ "grad_norm": 0.23049889504909515,
+ "learning_rate": 0.0006,
+ "loss": 3.8850595951080322,
+ "step": 1548
+ },
+ {
+ "epoch": 21.51725644386195,
+ "grad_norm": 0.21519650518894196,
+ "learning_rate": 0.0006,
+ "loss": 3.891313076019287,
+ "step": 1549
+ },
+ {
+ "epoch": 21.53123634775011,
+ "grad_norm": 0.20999883115291595,
+ "learning_rate": 0.0006,
+ "loss": 3.894439220428467,
+ "step": 1550
+ },
+ {
+ "epoch": 21.54521625163827,
+ "grad_norm": 0.19641105830669403,
+ "learning_rate": 0.0006,
+ "loss": 3.894871473312378,
+ "step": 1551
+ },
+ {
+ "epoch": 21.55919615552643,
+ "grad_norm": 0.19108249247074127,
+ "learning_rate": 0.0006,
+ "loss": 3.905968189239502,
+ "step": 1552
+ },
+ {
+ "epoch": 21.573176059414592,
+ "grad_norm": 0.20222234725952148,
+ "learning_rate": 0.0006,
+ "loss": 3.90565824508667,
+ "step": 1553
+ },
+ {
+ "epoch": 21.587155963302752,
+ "grad_norm": 0.20620177686214447,
+ "learning_rate": 0.0006,
+ "loss": 3.9103245735168457,
+ "step": 1554
+ },
+ {
+ "epoch": 21.601135867190912,
+ "grad_norm": 0.2149713784456253,
+ "learning_rate": 0.0006,
+ "loss": 3.8864927291870117,
+ "step": 1555
+ },
+ {
+ "epoch": 21.615115771079076,
+ "grad_norm": 0.2354084551334381,
+ "learning_rate": 0.0006,
+ "loss": 3.905095100402832,
+ "step": 1556
+ },
+ {
+ "epoch": 21.629095674967235,
+ "grad_norm": 0.23949941992759705,
+ "learning_rate": 0.0006,
+ "loss": 3.901803493499756,
+ "step": 1557
+ },
+ {
+ "epoch": 21.643075578855395,
+ "grad_norm": 0.22914277017116547,
+ "learning_rate": 0.0006,
+ "loss": 3.876044273376465,
+ "step": 1558
+ },
+ {
+ "epoch": 21.657055482743555,
+ "grad_norm": 0.2363225370645523,
+ "learning_rate": 0.0006,
+ "loss": 3.910841703414917,
+ "step": 1559
+ },
+ {
+ "epoch": 21.67103538663172,
+ "grad_norm": 0.2635626792907715,
+ "learning_rate": 0.0006,
+ "loss": 3.847407579421997,
+ "step": 1560
+ },
+ {
+ "epoch": 21.68501529051988,
+ "grad_norm": 0.2499786615371704,
+ "learning_rate": 0.0006,
+ "loss": 3.8667140007019043,
+ "step": 1561
+ },
+ {
+ "epoch": 21.698995194408038,
+ "grad_norm": 0.21609611809253693,
+ "learning_rate": 0.0006,
+ "loss": 3.895470142364502,
+ "step": 1562
+ },
+ {
+ "epoch": 21.712975098296198,
+ "grad_norm": 0.2466774582862854,
+ "learning_rate": 0.0006,
+ "loss": 3.8853235244750977,
+ "step": 1563
+ },
+ {
+ "epoch": 21.72695500218436,
+ "grad_norm": 0.23791883885860443,
+ "learning_rate": 0.0006,
+ "loss": 3.899418354034424,
+ "step": 1564
+ },
+ {
+ "epoch": 21.74093490607252,
+ "grad_norm": 0.2048920840024948,
+ "learning_rate": 0.0006,
+ "loss": 3.8992419242858887,
+ "step": 1565
+ },
+ {
+ "epoch": 21.75491480996068,
+ "grad_norm": 0.22266621887683868,
+ "learning_rate": 0.0006,
+ "loss": 3.885765552520752,
+ "step": 1566
+ },
+ {
+ "epoch": 21.76889471384884,
+ "grad_norm": 0.2508748769760132,
+ "learning_rate": 0.0006,
+ "loss": 3.8797037601470947,
+ "step": 1567
+ },
+ {
+ "epoch": 21.782874617737004,
+ "grad_norm": 0.27245673537254333,
+ "learning_rate": 0.0006,
+ "loss": 3.8743176460266113,
+ "step": 1568
+ },
+ {
+ "epoch": 21.796854521625164,
+ "grad_norm": 0.25503191351890564,
+ "learning_rate": 0.0006,
+ "loss": 3.868906259536743,
+ "step": 1569
+ },
+ {
+ "epoch": 21.810834425513324,
+ "grad_norm": 0.22984394431114197,
+ "learning_rate": 0.0006,
+ "loss": 3.9051015377044678,
+ "step": 1570
+ },
+ {
+ "epoch": 21.824814329401484,
+ "grad_norm": 0.2411898821592331,
+ "learning_rate": 0.0006,
+ "loss": 3.8911490440368652,
+ "step": 1571
+ },
+ {
+ "epoch": 21.838794233289647,
+ "grad_norm": 0.22609318792819977,
+ "learning_rate": 0.0006,
+ "loss": 3.894839286804199,
+ "step": 1572
+ },
+ {
+ "epoch": 21.852774137177807,
+ "grad_norm": 0.21904583275318146,
+ "learning_rate": 0.0006,
+ "loss": 3.9314537048339844,
+ "step": 1573
+ },
+ {
+ "epoch": 21.866754041065967,
+ "grad_norm": 0.21869723498821259,
+ "learning_rate": 0.0006,
+ "loss": 3.9141433238983154,
+ "step": 1574
+ },
+ {
+ "epoch": 21.88073394495413,
+ "grad_norm": 0.21682019531726837,
+ "learning_rate": 0.0006,
+ "loss": 3.867898464202881,
+ "step": 1575
+ },
+ {
+ "epoch": 21.89471384884229,
+ "grad_norm": 0.2211964726448059,
+ "learning_rate": 0.0006,
+ "loss": 3.8892226219177246,
+ "step": 1576
+ },
+ {
+ "epoch": 21.90869375273045,
+ "grad_norm": 0.2097381353378296,
+ "learning_rate": 0.0006,
+ "loss": 3.9194154739379883,
+ "step": 1577
+ },
+ {
+ "epoch": 21.92267365661861,
+ "grad_norm": 0.21229565143585205,
+ "learning_rate": 0.0006,
+ "loss": 3.924694538116455,
+ "step": 1578
+ },
+ {
+ "epoch": 21.936653560506773,
+ "grad_norm": 0.2186083346605301,
+ "learning_rate": 0.0006,
+ "loss": 3.904440402984619,
+ "step": 1579
+ },
+ {
+ "epoch": 21.950633464394933,
+ "grad_norm": 0.21112321317195892,
+ "learning_rate": 0.0006,
+ "loss": 3.905674934387207,
+ "step": 1580
+ },
+ {
+ "epoch": 21.964613368283093,
+ "grad_norm": 0.20867373049259186,
+ "learning_rate": 0.0006,
+ "loss": 3.8761563301086426,
+ "step": 1581
+ },
+ {
+ "epoch": 21.978593272171253,
+ "grad_norm": 0.21640732884407043,
+ "learning_rate": 0.0006,
+ "loss": 3.871950149536133,
+ "step": 1582
+ },
+ {
+ "epoch": 21.992573176059416,
+ "grad_norm": 0.21920442581176758,
+ "learning_rate": 0.0006,
+ "loss": 3.8853464126586914,
+ "step": 1583
+ },
+ {
+ "epoch": 22.0,
+ "grad_norm": 0.24132665991783142,
+ "learning_rate": 0.0006,
+ "loss": 3.9012184143066406,
+ "step": 1584
+ },
+ {
+ "epoch": 22.0,
+ "eval_loss": 4.108598232269287,
+ "eval_runtime": 44.0434,
+ "eval_samples_per_second": 55.445,
+ "eval_steps_per_second": 3.474,
+ "step": 1584
+ },
+ {
+ "epoch": 22.01397990388816,
+ "grad_norm": 0.21989449858665466,
+ "learning_rate": 0.0006,
+ "loss": 3.8657469749450684,
+ "step": 1585
+ },
+ {
+ "epoch": 22.027959807776323,
+ "grad_norm": 0.20416802167892456,
+ "learning_rate": 0.0006,
+ "loss": 3.8682117462158203,
+ "step": 1586
+ },
+ {
+ "epoch": 22.041939711664483,
+ "grad_norm": 0.20651975274085999,
+ "learning_rate": 0.0006,
+ "loss": 3.8501222133636475,
+ "step": 1587
+ },
+ {
+ "epoch": 22.055919615552643,
+ "grad_norm": 0.22987176477909088,
+ "learning_rate": 0.0006,
+ "loss": 3.8830955028533936,
+ "step": 1588
+ },
+ {
+ "epoch": 22.069899519440803,
+ "grad_norm": 0.23308858275413513,
+ "learning_rate": 0.0006,
+ "loss": 3.8659040927886963,
+ "step": 1589
+ },
+ {
+ "epoch": 22.083879423328966,
+ "grad_norm": 0.2144266963005066,
+ "learning_rate": 0.0006,
+ "loss": 3.8311047554016113,
+ "step": 1590
+ },
+ {
+ "epoch": 22.097859327217126,
+ "grad_norm": 0.2052636295557022,
+ "learning_rate": 0.0006,
+ "loss": 3.8700156211853027,
+ "step": 1591
+ },
+ {
+ "epoch": 22.111839231105286,
+ "grad_norm": 0.22792384028434753,
+ "learning_rate": 0.0006,
+ "loss": 3.8799097537994385,
+ "step": 1592
+ },
+ {
+ "epoch": 22.125819134993446,
+ "grad_norm": 0.2533944249153137,
+ "learning_rate": 0.0006,
+ "loss": 3.874959945678711,
+ "step": 1593
+ },
+ {
+ "epoch": 22.13979903888161,
+ "grad_norm": 0.27126258611679077,
+ "learning_rate": 0.0006,
+ "loss": 3.863774299621582,
+ "step": 1594
+ },
+ {
+ "epoch": 22.15377894276977,
+ "grad_norm": 0.2634040415287018,
+ "learning_rate": 0.0006,
+ "loss": 3.8876869678497314,
+ "step": 1595
+ },
+ {
+ "epoch": 22.16775884665793,
+ "grad_norm": 0.267987459897995,
+ "learning_rate": 0.0006,
+ "loss": 3.871776819229126,
+ "step": 1596
+ },
+ {
+ "epoch": 22.18173875054609,
+ "grad_norm": 0.2972337305545807,
+ "learning_rate": 0.0006,
+ "loss": 3.8453969955444336,
+ "step": 1597
+ },
+ {
+ "epoch": 22.195718654434252,
+ "grad_norm": 0.3012159764766693,
+ "learning_rate": 0.0006,
+ "loss": 3.8774254322052,
+ "step": 1598
+ },
+ {
+ "epoch": 22.209698558322412,
+ "grad_norm": 0.27275875210762024,
+ "learning_rate": 0.0006,
+ "loss": 3.8558950424194336,
+ "step": 1599
+ },
+ {
+ "epoch": 22.22367846221057,
+ "grad_norm": 0.2817993462085724,
+ "learning_rate": 0.0006,
+ "loss": 3.872211217880249,
+ "step": 1600
+ },
+ {
+ "epoch": 22.23765836609873,
+ "grad_norm": 0.28823208808898926,
+ "learning_rate": 0.0006,
+ "loss": 3.847616672515869,
+ "step": 1601
+ },
+ {
+ "epoch": 22.251638269986895,
+ "grad_norm": 0.2646387815475464,
+ "learning_rate": 0.0006,
+ "loss": 3.8993802070617676,
+ "step": 1602
+ },
+ {
+ "epoch": 22.265618173875055,
+ "grad_norm": 0.27664077281951904,
+ "learning_rate": 0.0006,
+ "loss": 3.858553409576416,
+ "step": 1603
+ },
+ {
+ "epoch": 22.279598077763215,
+ "grad_norm": 0.27708905935287476,
+ "learning_rate": 0.0006,
+ "loss": 3.8691039085388184,
+ "step": 1604
+ },
+ {
+ "epoch": 22.293577981651374,
+ "grad_norm": 0.3045521378517151,
+ "learning_rate": 0.0006,
+ "loss": 3.8721439838409424,
+ "step": 1605
+ },
+ {
+ "epoch": 22.307557885539538,
+ "grad_norm": 0.3481914699077606,
+ "learning_rate": 0.0006,
+ "loss": 3.894503593444824,
+ "step": 1606
+ },
+ {
+ "epoch": 22.321537789427698,
+ "grad_norm": 0.3298046588897705,
+ "learning_rate": 0.0006,
+ "loss": 3.8420844078063965,
+ "step": 1607
+ },
+ {
+ "epoch": 22.335517693315857,
+ "grad_norm": 0.24967724084854126,
+ "learning_rate": 0.0006,
+ "loss": 3.8892619609832764,
+ "step": 1608
+ },
+ {
+ "epoch": 22.34949759720402,
+ "grad_norm": 0.22645241022109985,
+ "learning_rate": 0.0006,
+ "loss": 3.873265504837036,
+ "step": 1609
+ },
+ {
+ "epoch": 22.36347750109218,
+ "grad_norm": 0.22813954949378967,
+ "learning_rate": 0.0006,
+ "loss": 3.8658013343811035,
+ "step": 1610
+ },
+ {
+ "epoch": 22.37745740498034,
+ "grad_norm": 0.23825274407863617,
+ "learning_rate": 0.0006,
+ "loss": 3.885456085205078,
+ "step": 1611
+ },
+ {
+ "epoch": 22.3914373088685,
+ "grad_norm": 0.23612336814403534,
+ "learning_rate": 0.0006,
+ "loss": 3.851841449737549,
+ "step": 1612
+ },
+ {
+ "epoch": 22.405417212756664,
+ "grad_norm": 0.23851265013217926,
+ "learning_rate": 0.0006,
+ "loss": 3.8711647987365723,
+ "step": 1613
+ },
+ {
+ "epoch": 22.419397116644824,
+ "grad_norm": 0.22977286577224731,
+ "learning_rate": 0.0006,
+ "loss": 3.848539113998413,
+ "step": 1614
+ },
+ {
+ "epoch": 22.433377020532983,
+ "grad_norm": 0.20970143377780914,
+ "learning_rate": 0.0006,
+ "loss": 3.8709521293640137,
+ "step": 1615
+ },
+ {
+ "epoch": 22.447356924421143,
+ "grad_norm": 0.20714804530143738,
+ "learning_rate": 0.0006,
+ "loss": 3.875060558319092,
+ "step": 1616
+ },
+ {
+ "epoch": 22.461336828309307,
+ "grad_norm": 0.18881355226039886,
+ "learning_rate": 0.0006,
+ "loss": 3.8744640350341797,
+ "step": 1617
+ },
+ {
+ "epoch": 22.475316732197467,
+ "grad_norm": 0.1928759068250656,
+ "learning_rate": 0.0006,
+ "loss": 3.867971420288086,
+ "step": 1618
+ },
+ {
+ "epoch": 22.489296636085626,
+ "grad_norm": 0.18614749610424042,
+ "learning_rate": 0.0006,
+ "loss": 3.8738222122192383,
+ "step": 1619
+ },
+ {
+ "epoch": 22.503276539973786,
+ "grad_norm": 0.18614931404590607,
+ "learning_rate": 0.0006,
+ "loss": 3.8470513820648193,
+ "step": 1620
+ },
+ {
+ "epoch": 22.51725644386195,
+ "grad_norm": 0.17805059254169464,
+ "learning_rate": 0.0006,
+ "loss": 3.866396903991699,
+ "step": 1621
+ },
+ {
+ "epoch": 22.53123634775011,
+ "grad_norm": 0.16941314935684204,
+ "learning_rate": 0.0006,
+ "loss": 3.856832265853882,
+ "step": 1622
+ },
+ {
+ "epoch": 22.54521625163827,
+ "grad_norm": 0.1802310198545456,
+ "learning_rate": 0.0006,
+ "loss": 3.885653018951416,
+ "step": 1623
+ },
+ {
+ "epoch": 22.55919615552643,
+ "grad_norm": 0.1854856163263321,
+ "learning_rate": 0.0006,
+ "loss": 3.8779640197753906,
+ "step": 1624
+ },
+ {
+ "epoch": 22.573176059414592,
+ "grad_norm": 0.18765869736671448,
+ "learning_rate": 0.0006,
+ "loss": 3.8449032306671143,
+ "step": 1625
+ },
+ {
+ "epoch": 22.587155963302752,
+ "grad_norm": 0.1907789707183838,
+ "learning_rate": 0.0006,
+ "loss": 3.863029718399048,
+ "step": 1626
+ },
+ {
+ "epoch": 22.601135867190912,
+ "grad_norm": 0.19285395741462708,
+ "learning_rate": 0.0006,
+ "loss": 3.880145788192749,
+ "step": 1627
+ },
+ {
+ "epoch": 22.615115771079076,
+ "grad_norm": 0.19229751825332642,
+ "learning_rate": 0.0006,
+ "loss": 3.8521225452423096,
+ "step": 1628
+ },
+ {
+ "epoch": 22.629095674967235,
+ "grad_norm": 0.191694438457489,
+ "learning_rate": 0.0006,
+ "loss": 3.899827003479004,
+ "step": 1629
+ },
+ {
+ "epoch": 22.643075578855395,
+ "grad_norm": 0.20143048465251923,
+ "learning_rate": 0.0006,
+ "loss": 3.862064838409424,
+ "step": 1630
+ },
+ {
+ "epoch": 22.657055482743555,
+ "grad_norm": 0.1959840953350067,
+ "learning_rate": 0.0006,
+ "loss": 3.8955392837524414,
+ "step": 1631
+ },
+ {
+ "epoch": 22.67103538663172,
+ "grad_norm": 0.21454884111881256,
+ "learning_rate": 0.0006,
+ "loss": 3.8503167629241943,
+ "step": 1632
+ },
+ {
+ "epoch": 22.68501529051988,
+ "grad_norm": 0.21748484671115875,
+ "learning_rate": 0.0006,
+ "loss": 3.897134304046631,
+ "step": 1633
+ },
+ {
+ "epoch": 22.698995194408038,
+ "grad_norm": 0.21204186975955963,
+ "learning_rate": 0.0006,
+ "loss": 3.9292588233947754,
+ "step": 1634
+ },
+ {
+ "epoch": 22.712975098296198,
+ "grad_norm": 0.2112748771905899,
+ "learning_rate": 0.0006,
+ "loss": 3.89798641204834,
+ "step": 1635
+ },
+ {
+ "epoch": 22.72695500218436,
+ "grad_norm": 0.188576802611351,
+ "learning_rate": 0.0006,
+ "loss": 3.85627818107605,
+ "step": 1636
+ },
+ {
+ "epoch": 22.74093490607252,
+ "grad_norm": 0.17755994200706482,
+ "learning_rate": 0.0006,
+ "loss": 3.8480074405670166,
+ "step": 1637
+ },
+ {
+ "epoch": 22.75491480996068,
+ "grad_norm": 0.18037520349025726,
+ "learning_rate": 0.0006,
+ "loss": 3.8800172805786133,
+ "step": 1638
+ },
+ {
+ "epoch": 22.76889471384884,
+ "grad_norm": 0.19205765426158905,
+ "learning_rate": 0.0006,
+ "loss": 3.8658275604248047,
+ "step": 1639
+ },
+ {
+ "epoch": 22.782874617737004,
+ "grad_norm": 0.21801964938640594,
+ "learning_rate": 0.0006,
+ "loss": 3.8999452590942383,
+ "step": 1640
+ },
+ {
+ "epoch": 22.796854521625164,
+ "grad_norm": 0.23586086928844452,
+ "learning_rate": 0.0006,
+ "loss": 3.8660664558410645,
+ "step": 1641
+ },
+ {
+ "epoch": 22.810834425513324,
+ "grad_norm": 0.22289055585861206,
+ "learning_rate": 0.0006,
+ "loss": 3.86102557182312,
+ "step": 1642
+ },
+ {
+ "epoch": 22.824814329401484,
+ "grad_norm": 0.20695745944976807,
+ "learning_rate": 0.0006,
+ "loss": 3.8336222171783447,
+ "step": 1643
+ },
+ {
+ "epoch": 22.838794233289647,
+ "grad_norm": 0.2157406210899353,
+ "learning_rate": 0.0006,
+ "loss": 3.8923370838165283,
+ "step": 1644
+ },
+ {
+ "epoch": 22.852774137177807,
+ "grad_norm": 0.2326202690601349,
+ "learning_rate": 0.0006,
+ "loss": 3.8841443061828613,
+ "step": 1645
+ },
+ {
+ "epoch": 22.866754041065967,
+ "grad_norm": 0.2228803187608719,
+ "learning_rate": 0.0006,
+ "loss": 3.8791375160217285,
+ "step": 1646
+ },
+ {
+ "epoch": 22.88073394495413,
+ "grad_norm": 0.228999063372612,
+ "learning_rate": 0.0006,
+ "loss": 3.9005866050720215,
+ "step": 1647
+ },
+ {
+ "epoch": 22.89471384884229,
+ "grad_norm": 0.19673815369606018,
+ "learning_rate": 0.0006,
+ "loss": 3.8954291343688965,
+ "step": 1648
+ },
+ {
+ "epoch": 22.90869375273045,
+ "grad_norm": 0.1862584501504898,
+ "learning_rate": 0.0006,
+ "loss": 3.8591439723968506,
+ "step": 1649
+ },
+ {
+ "epoch": 22.92267365661861,
+ "grad_norm": 0.21360838413238525,
+ "learning_rate": 0.0006,
+ "loss": 3.862949848175049,
+ "step": 1650
+ },
+ {
+ "epoch": 22.936653560506773,
+ "grad_norm": 0.22538702189922333,
+ "learning_rate": 0.0006,
+ "loss": 3.8466529846191406,
+ "step": 1651
+ },
+ {
+ "epoch": 22.950633464394933,
+ "grad_norm": 0.21452727913856506,
+ "learning_rate": 0.0006,
+ "loss": 3.890007495880127,
+ "step": 1652
+ },
+ {
+ "epoch": 22.964613368283093,
+ "grad_norm": 0.21283482015132904,
+ "learning_rate": 0.0006,
+ "loss": 3.8820929527282715,
+ "step": 1653
+ },
+ {
+ "epoch": 22.978593272171253,
+ "grad_norm": 0.2035825103521347,
+ "learning_rate": 0.0006,
+ "loss": 3.8663241863250732,
+ "step": 1654
+ },
+ {
+ "epoch": 22.992573176059416,
+ "grad_norm": 0.22431661188602448,
+ "learning_rate": 0.0006,
+ "loss": 3.88238525390625,
+ "step": 1655
+ },
+ {
+ "epoch": 23.0,
+ "grad_norm": 0.2619943916797638,
+ "learning_rate": 0.0006,
+ "loss": 3.8482635021209717,
+ "step": 1656
+ },
+ {
+ "epoch": 23.0,
+ "eval_loss": 4.099980354309082,
+ "eval_runtime": 44.1311,
+ "eval_samples_per_second": 55.335,
+ "eval_steps_per_second": 3.467,
+ "step": 1656
+ },
+ {
+ "epoch": 23.01397990388816,
+ "grad_norm": 0.24712848663330078,
+ "learning_rate": 0.0006,
+ "loss": 3.836700916290283,
+ "step": 1657
+ },
+ {
+ "epoch": 23.027959807776323,
+ "grad_norm": 0.28568798303604126,
+ "learning_rate": 0.0006,
+ "loss": 3.8523952960968018,
+ "step": 1658
+ },
+ {
+ "epoch": 23.041939711664483,
+ "grad_norm": 0.2999744415283203,
+ "learning_rate": 0.0006,
+ "loss": 3.8229494094848633,
+ "step": 1659
+ },
+ {
+ "epoch": 23.055919615552643,
+ "grad_norm": 0.32080450654029846,
+ "learning_rate": 0.0006,
+ "loss": 3.8562774658203125,
+ "step": 1660
+ },
+ {
+ "epoch": 23.069899519440803,
+ "grad_norm": 0.293468177318573,
+ "learning_rate": 0.0006,
+ "loss": 3.889139175415039,
+ "step": 1661
+ },
+ {
+ "epoch": 23.083879423328966,
+ "grad_norm": 0.2605799436569214,
+ "learning_rate": 0.0006,
+ "loss": 3.838681221008301,
+ "step": 1662
+ },
+ {
+ "epoch": 23.097859327217126,
+ "grad_norm": 0.2656237483024597,
+ "learning_rate": 0.0006,
+ "loss": 3.8603532314300537,
+ "step": 1663
+ },
+ {
+ "epoch": 23.111839231105286,
+ "grad_norm": 0.27163293957710266,
+ "learning_rate": 0.0006,
+ "loss": 3.846987009048462,
+ "step": 1664
+ },
+ {
+ "epoch": 23.125819134993446,
+ "grad_norm": 0.2719763517379761,
+ "learning_rate": 0.0006,
+ "loss": 3.805354595184326,
+ "step": 1665
+ },
+ {
+ "epoch": 23.13979903888161,
+ "grad_norm": 0.25786274671554565,
+ "learning_rate": 0.0006,
+ "loss": 3.8486907482147217,
+ "step": 1666
+ },
+ {
+ "epoch": 23.15377894276977,
+ "grad_norm": 0.2675692141056061,
+ "learning_rate": 0.0006,
+ "loss": 3.816493511199951,
+ "step": 1667
+ },
+ {
+ "epoch": 23.16775884665793,
+ "grad_norm": 0.2711698114871979,
+ "learning_rate": 0.0006,
+ "loss": 3.851863384246826,
+ "step": 1668
+ },
+ {
+ "epoch": 23.18173875054609,
+ "grad_norm": 0.2588968873023987,
+ "learning_rate": 0.0006,
+ "loss": 3.860816717147827,
+ "step": 1669
+ },
+ {
+ "epoch": 23.195718654434252,
+ "grad_norm": 0.2458600401878357,
+ "learning_rate": 0.0006,
+ "loss": 3.8058223724365234,
+ "step": 1670
+ },
+ {
+ "epoch": 23.209698558322412,
+ "grad_norm": 0.22014005482196808,
+ "learning_rate": 0.0006,
+ "loss": 3.8686985969543457,
+ "step": 1671
+ },
+ {
+ "epoch": 23.22367846221057,
+ "grad_norm": 0.22450537979602814,
+ "learning_rate": 0.0006,
+ "loss": 3.8379364013671875,
+ "step": 1672
+ },
+ {
+ "epoch": 23.23765836609873,
+ "grad_norm": 0.22132326662540436,
+ "learning_rate": 0.0006,
+ "loss": 3.8873870372772217,
+ "step": 1673
+ },
+ {
+ "epoch": 23.251638269986895,
+ "grad_norm": 0.20994804799556732,
+ "learning_rate": 0.0006,
+ "loss": 3.821415424346924,
+ "step": 1674
+ },
+ {
+ "epoch": 23.265618173875055,
+ "grad_norm": 0.2040853649377823,
+ "learning_rate": 0.0006,
+ "loss": 3.831658124923706,
+ "step": 1675
+ },
+ {
+ "epoch": 23.279598077763215,
+ "grad_norm": 0.20878618955612183,
+ "learning_rate": 0.0006,
+ "loss": 3.838672637939453,
+ "step": 1676
+ },
+ {
+ "epoch": 23.293577981651374,
+ "grad_norm": 0.19974198937416077,
+ "learning_rate": 0.0006,
+ "loss": 3.8442561626434326,
+ "step": 1677
+ },
+ {
+ "epoch": 23.307557885539538,
+ "grad_norm": 0.20523984730243683,
+ "learning_rate": 0.0006,
+ "loss": 3.846139907836914,
+ "step": 1678
+ },
+ {
+ "epoch": 23.321537789427698,
+ "grad_norm": 0.2045847624540329,
+ "learning_rate": 0.0006,
+ "loss": 3.8597474098205566,
+ "step": 1679
+ },
+ {
+ "epoch": 23.335517693315857,
+ "grad_norm": 0.20957441627979279,
+ "learning_rate": 0.0006,
+ "loss": 3.8493881225585938,
+ "step": 1680
+ },
+ {
+ "epoch": 23.34949759720402,
+ "grad_norm": 0.2069379836320877,
+ "learning_rate": 0.0006,
+ "loss": 3.8510046005249023,
+ "step": 1681
+ },
+ {
+ "epoch": 23.36347750109218,
+ "grad_norm": 0.19627872109413147,
+ "learning_rate": 0.0006,
+ "loss": 3.844618320465088,
+ "step": 1682
+ },
+ {
+ "epoch": 23.37745740498034,
+ "grad_norm": 0.19599434733390808,
+ "learning_rate": 0.0006,
+ "loss": 3.8245465755462646,
+ "step": 1683
+ },
+ {
+ "epoch": 23.3914373088685,
+ "grad_norm": 0.2035072147846222,
+ "learning_rate": 0.0006,
+ "loss": 3.854422092437744,
+ "step": 1684
+ },
+ {
+ "epoch": 23.405417212756664,
+ "grad_norm": 0.21836814284324646,
+ "learning_rate": 0.0006,
+ "loss": 3.83512282371521,
+ "step": 1685
+ },
+ {
+ "epoch": 23.419397116644824,
+ "grad_norm": 0.22844630479812622,
+ "learning_rate": 0.0006,
+ "loss": 3.8744301795959473,
+ "step": 1686
+ },
+ {
+ "epoch": 23.433377020532983,
+ "grad_norm": 0.2259359359741211,
+ "learning_rate": 0.0006,
+ "loss": 3.8460323810577393,
+ "step": 1687
+ },
+ {
+ "epoch": 23.447356924421143,
+ "grad_norm": 0.24440120160579681,
+ "learning_rate": 0.0006,
+ "loss": 3.8543787002563477,
+ "step": 1688
+ },
+ {
+ "epoch": 23.461336828309307,
+ "grad_norm": 0.25063708424568176,
+ "learning_rate": 0.0006,
+ "loss": 3.851004123687744,
+ "step": 1689
+ },
+ {
+ "epoch": 23.475316732197467,
+ "grad_norm": 0.25515618920326233,
+ "learning_rate": 0.0006,
+ "loss": 3.8685030937194824,
+ "step": 1690
+ },
+ {
+ "epoch": 23.489296636085626,
+ "grad_norm": 0.23961050808429718,
+ "learning_rate": 0.0006,
+ "loss": 3.866792678833008,
+ "step": 1691
+ },
+ {
+ "epoch": 23.503276539973786,
+ "grad_norm": 0.20880955457687378,
+ "learning_rate": 0.0006,
+ "loss": 3.8416638374328613,
+ "step": 1692
+ },
+ {
+ "epoch": 23.51725644386195,
+ "grad_norm": 0.1989721804857254,
+ "learning_rate": 0.0006,
+ "loss": 3.8608641624450684,
+ "step": 1693
+ },
+ {
+ "epoch": 23.53123634775011,
+ "grad_norm": 0.207577183842659,
+ "learning_rate": 0.0006,
+ "loss": 3.8431811332702637,
+ "step": 1694
+ },
+ {
+ "epoch": 23.54521625163827,
+ "grad_norm": 0.20844359695911407,
+ "learning_rate": 0.0006,
+ "loss": 3.882844924926758,
+ "step": 1695
+ },
+ {
+ "epoch": 23.55919615552643,
+ "grad_norm": 0.22511139512062073,
+ "learning_rate": 0.0006,
+ "loss": 3.866156578063965,
+ "step": 1696
+ },
+ {
+ "epoch": 23.573176059414592,
+ "grad_norm": 0.21648484468460083,
+ "learning_rate": 0.0006,
+ "loss": 3.87117075920105,
+ "step": 1697
+ },
+ {
+ "epoch": 23.587155963302752,
+ "grad_norm": 0.2081802636384964,
+ "learning_rate": 0.0006,
+ "loss": 3.828132152557373,
+ "step": 1698
+ },
+ {
+ "epoch": 23.601135867190912,
+ "grad_norm": 0.2017381489276886,
+ "learning_rate": 0.0006,
+ "loss": 3.839737892150879,
+ "step": 1699
+ },
+ {
+ "epoch": 23.615115771079076,
+ "grad_norm": 0.2025786191225052,
+ "learning_rate": 0.0006,
+ "loss": 3.8787710666656494,
+ "step": 1700
+ },
+ {
+ "epoch": 23.629095674967235,
+ "grad_norm": 0.21394102275371552,
+ "learning_rate": 0.0006,
+ "loss": 3.824047088623047,
+ "step": 1701
+ },
+ {
+ "epoch": 23.643075578855395,
+ "grad_norm": 0.20749174058437347,
+ "learning_rate": 0.0006,
+ "loss": 3.877009153366089,
+ "step": 1702
+ },
+ {
+ "epoch": 23.657055482743555,
+ "grad_norm": 0.2132839858531952,
+ "learning_rate": 0.0006,
+ "loss": 3.844214916229248,
+ "step": 1703
+ },
+ {
+ "epoch": 23.67103538663172,
+ "grad_norm": 0.22408637404441833,
+ "learning_rate": 0.0006,
+ "loss": 3.8570785522460938,
+ "step": 1704
+ },
+ {
+ "epoch": 23.68501529051988,
+ "grad_norm": 0.2275897115468979,
+ "learning_rate": 0.0006,
+ "loss": 3.8599512577056885,
+ "step": 1705
+ },
+ {
+ "epoch": 23.698995194408038,
+ "grad_norm": 0.2230614721775055,
+ "learning_rate": 0.0006,
+ "loss": 3.86374568939209,
+ "step": 1706
+ },
+ {
+ "epoch": 23.712975098296198,
+ "grad_norm": 0.21873739361763,
+ "learning_rate": 0.0006,
+ "loss": 3.8530168533325195,
+ "step": 1707
+ },
+ {
+ "epoch": 23.72695500218436,
+ "grad_norm": 0.24418923258781433,
+ "learning_rate": 0.0006,
+ "loss": 3.8410465717315674,
+ "step": 1708
+ },
+ {
+ "epoch": 23.74093490607252,
+ "grad_norm": 0.24894575774669647,
+ "learning_rate": 0.0006,
+ "loss": 3.8386030197143555,
+ "step": 1709
+ },
+ {
+ "epoch": 23.75491480996068,
+ "grad_norm": 0.221230611205101,
+ "learning_rate": 0.0006,
+ "loss": 3.8116674423217773,
+ "step": 1710
+ },
+ {
+ "epoch": 23.76889471384884,
+ "grad_norm": 0.20560568571090698,
+ "learning_rate": 0.0006,
+ "loss": 3.8634426593780518,
+ "step": 1711
+ },
+ {
+ "epoch": 23.782874617737004,
+ "grad_norm": 0.20450648665428162,
+ "learning_rate": 0.0006,
+ "loss": 3.8690528869628906,
+ "step": 1712
+ },
+ {
+ "epoch": 23.796854521625164,
+ "grad_norm": 0.18996809422969818,
+ "learning_rate": 0.0006,
+ "loss": 3.8484325408935547,
+ "step": 1713
+ },
+ {
+ "epoch": 23.810834425513324,
+ "grad_norm": 0.20165087282657623,
+ "learning_rate": 0.0006,
+ "loss": 3.8823161125183105,
+ "step": 1714
+ },
+ {
+ "epoch": 23.824814329401484,
+ "grad_norm": 0.21149255335330963,
+ "learning_rate": 0.0006,
+ "loss": 3.8833112716674805,
+ "step": 1715
+ },
+ {
+ "epoch": 23.838794233289647,
+ "grad_norm": 0.21254824101924896,
+ "learning_rate": 0.0006,
+ "loss": 3.8414595127105713,
+ "step": 1716
+ },
+ {
+ "epoch": 23.852774137177807,
+ "grad_norm": 0.21313664317131042,
+ "learning_rate": 0.0006,
+ "loss": 3.8732268810272217,
+ "step": 1717
+ },
+ {
+ "epoch": 23.866754041065967,
+ "grad_norm": 0.21635662019252777,
+ "learning_rate": 0.0006,
+ "loss": 3.861222743988037,
+ "step": 1718
+ },
+ {
+ "epoch": 23.88073394495413,
+ "grad_norm": 0.20612190663814545,
+ "learning_rate": 0.0006,
+ "loss": 3.821854591369629,
+ "step": 1719
+ },
+ {
+ "epoch": 23.89471384884229,
+ "grad_norm": 0.1975104659795761,
+ "learning_rate": 0.0006,
+ "loss": 3.8815202713012695,
+ "step": 1720
+ },
+ {
+ "epoch": 23.90869375273045,
+ "grad_norm": 0.20893609523773193,
+ "learning_rate": 0.0006,
+ "loss": 3.8581607341766357,
+ "step": 1721
+ },
+ {
+ "epoch": 23.92267365661861,
+ "grad_norm": 0.2125461846590042,
+ "learning_rate": 0.0006,
+ "loss": 3.839498281478882,
+ "step": 1722
+ },
+ {
+ "epoch": 23.936653560506773,
+ "grad_norm": 0.19985878467559814,
+ "learning_rate": 0.0006,
+ "loss": 3.856555223464966,
+ "step": 1723
+ },
+ {
+ "epoch": 23.950633464394933,
+ "grad_norm": 0.1922348290681839,
+ "learning_rate": 0.0006,
+ "loss": 3.8956782817840576,
+ "step": 1724
+ },
+ {
+ "epoch": 23.964613368283093,
+ "grad_norm": 0.2191949337720871,
+ "learning_rate": 0.0006,
+ "loss": 3.8582406044006348,
+ "step": 1725
+ },
+ {
+ "epoch": 23.978593272171253,
+ "grad_norm": 0.2569248676300049,
+ "learning_rate": 0.0006,
+ "loss": 3.855678081512451,
+ "step": 1726
+ },
+ {
+ "epoch": 23.992573176059416,
+ "grad_norm": 0.2641172409057617,
+ "learning_rate": 0.0006,
+ "loss": 3.8426473140716553,
+ "step": 1727
+ },
+ {
+ "epoch": 24.0,
+ "grad_norm": 0.29637208580970764,
+ "learning_rate": 0.0006,
+ "loss": 3.843040704727173,
+ "step": 1728
+ },
+ {
+ "epoch": 24.0,
+ "eval_loss": 4.075617790222168,
+ "eval_runtime": 43.9795,
+ "eval_samples_per_second": 55.526,
+ "eval_steps_per_second": 3.479,
+ "step": 1728
+ },
+ {
+ "epoch": 24.01397990388816,
+ "grad_norm": 0.2804758548736572,
+ "learning_rate": 0.0006,
+ "loss": 3.819150924682617,
+ "step": 1729
+ },
+ {
+ "epoch": 24.027959807776323,
+ "grad_norm": 0.2796347141265869,
+ "learning_rate": 0.0006,
+ "loss": 3.8400537967681885,
+ "step": 1730
+ },
+ {
+ "epoch": 24.041939711664483,
+ "grad_norm": 0.28388649225234985,
+ "learning_rate": 0.0006,
+ "loss": 3.844595432281494,
+ "step": 1731
+ },
+ {
+ "epoch": 24.055919615552643,
+ "grad_norm": 0.2944681942462921,
+ "learning_rate": 0.0006,
+ "loss": 3.8048014640808105,
+ "step": 1732
+ },
+ {
+ "epoch": 24.069899519440803,
+ "grad_norm": 0.2956784665584564,
+ "learning_rate": 0.0006,
+ "loss": 3.8488049507141113,
+ "step": 1733
+ },
+ {
+ "epoch": 24.083879423328966,
+ "grad_norm": 0.2822059392929077,
+ "learning_rate": 0.0006,
+ "loss": 3.850322723388672,
+ "step": 1734
+ },
+ {
+ "epoch": 24.097859327217126,
+ "grad_norm": 0.3012927174568176,
+ "learning_rate": 0.0006,
+ "loss": 3.8748154640197754,
+ "step": 1735
+ },
+ {
+ "epoch": 24.111839231105286,
+ "grad_norm": 0.28868764638900757,
+ "learning_rate": 0.0006,
+ "loss": 3.8282783031463623,
+ "step": 1736
+ },
+ {
+ "epoch": 24.125819134993446,
+ "grad_norm": 0.277203768491745,
+ "learning_rate": 0.0006,
+ "loss": 3.8462908267974854,
+ "step": 1737
+ },
+ {
+ "epoch": 24.13979903888161,
+ "grad_norm": 0.2654508948326111,
+ "learning_rate": 0.0006,
+ "loss": 3.8043856620788574,
+ "step": 1738
+ },
+ {
+ "epoch": 24.15377894276977,
+ "grad_norm": 0.24425740540027618,
+ "learning_rate": 0.0006,
+ "loss": 3.8284308910369873,
+ "step": 1739
+ },
+ {
+ "epoch": 24.16775884665793,
+ "grad_norm": 0.24407348036766052,
+ "learning_rate": 0.0006,
+ "loss": 3.8489203453063965,
+ "step": 1740
+ },
+ {
+ "epoch": 24.18173875054609,
+ "grad_norm": 0.2387724369764328,
+ "learning_rate": 0.0006,
+ "loss": 3.8240389823913574,
+ "step": 1741
+ },
+ {
+ "epoch": 24.195718654434252,
+ "grad_norm": 0.2832290232181549,
+ "learning_rate": 0.0006,
+ "loss": 3.869053363800049,
+ "step": 1742
+ },
+ {
+ "epoch": 24.209698558322412,
+ "grad_norm": 0.26501718163490295,
+ "learning_rate": 0.0006,
+ "loss": 3.8624343872070312,
+ "step": 1743
+ },
+ {
+ "epoch": 24.22367846221057,
+ "grad_norm": 0.24234668910503387,
+ "learning_rate": 0.0006,
+ "loss": 3.823103904724121,
+ "step": 1744
+ },
+ {
+ "epoch": 24.23765836609873,
+ "grad_norm": 0.24160076677799225,
+ "learning_rate": 0.0006,
+ "loss": 3.8174376487731934,
+ "step": 1745
+ },
+ {
+ "epoch": 24.251638269986895,
+ "grad_norm": 0.2447604238986969,
+ "learning_rate": 0.0006,
+ "loss": 3.8345441818237305,
+ "step": 1746
+ },
+ {
+ "epoch": 24.265618173875055,
+ "grad_norm": 0.22864456474781036,
+ "learning_rate": 0.0006,
+ "loss": 3.833101272583008,
+ "step": 1747
+ },
+ {
+ "epoch": 24.279598077763215,
+ "grad_norm": 0.20429204404354095,
+ "learning_rate": 0.0006,
+ "loss": 3.8055219650268555,
+ "step": 1748
+ },
+ {
+ "epoch": 24.293577981651374,
+ "grad_norm": 0.21538510918617249,
+ "learning_rate": 0.0006,
+ "loss": 3.7929327487945557,
+ "step": 1749
+ },
+ {
+ "epoch": 24.307557885539538,
+ "grad_norm": 0.2189008593559265,
+ "learning_rate": 0.0006,
+ "loss": 3.852264881134033,
+ "step": 1750
+ },
+ {
+ "epoch": 24.321537789427698,
+ "grad_norm": 0.2228662073612213,
+ "learning_rate": 0.0006,
+ "loss": 3.831088066101074,
+ "step": 1751
+ },
+ {
+ "epoch": 24.335517693315857,
+ "grad_norm": 0.2039937973022461,
+ "learning_rate": 0.0006,
+ "loss": 3.8358256816864014,
+ "step": 1752
+ },
+ {
+ "epoch": 24.34949759720402,
+ "grad_norm": 0.19247715175151825,
+ "learning_rate": 0.0006,
+ "loss": 3.8077402114868164,
+ "step": 1753
+ },
+ {
+ "epoch": 24.36347750109218,
+ "grad_norm": 0.18301935493946075,
+ "learning_rate": 0.0006,
+ "loss": 3.81380033493042,
+ "step": 1754
+ },
+ {
+ "epoch": 24.37745740498034,
+ "grad_norm": 0.19325268268585205,
+ "learning_rate": 0.0006,
+ "loss": 3.8447322845458984,
+ "step": 1755
+ },
+ {
+ "epoch": 24.3914373088685,
+ "grad_norm": 0.2007269263267517,
+ "learning_rate": 0.0006,
+ "loss": 3.82779860496521,
+ "step": 1756
+ },
+ {
+ "epoch": 24.405417212756664,
+ "grad_norm": 0.20567037165164948,
+ "learning_rate": 0.0006,
+ "loss": 3.800354480743408,
+ "step": 1757
+ },
+ {
+ "epoch": 24.419397116644824,
+ "grad_norm": 0.22553028166294098,
+ "learning_rate": 0.0006,
+ "loss": 3.7910406589508057,
+ "step": 1758
+ },
+ {
+ "epoch": 24.433377020532983,
+ "grad_norm": 0.22697079181671143,
+ "learning_rate": 0.0006,
+ "loss": 3.857635974884033,
+ "step": 1759
+ },
+ {
+ "epoch": 24.447356924421143,
+ "grad_norm": 0.22090297937393188,
+ "learning_rate": 0.0006,
+ "loss": 3.8112804889678955,
+ "step": 1760
+ },
+ {
+ "epoch": 24.461336828309307,
+ "grad_norm": 0.24325518310070038,
+ "learning_rate": 0.0006,
+ "loss": 3.822084426879883,
+ "step": 1761
+ },
+ {
+ "epoch": 24.475316732197467,
+ "grad_norm": 0.2702929377555847,
+ "learning_rate": 0.0006,
+ "loss": 3.8307600021362305,
+ "step": 1762
+ },
+ {
+ "epoch": 24.489296636085626,
+ "grad_norm": 0.2699742317199707,
+ "learning_rate": 0.0006,
+ "loss": 3.8479247093200684,
+ "step": 1763
+ },
+ {
+ "epoch": 24.503276539973786,
+ "grad_norm": 0.2526061236858368,
+ "learning_rate": 0.0006,
+ "loss": 3.8615071773529053,
+ "step": 1764
+ },
+ {
+ "epoch": 24.51725644386195,
+ "grad_norm": 0.2633848190307617,
+ "learning_rate": 0.0006,
+ "loss": 3.8412697315216064,
+ "step": 1765
+ },
+ {
+ "epoch": 24.53123634775011,
+ "grad_norm": 0.2711184024810791,
+ "learning_rate": 0.0006,
+ "loss": 3.83647084236145,
+ "step": 1766
+ },
+ {
+ "epoch": 24.54521625163827,
+ "grad_norm": 0.2691243588924408,
+ "learning_rate": 0.0006,
+ "loss": 3.8489012718200684,
+ "step": 1767
+ },
+ {
+ "epoch": 24.55919615552643,
+ "grad_norm": 0.2580898404121399,
+ "learning_rate": 0.0006,
+ "loss": 3.8464407920837402,
+ "step": 1768
+ },
+ {
+ "epoch": 24.573176059414592,
+ "grad_norm": 0.21342119574546814,
+ "learning_rate": 0.0006,
+ "loss": 3.8279383182525635,
+ "step": 1769
+ },
+ {
+ "epoch": 24.587155963302752,
+ "grad_norm": 0.22102399170398712,
+ "learning_rate": 0.0006,
+ "loss": 3.841676712036133,
+ "step": 1770
+ },
+ {
+ "epoch": 24.601135867190912,
+ "grad_norm": 0.2882173955440521,
+ "learning_rate": 0.0006,
+ "loss": 3.825528383255005,
+ "step": 1771
+ },
+ {
+ "epoch": 24.615115771079076,
+ "grad_norm": 0.3403635323047638,
+ "learning_rate": 0.0006,
+ "loss": 3.8282246589660645,
+ "step": 1772
+ },
+ {
+ "epoch": 24.629095674967235,
+ "grad_norm": 0.32192692160606384,
+ "learning_rate": 0.0006,
+ "loss": 3.8411307334899902,
+ "step": 1773
+ },
+ {
+ "epoch": 24.643075578855395,
+ "grad_norm": 0.2534109055995941,
+ "learning_rate": 0.0006,
+ "loss": 3.843007802963257,
+ "step": 1774
+ },
+ {
+ "epoch": 24.657055482743555,
+ "grad_norm": 0.25483962893486023,
+ "learning_rate": 0.0006,
+ "loss": 3.848358154296875,
+ "step": 1775
+ },
+ {
+ "epoch": 24.67103538663172,
+ "grad_norm": 0.25175443291664124,
+ "learning_rate": 0.0006,
+ "loss": 3.8232598304748535,
+ "step": 1776
+ },
+ {
+ "epoch": 24.68501529051988,
+ "grad_norm": 0.20538510382175446,
+ "learning_rate": 0.0006,
+ "loss": 3.857635498046875,
+ "step": 1777
+ },
+ {
+ "epoch": 24.698995194408038,
+ "grad_norm": 0.240861177444458,
+ "learning_rate": 0.0006,
+ "loss": 3.83717679977417,
+ "step": 1778
+ },
+ {
+ "epoch": 24.712975098296198,
+ "grad_norm": 0.23646967113018036,
+ "learning_rate": 0.0006,
+ "loss": 3.81032133102417,
+ "step": 1779
+ },
+ {
+ "epoch": 24.72695500218436,
+ "grad_norm": 0.2164423167705536,
+ "learning_rate": 0.0006,
+ "loss": 3.807878255844116,
+ "step": 1780
+ },
+ {
+ "epoch": 24.74093490607252,
+ "grad_norm": 0.21160705387592316,
+ "learning_rate": 0.0006,
+ "loss": 3.870394468307495,
+ "step": 1781
+ },
+ {
+ "epoch": 24.75491480996068,
+ "grad_norm": 0.20284807682037354,
+ "learning_rate": 0.0006,
+ "loss": 3.842154026031494,
+ "step": 1782
+ },
+ {
+ "epoch": 24.76889471384884,
+ "grad_norm": 0.20738485455513,
+ "learning_rate": 0.0006,
+ "loss": 3.8347136974334717,
+ "step": 1783
+ },
+ {
+ "epoch": 24.782874617737004,
+ "grad_norm": 0.20253778994083405,
+ "learning_rate": 0.0006,
+ "loss": 3.814948320388794,
+ "step": 1784
+ },
+ {
+ "epoch": 24.796854521625164,
+ "grad_norm": 0.20567010343074799,
+ "learning_rate": 0.0006,
+ "loss": 3.8354592323303223,
+ "step": 1785
+ },
+ {
+ "epoch": 24.810834425513324,
+ "grad_norm": 0.20639720559120178,
+ "learning_rate": 0.0006,
+ "loss": 3.8336033821105957,
+ "step": 1786
+ },
+ {
+ "epoch": 24.824814329401484,
+ "grad_norm": 0.19978247582912445,
+ "learning_rate": 0.0006,
+ "loss": 3.8209140300750732,
+ "step": 1787
+ },
+ {
+ "epoch": 24.838794233289647,
+ "grad_norm": 0.20628373324871063,
+ "learning_rate": 0.0006,
+ "loss": 3.8372955322265625,
+ "step": 1788
+ },
+ {
+ "epoch": 24.852774137177807,
+ "grad_norm": 0.2266162782907486,
+ "learning_rate": 0.0006,
+ "loss": 3.850994110107422,
+ "step": 1789
+ },
+ {
+ "epoch": 24.866754041065967,
+ "grad_norm": 0.22567765414714813,
+ "learning_rate": 0.0006,
+ "loss": 3.8552165031433105,
+ "step": 1790
+ },
+ {
+ "epoch": 24.88073394495413,
+ "grad_norm": 0.228011354804039,
+ "learning_rate": 0.0006,
+ "loss": 3.8310747146606445,
+ "step": 1791
+ },
+ {
+ "epoch": 24.89471384884229,
+ "grad_norm": 0.23706914484500885,
+ "learning_rate": 0.0006,
+ "loss": 3.8369603157043457,
+ "step": 1792
+ },
+ {
+ "epoch": 24.90869375273045,
+ "grad_norm": 0.22669097781181335,
+ "learning_rate": 0.0006,
+ "loss": 3.8443825244903564,
+ "step": 1793
+ },
+ {
+ "epoch": 24.92267365661861,
+ "grad_norm": 0.2051001936197281,
+ "learning_rate": 0.0006,
+ "loss": 3.7938501834869385,
+ "step": 1794
+ },
+ {
+ "epoch": 24.936653560506773,
+ "grad_norm": 0.2091219276189804,
+ "learning_rate": 0.0006,
+ "loss": 3.8167076110839844,
+ "step": 1795
+ },
+ {
+ "epoch": 24.950633464394933,
+ "grad_norm": 0.20517204701900482,
+ "learning_rate": 0.0006,
+ "loss": 3.852670669555664,
+ "step": 1796
+ },
+ {
+ "epoch": 24.964613368283093,
+ "grad_norm": 0.19916993379592896,
+ "learning_rate": 0.0006,
+ "loss": 3.8410873413085938,
+ "step": 1797
+ },
+ {
+ "epoch": 24.978593272171253,
+ "grad_norm": 0.21313942968845367,
+ "learning_rate": 0.0006,
+ "loss": 3.8383948802948,
+ "step": 1798
+ },
+ {
+ "epoch": 24.992573176059416,
+ "grad_norm": 0.21042990684509277,
+ "learning_rate": 0.0006,
+ "loss": 3.8623173236846924,
+ "step": 1799
+ },
+ {
+ "epoch": 25.0,
+ "grad_norm": 0.23052045702934265,
+ "learning_rate": 0.0006,
+ "loss": 3.8646674156188965,
+ "step": 1800
+ },
+ {
+ "epoch": 25.0,
+ "eval_loss": 4.081690311431885,
+ "eval_runtime": 44.036,
+ "eval_samples_per_second": 55.455,
+ "eval_steps_per_second": 3.474,
+ "step": 1800
+ },
+ {
+ "epoch": 25.01397990388816,
+ "grad_norm": 0.22068746387958527,
+ "learning_rate": 0.0006,
+ "loss": 3.8002820014953613,
+ "step": 1801
+ },
+ {
+ "epoch": 25.027959807776323,
+ "grad_norm": 0.20711193978786469,
+ "learning_rate": 0.0006,
+ "loss": 3.787785768508911,
+ "step": 1802
+ },
+ {
+ "epoch": 25.041939711664483,
+ "grad_norm": 0.20659677684307098,
+ "learning_rate": 0.0006,
+ "loss": 3.80245304107666,
+ "step": 1803
+ },
+ {
+ "epoch": 25.055919615552643,
+ "grad_norm": 0.22891797125339508,
+ "learning_rate": 0.0006,
+ "loss": 3.784543514251709,
+ "step": 1804
+ },
+ {
+ "epoch": 25.069899519440803,
+ "grad_norm": 0.23679181933403015,
+ "learning_rate": 0.0006,
+ "loss": 3.8311429023742676,
+ "step": 1805
+ },
+ {
+ "epoch": 25.083879423328966,
+ "grad_norm": 0.2548872232437134,
+ "learning_rate": 0.0006,
+ "loss": 3.8047211170196533,
+ "step": 1806
+ },
+ {
+ "epoch": 25.097859327217126,
+ "grad_norm": 0.26181501150131226,
+ "learning_rate": 0.0006,
+ "loss": 3.837508201599121,
+ "step": 1807
+ },
+ {
+ "epoch": 25.111839231105286,
+ "grad_norm": 0.2548452913761139,
+ "learning_rate": 0.0006,
+ "loss": 3.831544876098633,
+ "step": 1808
+ },
+ {
+ "epoch": 25.125819134993446,
+ "grad_norm": 0.26177605986595154,
+ "learning_rate": 0.0006,
+ "loss": 3.805346965789795,
+ "step": 1809
+ },
+ {
+ "epoch": 25.13979903888161,
+ "grad_norm": 0.2608112394809723,
+ "learning_rate": 0.0006,
+ "loss": 3.8040924072265625,
+ "step": 1810
+ },
+ {
+ "epoch": 25.15377894276977,
+ "grad_norm": 0.2586037814617157,
+ "learning_rate": 0.0006,
+ "loss": 3.8102216720581055,
+ "step": 1811
+ },
+ {
+ "epoch": 25.16775884665793,
+ "grad_norm": 0.26258161664009094,
+ "learning_rate": 0.0006,
+ "loss": 3.8152549266815186,
+ "step": 1812
+ },
+ {
+ "epoch": 25.18173875054609,
+ "grad_norm": 0.2803022265434265,
+ "learning_rate": 0.0006,
+ "loss": 3.82576584815979,
+ "step": 1813
+ },
+ {
+ "epoch": 25.195718654434252,
+ "grad_norm": 0.2618221938610077,
+ "learning_rate": 0.0006,
+ "loss": 3.817220687866211,
+ "step": 1814
+ },
+ {
+ "epoch": 25.209698558322412,
+ "grad_norm": 0.23283469676971436,
+ "learning_rate": 0.0006,
+ "loss": 3.7999041080474854,
+ "step": 1815
+ },
+ {
+ "epoch": 25.22367846221057,
+ "grad_norm": 0.20110781490802765,
+ "learning_rate": 0.0006,
+ "loss": 3.783228874206543,
+ "step": 1816
+ },
+ {
+ "epoch": 25.23765836609873,
+ "grad_norm": 0.2231830358505249,
+ "learning_rate": 0.0006,
+ "loss": 3.8032913208007812,
+ "step": 1817
+ },
+ {
+ "epoch": 25.251638269986895,
+ "grad_norm": 0.21807286143302917,
+ "learning_rate": 0.0006,
+ "loss": 3.817028045654297,
+ "step": 1818
+ },
+ {
+ "epoch": 25.265618173875055,
+ "grad_norm": 0.22710664570331573,
+ "learning_rate": 0.0006,
+ "loss": 3.8201727867126465,
+ "step": 1819
+ },
+ {
+ "epoch": 25.279598077763215,
+ "grad_norm": 0.22299866378307343,
+ "learning_rate": 0.0006,
+ "loss": 3.8198719024658203,
+ "step": 1820
+ },
+ {
+ "epoch": 25.293577981651374,
+ "grad_norm": 0.20886564254760742,
+ "learning_rate": 0.0006,
+ "loss": 3.792414665222168,
+ "step": 1821
+ },
+ {
+ "epoch": 25.307557885539538,
+ "grad_norm": 0.20887352526187897,
+ "learning_rate": 0.0006,
+ "loss": 3.7634057998657227,
+ "step": 1822
+ },
+ {
+ "epoch": 25.321537789427698,
+ "grad_norm": 0.24560041725635529,
+ "learning_rate": 0.0006,
+ "loss": 3.79359769821167,
+ "step": 1823
+ },
+ {
+ "epoch": 25.335517693315857,
+ "grad_norm": 0.22767415642738342,
+ "learning_rate": 0.0006,
+ "loss": 3.8313469886779785,
+ "step": 1824
+ },
+ {
+ "epoch": 25.34949759720402,
+ "grad_norm": 0.21617893874645233,
+ "learning_rate": 0.0006,
+ "loss": 3.77200984954834,
+ "step": 1825
+ },
+ {
+ "epoch": 25.36347750109218,
+ "grad_norm": 0.21010833978652954,
+ "learning_rate": 0.0006,
+ "loss": 3.8042140007019043,
+ "step": 1826
+ },
+ {
+ "epoch": 25.37745740498034,
+ "grad_norm": 0.24087965488433838,
+ "learning_rate": 0.0006,
+ "loss": 3.8260979652404785,
+ "step": 1827
+ },
+ {
+ "epoch": 25.3914373088685,
+ "grad_norm": 0.2735275626182556,
+ "learning_rate": 0.0006,
+ "loss": 3.8499274253845215,
+ "step": 1828
+ },
+ {
+ "epoch": 25.405417212756664,
+ "grad_norm": 0.24831001460552216,
+ "learning_rate": 0.0006,
+ "loss": 3.8146448135375977,
+ "step": 1829
+ },
+ {
+ "epoch": 25.419397116644824,
+ "grad_norm": 0.21822866797447205,
+ "learning_rate": 0.0006,
+ "loss": 3.7845146656036377,
+ "step": 1830
+ },
+ {
+ "epoch": 25.433377020532983,
+ "grad_norm": 0.19948813319206238,
+ "learning_rate": 0.0006,
+ "loss": 3.823997974395752,
+ "step": 1831
+ },
+ {
+ "epoch": 25.447356924421143,
+ "grad_norm": 0.18342702090740204,
+ "learning_rate": 0.0006,
+ "loss": 3.8201193809509277,
+ "step": 1832
+ },
+ {
+ "epoch": 25.461336828309307,
+ "grad_norm": 0.19377560913562775,
+ "learning_rate": 0.0006,
+ "loss": 3.8069632053375244,
+ "step": 1833
+ },
+ {
+ "epoch": 25.475316732197467,
+ "grad_norm": 0.22348709404468536,
+ "learning_rate": 0.0006,
+ "loss": 3.7918643951416016,
+ "step": 1834
+ },
+ {
+ "epoch": 25.489296636085626,
+ "grad_norm": 0.24484702944755554,
+ "learning_rate": 0.0006,
+ "loss": 3.85046124458313,
+ "step": 1835
+ },
+ {
+ "epoch": 25.503276539973786,
+ "grad_norm": 0.2493520826101303,
+ "learning_rate": 0.0006,
+ "loss": 3.8043932914733887,
+ "step": 1836
+ },
+ {
+ "epoch": 25.51725644386195,
+ "grad_norm": 0.21509641408920288,
+ "learning_rate": 0.0006,
+ "loss": 3.8064627647399902,
+ "step": 1837
+ },
+ {
+ "epoch": 25.53123634775011,
+ "grad_norm": 0.21912820637226105,
+ "learning_rate": 0.0006,
+ "loss": 3.850588321685791,
+ "step": 1838
+ },
+ {
+ "epoch": 25.54521625163827,
+ "grad_norm": 0.28400927782058716,
+ "learning_rate": 0.0006,
+ "loss": 3.79818058013916,
+ "step": 1839
+ },
+ {
+ "epoch": 25.55919615552643,
+ "grad_norm": 0.32193225622177124,
+ "learning_rate": 0.0006,
+ "loss": 3.836275815963745,
+ "step": 1840
+ },
+ {
+ "epoch": 25.573176059414592,
+ "grad_norm": 0.2902325987815857,
+ "learning_rate": 0.0006,
+ "loss": 3.8080005645751953,
+ "step": 1841
+ },
+ {
+ "epoch": 25.587155963302752,
+ "grad_norm": 0.21759532392024994,
+ "learning_rate": 0.0006,
+ "loss": 3.8233771324157715,
+ "step": 1842
+ },
+ {
+ "epoch": 25.601135867190912,
+ "grad_norm": 0.19645214080810547,
+ "learning_rate": 0.0006,
+ "loss": 3.838881015777588,
+ "step": 1843
+ },
+ {
+ "epoch": 25.615115771079076,
+ "grad_norm": 0.19322903454303741,
+ "learning_rate": 0.0006,
+ "loss": 3.7870054244995117,
+ "step": 1844
+ },
+ {
+ "epoch": 25.629095674967235,
+ "grad_norm": 0.2074001580476761,
+ "learning_rate": 0.0006,
+ "loss": 3.8239974975585938,
+ "step": 1845
+ },
+ {
+ "epoch": 25.643075578855395,
+ "grad_norm": 0.2166101336479187,
+ "learning_rate": 0.0006,
+ "loss": 3.8290855884552,
+ "step": 1846
+ },
+ {
+ "epoch": 25.657055482743555,
+ "grad_norm": 0.23738539218902588,
+ "learning_rate": 0.0006,
+ "loss": 3.7993364334106445,
+ "step": 1847
+ },
+ {
+ "epoch": 25.67103538663172,
+ "grad_norm": 0.23882314562797546,
+ "learning_rate": 0.0006,
+ "loss": 3.802586078643799,
+ "step": 1848
+ },
+ {
+ "epoch": 25.68501529051988,
+ "grad_norm": 0.24168142676353455,
+ "learning_rate": 0.0006,
+ "loss": 3.8303489685058594,
+ "step": 1849
+ },
+ {
+ "epoch": 25.698995194408038,
+ "grad_norm": 0.22423343360424042,
+ "learning_rate": 0.0006,
+ "loss": 3.836228370666504,
+ "step": 1850
+ },
+ {
+ "epoch": 25.712975098296198,
+ "grad_norm": 0.23816974461078644,
+ "learning_rate": 0.0006,
+ "loss": 3.8380274772644043,
+ "step": 1851
+ },
+ {
+ "epoch": 25.72695500218436,
+ "grad_norm": 0.22465108335018158,
+ "learning_rate": 0.0006,
+ "loss": 3.8496339321136475,
+ "step": 1852
+ },
+ {
+ "epoch": 25.74093490607252,
+ "grad_norm": 0.20792442560195923,
+ "learning_rate": 0.0006,
+ "loss": 3.797853946685791,
+ "step": 1853
+ },
+ {
+ "epoch": 25.75491480996068,
+ "grad_norm": 0.20770230889320374,
+ "learning_rate": 0.0006,
+ "loss": 3.842322826385498,
+ "step": 1854
+ },
+ {
+ "epoch": 25.76889471384884,
+ "grad_norm": 0.1928192526102066,
+ "learning_rate": 0.0006,
+ "loss": 3.836540699005127,
+ "step": 1855
+ },
+ {
+ "epoch": 25.782874617737004,
+ "grad_norm": 0.19045178592205048,
+ "learning_rate": 0.0006,
+ "loss": 3.7758889198303223,
+ "step": 1856
+ },
+ {
+ "epoch": 25.796854521625164,
+ "grad_norm": 0.205548495054245,
+ "learning_rate": 0.0006,
+ "loss": 3.8244709968566895,
+ "step": 1857
+ },
+ {
+ "epoch": 25.810834425513324,
+ "grad_norm": 0.20968270301818848,
+ "learning_rate": 0.0006,
+ "loss": 3.8376216888427734,
+ "step": 1858
+ },
+ {
+ "epoch": 25.824814329401484,
+ "grad_norm": 0.18917354941368103,
+ "learning_rate": 0.0006,
+ "loss": 3.8497915267944336,
+ "step": 1859
+ },
+ {
+ "epoch": 25.838794233289647,
+ "grad_norm": 0.2050701528787613,
+ "learning_rate": 0.0006,
+ "loss": 3.819628953933716,
+ "step": 1860
+ },
+ {
+ "epoch": 25.852774137177807,
+ "grad_norm": 0.1981319785118103,
+ "learning_rate": 0.0006,
+ "loss": 3.8007922172546387,
+ "step": 1861
+ },
+ {
+ "epoch": 25.866754041065967,
+ "grad_norm": 0.19055861234664917,
+ "learning_rate": 0.0006,
+ "loss": 3.8304519653320312,
+ "step": 1862
+ },
+ {
+ "epoch": 25.88073394495413,
+ "grad_norm": 0.19255517423152924,
+ "learning_rate": 0.0006,
+ "loss": 3.833280563354492,
+ "step": 1863
+ },
+ {
+ "epoch": 25.89471384884229,
+ "grad_norm": 0.19059430062770844,
+ "learning_rate": 0.0006,
+ "loss": 3.813796281814575,
+ "step": 1864
+ },
+ {
+ "epoch": 25.90869375273045,
+ "grad_norm": 0.18581309914588928,
+ "learning_rate": 0.0006,
+ "loss": 3.8211798667907715,
+ "step": 1865
+ },
+ {
+ "epoch": 25.92267365661861,
+ "grad_norm": 0.20181003212928772,
+ "learning_rate": 0.0006,
+ "loss": 3.8380484580993652,
+ "step": 1866
+ },
+ {
+ "epoch": 25.936653560506773,
+ "grad_norm": 0.22334498167037964,
+ "learning_rate": 0.0006,
+ "loss": 3.8294434547424316,
+ "step": 1867
+ },
+ {
+ "epoch": 25.950633464394933,
+ "grad_norm": 0.20456703007221222,
+ "learning_rate": 0.0006,
+ "loss": 3.819223642349243,
+ "step": 1868
+ },
+ {
+ "epoch": 25.964613368283093,
+ "grad_norm": 0.1885606348514557,
+ "learning_rate": 0.0006,
+ "loss": 3.8110103607177734,
+ "step": 1869
+ },
+ {
+ "epoch": 25.978593272171253,
+ "grad_norm": 0.18862110376358032,
+ "learning_rate": 0.0006,
+ "loss": 3.788691997528076,
+ "step": 1870
+ },
+ {
+ "epoch": 25.992573176059416,
+ "grad_norm": 0.19802744686603546,
+ "learning_rate": 0.0006,
+ "loss": 3.8423619270324707,
+ "step": 1871
+ },
+ {
+ "epoch": 26.0,
+ "grad_norm": 0.23762032389640808,
+ "learning_rate": 0.0006,
+ "loss": 3.7848567962646484,
+ "step": 1872
+ },
+ {
+ "epoch": 26.0,
+ "eval_loss": 4.054965019226074,
+ "eval_runtime": 44.2423,
+ "eval_samples_per_second": 55.196,
+ "eval_steps_per_second": 3.458,
+ "step": 1872
+ },
+ {
+ "epoch": 26.01397990388816,
+ "grad_norm": 0.21533054113388062,
+ "learning_rate": 0.0006,
+ "loss": 3.8123154640197754,
+ "step": 1873
+ },
+ {
+ "epoch": 26.027959807776323,
+ "grad_norm": 0.25094854831695557,
+ "learning_rate": 0.0006,
+ "loss": 3.7847447395324707,
+ "step": 1874
+ },
+ {
+ "epoch": 26.041939711664483,
+ "grad_norm": 0.24042077362537384,
+ "learning_rate": 0.0006,
+ "loss": 3.8033599853515625,
+ "step": 1875
+ },
+ {
+ "epoch": 26.055919615552643,
+ "grad_norm": 0.2425149381160736,
+ "learning_rate": 0.0006,
+ "loss": 3.7828550338745117,
+ "step": 1876
+ },
+ {
+ "epoch": 26.069899519440803,
+ "grad_norm": 0.2300514280796051,
+ "learning_rate": 0.0006,
+ "loss": 3.750882148742676,
+ "step": 1877
+ },
+ {
+ "epoch": 26.083879423328966,
+ "grad_norm": 0.2513943612575531,
+ "learning_rate": 0.0006,
+ "loss": 3.800323963165283,
+ "step": 1878
+ },
+ {
+ "epoch": 26.097859327217126,
+ "grad_norm": 0.2536966800689697,
+ "learning_rate": 0.0006,
+ "loss": 3.8198962211608887,
+ "step": 1879
+ },
+ {
+ "epoch": 26.111839231105286,
+ "grad_norm": 0.24483931064605713,
+ "learning_rate": 0.0006,
+ "loss": 3.825563907623291,
+ "step": 1880
+ },
+ {
+ "epoch": 26.125819134993446,
+ "grad_norm": 0.2502584755420685,
+ "learning_rate": 0.0006,
+ "loss": 3.78756046295166,
+ "step": 1881
+ },
+ {
+ "epoch": 26.13979903888161,
+ "grad_norm": 0.2695745527744293,
+ "learning_rate": 0.0006,
+ "loss": 3.8205409049987793,
+ "step": 1882
+ },
+ {
+ "epoch": 26.15377894276977,
+ "grad_norm": 0.2873472273349762,
+ "learning_rate": 0.0006,
+ "loss": 3.7880778312683105,
+ "step": 1883
+ },
+ {
+ "epoch": 26.16775884665793,
+ "grad_norm": 0.28609949350357056,
+ "learning_rate": 0.0006,
+ "loss": 3.788517951965332,
+ "step": 1884
+ },
+ {
+ "epoch": 26.18173875054609,
+ "grad_norm": 0.28352269530296326,
+ "learning_rate": 0.0006,
+ "loss": 3.778015613555908,
+ "step": 1885
+ },
+ {
+ "epoch": 26.195718654434252,
+ "grad_norm": 0.27055084705352783,
+ "learning_rate": 0.0006,
+ "loss": 3.7857203483581543,
+ "step": 1886
+ },
+ {
+ "epoch": 26.209698558322412,
+ "grad_norm": 0.255647748708725,
+ "learning_rate": 0.0006,
+ "loss": 3.791355609893799,
+ "step": 1887
+ },
+ {
+ "epoch": 26.22367846221057,
+ "grad_norm": 0.22624439001083374,
+ "learning_rate": 0.0006,
+ "loss": 3.7624831199645996,
+ "step": 1888
+ },
+ {
+ "epoch": 26.23765836609873,
+ "grad_norm": 0.2283596396446228,
+ "learning_rate": 0.0006,
+ "loss": 3.8052897453308105,
+ "step": 1889
+ },
+ {
+ "epoch": 26.251638269986895,
+ "grad_norm": 0.2336510866880417,
+ "learning_rate": 0.0006,
+ "loss": 3.789015054702759,
+ "step": 1890
+ },
+ {
+ "epoch": 26.265618173875055,
+ "grad_norm": 0.24107608199119568,
+ "learning_rate": 0.0006,
+ "loss": 3.756551742553711,
+ "step": 1891
+ },
+ {
+ "epoch": 26.279598077763215,
+ "grad_norm": 0.22438564896583557,
+ "learning_rate": 0.0006,
+ "loss": 3.797952651977539,
+ "step": 1892
+ },
+ {
+ "epoch": 26.293577981651374,
+ "grad_norm": 0.24594341218471527,
+ "learning_rate": 0.0006,
+ "loss": 3.7925708293914795,
+ "step": 1893
+ },
+ {
+ "epoch": 26.307557885539538,
+ "grad_norm": 0.23314352333545685,
+ "learning_rate": 0.0006,
+ "loss": 3.792447328567505,
+ "step": 1894
+ },
+ {
+ "epoch": 26.321537789427698,
+ "grad_norm": 0.20870383083820343,
+ "learning_rate": 0.0006,
+ "loss": 3.7888340950012207,
+ "step": 1895
+ },
+ {
+ "epoch": 26.335517693315857,
+ "grad_norm": 0.206504687666893,
+ "learning_rate": 0.0006,
+ "loss": 3.7856602668762207,
+ "step": 1896
+ },
+ {
+ "epoch": 26.34949759720402,
+ "grad_norm": 0.20193266868591309,
+ "learning_rate": 0.0006,
+ "loss": 3.810800552368164,
+ "step": 1897
+ },
+ {
+ "epoch": 26.36347750109218,
+ "grad_norm": 0.2143869698047638,
+ "learning_rate": 0.0006,
+ "loss": 3.818742275238037,
+ "step": 1898
+ },
+ {
+ "epoch": 26.37745740498034,
+ "grad_norm": 0.21388593316078186,
+ "learning_rate": 0.0006,
+ "loss": 3.7576632499694824,
+ "step": 1899
+ },
+ {
+ "epoch": 26.3914373088685,
+ "grad_norm": 0.1933414787054062,
+ "learning_rate": 0.0006,
+ "loss": 3.802579879760742,
+ "step": 1900
+ },
+ {
+ "epoch": 26.405417212756664,
+ "grad_norm": 0.18144549429416656,
+ "learning_rate": 0.0006,
+ "loss": 3.7830452919006348,
+ "step": 1901
+ },
+ {
+ "epoch": 26.419397116644824,
+ "grad_norm": 0.20027601718902588,
+ "learning_rate": 0.0006,
+ "loss": 3.8112521171569824,
+ "step": 1902
+ },
+ {
+ "epoch": 26.433377020532983,
+ "grad_norm": 0.19402910768985748,
+ "learning_rate": 0.0006,
+ "loss": 3.778012990951538,
+ "step": 1903
+ },
+ {
+ "epoch": 26.447356924421143,
+ "grad_norm": 0.19020743668079376,
+ "learning_rate": 0.0006,
+ "loss": 3.823355197906494,
+ "step": 1904
+ },
+ {
+ "epoch": 26.461336828309307,
+ "grad_norm": 0.1885242760181427,
+ "learning_rate": 0.0006,
+ "loss": 3.782108783721924,
+ "step": 1905
+ },
+ {
+ "epoch": 26.475316732197467,
+ "grad_norm": 0.2024235874414444,
+ "learning_rate": 0.0006,
+ "loss": 3.810448408126831,
+ "step": 1906
+ },
+ {
+ "epoch": 26.489296636085626,
+ "grad_norm": 0.21408027410507202,
+ "learning_rate": 0.0006,
+ "loss": 3.8185606002807617,
+ "step": 1907
+ },
+ {
+ "epoch": 26.503276539973786,
+ "grad_norm": 0.22810906171798706,
+ "learning_rate": 0.0006,
+ "loss": 3.8052706718444824,
+ "step": 1908
+ },
+ {
+ "epoch": 26.51725644386195,
+ "grad_norm": 0.21328197419643402,
+ "learning_rate": 0.0006,
+ "loss": 3.7858219146728516,
+ "step": 1909
+ },
+ {
+ "epoch": 26.53123634775011,
+ "grad_norm": 0.20843173563480377,
+ "learning_rate": 0.0006,
+ "loss": 3.8069310188293457,
+ "step": 1910
+ },
+ {
+ "epoch": 26.54521625163827,
+ "grad_norm": 0.2072986662387848,
+ "learning_rate": 0.0006,
+ "loss": 3.794975996017456,
+ "step": 1911
+ },
+ {
+ "epoch": 26.55919615552643,
+ "grad_norm": 0.2203216850757599,
+ "learning_rate": 0.0006,
+ "loss": 3.8070101737976074,
+ "step": 1912
+ },
+ {
+ "epoch": 26.573176059414592,
+ "grad_norm": 0.23449191451072693,
+ "learning_rate": 0.0006,
+ "loss": 3.828695774078369,
+ "step": 1913
+ },
+ {
+ "epoch": 26.587155963302752,
+ "grad_norm": 0.2222008854150772,
+ "learning_rate": 0.0006,
+ "loss": 3.781275749206543,
+ "step": 1914
+ },
+ {
+ "epoch": 26.601135867190912,
+ "grad_norm": 0.22328314185142517,
+ "learning_rate": 0.0006,
+ "loss": 3.7953736782073975,
+ "step": 1915
+ },
+ {
+ "epoch": 26.615115771079076,
+ "grad_norm": 0.2377961128950119,
+ "learning_rate": 0.0006,
+ "loss": 3.8428916931152344,
+ "step": 1916
+ },
+ {
+ "epoch": 26.629095674967235,
+ "grad_norm": 0.2546147108078003,
+ "learning_rate": 0.0006,
+ "loss": 3.7940590381622314,
+ "step": 1917
+ },
+ {
+ "epoch": 26.643075578855395,
+ "grad_norm": 0.24234509468078613,
+ "learning_rate": 0.0006,
+ "loss": 3.802234172821045,
+ "step": 1918
+ },
+ {
+ "epoch": 26.657055482743555,
+ "grad_norm": 0.21294651925563812,
+ "learning_rate": 0.0006,
+ "loss": 3.8159232139587402,
+ "step": 1919
+ },
+ {
+ "epoch": 26.67103538663172,
+ "grad_norm": 0.20008964836597443,
+ "learning_rate": 0.0006,
+ "loss": 3.796949863433838,
+ "step": 1920
+ },
+ {
+ "epoch": 26.68501529051988,
+ "grad_norm": 0.21031023561954498,
+ "learning_rate": 0.0006,
+ "loss": 3.8015570640563965,
+ "step": 1921
+ },
+ {
+ "epoch": 26.698995194408038,
+ "grad_norm": 0.2185603827238083,
+ "learning_rate": 0.0006,
+ "loss": 3.8022537231445312,
+ "step": 1922
+ },
+ {
+ "epoch": 26.712975098296198,
+ "grad_norm": 0.22957198321819305,
+ "learning_rate": 0.0006,
+ "loss": 3.7859907150268555,
+ "step": 1923
+ },
+ {
+ "epoch": 26.72695500218436,
+ "grad_norm": 0.23779156804084778,
+ "learning_rate": 0.0006,
+ "loss": 3.830345630645752,
+ "step": 1924
+ },
+ {
+ "epoch": 26.74093490607252,
+ "grad_norm": 0.23577193915843964,
+ "learning_rate": 0.0006,
+ "loss": 3.777338981628418,
+ "step": 1925
+ },
+ {
+ "epoch": 26.75491480996068,
+ "grad_norm": 0.2521933913230896,
+ "learning_rate": 0.0006,
+ "loss": 3.8215396404266357,
+ "step": 1926
+ },
+ {
+ "epoch": 26.76889471384884,
+ "grad_norm": 0.25050726532936096,
+ "learning_rate": 0.0006,
+ "loss": 3.817509651184082,
+ "step": 1927
+ },
+ {
+ "epoch": 26.782874617737004,
+ "grad_norm": 0.24442453682422638,
+ "learning_rate": 0.0006,
+ "loss": 3.8033013343811035,
+ "step": 1928
+ },
+ {
+ "epoch": 26.796854521625164,
+ "grad_norm": 0.2280828058719635,
+ "learning_rate": 0.0006,
+ "loss": 3.798625946044922,
+ "step": 1929
+ },
+ {
+ "epoch": 26.810834425513324,
+ "grad_norm": 0.23072117567062378,
+ "learning_rate": 0.0006,
+ "loss": 3.8109097480773926,
+ "step": 1930
+ },
+ {
+ "epoch": 26.824814329401484,
+ "grad_norm": 0.2690806984901428,
+ "learning_rate": 0.0006,
+ "loss": 3.7707223892211914,
+ "step": 1931
+ },
+ {
+ "epoch": 26.838794233289647,
+ "grad_norm": 0.24973517656326294,
+ "learning_rate": 0.0006,
+ "loss": 3.7788357734680176,
+ "step": 1932
+ },
+ {
+ "epoch": 26.852774137177807,
+ "grad_norm": 0.24221451580524445,
+ "learning_rate": 0.0006,
+ "loss": 3.8083114624023438,
+ "step": 1933
+ },
+ {
+ "epoch": 26.866754041065967,
+ "grad_norm": 0.23499037325382233,
+ "learning_rate": 0.0006,
+ "loss": 3.845512866973877,
+ "step": 1934
+ },
+ {
+ "epoch": 26.88073394495413,
+ "grad_norm": 0.2172643095254898,
+ "learning_rate": 0.0006,
+ "loss": 3.8171584606170654,
+ "step": 1935
+ },
+ {
+ "epoch": 26.89471384884229,
+ "grad_norm": 0.19935013353824615,
+ "learning_rate": 0.0006,
+ "loss": 3.808596611022949,
+ "step": 1936
+ },
+ {
+ "epoch": 26.90869375273045,
+ "grad_norm": 0.2077745944261551,
+ "learning_rate": 0.0006,
+ "loss": 3.842836856842041,
+ "step": 1937
+ },
+ {
+ "epoch": 26.92267365661861,
+ "grad_norm": 0.20017282664775848,
+ "learning_rate": 0.0006,
+ "loss": 3.791734457015991,
+ "step": 1938
+ },
+ {
+ "epoch": 26.936653560506773,
+ "grad_norm": 0.2082037627696991,
+ "learning_rate": 0.0006,
+ "loss": 3.7987842559814453,
+ "step": 1939
+ },
+ {
+ "epoch": 26.950633464394933,
+ "grad_norm": 0.21100632846355438,
+ "learning_rate": 0.0006,
+ "loss": 3.8033156394958496,
+ "step": 1940
+ },
+ {
+ "epoch": 26.964613368283093,
+ "grad_norm": 0.2091331034898758,
+ "learning_rate": 0.0006,
+ "loss": 3.8250908851623535,
+ "step": 1941
+ },
+ {
+ "epoch": 26.978593272171253,
+ "grad_norm": 0.19728544354438782,
+ "learning_rate": 0.0006,
+ "loss": 3.7934365272521973,
+ "step": 1942
+ },
+ {
+ "epoch": 26.992573176059416,
+ "grad_norm": 0.19266465306282043,
+ "learning_rate": 0.0006,
+ "loss": 3.8095879554748535,
+ "step": 1943
+ },
+ {
+ "epoch": 27.0,
+ "grad_norm": 0.2264554500579834,
+ "learning_rate": 0.0006,
+ "loss": 3.840135335922241,
+ "step": 1944
+ },
+ {
+ "epoch": 27.0,
+ "eval_loss": 4.046233654022217,
+ "eval_runtime": 44.0648,
+ "eval_samples_per_second": 55.418,
+ "eval_steps_per_second": 3.472,
+ "step": 1944
+ },
+ {
+ "epoch": 27.01397990388816,
+ "grad_norm": 0.24101831018924713,
+ "learning_rate": 0.0006,
+ "loss": 3.7463197708129883,
+ "step": 1945
+ },
+ {
+ "epoch": 27.027959807776323,
+ "grad_norm": 0.2917300760746002,
+ "learning_rate": 0.0006,
+ "loss": 3.769083261489868,
+ "step": 1946
+ },
+ {
+ "epoch": 27.041939711664483,
+ "grad_norm": 0.30864080786705017,
+ "learning_rate": 0.0006,
+ "loss": 3.7774248123168945,
+ "step": 1947
+ },
+ {
+ "epoch": 27.055919615552643,
+ "grad_norm": 0.28574317693710327,
+ "learning_rate": 0.0006,
+ "loss": 3.759530544281006,
+ "step": 1948
+ },
+ {
+ "epoch": 27.069899519440803,
+ "grad_norm": 0.23381628096103668,
+ "learning_rate": 0.0006,
+ "loss": 3.764347791671753,
+ "step": 1949
+ },
+ {
+ "epoch": 27.083879423328966,
+ "grad_norm": 0.2717961072921753,
+ "learning_rate": 0.0006,
+ "loss": 3.785306692123413,
+ "step": 1950
+ },
+ {
+ "epoch": 27.097859327217126,
+ "grad_norm": 0.2753375470638275,
+ "learning_rate": 0.0006,
+ "loss": 3.7511696815490723,
+ "step": 1951
+ },
+ {
+ "epoch": 27.111839231105286,
+ "grad_norm": 0.260250061750412,
+ "learning_rate": 0.0006,
+ "loss": 3.7775721549987793,
+ "step": 1952
+ },
+ {
+ "epoch": 27.125819134993446,
+ "grad_norm": 0.2462741732597351,
+ "learning_rate": 0.0006,
+ "loss": 3.775203227996826,
+ "step": 1953
+ },
+ {
+ "epoch": 27.13979903888161,
+ "grad_norm": 0.23599569499492645,
+ "learning_rate": 0.0006,
+ "loss": 3.7580947875976562,
+ "step": 1954
+ },
+ {
+ "epoch": 27.15377894276977,
+ "grad_norm": 0.21749968826770782,
+ "learning_rate": 0.0006,
+ "loss": 3.778254985809326,
+ "step": 1955
+ },
+ {
+ "epoch": 27.16775884665793,
+ "grad_norm": 0.22210343182086945,
+ "learning_rate": 0.0006,
+ "loss": 3.734727144241333,
+ "step": 1956
+ },
+ {
+ "epoch": 27.18173875054609,
+ "grad_norm": 0.23376141488552094,
+ "learning_rate": 0.0006,
+ "loss": 3.7892181873321533,
+ "step": 1957
+ },
+ {
+ "epoch": 27.195718654434252,
+ "grad_norm": 0.21751847863197327,
+ "learning_rate": 0.0006,
+ "loss": 3.801621913909912,
+ "step": 1958
+ },
+ {
+ "epoch": 27.209698558322412,
+ "grad_norm": 0.22995133697986603,
+ "learning_rate": 0.0006,
+ "loss": 3.8031363487243652,
+ "step": 1959
+ },
+ {
+ "epoch": 27.22367846221057,
+ "grad_norm": 0.22716350853443146,
+ "learning_rate": 0.0006,
+ "loss": 3.7591521739959717,
+ "step": 1960
+ },
+ {
+ "epoch": 27.23765836609873,
+ "grad_norm": 0.20819596946239471,
+ "learning_rate": 0.0006,
+ "loss": 3.7988929748535156,
+ "step": 1961
+ },
+ {
+ "epoch": 27.251638269986895,
+ "grad_norm": 0.19861504435539246,
+ "learning_rate": 0.0006,
+ "loss": 3.7752838134765625,
+ "step": 1962
+ },
+ {
+ "epoch": 27.265618173875055,
+ "grad_norm": 0.1959371268749237,
+ "learning_rate": 0.0006,
+ "loss": 3.7707290649414062,
+ "step": 1963
+ },
+ {
+ "epoch": 27.279598077763215,
+ "grad_norm": 0.18772225081920624,
+ "learning_rate": 0.0006,
+ "loss": 3.7714555263519287,
+ "step": 1964
+ },
+ {
+ "epoch": 27.293577981651374,
+ "grad_norm": 0.20839282870292664,
+ "learning_rate": 0.0006,
+ "loss": 3.7857258319854736,
+ "step": 1965
+ },
+ {
+ "epoch": 27.307557885539538,
+ "grad_norm": 0.22521957755088806,
+ "learning_rate": 0.0006,
+ "loss": 3.776909351348877,
+ "step": 1966
+ },
+ {
+ "epoch": 27.321537789427698,
+ "grad_norm": 0.19533076882362366,
+ "learning_rate": 0.0006,
+ "loss": 3.8152523040771484,
+ "step": 1967
+ },
+ {
+ "epoch": 27.335517693315857,
+ "grad_norm": 0.18678881227970123,
+ "learning_rate": 0.0006,
+ "loss": 3.751555919647217,
+ "step": 1968
+ },
+ {
+ "epoch": 27.34949759720402,
+ "grad_norm": 0.18257129192352295,
+ "learning_rate": 0.0006,
+ "loss": 3.7701754570007324,
+ "step": 1969
+ },
+ {
+ "epoch": 27.36347750109218,
+ "grad_norm": 0.18191468715667725,
+ "learning_rate": 0.0006,
+ "loss": 3.817451238632202,
+ "step": 1970
+ },
+ {
+ "epoch": 27.37745740498034,
+ "grad_norm": 0.18665607273578644,
+ "learning_rate": 0.0006,
+ "loss": 3.78645658493042,
+ "step": 1971
+ },
+ {
+ "epoch": 27.3914373088685,
+ "grad_norm": 0.19604510068893433,
+ "learning_rate": 0.0006,
+ "loss": 3.7735626697540283,
+ "step": 1972
+ },
+ {
+ "epoch": 27.405417212756664,
+ "grad_norm": 0.20136640965938568,
+ "learning_rate": 0.0006,
+ "loss": 3.77310848236084,
+ "step": 1973
+ },
+ {
+ "epoch": 27.419397116644824,
+ "grad_norm": 0.19314947724342346,
+ "learning_rate": 0.0006,
+ "loss": 3.8084068298339844,
+ "step": 1974
+ },
+ {
+ "epoch": 27.433377020532983,
+ "grad_norm": 0.20761604607105255,
+ "learning_rate": 0.0006,
+ "loss": 3.80732798576355,
+ "step": 1975
+ },
+ {
+ "epoch": 27.447356924421143,
+ "grad_norm": 0.2239987850189209,
+ "learning_rate": 0.0006,
+ "loss": 3.7950329780578613,
+ "step": 1976
+ },
+ {
+ "epoch": 27.461336828309307,
+ "grad_norm": 0.22146444022655487,
+ "learning_rate": 0.0006,
+ "loss": 3.7957234382629395,
+ "step": 1977
+ },
+ {
+ "epoch": 27.475316732197467,
+ "grad_norm": 0.23218585550785065,
+ "learning_rate": 0.0006,
+ "loss": 3.806377410888672,
+ "step": 1978
+ },
+ {
+ "epoch": 27.489296636085626,
+ "grad_norm": 0.23549026250839233,
+ "learning_rate": 0.0006,
+ "loss": 3.7833383083343506,
+ "step": 1979
+ },
+ {
+ "epoch": 27.503276539973786,
+ "grad_norm": 0.24219457805156708,
+ "learning_rate": 0.0006,
+ "loss": 3.8154187202453613,
+ "step": 1980
+ },
+ {
+ "epoch": 27.51725644386195,
+ "grad_norm": 0.23703953623771667,
+ "learning_rate": 0.0006,
+ "loss": 3.7846405506134033,
+ "step": 1981
+ },
+ {
+ "epoch": 27.53123634775011,
+ "grad_norm": 0.23596109449863434,
+ "learning_rate": 0.0006,
+ "loss": 3.7698163986206055,
+ "step": 1982
+ },
+ {
+ "epoch": 27.54521625163827,
+ "grad_norm": 0.23073506355285645,
+ "learning_rate": 0.0006,
+ "loss": 3.8114185333251953,
+ "step": 1983
+ },
+ {
+ "epoch": 27.55919615552643,
+ "grad_norm": 0.24761143326759338,
+ "learning_rate": 0.0006,
+ "loss": 3.7548117637634277,
+ "step": 1984
+ },
+ {
+ "epoch": 27.573176059414592,
+ "grad_norm": 0.2834068238735199,
+ "learning_rate": 0.0006,
+ "loss": 3.7990212440490723,
+ "step": 1985
+ },
+ {
+ "epoch": 27.587155963302752,
+ "grad_norm": 0.29774922132492065,
+ "learning_rate": 0.0006,
+ "loss": 3.7845072746276855,
+ "step": 1986
+ },
+ {
+ "epoch": 27.601135867190912,
+ "grad_norm": 0.2732089161872864,
+ "learning_rate": 0.0006,
+ "loss": 3.8050694465637207,
+ "step": 1987
+ },
+ {
+ "epoch": 27.615115771079076,
+ "grad_norm": 0.24433180689811707,
+ "learning_rate": 0.0006,
+ "loss": 3.762704372406006,
+ "step": 1988
+ },
+ {
+ "epoch": 27.629095674967235,
+ "grad_norm": 0.21340419352054596,
+ "learning_rate": 0.0006,
+ "loss": 3.826023817062378,
+ "step": 1989
+ },
+ {
+ "epoch": 27.643075578855395,
+ "grad_norm": 0.22518761456012726,
+ "learning_rate": 0.0006,
+ "loss": 3.7823970317840576,
+ "step": 1990
+ },
+ {
+ "epoch": 27.657055482743555,
+ "grad_norm": 0.2196940928697586,
+ "learning_rate": 0.0006,
+ "loss": 3.787463426589966,
+ "step": 1991
+ },
+ {
+ "epoch": 27.67103538663172,
+ "grad_norm": 0.21906471252441406,
+ "learning_rate": 0.0006,
+ "loss": 3.7856104373931885,
+ "step": 1992
+ },
+ {
+ "epoch": 27.68501529051988,
+ "grad_norm": 0.2280956357717514,
+ "learning_rate": 0.0006,
+ "loss": 3.7829794883728027,
+ "step": 1993
+ },
+ {
+ "epoch": 27.698995194408038,
+ "grad_norm": 0.22567005455493927,
+ "learning_rate": 0.0006,
+ "loss": 3.762316942214966,
+ "step": 1994
+ },
+ {
+ "epoch": 27.712975098296198,
+ "grad_norm": 0.21703341603279114,
+ "learning_rate": 0.0006,
+ "loss": 3.772535800933838,
+ "step": 1995
+ },
+ {
+ "epoch": 27.72695500218436,
+ "grad_norm": 0.20586732029914856,
+ "learning_rate": 0.0006,
+ "loss": 3.775930881500244,
+ "step": 1996
+ },
+ {
+ "epoch": 27.74093490607252,
+ "grad_norm": 0.2126319408416748,
+ "learning_rate": 0.0006,
+ "loss": 3.793353796005249,
+ "step": 1997
+ },
+ {
+ "epoch": 27.75491480996068,
+ "grad_norm": 0.19664280116558075,
+ "learning_rate": 0.0006,
+ "loss": 3.7721195220947266,
+ "step": 1998
+ },
+ {
+ "epoch": 27.76889471384884,
+ "grad_norm": 0.17695854604244232,
+ "learning_rate": 0.0006,
+ "loss": 3.7931227684020996,
+ "step": 1999
+ },
+ {
+ "epoch": 27.782874617737004,
+ "grad_norm": 0.1899620145559311,
+ "learning_rate": 0.0006,
+ "loss": 3.798692226409912,
+ "step": 2000
+ },
+ {
+ "epoch": 27.796854521625164,
+ "grad_norm": 0.20334762334823608,
+ "learning_rate": 0.0006,
+ "loss": 3.774670124053955,
+ "step": 2001
+ },
+ {
+ "epoch": 27.810834425513324,
+ "grad_norm": 0.21150588989257812,
+ "learning_rate": 0.0006,
+ "loss": 3.803859233856201,
+ "step": 2002
+ },
+ {
+ "epoch": 27.824814329401484,
+ "grad_norm": 0.20425523817539215,
+ "learning_rate": 0.0006,
+ "loss": 3.810410976409912,
+ "step": 2003
+ },
+ {
+ "epoch": 27.838794233289647,
+ "grad_norm": 0.20468413829803467,
+ "learning_rate": 0.0006,
+ "loss": 3.800917625427246,
+ "step": 2004
+ },
+ {
+ "epoch": 27.852774137177807,
+ "grad_norm": 0.2113286256790161,
+ "learning_rate": 0.0006,
+ "loss": 3.7581989765167236,
+ "step": 2005
+ },
+ {
+ "epoch": 27.866754041065967,
+ "grad_norm": 0.2098054736852646,
+ "learning_rate": 0.0006,
+ "loss": 3.7921502590179443,
+ "step": 2006
+ },
+ {
+ "epoch": 27.88073394495413,
+ "grad_norm": 0.21701586246490479,
+ "learning_rate": 0.0006,
+ "loss": 3.8166770935058594,
+ "step": 2007
+ },
+ {
+ "epoch": 27.89471384884229,
+ "grad_norm": 0.2086625099182129,
+ "learning_rate": 0.0006,
+ "loss": 3.7732229232788086,
+ "step": 2008
+ },
+ {
+ "epoch": 27.90869375273045,
+ "grad_norm": 0.2186812162399292,
+ "learning_rate": 0.0006,
+ "loss": 3.8067402839660645,
+ "step": 2009
+ },
+ {
+ "epoch": 27.92267365661861,
+ "grad_norm": 0.2168985903263092,
+ "learning_rate": 0.0006,
+ "loss": 3.798159122467041,
+ "step": 2010
+ },
+ {
+ "epoch": 27.936653560506773,
+ "grad_norm": 0.23713620007038116,
+ "learning_rate": 0.0006,
+ "loss": 3.7958693504333496,
+ "step": 2011
+ },
+ {
+ "epoch": 27.950633464394933,
+ "grad_norm": 0.23592841625213623,
+ "learning_rate": 0.0006,
+ "loss": 3.795126438140869,
+ "step": 2012
+ },
+ {
+ "epoch": 27.964613368283093,
+ "grad_norm": 0.22210197150707245,
+ "learning_rate": 0.0006,
+ "loss": 3.791013240814209,
+ "step": 2013
+ },
+ {
+ "epoch": 27.978593272171253,
+ "grad_norm": 0.23190008103847504,
+ "learning_rate": 0.0006,
+ "loss": 3.813408374786377,
+ "step": 2014
+ },
+ {
+ "epoch": 27.992573176059416,
+ "grad_norm": 0.22158131003379822,
+ "learning_rate": 0.0006,
+ "loss": 3.7975716590881348,
+ "step": 2015
+ },
+ {
+ "epoch": 28.0,
+ "grad_norm": 0.2300519198179245,
+ "learning_rate": 0.0006,
+ "loss": 3.776214838027954,
+ "step": 2016
+ },
+ {
+ "epoch": 28.0,
+ "eval_loss": 4.04406213760376,
+ "eval_runtime": 44.0285,
+ "eval_samples_per_second": 55.464,
+ "eval_steps_per_second": 3.475,
+ "step": 2016
+ },
+ {
+ "epoch": 28.01397990388816,
+ "grad_norm": 0.21007688343524933,
+ "learning_rate": 0.0006,
+ "loss": 3.7366907596588135,
+ "step": 2017
+ },
+ {
+ "epoch": 28.027959807776323,
+ "grad_norm": 0.1941644549369812,
+ "learning_rate": 0.0006,
+ "loss": 3.744373321533203,
+ "step": 2018
+ },
+ {
+ "epoch": 28.041939711664483,
+ "grad_norm": 0.21308493614196777,
+ "learning_rate": 0.0006,
+ "loss": 3.7650012969970703,
+ "step": 2019
+ },
+ {
+ "epoch": 28.055919615552643,
+ "grad_norm": 0.20114868879318237,
+ "learning_rate": 0.0006,
+ "loss": 3.7652382850646973,
+ "step": 2020
+ },
+ {
+ "epoch": 28.069899519440803,
+ "grad_norm": 0.20266319811344147,
+ "learning_rate": 0.0006,
+ "loss": 3.7710442543029785,
+ "step": 2021
+ },
+ {
+ "epoch": 28.083879423328966,
+ "grad_norm": 0.205102801322937,
+ "learning_rate": 0.0006,
+ "loss": 3.7515463829040527,
+ "step": 2022
+ },
+ {
+ "epoch": 28.097859327217126,
+ "grad_norm": 0.22002041339874268,
+ "learning_rate": 0.0006,
+ "loss": 3.762019157409668,
+ "step": 2023
+ },
+ {
+ "epoch": 28.111839231105286,
+ "grad_norm": 0.2063235342502594,
+ "learning_rate": 0.0006,
+ "loss": 3.765453338623047,
+ "step": 2024
+ },
+ {
+ "epoch": 28.125819134993446,
+ "grad_norm": 0.19145619869232178,
+ "learning_rate": 0.0006,
+ "loss": 3.769411325454712,
+ "step": 2025
+ },
+ {
+ "epoch": 28.13979903888161,
+ "grad_norm": 0.19308455288410187,
+ "learning_rate": 0.0006,
+ "loss": 3.8009989261627197,
+ "step": 2026
+ },
+ {
+ "epoch": 28.15377894276977,
+ "grad_norm": 0.220510333776474,
+ "learning_rate": 0.0006,
+ "loss": 3.7582602500915527,
+ "step": 2027
+ },
+ {
+ "epoch": 28.16775884665793,
+ "grad_norm": 0.22855883836746216,
+ "learning_rate": 0.0006,
+ "loss": 3.803917407989502,
+ "step": 2028
+ },
+ {
+ "epoch": 28.18173875054609,
+ "grad_norm": 0.24206340312957764,
+ "learning_rate": 0.0006,
+ "loss": 3.764101028442383,
+ "step": 2029
+ },
+ {
+ "epoch": 28.195718654434252,
+ "grad_norm": 0.23973612487316132,
+ "learning_rate": 0.0006,
+ "loss": 3.787308931350708,
+ "step": 2030
+ },
+ {
+ "epoch": 28.209698558322412,
+ "grad_norm": 0.21400697529315948,
+ "learning_rate": 0.0006,
+ "loss": 3.7706117630004883,
+ "step": 2031
+ },
+ {
+ "epoch": 28.22367846221057,
+ "grad_norm": 0.21983976662158966,
+ "learning_rate": 0.0006,
+ "loss": 3.772731304168701,
+ "step": 2032
+ },
+ {
+ "epoch": 28.23765836609873,
+ "grad_norm": 0.22427113354206085,
+ "learning_rate": 0.0006,
+ "loss": 3.7724413871765137,
+ "step": 2033
+ },
+ {
+ "epoch": 28.251638269986895,
+ "grad_norm": 0.23665079474449158,
+ "learning_rate": 0.0006,
+ "loss": 3.769845962524414,
+ "step": 2034
+ },
+ {
+ "epoch": 28.265618173875055,
+ "grad_norm": 0.22663180530071259,
+ "learning_rate": 0.0006,
+ "loss": 3.764380931854248,
+ "step": 2035
+ },
+ {
+ "epoch": 28.279598077763215,
+ "grad_norm": 0.21094927191734314,
+ "learning_rate": 0.0006,
+ "loss": 3.7598326206207275,
+ "step": 2036
+ },
+ {
+ "epoch": 28.293577981651374,
+ "grad_norm": 0.20419518649578094,
+ "learning_rate": 0.0006,
+ "loss": 3.7737207412719727,
+ "step": 2037
+ },
+ {
+ "epoch": 28.307557885539538,
+ "grad_norm": 0.2171909660100937,
+ "learning_rate": 0.0006,
+ "loss": 3.7499468326568604,
+ "step": 2038
+ },
+ {
+ "epoch": 28.321537789427698,
+ "grad_norm": 0.22749298810958862,
+ "learning_rate": 0.0006,
+ "loss": 3.767536163330078,
+ "step": 2039
+ },
+ {
+ "epoch": 28.335517693315857,
+ "grad_norm": 0.22821909189224243,
+ "learning_rate": 0.0006,
+ "loss": 3.744386672973633,
+ "step": 2040
+ },
+ {
+ "epoch": 28.34949759720402,
+ "grad_norm": 0.2227880209684372,
+ "learning_rate": 0.0006,
+ "loss": 3.72955322265625,
+ "step": 2041
+ },
+ {
+ "epoch": 28.36347750109218,
+ "grad_norm": 0.22204327583312988,
+ "learning_rate": 0.0006,
+ "loss": 3.793854236602783,
+ "step": 2042
+ },
+ {
+ "epoch": 28.37745740498034,
+ "grad_norm": 0.21621409058570862,
+ "learning_rate": 0.0006,
+ "loss": 3.775379180908203,
+ "step": 2043
+ },
+ {
+ "epoch": 28.3914373088685,
+ "grad_norm": 0.2439221441745758,
+ "learning_rate": 0.0006,
+ "loss": 3.727464199066162,
+ "step": 2044
+ },
+ {
+ "epoch": 28.405417212756664,
+ "grad_norm": 0.24408605694770813,
+ "learning_rate": 0.0006,
+ "loss": 3.761747360229492,
+ "step": 2045
+ },
+ {
+ "epoch": 28.419397116644824,
+ "grad_norm": 0.26118648052215576,
+ "learning_rate": 0.0006,
+ "loss": 3.7587313652038574,
+ "step": 2046
+ },
+ {
+ "epoch": 28.433377020532983,
+ "grad_norm": 0.25948166847229004,
+ "learning_rate": 0.0006,
+ "loss": 3.7698440551757812,
+ "step": 2047
+ },
+ {
+ "epoch": 28.447356924421143,
+ "grad_norm": 0.26413780450820923,
+ "learning_rate": 0.0006,
+ "loss": 3.799107551574707,
+ "step": 2048
+ },
+ {
+ "epoch": 28.461336828309307,
+ "grad_norm": 0.2687148153781891,
+ "learning_rate": 0.0006,
+ "loss": 3.7564382553100586,
+ "step": 2049
+ },
+ {
+ "epoch": 28.475316732197467,
+ "grad_norm": 0.2676694691181183,
+ "learning_rate": 0.0006,
+ "loss": 3.754267692565918,
+ "step": 2050
+ },
+ {
+ "epoch": 28.489296636085626,
+ "grad_norm": 0.27275168895721436,
+ "learning_rate": 0.0006,
+ "loss": 3.802988052368164,
+ "step": 2051
+ },
+ {
+ "epoch": 28.503276539973786,
+ "grad_norm": 0.28783538937568665,
+ "learning_rate": 0.0006,
+ "loss": 3.762540817260742,
+ "step": 2052
+ },
+ {
+ "epoch": 28.51725644386195,
+ "grad_norm": 0.2628997266292572,
+ "learning_rate": 0.0006,
+ "loss": 3.7933349609375,
+ "step": 2053
+ },
+ {
+ "epoch": 28.53123634775011,
+ "grad_norm": 0.2498515099287033,
+ "learning_rate": 0.0006,
+ "loss": 3.7773094177246094,
+ "step": 2054
+ },
+ {
+ "epoch": 28.54521625163827,
+ "grad_norm": 0.22625942528247833,
+ "learning_rate": 0.0006,
+ "loss": 3.803457021713257,
+ "step": 2055
+ },
+ {
+ "epoch": 28.55919615552643,
+ "grad_norm": 0.21488751471042633,
+ "learning_rate": 0.0006,
+ "loss": 3.78924560546875,
+ "step": 2056
+ },
+ {
+ "epoch": 28.573176059414592,
+ "grad_norm": 0.22041267156600952,
+ "learning_rate": 0.0006,
+ "loss": 3.79361629486084,
+ "step": 2057
+ },
+ {
+ "epoch": 28.587155963302752,
+ "grad_norm": 0.23164816200733185,
+ "learning_rate": 0.0006,
+ "loss": 3.735037326812744,
+ "step": 2058
+ },
+ {
+ "epoch": 28.601135867190912,
+ "grad_norm": 0.22371916472911835,
+ "learning_rate": 0.0006,
+ "loss": 3.731417179107666,
+ "step": 2059
+ },
+ {
+ "epoch": 28.615115771079076,
+ "grad_norm": 0.2280314862728119,
+ "learning_rate": 0.0006,
+ "loss": 3.796154499053955,
+ "step": 2060
+ },
+ {
+ "epoch": 28.629095674967235,
+ "grad_norm": 0.21386604011058807,
+ "learning_rate": 0.0006,
+ "loss": 3.778648614883423,
+ "step": 2061
+ },
+ {
+ "epoch": 28.643075578855395,
+ "grad_norm": 0.20433050394058228,
+ "learning_rate": 0.0006,
+ "loss": 3.772826910018921,
+ "step": 2062
+ },
+ {
+ "epoch": 28.657055482743555,
+ "grad_norm": 0.2049262523651123,
+ "learning_rate": 0.0006,
+ "loss": 3.7410364151000977,
+ "step": 2063
+ },
+ {
+ "epoch": 28.67103538663172,
+ "grad_norm": 0.22041259706020355,
+ "learning_rate": 0.0006,
+ "loss": 3.796724319458008,
+ "step": 2064
+ },
+ {
+ "epoch": 28.68501529051988,
+ "grad_norm": 0.2018800675868988,
+ "learning_rate": 0.0006,
+ "loss": 3.775252342224121,
+ "step": 2065
+ },
+ {
+ "epoch": 28.698995194408038,
+ "grad_norm": 0.2159280925989151,
+ "learning_rate": 0.0006,
+ "loss": 3.766021251678467,
+ "step": 2066
+ },
+ {
+ "epoch": 28.712975098296198,
+ "grad_norm": 0.2072775512933731,
+ "learning_rate": 0.0006,
+ "loss": 3.765397548675537,
+ "step": 2067
+ },
+ {
+ "epoch": 28.72695500218436,
+ "grad_norm": 0.19592848420143127,
+ "learning_rate": 0.0006,
+ "loss": 3.8151614665985107,
+ "step": 2068
+ },
+ {
+ "epoch": 28.74093490607252,
+ "grad_norm": 0.19266322255134583,
+ "learning_rate": 0.0006,
+ "loss": 3.774945020675659,
+ "step": 2069
+ },
+ {
+ "epoch": 28.75491480996068,
+ "grad_norm": 0.19442392885684967,
+ "learning_rate": 0.0006,
+ "loss": 3.816283702850342,
+ "step": 2070
+ },
+ {
+ "epoch": 28.76889471384884,
+ "grad_norm": 0.19080746173858643,
+ "learning_rate": 0.0006,
+ "loss": 3.7784247398376465,
+ "step": 2071
+ },
+ {
+ "epoch": 28.782874617737004,
+ "grad_norm": 0.20150451362133026,
+ "learning_rate": 0.0006,
+ "loss": 3.7710249423980713,
+ "step": 2072
+ },
+ {
+ "epoch": 28.796854521625164,
+ "grad_norm": 0.1835816204547882,
+ "learning_rate": 0.0006,
+ "loss": 3.750032901763916,
+ "step": 2073
+ },
+ {
+ "epoch": 28.810834425513324,
+ "grad_norm": 0.1855502873659134,
+ "learning_rate": 0.0006,
+ "loss": 3.7276318073272705,
+ "step": 2074
+ },
+ {
+ "epoch": 28.824814329401484,
+ "grad_norm": 0.18683169782161713,
+ "learning_rate": 0.0006,
+ "loss": 3.7516555786132812,
+ "step": 2075
+ },
+ {
+ "epoch": 28.838794233289647,
+ "grad_norm": 0.2034577578306198,
+ "learning_rate": 0.0006,
+ "loss": 3.749875068664551,
+ "step": 2076
+ },
+ {
+ "epoch": 28.852774137177807,
+ "grad_norm": 0.2234230488538742,
+ "learning_rate": 0.0006,
+ "loss": 3.791429042816162,
+ "step": 2077
+ },
+ {
+ "epoch": 28.866754041065967,
+ "grad_norm": 0.25600525736808777,
+ "learning_rate": 0.0006,
+ "loss": 3.7769298553466797,
+ "step": 2078
+ },
+ {
+ "epoch": 28.88073394495413,
+ "grad_norm": 0.2741529643535614,
+ "learning_rate": 0.0006,
+ "loss": 3.771848201751709,
+ "step": 2079
+ },
+ {
+ "epoch": 28.89471384884229,
+ "grad_norm": 0.2710304260253906,
+ "learning_rate": 0.0006,
+ "loss": 3.8235626220703125,
+ "step": 2080
+ },
+ {
+ "epoch": 28.90869375273045,
+ "grad_norm": 0.25497519969940186,
+ "learning_rate": 0.0006,
+ "loss": 3.811288595199585,
+ "step": 2081
+ },
+ {
+ "epoch": 28.92267365661861,
+ "grad_norm": 0.25689464807510376,
+ "learning_rate": 0.0006,
+ "loss": 3.7848939895629883,
+ "step": 2082
+ },
+ {
+ "epoch": 28.936653560506773,
+ "grad_norm": 0.2794921398162842,
+ "learning_rate": 0.0006,
+ "loss": 3.7836732864379883,
+ "step": 2083
+ },
+ {
+ "epoch": 28.950633464394933,
+ "grad_norm": 0.24730202555656433,
+ "learning_rate": 0.0006,
+ "loss": 3.7703347206115723,
+ "step": 2084
+ },
+ {
+ "epoch": 28.964613368283093,
+ "grad_norm": 0.21078833937644958,
+ "learning_rate": 0.0006,
+ "loss": 3.7521653175354004,
+ "step": 2085
+ },
+ {
+ "epoch": 28.978593272171253,
+ "grad_norm": 0.2188870757818222,
+ "learning_rate": 0.0006,
+ "loss": 3.769604206085205,
+ "step": 2086
+ },
+ {
+ "epoch": 28.992573176059416,
+ "grad_norm": 0.20447929203510284,
+ "learning_rate": 0.0006,
+ "loss": 3.7842764854431152,
+ "step": 2087
+ },
+ {
+ "epoch": 29.0,
+ "grad_norm": 0.21607689559459686,
+ "learning_rate": 0.0006,
+ "loss": 3.7428855895996094,
+ "step": 2088
+ },
+ {
+ "epoch": 29.0,
+ "eval_loss": 4.0355753898620605,
+ "eval_runtime": 44.1435,
+ "eval_samples_per_second": 55.32,
+ "eval_steps_per_second": 3.466,
+ "step": 2088
+ },
+ {
+ "epoch": 29.01397990388816,
+ "grad_norm": 0.21270133554935455,
+ "learning_rate": 0.0006,
+ "loss": 3.7548413276672363,
+ "step": 2089
+ },
+ {
+ "epoch": 29.027959807776323,
+ "grad_norm": 0.21576301753520966,
+ "learning_rate": 0.0006,
+ "loss": 3.754613161087036,
+ "step": 2090
+ },
+ {
+ "epoch": 29.041939711664483,
+ "grad_norm": 0.2162923663854599,
+ "learning_rate": 0.0006,
+ "loss": 3.755772590637207,
+ "step": 2091
+ },
+ {
+ "epoch": 29.055919615552643,
+ "grad_norm": 0.22236663103103638,
+ "learning_rate": 0.0006,
+ "loss": 3.743497848510742,
+ "step": 2092
+ },
+ {
+ "epoch": 29.069899519440803,
+ "grad_norm": 0.2391042858362198,
+ "learning_rate": 0.0006,
+ "loss": 3.749204158782959,
+ "step": 2093
+ },
+ {
+ "epoch": 29.083879423328966,
+ "grad_norm": 0.23387965559959412,
+ "learning_rate": 0.0006,
+ "loss": 3.7286791801452637,
+ "step": 2094
+ },
+ {
+ "epoch": 29.097859327217126,
+ "grad_norm": 0.23677746951580048,
+ "learning_rate": 0.0006,
+ "loss": 3.755279541015625,
+ "step": 2095
+ },
+ {
+ "epoch": 29.111839231105286,
+ "grad_norm": 0.22771087288856506,
+ "learning_rate": 0.0006,
+ "loss": 3.722566604614258,
+ "step": 2096
+ },
+ {
+ "epoch": 29.125819134993446,
+ "grad_norm": 0.2132875621318817,
+ "learning_rate": 0.0006,
+ "loss": 3.748939037322998,
+ "step": 2097
+ },
+ {
+ "epoch": 29.13979903888161,
+ "grad_norm": 0.2033746838569641,
+ "learning_rate": 0.0006,
+ "loss": 3.7393670082092285,
+ "step": 2098
+ },
+ {
+ "epoch": 29.15377894276977,
+ "grad_norm": 0.1997237652540207,
+ "learning_rate": 0.0006,
+ "loss": 3.718498945236206,
+ "step": 2099
+ },
+ {
+ "epoch": 29.16775884665793,
+ "grad_norm": 0.19102543592453003,
+ "learning_rate": 0.0006,
+ "loss": 3.748950719833374,
+ "step": 2100
+ },
+ {
+ "epoch": 29.18173875054609,
+ "grad_norm": 0.19801580905914307,
+ "learning_rate": 0.0006,
+ "loss": 3.7123501300811768,
+ "step": 2101
+ },
+ {
+ "epoch": 29.195718654434252,
+ "grad_norm": 0.20186249911785126,
+ "learning_rate": 0.0006,
+ "loss": 3.7632713317871094,
+ "step": 2102
+ },
+ {
+ "epoch": 29.209698558322412,
+ "grad_norm": 0.22725415229797363,
+ "learning_rate": 0.0006,
+ "loss": 3.753506660461426,
+ "step": 2103
+ },
+ {
+ "epoch": 29.22367846221057,
+ "grad_norm": 0.23138119280338287,
+ "learning_rate": 0.0006,
+ "loss": 3.753282070159912,
+ "step": 2104
+ },
+ {
+ "epoch": 29.23765836609873,
+ "grad_norm": 0.23171944916248322,
+ "learning_rate": 0.0006,
+ "loss": 3.73783540725708,
+ "step": 2105
+ },
+ {
+ "epoch": 29.251638269986895,
+ "grad_norm": 0.2166522741317749,
+ "learning_rate": 0.0006,
+ "loss": 3.778803825378418,
+ "step": 2106
+ },
+ {
+ "epoch": 29.265618173875055,
+ "grad_norm": 0.2009056806564331,
+ "learning_rate": 0.0006,
+ "loss": 3.738290786743164,
+ "step": 2107
+ },
+ {
+ "epoch": 29.279598077763215,
+ "grad_norm": 0.19451597332954407,
+ "learning_rate": 0.0006,
+ "loss": 3.7553348541259766,
+ "step": 2108
+ },
+ {
+ "epoch": 29.293577981651374,
+ "grad_norm": 0.19246742129325867,
+ "learning_rate": 0.0006,
+ "loss": 3.7321622371673584,
+ "step": 2109
+ },
+ {
+ "epoch": 29.307557885539538,
+ "grad_norm": 0.18917441368103027,
+ "learning_rate": 0.0006,
+ "loss": 3.7408928871154785,
+ "step": 2110
+ },
+ {
+ "epoch": 29.321537789427698,
+ "grad_norm": 0.19067776203155518,
+ "learning_rate": 0.0006,
+ "loss": 3.780052900314331,
+ "step": 2111
+ },
+ {
+ "epoch": 29.335517693315857,
+ "grad_norm": 0.18849676847457886,
+ "learning_rate": 0.0006,
+ "loss": 3.749375820159912,
+ "step": 2112
+ },
+ {
+ "epoch": 29.34949759720402,
+ "grad_norm": 0.19713285565376282,
+ "learning_rate": 0.0006,
+ "loss": 3.7128982543945312,
+ "step": 2113
+ },
+ {
+ "epoch": 29.36347750109218,
+ "grad_norm": 0.196336030960083,
+ "learning_rate": 0.0006,
+ "loss": 3.7528390884399414,
+ "step": 2114
+ },
+ {
+ "epoch": 29.37745740498034,
+ "grad_norm": 0.19574350118637085,
+ "learning_rate": 0.0006,
+ "loss": 3.7105777263641357,
+ "step": 2115
+ },
+ {
+ "epoch": 29.3914373088685,
+ "grad_norm": 0.20396539568901062,
+ "learning_rate": 0.0006,
+ "loss": 3.782249927520752,
+ "step": 2116
+ },
+ {
+ "epoch": 29.405417212756664,
+ "grad_norm": 0.24702422320842743,
+ "learning_rate": 0.0006,
+ "loss": 3.7685647010803223,
+ "step": 2117
+ },
+ {
+ "epoch": 29.419397116644824,
+ "grad_norm": 0.2729755640029907,
+ "learning_rate": 0.0006,
+ "loss": 3.7731213569641113,
+ "step": 2118
+ },
+ {
+ "epoch": 29.433377020532983,
+ "grad_norm": 0.29240545630455017,
+ "learning_rate": 0.0006,
+ "loss": 3.770162343978882,
+ "step": 2119
+ },
+ {
+ "epoch": 29.447356924421143,
+ "grad_norm": 0.2469114065170288,
+ "learning_rate": 0.0006,
+ "loss": 3.764681339263916,
+ "step": 2120
+ },
+ {
+ "epoch": 29.461336828309307,
+ "grad_norm": 0.19837401807308197,
+ "learning_rate": 0.0006,
+ "loss": 3.7600088119506836,
+ "step": 2121
+ },
+ {
+ "epoch": 29.475316732197467,
+ "grad_norm": 0.21266621351242065,
+ "learning_rate": 0.0006,
+ "loss": 3.769454002380371,
+ "step": 2122
+ },
+ {
+ "epoch": 29.489296636085626,
+ "grad_norm": 0.25908344984054565,
+ "learning_rate": 0.0006,
+ "loss": 3.7230491638183594,
+ "step": 2123
+ },
+ {
+ "epoch": 29.503276539973786,
+ "grad_norm": 0.2914169728755951,
+ "learning_rate": 0.0006,
+ "loss": 3.767849922180176,
+ "step": 2124
+ },
+ {
+ "epoch": 29.51725644386195,
+ "grad_norm": 0.2796176075935364,
+ "learning_rate": 0.0006,
+ "loss": 3.741734266281128,
+ "step": 2125
+ },
+ {
+ "epoch": 29.53123634775011,
+ "grad_norm": 0.276309996843338,
+ "learning_rate": 0.0006,
+ "loss": 3.8001914024353027,
+ "step": 2126
+ },
+ {
+ "epoch": 29.54521625163827,
+ "grad_norm": 0.26512834429740906,
+ "learning_rate": 0.0006,
+ "loss": 3.7741384506225586,
+ "step": 2127
+ },
+ {
+ "epoch": 29.55919615552643,
+ "grad_norm": 0.26514101028442383,
+ "learning_rate": 0.0006,
+ "loss": 3.7466959953308105,
+ "step": 2128
+ },
+ {
+ "epoch": 29.573176059414592,
+ "grad_norm": 0.24121330678462982,
+ "learning_rate": 0.0006,
+ "loss": 3.759542465209961,
+ "step": 2129
+ },
+ {
+ "epoch": 29.587155963302752,
+ "grad_norm": 0.2264087200164795,
+ "learning_rate": 0.0006,
+ "loss": 3.791344165802002,
+ "step": 2130
+ },
+ {
+ "epoch": 29.601135867190912,
+ "grad_norm": 0.21915403008460999,
+ "learning_rate": 0.0006,
+ "loss": 3.7540485858917236,
+ "step": 2131
+ },
+ {
+ "epoch": 29.615115771079076,
+ "grad_norm": 0.20453961193561554,
+ "learning_rate": 0.0006,
+ "loss": 3.765617609024048,
+ "step": 2132
+ },
+ {
+ "epoch": 29.629095674967235,
+ "grad_norm": 0.2194051444530487,
+ "learning_rate": 0.0006,
+ "loss": 3.7664294242858887,
+ "step": 2133
+ },
+ {
+ "epoch": 29.643075578855395,
+ "grad_norm": 0.21926000714302063,
+ "learning_rate": 0.0006,
+ "loss": 3.7551684379577637,
+ "step": 2134
+ },
+ {
+ "epoch": 29.657055482743555,
+ "grad_norm": 0.20835602283477783,
+ "learning_rate": 0.0006,
+ "loss": 3.7654306888580322,
+ "step": 2135
+ },
+ {
+ "epoch": 29.67103538663172,
+ "grad_norm": 0.23094356060028076,
+ "learning_rate": 0.0006,
+ "loss": 3.7847180366516113,
+ "step": 2136
+ },
+ {
+ "epoch": 29.68501529051988,
+ "grad_norm": 0.23871271312236786,
+ "learning_rate": 0.0006,
+ "loss": 3.789036273956299,
+ "step": 2137
+ },
+ {
+ "epoch": 29.698995194408038,
+ "grad_norm": 0.22263272106647491,
+ "learning_rate": 0.0006,
+ "loss": 3.7677512168884277,
+ "step": 2138
+ },
+ {
+ "epoch": 29.712975098296198,
+ "grad_norm": 0.2293892651796341,
+ "learning_rate": 0.0006,
+ "loss": 3.777097225189209,
+ "step": 2139
+ },
+ {
+ "epoch": 29.72695500218436,
+ "grad_norm": 0.21068568527698517,
+ "learning_rate": 0.0006,
+ "loss": 3.785336494445801,
+ "step": 2140
+ },
+ {
+ "epoch": 29.74093490607252,
+ "grad_norm": 0.19600282609462738,
+ "learning_rate": 0.0006,
+ "loss": 3.7363505363464355,
+ "step": 2141
+ },
+ {
+ "epoch": 29.75491480996068,
+ "grad_norm": 0.20053936541080475,
+ "learning_rate": 0.0006,
+ "loss": 3.753859043121338,
+ "step": 2142
+ },
+ {
+ "epoch": 29.76889471384884,
+ "grad_norm": 0.22790539264678955,
+ "learning_rate": 0.0006,
+ "loss": 3.749492645263672,
+ "step": 2143
+ },
+ {
+ "epoch": 29.782874617737004,
+ "grad_norm": 0.26042407751083374,
+ "learning_rate": 0.0006,
+ "loss": 3.7905430793762207,
+ "step": 2144
+ },
+ {
+ "epoch": 29.796854521625164,
+ "grad_norm": 0.2753683626651764,
+ "learning_rate": 0.0006,
+ "loss": 3.756442070007324,
+ "step": 2145
+ },
+ {
+ "epoch": 29.810834425513324,
+ "grad_norm": 0.2795007526874542,
+ "learning_rate": 0.0006,
+ "loss": 3.7691903114318848,
+ "step": 2146
+ },
+ {
+ "epoch": 29.824814329401484,
+ "grad_norm": 0.2461438924074173,
+ "learning_rate": 0.0006,
+ "loss": 3.7573065757751465,
+ "step": 2147
+ },
+ {
+ "epoch": 29.838794233289647,
+ "grad_norm": 0.21051941812038422,
+ "learning_rate": 0.0006,
+ "loss": 3.7540078163146973,
+ "step": 2148
+ },
+ {
+ "epoch": 29.852774137177807,
+ "grad_norm": 0.197485089302063,
+ "learning_rate": 0.0006,
+ "loss": 3.734403133392334,
+ "step": 2149
+ },
+ {
+ "epoch": 29.866754041065967,
+ "grad_norm": 0.203064426779747,
+ "learning_rate": 0.0006,
+ "loss": 3.7888364791870117,
+ "step": 2150
+ },
+ {
+ "epoch": 29.88073394495413,
+ "grad_norm": 0.2000301480293274,
+ "learning_rate": 0.0006,
+ "loss": 3.7444958686828613,
+ "step": 2151
+ },
+ {
+ "epoch": 29.89471384884229,
+ "grad_norm": 0.20492053031921387,
+ "learning_rate": 0.0006,
+ "loss": 3.7878224849700928,
+ "step": 2152
+ },
+ {
+ "epoch": 29.90869375273045,
+ "grad_norm": 0.22565388679504395,
+ "learning_rate": 0.0006,
+ "loss": 3.7539188861846924,
+ "step": 2153
+ },
+ {
+ "epoch": 29.92267365661861,
+ "grad_norm": 0.20258226990699768,
+ "learning_rate": 0.0006,
+ "loss": 3.7491893768310547,
+ "step": 2154
+ },
+ {
+ "epoch": 29.936653560506773,
+ "grad_norm": 0.20028717815876007,
+ "learning_rate": 0.0006,
+ "loss": 3.7497997283935547,
+ "step": 2155
+ },
+ {
+ "epoch": 29.950633464394933,
+ "grad_norm": 0.2246360331773758,
+ "learning_rate": 0.0006,
+ "loss": 3.773930788040161,
+ "step": 2156
+ },
+ {
+ "epoch": 29.964613368283093,
+ "grad_norm": 0.22432482242584229,
+ "learning_rate": 0.0006,
+ "loss": 3.7926344871520996,
+ "step": 2157
+ },
+ {
+ "epoch": 29.978593272171253,
+ "grad_norm": 0.2165718674659729,
+ "learning_rate": 0.0006,
+ "loss": 3.7436647415161133,
+ "step": 2158
+ },
+ {
+ "epoch": 29.992573176059416,
+ "grad_norm": 0.20629167556762695,
+ "learning_rate": 0.0006,
+ "loss": 3.7619552612304688,
+ "step": 2159
+ },
+ {
+ "epoch": 30.0,
+ "grad_norm": 0.24264708161354065,
+ "learning_rate": 0.0006,
+ "loss": 3.772679328918457,
+ "step": 2160
+ },
+ {
+ "epoch": 30.0,
+ "eval_loss": 4.024484634399414,
+ "eval_runtime": 44.3611,
+ "eval_samples_per_second": 55.048,
+ "eval_steps_per_second": 3.449,
+ "step": 2160
+ },
+ {
+ "epoch": 30.01397990388816,
+ "grad_norm": 0.2373432070016861,
+ "learning_rate": 0.0006,
+ "loss": 3.7423200607299805,
+ "step": 2161
+ },
+ {
+ "epoch": 30.027959807776323,
+ "grad_norm": 0.26835134625434875,
+ "learning_rate": 0.0006,
+ "loss": 3.7215471267700195,
+ "step": 2162
+ },
+ {
+ "epoch": 30.041939711664483,
+ "grad_norm": 0.2743220329284668,
+ "learning_rate": 0.0006,
+ "loss": 3.7190256118774414,
+ "step": 2163
+ },
+ {
+ "epoch": 30.055919615552643,
+ "grad_norm": 0.2292490005493164,
+ "learning_rate": 0.0006,
+ "loss": 3.731855869293213,
+ "step": 2164
+ },
+ {
+ "epoch": 30.069899519440803,
+ "grad_norm": 0.22704607248306274,
+ "learning_rate": 0.0006,
+ "loss": 3.7649693489074707,
+ "step": 2165
+ },
+ {
+ "epoch": 30.083879423328966,
+ "grad_norm": 0.23255930840969086,
+ "learning_rate": 0.0006,
+ "loss": 3.7547781467437744,
+ "step": 2166
+ },
+ {
+ "epoch": 30.097859327217126,
+ "grad_norm": 0.2068684846162796,
+ "learning_rate": 0.0006,
+ "loss": 3.7343382835388184,
+ "step": 2167
+ },
+ {
+ "epoch": 30.111839231105286,
+ "grad_norm": 0.22523464262485504,
+ "learning_rate": 0.0006,
+ "loss": 3.7304530143737793,
+ "step": 2168
+ },
+ {
+ "epoch": 30.125819134993446,
+ "grad_norm": 0.24650199711322784,
+ "learning_rate": 0.0006,
+ "loss": 3.7414379119873047,
+ "step": 2169
+ },
+ {
+ "epoch": 30.13979903888161,
+ "grad_norm": 0.2392522394657135,
+ "learning_rate": 0.0006,
+ "loss": 3.754481792449951,
+ "step": 2170
+ },
+ {
+ "epoch": 30.15377894276977,
+ "grad_norm": 0.21174749732017517,
+ "learning_rate": 0.0006,
+ "loss": 3.7249929904937744,
+ "step": 2171
+ },
+ {
+ "epoch": 30.16775884665793,
+ "grad_norm": 0.20847836136817932,
+ "learning_rate": 0.0006,
+ "loss": 3.7146458625793457,
+ "step": 2172
+ },
+ {
+ "epoch": 30.18173875054609,
+ "grad_norm": 0.22131472826004028,
+ "learning_rate": 0.0006,
+ "loss": 3.7569539546966553,
+ "step": 2173
+ },
+ {
+ "epoch": 30.195718654434252,
+ "grad_norm": 0.23528096079826355,
+ "learning_rate": 0.0006,
+ "loss": 3.743435859680176,
+ "step": 2174
+ },
+ {
+ "epoch": 30.209698558322412,
+ "grad_norm": 0.2382429540157318,
+ "learning_rate": 0.0006,
+ "loss": 3.745307445526123,
+ "step": 2175
+ },
+ {
+ "epoch": 30.22367846221057,
+ "grad_norm": 0.2477114498615265,
+ "learning_rate": 0.0006,
+ "loss": 3.742305278778076,
+ "step": 2176
+ },
+ {
+ "epoch": 30.23765836609873,
+ "grad_norm": 0.24507801234722137,
+ "learning_rate": 0.0006,
+ "loss": 3.733564853668213,
+ "step": 2177
+ },
+ {
+ "epoch": 30.251638269986895,
+ "grad_norm": 0.2266329675912857,
+ "learning_rate": 0.0006,
+ "loss": 3.747429370880127,
+ "step": 2178
+ },
+ {
+ "epoch": 30.265618173875055,
+ "grad_norm": 0.22146396338939667,
+ "learning_rate": 0.0006,
+ "loss": 3.738630533218384,
+ "step": 2179
+ },
+ {
+ "epoch": 30.279598077763215,
+ "grad_norm": 0.20202279090881348,
+ "learning_rate": 0.0006,
+ "loss": 3.74582839012146,
+ "step": 2180
+ },
+ {
+ "epoch": 30.293577981651374,
+ "grad_norm": 0.20591886341571808,
+ "learning_rate": 0.0006,
+ "loss": 3.792062997817993,
+ "step": 2181
+ },
+ {
+ "epoch": 30.307557885539538,
+ "grad_norm": 0.21744129061698914,
+ "learning_rate": 0.0006,
+ "loss": 3.7389049530029297,
+ "step": 2182
+ },
+ {
+ "epoch": 30.321537789427698,
+ "grad_norm": 0.22641272842884064,
+ "learning_rate": 0.0006,
+ "loss": 3.756775140762329,
+ "step": 2183
+ },
+ {
+ "epoch": 30.335517693315857,
+ "grad_norm": 0.22433501482009888,
+ "learning_rate": 0.0006,
+ "loss": 3.764744758605957,
+ "step": 2184
+ },
+ {
+ "epoch": 30.34949759720402,
+ "grad_norm": 0.20184539258480072,
+ "learning_rate": 0.0006,
+ "loss": 3.747469902038574,
+ "step": 2185
+ },
+ {
+ "epoch": 30.36347750109218,
+ "grad_norm": 0.20864923298358917,
+ "learning_rate": 0.0006,
+ "loss": 3.7472925186157227,
+ "step": 2186
+ },
+ {
+ "epoch": 30.37745740498034,
+ "grad_norm": 0.22537396848201752,
+ "learning_rate": 0.0006,
+ "loss": 3.7194581031799316,
+ "step": 2187
+ },
+ {
+ "epoch": 30.3914373088685,
+ "grad_norm": 0.23159919679164886,
+ "learning_rate": 0.0006,
+ "loss": 3.7124292850494385,
+ "step": 2188
+ },
+ {
+ "epoch": 30.405417212756664,
+ "grad_norm": 0.24334494769573212,
+ "learning_rate": 0.0006,
+ "loss": 3.7769203186035156,
+ "step": 2189
+ },
+ {
+ "epoch": 30.419397116644824,
+ "grad_norm": 0.3031228482723236,
+ "learning_rate": 0.0006,
+ "loss": 3.762169361114502,
+ "step": 2190
+ },
+ {
+ "epoch": 30.433377020532983,
+ "grad_norm": 0.29114583134651184,
+ "learning_rate": 0.0006,
+ "loss": 3.76554799079895,
+ "step": 2191
+ },
+ {
+ "epoch": 30.447356924421143,
+ "grad_norm": 0.26824963092803955,
+ "learning_rate": 0.0006,
+ "loss": 3.732962131500244,
+ "step": 2192
+ },
+ {
+ "epoch": 30.461336828309307,
+ "grad_norm": 0.3026561141014099,
+ "learning_rate": 0.0006,
+ "loss": 3.7567975521087646,
+ "step": 2193
+ },
+ {
+ "epoch": 30.475316732197467,
+ "grad_norm": 0.27224525809288025,
+ "learning_rate": 0.0006,
+ "loss": 3.7856051921844482,
+ "step": 2194
+ },
+ {
+ "epoch": 30.489296636085626,
+ "grad_norm": 0.24295508861541748,
+ "learning_rate": 0.0006,
+ "loss": 3.7514901161193848,
+ "step": 2195
+ },
+ {
+ "epoch": 30.503276539973786,
+ "grad_norm": 0.24435290694236755,
+ "learning_rate": 0.0006,
+ "loss": 3.715973138809204,
+ "step": 2196
+ },
+ {
+ "epoch": 30.51725644386195,
+ "grad_norm": 0.2298959195613861,
+ "learning_rate": 0.0006,
+ "loss": 3.7960405349731445,
+ "step": 2197
+ },
+ {
+ "epoch": 30.53123634775011,
+ "grad_norm": 0.20313066244125366,
+ "learning_rate": 0.0006,
+ "loss": 3.7377915382385254,
+ "step": 2198
+ },
+ {
+ "epoch": 30.54521625163827,
+ "grad_norm": 0.2018895149230957,
+ "learning_rate": 0.0006,
+ "loss": 3.6980559825897217,
+ "step": 2199
+ },
+ {
+ "epoch": 30.55919615552643,
+ "grad_norm": 0.20048382878303528,
+ "learning_rate": 0.0006,
+ "loss": 3.7474141120910645,
+ "step": 2200
+ },
+ {
+ "epoch": 30.573176059414592,
+ "grad_norm": 0.19821316003799438,
+ "learning_rate": 0.0006,
+ "loss": 3.7668564319610596,
+ "step": 2201
+ },
+ {
+ "epoch": 30.587155963302752,
+ "grad_norm": 0.21467992663383484,
+ "learning_rate": 0.0006,
+ "loss": 3.7636144161224365,
+ "step": 2202
+ },
+ {
+ "epoch": 30.601135867190912,
+ "grad_norm": 0.20192000269889832,
+ "learning_rate": 0.0006,
+ "loss": 3.745736837387085,
+ "step": 2203
+ },
+ {
+ "epoch": 30.615115771079076,
+ "grad_norm": 0.2078823447227478,
+ "learning_rate": 0.0006,
+ "loss": 3.726665496826172,
+ "step": 2204
+ },
+ {
+ "epoch": 30.629095674967235,
+ "grad_norm": 0.22535845637321472,
+ "learning_rate": 0.0006,
+ "loss": 3.745058059692383,
+ "step": 2205
+ },
+ {
+ "epoch": 30.643075578855395,
+ "grad_norm": 0.22277814149856567,
+ "learning_rate": 0.0006,
+ "loss": 3.7488319873809814,
+ "step": 2206
+ },
+ {
+ "epoch": 30.657055482743555,
+ "grad_norm": 0.20940838754177094,
+ "learning_rate": 0.0006,
+ "loss": 3.7395732402801514,
+ "step": 2207
+ },
+ {
+ "epoch": 30.67103538663172,
+ "grad_norm": 0.21384629607200623,
+ "learning_rate": 0.0006,
+ "loss": 3.7275657653808594,
+ "step": 2208
+ },
+ {
+ "epoch": 30.68501529051988,
+ "grad_norm": 0.18796643614768982,
+ "learning_rate": 0.0006,
+ "loss": 3.743420124053955,
+ "step": 2209
+ },
+ {
+ "epoch": 30.698995194408038,
+ "grad_norm": 0.213258296251297,
+ "learning_rate": 0.0006,
+ "loss": 3.7227492332458496,
+ "step": 2210
+ },
+ {
+ "epoch": 30.712975098296198,
+ "grad_norm": 0.22714753448963165,
+ "learning_rate": 0.0006,
+ "loss": 3.7301113605499268,
+ "step": 2211
+ },
+ {
+ "epoch": 30.72695500218436,
+ "grad_norm": 0.21657656133174896,
+ "learning_rate": 0.0006,
+ "loss": 3.7336206436157227,
+ "step": 2212
+ },
+ {
+ "epoch": 30.74093490607252,
+ "grad_norm": 0.19550828635692596,
+ "learning_rate": 0.0006,
+ "loss": 3.7367351055145264,
+ "step": 2213
+ },
+ {
+ "epoch": 30.75491480996068,
+ "grad_norm": 0.17011769115924835,
+ "learning_rate": 0.0006,
+ "loss": 3.7401928901672363,
+ "step": 2214
+ },
+ {
+ "epoch": 30.76889471384884,
+ "grad_norm": 0.19110196828842163,
+ "learning_rate": 0.0006,
+ "loss": 3.7496562004089355,
+ "step": 2215
+ },
+ {
+ "epoch": 30.782874617737004,
+ "grad_norm": 0.20054543018341064,
+ "learning_rate": 0.0006,
+ "loss": 3.7532992362976074,
+ "step": 2216
+ },
+ {
+ "epoch": 30.796854521625164,
+ "grad_norm": 0.20667670667171478,
+ "learning_rate": 0.0006,
+ "loss": 3.746974468231201,
+ "step": 2217
+ },
+ {
+ "epoch": 30.810834425513324,
+ "grad_norm": 0.19850662350654602,
+ "learning_rate": 0.0006,
+ "loss": 3.7566256523132324,
+ "step": 2218
+ },
+ {
+ "epoch": 30.824814329401484,
+ "grad_norm": 0.19666457176208496,
+ "learning_rate": 0.0006,
+ "loss": 3.7356925010681152,
+ "step": 2219
+ },
+ {
+ "epoch": 30.838794233289647,
+ "grad_norm": 0.20022115111351013,
+ "learning_rate": 0.0006,
+ "loss": 3.768794536590576,
+ "step": 2220
+ },
+ {
+ "epoch": 30.852774137177807,
+ "grad_norm": 0.225278839468956,
+ "learning_rate": 0.0006,
+ "loss": 3.730262279510498,
+ "step": 2221
+ },
+ {
+ "epoch": 30.866754041065967,
+ "grad_norm": 0.2155608832836151,
+ "learning_rate": 0.0006,
+ "loss": 3.758157968521118,
+ "step": 2222
+ },
+ {
+ "epoch": 30.88073394495413,
+ "grad_norm": 0.20914921164512634,
+ "learning_rate": 0.0006,
+ "loss": 3.7290844917297363,
+ "step": 2223
+ },
+ {
+ "epoch": 30.89471384884229,
+ "grad_norm": 0.21579554677009583,
+ "learning_rate": 0.0006,
+ "loss": 3.7666125297546387,
+ "step": 2224
+ },
+ {
+ "epoch": 30.90869375273045,
+ "grad_norm": 0.22606384754180908,
+ "learning_rate": 0.0006,
+ "loss": 3.7396788597106934,
+ "step": 2225
+ },
+ {
+ "epoch": 30.92267365661861,
+ "grad_norm": 0.22218658030033112,
+ "learning_rate": 0.0006,
+ "loss": 3.7363057136535645,
+ "step": 2226
+ },
+ {
+ "epoch": 30.936653560506773,
+ "grad_norm": 0.2107125222682953,
+ "learning_rate": 0.0006,
+ "loss": 3.7402844429016113,
+ "step": 2227
+ },
+ {
+ "epoch": 30.950633464394933,
+ "grad_norm": 0.2143280804157257,
+ "learning_rate": 0.0006,
+ "loss": 3.7715706825256348,
+ "step": 2228
+ },
+ {
+ "epoch": 30.964613368283093,
+ "grad_norm": 0.20918118953704834,
+ "learning_rate": 0.0006,
+ "loss": 3.783510446548462,
+ "step": 2229
+ },
+ {
+ "epoch": 30.978593272171253,
+ "grad_norm": 0.2184133678674698,
+ "learning_rate": 0.0006,
+ "loss": 3.729846954345703,
+ "step": 2230
+ },
+ {
+ "epoch": 30.992573176059416,
+ "grad_norm": 0.20314796268939972,
+ "learning_rate": 0.0006,
+ "loss": 3.753312110900879,
+ "step": 2231
+ },
+ {
+ "epoch": 31.0,
+ "grad_norm": 0.21582408249378204,
+ "learning_rate": 0.0006,
+ "loss": 3.7653090953826904,
+ "step": 2232
+ },
+ {
+ "epoch": 31.0,
+ "eval_loss": 4.030437469482422,
+ "eval_runtime": 43.8529,
+ "eval_samples_per_second": 55.686,
+ "eval_steps_per_second": 3.489,
+ "step": 2232
+ },
+ {
+ "epoch": 31.01397990388816,
+ "grad_norm": 0.214233860373497,
+ "learning_rate": 0.0006,
+ "loss": 3.7179880142211914,
+ "step": 2233
+ },
+ {
+ "epoch": 31.027959807776323,
+ "grad_norm": 0.24621504545211792,
+ "learning_rate": 0.0006,
+ "loss": 3.712569236755371,
+ "step": 2234
+ },
+ {
+ "epoch": 31.041939711664483,
+ "grad_norm": 0.24189279973506927,
+ "learning_rate": 0.0006,
+ "loss": 3.7503058910369873,
+ "step": 2235
+ },
+ {
+ "epoch": 31.055919615552643,
+ "grad_norm": 0.22872278094291687,
+ "learning_rate": 0.0006,
+ "loss": 3.7386386394500732,
+ "step": 2236
+ },
+ {
+ "epoch": 31.069899519440803,
+ "grad_norm": 0.25036823749542236,
+ "learning_rate": 0.0006,
+ "loss": 3.710566997528076,
+ "step": 2237
+ },
+ {
+ "epoch": 31.083879423328966,
+ "grad_norm": 0.2506193220615387,
+ "learning_rate": 0.0006,
+ "loss": 3.7270963191986084,
+ "step": 2238
+ },
+ {
+ "epoch": 31.097859327217126,
+ "grad_norm": 0.24819663166999817,
+ "learning_rate": 0.0006,
+ "loss": 3.716430425643921,
+ "step": 2239
+ },
+ {
+ "epoch": 31.111839231105286,
+ "grad_norm": 0.27226534485816956,
+ "learning_rate": 0.0006,
+ "loss": 3.704428195953369,
+ "step": 2240
+ },
+ {
+ "epoch": 31.125819134993446,
+ "grad_norm": 0.27718204259872437,
+ "learning_rate": 0.0006,
+ "loss": 3.7309701442718506,
+ "step": 2241
+ },
+ {
+ "epoch": 31.13979903888161,
+ "grad_norm": 0.27272021770477295,
+ "learning_rate": 0.0006,
+ "loss": 3.7325143814086914,
+ "step": 2242
+ },
+ {
+ "epoch": 31.15377894276977,
+ "grad_norm": 0.2666020095348358,
+ "learning_rate": 0.0006,
+ "loss": 3.715268611907959,
+ "step": 2243
+ },
+ {
+ "epoch": 31.16775884665793,
+ "grad_norm": 0.258543461561203,
+ "learning_rate": 0.0006,
+ "loss": 3.7336134910583496,
+ "step": 2244
+ },
+ {
+ "epoch": 31.18173875054609,
+ "grad_norm": 0.2528740167617798,
+ "learning_rate": 0.0006,
+ "loss": 3.724491596221924,
+ "step": 2245
+ },
+ {
+ "epoch": 31.195718654434252,
+ "grad_norm": 0.2659667730331421,
+ "learning_rate": 0.0006,
+ "loss": 3.7144742012023926,
+ "step": 2246
+ },
+ {
+ "epoch": 31.209698558322412,
+ "grad_norm": 0.26563164591789246,
+ "learning_rate": 0.0006,
+ "loss": 3.741182327270508,
+ "step": 2247
+ },
+ {
+ "epoch": 31.22367846221057,
+ "grad_norm": 0.26326918601989746,
+ "learning_rate": 0.0006,
+ "loss": 3.7306275367736816,
+ "step": 2248
+ },
+ {
+ "epoch": 31.23765836609873,
+ "grad_norm": 0.23020948469638824,
+ "learning_rate": 0.0006,
+ "loss": 3.7212486267089844,
+ "step": 2249
+ },
+ {
+ "epoch": 31.251638269986895,
+ "grad_norm": 0.21207433938980103,
+ "learning_rate": 0.0006,
+ "loss": 3.6914258003234863,
+ "step": 2250
+ },
+ {
+ "epoch": 31.265618173875055,
+ "grad_norm": 0.2392292022705078,
+ "learning_rate": 0.0006,
+ "loss": 3.7117457389831543,
+ "step": 2251
+ },
+ {
+ "epoch": 31.279598077763215,
+ "grad_norm": 0.22084997594356537,
+ "learning_rate": 0.0006,
+ "loss": 3.728043794631958,
+ "step": 2252
+ },
+ {
+ "epoch": 31.293577981651374,
+ "grad_norm": 0.20818188786506653,
+ "learning_rate": 0.0006,
+ "loss": 3.751762866973877,
+ "step": 2253
+ },
+ {
+ "epoch": 31.307557885539538,
+ "grad_norm": 0.21866194903850555,
+ "learning_rate": 0.0006,
+ "loss": 3.72676420211792,
+ "step": 2254
+ },
+ {
+ "epoch": 31.321537789427698,
+ "grad_norm": 0.20727522671222687,
+ "learning_rate": 0.0006,
+ "loss": 3.735708236694336,
+ "step": 2255
+ },
+ {
+ "epoch": 31.335517693315857,
+ "grad_norm": 0.20655220746994019,
+ "learning_rate": 0.0006,
+ "loss": 3.714116096496582,
+ "step": 2256
+ },
+ {
+ "epoch": 31.34949759720402,
+ "grad_norm": 0.21738854050636292,
+ "learning_rate": 0.0006,
+ "loss": 3.731657028198242,
+ "step": 2257
+ },
+ {
+ "epoch": 31.36347750109218,
+ "grad_norm": 0.20758475363254547,
+ "learning_rate": 0.0006,
+ "loss": 3.7378528118133545,
+ "step": 2258
+ },
+ {
+ "epoch": 31.37745740498034,
+ "grad_norm": 0.20107139647006989,
+ "learning_rate": 0.0006,
+ "loss": 3.748572826385498,
+ "step": 2259
+ },
+ {
+ "epoch": 31.3914373088685,
+ "grad_norm": 0.18707452714443207,
+ "learning_rate": 0.0006,
+ "loss": 3.7237391471862793,
+ "step": 2260
+ },
+ {
+ "epoch": 31.405417212756664,
+ "grad_norm": 0.20745301246643066,
+ "learning_rate": 0.0006,
+ "loss": 3.734435558319092,
+ "step": 2261
+ },
+ {
+ "epoch": 31.419397116644824,
+ "grad_norm": 0.20793399214744568,
+ "learning_rate": 0.0006,
+ "loss": 3.7639012336730957,
+ "step": 2262
+ },
+ {
+ "epoch": 31.433377020532983,
+ "grad_norm": 0.20193757116794586,
+ "learning_rate": 0.0006,
+ "loss": 3.754117727279663,
+ "step": 2263
+ },
+ {
+ "epoch": 31.447356924421143,
+ "grad_norm": 0.1912323236465454,
+ "learning_rate": 0.0006,
+ "loss": 3.728111982345581,
+ "step": 2264
+ },
+ {
+ "epoch": 31.461336828309307,
+ "grad_norm": 0.19441582262516022,
+ "learning_rate": 0.0006,
+ "loss": 3.7533278465270996,
+ "step": 2265
+ },
+ {
+ "epoch": 31.475316732197467,
+ "grad_norm": 0.19807079434394836,
+ "learning_rate": 0.0006,
+ "loss": 3.7351698875427246,
+ "step": 2266
+ },
+ {
+ "epoch": 31.489296636085626,
+ "grad_norm": 0.20373263955116272,
+ "learning_rate": 0.0006,
+ "loss": 3.714097023010254,
+ "step": 2267
+ },
+ {
+ "epoch": 31.503276539973786,
+ "grad_norm": 0.21868768334388733,
+ "learning_rate": 0.0006,
+ "loss": 3.736743688583374,
+ "step": 2268
+ },
+ {
+ "epoch": 31.51725644386195,
+ "grad_norm": 0.20767922699451447,
+ "learning_rate": 0.0006,
+ "loss": 3.7097702026367188,
+ "step": 2269
+ },
+ {
+ "epoch": 31.53123634775011,
+ "grad_norm": 0.18425600230693817,
+ "learning_rate": 0.0006,
+ "loss": 3.7349140644073486,
+ "step": 2270
+ },
+ {
+ "epoch": 31.54521625163827,
+ "grad_norm": 0.18813826143741608,
+ "learning_rate": 0.0006,
+ "loss": 3.7023448944091797,
+ "step": 2271
+ },
+ {
+ "epoch": 31.55919615552643,
+ "grad_norm": 0.1892116516828537,
+ "learning_rate": 0.0006,
+ "loss": 3.7170143127441406,
+ "step": 2272
+ },
+ {
+ "epoch": 31.573176059414592,
+ "grad_norm": 0.2067834585905075,
+ "learning_rate": 0.0006,
+ "loss": 3.7312588691711426,
+ "step": 2273
+ },
+ {
+ "epoch": 31.587155963302752,
+ "grad_norm": 0.204023078083992,
+ "learning_rate": 0.0006,
+ "loss": 3.7399091720581055,
+ "step": 2274
+ },
+ {
+ "epoch": 31.601135867190912,
+ "grad_norm": 0.20245152711868286,
+ "learning_rate": 0.0006,
+ "loss": 3.7259416580200195,
+ "step": 2275
+ },
+ {
+ "epoch": 31.615115771079076,
+ "grad_norm": 0.21125490963459015,
+ "learning_rate": 0.0006,
+ "loss": 3.7217836380004883,
+ "step": 2276
+ },
+ {
+ "epoch": 31.629095674967235,
+ "grad_norm": 0.2093241959810257,
+ "learning_rate": 0.0006,
+ "loss": 3.707627773284912,
+ "step": 2277
+ },
+ {
+ "epoch": 31.643075578855395,
+ "grad_norm": 0.19290480017662048,
+ "learning_rate": 0.0006,
+ "loss": 3.7467126846313477,
+ "step": 2278
+ },
+ {
+ "epoch": 31.657055482743555,
+ "grad_norm": 0.1853940635919571,
+ "learning_rate": 0.0006,
+ "loss": 3.7565581798553467,
+ "step": 2279
+ },
+ {
+ "epoch": 31.67103538663172,
+ "grad_norm": 0.18917642533779144,
+ "learning_rate": 0.0006,
+ "loss": 3.7286229133605957,
+ "step": 2280
+ },
+ {
+ "epoch": 31.68501529051988,
+ "grad_norm": 0.2094079703092575,
+ "learning_rate": 0.0006,
+ "loss": 3.7297096252441406,
+ "step": 2281
+ },
+ {
+ "epoch": 31.698995194408038,
+ "grad_norm": 0.20020027458667755,
+ "learning_rate": 0.0006,
+ "loss": 3.7565250396728516,
+ "step": 2282
+ },
+ {
+ "epoch": 31.712975098296198,
+ "grad_norm": 0.19156186282634735,
+ "learning_rate": 0.0006,
+ "loss": 3.7401509284973145,
+ "step": 2283
+ },
+ {
+ "epoch": 31.72695500218436,
+ "grad_norm": 0.19176368415355682,
+ "learning_rate": 0.0006,
+ "loss": 3.751206398010254,
+ "step": 2284
+ },
+ {
+ "epoch": 31.74093490607252,
+ "grad_norm": 0.18351277709007263,
+ "learning_rate": 0.0006,
+ "loss": 3.752984046936035,
+ "step": 2285
+ },
+ {
+ "epoch": 31.75491480996068,
+ "grad_norm": 0.1879221349954605,
+ "learning_rate": 0.0006,
+ "loss": 3.7156834602355957,
+ "step": 2286
+ },
+ {
+ "epoch": 31.76889471384884,
+ "grad_norm": 0.19232559204101562,
+ "learning_rate": 0.0006,
+ "loss": 3.732879638671875,
+ "step": 2287
+ },
+ {
+ "epoch": 31.782874617737004,
+ "grad_norm": 0.18484069406986237,
+ "learning_rate": 0.0006,
+ "loss": 3.7489013671875,
+ "step": 2288
+ },
+ {
+ "epoch": 31.796854521625164,
+ "grad_norm": 0.20705144107341766,
+ "learning_rate": 0.0006,
+ "loss": 3.7214112281799316,
+ "step": 2289
+ },
+ {
+ "epoch": 31.810834425513324,
+ "grad_norm": 0.23424774408340454,
+ "learning_rate": 0.0006,
+ "loss": 3.714550256729126,
+ "step": 2290
+ },
+ {
+ "epoch": 31.824814329401484,
+ "grad_norm": 0.24061693251132965,
+ "learning_rate": 0.0006,
+ "loss": 3.717336654663086,
+ "step": 2291
+ },
+ {
+ "epoch": 31.838794233289647,
+ "grad_norm": 0.23156678676605225,
+ "learning_rate": 0.0006,
+ "loss": 3.7345399856567383,
+ "step": 2292
+ },
+ {
+ "epoch": 31.852774137177807,
+ "grad_norm": 0.2256302684545517,
+ "learning_rate": 0.0006,
+ "loss": 3.7596092224121094,
+ "step": 2293
+ },
+ {
+ "epoch": 31.866754041065967,
+ "grad_norm": 0.2118781954050064,
+ "learning_rate": 0.0006,
+ "loss": 3.725433588027954,
+ "step": 2294
+ },
+ {
+ "epoch": 31.88073394495413,
+ "grad_norm": 0.1874573826789856,
+ "learning_rate": 0.0006,
+ "loss": 3.738901138305664,
+ "step": 2295
+ },
+ {
+ "epoch": 31.89471384884229,
+ "grad_norm": 0.2062024176120758,
+ "learning_rate": 0.0006,
+ "loss": 3.7439217567443848,
+ "step": 2296
+ },
+ {
+ "epoch": 31.90869375273045,
+ "grad_norm": 0.19886671006679535,
+ "learning_rate": 0.0006,
+ "loss": 3.7583155632019043,
+ "step": 2297
+ },
+ {
+ "epoch": 31.92267365661861,
+ "grad_norm": 0.2079734355211258,
+ "learning_rate": 0.0006,
+ "loss": 3.7251501083374023,
+ "step": 2298
+ },
+ {
+ "epoch": 31.936653560506773,
+ "grad_norm": 0.19710204005241394,
+ "learning_rate": 0.0006,
+ "loss": 3.765778064727783,
+ "step": 2299
+ },
+ {
+ "epoch": 31.950633464394933,
+ "grad_norm": 0.1949392408132553,
+ "learning_rate": 0.0006,
+ "loss": 3.7634787559509277,
+ "step": 2300
+ },
+ {
+ "epoch": 31.964613368283093,
+ "grad_norm": 0.21466250717639923,
+ "learning_rate": 0.0006,
+ "loss": 3.7673215866088867,
+ "step": 2301
+ },
+ {
+ "epoch": 31.978593272171253,
+ "grad_norm": 0.21624267101287842,
+ "learning_rate": 0.0006,
+ "loss": 3.7617220878601074,
+ "step": 2302
+ },
+ {
+ "epoch": 31.992573176059416,
+ "grad_norm": 0.22880229353904724,
+ "learning_rate": 0.0006,
+ "loss": 3.7190351486206055,
+ "step": 2303
+ },
+ {
+ "epoch": 32.0,
+ "grad_norm": 0.23227518796920776,
+ "learning_rate": 0.0006,
+ "loss": 3.740169048309326,
+ "step": 2304
+ },
+ {
+ "epoch": 32.0,
+ "eval_loss": 4.017981052398682,
+ "eval_runtime": 44.4134,
+ "eval_samples_per_second": 54.983,
+ "eval_steps_per_second": 3.445,
+ "step": 2304
+ },
+ {
+ "epoch": 32.01397990388816,
+ "grad_norm": 0.1893721967935562,
+ "learning_rate": 0.0006,
+ "loss": 3.71738338470459,
+ "step": 2305
+ },
+ {
+ "epoch": 32.02795980777632,
+ "grad_norm": 0.23771171271800995,
+ "learning_rate": 0.0006,
+ "loss": 3.71402645111084,
+ "step": 2306
+ },
+ {
+ "epoch": 32.04193971166448,
+ "grad_norm": 0.26343807578086853,
+ "learning_rate": 0.0006,
+ "loss": 3.6926395893096924,
+ "step": 2307
+ },
+ {
+ "epoch": 32.05591961555265,
+ "grad_norm": 0.25092509388923645,
+ "learning_rate": 0.0006,
+ "loss": 3.715243339538574,
+ "step": 2308
+ },
+ {
+ "epoch": 32.0698995194408,
+ "grad_norm": 0.23148509860038757,
+ "learning_rate": 0.0006,
+ "loss": 3.690734386444092,
+ "step": 2309
+ },
+ {
+ "epoch": 32.083879423328966,
+ "grad_norm": 0.23314623534679413,
+ "learning_rate": 0.0006,
+ "loss": 3.6980109214782715,
+ "step": 2310
+ },
+ {
+ "epoch": 32.09785932721712,
+ "grad_norm": 0.2210417091846466,
+ "learning_rate": 0.0006,
+ "loss": 3.7395730018615723,
+ "step": 2311
+ },
+ {
+ "epoch": 32.111839231105286,
+ "grad_norm": 0.20263685286045074,
+ "learning_rate": 0.0006,
+ "loss": 3.678412914276123,
+ "step": 2312
+ },
+ {
+ "epoch": 32.12581913499345,
+ "grad_norm": 0.20412251353263855,
+ "learning_rate": 0.0006,
+ "loss": 3.688762903213501,
+ "step": 2313
+ },
+ {
+ "epoch": 32.139799038881605,
+ "grad_norm": 0.2041679322719574,
+ "learning_rate": 0.0006,
+ "loss": 3.7231521606445312,
+ "step": 2314
+ },
+ {
+ "epoch": 32.15377894276977,
+ "grad_norm": 0.23270174860954285,
+ "learning_rate": 0.0006,
+ "loss": 3.7102620601654053,
+ "step": 2315
+ },
+ {
+ "epoch": 32.16775884665793,
+ "grad_norm": 0.25470519065856934,
+ "learning_rate": 0.0006,
+ "loss": 3.7353053092956543,
+ "step": 2316
+ },
+ {
+ "epoch": 32.18173875054609,
+ "grad_norm": 0.2930106222629547,
+ "learning_rate": 0.0006,
+ "loss": 3.7418713569641113,
+ "step": 2317
+ },
+ {
+ "epoch": 32.19571865443425,
+ "grad_norm": 0.3181219696998596,
+ "learning_rate": 0.0006,
+ "loss": 3.6716184616088867,
+ "step": 2318
+ },
+ {
+ "epoch": 32.20969855832241,
+ "grad_norm": 0.2752978801727295,
+ "learning_rate": 0.0006,
+ "loss": 3.70334792137146,
+ "step": 2319
+ },
+ {
+ "epoch": 32.22367846221057,
+ "grad_norm": 0.28381186723709106,
+ "learning_rate": 0.0006,
+ "loss": 3.719794750213623,
+ "step": 2320
+ },
+ {
+ "epoch": 32.237658366098735,
+ "grad_norm": 0.3287750482559204,
+ "learning_rate": 0.0006,
+ "loss": 3.7363362312316895,
+ "step": 2321
+ },
+ {
+ "epoch": 32.25163826998689,
+ "grad_norm": 0.32669803500175476,
+ "learning_rate": 0.0006,
+ "loss": 3.739394426345825,
+ "step": 2322
+ },
+ {
+ "epoch": 32.265618173875055,
+ "grad_norm": 0.27423885464668274,
+ "learning_rate": 0.0006,
+ "loss": 3.7381205558776855,
+ "step": 2323
+ },
+ {
+ "epoch": 32.27959807776322,
+ "grad_norm": 0.2594660818576813,
+ "learning_rate": 0.0006,
+ "loss": 3.698683738708496,
+ "step": 2324
+ },
+ {
+ "epoch": 32.293577981651374,
+ "grad_norm": 0.2785511016845703,
+ "learning_rate": 0.0006,
+ "loss": 3.688774824142456,
+ "step": 2325
+ },
+ {
+ "epoch": 32.30755788553954,
+ "grad_norm": 0.2690320611000061,
+ "learning_rate": 0.0006,
+ "loss": 3.7209150791168213,
+ "step": 2326
+ },
+ {
+ "epoch": 32.3215377894277,
+ "grad_norm": 0.23331770300865173,
+ "learning_rate": 0.0006,
+ "loss": 3.682931423187256,
+ "step": 2327
+ },
+ {
+ "epoch": 32.33551769331586,
+ "grad_norm": 0.22380802035331726,
+ "learning_rate": 0.0006,
+ "loss": 3.720445156097412,
+ "step": 2328
+ },
+ {
+ "epoch": 32.34949759720402,
+ "grad_norm": 0.2065964937210083,
+ "learning_rate": 0.0006,
+ "loss": 3.705427885055542,
+ "step": 2329
+ },
+ {
+ "epoch": 32.36347750109218,
+ "grad_norm": 0.20701853930950165,
+ "learning_rate": 0.0006,
+ "loss": 3.7078697681427,
+ "step": 2330
+ },
+ {
+ "epoch": 32.37745740498034,
+ "grad_norm": 0.2063559591770172,
+ "learning_rate": 0.0006,
+ "loss": 3.745004653930664,
+ "step": 2331
+ },
+ {
+ "epoch": 32.391437308868504,
+ "grad_norm": 0.19377011060714722,
+ "learning_rate": 0.0006,
+ "loss": 3.713808059692383,
+ "step": 2332
+ },
+ {
+ "epoch": 32.40541721275666,
+ "grad_norm": 0.19260725378990173,
+ "learning_rate": 0.0006,
+ "loss": 3.717043876647949,
+ "step": 2333
+ },
+ {
+ "epoch": 32.419397116644824,
+ "grad_norm": 0.20792821049690247,
+ "learning_rate": 0.0006,
+ "loss": 3.68632173538208,
+ "step": 2334
+ },
+ {
+ "epoch": 32.43337702053299,
+ "grad_norm": 0.22278444468975067,
+ "learning_rate": 0.0006,
+ "loss": 3.7345821857452393,
+ "step": 2335
+ },
+ {
+ "epoch": 32.44735692442114,
+ "grad_norm": 0.22533579170703888,
+ "learning_rate": 0.0006,
+ "loss": 3.7224173545837402,
+ "step": 2336
+ },
+ {
+ "epoch": 32.46133682830931,
+ "grad_norm": 0.20228394865989685,
+ "learning_rate": 0.0006,
+ "loss": 3.748530149459839,
+ "step": 2337
+ },
+ {
+ "epoch": 32.47531673219746,
+ "grad_norm": 0.19944614171981812,
+ "learning_rate": 0.0006,
+ "loss": 3.707085371017456,
+ "step": 2338
+ },
+ {
+ "epoch": 32.489296636085626,
+ "grad_norm": 0.19856145977973938,
+ "learning_rate": 0.0006,
+ "loss": 3.6898274421691895,
+ "step": 2339
+ },
+ {
+ "epoch": 32.50327653997379,
+ "grad_norm": 0.20734605193138123,
+ "learning_rate": 0.0006,
+ "loss": 3.7511792182922363,
+ "step": 2340
+ },
+ {
+ "epoch": 32.517256443861946,
+ "grad_norm": 0.19489309191703796,
+ "learning_rate": 0.0006,
+ "loss": 3.736445426940918,
+ "step": 2341
+ },
+ {
+ "epoch": 32.53123634775011,
+ "grad_norm": 0.18899282813072205,
+ "learning_rate": 0.0006,
+ "loss": 3.727325916290283,
+ "step": 2342
+ },
+ {
+ "epoch": 32.54521625163827,
+ "grad_norm": 0.19670401513576508,
+ "learning_rate": 0.0006,
+ "loss": 3.7326102256774902,
+ "step": 2343
+ },
+ {
+ "epoch": 32.55919615552643,
+ "grad_norm": 0.20061780512332916,
+ "learning_rate": 0.0006,
+ "loss": 3.698716402053833,
+ "step": 2344
+ },
+ {
+ "epoch": 32.57317605941459,
+ "grad_norm": 0.1991659700870514,
+ "learning_rate": 0.0006,
+ "loss": 3.6913180351257324,
+ "step": 2345
+ },
+ {
+ "epoch": 32.58715596330275,
+ "grad_norm": 0.18856225907802582,
+ "learning_rate": 0.0006,
+ "loss": 3.7130961418151855,
+ "step": 2346
+ },
+ {
+ "epoch": 32.60113586719091,
+ "grad_norm": 0.1983972191810608,
+ "learning_rate": 0.0006,
+ "loss": 3.7530808448791504,
+ "step": 2347
+ },
+ {
+ "epoch": 32.615115771079076,
+ "grad_norm": 0.2037997543811798,
+ "learning_rate": 0.0006,
+ "loss": 3.7076587677001953,
+ "step": 2348
+ },
+ {
+ "epoch": 32.62909567496723,
+ "grad_norm": 0.21008458733558655,
+ "learning_rate": 0.0006,
+ "loss": 3.7379021644592285,
+ "step": 2349
+ },
+ {
+ "epoch": 32.643075578855395,
+ "grad_norm": 0.2129313349723816,
+ "learning_rate": 0.0006,
+ "loss": 3.7031373977661133,
+ "step": 2350
+ },
+ {
+ "epoch": 32.65705548274356,
+ "grad_norm": 0.18756245076656342,
+ "learning_rate": 0.0006,
+ "loss": 3.7066285610198975,
+ "step": 2351
+ },
+ {
+ "epoch": 32.671035386631715,
+ "grad_norm": 0.17946591973304749,
+ "learning_rate": 0.0006,
+ "loss": 3.73781681060791,
+ "step": 2352
+ },
+ {
+ "epoch": 32.68501529051988,
+ "grad_norm": 0.18983198702335358,
+ "learning_rate": 0.0006,
+ "loss": 3.718855381011963,
+ "step": 2353
+ },
+ {
+ "epoch": 32.69899519440804,
+ "grad_norm": 0.2080942839384079,
+ "learning_rate": 0.0006,
+ "loss": 3.7111258506774902,
+ "step": 2354
+ },
+ {
+ "epoch": 32.7129750982962,
+ "grad_norm": 0.23633413016796112,
+ "learning_rate": 0.0006,
+ "loss": 3.709766149520874,
+ "step": 2355
+ },
+ {
+ "epoch": 32.72695500218436,
+ "grad_norm": 0.2723144590854645,
+ "learning_rate": 0.0006,
+ "loss": 3.745850086212158,
+ "step": 2356
+ },
+ {
+ "epoch": 32.74093490607252,
+ "grad_norm": 0.29774025082588196,
+ "learning_rate": 0.0006,
+ "loss": 3.733771324157715,
+ "step": 2357
+ },
+ {
+ "epoch": 32.75491480996068,
+ "grad_norm": 0.25976699590682983,
+ "learning_rate": 0.0006,
+ "loss": 3.734194278717041,
+ "step": 2358
+ },
+ {
+ "epoch": 32.768894713848844,
+ "grad_norm": 0.20038039982318878,
+ "learning_rate": 0.0006,
+ "loss": 3.735656261444092,
+ "step": 2359
+ },
+ {
+ "epoch": 32.782874617737,
+ "grad_norm": 0.19745637476444244,
+ "learning_rate": 0.0006,
+ "loss": 3.7335894107818604,
+ "step": 2360
+ },
+ {
+ "epoch": 32.796854521625164,
+ "grad_norm": 0.22022396326065063,
+ "learning_rate": 0.0006,
+ "loss": 3.708998680114746,
+ "step": 2361
+ },
+ {
+ "epoch": 32.81083442551333,
+ "grad_norm": 0.24754752218723297,
+ "learning_rate": 0.0006,
+ "loss": 3.7616286277770996,
+ "step": 2362
+ },
+ {
+ "epoch": 32.824814329401484,
+ "grad_norm": 0.26438358426094055,
+ "learning_rate": 0.0006,
+ "loss": 3.737079620361328,
+ "step": 2363
+ },
+ {
+ "epoch": 32.83879423328965,
+ "grad_norm": 0.2507241666316986,
+ "learning_rate": 0.0006,
+ "loss": 3.708500385284424,
+ "step": 2364
+ },
+ {
+ "epoch": 32.8527741371778,
+ "grad_norm": 0.25688016414642334,
+ "learning_rate": 0.0006,
+ "loss": 3.7389419078826904,
+ "step": 2365
+ },
+ {
+ "epoch": 32.86675404106597,
+ "grad_norm": 0.257447749376297,
+ "learning_rate": 0.0006,
+ "loss": 3.7253334522247314,
+ "step": 2366
+ },
+ {
+ "epoch": 32.88073394495413,
+ "grad_norm": 0.2621215879917145,
+ "learning_rate": 0.0006,
+ "loss": 3.773163318634033,
+ "step": 2367
+ },
+ {
+ "epoch": 32.89471384884229,
+ "grad_norm": 0.23554839193820953,
+ "learning_rate": 0.0006,
+ "loss": 3.7534430027008057,
+ "step": 2368
+ },
+ {
+ "epoch": 32.90869375273045,
+ "grad_norm": 0.19698940217494965,
+ "learning_rate": 0.0006,
+ "loss": 3.7094414234161377,
+ "step": 2369
+ },
+ {
+ "epoch": 32.92267365661861,
+ "grad_norm": 0.21380476653575897,
+ "learning_rate": 0.0006,
+ "loss": 3.7666497230529785,
+ "step": 2370
+ },
+ {
+ "epoch": 32.93665356050677,
+ "grad_norm": 0.20876452326774597,
+ "learning_rate": 0.0006,
+ "loss": 3.7467992305755615,
+ "step": 2371
+ },
+ {
+ "epoch": 32.95063346439493,
+ "grad_norm": 0.1989884227514267,
+ "learning_rate": 0.0006,
+ "loss": 3.749878168106079,
+ "step": 2372
+ },
+ {
+ "epoch": 32.964613368283096,
+ "grad_norm": 0.19089168310165405,
+ "learning_rate": 0.0006,
+ "loss": 3.7211015224456787,
+ "step": 2373
+ },
+ {
+ "epoch": 32.97859327217125,
+ "grad_norm": 0.1962461918592453,
+ "learning_rate": 0.0006,
+ "loss": 3.728684425354004,
+ "step": 2374
+ },
+ {
+ "epoch": 32.992573176059416,
+ "grad_norm": 0.22518110275268555,
+ "learning_rate": 0.0006,
+ "loss": 3.7361507415771484,
+ "step": 2375
+ },
+ {
+ "epoch": 33.0,
+ "grad_norm": 0.26704078912734985,
+ "learning_rate": 0.0006,
+ "loss": 3.7478318214416504,
+ "step": 2376
+ },
+ {
+ "epoch": 33.0,
+ "eval_loss": 4.024221897125244,
+ "eval_runtime": 43.9826,
+ "eval_samples_per_second": 55.522,
+ "eval_steps_per_second": 3.479,
+ "step": 2376
+ },
+ {
+ "epoch": 33.01397990388816,
+ "grad_norm": 0.23387742042541504,
+ "learning_rate": 0.0006,
+ "loss": 3.7043614387512207,
+ "step": 2377
+ },
+ {
+ "epoch": 33.02795980777632,
+ "grad_norm": 0.21334673464298248,
+ "learning_rate": 0.0006,
+ "loss": 3.6714677810668945,
+ "step": 2378
+ },
+ {
+ "epoch": 33.04193971166448,
+ "grad_norm": 0.2608581483364105,
+ "learning_rate": 0.0006,
+ "loss": 3.678460121154785,
+ "step": 2379
+ },
+ {
+ "epoch": 33.05591961555265,
+ "grad_norm": 0.31364381313323975,
+ "learning_rate": 0.0006,
+ "loss": 3.6771793365478516,
+ "step": 2380
+ },
+ {
+ "epoch": 33.0698995194408,
+ "grad_norm": 0.31785935163497925,
+ "learning_rate": 0.0006,
+ "loss": 3.7248926162719727,
+ "step": 2381
+ },
+ {
+ "epoch": 33.083879423328966,
+ "grad_norm": 0.29244646430015564,
+ "learning_rate": 0.0006,
+ "loss": 3.677882194519043,
+ "step": 2382
+ },
+ {
+ "epoch": 33.09785932721712,
+ "grad_norm": 0.23943741619586945,
+ "learning_rate": 0.0006,
+ "loss": 3.7365124225616455,
+ "step": 2383
+ },
+ {
+ "epoch": 33.111839231105286,
+ "grad_norm": 0.2547394931316376,
+ "learning_rate": 0.0006,
+ "loss": 3.7031357288360596,
+ "step": 2384
+ },
+ {
+ "epoch": 33.12581913499345,
+ "grad_norm": 0.2696659564971924,
+ "learning_rate": 0.0006,
+ "loss": 3.6904754638671875,
+ "step": 2385
+ },
+ {
+ "epoch": 33.139799038881605,
+ "grad_norm": 0.24271385371685028,
+ "learning_rate": 0.0006,
+ "loss": 3.7137649059295654,
+ "step": 2386
+ },
+ {
+ "epoch": 33.15377894276977,
+ "grad_norm": 0.23435993492603302,
+ "learning_rate": 0.0006,
+ "loss": 3.707383632659912,
+ "step": 2387
+ },
+ {
+ "epoch": 33.16775884665793,
+ "grad_norm": 0.21428440511226654,
+ "learning_rate": 0.0006,
+ "loss": 3.7148897647857666,
+ "step": 2388
+ },
+ {
+ "epoch": 33.18173875054609,
+ "grad_norm": 0.22420962154865265,
+ "learning_rate": 0.0006,
+ "loss": 3.710111141204834,
+ "step": 2389
+ },
+ {
+ "epoch": 33.19571865443425,
+ "grad_norm": 0.26222777366638184,
+ "learning_rate": 0.0006,
+ "loss": 3.677438259124756,
+ "step": 2390
+ },
+ {
+ "epoch": 33.20969855832241,
+ "grad_norm": 0.29910165071487427,
+ "learning_rate": 0.0006,
+ "loss": 3.6895523071289062,
+ "step": 2391
+ },
+ {
+ "epoch": 33.22367846221057,
+ "grad_norm": 0.2615569531917572,
+ "learning_rate": 0.0006,
+ "loss": 3.7339906692504883,
+ "step": 2392
+ },
+ {
+ "epoch": 33.237658366098735,
+ "grad_norm": 0.23396961390972137,
+ "learning_rate": 0.0006,
+ "loss": 3.7179932594299316,
+ "step": 2393
+ },
+ {
+ "epoch": 33.25163826998689,
+ "grad_norm": 0.24844495952129364,
+ "learning_rate": 0.0006,
+ "loss": 3.7191576957702637,
+ "step": 2394
+ },
+ {
+ "epoch": 33.265618173875055,
+ "grad_norm": 0.2306993454694748,
+ "learning_rate": 0.0006,
+ "loss": 3.7172658443450928,
+ "step": 2395
+ },
+ {
+ "epoch": 33.27959807776322,
+ "grad_norm": 0.24935221672058105,
+ "learning_rate": 0.0006,
+ "loss": 3.6917519569396973,
+ "step": 2396
+ },
+ {
+ "epoch": 33.293577981651374,
+ "grad_norm": 0.2522840201854706,
+ "learning_rate": 0.0006,
+ "loss": 3.7263593673706055,
+ "step": 2397
+ },
+ {
+ "epoch": 33.30755788553954,
+ "grad_norm": 0.26411181688308716,
+ "learning_rate": 0.0006,
+ "loss": 3.6981635093688965,
+ "step": 2398
+ },
+ {
+ "epoch": 33.3215377894277,
+ "grad_norm": 0.22396239638328552,
+ "learning_rate": 0.0006,
+ "loss": 3.713247299194336,
+ "step": 2399
+ },
+ {
+ "epoch": 33.33551769331586,
+ "grad_norm": 0.20579157769680023,
+ "learning_rate": 0.0006,
+ "loss": 3.7058467864990234,
+ "step": 2400
+ },
+ {
+ "epoch": 33.34949759720402,
+ "grad_norm": 0.20103922486305237,
+ "learning_rate": 0.0006,
+ "loss": 3.700924873352051,
+ "step": 2401
+ },
+ {
+ "epoch": 33.36347750109218,
+ "grad_norm": 0.19964663684368134,
+ "learning_rate": 0.0006,
+ "loss": 3.6985437870025635,
+ "step": 2402
+ },
+ {
+ "epoch": 33.37745740498034,
+ "grad_norm": 0.20860575139522552,
+ "learning_rate": 0.0006,
+ "loss": 3.7480058670043945,
+ "step": 2403
+ },
+ {
+ "epoch": 33.391437308868504,
+ "grad_norm": 0.19043605029582977,
+ "learning_rate": 0.0006,
+ "loss": 3.6952016353607178,
+ "step": 2404
+ },
+ {
+ "epoch": 33.40541721275666,
+ "grad_norm": 0.1968909204006195,
+ "learning_rate": 0.0006,
+ "loss": 3.69362735748291,
+ "step": 2405
+ },
+ {
+ "epoch": 33.419397116644824,
+ "grad_norm": 0.23492494225502014,
+ "learning_rate": 0.0006,
+ "loss": 3.707993984222412,
+ "step": 2406
+ },
+ {
+ "epoch": 33.43337702053299,
+ "grad_norm": 0.23970453441143036,
+ "learning_rate": 0.0006,
+ "loss": 3.707731246948242,
+ "step": 2407
+ },
+ {
+ "epoch": 33.44735692442114,
+ "grad_norm": 0.2515844404697418,
+ "learning_rate": 0.0006,
+ "loss": 3.723824977874756,
+ "step": 2408
+ },
+ {
+ "epoch": 33.46133682830931,
+ "grad_norm": 0.2343570590019226,
+ "learning_rate": 0.0006,
+ "loss": 3.7068886756896973,
+ "step": 2409
+ },
+ {
+ "epoch": 33.47531673219746,
+ "grad_norm": 0.23419860005378723,
+ "learning_rate": 0.0006,
+ "loss": 3.6964287757873535,
+ "step": 2410
+ },
+ {
+ "epoch": 33.489296636085626,
+ "grad_norm": 0.21280375123023987,
+ "learning_rate": 0.0006,
+ "loss": 3.7020950317382812,
+ "step": 2411
+ },
+ {
+ "epoch": 33.50327653997379,
+ "grad_norm": 0.2061092108488083,
+ "learning_rate": 0.0006,
+ "loss": 3.750861406326294,
+ "step": 2412
+ },
+ {
+ "epoch": 33.517256443861946,
+ "grad_norm": 0.19693219661712646,
+ "learning_rate": 0.0006,
+ "loss": 3.717020034790039,
+ "step": 2413
+ },
+ {
+ "epoch": 33.53123634775011,
+ "grad_norm": 0.18199551105499268,
+ "learning_rate": 0.0006,
+ "loss": 3.7242612838745117,
+ "step": 2414
+ },
+ {
+ "epoch": 33.54521625163827,
+ "grad_norm": 0.20131248235702515,
+ "learning_rate": 0.0006,
+ "loss": 3.6758954524993896,
+ "step": 2415
+ },
+ {
+ "epoch": 33.55919615552643,
+ "grad_norm": 0.2219412475824356,
+ "learning_rate": 0.0006,
+ "loss": 3.707927703857422,
+ "step": 2416
+ },
+ {
+ "epoch": 33.57317605941459,
+ "grad_norm": 0.22541435062885284,
+ "learning_rate": 0.0006,
+ "loss": 3.696967601776123,
+ "step": 2417
+ },
+ {
+ "epoch": 33.58715596330275,
+ "grad_norm": 0.20367272198200226,
+ "learning_rate": 0.0006,
+ "loss": 3.730795383453369,
+ "step": 2418
+ },
+ {
+ "epoch": 33.60113586719091,
+ "grad_norm": 0.20861074328422546,
+ "learning_rate": 0.0006,
+ "loss": 3.707066535949707,
+ "step": 2419
+ },
+ {
+ "epoch": 33.615115771079076,
+ "grad_norm": 0.20570263266563416,
+ "learning_rate": 0.0006,
+ "loss": 3.730602502822876,
+ "step": 2420
+ },
+ {
+ "epoch": 33.62909567496723,
+ "grad_norm": 0.21318231523036957,
+ "learning_rate": 0.0006,
+ "loss": 3.7073278427124023,
+ "step": 2421
+ },
+ {
+ "epoch": 33.643075578855395,
+ "grad_norm": 0.2142639458179474,
+ "learning_rate": 0.0006,
+ "loss": 3.718470573425293,
+ "step": 2422
+ },
+ {
+ "epoch": 33.65705548274356,
+ "grad_norm": 0.19620704650878906,
+ "learning_rate": 0.0006,
+ "loss": 3.716036319732666,
+ "step": 2423
+ },
+ {
+ "epoch": 33.671035386631715,
+ "grad_norm": 0.19308267533779144,
+ "learning_rate": 0.0006,
+ "loss": 3.734597682952881,
+ "step": 2424
+ },
+ {
+ "epoch": 33.68501529051988,
+ "grad_norm": 0.19453389942646027,
+ "learning_rate": 0.0006,
+ "loss": 3.726262092590332,
+ "step": 2425
+ },
+ {
+ "epoch": 33.69899519440804,
+ "grad_norm": 0.20405639708042145,
+ "learning_rate": 0.0006,
+ "loss": 3.678340435028076,
+ "step": 2426
+ },
+ {
+ "epoch": 33.7129750982962,
+ "grad_norm": 0.19525611400604248,
+ "learning_rate": 0.0006,
+ "loss": 3.723907470703125,
+ "step": 2427
+ },
+ {
+ "epoch": 33.72695500218436,
+ "grad_norm": 0.19390441477298737,
+ "learning_rate": 0.0006,
+ "loss": 3.707897186279297,
+ "step": 2428
+ },
+ {
+ "epoch": 33.74093490607252,
+ "grad_norm": 0.2032899558544159,
+ "learning_rate": 0.0006,
+ "loss": 3.735041618347168,
+ "step": 2429
+ },
+ {
+ "epoch": 33.75491480996068,
+ "grad_norm": 0.2134784460067749,
+ "learning_rate": 0.0006,
+ "loss": 3.674978017807007,
+ "step": 2430
+ },
+ {
+ "epoch": 33.768894713848844,
+ "grad_norm": 0.24691973626613617,
+ "learning_rate": 0.0006,
+ "loss": 3.7028675079345703,
+ "step": 2431
+ },
+ {
+ "epoch": 33.782874617737,
+ "grad_norm": 0.2272702008485794,
+ "learning_rate": 0.0006,
+ "loss": 3.7277941703796387,
+ "step": 2432
+ },
+ {
+ "epoch": 33.796854521625164,
+ "grad_norm": 0.20052100718021393,
+ "learning_rate": 0.0006,
+ "loss": 3.7146830558776855,
+ "step": 2433
+ },
+ {
+ "epoch": 33.81083442551333,
+ "grad_norm": 0.1958577185869217,
+ "learning_rate": 0.0006,
+ "loss": 3.6936864852905273,
+ "step": 2434
+ },
+ {
+ "epoch": 33.824814329401484,
+ "grad_norm": 0.191860631108284,
+ "learning_rate": 0.0006,
+ "loss": 3.7451858520507812,
+ "step": 2435
+ },
+ {
+ "epoch": 33.83879423328965,
+ "grad_norm": 0.20961424708366394,
+ "learning_rate": 0.0006,
+ "loss": 3.722400665283203,
+ "step": 2436
+ },
+ {
+ "epoch": 33.8527741371778,
+ "grad_norm": 0.19784288108348846,
+ "learning_rate": 0.0006,
+ "loss": 3.712474822998047,
+ "step": 2437
+ },
+ {
+ "epoch": 33.86675404106597,
+ "grad_norm": 0.18645426630973816,
+ "learning_rate": 0.0006,
+ "loss": 3.7054500579833984,
+ "step": 2438
+ },
+ {
+ "epoch": 33.88073394495413,
+ "grad_norm": 0.19622360169887543,
+ "learning_rate": 0.0006,
+ "loss": 3.7010550498962402,
+ "step": 2439
+ },
+ {
+ "epoch": 33.89471384884229,
+ "grad_norm": 0.20283745229244232,
+ "learning_rate": 0.0006,
+ "loss": 3.7252519130706787,
+ "step": 2440
+ },
+ {
+ "epoch": 33.90869375273045,
+ "grad_norm": 0.18671709299087524,
+ "learning_rate": 0.0006,
+ "loss": 3.6932945251464844,
+ "step": 2441
+ },
+ {
+ "epoch": 33.92267365661861,
+ "grad_norm": 0.17953112721443176,
+ "learning_rate": 0.0006,
+ "loss": 3.7453854084014893,
+ "step": 2442
+ },
+ {
+ "epoch": 33.93665356050677,
+ "grad_norm": 0.1945437788963318,
+ "learning_rate": 0.0006,
+ "loss": 3.722881317138672,
+ "step": 2443
+ },
+ {
+ "epoch": 33.95063346439493,
+ "grad_norm": 0.18414495885372162,
+ "learning_rate": 0.0006,
+ "loss": 3.7402591705322266,
+ "step": 2444
+ },
+ {
+ "epoch": 33.964613368283096,
+ "grad_norm": 0.1936541497707367,
+ "learning_rate": 0.0006,
+ "loss": 3.720057964324951,
+ "step": 2445
+ },
+ {
+ "epoch": 33.97859327217125,
+ "grad_norm": 0.20177008211612701,
+ "learning_rate": 0.0006,
+ "loss": 3.6983802318573,
+ "step": 2446
+ },
+ {
+ "epoch": 33.992573176059416,
+ "grad_norm": 0.18977557122707367,
+ "learning_rate": 0.0006,
+ "loss": 3.7202203273773193,
+ "step": 2447
+ },
+ {
+ "epoch": 34.0,
+ "grad_norm": 0.220163956284523,
+ "learning_rate": 0.0006,
+ "loss": 3.72540283203125,
+ "step": 2448
+ },
+ {
+ "epoch": 34.0,
+ "eval_loss": 4.009343147277832,
+ "eval_runtime": 44.1825,
+ "eval_samples_per_second": 55.271,
+ "eval_steps_per_second": 3.463,
+ "step": 2448
+ },
+ {
+ "epoch": 34.01397990388816,
+ "grad_norm": 0.19843372702598572,
+ "learning_rate": 0.0006,
+ "loss": 3.664431571960449,
+ "step": 2449
+ },
+ {
+ "epoch": 34.02795980777632,
+ "grad_norm": 0.20413008332252502,
+ "learning_rate": 0.0006,
+ "loss": 3.699094533920288,
+ "step": 2450
+ },
+ {
+ "epoch": 34.04193971166448,
+ "grad_norm": 0.22086848318576813,
+ "learning_rate": 0.0006,
+ "loss": 3.681825637817383,
+ "step": 2451
+ },
+ {
+ "epoch": 34.05591961555265,
+ "grad_norm": 0.20753061771392822,
+ "learning_rate": 0.0006,
+ "loss": 3.677116870880127,
+ "step": 2452
+ },
+ {
+ "epoch": 34.0698995194408,
+ "grad_norm": 0.21835783123970032,
+ "learning_rate": 0.0006,
+ "loss": 3.7079062461853027,
+ "step": 2453
+ },
+ {
+ "epoch": 34.083879423328966,
+ "grad_norm": 0.2244357019662857,
+ "learning_rate": 0.0006,
+ "loss": 3.69844913482666,
+ "step": 2454
+ },
+ {
+ "epoch": 34.09785932721712,
+ "grad_norm": 0.2238784283399582,
+ "learning_rate": 0.0006,
+ "loss": 3.6835570335388184,
+ "step": 2455
+ },
+ {
+ "epoch": 34.111839231105286,
+ "grad_norm": 0.24816176295280457,
+ "learning_rate": 0.0006,
+ "loss": 3.6832966804504395,
+ "step": 2456
+ },
+ {
+ "epoch": 34.12581913499345,
+ "grad_norm": 0.2445257306098938,
+ "learning_rate": 0.0006,
+ "loss": 3.7190022468566895,
+ "step": 2457
+ },
+ {
+ "epoch": 34.139799038881605,
+ "grad_norm": 0.24510814249515533,
+ "learning_rate": 0.0006,
+ "loss": 3.678098201751709,
+ "step": 2458
+ },
+ {
+ "epoch": 34.15377894276977,
+ "grad_norm": 0.2550753653049469,
+ "learning_rate": 0.0006,
+ "loss": 3.69335675239563,
+ "step": 2459
+ },
+ {
+ "epoch": 34.16775884665793,
+ "grad_norm": 0.2435017228126526,
+ "learning_rate": 0.0006,
+ "loss": 3.70463228225708,
+ "step": 2460
+ },
+ {
+ "epoch": 34.18173875054609,
+ "grad_norm": 0.26441144943237305,
+ "learning_rate": 0.0006,
+ "loss": 3.6757068634033203,
+ "step": 2461
+ },
+ {
+ "epoch": 34.19571865443425,
+ "grad_norm": 0.2737993001937866,
+ "learning_rate": 0.0006,
+ "loss": 3.6510863304138184,
+ "step": 2462
+ },
+ {
+ "epoch": 34.20969855832241,
+ "grad_norm": 0.24625736474990845,
+ "learning_rate": 0.0006,
+ "loss": 3.707612991333008,
+ "step": 2463
+ },
+ {
+ "epoch": 34.22367846221057,
+ "grad_norm": 0.22222039103507996,
+ "learning_rate": 0.0006,
+ "loss": 3.7145133018493652,
+ "step": 2464
+ },
+ {
+ "epoch": 34.237658366098735,
+ "grad_norm": 0.2173531949520111,
+ "learning_rate": 0.0006,
+ "loss": 3.685112476348877,
+ "step": 2465
+ },
+ {
+ "epoch": 34.25163826998689,
+ "grad_norm": 0.23102006316184998,
+ "learning_rate": 0.0006,
+ "loss": 3.6742453575134277,
+ "step": 2466
+ },
+ {
+ "epoch": 34.265618173875055,
+ "grad_norm": 0.22287188470363617,
+ "learning_rate": 0.0006,
+ "loss": 3.7030534744262695,
+ "step": 2467
+ },
+ {
+ "epoch": 34.27959807776322,
+ "grad_norm": 0.20377251505851746,
+ "learning_rate": 0.0006,
+ "loss": 3.6866259574890137,
+ "step": 2468
+ },
+ {
+ "epoch": 34.293577981651374,
+ "grad_norm": 0.19867438077926636,
+ "learning_rate": 0.0006,
+ "loss": 3.70395565032959,
+ "step": 2469
+ },
+ {
+ "epoch": 34.30755788553954,
+ "grad_norm": 0.2014918178319931,
+ "learning_rate": 0.0006,
+ "loss": 3.660795211791992,
+ "step": 2470
+ },
+ {
+ "epoch": 34.3215377894277,
+ "grad_norm": 0.20981402695178986,
+ "learning_rate": 0.0006,
+ "loss": 3.7045323848724365,
+ "step": 2471
+ },
+ {
+ "epoch": 34.33551769331586,
+ "grad_norm": 0.20968124270439148,
+ "learning_rate": 0.0006,
+ "loss": 3.7113170623779297,
+ "step": 2472
+ },
+ {
+ "epoch": 34.34949759720402,
+ "grad_norm": 0.2214043140411377,
+ "learning_rate": 0.0006,
+ "loss": 3.7330074310302734,
+ "step": 2473
+ },
+ {
+ "epoch": 34.36347750109218,
+ "grad_norm": 0.21231533586978912,
+ "learning_rate": 0.0006,
+ "loss": 3.6706933975219727,
+ "step": 2474
+ },
+ {
+ "epoch": 34.37745740498034,
+ "grad_norm": 0.2022094875574112,
+ "learning_rate": 0.0006,
+ "loss": 3.7230453491210938,
+ "step": 2475
+ },
+ {
+ "epoch": 34.391437308868504,
+ "grad_norm": 0.2281145304441452,
+ "learning_rate": 0.0006,
+ "loss": 3.7197465896606445,
+ "step": 2476
+ },
+ {
+ "epoch": 34.40541721275666,
+ "grad_norm": 0.2147362381219864,
+ "learning_rate": 0.0006,
+ "loss": 3.7092337608337402,
+ "step": 2477
+ },
+ {
+ "epoch": 34.419397116644824,
+ "grad_norm": 0.19984203577041626,
+ "learning_rate": 0.0006,
+ "loss": 3.6939496994018555,
+ "step": 2478
+ },
+ {
+ "epoch": 34.43337702053299,
+ "grad_norm": 0.21088480949401855,
+ "learning_rate": 0.0006,
+ "loss": 3.6942667961120605,
+ "step": 2479
+ },
+ {
+ "epoch": 34.44735692442114,
+ "grad_norm": 0.20444616675376892,
+ "learning_rate": 0.0006,
+ "loss": 3.718186378479004,
+ "step": 2480
+ },
+ {
+ "epoch": 34.46133682830931,
+ "grad_norm": 0.19133952260017395,
+ "learning_rate": 0.0006,
+ "loss": 3.697197437286377,
+ "step": 2481
+ },
+ {
+ "epoch": 34.47531673219746,
+ "grad_norm": 0.2219255417585373,
+ "learning_rate": 0.0006,
+ "loss": 3.684386730194092,
+ "step": 2482
+ },
+ {
+ "epoch": 34.489296636085626,
+ "grad_norm": 0.2480643391609192,
+ "learning_rate": 0.0006,
+ "loss": 3.6656622886657715,
+ "step": 2483
+ },
+ {
+ "epoch": 34.50327653997379,
+ "grad_norm": 0.22907346487045288,
+ "learning_rate": 0.0006,
+ "loss": 3.741391897201538,
+ "step": 2484
+ },
+ {
+ "epoch": 34.517256443861946,
+ "grad_norm": 0.20277173817157745,
+ "learning_rate": 0.0006,
+ "loss": 3.7062582969665527,
+ "step": 2485
+ },
+ {
+ "epoch": 34.53123634775011,
+ "grad_norm": 0.21411100029945374,
+ "learning_rate": 0.0006,
+ "loss": 3.691784381866455,
+ "step": 2486
+ },
+ {
+ "epoch": 34.54521625163827,
+ "grad_norm": 0.20261600613594055,
+ "learning_rate": 0.0006,
+ "loss": 3.6855502128601074,
+ "step": 2487
+ },
+ {
+ "epoch": 34.55919615552643,
+ "grad_norm": 0.23913109302520752,
+ "learning_rate": 0.0006,
+ "loss": 3.670754909515381,
+ "step": 2488
+ },
+ {
+ "epoch": 34.57317605941459,
+ "grad_norm": 0.24427077174186707,
+ "learning_rate": 0.0006,
+ "loss": 3.700611114501953,
+ "step": 2489
+ },
+ {
+ "epoch": 34.58715596330275,
+ "grad_norm": 0.20305761694908142,
+ "learning_rate": 0.0006,
+ "loss": 3.7284226417541504,
+ "step": 2490
+ },
+ {
+ "epoch": 34.60113586719091,
+ "grad_norm": 0.20398905873298645,
+ "learning_rate": 0.0006,
+ "loss": 3.6860880851745605,
+ "step": 2491
+ },
+ {
+ "epoch": 34.615115771079076,
+ "grad_norm": 0.21016651391983032,
+ "learning_rate": 0.0006,
+ "loss": 3.7366015911102295,
+ "step": 2492
+ },
+ {
+ "epoch": 34.62909567496723,
+ "grad_norm": 0.22279402613639832,
+ "learning_rate": 0.0006,
+ "loss": 3.7024295330047607,
+ "step": 2493
+ },
+ {
+ "epoch": 34.643075578855395,
+ "grad_norm": 0.25080347061157227,
+ "learning_rate": 0.0006,
+ "loss": 3.68355655670166,
+ "step": 2494
+ },
+ {
+ "epoch": 34.65705548274356,
+ "grad_norm": 0.2702971398830414,
+ "learning_rate": 0.0006,
+ "loss": 3.7400612831115723,
+ "step": 2495
+ },
+ {
+ "epoch": 34.671035386631715,
+ "grad_norm": 0.299398273229599,
+ "learning_rate": 0.0006,
+ "loss": 3.7160325050354004,
+ "step": 2496
+ },
+ {
+ "epoch": 34.68501529051988,
+ "grad_norm": 0.29151082038879395,
+ "learning_rate": 0.0006,
+ "loss": 3.7124147415161133,
+ "step": 2497
+ },
+ {
+ "epoch": 34.69899519440804,
+ "grad_norm": 0.23828288912773132,
+ "learning_rate": 0.0006,
+ "loss": 3.7181267738342285,
+ "step": 2498
+ },
+ {
+ "epoch": 34.7129750982962,
+ "grad_norm": 0.21776588261127472,
+ "learning_rate": 0.0006,
+ "loss": 3.6811792850494385,
+ "step": 2499
+ },
+ {
+ "epoch": 34.72695500218436,
+ "grad_norm": 0.2318469136953354,
+ "learning_rate": 0.0006,
+ "loss": 3.698467254638672,
+ "step": 2500
+ },
+ {
+ "epoch": 34.74093490607252,
+ "grad_norm": 0.22341546416282654,
+ "learning_rate": 0.0006,
+ "loss": 3.7406411170959473,
+ "step": 2501
+ },
+ {
+ "epoch": 34.75491480996068,
+ "grad_norm": 0.20676901936531067,
+ "learning_rate": 0.0006,
+ "loss": 3.6914243698120117,
+ "step": 2502
+ },
+ {
+ "epoch": 34.768894713848844,
+ "grad_norm": 0.20459024608135223,
+ "learning_rate": 0.0006,
+ "loss": 3.713369607925415,
+ "step": 2503
+ },
+ {
+ "epoch": 34.782874617737,
+ "grad_norm": 0.22369320690631866,
+ "learning_rate": 0.0006,
+ "loss": 3.697587490081787,
+ "step": 2504
+ },
+ {
+ "epoch": 34.796854521625164,
+ "grad_norm": 0.2393338829278946,
+ "learning_rate": 0.0006,
+ "loss": 3.7171854972839355,
+ "step": 2505
+ },
+ {
+ "epoch": 34.81083442551333,
+ "grad_norm": 0.23756961524486542,
+ "learning_rate": 0.0006,
+ "loss": 3.6969614028930664,
+ "step": 2506
+ },
+ {
+ "epoch": 34.824814329401484,
+ "grad_norm": 0.22761376202106476,
+ "learning_rate": 0.0006,
+ "loss": 3.722501754760742,
+ "step": 2507
+ },
+ {
+ "epoch": 34.83879423328965,
+ "grad_norm": 0.23564888536930084,
+ "learning_rate": 0.0006,
+ "loss": 3.714003086090088,
+ "step": 2508
+ },
+ {
+ "epoch": 34.8527741371778,
+ "grad_norm": 0.22197313606739044,
+ "learning_rate": 0.0006,
+ "loss": 3.7107110023498535,
+ "step": 2509
+ },
+ {
+ "epoch": 34.86675404106597,
+ "grad_norm": 0.20199328660964966,
+ "learning_rate": 0.0006,
+ "loss": 3.7167551517486572,
+ "step": 2510
+ },
+ {
+ "epoch": 34.88073394495413,
+ "grad_norm": 0.19569700956344604,
+ "learning_rate": 0.0006,
+ "loss": 3.679098129272461,
+ "step": 2511
+ },
+ {
+ "epoch": 34.89471384884229,
+ "grad_norm": 0.21320141851902008,
+ "learning_rate": 0.0006,
+ "loss": 3.733187675476074,
+ "step": 2512
+ },
+ {
+ "epoch": 34.90869375273045,
+ "grad_norm": 0.20074625313282013,
+ "learning_rate": 0.0006,
+ "loss": 3.713339328765869,
+ "step": 2513
+ },
+ {
+ "epoch": 34.92267365661861,
+ "grad_norm": 0.20249252021312714,
+ "learning_rate": 0.0006,
+ "loss": 3.680785655975342,
+ "step": 2514
+ },
+ {
+ "epoch": 34.93665356050677,
+ "grad_norm": 0.22165577113628387,
+ "learning_rate": 0.0006,
+ "loss": 3.696131706237793,
+ "step": 2515
+ },
+ {
+ "epoch": 34.95063346439493,
+ "grad_norm": 0.20769749581813812,
+ "learning_rate": 0.0006,
+ "loss": 3.6910316944122314,
+ "step": 2516
+ },
+ {
+ "epoch": 34.964613368283096,
+ "grad_norm": 0.20857223868370056,
+ "learning_rate": 0.0006,
+ "loss": 3.7327451705932617,
+ "step": 2517
+ },
+ {
+ "epoch": 34.97859327217125,
+ "grad_norm": 0.19155766069889069,
+ "learning_rate": 0.0006,
+ "loss": 3.705609083175659,
+ "step": 2518
+ },
+ {
+ "epoch": 34.992573176059416,
+ "grad_norm": 0.17890529334545135,
+ "learning_rate": 0.0006,
+ "loss": 3.6844797134399414,
+ "step": 2519
+ },
+ {
+ "epoch": 35.0,
+ "grad_norm": 0.2053528130054474,
+ "learning_rate": 0.0006,
+ "loss": 3.6942501068115234,
+ "step": 2520
+ },
+ {
+ "epoch": 35.0,
+ "eval_loss": 3.998469591140747,
+ "eval_runtime": 43.9147,
+ "eval_samples_per_second": 55.608,
+ "eval_steps_per_second": 3.484,
+ "step": 2520
+ },
+ {
+ "epoch": 35.01397990388816,
+ "grad_norm": 0.2288869470357895,
+ "learning_rate": 0.0006,
+ "loss": 3.6966426372528076,
+ "step": 2521
+ },
+ {
+ "epoch": 35.02795980777632,
+ "grad_norm": 0.25702035427093506,
+ "learning_rate": 0.0006,
+ "loss": 3.6622562408447266,
+ "step": 2522
+ },
+ {
+ "epoch": 35.04193971166448,
+ "grad_norm": 0.254422128200531,
+ "learning_rate": 0.0006,
+ "loss": 3.690046548843384,
+ "step": 2523
+ },
+ {
+ "epoch": 35.05591961555265,
+ "grad_norm": 0.24177077412605286,
+ "learning_rate": 0.0006,
+ "loss": 3.685335874557495,
+ "step": 2524
+ },
+ {
+ "epoch": 35.0698995194408,
+ "grad_norm": 0.23959586024284363,
+ "learning_rate": 0.0006,
+ "loss": 3.6534650325775146,
+ "step": 2525
+ },
+ {
+ "epoch": 35.083879423328966,
+ "grad_norm": 0.23474839329719543,
+ "learning_rate": 0.0006,
+ "loss": 3.7092814445495605,
+ "step": 2526
+ },
+ {
+ "epoch": 35.09785932721712,
+ "grad_norm": 0.23240867257118225,
+ "learning_rate": 0.0006,
+ "loss": 3.6819097995758057,
+ "step": 2527
+ },
+ {
+ "epoch": 35.111839231105286,
+ "grad_norm": 0.26267048716545105,
+ "learning_rate": 0.0006,
+ "loss": 3.6566696166992188,
+ "step": 2528
+ },
+ {
+ "epoch": 35.12581913499345,
+ "grad_norm": 0.27070754766464233,
+ "learning_rate": 0.0006,
+ "loss": 3.676304340362549,
+ "step": 2529
+ },
+ {
+ "epoch": 35.139799038881605,
+ "grad_norm": 0.25297826528549194,
+ "learning_rate": 0.0006,
+ "loss": 3.65259051322937,
+ "step": 2530
+ },
+ {
+ "epoch": 35.15377894276977,
+ "grad_norm": 0.22776272892951965,
+ "learning_rate": 0.0006,
+ "loss": 3.6813838481903076,
+ "step": 2531
+ },
+ {
+ "epoch": 35.16775884665793,
+ "grad_norm": 0.2288261204957962,
+ "learning_rate": 0.0006,
+ "loss": 3.6916379928588867,
+ "step": 2532
+ },
+ {
+ "epoch": 35.18173875054609,
+ "grad_norm": 0.20445892214775085,
+ "learning_rate": 0.0006,
+ "loss": 3.6550145149230957,
+ "step": 2533
+ },
+ {
+ "epoch": 35.19571865443425,
+ "grad_norm": 0.20298904180526733,
+ "learning_rate": 0.0006,
+ "loss": 3.704042434692383,
+ "step": 2534
+ },
+ {
+ "epoch": 35.20969855832241,
+ "grad_norm": 0.2264423668384552,
+ "learning_rate": 0.0006,
+ "loss": 3.646308183670044,
+ "step": 2535
+ },
+ {
+ "epoch": 35.22367846221057,
+ "grad_norm": 0.21537378430366516,
+ "learning_rate": 0.0006,
+ "loss": 3.686048984527588,
+ "step": 2536
+ },
+ {
+ "epoch": 35.237658366098735,
+ "grad_norm": 0.19820059835910797,
+ "learning_rate": 0.0006,
+ "loss": 3.6993050575256348,
+ "step": 2537
+ },
+ {
+ "epoch": 35.25163826998689,
+ "grad_norm": 0.19485290348529816,
+ "learning_rate": 0.0006,
+ "loss": 3.6507070064544678,
+ "step": 2538
+ },
+ {
+ "epoch": 35.265618173875055,
+ "grad_norm": 0.21234364807605743,
+ "learning_rate": 0.0006,
+ "loss": 3.6913719177246094,
+ "step": 2539
+ },
+ {
+ "epoch": 35.27959807776322,
+ "grad_norm": 0.19834300875663757,
+ "learning_rate": 0.0006,
+ "loss": 3.6793041229248047,
+ "step": 2540
+ },
+ {
+ "epoch": 35.293577981651374,
+ "grad_norm": 0.1969013512134552,
+ "learning_rate": 0.0006,
+ "loss": 3.7063517570495605,
+ "step": 2541
+ },
+ {
+ "epoch": 35.30755788553954,
+ "grad_norm": 0.196136936545372,
+ "learning_rate": 0.0006,
+ "loss": 3.679825782775879,
+ "step": 2542
+ },
+ {
+ "epoch": 35.3215377894277,
+ "grad_norm": 0.20465479791164398,
+ "learning_rate": 0.0006,
+ "loss": 3.698906421661377,
+ "step": 2543
+ },
+ {
+ "epoch": 35.33551769331586,
+ "grad_norm": 0.204293355345726,
+ "learning_rate": 0.0006,
+ "loss": 3.728549003601074,
+ "step": 2544
+ },
+ {
+ "epoch": 35.34949759720402,
+ "grad_norm": 0.18861903250217438,
+ "learning_rate": 0.0006,
+ "loss": 3.687018632888794,
+ "step": 2545
+ },
+ {
+ "epoch": 35.36347750109218,
+ "grad_norm": 0.19066226482391357,
+ "learning_rate": 0.0006,
+ "loss": 3.667919158935547,
+ "step": 2546
+ },
+ {
+ "epoch": 35.37745740498034,
+ "grad_norm": 0.19985736906528473,
+ "learning_rate": 0.0006,
+ "loss": 3.6697773933410645,
+ "step": 2547
+ },
+ {
+ "epoch": 35.391437308868504,
+ "grad_norm": 0.20669348537921906,
+ "learning_rate": 0.0006,
+ "loss": 3.6718077659606934,
+ "step": 2548
+ },
+ {
+ "epoch": 35.40541721275666,
+ "grad_norm": 0.22164477407932281,
+ "learning_rate": 0.0006,
+ "loss": 3.692106246948242,
+ "step": 2549
+ },
+ {
+ "epoch": 35.419397116644824,
+ "grad_norm": 0.20884688198566437,
+ "learning_rate": 0.0006,
+ "loss": 3.714324712753296,
+ "step": 2550
+ },
+ {
+ "epoch": 35.43337702053299,
+ "grad_norm": 0.21811005473136902,
+ "learning_rate": 0.0006,
+ "loss": 3.678694725036621,
+ "step": 2551
+ },
+ {
+ "epoch": 35.44735692442114,
+ "grad_norm": 0.2427632063627243,
+ "learning_rate": 0.0006,
+ "loss": 3.6584935188293457,
+ "step": 2552
+ },
+ {
+ "epoch": 35.46133682830931,
+ "grad_norm": 0.2584928572177887,
+ "learning_rate": 0.0006,
+ "loss": 3.694148063659668,
+ "step": 2553
+ },
+ {
+ "epoch": 35.47531673219746,
+ "grad_norm": 0.2594548761844635,
+ "learning_rate": 0.0006,
+ "loss": 3.690629005432129,
+ "step": 2554
+ },
+ {
+ "epoch": 35.489296636085626,
+ "grad_norm": 0.2521844208240509,
+ "learning_rate": 0.0006,
+ "loss": 3.6949915885925293,
+ "step": 2555
+ },
+ {
+ "epoch": 35.50327653997379,
+ "grad_norm": 0.2284533679485321,
+ "learning_rate": 0.0006,
+ "loss": 3.6822848320007324,
+ "step": 2556
+ },
+ {
+ "epoch": 35.517256443861946,
+ "grad_norm": 0.2350241094827652,
+ "learning_rate": 0.0006,
+ "loss": 3.6841659545898438,
+ "step": 2557
+ },
+ {
+ "epoch": 35.53123634775011,
+ "grad_norm": 0.22496885061264038,
+ "learning_rate": 0.0006,
+ "loss": 3.676447629928589,
+ "step": 2558
+ },
+ {
+ "epoch": 35.54521625163827,
+ "grad_norm": 0.24326276779174805,
+ "learning_rate": 0.0006,
+ "loss": 3.681678533554077,
+ "step": 2559
+ },
+ {
+ "epoch": 35.55919615552643,
+ "grad_norm": 0.26298362016677856,
+ "learning_rate": 0.0006,
+ "loss": 3.6877617835998535,
+ "step": 2560
+ },
+ {
+ "epoch": 35.57317605941459,
+ "grad_norm": 0.2507239282131195,
+ "learning_rate": 0.0006,
+ "loss": 3.7089176177978516,
+ "step": 2561
+ },
+ {
+ "epoch": 35.58715596330275,
+ "grad_norm": 0.2276458442211151,
+ "learning_rate": 0.0006,
+ "loss": 3.705570936203003,
+ "step": 2562
+ },
+ {
+ "epoch": 35.60113586719091,
+ "grad_norm": 0.23317085206508636,
+ "learning_rate": 0.0006,
+ "loss": 3.6772396564483643,
+ "step": 2563
+ },
+ {
+ "epoch": 35.615115771079076,
+ "grad_norm": 0.23301710188388824,
+ "learning_rate": 0.0006,
+ "loss": 3.694855213165283,
+ "step": 2564
+ },
+ {
+ "epoch": 35.62909567496723,
+ "grad_norm": 0.2170179933309555,
+ "learning_rate": 0.0006,
+ "loss": 3.7095537185668945,
+ "step": 2565
+ },
+ {
+ "epoch": 35.643075578855395,
+ "grad_norm": 0.21211965382099152,
+ "learning_rate": 0.0006,
+ "loss": 3.670109272003174,
+ "step": 2566
+ },
+ {
+ "epoch": 35.65705548274356,
+ "grad_norm": 0.21052585542201996,
+ "learning_rate": 0.0006,
+ "loss": 3.6576027870178223,
+ "step": 2567
+ },
+ {
+ "epoch": 35.671035386631715,
+ "grad_norm": 0.21556039154529572,
+ "learning_rate": 0.0006,
+ "loss": 3.6870639324188232,
+ "step": 2568
+ },
+ {
+ "epoch": 35.68501529051988,
+ "grad_norm": 0.2246469408273697,
+ "learning_rate": 0.0006,
+ "loss": 3.675652503967285,
+ "step": 2569
+ },
+ {
+ "epoch": 35.69899519440804,
+ "grad_norm": 0.21891754865646362,
+ "learning_rate": 0.0006,
+ "loss": 3.692298650741577,
+ "step": 2570
+ },
+ {
+ "epoch": 35.7129750982962,
+ "grad_norm": 0.18774104118347168,
+ "learning_rate": 0.0006,
+ "loss": 3.681035041809082,
+ "step": 2571
+ },
+ {
+ "epoch": 35.72695500218436,
+ "grad_norm": 0.19461573660373688,
+ "learning_rate": 0.0006,
+ "loss": 3.7007932662963867,
+ "step": 2572
+ },
+ {
+ "epoch": 35.74093490607252,
+ "grad_norm": 0.25579094886779785,
+ "learning_rate": 0.0006,
+ "loss": 3.724409580230713,
+ "step": 2573
+ },
+ {
+ "epoch": 35.75491480996068,
+ "grad_norm": 0.27635645866394043,
+ "learning_rate": 0.0006,
+ "loss": 3.68107271194458,
+ "step": 2574
+ },
+ {
+ "epoch": 35.768894713848844,
+ "grad_norm": 0.2233380675315857,
+ "learning_rate": 0.0006,
+ "loss": 3.7123913764953613,
+ "step": 2575
+ },
+ {
+ "epoch": 35.782874617737,
+ "grad_norm": 0.19383835792541504,
+ "learning_rate": 0.0006,
+ "loss": 3.6948328018188477,
+ "step": 2576
+ },
+ {
+ "epoch": 35.796854521625164,
+ "grad_norm": 0.18138426542282104,
+ "learning_rate": 0.0006,
+ "loss": 3.6837103366851807,
+ "step": 2577
+ },
+ {
+ "epoch": 35.81083442551333,
+ "grad_norm": 0.18680135905742645,
+ "learning_rate": 0.0006,
+ "loss": 3.7106502056121826,
+ "step": 2578
+ },
+ {
+ "epoch": 35.824814329401484,
+ "grad_norm": 0.19226312637329102,
+ "learning_rate": 0.0006,
+ "loss": 3.69488787651062,
+ "step": 2579
+ },
+ {
+ "epoch": 35.83879423328965,
+ "grad_norm": 0.19224657118320465,
+ "learning_rate": 0.0006,
+ "loss": 3.7103662490844727,
+ "step": 2580
+ },
+ {
+ "epoch": 35.8527741371778,
+ "grad_norm": 0.18991880118846893,
+ "learning_rate": 0.0006,
+ "loss": 3.7154245376586914,
+ "step": 2581
+ },
+ {
+ "epoch": 35.86675404106597,
+ "grad_norm": 0.2036849409341812,
+ "learning_rate": 0.0006,
+ "loss": 3.723738193511963,
+ "step": 2582
+ },
+ {
+ "epoch": 35.88073394495413,
+ "grad_norm": 0.24730375409126282,
+ "learning_rate": 0.0006,
+ "loss": 3.6830549240112305,
+ "step": 2583
+ },
+ {
+ "epoch": 35.89471384884229,
+ "grad_norm": 0.26552343368530273,
+ "learning_rate": 0.0006,
+ "loss": 3.7025017738342285,
+ "step": 2584
+ },
+ {
+ "epoch": 35.90869375273045,
+ "grad_norm": 0.2621893286705017,
+ "learning_rate": 0.0006,
+ "loss": 3.697399854660034,
+ "step": 2585
+ },
+ {
+ "epoch": 35.92267365661861,
+ "grad_norm": 0.2320089191198349,
+ "learning_rate": 0.0006,
+ "loss": 3.722207546234131,
+ "step": 2586
+ },
+ {
+ "epoch": 35.93665356050677,
+ "grad_norm": 0.1848745346069336,
+ "learning_rate": 0.0006,
+ "loss": 3.711249351501465,
+ "step": 2587
+ },
+ {
+ "epoch": 35.95063346439493,
+ "grad_norm": 0.24218113720417023,
+ "learning_rate": 0.0006,
+ "loss": 3.698894500732422,
+ "step": 2588
+ },
+ {
+ "epoch": 35.964613368283096,
+ "grad_norm": 0.29338452219963074,
+ "learning_rate": 0.0006,
+ "loss": 3.7470521926879883,
+ "step": 2589
+ },
+ {
+ "epoch": 35.97859327217125,
+ "grad_norm": 0.2804136276245117,
+ "learning_rate": 0.0006,
+ "loss": 3.750649929046631,
+ "step": 2590
+ },
+ {
+ "epoch": 35.992573176059416,
+ "grad_norm": 0.26404470205307007,
+ "learning_rate": 0.0006,
+ "loss": 3.6995797157287598,
+ "step": 2591
+ },
+ {
+ "epoch": 36.0,
+ "grad_norm": 0.27446141839027405,
+ "learning_rate": 0.0006,
+ "loss": 3.715768814086914,
+ "step": 2592
+ },
+ {
+ "epoch": 36.0,
+ "eval_loss": 4.007599830627441,
+ "eval_runtime": 44.0149,
+ "eval_samples_per_second": 55.481,
+ "eval_steps_per_second": 3.476,
+ "step": 2592
+ },
+ {
+ "epoch": 36.01397990388816,
+ "grad_norm": 0.2365594208240509,
+ "learning_rate": 0.0006,
+ "loss": 3.6529457569122314,
+ "step": 2593
+ },
+ {
+ "epoch": 36.02795980777632,
+ "grad_norm": 0.24824099242687225,
+ "learning_rate": 0.0006,
+ "loss": 3.6703386306762695,
+ "step": 2594
+ },
+ {
+ "epoch": 36.04193971166448,
+ "grad_norm": 0.26802200078964233,
+ "learning_rate": 0.0006,
+ "loss": 3.688307762145996,
+ "step": 2595
+ },
+ {
+ "epoch": 36.05591961555265,
+ "grad_norm": 0.2552911341190338,
+ "learning_rate": 0.0006,
+ "loss": 3.681797981262207,
+ "step": 2596
+ },
+ {
+ "epoch": 36.0698995194408,
+ "grad_norm": 0.254991739988327,
+ "learning_rate": 0.0006,
+ "loss": 3.644087791442871,
+ "step": 2597
+ },
+ {
+ "epoch": 36.083879423328966,
+ "grad_norm": 0.2496735155582428,
+ "learning_rate": 0.0006,
+ "loss": 3.644047737121582,
+ "step": 2598
+ },
+ {
+ "epoch": 36.09785932721712,
+ "grad_norm": 0.23637443780899048,
+ "learning_rate": 0.0006,
+ "loss": 3.684454917907715,
+ "step": 2599
+ },
+ {
+ "epoch": 36.111839231105286,
+ "grad_norm": 0.22065003216266632,
+ "learning_rate": 0.0006,
+ "loss": 3.661752700805664,
+ "step": 2600
+ },
+ {
+ "epoch": 36.12581913499345,
+ "grad_norm": 0.2292395532131195,
+ "learning_rate": 0.0006,
+ "loss": 3.6709558963775635,
+ "step": 2601
+ },
+ {
+ "epoch": 36.139799038881605,
+ "grad_norm": 0.22295089066028595,
+ "learning_rate": 0.0006,
+ "loss": 3.642230987548828,
+ "step": 2602
+ },
+ {
+ "epoch": 36.15377894276977,
+ "grad_norm": 0.2220531553030014,
+ "learning_rate": 0.0006,
+ "loss": 3.653268814086914,
+ "step": 2603
+ },
+ {
+ "epoch": 36.16775884665793,
+ "grad_norm": 0.21605174243450165,
+ "learning_rate": 0.0006,
+ "loss": 3.6791329383850098,
+ "step": 2604
+ },
+ {
+ "epoch": 36.18173875054609,
+ "grad_norm": 0.20932699739933014,
+ "learning_rate": 0.0006,
+ "loss": 3.6496856212615967,
+ "step": 2605
+ },
+ {
+ "epoch": 36.19571865443425,
+ "grad_norm": 0.20941385626792908,
+ "learning_rate": 0.0006,
+ "loss": 3.6445729732513428,
+ "step": 2606
+ },
+ {
+ "epoch": 36.20969855832241,
+ "grad_norm": 0.1987197995185852,
+ "learning_rate": 0.0006,
+ "loss": 3.6481809616088867,
+ "step": 2607
+ },
+ {
+ "epoch": 36.22367846221057,
+ "grad_norm": 0.19054439663887024,
+ "learning_rate": 0.0006,
+ "loss": 3.66894268989563,
+ "step": 2608
+ },
+ {
+ "epoch": 36.237658366098735,
+ "grad_norm": 0.19940806925296783,
+ "learning_rate": 0.0006,
+ "loss": 3.7123427391052246,
+ "step": 2609
+ },
+ {
+ "epoch": 36.25163826998689,
+ "grad_norm": 0.22157685458660126,
+ "learning_rate": 0.0006,
+ "loss": 3.6707541942596436,
+ "step": 2610
+ },
+ {
+ "epoch": 36.265618173875055,
+ "grad_norm": 0.2362316995859146,
+ "learning_rate": 0.0006,
+ "loss": 3.6906795501708984,
+ "step": 2611
+ },
+ {
+ "epoch": 36.27959807776322,
+ "grad_norm": 0.24560341238975525,
+ "learning_rate": 0.0006,
+ "loss": 3.668379783630371,
+ "step": 2612
+ },
+ {
+ "epoch": 36.293577981651374,
+ "grad_norm": 0.22814054787158966,
+ "learning_rate": 0.0006,
+ "loss": 3.665527820587158,
+ "step": 2613
+ },
+ {
+ "epoch": 36.30755788553954,
+ "grad_norm": 0.2156696617603302,
+ "learning_rate": 0.0006,
+ "loss": 3.673835277557373,
+ "step": 2614
+ },
+ {
+ "epoch": 36.3215377894277,
+ "grad_norm": 0.20152772963047028,
+ "learning_rate": 0.0006,
+ "loss": 3.6512670516967773,
+ "step": 2615
+ },
+ {
+ "epoch": 36.33551769331586,
+ "grad_norm": 0.22466860711574554,
+ "learning_rate": 0.0006,
+ "loss": 3.6877706050872803,
+ "step": 2616
+ },
+ {
+ "epoch": 36.34949759720402,
+ "grad_norm": 0.21688112616539001,
+ "learning_rate": 0.0006,
+ "loss": 3.6895859241485596,
+ "step": 2617
+ },
+ {
+ "epoch": 36.36347750109218,
+ "grad_norm": 0.19836577773094177,
+ "learning_rate": 0.0006,
+ "loss": 3.6658992767333984,
+ "step": 2618
+ },
+ {
+ "epoch": 36.37745740498034,
+ "grad_norm": 0.1995069831609726,
+ "learning_rate": 0.0006,
+ "loss": 3.677614450454712,
+ "step": 2619
+ },
+ {
+ "epoch": 36.391437308868504,
+ "grad_norm": 0.21234792470932007,
+ "learning_rate": 0.0006,
+ "loss": 3.6971967220306396,
+ "step": 2620
+ },
+ {
+ "epoch": 36.40541721275666,
+ "grad_norm": 0.20898285508155823,
+ "learning_rate": 0.0006,
+ "loss": 3.6936516761779785,
+ "step": 2621
+ },
+ {
+ "epoch": 36.419397116644824,
+ "grad_norm": 0.2115008533000946,
+ "learning_rate": 0.0006,
+ "loss": 3.6674065589904785,
+ "step": 2622
+ },
+ {
+ "epoch": 36.43337702053299,
+ "grad_norm": 0.2041143774986267,
+ "learning_rate": 0.0006,
+ "loss": 3.6455483436584473,
+ "step": 2623
+ },
+ {
+ "epoch": 36.44735692442114,
+ "grad_norm": 0.1966932713985443,
+ "learning_rate": 0.0006,
+ "loss": 3.6938109397888184,
+ "step": 2624
+ },
+ {
+ "epoch": 36.46133682830931,
+ "grad_norm": 0.20062223076820374,
+ "learning_rate": 0.0006,
+ "loss": 3.6775765419006348,
+ "step": 2625
+ },
+ {
+ "epoch": 36.47531673219746,
+ "grad_norm": 0.20610390603542328,
+ "learning_rate": 0.0006,
+ "loss": 3.6835384368896484,
+ "step": 2626
+ },
+ {
+ "epoch": 36.489296636085626,
+ "grad_norm": 0.20481473207473755,
+ "learning_rate": 0.0006,
+ "loss": 3.6794047355651855,
+ "step": 2627
+ },
+ {
+ "epoch": 36.50327653997379,
+ "grad_norm": 0.18964581191539764,
+ "learning_rate": 0.0006,
+ "loss": 3.7035841941833496,
+ "step": 2628
+ },
+ {
+ "epoch": 36.517256443861946,
+ "grad_norm": 0.2029343545436859,
+ "learning_rate": 0.0006,
+ "loss": 3.6667590141296387,
+ "step": 2629
+ },
+ {
+ "epoch": 36.53123634775011,
+ "grad_norm": 0.23656968772411346,
+ "learning_rate": 0.0006,
+ "loss": 3.6974546909332275,
+ "step": 2630
+ },
+ {
+ "epoch": 36.54521625163827,
+ "grad_norm": 0.23401431739330292,
+ "learning_rate": 0.0006,
+ "loss": 3.668936252593994,
+ "step": 2631
+ },
+ {
+ "epoch": 36.55919615552643,
+ "grad_norm": 0.22258102893829346,
+ "learning_rate": 0.0006,
+ "loss": 3.667977809906006,
+ "step": 2632
+ },
+ {
+ "epoch": 36.57317605941459,
+ "grad_norm": 0.20849554240703583,
+ "learning_rate": 0.0006,
+ "loss": 3.6674845218658447,
+ "step": 2633
+ },
+ {
+ "epoch": 36.58715596330275,
+ "grad_norm": 0.20684309303760529,
+ "learning_rate": 0.0006,
+ "loss": 3.6828644275665283,
+ "step": 2634
+ },
+ {
+ "epoch": 36.60113586719091,
+ "grad_norm": 0.19114233553409576,
+ "learning_rate": 0.0006,
+ "loss": 3.7084832191467285,
+ "step": 2635
+ },
+ {
+ "epoch": 36.615115771079076,
+ "grad_norm": 0.20382429659366608,
+ "learning_rate": 0.0006,
+ "loss": 3.68354868888855,
+ "step": 2636
+ },
+ {
+ "epoch": 36.62909567496723,
+ "grad_norm": 0.22526590526103973,
+ "learning_rate": 0.0006,
+ "loss": 3.684112310409546,
+ "step": 2637
+ },
+ {
+ "epoch": 36.643075578855395,
+ "grad_norm": 0.20735391974449158,
+ "learning_rate": 0.0006,
+ "loss": 3.67702054977417,
+ "step": 2638
+ },
+ {
+ "epoch": 36.65705548274356,
+ "grad_norm": 0.18549653887748718,
+ "learning_rate": 0.0006,
+ "loss": 3.6840810775756836,
+ "step": 2639
+ },
+ {
+ "epoch": 36.671035386631715,
+ "grad_norm": 0.1805262714624405,
+ "learning_rate": 0.0006,
+ "loss": 3.688119411468506,
+ "step": 2640
+ },
+ {
+ "epoch": 36.68501529051988,
+ "grad_norm": 0.17545704543590546,
+ "learning_rate": 0.0006,
+ "loss": 3.6477861404418945,
+ "step": 2641
+ },
+ {
+ "epoch": 36.69899519440804,
+ "grad_norm": 0.1772221326828003,
+ "learning_rate": 0.0006,
+ "loss": 3.6935806274414062,
+ "step": 2642
+ },
+ {
+ "epoch": 36.7129750982962,
+ "grad_norm": 0.18701671063899994,
+ "learning_rate": 0.0006,
+ "loss": 3.6820428371429443,
+ "step": 2643
+ },
+ {
+ "epoch": 36.72695500218436,
+ "grad_norm": 0.2057863473892212,
+ "learning_rate": 0.0006,
+ "loss": 3.669762134552002,
+ "step": 2644
+ },
+ {
+ "epoch": 36.74093490607252,
+ "grad_norm": 0.2565848231315613,
+ "learning_rate": 0.0006,
+ "loss": 3.717599391937256,
+ "step": 2645
+ },
+ {
+ "epoch": 36.75491480996068,
+ "grad_norm": 0.24362123012542725,
+ "learning_rate": 0.0006,
+ "loss": 3.671900987625122,
+ "step": 2646
+ },
+ {
+ "epoch": 36.768894713848844,
+ "grad_norm": 0.19606009125709534,
+ "learning_rate": 0.0006,
+ "loss": 3.6782546043395996,
+ "step": 2647
+ },
+ {
+ "epoch": 36.782874617737,
+ "grad_norm": 0.1948748379945755,
+ "learning_rate": 0.0006,
+ "loss": 3.6823501586914062,
+ "step": 2648
+ },
+ {
+ "epoch": 36.796854521625164,
+ "grad_norm": 0.22289852797985077,
+ "learning_rate": 0.0006,
+ "loss": 3.693469762802124,
+ "step": 2649
+ },
+ {
+ "epoch": 36.81083442551333,
+ "grad_norm": 0.24751701951026917,
+ "learning_rate": 0.0006,
+ "loss": 3.700678825378418,
+ "step": 2650
+ },
+ {
+ "epoch": 36.824814329401484,
+ "grad_norm": 0.28663966059684753,
+ "learning_rate": 0.0006,
+ "loss": 3.6960878372192383,
+ "step": 2651
+ },
+ {
+ "epoch": 36.83879423328965,
+ "grad_norm": 0.3288552165031433,
+ "learning_rate": 0.0006,
+ "loss": 3.7255043983459473,
+ "step": 2652
+ },
+ {
+ "epoch": 36.8527741371778,
+ "grad_norm": 0.3555443286895752,
+ "learning_rate": 0.0006,
+ "loss": 3.725308418273926,
+ "step": 2653
+ },
+ {
+ "epoch": 36.86675404106597,
+ "grad_norm": 0.3204147219657898,
+ "learning_rate": 0.0006,
+ "loss": 3.7137985229492188,
+ "step": 2654
+ },
+ {
+ "epoch": 36.88073394495413,
+ "grad_norm": 0.2944706976413727,
+ "learning_rate": 0.0006,
+ "loss": 3.7032840251922607,
+ "step": 2655
+ },
+ {
+ "epoch": 36.89471384884229,
+ "grad_norm": 0.2845679223537445,
+ "learning_rate": 0.0006,
+ "loss": 3.6840004920959473,
+ "step": 2656
+ },
+ {
+ "epoch": 36.90869375273045,
+ "grad_norm": 0.2815704047679901,
+ "learning_rate": 0.0006,
+ "loss": 3.6958417892456055,
+ "step": 2657
+ },
+ {
+ "epoch": 36.92267365661861,
+ "grad_norm": 0.2733481228351593,
+ "learning_rate": 0.0006,
+ "loss": 3.677690029144287,
+ "step": 2658
+ },
+ {
+ "epoch": 36.93665356050677,
+ "grad_norm": 0.29572054743766785,
+ "learning_rate": 0.0006,
+ "loss": 3.6983718872070312,
+ "step": 2659
+ },
+ {
+ "epoch": 36.95063346439493,
+ "grad_norm": 0.2487923800945282,
+ "learning_rate": 0.0006,
+ "loss": 3.7041163444519043,
+ "step": 2660
+ },
+ {
+ "epoch": 36.964613368283096,
+ "grad_norm": 0.2541966438293457,
+ "learning_rate": 0.0006,
+ "loss": 3.7038979530334473,
+ "step": 2661
+ },
+ {
+ "epoch": 36.97859327217125,
+ "grad_norm": 0.2441335767507553,
+ "learning_rate": 0.0006,
+ "loss": 3.717966079711914,
+ "step": 2662
+ },
+ {
+ "epoch": 36.992573176059416,
+ "grad_norm": 0.2304554283618927,
+ "learning_rate": 0.0006,
+ "loss": 3.671098232269287,
+ "step": 2663
+ },
+ {
+ "epoch": 37.0,
+ "grad_norm": 0.2346591204404831,
+ "learning_rate": 0.0006,
+ "loss": 3.680298089981079,
+ "step": 2664
+ },
+ {
+ "epoch": 37.0,
+ "eval_loss": 3.9944777488708496,
+ "eval_runtime": 43.9862,
+ "eval_samples_per_second": 55.517,
+ "eval_steps_per_second": 3.478,
+ "step": 2664
+ },
+ {
+ "epoch": 37.01397990388816,
+ "grad_norm": 0.22970618307590485,
+ "learning_rate": 0.0006,
+ "loss": 3.6835923194885254,
+ "step": 2665
+ },
+ {
+ "epoch": 37.02795980777632,
+ "grad_norm": 0.25463759899139404,
+ "learning_rate": 0.0006,
+ "loss": 3.658339023590088,
+ "step": 2666
+ },
+ {
+ "epoch": 37.04193971166448,
+ "grad_norm": 0.2520577311515808,
+ "learning_rate": 0.0006,
+ "loss": 3.6275506019592285,
+ "step": 2667
+ },
+ {
+ "epoch": 37.05591961555265,
+ "grad_norm": 0.22698813676834106,
+ "learning_rate": 0.0006,
+ "loss": 3.65043568611145,
+ "step": 2668
+ },
+ {
+ "epoch": 37.0698995194408,
+ "grad_norm": 0.21133972704410553,
+ "learning_rate": 0.0006,
+ "loss": 3.6262078285217285,
+ "step": 2669
+ },
+ {
+ "epoch": 37.083879423328966,
+ "grad_norm": 0.21940460801124573,
+ "learning_rate": 0.0006,
+ "loss": 3.6709489822387695,
+ "step": 2670
+ },
+ {
+ "epoch": 37.09785932721712,
+ "grad_norm": 0.21897517144680023,
+ "learning_rate": 0.0006,
+ "loss": 3.6621508598327637,
+ "step": 2671
+ },
+ {
+ "epoch": 37.111839231105286,
+ "grad_norm": 0.2270219624042511,
+ "learning_rate": 0.0006,
+ "loss": 3.6334924697875977,
+ "step": 2672
+ },
+ {
+ "epoch": 37.12581913499345,
+ "grad_norm": 0.22082042694091797,
+ "learning_rate": 0.0006,
+ "loss": 3.662209987640381,
+ "step": 2673
+ },
+ {
+ "epoch": 37.139799038881605,
+ "grad_norm": 0.19931960105895996,
+ "learning_rate": 0.0006,
+ "loss": 3.6655359268188477,
+ "step": 2674
+ },
+ {
+ "epoch": 37.15377894276977,
+ "grad_norm": 0.21451307833194733,
+ "learning_rate": 0.0006,
+ "loss": 3.656287670135498,
+ "step": 2675
+ },
+ {
+ "epoch": 37.16775884665793,
+ "grad_norm": 0.2131514698266983,
+ "learning_rate": 0.0006,
+ "loss": 3.635054111480713,
+ "step": 2676
+ },
+ {
+ "epoch": 37.18173875054609,
+ "grad_norm": 0.20425808429718018,
+ "learning_rate": 0.0006,
+ "loss": 3.67653226852417,
+ "step": 2677
+ },
+ {
+ "epoch": 37.19571865443425,
+ "grad_norm": 0.19423379004001617,
+ "learning_rate": 0.0006,
+ "loss": 3.6827316284179688,
+ "step": 2678
+ },
+ {
+ "epoch": 37.20969855832241,
+ "grad_norm": 0.1954883486032486,
+ "learning_rate": 0.0006,
+ "loss": 3.658092498779297,
+ "step": 2679
+ },
+ {
+ "epoch": 37.22367846221057,
+ "grad_norm": 0.21153928339481354,
+ "learning_rate": 0.0006,
+ "loss": 3.6675186157226562,
+ "step": 2680
+ },
+ {
+ "epoch": 37.237658366098735,
+ "grad_norm": 0.2032976895570755,
+ "learning_rate": 0.0006,
+ "loss": 3.6725759506225586,
+ "step": 2681
+ },
+ {
+ "epoch": 37.25163826998689,
+ "grad_norm": 0.19839346408843994,
+ "learning_rate": 0.0006,
+ "loss": 3.660851240158081,
+ "step": 2682
+ },
+ {
+ "epoch": 37.265618173875055,
+ "grad_norm": 0.1884699910879135,
+ "learning_rate": 0.0006,
+ "loss": 3.6653623580932617,
+ "step": 2683
+ },
+ {
+ "epoch": 37.27959807776322,
+ "grad_norm": 0.19558705389499664,
+ "learning_rate": 0.0006,
+ "loss": 3.648016929626465,
+ "step": 2684
+ },
+ {
+ "epoch": 37.293577981651374,
+ "grad_norm": 0.19453682005405426,
+ "learning_rate": 0.0006,
+ "loss": 3.6804773807525635,
+ "step": 2685
+ },
+ {
+ "epoch": 37.30755788553954,
+ "grad_norm": 0.1901177167892456,
+ "learning_rate": 0.0006,
+ "loss": 3.6533353328704834,
+ "step": 2686
+ },
+ {
+ "epoch": 37.3215377894277,
+ "grad_norm": 0.19425596296787262,
+ "learning_rate": 0.0006,
+ "loss": 3.665745735168457,
+ "step": 2687
+ },
+ {
+ "epoch": 37.33551769331586,
+ "grad_norm": 0.17583411931991577,
+ "learning_rate": 0.0006,
+ "loss": 3.679112434387207,
+ "step": 2688
+ },
+ {
+ "epoch": 37.34949759720402,
+ "grad_norm": 0.19667863845825195,
+ "learning_rate": 0.0006,
+ "loss": 3.6650352478027344,
+ "step": 2689
+ },
+ {
+ "epoch": 37.36347750109218,
+ "grad_norm": 0.22803270816802979,
+ "learning_rate": 0.0006,
+ "loss": 3.6658573150634766,
+ "step": 2690
+ },
+ {
+ "epoch": 37.37745740498034,
+ "grad_norm": 0.20589298009872437,
+ "learning_rate": 0.0006,
+ "loss": 3.6587300300598145,
+ "step": 2691
+ },
+ {
+ "epoch": 37.391437308868504,
+ "grad_norm": 0.1946951299905777,
+ "learning_rate": 0.0006,
+ "loss": 3.6515092849731445,
+ "step": 2692
+ },
+ {
+ "epoch": 37.40541721275666,
+ "grad_norm": 0.19029614329338074,
+ "learning_rate": 0.0006,
+ "loss": 3.6383113861083984,
+ "step": 2693
+ },
+ {
+ "epoch": 37.419397116644824,
+ "grad_norm": 0.1944548338651657,
+ "learning_rate": 0.0006,
+ "loss": 3.7017135620117188,
+ "step": 2694
+ },
+ {
+ "epoch": 37.43337702053299,
+ "grad_norm": 0.19482386112213135,
+ "learning_rate": 0.0006,
+ "loss": 3.6791775226593018,
+ "step": 2695
+ },
+ {
+ "epoch": 37.44735692442114,
+ "grad_norm": 0.23276680707931519,
+ "learning_rate": 0.0006,
+ "loss": 3.672245979309082,
+ "step": 2696
+ },
+ {
+ "epoch": 37.46133682830931,
+ "grad_norm": 0.22267542779445648,
+ "learning_rate": 0.0006,
+ "loss": 3.683380365371704,
+ "step": 2697
+ },
+ {
+ "epoch": 37.47531673219746,
+ "grad_norm": 0.1942203938961029,
+ "learning_rate": 0.0006,
+ "loss": 3.6760759353637695,
+ "step": 2698
+ },
+ {
+ "epoch": 37.489296636085626,
+ "grad_norm": 0.21212540566921234,
+ "learning_rate": 0.0006,
+ "loss": 3.660719633102417,
+ "step": 2699
+ },
+ {
+ "epoch": 37.50327653997379,
+ "grad_norm": 0.2365427315235138,
+ "learning_rate": 0.0006,
+ "loss": 3.6727194786071777,
+ "step": 2700
+ },
+ {
+ "epoch": 37.517256443861946,
+ "grad_norm": 0.2379675805568695,
+ "learning_rate": 0.0006,
+ "loss": 3.6691598892211914,
+ "step": 2701
+ },
+ {
+ "epoch": 37.53123634775011,
+ "grad_norm": 0.22142401337623596,
+ "learning_rate": 0.0006,
+ "loss": 3.6882128715515137,
+ "step": 2702
+ },
+ {
+ "epoch": 37.54521625163827,
+ "grad_norm": 0.19993607699871063,
+ "learning_rate": 0.0006,
+ "loss": 3.6651787757873535,
+ "step": 2703
+ },
+ {
+ "epoch": 37.55919615552643,
+ "grad_norm": 0.19934895634651184,
+ "learning_rate": 0.0006,
+ "loss": 3.6680638790130615,
+ "step": 2704
+ },
+ {
+ "epoch": 37.57317605941459,
+ "grad_norm": 0.21202369034290314,
+ "learning_rate": 0.0006,
+ "loss": 3.697615623474121,
+ "step": 2705
+ },
+ {
+ "epoch": 37.58715596330275,
+ "grad_norm": 0.1994577795267105,
+ "learning_rate": 0.0006,
+ "loss": 3.688243865966797,
+ "step": 2706
+ },
+ {
+ "epoch": 37.60113586719091,
+ "grad_norm": 0.20365118980407715,
+ "learning_rate": 0.0006,
+ "loss": 3.6615519523620605,
+ "step": 2707
+ },
+ {
+ "epoch": 37.615115771079076,
+ "grad_norm": 0.22466035187244415,
+ "learning_rate": 0.0006,
+ "loss": 3.703111171722412,
+ "step": 2708
+ },
+ {
+ "epoch": 37.62909567496723,
+ "grad_norm": 0.21140407025814056,
+ "learning_rate": 0.0006,
+ "loss": 3.6744728088378906,
+ "step": 2709
+ },
+ {
+ "epoch": 37.643075578855395,
+ "grad_norm": 0.22220195829868317,
+ "learning_rate": 0.0006,
+ "loss": 3.671501874923706,
+ "step": 2710
+ },
+ {
+ "epoch": 37.65705548274356,
+ "grad_norm": 0.23279480636119843,
+ "learning_rate": 0.0006,
+ "loss": 3.6962859630584717,
+ "step": 2711
+ },
+ {
+ "epoch": 37.671035386631715,
+ "grad_norm": 0.23284408450126648,
+ "learning_rate": 0.0006,
+ "loss": 3.670231342315674,
+ "step": 2712
+ },
+ {
+ "epoch": 37.68501529051988,
+ "grad_norm": 0.21935738623142242,
+ "learning_rate": 0.0006,
+ "loss": 3.6908650398254395,
+ "step": 2713
+ },
+ {
+ "epoch": 37.69899519440804,
+ "grad_norm": 0.2072262167930603,
+ "learning_rate": 0.0006,
+ "loss": 3.7204506397247314,
+ "step": 2714
+ },
+ {
+ "epoch": 37.7129750982962,
+ "grad_norm": 0.22547709941864014,
+ "learning_rate": 0.0006,
+ "loss": 3.6740894317626953,
+ "step": 2715
+ },
+ {
+ "epoch": 37.72695500218436,
+ "grad_norm": 0.2460414469242096,
+ "learning_rate": 0.0006,
+ "loss": 3.6938390731811523,
+ "step": 2716
+ },
+ {
+ "epoch": 37.74093490607252,
+ "grad_norm": 0.24756456911563873,
+ "learning_rate": 0.0006,
+ "loss": 3.692173480987549,
+ "step": 2717
+ },
+ {
+ "epoch": 37.75491480996068,
+ "grad_norm": 0.20149244368076324,
+ "learning_rate": 0.0006,
+ "loss": 3.6677675247192383,
+ "step": 2718
+ },
+ {
+ "epoch": 37.768894713848844,
+ "grad_norm": 0.19834814965724945,
+ "learning_rate": 0.0006,
+ "loss": 3.6717336177825928,
+ "step": 2719
+ },
+ {
+ "epoch": 37.782874617737,
+ "grad_norm": 0.22929978370666504,
+ "learning_rate": 0.0006,
+ "loss": 3.6818275451660156,
+ "step": 2720
+ },
+ {
+ "epoch": 37.796854521625164,
+ "grad_norm": 0.23674434423446655,
+ "learning_rate": 0.0006,
+ "loss": 3.689767360687256,
+ "step": 2721
+ },
+ {
+ "epoch": 37.81083442551333,
+ "grad_norm": 0.22798952460289001,
+ "learning_rate": 0.0006,
+ "loss": 3.6928915977478027,
+ "step": 2722
+ },
+ {
+ "epoch": 37.824814329401484,
+ "grad_norm": 0.2270302027463913,
+ "learning_rate": 0.0006,
+ "loss": 3.6884233951568604,
+ "step": 2723
+ },
+ {
+ "epoch": 37.83879423328965,
+ "grad_norm": 0.23563820123672485,
+ "learning_rate": 0.0006,
+ "loss": 3.6962456703186035,
+ "step": 2724
+ },
+ {
+ "epoch": 37.8527741371778,
+ "grad_norm": 0.2240045815706253,
+ "learning_rate": 0.0006,
+ "loss": 3.6985082626342773,
+ "step": 2725
+ },
+ {
+ "epoch": 37.86675404106597,
+ "grad_norm": 0.21541155874729156,
+ "learning_rate": 0.0006,
+ "loss": 3.6960105895996094,
+ "step": 2726
+ },
+ {
+ "epoch": 37.88073394495413,
+ "grad_norm": 0.23257222771644592,
+ "learning_rate": 0.0006,
+ "loss": 3.667404890060425,
+ "step": 2727
+ },
+ {
+ "epoch": 37.89471384884229,
+ "grad_norm": 0.226792573928833,
+ "learning_rate": 0.0006,
+ "loss": 3.6549744606018066,
+ "step": 2728
+ },
+ {
+ "epoch": 37.90869375273045,
+ "grad_norm": 0.18993401527404785,
+ "learning_rate": 0.0006,
+ "loss": 3.6772334575653076,
+ "step": 2729
+ },
+ {
+ "epoch": 37.92267365661861,
+ "grad_norm": 0.20936095714569092,
+ "learning_rate": 0.0006,
+ "loss": 3.671116352081299,
+ "step": 2730
+ },
+ {
+ "epoch": 37.93665356050677,
+ "grad_norm": 0.2203974425792694,
+ "learning_rate": 0.0006,
+ "loss": 3.6549739837646484,
+ "step": 2731
+ },
+ {
+ "epoch": 37.95063346439493,
+ "grad_norm": 0.19504620134830475,
+ "learning_rate": 0.0006,
+ "loss": 3.6755447387695312,
+ "step": 2732
+ },
+ {
+ "epoch": 37.964613368283096,
+ "grad_norm": 0.2025984674692154,
+ "learning_rate": 0.0006,
+ "loss": 3.678955554962158,
+ "step": 2733
+ },
+ {
+ "epoch": 37.97859327217125,
+ "grad_norm": 0.21556107699871063,
+ "learning_rate": 0.0006,
+ "loss": 3.6680502891540527,
+ "step": 2734
+ },
+ {
+ "epoch": 37.992573176059416,
+ "grad_norm": 0.21011291444301605,
+ "learning_rate": 0.0006,
+ "loss": 3.672039031982422,
+ "step": 2735
+ },
+ {
+ "epoch": 38.0,
+ "grad_norm": 0.23710957169532776,
+ "learning_rate": 0.0006,
+ "loss": 3.6326794624328613,
+ "step": 2736
+ },
+ {
+ "epoch": 38.0,
+ "eval_loss": 3.990501880645752,
+ "eval_runtime": 43.8951,
+ "eval_samples_per_second": 55.633,
+ "eval_steps_per_second": 3.486,
+ "step": 2736
+ },
+ {
+ "epoch": 38.01397990388816,
+ "grad_norm": 0.20711326599121094,
+ "learning_rate": 0.0006,
+ "loss": 3.6364657878875732,
+ "step": 2737
+ },
+ {
+ "epoch": 38.02795980777632,
+ "grad_norm": 0.2250880002975464,
+ "learning_rate": 0.0006,
+ "loss": 3.637646436691284,
+ "step": 2738
+ },
+ {
+ "epoch": 38.04193971166448,
+ "grad_norm": 0.2448352724313736,
+ "learning_rate": 0.0006,
+ "loss": 3.63557767868042,
+ "step": 2739
+ },
+ {
+ "epoch": 38.05591961555265,
+ "grad_norm": 0.23031368851661682,
+ "learning_rate": 0.0006,
+ "loss": 3.627117395401001,
+ "step": 2740
+ },
+ {
+ "epoch": 38.0698995194408,
+ "grad_norm": 0.2045450210571289,
+ "learning_rate": 0.0006,
+ "loss": 3.6594958305358887,
+ "step": 2741
+ },
+ {
+ "epoch": 38.083879423328966,
+ "grad_norm": 0.21253496408462524,
+ "learning_rate": 0.0006,
+ "loss": 3.65494441986084,
+ "step": 2742
+ },
+ {
+ "epoch": 38.09785932721712,
+ "grad_norm": 0.20196112990379333,
+ "learning_rate": 0.0006,
+ "loss": 3.645289421081543,
+ "step": 2743
+ },
+ {
+ "epoch": 38.111839231105286,
+ "grad_norm": 0.20258229970932007,
+ "learning_rate": 0.0006,
+ "loss": 3.6698505878448486,
+ "step": 2744
+ },
+ {
+ "epoch": 38.12581913499345,
+ "grad_norm": 0.22182606160640717,
+ "learning_rate": 0.0006,
+ "loss": 3.6427698135375977,
+ "step": 2745
+ },
+ {
+ "epoch": 38.139799038881605,
+ "grad_norm": 0.21281519532203674,
+ "learning_rate": 0.0006,
+ "loss": 3.668337345123291,
+ "step": 2746
+ },
+ {
+ "epoch": 38.15377894276977,
+ "grad_norm": 0.21680216491222382,
+ "learning_rate": 0.0006,
+ "loss": 3.6362109184265137,
+ "step": 2747
+ },
+ {
+ "epoch": 38.16775884665793,
+ "grad_norm": 0.24396903812885284,
+ "learning_rate": 0.0006,
+ "loss": 3.660510540008545,
+ "step": 2748
+ },
+ {
+ "epoch": 38.18173875054609,
+ "grad_norm": 0.2546434700489044,
+ "learning_rate": 0.0006,
+ "loss": 3.6562418937683105,
+ "step": 2749
+ },
+ {
+ "epoch": 38.19571865443425,
+ "grad_norm": 0.22705447673797607,
+ "learning_rate": 0.0006,
+ "loss": 3.6801514625549316,
+ "step": 2750
+ },
+ {
+ "epoch": 38.20969855832241,
+ "grad_norm": 0.21516330540180206,
+ "learning_rate": 0.0006,
+ "loss": 3.6633429527282715,
+ "step": 2751
+ },
+ {
+ "epoch": 38.22367846221057,
+ "grad_norm": 0.20895853638648987,
+ "learning_rate": 0.0006,
+ "loss": 3.619896411895752,
+ "step": 2752
+ },
+ {
+ "epoch": 38.237658366098735,
+ "grad_norm": 0.21183325350284576,
+ "learning_rate": 0.0006,
+ "loss": 3.639491558074951,
+ "step": 2753
+ },
+ {
+ "epoch": 38.25163826998689,
+ "grad_norm": 0.21439522504806519,
+ "learning_rate": 0.0006,
+ "loss": 3.671931028366089,
+ "step": 2754
+ },
+ {
+ "epoch": 38.265618173875055,
+ "grad_norm": 0.2017785906791687,
+ "learning_rate": 0.0006,
+ "loss": 3.639533519744873,
+ "step": 2755
+ },
+ {
+ "epoch": 38.27959807776322,
+ "grad_norm": 0.20015068352222443,
+ "learning_rate": 0.0006,
+ "loss": 3.654262065887451,
+ "step": 2756
+ },
+ {
+ "epoch": 38.293577981651374,
+ "grad_norm": 0.21518948674201965,
+ "learning_rate": 0.0006,
+ "loss": 3.649919033050537,
+ "step": 2757
+ },
+ {
+ "epoch": 38.30755788553954,
+ "grad_norm": 0.21994580328464508,
+ "learning_rate": 0.0006,
+ "loss": 3.6756131649017334,
+ "step": 2758
+ },
+ {
+ "epoch": 38.3215377894277,
+ "grad_norm": 0.2053978443145752,
+ "learning_rate": 0.0006,
+ "loss": 3.651520252227783,
+ "step": 2759
+ },
+ {
+ "epoch": 38.33551769331586,
+ "grad_norm": 0.2066337615251541,
+ "learning_rate": 0.0006,
+ "loss": 3.6404507160186768,
+ "step": 2760
+ },
+ {
+ "epoch": 38.34949759720402,
+ "grad_norm": 0.20898301899433136,
+ "learning_rate": 0.0006,
+ "loss": 3.637200355529785,
+ "step": 2761
+ },
+ {
+ "epoch": 38.36347750109218,
+ "grad_norm": 0.19212259352207184,
+ "learning_rate": 0.0006,
+ "loss": 3.68394136428833,
+ "step": 2762
+ },
+ {
+ "epoch": 38.37745740498034,
+ "grad_norm": 0.2011883556842804,
+ "learning_rate": 0.0006,
+ "loss": 3.6494975090026855,
+ "step": 2763
+ },
+ {
+ "epoch": 38.391437308868504,
+ "grad_norm": 0.23072998225688934,
+ "learning_rate": 0.0006,
+ "loss": 3.6644320487976074,
+ "step": 2764
+ },
+ {
+ "epoch": 38.40541721275666,
+ "grad_norm": 0.2195347547531128,
+ "learning_rate": 0.0006,
+ "loss": 3.6666269302368164,
+ "step": 2765
+ },
+ {
+ "epoch": 38.419397116644824,
+ "grad_norm": 0.19820117950439453,
+ "learning_rate": 0.0006,
+ "loss": 3.690683364868164,
+ "step": 2766
+ },
+ {
+ "epoch": 38.43337702053299,
+ "grad_norm": 0.20381149649620056,
+ "learning_rate": 0.0006,
+ "loss": 3.6647756099700928,
+ "step": 2767
+ },
+ {
+ "epoch": 38.44735692442114,
+ "grad_norm": 0.19477297365665436,
+ "learning_rate": 0.0006,
+ "loss": 3.6419155597686768,
+ "step": 2768
+ },
+ {
+ "epoch": 38.46133682830931,
+ "grad_norm": 0.20118845999240875,
+ "learning_rate": 0.0006,
+ "loss": 3.678511142730713,
+ "step": 2769
+ },
+ {
+ "epoch": 38.47531673219746,
+ "grad_norm": 0.19538167119026184,
+ "learning_rate": 0.0006,
+ "loss": 3.632112503051758,
+ "step": 2770
+ },
+ {
+ "epoch": 38.489296636085626,
+ "grad_norm": 0.18136411905288696,
+ "learning_rate": 0.0006,
+ "loss": 3.6631078720092773,
+ "step": 2771
+ },
+ {
+ "epoch": 38.50327653997379,
+ "grad_norm": 0.1993526667356491,
+ "learning_rate": 0.0006,
+ "loss": 3.6800379753112793,
+ "step": 2772
+ },
+ {
+ "epoch": 38.517256443861946,
+ "grad_norm": 0.21409109234809875,
+ "learning_rate": 0.0006,
+ "loss": 3.6355738639831543,
+ "step": 2773
+ },
+ {
+ "epoch": 38.53123634775011,
+ "grad_norm": 0.20932911336421967,
+ "learning_rate": 0.0006,
+ "loss": 3.6639811992645264,
+ "step": 2774
+ },
+ {
+ "epoch": 38.54521625163827,
+ "grad_norm": 0.22266243398189545,
+ "learning_rate": 0.0006,
+ "loss": 3.6927733421325684,
+ "step": 2775
+ },
+ {
+ "epoch": 38.55919615552643,
+ "grad_norm": 0.22916539013385773,
+ "learning_rate": 0.0006,
+ "loss": 3.6381587982177734,
+ "step": 2776
+ },
+ {
+ "epoch": 38.57317605941459,
+ "grad_norm": 0.21507245302200317,
+ "learning_rate": 0.0006,
+ "loss": 3.6724753379821777,
+ "step": 2777
+ },
+ {
+ "epoch": 38.58715596330275,
+ "grad_norm": 0.21132487058639526,
+ "learning_rate": 0.0006,
+ "loss": 3.68450927734375,
+ "step": 2778
+ },
+ {
+ "epoch": 38.60113586719091,
+ "grad_norm": 0.2323923259973526,
+ "learning_rate": 0.0006,
+ "loss": 3.6917476654052734,
+ "step": 2779
+ },
+ {
+ "epoch": 38.615115771079076,
+ "grad_norm": 0.2862907648086548,
+ "learning_rate": 0.0006,
+ "loss": 3.6832518577575684,
+ "step": 2780
+ },
+ {
+ "epoch": 38.62909567496723,
+ "grad_norm": 0.28132742643356323,
+ "learning_rate": 0.0006,
+ "loss": 3.6619668006896973,
+ "step": 2781
+ },
+ {
+ "epoch": 38.643075578855395,
+ "grad_norm": 0.24933350086212158,
+ "learning_rate": 0.0006,
+ "loss": 3.6342711448669434,
+ "step": 2782
+ },
+ {
+ "epoch": 38.65705548274356,
+ "grad_norm": 0.23482646048069,
+ "learning_rate": 0.0006,
+ "loss": 3.667548656463623,
+ "step": 2783
+ },
+ {
+ "epoch": 38.671035386631715,
+ "grad_norm": 0.2529793083667755,
+ "learning_rate": 0.0006,
+ "loss": 3.6613709926605225,
+ "step": 2784
+ },
+ {
+ "epoch": 38.68501529051988,
+ "grad_norm": 0.2306097447872162,
+ "learning_rate": 0.0006,
+ "loss": 3.653153419494629,
+ "step": 2785
+ },
+ {
+ "epoch": 38.69899519440804,
+ "grad_norm": 0.21787869930267334,
+ "learning_rate": 0.0006,
+ "loss": 3.6991848945617676,
+ "step": 2786
+ },
+ {
+ "epoch": 38.7129750982962,
+ "grad_norm": 0.24818190932273865,
+ "learning_rate": 0.0006,
+ "loss": 3.664022445678711,
+ "step": 2787
+ },
+ {
+ "epoch": 38.72695500218436,
+ "grad_norm": 0.23205995559692383,
+ "learning_rate": 0.0006,
+ "loss": 3.656064987182617,
+ "step": 2788
+ },
+ {
+ "epoch": 38.74093490607252,
+ "grad_norm": 0.2268102467060089,
+ "learning_rate": 0.0006,
+ "loss": 3.678421974182129,
+ "step": 2789
+ },
+ {
+ "epoch": 38.75491480996068,
+ "grad_norm": 0.22549907863140106,
+ "learning_rate": 0.0006,
+ "loss": 3.6483302116394043,
+ "step": 2790
+ },
+ {
+ "epoch": 38.768894713848844,
+ "grad_norm": 0.2293119877576828,
+ "learning_rate": 0.0006,
+ "loss": 3.646825075149536,
+ "step": 2791
+ },
+ {
+ "epoch": 38.782874617737,
+ "grad_norm": 0.21879418194293976,
+ "learning_rate": 0.0006,
+ "loss": 3.682124614715576,
+ "step": 2792
+ },
+ {
+ "epoch": 38.796854521625164,
+ "grad_norm": 0.22012849152088165,
+ "learning_rate": 0.0006,
+ "loss": 3.6590089797973633,
+ "step": 2793
+ },
+ {
+ "epoch": 38.81083442551333,
+ "grad_norm": 0.2449142336845398,
+ "learning_rate": 0.0006,
+ "loss": 3.7053747177124023,
+ "step": 2794
+ },
+ {
+ "epoch": 38.824814329401484,
+ "grad_norm": 0.2677161395549774,
+ "learning_rate": 0.0006,
+ "loss": 3.666144371032715,
+ "step": 2795
+ },
+ {
+ "epoch": 38.83879423328965,
+ "grad_norm": 0.2654981315135956,
+ "learning_rate": 0.0006,
+ "loss": 3.637512683868408,
+ "step": 2796
+ },
+ {
+ "epoch": 38.8527741371778,
+ "grad_norm": 0.23169654607772827,
+ "learning_rate": 0.0006,
+ "loss": 3.6885948181152344,
+ "step": 2797
+ },
+ {
+ "epoch": 38.86675404106597,
+ "grad_norm": 0.22195108234882355,
+ "learning_rate": 0.0006,
+ "loss": 3.6597604751586914,
+ "step": 2798
+ },
+ {
+ "epoch": 38.88073394495413,
+ "grad_norm": 0.23703525960445404,
+ "learning_rate": 0.0006,
+ "loss": 3.6808712482452393,
+ "step": 2799
+ },
+ {
+ "epoch": 38.89471384884229,
+ "grad_norm": 0.24711088836193085,
+ "learning_rate": 0.0006,
+ "loss": 3.733792781829834,
+ "step": 2800
+ },
+ {
+ "epoch": 38.90869375273045,
+ "grad_norm": 0.216362863779068,
+ "learning_rate": 0.0006,
+ "loss": 3.670599937438965,
+ "step": 2801
+ },
+ {
+ "epoch": 38.92267365661861,
+ "grad_norm": 0.19483810663223267,
+ "learning_rate": 0.0006,
+ "loss": 3.6965198516845703,
+ "step": 2802
+ },
+ {
+ "epoch": 38.93665356050677,
+ "grad_norm": 0.1941208392381668,
+ "learning_rate": 0.0006,
+ "loss": 3.678022861480713,
+ "step": 2803
+ },
+ {
+ "epoch": 38.95063346439493,
+ "grad_norm": 0.1919465959072113,
+ "learning_rate": 0.0006,
+ "loss": 3.6763226985931396,
+ "step": 2804
+ },
+ {
+ "epoch": 38.964613368283096,
+ "grad_norm": 0.2003280073404312,
+ "learning_rate": 0.0006,
+ "loss": 3.670313835144043,
+ "step": 2805
+ },
+ {
+ "epoch": 38.97859327217125,
+ "grad_norm": 0.198478564620018,
+ "learning_rate": 0.0006,
+ "loss": 3.675569772720337,
+ "step": 2806
+ },
+ {
+ "epoch": 38.992573176059416,
+ "grad_norm": 0.23692303895950317,
+ "learning_rate": 0.0006,
+ "loss": 3.696561336517334,
+ "step": 2807
+ },
+ {
+ "epoch": 39.0,
+ "grad_norm": 0.3208145797252655,
+ "learning_rate": 0.0006,
+ "loss": 3.6791436672210693,
+ "step": 2808
+ },
+ {
+ "epoch": 39.0,
+ "eval_loss": 4.0079450607299805,
+ "eval_runtime": 43.8573,
+ "eval_samples_per_second": 55.681,
+ "eval_steps_per_second": 3.489,
+ "step": 2808
+ },
+ {
+ "epoch": 39.01397990388816,
+ "grad_norm": 0.28338733315467834,
+ "learning_rate": 0.0006,
+ "loss": 3.6277060508728027,
+ "step": 2809
+ },
+ {
+ "epoch": 39.02795980777632,
+ "grad_norm": 0.22057899832725525,
+ "learning_rate": 0.0006,
+ "loss": 3.6132822036743164,
+ "step": 2810
+ },
+ {
+ "epoch": 39.04193971166448,
+ "grad_norm": 0.20630282163619995,
+ "learning_rate": 0.0006,
+ "loss": 3.6143927574157715,
+ "step": 2811
+ },
+ {
+ "epoch": 39.05591961555265,
+ "grad_norm": 0.2178523689508438,
+ "learning_rate": 0.0006,
+ "loss": 3.6304664611816406,
+ "step": 2812
+ },
+ {
+ "epoch": 39.0698995194408,
+ "grad_norm": 0.19613824784755707,
+ "learning_rate": 0.0006,
+ "loss": 3.6137919425964355,
+ "step": 2813
+ },
+ {
+ "epoch": 39.083879423328966,
+ "grad_norm": 0.2047276794910431,
+ "learning_rate": 0.0006,
+ "loss": 3.6854846477508545,
+ "step": 2814
+ },
+ {
+ "epoch": 39.09785932721712,
+ "grad_norm": 0.20082715153694153,
+ "learning_rate": 0.0006,
+ "loss": 3.632091522216797,
+ "step": 2815
+ },
+ {
+ "epoch": 39.111839231105286,
+ "grad_norm": 0.21746563911437988,
+ "learning_rate": 0.0006,
+ "loss": 3.640477180480957,
+ "step": 2816
+ },
+ {
+ "epoch": 39.12581913499345,
+ "grad_norm": 0.2128882110118866,
+ "learning_rate": 0.0006,
+ "loss": 3.643984317779541,
+ "step": 2817
+ },
+ {
+ "epoch": 39.139799038881605,
+ "grad_norm": 0.2110479772090912,
+ "learning_rate": 0.0006,
+ "loss": 3.6328823566436768,
+ "step": 2818
+ },
+ {
+ "epoch": 39.15377894276977,
+ "grad_norm": 0.22304436564445496,
+ "learning_rate": 0.0006,
+ "loss": 3.6669845581054688,
+ "step": 2819
+ },
+ {
+ "epoch": 39.16775884665793,
+ "grad_norm": 0.22310666739940643,
+ "learning_rate": 0.0006,
+ "loss": 3.609743595123291,
+ "step": 2820
+ },
+ {
+ "epoch": 39.18173875054609,
+ "grad_norm": 0.21002045273780823,
+ "learning_rate": 0.0006,
+ "loss": 3.601900815963745,
+ "step": 2821
+ },
+ {
+ "epoch": 39.19571865443425,
+ "grad_norm": 0.20531952381134033,
+ "learning_rate": 0.0006,
+ "loss": 3.6405060291290283,
+ "step": 2822
+ },
+ {
+ "epoch": 39.20969855832241,
+ "grad_norm": 0.20646385848522186,
+ "learning_rate": 0.0006,
+ "loss": 3.669617176055908,
+ "step": 2823
+ },
+ {
+ "epoch": 39.22367846221057,
+ "grad_norm": 0.2553980350494385,
+ "learning_rate": 0.0006,
+ "loss": 3.642709255218506,
+ "step": 2824
+ },
+ {
+ "epoch": 39.237658366098735,
+ "grad_norm": 0.2753220498561859,
+ "learning_rate": 0.0006,
+ "loss": 3.668405055999756,
+ "step": 2825
+ },
+ {
+ "epoch": 39.25163826998689,
+ "grad_norm": 0.2425055354833603,
+ "learning_rate": 0.0006,
+ "loss": 3.659559726715088,
+ "step": 2826
+ },
+ {
+ "epoch": 39.265618173875055,
+ "grad_norm": 0.2199426293373108,
+ "learning_rate": 0.0006,
+ "loss": 3.6466197967529297,
+ "step": 2827
+ },
+ {
+ "epoch": 39.27959807776322,
+ "grad_norm": 0.221355602145195,
+ "learning_rate": 0.0006,
+ "loss": 3.639418125152588,
+ "step": 2828
+ },
+ {
+ "epoch": 39.293577981651374,
+ "grad_norm": 0.20777100324630737,
+ "learning_rate": 0.0006,
+ "loss": 3.68102765083313,
+ "step": 2829
+ },
+ {
+ "epoch": 39.30755788553954,
+ "grad_norm": 0.20557557046413422,
+ "learning_rate": 0.0006,
+ "loss": 3.663064956665039,
+ "step": 2830
+ },
+ {
+ "epoch": 39.3215377894277,
+ "grad_norm": 0.2385585904121399,
+ "learning_rate": 0.0006,
+ "loss": 3.6598849296569824,
+ "step": 2831
+ },
+ {
+ "epoch": 39.33551769331586,
+ "grad_norm": 0.25222650170326233,
+ "learning_rate": 0.0006,
+ "loss": 3.635199546813965,
+ "step": 2832
+ },
+ {
+ "epoch": 39.34949759720402,
+ "grad_norm": 0.22894687950611115,
+ "learning_rate": 0.0006,
+ "loss": 3.6100258827209473,
+ "step": 2833
+ },
+ {
+ "epoch": 39.36347750109218,
+ "grad_norm": 0.22945865988731384,
+ "learning_rate": 0.0006,
+ "loss": 3.63069748878479,
+ "step": 2834
+ },
+ {
+ "epoch": 39.37745740498034,
+ "grad_norm": 0.2466309368610382,
+ "learning_rate": 0.0006,
+ "loss": 3.6615123748779297,
+ "step": 2835
+ },
+ {
+ "epoch": 39.391437308868504,
+ "grad_norm": 0.23845571279525757,
+ "learning_rate": 0.0006,
+ "loss": 3.655045509338379,
+ "step": 2836
+ },
+ {
+ "epoch": 39.40541721275666,
+ "grad_norm": 0.20273560285568237,
+ "learning_rate": 0.0006,
+ "loss": 3.6497647762298584,
+ "step": 2837
+ },
+ {
+ "epoch": 39.419397116644824,
+ "grad_norm": 0.19820313155651093,
+ "learning_rate": 0.0006,
+ "loss": 3.6728386878967285,
+ "step": 2838
+ },
+ {
+ "epoch": 39.43337702053299,
+ "grad_norm": 0.21581435203552246,
+ "learning_rate": 0.0006,
+ "loss": 3.660247325897217,
+ "step": 2839
+ },
+ {
+ "epoch": 39.44735692442114,
+ "grad_norm": 0.20559731125831604,
+ "learning_rate": 0.0006,
+ "loss": 3.6244559288024902,
+ "step": 2840
+ },
+ {
+ "epoch": 39.46133682830931,
+ "grad_norm": 0.22041910886764526,
+ "learning_rate": 0.0006,
+ "loss": 3.6577587127685547,
+ "step": 2841
+ },
+ {
+ "epoch": 39.47531673219746,
+ "grad_norm": 0.1966651976108551,
+ "learning_rate": 0.0006,
+ "loss": 3.673975944519043,
+ "step": 2842
+ },
+ {
+ "epoch": 39.489296636085626,
+ "grad_norm": 0.19127163290977478,
+ "learning_rate": 0.0006,
+ "loss": 3.7022414207458496,
+ "step": 2843
+ },
+ {
+ "epoch": 39.50327653997379,
+ "grad_norm": 0.20260316133499146,
+ "learning_rate": 0.0006,
+ "loss": 3.6155128479003906,
+ "step": 2844
+ },
+ {
+ "epoch": 39.517256443861946,
+ "grad_norm": 0.2302546352148056,
+ "learning_rate": 0.0006,
+ "loss": 3.670212984085083,
+ "step": 2845
+ },
+ {
+ "epoch": 39.53123634775011,
+ "grad_norm": 0.2512998878955841,
+ "learning_rate": 0.0006,
+ "loss": 3.6257572174072266,
+ "step": 2846
+ },
+ {
+ "epoch": 39.54521625163827,
+ "grad_norm": 0.24780063331127167,
+ "learning_rate": 0.0006,
+ "loss": 3.6458964347839355,
+ "step": 2847
+ },
+ {
+ "epoch": 39.55919615552643,
+ "grad_norm": 0.21305061876773834,
+ "learning_rate": 0.0006,
+ "loss": 3.666834831237793,
+ "step": 2848
+ },
+ {
+ "epoch": 39.57317605941459,
+ "grad_norm": 0.20699542760849,
+ "learning_rate": 0.0006,
+ "loss": 3.660571813583374,
+ "step": 2849
+ },
+ {
+ "epoch": 39.58715596330275,
+ "grad_norm": 0.20799173414707184,
+ "learning_rate": 0.0006,
+ "loss": 3.649744987487793,
+ "step": 2850
+ },
+ {
+ "epoch": 39.60113586719091,
+ "grad_norm": 0.20118695497512817,
+ "learning_rate": 0.0006,
+ "loss": 3.663865089416504,
+ "step": 2851
+ },
+ {
+ "epoch": 39.615115771079076,
+ "grad_norm": 0.2019277960062027,
+ "learning_rate": 0.0006,
+ "loss": 3.6600584983825684,
+ "step": 2852
+ },
+ {
+ "epoch": 39.62909567496723,
+ "grad_norm": 0.2093067765235901,
+ "learning_rate": 0.0006,
+ "loss": 3.6926870346069336,
+ "step": 2853
+ },
+ {
+ "epoch": 39.643075578855395,
+ "grad_norm": 0.2280927449464798,
+ "learning_rate": 0.0006,
+ "loss": 3.677157402038574,
+ "step": 2854
+ },
+ {
+ "epoch": 39.65705548274356,
+ "grad_norm": 0.219201922416687,
+ "learning_rate": 0.0006,
+ "loss": 3.6763858795166016,
+ "step": 2855
+ },
+ {
+ "epoch": 39.671035386631715,
+ "grad_norm": 0.2132134735584259,
+ "learning_rate": 0.0006,
+ "loss": 3.6853187084198,
+ "step": 2856
+ },
+ {
+ "epoch": 39.68501529051988,
+ "grad_norm": 0.1979551613330841,
+ "learning_rate": 0.0006,
+ "loss": 3.633850574493408,
+ "step": 2857
+ },
+ {
+ "epoch": 39.69899519440804,
+ "grad_norm": 0.2181098908185959,
+ "learning_rate": 0.0006,
+ "loss": 3.671356201171875,
+ "step": 2858
+ },
+ {
+ "epoch": 39.7129750982962,
+ "grad_norm": 0.21820145845413208,
+ "learning_rate": 0.0006,
+ "loss": 3.640101432800293,
+ "step": 2859
+ },
+ {
+ "epoch": 39.72695500218436,
+ "grad_norm": 0.22734931111335754,
+ "learning_rate": 0.0006,
+ "loss": 3.6326088905334473,
+ "step": 2860
+ },
+ {
+ "epoch": 39.74093490607252,
+ "grad_norm": 0.2407236248254776,
+ "learning_rate": 0.0006,
+ "loss": 3.665416955947876,
+ "step": 2861
+ },
+ {
+ "epoch": 39.75491480996068,
+ "grad_norm": 0.2507246434688568,
+ "learning_rate": 0.0006,
+ "loss": 3.6996266841888428,
+ "step": 2862
+ },
+ {
+ "epoch": 39.768894713848844,
+ "grad_norm": 0.2273668497800827,
+ "learning_rate": 0.0006,
+ "loss": 3.6786417961120605,
+ "step": 2863
+ },
+ {
+ "epoch": 39.782874617737,
+ "grad_norm": 0.20584821701049805,
+ "learning_rate": 0.0006,
+ "loss": 3.6539974212646484,
+ "step": 2864
+ },
+ {
+ "epoch": 39.796854521625164,
+ "grad_norm": 0.2327643632888794,
+ "learning_rate": 0.0006,
+ "loss": 3.681267738342285,
+ "step": 2865
+ },
+ {
+ "epoch": 39.81083442551333,
+ "grad_norm": 0.24243171513080597,
+ "learning_rate": 0.0006,
+ "loss": 3.6814589500427246,
+ "step": 2866
+ },
+ {
+ "epoch": 39.824814329401484,
+ "grad_norm": 0.21462969481945038,
+ "learning_rate": 0.0006,
+ "loss": 3.681321620941162,
+ "step": 2867
+ },
+ {
+ "epoch": 39.83879423328965,
+ "grad_norm": 0.20973211526870728,
+ "learning_rate": 0.0006,
+ "loss": 3.636986017227173,
+ "step": 2868
+ },
+ {
+ "epoch": 39.8527741371778,
+ "grad_norm": 0.20357508957386017,
+ "learning_rate": 0.0006,
+ "loss": 3.6664552688598633,
+ "step": 2869
+ },
+ {
+ "epoch": 39.86675404106597,
+ "grad_norm": 0.20389088988304138,
+ "learning_rate": 0.0006,
+ "loss": 3.6685709953308105,
+ "step": 2870
+ },
+ {
+ "epoch": 39.88073394495413,
+ "grad_norm": 0.21024158596992493,
+ "learning_rate": 0.0006,
+ "loss": 3.650658130645752,
+ "step": 2871
+ },
+ {
+ "epoch": 39.89471384884229,
+ "grad_norm": 0.19477778673171997,
+ "learning_rate": 0.0006,
+ "loss": 3.664834976196289,
+ "step": 2872
+ },
+ {
+ "epoch": 39.90869375273045,
+ "grad_norm": 0.22345365583896637,
+ "learning_rate": 0.0006,
+ "loss": 3.6652634143829346,
+ "step": 2873
+ },
+ {
+ "epoch": 39.92267365661861,
+ "grad_norm": 0.206041157245636,
+ "learning_rate": 0.0006,
+ "loss": 3.6649513244628906,
+ "step": 2874
+ },
+ {
+ "epoch": 39.93665356050677,
+ "grad_norm": 0.18524570763111115,
+ "learning_rate": 0.0006,
+ "loss": 3.665579080581665,
+ "step": 2875
+ },
+ {
+ "epoch": 39.95063346439493,
+ "grad_norm": 0.17730890214443207,
+ "learning_rate": 0.0006,
+ "loss": 3.6372880935668945,
+ "step": 2876
+ },
+ {
+ "epoch": 39.964613368283096,
+ "grad_norm": 0.213678777217865,
+ "learning_rate": 0.0006,
+ "loss": 3.681305408477783,
+ "step": 2877
+ },
+ {
+ "epoch": 39.97859327217125,
+ "grad_norm": 0.2595686614513397,
+ "learning_rate": 0.0006,
+ "loss": 3.6660351753234863,
+ "step": 2878
+ },
+ {
+ "epoch": 39.992573176059416,
+ "grad_norm": 0.22678600251674652,
+ "learning_rate": 0.0006,
+ "loss": 3.681619644165039,
+ "step": 2879
+ },
+ {
+ "epoch": 40.0,
+ "grad_norm": 0.2294030636548996,
+ "learning_rate": 0.0006,
+ "loss": 3.654366970062256,
+ "step": 2880
+ },
+ {
+ "epoch": 40.0,
+ "eval_loss": 3.9810431003570557,
+ "eval_runtime": 43.832,
+ "eval_samples_per_second": 55.713,
+ "eval_steps_per_second": 3.491,
+ "step": 2880
+ },
+ {
+ "epoch": 40.01397990388816,
+ "grad_norm": 0.220590278506279,
+ "learning_rate": 0.0006,
+ "loss": 3.6346259117126465,
+ "step": 2881
+ },
+ {
+ "epoch": 40.02795980777632,
+ "grad_norm": 0.2568257749080658,
+ "learning_rate": 0.0006,
+ "loss": 3.64436674118042,
+ "step": 2882
+ },
+ {
+ "epoch": 40.04193971166448,
+ "grad_norm": 0.2869258224964142,
+ "learning_rate": 0.0006,
+ "loss": 3.613316059112549,
+ "step": 2883
+ },
+ {
+ "epoch": 40.05591961555265,
+ "grad_norm": 0.3005172908306122,
+ "learning_rate": 0.0006,
+ "loss": 3.607339859008789,
+ "step": 2884
+ },
+ {
+ "epoch": 40.0698995194408,
+ "grad_norm": 0.28642305731773376,
+ "learning_rate": 0.0006,
+ "loss": 3.65151047706604,
+ "step": 2885
+ },
+ {
+ "epoch": 40.083879423328966,
+ "grad_norm": 0.24176034331321716,
+ "learning_rate": 0.0006,
+ "loss": 3.633742332458496,
+ "step": 2886
+ },
+ {
+ "epoch": 40.09785932721712,
+ "grad_norm": 0.2139386385679245,
+ "learning_rate": 0.0006,
+ "loss": 3.614245653152466,
+ "step": 2887
+ },
+ {
+ "epoch": 40.111839231105286,
+ "grad_norm": 0.28025752305984497,
+ "learning_rate": 0.0006,
+ "loss": 3.6415746212005615,
+ "step": 2888
+ },
+ {
+ "epoch": 40.12581913499345,
+ "grad_norm": 0.28534311056137085,
+ "learning_rate": 0.0006,
+ "loss": 3.6302027702331543,
+ "step": 2889
+ },
+ {
+ "epoch": 40.139799038881605,
+ "grad_norm": 0.26842808723449707,
+ "learning_rate": 0.0006,
+ "loss": 3.657480239868164,
+ "step": 2890
+ },
+ {
+ "epoch": 40.15377894276977,
+ "grad_norm": 0.25235965847969055,
+ "learning_rate": 0.0006,
+ "loss": 3.6843931674957275,
+ "step": 2891
+ },
+ {
+ "epoch": 40.16775884665793,
+ "grad_norm": 0.22192128002643585,
+ "learning_rate": 0.0006,
+ "loss": 3.6374592781066895,
+ "step": 2892
+ },
+ {
+ "epoch": 40.18173875054609,
+ "grad_norm": 0.21524523198604584,
+ "learning_rate": 0.0006,
+ "loss": 3.6052589416503906,
+ "step": 2893
+ },
+ {
+ "epoch": 40.19571865443425,
+ "grad_norm": 0.21011514961719513,
+ "learning_rate": 0.0006,
+ "loss": 3.62197208404541,
+ "step": 2894
+ },
+ {
+ "epoch": 40.20969855832241,
+ "grad_norm": 0.23187001049518585,
+ "learning_rate": 0.0006,
+ "loss": 3.6505377292633057,
+ "step": 2895
+ },
+ {
+ "epoch": 40.22367846221057,
+ "grad_norm": 0.21962887048721313,
+ "learning_rate": 0.0006,
+ "loss": 3.594991683959961,
+ "step": 2896
+ },
+ {
+ "epoch": 40.237658366098735,
+ "grad_norm": 0.23299361765384674,
+ "learning_rate": 0.0006,
+ "loss": 3.6370339393615723,
+ "step": 2897
+ },
+ {
+ "epoch": 40.25163826998689,
+ "grad_norm": 0.22504881024360657,
+ "learning_rate": 0.0006,
+ "loss": 3.6173815727233887,
+ "step": 2898
+ },
+ {
+ "epoch": 40.265618173875055,
+ "grad_norm": 0.21678344905376434,
+ "learning_rate": 0.0006,
+ "loss": 3.6231422424316406,
+ "step": 2899
+ },
+ {
+ "epoch": 40.27959807776322,
+ "grad_norm": 0.2184615284204483,
+ "learning_rate": 0.0006,
+ "loss": 3.6552987098693848,
+ "step": 2900
+ },
+ {
+ "epoch": 40.293577981651374,
+ "grad_norm": 0.2145485281944275,
+ "learning_rate": 0.0006,
+ "loss": 3.628025531768799,
+ "step": 2901
+ },
+ {
+ "epoch": 40.30755788553954,
+ "grad_norm": 0.21119336783885956,
+ "learning_rate": 0.0006,
+ "loss": 3.6511590480804443,
+ "step": 2902
+ },
+ {
+ "epoch": 40.3215377894277,
+ "grad_norm": 0.2158869504928589,
+ "learning_rate": 0.0006,
+ "loss": 3.6302051544189453,
+ "step": 2903
+ },
+ {
+ "epoch": 40.33551769331586,
+ "grad_norm": 0.22736455500125885,
+ "learning_rate": 0.0006,
+ "loss": 3.6678733825683594,
+ "step": 2904
+ },
+ {
+ "epoch": 40.34949759720402,
+ "grad_norm": 0.22723783552646637,
+ "learning_rate": 0.0006,
+ "loss": 3.632068634033203,
+ "step": 2905
+ },
+ {
+ "epoch": 40.36347750109218,
+ "grad_norm": 0.20606189966201782,
+ "learning_rate": 0.0006,
+ "loss": 3.6534624099731445,
+ "step": 2906
+ },
+ {
+ "epoch": 40.37745740498034,
+ "grad_norm": 0.21033786237239838,
+ "learning_rate": 0.0006,
+ "loss": 3.6194064617156982,
+ "step": 2907
+ },
+ {
+ "epoch": 40.391437308868504,
+ "grad_norm": 0.2175762951374054,
+ "learning_rate": 0.0006,
+ "loss": 3.637385368347168,
+ "step": 2908
+ },
+ {
+ "epoch": 40.40541721275666,
+ "grad_norm": 0.21063381433486938,
+ "learning_rate": 0.0006,
+ "loss": 3.656857967376709,
+ "step": 2909
+ },
+ {
+ "epoch": 40.419397116644824,
+ "grad_norm": 0.19982226192951202,
+ "learning_rate": 0.0006,
+ "loss": 3.655738353729248,
+ "step": 2910
+ },
+ {
+ "epoch": 40.43337702053299,
+ "grad_norm": 0.20608870685100555,
+ "learning_rate": 0.0006,
+ "loss": 3.6521377563476562,
+ "step": 2911
+ },
+ {
+ "epoch": 40.44735692442114,
+ "grad_norm": 0.19817334413528442,
+ "learning_rate": 0.0006,
+ "loss": 3.61527681350708,
+ "step": 2912
+ },
+ {
+ "epoch": 40.46133682830931,
+ "grad_norm": 0.20407769083976746,
+ "learning_rate": 0.0006,
+ "loss": 3.6668765544891357,
+ "step": 2913
+ },
+ {
+ "epoch": 40.47531673219746,
+ "grad_norm": 0.19874799251556396,
+ "learning_rate": 0.0006,
+ "loss": 3.6748533248901367,
+ "step": 2914
+ },
+ {
+ "epoch": 40.489296636085626,
+ "grad_norm": 0.1979510486125946,
+ "learning_rate": 0.0006,
+ "loss": 3.6141977310180664,
+ "step": 2915
+ },
+ {
+ "epoch": 40.50327653997379,
+ "grad_norm": 0.19811518490314484,
+ "learning_rate": 0.0006,
+ "loss": 3.6391215324401855,
+ "step": 2916
+ },
+ {
+ "epoch": 40.517256443861946,
+ "grad_norm": 0.20208898186683655,
+ "learning_rate": 0.0006,
+ "loss": 3.664179801940918,
+ "step": 2917
+ },
+ {
+ "epoch": 40.53123634775011,
+ "grad_norm": 0.22063760459423065,
+ "learning_rate": 0.0006,
+ "loss": 3.645388126373291,
+ "step": 2918
+ },
+ {
+ "epoch": 40.54521625163827,
+ "grad_norm": 0.23420891165733337,
+ "learning_rate": 0.0006,
+ "loss": 3.6424708366394043,
+ "step": 2919
+ },
+ {
+ "epoch": 40.55919615552643,
+ "grad_norm": 0.2263612151145935,
+ "learning_rate": 0.0006,
+ "loss": 3.6649224758148193,
+ "step": 2920
+ },
+ {
+ "epoch": 40.57317605941459,
+ "grad_norm": 0.22745433449745178,
+ "learning_rate": 0.0006,
+ "loss": 3.631586790084839,
+ "step": 2921
+ },
+ {
+ "epoch": 40.58715596330275,
+ "grad_norm": 0.22413238883018494,
+ "learning_rate": 0.0006,
+ "loss": 3.6666674613952637,
+ "step": 2922
+ },
+ {
+ "epoch": 40.60113586719091,
+ "grad_norm": 0.2178265005350113,
+ "learning_rate": 0.0006,
+ "loss": 3.6002111434936523,
+ "step": 2923
+ },
+ {
+ "epoch": 40.615115771079076,
+ "grad_norm": 0.21822521090507507,
+ "learning_rate": 0.0006,
+ "loss": 3.6538329124450684,
+ "step": 2924
+ },
+ {
+ "epoch": 40.62909567496723,
+ "grad_norm": 0.21728558838367462,
+ "learning_rate": 0.0006,
+ "loss": 3.651254653930664,
+ "step": 2925
+ },
+ {
+ "epoch": 40.643075578855395,
+ "grad_norm": 0.22377707064151764,
+ "learning_rate": 0.0006,
+ "loss": 3.6505789756774902,
+ "step": 2926
+ },
+ {
+ "epoch": 40.65705548274356,
+ "grad_norm": 0.2035706788301468,
+ "learning_rate": 0.0006,
+ "loss": 3.6471967697143555,
+ "step": 2927
+ },
+ {
+ "epoch": 40.671035386631715,
+ "grad_norm": 0.2011154741048813,
+ "learning_rate": 0.0006,
+ "loss": 3.6582741737365723,
+ "step": 2928
+ },
+ {
+ "epoch": 40.68501529051988,
+ "grad_norm": 0.23812712728977203,
+ "learning_rate": 0.0006,
+ "loss": 3.6388421058654785,
+ "step": 2929
+ },
+ {
+ "epoch": 40.69899519440804,
+ "grad_norm": 0.2117796689271927,
+ "learning_rate": 0.0006,
+ "loss": 3.688337802886963,
+ "step": 2930
+ },
+ {
+ "epoch": 40.7129750982962,
+ "grad_norm": 0.18440942466259003,
+ "learning_rate": 0.0006,
+ "loss": 3.6409997940063477,
+ "step": 2931
+ },
+ {
+ "epoch": 40.72695500218436,
+ "grad_norm": 0.19005917012691498,
+ "learning_rate": 0.0006,
+ "loss": 3.6760218143463135,
+ "step": 2932
+ },
+ {
+ "epoch": 40.74093490607252,
+ "grad_norm": 0.19982726871967316,
+ "learning_rate": 0.0006,
+ "loss": 3.6375021934509277,
+ "step": 2933
+ },
+ {
+ "epoch": 40.75491480996068,
+ "grad_norm": 0.19240257143974304,
+ "learning_rate": 0.0006,
+ "loss": 3.636807918548584,
+ "step": 2934
+ },
+ {
+ "epoch": 40.768894713848844,
+ "grad_norm": 0.20563434064388275,
+ "learning_rate": 0.0006,
+ "loss": 3.6667532920837402,
+ "step": 2935
+ },
+ {
+ "epoch": 40.782874617737,
+ "grad_norm": 0.26531776785850525,
+ "learning_rate": 0.0006,
+ "loss": 3.6332945823669434,
+ "step": 2936
+ },
+ {
+ "epoch": 40.796854521625164,
+ "grad_norm": 0.2766861021518707,
+ "learning_rate": 0.0006,
+ "loss": 3.6645212173461914,
+ "step": 2937
+ },
+ {
+ "epoch": 40.81083442551333,
+ "grad_norm": 0.235750213265419,
+ "learning_rate": 0.0006,
+ "loss": 3.67067813873291,
+ "step": 2938
+ },
+ {
+ "epoch": 40.824814329401484,
+ "grad_norm": 0.20778773725032806,
+ "learning_rate": 0.0006,
+ "loss": 3.6565768718719482,
+ "step": 2939
+ },
+ {
+ "epoch": 40.83879423328965,
+ "grad_norm": 0.187322199344635,
+ "learning_rate": 0.0006,
+ "loss": 3.620129346847534,
+ "step": 2940
+ },
+ {
+ "epoch": 40.8527741371778,
+ "grad_norm": 0.20576219260692596,
+ "learning_rate": 0.0006,
+ "loss": 3.6700220108032227,
+ "step": 2941
+ },
+ {
+ "epoch": 40.86675404106597,
+ "grad_norm": 0.2197345495223999,
+ "learning_rate": 0.0006,
+ "loss": 3.709311008453369,
+ "step": 2942
+ },
+ {
+ "epoch": 40.88073394495413,
+ "grad_norm": 0.20205345749855042,
+ "learning_rate": 0.0006,
+ "loss": 3.6646361351013184,
+ "step": 2943
+ },
+ {
+ "epoch": 40.89471384884229,
+ "grad_norm": 0.20026250183582306,
+ "learning_rate": 0.0006,
+ "loss": 3.6639604568481445,
+ "step": 2944
+ },
+ {
+ "epoch": 40.90869375273045,
+ "grad_norm": 0.224214106798172,
+ "learning_rate": 0.0006,
+ "loss": 3.6669654846191406,
+ "step": 2945
+ },
+ {
+ "epoch": 40.92267365661861,
+ "grad_norm": 0.2155972272157669,
+ "learning_rate": 0.0006,
+ "loss": 3.6494603157043457,
+ "step": 2946
+ },
+ {
+ "epoch": 40.93665356050677,
+ "grad_norm": 0.23038871586322784,
+ "learning_rate": 0.0006,
+ "loss": 3.6368541717529297,
+ "step": 2947
+ },
+ {
+ "epoch": 40.95063346439493,
+ "grad_norm": 0.2001815289258957,
+ "learning_rate": 0.0006,
+ "loss": 3.711174249649048,
+ "step": 2948
+ },
+ {
+ "epoch": 40.964613368283096,
+ "grad_norm": 0.20428860187530518,
+ "learning_rate": 0.0006,
+ "loss": 3.6342315673828125,
+ "step": 2949
+ },
+ {
+ "epoch": 40.97859327217125,
+ "grad_norm": 0.20724134147167206,
+ "learning_rate": 0.0006,
+ "loss": 3.679375171661377,
+ "step": 2950
+ },
+ {
+ "epoch": 40.992573176059416,
+ "grad_norm": 0.20723849534988403,
+ "learning_rate": 0.0006,
+ "loss": 3.6477675437927246,
+ "step": 2951
+ },
+ {
+ "epoch": 41.0,
+ "grad_norm": 0.23891447484493256,
+ "learning_rate": 0.0006,
+ "loss": 3.632950782775879,
+ "step": 2952
+ },
+ {
+ "epoch": 41.0,
+ "eval_loss": 3.9871256351470947,
+ "eval_runtime": 43.8367,
+ "eval_samples_per_second": 55.707,
+ "eval_steps_per_second": 3.49,
+ "step": 2952
+ },
+ {
+ "epoch": 41.01397990388816,
+ "grad_norm": 0.2258434295654297,
+ "learning_rate": 0.0006,
+ "loss": 3.631239414215088,
+ "step": 2953
+ },
+ {
+ "epoch": 41.02795980777632,
+ "grad_norm": 0.24932795763015747,
+ "learning_rate": 0.0006,
+ "loss": 3.601083517074585,
+ "step": 2954
+ },
+ {
+ "epoch": 41.04193971166448,
+ "grad_norm": 0.2688388228416443,
+ "learning_rate": 0.0006,
+ "loss": 3.655724048614502,
+ "step": 2955
+ },
+ {
+ "epoch": 41.05591961555265,
+ "grad_norm": 0.23880694806575775,
+ "learning_rate": 0.0006,
+ "loss": 3.617628812789917,
+ "step": 2956
+ },
+ {
+ "epoch": 41.0698995194408,
+ "grad_norm": 0.23784616589546204,
+ "learning_rate": 0.0006,
+ "loss": 3.6309127807617188,
+ "step": 2957
+ },
+ {
+ "epoch": 41.083879423328966,
+ "grad_norm": 0.22609511017799377,
+ "learning_rate": 0.0006,
+ "loss": 3.6138553619384766,
+ "step": 2958
+ },
+ {
+ "epoch": 41.09785932721712,
+ "grad_norm": 0.22936329245567322,
+ "learning_rate": 0.0006,
+ "loss": 3.6620094776153564,
+ "step": 2959
+ },
+ {
+ "epoch": 41.111839231105286,
+ "grad_norm": 0.23354190587997437,
+ "learning_rate": 0.0006,
+ "loss": 3.59959077835083,
+ "step": 2960
+ },
+ {
+ "epoch": 41.12581913499345,
+ "grad_norm": 0.2496265172958374,
+ "learning_rate": 0.0006,
+ "loss": 3.588359832763672,
+ "step": 2961
+ },
+ {
+ "epoch": 41.139799038881605,
+ "grad_norm": 0.23618635535240173,
+ "learning_rate": 0.0006,
+ "loss": 3.6341018676757812,
+ "step": 2962
+ },
+ {
+ "epoch": 41.15377894276977,
+ "grad_norm": 0.23724640905857086,
+ "learning_rate": 0.0006,
+ "loss": 3.6170616149902344,
+ "step": 2963
+ },
+ {
+ "epoch": 41.16775884665793,
+ "grad_norm": 0.20944789052009583,
+ "learning_rate": 0.0006,
+ "loss": 3.6158995628356934,
+ "step": 2964
+ },
+ {
+ "epoch": 41.18173875054609,
+ "grad_norm": 0.2089492678642273,
+ "learning_rate": 0.0006,
+ "loss": 3.586538314819336,
+ "step": 2965
+ },
+ {
+ "epoch": 41.19571865443425,
+ "grad_norm": 0.2370915710926056,
+ "learning_rate": 0.0006,
+ "loss": 3.599236011505127,
+ "step": 2966
+ },
+ {
+ "epoch": 41.20969855832241,
+ "grad_norm": 0.25749558210372925,
+ "learning_rate": 0.0006,
+ "loss": 3.631399154663086,
+ "step": 2967
+ },
+ {
+ "epoch": 41.22367846221057,
+ "grad_norm": 0.24754776060581207,
+ "learning_rate": 0.0006,
+ "loss": 3.6503920555114746,
+ "step": 2968
+ },
+ {
+ "epoch": 41.237658366098735,
+ "grad_norm": 0.22060903906822205,
+ "learning_rate": 0.0006,
+ "loss": 3.671673536300659,
+ "step": 2969
+ },
+ {
+ "epoch": 41.25163826998689,
+ "grad_norm": 0.19416594505310059,
+ "learning_rate": 0.0006,
+ "loss": 3.6158413887023926,
+ "step": 2970
+ },
+ {
+ "epoch": 41.265618173875055,
+ "grad_norm": 0.22596411406993866,
+ "learning_rate": 0.0006,
+ "loss": 3.64003849029541,
+ "step": 2971
+ },
+ {
+ "epoch": 41.27959807776322,
+ "grad_norm": 0.26785415410995483,
+ "learning_rate": 0.0006,
+ "loss": 3.642327308654785,
+ "step": 2972
+ },
+ {
+ "epoch": 41.293577981651374,
+ "grad_norm": 0.2988710403442383,
+ "learning_rate": 0.0006,
+ "loss": 3.6018929481506348,
+ "step": 2973
+ },
+ {
+ "epoch": 41.30755788553954,
+ "grad_norm": 0.2428133338689804,
+ "learning_rate": 0.0006,
+ "loss": 3.645270824432373,
+ "step": 2974
+ },
+ {
+ "epoch": 41.3215377894277,
+ "grad_norm": 0.20330320298671722,
+ "learning_rate": 0.0006,
+ "loss": 3.625495433807373,
+ "step": 2975
+ },
+ {
+ "epoch": 41.33551769331586,
+ "grad_norm": 0.2267787605524063,
+ "learning_rate": 0.0006,
+ "loss": 3.6469204425811768,
+ "step": 2976
+ },
+ {
+ "epoch": 41.34949759720402,
+ "grad_norm": 0.20702822506427765,
+ "learning_rate": 0.0006,
+ "loss": 3.644191265106201,
+ "step": 2977
+ },
+ {
+ "epoch": 41.36347750109218,
+ "grad_norm": 0.19693221151828766,
+ "learning_rate": 0.0006,
+ "loss": 3.591794967651367,
+ "step": 2978
+ },
+ {
+ "epoch": 41.37745740498034,
+ "grad_norm": 0.21193185448646545,
+ "learning_rate": 0.0006,
+ "loss": 3.6283936500549316,
+ "step": 2979
+ },
+ {
+ "epoch": 41.391437308868504,
+ "grad_norm": 0.20953163504600525,
+ "learning_rate": 0.0006,
+ "loss": 3.617565155029297,
+ "step": 2980
+ },
+ {
+ "epoch": 41.40541721275666,
+ "grad_norm": 0.21839819848537445,
+ "learning_rate": 0.0006,
+ "loss": 3.621209144592285,
+ "step": 2981
+ },
+ {
+ "epoch": 41.419397116644824,
+ "grad_norm": 0.2152671068906784,
+ "learning_rate": 0.0006,
+ "loss": 3.643197536468506,
+ "step": 2982
+ },
+ {
+ "epoch": 41.43337702053299,
+ "grad_norm": 0.2507486641407013,
+ "learning_rate": 0.0006,
+ "loss": 3.657499313354492,
+ "step": 2983
+ },
+ {
+ "epoch": 41.44735692442114,
+ "grad_norm": 0.24695388972759247,
+ "learning_rate": 0.0006,
+ "loss": 3.62170672416687,
+ "step": 2984
+ },
+ {
+ "epoch": 41.46133682830931,
+ "grad_norm": 0.22652822732925415,
+ "learning_rate": 0.0006,
+ "loss": 3.64322566986084,
+ "step": 2985
+ },
+ {
+ "epoch": 41.47531673219746,
+ "grad_norm": 0.2575881779193878,
+ "learning_rate": 0.0006,
+ "loss": 3.659621477127075,
+ "step": 2986
+ },
+ {
+ "epoch": 41.489296636085626,
+ "grad_norm": 0.24162672460079193,
+ "learning_rate": 0.0006,
+ "loss": 3.6527223587036133,
+ "step": 2987
+ },
+ {
+ "epoch": 41.50327653997379,
+ "grad_norm": 0.20930497348308563,
+ "learning_rate": 0.0006,
+ "loss": 3.6412787437438965,
+ "step": 2988
+ },
+ {
+ "epoch": 41.517256443861946,
+ "grad_norm": 0.20480819046497345,
+ "learning_rate": 0.0006,
+ "loss": 3.614767074584961,
+ "step": 2989
+ },
+ {
+ "epoch": 41.53123634775011,
+ "grad_norm": 0.20015820860862732,
+ "learning_rate": 0.0006,
+ "loss": 3.6512045860290527,
+ "step": 2990
+ },
+ {
+ "epoch": 41.54521625163827,
+ "grad_norm": 0.20220743119716644,
+ "learning_rate": 0.0006,
+ "loss": 3.6732325553894043,
+ "step": 2991
+ },
+ {
+ "epoch": 41.55919615552643,
+ "grad_norm": 0.20505326986312866,
+ "learning_rate": 0.0006,
+ "loss": 3.6374664306640625,
+ "step": 2992
+ },
+ {
+ "epoch": 41.57317605941459,
+ "grad_norm": 0.19423344731330872,
+ "learning_rate": 0.0006,
+ "loss": 3.6564126014709473,
+ "step": 2993
+ },
+ {
+ "epoch": 41.58715596330275,
+ "grad_norm": 0.19284583628177643,
+ "learning_rate": 0.0006,
+ "loss": 3.6460509300231934,
+ "step": 2994
+ },
+ {
+ "epoch": 41.60113586719091,
+ "grad_norm": 0.18488959968090057,
+ "learning_rate": 0.0006,
+ "loss": 3.632859468460083,
+ "step": 2995
+ },
+ {
+ "epoch": 41.615115771079076,
+ "grad_norm": 0.18816296756267548,
+ "learning_rate": 0.0006,
+ "loss": 3.5958361625671387,
+ "step": 2996
+ },
+ {
+ "epoch": 41.62909567496723,
+ "grad_norm": 0.18987809121608734,
+ "learning_rate": 0.0006,
+ "loss": 3.6330695152282715,
+ "step": 2997
+ },
+ {
+ "epoch": 41.643075578855395,
+ "grad_norm": 0.18999919295310974,
+ "learning_rate": 0.0006,
+ "loss": 3.6486730575561523,
+ "step": 2998
+ },
+ {
+ "epoch": 41.65705548274356,
+ "grad_norm": 0.20190183818340302,
+ "learning_rate": 0.0006,
+ "loss": 3.6564230918884277,
+ "step": 2999
+ },
+ {
+ "epoch": 41.671035386631715,
+ "grad_norm": 0.20331363379955292,
+ "learning_rate": 0.0006,
+ "loss": 3.6789698600769043,
+ "step": 3000
+ },
+ {
+ "epoch": 41.68501529051988,
+ "grad_norm": 0.21599505841732025,
+ "learning_rate": 0.0006,
+ "loss": 3.6544511318206787,
+ "step": 3001
+ },
+ {
+ "epoch": 41.69899519440804,
+ "grad_norm": 0.21123184263706207,
+ "learning_rate": 0.0006,
+ "loss": 3.6506948471069336,
+ "step": 3002
+ },
+ {
+ "epoch": 41.7129750982962,
+ "grad_norm": 0.21337002515792847,
+ "learning_rate": 0.0006,
+ "loss": 3.676854372024536,
+ "step": 3003
+ },
+ {
+ "epoch": 41.72695500218436,
+ "grad_norm": 0.22567597031593323,
+ "learning_rate": 0.0006,
+ "loss": 3.6467485427856445,
+ "step": 3004
+ },
+ {
+ "epoch": 41.74093490607252,
+ "grad_norm": 0.22923491895198822,
+ "learning_rate": 0.0006,
+ "loss": 3.663224697113037,
+ "step": 3005
+ },
+ {
+ "epoch": 41.75491480996068,
+ "grad_norm": 0.21511489152908325,
+ "learning_rate": 0.0006,
+ "loss": 3.6290054321289062,
+ "step": 3006
+ },
+ {
+ "epoch": 41.768894713848844,
+ "grad_norm": 0.23855915665626526,
+ "learning_rate": 0.0006,
+ "loss": 3.631225109100342,
+ "step": 3007
+ },
+ {
+ "epoch": 41.782874617737,
+ "grad_norm": 0.22771067917346954,
+ "learning_rate": 0.0006,
+ "loss": 3.652575731277466,
+ "step": 3008
+ },
+ {
+ "epoch": 41.796854521625164,
+ "grad_norm": 0.2006237953901291,
+ "learning_rate": 0.0006,
+ "loss": 3.6883468627929688,
+ "step": 3009
+ },
+ {
+ "epoch": 41.81083442551333,
+ "grad_norm": 0.21182459592819214,
+ "learning_rate": 0.0006,
+ "loss": 3.6443567276000977,
+ "step": 3010
+ },
+ {
+ "epoch": 41.824814329401484,
+ "grad_norm": 0.21083690226078033,
+ "learning_rate": 0.0006,
+ "loss": 3.66660475730896,
+ "step": 3011
+ },
+ {
+ "epoch": 41.83879423328965,
+ "grad_norm": 0.21232296526432037,
+ "learning_rate": 0.0006,
+ "loss": 3.6436524391174316,
+ "step": 3012
+ },
+ {
+ "epoch": 41.8527741371778,
+ "grad_norm": 0.2089361697435379,
+ "learning_rate": 0.0006,
+ "loss": 3.648113250732422,
+ "step": 3013
+ },
+ {
+ "epoch": 41.86675404106597,
+ "grad_norm": 0.21517033874988556,
+ "learning_rate": 0.0006,
+ "loss": 3.6382269859313965,
+ "step": 3014
+ },
+ {
+ "epoch": 41.88073394495413,
+ "grad_norm": 0.1930733323097229,
+ "learning_rate": 0.0006,
+ "loss": 3.639441967010498,
+ "step": 3015
+ },
+ {
+ "epoch": 41.89471384884229,
+ "grad_norm": 0.18282832205295563,
+ "learning_rate": 0.0006,
+ "loss": 3.652860164642334,
+ "step": 3016
+ },
+ {
+ "epoch": 41.90869375273045,
+ "grad_norm": 0.18649716675281525,
+ "learning_rate": 0.0006,
+ "loss": 3.6335558891296387,
+ "step": 3017
+ },
+ {
+ "epoch": 41.92267365661861,
+ "grad_norm": 0.18873754143714905,
+ "learning_rate": 0.0006,
+ "loss": 3.6743149757385254,
+ "step": 3018
+ },
+ {
+ "epoch": 41.93665356050677,
+ "grad_norm": 0.1937907189130783,
+ "learning_rate": 0.0006,
+ "loss": 3.6749300956726074,
+ "step": 3019
+ },
+ {
+ "epoch": 41.95063346439493,
+ "grad_norm": 0.20620854198932648,
+ "learning_rate": 0.0006,
+ "loss": 3.6591262817382812,
+ "step": 3020
+ },
+ {
+ "epoch": 41.964613368283096,
+ "grad_norm": 0.18541009724140167,
+ "learning_rate": 0.0006,
+ "loss": 3.647010326385498,
+ "step": 3021
+ },
+ {
+ "epoch": 41.97859327217125,
+ "grad_norm": 0.19224928319454193,
+ "learning_rate": 0.0006,
+ "loss": 3.629920482635498,
+ "step": 3022
+ },
+ {
+ "epoch": 41.992573176059416,
+ "grad_norm": 0.21286419034004211,
+ "learning_rate": 0.0006,
+ "loss": 3.6516964435577393,
+ "step": 3023
+ },
+ {
+ "epoch": 42.0,
+ "grad_norm": 0.24787360429763794,
+ "learning_rate": 0.0006,
+ "loss": 3.6378865242004395,
+ "step": 3024
+ },
+ {
+ "epoch": 42.0,
+ "eval_loss": 3.9910318851470947,
+ "eval_runtime": 43.7914,
+ "eval_samples_per_second": 55.764,
+ "eval_steps_per_second": 3.494,
+ "step": 3024
+ },
+ {
+ "epoch": 42.01397990388816,
+ "grad_norm": 0.21036255359649658,
+ "learning_rate": 0.0006,
+ "loss": 3.6604344844818115,
+ "step": 3025
+ },
+ {
+ "epoch": 42.02795980777632,
+ "grad_norm": 0.22240597009658813,
+ "learning_rate": 0.0006,
+ "loss": 3.6160645484924316,
+ "step": 3026
+ },
+ {
+ "epoch": 42.04193971166448,
+ "grad_norm": 0.2487850785255432,
+ "learning_rate": 0.0006,
+ "loss": 3.6293773651123047,
+ "step": 3027
+ },
+ {
+ "epoch": 42.05591961555265,
+ "grad_norm": 0.27058133482933044,
+ "learning_rate": 0.0006,
+ "loss": 3.5827436447143555,
+ "step": 3028
+ },
+ {
+ "epoch": 42.0698995194408,
+ "grad_norm": 0.25001782178878784,
+ "learning_rate": 0.0006,
+ "loss": 3.5833029747009277,
+ "step": 3029
+ },
+ {
+ "epoch": 42.083879423328966,
+ "grad_norm": 0.23811939358711243,
+ "learning_rate": 0.0006,
+ "loss": 3.605585813522339,
+ "step": 3030
+ },
+ {
+ "epoch": 42.09785932721712,
+ "grad_norm": 0.23279601335525513,
+ "learning_rate": 0.0006,
+ "loss": 3.607205867767334,
+ "step": 3031
+ },
+ {
+ "epoch": 42.111839231105286,
+ "grad_norm": 0.24410508573055267,
+ "learning_rate": 0.0006,
+ "loss": 3.621175765991211,
+ "step": 3032
+ },
+ {
+ "epoch": 42.12581913499345,
+ "grad_norm": 0.24782028794288635,
+ "learning_rate": 0.0006,
+ "loss": 3.6236867904663086,
+ "step": 3033
+ },
+ {
+ "epoch": 42.139799038881605,
+ "grad_norm": 0.2301972657442093,
+ "learning_rate": 0.0006,
+ "loss": 3.603853464126587,
+ "step": 3034
+ },
+ {
+ "epoch": 42.15377894276977,
+ "grad_norm": 0.21988637745380402,
+ "learning_rate": 0.0006,
+ "loss": 3.600142002105713,
+ "step": 3035
+ },
+ {
+ "epoch": 42.16775884665793,
+ "grad_norm": 0.22623786330223083,
+ "learning_rate": 0.0006,
+ "loss": 3.61971116065979,
+ "step": 3036
+ },
+ {
+ "epoch": 42.18173875054609,
+ "grad_norm": 0.21844688057899475,
+ "learning_rate": 0.0006,
+ "loss": 3.61320161819458,
+ "step": 3037
+ },
+ {
+ "epoch": 42.19571865443425,
+ "grad_norm": 0.20444536209106445,
+ "learning_rate": 0.0006,
+ "loss": 3.6179633140563965,
+ "step": 3038
+ },
+ {
+ "epoch": 42.20969855832241,
+ "grad_norm": 0.22862036526203156,
+ "learning_rate": 0.0006,
+ "loss": 3.605433940887451,
+ "step": 3039
+ },
+ {
+ "epoch": 42.22367846221057,
+ "grad_norm": 0.2906605005264282,
+ "learning_rate": 0.0006,
+ "loss": 3.6279449462890625,
+ "step": 3040
+ },
+ {
+ "epoch": 42.237658366098735,
+ "grad_norm": 0.29074418544769287,
+ "learning_rate": 0.0006,
+ "loss": 3.5959763526916504,
+ "step": 3041
+ },
+ {
+ "epoch": 42.25163826998689,
+ "grad_norm": 0.1994444876909256,
+ "learning_rate": 0.0006,
+ "loss": 3.5858588218688965,
+ "step": 3042
+ },
+ {
+ "epoch": 42.265618173875055,
+ "grad_norm": 0.20793452858924866,
+ "learning_rate": 0.0006,
+ "loss": 3.604630470275879,
+ "step": 3043
+ },
+ {
+ "epoch": 42.27959807776322,
+ "grad_norm": 0.2119535505771637,
+ "learning_rate": 0.0006,
+ "loss": 3.6287126541137695,
+ "step": 3044
+ },
+ {
+ "epoch": 42.293577981651374,
+ "grad_norm": 0.21092535555362701,
+ "learning_rate": 0.0006,
+ "loss": 3.646294593811035,
+ "step": 3045
+ },
+ {
+ "epoch": 42.30755788553954,
+ "grad_norm": 0.21474479138851166,
+ "learning_rate": 0.0006,
+ "loss": 3.6364355087280273,
+ "step": 3046
+ },
+ {
+ "epoch": 42.3215377894277,
+ "grad_norm": 0.21100781857967377,
+ "learning_rate": 0.0006,
+ "loss": 3.622528553009033,
+ "step": 3047
+ },
+ {
+ "epoch": 42.33551769331586,
+ "grad_norm": 0.20739853382110596,
+ "learning_rate": 0.0006,
+ "loss": 3.6261959075927734,
+ "step": 3048
+ },
+ {
+ "epoch": 42.34949759720402,
+ "grad_norm": 0.22264131903648376,
+ "learning_rate": 0.0006,
+ "loss": 3.6195173263549805,
+ "step": 3049
+ },
+ {
+ "epoch": 42.36347750109218,
+ "grad_norm": 0.23696285486221313,
+ "learning_rate": 0.0006,
+ "loss": 3.631103515625,
+ "step": 3050
+ },
+ {
+ "epoch": 42.37745740498034,
+ "grad_norm": 0.2124902606010437,
+ "learning_rate": 0.0006,
+ "loss": 3.6490437984466553,
+ "step": 3051
+ },
+ {
+ "epoch": 42.391437308868504,
+ "grad_norm": 0.18831083178520203,
+ "learning_rate": 0.0006,
+ "loss": 3.628459930419922,
+ "step": 3052
+ },
+ {
+ "epoch": 42.40541721275666,
+ "grad_norm": 0.20390060544013977,
+ "learning_rate": 0.0006,
+ "loss": 3.6348538398742676,
+ "step": 3053
+ },
+ {
+ "epoch": 42.419397116644824,
+ "grad_norm": 0.2205851823091507,
+ "learning_rate": 0.0006,
+ "loss": 3.6286797523498535,
+ "step": 3054
+ },
+ {
+ "epoch": 42.43337702053299,
+ "grad_norm": 0.21518434584140778,
+ "learning_rate": 0.0006,
+ "loss": 3.5918965339660645,
+ "step": 3055
+ },
+ {
+ "epoch": 42.44735692442114,
+ "grad_norm": 0.2342296987771988,
+ "learning_rate": 0.0006,
+ "loss": 3.6364407539367676,
+ "step": 3056
+ },
+ {
+ "epoch": 42.46133682830931,
+ "grad_norm": 0.2304094135761261,
+ "learning_rate": 0.0006,
+ "loss": 3.6561477184295654,
+ "step": 3057
+ },
+ {
+ "epoch": 42.47531673219746,
+ "grad_norm": 0.20882441103458405,
+ "learning_rate": 0.0006,
+ "loss": 3.611250638961792,
+ "step": 3058
+ },
+ {
+ "epoch": 42.489296636085626,
+ "grad_norm": 0.24346643686294556,
+ "learning_rate": 0.0006,
+ "loss": 3.580082416534424,
+ "step": 3059
+ },
+ {
+ "epoch": 42.50327653997379,
+ "grad_norm": 0.260711133480072,
+ "learning_rate": 0.0006,
+ "loss": 3.6179792881011963,
+ "step": 3060
+ },
+ {
+ "epoch": 42.517256443861946,
+ "grad_norm": 0.21223759651184082,
+ "learning_rate": 0.0006,
+ "loss": 3.6153154373168945,
+ "step": 3061
+ },
+ {
+ "epoch": 42.53123634775011,
+ "grad_norm": 0.21429137885570526,
+ "learning_rate": 0.0006,
+ "loss": 3.6003379821777344,
+ "step": 3062
+ },
+ {
+ "epoch": 42.54521625163827,
+ "grad_norm": 0.23659434914588928,
+ "learning_rate": 0.0006,
+ "loss": 3.6540589332580566,
+ "step": 3063
+ },
+ {
+ "epoch": 42.55919615552643,
+ "grad_norm": 0.280344158411026,
+ "learning_rate": 0.0006,
+ "loss": 3.6406192779541016,
+ "step": 3064
+ },
+ {
+ "epoch": 42.57317605941459,
+ "grad_norm": 0.2903953194618225,
+ "learning_rate": 0.0006,
+ "loss": 3.643479824066162,
+ "step": 3065
+ },
+ {
+ "epoch": 42.58715596330275,
+ "grad_norm": 0.24958311021327972,
+ "learning_rate": 0.0006,
+ "loss": 3.6320221424102783,
+ "step": 3066
+ },
+ {
+ "epoch": 42.60113586719091,
+ "grad_norm": 0.22525225579738617,
+ "learning_rate": 0.0006,
+ "loss": 3.641676425933838,
+ "step": 3067
+ },
+ {
+ "epoch": 42.615115771079076,
+ "grad_norm": 0.23025161027908325,
+ "learning_rate": 0.0006,
+ "loss": 3.6465210914611816,
+ "step": 3068
+ },
+ {
+ "epoch": 42.62909567496723,
+ "grad_norm": 0.21947328746318817,
+ "learning_rate": 0.0006,
+ "loss": 3.667877435684204,
+ "step": 3069
+ },
+ {
+ "epoch": 42.643075578855395,
+ "grad_norm": 0.22809366881847382,
+ "learning_rate": 0.0006,
+ "loss": 3.663166046142578,
+ "step": 3070
+ },
+ {
+ "epoch": 42.65705548274356,
+ "grad_norm": 0.21938708424568176,
+ "learning_rate": 0.0006,
+ "loss": 3.619001865386963,
+ "step": 3071
+ },
+ {
+ "epoch": 42.671035386631715,
+ "grad_norm": 0.231620192527771,
+ "learning_rate": 0.0006,
+ "loss": 3.652332305908203,
+ "step": 3072
+ },
+ {
+ "epoch": 42.68501529051988,
+ "grad_norm": 0.23683936893939972,
+ "learning_rate": 0.0006,
+ "loss": 3.6633410453796387,
+ "step": 3073
+ },
+ {
+ "epoch": 42.69899519440804,
+ "grad_norm": 0.23752044141292572,
+ "learning_rate": 0.0006,
+ "loss": 3.646064281463623,
+ "step": 3074
+ },
+ {
+ "epoch": 42.7129750982962,
+ "grad_norm": 0.23041971027851105,
+ "learning_rate": 0.0006,
+ "loss": 3.6431851387023926,
+ "step": 3075
+ },
+ {
+ "epoch": 42.72695500218436,
+ "grad_norm": 0.220438614487648,
+ "learning_rate": 0.0006,
+ "loss": 3.6499950885772705,
+ "step": 3076
+ },
+ {
+ "epoch": 42.74093490607252,
+ "grad_norm": 0.24297107756137848,
+ "learning_rate": 0.0006,
+ "loss": 3.6655125617980957,
+ "step": 3077
+ },
+ {
+ "epoch": 42.75491480996068,
+ "grad_norm": 0.21835893392562866,
+ "learning_rate": 0.0006,
+ "loss": 3.61672043800354,
+ "step": 3078
+ },
+ {
+ "epoch": 42.768894713848844,
+ "grad_norm": 0.22490793466567993,
+ "learning_rate": 0.0006,
+ "loss": 3.652825355529785,
+ "step": 3079
+ },
+ {
+ "epoch": 42.782874617737,
+ "grad_norm": 0.2246086746454239,
+ "learning_rate": 0.0006,
+ "loss": 3.6290056705474854,
+ "step": 3080
+ },
+ {
+ "epoch": 42.796854521625164,
+ "grad_norm": 0.21527042984962463,
+ "learning_rate": 0.0006,
+ "loss": 3.6587281227111816,
+ "step": 3081
+ },
+ {
+ "epoch": 42.81083442551333,
+ "grad_norm": 0.19586899876594543,
+ "learning_rate": 0.0006,
+ "loss": 3.639626979827881,
+ "step": 3082
+ },
+ {
+ "epoch": 42.824814329401484,
+ "grad_norm": 0.20881155133247375,
+ "learning_rate": 0.0006,
+ "loss": 3.6305861473083496,
+ "step": 3083
+ },
+ {
+ "epoch": 42.83879423328965,
+ "grad_norm": 0.20094981789588928,
+ "learning_rate": 0.0006,
+ "loss": 3.609614849090576,
+ "step": 3084
+ },
+ {
+ "epoch": 42.8527741371778,
+ "grad_norm": 0.21786150336265564,
+ "learning_rate": 0.0006,
+ "loss": 3.6423556804656982,
+ "step": 3085
+ },
+ {
+ "epoch": 42.86675404106597,
+ "grad_norm": 0.24493595957756042,
+ "learning_rate": 0.0006,
+ "loss": 3.631321668624878,
+ "step": 3086
+ },
+ {
+ "epoch": 42.88073394495413,
+ "grad_norm": 0.2437327355146408,
+ "learning_rate": 0.0006,
+ "loss": 3.6624178886413574,
+ "step": 3087
+ },
+ {
+ "epoch": 42.89471384884229,
+ "grad_norm": 0.21020543575286865,
+ "learning_rate": 0.0006,
+ "loss": 3.6567513942718506,
+ "step": 3088
+ },
+ {
+ "epoch": 42.90869375273045,
+ "grad_norm": 0.18977083265781403,
+ "learning_rate": 0.0006,
+ "loss": 3.6268601417541504,
+ "step": 3089
+ },
+ {
+ "epoch": 42.92267365661861,
+ "grad_norm": 0.2211192399263382,
+ "learning_rate": 0.0006,
+ "loss": 3.6690402030944824,
+ "step": 3090
+ },
+ {
+ "epoch": 42.93665356050677,
+ "grad_norm": 0.2695990204811096,
+ "learning_rate": 0.0006,
+ "loss": 3.667701244354248,
+ "step": 3091
+ },
+ {
+ "epoch": 42.95063346439493,
+ "grad_norm": 0.25910887122154236,
+ "learning_rate": 0.0006,
+ "loss": 3.627504587173462,
+ "step": 3092
+ },
+ {
+ "epoch": 42.964613368283096,
+ "grad_norm": 0.2466248720884323,
+ "learning_rate": 0.0006,
+ "loss": 3.6462182998657227,
+ "step": 3093
+ },
+ {
+ "epoch": 42.97859327217125,
+ "grad_norm": 0.22997038066387177,
+ "learning_rate": 0.0006,
+ "loss": 3.647430896759033,
+ "step": 3094
+ },
+ {
+ "epoch": 42.992573176059416,
+ "grad_norm": 0.1989113837480545,
+ "learning_rate": 0.0006,
+ "loss": 3.6502084732055664,
+ "step": 3095
+ },
+ {
+ "epoch": 43.0,
+ "grad_norm": 0.22976496815681458,
+ "learning_rate": 0.0006,
+ "loss": 3.6963884830474854,
+ "step": 3096
+ },
+ {
+ "epoch": 43.0,
+ "eval_loss": 3.9656779766082764,
+ "eval_runtime": 43.9281,
+ "eval_samples_per_second": 55.591,
+ "eval_steps_per_second": 3.483,
+ "step": 3096
+ },
+ {
+ "epoch": 43.01397990388816,
+ "grad_norm": 0.2862325608730316,
+ "learning_rate": 0.0006,
+ "loss": 3.581247568130493,
+ "step": 3097
+ },
+ {
+ "epoch": 43.02795980777632,
+ "grad_norm": 0.3867015540599823,
+ "learning_rate": 0.0006,
+ "loss": 3.611076593399048,
+ "step": 3098
+ },
+ {
+ "epoch": 43.04193971166448,
+ "grad_norm": 0.4139448404312134,
+ "learning_rate": 0.0006,
+ "loss": 3.625164031982422,
+ "step": 3099
+ },
+ {
+ "epoch": 43.05591961555265,
+ "grad_norm": 0.292407363653183,
+ "learning_rate": 0.0006,
+ "loss": 3.615546703338623,
+ "step": 3100
+ },
+ {
+ "epoch": 43.0698995194408,
+ "grad_norm": 0.24272124469280243,
+ "learning_rate": 0.0006,
+ "loss": 3.5965943336486816,
+ "step": 3101
+ },
+ {
+ "epoch": 43.083879423328966,
+ "grad_norm": 0.2761254608631134,
+ "learning_rate": 0.0006,
+ "loss": 3.605706214904785,
+ "step": 3102
+ },
+ {
+ "epoch": 43.09785932721712,
+ "grad_norm": 0.25232183933258057,
+ "learning_rate": 0.0006,
+ "loss": 3.6252012252807617,
+ "step": 3103
+ },
+ {
+ "epoch": 43.111839231105286,
+ "grad_norm": 0.248970165848732,
+ "learning_rate": 0.0006,
+ "loss": 3.6028337478637695,
+ "step": 3104
+ },
+ {
+ "epoch": 43.12581913499345,
+ "grad_norm": 0.22088921070098877,
+ "learning_rate": 0.0006,
+ "loss": 3.591614007949829,
+ "step": 3105
+ },
+ {
+ "epoch": 43.139799038881605,
+ "grad_norm": 0.21528655290603638,
+ "learning_rate": 0.0006,
+ "loss": 3.6237306594848633,
+ "step": 3106
+ },
+ {
+ "epoch": 43.15377894276977,
+ "grad_norm": 0.22799135744571686,
+ "learning_rate": 0.0006,
+ "loss": 3.5968847274780273,
+ "step": 3107
+ },
+ {
+ "epoch": 43.16775884665793,
+ "grad_norm": 0.23102127015590668,
+ "learning_rate": 0.0006,
+ "loss": 3.6046414375305176,
+ "step": 3108
+ },
+ {
+ "epoch": 43.18173875054609,
+ "grad_norm": 0.22876501083374023,
+ "learning_rate": 0.0006,
+ "loss": 3.635608196258545,
+ "step": 3109
+ },
+ {
+ "epoch": 43.19571865443425,
+ "grad_norm": 0.24920420348644257,
+ "learning_rate": 0.0006,
+ "loss": 3.628662109375,
+ "step": 3110
+ },
+ {
+ "epoch": 43.20969855832241,
+ "grad_norm": 0.2527749538421631,
+ "learning_rate": 0.0006,
+ "loss": 3.6109046936035156,
+ "step": 3111
+ },
+ {
+ "epoch": 43.22367846221057,
+ "grad_norm": 0.22529229521751404,
+ "learning_rate": 0.0006,
+ "loss": 3.6536030769348145,
+ "step": 3112
+ },
+ {
+ "epoch": 43.237658366098735,
+ "grad_norm": 0.20031821727752686,
+ "learning_rate": 0.0006,
+ "loss": 3.6328792572021484,
+ "step": 3113
+ },
+ {
+ "epoch": 43.25163826998689,
+ "grad_norm": 0.21075189113616943,
+ "learning_rate": 0.0006,
+ "loss": 3.6200530529022217,
+ "step": 3114
+ },
+ {
+ "epoch": 43.265618173875055,
+ "grad_norm": 0.21164856851100922,
+ "learning_rate": 0.0006,
+ "loss": 3.6276001930236816,
+ "step": 3115
+ },
+ {
+ "epoch": 43.27959807776322,
+ "grad_norm": 0.19306758046150208,
+ "learning_rate": 0.0006,
+ "loss": 3.608675956726074,
+ "step": 3116
+ },
+ {
+ "epoch": 43.293577981651374,
+ "grad_norm": 0.20288796722888947,
+ "learning_rate": 0.0006,
+ "loss": 3.6057004928588867,
+ "step": 3117
+ },
+ {
+ "epoch": 43.30755788553954,
+ "grad_norm": 0.1901484876871109,
+ "learning_rate": 0.0006,
+ "loss": 3.6191725730895996,
+ "step": 3118
+ },
+ {
+ "epoch": 43.3215377894277,
+ "grad_norm": 0.19438181817531586,
+ "learning_rate": 0.0006,
+ "loss": 3.5814337730407715,
+ "step": 3119
+ },
+ {
+ "epoch": 43.33551769331586,
+ "grad_norm": 0.19924484193325043,
+ "learning_rate": 0.0006,
+ "loss": 3.6168713569641113,
+ "step": 3120
+ },
+ {
+ "epoch": 43.34949759720402,
+ "grad_norm": 0.20757409930229187,
+ "learning_rate": 0.0006,
+ "loss": 3.6281509399414062,
+ "step": 3121
+ },
+ {
+ "epoch": 43.36347750109218,
+ "grad_norm": 0.22500184178352356,
+ "learning_rate": 0.0006,
+ "loss": 3.635101795196533,
+ "step": 3122
+ },
+ {
+ "epoch": 43.37745740498034,
+ "grad_norm": 0.22061555087566376,
+ "learning_rate": 0.0006,
+ "loss": 3.630622386932373,
+ "step": 3123
+ },
+ {
+ "epoch": 43.391437308868504,
+ "grad_norm": 0.2094152420759201,
+ "learning_rate": 0.0006,
+ "loss": 3.581803798675537,
+ "step": 3124
+ },
+ {
+ "epoch": 43.40541721275666,
+ "grad_norm": 0.19607678055763245,
+ "learning_rate": 0.0006,
+ "loss": 3.6149864196777344,
+ "step": 3125
+ },
+ {
+ "epoch": 43.419397116644824,
+ "grad_norm": 0.18985028564929962,
+ "learning_rate": 0.0006,
+ "loss": 3.6338040828704834,
+ "step": 3126
+ },
+ {
+ "epoch": 43.43337702053299,
+ "grad_norm": 0.20490778982639313,
+ "learning_rate": 0.0006,
+ "loss": 3.63275146484375,
+ "step": 3127
+ },
+ {
+ "epoch": 43.44735692442114,
+ "grad_norm": 0.24385297298431396,
+ "learning_rate": 0.0006,
+ "loss": 3.6412134170532227,
+ "step": 3128
+ },
+ {
+ "epoch": 43.46133682830931,
+ "grad_norm": 0.243601992726326,
+ "learning_rate": 0.0006,
+ "loss": 3.594238758087158,
+ "step": 3129
+ },
+ {
+ "epoch": 43.47531673219746,
+ "grad_norm": 0.21314913034439087,
+ "learning_rate": 0.0006,
+ "loss": 3.5962629318237305,
+ "step": 3130
+ },
+ {
+ "epoch": 43.489296636085626,
+ "grad_norm": 0.20499329268932343,
+ "learning_rate": 0.0006,
+ "loss": 3.61600923538208,
+ "step": 3131
+ },
+ {
+ "epoch": 43.50327653997379,
+ "grad_norm": 0.20199540257453918,
+ "learning_rate": 0.0006,
+ "loss": 3.638469934463501,
+ "step": 3132
+ },
+ {
+ "epoch": 43.517256443861946,
+ "grad_norm": 0.19932983815670013,
+ "learning_rate": 0.0006,
+ "loss": 3.619145393371582,
+ "step": 3133
+ },
+ {
+ "epoch": 43.53123634775011,
+ "grad_norm": 0.20401954650878906,
+ "learning_rate": 0.0006,
+ "loss": 3.643700122833252,
+ "step": 3134
+ },
+ {
+ "epoch": 43.54521625163827,
+ "grad_norm": 0.20784904062747955,
+ "learning_rate": 0.0006,
+ "loss": 3.619272232055664,
+ "step": 3135
+ },
+ {
+ "epoch": 43.55919615552643,
+ "grad_norm": 0.21003122627735138,
+ "learning_rate": 0.0006,
+ "loss": 3.629542827606201,
+ "step": 3136
+ },
+ {
+ "epoch": 43.57317605941459,
+ "grad_norm": 0.2220298945903778,
+ "learning_rate": 0.0006,
+ "loss": 3.655543804168701,
+ "step": 3137
+ },
+ {
+ "epoch": 43.58715596330275,
+ "grad_norm": 0.21159163117408752,
+ "learning_rate": 0.0006,
+ "loss": 3.6092495918273926,
+ "step": 3138
+ },
+ {
+ "epoch": 43.60113586719091,
+ "grad_norm": 0.19462746381759644,
+ "learning_rate": 0.0006,
+ "loss": 3.6447129249572754,
+ "step": 3139
+ },
+ {
+ "epoch": 43.615115771079076,
+ "grad_norm": 0.20523829758167267,
+ "learning_rate": 0.0006,
+ "loss": 3.6292669773101807,
+ "step": 3140
+ },
+ {
+ "epoch": 43.62909567496723,
+ "grad_norm": 0.2172321230173111,
+ "learning_rate": 0.0006,
+ "loss": 3.6144580841064453,
+ "step": 3141
+ },
+ {
+ "epoch": 43.643075578855395,
+ "grad_norm": 0.21751564741134644,
+ "learning_rate": 0.0006,
+ "loss": 3.6381068229675293,
+ "step": 3142
+ },
+ {
+ "epoch": 43.65705548274356,
+ "grad_norm": 0.1914236694574356,
+ "learning_rate": 0.0006,
+ "loss": 3.6392078399658203,
+ "step": 3143
+ },
+ {
+ "epoch": 43.671035386631715,
+ "grad_norm": 0.19792547821998596,
+ "learning_rate": 0.0006,
+ "loss": 3.6394457817077637,
+ "step": 3144
+ },
+ {
+ "epoch": 43.68501529051988,
+ "grad_norm": 0.2106214165687561,
+ "learning_rate": 0.0006,
+ "loss": 3.626147747039795,
+ "step": 3145
+ },
+ {
+ "epoch": 43.69899519440804,
+ "grad_norm": 0.21802955865859985,
+ "learning_rate": 0.0006,
+ "loss": 3.63372802734375,
+ "step": 3146
+ },
+ {
+ "epoch": 43.7129750982962,
+ "grad_norm": 0.21498727798461914,
+ "learning_rate": 0.0006,
+ "loss": 3.6193063259124756,
+ "step": 3147
+ },
+ {
+ "epoch": 43.72695500218436,
+ "grad_norm": 0.2176690250635147,
+ "learning_rate": 0.0006,
+ "loss": 3.6431519985198975,
+ "step": 3148
+ },
+ {
+ "epoch": 43.74093490607252,
+ "grad_norm": 0.26883506774902344,
+ "learning_rate": 0.0006,
+ "loss": 3.6216721534729004,
+ "step": 3149
+ },
+ {
+ "epoch": 43.75491480996068,
+ "grad_norm": 0.23485299944877625,
+ "learning_rate": 0.0006,
+ "loss": 3.6361191272735596,
+ "step": 3150
+ },
+ {
+ "epoch": 43.768894713848844,
+ "grad_norm": 0.20496341586112976,
+ "learning_rate": 0.0006,
+ "loss": 3.6258792877197266,
+ "step": 3151
+ },
+ {
+ "epoch": 43.782874617737,
+ "grad_norm": 0.21792510151863098,
+ "learning_rate": 0.0006,
+ "loss": 3.6522839069366455,
+ "step": 3152
+ },
+ {
+ "epoch": 43.796854521625164,
+ "grad_norm": 0.2589452564716339,
+ "learning_rate": 0.0006,
+ "loss": 3.651235580444336,
+ "step": 3153
+ },
+ {
+ "epoch": 43.81083442551333,
+ "grad_norm": 0.24883611500263214,
+ "learning_rate": 0.0006,
+ "loss": 3.6382546424865723,
+ "step": 3154
+ },
+ {
+ "epoch": 43.824814329401484,
+ "grad_norm": 0.22466720640659332,
+ "learning_rate": 0.0006,
+ "loss": 3.6232261657714844,
+ "step": 3155
+ },
+ {
+ "epoch": 43.83879423328965,
+ "grad_norm": 0.19477292895317078,
+ "learning_rate": 0.0006,
+ "loss": 3.6350135803222656,
+ "step": 3156
+ },
+ {
+ "epoch": 43.8527741371778,
+ "grad_norm": 0.20302540063858032,
+ "learning_rate": 0.0006,
+ "loss": 3.638143539428711,
+ "step": 3157
+ },
+ {
+ "epoch": 43.86675404106597,
+ "grad_norm": 0.2112276554107666,
+ "learning_rate": 0.0006,
+ "loss": 3.6415610313415527,
+ "step": 3158
+ },
+ {
+ "epoch": 43.88073394495413,
+ "grad_norm": 0.20544779300689697,
+ "learning_rate": 0.0006,
+ "loss": 3.6437134742736816,
+ "step": 3159
+ },
+ {
+ "epoch": 43.89471384884229,
+ "grad_norm": 0.2320292890071869,
+ "learning_rate": 0.0006,
+ "loss": 3.6178359985351562,
+ "step": 3160
+ },
+ {
+ "epoch": 43.90869375273045,
+ "grad_norm": 0.25862693786621094,
+ "learning_rate": 0.0006,
+ "loss": 3.618229389190674,
+ "step": 3161
+ },
+ {
+ "epoch": 43.92267365661861,
+ "grad_norm": 0.2741934061050415,
+ "learning_rate": 0.0006,
+ "loss": 3.6046690940856934,
+ "step": 3162
+ },
+ {
+ "epoch": 43.93665356050677,
+ "grad_norm": 0.24312593042850494,
+ "learning_rate": 0.0006,
+ "loss": 3.5835556983947754,
+ "step": 3163
+ },
+ {
+ "epoch": 43.95063346439493,
+ "grad_norm": 0.22174517810344696,
+ "learning_rate": 0.0006,
+ "loss": 3.6505162715911865,
+ "step": 3164
+ },
+ {
+ "epoch": 43.964613368283096,
+ "grad_norm": 0.22016975283622742,
+ "learning_rate": 0.0006,
+ "loss": 3.6385562419891357,
+ "step": 3165
+ },
+ {
+ "epoch": 43.97859327217125,
+ "grad_norm": 0.23034313321113586,
+ "learning_rate": 0.0006,
+ "loss": 3.6345865726470947,
+ "step": 3166
+ },
+ {
+ "epoch": 43.992573176059416,
+ "grad_norm": 0.21236231923103333,
+ "learning_rate": 0.0006,
+ "loss": 3.6337084770202637,
+ "step": 3167
+ },
+ {
+ "epoch": 44.0,
+ "grad_norm": 0.2344549298286438,
+ "learning_rate": 0.0006,
+ "loss": 3.677978515625,
+ "step": 3168
+ },
+ {
+ "epoch": 44.0,
+ "eval_loss": 3.9817888736724854,
+ "eval_runtime": 44.4396,
+ "eval_samples_per_second": 54.951,
+ "eval_steps_per_second": 3.443,
+ "step": 3168
+ },
+ {
+ "epoch": 44.01397990388816,
+ "grad_norm": 0.19790801405906677,
+ "learning_rate": 0.0006,
+ "loss": 3.590817451477051,
+ "step": 3169
+ },
+ {
+ "epoch": 44.02795980777632,
+ "grad_norm": 0.22922387719154358,
+ "learning_rate": 0.0006,
+ "loss": 3.643888473510742,
+ "step": 3170
+ },
+ {
+ "epoch": 44.04193971166448,
+ "grad_norm": 0.24750149250030518,
+ "learning_rate": 0.0006,
+ "loss": 3.596278667449951,
+ "step": 3171
+ },
+ {
+ "epoch": 44.05591961555265,
+ "grad_norm": 0.2511967420578003,
+ "learning_rate": 0.0006,
+ "loss": 3.6138253211975098,
+ "step": 3172
+ },
+ {
+ "epoch": 44.0698995194408,
+ "grad_norm": 0.2530326843261719,
+ "learning_rate": 0.0006,
+ "loss": 3.5710060596466064,
+ "step": 3173
+ },
+ {
+ "epoch": 44.083879423328966,
+ "grad_norm": 0.2629041373729706,
+ "learning_rate": 0.0006,
+ "loss": 3.61676025390625,
+ "step": 3174
+ },
+ {
+ "epoch": 44.09785932721712,
+ "grad_norm": 0.27373939752578735,
+ "learning_rate": 0.0006,
+ "loss": 3.613091230392456,
+ "step": 3175
+ },
+ {
+ "epoch": 44.111839231105286,
+ "grad_norm": 0.24354346096515656,
+ "learning_rate": 0.0006,
+ "loss": 3.6133360862731934,
+ "step": 3176
+ },
+ {
+ "epoch": 44.12581913499345,
+ "grad_norm": 0.21540892124176025,
+ "learning_rate": 0.0006,
+ "loss": 3.6367645263671875,
+ "step": 3177
+ },
+ {
+ "epoch": 44.139799038881605,
+ "grad_norm": 0.22251278162002563,
+ "learning_rate": 0.0006,
+ "loss": 3.6266322135925293,
+ "step": 3178
+ },
+ {
+ "epoch": 44.15377894276977,
+ "grad_norm": 0.26196029782295227,
+ "learning_rate": 0.0006,
+ "loss": 3.616487979888916,
+ "step": 3179
+ },
+ {
+ "epoch": 44.16775884665793,
+ "grad_norm": 0.2614341080188751,
+ "learning_rate": 0.0006,
+ "loss": 3.5902786254882812,
+ "step": 3180
+ },
+ {
+ "epoch": 44.18173875054609,
+ "grad_norm": 0.23517177999019623,
+ "learning_rate": 0.0006,
+ "loss": 3.610124111175537,
+ "step": 3181
+ },
+ {
+ "epoch": 44.19571865443425,
+ "grad_norm": 0.20091469585895538,
+ "learning_rate": 0.0006,
+ "loss": 3.5861713886260986,
+ "step": 3182
+ },
+ {
+ "epoch": 44.20969855832241,
+ "grad_norm": 0.19659830629825592,
+ "learning_rate": 0.0006,
+ "loss": 3.6157889366149902,
+ "step": 3183
+ },
+ {
+ "epoch": 44.22367846221057,
+ "grad_norm": 0.20690861344337463,
+ "learning_rate": 0.0006,
+ "loss": 3.5710649490356445,
+ "step": 3184
+ },
+ {
+ "epoch": 44.237658366098735,
+ "grad_norm": 0.2478247433900833,
+ "learning_rate": 0.0006,
+ "loss": 3.609031915664673,
+ "step": 3185
+ },
+ {
+ "epoch": 44.25163826998689,
+ "grad_norm": 0.2678471505641937,
+ "learning_rate": 0.0006,
+ "loss": 3.6412887573242188,
+ "step": 3186
+ },
+ {
+ "epoch": 44.265618173875055,
+ "grad_norm": 0.21856079995632172,
+ "learning_rate": 0.0006,
+ "loss": 3.6113123893737793,
+ "step": 3187
+ },
+ {
+ "epoch": 44.27959807776322,
+ "grad_norm": 0.23104850947856903,
+ "learning_rate": 0.0006,
+ "loss": 3.6022086143493652,
+ "step": 3188
+ },
+ {
+ "epoch": 44.293577981651374,
+ "grad_norm": 0.2380223423242569,
+ "learning_rate": 0.0006,
+ "loss": 3.598735809326172,
+ "step": 3189
+ },
+ {
+ "epoch": 44.30755788553954,
+ "grad_norm": 0.23005320131778717,
+ "learning_rate": 0.0006,
+ "loss": 3.595881938934326,
+ "step": 3190
+ },
+ {
+ "epoch": 44.3215377894277,
+ "grad_norm": 0.23327432572841644,
+ "learning_rate": 0.0006,
+ "loss": 3.6198601722717285,
+ "step": 3191
+ },
+ {
+ "epoch": 44.33551769331586,
+ "grad_norm": 0.2272268831729889,
+ "learning_rate": 0.0006,
+ "loss": 3.6135387420654297,
+ "step": 3192
+ },
+ {
+ "epoch": 44.34949759720402,
+ "grad_norm": 0.2518279552459717,
+ "learning_rate": 0.0006,
+ "loss": 3.6084556579589844,
+ "step": 3193
+ },
+ {
+ "epoch": 44.36347750109218,
+ "grad_norm": 0.27668607234954834,
+ "learning_rate": 0.0006,
+ "loss": 3.644430160522461,
+ "step": 3194
+ },
+ {
+ "epoch": 44.37745740498034,
+ "grad_norm": 0.26110342144966125,
+ "learning_rate": 0.0006,
+ "loss": 3.64072322845459,
+ "step": 3195
+ },
+ {
+ "epoch": 44.391437308868504,
+ "grad_norm": 0.22767964005470276,
+ "learning_rate": 0.0006,
+ "loss": 3.5570502281188965,
+ "step": 3196
+ },
+ {
+ "epoch": 44.40541721275666,
+ "grad_norm": 0.2199093997478485,
+ "learning_rate": 0.0006,
+ "loss": 3.558889150619507,
+ "step": 3197
+ },
+ {
+ "epoch": 44.419397116644824,
+ "grad_norm": 0.21653494238853455,
+ "learning_rate": 0.0006,
+ "loss": 3.6215333938598633,
+ "step": 3198
+ },
+ {
+ "epoch": 44.43337702053299,
+ "grad_norm": 0.1958773136138916,
+ "learning_rate": 0.0006,
+ "loss": 3.588468551635742,
+ "step": 3199
+ },
+ {
+ "epoch": 44.44735692442114,
+ "grad_norm": 0.20205403864383698,
+ "learning_rate": 0.0006,
+ "loss": 3.6109578609466553,
+ "step": 3200
+ },
+ {
+ "epoch": 44.46133682830931,
+ "grad_norm": 0.19632115960121155,
+ "learning_rate": 0.0006,
+ "loss": 3.634315013885498,
+ "step": 3201
+ },
+ {
+ "epoch": 44.47531673219746,
+ "grad_norm": 0.19327203929424286,
+ "learning_rate": 0.0006,
+ "loss": 3.6335930824279785,
+ "step": 3202
+ },
+ {
+ "epoch": 44.489296636085626,
+ "grad_norm": 0.19743897020816803,
+ "learning_rate": 0.0006,
+ "loss": 3.6164016723632812,
+ "step": 3203
+ },
+ {
+ "epoch": 44.50327653997379,
+ "grad_norm": 0.20413564145565033,
+ "learning_rate": 0.0006,
+ "loss": 3.663613796234131,
+ "step": 3204
+ },
+ {
+ "epoch": 44.517256443861946,
+ "grad_norm": 0.2057798206806183,
+ "learning_rate": 0.0006,
+ "loss": 3.625131130218506,
+ "step": 3205
+ },
+ {
+ "epoch": 44.53123634775011,
+ "grad_norm": 0.20076915621757507,
+ "learning_rate": 0.0006,
+ "loss": 3.6362178325653076,
+ "step": 3206
+ },
+ {
+ "epoch": 44.54521625163827,
+ "grad_norm": 0.2381955236196518,
+ "learning_rate": 0.0006,
+ "loss": 3.621263265609741,
+ "step": 3207
+ },
+ {
+ "epoch": 44.55919615552643,
+ "grad_norm": 0.27008768916130066,
+ "learning_rate": 0.0006,
+ "loss": 3.6133322715759277,
+ "step": 3208
+ },
+ {
+ "epoch": 44.57317605941459,
+ "grad_norm": 0.25677573680877686,
+ "learning_rate": 0.0006,
+ "loss": 3.6210851669311523,
+ "step": 3209
+ },
+ {
+ "epoch": 44.58715596330275,
+ "grad_norm": 0.21022997796535492,
+ "learning_rate": 0.0006,
+ "loss": 3.626483917236328,
+ "step": 3210
+ },
+ {
+ "epoch": 44.60113586719091,
+ "grad_norm": 0.19918566942214966,
+ "learning_rate": 0.0006,
+ "loss": 3.6321091651916504,
+ "step": 3211
+ },
+ {
+ "epoch": 44.615115771079076,
+ "grad_norm": 0.2114727795124054,
+ "learning_rate": 0.0006,
+ "loss": 3.5767595767974854,
+ "step": 3212
+ },
+ {
+ "epoch": 44.62909567496723,
+ "grad_norm": 0.20968441665172577,
+ "learning_rate": 0.0006,
+ "loss": 3.6040430068969727,
+ "step": 3213
+ },
+ {
+ "epoch": 44.643075578855395,
+ "grad_norm": 0.19996227324008942,
+ "learning_rate": 0.0006,
+ "loss": 3.6688590049743652,
+ "step": 3214
+ },
+ {
+ "epoch": 44.65705548274356,
+ "grad_norm": 0.19998830556869507,
+ "learning_rate": 0.0006,
+ "loss": 3.6349434852600098,
+ "step": 3215
+ },
+ {
+ "epoch": 44.671035386631715,
+ "grad_norm": 0.20812496542930603,
+ "learning_rate": 0.0006,
+ "loss": 3.6363840103149414,
+ "step": 3216
+ },
+ {
+ "epoch": 44.68501529051988,
+ "grad_norm": 0.1988825500011444,
+ "learning_rate": 0.0006,
+ "loss": 3.6180496215820312,
+ "step": 3217
+ },
+ {
+ "epoch": 44.69899519440804,
+ "grad_norm": 0.2114664614200592,
+ "learning_rate": 0.0006,
+ "loss": 3.6362106800079346,
+ "step": 3218
+ },
+ {
+ "epoch": 44.7129750982962,
+ "grad_norm": 0.19847962260246277,
+ "learning_rate": 0.0006,
+ "loss": 3.618500232696533,
+ "step": 3219
+ },
+ {
+ "epoch": 44.72695500218436,
+ "grad_norm": 0.19903887808322906,
+ "learning_rate": 0.0006,
+ "loss": 3.6360888481140137,
+ "step": 3220
+ },
+ {
+ "epoch": 44.74093490607252,
+ "grad_norm": 0.21198545396327972,
+ "learning_rate": 0.0006,
+ "loss": 3.6347005367279053,
+ "step": 3221
+ },
+ {
+ "epoch": 44.75491480996068,
+ "grad_norm": 0.18334898352622986,
+ "learning_rate": 0.0006,
+ "loss": 3.6160783767700195,
+ "step": 3222
+ },
+ {
+ "epoch": 44.768894713848844,
+ "grad_norm": 0.19260665774345398,
+ "learning_rate": 0.0006,
+ "loss": 3.6322834491729736,
+ "step": 3223
+ },
+ {
+ "epoch": 44.782874617737,
+ "grad_norm": 0.2084558755159378,
+ "learning_rate": 0.0006,
+ "loss": 3.615227699279785,
+ "step": 3224
+ },
+ {
+ "epoch": 44.796854521625164,
+ "grad_norm": 0.24538686871528625,
+ "learning_rate": 0.0006,
+ "loss": 3.6387081146240234,
+ "step": 3225
+ },
+ {
+ "epoch": 44.81083442551333,
+ "grad_norm": 0.23291894793510437,
+ "learning_rate": 0.0006,
+ "loss": 3.6245408058166504,
+ "step": 3226
+ },
+ {
+ "epoch": 44.824814329401484,
+ "grad_norm": 0.20715969800949097,
+ "learning_rate": 0.0006,
+ "loss": 3.633620262145996,
+ "step": 3227
+ },
+ {
+ "epoch": 44.83879423328965,
+ "grad_norm": 0.20866821706295013,
+ "learning_rate": 0.0006,
+ "loss": 3.613438129425049,
+ "step": 3228
+ },
+ {
+ "epoch": 44.8527741371778,
+ "grad_norm": 0.2048904299736023,
+ "learning_rate": 0.0006,
+ "loss": 3.668807029724121,
+ "step": 3229
+ },
+ {
+ "epoch": 44.86675404106597,
+ "grad_norm": 0.2073894739151001,
+ "learning_rate": 0.0006,
+ "loss": 3.6000914573669434,
+ "step": 3230
+ },
+ {
+ "epoch": 44.88073394495413,
+ "grad_norm": 0.22017404437065125,
+ "learning_rate": 0.0006,
+ "loss": 3.6024718284606934,
+ "step": 3231
+ },
+ {
+ "epoch": 44.89471384884229,
+ "grad_norm": 0.23971669375896454,
+ "learning_rate": 0.0006,
+ "loss": 3.6339516639709473,
+ "step": 3232
+ },
+ {
+ "epoch": 44.90869375273045,
+ "grad_norm": 0.2258273959159851,
+ "learning_rate": 0.0006,
+ "loss": 3.6480093002319336,
+ "step": 3233
+ },
+ {
+ "epoch": 44.92267365661861,
+ "grad_norm": 0.22079502046108246,
+ "learning_rate": 0.0006,
+ "loss": 3.643446922302246,
+ "step": 3234
+ },
+ {
+ "epoch": 44.93665356050677,
+ "grad_norm": 0.22109337151050568,
+ "learning_rate": 0.0006,
+ "loss": 3.5975499153137207,
+ "step": 3235
+ },
+ {
+ "epoch": 44.95063346439493,
+ "grad_norm": 0.20142309367656708,
+ "learning_rate": 0.0006,
+ "loss": 3.6057305335998535,
+ "step": 3236
+ },
+ {
+ "epoch": 44.964613368283096,
+ "grad_norm": 0.20089569687843323,
+ "learning_rate": 0.0006,
+ "loss": 3.5900750160217285,
+ "step": 3237
+ },
+ {
+ "epoch": 44.97859327217125,
+ "grad_norm": 0.19860075414180756,
+ "learning_rate": 0.0006,
+ "loss": 3.5954184532165527,
+ "step": 3238
+ },
+ {
+ "epoch": 44.992573176059416,
+ "grad_norm": 0.19166013598442078,
+ "learning_rate": 0.0006,
+ "loss": 3.6568803787231445,
+ "step": 3239
+ },
+ {
+ "epoch": 45.0,
+ "grad_norm": 0.22416932880878448,
+ "learning_rate": 0.0006,
+ "loss": 3.6483092308044434,
+ "step": 3240
+ },
+ {
+ "epoch": 45.0,
+ "eval_loss": 3.9821224212646484,
+ "eval_runtime": 44.5415,
+ "eval_samples_per_second": 54.825,
+ "eval_steps_per_second": 3.435,
+ "step": 3240
+ },
+ {
+ "epoch": 45.01397990388816,
+ "grad_norm": 0.2107669562101364,
+ "learning_rate": 0.0006,
+ "loss": 3.5858099460601807,
+ "step": 3241
+ },
+ {
+ "epoch": 45.02795980777632,
+ "grad_norm": 0.20831939578056335,
+ "learning_rate": 0.0006,
+ "loss": 3.5793800354003906,
+ "step": 3242
+ },
+ {
+ "epoch": 45.04193971166448,
+ "grad_norm": 0.2169167846441269,
+ "learning_rate": 0.0006,
+ "loss": 3.601961135864258,
+ "step": 3243
+ },
+ {
+ "epoch": 45.05591961555265,
+ "grad_norm": 0.22451531887054443,
+ "learning_rate": 0.0006,
+ "loss": 3.586371898651123,
+ "step": 3244
+ },
+ {
+ "epoch": 45.0698995194408,
+ "grad_norm": 0.2187003344297409,
+ "learning_rate": 0.0006,
+ "loss": 3.58760929107666,
+ "step": 3245
+ },
+ {
+ "epoch": 45.083879423328966,
+ "grad_norm": 0.22805631160736084,
+ "learning_rate": 0.0006,
+ "loss": 3.554107904434204,
+ "step": 3246
+ },
+ {
+ "epoch": 45.09785932721712,
+ "grad_norm": 0.2573186159133911,
+ "learning_rate": 0.0006,
+ "loss": 3.5815420150756836,
+ "step": 3247
+ },
+ {
+ "epoch": 45.111839231105286,
+ "grad_norm": 0.25940126180648804,
+ "learning_rate": 0.0006,
+ "loss": 3.5754308700561523,
+ "step": 3248
+ },
+ {
+ "epoch": 45.12581913499345,
+ "grad_norm": 0.23834384977817535,
+ "learning_rate": 0.0006,
+ "loss": 3.5857350826263428,
+ "step": 3249
+ },
+ {
+ "epoch": 45.139799038881605,
+ "grad_norm": 0.23342885076999664,
+ "learning_rate": 0.0006,
+ "loss": 3.6116228103637695,
+ "step": 3250
+ },
+ {
+ "epoch": 45.15377894276977,
+ "grad_norm": 0.23284269869327545,
+ "learning_rate": 0.0006,
+ "loss": 3.5778629779815674,
+ "step": 3251
+ },
+ {
+ "epoch": 45.16775884665793,
+ "grad_norm": 0.30510780215263367,
+ "learning_rate": 0.0006,
+ "loss": 3.5888915061950684,
+ "step": 3252
+ },
+ {
+ "epoch": 45.18173875054609,
+ "grad_norm": 0.3462519645690918,
+ "learning_rate": 0.0006,
+ "loss": 3.5955758094787598,
+ "step": 3253
+ },
+ {
+ "epoch": 45.19571865443425,
+ "grad_norm": 0.2795974314212799,
+ "learning_rate": 0.0006,
+ "loss": 3.6222946643829346,
+ "step": 3254
+ },
+ {
+ "epoch": 45.20969855832241,
+ "grad_norm": 0.24624103307724,
+ "learning_rate": 0.0006,
+ "loss": 3.63046932220459,
+ "step": 3255
+ },
+ {
+ "epoch": 45.22367846221057,
+ "grad_norm": 0.23007310926914215,
+ "learning_rate": 0.0006,
+ "loss": 3.652526378631592,
+ "step": 3256
+ },
+ {
+ "epoch": 45.237658366098735,
+ "grad_norm": 0.21325333416461945,
+ "learning_rate": 0.0006,
+ "loss": 3.5960049629211426,
+ "step": 3257
+ },
+ {
+ "epoch": 45.25163826998689,
+ "grad_norm": 0.22697314620018005,
+ "learning_rate": 0.0006,
+ "loss": 3.5723695755004883,
+ "step": 3258
+ },
+ {
+ "epoch": 45.265618173875055,
+ "grad_norm": 0.21900491416454315,
+ "learning_rate": 0.0006,
+ "loss": 3.613572120666504,
+ "step": 3259
+ },
+ {
+ "epoch": 45.27959807776322,
+ "grad_norm": 0.21030694246292114,
+ "learning_rate": 0.0006,
+ "loss": 3.5830235481262207,
+ "step": 3260
+ },
+ {
+ "epoch": 45.293577981651374,
+ "grad_norm": 0.20229968428611755,
+ "learning_rate": 0.0006,
+ "loss": 3.620349884033203,
+ "step": 3261
+ },
+ {
+ "epoch": 45.30755788553954,
+ "grad_norm": 0.21611201763153076,
+ "learning_rate": 0.0006,
+ "loss": 3.5937819480895996,
+ "step": 3262
+ },
+ {
+ "epoch": 45.3215377894277,
+ "grad_norm": 0.21876764297485352,
+ "learning_rate": 0.0006,
+ "loss": 3.6180777549743652,
+ "step": 3263
+ },
+ {
+ "epoch": 45.33551769331586,
+ "grad_norm": 0.200356587767601,
+ "learning_rate": 0.0006,
+ "loss": 3.6140146255493164,
+ "step": 3264
+ },
+ {
+ "epoch": 45.34949759720402,
+ "grad_norm": 0.19151835143566132,
+ "learning_rate": 0.0006,
+ "loss": 3.607077121734619,
+ "step": 3265
+ },
+ {
+ "epoch": 45.36347750109218,
+ "grad_norm": 0.1994648575782776,
+ "learning_rate": 0.0006,
+ "loss": 3.646780490875244,
+ "step": 3266
+ },
+ {
+ "epoch": 45.37745740498034,
+ "grad_norm": 0.23145829141139984,
+ "learning_rate": 0.0006,
+ "loss": 3.624591588973999,
+ "step": 3267
+ },
+ {
+ "epoch": 45.391437308868504,
+ "grad_norm": 0.23608829081058502,
+ "learning_rate": 0.0006,
+ "loss": 3.598904609680176,
+ "step": 3268
+ },
+ {
+ "epoch": 45.40541721275666,
+ "grad_norm": 0.22254547476768494,
+ "learning_rate": 0.0006,
+ "loss": 3.581087827682495,
+ "step": 3269
+ },
+ {
+ "epoch": 45.419397116644824,
+ "grad_norm": 0.21640023589134216,
+ "learning_rate": 0.0006,
+ "loss": 3.5961151123046875,
+ "step": 3270
+ },
+ {
+ "epoch": 45.43337702053299,
+ "grad_norm": 0.2252444475889206,
+ "learning_rate": 0.0006,
+ "loss": 3.590231418609619,
+ "step": 3271
+ },
+ {
+ "epoch": 45.44735692442114,
+ "grad_norm": 0.23785367608070374,
+ "learning_rate": 0.0006,
+ "loss": 3.615896701812744,
+ "step": 3272
+ },
+ {
+ "epoch": 45.46133682830931,
+ "grad_norm": 0.2509191036224365,
+ "learning_rate": 0.0006,
+ "loss": 3.6413722038269043,
+ "step": 3273
+ },
+ {
+ "epoch": 45.47531673219746,
+ "grad_norm": 0.23734210431575775,
+ "learning_rate": 0.0006,
+ "loss": 3.608898639678955,
+ "step": 3274
+ },
+ {
+ "epoch": 45.489296636085626,
+ "grad_norm": 0.19802412390708923,
+ "learning_rate": 0.0006,
+ "loss": 3.5957250595092773,
+ "step": 3275
+ },
+ {
+ "epoch": 45.50327653997379,
+ "grad_norm": 0.20621423423290253,
+ "learning_rate": 0.0006,
+ "loss": 3.607945442199707,
+ "step": 3276
+ },
+ {
+ "epoch": 45.517256443861946,
+ "grad_norm": 0.225870743393898,
+ "learning_rate": 0.0006,
+ "loss": 3.641449451446533,
+ "step": 3277
+ },
+ {
+ "epoch": 45.53123634775011,
+ "grad_norm": 0.21482397615909576,
+ "learning_rate": 0.0006,
+ "loss": 3.61629581451416,
+ "step": 3278
+ },
+ {
+ "epoch": 45.54521625163827,
+ "grad_norm": 0.21159376204013824,
+ "learning_rate": 0.0006,
+ "loss": 3.5977988243103027,
+ "step": 3279
+ },
+ {
+ "epoch": 45.55919615552643,
+ "grad_norm": 0.2031678408384323,
+ "learning_rate": 0.0006,
+ "loss": 3.629343032836914,
+ "step": 3280
+ },
+ {
+ "epoch": 45.57317605941459,
+ "grad_norm": 0.1827101707458496,
+ "learning_rate": 0.0006,
+ "loss": 3.6161365509033203,
+ "step": 3281
+ },
+ {
+ "epoch": 45.58715596330275,
+ "grad_norm": 0.21884584426879883,
+ "learning_rate": 0.0006,
+ "loss": 3.6131834983825684,
+ "step": 3282
+ },
+ {
+ "epoch": 45.60113586719091,
+ "grad_norm": 0.21764980256557465,
+ "learning_rate": 0.0006,
+ "loss": 3.612516164779663,
+ "step": 3283
+ },
+ {
+ "epoch": 45.615115771079076,
+ "grad_norm": 0.22257080674171448,
+ "learning_rate": 0.0006,
+ "loss": 3.63425874710083,
+ "step": 3284
+ },
+ {
+ "epoch": 45.62909567496723,
+ "grad_norm": 0.2419128566980362,
+ "learning_rate": 0.0006,
+ "loss": 3.602997064590454,
+ "step": 3285
+ },
+ {
+ "epoch": 45.643075578855395,
+ "grad_norm": 0.20856884121894836,
+ "learning_rate": 0.0006,
+ "loss": 3.597352981567383,
+ "step": 3286
+ },
+ {
+ "epoch": 45.65705548274356,
+ "grad_norm": 0.20298589766025543,
+ "learning_rate": 0.0006,
+ "loss": 3.5961315631866455,
+ "step": 3287
+ },
+ {
+ "epoch": 45.671035386631715,
+ "grad_norm": 0.19006133079528809,
+ "learning_rate": 0.0006,
+ "loss": 3.6314568519592285,
+ "step": 3288
+ },
+ {
+ "epoch": 45.68501529051988,
+ "grad_norm": 0.20886142551898956,
+ "learning_rate": 0.0006,
+ "loss": 3.6200413703918457,
+ "step": 3289
+ },
+ {
+ "epoch": 45.69899519440804,
+ "grad_norm": 0.18085862696170807,
+ "learning_rate": 0.0006,
+ "loss": 3.6273961067199707,
+ "step": 3290
+ },
+ {
+ "epoch": 45.7129750982962,
+ "grad_norm": 0.18651945888996124,
+ "learning_rate": 0.0006,
+ "loss": 3.6490976810455322,
+ "step": 3291
+ },
+ {
+ "epoch": 45.72695500218436,
+ "grad_norm": 0.19668170809745789,
+ "learning_rate": 0.0006,
+ "loss": 3.610409736633301,
+ "step": 3292
+ },
+ {
+ "epoch": 45.74093490607252,
+ "grad_norm": 0.19865764677524567,
+ "learning_rate": 0.0006,
+ "loss": 3.614025115966797,
+ "step": 3293
+ },
+ {
+ "epoch": 45.75491480996068,
+ "grad_norm": 0.20814085006713867,
+ "learning_rate": 0.0006,
+ "loss": 3.6220510005950928,
+ "step": 3294
+ },
+ {
+ "epoch": 45.768894713848844,
+ "grad_norm": 0.20996463298797607,
+ "learning_rate": 0.0006,
+ "loss": 3.5754218101501465,
+ "step": 3295
+ },
+ {
+ "epoch": 45.782874617737,
+ "grad_norm": 0.1987130492925644,
+ "learning_rate": 0.0006,
+ "loss": 3.614746570587158,
+ "step": 3296
+ },
+ {
+ "epoch": 45.796854521625164,
+ "grad_norm": 0.23048028349876404,
+ "learning_rate": 0.0006,
+ "loss": 3.602620840072632,
+ "step": 3297
+ },
+ {
+ "epoch": 45.81083442551333,
+ "grad_norm": 0.21877387166023254,
+ "learning_rate": 0.0006,
+ "loss": 3.6294198036193848,
+ "step": 3298
+ },
+ {
+ "epoch": 45.824814329401484,
+ "grad_norm": 0.20007763803005219,
+ "learning_rate": 0.0006,
+ "loss": 3.630868434906006,
+ "step": 3299
+ },
+ {
+ "epoch": 45.83879423328965,
+ "grad_norm": 0.200496107339859,
+ "learning_rate": 0.0006,
+ "loss": 3.5972986221313477,
+ "step": 3300
+ },
+ {
+ "epoch": 45.8527741371778,
+ "grad_norm": 0.20494480431079865,
+ "learning_rate": 0.0006,
+ "loss": 3.61934494972229,
+ "step": 3301
+ },
+ {
+ "epoch": 45.86675404106597,
+ "grad_norm": 0.21374984085559845,
+ "learning_rate": 0.0006,
+ "loss": 3.6236257553100586,
+ "step": 3302
+ },
+ {
+ "epoch": 45.88073394495413,
+ "grad_norm": 0.22020408511161804,
+ "learning_rate": 0.0006,
+ "loss": 3.6030755043029785,
+ "step": 3303
+ },
+ {
+ "epoch": 45.89471384884229,
+ "grad_norm": 0.2239987701177597,
+ "learning_rate": 0.0006,
+ "loss": 3.6778974533081055,
+ "step": 3304
+ },
+ {
+ "epoch": 45.90869375273045,
+ "grad_norm": 0.22156383097171783,
+ "learning_rate": 0.0006,
+ "loss": 3.6186561584472656,
+ "step": 3305
+ },
+ {
+ "epoch": 45.92267365661861,
+ "grad_norm": 0.2264711856842041,
+ "learning_rate": 0.0006,
+ "loss": 3.6349918842315674,
+ "step": 3306
+ },
+ {
+ "epoch": 45.93665356050677,
+ "grad_norm": 0.2287975549697876,
+ "learning_rate": 0.0006,
+ "loss": 3.600268840789795,
+ "step": 3307
+ },
+ {
+ "epoch": 45.95063346439493,
+ "grad_norm": 0.22459761798381805,
+ "learning_rate": 0.0006,
+ "loss": 3.6029114723205566,
+ "step": 3308
+ },
+ {
+ "epoch": 45.964613368283096,
+ "grad_norm": 0.2430959790945053,
+ "learning_rate": 0.0006,
+ "loss": 3.6781656742095947,
+ "step": 3309
+ },
+ {
+ "epoch": 45.97859327217125,
+ "grad_norm": 0.2718662619590759,
+ "learning_rate": 0.0006,
+ "loss": 3.606778144836426,
+ "step": 3310
+ },
+ {
+ "epoch": 45.992573176059416,
+ "grad_norm": 0.27250170707702637,
+ "learning_rate": 0.0006,
+ "loss": 3.6142611503601074,
+ "step": 3311
+ },
+ {
+ "epoch": 46.0,
+ "grad_norm": 0.26663821935653687,
+ "learning_rate": 0.0006,
+ "loss": 3.6367483139038086,
+ "step": 3312
+ },
+ {
+ "epoch": 46.0,
+ "eval_loss": 3.9835095405578613,
+ "eval_runtime": 44.6504,
+ "eval_samples_per_second": 54.692,
+ "eval_steps_per_second": 3.427,
+ "step": 3312
+ },
+ {
+ "epoch": 46.01397990388816,
+ "grad_norm": 0.22670713067054749,
+ "learning_rate": 0.0006,
+ "loss": 3.5553648471832275,
+ "step": 3313
+ },
+ {
+ "epoch": 46.02795980777632,
+ "grad_norm": 0.2759886384010315,
+ "learning_rate": 0.0006,
+ "loss": 3.595186948776245,
+ "step": 3314
+ },
+ {
+ "epoch": 46.04193971166448,
+ "grad_norm": 0.31634145975112915,
+ "learning_rate": 0.0006,
+ "loss": 3.5805907249450684,
+ "step": 3315
+ },
+ {
+ "epoch": 46.05591961555265,
+ "grad_norm": 0.3097986578941345,
+ "learning_rate": 0.0006,
+ "loss": 3.593407154083252,
+ "step": 3316
+ },
+ {
+ "epoch": 46.0698995194408,
+ "grad_norm": 0.24616138637065887,
+ "learning_rate": 0.0006,
+ "loss": 3.606736898422241,
+ "step": 3317
+ },
+ {
+ "epoch": 46.083879423328966,
+ "grad_norm": 0.22210408747196198,
+ "learning_rate": 0.0006,
+ "loss": 3.59546160697937,
+ "step": 3318
+ },
+ {
+ "epoch": 46.09785932721712,
+ "grad_norm": 0.2429778128862381,
+ "learning_rate": 0.0006,
+ "loss": 3.5900321006774902,
+ "step": 3319
+ },
+ {
+ "epoch": 46.111839231105286,
+ "grad_norm": 0.22875761985778809,
+ "learning_rate": 0.0006,
+ "loss": 3.5793521404266357,
+ "step": 3320
+ },
+ {
+ "epoch": 46.12581913499345,
+ "grad_norm": 0.21508760750293732,
+ "learning_rate": 0.0006,
+ "loss": 3.5462498664855957,
+ "step": 3321
+ },
+ {
+ "epoch": 46.139799038881605,
+ "grad_norm": 0.23590944707393646,
+ "learning_rate": 0.0006,
+ "loss": 3.6247925758361816,
+ "step": 3322
+ },
+ {
+ "epoch": 46.15377894276977,
+ "grad_norm": 0.22288036346435547,
+ "learning_rate": 0.0006,
+ "loss": 3.6063995361328125,
+ "step": 3323
+ },
+ {
+ "epoch": 46.16775884665793,
+ "grad_norm": 0.20460885763168335,
+ "learning_rate": 0.0006,
+ "loss": 3.5744826793670654,
+ "step": 3324
+ },
+ {
+ "epoch": 46.18173875054609,
+ "grad_norm": 0.20172059535980225,
+ "learning_rate": 0.0006,
+ "loss": 3.5827057361602783,
+ "step": 3325
+ },
+ {
+ "epoch": 46.19571865443425,
+ "grad_norm": 0.2268448770046234,
+ "learning_rate": 0.0006,
+ "loss": 3.5801379680633545,
+ "step": 3326
+ },
+ {
+ "epoch": 46.20969855832241,
+ "grad_norm": 0.2244444191455841,
+ "learning_rate": 0.0006,
+ "loss": 3.5790224075317383,
+ "step": 3327
+ },
+ {
+ "epoch": 46.22367846221057,
+ "grad_norm": 0.20954380929470062,
+ "learning_rate": 0.0006,
+ "loss": 3.5979342460632324,
+ "step": 3328
+ },
+ {
+ "epoch": 46.237658366098735,
+ "grad_norm": 0.21395887434482574,
+ "learning_rate": 0.0006,
+ "loss": 3.6015186309814453,
+ "step": 3329
+ },
+ {
+ "epoch": 46.25163826998689,
+ "grad_norm": 0.23200181126594543,
+ "learning_rate": 0.0006,
+ "loss": 3.5904979705810547,
+ "step": 3330
+ },
+ {
+ "epoch": 46.265618173875055,
+ "grad_norm": 0.20558731257915497,
+ "learning_rate": 0.0006,
+ "loss": 3.5745811462402344,
+ "step": 3331
+ },
+ {
+ "epoch": 46.27959807776322,
+ "grad_norm": 0.1973227560520172,
+ "learning_rate": 0.0006,
+ "loss": 3.588560104370117,
+ "step": 3332
+ },
+ {
+ "epoch": 46.293577981651374,
+ "grad_norm": 0.2137945592403412,
+ "learning_rate": 0.0006,
+ "loss": 3.606064796447754,
+ "step": 3333
+ },
+ {
+ "epoch": 46.30755788553954,
+ "grad_norm": 0.2082151472568512,
+ "learning_rate": 0.0006,
+ "loss": 3.569392442703247,
+ "step": 3334
+ },
+ {
+ "epoch": 46.3215377894277,
+ "grad_norm": 0.2151029258966446,
+ "learning_rate": 0.0006,
+ "loss": 3.6016604900360107,
+ "step": 3335
+ },
+ {
+ "epoch": 46.33551769331586,
+ "grad_norm": 0.2256474643945694,
+ "learning_rate": 0.0006,
+ "loss": 3.571319580078125,
+ "step": 3336
+ },
+ {
+ "epoch": 46.34949759720402,
+ "grad_norm": 0.21454207599163055,
+ "learning_rate": 0.0006,
+ "loss": 3.6028685569763184,
+ "step": 3337
+ },
+ {
+ "epoch": 46.36347750109218,
+ "grad_norm": 0.21864144504070282,
+ "learning_rate": 0.0006,
+ "loss": 3.6146860122680664,
+ "step": 3338
+ },
+ {
+ "epoch": 46.37745740498034,
+ "grad_norm": 0.24512453377246857,
+ "learning_rate": 0.0006,
+ "loss": 3.614696502685547,
+ "step": 3339
+ },
+ {
+ "epoch": 46.391437308868504,
+ "grad_norm": 0.26355695724487305,
+ "learning_rate": 0.0006,
+ "loss": 3.6124234199523926,
+ "step": 3340
+ },
+ {
+ "epoch": 46.40541721275666,
+ "grad_norm": 0.2778678834438324,
+ "learning_rate": 0.0006,
+ "loss": 3.6075634956359863,
+ "step": 3341
+ },
+ {
+ "epoch": 46.419397116644824,
+ "grad_norm": 0.2626822292804718,
+ "learning_rate": 0.0006,
+ "loss": 3.59267520904541,
+ "step": 3342
+ },
+ {
+ "epoch": 46.43337702053299,
+ "grad_norm": 0.2211887091398239,
+ "learning_rate": 0.0006,
+ "loss": 3.606135606765747,
+ "step": 3343
+ },
+ {
+ "epoch": 46.44735692442114,
+ "grad_norm": 0.20117639005184174,
+ "learning_rate": 0.0006,
+ "loss": 3.566512107849121,
+ "step": 3344
+ },
+ {
+ "epoch": 46.46133682830931,
+ "grad_norm": 0.20202599465847015,
+ "learning_rate": 0.0006,
+ "loss": 3.603398561477661,
+ "step": 3345
+ },
+ {
+ "epoch": 46.47531673219746,
+ "grad_norm": 0.22238481044769287,
+ "learning_rate": 0.0006,
+ "loss": 3.599888324737549,
+ "step": 3346
+ },
+ {
+ "epoch": 46.489296636085626,
+ "grad_norm": 0.23298178613185883,
+ "learning_rate": 0.0006,
+ "loss": 3.6135406494140625,
+ "step": 3347
+ },
+ {
+ "epoch": 46.50327653997379,
+ "grad_norm": 0.21998152136802673,
+ "learning_rate": 0.0006,
+ "loss": 3.6022939682006836,
+ "step": 3348
+ },
+ {
+ "epoch": 46.517256443861946,
+ "grad_norm": 0.22595210373401642,
+ "learning_rate": 0.0006,
+ "loss": 3.605905532836914,
+ "step": 3349
+ },
+ {
+ "epoch": 46.53123634775011,
+ "grad_norm": 0.23549678921699524,
+ "learning_rate": 0.0006,
+ "loss": 3.606264591217041,
+ "step": 3350
+ },
+ {
+ "epoch": 46.54521625163827,
+ "grad_norm": 0.2075573205947876,
+ "learning_rate": 0.0006,
+ "loss": 3.580575942993164,
+ "step": 3351
+ },
+ {
+ "epoch": 46.55919615552643,
+ "grad_norm": 0.19052642583847046,
+ "learning_rate": 0.0006,
+ "loss": 3.618326187133789,
+ "step": 3352
+ },
+ {
+ "epoch": 46.57317605941459,
+ "grad_norm": 0.20372900366783142,
+ "learning_rate": 0.0006,
+ "loss": 3.5817952156066895,
+ "step": 3353
+ },
+ {
+ "epoch": 46.58715596330275,
+ "grad_norm": 0.20024648308753967,
+ "learning_rate": 0.0006,
+ "loss": 3.6128273010253906,
+ "step": 3354
+ },
+ {
+ "epoch": 46.60113586719091,
+ "grad_norm": 0.20892181992530823,
+ "learning_rate": 0.0006,
+ "loss": 3.6173012256622314,
+ "step": 3355
+ },
+ {
+ "epoch": 46.615115771079076,
+ "grad_norm": 0.20254571735858917,
+ "learning_rate": 0.0006,
+ "loss": 3.5924699306488037,
+ "step": 3356
+ },
+ {
+ "epoch": 46.62909567496723,
+ "grad_norm": 0.20290599763393402,
+ "learning_rate": 0.0006,
+ "loss": 3.6134514808654785,
+ "step": 3357
+ },
+ {
+ "epoch": 46.643075578855395,
+ "grad_norm": 0.23314513266086578,
+ "learning_rate": 0.0006,
+ "loss": 3.604102611541748,
+ "step": 3358
+ },
+ {
+ "epoch": 46.65705548274356,
+ "grad_norm": 0.2352486401796341,
+ "learning_rate": 0.0006,
+ "loss": 3.6210808753967285,
+ "step": 3359
+ },
+ {
+ "epoch": 46.671035386631715,
+ "grad_norm": 0.2289503663778305,
+ "learning_rate": 0.0006,
+ "loss": 3.596968650817871,
+ "step": 3360
+ },
+ {
+ "epoch": 46.68501529051988,
+ "grad_norm": 0.19971057772636414,
+ "learning_rate": 0.0006,
+ "loss": 3.5973198413848877,
+ "step": 3361
+ },
+ {
+ "epoch": 46.69899519440804,
+ "grad_norm": 0.21000619232654572,
+ "learning_rate": 0.0006,
+ "loss": 3.607048511505127,
+ "step": 3362
+ },
+ {
+ "epoch": 46.7129750982962,
+ "grad_norm": 0.22295686602592468,
+ "learning_rate": 0.0006,
+ "loss": 3.6323728561401367,
+ "step": 3363
+ },
+ {
+ "epoch": 46.72695500218436,
+ "grad_norm": 0.21939052641391754,
+ "learning_rate": 0.0006,
+ "loss": 3.6073317527770996,
+ "step": 3364
+ },
+ {
+ "epoch": 46.74093490607252,
+ "grad_norm": 0.2192271202802658,
+ "learning_rate": 0.0006,
+ "loss": 3.6396851539611816,
+ "step": 3365
+ },
+ {
+ "epoch": 46.75491480996068,
+ "grad_norm": 0.20871607959270477,
+ "learning_rate": 0.0006,
+ "loss": 3.613509178161621,
+ "step": 3366
+ },
+ {
+ "epoch": 46.768894713848844,
+ "grad_norm": 0.1837828904390335,
+ "learning_rate": 0.0006,
+ "loss": 3.604039192199707,
+ "step": 3367
+ },
+ {
+ "epoch": 46.782874617737,
+ "grad_norm": 0.1904219537973404,
+ "learning_rate": 0.0006,
+ "loss": 3.6065895557403564,
+ "step": 3368
+ },
+ {
+ "epoch": 46.796854521625164,
+ "grad_norm": 0.19873572885990143,
+ "learning_rate": 0.0006,
+ "loss": 3.5927226543426514,
+ "step": 3369
+ },
+ {
+ "epoch": 46.81083442551333,
+ "grad_norm": 0.18319591879844666,
+ "learning_rate": 0.0006,
+ "loss": 3.6114919185638428,
+ "step": 3370
+ },
+ {
+ "epoch": 46.824814329401484,
+ "grad_norm": 0.19832435250282288,
+ "learning_rate": 0.0006,
+ "loss": 3.613637924194336,
+ "step": 3371
+ },
+ {
+ "epoch": 46.83879423328965,
+ "grad_norm": 0.21506333351135254,
+ "learning_rate": 0.0006,
+ "loss": 3.6116209030151367,
+ "step": 3372
+ },
+ {
+ "epoch": 46.8527741371778,
+ "grad_norm": 0.20374484360218048,
+ "learning_rate": 0.0006,
+ "loss": 3.5923004150390625,
+ "step": 3373
+ },
+ {
+ "epoch": 46.86675404106597,
+ "grad_norm": 0.19743360579013824,
+ "learning_rate": 0.0006,
+ "loss": 3.599381685256958,
+ "step": 3374
+ },
+ {
+ "epoch": 46.88073394495413,
+ "grad_norm": 0.20996616780757904,
+ "learning_rate": 0.0006,
+ "loss": 3.624969959259033,
+ "step": 3375
+ },
+ {
+ "epoch": 46.89471384884229,
+ "grad_norm": 0.22336791455745697,
+ "learning_rate": 0.0006,
+ "loss": 3.6152467727661133,
+ "step": 3376
+ },
+ {
+ "epoch": 46.90869375273045,
+ "grad_norm": 0.2337532341480255,
+ "learning_rate": 0.0006,
+ "loss": 3.6198863983154297,
+ "step": 3377
+ },
+ {
+ "epoch": 46.92267365661861,
+ "grad_norm": 0.23823462426662445,
+ "learning_rate": 0.0006,
+ "loss": 3.6411237716674805,
+ "step": 3378
+ },
+ {
+ "epoch": 46.93665356050677,
+ "grad_norm": 0.2521338164806366,
+ "learning_rate": 0.0006,
+ "loss": 3.621544122695923,
+ "step": 3379
+ },
+ {
+ "epoch": 46.95063346439493,
+ "grad_norm": 0.253682941198349,
+ "learning_rate": 0.0006,
+ "loss": 3.6570887565612793,
+ "step": 3380
+ },
+ {
+ "epoch": 46.964613368283096,
+ "grad_norm": 0.23392300307750702,
+ "learning_rate": 0.0006,
+ "loss": 3.669538974761963,
+ "step": 3381
+ },
+ {
+ "epoch": 46.97859327217125,
+ "grad_norm": 0.2154092937707901,
+ "learning_rate": 0.0006,
+ "loss": 3.6184825897216797,
+ "step": 3382
+ },
+ {
+ "epoch": 46.992573176059416,
+ "grad_norm": 0.1909833699464798,
+ "learning_rate": 0.0006,
+ "loss": 3.647658348083496,
+ "step": 3383
+ },
+ {
+ "epoch": 47.0,
+ "grad_norm": 0.2226407378911972,
+ "learning_rate": 0.0006,
+ "loss": 3.6413815021514893,
+ "step": 3384
+ },
+ {
+ "epoch": 47.0,
+ "eval_loss": 3.98313570022583,
+ "eval_runtime": 44.7152,
+ "eval_samples_per_second": 54.612,
+ "eval_steps_per_second": 3.422,
+ "step": 3384
+ },
+ {
+ "epoch": 47.01397990388816,
+ "grad_norm": 0.20830968022346497,
+ "learning_rate": 0.0006,
+ "loss": 3.5652623176574707,
+ "step": 3385
+ },
+ {
+ "epoch": 47.02795980777632,
+ "grad_norm": 0.18953651189804077,
+ "learning_rate": 0.0006,
+ "loss": 3.570180654525757,
+ "step": 3386
+ },
+ {
+ "epoch": 47.04193971166448,
+ "grad_norm": 0.20167700946331024,
+ "learning_rate": 0.0006,
+ "loss": 3.5623056888580322,
+ "step": 3387
+ },
+ {
+ "epoch": 47.05591961555265,
+ "grad_norm": 0.21554343402385712,
+ "learning_rate": 0.0006,
+ "loss": 3.549492835998535,
+ "step": 3388
+ },
+ {
+ "epoch": 47.0698995194408,
+ "grad_norm": 0.2232149988412857,
+ "learning_rate": 0.0006,
+ "loss": 3.584181785583496,
+ "step": 3389
+ },
+ {
+ "epoch": 47.083879423328966,
+ "grad_norm": 0.23489049077033997,
+ "learning_rate": 0.0006,
+ "loss": 3.581028461456299,
+ "step": 3390
+ },
+ {
+ "epoch": 47.09785932721712,
+ "grad_norm": 0.22486020624637604,
+ "learning_rate": 0.0006,
+ "loss": 3.600348949432373,
+ "step": 3391
+ },
+ {
+ "epoch": 47.111839231105286,
+ "grad_norm": 0.22932346165180206,
+ "learning_rate": 0.0006,
+ "loss": 3.5600457191467285,
+ "step": 3392
+ },
+ {
+ "epoch": 47.12581913499345,
+ "grad_norm": 0.2179419994354248,
+ "learning_rate": 0.0006,
+ "loss": 3.560136079788208,
+ "step": 3393
+ },
+ {
+ "epoch": 47.139799038881605,
+ "grad_norm": 0.2438054382801056,
+ "learning_rate": 0.0006,
+ "loss": 3.5955698490142822,
+ "step": 3394
+ },
+ {
+ "epoch": 47.15377894276977,
+ "grad_norm": 0.2652001976966858,
+ "learning_rate": 0.0006,
+ "loss": 3.5942912101745605,
+ "step": 3395
+ },
+ {
+ "epoch": 47.16775884665793,
+ "grad_norm": 0.270924836397171,
+ "learning_rate": 0.0006,
+ "loss": 3.5733351707458496,
+ "step": 3396
+ },
+ {
+ "epoch": 47.18173875054609,
+ "grad_norm": 0.28365132212638855,
+ "learning_rate": 0.0006,
+ "loss": 3.6042075157165527,
+ "step": 3397
+ },
+ {
+ "epoch": 47.19571865443425,
+ "grad_norm": 0.29530975222587585,
+ "learning_rate": 0.0006,
+ "loss": 3.588935375213623,
+ "step": 3398
+ },
+ {
+ "epoch": 47.20969855832241,
+ "grad_norm": 0.2658918797969818,
+ "learning_rate": 0.0006,
+ "loss": 3.5944671630859375,
+ "step": 3399
+ },
+ {
+ "epoch": 47.22367846221057,
+ "grad_norm": 0.24076500535011292,
+ "learning_rate": 0.0006,
+ "loss": 3.5853185653686523,
+ "step": 3400
+ },
+ {
+ "epoch": 47.237658366098735,
+ "grad_norm": 0.23032112419605255,
+ "learning_rate": 0.0006,
+ "loss": 3.620483875274658,
+ "step": 3401
+ },
+ {
+ "epoch": 47.25163826998689,
+ "grad_norm": 0.23124775290489197,
+ "learning_rate": 0.0006,
+ "loss": 3.6032004356384277,
+ "step": 3402
+ },
+ {
+ "epoch": 47.265618173875055,
+ "grad_norm": 0.21960225701332092,
+ "learning_rate": 0.0006,
+ "loss": 3.6079649925231934,
+ "step": 3403
+ },
+ {
+ "epoch": 47.27959807776322,
+ "grad_norm": 0.236652672290802,
+ "learning_rate": 0.0006,
+ "loss": 3.582645893096924,
+ "step": 3404
+ },
+ {
+ "epoch": 47.293577981651374,
+ "grad_norm": 0.2600267231464386,
+ "learning_rate": 0.0006,
+ "loss": 3.6067757606506348,
+ "step": 3405
+ },
+ {
+ "epoch": 47.30755788553954,
+ "grad_norm": 0.2337152659893036,
+ "learning_rate": 0.0006,
+ "loss": 3.5912275314331055,
+ "step": 3406
+ },
+ {
+ "epoch": 47.3215377894277,
+ "grad_norm": 0.21887873113155365,
+ "learning_rate": 0.0006,
+ "loss": 3.6008896827697754,
+ "step": 3407
+ },
+ {
+ "epoch": 47.33551769331586,
+ "grad_norm": 0.20265911519527435,
+ "learning_rate": 0.0006,
+ "loss": 3.5820152759552,
+ "step": 3408
+ },
+ {
+ "epoch": 47.34949759720402,
+ "grad_norm": 0.2005501389503479,
+ "learning_rate": 0.0006,
+ "loss": 3.604556083679199,
+ "step": 3409
+ },
+ {
+ "epoch": 47.36347750109218,
+ "grad_norm": 0.20682275295257568,
+ "learning_rate": 0.0006,
+ "loss": 3.584531307220459,
+ "step": 3410
+ },
+ {
+ "epoch": 47.37745740498034,
+ "grad_norm": 0.23283354938030243,
+ "learning_rate": 0.0006,
+ "loss": 3.59186053276062,
+ "step": 3411
+ },
+ {
+ "epoch": 47.391437308868504,
+ "grad_norm": 0.23033356666564941,
+ "learning_rate": 0.0006,
+ "loss": 3.5944037437438965,
+ "step": 3412
+ },
+ {
+ "epoch": 47.40541721275666,
+ "grad_norm": 0.21714402735233307,
+ "learning_rate": 0.0006,
+ "loss": 3.5834851264953613,
+ "step": 3413
+ },
+ {
+ "epoch": 47.419397116644824,
+ "grad_norm": 0.2138672024011612,
+ "learning_rate": 0.0006,
+ "loss": 3.6313700675964355,
+ "step": 3414
+ },
+ {
+ "epoch": 47.43337702053299,
+ "grad_norm": 0.23200160264968872,
+ "learning_rate": 0.0006,
+ "loss": 3.6112399101257324,
+ "step": 3415
+ },
+ {
+ "epoch": 47.44735692442114,
+ "grad_norm": 0.2632092833518982,
+ "learning_rate": 0.0006,
+ "loss": 3.6099038124084473,
+ "step": 3416
+ },
+ {
+ "epoch": 47.46133682830931,
+ "grad_norm": 0.23115520179271698,
+ "learning_rate": 0.0006,
+ "loss": 3.6060497760772705,
+ "step": 3417
+ },
+ {
+ "epoch": 47.47531673219746,
+ "grad_norm": 0.2596223056316376,
+ "learning_rate": 0.0006,
+ "loss": 3.5749685764312744,
+ "step": 3418
+ },
+ {
+ "epoch": 47.489296636085626,
+ "grad_norm": 0.27893415093421936,
+ "learning_rate": 0.0006,
+ "loss": 3.584045886993408,
+ "step": 3419
+ },
+ {
+ "epoch": 47.50327653997379,
+ "grad_norm": 0.23112469911575317,
+ "learning_rate": 0.0006,
+ "loss": 3.595407485961914,
+ "step": 3420
+ },
+ {
+ "epoch": 47.517256443861946,
+ "grad_norm": 0.23562486469745636,
+ "learning_rate": 0.0006,
+ "loss": 3.5657241344451904,
+ "step": 3421
+ },
+ {
+ "epoch": 47.53123634775011,
+ "grad_norm": 0.23366105556488037,
+ "learning_rate": 0.0006,
+ "loss": 3.624885082244873,
+ "step": 3422
+ },
+ {
+ "epoch": 47.54521625163827,
+ "grad_norm": 0.24383248388767242,
+ "learning_rate": 0.0006,
+ "loss": 3.638352394104004,
+ "step": 3423
+ },
+ {
+ "epoch": 47.55919615552643,
+ "grad_norm": 0.26388120651245117,
+ "learning_rate": 0.0006,
+ "loss": 3.614579200744629,
+ "step": 3424
+ },
+ {
+ "epoch": 47.57317605941459,
+ "grad_norm": 0.23676545917987823,
+ "learning_rate": 0.0006,
+ "loss": 3.609004259109497,
+ "step": 3425
+ },
+ {
+ "epoch": 47.58715596330275,
+ "grad_norm": 0.227967768907547,
+ "learning_rate": 0.0006,
+ "loss": 3.626171827316284,
+ "step": 3426
+ },
+ {
+ "epoch": 47.60113586719091,
+ "grad_norm": 0.23786529898643494,
+ "learning_rate": 0.0006,
+ "loss": 3.6205172538757324,
+ "step": 3427
+ },
+ {
+ "epoch": 47.615115771079076,
+ "grad_norm": 0.2599100172519684,
+ "learning_rate": 0.0006,
+ "loss": 3.6178271770477295,
+ "step": 3428
+ },
+ {
+ "epoch": 47.62909567496723,
+ "grad_norm": 0.2591858208179474,
+ "learning_rate": 0.0006,
+ "loss": 3.600297451019287,
+ "step": 3429
+ },
+ {
+ "epoch": 47.643075578855395,
+ "grad_norm": 0.2234215885400772,
+ "learning_rate": 0.0006,
+ "loss": 3.623141288757324,
+ "step": 3430
+ },
+ {
+ "epoch": 47.65705548274356,
+ "grad_norm": 0.23395098745822906,
+ "learning_rate": 0.0006,
+ "loss": 3.6243159770965576,
+ "step": 3431
+ },
+ {
+ "epoch": 47.671035386631715,
+ "grad_norm": 0.25706854462623596,
+ "learning_rate": 0.0006,
+ "loss": 3.5933618545532227,
+ "step": 3432
+ },
+ {
+ "epoch": 47.68501529051988,
+ "grad_norm": 0.22468037903308868,
+ "learning_rate": 0.0006,
+ "loss": 3.6048693656921387,
+ "step": 3433
+ },
+ {
+ "epoch": 47.69899519440804,
+ "grad_norm": 0.22432644665241241,
+ "learning_rate": 0.0006,
+ "loss": 3.604891777038574,
+ "step": 3434
+ },
+ {
+ "epoch": 47.7129750982962,
+ "grad_norm": 0.2278960943222046,
+ "learning_rate": 0.0006,
+ "loss": 3.610567092895508,
+ "step": 3435
+ },
+ {
+ "epoch": 47.72695500218436,
+ "grad_norm": 0.20652735233306885,
+ "learning_rate": 0.0006,
+ "loss": 3.60245418548584,
+ "step": 3436
+ },
+ {
+ "epoch": 47.74093490607252,
+ "grad_norm": 0.2141297310590744,
+ "learning_rate": 0.0006,
+ "loss": 3.5712027549743652,
+ "step": 3437
+ },
+ {
+ "epoch": 47.75491480996068,
+ "grad_norm": 0.23282566666603088,
+ "learning_rate": 0.0006,
+ "loss": 3.573568820953369,
+ "step": 3438
+ },
+ {
+ "epoch": 47.768894713848844,
+ "grad_norm": 0.21718674898147583,
+ "learning_rate": 0.0006,
+ "loss": 3.602047920227051,
+ "step": 3439
+ },
+ {
+ "epoch": 47.782874617737,
+ "grad_norm": 0.19592095911502838,
+ "learning_rate": 0.0006,
+ "loss": 3.6046957969665527,
+ "step": 3440
+ },
+ {
+ "epoch": 47.796854521625164,
+ "grad_norm": 0.21548260748386383,
+ "learning_rate": 0.0006,
+ "loss": 3.5808444023132324,
+ "step": 3441
+ },
+ {
+ "epoch": 47.81083442551333,
+ "grad_norm": 0.21945662796497345,
+ "learning_rate": 0.0006,
+ "loss": 3.6044554710388184,
+ "step": 3442
+ },
+ {
+ "epoch": 47.824814329401484,
+ "grad_norm": 0.20777440071105957,
+ "learning_rate": 0.0006,
+ "loss": 3.5991361141204834,
+ "step": 3443
+ },
+ {
+ "epoch": 47.83879423328965,
+ "grad_norm": 0.21566642820835114,
+ "learning_rate": 0.0006,
+ "loss": 3.6272850036621094,
+ "step": 3444
+ },
+ {
+ "epoch": 47.8527741371778,
+ "grad_norm": 0.22365771234035492,
+ "learning_rate": 0.0006,
+ "loss": 3.6323323249816895,
+ "step": 3445
+ },
+ {
+ "epoch": 47.86675404106597,
+ "grad_norm": 0.20193088054656982,
+ "learning_rate": 0.0006,
+ "loss": 3.5938191413879395,
+ "step": 3446
+ },
+ {
+ "epoch": 47.88073394495413,
+ "grad_norm": 0.20968061685562134,
+ "learning_rate": 0.0006,
+ "loss": 3.616640329360962,
+ "step": 3447
+ },
+ {
+ "epoch": 47.89471384884229,
+ "grad_norm": 0.20275580883026123,
+ "learning_rate": 0.0006,
+ "loss": 3.5769052505493164,
+ "step": 3448
+ },
+ {
+ "epoch": 47.90869375273045,
+ "grad_norm": 0.237605020403862,
+ "learning_rate": 0.0006,
+ "loss": 3.6221203804016113,
+ "step": 3449
+ },
+ {
+ "epoch": 47.92267365661861,
+ "grad_norm": 0.2820972502231598,
+ "learning_rate": 0.0006,
+ "loss": 3.5977487564086914,
+ "step": 3450
+ },
+ {
+ "epoch": 47.93665356050677,
+ "grad_norm": 0.23722891509532928,
+ "learning_rate": 0.0006,
+ "loss": 3.5963053703308105,
+ "step": 3451
+ },
+ {
+ "epoch": 47.95063346439493,
+ "grad_norm": 0.21471276879310608,
+ "learning_rate": 0.0006,
+ "loss": 3.6234917640686035,
+ "step": 3452
+ },
+ {
+ "epoch": 47.964613368283096,
+ "grad_norm": 0.2139028012752533,
+ "learning_rate": 0.0006,
+ "loss": 3.640500545501709,
+ "step": 3453
+ },
+ {
+ "epoch": 47.97859327217125,
+ "grad_norm": 0.1966913342475891,
+ "learning_rate": 0.0006,
+ "loss": 3.5856776237487793,
+ "step": 3454
+ },
+ {
+ "epoch": 47.992573176059416,
+ "grad_norm": 0.2375730276107788,
+ "learning_rate": 0.0006,
+ "loss": 3.6126937866210938,
+ "step": 3455
+ },
+ {
+ "epoch": 48.0,
+ "grad_norm": 0.2772855758666992,
+ "learning_rate": 0.0006,
+ "loss": 3.6041951179504395,
+ "step": 3456
+ },
+ {
+ "epoch": 48.0,
+ "eval_loss": 3.971400499343872,
+ "eval_runtime": 45.4792,
+ "eval_samples_per_second": 53.695,
+ "eval_steps_per_second": 3.364,
+ "step": 3456
+ },
+ {
+ "epoch": 48.01397990388816,
+ "grad_norm": 0.2269497811794281,
+ "learning_rate": 0.0006,
+ "loss": 3.525441884994507,
+ "step": 3457
+ },
+ {
+ "epoch": 48.02795980777632,
+ "grad_norm": 0.2080184519290924,
+ "learning_rate": 0.0006,
+ "loss": 3.5727145671844482,
+ "step": 3458
+ },
+ {
+ "epoch": 48.04193971166448,
+ "grad_norm": 0.21827049553394318,
+ "learning_rate": 0.0006,
+ "loss": 3.5799875259399414,
+ "step": 3459
+ },
+ {
+ "epoch": 48.05591961555265,
+ "grad_norm": 0.2173643410205841,
+ "learning_rate": 0.0006,
+ "loss": 3.587097406387329,
+ "step": 3460
+ },
+ {
+ "epoch": 48.0698995194408,
+ "grad_norm": 0.23125280439853668,
+ "learning_rate": 0.0006,
+ "loss": 3.593235969543457,
+ "step": 3461
+ },
+ {
+ "epoch": 48.083879423328966,
+ "grad_norm": 0.2235819697380066,
+ "learning_rate": 0.0006,
+ "loss": 3.5724973678588867,
+ "step": 3462
+ },
+ {
+ "epoch": 48.09785932721712,
+ "grad_norm": 0.2329849898815155,
+ "learning_rate": 0.0006,
+ "loss": 3.5689549446105957,
+ "step": 3463
+ },
+ {
+ "epoch": 48.111839231105286,
+ "grad_norm": 0.21178825199604034,
+ "learning_rate": 0.0006,
+ "loss": 3.5522305965423584,
+ "step": 3464
+ },
+ {
+ "epoch": 48.12581913499345,
+ "grad_norm": 0.22026701271533966,
+ "learning_rate": 0.0006,
+ "loss": 3.5622801780700684,
+ "step": 3465
+ },
+ {
+ "epoch": 48.139799038881605,
+ "grad_norm": 0.23427478969097137,
+ "learning_rate": 0.0006,
+ "loss": 3.6076972484588623,
+ "step": 3466
+ },
+ {
+ "epoch": 48.15377894276977,
+ "grad_norm": 0.22437651455402374,
+ "learning_rate": 0.0006,
+ "loss": 3.5898380279541016,
+ "step": 3467
+ },
+ {
+ "epoch": 48.16775884665793,
+ "grad_norm": 0.22911588847637177,
+ "learning_rate": 0.0006,
+ "loss": 3.584866523742676,
+ "step": 3468
+ },
+ {
+ "epoch": 48.18173875054609,
+ "grad_norm": 0.21358130872249603,
+ "learning_rate": 0.0006,
+ "loss": 3.581397533416748,
+ "step": 3469
+ },
+ {
+ "epoch": 48.19571865443425,
+ "grad_norm": 0.2102762758731842,
+ "learning_rate": 0.0006,
+ "loss": 3.6218419075012207,
+ "step": 3470
+ },
+ {
+ "epoch": 48.20969855832241,
+ "grad_norm": 0.22417177259922028,
+ "learning_rate": 0.0006,
+ "loss": 3.5875539779663086,
+ "step": 3471
+ },
+ {
+ "epoch": 48.22367846221057,
+ "grad_norm": 0.2096744030714035,
+ "learning_rate": 0.0006,
+ "loss": 3.6017215251922607,
+ "step": 3472
+ },
+ {
+ "epoch": 48.237658366098735,
+ "grad_norm": 0.18693844974040985,
+ "learning_rate": 0.0006,
+ "loss": 3.590221405029297,
+ "step": 3473
+ },
+ {
+ "epoch": 48.25163826998689,
+ "grad_norm": 0.21102994680404663,
+ "learning_rate": 0.0006,
+ "loss": 3.5685019493103027,
+ "step": 3474
+ },
+ {
+ "epoch": 48.265618173875055,
+ "grad_norm": 0.20756356418132782,
+ "learning_rate": 0.0006,
+ "loss": 3.577427387237549,
+ "step": 3475
+ },
+ {
+ "epoch": 48.27959807776322,
+ "grad_norm": 0.20425064861774445,
+ "learning_rate": 0.0006,
+ "loss": 3.602522134780884,
+ "step": 3476
+ },
+ {
+ "epoch": 48.293577981651374,
+ "grad_norm": 0.1976020187139511,
+ "learning_rate": 0.0006,
+ "loss": 3.5847134590148926,
+ "step": 3477
+ },
+ {
+ "epoch": 48.30755788553954,
+ "grad_norm": 0.19685129821300507,
+ "learning_rate": 0.0006,
+ "loss": 3.5638442039489746,
+ "step": 3478
+ },
+ {
+ "epoch": 48.3215377894277,
+ "grad_norm": 0.19657646119594574,
+ "learning_rate": 0.0006,
+ "loss": 3.5669779777526855,
+ "step": 3479
+ },
+ {
+ "epoch": 48.33551769331586,
+ "grad_norm": 0.19855819642543793,
+ "learning_rate": 0.0006,
+ "loss": 3.5712571144104004,
+ "step": 3480
+ },
+ {
+ "epoch": 48.34949759720402,
+ "grad_norm": 0.19961503148078918,
+ "learning_rate": 0.0006,
+ "loss": 3.5869312286376953,
+ "step": 3481
+ },
+ {
+ "epoch": 48.36347750109218,
+ "grad_norm": 0.19302639365196228,
+ "learning_rate": 0.0006,
+ "loss": 3.571394920349121,
+ "step": 3482
+ },
+ {
+ "epoch": 48.37745740498034,
+ "grad_norm": 0.1953866183757782,
+ "learning_rate": 0.0006,
+ "loss": 3.556633234024048,
+ "step": 3483
+ },
+ {
+ "epoch": 48.391437308868504,
+ "grad_norm": 0.20028206706047058,
+ "learning_rate": 0.0006,
+ "loss": 3.5559535026550293,
+ "step": 3484
+ },
+ {
+ "epoch": 48.40541721275666,
+ "grad_norm": 0.2286558896303177,
+ "learning_rate": 0.0006,
+ "loss": 3.6052510738372803,
+ "step": 3485
+ },
+ {
+ "epoch": 48.419397116644824,
+ "grad_norm": 0.21764399111270905,
+ "learning_rate": 0.0006,
+ "loss": 3.5955848693847656,
+ "step": 3486
+ },
+ {
+ "epoch": 48.43337702053299,
+ "grad_norm": 0.2257501780986786,
+ "learning_rate": 0.0006,
+ "loss": 3.586179256439209,
+ "step": 3487
+ },
+ {
+ "epoch": 48.44735692442114,
+ "grad_norm": 0.23023653030395508,
+ "learning_rate": 0.0006,
+ "loss": 3.593329906463623,
+ "step": 3488
+ },
+ {
+ "epoch": 48.46133682830931,
+ "grad_norm": 0.21283918619155884,
+ "learning_rate": 0.0006,
+ "loss": 3.5909814834594727,
+ "step": 3489
+ },
+ {
+ "epoch": 48.47531673219746,
+ "grad_norm": 0.2143639773130417,
+ "learning_rate": 0.0006,
+ "loss": 3.61320161819458,
+ "step": 3490
+ },
+ {
+ "epoch": 48.489296636085626,
+ "grad_norm": 0.2138844132423401,
+ "learning_rate": 0.0006,
+ "loss": 3.556607246398926,
+ "step": 3491
+ },
+ {
+ "epoch": 48.50327653997379,
+ "grad_norm": 0.22122617065906525,
+ "learning_rate": 0.0006,
+ "loss": 3.629208564758301,
+ "step": 3492
+ },
+ {
+ "epoch": 48.517256443861946,
+ "grad_norm": 0.22430218756198883,
+ "learning_rate": 0.0006,
+ "loss": 3.61891508102417,
+ "step": 3493
+ },
+ {
+ "epoch": 48.53123634775011,
+ "grad_norm": 0.23830844461917877,
+ "learning_rate": 0.0006,
+ "loss": 3.5818424224853516,
+ "step": 3494
+ },
+ {
+ "epoch": 48.54521625163827,
+ "grad_norm": 0.23596757650375366,
+ "learning_rate": 0.0006,
+ "loss": 3.609959602355957,
+ "step": 3495
+ },
+ {
+ "epoch": 48.55919615552643,
+ "grad_norm": 0.22046151757240295,
+ "learning_rate": 0.0006,
+ "loss": 3.585991382598877,
+ "step": 3496
+ },
+ {
+ "epoch": 48.57317605941459,
+ "grad_norm": 0.22838662564754486,
+ "learning_rate": 0.0006,
+ "loss": 3.6047747135162354,
+ "step": 3497
+ },
+ {
+ "epoch": 48.58715596330275,
+ "grad_norm": 0.22605256736278534,
+ "learning_rate": 0.0006,
+ "loss": 3.584585428237915,
+ "step": 3498
+ },
+ {
+ "epoch": 48.60113586719091,
+ "grad_norm": 0.22761467099189758,
+ "learning_rate": 0.0006,
+ "loss": 3.5680465698242188,
+ "step": 3499
+ },
+ {
+ "epoch": 48.615115771079076,
+ "grad_norm": 0.20537005364894867,
+ "learning_rate": 0.0006,
+ "loss": 3.5822806358337402,
+ "step": 3500
+ },
+ {
+ "epoch": 48.62909567496723,
+ "grad_norm": 0.21871088445186615,
+ "learning_rate": 0.0006,
+ "loss": 3.5643906593322754,
+ "step": 3501
+ },
+ {
+ "epoch": 48.643075578855395,
+ "grad_norm": 0.2291785329580307,
+ "learning_rate": 0.0006,
+ "loss": 3.6313328742980957,
+ "step": 3502
+ },
+ {
+ "epoch": 48.65705548274356,
+ "grad_norm": 0.2437039464712143,
+ "learning_rate": 0.0006,
+ "loss": 3.588334083557129,
+ "step": 3503
+ },
+ {
+ "epoch": 48.671035386631715,
+ "grad_norm": 0.23070715367794037,
+ "learning_rate": 0.0006,
+ "loss": 3.611356258392334,
+ "step": 3504
+ },
+ {
+ "epoch": 48.68501529051988,
+ "grad_norm": 0.23983895778656006,
+ "learning_rate": 0.0006,
+ "loss": 3.5953967571258545,
+ "step": 3505
+ },
+ {
+ "epoch": 48.69899519440804,
+ "grad_norm": 0.2283167690038681,
+ "learning_rate": 0.0006,
+ "loss": 3.605307102203369,
+ "step": 3506
+ },
+ {
+ "epoch": 48.7129750982962,
+ "grad_norm": 0.20861059427261353,
+ "learning_rate": 0.0006,
+ "loss": 3.598266363143921,
+ "step": 3507
+ },
+ {
+ "epoch": 48.72695500218436,
+ "grad_norm": 0.20209547877311707,
+ "learning_rate": 0.0006,
+ "loss": 3.6022191047668457,
+ "step": 3508
+ },
+ {
+ "epoch": 48.74093490607252,
+ "grad_norm": 0.19089370965957642,
+ "learning_rate": 0.0006,
+ "loss": 3.628640651702881,
+ "step": 3509
+ },
+ {
+ "epoch": 48.75491480996068,
+ "grad_norm": 0.18544727563858032,
+ "learning_rate": 0.0006,
+ "loss": 3.6204819679260254,
+ "step": 3510
+ },
+ {
+ "epoch": 48.768894713848844,
+ "grad_norm": 0.18295186758041382,
+ "learning_rate": 0.0006,
+ "loss": 3.5899410247802734,
+ "step": 3511
+ },
+ {
+ "epoch": 48.782874617737,
+ "grad_norm": 0.1953844279050827,
+ "learning_rate": 0.0006,
+ "loss": 3.581699848175049,
+ "step": 3512
+ },
+ {
+ "epoch": 48.796854521625164,
+ "grad_norm": 0.195505291223526,
+ "learning_rate": 0.0006,
+ "loss": 3.6046862602233887,
+ "step": 3513
+ },
+ {
+ "epoch": 48.81083442551333,
+ "grad_norm": 0.19805945456027985,
+ "learning_rate": 0.0006,
+ "loss": 3.609510898590088,
+ "step": 3514
+ },
+ {
+ "epoch": 48.824814329401484,
+ "grad_norm": 0.18694287538528442,
+ "learning_rate": 0.0006,
+ "loss": 3.580693483352661,
+ "step": 3515
+ },
+ {
+ "epoch": 48.83879423328965,
+ "grad_norm": 0.19227269291877747,
+ "learning_rate": 0.0006,
+ "loss": 3.6174416542053223,
+ "step": 3516
+ },
+ {
+ "epoch": 48.8527741371778,
+ "grad_norm": 0.1966937631368637,
+ "learning_rate": 0.0006,
+ "loss": 3.616194248199463,
+ "step": 3517
+ },
+ {
+ "epoch": 48.86675404106597,
+ "grad_norm": 0.20755162835121155,
+ "learning_rate": 0.0006,
+ "loss": 3.594695568084717,
+ "step": 3518
+ },
+ {
+ "epoch": 48.88073394495413,
+ "grad_norm": 0.2012479156255722,
+ "learning_rate": 0.0006,
+ "loss": 3.6069273948669434,
+ "step": 3519
+ },
+ {
+ "epoch": 48.89471384884229,
+ "grad_norm": 0.19260065257549286,
+ "learning_rate": 0.0006,
+ "loss": 3.573819160461426,
+ "step": 3520
+ },
+ {
+ "epoch": 48.90869375273045,
+ "grad_norm": 0.19911104440689087,
+ "learning_rate": 0.0006,
+ "loss": 3.632185459136963,
+ "step": 3521
+ },
+ {
+ "epoch": 48.92267365661861,
+ "grad_norm": 0.22266048192977905,
+ "learning_rate": 0.0006,
+ "loss": 3.607295513153076,
+ "step": 3522
+ },
+ {
+ "epoch": 48.93665356050677,
+ "grad_norm": 0.2542882561683655,
+ "learning_rate": 0.0006,
+ "loss": 3.6014773845672607,
+ "step": 3523
+ },
+ {
+ "epoch": 48.95063346439493,
+ "grad_norm": 0.2878575026988983,
+ "learning_rate": 0.0006,
+ "loss": 3.5825531482696533,
+ "step": 3524
+ },
+ {
+ "epoch": 48.964613368283096,
+ "grad_norm": 0.3157055675983429,
+ "learning_rate": 0.0006,
+ "loss": 3.5986037254333496,
+ "step": 3525
+ },
+ {
+ "epoch": 48.97859327217125,
+ "grad_norm": 0.2815262973308563,
+ "learning_rate": 0.0006,
+ "loss": 3.6099600791931152,
+ "step": 3526
+ },
+ {
+ "epoch": 48.992573176059416,
+ "grad_norm": 0.22102823853492737,
+ "learning_rate": 0.0006,
+ "loss": 3.5859827995300293,
+ "step": 3527
+ },
+ {
+ "epoch": 49.0,
+ "grad_norm": 0.24937094748020172,
+ "learning_rate": 0.0006,
+ "loss": 3.622842311859131,
+ "step": 3528
+ },
+ {
+ "epoch": 49.0,
+ "eval_loss": 3.977067232131958,
+ "eval_runtime": 45.5503,
+ "eval_samples_per_second": 53.611,
+ "eval_steps_per_second": 3.359,
+ "step": 3528
+ },
+ {
+ "epoch": 49.01397990388816,
+ "grad_norm": 0.25072216987609863,
+ "learning_rate": 0.0006,
+ "loss": 3.590653419494629,
+ "step": 3529
+ },
+ {
+ "epoch": 49.02795980777632,
+ "grad_norm": 0.2611052989959717,
+ "learning_rate": 0.0006,
+ "loss": 3.5504279136657715,
+ "step": 3530
+ },
+ {
+ "epoch": 49.04193971166448,
+ "grad_norm": 0.2547961473464966,
+ "learning_rate": 0.0006,
+ "loss": 3.5797581672668457,
+ "step": 3531
+ },
+ {
+ "epoch": 49.05591961555265,
+ "grad_norm": 0.25674310326576233,
+ "learning_rate": 0.0006,
+ "loss": 3.557278871536255,
+ "step": 3532
+ },
+ {
+ "epoch": 49.0698995194408,
+ "grad_norm": 0.25511929392814636,
+ "learning_rate": 0.0006,
+ "loss": 3.5788025856018066,
+ "step": 3533
+ },
+ {
+ "epoch": 49.083879423328966,
+ "grad_norm": 0.22920994460582733,
+ "learning_rate": 0.0006,
+ "loss": 3.580489158630371,
+ "step": 3534
+ },
+ {
+ "epoch": 49.09785932721712,
+ "grad_norm": 0.23436492681503296,
+ "learning_rate": 0.0006,
+ "loss": 3.5603699684143066,
+ "step": 3535
+ },
+ {
+ "epoch": 49.111839231105286,
+ "grad_norm": 0.2542382776737213,
+ "learning_rate": 0.0006,
+ "loss": 3.5937037467956543,
+ "step": 3536
+ },
+ {
+ "epoch": 49.12581913499345,
+ "grad_norm": 0.26718273758888245,
+ "learning_rate": 0.0006,
+ "loss": 3.6032168865203857,
+ "step": 3537
+ },
+ {
+ "epoch": 49.139799038881605,
+ "grad_norm": 0.2406773865222931,
+ "learning_rate": 0.0006,
+ "loss": 3.5737085342407227,
+ "step": 3538
+ },
+ {
+ "epoch": 49.15377894276977,
+ "grad_norm": 0.23408754169940948,
+ "learning_rate": 0.0006,
+ "loss": 3.592543601989746,
+ "step": 3539
+ },
+ {
+ "epoch": 49.16775884665793,
+ "grad_norm": 0.22974351048469543,
+ "learning_rate": 0.0006,
+ "loss": 3.543618679046631,
+ "step": 3540
+ },
+ {
+ "epoch": 49.18173875054609,
+ "grad_norm": 0.23479530215263367,
+ "learning_rate": 0.0006,
+ "loss": 3.547590732574463,
+ "step": 3541
+ },
+ {
+ "epoch": 49.19571865443425,
+ "grad_norm": 0.2100638598203659,
+ "learning_rate": 0.0006,
+ "loss": 3.6027469635009766,
+ "step": 3542
+ },
+ {
+ "epoch": 49.20969855832241,
+ "grad_norm": 0.20239035785198212,
+ "learning_rate": 0.0006,
+ "loss": 3.598567008972168,
+ "step": 3543
+ },
+ {
+ "epoch": 49.22367846221057,
+ "grad_norm": 0.20480065047740936,
+ "learning_rate": 0.0006,
+ "loss": 3.591038227081299,
+ "step": 3544
+ },
+ {
+ "epoch": 49.237658366098735,
+ "grad_norm": 0.20439887046813965,
+ "learning_rate": 0.0006,
+ "loss": 3.555039405822754,
+ "step": 3545
+ },
+ {
+ "epoch": 49.25163826998689,
+ "grad_norm": 0.21245788037776947,
+ "learning_rate": 0.0006,
+ "loss": 3.5772666931152344,
+ "step": 3546
+ },
+ {
+ "epoch": 49.265618173875055,
+ "grad_norm": 0.1993357390165329,
+ "learning_rate": 0.0006,
+ "loss": 3.5847411155700684,
+ "step": 3547
+ },
+ {
+ "epoch": 49.27959807776322,
+ "grad_norm": 0.22550229728221893,
+ "learning_rate": 0.0006,
+ "loss": 3.5679750442504883,
+ "step": 3548
+ },
+ {
+ "epoch": 49.293577981651374,
+ "grad_norm": 0.2383355349302292,
+ "learning_rate": 0.0006,
+ "loss": 3.57085919380188,
+ "step": 3549
+ },
+ {
+ "epoch": 49.30755788553954,
+ "grad_norm": 0.23968911170959473,
+ "learning_rate": 0.0006,
+ "loss": 3.557415246963501,
+ "step": 3550
+ },
+ {
+ "epoch": 49.3215377894277,
+ "grad_norm": 0.21453262865543365,
+ "learning_rate": 0.0006,
+ "loss": 3.5763611793518066,
+ "step": 3551
+ },
+ {
+ "epoch": 49.33551769331586,
+ "grad_norm": 0.20380273461341858,
+ "learning_rate": 0.0006,
+ "loss": 3.552011013031006,
+ "step": 3552
+ },
+ {
+ "epoch": 49.34949759720402,
+ "grad_norm": 0.19719970226287842,
+ "learning_rate": 0.0006,
+ "loss": 3.5719075202941895,
+ "step": 3553
+ },
+ {
+ "epoch": 49.36347750109218,
+ "grad_norm": 0.19018089771270752,
+ "learning_rate": 0.0006,
+ "loss": 3.5843467712402344,
+ "step": 3554
+ },
+ {
+ "epoch": 49.37745740498034,
+ "grad_norm": 0.18369099497795105,
+ "learning_rate": 0.0006,
+ "loss": 3.561741352081299,
+ "step": 3555
+ },
+ {
+ "epoch": 49.391437308868504,
+ "grad_norm": 0.2070280760526657,
+ "learning_rate": 0.0006,
+ "loss": 3.590721607208252,
+ "step": 3556
+ },
+ {
+ "epoch": 49.40541721275666,
+ "grad_norm": 0.23287905752658844,
+ "learning_rate": 0.0006,
+ "loss": 3.617081642150879,
+ "step": 3557
+ },
+ {
+ "epoch": 49.419397116644824,
+ "grad_norm": 0.21877793967723846,
+ "learning_rate": 0.0006,
+ "loss": 3.547166347503662,
+ "step": 3558
+ },
+ {
+ "epoch": 49.43337702053299,
+ "grad_norm": 0.21105137467384338,
+ "learning_rate": 0.0006,
+ "loss": 3.593552350997925,
+ "step": 3559
+ },
+ {
+ "epoch": 49.44735692442114,
+ "grad_norm": 0.24940872192382812,
+ "learning_rate": 0.0006,
+ "loss": 3.599729537963867,
+ "step": 3560
+ },
+ {
+ "epoch": 49.46133682830931,
+ "grad_norm": 0.26952996850013733,
+ "learning_rate": 0.0006,
+ "loss": 3.5915074348449707,
+ "step": 3561
+ },
+ {
+ "epoch": 49.47531673219746,
+ "grad_norm": 0.25706353783607483,
+ "learning_rate": 0.0006,
+ "loss": 3.587472915649414,
+ "step": 3562
+ },
+ {
+ "epoch": 49.489296636085626,
+ "grad_norm": 0.23666661977767944,
+ "learning_rate": 0.0006,
+ "loss": 3.561340808868408,
+ "step": 3563
+ },
+ {
+ "epoch": 49.50327653997379,
+ "grad_norm": 0.22524063289165497,
+ "learning_rate": 0.0006,
+ "loss": 3.587310314178467,
+ "step": 3564
+ },
+ {
+ "epoch": 49.517256443861946,
+ "grad_norm": 0.22991003096103668,
+ "learning_rate": 0.0006,
+ "loss": 3.56671142578125,
+ "step": 3565
+ },
+ {
+ "epoch": 49.53123634775011,
+ "grad_norm": 0.23067602515220642,
+ "learning_rate": 0.0006,
+ "loss": 3.578601837158203,
+ "step": 3566
+ },
+ {
+ "epoch": 49.54521625163827,
+ "grad_norm": 0.2133914828300476,
+ "learning_rate": 0.0006,
+ "loss": 3.593726873397827,
+ "step": 3567
+ },
+ {
+ "epoch": 49.55919615552643,
+ "grad_norm": 0.21879160404205322,
+ "learning_rate": 0.0006,
+ "loss": 3.5833992958068848,
+ "step": 3568
+ },
+ {
+ "epoch": 49.57317605941459,
+ "grad_norm": 0.2116270661354065,
+ "learning_rate": 0.0006,
+ "loss": 3.575761079788208,
+ "step": 3569
+ },
+ {
+ "epoch": 49.58715596330275,
+ "grad_norm": 0.19506660103797913,
+ "learning_rate": 0.0006,
+ "loss": 3.5600461959838867,
+ "step": 3570
+ },
+ {
+ "epoch": 49.60113586719091,
+ "grad_norm": 0.21305067837238312,
+ "learning_rate": 0.0006,
+ "loss": 3.5717577934265137,
+ "step": 3571
+ },
+ {
+ "epoch": 49.615115771079076,
+ "grad_norm": 0.21184347569942474,
+ "learning_rate": 0.0006,
+ "loss": 3.608819007873535,
+ "step": 3572
+ },
+ {
+ "epoch": 49.62909567496723,
+ "grad_norm": 0.22302201390266418,
+ "learning_rate": 0.0006,
+ "loss": 3.5871644020080566,
+ "step": 3573
+ },
+ {
+ "epoch": 49.643075578855395,
+ "grad_norm": 0.21942365169525146,
+ "learning_rate": 0.0006,
+ "loss": 3.596029043197632,
+ "step": 3574
+ },
+ {
+ "epoch": 49.65705548274356,
+ "grad_norm": 0.2627110481262207,
+ "learning_rate": 0.0006,
+ "loss": 3.5900766849517822,
+ "step": 3575
+ },
+ {
+ "epoch": 49.671035386631715,
+ "grad_norm": 0.28253448009490967,
+ "learning_rate": 0.0006,
+ "loss": 3.599386215209961,
+ "step": 3576
+ },
+ {
+ "epoch": 49.68501529051988,
+ "grad_norm": 0.24279426038265228,
+ "learning_rate": 0.0006,
+ "loss": 3.580909013748169,
+ "step": 3577
+ },
+ {
+ "epoch": 49.69899519440804,
+ "grad_norm": 0.22092898190021515,
+ "learning_rate": 0.0006,
+ "loss": 3.6043782234191895,
+ "step": 3578
+ },
+ {
+ "epoch": 49.7129750982962,
+ "grad_norm": 0.23356051743030548,
+ "learning_rate": 0.0006,
+ "loss": 3.6103105545043945,
+ "step": 3579
+ },
+ {
+ "epoch": 49.72695500218436,
+ "grad_norm": 0.24508118629455566,
+ "learning_rate": 0.0006,
+ "loss": 3.612980365753174,
+ "step": 3580
+ },
+ {
+ "epoch": 49.74093490607252,
+ "grad_norm": 0.2501833438873291,
+ "learning_rate": 0.0006,
+ "loss": 3.6111063957214355,
+ "step": 3581
+ },
+ {
+ "epoch": 49.75491480996068,
+ "grad_norm": 0.2263427972793579,
+ "learning_rate": 0.0006,
+ "loss": 3.5709285736083984,
+ "step": 3582
+ },
+ {
+ "epoch": 49.768894713848844,
+ "grad_norm": 0.19881728291511536,
+ "learning_rate": 0.0006,
+ "loss": 3.5836503505706787,
+ "step": 3583
+ },
+ {
+ "epoch": 49.782874617737,
+ "grad_norm": 0.22516517341136932,
+ "learning_rate": 0.0006,
+ "loss": 3.5797667503356934,
+ "step": 3584
+ },
+ {
+ "epoch": 49.796854521625164,
+ "grad_norm": 0.22347061336040497,
+ "learning_rate": 0.0006,
+ "loss": 3.6245951652526855,
+ "step": 3585
+ },
+ {
+ "epoch": 49.81083442551333,
+ "grad_norm": 0.2062593549489975,
+ "learning_rate": 0.0006,
+ "loss": 3.607572317123413,
+ "step": 3586
+ },
+ {
+ "epoch": 49.824814329401484,
+ "grad_norm": 0.20671074092388153,
+ "learning_rate": 0.0006,
+ "loss": 3.5671472549438477,
+ "step": 3587
+ },
+ {
+ "epoch": 49.83879423328965,
+ "grad_norm": 0.19981902837753296,
+ "learning_rate": 0.0006,
+ "loss": 3.6084837913513184,
+ "step": 3588
+ },
+ {
+ "epoch": 49.8527741371778,
+ "grad_norm": 0.2004556804895401,
+ "learning_rate": 0.0006,
+ "loss": 3.631455898284912,
+ "step": 3589
+ },
+ {
+ "epoch": 49.86675404106597,
+ "grad_norm": 0.20990414917469025,
+ "learning_rate": 0.0006,
+ "loss": 3.6017699241638184,
+ "step": 3590
+ },
+ {
+ "epoch": 49.88073394495413,
+ "grad_norm": 0.19016146659851074,
+ "learning_rate": 0.0006,
+ "loss": 3.6110801696777344,
+ "step": 3591
+ },
+ {
+ "epoch": 49.89471384884229,
+ "grad_norm": 0.2015834003686905,
+ "learning_rate": 0.0006,
+ "loss": 3.58852481842041,
+ "step": 3592
+ },
+ {
+ "epoch": 49.90869375273045,
+ "grad_norm": 0.205678328871727,
+ "learning_rate": 0.0006,
+ "loss": 3.581789970397949,
+ "step": 3593
+ },
+ {
+ "epoch": 49.92267365661861,
+ "grad_norm": 0.20975211262702942,
+ "learning_rate": 0.0006,
+ "loss": 3.6126320362091064,
+ "step": 3594
+ },
+ {
+ "epoch": 49.93665356050677,
+ "grad_norm": 0.20510081946849823,
+ "learning_rate": 0.0006,
+ "loss": 3.5970656871795654,
+ "step": 3595
+ },
+ {
+ "epoch": 49.95063346439493,
+ "grad_norm": 0.19842886924743652,
+ "learning_rate": 0.0006,
+ "loss": 3.6055545806884766,
+ "step": 3596
+ },
+ {
+ "epoch": 49.964613368283096,
+ "grad_norm": 0.20551791787147522,
+ "learning_rate": 0.0006,
+ "loss": 3.5861949920654297,
+ "step": 3597
+ },
+ {
+ "epoch": 49.97859327217125,
+ "grad_norm": 0.21147456765174866,
+ "learning_rate": 0.0006,
+ "loss": 3.585934638977051,
+ "step": 3598
+ },
+ {
+ "epoch": 49.992573176059416,
+ "grad_norm": 0.21793442964553833,
+ "learning_rate": 0.0006,
+ "loss": 3.5956411361694336,
+ "step": 3599
+ },
+ {
+ "epoch": 50.0,
+ "grad_norm": 0.24623161554336548,
+ "learning_rate": 0.0006,
+ "loss": 3.623453140258789,
+ "step": 3600
+ },
+ {
+ "epoch": 50.0,
+ "eval_loss": 3.9807891845703125,
+ "eval_runtime": 45.7708,
+ "eval_samples_per_second": 53.353,
+ "eval_steps_per_second": 3.343,
+ "step": 3600
+ },
+ {
+ "epoch": 50.01397990388816,
+ "grad_norm": 0.22322626411914825,
+ "learning_rate": 0.0006,
+ "loss": 3.5475401878356934,
+ "step": 3601
+ },
+ {
+ "epoch": 50.02795980777632,
+ "grad_norm": 0.21957066655158997,
+ "learning_rate": 0.0006,
+ "loss": 3.5616683959960938,
+ "step": 3602
+ },
+ {
+ "epoch": 50.04193971166448,
+ "grad_norm": 0.22030551731586456,
+ "learning_rate": 0.0006,
+ "loss": 3.56367826461792,
+ "step": 3603
+ },
+ {
+ "epoch": 50.05591961555265,
+ "grad_norm": 0.21536092460155487,
+ "learning_rate": 0.0006,
+ "loss": 3.5613503456115723,
+ "step": 3604
+ },
+ {
+ "epoch": 50.0698995194408,
+ "grad_norm": 0.22454269230365753,
+ "learning_rate": 0.0006,
+ "loss": 3.5348987579345703,
+ "step": 3605
+ },
+ {
+ "epoch": 50.083879423328966,
+ "grad_norm": 0.2281617820262909,
+ "learning_rate": 0.0006,
+ "loss": 3.5722241401672363,
+ "step": 3606
+ },
+ {
+ "epoch": 50.09785932721712,
+ "grad_norm": 0.23318710923194885,
+ "learning_rate": 0.0006,
+ "loss": 3.559063673019409,
+ "step": 3607
+ },
+ {
+ "epoch": 50.111839231105286,
+ "grad_norm": 0.2277889847755432,
+ "learning_rate": 0.0006,
+ "loss": 3.5632925033569336,
+ "step": 3608
+ },
+ {
+ "epoch": 50.12581913499345,
+ "grad_norm": 0.2317705601453781,
+ "learning_rate": 0.0006,
+ "loss": 3.5835886001586914,
+ "step": 3609
+ },
+ {
+ "epoch": 50.139799038881605,
+ "grad_norm": 0.21388863027095795,
+ "learning_rate": 0.0006,
+ "loss": 3.5976145267486572,
+ "step": 3610
+ },
+ {
+ "epoch": 50.15377894276977,
+ "grad_norm": 0.2070954293012619,
+ "learning_rate": 0.0006,
+ "loss": 3.5486221313476562,
+ "step": 3611
+ },
+ {
+ "epoch": 50.16775884665793,
+ "grad_norm": 0.21602077782154083,
+ "learning_rate": 0.0006,
+ "loss": 3.5897607803344727,
+ "step": 3612
+ },
+ {
+ "epoch": 50.18173875054609,
+ "grad_norm": 0.21106162667274475,
+ "learning_rate": 0.0006,
+ "loss": 3.5587167739868164,
+ "step": 3613
+ },
+ {
+ "epoch": 50.19571865443425,
+ "grad_norm": 0.2047950178384781,
+ "learning_rate": 0.0006,
+ "loss": 3.576798915863037,
+ "step": 3614
+ },
+ {
+ "epoch": 50.20969855832241,
+ "grad_norm": 0.2204097956418991,
+ "learning_rate": 0.0006,
+ "loss": 3.5466837882995605,
+ "step": 3615
+ },
+ {
+ "epoch": 50.22367846221057,
+ "grad_norm": 0.2220875471830368,
+ "learning_rate": 0.0006,
+ "loss": 3.5722036361694336,
+ "step": 3616
+ },
+ {
+ "epoch": 50.237658366098735,
+ "grad_norm": 0.2250797003507614,
+ "learning_rate": 0.0006,
+ "loss": 3.566347122192383,
+ "step": 3617
+ },
+ {
+ "epoch": 50.25163826998689,
+ "grad_norm": 0.22837485373020172,
+ "learning_rate": 0.0006,
+ "loss": 3.5673274993896484,
+ "step": 3618
+ },
+ {
+ "epoch": 50.265618173875055,
+ "grad_norm": 0.2281104475259781,
+ "learning_rate": 0.0006,
+ "loss": 3.5543737411499023,
+ "step": 3619
+ },
+ {
+ "epoch": 50.27959807776322,
+ "grad_norm": 0.2052381932735443,
+ "learning_rate": 0.0006,
+ "loss": 3.566401958465576,
+ "step": 3620
+ },
+ {
+ "epoch": 50.293577981651374,
+ "grad_norm": 0.2125921994447708,
+ "learning_rate": 0.0006,
+ "loss": 3.5467424392700195,
+ "step": 3621
+ },
+ {
+ "epoch": 50.30755788553954,
+ "grad_norm": 0.22641244530677795,
+ "learning_rate": 0.0006,
+ "loss": 3.548497200012207,
+ "step": 3622
+ },
+ {
+ "epoch": 50.3215377894277,
+ "grad_norm": 0.23039482533931732,
+ "learning_rate": 0.0006,
+ "loss": 3.5948381423950195,
+ "step": 3623
+ },
+ {
+ "epoch": 50.33551769331586,
+ "grad_norm": 0.22753404080867767,
+ "learning_rate": 0.0006,
+ "loss": 3.541825532913208,
+ "step": 3624
+ },
+ {
+ "epoch": 50.34949759720402,
+ "grad_norm": 0.2528170347213745,
+ "learning_rate": 0.0006,
+ "loss": 3.5937235355377197,
+ "step": 3625
+ },
+ {
+ "epoch": 50.36347750109218,
+ "grad_norm": 0.25434595346450806,
+ "learning_rate": 0.0006,
+ "loss": 3.5779776573181152,
+ "step": 3626
+ },
+ {
+ "epoch": 50.37745740498034,
+ "grad_norm": 0.22519059479236603,
+ "learning_rate": 0.0006,
+ "loss": 3.5456271171569824,
+ "step": 3627
+ },
+ {
+ "epoch": 50.391437308868504,
+ "grad_norm": 0.2077232301235199,
+ "learning_rate": 0.0006,
+ "loss": 3.5693111419677734,
+ "step": 3628
+ },
+ {
+ "epoch": 50.40541721275666,
+ "grad_norm": 0.20925411581993103,
+ "learning_rate": 0.0006,
+ "loss": 3.6063997745513916,
+ "step": 3629
+ },
+ {
+ "epoch": 50.419397116644824,
+ "grad_norm": 0.2114555686712265,
+ "learning_rate": 0.0006,
+ "loss": 3.5676894187927246,
+ "step": 3630
+ },
+ {
+ "epoch": 50.43337702053299,
+ "grad_norm": 0.23759354650974274,
+ "learning_rate": 0.0006,
+ "loss": 3.5465126037597656,
+ "step": 3631
+ },
+ {
+ "epoch": 50.44735692442114,
+ "grad_norm": 0.23809516429901123,
+ "learning_rate": 0.0006,
+ "loss": 3.571600914001465,
+ "step": 3632
+ },
+ {
+ "epoch": 50.46133682830931,
+ "grad_norm": 0.20501303672790527,
+ "learning_rate": 0.0006,
+ "loss": 3.573550224304199,
+ "step": 3633
+ },
+ {
+ "epoch": 50.47531673219746,
+ "grad_norm": 0.21562306582927704,
+ "learning_rate": 0.0006,
+ "loss": 3.5625600814819336,
+ "step": 3634
+ },
+ {
+ "epoch": 50.489296636085626,
+ "grad_norm": 0.20469479262828827,
+ "learning_rate": 0.0006,
+ "loss": 3.5737175941467285,
+ "step": 3635
+ },
+ {
+ "epoch": 50.50327653997379,
+ "grad_norm": 0.2078634798526764,
+ "learning_rate": 0.0006,
+ "loss": 3.5691545009613037,
+ "step": 3636
+ },
+ {
+ "epoch": 50.517256443861946,
+ "grad_norm": 0.20340897142887115,
+ "learning_rate": 0.0006,
+ "loss": 3.583918571472168,
+ "step": 3637
+ },
+ {
+ "epoch": 50.53123634775011,
+ "grad_norm": 0.2006944715976715,
+ "learning_rate": 0.0006,
+ "loss": 3.596034049987793,
+ "step": 3638
+ },
+ {
+ "epoch": 50.54521625163827,
+ "grad_norm": 0.19281257688999176,
+ "learning_rate": 0.0006,
+ "loss": 3.5993080139160156,
+ "step": 3639
+ },
+ {
+ "epoch": 50.55919615552643,
+ "grad_norm": 0.19528807699680328,
+ "learning_rate": 0.0006,
+ "loss": 3.6108102798461914,
+ "step": 3640
+ },
+ {
+ "epoch": 50.57317605941459,
+ "grad_norm": 0.19329112768173218,
+ "learning_rate": 0.0006,
+ "loss": 3.5964512825012207,
+ "step": 3641
+ },
+ {
+ "epoch": 50.58715596330275,
+ "grad_norm": 0.1928209513425827,
+ "learning_rate": 0.0006,
+ "loss": 3.5927724838256836,
+ "step": 3642
+ },
+ {
+ "epoch": 50.60113586719091,
+ "grad_norm": 0.20212236046791077,
+ "learning_rate": 0.0006,
+ "loss": 3.5778708457946777,
+ "step": 3643
+ },
+ {
+ "epoch": 50.615115771079076,
+ "grad_norm": 0.22244620323181152,
+ "learning_rate": 0.0006,
+ "loss": 3.6219539642333984,
+ "step": 3644
+ },
+ {
+ "epoch": 50.62909567496723,
+ "grad_norm": 0.2659119963645935,
+ "learning_rate": 0.0006,
+ "loss": 3.578831195831299,
+ "step": 3645
+ },
+ {
+ "epoch": 50.643075578855395,
+ "grad_norm": 0.2837344706058502,
+ "learning_rate": 0.0006,
+ "loss": 3.587677240371704,
+ "step": 3646
+ },
+ {
+ "epoch": 50.65705548274356,
+ "grad_norm": 0.26747965812683105,
+ "learning_rate": 0.0006,
+ "loss": 3.611286163330078,
+ "step": 3647
+ },
+ {
+ "epoch": 50.671035386631715,
+ "grad_norm": 0.24604788422584534,
+ "learning_rate": 0.0006,
+ "loss": 3.5740575790405273,
+ "step": 3648
+ },
+ {
+ "epoch": 50.68501529051988,
+ "grad_norm": 0.2379457652568817,
+ "learning_rate": 0.0006,
+ "loss": 3.5997209548950195,
+ "step": 3649
+ },
+ {
+ "epoch": 50.69899519440804,
+ "grad_norm": 0.2296321839094162,
+ "learning_rate": 0.0006,
+ "loss": 3.5975162982940674,
+ "step": 3650
+ },
+ {
+ "epoch": 50.7129750982962,
+ "grad_norm": 0.22054627537727356,
+ "learning_rate": 0.0006,
+ "loss": 3.5821738243103027,
+ "step": 3651
+ },
+ {
+ "epoch": 50.72695500218436,
+ "grad_norm": 0.22114980220794678,
+ "learning_rate": 0.0006,
+ "loss": 3.5769970417022705,
+ "step": 3652
+ },
+ {
+ "epoch": 50.74093490607252,
+ "grad_norm": 0.21389314532279968,
+ "learning_rate": 0.0006,
+ "loss": 3.5952796936035156,
+ "step": 3653
+ },
+ {
+ "epoch": 50.75491480996068,
+ "grad_norm": 0.21069210767745972,
+ "learning_rate": 0.0006,
+ "loss": 3.5884671211242676,
+ "step": 3654
+ },
+ {
+ "epoch": 50.768894713848844,
+ "grad_norm": 0.22028805315494537,
+ "learning_rate": 0.0006,
+ "loss": 3.593442440032959,
+ "step": 3655
+ },
+ {
+ "epoch": 50.782874617737,
+ "grad_norm": 0.21296948194503784,
+ "learning_rate": 0.0006,
+ "loss": 3.5656774044036865,
+ "step": 3656
+ },
+ {
+ "epoch": 50.796854521625164,
+ "grad_norm": 0.19871588051319122,
+ "learning_rate": 0.0006,
+ "loss": 3.5939064025878906,
+ "step": 3657
+ },
+ {
+ "epoch": 50.81083442551333,
+ "grad_norm": 0.19523470103740692,
+ "learning_rate": 0.0006,
+ "loss": 3.5806071758270264,
+ "step": 3658
+ },
+ {
+ "epoch": 50.824814329401484,
+ "grad_norm": 0.18718191981315613,
+ "learning_rate": 0.0006,
+ "loss": 3.5903120040893555,
+ "step": 3659
+ },
+ {
+ "epoch": 50.83879423328965,
+ "grad_norm": 0.18796689808368683,
+ "learning_rate": 0.0006,
+ "loss": 3.5799593925476074,
+ "step": 3660
+ },
+ {
+ "epoch": 50.8527741371778,
+ "grad_norm": 0.21794569492340088,
+ "learning_rate": 0.0006,
+ "loss": 3.5712361335754395,
+ "step": 3661
+ },
+ {
+ "epoch": 50.86675404106597,
+ "grad_norm": 0.2374759465456009,
+ "learning_rate": 0.0006,
+ "loss": 3.602503776550293,
+ "step": 3662
+ },
+ {
+ "epoch": 50.88073394495413,
+ "grad_norm": 0.20213527977466583,
+ "learning_rate": 0.0006,
+ "loss": 3.5756399631500244,
+ "step": 3663
+ },
+ {
+ "epoch": 50.89471384884229,
+ "grad_norm": 0.1875160187482834,
+ "learning_rate": 0.0006,
+ "loss": 3.625436305999756,
+ "step": 3664
+ },
+ {
+ "epoch": 50.90869375273045,
+ "grad_norm": 0.19908255338668823,
+ "learning_rate": 0.0006,
+ "loss": 3.592522621154785,
+ "step": 3665
+ },
+ {
+ "epoch": 50.92267365661861,
+ "grad_norm": 0.20776167511940002,
+ "learning_rate": 0.0006,
+ "loss": 3.5777883529663086,
+ "step": 3666
+ },
+ {
+ "epoch": 50.93665356050677,
+ "grad_norm": 0.19510093331336975,
+ "learning_rate": 0.0006,
+ "loss": 3.587306022644043,
+ "step": 3667
+ },
+ {
+ "epoch": 50.95063346439493,
+ "grad_norm": 0.2180490493774414,
+ "learning_rate": 0.0006,
+ "loss": 3.5855464935302734,
+ "step": 3668
+ },
+ {
+ "epoch": 50.964613368283096,
+ "grad_norm": 0.19967055320739746,
+ "learning_rate": 0.0006,
+ "loss": 3.609689235687256,
+ "step": 3669
+ },
+ {
+ "epoch": 50.97859327217125,
+ "grad_norm": 0.2081584632396698,
+ "learning_rate": 0.0006,
+ "loss": 3.625236749649048,
+ "step": 3670
+ },
+ {
+ "epoch": 50.992573176059416,
+ "grad_norm": 0.2312266230583191,
+ "learning_rate": 0.0006,
+ "loss": 3.5977330207824707,
+ "step": 3671
+ },
+ {
+ "epoch": 51.0,
+ "grad_norm": 0.2464766502380371,
+ "learning_rate": 0.0006,
+ "loss": 3.610635995864868,
+ "step": 3672
+ },
+ {
+ "epoch": 51.0,
+ "eval_loss": 3.9810166358947754,
+ "eval_runtime": 45.5851,
+ "eval_samples_per_second": 53.57,
+ "eval_steps_per_second": 3.356,
+ "step": 3672
+ },
+ {
+ "epoch": 51.01397990388816,
+ "grad_norm": 0.22583232820034027,
+ "learning_rate": 0.0006,
+ "loss": 3.547168016433716,
+ "step": 3673
+ },
+ {
+ "epoch": 51.02795980777632,
+ "grad_norm": 0.23001070320606232,
+ "learning_rate": 0.0006,
+ "loss": 3.546207904815674,
+ "step": 3674
+ },
+ {
+ "epoch": 51.04193971166448,
+ "grad_norm": 0.21891392767429352,
+ "learning_rate": 0.0006,
+ "loss": 3.564371109008789,
+ "step": 3675
+ },
+ {
+ "epoch": 51.05591961555265,
+ "grad_norm": 0.22195076942443848,
+ "learning_rate": 0.0006,
+ "loss": 3.538297414779663,
+ "step": 3676
+ },
+ {
+ "epoch": 51.0698995194408,
+ "grad_norm": 0.24688288569450378,
+ "learning_rate": 0.0006,
+ "loss": 3.5705811977386475,
+ "step": 3677
+ },
+ {
+ "epoch": 51.083879423328966,
+ "grad_norm": 0.2731003165245056,
+ "learning_rate": 0.0006,
+ "loss": 3.530763626098633,
+ "step": 3678
+ },
+ {
+ "epoch": 51.09785932721712,
+ "grad_norm": 0.27474021911621094,
+ "learning_rate": 0.0006,
+ "loss": 3.5559208393096924,
+ "step": 3679
+ },
+ {
+ "epoch": 51.111839231105286,
+ "grad_norm": 0.26311439275741577,
+ "learning_rate": 0.0006,
+ "loss": 3.5698819160461426,
+ "step": 3680
+ },
+ {
+ "epoch": 51.12581913499345,
+ "grad_norm": 0.21895965933799744,
+ "learning_rate": 0.0006,
+ "loss": 3.567232370376587,
+ "step": 3681
+ },
+ {
+ "epoch": 51.139799038881605,
+ "grad_norm": 0.19598282873630524,
+ "learning_rate": 0.0006,
+ "loss": 3.6033718585968018,
+ "step": 3682
+ },
+ {
+ "epoch": 51.15377894276977,
+ "grad_norm": 0.2183268666267395,
+ "learning_rate": 0.0006,
+ "loss": 3.5599026679992676,
+ "step": 3683
+ },
+ {
+ "epoch": 51.16775884665793,
+ "grad_norm": 0.22657731175422668,
+ "learning_rate": 0.0006,
+ "loss": 3.532038688659668,
+ "step": 3684
+ },
+ {
+ "epoch": 51.18173875054609,
+ "grad_norm": 0.21979935467243195,
+ "learning_rate": 0.0006,
+ "loss": 3.544640064239502,
+ "step": 3685
+ },
+ {
+ "epoch": 51.19571865443425,
+ "grad_norm": 0.20581361651420593,
+ "learning_rate": 0.0006,
+ "loss": 3.579803466796875,
+ "step": 3686
+ },
+ {
+ "epoch": 51.20969855832241,
+ "grad_norm": 0.22677212953567505,
+ "learning_rate": 0.0006,
+ "loss": 3.576796054840088,
+ "step": 3687
+ },
+ {
+ "epoch": 51.22367846221057,
+ "grad_norm": 0.2599104940891266,
+ "learning_rate": 0.0006,
+ "loss": 3.5657899379730225,
+ "step": 3688
+ },
+ {
+ "epoch": 51.237658366098735,
+ "grad_norm": 0.23320309817790985,
+ "learning_rate": 0.0006,
+ "loss": 3.5537824630737305,
+ "step": 3689
+ },
+ {
+ "epoch": 51.25163826998689,
+ "grad_norm": 0.2345186471939087,
+ "learning_rate": 0.0006,
+ "loss": 3.5699901580810547,
+ "step": 3690
+ },
+ {
+ "epoch": 51.265618173875055,
+ "grad_norm": 0.24723312258720398,
+ "learning_rate": 0.0006,
+ "loss": 3.553495168685913,
+ "step": 3691
+ },
+ {
+ "epoch": 51.27959807776322,
+ "grad_norm": 0.24195604026317596,
+ "learning_rate": 0.0006,
+ "loss": 3.6008248329162598,
+ "step": 3692
+ },
+ {
+ "epoch": 51.293577981651374,
+ "grad_norm": 0.23011726140975952,
+ "learning_rate": 0.0006,
+ "loss": 3.5842812061309814,
+ "step": 3693
+ },
+ {
+ "epoch": 51.30755788553954,
+ "grad_norm": 0.23412185907363892,
+ "learning_rate": 0.0006,
+ "loss": 3.5648040771484375,
+ "step": 3694
+ },
+ {
+ "epoch": 51.3215377894277,
+ "grad_norm": 0.22911828756332397,
+ "learning_rate": 0.0006,
+ "loss": 3.5599000453948975,
+ "step": 3695
+ },
+ {
+ "epoch": 51.33551769331586,
+ "grad_norm": 0.20045386254787445,
+ "learning_rate": 0.0006,
+ "loss": 3.559370517730713,
+ "step": 3696
+ },
+ {
+ "epoch": 51.34949759720402,
+ "grad_norm": 0.24723322689533234,
+ "learning_rate": 0.0006,
+ "loss": 3.5734081268310547,
+ "step": 3697
+ },
+ {
+ "epoch": 51.36347750109218,
+ "grad_norm": 0.28003066778182983,
+ "learning_rate": 0.0006,
+ "loss": 3.574591636657715,
+ "step": 3698
+ },
+ {
+ "epoch": 51.37745740498034,
+ "grad_norm": 0.27969157695770264,
+ "learning_rate": 0.0006,
+ "loss": 3.5703907012939453,
+ "step": 3699
+ },
+ {
+ "epoch": 51.391437308868504,
+ "grad_norm": 0.2352922111749649,
+ "learning_rate": 0.0006,
+ "loss": 3.540452480316162,
+ "step": 3700
+ },
+ {
+ "epoch": 51.40541721275666,
+ "grad_norm": 0.21332240104675293,
+ "learning_rate": 0.0006,
+ "loss": 3.5883522033691406,
+ "step": 3701
+ },
+ {
+ "epoch": 51.419397116644824,
+ "grad_norm": 0.2021809071302414,
+ "learning_rate": 0.0006,
+ "loss": 3.567544460296631,
+ "step": 3702
+ },
+ {
+ "epoch": 51.43337702053299,
+ "grad_norm": 0.23054654896259308,
+ "learning_rate": 0.0006,
+ "loss": 3.5927062034606934,
+ "step": 3703
+ },
+ {
+ "epoch": 51.44735692442114,
+ "grad_norm": 0.22398747503757477,
+ "learning_rate": 0.0006,
+ "loss": 3.5977213382720947,
+ "step": 3704
+ },
+ {
+ "epoch": 51.46133682830931,
+ "grad_norm": 0.2021128088235855,
+ "learning_rate": 0.0006,
+ "loss": 3.585836887359619,
+ "step": 3705
+ },
+ {
+ "epoch": 51.47531673219746,
+ "grad_norm": 0.23031292855739594,
+ "learning_rate": 0.0006,
+ "loss": 3.532315731048584,
+ "step": 3706
+ },
+ {
+ "epoch": 51.489296636085626,
+ "grad_norm": 0.26744455099105835,
+ "learning_rate": 0.0006,
+ "loss": 3.585782289505005,
+ "step": 3707
+ },
+ {
+ "epoch": 51.50327653997379,
+ "grad_norm": 0.2508980929851532,
+ "learning_rate": 0.0006,
+ "loss": 3.550276279449463,
+ "step": 3708
+ },
+ {
+ "epoch": 51.517256443861946,
+ "grad_norm": 0.2180585265159607,
+ "learning_rate": 0.0006,
+ "loss": 3.566798210144043,
+ "step": 3709
+ },
+ {
+ "epoch": 51.53123634775011,
+ "grad_norm": 0.18508869409561157,
+ "learning_rate": 0.0006,
+ "loss": 3.5295116901397705,
+ "step": 3710
+ },
+ {
+ "epoch": 51.54521625163827,
+ "grad_norm": 0.19017672538757324,
+ "learning_rate": 0.0006,
+ "loss": 3.5932717323303223,
+ "step": 3711
+ },
+ {
+ "epoch": 51.55919615552643,
+ "grad_norm": 0.2228020876646042,
+ "learning_rate": 0.0006,
+ "loss": 3.5660648345947266,
+ "step": 3712
+ },
+ {
+ "epoch": 51.57317605941459,
+ "grad_norm": 0.22948148846626282,
+ "learning_rate": 0.0006,
+ "loss": 3.5785627365112305,
+ "step": 3713
+ },
+ {
+ "epoch": 51.58715596330275,
+ "grad_norm": 0.2438911497592926,
+ "learning_rate": 0.0006,
+ "loss": 3.5885257720947266,
+ "step": 3714
+ },
+ {
+ "epoch": 51.60113586719091,
+ "grad_norm": 0.25012296438217163,
+ "learning_rate": 0.0006,
+ "loss": 3.577232599258423,
+ "step": 3715
+ },
+ {
+ "epoch": 51.615115771079076,
+ "grad_norm": 0.27102336287498474,
+ "learning_rate": 0.0006,
+ "loss": 3.5600078105926514,
+ "step": 3716
+ },
+ {
+ "epoch": 51.62909567496723,
+ "grad_norm": 0.26425355672836304,
+ "learning_rate": 0.0006,
+ "loss": 3.5694093704223633,
+ "step": 3717
+ },
+ {
+ "epoch": 51.643075578855395,
+ "grad_norm": 0.24292822182178497,
+ "learning_rate": 0.0006,
+ "loss": 3.5774331092834473,
+ "step": 3718
+ },
+ {
+ "epoch": 51.65705548274356,
+ "grad_norm": 0.22668084502220154,
+ "learning_rate": 0.0006,
+ "loss": 3.5912742614746094,
+ "step": 3719
+ },
+ {
+ "epoch": 51.671035386631715,
+ "grad_norm": 0.2090575248003006,
+ "learning_rate": 0.0006,
+ "loss": 3.5473170280456543,
+ "step": 3720
+ },
+ {
+ "epoch": 51.68501529051988,
+ "grad_norm": 0.22276616096496582,
+ "learning_rate": 0.0006,
+ "loss": 3.6076784133911133,
+ "step": 3721
+ },
+ {
+ "epoch": 51.69899519440804,
+ "grad_norm": 0.22105294466018677,
+ "learning_rate": 0.0006,
+ "loss": 3.5820791721343994,
+ "step": 3722
+ },
+ {
+ "epoch": 51.7129750982962,
+ "grad_norm": 0.19231240451335907,
+ "learning_rate": 0.0006,
+ "loss": 3.6017708778381348,
+ "step": 3723
+ },
+ {
+ "epoch": 51.72695500218436,
+ "grad_norm": 0.2050354927778244,
+ "learning_rate": 0.0006,
+ "loss": 3.5967769622802734,
+ "step": 3724
+ },
+ {
+ "epoch": 51.74093490607252,
+ "grad_norm": 0.19779305160045624,
+ "learning_rate": 0.0006,
+ "loss": 3.597214698791504,
+ "step": 3725
+ },
+ {
+ "epoch": 51.75491480996068,
+ "grad_norm": 0.22394844889640808,
+ "learning_rate": 0.0006,
+ "loss": 3.574063301086426,
+ "step": 3726
+ },
+ {
+ "epoch": 51.768894713848844,
+ "grad_norm": 0.2262638807296753,
+ "learning_rate": 0.0006,
+ "loss": 3.5754079818725586,
+ "step": 3727
+ },
+ {
+ "epoch": 51.782874617737,
+ "grad_norm": 0.2168288677930832,
+ "learning_rate": 0.0006,
+ "loss": 3.6079599857330322,
+ "step": 3728
+ },
+ {
+ "epoch": 51.796854521625164,
+ "grad_norm": 0.2035517394542694,
+ "learning_rate": 0.0006,
+ "loss": 3.5948667526245117,
+ "step": 3729
+ },
+ {
+ "epoch": 51.81083442551333,
+ "grad_norm": 0.20529425144195557,
+ "learning_rate": 0.0006,
+ "loss": 3.5589542388916016,
+ "step": 3730
+ },
+ {
+ "epoch": 51.824814329401484,
+ "grad_norm": 0.2464100867509842,
+ "learning_rate": 0.0006,
+ "loss": 3.5947155952453613,
+ "step": 3731
+ },
+ {
+ "epoch": 51.83879423328965,
+ "grad_norm": 0.28043219447135925,
+ "learning_rate": 0.0006,
+ "loss": 3.6102852821350098,
+ "step": 3732
+ },
+ {
+ "epoch": 51.8527741371778,
+ "grad_norm": 0.2879013121128082,
+ "learning_rate": 0.0006,
+ "loss": 3.5903573036193848,
+ "step": 3733
+ },
+ {
+ "epoch": 51.86675404106597,
+ "grad_norm": 0.2532044053077698,
+ "learning_rate": 0.0006,
+ "loss": 3.5704729557037354,
+ "step": 3734
+ },
+ {
+ "epoch": 51.88073394495413,
+ "grad_norm": 0.25126248598098755,
+ "learning_rate": 0.0006,
+ "loss": 3.5449633598327637,
+ "step": 3735
+ },
+ {
+ "epoch": 51.89471384884229,
+ "grad_norm": 0.2494364082813263,
+ "learning_rate": 0.0006,
+ "loss": 3.5825607776641846,
+ "step": 3736
+ },
+ {
+ "epoch": 51.90869375273045,
+ "grad_norm": 0.24867761135101318,
+ "learning_rate": 0.0006,
+ "loss": 3.5998034477233887,
+ "step": 3737
+ },
+ {
+ "epoch": 51.92267365661861,
+ "grad_norm": 0.2552012801170349,
+ "learning_rate": 0.0006,
+ "loss": 3.5487377643585205,
+ "step": 3738
+ },
+ {
+ "epoch": 51.93665356050677,
+ "grad_norm": 0.2243119329214096,
+ "learning_rate": 0.0006,
+ "loss": 3.6081466674804688,
+ "step": 3739
+ },
+ {
+ "epoch": 51.95063346439493,
+ "grad_norm": 0.2106700837612152,
+ "learning_rate": 0.0006,
+ "loss": 3.607586622238159,
+ "step": 3740
+ },
+ {
+ "epoch": 51.964613368283096,
+ "grad_norm": 0.2207096666097641,
+ "learning_rate": 0.0006,
+ "loss": 3.6094579696655273,
+ "step": 3741
+ },
+ {
+ "epoch": 51.97859327217125,
+ "grad_norm": 0.2310071736574173,
+ "learning_rate": 0.0006,
+ "loss": 3.5837807655334473,
+ "step": 3742
+ },
+ {
+ "epoch": 51.992573176059416,
+ "grad_norm": 0.258770614862442,
+ "learning_rate": 0.0006,
+ "loss": 3.639329433441162,
+ "step": 3743
+ },
+ {
+ "epoch": 52.0,
+ "grad_norm": 0.24004915356636047,
+ "learning_rate": 0.0006,
+ "loss": 3.6178512573242188,
+ "step": 3744
+ },
+ {
+ "epoch": 52.0,
+ "eval_loss": 3.97371244430542,
+ "eval_runtime": 46.1923,
+ "eval_samples_per_second": 52.866,
+ "eval_steps_per_second": 3.312,
+ "step": 3744
+ },
+ {
+ "epoch": 52.01397990388816,
+ "grad_norm": 0.21953323483467102,
+ "learning_rate": 0.0006,
+ "loss": 3.5929579734802246,
+ "step": 3745
+ },
+ {
+ "epoch": 52.02795980777632,
+ "grad_norm": 0.25547415018081665,
+ "learning_rate": 0.0006,
+ "loss": 3.5762600898742676,
+ "step": 3746
+ },
+ {
+ "epoch": 52.04193971166448,
+ "grad_norm": 0.28905144333839417,
+ "learning_rate": 0.0006,
+ "loss": 3.5794596672058105,
+ "step": 3747
+ },
+ {
+ "epoch": 52.05591961555265,
+ "grad_norm": 0.2618118226528168,
+ "learning_rate": 0.0006,
+ "loss": 3.543205499649048,
+ "step": 3748
+ },
+ {
+ "epoch": 52.0698995194408,
+ "grad_norm": 0.2288745492696762,
+ "learning_rate": 0.0006,
+ "loss": 3.562770366668701,
+ "step": 3749
+ },
+ {
+ "epoch": 52.083879423328966,
+ "grad_norm": 0.25327110290527344,
+ "learning_rate": 0.0006,
+ "loss": 3.5405054092407227,
+ "step": 3750
+ },
+ {
+ "epoch": 52.09785932721712,
+ "grad_norm": 0.2721746861934662,
+ "learning_rate": 0.0006,
+ "loss": 3.5650479793548584,
+ "step": 3751
+ },
+ {
+ "epoch": 52.111839231105286,
+ "grad_norm": 0.2890555262565613,
+ "learning_rate": 0.0006,
+ "loss": 3.556122303009033,
+ "step": 3752
+ },
+ {
+ "epoch": 52.12581913499345,
+ "grad_norm": 0.30541476607322693,
+ "learning_rate": 0.0006,
+ "loss": 3.544271469116211,
+ "step": 3753
+ },
+ {
+ "epoch": 52.139799038881605,
+ "grad_norm": 0.2555760443210602,
+ "learning_rate": 0.0006,
+ "loss": 3.5452728271484375,
+ "step": 3754
+ },
+ {
+ "epoch": 52.15377894276977,
+ "grad_norm": 0.2653098404407501,
+ "learning_rate": 0.0006,
+ "loss": 3.57212495803833,
+ "step": 3755
+ },
+ {
+ "epoch": 52.16775884665793,
+ "grad_norm": 0.2479168176651001,
+ "learning_rate": 0.0006,
+ "loss": 3.5893373489379883,
+ "step": 3756
+ },
+ {
+ "epoch": 52.18173875054609,
+ "grad_norm": 0.21718256175518036,
+ "learning_rate": 0.0006,
+ "loss": 3.5616965293884277,
+ "step": 3757
+ },
+ {
+ "epoch": 52.19571865443425,
+ "grad_norm": 0.22033235430717468,
+ "learning_rate": 0.0006,
+ "loss": 3.566401481628418,
+ "step": 3758
+ },
+ {
+ "epoch": 52.20969855832241,
+ "grad_norm": 0.2401825189590454,
+ "learning_rate": 0.0006,
+ "loss": 3.547682762145996,
+ "step": 3759
+ },
+ {
+ "epoch": 52.22367846221057,
+ "grad_norm": 0.24496418237686157,
+ "learning_rate": 0.0006,
+ "loss": 3.5405421257019043,
+ "step": 3760
+ },
+ {
+ "epoch": 52.237658366098735,
+ "grad_norm": 0.2311883270740509,
+ "learning_rate": 0.0006,
+ "loss": 3.5709781646728516,
+ "step": 3761
+ },
+ {
+ "epoch": 52.25163826998689,
+ "grad_norm": 0.20850200951099396,
+ "learning_rate": 0.0006,
+ "loss": 3.5563712120056152,
+ "step": 3762
+ },
+ {
+ "epoch": 52.265618173875055,
+ "grad_norm": 0.2073400765657425,
+ "learning_rate": 0.0006,
+ "loss": 3.542343854904175,
+ "step": 3763
+ },
+ {
+ "epoch": 52.27959807776322,
+ "grad_norm": 0.21886718273162842,
+ "learning_rate": 0.0006,
+ "loss": 3.5633034706115723,
+ "step": 3764
+ },
+ {
+ "epoch": 52.293577981651374,
+ "grad_norm": 0.2218562215566635,
+ "learning_rate": 0.0006,
+ "loss": 3.5644288063049316,
+ "step": 3765
+ },
+ {
+ "epoch": 52.30755788553954,
+ "grad_norm": 0.22043557465076447,
+ "learning_rate": 0.0006,
+ "loss": 3.564373731613159,
+ "step": 3766
+ },
+ {
+ "epoch": 52.3215377894277,
+ "grad_norm": 0.2095082402229309,
+ "learning_rate": 0.0006,
+ "loss": 3.5336289405822754,
+ "step": 3767
+ },
+ {
+ "epoch": 52.33551769331586,
+ "grad_norm": 0.21115876734256744,
+ "learning_rate": 0.0006,
+ "loss": 3.5761165618896484,
+ "step": 3768
+ },
+ {
+ "epoch": 52.34949759720402,
+ "grad_norm": 0.21558400988578796,
+ "learning_rate": 0.0006,
+ "loss": 3.573495388031006,
+ "step": 3769
+ },
+ {
+ "epoch": 52.36347750109218,
+ "grad_norm": 0.213745579123497,
+ "learning_rate": 0.0006,
+ "loss": 3.572171211242676,
+ "step": 3770
+ },
+ {
+ "epoch": 52.37745740498034,
+ "grad_norm": 0.1926180124282837,
+ "learning_rate": 0.0006,
+ "loss": 3.532592535018921,
+ "step": 3771
+ },
+ {
+ "epoch": 52.391437308868504,
+ "grad_norm": 0.1993863731622696,
+ "learning_rate": 0.0006,
+ "loss": 3.551880359649658,
+ "step": 3772
+ },
+ {
+ "epoch": 52.40541721275666,
+ "grad_norm": 0.2018740326166153,
+ "learning_rate": 0.0006,
+ "loss": 3.557328701019287,
+ "step": 3773
+ },
+ {
+ "epoch": 52.419397116644824,
+ "grad_norm": 0.19035610556602478,
+ "learning_rate": 0.0006,
+ "loss": 3.600301504135132,
+ "step": 3774
+ },
+ {
+ "epoch": 52.43337702053299,
+ "grad_norm": 0.20069538056850433,
+ "learning_rate": 0.0006,
+ "loss": 3.5938944816589355,
+ "step": 3775
+ },
+ {
+ "epoch": 52.44735692442114,
+ "grad_norm": 0.21255625784397125,
+ "learning_rate": 0.0006,
+ "loss": 3.561086893081665,
+ "step": 3776
+ },
+ {
+ "epoch": 52.46133682830931,
+ "grad_norm": 0.20132070779800415,
+ "learning_rate": 0.0006,
+ "loss": 3.5525574684143066,
+ "step": 3777
+ },
+ {
+ "epoch": 52.47531673219746,
+ "grad_norm": 0.20152916014194489,
+ "learning_rate": 0.0006,
+ "loss": 3.5697402954101562,
+ "step": 3778
+ },
+ {
+ "epoch": 52.489296636085626,
+ "grad_norm": 0.1984269767999649,
+ "learning_rate": 0.0006,
+ "loss": 3.5686168670654297,
+ "step": 3779
+ },
+ {
+ "epoch": 52.50327653997379,
+ "grad_norm": 0.212612584233284,
+ "learning_rate": 0.0006,
+ "loss": 3.5522124767303467,
+ "step": 3780
+ },
+ {
+ "epoch": 52.517256443861946,
+ "grad_norm": 0.21382521092891693,
+ "learning_rate": 0.0006,
+ "loss": 3.5692944526672363,
+ "step": 3781
+ },
+ {
+ "epoch": 52.53123634775011,
+ "grad_norm": 0.2118486911058426,
+ "learning_rate": 0.0006,
+ "loss": 3.562495708465576,
+ "step": 3782
+ },
+ {
+ "epoch": 52.54521625163827,
+ "grad_norm": 0.22253486514091492,
+ "learning_rate": 0.0006,
+ "loss": 3.5709781646728516,
+ "step": 3783
+ },
+ {
+ "epoch": 52.55919615552643,
+ "grad_norm": 0.23701436817646027,
+ "learning_rate": 0.0006,
+ "loss": 3.548953056335449,
+ "step": 3784
+ },
+ {
+ "epoch": 52.57317605941459,
+ "grad_norm": 0.21345193684101105,
+ "learning_rate": 0.0006,
+ "loss": 3.543029308319092,
+ "step": 3785
+ },
+ {
+ "epoch": 52.58715596330275,
+ "grad_norm": 0.1854170262813568,
+ "learning_rate": 0.0006,
+ "loss": 3.5490989685058594,
+ "step": 3786
+ },
+ {
+ "epoch": 52.60113586719091,
+ "grad_norm": 0.23733633756637573,
+ "learning_rate": 0.0006,
+ "loss": 3.5800132751464844,
+ "step": 3787
+ },
+ {
+ "epoch": 52.615115771079076,
+ "grad_norm": 0.26175495982170105,
+ "learning_rate": 0.0006,
+ "loss": 3.562596321105957,
+ "step": 3788
+ },
+ {
+ "epoch": 52.62909567496723,
+ "grad_norm": 0.23134057223796844,
+ "learning_rate": 0.0006,
+ "loss": 3.5685765743255615,
+ "step": 3789
+ },
+ {
+ "epoch": 52.643075578855395,
+ "grad_norm": 0.1974988877773285,
+ "learning_rate": 0.0006,
+ "loss": 3.570517063140869,
+ "step": 3790
+ },
+ {
+ "epoch": 52.65705548274356,
+ "grad_norm": 0.20049697160720825,
+ "learning_rate": 0.0006,
+ "loss": 3.573286533355713,
+ "step": 3791
+ },
+ {
+ "epoch": 52.671035386631715,
+ "grad_norm": 0.1956445872783661,
+ "learning_rate": 0.0006,
+ "loss": 3.565880537033081,
+ "step": 3792
+ },
+ {
+ "epoch": 52.68501529051988,
+ "grad_norm": 0.2082354575395584,
+ "learning_rate": 0.0006,
+ "loss": 3.587278366088867,
+ "step": 3793
+ },
+ {
+ "epoch": 52.69899519440804,
+ "grad_norm": 0.20923161506652832,
+ "learning_rate": 0.0006,
+ "loss": 3.569469451904297,
+ "step": 3794
+ },
+ {
+ "epoch": 52.7129750982962,
+ "grad_norm": 0.20482848584651947,
+ "learning_rate": 0.0006,
+ "loss": 3.5826265811920166,
+ "step": 3795
+ },
+ {
+ "epoch": 52.72695500218436,
+ "grad_norm": 0.20411530137062073,
+ "learning_rate": 0.0006,
+ "loss": 3.5870275497436523,
+ "step": 3796
+ },
+ {
+ "epoch": 52.74093490607252,
+ "grad_norm": 0.2205485701560974,
+ "learning_rate": 0.0006,
+ "loss": 3.58900785446167,
+ "step": 3797
+ },
+ {
+ "epoch": 52.75491480996068,
+ "grad_norm": 0.21134008467197418,
+ "learning_rate": 0.0006,
+ "loss": 3.591036558151245,
+ "step": 3798
+ },
+ {
+ "epoch": 52.768894713848844,
+ "grad_norm": 0.20001831650733948,
+ "learning_rate": 0.0006,
+ "loss": 3.5670390129089355,
+ "step": 3799
+ },
+ {
+ "epoch": 52.782874617737,
+ "grad_norm": 0.2175939679145813,
+ "learning_rate": 0.0006,
+ "loss": 3.594132423400879,
+ "step": 3800
+ },
+ {
+ "epoch": 52.796854521625164,
+ "grad_norm": 0.22054694592952728,
+ "learning_rate": 0.0006,
+ "loss": 3.5565545558929443,
+ "step": 3801
+ },
+ {
+ "epoch": 52.81083442551333,
+ "grad_norm": 0.22901731729507446,
+ "learning_rate": 0.0006,
+ "loss": 3.5837020874023438,
+ "step": 3802
+ },
+ {
+ "epoch": 52.824814329401484,
+ "grad_norm": 0.22492778301239014,
+ "learning_rate": 0.0006,
+ "loss": 3.608218193054199,
+ "step": 3803
+ },
+ {
+ "epoch": 52.83879423328965,
+ "grad_norm": 0.21645256876945496,
+ "learning_rate": 0.0006,
+ "loss": 3.5839202404022217,
+ "step": 3804
+ },
+ {
+ "epoch": 52.8527741371778,
+ "grad_norm": 0.19680161774158478,
+ "learning_rate": 0.0006,
+ "loss": 3.568756580352783,
+ "step": 3805
+ },
+ {
+ "epoch": 52.86675404106597,
+ "grad_norm": 0.2084486186504364,
+ "learning_rate": 0.0006,
+ "loss": 3.580197811126709,
+ "step": 3806
+ },
+ {
+ "epoch": 52.88073394495413,
+ "grad_norm": 0.19380393624305725,
+ "learning_rate": 0.0006,
+ "loss": 3.5871198177337646,
+ "step": 3807
+ },
+ {
+ "epoch": 52.89471384884229,
+ "grad_norm": 0.1962910294532776,
+ "learning_rate": 0.0006,
+ "loss": 3.5878777503967285,
+ "step": 3808
+ },
+ {
+ "epoch": 52.90869375273045,
+ "grad_norm": 0.23292803764343262,
+ "learning_rate": 0.0006,
+ "loss": 3.574855327606201,
+ "step": 3809
+ },
+ {
+ "epoch": 52.92267365661861,
+ "grad_norm": 0.26974233984947205,
+ "learning_rate": 0.0006,
+ "loss": 3.5731749534606934,
+ "step": 3810
+ },
+ {
+ "epoch": 52.93665356050677,
+ "grad_norm": 0.26665496826171875,
+ "learning_rate": 0.0006,
+ "loss": 3.552717685699463,
+ "step": 3811
+ },
+ {
+ "epoch": 52.95063346439493,
+ "grad_norm": 0.24156489968299866,
+ "learning_rate": 0.0006,
+ "loss": 3.581787109375,
+ "step": 3812
+ },
+ {
+ "epoch": 52.964613368283096,
+ "grad_norm": 0.22062325477600098,
+ "learning_rate": 0.0006,
+ "loss": 3.578994035720825,
+ "step": 3813
+ },
+ {
+ "epoch": 52.97859327217125,
+ "grad_norm": 0.19949151575565338,
+ "learning_rate": 0.0006,
+ "loss": 3.6157355308532715,
+ "step": 3814
+ },
+ {
+ "epoch": 52.992573176059416,
+ "grad_norm": 0.2157975435256958,
+ "learning_rate": 0.0006,
+ "loss": 3.5677759647369385,
+ "step": 3815
+ },
+ {
+ "epoch": 53.0,
+ "grad_norm": 0.23285679519176483,
+ "learning_rate": 0.0006,
+ "loss": 3.5541789531707764,
+ "step": 3816
+ },
+ {
+ "epoch": 53.0,
+ "eval_loss": 3.9737255573272705,
+ "eval_runtime": 46.0304,
+ "eval_samples_per_second": 53.052,
+ "eval_steps_per_second": 3.324,
+ "step": 3816
+ },
+ {
+ "epoch": 53.01397990388816,
+ "grad_norm": 0.212715283036232,
+ "learning_rate": 0.0006,
+ "loss": 3.5475640296936035,
+ "step": 3817
+ },
+ {
+ "epoch": 53.02795980777632,
+ "grad_norm": 0.24556505680084229,
+ "learning_rate": 0.0006,
+ "loss": 3.5197463035583496,
+ "step": 3818
+ },
+ {
+ "epoch": 53.04193971166448,
+ "grad_norm": 0.2898217737674713,
+ "learning_rate": 0.0006,
+ "loss": 3.527390956878662,
+ "step": 3819
+ },
+ {
+ "epoch": 53.05591961555265,
+ "grad_norm": 0.26151803135871887,
+ "learning_rate": 0.0006,
+ "loss": 3.5462024211883545,
+ "step": 3820
+ },
+ {
+ "epoch": 53.0698995194408,
+ "grad_norm": 0.24648059904575348,
+ "learning_rate": 0.0006,
+ "loss": 3.5584919452667236,
+ "step": 3821
+ },
+ {
+ "epoch": 53.083879423328966,
+ "grad_norm": 0.22295059263706207,
+ "learning_rate": 0.0006,
+ "loss": 3.517195701599121,
+ "step": 3822
+ },
+ {
+ "epoch": 53.09785932721712,
+ "grad_norm": 0.2206476330757141,
+ "learning_rate": 0.0006,
+ "loss": 3.570678234100342,
+ "step": 3823
+ },
+ {
+ "epoch": 53.111839231105286,
+ "grad_norm": 0.22069714963436127,
+ "learning_rate": 0.0006,
+ "loss": 3.5707359313964844,
+ "step": 3824
+ },
+ {
+ "epoch": 53.12581913499345,
+ "grad_norm": 0.21850740909576416,
+ "learning_rate": 0.0006,
+ "loss": 3.5730209350585938,
+ "step": 3825
+ },
+ {
+ "epoch": 53.139799038881605,
+ "grad_norm": 0.21554340422153473,
+ "learning_rate": 0.0006,
+ "loss": 3.5578367710113525,
+ "step": 3826
+ },
+ {
+ "epoch": 53.15377894276977,
+ "grad_norm": 0.21678747236728668,
+ "learning_rate": 0.0006,
+ "loss": 3.5603280067443848,
+ "step": 3827
+ },
+ {
+ "epoch": 53.16775884665793,
+ "grad_norm": 0.22017014026641846,
+ "learning_rate": 0.0006,
+ "loss": 3.577760696411133,
+ "step": 3828
+ },
+ {
+ "epoch": 53.18173875054609,
+ "grad_norm": 0.20485524833202362,
+ "learning_rate": 0.0006,
+ "loss": 3.574751853942871,
+ "step": 3829
+ },
+ {
+ "epoch": 53.19571865443425,
+ "grad_norm": 0.22951237857341766,
+ "learning_rate": 0.0006,
+ "loss": 3.5464377403259277,
+ "step": 3830
+ },
+ {
+ "epoch": 53.20969855832241,
+ "grad_norm": 0.2343965619802475,
+ "learning_rate": 0.0006,
+ "loss": 3.516113758087158,
+ "step": 3831
+ },
+ {
+ "epoch": 53.22367846221057,
+ "grad_norm": 0.24002069234848022,
+ "learning_rate": 0.0006,
+ "loss": 3.564629554748535,
+ "step": 3832
+ },
+ {
+ "epoch": 53.237658366098735,
+ "grad_norm": 0.23933765292167664,
+ "learning_rate": 0.0006,
+ "loss": 3.5518507957458496,
+ "step": 3833
+ },
+ {
+ "epoch": 53.25163826998689,
+ "grad_norm": 0.2188953459262848,
+ "learning_rate": 0.0006,
+ "loss": 3.5341856479644775,
+ "step": 3834
+ },
+ {
+ "epoch": 53.265618173875055,
+ "grad_norm": 0.22629091143608093,
+ "learning_rate": 0.0006,
+ "loss": 3.5479273796081543,
+ "step": 3835
+ },
+ {
+ "epoch": 53.27959807776322,
+ "grad_norm": 0.2386554479598999,
+ "learning_rate": 0.0006,
+ "loss": 3.6097445487976074,
+ "step": 3836
+ },
+ {
+ "epoch": 53.293577981651374,
+ "grad_norm": 0.23003390431404114,
+ "learning_rate": 0.0006,
+ "loss": 3.5435304641723633,
+ "step": 3837
+ },
+ {
+ "epoch": 53.30755788553954,
+ "grad_norm": 0.248053640127182,
+ "learning_rate": 0.0006,
+ "loss": 3.545290470123291,
+ "step": 3838
+ },
+ {
+ "epoch": 53.3215377894277,
+ "grad_norm": 0.23945583403110504,
+ "learning_rate": 0.0006,
+ "loss": 3.570158004760742,
+ "step": 3839
+ },
+ {
+ "epoch": 53.33551769331586,
+ "grad_norm": 0.22801059484481812,
+ "learning_rate": 0.0006,
+ "loss": 3.5600779056549072,
+ "step": 3840
+ },
+ {
+ "epoch": 53.34949759720402,
+ "grad_norm": 0.2303777039051056,
+ "learning_rate": 0.0006,
+ "loss": 3.576674222946167,
+ "step": 3841
+ },
+ {
+ "epoch": 53.36347750109218,
+ "grad_norm": 0.23318468034267426,
+ "learning_rate": 0.0006,
+ "loss": 3.5705552101135254,
+ "step": 3842
+ },
+ {
+ "epoch": 53.37745740498034,
+ "grad_norm": 0.2435566782951355,
+ "learning_rate": 0.0006,
+ "loss": 3.576536178588867,
+ "step": 3843
+ },
+ {
+ "epoch": 53.391437308868504,
+ "grad_norm": 0.2857200503349304,
+ "learning_rate": 0.0006,
+ "loss": 3.535977363586426,
+ "step": 3844
+ },
+ {
+ "epoch": 53.40541721275666,
+ "grad_norm": 0.2640133500099182,
+ "learning_rate": 0.0006,
+ "loss": 3.547731399536133,
+ "step": 3845
+ },
+ {
+ "epoch": 53.419397116644824,
+ "grad_norm": 0.22218745946884155,
+ "learning_rate": 0.0006,
+ "loss": 3.5798351764678955,
+ "step": 3846
+ },
+ {
+ "epoch": 53.43337702053299,
+ "grad_norm": 0.2537193298339844,
+ "learning_rate": 0.0006,
+ "loss": 3.5289204120635986,
+ "step": 3847
+ },
+ {
+ "epoch": 53.44735692442114,
+ "grad_norm": 0.28360968828201294,
+ "learning_rate": 0.0006,
+ "loss": 3.5503361225128174,
+ "step": 3848
+ },
+ {
+ "epoch": 53.46133682830931,
+ "grad_norm": 0.2892421782016754,
+ "learning_rate": 0.0006,
+ "loss": 3.5675411224365234,
+ "step": 3849
+ },
+ {
+ "epoch": 53.47531673219746,
+ "grad_norm": 0.28305584192276,
+ "learning_rate": 0.0006,
+ "loss": 3.573280096054077,
+ "step": 3850
+ },
+ {
+ "epoch": 53.489296636085626,
+ "grad_norm": 0.24628037214279175,
+ "learning_rate": 0.0006,
+ "loss": 3.5215024948120117,
+ "step": 3851
+ },
+ {
+ "epoch": 53.50327653997379,
+ "grad_norm": 0.2463715672492981,
+ "learning_rate": 0.0006,
+ "loss": 3.5790698528289795,
+ "step": 3852
+ },
+ {
+ "epoch": 53.517256443861946,
+ "grad_norm": 0.2646636664867401,
+ "learning_rate": 0.0006,
+ "loss": 3.589735269546509,
+ "step": 3853
+ },
+ {
+ "epoch": 53.53123634775011,
+ "grad_norm": 0.27668821811676025,
+ "learning_rate": 0.0006,
+ "loss": 3.5690393447875977,
+ "step": 3854
+ },
+ {
+ "epoch": 53.54521625163827,
+ "grad_norm": 0.2630347013473511,
+ "learning_rate": 0.0006,
+ "loss": 3.5846545696258545,
+ "step": 3855
+ },
+ {
+ "epoch": 53.55919615552643,
+ "grad_norm": 0.27177906036376953,
+ "learning_rate": 0.0006,
+ "loss": 3.5431671142578125,
+ "step": 3856
+ },
+ {
+ "epoch": 53.57317605941459,
+ "grad_norm": 0.27125081419944763,
+ "learning_rate": 0.0006,
+ "loss": 3.5905215740203857,
+ "step": 3857
+ },
+ {
+ "epoch": 53.58715596330275,
+ "grad_norm": 0.24802975356578827,
+ "learning_rate": 0.0006,
+ "loss": 3.5472917556762695,
+ "step": 3858
+ },
+ {
+ "epoch": 53.60113586719091,
+ "grad_norm": 0.23812460899353027,
+ "learning_rate": 0.0006,
+ "loss": 3.5917325019836426,
+ "step": 3859
+ },
+ {
+ "epoch": 53.615115771079076,
+ "grad_norm": 0.2597416937351227,
+ "learning_rate": 0.0006,
+ "loss": 3.5515074729919434,
+ "step": 3860
+ },
+ {
+ "epoch": 53.62909567496723,
+ "grad_norm": 0.24389132857322693,
+ "learning_rate": 0.0006,
+ "loss": 3.578125476837158,
+ "step": 3861
+ },
+ {
+ "epoch": 53.643075578855395,
+ "grad_norm": 0.23878274857997894,
+ "learning_rate": 0.0006,
+ "loss": 3.5612001419067383,
+ "step": 3862
+ },
+ {
+ "epoch": 53.65705548274356,
+ "grad_norm": 0.23248082399368286,
+ "learning_rate": 0.0006,
+ "loss": 3.5651350021362305,
+ "step": 3863
+ },
+ {
+ "epoch": 53.671035386631715,
+ "grad_norm": 0.22560833394527435,
+ "learning_rate": 0.0006,
+ "loss": 3.58971905708313,
+ "step": 3864
+ },
+ {
+ "epoch": 53.68501529051988,
+ "grad_norm": 0.22092120349407196,
+ "learning_rate": 0.0006,
+ "loss": 3.5567374229431152,
+ "step": 3865
+ },
+ {
+ "epoch": 53.69899519440804,
+ "grad_norm": 0.20171885192394257,
+ "learning_rate": 0.0006,
+ "loss": 3.5868449211120605,
+ "step": 3866
+ },
+ {
+ "epoch": 53.7129750982962,
+ "grad_norm": 0.2051871120929718,
+ "learning_rate": 0.0006,
+ "loss": 3.5853161811828613,
+ "step": 3867
+ },
+ {
+ "epoch": 53.72695500218436,
+ "grad_norm": 0.1912045031785965,
+ "learning_rate": 0.0006,
+ "loss": 3.5901622772216797,
+ "step": 3868
+ },
+ {
+ "epoch": 53.74093490607252,
+ "grad_norm": 0.20817188918590546,
+ "learning_rate": 0.0006,
+ "loss": 3.5759787559509277,
+ "step": 3869
+ },
+ {
+ "epoch": 53.75491480996068,
+ "grad_norm": 0.2157917469739914,
+ "learning_rate": 0.0006,
+ "loss": 3.5438575744628906,
+ "step": 3870
+ },
+ {
+ "epoch": 53.768894713848844,
+ "grad_norm": 0.2332053929567337,
+ "learning_rate": 0.0006,
+ "loss": 3.587697982788086,
+ "step": 3871
+ },
+ {
+ "epoch": 53.782874617737,
+ "grad_norm": 0.22700314223766327,
+ "learning_rate": 0.0006,
+ "loss": 3.586625337600708,
+ "step": 3872
+ },
+ {
+ "epoch": 53.796854521625164,
+ "grad_norm": 0.20737017691135406,
+ "learning_rate": 0.0006,
+ "loss": 3.552398204803467,
+ "step": 3873
+ },
+ {
+ "epoch": 53.81083442551333,
+ "grad_norm": 0.20355650782585144,
+ "learning_rate": 0.0006,
+ "loss": 3.5734331607818604,
+ "step": 3874
+ },
+ {
+ "epoch": 53.824814329401484,
+ "grad_norm": 0.18868018686771393,
+ "learning_rate": 0.0006,
+ "loss": 3.582509756088257,
+ "step": 3875
+ },
+ {
+ "epoch": 53.83879423328965,
+ "grad_norm": 0.20373275876045227,
+ "learning_rate": 0.0006,
+ "loss": 3.559354782104492,
+ "step": 3876
+ },
+ {
+ "epoch": 53.8527741371778,
+ "grad_norm": 0.1988871544599533,
+ "learning_rate": 0.0006,
+ "loss": 3.5575170516967773,
+ "step": 3877
+ },
+ {
+ "epoch": 53.86675404106597,
+ "grad_norm": 0.19602873921394348,
+ "learning_rate": 0.0006,
+ "loss": 3.5500855445861816,
+ "step": 3878
+ },
+ {
+ "epoch": 53.88073394495413,
+ "grad_norm": 0.201382577419281,
+ "learning_rate": 0.0006,
+ "loss": 3.563499927520752,
+ "step": 3879
+ },
+ {
+ "epoch": 53.89471384884229,
+ "grad_norm": 0.19682180881500244,
+ "learning_rate": 0.0006,
+ "loss": 3.586855888366699,
+ "step": 3880
+ },
+ {
+ "epoch": 53.90869375273045,
+ "grad_norm": 0.19423548877239227,
+ "learning_rate": 0.0006,
+ "loss": 3.5840401649475098,
+ "step": 3881
+ },
+ {
+ "epoch": 53.92267365661861,
+ "grad_norm": 0.1970449835062027,
+ "learning_rate": 0.0006,
+ "loss": 3.554568290710449,
+ "step": 3882
+ },
+ {
+ "epoch": 53.93665356050677,
+ "grad_norm": 0.20274291932582855,
+ "learning_rate": 0.0006,
+ "loss": 3.5928239822387695,
+ "step": 3883
+ },
+ {
+ "epoch": 53.95063346439493,
+ "grad_norm": 0.18485035002231598,
+ "learning_rate": 0.0006,
+ "loss": 3.576934337615967,
+ "step": 3884
+ },
+ {
+ "epoch": 53.964613368283096,
+ "grad_norm": 0.18437646329402924,
+ "learning_rate": 0.0006,
+ "loss": 3.574990749359131,
+ "step": 3885
+ },
+ {
+ "epoch": 53.97859327217125,
+ "grad_norm": 0.18616823852062225,
+ "learning_rate": 0.0006,
+ "loss": 3.5566892623901367,
+ "step": 3886
+ },
+ {
+ "epoch": 53.992573176059416,
+ "grad_norm": 0.19502122700214386,
+ "learning_rate": 0.0006,
+ "loss": 3.604814052581787,
+ "step": 3887
+ },
+ {
+ "epoch": 54.0,
+ "grad_norm": 0.2657789885997772,
+ "learning_rate": 0.0006,
+ "loss": 3.5094165802001953,
+ "step": 3888
+ },
+ {
+ "epoch": 54.0,
+ "eval_loss": 3.965742349624634,
+ "eval_runtime": 45.5851,
+ "eval_samples_per_second": 53.57,
+ "eval_steps_per_second": 3.356,
+ "step": 3888
+ },
+ {
+ "epoch": 54.01397990388816,
+ "grad_norm": 0.27879253029823303,
+ "learning_rate": 0.0006,
+ "loss": 3.565103530883789,
+ "step": 3889
+ },
+ {
+ "epoch": 54.02795980777632,
+ "grad_norm": 0.2959246337413788,
+ "learning_rate": 0.0006,
+ "loss": 3.5378212928771973,
+ "step": 3890
+ },
+ {
+ "epoch": 54.04193971166448,
+ "grad_norm": 0.32719552516937256,
+ "learning_rate": 0.0006,
+ "loss": 3.5566751956939697,
+ "step": 3891
+ },
+ {
+ "epoch": 54.05591961555265,
+ "grad_norm": 0.36854541301727295,
+ "learning_rate": 0.0006,
+ "loss": 3.5363879203796387,
+ "step": 3892
+ },
+ {
+ "epoch": 54.0698995194408,
+ "grad_norm": 0.34325551986694336,
+ "learning_rate": 0.0006,
+ "loss": 3.5306153297424316,
+ "step": 3893
+ },
+ {
+ "epoch": 54.083879423328966,
+ "grad_norm": 0.2798653244972229,
+ "learning_rate": 0.0006,
+ "loss": 3.5642261505126953,
+ "step": 3894
+ },
+ {
+ "epoch": 54.09785932721712,
+ "grad_norm": 0.24857765436172485,
+ "learning_rate": 0.0006,
+ "loss": 3.50216007232666,
+ "step": 3895
+ },
+ {
+ "epoch": 54.111839231105286,
+ "grad_norm": 0.2943299114704132,
+ "learning_rate": 0.0006,
+ "loss": 3.524904251098633,
+ "step": 3896
+ },
+ {
+ "epoch": 54.12581913499345,
+ "grad_norm": 0.2791048586368561,
+ "learning_rate": 0.0006,
+ "loss": 3.56490421295166,
+ "step": 3897
+ },
+ {
+ "epoch": 54.139799038881605,
+ "grad_norm": 0.2781159579753876,
+ "learning_rate": 0.0006,
+ "loss": 3.536180019378662,
+ "step": 3898
+ },
+ {
+ "epoch": 54.15377894276977,
+ "grad_norm": 0.30359897017478943,
+ "learning_rate": 0.0006,
+ "loss": 3.546919345855713,
+ "step": 3899
+ },
+ {
+ "epoch": 54.16775884665793,
+ "grad_norm": 0.2738530933856964,
+ "learning_rate": 0.0006,
+ "loss": 3.547968864440918,
+ "step": 3900
+ },
+ {
+ "epoch": 54.18173875054609,
+ "grad_norm": 0.24783718585968018,
+ "learning_rate": 0.0006,
+ "loss": 3.5802721977233887,
+ "step": 3901
+ },
+ {
+ "epoch": 54.19571865443425,
+ "grad_norm": 0.2544802725315094,
+ "learning_rate": 0.0006,
+ "loss": 3.5556836128234863,
+ "step": 3902
+ },
+ {
+ "epoch": 54.20969855832241,
+ "grad_norm": 0.26695969700813293,
+ "learning_rate": 0.0006,
+ "loss": 3.534266471862793,
+ "step": 3903
+ },
+ {
+ "epoch": 54.22367846221057,
+ "grad_norm": 0.24152538180351257,
+ "learning_rate": 0.0006,
+ "loss": 3.534069538116455,
+ "step": 3904
+ },
+ {
+ "epoch": 54.237658366098735,
+ "grad_norm": 0.21859917044639587,
+ "learning_rate": 0.0006,
+ "loss": 3.535362958908081,
+ "step": 3905
+ },
+ {
+ "epoch": 54.25163826998689,
+ "grad_norm": 0.24676479399204254,
+ "learning_rate": 0.0006,
+ "loss": 3.567283868789673,
+ "step": 3906
+ },
+ {
+ "epoch": 54.265618173875055,
+ "grad_norm": 0.26998138427734375,
+ "learning_rate": 0.0006,
+ "loss": 3.518892765045166,
+ "step": 3907
+ },
+ {
+ "epoch": 54.27959807776322,
+ "grad_norm": 0.30108749866485596,
+ "learning_rate": 0.0006,
+ "loss": 3.5865135192871094,
+ "step": 3908
+ },
+ {
+ "epoch": 54.293577981651374,
+ "grad_norm": 0.31310492753982544,
+ "learning_rate": 0.0006,
+ "loss": 3.546637535095215,
+ "step": 3909
+ },
+ {
+ "epoch": 54.30755788553954,
+ "grad_norm": 0.2994784712791443,
+ "learning_rate": 0.0006,
+ "loss": 3.5441226959228516,
+ "step": 3910
+ },
+ {
+ "epoch": 54.3215377894277,
+ "grad_norm": 0.25010061264038086,
+ "learning_rate": 0.0006,
+ "loss": 3.5619735717773438,
+ "step": 3911
+ },
+ {
+ "epoch": 54.33551769331586,
+ "grad_norm": 0.253129780292511,
+ "learning_rate": 0.0006,
+ "loss": 3.530210494995117,
+ "step": 3912
+ },
+ {
+ "epoch": 54.34949759720402,
+ "grad_norm": 0.2652498781681061,
+ "learning_rate": 0.0006,
+ "loss": 3.534478187561035,
+ "step": 3913
+ },
+ {
+ "epoch": 54.36347750109218,
+ "grad_norm": 0.250503808259964,
+ "learning_rate": 0.0006,
+ "loss": 3.545886516571045,
+ "step": 3914
+ },
+ {
+ "epoch": 54.37745740498034,
+ "grad_norm": 0.22186073660850525,
+ "learning_rate": 0.0006,
+ "loss": 3.5884604454040527,
+ "step": 3915
+ },
+ {
+ "epoch": 54.391437308868504,
+ "grad_norm": 0.21128980815410614,
+ "learning_rate": 0.0006,
+ "loss": 3.527862548828125,
+ "step": 3916
+ },
+ {
+ "epoch": 54.40541721275666,
+ "grad_norm": 0.23184002935886383,
+ "learning_rate": 0.0006,
+ "loss": 3.5599637031555176,
+ "step": 3917
+ },
+ {
+ "epoch": 54.419397116644824,
+ "grad_norm": 0.23710627853870392,
+ "learning_rate": 0.0006,
+ "loss": 3.54667329788208,
+ "step": 3918
+ },
+ {
+ "epoch": 54.43337702053299,
+ "grad_norm": 0.2314598113298416,
+ "learning_rate": 0.0006,
+ "loss": 3.518406391143799,
+ "step": 3919
+ },
+ {
+ "epoch": 54.44735692442114,
+ "grad_norm": 0.21623452007770538,
+ "learning_rate": 0.0006,
+ "loss": 3.5749731063842773,
+ "step": 3920
+ },
+ {
+ "epoch": 54.46133682830931,
+ "grad_norm": 0.22832012176513672,
+ "learning_rate": 0.0006,
+ "loss": 3.57436466217041,
+ "step": 3921
+ },
+ {
+ "epoch": 54.47531673219746,
+ "grad_norm": 0.2184043526649475,
+ "learning_rate": 0.0006,
+ "loss": 3.578040838241577,
+ "step": 3922
+ },
+ {
+ "epoch": 54.489296636085626,
+ "grad_norm": 0.2302335649728775,
+ "learning_rate": 0.0006,
+ "loss": 3.5646257400512695,
+ "step": 3923
+ },
+ {
+ "epoch": 54.50327653997379,
+ "grad_norm": 0.21635375916957855,
+ "learning_rate": 0.0006,
+ "loss": 3.546786308288574,
+ "step": 3924
+ },
+ {
+ "epoch": 54.517256443861946,
+ "grad_norm": 0.22332443296909332,
+ "learning_rate": 0.0006,
+ "loss": 3.5804502964019775,
+ "step": 3925
+ },
+ {
+ "epoch": 54.53123634775011,
+ "grad_norm": 0.21662919223308563,
+ "learning_rate": 0.0006,
+ "loss": 3.567797899246216,
+ "step": 3926
+ },
+ {
+ "epoch": 54.54521625163827,
+ "grad_norm": 0.21345169842243195,
+ "learning_rate": 0.0006,
+ "loss": 3.5746283531188965,
+ "step": 3927
+ },
+ {
+ "epoch": 54.55919615552643,
+ "grad_norm": 0.2111794501543045,
+ "learning_rate": 0.0006,
+ "loss": 3.5626277923583984,
+ "step": 3928
+ },
+ {
+ "epoch": 54.57317605941459,
+ "grad_norm": 0.22575712203979492,
+ "learning_rate": 0.0006,
+ "loss": 3.5856311321258545,
+ "step": 3929
+ },
+ {
+ "epoch": 54.58715596330275,
+ "grad_norm": 0.22963617742061615,
+ "learning_rate": 0.0006,
+ "loss": 3.584038257598877,
+ "step": 3930
+ },
+ {
+ "epoch": 54.60113586719091,
+ "grad_norm": 0.21805310249328613,
+ "learning_rate": 0.0006,
+ "loss": 3.5603089332580566,
+ "step": 3931
+ },
+ {
+ "epoch": 54.615115771079076,
+ "grad_norm": 0.22830283641815186,
+ "learning_rate": 0.0006,
+ "loss": 3.5533390045166016,
+ "step": 3932
+ },
+ {
+ "epoch": 54.62909567496723,
+ "grad_norm": 0.24158291518688202,
+ "learning_rate": 0.0006,
+ "loss": 3.5437779426574707,
+ "step": 3933
+ },
+ {
+ "epoch": 54.643075578855395,
+ "grad_norm": 0.22687768936157227,
+ "learning_rate": 0.0006,
+ "loss": 3.566315174102783,
+ "step": 3934
+ },
+ {
+ "epoch": 54.65705548274356,
+ "grad_norm": 0.21220184862613678,
+ "learning_rate": 0.0006,
+ "loss": 3.5772881507873535,
+ "step": 3935
+ },
+ {
+ "epoch": 54.671035386631715,
+ "grad_norm": 0.19508333504199982,
+ "learning_rate": 0.0006,
+ "loss": 3.5213584899902344,
+ "step": 3936
+ },
+ {
+ "epoch": 54.68501529051988,
+ "grad_norm": 0.199599027633667,
+ "learning_rate": 0.0006,
+ "loss": 3.553925037384033,
+ "step": 3937
+ },
+ {
+ "epoch": 54.69899519440804,
+ "grad_norm": 0.2063189297914505,
+ "learning_rate": 0.0006,
+ "loss": 3.5706050395965576,
+ "step": 3938
+ },
+ {
+ "epoch": 54.7129750982962,
+ "grad_norm": 0.2056119441986084,
+ "learning_rate": 0.0006,
+ "loss": 3.557199478149414,
+ "step": 3939
+ },
+ {
+ "epoch": 54.72695500218436,
+ "grad_norm": 0.2192074954509735,
+ "learning_rate": 0.0006,
+ "loss": 3.5869479179382324,
+ "step": 3940
+ },
+ {
+ "epoch": 54.74093490607252,
+ "grad_norm": 0.19796597957611084,
+ "learning_rate": 0.0006,
+ "loss": 3.559929609298706,
+ "step": 3941
+ },
+ {
+ "epoch": 54.75491480996068,
+ "grad_norm": 0.19003179669380188,
+ "learning_rate": 0.0006,
+ "loss": 3.5481486320495605,
+ "step": 3942
+ },
+ {
+ "epoch": 54.768894713848844,
+ "grad_norm": 0.189231738448143,
+ "learning_rate": 0.0006,
+ "loss": 3.5603561401367188,
+ "step": 3943
+ },
+ {
+ "epoch": 54.782874617737,
+ "grad_norm": 0.20949427783489227,
+ "learning_rate": 0.0006,
+ "loss": 3.567026138305664,
+ "step": 3944
+ },
+ {
+ "epoch": 54.796854521625164,
+ "grad_norm": 0.21650178730487823,
+ "learning_rate": 0.0006,
+ "loss": 3.5981621742248535,
+ "step": 3945
+ },
+ {
+ "epoch": 54.81083442551333,
+ "grad_norm": 0.21941770613193512,
+ "learning_rate": 0.0006,
+ "loss": 3.590226173400879,
+ "step": 3946
+ },
+ {
+ "epoch": 54.824814329401484,
+ "grad_norm": 0.2169734537601471,
+ "learning_rate": 0.0006,
+ "loss": 3.592764139175415,
+ "step": 3947
+ },
+ {
+ "epoch": 54.83879423328965,
+ "grad_norm": 0.20309467613697052,
+ "learning_rate": 0.0006,
+ "loss": 3.5706393718719482,
+ "step": 3948
+ },
+ {
+ "epoch": 54.8527741371778,
+ "grad_norm": 0.21803754568099976,
+ "learning_rate": 0.0006,
+ "loss": 3.5816526412963867,
+ "step": 3949
+ },
+ {
+ "epoch": 54.86675404106597,
+ "grad_norm": 0.22217069566249847,
+ "learning_rate": 0.0006,
+ "loss": 3.5895018577575684,
+ "step": 3950
+ },
+ {
+ "epoch": 54.88073394495413,
+ "grad_norm": 0.21204866468906403,
+ "learning_rate": 0.0006,
+ "loss": 3.5574231147766113,
+ "step": 3951
+ },
+ {
+ "epoch": 54.89471384884229,
+ "grad_norm": 0.2173423171043396,
+ "learning_rate": 0.0006,
+ "loss": 3.564763069152832,
+ "step": 3952
+ },
+ {
+ "epoch": 54.90869375273045,
+ "grad_norm": 0.2039082646369934,
+ "learning_rate": 0.0006,
+ "loss": 3.59708309173584,
+ "step": 3953
+ },
+ {
+ "epoch": 54.92267365661861,
+ "grad_norm": 0.20248384773731232,
+ "learning_rate": 0.0006,
+ "loss": 3.587890148162842,
+ "step": 3954
+ },
+ {
+ "epoch": 54.93665356050677,
+ "grad_norm": 0.20693068206310272,
+ "learning_rate": 0.0006,
+ "loss": 3.5569000244140625,
+ "step": 3955
+ },
+ {
+ "epoch": 54.95063346439493,
+ "grad_norm": 0.2109357714653015,
+ "learning_rate": 0.0006,
+ "loss": 3.552126884460449,
+ "step": 3956
+ },
+ {
+ "epoch": 54.964613368283096,
+ "grad_norm": 0.2278970628976822,
+ "learning_rate": 0.0006,
+ "loss": 3.564998149871826,
+ "step": 3957
+ },
+ {
+ "epoch": 54.97859327217125,
+ "grad_norm": 0.21663756668567657,
+ "learning_rate": 0.0006,
+ "loss": 3.571608543395996,
+ "step": 3958
+ },
+ {
+ "epoch": 54.992573176059416,
+ "grad_norm": 0.19653232395648956,
+ "learning_rate": 0.0006,
+ "loss": 3.5885231494903564,
+ "step": 3959
+ },
+ {
+ "epoch": 55.0,
+ "grad_norm": 0.21956856548786163,
+ "learning_rate": 0.0006,
+ "loss": 3.4966204166412354,
+ "step": 3960
+ },
+ {
+ "epoch": 55.0,
+ "eval_loss": 3.972649097442627,
+ "eval_runtime": 45.2298,
+ "eval_samples_per_second": 53.991,
+ "eval_steps_per_second": 3.383,
+ "step": 3960
+ },
+ {
+ "epoch": 55.01397990388816,
+ "grad_norm": 0.22733832895755768,
+ "learning_rate": 0.0006,
+ "loss": 3.546975612640381,
+ "step": 3961
+ },
+ {
+ "epoch": 55.02795980777632,
+ "grad_norm": 0.25451111793518066,
+ "learning_rate": 0.0006,
+ "loss": 3.54240083694458,
+ "step": 3962
+ },
+ {
+ "epoch": 55.04193971166448,
+ "grad_norm": 0.2394949048757553,
+ "learning_rate": 0.0006,
+ "loss": 3.5492677688598633,
+ "step": 3963
+ },
+ {
+ "epoch": 55.05591961555265,
+ "grad_norm": 0.2306671440601349,
+ "learning_rate": 0.0006,
+ "loss": 3.524200916290283,
+ "step": 3964
+ },
+ {
+ "epoch": 55.0698995194408,
+ "grad_norm": 0.2307029813528061,
+ "learning_rate": 0.0006,
+ "loss": 3.509249687194824,
+ "step": 3965
+ },
+ {
+ "epoch": 55.083879423328966,
+ "grad_norm": 0.24812111258506775,
+ "learning_rate": 0.0006,
+ "loss": 3.5500473976135254,
+ "step": 3966
+ },
+ {
+ "epoch": 55.09785932721712,
+ "grad_norm": 0.28564271330833435,
+ "learning_rate": 0.0006,
+ "loss": 3.5178303718566895,
+ "step": 3967
+ },
+ {
+ "epoch": 55.111839231105286,
+ "grad_norm": 0.26979005336761475,
+ "learning_rate": 0.0006,
+ "loss": 3.5306806564331055,
+ "step": 3968
+ },
+ {
+ "epoch": 55.12581913499345,
+ "grad_norm": 0.24274848401546478,
+ "learning_rate": 0.0006,
+ "loss": 3.5758519172668457,
+ "step": 3969
+ },
+ {
+ "epoch": 55.139799038881605,
+ "grad_norm": 0.2560444474220276,
+ "learning_rate": 0.0006,
+ "loss": 3.5417323112487793,
+ "step": 3970
+ },
+ {
+ "epoch": 55.15377894276977,
+ "grad_norm": 0.2553671598434448,
+ "learning_rate": 0.0006,
+ "loss": 3.5258004665374756,
+ "step": 3971
+ },
+ {
+ "epoch": 55.16775884665793,
+ "grad_norm": 0.2170111984014511,
+ "learning_rate": 0.0006,
+ "loss": 3.514847755432129,
+ "step": 3972
+ },
+ {
+ "epoch": 55.18173875054609,
+ "grad_norm": 0.20854522287845612,
+ "learning_rate": 0.0006,
+ "loss": 3.5248336791992188,
+ "step": 3973
+ },
+ {
+ "epoch": 55.19571865443425,
+ "grad_norm": 0.21873287856578827,
+ "learning_rate": 0.0006,
+ "loss": 3.5468008518218994,
+ "step": 3974
+ },
+ {
+ "epoch": 55.20969855832241,
+ "grad_norm": 0.21194154024124146,
+ "learning_rate": 0.0006,
+ "loss": 3.568512439727783,
+ "step": 3975
+ },
+ {
+ "epoch": 55.22367846221057,
+ "grad_norm": 0.23534680902957916,
+ "learning_rate": 0.0006,
+ "loss": 3.5285420417785645,
+ "step": 3976
+ },
+ {
+ "epoch": 55.237658366098735,
+ "grad_norm": 0.22674795985221863,
+ "learning_rate": 0.0006,
+ "loss": 3.5399436950683594,
+ "step": 3977
+ },
+ {
+ "epoch": 55.25163826998689,
+ "grad_norm": 0.2248486578464508,
+ "learning_rate": 0.0006,
+ "loss": 3.5241036415100098,
+ "step": 3978
+ },
+ {
+ "epoch": 55.265618173875055,
+ "grad_norm": 0.241151362657547,
+ "learning_rate": 0.0006,
+ "loss": 3.547079086303711,
+ "step": 3979
+ },
+ {
+ "epoch": 55.27959807776322,
+ "grad_norm": 0.2783249318599701,
+ "learning_rate": 0.0006,
+ "loss": 3.5442988872528076,
+ "step": 3980
+ },
+ {
+ "epoch": 55.293577981651374,
+ "grad_norm": 0.2743528485298157,
+ "learning_rate": 0.0006,
+ "loss": 3.529618978500366,
+ "step": 3981
+ },
+ {
+ "epoch": 55.30755788553954,
+ "grad_norm": 0.23901724815368652,
+ "learning_rate": 0.0006,
+ "loss": 3.5379443168640137,
+ "step": 3982
+ },
+ {
+ "epoch": 55.3215377894277,
+ "grad_norm": 0.22758841514587402,
+ "learning_rate": 0.0006,
+ "loss": 3.5446794033050537,
+ "step": 3983
+ },
+ {
+ "epoch": 55.33551769331586,
+ "grad_norm": 0.22634629905223846,
+ "learning_rate": 0.0006,
+ "loss": 3.521944522857666,
+ "step": 3984
+ },
+ {
+ "epoch": 55.34949759720402,
+ "grad_norm": 0.23372086882591248,
+ "learning_rate": 0.0006,
+ "loss": 3.565023899078369,
+ "step": 3985
+ },
+ {
+ "epoch": 55.36347750109218,
+ "grad_norm": 0.24722231924533844,
+ "learning_rate": 0.0006,
+ "loss": 3.535661220550537,
+ "step": 3986
+ },
+ {
+ "epoch": 55.37745740498034,
+ "grad_norm": 0.21684594452381134,
+ "learning_rate": 0.0006,
+ "loss": 3.59070086479187,
+ "step": 3987
+ },
+ {
+ "epoch": 55.391437308868504,
+ "grad_norm": 0.186308816075325,
+ "learning_rate": 0.0006,
+ "loss": 3.5373833179473877,
+ "step": 3988
+ },
+ {
+ "epoch": 55.40541721275666,
+ "grad_norm": 0.2240687608718872,
+ "learning_rate": 0.0006,
+ "loss": 3.613295555114746,
+ "step": 3989
+ },
+ {
+ "epoch": 55.419397116644824,
+ "grad_norm": 0.25724494457244873,
+ "learning_rate": 0.0006,
+ "loss": 3.581005096435547,
+ "step": 3990
+ },
+ {
+ "epoch": 55.43337702053299,
+ "grad_norm": 0.24023419618606567,
+ "learning_rate": 0.0006,
+ "loss": 3.563951015472412,
+ "step": 3991
+ },
+ {
+ "epoch": 55.44735692442114,
+ "grad_norm": 0.21473391354084015,
+ "learning_rate": 0.0006,
+ "loss": 3.5444185733795166,
+ "step": 3992
+ },
+ {
+ "epoch": 55.46133682830931,
+ "grad_norm": 0.20466852188110352,
+ "learning_rate": 0.0006,
+ "loss": 3.5585713386535645,
+ "step": 3993
+ },
+ {
+ "epoch": 55.47531673219746,
+ "grad_norm": 0.20925740897655487,
+ "learning_rate": 0.0006,
+ "loss": 3.5656747817993164,
+ "step": 3994
+ },
+ {
+ "epoch": 55.489296636085626,
+ "grad_norm": 0.2309556007385254,
+ "learning_rate": 0.0006,
+ "loss": 3.5653891563415527,
+ "step": 3995
+ },
+ {
+ "epoch": 55.50327653997379,
+ "grad_norm": 0.24270877242088318,
+ "learning_rate": 0.0006,
+ "loss": 3.5275917053222656,
+ "step": 3996
+ },
+ {
+ "epoch": 55.517256443861946,
+ "grad_norm": 0.22749851644039154,
+ "learning_rate": 0.0006,
+ "loss": 3.5392730236053467,
+ "step": 3997
+ },
+ {
+ "epoch": 55.53123634775011,
+ "grad_norm": 0.21618196368217468,
+ "learning_rate": 0.0006,
+ "loss": 3.5581812858581543,
+ "step": 3998
+ },
+ {
+ "epoch": 55.54521625163827,
+ "grad_norm": 0.22232134640216827,
+ "learning_rate": 0.0006,
+ "loss": 3.5340118408203125,
+ "step": 3999
+ },
+ {
+ "epoch": 55.55919615552643,
+ "grad_norm": 0.24543501436710358,
+ "learning_rate": 0.0006,
+ "loss": 3.572153329849243,
+ "step": 4000
+ },
+ {
+ "epoch": 55.57317605941459,
+ "grad_norm": 0.2385311722755432,
+ "learning_rate": 0.0006,
+ "loss": 3.5366618633270264,
+ "step": 4001
+ },
+ {
+ "epoch": 55.58715596330275,
+ "grad_norm": 0.27977821230888367,
+ "learning_rate": 0.0006,
+ "loss": 3.5788960456848145,
+ "step": 4002
+ },
+ {
+ "epoch": 55.60113586719091,
+ "grad_norm": 0.2929013967514038,
+ "learning_rate": 0.0006,
+ "loss": 3.61065936088562,
+ "step": 4003
+ },
+ {
+ "epoch": 55.615115771079076,
+ "grad_norm": 0.27820730209350586,
+ "learning_rate": 0.0006,
+ "loss": 3.538694381713867,
+ "step": 4004
+ },
+ {
+ "epoch": 55.62909567496723,
+ "grad_norm": 0.24188996851444244,
+ "learning_rate": 0.0006,
+ "loss": 3.571709632873535,
+ "step": 4005
+ },
+ {
+ "epoch": 55.643075578855395,
+ "grad_norm": 0.21659360826015472,
+ "learning_rate": 0.0006,
+ "loss": 3.5431199073791504,
+ "step": 4006
+ },
+ {
+ "epoch": 55.65705548274356,
+ "grad_norm": 0.23356232047080994,
+ "learning_rate": 0.0006,
+ "loss": 3.5664005279541016,
+ "step": 4007
+ },
+ {
+ "epoch": 55.671035386631715,
+ "grad_norm": 0.21523472666740417,
+ "learning_rate": 0.0006,
+ "loss": 3.575711250305176,
+ "step": 4008
+ },
+ {
+ "epoch": 55.68501529051988,
+ "grad_norm": 0.22101815044879913,
+ "learning_rate": 0.0006,
+ "loss": 3.5843849182128906,
+ "step": 4009
+ },
+ {
+ "epoch": 55.69899519440804,
+ "grad_norm": 0.24153906106948853,
+ "learning_rate": 0.0006,
+ "loss": 3.5737733840942383,
+ "step": 4010
+ },
+ {
+ "epoch": 55.7129750982962,
+ "grad_norm": 0.2181350439786911,
+ "learning_rate": 0.0006,
+ "loss": 3.582613945007324,
+ "step": 4011
+ },
+ {
+ "epoch": 55.72695500218436,
+ "grad_norm": 0.21046742796897888,
+ "learning_rate": 0.0006,
+ "loss": 3.5380563735961914,
+ "step": 4012
+ },
+ {
+ "epoch": 55.74093490607252,
+ "grad_norm": 0.23996953666210175,
+ "learning_rate": 0.0006,
+ "loss": 3.57753849029541,
+ "step": 4013
+ },
+ {
+ "epoch": 55.75491480996068,
+ "grad_norm": 0.24543973803520203,
+ "learning_rate": 0.0006,
+ "loss": 3.578747272491455,
+ "step": 4014
+ },
+ {
+ "epoch": 55.768894713848844,
+ "grad_norm": 0.23597940802574158,
+ "learning_rate": 0.0006,
+ "loss": 3.5816988945007324,
+ "step": 4015
+ },
+ {
+ "epoch": 55.782874617737,
+ "grad_norm": 0.237411230802536,
+ "learning_rate": 0.0006,
+ "loss": 3.5659806728363037,
+ "step": 4016
+ },
+ {
+ "epoch": 55.796854521625164,
+ "grad_norm": 0.23947440087795258,
+ "learning_rate": 0.0006,
+ "loss": 3.545125961303711,
+ "step": 4017
+ },
+ {
+ "epoch": 55.81083442551333,
+ "grad_norm": 0.21562735736370087,
+ "learning_rate": 0.0006,
+ "loss": 3.5571303367614746,
+ "step": 4018
+ },
+ {
+ "epoch": 55.824814329401484,
+ "grad_norm": 0.21958434581756592,
+ "learning_rate": 0.0006,
+ "loss": 3.5243420600891113,
+ "step": 4019
+ },
+ {
+ "epoch": 55.83879423328965,
+ "grad_norm": 0.23856471478939056,
+ "learning_rate": 0.0006,
+ "loss": 3.586078643798828,
+ "step": 4020
+ },
+ {
+ "epoch": 55.8527741371778,
+ "grad_norm": 0.20703551173210144,
+ "learning_rate": 0.0006,
+ "loss": 3.5503201484680176,
+ "step": 4021
+ },
+ {
+ "epoch": 55.86675404106597,
+ "grad_norm": 0.21183231472969055,
+ "learning_rate": 0.0006,
+ "loss": 3.5873844623565674,
+ "step": 4022
+ },
+ {
+ "epoch": 55.88073394495413,
+ "grad_norm": 0.2129688709974289,
+ "learning_rate": 0.0006,
+ "loss": 3.582061290740967,
+ "step": 4023
+ },
+ {
+ "epoch": 55.89471384884229,
+ "grad_norm": 0.2122214287519455,
+ "learning_rate": 0.0006,
+ "loss": 3.547175884246826,
+ "step": 4024
+ },
+ {
+ "epoch": 55.90869375273045,
+ "grad_norm": 0.214874267578125,
+ "learning_rate": 0.0006,
+ "loss": 3.5322279930114746,
+ "step": 4025
+ },
+ {
+ "epoch": 55.92267365661861,
+ "grad_norm": 0.24104614555835724,
+ "learning_rate": 0.0006,
+ "loss": 3.5742111206054688,
+ "step": 4026
+ },
+ {
+ "epoch": 55.93665356050677,
+ "grad_norm": 0.2257685512304306,
+ "learning_rate": 0.0006,
+ "loss": 3.5686793327331543,
+ "step": 4027
+ },
+ {
+ "epoch": 55.95063346439493,
+ "grad_norm": 0.2170567363500595,
+ "learning_rate": 0.0006,
+ "loss": 3.5670571327209473,
+ "step": 4028
+ },
+ {
+ "epoch": 55.964613368283096,
+ "grad_norm": 0.2003280222415924,
+ "learning_rate": 0.0006,
+ "loss": 3.533921718597412,
+ "step": 4029
+ },
+ {
+ "epoch": 55.97859327217125,
+ "grad_norm": 0.21483278274536133,
+ "learning_rate": 0.0006,
+ "loss": 3.539720058441162,
+ "step": 4030
+ },
+ {
+ "epoch": 55.992573176059416,
+ "grad_norm": 0.26908108592033386,
+ "learning_rate": 0.0006,
+ "loss": 3.575934886932373,
+ "step": 4031
+ },
+ {
+ "epoch": 56.0,
+ "grad_norm": 0.30002665519714355,
+ "learning_rate": 0.0006,
+ "loss": 3.5702414512634277,
+ "step": 4032
+ },
+ {
+ "epoch": 56.0,
+ "eval_loss": 3.9834072589874268,
+ "eval_runtime": 46.2268,
+ "eval_samples_per_second": 52.826,
+ "eval_steps_per_second": 3.31,
+ "step": 4032
+ },
+ {
+ "epoch": 56.01397990388816,
+ "grad_norm": 0.25298207998275757,
+ "learning_rate": 0.0006,
+ "loss": 3.538151741027832,
+ "step": 4033
+ },
+ {
+ "epoch": 56.02795980777632,
+ "grad_norm": 0.2231103479862213,
+ "learning_rate": 0.0006,
+ "loss": 3.551466941833496,
+ "step": 4034
+ },
+ {
+ "epoch": 56.04193971166448,
+ "grad_norm": 0.2504221796989441,
+ "learning_rate": 0.0006,
+ "loss": 3.5361199378967285,
+ "step": 4035
+ },
+ {
+ "epoch": 56.05591961555265,
+ "grad_norm": 0.23491773009300232,
+ "learning_rate": 0.0006,
+ "loss": 3.549346446990967,
+ "step": 4036
+ },
+ {
+ "epoch": 56.0698995194408,
+ "grad_norm": 0.23068852722644806,
+ "learning_rate": 0.0006,
+ "loss": 3.5243453979492188,
+ "step": 4037
+ },
+ {
+ "epoch": 56.083879423328966,
+ "grad_norm": 0.22160249948501587,
+ "learning_rate": 0.0006,
+ "loss": 3.551191806793213,
+ "step": 4038
+ },
+ {
+ "epoch": 56.09785932721712,
+ "grad_norm": 0.2389034926891327,
+ "learning_rate": 0.0006,
+ "loss": 3.5358071327209473,
+ "step": 4039
+ },
+ {
+ "epoch": 56.111839231105286,
+ "grad_norm": 0.2552168071269989,
+ "learning_rate": 0.0006,
+ "loss": 3.564204692840576,
+ "step": 4040
+ },
+ {
+ "epoch": 56.12581913499345,
+ "grad_norm": 0.2802336812019348,
+ "learning_rate": 0.0006,
+ "loss": 3.540386438369751,
+ "step": 4041
+ },
+ {
+ "epoch": 56.139799038881605,
+ "grad_norm": 0.2564619779586792,
+ "learning_rate": 0.0006,
+ "loss": 3.544264554977417,
+ "step": 4042
+ },
+ {
+ "epoch": 56.15377894276977,
+ "grad_norm": 0.24272632598876953,
+ "learning_rate": 0.0006,
+ "loss": 3.509497880935669,
+ "step": 4043
+ },
+ {
+ "epoch": 56.16775884665793,
+ "grad_norm": 0.23981881141662598,
+ "learning_rate": 0.0006,
+ "loss": 3.551090955734253,
+ "step": 4044
+ },
+ {
+ "epoch": 56.18173875054609,
+ "grad_norm": 0.22418269515037537,
+ "learning_rate": 0.0006,
+ "loss": 3.558614492416382,
+ "step": 4045
+ },
+ {
+ "epoch": 56.19571865443425,
+ "grad_norm": 0.21792462468147278,
+ "learning_rate": 0.0006,
+ "loss": 3.540558338165283,
+ "step": 4046
+ },
+ {
+ "epoch": 56.20969855832241,
+ "grad_norm": 0.21248634159564972,
+ "learning_rate": 0.0006,
+ "loss": 3.5273942947387695,
+ "step": 4047
+ },
+ {
+ "epoch": 56.22367846221057,
+ "grad_norm": 0.1863572895526886,
+ "learning_rate": 0.0006,
+ "loss": 3.555302143096924,
+ "step": 4048
+ },
+ {
+ "epoch": 56.237658366098735,
+ "grad_norm": 0.21031822264194489,
+ "learning_rate": 0.0006,
+ "loss": 3.547515630722046,
+ "step": 4049
+ },
+ {
+ "epoch": 56.25163826998689,
+ "grad_norm": 0.19754044711589813,
+ "learning_rate": 0.0006,
+ "loss": 3.5476508140563965,
+ "step": 4050
+ },
+ {
+ "epoch": 56.265618173875055,
+ "grad_norm": 0.19707852602005005,
+ "learning_rate": 0.0006,
+ "loss": 3.506730794906616,
+ "step": 4051
+ },
+ {
+ "epoch": 56.27959807776322,
+ "grad_norm": 0.21011239290237427,
+ "learning_rate": 0.0006,
+ "loss": 3.51116681098938,
+ "step": 4052
+ },
+ {
+ "epoch": 56.293577981651374,
+ "grad_norm": 0.20281212031841278,
+ "learning_rate": 0.0006,
+ "loss": 3.549513816833496,
+ "step": 4053
+ },
+ {
+ "epoch": 56.30755788553954,
+ "grad_norm": 0.19198910892009735,
+ "learning_rate": 0.0006,
+ "loss": 3.5299534797668457,
+ "step": 4054
+ },
+ {
+ "epoch": 56.3215377894277,
+ "grad_norm": 0.1861368715763092,
+ "learning_rate": 0.0006,
+ "loss": 3.513909339904785,
+ "step": 4055
+ },
+ {
+ "epoch": 56.33551769331586,
+ "grad_norm": 0.20779506862163544,
+ "learning_rate": 0.0006,
+ "loss": 3.5528712272644043,
+ "step": 4056
+ },
+ {
+ "epoch": 56.34949759720402,
+ "grad_norm": 0.2229684591293335,
+ "learning_rate": 0.0006,
+ "loss": 3.518359661102295,
+ "step": 4057
+ },
+ {
+ "epoch": 56.36347750109218,
+ "grad_norm": 0.22998179495334625,
+ "learning_rate": 0.0006,
+ "loss": 3.5004091262817383,
+ "step": 4058
+ },
+ {
+ "epoch": 56.37745740498034,
+ "grad_norm": 0.2176709622144699,
+ "learning_rate": 0.0006,
+ "loss": 3.550295829772949,
+ "step": 4059
+ },
+ {
+ "epoch": 56.391437308868504,
+ "grad_norm": 0.19512872397899628,
+ "learning_rate": 0.0006,
+ "loss": 3.5305161476135254,
+ "step": 4060
+ },
+ {
+ "epoch": 56.40541721275666,
+ "grad_norm": 0.23127448558807373,
+ "learning_rate": 0.0006,
+ "loss": 3.5341286659240723,
+ "step": 4061
+ },
+ {
+ "epoch": 56.419397116644824,
+ "grad_norm": 0.20905959606170654,
+ "learning_rate": 0.0006,
+ "loss": 3.553912401199341,
+ "step": 4062
+ },
+ {
+ "epoch": 56.43337702053299,
+ "grad_norm": 0.23370878398418427,
+ "learning_rate": 0.0006,
+ "loss": 3.5700249671936035,
+ "step": 4063
+ },
+ {
+ "epoch": 56.44735692442114,
+ "grad_norm": 0.233205646276474,
+ "learning_rate": 0.0006,
+ "loss": 3.5184097290039062,
+ "step": 4064
+ },
+ {
+ "epoch": 56.46133682830931,
+ "grad_norm": 0.23928777873516083,
+ "learning_rate": 0.0006,
+ "loss": 3.535874366760254,
+ "step": 4065
+ },
+ {
+ "epoch": 56.47531673219746,
+ "grad_norm": 0.24950815737247467,
+ "learning_rate": 0.0006,
+ "loss": 3.508136749267578,
+ "step": 4066
+ },
+ {
+ "epoch": 56.489296636085626,
+ "grad_norm": 0.24821820855140686,
+ "learning_rate": 0.0006,
+ "loss": 3.5421361923217773,
+ "step": 4067
+ },
+ {
+ "epoch": 56.50327653997379,
+ "grad_norm": 0.2252482771873474,
+ "learning_rate": 0.0006,
+ "loss": 3.5516514778137207,
+ "step": 4068
+ },
+ {
+ "epoch": 56.517256443861946,
+ "grad_norm": 0.2238101363182068,
+ "learning_rate": 0.0006,
+ "loss": 3.567741632461548,
+ "step": 4069
+ },
+ {
+ "epoch": 56.53123634775011,
+ "grad_norm": 0.20759683847427368,
+ "learning_rate": 0.0006,
+ "loss": 3.544705390930176,
+ "step": 4070
+ },
+ {
+ "epoch": 56.54521625163827,
+ "grad_norm": 0.21918460726737976,
+ "learning_rate": 0.0006,
+ "loss": 3.5725836753845215,
+ "step": 4071
+ },
+ {
+ "epoch": 56.55919615552643,
+ "grad_norm": 0.22640042006969452,
+ "learning_rate": 0.0006,
+ "loss": 3.5447535514831543,
+ "step": 4072
+ },
+ {
+ "epoch": 56.57317605941459,
+ "grad_norm": 0.23130203783512115,
+ "learning_rate": 0.0006,
+ "loss": 3.5620853900909424,
+ "step": 4073
+ },
+ {
+ "epoch": 56.58715596330275,
+ "grad_norm": 0.2215641736984253,
+ "learning_rate": 0.0006,
+ "loss": 3.5416438579559326,
+ "step": 4074
+ },
+ {
+ "epoch": 56.60113586719091,
+ "grad_norm": 0.20106497406959534,
+ "learning_rate": 0.0006,
+ "loss": 3.537386178970337,
+ "step": 4075
+ },
+ {
+ "epoch": 56.615115771079076,
+ "grad_norm": 0.2045976221561432,
+ "learning_rate": 0.0006,
+ "loss": 3.555032730102539,
+ "step": 4076
+ },
+ {
+ "epoch": 56.62909567496723,
+ "grad_norm": 0.20097647607326508,
+ "learning_rate": 0.0006,
+ "loss": 3.559572458267212,
+ "step": 4077
+ },
+ {
+ "epoch": 56.643075578855395,
+ "grad_norm": 0.24158388376235962,
+ "learning_rate": 0.0006,
+ "loss": 3.56520938873291,
+ "step": 4078
+ },
+ {
+ "epoch": 56.65705548274356,
+ "grad_norm": 0.2687791585922241,
+ "learning_rate": 0.0006,
+ "loss": 3.545924663543701,
+ "step": 4079
+ },
+ {
+ "epoch": 56.671035386631715,
+ "grad_norm": 0.22466111183166504,
+ "learning_rate": 0.0006,
+ "loss": 3.5556845664978027,
+ "step": 4080
+ },
+ {
+ "epoch": 56.68501529051988,
+ "grad_norm": 0.2177814394235611,
+ "learning_rate": 0.0006,
+ "loss": 3.5799131393432617,
+ "step": 4081
+ },
+ {
+ "epoch": 56.69899519440804,
+ "grad_norm": 0.2700476050376892,
+ "learning_rate": 0.0006,
+ "loss": 3.5859055519104004,
+ "step": 4082
+ },
+ {
+ "epoch": 56.7129750982962,
+ "grad_norm": 0.28230178356170654,
+ "learning_rate": 0.0006,
+ "loss": 3.5733890533447266,
+ "step": 4083
+ },
+ {
+ "epoch": 56.72695500218436,
+ "grad_norm": 0.29298731684684753,
+ "learning_rate": 0.0006,
+ "loss": 3.556626319885254,
+ "step": 4084
+ },
+ {
+ "epoch": 56.74093490607252,
+ "grad_norm": 0.2818183898925781,
+ "learning_rate": 0.0006,
+ "loss": 3.5884718894958496,
+ "step": 4085
+ },
+ {
+ "epoch": 56.75491480996068,
+ "grad_norm": 0.24008697271347046,
+ "learning_rate": 0.0006,
+ "loss": 3.5464529991149902,
+ "step": 4086
+ },
+ {
+ "epoch": 56.768894713848844,
+ "grad_norm": 0.23406296968460083,
+ "learning_rate": 0.0006,
+ "loss": 3.5622801780700684,
+ "step": 4087
+ },
+ {
+ "epoch": 56.782874617737,
+ "grad_norm": 0.26089322566986084,
+ "learning_rate": 0.0006,
+ "loss": 3.5775020122528076,
+ "step": 4088
+ },
+ {
+ "epoch": 56.796854521625164,
+ "grad_norm": 0.2576654851436615,
+ "learning_rate": 0.0006,
+ "loss": 3.5543627738952637,
+ "step": 4089
+ },
+ {
+ "epoch": 56.81083442551333,
+ "grad_norm": 0.26576393842697144,
+ "learning_rate": 0.0006,
+ "loss": 3.546170711517334,
+ "step": 4090
+ },
+ {
+ "epoch": 56.824814329401484,
+ "grad_norm": 0.22380715608596802,
+ "learning_rate": 0.0006,
+ "loss": 3.5437729358673096,
+ "step": 4091
+ },
+ {
+ "epoch": 56.83879423328965,
+ "grad_norm": 0.20786714553833008,
+ "learning_rate": 0.0006,
+ "loss": 3.5951266288757324,
+ "step": 4092
+ },
+ {
+ "epoch": 56.8527741371778,
+ "grad_norm": 0.23177042603492737,
+ "learning_rate": 0.0006,
+ "loss": 3.549454689025879,
+ "step": 4093
+ },
+ {
+ "epoch": 56.86675404106597,
+ "grad_norm": 0.21466009318828583,
+ "learning_rate": 0.0006,
+ "loss": 3.5611233711242676,
+ "step": 4094
+ },
+ {
+ "epoch": 56.88073394495413,
+ "grad_norm": 0.20928414165973663,
+ "learning_rate": 0.0006,
+ "loss": 3.5550684928894043,
+ "step": 4095
+ },
+ {
+ "epoch": 56.89471384884229,
+ "grad_norm": 0.20727156102657318,
+ "learning_rate": 0.0006,
+ "loss": 3.552496910095215,
+ "step": 4096
+ },
+ {
+ "epoch": 56.90869375273045,
+ "grad_norm": 0.21370401978492737,
+ "learning_rate": 0.0006,
+ "loss": 3.5763869285583496,
+ "step": 4097
+ },
+ {
+ "epoch": 56.92267365661861,
+ "grad_norm": 0.22490337491035461,
+ "learning_rate": 0.0006,
+ "loss": 3.538986921310425,
+ "step": 4098
+ },
+ {
+ "epoch": 56.93665356050677,
+ "grad_norm": 0.23320236802101135,
+ "learning_rate": 0.0006,
+ "loss": 3.5514214038848877,
+ "step": 4099
+ },
+ {
+ "epoch": 56.95063346439493,
+ "grad_norm": 0.22050419449806213,
+ "learning_rate": 0.0006,
+ "loss": 3.5486960411071777,
+ "step": 4100
+ },
+ {
+ "epoch": 56.964613368283096,
+ "grad_norm": 0.2241443395614624,
+ "learning_rate": 0.0006,
+ "loss": 3.5858001708984375,
+ "step": 4101
+ },
+ {
+ "epoch": 56.97859327217125,
+ "grad_norm": 0.24904389679431915,
+ "learning_rate": 0.0006,
+ "loss": 3.586472511291504,
+ "step": 4102
+ },
+ {
+ "epoch": 56.992573176059416,
+ "grad_norm": 0.2333211451768875,
+ "learning_rate": 0.0006,
+ "loss": 3.5463132858276367,
+ "step": 4103
+ },
+ {
+ "epoch": 57.0,
+ "grad_norm": 0.24142783880233765,
+ "learning_rate": 0.0006,
+ "loss": 3.5642542839050293,
+ "step": 4104
+ },
+ {
+ "epoch": 57.0,
+ "eval_loss": 3.973973035812378,
+ "eval_runtime": 46.2906,
+ "eval_samples_per_second": 52.754,
+ "eval_steps_per_second": 3.305,
+ "step": 4104
+ },
+ {
+ "epoch": 57.01397990388816,
+ "grad_norm": 0.21989624202251434,
+ "learning_rate": 0.0006,
+ "loss": 3.539435863494873,
+ "step": 4105
+ },
+ {
+ "epoch": 57.02795980777632,
+ "grad_norm": 0.24061834812164307,
+ "learning_rate": 0.0006,
+ "loss": 3.5251410007476807,
+ "step": 4106
+ },
+ {
+ "epoch": 57.04193971166448,
+ "grad_norm": 0.2483278512954712,
+ "learning_rate": 0.0006,
+ "loss": 3.5104010105133057,
+ "step": 4107
+ },
+ {
+ "epoch": 57.05591961555265,
+ "grad_norm": 0.2717698812484741,
+ "learning_rate": 0.0006,
+ "loss": 3.5134170055389404,
+ "step": 4108
+ },
+ {
+ "epoch": 57.0698995194408,
+ "grad_norm": 0.27335646748542786,
+ "learning_rate": 0.0006,
+ "loss": 3.53574275970459,
+ "step": 4109
+ },
+ {
+ "epoch": 57.083879423328966,
+ "grad_norm": 0.2423052042722702,
+ "learning_rate": 0.0006,
+ "loss": 3.4960169792175293,
+ "step": 4110
+ },
+ {
+ "epoch": 57.09785932721712,
+ "grad_norm": 0.2241092175245285,
+ "learning_rate": 0.0006,
+ "loss": 3.5409107208251953,
+ "step": 4111
+ },
+ {
+ "epoch": 57.111839231105286,
+ "grad_norm": 0.23098452389240265,
+ "learning_rate": 0.0006,
+ "loss": 3.5326709747314453,
+ "step": 4112
+ },
+ {
+ "epoch": 57.12581913499345,
+ "grad_norm": 0.2500186562538147,
+ "learning_rate": 0.0006,
+ "loss": 3.509953498840332,
+ "step": 4113
+ },
+ {
+ "epoch": 57.139799038881605,
+ "grad_norm": 0.26994550228118896,
+ "learning_rate": 0.0006,
+ "loss": 3.560410499572754,
+ "step": 4114
+ },
+ {
+ "epoch": 57.15377894276977,
+ "grad_norm": 0.24950402975082397,
+ "learning_rate": 0.0006,
+ "loss": 3.517613649368286,
+ "step": 4115
+ },
+ {
+ "epoch": 57.16775884665793,
+ "grad_norm": 0.21742430329322815,
+ "learning_rate": 0.0006,
+ "loss": 3.531256675720215,
+ "step": 4116
+ },
+ {
+ "epoch": 57.18173875054609,
+ "grad_norm": 0.29069146513938904,
+ "learning_rate": 0.0006,
+ "loss": 3.5283756256103516,
+ "step": 4117
+ },
+ {
+ "epoch": 57.19571865443425,
+ "grad_norm": 0.2901996970176697,
+ "learning_rate": 0.0006,
+ "loss": 3.5460801124572754,
+ "step": 4118
+ },
+ {
+ "epoch": 57.20969855832241,
+ "grad_norm": 0.2534845471382141,
+ "learning_rate": 0.0006,
+ "loss": 3.515536308288574,
+ "step": 4119
+ },
+ {
+ "epoch": 57.22367846221057,
+ "grad_norm": 0.2352340817451477,
+ "learning_rate": 0.0006,
+ "loss": 3.5281717777252197,
+ "step": 4120
+ },
+ {
+ "epoch": 57.237658366098735,
+ "grad_norm": 0.2263645976781845,
+ "learning_rate": 0.0006,
+ "loss": 3.5629191398620605,
+ "step": 4121
+ },
+ {
+ "epoch": 57.25163826998689,
+ "grad_norm": 0.21413370966911316,
+ "learning_rate": 0.0006,
+ "loss": 3.5342142581939697,
+ "step": 4122
+ },
+ {
+ "epoch": 57.265618173875055,
+ "grad_norm": 0.1969698667526245,
+ "learning_rate": 0.0006,
+ "loss": 3.5467586517333984,
+ "step": 4123
+ },
+ {
+ "epoch": 57.27959807776322,
+ "grad_norm": 0.2106606364250183,
+ "learning_rate": 0.0006,
+ "loss": 3.5409536361694336,
+ "step": 4124
+ },
+ {
+ "epoch": 57.293577981651374,
+ "grad_norm": 0.21824438869953156,
+ "learning_rate": 0.0006,
+ "loss": 3.5246548652648926,
+ "step": 4125
+ },
+ {
+ "epoch": 57.30755788553954,
+ "grad_norm": 0.2147768884897232,
+ "learning_rate": 0.0006,
+ "loss": 3.5411794185638428,
+ "step": 4126
+ },
+ {
+ "epoch": 57.3215377894277,
+ "grad_norm": 0.21352852880954742,
+ "learning_rate": 0.0006,
+ "loss": 3.569387197494507,
+ "step": 4127
+ },
+ {
+ "epoch": 57.33551769331586,
+ "grad_norm": 0.20957978069782257,
+ "learning_rate": 0.0006,
+ "loss": 3.522695779800415,
+ "step": 4128
+ },
+ {
+ "epoch": 57.34949759720402,
+ "grad_norm": 0.2013026475906372,
+ "learning_rate": 0.0006,
+ "loss": 3.5485787391662598,
+ "step": 4129
+ },
+ {
+ "epoch": 57.36347750109218,
+ "grad_norm": 0.2260376214981079,
+ "learning_rate": 0.0006,
+ "loss": 3.547607421875,
+ "step": 4130
+ },
+ {
+ "epoch": 57.37745740498034,
+ "grad_norm": 0.22991685569286346,
+ "learning_rate": 0.0006,
+ "loss": 3.5464730262756348,
+ "step": 4131
+ },
+ {
+ "epoch": 57.391437308868504,
+ "grad_norm": 0.19638051092624664,
+ "learning_rate": 0.0006,
+ "loss": 3.54355525970459,
+ "step": 4132
+ },
+ {
+ "epoch": 57.40541721275666,
+ "grad_norm": 0.19450774788856506,
+ "learning_rate": 0.0006,
+ "loss": 3.5490050315856934,
+ "step": 4133
+ },
+ {
+ "epoch": 57.419397116644824,
+ "grad_norm": 0.21798551082611084,
+ "learning_rate": 0.0006,
+ "loss": 3.56355619430542,
+ "step": 4134
+ },
+ {
+ "epoch": 57.43337702053299,
+ "grad_norm": 0.2129846215248108,
+ "learning_rate": 0.0006,
+ "loss": 3.5607380867004395,
+ "step": 4135
+ },
+ {
+ "epoch": 57.44735692442114,
+ "grad_norm": 0.20589227974414825,
+ "learning_rate": 0.0006,
+ "loss": 3.523768663406372,
+ "step": 4136
+ },
+ {
+ "epoch": 57.46133682830931,
+ "grad_norm": 0.21841686964035034,
+ "learning_rate": 0.0006,
+ "loss": 3.5187885761260986,
+ "step": 4137
+ },
+ {
+ "epoch": 57.47531673219746,
+ "grad_norm": 0.2118791788816452,
+ "learning_rate": 0.0006,
+ "loss": 3.5271782875061035,
+ "step": 4138
+ },
+ {
+ "epoch": 57.489296636085626,
+ "grad_norm": 0.21905459463596344,
+ "learning_rate": 0.0006,
+ "loss": 3.546968460083008,
+ "step": 4139
+ },
+ {
+ "epoch": 57.50327653997379,
+ "grad_norm": 0.23899133503437042,
+ "learning_rate": 0.0006,
+ "loss": 3.5156688690185547,
+ "step": 4140
+ },
+ {
+ "epoch": 57.517256443861946,
+ "grad_norm": 0.23873545229434967,
+ "learning_rate": 0.0006,
+ "loss": 3.5271472930908203,
+ "step": 4141
+ },
+ {
+ "epoch": 57.53123634775011,
+ "grad_norm": 0.20691858232021332,
+ "learning_rate": 0.0006,
+ "loss": 3.552854537963867,
+ "step": 4142
+ },
+ {
+ "epoch": 57.54521625163827,
+ "grad_norm": 0.21962891519069672,
+ "learning_rate": 0.0006,
+ "loss": 3.5258498191833496,
+ "step": 4143
+ },
+ {
+ "epoch": 57.55919615552643,
+ "grad_norm": 0.21762165427207947,
+ "learning_rate": 0.0006,
+ "loss": 3.566831588745117,
+ "step": 4144
+ },
+ {
+ "epoch": 57.57317605941459,
+ "grad_norm": 0.19603654742240906,
+ "learning_rate": 0.0006,
+ "loss": 3.5393714904785156,
+ "step": 4145
+ },
+ {
+ "epoch": 57.58715596330275,
+ "grad_norm": 0.20347437262535095,
+ "learning_rate": 0.0006,
+ "loss": 3.538390874862671,
+ "step": 4146
+ },
+ {
+ "epoch": 57.60113586719091,
+ "grad_norm": 0.2179173231124878,
+ "learning_rate": 0.0006,
+ "loss": 3.566631317138672,
+ "step": 4147
+ },
+ {
+ "epoch": 57.615115771079076,
+ "grad_norm": 0.19678309559822083,
+ "learning_rate": 0.0006,
+ "loss": 3.5659375190734863,
+ "step": 4148
+ },
+ {
+ "epoch": 57.62909567496723,
+ "grad_norm": 0.20221677422523499,
+ "learning_rate": 0.0006,
+ "loss": 3.5679430961608887,
+ "step": 4149
+ },
+ {
+ "epoch": 57.643075578855395,
+ "grad_norm": 0.21337579190731049,
+ "learning_rate": 0.0006,
+ "loss": 3.5330681800842285,
+ "step": 4150
+ },
+ {
+ "epoch": 57.65705548274356,
+ "grad_norm": 0.2646789848804474,
+ "learning_rate": 0.0006,
+ "loss": 3.5216803550720215,
+ "step": 4151
+ },
+ {
+ "epoch": 57.671035386631715,
+ "grad_norm": 0.304950088262558,
+ "learning_rate": 0.0006,
+ "loss": 3.5570156574249268,
+ "step": 4152
+ },
+ {
+ "epoch": 57.68501529051988,
+ "grad_norm": 0.2739402651786804,
+ "learning_rate": 0.0006,
+ "loss": 3.5844314098358154,
+ "step": 4153
+ },
+ {
+ "epoch": 57.69899519440804,
+ "grad_norm": 0.19060099124908447,
+ "learning_rate": 0.0006,
+ "loss": 3.571052074432373,
+ "step": 4154
+ },
+ {
+ "epoch": 57.7129750982962,
+ "grad_norm": 0.2941007614135742,
+ "learning_rate": 0.0006,
+ "loss": 3.543100357055664,
+ "step": 4155
+ },
+ {
+ "epoch": 57.72695500218436,
+ "grad_norm": 0.34624332189559937,
+ "learning_rate": 0.0006,
+ "loss": 3.564270496368408,
+ "step": 4156
+ },
+ {
+ "epoch": 57.74093490607252,
+ "grad_norm": 0.30635201930999756,
+ "learning_rate": 0.0006,
+ "loss": 3.5390584468841553,
+ "step": 4157
+ },
+ {
+ "epoch": 57.75491480996068,
+ "grad_norm": 0.2204878330230713,
+ "learning_rate": 0.0006,
+ "loss": 3.5427281856536865,
+ "step": 4158
+ },
+ {
+ "epoch": 57.768894713848844,
+ "grad_norm": 0.20659378170967102,
+ "learning_rate": 0.0006,
+ "loss": 3.528977155685425,
+ "step": 4159
+ },
+ {
+ "epoch": 57.782874617737,
+ "grad_norm": 0.2281361073255539,
+ "learning_rate": 0.0006,
+ "loss": 3.5531792640686035,
+ "step": 4160
+ },
+ {
+ "epoch": 57.796854521625164,
+ "grad_norm": 0.22478239238262177,
+ "learning_rate": 0.0006,
+ "loss": 3.566704750061035,
+ "step": 4161
+ },
+ {
+ "epoch": 57.81083442551333,
+ "grad_norm": 0.20797103643417358,
+ "learning_rate": 0.0006,
+ "loss": 3.5684943199157715,
+ "step": 4162
+ },
+ {
+ "epoch": 57.824814329401484,
+ "grad_norm": 0.2108374983072281,
+ "learning_rate": 0.0006,
+ "loss": 3.5475950241088867,
+ "step": 4163
+ },
+ {
+ "epoch": 57.83879423328965,
+ "grad_norm": 0.2268034815788269,
+ "learning_rate": 0.0006,
+ "loss": 3.5456833839416504,
+ "step": 4164
+ },
+ {
+ "epoch": 57.8527741371778,
+ "grad_norm": 0.2131519913673401,
+ "learning_rate": 0.0006,
+ "loss": 3.5316243171691895,
+ "step": 4165
+ },
+ {
+ "epoch": 57.86675404106597,
+ "grad_norm": 0.20163841545581818,
+ "learning_rate": 0.0006,
+ "loss": 3.5320897102355957,
+ "step": 4166
+ },
+ {
+ "epoch": 57.88073394495413,
+ "grad_norm": 0.20961757004261017,
+ "learning_rate": 0.0006,
+ "loss": 3.5800695419311523,
+ "step": 4167
+ },
+ {
+ "epoch": 57.89471384884229,
+ "grad_norm": 0.2061416506767273,
+ "learning_rate": 0.0006,
+ "loss": 3.544395923614502,
+ "step": 4168
+ },
+ {
+ "epoch": 57.90869375273045,
+ "grad_norm": 0.20306318998336792,
+ "learning_rate": 0.0006,
+ "loss": 3.554436683654785,
+ "step": 4169
+ },
+ {
+ "epoch": 57.92267365661861,
+ "grad_norm": 0.20685963332653046,
+ "learning_rate": 0.0006,
+ "loss": 3.5614635944366455,
+ "step": 4170
+ },
+ {
+ "epoch": 57.93665356050677,
+ "grad_norm": 0.19938082993030548,
+ "learning_rate": 0.0006,
+ "loss": 3.578136920928955,
+ "step": 4171
+ },
+ {
+ "epoch": 57.95063346439493,
+ "grad_norm": 0.2150411158800125,
+ "learning_rate": 0.0006,
+ "loss": 3.5754270553588867,
+ "step": 4172
+ },
+ {
+ "epoch": 57.964613368283096,
+ "grad_norm": 0.23399604856967926,
+ "learning_rate": 0.0006,
+ "loss": 3.5553112030029297,
+ "step": 4173
+ },
+ {
+ "epoch": 57.97859327217125,
+ "grad_norm": 0.2496841847896576,
+ "learning_rate": 0.0006,
+ "loss": 3.5509696006774902,
+ "step": 4174
+ },
+ {
+ "epoch": 57.992573176059416,
+ "grad_norm": 0.23759980499744415,
+ "learning_rate": 0.0006,
+ "loss": 3.5806684494018555,
+ "step": 4175
+ },
+ {
+ "epoch": 58.0,
+ "grad_norm": 0.2494540512561798,
+ "learning_rate": 0.0006,
+ "loss": 3.541708469390869,
+ "step": 4176
+ },
+ {
+ "epoch": 58.0,
+ "eval_loss": 3.970658779144287,
+ "eval_runtime": 46.0262,
+ "eval_samples_per_second": 53.057,
+ "eval_steps_per_second": 3.324,
+ "step": 4176
+ },
+ {
+ "epoch": 58.01397990388816,
+ "grad_norm": 0.2053643763065338,
+ "learning_rate": 0.0006,
+ "loss": 3.5264205932617188,
+ "step": 4177
+ },
+ {
+ "epoch": 58.02795980777632,
+ "grad_norm": 0.20680591464042664,
+ "learning_rate": 0.0006,
+ "loss": 3.495445728302002,
+ "step": 4178
+ },
+ {
+ "epoch": 58.04193971166448,
+ "grad_norm": 0.22180874645709991,
+ "learning_rate": 0.0006,
+ "loss": 3.546283483505249,
+ "step": 4179
+ },
+ {
+ "epoch": 58.05591961555265,
+ "grad_norm": 0.24255339801311493,
+ "learning_rate": 0.0006,
+ "loss": 3.50639271736145,
+ "step": 4180
+ },
+ {
+ "epoch": 58.0698995194408,
+ "grad_norm": 0.2747100591659546,
+ "learning_rate": 0.0006,
+ "loss": 3.514240026473999,
+ "step": 4181
+ },
+ {
+ "epoch": 58.083879423328966,
+ "grad_norm": 0.27960914373397827,
+ "learning_rate": 0.0006,
+ "loss": 3.5614311695098877,
+ "step": 4182
+ },
+ {
+ "epoch": 58.09785932721712,
+ "grad_norm": 0.25837743282318115,
+ "learning_rate": 0.0006,
+ "loss": 3.533560276031494,
+ "step": 4183
+ },
+ {
+ "epoch": 58.111839231105286,
+ "grad_norm": 0.24635657668113708,
+ "learning_rate": 0.0006,
+ "loss": 3.4867968559265137,
+ "step": 4184
+ },
+ {
+ "epoch": 58.12581913499345,
+ "grad_norm": 0.31520891189575195,
+ "learning_rate": 0.0006,
+ "loss": 3.5131611824035645,
+ "step": 4185
+ },
+ {
+ "epoch": 58.139799038881605,
+ "grad_norm": 0.36781513690948486,
+ "learning_rate": 0.0006,
+ "loss": 3.5149288177490234,
+ "step": 4186
+ },
+ {
+ "epoch": 58.15377894276977,
+ "grad_norm": 0.32433459162712097,
+ "learning_rate": 0.0006,
+ "loss": 3.5485405921936035,
+ "step": 4187
+ },
+ {
+ "epoch": 58.16775884665793,
+ "grad_norm": 0.2532205283641815,
+ "learning_rate": 0.0006,
+ "loss": 3.4994513988494873,
+ "step": 4188
+ },
+ {
+ "epoch": 58.18173875054609,
+ "grad_norm": 0.29780858755111694,
+ "learning_rate": 0.0006,
+ "loss": 3.496187448501587,
+ "step": 4189
+ },
+ {
+ "epoch": 58.19571865443425,
+ "grad_norm": 0.2804715037345886,
+ "learning_rate": 0.0006,
+ "loss": 3.5210375785827637,
+ "step": 4190
+ },
+ {
+ "epoch": 58.20969855832241,
+ "grad_norm": 0.2186010330915451,
+ "learning_rate": 0.0006,
+ "loss": 3.5139119625091553,
+ "step": 4191
+ },
+ {
+ "epoch": 58.22367846221057,
+ "grad_norm": 0.21566270291805267,
+ "learning_rate": 0.0006,
+ "loss": 3.5011606216430664,
+ "step": 4192
+ },
+ {
+ "epoch": 58.237658366098735,
+ "grad_norm": 0.21042031049728394,
+ "learning_rate": 0.0006,
+ "loss": 3.52295184135437,
+ "step": 4193
+ },
+ {
+ "epoch": 58.25163826998689,
+ "grad_norm": 0.20117411017417908,
+ "learning_rate": 0.0006,
+ "loss": 3.54593563079834,
+ "step": 4194
+ },
+ {
+ "epoch": 58.265618173875055,
+ "grad_norm": 0.21747945249080658,
+ "learning_rate": 0.0006,
+ "loss": 3.5341522693634033,
+ "step": 4195
+ },
+ {
+ "epoch": 58.27959807776322,
+ "grad_norm": 0.266024649143219,
+ "learning_rate": 0.0006,
+ "loss": 3.536393165588379,
+ "step": 4196
+ },
+ {
+ "epoch": 58.293577981651374,
+ "grad_norm": 0.2577304542064667,
+ "learning_rate": 0.0006,
+ "loss": 3.557468891143799,
+ "step": 4197
+ },
+ {
+ "epoch": 58.30755788553954,
+ "grad_norm": 0.22055941820144653,
+ "learning_rate": 0.0006,
+ "loss": 3.5307652950286865,
+ "step": 4198
+ },
+ {
+ "epoch": 58.3215377894277,
+ "grad_norm": 0.22490856051445007,
+ "learning_rate": 0.0006,
+ "loss": 3.506265163421631,
+ "step": 4199
+ },
+ {
+ "epoch": 58.33551769331586,
+ "grad_norm": 0.23600345849990845,
+ "learning_rate": 0.0006,
+ "loss": 3.523414134979248,
+ "step": 4200
+ },
+ {
+ "epoch": 58.34949759720402,
+ "grad_norm": 0.24872642755508423,
+ "learning_rate": 0.0006,
+ "loss": 3.561278820037842,
+ "step": 4201
+ },
+ {
+ "epoch": 58.36347750109218,
+ "grad_norm": 0.2702998220920563,
+ "learning_rate": 0.0006,
+ "loss": 3.573561191558838,
+ "step": 4202
+ },
+ {
+ "epoch": 58.37745740498034,
+ "grad_norm": 0.2532080411911011,
+ "learning_rate": 0.0006,
+ "loss": 3.5476837158203125,
+ "step": 4203
+ },
+ {
+ "epoch": 58.391437308868504,
+ "grad_norm": 0.23641079664230347,
+ "learning_rate": 0.0006,
+ "loss": 3.5464468002319336,
+ "step": 4204
+ },
+ {
+ "epoch": 58.40541721275666,
+ "grad_norm": 0.29965463280677795,
+ "learning_rate": 0.0006,
+ "loss": 3.560166835784912,
+ "step": 4205
+ },
+ {
+ "epoch": 58.419397116644824,
+ "grad_norm": 0.2778814136981964,
+ "learning_rate": 0.0006,
+ "loss": 3.5363056659698486,
+ "step": 4206
+ },
+ {
+ "epoch": 58.43337702053299,
+ "grad_norm": 0.23625248670578003,
+ "learning_rate": 0.0006,
+ "loss": 3.5575437545776367,
+ "step": 4207
+ },
+ {
+ "epoch": 58.44735692442114,
+ "grad_norm": 0.2165721356868744,
+ "learning_rate": 0.0006,
+ "loss": 3.541654109954834,
+ "step": 4208
+ },
+ {
+ "epoch": 58.46133682830931,
+ "grad_norm": 0.2261950671672821,
+ "learning_rate": 0.0006,
+ "loss": 3.5462238788604736,
+ "step": 4209
+ },
+ {
+ "epoch": 58.47531673219746,
+ "grad_norm": 0.23496517539024353,
+ "learning_rate": 0.0006,
+ "loss": 3.510138988494873,
+ "step": 4210
+ },
+ {
+ "epoch": 58.489296636085626,
+ "grad_norm": 0.27041929960250854,
+ "learning_rate": 0.0006,
+ "loss": 3.527822971343994,
+ "step": 4211
+ },
+ {
+ "epoch": 58.50327653997379,
+ "grad_norm": 0.2594013512134552,
+ "learning_rate": 0.0006,
+ "loss": 3.5358262062072754,
+ "step": 4212
+ },
+ {
+ "epoch": 58.517256443861946,
+ "grad_norm": 0.23336786031723022,
+ "learning_rate": 0.0006,
+ "loss": 3.530122756958008,
+ "step": 4213
+ },
+ {
+ "epoch": 58.53123634775011,
+ "grad_norm": 0.21956655383110046,
+ "learning_rate": 0.0006,
+ "loss": 3.541039228439331,
+ "step": 4214
+ },
+ {
+ "epoch": 58.54521625163827,
+ "grad_norm": 0.22432804107666016,
+ "learning_rate": 0.0006,
+ "loss": 3.520948886871338,
+ "step": 4215
+ },
+ {
+ "epoch": 58.55919615552643,
+ "grad_norm": 0.21589893102645874,
+ "learning_rate": 0.0006,
+ "loss": 3.569808006286621,
+ "step": 4216
+ },
+ {
+ "epoch": 58.57317605941459,
+ "grad_norm": 0.20264557003974915,
+ "learning_rate": 0.0006,
+ "loss": 3.514918088912964,
+ "step": 4217
+ },
+ {
+ "epoch": 58.58715596330275,
+ "grad_norm": 0.20911480486392975,
+ "learning_rate": 0.0006,
+ "loss": 3.5340771675109863,
+ "step": 4218
+ },
+ {
+ "epoch": 58.60113586719091,
+ "grad_norm": 0.21068964898586273,
+ "learning_rate": 0.0006,
+ "loss": 3.5388903617858887,
+ "step": 4219
+ },
+ {
+ "epoch": 58.615115771079076,
+ "grad_norm": 0.19314789772033691,
+ "learning_rate": 0.0006,
+ "loss": 3.5405967235565186,
+ "step": 4220
+ },
+ {
+ "epoch": 58.62909567496723,
+ "grad_norm": 0.18347802758216858,
+ "learning_rate": 0.0006,
+ "loss": 3.5208020210266113,
+ "step": 4221
+ },
+ {
+ "epoch": 58.643075578855395,
+ "grad_norm": 0.2082843780517578,
+ "learning_rate": 0.0006,
+ "loss": 3.5454647541046143,
+ "step": 4222
+ },
+ {
+ "epoch": 58.65705548274356,
+ "grad_norm": 0.2049611210823059,
+ "learning_rate": 0.0006,
+ "loss": 3.529350996017456,
+ "step": 4223
+ },
+ {
+ "epoch": 58.671035386631715,
+ "grad_norm": 0.19259536266326904,
+ "learning_rate": 0.0006,
+ "loss": 3.5589945316314697,
+ "step": 4224
+ },
+ {
+ "epoch": 58.68501529051988,
+ "grad_norm": 0.19039863348007202,
+ "learning_rate": 0.0006,
+ "loss": 3.5593101978302,
+ "step": 4225
+ },
+ {
+ "epoch": 58.69899519440804,
+ "grad_norm": 0.21481311321258545,
+ "learning_rate": 0.0006,
+ "loss": 3.55385422706604,
+ "step": 4226
+ },
+ {
+ "epoch": 58.7129750982962,
+ "grad_norm": 0.2053634226322174,
+ "learning_rate": 0.0006,
+ "loss": 3.535224437713623,
+ "step": 4227
+ },
+ {
+ "epoch": 58.72695500218436,
+ "grad_norm": 0.21111956238746643,
+ "learning_rate": 0.0006,
+ "loss": 3.5208349227905273,
+ "step": 4228
+ },
+ {
+ "epoch": 58.74093490607252,
+ "grad_norm": 0.22069109976291656,
+ "learning_rate": 0.0006,
+ "loss": 3.5292487144470215,
+ "step": 4229
+ },
+ {
+ "epoch": 58.75491480996068,
+ "grad_norm": 0.22549185156822205,
+ "learning_rate": 0.0006,
+ "loss": 3.556830406188965,
+ "step": 4230
+ },
+ {
+ "epoch": 58.768894713848844,
+ "grad_norm": 0.22341859340667725,
+ "learning_rate": 0.0006,
+ "loss": 3.5573582649230957,
+ "step": 4231
+ },
+ {
+ "epoch": 58.782874617737,
+ "grad_norm": 0.20664502680301666,
+ "learning_rate": 0.0006,
+ "loss": 3.578657865524292,
+ "step": 4232
+ },
+ {
+ "epoch": 58.796854521625164,
+ "grad_norm": 0.19885236024856567,
+ "learning_rate": 0.0006,
+ "loss": 3.5604476928710938,
+ "step": 4233
+ },
+ {
+ "epoch": 58.81083442551333,
+ "grad_norm": 0.19446797668933868,
+ "learning_rate": 0.0006,
+ "loss": 3.5686912536621094,
+ "step": 4234
+ },
+ {
+ "epoch": 58.824814329401484,
+ "grad_norm": 0.20658083260059357,
+ "learning_rate": 0.0006,
+ "loss": 3.563167095184326,
+ "step": 4235
+ },
+ {
+ "epoch": 58.83879423328965,
+ "grad_norm": 0.21075408160686493,
+ "learning_rate": 0.0006,
+ "loss": 3.5597028732299805,
+ "step": 4236
+ },
+ {
+ "epoch": 58.8527741371778,
+ "grad_norm": 0.20652376115322113,
+ "learning_rate": 0.0006,
+ "loss": 3.5651087760925293,
+ "step": 4237
+ },
+ {
+ "epoch": 58.86675404106597,
+ "grad_norm": 0.2243892401456833,
+ "learning_rate": 0.0006,
+ "loss": 3.5442488193511963,
+ "step": 4238
+ },
+ {
+ "epoch": 58.88073394495413,
+ "grad_norm": 0.23486459255218506,
+ "learning_rate": 0.0006,
+ "loss": 3.545135974884033,
+ "step": 4239
+ },
+ {
+ "epoch": 58.89471384884229,
+ "grad_norm": 0.23100663721561432,
+ "learning_rate": 0.0006,
+ "loss": 3.57177734375,
+ "step": 4240
+ },
+ {
+ "epoch": 58.90869375273045,
+ "grad_norm": 0.2269909679889679,
+ "learning_rate": 0.0006,
+ "loss": 3.528768301010132,
+ "step": 4241
+ },
+ {
+ "epoch": 58.92267365661861,
+ "grad_norm": 0.20349252223968506,
+ "learning_rate": 0.0006,
+ "loss": 3.591031789779663,
+ "step": 4242
+ },
+ {
+ "epoch": 58.93665356050677,
+ "grad_norm": 0.21038702130317688,
+ "learning_rate": 0.0006,
+ "loss": 3.5696892738342285,
+ "step": 4243
+ },
+ {
+ "epoch": 58.95063346439493,
+ "grad_norm": 0.21356560289859772,
+ "learning_rate": 0.0006,
+ "loss": 3.5708963871002197,
+ "step": 4244
+ },
+ {
+ "epoch": 58.964613368283096,
+ "grad_norm": 0.20008863508701324,
+ "learning_rate": 0.0006,
+ "loss": 3.524749279022217,
+ "step": 4245
+ },
+ {
+ "epoch": 58.97859327217125,
+ "grad_norm": 0.20453840494155884,
+ "learning_rate": 0.0006,
+ "loss": 3.5677876472473145,
+ "step": 4246
+ },
+ {
+ "epoch": 58.992573176059416,
+ "grad_norm": 0.21549056470394135,
+ "learning_rate": 0.0006,
+ "loss": 3.550870418548584,
+ "step": 4247
+ },
+ {
+ "epoch": 59.0,
+ "grad_norm": 0.2592930793762207,
+ "learning_rate": 0.0006,
+ "loss": 3.550673484802246,
+ "step": 4248
+ },
+ {
+ "epoch": 59.0,
+ "eval_loss": 3.968780279159546,
+ "eval_runtime": 45.6246,
+ "eval_samples_per_second": 53.524,
+ "eval_steps_per_second": 3.353,
+ "step": 4248
+ },
+ {
+ "epoch": 59.01397990388816,
+ "grad_norm": 0.218043252825737,
+ "learning_rate": 0.0006,
+ "loss": 3.49605655670166,
+ "step": 4249
+ },
+ {
+ "epoch": 59.02795980777632,
+ "grad_norm": 0.25112417340278625,
+ "learning_rate": 0.0006,
+ "loss": 3.534919023513794,
+ "step": 4250
+ },
+ {
+ "epoch": 59.04193971166448,
+ "grad_norm": 0.2785079777240753,
+ "learning_rate": 0.0006,
+ "loss": 3.5425362586975098,
+ "step": 4251
+ },
+ {
+ "epoch": 59.05591961555265,
+ "grad_norm": 0.2667599618434906,
+ "learning_rate": 0.0006,
+ "loss": 3.4955453872680664,
+ "step": 4252
+ },
+ {
+ "epoch": 59.0698995194408,
+ "grad_norm": 0.24012432992458344,
+ "learning_rate": 0.0006,
+ "loss": 3.4949915409088135,
+ "step": 4253
+ },
+ {
+ "epoch": 59.083879423328966,
+ "grad_norm": 0.2502294182777405,
+ "learning_rate": 0.0006,
+ "loss": 3.5163769721984863,
+ "step": 4254
+ },
+ {
+ "epoch": 59.09785932721712,
+ "grad_norm": 0.28585609793663025,
+ "learning_rate": 0.0006,
+ "loss": 3.4852542877197266,
+ "step": 4255
+ },
+ {
+ "epoch": 59.111839231105286,
+ "grad_norm": 0.2815989553928375,
+ "learning_rate": 0.0006,
+ "loss": 3.4991462230682373,
+ "step": 4256
+ },
+ {
+ "epoch": 59.12581913499345,
+ "grad_norm": 0.22922837734222412,
+ "learning_rate": 0.0006,
+ "loss": 3.511322021484375,
+ "step": 4257
+ },
+ {
+ "epoch": 59.139799038881605,
+ "grad_norm": 0.24964241683483124,
+ "learning_rate": 0.0006,
+ "loss": 3.521056652069092,
+ "step": 4258
+ },
+ {
+ "epoch": 59.15377894276977,
+ "grad_norm": 0.27568385004997253,
+ "learning_rate": 0.0006,
+ "loss": 3.514004707336426,
+ "step": 4259
+ },
+ {
+ "epoch": 59.16775884665793,
+ "grad_norm": 0.2605166733264923,
+ "learning_rate": 0.0006,
+ "loss": 3.5132668018341064,
+ "step": 4260
+ },
+ {
+ "epoch": 59.18173875054609,
+ "grad_norm": 0.24248117208480835,
+ "learning_rate": 0.0006,
+ "loss": 3.5492095947265625,
+ "step": 4261
+ },
+ {
+ "epoch": 59.19571865443425,
+ "grad_norm": 0.26359522342681885,
+ "learning_rate": 0.0006,
+ "loss": 3.521390438079834,
+ "step": 4262
+ },
+ {
+ "epoch": 59.20969855832241,
+ "grad_norm": 0.262248694896698,
+ "learning_rate": 0.0006,
+ "loss": 3.556307315826416,
+ "step": 4263
+ },
+ {
+ "epoch": 59.22367846221057,
+ "grad_norm": 0.23514866828918457,
+ "learning_rate": 0.0006,
+ "loss": 3.4989941120147705,
+ "step": 4264
+ },
+ {
+ "epoch": 59.237658366098735,
+ "grad_norm": 0.22758382558822632,
+ "learning_rate": 0.0006,
+ "loss": 3.5307068824768066,
+ "step": 4265
+ },
+ {
+ "epoch": 59.25163826998689,
+ "grad_norm": 0.24037839472293854,
+ "learning_rate": 0.0006,
+ "loss": 3.495872974395752,
+ "step": 4266
+ },
+ {
+ "epoch": 59.265618173875055,
+ "grad_norm": 0.22763589024543762,
+ "learning_rate": 0.0006,
+ "loss": 3.54052472114563,
+ "step": 4267
+ },
+ {
+ "epoch": 59.27959807776322,
+ "grad_norm": 0.22400406002998352,
+ "learning_rate": 0.0006,
+ "loss": 3.498671054840088,
+ "step": 4268
+ },
+ {
+ "epoch": 59.293577981651374,
+ "grad_norm": 0.2326328009366989,
+ "learning_rate": 0.0006,
+ "loss": 3.559108257293701,
+ "step": 4269
+ },
+ {
+ "epoch": 59.30755788553954,
+ "grad_norm": 0.24426043033599854,
+ "learning_rate": 0.0006,
+ "loss": 3.5245609283447266,
+ "step": 4270
+ },
+ {
+ "epoch": 59.3215377894277,
+ "grad_norm": 0.2159317582845688,
+ "learning_rate": 0.0006,
+ "loss": 3.5189900398254395,
+ "step": 4271
+ },
+ {
+ "epoch": 59.33551769331586,
+ "grad_norm": 0.19148702919483185,
+ "learning_rate": 0.0006,
+ "loss": 3.548433303833008,
+ "step": 4272
+ },
+ {
+ "epoch": 59.34949759720402,
+ "grad_norm": 0.23349083960056305,
+ "learning_rate": 0.0006,
+ "loss": 3.5475196838378906,
+ "step": 4273
+ },
+ {
+ "epoch": 59.36347750109218,
+ "grad_norm": 0.24024079740047455,
+ "learning_rate": 0.0006,
+ "loss": 3.5172529220581055,
+ "step": 4274
+ },
+ {
+ "epoch": 59.37745740498034,
+ "grad_norm": 0.23772001266479492,
+ "learning_rate": 0.0006,
+ "loss": 3.5428695678710938,
+ "step": 4275
+ },
+ {
+ "epoch": 59.391437308868504,
+ "grad_norm": 0.21134959161281586,
+ "learning_rate": 0.0006,
+ "loss": 3.523099422454834,
+ "step": 4276
+ },
+ {
+ "epoch": 59.40541721275666,
+ "grad_norm": 0.20760025084018707,
+ "learning_rate": 0.0006,
+ "loss": 3.55435848236084,
+ "step": 4277
+ },
+ {
+ "epoch": 59.419397116644824,
+ "grad_norm": 0.21113243699073792,
+ "learning_rate": 0.0006,
+ "loss": 3.5355324745178223,
+ "step": 4278
+ },
+ {
+ "epoch": 59.43337702053299,
+ "grad_norm": 0.21604566276073456,
+ "learning_rate": 0.0006,
+ "loss": 3.5517663955688477,
+ "step": 4279
+ },
+ {
+ "epoch": 59.44735692442114,
+ "grad_norm": 0.19646669924259186,
+ "learning_rate": 0.0006,
+ "loss": 3.538435935974121,
+ "step": 4280
+ },
+ {
+ "epoch": 59.46133682830931,
+ "grad_norm": 0.20394550263881683,
+ "learning_rate": 0.0006,
+ "loss": 3.528444290161133,
+ "step": 4281
+ },
+ {
+ "epoch": 59.47531673219746,
+ "grad_norm": 0.24543620645999908,
+ "learning_rate": 0.0006,
+ "loss": 3.5355372428894043,
+ "step": 4282
+ },
+ {
+ "epoch": 59.489296636085626,
+ "grad_norm": 0.24048425257205963,
+ "learning_rate": 0.0006,
+ "loss": 3.521336078643799,
+ "step": 4283
+ },
+ {
+ "epoch": 59.50327653997379,
+ "grad_norm": 0.23630213737487793,
+ "learning_rate": 0.0006,
+ "loss": 3.556244373321533,
+ "step": 4284
+ },
+ {
+ "epoch": 59.517256443861946,
+ "grad_norm": 0.2791444659233093,
+ "learning_rate": 0.0006,
+ "loss": 3.5927138328552246,
+ "step": 4285
+ },
+ {
+ "epoch": 59.53123634775011,
+ "grad_norm": 0.30325770378112793,
+ "learning_rate": 0.0006,
+ "loss": 3.559296131134033,
+ "step": 4286
+ },
+ {
+ "epoch": 59.54521625163827,
+ "grad_norm": 0.2708670496940613,
+ "learning_rate": 0.0006,
+ "loss": 3.531050205230713,
+ "step": 4287
+ },
+ {
+ "epoch": 59.55919615552643,
+ "grad_norm": 0.23795515298843384,
+ "learning_rate": 0.0006,
+ "loss": 3.5365982055664062,
+ "step": 4288
+ },
+ {
+ "epoch": 59.57317605941459,
+ "grad_norm": 0.20949627459049225,
+ "learning_rate": 0.0006,
+ "loss": 3.5591273307800293,
+ "step": 4289
+ },
+ {
+ "epoch": 59.58715596330275,
+ "grad_norm": 0.21885769069194794,
+ "learning_rate": 0.0006,
+ "loss": 3.4965288639068604,
+ "step": 4290
+ },
+ {
+ "epoch": 59.60113586719091,
+ "grad_norm": 0.22365590929985046,
+ "learning_rate": 0.0006,
+ "loss": 3.538118362426758,
+ "step": 4291
+ },
+ {
+ "epoch": 59.615115771079076,
+ "grad_norm": 0.23178881406784058,
+ "learning_rate": 0.0006,
+ "loss": 3.515933036804199,
+ "step": 4292
+ },
+ {
+ "epoch": 59.62909567496723,
+ "grad_norm": 0.21539060771465302,
+ "learning_rate": 0.0006,
+ "loss": 3.54185152053833,
+ "step": 4293
+ },
+ {
+ "epoch": 59.643075578855395,
+ "grad_norm": 0.22033682465553284,
+ "learning_rate": 0.0006,
+ "loss": 3.526728630065918,
+ "step": 4294
+ },
+ {
+ "epoch": 59.65705548274356,
+ "grad_norm": 0.23003938794136047,
+ "learning_rate": 0.0006,
+ "loss": 3.555710792541504,
+ "step": 4295
+ },
+ {
+ "epoch": 59.671035386631715,
+ "grad_norm": 0.22887346148490906,
+ "learning_rate": 0.0006,
+ "loss": 3.580883502960205,
+ "step": 4296
+ },
+ {
+ "epoch": 59.68501529051988,
+ "grad_norm": 0.2147892713546753,
+ "learning_rate": 0.0006,
+ "loss": 3.5318822860717773,
+ "step": 4297
+ },
+ {
+ "epoch": 59.69899519440804,
+ "grad_norm": 0.22063598036766052,
+ "learning_rate": 0.0006,
+ "loss": 3.5179357528686523,
+ "step": 4298
+ },
+ {
+ "epoch": 59.7129750982962,
+ "grad_norm": 0.22569656372070312,
+ "learning_rate": 0.0006,
+ "loss": 3.583181381225586,
+ "step": 4299
+ },
+ {
+ "epoch": 59.72695500218436,
+ "grad_norm": 0.2252701222896576,
+ "learning_rate": 0.0006,
+ "loss": 3.5780375003814697,
+ "step": 4300
+ },
+ {
+ "epoch": 59.74093490607252,
+ "grad_norm": 0.2288130521774292,
+ "learning_rate": 0.0006,
+ "loss": 3.570399284362793,
+ "step": 4301
+ },
+ {
+ "epoch": 59.75491480996068,
+ "grad_norm": 0.21879231929779053,
+ "learning_rate": 0.0006,
+ "loss": 3.540292739868164,
+ "step": 4302
+ },
+ {
+ "epoch": 59.768894713848844,
+ "grad_norm": 0.20675964653491974,
+ "learning_rate": 0.0006,
+ "loss": 3.532649040222168,
+ "step": 4303
+ },
+ {
+ "epoch": 59.782874617737,
+ "grad_norm": 0.21810708940029144,
+ "learning_rate": 0.0006,
+ "loss": 3.5156657695770264,
+ "step": 4304
+ },
+ {
+ "epoch": 59.796854521625164,
+ "grad_norm": 0.22701260447502136,
+ "learning_rate": 0.0006,
+ "loss": 3.5535266399383545,
+ "step": 4305
+ },
+ {
+ "epoch": 59.81083442551333,
+ "grad_norm": 0.23433080315589905,
+ "learning_rate": 0.0006,
+ "loss": 3.5280754566192627,
+ "step": 4306
+ },
+ {
+ "epoch": 59.824814329401484,
+ "grad_norm": 0.2254341095685959,
+ "learning_rate": 0.0006,
+ "loss": 3.534045696258545,
+ "step": 4307
+ },
+ {
+ "epoch": 59.83879423328965,
+ "grad_norm": 0.21756123006343842,
+ "learning_rate": 0.0006,
+ "loss": 3.5621533393859863,
+ "step": 4308
+ },
+ {
+ "epoch": 59.8527741371778,
+ "grad_norm": 0.19731850922107697,
+ "learning_rate": 0.0006,
+ "loss": 3.536633253097534,
+ "step": 4309
+ },
+ {
+ "epoch": 59.86675404106597,
+ "grad_norm": 0.2260110229253769,
+ "learning_rate": 0.0006,
+ "loss": 3.5721538066864014,
+ "step": 4310
+ },
+ {
+ "epoch": 59.88073394495413,
+ "grad_norm": 0.22728438675403595,
+ "learning_rate": 0.0006,
+ "loss": 3.5576961040496826,
+ "step": 4311
+ },
+ {
+ "epoch": 59.89471384884229,
+ "grad_norm": 0.20675411820411682,
+ "learning_rate": 0.0006,
+ "loss": 3.5070700645446777,
+ "step": 4312
+ },
+ {
+ "epoch": 59.90869375273045,
+ "grad_norm": 0.22258996963500977,
+ "learning_rate": 0.0006,
+ "loss": 3.564357280731201,
+ "step": 4313
+ },
+ {
+ "epoch": 59.92267365661861,
+ "grad_norm": 0.2429998815059662,
+ "learning_rate": 0.0006,
+ "loss": 3.519744873046875,
+ "step": 4314
+ },
+ {
+ "epoch": 59.93665356050677,
+ "grad_norm": 0.2394791841506958,
+ "learning_rate": 0.0006,
+ "loss": 3.533292055130005,
+ "step": 4315
+ },
+ {
+ "epoch": 59.95063346439493,
+ "grad_norm": 0.20659418404102325,
+ "learning_rate": 0.0006,
+ "loss": 3.5475940704345703,
+ "step": 4316
+ },
+ {
+ "epoch": 59.964613368283096,
+ "grad_norm": 0.19679132103919983,
+ "learning_rate": 0.0006,
+ "loss": 3.5794930458068848,
+ "step": 4317
+ },
+ {
+ "epoch": 59.97859327217125,
+ "grad_norm": 0.2133002132177353,
+ "learning_rate": 0.0006,
+ "loss": 3.5506505966186523,
+ "step": 4318
+ },
+ {
+ "epoch": 59.992573176059416,
+ "grad_norm": 0.22383661568164825,
+ "learning_rate": 0.0006,
+ "loss": 3.547708511352539,
+ "step": 4319
+ },
+ {
+ "epoch": 60.0,
+ "grad_norm": 0.25744178891181946,
+ "learning_rate": 0.0006,
+ "loss": 3.5519227981567383,
+ "step": 4320
+ },
+ {
+ "epoch": 60.0,
+ "eval_loss": 3.9816012382507324,
+ "eval_runtime": 46.3931,
+ "eval_samples_per_second": 52.637,
+ "eval_steps_per_second": 3.298,
+ "step": 4320
+ },
+ {
+ "epoch": 60.01397990388816,
+ "grad_norm": 0.2202005684375763,
+ "learning_rate": 0.0006,
+ "loss": 3.51010799407959,
+ "step": 4321
+ },
+ {
+ "epoch": 60.02795980777632,
+ "grad_norm": 0.24285688996315002,
+ "learning_rate": 0.0006,
+ "loss": 3.519137382507324,
+ "step": 4322
+ },
+ {
+ "epoch": 60.04193971166448,
+ "grad_norm": 0.2700578570365906,
+ "learning_rate": 0.0006,
+ "loss": 3.523392915725708,
+ "step": 4323
+ },
+ {
+ "epoch": 60.05591961555265,
+ "grad_norm": 0.30088669061660767,
+ "learning_rate": 0.0006,
+ "loss": 3.48724627494812,
+ "step": 4324
+ },
+ {
+ "epoch": 60.0698995194408,
+ "grad_norm": 0.30426669120788574,
+ "learning_rate": 0.0006,
+ "loss": 3.479025363922119,
+ "step": 4325
+ },
+ {
+ "epoch": 60.083879423328966,
+ "grad_norm": 0.2718220055103302,
+ "learning_rate": 0.0006,
+ "loss": 3.4923276901245117,
+ "step": 4326
+ },
+ {
+ "epoch": 60.09785932721712,
+ "grad_norm": 0.23625287413597107,
+ "learning_rate": 0.0006,
+ "loss": 3.5152812004089355,
+ "step": 4327
+ },
+ {
+ "epoch": 60.111839231105286,
+ "grad_norm": 0.23336869478225708,
+ "learning_rate": 0.0006,
+ "loss": 3.512453079223633,
+ "step": 4328
+ },
+ {
+ "epoch": 60.12581913499345,
+ "grad_norm": 0.24780215322971344,
+ "learning_rate": 0.0006,
+ "loss": 3.505812168121338,
+ "step": 4329
+ },
+ {
+ "epoch": 60.139799038881605,
+ "grad_norm": 0.25600194931030273,
+ "learning_rate": 0.0006,
+ "loss": 3.5281314849853516,
+ "step": 4330
+ },
+ {
+ "epoch": 60.15377894276977,
+ "grad_norm": 0.2458304911851883,
+ "learning_rate": 0.0006,
+ "loss": 3.4932949542999268,
+ "step": 4331
+ },
+ {
+ "epoch": 60.16775884665793,
+ "grad_norm": 0.2246888130903244,
+ "learning_rate": 0.0006,
+ "loss": 3.5295495986938477,
+ "step": 4332
+ },
+ {
+ "epoch": 60.18173875054609,
+ "grad_norm": 0.23762951791286469,
+ "learning_rate": 0.0006,
+ "loss": 3.4938201904296875,
+ "step": 4333
+ },
+ {
+ "epoch": 60.19571865443425,
+ "grad_norm": 0.24483945965766907,
+ "learning_rate": 0.0006,
+ "loss": 3.544774055480957,
+ "step": 4334
+ },
+ {
+ "epoch": 60.20969855832241,
+ "grad_norm": 0.24154368042945862,
+ "learning_rate": 0.0006,
+ "loss": 3.5352816581726074,
+ "step": 4335
+ },
+ {
+ "epoch": 60.22367846221057,
+ "grad_norm": 0.22929225862026215,
+ "learning_rate": 0.0006,
+ "loss": 3.5546953678131104,
+ "step": 4336
+ },
+ {
+ "epoch": 60.237658366098735,
+ "grad_norm": 0.21391373872756958,
+ "learning_rate": 0.0006,
+ "loss": 3.537647247314453,
+ "step": 4337
+ },
+ {
+ "epoch": 60.25163826998689,
+ "grad_norm": 0.20410357415676117,
+ "learning_rate": 0.0006,
+ "loss": 3.535831928253174,
+ "step": 4338
+ },
+ {
+ "epoch": 60.265618173875055,
+ "grad_norm": 0.2070329487323761,
+ "learning_rate": 0.0006,
+ "loss": 3.5234389305114746,
+ "step": 4339
+ },
+ {
+ "epoch": 60.27959807776322,
+ "grad_norm": 0.20540225505828857,
+ "learning_rate": 0.0006,
+ "loss": 3.557478427886963,
+ "step": 4340
+ },
+ {
+ "epoch": 60.293577981651374,
+ "grad_norm": 0.2124919891357422,
+ "learning_rate": 0.0006,
+ "loss": 3.532726764678955,
+ "step": 4341
+ },
+ {
+ "epoch": 60.30755788553954,
+ "grad_norm": 0.22207678854465485,
+ "learning_rate": 0.0006,
+ "loss": 3.5314202308654785,
+ "step": 4342
+ },
+ {
+ "epoch": 60.3215377894277,
+ "grad_norm": 0.2137281745672226,
+ "learning_rate": 0.0006,
+ "loss": 3.5491206645965576,
+ "step": 4343
+ },
+ {
+ "epoch": 60.33551769331586,
+ "grad_norm": 0.20728953182697296,
+ "learning_rate": 0.0006,
+ "loss": 3.5111031532287598,
+ "step": 4344
+ },
+ {
+ "epoch": 60.34949759720402,
+ "grad_norm": 0.22547020018100739,
+ "learning_rate": 0.0006,
+ "loss": 3.5311098098754883,
+ "step": 4345
+ },
+ {
+ "epoch": 60.36347750109218,
+ "grad_norm": 0.23352888226509094,
+ "learning_rate": 0.0006,
+ "loss": 3.5200939178466797,
+ "step": 4346
+ },
+ {
+ "epoch": 60.37745740498034,
+ "grad_norm": 0.21329060196876526,
+ "learning_rate": 0.0006,
+ "loss": 3.508589744567871,
+ "step": 4347
+ },
+ {
+ "epoch": 60.391437308868504,
+ "grad_norm": 0.1904045194387436,
+ "learning_rate": 0.0006,
+ "loss": 3.4850475788116455,
+ "step": 4348
+ },
+ {
+ "epoch": 60.40541721275666,
+ "grad_norm": 0.20586109161376953,
+ "learning_rate": 0.0006,
+ "loss": 3.5503551959991455,
+ "step": 4349
+ },
+ {
+ "epoch": 60.419397116644824,
+ "grad_norm": 0.21311818063259125,
+ "learning_rate": 0.0006,
+ "loss": 3.5243923664093018,
+ "step": 4350
+ },
+ {
+ "epoch": 60.43337702053299,
+ "grad_norm": 0.21479184925556183,
+ "learning_rate": 0.0006,
+ "loss": 3.553647041320801,
+ "step": 4351
+ },
+ {
+ "epoch": 60.44735692442114,
+ "grad_norm": 0.19994449615478516,
+ "learning_rate": 0.0006,
+ "loss": 3.5558884143829346,
+ "step": 4352
+ },
+ {
+ "epoch": 60.46133682830931,
+ "grad_norm": 0.21455694735050201,
+ "learning_rate": 0.0006,
+ "loss": 3.5186543464660645,
+ "step": 4353
+ },
+ {
+ "epoch": 60.47531673219746,
+ "grad_norm": 0.21904151141643524,
+ "learning_rate": 0.0006,
+ "loss": 3.526367425918579,
+ "step": 4354
+ },
+ {
+ "epoch": 60.489296636085626,
+ "grad_norm": 0.1908986121416092,
+ "learning_rate": 0.0006,
+ "loss": 3.541072368621826,
+ "step": 4355
+ },
+ {
+ "epoch": 60.50327653997379,
+ "grad_norm": 0.20290519297122955,
+ "learning_rate": 0.0006,
+ "loss": 3.530333995819092,
+ "step": 4356
+ },
+ {
+ "epoch": 60.517256443861946,
+ "grad_norm": 0.2318771779537201,
+ "learning_rate": 0.0006,
+ "loss": 3.5260486602783203,
+ "step": 4357
+ },
+ {
+ "epoch": 60.53123634775011,
+ "grad_norm": 0.25559669733047485,
+ "learning_rate": 0.0006,
+ "loss": 3.56851863861084,
+ "step": 4358
+ },
+ {
+ "epoch": 60.54521625163827,
+ "grad_norm": 0.2529429793357849,
+ "learning_rate": 0.0006,
+ "loss": 3.5519490242004395,
+ "step": 4359
+ },
+ {
+ "epoch": 60.55919615552643,
+ "grad_norm": 0.22857248783111572,
+ "learning_rate": 0.0006,
+ "loss": 3.5556063652038574,
+ "step": 4360
+ },
+ {
+ "epoch": 60.57317605941459,
+ "grad_norm": 0.21628573536872864,
+ "learning_rate": 0.0006,
+ "loss": 3.5321288108825684,
+ "step": 4361
+ },
+ {
+ "epoch": 60.58715596330275,
+ "grad_norm": 0.19497910141944885,
+ "learning_rate": 0.0006,
+ "loss": 3.5480406284332275,
+ "step": 4362
+ },
+ {
+ "epoch": 60.60113586719091,
+ "grad_norm": 0.204348623752594,
+ "learning_rate": 0.0006,
+ "loss": 3.522806167602539,
+ "step": 4363
+ },
+ {
+ "epoch": 60.615115771079076,
+ "grad_norm": 0.23013663291931152,
+ "learning_rate": 0.0006,
+ "loss": 3.512876033782959,
+ "step": 4364
+ },
+ {
+ "epoch": 60.62909567496723,
+ "grad_norm": 0.22948725521564484,
+ "learning_rate": 0.0006,
+ "loss": 3.54276704788208,
+ "step": 4365
+ },
+ {
+ "epoch": 60.643075578855395,
+ "grad_norm": 0.20528492331504822,
+ "learning_rate": 0.0006,
+ "loss": 3.5592503547668457,
+ "step": 4366
+ },
+ {
+ "epoch": 60.65705548274356,
+ "grad_norm": 0.214582160115242,
+ "learning_rate": 0.0006,
+ "loss": 3.5168166160583496,
+ "step": 4367
+ },
+ {
+ "epoch": 60.671035386631715,
+ "grad_norm": 0.18893493711948395,
+ "learning_rate": 0.0006,
+ "loss": 3.51012921333313,
+ "step": 4368
+ },
+ {
+ "epoch": 60.68501529051988,
+ "grad_norm": 0.19301992654800415,
+ "learning_rate": 0.0006,
+ "loss": 3.5396199226379395,
+ "step": 4369
+ },
+ {
+ "epoch": 60.69899519440804,
+ "grad_norm": 0.22339801490306854,
+ "learning_rate": 0.0006,
+ "loss": 3.5463967323303223,
+ "step": 4370
+ },
+ {
+ "epoch": 60.7129750982962,
+ "grad_norm": 0.19028180837631226,
+ "learning_rate": 0.0006,
+ "loss": 3.534419536590576,
+ "step": 4371
+ },
+ {
+ "epoch": 60.72695500218436,
+ "grad_norm": 0.2078639566898346,
+ "learning_rate": 0.0006,
+ "loss": 3.5345680713653564,
+ "step": 4372
+ },
+ {
+ "epoch": 60.74093490607252,
+ "grad_norm": 0.24292199313640594,
+ "learning_rate": 0.0006,
+ "loss": 3.5291242599487305,
+ "step": 4373
+ },
+ {
+ "epoch": 60.75491480996068,
+ "grad_norm": 0.25118497014045715,
+ "learning_rate": 0.0006,
+ "loss": 3.5362191200256348,
+ "step": 4374
+ },
+ {
+ "epoch": 60.768894713848844,
+ "grad_norm": 0.24816395342350006,
+ "learning_rate": 0.0006,
+ "loss": 3.539637804031372,
+ "step": 4375
+ },
+ {
+ "epoch": 60.782874617737,
+ "grad_norm": 0.23654010891914368,
+ "learning_rate": 0.0006,
+ "loss": 3.482605457305908,
+ "step": 4376
+ },
+ {
+ "epoch": 60.796854521625164,
+ "grad_norm": 0.21593770384788513,
+ "learning_rate": 0.0006,
+ "loss": 3.550279140472412,
+ "step": 4377
+ },
+ {
+ "epoch": 60.81083442551333,
+ "grad_norm": 0.21346014738082886,
+ "learning_rate": 0.0006,
+ "loss": 3.541086196899414,
+ "step": 4378
+ },
+ {
+ "epoch": 60.824814329401484,
+ "grad_norm": 0.2284841537475586,
+ "learning_rate": 0.0006,
+ "loss": 3.544254779815674,
+ "step": 4379
+ },
+ {
+ "epoch": 60.83879423328965,
+ "grad_norm": 0.23353151977062225,
+ "learning_rate": 0.0006,
+ "loss": 3.5606589317321777,
+ "step": 4380
+ },
+ {
+ "epoch": 60.8527741371778,
+ "grad_norm": 0.2201574146747589,
+ "learning_rate": 0.0006,
+ "loss": 3.524120807647705,
+ "step": 4381
+ },
+ {
+ "epoch": 60.86675404106597,
+ "grad_norm": 0.2277211993932724,
+ "learning_rate": 0.0006,
+ "loss": 3.553539276123047,
+ "step": 4382
+ },
+ {
+ "epoch": 60.88073394495413,
+ "grad_norm": 0.2282724678516388,
+ "learning_rate": 0.0006,
+ "loss": 3.5247130393981934,
+ "step": 4383
+ },
+ {
+ "epoch": 60.89471384884229,
+ "grad_norm": 0.20859065651893616,
+ "learning_rate": 0.0006,
+ "loss": 3.5654680728912354,
+ "step": 4384
+ },
+ {
+ "epoch": 60.90869375273045,
+ "grad_norm": 0.1995432823896408,
+ "learning_rate": 0.0006,
+ "loss": 3.5091423988342285,
+ "step": 4385
+ },
+ {
+ "epoch": 60.92267365661861,
+ "grad_norm": 0.19769565761089325,
+ "learning_rate": 0.0006,
+ "loss": 3.5375986099243164,
+ "step": 4386
+ },
+ {
+ "epoch": 60.93665356050677,
+ "grad_norm": 0.21246176958084106,
+ "learning_rate": 0.0006,
+ "loss": 3.570774793624878,
+ "step": 4387
+ },
+ {
+ "epoch": 60.95063346439493,
+ "grad_norm": 0.2212657630443573,
+ "learning_rate": 0.0006,
+ "loss": 3.5192928314208984,
+ "step": 4388
+ },
+ {
+ "epoch": 60.964613368283096,
+ "grad_norm": 0.2258632481098175,
+ "learning_rate": 0.0006,
+ "loss": 3.5356457233428955,
+ "step": 4389
+ },
+ {
+ "epoch": 60.97859327217125,
+ "grad_norm": 0.1998971700668335,
+ "learning_rate": 0.0006,
+ "loss": 3.52758526802063,
+ "step": 4390
+ },
+ {
+ "epoch": 60.992573176059416,
+ "grad_norm": 0.1932399868965149,
+ "learning_rate": 0.0006,
+ "loss": 3.562718391418457,
+ "step": 4391
+ },
+ {
+ "epoch": 61.0,
+ "grad_norm": 0.24292197823524475,
+ "learning_rate": 0.0006,
+ "loss": 3.550189971923828,
+ "step": 4392
+ },
+ {
+ "epoch": 61.0,
+ "eval_loss": 3.974423408508301,
+ "eval_runtime": 45.8822,
+ "eval_samples_per_second": 53.223,
+ "eval_steps_per_second": 3.335,
+ "step": 4392
+ },
+ {
+ "epoch": 61.01397990388816,
+ "grad_norm": 0.2216092199087143,
+ "learning_rate": 0.0006,
+ "loss": 3.51747989654541,
+ "step": 4393
+ },
+ {
+ "epoch": 61.02795980777632,
+ "grad_norm": 0.23488417267799377,
+ "learning_rate": 0.0006,
+ "loss": 3.529064178466797,
+ "step": 4394
+ },
+ {
+ "epoch": 61.04193971166448,
+ "grad_norm": 0.2805800437927246,
+ "learning_rate": 0.0006,
+ "loss": 3.4868035316467285,
+ "step": 4395
+ },
+ {
+ "epoch": 61.05591961555265,
+ "grad_norm": 0.32623469829559326,
+ "learning_rate": 0.0006,
+ "loss": 3.5209708213806152,
+ "step": 4396
+ },
+ {
+ "epoch": 61.0698995194408,
+ "grad_norm": 0.2645402252674103,
+ "learning_rate": 0.0006,
+ "loss": 3.524512767791748,
+ "step": 4397
+ },
+ {
+ "epoch": 61.083879423328966,
+ "grad_norm": 0.21118173003196716,
+ "learning_rate": 0.0006,
+ "loss": 3.5167856216430664,
+ "step": 4398
+ },
+ {
+ "epoch": 61.09785932721712,
+ "grad_norm": 0.28649622201919556,
+ "learning_rate": 0.0006,
+ "loss": 3.5122973918914795,
+ "step": 4399
+ },
+ {
+ "epoch": 61.111839231105286,
+ "grad_norm": 0.39095914363861084,
+ "learning_rate": 0.0006,
+ "loss": 3.481421947479248,
+ "step": 4400
+ },
+ {
+ "epoch": 61.12581913499345,
+ "grad_norm": 0.4013976454734802,
+ "learning_rate": 0.0006,
+ "loss": 3.4859061241149902,
+ "step": 4401
+ },
+ {
+ "epoch": 61.139799038881605,
+ "grad_norm": 0.30067047476768494,
+ "learning_rate": 0.0006,
+ "loss": 3.524209976196289,
+ "step": 4402
+ },
+ {
+ "epoch": 61.15377894276977,
+ "grad_norm": 0.2086855173110962,
+ "learning_rate": 0.0006,
+ "loss": 3.4974379539489746,
+ "step": 4403
+ },
+ {
+ "epoch": 61.16775884665793,
+ "grad_norm": 0.25443482398986816,
+ "learning_rate": 0.0006,
+ "loss": 3.517038345336914,
+ "step": 4404
+ },
+ {
+ "epoch": 61.18173875054609,
+ "grad_norm": 0.27545589208602905,
+ "learning_rate": 0.0006,
+ "loss": 3.5075795650482178,
+ "step": 4405
+ },
+ {
+ "epoch": 61.19571865443425,
+ "grad_norm": 0.269279420375824,
+ "learning_rate": 0.0006,
+ "loss": 3.512235641479492,
+ "step": 4406
+ },
+ {
+ "epoch": 61.20969855832241,
+ "grad_norm": 0.24606923758983612,
+ "learning_rate": 0.0006,
+ "loss": 3.5362367630004883,
+ "step": 4407
+ },
+ {
+ "epoch": 61.22367846221057,
+ "grad_norm": 0.23358067870140076,
+ "learning_rate": 0.0006,
+ "loss": 3.5256686210632324,
+ "step": 4408
+ },
+ {
+ "epoch": 61.237658366098735,
+ "grad_norm": 0.2528085708618164,
+ "learning_rate": 0.0006,
+ "loss": 3.504239559173584,
+ "step": 4409
+ },
+ {
+ "epoch": 61.25163826998689,
+ "grad_norm": 0.28145745396614075,
+ "learning_rate": 0.0006,
+ "loss": 3.4862139225006104,
+ "step": 4410
+ },
+ {
+ "epoch": 61.265618173875055,
+ "grad_norm": 0.26570039987564087,
+ "learning_rate": 0.0006,
+ "loss": 3.5138425827026367,
+ "step": 4411
+ },
+ {
+ "epoch": 61.27959807776322,
+ "grad_norm": 0.2391415685415268,
+ "learning_rate": 0.0006,
+ "loss": 3.537569999694824,
+ "step": 4412
+ },
+ {
+ "epoch": 61.293577981651374,
+ "grad_norm": 0.22194577753543854,
+ "learning_rate": 0.0006,
+ "loss": 3.5367543697357178,
+ "step": 4413
+ },
+ {
+ "epoch": 61.30755788553954,
+ "grad_norm": 0.2388865202665329,
+ "learning_rate": 0.0006,
+ "loss": 3.533341407775879,
+ "step": 4414
+ },
+ {
+ "epoch": 61.3215377894277,
+ "grad_norm": 0.2666625380516052,
+ "learning_rate": 0.0006,
+ "loss": 3.501162528991699,
+ "step": 4415
+ },
+ {
+ "epoch": 61.33551769331586,
+ "grad_norm": 0.25569409132003784,
+ "learning_rate": 0.0006,
+ "loss": 3.529283046722412,
+ "step": 4416
+ },
+ {
+ "epoch": 61.34949759720402,
+ "grad_norm": 0.24683351814746857,
+ "learning_rate": 0.0006,
+ "loss": 3.508152484893799,
+ "step": 4417
+ },
+ {
+ "epoch": 61.36347750109218,
+ "grad_norm": 0.22290605306625366,
+ "learning_rate": 0.0006,
+ "loss": 3.5309581756591797,
+ "step": 4418
+ },
+ {
+ "epoch": 61.37745740498034,
+ "grad_norm": 0.2174215167760849,
+ "learning_rate": 0.0006,
+ "loss": 3.508796453475952,
+ "step": 4419
+ },
+ {
+ "epoch": 61.391437308868504,
+ "grad_norm": 0.23006199300289154,
+ "learning_rate": 0.0006,
+ "loss": 3.5497584342956543,
+ "step": 4420
+ },
+ {
+ "epoch": 61.40541721275666,
+ "grad_norm": 0.2311345487833023,
+ "learning_rate": 0.0006,
+ "loss": 3.5524582862854004,
+ "step": 4421
+ },
+ {
+ "epoch": 61.419397116644824,
+ "grad_norm": 0.2296203076839447,
+ "learning_rate": 0.0006,
+ "loss": 3.5146689414978027,
+ "step": 4422
+ },
+ {
+ "epoch": 61.43337702053299,
+ "grad_norm": 0.24848754703998566,
+ "learning_rate": 0.0006,
+ "loss": 3.489335060119629,
+ "step": 4423
+ },
+ {
+ "epoch": 61.44735692442114,
+ "grad_norm": 0.23717737197875977,
+ "learning_rate": 0.0006,
+ "loss": 3.4982404708862305,
+ "step": 4424
+ },
+ {
+ "epoch": 61.46133682830931,
+ "grad_norm": 0.21826806664466858,
+ "learning_rate": 0.0006,
+ "loss": 3.5134825706481934,
+ "step": 4425
+ },
+ {
+ "epoch": 61.47531673219746,
+ "grad_norm": 0.22878992557525635,
+ "learning_rate": 0.0006,
+ "loss": 3.512604236602783,
+ "step": 4426
+ },
+ {
+ "epoch": 61.489296636085626,
+ "grad_norm": 0.21184465289115906,
+ "learning_rate": 0.0006,
+ "loss": 3.5314245223999023,
+ "step": 4427
+ },
+ {
+ "epoch": 61.50327653997379,
+ "grad_norm": 0.2129429429769516,
+ "learning_rate": 0.0006,
+ "loss": 3.51242733001709,
+ "step": 4428
+ },
+ {
+ "epoch": 61.517256443861946,
+ "grad_norm": 0.21566109359264374,
+ "learning_rate": 0.0006,
+ "loss": 3.5287160873413086,
+ "step": 4429
+ },
+ {
+ "epoch": 61.53123634775011,
+ "grad_norm": 0.2010934203863144,
+ "learning_rate": 0.0006,
+ "loss": 3.5250844955444336,
+ "step": 4430
+ },
+ {
+ "epoch": 61.54521625163827,
+ "grad_norm": 0.1979563683271408,
+ "learning_rate": 0.0006,
+ "loss": 3.553415536880493,
+ "step": 4431
+ },
+ {
+ "epoch": 61.55919615552643,
+ "grad_norm": 0.19513480365276337,
+ "learning_rate": 0.0006,
+ "loss": 3.500551223754883,
+ "step": 4432
+ },
+ {
+ "epoch": 61.57317605941459,
+ "grad_norm": 0.19601108133792877,
+ "learning_rate": 0.0006,
+ "loss": 3.532161235809326,
+ "step": 4433
+ },
+ {
+ "epoch": 61.58715596330275,
+ "grad_norm": 0.2054651528596878,
+ "learning_rate": 0.0006,
+ "loss": 3.5360732078552246,
+ "step": 4434
+ },
+ {
+ "epoch": 61.60113586719091,
+ "grad_norm": 0.2096887230873108,
+ "learning_rate": 0.0006,
+ "loss": 3.522620916366577,
+ "step": 4435
+ },
+ {
+ "epoch": 61.615115771079076,
+ "grad_norm": 0.19664394855499268,
+ "learning_rate": 0.0006,
+ "loss": 3.5298569202423096,
+ "step": 4436
+ },
+ {
+ "epoch": 61.62909567496723,
+ "grad_norm": 0.20641925930976868,
+ "learning_rate": 0.0006,
+ "loss": 3.521233320236206,
+ "step": 4437
+ },
+ {
+ "epoch": 61.643075578855395,
+ "grad_norm": 0.2013241946697235,
+ "learning_rate": 0.0006,
+ "loss": 3.536212682723999,
+ "step": 4438
+ },
+ {
+ "epoch": 61.65705548274356,
+ "grad_norm": 0.19561146199703217,
+ "learning_rate": 0.0006,
+ "loss": 3.569584846496582,
+ "step": 4439
+ },
+ {
+ "epoch": 61.671035386631715,
+ "grad_norm": 0.2281758189201355,
+ "learning_rate": 0.0006,
+ "loss": 3.5208396911621094,
+ "step": 4440
+ },
+ {
+ "epoch": 61.68501529051988,
+ "grad_norm": 0.2387618124485016,
+ "learning_rate": 0.0006,
+ "loss": 3.5338330268859863,
+ "step": 4441
+ },
+ {
+ "epoch": 61.69899519440804,
+ "grad_norm": 0.23753441870212555,
+ "learning_rate": 0.0006,
+ "loss": 3.5454416275024414,
+ "step": 4442
+ },
+ {
+ "epoch": 61.7129750982962,
+ "grad_norm": 0.2477191686630249,
+ "learning_rate": 0.0006,
+ "loss": 3.5409836769104004,
+ "step": 4443
+ },
+ {
+ "epoch": 61.72695500218436,
+ "grad_norm": 0.25156062841415405,
+ "learning_rate": 0.0006,
+ "loss": 3.5135607719421387,
+ "step": 4444
+ },
+ {
+ "epoch": 61.74093490607252,
+ "grad_norm": 0.21422065794467926,
+ "learning_rate": 0.0006,
+ "loss": 3.5514771938323975,
+ "step": 4445
+ },
+ {
+ "epoch": 61.75491480996068,
+ "grad_norm": 0.2103811502456665,
+ "learning_rate": 0.0006,
+ "loss": 3.544037103652954,
+ "step": 4446
+ },
+ {
+ "epoch": 61.768894713848844,
+ "grad_norm": 0.21455387771129608,
+ "learning_rate": 0.0006,
+ "loss": 3.5526280403137207,
+ "step": 4447
+ },
+ {
+ "epoch": 61.782874617737,
+ "grad_norm": 0.22101432085037231,
+ "learning_rate": 0.0006,
+ "loss": 3.510197639465332,
+ "step": 4448
+ },
+ {
+ "epoch": 61.796854521625164,
+ "grad_norm": 0.2093520164489746,
+ "learning_rate": 0.0006,
+ "loss": 3.52504301071167,
+ "step": 4449
+ },
+ {
+ "epoch": 61.81083442551333,
+ "grad_norm": 0.2224605530500412,
+ "learning_rate": 0.0006,
+ "loss": 3.5590806007385254,
+ "step": 4450
+ },
+ {
+ "epoch": 61.824814329401484,
+ "grad_norm": 0.22242501378059387,
+ "learning_rate": 0.0006,
+ "loss": 3.5409610271453857,
+ "step": 4451
+ },
+ {
+ "epoch": 61.83879423328965,
+ "grad_norm": 0.22488343715667725,
+ "learning_rate": 0.0006,
+ "loss": 3.537534236907959,
+ "step": 4452
+ },
+ {
+ "epoch": 61.8527741371778,
+ "grad_norm": 0.23510107398033142,
+ "learning_rate": 0.0006,
+ "loss": 3.5561342239379883,
+ "step": 4453
+ },
+ {
+ "epoch": 61.86675404106597,
+ "grad_norm": 0.237285315990448,
+ "learning_rate": 0.0006,
+ "loss": 3.539592742919922,
+ "step": 4454
+ },
+ {
+ "epoch": 61.88073394495413,
+ "grad_norm": 0.21573765575885773,
+ "learning_rate": 0.0006,
+ "loss": 3.552250385284424,
+ "step": 4455
+ },
+ {
+ "epoch": 61.89471384884229,
+ "grad_norm": 0.20348075032234192,
+ "learning_rate": 0.0006,
+ "loss": 3.5406012535095215,
+ "step": 4456
+ },
+ {
+ "epoch": 61.90869375273045,
+ "grad_norm": 0.21306075155735016,
+ "learning_rate": 0.0006,
+ "loss": 3.504248857498169,
+ "step": 4457
+ },
+ {
+ "epoch": 61.92267365661861,
+ "grad_norm": 0.2184341996908188,
+ "learning_rate": 0.0006,
+ "loss": 3.5441558361053467,
+ "step": 4458
+ },
+ {
+ "epoch": 61.93665356050677,
+ "grad_norm": 0.20888687670230865,
+ "learning_rate": 0.0006,
+ "loss": 3.517657518386841,
+ "step": 4459
+ },
+ {
+ "epoch": 61.95063346439493,
+ "grad_norm": 0.2066143900156021,
+ "learning_rate": 0.0006,
+ "loss": 3.525796890258789,
+ "step": 4460
+ },
+ {
+ "epoch": 61.964613368283096,
+ "grad_norm": 0.1906299591064453,
+ "learning_rate": 0.0006,
+ "loss": 3.550924777984619,
+ "step": 4461
+ },
+ {
+ "epoch": 61.97859327217125,
+ "grad_norm": 0.1834334284067154,
+ "learning_rate": 0.0006,
+ "loss": 3.5818099975585938,
+ "step": 4462
+ },
+ {
+ "epoch": 61.992573176059416,
+ "grad_norm": 0.22725825011730194,
+ "learning_rate": 0.0006,
+ "loss": 3.5573811531066895,
+ "step": 4463
+ },
+ {
+ "epoch": 62.0,
+ "grad_norm": 0.29936420917510986,
+ "learning_rate": 0.0006,
+ "loss": 3.557694435119629,
+ "step": 4464
+ },
+ {
+ "epoch": 62.0,
+ "eval_loss": 3.985543966293335,
+ "eval_runtime": 46.6388,
+ "eval_samples_per_second": 52.36,
+ "eval_steps_per_second": 3.281,
+ "step": 4464
+ },
+ {
+ "epoch": 62.01397990388816,
+ "grad_norm": 0.30896103382110596,
+ "learning_rate": 0.0006,
+ "loss": 3.4991438388824463,
+ "step": 4465
+ },
+ {
+ "epoch": 62.02795980777632,
+ "grad_norm": 0.27383437752723694,
+ "learning_rate": 0.0006,
+ "loss": 3.4710259437561035,
+ "step": 4466
+ },
+ {
+ "epoch": 62.04193971166448,
+ "grad_norm": 0.24412496387958527,
+ "learning_rate": 0.0006,
+ "loss": 3.4983878135681152,
+ "step": 4467
+ },
+ {
+ "epoch": 62.05591961555265,
+ "grad_norm": 0.2649880051612854,
+ "learning_rate": 0.0006,
+ "loss": 3.5481886863708496,
+ "step": 4468
+ },
+ {
+ "epoch": 62.0698995194408,
+ "grad_norm": 0.2625769078731537,
+ "learning_rate": 0.0006,
+ "loss": 3.5114197731018066,
+ "step": 4469
+ },
+ {
+ "epoch": 62.083879423328966,
+ "grad_norm": 0.234181210398674,
+ "learning_rate": 0.0006,
+ "loss": 3.504152536392212,
+ "step": 4470
+ },
+ {
+ "epoch": 62.09785932721712,
+ "grad_norm": 0.21403342485427856,
+ "learning_rate": 0.0006,
+ "loss": 3.50738525390625,
+ "step": 4471
+ },
+ {
+ "epoch": 62.111839231105286,
+ "grad_norm": 0.22780060768127441,
+ "learning_rate": 0.0006,
+ "loss": 3.518354892730713,
+ "step": 4472
+ },
+ {
+ "epoch": 62.12581913499345,
+ "grad_norm": 0.23725424706935883,
+ "learning_rate": 0.0006,
+ "loss": 3.5227513313293457,
+ "step": 4473
+ },
+ {
+ "epoch": 62.139799038881605,
+ "grad_norm": 0.23643283545970917,
+ "learning_rate": 0.0006,
+ "loss": 3.504271984100342,
+ "step": 4474
+ },
+ {
+ "epoch": 62.15377894276977,
+ "grad_norm": 0.22513480484485626,
+ "learning_rate": 0.0006,
+ "loss": 3.5232059955596924,
+ "step": 4475
+ },
+ {
+ "epoch": 62.16775884665793,
+ "grad_norm": 0.23375700414180756,
+ "learning_rate": 0.0006,
+ "loss": 3.506519317626953,
+ "step": 4476
+ },
+ {
+ "epoch": 62.18173875054609,
+ "grad_norm": 0.24691303074359894,
+ "learning_rate": 0.0006,
+ "loss": 3.5212974548339844,
+ "step": 4477
+ },
+ {
+ "epoch": 62.19571865443425,
+ "grad_norm": 0.23466123640537262,
+ "learning_rate": 0.0006,
+ "loss": 3.5295071601867676,
+ "step": 4478
+ },
+ {
+ "epoch": 62.20969855832241,
+ "grad_norm": 0.2432340532541275,
+ "learning_rate": 0.0006,
+ "loss": 3.487830638885498,
+ "step": 4479
+ },
+ {
+ "epoch": 62.22367846221057,
+ "grad_norm": 0.24575389921665192,
+ "learning_rate": 0.0006,
+ "loss": 3.5329103469848633,
+ "step": 4480
+ },
+ {
+ "epoch": 62.237658366098735,
+ "grad_norm": 0.2441941201686859,
+ "learning_rate": 0.0006,
+ "loss": 3.5230906009674072,
+ "step": 4481
+ },
+ {
+ "epoch": 62.25163826998689,
+ "grad_norm": 0.2278154343366623,
+ "learning_rate": 0.0006,
+ "loss": 3.4919002056121826,
+ "step": 4482
+ },
+ {
+ "epoch": 62.265618173875055,
+ "grad_norm": 0.23517796397209167,
+ "learning_rate": 0.0006,
+ "loss": 3.5137887001037598,
+ "step": 4483
+ },
+ {
+ "epoch": 62.27959807776322,
+ "grad_norm": 0.2533835470676422,
+ "learning_rate": 0.0006,
+ "loss": 3.526322841644287,
+ "step": 4484
+ },
+ {
+ "epoch": 62.293577981651374,
+ "grad_norm": 0.24535894393920898,
+ "learning_rate": 0.0006,
+ "loss": 3.5060930252075195,
+ "step": 4485
+ },
+ {
+ "epoch": 62.30755788553954,
+ "grad_norm": 0.23312991857528687,
+ "learning_rate": 0.0006,
+ "loss": 3.5015740394592285,
+ "step": 4486
+ },
+ {
+ "epoch": 62.3215377894277,
+ "grad_norm": 0.2073916792869568,
+ "learning_rate": 0.0006,
+ "loss": 3.5239500999450684,
+ "step": 4487
+ },
+ {
+ "epoch": 62.33551769331586,
+ "grad_norm": 0.23528249561786652,
+ "learning_rate": 0.0006,
+ "loss": 3.4946212768554688,
+ "step": 4488
+ },
+ {
+ "epoch": 62.34949759720402,
+ "grad_norm": 0.25181272625923157,
+ "learning_rate": 0.0006,
+ "loss": 3.5492000579833984,
+ "step": 4489
+ },
+ {
+ "epoch": 62.36347750109218,
+ "grad_norm": 0.250745564699173,
+ "learning_rate": 0.0006,
+ "loss": 3.491637706756592,
+ "step": 4490
+ },
+ {
+ "epoch": 62.37745740498034,
+ "grad_norm": 0.2461264729499817,
+ "learning_rate": 0.0006,
+ "loss": 3.514125108718872,
+ "step": 4491
+ },
+ {
+ "epoch": 62.391437308868504,
+ "grad_norm": 0.2265472114086151,
+ "learning_rate": 0.0006,
+ "loss": 3.5513534545898438,
+ "step": 4492
+ },
+ {
+ "epoch": 62.40541721275666,
+ "grad_norm": 0.21937128901481628,
+ "learning_rate": 0.0006,
+ "loss": 3.541867733001709,
+ "step": 4493
+ },
+ {
+ "epoch": 62.419397116644824,
+ "grad_norm": 0.21318639814853668,
+ "learning_rate": 0.0006,
+ "loss": 3.530449867248535,
+ "step": 4494
+ },
+ {
+ "epoch": 62.43337702053299,
+ "grad_norm": 0.21287934482097626,
+ "learning_rate": 0.0006,
+ "loss": 3.51837158203125,
+ "step": 4495
+ },
+ {
+ "epoch": 62.44735692442114,
+ "grad_norm": 0.21953676640987396,
+ "learning_rate": 0.0006,
+ "loss": 3.517456293106079,
+ "step": 4496
+ },
+ {
+ "epoch": 62.46133682830931,
+ "grad_norm": 0.23475255072116852,
+ "learning_rate": 0.0006,
+ "loss": 3.493858575820923,
+ "step": 4497
+ },
+ {
+ "epoch": 62.47531673219746,
+ "grad_norm": 0.21805652976036072,
+ "learning_rate": 0.0006,
+ "loss": 3.533367872238159,
+ "step": 4498
+ },
+ {
+ "epoch": 62.489296636085626,
+ "grad_norm": 0.21494100987911224,
+ "learning_rate": 0.0006,
+ "loss": 3.509060859680176,
+ "step": 4499
+ },
+ {
+ "epoch": 62.50327653997379,
+ "grad_norm": 0.20512273907661438,
+ "learning_rate": 0.0006,
+ "loss": 3.524643659591675,
+ "step": 4500
+ },
+ {
+ "epoch": 62.517256443861946,
+ "grad_norm": 0.2046528458595276,
+ "learning_rate": 0.0006,
+ "loss": 3.520662784576416,
+ "step": 4501
+ },
+ {
+ "epoch": 62.53123634775011,
+ "grad_norm": 0.21108978986740112,
+ "learning_rate": 0.0006,
+ "loss": 3.5121688842773438,
+ "step": 4502
+ },
+ {
+ "epoch": 62.54521625163827,
+ "grad_norm": 0.19229449331760406,
+ "learning_rate": 0.0006,
+ "loss": 3.5201103687286377,
+ "step": 4503
+ },
+ {
+ "epoch": 62.55919615552643,
+ "grad_norm": 0.1984805464744568,
+ "learning_rate": 0.0006,
+ "loss": 3.546898365020752,
+ "step": 4504
+ },
+ {
+ "epoch": 62.57317605941459,
+ "grad_norm": 0.21615411341190338,
+ "learning_rate": 0.0006,
+ "loss": 3.4933600425720215,
+ "step": 4505
+ },
+ {
+ "epoch": 62.58715596330275,
+ "grad_norm": 0.22868046164512634,
+ "learning_rate": 0.0006,
+ "loss": 3.506098747253418,
+ "step": 4506
+ },
+ {
+ "epoch": 62.60113586719091,
+ "grad_norm": 0.21856851875782013,
+ "learning_rate": 0.0006,
+ "loss": 3.5790011882781982,
+ "step": 4507
+ },
+ {
+ "epoch": 62.615115771079076,
+ "grad_norm": 0.20573008060455322,
+ "learning_rate": 0.0006,
+ "loss": 3.5236854553222656,
+ "step": 4508
+ },
+ {
+ "epoch": 62.62909567496723,
+ "grad_norm": 0.21287901699543,
+ "learning_rate": 0.0006,
+ "loss": 3.5323190689086914,
+ "step": 4509
+ },
+ {
+ "epoch": 62.643075578855395,
+ "grad_norm": 0.22703637182712555,
+ "learning_rate": 0.0006,
+ "loss": 3.5300045013427734,
+ "step": 4510
+ },
+ {
+ "epoch": 62.65705548274356,
+ "grad_norm": 0.2194957137107849,
+ "learning_rate": 0.0006,
+ "loss": 3.5727438926696777,
+ "step": 4511
+ },
+ {
+ "epoch": 62.671035386631715,
+ "grad_norm": 0.22334235906600952,
+ "learning_rate": 0.0006,
+ "loss": 3.521441698074341,
+ "step": 4512
+ },
+ {
+ "epoch": 62.68501529051988,
+ "grad_norm": 0.2559402883052826,
+ "learning_rate": 0.0006,
+ "loss": 3.513730525970459,
+ "step": 4513
+ },
+ {
+ "epoch": 62.69899519440804,
+ "grad_norm": 0.25041815638542175,
+ "learning_rate": 0.0006,
+ "loss": 3.536247968673706,
+ "step": 4514
+ },
+ {
+ "epoch": 62.7129750982962,
+ "grad_norm": 0.24958674609661102,
+ "learning_rate": 0.0006,
+ "loss": 3.5245871543884277,
+ "step": 4515
+ },
+ {
+ "epoch": 62.72695500218436,
+ "grad_norm": 0.22527511417865753,
+ "learning_rate": 0.0006,
+ "loss": 3.508802652359009,
+ "step": 4516
+ },
+ {
+ "epoch": 62.74093490607252,
+ "grad_norm": 0.19455862045288086,
+ "learning_rate": 0.0006,
+ "loss": 3.5296337604522705,
+ "step": 4517
+ },
+ {
+ "epoch": 62.75491480996068,
+ "grad_norm": 0.20303845405578613,
+ "learning_rate": 0.0006,
+ "loss": 3.57499098777771,
+ "step": 4518
+ },
+ {
+ "epoch": 62.768894713848844,
+ "grad_norm": 0.20851430296897888,
+ "learning_rate": 0.0006,
+ "loss": 3.5139262676239014,
+ "step": 4519
+ },
+ {
+ "epoch": 62.782874617737,
+ "grad_norm": 0.19765593111515045,
+ "learning_rate": 0.0006,
+ "loss": 3.5398616790771484,
+ "step": 4520
+ },
+ {
+ "epoch": 62.796854521625164,
+ "grad_norm": 0.20502524077892303,
+ "learning_rate": 0.0006,
+ "loss": 3.5163207054138184,
+ "step": 4521
+ },
+ {
+ "epoch": 62.81083442551333,
+ "grad_norm": 0.20211154222488403,
+ "learning_rate": 0.0006,
+ "loss": 3.5164661407470703,
+ "step": 4522
+ },
+ {
+ "epoch": 62.824814329401484,
+ "grad_norm": 0.19798780977725983,
+ "learning_rate": 0.0006,
+ "loss": 3.533470869064331,
+ "step": 4523
+ },
+ {
+ "epoch": 62.83879423328965,
+ "grad_norm": 0.21921277046203613,
+ "learning_rate": 0.0006,
+ "loss": 3.532498598098755,
+ "step": 4524
+ },
+ {
+ "epoch": 62.8527741371778,
+ "grad_norm": 0.2352060228586197,
+ "learning_rate": 0.0006,
+ "loss": 3.5674972534179688,
+ "step": 4525
+ },
+ {
+ "epoch": 62.86675404106597,
+ "grad_norm": 0.21286381781101227,
+ "learning_rate": 0.0006,
+ "loss": 3.508051872253418,
+ "step": 4526
+ },
+ {
+ "epoch": 62.88073394495413,
+ "grad_norm": 0.21557490527629852,
+ "learning_rate": 0.0006,
+ "loss": 3.5300607681274414,
+ "step": 4527
+ },
+ {
+ "epoch": 62.89471384884229,
+ "grad_norm": 0.23020988702774048,
+ "learning_rate": 0.0006,
+ "loss": 3.508237361907959,
+ "step": 4528
+ },
+ {
+ "epoch": 62.90869375273045,
+ "grad_norm": 0.26428425312042236,
+ "learning_rate": 0.0006,
+ "loss": 3.52371883392334,
+ "step": 4529
+ },
+ {
+ "epoch": 62.92267365661861,
+ "grad_norm": 0.2568773925304413,
+ "learning_rate": 0.0006,
+ "loss": 3.5371956825256348,
+ "step": 4530
+ },
+ {
+ "epoch": 62.93665356050677,
+ "grad_norm": 0.2216598093509674,
+ "learning_rate": 0.0006,
+ "loss": 3.5286736488342285,
+ "step": 4531
+ },
+ {
+ "epoch": 62.95063346439493,
+ "grad_norm": 0.23094940185546875,
+ "learning_rate": 0.0006,
+ "loss": 3.5389769077301025,
+ "step": 4532
+ },
+ {
+ "epoch": 62.964613368283096,
+ "grad_norm": 0.23469413816928864,
+ "learning_rate": 0.0006,
+ "loss": 3.546466588973999,
+ "step": 4533
+ },
+ {
+ "epoch": 62.97859327217125,
+ "grad_norm": 0.2289242148399353,
+ "learning_rate": 0.0006,
+ "loss": 3.565002679824829,
+ "step": 4534
+ },
+ {
+ "epoch": 62.992573176059416,
+ "grad_norm": 0.262317955493927,
+ "learning_rate": 0.0006,
+ "loss": 3.5388731956481934,
+ "step": 4535
+ },
+ {
+ "epoch": 63.0,
+ "grad_norm": 0.273183137178421,
+ "learning_rate": 0.0006,
+ "loss": 3.482903003692627,
+ "step": 4536
+ },
+ {
+ "epoch": 63.0,
+ "eval_loss": 3.973074436187744,
+ "eval_runtime": 45.5476,
+ "eval_samples_per_second": 53.614,
+ "eval_steps_per_second": 3.359,
+ "step": 4536
+ },
+ {
+ "epoch": 63.01397990388816,
+ "grad_norm": 0.22226323187351227,
+ "learning_rate": 0.0006,
+ "loss": 3.483798027038574,
+ "step": 4537
+ },
+ {
+ "epoch": 63.02795980777632,
+ "grad_norm": 0.24443542957305908,
+ "learning_rate": 0.0006,
+ "loss": 3.496903419494629,
+ "step": 4538
+ },
+ {
+ "epoch": 63.04193971166448,
+ "grad_norm": 0.2508153021335602,
+ "learning_rate": 0.0006,
+ "loss": 3.5234804153442383,
+ "step": 4539
+ },
+ {
+ "epoch": 63.05591961555265,
+ "grad_norm": 0.2610569894313812,
+ "learning_rate": 0.0006,
+ "loss": 3.502870798110962,
+ "step": 4540
+ },
+ {
+ "epoch": 63.0698995194408,
+ "grad_norm": 0.27980759739875793,
+ "learning_rate": 0.0006,
+ "loss": 3.50645112991333,
+ "step": 4541
+ },
+ {
+ "epoch": 63.083879423328966,
+ "grad_norm": 0.292883038520813,
+ "learning_rate": 0.0006,
+ "loss": 3.478863000869751,
+ "step": 4542
+ },
+ {
+ "epoch": 63.09785932721712,
+ "grad_norm": 0.2593323588371277,
+ "learning_rate": 0.0006,
+ "loss": 3.506967067718506,
+ "step": 4543
+ },
+ {
+ "epoch": 63.111839231105286,
+ "grad_norm": 0.23973147571086884,
+ "learning_rate": 0.0006,
+ "loss": 3.513401746749878,
+ "step": 4544
+ },
+ {
+ "epoch": 63.12581913499345,
+ "grad_norm": 0.22731348872184753,
+ "learning_rate": 0.0006,
+ "loss": 3.4880478382110596,
+ "step": 4545
+ },
+ {
+ "epoch": 63.139799038881605,
+ "grad_norm": 0.22627407312393188,
+ "learning_rate": 0.0006,
+ "loss": 3.4975132942199707,
+ "step": 4546
+ },
+ {
+ "epoch": 63.15377894276977,
+ "grad_norm": 0.25107741355895996,
+ "learning_rate": 0.0006,
+ "loss": 3.5068140029907227,
+ "step": 4547
+ },
+ {
+ "epoch": 63.16775884665793,
+ "grad_norm": 0.23031412065029144,
+ "learning_rate": 0.0006,
+ "loss": 3.515760898590088,
+ "step": 4548
+ },
+ {
+ "epoch": 63.18173875054609,
+ "grad_norm": 0.21028949320316315,
+ "learning_rate": 0.0006,
+ "loss": 3.521303415298462,
+ "step": 4549
+ },
+ {
+ "epoch": 63.19571865443425,
+ "grad_norm": 0.22366516292095184,
+ "learning_rate": 0.0006,
+ "loss": 3.5283193588256836,
+ "step": 4550
+ },
+ {
+ "epoch": 63.20969855832241,
+ "grad_norm": 0.2176598459482193,
+ "learning_rate": 0.0006,
+ "loss": 3.490306854248047,
+ "step": 4551
+ },
+ {
+ "epoch": 63.22367846221057,
+ "grad_norm": 0.20985916256904602,
+ "learning_rate": 0.0006,
+ "loss": 3.5335614681243896,
+ "step": 4552
+ },
+ {
+ "epoch": 63.237658366098735,
+ "grad_norm": 0.2085118442773819,
+ "learning_rate": 0.0006,
+ "loss": 3.5108132362365723,
+ "step": 4553
+ },
+ {
+ "epoch": 63.25163826998689,
+ "grad_norm": 0.22644028067588806,
+ "learning_rate": 0.0006,
+ "loss": 3.4813215732574463,
+ "step": 4554
+ },
+ {
+ "epoch": 63.265618173875055,
+ "grad_norm": 0.21942120790481567,
+ "learning_rate": 0.0006,
+ "loss": 3.5310909748077393,
+ "step": 4555
+ },
+ {
+ "epoch": 63.27959807776322,
+ "grad_norm": 0.2335938662290573,
+ "learning_rate": 0.0006,
+ "loss": 3.530893564224243,
+ "step": 4556
+ },
+ {
+ "epoch": 63.293577981651374,
+ "grad_norm": 0.2409360110759735,
+ "learning_rate": 0.0006,
+ "loss": 3.5301408767700195,
+ "step": 4557
+ },
+ {
+ "epoch": 63.30755788553954,
+ "grad_norm": 0.2354922890663147,
+ "learning_rate": 0.0006,
+ "loss": 3.5211031436920166,
+ "step": 4558
+ },
+ {
+ "epoch": 63.3215377894277,
+ "grad_norm": 0.23376664519309998,
+ "learning_rate": 0.0006,
+ "loss": 3.538367509841919,
+ "step": 4559
+ },
+ {
+ "epoch": 63.33551769331586,
+ "grad_norm": 0.25319674611091614,
+ "learning_rate": 0.0006,
+ "loss": 3.494905471801758,
+ "step": 4560
+ },
+ {
+ "epoch": 63.34949759720402,
+ "grad_norm": 0.24088945984840393,
+ "learning_rate": 0.0006,
+ "loss": 3.5189433097839355,
+ "step": 4561
+ },
+ {
+ "epoch": 63.36347750109218,
+ "grad_norm": 0.2373911589384079,
+ "learning_rate": 0.0006,
+ "loss": 3.4956908226013184,
+ "step": 4562
+ },
+ {
+ "epoch": 63.37745740498034,
+ "grad_norm": 0.2590023875236511,
+ "learning_rate": 0.0006,
+ "loss": 3.511784076690674,
+ "step": 4563
+ },
+ {
+ "epoch": 63.391437308868504,
+ "grad_norm": 0.2600874900817871,
+ "learning_rate": 0.0006,
+ "loss": 3.478942394256592,
+ "step": 4564
+ },
+ {
+ "epoch": 63.40541721275666,
+ "grad_norm": 0.24018031358718872,
+ "learning_rate": 0.0006,
+ "loss": 3.521773338317871,
+ "step": 4565
+ },
+ {
+ "epoch": 63.419397116644824,
+ "grad_norm": 0.2552972435951233,
+ "learning_rate": 0.0006,
+ "loss": 3.4893441200256348,
+ "step": 4566
+ },
+ {
+ "epoch": 63.43337702053299,
+ "grad_norm": 0.26195958256721497,
+ "learning_rate": 0.0006,
+ "loss": 3.5366687774658203,
+ "step": 4567
+ },
+ {
+ "epoch": 63.44735692442114,
+ "grad_norm": 0.24390678107738495,
+ "learning_rate": 0.0006,
+ "loss": 3.4948301315307617,
+ "step": 4568
+ },
+ {
+ "epoch": 63.46133682830931,
+ "grad_norm": 0.21185952425003052,
+ "learning_rate": 0.0006,
+ "loss": 3.486267566680908,
+ "step": 4569
+ },
+ {
+ "epoch": 63.47531673219746,
+ "grad_norm": 0.21932153403759003,
+ "learning_rate": 0.0006,
+ "loss": 3.499481201171875,
+ "step": 4570
+ },
+ {
+ "epoch": 63.489296636085626,
+ "grad_norm": 0.22503717243671417,
+ "learning_rate": 0.0006,
+ "loss": 3.4932126998901367,
+ "step": 4571
+ },
+ {
+ "epoch": 63.50327653997379,
+ "grad_norm": 0.23853568732738495,
+ "learning_rate": 0.0006,
+ "loss": 3.4893674850463867,
+ "step": 4572
+ },
+ {
+ "epoch": 63.517256443861946,
+ "grad_norm": 0.2531817853450775,
+ "learning_rate": 0.0006,
+ "loss": 3.5391907691955566,
+ "step": 4573
+ },
+ {
+ "epoch": 63.53123634775011,
+ "grad_norm": 0.23776786029338837,
+ "learning_rate": 0.0006,
+ "loss": 3.5097427368164062,
+ "step": 4574
+ },
+ {
+ "epoch": 63.54521625163827,
+ "grad_norm": 0.24308739602565765,
+ "learning_rate": 0.0006,
+ "loss": 3.4988107681274414,
+ "step": 4575
+ },
+ {
+ "epoch": 63.55919615552643,
+ "grad_norm": 0.24214281141757965,
+ "learning_rate": 0.0006,
+ "loss": 3.506901502609253,
+ "step": 4576
+ },
+ {
+ "epoch": 63.57317605941459,
+ "grad_norm": 0.21378614008426666,
+ "learning_rate": 0.0006,
+ "loss": 3.54103684425354,
+ "step": 4577
+ },
+ {
+ "epoch": 63.58715596330275,
+ "grad_norm": 0.21135152876377106,
+ "learning_rate": 0.0006,
+ "loss": 3.534852981567383,
+ "step": 4578
+ },
+ {
+ "epoch": 63.60113586719091,
+ "grad_norm": 0.2335089147090912,
+ "learning_rate": 0.0006,
+ "loss": 3.542457342147827,
+ "step": 4579
+ },
+ {
+ "epoch": 63.615115771079076,
+ "grad_norm": 0.23693214356899261,
+ "learning_rate": 0.0006,
+ "loss": 3.4781997203826904,
+ "step": 4580
+ },
+ {
+ "epoch": 63.62909567496723,
+ "grad_norm": 0.21237023174762726,
+ "learning_rate": 0.0006,
+ "loss": 3.4980621337890625,
+ "step": 4581
+ },
+ {
+ "epoch": 63.643075578855395,
+ "grad_norm": 0.20930461585521698,
+ "learning_rate": 0.0006,
+ "loss": 3.5177974700927734,
+ "step": 4582
+ },
+ {
+ "epoch": 63.65705548274356,
+ "grad_norm": 0.22565403580665588,
+ "learning_rate": 0.0006,
+ "loss": 3.5385828018188477,
+ "step": 4583
+ },
+ {
+ "epoch": 63.671035386631715,
+ "grad_norm": 0.22187408804893494,
+ "learning_rate": 0.0006,
+ "loss": 3.5461559295654297,
+ "step": 4584
+ },
+ {
+ "epoch": 63.68501529051988,
+ "grad_norm": 0.23496168851852417,
+ "learning_rate": 0.0006,
+ "loss": 3.526822090148926,
+ "step": 4585
+ },
+ {
+ "epoch": 63.69899519440804,
+ "grad_norm": 0.2432301938533783,
+ "learning_rate": 0.0006,
+ "loss": 3.5248091220855713,
+ "step": 4586
+ },
+ {
+ "epoch": 63.7129750982962,
+ "grad_norm": 0.22797444462776184,
+ "learning_rate": 0.0006,
+ "loss": 3.5276098251342773,
+ "step": 4587
+ },
+ {
+ "epoch": 63.72695500218436,
+ "grad_norm": 0.2332911491394043,
+ "learning_rate": 0.0006,
+ "loss": 3.5454764366149902,
+ "step": 4588
+ },
+ {
+ "epoch": 63.74093490607252,
+ "grad_norm": 0.23016804456710815,
+ "learning_rate": 0.0006,
+ "loss": 3.519209384918213,
+ "step": 4589
+ },
+ {
+ "epoch": 63.75491480996068,
+ "grad_norm": 0.2160855233669281,
+ "learning_rate": 0.0006,
+ "loss": 3.536961317062378,
+ "step": 4590
+ },
+ {
+ "epoch": 63.768894713848844,
+ "grad_norm": 0.25935620069503784,
+ "learning_rate": 0.0006,
+ "loss": 3.5653820037841797,
+ "step": 4591
+ },
+ {
+ "epoch": 63.782874617737,
+ "grad_norm": 0.26625221967697144,
+ "learning_rate": 0.0006,
+ "loss": 3.5492172241210938,
+ "step": 4592
+ },
+ {
+ "epoch": 63.796854521625164,
+ "grad_norm": 0.25456854701042175,
+ "learning_rate": 0.0006,
+ "loss": 3.516575336456299,
+ "step": 4593
+ },
+ {
+ "epoch": 63.81083442551333,
+ "grad_norm": 0.26114824414253235,
+ "learning_rate": 0.0006,
+ "loss": 3.5429139137268066,
+ "step": 4594
+ },
+ {
+ "epoch": 63.824814329401484,
+ "grad_norm": 0.27836596965789795,
+ "learning_rate": 0.0006,
+ "loss": 3.5567727088928223,
+ "step": 4595
+ },
+ {
+ "epoch": 63.83879423328965,
+ "grad_norm": 0.2674464285373688,
+ "learning_rate": 0.0006,
+ "loss": 3.5093564987182617,
+ "step": 4596
+ },
+ {
+ "epoch": 63.8527741371778,
+ "grad_norm": 0.27393433451652527,
+ "learning_rate": 0.0006,
+ "loss": 3.5500247478485107,
+ "step": 4597
+ },
+ {
+ "epoch": 63.86675404106597,
+ "grad_norm": 0.30968594551086426,
+ "learning_rate": 0.0006,
+ "loss": 3.539085865020752,
+ "step": 4598
+ },
+ {
+ "epoch": 63.88073394495413,
+ "grad_norm": 0.279060423374176,
+ "learning_rate": 0.0006,
+ "loss": 3.517862319946289,
+ "step": 4599
+ },
+ {
+ "epoch": 63.89471384884229,
+ "grad_norm": 0.22436867654323578,
+ "learning_rate": 0.0006,
+ "loss": 3.5714004039764404,
+ "step": 4600
+ },
+ {
+ "epoch": 63.90869375273045,
+ "grad_norm": 0.22473126649856567,
+ "learning_rate": 0.0006,
+ "loss": 3.5212388038635254,
+ "step": 4601
+ },
+ {
+ "epoch": 63.92267365661861,
+ "grad_norm": 0.2802466154098511,
+ "learning_rate": 0.0006,
+ "loss": 3.5112411975860596,
+ "step": 4602
+ },
+ {
+ "epoch": 63.93665356050677,
+ "grad_norm": 0.29435867071151733,
+ "learning_rate": 0.0006,
+ "loss": 3.554875373840332,
+ "step": 4603
+ },
+ {
+ "epoch": 63.95063346439493,
+ "grad_norm": 0.24592025578022003,
+ "learning_rate": 0.0006,
+ "loss": 3.5593767166137695,
+ "step": 4604
+ },
+ {
+ "epoch": 63.964613368283096,
+ "grad_norm": 0.25918886065483093,
+ "learning_rate": 0.0006,
+ "loss": 3.5020017623901367,
+ "step": 4605
+ },
+ {
+ "epoch": 63.97859327217125,
+ "grad_norm": 0.24892419576644897,
+ "learning_rate": 0.0006,
+ "loss": 3.520456314086914,
+ "step": 4606
+ },
+ {
+ "epoch": 63.992573176059416,
+ "grad_norm": 0.24131213128566742,
+ "learning_rate": 0.0006,
+ "loss": 3.5576815605163574,
+ "step": 4607
+ },
+ {
+ "epoch": 64.0,
+ "grad_norm": 0.2348976731300354,
+ "learning_rate": 0.0006,
+ "loss": 3.524242401123047,
+ "step": 4608
+ },
+ {
+ "epoch": 64.0,
+ "eval_loss": 3.972158670425415,
+ "eval_runtime": 45.883,
+ "eval_samples_per_second": 53.222,
+ "eval_steps_per_second": 3.335,
+ "step": 4608
+ },
+ {
+ "epoch": 64.01397990388816,
+ "grad_norm": 0.24034473299980164,
+ "learning_rate": 0.0006,
+ "loss": 3.463156223297119,
+ "step": 4609
+ },
+ {
+ "epoch": 64.02795980777633,
+ "grad_norm": 0.28686341643333435,
+ "learning_rate": 0.0006,
+ "loss": 3.5137135982513428,
+ "step": 4610
+ },
+ {
+ "epoch": 64.04193971166448,
+ "grad_norm": 0.30763131380081177,
+ "learning_rate": 0.0006,
+ "loss": 3.490610361099243,
+ "step": 4611
+ },
+ {
+ "epoch": 64.05591961555264,
+ "grad_norm": 0.2775363624095917,
+ "learning_rate": 0.0006,
+ "loss": 3.516378879547119,
+ "step": 4612
+ },
+ {
+ "epoch": 64.06989951944081,
+ "grad_norm": 0.2643020749092102,
+ "learning_rate": 0.0006,
+ "loss": 3.511389970779419,
+ "step": 4613
+ },
+ {
+ "epoch": 64.08387942332897,
+ "grad_norm": 0.2859032452106476,
+ "learning_rate": 0.0006,
+ "loss": 3.5125572681427,
+ "step": 4614
+ },
+ {
+ "epoch": 64.09785932721712,
+ "grad_norm": 0.28378766775131226,
+ "learning_rate": 0.0006,
+ "loss": 3.4953627586364746,
+ "step": 4615
+ },
+ {
+ "epoch": 64.1118392311053,
+ "grad_norm": 0.2809223234653473,
+ "learning_rate": 0.0006,
+ "loss": 3.5114667415618896,
+ "step": 4616
+ },
+ {
+ "epoch": 64.12581913499345,
+ "grad_norm": 0.251823753118515,
+ "learning_rate": 0.0006,
+ "loss": 3.529876232147217,
+ "step": 4617
+ },
+ {
+ "epoch": 64.1397990388816,
+ "grad_norm": 0.236602321267128,
+ "learning_rate": 0.0006,
+ "loss": 3.5067150592803955,
+ "step": 4618
+ },
+ {
+ "epoch": 64.15377894276976,
+ "grad_norm": 0.2317773550748825,
+ "learning_rate": 0.0006,
+ "loss": 3.5166091918945312,
+ "step": 4619
+ },
+ {
+ "epoch": 64.16775884665793,
+ "grad_norm": 0.2237853854894638,
+ "learning_rate": 0.0006,
+ "loss": 3.492464065551758,
+ "step": 4620
+ },
+ {
+ "epoch": 64.18173875054609,
+ "grad_norm": 0.22309459745883942,
+ "learning_rate": 0.0006,
+ "loss": 3.4892983436584473,
+ "step": 4621
+ },
+ {
+ "epoch": 64.19571865443424,
+ "grad_norm": 0.21838971972465515,
+ "learning_rate": 0.0006,
+ "loss": 3.528764486312866,
+ "step": 4622
+ },
+ {
+ "epoch": 64.20969855832242,
+ "grad_norm": 0.22414161264896393,
+ "learning_rate": 0.0006,
+ "loss": 3.506270170211792,
+ "step": 4623
+ },
+ {
+ "epoch": 64.22367846221057,
+ "grad_norm": 0.22375065088272095,
+ "learning_rate": 0.0006,
+ "loss": 3.4844071865081787,
+ "step": 4624
+ },
+ {
+ "epoch": 64.23765836609873,
+ "grad_norm": 0.2091676890850067,
+ "learning_rate": 0.0006,
+ "loss": 3.4983415603637695,
+ "step": 4625
+ },
+ {
+ "epoch": 64.2516382699869,
+ "grad_norm": 0.22184209525585175,
+ "learning_rate": 0.0006,
+ "loss": 3.4846835136413574,
+ "step": 4626
+ },
+ {
+ "epoch": 64.26561817387505,
+ "grad_norm": 0.21549198031425476,
+ "learning_rate": 0.0006,
+ "loss": 3.4933011531829834,
+ "step": 4627
+ },
+ {
+ "epoch": 64.27959807776321,
+ "grad_norm": 0.21613609790802002,
+ "learning_rate": 0.0006,
+ "loss": 3.523514986038208,
+ "step": 4628
+ },
+ {
+ "epoch": 64.29357798165138,
+ "grad_norm": 0.22394488751888275,
+ "learning_rate": 0.0006,
+ "loss": 3.512820243835449,
+ "step": 4629
+ },
+ {
+ "epoch": 64.30755788553954,
+ "grad_norm": 0.22381016612052917,
+ "learning_rate": 0.0006,
+ "loss": 3.4967026710510254,
+ "step": 4630
+ },
+ {
+ "epoch": 64.3215377894277,
+ "grad_norm": 0.22533059120178223,
+ "learning_rate": 0.0006,
+ "loss": 3.5051097869873047,
+ "step": 4631
+ },
+ {
+ "epoch": 64.33551769331586,
+ "grad_norm": 0.23043590784072876,
+ "learning_rate": 0.0006,
+ "loss": 3.4784820079803467,
+ "step": 4632
+ },
+ {
+ "epoch": 64.34949759720402,
+ "grad_norm": 0.20840506255626678,
+ "learning_rate": 0.0006,
+ "loss": 3.496629238128662,
+ "step": 4633
+ },
+ {
+ "epoch": 64.36347750109218,
+ "grad_norm": 0.20293036103248596,
+ "learning_rate": 0.0006,
+ "loss": 3.500199317932129,
+ "step": 4634
+ },
+ {
+ "epoch": 64.37745740498035,
+ "grad_norm": 0.20510733127593994,
+ "learning_rate": 0.0006,
+ "loss": 3.4943113327026367,
+ "step": 4635
+ },
+ {
+ "epoch": 64.3914373088685,
+ "grad_norm": 0.21207642555236816,
+ "learning_rate": 0.0006,
+ "loss": 3.5024590492248535,
+ "step": 4636
+ },
+ {
+ "epoch": 64.40541721275666,
+ "grad_norm": 0.19878660142421722,
+ "learning_rate": 0.0006,
+ "loss": 3.5065855979919434,
+ "step": 4637
+ },
+ {
+ "epoch": 64.41939711664482,
+ "grad_norm": 0.22502431273460388,
+ "learning_rate": 0.0006,
+ "loss": 3.527764081954956,
+ "step": 4638
+ },
+ {
+ "epoch": 64.43337702053299,
+ "grad_norm": 0.2167922705411911,
+ "learning_rate": 0.0006,
+ "loss": 3.5075361728668213,
+ "step": 4639
+ },
+ {
+ "epoch": 64.44735692442114,
+ "grad_norm": 0.21200154721736908,
+ "learning_rate": 0.0006,
+ "loss": 3.5339698791503906,
+ "step": 4640
+ },
+ {
+ "epoch": 64.4613368283093,
+ "grad_norm": 0.22495608031749725,
+ "learning_rate": 0.0006,
+ "loss": 3.5342869758605957,
+ "step": 4641
+ },
+ {
+ "epoch": 64.47531673219747,
+ "grad_norm": 0.21426217257976532,
+ "learning_rate": 0.0006,
+ "loss": 3.5065689086914062,
+ "step": 4642
+ },
+ {
+ "epoch": 64.48929663608563,
+ "grad_norm": 0.19980023801326752,
+ "learning_rate": 0.0006,
+ "loss": 3.508183002471924,
+ "step": 4643
+ },
+ {
+ "epoch": 64.50327653997378,
+ "grad_norm": 0.2054566591978073,
+ "learning_rate": 0.0006,
+ "loss": 3.5098650455474854,
+ "step": 4644
+ },
+ {
+ "epoch": 64.51725644386195,
+ "grad_norm": 0.2038603276014328,
+ "learning_rate": 0.0006,
+ "loss": 3.517388105392456,
+ "step": 4645
+ },
+ {
+ "epoch": 64.53123634775011,
+ "grad_norm": 0.22438357770442963,
+ "learning_rate": 0.0006,
+ "loss": 3.5215954780578613,
+ "step": 4646
+ },
+ {
+ "epoch": 64.54521625163827,
+ "grad_norm": 0.23507612943649292,
+ "learning_rate": 0.0006,
+ "loss": 3.488262176513672,
+ "step": 4647
+ },
+ {
+ "epoch": 64.55919615552644,
+ "grad_norm": 0.21669664978981018,
+ "learning_rate": 0.0006,
+ "loss": 3.4945027828216553,
+ "step": 4648
+ },
+ {
+ "epoch": 64.57317605941459,
+ "grad_norm": 0.20035886764526367,
+ "learning_rate": 0.0006,
+ "loss": 3.516415596008301,
+ "step": 4649
+ },
+ {
+ "epoch": 64.58715596330275,
+ "grad_norm": 0.21818110346794128,
+ "learning_rate": 0.0006,
+ "loss": 3.4944982528686523,
+ "step": 4650
+ },
+ {
+ "epoch": 64.60113586719092,
+ "grad_norm": 0.20609644055366516,
+ "learning_rate": 0.0006,
+ "loss": 3.4914844036102295,
+ "step": 4651
+ },
+ {
+ "epoch": 64.61511577107908,
+ "grad_norm": 0.21921353042125702,
+ "learning_rate": 0.0006,
+ "loss": 3.5292391777038574,
+ "step": 4652
+ },
+ {
+ "epoch": 64.62909567496723,
+ "grad_norm": 0.23570363223552704,
+ "learning_rate": 0.0006,
+ "loss": 3.5353617668151855,
+ "step": 4653
+ },
+ {
+ "epoch": 64.6430755788554,
+ "grad_norm": 0.20933061838150024,
+ "learning_rate": 0.0006,
+ "loss": 3.524240016937256,
+ "step": 4654
+ },
+ {
+ "epoch": 64.65705548274356,
+ "grad_norm": 0.22739441692829132,
+ "learning_rate": 0.0006,
+ "loss": 3.529047966003418,
+ "step": 4655
+ },
+ {
+ "epoch": 64.67103538663171,
+ "grad_norm": 0.22208894789218903,
+ "learning_rate": 0.0006,
+ "loss": 3.5492024421691895,
+ "step": 4656
+ },
+ {
+ "epoch": 64.68501529051987,
+ "grad_norm": 0.23031534254550934,
+ "learning_rate": 0.0006,
+ "loss": 3.532979726791382,
+ "step": 4657
+ },
+ {
+ "epoch": 64.69899519440804,
+ "grad_norm": 0.25316348671913147,
+ "learning_rate": 0.0006,
+ "loss": 3.5105819702148438,
+ "step": 4658
+ },
+ {
+ "epoch": 64.7129750982962,
+ "grad_norm": 0.23601582646369934,
+ "learning_rate": 0.0006,
+ "loss": 3.5270726680755615,
+ "step": 4659
+ },
+ {
+ "epoch": 64.72695500218435,
+ "grad_norm": 0.20309361815452576,
+ "learning_rate": 0.0006,
+ "loss": 3.5072035789489746,
+ "step": 4660
+ },
+ {
+ "epoch": 64.74093490607252,
+ "grad_norm": 0.21525762975215912,
+ "learning_rate": 0.0006,
+ "loss": 3.531649112701416,
+ "step": 4661
+ },
+ {
+ "epoch": 64.75491480996068,
+ "grad_norm": 0.2262735813856125,
+ "learning_rate": 0.0006,
+ "loss": 3.5053927898406982,
+ "step": 4662
+ },
+ {
+ "epoch": 64.76889471384884,
+ "grad_norm": 0.2223973125219345,
+ "learning_rate": 0.0006,
+ "loss": 3.5400562286376953,
+ "step": 4663
+ },
+ {
+ "epoch": 64.78287461773701,
+ "grad_norm": 0.22822168469429016,
+ "learning_rate": 0.0006,
+ "loss": 3.502312421798706,
+ "step": 4664
+ },
+ {
+ "epoch": 64.79685452162516,
+ "grad_norm": 0.2337028533220291,
+ "learning_rate": 0.0006,
+ "loss": 3.524888038635254,
+ "step": 4665
+ },
+ {
+ "epoch": 64.81083442551332,
+ "grad_norm": 0.22423268854618073,
+ "learning_rate": 0.0006,
+ "loss": 3.5380213260650635,
+ "step": 4666
+ },
+ {
+ "epoch": 64.82481432940149,
+ "grad_norm": 0.21429643034934998,
+ "learning_rate": 0.0006,
+ "loss": 3.5499157905578613,
+ "step": 4667
+ },
+ {
+ "epoch": 64.83879423328965,
+ "grad_norm": 0.22421850264072418,
+ "learning_rate": 0.0006,
+ "loss": 3.5034070014953613,
+ "step": 4668
+ },
+ {
+ "epoch": 64.8527741371778,
+ "grad_norm": 0.21886403858661652,
+ "learning_rate": 0.0006,
+ "loss": 3.5276694297790527,
+ "step": 4669
+ },
+ {
+ "epoch": 64.86675404106597,
+ "grad_norm": 0.2404339462518692,
+ "learning_rate": 0.0006,
+ "loss": 3.515219211578369,
+ "step": 4670
+ },
+ {
+ "epoch": 64.88073394495413,
+ "grad_norm": 0.2837470769882202,
+ "learning_rate": 0.0006,
+ "loss": 3.561008930206299,
+ "step": 4671
+ },
+ {
+ "epoch": 64.89471384884229,
+ "grad_norm": 0.3101402223110199,
+ "learning_rate": 0.0006,
+ "loss": 3.556626319885254,
+ "step": 4672
+ },
+ {
+ "epoch": 64.90869375273044,
+ "grad_norm": 0.30606821179389954,
+ "learning_rate": 0.0006,
+ "loss": 3.540271282196045,
+ "step": 4673
+ },
+ {
+ "epoch": 64.92267365661861,
+ "grad_norm": 0.2715052664279938,
+ "learning_rate": 0.0006,
+ "loss": 3.5128841400146484,
+ "step": 4674
+ },
+ {
+ "epoch": 64.93665356050677,
+ "grad_norm": 0.24061815440654755,
+ "learning_rate": 0.0006,
+ "loss": 3.554208278656006,
+ "step": 4675
+ },
+ {
+ "epoch": 64.95063346439493,
+ "grad_norm": 0.23540185391902924,
+ "learning_rate": 0.0006,
+ "loss": 3.544139862060547,
+ "step": 4676
+ },
+ {
+ "epoch": 64.9646133682831,
+ "grad_norm": 0.26172906160354614,
+ "learning_rate": 0.0006,
+ "loss": 3.567110061645508,
+ "step": 4677
+ },
+ {
+ "epoch": 64.97859327217125,
+ "grad_norm": 0.2766035795211792,
+ "learning_rate": 0.0006,
+ "loss": 3.494391918182373,
+ "step": 4678
+ },
+ {
+ "epoch": 64.99257317605941,
+ "grad_norm": 0.2400948703289032,
+ "learning_rate": 0.0006,
+ "loss": 3.5130133628845215,
+ "step": 4679
+ },
+ {
+ "epoch": 65.0,
+ "grad_norm": 0.24790917336940765,
+ "learning_rate": 0.0006,
+ "loss": 3.5481390953063965,
+ "step": 4680
+ },
+ {
+ "epoch": 65.0,
+ "eval_loss": 3.976747989654541,
+ "eval_runtime": 46.3575,
+ "eval_samples_per_second": 52.678,
+ "eval_steps_per_second": 3.3,
+ "step": 4680
+ },
+ {
+ "epoch": 65.01397990388816,
+ "grad_norm": 0.22275416553020477,
+ "learning_rate": 0.0006,
+ "loss": 3.4832773208618164,
+ "step": 4681
+ },
+ {
+ "epoch": 65.02795980777633,
+ "grad_norm": 0.23779742419719696,
+ "learning_rate": 0.0006,
+ "loss": 3.5049266815185547,
+ "step": 4682
+ },
+ {
+ "epoch": 65.04193971166448,
+ "grad_norm": 0.2394440770149231,
+ "learning_rate": 0.0006,
+ "loss": 3.5335357189178467,
+ "step": 4683
+ },
+ {
+ "epoch": 65.05591961555264,
+ "grad_norm": 0.22160623967647552,
+ "learning_rate": 0.0006,
+ "loss": 3.5066094398498535,
+ "step": 4684
+ },
+ {
+ "epoch": 65.06989951944081,
+ "grad_norm": 0.22387197613716125,
+ "learning_rate": 0.0006,
+ "loss": 3.474155902862549,
+ "step": 4685
+ },
+ {
+ "epoch": 65.08387942332897,
+ "grad_norm": 0.24355316162109375,
+ "learning_rate": 0.0006,
+ "loss": 3.4905145168304443,
+ "step": 4686
+ },
+ {
+ "epoch": 65.09785932721712,
+ "grad_norm": 0.25801026821136475,
+ "learning_rate": 0.0006,
+ "loss": 3.50339937210083,
+ "step": 4687
+ },
+ {
+ "epoch": 65.1118392311053,
+ "grad_norm": 0.26155906915664673,
+ "learning_rate": 0.0006,
+ "loss": 3.523623466491699,
+ "step": 4688
+ },
+ {
+ "epoch": 65.12581913499345,
+ "grad_norm": 0.2512831389904022,
+ "learning_rate": 0.0006,
+ "loss": 3.490898609161377,
+ "step": 4689
+ },
+ {
+ "epoch": 65.1397990388816,
+ "grad_norm": 0.25024810433387756,
+ "learning_rate": 0.0006,
+ "loss": 3.4742162227630615,
+ "step": 4690
+ },
+ {
+ "epoch": 65.15377894276976,
+ "grad_norm": 0.27639806270599365,
+ "learning_rate": 0.0006,
+ "loss": 3.503298282623291,
+ "step": 4691
+ },
+ {
+ "epoch": 65.16775884665793,
+ "grad_norm": 0.2543538510799408,
+ "learning_rate": 0.0006,
+ "loss": 3.4785704612731934,
+ "step": 4692
+ },
+ {
+ "epoch": 65.18173875054609,
+ "grad_norm": 0.24148274958133698,
+ "learning_rate": 0.0006,
+ "loss": 3.48526668548584,
+ "step": 4693
+ },
+ {
+ "epoch": 65.19571865443424,
+ "grad_norm": 0.2161206603050232,
+ "learning_rate": 0.0006,
+ "loss": 3.477449417114258,
+ "step": 4694
+ },
+ {
+ "epoch": 65.20969855832242,
+ "grad_norm": 0.21417468786239624,
+ "learning_rate": 0.0006,
+ "loss": 3.5010929107666016,
+ "step": 4695
+ },
+ {
+ "epoch": 65.22367846221057,
+ "grad_norm": 0.22810059785842896,
+ "learning_rate": 0.0006,
+ "loss": 3.4384589195251465,
+ "step": 4696
+ },
+ {
+ "epoch": 65.23765836609873,
+ "grad_norm": 0.23555037379264832,
+ "learning_rate": 0.0006,
+ "loss": 3.4912073612213135,
+ "step": 4697
+ },
+ {
+ "epoch": 65.2516382699869,
+ "grad_norm": 0.2628633975982666,
+ "learning_rate": 0.0006,
+ "loss": 3.4763574600219727,
+ "step": 4698
+ },
+ {
+ "epoch": 65.26561817387505,
+ "grad_norm": 0.2515856921672821,
+ "learning_rate": 0.0006,
+ "loss": 3.480222463607788,
+ "step": 4699
+ },
+ {
+ "epoch": 65.27959807776321,
+ "grad_norm": 0.19862835109233856,
+ "learning_rate": 0.0006,
+ "loss": 3.510263204574585,
+ "step": 4700
+ },
+ {
+ "epoch": 65.29357798165138,
+ "grad_norm": 0.22558043897151947,
+ "learning_rate": 0.0006,
+ "loss": 3.4952306747436523,
+ "step": 4701
+ },
+ {
+ "epoch": 65.30755788553954,
+ "grad_norm": 0.2351200133562088,
+ "learning_rate": 0.0006,
+ "loss": 3.5010221004486084,
+ "step": 4702
+ },
+ {
+ "epoch": 65.3215377894277,
+ "grad_norm": 0.21748903393745422,
+ "learning_rate": 0.0006,
+ "loss": 3.5186777114868164,
+ "step": 4703
+ },
+ {
+ "epoch": 65.33551769331586,
+ "grad_norm": 0.2073124349117279,
+ "learning_rate": 0.0006,
+ "loss": 3.5397891998291016,
+ "step": 4704
+ },
+ {
+ "epoch": 65.34949759720402,
+ "grad_norm": 0.1948464810848236,
+ "learning_rate": 0.0006,
+ "loss": 3.5413217544555664,
+ "step": 4705
+ },
+ {
+ "epoch": 65.36347750109218,
+ "grad_norm": 0.19741199910640717,
+ "learning_rate": 0.0006,
+ "loss": 3.515199899673462,
+ "step": 4706
+ },
+ {
+ "epoch": 65.37745740498035,
+ "grad_norm": 0.22518441081047058,
+ "learning_rate": 0.0006,
+ "loss": 3.512284278869629,
+ "step": 4707
+ },
+ {
+ "epoch": 65.3914373088685,
+ "grad_norm": 0.24368613958358765,
+ "learning_rate": 0.0006,
+ "loss": 3.528355121612549,
+ "step": 4708
+ },
+ {
+ "epoch": 65.40541721275666,
+ "grad_norm": 0.21857064962387085,
+ "learning_rate": 0.0006,
+ "loss": 3.494401454925537,
+ "step": 4709
+ },
+ {
+ "epoch": 65.41939711664482,
+ "grad_norm": 0.2199285924434662,
+ "learning_rate": 0.0006,
+ "loss": 3.49814772605896,
+ "step": 4710
+ },
+ {
+ "epoch": 65.43337702053299,
+ "grad_norm": 0.23801206052303314,
+ "learning_rate": 0.0006,
+ "loss": 3.4678444862365723,
+ "step": 4711
+ },
+ {
+ "epoch": 65.44735692442114,
+ "grad_norm": 0.231369748711586,
+ "learning_rate": 0.0006,
+ "loss": 3.501521587371826,
+ "step": 4712
+ },
+ {
+ "epoch": 65.4613368283093,
+ "grad_norm": 0.20447038114070892,
+ "learning_rate": 0.0006,
+ "loss": 3.508510112762451,
+ "step": 4713
+ },
+ {
+ "epoch": 65.47531673219747,
+ "grad_norm": 0.21331779658794403,
+ "learning_rate": 0.0006,
+ "loss": 3.498544692993164,
+ "step": 4714
+ },
+ {
+ "epoch": 65.48929663608563,
+ "grad_norm": 0.2365437150001526,
+ "learning_rate": 0.0006,
+ "loss": 3.4972000122070312,
+ "step": 4715
+ },
+ {
+ "epoch": 65.50327653997378,
+ "grad_norm": 0.2236112356185913,
+ "learning_rate": 0.0006,
+ "loss": 3.5397965908050537,
+ "step": 4716
+ },
+ {
+ "epoch": 65.51725644386195,
+ "grad_norm": 0.20595021545886993,
+ "learning_rate": 0.0006,
+ "loss": 3.532902717590332,
+ "step": 4717
+ },
+ {
+ "epoch": 65.53123634775011,
+ "grad_norm": 0.2043730616569519,
+ "learning_rate": 0.0006,
+ "loss": 3.5136585235595703,
+ "step": 4718
+ },
+ {
+ "epoch": 65.54521625163827,
+ "grad_norm": 0.21925127506256104,
+ "learning_rate": 0.0006,
+ "loss": 3.526590347290039,
+ "step": 4719
+ },
+ {
+ "epoch": 65.55919615552644,
+ "grad_norm": 0.21580299735069275,
+ "learning_rate": 0.0006,
+ "loss": 3.530301332473755,
+ "step": 4720
+ },
+ {
+ "epoch": 65.57317605941459,
+ "grad_norm": 0.2296830266714096,
+ "learning_rate": 0.0006,
+ "loss": 3.527580976486206,
+ "step": 4721
+ },
+ {
+ "epoch": 65.58715596330275,
+ "grad_norm": 0.21846120059490204,
+ "learning_rate": 0.0006,
+ "loss": 3.524075746536255,
+ "step": 4722
+ },
+ {
+ "epoch": 65.60113586719092,
+ "grad_norm": 0.19835807383060455,
+ "learning_rate": 0.0006,
+ "loss": 3.4560012817382812,
+ "step": 4723
+ },
+ {
+ "epoch": 65.61511577107908,
+ "grad_norm": 0.20501157641410828,
+ "learning_rate": 0.0006,
+ "loss": 3.508017063140869,
+ "step": 4724
+ },
+ {
+ "epoch": 65.62909567496723,
+ "grad_norm": 0.21347478032112122,
+ "learning_rate": 0.0006,
+ "loss": 3.5479536056518555,
+ "step": 4725
+ },
+ {
+ "epoch": 65.6430755788554,
+ "grad_norm": 0.19286541640758514,
+ "learning_rate": 0.0006,
+ "loss": 3.537360906600952,
+ "step": 4726
+ },
+ {
+ "epoch": 65.65705548274356,
+ "grad_norm": 0.19364185631275177,
+ "learning_rate": 0.0006,
+ "loss": 3.5186867713928223,
+ "step": 4727
+ },
+ {
+ "epoch": 65.67103538663171,
+ "grad_norm": 0.19047997891902924,
+ "learning_rate": 0.0006,
+ "loss": 3.5242767333984375,
+ "step": 4728
+ },
+ {
+ "epoch": 65.68501529051987,
+ "grad_norm": 0.19712361693382263,
+ "learning_rate": 0.0006,
+ "loss": 3.5176010131835938,
+ "step": 4729
+ },
+ {
+ "epoch": 65.69899519440804,
+ "grad_norm": 0.2034953087568283,
+ "learning_rate": 0.0006,
+ "loss": 3.510268211364746,
+ "step": 4730
+ },
+ {
+ "epoch": 65.7129750982962,
+ "grad_norm": 0.20022697746753693,
+ "learning_rate": 0.0006,
+ "loss": 3.53619647026062,
+ "step": 4731
+ },
+ {
+ "epoch": 65.72695500218435,
+ "grad_norm": 0.20698072016239166,
+ "learning_rate": 0.0006,
+ "loss": 3.5179615020751953,
+ "step": 4732
+ },
+ {
+ "epoch": 65.74093490607252,
+ "grad_norm": 0.2297508418560028,
+ "learning_rate": 0.0006,
+ "loss": 3.5308024883270264,
+ "step": 4733
+ },
+ {
+ "epoch": 65.75491480996068,
+ "grad_norm": 0.227255716919899,
+ "learning_rate": 0.0006,
+ "loss": 3.5443387031555176,
+ "step": 4734
+ },
+ {
+ "epoch": 65.76889471384884,
+ "grad_norm": 0.21772262454032898,
+ "learning_rate": 0.0006,
+ "loss": 3.52345871925354,
+ "step": 4735
+ },
+ {
+ "epoch": 65.78287461773701,
+ "grad_norm": 0.22124525904655457,
+ "learning_rate": 0.0006,
+ "loss": 3.5262577533721924,
+ "step": 4736
+ },
+ {
+ "epoch": 65.79685452162516,
+ "grad_norm": 0.22992224991321564,
+ "learning_rate": 0.0006,
+ "loss": 3.531507730484009,
+ "step": 4737
+ },
+ {
+ "epoch": 65.81083442551332,
+ "grad_norm": 0.24775296449661255,
+ "learning_rate": 0.0006,
+ "loss": 3.4781999588012695,
+ "step": 4738
+ },
+ {
+ "epoch": 65.82481432940149,
+ "grad_norm": 0.24917690455913544,
+ "learning_rate": 0.0006,
+ "loss": 3.5157413482666016,
+ "step": 4739
+ },
+ {
+ "epoch": 65.83879423328965,
+ "grad_norm": 0.23374824225902557,
+ "learning_rate": 0.0006,
+ "loss": 3.536634683609009,
+ "step": 4740
+ },
+ {
+ "epoch": 65.8527741371778,
+ "grad_norm": 0.25592541694641113,
+ "learning_rate": 0.0006,
+ "loss": 3.5343942642211914,
+ "step": 4741
+ },
+ {
+ "epoch": 65.86675404106597,
+ "grad_norm": 0.2698819935321808,
+ "learning_rate": 0.0006,
+ "loss": 3.4906277656555176,
+ "step": 4742
+ },
+ {
+ "epoch": 65.88073394495413,
+ "grad_norm": 0.2175036370754242,
+ "learning_rate": 0.0006,
+ "loss": 3.506230354309082,
+ "step": 4743
+ },
+ {
+ "epoch": 65.89471384884229,
+ "grad_norm": 0.22451810538768768,
+ "learning_rate": 0.0006,
+ "loss": 3.5139262676239014,
+ "step": 4744
+ },
+ {
+ "epoch": 65.90869375273044,
+ "grad_norm": 0.24293720722198486,
+ "learning_rate": 0.0006,
+ "loss": 3.528148651123047,
+ "step": 4745
+ },
+ {
+ "epoch": 65.92267365661861,
+ "grad_norm": 0.2138707935810089,
+ "learning_rate": 0.0006,
+ "loss": 3.516911029815674,
+ "step": 4746
+ },
+ {
+ "epoch": 65.93665356050677,
+ "grad_norm": 0.2216160148382187,
+ "learning_rate": 0.0006,
+ "loss": 3.540201187133789,
+ "step": 4747
+ },
+ {
+ "epoch": 65.95063346439493,
+ "grad_norm": 0.2276899367570877,
+ "learning_rate": 0.0006,
+ "loss": 3.525435447692871,
+ "step": 4748
+ },
+ {
+ "epoch": 65.9646133682831,
+ "grad_norm": 0.2441754788160324,
+ "learning_rate": 0.0006,
+ "loss": 3.5337369441986084,
+ "step": 4749
+ },
+ {
+ "epoch": 65.97859327217125,
+ "grad_norm": 0.2364634871482849,
+ "learning_rate": 0.0006,
+ "loss": 3.5289382934570312,
+ "step": 4750
+ },
+ {
+ "epoch": 65.99257317605941,
+ "grad_norm": 0.2322802096605301,
+ "learning_rate": 0.0006,
+ "loss": 3.519960403442383,
+ "step": 4751
+ },
+ {
+ "epoch": 66.0,
+ "grad_norm": 0.28910940885543823,
+ "learning_rate": 0.0006,
+ "loss": 3.535785436630249,
+ "step": 4752
+ },
+ {
+ "epoch": 66.0,
+ "eval_loss": 3.9755074977874756,
+ "eval_runtime": 44.9956,
+ "eval_samples_per_second": 54.272,
+ "eval_steps_per_second": 3.4,
+ "step": 4752
+ },
+ {
+ "epoch": 66.01397990388816,
+ "grad_norm": 0.2833491861820221,
+ "learning_rate": 0.0006,
+ "loss": 3.4532885551452637,
+ "step": 4753
+ },
+ {
+ "epoch": 66.02795980777633,
+ "grad_norm": 0.31011638045310974,
+ "learning_rate": 0.0006,
+ "loss": 3.5164999961853027,
+ "step": 4754
+ },
+ {
+ "epoch": 66.04193971166448,
+ "grad_norm": 0.34583768248558044,
+ "learning_rate": 0.0006,
+ "loss": 3.463331937789917,
+ "step": 4755
+ },
+ {
+ "epoch": 66.05591961555264,
+ "grad_norm": 0.3586544990539551,
+ "learning_rate": 0.0006,
+ "loss": 3.4739010334014893,
+ "step": 4756
+ },
+ {
+ "epoch": 66.06989951944081,
+ "grad_norm": 0.32337963581085205,
+ "learning_rate": 0.0006,
+ "loss": 3.5309596061706543,
+ "step": 4757
+ },
+ {
+ "epoch": 66.08387942332897,
+ "grad_norm": 0.3091002404689789,
+ "learning_rate": 0.0006,
+ "loss": 3.479280471801758,
+ "step": 4758
+ },
+ {
+ "epoch": 66.09785932721712,
+ "grad_norm": 0.29722821712493896,
+ "learning_rate": 0.0006,
+ "loss": 3.52632999420166,
+ "step": 4759
+ },
+ {
+ "epoch": 66.1118392311053,
+ "grad_norm": 0.2636614739894867,
+ "learning_rate": 0.0006,
+ "loss": 3.4953694343566895,
+ "step": 4760
+ },
+ {
+ "epoch": 66.12581913499345,
+ "grad_norm": 0.2646677494049072,
+ "learning_rate": 0.0006,
+ "loss": 3.519223213195801,
+ "step": 4761
+ },
+ {
+ "epoch": 66.1397990388816,
+ "grad_norm": 0.26999902725219727,
+ "learning_rate": 0.0006,
+ "loss": 3.500627040863037,
+ "step": 4762
+ },
+ {
+ "epoch": 66.15377894276976,
+ "grad_norm": 0.26489800214767456,
+ "learning_rate": 0.0006,
+ "loss": 3.486992120742798,
+ "step": 4763
+ },
+ {
+ "epoch": 66.16775884665793,
+ "grad_norm": 0.23870280385017395,
+ "learning_rate": 0.0006,
+ "loss": 3.5312767028808594,
+ "step": 4764
+ },
+ {
+ "epoch": 66.18173875054609,
+ "grad_norm": 0.260374516248703,
+ "learning_rate": 0.0006,
+ "loss": 3.529757499694824,
+ "step": 4765
+ },
+ {
+ "epoch": 66.19571865443424,
+ "grad_norm": 0.22300437092781067,
+ "learning_rate": 0.0006,
+ "loss": 3.534423351287842,
+ "step": 4766
+ },
+ {
+ "epoch": 66.20969855832242,
+ "grad_norm": 0.22216713428497314,
+ "learning_rate": 0.0006,
+ "loss": 3.4944376945495605,
+ "step": 4767
+ },
+ {
+ "epoch": 66.22367846221057,
+ "grad_norm": 0.22038567066192627,
+ "learning_rate": 0.0006,
+ "loss": 3.500737190246582,
+ "step": 4768
+ },
+ {
+ "epoch": 66.23765836609873,
+ "grad_norm": 0.23068127036094666,
+ "learning_rate": 0.0006,
+ "loss": 3.486678123474121,
+ "step": 4769
+ },
+ {
+ "epoch": 66.2516382699869,
+ "grad_norm": 0.22809696197509766,
+ "learning_rate": 0.0006,
+ "loss": 3.49131441116333,
+ "step": 4770
+ },
+ {
+ "epoch": 66.26561817387505,
+ "grad_norm": 0.2096482366323471,
+ "learning_rate": 0.0006,
+ "loss": 3.462193012237549,
+ "step": 4771
+ },
+ {
+ "epoch": 66.27959807776321,
+ "grad_norm": 0.20821219682693481,
+ "learning_rate": 0.0006,
+ "loss": 3.482736110687256,
+ "step": 4772
+ },
+ {
+ "epoch": 66.29357798165138,
+ "grad_norm": 0.20735417306423187,
+ "learning_rate": 0.0006,
+ "loss": 3.4810829162597656,
+ "step": 4773
+ },
+ {
+ "epoch": 66.30755788553954,
+ "grad_norm": 0.21598318219184875,
+ "learning_rate": 0.0006,
+ "loss": 3.5151000022888184,
+ "step": 4774
+ },
+ {
+ "epoch": 66.3215377894277,
+ "grad_norm": 0.20589035749435425,
+ "learning_rate": 0.0006,
+ "loss": 3.4938106536865234,
+ "step": 4775
+ },
+ {
+ "epoch": 66.33551769331586,
+ "grad_norm": 0.22494125366210938,
+ "learning_rate": 0.0006,
+ "loss": 3.4739134311676025,
+ "step": 4776
+ },
+ {
+ "epoch": 66.34949759720402,
+ "grad_norm": 0.24715618789196014,
+ "learning_rate": 0.0006,
+ "loss": 3.492598295211792,
+ "step": 4777
+ },
+ {
+ "epoch": 66.36347750109218,
+ "grad_norm": 0.26689210534095764,
+ "learning_rate": 0.0006,
+ "loss": 3.5183334350585938,
+ "step": 4778
+ },
+ {
+ "epoch": 66.37745740498035,
+ "grad_norm": 0.29018405079841614,
+ "learning_rate": 0.0006,
+ "loss": 3.4874320030212402,
+ "step": 4779
+ },
+ {
+ "epoch": 66.3914373088685,
+ "grad_norm": 0.2511773109436035,
+ "learning_rate": 0.0006,
+ "loss": 3.5105361938476562,
+ "step": 4780
+ },
+ {
+ "epoch": 66.40541721275666,
+ "grad_norm": 0.20808005332946777,
+ "learning_rate": 0.0006,
+ "loss": 3.4932327270507812,
+ "step": 4781
+ },
+ {
+ "epoch": 66.41939711664482,
+ "grad_norm": 0.21036715805530548,
+ "learning_rate": 0.0006,
+ "loss": 3.5223588943481445,
+ "step": 4782
+ },
+ {
+ "epoch": 66.43337702053299,
+ "grad_norm": 0.2151600569486618,
+ "learning_rate": 0.0006,
+ "loss": 3.491854190826416,
+ "step": 4783
+ },
+ {
+ "epoch": 66.44735692442114,
+ "grad_norm": 0.23702189326286316,
+ "learning_rate": 0.0006,
+ "loss": 3.4869368076324463,
+ "step": 4784
+ },
+ {
+ "epoch": 66.4613368283093,
+ "grad_norm": 0.23089149594306946,
+ "learning_rate": 0.0006,
+ "loss": 3.5014419555664062,
+ "step": 4785
+ },
+ {
+ "epoch": 66.47531673219747,
+ "grad_norm": 0.25527265667915344,
+ "learning_rate": 0.0006,
+ "loss": 3.5148048400878906,
+ "step": 4786
+ },
+ {
+ "epoch": 66.48929663608563,
+ "grad_norm": 0.2308386117219925,
+ "learning_rate": 0.0006,
+ "loss": 3.5196022987365723,
+ "step": 4787
+ },
+ {
+ "epoch": 66.50327653997378,
+ "grad_norm": 0.23467418551445007,
+ "learning_rate": 0.0006,
+ "loss": 3.478280544281006,
+ "step": 4788
+ },
+ {
+ "epoch": 66.51725644386195,
+ "grad_norm": 0.23607908189296722,
+ "learning_rate": 0.0006,
+ "loss": 3.4826481342315674,
+ "step": 4789
+ },
+ {
+ "epoch": 66.53123634775011,
+ "grad_norm": 0.255309522151947,
+ "learning_rate": 0.0006,
+ "loss": 3.498870849609375,
+ "step": 4790
+ },
+ {
+ "epoch": 66.54521625163827,
+ "grad_norm": 0.29246363043785095,
+ "learning_rate": 0.0006,
+ "loss": 3.544440269470215,
+ "step": 4791
+ },
+ {
+ "epoch": 66.55919615552644,
+ "grad_norm": 0.2658552825450897,
+ "learning_rate": 0.0006,
+ "loss": 3.4844512939453125,
+ "step": 4792
+ },
+ {
+ "epoch": 66.57317605941459,
+ "grad_norm": 0.23498542606830597,
+ "learning_rate": 0.0006,
+ "loss": 3.5411434173583984,
+ "step": 4793
+ },
+ {
+ "epoch": 66.58715596330275,
+ "grad_norm": 0.2616438567638397,
+ "learning_rate": 0.0006,
+ "loss": 3.501821994781494,
+ "step": 4794
+ },
+ {
+ "epoch": 66.60113586719092,
+ "grad_norm": 0.2577981650829315,
+ "learning_rate": 0.0006,
+ "loss": 3.519040584564209,
+ "step": 4795
+ },
+ {
+ "epoch": 66.61511577107908,
+ "grad_norm": 0.25896304845809937,
+ "learning_rate": 0.0006,
+ "loss": 3.514458656311035,
+ "step": 4796
+ },
+ {
+ "epoch": 66.62909567496723,
+ "grad_norm": 0.26136472821235657,
+ "learning_rate": 0.0006,
+ "loss": 3.5054283142089844,
+ "step": 4797
+ },
+ {
+ "epoch": 66.6430755788554,
+ "grad_norm": 0.2134191244840622,
+ "learning_rate": 0.0006,
+ "loss": 3.551358222961426,
+ "step": 4798
+ },
+ {
+ "epoch": 66.65705548274356,
+ "grad_norm": 0.20154543220996857,
+ "learning_rate": 0.0006,
+ "loss": 3.5363516807556152,
+ "step": 4799
+ },
+ {
+ "epoch": 66.67103538663171,
+ "grad_norm": 0.20807082951068878,
+ "learning_rate": 0.0006,
+ "loss": 3.4861817359924316,
+ "step": 4800
+ },
+ {
+ "epoch": 66.68501529051987,
+ "grad_norm": 0.22268050909042358,
+ "learning_rate": 0.0006,
+ "loss": 3.5229034423828125,
+ "step": 4801
+ },
+ {
+ "epoch": 66.69899519440804,
+ "grad_norm": 0.21031907200813293,
+ "learning_rate": 0.0006,
+ "loss": 3.499587059020996,
+ "step": 4802
+ },
+ {
+ "epoch": 66.7129750982962,
+ "grad_norm": 0.207321435213089,
+ "learning_rate": 0.0006,
+ "loss": 3.5246481895446777,
+ "step": 4803
+ },
+ {
+ "epoch": 66.72695500218435,
+ "grad_norm": 0.21961352229118347,
+ "learning_rate": 0.0006,
+ "loss": 3.5126147270202637,
+ "step": 4804
+ },
+ {
+ "epoch": 66.74093490607252,
+ "grad_norm": 0.2144167572259903,
+ "learning_rate": 0.0006,
+ "loss": 3.5319013595581055,
+ "step": 4805
+ },
+ {
+ "epoch": 66.75491480996068,
+ "grad_norm": 0.19109441339969635,
+ "learning_rate": 0.0006,
+ "loss": 3.5124895572662354,
+ "step": 4806
+ },
+ {
+ "epoch": 66.76889471384884,
+ "grad_norm": 0.20463025569915771,
+ "learning_rate": 0.0006,
+ "loss": 3.5368666648864746,
+ "step": 4807
+ },
+ {
+ "epoch": 66.78287461773701,
+ "grad_norm": 0.20978771150112152,
+ "learning_rate": 0.0006,
+ "loss": 3.5166687965393066,
+ "step": 4808
+ },
+ {
+ "epoch": 66.79685452162516,
+ "grad_norm": 0.2258925437927246,
+ "learning_rate": 0.0006,
+ "loss": 3.532341957092285,
+ "step": 4809
+ },
+ {
+ "epoch": 66.81083442551332,
+ "grad_norm": 0.21758350729942322,
+ "learning_rate": 0.0006,
+ "loss": 3.5155858993530273,
+ "step": 4810
+ },
+ {
+ "epoch": 66.82481432940149,
+ "grad_norm": 0.20124484598636627,
+ "learning_rate": 0.0006,
+ "loss": 3.491522789001465,
+ "step": 4811
+ },
+ {
+ "epoch": 66.83879423328965,
+ "grad_norm": 0.21627238392829895,
+ "learning_rate": 0.0006,
+ "loss": 3.5303220748901367,
+ "step": 4812
+ },
+ {
+ "epoch": 66.8527741371778,
+ "grad_norm": 0.21125555038452148,
+ "learning_rate": 0.0006,
+ "loss": 3.535466194152832,
+ "step": 4813
+ },
+ {
+ "epoch": 66.86675404106597,
+ "grad_norm": 0.2247028350830078,
+ "learning_rate": 0.0006,
+ "loss": 3.51188325881958,
+ "step": 4814
+ },
+ {
+ "epoch": 66.88073394495413,
+ "grad_norm": 0.21800914406776428,
+ "learning_rate": 0.0006,
+ "loss": 3.5084712505340576,
+ "step": 4815
+ },
+ {
+ "epoch": 66.89471384884229,
+ "grad_norm": 0.2118908166885376,
+ "learning_rate": 0.0006,
+ "loss": 3.5099692344665527,
+ "step": 4816
+ },
+ {
+ "epoch": 66.90869375273044,
+ "grad_norm": 0.22638460993766785,
+ "learning_rate": 0.0006,
+ "loss": 3.5099596977233887,
+ "step": 4817
+ },
+ {
+ "epoch": 66.92267365661861,
+ "grad_norm": 0.1987311840057373,
+ "learning_rate": 0.0006,
+ "loss": 3.5497078895568848,
+ "step": 4818
+ },
+ {
+ "epoch": 66.93665356050677,
+ "grad_norm": 0.21048952639102936,
+ "learning_rate": 0.0006,
+ "loss": 3.524364948272705,
+ "step": 4819
+ },
+ {
+ "epoch": 66.95063346439493,
+ "grad_norm": 0.21481701731681824,
+ "learning_rate": 0.0006,
+ "loss": 3.5121915340423584,
+ "step": 4820
+ },
+ {
+ "epoch": 66.9646133682831,
+ "grad_norm": 0.22060725092887878,
+ "learning_rate": 0.0006,
+ "loss": 3.5288822650909424,
+ "step": 4821
+ },
+ {
+ "epoch": 66.97859327217125,
+ "grad_norm": 0.22192992269992828,
+ "learning_rate": 0.0006,
+ "loss": 3.504401206970215,
+ "step": 4822
+ },
+ {
+ "epoch": 66.99257317605941,
+ "grad_norm": 0.21677598357200623,
+ "learning_rate": 0.0006,
+ "loss": 3.5447967052459717,
+ "step": 4823
+ },
+ {
+ "epoch": 67.0,
+ "grad_norm": 0.24961385130882263,
+ "learning_rate": 0.0006,
+ "loss": 3.4890012741088867,
+ "step": 4824
+ },
+ {
+ "epoch": 67.0,
+ "eval_loss": 3.9784040451049805,
+ "eval_runtime": 45.0843,
+ "eval_samples_per_second": 54.165,
+ "eval_steps_per_second": 3.394,
+ "step": 4824
+ },
+ {
+ "epoch": 67.01397990388816,
+ "grad_norm": 0.22992873191833496,
+ "learning_rate": 0.0006,
+ "loss": 3.470973491668701,
+ "step": 4825
+ },
+ {
+ "epoch": 67.02795980777633,
+ "grad_norm": 0.2189949005842209,
+ "learning_rate": 0.0006,
+ "loss": 3.4956774711608887,
+ "step": 4826
+ },
+ {
+ "epoch": 67.04193971166448,
+ "grad_norm": 0.22506096959114075,
+ "learning_rate": 0.0006,
+ "loss": 3.448911190032959,
+ "step": 4827
+ },
+ {
+ "epoch": 67.05591961555264,
+ "grad_norm": 0.2447187304496765,
+ "learning_rate": 0.0006,
+ "loss": 3.465512275695801,
+ "step": 4828
+ },
+ {
+ "epoch": 67.06989951944081,
+ "grad_norm": 0.27052751183509827,
+ "learning_rate": 0.0006,
+ "loss": 3.493760824203491,
+ "step": 4829
+ },
+ {
+ "epoch": 67.08387942332897,
+ "grad_norm": 0.29693296551704407,
+ "learning_rate": 0.0006,
+ "loss": 3.4922988414764404,
+ "step": 4830
+ },
+ {
+ "epoch": 67.09785932721712,
+ "grad_norm": 0.27461376786231995,
+ "learning_rate": 0.0006,
+ "loss": 3.4782471656799316,
+ "step": 4831
+ },
+ {
+ "epoch": 67.1118392311053,
+ "grad_norm": 0.21409225463867188,
+ "learning_rate": 0.0006,
+ "loss": 3.4636545181274414,
+ "step": 4832
+ },
+ {
+ "epoch": 67.12581913499345,
+ "grad_norm": 0.24362294375896454,
+ "learning_rate": 0.0006,
+ "loss": 3.4836316108703613,
+ "step": 4833
+ },
+ {
+ "epoch": 67.1397990388816,
+ "grad_norm": 0.3237941265106201,
+ "learning_rate": 0.0006,
+ "loss": 3.4853315353393555,
+ "step": 4834
+ },
+ {
+ "epoch": 67.15377894276976,
+ "grad_norm": 0.3138698935508728,
+ "learning_rate": 0.0006,
+ "loss": 3.5045557022094727,
+ "step": 4835
+ },
+ {
+ "epoch": 67.16775884665793,
+ "grad_norm": 0.24102728068828583,
+ "learning_rate": 0.0006,
+ "loss": 3.450237512588501,
+ "step": 4836
+ },
+ {
+ "epoch": 67.18173875054609,
+ "grad_norm": 0.22504228353500366,
+ "learning_rate": 0.0006,
+ "loss": 3.5141711235046387,
+ "step": 4837
+ },
+ {
+ "epoch": 67.19571865443424,
+ "grad_norm": 0.2226196974515915,
+ "learning_rate": 0.0006,
+ "loss": 3.4973597526550293,
+ "step": 4838
+ },
+ {
+ "epoch": 67.20969855832242,
+ "grad_norm": 0.23295332491397858,
+ "learning_rate": 0.0006,
+ "loss": 3.455085277557373,
+ "step": 4839
+ },
+ {
+ "epoch": 67.22367846221057,
+ "grad_norm": 0.24799001216888428,
+ "learning_rate": 0.0006,
+ "loss": 3.5016517639160156,
+ "step": 4840
+ },
+ {
+ "epoch": 67.23765836609873,
+ "grad_norm": 0.2431265115737915,
+ "learning_rate": 0.0006,
+ "loss": 3.5138516426086426,
+ "step": 4841
+ },
+ {
+ "epoch": 67.2516382699869,
+ "grad_norm": 0.22402037680149078,
+ "learning_rate": 0.0006,
+ "loss": 3.5154635906219482,
+ "step": 4842
+ },
+ {
+ "epoch": 67.26561817387505,
+ "grad_norm": 0.2097088098526001,
+ "learning_rate": 0.0006,
+ "loss": 3.512531280517578,
+ "step": 4843
+ },
+ {
+ "epoch": 67.27959807776321,
+ "grad_norm": 0.21303699910640717,
+ "learning_rate": 0.0006,
+ "loss": 3.489511728286743,
+ "step": 4844
+ },
+ {
+ "epoch": 67.29357798165138,
+ "grad_norm": 0.2164260894060135,
+ "learning_rate": 0.0006,
+ "loss": 3.521756172180176,
+ "step": 4845
+ },
+ {
+ "epoch": 67.30755788553954,
+ "grad_norm": 0.2179967612028122,
+ "learning_rate": 0.0006,
+ "loss": 3.4991297721862793,
+ "step": 4846
+ },
+ {
+ "epoch": 67.3215377894277,
+ "grad_norm": 0.21892501413822174,
+ "learning_rate": 0.0006,
+ "loss": 3.475011110305786,
+ "step": 4847
+ },
+ {
+ "epoch": 67.33551769331586,
+ "grad_norm": 0.2372686117887497,
+ "learning_rate": 0.0006,
+ "loss": 3.49537992477417,
+ "step": 4848
+ },
+ {
+ "epoch": 67.34949759720402,
+ "grad_norm": 0.24897949397563934,
+ "learning_rate": 0.0006,
+ "loss": 3.4762938022613525,
+ "step": 4849
+ },
+ {
+ "epoch": 67.36347750109218,
+ "grad_norm": 0.24987933039665222,
+ "learning_rate": 0.0006,
+ "loss": 3.511708974838257,
+ "step": 4850
+ },
+ {
+ "epoch": 67.37745740498035,
+ "grad_norm": 0.24062976241111755,
+ "learning_rate": 0.0006,
+ "loss": 3.4955873489379883,
+ "step": 4851
+ },
+ {
+ "epoch": 67.3914373088685,
+ "grad_norm": 0.2277272790670395,
+ "learning_rate": 0.0006,
+ "loss": 3.5036606788635254,
+ "step": 4852
+ },
+ {
+ "epoch": 67.40541721275666,
+ "grad_norm": 0.23996487259864807,
+ "learning_rate": 0.0006,
+ "loss": 3.515568971633911,
+ "step": 4853
+ },
+ {
+ "epoch": 67.41939711664482,
+ "grad_norm": 0.23224318027496338,
+ "learning_rate": 0.0006,
+ "loss": 3.4915125370025635,
+ "step": 4854
+ },
+ {
+ "epoch": 67.43337702053299,
+ "grad_norm": 0.21011298894882202,
+ "learning_rate": 0.0006,
+ "loss": 3.5076327323913574,
+ "step": 4855
+ },
+ {
+ "epoch": 67.44735692442114,
+ "grad_norm": 0.21975480020046234,
+ "learning_rate": 0.0006,
+ "loss": 3.4929163455963135,
+ "step": 4856
+ },
+ {
+ "epoch": 67.4613368283093,
+ "grad_norm": 0.21966299414634705,
+ "learning_rate": 0.0006,
+ "loss": 3.50154447555542,
+ "step": 4857
+ },
+ {
+ "epoch": 67.47531673219747,
+ "grad_norm": 0.2167058289051056,
+ "learning_rate": 0.0006,
+ "loss": 3.4866533279418945,
+ "step": 4858
+ },
+ {
+ "epoch": 67.48929663608563,
+ "grad_norm": 0.2072296291589737,
+ "learning_rate": 0.0006,
+ "loss": 3.506241798400879,
+ "step": 4859
+ },
+ {
+ "epoch": 67.50327653997378,
+ "grad_norm": 0.2358800321817398,
+ "learning_rate": 0.0006,
+ "loss": 3.51871919631958,
+ "step": 4860
+ },
+ {
+ "epoch": 67.51725644386195,
+ "grad_norm": 0.2841838598251343,
+ "learning_rate": 0.0006,
+ "loss": 3.531181812286377,
+ "step": 4861
+ },
+ {
+ "epoch": 67.53123634775011,
+ "grad_norm": 0.2744826078414917,
+ "learning_rate": 0.0006,
+ "loss": 3.4916810989379883,
+ "step": 4862
+ },
+ {
+ "epoch": 67.54521625163827,
+ "grad_norm": 0.229517862200737,
+ "learning_rate": 0.0006,
+ "loss": 3.522495746612549,
+ "step": 4863
+ },
+ {
+ "epoch": 67.55919615552644,
+ "grad_norm": 0.22933268547058105,
+ "learning_rate": 0.0006,
+ "loss": 3.522249698638916,
+ "step": 4864
+ },
+ {
+ "epoch": 67.57317605941459,
+ "grad_norm": 0.2578641176223755,
+ "learning_rate": 0.0006,
+ "loss": 3.497955799102783,
+ "step": 4865
+ },
+ {
+ "epoch": 67.58715596330275,
+ "grad_norm": 0.26098695397377014,
+ "learning_rate": 0.0006,
+ "loss": 3.508647918701172,
+ "step": 4866
+ },
+ {
+ "epoch": 67.60113586719092,
+ "grad_norm": 0.26429283618927,
+ "learning_rate": 0.0006,
+ "loss": 3.504948139190674,
+ "step": 4867
+ },
+ {
+ "epoch": 67.61511577107908,
+ "grad_norm": 0.2604367136955261,
+ "learning_rate": 0.0006,
+ "loss": 3.529656410217285,
+ "step": 4868
+ },
+ {
+ "epoch": 67.62909567496723,
+ "grad_norm": 0.26351016759872437,
+ "learning_rate": 0.0006,
+ "loss": 3.497729778289795,
+ "step": 4869
+ },
+ {
+ "epoch": 67.6430755788554,
+ "grad_norm": 0.23902031779289246,
+ "learning_rate": 0.0006,
+ "loss": 3.5174601078033447,
+ "step": 4870
+ },
+ {
+ "epoch": 67.65705548274356,
+ "grad_norm": 0.2439061552286148,
+ "learning_rate": 0.0006,
+ "loss": 3.472304344177246,
+ "step": 4871
+ },
+ {
+ "epoch": 67.67103538663171,
+ "grad_norm": 0.28729668259620667,
+ "learning_rate": 0.0006,
+ "loss": 3.4945883750915527,
+ "step": 4872
+ },
+ {
+ "epoch": 67.68501529051987,
+ "grad_norm": 0.2690763771533966,
+ "learning_rate": 0.0006,
+ "loss": 3.524843215942383,
+ "step": 4873
+ },
+ {
+ "epoch": 67.69899519440804,
+ "grad_norm": 0.24424311518669128,
+ "learning_rate": 0.0006,
+ "loss": 3.5337445735931396,
+ "step": 4874
+ },
+ {
+ "epoch": 67.7129750982962,
+ "grad_norm": 0.25736868381500244,
+ "learning_rate": 0.0006,
+ "loss": 3.51664400100708,
+ "step": 4875
+ },
+ {
+ "epoch": 67.72695500218435,
+ "grad_norm": 0.24504248797893524,
+ "learning_rate": 0.0006,
+ "loss": 3.5089268684387207,
+ "step": 4876
+ },
+ {
+ "epoch": 67.74093490607252,
+ "grad_norm": 0.24296091496944427,
+ "learning_rate": 0.0006,
+ "loss": 3.5506460666656494,
+ "step": 4877
+ },
+ {
+ "epoch": 67.75491480996068,
+ "grad_norm": 0.24984019994735718,
+ "learning_rate": 0.0006,
+ "loss": 3.5290684700012207,
+ "step": 4878
+ },
+ {
+ "epoch": 67.76889471384884,
+ "grad_norm": 0.23878677189350128,
+ "learning_rate": 0.0006,
+ "loss": 3.522343635559082,
+ "step": 4879
+ },
+ {
+ "epoch": 67.78287461773701,
+ "grad_norm": 0.2275245040655136,
+ "learning_rate": 0.0006,
+ "loss": 3.5218796730041504,
+ "step": 4880
+ },
+ {
+ "epoch": 67.79685452162516,
+ "grad_norm": 0.21045760810375214,
+ "learning_rate": 0.0006,
+ "loss": 3.512430191040039,
+ "step": 4881
+ },
+ {
+ "epoch": 67.81083442551332,
+ "grad_norm": 0.21902696788311005,
+ "learning_rate": 0.0006,
+ "loss": 3.537611484527588,
+ "step": 4882
+ },
+ {
+ "epoch": 67.82481432940149,
+ "grad_norm": 0.20757564902305603,
+ "learning_rate": 0.0006,
+ "loss": 3.470278263092041,
+ "step": 4883
+ },
+ {
+ "epoch": 67.83879423328965,
+ "grad_norm": 0.22352434694766998,
+ "learning_rate": 0.0006,
+ "loss": 3.4816718101501465,
+ "step": 4884
+ },
+ {
+ "epoch": 67.8527741371778,
+ "grad_norm": 0.20459680259227753,
+ "learning_rate": 0.0006,
+ "loss": 3.508671998977661,
+ "step": 4885
+ },
+ {
+ "epoch": 67.86675404106597,
+ "grad_norm": 0.20641672611236572,
+ "learning_rate": 0.0006,
+ "loss": 3.500471591949463,
+ "step": 4886
+ },
+ {
+ "epoch": 67.88073394495413,
+ "grad_norm": 0.20340596139431,
+ "learning_rate": 0.0006,
+ "loss": 3.5282673835754395,
+ "step": 4887
+ },
+ {
+ "epoch": 67.89471384884229,
+ "grad_norm": 0.20768426358699799,
+ "learning_rate": 0.0006,
+ "loss": 3.528446912765503,
+ "step": 4888
+ },
+ {
+ "epoch": 67.90869375273044,
+ "grad_norm": 0.19998659193515778,
+ "learning_rate": 0.0006,
+ "loss": 3.501742124557495,
+ "step": 4889
+ },
+ {
+ "epoch": 67.92267365661861,
+ "grad_norm": 0.20472751557826996,
+ "learning_rate": 0.0006,
+ "loss": 3.510523796081543,
+ "step": 4890
+ },
+ {
+ "epoch": 67.93665356050677,
+ "grad_norm": 0.21528398990631104,
+ "learning_rate": 0.0006,
+ "loss": 3.529409170150757,
+ "step": 4891
+ },
+ {
+ "epoch": 67.95063346439493,
+ "grad_norm": 0.19671283662319183,
+ "learning_rate": 0.0006,
+ "loss": 3.5512051582336426,
+ "step": 4892
+ },
+ {
+ "epoch": 67.9646133682831,
+ "grad_norm": 0.20629945397377014,
+ "learning_rate": 0.0006,
+ "loss": 3.5127525329589844,
+ "step": 4893
+ },
+ {
+ "epoch": 67.97859327217125,
+ "grad_norm": 0.2121579945087433,
+ "learning_rate": 0.0006,
+ "loss": 3.5242156982421875,
+ "step": 4894
+ },
+ {
+ "epoch": 67.99257317605941,
+ "grad_norm": 0.20770777761936188,
+ "learning_rate": 0.0006,
+ "loss": 3.5094361305236816,
+ "step": 4895
+ },
+ {
+ "epoch": 68.0,
+ "grad_norm": 0.2619984447956085,
+ "learning_rate": 0.0006,
+ "loss": 3.491684675216675,
+ "step": 4896
+ },
+ {
+ "epoch": 68.0,
+ "eval_loss": 3.97202730178833,
+ "eval_runtime": 44.2471,
+ "eval_samples_per_second": 55.19,
+ "eval_steps_per_second": 3.458,
+ "step": 4896
+ },
+ {
+ "epoch": 68.01397990388816,
+ "grad_norm": 0.25237807631492615,
+ "learning_rate": 0.0006,
+ "loss": 3.4720845222473145,
+ "step": 4897
+ },
+ {
+ "epoch": 68.02795980777633,
+ "grad_norm": 0.26686927676200867,
+ "learning_rate": 0.0006,
+ "loss": 3.4825453758239746,
+ "step": 4898
+ },
+ {
+ "epoch": 68.04193971166448,
+ "grad_norm": 0.2826477885246277,
+ "learning_rate": 0.0006,
+ "loss": 3.489805221557617,
+ "step": 4899
+ },
+ {
+ "epoch": 68.05591961555264,
+ "grad_norm": 0.291363000869751,
+ "learning_rate": 0.0006,
+ "loss": 3.464585304260254,
+ "step": 4900
+ },
+ {
+ "epoch": 68.06989951944081,
+ "grad_norm": 0.2645387649536133,
+ "learning_rate": 0.0006,
+ "loss": 3.4891953468322754,
+ "step": 4901
+ },
+ {
+ "epoch": 68.08387942332897,
+ "grad_norm": 0.2398659586906433,
+ "learning_rate": 0.0006,
+ "loss": 3.474371910095215,
+ "step": 4902
+ },
+ {
+ "epoch": 68.09785932721712,
+ "grad_norm": 0.23359309136867523,
+ "learning_rate": 0.0006,
+ "loss": 3.5011367797851562,
+ "step": 4903
+ },
+ {
+ "epoch": 68.1118392311053,
+ "grad_norm": 0.235616534948349,
+ "learning_rate": 0.0006,
+ "loss": 3.472562551498413,
+ "step": 4904
+ },
+ {
+ "epoch": 68.12581913499345,
+ "grad_norm": 0.25396600365638733,
+ "learning_rate": 0.0006,
+ "loss": 3.484182834625244,
+ "step": 4905
+ },
+ {
+ "epoch": 68.1397990388816,
+ "grad_norm": 0.2668958604335785,
+ "learning_rate": 0.0006,
+ "loss": 3.4625918865203857,
+ "step": 4906
+ },
+ {
+ "epoch": 68.15377894276976,
+ "grad_norm": 0.2608959674835205,
+ "learning_rate": 0.0006,
+ "loss": 3.4769415855407715,
+ "step": 4907
+ },
+ {
+ "epoch": 68.16775884665793,
+ "grad_norm": 0.2817389667034149,
+ "learning_rate": 0.0006,
+ "loss": 3.4722979068756104,
+ "step": 4908
+ },
+ {
+ "epoch": 68.18173875054609,
+ "grad_norm": 0.24425546824932098,
+ "learning_rate": 0.0006,
+ "loss": 3.4710354804992676,
+ "step": 4909
+ },
+ {
+ "epoch": 68.19571865443424,
+ "grad_norm": 0.2355373501777649,
+ "learning_rate": 0.0006,
+ "loss": 3.475369453430176,
+ "step": 4910
+ },
+ {
+ "epoch": 68.20969855832242,
+ "grad_norm": 0.23627427220344543,
+ "learning_rate": 0.0006,
+ "loss": 3.50154447555542,
+ "step": 4911
+ },
+ {
+ "epoch": 68.22367846221057,
+ "grad_norm": 0.21174706518650055,
+ "learning_rate": 0.0006,
+ "loss": 3.5018253326416016,
+ "step": 4912
+ },
+ {
+ "epoch": 68.23765836609873,
+ "grad_norm": 0.2101593017578125,
+ "learning_rate": 0.0006,
+ "loss": 3.4931211471557617,
+ "step": 4913
+ },
+ {
+ "epoch": 68.2516382699869,
+ "grad_norm": 0.21808475255966187,
+ "learning_rate": 0.0006,
+ "loss": 3.5047576427459717,
+ "step": 4914
+ },
+ {
+ "epoch": 68.26561817387505,
+ "grad_norm": 0.2354060262441635,
+ "learning_rate": 0.0006,
+ "loss": 3.471801996231079,
+ "step": 4915
+ },
+ {
+ "epoch": 68.27959807776321,
+ "grad_norm": 0.2839724123477936,
+ "learning_rate": 0.0006,
+ "loss": 3.4861397743225098,
+ "step": 4916
+ },
+ {
+ "epoch": 68.29357798165138,
+ "grad_norm": 0.2884398102760315,
+ "learning_rate": 0.0006,
+ "loss": 3.497713088989258,
+ "step": 4917
+ },
+ {
+ "epoch": 68.30755788553954,
+ "grad_norm": 0.24654951691627502,
+ "learning_rate": 0.0006,
+ "loss": 3.4795613288879395,
+ "step": 4918
+ },
+ {
+ "epoch": 68.3215377894277,
+ "grad_norm": 0.22197365760803223,
+ "learning_rate": 0.0006,
+ "loss": 3.495490550994873,
+ "step": 4919
+ },
+ {
+ "epoch": 68.33551769331586,
+ "grad_norm": 0.22666935622692108,
+ "learning_rate": 0.0006,
+ "loss": 3.4859418869018555,
+ "step": 4920
+ },
+ {
+ "epoch": 68.34949759720402,
+ "grad_norm": 0.22135236859321594,
+ "learning_rate": 0.0006,
+ "loss": 3.475436210632324,
+ "step": 4921
+ },
+ {
+ "epoch": 68.36347750109218,
+ "grad_norm": 0.28992167115211487,
+ "learning_rate": 0.0006,
+ "loss": 3.5220274925231934,
+ "step": 4922
+ },
+ {
+ "epoch": 68.37745740498035,
+ "grad_norm": 0.296501100063324,
+ "learning_rate": 0.0006,
+ "loss": 3.4783244132995605,
+ "step": 4923
+ },
+ {
+ "epoch": 68.3914373088685,
+ "grad_norm": 0.24111351370811462,
+ "learning_rate": 0.0006,
+ "loss": 3.4972972869873047,
+ "step": 4924
+ },
+ {
+ "epoch": 68.40541721275666,
+ "grad_norm": 0.22319315373897552,
+ "learning_rate": 0.0006,
+ "loss": 3.517050266265869,
+ "step": 4925
+ },
+ {
+ "epoch": 68.41939711664482,
+ "grad_norm": 0.20984329283237457,
+ "learning_rate": 0.0006,
+ "loss": 3.5097880363464355,
+ "step": 4926
+ },
+ {
+ "epoch": 68.43337702053299,
+ "grad_norm": 0.2221212387084961,
+ "learning_rate": 0.0006,
+ "loss": 3.4824156761169434,
+ "step": 4927
+ },
+ {
+ "epoch": 68.44735692442114,
+ "grad_norm": 0.23731078207492828,
+ "learning_rate": 0.0006,
+ "loss": 3.5319526195526123,
+ "step": 4928
+ },
+ {
+ "epoch": 68.4613368283093,
+ "grad_norm": 0.233421191573143,
+ "learning_rate": 0.0006,
+ "loss": 3.4952187538146973,
+ "step": 4929
+ },
+ {
+ "epoch": 68.47531673219747,
+ "grad_norm": 0.2320558875799179,
+ "learning_rate": 0.0006,
+ "loss": 3.5152385234832764,
+ "step": 4930
+ },
+ {
+ "epoch": 68.48929663608563,
+ "grad_norm": 0.21786290407180786,
+ "learning_rate": 0.0006,
+ "loss": 3.4857373237609863,
+ "step": 4931
+ },
+ {
+ "epoch": 68.50327653997378,
+ "grad_norm": 0.20560047030448914,
+ "learning_rate": 0.0006,
+ "loss": 3.487344264984131,
+ "step": 4932
+ },
+ {
+ "epoch": 68.51725644386195,
+ "grad_norm": 0.2326865941286087,
+ "learning_rate": 0.0006,
+ "loss": 3.5202066898345947,
+ "step": 4933
+ },
+ {
+ "epoch": 68.53123634775011,
+ "grad_norm": 0.2338377833366394,
+ "learning_rate": 0.0006,
+ "loss": 3.4967358112335205,
+ "step": 4934
+ },
+ {
+ "epoch": 68.54521625163827,
+ "grad_norm": 0.22698800265789032,
+ "learning_rate": 0.0006,
+ "loss": 3.484452724456787,
+ "step": 4935
+ },
+ {
+ "epoch": 68.55919615552644,
+ "grad_norm": 0.21141181886196136,
+ "learning_rate": 0.0006,
+ "loss": 3.4950156211853027,
+ "step": 4936
+ },
+ {
+ "epoch": 68.57317605941459,
+ "grad_norm": 0.22393199801445007,
+ "learning_rate": 0.0006,
+ "loss": 3.4950199127197266,
+ "step": 4937
+ },
+ {
+ "epoch": 68.58715596330275,
+ "grad_norm": 0.22276045382022858,
+ "learning_rate": 0.0006,
+ "loss": 3.5180115699768066,
+ "step": 4938
+ },
+ {
+ "epoch": 68.60113586719092,
+ "grad_norm": 0.22738748788833618,
+ "learning_rate": 0.0006,
+ "loss": 3.5053911209106445,
+ "step": 4939
+ },
+ {
+ "epoch": 68.61511577107908,
+ "grad_norm": 0.21496275067329407,
+ "learning_rate": 0.0006,
+ "loss": 3.5315306186676025,
+ "step": 4940
+ },
+ {
+ "epoch": 68.62909567496723,
+ "grad_norm": 0.20695674419403076,
+ "learning_rate": 0.0006,
+ "loss": 3.514780044555664,
+ "step": 4941
+ },
+ {
+ "epoch": 68.6430755788554,
+ "grad_norm": 0.22777840495109558,
+ "learning_rate": 0.0006,
+ "loss": 3.5249099731445312,
+ "step": 4942
+ },
+ {
+ "epoch": 68.65705548274356,
+ "grad_norm": 0.26664453744888306,
+ "learning_rate": 0.0006,
+ "loss": 3.4763400554656982,
+ "step": 4943
+ },
+ {
+ "epoch": 68.67103538663171,
+ "grad_norm": 0.3005792498588562,
+ "learning_rate": 0.0006,
+ "loss": 3.4936861991882324,
+ "step": 4944
+ },
+ {
+ "epoch": 68.68501529051987,
+ "grad_norm": 0.2860395908355713,
+ "learning_rate": 0.0006,
+ "loss": 3.4994754791259766,
+ "step": 4945
+ },
+ {
+ "epoch": 68.69899519440804,
+ "grad_norm": 0.21164822578430176,
+ "learning_rate": 0.0006,
+ "loss": 3.5011136531829834,
+ "step": 4946
+ },
+ {
+ "epoch": 68.7129750982962,
+ "grad_norm": 0.2122834324836731,
+ "learning_rate": 0.0006,
+ "loss": 3.52018404006958,
+ "step": 4947
+ },
+ {
+ "epoch": 68.72695500218435,
+ "grad_norm": 0.23951229453086853,
+ "learning_rate": 0.0006,
+ "loss": 3.4910717010498047,
+ "step": 4948
+ },
+ {
+ "epoch": 68.74093490607252,
+ "grad_norm": 0.22745490074157715,
+ "learning_rate": 0.0006,
+ "loss": 3.5251622200012207,
+ "step": 4949
+ },
+ {
+ "epoch": 68.75491480996068,
+ "grad_norm": 0.21616250276565552,
+ "learning_rate": 0.0006,
+ "loss": 3.4933743476867676,
+ "step": 4950
+ },
+ {
+ "epoch": 68.76889471384884,
+ "grad_norm": 0.2164236605167389,
+ "learning_rate": 0.0006,
+ "loss": 3.513286590576172,
+ "step": 4951
+ },
+ {
+ "epoch": 68.78287461773701,
+ "grad_norm": 0.2450464814901352,
+ "learning_rate": 0.0006,
+ "loss": 3.5084245204925537,
+ "step": 4952
+ },
+ {
+ "epoch": 68.79685452162516,
+ "grad_norm": 0.29221615195274353,
+ "learning_rate": 0.0006,
+ "loss": 3.5463311672210693,
+ "step": 4953
+ },
+ {
+ "epoch": 68.81083442551332,
+ "grad_norm": 0.24574553966522217,
+ "learning_rate": 0.0006,
+ "loss": 3.5099716186523438,
+ "step": 4954
+ },
+ {
+ "epoch": 68.82481432940149,
+ "grad_norm": 0.20879139006137848,
+ "learning_rate": 0.0006,
+ "loss": 3.5220701694488525,
+ "step": 4955
+ },
+ {
+ "epoch": 68.83879423328965,
+ "grad_norm": 0.295693963766098,
+ "learning_rate": 0.0006,
+ "loss": 3.4854037761688232,
+ "step": 4956
+ },
+ {
+ "epoch": 68.8527741371778,
+ "grad_norm": 0.35441911220550537,
+ "learning_rate": 0.0006,
+ "loss": 3.5216379165649414,
+ "step": 4957
+ },
+ {
+ "epoch": 68.86675404106597,
+ "grad_norm": 0.2840341031551361,
+ "learning_rate": 0.0006,
+ "loss": 3.5208358764648438,
+ "step": 4958
+ },
+ {
+ "epoch": 68.88073394495413,
+ "grad_norm": 0.2082499861717224,
+ "learning_rate": 0.0006,
+ "loss": 3.5028862953186035,
+ "step": 4959
+ },
+ {
+ "epoch": 68.89471384884229,
+ "grad_norm": 0.2505369186401367,
+ "learning_rate": 0.0006,
+ "loss": 3.4982357025146484,
+ "step": 4960
+ },
+ {
+ "epoch": 68.90869375273044,
+ "grad_norm": 0.24573875963687897,
+ "learning_rate": 0.0006,
+ "loss": 3.5239524841308594,
+ "step": 4961
+ },
+ {
+ "epoch": 68.92267365661861,
+ "grad_norm": 0.23462185263633728,
+ "learning_rate": 0.0006,
+ "loss": 3.544379234313965,
+ "step": 4962
+ },
+ {
+ "epoch": 68.93665356050677,
+ "grad_norm": 0.26491034030914307,
+ "learning_rate": 0.0006,
+ "loss": 3.518372058868408,
+ "step": 4963
+ },
+ {
+ "epoch": 68.95063346439493,
+ "grad_norm": 0.2729686498641968,
+ "learning_rate": 0.0006,
+ "loss": 3.517185926437378,
+ "step": 4964
+ },
+ {
+ "epoch": 68.9646133682831,
+ "grad_norm": 0.26077502965927124,
+ "learning_rate": 0.0006,
+ "loss": 3.5147576332092285,
+ "step": 4965
+ },
+ {
+ "epoch": 68.97859327217125,
+ "grad_norm": 0.2313229888677597,
+ "learning_rate": 0.0006,
+ "loss": 3.5008926391601562,
+ "step": 4966
+ },
+ {
+ "epoch": 68.99257317605941,
+ "grad_norm": 0.21773307025432587,
+ "learning_rate": 0.0006,
+ "loss": 3.5004096031188965,
+ "step": 4967
+ },
+ {
+ "epoch": 69.0,
+ "grad_norm": 0.2326030433177948,
+ "learning_rate": 0.0006,
+ "loss": 3.5572075843811035,
+ "step": 4968
+ },
+ {
+ "epoch": 69.0,
+ "eval_loss": 3.993666410446167,
+ "eval_runtime": 45.2778,
+ "eval_samples_per_second": 53.934,
+ "eval_steps_per_second": 3.379,
+ "step": 4968
+ },
+ {
+ "epoch": 69.01397990388816,
+ "grad_norm": 0.22886492311954498,
+ "learning_rate": 0.0006,
+ "loss": 3.4994781017303467,
+ "step": 4969
+ },
+ {
+ "epoch": 69.02795980777633,
+ "grad_norm": 0.2972700595855713,
+ "learning_rate": 0.0006,
+ "loss": 3.5022270679473877,
+ "step": 4970
+ },
+ {
+ "epoch": 69.04193971166448,
+ "grad_norm": 0.32146573066711426,
+ "learning_rate": 0.0006,
+ "loss": 3.49113130569458,
+ "step": 4971
+ },
+ {
+ "epoch": 69.05591961555264,
+ "grad_norm": 0.26019641757011414,
+ "learning_rate": 0.0006,
+ "loss": 3.4609522819519043,
+ "step": 4972
+ },
+ {
+ "epoch": 69.06989951944081,
+ "grad_norm": 0.2116279900074005,
+ "learning_rate": 0.0006,
+ "loss": 3.518007278442383,
+ "step": 4973
+ },
+ {
+ "epoch": 69.08387942332897,
+ "grad_norm": 0.24797578155994415,
+ "learning_rate": 0.0006,
+ "loss": 3.465017318725586,
+ "step": 4974
+ },
+ {
+ "epoch": 69.09785932721712,
+ "grad_norm": 0.2988112270832062,
+ "learning_rate": 0.0006,
+ "loss": 3.46774959564209,
+ "step": 4975
+ },
+ {
+ "epoch": 69.1118392311053,
+ "grad_norm": 0.2741694450378418,
+ "learning_rate": 0.0006,
+ "loss": 3.4726247787475586,
+ "step": 4976
+ },
+ {
+ "epoch": 69.12581913499345,
+ "grad_norm": 0.246512308716774,
+ "learning_rate": 0.0006,
+ "loss": 3.4634053707122803,
+ "step": 4977
+ },
+ {
+ "epoch": 69.1397990388816,
+ "grad_norm": 0.25938132405281067,
+ "learning_rate": 0.0006,
+ "loss": 3.4496707916259766,
+ "step": 4978
+ },
+ {
+ "epoch": 69.15377894276976,
+ "grad_norm": 0.30637112259864807,
+ "learning_rate": 0.0006,
+ "loss": 3.4703760147094727,
+ "step": 4979
+ },
+ {
+ "epoch": 69.16775884665793,
+ "grad_norm": 0.26681914925575256,
+ "learning_rate": 0.0006,
+ "loss": 3.50388240814209,
+ "step": 4980
+ },
+ {
+ "epoch": 69.18173875054609,
+ "grad_norm": 0.24075748026371002,
+ "learning_rate": 0.0006,
+ "loss": 3.517247438430786,
+ "step": 4981
+ },
+ {
+ "epoch": 69.19571865443424,
+ "grad_norm": 0.21730124950408936,
+ "learning_rate": 0.0006,
+ "loss": 3.49320650100708,
+ "step": 4982
+ },
+ {
+ "epoch": 69.20969855832242,
+ "grad_norm": 0.21399953961372375,
+ "learning_rate": 0.0006,
+ "loss": 3.4763529300689697,
+ "step": 4983
+ },
+ {
+ "epoch": 69.22367846221057,
+ "grad_norm": 0.22505059838294983,
+ "learning_rate": 0.0006,
+ "loss": 3.4744338989257812,
+ "step": 4984
+ },
+ {
+ "epoch": 69.23765836609873,
+ "grad_norm": 0.23260554671287537,
+ "learning_rate": 0.0006,
+ "loss": 3.469099760055542,
+ "step": 4985
+ },
+ {
+ "epoch": 69.2516382699869,
+ "grad_norm": 0.2212911993265152,
+ "learning_rate": 0.0006,
+ "loss": 3.484243869781494,
+ "step": 4986
+ },
+ {
+ "epoch": 69.26561817387505,
+ "grad_norm": 0.22414085268974304,
+ "learning_rate": 0.0006,
+ "loss": 3.485083818435669,
+ "step": 4987
+ },
+ {
+ "epoch": 69.27959807776321,
+ "grad_norm": 0.2222541719675064,
+ "learning_rate": 0.0006,
+ "loss": 3.4827499389648438,
+ "step": 4988
+ },
+ {
+ "epoch": 69.29357798165138,
+ "grad_norm": 0.23511181771755219,
+ "learning_rate": 0.0006,
+ "loss": 3.4688282012939453,
+ "step": 4989
+ },
+ {
+ "epoch": 69.30755788553954,
+ "grad_norm": 0.23599068820476532,
+ "learning_rate": 0.0006,
+ "loss": 3.498142719268799,
+ "step": 4990
+ },
+ {
+ "epoch": 69.3215377894277,
+ "grad_norm": 0.22533927857875824,
+ "learning_rate": 0.0006,
+ "loss": 3.4815826416015625,
+ "step": 4991
+ },
+ {
+ "epoch": 69.33551769331586,
+ "grad_norm": 0.2343030720949173,
+ "learning_rate": 0.0006,
+ "loss": 3.483752489089966,
+ "step": 4992
+ },
+ {
+ "epoch": 69.34949759720402,
+ "grad_norm": 0.23283112049102783,
+ "learning_rate": 0.0006,
+ "loss": 3.4877965450286865,
+ "step": 4993
+ },
+ {
+ "epoch": 69.36347750109218,
+ "grad_norm": 0.24869517982006073,
+ "learning_rate": 0.0006,
+ "loss": 3.480337142944336,
+ "step": 4994
+ },
+ {
+ "epoch": 69.37745740498035,
+ "grad_norm": 0.22779154777526855,
+ "learning_rate": 0.0006,
+ "loss": 3.4828710556030273,
+ "step": 4995
+ },
+ {
+ "epoch": 69.3914373088685,
+ "grad_norm": 0.22645261883735657,
+ "learning_rate": 0.0006,
+ "loss": 3.509845018386841,
+ "step": 4996
+ },
+ {
+ "epoch": 69.40541721275666,
+ "grad_norm": 0.2432178109884262,
+ "learning_rate": 0.0006,
+ "loss": 3.4617137908935547,
+ "step": 4997
+ },
+ {
+ "epoch": 69.41939711664482,
+ "grad_norm": 0.2587018311023712,
+ "learning_rate": 0.0006,
+ "loss": 3.4713127613067627,
+ "step": 4998
+ },
+ {
+ "epoch": 69.43337702053299,
+ "grad_norm": 0.21907378733158112,
+ "learning_rate": 0.0006,
+ "loss": 3.509188175201416,
+ "step": 4999
+ },
+ {
+ "epoch": 69.44735692442114,
+ "grad_norm": 0.22740772366523743,
+ "learning_rate": 0.0006,
+ "loss": 3.4754276275634766,
+ "step": 5000
+ },
+ {
+ "epoch": 69.4613368283093,
+ "grad_norm": 0.21934257447719574,
+ "learning_rate": 0.0006,
+ "loss": 3.4663891792297363,
+ "step": 5001
+ },
+ {
+ "epoch": 69.47531673219747,
+ "grad_norm": 0.2244742065668106,
+ "learning_rate": 0.0006,
+ "loss": 3.4800233840942383,
+ "step": 5002
+ },
+ {
+ "epoch": 69.48929663608563,
+ "grad_norm": 0.20470912754535675,
+ "learning_rate": 0.0006,
+ "loss": 3.5089359283447266,
+ "step": 5003
+ },
+ {
+ "epoch": 69.50327653997378,
+ "grad_norm": 0.21532751619815826,
+ "learning_rate": 0.0006,
+ "loss": 3.5029287338256836,
+ "step": 5004
+ },
+ {
+ "epoch": 69.51725644386195,
+ "grad_norm": 0.2311217337846756,
+ "learning_rate": 0.0006,
+ "loss": 3.5031962394714355,
+ "step": 5005
+ },
+ {
+ "epoch": 69.53123634775011,
+ "grad_norm": 0.22248436510562897,
+ "learning_rate": 0.0006,
+ "loss": 3.5059356689453125,
+ "step": 5006
+ },
+ {
+ "epoch": 69.54521625163827,
+ "grad_norm": 0.2108408361673355,
+ "learning_rate": 0.0006,
+ "loss": 3.498697280883789,
+ "step": 5007
+ },
+ {
+ "epoch": 69.55919615552644,
+ "grad_norm": 0.22833184897899628,
+ "learning_rate": 0.0006,
+ "loss": 3.505685806274414,
+ "step": 5008
+ },
+ {
+ "epoch": 69.57317605941459,
+ "grad_norm": 0.22630111873149872,
+ "learning_rate": 0.0006,
+ "loss": 3.497771978378296,
+ "step": 5009
+ },
+ {
+ "epoch": 69.58715596330275,
+ "grad_norm": 0.23363569378852844,
+ "learning_rate": 0.0006,
+ "loss": 3.5422916412353516,
+ "step": 5010
+ },
+ {
+ "epoch": 69.60113586719092,
+ "grad_norm": 0.23720940947532654,
+ "learning_rate": 0.0006,
+ "loss": 3.504817008972168,
+ "step": 5011
+ },
+ {
+ "epoch": 69.61511577107908,
+ "grad_norm": 0.22822913527488708,
+ "learning_rate": 0.0006,
+ "loss": 3.51149320602417,
+ "step": 5012
+ },
+ {
+ "epoch": 69.62909567496723,
+ "grad_norm": 0.24143314361572266,
+ "learning_rate": 0.0006,
+ "loss": 3.509063720703125,
+ "step": 5013
+ },
+ {
+ "epoch": 69.6430755788554,
+ "grad_norm": 0.2394775152206421,
+ "learning_rate": 0.0006,
+ "loss": 3.5275425910949707,
+ "step": 5014
+ },
+ {
+ "epoch": 69.65705548274356,
+ "grad_norm": 0.23898433148860931,
+ "learning_rate": 0.0006,
+ "loss": 3.5251870155334473,
+ "step": 5015
+ },
+ {
+ "epoch": 69.67103538663171,
+ "grad_norm": 0.22647695243358612,
+ "learning_rate": 0.0006,
+ "loss": 3.4790940284729004,
+ "step": 5016
+ },
+ {
+ "epoch": 69.68501529051987,
+ "grad_norm": 0.23094546794891357,
+ "learning_rate": 0.0006,
+ "loss": 3.515676975250244,
+ "step": 5017
+ },
+ {
+ "epoch": 69.69899519440804,
+ "grad_norm": 0.21791698038578033,
+ "learning_rate": 0.0006,
+ "loss": 3.4938859939575195,
+ "step": 5018
+ },
+ {
+ "epoch": 69.7129750982962,
+ "grad_norm": 0.2420767843723297,
+ "learning_rate": 0.0006,
+ "loss": 3.489206075668335,
+ "step": 5019
+ },
+ {
+ "epoch": 69.72695500218435,
+ "grad_norm": 0.22724151611328125,
+ "learning_rate": 0.0006,
+ "loss": 3.502804756164551,
+ "step": 5020
+ },
+ {
+ "epoch": 69.74093490607252,
+ "grad_norm": 0.23462660610675812,
+ "learning_rate": 0.0006,
+ "loss": 3.4947867393493652,
+ "step": 5021
+ },
+ {
+ "epoch": 69.75491480996068,
+ "grad_norm": 0.2545832097530365,
+ "learning_rate": 0.0006,
+ "loss": 3.500843048095703,
+ "step": 5022
+ },
+ {
+ "epoch": 69.76889471384884,
+ "grad_norm": 0.26692283153533936,
+ "learning_rate": 0.0006,
+ "loss": 3.5054852962493896,
+ "step": 5023
+ },
+ {
+ "epoch": 69.78287461773701,
+ "grad_norm": 0.22788259387016296,
+ "learning_rate": 0.0006,
+ "loss": 3.5261473655700684,
+ "step": 5024
+ },
+ {
+ "epoch": 69.79685452162516,
+ "grad_norm": 0.24453137814998627,
+ "learning_rate": 0.0006,
+ "loss": 3.5090155601501465,
+ "step": 5025
+ },
+ {
+ "epoch": 69.81083442551332,
+ "grad_norm": 0.27876126766204834,
+ "learning_rate": 0.0006,
+ "loss": 3.5091753005981445,
+ "step": 5026
+ },
+ {
+ "epoch": 69.82481432940149,
+ "grad_norm": 0.280249685049057,
+ "learning_rate": 0.0006,
+ "loss": 3.5129857063293457,
+ "step": 5027
+ },
+ {
+ "epoch": 69.83879423328965,
+ "grad_norm": 0.2260117530822754,
+ "learning_rate": 0.0006,
+ "loss": 3.5320475101470947,
+ "step": 5028
+ },
+ {
+ "epoch": 69.8527741371778,
+ "grad_norm": 0.2237965613603592,
+ "learning_rate": 0.0006,
+ "loss": 3.5061261653900146,
+ "step": 5029
+ },
+ {
+ "epoch": 69.86675404106597,
+ "grad_norm": 0.226779967546463,
+ "learning_rate": 0.0006,
+ "loss": 3.5076608657836914,
+ "step": 5030
+ },
+ {
+ "epoch": 69.88073394495413,
+ "grad_norm": 0.23626334965229034,
+ "learning_rate": 0.0006,
+ "loss": 3.50716495513916,
+ "step": 5031
+ },
+ {
+ "epoch": 69.89471384884229,
+ "grad_norm": 0.2639276385307312,
+ "learning_rate": 0.0006,
+ "loss": 3.5299901962280273,
+ "step": 5032
+ },
+ {
+ "epoch": 69.90869375273044,
+ "grad_norm": 0.23369482159614563,
+ "learning_rate": 0.0006,
+ "loss": 3.5289621353149414,
+ "step": 5033
+ },
+ {
+ "epoch": 69.92267365661861,
+ "grad_norm": 0.23041120171546936,
+ "learning_rate": 0.0006,
+ "loss": 3.5174753665924072,
+ "step": 5034
+ },
+ {
+ "epoch": 69.93665356050677,
+ "grad_norm": 0.21268987655639648,
+ "learning_rate": 0.0006,
+ "loss": 3.506927967071533,
+ "step": 5035
+ },
+ {
+ "epoch": 69.95063346439493,
+ "grad_norm": 0.22524571418762207,
+ "learning_rate": 0.0006,
+ "loss": 3.5054068565368652,
+ "step": 5036
+ },
+ {
+ "epoch": 69.9646133682831,
+ "grad_norm": 0.26068753004074097,
+ "learning_rate": 0.0006,
+ "loss": 3.502107620239258,
+ "step": 5037
+ },
+ {
+ "epoch": 69.97859327217125,
+ "grad_norm": 0.2473640888929367,
+ "learning_rate": 0.0006,
+ "loss": 3.4879817962646484,
+ "step": 5038
+ },
+ {
+ "epoch": 69.99257317605941,
+ "grad_norm": 0.23933477699756622,
+ "learning_rate": 0.0006,
+ "loss": 3.52518892288208,
+ "step": 5039
+ },
+ {
+ "epoch": 70.0,
+ "grad_norm": 0.26498401165008545,
+ "learning_rate": 0.0006,
+ "loss": 3.528074026107788,
+ "step": 5040
+ },
+ {
+ "epoch": 70.0,
+ "eval_loss": 3.9862265586853027,
+ "eval_runtime": 45.1344,
+ "eval_samples_per_second": 54.105,
+ "eval_steps_per_second": 3.39,
+ "step": 5040
+ },
+ {
+ "epoch": 70.01397990388816,
+ "grad_norm": 0.23711830377578735,
+ "learning_rate": 0.0006,
+ "loss": 3.4622411727905273,
+ "step": 5041
+ },
+ {
+ "epoch": 70.02795980777633,
+ "grad_norm": 0.25422438979148865,
+ "learning_rate": 0.0006,
+ "loss": 3.4546890258789062,
+ "step": 5042
+ },
+ {
+ "epoch": 70.04193971166448,
+ "grad_norm": 0.2520093619823456,
+ "learning_rate": 0.0006,
+ "loss": 3.4625046253204346,
+ "step": 5043
+ },
+ {
+ "epoch": 70.05591961555264,
+ "grad_norm": 0.23353877663612366,
+ "learning_rate": 0.0006,
+ "loss": 3.5090699195861816,
+ "step": 5044
+ },
+ {
+ "epoch": 70.06989951944081,
+ "grad_norm": 0.2775326669216156,
+ "learning_rate": 0.0006,
+ "loss": 3.4860758781433105,
+ "step": 5045
+ },
+ {
+ "epoch": 70.08387942332897,
+ "grad_norm": 0.297573447227478,
+ "learning_rate": 0.0006,
+ "loss": 3.5181596279144287,
+ "step": 5046
+ },
+ {
+ "epoch": 70.09785932721712,
+ "grad_norm": 0.29662513732910156,
+ "learning_rate": 0.0006,
+ "loss": 3.4715771675109863,
+ "step": 5047
+ },
+ {
+ "epoch": 70.1118392311053,
+ "grad_norm": 0.2619902193546295,
+ "learning_rate": 0.0006,
+ "loss": 3.430412769317627,
+ "step": 5048
+ },
+ {
+ "epoch": 70.12581913499345,
+ "grad_norm": 0.21740001440048218,
+ "learning_rate": 0.0006,
+ "loss": 3.473442792892456,
+ "step": 5049
+ },
+ {
+ "epoch": 70.1397990388816,
+ "grad_norm": 0.221281036734581,
+ "learning_rate": 0.0006,
+ "loss": 3.4651594161987305,
+ "step": 5050
+ },
+ {
+ "epoch": 70.15377894276976,
+ "grad_norm": 0.21638400852680206,
+ "learning_rate": 0.0006,
+ "loss": 3.475860118865967,
+ "step": 5051
+ },
+ {
+ "epoch": 70.16775884665793,
+ "grad_norm": 0.21825452148914337,
+ "learning_rate": 0.0006,
+ "loss": 3.467684268951416,
+ "step": 5052
+ },
+ {
+ "epoch": 70.18173875054609,
+ "grad_norm": 0.22535094618797302,
+ "learning_rate": 0.0006,
+ "loss": 3.4543721675872803,
+ "step": 5053
+ },
+ {
+ "epoch": 70.19571865443424,
+ "grad_norm": 0.22751732170581818,
+ "learning_rate": 0.0006,
+ "loss": 3.480132818222046,
+ "step": 5054
+ },
+ {
+ "epoch": 70.20969855832242,
+ "grad_norm": 0.21935929358005524,
+ "learning_rate": 0.0006,
+ "loss": 3.4883337020874023,
+ "step": 5055
+ },
+ {
+ "epoch": 70.22367846221057,
+ "grad_norm": 0.2164992392063141,
+ "learning_rate": 0.0006,
+ "loss": 3.4758238792419434,
+ "step": 5056
+ },
+ {
+ "epoch": 70.23765836609873,
+ "grad_norm": 0.2284509837627411,
+ "learning_rate": 0.0006,
+ "loss": 3.4639101028442383,
+ "step": 5057
+ },
+ {
+ "epoch": 70.2516382699869,
+ "grad_norm": 0.2616494297981262,
+ "learning_rate": 0.0006,
+ "loss": 3.4850382804870605,
+ "step": 5058
+ },
+ {
+ "epoch": 70.26561817387505,
+ "grad_norm": 0.25582870841026306,
+ "learning_rate": 0.0006,
+ "loss": 3.4912681579589844,
+ "step": 5059
+ },
+ {
+ "epoch": 70.27959807776321,
+ "grad_norm": 0.23707713186740875,
+ "learning_rate": 0.0006,
+ "loss": 3.493809700012207,
+ "step": 5060
+ },
+ {
+ "epoch": 70.29357798165138,
+ "grad_norm": 0.233265221118927,
+ "learning_rate": 0.0006,
+ "loss": 3.5143074989318848,
+ "step": 5061
+ },
+ {
+ "epoch": 70.30755788553954,
+ "grad_norm": 0.2607567012310028,
+ "learning_rate": 0.0006,
+ "loss": 3.5042223930358887,
+ "step": 5062
+ },
+ {
+ "epoch": 70.3215377894277,
+ "grad_norm": 0.21082724630832672,
+ "learning_rate": 0.0006,
+ "loss": 3.493569850921631,
+ "step": 5063
+ },
+ {
+ "epoch": 70.33551769331586,
+ "grad_norm": 0.2609533369541168,
+ "learning_rate": 0.0006,
+ "loss": 3.503533363342285,
+ "step": 5064
+ },
+ {
+ "epoch": 70.34949759720402,
+ "grad_norm": 0.2863939702510834,
+ "learning_rate": 0.0006,
+ "loss": 3.465226173400879,
+ "step": 5065
+ },
+ {
+ "epoch": 70.36347750109218,
+ "grad_norm": 0.26796457171440125,
+ "learning_rate": 0.0006,
+ "loss": 3.517176866531372,
+ "step": 5066
+ },
+ {
+ "epoch": 70.37745740498035,
+ "grad_norm": 0.2766019105911255,
+ "learning_rate": 0.0006,
+ "loss": 3.5126867294311523,
+ "step": 5067
+ },
+ {
+ "epoch": 70.3914373088685,
+ "grad_norm": 0.24560758471488953,
+ "learning_rate": 0.0006,
+ "loss": 3.515030860900879,
+ "step": 5068
+ },
+ {
+ "epoch": 70.40541721275666,
+ "grad_norm": 0.20993568003177643,
+ "learning_rate": 0.0006,
+ "loss": 3.4899773597717285,
+ "step": 5069
+ },
+ {
+ "epoch": 70.41939711664482,
+ "grad_norm": 0.20855914056301117,
+ "learning_rate": 0.0006,
+ "loss": 3.4906468391418457,
+ "step": 5070
+ },
+ {
+ "epoch": 70.43337702053299,
+ "grad_norm": 0.2210836559534073,
+ "learning_rate": 0.0006,
+ "loss": 3.482866048812866,
+ "step": 5071
+ },
+ {
+ "epoch": 70.44735692442114,
+ "grad_norm": 0.2210542857646942,
+ "learning_rate": 0.0006,
+ "loss": 3.501636028289795,
+ "step": 5072
+ },
+ {
+ "epoch": 70.4613368283093,
+ "grad_norm": 0.21207138895988464,
+ "learning_rate": 0.0006,
+ "loss": 3.519104242324829,
+ "step": 5073
+ },
+ {
+ "epoch": 70.47531673219747,
+ "grad_norm": 0.19901272654533386,
+ "learning_rate": 0.0006,
+ "loss": 3.486097574234009,
+ "step": 5074
+ },
+ {
+ "epoch": 70.48929663608563,
+ "grad_norm": 0.21536870300769806,
+ "learning_rate": 0.0006,
+ "loss": 3.476889133453369,
+ "step": 5075
+ },
+ {
+ "epoch": 70.50327653997378,
+ "grad_norm": 0.22002893686294556,
+ "learning_rate": 0.0006,
+ "loss": 3.5007381439208984,
+ "step": 5076
+ },
+ {
+ "epoch": 70.51725644386195,
+ "grad_norm": 0.20761331915855408,
+ "learning_rate": 0.0006,
+ "loss": 3.4693777561187744,
+ "step": 5077
+ },
+ {
+ "epoch": 70.53123634775011,
+ "grad_norm": 0.2145029455423355,
+ "learning_rate": 0.0006,
+ "loss": 3.438809871673584,
+ "step": 5078
+ },
+ {
+ "epoch": 70.54521625163827,
+ "grad_norm": 0.1961168795824051,
+ "learning_rate": 0.0006,
+ "loss": 3.4975242614746094,
+ "step": 5079
+ },
+ {
+ "epoch": 70.55919615552644,
+ "grad_norm": 0.20411522686481476,
+ "learning_rate": 0.0006,
+ "loss": 3.4908413887023926,
+ "step": 5080
+ },
+ {
+ "epoch": 70.57317605941459,
+ "grad_norm": 0.22646412253379822,
+ "learning_rate": 0.0006,
+ "loss": 3.4542629718780518,
+ "step": 5081
+ },
+ {
+ "epoch": 70.58715596330275,
+ "grad_norm": 0.2181357741355896,
+ "learning_rate": 0.0006,
+ "loss": 3.522963047027588,
+ "step": 5082
+ },
+ {
+ "epoch": 70.60113586719092,
+ "grad_norm": 0.23564083874225616,
+ "learning_rate": 0.0006,
+ "loss": 3.475222110748291,
+ "step": 5083
+ },
+ {
+ "epoch": 70.61511577107908,
+ "grad_norm": 0.22964410483837128,
+ "learning_rate": 0.0006,
+ "loss": 3.517993927001953,
+ "step": 5084
+ },
+ {
+ "epoch": 70.62909567496723,
+ "grad_norm": 0.20958925783634186,
+ "learning_rate": 0.0006,
+ "loss": 3.4651894569396973,
+ "step": 5085
+ },
+ {
+ "epoch": 70.6430755788554,
+ "grad_norm": 0.19693933427333832,
+ "learning_rate": 0.0006,
+ "loss": 3.4992640018463135,
+ "step": 5086
+ },
+ {
+ "epoch": 70.65705548274356,
+ "grad_norm": 0.22487083077430725,
+ "learning_rate": 0.0006,
+ "loss": 3.502739906311035,
+ "step": 5087
+ },
+ {
+ "epoch": 70.67103538663171,
+ "grad_norm": 0.22145701944828033,
+ "learning_rate": 0.0006,
+ "loss": 3.4855666160583496,
+ "step": 5088
+ },
+ {
+ "epoch": 70.68501529051987,
+ "grad_norm": 0.2145165652036667,
+ "learning_rate": 0.0006,
+ "loss": 3.5234193801879883,
+ "step": 5089
+ },
+ {
+ "epoch": 70.69899519440804,
+ "grad_norm": 0.2453656941652298,
+ "learning_rate": 0.0006,
+ "loss": 3.497983932495117,
+ "step": 5090
+ },
+ {
+ "epoch": 70.7129750982962,
+ "grad_norm": 0.2324638068675995,
+ "learning_rate": 0.0006,
+ "loss": 3.487849712371826,
+ "step": 5091
+ },
+ {
+ "epoch": 70.72695500218435,
+ "grad_norm": 0.2176654040813446,
+ "learning_rate": 0.0006,
+ "loss": 3.496427059173584,
+ "step": 5092
+ },
+ {
+ "epoch": 70.74093490607252,
+ "grad_norm": 0.20912162959575653,
+ "learning_rate": 0.0006,
+ "loss": 3.4953227043151855,
+ "step": 5093
+ },
+ {
+ "epoch": 70.75491480996068,
+ "grad_norm": 0.1988947093486786,
+ "learning_rate": 0.0006,
+ "loss": 3.4566853046417236,
+ "step": 5094
+ },
+ {
+ "epoch": 70.76889471384884,
+ "grad_norm": 0.23707804083824158,
+ "learning_rate": 0.0006,
+ "loss": 3.5447797775268555,
+ "step": 5095
+ },
+ {
+ "epoch": 70.78287461773701,
+ "grad_norm": 0.24296057224273682,
+ "learning_rate": 0.0006,
+ "loss": 3.5124454498291016,
+ "step": 5096
+ },
+ {
+ "epoch": 70.79685452162516,
+ "grad_norm": 0.21297545731067657,
+ "learning_rate": 0.0006,
+ "loss": 3.5096077919006348,
+ "step": 5097
+ },
+ {
+ "epoch": 70.81083442551332,
+ "grad_norm": 0.20642022788524628,
+ "learning_rate": 0.0006,
+ "loss": 3.5008912086486816,
+ "step": 5098
+ },
+ {
+ "epoch": 70.82481432940149,
+ "grad_norm": 0.2428225725889206,
+ "learning_rate": 0.0006,
+ "loss": 3.511782169342041,
+ "step": 5099
+ },
+ {
+ "epoch": 70.83879423328965,
+ "grad_norm": 0.2369006872177124,
+ "learning_rate": 0.0006,
+ "loss": 3.5016889572143555,
+ "step": 5100
+ },
+ {
+ "epoch": 70.8527741371778,
+ "grad_norm": 0.2299226075410843,
+ "learning_rate": 0.0006,
+ "loss": 3.5024492740631104,
+ "step": 5101
+ },
+ {
+ "epoch": 70.86675404106597,
+ "grad_norm": 0.2069583684206009,
+ "learning_rate": 0.0006,
+ "loss": 3.5401811599731445,
+ "step": 5102
+ },
+ {
+ "epoch": 70.88073394495413,
+ "grad_norm": 0.21548444032669067,
+ "learning_rate": 0.0006,
+ "loss": 3.506899833679199,
+ "step": 5103
+ },
+ {
+ "epoch": 70.89471384884229,
+ "grad_norm": 0.24152785539627075,
+ "learning_rate": 0.0006,
+ "loss": 3.517747163772583,
+ "step": 5104
+ },
+ {
+ "epoch": 70.90869375273044,
+ "grad_norm": 0.2301841676235199,
+ "learning_rate": 0.0006,
+ "loss": 3.4825563430786133,
+ "step": 5105
+ },
+ {
+ "epoch": 70.92267365661861,
+ "grad_norm": 0.20378732681274414,
+ "learning_rate": 0.0006,
+ "loss": 3.51491641998291,
+ "step": 5106
+ },
+ {
+ "epoch": 70.93665356050677,
+ "grad_norm": 0.23954246938228607,
+ "learning_rate": 0.0006,
+ "loss": 3.505157709121704,
+ "step": 5107
+ },
+ {
+ "epoch": 70.95063346439493,
+ "grad_norm": 0.24072174727916718,
+ "learning_rate": 0.0006,
+ "loss": 3.5006208419799805,
+ "step": 5108
+ },
+ {
+ "epoch": 70.9646133682831,
+ "grad_norm": 0.2187308371067047,
+ "learning_rate": 0.0006,
+ "loss": 3.5031535625457764,
+ "step": 5109
+ },
+ {
+ "epoch": 70.97859327217125,
+ "grad_norm": 0.22237645089626312,
+ "learning_rate": 0.0006,
+ "loss": 3.5143189430236816,
+ "step": 5110
+ },
+ {
+ "epoch": 70.99257317605941,
+ "grad_norm": 0.22169137001037598,
+ "learning_rate": 0.0006,
+ "loss": 3.4963934421539307,
+ "step": 5111
+ },
+ {
+ "epoch": 71.0,
+ "grad_norm": 0.257404088973999,
+ "learning_rate": 0.0006,
+ "loss": 3.5386219024658203,
+ "step": 5112
+ },
+ {
+ "epoch": 71.0,
+ "eval_loss": 3.9918019771575928,
+ "eval_runtime": 46.6377,
+ "eval_samples_per_second": 52.361,
+ "eval_steps_per_second": 3.281,
+ "step": 5112
+ },
+ {
+ "epoch": 71.01397990388816,
+ "grad_norm": 0.22763817012310028,
+ "learning_rate": 0.0006,
+ "loss": 3.4723024368286133,
+ "step": 5113
+ },
+ {
+ "epoch": 71.02795980777633,
+ "grad_norm": 0.22345447540283203,
+ "learning_rate": 0.0006,
+ "loss": 3.491352081298828,
+ "step": 5114
+ },
+ {
+ "epoch": 71.04193971166448,
+ "grad_norm": 0.28975343704223633,
+ "learning_rate": 0.0006,
+ "loss": 3.474012851715088,
+ "step": 5115
+ },
+ {
+ "epoch": 71.05591961555264,
+ "grad_norm": 0.34715282917022705,
+ "learning_rate": 0.0006,
+ "loss": 3.460543155670166,
+ "step": 5116
+ },
+ {
+ "epoch": 71.06989951944081,
+ "grad_norm": 0.3298324942588806,
+ "learning_rate": 0.0006,
+ "loss": 3.481487512588501,
+ "step": 5117
+ },
+ {
+ "epoch": 71.08387942332897,
+ "grad_norm": 0.25802168250083923,
+ "learning_rate": 0.0006,
+ "loss": 3.472047805786133,
+ "step": 5118
+ },
+ {
+ "epoch": 71.09785932721712,
+ "grad_norm": 0.27691733837127686,
+ "learning_rate": 0.0006,
+ "loss": 3.471902847290039,
+ "step": 5119
+ },
+ {
+ "epoch": 71.1118392311053,
+ "grad_norm": 0.3614637851715088,
+ "learning_rate": 0.0006,
+ "loss": 3.482367992401123,
+ "step": 5120
+ },
+ {
+ "epoch": 71.12581913499345,
+ "grad_norm": 0.3808763027191162,
+ "learning_rate": 0.0006,
+ "loss": 3.468003273010254,
+ "step": 5121
+ },
+ {
+ "epoch": 71.1397990388816,
+ "grad_norm": 0.30960485339164734,
+ "learning_rate": 0.0006,
+ "loss": 3.4756040573120117,
+ "step": 5122
+ },
+ {
+ "epoch": 71.15377894276976,
+ "grad_norm": 0.23345506191253662,
+ "learning_rate": 0.0006,
+ "loss": 3.4682583808898926,
+ "step": 5123
+ },
+ {
+ "epoch": 71.16775884665793,
+ "grad_norm": 0.23517020046710968,
+ "learning_rate": 0.0006,
+ "loss": 3.481360912322998,
+ "step": 5124
+ },
+ {
+ "epoch": 71.18173875054609,
+ "grad_norm": 0.23654034733772278,
+ "learning_rate": 0.0006,
+ "loss": 3.4833765029907227,
+ "step": 5125
+ },
+ {
+ "epoch": 71.19571865443424,
+ "grad_norm": 0.2085893303155899,
+ "learning_rate": 0.0006,
+ "loss": 3.486340045928955,
+ "step": 5126
+ },
+ {
+ "epoch": 71.20969855832242,
+ "grad_norm": 0.23823733627796173,
+ "learning_rate": 0.0006,
+ "loss": 3.477477550506592,
+ "step": 5127
+ },
+ {
+ "epoch": 71.22367846221057,
+ "grad_norm": 0.2195197194814682,
+ "learning_rate": 0.0006,
+ "loss": 3.4914462566375732,
+ "step": 5128
+ },
+ {
+ "epoch": 71.23765836609873,
+ "grad_norm": 0.20015183091163635,
+ "learning_rate": 0.0006,
+ "loss": 3.4731597900390625,
+ "step": 5129
+ },
+ {
+ "epoch": 71.2516382699869,
+ "grad_norm": 0.22865013778209686,
+ "learning_rate": 0.0006,
+ "loss": 3.474112033843994,
+ "step": 5130
+ },
+ {
+ "epoch": 71.26561817387505,
+ "grad_norm": 0.23216912150382996,
+ "learning_rate": 0.0006,
+ "loss": 3.4641566276550293,
+ "step": 5131
+ },
+ {
+ "epoch": 71.27959807776321,
+ "grad_norm": 0.229189932346344,
+ "learning_rate": 0.0006,
+ "loss": 3.499788999557495,
+ "step": 5132
+ },
+ {
+ "epoch": 71.29357798165138,
+ "grad_norm": 0.21727289259433746,
+ "learning_rate": 0.0006,
+ "loss": 3.4823837280273438,
+ "step": 5133
+ },
+ {
+ "epoch": 71.30755788553954,
+ "grad_norm": 0.21023842692375183,
+ "learning_rate": 0.0006,
+ "loss": 3.4864656925201416,
+ "step": 5134
+ },
+ {
+ "epoch": 71.3215377894277,
+ "grad_norm": 0.2303229570388794,
+ "learning_rate": 0.0006,
+ "loss": 3.4989194869995117,
+ "step": 5135
+ },
+ {
+ "epoch": 71.33551769331586,
+ "grad_norm": 0.2317735254764557,
+ "learning_rate": 0.0006,
+ "loss": 3.460954189300537,
+ "step": 5136
+ },
+ {
+ "epoch": 71.34949759720402,
+ "grad_norm": 0.22612634301185608,
+ "learning_rate": 0.0006,
+ "loss": 3.5102381706237793,
+ "step": 5137
+ },
+ {
+ "epoch": 71.36347750109218,
+ "grad_norm": 0.23815463483333588,
+ "learning_rate": 0.0006,
+ "loss": 3.446244239807129,
+ "step": 5138
+ },
+ {
+ "epoch": 71.37745740498035,
+ "grad_norm": 0.22914297878742218,
+ "learning_rate": 0.0006,
+ "loss": 3.4789650440216064,
+ "step": 5139
+ },
+ {
+ "epoch": 71.3914373088685,
+ "grad_norm": 0.22563296556472778,
+ "learning_rate": 0.0006,
+ "loss": 3.490419864654541,
+ "step": 5140
+ },
+ {
+ "epoch": 71.40541721275666,
+ "grad_norm": 0.21704672276973724,
+ "learning_rate": 0.0006,
+ "loss": 3.503981113433838,
+ "step": 5141
+ },
+ {
+ "epoch": 71.41939711664482,
+ "grad_norm": 0.2196325659751892,
+ "learning_rate": 0.0006,
+ "loss": 3.4878809452056885,
+ "step": 5142
+ },
+ {
+ "epoch": 71.43337702053299,
+ "grad_norm": 0.21130836009979248,
+ "learning_rate": 0.0006,
+ "loss": 3.4546194076538086,
+ "step": 5143
+ },
+ {
+ "epoch": 71.44735692442114,
+ "grad_norm": 0.21542105078697205,
+ "learning_rate": 0.0006,
+ "loss": 3.4721519947052,
+ "step": 5144
+ },
+ {
+ "epoch": 71.4613368283093,
+ "grad_norm": 0.22387142479419708,
+ "learning_rate": 0.0006,
+ "loss": 3.4667282104492188,
+ "step": 5145
+ },
+ {
+ "epoch": 71.47531673219747,
+ "grad_norm": 0.23259611427783966,
+ "learning_rate": 0.0006,
+ "loss": 3.467545986175537,
+ "step": 5146
+ },
+ {
+ "epoch": 71.48929663608563,
+ "grad_norm": 0.2771410644054413,
+ "learning_rate": 0.0006,
+ "loss": 3.4783425331115723,
+ "step": 5147
+ },
+ {
+ "epoch": 71.50327653997378,
+ "grad_norm": 0.29756635427474976,
+ "learning_rate": 0.0006,
+ "loss": 3.492600440979004,
+ "step": 5148
+ },
+ {
+ "epoch": 71.51725644386195,
+ "grad_norm": 0.26306024193763733,
+ "learning_rate": 0.0006,
+ "loss": 3.510770559310913,
+ "step": 5149
+ },
+ {
+ "epoch": 71.53123634775011,
+ "grad_norm": 0.20751827955245972,
+ "learning_rate": 0.0006,
+ "loss": 3.466935634613037,
+ "step": 5150
+ },
+ {
+ "epoch": 71.54521625163827,
+ "grad_norm": 0.21394366025924683,
+ "learning_rate": 0.0006,
+ "loss": 3.436068058013916,
+ "step": 5151
+ },
+ {
+ "epoch": 71.55919615552644,
+ "grad_norm": 0.25711846351623535,
+ "learning_rate": 0.0006,
+ "loss": 3.484564781188965,
+ "step": 5152
+ },
+ {
+ "epoch": 71.57317605941459,
+ "grad_norm": 0.29579317569732666,
+ "learning_rate": 0.0006,
+ "loss": 3.4905800819396973,
+ "step": 5153
+ },
+ {
+ "epoch": 71.58715596330275,
+ "grad_norm": 0.3033061921596527,
+ "learning_rate": 0.0006,
+ "loss": 3.508679151535034,
+ "step": 5154
+ },
+ {
+ "epoch": 71.60113586719092,
+ "grad_norm": 0.2520291805267334,
+ "learning_rate": 0.0006,
+ "loss": 3.5057215690612793,
+ "step": 5155
+ },
+ {
+ "epoch": 71.61511577107908,
+ "grad_norm": 0.226261705160141,
+ "learning_rate": 0.0006,
+ "loss": 3.5037670135498047,
+ "step": 5156
+ },
+ {
+ "epoch": 71.62909567496723,
+ "grad_norm": 0.20596027374267578,
+ "learning_rate": 0.0006,
+ "loss": 3.495021343231201,
+ "step": 5157
+ },
+ {
+ "epoch": 71.6430755788554,
+ "grad_norm": 0.20619751513004303,
+ "learning_rate": 0.0006,
+ "loss": 3.4958693981170654,
+ "step": 5158
+ },
+ {
+ "epoch": 71.65705548274356,
+ "grad_norm": 0.24510066211223602,
+ "learning_rate": 0.0006,
+ "loss": 3.5301260948181152,
+ "step": 5159
+ },
+ {
+ "epoch": 71.67103538663171,
+ "grad_norm": 0.26109805703163147,
+ "learning_rate": 0.0006,
+ "loss": 3.5022244453430176,
+ "step": 5160
+ },
+ {
+ "epoch": 71.68501529051987,
+ "grad_norm": 0.28911513090133667,
+ "learning_rate": 0.0006,
+ "loss": 3.488947868347168,
+ "step": 5161
+ },
+ {
+ "epoch": 71.69899519440804,
+ "grad_norm": 0.2741655111312866,
+ "learning_rate": 0.0006,
+ "loss": 3.4888229370117188,
+ "step": 5162
+ },
+ {
+ "epoch": 71.7129750982962,
+ "grad_norm": 0.2789880633354187,
+ "learning_rate": 0.0006,
+ "loss": 3.4911744594573975,
+ "step": 5163
+ },
+ {
+ "epoch": 71.72695500218435,
+ "grad_norm": 0.23872195184230804,
+ "learning_rate": 0.0006,
+ "loss": 3.5175111293792725,
+ "step": 5164
+ },
+ {
+ "epoch": 71.74093490607252,
+ "grad_norm": 0.23090124130249023,
+ "learning_rate": 0.0006,
+ "loss": 3.477285861968994,
+ "step": 5165
+ },
+ {
+ "epoch": 71.75491480996068,
+ "grad_norm": 0.25918251276016235,
+ "learning_rate": 0.0006,
+ "loss": 3.5374622344970703,
+ "step": 5166
+ },
+ {
+ "epoch": 71.76889471384884,
+ "grad_norm": 0.28394266963005066,
+ "learning_rate": 0.0006,
+ "loss": 3.505443572998047,
+ "step": 5167
+ },
+ {
+ "epoch": 71.78287461773701,
+ "grad_norm": 0.29756471514701843,
+ "learning_rate": 0.0006,
+ "loss": 3.4858479499816895,
+ "step": 5168
+ },
+ {
+ "epoch": 71.79685452162516,
+ "grad_norm": 0.2913147211074829,
+ "learning_rate": 0.0006,
+ "loss": 3.4602723121643066,
+ "step": 5169
+ },
+ {
+ "epoch": 71.81083442551332,
+ "grad_norm": 0.23923781514167786,
+ "learning_rate": 0.0006,
+ "loss": 3.4713358879089355,
+ "step": 5170
+ },
+ {
+ "epoch": 71.82481432940149,
+ "grad_norm": 0.23478655517101288,
+ "learning_rate": 0.0006,
+ "loss": 3.4848878383636475,
+ "step": 5171
+ },
+ {
+ "epoch": 71.83879423328965,
+ "grad_norm": 0.2668255865573883,
+ "learning_rate": 0.0006,
+ "loss": 3.507920742034912,
+ "step": 5172
+ },
+ {
+ "epoch": 71.8527741371778,
+ "grad_norm": 0.2818165719509125,
+ "learning_rate": 0.0006,
+ "loss": 3.5128116607666016,
+ "step": 5173
+ },
+ {
+ "epoch": 71.86675404106597,
+ "grad_norm": 0.22830909490585327,
+ "learning_rate": 0.0006,
+ "loss": 3.4789090156555176,
+ "step": 5174
+ },
+ {
+ "epoch": 71.88073394495413,
+ "grad_norm": 0.2291419357061386,
+ "learning_rate": 0.0006,
+ "loss": 3.4977774620056152,
+ "step": 5175
+ },
+ {
+ "epoch": 71.89471384884229,
+ "grad_norm": 0.22237083315849304,
+ "learning_rate": 0.0006,
+ "loss": 3.5563011169433594,
+ "step": 5176
+ },
+ {
+ "epoch": 71.90869375273044,
+ "grad_norm": 0.2287488579750061,
+ "learning_rate": 0.0006,
+ "loss": 3.515289783477783,
+ "step": 5177
+ },
+ {
+ "epoch": 71.92267365661861,
+ "grad_norm": 0.21992293000221252,
+ "learning_rate": 0.0006,
+ "loss": 3.5213077068328857,
+ "step": 5178
+ },
+ {
+ "epoch": 71.93665356050677,
+ "grad_norm": 0.21338967978954315,
+ "learning_rate": 0.0006,
+ "loss": 3.5168190002441406,
+ "step": 5179
+ },
+ {
+ "epoch": 71.95063346439493,
+ "grad_norm": 0.2198970913887024,
+ "learning_rate": 0.0006,
+ "loss": 3.517268180847168,
+ "step": 5180
+ },
+ {
+ "epoch": 71.9646133682831,
+ "grad_norm": 0.2309885025024414,
+ "learning_rate": 0.0006,
+ "loss": 3.5538675785064697,
+ "step": 5181
+ },
+ {
+ "epoch": 71.97859327217125,
+ "grad_norm": 0.23529282212257385,
+ "learning_rate": 0.0006,
+ "loss": 3.477951765060425,
+ "step": 5182
+ },
+ {
+ "epoch": 71.99257317605941,
+ "grad_norm": 0.2553477883338928,
+ "learning_rate": 0.0006,
+ "loss": 3.502894878387451,
+ "step": 5183
+ },
+ {
+ "epoch": 72.0,
+ "grad_norm": 0.2943936288356781,
+ "learning_rate": 0.0006,
+ "loss": 3.5049710273742676,
+ "step": 5184
+ },
+ {
+ "epoch": 72.0,
+ "eval_loss": 3.9860572814941406,
+ "eval_runtime": 46.9591,
+ "eval_samples_per_second": 52.003,
+ "eval_steps_per_second": 3.258,
+ "step": 5184
+ },
+ {
+ "epoch": 72.01397990388816,
+ "grad_norm": 0.25285470485687256,
+ "learning_rate": 0.0006,
+ "loss": 3.4515252113342285,
+ "step": 5185
+ },
+ {
+ "epoch": 72.02795980777633,
+ "grad_norm": 0.29215890169143677,
+ "learning_rate": 0.0006,
+ "loss": 3.4472908973693848,
+ "step": 5186
+ },
+ {
+ "epoch": 72.04193971166448,
+ "grad_norm": 0.34719136357307434,
+ "learning_rate": 0.0006,
+ "loss": 3.4762914180755615,
+ "step": 5187
+ },
+ {
+ "epoch": 72.05591961555264,
+ "grad_norm": 0.31336039304733276,
+ "learning_rate": 0.0006,
+ "loss": 3.4866042137145996,
+ "step": 5188
+ },
+ {
+ "epoch": 72.06989951944081,
+ "grad_norm": 0.2586875557899475,
+ "learning_rate": 0.0006,
+ "loss": 3.4296340942382812,
+ "step": 5189
+ },
+ {
+ "epoch": 72.08387942332897,
+ "grad_norm": 0.2677823603153229,
+ "learning_rate": 0.0006,
+ "loss": 3.442481517791748,
+ "step": 5190
+ },
+ {
+ "epoch": 72.09785932721712,
+ "grad_norm": 0.30640944838523865,
+ "learning_rate": 0.0006,
+ "loss": 3.435530424118042,
+ "step": 5191
+ },
+ {
+ "epoch": 72.1118392311053,
+ "grad_norm": 0.29822733998298645,
+ "learning_rate": 0.0006,
+ "loss": 3.4399731159210205,
+ "step": 5192
+ },
+ {
+ "epoch": 72.12581913499345,
+ "grad_norm": 0.25714683532714844,
+ "learning_rate": 0.0006,
+ "loss": 3.4679667949676514,
+ "step": 5193
+ },
+ {
+ "epoch": 72.1397990388816,
+ "grad_norm": 0.2347356528043747,
+ "learning_rate": 0.0006,
+ "loss": 3.4473838806152344,
+ "step": 5194
+ },
+ {
+ "epoch": 72.15377894276976,
+ "grad_norm": 0.23640039563179016,
+ "learning_rate": 0.0006,
+ "loss": 3.4716782569885254,
+ "step": 5195
+ },
+ {
+ "epoch": 72.16775884665793,
+ "grad_norm": 0.2285412698984146,
+ "learning_rate": 0.0006,
+ "loss": 3.4927384853363037,
+ "step": 5196
+ },
+ {
+ "epoch": 72.18173875054609,
+ "grad_norm": 0.2305673509836197,
+ "learning_rate": 0.0006,
+ "loss": 3.5064914226531982,
+ "step": 5197
+ },
+ {
+ "epoch": 72.19571865443424,
+ "grad_norm": 0.21706514060497284,
+ "learning_rate": 0.0006,
+ "loss": 3.4467828273773193,
+ "step": 5198
+ },
+ {
+ "epoch": 72.20969855832242,
+ "grad_norm": 0.21769501268863678,
+ "learning_rate": 0.0006,
+ "loss": 3.473309278488159,
+ "step": 5199
+ },
+ {
+ "epoch": 72.22367846221057,
+ "grad_norm": 0.23256097733974457,
+ "learning_rate": 0.0006,
+ "loss": 3.457587718963623,
+ "step": 5200
+ },
+ {
+ "epoch": 72.23765836609873,
+ "grad_norm": 0.23531964421272278,
+ "learning_rate": 0.0006,
+ "loss": 3.485863208770752,
+ "step": 5201
+ },
+ {
+ "epoch": 72.2516382699869,
+ "grad_norm": 0.2240941971540451,
+ "learning_rate": 0.0006,
+ "loss": 3.4677062034606934,
+ "step": 5202
+ },
+ {
+ "epoch": 72.26561817387505,
+ "grad_norm": 0.22390629351139069,
+ "learning_rate": 0.0006,
+ "loss": 3.5203280448913574,
+ "step": 5203
+ },
+ {
+ "epoch": 72.27959807776321,
+ "grad_norm": 0.21178147196769714,
+ "learning_rate": 0.0006,
+ "loss": 3.4824347496032715,
+ "step": 5204
+ },
+ {
+ "epoch": 72.29357798165138,
+ "grad_norm": 0.21738161146640778,
+ "learning_rate": 0.0006,
+ "loss": 3.4587113857269287,
+ "step": 5205
+ },
+ {
+ "epoch": 72.30755788553954,
+ "grad_norm": 0.21534697711467743,
+ "learning_rate": 0.0006,
+ "loss": 3.499147415161133,
+ "step": 5206
+ },
+ {
+ "epoch": 72.3215377894277,
+ "grad_norm": 0.22616741061210632,
+ "learning_rate": 0.0006,
+ "loss": 3.5025434494018555,
+ "step": 5207
+ },
+ {
+ "epoch": 72.33551769331586,
+ "grad_norm": 0.26784682273864746,
+ "learning_rate": 0.0006,
+ "loss": 3.4733633995056152,
+ "step": 5208
+ },
+ {
+ "epoch": 72.34949759720402,
+ "grad_norm": 0.2774837911128998,
+ "learning_rate": 0.0006,
+ "loss": 3.508082389831543,
+ "step": 5209
+ },
+ {
+ "epoch": 72.36347750109218,
+ "grad_norm": 0.28039997816085815,
+ "learning_rate": 0.0006,
+ "loss": 3.503880500793457,
+ "step": 5210
+ },
+ {
+ "epoch": 72.37745740498035,
+ "grad_norm": 0.2990040183067322,
+ "learning_rate": 0.0006,
+ "loss": 3.4885363578796387,
+ "step": 5211
+ },
+ {
+ "epoch": 72.3914373088685,
+ "grad_norm": 0.2857728600502014,
+ "learning_rate": 0.0006,
+ "loss": 3.4977049827575684,
+ "step": 5212
+ },
+ {
+ "epoch": 72.40541721275666,
+ "grad_norm": 0.2675400972366333,
+ "learning_rate": 0.0006,
+ "loss": 3.49003267288208,
+ "step": 5213
+ },
+ {
+ "epoch": 72.41939711664482,
+ "grad_norm": 0.258004367351532,
+ "learning_rate": 0.0006,
+ "loss": 3.4726967811584473,
+ "step": 5214
+ },
+ {
+ "epoch": 72.43337702053299,
+ "grad_norm": 0.20816923677921295,
+ "learning_rate": 0.0006,
+ "loss": 3.4798901081085205,
+ "step": 5215
+ },
+ {
+ "epoch": 72.44735692442114,
+ "grad_norm": 0.21589888632297516,
+ "learning_rate": 0.0006,
+ "loss": 3.4784836769104004,
+ "step": 5216
+ },
+ {
+ "epoch": 72.4613368283093,
+ "grad_norm": 0.22663359344005585,
+ "learning_rate": 0.0006,
+ "loss": 3.5278806686401367,
+ "step": 5217
+ },
+ {
+ "epoch": 72.47531673219747,
+ "grad_norm": 0.2165268212556839,
+ "learning_rate": 0.0006,
+ "loss": 3.5198988914489746,
+ "step": 5218
+ },
+ {
+ "epoch": 72.48929663608563,
+ "grad_norm": 0.22635547816753387,
+ "learning_rate": 0.0006,
+ "loss": 3.476203441619873,
+ "step": 5219
+ },
+ {
+ "epoch": 72.50327653997378,
+ "grad_norm": 0.23315833508968353,
+ "learning_rate": 0.0006,
+ "loss": 3.4451494216918945,
+ "step": 5220
+ },
+ {
+ "epoch": 72.51725644386195,
+ "grad_norm": 0.2262018620967865,
+ "learning_rate": 0.0006,
+ "loss": 3.5126566886901855,
+ "step": 5221
+ },
+ {
+ "epoch": 72.53123634775011,
+ "grad_norm": 0.2273683398962021,
+ "learning_rate": 0.0006,
+ "loss": 3.485413074493408,
+ "step": 5222
+ },
+ {
+ "epoch": 72.54521625163827,
+ "grad_norm": 0.25254759192466736,
+ "learning_rate": 0.0006,
+ "loss": 3.4997940063476562,
+ "step": 5223
+ },
+ {
+ "epoch": 72.55919615552644,
+ "grad_norm": 0.23467472195625305,
+ "learning_rate": 0.0006,
+ "loss": 3.4924259185791016,
+ "step": 5224
+ },
+ {
+ "epoch": 72.57317605941459,
+ "grad_norm": 0.20206208527088165,
+ "learning_rate": 0.0006,
+ "loss": 3.5010361671447754,
+ "step": 5225
+ },
+ {
+ "epoch": 72.58715596330275,
+ "grad_norm": 0.21526813507080078,
+ "learning_rate": 0.0006,
+ "loss": 3.4889681339263916,
+ "step": 5226
+ },
+ {
+ "epoch": 72.60113586719092,
+ "grad_norm": 0.212263822555542,
+ "learning_rate": 0.0006,
+ "loss": 3.467782497406006,
+ "step": 5227
+ },
+ {
+ "epoch": 72.61511577107908,
+ "grad_norm": 0.2126736342906952,
+ "learning_rate": 0.0006,
+ "loss": 3.470729112625122,
+ "step": 5228
+ },
+ {
+ "epoch": 72.62909567496723,
+ "grad_norm": 0.22448696196079254,
+ "learning_rate": 0.0006,
+ "loss": 3.4688234329223633,
+ "step": 5229
+ },
+ {
+ "epoch": 72.6430755788554,
+ "grad_norm": 0.2322869449853897,
+ "learning_rate": 0.0006,
+ "loss": 3.490103244781494,
+ "step": 5230
+ },
+ {
+ "epoch": 72.65705548274356,
+ "grad_norm": 0.220216765999794,
+ "learning_rate": 0.0006,
+ "loss": 3.474886894226074,
+ "step": 5231
+ },
+ {
+ "epoch": 72.67103538663171,
+ "grad_norm": 0.2191896289587021,
+ "learning_rate": 0.0006,
+ "loss": 3.4965224266052246,
+ "step": 5232
+ },
+ {
+ "epoch": 72.68501529051987,
+ "grad_norm": 0.2120339423418045,
+ "learning_rate": 0.0006,
+ "loss": 3.4710934162139893,
+ "step": 5233
+ },
+ {
+ "epoch": 72.69899519440804,
+ "grad_norm": 0.21517711877822876,
+ "learning_rate": 0.0006,
+ "loss": 3.4698405265808105,
+ "step": 5234
+ },
+ {
+ "epoch": 72.7129750982962,
+ "grad_norm": 0.22012922167778015,
+ "learning_rate": 0.0006,
+ "loss": 3.513930320739746,
+ "step": 5235
+ },
+ {
+ "epoch": 72.72695500218435,
+ "grad_norm": 0.19231025874614716,
+ "learning_rate": 0.0006,
+ "loss": 3.476353168487549,
+ "step": 5236
+ },
+ {
+ "epoch": 72.74093490607252,
+ "grad_norm": 0.19383855164051056,
+ "learning_rate": 0.0006,
+ "loss": 3.5002031326293945,
+ "step": 5237
+ },
+ {
+ "epoch": 72.75491480996068,
+ "grad_norm": 0.22001665830612183,
+ "learning_rate": 0.0006,
+ "loss": 3.5080370903015137,
+ "step": 5238
+ },
+ {
+ "epoch": 72.76889471384884,
+ "grad_norm": 0.27273863554000854,
+ "learning_rate": 0.0006,
+ "loss": 3.504277229309082,
+ "step": 5239
+ },
+ {
+ "epoch": 72.78287461773701,
+ "grad_norm": 0.29014623165130615,
+ "learning_rate": 0.0006,
+ "loss": 3.493192195892334,
+ "step": 5240
+ },
+ {
+ "epoch": 72.79685452162516,
+ "grad_norm": 0.23816372454166412,
+ "learning_rate": 0.0006,
+ "loss": 3.519443988800049,
+ "step": 5241
+ },
+ {
+ "epoch": 72.81083442551332,
+ "grad_norm": 0.24076248705387115,
+ "learning_rate": 0.0006,
+ "loss": 3.4935712814331055,
+ "step": 5242
+ },
+ {
+ "epoch": 72.82481432940149,
+ "grad_norm": 0.264731764793396,
+ "learning_rate": 0.0006,
+ "loss": 3.5004658699035645,
+ "step": 5243
+ },
+ {
+ "epoch": 72.83879423328965,
+ "grad_norm": 0.2939820885658264,
+ "learning_rate": 0.0006,
+ "loss": 3.5297188758850098,
+ "step": 5244
+ },
+ {
+ "epoch": 72.8527741371778,
+ "grad_norm": 0.2904265522956848,
+ "learning_rate": 0.0006,
+ "loss": 3.496081829071045,
+ "step": 5245
+ },
+ {
+ "epoch": 72.86675404106597,
+ "grad_norm": 0.23428429663181305,
+ "learning_rate": 0.0006,
+ "loss": 3.493727684020996,
+ "step": 5246
+ },
+ {
+ "epoch": 72.88073394495413,
+ "grad_norm": 0.22780542075634003,
+ "learning_rate": 0.0006,
+ "loss": 3.523094654083252,
+ "step": 5247
+ },
+ {
+ "epoch": 72.89471384884229,
+ "grad_norm": 0.2745443284511566,
+ "learning_rate": 0.0006,
+ "loss": 3.497293472290039,
+ "step": 5248
+ },
+ {
+ "epoch": 72.90869375273044,
+ "grad_norm": 0.2678476870059967,
+ "learning_rate": 0.0006,
+ "loss": 3.5067732334136963,
+ "step": 5249
+ },
+ {
+ "epoch": 72.92267365661861,
+ "grad_norm": 0.2085755169391632,
+ "learning_rate": 0.0006,
+ "loss": 3.4695444107055664,
+ "step": 5250
+ },
+ {
+ "epoch": 72.93665356050677,
+ "grad_norm": 0.21488192677497864,
+ "learning_rate": 0.0006,
+ "loss": 3.522829055786133,
+ "step": 5251
+ },
+ {
+ "epoch": 72.95063346439493,
+ "grad_norm": 0.21374237537384033,
+ "learning_rate": 0.0006,
+ "loss": 3.5045344829559326,
+ "step": 5252
+ },
+ {
+ "epoch": 72.9646133682831,
+ "grad_norm": 0.23072510957717896,
+ "learning_rate": 0.0006,
+ "loss": 3.474557399749756,
+ "step": 5253
+ },
+ {
+ "epoch": 72.97859327217125,
+ "grad_norm": 0.22491991519927979,
+ "learning_rate": 0.0006,
+ "loss": 3.489443778991699,
+ "step": 5254
+ },
+ {
+ "epoch": 72.99257317605941,
+ "grad_norm": 0.22613948583602905,
+ "learning_rate": 0.0006,
+ "loss": 3.5056793689727783,
+ "step": 5255
+ },
+ {
+ "epoch": 73.0,
+ "grad_norm": 0.23435193300247192,
+ "learning_rate": 0.0006,
+ "loss": 3.520559787750244,
+ "step": 5256
+ },
+ {
+ "epoch": 73.0,
+ "eval_loss": 3.982722282409668,
+ "eval_runtime": 46.464,
+ "eval_samples_per_second": 52.557,
+ "eval_steps_per_second": 3.293,
+ "step": 5256
+ },
+ {
+ "epoch": 73.01397990388816,
+ "grad_norm": 0.22881661355495453,
+ "learning_rate": 0.0006,
+ "loss": 3.468254566192627,
+ "step": 5257
+ },
+ {
+ "epoch": 73.02795980777633,
+ "grad_norm": 0.2834230959415436,
+ "learning_rate": 0.0006,
+ "loss": 3.4606356620788574,
+ "step": 5258
+ },
+ {
+ "epoch": 73.04193971166448,
+ "grad_norm": 0.319560170173645,
+ "learning_rate": 0.0006,
+ "loss": 3.475505828857422,
+ "step": 5259
+ },
+ {
+ "epoch": 73.05591961555264,
+ "grad_norm": 0.32880520820617676,
+ "learning_rate": 0.0006,
+ "loss": 3.493833541870117,
+ "step": 5260
+ },
+ {
+ "epoch": 73.06989951944081,
+ "grad_norm": 0.2588718831539154,
+ "learning_rate": 0.0006,
+ "loss": 3.469942092895508,
+ "step": 5261
+ },
+ {
+ "epoch": 73.08387942332897,
+ "grad_norm": 0.2732829749584198,
+ "learning_rate": 0.0006,
+ "loss": 3.4531373977661133,
+ "step": 5262
+ },
+ {
+ "epoch": 73.09785932721712,
+ "grad_norm": 0.320829302072525,
+ "learning_rate": 0.0006,
+ "loss": 3.492429256439209,
+ "step": 5263
+ },
+ {
+ "epoch": 73.1118392311053,
+ "grad_norm": 0.24258096516132355,
+ "learning_rate": 0.0006,
+ "loss": 3.4776196479797363,
+ "step": 5264
+ },
+ {
+ "epoch": 73.12581913499345,
+ "grad_norm": 0.24697262048721313,
+ "learning_rate": 0.0006,
+ "loss": 3.4624526500701904,
+ "step": 5265
+ },
+ {
+ "epoch": 73.1397990388816,
+ "grad_norm": 0.2629360258579254,
+ "learning_rate": 0.0006,
+ "loss": 3.4608631134033203,
+ "step": 5266
+ },
+ {
+ "epoch": 73.15377894276976,
+ "grad_norm": 0.27060654759407043,
+ "learning_rate": 0.0006,
+ "loss": 3.4834189414978027,
+ "step": 5267
+ },
+ {
+ "epoch": 73.16775884665793,
+ "grad_norm": 0.246307834982872,
+ "learning_rate": 0.0006,
+ "loss": 3.477510929107666,
+ "step": 5268
+ },
+ {
+ "epoch": 73.18173875054609,
+ "grad_norm": 0.2469998300075531,
+ "learning_rate": 0.0006,
+ "loss": 3.4855780601501465,
+ "step": 5269
+ },
+ {
+ "epoch": 73.19571865443424,
+ "grad_norm": 0.24349135160446167,
+ "learning_rate": 0.0006,
+ "loss": 3.468322277069092,
+ "step": 5270
+ },
+ {
+ "epoch": 73.20969855832242,
+ "grad_norm": 0.22562023997306824,
+ "learning_rate": 0.0006,
+ "loss": 3.4036335945129395,
+ "step": 5271
+ },
+ {
+ "epoch": 73.22367846221057,
+ "grad_norm": 0.2311064749956131,
+ "learning_rate": 0.0006,
+ "loss": 3.4399924278259277,
+ "step": 5272
+ },
+ {
+ "epoch": 73.23765836609873,
+ "grad_norm": 0.21685704588890076,
+ "learning_rate": 0.0006,
+ "loss": 3.476149797439575,
+ "step": 5273
+ },
+ {
+ "epoch": 73.2516382699869,
+ "grad_norm": 0.22484169900417328,
+ "learning_rate": 0.0006,
+ "loss": 3.475130081176758,
+ "step": 5274
+ },
+ {
+ "epoch": 73.26561817387505,
+ "grad_norm": 0.22753819823265076,
+ "learning_rate": 0.0006,
+ "loss": 3.5259978771209717,
+ "step": 5275
+ },
+ {
+ "epoch": 73.27959807776321,
+ "grad_norm": 0.23297421634197235,
+ "learning_rate": 0.0006,
+ "loss": 3.4897689819335938,
+ "step": 5276
+ },
+ {
+ "epoch": 73.29357798165138,
+ "grad_norm": 0.22227609157562256,
+ "learning_rate": 0.0006,
+ "loss": 3.4681925773620605,
+ "step": 5277
+ },
+ {
+ "epoch": 73.30755788553954,
+ "grad_norm": 0.23390381038188934,
+ "learning_rate": 0.0006,
+ "loss": 3.4816267490386963,
+ "step": 5278
+ },
+ {
+ "epoch": 73.3215377894277,
+ "grad_norm": 0.25036972761154175,
+ "learning_rate": 0.0006,
+ "loss": 3.4513161182403564,
+ "step": 5279
+ },
+ {
+ "epoch": 73.33551769331586,
+ "grad_norm": 0.22425831854343414,
+ "learning_rate": 0.0006,
+ "loss": 3.504206657409668,
+ "step": 5280
+ },
+ {
+ "epoch": 73.34949759720402,
+ "grad_norm": 0.20987127721309662,
+ "learning_rate": 0.0006,
+ "loss": 3.463526487350464,
+ "step": 5281
+ },
+ {
+ "epoch": 73.36347750109218,
+ "grad_norm": 0.22594138979911804,
+ "learning_rate": 0.0006,
+ "loss": 3.467395067214966,
+ "step": 5282
+ },
+ {
+ "epoch": 73.37745740498035,
+ "grad_norm": 0.2819368243217468,
+ "learning_rate": 0.0006,
+ "loss": 3.458601236343384,
+ "step": 5283
+ },
+ {
+ "epoch": 73.3914373088685,
+ "grad_norm": 0.28703081607818604,
+ "learning_rate": 0.0006,
+ "loss": 3.489081382751465,
+ "step": 5284
+ },
+ {
+ "epoch": 73.40541721275666,
+ "grad_norm": 0.22495481371879578,
+ "learning_rate": 0.0006,
+ "loss": 3.4584622383117676,
+ "step": 5285
+ },
+ {
+ "epoch": 73.41939711664482,
+ "grad_norm": 0.26278403401374817,
+ "learning_rate": 0.0006,
+ "loss": 3.4610750675201416,
+ "step": 5286
+ },
+ {
+ "epoch": 73.43337702053299,
+ "grad_norm": 0.2335882931947708,
+ "learning_rate": 0.0006,
+ "loss": 3.4642205238342285,
+ "step": 5287
+ },
+ {
+ "epoch": 73.44735692442114,
+ "grad_norm": 0.23634950816631317,
+ "learning_rate": 0.0006,
+ "loss": 3.4628195762634277,
+ "step": 5288
+ },
+ {
+ "epoch": 73.4613368283093,
+ "grad_norm": 0.2428942620754242,
+ "learning_rate": 0.0006,
+ "loss": 3.486786365509033,
+ "step": 5289
+ },
+ {
+ "epoch": 73.47531673219747,
+ "grad_norm": 0.2235412299633026,
+ "learning_rate": 0.0006,
+ "loss": 3.4655373096466064,
+ "step": 5290
+ },
+ {
+ "epoch": 73.48929663608563,
+ "grad_norm": 0.22825124859809875,
+ "learning_rate": 0.0006,
+ "loss": 3.519115924835205,
+ "step": 5291
+ },
+ {
+ "epoch": 73.50327653997378,
+ "grad_norm": 0.22555601596832275,
+ "learning_rate": 0.0006,
+ "loss": 3.4672327041625977,
+ "step": 5292
+ },
+ {
+ "epoch": 73.51725644386195,
+ "grad_norm": 0.21196876466274261,
+ "learning_rate": 0.0006,
+ "loss": 3.477919101715088,
+ "step": 5293
+ },
+ {
+ "epoch": 73.53123634775011,
+ "grad_norm": 0.21254780888557434,
+ "learning_rate": 0.0006,
+ "loss": 3.493739604949951,
+ "step": 5294
+ },
+ {
+ "epoch": 73.54521625163827,
+ "grad_norm": 0.22243253886699677,
+ "learning_rate": 0.0006,
+ "loss": 3.5028891563415527,
+ "step": 5295
+ },
+ {
+ "epoch": 73.55919615552644,
+ "grad_norm": 0.1982688158750534,
+ "learning_rate": 0.0006,
+ "loss": 3.490211009979248,
+ "step": 5296
+ },
+ {
+ "epoch": 73.57317605941459,
+ "grad_norm": 0.19433127343654633,
+ "learning_rate": 0.0006,
+ "loss": 3.5000174045562744,
+ "step": 5297
+ },
+ {
+ "epoch": 73.58715596330275,
+ "grad_norm": 0.19470061361789703,
+ "learning_rate": 0.0006,
+ "loss": 3.4725089073181152,
+ "step": 5298
+ },
+ {
+ "epoch": 73.60113586719092,
+ "grad_norm": 0.20479093492031097,
+ "learning_rate": 0.0006,
+ "loss": 3.473649501800537,
+ "step": 5299
+ },
+ {
+ "epoch": 73.61511577107908,
+ "grad_norm": 0.22485226392745972,
+ "learning_rate": 0.0006,
+ "loss": 3.5234975814819336,
+ "step": 5300
+ },
+ {
+ "epoch": 73.62909567496723,
+ "grad_norm": 0.2219000905752182,
+ "learning_rate": 0.0006,
+ "loss": 3.483283281326294,
+ "step": 5301
+ },
+ {
+ "epoch": 73.6430755788554,
+ "grad_norm": 0.25735849142074585,
+ "learning_rate": 0.0006,
+ "loss": 3.4863831996917725,
+ "step": 5302
+ },
+ {
+ "epoch": 73.65705548274356,
+ "grad_norm": 0.2822291851043701,
+ "learning_rate": 0.0006,
+ "loss": 3.4864425659179688,
+ "step": 5303
+ },
+ {
+ "epoch": 73.67103538663171,
+ "grad_norm": 0.2965867817401886,
+ "learning_rate": 0.0006,
+ "loss": 3.487774133682251,
+ "step": 5304
+ },
+ {
+ "epoch": 73.68501529051987,
+ "grad_norm": 0.2446807473897934,
+ "learning_rate": 0.0006,
+ "loss": 3.485553741455078,
+ "step": 5305
+ },
+ {
+ "epoch": 73.69899519440804,
+ "grad_norm": 0.2298526167869568,
+ "learning_rate": 0.0006,
+ "loss": 3.4513039588928223,
+ "step": 5306
+ },
+ {
+ "epoch": 73.7129750982962,
+ "grad_norm": 0.24967409670352936,
+ "learning_rate": 0.0006,
+ "loss": 3.4974756240844727,
+ "step": 5307
+ },
+ {
+ "epoch": 73.72695500218435,
+ "grad_norm": 0.22180770337581635,
+ "learning_rate": 0.0006,
+ "loss": 3.501955509185791,
+ "step": 5308
+ },
+ {
+ "epoch": 73.74093490607252,
+ "grad_norm": 0.21294254064559937,
+ "learning_rate": 0.0006,
+ "loss": 3.52626371383667,
+ "step": 5309
+ },
+ {
+ "epoch": 73.75491480996068,
+ "grad_norm": 0.23970918357372284,
+ "learning_rate": 0.0006,
+ "loss": 3.479355812072754,
+ "step": 5310
+ },
+ {
+ "epoch": 73.76889471384884,
+ "grad_norm": 0.22978267073631287,
+ "learning_rate": 0.0006,
+ "loss": 3.4972357749938965,
+ "step": 5311
+ },
+ {
+ "epoch": 73.78287461773701,
+ "grad_norm": 0.22393731772899628,
+ "learning_rate": 0.0006,
+ "loss": 3.499718189239502,
+ "step": 5312
+ },
+ {
+ "epoch": 73.79685452162516,
+ "grad_norm": 0.2265646904706955,
+ "learning_rate": 0.0006,
+ "loss": 3.5240416526794434,
+ "step": 5313
+ },
+ {
+ "epoch": 73.81083442551332,
+ "grad_norm": 0.23060904443264008,
+ "learning_rate": 0.0006,
+ "loss": 3.4981179237365723,
+ "step": 5314
+ },
+ {
+ "epoch": 73.82481432940149,
+ "grad_norm": 0.2358054369688034,
+ "learning_rate": 0.0006,
+ "loss": 3.4671754837036133,
+ "step": 5315
+ },
+ {
+ "epoch": 73.83879423328965,
+ "grad_norm": 0.22466880083084106,
+ "learning_rate": 0.0006,
+ "loss": 3.5178170204162598,
+ "step": 5316
+ },
+ {
+ "epoch": 73.8527741371778,
+ "grad_norm": 0.24523386359214783,
+ "learning_rate": 0.0006,
+ "loss": 3.5059657096862793,
+ "step": 5317
+ },
+ {
+ "epoch": 73.86675404106597,
+ "grad_norm": 0.24812379479408264,
+ "learning_rate": 0.0006,
+ "loss": 3.4979734420776367,
+ "step": 5318
+ },
+ {
+ "epoch": 73.88073394495413,
+ "grad_norm": 0.2210223525762558,
+ "learning_rate": 0.0006,
+ "loss": 3.5158674716949463,
+ "step": 5319
+ },
+ {
+ "epoch": 73.89471384884229,
+ "grad_norm": 0.23374506831169128,
+ "learning_rate": 0.0006,
+ "loss": 3.4730381965637207,
+ "step": 5320
+ },
+ {
+ "epoch": 73.90869375273044,
+ "grad_norm": 0.2209903597831726,
+ "learning_rate": 0.0006,
+ "loss": 3.5152671337127686,
+ "step": 5321
+ },
+ {
+ "epoch": 73.92267365661861,
+ "grad_norm": 0.19783467054367065,
+ "learning_rate": 0.0006,
+ "loss": 3.508627414703369,
+ "step": 5322
+ },
+ {
+ "epoch": 73.93665356050677,
+ "grad_norm": 0.20683151483535767,
+ "learning_rate": 0.0006,
+ "loss": 3.5041322708129883,
+ "step": 5323
+ },
+ {
+ "epoch": 73.95063346439493,
+ "grad_norm": 0.20111984014511108,
+ "learning_rate": 0.0006,
+ "loss": 3.4618184566497803,
+ "step": 5324
+ },
+ {
+ "epoch": 73.9646133682831,
+ "grad_norm": 0.22296449542045593,
+ "learning_rate": 0.0006,
+ "loss": 3.4695611000061035,
+ "step": 5325
+ },
+ {
+ "epoch": 73.97859327217125,
+ "grad_norm": 0.22317543625831604,
+ "learning_rate": 0.0006,
+ "loss": 3.497115135192871,
+ "step": 5326
+ },
+ {
+ "epoch": 73.99257317605941,
+ "grad_norm": 0.19182799756526947,
+ "learning_rate": 0.0006,
+ "loss": 3.502279758453369,
+ "step": 5327
+ },
+ {
+ "epoch": 74.0,
+ "grad_norm": 0.2484123259782791,
+ "learning_rate": 0.0006,
+ "loss": 3.4998650550842285,
+ "step": 5328
+ },
+ {
+ "epoch": 74.0,
+ "eval_loss": 3.977353572845459,
+ "eval_runtime": 46.9154,
+ "eval_samples_per_second": 52.051,
+ "eval_steps_per_second": 3.261,
+ "step": 5328
+ },
+ {
+ "epoch": 74.01397990388816,
+ "grad_norm": 0.2512458860874176,
+ "learning_rate": 0.0006,
+ "loss": 3.454616069793701,
+ "step": 5329
+ },
+ {
+ "epoch": 74.02795980777633,
+ "grad_norm": 0.2781964838504791,
+ "learning_rate": 0.0006,
+ "loss": 3.4444780349731445,
+ "step": 5330
+ },
+ {
+ "epoch": 74.04193971166448,
+ "grad_norm": 0.3014058470726013,
+ "learning_rate": 0.0006,
+ "loss": 3.4059829711914062,
+ "step": 5331
+ },
+ {
+ "epoch": 74.05591961555264,
+ "grad_norm": 0.28226929903030396,
+ "learning_rate": 0.0006,
+ "loss": 3.474538803100586,
+ "step": 5332
+ },
+ {
+ "epoch": 74.06989951944081,
+ "grad_norm": 0.22589807212352753,
+ "learning_rate": 0.0006,
+ "loss": 3.4484004974365234,
+ "step": 5333
+ },
+ {
+ "epoch": 74.08387942332897,
+ "grad_norm": 0.2317565679550171,
+ "learning_rate": 0.0006,
+ "loss": 3.4559502601623535,
+ "step": 5334
+ },
+ {
+ "epoch": 74.09785932721712,
+ "grad_norm": 0.2484085112810135,
+ "learning_rate": 0.0006,
+ "loss": 3.4723763465881348,
+ "step": 5335
+ },
+ {
+ "epoch": 74.1118392311053,
+ "grad_norm": 0.24313412606716156,
+ "learning_rate": 0.0006,
+ "loss": 3.4581704139709473,
+ "step": 5336
+ },
+ {
+ "epoch": 74.12581913499345,
+ "grad_norm": 0.2317453771829605,
+ "learning_rate": 0.0006,
+ "loss": 3.4556710720062256,
+ "step": 5337
+ },
+ {
+ "epoch": 74.1397990388816,
+ "grad_norm": 0.2423294484615326,
+ "learning_rate": 0.0006,
+ "loss": 3.450899124145508,
+ "step": 5338
+ },
+ {
+ "epoch": 74.15377894276976,
+ "grad_norm": 0.24861979484558105,
+ "learning_rate": 0.0006,
+ "loss": 3.4524154663085938,
+ "step": 5339
+ },
+ {
+ "epoch": 74.16775884665793,
+ "grad_norm": 0.27226537466049194,
+ "learning_rate": 0.0006,
+ "loss": 3.4728293418884277,
+ "step": 5340
+ },
+ {
+ "epoch": 74.18173875054609,
+ "grad_norm": 0.29282820224761963,
+ "learning_rate": 0.0006,
+ "loss": 3.482450008392334,
+ "step": 5341
+ },
+ {
+ "epoch": 74.19571865443424,
+ "grad_norm": 0.2666662931442261,
+ "learning_rate": 0.0006,
+ "loss": 3.4708619117736816,
+ "step": 5342
+ },
+ {
+ "epoch": 74.20969855832242,
+ "grad_norm": 0.22029168903827667,
+ "learning_rate": 0.0006,
+ "loss": 3.4592952728271484,
+ "step": 5343
+ },
+ {
+ "epoch": 74.22367846221057,
+ "grad_norm": 0.21203964948654175,
+ "learning_rate": 0.0006,
+ "loss": 3.4983129501342773,
+ "step": 5344
+ },
+ {
+ "epoch": 74.23765836609873,
+ "grad_norm": 0.24254444241523743,
+ "learning_rate": 0.0006,
+ "loss": 3.4695663452148438,
+ "step": 5345
+ },
+ {
+ "epoch": 74.2516382699869,
+ "grad_norm": 0.28514090180397034,
+ "learning_rate": 0.0006,
+ "loss": 3.501779556274414,
+ "step": 5346
+ },
+ {
+ "epoch": 74.26561817387505,
+ "grad_norm": 0.27082809805870056,
+ "learning_rate": 0.0006,
+ "loss": 3.4754765033721924,
+ "step": 5347
+ },
+ {
+ "epoch": 74.27959807776321,
+ "grad_norm": 0.21144570410251617,
+ "learning_rate": 0.0006,
+ "loss": 3.481623649597168,
+ "step": 5348
+ },
+ {
+ "epoch": 74.29357798165138,
+ "grad_norm": 0.23012803494930267,
+ "learning_rate": 0.0006,
+ "loss": 3.478872776031494,
+ "step": 5349
+ },
+ {
+ "epoch": 74.30755788553954,
+ "grad_norm": 0.2497818022966385,
+ "learning_rate": 0.0006,
+ "loss": 3.465214252471924,
+ "step": 5350
+ },
+ {
+ "epoch": 74.3215377894277,
+ "grad_norm": 0.27346086502075195,
+ "learning_rate": 0.0006,
+ "loss": 3.4749603271484375,
+ "step": 5351
+ },
+ {
+ "epoch": 74.33551769331586,
+ "grad_norm": 0.24193984270095825,
+ "learning_rate": 0.0006,
+ "loss": 3.4898180961608887,
+ "step": 5352
+ },
+ {
+ "epoch": 74.34949759720402,
+ "grad_norm": 0.2432994395494461,
+ "learning_rate": 0.0006,
+ "loss": 3.478156089782715,
+ "step": 5353
+ },
+ {
+ "epoch": 74.36347750109218,
+ "grad_norm": 0.331503689289093,
+ "learning_rate": 0.0006,
+ "loss": 3.496690273284912,
+ "step": 5354
+ },
+ {
+ "epoch": 74.37745740498035,
+ "grad_norm": 0.27467086911201477,
+ "learning_rate": 0.0006,
+ "loss": 3.472379684448242,
+ "step": 5355
+ },
+ {
+ "epoch": 74.3914373088685,
+ "grad_norm": 0.23563839495182037,
+ "learning_rate": 0.0006,
+ "loss": 3.4963388442993164,
+ "step": 5356
+ },
+ {
+ "epoch": 74.40541721275666,
+ "grad_norm": 0.23829393088817596,
+ "learning_rate": 0.0006,
+ "loss": 3.473438262939453,
+ "step": 5357
+ },
+ {
+ "epoch": 74.41939711664482,
+ "grad_norm": 0.28113624453544617,
+ "learning_rate": 0.0006,
+ "loss": 3.481104612350464,
+ "step": 5358
+ },
+ {
+ "epoch": 74.43337702053299,
+ "grad_norm": 0.29099389910697937,
+ "learning_rate": 0.0006,
+ "loss": 3.497255325317383,
+ "step": 5359
+ },
+ {
+ "epoch": 74.44735692442114,
+ "grad_norm": 0.24911890923976898,
+ "learning_rate": 0.0006,
+ "loss": 3.4622669219970703,
+ "step": 5360
+ },
+ {
+ "epoch": 74.4613368283093,
+ "grad_norm": 0.2488860785961151,
+ "learning_rate": 0.0006,
+ "loss": 3.4906888008117676,
+ "step": 5361
+ },
+ {
+ "epoch": 74.47531673219747,
+ "grad_norm": 0.27969980239868164,
+ "learning_rate": 0.0006,
+ "loss": 3.495727300643921,
+ "step": 5362
+ },
+ {
+ "epoch": 74.48929663608563,
+ "grad_norm": 0.2811402380466461,
+ "learning_rate": 0.0006,
+ "loss": 3.4817042350769043,
+ "step": 5363
+ },
+ {
+ "epoch": 74.50327653997378,
+ "grad_norm": 0.25717079639434814,
+ "learning_rate": 0.0006,
+ "loss": 3.4818572998046875,
+ "step": 5364
+ },
+ {
+ "epoch": 74.51725644386195,
+ "grad_norm": 0.2527103126049042,
+ "learning_rate": 0.0006,
+ "loss": 3.494536876678467,
+ "step": 5365
+ },
+ {
+ "epoch": 74.53123634775011,
+ "grad_norm": 0.24561476707458496,
+ "learning_rate": 0.0006,
+ "loss": 3.4908809661865234,
+ "step": 5366
+ },
+ {
+ "epoch": 74.54521625163827,
+ "grad_norm": 0.2540345788002014,
+ "learning_rate": 0.0006,
+ "loss": 3.477179765701294,
+ "step": 5367
+ },
+ {
+ "epoch": 74.55919615552644,
+ "grad_norm": 0.2220340371131897,
+ "learning_rate": 0.0006,
+ "loss": 3.4914112091064453,
+ "step": 5368
+ },
+ {
+ "epoch": 74.57317605941459,
+ "grad_norm": 0.21146169304847717,
+ "learning_rate": 0.0006,
+ "loss": 3.457792043685913,
+ "step": 5369
+ },
+ {
+ "epoch": 74.58715596330275,
+ "grad_norm": 0.2657042443752289,
+ "learning_rate": 0.0006,
+ "loss": 3.4626612663269043,
+ "step": 5370
+ },
+ {
+ "epoch": 74.60113586719092,
+ "grad_norm": 0.2684510350227356,
+ "learning_rate": 0.0006,
+ "loss": 3.472271203994751,
+ "step": 5371
+ },
+ {
+ "epoch": 74.61511577107908,
+ "grad_norm": 0.22635070979595184,
+ "learning_rate": 0.0006,
+ "loss": 3.4719159603118896,
+ "step": 5372
+ },
+ {
+ "epoch": 74.62909567496723,
+ "grad_norm": 0.22514945268630981,
+ "learning_rate": 0.0006,
+ "loss": 3.4851810932159424,
+ "step": 5373
+ },
+ {
+ "epoch": 74.6430755788554,
+ "grad_norm": 0.24570822715759277,
+ "learning_rate": 0.0006,
+ "loss": 3.4688820838928223,
+ "step": 5374
+ },
+ {
+ "epoch": 74.65705548274356,
+ "grad_norm": 0.24397042393684387,
+ "learning_rate": 0.0006,
+ "loss": 3.4923229217529297,
+ "step": 5375
+ },
+ {
+ "epoch": 74.67103538663171,
+ "grad_norm": 0.23729953169822693,
+ "learning_rate": 0.0006,
+ "loss": 3.4608895778656006,
+ "step": 5376
+ },
+ {
+ "epoch": 74.68501529051987,
+ "grad_norm": 0.2729131877422333,
+ "learning_rate": 0.0006,
+ "loss": 3.4602279663085938,
+ "step": 5377
+ },
+ {
+ "epoch": 74.69899519440804,
+ "grad_norm": 0.25115323066711426,
+ "learning_rate": 0.0006,
+ "loss": 3.514993906021118,
+ "step": 5378
+ },
+ {
+ "epoch": 74.7129750982962,
+ "grad_norm": 0.22035203874111176,
+ "learning_rate": 0.0006,
+ "loss": 3.4471445083618164,
+ "step": 5379
+ },
+ {
+ "epoch": 74.72695500218435,
+ "grad_norm": 0.21248559653759003,
+ "learning_rate": 0.0006,
+ "loss": 3.495924472808838,
+ "step": 5380
+ },
+ {
+ "epoch": 74.74093490607252,
+ "grad_norm": 0.2532788813114166,
+ "learning_rate": 0.0006,
+ "loss": 3.4937939643859863,
+ "step": 5381
+ },
+ {
+ "epoch": 74.75491480996068,
+ "grad_norm": 0.3140663206577301,
+ "learning_rate": 0.0006,
+ "loss": 3.47257661819458,
+ "step": 5382
+ },
+ {
+ "epoch": 74.76889471384884,
+ "grad_norm": 0.24233469367027283,
+ "learning_rate": 0.0006,
+ "loss": 3.522697925567627,
+ "step": 5383
+ },
+ {
+ "epoch": 74.78287461773701,
+ "grad_norm": 0.21789517998695374,
+ "learning_rate": 0.0006,
+ "loss": 3.4718894958496094,
+ "step": 5384
+ },
+ {
+ "epoch": 74.79685452162516,
+ "grad_norm": 0.27909520268440247,
+ "learning_rate": 0.0006,
+ "loss": 3.495565891265869,
+ "step": 5385
+ },
+ {
+ "epoch": 74.81083442551332,
+ "grad_norm": 0.2829185724258423,
+ "learning_rate": 0.0006,
+ "loss": 3.498117446899414,
+ "step": 5386
+ },
+ {
+ "epoch": 74.82481432940149,
+ "grad_norm": 0.24295735359191895,
+ "learning_rate": 0.0006,
+ "loss": 3.520672559738159,
+ "step": 5387
+ },
+ {
+ "epoch": 74.83879423328965,
+ "grad_norm": 0.22691823542118073,
+ "learning_rate": 0.0006,
+ "loss": 3.493411064147949,
+ "step": 5388
+ },
+ {
+ "epoch": 74.8527741371778,
+ "grad_norm": 0.2304782122373581,
+ "learning_rate": 0.0006,
+ "loss": 3.515381336212158,
+ "step": 5389
+ },
+ {
+ "epoch": 74.86675404106597,
+ "grad_norm": 0.2201395034790039,
+ "learning_rate": 0.0006,
+ "loss": 3.4841480255126953,
+ "step": 5390
+ },
+ {
+ "epoch": 74.88073394495413,
+ "grad_norm": 0.2174619734287262,
+ "learning_rate": 0.0006,
+ "loss": 3.522420883178711,
+ "step": 5391
+ },
+ {
+ "epoch": 74.89471384884229,
+ "grad_norm": 0.2168722301721573,
+ "learning_rate": 0.0006,
+ "loss": 3.5378670692443848,
+ "step": 5392
+ },
+ {
+ "epoch": 74.90869375273044,
+ "grad_norm": 0.2191118448972702,
+ "learning_rate": 0.0006,
+ "loss": 3.4727582931518555,
+ "step": 5393
+ },
+ {
+ "epoch": 74.92267365661861,
+ "grad_norm": 0.20210173726081848,
+ "learning_rate": 0.0006,
+ "loss": 3.482863426208496,
+ "step": 5394
+ },
+ {
+ "epoch": 74.93665356050677,
+ "grad_norm": 0.2193301022052765,
+ "learning_rate": 0.0006,
+ "loss": 3.504102945327759,
+ "step": 5395
+ },
+ {
+ "epoch": 74.95063346439493,
+ "grad_norm": 0.24017557501792908,
+ "learning_rate": 0.0006,
+ "loss": 3.5117030143737793,
+ "step": 5396
+ },
+ {
+ "epoch": 74.9646133682831,
+ "grad_norm": 0.2410554140806198,
+ "learning_rate": 0.0006,
+ "loss": 3.4764766693115234,
+ "step": 5397
+ },
+ {
+ "epoch": 74.97859327217125,
+ "grad_norm": 0.22423039376735687,
+ "learning_rate": 0.0006,
+ "loss": 3.480515480041504,
+ "step": 5398
+ },
+ {
+ "epoch": 74.99257317605941,
+ "grad_norm": 0.21722744405269623,
+ "learning_rate": 0.0006,
+ "loss": 3.498002052307129,
+ "step": 5399
+ },
+ {
+ "epoch": 75.0,
+ "grad_norm": 0.25303882360458374,
+ "learning_rate": 0.0006,
+ "loss": 3.5146775245666504,
+ "step": 5400
+ },
+ {
+ "epoch": 75.0,
+ "eval_loss": 3.98659610748291,
+ "eval_runtime": 46.184,
+ "eval_samples_per_second": 52.875,
+ "eval_steps_per_second": 3.313,
+ "step": 5400
+ },
+ {
+ "epoch": 75.01397990388816,
+ "grad_norm": 0.22890645265579224,
+ "learning_rate": 0.0006,
+ "loss": 3.4320144653320312,
+ "step": 5401
+ },
+ {
+ "epoch": 75.02795980777633,
+ "grad_norm": 0.21108074486255646,
+ "learning_rate": 0.0006,
+ "loss": 3.4783573150634766,
+ "step": 5402
+ },
+ {
+ "epoch": 75.04193971166448,
+ "grad_norm": 0.24622507393360138,
+ "learning_rate": 0.0006,
+ "loss": 3.443662643432617,
+ "step": 5403
+ },
+ {
+ "epoch": 75.05591961555264,
+ "grad_norm": 0.27554580569267273,
+ "learning_rate": 0.0006,
+ "loss": 3.4758429527282715,
+ "step": 5404
+ },
+ {
+ "epoch": 75.06989951944081,
+ "grad_norm": 0.23775196075439453,
+ "learning_rate": 0.0006,
+ "loss": 3.433439254760742,
+ "step": 5405
+ },
+ {
+ "epoch": 75.08387942332897,
+ "grad_norm": 0.24933192133903503,
+ "learning_rate": 0.0006,
+ "loss": 3.474876642227173,
+ "step": 5406
+ },
+ {
+ "epoch": 75.09785932721712,
+ "grad_norm": 0.25970155000686646,
+ "learning_rate": 0.0006,
+ "loss": 3.4557571411132812,
+ "step": 5407
+ },
+ {
+ "epoch": 75.1118392311053,
+ "grad_norm": 0.24002394080162048,
+ "learning_rate": 0.0006,
+ "loss": 3.487683057785034,
+ "step": 5408
+ },
+ {
+ "epoch": 75.12581913499345,
+ "grad_norm": 0.23790079355239868,
+ "learning_rate": 0.0006,
+ "loss": 3.4572582244873047,
+ "step": 5409
+ },
+ {
+ "epoch": 75.1397990388816,
+ "grad_norm": 0.24431537091732025,
+ "learning_rate": 0.0006,
+ "loss": 3.47338604927063,
+ "step": 5410
+ },
+ {
+ "epoch": 75.15377894276976,
+ "grad_norm": 0.23062901198863983,
+ "learning_rate": 0.0006,
+ "loss": 3.4597620964050293,
+ "step": 5411
+ },
+ {
+ "epoch": 75.16775884665793,
+ "grad_norm": 0.22011473774909973,
+ "learning_rate": 0.0006,
+ "loss": 3.442854404449463,
+ "step": 5412
+ },
+ {
+ "epoch": 75.18173875054609,
+ "grad_norm": 0.22079597413539886,
+ "learning_rate": 0.0006,
+ "loss": 3.4655394554138184,
+ "step": 5413
+ },
+ {
+ "epoch": 75.19571865443424,
+ "grad_norm": 0.2491050660610199,
+ "learning_rate": 0.0006,
+ "loss": 3.4235432147979736,
+ "step": 5414
+ },
+ {
+ "epoch": 75.20969855832242,
+ "grad_norm": 0.2579537332057953,
+ "learning_rate": 0.0006,
+ "loss": 3.4655489921569824,
+ "step": 5415
+ },
+ {
+ "epoch": 75.22367846221057,
+ "grad_norm": 0.2544846832752228,
+ "learning_rate": 0.0006,
+ "loss": 3.4843227863311768,
+ "step": 5416
+ },
+ {
+ "epoch": 75.23765836609873,
+ "grad_norm": 0.2496761977672577,
+ "learning_rate": 0.0006,
+ "loss": 3.4830572605133057,
+ "step": 5417
+ },
+ {
+ "epoch": 75.2516382699869,
+ "grad_norm": 0.23450163006782532,
+ "learning_rate": 0.0006,
+ "loss": 3.4443750381469727,
+ "step": 5418
+ },
+ {
+ "epoch": 75.26561817387505,
+ "grad_norm": 0.21221424639225006,
+ "learning_rate": 0.0006,
+ "loss": 3.4960341453552246,
+ "step": 5419
+ },
+ {
+ "epoch": 75.27959807776321,
+ "grad_norm": 0.24375751614570618,
+ "learning_rate": 0.0006,
+ "loss": 3.489213466644287,
+ "step": 5420
+ },
+ {
+ "epoch": 75.29357798165138,
+ "grad_norm": 0.2396956831216812,
+ "learning_rate": 0.0006,
+ "loss": 3.4710469245910645,
+ "step": 5421
+ },
+ {
+ "epoch": 75.30755788553954,
+ "grad_norm": 0.2423015981912613,
+ "learning_rate": 0.0006,
+ "loss": 3.4676403999328613,
+ "step": 5422
+ },
+ {
+ "epoch": 75.3215377894277,
+ "grad_norm": 0.21398219466209412,
+ "learning_rate": 0.0006,
+ "loss": 3.4844627380371094,
+ "step": 5423
+ },
+ {
+ "epoch": 75.33551769331586,
+ "grad_norm": 0.22983498871326447,
+ "learning_rate": 0.0006,
+ "loss": 3.499535083770752,
+ "step": 5424
+ },
+ {
+ "epoch": 75.34949759720402,
+ "grad_norm": 0.2247568666934967,
+ "learning_rate": 0.0006,
+ "loss": 3.459460973739624,
+ "step": 5425
+ },
+ {
+ "epoch": 75.36347750109218,
+ "grad_norm": 0.2223675400018692,
+ "learning_rate": 0.0006,
+ "loss": 3.483078718185425,
+ "step": 5426
+ },
+ {
+ "epoch": 75.37745740498035,
+ "grad_norm": 0.25076913833618164,
+ "learning_rate": 0.0006,
+ "loss": 3.4823365211486816,
+ "step": 5427
+ },
+ {
+ "epoch": 75.3914373088685,
+ "grad_norm": 0.23170171678066254,
+ "learning_rate": 0.0006,
+ "loss": 3.487278461456299,
+ "step": 5428
+ },
+ {
+ "epoch": 75.40541721275666,
+ "grad_norm": 0.22735518217086792,
+ "learning_rate": 0.0006,
+ "loss": 3.4565181732177734,
+ "step": 5429
+ },
+ {
+ "epoch": 75.41939711664482,
+ "grad_norm": 0.2241843193769455,
+ "learning_rate": 0.0006,
+ "loss": 3.4886221885681152,
+ "step": 5430
+ },
+ {
+ "epoch": 75.43337702053299,
+ "grad_norm": 0.23641140758991241,
+ "learning_rate": 0.0006,
+ "loss": 3.4589765071868896,
+ "step": 5431
+ },
+ {
+ "epoch": 75.44735692442114,
+ "grad_norm": 0.22404645383358002,
+ "learning_rate": 0.0006,
+ "loss": 3.4804739952087402,
+ "step": 5432
+ },
+ {
+ "epoch": 75.4613368283093,
+ "grad_norm": 0.22107535600662231,
+ "learning_rate": 0.0006,
+ "loss": 3.5022053718566895,
+ "step": 5433
+ },
+ {
+ "epoch": 75.47531673219747,
+ "grad_norm": 0.26106131076812744,
+ "learning_rate": 0.0006,
+ "loss": 3.4907431602478027,
+ "step": 5434
+ },
+ {
+ "epoch": 75.48929663608563,
+ "grad_norm": 0.24156032502651215,
+ "learning_rate": 0.0006,
+ "loss": 3.4733991622924805,
+ "step": 5435
+ },
+ {
+ "epoch": 75.50327653997378,
+ "grad_norm": 0.24767442047595978,
+ "learning_rate": 0.0006,
+ "loss": 3.4697909355163574,
+ "step": 5436
+ },
+ {
+ "epoch": 75.51725644386195,
+ "grad_norm": 0.2323860228061676,
+ "learning_rate": 0.0006,
+ "loss": 3.4606242179870605,
+ "step": 5437
+ },
+ {
+ "epoch": 75.53123634775011,
+ "grad_norm": 0.2262393981218338,
+ "learning_rate": 0.0006,
+ "loss": 3.4854025840759277,
+ "step": 5438
+ },
+ {
+ "epoch": 75.54521625163827,
+ "grad_norm": 0.23461535573005676,
+ "learning_rate": 0.0006,
+ "loss": 3.4778385162353516,
+ "step": 5439
+ },
+ {
+ "epoch": 75.55919615552644,
+ "grad_norm": 0.27161163091659546,
+ "learning_rate": 0.0006,
+ "loss": 3.495377540588379,
+ "step": 5440
+ },
+ {
+ "epoch": 75.57317605941459,
+ "grad_norm": 0.24618741869926453,
+ "learning_rate": 0.0006,
+ "loss": 3.47642183303833,
+ "step": 5441
+ },
+ {
+ "epoch": 75.58715596330275,
+ "grad_norm": 0.22948747873306274,
+ "learning_rate": 0.0006,
+ "loss": 3.4459116458892822,
+ "step": 5442
+ },
+ {
+ "epoch": 75.60113586719092,
+ "grad_norm": 0.23935501277446747,
+ "learning_rate": 0.0006,
+ "loss": 3.487091541290283,
+ "step": 5443
+ },
+ {
+ "epoch": 75.61511577107908,
+ "grad_norm": 0.2796297073364258,
+ "learning_rate": 0.0006,
+ "loss": 3.473480701446533,
+ "step": 5444
+ },
+ {
+ "epoch": 75.62909567496723,
+ "grad_norm": 0.29329824447631836,
+ "learning_rate": 0.0006,
+ "loss": 3.5074462890625,
+ "step": 5445
+ },
+ {
+ "epoch": 75.6430755788554,
+ "grad_norm": 0.2570355534553528,
+ "learning_rate": 0.0006,
+ "loss": 3.489321231842041,
+ "step": 5446
+ },
+ {
+ "epoch": 75.65705548274356,
+ "grad_norm": 0.2363484650850296,
+ "learning_rate": 0.0006,
+ "loss": 3.468007802963257,
+ "step": 5447
+ },
+ {
+ "epoch": 75.67103538663171,
+ "grad_norm": 0.2406139075756073,
+ "learning_rate": 0.0006,
+ "loss": 3.46791410446167,
+ "step": 5448
+ },
+ {
+ "epoch": 75.68501529051987,
+ "grad_norm": 0.21734113991260529,
+ "learning_rate": 0.0006,
+ "loss": 3.4879536628723145,
+ "step": 5449
+ },
+ {
+ "epoch": 75.69899519440804,
+ "grad_norm": 0.23314808309078217,
+ "learning_rate": 0.0006,
+ "loss": 3.4743285179138184,
+ "step": 5450
+ },
+ {
+ "epoch": 75.7129750982962,
+ "grad_norm": 0.23886935412883759,
+ "learning_rate": 0.0006,
+ "loss": 3.4746532440185547,
+ "step": 5451
+ },
+ {
+ "epoch": 75.72695500218435,
+ "grad_norm": 0.22808042168617249,
+ "learning_rate": 0.0006,
+ "loss": 3.4969987869262695,
+ "step": 5452
+ },
+ {
+ "epoch": 75.74093490607252,
+ "grad_norm": 0.2143876552581787,
+ "learning_rate": 0.0006,
+ "loss": 3.4843339920043945,
+ "step": 5453
+ },
+ {
+ "epoch": 75.75491480996068,
+ "grad_norm": 0.21905699372291565,
+ "learning_rate": 0.0006,
+ "loss": 3.4854626655578613,
+ "step": 5454
+ },
+ {
+ "epoch": 75.76889471384884,
+ "grad_norm": 0.222469300031662,
+ "learning_rate": 0.0006,
+ "loss": 3.4997758865356445,
+ "step": 5455
+ },
+ {
+ "epoch": 75.78287461773701,
+ "grad_norm": 0.23095394670963287,
+ "learning_rate": 0.0006,
+ "loss": 3.515315532684326,
+ "step": 5456
+ },
+ {
+ "epoch": 75.79685452162516,
+ "grad_norm": 0.23326516151428223,
+ "learning_rate": 0.0006,
+ "loss": 3.482665538787842,
+ "step": 5457
+ },
+ {
+ "epoch": 75.81083442551332,
+ "grad_norm": 0.22779764235019684,
+ "learning_rate": 0.0006,
+ "loss": 3.5068790912628174,
+ "step": 5458
+ },
+ {
+ "epoch": 75.82481432940149,
+ "grad_norm": 0.2396935224533081,
+ "learning_rate": 0.0006,
+ "loss": 3.4874000549316406,
+ "step": 5459
+ },
+ {
+ "epoch": 75.83879423328965,
+ "grad_norm": 0.25353050231933594,
+ "learning_rate": 0.0006,
+ "loss": 3.4948503971099854,
+ "step": 5460
+ },
+ {
+ "epoch": 75.8527741371778,
+ "grad_norm": 0.21191656589508057,
+ "learning_rate": 0.0006,
+ "loss": 3.4621965885162354,
+ "step": 5461
+ },
+ {
+ "epoch": 75.86675404106597,
+ "grad_norm": 0.2224014550447464,
+ "learning_rate": 0.0006,
+ "loss": 3.4568324089050293,
+ "step": 5462
+ },
+ {
+ "epoch": 75.88073394495413,
+ "grad_norm": 0.2205243706703186,
+ "learning_rate": 0.0006,
+ "loss": 3.4809136390686035,
+ "step": 5463
+ },
+ {
+ "epoch": 75.89471384884229,
+ "grad_norm": 0.2065657079219818,
+ "learning_rate": 0.0006,
+ "loss": 3.4930431842803955,
+ "step": 5464
+ },
+ {
+ "epoch": 75.90869375273044,
+ "grad_norm": 0.23017582297325134,
+ "learning_rate": 0.0006,
+ "loss": 3.471113443374634,
+ "step": 5465
+ },
+ {
+ "epoch": 75.92267365661861,
+ "grad_norm": 0.23186780512332916,
+ "learning_rate": 0.0006,
+ "loss": 3.4903316497802734,
+ "step": 5466
+ },
+ {
+ "epoch": 75.93665356050677,
+ "grad_norm": 0.21441741287708282,
+ "learning_rate": 0.0006,
+ "loss": 3.4762520790100098,
+ "step": 5467
+ },
+ {
+ "epoch": 75.95063346439493,
+ "grad_norm": 0.23942787945270538,
+ "learning_rate": 0.0006,
+ "loss": 3.5144190788269043,
+ "step": 5468
+ },
+ {
+ "epoch": 75.9646133682831,
+ "grad_norm": 0.2516455352306366,
+ "learning_rate": 0.0006,
+ "loss": 3.496724843978882,
+ "step": 5469
+ },
+ {
+ "epoch": 75.97859327217125,
+ "grad_norm": 0.26983004808425903,
+ "learning_rate": 0.0006,
+ "loss": 3.4975180625915527,
+ "step": 5470
+ },
+ {
+ "epoch": 75.99257317605941,
+ "grad_norm": 0.2471132129430771,
+ "learning_rate": 0.0006,
+ "loss": 3.4897234439849854,
+ "step": 5471
+ },
+ {
+ "epoch": 76.0,
+ "grad_norm": 0.2606436014175415,
+ "learning_rate": 0.0006,
+ "loss": 3.4784388542175293,
+ "step": 5472
+ },
+ {
+ "epoch": 76.0,
+ "eval_loss": 3.973442554473877,
+ "eval_runtime": 46.348,
+ "eval_samples_per_second": 52.688,
+ "eval_steps_per_second": 3.301,
+ "step": 5472
+ },
+ {
+ "epoch": 76.01397990388816,
+ "grad_norm": 0.28274571895599365,
+ "learning_rate": 0.0006,
+ "loss": 3.432469367980957,
+ "step": 5473
+ },
+ {
+ "epoch": 76.02795980777633,
+ "grad_norm": 0.3165026009082794,
+ "learning_rate": 0.0006,
+ "loss": 3.4121832847595215,
+ "step": 5474
+ },
+ {
+ "epoch": 76.04193971166448,
+ "grad_norm": 0.33816471695899963,
+ "learning_rate": 0.0006,
+ "loss": 3.429927349090576,
+ "step": 5475
+ },
+ {
+ "epoch": 76.05591961555264,
+ "grad_norm": 0.2813689112663269,
+ "learning_rate": 0.0006,
+ "loss": 3.4992995262145996,
+ "step": 5476
+ },
+ {
+ "epoch": 76.06989951944081,
+ "grad_norm": 0.2319067418575287,
+ "learning_rate": 0.0006,
+ "loss": 3.468172073364258,
+ "step": 5477
+ },
+ {
+ "epoch": 76.08387942332897,
+ "grad_norm": 0.2963521182537079,
+ "learning_rate": 0.0006,
+ "loss": 3.4306883811950684,
+ "step": 5478
+ },
+ {
+ "epoch": 76.09785932721712,
+ "grad_norm": 0.3123914301395416,
+ "learning_rate": 0.0006,
+ "loss": 3.434607982635498,
+ "step": 5479
+ },
+ {
+ "epoch": 76.1118392311053,
+ "grad_norm": 0.28318360447883606,
+ "learning_rate": 0.0006,
+ "loss": 3.4461169242858887,
+ "step": 5480
+ },
+ {
+ "epoch": 76.12581913499345,
+ "grad_norm": 0.2599116265773773,
+ "learning_rate": 0.0006,
+ "loss": 3.452208995819092,
+ "step": 5481
+ },
+ {
+ "epoch": 76.1397990388816,
+ "grad_norm": 0.2547946274280548,
+ "learning_rate": 0.0006,
+ "loss": 3.456831455230713,
+ "step": 5482
+ },
+ {
+ "epoch": 76.15377894276976,
+ "grad_norm": 0.25178053975105286,
+ "learning_rate": 0.0006,
+ "loss": 3.4486212730407715,
+ "step": 5483
+ },
+ {
+ "epoch": 76.16775884665793,
+ "grad_norm": 0.2500477135181427,
+ "learning_rate": 0.0006,
+ "loss": 3.4861841201782227,
+ "step": 5484
+ },
+ {
+ "epoch": 76.18173875054609,
+ "grad_norm": 0.25729069113731384,
+ "learning_rate": 0.0006,
+ "loss": 3.4522268772125244,
+ "step": 5485
+ },
+ {
+ "epoch": 76.19571865443424,
+ "grad_norm": 0.2618412375450134,
+ "learning_rate": 0.0006,
+ "loss": 3.4625625610351562,
+ "step": 5486
+ },
+ {
+ "epoch": 76.20969855832242,
+ "grad_norm": 0.24906174838542938,
+ "learning_rate": 0.0006,
+ "loss": 3.5010147094726562,
+ "step": 5487
+ },
+ {
+ "epoch": 76.22367846221057,
+ "grad_norm": 0.2631669342517853,
+ "learning_rate": 0.0006,
+ "loss": 3.4834048748016357,
+ "step": 5488
+ },
+ {
+ "epoch": 76.23765836609873,
+ "grad_norm": 0.22962148487567902,
+ "learning_rate": 0.0006,
+ "loss": 3.437201976776123,
+ "step": 5489
+ },
+ {
+ "epoch": 76.2516382699869,
+ "grad_norm": 0.21113844215869904,
+ "learning_rate": 0.0006,
+ "loss": 3.4715452194213867,
+ "step": 5490
+ },
+ {
+ "epoch": 76.26561817387505,
+ "grad_norm": 0.21345451474189758,
+ "learning_rate": 0.0006,
+ "loss": 3.470175266265869,
+ "step": 5491
+ },
+ {
+ "epoch": 76.27959807776321,
+ "grad_norm": 0.22897619009017944,
+ "learning_rate": 0.0006,
+ "loss": 3.458296775817871,
+ "step": 5492
+ },
+ {
+ "epoch": 76.29357798165138,
+ "grad_norm": 0.2222777009010315,
+ "learning_rate": 0.0006,
+ "loss": 3.4519572257995605,
+ "step": 5493
+ },
+ {
+ "epoch": 76.30755788553954,
+ "grad_norm": 0.2297116070985794,
+ "learning_rate": 0.0006,
+ "loss": 3.470816135406494,
+ "step": 5494
+ },
+ {
+ "epoch": 76.3215377894277,
+ "grad_norm": 0.24459777772426605,
+ "learning_rate": 0.0006,
+ "loss": 3.490407943725586,
+ "step": 5495
+ },
+ {
+ "epoch": 76.33551769331586,
+ "grad_norm": 0.22549642622470856,
+ "learning_rate": 0.0006,
+ "loss": 3.471388816833496,
+ "step": 5496
+ },
+ {
+ "epoch": 76.34949759720402,
+ "grad_norm": 0.220009908080101,
+ "learning_rate": 0.0006,
+ "loss": 3.46909761428833,
+ "step": 5497
+ },
+ {
+ "epoch": 76.36347750109218,
+ "grad_norm": 0.21473553776741028,
+ "learning_rate": 0.0006,
+ "loss": 3.491536855697632,
+ "step": 5498
+ },
+ {
+ "epoch": 76.37745740498035,
+ "grad_norm": 0.20368808507919312,
+ "learning_rate": 0.0006,
+ "loss": 3.449502944946289,
+ "step": 5499
+ },
+ {
+ "epoch": 76.3914373088685,
+ "grad_norm": 0.20559734106063843,
+ "learning_rate": 0.0006,
+ "loss": 3.4466171264648438,
+ "step": 5500
+ },
+ {
+ "epoch": 76.40541721275666,
+ "grad_norm": 0.2107473611831665,
+ "learning_rate": 0.0006,
+ "loss": 3.4709558486938477,
+ "step": 5501
+ },
+ {
+ "epoch": 76.41939711664482,
+ "grad_norm": 0.20774322748184204,
+ "learning_rate": 0.0006,
+ "loss": 3.5067873001098633,
+ "step": 5502
+ },
+ {
+ "epoch": 76.43337702053299,
+ "grad_norm": 0.20616984367370605,
+ "learning_rate": 0.0006,
+ "loss": 3.46718168258667,
+ "step": 5503
+ },
+ {
+ "epoch": 76.44735692442114,
+ "grad_norm": 0.22518491744995117,
+ "learning_rate": 0.0006,
+ "loss": 3.4624900817871094,
+ "step": 5504
+ },
+ {
+ "epoch": 76.4613368283093,
+ "grad_norm": 0.21241682767868042,
+ "learning_rate": 0.0006,
+ "loss": 3.4807918071746826,
+ "step": 5505
+ },
+ {
+ "epoch": 76.47531673219747,
+ "grad_norm": 0.20331047475337982,
+ "learning_rate": 0.0006,
+ "loss": 3.4387712478637695,
+ "step": 5506
+ },
+ {
+ "epoch": 76.48929663608563,
+ "grad_norm": 0.20476725697517395,
+ "learning_rate": 0.0006,
+ "loss": 3.478198528289795,
+ "step": 5507
+ },
+ {
+ "epoch": 76.50327653997378,
+ "grad_norm": 0.19799263775348663,
+ "learning_rate": 0.0006,
+ "loss": 3.458812713623047,
+ "step": 5508
+ },
+ {
+ "epoch": 76.51725644386195,
+ "grad_norm": 0.20378418266773224,
+ "learning_rate": 0.0006,
+ "loss": 3.492115020751953,
+ "step": 5509
+ },
+ {
+ "epoch": 76.53123634775011,
+ "grad_norm": 0.19318847358226776,
+ "learning_rate": 0.0006,
+ "loss": 3.444512128829956,
+ "step": 5510
+ },
+ {
+ "epoch": 76.54521625163827,
+ "grad_norm": 0.20766256749629974,
+ "learning_rate": 0.0006,
+ "loss": 3.4897234439849854,
+ "step": 5511
+ },
+ {
+ "epoch": 76.55919615552644,
+ "grad_norm": 0.20554299652576447,
+ "learning_rate": 0.0006,
+ "loss": 3.470285415649414,
+ "step": 5512
+ },
+ {
+ "epoch": 76.57317605941459,
+ "grad_norm": 0.21081854403018951,
+ "learning_rate": 0.0006,
+ "loss": 3.473558187484741,
+ "step": 5513
+ },
+ {
+ "epoch": 76.58715596330275,
+ "grad_norm": 0.23622071743011475,
+ "learning_rate": 0.0006,
+ "loss": 3.4782865047454834,
+ "step": 5514
+ },
+ {
+ "epoch": 76.60113586719092,
+ "grad_norm": 0.22481192648410797,
+ "learning_rate": 0.0006,
+ "loss": 3.4996776580810547,
+ "step": 5515
+ },
+ {
+ "epoch": 76.61511577107908,
+ "grad_norm": 0.2192675620317459,
+ "learning_rate": 0.0006,
+ "loss": 3.521728277206421,
+ "step": 5516
+ },
+ {
+ "epoch": 76.62909567496723,
+ "grad_norm": 0.23627865314483643,
+ "learning_rate": 0.0006,
+ "loss": 3.5019800662994385,
+ "step": 5517
+ },
+ {
+ "epoch": 76.6430755788554,
+ "grad_norm": 0.22374436259269714,
+ "learning_rate": 0.0006,
+ "loss": 3.4527387619018555,
+ "step": 5518
+ },
+ {
+ "epoch": 76.65705548274356,
+ "grad_norm": 0.23872409760951996,
+ "learning_rate": 0.0006,
+ "loss": 3.4938204288482666,
+ "step": 5519
+ },
+ {
+ "epoch": 76.67103538663171,
+ "grad_norm": 0.23943012952804565,
+ "learning_rate": 0.0006,
+ "loss": 3.4902846813201904,
+ "step": 5520
+ },
+ {
+ "epoch": 76.68501529051987,
+ "grad_norm": 0.23605254292488098,
+ "learning_rate": 0.0006,
+ "loss": 3.4715919494628906,
+ "step": 5521
+ },
+ {
+ "epoch": 76.69899519440804,
+ "grad_norm": 0.2116839587688446,
+ "learning_rate": 0.0006,
+ "loss": 3.515658378601074,
+ "step": 5522
+ },
+ {
+ "epoch": 76.7129750982962,
+ "grad_norm": 0.22817043960094452,
+ "learning_rate": 0.0006,
+ "loss": 3.466154098510742,
+ "step": 5523
+ },
+ {
+ "epoch": 76.72695500218435,
+ "grad_norm": 0.26730015873908997,
+ "learning_rate": 0.0006,
+ "loss": 3.4843881130218506,
+ "step": 5524
+ },
+ {
+ "epoch": 76.74093490607252,
+ "grad_norm": 0.24832892417907715,
+ "learning_rate": 0.0006,
+ "loss": 3.495150566101074,
+ "step": 5525
+ },
+ {
+ "epoch": 76.75491480996068,
+ "grad_norm": 0.2358865737915039,
+ "learning_rate": 0.0006,
+ "loss": 3.475858211517334,
+ "step": 5526
+ },
+ {
+ "epoch": 76.76889471384884,
+ "grad_norm": 0.2310672551393509,
+ "learning_rate": 0.0006,
+ "loss": 3.5099706649780273,
+ "step": 5527
+ },
+ {
+ "epoch": 76.78287461773701,
+ "grad_norm": 0.25284910202026367,
+ "learning_rate": 0.0006,
+ "loss": 3.510529041290283,
+ "step": 5528
+ },
+ {
+ "epoch": 76.79685452162516,
+ "grad_norm": 0.25088873505592346,
+ "learning_rate": 0.0006,
+ "loss": 3.480929374694824,
+ "step": 5529
+ },
+ {
+ "epoch": 76.81083442551332,
+ "grad_norm": 0.2349051833152771,
+ "learning_rate": 0.0006,
+ "loss": 3.457334041595459,
+ "step": 5530
+ },
+ {
+ "epoch": 76.82481432940149,
+ "grad_norm": 0.23446795344352722,
+ "learning_rate": 0.0006,
+ "loss": 3.493607997894287,
+ "step": 5531
+ },
+ {
+ "epoch": 76.83879423328965,
+ "grad_norm": 0.2285156399011612,
+ "learning_rate": 0.0006,
+ "loss": 3.4858193397521973,
+ "step": 5532
+ },
+ {
+ "epoch": 76.8527741371778,
+ "grad_norm": 0.2247011512517929,
+ "learning_rate": 0.0006,
+ "loss": 3.4766390323638916,
+ "step": 5533
+ },
+ {
+ "epoch": 76.86675404106597,
+ "grad_norm": 0.2175820916891098,
+ "learning_rate": 0.0006,
+ "loss": 3.4545059204101562,
+ "step": 5534
+ },
+ {
+ "epoch": 76.88073394495413,
+ "grad_norm": 0.22910308837890625,
+ "learning_rate": 0.0006,
+ "loss": 3.5201025009155273,
+ "step": 5535
+ },
+ {
+ "epoch": 76.89471384884229,
+ "grad_norm": 0.25674742460250854,
+ "learning_rate": 0.0006,
+ "loss": 3.4851608276367188,
+ "step": 5536
+ },
+ {
+ "epoch": 76.90869375273044,
+ "grad_norm": 0.2939974069595337,
+ "learning_rate": 0.0006,
+ "loss": 3.4853453636169434,
+ "step": 5537
+ },
+ {
+ "epoch": 76.92267365661861,
+ "grad_norm": 0.30211713910102844,
+ "learning_rate": 0.0006,
+ "loss": 3.465470790863037,
+ "step": 5538
+ },
+ {
+ "epoch": 76.93665356050677,
+ "grad_norm": 0.27954718470573425,
+ "learning_rate": 0.0006,
+ "loss": 3.4921772480010986,
+ "step": 5539
+ },
+ {
+ "epoch": 76.95063346439493,
+ "grad_norm": 0.22834837436676025,
+ "learning_rate": 0.0006,
+ "loss": 3.4936747550964355,
+ "step": 5540
+ },
+ {
+ "epoch": 76.9646133682831,
+ "grad_norm": 0.2698923349380493,
+ "learning_rate": 0.0006,
+ "loss": 3.477677345275879,
+ "step": 5541
+ },
+ {
+ "epoch": 76.97859327217125,
+ "grad_norm": 0.3047026991844177,
+ "learning_rate": 0.0006,
+ "loss": 3.48386549949646,
+ "step": 5542
+ },
+ {
+ "epoch": 76.99257317605941,
+ "grad_norm": 0.25420624017715454,
+ "learning_rate": 0.0006,
+ "loss": 3.4954631328582764,
+ "step": 5543
+ },
+ {
+ "epoch": 77.0,
+ "grad_norm": 0.24408109486103058,
+ "learning_rate": 0.0006,
+ "loss": 3.445572853088379,
+ "step": 5544
+ },
+ {
+ "epoch": 77.0,
+ "eval_loss": 4.007506847381592,
+ "eval_runtime": 46.4852,
+ "eval_samples_per_second": 52.533,
+ "eval_steps_per_second": 3.291,
+ "step": 5544
+ },
+ {
+ "epoch": 77.01397990388816,
+ "grad_norm": 0.2915779650211334,
+ "learning_rate": 0.0006,
+ "loss": 3.4563474655151367,
+ "step": 5545
+ },
+ {
+ "epoch": 77.02795980777633,
+ "grad_norm": 0.3169223964214325,
+ "learning_rate": 0.0006,
+ "loss": 3.4652180671691895,
+ "step": 5546
+ },
+ {
+ "epoch": 77.04193971166448,
+ "grad_norm": 0.25844213366508484,
+ "learning_rate": 0.0006,
+ "loss": 3.462665319442749,
+ "step": 5547
+ },
+ {
+ "epoch": 77.05591961555264,
+ "grad_norm": 0.25074702501296997,
+ "learning_rate": 0.0006,
+ "loss": 3.4422531127929688,
+ "step": 5548
+ },
+ {
+ "epoch": 77.06989951944081,
+ "grad_norm": 0.25484949350357056,
+ "learning_rate": 0.0006,
+ "loss": 3.4290740489959717,
+ "step": 5549
+ },
+ {
+ "epoch": 77.08387942332897,
+ "grad_norm": 0.25956255197525024,
+ "learning_rate": 0.0006,
+ "loss": 3.450035333633423,
+ "step": 5550
+ },
+ {
+ "epoch": 77.09785932721712,
+ "grad_norm": 0.22940650582313538,
+ "learning_rate": 0.0006,
+ "loss": 3.4249258041381836,
+ "step": 5551
+ },
+ {
+ "epoch": 77.1118392311053,
+ "grad_norm": 0.2277630716562271,
+ "learning_rate": 0.0006,
+ "loss": 3.4766159057617188,
+ "step": 5552
+ },
+ {
+ "epoch": 77.12581913499345,
+ "grad_norm": 0.23797406256198883,
+ "learning_rate": 0.0006,
+ "loss": 3.4734766483306885,
+ "step": 5553
+ },
+ {
+ "epoch": 77.1397990388816,
+ "grad_norm": 0.21684569120407104,
+ "learning_rate": 0.0006,
+ "loss": 3.459162950515747,
+ "step": 5554
+ },
+ {
+ "epoch": 77.15377894276976,
+ "grad_norm": 0.22176246345043182,
+ "learning_rate": 0.0006,
+ "loss": 3.4285407066345215,
+ "step": 5555
+ },
+ {
+ "epoch": 77.16775884665793,
+ "grad_norm": 0.22516196966171265,
+ "learning_rate": 0.0006,
+ "loss": 3.430083990097046,
+ "step": 5556
+ },
+ {
+ "epoch": 77.18173875054609,
+ "grad_norm": 0.21629488468170166,
+ "learning_rate": 0.0006,
+ "loss": 3.4317891597747803,
+ "step": 5557
+ },
+ {
+ "epoch": 77.19571865443424,
+ "grad_norm": 0.2110232561826706,
+ "learning_rate": 0.0006,
+ "loss": 3.441636085510254,
+ "step": 5558
+ },
+ {
+ "epoch": 77.20969855832242,
+ "grad_norm": 0.23733535408973694,
+ "learning_rate": 0.0006,
+ "loss": 3.4615190029144287,
+ "step": 5559
+ },
+ {
+ "epoch": 77.22367846221057,
+ "grad_norm": 0.2405165284872055,
+ "learning_rate": 0.0006,
+ "loss": 3.4209976196289062,
+ "step": 5560
+ },
+ {
+ "epoch": 77.23765836609873,
+ "grad_norm": 0.2469998598098755,
+ "learning_rate": 0.0006,
+ "loss": 3.4215030670166016,
+ "step": 5561
+ },
+ {
+ "epoch": 77.2516382699869,
+ "grad_norm": 0.25612175464630127,
+ "learning_rate": 0.0006,
+ "loss": 3.438417911529541,
+ "step": 5562
+ },
+ {
+ "epoch": 77.26561817387505,
+ "grad_norm": 0.23456519842147827,
+ "learning_rate": 0.0006,
+ "loss": 3.455623149871826,
+ "step": 5563
+ },
+ {
+ "epoch": 77.27959807776321,
+ "grad_norm": 0.21399898827075958,
+ "learning_rate": 0.0006,
+ "loss": 3.4647960662841797,
+ "step": 5564
+ },
+ {
+ "epoch": 77.29357798165138,
+ "grad_norm": 0.2188381850719452,
+ "learning_rate": 0.0006,
+ "loss": 3.4621052742004395,
+ "step": 5565
+ },
+ {
+ "epoch": 77.30755788553954,
+ "grad_norm": 0.24125352501869202,
+ "learning_rate": 0.0006,
+ "loss": 3.4713289737701416,
+ "step": 5566
+ },
+ {
+ "epoch": 77.3215377894277,
+ "grad_norm": 0.2860930562019348,
+ "learning_rate": 0.0006,
+ "loss": 3.4664835929870605,
+ "step": 5567
+ },
+ {
+ "epoch": 77.33551769331586,
+ "grad_norm": 0.26902931928634644,
+ "learning_rate": 0.0006,
+ "loss": 3.4329450130462646,
+ "step": 5568
+ },
+ {
+ "epoch": 77.34949759720402,
+ "grad_norm": 0.23035289347171783,
+ "learning_rate": 0.0006,
+ "loss": 3.4574995040893555,
+ "step": 5569
+ },
+ {
+ "epoch": 77.36347750109218,
+ "grad_norm": 0.21633122861385345,
+ "learning_rate": 0.0006,
+ "loss": 3.4807615280151367,
+ "step": 5570
+ },
+ {
+ "epoch": 77.37745740498035,
+ "grad_norm": 0.2515130043029785,
+ "learning_rate": 0.0006,
+ "loss": 3.4523189067840576,
+ "step": 5571
+ },
+ {
+ "epoch": 77.3914373088685,
+ "grad_norm": 0.24801862239837646,
+ "learning_rate": 0.0006,
+ "loss": 3.4288992881774902,
+ "step": 5572
+ },
+ {
+ "epoch": 77.40541721275666,
+ "grad_norm": 0.2390354871749878,
+ "learning_rate": 0.0006,
+ "loss": 3.484312057495117,
+ "step": 5573
+ },
+ {
+ "epoch": 77.41939711664482,
+ "grad_norm": 0.21863406896591187,
+ "learning_rate": 0.0006,
+ "loss": 3.514920234680176,
+ "step": 5574
+ },
+ {
+ "epoch": 77.43337702053299,
+ "grad_norm": 0.24056300520896912,
+ "learning_rate": 0.0006,
+ "loss": 3.4896860122680664,
+ "step": 5575
+ },
+ {
+ "epoch": 77.44735692442114,
+ "grad_norm": 0.23909592628479004,
+ "learning_rate": 0.0006,
+ "loss": 3.4793200492858887,
+ "step": 5576
+ },
+ {
+ "epoch": 77.4613368283093,
+ "grad_norm": 0.24454306066036224,
+ "learning_rate": 0.0006,
+ "loss": 3.461653470993042,
+ "step": 5577
+ },
+ {
+ "epoch": 77.47531673219747,
+ "grad_norm": 0.2615761160850525,
+ "learning_rate": 0.0006,
+ "loss": 3.465709686279297,
+ "step": 5578
+ },
+ {
+ "epoch": 77.48929663608563,
+ "grad_norm": 0.29720982909202576,
+ "learning_rate": 0.0006,
+ "loss": 3.4943344593048096,
+ "step": 5579
+ },
+ {
+ "epoch": 77.50327653997378,
+ "grad_norm": 0.2776208221912384,
+ "learning_rate": 0.0006,
+ "loss": 3.4455578327178955,
+ "step": 5580
+ },
+ {
+ "epoch": 77.51725644386195,
+ "grad_norm": 0.23060724139213562,
+ "learning_rate": 0.0006,
+ "loss": 3.505800724029541,
+ "step": 5581
+ },
+ {
+ "epoch": 77.53123634775011,
+ "grad_norm": 0.24247834086418152,
+ "learning_rate": 0.0006,
+ "loss": 3.4776053428649902,
+ "step": 5582
+ },
+ {
+ "epoch": 77.54521625163827,
+ "grad_norm": 0.2725653648376465,
+ "learning_rate": 0.0006,
+ "loss": 3.4901909828186035,
+ "step": 5583
+ },
+ {
+ "epoch": 77.55919615552644,
+ "grad_norm": 0.2663135528564453,
+ "learning_rate": 0.0006,
+ "loss": 3.4535939693450928,
+ "step": 5584
+ },
+ {
+ "epoch": 77.57317605941459,
+ "grad_norm": 0.22942234575748444,
+ "learning_rate": 0.0006,
+ "loss": 3.4478676319122314,
+ "step": 5585
+ },
+ {
+ "epoch": 77.58715596330275,
+ "grad_norm": 0.23543357849121094,
+ "learning_rate": 0.0006,
+ "loss": 3.4794795513153076,
+ "step": 5586
+ },
+ {
+ "epoch": 77.60113586719092,
+ "grad_norm": 0.24251683056354523,
+ "learning_rate": 0.0006,
+ "loss": 3.51051664352417,
+ "step": 5587
+ },
+ {
+ "epoch": 77.61511577107908,
+ "grad_norm": 0.2273259162902832,
+ "learning_rate": 0.0006,
+ "loss": 3.506385326385498,
+ "step": 5588
+ },
+ {
+ "epoch": 77.62909567496723,
+ "grad_norm": 0.23449701070785522,
+ "learning_rate": 0.0006,
+ "loss": 3.481034278869629,
+ "step": 5589
+ },
+ {
+ "epoch": 77.6430755788554,
+ "grad_norm": 0.25050288438796997,
+ "learning_rate": 0.0006,
+ "loss": 3.449924945831299,
+ "step": 5590
+ },
+ {
+ "epoch": 77.65705548274356,
+ "grad_norm": 0.25048449635505676,
+ "learning_rate": 0.0006,
+ "loss": 3.500735282897949,
+ "step": 5591
+ },
+ {
+ "epoch": 77.67103538663171,
+ "grad_norm": 0.2699182629585266,
+ "learning_rate": 0.0006,
+ "loss": 3.5185136795043945,
+ "step": 5592
+ },
+ {
+ "epoch": 77.68501529051987,
+ "grad_norm": 0.2451692819595337,
+ "learning_rate": 0.0006,
+ "loss": 3.4736194610595703,
+ "step": 5593
+ },
+ {
+ "epoch": 77.69899519440804,
+ "grad_norm": 0.24240832030773163,
+ "learning_rate": 0.0006,
+ "loss": 3.510906219482422,
+ "step": 5594
+ },
+ {
+ "epoch": 77.7129750982962,
+ "grad_norm": 0.24055726826190948,
+ "learning_rate": 0.0006,
+ "loss": 3.4826507568359375,
+ "step": 5595
+ },
+ {
+ "epoch": 77.72695500218435,
+ "grad_norm": 0.21117587387561798,
+ "learning_rate": 0.0006,
+ "loss": 3.4430460929870605,
+ "step": 5596
+ },
+ {
+ "epoch": 77.74093490607252,
+ "grad_norm": 0.22443950176239014,
+ "learning_rate": 0.0006,
+ "loss": 3.478419780731201,
+ "step": 5597
+ },
+ {
+ "epoch": 77.75491480996068,
+ "grad_norm": 0.265615314245224,
+ "learning_rate": 0.0006,
+ "loss": 3.511934280395508,
+ "step": 5598
+ },
+ {
+ "epoch": 77.76889471384884,
+ "grad_norm": 0.27084261178970337,
+ "learning_rate": 0.0006,
+ "loss": 3.5032665729522705,
+ "step": 5599
+ },
+ {
+ "epoch": 77.78287461773701,
+ "grad_norm": 0.24575908482074738,
+ "learning_rate": 0.0006,
+ "loss": 3.463124990463257,
+ "step": 5600
+ },
+ {
+ "epoch": 77.79685452162516,
+ "grad_norm": 0.24604707956314087,
+ "learning_rate": 0.0006,
+ "loss": 3.500135898590088,
+ "step": 5601
+ },
+ {
+ "epoch": 77.81083442551332,
+ "grad_norm": 0.23443962633609772,
+ "learning_rate": 0.0006,
+ "loss": 3.4497289657592773,
+ "step": 5602
+ },
+ {
+ "epoch": 77.82481432940149,
+ "grad_norm": 0.23644082248210907,
+ "learning_rate": 0.0006,
+ "loss": 3.47178316116333,
+ "step": 5603
+ },
+ {
+ "epoch": 77.83879423328965,
+ "grad_norm": 0.20530658960342407,
+ "learning_rate": 0.0006,
+ "loss": 3.455582618713379,
+ "step": 5604
+ },
+ {
+ "epoch": 77.8527741371778,
+ "grad_norm": 0.2663075029850006,
+ "learning_rate": 0.0006,
+ "loss": 3.5106711387634277,
+ "step": 5605
+ },
+ {
+ "epoch": 77.86675404106597,
+ "grad_norm": 0.3181896507740021,
+ "learning_rate": 0.0006,
+ "loss": 3.4886298179626465,
+ "step": 5606
+ },
+ {
+ "epoch": 77.88073394495413,
+ "grad_norm": 0.30120763182640076,
+ "learning_rate": 0.0006,
+ "loss": 3.5012121200561523,
+ "step": 5607
+ },
+ {
+ "epoch": 77.89471384884229,
+ "grad_norm": 0.2766421139240265,
+ "learning_rate": 0.0006,
+ "loss": 3.465404748916626,
+ "step": 5608
+ },
+ {
+ "epoch": 77.90869375273044,
+ "grad_norm": 0.26150527596473694,
+ "learning_rate": 0.0006,
+ "loss": 3.505079984664917,
+ "step": 5609
+ },
+ {
+ "epoch": 77.92267365661861,
+ "grad_norm": 0.2585010826587677,
+ "learning_rate": 0.0006,
+ "loss": 3.46713924407959,
+ "step": 5610
+ },
+ {
+ "epoch": 77.93665356050677,
+ "grad_norm": 0.2746208608150482,
+ "learning_rate": 0.0006,
+ "loss": 3.464250087738037,
+ "step": 5611
+ },
+ {
+ "epoch": 77.95063346439493,
+ "grad_norm": 0.2630884647369385,
+ "learning_rate": 0.0006,
+ "loss": 3.4834718704223633,
+ "step": 5612
+ },
+ {
+ "epoch": 77.9646133682831,
+ "grad_norm": 0.23336872458457947,
+ "learning_rate": 0.0006,
+ "loss": 3.5086607933044434,
+ "step": 5613
+ },
+ {
+ "epoch": 77.97859327217125,
+ "grad_norm": 0.22938823699951172,
+ "learning_rate": 0.0006,
+ "loss": 3.5135412216186523,
+ "step": 5614
+ },
+ {
+ "epoch": 77.99257317605941,
+ "grad_norm": 0.22952115535736084,
+ "learning_rate": 0.0006,
+ "loss": 3.4909496307373047,
+ "step": 5615
+ },
+ {
+ "epoch": 78.0,
+ "grad_norm": 0.244375079870224,
+ "learning_rate": 0.0006,
+ "loss": 3.5009336471557617,
+ "step": 5616
+ },
+ {
+ "epoch": 78.0,
+ "eval_loss": 3.9880237579345703,
+ "eval_runtime": 46.3392,
+ "eval_samples_per_second": 52.698,
+ "eval_steps_per_second": 3.302,
+ "step": 5616
+ },
+ {
+ "epoch": 78.01397990388816,
+ "grad_norm": 0.21258895099163055,
+ "learning_rate": 0.0006,
+ "loss": 3.473972797393799,
+ "step": 5617
+ },
+ {
+ "epoch": 78.02795980777633,
+ "grad_norm": 0.24391628801822662,
+ "learning_rate": 0.0006,
+ "loss": 3.422597646713257,
+ "step": 5618
+ },
+ {
+ "epoch": 78.04193971166448,
+ "grad_norm": 0.2876848578453064,
+ "learning_rate": 0.0006,
+ "loss": 3.458035469055176,
+ "step": 5619
+ },
+ {
+ "epoch": 78.05591961555264,
+ "grad_norm": 0.29750117659568787,
+ "learning_rate": 0.0006,
+ "loss": 3.4394774436950684,
+ "step": 5620
+ },
+ {
+ "epoch": 78.06989951944081,
+ "grad_norm": 0.2604219615459442,
+ "learning_rate": 0.0006,
+ "loss": 3.450514793395996,
+ "step": 5621
+ },
+ {
+ "epoch": 78.08387942332897,
+ "grad_norm": 0.2383262813091278,
+ "learning_rate": 0.0006,
+ "loss": 3.4291372299194336,
+ "step": 5622
+ },
+ {
+ "epoch": 78.09785932721712,
+ "grad_norm": 0.2188589870929718,
+ "learning_rate": 0.0006,
+ "loss": 3.441857099533081,
+ "step": 5623
+ },
+ {
+ "epoch": 78.1118392311053,
+ "grad_norm": 0.20857281982898712,
+ "learning_rate": 0.0006,
+ "loss": 3.444624423980713,
+ "step": 5624
+ },
+ {
+ "epoch": 78.12581913499345,
+ "grad_norm": 0.25901344418525696,
+ "learning_rate": 0.0006,
+ "loss": 3.436108112335205,
+ "step": 5625
+ },
+ {
+ "epoch": 78.1397990388816,
+ "grad_norm": 0.29044362902641296,
+ "learning_rate": 0.0006,
+ "loss": 3.4631142616271973,
+ "step": 5626
+ },
+ {
+ "epoch": 78.15377894276976,
+ "grad_norm": 0.2697533071041107,
+ "learning_rate": 0.0006,
+ "loss": 3.47342586517334,
+ "step": 5627
+ },
+ {
+ "epoch": 78.16775884665793,
+ "grad_norm": 0.23660187423229218,
+ "learning_rate": 0.0006,
+ "loss": 3.4970450401306152,
+ "step": 5628
+ },
+ {
+ "epoch": 78.18173875054609,
+ "grad_norm": 0.2369665950536728,
+ "learning_rate": 0.0006,
+ "loss": 3.4965858459472656,
+ "step": 5629
+ },
+ {
+ "epoch": 78.19571865443424,
+ "grad_norm": 0.2571038603782654,
+ "learning_rate": 0.0006,
+ "loss": 3.412412166595459,
+ "step": 5630
+ },
+ {
+ "epoch": 78.20969855832242,
+ "grad_norm": 0.26016053557395935,
+ "learning_rate": 0.0006,
+ "loss": 3.4462265968322754,
+ "step": 5631
+ },
+ {
+ "epoch": 78.22367846221057,
+ "grad_norm": 0.2378724217414856,
+ "learning_rate": 0.0006,
+ "loss": 3.4451708793640137,
+ "step": 5632
+ },
+ {
+ "epoch": 78.23765836609873,
+ "grad_norm": 0.24232783913612366,
+ "learning_rate": 0.0006,
+ "loss": 3.4438111782073975,
+ "step": 5633
+ },
+ {
+ "epoch": 78.2516382699869,
+ "grad_norm": 0.23770418763160706,
+ "learning_rate": 0.0006,
+ "loss": 3.43533992767334,
+ "step": 5634
+ },
+ {
+ "epoch": 78.26561817387505,
+ "grad_norm": 0.23466856777668,
+ "learning_rate": 0.0006,
+ "loss": 3.48561954498291,
+ "step": 5635
+ },
+ {
+ "epoch": 78.27959807776321,
+ "grad_norm": 0.2326284646987915,
+ "learning_rate": 0.0006,
+ "loss": 3.473475217819214,
+ "step": 5636
+ },
+ {
+ "epoch": 78.29357798165138,
+ "grad_norm": 0.24022948741912842,
+ "learning_rate": 0.0006,
+ "loss": 3.4412283897399902,
+ "step": 5637
+ },
+ {
+ "epoch": 78.30755788553954,
+ "grad_norm": 0.2522888779640198,
+ "learning_rate": 0.0006,
+ "loss": 3.4387173652648926,
+ "step": 5638
+ },
+ {
+ "epoch": 78.3215377894277,
+ "grad_norm": 0.2409897744655609,
+ "learning_rate": 0.0006,
+ "loss": 3.4434142112731934,
+ "step": 5639
+ },
+ {
+ "epoch": 78.33551769331586,
+ "grad_norm": 0.24789150059223175,
+ "learning_rate": 0.0006,
+ "loss": 3.479180335998535,
+ "step": 5640
+ },
+ {
+ "epoch": 78.34949759720402,
+ "grad_norm": 0.23893289268016815,
+ "learning_rate": 0.0006,
+ "loss": 3.4569711685180664,
+ "step": 5641
+ },
+ {
+ "epoch": 78.36347750109218,
+ "grad_norm": 0.25813573598861694,
+ "learning_rate": 0.0006,
+ "loss": 3.4897937774658203,
+ "step": 5642
+ },
+ {
+ "epoch": 78.37745740498035,
+ "grad_norm": 0.2786903977394104,
+ "learning_rate": 0.0006,
+ "loss": 3.449057102203369,
+ "step": 5643
+ },
+ {
+ "epoch": 78.3914373088685,
+ "grad_norm": 0.2671049237251282,
+ "learning_rate": 0.0006,
+ "loss": 3.4653759002685547,
+ "step": 5644
+ },
+ {
+ "epoch": 78.40541721275666,
+ "grad_norm": 0.22132059931755066,
+ "learning_rate": 0.0006,
+ "loss": 3.469104766845703,
+ "step": 5645
+ },
+ {
+ "epoch": 78.41939711664482,
+ "grad_norm": 0.23016799986362457,
+ "learning_rate": 0.0006,
+ "loss": 3.459315776824951,
+ "step": 5646
+ },
+ {
+ "epoch": 78.43337702053299,
+ "grad_norm": 0.24416282773017883,
+ "learning_rate": 0.0006,
+ "loss": 3.455636978149414,
+ "step": 5647
+ },
+ {
+ "epoch": 78.44735692442114,
+ "grad_norm": 0.21846890449523926,
+ "learning_rate": 0.0006,
+ "loss": 3.448091506958008,
+ "step": 5648
+ },
+ {
+ "epoch": 78.4613368283093,
+ "grad_norm": 0.23508375883102417,
+ "learning_rate": 0.0006,
+ "loss": 3.4912142753601074,
+ "step": 5649
+ },
+ {
+ "epoch": 78.47531673219747,
+ "grad_norm": 0.2555168867111206,
+ "learning_rate": 0.0006,
+ "loss": 3.4540610313415527,
+ "step": 5650
+ },
+ {
+ "epoch": 78.48929663608563,
+ "grad_norm": 0.24908530712127686,
+ "learning_rate": 0.0006,
+ "loss": 3.4480438232421875,
+ "step": 5651
+ },
+ {
+ "epoch": 78.50327653997378,
+ "grad_norm": 0.21412776410579681,
+ "learning_rate": 0.0006,
+ "loss": 3.4866371154785156,
+ "step": 5652
+ },
+ {
+ "epoch": 78.51725644386195,
+ "grad_norm": 0.20922242105007172,
+ "learning_rate": 0.0006,
+ "loss": 3.478621006011963,
+ "step": 5653
+ },
+ {
+ "epoch": 78.53123634775011,
+ "grad_norm": 0.2246457040309906,
+ "learning_rate": 0.0006,
+ "loss": 3.481985569000244,
+ "step": 5654
+ },
+ {
+ "epoch": 78.54521625163827,
+ "grad_norm": 0.2635398805141449,
+ "learning_rate": 0.0006,
+ "loss": 3.4374074935913086,
+ "step": 5655
+ },
+ {
+ "epoch": 78.55919615552644,
+ "grad_norm": 0.24871022999286652,
+ "learning_rate": 0.0006,
+ "loss": 3.4646430015563965,
+ "step": 5656
+ },
+ {
+ "epoch": 78.57317605941459,
+ "grad_norm": 0.20784349739551544,
+ "learning_rate": 0.0006,
+ "loss": 3.5141677856445312,
+ "step": 5657
+ },
+ {
+ "epoch": 78.58715596330275,
+ "grad_norm": 0.22655104100704193,
+ "learning_rate": 0.0006,
+ "loss": 3.4698171615600586,
+ "step": 5658
+ },
+ {
+ "epoch": 78.60113586719092,
+ "grad_norm": 0.22383511066436768,
+ "learning_rate": 0.0006,
+ "loss": 3.444244146347046,
+ "step": 5659
+ },
+ {
+ "epoch": 78.61511577107908,
+ "grad_norm": 0.2113238275051117,
+ "learning_rate": 0.0006,
+ "loss": 3.465719223022461,
+ "step": 5660
+ },
+ {
+ "epoch": 78.62909567496723,
+ "grad_norm": 0.19101600348949432,
+ "learning_rate": 0.0006,
+ "loss": 3.484689712524414,
+ "step": 5661
+ },
+ {
+ "epoch": 78.6430755788554,
+ "grad_norm": 0.2073238044977188,
+ "learning_rate": 0.0006,
+ "loss": 3.46522855758667,
+ "step": 5662
+ },
+ {
+ "epoch": 78.65705548274356,
+ "grad_norm": 0.21808618307113647,
+ "learning_rate": 0.0006,
+ "loss": 3.479005813598633,
+ "step": 5663
+ },
+ {
+ "epoch": 78.67103538663171,
+ "grad_norm": 0.203338161110878,
+ "learning_rate": 0.0006,
+ "loss": 3.492825984954834,
+ "step": 5664
+ },
+ {
+ "epoch": 78.68501529051987,
+ "grad_norm": 0.23006507754325867,
+ "learning_rate": 0.0006,
+ "loss": 3.4999642372131348,
+ "step": 5665
+ },
+ {
+ "epoch": 78.69899519440804,
+ "grad_norm": 0.2446610927581787,
+ "learning_rate": 0.0006,
+ "loss": 3.48500919342041,
+ "step": 5666
+ },
+ {
+ "epoch": 78.7129750982962,
+ "grad_norm": 0.2601945400238037,
+ "learning_rate": 0.0006,
+ "loss": 3.4861927032470703,
+ "step": 5667
+ },
+ {
+ "epoch": 78.72695500218435,
+ "grad_norm": 0.23464927077293396,
+ "learning_rate": 0.0006,
+ "loss": 3.474249839782715,
+ "step": 5668
+ },
+ {
+ "epoch": 78.74093490607252,
+ "grad_norm": 0.21698802709579468,
+ "learning_rate": 0.0006,
+ "loss": 3.499706745147705,
+ "step": 5669
+ },
+ {
+ "epoch": 78.75491480996068,
+ "grad_norm": 0.22146548330783844,
+ "learning_rate": 0.0006,
+ "loss": 3.496151924133301,
+ "step": 5670
+ },
+ {
+ "epoch": 78.76889471384884,
+ "grad_norm": 0.2459285408258438,
+ "learning_rate": 0.0006,
+ "loss": 3.4743995666503906,
+ "step": 5671
+ },
+ {
+ "epoch": 78.78287461773701,
+ "grad_norm": 0.2358015924692154,
+ "learning_rate": 0.0006,
+ "loss": 3.479529857635498,
+ "step": 5672
+ },
+ {
+ "epoch": 78.79685452162516,
+ "grad_norm": 0.23457956314086914,
+ "learning_rate": 0.0006,
+ "loss": 3.4957330226898193,
+ "step": 5673
+ },
+ {
+ "epoch": 78.81083442551332,
+ "grad_norm": 0.21969331800937653,
+ "learning_rate": 0.0006,
+ "loss": 3.4782285690307617,
+ "step": 5674
+ },
+ {
+ "epoch": 78.82481432940149,
+ "grad_norm": 0.23743604123592377,
+ "learning_rate": 0.0006,
+ "loss": 3.497030735015869,
+ "step": 5675
+ },
+ {
+ "epoch": 78.83879423328965,
+ "grad_norm": 0.23925618827342987,
+ "learning_rate": 0.0006,
+ "loss": 3.495553493499756,
+ "step": 5676
+ },
+ {
+ "epoch": 78.8527741371778,
+ "grad_norm": 0.20647381246089935,
+ "learning_rate": 0.0006,
+ "loss": 3.47171688079834,
+ "step": 5677
+ },
+ {
+ "epoch": 78.86675404106597,
+ "grad_norm": 0.20148544013500214,
+ "learning_rate": 0.0006,
+ "loss": 3.4736156463623047,
+ "step": 5678
+ },
+ {
+ "epoch": 78.88073394495413,
+ "grad_norm": 0.2097293585538864,
+ "learning_rate": 0.0006,
+ "loss": 3.436239719390869,
+ "step": 5679
+ },
+ {
+ "epoch": 78.89471384884229,
+ "grad_norm": 0.21129930019378662,
+ "learning_rate": 0.0006,
+ "loss": 3.4720277786254883,
+ "step": 5680
+ },
+ {
+ "epoch": 78.90869375273044,
+ "grad_norm": 0.2049081027507782,
+ "learning_rate": 0.0006,
+ "loss": 3.476945400238037,
+ "step": 5681
+ },
+ {
+ "epoch": 78.92267365661861,
+ "grad_norm": 0.2183583825826645,
+ "learning_rate": 0.0006,
+ "loss": 3.4852776527404785,
+ "step": 5682
+ },
+ {
+ "epoch": 78.93665356050677,
+ "grad_norm": 0.21253879368305206,
+ "learning_rate": 0.0006,
+ "loss": 3.4781546592712402,
+ "step": 5683
+ },
+ {
+ "epoch": 78.95063346439493,
+ "grad_norm": 0.20699666440486908,
+ "learning_rate": 0.0006,
+ "loss": 3.450756788253784,
+ "step": 5684
+ },
+ {
+ "epoch": 78.9646133682831,
+ "grad_norm": 0.25612396001815796,
+ "learning_rate": 0.0006,
+ "loss": 3.4762487411499023,
+ "step": 5685
+ },
+ {
+ "epoch": 78.97859327217125,
+ "grad_norm": 0.26524025201797485,
+ "learning_rate": 0.0006,
+ "loss": 3.4931769371032715,
+ "step": 5686
+ },
+ {
+ "epoch": 78.99257317605941,
+ "grad_norm": 0.2541322410106659,
+ "learning_rate": 0.0006,
+ "loss": 3.468247413635254,
+ "step": 5687
+ },
+ {
+ "epoch": 79.0,
+ "grad_norm": 0.2663288414478302,
+ "learning_rate": 0.0006,
+ "loss": 3.487189292907715,
+ "step": 5688
+ },
+ {
+ "epoch": 79.0,
+ "eval_loss": 3.988255739212036,
+ "eval_runtime": 46.5996,
+ "eval_samples_per_second": 52.404,
+ "eval_steps_per_second": 3.283,
+ "step": 5688
+ },
+ {
+ "epoch": 79.01397990388816,
+ "grad_norm": 0.2503090500831604,
+ "learning_rate": 0.0006,
+ "loss": 3.452444553375244,
+ "step": 5689
+ },
+ {
+ "epoch": 79.02795980777633,
+ "grad_norm": 0.28306853771209717,
+ "learning_rate": 0.0006,
+ "loss": 3.4412660598754883,
+ "step": 5690
+ },
+ {
+ "epoch": 79.04193971166448,
+ "grad_norm": 0.3115243911743164,
+ "learning_rate": 0.0006,
+ "loss": 3.4124369621276855,
+ "step": 5691
+ },
+ {
+ "epoch": 79.05591961555264,
+ "grad_norm": 0.273013710975647,
+ "learning_rate": 0.0006,
+ "loss": 3.4493820667266846,
+ "step": 5692
+ },
+ {
+ "epoch": 79.06989951944081,
+ "grad_norm": 0.22326645255088806,
+ "learning_rate": 0.0006,
+ "loss": 3.4517998695373535,
+ "step": 5693
+ },
+ {
+ "epoch": 79.08387942332897,
+ "grad_norm": 0.24398484826087952,
+ "learning_rate": 0.0006,
+ "loss": 3.4242095947265625,
+ "step": 5694
+ },
+ {
+ "epoch": 79.09785932721712,
+ "grad_norm": 0.25253739953041077,
+ "learning_rate": 0.0006,
+ "loss": 3.4249048233032227,
+ "step": 5695
+ },
+ {
+ "epoch": 79.1118392311053,
+ "grad_norm": 0.2664744555950165,
+ "learning_rate": 0.0006,
+ "loss": 3.452235698699951,
+ "step": 5696
+ },
+ {
+ "epoch": 79.12581913499345,
+ "grad_norm": 0.28276678919792175,
+ "learning_rate": 0.0006,
+ "loss": 3.4641671180725098,
+ "step": 5697
+ },
+ {
+ "epoch": 79.1397990388816,
+ "grad_norm": 0.2725527882575989,
+ "learning_rate": 0.0006,
+ "loss": 3.4483447074890137,
+ "step": 5698
+ },
+ {
+ "epoch": 79.15377894276976,
+ "grad_norm": 0.2702547609806061,
+ "learning_rate": 0.0006,
+ "loss": 3.4427199363708496,
+ "step": 5699
+ },
+ {
+ "epoch": 79.16775884665793,
+ "grad_norm": 0.2617502212524414,
+ "learning_rate": 0.0006,
+ "loss": 3.46244740486145,
+ "step": 5700
+ },
+ {
+ "epoch": 79.18173875054609,
+ "grad_norm": 0.22378475964069366,
+ "learning_rate": 0.0006,
+ "loss": 3.460523843765259,
+ "step": 5701
+ },
+ {
+ "epoch": 79.19571865443424,
+ "grad_norm": 0.2233104556798935,
+ "learning_rate": 0.0006,
+ "loss": 3.425114631652832,
+ "step": 5702
+ },
+ {
+ "epoch": 79.20969855832242,
+ "grad_norm": 0.24079658091068268,
+ "learning_rate": 0.0006,
+ "loss": 3.4773077964782715,
+ "step": 5703
+ },
+ {
+ "epoch": 79.22367846221057,
+ "grad_norm": 0.24479007720947266,
+ "learning_rate": 0.0006,
+ "loss": 3.438293218612671,
+ "step": 5704
+ },
+ {
+ "epoch": 79.23765836609873,
+ "grad_norm": 0.24505102634429932,
+ "learning_rate": 0.0006,
+ "loss": 3.4798545837402344,
+ "step": 5705
+ },
+ {
+ "epoch": 79.2516382699869,
+ "grad_norm": 0.22588814795017242,
+ "learning_rate": 0.0006,
+ "loss": 3.4557571411132812,
+ "step": 5706
+ },
+ {
+ "epoch": 79.26561817387505,
+ "grad_norm": 0.24139748513698578,
+ "learning_rate": 0.0006,
+ "loss": 3.4543919563293457,
+ "step": 5707
+ },
+ {
+ "epoch": 79.27959807776321,
+ "grad_norm": 0.21584808826446533,
+ "learning_rate": 0.0006,
+ "loss": 3.4505133628845215,
+ "step": 5708
+ },
+ {
+ "epoch": 79.29357798165138,
+ "grad_norm": 0.2180371880531311,
+ "learning_rate": 0.0006,
+ "loss": 3.4630508422851562,
+ "step": 5709
+ },
+ {
+ "epoch": 79.30755788553954,
+ "grad_norm": 0.21993961930274963,
+ "learning_rate": 0.0006,
+ "loss": 3.455995559692383,
+ "step": 5710
+ },
+ {
+ "epoch": 79.3215377894277,
+ "grad_norm": 0.2302546501159668,
+ "learning_rate": 0.0006,
+ "loss": 3.4884848594665527,
+ "step": 5711
+ },
+ {
+ "epoch": 79.33551769331586,
+ "grad_norm": 0.2554272711277008,
+ "learning_rate": 0.0006,
+ "loss": 3.440516948699951,
+ "step": 5712
+ },
+ {
+ "epoch": 79.34949759720402,
+ "grad_norm": 0.2361014038324356,
+ "learning_rate": 0.0006,
+ "loss": 3.4706239700317383,
+ "step": 5713
+ },
+ {
+ "epoch": 79.36347750109218,
+ "grad_norm": 0.22390307486057281,
+ "learning_rate": 0.0006,
+ "loss": 3.4447524547576904,
+ "step": 5714
+ },
+ {
+ "epoch": 79.37745740498035,
+ "grad_norm": 0.2271745353937149,
+ "learning_rate": 0.0006,
+ "loss": 3.47141170501709,
+ "step": 5715
+ },
+ {
+ "epoch": 79.3914373088685,
+ "grad_norm": 0.25239962339401245,
+ "learning_rate": 0.0006,
+ "loss": 3.4772067070007324,
+ "step": 5716
+ },
+ {
+ "epoch": 79.40541721275666,
+ "grad_norm": 0.2375272810459137,
+ "learning_rate": 0.0006,
+ "loss": 3.45712947845459,
+ "step": 5717
+ },
+ {
+ "epoch": 79.41939711664482,
+ "grad_norm": 0.22904036939144135,
+ "learning_rate": 0.0006,
+ "loss": 3.4753048419952393,
+ "step": 5718
+ },
+ {
+ "epoch": 79.43337702053299,
+ "grad_norm": 0.24097497761249542,
+ "learning_rate": 0.0006,
+ "loss": 3.462437391281128,
+ "step": 5719
+ },
+ {
+ "epoch": 79.44735692442114,
+ "grad_norm": 0.25267651677131653,
+ "learning_rate": 0.0006,
+ "loss": 3.4526681900024414,
+ "step": 5720
+ },
+ {
+ "epoch": 79.4613368283093,
+ "grad_norm": 0.25850236415863037,
+ "learning_rate": 0.0006,
+ "loss": 3.452427625656128,
+ "step": 5721
+ },
+ {
+ "epoch": 79.47531673219747,
+ "grad_norm": 0.26425909996032715,
+ "learning_rate": 0.0006,
+ "loss": 3.4524970054626465,
+ "step": 5722
+ },
+ {
+ "epoch": 79.48929663608563,
+ "grad_norm": 0.2287026345729828,
+ "learning_rate": 0.0006,
+ "loss": 3.4680042266845703,
+ "step": 5723
+ },
+ {
+ "epoch": 79.50327653997378,
+ "grad_norm": 0.2357720285654068,
+ "learning_rate": 0.0006,
+ "loss": 3.4661996364593506,
+ "step": 5724
+ },
+ {
+ "epoch": 79.51725644386195,
+ "grad_norm": 0.2378997653722763,
+ "learning_rate": 0.0006,
+ "loss": 3.4744834899902344,
+ "step": 5725
+ },
+ {
+ "epoch": 79.53123634775011,
+ "grad_norm": 0.2487446367740631,
+ "learning_rate": 0.0006,
+ "loss": 3.4760963916778564,
+ "step": 5726
+ },
+ {
+ "epoch": 79.54521625163827,
+ "grad_norm": 0.25056660175323486,
+ "learning_rate": 0.0006,
+ "loss": 3.4646544456481934,
+ "step": 5727
+ },
+ {
+ "epoch": 79.55919615552644,
+ "grad_norm": 0.22458213567733765,
+ "learning_rate": 0.0006,
+ "loss": 3.48275089263916,
+ "step": 5728
+ },
+ {
+ "epoch": 79.57317605941459,
+ "grad_norm": 0.22517307102680206,
+ "learning_rate": 0.0006,
+ "loss": 3.4858477115631104,
+ "step": 5729
+ },
+ {
+ "epoch": 79.58715596330275,
+ "grad_norm": 0.2253974974155426,
+ "learning_rate": 0.0006,
+ "loss": 3.4601099491119385,
+ "step": 5730
+ },
+ {
+ "epoch": 79.60113586719092,
+ "grad_norm": 0.22956253588199615,
+ "learning_rate": 0.0006,
+ "loss": 3.4599132537841797,
+ "step": 5731
+ },
+ {
+ "epoch": 79.61511577107908,
+ "grad_norm": 0.26346060633659363,
+ "learning_rate": 0.0006,
+ "loss": 3.4992642402648926,
+ "step": 5732
+ },
+ {
+ "epoch": 79.62909567496723,
+ "grad_norm": 0.2493542581796646,
+ "learning_rate": 0.0006,
+ "loss": 3.4743075370788574,
+ "step": 5733
+ },
+ {
+ "epoch": 79.6430755788554,
+ "grad_norm": 0.2473273128271103,
+ "learning_rate": 0.0006,
+ "loss": 3.487657070159912,
+ "step": 5734
+ },
+ {
+ "epoch": 79.65705548274356,
+ "grad_norm": 0.21894414722919464,
+ "learning_rate": 0.0006,
+ "loss": 3.4761929512023926,
+ "step": 5735
+ },
+ {
+ "epoch": 79.67103538663171,
+ "grad_norm": 0.20691576600074768,
+ "learning_rate": 0.0006,
+ "loss": 3.468233585357666,
+ "step": 5736
+ },
+ {
+ "epoch": 79.68501529051987,
+ "grad_norm": 0.22317089140415192,
+ "learning_rate": 0.0006,
+ "loss": 3.4676461219787598,
+ "step": 5737
+ },
+ {
+ "epoch": 79.69899519440804,
+ "grad_norm": 0.22669419646263123,
+ "learning_rate": 0.0006,
+ "loss": 3.4934377670288086,
+ "step": 5738
+ },
+ {
+ "epoch": 79.7129750982962,
+ "grad_norm": 0.23321859538555145,
+ "learning_rate": 0.0006,
+ "loss": 3.470146417617798,
+ "step": 5739
+ },
+ {
+ "epoch": 79.72695500218435,
+ "grad_norm": 0.21628828346729279,
+ "learning_rate": 0.0006,
+ "loss": 3.464975118637085,
+ "step": 5740
+ },
+ {
+ "epoch": 79.74093490607252,
+ "grad_norm": 0.22889219224452972,
+ "learning_rate": 0.0006,
+ "loss": 3.464859962463379,
+ "step": 5741
+ },
+ {
+ "epoch": 79.75491480996068,
+ "grad_norm": 0.23041504621505737,
+ "learning_rate": 0.0006,
+ "loss": 3.478351593017578,
+ "step": 5742
+ },
+ {
+ "epoch": 79.76889471384884,
+ "grad_norm": 0.2246071994304657,
+ "learning_rate": 0.0006,
+ "loss": 3.4927172660827637,
+ "step": 5743
+ },
+ {
+ "epoch": 79.78287461773701,
+ "grad_norm": 0.2326883226633072,
+ "learning_rate": 0.0006,
+ "loss": 3.4568581581115723,
+ "step": 5744
+ },
+ {
+ "epoch": 79.79685452162516,
+ "grad_norm": 0.22930850088596344,
+ "learning_rate": 0.0006,
+ "loss": 3.4665210247039795,
+ "step": 5745
+ },
+ {
+ "epoch": 79.81083442551332,
+ "grad_norm": 0.22361859679222107,
+ "learning_rate": 0.0006,
+ "loss": 3.4809937477111816,
+ "step": 5746
+ },
+ {
+ "epoch": 79.82481432940149,
+ "grad_norm": 0.20599117875099182,
+ "learning_rate": 0.0006,
+ "loss": 3.4918923377990723,
+ "step": 5747
+ },
+ {
+ "epoch": 79.83879423328965,
+ "grad_norm": 0.230980783700943,
+ "learning_rate": 0.0006,
+ "loss": 3.4691390991210938,
+ "step": 5748
+ },
+ {
+ "epoch": 79.8527741371778,
+ "grad_norm": 0.2432822734117508,
+ "learning_rate": 0.0006,
+ "loss": 3.465531349182129,
+ "step": 5749
+ },
+ {
+ "epoch": 79.86675404106597,
+ "grad_norm": 0.2326139360666275,
+ "learning_rate": 0.0006,
+ "loss": 3.464198350906372,
+ "step": 5750
+ },
+ {
+ "epoch": 79.88073394495413,
+ "grad_norm": 0.22227711975574493,
+ "learning_rate": 0.0006,
+ "loss": 3.4587674140930176,
+ "step": 5751
+ },
+ {
+ "epoch": 79.89471384884229,
+ "grad_norm": 0.20254085958003998,
+ "learning_rate": 0.0006,
+ "loss": 3.4628102779388428,
+ "step": 5752
+ },
+ {
+ "epoch": 79.90869375273044,
+ "grad_norm": 0.2130574733018875,
+ "learning_rate": 0.0006,
+ "loss": 3.491631031036377,
+ "step": 5753
+ },
+ {
+ "epoch": 79.92267365661861,
+ "grad_norm": 0.2221127301454544,
+ "learning_rate": 0.0006,
+ "loss": 3.477632522583008,
+ "step": 5754
+ },
+ {
+ "epoch": 79.93665356050677,
+ "grad_norm": 0.21647712588310242,
+ "learning_rate": 0.0006,
+ "loss": 3.470122814178467,
+ "step": 5755
+ },
+ {
+ "epoch": 79.95063346439493,
+ "grad_norm": 0.21333082020282745,
+ "learning_rate": 0.0006,
+ "loss": 3.4466612339019775,
+ "step": 5756
+ },
+ {
+ "epoch": 79.9646133682831,
+ "grad_norm": 0.24608036875724792,
+ "learning_rate": 0.0006,
+ "loss": 3.5203800201416016,
+ "step": 5757
+ },
+ {
+ "epoch": 79.97859327217125,
+ "grad_norm": 0.22165493667125702,
+ "learning_rate": 0.0006,
+ "loss": 3.467963457107544,
+ "step": 5758
+ },
+ {
+ "epoch": 79.99257317605941,
+ "grad_norm": 0.1960810422897339,
+ "learning_rate": 0.0006,
+ "loss": 3.4682164192199707,
+ "step": 5759
+ },
+ {
+ "epoch": 80.0,
+ "grad_norm": 0.23430649936199188,
+ "learning_rate": 0.0006,
+ "loss": 3.4980459213256836,
+ "step": 5760
+ },
+ {
+ "epoch": 80.01397990388816,
+ "grad_norm": 0.21651697158813477,
+ "learning_rate": 0.0006,
+ "loss": 3.4181911945343018,
+ "step": 5761
+ },
+ {
+ "epoch": 80.02795980777633,
+ "grad_norm": 0.2599288821220398,
+ "learning_rate": 0.0006,
+ "loss": 3.438791275024414,
+ "step": 5762
+ },
+ {
+ "epoch": 80.04193971166448,
+ "grad_norm": 0.26531898975372314,
+ "learning_rate": 0.0006,
+ "loss": 3.4669299125671387,
+ "step": 5763
+ },
+ {
+ "epoch": 80.05591961555264,
+ "grad_norm": 0.2965814769268036,
+ "learning_rate": 0.0006,
+ "loss": 3.3976120948791504,
+ "step": 5764
+ },
+ {
+ "epoch": 80.06989951944081,
+ "grad_norm": 0.28300485014915466,
+ "learning_rate": 0.0006,
+ "loss": 3.4121291637420654,
+ "step": 5765
+ },
+ {
+ "epoch": 80.08387942332897,
+ "grad_norm": 0.2511967718601227,
+ "learning_rate": 0.0006,
+ "loss": 3.4298207759857178,
+ "step": 5766
+ },
+ {
+ "epoch": 80.09785932721712,
+ "grad_norm": 0.2919110059738159,
+ "learning_rate": 0.0006,
+ "loss": 3.4311981201171875,
+ "step": 5767
+ },
+ {
+ "epoch": 80.1118392311053,
+ "grad_norm": 0.3141780197620392,
+ "learning_rate": 0.0006,
+ "loss": 3.435318946838379,
+ "step": 5768
+ },
+ {
+ "epoch": 80.12581913499345,
+ "grad_norm": 0.29728513956069946,
+ "learning_rate": 0.0006,
+ "loss": 3.4430551528930664,
+ "step": 5769
+ },
+ {
+ "epoch": 80.1397990388816,
+ "grad_norm": 0.2732396423816681,
+ "learning_rate": 0.0006,
+ "loss": 3.4580936431884766,
+ "step": 5770
+ },
+ {
+ "epoch": 80.15377894276976,
+ "grad_norm": 0.2561073303222656,
+ "learning_rate": 0.0006,
+ "loss": 3.443518877029419,
+ "step": 5771
+ },
+ {
+ "epoch": 80.16775884665793,
+ "grad_norm": 0.23583678901195526,
+ "learning_rate": 0.0006,
+ "loss": 3.4591064453125,
+ "step": 5772
+ },
+ {
+ "epoch": 80.18173875054609,
+ "grad_norm": 0.23391224443912506,
+ "learning_rate": 0.0006,
+ "loss": 3.4735608100891113,
+ "step": 5773
+ },
+ {
+ "epoch": 80.19571865443424,
+ "grad_norm": 0.24136026203632355,
+ "learning_rate": 0.0006,
+ "loss": 3.4389798641204834,
+ "step": 5774
+ },
+ {
+ "epoch": 80.20969855832242,
+ "grad_norm": 0.217203289270401,
+ "learning_rate": 0.0006,
+ "loss": 3.4284729957580566,
+ "step": 5775
+ },
+ {
+ "epoch": 80.22367846221057,
+ "grad_norm": 0.22632482647895813,
+ "learning_rate": 0.0006,
+ "loss": 3.4612345695495605,
+ "step": 5776
+ },
+ {
+ "epoch": 80.23765836609873,
+ "grad_norm": 0.23246599733829498,
+ "learning_rate": 0.0006,
+ "loss": 3.461637496948242,
+ "step": 5777
+ },
+ {
+ "epoch": 80.2516382699869,
+ "grad_norm": 0.21817834675312042,
+ "learning_rate": 0.0006,
+ "loss": 3.483128070831299,
+ "step": 5778
+ },
+ {
+ "epoch": 80.26561817387505,
+ "grad_norm": 0.2208380103111267,
+ "learning_rate": 0.0006,
+ "loss": 3.4182612895965576,
+ "step": 5779
+ },
+ {
+ "epoch": 80.27959807776321,
+ "grad_norm": 0.21948039531707764,
+ "learning_rate": 0.0006,
+ "loss": 3.4268085956573486,
+ "step": 5780
+ },
+ {
+ "epoch": 80.29357798165138,
+ "grad_norm": 0.24356511235237122,
+ "learning_rate": 0.0006,
+ "loss": 3.4365224838256836,
+ "step": 5781
+ },
+ {
+ "epoch": 80.30755788553954,
+ "grad_norm": 0.2545076012611389,
+ "learning_rate": 0.0006,
+ "loss": 3.4595799446105957,
+ "step": 5782
+ },
+ {
+ "epoch": 80.3215377894277,
+ "grad_norm": 0.23793567717075348,
+ "learning_rate": 0.0006,
+ "loss": 3.4590306282043457,
+ "step": 5783
+ },
+ {
+ "epoch": 80.33551769331586,
+ "grad_norm": 0.22215817868709564,
+ "learning_rate": 0.0006,
+ "loss": 3.4594779014587402,
+ "step": 5784
+ },
+ {
+ "epoch": 80.34949759720402,
+ "grad_norm": 0.24598804116249084,
+ "learning_rate": 0.0006,
+ "loss": 3.4702706336975098,
+ "step": 5785
+ },
+ {
+ "epoch": 80.36347750109218,
+ "grad_norm": 0.26150956749916077,
+ "learning_rate": 0.0006,
+ "loss": 3.504547357559204,
+ "step": 5786
+ },
+ {
+ "epoch": 80.37745740498035,
+ "grad_norm": 0.22220160067081451,
+ "learning_rate": 0.0006,
+ "loss": 3.4633049964904785,
+ "step": 5787
+ },
+ {
+ "epoch": 80.3914373088685,
+ "grad_norm": 0.2343321293592453,
+ "learning_rate": 0.0006,
+ "loss": 3.4659838676452637,
+ "step": 5788
+ },
+ {
+ "epoch": 80.40541721275666,
+ "grad_norm": 0.2196560502052307,
+ "learning_rate": 0.0006,
+ "loss": 3.477983236312866,
+ "step": 5789
+ },
+ {
+ "epoch": 80.41939711664482,
+ "grad_norm": 0.22598406672477722,
+ "learning_rate": 0.0006,
+ "loss": 3.4452672004699707,
+ "step": 5790
+ },
+ {
+ "epoch": 80.43337702053299,
+ "grad_norm": 0.21038709580898285,
+ "learning_rate": 0.0006,
+ "loss": 3.4401512145996094,
+ "step": 5791
+ },
+ {
+ "epoch": 80.44735692442114,
+ "grad_norm": 0.21702879667282104,
+ "learning_rate": 0.0006,
+ "loss": 3.482847213745117,
+ "step": 5792
+ },
+ {
+ "epoch": 80.4613368283093,
+ "grad_norm": 0.22423747181892395,
+ "learning_rate": 0.0006,
+ "loss": 3.454658031463623,
+ "step": 5793
+ },
+ {
+ "epoch": 80.47531673219747,
+ "grad_norm": 0.2156888246536255,
+ "learning_rate": 0.0006,
+ "loss": 3.4609858989715576,
+ "step": 5794
+ },
+ {
+ "epoch": 80.48929663608563,
+ "grad_norm": 0.22172603011131287,
+ "learning_rate": 0.0006,
+ "loss": 3.479116916656494,
+ "step": 5795
+ },
+ {
+ "epoch": 80.50327653997378,
+ "grad_norm": 0.22773809731006622,
+ "learning_rate": 0.0006,
+ "loss": 3.457540988922119,
+ "step": 5796
+ },
+ {
+ "epoch": 80.51725644386195,
+ "grad_norm": 0.2215251326560974,
+ "learning_rate": 0.0006,
+ "loss": 3.451545476913452,
+ "step": 5797
+ },
+ {
+ "epoch": 80.53123634775011,
+ "grad_norm": 0.22479848563671112,
+ "learning_rate": 0.0006,
+ "loss": 3.4318554401397705,
+ "step": 5798
+ },
+ {
+ "epoch": 80.54521625163827,
+ "grad_norm": 0.23643286526203156,
+ "learning_rate": 0.0006,
+ "loss": 3.448240280151367,
+ "step": 5799
+ },
+ {
+ "epoch": 80.55919615552644,
+ "grad_norm": 0.22819532454013824,
+ "learning_rate": 0.0006,
+ "loss": 3.4966626167297363,
+ "step": 5800
+ },
+ {
+ "epoch": 80.57317605941459,
+ "grad_norm": 0.2213105857372284,
+ "learning_rate": 0.0006,
+ "loss": 3.4401497840881348,
+ "step": 5801
+ },
+ {
+ "epoch": 80.58715596330275,
+ "grad_norm": 0.23570658266544342,
+ "learning_rate": 0.0006,
+ "loss": 3.4650940895080566,
+ "step": 5802
+ },
+ {
+ "epoch": 80.60113586719092,
+ "grad_norm": 0.2692683935165405,
+ "learning_rate": 0.0006,
+ "loss": 3.502164125442505,
+ "step": 5803
+ },
+ {
+ "epoch": 80.61511577107908,
+ "grad_norm": 0.2756805121898651,
+ "learning_rate": 0.0006,
+ "loss": 3.4653677940368652,
+ "step": 5804
+ },
+ {
+ "epoch": 80.62909567496723,
+ "grad_norm": 0.2219257950782776,
+ "learning_rate": 0.0006,
+ "loss": 3.459779977798462,
+ "step": 5805
+ },
+ {
+ "epoch": 80.6430755788554,
+ "grad_norm": 0.21970611810684204,
+ "learning_rate": 0.0006,
+ "loss": 3.451747417449951,
+ "step": 5806
+ },
+ {
+ "epoch": 80.65705548274356,
+ "grad_norm": 0.22080424427986145,
+ "learning_rate": 0.0006,
+ "loss": 3.469550609588623,
+ "step": 5807
+ },
+ {
+ "epoch": 80.67103538663171,
+ "grad_norm": 0.22235846519470215,
+ "learning_rate": 0.0006,
+ "loss": 3.488161563873291,
+ "step": 5808
+ },
+ {
+ "epoch": 80.68501529051987,
+ "grad_norm": 0.24261491000652313,
+ "learning_rate": 0.0006,
+ "loss": 3.486595630645752,
+ "step": 5809
+ },
+ {
+ "epoch": 80.69899519440804,
+ "grad_norm": 0.20906759798526764,
+ "learning_rate": 0.0006,
+ "loss": 3.450944423675537,
+ "step": 5810
+ },
+ {
+ "epoch": 80.7129750982962,
+ "grad_norm": 0.225368469953537,
+ "learning_rate": 0.0006,
+ "loss": 3.4868040084838867,
+ "step": 5811
+ },
+ {
+ "epoch": 80.72695500218435,
+ "grad_norm": 0.254836767911911,
+ "learning_rate": 0.0006,
+ "loss": 3.5024094581604004,
+ "step": 5812
+ },
+ {
+ "epoch": 80.74093490607252,
+ "grad_norm": 0.23393481969833374,
+ "learning_rate": 0.0006,
+ "loss": 3.453914165496826,
+ "step": 5813
+ },
+ {
+ "epoch": 80.75491480996068,
+ "grad_norm": 0.2270888388156891,
+ "learning_rate": 0.0006,
+ "loss": 3.4943716526031494,
+ "step": 5814
+ },
+ {
+ "epoch": 80.76889471384884,
+ "grad_norm": 0.24670317769050598,
+ "learning_rate": 0.0006,
+ "loss": 3.504342794418335,
+ "step": 5815
+ },
+ {
+ "epoch": 80.78287461773701,
+ "grad_norm": 0.23893672227859497,
+ "learning_rate": 0.0006,
+ "loss": 3.452670097351074,
+ "step": 5816
+ },
+ {
+ "epoch": 80.79685452162516,
+ "grad_norm": 0.2175605446100235,
+ "learning_rate": 0.0006,
+ "loss": 3.4578192234039307,
+ "step": 5817
+ },
+ {
+ "epoch": 80.81083442551332,
+ "grad_norm": 0.2156844139099121,
+ "learning_rate": 0.0006,
+ "loss": 3.4781908988952637,
+ "step": 5818
+ },
+ {
+ "epoch": 80.82481432940149,
+ "grad_norm": 0.2505752444267273,
+ "learning_rate": 0.0006,
+ "loss": 3.493128538131714,
+ "step": 5819
+ },
+ {
+ "epoch": 80.83879423328965,
+ "grad_norm": 0.2448679655790329,
+ "learning_rate": 0.0006,
+ "loss": 3.472296714782715,
+ "step": 5820
+ },
+ {
+ "epoch": 80.8527741371778,
+ "grad_norm": 0.22968287765979767,
+ "learning_rate": 0.0006,
+ "loss": 3.4909615516662598,
+ "step": 5821
+ },
+ {
+ "epoch": 80.86675404106597,
+ "grad_norm": 0.24920479953289032,
+ "learning_rate": 0.0006,
+ "loss": 3.4653358459472656,
+ "step": 5822
+ },
+ {
+ "epoch": 80.88073394495413,
+ "grad_norm": 0.24923524260520935,
+ "learning_rate": 0.0006,
+ "loss": 3.4682798385620117,
+ "step": 5823
+ },
+ {
+ "epoch": 80.89471384884229,
+ "grad_norm": 0.2546396255493164,
+ "learning_rate": 0.0006,
+ "loss": 3.4581995010375977,
+ "step": 5824
+ },
+ {
+ "epoch": 80.90869375273044,
+ "grad_norm": 0.27739930152893066,
+ "learning_rate": 0.0006,
+ "loss": 3.476200819015503,
+ "step": 5825
+ },
+ {
+ "epoch": 80.92267365661861,
+ "grad_norm": 0.25831520557403564,
+ "learning_rate": 0.0006,
+ "loss": 3.5037174224853516,
+ "step": 5826
+ },
+ {
+ "epoch": 80.93665356050677,
+ "grad_norm": 0.2223384827375412,
+ "learning_rate": 0.0006,
+ "loss": 3.458250045776367,
+ "step": 5827
+ },
+ {
+ "epoch": 80.95063346439493,
+ "grad_norm": 0.22563499212265015,
+ "learning_rate": 0.0006,
+ "loss": 3.474761486053467,
+ "step": 5828
+ },
+ {
+ "epoch": 80.9646133682831,
+ "grad_norm": 0.2326449155807495,
+ "learning_rate": 0.0006,
+ "loss": 3.500535011291504,
+ "step": 5829
+ },
+ {
+ "epoch": 80.97859327217125,
+ "grad_norm": 0.23983219265937805,
+ "learning_rate": 0.0006,
+ "loss": 3.462369680404663,
+ "step": 5830
+ },
+ {
+ "epoch": 80.99257317605941,
+ "grad_norm": 0.2850669324398041,
+ "learning_rate": 0.0006,
+ "loss": 3.4906742572784424,
+ "step": 5831
+ },
+ {
+ "epoch": 81.0,
+ "grad_norm": 0.33799314498901367,
+ "learning_rate": 0.0006,
+ "loss": 3.5178146362304688,
+ "step": 5832
+ },
+ {
+ "epoch": 81.0,
+ "eval_loss": 4.0064849853515625,
+ "eval_runtime": 46.5715,
+ "eval_samples_per_second": 52.435,
+ "eval_steps_per_second": 3.285,
+ "step": 5832
+ },
+ {
+ "epoch": 81.01397990388816,
+ "grad_norm": 0.2734781801700592,
+ "learning_rate": 0.0006,
+ "loss": 3.44972562789917,
+ "step": 5833
+ },
+ {
+ "epoch": 81.02795980777633,
+ "grad_norm": 0.24696482717990875,
+ "learning_rate": 0.0006,
+ "loss": 3.43271541595459,
+ "step": 5834
+ },
+ {
+ "epoch": 81.04193971166448,
+ "grad_norm": 0.24902470409870148,
+ "learning_rate": 0.0006,
+ "loss": 3.442819595336914,
+ "step": 5835
+ },
+ {
+ "epoch": 81.05591961555264,
+ "grad_norm": 0.26691070199012756,
+ "learning_rate": 0.0006,
+ "loss": 3.4350805282592773,
+ "step": 5836
+ },
+ {
+ "epoch": 81.06989951944081,
+ "grad_norm": 0.271199107170105,
+ "learning_rate": 0.0006,
+ "loss": 3.4339957237243652,
+ "step": 5837
+ },
+ {
+ "epoch": 81.08387942332897,
+ "grad_norm": 0.24132029712200165,
+ "learning_rate": 0.0006,
+ "loss": 3.437596321105957,
+ "step": 5838
+ },
+ {
+ "epoch": 81.09785932721712,
+ "grad_norm": 0.22754840552806854,
+ "learning_rate": 0.0006,
+ "loss": 3.420121431350708,
+ "step": 5839
+ },
+ {
+ "epoch": 81.1118392311053,
+ "grad_norm": 0.2779895067214966,
+ "learning_rate": 0.0006,
+ "loss": 3.4544930458068848,
+ "step": 5840
+ },
+ {
+ "epoch": 81.12581913499345,
+ "grad_norm": 0.28317394852638245,
+ "learning_rate": 0.0006,
+ "loss": 3.4461822509765625,
+ "step": 5841
+ },
+ {
+ "epoch": 81.1397990388816,
+ "grad_norm": 0.22738827764987946,
+ "learning_rate": 0.0006,
+ "loss": 3.460659980773926,
+ "step": 5842
+ },
+ {
+ "epoch": 81.15377894276976,
+ "grad_norm": 0.24671101570129395,
+ "learning_rate": 0.0006,
+ "loss": 3.4540371894836426,
+ "step": 5843
+ },
+ {
+ "epoch": 81.16775884665793,
+ "grad_norm": 0.2668206989765167,
+ "learning_rate": 0.0006,
+ "loss": 3.40748929977417,
+ "step": 5844
+ },
+ {
+ "epoch": 81.18173875054609,
+ "grad_norm": 0.2719775140285492,
+ "learning_rate": 0.0006,
+ "loss": 3.432345390319824,
+ "step": 5845
+ },
+ {
+ "epoch": 81.19571865443424,
+ "grad_norm": 0.25384029746055603,
+ "learning_rate": 0.0006,
+ "loss": 3.4371347427368164,
+ "step": 5846
+ },
+ {
+ "epoch": 81.20969855832242,
+ "grad_norm": 0.2570390999317169,
+ "learning_rate": 0.0006,
+ "loss": 3.4476442337036133,
+ "step": 5847
+ },
+ {
+ "epoch": 81.22367846221057,
+ "grad_norm": 0.26525548100471497,
+ "learning_rate": 0.0006,
+ "loss": 3.471432685852051,
+ "step": 5848
+ },
+ {
+ "epoch": 81.23765836609873,
+ "grad_norm": 0.2836049199104309,
+ "learning_rate": 0.0006,
+ "loss": 3.4596359729766846,
+ "step": 5849
+ },
+ {
+ "epoch": 81.2516382699869,
+ "grad_norm": 0.2822650671005249,
+ "learning_rate": 0.0006,
+ "loss": 3.433651924133301,
+ "step": 5850
+ },
+ {
+ "epoch": 81.26561817387505,
+ "grad_norm": 0.25116705894470215,
+ "learning_rate": 0.0006,
+ "loss": 3.452144145965576,
+ "step": 5851
+ },
+ {
+ "epoch": 81.27959807776321,
+ "grad_norm": 0.23779597878456116,
+ "learning_rate": 0.0006,
+ "loss": 3.459000587463379,
+ "step": 5852
+ },
+ {
+ "epoch": 81.29357798165138,
+ "grad_norm": 0.21741659939289093,
+ "learning_rate": 0.0006,
+ "loss": 3.44561505317688,
+ "step": 5853
+ },
+ {
+ "epoch": 81.30755788553954,
+ "grad_norm": 0.24104240536689758,
+ "learning_rate": 0.0006,
+ "loss": 3.4796364307403564,
+ "step": 5854
+ },
+ {
+ "epoch": 81.3215377894277,
+ "grad_norm": 0.2497674971818924,
+ "learning_rate": 0.0006,
+ "loss": 3.460237741470337,
+ "step": 5855
+ },
+ {
+ "epoch": 81.33551769331586,
+ "grad_norm": 0.26402798295021057,
+ "learning_rate": 0.0006,
+ "loss": 3.459944725036621,
+ "step": 5856
+ },
+ {
+ "epoch": 81.34949759720402,
+ "grad_norm": 0.2843187153339386,
+ "learning_rate": 0.0006,
+ "loss": 3.464351177215576,
+ "step": 5857
+ },
+ {
+ "epoch": 81.36347750109218,
+ "grad_norm": 0.26369425654411316,
+ "learning_rate": 0.0006,
+ "loss": 3.459855556488037,
+ "step": 5858
+ },
+ {
+ "epoch": 81.37745740498035,
+ "grad_norm": 0.2376980036497116,
+ "learning_rate": 0.0006,
+ "loss": 3.4585585594177246,
+ "step": 5859
+ },
+ {
+ "epoch": 81.3914373088685,
+ "grad_norm": 0.2369474321603775,
+ "learning_rate": 0.0006,
+ "loss": 3.4587368965148926,
+ "step": 5860
+ },
+ {
+ "epoch": 81.40541721275666,
+ "grad_norm": 0.24202723801136017,
+ "learning_rate": 0.0006,
+ "loss": 3.456484317779541,
+ "step": 5861
+ },
+ {
+ "epoch": 81.41939711664482,
+ "grad_norm": 0.24000433087348938,
+ "learning_rate": 0.0006,
+ "loss": 3.4597935676574707,
+ "step": 5862
+ },
+ {
+ "epoch": 81.43337702053299,
+ "grad_norm": 0.21620287001132965,
+ "learning_rate": 0.0006,
+ "loss": 3.490447759628296,
+ "step": 5863
+ },
+ {
+ "epoch": 81.44735692442114,
+ "grad_norm": 0.21280473470687866,
+ "learning_rate": 0.0006,
+ "loss": 3.4409351348876953,
+ "step": 5864
+ },
+ {
+ "epoch": 81.4613368283093,
+ "grad_norm": 0.21686480939388275,
+ "learning_rate": 0.0006,
+ "loss": 3.4337422847747803,
+ "step": 5865
+ },
+ {
+ "epoch": 81.47531673219747,
+ "grad_norm": 0.21165262162685394,
+ "learning_rate": 0.0006,
+ "loss": 3.4551923274993896,
+ "step": 5866
+ },
+ {
+ "epoch": 81.48929663608563,
+ "grad_norm": 0.24010618031024933,
+ "learning_rate": 0.0006,
+ "loss": 3.4817299842834473,
+ "step": 5867
+ },
+ {
+ "epoch": 81.50327653997378,
+ "grad_norm": 0.23277464509010315,
+ "learning_rate": 0.0006,
+ "loss": 3.4820570945739746,
+ "step": 5868
+ },
+ {
+ "epoch": 81.51725644386195,
+ "grad_norm": 0.20819281041622162,
+ "learning_rate": 0.0006,
+ "loss": 3.442948341369629,
+ "step": 5869
+ },
+ {
+ "epoch": 81.53123634775011,
+ "grad_norm": 0.22829480469226837,
+ "learning_rate": 0.0006,
+ "loss": 3.4757442474365234,
+ "step": 5870
+ },
+ {
+ "epoch": 81.54521625163827,
+ "grad_norm": 0.24158570170402527,
+ "learning_rate": 0.0006,
+ "loss": 3.4724745750427246,
+ "step": 5871
+ },
+ {
+ "epoch": 81.55919615552644,
+ "grad_norm": 0.24712695181369781,
+ "learning_rate": 0.0006,
+ "loss": 3.4481959342956543,
+ "step": 5872
+ },
+ {
+ "epoch": 81.57317605941459,
+ "grad_norm": 0.2370705008506775,
+ "learning_rate": 0.0006,
+ "loss": 3.466951847076416,
+ "step": 5873
+ },
+ {
+ "epoch": 81.58715596330275,
+ "grad_norm": 0.2232188880443573,
+ "learning_rate": 0.0006,
+ "loss": 3.4636940956115723,
+ "step": 5874
+ },
+ {
+ "epoch": 81.60113586719092,
+ "grad_norm": 0.22505831718444824,
+ "learning_rate": 0.0006,
+ "loss": 3.476677894592285,
+ "step": 5875
+ },
+ {
+ "epoch": 81.61511577107908,
+ "grad_norm": 0.23009659349918365,
+ "learning_rate": 0.0006,
+ "loss": 3.451272964477539,
+ "step": 5876
+ },
+ {
+ "epoch": 81.62909567496723,
+ "grad_norm": 0.26682841777801514,
+ "learning_rate": 0.0006,
+ "loss": 3.454648733139038,
+ "step": 5877
+ },
+ {
+ "epoch": 81.6430755788554,
+ "grad_norm": 0.26330509781837463,
+ "learning_rate": 0.0006,
+ "loss": 3.483720064163208,
+ "step": 5878
+ },
+ {
+ "epoch": 81.65705548274356,
+ "grad_norm": 0.24642175436019897,
+ "learning_rate": 0.0006,
+ "loss": 3.483520984649658,
+ "step": 5879
+ },
+ {
+ "epoch": 81.67103538663171,
+ "grad_norm": 0.24045883119106293,
+ "learning_rate": 0.0006,
+ "loss": 3.478955030441284,
+ "step": 5880
+ },
+ {
+ "epoch": 81.68501529051987,
+ "grad_norm": 0.25334200263023376,
+ "learning_rate": 0.0006,
+ "loss": 3.46458101272583,
+ "step": 5881
+ },
+ {
+ "epoch": 81.69899519440804,
+ "grad_norm": 0.23601189255714417,
+ "learning_rate": 0.0006,
+ "loss": 3.4435858726501465,
+ "step": 5882
+ },
+ {
+ "epoch": 81.7129750982962,
+ "grad_norm": 0.24426797032356262,
+ "learning_rate": 0.0006,
+ "loss": 3.47581148147583,
+ "step": 5883
+ },
+ {
+ "epoch": 81.72695500218435,
+ "grad_norm": 0.28175151348114014,
+ "learning_rate": 0.0006,
+ "loss": 3.464777946472168,
+ "step": 5884
+ },
+ {
+ "epoch": 81.74093490607252,
+ "grad_norm": 0.30024033784866333,
+ "learning_rate": 0.0006,
+ "loss": 3.4527053833007812,
+ "step": 5885
+ },
+ {
+ "epoch": 81.75491480996068,
+ "grad_norm": 0.2306688278913498,
+ "learning_rate": 0.0006,
+ "loss": 3.4810023307800293,
+ "step": 5886
+ },
+ {
+ "epoch": 81.76889471384884,
+ "grad_norm": 0.2599645256996155,
+ "learning_rate": 0.0006,
+ "loss": 3.4631409645080566,
+ "step": 5887
+ },
+ {
+ "epoch": 81.78287461773701,
+ "grad_norm": 0.2765994966030121,
+ "learning_rate": 0.0006,
+ "loss": 3.477273464202881,
+ "step": 5888
+ },
+ {
+ "epoch": 81.79685452162516,
+ "grad_norm": 0.2595500648021698,
+ "learning_rate": 0.0006,
+ "loss": 3.4744186401367188,
+ "step": 5889
+ },
+ {
+ "epoch": 81.81083442551332,
+ "grad_norm": 0.2481662631034851,
+ "learning_rate": 0.0006,
+ "loss": 3.507770538330078,
+ "step": 5890
+ },
+ {
+ "epoch": 81.82481432940149,
+ "grad_norm": 0.23018419742584229,
+ "learning_rate": 0.0006,
+ "loss": 3.4804000854492188,
+ "step": 5891
+ },
+ {
+ "epoch": 81.83879423328965,
+ "grad_norm": 0.230391263961792,
+ "learning_rate": 0.0006,
+ "loss": 3.4579944610595703,
+ "step": 5892
+ },
+ {
+ "epoch": 81.8527741371778,
+ "grad_norm": 0.21724778413772583,
+ "learning_rate": 0.0006,
+ "loss": 3.501087188720703,
+ "step": 5893
+ },
+ {
+ "epoch": 81.86675404106597,
+ "grad_norm": 0.24898028373718262,
+ "learning_rate": 0.0006,
+ "loss": 3.4701733589172363,
+ "step": 5894
+ },
+ {
+ "epoch": 81.88073394495413,
+ "grad_norm": 0.2489824891090393,
+ "learning_rate": 0.0006,
+ "loss": 3.4377074241638184,
+ "step": 5895
+ },
+ {
+ "epoch": 81.89471384884229,
+ "grad_norm": 0.22714054584503174,
+ "learning_rate": 0.0006,
+ "loss": 3.457437515258789,
+ "step": 5896
+ },
+ {
+ "epoch": 81.90869375273044,
+ "grad_norm": 0.25653958320617676,
+ "learning_rate": 0.0006,
+ "loss": 3.4825286865234375,
+ "step": 5897
+ },
+ {
+ "epoch": 81.92267365661861,
+ "grad_norm": 0.2545621991157532,
+ "learning_rate": 0.0006,
+ "loss": 3.4589271545410156,
+ "step": 5898
+ },
+ {
+ "epoch": 81.93665356050677,
+ "grad_norm": 0.2259686142206192,
+ "learning_rate": 0.0006,
+ "loss": 3.4559035301208496,
+ "step": 5899
+ },
+ {
+ "epoch": 81.95063346439493,
+ "grad_norm": 0.2246817946434021,
+ "learning_rate": 0.0006,
+ "loss": 3.5045571327209473,
+ "step": 5900
+ },
+ {
+ "epoch": 81.9646133682831,
+ "grad_norm": 0.23750948905944824,
+ "learning_rate": 0.0006,
+ "loss": 3.450650453567505,
+ "step": 5901
+ },
+ {
+ "epoch": 81.97859327217125,
+ "grad_norm": 0.23084647953510284,
+ "learning_rate": 0.0006,
+ "loss": 3.488955020904541,
+ "step": 5902
+ },
+ {
+ "epoch": 81.99257317605941,
+ "grad_norm": 0.22894839942455292,
+ "learning_rate": 0.0006,
+ "loss": 3.459271192550659,
+ "step": 5903
+ },
+ {
+ "epoch": 82.0,
+ "grad_norm": 0.2765962779521942,
+ "learning_rate": 0.0006,
+ "loss": 3.408276081085205,
+ "step": 5904
+ },
+ {
+ "epoch": 82.0,
+ "eval_loss": 3.996730327606201,
+ "eval_runtime": 45.9786,
+ "eval_samples_per_second": 53.112,
+ "eval_steps_per_second": 3.328,
+ "step": 5904
+ },
+ {
+ "epoch": 82.01397990388816,
+ "grad_norm": 0.23179036378860474,
+ "learning_rate": 0.0006,
+ "loss": 3.4373724460601807,
+ "step": 5905
+ },
+ {
+ "epoch": 82.02795980777633,
+ "grad_norm": 0.26358088850975037,
+ "learning_rate": 0.0006,
+ "loss": 3.409518241882324,
+ "step": 5906
+ },
+ {
+ "epoch": 82.04193971166448,
+ "grad_norm": 0.2684100866317749,
+ "learning_rate": 0.0006,
+ "loss": 3.454376697540283,
+ "step": 5907
+ },
+ {
+ "epoch": 82.05591961555264,
+ "grad_norm": 0.2605251371860504,
+ "learning_rate": 0.0006,
+ "loss": 3.443272113800049,
+ "step": 5908
+ },
+ {
+ "epoch": 82.06989951944081,
+ "grad_norm": 0.28532418608665466,
+ "learning_rate": 0.0006,
+ "loss": 3.462437629699707,
+ "step": 5909
+ },
+ {
+ "epoch": 82.08387942332897,
+ "grad_norm": 0.27555668354034424,
+ "learning_rate": 0.0006,
+ "loss": 3.441549301147461,
+ "step": 5910
+ },
+ {
+ "epoch": 82.09785932721712,
+ "grad_norm": 0.24676190316677094,
+ "learning_rate": 0.0006,
+ "loss": 3.4276766777038574,
+ "step": 5911
+ },
+ {
+ "epoch": 82.1118392311053,
+ "grad_norm": 0.24529537558555603,
+ "learning_rate": 0.0006,
+ "loss": 3.4216628074645996,
+ "step": 5912
+ },
+ {
+ "epoch": 82.12581913499345,
+ "grad_norm": 0.24856150150299072,
+ "learning_rate": 0.0006,
+ "loss": 3.440220832824707,
+ "step": 5913
+ },
+ {
+ "epoch": 82.1397990388816,
+ "grad_norm": 0.25839412212371826,
+ "learning_rate": 0.0006,
+ "loss": 3.4307751655578613,
+ "step": 5914
+ },
+ {
+ "epoch": 82.15377894276976,
+ "grad_norm": 0.24331165850162506,
+ "learning_rate": 0.0006,
+ "loss": 3.434621810913086,
+ "step": 5915
+ },
+ {
+ "epoch": 82.16775884665793,
+ "grad_norm": 0.23028214275836945,
+ "learning_rate": 0.0006,
+ "loss": 3.4578404426574707,
+ "step": 5916
+ },
+ {
+ "epoch": 82.18173875054609,
+ "grad_norm": 0.25276753306388855,
+ "learning_rate": 0.0006,
+ "loss": 3.447455406188965,
+ "step": 5917
+ },
+ {
+ "epoch": 82.19571865443424,
+ "grad_norm": 0.2595311105251312,
+ "learning_rate": 0.0006,
+ "loss": 3.4466679096221924,
+ "step": 5918
+ },
+ {
+ "epoch": 82.20969855832242,
+ "grad_norm": 0.2971263527870178,
+ "learning_rate": 0.0006,
+ "loss": 3.4721288681030273,
+ "step": 5919
+ },
+ {
+ "epoch": 82.22367846221057,
+ "grad_norm": 0.3399767577648163,
+ "learning_rate": 0.0006,
+ "loss": 3.433732032775879,
+ "step": 5920
+ },
+ {
+ "epoch": 82.23765836609873,
+ "grad_norm": 0.2947933077812195,
+ "learning_rate": 0.0006,
+ "loss": 3.437530994415283,
+ "step": 5921
+ },
+ {
+ "epoch": 82.2516382699869,
+ "grad_norm": 0.24236083030700684,
+ "learning_rate": 0.0006,
+ "loss": 3.4405105113983154,
+ "step": 5922
+ },
+ {
+ "epoch": 82.26561817387505,
+ "grad_norm": 0.2506858706474304,
+ "learning_rate": 0.0006,
+ "loss": 3.4653801918029785,
+ "step": 5923
+ },
+ {
+ "epoch": 82.27959807776321,
+ "grad_norm": 0.3094657361507416,
+ "learning_rate": 0.0006,
+ "loss": 3.444723129272461,
+ "step": 5924
+ },
+ {
+ "epoch": 82.29357798165138,
+ "grad_norm": 0.3230939209461212,
+ "learning_rate": 0.0006,
+ "loss": 3.4660234451293945,
+ "step": 5925
+ },
+ {
+ "epoch": 82.30755788553954,
+ "grad_norm": 0.30391860008239746,
+ "learning_rate": 0.0006,
+ "loss": 3.451413631439209,
+ "step": 5926
+ },
+ {
+ "epoch": 82.3215377894277,
+ "grad_norm": 0.2740595042705536,
+ "learning_rate": 0.0006,
+ "loss": 3.449131965637207,
+ "step": 5927
+ },
+ {
+ "epoch": 82.33551769331586,
+ "grad_norm": 0.2436739057302475,
+ "learning_rate": 0.0006,
+ "loss": 3.4319000244140625,
+ "step": 5928
+ },
+ {
+ "epoch": 82.34949759720402,
+ "grad_norm": 0.28533536195755005,
+ "learning_rate": 0.0006,
+ "loss": 3.4300975799560547,
+ "step": 5929
+ },
+ {
+ "epoch": 82.36347750109218,
+ "grad_norm": 0.2921883761882782,
+ "learning_rate": 0.0006,
+ "loss": 3.4531779289245605,
+ "step": 5930
+ },
+ {
+ "epoch": 82.37745740498035,
+ "grad_norm": 0.23490813374519348,
+ "learning_rate": 0.0006,
+ "loss": 3.461367130279541,
+ "step": 5931
+ },
+ {
+ "epoch": 82.3914373088685,
+ "grad_norm": 0.23341777920722961,
+ "learning_rate": 0.0006,
+ "loss": 3.4425978660583496,
+ "step": 5932
+ },
+ {
+ "epoch": 82.40541721275666,
+ "grad_norm": 0.2530428171157837,
+ "learning_rate": 0.0006,
+ "loss": 3.4478020668029785,
+ "step": 5933
+ },
+ {
+ "epoch": 82.41939711664482,
+ "grad_norm": 0.2404085248708725,
+ "learning_rate": 0.0006,
+ "loss": 3.401540517807007,
+ "step": 5934
+ },
+ {
+ "epoch": 82.43337702053299,
+ "grad_norm": 0.23845867812633514,
+ "learning_rate": 0.0006,
+ "loss": 3.461883544921875,
+ "step": 5935
+ },
+ {
+ "epoch": 82.44735692442114,
+ "grad_norm": 0.23088037967681885,
+ "learning_rate": 0.0006,
+ "loss": 3.4389796257019043,
+ "step": 5936
+ },
+ {
+ "epoch": 82.4613368283093,
+ "grad_norm": 0.24288570880889893,
+ "learning_rate": 0.0006,
+ "loss": 3.457475185394287,
+ "step": 5937
+ },
+ {
+ "epoch": 82.47531673219747,
+ "grad_norm": 0.2799559235572815,
+ "learning_rate": 0.0006,
+ "loss": 3.445082664489746,
+ "step": 5938
+ },
+ {
+ "epoch": 82.48929663608563,
+ "grad_norm": 0.23611751198768616,
+ "learning_rate": 0.0006,
+ "loss": 3.463675022125244,
+ "step": 5939
+ },
+ {
+ "epoch": 82.50327653997378,
+ "grad_norm": 0.2390424907207489,
+ "learning_rate": 0.0006,
+ "loss": 3.4434826374053955,
+ "step": 5940
+ },
+ {
+ "epoch": 82.51725644386195,
+ "grad_norm": 0.3373001217842102,
+ "learning_rate": 0.0006,
+ "loss": 3.4687438011169434,
+ "step": 5941
+ },
+ {
+ "epoch": 82.53123634775011,
+ "grad_norm": 0.3413066267967224,
+ "learning_rate": 0.0006,
+ "loss": 3.4376461505889893,
+ "step": 5942
+ },
+ {
+ "epoch": 82.54521625163827,
+ "grad_norm": 0.24165762960910797,
+ "learning_rate": 0.0006,
+ "loss": 3.430239200592041,
+ "step": 5943
+ },
+ {
+ "epoch": 82.55919615552644,
+ "grad_norm": 0.25374823808670044,
+ "learning_rate": 0.0006,
+ "loss": 3.417081832885742,
+ "step": 5944
+ },
+ {
+ "epoch": 82.57317605941459,
+ "grad_norm": 0.32946228981018066,
+ "learning_rate": 0.0006,
+ "loss": 3.4235644340515137,
+ "step": 5945
+ },
+ {
+ "epoch": 82.58715596330275,
+ "grad_norm": 0.32193586230278015,
+ "learning_rate": 0.0006,
+ "loss": 3.450972080230713,
+ "step": 5946
+ },
+ {
+ "epoch": 82.60113586719092,
+ "grad_norm": 0.24615046381950378,
+ "learning_rate": 0.0006,
+ "loss": 3.489959716796875,
+ "step": 5947
+ },
+ {
+ "epoch": 82.61511577107908,
+ "grad_norm": 0.24981027841567993,
+ "learning_rate": 0.0006,
+ "loss": 3.466486930847168,
+ "step": 5948
+ },
+ {
+ "epoch": 82.62909567496723,
+ "grad_norm": 0.2472672462463379,
+ "learning_rate": 0.0006,
+ "loss": 3.47261381149292,
+ "step": 5949
+ },
+ {
+ "epoch": 82.6430755788554,
+ "grad_norm": 0.2465936541557312,
+ "learning_rate": 0.0006,
+ "loss": 3.46502423286438,
+ "step": 5950
+ },
+ {
+ "epoch": 82.65705548274356,
+ "grad_norm": 0.2683236300945282,
+ "learning_rate": 0.0006,
+ "loss": 3.4559872150421143,
+ "step": 5951
+ },
+ {
+ "epoch": 82.67103538663171,
+ "grad_norm": 0.2673622965812683,
+ "learning_rate": 0.0006,
+ "loss": 3.5017478466033936,
+ "step": 5952
+ },
+ {
+ "epoch": 82.68501529051987,
+ "grad_norm": 0.2692212164402008,
+ "learning_rate": 0.0006,
+ "loss": 3.4872794151306152,
+ "step": 5953
+ },
+ {
+ "epoch": 82.69899519440804,
+ "grad_norm": 0.26421430706977844,
+ "learning_rate": 0.0006,
+ "loss": 3.4612350463867188,
+ "step": 5954
+ },
+ {
+ "epoch": 82.7129750982962,
+ "grad_norm": 0.2509252727031708,
+ "learning_rate": 0.0006,
+ "loss": 3.4686827659606934,
+ "step": 5955
+ },
+ {
+ "epoch": 82.72695500218435,
+ "grad_norm": 0.209443598985672,
+ "learning_rate": 0.0006,
+ "loss": 3.454824924468994,
+ "step": 5956
+ },
+ {
+ "epoch": 82.74093490607252,
+ "grad_norm": 0.24989601969718933,
+ "learning_rate": 0.0006,
+ "loss": 3.4740121364593506,
+ "step": 5957
+ },
+ {
+ "epoch": 82.75491480996068,
+ "grad_norm": 0.2902134954929352,
+ "learning_rate": 0.0006,
+ "loss": 3.4464473724365234,
+ "step": 5958
+ },
+ {
+ "epoch": 82.76889471384884,
+ "grad_norm": 0.24959035217761993,
+ "learning_rate": 0.0006,
+ "loss": 3.465094566345215,
+ "step": 5959
+ },
+ {
+ "epoch": 82.78287461773701,
+ "grad_norm": 0.23020492494106293,
+ "learning_rate": 0.0006,
+ "loss": 3.4868249893188477,
+ "step": 5960
+ },
+ {
+ "epoch": 82.79685452162516,
+ "grad_norm": 0.2315775454044342,
+ "learning_rate": 0.0006,
+ "loss": 3.4711623191833496,
+ "step": 5961
+ },
+ {
+ "epoch": 82.81083442551332,
+ "grad_norm": 0.2326463758945465,
+ "learning_rate": 0.0006,
+ "loss": 3.447787284851074,
+ "step": 5962
+ },
+ {
+ "epoch": 82.82481432940149,
+ "grad_norm": 0.23650991916656494,
+ "learning_rate": 0.0006,
+ "loss": 3.4676520824432373,
+ "step": 5963
+ },
+ {
+ "epoch": 82.83879423328965,
+ "grad_norm": 0.25990426540374756,
+ "learning_rate": 0.0006,
+ "loss": 3.494727373123169,
+ "step": 5964
+ },
+ {
+ "epoch": 82.8527741371778,
+ "grad_norm": 0.23490077257156372,
+ "learning_rate": 0.0006,
+ "loss": 3.5040855407714844,
+ "step": 5965
+ },
+ {
+ "epoch": 82.86675404106597,
+ "grad_norm": 0.20543795824050903,
+ "learning_rate": 0.0006,
+ "loss": 3.4675912857055664,
+ "step": 5966
+ },
+ {
+ "epoch": 82.88073394495413,
+ "grad_norm": 0.21899794042110443,
+ "learning_rate": 0.0006,
+ "loss": 3.4491946697235107,
+ "step": 5967
+ },
+ {
+ "epoch": 82.89471384884229,
+ "grad_norm": 0.22304055094718933,
+ "learning_rate": 0.0006,
+ "loss": 3.4818315505981445,
+ "step": 5968
+ },
+ {
+ "epoch": 82.90869375273044,
+ "grad_norm": 0.2622174024581909,
+ "learning_rate": 0.0006,
+ "loss": 3.475957155227661,
+ "step": 5969
+ },
+ {
+ "epoch": 82.92267365661861,
+ "grad_norm": 0.2829800546169281,
+ "learning_rate": 0.0006,
+ "loss": 3.5397486686706543,
+ "step": 5970
+ },
+ {
+ "epoch": 82.93665356050677,
+ "grad_norm": 0.23583251237869263,
+ "learning_rate": 0.0006,
+ "loss": 3.4955060482025146,
+ "step": 5971
+ },
+ {
+ "epoch": 82.95063346439493,
+ "grad_norm": 0.2033468782901764,
+ "learning_rate": 0.0006,
+ "loss": 3.477050542831421,
+ "step": 5972
+ },
+ {
+ "epoch": 82.9646133682831,
+ "grad_norm": 0.20826712250709534,
+ "learning_rate": 0.0006,
+ "loss": 3.4818544387817383,
+ "step": 5973
+ },
+ {
+ "epoch": 82.97859327217125,
+ "grad_norm": 0.20250852406024933,
+ "learning_rate": 0.0006,
+ "loss": 3.44329571723938,
+ "step": 5974
+ },
+ {
+ "epoch": 82.99257317605941,
+ "grad_norm": 0.21684879064559937,
+ "learning_rate": 0.0006,
+ "loss": 3.482222318649292,
+ "step": 5975
+ },
+ {
+ "epoch": 83.0,
+ "grad_norm": 0.2637452781200409,
+ "learning_rate": 0.0006,
+ "loss": 3.526481866836548,
+ "step": 5976
+ },
+ {
+ "epoch": 83.0,
+ "eval_loss": 3.9838967323303223,
+ "eval_runtime": 45.8267,
+ "eval_samples_per_second": 53.288,
+ "eval_steps_per_second": 3.339,
+ "step": 5976
+ },
+ {
+ "epoch": 83.01397990388816,
+ "grad_norm": 0.2888176143169403,
+ "learning_rate": 0.0006,
+ "loss": 3.409271717071533,
+ "step": 5977
+ },
+ {
+ "epoch": 83.02795980777633,
+ "grad_norm": 0.3692282736301422,
+ "learning_rate": 0.0006,
+ "loss": 3.4353346824645996,
+ "step": 5978
+ },
+ {
+ "epoch": 83.04193971166448,
+ "grad_norm": 0.3694300353527069,
+ "learning_rate": 0.0006,
+ "loss": 3.4257359504699707,
+ "step": 5979
+ },
+ {
+ "epoch": 83.05591961555264,
+ "grad_norm": 0.29487040638923645,
+ "learning_rate": 0.0006,
+ "loss": 3.416271209716797,
+ "step": 5980
+ },
+ {
+ "epoch": 83.06989951944081,
+ "grad_norm": 0.2911352217197418,
+ "learning_rate": 0.0006,
+ "loss": 3.424140214920044,
+ "step": 5981
+ },
+ {
+ "epoch": 83.08387942332897,
+ "grad_norm": 0.35632601380348206,
+ "learning_rate": 0.0006,
+ "loss": 3.4235711097717285,
+ "step": 5982
+ },
+ {
+ "epoch": 83.09785932721712,
+ "grad_norm": 0.4010505676269531,
+ "learning_rate": 0.0006,
+ "loss": 3.462642192840576,
+ "step": 5983
+ },
+ {
+ "epoch": 83.1118392311053,
+ "grad_norm": 0.3426569402217865,
+ "learning_rate": 0.0006,
+ "loss": 3.448690176010132,
+ "step": 5984
+ },
+ {
+ "epoch": 83.12581913499345,
+ "grad_norm": 0.2632673382759094,
+ "learning_rate": 0.0006,
+ "loss": 3.447197914123535,
+ "step": 5985
+ },
+ {
+ "epoch": 83.1397990388816,
+ "grad_norm": 0.2999698221683502,
+ "learning_rate": 0.0006,
+ "loss": 3.4137229919433594,
+ "step": 5986
+ },
+ {
+ "epoch": 83.15377894276976,
+ "grad_norm": 0.3033472001552582,
+ "learning_rate": 0.0006,
+ "loss": 3.4816393852233887,
+ "step": 5987
+ },
+ {
+ "epoch": 83.16775884665793,
+ "grad_norm": 0.2590268850326538,
+ "learning_rate": 0.0006,
+ "loss": 3.4059391021728516,
+ "step": 5988
+ },
+ {
+ "epoch": 83.18173875054609,
+ "grad_norm": 0.2598235607147217,
+ "learning_rate": 0.0006,
+ "loss": 3.447913885116577,
+ "step": 5989
+ },
+ {
+ "epoch": 83.19571865443424,
+ "grad_norm": 0.25087642669677734,
+ "learning_rate": 0.0006,
+ "loss": 3.4645161628723145,
+ "step": 5990
+ },
+ {
+ "epoch": 83.20969855832242,
+ "grad_norm": 0.267760306596756,
+ "learning_rate": 0.0006,
+ "loss": 3.4360952377319336,
+ "step": 5991
+ },
+ {
+ "epoch": 83.22367846221057,
+ "grad_norm": 0.25042274594306946,
+ "learning_rate": 0.0006,
+ "loss": 3.464437961578369,
+ "step": 5992
+ },
+ {
+ "epoch": 83.23765836609873,
+ "grad_norm": 0.22963418066501617,
+ "learning_rate": 0.0006,
+ "loss": 3.421604633331299,
+ "step": 5993
+ },
+ {
+ "epoch": 83.2516382699869,
+ "grad_norm": 0.24857227504253387,
+ "learning_rate": 0.0006,
+ "loss": 3.4228515625,
+ "step": 5994
+ },
+ {
+ "epoch": 83.26561817387505,
+ "grad_norm": 0.24745461344718933,
+ "learning_rate": 0.0006,
+ "loss": 3.463120222091675,
+ "step": 5995
+ },
+ {
+ "epoch": 83.27959807776321,
+ "grad_norm": 0.258258581161499,
+ "learning_rate": 0.0006,
+ "loss": 3.4567341804504395,
+ "step": 5996
+ },
+ {
+ "epoch": 83.29357798165138,
+ "grad_norm": 0.26854267716407776,
+ "learning_rate": 0.0006,
+ "loss": 3.459993839263916,
+ "step": 5997
+ },
+ {
+ "epoch": 83.30755788553954,
+ "grad_norm": 0.253322571516037,
+ "learning_rate": 0.0006,
+ "loss": 3.4329309463500977,
+ "step": 5998
+ },
+ {
+ "epoch": 83.3215377894277,
+ "grad_norm": 0.2596076726913452,
+ "learning_rate": 0.0006,
+ "loss": 3.463113784790039,
+ "step": 5999
+ },
+ {
+ "epoch": 83.33551769331586,
+ "grad_norm": 0.23935553431510925,
+ "learning_rate": 0.0006,
+ "loss": 3.45231556892395,
+ "step": 6000
+ },
+ {
+ "epoch": 83.34949759720402,
+ "grad_norm": 0.23181283473968506,
+ "learning_rate": 0.0006,
+ "loss": 3.4250950813293457,
+ "step": 6001
+ },
+ {
+ "epoch": 83.36347750109218,
+ "grad_norm": 0.22866526246070862,
+ "learning_rate": 0.0006,
+ "loss": 3.451408863067627,
+ "step": 6002
+ },
+ {
+ "epoch": 83.37745740498035,
+ "grad_norm": 0.2585664689540863,
+ "learning_rate": 0.0006,
+ "loss": 3.474940299987793,
+ "step": 6003
+ },
+ {
+ "epoch": 83.3914373088685,
+ "grad_norm": 0.21957920491695404,
+ "learning_rate": 0.0006,
+ "loss": 3.4120378494262695,
+ "step": 6004
+ },
+ {
+ "epoch": 83.40541721275666,
+ "grad_norm": 0.21237598359584808,
+ "learning_rate": 0.0006,
+ "loss": 3.458988666534424,
+ "step": 6005
+ },
+ {
+ "epoch": 83.41939711664482,
+ "grad_norm": 0.21803049743175507,
+ "learning_rate": 0.0006,
+ "loss": 3.436127185821533,
+ "step": 6006
+ },
+ {
+ "epoch": 83.43337702053299,
+ "grad_norm": 0.24005955457687378,
+ "learning_rate": 0.0006,
+ "loss": 3.4540181159973145,
+ "step": 6007
+ },
+ {
+ "epoch": 83.44735692442114,
+ "grad_norm": 0.26444754004478455,
+ "learning_rate": 0.0006,
+ "loss": 3.4646968841552734,
+ "step": 6008
+ },
+ {
+ "epoch": 83.4613368283093,
+ "grad_norm": 0.2504395544528961,
+ "learning_rate": 0.0006,
+ "loss": 3.4380784034729004,
+ "step": 6009
+ },
+ {
+ "epoch": 83.47531673219747,
+ "grad_norm": 0.23231923580169678,
+ "learning_rate": 0.0006,
+ "loss": 3.4435203075408936,
+ "step": 6010
+ },
+ {
+ "epoch": 83.48929663608563,
+ "grad_norm": 0.22733177244663239,
+ "learning_rate": 0.0006,
+ "loss": 3.459223747253418,
+ "step": 6011
+ },
+ {
+ "epoch": 83.50327653997378,
+ "grad_norm": 0.23871523141860962,
+ "learning_rate": 0.0006,
+ "loss": 3.452695369720459,
+ "step": 6012
+ },
+ {
+ "epoch": 83.51725644386195,
+ "grad_norm": 0.26548200845718384,
+ "learning_rate": 0.0006,
+ "loss": 3.4481754302978516,
+ "step": 6013
+ },
+ {
+ "epoch": 83.53123634775011,
+ "grad_norm": 0.2633417248725891,
+ "learning_rate": 0.0006,
+ "loss": 3.469902753829956,
+ "step": 6014
+ },
+ {
+ "epoch": 83.54521625163827,
+ "grad_norm": 0.2338850200176239,
+ "learning_rate": 0.0006,
+ "loss": 3.438602924346924,
+ "step": 6015
+ },
+ {
+ "epoch": 83.55919615552644,
+ "grad_norm": 0.2187591791152954,
+ "learning_rate": 0.0006,
+ "loss": 3.426084280014038,
+ "step": 6016
+ },
+ {
+ "epoch": 83.57317605941459,
+ "grad_norm": 0.2570044994354248,
+ "learning_rate": 0.0006,
+ "loss": 3.4380812644958496,
+ "step": 6017
+ },
+ {
+ "epoch": 83.58715596330275,
+ "grad_norm": 0.25832056999206543,
+ "learning_rate": 0.0006,
+ "loss": 3.45045804977417,
+ "step": 6018
+ },
+ {
+ "epoch": 83.60113586719092,
+ "grad_norm": 0.24552716314792633,
+ "learning_rate": 0.0006,
+ "loss": 3.447704792022705,
+ "step": 6019
+ },
+ {
+ "epoch": 83.61511577107908,
+ "grad_norm": 0.2358967810869217,
+ "learning_rate": 0.0006,
+ "loss": 3.4598300457000732,
+ "step": 6020
+ },
+ {
+ "epoch": 83.62909567496723,
+ "grad_norm": 0.20650409162044525,
+ "learning_rate": 0.0006,
+ "loss": 3.4821555614471436,
+ "step": 6021
+ },
+ {
+ "epoch": 83.6430755788554,
+ "grad_norm": 0.20103590190410614,
+ "learning_rate": 0.0006,
+ "loss": 3.468846082687378,
+ "step": 6022
+ },
+ {
+ "epoch": 83.65705548274356,
+ "grad_norm": 0.20957764983177185,
+ "learning_rate": 0.0006,
+ "loss": 3.4600605964660645,
+ "step": 6023
+ },
+ {
+ "epoch": 83.67103538663171,
+ "grad_norm": 0.21819661557674408,
+ "learning_rate": 0.0006,
+ "loss": 3.4393796920776367,
+ "step": 6024
+ },
+ {
+ "epoch": 83.68501529051987,
+ "grad_norm": 0.23196570575237274,
+ "learning_rate": 0.0006,
+ "loss": 3.452263832092285,
+ "step": 6025
+ },
+ {
+ "epoch": 83.69899519440804,
+ "grad_norm": 0.2700229287147522,
+ "learning_rate": 0.0006,
+ "loss": 3.452803134918213,
+ "step": 6026
+ },
+ {
+ "epoch": 83.7129750982962,
+ "grad_norm": 0.26435309648513794,
+ "learning_rate": 0.0006,
+ "loss": 3.457122802734375,
+ "step": 6027
+ },
+ {
+ "epoch": 83.72695500218435,
+ "grad_norm": 0.24041543900966644,
+ "learning_rate": 0.0006,
+ "loss": 3.455793619155884,
+ "step": 6028
+ },
+ {
+ "epoch": 83.74093490607252,
+ "grad_norm": 0.22590254247188568,
+ "learning_rate": 0.0006,
+ "loss": 3.4643428325653076,
+ "step": 6029
+ },
+ {
+ "epoch": 83.75491480996068,
+ "grad_norm": 0.2043512612581253,
+ "learning_rate": 0.0006,
+ "loss": 3.474919557571411,
+ "step": 6030
+ },
+ {
+ "epoch": 83.76889471384884,
+ "grad_norm": 0.23114001750946045,
+ "learning_rate": 0.0006,
+ "loss": 3.469618797302246,
+ "step": 6031
+ },
+ {
+ "epoch": 83.78287461773701,
+ "grad_norm": 0.24307213723659515,
+ "learning_rate": 0.0006,
+ "loss": 3.44295072555542,
+ "step": 6032
+ },
+ {
+ "epoch": 83.79685452162516,
+ "grad_norm": 0.24907614290714264,
+ "learning_rate": 0.0006,
+ "loss": 3.4820055961608887,
+ "step": 6033
+ },
+ {
+ "epoch": 83.81083442551332,
+ "grad_norm": 0.24758939445018768,
+ "learning_rate": 0.0006,
+ "loss": 3.4528980255126953,
+ "step": 6034
+ },
+ {
+ "epoch": 83.82481432940149,
+ "grad_norm": 0.24556805193424225,
+ "learning_rate": 0.0006,
+ "loss": 3.4928247928619385,
+ "step": 6035
+ },
+ {
+ "epoch": 83.83879423328965,
+ "grad_norm": 0.22058741748332977,
+ "learning_rate": 0.0006,
+ "loss": 3.4515697956085205,
+ "step": 6036
+ },
+ {
+ "epoch": 83.8527741371778,
+ "grad_norm": 0.2287076860666275,
+ "learning_rate": 0.0006,
+ "loss": 3.464742422103882,
+ "step": 6037
+ },
+ {
+ "epoch": 83.86675404106597,
+ "grad_norm": 0.23122717440128326,
+ "learning_rate": 0.0006,
+ "loss": 3.475945472717285,
+ "step": 6038
+ },
+ {
+ "epoch": 83.88073394495413,
+ "grad_norm": 0.23839165270328522,
+ "learning_rate": 0.0006,
+ "loss": 3.486027479171753,
+ "step": 6039
+ },
+ {
+ "epoch": 83.89471384884229,
+ "grad_norm": 0.23857836425304413,
+ "learning_rate": 0.0006,
+ "loss": 3.474921226501465,
+ "step": 6040
+ },
+ {
+ "epoch": 83.90869375273044,
+ "grad_norm": 0.24372349679470062,
+ "learning_rate": 0.0006,
+ "loss": 3.4775476455688477,
+ "step": 6041
+ },
+ {
+ "epoch": 83.92267365661861,
+ "grad_norm": 0.28166019916534424,
+ "learning_rate": 0.0006,
+ "loss": 3.450713634490967,
+ "step": 6042
+ },
+ {
+ "epoch": 83.93665356050677,
+ "grad_norm": 0.27276918292045593,
+ "learning_rate": 0.0006,
+ "loss": 3.4824142456054688,
+ "step": 6043
+ },
+ {
+ "epoch": 83.95063346439493,
+ "grad_norm": 0.2137363702058792,
+ "learning_rate": 0.0006,
+ "loss": 3.4720726013183594,
+ "step": 6044
+ },
+ {
+ "epoch": 83.9646133682831,
+ "grad_norm": 0.21120159327983856,
+ "learning_rate": 0.0006,
+ "loss": 3.5012218952178955,
+ "step": 6045
+ },
+ {
+ "epoch": 83.97859327217125,
+ "grad_norm": 0.22474384307861328,
+ "learning_rate": 0.0006,
+ "loss": 3.460742950439453,
+ "step": 6046
+ },
+ {
+ "epoch": 83.99257317605941,
+ "grad_norm": 0.20441333949565887,
+ "learning_rate": 0.0006,
+ "loss": 3.4822964668273926,
+ "step": 6047
+ },
+ {
+ "epoch": 84.0,
+ "grad_norm": 0.2454686462879181,
+ "learning_rate": 0.0006,
+ "loss": 3.5237345695495605,
+ "step": 6048
+ },
+ {
+ "epoch": 84.0,
+ "eval_loss": 3.9953911304473877,
+ "eval_runtime": 45.8514,
+ "eval_samples_per_second": 53.259,
+ "eval_steps_per_second": 3.337,
+ "step": 6048
+ },
+ {
+ "epoch": 84.01397990388816,
+ "grad_norm": 0.23639939725399017,
+ "learning_rate": 0.0006,
+ "loss": 3.4068121910095215,
+ "step": 6049
+ },
+ {
+ "epoch": 84.02795980777633,
+ "grad_norm": 0.2581193149089813,
+ "learning_rate": 0.0006,
+ "loss": 3.4408299922943115,
+ "step": 6050
+ },
+ {
+ "epoch": 84.04193971166448,
+ "grad_norm": 0.2579401433467865,
+ "learning_rate": 0.0006,
+ "loss": 3.4009571075439453,
+ "step": 6051
+ },
+ {
+ "epoch": 84.05591961555264,
+ "grad_norm": 0.2377995103597641,
+ "learning_rate": 0.0006,
+ "loss": 3.4338529109954834,
+ "step": 6052
+ },
+ {
+ "epoch": 84.06989951944081,
+ "grad_norm": 0.22722864151000977,
+ "learning_rate": 0.0006,
+ "loss": 3.411055564880371,
+ "step": 6053
+ },
+ {
+ "epoch": 84.08387942332897,
+ "grad_norm": 0.2766192555427551,
+ "learning_rate": 0.0006,
+ "loss": 3.4304237365722656,
+ "step": 6054
+ },
+ {
+ "epoch": 84.09785932721712,
+ "grad_norm": 0.2608284652233124,
+ "learning_rate": 0.0006,
+ "loss": 3.444244384765625,
+ "step": 6055
+ },
+ {
+ "epoch": 84.1118392311053,
+ "grad_norm": 0.22354614734649658,
+ "learning_rate": 0.0006,
+ "loss": 3.439541816711426,
+ "step": 6056
+ },
+ {
+ "epoch": 84.12581913499345,
+ "grad_norm": 0.24095603823661804,
+ "learning_rate": 0.0006,
+ "loss": 3.4354658126831055,
+ "step": 6057
+ },
+ {
+ "epoch": 84.1397990388816,
+ "grad_norm": 0.23401515185832977,
+ "learning_rate": 0.0006,
+ "loss": 3.4395503997802734,
+ "step": 6058
+ },
+ {
+ "epoch": 84.15377894276976,
+ "grad_norm": 0.21646054089069366,
+ "learning_rate": 0.0006,
+ "loss": 3.432781457901001,
+ "step": 6059
+ },
+ {
+ "epoch": 84.16775884665793,
+ "grad_norm": 0.22034308314323425,
+ "learning_rate": 0.0006,
+ "loss": 3.406602144241333,
+ "step": 6060
+ },
+ {
+ "epoch": 84.18173875054609,
+ "grad_norm": 0.2310352474451065,
+ "learning_rate": 0.0006,
+ "loss": 3.45137095451355,
+ "step": 6061
+ },
+ {
+ "epoch": 84.19571865443424,
+ "grad_norm": 0.22129112482070923,
+ "learning_rate": 0.0006,
+ "loss": 3.4401423931121826,
+ "step": 6062
+ },
+ {
+ "epoch": 84.20969855832242,
+ "grad_norm": 0.22799579799175262,
+ "learning_rate": 0.0006,
+ "loss": 3.4391798973083496,
+ "step": 6063
+ },
+ {
+ "epoch": 84.22367846221057,
+ "grad_norm": 0.22834676504135132,
+ "learning_rate": 0.0006,
+ "loss": 3.492427349090576,
+ "step": 6064
+ },
+ {
+ "epoch": 84.23765836609873,
+ "grad_norm": 0.22315837442874908,
+ "learning_rate": 0.0006,
+ "loss": 3.4242477416992188,
+ "step": 6065
+ },
+ {
+ "epoch": 84.2516382699869,
+ "grad_norm": 0.22605115175247192,
+ "learning_rate": 0.0006,
+ "loss": 3.441441059112549,
+ "step": 6066
+ },
+ {
+ "epoch": 84.26561817387505,
+ "grad_norm": 0.2410772442817688,
+ "learning_rate": 0.0006,
+ "loss": 3.4162003993988037,
+ "step": 6067
+ },
+ {
+ "epoch": 84.27959807776321,
+ "grad_norm": 0.23363634943962097,
+ "learning_rate": 0.0006,
+ "loss": 3.4367871284484863,
+ "step": 6068
+ },
+ {
+ "epoch": 84.29357798165138,
+ "grad_norm": 0.2501516342163086,
+ "learning_rate": 0.0006,
+ "loss": 3.4679744243621826,
+ "step": 6069
+ },
+ {
+ "epoch": 84.30755788553954,
+ "grad_norm": 0.2761887013912201,
+ "learning_rate": 0.0006,
+ "loss": 3.4481863975524902,
+ "step": 6070
+ },
+ {
+ "epoch": 84.3215377894277,
+ "grad_norm": 0.26753947138786316,
+ "learning_rate": 0.0006,
+ "loss": 3.492464065551758,
+ "step": 6071
+ },
+ {
+ "epoch": 84.33551769331586,
+ "grad_norm": 0.23492486774921417,
+ "learning_rate": 0.0006,
+ "loss": 3.4377055168151855,
+ "step": 6072
+ },
+ {
+ "epoch": 84.34949759720402,
+ "grad_norm": 0.22405743598937988,
+ "learning_rate": 0.0006,
+ "loss": 3.44317626953125,
+ "step": 6073
+ },
+ {
+ "epoch": 84.36347750109218,
+ "grad_norm": 0.262371689081192,
+ "learning_rate": 0.0006,
+ "loss": 3.445984363555908,
+ "step": 6074
+ },
+ {
+ "epoch": 84.37745740498035,
+ "grad_norm": 0.2874908745288849,
+ "learning_rate": 0.0006,
+ "loss": 3.455535411834717,
+ "step": 6075
+ },
+ {
+ "epoch": 84.3914373088685,
+ "grad_norm": 0.2813026010990143,
+ "learning_rate": 0.0006,
+ "loss": 3.450965404510498,
+ "step": 6076
+ },
+ {
+ "epoch": 84.40541721275666,
+ "grad_norm": 0.2511669099330902,
+ "learning_rate": 0.0006,
+ "loss": 3.4422781467437744,
+ "step": 6077
+ },
+ {
+ "epoch": 84.41939711664482,
+ "grad_norm": 0.24031679332256317,
+ "learning_rate": 0.0006,
+ "loss": 3.4646971225738525,
+ "step": 6078
+ },
+ {
+ "epoch": 84.43337702053299,
+ "grad_norm": 0.2375684231519699,
+ "learning_rate": 0.0006,
+ "loss": 3.404259204864502,
+ "step": 6079
+ },
+ {
+ "epoch": 84.44735692442114,
+ "grad_norm": 0.2297784835100174,
+ "learning_rate": 0.0006,
+ "loss": 3.4274559020996094,
+ "step": 6080
+ },
+ {
+ "epoch": 84.4613368283093,
+ "grad_norm": 0.22411473095417023,
+ "learning_rate": 0.0006,
+ "loss": 3.420492172241211,
+ "step": 6081
+ },
+ {
+ "epoch": 84.47531673219747,
+ "grad_norm": 0.23126399517059326,
+ "learning_rate": 0.0006,
+ "loss": 3.4440231323242188,
+ "step": 6082
+ },
+ {
+ "epoch": 84.48929663608563,
+ "grad_norm": 0.2578703761100769,
+ "learning_rate": 0.0006,
+ "loss": 3.419753074645996,
+ "step": 6083
+ },
+ {
+ "epoch": 84.50327653997378,
+ "grad_norm": 0.25254541635513306,
+ "learning_rate": 0.0006,
+ "loss": 3.4504146575927734,
+ "step": 6084
+ },
+ {
+ "epoch": 84.51725644386195,
+ "grad_norm": 0.22324225306510925,
+ "learning_rate": 0.0006,
+ "loss": 3.4860897064208984,
+ "step": 6085
+ },
+ {
+ "epoch": 84.53123634775011,
+ "grad_norm": 0.23084819316864014,
+ "learning_rate": 0.0006,
+ "loss": 3.4693355560302734,
+ "step": 6086
+ },
+ {
+ "epoch": 84.54521625163827,
+ "grad_norm": 0.23229891061782837,
+ "learning_rate": 0.0006,
+ "loss": 3.4350061416625977,
+ "step": 6087
+ },
+ {
+ "epoch": 84.55919615552644,
+ "grad_norm": 0.23634378612041473,
+ "learning_rate": 0.0006,
+ "loss": 3.425060272216797,
+ "step": 6088
+ },
+ {
+ "epoch": 84.57317605941459,
+ "grad_norm": 0.24133262038230896,
+ "learning_rate": 0.0006,
+ "loss": 3.420022487640381,
+ "step": 6089
+ },
+ {
+ "epoch": 84.58715596330275,
+ "grad_norm": 0.2206571102142334,
+ "learning_rate": 0.0006,
+ "loss": 3.4881091117858887,
+ "step": 6090
+ },
+ {
+ "epoch": 84.60113586719092,
+ "grad_norm": 0.21868985891342163,
+ "learning_rate": 0.0006,
+ "loss": 3.444207191467285,
+ "step": 6091
+ },
+ {
+ "epoch": 84.61511577107908,
+ "grad_norm": 0.21661551296710968,
+ "learning_rate": 0.0006,
+ "loss": 3.46708345413208,
+ "step": 6092
+ },
+ {
+ "epoch": 84.62909567496723,
+ "grad_norm": 0.2211335003376007,
+ "learning_rate": 0.0006,
+ "loss": 3.422534465789795,
+ "step": 6093
+ },
+ {
+ "epoch": 84.6430755788554,
+ "grad_norm": 0.23101121187210083,
+ "learning_rate": 0.0006,
+ "loss": 3.4558486938476562,
+ "step": 6094
+ },
+ {
+ "epoch": 84.65705548274356,
+ "grad_norm": 0.21324186027050018,
+ "learning_rate": 0.0006,
+ "loss": 3.488935708999634,
+ "step": 6095
+ },
+ {
+ "epoch": 84.67103538663171,
+ "grad_norm": 0.23262912034988403,
+ "learning_rate": 0.0006,
+ "loss": 3.455625057220459,
+ "step": 6096
+ },
+ {
+ "epoch": 84.68501529051987,
+ "grad_norm": 0.245137020945549,
+ "learning_rate": 0.0006,
+ "loss": 3.459805727005005,
+ "step": 6097
+ },
+ {
+ "epoch": 84.69899519440804,
+ "grad_norm": 0.24005620181560516,
+ "learning_rate": 0.0006,
+ "loss": 3.4524760246276855,
+ "step": 6098
+ },
+ {
+ "epoch": 84.7129750982962,
+ "grad_norm": 0.2383408397436142,
+ "learning_rate": 0.0006,
+ "loss": 3.482253074645996,
+ "step": 6099
+ },
+ {
+ "epoch": 84.72695500218435,
+ "grad_norm": 0.21188686788082123,
+ "learning_rate": 0.0006,
+ "loss": 3.4336321353912354,
+ "step": 6100
+ },
+ {
+ "epoch": 84.74093490607252,
+ "grad_norm": 0.20706120133399963,
+ "learning_rate": 0.0006,
+ "loss": 3.4603681564331055,
+ "step": 6101
+ },
+ {
+ "epoch": 84.75491480996068,
+ "grad_norm": 0.2089851349592209,
+ "learning_rate": 0.0006,
+ "loss": 3.433825969696045,
+ "step": 6102
+ },
+ {
+ "epoch": 84.76889471384884,
+ "grad_norm": 0.24237141013145447,
+ "learning_rate": 0.0006,
+ "loss": 3.4863271713256836,
+ "step": 6103
+ },
+ {
+ "epoch": 84.78287461773701,
+ "grad_norm": 0.24052679538726807,
+ "learning_rate": 0.0006,
+ "loss": 3.4620628356933594,
+ "step": 6104
+ },
+ {
+ "epoch": 84.79685452162516,
+ "grad_norm": 0.21260327100753784,
+ "learning_rate": 0.0006,
+ "loss": 3.4749603271484375,
+ "step": 6105
+ },
+ {
+ "epoch": 84.81083442551332,
+ "grad_norm": 0.21502383053302765,
+ "learning_rate": 0.0006,
+ "loss": 3.47800350189209,
+ "step": 6106
+ },
+ {
+ "epoch": 84.82481432940149,
+ "grad_norm": 0.2255013883113861,
+ "learning_rate": 0.0006,
+ "loss": 3.479379177093506,
+ "step": 6107
+ },
+ {
+ "epoch": 84.83879423328965,
+ "grad_norm": 0.21322280168533325,
+ "learning_rate": 0.0006,
+ "loss": 3.4761860370635986,
+ "step": 6108
+ },
+ {
+ "epoch": 84.8527741371778,
+ "grad_norm": 0.21868883073329926,
+ "learning_rate": 0.0006,
+ "loss": 3.4408018589019775,
+ "step": 6109
+ },
+ {
+ "epoch": 84.86675404106597,
+ "grad_norm": 0.24075059592723846,
+ "learning_rate": 0.0006,
+ "loss": 3.491424798965454,
+ "step": 6110
+ },
+ {
+ "epoch": 84.88073394495413,
+ "grad_norm": 0.22453387081623077,
+ "learning_rate": 0.0006,
+ "loss": 3.473700523376465,
+ "step": 6111
+ },
+ {
+ "epoch": 84.89471384884229,
+ "grad_norm": 0.21405141055583954,
+ "learning_rate": 0.0006,
+ "loss": 3.5045337677001953,
+ "step": 6112
+ },
+ {
+ "epoch": 84.90869375273044,
+ "grad_norm": 0.22792331874370575,
+ "learning_rate": 0.0006,
+ "loss": 3.459500312805176,
+ "step": 6113
+ },
+ {
+ "epoch": 84.92267365661861,
+ "grad_norm": 0.23756900429725647,
+ "learning_rate": 0.0006,
+ "loss": 3.4716384410858154,
+ "step": 6114
+ },
+ {
+ "epoch": 84.93665356050677,
+ "grad_norm": 0.23942020535469055,
+ "learning_rate": 0.0006,
+ "loss": 3.458301544189453,
+ "step": 6115
+ },
+ {
+ "epoch": 84.95063346439493,
+ "grad_norm": 0.2668362855911255,
+ "learning_rate": 0.0006,
+ "loss": 3.4793195724487305,
+ "step": 6116
+ },
+ {
+ "epoch": 84.9646133682831,
+ "grad_norm": 0.2655593454837799,
+ "learning_rate": 0.0006,
+ "loss": 3.461183547973633,
+ "step": 6117
+ },
+ {
+ "epoch": 84.97859327217125,
+ "grad_norm": 0.23327142000198364,
+ "learning_rate": 0.0006,
+ "loss": 3.488638401031494,
+ "step": 6118
+ },
+ {
+ "epoch": 84.99257317605941,
+ "grad_norm": 0.21170541644096375,
+ "learning_rate": 0.0006,
+ "loss": 3.4597835540771484,
+ "step": 6119
+ },
+ {
+ "epoch": 85.0,
+ "grad_norm": 0.25858765840530396,
+ "learning_rate": 0.0006,
+ "loss": 3.4496002197265625,
+ "step": 6120
+ },
+ {
+ "epoch": 85.0,
+ "eval_loss": 3.9907591342926025,
+ "eval_runtime": 46.7196,
+ "eval_samples_per_second": 52.269,
+ "eval_steps_per_second": 3.275,
+ "step": 6120
+ },
+ {
+ "epoch": 85.01397990388816,
+ "grad_norm": 0.25001025199890137,
+ "learning_rate": 0.0006,
+ "loss": 3.408668041229248,
+ "step": 6121
+ },
+ {
+ "epoch": 85.02795980777633,
+ "grad_norm": 0.27951815724372864,
+ "learning_rate": 0.0006,
+ "loss": 3.4662365913391113,
+ "step": 6122
+ },
+ {
+ "epoch": 85.04193971166448,
+ "grad_norm": 0.3308251202106476,
+ "learning_rate": 0.0006,
+ "loss": 3.445281982421875,
+ "step": 6123
+ },
+ {
+ "epoch": 85.05591961555264,
+ "grad_norm": 0.38616496324539185,
+ "learning_rate": 0.0006,
+ "loss": 3.420867443084717,
+ "step": 6124
+ },
+ {
+ "epoch": 85.06989951944081,
+ "grad_norm": 0.34203988313674927,
+ "learning_rate": 0.0006,
+ "loss": 3.4531023502349854,
+ "step": 6125
+ },
+ {
+ "epoch": 85.08387942332897,
+ "grad_norm": 0.2681678533554077,
+ "learning_rate": 0.0006,
+ "loss": 3.452749252319336,
+ "step": 6126
+ },
+ {
+ "epoch": 85.09785932721712,
+ "grad_norm": 0.3256039619445801,
+ "learning_rate": 0.0006,
+ "loss": 3.428740978240967,
+ "step": 6127
+ },
+ {
+ "epoch": 85.1118392311053,
+ "grad_norm": 0.35335347056388855,
+ "learning_rate": 0.0006,
+ "loss": 3.438882827758789,
+ "step": 6128
+ },
+ {
+ "epoch": 85.12581913499345,
+ "grad_norm": 0.3345780074596405,
+ "learning_rate": 0.0006,
+ "loss": 3.454054832458496,
+ "step": 6129
+ },
+ {
+ "epoch": 85.1397990388816,
+ "grad_norm": 0.26127031445503235,
+ "learning_rate": 0.0006,
+ "loss": 3.468048572540283,
+ "step": 6130
+ },
+ {
+ "epoch": 85.15377894276976,
+ "grad_norm": 0.24848037958145142,
+ "learning_rate": 0.0006,
+ "loss": 3.452026844024658,
+ "step": 6131
+ },
+ {
+ "epoch": 85.16775884665793,
+ "grad_norm": 0.23380406200885773,
+ "learning_rate": 0.0006,
+ "loss": 3.4506797790527344,
+ "step": 6132
+ },
+ {
+ "epoch": 85.18173875054609,
+ "grad_norm": 0.23879839479923248,
+ "learning_rate": 0.0006,
+ "loss": 3.451416492462158,
+ "step": 6133
+ },
+ {
+ "epoch": 85.19571865443424,
+ "grad_norm": 0.25148293375968933,
+ "learning_rate": 0.0006,
+ "loss": 3.4010143280029297,
+ "step": 6134
+ },
+ {
+ "epoch": 85.20969855832242,
+ "grad_norm": 0.22815518081188202,
+ "learning_rate": 0.0006,
+ "loss": 3.430312156677246,
+ "step": 6135
+ },
+ {
+ "epoch": 85.22367846221057,
+ "grad_norm": 0.22946542501449585,
+ "learning_rate": 0.0006,
+ "loss": 3.4514856338500977,
+ "step": 6136
+ },
+ {
+ "epoch": 85.23765836609873,
+ "grad_norm": 0.2776675522327423,
+ "learning_rate": 0.0006,
+ "loss": 3.4610185623168945,
+ "step": 6137
+ },
+ {
+ "epoch": 85.2516382699869,
+ "grad_norm": 0.2937948703765869,
+ "learning_rate": 0.0006,
+ "loss": 3.411609172821045,
+ "step": 6138
+ },
+ {
+ "epoch": 85.26561817387505,
+ "grad_norm": 0.25498732924461365,
+ "learning_rate": 0.0006,
+ "loss": 3.4253973960876465,
+ "step": 6139
+ },
+ {
+ "epoch": 85.27959807776321,
+ "grad_norm": 0.22892245650291443,
+ "learning_rate": 0.0006,
+ "loss": 3.4420440196990967,
+ "step": 6140
+ },
+ {
+ "epoch": 85.29357798165138,
+ "grad_norm": 0.28531017899513245,
+ "learning_rate": 0.0006,
+ "loss": 3.423523426055908,
+ "step": 6141
+ },
+ {
+ "epoch": 85.30755788553954,
+ "grad_norm": 0.27804628014564514,
+ "learning_rate": 0.0006,
+ "loss": 3.4334774017333984,
+ "step": 6142
+ },
+ {
+ "epoch": 85.3215377894277,
+ "grad_norm": 0.23773743212223053,
+ "learning_rate": 0.0006,
+ "loss": 3.430731773376465,
+ "step": 6143
+ },
+ {
+ "epoch": 85.33551769331586,
+ "grad_norm": 0.2544757127761841,
+ "learning_rate": 0.0006,
+ "loss": 3.434880495071411,
+ "step": 6144
+ },
+ {
+ "epoch": 85.34949759720402,
+ "grad_norm": 0.2462168037891388,
+ "learning_rate": 0.0006,
+ "loss": 3.4443912506103516,
+ "step": 6145
+ },
+ {
+ "epoch": 85.36347750109218,
+ "grad_norm": 0.2208261936903,
+ "learning_rate": 0.0006,
+ "loss": 3.428115129470825,
+ "step": 6146
+ },
+ {
+ "epoch": 85.37745740498035,
+ "grad_norm": 0.25137123465538025,
+ "learning_rate": 0.0006,
+ "loss": 3.419116973876953,
+ "step": 6147
+ },
+ {
+ "epoch": 85.3914373088685,
+ "grad_norm": 0.24375031888484955,
+ "learning_rate": 0.0006,
+ "loss": 3.451228141784668,
+ "step": 6148
+ },
+ {
+ "epoch": 85.40541721275666,
+ "grad_norm": 0.2252039909362793,
+ "learning_rate": 0.0006,
+ "loss": 3.4388835430145264,
+ "step": 6149
+ },
+ {
+ "epoch": 85.41939711664482,
+ "grad_norm": 0.23697529733181,
+ "learning_rate": 0.0006,
+ "loss": 3.447420597076416,
+ "step": 6150
+ },
+ {
+ "epoch": 85.43337702053299,
+ "grad_norm": 0.2558874189853668,
+ "learning_rate": 0.0006,
+ "loss": 3.4357810020446777,
+ "step": 6151
+ },
+ {
+ "epoch": 85.44735692442114,
+ "grad_norm": 0.27266883850097656,
+ "learning_rate": 0.0006,
+ "loss": 3.4142231941223145,
+ "step": 6152
+ },
+ {
+ "epoch": 85.4613368283093,
+ "grad_norm": 0.25111037492752075,
+ "learning_rate": 0.0006,
+ "loss": 3.444758892059326,
+ "step": 6153
+ },
+ {
+ "epoch": 85.47531673219747,
+ "grad_norm": 0.23968860507011414,
+ "learning_rate": 0.0006,
+ "loss": 3.4785890579223633,
+ "step": 6154
+ },
+ {
+ "epoch": 85.48929663608563,
+ "grad_norm": 0.25013360381126404,
+ "learning_rate": 0.0006,
+ "loss": 3.4348931312561035,
+ "step": 6155
+ },
+ {
+ "epoch": 85.50327653997378,
+ "grad_norm": 0.2417520433664322,
+ "learning_rate": 0.0006,
+ "loss": 3.468465805053711,
+ "step": 6156
+ },
+ {
+ "epoch": 85.51725644386195,
+ "grad_norm": 0.25971105694770813,
+ "learning_rate": 0.0006,
+ "loss": 3.45487117767334,
+ "step": 6157
+ },
+ {
+ "epoch": 85.53123634775011,
+ "grad_norm": 0.2513342797756195,
+ "learning_rate": 0.0006,
+ "loss": 3.4282164573669434,
+ "step": 6158
+ },
+ {
+ "epoch": 85.54521625163827,
+ "grad_norm": 0.26253822445869446,
+ "learning_rate": 0.0006,
+ "loss": 3.448113441467285,
+ "step": 6159
+ },
+ {
+ "epoch": 85.55919615552644,
+ "grad_norm": 0.2234651893377304,
+ "learning_rate": 0.0006,
+ "loss": 3.449909210205078,
+ "step": 6160
+ },
+ {
+ "epoch": 85.57317605941459,
+ "grad_norm": 0.2503814995288849,
+ "learning_rate": 0.0006,
+ "loss": 3.450794219970703,
+ "step": 6161
+ },
+ {
+ "epoch": 85.58715596330275,
+ "grad_norm": 0.3087758719921112,
+ "learning_rate": 0.0006,
+ "loss": 3.447343349456787,
+ "step": 6162
+ },
+ {
+ "epoch": 85.60113586719092,
+ "grad_norm": 0.3024158179759979,
+ "learning_rate": 0.0006,
+ "loss": 3.463745594024658,
+ "step": 6163
+ },
+ {
+ "epoch": 85.61511577107908,
+ "grad_norm": 0.2416113317012787,
+ "learning_rate": 0.0006,
+ "loss": 3.4399218559265137,
+ "step": 6164
+ },
+ {
+ "epoch": 85.62909567496723,
+ "grad_norm": 0.24341659247875214,
+ "learning_rate": 0.0006,
+ "loss": 3.434213399887085,
+ "step": 6165
+ },
+ {
+ "epoch": 85.6430755788554,
+ "grad_norm": 0.26014256477355957,
+ "learning_rate": 0.0006,
+ "loss": 3.472182273864746,
+ "step": 6166
+ },
+ {
+ "epoch": 85.65705548274356,
+ "grad_norm": 0.23963001370429993,
+ "learning_rate": 0.0006,
+ "loss": 3.469517230987549,
+ "step": 6167
+ },
+ {
+ "epoch": 85.67103538663171,
+ "grad_norm": 0.22674021124839783,
+ "learning_rate": 0.0006,
+ "loss": 3.479959011077881,
+ "step": 6168
+ },
+ {
+ "epoch": 85.68501529051987,
+ "grad_norm": 0.20710913836956024,
+ "learning_rate": 0.0006,
+ "loss": 3.480604887008667,
+ "step": 6169
+ },
+ {
+ "epoch": 85.69899519440804,
+ "grad_norm": 0.21589986979961395,
+ "learning_rate": 0.0006,
+ "loss": 3.469245672225952,
+ "step": 6170
+ },
+ {
+ "epoch": 85.7129750982962,
+ "grad_norm": 0.23213276267051697,
+ "learning_rate": 0.0006,
+ "loss": 3.4860196113586426,
+ "step": 6171
+ },
+ {
+ "epoch": 85.72695500218435,
+ "grad_norm": 0.2420436143875122,
+ "learning_rate": 0.0006,
+ "loss": 3.4592981338500977,
+ "step": 6172
+ },
+ {
+ "epoch": 85.74093490607252,
+ "grad_norm": 0.238332599401474,
+ "learning_rate": 0.0006,
+ "loss": 3.4611167907714844,
+ "step": 6173
+ },
+ {
+ "epoch": 85.75491480996068,
+ "grad_norm": 0.24084614217281342,
+ "learning_rate": 0.0006,
+ "loss": 3.453734874725342,
+ "step": 6174
+ },
+ {
+ "epoch": 85.76889471384884,
+ "grad_norm": 0.24251829087734222,
+ "learning_rate": 0.0006,
+ "loss": 3.4667110443115234,
+ "step": 6175
+ },
+ {
+ "epoch": 85.78287461773701,
+ "grad_norm": 0.2444705069065094,
+ "learning_rate": 0.0006,
+ "loss": 3.4690022468566895,
+ "step": 6176
+ },
+ {
+ "epoch": 85.79685452162516,
+ "grad_norm": 0.2430824637413025,
+ "learning_rate": 0.0006,
+ "loss": 3.4224982261657715,
+ "step": 6177
+ },
+ {
+ "epoch": 85.81083442551332,
+ "grad_norm": 0.2261204868555069,
+ "learning_rate": 0.0006,
+ "loss": 3.438565731048584,
+ "step": 6178
+ },
+ {
+ "epoch": 85.82481432940149,
+ "grad_norm": 0.24399994313716888,
+ "learning_rate": 0.0006,
+ "loss": 3.4490773677825928,
+ "step": 6179
+ },
+ {
+ "epoch": 85.83879423328965,
+ "grad_norm": 0.2316661775112152,
+ "learning_rate": 0.0006,
+ "loss": 3.4330191612243652,
+ "step": 6180
+ },
+ {
+ "epoch": 85.8527741371778,
+ "grad_norm": 0.2188100963830948,
+ "learning_rate": 0.0006,
+ "loss": 3.4233832359313965,
+ "step": 6181
+ },
+ {
+ "epoch": 85.86675404106597,
+ "grad_norm": 0.24287547171115875,
+ "learning_rate": 0.0006,
+ "loss": 3.48030948638916,
+ "step": 6182
+ },
+ {
+ "epoch": 85.88073394495413,
+ "grad_norm": 0.24130523204803467,
+ "learning_rate": 0.0006,
+ "loss": 3.4757492542266846,
+ "step": 6183
+ },
+ {
+ "epoch": 85.89471384884229,
+ "grad_norm": 0.2325134128332138,
+ "learning_rate": 0.0006,
+ "loss": 3.4519848823547363,
+ "step": 6184
+ },
+ {
+ "epoch": 85.90869375273044,
+ "grad_norm": 0.23389047384262085,
+ "learning_rate": 0.0006,
+ "loss": 3.450676679611206,
+ "step": 6185
+ },
+ {
+ "epoch": 85.92267365661861,
+ "grad_norm": 0.2409949004650116,
+ "learning_rate": 0.0006,
+ "loss": 3.466392993927002,
+ "step": 6186
+ },
+ {
+ "epoch": 85.93665356050677,
+ "grad_norm": 0.2111821174621582,
+ "learning_rate": 0.0006,
+ "loss": 3.4553070068359375,
+ "step": 6187
+ },
+ {
+ "epoch": 85.95063346439493,
+ "grad_norm": 0.22436438500881195,
+ "learning_rate": 0.0006,
+ "loss": 3.445744752883911,
+ "step": 6188
+ },
+ {
+ "epoch": 85.9646133682831,
+ "grad_norm": 0.26781001687049866,
+ "learning_rate": 0.0006,
+ "loss": 3.482301712036133,
+ "step": 6189
+ },
+ {
+ "epoch": 85.97859327217125,
+ "grad_norm": 0.2733628749847412,
+ "learning_rate": 0.0006,
+ "loss": 3.4652910232543945,
+ "step": 6190
+ },
+ {
+ "epoch": 85.99257317605941,
+ "grad_norm": 0.25800710916519165,
+ "learning_rate": 0.0006,
+ "loss": 3.4839513301849365,
+ "step": 6191
+ },
+ {
+ "epoch": 86.0,
+ "grad_norm": 0.26130056381225586,
+ "learning_rate": 0.0006,
+ "loss": 3.4895389080047607,
+ "step": 6192
+ },
+ {
+ "epoch": 86.0,
+ "eval_loss": 4.000945568084717,
+ "eval_runtime": 46.0157,
+ "eval_samples_per_second": 53.069,
+ "eval_steps_per_second": 3.325,
+ "step": 6192
+ },
+ {
+ "epoch": 86.01397990388816,
+ "grad_norm": 0.23707960546016693,
+ "learning_rate": 0.0006,
+ "loss": 3.4757728576660156,
+ "step": 6193
+ },
+ {
+ "epoch": 86.02795980777633,
+ "grad_norm": 0.2764144241809845,
+ "learning_rate": 0.0006,
+ "loss": 3.42104434967041,
+ "step": 6194
+ },
+ {
+ "epoch": 86.04193971166448,
+ "grad_norm": 0.35273146629333496,
+ "learning_rate": 0.0006,
+ "loss": 3.4807112216949463,
+ "step": 6195
+ },
+ {
+ "epoch": 86.05591961555264,
+ "grad_norm": 0.3258572220802307,
+ "learning_rate": 0.0006,
+ "loss": 3.403010368347168,
+ "step": 6196
+ },
+ {
+ "epoch": 86.06989951944081,
+ "grad_norm": 0.24783624708652496,
+ "learning_rate": 0.0006,
+ "loss": 3.4262008666992188,
+ "step": 6197
+ },
+ {
+ "epoch": 86.08387942332897,
+ "grad_norm": 0.2660251259803772,
+ "learning_rate": 0.0006,
+ "loss": 3.4516983032226562,
+ "step": 6198
+ },
+ {
+ "epoch": 86.09785932721712,
+ "grad_norm": 0.3270852863788605,
+ "learning_rate": 0.0006,
+ "loss": 3.389641761779785,
+ "step": 6199
+ },
+ {
+ "epoch": 86.1118392311053,
+ "grad_norm": 0.2954437732696533,
+ "learning_rate": 0.0006,
+ "loss": 3.4136974811553955,
+ "step": 6200
+ },
+ {
+ "epoch": 86.12581913499345,
+ "grad_norm": 0.2529906630516052,
+ "learning_rate": 0.0006,
+ "loss": 3.460862636566162,
+ "step": 6201
+ },
+ {
+ "epoch": 86.1397990388816,
+ "grad_norm": 0.26711413264274597,
+ "learning_rate": 0.0006,
+ "loss": 3.4429545402526855,
+ "step": 6202
+ },
+ {
+ "epoch": 86.15377894276976,
+ "grad_norm": 0.2965209484100342,
+ "learning_rate": 0.0006,
+ "loss": 3.4389548301696777,
+ "step": 6203
+ },
+ {
+ "epoch": 86.16775884665793,
+ "grad_norm": 0.22617623209953308,
+ "learning_rate": 0.0006,
+ "loss": 3.4105193614959717,
+ "step": 6204
+ },
+ {
+ "epoch": 86.18173875054609,
+ "grad_norm": 0.3065163791179657,
+ "learning_rate": 0.0006,
+ "loss": 3.4296300411224365,
+ "step": 6205
+ },
+ {
+ "epoch": 86.19571865443424,
+ "grad_norm": 0.3704215884208679,
+ "learning_rate": 0.0006,
+ "loss": 3.4289116859436035,
+ "step": 6206
+ },
+ {
+ "epoch": 86.20969855832242,
+ "grad_norm": 0.31153222918510437,
+ "learning_rate": 0.0006,
+ "loss": 3.4390859603881836,
+ "step": 6207
+ },
+ {
+ "epoch": 86.22367846221057,
+ "grad_norm": 0.22702480852603912,
+ "learning_rate": 0.0006,
+ "loss": 3.383817672729492,
+ "step": 6208
+ },
+ {
+ "epoch": 86.23765836609873,
+ "grad_norm": 0.28542056679725647,
+ "learning_rate": 0.0006,
+ "loss": 3.4279141426086426,
+ "step": 6209
+ },
+ {
+ "epoch": 86.2516382699869,
+ "grad_norm": 0.3165401816368103,
+ "learning_rate": 0.0006,
+ "loss": 3.4489288330078125,
+ "step": 6210
+ },
+ {
+ "epoch": 86.26561817387505,
+ "grad_norm": 0.2535671293735504,
+ "learning_rate": 0.0006,
+ "loss": 3.4294838905334473,
+ "step": 6211
+ },
+ {
+ "epoch": 86.27959807776321,
+ "grad_norm": 0.22173726558685303,
+ "learning_rate": 0.0006,
+ "loss": 3.426486015319824,
+ "step": 6212
+ },
+ {
+ "epoch": 86.29357798165138,
+ "grad_norm": 0.2316059023141861,
+ "learning_rate": 0.0006,
+ "loss": 3.4588875770568848,
+ "step": 6213
+ },
+ {
+ "epoch": 86.30755788553954,
+ "grad_norm": 0.27897709608078003,
+ "learning_rate": 0.0006,
+ "loss": 3.4686155319213867,
+ "step": 6214
+ },
+ {
+ "epoch": 86.3215377894277,
+ "grad_norm": 0.25086233019828796,
+ "learning_rate": 0.0006,
+ "loss": 3.446758270263672,
+ "step": 6215
+ },
+ {
+ "epoch": 86.33551769331586,
+ "grad_norm": 0.23055854439735413,
+ "learning_rate": 0.0006,
+ "loss": 3.4350295066833496,
+ "step": 6216
+ },
+ {
+ "epoch": 86.34949759720402,
+ "grad_norm": 0.23594850301742554,
+ "learning_rate": 0.0006,
+ "loss": 3.4460220336914062,
+ "step": 6217
+ },
+ {
+ "epoch": 86.36347750109218,
+ "grad_norm": 0.23999659717082977,
+ "learning_rate": 0.0006,
+ "loss": 3.453679084777832,
+ "step": 6218
+ },
+ {
+ "epoch": 86.37745740498035,
+ "grad_norm": 0.22812359035015106,
+ "learning_rate": 0.0006,
+ "loss": 3.4583206176757812,
+ "step": 6219
+ },
+ {
+ "epoch": 86.3914373088685,
+ "grad_norm": 0.2186255306005478,
+ "learning_rate": 0.0006,
+ "loss": 3.4447624683380127,
+ "step": 6220
+ },
+ {
+ "epoch": 86.40541721275666,
+ "grad_norm": 0.2433556765317917,
+ "learning_rate": 0.0006,
+ "loss": 3.4328105449676514,
+ "step": 6221
+ },
+ {
+ "epoch": 86.41939711664482,
+ "grad_norm": 0.2386074811220169,
+ "learning_rate": 0.0006,
+ "loss": 3.4535934925079346,
+ "step": 6222
+ },
+ {
+ "epoch": 86.43337702053299,
+ "grad_norm": 0.20723499357700348,
+ "learning_rate": 0.0006,
+ "loss": 3.450345516204834,
+ "step": 6223
+ },
+ {
+ "epoch": 86.44735692442114,
+ "grad_norm": 0.22816963493824005,
+ "learning_rate": 0.0006,
+ "loss": 3.423295497894287,
+ "step": 6224
+ },
+ {
+ "epoch": 86.4613368283093,
+ "grad_norm": 0.22962307929992676,
+ "learning_rate": 0.0006,
+ "loss": 3.45308256149292,
+ "step": 6225
+ },
+ {
+ "epoch": 86.47531673219747,
+ "grad_norm": 0.2421693354845047,
+ "learning_rate": 0.0006,
+ "loss": 3.426295757293701,
+ "step": 6226
+ },
+ {
+ "epoch": 86.48929663608563,
+ "grad_norm": 0.24205337464809418,
+ "learning_rate": 0.0006,
+ "loss": 3.462637424468994,
+ "step": 6227
+ },
+ {
+ "epoch": 86.50327653997378,
+ "grad_norm": 0.22262844443321228,
+ "learning_rate": 0.0006,
+ "loss": 3.4503636360168457,
+ "step": 6228
+ },
+ {
+ "epoch": 86.51725644386195,
+ "grad_norm": 0.2236059308052063,
+ "learning_rate": 0.0006,
+ "loss": 3.4362423419952393,
+ "step": 6229
+ },
+ {
+ "epoch": 86.53123634775011,
+ "grad_norm": 0.2580125033855438,
+ "learning_rate": 0.0006,
+ "loss": 3.4705324172973633,
+ "step": 6230
+ },
+ {
+ "epoch": 86.54521625163827,
+ "grad_norm": 0.22285981476306915,
+ "learning_rate": 0.0006,
+ "loss": 3.406367301940918,
+ "step": 6231
+ },
+ {
+ "epoch": 86.55919615552644,
+ "grad_norm": 0.2187017947435379,
+ "learning_rate": 0.0006,
+ "loss": 3.471634864807129,
+ "step": 6232
+ },
+ {
+ "epoch": 86.57317605941459,
+ "grad_norm": 0.23384198546409607,
+ "learning_rate": 0.0006,
+ "loss": 3.4251890182495117,
+ "step": 6233
+ },
+ {
+ "epoch": 86.58715596330275,
+ "grad_norm": 0.22788184881210327,
+ "learning_rate": 0.0006,
+ "loss": 3.445756673812866,
+ "step": 6234
+ },
+ {
+ "epoch": 86.60113586719092,
+ "grad_norm": 0.2567905783653259,
+ "learning_rate": 0.0006,
+ "loss": 3.5046191215515137,
+ "step": 6235
+ },
+ {
+ "epoch": 86.61511577107908,
+ "grad_norm": 0.2762927711009979,
+ "learning_rate": 0.0006,
+ "loss": 3.4604568481445312,
+ "step": 6236
+ },
+ {
+ "epoch": 86.62909567496723,
+ "grad_norm": 0.23241275548934937,
+ "learning_rate": 0.0006,
+ "loss": 3.4507508277893066,
+ "step": 6237
+ },
+ {
+ "epoch": 86.6430755788554,
+ "grad_norm": 0.20948687195777893,
+ "learning_rate": 0.0006,
+ "loss": 3.427971601486206,
+ "step": 6238
+ },
+ {
+ "epoch": 86.65705548274356,
+ "grad_norm": 0.22805556654930115,
+ "learning_rate": 0.0006,
+ "loss": 3.430675506591797,
+ "step": 6239
+ },
+ {
+ "epoch": 86.67103538663171,
+ "grad_norm": 0.23048850893974304,
+ "learning_rate": 0.0006,
+ "loss": 3.4266695976257324,
+ "step": 6240
+ },
+ {
+ "epoch": 86.68501529051987,
+ "grad_norm": 0.2140568345785141,
+ "learning_rate": 0.0006,
+ "loss": 3.4591073989868164,
+ "step": 6241
+ },
+ {
+ "epoch": 86.69899519440804,
+ "grad_norm": 0.21846334636211395,
+ "learning_rate": 0.0006,
+ "loss": 3.4366419315338135,
+ "step": 6242
+ },
+ {
+ "epoch": 86.7129750982962,
+ "grad_norm": 0.2556895911693573,
+ "learning_rate": 0.0006,
+ "loss": 3.489287853240967,
+ "step": 6243
+ },
+ {
+ "epoch": 86.72695500218435,
+ "grad_norm": 0.2661151587963104,
+ "learning_rate": 0.0006,
+ "loss": 3.458925485610962,
+ "step": 6244
+ },
+ {
+ "epoch": 86.74093490607252,
+ "grad_norm": 0.25377899408340454,
+ "learning_rate": 0.0006,
+ "loss": 3.467498779296875,
+ "step": 6245
+ },
+ {
+ "epoch": 86.75491480996068,
+ "grad_norm": 0.22298671305179596,
+ "learning_rate": 0.0006,
+ "loss": 3.435739517211914,
+ "step": 6246
+ },
+ {
+ "epoch": 86.76889471384884,
+ "grad_norm": 0.21926400065422058,
+ "learning_rate": 0.0006,
+ "loss": 3.470432996749878,
+ "step": 6247
+ },
+ {
+ "epoch": 86.78287461773701,
+ "grad_norm": 0.25376564264297485,
+ "learning_rate": 0.0006,
+ "loss": 3.485386371612549,
+ "step": 6248
+ },
+ {
+ "epoch": 86.79685452162516,
+ "grad_norm": 0.2282877415418625,
+ "learning_rate": 0.0006,
+ "loss": 3.480099678039551,
+ "step": 6249
+ },
+ {
+ "epoch": 86.81083442551332,
+ "grad_norm": 0.22524423897266388,
+ "learning_rate": 0.0006,
+ "loss": 3.4317450523376465,
+ "step": 6250
+ },
+ {
+ "epoch": 86.82481432940149,
+ "grad_norm": 0.19947095215320587,
+ "learning_rate": 0.0006,
+ "loss": 3.4561359882354736,
+ "step": 6251
+ },
+ {
+ "epoch": 86.83879423328965,
+ "grad_norm": 0.225057914853096,
+ "learning_rate": 0.0006,
+ "loss": 3.4447779655456543,
+ "step": 6252
+ },
+ {
+ "epoch": 86.8527741371778,
+ "grad_norm": 0.23058123886585236,
+ "learning_rate": 0.0006,
+ "loss": 3.4552550315856934,
+ "step": 6253
+ },
+ {
+ "epoch": 86.86675404106597,
+ "grad_norm": 0.22090156376361847,
+ "learning_rate": 0.0006,
+ "loss": 3.462661027908325,
+ "step": 6254
+ },
+ {
+ "epoch": 86.88073394495413,
+ "grad_norm": 0.214723140001297,
+ "learning_rate": 0.0006,
+ "loss": 3.4558322429656982,
+ "step": 6255
+ },
+ {
+ "epoch": 86.89471384884229,
+ "grad_norm": 0.22168223559856415,
+ "learning_rate": 0.0006,
+ "loss": 3.441250801086426,
+ "step": 6256
+ },
+ {
+ "epoch": 86.90869375273044,
+ "grad_norm": 0.21010933816432953,
+ "learning_rate": 0.0006,
+ "loss": 3.4355521202087402,
+ "step": 6257
+ },
+ {
+ "epoch": 86.92267365661861,
+ "grad_norm": 0.21967823803424835,
+ "learning_rate": 0.0006,
+ "loss": 3.4233269691467285,
+ "step": 6258
+ },
+ {
+ "epoch": 86.93665356050677,
+ "grad_norm": 0.22320227324962616,
+ "learning_rate": 0.0006,
+ "loss": 3.4550540447235107,
+ "step": 6259
+ },
+ {
+ "epoch": 86.95063346439493,
+ "grad_norm": 0.22877629101276398,
+ "learning_rate": 0.0006,
+ "loss": 3.46563720703125,
+ "step": 6260
+ },
+ {
+ "epoch": 86.9646133682831,
+ "grad_norm": 0.2401096075773239,
+ "learning_rate": 0.0006,
+ "loss": 3.463639259338379,
+ "step": 6261
+ },
+ {
+ "epoch": 86.97859327217125,
+ "grad_norm": 0.21287918090820312,
+ "learning_rate": 0.0006,
+ "loss": 3.4746999740600586,
+ "step": 6262
+ },
+ {
+ "epoch": 86.99257317605941,
+ "grad_norm": 0.22452335059642792,
+ "learning_rate": 0.0006,
+ "loss": 3.467658281326294,
+ "step": 6263
+ },
+ {
+ "epoch": 87.0,
+ "grad_norm": 0.26455584168434143,
+ "learning_rate": 0.0006,
+ "loss": 3.4675745964050293,
+ "step": 6264
+ },
+ {
+ "epoch": 87.0,
+ "eval_loss": 3.9968631267547607,
+ "eval_runtime": 46.323,
+ "eval_samples_per_second": 52.717,
+ "eval_steps_per_second": 3.303,
+ "step": 6264
+ },
+ {
+ "epoch": 87.01397990388816,
+ "grad_norm": 0.2470027059316635,
+ "learning_rate": 0.0006,
+ "loss": 3.406507730484009,
+ "step": 6265
+ },
+ {
+ "epoch": 87.02795980777633,
+ "grad_norm": 0.2460237443447113,
+ "learning_rate": 0.0006,
+ "loss": 3.411306381225586,
+ "step": 6266
+ },
+ {
+ "epoch": 87.04193971166448,
+ "grad_norm": 0.27289488911628723,
+ "learning_rate": 0.0006,
+ "loss": 3.4275155067443848,
+ "step": 6267
+ },
+ {
+ "epoch": 87.05591961555264,
+ "grad_norm": 0.2657255232334137,
+ "learning_rate": 0.0006,
+ "loss": 3.4513368606567383,
+ "step": 6268
+ },
+ {
+ "epoch": 87.06989951944081,
+ "grad_norm": 0.2561056613922119,
+ "learning_rate": 0.0006,
+ "loss": 3.4209394454956055,
+ "step": 6269
+ },
+ {
+ "epoch": 87.08387942332897,
+ "grad_norm": 0.24750930070877075,
+ "learning_rate": 0.0006,
+ "loss": 3.442840576171875,
+ "step": 6270
+ },
+ {
+ "epoch": 87.09785932721712,
+ "grad_norm": 0.24194562435150146,
+ "learning_rate": 0.0006,
+ "loss": 3.432831287384033,
+ "step": 6271
+ },
+ {
+ "epoch": 87.1118392311053,
+ "grad_norm": 0.24561241269111633,
+ "learning_rate": 0.0006,
+ "loss": 3.41995906829834,
+ "step": 6272
+ },
+ {
+ "epoch": 87.12581913499345,
+ "grad_norm": 0.28488844633102417,
+ "learning_rate": 0.0006,
+ "loss": 3.4203033447265625,
+ "step": 6273
+ },
+ {
+ "epoch": 87.1397990388816,
+ "grad_norm": 0.2719418406486511,
+ "learning_rate": 0.0006,
+ "loss": 3.4112062454223633,
+ "step": 6274
+ },
+ {
+ "epoch": 87.15377894276976,
+ "grad_norm": 0.24953287839889526,
+ "learning_rate": 0.0006,
+ "loss": 3.4096338748931885,
+ "step": 6275
+ },
+ {
+ "epoch": 87.16775884665793,
+ "grad_norm": 0.23657488822937012,
+ "learning_rate": 0.0006,
+ "loss": 3.4253625869750977,
+ "step": 6276
+ },
+ {
+ "epoch": 87.18173875054609,
+ "grad_norm": 0.23536205291748047,
+ "learning_rate": 0.0006,
+ "loss": 3.417539596557617,
+ "step": 6277
+ },
+ {
+ "epoch": 87.19571865443424,
+ "grad_norm": 0.2406543642282486,
+ "learning_rate": 0.0006,
+ "loss": 3.4071755409240723,
+ "step": 6278
+ },
+ {
+ "epoch": 87.20969855832242,
+ "grad_norm": 0.2562157213687897,
+ "learning_rate": 0.0006,
+ "loss": 3.4041831493377686,
+ "step": 6279
+ },
+ {
+ "epoch": 87.22367846221057,
+ "grad_norm": 0.2869356870651245,
+ "learning_rate": 0.0006,
+ "loss": 3.414750576019287,
+ "step": 6280
+ },
+ {
+ "epoch": 87.23765836609873,
+ "grad_norm": 0.27232855558395386,
+ "learning_rate": 0.0006,
+ "loss": 3.407370090484619,
+ "step": 6281
+ },
+ {
+ "epoch": 87.2516382699869,
+ "grad_norm": 0.2774076759815216,
+ "learning_rate": 0.0006,
+ "loss": 3.4218215942382812,
+ "step": 6282
+ },
+ {
+ "epoch": 87.26561817387505,
+ "grad_norm": 0.30042508244514465,
+ "learning_rate": 0.0006,
+ "loss": 3.4334588050842285,
+ "step": 6283
+ },
+ {
+ "epoch": 87.27959807776321,
+ "grad_norm": 0.2553543448448181,
+ "learning_rate": 0.0006,
+ "loss": 3.4333605766296387,
+ "step": 6284
+ },
+ {
+ "epoch": 87.29357798165138,
+ "grad_norm": 0.2525957226753235,
+ "learning_rate": 0.0006,
+ "loss": 3.4196009635925293,
+ "step": 6285
+ },
+ {
+ "epoch": 87.30755788553954,
+ "grad_norm": 0.24260185658931732,
+ "learning_rate": 0.0006,
+ "loss": 3.4140827655792236,
+ "step": 6286
+ },
+ {
+ "epoch": 87.3215377894277,
+ "grad_norm": 0.22283563017845154,
+ "learning_rate": 0.0006,
+ "loss": 3.444605827331543,
+ "step": 6287
+ },
+ {
+ "epoch": 87.33551769331586,
+ "grad_norm": 0.235158771276474,
+ "learning_rate": 0.0006,
+ "loss": 3.431881904602051,
+ "step": 6288
+ },
+ {
+ "epoch": 87.34949759720402,
+ "grad_norm": 0.2347733974456787,
+ "learning_rate": 0.0006,
+ "loss": 3.428152561187744,
+ "step": 6289
+ },
+ {
+ "epoch": 87.36347750109218,
+ "grad_norm": 0.2563766837120056,
+ "learning_rate": 0.0006,
+ "loss": 3.4577133655548096,
+ "step": 6290
+ },
+ {
+ "epoch": 87.37745740498035,
+ "grad_norm": 0.2618260681629181,
+ "learning_rate": 0.0006,
+ "loss": 3.4267096519470215,
+ "step": 6291
+ },
+ {
+ "epoch": 87.3914373088685,
+ "grad_norm": 0.25793492794036865,
+ "learning_rate": 0.0006,
+ "loss": 3.4507100582122803,
+ "step": 6292
+ },
+ {
+ "epoch": 87.40541721275666,
+ "grad_norm": 0.25354278087615967,
+ "learning_rate": 0.0006,
+ "loss": 3.4111928939819336,
+ "step": 6293
+ },
+ {
+ "epoch": 87.41939711664482,
+ "grad_norm": 0.2546374201774597,
+ "learning_rate": 0.0006,
+ "loss": 3.4853005409240723,
+ "step": 6294
+ },
+ {
+ "epoch": 87.43337702053299,
+ "grad_norm": 0.22910001873970032,
+ "learning_rate": 0.0006,
+ "loss": 3.46594500541687,
+ "step": 6295
+ },
+ {
+ "epoch": 87.44735692442114,
+ "grad_norm": 0.26341190934181213,
+ "learning_rate": 0.0006,
+ "loss": 3.448117733001709,
+ "step": 6296
+ },
+ {
+ "epoch": 87.4613368283093,
+ "grad_norm": 0.24096941947937012,
+ "learning_rate": 0.0006,
+ "loss": 3.4500057697296143,
+ "step": 6297
+ },
+ {
+ "epoch": 87.47531673219747,
+ "grad_norm": 0.22930867969989777,
+ "learning_rate": 0.0006,
+ "loss": 3.4056637287139893,
+ "step": 6298
+ },
+ {
+ "epoch": 87.48929663608563,
+ "grad_norm": 0.24585163593292236,
+ "learning_rate": 0.0006,
+ "loss": 3.443779945373535,
+ "step": 6299
+ },
+ {
+ "epoch": 87.50327653997378,
+ "grad_norm": 0.2679557204246521,
+ "learning_rate": 0.0006,
+ "loss": 3.4453015327453613,
+ "step": 6300
+ },
+ {
+ "epoch": 87.51725644386195,
+ "grad_norm": 0.2750099301338196,
+ "learning_rate": 0.0006,
+ "loss": 3.4492931365966797,
+ "step": 6301
+ },
+ {
+ "epoch": 87.53123634775011,
+ "grad_norm": 0.2397976517677307,
+ "learning_rate": 0.0006,
+ "loss": 3.4672493934631348,
+ "step": 6302
+ },
+ {
+ "epoch": 87.54521625163827,
+ "grad_norm": 0.2328847199678421,
+ "learning_rate": 0.0006,
+ "loss": 3.4675941467285156,
+ "step": 6303
+ },
+ {
+ "epoch": 87.55919615552644,
+ "grad_norm": 0.2174302190542221,
+ "learning_rate": 0.0006,
+ "loss": 3.4673750400543213,
+ "step": 6304
+ },
+ {
+ "epoch": 87.57317605941459,
+ "grad_norm": 0.2191520780324936,
+ "learning_rate": 0.0006,
+ "loss": 3.447082042694092,
+ "step": 6305
+ },
+ {
+ "epoch": 87.58715596330275,
+ "grad_norm": 0.221266508102417,
+ "learning_rate": 0.0006,
+ "loss": 3.4626669883728027,
+ "step": 6306
+ },
+ {
+ "epoch": 87.60113586719092,
+ "grad_norm": 0.23890595138072968,
+ "learning_rate": 0.0006,
+ "loss": 3.4423880577087402,
+ "step": 6307
+ },
+ {
+ "epoch": 87.61511577107908,
+ "grad_norm": 0.2518463730812073,
+ "learning_rate": 0.0006,
+ "loss": 3.444969415664673,
+ "step": 6308
+ },
+ {
+ "epoch": 87.62909567496723,
+ "grad_norm": 0.26311877369880676,
+ "learning_rate": 0.0006,
+ "loss": 3.431830406188965,
+ "step": 6309
+ },
+ {
+ "epoch": 87.6430755788554,
+ "grad_norm": 0.22257472574710846,
+ "learning_rate": 0.0006,
+ "loss": 3.4477615356445312,
+ "step": 6310
+ },
+ {
+ "epoch": 87.65705548274356,
+ "grad_norm": 0.20058895647525787,
+ "learning_rate": 0.0006,
+ "loss": 3.4231035709381104,
+ "step": 6311
+ },
+ {
+ "epoch": 87.67103538663171,
+ "grad_norm": 0.25480031967163086,
+ "learning_rate": 0.0006,
+ "loss": 3.455605983734131,
+ "step": 6312
+ },
+ {
+ "epoch": 87.68501529051987,
+ "grad_norm": 0.281009703874588,
+ "learning_rate": 0.0006,
+ "loss": 3.4484899044036865,
+ "step": 6313
+ },
+ {
+ "epoch": 87.69899519440804,
+ "grad_norm": 0.2769845724105835,
+ "learning_rate": 0.0006,
+ "loss": 3.4509403705596924,
+ "step": 6314
+ },
+ {
+ "epoch": 87.7129750982962,
+ "grad_norm": 0.25785791873931885,
+ "learning_rate": 0.0006,
+ "loss": 3.4717955589294434,
+ "step": 6315
+ },
+ {
+ "epoch": 87.72695500218435,
+ "grad_norm": 0.2630847990512848,
+ "learning_rate": 0.0006,
+ "loss": 3.489973545074463,
+ "step": 6316
+ },
+ {
+ "epoch": 87.74093490607252,
+ "grad_norm": 0.2828741669654846,
+ "learning_rate": 0.0006,
+ "loss": 3.4274351596832275,
+ "step": 6317
+ },
+ {
+ "epoch": 87.75491480996068,
+ "grad_norm": 0.26448315382003784,
+ "learning_rate": 0.0006,
+ "loss": 3.439527988433838,
+ "step": 6318
+ },
+ {
+ "epoch": 87.76889471384884,
+ "grad_norm": 0.2555212080478668,
+ "learning_rate": 0.0006,
+ "loss": 3.476854085922241,
+ "step": 6319
+ },
+ {
+ "epoch": 87.78287461773701,
+ "grad_norm": 0.2586565911769867,
+ "learning_rate": 0.0006,
+ "loss": 3.4791836738586426,
+ "step": 6320
+ },
+ {
+ "epoch": 87.79685452162516,
+ "grad_norm": 0.24381688237190247,
+ "learning_rate": 0.0006,
+ "loss": 3.4730138778686523,
+ "step": 6321
+ },
+ {
+ "epoch": 87.81083442551332,
+ "grad_norm": 0.24554914236068726,
+ "learning_rate": 0.0006,
+ "loss": 3.466851234436035,
+ "step": 6322
+ },
+ {
+ "epoch": 87.82481432940149,
+ "grad_norm": 0.2559501826763153,
+ "learning_rate": 0.0006,
+ "loss": 3.4899802207946777,
+ "step": 6323
+ },
+ {
+ "epoch": 87.83879423328965,
+ "grad_norm": 0.24709442257881165,
+ "learning_rate": 0.0006,
+ "loss": 3.462717294692993,
+ "step": 6324
+ },
+ {
+ "epoch": 87.8527741371778,
+ "grad_norm": 0.238383486866951,
+ "learning_rate": 0.0006,
+ "loss": 3.4490647315979004,
+ "step": 6325
+ },
+ {
+ "epoch": 87.86675404106597,
+ "grad_norm": 0.25038403272628784,
+ "learning_rate": 0.0006,
+ "loss": 3.4700093269348145,
+ "step": 6326
+ },
+ {
+ "epoch": 87.88073394495413,
+ "grad_norm": 0.25541093945503235,
+ "learning_rate": 0.0006,
+ "loss": 3.4632275104522705,
+ "step": 6327
+ },
+ {
+ "epoch": 87.89471384884229,
+ "grad_norm": 0.27114391326904297,
+ "learning_rate": 0.0006,
+ "loss": 3.4618139266967773,
+ "step": 6328
+ },
+ {
+ "epoch": 87.90869375273044,
+ "grad_norm": 0.23148465156555176,
+ "learning_rate": 0.0006,
+ "loss": 3.438594341278076,
+ "step": 6329
+ },
+ {
+ "epoch": 87.92267365661861,
+ "grad_norm": 0.2270335704088211,
+ "learning_rate": 0.0006,
+ "loss": 3.4554107189178467,
+ "step": 6330
+ },
+ {
+ "epoch": 87.93665356050677,
+ "grad_norm": 0.2097586989402771,
+ "learning_rate": 0.0006,
+ "loss": 3.4348864555358887,
+ "step": 6331
+ },
+ {
+ "epoch": 87.95063346439493,
+ "grad_norm": 0.2221650779247284,
+ "learning_rate": 0.0006,
+ "loss": 3.449270486831665,
+ "step": 6332
+ },
+ {
+ "epoch": 87.9646133682831,
+ "grad_norm": 0.2341674566268921,
+ "learning_rate": 0.0006,
+ "loss": 3.452688694000244,
+ "step": 6333
+ },
+ {
+ "epoch": 87.97859327217125,
+ "grad_norm": 0.23425638675689697,
+ "learning_rate": 0.0006,
+ "loss": 3.478743076324463,
+ "step": 6334
+ },
+ {
+ "epoch": 87.99257317605941,
+ "grad_norm": 0.22582922875881195,
+ "learning_rate": 0.0006,
+ "loss": 3.4957661628723145,
+ "step": 6335
+ },
+ {
+ "epoch": 88.0,
+ "grad_norm": 0.25822433829307556,
+ "learning_rate": 0.0006,
+ "loss": 3.4841136932373047,
+ "step": 6336
+ },
+ {
+ "epoch": 88.0,
+ "eval_loss": 3.996260404586792,
+ "eval_runtime": 46.5497,
+ "eval_samples_per_second": 52.46,
+ "eval_steps_per_second": 3.287,
+ "step": 6336
+ },
+ {
+ "epoch": 88.01397990388816,
+ "grad_norm": 0.25544533133506775,
+ "learning_rate": 0.0006,
+ "loss": 3.398768424987793,
+ "step": 6337
+ },
+ {
+ "epoch": 88.02795980777633,
+ "grad_norm": 0.31270086765289307,
+ "learning_rate": 0.0006,
+ "loss": 3.4350461959838867,
+ "step": 6338
+ },
+ {
+ "epoch": 88.04193971166448,
+ "grad_norm": 0.31236228346824646,
+ "learning_rate": 0.0006,
+ "loss": 3.4069981575012207,
+ "step": 6339
+ },
+ {
+ "epoch": 88.05591961555264,
+ "grad_norm": 0.28024131059646606,
+ "learning_rate": 0.0006,
+ "loss": 3.421595811843872,
+ "step": 6340
+ },
+ {
+ "epoch": 88.06989951944081,
+ "grad_norm": 0.2668711245059967,
+ "learning_rate": 0.0006,
+ "loss": 3.3885085582733154,
+ "step": 6341
+ },
+ {
+ "epoch": 88.08387942332897,
+ "grad_norm": 0.3261690139770508,
+ "learning_rate": 0.0006,
+ "loss": 3.4128613471984863,
+ "step": 6342
+ },
+ {
+ "epoch": 88.09785932721712,
+ "grad_norm": 0.35211819410324097,
+ "learning_rate": 0.0006,
+ "loss": 3.4122352600097656,
+ "step": 6343
+ },
+ {
+ "epoch": 88.1118392311053,
+ "grad_norm": 0.30320537090301514,
+ "learning_rate": 0.0006,
+ "loss": 3.4083406925201416,
+ "step": 6344
+ },
+ {
+ "epoch": 88.12581913499345,
+ "grad_norm": 0.2462662160396576,
+ "learning_rate": 0.0006,
+ "loss": 3.458763837814331,
+ "step": 6345
+ },
+ {
+ "epoch": 88.1397990388816,
+ "grad_norm": 0.24706120789051056,
+ "learning_rate": 0.0006,
+ "loss": 3.3685402870178223,
+ "step": 6346
+ },
+ {
+ "epoch": 88.15377894276976,
+ "grad_norm": 0.25646236538887024,
+ "learning_rate": 0.0006,
+ "loss": 3.453892230987549,
+ "step": 6347
+ },
+ {
+ "epoch": 88.16775884665793,
+ "grad_norm": 0.23423898220062256,
+ "learning_rate": 0.0006,
+ "loss": 3.4273645877838135,
+ "step": 6348
+ },
+ {
+ "epoch": 88.18173875054609,
+ "grad_norm": 0.22806601226329803,
+ "learning_rate": 0.0006,
+ "loss": 3.3917994499206543,
+ "step": 6349
+ },
+ {
+ "epoch": 88.19571865443424,
+ "grad_norm": 0.2243315428495407,
+ "learning_rate": 0.0006,
+ "loss": 3.4123449325561523,
+ "step": 6350
+ },
+ {
+ "epoch": 88.20969855832242,
+ "grad_norm": 0.2315295934677124,
+ "learning_rate": 0.0006,
+ "loss": 3.4313998222351074,
+ "step": 6351
+ },
+ {
+ "epoch": 88.22367846221057,
+ "grad_norm": 0.2538231909275055,
+ "learning_rate": 0.0006,
+ "loss": 3.473200798034668,
+ "step": 6352
+ },
+ {
+ "epoch": 88.23765836609873,
+ "grad_norm": 0.24312785267829895,
+ "learning_rate": 0.0006,
+ "loss": 3.414944887161255,
+ "step": 6353
+ },
+ {
+ "epoch": 88.2516382699869,
+ "grad_norm": 0.2515439987182617,
+ "learning_rate": 0.0006,
+ "loss": 3.4162838459014893,
+ "step": 6354
+ },
+ {
+ "epoch": 88.26561817387505,
+ "grad_norm": 0.24469073116779327,
+ "learning_rate": 0.0006,
+ "loss": 3.444321393966675,
+ "step": 6355
+ },
+ {
+ "epoch": 88.27959807776321,
+ "grad_norm": 0.22281599044799805,
+ "learning_rate": 0.0006,
+ "loss": 3.4098334312438965,
+ "step": 6356
+ },
+ {
+ "epoch": 88.29357798165138,
+ "grad_norm": 0.24646595120429993,
+ "learning_rate": 0.0006,
+ "loss": 3.464479446411133,
+ "step": 6357
+ },
+ {
+ "epoch": 88.30755788553954,
+ "grad_norm": 0.22729575634002686,
+ "learning_rate": 0.0006,
+ "loss": 3.423619031906128,
+ "step": 6358
+ },
+ {
+ "epoch": 88.3215377894277,
+ "grad_norm": 0.2455425262451172,
+ "learning_rate": 0.0006,
+ "loss": 3.4085960388183594,
+ "step": 6359
+ },
+ {
+ "epoch": 88.33551769331586,
+ "grad_norm": 0.26134350895881653,
+ "learning_rate": 0.0006,
+ "loss": 3.3751399517059326,
+ "step": 6360
+ },
+ {
+ "epoch": 88.34949759720402,
+ "grad_norm": 0.2470584213733673,
+ "learning_rate": 0.0006,
+ "loss": 3.474815845489502,
+ "step": 6361
+ },
+ {
+ "epoch": 88.36347750109218,
+ "grad_norm": 0.24315427243709564,
+ "learning_rate": 0.0006,
+ "loss": 3.444636344909668,
+ "step": 6362
+ },
+ {
+ "epoch": 88.37745740498035,
+ "grad_norm": 0.25277286767959595,
+ "learning_rate": 0.0006,
+ "loss": 3.4518373012542725,
+ "step": 6363
+ },
+ {
+ "epoch": 88.3914373088685,
+ "grad_norm": 0.26929786801338196,
+ "learning_rate": 0.0006,
+ "loss": 3.446774482727051,
+ "step": 6364
+ },
+ {
+ "epoch": 88.40541721275666,
+ "grad_norm": 0.23554161190986633,
+ "learning_rate": 0.0006,
+ "loss": 3.385951042175293,
+ "step": 6365
+ },
+ {
+ "epoch": 88.41939711664482,
+ "grad_norm": 0.22048695385456085,
+ "learning_rate": 0.0006,
+ "loss": 3.45289945602417,
+ "step": 6366
+ },
+ {
+ "epoch": 88.43337702053299,
+ "grad_norm": 0.2575032114982605,
+ "learning_rate": 0.0006,
+ "loss": 3.4713096618652344,
+ "step": 6367
+ },
+ {
+ "epoch": 88.44735692442114,
+ "grad_norm": 0.2453707456588745,
+ "learning_rate": 0.0006,
+ "loss": 3.4257078170776367,
+ "step": 6368
+ },
+ {
+ "epoch": 88.4613368283093,
+ "grad_norm": 0.2514393627643585,
+ "learning_rate": 0.0006,
+ "loss": 3.4188473224639893,
+ "step": 6369
+ },
+ {
+ "epoch": 88.47531673219747,
+ "grad_norm": 0.23554356396198273,
+ "learning_rate": 0.0006,
+ "loss": 3.443974494934082,
+ "step": 6370
+ },
+ {
+ "epoch": 88.48929663608563,
+ "grad_norm": 0.22241100668907166,
+ "learning_rate": 0.0006,
+ "loss": 3.4610610008239746,
+ "step": 6371
+ },
+ {
+ "epoch": 88.50327653997378,
+ "grad_norm": 0.25195151567459106,
+ "learning_rate": 0.0006,
+ "loss": 3.4192237854003906,
+ "step": 6372
+ },
+ {
+ "epoch": 88.51725644386195,
+ "grad_norm": 0.25323209166526794,
+ "learning_rate": 0.0006,
+ "loss": 3.449105739593506,
+ "step": 6373
+ },
+ {
+ "epoch": 88.53123634775011,
+ "grad_norm": 0.23256665468215942,
+ "learning_rate": 0.0006,
+ "loss": 3.454131603240967,
+ "step": 6374
+ },
+ {
+ "epoch": 88.54521625163827,
+ "grad_norm": 0.22301720082759857,
+ "learning_rate": 0.0006,
+ "loss": 3.452838182449341,
+ "step": 6375
+ },
+ {
+ "epoch": 88.55919615552644,
+ "grad_norm": 0.24171237647533417,
+ "learning_rate": 0.0006,
+ "loss": 3.4515328407287598,
+ "step": 6376
+ },
+ {
+ "epoch": 88.57317605941459,
+ "grad_norm": 0.22223307192325592,
+ "learning_rate": 0.0006,
+ "loss": 3.447723388671875,
+ "step": 6377
+ },
+ {
+ "epoch": 88.58715596330275,
+ "grad_norm": 0.22373506426811218,
+ "learning_rate": 0.0006,
+ "loss": 3.4628777503967285,
+ "step": 6378
+ },
+ {
+ "epoch": 88.60113586719092,
+ "grad_norm": 0.2627395987510681,
+ "learning_rate": 0.0006,
+ "loss": 3.456012010574341,
+ "step": 6379
+ },
+ {
+ "epoch": 88.61511577107908,
+ "grad_norm": 0.2567562162876129,
+ "learning_rate": 0.0006,
+ "loss": 3.436379909515381,
+ "step": 6380
+ },
+ {
+ "epoch": 88.62909567496723,
+ "grad_norm": 0.2223784178495407,
+ "learning_rate": 0.0006,
+ "loss": 3.437389373779297,
+ "step": 6381
+ },
+ {
+ "epoch": 88.6430755788554,
+ "grad_norm": 0.2634836733341217,
+ "learning_rate": 0.0006,
+ "loss": 3.447709798812866,
+ "step": 6382
+ },
+ {
+ "epoch": 88.65705548274356,
+ "grad_norm": 0.2559404671192169,
+ "learning_rate": 0.0006,
+ "loss": 3.502635955810547,
+ "step": 6383
+ },
+ {
+ "epoch": 88.67103538663171,
+ "grad_norm": 0.2341974973678589,
+ "learning_rate": 0.0006,
+ "loss": 3.422739028930664,
+ "step": 6384
+ },
+ {
+ "epoch": 88.68501529051987,
+ "grad_norm": 0.23838907480239868,
+ "learning_rate": 0.0006,
+ "loss": 3.4362587928771973,
+ "step": 6385
+ },
+ {
+ "epoch": 88.69899519440804,
+ "grad_norm": 0.25170615315437317,
+ "learning_rate": 0.0006,
+ "loss": 3.4428529739379883,
+ "step": 6386
+ },
+ {
+ "epoch": 88.7129750982962,
+ "grad_norm": 0.29359322786331177,
+ "learning_rate": 0.0006,
+ "loss": 3.457087993621826,
+ "step": 6387
+ },
+ {
+ "epoch": 88.72695500218435,
+ "grad_norm": 0.2596781849861145,
+ "learning_rate": 0.0006,
+ "loss": 3.474092483520508,
+ "step": 6388
+ },
+ {
+ "epoch": 88.74093490607252,
+ "grad_norm": 0.2290738970041275,
+ "learning_rate": 0.0006,
+ "loss": 3.4652552604675293,
+ "step": 6389
+ },
+ {
+ "epoch": 88.75491480996068,
+ "grad_norm": 0.2197772115468979,
+ "learning_rate": 0.0006,
+ "loss": 3.4849348068237305,
+ "step": 6390
+ },
+ {
+ "epoch": 88.76889471384884,
+ "grad_norm": 0.2582140266895294,
+ "learning_rate": 0.0006,
+ "loss": 3.451672315597534,
+ "step": 6391
+ },
+ {
+ "epoch": 88.78287461773701,
+ "grad_norm": 0.28999677300453186,
+ "learning_rate": 0.0006,
+ "loss": 3.4680047035217285,
+ "step": 6392
+ },
+ {
+ "epoch": 88.79685452162516,
+ "grad_norm": 0.27091309428215027,
+ "learning_rate": 0.0006,
+ "loss": 3.4288430213928223,
+ "step": 6393
+ },
+ {
+ "epoch": 88.81083442551332,
+ "grad_norm": 0.22377929091453552,
+ "learning_rate": 0.0006,
+ "loss": 3.429720401763916,
+ "step": 6394
+ },
+ {
+ "epoch": 88.82481432940149,
+ "grad_norm": 0.25913205742836,
+ "learning_rate": 0.0006,
+ "loss": 3.4717307090759277,
+ "step": 6395
+ },
+ {
+ "epoch": 88.83879423328965,
+ "grad_norm": 0.2942664623260498,
+ "learning_rate": 0.0006,
+ "loss": 3.459348201751709,
+ "step": 6396
+ },
+ {
+ "epoch": 88.8527741371778,
+ "grad_norm": 0.2814873158931732,
+ "learning_rate": 0.0006,
+ "loss": 3.4601378440856934,
+ "step": 6397
+ },
+ {
+ "epoch": 88.86675404106597,
+ "grad_norm": 0.23663274943828583,
+ "learning_rate": 0.0006,
+ "loss": 3.4499621391296387,
+ "step": 6398
+ },
+ {
+ "epoch": 88.88073394495413,
+ "grad_norm": 0.2373311072587967,
+ "learning_rate": 0.0006,
+ "loss": 3.4788646697998047,
+ "step": 6399
+ },
+ {
+ "epoch": 88.89471384884229,
+ "grad_norm": 0.23589301109313965,
+ "learning_rate": 0.0006,
+ "loss": 3.4490485191345215,
+ "step": 6400
+ },
+ {
+ "epoch": 88.90869375273044,
+ "grad_norm": 0.2493848204612732,
+ "learning_rate": 0.0006,
+ "loss": 3.4638071060180664,
+ "step": 6401
+ },
+ {
+ "epoch": 88.92267365661861,
+ "grad_norm": 0.253894567489624,
+ "learning_rate": 0.0006,
+ "loss": 3.4215211868286133,
+ "step": 6402
+ },
+ {
+ "epoch": 88.93665356050677,
+ "grad_norm": 0.24402591586112976,
+ "learning_rate": 0.0006,
+ "loss": 3.4285635948181152,
+ "step": 6403
+ },
+ {
+ "epoch": 88.95063346439493,
+ "grad_norm": 0.23428580164909363,
+ "learning_rate": 0.0006,
+ "loss": 3.479029655456543,
+ "step": 6404
+ },
+ {
+ "epoch": 88.9646133682831,
+ "grad_norm": 0.22734172642230988,
+ "learning_rate": 0.0006,
+ "loss": 3.4614226818084717,
+ "step": 6405
+ },
+ {
+ "epoch": 88.97859327217125,
+ "grad_norm": 0.23591332137584686,
+ "learning_rate": 0.0006,
+ "loss": 3.45747709274292,
+ "step": 6406
+ },
+ {
+ "epoch": 88.99257317605941,
+ "grad_norm": 0.2494441717863083,
+ "learning_rate": 0.0006,
+ "loss": 3.4813613891601562,
+ "step": 6407
+ },
+ {
+ "epoch": 89.0,
+ "grad_norm": 0.2755223214626312,
+ "learning_rate": 0.0006,
+ "loss": 3.5029916763305664,
+ "step": 6408
+ },
+ {
+ "epoch": 89.0,
+ "eval_loss": 3.99692440032959,
+ "eval_runtime": 46.4257,
+ "eval_samples_per_second": 52.6,
+ "eval_steps_per_second": 3.296,
+ "step": 6408
+ },
+ {
+ "epoch": 89.01397990388816,
+ "grad_norm": 0.2804921567440033,
+ "learning_rate": 0.0006,
+ "loss": 3.390130043029785,
+ "step": 6409
+ },
+ {
+ "epoch": 89.02795980777633,
+ "grad_norm": 0.2886325716972351,
+ "learning_rate": 0.0006,
+ "loss": 3.403815507888794,
+ "step": 6410
+ },
+ {
+ "epoch": 89.04193971166448,
+ "grad_norm": 0.2708413898944855,
+ "learning_rate": 0.0006,
+ "loss": 3.4433977603912354,
+ "step": 6411
+ },
+ {
+ "epoch": 89.05591961555264,
+ "grad_norm": 0.24649782478809357,
+ "learning_rate": 0.0006,
+ "loss": 3.4159514904022217,
+ "step": 6412
+ },
+ {
+ "epoch": 89.06989951944081,
+ "grad_norm": 0.24781741201877594,
+ "learning_rate": 0.0006,
+ "loss": 3.419957399368286,
+ "step": 6413
+ },
+ {
+ "epoch": 89.08387942332897,
+ "grad_norm": 0.24064421653747559,
+ "learning_rate": 0.0006,
+ "loss": 3.422407388687134,
+ "step": 6414
+ },
+ {
+ "epoch": 89.09785932721712,
+ "grad_norm": 0.23315085470676422,
+ "learning_rate": 0.0006,
+ "loss": 3.4167463779449463,
+ "step": 6415
+ },
+ {
+ "epoch": 89.1118392311053,
+ "grad_norm": 0.22830364108085632,
+ "learning_rate": 0.0006,
+ "loss": 3.3770923614501953,
+ "step": 6416
+ },
+ {
+ "epoch": 89.12581913499345,
+ "grad_norm": 0.2393895536661148,
+ "learning_rate": 0.0006,
+ "loss": 3.398796558380127,
+ "step": 6417
+ },
+ {
+ "epoch": 89.1397990388816,
+ "grad_norm": 0.23011191189289093,
+ "learning_rate": 0.0006,
+ "loss": 3.4162049293518066,
+ "step": 6418
+ },
+ {
+ "epoch": 89.15377894276976,
+ "grad_norm": 0.21913395822048187,
+ "learning_rate": 0.0006,
+ "loss": 3.4067492485046387,
+ "step": 6419
+ },
+ {
+ "epoch": 89.16775884665793,
+ "grad_norm": 0.2405850887298584,
+ "learning_rate": 0.0006,
+ "loss": 3.4392945766448975,
+ "step": 6420
+ },
+ {
+ "epoch": 89.18173875054609,
+ "grad_norm": 0.23586462438106537,
+ "learning_rate": 0.0006,
+ "loss": 3.4119157791137695,
+ "step": 6421
+ },
+ {
+ "epoch": 89.19571865443424,
+ "grad_norm": 0.2438800036907196,
+ "learning_rate": 0.0006,
+ "loss": 3.4040637016296387,
+ "step": 6422
+ },
+ {
+ "epoch": 89.20969855832242,
+ "grad_norm": 0.2754521071910858,
+ "learning_rate": 0.0006,
+ "loss": 3.3838582038879395,
+ "step": 6423
+ },
+ {
+ "epoch": 89.22367846221057,
+ "grad_norm": 0.23522698879241943,
+ "learning_rate": 0.0006,
+ "loss": 3.43086576461792,
+ "step": 6424
+ },
+ {
+ "epoch": 89.23765836609873,
+ "grad_norm": 0.20969218015670776,
+ "learning_rate": 0.0006,
+ "loss": 3.419610023498535,
+ "step": 6425
+ },
+ {
+ "epoch": 89.2516382699869,
+ "grad_norm": 0.24013124406337738,
+ "learning_rate": 0.0006,
+ "loss": 3.440587043762207,
+ "step": 6426
+ },
+ {
+ "epoch": 89.26561817387505,
+ "grad_norm": 0.22006145119667053,
+ "learning_rate": 0.0006,
+ "loss": 3.4141197204589844,
+ "step": 6427
+ },
+ {
+ "epoch": 89.27959807776321,
+ "grad_norm": 0.23387178778648376,
+ "learning_rate": 0.0006,
+ "loss": 3.4153761863708496,
+ "step": 6428
+ },
+ {
+ "epoch": 89.29357798165138,
+ "grad_norm": 0.2203698605298996,
+ "learning_rate": 0.0006,
+ "loss": 3.3872125148773193,
+ "step": 6429
+ },
+ {
+ "epoch": 89.30755788553954,
+ "grad_norm": 0.24457088112831116,
+ "learning_rate": 0.0006,
+ "loss": 3.408695697784424,
+ "step": 6430
+ },
+ {
+ "epoch": 89.3215377894277,
+ "grad_norm": 0.2421625852584839,
+ "learning_rate": 0.0006,
+ "loss": 3.4664320945739746,
+ "step": 6431
+ },
+ {
+ "epoch": 89.33551769331586,
+ "grad_norm": 0.23027287423610687,
+ "learning_rate": 0.0006,
+ "loss": 3.416273593902588,
+ "step": 6432
+ },
+ {
+ "epoch": 89.34949759720402,
+ "grad_norm": 0.23090727627277374,
+ "learning_rate": 0.0006,
+ "loss": 3.4398555755615234,
+ "step": 6433
+ },
+ {
+ "epoch": 89.36347750109218,
+ "grad_norm": 0.2195872664451599,
+ "learning_rate": 0.0006,
+ "loss": 3.4498820304870605,
+ "step": 6434
+ },
+ {
+ "epoch": 89.37745740498035,
+ "grad_norm": 0.21808069944381714,
+ "learning_rate": 0.0006,
+ "loss": 3.441169023513794,
+ "step": 6435
+ },
+ {
+ "epoch": 89.3914373088685,
+ "grad_norm": 0.22228756546974182,
+ "learning_rate": 0.0006,
+ "loss": 3.4655652046203613,
+ "step": 6436
+ },
+ {
+ "epoch": 89.40541721275666,
+ "grad_norm": 0.22122591733932495,
+ "learning_rate": 0.0006,
+ "loss": 3.4240527153015137,
+ "step": 6437
+ },
+ {
+ "epoch": 89.41939711664482,
+ "grad_norm": 0.21600909531116486,
+ "learning_rate": 0.0006,
+ "loss": 3.416105270385742,
+ "step": 6438
+ },
+ {
+ "epoch": 89.43337702053299,
+ "grad_norm": 0.2144104689359665,
+ "learning_rate": 0.0006,
+ "loss": 3.4098658561706543,
+ "step": 6439
+ },
+ {
+ "epoch": 89.44735692442114,
+ "grad_norm": 0.23326139152050018,
+ "learning_rate": 0.0006,
+ "loss": 3.469301700592041,
+ "step": 6440
+ },
+ {
+ "epoch": 89.4613368283093,
+ "grad_norm": 0.26567789912223816,
+ "learning_rate": 0.0006,
+ "loss": 3.4470887184143066,
+ "step": 6441
+ },
+ {
+ "epoch": 89.47531673219747,
+ "grad_norm": 0.2632465362548828,
+ "learning_rate": 0.0006,
+ "loss": 3.4050705432891846,
+ "step": 6442
+ },
+ {
+ "epoch": 89.48929663608563,
+ "grad_norm": 0.2504420578479767,
+ "learning_rate": 0.0006,
+ "loss": 3.456641912460327,
+ "step": 6443
+ },
+ {
+ "epoch": 89.50327653997378,
+ "grad_norm": 0.23118335008621216,
+ "learning_rate": 0.0006,
+ "loss": 3.4431729316711426,
+ "step": 6444
+ },
+ {
+ "epoch": 89.51725644386195,
+ "grad_norm": 0.2547391951084137,
+ "learning_rate": 0.0006,
+ "loss": 3.4665348529815674,
+ "step": 6445
+ },
+ {
+ "epoch": 89.53123634775011,
+ "grad_norm": 0.24364003539085388,
+ "learning_rate": 0.0006,
+ "loss": 3.415684223175049,
+ "step": 6446
+ },
+ {
+ "epoch": 89.54521625163827,
+ "grad_norm": 0.23808231949806213,
+ "learning_rate": 0.0006,
+ "loss": 3.452906608581543,
+ "step": 6447
+ },
+ {
+ "epoch": 89.55919615552644,
+ "grad_norm": 0.22440290451049805,
+ "learning_rate": 0.0006,
+ "loss": 3.4534897804260254,
+ "step": 6448
+ },
+ {
+ "epoch": 89.57317605941459,
+ "grad_norm": 0.2142396867275238,
+ "learning_rate": 0.0006,
+ "loss": 3.4557271003723145,
+ "step": 6449
+ },
+ {
+ "epoch": 89.58715596330275,
+ "grad_norm": 0.23520410060882568,
+ "learning_rate": 0.0006,
+ "loss": 3.4715747833251953,
+ "step": 6450
+ },
+ {
+ "epoch": 89.60113586719092,
+ "grad_norm": 0.20662814378738403,
+ "learning_rate": 0.0006,
+ "loss": 3.4436354637145996,
+ "step": 6451
+ },
+ {
+ "epoch": 89.61511577107908,
+ "grad_norm": 0.2474508434534073,
+ "learning_rate": 0.0006,
+ "loss": 3.4383606910705566,
+ "step": 6452
+ },
+ {
+ "epoch": 89.62909567496723,
+ "grad_norm": 0.278999924659729,
+ "learning_rate": 0.0006,
+ "loss": 3.4703361988067627,
+ "step": 6453
+ },
+ {
+ "epoch": 89.6430755788554,
+ "grad_norm": 0.25253745913505554,
+ "learning_rate": 0.0006,
+ "loss": 3.414583206176758,
+ "step": 6454
+ },
+ {
+ "epoch": 89.65705548274356,
+ "grad_norm": 0.22693559527397156,
+ "learning_rate": 0.0006,
+ "loss": 3.464961528778076,
+ "step": 6455
+ },
+ {
+ "epoch": 89.67103538663171,
+ "grad_norm": 0.24077758193016052,
+ "learning_rate": 0.0006,
+ "loss": 3.439797878265381,
+ "step": 6456
+ },
+ {
+ "epoch": 89.68501529051987,
+ "grad_norm": 0.2611824870109558,
+ "learning_rate": 0.0006,
+ "loss": 3.4732823371887207,
+ "step": 6457
+ },
+ {
+ "epoch": 89.69899519440804,
+ "grad_norm": 0.250815749168396,
+ "learning_rate": 0.0006,
+ "loss": 3.4433367252349854,
+ "step": 6458
+ },
+ {
+ "epoch": 89.7129750982962,
+ "grad_norm": 0.23598846793174744,
+ "learning_rate": 0.0006,
+ "loss": 3.4715113639831543,
+ "step": 6459
+ },
+ {
+ "epoch": 89.72695500218435,
+ "grad_norm": 0.2527889311313629,
+ "learning_rate": 0.0006,
+ "loss": 3.4698610305786133,
+ "step": 6460
+ },
+ {
+ "epoch": 89.74093490607252,
+ "grad_norm": 0.276784211397171,
+ "learning_rate": 0.0006,
+ "loss": 3.475592613220215,
+ "step": 6461
+ },
+ {
+ "epoch": 89.75491480996068,
+ "grad_norm": 0.2685011923313141,
+ "learning_rate": 0.0006,
+ "loss": 3.4594340324401855,
+ "step": 6462
+ },
+ {
+ "epoch": 89.76889471384884,
+ "grad_norm": 0.2204517424106598,
+ "learning_rate": 0.0006,
+ "loss": 3.4383888244628906,
+ "step": 6463
+ },
+ {
+ "epoch": 89.78287461773701,
+ "grad_norm": 0.21650364995002747,
+ "learning_rate": 0.0006,
+ "loss": 3.440211772918701,
+ "step": 6464
+ },
+ {
+ "epoch": 89.79685452162516,
+ "grad_norm": 0.23860572278499603,
+ "learning_rate": 0.0006,
+ "loss": 3.4803309440612793,
+ "step": 6465
+ },
+ {
+ "epoch": 89.81083442551332,
+ "grad_norm": 0.21272678673267365,
+ "learning_rate": 0.0006,
+ "loss": 3.415151596069336,
+ "step": 6466
+ },
+ {
+ "epoch": 89.82481432940149,
+ "grad_norm": 0.21292860805988312,
+ "learning_rate": 0.0006,
+ "loss": 3.431708812713623,
+ "step": 6467
+ },
+ {
+ "epoch": 89.83879423328965,
+ "grad_norm": 0.2239128053188324,
+ "learning_rate": 0.0006,
+ "loss": 3.4703831672668457,
+ "step": 6468
+ },
+ {
+ "epoch": 89.8527741371778,
+ "grad_norm": 0.2337617129087448,
+ "learning_rate": 0.0006,
+ "loss": 3.480558395385742,
+ "step": 6469
+ },
+ {
+ "epoch": 89.86675404106597,
+ "grad_norm": 0.2368871420621872,
+ "learning_rate": 0.0006,
+ "loss": 3.460475444793701,
+ "step": 6470
+ },
+ {
+ "epoch": 89.88073394495413,
+ "grad_norm": 0.20681516826152802,
+ "learning_rate": 0.0006,
+ "loss": 3.4175658226013184,
+ "step": 6471
+ },
+ {
+ "epoch": 89.89471384884229,
+ "grad_norm": 0.20790521800518036,
+ "learning_rate": 0.0006,
+ "loss": 3.4417853355407715,
+ "step": 6472
+ },
+ {
+ "epoch": 89.90869375273044,
+ "grad_norm": 0.20643968880176544,
+ "learning_rate": 0.0006,
+ "loss": 3.4470458030700684,
+ "step": 6473
+ },
+ {
+ "epoch": 89.92267365661861,
+ "grad_norm": 0.2111901491880417,
+ "learning_rate": 0.0006,
+ "loss": 3.477799654006958,
+ "step": 6474
+ },
+ {
+ "epoch": 89.93665356050677,
+ "grad_norm": 0.20657071471214294,
+ "learning_rate": 0.0006,
+ "loss": 3.4574146270751953,
+ "step": 6475
+ },
+ {
+ "epoch": 89.95063346439493,
+ "grad_norm": 0.20643314719200134,
+ "learning_rate": 0.0006,
+ "loss": 3.459632396697998,
+ "step": 6476
+ },
+ {
+ "epoch": 89.9646133682831,
+ "grad_norm": 0.22173410654067993,
+ "learning_rate": 0.0006,
+ "loss": 3.475869655609131,
+ "step": 6477
+ },
+ {
+ "epoch": 89.97859327217125,
+ "grad_norm": 0.21396701037883759,
+ "learning_rate": 0.0006,
+ "loss": 3.432828664779663,
+ "step": 6478
+ },
+ {
+ "epoch": 89.99257317605941,
+ "grad_norm": 0.20806321501731873,
+ "learning_rate": 0.0006,
+ "loss": 3.4380345344543457,
+ "step": 6479
+ },
+ {
+ "epoch": 90.0,
+ "grad_norm": 0.29019099473953247,
+ "learning_rate": 0.0006,
+ "loss": 3.4722766876220703,
+ "step": 6480
+ },
+ {
+ "epoch": 90.0,
+ "eval_loss": 3.9953255653381348,
+ "eval_runtime": 46.5084,
+ "eval_samples_per_second": 52.507,
+ "eval_steps_per_second": 3.29,
+ "step": 6480
+ },
+ {
+ "epoch": 90.01397990388816,
+ "grad_norm": 0.30904439091682434,
+ "learning_rate": 0.0006,
+ "loss": 3.418851852416992,
+ "step": 6481
+ },
+ {
+ "epoch": 90.02795980777633,
+ "grad_norm": 0.33757269382476807,
+ "learning_rate": 0.0006,
+ "loss": 3.4239983558654785,
+ "step": 6482
+ },
+ {
+ "epoch": 90.04193971166448,
+ "grad_norm": 0.3366031050682068,
+ "learning_rate": 0.0006,
+ "loss": 3.4371347427368164,
+ "step": 6483
+ },
+ {
+ "epoch": 90.05591961555264,
+ "grad_norm": 0.3123963177204132,
+ "learning_rate": 0.0006,
+ "loss": 3.3881397247314453,
+ "step": 6484
+ },
+ {
+ "epoch": 90.06989951944081,
+ "grad_norm": 0.2818542420864105,
+ "learning_rate": 0.0006,
+ "loss": 3.4260921478271484,
+ "step": 6485
+ },
+ {
+ "epoch": 90.08387942332897,
+ "grad_norm": 0.30521923303604126,
+ "learning_rate": 0.0006,
+ "loss": 3.430814504623413,
+ "step": 6486
+ },
+ {
+ "epoch": 90.09785932721712,
+ "grad_norm": 0.28015220165252686,
+ "learning_rate": 0.0006,
+ "loss": 3.4476559162139893,
+ "step": 6487
+ },
+ {
+ "epoch": 90.1118392311053,
+ "grad_norm": 0.2598329186439514,
+ "learning_rate": 0.0006,
+ "loss": 3.4090490341186523,
+ "step": 6488
+ },
+ {
+ "epoch": 90.12581913499345,
+ "grad_norm": 0.2669932246208191,
+ "learning_rate": 0.0006,
+ "loss": 3.3986735343933105,
+ "step": 6489
+ },
+ {
+ "epoch": 90.1397990388816,
+ "grad_norm": 0.25984710454940796,
+ "learning_rate": 0.0006,
+ "loss": 3.417846202850342,
+ "step": 6490
+ },
+ {
+ "epoch": 90.15377894276976,
+ "grad_norm": 0.2787732779979706,
+ "learning_rate": 0.0006,
+ "loss": 3.4399795532226562,
+ "step": 6491
+ },
+ {
+ "epoch": 90.16775884665793,
+ "grad_norm": 0.2931681275367737,
+ "learning_rate": 0.0006,
+ "loss": 3.4119021892547607,
+ "step": 6492
+ },
+ {
+ "epoch": 90.18173875054609,
+ "grad_norm": 0.33927759528160095,
+ "learning_rate": 0.0006,
+ "loss": 3.384705066680908,
+ "step": 6493
+ },
+ {
+ "epoch": 90.19571865443424,
+ "grad_norm": 0.3411446213722229,
+ "learning_rate": 0.0006,
+ "loss": 3.4089555740356445,
+ "step": 6494
+ },
+ {
+ "epoch": 90.20969855832242,
+ "grad_norm": 0.2604075074195862,
+ "learning_rate": 0.0006,
+ "loss": 3.4233946800231934,
+ "step": 6495
+ },
+ {
+ "epoch": 90.22367846221057,
+ "grad_norm": 0.24992363154888153,
+ "learning_rate": 0.0006,
+ "loss": 3.4724960327148438,
+ "step": 6496
+ },
+ {
+ "epoch": 90.23765836609873,
+ "grad_norm": 0.2375895380973816,
+ "learning_rate": 0.0006,
+ "loss": 3.458033561706543,
+ "step": 6497
+ },
+ {
+ "epoch": 90.2516382699869,
+ "grad_norm": 0.22809554636478424,
+ "learning_rate": 0.0006,
+ "loss": 3.408811092376709,
+ "step": 6498
+ },
+ {
+ "epoch": 90.26561817387505,
+ "grad_norm": 0.21157044172286987,
+ "learning_rate": 0.0006,
+ "loss": 3.4245152473449707,
+ "step": 6499
+ },
+ {
+ "epoch": 90.27959807776321,
+ "grad_norm": 0.22064797580242157,
+ "learning_rate": 0.0006,
+ "loss": 3.404344320297241,
+ "step": 6500
+ },
+ {
+ "epoch": 90.29357798165138,
+ "grad_norm": 0.24731965363025665,
+ "learning_rate": 0.0006,
+ "loss": 3.4225330352783203,
+ "step": 6501
+ },
+ {
+ "epoch": 90.30755788553954,
+ "grad_norm": 0.24225078523159027,
+ "learning_rate": 0.0006,
+ "loss": 3.432037591934204,
+ "step": 6502
+ },
+ {
+ "epoch": 90.3215377894277,
+ "grad_norm": 0.2522440552711487,
+ "learning_rate": 0.0006,
+ "loss": 3.4188179969787598,
+ "step": 6503
+ },
+ {
+ "epoch": 90.33551769331586,
+ "grad_norm": 0.25284767150878906,
+ "learning_rate": 0.0006,
+ "loss": 3.4024617671966553,
+ "step": 6504
+ },
+ {
+ "epoch": 90.34949759720402,
+ "grad_norm": 0.25376370549201965,
+ "learning_rate": 0.0006,
+ "loss": 3.4594764709472656,
+ "step": 6505
+ },
+ {
+ "epoch": 90.36347750109218,
+ "grad_norm": 0.26418960094451904,
+ "learning_rate": 0.0006,
+ "loss": 3.4271185398101807,
+ "step": 6506
+ },
+ {
+ "epoch": 90.37745740498035,
+ "grad_norm": 0.25357338786125183,
+ "learning_rate": 0.0006,
+ "loss": 3.453247308731079,
+ "step": 6507
+ },
+ {
+ "epoch": 90.3914373088685,
+ "grad_norm": 0.27471402287483215,
+ "learning_rate": 0.0006,
+ "loss": 3.4602694511413574,
+ "step": 6508
+ },
+ {
+ "epoch": 90.40541721275666,
+ "grad_norm": 0.277476966381073,
+ "learning_rate": 0.0006,
+ "loss": 3.445067882537842,
+ "step": 6509
+ },
+ {
+ "epoch": 90.41939711664482,
+ "grad_norm": 0.26854971051216125,
+ "learning_rate": 0.0006,
+ "loss": 3.4413654804229736,
+ "step": 6510
+ },
+ {
+ "epoch": 90.43337702053299,
+ "grad_norm": 0.2936476767063141,
+ "learning_rate": 0.0006,
+ "loss": 3.4006855487823486,
+ "step": 6511
+ },
+ {
+ "epoch": 90.44735692442114,
+ "grad_norm": 0.3106863796710968,
+ "learning_rate": 0.0006,
+ "loss": 3.4397261142730713,
+ "step": 6512
+ },
+ {
+ "epoch": 90.4613368283093,
+ "grad_norm": 0.2725449204444885,
+ "learning_rate": 0.0006,
+ "loss": 3.428178548812866,
+ "step": 6513
+ },
+ {
+ "epoch": 90.47531673219747,
+ "grad_norm": 0.24062374234199524,
+ "learning_rate": 0.0006,
+ "loss": 3.4532151222229004,
+ "step": 6514
+ },
+ {
+ "epoch": 90.48929663608563,
+ "grad_norm": 0.20387989282608032,
+ "learning_rate": 0.0006,
+ "loss": 3.4402451515197754,
+ "step": 6515
+ },
+ {
+ "epoch": 90.50327653997378,
+ "grad_norm": 0.22572724521160126,
+ "learning_rate": 0.0006,
+ "loss": 3.434530735015869,
+ "step": 6516
+ },
+ {
+ "epoch": 90.51725644386195,
+ "grad_norm": 0.238680899143219,
+ "learning_rate": 0.0006,
+ "loss": 3.4565868377685547,
+ "step": 6517
+ },
+ {
+ "epoch": 90.53123634775011,
+ "grad_norm": 0.21353137493133545,
+ "learning_rate": 0.0006,
+ "loss": 3.4423351287841797,
+ "step": 6518
+ },
+ {
+ "epoch": 90.54521625163827,
+ "grad_norm": 0.23349817097187042,
+ "learning_rate": 0.0006,
+ "loss": 3.445049285888672,
+ "step": 6519
+ },
+ {
+ "epoch": 90.55919615552644,
+ "grad_norm": 0.2219848334789276,
+ "learning_rate": 0.0006,
+ "loss": 3.45231556892395,
+ "step": 6520
+ },
+ {
+ "epoch": 90.57317605941459,
+ "grad_norm": 0.21629275381565094,
+ "learning_rate": 0.0006,
+ "loss": 3.4129867553710938,
+ "step": 6521
+ },
+ {
+ "epoch": 90.58715596330275,
+ "grad_norm": 0.2235035002231598,
+ "learning_rate": 0.0006,
+ "loss": 3.4591660499572754,
+ "step": 6522
+ },
+ {
+ "epoch": 90.60113586719092,
+ "grad_norm": 0.26521024107933044,
+ "learning_rate": 0.0006,
+ "loss": 3.4373743534088135,
+ "step": 6523
+ },
+ {
+ "epoch": 90.61511577107908,
+ "grad_norm": 0.2680232524871826,
+ "learning_rate": 0.0006,
+ "loss": 3.4387364387512207,
+ "step": 6524
+ },
+ {
+ "epoch": 90.62909567496723,
+ "grad_norm": 0.22376984357833862,
+ "learning_rate": 0.0006,
+ "loss": 3.419330358505249,
+ "step": 6525
+ },
+ {
+ "epoch": 90.6430755788554,
+ "grad_norm": 0.2209475338459015,
+ "learning_rate": 0.0006,
+ "loss": 3.392704486846924,
+ "step": 6526
+ },
+ {
+ "epoch": 90.65705548274356,
+ "grad_norm": 0.23697848618030548,
+ "learning_rate": 0.0006,
+ "loss": 3.4427690505981445,
+ "step": 6527
+ },
+ {
+ "epoch": 90.67103538663171,
+ "grad_norm": 0.23086845874786377,
+ "learning_rate": 0.0006,
+ "loss": 3.4663751125335693,
+ "step": 6528
+ },
+ {
+ "epoch": 90.68501529051987,
+ "grad_norm": 0.2024257779121399,
+ "learning_rate": 0.0006,
+ "loss": 3.4333503246307373,
+ "step": 6529
+ },
+ {
+ "epoch": 90.69899519440804,
+ "grad_norm": 0.20319615304470062,
+ "learning_rate": 0.0006,
+ "loss": 3.441241502761841,
+ "step": 6530
+ },
+ {
+ "epoch": 90.7129750982962,
+ "grad_norm": 0.20323923230171204,
+ "learning_rate": 0.0006,
+ "loss": 3.4349968433380127,
+ "step": 6531
+ },
+ {
+ "epoch": 90.72695500218435,
+ "grad_norm": 0.21205076575279236,
+ "learning_rate": 0.0006,
+ "loss": 3.4660801887512207,
+ "step": 6532
+ },
+ {
+ "epoch": 90.74093490607252,
+ "grad_norm": 0.20939043164253235,
+ "learning_rate": 0.0006,
+ "loss": 3.4456377029418945,
+ "step": 6533
+ },
+ {
+ "epoch": 90.75491480996068,
+ "grad_norm": 0.2304895967245102,
+ "learning_rate": 0.0006,
+ "loss": 3.4799728393554688,
+ "step": 6534
+ },
+ {
+ "epoch": 90.76889471384884,
+ "grad_norm": 0.23180201649665833,
+ "learning_rate": 0.0006,
+ "loss": 3.4439339637756348,
+ "step": 6535
+ },
+ {
+ "epoch": 90.78287461773701,
+ "grad_norm": 0.21886807680130005,
+ "learning_rate": 0.0006,
+ "loss": 3.457972526550293,
+ "step": 6536
+ },
+ {
+ "epoch": 90.79685452162516,
+ "grad_norm": 0.2383895367383957,
+ "learning_rate": 0.0006,
+ "loss": 3.4571423530578613,
+ "step": 6537
+ },
+ {
+ "epoch": 90.81083442551332,
+ "grad_norm": 0.28625327348709106,
+ "learning_rate": 0.0006,
+ "loss": 3.425898551940918,
+ "step": 6538
+ },
+ {
+ "epoch": 90.82481432940149,
+ "grad_norm": 0.2728622257709503,
+ "learning_rate": 0.0006,
+ "loss": 3.4169094562530518,
+ "step": 6539
+ },
+ {
+ "epoch": 90.83879423328965,
+ "grad_norm": 0.2563427984714508,
+ "learning_rate": 0.0006,
+ "loss": 3.412403106689453,
+ "step": 6540
+ },
+ {
+ "epoch": 90.8527741371778,
+ "grad_norm": 0.2255549281835556,
+ "learning_rate": 0.0006,
+ "loss": 3.455230712890625,
+ "step": 6541
+ },
+ {
+ "epoch": 90.86675404106597,
+ "grad_norm": 0.20950232446193695,
+ "learning_rate": 0.0006,
+ "loss": 3.4527735710144043,
+ "step": 6542
+ },
+ {
+ "epoch": 90.88073394495413,
+ "grad_norm": 0.21894556283950806,
+ "learning_rate": 0.0006,
+ "loss": 3.4224467277526855,
+ "step": 6543
+ },
+ {
+ "epoch": 90.89471384884229,
+ "grad_norm": 0.21209512650966644,
+ "learning_rate": 0.0006,
+ "loss": 3.431763172149658,
+ "step": 6544
+ },
+ {
+ "epoch": 90.90869375273044,
+ "grad_norm": 0.2315598577260971,
+ "learning_rate": 0.0006,
+ "loss": 3.450211524963379,
+ "step": 6545
+ },
+ {
+ "epoch": 90.92267365661861,
+ "grad_norm": 0.2402508407831192,
+ "learning_rate": 0.0006,
+ "loss": 3.455052375793457,
+ "step": 6546
+ },
+ {
+ "epoch": 90.93665356050677,
+ "grad_norm": 0.2308250069618225,
+ "learning_rate": 0.0006,
+ "loss": 3.4867026805877686,
+ "step": 6547
+ },
+ {
+ "epoch": 90.95063346439493,
+ "grad_norm": 0.24072574079036713,
+ "learning_rate": 0.0006,
+ "loss": 3.4766125679016113,
+ "step": 6548
+ },
+ {
+ "epoch": 90.9646133682831,
+ "grad_norm": 0.24275705218315125,
+ "learning_rate": 0.0006,
+ "loss": 3.4633054733276367,
+ "step": 6549
+ },
+ {
+ "epoch": 90.97859327217125,
+ "grad_norm": 0.22423091530799866,
+ "learning_rate": 0.0006,
+ "loss": 3.4584946632385254,
+ "step": 6550
+ },
+ {
+ "epoch": 90.99257317605941,
+ "grad_norm": 0.225535050034523,
+ "learning_rate": 0.0006,
+ "loss": 3.453803539276123,
+ "step": 6551
+ },
+ {
+ "epoch": 91.0,
+ "grad_norm": 0.2719618082046509,
+ "learning_rate": 0.0006,
+ "loss": 3.4374547004699707,
+ "step": 6552
+ },
+ {
+ "epoch": 91.0,
+ "eval_loss": 4.004940986633301,
+ "eval_runtime": 46.5029,
+ "eval_samples_per_second": 52.513,
+ "eval_steps_per_second": 3.29,
+ "step": 6552
+ },
+ {
+ "epoch": 91.01397990388816,
+ "grad_norm": 0.2452932447195053,
+ "learning_rate": 0.0006,
+ "loss": 3.4305531978607178,
+ "step": 6553
+ },
+ {
+ "epoch": 91.02795980777633,
+ "grad_norm": 0.25326210260391235,
+ "learning_rate": 0.0006,
+ "loss": 3.384127140045166,
+ "step": 6554
+ },
+ {
+ "epoch": 91.04193971166448,
+ "grad_norm": 0.2665634751319885,
+ "learning_rate": 0.0006,
+ "loss": 3.4163594245910645,
+ "step": 6555
+ },
+ {
+ "epoch": 91.05591961555264,
+ "grad_norm": 0.2732037603855133,
+ "learning_rate": 0.0006,
+ "loss": 3.3771586418151855,
+ "step": 6556
+ },
+ {
+ "epoch": 91.06989951944081,
+ "grad_norm": 0.23763145506381989,
+ "learning_rate": 0.0006,
+ "loss": 3.3978042602539062,
+ "step": 6557
+ },
+ {
+ "epoch": 91.08387942332897,
+ "grad_norm": 0.25869178771972656,
+ "learning_rate": 0.0006,
+ "loss": 3.3812952041625977,
+ "step": 6558
+ },
+ {
+ "epoch": 91.09785932721712,
+ "grad_norm": 0.24454088509082794,
+ "learning_rate": 0.0006,
+ "loss": 3.4127495288848877,
+ "step": 6559
+ },
+ {
+ "epoch": 91.1118392311053,
+ "grad_norm": 0.21807557344436646,
+ "learning_rate": 0.0006,
+ "loss": 3.4293503761291504,
+ "step": 6560
+ },
+ {
+ "epoch": 91.12581913499345,
+ "grad_norm": 0.24649474024772644,
+ "learning_rate": 0.0006,
+ "loss": 3.3676466941833496,
+ "step": 6561
+ },
+ {
+ "epoch": 91.1397990388816,
+ "grad_norm": 0.232633575797081,
+ "learning_rate": 0.0006,
+ "loss": 3.3941407203674316,
+ "step": 6562
+ },
+ {
+ "epoch": 91.15377894276976,
+ "grad_norm": 0.21927355229854584,
+ "learning_rate": 0.0006,
+ "loss": 3.4050021171569824,
+ "step": 6563
+ },
+ {
+ "epoch": 91.16775884665793,
+ "grad_norm": 0.22213764488697052,
+ "learning_rate": 0.0006,
+ "loss": 3.4130403995513916,
+ "step": 6564
+ },
+ {
+ "epoch": 91.18173875054609,
+ "grad_norm": 0.23417729139328003,
+ "learning_rate": 0.0006,
+ "loss": 3.4020724296569824,
+ "step": 6565
+ },
+ {
+ "epoch": 91.19571865443424,
+ "grad_norm": 0.2246304750442505,
+ "learning_rate": 0.0006,
+ "loss": 3.4340522289276123,
+ "step": 6566
+ },
+ {
+ "epoch": 91.20969855832242,
+ "grad_norm": 0.221421480178833,
+ "learning_rate": 0.0006,
+ "loss": 3.4325551986694336,
+ "step": 6567
+ },
+ {
+ "epoch": 91.22367846221057,
+ "grad_norm": 0.22669611871242523,
+ "learning_rate": 0.0006,
+ "loss": 3.379284381866455,
+ "step": 6568
+ },
+ {
+ "epoch": 91.23765836609873,
+ "grad_norm": 0.24856597185134888,
+ "learning_rate": 0.0006,
+ "loss": 3.4661848545074463,
+ "step": 6569
+ },
+ {
+ "epoch": 91.2516382699869,
+ "grad_norm": 0.2874867022037506,
+ "learning_rate": 0.0006,
+ "loss": 3.421952486038208,
+ "step": 6570
+ },
+ {
+ "epoch": 91.26561817387505,
+ "grad_norm": 0.2838810384273529,
+ "learning_rate": 0.0006,
+ "loss": 3.4232606887817383,
+ "step": 6571
+ },
+ {
+ "epoch": 91.27959807776321,
+ "grad_norm": 0.27111512422561646,
+ "learning_rate": 0.0006,
+ "loss": 3.427985668182373,
+ "step": 6572
+ },
+ {
+ "epoch": 91.29357798165138,
+ "grad_norm": 0.25255000591278076,
+ "learning_rate": 0.0006,
+ "loss": 3.437727451324463,
+ "step": 6573
+ },
+ {
+ "epoch": 91.30755788553954,
+ "grad_norm": 0.24753448367118835,
+ "learning_rate": 0.0006,
+ "loss": 3.431509494781494,
+ "step": 6574
+ },
+ {
+ "epoch": 91.3215377894277,
+ "grad_norm": 0.3003036081790924,
+ "learning_rate": 0.0006,
+ "loss": 3.4692001342773438,
+ "step": 6575
+ },
+ {
+ "epoch": 91.33551769331586,
+ "grad_norm": 0.2745291590690613,
+ "learning_rate": 0.0006,
+ "loss": 3.428563117980957,
+ "step": 6576
+ },
+ {
+ "epoch": 91.34949759720402,
+ "grad_norm": 0.24292010068893433,
+ "learning_rate": 0.0006,
+ "loss": 3.433021068572998,
+ "step": 6577
+ },
+ {
+ "epoch": 91.36347750109218,
+ "grad_norm": 0.2417255938053131,
+ "learning_rate": 0.0006,
+ "loss": 3.42389178276062,
+ "step": 6578
+ },
+ {
+ "epoch": 91.37745740498035,
+ "grad_norm": 0.26591625809669495,
+ "learning_rate": 0.0006,
+ "loss": 3.446324348449707,
+ "step": 6579
+ },
+ {
+ "epoch": 91.3914373088685,
+ "grad_norm": 0.2473662942647934,
+ "learning_rate": 0.0006,
+ "loss": 3.4376204013824463,
+ "step": 6580
+ },
+ {
+ "epoch": 91.40541721275666,
+ "grad_norm": 0.22889690101146698,
+ "learning_rate": 0.0006,
+ "loss": 3.388927936553955,
+ "step": 6581
+ },
+ {
+ "epoch": 91.41939711664482,
+ "grad_norm": 0.24227893352508545,
+ "learning_rate": 0.0006,
+ "loss": 3.4282050132751465,
+ "step": 6582
+ },
+ {
+ "epoch": 91.43337702053299,
+ "grad_norm": 0.22293400764465332,
+ "learning_rate": 0.0006,
+ "loss": 3.4289140701293945,
+ "step": 6583
+ },
+ {
+ "epoch": 91.44735692442114,
+ "grad_norm": 0.22775113582611084,
+ "learning_rate": 0.0006,
+ "loss": 3.417121410369873,
+ "step": 6584
+ },
+ {
+ "epoch": 91.4613368283093,
+ "grad_norm": 0.23245708644390106,
+ "learning_rate": 0.0006,
+ "loss": 3.420234203338623,
+ "step": 6585
+ },
+ {
+ "epoch": 91.47531673219747,
+ "grad_norm": 0.2506006062030792,
+ "learning_rate": 0.0006,
+ "loss": 3.415706157684326,
+ "step": 6586
+ },
+ {
+ "epoch": 91.48929663608563,
+ "grad_norm": 0.23158405721187592,
+ "learning_rate": 0.0006,
+ "loss": 3.405642509460449,
+ "step": 6587
+ },
+ {
+ "epoch": 91.50327653997378,
+ "grad_norm": 0.2237837165594101,
+ "learning_rate": 0.0006,
+ "loss": 3.4335689544677734,
+ "step": 6588
+ },
+ {
+ "epoch": 91.51725644386195,
+ "grad_norm": 0.22722665965557098,
+ "learning_rate": 0.0006,
+ "loss": 3.4654386043548584,
+ "step": 6589
+ },
+ {
+ "epoch": 91.53123634775011,
+ "grad_norm": 0.2230997383594513,
+ "learning_rate": 0.0006,
+ "loss": 3.4406728744506836,
+ "step": 6590
+ },
+ {
+ "epoch": 91.54521625163827,
+ "grad_norm": 0.20826208591461182,
+ "learning_rate": 0.0006,
+ "loss": 3.461658000946045,
+ "step": 6591
+ },
+ {
+ "epoch": 91.55919615552644,
+ "grad_norm": 0.22250162065029144,
+ "learning_rate": 0.0006,
+ "loss": 3.419250011444092,
+ "step": 6592
+ },
+ {
+ "epoch": 91.57317605941459,
+ "grad_norm": 0.2545854449272156,
+ "learning_rate": 0.0006,
+ "loss": 3.443878173828125,
+ "step": 6593
+ },
+ {
+ "epoch": 91.58715596330275,
+ "grad_norm": 0.2367449849843979,
+ "learning_rate": 0.0006,
+ "loss": 3.423168659210205,
+ "step": 6594
+ },
+ {
+ "epoch": 91.60113586719092,
+ "grad_norm": 0.2320464551448822,
+ "learning_rate": 0.0006,
+ "loss": 3.4623992443084717,
+ "step": 6595
+ },
+ {
+ "epoch": 91.61511577107908,
+ "grad_norm": 0.22751834988594055,
+ "learning_rate": 0.0006,
+ "loss": 3.4606170654296875,
+ "step": 6596
+ },
+ {
+ "epoch": 91.62909567496723,
+ "grad_norm": 0.22919580340385437,
+ "learning_rate": 0.0006,
+ "loss": 3.4593071937561035,
+ "step": 6597
+ },
+ {
+ "epoch": 91.6430755788554,
+ "grad_norm": 0.21247684955596924,
+ "learning_rate": 0.0006,
+ "loss": 3.464904308319092,
+ "step": 6598
+ },
+ {
+ "epoch": 91.65705548274356,
+ "grad_norm": 0.21709196269512177,
+ "learning_rate": 0.0006,
+ "loss": 3.4596290588378906,
+ "step": 6599
+ },
+ {
+ "epoch": 91.67103538663171,
+ "grad_norm": 0.2424597144126892,
+ "learning_rate": 0.0006,
+ "loss": 3.448538303375244,
+ "step": 6600
+ },
+ {
+ "epoch": 91.68501529051987,
+ "grad_norm": 0.2395647168159485,
+ "learning_rate": 0.0006,
+ "loss": 3.4488210678100586,
+ "step": 6601
+ },
+ {
+ "epoch": 91.69899519440804,
+ "grad_norm": 0.2409609705209732,
+ "learning_rate": 0.0006,
+ "loss": 3.4203569889068604,
+ "step": 6602
+ },
+ {
+ "epoch": 91.7129750982962,
+ "grad_norm": 0.23729364573955536,
+ "learning_rate": 0.0006,
+ "loss": 3.410933494567871,
+ "step": 6603
+ },
+ {
+ "epoch": 91.72695500218435,
+ "grad_norm": 0.210970938205719,
+ "learning_rate": 0.0006,
+ "loss": 3.432286024093628,
+ "step": 6604
+ },
+ {
+ "epoch": 91.74093490607252,
+ "grad_norm": 0.25386837124824524,
+ "learning_rate": 0.0006,
+ "loss": 3.4530787467956543,
+ "step": 6605
+ },
+ {
+ "epoch": 91.75491480996068,
+ "grad_norm": 0.23256954550743103,
+ "learning_rate": 0.0006,
+ "loss": 3.428518772125244,
+ "step": 6606
+ },
+ {
+ "epoch": 91.76889471384884,
+ "grad_norm": 0.23063044250011444,
+ "learning_rate": 0.0006,
+ "loss": 3.4331274032592773,
+ "step": 6607
+ },
+ {
+ "epoch": 91.78287461773701,
+ "grad_norm": 0.22678597271442413,
+ "learning_rate": 0.0006,
+ "loss": 3.485541343688965,
+ "step": 6608
+ },
+ {
+ "epoch": 91.79685452162516,
+ "grad_norm": 0.23040807247161865,
+ "learning_rate": 0.0006,
+ "loss": 3.413050651550293,
+ "step": 6609
+ },
+ {
+ "epoch": 91.81083442551332,
+ "grad_norm": 0.24709701538085938,
+ "learning_rate": 0.0006,
+ "loss": 3.4578094482421875,
+ "step": 6610
+ },
+ {
+ "epoch": 91.82481432940149,
+ "grad_norm": 0.2618633806705475,
+ "learning_rate": 0.0006,
+ "loss": 3.459503173828125,
+ "step": 6611
+ },
+ {
+ "epoch": 91.83879423328965,
+ "grad_norm": 0.2603336274623871,
+ "learning_rate": 0.0006,
+ "loss": 3.476443290710449,
+ "step": 6612
+ },
+ {
+ "epoch": 91.8527741371778,
+ "grad_norm": 0.2600095868110657,
+ "learning_rate": 0.0006,
+ "loss": 3.4230222702026367,
+ "step": 6613
+ },
+ {
+ "epoch": 91.86675404106597,
+ "grad_norm": 0.3156466484069824,
+ "learning_rate": 0.0006,
+ "loss": 3.4416275024414062,
+ "step": 6614
+ },
+ {
+ "epoch": 91.88073394495413,
+ "grad_norm": 0.33223336935043335,
+ "learning_rate": 0.0006,
+ "loss": 3.459763526916504,
+ "step": 6615
+ },
+ {
+ "epoch": 91.89471384884229,
+ "grad_norm": 0.24999754130840302,
+ "learning_rate": 0.0006,
+ "loss": 3.4882445335388184,
+ "step": 6616
+ },
+ {
+ "epoch": 91.90869375273044,
+ "grad_norm": 0.2177472859621048,
+ "learning_rate": 0.0006,
+ "loss": 3.4443440437316895,
+ "step": 6617
+ },
+ {
+ "epoch": 91.92267365661861,
+ "grad_norm": 0.23315973579883575,
+ "learning_rate": 0.0006,
+ "loss": 3.453639507293701,
+ "step": 6618
+ },
+ {
+ "epoch": 91.93665356050677,
+ "grad_norm": 0.25978362560272217,
+ "learning_rate": 0.0006,
+ "loss": 3.4746177196502686,
+ "step": 6619
+ },
+ {
+ "epoch": 91.95063346439493,
+ "grad_norm": 0.2419944554567337,
+ "learning_rate": 0.0006,
+ "loss": 3.4525551795959473,
+ "step": 6620
+ },
+ {
+ "epoch": 91.9646133682831,
+ "grad_norm": 0.23098371922969818,
+ "learning_rate": 0.0006,
+ "loss": 3.4819016456604004,
+ "step": 6621
+ },
+ {
+ "epoch": 91.97859327217125,
+ "grad_norm": 0.2250458300113678,
+ "learning_rate": 0.0006,
+ "loss": 3.4790477752685547,
+ "step": 6622
+ },
+ {
+ "epoch": 91.99257317605941,
+ "grad_norm": 0.2512681484222412,
+ "learning_rate": 0.0006,
+ "loss": 3.444125175476074,
+ "step": 6623
+ },
+ {
+ "epoch": 92.0,
+ "grad_norm": 0.29921481013298035,
+ "learning_rate": 0.0006,
+ "loss": 3.4197065830230713,
+ "step": 6624
+ },
+ {
+ "epoch": 92.0,
+ "eval_loss": 3.990424633026123,
+ "eval_runtime": 46.396,
+ "eval_samples_per_second": 52.634,
+ "eval_steps_per_second": 3.298,
+ "step": 6624
+ },
+ {
+ "epoch": 92.01397990388816,
+ "grad_norm": 0.293844610452652,
+ "learning_rate": 0.0006,
+ "loss": 3.401441812515259,
+ "step": 6625
+ },
+ {
+ "epoch": 92.02795980777633,
+ "grad_norm": 0.3120594620704651,
+ "learning_rate": 0.0006,
+ "loss": 3.417057514190674,
+ "step": 6626
+ },
+ {
+ "epoch": 92.04193971166448,
+ "grad_norm": 0.3397780656814575,
+ "learning_rate": 0.0006,
+ "loss": 3.4054136276245117,
+ "step": 6627
+ },
+ {
+ "epoch": 92.05591961555264,
+ "grad_norm": 0.37544959783554077,
+ "learning_rate": 0.0006,
+ "loss": 3.372990608215332,
+ "step": 6628
+ },
+ {
+ "epoch": 92.06989951944081,
+ "grad_norm": 0.3074891269207001,
+ "learning_rate": 0.0006,
+ "loss": 3.4348435401916504,
+ "step": 6629
+ },
+ {
+ "epoch": 92.08387942332897,
+ "grad_norm": 0.2593157887458801,
+ "learning_rate": 0.0006,
+ "loss": 3.398172378540039,
+ "step": 6630
+ },
+ {
+ "epoch": 92.09785932721712,
+ "grad_norm": 0.28176161646842957,
+ "learning_rate": 0.0006,
+ "loss": 3.4359188079833984,
+ "step": 6631
+ },
+ {
+ "epoch": 92.1118392311053,
+ "grad_norm": 0.2928430140018463,
+ "learning_rate": 0.0006,
+ "loss": 3.399282455444336,
+ "step": 6632
+ },
+ {
+ "epoch": 92.12581913499345,
+ "grad_norm": 0.2591678202152252,
+ "learning_rate": 0.0006,
+ "loss": 3.420551300048828,
+ "step": 6633
+ },
+ {
+ "epoch": 92.1397990388816,
+ "grad_norm": 0.2669394314289093,
+ "learning_rate": 0.0006,
+ "loss": 3.4320037364959717,
+ "step": 6634
+ },
+ {
+ "epoch": 92.15377894276976,
+ "grad_norm": 0.2545861005783081,
+ "learning_rate": 0.0006,
+ "loss": 3.40364933013916,
+ "step": 6635
+ },
+ {
+ "epoch": 92.16775884665793,
+ "grad_norm": 0.27218759059906006,
+ "learning_rate": 0.0006,
+ "loss": 3.404567241668701,
+ "step": 6636
+ },
+ {
+ "epoch": 92.18173875054609,
+ "grad_norm": 0.2475498616695404,
+ "learning_rate": 0.0006,
+ "loss": 3.414416790008545,
+ "step": 6637
+ },
+ {
+ "epoch": 92.19571865443424,
+ "grad_norm": 0.2325468212366104,
+ "learning_rate": 0.0006,
+ "loss": 3.406236171722412,
+ "step": 6638
+ },
+ {
+ "epoch": 92.20969855832242,
+ "grad_norm": 0.2711200416088104,
+ "learning_rate": 0.0006,
+ "loss": 3.428661823272705,
+ "step": 6639
+ },
+ {
+ "epoch": 92.22367846221057,
+ "grad_norm": 0.24988055229187012,
+ "learning_rate": 0.0006,
+ "loss": 3.431516408920288,
+ "step": 6640
+ },
+ {
+ "epoch": 92.23765836609873,
+ "grad_norm": 0.25862860679626465,
+ "learning_rate": 0.0006,
+ "loss": 3.4037771224975586,
+ "step": 6641
+ },
+ {
+ "epoch": 92.2516382699869,
+ "grad_norm": 0.25960293412208557,
+ "learning_rate": 0.0006,
+ "loss": 3.4335427284240723,
+ "step": 6642
+ },
+ {
+ "epoch": 92.26561817387505,
+ "grad_norm": 0.2285071611404419,
+ "learning_rate": 0.0006,
+ "loss": 3.409482002258301,
+ "step": 6643
+ },
+ {
+ "epoch": 92.27959807776321,
+ "grad_norm": 0.23144803941249847,
+ "learning_rate": 0.0006,
+ "loss": 3.4032318592071533,
+ "step": 6644
+ },
+ {
+ "epoch": 92.29357798165138,
+ "grad_norm": 0.243625670671463,
+ "learning_rate": 0.0006,
+ "loss": 3.441851854324341,
+ "step": 6645
+ },
+ {
+ "epoch": 92.30755788553954,
+ "grad_norm": 0.24354898929595947,
+ "learning_rate": 0.0006,
+ "loss": 3.4319992065429688,
+ "step": 6646
+ },
+ {
+ "epoch": 92.3215377894277,
+ "grad_norm": 0.27033108472824097,
+ "learning_rate": 0.0006,
+ "loss": 3.423489809036255,
+ "step": 6647
+ },
+ {
+ "epoch": 92.33551769331586,
+ "grad_norm": 0.2687682509422302,
+ "learning_rate": 0.0006,
+ "loss": 3.3948974609375,
+ "step": 6648
+ },
+ {
+ "epoch": 92.34949759720402,
+ "grad_norm": 0.23249676823616028,
+ "learning_rate": 0.0006,
+ "loss": 3.4357218742370605,
+ "step": 6649
+ },
+ {
+ "epoch": 92.36347750109218,
+ "grad_norm": 0.24828878045082092,
+ "learning_rate": 0.0006,
+ "loss": 3.4487977027893066,
+ "step": 6650
+ },
+ {
+ "epoch": 92.37745740498035,
+ "grad_norm": 0.24538534879684448,
+ "learning_rate": 0.0006,
+ "loss": 3.4412765502929688,
+ "step": 6651
+ },
+ {
+ "epoch": 92.3914373088685,
+ "grad_norm": 0.2199631631374359,
+ "learning_rate": 0.0006,
+ "loss": 3.4368536472320557,
+ "step": 6652
+ },
+ {
+ "epoch": 92.40541721275666,
+ "grad_norm": 0.2277228981256485,
+ "learning_rate": 0.0006,
+ "loss": 3.446643829345703,
+ "step": 6653
+ },
+ {
+ "epoch": 92.41939711664482,
+ "grad_norm": 0.21492542326450348,
+ "learning_rate": 0.0006,
+ "loss": 3.4235596656799316,
+ "step": 6654
+ },
+ {
+ "epoch": 92.43337702053299,
+ "grad_norm": 0.2213222086429596,
+ "learning_rate": 0.0006,
+ "loss": 3.4097518920898438,
+ "step": 6655
+ },
+ {
+ "epoch": 92.44735692442114,
+ "grad_norm": 0.23967257142066956,
+ "learning_rate": 0.0006,
+ "loss": 3.412379503250122,
+ "step": 6656
+ },
+ {
+ "epoch": 92.4613368283093,
+ "grad_norm": 0.24196487665176392,
+ "learning_rate": 0.0006,
+ "loss": 3.399301290512085,
+ "step": 6657
+ },
+ {
+ "epoch": 92.47531673219747,
+ "grad_norm": 0.23678216338157654,
+ "learning_rate": 0.0006,
+ "loss": 3.4319005012512207,
+ "step": 6658
+ },
+ {
+ "epoch": 92.48929663608563,
+ "grad_norm": 0.24745887517929077,
+ "learning_rate": 0.0006,
+ "loss": 3.424887180328369,
+ "step": 6659
+ },
+ {
+ "epoch": 92.50327653997378,
+ "grad_norm": 0.2678569257259369,
+ "learning_rate": 0.0006,
+ "loss": 3.415461778640747,
+ "step": 6660
+ },
+ {
+ "epoch": 92.51725644386195,
+ "grad_norm": 0.28347229957580566,
+ "learning_rate": 0.0006,
+ "loss": 3.423457145690918,
+ "step": 6661
+ },
+ {
+ "epoch": 92.53123634775011,
+ "grad_norm": 0.2731434106826782,
+ "learning_rate": 0.0006,
+ "loss": 3.4127073287963867,
+ "step": 6662
+ },
+ {
+ "epoch": 92.54521625163827,
+ "grad_norm": 0.24231183528900146,
+ "learning_rate": 0.0006,
+ "loss": 3.4209909439086914,
+ "step": 6663
+ },
+ {
+ "epoch": 92.55919615552644,
+ "grad_norm": 0.21519047021865845,
+ "learning_rate": 0.0006,
+ "loss": 3.4467225074768066,
+ "step": 6664
+ },
+ {
+ "epoch": 92.57317605941459,
+ "grad_norm": 0.26692843437194824,
+ "learning_rate": 0.0006,
+ "loss": 3.422398090362549,
+ "step": 6665
+ },
+ {
+ "epoch": 92.58715596330275,
+ "grad_norm": 0.25423285365104675,
+ "learning_rate": 0.0006,
+ "loss": 3.466486930847168,
+ "step": 6666
+ },
+ {
+ "epoch": 92.60113586719092,
+ "grad_norm": 0.21296674013137817,
+ "learning_rate": 0.0006,
+ "loss": 3.432711124420166,
+ "step": 6667
+ },
+ {
+ "epoch": 92.61511577107908,
+ "grad_norm": 0.2509782016277313,
+ "learning_rate": 0.0006,
+ "loss": 3.4516279697418213,
+ "step": 6668
+ },
+ {
+ "epoch": 92.62909567496723,
+ "grad_norm": 0.2675098776817322,
+ "learning_rate": 0.0006,
+ "loss": 3.456596851348877,
+ "step": 6669
+ },
+ {
+ "epoch": 92.6430755788554,
+ "grad_norm": 0.29142946004867554,
+ "learning_rate": 0.0006,
+ "loss": 3.427300453186035,
+ "step": 6670
+ },
+ {
+ "epoch": 92.65705548274356,
+ "grad_norm": 0.25576716661453247,
+ "learning_rate": 0.0006,
+ "loss": 3.4819178581237793,
+ "step": 6671
+ },
+ {
+ "epoch": 92.67103538663171,
+ "grad_norm": 0.24975362420082092,
+ "learning_rate": 0.0006,
+ "loss": 3.4298954010009766,
+ "step": 6672
+ },
+ {
+ "epoch": 92.68501529051987,
+ "grad_norm": 0.24055132269859314,
+ "learning_rate": 0.0006,
+ "loss": 3.4593138694763184,
+ "step": 6673
+ },
+ {
+ "epoch": 92.69899519440804,
+ "grad_norm": 0.25517308712005615,
+ "learning_rate": 0.0006,
+ "loss": 3.449608325958252,
+ "step": 6674
+ },
+ {
+ "epoch": 92.7129750982962,
+ "grad_norm": 0.25566577911376953,
+ "learning_rate": 0.0006,
+ "loss": 3.444607734680176,
+ "step": 6675
+ },
+ {
+ "epoch": 92.72695500218435,
+ "grad_norm": 0.23388373851776123,
+ "learning_rate": 0.0006,
+ "loss": 3.437791347503662,
+ "step": 6676
+ },
+ {
+ "epoch": 92.74093490607252,
+ "grad_norm": 0.2368888556957245,
+ "learning_rate": 0.0006,
+ "loss": 3.4171619415283203,
+ "step": 6677
+ },
+ {
+ "epoch": 92.75491480996068,
+ "grad_norm": 0.2242693156003952,
+ "learning_rate": 0.0006,
+ "loss": 3.451737403869629,
+ "step": 6678
+ },
+ {
+ "epoch": 92.76889471384884,
+ "grad_norm": 0.23336493968963623,
+ "learning_rate": 0.0006,
+ "loss": 3.4509100914001465,
+ "step": 6679
+ },
+ {
+ "epoch": 92.78287461773701,
+ "grad_norm": 0.23847080767154694,
+ "learning_rate": 0.0006,
+ "loss": 3.435800313949585,
+ "step": 6680
+ },
+ {
+ "epoch": 92.79685452162516,
+ "grad_norm": 0.24109719693660736,
+ "learning_rate": 0.0006,
+ "loss": 3.454310417175293,
+ "step": 6681
+ },
+ {
+ "epoch": 92.81083442551332,
+ "grad_norm": 0.2272281050682068,
+ "learning_rate": 0.0006,
+ "loss": 3.455033540725708,
+ "step": 6682
+ },
+ {
+ "epoch": 92.82481432940149,
+ "grad_norm": 0.2284226417541504,
+ "learning_rate": 0.0006,
+ "loss": 3.425632953643799,
+ "step": 6683
+ },
+ {
+ "epoch": 92.83879423328965,
+ "grad_norm": 0.23978091776371002,
+ "learning_rate": 0.0006,
+ "loss": 3.451955795288086,
+ "step": 6684
+ },
+ {
+ "epoch": 92.8527741371778,
+ "grad_norm": 0.2376631647348404,
+ "learning_rate": 0.0006,
+ "loss": 3.429849147796631,
+ "step": 6685
+ },
+ {
+ "epoch": 92.86675404106597,
+ "grad_norm": 0.22930841147899628,
+ "learning_rate": 0.0006,
+ "loss": 3.4608373641967773,
+ "step": 6686
+ },
+ {
+ "epoch": 92.88073394495413,
+ "grad_norm": 0.22491370141506195,
+ "learning_rate": 0.0006,
+ "loss": 3.4849934577941895,
+ "step": 6687
+ },
+ {
+ "epoch": 92.89471384884229,
+ "grad_norm": 0.21682271361351013,
+ "learning_rate": 0.0006,
+ "loss": 3.4571456909179688,
+ "step": 6688
+ },
+ {
+ "epoch": 92.90869375273044,
+ "grad_norm": 0.234682098031044,
+ "learning_rate": 0.0006,
+ "loss": 3.4258341789245605,
+ "step": 6689
+ },
+ {
+ "epoch": 92.92267365661861,
+ "grad_norm": 0.22355671226978302,
+ "learning_rate": 0.0006,
+ "loss": 3.4478983879089355,
+ "step": 6690
+ },
+ {
+ "epoch": 92.93665356050677,
+ "grad_norm": 0.20840972661972046,
+ "learning_rate": 0.0006,
+ "loss": 3.456587791442871,
+ "step": 6691
+ },
+ {
+ "epoch": 92.95063346439493,
+ "grad_norm": 0.22297403216362,
+ "learning_rate": 0.0006,
+ "loss": 3.4647953510284424,
+ "step": 6692
+ },
+ {
+ "epoch": 92.9646133682831,
+ "grad_norm": 0.2390260398387909,
+ "learning_rate": 0.0006,
+ "loss": 3.442249298095703,
+ "step": 6693
+ },
+ {
+ "epoch": 92.97859327217125,
+ "grad_norm": 0.2315380722284317,
+ "learning_rate": 0.0006,
+ "loss": 3.4680938720703125,
+ "step": 6694
+ },
+ {
+ "epoch": 92.99257317605941,
+ "grad_norm": 0.21837230026721954,
+ "learning_rate": 0.0006,
+ "loss": 3.424527645111084,
+ "step": 6695
+ },
+ {
+ "epoch": 93.0,
+ "grad_norm": 0.23587742447853088,
+ "learning_rate": 0.0006,
+ "loss": 3.426384449005127,
+ "step": 6696
+ },
+ {
+ "epoch": 93.0,
+ "eval_loss": 4.011545181274414,
+ "eval_runtime": 47.0685,
+ "eval_samples_per_second": 51.882,
+ "eval_steps_per_second": 3.251,
+ "step": 6696
+ },
+ {
+ "epoch": 93.01397990388816,
+ "grad_norm": 0.25423353910446167,
+ "learning_rate": 0.0006,
+ "loss": 3.3949575424194336,
+ "step": 6697
+ },
+ {
+ "epoch": 93.02795980777633,
+ "grad_norm": 0.256784051656723,
+ "learning_rate": 0.0006,
+ "loss": 3.4352171421051025,
+ "step": 6698
+ },
+ {
+ "epoch": 93.04193971166448,
+ "grad_norm": 0.2239868938922882,
+ "learning_rate": 0.0006,
+ "loss": 3.361023426055908,
+ "step": 6699
+ },
+ {
+ "epoch": 93.05591961555264,
+ "grad_norm": 0.227825328707695,
+ "learning_rate": 0.0006,
+ "loss": 3.4022746086120605,
+ "step": 6700
+ },
+ {
+ "epoch": 93.06989951944081,
+ "grad_norm": 0.24019530415534973,
+ "learning_rate": 0.0006,
+ "loss": 3.38535737991333,
+ "step": 6701
+ },
+ {
+ "epoch": 93.08387942332897,
+ "grad_norm": 0.2553795874118805,
+ "learning_rate": 0.0006,
+ "loss": 3.4249091148376465,
+ "step": 6702
+ },
+ {
+ "epoch": 93.09785932721712,
+ "grad_norm": 0.2860201299190521,
+ "learning_rate": 0.0006,
+ "loss": 3.4192934036254883,
+ "step": 6703
+ },
+ {
+ "epoch": 93.1118392311053,
+ "grad_norm": 0.2675059139728546,
+ "learning_rate": 0.0006,
+ "loss": 3.423948287963867,
+ "step": 6704
+ },
+ {
+ "epoch": 93.12581913499345,
+ "grad_norm": 0.21901658177375793,
+ "learning_rate": 0.0006,
+ "loss": 3.402798652648926,
+ "step": 6705
+ },
+ {
+ "epoch": 93.1397990388816,
+ "grad_norm": 0.27664417028427124,
+ "learning_rate": 0.0006,
+ "loss": 3.4677541255950928,
+ "step": 6706
+ },
+ {
+ "epoch": 93.15377894276976,
+ "grad_norm": 0.30117082595825195,
+ "learning_rate": 0.0006,
+ "loss": 3.423790693283081,
+ "step": 6707
+ },
+ {
+ "epoch": 93.16775884665793,
+ "grad_norm": 0.26260191202163696,
+ "learning_rate": 0.0006,
+ "loss": 3.427980422973633,
+ "step": 6708
+ },
+ {
+ "epoch": 93.18173875054609,
+ "grad_norm": 0.24175108969211578,
+ "learning_rate": 0.0006,
+ "loss": 3.3951404094696045,
+ "step": 6709
+ },
+ {
+ "epoch": 93.19571865443424,
+ "grad_norm": 0.2562611699104309,
+ "learning_rate": 0.0006,
+ "loss": 3.3931374549865723,
+ "step": 6710
+ },
+ {
+ "epoch": 93.20969855832242,
+ "grad_norm": 0.3151496946811676,
+ "learning_rate": 0.0006,
+ "loss": 3.4212417602539062,
+ "step": 6711
+ },
+ {
+ "epoch": 93.22367846221057,
+ "grad_norm": 0.3006970286369324,
+ "learning_rate": 0.0006,
+ "loss": 3.4395434856414795,
+ "step": 6712
+ },
+ {
+ "epoch": 93.23765836609873,
+ "grad_norm": 0.2450924962759018,
+ "learning_rate": 0.0006,
+ "loss": 3.421356201171875,
+ "step": 6713
+ },
+ {
+ "epoch": 93.2516382699869,
+ "grad_norm": 0.20292925834655762,
+ "learning_rate": 0.0006,
+ "loss": 3.4097542762756348,
+ "step": 6714
+ },
+ {
+ "epoch": 93.26561817387505,
+ "grad_norm": 0.24533076584339142,
+ "learning_rate": 0.0006,
+ "loss": 3.407641649246216,
+ "step": 6715
+ },
+ {
+ "epoch": 93.27959807776321,
+ "grad_norm": 0.28086504340171814,
+ "learning_rate": 0.0006,
+ "loss": 3.440011501312256,
+ "step": 6716
+ },
+ {
+ "epoch": 93.29357798165138,
+ "grad_norm": 0.29378727078437805,
+ "learning_rate": 0.0006,
+ "loss": 3.4147515296936035,
+ "step": 6717
+ },
+ {
+ "epoch": 93.30755788553954,
+ "grad_norm": 0.27327433228492737,
+ "learning_rate": 0.0006,
+ "loss": 3.432960271835327,
+ "step": 6718
+ },
+ {
+ "epoch": 93.3215377894277,
+ "grad_norm": 0.24034656584262848,
+ "learning_rate": 0.0006,
+ "loss": 3.4161510467529297,
+ "step": 6719
+ },
+ {
+ "epoch": 93.33551769331586,
+ "grad_norm": 0.25273817777633667,
+ "learning_rate": 0.0006,
+ "loss": 3.4412970542907715,
+ "step": 6720
+ },
+ {
+ "epoch": 93.34949759720402,
+ "grad_norm": 0.2488318234682083,
+ "learning_rate": 0.0006,
+ "loss": 3.3732097148895264,
+ "step": 6721
+ },
+ {
+ "epoch": 93.36347750109218,
+ "grad_norm": 0.23355160653591156,
+ "learning_rate": 0.0006,
+ "loss": 3.4381232261657715,
+ "step": 6722
+ },
+ {
+ "epoch": 93.37745740498035,
+ "grad_norm": 0.242261603474617,
+ "learning_rate": 0.0006,
+ "loss": 3.4310121536254883,
+ "step": 6723
+ },
+ {
+ "epoch": 93.3914373088685,
+ "grad_norm": 0.28622329235076904,
+ "learning_rate": 0.0006,
+ "loss": 3.409791946411133,
+ "step": 6724
+ },
+ {
+ "epoch": 93.40541721275666,
+ "grad_norm": 0.28278490900993347,
+ "learning_rate": 0.0006,
+ "loss": 3.3841657638549805,
+ "step": 6725
+ },
+ {
+ "epoch": 93.41939711664482,
+ "grad_norm": 0.3122783899307251,
+ "learning_rate": 0.0006,
+ "loss": 3.46968412399292,
+ "step": 6726
+ },
+ {
+ "epoch": 93.43337702053299,
+ "grad_norm": 0.2850068211555481,
+ "learning_rate": 0.0006,
+ "loss": 3.403409481048584,
+ "step": 6727
+ },
+ {
+ "epoch": 93.44735692442114,
+ "grad_norm": 0.24325743317604065,
+ "learning_rate": 0.0006,
+ "loss": 3.4340319633483887,
+ "step": 6728
+ },
+ {
+ "epoch": 93.4613368283093,
+ "grad_norm": 0.2815382182598114,
+ "learning_rate": 0.0006,
+ "loss": 3.426218032836914,
+ "step": 6729
+ },
+ {
+ "epoch": 93.47531673219747,
+ "grad_norm": 0.24958917498588562,
+ "learning_rate": 0.0006,
+ "loss": 3.436997890472412,
+ "step": 6730
+ },
+ {
+ "epoch": 93.48929663608563,
+ "grad_norm": 0.259321004152298,
+ "learning_rate": 0.0006,
+ "loss": 3.441648006439209,
+ "step": 6731
+ },
+ {
+ "epoch": 93.50327653997378,
+ "grad_norm": 0.2609651982784271,
+ "learning_rate": 0.0006,
+ "loss": 3.4095306396484375,
+ "step": 6732
+ },
+ {
+ "epoch": 93.51725644386195,
+ "grad_norm": 0.25657615065574646,
+ "learning_rate": 0.0006,
+ "loss": 3.4314627647399902,
+ "step": 6733
+ },
+ {
+ "epoch": 93.53123634775011,
+ "grad_norm": 0.24983316659927368,
+ "learning_rate": 0.0006,
+ "loss": 3.4123897552490234,
+ "step": 6734
+ },
+ {
+ "epoch": 93.54521625163827,
+ "grad_norm": 0.28103333711624146,
+ "learning_rate": 0.0006,
+ "loss": 3.4229750633239746,
+ "step": 6735
+ },
+ {
+ "epoch": 93.55919615552644,
+ "grad_norm": 0.27745917439460754,
+ "learning_rate": 0.0006,
+ "loss": 3.4401450157165527,
+ "step": 6736
+ },
+ {
+ "epoch": 93.57317605941459,
+ "grad_norm": 0.22952015697956085,
+ "learning_rate": 0.0006,
+ "loss": 3.437746524810791,
+ "step": 6737
+ },
+ {
+ "epoch": 93.58715596330275,
+ "grad_norm": 0.24895013868808746,
+ "learning_rate": 0.0006,
+ "loss": 3.4435274600982666,
+ "step": 6738
+ },
+ {
+ "epoch": 93.60113586719092,
+ "grad_norm": 0.2647884786128998,
+ "learning_rate": 0.0006,
+ "loss": 3.4621620178222656,
+ "step": 6739
+ },
+ {
+ "epoch": 93.61511577107908,
+ "grad_norm": 0.27854952216148376,
+ "learning_rate": 0.0006,
+ "loss": 3.4305949211120605,
+ "step": 6740
+ },
+ {
+ "epoch": 93.62909567496723,
+ "grad_norm": 0.23614352941513062,
+ "learning_rate": 0.0006,
+ "loss": 3.4643940925598145,
+ "step": 6741
+ },
+ {
+ "epoch": 93.6430755788554,
+ "grad_norm": 0.2449609786272049,
+ "learning_rate": 0.0006,
+ "loss": 3.446962594985962,
+ "step": 6742
+ },
+ {
+ "epoch": 93.65705548274356,
+ "grad_norm": 0.24940796196460724,
+ "learning_rate": 0.0006,
+ "loss": 3.4275929927825928,
+ "step": 6743
+ },
+ {
+ "epoch": 93.67103538663171,
+ "grad_norm": 0.21372026205062866,
+ "learning_rate": 0.0006,
+ "loss": 3.4385480880737305,
+ "step": 6744
+ },
+ {
+ "epoch": 93.68501529051987,
+ "grad_norm": 0.23362566530704498,
+ "learning_rate": 0.0006,
+ "loss": 3.4287164211273193,
+ "step": 6745
+ },
+ {
+ "epoch": 93.69899519440804,
+ "grad_norm": 0.20412877202033997,
+ "learning_rate": 0.0006,
+ "loss": 3.4070377349853516,
+ "step": 6746
+ },
+ {
+ "epoch": 93.7129750982962,
+ "grad_norm": 0.24040280282497406,
+ "learning_rate": 0.0006,
+ "loss": 3.4321208000183105,
+ "step": 6747
+ },
+ {
+ "epoch": 93.72695500218435,
+ "grad_norm": 0.2276143878698349,
+ "learning_rate": 0.0006,
+ "loss": 3.4187378883361816,
+ "step": 6748
+ },
+ {
+ "epoch": 93.74093490607252,
+ "grad_norm": 0.2609905004501343,
+ "learning_rate": 0.0006,
+ "loss": 3.4392778873443604,
+ "step": 6749
+ },
+ {
+ "epoch": 93.75491480996068,
+ "grad_norm": 0.2735007405281067,
+ "learning_rate": 0.0006,
+ "loss": 3.4539361000061035,
+ "step": 6750
+ },
+ {
+ "epoch": 93.76889471384884,
+ "grad_norm": 0.2638690769672394,
+ "learning_rate": 0.0006,
+ "loss": 3.463449239730835,
+ "step": 6751
+ },
+ {
+ "epoch": 93.78287461773701,
+ "grad_norm": 0.2457268089056015,
+ "learning_rate": 0.0006,
+ "loss": 3.4742202758789062,
+ "step": 6752
+ },
+ {
+ "epoch": 93.79685452162516,
+ "grad_norm": 0.23120850324630737,
+ "learning_rate": 0.0006,
+ "loss": 3.445014238357544,
+ "step": 6753
+ },
+ {
+ "epoch": 93.81083442551332,
+ "grad_norm": 0.28982552886009216,
+ "learning_rate": 0.0006,
+ "loss": 3.4345569610595703,
+ "step": 6754
+ },
+ {
+ "epoch": 93.82481432940149,
+ "grad_norm": 0.3160055875778198,
+ "learning_rate": 0.0006,
+ "loss": 3.4224295616149902,
+ "step": 6755
+ },
+ {
+ "epoch": 93.83879423328965,
+ "grad_norm": 0.23795701563358307,
+ "learning_rate": 0.0006,
+ "loss": 3.427156925201416,
+ "step": 6756
+ },
+ {
+ "epoch": 93.8527741371778,
+ "grad_norm": 0.21941617131233215,
+ "learning_rate": 0.0006,
+ "loss": 3.436102867126465,
+ "step": 6757
+ },
+ {
+ "epoch": 93.86675404106597,
+ "grad_norm": 0.2393350899219513,
+ "learning_rate": 0.0006,
+ "loss": 3.450915813446045,
+ "step": 6758
+ },
+ {
+ "epoch": 93.88073394495413,
+ "grad_norm": 0.2698851227760315,
+ "learning_rate": 0.0006,
+ "loss": 3.451040744781494,
+ "step": 6759
+ },
+ {
+ "epoch": 93.89471384884229,
+ "grad_norm": 0.29526287317276,
+ "learning_rate": 0.0006,
+ "loss": 3.4361257553100586,
+ "step": 6760
+ },
+ {
+ "epoch": 93.90869375273044,
+ "grad_norm": 0.284241259098053,
+ "learning_rate": 0.0006,
+ "loss": 3.4544219970703125,
+ "step": 6761
+ },
+ {
+ "epoch": 93.92267365661861,
+ "grad_norm": 0.23226694762706757,
+ "learning_rate": 0.0006,
+ "loss": 3.4306488037109375,
+ "step": 6762
+ },
+ {
+ "epoch": 93.93665356050677,
+ "grad_norm": 0.221400648355484,
+ "learning_rate": 0.0006,
+ "loss": 3.4596056938171387,
+ "step": 6763
+ },
+ {
+ "epoch": 93.95063346439493,
+ "grad_norm": 0.24546507000923157,
+ "learning_rate": 0.0006,
+ "loss": 3.459442615509033,
+ "step": 6764
+ },
+ {
+ "epoch": 93.9646133682831,
+ "grad_norm": 0.25056585669517517,
+ "learning_rate": 0.0006,
+ "loss": 3.4576244354248047,
+ "step": 6765
+ },
+ {
+ "epoch": 93.97859327217125,
+ "grad_norm": 0.24382533133029938,
+ "learning_rate": 0.0006,
+ "loss": 3.46604323387146,
+ "step": 6766
+ },
+ {
+ "epoch": 93.99257317605941,
+ "grad_norm": 0.23111487925052643,
+ "learning_rate": 0.0006,
+ "loss": 3.419752597808838,
+ "step": 6767
+ },
+ {
+ "epoch": 94.0,
+ "grad_norm": 0.25429150462150574,
+ "learning_rate": 0.0006,
+ "loss": 3.470834732055664,
+ "step": 6768
+ },
+ {
+ "epoch": 94.0,
+ "eval_loss": 4.0048723220825195,
+ "eval_runtime": 46.2608,
+ "eval_samples_per_second": 52.788,
+ "eval_steps_per_second": 3.307,
+ "step": 6768
+ },
+ {
+ "epoch": 94.01397990388816,
+ "grad_norm": 0.24850931763648987,
+ "learning_rate": 0.0006,
+ "loss": 3.381406784057617,
+ "step": 6769
+ },
+ {
+ "epoch": 94.02795980777633,
+ "grad_norm": 0.3083341419696808,
+ "learning_rate": 0.0006,
+ "loss": 3.390745162963867,
+ "step": 6770
+ },
+ {
+ "epoch": 94.04193971166448,
+ "grad_norm": 0.3341517448425293,
+ "learning_rate": 0.0006,
+ "loss": 3.4235048294067383,
+ "step": 6771
+ },
+ {
+ "epoch": 94.05591961555264,
+ "grad_norm": 0.28903666138648987,
+ "learning_rate": 0.0006,
+ "loss": 3.415342330932617,
+ "step": 6772
+ },
+ {
+ "epoch": 94.06989951944081,
+ "grad_norm": 0.2792344093322754,
+ "learning_rate": 0.0006,
+ "loss": 3.3831491470336914,
+ "step": 6773
+ },
+ {
+ "epoch": 94.08387942332897,
+ "grad_norm": 0.2897225618362427,
+ "learning_rate": 0.0006,
+ "loss": 3.4128687381744385,
+ "step": 6774
+ },
+ {
+ "epoch": 94.09785932721712,
+ "grad_norm": 0.27192890644073486,
+ "learning_rate": 0.0006,
+ "loss": 3.3719396591186523,
+ "step": 6775
+ },
+ {
+ "epoch": 94.1118392311053,
+ "grad_norm": 0.28466618061065674,
+ "learning_rate": 0.0006,
+ "loss": 3.377894639968872,
+ "step": 6776
+ },
+ {
+ "epoch": 94.12581913499345,
+ "grad_norm": 0.2761063873767853,
+ "learning_rate": 0.0006,
+ "loss": 3.407897472381592,
+ "step": 6777
+ },
+ {
+ "epoch": 94.1397990388816,
+ "grad_norm": 0.27651312947273254,
+ "learning_rate": 0.0006,
+ "loss": 3.39689040184021,
+ "step": 6778
+ },
+ {
+ "epoch": 94.15377894276976,
+ "grad_norm": 0.24393969774246216,
+ "learning_rate": 0.0006,
+ "loss": 3.4338550567626953,
+ "step": 6779
+ },
+ {
+ "epoch": 94.16775884665793,
+ "grad_norm": 0.23041163384914398,
+ "learning_rate": 0.0006,
+ "loss": 3.394223213195801,
+ "step": 6780
+ },
+ {
+ "epoch": 94.18173875054609,
+ "grad_norm": 0.23411819338798523,
+ "learning_rate": 0.0006,
+ "loss": 3.4109203815460205,
+ "step": 6781
+ },
+ {
+ "epoch": 94.19571865443424,
+ "grad_norm": 0.247885599732399,
+ "learning_rate": 0.0006,
+ "loss": 3.401597023010254,
+ "step": 6782
+ },
+ {
+ "epoch": 94.20969855832242,
+ "grad_norm": 0.25364676117897034,
+ "learning_rate": 0.0006,
+ "loss": 3.3792240619659424,
+ "step": 6783
+ },
+ {
+ "epoch": 94.22367846221057,
+ "grad_norm": 0.23333978652954102,
+ "learning_rate": 0.0006,
+ "loss": 3.421966314315796,
+ "step": 6784
+ },
+ {
+ "epoch": 94.23765836609873,
+ "grad_norm": 0.2363957166671753,
+ "learning_rate": 0.0006,
+ "loss": 3.440180778503418,
+ "step": 6785
+ },
+ {
+ "epoch": 94.2516382699869,
+ "grad_norm": 0.23245413601398468,
+ "learning_rate": 0.0006,
+ "loss": 3.4096598625183105,
+ "step": 6786
+ },
+ {
+ "epoch": 94.26561817387505,
+ "grad_norm": 0.2178839147090912,
+ "learning_rate": 0.0006,
+ "loss": 3.399242639541626,
+ "step": 6787
+ },
+ {
+ "epoch": 94.27959807776321,
+ "grad_norm": 0.24033723771572113,
+ "learning_rate": 0.0006,
+ "loss": 3.4221351146698,
+ "step": 6788
+ },
+ {
+ "epoch": 94.29357798165138,
+ "grad_norm": 0.25050002336502075,
+ "learning_rate": 0.0006,
+ "loss": 3.4256739616394043,
+ "step": 6789
+ },
+ {
+ "epoch": 94.30755788553954,
+ "grad_norm": 0.23650702834129333,
+ "learning_rate": 0.0006,
+ "loss": 3.4433517456054688,
+ "step": 6790
+ },
+ {
+ "epoch": 94.3215377894277,
+ "grad_norm": 0.22703666985034943,
+ "learning_rate": 0.0006,
+ "loss": 3.4374194145202637,
+ "step": 6791
+ },
+ {
+ "epoch": 94.33551769331586,
+ "grad_norm": 0.22083595395088196,
+ "learning_rate": 0.0006,
+ "loss": 3.411393880844116,
+ "step": 6792
+ },
+ {
+ "epoch": 94.34949759720402,
+ "grad_norm": 0.2282603532075882,
+ "learning_rate": 0.0006,
+ "loss": 3.4167723655700684,
+ "step": 6793
+ },
+ {
+ "epoch": 94.36347750109218,
+ "grad_norm": 0.21445757150650024,
+ "learning_rate": 0.0006,
+ "loss": 3.411402702331543,
+ "step": 6794
+ },
+ {
+ "epoch": 94.37745740498035,
+ "grad_norm": 0.22590994834899902,
+ "learning_rate": 0.0006,
+ "loss": 3.423203945159912,
+ "step": 6795
+ },
+ {
+ "epoch": 94.3914373088685,
+ "grad_norm": 0.2211935818195343,
+ "learning_rate": 0.0006,
+ "loss": 3.416825294494629,
+ "step": 6796
+ },
+ {
+ "epoch": 94.40541721275666,
+ "grad_norm": 0.21597808599472046,
+ "learning_rate": 0.0006,
+ "loss": 3.427116632461548,
+ "step": 6797
+ },
+ {
+ "epoch": 94.41939711664482,
+ "grad_norm": 0.21597442030906677,
+ "learning_rate": 0.0006,
+ "loss": 3.4304189682006836,
+ "step": 6798
+ },
+ {
+ "epoch": 94.43337702053299,
+ "grad_norm": 0.22279265522956848,
+ "learning_rate": 0.0006,
+ "loss": 3.423524856567383,
+ "step": 6799
+ },
+ {
+ "epoch": 94.44735692442114,
+ "grad_norm": 0.2205088585615158,
+ "learning_rate": 0.0006,
+ "loss": 3.426898956298828,
+ "step": 6800
+ },
+ {
+ "epoch": 94.4613368283093,
+ "grad_norm": 0.23161499202251434,
+ "learning_rate": 0.0006,
+ "loss": 3.416133403778076,
+ "step": 6801
+ },
+ {
+ "epoch": 94.47531673219747,
+ "grad_norm": 0.2583356201648712,
+ "learning_rate": 0.0006,
+ "loss": 3.4359500408172607,
+ "step": 6802
+ },
+ {
+ "epoch": 94.48929663608563,
+ "grad_norm": 0.28056100010871887,
+ "learning_rate": 0.0006,
+ "loss": 3.437521457672119,
+ "step": 6803
+ },
+ {
+ "epoch": 94.50327653997378,
+ "grad_norm": 0.2517118752002716,
+ "learning_rate": 0.0006,
+ "loss": 3.415987968444824,
+ "step": 6804
+ },
+ {
+ "epoch": 94.51725644386195,
+ "grad_norm": 0.21850481629371643,
+ "learning_rate": 0.0006,
+ "loss": 3.4574694633483887,
+ "step": 6805
+ },
+ {
+ "epoch": 94.53123634775011,
+ "grad_norm": 0.2539876699447632,
+ "learning_rate": 0.0006,
+ "loss": 3.4554924964904785,
+ "step": 6806
+ },
+ {
+ "epoch": 94.54521625163827,
+ "grad_norm": 0.2322462499141693,
+ "learning_rate": 0.0006,
+ "loss": 3.4383111000061035,
+ "step": 6807
+ },
+ {
+ "epoch": 94.55919615552644,
+ "grad_norm": 0.21425172686576843,
+ "learning_rate": 0.0006,
+ "loss": 3.425259590148926,
+ "step": 6808
+ },
+ {
+ "epoch": 94.57317605941459,
+ "grad_norm": 0.2356613278388977,
+ "learning_rate": 0.0006,
+ "loss": 3.4199063777923584,
+ "step": 6809
+ },
+ {
+ "epoch": 94.58715596330275,
+ "grad_norm": 0.24037371575832367,
+ "learning_rate": 0.0006,
+ "loss": 3.4822161197662354,
+ "step": 6810
+ },
+ {
+ "epoch": 94.60113586719092,
+ "grad_norm": 0.22631457448005676,
+ "learning_rate": 0.0006,
+ "loss": 3.436655044555664,
+ "step": 6811
+ },
+ {
+ "epoch": 94.61511577107908,
+ "grad_norm": 0.24926011264324188,
+ "learning_rate": 0.0006,
+ "loss": 3.424330711364746,
+ "step": 6812
+ },
+ {
+ "epoch": 94.62909567496723,
+ "grad_norm": 0.23928102850914001,
+ "learning_rate": 0.0006,
+ "loss": 3.457498073577881,
+ "step": 6813
+ },
+ {
+ "epoch": 94.6430755788554,
+ "grad_norm": 0.22744503617286682,
+ "learning_rate": 0.0006,
+ "loss": 3.429507255554199,
+ "step": 6814
+ },
+ {
+ "epoch": 94.65705548274356,
+ "grad_norm": 0.23157230019569397,
+ "learning_rate": 0.0006,
+ "loss": 3.4118356704711914,
+ "step": 6815
+ },
+ {
+ "epoch": 94.67103538663171,
+ "grad_norm": 0.26120537519454956,
+ "learning_rate": 0.0006,
+ "loss": 3.43738055229187,
+ "step": 6816
+ },
+ {
+ "epoch": 94.68501529051987,
+ "grad_norm": 0.2555256485939026,
+ "learning_rate": 0.0006,
+ "loss": 3.410588026046753,
+ "step": 6817
+ },
+ {
+ "epoch": 94.69899519440804,
+ "grad_norm": 0.22490885853767395,
+ "learning_rate": 0.0006,
+ "loss": 3.427495002746582,
+ "step": 6818
+ },
+ {
+ "epoch": 94.7129750982962,
+ "grad_norm": 0.24245399236679077,
+ "learning_rate": 0.0006,
+ "loss": 3.4033799171447754,
+ "step": 6819
+ },
+ {
+ "epoch": 94.72695500218435,
+ "grad_norm": 0.2504974603652954,
+ "learning_rate": 0.0006,
+ "loss": 3.4584431648254395,
+ "step": 6820
+ },
+ {
+ "epoch": 94.74093490607252,
+ "grad_norm": 0.31661778688430786,
+ "learning_rate": 0.0006,
+ "loss": 3.4557833671569824,
+ "step": 6821
+ },
+ {
+ "epoch": 94.75491480996068,
+ "grad_norm": 0.3266008794307709,
+ "learning_rate": 0.0006,
+ "loss": 3.40358829498291,
+ "step": 6822
+ },
+ {
+ "epoch": 94.76889471384884,
+ "grad_norm": 0.2262050360441208,
+ "learning_rate": 0.0006,
+ "loss": 3.4626946449279785,
+ "step": 6823
+ },
+ {
+ "epoch": 94.78287461773701,
+ "grad_norm": 0.24493470788002014,
+ "learning_rate": 0.0006,
+ "loss": 3.476741313934326,
+ "step": 6824
+ },
+ {
+ "epoch": 94.79685452162516,
+ "grad_norm": 0.2546406090259552,
+ "learning_rate": 0.0006,
+ "loss": 3.4281368255615234,
+ "step": 6825
+ },
+ {
+ "epoch": 94.81083442551332,
+ "grad_norm": 0.25845927000045776,
+ "learning_rate": 0.0006,
+ "loss": 3.435153007507324,
+ "step": 6826
+ },
+ {
+ "epoch": 94.82481432940149,
+ "grad_norm": 0.2400490790605545,
+ "learning_rate": 0.0006,
+ "loss": 3.4383115768432617,
+ "step": 6827
+ },
+ {
+ "epoch": 94.83879423328965,
+ "grad_norm": 0.2185630351305008,
+ "learning_rate": 0.0006,
+ "loss": 3.409846305847168,
+ "step": 6828
+ },
+ {
+ "epoch": 94.8527741371778,
+ "grad_norm": 0.238392636179924,
+ "learning_rate": 0.0006,
+ "loss": 3.443201780319214,
+ "step": 6829
+ },
+ {
+ "epoch": 94.86675404106597,
+ "grad_norm": 0.25249531865119934,
+ "learning_rate": 0.0006,
+ "loss": 3.464893341064453,
+ "step": 6830
+ },
+ {
+ "epoch": 94.88073394495413,
+ "grad_norm": 0.2648811638355255,
+ "learning_rate": 0.0006,
+ "loss": 3.4110443592071533,
+ "step": 6831
+ },
+ {
+ "epoch": 94.89471384884229,
+ "grad_norm": 0.23435312509536743,
+ "learning_rate": 0.0006,
+ "loss": 3.455955982208252,
+ "step": 6832
+ },
+ {
+ "epoch": 94.90869375273044,
+ "grad_norm": 0.21973535418510437,
+ "learning_rate": 0.0006,
+ "loss": 3.4360694885253906,
+ "step": 6833
+ },
+ {
+ "epoch": 94.92267365661861,
+ "grad_norm": 0.22766733169555664,
+ "learning_rate": 0.0006,
+ "loss": 3.4413442611694336,
+ "step": 6834
+ },
+ {
+ "epoch": 94.93665356050677,
+ "grad_norm": 0.22387754917144775,
+ "learning_rate": 0.0006,
+ "loss": 3.479048252105713,
+ "step": 6835
+ },
+ {
+ "epoch": 94.95063346439493,
+ "grad_norm": 0.2156190723180771,
+ "learning_rate": 0.0006,
+ "loss": 3.461625576019287,
+ "step": 6836
+ },
+ {
+ "epoch": 94.9646133682831,
+ "grad_norm": 0.23217801749706268,
+ "learning_rate": 0.0006,
+ "loss": 3.4501914978027344,
+ "step": 6837
+ },
+ {
+ "epoch": 94.97859327217125,
+ "grad_norm": 0.22949737310409546,
+ "learning_rate": 0.0006,
+ "loss": 3.4513964653015137,
+ "step": 6838
+ },
+ {
+ "epoch": 94.99257317605941,
+ "grad_norm": 0.22951069474220276,
+ "learning_rate": 0.0006,
+ "loss": 3.4735987186431885,
+ "step": 6839
+ },
+ {
+ "epoch": 95.0,
+ "grad_norm": 0.26237088441848755,
+ "learning_rate": 0.0006,
+ "loss": 3.4632973670959473,
+ "step": 6840
+ },
+ {
+ "epoch": 95.0,
+ "eval_loss": 4.005683898925781,
+ "eval_runtime": 46.4654,
+ "eval_samples_per_second": 52.555,
+ "eval_steps_per_second": 3.293,
+ "step": 6840
+ },
+ {
+ "epoch": 95.01397990388816,
+ "grad_norm": 0.25238674879074097,
+ "learning_rate": 0.0006,
+ "loss": 3.4283447265625,
+ "step": 6841
+ },
+ {
+ "epoch": 95.02795980777633,
+ "grad_norm": 0.2381853610277176,
+ "learning_rate": 0.0006,
+ "loss": 3.3766396045684814,
+ "step": 6842
+ },
+ {
+ "epoch": 95.04193971166448,
+ "grad_norm": 0.2379564344882965,
+ "learning_rate": 0.0006,
+ "loss": 3.3778748512268066,
+ "step": 6843
+ },
+ {
+ "epoch": 95.05591961555264,
+ "grad_norm": 0.2300495207309723,
+ "learning_rate": 0.0006,
+ "loss": 3.424384593963623,
+ "step": 6844
+ },
+ {
+ "epoch": 95.06989951944081,
+ "grad_norm": 0.27144646644592285,
+ "learning_rate": 0.0006,
+ "loss": 3.4174411296844482,
+ "step": 6845
+ },
+ {
+ "epoch": 95.08387942332897,
+ "grad_norm": 0.2806922197341919,
+ "learning_rate": 0.0006,
+ "loss": 3.399534225463867,
+ "step": 6846
+ },
+ {
+ "epoch": 95.09785932721712,
+ "grad_norm": 0.26581236720085144,
+ "learning_rate": 0.0006,
+ "loss": 3.4088947772979736,
+ "step": 6847
+ },
+ {
+ "epoch": 95.1118392311053,
+ "grad_norm": 0.2521856129169464,
+ "learning_rate": 0.0006,
+ "loss": 3.425666332244873,
+ "step": 6848
+ },
+ {
+ "epoch": 95.12581913499345,
+ "grad_norm": 0.2296123504638672,
+ "learning_rate": 0.0006,
+ "loss": 3.4058749675750732,
+ "step": 6849
+ },
+ {
+ "epoch": 95.1397990388816,
+ "grad_norm": 0.26084741950035095,
+ "learning_rate": 0.0006,
+ "loss": 3.4144835472106934,
+ "step": 6850
+ },
+ {
+ "epoch": 95.15377894276976,
+ "grad_norm": 0.2859461307525635,
+ "learning_rate": 0.0006,
+ "loss": 3.4004955291748047,
+ "step": 6851
+ },
+ {
+ "epoch": 95.16775884665793,
+ "grad_norm": 0.2513970136642456,
+ "learning_rate": 0.0006,
+ "loss": 3.3978776931762695,
+ "step": 6852
+ },
+ {
+ "epoch": 95.18173875054609,
+ "grad_norm": 0.25857359170913696,
+ "learning_rate": 0.0006,
+ "loss": 3.4178826808929443,
+ "step": 6853
+ },
+ {
+ "epoch": 95.19571865443424,
+ "grad_norm": 0.2735590934753418,
+ "learning_rate": 0.0006,
+ "loss": 3.4532670974731445,
+ "step": 6854
+ },
+ {
+ "epoch": 95.20969855832242,
+ "grad_norm": 0.2597769498825073,
+ "learning_rate": 0.0006,
+ "loss": 3.4178519248962402,
+ "step": 6855
+ },
+ {
+ "epoch": 95.22367846221057,
+ "grad_norm": 0.2731434106826782,
+ "learning_rate": 0.0006,
+ "loss": 3.3755178451538086,
+ "step": 6856
+ },
+ {
+ "epoch": 95.23765836609873,
+ "grad_norm": 0.2927812933921814,
+ "learning_rate": 0.0006,
+ "loss": 3.3890786170959473,
+ "step": 6857
+ },
+ {
+ "epoch": 95.2516382699869,
+ "grad_norm": 0.25509774684906006,
+ "learning_rate": 0.0006,
+ "loss": 3.4205737113952637,
+ "step": 6858
+ },
+ {
+ "epoch": 95.26561817387505,
+ "grad_norm": 0.23796725273132324,
+ "learning_rate": 0.0006,
+ "loss": 3.424884796142578,
+ "step": 6859
+ },
+ {
+ "epoch": 95.27959807776321,
+ "grad_norm": 0.23993532359600067,
+ "learning_rate": 0.0006,
+ "loss": 3.381929874420166,
+ "step": 6860
+ },
+ {
+ "epoch": 95.29357798165138,
+ "grad_norm": 0.24368232488632202,
+ "learning_rate": 0.0006,
+ "loss": 3.4277493953704834,
+ "step": 6861
+ },
+ {
+ "epoch": 95.30755788553954,
+ "grad_norm": 0.2876133322715759,
+ "learning_rate": 0.0006,
+ "loss": 3.4178905487060547,
+ "step": 6862
+ },
+ {
+ "epoch": 95.3215377894277,
+ "grad_norm": 0.29725784063339233,
+ "learning_rate": 0.0006,
+ "loss": 3.3831002712249756,
+ "step": 6863
+ },
+ {
+ "epoch": 95.33551769331586,
+ "grad_norm": 0.26999276876449585,
+ "learning_rate": 0.0006,
+ "loss": 3.4437084197998047,
+ "step": 6864
+ },
+ {
+ "epoch": 95.34949759720402,
+ "grad_norm": 0.2634904086589813,
+ "learning_rate": 0.0006,
+ "loss": 3.4158716201782227,
+ "step": 6865
+ },
+ {
+ "epoch": 95.36347750109218,
+ "grad_norm": 0.26630404591560364,
+ "learning_rate": 0.0006,
+ "loss": 3.408945083618164,
+ "step": 6866
+ },
+ {
+ "epoch": 95.37745740498035,
+ "grad_norm": 0.254926472902298,
+ "learning_rate": 0.0006,
+ "loss": 3.418691635131836,
+ "step": 6867
+ },
+ {
+ "epoch": 95.3914373088685,
+ "grad_norm": 0.26357024908065796,
+ "learning_rate": 0.0006,
+ "loss": 3.400965690612793,
+ "step": 6868
+ },
+ {
+ "epoch": 95.40541721275666,
+ "grad_norm": 0.27461501955986023,
+ "learning_rate": 0.0006,
+ "loss": 3.4147491455078125,
+ "step": 6869
+ },
+ {
+ "epoch": 95.41939711664482,
+ "grad_norm": 0.2720128893852234,
+ "learning_rate": 0.0006,
+ "loss": 3.4361958503723145,
+ "step": 6870
+ },
+ {
+ "epoch": 95.43337702053299,
+ "grad_norm": 0.25204896926879883,
+ "learning_rate": 0.0006,
+ "loss": 3.4017176628112793,
+ "step": 6871
+ },
+ {
+ "epoch": 95.44735692442114,
+ "grad_norm": 0.25743263959884644,
+ "learning_rate": 0.0006,
+ "loss": 3.432799816131592,
+ "step": 6872
+ },
+ {
+ "epoch": 95.4613368283093,
+ "grad_norm": 0.2920421063899994,
+ "learning_rate": 0.0006,
+ "loss": 3.4494667053222656,
+ "step": 6873
+ },
+ {
+ "epoch": 95.47531673219747,
+ "grad_norm": 0.2647784650325775,
+ "learning_rate": 0.0006,
+ "loss": 3.412154197692871,
+ "step": 6874
+ },
+ {
+ "epoch": 95.48929663608563,
+ "grad_norm": 0.24153636395931244,
+ "learning_rate": 0.0006,
+ "loss": 3.4469103813171387,
+ "step": 6875
+ },
+ {
+ "epoch": 95.50327653997378,
+ "grad_norm": 0.2455543428659439,
+ "learning_rate": 0.0006,
+ "loss": 3.3944413661956787,
+ "step": 6876
+ },
+ {
+ "epoch": 95.51725644386195,
+ "grad_norm": 0.22764283418655396,
+ "learning_rate": 0.0006,
+ "loss": 3.4298970699310303,
+ "step": 6877
+ },
+ {
+ "epoch": 95.53123634775011,
+ "grad_norm": 0.24529367685317993,
+ "learning_rate": 0.0006,
+ "loss": 3.441706657409668,
+ "step": 6878
+ },
+ {
+ "epoch": 95.54521625163827,
+ "grad_norm": 0.2799682915210724,
+ "learning_rate": 0.0006,
+ "loss": 3.448045253753662,
+ "step": 6879
+ },
+ {
+ "epoch": 95.55919615552644,
+ "grad_norm": 0.26428157091140747,
+ "learning_rate": 0.0006,
+ "loss": 3.4332120418548584,
+ "step": 6880
+ },
+ {
+ "epoch": 95.57317605941459,
+ "grad_norm": 0.22051474452018738,
+ "learning_rate": 0.0006,
+ "loss": 3.3927958011627197,
+ "step": 6881
+ },
+ {
+ "epoch": 95.58715596330275,
+ "grad_norm": 0.23627591133117676,
+ "learning_rate": 0.0006,
+ "loss": 3.4616801738739014,
+ "step": 6882
+ },
+ {
+ "epoch": 95.60113586719092,
+ "grad_norm": 0.28352341055870056,
+ "learning_rate": 0.0006,
+ "loss": 3.4393179416656494,
+ "step": 6883
+ },
+ {
+ "epoch": 95.61511577107908,
+ "grad_norm": 0.2789309322834015,
+ "learning_rate": 0.0006,
+ "loss": 3.427706241607666,
+ "step": 6884
+ },
+ {
+ "epoch": 95.62909567496723,
+ "grad_norm": 0.2807752192020416,
+ "learning_rate": 0.0006,
+ "loss": 3.4490489959716797,
+ "step": 6885
+ },
+ {
+ "epoch": 95.6430755788554,
+ "grad_norm": 0.24874471127986908,
+ "learning_rate": 0.0006,
+ "loss": 3.43320369720459,
+ "step": 6886
+ },
+ {
+ "epoch": 95.65705548274356,
+ "grad_norm": 0.21681128442287445,
+ "learning_rate": 0.0006,
+ "loss": 3.4079744815826416,
+ "step": 6887
+ },
+ {
+ "epoch": 95.67103538663171,
+ "grad_norm": 0.2251712679862976,
+ "learning_rate": 0.0006,
+ "loss": 3.4503328800201416,
+ "step": 6888
+ },
+ {
+ "epoch": 95.68501529051987,
+ "grad_norm": 0.2447051852941513,
+ "learning_rate": 0.0006,
+ "loss": 3.4318175315856934,
+ "step": 6889
+ },
+ {
+ "epoch": 95.69899519440804,
+ "grad_norm": 0.24111638963222504,
+ "learning_rate": 0.0006,
+ "loss": 3.4468672275543213,
+ "step": 6890
+ },
+ {
+ "epoch": 95.7129750982962,
+ "grad_norm": 0.2091565877199173,
+ "learning_rate": 0.0006,
+ "loss": 3.4336628913879395,
+ "step": 6891
+ },
+ {
+ "epoch": 95.72695500218435,
+ "grad_norm": 0.2004513144493103,
+ "learning_rate": 0.0006,
+ "loss": 3.432036876678467,
+ "step": 6892
+ },
+ {
+ "epoch": 95.74093490607252,
+ "grad_norm": 0.22274938225746155,
+ "learning_rate": 0.0006,
+ "loss": 3.4573302268981934,
+ "step": 6893
+ },
+ {
+ "epoch": 95.75491480996068,
+ "grad_norm": 0.22637732326984406,
+ "learning_rate": 0.0006,
+ "loss": 3.4259235858917236,
+ "step": 6894
+ },
+ {
+ "epoch": 95.76889471384884,
+ "grad_norm": 0.19517652690410614,
+ "learning_rate": 0.0006,
+ "loss": 3.434769630432129,
+ "step": 6895
+ },
+ {
+ "epoch": 95.78287461773701,
+ "grad_norm": 0.21309402585029602,
+ "learning_rate": 0.0006,
+ "loss": 3.4296374320983887,
+ "step": 6896
+ },
+ {
+ "epoch": 95.79685452162516,
+ "grad_norm": 0.22638419270515442,
+ "learning_rate": 0.0006,
+ "loss": 3.421220302581787,
+ "step": 6897
+ },
+ {
+ "epoch": 95.81083442551332,
+ "grad_norm": 0.22125105559825897,
+ "learning_rate": 0.0006,
+ "loss": 3.419447422027588,
+ "step": 6898
+ },
+ {
+ "epoch": 95.82481432940149,
+ "grad_norm": 0.20812378823757172,
+ "learning_rate": 0.0006,
+ "loss": 3.4455454349517822,
+ "step": 6899
+ },
+ {
+ "epoch": 95.83879423328965,
+ "grad_norm": 0.2165258377790451,
+ "learning_rate": 0.0006,
+ "loss": 3.469867706298828,
+ "step": 6900
+ },
+ {
+ "epoch": 95.8527741371778,
+ "grad_norm": 0.22964654862880707,
+ "learning_rate": 0.0006,
+ "loss": 3.457120180130005,
+ "step": 6901
+ },
+ {
+ "epoch": 95.86675404106597,
+ "grad_norm": 0.21772581338882446,
+ "learning_rate": 0.0006,
+ "loss": 3.474360466003418,
+ "step": 6902
+ },
+ {
+ "epoch": 95.88073394495413,
+ "grad_norm": 0.21107611060142517,
+ "learning_rate": 0.0006,
+ "loss": 3.422196388244629,
+ "step": 6903
+ },
+ {
+ "epoch": 95.89471384884229,
+ "grad_norm": 0.23257437348365784,
+ "learning_rate": 0.0006,
+ "loss": 3.4433343410491943,
+ "step": 6904
+ },
+ {
+ "epoch": 95.90869375273044,
+ "grad_norm": 0.2382373809814453,
+ "learning_rate": 0.0006,
+ "loss": 3.460090160369873,
+ "step": 6905
+ },
+ {
+ "epoch": 95.92267365661861,
+ "grad_norm": 0.26780450344085693,
+ "learning_rate": 0.0006,
+ "loss": 3.4034292697906494,
+ "step": 6906
+ },
+ {
+ "epoch": 95.93665356050677,
+ "grad_norm": 0.2656048536300659,
+ "learning_rate": 0.0006,
+ "loss": 3.421441078186035,
+ "step": 6907
+ },
+ {
+ "epoch": 95.95063346439493,
+ "grad_norm": 0.2481391578912735,
+ "learning_rate": 0.0006,
+ "loss": 3.4351892471313477,
+ "step": 6908
+ },
+ {
+ "epoch": 95.9646133682831,
+ "grad_norm": 0.23047798871994019,
+ "learning_rate": 0.0006,
+ "loss": 3.4360337257385254,
+ "step": 6909
+ },
+ {
+ "epoch": 95.97859327217125,
+ "grad_norm": 0.22177286446094513,
+ "learning_rate": 0.0006,
+ "loss": 3.4541707038879395,
+ "step": 6910
+ },
+ {
+ "epoch": 95.99257317605941,
+ "grad_norm": 0.23291228711605072,
+ "learning_rate": 0.0006,
+ "loss": 3.4537198543548584,
+ "step": 6911
+ },
+ {
+ "epoch": 96.0,
+ "grad_norm": 0.27189648151397705,
+ "learning_rate": 0.0006,
+ "loss": 3.4249231815338135,
+ "step": 6912
+ },
+ {
+ "epoch": 96.0,
+ "eval_loss": 4.011459827423096,
+ "eval_runtime": 46.226,
+ "eval_samples_per_second": 52.827,
+ "eval_steps_per_second": 3.31,
+ "step": 6912
+ },
+ {
+ "epoch": 96.01397990388816,
+ "grad_norm": 0.2647833526134491,
+ "learning_rate": 0.0006,
+ "loss": 3.3955211639404297,
+ "step": 6913
+ },
+ {
+ "epoch": 96.02795980777633,
+ "grad_norm": 0.25270307064056396,
+ "learning_rate": 0.0006,
+ "loss": 3.3608927726745605,
+ "step": 6914
+ },
+ {
+ "epoch": 96.04193971166448,
+ "grad_norm": 0.28907403349876404,
+ "learning_rate": 0.0006,
+ "loss": 3.4121265411376953,
+ "step": 6915
+ },
+ {
+ "epoch": 96.05591961555264,
+ "grad_norm": 0.2911223769187927,
+ "learning_rate": 0.0006,
+ "loss": 3.3746938705444336,
+ "step": 6916
+ },
+ {
+ "epoch": 96.06989951944081,
+ "grad_norm": 0.27579832077026367,
+ "learning_rate": 0.0006,
+ "loss": 3.4148240089416504,
+ "step": 6917
+ },
+ {
+ "epoch": 96.08387942332897,
+ "grad_norm": 0.22843949496746063,
+ "learning_rate": 0.0006,
+ "loss": 3.387901782989502,
+ "step": 6918
+ },
+ {
+ "epoch": 96.09785932721712,
+ "grad_norm": 0.26178500056266785,
+ "learning_rate": 0.0006,
+ "loss": 3.4015164375305176,
+ "step": 6919
+ },
+ {
+ "epoch": 96.1118392311053,
+ "grad_norm": 0.27727726101875305,
+ "learning_rate": 0.0006,
+ "loss": 3.4028522968292236,
+ "step": 6920
+ },
+ {
+ "epoch": 96.12581913499345,
+ "grad_norm": 0.319332093000412,
+ "learning_rate": 0.0006,
+ "loss": 3.392977237701416,
+ "step": 6921
+ },
+ {
+ "epoch": 96.1397990388816,
+ "grad_norm": 0.31348916888237,
+ "learning_rate": 0.0006,
+ "loss": 3.385939359664917,
+ "step": 6922
+ },
+ {
+ "epoch": 96.15377894276976,
+ "grad_norm": 0.2871760427951813,
+ "learning_rate": 0.0006,
+ "loss": 3.409151077270508,
+ "step": 6923
+ },
+ {
+ "epoch": 96.16775884665793,
+ "grad_norm": 0.28606656193733215,
+ "learning_rate": 0.0006,
+ "loss": 3.4309802055358887,
+ "step": 6924
+ },
+ {
+ "epoch": 96.18173875054609,
+ "grad_norm": 0.2706790864467621,
+ "learning_rate": 0.0006,
+ "loss": 3.421344518661499,
+ "step": 6925
+ },
+ {
+ "epoch": 96.19571865443424,
+ "grad_norm": 0.22992347180843353,
+ "learning_rate": 0.0006,
+ "loss": 3.389885663986206,
+ "step": 6926
+ },
+ {
+ "epoch": 96.20969855832242,
+ "grad_norm": 0.23005153238773346,
+ "learning_rate": 0.0006,
+ "loss": 3.4200448989868164,
+ "step": 6927
+ },
+ {
+ "epoch": 96.22367846221057,
+ "grad_norm": 0.24424074590206146,
+ "learning_rate": 0.0006,
+ "loss": 3.410604953765869,
+ "step": 6928
+ },
+ {
+ "epoch": 96.23765836609873,
+ "grad_norm": 0.2468445897102356,
+ "learning_rate": 0.0006,
+ "loss": 3.4214534759521484,
+ "step": 6929
+ },
+ {
+ "epoch": 96.2516382699869,
+ "grad_norm": 0.24055880308151245,
+ "learning_rate": 0.0006,
+ "loss": 3.422632932662964,
+ "step": 6930
+ },
+ {
+ "epoch": 96.26561817387505,
+ "grad_norm": 0.23448659479618073,
+ "learning_rate": 0.0006,
+ "loss": 3.419649839401245,
+ "step": 6931
+ },
+ {
+ "epoch": 96.27959807776321,
+ "grad_norm": 0.23696190118789673,
+ "learning_rate": 0.0006,
+ "loss": 3.4163503646850586,
+ "step": 6932
+ },
+ {
+ "epoch": 96.29357798165138,
+ "grad_norm": 0.24369139969348907,
+ "learning_rate": 0.0006,
+ "loss": 3.4260072708129883,
+ "step": 6933
+ },
+ {
+ "epoch": 96.30755788553954,
+ "grad_norm": 0.2468981295824051,
+ "learning_rate": 0.0006,
+ "loss": 3.4294350147247314,
+ "step": 6934
+ },
+ {
+ "epoch": 96.3215377894277,
+ "grad_norm": 0.23125499486923218,
+ "learning_rate": 0.0006,
+ "loss": 3.3992319107055664,
+ "step": 6935
+ },
+ {
+ "epoch": 96.33551769331586,
+ "grad_norm": 0.2452784776687622,
+ "learning_rate": 0.0006,
+ "loss": 3.4312644004821777,
+ "step": 6936
+ },
+ {
+ "epoch": 96.34949759720402,
+ "grad_norm": 0.28575655817985535,
+ "learning_rate": 0.0006,
+ "loss": 3.4514718055725098,
+ "step": 6937
+ },
+ {
+ "epoch": 96.36347750109218,
+ "grad_norm": 0.25076597929000854,
+ "learning_rate": 0.0006,
+ "loss": 3.4437408447265625,
+ "step": 6938
+ },
+ {
+ "epoch": 96.37745740498035,
+ "grad_norm": 0.23787032067775726,
+ "learning_rate": 0.0006,
+ "loss": 3.421959400177002,
+ "step": 6939
+ },
+ {
+ "epoch": 96.3914373088685,
+ "grad_norm": 0.26453065872192383,
+ "learning_rate": 0.0006,
+ "loss": 3.425009250640869,
+ "step": 6940
+ },
+ {
+ "epoch": 96.40541721275666,
+ "grad_norm": 0.26447272300720215,
+ "learning_rate": 0.0006,
+ "loss": 3.429738998413086,
+ "step": 6941
+ },
+ {
+ "epoch": 96.41939711664482,
+ "grad_norm": 0.21486102044582367,
+ "learning_rate": 0.0006,
+ "loss": 3.3837761878967285,
+ "step": 6942
+ },
+ {
+ "epoch": 96.43337702053299,
+ "grad_norm": 0.24059994518756866,
+ "learning_rate": 0.0006,
+ "loss": 3.4046714305877686,
+ "step": 6943
+ },
+ {
+ "epoch": 96.44735692442114,
+ "grad_norm": 0.258169949054718,
+ "learning_rate": 0.0006,
+ "loss": 3.4217031002044678,
+ "step": 6944
+ },
+ {
+ "epoch": 96.4613368283093,
+ "grad_norm": 0.24300728738307953,
+ "learning_rate": 0.0006,
+ "loss": 3.3992562294006348,
+ "step": 6945
+ },
+ {
+ "epoch": 96.47531673219747,
+ "grad_norm": 0.24181129038333893,
+ "learning_rate": 0.0006,
+ "loss": 3.414336681365967,
+ "step": 6946
+ },
+ {
+ "epoch": 96.48929663608563,
+ "grad_norm": 0.24553567171096802,
+ "learning_rate": 0.0006,
+ "loss": 3.430659770965576,
+ "step": 6947
+ },
+ {
+ "epoch": 96.50327653997378,
+ "grad_norm": 0.2551525831222534,
+ "learning_rate": 0.0006,
+ "loss": 3.4284164905548096,
+ "step": 6948
+ },
+ {
+ "epoch": 96.51725644386195,
+ "grad_norm": 0.2647155523300171,
+ "learning_rate": 0.0006,
+ "loss": 3.4169228076934814,
+ "step": 6949
+ },
+ {
+ "epoch": 96.53123634775011,
+ "grad_norm": 0.25899964570999146,
+ "learning_rate": 0.0006,
+ "loss": 3.4379115104675293,
+ "step": 6950
+ },
+ {
+ "epoch": 96.54521625163827,
+ "grad_norm": 0.27875664830207825,
+ "learning_rate": 0.0006,
+ "loss": 3.4562020301818848,
+ "step": 6951
+ },
+ {
+ "epoch": 96.55919615552644,
+ "grad_norm": 0.24753323197364807,
+ "learning_rate": 0.0006,
+ "loss": 3.4197793006896973,
+ "step": 6952
+ },
+ {
+ "epoch": 96.57317605941459,
+ "grad_norm": 0.2356928288936615,
+ "learning_rate": 0.0006,
+ "loss": 3.4789366722106934,
+ "step": 6953
+ },
+ {
+ "epoch": 96.58715596330275,
+ "grad_norm": 0.2472524791955948,
+ "learning_rate": 0.0006,
+ "loss": 3.4190516471862793,
+ "step": 6954
+ },
+ {
+ "epoch": 96.60113586719092,
+ "grad_norm": 0.24082279205322266,
+ "learning_rate": 0.0006,
+ "loss": 3.404487133026123,
+ "step": 6955
+ },
+ {
+ "epoch": 96.61511577107908,
+ "grad_norm": 0.2515330910682678,
+ "learning_rate": 0.0006,
+ "loss": 3.444387912750244,
+ "step": 6956
+ },
+ {
+ "epoch": 96.62909567496723,
+ "grad_norm": 0.2748710811138153,
+ "learning_rate": 0.0006,
+ "loss": 3.4763565063476562,
+ "step": 6957
+ },
+ {
+ "epoch": 96.6430755788554,
+ "grad_norm": 0.2377864271402359,
+ "learning_rate": 0.0006,
+ "loss": 3.4653539657592773,
+ "step": 6958
+ },
+ {
+ "epoch": 96.65705548274356,
+ "grad_norm": 0.2489478886127472,
+ "learning_rate": 0.0006,
+ "loss": 3.413327693939209,
+ "step": 6959
+ },
+ {
+ "epoch": 96.67103538663171,
+ "grad_norm": 0.3205331265926361,
+ "learning_rate": 0.0006,
+ "loss": 3.4389123916625977,
+ "step": 6960
+ },
+ {
+ "epoch": 96.68501529051987,
+ "grad_norm": 0.3570943772792816,
+ "learning_rate": 0.0006,
+ "loss": 3.4630517959594727,
+ "step": 6961
+ },
+ {
+ "epoch": 96.69899519440804,
+ "grad_norm": 0.2557365894317627,
+ "learning_rate": 0.0006,
+ "loss": 3.423786163330078,
+ "step": 6962
+ },
+ {
+ "epoch": 96.7129750982962,
+ "grad_norm": 0.2893749475479126,
+ "learning_rate": 0.0006,
+ "loss": 3.4100215435028076,
+ "step": 6963
+ },
+ {
+ "epoch": 96.72695500218435,
+ "grad_norm": 0.309200257062912,
+ "learning_rate": 0.0006,
+ "loss": 3.4300613403320312,
+ "step": 6964
+ },
+ {
+ "epoch": 96.74093490607252,
+ "grad_norm": 0.3004794716835022,
+ "learning_rate": 0.0006,
+ "loss": 3.4163107872009277,
+ "step": 6965
+ },
+ {
+ "epoch": 96.75491480996068,
+ "grad_norm": 0.2843557894229889,
+ "learning_rate": 0.0006,
+ "loss": 3.428269147872925,
+ "step": 6966
+ },
+ {
+ "epoch": 96.76889471384884,
+ "grad_norm": 0.2709047794342041,
+ "learning_rate": 0.0006,
+ "loss": 3.407784938812256,
+ "step": 6967
+ },
+ {
+ "epoch": 96.78287461773701,
+ "grad_norm": 0.27668923139572144,
+ "learning_rate": 0.0006,
+ "loss": 3.435605525970459,
+ "step": 6968
+ },
+ {
+ "epoch": 96.79685452162516,
+ "grad_norm": 0.2687087655067444,
+ "learning_rate": 0.0006,
+ "loss": 3.4313650131225586,
+ "step": 6969
+ },
+ {
+ "epoch": 96.81083442551332,
+ "grad_norm": 0.2453852891921997,
+ "learning_rate": 0.0006,
+ "loss": 3.402200698852539,
+ "step": 6970
+ },
+ {
+ "epoch": 96.82481432940149,
+ "grad_norm": 0.24708250164985657,
+ "learning_rate": 0.0006,
+ "loss": 3.4309167861938477,
+ "step": 6971
+ },
+ {
+ "epoch": 96.83879423328965,
+ "grad_norm": 0.22140903770923615,
+ "learning_rate": 0.0006,
+ "loss": 3.4170753955841064,
+ "step": 6972
+ },
+ {
+ "epoch": 96.8527741371778,
+ "grad_norm": 0.24796248972415924,
+ "learning_rate": 0.0006,
+ "loss": 3.437039852142334,
+ "step": 6973
+ },
+ {
+ "epoch": 96.86675404106597,
+ "grad_norm": 0.24599973857402802,
+ "learning_rate": 0.0006,
+ "loss": 3.460966110229492,
+ "step": 6974
+ },
+ {
+ "epoch": 96.88073394495413,
+ "grad_norm": 0.23605215549468994,
+ "learning_rate": 0.0006,
+ "loss": 3.3895936012268066,
+ "step": 6975
+ },
+ {
+ "epoch": 96.89471384884229,
+ "grad_norm": 0.2528811991214752,
+ "learning_rate": 0.0006,
+ "loss": 3.4441096782684326,
+ "step": 6976
+ },
+ {
+ "epoch": 96.90869375273044,
+ "grad_norm": 0.23016901314258575,
+ "learning_rate": 0.0006,
+ "loss": 3.419241428375244,
+ "step": 6977
+ },
+ {
+ "epoch": 96.92267365661861,
+ "grad_norm": 0.2144787609577179,
+ "learning_rate": 0.0006,
+ "loss": 3.4478232860565186,
+ "step": 6978
+ },
+ {
+ "epoch": 96.93665356050677,
+ "grad_norm": 0.22707076370716095,
+ "learning_rate": 0.0006,
+ "loss": 3.447127342224121,
+ "step": 6979
+ },
+ {
+ "epoch": 96.95063346439493,
+ "grad_norm": 0.22142429649829865,
+ "learning_rate": 0.0006,
+ "loss": 3.4175167083740234,
+ "step": 6980
+ },
+ {
+ "epoch": 96.9646133682831,
+ "grad_norm": 0.21032242476940155,
+ "learning_rate": 0.0006,
+ "loss": 3.4574999809265137,
+ "step": 6981
+ },
+ {
+ "epoch": 96.97859327217125,
+ "grad_norm": 0.23074059188365936,
+ "learning_rate": 0.0006,
+ "loss": 3.4582035541534424,
+ "step": 6982
+ },
+ {
+ "epoch": 96.99257317605941,
+ "grad_norm": 0.2571543753147125,
+ "learning_rate": 0.0006,
+ "loss": 3.4377858638763428,
+ "step": 6983
+ },
+ {
+ "epoch": 97.0,
+ "grad_norm": 0.2604575455188751,
+ "learning_rate": 0.0006,
+ "loss": 3.441763162612915,
+ "step": 6984
+ },
+ {
+ "epoch": 97.0,
+ "eval_loss": 4.011377334594727,
+ "eval_runtime": 46.3519,
+ "eval_samples_per_second": 52.684,
+ "eval_steps_per_second": 3.301,
+ "step": 6984
+ },
+ {
+ "epoch": 97.01397990388816,
+ "grad_norm": 0.22909881174564362,
+ "learning_rate": 0.0006,
+ "loss": 3.4258463382720947,
+ "step": 6985
+ },
+ {
+ "epoch": 97.02795980777633,
+ "grad_norm": 0.2966548502445221,
+ "learning_rate": 0.0006,
+ "loss": 3.374732732772827,
+ "step": 6986
+ },
+ {
+ "epoch": 97.04193971166448,
+ "grad_norm": 0.3361221253871918,
+ "learning_rate": 0.0006,
+ "loss": 3.3706841468811035,
+ "step": 6987
+ },
+ {
+ "epoch": 97.05591961555264,
+ "grad_norm": 0.2925340533256531,
+ "learning_rate": 0.0006,
+ "loss": 3.4046804904937744,
+ "step": 6988
+ },
+ {
+ "epoch": 97.06989951944081,
+ "grad_norm": 0.2174915373325348,
+ "learning_rate": 0.0006,
+ "loss": 3.38019061088562,
+ "step": 6989
+ },
+ {
+ "epoch": 97.08387942332897,
+ "grad_norm": 0.23522713780403137,
+ "learning_rate": 0.0006,
+ "loss": 3.372313976287842,
+ "step": 6990
+ },
+ {
+ "epoch": 97.09785932721712,
+ "grad_norm": 0.25715625286102295,
+ "learning_rate": 0.0006,
+ "loss": 3.368464469909668,
+ "step": 6991
+ },
+ {
+ "epoch": 97.1118392311053,
+ "grad_norm": 0.26934152841567993,
+ "learning_rate": 0.0006,
+ "loss": 3.387639045715332,
+ "step": 6992
+ },
+ {
+ "epoch": 97.12581913499345,
+ "grad_norm": 0.2608650326728821,
+ "learning_rate": 0.0006,
+ "loss": 3.383361339569092,
+ "step": 6993
+ },
+ {
+ "epoch": 97.1397990388816,
+ "grad_norm": 0.23834708333015442,
+ "learning_rate": 0.0006,
+ "loss": 3.436835765838623,
+ "step": 6994
+ },
+ {
+ "epoch": 97.15377894276976,
+ "grad_norm": 0.24999502301216125,
+ "learning_rate": 0.0006,
+ "loss": 3.4060587882995605,
+ "step": 6995
+ },
+ {
+ "epoch": 97.16775884665793,
+ "grad_norm": 0.2580015957355499,
+ "learning_rate": 0.0006,
+ "loss": 3.3916139602661133,
+ "step": 6996
+ },
+ {
+ "epoch": 97.18173875054609,
+ "grad_norm": 0.24891144037246704,
+ "learning_rate": 0.0006,
+ "loss": 3.3372092247009277,
+ "step": 6997
+ },
+ {
+ "epoch": 97.19571865443424,
+ "grad_norm": 0.23564006388187408,
+ "learning_rate": 0.0006,
+ "loss": 3.401041030883789,
+ "step": 6998
+ },
+ {
+ "epoch": 97.20969855832242,
+ "grad_norm": 0.2602943778038025,
+ "learning_rate": 0.0006,
+ "loss": 3.416884422302246,
+ "step": 6999
+ },
+ {
+ "epoch": 97.22367846221057,
+ "grad_norm": 0.2518153190612793,
+ "learning_rate": 0.0006,
+ "loss": 3.4140162467956543,
+ "step": 7000
+ },
+ {
+ "epoch": 97.23765836609873,
+ "grad_norm": 0.23507905006408691,
+ "learning_rate": 0.0006,
+ "loss": 3.417100429534912,
+ "step": 7001
+ },
+ {
+ "epoch": 97.2516382699869,
+ "grad_norm": 0.2355092465877533,
+ "learning_rate": 0.0006,
+ "loss": 3.393324613571167,
+ "step": 7002
+ },
+ {
+ "epoch": 97.26561817387505,
+ "grad_norm": 0.23146244883537292,
+ "learning_rate": 0.0006,
+ "loss": 3.4219746589660645,
+ "step": 7003
+ },
+ {
+ "epoch": 97.27959807776321,
+ "grad_norm": 0.23568885028362274,
+ "learning_rate": 0.0006,
+ "loss": 3.414395809173584,
+ "step": 7004
+ },
+ {
+ "epoch": 97.29357798165138,
+ "grad_norm": 0.254472553730011,
+ "learning_rate": 0.0006,
+ "loss": 3.413393020629883,
+ "step": 7005
+ },
+ {
+ "epoch": 97.30755788553954,
+ "grad_norm": 0.2596627175807953,
+ "learning_rate": 0.0006,
+ "loss": 3.3834261894226074,
+ "step": 7006
+ },
+ {
+ "epoch": 97.3215377894277,
+ "grad_norm": 0.2454591691493988,
+ "learning_rate": 0.0006,
+ "loss": 3.413412570953369,
+ "step": 7007
+ },
+ {
+ "epoch": 97.33551769331586,
+ "grad_norm": 0.23426012694835663,
+ "learning_rate": 0.0006,
+ "loss": 3.373229503631592,
+ "step": 7008
+ },
+ {
+ "epoch": 97.34949759720402,
+ "grad_norm": 0.21653792262077332,
+ "learning_rate": 0.0006,
+ "loss": 3.4296131134033203,
+ "step": 7009
+ },
+ {
+ "epoch": 97.36347750109218,
+ "grad_norm": 0.24625374376773834,
+ "learning_rate": 0.0006,
+ "loss": 3.4008898735046387,
+ "step": 7010
+ },
+ {
+ "epoch": 97.37745740498035,
+ "grad_norm": 0.25702884793281555,
+ "learning_rate": 0.0006,
+ "loss": 3.4266738891601562,
+ "step": 7011
+ },
+ {
+ "epoch": 97.3914373088685,
+ "grad_norm": 0.22890843451023102,
+ "learning_rate": 0.0006,
+ "loss": 3.3876736164093018,
+ "step": 7012
+ },
+ {
+ "epoch": 97.40541721275666,
+ "grad_norm": 0.22780199348926544,
+ "learning_rate": 0.0006,
+ "loss": 3.4438958168029785,
+ "step": 7013
+ },
+ {
+ "epoch": 97.41939711664482,
+ "grad_norm": 0.25568875670433044,
+ "learning_rate": 0.0006,
+ "loss": 3.444070339202881,
+ "step": 7014
+ },
+ {
+ "epoch": 97.43337702053299,
+ "grad_norm": 0.2968498468399048,
+ "learning_rate": 0.0006,
+ "loss": 3.403079032897949,
+ "step": 7015
+ },
+ {
+ "epoch": 97.44735692442114,
+ "grad_norm": 0.285683274269104,
+ "learning_rate": 0.0006,
+ "loss": 3.419741630554199,
+ "step": 7016
+ },
+ {
+ "epoch": 97.4613368283093,
+ "grad_norm": 0.22948117554187775,
+ "learning_rate": 0.0006,
+ "loss": 3.3973541259765625,
+ "step": 7017
+ },
+ {
+ "epoch": 97.47531673219747,
+ "grad_norm": 0.250344455242157,
+ "learning_rate": 0.0006,
+ "loss": 3.404179811477661,
+ "step": 7018
+ },
+ {
+ "epoch": 97.48929663608563,
+ "grad_norm": 0.3332156240940094,
+ "learning_rate": 0.0006,
+ "loss": 3.409053087234497,
+ "step": 7019
+ },
+ {
+ "epoch": 97.50327653997378,
+ "grad_norm": 0.3408505916595459,
+ "learning_rate": 0.0006,
+ "loss": 3.4359312057495117,
+ "step": 7020
+ },
+ {
+ "epoch": 97.51725644386195,
+ "grad_norm": 0.27561336755752563,
+ "learning_rate": 0.0006,
+ "loss": 3.465048313140869,
+ "step": 7021
+ },
+ {
+ "epoch": 97.53123634775011,
+ "grad_norm": 0.265127956867218,
+ "learning_rate": 0.0006,
+ "loss": 3.4502217769622803,
+ "step": 7022
+ },
+ {
+ "epoch": 97.54521625163827,
+ "grad_norm": 0.28517967462539673,
+ "learning_rate": 0.0006,
+ "loss": 3.4243972301483154,
+ "step": 7023
+ },
+ {
+ "epoch": 97.55919615552644,
+ "grad_norm": 0.2535637617111206,
+ "learning_rate": 0.0006,
+ "loss": 3.4321155548095703,
+ "step": 7024
+ },
+ {
+ "epoch": 97.57317605941459,
+ "grad_norm": 0.21464410424232483,
+ "learning_rate": 0.0006,
+ "loss": 3.4000067710876465,
+ "step": 7025
+ },
+ {
+ "epoch": 97.58715596330275,
+ "grad_norm": 0.23258662223815918,
+ "learning_rate": 0.0006,
+ "loss": 3.433676242828369,
+ "step": 7026
+ },
+ {
+ "epoch": 97.60113586719092,
+ "grad_norm": 0.24686066806316376,
+ "learning_rate": 0.0006,
+ "loss": 3.4035940170288086,
+ "step": 7027
+ },
+ {
+ "epoch": 97.61511577107908,
+ "grad_norm": 0.257376492023468,
+ "learning_rate": 0.0006,
+ "loss": 3.45621919631958,
+ "step": 7028
+ },
+ {
+ "epoch": 97.62909567496723,
+ "grad_norm": 0.25122857093811035,
+ "learning_rate": 0.0006,
+ "loss": 3.4327902793884277,
+ "step": 7029
+ },
+ {
+ "epoch": 97.6430755788554,
+ "grad_norm": 0.2314319759607315,
+ "learning_rate": 0.0006,
+ "loss": 3.456784725189209,
+ "step": 7030
+ },
+ {
+ "epoch": 97.65705548274356,
+ "grad_norm": 0.22260230779647827,
+ "learning_rate": 0.0006,
+ "loss": 3.4195773601531982,
+ "step": 7031
+ },
+ {
+ "epoch": 97.67103538663171,
+ "grad_norm": 0.2518390417098999,
+ "learning_rate": 0.0006,
+ "loss": 3.4255805015563965,
+ "step": 7032
+ },
+ {
+ "epoch": 97.68501529051987,
+ "grad_norm": 0.2541879415512085,
+ "learning_rate": 0.0006,
+ "loss": 3.4235100746154785,
+ "step": 7033
+ },
+ {
+ "epoch": 97.69899519440804,
+ "grad_norm": 0.2579449713230133,
+ "learning_rate": 0.0006,
+ "loss": 3.445331573486328,
+ "step": 7034
+ },
+ {
+ "epoch": 97.7129750982962,
+ "grad_norm": 0.24595585465431213,
+ "learning_rate": 0.0006,
+ "loss": 3.4292638301849365,
+ "step": 7035
+ },
+ {
+ "epoch": 97.72695500218435,
+ "grad_norm": 0.2342410534620285,
+ "learning_rate": 0.0006,
+ "loss": 3.4138965606689453,
+ "step": 7036
+ },
+ {
+ "epoch": 97.74093490607252,
+ "grad_norm": 0.24827103316783905,
+ "learning_rate": 0.0006,
+ "loss": 3.4228718280792236,
+ "step": 7037
+ },
+ {
+ "epoch": 97.75491480996068,
+ "grad_norm": 0.21808716654777527,
+ "learning_rate": 0.0006,
+ "loss": 3.428473711013794,
+ "step": 7038
+ },
+ {
+ "epoch": 97.76889471384884,
+ "grad_norm": 0.23090261220932007,
+ "learning_rate": 0.0006,
+ "loss": 3.415066719055176,
+ "step": 7039
+ },
+ {
+ "epoch": 97.78287461773701,
+ "grad_norm": 0.24480170011520386,
+ "learning_rate": 0.0006,
+ "loss": 3.4320435523986816,
+ "step": 7040
+ },
+ {
+ "epoch": 97.79685452162516,
+ "grad_norm": 0.24455145001411438,
+ "learning_rate": 0.0006,
+ "loss": 3.4648842811584473,
+ "step": 7041
+ },
+ {
+ "epoch": 97.81083442551332,
+ "grad_norm": 0.22985930740833282,
+ "learning_rate": 0.0006,
+ "loss": 3.4382681846618652,
+ "step": 7042
+ },
+ {
+ "epoch": 97.82481432940149,
+ "grad_norm": 0.22766906023025513,
+ "learning_rate": 0.0006,
+ "loss": 3.468289375305176,
+ "step": 7043
+ },
+ {
+ "epoch": 97.83879423328965,
+ "grad_norm": 0.21265935897827148,
+ "learning_rate": 0.0006,
+ "loss": 3.4671525955200195,
+ "step": 7044
+ },
+ {
+ "epoch": 97.8527741371778,
+ "grad_norm": 0.23544852435588837,
+ "learning_rate": 0.0006,
+ "loss": 3.431774139404297,
+ "step": 7045
+ },
+ {
+ "epoch": 97.86675404106597,
+ "grad_norm": 0.22579970955848694,
+ "learning_rate": 0.0006,
+ "loss": 3.446826457977295,
+ "step": 7046
+ },
+ {
+ "epoch": 97.88073394495413,
+ "grad_norm": 0.25577542185783386,
+ "learning_rate": 0.0006,
+ "loss": 3.468076705932617,
+ "step": 7047
+ },
+ {
+ "epoch": 97.89471384884229,
+ "grad_norm": 0.2818916141986847,
+ "learning_rate": 0.0006,
+ "loss": 3.4355826377868652,
+ "step": 7048
+ },
+ {
+ "epoch": 97.90869375273044,
+ "grad_norm": 0.24697646498680115,
+ "learning_rate": 0.0006,
+ "loss": 3.4275593757629395,
+ "step": 7049
+ },
+ {
+ "epoch": 97.92267365661861,
+ "grad_norm": 0.26724129915237427,
+ "learning_rate": 0.0006,
+ "loss": 3.4387049674987793,
+ "step": 7050
+ },
+ {
+ "epoch": 97.93665356050677,
+ "grad_norm": 0.28781992197036743,
+ "learning_rate": 0.0006,
+ "loss": 3.4740567207336426,
+ "step": 7051
+ },
+ {
+ "epoch": 97.95063346439493,
+ "grad_norm": 0.2984851598739624,
+ "learning_rate": 0.0006,
+ "loss": 3.4533026218414307,
+ "step": 7052
+ },
+ {
+ "epoch": 97.9646133682831,
+ "grad_norm": 0.2739406228065491,
+ "learning_rate": 0.0006,
+ "loss": 3.4459667205810547,
+ "step": 7053
+ },
+ {
+ "epoch": 97.97859327217125,
+ "grad_norm": 0.22158858180046082,
+ "learning_rate": 0.0006,
+ "loss": 3.4308080673217773,
+ "step": 7054
+ },
+ {
+ "epoch": 97.99257317605941,
+ "grad_norm": 0.24378103017807007,
+ "learning_rate": 0.0006,
+ "loss": 3.427273750305176,
+ "step": 7055
+ },
+ {
+ "epoch": 98.0,
+ "grad_norm": 0.28654205799102783,
+ "learning_rate": 0.0006,
+ "loss": 3.452702522277832,
+ "step": 7056
+ },
+ {
+ "epoch": 98.0,
+ "eval_loss": 4.027743816375732,
+ "eval_runtime": 46.6264,
+ "eval_samples_per_second": 52.374,
+ "eval_steps_per_second": 3.281,
+ "step": 7056
+ },
+ {
+ "epoch": 98.01397990388816,
+ "grad_norm": 0.28469833731651306,
+ "learning_rate": 0.0006,
+ "loss": 3.417839527130127,
+ "step": 7057
+ },
+ {
+ "epoch": 98.02795980777633,
+ "grad_norm": 0.32095852494239807,
+ "learning_rate": 0.0006,
+ "loss": 3.371337890625,
+ "step": 7058
+ },
+ {
+ "epoch": 98.04193971166448,
+ "grad_norm": 0.29403430223464966,
+ "learning_rate": 0.0006,
+ "loss": 3.422992706298828,
+ "step": 7059
+ },
+ {
+ "epoch": 98.05591961555264,
+ "grad_norm": 0.2642280161380768,
+ "learning_rate": 0.0006,
+ "loss": 3.4006805419921875,
+ "step": 7060
+ },
+ {
+ "epoch": 98.06989951944081,
+ "grad_norm": 0.2504214644432068,
+ "learning_rate": 0.0006,
+ "loss": 3.4205284118652344,
+ "step": 7061
+ },
+ {
+ "epoch": 98.08387942332897,
+ "grad_norm": 0.2707843780517578,
+ "learning_rate": 0.0006,
+ "loss": 3.3824353218078613,
+ "step": 7062
+ },
+ {
+ "epoch": 98.09785932721712,
+ "grad_norm": 0.2731642425060272,
+ "learning_rate": 0.0006,
+ "loss": 3.405395746231079,
+ "step": 7063
+ },
+ {
+ "epoch": 98.1118392311053,
+ "grad_norm": 0.27492862939834595,
+ "learning_rate": 0.0006,
+ "loss": 3.387796640396118,
+ "step": 7064
+ },
+ {
+ "epoch": 98.12581913499345,
+ "grad_norm": 0.3238523006439209,
+ "learning_rate": 0.0006,
+ "loss": 3.417257308959961,
+ "step": 7065
+ },
+ {
+ "epoch": 98.1397990388816,
+ "grad_norm": 0.26247677206993103,
+ "learning_rate": 0.0006,
+ "loss": 3.414429187774658,
+ "step": 7066
+ },
+ {
+ "epoch": 98.15377894276976,
+ "grad_norm": 0.24028396606445312,
+ "learning_rate": 0.0006,
+ "loss": 3.365755081176758,
+ "step": 7067
+ },
+ {
+ "epoch": 98.16775884665793,
+ "grad_norm": 0.3148117661476135,
+ "learning_rate": 0.0006,
+ "loss": 3.3858046531677246,
+ "step": 7068
+ },
+ {
+ "epoch": 98.18173875054609,
+ "grad_norm": 0.3227834403514862,
+ "learning_rate": 0.0006,
+ "loss": 3.4028730392456055,
+ "step": 7069
+ },
+ {
+ "epoch": 98.19571865443424,
+ "grad_norm": 0.3099064528942108,
+ "learning_rate": 0.0006,
+ "loss": 3.4112987518310547,
+ "step": 7070
+ },
+ {
+ "epoch": 98.20969855832242,
+ "grad_norm": 0.28471946716308594,
+ "learning_rate": 0.0006,
+ "loss": 3.4158236980438232,
+ "step": 7071
+ },
+ {
+ "epoch": 98.22367846221057,
+ "grad_norm": 0.25547415018081665,
+ "learning_rate": 0.0006,
+ "loss": 3.387791633605957,
+ "step": 7072
+ },
+ {
+ "epoch": 98.23765836609873,
+ "grad_norm": 0.25831133127212524,
+ "learning_rate": 0.0006,
+ "loss": 3.428596258163452,
+ "step": 7073
+ },
+ {
+ "epoch": 98.2516382699869,
+ "grad_norm": 0.2929138243198395,
+ "learning_rate": 0.0006,
+ "loss": 3.398820400238037,
+ "step": 7074
+ },
+ {
+ "epoch": 98.26561817387505,
+ "grad_norm": 0.2595236599445343,
+ "learning_rate": 0.0006,
+ "loss": 3.408811330795288,
+ "step": 7075
+ },
+ {
+ "epoch": 98.27959807776321,
+ "grad_norm": 0.23886270821094513,
+ "learning_rate": 0.0006,
+ "loss": 3.4121809005737305,
+ "step": 7076
+ },
+ {
+ "epoch": 98.29357798165138,
+ "grad_norm": 0.25750792026519775,
+ "learning_rate": 0.0006,
+ "loss": 3.4101905822753906,
+ "step": 7077
+ },
+ {
+ "epoch": 98.30755788553954,
+ "grad_norm": 0.28744208812713623,
+ "learning_rate": 0.0006,
+ "loss": 3.40932297706604,
+ "step": 7078
+ },
+ {
+ "epoch": 98.3215377894277,
+ "grad_norm": 0.29891249537467957,
+ "learning_rate": 0.0006,
+ "loss": 3.3784914016723633,
+ "step": 7079
+ },
+ {
+ "epoch": 98.33551769331586,
+ "grad_norm": 0.25298601388931274,
+ "learning_rate": 0.0006,
+ "loss": 3.4063711166381836,
+ "step": 7080
+ },
+ {
+ "epoch": 98.34949759720402,
+ "grad_norm": 0.23953017592430115,
+ "learning_rate": 0.0006,
+ "loss": 3.4444284439086914,
+ "step": 7081
+ },
+ {
+ "epoch": 98.36347750109218,
+ "grad_norm": 0.2408098429441452,
+ "learning_rate": 0.0006,
+ "loss": 3.3937854766845703,
+ "step": 7082
+ },
+ {
+ "epoch": 98.37745740498035,
+ "grad_norm": 0.24948182702064514,
+ "learning_rate": 0.0006,
+ "loss": 3.411961078643799,
+ "step": 7083
+ },
+ {
+ "epoch": 98.3914373088685,
+ "grad_norm": 0.229538232088089,
+ "learning_rate": 0.0006,
+ "loss": 3.42081880569458,
+ "step": 7084
+ },
+ {
+ "epoch": 98.40541721275666,
+ "grad_norm": 0.21823282539844513,
+ "learning_rate": 0.0006,
+ "loss": 3.408637046813965,
+ "step": 7085
+ },
+ {
+ "epoch": 98.41939711664482,
+ "grad_norm": 0.2503580152988434,
+ "learning_rate": 0.0006,
+ "loss": 3.401005268096924,
+ "step": 7086
+ },
+ {
+ "epoch": 98.43337702053299,
+ "grad_norm": 0.2669687271118164,
+ "learning_rate": 0.0006,
+ "loss": 3.4314870834350586,
+ "step": 7087
+ },
+ {
+ "epoch": 98.44735692442114,
+ "grad_norm": 0.2801942825317383,
+ "learning_rate": 0.0006,
+ "loss": 3.36496901512146,
+ "step": 7088
+ },
+ {
+ "epoch": 98.4613368283093,
+ "grad_norm": 0.26773256063461304,
+ "learning_rate": 0.0006,
+ "loss": 3.429931163787842,
+ "step": 7089
+ },
+ {
+ "epoch": 98.47531673219747,
+ "grad_norm": 0.25005799531936646,
+ "learning_rate": 0.0006,
+ "loss": 3.4273290634155273,
+ "step": 7090
+ },
+ {
+ "epoch": 98.48929663608563,
+ "grad_norm": 0.2305680513381958,
+ "learning_rate": 0.0006,
+ "loss": 3.4064276218414307,
+ "step": 7091
+ },
+ {
+ "epoch": 98.50327653997378,
+ "grad_norm": 0.2404867559671402,
+ "learning_rate": 0.0006,
+ "loss": 3.4383482933044434,
+ "step": 7092
+ },
+ {
+ "epoch": 98.51725644386195,
+ "grad_norm": 0.26175588369369507,
+ "learning_rate": 0.0006,
+ "loss": 3.4333410263061523,
+ "step": 7093
+ },
+ {
+ "epoch": 98.53123634775011,
+ "grad_norm": 0.24268215894699097,
+ "learning_rate": 0.0006,
+ "loss": 3.4232101440429688,
+ "step": 7094
+ },
+ {
+ "epoch": 98.54521625163827,
+ "grad_norm": 0.26732951402664185,
+ "learning_rate": 0.0006,
+ "loss": 3.440945863723755,
+ "step": 7095
+ },
+ {
+ "epoch": 98.55919615552644,
+ "grad_norm": 0.23761703073978424,
+ "learning_rate": 0.0006,
+ "loss": 3.436163902282715,
+ "step": 7096
+ },
+ {
+ "epoch": 98.57317605941459,
+ "grad_norm": 0.2214505821466446,
+ "learning_rate": 0.0006,
+ "loss": 3.425570487976074,
+ "step": 7097
+ },
+ {
+ "epoch": 98.58715596330275,
+ "grad_norm": 0.2789515256881714,
+ "learning_rate": 0.0006,
+ "loss": 3.428680896759033,
+ "step": 7098
+ },
+ {
+ "epoch": 98.60113586719092,
+ "grad_norm": 0.3267577886581421,
+ "learning_rate": 0.0006,
+ "loss": 3.433621406555176,
+ "step": 7099
+ },
+ {
+ "epoch": 98.61511577107908,
+ "grad_norm": 0.2883777320384979,
+ "learning_rate": 0.0006,
+ "loss": 3.4509878158569336,
+ "step": 7100
+ },
+ {
+ "epoch": 98.62909567496723,
+ "grad_norm": 0.2489577978849411,
+ "learning_rate": 0.0006,
+ "loss": 3.428767681121826,
+ "step": 7101
+ },
+ {
+ "epoch": 98.6430755788554,
+ "grad_norm": 0.286741703748703,
+ "learning_rate": 0.0006,
+ "loss": 3.4258017539978027,
+ "step": 7102
+ },
+ {
+ "epoch": 98.65705548274356,
+ "grad_norm": 0.31969285011291504,
+ "learning_rate": 0.0006,
+ "loss": 3.4256482124328613,
+ "step": 7103
+ },
+ {
+ "epoch": 98.67103538663171,
+ "grad_norm": 0.2737012803554535,
+ "learning_rate": 0.0006,
+ "loss": 3.4260573387145996,
+ "step": 7104
+ },
+ {
+ "epoch": 98.68501529051987,
+ "grad_norm": 0.22584497928619385,
+ "learning_rate": 0.0006,
+ "loss": 3.4199917316436768,
+ "step": 7105
+ },
+ {
+ "epoch": 98.69899519440804,
+ "grad_norm": 0.24574431777000427,
+ "learning_rate": 0.0006,
+ "loss": 3.4383037090301514,
+ "step": 7106
+ },
+ {
+ "epoch": 98.7129750982962,
+ "grad_norm": 0.25464239716529846,
+ "learning_rate": 0.0006,
+ "loss": 3.4350099563598633,
+ "step": 7107
+ },
+ {
+ "epoch": 98.72695500218435,
+ "grad_norm": 0.23194989562034607,
+ "learning_rate": 0.0006,
+ "loss": 3.3974428176879883,
+ "step": 7108
+ },
+ {
+ "epoch": 98.74093490607252,
+ "grad_norm": 0.20831918716430664,
+ "learning_rate": 0.0006,
+ "loss": 3.434826374053955,
+ "step": 7109
+ },
+ {
+ "epoch": 98.75491480996068,
+ "grad_norm": 0.2321626991033554,
+ "learning_rate": 0.0006,
+ "loss": 3.4371068477630615,
+ "step": 7110
+ },
+ {
+ "epoch": 98.76889471384884,
+ "grad_norm": 0.26469844579696655,
+ "learning_rate": 0.0006,
+ "loss": 3.396449089050293,
+ "step": 7111
+ },
+ {
+ "epoch": 98.78287461773701,
+ "grad_norm": 0.20647570490837097,
+ "learning_rate": 0.0006,
+ "loss": 3.4236321449279785,
+ "step": 7112
+ },
+ {
+ "epoch": 98.79685452162516,
+ "grad_norm": 0.22809037566184998,
+ "learning_rate": 0.0006,
+ "loss": 3.4255943298339844,
+ "step": 7113
+ },
+ {
+ "epoch": 98.81083442551332,
+ "grad_norm": 0.24901925027370453,
+ "learning_rate": 0.0006,
+ "loss": 3.4379329681396484,
+ "step": 7114
+ },
+ {
+ "epoch": 98.82481432940149,
+ "grad_norm": 0.2753210663795471,
+ "learning_rate": 0.0006,
+ "loss": 3.4354445934295654,
+ "step": 7115
+ },
+ {
+ "epoch": 98.83879423328965,
+ "grad_norm": 0.27032792568206787,
+ "learning_rate": 0.0006,
+ "loss": 3.417397975921631,
+ "step": 7116
+ },
+ {
+ "epoch": 98.8527741371778,
+ "grad_norm": 0.2781619429588318,
+ "learning_rate": 0.0006,
+ "loss": 3.4221720695495605,
+ "step": 7117
+ },
+ {
+ "epoch": 98.86675404106597,
+ "grad_norm": 0.2507331967353821,
+ "learning_rate": 0.0006,
+ "loss": 3.449749708175659,
+ "step": 7118
+ },
+ {
+ "epoch": 98.88073394495413,
+ "grad_norm": 0.22389186918735504,
+ "learning_rate": 0.0006,
+ "loss": 3.417510986328125,
+ "step": 7119
+ },
+ {
+ "epoch": 98.89471384884229,
+ "grad_norm": 0.25099414587020874,
+ "learning_rate": 0.0006,
+ "loss": 3.407715320587158,
+ "step": 7120
+ },
+ {
+ "epoch": 98.90869375273044,
+ "grad_norm": 0.27531877160072327,
+ "learning_rate": 0.0006,
+ "loss": 3.4685914516448975,
+ "step": 7121
+ },
+ {
+ "epoch": 98.92267365661861,
+ "grad_norm": 0.24636562168598175,
+ "learning_rate": 0.0006,
+ "loss": 3.431584358215332,
+ "step": 7122
+ },
+ {
+ "epoch": 98.93665356050677,
+ "grad_norm": 0.21934571862220764,
+ "learning_rate": 0.0006,
+ "loss": 3.448002815246582,
+ "step": 7123
+ },
+ {
+ "epoch": 98.95063346439493,
+ "grad_norm": 0.22253192961215973,
+ "learning_rate": 0.0006,
+ "loss": 3.452003002166748,
+ "step": 7124
+ },
+ {
+ "epoch": 98.9646133682831,
+ "grad_norm": 0.22927682101726532,
+ "learning_rate": 0.0006,
+ "loss": 3.43654203414917,
+ "step": 7125
+ },
+ {
+ "epoch": 98.97859327217125,
+ "grad_norm": 0.24803024530410767,
+ "learning_rate": 0.0006,
+ "loss": 3.445896625518799,
+ "step": 7126
+ },
+ {
+ "epoch": 98.99257317605941,
+ "grad_norm": 0.2375713437795639,
+ "learning_rate": 0.0006,
+ "loss": 3.4200515747070312,
+ "step": 7127
+ },
+ {
+ "epoch": 99.0,
+ "grad_norm": 0.24830059707164764,
+ "learning_rate": 0.0006,
+ "loss": 3.436241626739502,
+ "step": 7128
+ },
+ {
+ "epoch": 99.0,
+ "eval_loss": 4.007805347442627,
+ "eval_runtime": 46.5257,
+ "eval_samples_per_second": 52.487,
+ "eval_steps_per_second": 3.289,
+ "step": 7128
+ },
+ {
+ "epoch": 99.01397990388816,
+ "grad_norm": 0.25728991627693176,
+ "learning_rate": 0.0006,
+ "loss": 3.3826956748962402,
+ "step": 7129
+ },
+ {
+ "epoch": 99.02795980777633,
+ "grad_norm": 0.28864166140556335,
+ "learning_rate": 0.0006,
+ "loss": 3.4143409729003906,
+ "step": 7130
+ },
+ {
+ "epoch": 99.04193971166448,
+ "grad_norm": 0.2742931842803955,
+ "learning_rate": 0.0006,
+ "loss": 3.3809497356414795,
+ "step": 7131
+ },
+ {
+ "epoch": 99.05591961555264,
+ "grad_norm": 0.25134676694869995,
+ "learning_rate": 0.0006,
+ "loss": 3.3933515548706055,
+ "step": 7132
+ },
+ {
+ "epoch": 99.06989951944081,
+ "grad_norm": 0.23556581139564514,
+ "learning_rate": 0.0006,
+ "loss": 3.376112461090088,
+ "step": 7133
+ },
+ {
+ "epoch": 99.08387942332897,
+ "grad_norm": 0.23619748651981354,
+ "learning_rate": 0.0006,
+ "loss": 3.409172296524048,
+ "step": 7134
+ },
+ {
+ "epoch": 99.09785932721712,
+ "grad_norm": 0.2636672556400299,
+ "learning_rate": 0.0006,
+ "loss": 3.4066410064697266,
+ "step": 7135
+ },
+ {
+ "epoch": 99.1118392311053,
+ "grad_norm": 0.2828429639339447,
+ "learning_rate": 0.0006,
+ "loss": 3.3840198516845703,
+ "step": 7136
+ },
+ {
+ "epoch": 99.12581913499345,
+ "grad_norm": 0.2731848657131195,
+ "learning_rate": 0.0006,
+ "loss": 3.398069381713867,
+ "step": 7137
+ },
+ {
+ "epoch": 99.1397990388816,
+ "grad_norm": 0.284884512424469,
+ "learning_rate": 0.0006,
+ "loss": 3.4149510860443115,
+ "step": 7138
+ },
+ {
+ "epoch": 99.15377894276976,
+ "grad_norm": 0.279449999332428,
+ "learning_rate": 0.0006,
+ "loss": 3.4144039154052734,
+ "step": 7139
+ },
+ {
+ "epoch": 99.16775884665793,
+ "grad_norm": 0.2696353495121002,
+ "learning_rate": 0.0006,
+ "loss": 3.3888039588928223,
+ "step": 7140
+ },
+ {
+ "epoch": 99.18173875054609,
+ "grad_norm": 0.35606837272644043,
+ "learning_rate": 0.0006,
+ "loss": 3.404326915740967,
+ "step": 7141
+ },
+ {
+ "epoch": 99.19571865443424,
+ "grad_norm": 0.38576555252075195,
+ "learning_rate": 0.0006,
+ "loss": 3.398808479309082,
+ "step": 7142
+ },
+ {
+ "epoch": 99.20969855832242,
+ "grad_norm": 0.2956046164035797,
+ "learning_rate": 0.0006,
+ "loss": 3.3923189640045166,
+ "step": 7143
+ },
+ {
+ "epoch": 99.22367846221057,
+ "grad_norm": 0.2573171854019165,
+ "learning_rate": 0.0006,
+ "loss": 3.4458131790161133,
+ "step": 7144
+ },
+ {
+ "epoch": 99.23765836609873,
+ "grad_norm": 0.26074299216270447,
+ "learning_rate": 0.0006,
+ "loss": 3.4428200721740723,
+ "step": 7145
+ },
+ {
+ "epoch": 99.2516382699869,
+ "grad_norm": 0.28656524419784546,
+ "learning_rate": 0.0006,
+ "loss": 3.4120213985443115,
+ "step": 7146
+ },
+ {
+ "epoch": 99.26561817387505,
+ "grad_norm": 0.25617027282714844,
+ "learning_rate": 0.0006,
+ "loss": 3.4297075271606445,
+ "step": 7147
+ },
+ {
+ "epoch": 99.27959807776321,
+ "grad_norm": 0.2518242597579956,
+ "learning_rate": 0.0006,
+ "loss": 3.3839516639709473,
+ "step": 7148
+ },
+ {
+ "epoch": 99.29357798165138,
+ "grad_norm": 0.23739783465862274,
+ "learning_rate": 0.0006,
+ "loss": 3.414055347442627,
+ "step": 7149
+ },
+ {
+ "epoch": 99.30755788553954,
+ "grad_norm": 0.2458607405424118,
+ "learning_rate": 0.0006,
+ "loss": 3.4130196571350098,
+ "step": 7150
+ },
+ {
+ "epoch": 99.3215377894277,
+ "grad_norm": 0.26633012294769287,
+ "learning_rate": 0.0006,
+ "loss": 3.403928756713867,
+ "step": 7151
+ },
+ {
+ "epoch": 99.33551769331586,
+ "grad_norm": 0.23393289744853973,
+ "learning_rate": 0.0006,
+ "loss": 3.4135327339172363,
+ "step": 7152
+ },
+ {
+ "epoch": 99.34949759720402,
+ "grad_norm": 0.2338673621416092,
+ "learning_rate": 0.0006,
+ "loss": 3.3841822147369385,
+ "step": 7153
+ },
+ {
+ "epoch": 99.36347750109218,
+ "grad_norm": 0.23587189614772797,
+ "learning_rate": 0.0006,
+ "loss": 3.399574041366577,
+ "step": 7154
+ },
+ {
+ "epoch": 99.37745740498035,
+ "grad_norm": 0.22902995347976685,
+ "learning_rate": 0.0006,
+ "loss": 3.444131851196289,
+ "step": 7155
+ },
+ {
+ "epoch": 99.3914373088685,
+ "grad_norm": 0.22192320227622986,
+ "learning_rate": 0.0006,
+ "loss": 3.391878366470337,
+ "step": 7156
+ },
+ {
+ "epoch": 99.40541721275666,
+ "grad_norm": 0.22149455547332764,
+ "learning_rate": 0.0006,
+ "loss": 3.386381149291992,
+ "step": 7157
+ },
+ {
+ "epoch": 99.41939711664482,
+ "grad_norm": 0.24595865607261658,
+ "learning_rate": 0.0006,
+ "loss": 3.4531044960021973,
+ "step": 7158
+ },
+ {
+ "epoch": 99.43337702053299,
+ "grad_norm": 0.2558225691318512,
+ "learning_rate": 0.0006,
+ "loss": 3.3973870277404785,
+ "step": 7159
+ },
+ {
+ "epoch": 99.44735692442114,
+ "grad_norm": 0.2798199951648712,
+ "learning_rate": 0.0006,
+ "loss": 3.443112373352051,
+ "step": 7160
+ },
+ {
+ "epoch": 99.4613368283093,
+ "grad_norm": 0.2632991671562195,
+ "learning_rate": 0.0006,
+ "loss": 3.39717435836792,
+ "step": 7161
+ },
+ {
+ "epoch": 99.47531673219747,
+ "grad_norm": 0.22717216610908508,
+ "learning_rate": 0.0006,
+ "loss": 3.416243076324463,
+ "step": 7162
+ },
+ {
+ "epoch": 99.48929663608563,
+ "grad_norm": 0.23975221812725067,
+ "learning_rate": 0.0006,
+ "loss": 3.3978891372680664,
+ "step": 7163
+ },
+ {
+ "epoch": 99.50327653997378,
+ "grad_norm": 0.29204991459846497,
+ "learning_rate": 0.0006,
+ "loss": 3.409975528717041,
+ "step": 7164
+ },
+ {
+ "epoch": 99.51725644386195,
+ "grad_norm": 0.27111101150512695,
+ "learning_rate": 0.0006,
+ "loss": 3.3900318145751953,
+ "step": 7165
+ },
+ {
+ "epoch": 99.53123634775011,
+ "grad_norm": 0.21914087235927582,
+ "learning_rate": 0.0006,
+ "loss": 3.4289488792419434,
+ "step": 7166
+ },
+ {
+ "epoch": 99.54521625163827,
+ "grad_norm": 0.2687320411205292,
+ "learning_rate": 0.0006,
+ "loss": 3.4125099182128906,
+ "step": 7167
+ },
+ {
+ "epoch": 99.55919615552644,
+ "grad_norm": 0.28086358308792114,
+ "learning_rate": 0.0006,
+ "loss": 3.433389186859131,
+ "step": 7168
+ },
+ {
+ "epoch": 99.57317605941459,
+ "grad_norm": 0.27048689126968384,
+ "learning_rate": 0.0006,
+ "loss": 3.4318761825561523,
+ "step": 7169
+ },
+ {
+ "epoch": 99.58715596330275,
+ "grad_norm": 0.2634352743625641,
+ "learning_rate": 0.0006,
+ "loss": 3.414428234100342,
+ "step": 7170
+ },
+ {
+ "epoch": 99.60113586719092,
+ "grad_norm": 0.2172611504793167,
+ "learning_rate": 0.0006,
+ "loss": 3.433413028717041,
+ "step": 7171
+ },
+ {
+ "epoch": 99.61511577107908,
+ "grad_norm": 0.22308310866355896,
+ "learning_rate": 0.0006,
+ "loss": 3.4206836223602295,
+ "step": 7172
+ },
+ {
+ "epoch": 99.62909567496723,
+ "grad_norm": 0.23672173917293549,
+ "learning_rate": 0.0006,
+ "loss": 3.4442033767700195,
+ "step": 7173
+ },
+ {
+ "epoch": 99.6430755788554,
+ "grad_norm": 0.23522436618804932,
+ "learning_rate": 0.0006,
+ "loss": 3.418745994567871,
+ "step": 7174
+ },
+ {
+ "epoch": 99.65705548274356,
+ "grad_norm": 0.2203327715396881,
+ "learning_rate": 0.0006,
+ "loss": 3.3955888748168945,
+ "step": 7175
+ },
+ {
+ "epoch": 99.67103538663171,
+ "grad_norm": 0.24354669451713562,
+ "learning_rate": 0.0006,
+ "loss": 3.4197394847869873,
+ "step": 7176
+ },
+ {
+ "epoch": 99.68501529051987,
+ "grad_norm": 0.22984454035758972,
+ "learning_rate": 0.0006,
+ "loss": 3.4424405097961426,
+ "step": 7177
+ },
+ {
+ "epoch": 99.69899519440804,
+ "grad_norm": 0.22417370975017548,
+ "learning_rate": 0.0006,
+ "loss": 3.424345016479492,
+ "step": 7178
+ },
+ {
+ "epoch": 99.7129750982962,
+ "grad_norm": 0.22593168914318085,
+ "learning_rate": 0.0006,
+ "loss": 3.430795669555664,
+ "step": 7179
+ },
+ {
+ "epoch": 99.72695500218435,
+ "grad_norm": 0.21509534120559692,
+ "learning_rate": 0.0006,
+ "loss": 3.4194717407226562,
+ "step": 7180
+ },
+ {
+ "epoch": 99.74093490607252,
+ "grad_norm": 0.23146145045757294,
+ "learning_rate": 0.0006,
+ "loss": 3.400569438934326,
+ "step": 7181
+ },
+ {
+ "epoch": 99.75491480996068,
+ "grad_norm": 0.22784404456615448,
+ "learning_rate": 0.0006,
+ "loss": 3.4211955070495605,
+ "step": 7182
+ },
+ {
+ "epoch": 99.76889471384884,
+ "grad_norm": 0.24336543679237366,
+ "learning_rate": 0.0006,
+ "loss": 3.400496244430542,
+ "step": 7183
+ },
+ {
+ "epoch": 99.78287461773701,
+ "grad_norm": 0.2235090136528015,
+ "learning_rate": 0.0006,
+ "loss": 3.414257049560547,
+ "step": 7184
+ },
+ {
+ "epoch": 99.79685452162516,
+ "grad_norm": 0.2078137844800949,
+ "learning_rate": 0.0006,
+ "loss": 3.421050786972046,
+ "step": 7185
+ },
+ {
+ "epoch": 99.81083442551332,
+ "grad_norm": 0.21425506472587585,
+ "learning_rate": 0.0006,
+ "loss": 3.4265859127044678,
+ "step": 7186
+ },
+ {
+ "epoch": 99.82481432940149,
+ "grad_norm": 0.21503497660160065,
+ "learning_rate": 0.0006,
+ "loss": 3.4021553993225098,
+ "step": 7187
+ },
+ {
+ "epoch": 99.83879423328965,
+ "grad_norm": 0.2182847112417221,
+ "learning_rate": 0.0006,
+ "loss": 3.4290428161621094,
+ "step": 7188
+ },
+ {
+ "epoch": 99.8527741371778,
+ "grad_norm": 0.22243978083133698,
+ "learning_rate": 0.0006,
+ "loss": 3.452421188354492,
+ "step": 7189
+ },
+ {
+ "epoch": 99.86675404106597,
+ "grad_norm": 0.23618477582931519,
+ "learning_rate": 0.0006,
+ "loss": 3.4481821060180664,
+ "step": 7190
+ },
+ {
+ "epoch": 99.88073394495413,
+ "grad_norm": 0.25417008996009827,
+ "learning_rate": 0.0006,
+ "loss": 3.421248197555542,
+ "step": 7191
+ },
+ {
+ "epoch": 99.89471384884229,
+ "grad_norm": 0.23889943957328796,
+ "learning_rate": 0.0006,
+ "loss": 3.449291229248047,
+ "step": 7192
+ },
+ {
+ "epoch": 99.90869375273044,
+ "grad_norm": 0.23010766506195068,
+ "learning_rate": 0.0006,
+ "loss": 3.4252607822418213,
+ "step": 7193
+ },
+ {
+ "epoch": 99.92267365661861,
+ "grad_norm": 0.22414866089820862,
+ "learning_rate": 0.0006,
+ "loss": 3.4398627281188965,
+ "step": 7194
+ },
+ {
+ "epoch": 99.93665356050677,
+ "grad_norm": 0.2249436378479004,
+ "learning_rate": 0.0006,
+ "loss": 3.4694461822509766,
+ "step": 7195
+ },
+ {
+ "epoch": 99.95063346439493,
+ "grad_norm": 0.24140042066574097,
+ "learning_rate": 0.0006,
+ "loss": 3.4172205924987793,
+ "step": 7196
+ },
+ {
+ "epoch": 99.9646133682831,
+ "grad_norm": 0.2228337675333023,
+ "learning_rate": 0.0006,
+ "loss": 3.4546170234680176,
+ "step": 7197
+ },
+ {
+ "epoch": 99.97859327217125,
+ "grad_norm": 0.24111691117286682,
+ "learning_rate": 0.0006,
+ "loss": 3.4329171180725098,
+ "step": 7198
+ },
+ {
+ "epoch": 99.99257317605941,
+ "grad_norm": 0.23099084198474884,
+ "learning_rate": 0.0006,
+ "loss": 3.4544825553894043,
+ "step": 7199
+ },
+ {
+ "epoch": 100.0,
+ "grad_norm": 0.2534209191799164,
+ "learning_rate": 0.0006,
+ "loss": 3.4010658264160156,
+ "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/mask15-l2r50-fulle-lm/checkpoint-7200/training_args.bin b/runs/mask15-l2r50-fulle-lm/checkpoint-7200/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..43721c50815fe94f90cb043bf545b8f7bd9afc38
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-7200/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:a0b8d7bb9ac952b1abed3bd1e5c8f6ebd20daa957b3a85688954f8df03be6eb9
+size 4856
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-864/chat_template.jinja b/runs/mask15-l2r50-fulle-lm/checkpoint-864/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/mask15-l2r50-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/mask15-l2r50-fulle-lm/checkpoint-864/config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-864/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..1b4ac3c550d6003148026765eba4cb1512b216c9
--- /dev/null
+++ b/runs/mask15-l2r50-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": 151672
+}
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-864/generation_config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-864/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..5cd15fe1269fd505cfdefe9b3e9989dacd9f68f4
--- /dev/null
+++ b/runs/mask15-l2r50-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/mask15-l2r50-fulle-lm/checkpoint-864/model.safetensors b/runs/mask15-l2r50-fulle-lm/checkpoint-864/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..60762e07a712776bc7b60d305eca14081bb7e7b4
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-864/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:54ed3cb44d8af0729f707138b8a95b9265c9af160cb81f3af315f3da36456ecb
+size 583358280
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-864/optimizer.pt b/runs/mask15-l2r50-fulle-lm/checkpoint-864/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..b772e6ee3d825b3f6235e4fef2fd906ce8bc8215
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-864/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:2f528930aeb0a50831298168bca63840fe7d9215428880e975f2f32f64f13916
+size 1166829434
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-864/rng_state_0.pth b/runs/mask15-l2r50-fulle-lm/checkpoint-864/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..ac633027ca20f52290b4d984828c92450ccbc9fa
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-864/rng_state_0.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:ef6e4847db69d11208219e8fe01505704b6dc9a8bc841cf832d92299311cb547
+size 14512
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-864/rng_state_1.pth b/runs/mask15-l2r50-fulle-lm/checkpoint-864/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..fee52e99f453aa81f4158a02a9810880f288a242
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-864/rng_state_1.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:425543452ad34b5e7dc8f9b22d17138c38b1b176b31c400c199566cea3623e6f
+size 14512
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-864/scheduler.pt b/runs/mask15-l2r50-fulle-lm/checkpoint-864/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..f21fc027a37dccb66b77a4752de227c557d8ff04
--- /dev/null
+++ b/runs/mask15-l2r50-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/mask15-l2r50-fulle-lm/checkpoint-864/tokenizer.json b/runs/mask15-l2r50-fulle-lm/checkpoint-864/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..6226bf25372d1a86dbd704ec75d2129960f1ba88
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-864/tokenizer.json
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:9245fe3cb2d40f9ed8d5d8ddd1d58701ba2a236beec08f656162281673f30560
+size 11424264
diff --git a/runs/mask15-l2r50-fulle-lm/checkpoint-864/tokenizer_config.json b/runs/mask15-l2r50-fulle-lm/checkpoint-864/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..01bc9676576e8cf62a08a9db166d6c5bab1d6727
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-864/tokenizer_config.json
@@ -0,0 +1,20 @@
+{
+ "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|>",
+ "<|mask|>"
+ ],
+ "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/mask15-l2r50-fulle-lm/checkpoint-864/trainer_state.json b/runs/mask15-l2r50-fulle-lm/checkpoint-864/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..37cdc375cd45171572a82cf9e7fac1695d2fc0eb
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-864/trainer_state.json
@@ -0,0 +1,6170 @@
+{
+ "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": 9.807971954345703,
+ "learning_rate": 0.0,
+ "loss": 11.989814758300781,
+ "step": 1
+ },
+ {
+ "epoch": 0.027959807776321538,
+ "grad_norm": 9.834383010864258,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 11.993022918701172,
+ "step": 2
+ },
+ {
+ "epoch": 0.04193971166448231,
+ "grad_norm": 9.482470512390137,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 11.854345321655273,
+ "step": 3
+ },
+ {
+ "epoch": 0.055919615552643076,
+ "grad_norm": 7.678808689117432,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 11.618255615234375,
+ "step": 4
+ },
+ {
+ "epoch": 0.06989951944080385,
+ "grad_norm": 6.011275291442871,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 11.351423263549805,
+ "step": 5
+ },
+ {
+ "epoch": 0.08387942332896461,
+ "grad_norm": 5.244393825531006,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 11.128631591796875,
+ "step": 6
+ },
+ {
+ "epoch": 0.09785932721712538,
+ "grad_norm": 4.577618598937988,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 10.921937942504883,
+ "step": 7
+ },
+ {
+ "epoch": 0.11183923110528615,
+ "grad_norm": 4.03810453414917,
+ "learning_rate": 4.2e-05,
+ "loss": 10.742650985717773,
+ "step": 8
+ },
+ {
+ "epoch": 0.1258191349934469,
+ "grad_norm": 3.657679796218872,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 10.600778579711914,
+ "step": 9
+ },
+ {
+ "epoch": 0.1397990388816077,
+ "grad_norm": 3.352902889251709,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 10.489639282226562,
+ "step": 10
+ },
+ {
+ "epoch": 0.15377894276976845,
+ "grad_norm": 3.1162633895874023,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 10.417770385742188,
+ "step": 11
+ },
+ {
+ "epoch": 0.16775884665792923,
+ "grad_norm": 3.0402638912200928,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 10.35334587097168,
+ "step": 12
+ },
+ {
+ "epoch": 0.18173875054608998,
+ "grad_norm": 3.030630111694336,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 10.306867599487305,
+ "step": 13
+ },
+ {
+ "epoch": 0.19571865443425077,
+ "grad_norm": 3.035292148590088,
+ "learning_rate": 7.8e-05,
+ "loss": 10.26003646850586,
+ "step": 14
+ },
+ {
+ "epoch": 0.20969855832241152,
+ "grad_norm": 3.0125675201416016,
+ "learning_rate": 8.4e-05,
+ "loss": 10.219265937805176,
+ "step": 15
+ },
+ {
+ "epoch": 0.2236784622105723,
+ "grad_norm": 2.9998886585235596,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 10.161077499389648,
+ "step": 16
+ },
+ {
+ "epoch": 0.23765836609873306,
+ "grad_norm": 2.9411966800689697,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 10.107423782348633,
+ "step": 17
+ },
+ {
+ "epoch": 0.2516382699868938,
+ "grad_norm": 2.88081955909729,
+ "learning_rate": 0.000102,
+ "loss": 10.04700756072998,
+ "step": 18
+ },
+ {
+ "epoch": 0.2656181738750546,
+ "grad_norm": 2.8219687938690186,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 9.981185913085938,
+ "step": 19
+ },
+ {
+ "epoch": 0.2795980777632154,
+ "grad_norm": 2.79306960105896,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 9.89747142791748,
+ "step": 20
+ },
+ {
+ "epoch": 0.29357798165137616,
+ "grad_norm": 2.7314443588256836,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 9.829219818115234,
+ "step": 21
+ },
+ {
+ "epoch": 0.3075578855395369,
+ "grad_norm": 2.6923747062683105,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 9.747566223144531,
+ "step": 22
+ },
+ {
+ "epoch": 0.3215377894276977,
+ "grad_norm": 2.650602340698242,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 9.66455078125,
+ "step": 23
+ },
+ {
+ "epoch": 0.33551769331585846,
+ "grad_norm": 2.606977701187134,
+ "learning_rate": 0.000138,
+ "loss": 9.582326889038086,
+ "step": 24
+ },
+ {
+ "epoch": 0.34949759720401924,
+ "grad_norm": 2.567256212234497,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 9.492591857910156,
+ "step": 25
+ },
+ {
+ "epoch": 0.36347750109217997,
+ "grad_norm": 2.520740509033203,
+ "learning_rate": 0.00015,
+ "loss": 9.396563529968262,
+ "step": 26
+ },
+ {
+ "epoch": 0.37745740498034075,
+ "grad_norm": 2.471588611602783,
+ "learning_rate": 0.000156,
+ "loss": 9.303571701049805,
+ "step": 27
+ },
+ {
+ "epoch": 0.39143730886850153,
+ "grad_norm": 2.4341530799865723,
+ "learning_rate": 0.000162,
+ "loss": 9.191819190979004,
+ "step": 28
+ },
+ {
+ "epoch": 0.4054172127566623,
+ "grad_norm": 2.369244337081909,
+ "learning_rate": 0.000168,
+ "loss": 9.092012405395508,
+ "step": 29
+ },
+ {
+ "epoch": 0.41939711664482304,
+ "grad_norm": 2.28625226020813,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 8.984567642211914,
+ "step": 30
+ },
+ {
+ "epoch": 0.4333770205329838,
+ "grad_norm": 2.2082231044769287,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 8.889009475708008,
+ "step": 31
+ },
+ {
+ "epoch": 0.4473569244211446,
+ "grad_norm": 2.1429483890533447,
+ "learning_rate": 0.000186,
+ "loss": 8.778556823730469,
+ "step": 32
+ },
+ {
+ "epoch": 0.4613368283093054,
+ "grad_norm": 2.0937352180480957,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 8.661166191101074,
+ "step": 33
+ },
+ {
+ "epoch": 0.4753167321974661,
+ "grad_norm": 2.040790557861328,
+ "learning_rate": 0.000198,
+ "loss": 8.550382614135742,
+ "step": 34
+ },
+ {
+ "epoch": 0.4892966360856269,
+ "grad_norm": 1.93914794921875,
+ "learning_rate": 0.000204,
+ "loss": 8.463907241821289,
+ "step": 35
+ },
+ {
+ "epoch": 0.5032765399737876,
+ "grad_norm": 1.8624178171157837,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 8.3438720703125,
+ "step": 36
+ },
+ {
+ "epoch": 0.5172564438619485,
+ "grad_norm": 1.8107167482376099,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 8.21871566772461,
+ "step": 37
+ },
+ {
+ "epoch": 0.5312363477501092,
+ "grad_norm": 1.717979073524475,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 8.113494873046875,
+ "step": 38
+ },
+ {
+ "epoch": 0.54521625163827,
+ "grad_norm": 1.668742060661316,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 8.006099700927734,
+ "step": 39
+ },
+ {
+ "epoch": 0.5591961555264308,
+ "grad_norm": 1.6147786378860474,
+ "learning_rate": 0.000234,
+ "loss": 7.911509037017822,
+ "step": 40
+ },
+ {
+ "epoch": 0.5731760594145915,
+ "grad_norm": 1.535750150680542,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 7.822839736938477,
+ "step": 41
+ },
+ {
+ "epoch": 0.5871559633027523,
+ "grad_norm": 1.4700065851211548,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 7.713842868804932,
+ "step": 42
+ },
+ {
+ "epoch": 0.601135867190913,
+ "grad_norm": 1.39020574092865,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 7.6040191650390625,
+ "step": 43
+ },
+ {
+ "epoch": 0.6151157710790738,
+ "grad_norm": 1.2875399589538574,
+ "learning_rate": 0.000258,
+ "loss": 7.550642013549805,
+ "step": 44
+ },
+ {
+ "epoch": 0.6290956749672346,
+ "grad_norm": 1.2094247341156006,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 7.460824012756348,
+ "step": 45
+ },
+ {
+ "epoch": 0.6430755788553953,
+ "grad_norm": 1.126452088356018,
+ "learning_rate": 0.00027,
+ "loss": 7.380537986755371,
+ "step": 46
+ },
+ {
+ "epoch": 0.6570554827435562,
+ "grad_norm": 1.0313163995742798,
+ "learning_rate": 0.000276,
+ "loss": 7.286153793334961,
+ "step": 47
+ },
+ {
+ "epoch": 0.6710353866317169,
+ "grad_norm": 0.9172859787940979,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 7.2064714431762695,
+ "step": 48
+ },
+ {
+ "epoch": 0.6850152905198776,
+ "grad_norm": 0.8148201107978821,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 7.158207416534424,
+ "step": 49
+ },
+ {
+ "epoch": 0.6989951944080385,
+ "grad_norm": 0.650123119354248,
+ "learning_rate": 0.000294,
+ "loss": 7.108791828155518,
+ "step": 50
+ },
+ {
+ "epoch": 0.7129750982961992,
+ "grad_norm": 0.5437585711479187,
+ "learning_rate": 0.0003,
+ "loss": 7.083050727844238,
+ "step": 51
+ },
+ {
+ "epoch": 0.7269550021843599,
+ "grad_norm": 0.46762895584106445,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 7.058027267456055,
+ "step": 52
+ },
+ {
+ "epoch": 0.7409349060725208,
+ "grad_norm": 0.47947561740875244,
+ "learning_rate": 0.000312,
+ "loss": 7.015172958374023,
+ "step": 53
+ },
+ {
+ "epoch": 0.7549148099606815,
+ "grad_norm": 0.7546492218971252,
+ "learning_rate": 0.000318,
+ "loss": 7.024629592895508,
+ "step": 54
+ },
+ {
+ "epoch": 0.7688947138488423,
+ "grad_norm": 0.6153718829154968,
+ "learning_rate": 0.000324,
+ "loss": 7.026667594909668,
+ "step": 55
+ },
+ {
+ "epoch": 0.7828746177370031,
+ "grad_norm": 0.3359069228172302,
+ "learning_rate": 0.00033,
+ "loss": 7.008166313171387,
+ "step": 56
+ },
+ {
+ "epoch": 0.7968545216251638,
+ "grad_norm": 0.48906823992729187,
+ "learning_rate": 0.000336,
+ "loss": 7.019716262817383,
+ "step": 57
+ },
+ {
+ "epoch": 0.8108344255133246,
+ "grad_norm": 0.5525421500205994,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 7.02108097076416,
+ "step": 58
+ },
+ {
+ "epoch": 0.8248143294014854,
+ "grad_norm": 0.3103712201118469,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 7.003164768218994,
+ "step": 59
+ },
+ {
+ "epoch": 0.8387942332896461,
+ "grad_norm": 0.4431874752044678,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 7.003463268280029,
+ "step": 60
+ },
+ {
+ "epoch": 0.8527741371778069,
+ "grad_norm": 0.4291120767593384,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 6.96931791305542,
+ "step": 61
+ },
+ {
+ "epoch": 0.8667540410659677,
+ "grad_norm": 0.6566054224967957,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 6.989445686340332,
+ "step": 62
+ },
+ {
+ "epoch": 0.8807339449541285,
+ "grad_norm": 0.20663189888000488,
+ "learning_rate": 0.000372,
+ "loss": 6.9669342041015625,
+ "step": 63
+ },
+ {
+ "epoch": 0.8947138488422892,
+ "grad_norm": 0.6242535710334778,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 6.949883460998535,
+ "step": 64
+ },
+ {
+ "epoch": 0.9086937527304499,
+ "grad_norm": 0.6984224915504456,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 6.955153465270996,
+ "step": 65
+ },
+ {
+ "epoch": 0.9226736566186108,
+ "grad_norm": 0.6328083872795105,
+ "learning_rate": 0.00039,
+ "loss": 6.965421676635742,
+ "step": 66
+ },
+ {
+ "epoch": 0.9366535605067715,
+ "grad_norm": 1.213352918624878,
+ "learning_rate": 0.000396,
+ "loss": 6.9454345703125,
+ "step": 67
+ },
+ {
+ "epoch": 0.9506334643949322,
+ "grad_norm": 0.9221940636634827,
+ "learning_rate": 0.000402,
+ "loss": 6.923908233642578,
+ "step": 68
+ },
+ {
+ "epoch": 0.9646133682830931,
+ "grad_norm": 0.6825450658798218,
+ "learning_rate": 0.000408,
+ "loss": 6.910131454467773,
+ "step": 69
+ },
+ {
+ "epoch": 0.9785932721712538,
+ "grad_norm": 0.5690162181854248,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 6.89891242980957,
+ "step": 70
+ },
+ {
+ "epoch": 0.9925731760594146,
+ "grad_norm": 0.4320870041847229,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 6.896081924438477,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.31632405519485474,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 6.897444725036621,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 7.757839679718018,
+ "eval_runtime": 43.8338,
+ "eval_samples_per_second": 55.71,
+ "eval_steps_per_second": 3.49,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139799038881607,
+ "grad_norm": 0.3789916932582855,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 6.877245903015137,
+ "step": 73
+ },
+ {
+ "epoch": 1.0279598077763215,
+ "grad_norm": 0.9167932868003845,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 6.921600341796875,
+ "step": 74
+ },
+ {
+ "epoch": 1.0419397116644824,
+ "grad_norm": 0.581188440322876,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 6.861001968383789,
+ "step": 75
+ },
+ {
+ "epoch": 1.0559196155526431,
+ "grad_norm": 0.4179714024066925,
+ "learning_rate": 0.00045,
+ "loss": 6.875657081604004,
+ "step": 76
+ },
+ {
+ "epoch": 1.0698995194408039,
+ "grad_norm": 1.0669957399368286,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 6.857122421264648,
+ "step": 77
+ },
+ {
+ "epoch": 1.0838794233289646,
+ "grad_norm": 0.27855145931243896,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 6.828852653503418,
+ "step": 78
+ },
+ {
+ "epoch": 1.0978593272171253,
+ "grad_norm": 0.7192047834396362,
+ "learning_rate": 0.000468,
+ "loss": 6.870839595794678,
+ "step": 79
+ },
+ {
+ "epoch": 1.1118392311052863,
+ "grad_norm": 0.5583325624465942,
+ "learning_rate": 0.000474,
+ "loss": 6.8497514724731445,
+ "step": 80
+ },
+ {
+ "epoch": 1.125819134993447,
+ "grad_norm": 0.3001925051212311,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 6.858528137207031,
+ "step": 81
+ },
+ {
+ "epoch": 1.1397990388816077,
+ "grad_norm": 0.2408239096403122,
+ "learning_rate": 0.000486,
+ "loss": 6.83231258392334,
+ "step": 82
+ },
+ {
+ "epoch": 1.1537789427697684,
+ "grad_norm": 0.28230324387550354,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 6.815476894378662,
+ "step": 83
+ },
+ {
+ "epoch": 1.1677588466579292,
+ "grad_norm": 0.3247123658657074,
+ "learning_rate": 0.000498,
+ "loss": 6.780126094818115,
+ "step": 84
+ },
+ {
+ "epoch": 1.18173875054609,
+ "grad_norm": 0.25713011622428894,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 6.7798309326171875,
+ "step": 85
+ },
+ {
+ "epoch": 1.1957186544342508,
+ "grad_norm": 0.5386835932731628,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 6.791745185852051,
+ "step": 86
+ },
+ {
+ "epoch": 1.2096985583224116,
+ "grad_norm": 0.2226393222808838,
+ "learning_rate": 0.000516,
+ "loss": 6.7826972007751465,
+ "step": 87
+ },
+ {
+ "epoch": 1.2236784622105723,
+ "grad_norm": 0.4338362216949463,
+ "learning_rate": 0.000522,
+ "loss": 6.805043697357178,
+ "step": 88
+ },
+ {
+ "epoch": 1.237658366098733,
+ "grad_norm": 0.2953208386898041,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 6.768434524536133,
+ "step": 89
+ },
+ {
+ "epoch": 1.2516382699868938,
+ "grad_norm": 0.13453717529773712,
+ "learning_rate": 0.000534,
+ "loss": 6.773697376251221,
+ "step": 90
+ },
+ {
+ "epoch": 1.2656181738750547,
+ "grad_norm": 0.35774412751197815,
+ "learning_rate": 0.00054,
+ "loss": 6.766414642333984,
+ "step": 91
+ },
+ {
+ "epoch": 1.2795980777632154,
+ "grad_norm": 0.4669720530509949,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 6.754847526550293,
+ "step": 92
+ },
+ {
+ "epoch": 1.2935779816513762,
+ "grad_norm": 0.13806621730327606,
+ "learning_rate": 0.000552,
+ "loss": 6.746858596801758,
+ "step": 93
+ },
+ {
+ "epoch": 1.307557885539537,
+ "grad_norm": 0.3280332386493683,
+ "learning_rate": 0.000558,
+ "loss": 6.715662956237793,
+ "step": 94
+ },
+ {
+ "epoch": 1.3215377894276976,
+ "grad_norm": 0.4689937233924866,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 6.734938144683838,
+ "step": 95
+ },
+ {
+ "epoch": 1.3355176933158583,
+ "grad_norm": 0.35371264815330505,
+ "learning_rate": 0.00057,
+ "loss": 6.748386383056641,
+ "step": 96
+ },
+ {
+ "epoch": 1.3494975972040193,
+ "grad_norm": 0.15232303738594055,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 6.705557823181152,
+ "step": 97
+ },
+ {
+ "epoch": 1.36347750109218,
+ "grad_norm": 0.30132821202278137,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 6.7199859619140625,
+ "step": 98
+ },
+ {
+ "epoch": 1.3774574049803407,
+ "grad_norm": 0.42174842953681946,
+ "learning_rate": 0.000588,
+ "loss": 6.715370178222656,
+ "step": 99
+ },
+ {
+ "epoch": 1.3914373088685015,
+ "grad_norm": 0.6257228851318359,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 6.707026958465576,
+ "step": 100
+ },
+ {
+ "epoch": 1.4054172127566624,
+ "grad_norm": 0.4551195800304413,
+ "learning_rate": 0.0006,
+ "loss": 6.7078423500061035,
+ "step": 101
+ },
+ {
+ "epoch": 1.4193971166448232,
+ "grad_norm": 0.41940346360206604,
+ "learning_rate": 0.0006,
+ "loss": 6.6959357261657715,
+ "step": 102
+ },
+ {
+ "epoch": 1.4333770205329839,
+ "grad_norm": 0.32251718640327454,
+ "learning_rate": 0.0006,
+ "loss": 6.689168930053711,
+ "step": 103
+ },
+ {
+ "epoch": 1.4473569244211446,
+ "grad_norm": 0.2992720305919647,
+ "learning_rate": 0.0006,
+ "loss": 6.680738925933838,
+ "step": 104
+ },
+ {
+ "epoch": 1.4613368283093053,
+ "grad_norm": 0.3228456974029541,
+ "learning_rate": 0.0006,
+ "loss": 6.672350883483887,
+ "step": 105
+ },
+ {
+ "epoch": 1.475316732197466,
+ "grad_norm": 0.24954743683338165,
+ "learning_rate": 0.0006,
+ "loss": 6.653716087341309,
+ "step": 106
+ },
+ {
+ "epoch": 1.4892966360856268,
+ "grad_norm": 0.30740687251091003,
+ "learning_rate": 0.0006,
+ "loss": 6.676583290100098,
+ "step": 107
+ },
+ {
+ "epoch": 1.5032765399737875,
+ "grad_norm": 0.24950599670410156,
+ "learning_rate": 0.0006,
+ "loss": 6.656691551208496,
+ "step": 108
+ },
+ {
+ "epoch": 1.5172564438619485,
+ "grad_norm": 0.24293005466461182,
+ "learning_rate": 0.0006,
+ "loss": 6.640995979309082,
+ "step": 109
+ },
+ {
+ "epoch": 1.5312363477501092,
+ "grad_norm": 0.30167272686958313,
+ "learning_rate": 0.0006,
+ "loss": 6.647380352020264,
+ "step": 110
+ },
+ {
+ "epoch": 1.5452162516382701,
+ "grad_norm": 0.4424632787704468,
+ "learning_rate": 0.0006,
+ "loss": 6.6548261642456055,
+ "step": 111
+ },
+ {
+ "epoch": 1.5591961555264309,
+ "grad_norm": 0.5295748114585876,
+ "learning_rate": 0.0006,
+ "loss": 6.64370059967041,
+ "step": 112
+ },
+ {
+ "epoch": 1.5731760594145916,
+ "grad_norm": 0.6829339265823364,
+ "learning_rate": 0.0006,
+ "loss": 6.654196739196777,
+ "step": 113
+ },
+ {
+ "epoch": 1.5871559633027523,
+ "grad_norm": 0.6534460186958313,
+ "learning_rate": 0.0006,
+ "loss": 6.675765037536621,
+ "step": 114
+ },
+ {
+ "epoch": 1.601135867190913,
+ "grad_norm": 0.6172244548797607,
+ "learning_rate": 0.0006,
+ "loss": 6.631234169006348,
+ "step": 115
+ },
+ {
+ "epoch": 1.6151157710790738,
+ "grad_norm": 0.5650008320808411,
+ "learning_rate": 0.0006,
+ "loss": 6.654262542724609,
+ "step": 116
+ },
+ {
+ "epoch": 1.6290956749672345,
+ "grad_norm": 0.3890475928783417,
+ "learning_rate": 0.0006,
+ "loss": 6.627526760101318,
+ "step": 117
+ },
+ {
+ "epoch": 1.6430755788553952,
+ "grad_norm": 0.6409873366355896,
+ "learning_rate": 0.0006,
+ "loss": 6.619794845581055,
+ "step": 118
+ },
+ {
+ "epoch": 1.6570554827435562,
+ "grad_norm": 0.5052326321601868,
+ "learning_rate": 0.0006,
+ "loss": 6.612556457519531,
+ "step": 119
+ },
+ {
+ "epoch": 1.671035386631717,
+ "grad_norm": 0.5001237988471985,
+ "learning_rate": 0.0006,
+ "loss": 6.577266693115234,
+ "step": 120
+ },
+ {
+ "epoch": 1.6850152905198776,
+ "grad_norm": 0.5328938364982605,
+ "learning_rate": 0.0006,
+ "loss": 6.59553337097168,
+ "step": 121
+ },
+ {
+ "epoch": 1.6989951944080386,
+ "grad_norm": 0.3568951189517975,
+ "learning_rate": 0.0006,
+ "loss": 6.602717399597168,
+ "step": 122
+ },
+ {
+ "epoch": 1.7129750982961993,
+ "grad_norm": 0.4017309546470642,
+ "learning_rate": 0.0006,
+ "loss": 6.589657783508301,
+ "step": 123
+ },
+ {
+ "epoch": 1.72695500218436,
+ "grad_norm": 0.21432629227638245,
+ "learning_rate": 0.0006,
+ "loss": 6.586555480957031,
+ "step": 124
+ },
+ {
+ "epoch": 1.7409349060725208,
+ "grad_norm": 0.21038052439689636,
+ "learning_rate": 0.0006,
+ "loss": 6.576569557189941,
+ "step": 125
+ },
+ {
+ "epoch": 1.7549148099606815,
+ "grad_norm": 0.23074904084205627,
+ "learning_rate": 0.0006,
+ "loss": 6.5880632400512695,
+ "step": 126
+ },
+ {
+ "epoch": 1.7688947138488422,
+ "grad_norm": 0.42963048815727234,
+ "learning_rate": 0.0006,
+ "loss": 6.603862762451172,
+ "step": 127
+ },
+ {
+ "epoch": 1.782874617737003,
+ "grad_norm": 0.361331045627594,
+ "learning_rate": 0.0006,
+ "loss": 6.579834938049316,
+ "step": 128
+ },
+ {
+ "epoch": 1.7968545216251637,
+ "grad_norm": 0.4951060712337494,
+ "learning_rate": 0.0006,
+ "loss": 6.570443630218506,
+ "step": 129
+ },
+ {
+ "epoch": 1.8108344255133246,
+ "grad_norm": 0.2258434295654297,
+ "learning_rate": 0.0006,
+ "loss": 6.5664777755737305,
+ "step": 130
+ },
+ {
+ "epoch": 1.8248143294014854,
+ "grad_norm": 0.2922155559062958,
+ "learning_rate": 0.0006,
+ "loss": 6.561326503753662,
+ "step": 131
+ },
+ {
+ "epoch": 1.838794233289646,
+ "grad_norm": 0.19068220257759094,
+ "learning_rate": 0.0006,
+ "loss": 6.528727054595947,
+ "step": 132
+ },
+ {
+ "epoch": 1.852774137177807,
+ "grad_norm": 0.2122010439634323,
+ "learning_rate": 0.0006,
+ "loss": 6.535636901855469,
+ "step": 133
+ },
+ {
+ "epoch": 1.8667540410659678,
+ "grad_norm": 0.25760164856910706,
+ "learning_rate": 0.0006,
+ "loss": 6.530498504638672,
+ "step": 134
+ },
+ {
+ "epoch": 1.8807339449541285,
+ "grad_norm": 0.1761016845703125,
+ "learning_rate": 0.0006,
+ "loss": 6.514466285705566,
+ "step": 135
+ },
+ {
+ "epoch": 1.8947138488422892,
+ "grad_norm": 0.2250051498413086,
+ "learning_rate": 0.0006,
+ "loss": 6.521268844604492,
+ "step": 136
+ },
+ {
+ "epoch": 1.90869375273045,
+ "grad_norm": 0.34458497166633606,
+ "learning_rate": 0.0006,
+ "loss": 6.512831687927246,
+ "step": 137
+ },
+ {
+ "epoch": 1.9226736566186107,
+ "grad_norm": 0.3468617796897888,
+ "learning_rate": 0.0006,
+ "loss": 6.515641689300537,
+ "step": 138
+ },
+ {
+ "epoch": 1.9366535605067714,
+ "grad_norm": 0.5051495432853699,
+ "learning_rate": 0.0006,
+ "loss": 6.5147905349731445,
+ "step": 139
+ },
+ {
+ "epoch": 1.9506334643949321,
+ "grad_norm": 0.7106727361679077,
+ "learning_rate": 0.0006,
+ "loss": 6.519277572631836,
+ "step": 140
+ },
+ {
+ "epoch": 1.964613368283093,
+ "grad_norm": 0.8881394267082214,
+ "learning_rate": 0.0006,
+ "loss": 6.526865482330322,
+ "step": 141
+ },
+ {
+ "epoch": 1.9785932721712538,
+ "grad_norm": 0.5552834272384644,
+ "learning_rate": 0.0006,
+ "loss": 6.469970226287842,
+ "step": 142
+ },
+ {
+ "epoch": 1.9925731760594148,
+ "grad_norm": 0.6903126835823059,
+ "learning_rate": 0.0006,
+ "loss": 6.476300239562988,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.47679027915000916,
+ "learning_rate": 0.0006,
+ "loss": 6.463827133178711,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 7.388528823852539,
+ "eval_runtime": 44.2519,
+ "eval_samples_per_second": 55.184,
+ "eval_steps_per_second": 3.457,
+ "step": 144
+ },
+ {
+ "epoch": 2.0139799038881607,
+ "grad_norm": 0.4719221293926239,
+ "learning_rate": 0.0006,
+ "loss": 6.480956077575684,
+ "step": 145
+ },
+ {
+ "epoch": 2.0279598077763215,
+ "grad_norm": 0.41137924790382385,
+ "learning_rate": 0.0006,
+ "loss": 6.449707984924316,
+ "step": 146
+ },
+ {
+ "epoch": 2.041939711664482,
+ "grad_norm": 0.4237765371799469,
+ "learning_rate": 0.0006,
+ "loss": 6.467435836791992,
+ "step": 147
+ },
+ {
+ "epoch": 2.055919615552643,
+ "grad_norm": 0.44081810116767883,
+ "learning_rate": 0.0006,
+ "loss": 6.436868667602539,
+ "step": 148
+ },
+ {
+ "epoch": 2.0698995194408036,
+ "grad_norm": 0.4163798391819,
+ "learning_rate": 0.0006,
+ "loss": 6.4642014503479,
+ "step": 149
+ },
+ {
+ "epoch": 2.083879423328965,
+ "grad_norm": 0.3831583261489868,
+ "learning_rate": 0.0006,
+ "loss": 6.454092025756836,
+ "step": 150
+ },
+ {
+ "epoch": 2.0978593272171255,
+ "grad_norm": 0.37721413373947144,
+ "learning_rate": 0.0006,
+ "loss": 6.426377296447754,
+ "step": 151
+ },
+ {
+ "epoch": 2.1118392311052863,
+ "grad_norm": 0.3323550224304199,
+ "learning_rate": 0.0006,
+ "loss": 6.421375274658203,
+ "step": 152
+ },
+ {
+ "epoch": 2.125819134993447,
+ "grad_norm": 0.47739624977111816,
+ "learning_rate": 0.0006,
+ "loss": 6.412004470825195,
+ "step": 153
+ },
+ {
+ "epoch": 2.1397990388816077,
+ "grad_norm": 0.8530274629592896,
+ "learning_rate": 0.0006,
+ "loss": 6.410468578338623,
+ "step": 154
+ },
+ {
+ "epoch": 2.1537789427697684,
+ "grad_norm": 0.6420364379882812,
+ "learning_rate": 0.0006,
+ "loss": 6.413525581359863,
+ "step": 155
+ },
+ {
+ "epoch": 2.167758846657929,
+ "grad_norm": 0.5005049109458923,
+ "learning_rate": 0.0006,
+ "loss": 6.401463508605957,
+ "step": 156
+ },
+ {
+ "epoch": 2.18173875054609,
+ "grad_norm": 0.3614683449268341,
+ "learning_rate": 0.0006,
+ "loss": 6.390063285827637,
+ "step": 157
+ },
+ {
+ "epoch": 2.1957186544342506,
+ "grad_norm": 0.595215380191803,
+ "learning_rate": 0.0006,
+ "loss": 6.369806289672852,
+ "step": 158
+ },
+ {
+ "epoch": 2.2096985583224114,
+ "grad_norm": 0.5700321793556213,
+ "learning_rate": 0.0006,
+ "loss": 6.368378639221191,
+ "step": 159
+ },
+ {
+ "epoch": 2.2236784622105725,
+ "grad_norm": 0.36273983120918274,
+ "learning_rate": 0.0006,
+ "loss": 6.366860389709473,
+ "step": 160
+ },
+ {
+ "epoch": 2.2376583660987333,
+ "grad_norm": 0.2850998342037201,
+ "learning_rate": 0.0006,
+ "loss": 6.352144718170166,
+ "step": 161
+ },
+ {
+ "epoch": 2.251638269986894,
+ "grad_norm": 0.38558584451675415,
+ "learning_rate": 0.0006,
+ "loss": 6.375765800476074,
+ "step": 162
+ },
+ {
+ "epoch": 2.2656181738750547,
+ "grad_norm": 0.34809231758117676,
+ "learning_rate": 0.0006,
+ "loss": 6.350445747375488,
+ "step": 163
+ },
+ {
+ "epoch": 2.2795980777632154,
+ "grad_norm": 0.5211818814277649,
+ "learning_rate": 0.0006,
+ "loss": 6.354585647583008,
+ "step": 164
+ },
+ {
+ "epoch": 2.293577981651376,
+ "grad_norm": 1.0809133052825928,
+ "learning_rate": 0.0006,
+ "loss": 6.3752007484436035,
+ "step": 165
+ },
+ {
+ "epoch": 2.307557885539537,
+ "grad_norm": 0.8293641209602356,
+ "learning_rate": 0.0006,
+ "loss": 6.35113525390625,
+ "step": 166
+ },
+ {
+ "epoch": 2.3215377894276976,
+ "grad_norm": 0.3428577780723572,
+ "learning_rate": 0.0006,
+ "loss": 6.334470748901367,
+ "step": 167
+ },
+ {
+ "epoch": 2.3355176933158583,
+ "grad_norm": 0.7587600946426392,
+ "learning_rate": 0.0006,
+ "loss": 6.353979587554932,
+ "step": 168
+ },
+ {
+ "epoch": 2.349497597204019,
+ "grad_norm": 0.4227249026298523,
+ "learning_rate": 0.0006,
+ "loss": 6.34018611907959,
+ "step": 169
+ },
+ {
+ "epoch": 2.36347750109218,
+ "grad_norm": 0.4226846694946289,
+ "learning_rate": 0.0006,
+ "loss": 6.290019989013672,
+ "step": 170
+ },
+ {
+ "epoch": 2.3774574049803405,
+ "grad_norm": 0.38412365317344666,
+ "learning_rate": 0.0006,
+ "loss": 6.309510231018066,
+ "step": 171
+ },
+ {
+ "epoch": 2.3914373088685017,
+ "grad_norm": 0.45698508620262146,
+ "learning_rate": 0.0006,
+ "loss": 6.283290863037109,
+ "step": 172
+ },
+ {
+ "epoch": 2.4054172127566624,
+ "grad_norm": 0.7575915455818176,
+ "learning_rate": 0.0006,
+ "loss": 6.306073188781738,
+ "step": 173
+ },
+ {
+ "epoch": 2.419397116644823,
+ "grad_norm": 0.695123553276062,
+ "learning_rate": 0.0006,
+ "loss": 6.308144569396973,
+ "step": 174
+ },
+ {
+ "epoch": 2.433377020532984,
+ "grad_norm": 0.5035743117332458,
+ "learning_rate": 0.0006,
+ "loss": 6.282073974609375,
+ "step": 175
+ },
+ {
+ "epoch": 2.4473569244211446,
+ "grad_norm": 0.3158020079135895,
+ "learning_rate": 0.0006,
+ "loss": 6.282169342041016,
+ "step": 176
+ },
+ {
+ "epoch": 2.4613368283093053,
+ "grad_norm": 0.4829689860343933,
+ "learning_rate": 0.0006,
+ "loss": 6.264578819274902,
+ "step": 177
+ },
+ {
+ "epoch": 2.475316732197466,
+ "grad_norm": 0.3992770314216614,
+ "learning_rate": 0.0006,
+ "loss": 6.228628158569336,
+ "step": 178
+ },
+ {
+ "epoch": 2.489296636085627,
+ "grad_norm": 0.40887606143951416,
+ "learning_rate": 0.0006,
+ "loss": 6.230792045593262,
+ "step": 179
+ },
+ {
+ "epoch": 2.5032765399737875,
+ "grad_norm": 0.3540310263633728,
+ "learning_rate": 0.0006,
+ "loss": 6.222573280334473,
+ "step": 180
+ },
+ {
+ "epoch": 2.5172564438619487,
+ "grad_norm": 0.496219664812088,
+ "learning_rate": 0.0006,
+ "loss": 6.212109565734863,
+ "step": 181
+ },
+ {
+ "epoch": 2.5312363477501094,
+ "grad_norm": 0.435173898935318,
+ "learning_rate": 0.0006,
+ "loss": 6.221210479736328,
+ "step": 182
+ },
+ {
+ "epoch": 2.54521625163827,
+ "grad_norm": 0.5364007949829102,
+ "learning_rate": 0.0006,
+ "loss": 6.217929840087891,
+ "step": 183
+ },
+ {
+ "epoch": 2.559196155526431,
+ "grad_norm": 0.5946390628814697,
+ "learning_rate": 0.0006,
+ "loss": 6.189267158508301,
+ "step": 184
+ },
+ {
+ "epoch": 2.5731760594145916,
+ "grad_norm": 0.41621312499046326,
+ "learning_rate": 0.0006,
+ "loss": 6.182415008544922,
+ "step": 185
+ },
+ {
+ "epoch": 2.5871559633027523,
+ "grad_norm": 0.5442072749137878,
+ "learning_rate": 0.0006,
+ "loss": 6.150757789611816,
+ "step": 186
+ },
+ {
+ "epoch": 2.601135867190913,
+ "grad_norm": 0.727843165397644,
+ "learning_rate": 0.0006,
+ "loss": 6.146082878112793,
+ "step": 187
+ },
+ {
+ "epoch": 2.615115771079074,
+ "grad_norm": 0.8898891806602478,
+ "learning_rate": 0.0006,
+ "loss": 6.190483093261719,
+ "step": 188
+ },
+ {
+ "epoch": 2.6290956749672345,
+ "grad_norm": 0.5173947215080261,
+ "learning_rate": 0.0006,
+ "loss": 6.151251792907715,
+ "step": 189
+ },
+ {
+ "epoch": 2.6430755788553952,
+ "grad_norm": 0.6476729512214661,
+ "learning_rate": 0.0006,
+ "loss": 6.154841423034668,
+ "step": 190
+ },
+ {
+ "epoch": 2.657055482743556,
+ "grad_norm": 0.3538810908794403,
+ "learning_rate": 0.0006,
+ "loss": 6.103879928588867,
+ "step": 191
+ },
+ {
+ "epoch": 2.6710353866317167,
+ "grad_norm": 0.4773508310317993,
+ "learning_rate": 0.0006,
+ "loss": 6.118101119995117,
+ "step": 192
+ },
+ {
+ "epoch": 2.6850152905198774,
+ "grad_norm": 0.29213786125183105,
+ "learning_rate": 0.0006,
+ "loss": 6.108916282653809,
+ "step": 193
+ },
+ {
+ "epoch": 2.6989951944080386,
+ "grad_norm": 0.40800607204437256,
+ "learning_rate": 0.0006,
+ "loss": 6.113438606262207,
+ "step": 194
+ },
+ {
+ "epoch": 2.7129750982961993,
+ "grad_norm": 0.31157299876213074,
+ "learning_rate": 0.0006,
+ "loss": 6.101809501647949,
+ "step": 195
+ },
+ {
+ "epoch": 2.72695500218436,
+ "grad_norm": 0.28660309314727783,
+ "learning_rate": 0.0006,
+ "loss": 6.075886249542236,
+ "step": 196
+ },
+ {
+ "epoch": 2.7409349060725208,
+ "grad_norm": 0.3810449540615082,
+ "learning_rate": 0.0006,
+ "loss": 6.053257942199707,
+ "step": 197
+ },
+ {
+ "epoch": 2.7549148099606815,
+ "grad_norm": 0.21741755306720734,
+ "learning_rate": 0.0006,
+ "loss": 6.013825416564941,
+ "step": 198
+ },
+ {
+ "epoch": 2.7688947138488422,
+ "grad_norm": 0.2777678966522217,
+ "learning_rate": 0.0006,
+ "loss": 6.054204940795898,
+ "step": 199
+ },
+ {
+ "epoch": 2.782874617737003,
+ "grad_norm": 0.28503066301345825,
+ "learning_rate": 0.0006,
+ "loss": 6.035628318786621,
+ "step": 200
+ },
+ {
+ "epoch": 2.7968545216251637,
+ "grad_norm": 0.41954755783081055,
+ "learning_rate": 0.0006,
+ "loss": 6.028354644775391,
+ "step": 201
+ },
+ {
+ "epoch": 2.810834425513325,
+ "grad_norm": 0.8785563111305237,
+ "learning_rate": 0.0006,
+ "loss": 6.055761337280273,
+ "step": 202
+ },
+ {
+ "epoch": 2.8248143294014856,
+ "grad_norm": 1.7459558248519897,
+ "learning_rate": 0.0006,
+ "loss": 6.11599588394165,
+ "step": 203
+ },
+ {
+ "epoch": 2.8387942332896463,
+ "grad_norm": 0.5725523233413696,
+ "learning_rate": 0.0006,
+ "loss": 6.024280548095703,
+ "step": 204
+ },
+ {
+ "epoch": 2.852774137177807,
+ "grad_norm": 0.5913150906562805,
+ "learning_rate": 0.0006,
+ "loss": 6.050281524658203,
+ "step": 205
+ },
+ {
+ "epoch": 2.8667540410659678,
+ "grad_norm": 0.5929384827613831,
+ "learning_rate": 0.0006,
+ "loss": 6.041121482849121,
+ "step": 206
+ },
+ {
+ "epoch": 2.8807339449541285,
+ "grad_norm": 0.5650724768638611,
+ "learning_rate": 0.0006,
+ "loss": 6.004258155822754,
+ "step": 207
+ },
+ {
+ "epoch": 2.894713848842289,
+ "grad_norm": 0.3420545756816864,
+ "learning_rate": 0.0006,
+ "loss": 5.983296871185303,
+ "step": 208
+ },
+ {
+ "epoch": 2.90869375273045,
+ "grad_norm": 0.2960914075374603,
+ "learning_rate": 0.0006,
+ "loss": 5.988578796386719,
+ "step": 209
+ },
+ {
+ "epoch": 2.9226736566186107,
+ "grad_norm": 0.3252662718296051,
+ "learning_rate": 0.0006,
+ "loss": 5.99103307723999,
+ "step": 210
+ },
+ {
+ "epoch": 2.9366535605067714,
+ "grad_norm": 0.4851132929325104,
+ "learning_rate": 0.0006,
+ "loss": 6.0028977394104,
+ "step": 211
+ },
+ {
+ "epoch": 2.950633464394932,
+ "grad_norm": 0.5639995336532593,
+ "learning_rate": 0.0006,
+ "loss": 5.965080738067627,
+ "step": 212
+ },
+ {
+ "epoch": 2.964613368283093,
+ "grad_norm": 0.4514601230621338,
+ "learning_rate": 0.0006,
+ "loss": 5.961450576782227,
+ "step": 213
+ },
+ {
+ "epoch": 2.9785932721712536,
+ "grad_norm": 0.5397921800613403,
+ "learning_rate": 0.0006,
+ "loss": 5.965290546417236,
+ "step": 214
+ },
+ {
+ "epoch": 2.9925731760594148,
+ "grad_norm": 0.4735587239265442,
+ "learning_rate": 0.0006,
+ "loss": 5.952754497528076,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.32061058282852173,
+ "learning_rate": 0.0006,
+ "loss": 5.961667060852051,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 6.8517303466796875,
+ "eval_runtime": 44.03,
+ "eval_samples_per_second": 55.462,
+ "eval_steps_per_second": 3.475,
+ "step": 216
+ },
+ {
+ "epoch": 3.0139799038881607,
+ "grad_norm": 0.3537784814834595,
+ "learning_rate": 0.0006,
+ "loss": 5.928008079528809,
+ "step": 217
+ },
+ {
+ "epoch": 3.0279598077763215,
+ "grad_norm": 0.40713080763816833,
+ "learning_rate": 0.0006,
+ "loss": 5.9150800704956055,
+ "step": 218
+ },
+ {
+ "epoch": 3.041939711664482,
+ "grad_norm": 0.2548826336860657,
+ "learning_rate": 0.0006,
+ "loss": 5.919757843017578,
+ "step": 219
+ },
+ {
+ "epoch": 3.055919615552643,
+ "grad_norm": 0.2818543016910553,
+ "learning_rate": 0.0006,
+ "loss": 5.913688659667969,
+ "step": 220
+ },
+ {
+ "epoch": 3.0698995194408036,
+ "grad_norm": 0.4196692705154419,
+ "learning_rate": 0.0006,
+ "loss": 5.8675336837768555,
+ "step": 221
+ },
+ {
+ "epoch": 3.083879423328965,
+ "grad_norm": 0.35272282361984253,
+ "learning_rate": 0.0006,
+ "loss": 5.878874778747559,
+ "step": 222
+ },
+ {
+ "epoch": 3.0978593272171255,
+ "grad_norm": 0.3254282772541046,
+ "learning_rate": 0.0006,
+ "loss": 5.8823041915893555,
+ "step": 223
+ },
+ {
+ "epoch": 3.1118392311052863,
+ "grad_norm": 0.4052561819553375,
+ "learning_rate": 0.0006,
+ "loss": 5.867744445800781,
+ "step": 224
+ },
+ {
+ "epoch": 3.125819134993447,
+ "grad_norm": 0.31246256828308105,
+ "learning_rate": 0.0006,
+ "loss": 5.886094093322754,
+ "step": 225
+ },
+ {
+ "epoch": 3.1397990388816077,
+ "grad_norm": 0.3479118347167969,
+ "learning_rate": 0.0006,
+ "loss": 5.850762367248535,
+ "step": 226
+ },
+ {
+ "epoch": 3.1537789427697684,
+ "grad_norm": 0.5037238597869873,
+ "learning_rate": 0.0006,
+ "loss": 5.844175815582275,
+ "step": 227
+ },
+ {
+ "epoch": 3.167758846657929,
+ "grad_norm": 0.6271815896034241,
+ "learning_rate": 0.0006,
+ "loss": 5.871790885925293,
+ "step": 228
+ },
+ {
+ "epoch": 3.18173875054609,
+ "grad_norm": 0.43838298320770264,
+ "learning_rate": 0.0006,
+ "loss": 5.844024658203125,
+ "step": 229
+ },
+ {
+ "epoch": 3.1957186544342506,
+ "grad_norm": 0.4755159616470337,
+ "learning_rate": 0.0006,
+ "loss": 5.846892356872559,
+ "step": 230
+ },
+ {
+ "epoch": 3.2096985583224114,
+ "grad_norm": 0.5229779481887817,
+ "learning_rate": 0.0006,
+ "loss": 5.827000617980957,
+ "step": 231
+ },
+ {
+ "epoch": 3.2236784622105725,
+ "grad_norm": 0.8264499306678772,
+ "learning_rate": 0.0006,
+ "loss": 5.867050647735596,
+ "step": 232
+ },
+ {
+ "epoch": 3.2376583660987333,
+ "grad_norm": 1.0607538223266602,
+ "learning_rate": 0.0006,
+ "loss": 5.877876281738281,
+ "step": 233
+ },
+ {
+ "epoch": 3.251638269986894,
+ "grad_norm": 0.7656505703926086,
+ "learning_rate": 0.0006,
+ "loss": 5.86760139465332,
+ "step": 234
+ },
+ {
+ "epoch": 3.2656181738750547,
+ "grad_norm": 0.7940183281898499,
+ "learning_rate": 0.0006,
+ "loss": 5.861355781555176,
+ "step": 235
+ },
+ {
+ "epoch": 3.2795980777632154,
+ "grad_norm": 0.45171424746513367,
+ "learning_rate": 0.0006,
+ "loss": 5.799808502197266,
+ "step": 236
+ },
+ {
+ "epoch": 3.293577981651376,
+ "grad_norm": 0.6174989342689514,
+ "learning_rate": 0.0006,
+ "loss": 5.8585920333862305,
+ "step": 237
+ },
+ {
+ "epoch": 3.307557885539537,
+ "grad_norm": 0.5341290831565857,
+ "learning_rate": 0.0006,
+ "loss": 5.8116044998168945,
+ "step": 238
+ },
+ {
+ "epoch": 3.3215377894276976,
+ "grad_norm": 0.3938343822956085,
+ "learning_rate": 0.0006,
+ "loss": 5.83797550201416,
+ "step": 239
+ },
+ {
+ "epoch": 3.3355176933158583,
+ "grad_norm": 0.5106972455978394,
+ "learning_rate": 0.0006,
+ "loss": 5.832303047180176,
+ "step": 240
+ },
+ {
+ "epoch": 3.349497597204019,
+ "grad_norm": 0.3791428506374359,
+ "learning_rate": 0.0006,
+ "loss": 5.794981956481934,
+ "step": 241
+ },
+ {
+ "epoch": 3.36347750109218,
+ "grad_norm": 0.42287978529930115,
+ "learning_rate": 0.0006,
+ "loss": 5.788144111633301,
+ "step": 242
+ },
+ {
+ "epoch": 3.3774574049803405,
+ "grad_norm": 0.27334436774253845,
+ "learning_rate": 0.0006,
+ "loss": 5.771070957183838,
+ "step": 243
+ },
+ {
+ "epoch": 3.3914373088685017,
+ "grad_norm": 0.2470470368862152,
+ "learning_rate": 0.0006,
+ "loss": 5.755998611450195,
+ "step": 244
+ },
+ {
+ "epoch": 3.4054172127566624,
+ "grad_norm": 0.3043915033340454,
+ "learning_rate": 0.0006,
+ "loss": 5.779492378234863,
+ "step": 245
+ },
+ {
+ "epoch": 3.419397116644823,
+ "grad_norm": 0.2960112988948822,
+ "learning_rate": 0.0006,
+ "loss": 5.750328063964844,
+ "step": 246
+ },
+ {
+ "epoch": 3.433377020532984,
+ "grad_norm": 0.3046723008155823,
+ "learning_rate": 0.0006,
+ "loss": 5.776517868041992,
+ "step": 247
+ },
+ {
+ "epoch": 3.4473569244211446,
+ "grad_norm": 0.22461780905723572,
+ "learning_rate": 0.0006,
+ "loss": 5.760989665985107,
+ "step": 248
+ },
+ {
+ "epoch": 3.4613368283093053,
+ "grad_norm": 0.24625757336616516,
+ "learning_rate": 0.0006,
+ "loss": 5.759706497192383,
+ "step": 249
+ },
+ {
+ "epoch": 3.475316732197466,
+ "grad_norm": 0.18207131326198578,
+ "learning_rate": 0.0006,
+ "loss": 5.747040748596191,
+ "step": 250
+ },
+ {
+ "epoch": 3.489296636085627,
+ "grad_norm": 0.16473834216594696,
+ "learning_rate": 0.0006,
+ "loss": 5.761577606201172,
+ "step": 251
+ },
+ {
+ "epoch": 3.5032765399737875,
+ "grad_norm": 0.25155773758888245,
+ "learning_rate": 0.0006,
+ "loss": 5.696502208709717,
+ "step": 252
+ },
+ {
+ "epoch": 3.5172564438619487,
+ "grad_norm": 0.24115674197673798,
+ "learning_rate": 0.0006,
+ "loss": 5.676957130432129,
+ "step": 253
+ },
+ {
+ "epoch": 3.5312363477501094,
+ "grad_norm": 0.40912172198295593,
+ "learning_rate": 0.0006,
+ "loss": 5.695090293884277,
+ "step": 254
+ },
+ {
+ "epoch": 3.54521625163827,
+ "grad_norm": 0.6727662682533264,
+ "learning_rate": 0.0006,
+ "loss": 5.722194671630859,
+ "step": 255
+ },
+ {
+ "epoch": 3.559196155526431,
+ "grad_norm": 0.8450719118118286,
+ "learning_rate": 0.0006,
+ "loss": 5.764680862426758,
+ "step": 256
+ },
+ {
+ "epoch": 3.5731760594145916,
+ "grad_norm": 0.9916183352470398,
+ "learning_rate": 0.0006,
+ "loss": 5.754530429840088,
+ "step": 257
+ },
+ {
+ "epoch": 3.5871559633027523,
+ "grad_norm": 1.041922688484192,
+ "learning_rate": 0.0006,
+ "loss": 5.781468391418457,
+ "step": 258
+ },
+ {
+ "epoch": 3.601135867190913,
+ "grad_norm": 0.972039520740509,
+ "learning_rate": 0.0006,
+ "loss": 5.760323524475098,
+ "step": 259
+ },
+ {
+ "epoch": 3.615115771079074,
+ "grad_norm": 0.6802462935447693,
+ "learning_rate": 0.0006,
+ "loss": 5.750064849853516,
+ "step": 260
+ },
+ {
+ "epoch": 3.6290956749672345,
+ "grad_norm": 0.48553529381752014,
+ "learning_rate": 0.0006,
+ "loss": 5.7464094161987305,
+ "step": 261
+ },
+ {
+ "epoch": 3.6430755788553952,
+ "grad_norm": 0.4066704213619232,
+ "learning_rate": 0.0006,
+ "loss": 5.719789505004883,
+ "step": 262
+ },
+ {
+ "epoch": 3.657055482743556,
+ "grad_norm": 0.3300860822200775,
+ "learning_rate": 0.0006,
+ "loss": 5.719920635223389,
+ "step": 263
+ },
+ {
+ "epoch": 3.6710353866317167,
+ "grad_norm": 0.3286679983139038,
+ "learning_rate": 0.0006,
+ "loss": 5.723465919494629,
+ "step": 264
+ },
+ {
+ "epoch": 3.6850152905198774,
+ "grad_norm": 0.27653390169143677,
+ "learning_rate": 0.0006,
+ "loss": 5.713820457458496,
+ "step": 265
+ },
+ {
+ "epoch": 3.6989951944080386,
+ "grad_norm": 0.26138055324554443,
+ "learning_rate": 0.0006,
+ "loss": 5.683221817016602,
+ "step": 266
+ },
+ {
+ "epoch": 3.7129750982961993,
+ "grad_norm": 0.23706290125846863,
+ "learning_rate": 0.0006,
+ "loss": 5.6896867752075195,
+ "step": 267
+ },
+ {
+ "epoch": 3.72695500218436,
+ "grad_norm": 0.2751729190349579,
+ "learning_rate": 0.0006,
+ "loss": 5.710301876068115,
+ "step": 268
+ },
+ {
+ "epoch": 3.7409349060725208,
+ "grad_norm": 0.255393385887146,
+ "learning_rate": 0.0006,
+ "loss": 5.687932968139648,
+ "step": 269
+ },
+ {
+ "epoch": 3.7549148099606815,
+ "grad_norm": 0.21453925967216492,
+ "learning_rate": 0.0006,
+ "loss": 5.68234395980835,
+ "step": 270
+ },
+ {
+ "epoch": 3.7688947138488422,
+ "grad_norm": 0.21771012246608734,
+ "learning_rate": 0.0006,
+ "loss": 5.683980464935303,
+ "step": 271
+ },
+ {
+ "epoch": 3.782874617737003,
+ "grad_norm": 0.1884593963623047,
+ "learning_rate": 0.0006,
+ "loss": 5.662779808044434,
+ "step": 272
+ },
+ {
+ "epoch": 3.7968545216251637,
+ "grad_norm": 0.20429612696170807,
+ "learning_rate": 0.0006,
+ "loss": 5.650941848754883,
+ "step": 273
+ },
+ {
+ "epoch": 3.810834425513325,
+ "grad_norm": 0.22586797177791595,
+ "learning_rate": 0.0006,
+ "loss": 5.639376640319824,
+ "step": 274
+ },
+ {
+ "epoch": 3.8248143294014856,
+ "grad_norm": 0.19651705026626587,
+ "learning_rate": 0.0006,
+ "loss": 5.612030029296875,
+ "step": 275
+ },
+ {
+ "epoch": 3.8387942332896463,
+ "grad_norm": 0.2125253826379776,
+ "learning_rate": 0.0006,
+ "loss": 5.622836589813232,
+ "step": 276
+ },
+ {
+ "epoch": 3.852774137177807,
+ "grad_norm": 0.2905234694480896,
+ "learning_rate": 0.0006,
+ "loss": 5.624594688415527,
+ "step": 277
+ },
+ {
+ "epoch": 3.8667540410659678,
+ "grad_norm": 0.2718426585197449,
+ "learning_rate": 0.0006,
+ "loss": 5.619892120361328,
+ "step": 278
+ },
+ {
+ "epoch": 3.8807339449541285,
+ "grad_norm": 0.26481127738952637,
+ "learning_rate": 0.0006,
+ "loss": 5.612496852874756,
+ "step": 279
+ },
+ {
+ "epoch": 3.894713848842289,
+ "grad_norm": 0.2876453399658203,
+ "learning_rate": 0.0006,
+ "loss": 5.59157133102417,
+ "step": 280
+ },
+ {
+ "epoch": 3.90869375273045,
+ "grad_norm": 0.22829554975032806,
+ "learning_rate": 0.0006,
+ "loss": 5.5884199142456055,
+ "step": 281
+ },
+ {
+ "epoch": 3.9226736566186107,
+ "grad_norm": 0.22852344810962677,
+ "learning_rate": 0.0006,
+ "loss": 5.618719100952148,
+ "step": 282
+ },
+ {
+ "epoch": 3.9366535605067714,
+ "grad_norm": 0.37366563081741333,
+ "learning_rate": 0.0006,
+ "loss": 5.611738204956055,
+ "step": 283
+ },
+ {
+ "epoch": 3.950633464394932,
+ "grad_norm": 0.5650382041931152,
+ "learning_rate": 0.0006,
+ "loss": 5.606371879577637,
+ "step": 284
+ },
+ {
+ "epoch": 3.964613368283093,
+ "grad_norm": 0.5960066914558411,
+ "learning_rate": 0.0006,
+ "loss": 5.595022201538086,
+ "step": 285
+ },
+ {
+ "epoch": 3.9785932721712536,
+ "grad_norm": 0.3561663031578064,
+ "learning_rate": 0.0006,
+ "loss": 5.581035614013672,
+ "step": 286
+ },
+ {
+ "epoch": 3.9925731760594148,
+ "grad_norm": 0.44699913263320923,
+ "learning_rate": 0.0006,
+ "loss": 5.568033218383789,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.42783990502357483,
+ "learning_rate": 0.0006,
+ "loss": 5.571993827819824,
+ "step": 288
+ },
+ {
+ "epoch": 4.0,
+ "eval_loss": 6.349016189575195,
+ "eval_runtime": 44.3326,
+ "eval_samples_per_second": 55.084,
+ "eval_steps_per_second": 3.451,
+ "step": 288
+ },
+ {
+ "epoch": 4.013979903888161,
+ "grad_norm": 0.41305896639823914,
+ "learning_rate": 0.0006,
+ "loss": 5.562954902648926,
+ "step": 289
+ },
+ {
+ "epoch": 4.0279598077763215,
+ "grad_norm": 0.3966459035873413,
+ "learning_rate": 0.0006,
+ "loss": 5.5671916007995605,
+ "step": 290
+ },
+ {
+ "epoch": 4.041939711664482,
+ "grad_norm": 0.4846104085445404,
+ "learning_rate": 0.0006,
+ "loss": 5.548027038574219,
+ "step": 291
+ },
+ {
+ "epoch": 4.055919615552643,
+ "grad_norm": 0.5916333794593811,
+ "learning_rate": 0.0006,
+ "loss": 5.5900068283081055,
+ "step": 292
+ },
+ {
+ "epoch": 4.069899519440804,
+ "grad_norm": 0.5973889231681824,
+ "learning_rate": 0.0006,
+ "loss": 5.537594795227051,
+ "step": 293
+ },
+ {
+ "epoch": 4.083879423328964,
+ "grad_norm": 0.4190494418144226,
+ "learning_rate": 0.0006,
+ "loss": 5.534749984741211,
+ "step": 294
+ },
+ {
+ "epoch": 4.097859327217125,
+ "grad_norm": 0.5956901907920837,
+ "learning_rate": 0.0006,
+ "loss": 5.554540634155273,
+ "step": 295
+ },
+ {
+ "epoch": 4.111839231105286,
+ "grad_norm": 0.8257920742034912,
+ "learning_rate": 0.0006,
+ "loss": 5.5728068351745605,
+ "step": 296
+ },
+ {
+ "epoch": 4.1258191349934465,
+ "grad_norm": 0.7241750955581665,
+ "learning_rate": 0.0006,
+ "loss": 5.5643815994262695,
+ "step": 297
+ },
+ {
+ "epoch": 4.139799038881607,
+ "grad_norm": 0.45730507373809814,
+ "learning_rate": 0.0006,
+ "loss": 5.554225921630859,
+ "step": 298
+ },
+ {
+ "epoch": 4.153778942769769,
+ "grad_norm": 0.5166977643966675,
+ "learning_rate": 0.0006,
+ "loss": 5.540790557861328,
+ "step": 299
+ },
+ {
+ "epoch": 4.16775884665793,
+ "grad_norm": 0.433237761259079,
+ "learning_rate": 0.0006,
+ "loss": 5.536884784698486,
+ "step": 300
+ },
+ {
+ "epoch": 4.18173875054609,
+ "grad_norm": 0.3369830250740051,
+ "learning_rate": 0.0006,
+ "loss": 5.532837867736816,
+ "step": 301
+ },
+ {
+ "epoch": 4.195718654434251,
+ "grad_norm": 0.33091458678245544,
+ "learning_rate": 0.0006,
+ "loss": 5.547643661499023,
+ "step": 302
+ },
+ {
+ "epoch": 4.209698558322412,
+ "grad_norm": 0.36462724208831787,
+ "learning_rate": 0.0006,
+ "loss": 5.525021076202393,
+ "step": 303
+ },
+ {
+ "epoch": 4.2236784622105725,
+ "grad_norm": 0.3342771530151367,
+ "learning_rate": 0.0006,
+ "loss": 5.512082099914551,
+ "step": 304
+ },
+ {
+ "epoch": 4.237658366098733,
+ "grad_norm": 0.26784762740135193,
+ "learning_rate": 0.0006,
+ "loss": 5.488072395324707,
+ "step": 305
+ },
+ {
+ "epoch": 4.251638269986894,
+ "grad_norm": 0.25986987352371216,
+ "learning_rate": 0.0006,
+ "loss": 5.4960455894470215,
+ "step": 306
+ },
+ {
+ "epoch": 4.265618173875055,
+ "grad_norm": 0.24595795571804047,
+ "learning_rate": 0.0006,
+ "loss": 5.513367176055908,
+ "step": 307
+ },
+ {
+ "epoch": 4.279598077763215,
+ "grad_norm": 0.2224857211112976,
+ "learning_rate": 0.0006,
+ "loss": 5.465205192565918,
+ "step": 308
+ },
+ {
+ "epoch": 4.293577981651376,
+ "grad_norm": 0.26799243688583374,
+ "learning_rate": 0.0006,
+ "loss": 5.476632118225098,
+ "step": 309
+ },
+ {
+ "epoch": 4.307557885539537,
+ "grad_norm": 0.20443417131900787,
+ "learning_rate": 0.0006,
+ "loss": 5.442601203918457,
+ "step": 310
+ },
+ {
+ "epoch": 4.321537789427698,
+ "grad_norm": 0.2275059074163437,
+ "learning_rate": 0.0006,
+ "loss": 5.453519344329834,
+ "step": 311
+ },
+ {
+ "epoch": 4.335517693315858,
+ "grad_norm": 0.2860901951789856,
+ "learning_rate": 0.0006,
+ "loss": 5.439424514770508,
+ "step": 312
+ },
+ {
+ "epoch": 4.349497597204019,
+ "grad_norm": 0.3378142714500427,
+ "learning_rate": 0.0006,
+ "loss": 5.476953983306885,
+ "step": 313
+ },
+ {
+ "epoch": 4.36347750109218,
+ "grad_norm": 0.3487110733985901,
+ "learning_rate": 0.0006,
+ "loss": 5.47003698348999,
+ "step": 314
+ },
+ {
+ "epoch": 4.3774574049803405,
+ "grad_norm": 0.3655227720737457,
+ "learning_rate": 0.0006,
+ "loss": 5.454250812530518,
+ "step": 315
+ },
+ {
+ "epoch": 4.391437308868501,
+ "grad_norm": 0.3754786252975464,
+ "learning_rate": 0.0006,
+ "loss": 5.475249290466309,
+ "step": 316
+ },
+ {
+ "epoch": 4.405417212756662,
+ "grad_norm": 0.42494088411331177,
+ "learning_rate": 0.0006,
+ "loss": 5.4552459716796875,
+ "step": 317
+ },
+ {
+ "epoch": 4.419397116644823,
+ "grad_norm": 0.4914703667163849,
+ "learning_rate": 0.0006,
+ "loss": 5.431845188140869,
+ "step": 318
+ },
+ {
+ "epoch": 4.433377020532983,
+ "grad_norm": 0.42470860481262207,
+ "learning_rate": 0.0006,
+ "loss": 5.454581260681152,
+ "step": 319
+ },
+ {
+ "epoch": 4.447356924421145,
+ "grad_norm": 0.3828011155128479,
+ "learning_rate": 0.0006,
+ "loss": 5.435178756713867,
+ "step": 320
+ },
+ {
+ "epoch": 4.461336828309306,
+ "grad_norm": 0.47256892919540405,
+ "learning_rate": 0.0006,
+ "loss": 5.428861618041992,
+ "step": 321
+ },
+ {
+ "epoch": 4.4753167321974665,
+ "grad_norm": 0.5665146708488464,
+ "learning_rate": 0.0006,
+ "loss": 5.424633026123047,
+ "step": 322
+ },
+ {
+ "epoch": 4.489296636085627,
+ "grad_norm": 0.48146721720695496,
+ "learning_rate": 0.0006,
+ "loss": 5.4577860832214355,
+ "step": 323
+ },
+ {
+ "epoch": 4.503276539973788,
+ "grad_norm": 0.3378535509109497,
+ "learning_rate": 0.0006,
+ "loss": 5.422727108001709,
+ "step": 324
+ },
+ {
+ "epoch": 4.517256443861949,
+ "grad_norm": 0.41981473565101624,
+ "learning_rate": 0.0006,
+ "loss": 5.418993949890137,
+ "step": 325
+ },
+ {
+ "epoch": 4.531236347750109,
+ "grad_norm": 0.39389684796333313,
+ "learning_rate": 0.0006,
+ "loss": 5.41835880279541,
+ "step": 326
+ },
+ {
+ "epoch": 4.54521625163827,
+ "grad_norm": 0.5912176370620728,
+ "learning_rate": 0.0006,
+ "loss": 5.40073299407959,
+ "step": 327
+ },
+ {
+ "epoch": 4.559196155526431,
+ "grad_norm": 0.6877487897872925,
+ "learning_rate": 0.0006,
+ "loss": 5.445301055908203,
+ "step": 328
+ },
+ {
+ "epoch": 4.573176059414592,
+ "grad_norm": 0.580555260181427,
+ "learning_rate": 0.0006,
+ "loss": 5.431069374084473,
+ "step": 329
+ },
+ {
+ "epoch": 4.587155963302752,
+ "grad_norm": 0.5974457859992981,
+ "learning_rate": 0.0006,
+ "loss": 5.422694206237793,
+ "step": 330
+ },
+ {
+ "epoch": 4.601135867190913,
+ "grad_norm": 0.722481906414032,
+ "learning_rate": 0.0006,
+ "loss": 5.447752952575684,
+ "step": 331
+ },
+ {
+ "epoch": 4.615115771079074,
+ "grad_norm": 0.7687886953353882,
+ "learning_rate": 0.0006,
+ "loss": 5.437956809997559,
+ "step": 332
+ },
+ {
+ "epoch": 4.6290956749672345,
+ "grad_norm": 0.7368173003196716,
+ "learning_rate": 0.0006,
+ "loss": 5.4367241859436035,
+ "step": 333
+ },
+ {
+ "epoch": 4.643075578855395,
+ "grad_norm": 0.6650524139404297,
+ "learning_rate": 0.0006,
+ "loss": 5.4288434982299805,
+ "step": 334
+ },
+ {
+ "epoch": 4.657055482743556,
+ "grad_norm": 0.4997614920139313,
+ "learning_rate": 0.0006,
+ "loss": 5.412769317626953,
+ "step": 335
+ },
+ {
+ "epoch": 4.671035386631717,
+ "grad_norm": 0.44208982586860657,
+ "learning_rate": 0.0006,
+ "loss": 5.42405366897583,
+ "step": 336
+ },
+ {
+ "epoch": 4.685015290519877,
+ "grad_norm": 0.39510273933410645,
+ "learning_rate": 0.0006,
+ "loss": 5.402547836303711,
+ "step": 337
+ },
+ {
+ "epoch": 4.698995194408038,
+ "grad_norm": 0.44970476627349854,
+ "learning_rate": 0.0006,
+ "loss": 5.377168655395508,
+ "step": 338
+ },
+ {
+ "epoch": 4.712975098296199,
+ "grad_norm": 0.3902331590652466,
+ "learning_rate": 0.0006,
+ "loss": 5.401622772216797,
+ "step": 339
+ },
+ {
+ "epoch": 4.72695500218436,
+ "grad_norm": 0.33485135436058044,
+ "learning_rate": 0.0006,
+ "loss": 5.397945880889893,
+ "step": 340
+ },
+ {
+ "epoch": 4.740934906072521,
+ "grad_norm": 0.29062309861183167,
+ "learning_rate": 0.0006,
+ "loss": 5.356175422668457,
+ "step": 341
+ },
+ {
+ "epoch": 4.754914809960681,
+ "grad_norm": 0.23617377877235413,
+ "learning_rate": 0.0006,
+ "loss": 5.388517379760742,
+ "step": 342
+ },
+ {
+ "epoch": 4.768894713848843,
+ "grad_norm": 0.2704737186431885,
+ "learning_rate": 0.0006,
+ "loss": 5.3746137619018555,
+ "step": 343
+ },
+ {
+ "epoch": 4.782874617737003,
+ "grad_norm": 0.20488551259040833,
+ "learning_rate": 0.0006,
+ "loss": 5.3754472732543945,
+ "step": 344
+ },
+ {
+ "epoch": 4.796854521625164,
+ "grad_norm": 0.2007082849740982,
+ "learning_rate": 0.0006,
+ "loss": 5.3538618087768555,
+ "step": 345
+ },
+ {
+ "epoch": 4.810834425513325,
+ "grad_norm": 0.21732935309410095,
+ "learning_rate": 0.0006,
+ "loss": 5.351774215698242,
+ "step": 346
+ },
+ {
+ "epoch": 4.824814329401486,
+ "grad_norm": 0.1944841742515564,
+ "learning_rate": 0.0006,
+ "loss": 5.357545852661133,
+ "step": 347
+ },
+ {
+ "epoch": 4.838794233289646,
+ "grad_norm": 0.1953933835029602,
+ "learning_rate": 0.0006,
+ "loss": 5.321681022644043,
+ "step": 348
+ },
+ {
+ "epoch": 4.852774137177807,
+ "grad_norm": 0.1743433028459549,
+ "learning_rate": 0.0006,
+ "loss": 5.340302467346191,
+ "step": 349
+ },
+ {
+ "epoch": 4.866754041065968,
+ "grad_norm": 0.19655466079711914,
+ "learning_rate": 0.0006,
+ "loss": 5.325471878051758,
+ "step": 350
+ },
+ {
+ "epoch": 4.8807339449541285,
+ "grad_norm": 0.15761791169643402,
+ "learning_rate": 0.0006,
+ "loss": 5.3453240394592285,
+ "step": 351
+ },
+ {
+ "epoch": 4.894713848842289,
+ "grad_norm": 0.19164425134658813,
+ "learning_rate": 0.0006,
+ "loss": 5.315583229064941,
+ "step": 352
+ },
+ {
+ "epoch": 4.90869375273045,
+ "grad_norm": 0.28084540367126465,
+ "learning_rate": 0.0006,
+ "loss": 5.309171676635742,
+ "step": 353
+ },
+ {
+ "epoch": 4.922673656618611,
+ "grad_norm": 0.4681853652000427,
+ "learning_rate": 0.0006,
+ "loss": 5.318211078643799,
+ "step": 354
+ },
+ {
+ "epoch": 4.936653560506771,
+ "grad_norm": 0.6417295932769775,
+ "learning_rate": 0.0006,
+ "loss": 5.309263706207275,
+ "step": 355
+ },
+ {
+ "epoch": 4.950633464394932,
+ "grad_norm": 0.501312792301178,
+ "learning_rate": 0.0006,
+ "loss": 5.321534156799316,
+ "step": 356
+ },
+ {
+ "epoch": 4.964613368283093,
+ "grad_norm": 0.47502145171165466,
+ "learning_rate": 0.0006,
+ "loss": 5.323659896850586,
+ "step": 357
+ },
+ {
+ "epoch": 4.978593272171254,
+ "grad_norm": 0.5366594791412354,
+ "learning_rate": 0.0006,
+ "loss": 5.327367782592773,
+ "step": 358
+ },
+ {
+ "epoch": 4.992573176059414,
+ "grad_norm": 0.6986395120620728,
+ "learning_rate": 0.0006,
+ "loss": 5.311097145080566,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.6626625657081604,
+ "learning_rate": 0.0006,
+ "loss": 5.337558269500732,
+ "step": 360
+ },
+ {
+ "epoch": 5.0,
+ "eval_loss": 5.929230690002441,
+ "eval_runtime": 44.5268,
+ "eval_samples_per_second": 54.843,
+ "eval_steps_per_second": 3.436,
+ "step": 360
+ },
+ {
+ "epoch": 5.013979903888161,
+ "grad_norm": 0.7383704781532288,
+ "learning_rate": 0.0006,
+ "loss": 5.315563678741455,
+ "step": 361
+ },
+ {
+ "epoch": 5.0279598077763215,
+ "grad_norm": 0.7730138301849365,
+ "learning_rate": 0.0006,
+ "loss": 5.324905872344971,
+ "step": 362
+ },
+ {
+ "epoch": 5.041939711664482,
+ "grad_norm": 0.8170825839042664,
+ "learning_rate": 0.0006,
+ "loss": 5.350251197814941,
+ "step": 363
+ },
+ {
+ "epoch": 5.055919615552643,
+ "grad_norm": 0.6950958371162415,
+ "learning_rate": 0.0006,
+ "loss": 5.338744163513184,
+ "step": 364
+ },
+ {
+ "epoch": 5.069899519440804,
+ "grad_norm": 0.5582894086837769,
+ "learning_rate": 0.0006,
+ "loss": 5.340539932250977,
+ "step": 365
+ },
+ {
+ "epoch": 5.083879423328964,
+ "grad_norm": 0.4772159159183502,
+ "learning_rate": 0.0006,
+ "loss": 5.344161033630371,
+ "step": 366
+ },
+ {
+ "epoch": 5.097859327217125,
+ "grad_norm": 0.5432839393615723,
+ "learning_rate": 0.0006,
+ "loss": 5.312403678894043,
+ "step": 367
+ },
+ {
+ "epoch": 5.111839231105286,
+ "grad_norm": 0.4944784641265869,
+ "learning_rate": 0.0006,
+ "loss": 5.30281925201416,
+ "step": 368
+ },
+ {
+ "epoch": 5.1258191349934465,
+ "grad_norm": 0.4298315942287445,
+ "learning_rate": 0.0006,
+ "loss": 5.29564094543457,
+ "step": 369
+ },
+ {
+ "epoch": 5.139799038881607,
+ "grad_norm": 0.349889874458313,
+ "learning_rate": 0.0006,
+ "loss": 5.287062644958496,
+ "step": 370
+ },
+ {
+ "epoch": 5.153778942769769,
+ "grad_norm": 0.2823719084262848,
+ "learning_rate": 0.0006,
+ "loss": 5.28826904296875,
+ "step": 371
+ },
+ {
+ "epoch": 5.16775884665793,
+ "grad_norm": 0.32975050806999207,
+ "learning_rate": 0.0006,
+ "loss": 5.256399631500244,
+ "step": 372
+ },
+ {
+ "epoch": 5.18173875054609,
+ "grad_norm": 0.2963952124118805,
+ "learning_rate": 0.0006,
+ "loss": 5.273757457733154,
+ "step": 373
+ },
+ {
+ "epoch": 5.195718654434251,
+ "grad_norm": 0.21345984935760498,
+ "learning_rate": 0.0006,
+ "loss": 5.274978160858154,
+ "step": 374
+ },
+ {
+ "epoch": 5.209698558322412,
+ "grad_norm": 0.2363101840019226,
+ "learning_rate": 0.0006,
+ "loss": 5.261585235595703,
+ "step": 375
+ },
+ {
+ "epoch": 5.2236784622105725,
+ "grad_norm": 0.19626963138580322,
+ "learning_rate": 0.0006,
+ "loss": 5.259700298309326,
+ "step": 376
+ },
+ {
+ "epoch": 5.237658366098733,
+ "grad_norm": 0.21083571016788483,
+ "learning_rate": 0.0006,
+ "loss": 5.233585357666016,
+ "step": 377
+ },
+ {
+ "epoch": 5.251638269986894,
+ "grad_norm": 0.2273513823747635,
+ "learning_rate": 0.0006,
+ "loss": 5.231740474700928,
+ "step": 378
+ },
+ {
+ "epoch": 5.265618173875055,
+ "grad_norm": 0.18299247324466705,
+ "learning_rate": 0.0006,
+ "loss": 5.251256465911865,
+ "step": 379
+ },
+ {
+ "epoch": 5.279598077763215,
+ "grad_norm": 0.19578224420547485,
+ "learning_rate": 0.0006,
+ "loss": 5.230329513549805,
+ "step": 380
+ },
+ {
+ "epoch": 5.293577981651376,
+ "grad_norm": 0.20308879017829895,
+ "learning_rate": 0.0006,
+ "loss": 5.243951797485352,
+ "step": 381
+ },
+ {
+ "epoch": 5.307557885539537,
+ "grad_norm": 0.21053212881088257,
+ "learning_rate": 0.0006,
+ "loss": 5.210272789001465,
+ "step": 382
+ },
+ {
+ "epoch": 5.321537789427698,
+ "grad_norm": 0.21852520108222961,
+ "learning_rate": 0.0006,
+ "loss": 5.215418815612793,
+ "step": 383
+ },
+ {
+ "epoch": 5.335517693315858,
+ "grad_norm": 0.24872010946273804,
+ "learning_rate": 0.0006,
+ "loss": 5.225139617919922,
+ "step": 384
+ },
+ {
+ "epoch": 5.349497597204019,
+ "grad_norm": 0.27780187129974365,
+ "learning_rate": 0.0006,
+ "loss": 5.241010665893555,
+ "step": 385
+ },
+ {
+ "epoch": 5.36347750109218,
+ "grad_norm": 0.261767715215683,
+ "learning_rate": 0.0006,
+ "loss": 5.230723857879639,
+ "step": 386
+ },
+ {
+ "epoch": 5.3774574049803405,
+ "grad_norm": 0.2111261785030365,
+ "learning_rate": 0.0006,
+ "loss": 5.1848602294921875,
+ "step": 387
+ },
+ {
+ "epoch": 5.391437308868501,
+ "grad_norm": 0.24325387179851532,
+ "learning_rate": 0.0006,
+ "loss": 5.180911064147949,
+ "step": 388
+ },
+ {
+ "epoch": 5.405417212756662,
+ "grad_norm": 0.19542962312698364,
+ "learning_rate": 0.0006,
+ "loss": 5.189907073974609,
+ "step": 389
+ },
+ {
+ "epoch": 5.419397116644823,
+ "grad_norm": 0.20489346981048584,
+ "learning_rate": 0.0006,
+ "loss": 5.184634208679199,
+ "step": 390
+ },
+ {
+ "epoch": 5.433377020532983,
+ "grad_norm": 0.2753409147262573,
+ "learning_rate": 0.0006,
+ "loss": 5.190083026885986,
+ "step": 391
+ },
+ {
+ "epoch": 5.447356924421145,
+ "grad_norm": 0.3758019208908081,
+ "learning_rate": 0.0006,
+ "loss": 5.189423561096191,
+ "step": 392
+ },
+ {
+ "epoch": 5.461336828309306,
+ "grad_norm": 0.4425095021724701,
+ "learning_rate": 0.0006,
+ "loss": 5.17152214050293,
+ "step": 393
+ },
+ {
+ "epoch": 5.4753167321974665,
+ "grad_norm": 0.39721858501434326,
+ "learning_rate": 0.0006,
+ "loss": 5.189178466796875,
+ "step": 394
+ },
+ {
+ "epoch": 5.489296636085627,
+ "grad_norm": 0.43441957235336304,
+ "learning_rate": 0.0006,
+ "loss": 5.1823577880859375,
+ "step": 395
+ },
+ {
+ "epoch": 5.503276539973788,
+ "grad_norm": 0.3583861291408539,
+ "learning_rate": 0.0006,
+ "loss": 5.160187721252441,
+ "step": 396
+ },
+ {
+ "epoch": 5.517256443861949,
+ "grad_norm": 0.323290079832077,
+ "learning_rate": 0.0006,
+ "loss": 5.113046646118164,
+ "step": 397
+ },
+ {
+ "epoch": 5.531236347750109,
+ "grad_norm": 0.3049418330192566,
+ "learning_rate": 0.0006,
+ "loss": 5.172209739685059,
+ "step": 398
+ },
+ {
+ "epoch": 5.54521625163827,
+ "grad_norm": 0.3253744840621948,
+ "learning_rate": 0.0006,
+ "loss": 5.1970720291137695,
+ "step": 399
+ },
+ {
+ "epoch": 5.559196155526431,
+ "grad_norm": 0.3232555091381073,
+ "learning_rate": 0.0006,
+ "loss": 5.173195838928223,
+ "step": 400
+ },
+ {
+ "epoch": 5.573176059414592,
+ "grad_norm": 0.33751845359802246,
+ "learning_rate": 0.0006,
+ "loss": 5.137526988983154,
+ "step": 401
+ },
+ {
+ "epoch": 5.587155963302752,
+ "grad_norm": 0.45970913767814636,
+ "learning_rate": 0.0006,
+ "loss": 5.123377799987793,
+ "step": 402
+ },
+ {
+ "epoch": 5.601135867190913,
+ "grad_norm": 0.5383784770965576,
+ "learning_rate": 0.0006,
+ "loss": 5.154180526733398,
+ "step": 403
+ },
+ {
+ "epoch": 5.615115771079074,
+ "grad_norm": 0.45765912532806396,
+ "learning_rate": 0.0006,
+ "loss": 5.1485209465026855,
+ "step": 404
+ },
+ {
+ "epoch": 5.6290956749672345,
+ "grad_norm": 0.5079503059387207,
+ "learning_rate": 0.0006,
+ "loss": 5.158293724060059,
+ "step": 405
+ },
+ {
+ "epoch": 5.643075578855395,
+ "grad_norm": 0.4860183894634247,
+ "learning_rate": 0.0006,
+ "loss": 5.1610212326049805,
+ "step": 406
+ },
+ {
+ "epoch": 5.657055482743556,
+ "grad_norm": 0.4065648913383484,
+ "learning_rate": 0.0006,
+ "loss": 5.1260786056518555,
+ "step": 407
+ },
+ {
+ "epoch": 5.671035386631717,
+ "grad_norm": 0.39606142044067383,
+ "learning_rate": 0.0006,
+ "loss": 5.1598711013793945,
+ "step": 408
+ },
+ {
+ "epoch": 5.685015290519877,
+ "grad_norm": 0.4705151319503784,
+ "learning_rate": 0.0006,
+ "loss": 5.166455268859863,
+ "step": 409
+ },
+ {
+ "epoch": 5.698995194408038,
+ "grad_norm": 0.5040799379348755,
+ "learning_rate": 0.0006,
+ "loss": 5.1408209800720215,
+ "step": 410
+ },
+ {
+ "epoch": 5.712975098296199,
+ "grad_norm": 0.5012556910514832,
+ "learning_rate": 0.0006,
+ "loss": 5.144109725952148,
+ "step": 411
+ },
+ {
+ "epoch": 5.72695500218436,
+ "grad_norm": 0.44301411509513855,
+ "learning_rate": 0.0006,
+ "loss": 5.155509948730469,
+ "step": 412
+ },
+ {
+ "epoch": 5.740934906072521,
+ "grad_norm": 0.36632269620895386,
+ "learning_rate": 0.0006,
+ "loss": 5.123111248016357,
+ "step": 413
+ },
+ {
+ "epoch": 5.754914809960681,
+ "grad_norm": 0.2980524003505707,
+ "learning_rate": 0.0006,
+ "loss": 5.1355719566345215,
+ "step": 414
+ },
+ {
+ "epoch": 5.768894713848843,
+ "grad_norm": 0.3441782295703888,
+ "learning_rate": 0.0006,
+ "loss": 5.132327079772949,
+ "step": 415
+ },
+ {
+ "epoch": 5.782874617737003,
+ "grad_norm": 0.4150780737400055,
+ "learning_rate": 0.0006,
+ "loss": 5.148543357849121,
+ "step": 416
+ },
+ {
+ "epoch": 5.796854521625164,
+ "grad_norm": 0.48417383432388306,
+ "learning_rate": 0.0006,
+ "loss": 5.104989528656006,
+ "step": 417
+ },
+ {
+ "epoch": 5.810834425513325,
+ "grad_norm": 0.3216031491756439,
+ "learning_rate": 0.0006,
+ "loss": 5.0926127433776855,
+ "step": 418
+ },
+ {
+ "epoch": 5.824814329401486,
+ "grad_norm": 0.2821158468723297,
+ "learning_rate": 0.0006,
+ "loss": 5.112299919128418,
+ "step": 419
+ },
+ {
+ "epoch": 5.838794233289646,
+ "grad_norm": 0.29821011424064636,
+ "learning_rate": 0.0006,
+ "loss": 5.091662406921387,
+ "step": 420
+ },
+ {
+ "epoch": 5.852774137177807,
+ "grad_norm": 0.30570563673973083,
+ "learning_rate": 0.0006,
+ "loss": 5.137539863586426,
+ "step": 421
+ },
+ {
+ "epoch": 5.866754041065968,
+ "grad_norm": 0.4029594957828522,
+ "learning_rate": 0.0006,
+ "loss": 5.112751007080078,
+ "step": 422
+ },
+ {
+ "epoch": 5.8807339449541285,
+ "grad_norm": 0.3878514766693115,
+ "learning_rate": 0.0006,
+ "loss": 5.094973564147949,
+ "step": 423
+ },
+ {
+ "epoch": 5.894713848842289,
+ "grad_norm": 0.31936126947402954,
+ "learning_rate": 0.0006,
+ "loss": 5.081070899963379,
+ "step": 424
+ },
+ {
+ "epoch": 5.90869375273045,
+ "grad_norm": 0.3309082090854645,
+ "learning_rate": 0.0006,
+ "loss": 5.06803560256958,
+ "step": 425
+ },
+ {
+ "epoch": 5.922673656618611,
+ "grad_norm": 0.27830439805984497,
+ "learning_rate": 0.0006,
+ "loss": 5.044766426086426,
+ "step": 426
+ },
+ {
+ "epoch": 5.936653560506771,
+ "grad_norm": 0.3301011919975281,
+ "learning_rate": 0.0006,
+ "loss": 5.093942165374756,
+ "step": 427
+ },
+ {
+ "epoch": 5.950633464394932,
+ "grad_norm": 0.40845948457717896,
+ "learning_rate": 0.0006,
+ "loss": 5.0889458656311035,
+ "step": 428
+ },
+ {
+ "epoch": 5.964613368283093,
+ "grad_norm": 0.4412153959274292,
+ "learning_rate": 0.0006,
+ "loss": 5.064834117889404,
+ "step": 429
+ },
+ {
+ "epoch": 5.978593272171254,
+ "grad_norm": 0.3592590093612671,
+ "learning_rate": 0.0006,
+ "loss": 5.066648006439209,
+ "step": 430
+ },
+ {
+ "epoch": 5.992573176059414,
+ "grad_norm": 0.3952840268611908,
+ "learning_rate": 0.0006,
+ "loss": 5.066549301147461,
+ "step": 431
+ },
+ {
+ "epoch": 6.0,
+ "grad_norm": 0.38878682255744934,
+ "learning_rate": 0.0006,
+ "loss": 5.0354323387146,
+ "step": 432
+ },
+ {
+ "epoch": 6.0,
+ "eval_loss": 5.473907947540283,
+ "eval_runtime": 44.5121,
+ "eval_samples_per_second": 54.861,
+ "eval_steps_per_second": 3.437,
+ "step": 432
+ },
+ {
+ "epoch": 6.013979903888161,
+ "grad_norm": 0.42730140686035156,
+ "learning_rate": 0.0006,
+ "loss": 5.048557281494141,
+ "step": 433
+ },
+ {
+ "epoch": 6.0279598077763215,
+ "grad_norm": 0.32713913917541504,
+ "learning_rate": 0.0006,
+ "loss": 5.041255950927734,
+ "step": 434
+ },
+ {
+ "epoch": 6.041939711664482,
+ "grad_norm": 0.32520365715026855,
+ "learning_rate": 0.0006,
+ "loss": 5.043124198913574,
+ "step": 435
+ },
+ {
+ "epoch": 6.055919615552643,
+ "grad_norm": 0.2941839098930359,
+ "learning_rate": 0.0006,
+ "loss": 5.0407304763793945,
+ "step": 436
+ },
+ {
+ "epoch": 6.069899519440804,
+ "grad_norm": 0.3088819682598114,
+ "learning_rate": 0.0006,
+ "loss": 5.020771026611328,
+ "step": 437
+ },
+ {
+ "epoch": 6.083879423328964,
+ "grad_norm": 0.34334254264831543,
+ "learning_rate": 0.0006,
+ "loss": 5.0260009765625,
+ "step": 438
+ },
+ {
+ "epoch": 6.097859327217125,
+ "grad_norm": 0.33016136288642883,
+ "learning_rate": 0.0006,
+ "loss": 4.994412899017334,
+ "step": 439
+ },
+ {
+ "epoch": 6.111839231105286,
+ "grad_norm": 0.2527366280555725,
+ "learning_rate": 0.0006,
+ "loss": 4.997830390930176,
+ "step": 440
+ },
+ {
+ "epoch": 6.1258191349934465,
+ "grad_norm": 0.24742509424686432,
+ "learning_rate": 0.0006,
+ "loss": 5.017087936401367,
+ "step": 441
+ },
+ {
+ "epoch": 6.139799038881607,
+ "grad_norm": 0.22578303515911102,
+ "learning_rate": 0.0006,
+ "loss": 5.000683784484863,
+ "step": 442
+ },
+ {
+ "epoch": 6.153778942769769,
+ "grad_norm": 0.21213896572589874,
+ "learning_rate": 0.0006,
+ "loss": 4.993280410766602,
+ "step": 443
+ },
+ {
+ "epoch": 6.16775884665793,
+ "grad_norm": 0.22559592127799988,
+ "learning_rate": 0.0006,
+ "loss": 5.005735874176025,
+ "step": 444
+ },
+ {
+ "epoch": 6.18173875054609,
+ "grad_norm": 0.18574322760105133,
+ "learning_rate": 0.0006,
+ "loss": 4.996601104736328,
+ "step": 445
+ },
+ {
+ "epoch": 6.195718654434251,
+ "grad_norm": 0.1793852299451828,
+ "learning_rate": 0.0006,
+ "loss": 4.977394104003906,
+ "step": 446
+ },
+ {
+ "epoch": 6.209698558322412,
+ "grad_norm": 0.1851297914981842,
+ "learning_rate": 0.0006,
+ "loss": 4.983541488647461,
+ "step": 447
+ },
+ {
+ "epoch": 6.2236784622105725,
+ "grad_norm": 0.2045268565416336,
+ "learning_rate": 0.0006,
+ "loss": 4.992830276489258,
+ "step": 448
+ },
+ {
+ "epoch": 6.237658366098733,
+ "grad_norm": 0.21707463264465332,
+ "learning_rate": 0.0006,
+ "loss": 4.998589515686035,
+ "step": 449
+ },
+ {
+ "epoch": 6.251638269986894,
+ "grad_norm": 0.2805860638618469,
+ "learning_rate": 0.0006,
+ "loss": 4.973134517669678,
+ "step": 450
+ },
+ {
+ "epoch": 6.265618173875055,
+ "grad_norm": 0.33102089166641235,
+ "learning_rate": 0.0006,
+ "loss": 4.957348823547363,
+ "step": 451
+ },
+ {
+ "epoch": 6.279598077763215,
+ "grad_norm": 0.3763096034526825,
+ "learning_rate": 0.0006,
+ "loss": 5.0133256912231445,
+ "step": 452
+ },
+ {
+ "epoch": 6.293577981651376,
+ "grad_norm": 0.4676196575164795,
+ "learning_rate": 0.0006,
+ "loss": 4.972289562225342,
+ "step": 453
+ },
+ {
+ "epoch": 6.307557885539537,
+ "grad_norm": 0.6158978343009949,
+ "learning_rate": 0.0006,
+ "loss": 4.989326477050781,
+ "step": 454
+ },
+ {
+ "epoch": 6.321537789427698,
+ "grad_norm": 0.537460446357727,
+ "learning_rate": 0.0006,
+ "loss": 5.0210676193237305,
+ "step": 455
+ },
+ {
+ "epoch": 6.335517693315858,
+ "grad_norm": 0.5342532396316528,
+ "learning_rate": 0.0006,
+ "loss": 4.988524436950684,
+ "step": 456
+ },
+ {
+ "epoch": 6.349497597204019,
+ "grad_norm": 0.5736384987831116,
+ "learning_rate": 0.0006,
+ "loss": 4.977508068084717,
+ "step": 457
+ },
+ {
+ "epoch": 6.36347750109218,
+ "grad_norm": 0.6656201481819153,
+ "learning_rate": 0.0006,
+ "loss": 5.047934055328369,
+ "step": 458
+ },
+ {
+ "epoch": 6.3774574049803405,
+ "grad_norm": 0.6388342380523682,
+ "learning_rate": 0.0006,
+ "loss": 5.017617225646973,
+ "step": 459
+ },
+ {
+ "epoch": 6.391437308868501,
+ "grad_norm": 0.6620904207229614,
+ "learning_rate": 0.0006,
+ "loss": 5.032195091247559,
+ "step": 460
+ },
+ {
+ "epoch": 6.405417212756662,
+ "grad_norm": 0.693274974822998,
+ "learning_rate": 0.0006,
+ "loss": 5.02433967590332,
+ "step": 461
+ },
+ {
+ "epoch": 6.419397116644823,
+ "grad_norm": 0.6888924241065979,
+ "learning_rate": 0.0006,
+ "loss": 5.010735511779785,
+ "step": 462
+ },
+ {
+ "epoch": 6.433377020532983,
+ "grad_norm": 0.7181721925735474,
+ "learning_rate": 0.0006,
+ "loss": 5.049690246582031,
+ "step": 463
+ },
+ {
+ "epoch": 6.447356924421145,
+ "grad_norm": 0.7225117087364197,
+ "learning_rate": 0.0006,
+ "loss": 5.031939506530762,
+ "step": 464
+ },
+ {
+ "epoch": 6.461336828309306,
+ "grad_norm": 0.5268304347991943,
+ "learning_rate": 0.0006,
+ "loss": 5.01638126373291,
+ "step": 465
+ },
+ {
+ "epoch": 6.4753167321974665,
+ "grad_norm": 0.38218435645103455,
+ "learning_rate": 0.0006,
+ "loss": 4.997034072875977,
+ "step": 466
+ },
+ {
+ "epoch": 6.489296636085627,
+ "grad_norm": 0.3576396703720093,
+ "learning_rate": 0.0006,
+ "loss": 5.006804943084717,
+ "step": 467
+ },
+ {
+ "epoch": 6.503276539973788,
+ "grad_norm": 0.3305981755256653,
+ "learning_rate": 0.0006,
+ "loss": 4.994671821594238,
+ "step": 468
+ },
+ {
+ "epoch": 6.517256443861949,
+ "grad_norm": 0.3254900574684143,
+ "learning_rate": 0.0006,
+ "loss": 4.9747490882873535,
+ "step": 469
+ },
+ {
+ "epoch": 6.531236347750109,
+ "grad_norm": 0.2655033469200134,
+ "learning_rate": 0.0006,
+ "loss": 5.002863883972168,
+ "step": 470
+ },
+ {
+ "epoch": 6.54521625163827,
+ "grad_norm": 0.2620532810688019,
+ "learning_rate": 0.0006,
+ "loss": 4.9813337326049805,
+ "step": 471
+ },
+ {
+ "epoch": 6.559196155526431,
+ "grad_norm": 0.22128869593143463,
+ "learning_rate": 0.0006,
+ "loss": 4.978368759155273,
+ "step": 472
+ },
+ {
+ "epoch": 6.573176059414592,
+ "grad_norm": 0.22638699412345886,
+ "learning_rate": 0.0006,
+ "loss": 4.944509029388428,
+ "step": 473
+ },
+ {
+ "epoch": 6.587155963302752,
+ "grad_norm": 0.20720207691192627,
+ "learning_rate": 0.0006,
+ "loss": 4.98404598236084,
+ "step": 474
+ },
+ {
+ "epoch": 6.601135867190913,
+ "grad_norm": 0.21577289700508118,
+ "learning_rate": 0.0006,
+ "loss": 4.958878040313721,
+ "step": 475
+ },
+ {
+ "epoch": 6.615115771079074,
+ "grad_norm": 0.22453972697257996,
+ "learning_rate": 0.0006,
+ "loss": 4.935467720031738,
+ "step": 476
+ },
+ {
+ "epoch": 6.6290956749672345,
+ "grad_norm": 0.20757712423801422,
+ "learning_rate": 0.0006,
+ "loss": 4.943334579467773,
+ "step": 477
+ },
+ {
+ "epoch": 6.643075578855395,
+ "grad_norm": 0.22808043658733368,
+ "learning_rate": 0.0006,
+ "loss": 4.936544418334961,
+ "step": 478
+ },
+ {
+ "epoch": 6.657055482743556,
+ "grad_norm": 0.2193756401538849,
+ "learning_rate": 0.0006,
+ "loss": 4.938162326812744,
+ "step": 479
+ },
+ {
+ "epoch": 6.671035386631717,
+ "grad_norm": 0.19677500426769257,
+ "learning_rate": 0.0006,
+ "loss": 4.9026713371276855,
+ "step": 480
+ },
+ {
+ "epoch": 6.685015290519877,
+ "grad_norm": 0.17271658778190613,
+ "learning_rate": 0.0006,
+ "loss": 4.912519454956055,
+ "step": 481
+ },
+ {
+ "epoch": 6.698995194408038,
+ "grad_norm": 0.17551499605178833,
+ "learning_rate": 0.0006,
+ "loss": 4.929941177368164,
+ "step": 482
+ },
+ {
+ "epoch": 6.712975098296199,
+ "grad_norm": 0.1582687348127365,
+ "learning_rate": 0.0006,
+ "loss": 4.908967971801758,
+ "step": 483
+ },
+ {
+ "epoch": 6.72695500218436,
+ "grad_norm": 0.1593410074710846,
+ "learning_rate": 0.0006,
+ "loss": 4.901554107666016,
+ "step": 484
+ },
+ {
+ "epoch": 6.740934906072521,
+ "grad_norm": 0.16746895015239716,
+ "learning_rate": 0.0006,
+ "loss": 4.917915344238281,
+ "step": 485
+ },
+ {
+ "epoch": 6.754914809960681,
+ "grad_norm": 0.17066062986850739,
+ "learning_rate": 0.0006,
+ "loss": 4.912853240966797,
+ "step": 486
+ },
+ {
+ "epoch": 6.768894713848843,
+ "grad_norm": 0.16727769374847412,
+ "learning_rate": 0.0006,
+ "loss": 4.895434856414795,
+ "step": 487
+ },
+ {
+ "epoch": 6.782874617737003,
+ "grad_norm": 0.1784558743238449,
+ "learning_rate": 0.0006,
+ "loss": 4.8805341720581055,
+ "step": 488
+ },
+ {
+ "epoch": 6.796854521625164,
+ "grad_norm": 0.176686093211174,
+ "learning_rate": 0.0006,
+ "loss": 4.855296611785889,
+ "step": 489
+ },
+ {
+ "epoch": 6.810834425513325,
+ "grad_norm": 0.21577849984169006,
+ "learning_rate": 0.0006,
+ "loss": 4.885506629943848,
+ "step": 490
+ },
+ {
+ "epoch": 6.824814329401486,
+ "grad_norm": 0.27615776658058167,
+ "learning_rate": 0.0006,
+ "loss": 4.913756847381592,
+ "step": 491
+ },
+ {
+ "epoch": 6.838794233289646,
+ "grad_norm": 0.3653675615787506,
+ "learning_rate": 0.0006,
+ "loss": 4.880918979644775,
+ "step": 492
+ },
+ {
+ "epoch": 6.852774137177807,
+ "grad_norm": 0.41473883390426636,
+ "learning_rate": 0.0006,
+ "loss": 4.894164562225342,
+ "step": 493
+ },
+ {
+ "epoch": 6.866754041065968,
+ "grad_norm": 0.45850715041160583,
+ "learning_rate": 0.0006,
+ "loss": 4.907922744750977,
+ "step": 494
+ },
+ {
+ "epoch": 6.8807339449541285,
+ "grad_norm": 0.4675290882587433,
+ "learning_rate": 0.0006,
+ "loss": 4.883112907409668,
+ "step": 495
+ },
+ {
+ "epoch": 6.894713848842289,
+ "grad_norm": 0.45795994997024536,
+ "learning_rate": 0.0006,
+ "loss": 4.897843360900879,
+ "step": 496
+ },
+ {
+ "epoch": 6.90869375273045,
+ "grad_norm": 0.46130508184432983,
+ "learning_rate": 0.0006,
+ "loss": 4.890612602233887,
+ "step": 497
+ },
+ {
+ "epoch": 6.922673656618611,
+ "grad_norm": 0.44783803820610046,
+ "learning_rate": 0.0006,
+ "loss": 4.880192756652832,
+ "step": 498
+ },
+ {
+ "epoch": 6.936653560506771,
+ "grad_norm": 0.35361284017562866,
+ "learning_rate": 0.0006,
+ "loss": 4.840778350830078,
+ "step": 499
+ },
+ {
+ "epoch": 6.950633464394932,
+ "grad_norm": 0.34027689695358276,
+ "learning_rate": 0.0006,
+ "loss": 4.871222496032715,
+ "step": 500
+ },
+ {
+ "epoch": 6.964613368283093,
+ "grad_norm": 0.30228909850120544,
+ "learning_rate": 0.0006,
+ "loss": 4.868077278137207,
+ "step": 501
+ },
+ {
+ "epoch": 6.978593272171254,
+ "grad_norm": 0.27706998586654663,
+ "learning_rate": 0.0006,
+ "loss": 4.895936012268066,
+ "step": 502
+ },
+ {
+ "epoch": 6.992573176059414,
+ "grad_norm": 0.3516870439052582,
+ "learning_rate": 0.0006,
+ "loss": 4.824636459350586,
+ "step": 503
+ },
+ {
+ "epoch": 7.0,
+ "grad_norm": 0.36831387877464294,
+ "learning_rate": 0.0006,
+ "loss": 4.874397277832031,
+ "step": 504
+ },
+ {
+ "epoch": 7.0,
+ "eval_loss": 5.176281452178955,
+ "eval_runtime": 44.2386,
+ "eval_samples_per_second": 55.201,
+ "eval_steps_per_second": 3.459,
+ "step": 504
+ },
+ {
+ "epoch": 7.013979903888161,
+ "grad_norm": 0.4265240430831909,
+ "learning_rate": 0.0006,
+ "loss": 4.814333438873291,
+ "step": 505
+ },
+ {
+ "epoch": 7.0279598077763215,
+ "grad_norm": 0.5126975774765015,
+ "learning_rate": 0.0006,
+ "loss": 4.852343559265137,
+ "step": 506
+ },
+ {
+ "epoch": 7.041939711664482,
+ "grad_norm": 0.43080806732177734,
+ "learning_rate": 0.0006,
+ "loss": 4.843439102172852,
+ "step": 507
+ },
+ {
+ "epoch": 7.055919615552643,
+ "grad_norm": 0.43170198798179626,
+ "learning_rate": 0.0006,
+ "loss": 4.845984935760498,
+ "step": 508
+ },
+ {
+ "epoch": 7.069899519440804,
+ "grad_norm": 0.5640552043914795,
+ "learning_rate": 0.0006,
+ "loss": 4.840991973876953,
+ "step": 509
+ },
+ {
+ "epoch": 7.083879423328964,
+ "grad_norm": 0.540381133556366,
+ "learning_rate": 0.0006,
+ "loss": 4.801316738128662,
+ "step": 510
+ },
+ {
+ "epoch": 7.097859327217125,
+ "grad_norm": 0.5412097573280334,
+ "learning_rate": 0.0006,
+ "loss": 4.886598587036133,
+ "step": 511
+ },
+ {
+ "epoch": 7.111839231105286,
+ "grad_norm": 0.630648136138916,
+ "learning_rate": 0.0006,
+ "loss": 4.849774360656738,
+ "step": 512
+ },
+ {
+ "epoch": 7.1258191349934465,
+ "grad_norm": 0.569952130317688,
+ "learning_rate": 0.0006,
+ "loss": 4.870607376098633,
+ "step": 513
+ },
+ {
+ "epoch": 7.139799038881607,
+ "grad_norm": 0.42051541805267334,
+ "learning_rate": 0.0006,
+ "loss": 4.83833122253418,
+ "step": 514
+ },
+ {
+ "epoch": 7.153778942769769,
+ "grad_norm": 0.3930990397930145,
+ "learning_rate": 0.0006,
+ "loss": 4.853984355926514,
+ "step": 515
+ },
+ {
+ "epoch": 7.16775884665793,
+ "grad_norm": 0.512886106967926,
+ "learning_rate": 0.0006,
+ "loss": 4.815458297729492,
+ "step": 516
+ },
+ {
+ "epoch": 7.18173875054609,
+ "grad_norm": 0.42580172419548035,
+ "learning_rate": 0.0006,
+ "loss": 4.825312614440918,
+ "step": 517
+ },
+ {
+ "epoch": 7.195718654434251,
+ "grad_norm": 0.31628182530403137,
+ "learning_rate": 0.0006,
+ "loss": 4.806377410888672,
+ "step": 518
+ },
+ {
+ "epoch": 7.209698558322412,
+ "grad_norm": 0.3109956681728363,
+ "learning_rate": 0.0006,
+ "loss": 4.819339752197266,
+ "step": 519
+ },
+ {
+ "epoch": 7.2236784622105725,
+ "grad_norm": 0.2740071415901184,
+ "learning_rate": 0.0006,
+ "loss": 4.81319522857666,
+ "step": 520
+ },
+ {
+ "epoch": 7.237658366098733,
+ "grad_norm": 0.26441165804862976,
+ "learning_rate": 0.0006,
+ "loss": 4.8107380867004395,
+ "step": 521
+ },
+ {
+ "epoch": 7.251638269986894,
+ "grad_norm": 0.2496110051870346,
+ "learning_rate": 0.0006,
+ "loss": 4.785193920135498,
+ "step": 522
+ },
+ {
+ "epoch": 7.265618173875055,
+ "grad_norm": 0.2565560042858124,
+ "learning_rate": 0.0006,
+ "loss": 4.802750587463379,
+ "step": 523
+ },
+ {
+ "epoch": 7.279598077763215,
+ "grad_norm": 0.2126980572938919,
+ "learning_rate": 0.0006,
+ "loss": 4.763580322265625,
+ "step": 524
+ },
+ {
+ "epoch": 7.293577981651376,
+ "grad_norm": 0.2169921100139618,
+ "learning_rate": 0.0006,
+ "loss": 4.756124973297119,
+ "step": 525
+ },
+ {
+ "epoch": 7.307557885539537,
+ "grad_norm": 0.2372167706489563,
+ "learning_rate": 0.0006,
+ "loss": 4.786888599395752,
+ "step": 526
+ },
+ {
+ "epoch": 7.321537789427698,
+ "grad_norm": 0.2124386429786682,
+ "learning_rate": 0.0006,
+ "loss": 4.777996063232422,
+ "step": 527
+ },
+ {
+ "epoch": 7.335517693315858,
+ "grad_norm": 0.18585442006587982,
+ "learning_rate": 0.0006,
+ "loss": 4.770537853240967,
+ "step": 528
+ },
+ {
+ "epoch": 7.349497597204019,
+ "grad_norm": 0.20515340566635132,
+ "learning_rate": 0.0006,
+ "loss": 4.769230842590332,
+ "step": 529
+ },
+ {
+ "epoch": 7.36347750109218,
+ "grad_norm": 0.19906704127788544,
+ "learning_rate": 0.0006,
+ "loss": 4.752581596374512,
+ "step": 530
+ },
+ {
+ "epoch": 7.3774574049803405,
+ "grad_norm": 0.2030428946018219,
+ "learning_rate": 0.0006,
+ "loss": 4.7353715896606445,
+ "step": 531
+ },
+ {
+ "epoch": 7.391437308868501,
+ "grad_norm": 0.17820630967617035,
+ "learning_rate": 0.0006,
+ "loss": 4.742705345153809,
+ "step": 532
+ },
+ {
+ "epoch": 7.405417212756662,
+ "grad_norm": 0.17642682790756226,
+ "learning_rate": 0.0006,
+ "loss": 4.752669334411621,
+ "step": 533
+ },
+ {
+ "epoch": 7.419397116644823,
+ "grad_norm": 0.18088409304618835,
+ "learning_rate": 0.0006,
+ "loss": 4.734611511230469,
+ "step": 534
+ },
+ {
+ "epoch": 7.433377020532983,
+ "grad_norm": 0.20897020399570465,
+ "learning_rate": 0.0006,
+ "loss": 4.756442070007324,
+ "step": 535
+ },
+ {
+ "epoch": 7.447356924421145,
+ "grad_norm": 0.23166777193546295,
+ "learning_rate": 0.0006,
+ "loss": 4.712922096252441,
+ "step": 536
+ },
+ {
+ "epoch": 7.461336828309306,
+ "grad_norm": 0.2205347716808319,
+ "learning_rate": 0.0006,
+ "loss": 4.75001335144043,
+ "step": 537
+ },
+ {
+ "epoch": 7.4753167321974665,
+ "grad_norm": 0.23868022859096527,
+ "learning_rate": 0.0006,
+ "loss": 4.726134300231934,
+ "step": 538
+ },
+ {
+ "epoch": 7.489296636085627,
+ "grad_norm": 0.2861441373825073,
+ "learning_rate": 0.0006,
+ "loss": 4.754112243652344,
+ "step": 539
+ },
+ {
+ "epoch": 7.503276539973788,
+ "grad_norm": 0.28980305790901184,
+ "learning_rate": 0.0006,
+ "loss": 4.716021537780762,
+ "step": 540
+ },
+ {
+ "epoch": 7.517256443861949,
+ "grad_norm": 0.2784835696220398,
+ "learning_rate": 0.0006,
+ "loss": 4.713929176330566,
+ "step": 541
+ },
+ {
+ "epoch": 7.531236347750109,
+ "grad_norm": 0.2962653934955597,
+ "learning_rate": 0.0006,
+ "loss": 4.711845397949219,
+ "step": 542
+ },
+ {
+ "epoch": 7.54521625163827,
+ "grad_norm": 0.3333161175251007,
+ "learning_rate": 0.0006,
+ "loss": 4.709834575653076,
+ "step": 543
+ },
+ {
+ "epoch": 7.559196155526431,
+ "grad_norm": 0.35304850339889526,
+ "learning_rate": 0.0006,
+ "loss": 4.732914924621582,
+ "step": 544
+ },
+ {
+ "epoch": 7.573176059414592,
+ "grad_norm": 0.4165869355201721,
+ "learning_rate": 0.0006,
+ "loss": 4.716190338134766,
+ "step": 545
+ },
+ {
+ "epoch": 7.587155963302752,
+ "grad_norm": 0.4878059923648834,
+ "learning_rate": 0.0006,
+ "loss": 4.723773002624512,
+ "step": 546
+ },
+ {
+ "epoch": 7.601135867190913,
+ "grad_norm": 0.36643707752227783,
+ "learning_rate": 0.0006,
+ "loss": 4.721458911895752,
+ "step": 547
+ },
+ {
+ "epoch": 7.615115771079074,
+ "grad_norm": 0.4046908915042877,
+ "learning_rate": 0.0006,
+ "loss": 4.715397834777832,
+ "step": 548
+ },
+ {
+ "epoch": 7.6290956749672345,
+ "grad_norm": 0.44426342844963074,
+ "learning_rate": 0.0006,
+ "loss": 4.737357139587402,
+ "step": 549
+ },
+ {
+ "epoch": 7.643075578855395,
+ "grad_norm": 0.4181079864501953,
+ "learning_rate": 0.0006,
+ "loss": 4.731383800506592,
+ "step": 550
+ },
+ {
+ "epoch": 7.657055482743556,
+ "grad_norm": 0.3486088216304779,
+ "learning_rate": 0.0006,
+ "loss": 4.728029727935791,
+ "step": 551
+ },
+ {
+ "epoch": 7.671035386631717,
+ "grad_norm": 0.37150970101356506,
+ "learning_rate": 0.0006,
+ "loss": 4.7083210945129395,
+ "step": 552
+ },
+ {
+ "epoch": 7.685015290519877,
+ "grad_norm": 0.43324410915374756,
+ "learning_rate": 0.0006,
+ "loss": 4.728720664978027,
+ "step": 553
+ },
+ {
+ "epoch": 7.698995194408038,
+ "grad_norm": 0.5026620626449585,
+ "learning_rate": 0.0006,
+ "loss": 4.698156356811523,
+ "step": 554
+ },
+ {
+ "epoch": 7.712975098296199,
+ "grad_norm": 0.4873499274253845,
+ "learning_rate": 0.0006,
+ "loss": 4.7169952392578125,
+ "step": 555
+ },
+ {
+ "epoch": 7.72695500218436,
+ "grad_norm": 0.4285493791103363,
+ "learning_rate": 0.0006,
+ "loss": 4.6877241134643555,
+ "step": 556
+ },
+ {
+ "epoch": 7.740934906072521,
+ "grad_norm": 0.5179854035377502,
+ "learning_rate": 0.0006,
+ "loss": 4.704267501831055,
+ "step": 557
+ },
+ {
+ "epoch": 7.754914809960681,
+ "grad_norm": 0.4642147421836853,
+ "learning_rate": 0.0006,
+ "loss": 4.695004463195801,
+ "step": 558
+ },
+ {
+ "epoch": 7.768894713848843,
+ "grad_norm": 0.47149503231048584,
+ "learning_rate": 0.0006,
+ "loss": 4.694338798522949,
+ "step": 559
+ },
+ {
+ "epoch": 7.782874617737003,
+ "grad_norm": 0.5422149300575256,
+ "learning_rate": 0.0006,
+ "loss": 4.749478340148926,
+ "step": 560
+ },
+ {
+ "epoch": 7.796854521625164,
+ "grad_norm": 0.4360728859901428,
+ "learning_rate": 0.0006,
+ "loss": 4.685191631317139,
+ "step": 561
+ },
+ {
+ "epoch": 7.810834425513325,
+ "grad_norm": 0.4243801534175873,
+ "learning_rate": 0.0006,
+ "loss": 4.69228458404541,
+ "step": 562
+ },
+ {
+ "epoch": 7.824814329401486,
+ "grad_norm": 0.40380290150642395,
+ "learning_rate": 0.0006,
+ "loss": 4.690923690795898,
+ "step": 563
+ },
+ {
+ "epoch": 7.838794233289646,
+ "grad_norm": 0.4352976381778717,
+ "learning_rate": 0.0006,
+ "loss": 4.720489978790283,
+ "step": 564
+ },
+ {
+ "epoch": 7.852774137177807,
+ "grad_norm": 0.44634920358657837,
+ "learning_rate": 0.0006,
+ "loss": 4.683789253234863,
+ "step": 565
+ },
+ {
+ "epoch": 7.866754041065968,
+ "grad_norm": 0.3818186819553375,
+ "learning_rate": 0.0006,
+ "loss": 4.696887016296387,
+ "step": 566
+ },
+ {
+ "epoch": 7.8807339449541285,
+ "grad_norm": 0.35270464420318604,
+ "learning_rate": 0.0006,
+ "loss": 4.715676307678223,
+ "step": 567
+ },
+ {
+ "epoch": 7.894713848842289,
+ "grad_norm": 0.249756321310997,
+ "learning_rate": 0.0006,
+ "loss": 4.672721862792969,
+ "step": 568
+ },
+ {
+ "epoch": 7.90869375273045,
+ "grad_norm": 0.25097888708114624,
+ "learning_rate": 0.0006,
+ "loss": 4.663518905639648,
+ "step": 569
+ },
+ {
+ "epoch": 7.922673656618611,
+ "grad_norm": 0.26563209295272827,
+ "learning_rate": 0.0006,
+ "loss": 4.675405025482178,
+ "step": 570
+ },
+ {
+ "epoch": 7.936653560506771,
+ "grad_norm": 0.26451292634010315,
+ "learning_rate": 0.0006,
+ "loss": 4.651235103607178,
+ "step": 571
+ },
+ {
+ "epoch": 7.950633464394932,
+ "grad_norm": 0.24185842275619507,
+ "learning_rate": 0.0006,
+ "loss": 4.671639919281006,
+ "step": 572
+ },
+ {
+ "epoch": 7.964613368283093,
+ "grad_norm": 0.21506108343601227,
+ "learning_rate": 0.0006,
+ "loss": 4.665352821350098,
+ "step": 573
+ },
+ {
+ "epoch": 7.978593272171254,
+ "grad_norm": 0.24365705251693726,
+ "learning_rate": 0.0006,
+ "loss": 4.663162708282471,
+ "step": 574
+ },
+ {
+ "epoch": 7.992573176059414,
+ "grad_norm": 0.24251042306423187,
+ "learning_rate": 0.0006,
+ "loss": 4.666633605957031,
+ "step": 575
+ },
+ {
+ "epoch": 8.0,
+ "grad_norm": 0.24187657237052917,
+ "learning_rate": 0.0006,
+ "loss": 4.63957405090332,
+ "step": 576
+ },
+ {
+ "epoch": 8.0,
+ "eval_loss": 4.923156261444092,
+ "eval_runtime": 44.1587,
+ "eval_samples_per_second": 55.301,
+ "eval_steps_per_second": 3.465,
+ "step": 576
+ },
+ {
+ "epoch": 8.013979903888162,
+ "grad_norm": 0.21323645114898682,
+ "learning_rate": 0.0006,
+ "loss": 4.636347770690918,
+ "step": 577
+ },
+ {
+ "epoch": 8.027959807776321,
+ "grad_norm": 0.2325759083032608,
+ "learning_rate": 0.0006,
+ "loss": 4.60684871673584,
+ "step": 578
+ },
+ {
+ "epoch": 8.041939711664483,
+ "grad_norm": 0.26741257309913635,
+ "learning_rate": 0.0006,
+ "loss": 4.647780418395996,
+ "step": 579
+ },
+ {
+ "epoch": 8.055919615552643,
+ "grad_norm": 0.285720556974411,
+ "learning_rate": 0.0006,
+ "loss": 4.629637718200684,
+ "step": 580
+ },
+ {
+ "epoch": 8.069899519440805,
+ "grad_norm": 0.2453618347644806,
+ "learning_rate": 0.0006,
+ "loss": 4.62420654296875,
+ "step": 581
+ },
+ {
+ "epoch": 8.083879423328964,
+ "grad_norm": 0.19662636518478394,
+ "learning_rate": 0.0006,
+ "loss": 4.593767166137695,
+ "step": 582
+ },
+ {
+ "epoch": 8.097859327217126,
+ "grad_norm": 0.22731931507587433,
+ "learning_rate": 0.0006,
+ "loss": 4.627089023590088,
+ "step": 583
+ },
+ {
+ "epoch": 8.111839231105286,
+ "grad_norm": 0.24452590942382812,
+ "learning_rate": 0.0006,
+ "loss": 4.613677024841309,
+ "step": 584
+ },
+ {
+ "epoch": 8.125819134993447,
+ "grad_norm": 0.2952791154384613,
+ "learning_rate": 0.0006,
+ "loss": 4.604985237121582,
+ "step": 585
+ },
+ {
+ "epoch": 8.139799038881607,
+ "grad_norm": 0.3184696137905121,
+ "learning_rate": 0.0006,
+ "loss": 4.589205741882324,
+ "step": 586
+ },
+ {
+ "epoch": 8.153778942769769,
+ "grad_norm": 0.2948093116283417,
+ "learning_rate": 0.0006,
+ "loss": 4.605442047119141,
+ "step": 587
+ },
+ {
+ "epoch": 8.167758846657929,
+ "grad_norm": 0.2450508326292038,
+ "learning_rate": 0.0006,
+ "loss": 4.615349292755127,
+ "step": 588
+ },
+ {
+ "epoch": 8.18173875054609,
+ "grad_norm": 0.25664836168289185,
+ "learning_rate": 0.0006,
+ "loss": 4.592251777648926,
+ "step": 589
+ },
+ {
+ "epoch": 8.19571865443425,
+ "grad_norm": 0.24479512870311737,
+ "learning_rate": 0.0006,
+ "loss": 4.6145920753479,
+ "step": 590
+ },
+ {
+ "epoch": 8.209698558322412,
+ "grad_norm": 0.24395205080509186,
+ "learning_rate": 0.0006,
+ "loss": 4.600954055786133,
+ "step": 591
+ },
+ {
+ "epoch": 8.223678462210572,
+ "grad_norm": 0.21804189682006836,
+ "learning_rate": 0.0006,
+ "loss": 4.607785224914551,
+ "step": 592
+ },
+ {
+ "epoch": 8.237658366098733,
+ "grad_norm": 0.20951785147190094,
+ "learning_rate": 0.0006,
+ "loss": 4.58140754699707,
+ "step": 593
+ },
+ {
+ "epoch": 8.251638269986893,
+ "grad_norm": 0.20415149629116058,
+ "learning_rate": 0.0006,
+ "loss": 4.593405723571777,
+ "step": 594
+ },
+ {
+ "epoch": 8.265618173875055,
+ "grad_norm": 0.19210249185562134,
+ "learning_rate": 0.0006,
+ "loss": 4.603294372558594,
+ "step": 595
+ },
+ {
+ "epoch": 8.279598077763215,
+ "grad_norm": 0.20719751715660095,
+ "learning_rate": 0.0006,
+ "loss": 4.55255651473999,
+ "step": 596
+ },
+ {
+ "epoch": 8.293577981651376,
+ "grad_norm": 0.20101022720336914,
+ "learning_rate": 0.0006,
+ "loss": 4.5928192138671875,
+ "step": 597
+ },
+ {
+ "epoch": 8.307557885539538,
+ "grad_norm": 0.19254222512245178,
+ "learning_rate": 0.0006,
+ "loss": 4.590397834777832,
+ "step": 598
+ },
+ {
+ "epoch": 8.321537789427698,
+ "grad_norm": 0.23234105110168457,
+ "learning_rate": 0.0006,
+ "loss": 4.5987677574157715,
+ "step": 599
+ },
+ {
+ "epoch": 8.33551769331586,
+ "grad_norm": 0.2537451982498169,
+ "learning_rate": 0.0006,
+ "loss": 4.543115615844727,
+ "step": 600
+ },
+ {
+ "epoch": 8.349497597204019,
+ "grad_norm": 0.29171040654182434,
+ "learning_rate": 0.0006,
+ "loss": 4.597387313842773,
+ "step": 601
+ },
+ {
+ "epoch": 8.36347750109218,
+ "grad_norm": 0.3035930097103119,
+ "learning_rate": 0.0006,
+ "loss": 4.566247463226318,
+ "step": 602
+ },
+ {
+ "epoch": 8.37745740498034,
+ "grad_norm": 0.2826756238937378,
+ "learning_rate": 0.0006,
+ "loss": 4.57047176361084,
+ "step": 603
+ },
+ {
+ "epoch": 8.391437308868502,
+ "grad_norm": 0.2959657609462738,
+ "learning_rate": 0.0006,
+ "loss": 4.582820892333984,
+ "step": 604
+ },
+ {
+ "epoch": 8.405417212756662,
+ "grad_norm": 0.3180356025695801,
+ "learning_rate": 0.0006,
+ "loss": 4.5573272705078125,
+ "step": 605
+ },
+ {
+ "epoch": 8.419397116644824,
+ "grad_norm": 0.3617221713066101,
+ "learning_rate": 0.0006,
+ "loss": 4.593079090118408,
+ "step": 606
+ },
+ {
+ "epoch": 8.433377020532983,
+ "grad_norm": 0.35198062658309937,
+ "learning_rate": 0.0006,
+ "loss": 4.615298271179199,
+ "step": 607
+ },
+ {
+ "epoch": 8.447356924421145,
+ "grad_norm": 0.3944903314113617,
+ "learning_rate": 0.0006,
+ "loss": 4.561809539794922,
+ "step": 608
+ },
+ {
+ "epoch": 8.461336828309305,
+ "grad_norm": 0.4525868594646454,
+ "learning_rate": 0.0006,
+ "loss": 4.613105773925781,
+ "step": 609
+ },
+ {
+ "epoch": 8.475316732197467,
+ "grad_norm": 0.4915139079093933,
+ "learning_rate": 0.0006,
+ "loss": 4.566202163696289,
+ "step": 610
+ },
+ {
+ "epoch": 8.489296636085626,
+ "grad_norm": 0.49231988191604614,
+ "learning_rate": 0.0006,
+ "loss": 4.556222915649414,
+ "step": 611
+ },
+ {
+ "epoch": 8.503276539973788,
+ "grad_norm": 0.43036946654319763,
+ "learning_rate": 0.0006,
+ "loss": 4.55517578125,
+ "step": 612
+ },
+ {
+ "epoch": 8.517256443861948,
+ "grad_norm": 0.42405328154563904,
+ "learning_rate": 0.0006,
+ "loss": 4.574039936065674,
+ "step": 613
+ },
+ {
+ "epoch": 8.53123634775011,
+ "grad_norm": 0.3955961763858795,
+ "learning_rate": 0.0006,
+ "loss": 4.6082611083984375,
+ "step": 614
+ },
+ {
+ "epoch": 8.54521625163827,
+ "grad_norm": 0.4377101957798004,
+ "learning_rate": 0.0006,
+ "loss": 4.555740833282471,
+ "step": 615
+ },
+ {
+ "epoch": 8.55919615552643,
+ "grad_norm": 0.4601984918117523,
+ "learning_rate": 0.0006,
+ "loss": 4.553995132446289,
+ "step": 616
+ },
+ {
+ "epoch": 8.57317605941459,
+ "grad_norm": 0.42025700211524963,
+ "learning_rate": 0.0006,
+ "loss": 4.567340850830078,
+ "step": 617
+ },
+ {
+ "epoch": 8.587155963302752,
+ "grad_norm": 0.35569432377815247,
+ "learning_rate": 0.0006,
+ "loss": 4.570140361785889,
+ "step": 618
+ },
+ {
+ "epoch": 8.601135867190912,
+ "grad_norm": 0.37940406799316406,
+ "learning_rate": 0.0006,
+ "loss": 4.581291198730469,
+ "step": 619
+ },
+ {
+ "epoch": 8.615115771079074,
+ "grad_norm": 0.3658490777015686,
+ "learning_rate": 0.0006,
+ "loss": 4.55476188659668,
+ "step": 620
+ },
+ {
+ "epoch": 8.629095674967235,
+ "grad_norm": 0.2908247113227844,
+ "learning_rate": 0.0006,
+ "loss": 4.564087867736816,
+ "step": 621
+ },
+ {
+ "epoch": 8.643075578855395,
+ "grad_norm": 0.29961925745010376,
+ "learning_rate": 0.0006,
+ "loss": 4.556543350219727,
+ "step": 622
+ },
+ {
+ "epoch": 8.657055482743557,
+ "grad_norm": 0.3144846558570862,
+ "learning_rate": 0.0006,
+ "loss": 4.553670883178711,
+ "step": 623
+ },
+ {
+ "epoch": 8.671035386631717,
+ "grad_norm": 0.2845900356769562,
+ "learning_rate": 0.0006,
+ "loss": 4.567296981811523,
+ "step": 624
+ },
+ {
+ "epoch": 8.685015290519878,
+ "grad_norm": 0.253591388463974,
+ "learning_rate": 0.0006,
+ "loss": 4.554507255554199,
+ "step": 625
+ },
+ {
+ "epoch": 8.698995194408038,
+ "grad_norm": 0.2563088536262512,
+ "learning_rate": 0.0006,
+ "loss": 4.542218208312988,
+ "step": 626
+ },
+ {
+ "epoch": 8.7129750982962,
+ "grad_norm": 0.26058217883110046,
+ "learning_rate": 0.0006,
+ "loss": 4.535512447357178,
+ "step": 627
+ },
+ {
+ "epoch": 8.72695500218436,
+ "grad_norm": 0.20749829709529877,
+ "learning_rate": 0.0006,
+ "loss": 4.516959190368652,
+ "step": 628
+ },
+ {
+ "epoch": 8.740934906072521,
+ "grad_norm": 0.2034810334444046,
+ "learning_rate": 0.0006,
+ "loss": 4.55794095993042,
+ "step": 629
+ },
+ {
+ "epoch": 8.754914809960681,
+ "grad_norm": 0.18418121337890625,
+ "learning_rate": 0.0006,
+ "loss": 4.5421247482299805,
+ "step": 630
+ },
+ {
+ "epoch": 8.768894713848843,
+ "grad_norm": 0.20551933348178864,
+ "learning_rate": 0.0006,
+ "loss": 4.50805139541626,
+ "step": 631
+ },
+ {
+ "epoch": 8.782874617737003,
+ "grad_norm": 0.21615999937057495,
+ "learning_rate": 0.0006,
+ "loss": 4.520708084106445,
+ "step": 632
+ },
+ {
+ "epoch": 8.796854521625164,
+ "grad_norm": 0.24864810705184937,
+ "learning_rate": 0.0006,
+ "loss": 4.509330749511719,
+ "step": 633
+ },
+ {
+ "epoch": 8.810834425513324,
+ "grad_norm": 0.2573665380477905,
+ "learning_rate": 0.0006,
+ "loss": 4.531505584716797,
+ "step": 634
+ },
+ {
+ "epoch": 8.824814329401486,
+ "grad_norm": 0.22452878952026367,
+ "learning_rate": 0.0006,
+ "loss": 4.529216289520264,
+ "step": 635
+ },
+ {
+ "epoch": 8.838794233289645,
+ "grad_norm": 0.19727355241775513,
+ "learning_rate": 0.0006,
+ "loss": 4.519906520843506,
+ "step": 636
+ },
+ {
+ "epoch": 8.852774137177807,
+ "grad_norm": 0.19937913119792938,
+ "learning_rate": 0.0006,
+ "loss": 4.536892414093018,
+ "step": 637
+ },
+ {
+ "epoch": 8.866754041065967,
+ "grad_norm": 0.2070389986038208,
+ "learning_rate": 0.0006,
+ "loss": 4.51191520690918,
+ "step": 638
+ },
+ {
+ "epoch": 8.880733944954128,
+ "grad_norm": 0.2293873429298401,
+ "learning_rate": 0.0006,
+ "loss": 4.505377769470215,
+ "step": 639
+ },
+ {
+ "epoch": 8.89471384884229,
+ "grad_norm": 0.21285250782966614,
+ "learning_rate": 0.0006,
+ "loss": 4.5138959884643555,
+ "step": 640
+ },
+ {
+ "epoch": 8.90869375273045,
+ "grad_norm": 0.19487562775611877,
+ "learning_rate": 0.0006,
+ "loss": 4.506108283996582,
+ "step": 641
+ },
+ {
+ "epoch": 8.922673656618612,
+ "grad_norm": 0.21986965835094452,
+ "learning_rate": 0.0006,
+ "loss": 4.506397247314453,
+ "step": 642
+ },
+ {
+ "epoch": 8.936653560506771,
+ "grad_norm": 0.20763885974884033,
+ "learning_rate": 0.0006,
+ "loss": 4.508007049560547,
+ "step": 643
+ },
+ {
+ "epoch": 8.950633464394933,
+ "grad_norm": 0.22858479619026184,
+ "learning_rate": 0.0006,
+ "loss": 4.520846366882324,
+ "step": 644
+ },
+ {
+ "epoch": 8.964613368283093,
+ "grad_norm": 0.23923712968826294,
+ "learning_rate": 0.0006,
+ "loss": 4.535306930541992,
+ "step": 645
+ },
+ {
+ "epoch": 8.978593272171254,
+ "grad_norm": 0.23717579245567322,
+ "learning_rate": 0.0006,
+ "loss": 4.485929489135742,
+ "step": 646
+ },
+ {
+ "epoch": 8.992573176059414,
+ "grad_norm": 0.24033977091312408,
+ "learning_rate": 0.0006,
+ "loss": 4.508999824523926,
+ "step": 647
+ },
+ {
+ "epoch": 9.0,
+ "grad_norm": 0.22432062029838562,
+ "learning_rate": 0.0006,
+ "loss": 4.473136901855469,
+ "step": 648
+ },
+ {
+ "epoch": 9.0,
+ "eval_loss": 4.735903263092041,
+ "eval_runtime": 44.2163,
+ "eval_samples_per_second": 55.228,
+ "eval_steps_per_second": 3.46,
+ "step": 648
+ },
+ {
+ "epoch": 9.013979903888162,
+ "grad_norm": 0.22491489350795746,
+ "learning_rate": 0.0006,
+ "loss": 4.468614101409912,
+ "step": 649
+ },
+ {
+ "epoch": 9.027959807776321,
+ "grad_norm": 0.255759060382843,
+ "learning_rate": 0.0006,
+ "loss": 4.516196250915527,
+ "step": 650
+ },
+ {
+ "epoch": 9.041939711664483,
+ "grad_norm": 0.2591100335121155,
+ "learning_rate": 0.0006,
+ "loss": 4.478276252746582,
+ "step": 651
+ },
+ {
+ "epoch": 9.055919615552643,
+ "grad_norm": 0.30472296476364136,
+ "learning_rate": 0.0006,
+ "loss": 4.479726791381836,
+ "step": 652
+ },
+ {
+ "epoch": 9.069899519440805,
+ "grad_norm": 0.2840559780597687,
+ "learning_rate": 0.0006,
+ "loss": 4.4437384605407715,
+ "step": 653
+ },
+ {
+ "epoch": 9.083879423328964,
+ "grad_norm": 0.2695577144622803,
+ "learning_rate": 0.0006,
+ "loss": 4.476065635681152,
+ "step": 654
+ },
+ {
+ "epoch": 9.097859327217126,
+ "grad_norm": 0.27912381291389465,
+ "learning_rate": 0.0006,
+ "loss": 4.484747409820557,
+ "step": 655
+ },
+ {
+ "epoch": 9.111839231105286,
+ "grad_norm": 0.3091907501220703,
+ "learning_rate": 0.0006,
+ "loss": 4.449443817138672,
+ "step": 656
+ },
+ {
+ "epoch": 9.125819134993447,
+ "grad_norm": 0.30756646394729614,
+ "learning_rate": 0.0006,
+ "loss": 4.496490001678467,
+ "step": 657
+ },
+ {
+ "epoch": 9.139799038881607,
+ "grad_norm": 0.305698037147522,
+ "learning_rate": 0.0006,
+ "loss": 4.466765880584717,
+ "step": 658
+ },
+ {
+ "epoch": 9.153778942769769,
+ "grad_norm": 0.3031201660633087,
+ "learning_rate": 0.0006,
+ "loss": 4.462430953979492,
+ "step": 659
+ },
+ {
+ "epoch": 9.167758846657929,
+ "grad_norm": 0.32725608348846436,
+ "learning_rate": 0.0006,
+ "loss": 4.479879379272461,
+ "step": 660
+ },
+ {
+ "epoch": 9.18173875054609,
+ "grad_norm": 0.31773585081100464,
+ "learning_rate": 0.0006,
+ "loss": 4.473912239074707,
+ "step": 661
+ },
+ {
+ "epoch": 9.19571865443425,
+ "grad_norm": 0.30025365948677063,
+ "learning_rate": 0.0006,
+ "loss": 4.476703643798828,
+ "step": 662
+ },
+ {
+ "epoch": 9.209698558322412,
+ "grad_norm": 0.3177371025085449,
+ "learning_rate": 0.0006,
+ "loss": 4.439765930175781,
+ "step": 663
+ },
+ {
+ "epoch": 9.223678462210572,
+ "grad_norm": 0.3060745894908905,
+ "learning_rate": 0.0006,
+ "loss": 4.487849235534668,
+ "step": 664
+ },
+ {
+ "epoch": 9.237658366098733,
+ "grad_norm": 0.33287373185157776,
+ "learning_rate": 0.0006,
+ "loss": 4.443496227264404,
+ "step": 665
+ },
+ {
+ "epoch": 9.251638269986893,
+ "grad_norm": 0.3758000433444977,
+ "learning_rate": 0.0006,
+ "loss": 4.478017330169678,
+ "step": 666
+ },
+ {
+ "epoch": 9.265618173875055,
+ "grad_norm": 0.32124510407447815,
+ "learning_rate": 0.0006,
+ "loss": 4.4092206954956055,
+ "step": 667
+ },
+ {
+ "epoch": 9.279598077763215,
+ "grad_norm": 0.2786794602870941,
+ "learning_rate": 0.0006,
+ "loss": 4.432734489440918,
+ "step": 668
+ },
+ {
+ "epoch": 9.293577981651376,
+ "grad_norm": 0.35042962431907654,
+ "learning_rate": 0.0006,
+ "loss": 4.462737083435059,
+ "step": 669
+ },
+ {
+ "epoch": 9.307557885539538,
+ "grad_norm": 0.4080469310283661,
+ "learning_rate": 0.0006,
+ "loss": 4.429462432861328,
+ "step": 670
+ },
+ {
+ "epoch": 9.321537789427698,
+ "grad_norm": 0.465158075094223,
+ "learning_rate": 0.0006,
+ "loss": 4.465776443481445,
+ "step": 671
+ },
+ {
+ "epoch": 9.33551769331586,
+ "grad_norm": 0.44833582639694214,
+ "learning_rate": 0.0006,
+ "loss": 4.454195976257324,
+ "step": 672
+ },
+ {
+ "epoch": 9.349497597204019,
+ "grad_norm": 0.451052188873291,
+ "learning_rate": 0.0006,
+ "loss": 4.456139087677002,
+ "step": 673
+ },
+ {
+ "epoch": 9.36347750109218,
+ "grad_norm": 0.3759656250476837,
+ "learning_rate": 0.0006,
+ "loss": 4.461119651794434,
+ "step": 674
+ },
+ {
+ "epoch": 9.37745740498034,
+ "grad_norm": 0.514560341835022,
+ "learning_rate": 0.0006,
+ "loss": 4.49595832824707,
+ "step": 675
+ },
+ {
+ "epoch": 9.391437308868502,
+ "grad_norm": 0.5650647282600403,
+ "learning_rate": 0.0006,
+ "loss": 4.461362838745117,
+ "step": 676
+ },
+ {
+ "epoch": 9.405417212756662,
+ "grad_norm": 0.4218835234642029,
+ "learning_rate": 0.0006,
+ "loss": 4.469146728515625,
+ "step": 677
+ },
+ {
+ "epoch": 9.419397116644824,
+ "grad_norm": 0.4169512689113617,
+ "learning_rate": 0.0006,
+ "loss": 4.470132827758789,
+ "step": 678
+ },
+ {
+ "epoch": 9.433377020532983,
+ "grad_norm": 0.3772219717502594,
+ "learning_rate": 0.0006,
+ "loss": 4.4742608070373535,
+ "step": 679
+ },
+ {
+ "epoch": 9.447356924421145,
+ "grad_norm": 0.35755908489227295,
+ "learning_rate": 0.0006,
+ "loss": 4.461928367614746,
+ "step": 680
+ },
+ {
+ "epoch": 9.461336828309305,
+ "grad_norm": 0.3141227662563324,
+ "learning_rate": 0.0006,
+ "loss": 4.491983413696289,
+ "step": 681
+ },
+ {
+ "epoch": 9.475316732197467,
+ "grad_norm": 0.282461017370224,
+ "learning_rate": 0.0006,
+ "loss": 4.460200309753418,
+ "step": 682
+ },
+ {
+ "epoch": 9.489296636085626,
+ "grad_norm": 0.27174389362335205,
+ "learning_rate": 0.0006,
+ "loss": 4.416125297546387,
+ "step": 683
+ },
+ {
+ "epoch": 9.503276539973788,
+ "grad_norm": 0.24570637941360474,
+ "learning_rate": 0.0006,
+ "loss": 4.4451093673706055,
+ "step": 684
+ },
+ {
+ "epoch": 9.517256443861948,
+ "grad_norm": 0.2741486132144928,
+ "learning_rate": 0.0006,
+ "loss": 4.453263282775879,
+ "step": 685
+ },
+ {
+ "epoch": 9.53123634775011,
+ "grad_norm": 0.24753718078136444,
+ "learning_rate": 0.0006,
+ "loss": 4.483033180236816,
+ "step": 686
+ },
+ {
+ "epoch": 9.54521625163827,
+ "grad_norm": 0.24288412928581238,
+ "learning_rate": 0.0006,
+ "loss": 4.452961444854736,
+ "step": 687
+ },
+ {
+ "epoch": 9.55919615552643,
+ "grad_norm": 0.21554753184318542,
+ "learning_rate": 0.0006,
+ "loss": 4.476005554199219,
+ "step": 688
+ },
+ {
+ "epoch": 9.57317605941459,
+ "grad_norm": 0.22775942087173462,
+ "learning_rate": 0.0006,
+ "loss": 4.4479193687438965,
+ "step": 689
+ },
+ {
+ "epoch": 9.587155963302752,
+ "grad_norm": 0.2610701024532318,
+ "learning_rate": 0.0006,
+ "loss": 4.474987506866455,
+ "step": 690
+ },
+ {
+ "epoch": 9.601135867190912,
+ "grad_norm": 0.2394690215587616,
+ "learning_rate": 0.0006,
+ "loss": 4.444857597351074,
+ "step": 691
+ },
+ {
+ "epoch": 9.615115771079074,
+ "grad_norm": 0.20868559181690216,
+ "learning_rate": 0.0006,
+ "loss": 4.4220709800720215,
+ "step": 692
+ },
+ {
+ "epoch": 9.629095674967235,
+ "grad_norm": 0.21869882941246033,
+ "learning_rate": 0.0006,
+ "loss": 4.451737403869629,
+ "step": 693
+ },
+ {
+ "epoch": 9.643075578855395,
+ "grad_norm": 0.1802823394536972,
+ "learning_rate": 0.0006,
+ "loss": 4.409085273742676,
+ "step": 694
+ },
+ {
+ "epoch": 9.657055482743557,
+ "grad_norm": 0.17046281695365906,
+ "learning_rate": 0.0006,
+ "loss": 4.424643516540527,
+ "step": 695
+ },
+ {
+ "epoch": 9.671035386631717,
+ "grad_norm": 0.19561922550201416,
+ "learning_rate": 0.0006,
+ "loss": 4.412302017211914,
+ "step": 696
+ },
+ {
+ "epoch": 9.685015290519878,
+ "grad_norm": 0.21928799152374268,
+ "learning_rate": 0.0006,
+ "loss": 4.427582263946533,
+ "step": 697
+ },
+ {
+ "epoch": 9.698995194408038,
+ "grad_norm": 0.244873046875,
+ "learning_rate": 0.0006,
+ "loss": 4.431827545166016,
+ "step": 698
+ },
+ {
+ "epoch": 9.7129750982962,
+ "grad_norm": 0.2799488604068756,
+ "learning_rate": 0.0006,
+ "loss": 4.407991409301758,
+ "step": 699
+ },
+ {
+ "epoch": 9.72695500218436,
+ "grad_norm": 0.2699538767337799,
+ "learning_rate": 0.0006,
+ "loss": 4.412313461303711,
+ "step": 700
+ },
+ {
+ "epoch": 9.740934906072521,
+ "grad_norm": 0.22293835878372192,
+ "learning_rate": 0.0006,
+ "loss": 4.423369884490967,
+ "step": 701
+ },
+ {
+ "epoch": 9.754914809960681,
+ "grad_norm": 0.21554361283779144,
+ "learning_rate": 0.0006,
+ "loss": 4.42026948928833,
+ "step": 702
+ },
+ {
+ "epoch": 9.768894713848843,
+ "grad_norm": 0.22135840356349945,
+ "learning_rate": 0.0006,
+ "loss": 4.400010108947754,
+ "step": 703
+ },
+ {
+ "epoch": 9.782874617737003,
+ "grad_norm": 0.2169952541589737,
+ "learning_rate": 0.0006,
+ "loss": 4.394582271575928,
+ "step": 704
+ },
+ {
+ "epoch": 9.796854521625164,
+ "grad_norm": 0.18913042545318604,
+ "learning_rate": 0.0006,
+ "loss": 4.395880699157715,
+ "step": 705
+ },
+ {
+ "epoch": 9.810834425513324,
+ "grad_norm": 0.191524475812912,
+ "learning_rate": 0.0006,
+ "loss": 4.378962516784668,
+ "step": 706
+ },
+ {
+ "epoch": 9.824814329401486,
+ "grad_norm": 0.20057640969753265,
+ "learning_rate": 0.0006,
+ "loss": 4.431066513061523,
+ "step": 707
+ },
+ {
+ "epoch": 9.838794233289645,
+ "grad_norm": 0.21670377254486084,
+ "learning_rate": 0.0006,
+ "loss": 4.364682197570801,
+ "step": 708
+ },
+ {
+ "epoch": 9.852774137177807,
+ "grad_norm": 0.21653099358081818,
+ "learning_rate": 0.0006,
+ "loss": 4.4050445556640625,
+ "step": 709
+ },
+ {
+ "epoch": 9.866754041065967,
+ "grad_norm": 0.2217673808336258,
+ "learning_rate": 0.0006,
+ "loss": 4.423664093017578,
+ "step": 710
+ },
+ {
+ "epoch": 9.880733944954128,
+ "grad_norm": 0.251078337430954,
+ "learning_rate": 0.0006,
+ "loss": 4.405768394470215,
+ "step": 711
+ },
+ {
+ "epoch": 9.89471384884229,
+ "grad_norm": 0.28962627053260803,
+ "learning_rate": 0.0006,
+ "loss": 4.421207427978516,
+ "step": 712
+ },
+ {
+ "epoch": 9.90869375273045,
+ "grad_norm": 0.3478074371814728,
+ "learning_rate": 0.0006,
+ "loss": 4.414942741394043,
+ "step": 713
+ },
+ {
+ "epoch": 9.922673656618612,
+ "grad_norm": 0.40396368503570557,
+ "learning_rate": 0.0006,
+ "loss": 4.415163993835449,
+ "step": 714
+ },
+ {
+ "epoch": 9.936653560506771,
+ "grad_norm": 0.3689858019351959,
+ "learning_rate": 0.0006,
+ "loss": 4.381345272064209,
+ "step": 715
+ },
+ {
+ "epoch": 9.950633464394933,
+ "grad_norm": 0.344868004322052,
+ "learning_rate": 0.0006,
+ "loss": 4.433088302612305,
+ "step": 716
+ },
+ {
+ "epoch": 9.964613368283093,
+ "grad_norm": 0.37976378202438354,
+ "learning_rate": 0.0006,
+ "loss": 4.431371212005615,
+ "step": 717
+ },
+ {
+ "epoch": 9.978593272171254,
+ "grad_norm": 0.4354130029678345,
+ "learning_rate": 0.0006,
+ "loss": 4.434148788452148,
+ "step": 718
+ },
+ {
+ "epoch": 9.992573176059414,
+ "grad_norm": 0.35859373211860657,
+ "learning_rate": 0.0006,
+ "loss": 4.428055763244629,
+ "step": 719
+ },
+ {
+ "epoch": 10.0,
+ "grad_norm": 0.3365023732185364,
+ "learning_rate": 0.0006,
+ "loss": 4.3888654708862305,
+ "step": 720
+ },
+ {
+ "epoch": 10.0,
+ "eval_loss": 4.638620853424072,
+ "eval_runtime": 44.3054,
+ "eval_samples_per_second": 55.117,
+ "eval_steps_per_second": 3.453,
+ "step": 720
+ },
+ {
+ "epoch": 10.013979903888162,
+ "grad_norm": 0.3267960250377655,
+ "learning_rate": 0.0006,
+ "loss": 4.386068344116211,
+ "step": 721
+ },
+ {
+ "epoch": 10.027959807776321,
+ "grad_norm": 0.33440953493118286,
+ "learning_rate": 0.0006,
+ "loss": 4.397515296936035,
+ "step": 722
+ },
+ {
+ "epoch": 10.041939711664483,
+ "grad_norm": 0.30047518014907837,
+ "learning_rate": 0.0006,
+ "loss": 4.398358345031738,
+ "step": 723
+ },
+ {
+ "epoch": 10.055919615552643,
+ "grad_norm": 0.2912217378616333,
+ "learning_rate": 0.0006,
+ "loss": 4.341166973114014,
+ "step": 724
+ },
+ {
+ "epoch": 10.069899519440805,
+ "grad_norm": 0.3199564218521118,
+ "learning_rate": 0.0006,
+ "loss": 4.388717174530029,
+ "step": 725
+ },
+ {
+ "epoch": 10.083879423328964,
+ "grad_norm": 0.2765582799911499,
+ "learning_rate": 0.0006,
+ "loss": 4.392992973327637,
+ "step": 726
+ },
+ {
+ "epoch": 10.097859327217126,
+ "grad_norm": 0.27138450741767883,
+ "learning_rate": 0.0006,
+ "loss": 4.382307529449463,
+ "step": 727
+ },
+ {
+ "epoch": 10.111839231105286,
+ "grad_norm": 0.29230645298957825,
+ "learning_rate": 0.0006,
+ "loss": 4.357486724853516,
+ "step": 728
+ },
+ {
+ "epoch": 10.125819134993447,
+ "grad_norm": 0.3127598464488983,
+ "learning_rate": 0.0006,
+ "loss": 4.39072322845459,
+ "step": 729
+ },
+ {
+ "epoch": 10.139799038881607,
+ "grad_norm": 0.3230913281440735,
+ "learning_rate": 0.0006,
+ "loss": 4.35037899017334,
+ "step": 730
+ },
+ {
+ "epoch": 10.153778942769769,
+ "grad_norm": 0.333675354719162,
+ "learning_rate": 0.0006,
+ "loss": 4.378030776977539,
+ "step": 731
+ },
+ {
+ "epoch": 10.167758846657929,
+ "grad_norm": 0.30325770378112793,
+ "learning_rate": 0.0006,
+ "loss": 4.372736930847168,
+ "step": 732
+ },
+ {
+ "epoch": 10.18173875054609,
+ "grad_norm": 0.2888163924217224,
+ "learning_rate": 0.0006,
+ "loss": 4.397604942321777,
+ "step": 733
+ },
+ {
+ "epoch": 10.19571865443425,
+ "grad_norm": 0.3378832936286926,
+ "learning_rate": 0.0006,
+ "loss": 4.395705223083496,
+ "step": 734
+ },
+ {
+ "epoch": 10.209698558322412,
+ "grad_norm": 0.30980268120765686,
+ "learning_rate": 0.0006,
+ "loss": 4.3861212730407715,
+ "step": 735
+ },
+ {
+ "epoch": 10.223678462210572,
+ "grad_norm": 0.2965783178806305,
+ "learning_rate": 0.0006,
+ "loss": 4.394898414611816,
+ "step": 736
+ },
+ {
+ "epoch": 10.237658366098733,
+ "grad_norm": 0.2818217873573303,
+ "learning_rate": 0.0006,
+ "loss": 4.36171817779541,
+ "step": 737
+ },
+ {
+ "epoch": 10.251638269986893,
+ "grad_norm": 0.2418123185634613,
+ "learning_rate": 0.0006,
+ "loss": 4.370945930480957,
+ "step": 738
+ },
+ {
+ "epoch": 10.265618173875055,
+ "grad_norm": 0.22372810542583466,
+ "learning_rate": 0.0006,
+ "loss": 4.354825973510742,
+ "step": 739
+ },
+ {
+ "epoch": 10.279598077763215,
+ "grad_norm": 0.238066166639328,
+ "learning_rate": 0.0006,
+ "loss": 4.376237392425537,
+ "step": 740
+ },
+ {
+ "epoch": 10.293577981651376,
+ "grad_norm": 0.22352449595928192,
+ "learning_rate": 0.0006,
+ "loss": 4.317084312438965,
+ "step": 741
+ },
+ {
+ "epoch": 10.307557885539538,
+ "grad_norm": 0.21685205399990082,
+ "learning_rate": 0.0006,
+ "loss": 4.335271835327148,
+ "step": 742
+ },
+ {
+ "epoch": 10.321537789427698,
+ "grad_norm": 0.19584694504737854,
+ "learning_rate": 0.0006,
+ "loss": 4.357963562011719,
+ "step": 743
+ },
+ {
+ "epoch": 10.33551769331586,
+ "grad_norm": 0.20373336970806122,
+ "learning_rate": 0.0006,
+ "loss": 4.401963233947754,
+ "step": 744
+ },
+ {
+ "epoch": 10.349497597204019,
+ "grad_norm": 0.2247837632894516,
+ "learning_rate": 0.0006,
+ "loss": 4.357202529907227,
+ "step": 745
+ },
+ {
+ "epoch": 10.36347750109218,
+ "grad_norm": 0.2416863739490509,
+ "learning_rate": 0.0006,
+ "loss": 4.364739418029785,
+ "step": 746
+ },
+ {
+ "epoch": 10.37745740498034,
+ "grad_norm": 0.22281162440776825,
+ "learning_rate": 0.0006,
+ "loss": 4.351607799530029,
+ "step": 747
+ },
+ {
+ "epoch": 10.391437308868502,
+ "grad_norm": 0.20751096308231354,
+ "learning_rate": 0.0006,
+ "loss": 4.370017051696777,
+ "step": 748
+ },
+ {
+ "epoch": 10.405417212756662,
+ "grad_norm": 0.19178363680839539,
+ "learning_rate": 0.0006,
+ "loss": 4.360328674316406,
+ "step": 749
+ },
+ {
+ "epoch": 10.419397116644824,
+ "grad_norm": 0.20534078776836395,
+ "learning_rate": 0.0006,
+ "loss": 4.3735432624816895,
+ "step": 750
+ },
+ {
+ "epoch": 10.433377020532983,
+ "grad_norm": 0.20533937215805054,
+ "learning_rate": 0.0006,
+ "loss": 4.326902389526367,
+ "step": 751
+ },
+ {
+ "epoch": 10.447356924421145,
+ "grad_norm": 0.22057875990867615,
+ "learning_rate": 0.0006,
+ "loss": 4.360934257507324,
+ "step": 752
+ },
+ {
+ "epoch": 10.461336828309305,
+ "grad_norm": 0.25568997859954834,
+ "learning_rate": 0.0006,
+ "loss": 4.345063209533691,
+ "step": 753
+ },
+ {
+ "epoch": 10.475316732197467,
+ "grad_norm": 0.31471487879753113,
+ "learning_rate": 0.0006,
+ "loss": 4.324014186859131,
+ "step": 754
+ },
+ {
+ "epoch": 10.489296636085626,
+ "grad_norm": 0.2716822624206543,
+ "learning_rate": 0.0006,
+ "loss": 4.318459510803223,
+ "step": 755
+ },
+ {
+ "epoch": 10.503276539973788,
+ "grad_norm": 0.19552019238471985,
+ "learning_rate": 0.0006,
+ "loss": 4.3367509841918945,
+ "step": 756
+ },
+ {
+ "epoch": 10.517256443861948,
+ "grad_norm": 0.22822986543178558,
+ "learning_rate": 0.0006,
+ "loss": 4.328935623168945,
+ "step": 757
+ },
+ {
+ "epoch": 10.53123634775011,
+ "grad_norm": 0.22282928228378296,
+ "learning_rate": 0.0006,
+ "loss": 4.358272552490234,
+ "step": 758
+ },
+ {
+ "epoch": 10.54521625163827,
+ "grad_norm": 0.23303352296352386,
+ "learning_rate": 0.0006,
+ "loss": 4.336641311645508,
+ "step": 759
+ },
+ {
+ "epoch": 10.55919615552643,
+ "grad_norm": 0.29474690556526184,
+ "learning_rate": 0.0006,
+ "loss": 4.343188285827637,
+ "step": 760
+ },
+ {
+ "epoch": 10.57317605941459,
+ "grad_norm": 0.36269059777259827,
+ "learning_rate": 0.0006,
+ "loss": 4.313019752502441,
+ "step": 761
+ },
+ {
+ "epoch": 10.587155963302752,
+ "grad_norm": 0.3742978870868683,
+ "learning_rate": 0.0006,
+ "loss": 4.361410140991211,
+ "step": 762
+ },
+ {
+ "epoch": 10.601135867190912,
+ "grad_norm": 0.34412163496017456,
+ "learning_rate": 0.0006,
+ "loss": 4.321324825286865,
+ "step": 763
+ },
+ {
+ "epoch": 10.615115771079074,
+ "grad_norm": 0.3464587926864624,
+ "learning_rate": 0.0006,
+ "loss": 4.341907501220703,
+ "step": 764
+ },
+ {
+ "epoch": 10.629095674967235,
+ "grad_norm": 0.3318136930465698,
+ "learning_rate": 0.0006,
+ "loss": 4.329099655151367,
+ "step": 765
+ },
+ {
+ "epoch": 10.643075578855395,
+ "grad_norm": 0.31292903423309326,
+ "learning_rate": 0.0006,
+ "loss": 4.332015037536621,
+ "step": 766
+ },
+ {
+ "epoch": 10.657055482743557,
+ "grad_norm": 0.2904847264289856,
+ "learning_rate": 0.0006,
+ "loss": 4.341764450073242,
+ "step": 767
+ },
+ {
+ "epoch": 10.671035386631717,
+ "grad_norm": 0.3287692666053772,
+ "learning_rate": 0.0006,
+ "loss": 4.342329025268555,
+ "step": 768
+ },
+ {
+ "epoch": 10.685015290519878,
+ "grad_norm": 0.3115365207195282,
+ "learning_rate": 0.0006,
+ "loss": 4.3530073165893555,
+ "step": 769
+ },
+ {
+ "epoch": 10.698995194408038,
+ "grad_norm": 0.24133864045143127,
+ "learning_rate": 0.0006,
+ "loss": 4.321497917175293,
+ "step": 770
+ },
+ {
+ "epoch": 10.7129750982962,
+ "grad_norm": 0.24658630788326263,
+ "learning_rate": 0.0006,
+ "loss": 4.32669734954834,
+ "step": 771
+ },
+ {
+ "epoch": 10.72695500218436,
+ "grad_norm": 0.2342129647731781,
+ "learning_rate": 0.0006,
+ "loss": 4.345459461212158,
+ "step": 772
+ },
+ {
+ "epoch": 10.740934906072521,
+ "grad_norm": 0.23360829055309296,
+ "learning_rate": 0.0006,
+ "loss": 4.33249568939209,
+ "step": 773
+ },
+ {
+ "epoch": 10.754914809960681,
+ "grad_norm": 0.24314677715301514,
+ "learning_rate": 0.0006,
+ "loss": 4.30499792098999,
+ "step": 774
+ },
+ {
+ "epoch": 10.768894713848843,
+ "grad_norm": 0.22105181217193604,
+ "learning_rate": 0.0006,
+ "loss": 4.33706521987915,
+ "step": 775
+ },
+ {
+ "epoch": 10.782874617737003,
+ "grad_norm": 0.23307174444198608,
+ "learning_rate": 0.0006,
+ "loss": 4.320387840270996,
+ "step": 776
+ },
+ {
+ "epoch": 10.796854521625164,
+ "grad_norm": 0.24946169555187225,
+ "learning_rate": 0.0006,
+ "loss": 4.316012382507324,
+ "step": 777
+ },
+ {
+ "epoch": 10.810834425513324,
+ "grad_norm": 0.26023536920547485,
+ "learning_rate": 0.0006,
+ "loss": 4.315193176269531,
+ "step": 778
+ },
+ {
+ "epoch": 10.824814329401486,
+ "grad_norm": 0.2688547968864441,
+ "learning_rate": 0.0006,
+ "loss": 4.3243255615234375,
+ "step": 779
+ },
+ {
+ "epoch": 10.838794233289645,
+ "grad_norm": 0.28188297152519226,
+ "learning_rate": 0.0006,
+ "loss": 4.3202972412109375,
+ "step": 780
+ },
+ {
+ "epoch": 10.852774137177807,
+ "grad_norm": 0.2890053689479828,
+ "learning_rate": 0.0006,
+ "loss": 4.318799018859863,
+ "step": 781
+ },
+ {
+ "epoch": 10.866754041065967,
+ "grad_norm": 0.2914353013038635,
+ "learning_rate": 0.0006,
+ "loss": 4.314262390136719,
+ "step": 782
+ },
+ {
+ "epoch": 10.880733944954128,
+ "grad_norm": 0.3145572543144226,
+ "learning_rate": 0.0006,
+ "loss": 4.339262008666992,
+ "step": 783
+ },
+ {
+ "epoch": 10.89471384884229,
+ "grad_norm": 0.323062002658844,
+ "learning_rate": 0.0006,
+ "loss": 4.354856491088867,
+ "step": 784
+ },
+ {
+ "epoch": 10.90869375273045,
+ "grad_norm": 0.32741227746009827,
+ "learning_rate": 0.0006,
+ "loss": 4.325577735900879,
+ "step": 785
+ },
+ {
+ "epoch": 10.922673656618612,
+ "grad_norm": 0.2855733036994934,
+ "learning_rate": 0.0006,
+ "loss": 4.324419021606445,
+ "step": 786
+ },
+ {
+ "epoch": 10.936653560506771,
+ "grad_norm": 0.2969444990158081,
+ "learning_rate": 0.0006,
+ "loss": 4.320681095123291,
+ "step": 787
+ },
+ {
+ "epoch": 10.950633464394933,
+ "grad_norm": 0.28108111023902893,
+ "learning_rate": 0.0006,
+ "loss": 4.32673454284668,
+ "step": 788
+ },
+ {
+ "epoch": 10.964613368283093,
+ "grad_norm": 0.2537972629070282,
+ "learning_rate": 0.0006,
+ "loss": 4.3197021484375,
+ "step": 789
+ },
+ {
+ "epoch": 10.978593272171254,
+ "grad_norm": 0.2354544699192047,
+ "learning_rate": 0.0006,
+ "loss": 4.3354973793029785,
+ "step": 790
+ },
+ {
+ "epoch": 10.992573176059414,
+ "grad_norm": 0.26195117831230164,
+ "learning_rate": 0.0006,
+ "loss": 4.3172526359558105,
+ "step": 791
+ },
+ {
+ "epoch": 11.0,
+ "grad_norm": 0.27089616656303406,
+ "learning_rate": 0.0006,
+ "loss": 4.324293613433838,
+ "step": 792
+ },
+ {
+ "epoch": 11.0,
+ "eval_loss": 4.531813621520996,
+ "eval_runtime": 44.1656,
+ "eval_samples_per_second": 55.292,
+ "eval_steps_per_second": 3.464,
+ "step": 792
+ },
+ {
+ "epoch": 11.013979903888162,
+ "grad_norm": 0.2526339590549469,
+ "learning_rate": 0.0006,
+ "loss": 4.287600517272949,
+ "step": 793
+ },
+ {
+ "epoch": 11.027959807776321,
+ "grad_norm": 0.24318458139896393,
+ "learning_rate": 0.0006,
+ "loss": 4.268078327178955,
+ "step": 794
+ },
+ {
+ "epoch": 11.041939711664483,
+ "grad_norm": 0.2450830638408661,
+ "learning_rate": 0.0006,
+ "loss": 4.265467643737793,
+ "step": 795
+ },
+ {
+ "epoch": 11.055919615552643,
+ "grad_norm": 0.23963099718093872,
+ "learning_rate": 0.0006,
+ "loss": 4.267931938171387,
+ "step": 796
+ },
+ {
+ "epoch": 11.069899519440805,
+ "grad_norm": 0.2488657534122467,
+ "learning_rate": 0.0006,
+ "loss": 4.30262565612793,
+ "step": 797
+ },
+ {
+ "epoch": 11.083879423328964,
+ "grad_norm": 0.2319781631231308,
+ "learning_rate": 0.0006,
+ "loss": 4.28665828704834,
+ "step": 798
+ },
+ {
+ "epoch": 11.097859327217126,
+ "grad_norm": 0.2425263375043869,
+ "learning_rate": 0.0006,
+ "loss": 4.284830570220947,
+ "step": 799
+ },
+ {
+ "epoch": 11.111839231105286,
+ "grad_norm": 0.23096567392349243,
+ "learning_rate": 0.0006,
+ "loss": 4.2817206382751465,
+ "step": 800
+ },
+ {
+ "epoch": 11.125819134993447,
+ "grad_norm": 0.2846364676952362,
+ "learning_rate": 0.0006,
+ "loss": 4.276104927062988,
+ "step": 801
+ },
+ {
+ "epoch": 11.139799038881607,
+ "grad_norm": 0.2984965741634369,
+ "learning_rate": 0.0006,
+ "loss": 4.2909650802612305,
+ "step": 802
+ },
+ {
+ "epoch": 11.153778942769769,
+ "grad_norm": 0.2841213643550873,
+ "learning_rate": 0.0006,
+ "loss": 4.283358097076416,
+ "step": 803
+ },
+ {
+ "epoch": 11.167758846657929,
+ "grad_norm": 0.29192933440208435,
+ "learning_rate": 0.0006,
+ "loss": 4.267040729522705,
+ "step": 804
+ },
+ {
+ "epoch": 11.18173875054609,
+ "grad_norm": 0.3254184126853943,
+ "learning_rate": 0.0006,
+ "loss": 4.301564693450928,
+ "step": 805
+ },
+ {
+ "epoch": 11.19571865443425,
+ "grad_norm": 0.3347095847129822,
+ "learning_rate": 0.0006,
+ "loss": 4.271395683288574,
+ "step": 806
+ },
+ {
+ "epoch": 11.209698558322412,
+ "grad_norm": 0.25609350204467773,
+ "learning_rate": 0.0006,
+ "loss": 4.2963056564331055,
+ "step": 807
+ },
+ {
+ "epoch": 11.223678462210572,
+ "grad_norm": 0.29272061586380005,
+ "learning_rate": 0.0006,
+ "loss": 4.298416614532471,
+ "step": 808
+ },
+ {
+ "epoch": 11.237658366098733,
+ "grad_norm": 0.32179465889930725,
+ "learning_rate": 0.0006,
+ "loss": 4.294036865234375,
+ "step": 809
+ },
+ {
+ "epoch": 11.251638269986893,
+ "grad_norm": 0.3336549401283264,
+ "learning_rate": 0.0006,
+ "loss": 4.291993141174316,
+ "step": 810
+ },
+ {
+ "epoch": 11.265618173875055,
+ "grad_norm": 0.32273536920547485,
+ "learning_rate": 0.0006,
+ "loss": 4.311004638671875,
+ "step": 811
+ },
+ {
+ "epoch": 11.279598077763215,
+ "grad_norm": 0.3575087785720825,
+ "learning_rate": 0.0006,
+ "loss": 4.300217628479004,
+ "step": 812
+ },
+ {
+ "epoch": 11.293577981651376,
+ "grad_norm": 0.3332885205745697,
+ "learning_rate": 0.0006,
+ "loss": 4.278337478637695,
+ "step": 813
+ },
+ {
+ "epoch": 11.307557885539538,
+ "grad_norm": 0.31440407037734985,
+ "learning_rate": 0.0006,
+ "loss": 4.273826599121094,
+ "step": 814
+ },
+ {
+ "epoch": 11.321537789427698,
+ "grad_norm": 0.29822009801864624,
+ "learning_rate": 0.0006,
+ "loss": 4.284292221069336,
+ "step": 815
+ },
+ {
+ "epoch": 11.33551769331586,
+ "grad_norm": 0.30695512890815735,
+ "learning_rate": 0.0006,
+ "loss": 4.2831926345825195,
+ "step": 816
+ },
+ {
+ "epoch": 11.349497597204019,
+ "grad_norm": 0.30576950311660767,
+ "learning_rate": 0.0006,
+ "loss": 4.277133464813232,
+ "step": 817
+ },
+ {
+ "epoch": 11.36347750109218,
+ "grad_norm": 0.2859647870063782,
+ "learning_rate": 0.0006,
+ "loss": 4.3130106925964355,
+ "step": 818
+ },
+ {
+ "epoch": 11.37745740498034,
+ "grad_norm": 0.32417574524879456,
+ "learning_rate": 0.0006,
+ "loss": 4.310303211212158,
+ "step": 819
+ },
+ {
+ "epoch": 11.391437308868502,
+ "grad_norm": 0.3512463867664337,
+ "learning_rate": 0.0006,
+ "loss": 4.287015438079834,
+ "step": 820
+ },
+ {
+ "epoch": 11.405417212756662,
+ "grad_norm": 0.32578620314598083,
+ "learning_rate": 0.0006,
+ "loss": 4.2957940101623535,
+ "step": 821
+ },
+ {
+ "epoch": 11.419397116644824,
+ "grad_norm": 0.287949800491333,
+ "learning_rate": 0.0006,
+ "loss": 4.2881879806518555,
+ "step": 822
+ },
+ {
+ "epoch": 11.433377020532983,
+ "grad_norm": 0.28048595786094666,
+ "learning_rate": 0.0006,
+ "loss": 4.274960517883301,
+ "step": 823
+ },
+ {
+ "epoch": 11.447356924421145,
+ "grad_norm": 0.2541540563106537,
+ "learning_rate": 0.0006,
+ "loss": 4.261083602905273,
+ "step": 824
+ },
+ {
+ "epoch": 11.461336828309305,
+ "grad_norm": 0.2348361313343048,
+ "learning_rate": 0.0006,
+ "loss": 4.271036148071289,
+ "step": 825
+ },
+ {
+ "epoch": 11.475316732197467,
+ "grad_norm": 0.20913535356521606,
+ "learning_rate": 0.0006,
+ "loss": 4.307661056518555,
+ "step": 826
+ },
+ {
+ "epoch": 11.489296636085626,
+ "grad_norm": 0.22298868000507355,
+ "learning_rate": 0.0006,
+ "loss": 4.26902961730957,
+ "step": 827
+ },
+ {
+ "epoch": 11.503276539973788,
+ "grad_norm": 0.22752761840820312,
+ "learning_rate": 0.0006,
+ "loss": 4.305529594421387,
+ "step": 828
+ },
+ {
+ "epoch": 11.517256443861948,
+ "grad_norm": 0.2149917483329773,
+ "learning_rate": 0.0006,
+ "loss": 4.25134801864624,
+ "step": 829
+ },
+ {
+ "epoch": 11.53123634775011,
+ "grad_norm": 0.21085695922374725,
+ "learning_rate": 0.0006,
+ "loss": 4.266982078552246,
+ "step": 830
+ },
+ {
+ "epoch": 11.54521625163827,
+ "grad_norm": 0.21586747467517853,
+ "learning_rate": 0.0006,
+ "loss": 4.235255718231201,
+ "step": 831
+ },
+ {
+ "epoch": 11.55919615552643,
+ "grad_norm": 0.2520856559276581,
+ "learning_rate": 0.0006,
+ "loss": 4.283442497253418,
+ "step": 832
+ },
+ {
+ "epoch": 11.57317605941459,
+ "grad_norm": 0.2825471758842468,
+ "learning_rate": 0.0006,
+ "loss": 4.234672546386719,
+ "step": 833
+ },
+ {
+ "epoch": 11.587155963302752,
+ "grad_norm": 0.27437824010849,
+ "learning_rate": 0.0006,
+ "loss": 4.246068000793457,
+ "step": 834
+ },
+ {
+ "epoch": 11.601135867190912,
+ "grad_norm": 0.2596757411956787,
+ "learning_rate": 0.0006,
+ "loss": 4.278448104858398,
+ "step": 835
+ },
+ {
+ "epoch": 11.615115771079074,
+ "grad_norm": 0.25663474202156067,
+ "learning_rate": 0.0006,
+ "loss": 4.308779716491699,
+ "step": 836
+ },
+ {
+ "epoch": 11.629095674967235,
+ "grad_norm": 0.2546203136444092,
+ "learning_rate": 0.0006,
+ "loss": 4.261247634887695,
+ "step": 837
+ },
+ {
+ "epoch": 11.643075578855395,
+ "grad_norm": 0.24722838401794434,
+ "learning_rate": 0.0006,
+ "loss": 4.275888442993164,
+ "step": 838
+ },
+ {
+ "epoch": 11.657055482743557,
+ "grad_norm": 0.3022806644439697,
+ "learning_rate": 0.0006,
+ "loss": 4.2572407722473145,
+ "step": 839
+ },
+ {
+ "epoch": 11.671035386631717,
+ "grad_norm": 0.31170839071273804,
+ "learning_rate": 0.0006,
+ "loss": 4.26992654800415,
+ "step": 840
+ },
+ {
+ "epoch": 11.685015290519878,
+ "grad_norm": 0.31362825632095337,
+ "learning_rate": 0.0006,
+ "loss": 4.2354655265808105,
+ "step": 841
+ },
+ {
+ "epoch": 11.698995194408038,
+ "grad_norm": 0.28741633892059326,
+ "learning_rate": 0.0006,
+ "loss": 4.263496398925781,
+ "step": 842
+ },
+ {
+ "epoch": 11.7129750982962,
+ "grad_norm": 0.2492494285106659,
+ "learning_rate": 0.0006,
+ "loss": 4.26463508605957,
+ "step": 843
+ },
+ {
+ "epoch": 11.72695500218436,
+ "grad_norm": 0.24324660003185272,
+ "learning_rate": 0.0006,
+ "loss": 4.245428085327148,
+ "step": 844
+ },
+ {
+ "epoch": 11.740934906072521,
+ "grad_norm": 0.23591114580631256,
+ "learning_rate": 0.0006,
+ "loss": 4.249845504760742,
+ "step": 845
+ },
+ {
+ "epoch": 11.754914809960681,
+ "grad_norm": 0.2202281504869461,
+ "learning_rate": 0.0006,
+ "loss": 4.245006084442139,
+ "step": 846
+ },
+ {
+ "epoch": 11.768894713848843,
+ "grad_norm": 0.22117942571640015,
+ "learning_rate": 0.0006,
+ "loss": 4.27812385559082,
+ "step": 847
+ },
+ {
+ "epoch": 11.782874617737003,
+ "grad_norm": 0.26361414790153503,
+ "learning_rate": 0.0006,
+ "loss": 4.250475883483887,
+ "step": 848
+ },
+ {
+ "epoch": 11.796854521625164,
+ "grad_norm": 0.2820321321487427,
+ "learning_rate": 0.0006,
+ "loss": 4.265835762023926,
+ "step": 849
+ },
+ {
+ "epoch": 11.810834425513324,
+ "grad_norm": 0.2078961282968521,
+ "learning_rate": 0.0006,
+ "loss": 4.251298904418945,
+ "step": 850
+ },
+ {
+ "epoch": 11.824814329401486,
+ "grad_norm": 0.21548646688461304,
+ "learning_rate": 0.0006,
+ "loss": 4.288539886474609,
+ "step": 851
+ },
+ {
+ "epoch": 11.838794233289645,
+ "grad_norm": 0.22719401121139526,
+ "learning_rate": 0.0006,
+ "loss": 4.252035140991211,
+ "step": 852
+ },
+ {
+ "epoch": 11.852774137177807,
+ "grad_norm": 0.21628320217132568,
+ "learning_rate": 0.0006,
+ "loss": 4.268622398376465,
+ "step": 853
+ },
+ {
+ "epoch": 11.866754041065967,
+ "grad_norm": 0.20855145156383514,
+ "learning_rate": 0.0006,
+ "loss": 4.253366470336914,
+ "step": 854
+ },
+ {
+ "epoch": 11.880733944954128,
+ "grad_norm": 0.2091914266347885,
+ "learning_rate": 0.0006,
+ "loss": 4.237805366516113,
+ "step": 855
+ },
+ {
+ "epoch": 11.89471384884229,
+ "grad_norm": 0.2000127136707306,
+ "learning_rate": 0.0006,
+ "loss": 4.268559455871582,
+ "step": 856
+ },
+ {
+ "epoch": 11.90869375273045,
+ "grad_norm": 0.21080894768238068,
+ "learning_rate": 0.0006,
+ "loss": 4.208702087402344,
+ "step": 857
+ },
+ {
+ "epoch": 11.922673656618612,
+ "grad_norm": 0.22125796973705292,
+ "learning_rate": 0.0006,
+ "loss": 4.250210762023926,
+ "step": 858
+ },
+ {
+ "epoch": 11.936653560506771,
+ "grad_norm": 0.25905469059944153,
+ "learning_rate": 0.0006,
+ "loss": 4.2263593673706055,
+ "step": 859
+ },
+ {
+ "epoch": 11.950633464394933,
+ "grad_norm": 0.29970306158065796,
+ "learning_rate": 0.0006,
+ "loss": 4.250848770141602,
+ "step": 860
+ },
+ {
+ "epoch": 11.964613368283093,
+ "grad_norm": 0.28155168890953064,
+ "learning_rate": 0.0006,
+ "loss": 4.272709369659424,
+ "step": 861
+ },
+ {
+ "epoch": 11.978593272171254,
+ "grad_norm": 0.23396113514900208,
+ "learning_rate": 0.0006,
+ "loss": 4.2674970626831055,
+ "step": 862
+ },
+ {
+ "epoch": 11.992573176059414,
+ "grad_norm": 0.23619577288627625,
+ "learning_rate": 0.0006,
+ "loss": 4.240267753601074,
+ "step": 863
+ },
+ {
+ "epoch": 12.0,
+ "grad_norm": 0.2779577076435089,
+ "learning_rate": 0.0006,
+ "loss": 4.267625331878662,
+ "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/mask15-l2r50-fulle-lm/checkpoint-864/training_args.bin b/runs/mask15-l2r50-fulle-lm/checkpoint-864/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..43721c50815fe94f90cb043bf545b8f7bd9afc38
--- /dev/null
+++ b/runs/mask15-l2r50-fulle-lm/checkpoint-864/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:a0b8d7bb9ac952b1abed3bd1e5c8f6ebd20daa957b3a85688954f8df03be6eb9
+size 4856